diff --git a/.env.example b/.env.example index e13b916..8e1681c 100644 --- a/.env.example +++ b/.env.example @@ -3,7 +3,7 @@ OPENAI_API_KEY=sk-... OPENAI_MODEL=openai/gpt-4o-mini # Parser -# Options: nl2pln | canonical_pln | manhin | langextract +# Options: nl2pln | canonical_pln | manhin | langextract | canonical_langextract PARSER=canonical_pln PLNRAG_PARSER=canonical_pln NL2PLN_MODULE_PATH=data/simba_all.json @@ -55,6 +55,6 @@ CONCEPTNET_INDEX_ON_STARTUP=true CONCEPTNET_MIN_WEIGHT=2.0 CONCEPTNET_COVERAGE_PERCENT=100.0 CONCEPTNET_SAMPLE_SEED=42 -CONCEPTNET_AUTO_REBUILD_ON_CHANGE=true +CONCEPTNET_AUTO_REBUILD_ON_CHANGE=false CONCEPTNET_REINDEX_ON_RESET=true CONCEPTNET_STARTUP_FAIL_OPEN=true diff --git a/.gitignore b/.gitignore index f2448a9..15ea86a 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ __pycache__/ data/atomspace/ data/faiss/ *.metta +!data/conceptnet/conceptnet_background.metta docs/reference/ *matrix*.json *_sanity.json diff --git a/Dockerfile b/Dockerfile index 8de3f01..8430c52 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,7 @@ ENV DEBIAN_FRONTEND=noninteractive ENV PYTHONUNBUFFERED=1 ENV PYTHONDONTWRITEBYTECODE=1 ENV PETTA_COMMIT=e1490899cefc67c128d5311ff4861f9997674957 -ENV PETTACHAINER_COMMIT=d21b93b5132a7fc8722f64d57b74fb7c3a8d1faa +ENV PETTACHAINER_COMMIT=6b88df7c903705a38205709151cdd7549fd8d1b0 RUN apt-get update && apt-get install -y \ software-properties-common \ diff --git a/README.md b/README.md index dab19d7..e581271 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,12 @@ A REST API service for Probabilistic Logic Network (PLN) based retrieval-augment Ingests natural language text, converts it to PLN atoms via a pluggable semantic parser, stores facts in a PeTTaChainer atomspace, and answers questions via logical proof. +Current service assumptions: + +- standalone self-hosted service +- one shared AtomSpace / knowledge base +- no multi-user isolation or tenant separation + ## Architecture ``` @@ -57,12 +63,12 @@ curl -X POST http://localhost:8000/ingest \ -d '{"texts": ["People who eat fish are smart.", "Kebede eats fish."]}' ``` -### POST /query -Ask a question against the knowledge base. +### POST /reason +Run a reasoning request against the knowledge base. ```bash -curl -X POST http://localhost:8000/query \ +curl -X POST http://localhost:8000/reason \ -H "Content-Type: application/json" \ - -d '{"question": "Is Kebede smart?"}' + -d '{"query": "Is Kebede smart?"}' ``` ### DELETE /reset @@ -84,6 +90,11 @@ curl -X DELETE http://localhost:8000/reset \ curl http://localhost:8000/health ``` +### GET /ready +```bash +curl http://localhost:8000/ready +``` + ## Switching parsers Set `PARSER` in `.env` for local runs. For Docker Compose, use `PLNRAG_PARSER` @@ -123,6 +134,17 @@ it may try later fallback candidates produced by the parser. ConceptNet can be loaded as readonly background knowledge and indexed into the same Qdrant collection as normal ingested facts. +The repository tracks generated ConceptNet runtime artifacts so ConceptNet can be +enabled without committing the raw ConceptNet dump: + +- `data/conceptnet/conceptnet_background.metta` +- `data/conceptnet/conceptnet_background.jsonl` +- `data/conceptnet/conceptnet_manifest.json` + +The raw dump `data/conceptnet/conceptnet-assertions-5.7.0.csv.gz` is intentionally +ignored because it is large. It is only needed when rebuilding the generated +artifacts. + ```bash CONCEPTNET_ENABLED=true CONCEPTNET_AUTOLOAD=true @@ -130,19 +152,24 @@ CONCEPTNET_ATOMSPACE_PATH=data/conceptnet/conceptnet_background.metta CONCEPTNET_VECTOR_PAYLOAD_PATH=data/conceptnet/conceptnet_background.jsonl CONCEPTNET_COVERAGE_PERCENT=100.0 CONCEPTNET_SAMPLE_SEED=42 -CONCEPTNET_AUTO_REBUILD_ON_CHANGE=true +CONCEPTNET_AUTO_REBUILD_ON_CHANGE=false ``` Background points use the normal `nl` / `pln` payload schema with extra metadata such as `source=conceptnet` and `background=true`. -To build the aligned background files from a raw ConceptNet dump: +To rebuild the aligned background files from a raw ConceptNet dump, first place +the dump at `data/conceptnet/conceptnet-assertions-5.7.0.csv.gz`, then run: ```bash cp "/path/to/conceptnet-assertions-5.7.0.csv.gz" data/conceptnet/ python scripts/conceptnet/export_conceptnet.py ``` +Set `CONCEPTNET_AUTO_REBUILD_ON_CHANGE=true` only on machines that have the raw +dump available and should regenerate artifacts automatically when the ConceptNet +export settings change. + Coverage is controlled at export time. For example: ```bash diff --git a/api/main.py b/api/main.py index cbe84f2..dde16d9 100644 --- a/api/main.py +++ b/api/main.py @@ -1,12 +1,13 @@ +import logging import time from contextlib import asynccontextmanager from fastapi import FastAPI, HTTPException from api.models import ( IngestRequest, IngestResponse, - QueryRequest, QueryResponse, + ReasonRequest, ReasonResponse, ResetRequest, ResetResponse, - HealthResponse, + HealthResponse, ReadyResponse, ) from core.service import PLNRAGService from parsers import get_parser @@ -14,18 +15,29 @@ _start_time = time.time() _service: PLNRAGService | None = None +logger = logging.getLogger(__name__) @asynccontextmanager async def lifespan(app: FastAPI): global _service cfg = get_settings() - print(f"[Startup] Loading parser: {cfg.parser}") - parser = get_parser() - _service = PLNRAGService(parser) - print("[Startup] Service ready.") - yield - print("[Shutdown] Cleaning up.") + logger.info("Loading parser: %s", cfg.parser) + try: + parser = get_parser() + _service = PLNRAGService(parser) + logger.info("Service ready.") + yield + except Exception: + logger.exception("Application startup failed.") + raise + finally: + logger.info("Cleaning up service resources.") + if _service is not None: + try: + _service.close() + except Exception: + logger.exception("Service cleanup failed.") app = FastAPI( @@ -38,10 +50,27 @@ async def lifespan(app: FastAPI): def get_service() -> PLNRAGService: if _service is None: - raise HTTPException(status_code=503, detail="Service not ready") + raise HTTPException( + status_code=503, + detail={"code": "service_not_ready", "message": "Service not ready"}, + ) return _service +def ensure_dependencies_ready(svc: PLNRAGService): + info = svc.ready() + if info["status"] == "unavailable": + logger.warning("Request rejected because dependencies are unavailable: %s", info["details"]) + raise HTTPException( + status_code=503, + detail={ + "code": "dependencies_unavailable", + "message": "Required dependencies are unavailable", + "details": info["details"], + }, + ) + + @app.post("/ingest", response_model=IngestResponse) async def ingest(req: IngestRequest): """ @@ -51,6 +80,7 @@ async def ingest(req: IngestRequest): Processing is sequential — each text sees all previous atoms. """ svc = get_service() + ensure_dependencies_ready(svc) results = await svc.ingest_batch(req.texts) return IngestResponse( processed_count=len(results), @@ -58,15 +88,16 @@ async def ingest(req: IngestRequest): ) -@app.post("/query", response_model=QueryResponse) -async def query(req: QueryRequest): +@app.post("/reason", response_model=ReasonResponse) +async def reason(req: ReasonRequest): """ - Ask a question against the knowledge base. - The question is parsed into a PLN query, reasoned over via + Run a reasoning request against the knowledge base. + The query is parsed into a PLN query, reasoned over via PeTTaChainer, and the proof trace is translated to natural language. """ svc = get_service() - return await svc.query(req.question) + ensure_dependencies_ready(svc) + return await svc.reason(req.query) @app.delete("/reset", response_model=ResetResponse) @@ -84,7 +115,7 @@ async def reset(req: ResetRequest = ResetRequest()): @app.get("/health", response_model=HealthResponse) async def health(): - """Service health check — returns component status and sizes.""" + """Liveness check — returns process/component status and sizes.""" svc = get_service() info = svc.health() return HealthResponse( @@ -100,3 +131,11 @@ async def health(): conceptnet_last_error=info["conceptnet_last_error"], uptime_seconds=round(time.time() - _start_time, 1), ) + + +@app.get("/ready", response_model=ReadyResponse) +async def ready(): + """Readiness check — returns dependency availability and degraded state.""" + svc = get_service() + info = svc.ready() + return ReadyResponse(**info) diff --git a/api/models.py b/api/models.py index 21dc1d6..4f2c0d6 100644 --- a/api/models.py +++ b/api/models.py @@ -1,5 +1,5 @@ -from pydantic import BaseModel -from typing import List, Optional, Literal +from pydantic import BaseModel, Field, field_validator +from typing import List, Optional, Literal, Any # Ingest @@ -7,6 +7,15 @@ class IngestRequest(BaseModel): texts: List[str] + @field_validator("texts") + @classmethod + def validate_texts(cls, value: List[str]) -> List[str]: + if not value: + raise ValueError("texts must contain at least one item") + if not any(str(item).strip() for item in value): + raise ValueError("texts must contain at least one non-empty item") + return value + class IngestItemResult(BaseModel): text: str @@ -28,20 +37,27 @@ class IngestResponse(BaseModel): results: List[IngestItemResult] -# Query +# Reason + +class ReasonRequest(BaseModel): + query: str -class QueryRequest(BaseModel): - question: str + @field_validator("query") + @classmethod + def validate_query(cls, value: str) -> str: + if not str(value).strip(): + raise ValueError("query must not be empty") + return value -class QueryResponse(BaseModel): - question: str +class ReasonResponse(BaseModel): + query: str pln_query: str original_query: str executed_query: str fallback_used: bool - query_status: Literal["well_aligned", "weakly_aligned", "malformed", "no_query"] - raw_proof: str + query_status: Literal["well_aligned", "weakly_aligned", "no_query"] + proof: str sources: List[str] # NL sentences that contributed to the proof answer: str @@ -84,3 +100,15 @@ class HealthResponse(BaseModel): conceptnet_vectors_expected: int conceptnet_last_error: str uptime_seconds: float + + +class ReadyResponse(BaseModel): + status: Literal["ready", "degraded", "unavailable"] + parser: str + reasoner_ready: bool + qdrant_ready: bool + ollama_ready: bool + conceptnet_enabled: bool + conceptnet_status: str + conceptnet_last_error: str + details: dict[str, Any] = Field(default_factory=dict) diff --git a/benchmark_parsers.py b/benchmark_parsers.py index 1aae8d9..60c71b2 100644 --- a/benchmark_parsers.py +++ b/benchmark_parsers.py @@ -280,8 +280,8 @@ def _run_parse(parser: object, text: str, context: list[str], is_query: bool): return parser.parse(text, context) -def _proof_found(raw_proof: str) -> bool: - return bool(raw_proof and raw_proof != "[]") +def _proof_found(proof: str) -> bool: + return bool(proof and proof != "[]") def _configure_case_environment(parser_name: str, case_name: str, run_id: str): @@ -344,11 +344,11 @@ async def _benchmark_case(parser_name: str, case: dict, run_id: str) -> dict: ingest_seconds = time.perf_counter() - ingest_started query_started = time.perf_counter() - query_response = await service.query(case["question"]) + query_response = await service.reason(case["question"]) query_seconds = time.perf_counter() - query_started total_seconds = parser_init_seconds + parse_seconds + ingest_seconds + query_seconds - found = _proof_found(query_response.raw_proof) + found = _proof_found(query_response.proof) expected = case.get("expected_proof") correct = None if expected is None else (found == expected) @@ -374,13 +374,13 @@ async def _benchmark_case(parser_name: str, case: dict, run_id: str) -> dict: "end_to_end": { "ingest": _compact_ingest_results(ingest_results), "query": { - "question": query_response.question, + "query": query_response.query, "pln_query": query_response.pln_query, "original_query": query_response.original_query, "executed_query": query_response.executed_query, "fallback_used": query_response.fallback_used, "query_status": query_response.query_status, - "raw_proof": query_response.raw_proof, + "proof": query_response.proof, "sources": query_response.sources, "answer": query_response.answer, "candidate_count": query_response.candidate_count, @@ -433,11 +433,11 @@ async def _benchmark_case_with_service( ingest_seconds = time.perf_counter() - ingest_started query_started = time.perf_counter() - query_response = await service.query(case["question"]) + query_response = await service.reason(case["question"]) query_seconds = time.perf_counter() - query_started total_seconds = parse_seconds + ingest_seconds + query_seconds - found = _proof_found(query_response.raw_proof) + found = _proof_found(query_response.proof) expected = case.get("expected_proof") correct = None if expected is None else (found == expected) state_after = _knowledge_state(service) @@ -466,13 +466,13 @@ async def _benchmark_case_with_service( "end_to_end": { "ingest": _compact_ingest_results(ingest_results), "query": { - "question": query_response.question, + "query": query_response.query, "pln_query": query_response.pln_query, "original_query": query_response.original_query, "executed_query": query_response.executed_query, "fallback_used": query_response.fallback_used, "query_status": query_response.query_status, - "raw_proof": query_response.raw_proof, + "proof": query_response.proof, "sources": query_response.sources, "answer": query_response.answer, "candidate_count": query_response.candidate_count, diff --git a/compare_parser_cases.py b/compare_parser_cases.py index 2d3aea7..3ccc228 100644 --- a/compare_parser_cases.py +++ b/compare_parser_cases.py @@ -102,7 +102,7 @@ async def _run_case(parser_name: str, case: dict, run_id: str) -> dict: try: ingest_results = await service.ingest_batch(case["texts"]) - query_response = await service.query(case["question"]) + query_response = await service.reason(case["question"]) return { "collection": collection, @@ -117,13 +117,13 @@ async def _run_case(parser_name: str, case: dict, run_id: str) -> dict: for item in ingest_results ], "query": { - "question": query_response.question, + "query": query_response.query, "pln_query": query_response.pln_query, "original_query": query_response.original_query, "executed_query": query_response.executed_query, "fallback_used": query_response.fallback_used, "query_status": query_response.query_status, - "raw_proof": query_response.raw_proof, + "proof": query_response.proof, "sources": query_response.sources, "answer": query_response.answer, "candidate_count": query_response.candidate_count, @@ -137,7 +137,7 @@ async def _run_case(parser_name: str, case: dict, run_id: str) -> dict: "answer_generation_seconds": query_response.answer_generation_seconds, }, "proof_found": bool( - query_response.raw_proof and query_response.raw_proof != "[]" + query_response.proof and query_response.proof != "[]" ), } finally: diff --git a/config.py b/config.py index 23e2335..c7cb9d3 100644 --- a/config.py +++ b/config.py @@ -9,7 +9,7 @@ class Settings(BaseSettings): openai_api_key: str openai_model: str = "openai/gpt-4o-mini" - # Options: "nl2pln" | "canonical_pln" | "manhin" | "langextract" + # Options: "nl2pln" | "canonical_pln" | "manhin" | "langextract" | "canonical_langextract" parser: str = "canonical_pln" nl2pln_module_path: str = "data/simba_all.json" canonical_pln_nl2pln_module_path: str = "data/simba_canonical_pln.json" @@ -78,7 +78,7 @@ class Settings(BaseSettings): conceptnet_min_weight: float = 2.0 conceptnet_coverage_percent: float = 100.0 conceptnet_sample_seed: int = 42 - conceptnet_auto_rebuild_on_change: bool = True + conceptnet_auto_rebuild_on_change: bool = False conceptnet_reindex_on_reset: bool = True conceptnet_startup_fail_open: bool = True diff --git a/core/answer_generator.py b/core/answer_generator.py index 7880912..1d653be 100644 --- a/core/answer_generator.py +++ b/core/answer_generator.py @@ -1,8 +1,12 @@ +import logging import dspy from typing import List from config import get_settings +logger = logging.getLogger(__name__) + + class _ProofToAnswer(dspy.Signature): """ You are a helpful assistant. You are given a user's natural language @@ -38,6 +42,6 @@ def generate(self, question: str, proof_traces: List[str]) -> str: try: result = self._predict(question=question, proof=proof_str) return result.answer - except Exception as e: - print(f"[AnswerGenerator] Failed: {e}") + except Exception: + logger.exception("Answer generation failed.") return "I was unable to generate an answer due to an internal error." diff --git a/core/conceptnet.py b/core/conceptnet.py index 8b7f331..7b7e4dd 100644 --- a/core/conceptnet.py +++ b/core/conceptnet.py @@ -1,3 +1,4 @@ +import logging import json import os import subprocess @@ -11,6 +12,9 @@ from storage.vector_store import VectorStore +logger = logging.getLogger(__name__) + + class ConceptNetManager: def __init__(self): self._cfg = get_settings() @@ -68,6 +72,8 @@ def ensure_vector_index( def restore_after_reset(self, reasoner: Reasoner, vector_store: VectorStore, scope: str): if not self.enabled: return + if self._index_thread is not None and self._index_thread.is_alive(): + logger.warning("ConceptNet reset requested while background indexing is still running.") if scope in ("all", "atomspace") and self._cfg.conceptnet_autoload: self.ensure_atomspace_loaded(reasoner) if ( @@ -114,9 +120,7 @@ def _index_vectors(self, vector_store: VectorStore, force: bool = False): indexed = 0 self._set_status(indexed_count=indexed, expected_count=expected) elif expected > 0 and 0 < indexed < expected: - print( - f"[ConceptNet] Partial vector index detected: {indexed}/{expected}. Reindexing." - ) + logger.info("Partial vector index detected: %s/%s. Reindexing.", indexed, expected) vector_store.delete_by_source("conceptnet") indexed = 0 self._set_status(indexed_count=indexed, expected_count=expected) @@ -127,17 +131,17 @@ def _index_vectors(self, vector_store: VectorStore, force: bool = False): if len(batch) >= 100: indexed += vector_store.store_many(batch) self._set_status(indexed_count=indexed, expected_count=expected) - print(f"[ConceptNet] Indexed {indexed}/{expected or '?'} vectors") + logger.info("Indexed %s/%s ConceptNet vectors", indexed, expected or "?") batch = [] if batch: indexed += vector_store.store_many(batch) self._set_status(indexed_count=indexed, expected_count=expected) - print(f"[ConceptNet] Indexed {indexed}/{expected or '?'} vectors") + logger.info("Indexed %s/%s ConceptNet vectors", indexed, expected or "?") self._set_status(indexing=False, indexed_count=indexed, expected_count=expected) except Exception as exc: self._set_status(indexing=False, indexed_count=indexed, expected_count=expected, last_error=str(exc)) - print(f"[ConceptNet] Vector indexing failed: {exc}") - raise + logger.warning("ConceptNet vector indexing failed: %s", exc) + return def _iter_records(self, path: str): with open(path, "r", encoding="utf-8") as handle: @@ -154,6 +158,21 @@ def _ensure_artifacts_current(self) -> bool: if not self._cfg.conceptnet_auto_rebuild_on_change: return False + input_exists = os.path.exists(self._cfg.conceptnet_input_file) + artifact_paths = [ + self._cfg.conceptnet_atomspace_path, + self._cfg.conceptnet_vector_payload_path, + self._cfg.conceptnet_manifest_path, + ] + artifacts_exist = all(os.path.exists(path) for path in artifact_paths) + + if not input_exists: + self._handle_missing( + "ConceptNet raw input file not found; using committed generated artifacts if available: " + f"{self._cfg.conceptnet_input_file}" + ) + return False + required_paths = [ self._cfg.conceptnet_input_file, self._cfg.conceptnet_atomspace_path, @@ -161,8 +180,10 @@ def _ensure_artifacts_current(self) -> bool: self._cfg.conceptnet_manifest_path, ] if not all(os.path.exists(path) for path in required_paths): - self._rebuild_artifacts() - return True + if not artifacts_exist: + self._rebuild_artifacts() + return True + return False manifest = self._load_manifest() if manifest is None or self._manifest_mismatch(manifest): @@ -199,9 +220,11 @@ def _manifest_mismatch(self, manifest: dict[str, Any]) -> bool: if key == "source_file": current = self._normalize_path(current) if current != value: - print( - f"[ConceptNet] Config change detected for {key}: " - f"manifest={manifest.get(key)!r}, current={value!r}" + logger.info( + "ConceptNet config change detected for %s: manifest=%r current=%r", + key, + manifest.get(key), + value, ) return True return False @@ -212,6 +235,11 @@ def _normalize_path(self, path: Any) -> str: return os.path.abspath(str(path)) def _rebuild_artifacts(self): + if not os.path.exists(self._cfg.conceptnet_input_file): + self._handle_missing( + f"ConceptNet raw input file not found: {self._cfg.conceptnet_input_file}" + ) + return input_dir = os.path.dirname(self._cfg.conceptnet_atomspace_path) os.makedirs(input_dir, exist_ok=True) command = [ @@ -232,13 +260,20 @@ def _rebuild_artifacts(self): "--sample-seed", str(self._cfg.conceptnet_sample_seed), ] - print("[ConceptNet] Rebuilding background artifacts...") - subprocess.run(command, check=True) - print("[ConceptNet] Background artifacts rebuilt.") + logger.info("Rebuilding ConceptNet background artifacts...") + try: + subprocess.run(command, check=True) + except subprocess.CalledProcessError as exc: + self._set_status(last_error=str(exc)) + if self._cfg.conceptnet_startup_fail_open: + logger.warning("ConceptNet artifact rebuild failed: %s", exc) + return + raise + logger.info("ConceptNet background artifacts rebuilt.") def _handle_missing(self, message: str): if self._cfg.conceptnet_startup_fail_open: - print(f"[ConceptNet] Warning: {message}") + logger.warning(message) return raise FileNotFoundError(message) diff --git a/core/reasoner.py b/core/reasoner.py index 5c08841..61bbbaa 100644 --- a/core/reasoner.py +++ b/core/reasoner.py @@ -1,3 +1,4 @@ +import logging import os import re import threading @@ -8,6 +9,9 @@ from pettachainer.pettachainer import PeTTaChainer +logger = logging.getLogger(__name__) + + class Reasoner: """ Owns all atomspace operations. Nothing else in the system @@ -33,9 +37,9 @@ def _load_from_disk(self): if not os.path.exists(self._atomspace_path): os.makedirs(os.path.dirname(self._atomspace_path), exist_ok=True) return - print(f"[Reasoner] Loading atomspace from {self._atomspace_path}...") + logger.info("Loading atomspace from %s", self._atomspace_path) self._load_file(self._atomspace_path) - print("[Reasoner] Atomspace loaded.") + logger.info("Atomspace loaded.") def _load_file(self, path: str): if not os.path.exists(path): @@ -46,17 +50,17 @@ def _load_file(self, path: str): if atom: try: self._handler.add_atom(atom) - except Exception as e: - print(f"[Reasoner] Warning: skipping atom '{atom}': {e}") + except Exception as exc: + logger.warning("Skipping atom %r: %s", atom, exc) def load_background_file(self, path: str): normalized = os.path.abspath(path) if normalized in self._background_files: return - print(f"[Reasoner] Loading background atomspace from {path}...") + logger.info("Loading background atomspace from %s", path) self._load_file(path) self._background_files.add(normalized) - print("[Reasoner] Background atomspace loaded.") + logger.info("Background atomspace loaded.") def add_statements(self, statements: List[str]) -> List[str]: """ @@ -86,9 +90,9 @@ def add_statements_report(self, statements: List[str]) -> tuple[List[str], List[ self._handler.add_atom(clean) f.write(clean + "\n") added.append(clean) - except Exception as e: - err = str(e) - print(f"[Reasoner] Failed to add atom '{clean}': {err}") + except Exception as exc: + err = str(exc) + logger.warning("Failed to add atom %r: %s", clean, err) rejected.append({"stmt": clean, "error": err}) return added, rejected @@ -104,8 +108,8 @@ def query(self, pln_query: str) -> List[str]: try: result = self._handler.query(pln_query, timeout_sec=self._query_timeout) return result if result else [] - except Exception as e: - print(f"[Reasoner] Query failed for '{pln_query}': {e}") + except Exception as exc: + logger.warning("Query failed for %r: %s", pln_query, exc) return [] def _query_exact_fact(self, pln_query: str) -> List[str]: @@ -196,7 +200,7 @@ def reset(self): self._background_files = set() if os.path.exists(self._atomspace_path): os.remove(self._atomspace_path) - print("[Reasoner] Atomspace reset.") + logger.info("Atomspace reset.") @property def size(self) -> int: diff --git a/core/service.py b/core/service.py index 8a7aa0c..2009999 100644 --- a/core/service.py +++ b/core/service.py @@ -1,8 +1,8 @@ import asyncio +import logging import re -import ast import time -from typing import List, Tuple +from typing import List from config import get_settings from core.chunker import Chunker @@ -11,7 +11,10 @@ from core.answer_generator import AnswerGenerator from core.conceptnet import ConceptNetManager from storage.vector_store import VectorStore -from api.models import IngestItemResult, QueryResponse +from api.models import IngestItemResult, ReasonResponse + + +logger = logging.getLogger(__name__) class PLNRAGService: @@ -31,7 +34,7 @@ def __init__(self, parser: SemanticParser): self._reasoner = Reasoner() self._vector_store = VectorStore() self._conceptnet = ConceptNetManager() - self._answer_gen = AnswerGenerator() + self._answer_gen: AnswerGenerator | None = None self._context_top_k = cfg.context_top_k self._query_fallback_enabled = cfg.query_fallback_enabled self._conceptnet.ensure_loaded(self._reasoner, self._vector_store) @@ -44,8 +47,9 @@ async def ingest_batch(self, texts: List[str]) -> List[IngestItemResult]: all previously ingested atoms as context. """ results = [] + loop = asyncio.get_running_loop() for text in texts: - result = await asyncio.get_event_loop().run_in_executor( + result = await loop.run_in_executor( None, self._ingest_single, text ) results.append(result) @@ -84,7 +88,7 @@ def _ingest_single(self, text: str) -> IngestItemResult: if not parse_result.statements: empty_results += 1 - print(f"[Service] No statements for batch: '{batch_text[:60]}...'") + logger.warning("No statements for batch preview %r", batch_text[:60]) continue valid, rejected_local = self._validate_statements(parse_result.statements) @@ -110,7 +114,7 @@ def _ingest_single(self, text: str) -> IngestItemResult: if not parse_result.statements: empty_results += 1 - print(f"[Service] No statements for chunk: '{chunk[:60]}...'") + logger.warning("No statements for chunk preview %r", chunk[:60]) continue # 4. Add to atomspace via reasoner @@ -150,14 +154,12 @@ def _ingest_single(self, text: str) -> IngestItemResult: rejected_samples=[r.get("stmt", "") for r in rejected[:3] if r.get("stmt")], ) - except Exception as e: - import traceback - - traceback.print_exc() + except Exception as exc: + logger.exception("Ingest failed for preview %r", text[:80]) return IngestItemResult( text=text, status="failed", - error=str(e), + error=str(exc), chunk_count=0, batch_count=0, batch_sizes=[], @@ -246,34 +248,34 @@ def _enrich_context(self, rag_context: List[str], max_atoms: int = 50) -> List[s # Query - async def query(self, question: str) -> QueryResponse: + async def reason(self, query: str) -> ReasonResponse: cfg = get_settings() # 1. Retrieve context for translation t0 = time.perf_counter() - context, _ = self._vector_store.retrieve_context(question, top_k=self._context_top_k) + context, _ = self._vector_store.retrieve_context(query, top_k=self._context_top_k) context = self._enrich_context(context) context_retrieval_seconds = time.perf_counter() - t0 - # 2. Parse question → PLN query + # 2. Parse query text → PLN query t1 = time.perf_counter() if hasattr(self._parser, "parse_query"): - parse_result = self._parser.parse_query(question, context) + parse_result = self._parser.parse_query(query, context) else: - parse_result = self._parser.parse(question, context) + parse_result = self._parser.parse(query, context) parse_query_seconds = time.perf_counter() - t1 original_query = parse_result.queries[0] if parse_result.queries else "" if not parse_result.queries: - return QueryResponse( - question=question, + return ReasonResponse( + query=query, pln_query="", original_query="", executed_query="", fallback_used=False, query_status="no_query", - raw_proof="", + proof="", sources=[], - answer="I couldn't translate this question into a logical query.", + answer="I couldn't translate this request into a logical query.", context_retrieval_seconds=round(context_retrieval_seconds, 4), parse_query_seconds=round(parse_query_seconds, 4), reasoning_seconds=0.0, @@ -286,7 +288,10 @@ async def query(self, question: str) -> QueryResponse: valid, rejected_local = self._validate_statements(parse_result.statements) if rejected_local: for item in rejected_local[:2]: - print(f"[Service] Dropping malformed query-support statement: {item.get('error')}") + logger.warning( + "Dropping malformed query-support statement: %s", + item.get("error"), + ) self._reasoner.add_statements(valid) # 4. Run reasoning via PeTTaChainer against ordered candidates @@ -316,7 +321,7 @@ async def query(self, question: str) -> QueryResponse: if not proof_traces and hasattr(self._parser, "retry_parse_query"): try: retry = getattr(self._parser, "retry_parse_query") - retry_result = retry(question, context, executed_query) + retry_result = retry(query, context, executed_query) if retry_result and retry_result.queries: retry_used = True more = ( @@ -339,13 +344,13 @@ async def query(self, question: str) -> QueryResponse: if proof_traces: break except Exception as exc: - print(f"[Service] retry_parse_query failed: {exc}") + logger.warning("retry_parse_query failed: %s", exc) reasoning_seconds = time.perf_counter() - t2 - raw_proof = str(proof_traces) + proof = str(proof_traces) fallback_used = bool(executed_query and original_query and executed_query != original_query) - query_status = self._classify_query_status(question, original_query, fallback_used) + query_status = self._classify_query_status(query, original_query, fallback_used) # 5. Reverse-lookup NL sources from proof atoms t3 = time.perf_counter() @@ -359,7 +364,9 @@ async def query(self, question: str) -> QueryResponse: # 6. Generate natural language answer t4 = time.perf_counter() if cfg.answer_generation_enabled: - answer = self._answer_gen.generate(question, proof_traces) + if self._answer_gen is None: + self._answer_gen = AnswerGenerator() + answer = self._answer_gen.generate(query, proof_traces) answer_generation_seconds = time.perf_counter() - t4 else: # Benchmarks often disable answer generation; avoid emitting a misleading @@ -372,14 +379,14 @@ async def query(self, question: str) -> QueryResponse: "knowledge base, so the failure may come from query shape mismatch or missing witness facts." ) - return QueryResponse( - question=question, + return ReasonResponse( + query=query, pln_query=executed_query, original_query=original_query, executed_query=executed_query, fallback_used=fallback_used, query_status=query_status, - raw_proof=raw_proof, + proof=proof, sources=sources, answer=answer, candidate_count=candidate_count_total, @@ -394,14 +401,14 @@ async def query(self, question: str) -> QueryResponse: ) def _classify_query_status( - self, question: str, original_query: str, fallback_used: bool + self, query: str, original_query: str, fallback_used: bool ) -> str: if not original_query: return "no_query" if fallback_used: return "weakly_aligned" - normalized = question.strip().lower() + normalized = query.strip().lower() is_yes_no = normalized.startswith( ( "is ", @@ -441,28 +448,11 @@ def _extract_sources(self, proof_traces: List[str], max_atoms: int = 30) -> List if "STV" not in match and len(match) >= 5: atoms_to_search.add(match) - sources = set() if max_atoms > 0 and len(atoms_to_search) > max_atoms: atoms_to_search = set(list(atoms_to_search)[:max_atoms]) - for atom_str in atoms_to_search: - try: - vector = self._vector_store.embed(atom_str) - ctx, _ = self._vector_store.retrieve_context(atom_str, top_k=1) - # retrieve_context returns atoms, not NL — direct search needed - resp = self._vector_store._client.post( - f"{self._vector_store._qdrant}/collections" - f"/{self._vector_store._collection}/points/search", - json={"vector": vector, "limit": 1, "with_payload": True}, - ) - results = resp.json().get("result", []) - if results and results[0].get("score", 0) > 0.6: - nl = results[0].get("payload", {}).get("nl") - if nl: - sources.add(nl) - except Exception: - pass - - return list(sources) + return self._vector_store.lookup_sources_by_atoms( + list(atoms_to_search), max_atoms=max_atoms, score_threshold=0.6 + ) # Reset @@ -492,3 +482,36 @@ def health(self) -> dict: "conceptnet_last_error": conceptnet["last_error"], "status": "degraded" if conceptnet["last_error"] else "ok", } + + def ready(self) -> dict: + conceptnet = self._conceptnet.status() + qdrant_ready, qdrant_detail = self._vector_store.is_qdrant_available() + ollama_ready, ollama_detail = self._vector_store.is_ollama_available() + reasoner_ready = self._reasoner is not None + + conceptnet_status = "disabled" + if conceptnet["enabled"]: + conceptnet_status = "degraded" if conceptnet["last_error"] else "ready" + + ready = reasoner_ready and qdrant_ready and ollama_ready + status = "ready" if ready else "unavailable" + if ready and conceptnet_status == "degraded": + status = "degraded" + + return { + "status": status, + "parser": self._parser.__class__.__name__, + "reasoner_ready": reasoner_ready, + "qdrant_ready": qdrant_ready, + "ollama_ready": ollama_ready, + "conceptnet_enabled": conceptnet["enabled"], + "conceptnet_status": conceptnet_status, + "conceptnet_last_error": conceptnet["last_error"], + "details": { + "qdrant": qdrant_detail, + "ollama": ollama_detail, + }, + } + + def close(self): + self._vector_store.close() diff --git a/data/conceptnet/conceptnet_background.jsonl b/data/conceptnet/conceptnet_background.jsonl index 52ec124..fc897e2 100644 --- a/data/conceptnet/conceptnet_background.jsonl +++ b/data/conceptnet/conceptnet_background.jsonl @@ -1,10273 +1,101295 @@ +{"nl": "2 pencil is located at school", "pln": ["(: cnet_atlocation_98dae866fc (AtLocation 2_pencil school) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "abyss is located at bottom of sea", "pln": ["(: cnet_atlocation_54d4fd0966 (AtLocation abyss bottom_of_sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "accelerator is located at vehicle", "pln": ["(: cnet_atlocation_f00ec7e763 (AtLocation accelerator vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "accordian bag is located at music store", "pln": ["(: cnet_atlocation_05a41c9279 (AtLocation accordian_bag music_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "account book is located at bank", "pln": ["(: cnet_atlocation_decd865fcc (AtLocation account_book bank) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "account book is located at desk", "pln": ["(: cnet_atlocation_6654736a6c (AtLocation account_book desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "accountant is located at firm", "pln": ["(: cnet_atlocation_65186f33da (AtLocation accountant firm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "acetaminophen is located at medicine chest", "pln": ["(: cnet_atlocation_804785d6d2 (AtLocation acetaminophen medicine_chest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "acne medication is located at drug store", "pln": ["(: cnet_atlocation_9575766d3b (AtLocation acne_medication drug_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "acne medication is located at tube", "pln": ["(: cnet_atlocation_5378b07460 (AtLocation acne_medication tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "acorn is located at tree", "pln": ["(: cnet_atlocation_660a44cb66 (AtLocation acorn tree) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "acoustic ceiling is located at music hall", "pln": ["(: cnet_atlocation_68bdbea72d (AtLocation acoustic_ceiling music_hall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "acoustic guitar is located at closet", "pln": ["(: cnet_atlocation_3492f743d4 (AtLocation acoustic_guitar closet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "acoustic guitar is located at music shop", "pln": ["(: cnet_atlocation_5085df173e (AtLocation acoustic_guitar music_shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "action figure is located at toy department", "pln": ["(: cnet_atlocation_81e9bb330b (AtLocation action_figure toy_department) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "action figure is located at toy store", "pln": ["(: cnet_atlocation_263ef22204 (AtLocation action_figure toy_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "actor is located at movie", "pln": ["(: cnet_atlocation_28561ec574 (AtLocation actor movie) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "actor is located at show", "pln": ["(: cnet_atlocation_f4a315f1e3 (AtLocation actor show) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "actor is located at television", "pln": ["(: cnet_atlocation_5ee3111c10 (AtLocation actor television) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "actor is located at movy", "pln": ["(: cnet_atlocation_1451086e46 (AtLocation actor movy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "actor is located at opera", "pln": ["(: cnet_atlocation_f619c910ea (AtLocation actor opera) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "actor is located at theater", "pln": ["(: cnet_atlocation_73b96af063 (AtLocation actor theater) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ad is located at newspaper", "pln": ["(: cnet_atlocation_880255566a (AtLocation ad newspaper) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "address book is located at desk", "pln": ["(: cnet_atlocation_1c18cffcad (AtLocation address_book desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "address label is located at drawer", "pln": ["(: cnet_atlocation_35de9f9e06 (AtLocation address_label drawer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "adhesive bandage is located at first aid kit", "pln": ["(: cnet_atlocation_4014fdde41 (AtLocation adhesive_bandage first_aid_kit) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "adhesive bandage is located at pharmacy", "pln": ["(: cnet_atlocation_35fbf8c28f (AtLocation adhesive_bandage pharmacy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ads is located at newspaper", "pln": ["(: cnet_atlocation_442918d147 (AtLocation ads newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "advertisement is located at bus", "pln": ["(: cnet_atlocation_6e173bd561 (AtLocation advertisement bus) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "advertisement is located at magazine", "pln": ["(: cnet_atlocation_ef9131a4a7 (AtLocation advertisement magazine) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "advertisement is located at mail", "pln": ["(: cnet_atlocation_e7e6793b41 (AtLocation advertisement mail) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "advertisement is located at mail box", "pln": ["(: cnet_atlocation_db96d8c186 (AtLocation advertisement mail_box) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "advertisement is located at subway", "pln": ["(: cnet_atlocation_86930e8ec2 (AtLocation advertisement subway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "advertisement is located at television", "pln": ["(: cnet_atlocation_87bd280aec (AtLocation advertisement television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "advertising is located at newspaper", "pln": ["(: cnet_atlocation_403ea37dc3 (AtLocation advertising newspaper) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "agenda is located at meeting", "pln": ["(: cnet_atlocation_5dff034078 (AtLocation agenda meeting) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "air is located at balloon", "pln": ["(: cnet_atlocation_3d4e965b6a (AtLocation air balloon) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "air is located at house", "pln": ["(: cnet_atlocation_526cf4f451 (AtLocation air house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "air is located at sky", "pln": ["(: cnet_atlocation_07b74de656 (AtLocation air sky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "air is located at space shuttle", "pln": ["(: cnet_atlocation_3b1430a277 (AtLocation air space_shuttle) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "air is located at supermarket", "pln": ["(: cnet_atlocation_1ff6aeecd9 (AtLocation air supermarket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "air is located at surface of earth", "pln": ["(: cnet_atlocation_f61177802b (AtLocation air surface_of_earth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "air bubble is located at water", "pln": ["(: cnet_atlocation_c8fa8b88a5 (AtLocation air_bubble water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "air conditioner is located at house", "pln": ["(: cnet_atlocation_e5444a74e3 (AtLocation air_conditioner house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "air mail stamp is located at desk", "pln": ["(: cnet_atlocation_9c136f5390 (AtLocation air_mail_stamp desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "air terminal is located at airport", "pln": ["(: cnet_atlocation_aa8ea65f03 (AtLocation air_terminal airport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "air traffic control tower is located at airport", "pln": ["(: cnet_atlocation_9a0efc14e1 (AtLocation air_traffic_control_tower airport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "aircraft is located at air", "pln": ["(: cnet_atlocation_91b8847821 (AtLocation aircraft air) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "aircraft is located at sky", "pln": ["(: cnet_atlocation_f323c0375a (AtLocation aircraft sky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "airline representative is located at airport", "pln": ["(: cnet_atlocation_73598a7f2d (AtLocation airline_representative airport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "airlock is located at space shuttle", "pln": ["(: cnet_atlocation_bee473d789 (AtLocation airlock space_shuttle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "airplane is located at air", "pln": ["(: cnet_atlocation_b6f4f8a962 (AtLocation airplane air) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "airplane is located at hanger", "pln": ["(: cnet_atlocation_9dd3156f18 (AtLocation airplane hanger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "airplane is located at military base", "pln": ["(: cnet_atlocation_19984befc3 (AtLocation airplane military_base) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "airplane is located at sky", "pln": ["(: cnet_atlocation_e4f925ee76 (AtLocation airplane sky) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "airplane seat is located at airplane", "pln": ["(: cnet_atlocation_c19b9bca43 (AtLocation airplane_seat airplane) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "aisle is located at church", "pln": ["(: cnet_atlocation_a5aa5d9d3d (AtLocation aisle church) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "aisle is located at store", "pln": ["(: cnet_atlocation_b546771fcf (AtLocation aisle store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "aisle is located at supermarket", "pln": ["(: cnet_atlocation_7621690c2e (AtLocation aisle supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "aisle is located at plane", "pln": ["(: cnet_atlocation_2fdaa877c6 (AtLocation aisle plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "aisle is located at theatre", "pln": ["(: cnet_atlocation_ee0958197b (AtLocation aisle theatre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "album is located at cd case", "pln": ["(: cnet_atlocation_9bb69c6709 (AtLocation album cd_case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "album is located at record store", "pln": ["(: cnet_atlocation_da8fc6073f (AtLocation album record_store) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "alcohol is located at beer", "pln": ["(: cnet_atlocation_5a0cc56fca (AtLocation alcohol beer) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "alcohol is located at chemistry lab", "pln": ["(: cnet_atlocation_4a3a8abce3 (AtLocation alcohol chemistry_lab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "alcohol is located at distillery", "pln": ["(: cnet_atlocation_7e262b08a8 (AtLocation alcohol distillery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "alcohol is located at fraternity house", "pln": ["(: cnet_atlocation_f94887567e (AtLocation alcohol fraternity_house) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "alcohol is located at plane", "pln": ["(: cnet_atlocation_09efe8dd29 (AtLocation alcohol plane) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "alcohol is located at pub", "pln": ["(: cnet_atlocation_7873a42cd1 (AtLocation alcohol pub) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "alcohol is located at wine", "pln": ["(: cnet_atlocation_5b04b44746 (AtLocation alcohol wine) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "alcoholic is located at bar", "pln": ["(: cnet_atlocation_1daf2ee12a (AtLocation alcoholic bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "alcoholic is located at homeless shelter", "pln": ["(: cnet_atlocation_f0c9c7d00b (AtLocation alcoholic homeless_shelter) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "alcoholic beverage is located at bar", "pln": ["(: cnet_atlocation_a733aff294 (AtLocation alcoholic_beverage bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "alcoholic drink is located at pub", "pln": ["(: cnet_atlocation_6157419355 (AtLocation alcoholic_drink pub) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "alcoholic is located at liquor store", "pln": ["(: cnet_atlocation_18d475500e (AtLocation alcoholic liquor_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "algae is located at water", "pln": ["(: cnet_atlocation_4ef226607d (AtLocation algae water) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "animals in cages is located at zoo", "pln": ["(: cnet_atlocation_01f5f60a23 (AtLocation animals_in_cages zoo) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "alien is located at roswell", "pln": ["(: cnet_atlocation_711a9eaf2c (AtLocation alien roswell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "alien is located at space", "pln": ["(: cnet_atlocation_a77f941391 (AtLocation alien space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "alien is located at universe", "pln": ["(: cnet_atlocation_e17a0ebbfa (AtLocation alien universe) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "altar is located at sanctuary", "pln": ["(: cnet_atlocation_8bb35da677 (AtLocation altar sanctuary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "altar is located at temple", "pln": ["(: cnet_atlocation_56f70a0308 (AtLocation altar temple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "alter is located at church", "pln": ["(: cnet_atlocation_ddad60abb7 (AtLocation alter church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "alto is located at choir", "pln": ["(: cnet_atlocation_3ebf10dde2 (AtLocation alto choir) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "aluminum foil is located at trash", "pln": ["(: cnet_atlocation_b38da123b2 (AtLocation aluminum_foil trash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "american flag is located at moon", "pln": ["(: cnet_atlocation_d9bb128b09 (AtLocation american_flag moon) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "american flag is located at suface of moon", "pln": ["(: cnet_atlocation_cc82fcb7e7 (AtLocation american_flag suface_of_moon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "american flag left behind by astronaut is located at suface of moon", "pln": ["(: cnet_atlocation_b6be14762a (AtLocation american_flag_left_behind_by_astronaut suface_of_moon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "american is located at america", "pln": ["(: cnet_atlocation_60018d42fb (AtLocation american america) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ammunition is located at war", "pln": ["(: cnet_atlocation_d7142f3f2f (AtLocation ammunition war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "amphitheatre is located at greece", "pln": ["(: cnet_atlocation_7421484010 (AtLocation amphitheatre greece) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "amphitheatre is located at park", "pln": ["(: cnet_atlocation_86e9de6b05 (AtLocation amphitheatre park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "and apple is located at apple orchard", "pln": ["(: cnet_atlocation_e78cf141a9 (AtLocation and_apple apple_orchard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "anemone is located at book", "pln": ["(: cnet_atlocation_c76516c050 (AtLocation anemone book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "anemone is located at gulf of mexico", "pln": ["(: cnet_atlocation_62105cd0ea (AtLocation anemone gulf_of_mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "anemone is located at intertidal zone", "pln": ["(: cnet_atlocation_58130df62e (AtLocation anemone intertidal_zone) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "anemone is located at nursery", "pln": ["(: cnet_atlocation_60183e58bd (AtLocation anemone nursery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "anemone is located at oean", "pln": ["(: cnet_atlocation_b8751acec3 (AtLocation anemone oean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "anemone is located at salt water aquarium", "pln": ["(: cnet_atlocation_74bd32aac7 (AtLocation anemone salt_water_aquarium) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "anemone is located at tide pool", "pln": ["(: cnet_atlocation_747a68456f (AtLocation anemone tide_pool) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "anemone is located at water", "pln": ["(: cnet_atlocation_1c0d4c4206 (AtLocation anemone water) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "angry soldier is located at war", "pln": ["(: cnet_atlocation_d2d2a2a027 (AtLocation angry_soldier war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "animal is located at park", "pln": ["(: cnet_atlocation_874c3610a0 (AtLocation animal park) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "animal is located at pet store", "pln": ["(: cnet_atlocation_bc85957e5c (AtLocation animal pet_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "animal is located at zoo", "pln": ["(: cnet_atlocation_91c2c2c7de (AtLocation animal zoo) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "animal in cage is located at zoo", "pln": ["(: cnet_atlocation_ac2797aca7 (AtLocation animal_in_cage zoo) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "anime is located at comic book store", "pln": ["(: cnet_atlocation_d88ffaa1ea (AtLocation anime comic_book_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ant is located at anthill", "pln": ["(: cnet_atlocation_a11ca8a706 (AtLocation ant anthill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "antenna is located at roof", "pln": ["(: cnet_atlocation_b862883d92 (AtLocation antenna roof) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "antifreeze is located at garage", "pln": ["(: cnet_atlocation_6d02bbad60 (AtLocation antifreeze garage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "antique car is located at car show", "pln": ["(: cnet_atlocation_dcb23ffb39 (AtLocation antique_car car_show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "antique is located at attic", "pln": ["(: cnet_atlocation_0aa4142570 (AtLocation antique attic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "apartment is located at and apartment complex", "pln": ["(: cnet_atlocation_c4a4041b15 (AtLocation apartment and_apartment_complex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "apartment is located at apartment building", "pln": ["(: cnet_atlocation_2fa2f831f8 (AtLocation apartment apartment_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "apartment is located at town", "pln": ["(: cnet_atlocation_40780cd6ce (AtLocation apartment town) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "apartment house is located at city", "pln": ["(: cnet_atlocation_d0ffb3a285 (AtLocation apartment_house city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "apple is located at apple tree", "pln": ["(: cnet_atlocation_8b87b11be3 (AtLocation apple apple_tree) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "apple is located at grocery store", "pln": ["(: cnet_atlocation_5dbd3167d6 (AtLocation apple grocery_store) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "apple pie is located at oven", "pln": ["(: cnet_atlocation_3d4c6adb0b (AtLocation apple_pie oven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "apple tree is located at apple grove", "pln": ["(: cnet_atlocation_46247b7343 (AtLocation apple_tree apple_grove) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "apple tree is located at back yard", "pln": ["(: cnet_atlocation_b10850d113 (AtLocation apple_tree back_yard) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "apple tree is located at backyard", "pln": ["(: cnet_atlocation_be1e82d7e7 (AtLocation apple_tree backyard) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "apple tree is located at country", "pln": ["(: cnet_atlocation_97c51083fa (AtLocation apple_tree country) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "apple tree is located at countryside", "pln": ["(: cnet_atlocation_44e5b5216f (AtLocation apple_tree countryside) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "apple tree is located at field", "pln": ["(: cnet_atlocation_4efb65a5c2 (AtLocation apple_tree field) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "apple tree is located at front yard", "pln": ["(: cnet_atlocation_458b18fda7 (AtLocation apple_tree front_yard) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "apple tree is located at grove", "pln": ["(: cnet_atlocation_cf2bd47d68 (AtLocation apple_tree grove) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "apple tree is located at new york", "pln": ["(: cnet_atlocation_c550443d59 (AtLocation apple_tree new_york) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "apple tree is located at park", "pln": ["(: cnet_atlocation_226f7b9811 (AtLocation apple_tree park) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "apple tree is located at pennsylvania", "pln": ["(: cnet_atlocation_6a107891b2 (AtLocation apple_tree pennsylvania) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "apple tree is located at uzbekistan", "pln": ["(: cnet_atlocation_4cc3d78a04 (AtLocation apple_tree uzbekistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "apple tree is located at valley", "pln": ["(: cnet_atlocation_a667d1ae73 (AtLocation apple_tree valley) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "apple tree is located at washington state", "pln": ["(: cnet_atlocation_1f3fddc8e3 (AtLocation apple_tree washington_state) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "apple tree is located at wisconsin", "pln": ["(: cnet_atlocation_2c64399260 (AtLocation apple_tree wisconsin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "apple tree in is located at back yard", "pln": ["(: cnet_atlocation_81204992b0 (AtLocation apple_tree_in back_yard) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "apple is located at fridge", "pln": ["(: cnet_atlocation_4b0209601f (AtLocation apple fridge) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "applesauce is located at jar", "pln": ["(: cnet_atlocation_abe6b7e053 (AtLocation applesauce jar) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "appliance is located at house", "pln": ["(: cnet_atlocation_cf0efd3d82 (AtLocation appliance house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "appointment book is located at desk", "pln": ["(: cnet_atlocation_1d49ddc66a (AtLocation appointment_book desk) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "archeological artifact is located at museum", "pln": ["(: cnet_atlocation_1e6a4307b5 (AtLocation archeological_artifact museum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "arche is located at state park", "pln": ["(: cnet_atlocation_ba1f3be4a5 (AtLocation arche state_park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "arctic fox is located at arctic", "pln": ["(: cnet_atlocation_9249f308a1 (AtLocation arctic_fox arctic) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "armchair is located at furniture store", "pln": ["(: cnet_atlocation_d2a54d0a6c (AtLocation armchair furniture_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "armoire is located at bedroom", "pln": ["(: cnet_atlocation_3428d95298 (AtLocation armoire bedroom) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "armoire is located at furniture store", "pln": ["(: cnet_atlocation_971300932b (AtLocation armoire furniture_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "army is located at war", "pln": ["(: cnet_atlocation_2f21289f2c (AtLocation army war) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "art is located at gallery opening", "pln": ["(: cnet_atlocation_fd52737cd9 (AtLocation art gallery_opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "art is located at museum", "pln": ["(: cnet_atlocation_2a023c11ff (AtLocation art museum) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "art critic is located at art show", "pln": ["(: cnet_atlocation_0fe3fe33f2 (AtLocation art_critic art_show) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "art work is located at house", "pln": ["(: cnet_atlocation_e6e9fbf216 (AtLocation art_work house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "artery is located at body", "pln": ["(: cnet_atlocation_d3a74f3715 (AtLocation artery body) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "article is located at magazine in store", "pln": ["(: cnet_atlocation_6df0a0ae27 (AtLocation article magazine_in_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "article is located at magazine in stores", "pln": ["(: cnet_atlocation_28ab5167db (AtLocation article magazine_in_stores) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "article is located at newspaper", "pln": ["(: cnet_atlocation_6c72e6d88a (AtLocation article newspaper) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "article is located at newspaper in newspaper", "pln": ["(: cnet_atlocation_ca85f037fa (AtLocation article newspaper_in_newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "artifact is located at museum", "pln": ["(: cnet_atlocation_1ee693505c (AtLocation artifact museum) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "artists is located at art show", "pln": ["(: cnet_atlocation_5a692dbeb4 (AtLocation artists art_show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "assholes is located at washington d c", "pln": ["(: cnet_atlocation_8c42d6ab66 (AtLocation assholes washington_d_c) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "artist is located at art show", "pln": ["(: cnet_atlocation_da330d43e2 (AtLocation artist art_show) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "artist is located at gallery opening", "pln": ["(: cnet_atlocation_1982117ec1 (AtLocation artist gallery_opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "artwork is located at gallery opening", "pln": ["(: cnet_atlocation_99cdb7469a (AtLocation artwork gallery_opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "asphalt paving is located at street", "pln": ["(: cnet_atlocation_e7452bc60b (AtLocation asphalt_paving street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "asphalt tile is located at roof", "pln": ["(: cnet_atlocation_407da0f0bf (AtLocation asphalt_tile roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "aspirin is located at medicine cabinet", "pln": ["(: cnet_atlocation_a8bdb29215 (AtLocation aspirin medicine_cabinet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "asshole is located at washington d c", "pln": ["(: cnet_atlocation_aafc88dc46 (AtLocation asshole washington_d_c) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "assignment is located at work", "pln": ["(: cnet_atlocation_f70e2da807 (AtLocation assignment work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "assortment of clothing and shoe is located at closet", "pln": ["(: cnet_atlocation_4f157d859d (AtLocation assortment_of_clothing_and_shoe closet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "assortment of office supply is located at desk", "pln": ["(: cnet_atlocation_5a3d5c1b21 (AtLocation assortment_of_office_supply desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "asteroid is located at outerspace", "pln": ["(: cnet_atlocation_ee76a4bece (AtLocation asteroid outerspace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "asteroid is located at space", "pln": ["(: cnet_atlocation_8ef9840708 (AtLocation asteroid space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "astronaut s pen is located at space shuttle", "pln": ["(: cnet_atlocation_812822e860 (AtLocation astronaut_s_pen space_shuttle) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "astronaut is located at orbit", "pln": ["(: cnet_atlocation_a4f846e1ae (AtLocation astronaut orbit) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "astronaut is located at space shuttle", "pln": ["(: cnet_atlocation_fc5aeff531 (AtLocation astronaut space_shuttle) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "athelete is located at sporting event", "pln": ["(: cnet_atlocation_aa718256a1 (AtLocation athelete sporting_event) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "athlete is located at sporting event", "pln": ["(: cnet_atlocation_aaf99a4838 (AtLocation athlete sporting_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "atlantic ocean is located at earth", "pln": ["(: cnet_atlocation_6b19ed6513 (AtLocation atlantic_ocean earth) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "atlas is located at bookstore", "pln": ["(: cnet_atlocation_56e343f1b3 (AtLocation atlas bookstore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "attach case is located at office", "pln": ["(: cnet_atlocation_9b00da4314 (AtLocation attach_case office) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "attache case is located at office", "pln": ["(: cnet_atlocation_0fe3e39ac1 (AtLocation attache_case office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "attendee is located at conference", "pln": ["(: cnet_atlocation_d7740a29b6 (AtLocation attendee conference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "attraction is located at disneyland", "pln": ["(: cnet_atlocation_896494c005 (AtLocation attraction disneyland) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "audience is located at arena", "pln": ["(: cnet_atlocation_c80a56e4de (AtLocation audience arena) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "audience is located at hockey game", "pln": ["(: cnet_atlocation_389544d6d2 (AtLocation audience hockey_game) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "audience is located at movie", "pln": ["(: cnet_atlocation_8e27225b39 (AtLocation audience movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "audience is located at movy", "pln": ["(: cnet_atlocation_ed850adf88 (AtLocation audience movy) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "audience is located at show", "pln": ["(: cnet_atlocation_4db5c43e78 (AtLocation audience show) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "audience is located at studio", "pln": ["(: cnet_atlocation_fb07691b5c (AtLocation audience studio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "audience is located at theatre", "pln": ["(: cnet_atlocation_ee6314f54a (AtLocation audience theatre) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "automatic gate is located at gated community", "pln": ["(: cnet_atlocation_8a5a6da09b (AtLocation automatic_gate gated_community) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "automobile is located at dealer lot", "pln": ["(: cnet_atlocation_fa3131c277 (AtLocation automobile dealer_lot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "automobile is located at exit ramp", "pln": ["(: cnet_atlocation_1548a45bff (AtLocation automobile exit_ramp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "automobile is located at fast lane", "pln": ["(: cnet_atlocation_df43f426eb (AtLocation automobile fast_lane) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "automobile is located at freeway", "pln": ["(: cnet_atlocation_80655f6c86 (AtLocation automobile freeway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "automobile is located at garage", "pln": ["(: cnet_atlocation_8432b7c1c3 (AtLocation automobile garage) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "automobile is located at racetrack", "pln": ["(: cnet_atlocation_8067151e11 (AtLocation automobile racetrack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "automobile is located at shop", "pln": ["(: cnet_atlocation_792c26797a (AtLocation automobile shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "automobile is located at side of road", "pln": ["(: cnet_atlocation_da49db8b94 (AtLocation automobile side_of_road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "automobile is located at slow lane", "pln": ["(: cnet_atlocation_860cb4e813 (AtLocation automobile slow_lane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "automobile is located at street", "pln": ["(: cnet_atlocation_df4830d9a2 (AtLocation automobile street) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "automobile is located at road", "pln": ["(: cnet_atlocation_337960634d (AtLocation automobile road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "avenue is located at city", "pln": ["(: cnet_atlocation_869d449752 (AtLocation avenue city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "avenue is located at new york city", "pln": ["(: cnet_atlocation_7a25a80bfa (AtLocation avenue new_york_city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ax is located at garage", "pln": ["(: cnet_atlocation_2c64438da6 (AtLocation ax garage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "baby is located at womb", "pln": ["(: cnet_atlocation_e93931d416 (AtLocation baby womb) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "baby food is located at jar", "pln": ["(: cnet_atlocation_a7e70e6df0 (AtLocation baby_food jar) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "back courtyard is located at palace", "pln": ["(: cnet_atlocation_944209291c (AtLocation back_courtyard palace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "back garden is located at back yard", "pln": ["(: cnet_atlocation_04456143e8 (AtLocation back_garden back_yard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "back garden is located at house", "pln": ["(: cnet_atlocation_2fcb89a803 (AtLocation back_garden house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "backdrop is located at stage show", "pln": ["(: cnet_atlocation_a945941d5b (AtLocation backdrop stage_show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "backdrop is located at theatre", "pln": ["(: cnet_atlocation_ce9c2a1983 (AtLocation backdrop theatre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "backpack is located at school", "pln": ["(: cnet_atlocation_52f4c89877 (AtLocation backpack school) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "backyard is located at house", "pln": ["(: cnet_atlocation_b2d1cc1cf9 (AtLocation backyard house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bacon is located at refridgerator", "pln": ["(: cnet_atlocation_be3a01f547 (AtLocation bacon refridgerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bacon is located at refrigerator", "pln": ["(: cnet_atlocation_119efc24cb (AtLocation bacon refrigerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "bacteria is located at water", "pln": ["(: cnet_atlocation_4912d57b1e (AtLocation bacteria water) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "bad guys is located at jail", "pln": ["(: cnet_atlocation_4170d89503 (AtLocation bad_guys jail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bad guy is located at jail", "pln": ["(: cnet_atlocation_1463c14537 (AtLocation bad_guy jail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bag is located at drawer", "pln": ["(: cnet_atlocation_a0c1e4b629 (AtLocation bag drawer) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "bag is located at grocery store", "pln": ["(: cnet_atlocation_09e2a9e191 (AtLocation bag grocery_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bag is located at supermarket", "pln": ["(: cnet_atlocation_77b4aa3d08 (AtLocation bag supermarket) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bag of chip is located at supermarket", "pln": ["(: cnet_atlocation_b5469f8cd5 (AtLocation bag_of_chip supermarket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bagel is located at breadbox", "pln": ["(: cnet_atlocation_82d4d011f1 (AtLocation bagel breadbox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bagel shop is located at new york city", "pln": ["(: cnet_atlocation_501bfc1c1a (AtLocation bagel_shop new_york_city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "baggage is located at airport", "pln": ["(: cnet_atlocation_f48d8103dc (AtLocation baggage airport) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "baggage is located at train station", "pln": ["(: cnet_atlocation_3b5fc9d040 (AtLocation baggage train_station) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "baggage trunk is located at airport", "pln": ["(: cnet_atlocation_77022d40cc (AtLocation baggage_trunk airport) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "baggage trunk is located at attic", "pln": ["(: cnet_atlocation_f8b67c148e (AtLocation baggage_trunk attic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "baggage trunk is located at car", "pln": ["(: cnet_atlocation_cbae1bc549 (AtLocation baggage_trunk car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bagger is located at supermarket", "pln": ["(: cnet_atlocation_5bfbb6a0fc (AtLocation bagger supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bagpipe is located at scotland", "pln": ["(: cnet_atlocation_662dc6dee2 (AtLocation bagpipe scotland) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bagpipe is located at scottland", "pln": ["(: cnet_atlocation_f5ed442290 (AtLocation bagpipe scottland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "baking bread is located at oven", "pln": ["(: cnet_atlocation_65700dd0b2 (AtLocation baking_bread oven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "baking oven is located at kitchen", "pln": ["(: cnet_atlocation_9ae20fc862 (AtLocation baking_oven kitchen) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "baking oven is located at pizza parlor", "pln": ["(: cnet_atlocation_99ec636b68 (AtLocation baking_oven pizza_parlor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "balalaika is located at music store", "pln": ["(: cnet_atlocation_ce3e962174 (AtLocation balalaika music_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "balalaika is located at symphony", "pln": ["(: cnet_atlocation_14fdaaecf3 (AtLocation balalaika symphony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "balcony is located at house", "pln": ["(: cnet_atlocation_d531481994 (AtLocation balcony house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "balcony is located at opera", "pln": ["(: cnet_atlocation_ef1cf7f8d0 (AtLocation balcony opera) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "balcony is located at theater", "pln": ["(: cnet_atlocation_c9dae7c6de (AtLocation balcony theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "balcony seat is located at balcony", "pln": ["(: cnet_atlocation_4b31ff5e66 (AtLocation balcony_seat balcony) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "balcony seat is located at theater", "pln": ["(: cnet_atlocation_fe591f314b (AtLocation balcony_seat theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bald eagle is located at aerie", "pln": ["(: cnet_atlocation_4879daf4f6 (AtLocation bald_eagle aerie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bald eagle is located at canada", "pln": ["(: cnet_atlocation_e4a99e3ed3 (AtLocation bald_eagle canada) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bald eagle is located at captivity", "pln": ["(: cnet_atlocation_1f90ffce84 (AtLocation bald_eagle captivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bald eagle is located at cliff", "pln": ["(: cnet_atlocation_3126eaaeaf (AtLocation bald_eagle cliff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bald eagle is located at colorado", "pln": ["(: cnet_atlocation_0e3b993519 (AtLocation bald_eagle colorado) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "bald eagle is located at eagle s nest", "pln": ["(: cnet_atlocation_7d48ef3a1d (AtLocation bald_eagle eagle_s_nest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bald eagle is located at everglade", "pln": ["(: cnet_atlocation_d66fa4eb2d (AtLocation bald_eagle everglade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bald eagle is located at flight", "pln": ["(: cnet_atlocation_172dd2a59f (AtLocation bald_eagle flight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bald eagle is located at forrest", "pln": ["(: cnet_atlocation_5f4cd850fa (AtLocation bald_eagle forrest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bald eagle is located at grand canyon", "pln": ["(: cnet_atlocation_1dba650a67 (AtLocation bald_eagle grand_canyon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bald eagle is located at high place", "pln": ["(: cnet_atlocation_ba3ea301f0 (AtLocation bald_eagle high_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bald eagle is located at in washington", "pln": ["(: cnet_atlocation_237bc15be3 (AtLocation bald_eagle in_washington) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bald eagle is located at natural habitat", "pln": ["(: cnet_atlocation_5a83c5669c (AtLocation bald_eagle natural_habitat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bald eagle is located at picture", "pln": ["(: cnet_atlocation_ef789c6ff5 (AtLocation bald_eagle picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bald eagle is located at presidential seal", "pln": ["(: cnet_atlocation_fd50719e8b (AtLocation bald_eagle presidential_seal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bald eagle is located at refuge", "pln": ["(: cnet_atlocation_43d90edb8a (AtLocation bald_eagle refuge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bald eagle is located at researve", "pln": ["(: cnet_atlocation_0914ec075a (AtLocation bald_eagle researve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bald eagle is located at tall tree", "pln": ["(: cnet_atlocation_76d244c5ba (AtLocation bald_eagle tall_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "bald eagle is located at tree", "pln": ["(: cnet_atlocation_7900075e89 (AtLocation bald_eagle tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bald eagle is located at u s", "pln": ["(: cnet_atlocation_aa036815a2 (AtLocation bald_eagle u_s) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bald eagle is located at utah", "pln": ["(: cnet_atlocation_cd35b91242 (AtLocation bald_eagle utah) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bald eagle is located at washington", "pln": ["(: cnet_atlocation_24322d48f7 (AtLocation bald_eagle washington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bald eagle is located at western north america", "pln": ["(: cnet_atlocation_e83943b977 (AtLocation bald_eagle western_north_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ball is located at baseball game", "pln": ["(: cnet_atlocation_67c5154614 (AtLocation ball baseball_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "ball is located at basketball court", "pln": ["(: cnet_atlocation_0b0d72e6b0 (AtLocation ball basketball_court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ball is located at beach", "pln": ["(: cnet_atlocation_21b7ccacf5 (AtLocation ball beach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "ball is located at bearing", "pln": ["(: cnet_atlocation_d14c2d7b62 (AtLocation ball bearing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "barriers is located at roadblock", "pln": ["(: cnet_atlocation_1f4b613cd0 (AtLocation barriers roadblock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ball is located at child s hand", "pln": ["(: cnet_atlocation_dfb2f0463f (AtLocation ball child_s_hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ball is located at child toybox", "pln": ["(: cnet_atlocation_7766b2926c (AtLocation ball child_toybox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ball is located at closet", "pln": ["(: cnet_atlocation_340b3ad59e (AtLocation ball closet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ball is located at cricket pitch", "pln": ["(: cnet_atlocation_78793a0250 (AtLocation ball cricket_pitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ball is located at hole", "pln": ["(: cnet_atlocation_3988b5a981 (AtLocation ball hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ball is located at playroom", "pln": ["(: cnet_atlocation_226eed4da3 (AtLocation ball playroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ball is located at pool table", "pln": ["(: cnet_atlocation_ee49eef3fb (AtLocation ball pool_table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ball is located at snooker table", "pln": ["(: cnet_atlocation_0d2230942e (AtLocation ball snooker_table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ball is located at soccer field", "pln": ["(: cnet_atlocation_e3eadcf5ae (AtLocation ball soccer_field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ball is located at soccer game", "pln": ["(: cnet_atlocation_3565187018 (AtLocation ball soccer_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ball is located at sport", "pln": ["(: cnet_atlocation_199680fe9a (AtLocation ball sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ball is located at street", "pln": ["(: cnet_atlocation_6e6d11e65b (AtLocation ball street) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ball is located at toy box", "pln": ["(: cnet_atlocation_e3f69d0e68 (AtLocation ball toy_box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ball is located at toy store", "pln": ["(: cnet_atlocation_0bcfe4b09b (AtLocation ball toy_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ball is located at toybox", "pln": ["(: cnet_atlocation_2ea5936cb7 (AtLocation ball toybox) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ball bearing is located at machine", "pln": ["(: cnet_atlocation_711fa87fbd (AtLocation ball_bearing machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ball bearing is located at wheel", "pln": ["(: cnet_atlocation_2d60f0cb02 (AtLocation ball_bearing wheel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ballet is located at theater", "pln": ["(: cnet_atlocation_86f595dd2d (AtLocation ballet theater) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ballon is located at carnival", "pln": ["(: cnet_atlocation_96b157cf79 (AtLocation ballon carnival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "balloon is located at sky", "pln": ["(: cnet_atlocation_6f9f4f1775 (AtLocation balloon sky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ballpoint pen is located at desk drawer", "pln": ["(: cnet_atlocation_0deb978430 (AtLocation ballpoint_pen desk_drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ballpoint pen is located at drawer", "pln": ["(: cnet_atlocation_8cf36ecfa1 (AtLocation ballpoint_pen drawer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ball is located at gym", "pln": ["(: cnet_atlocation_fb5ff8a92c (AtLocation ball gym) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ball is located at park", "pln": ["(: cnet_atlocation_e9e93d687d (AtLocation ball park) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ball is located at sporting event", "pln": ["(: cnet_atlocation_d96ce69bcb (AtLocation ball sporting_event) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "banana peel is located at trash", "pln": ["(: cnet_atlocation_65d47ab778 (AtLocation banana_peel trash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "banana peel is located at waste bin", "pln": ["(: cnet_atlocation_fd1ae6d6f9 (AtLocation banana_peel waste_bin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "band is located at wedding", "pln": ["(: cnet_atlocation_3359d81e27 (AtLocation band wedding) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "band aid is located at drug store", "pln": ["(: cnet_atlocation_99eec2dd68 (AtLocation band_aid drug_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "band aid is located at first aid kit", "pln": ["(: cnet_atlocation_133ec7f4df (AtLocation band_aid first_aid_kit) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bandaid is located at cabinet", "pln": ["(: cnet_atlocation_b56df8e9dd (AtLocation bandaid cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "banjo is located at band", "pln": ["(: cnet_atlocation_7c297055dd (AtLocation banjo band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "banjo is located at banjo player hand", "pln": ["(: cnet_atlocation_f3e363edb6 (AtLocation banjo banjo_player_hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "banjo is located at country band", "pln": ["(: cnet_atlocation_51437d71f9 (AtLocation banjo country_band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "banjo is located at united state", "pln": ["(: cnet_atlocation_6de5980eb8 (AtLocation banjo united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bank is located at city", "pln": ["(: cnet_atlocation_0046f2d8c0 (AtLocation bank city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bank is located at park", "pln": ["(: cnet_atlocation_d4c3476d38 (AtLocation bank park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "banknote is located at pocket", "pln": ["(: cnet_atlocation_31263ad84c (AtLocation banknote pocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bar is located at city", "pln": ["(: cnet_atlocation_7a86f0e487 (AtLocation bar city) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bar of soap is located at bathtub", "pln": ["(: cnet_atlocation_a27eddb88d (AtLocation bar_of_soap bathtub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bar service is located at hotel", "pln": ["(: cnet_atlocation_bdc13c8880 (AtLocation bar_service hotel) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "barber comb is located at barber shop", "pln": ["(: cnet_atlocation_cb99a67c30 (AtLocation barber_comb barber_shop) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "barber comb is located at barbershop", "pln": ["(: cnet_atlocation_d1eb5a691d (AtLocation barber_comb barbershop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "barber comb is located at salon", "pln": ["(: cnet_atlocation_38bc6fc601 (AtLocation barber_comb salon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "barber shop is located at high street", "pln": ["(: cnet_atlocation_7c27dbac12 (AtLocation barber_shop high_street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "barbershop is located at mall", "pln": ["(: cnet_atlocation_441044b393 (AtLocation barbershop mall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "barbershop is located at shopping mall", "pln": ["(: cnet_atlocation_9ba5390572 (AtLocation barbershop shopping_mall) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "barbershop is located at town", "pln": ["(: cnet_atlocation_8eaf0fbef1 (AtLocation barbershop town) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "barbie is located at toy store", "pln": ["(: cnet_atlocation_8183ce4928 (AtLocation barbie toy_store) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "barbie doll is located at toy store", "pln": ["(: cnet_atlocation_5fa4661a5d (AtLocation barbie_doll toy_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "barn is located at country", "pln": ["(: cnet_atlocation_bba915bf11 (AtLocation barn country) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "barn is located at field", "pln": ["(: cnet_atlocation_5b0afcbfba (AtLocation barn field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "barrack is located at military base", "pln": ["(: cnet_atlocation_08b38323e8 (AtLocation barrack military_base) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "barred room is located at jail", "pln": ["(: cnet_atlocation_aa5ebed685 (AtLocation barred_room jail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "barricade is located at roadblock", "pln": ["(: cnet_atlocation_200b8c58d1 (AtLocation barricade roadblock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "barrier is located at roadblock", "pln": ["(: cnet_atlocation_4fb5de043b (AtLocation barrier roadblock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bar is located at jail", "pln": ["(: cnet_atlocation_2b55ac15ca (AtLocation bar jail) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "barstool is located at bar", "pln": ["(: cnet_atlocation_b3e3a9e54f (AtLocation barstool bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bartender is located at bar", "pln": ["(: cnet_atlocation_79c20d2de7 (AtLocation bartender bar) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "baseball is located at park", "pln": ["(: cnet_atlocation_a21549fccf (AtLocation baseball park) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "baseball diamond is located at park", "pln": ["(: cnet_atlocation_c71cb4bda3 (AtLocation baseball_diamond park) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "baseball field is located at baseball stadium", "pln": ["(: cnet_atlocation_72076fddf5 (AtLocation baseball_field baseball_stadium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "baseball ticket is located at baseball stadium", "pln": ["(: cnet_atlocation_244d1bab50 (AtLocation baseball_ticket baseball_stadium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "basement is located at building", "pln": ["(: cnet_atlocation_5d43d8df6a (AtLocation basement building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "basement is located at closet", "pln": ["(: cnet_atlocation_84e4d676c1 (AtLocation basement closet) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "basket with handle is located at shop", "pln": ["(: cnet_atlocation_247697a701 (AtLocation basket_with_handle shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "basketball is located at basketball court", "pln": ["(: cnet_atlocation_0e8da092f1 (AtLocation basketball basketball_court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "basketball is located at basketball game", "pln": ["(: cnet_atlocation_7eeb066099 (AtLocation basketball basketball_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "basketball court is located at city", "pln": ["(: cnet_atlocation_7ca0749f96 (AtLocation basketball_court city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "basketball hoop is located at gym", "pln": ["(: cnet_atlocation_528846c9da (AtLocation basketball_hoop gym) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bass is located at music store", "pln": ["(: cnet_atlocation_ca5f789a2b (AtLocation bass music_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "bass is located at river", "pln": ["(: cnet_atlocation_78b55575de (AtLocation bass river) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bass baritone is located at choir", "pln": ["(: cnet_atlocation_3833fd76d3 (AtLocation bass_baritone choir) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bass clarinet is located at band", "pln": ["(: cnet_atlocation_fa7399b05f (AtLocation bass_clarinet band) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bass clarinet is located at music store", "pln": ["(: cnet_atlocation_f03d3dd716 (AtLocation bass_clarinet music_store) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bass drum is located at drum set", "pln": ["(: cnet_atlocation_705e5c267f (AtLocation bass_drum drum_set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bass fiddle is located at band", "pln": ["(: cnet_atlocation_3fa15785e7 (AtLocation bass_fiddle band) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bass fiddle is located at bluegrass band", "pln": ["(: cnet_atlocation_12735f50e7 (AtLocation bass_fiddle bluegrass_band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "bassoon is located at orchestra", "pln": ["(: cnet_atlocation_48d61fb597 (AtLocation bassoon orchestra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bat is located at belfry", "pln": ["(: cnet_atlocation_47896d6927 (AtLocation bat belfry) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bat is located at cave", "pln": ["(: cnet_atlocation_1658b84aed (AtLocation bat cave) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bath is located at house", "pln": ["(: cnet_atlocation_e535f235c9 (AtLocation bath house) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bath room is located at mall", "pln": ["(: cnet_atlocation_d93e1cf183 (AtLocation bath_room mall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "bathroom is located at at hotel", "pln": ["(: cnet_atlocation_2bd275c53e (AtLocation bathroom at_hotel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bathroom is located at convenience store", "pln": ["(: cnet_atlocation_c37c0934e0 (AtLocation bathroom convenience_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bathroom is located at friend s house", "pln": ["(: cnet_atlocation_f451b4d7b8 (AtLocation bathroom friend_s_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "bathroom is located at hotel", "pln": ["(: cnet_atlocation_259c71cc11 (AtLocation bathroom hotel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bathroom is located at house", "pln": ["(: cnet_atlocation_309f91cb67 (AtLocation bathroom house) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bathroom is located at rest area", "pln": ["(: cnet_atlocation_4dc7b6e8e2 (AtLocation bathroom rest_area) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bathroom is located at school", "pln": ["(: cnet_atlocation_a91d7190c0 (AtLocation bathroom school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "bathroom is located at theater", "pln": ["(: cnet_atlocation_f796d2ea88 (AtLocation bathroom theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "bathroom drawer is located at hotel", "pln": ["(: cnet_atlocation_091898a2a1 (AtLocation bathroom_drawer hotel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bathtub is located at motel", "pln": ["(: cnet_atlocation_b8aa3a72d6 (AtLocation bathtub motel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "battery is located at car", "pln": ["(: cnet_atlocation_e923a13ef0 (AtLocation battery car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "battle is located at war", "pln": ["(: cnet_atlocation_4a644c5272 (AtLocation battle war) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "batz maru doll is located at toy store", "pln": ["(: cnet_atlocation_acc80f142d (AtLocation batz_maru_doll toy_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bay is located at lake", "pln": ["(: cnet_atlocation_d2d99650af (AtLocation bay lake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bay window is located at living room", "pln": ["(: cnet_atlocation_0cfbbc5247 (AtLocation bay_window living_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bazaar is located at india", "pln": ["(: cnet_atlocation_e541d8838e (AtLocation bazaar india) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bbq is located at backyard", "pln": ["(: cnet_atlocation_9755b76ed4 (AtLocation bbq backyard) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bbq is located at restaurant", "pln": ["(: cnet_atlocation_261afd2ea2 (AtLocation bbq restaurant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beach ball is located at beach", "pln": ["(: cnet_atlocation_000b4c3b3f (AtLocation beach_ball beach) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beach towel is located at beach", "pln": ["(: cnet_atlocation_e8ea68c322 (AtLocation beach_towel beach) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beach towel is located at linen closet", "pln": ["(: cnet_atlocation_a5603d60a1 (AtLocation beach_towel linen_closet) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beachball is located at beach", "pln": ["(: cnet_atlocation_de447398a0 (AtLocation beachball beach) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beaker is located at chemistry lab", "pln": ["(: cnet_atlocation_b01f1f0e6d (AtLocation beaker chemistry_lab) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beaker is located at laboratory", "pln": ["(: cnet_atlocation_7a405182e0 (AtLocation beaker laboratory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beam is located at bridge", "pln": ["(: cnet_atlocation_cf503885ac (AtLocation beam bridge) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "beam is located at building", "pln": ["(: cnet_atlocation_a5167f1e91 (AtLocation beam building) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beam is located at ceiling", "pln": ["(: cnet_atlocation_342e9084d7 (AtLocation beam ceiling) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "beam is located at construction site", "pln": ["(: cnet_atlocation_aae055e482 (AtLocation beam construction_site) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beam is located at house", "pln": ["(: cnet_atlocation_fe20c1758d (AtLocation beam house) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beam is located at large building", "pln": ["(: cnet_atlocation_776846b07a (AtLocation beam large_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beam is located at roof", "pln": ["(: cnet_atlocation_239582ec85 (AtLocation beam roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "bean is located at food store", "pln": ["(: cnet_atlocation_c02a7f95ae (AtLocation bean food_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bean is located at soup", "pln": ["(: cnet_atlocation_5f52c0ed35 (AtLocation bean soup) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bean bag chair is located at den", "pln": ["(: cnet_atlocation_69e33485f0 (AtLocation bean_bag_chair den) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bean bag chair is located at kid room", "pln": ["(: cnet_atlocation_547a74a02f (AtLocation bean_bag_chair kid_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beanbag is located at room", "pln": ["(: cnet_atlocation_bc285ea8a4 (AtLocation beanbag room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beanbag chair is located at living room", "pln": ["(: cnet_atlocation_1f0b2026ee (AtLocation beanbag_chair living_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beanie baby is located at toy store", "pln": ["(: cnet_atlocation_3fa68eee30 (AtLocation beanie_baby toy_store) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bean is located at jar", "pln": ["(: cnet_atlocation_ef6b672e39 (AtLocation bean jar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bear is located at wood", "pln": ["(: cnet_atlocation_d9b7ea14b0 (AtLocation bear wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "beauty is located at top of mountain", "pln": ["(: cnet_atlocation_719c407937 (AtLocation beauty top_of_mountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beauty is located at waterfall", "pln": ["(: cnet_atlocation_f6b79921c0 (AtLocation beauty waterfall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beauty salon is located at mall", "pln": ["(: cnet_atlocation_a8eee51190 (AtLocation beauty_salon mall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beaver is located at beaver s dam", "pln": ["(: cnet_atlocation_67d71a0b64 (AtLocation beaver beaver_s_dam) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beaver is located at beaver dam", "pln": ["(: cnet_atlocation_4513607d6c (AtLocation beaver beaver_dam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beaver is located at beaver lodge", "pln": ["(: cnet_atlocation_fb4868cd65 (AtLocation beaver beaver_lodge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beaver is located at beaver pond", "pln": ["(: cnet_atlocation_cc2a7d8048 (AtLocation beaver beaver_pond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beaver is located at beaver trap", "pln": ["(: cnet_atlocation_97f053f2c5 (AtLocation beaver beaver_trap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beaver is located at book", "pln": ["(: cnet_atlocation_47f2fb615d (AtLocation beaver book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beaver is located at canada", "pln": ["(: cnet_atlocation_ac762dec5e (AtLocation beaver canada) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beaver is located at lodge", "pln": ["(: cnet_atlocation_aac1afe556 (AtLocation beaver lodge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beaver is located at ontario", "pln": ["(: cnet_atlocation_bb7e6706d8 (AtLocation beaver ontario) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beaver is located at wilderness", "pln": ["(: cnet_atlocation_ff33cd9107 (AtLocation beaver wilderness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beaver is located at woodland", "pln": ["(: cnet_atlocation_95088de47f (AtLocation beaver woodland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beaver is located at zoo", "pln": ["(: cnet_atlocation_3ed86e3c42 (AtLocation beaver zoo) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bed is located at apartment", "pln": ["(: cnet_atlocation_725b021ff6 (AtLocation bed apartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bed is located at hospital", "pln": ["(: cnet_atlocation_bddf8d87f1 (AtLocation bed hospital) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bed is located at house", "pln": ["(: cnet_atlocation_2da07cf917 (AtLocation bed house) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bed is located at loft", "pln": ["(: cnet_atlocation_0a619c86fc (AtLocation bed loft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bed is located at neighbor s house", "pln": ["(: cnet_atlocation_9a9518c035 (AtLocation bed neighbor_s_house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bed is located at rest area", "pln": ["(: cnet_atlocation_647ebc01d7 (AtLocation bed rest_area) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "bed is located at room", "pln": ["(: cnet_atlocation_34a3cb3d65 (AtLocation bed room) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bed bug is located at bed", "pln": ["(: cnet_atlocation_88d66809b7 (AtLocation bed_bug bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bed sheet is located at bed", "pln": ["(: cnet_atlocation_3dedc44e00 (AtLocation bed_sheet bed) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bed sheet is located at closet", "pln": ["(: cnet_atlocation_c2d5f6ae0f (AtLocation bed_sheet closet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bedroom is located at apartment", "pln": ["(: cnet_atlocation_5ff7cf60ca (AtLocation bedroom apartment) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bedroom is located at house", "pln": ["(: cnet_atlocation_05ccf427fb (AtLocation bedroom house) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bee is located at apiary", "pln": ["(: cnet_atlocation_09d8de3620 (AtLocation bee apiary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bee is located at field of flower", "pln": ["(: cnet_atlocation_8981e8dc5f (AtLocation bee field_of_flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bee is located at garden", "pln": ["(: cnet_atlocation_99dbc294c9 (AtLocation bee garden) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bee is located at garden pollinating flower", "pln": ["(: cnet_atlocation_815707ae10 (AtLocation bee garden_pollinating_flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bee is located at honeysuckle vine", "pln": ["(: cnet_atlocation_6a938d15f9 (AtLocation bee honeysuckle_vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "bee is located at meadow", "pln": ["(: cnet_atlocation_39404002ee (AtLocation bee meadow) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bee is located at orchard", "pln": ["(: cnet_atlocation_9b959fdefe (AtLocation bee orchard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bee is located at pumpkin patch", "pln": ["(: cnet_atlocation_bbb30927c8 (AtLocation bee pumpkin_patch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bee is located at sky", "pln": ["(: cnet_atlocation_a12b3fdeb9 (AtLocation bee sky) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bee is located at swarm", "pln": ["(: cnet_atlocation_6705bfe9b5 (AtLocation bee swarm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beef is located at plate", "pln": ["(: cnet_atlocation_8e0afde59c (AtLocation beef plate) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beer is located at bar", "pln": ["(: cnet_atlocation_d5f30e5e65 (AtLocation beer bar) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beer is located at bottle", "pln": ["(: cnet_atlocation_ab567ff5a5 (AtLocation beer bottle) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beer is located at bowling alley", "pln": ["(: cnet_atlocation_ea5f5629a2 (AtLocation beer bowling_alley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beer is located at brewery", "pln": ["(: cnet_atlocation_ef0eea9e24 (AtLocation beer brewery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beer is located at can", "pln": ["(: cnet_atlocation_3342efe515 (AtLocation beer can) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beer is located at casino", "pln": ["(: cnet_atlocation_a2bbe7ba3d (AtLocation beer casino) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beer is located at fridge", "pln": ["(: cnet_atlocation_49de7a6d00 (AtLocation beer fridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beer is located at grocery store", "pln": ["(: cnet_atlocation_57218b43ef (AtLocation beer grocery_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beer is located at hockey game", "pln": ["(: cnet_atlocation_68c0b4644a (AtLocation beer hockey_game) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beer is located at keg", "pln": ["(: cnet_atlocation_dbc2befc47 (AtLocation beer keg) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "beer is located at refrigerator", "pln": ["(: cnet_atlocation_0cab21bd77 (AtLocation beer refrigerator) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "beggars is located at street", "pln": ["(: cnet_atlocation_9c4b156349 (AtLocation beggars street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beer is located at shelf", "pln": ["(: cnet_atlocation_fa7ce497ef (AtLocation beer shelf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beer is located at sporting event", "pln": ["(: cnet_atlocation_3ecc8f5933 (AtLocation beer sporting_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beer is located at store", "pln": ["(: cnet_atlocation_cfab51a2d1 (AtLocation beer store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beer keg is located at fraternity house", "pln": ["(: cnet_atlocation_09c88ac407 (AtLocation beer_keg fraternity_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bee is located at countryside", "pln": ["(: cnet_atlocation_9d40b2bb2b (AtLocation bee countryside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beet is located at jar", "pln": ["(: cnet_atlocation_4581529594 (AtLocation beet jar) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beggar is located at street", "pln": ["(: cnet_atlocation_2176669c5c (AtLocation beggar street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "believer is located at church", "pln": ["(: cnet_atlocation_49c0ba01a6 (AtLocation believer church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "bell is located at church", "pln": ["(: cnet_atlocation_276b5e3773 (AtLocation bell church) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bell is located at front door", "pln": ["(: cnet_atlocation_f9aa8ec80e (AtLocation bell front_door) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bell is located at school", "pln": ["(: cnet_atlocation_fb8a207afb (AtLocation bell school) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bellhop is located at at hotel", "pln": ["(: cnet_atlocation_fdb3fcf2f2 (AtLocation bellhop at_hotel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bellhop is located at hotel", "pln": ["(: cnet_atlocation_9537f0ad56 (AtLocation bellhop hotel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bench is located at bus depot", "pln": ["(: cnet_atlocation_63412a5757 (AtLocation bench bus_depot) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bench is located at bus stop", "pln": ["(: cnet_atlocation_664fec80e0 (AtLocation bench bus_stop) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bench is located at state park", "pln": ["(: cnet_atlocation_59d34010c6 (AtLocation bench state_park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bench is located at train station", "pln": ["(: cnet_atlocation_c984bc5773 (AtLocation bench train_station) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bench to sit on is located at park", "pln": ["(: cnet_atlocation_e460d1f858 (AtLocation bench_to_sit_on park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bench to sit on is located at train station", "pln": ["(: cnet_atlocation_c1c13dc8fe (AtLocation bench_to_sit_on train_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "best man is located at wedding", "pln": ["(: cnet_atlocation_e02d385d25 (AtLocation best_man wedding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "beverage service is located at airplane", "pln": ["(: cnet_atlocation_dfc9519b49 (AtLocation beverage_service airplane) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "bible is located at at hotel", "pln": ["(: cnet_atlocation_c8212482a5 (AtLocation bible at_hotel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bible is located at hotel", "pln": ["(: cnet_atlocation_4820ae9beb (AtLocation bible hotel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bible is located at motel", "pln": ["(: cnet_atlocation_2a443826c6 (AtLocation bible motel) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bicycle is located at garage", "pln": ["(: cnet_atlocation_a6c2d4572b (AtLocation bicycle garage) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bicycle is located at street", "pln": ["(: cnet_atlocation_bb7e0cefb9 (AtLocation bicycle street) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "bicycle is located at toy store", "pln": ["(: cnet_atlocation_d6b781d18b (AtLocation bicycle toy_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bicycle rider is located at street", "pln": ["(: cnet_atlocation_3feb98211b (AtLocation bicycle_rider street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bicycle storage area is located at bicycle shop", "pln": ["(: cnet_atlocation_77e992ce60 (AtLocation bicycle_storage_area bicycle_shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "big castle is located at disneyland", "pln": ["(: cnet_atlocation_7c37aed333 (AtLocation big_castle disneyland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "big crowd of people is located at party", "pln": ["(: cnet_atlocation_c5b47a326e (AtLocation big_crowd_of_people party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "big fat tenor is located at opera", "pln": ["(: cnet_atlocation_19d4ceb2c5 (AtLocation big_fat_tenor opera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bike is located at street", "pln": ["(: cnet_atlocation_ccbc437338 (AtLocation bike street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bikinis is located at closet", "pln": ["(: cnet_atlocation_472d3ef643 (AtLocation bikinis closet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bill is located at congress", "pln": ["(: cnet_atlocation_156d785f61 (AtLocation bill congress) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bill is located at mail box", "pln": ["(: cnet_atlocation_315d1a84db (AtLocation bill mail_box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bill is located at restaurant", "pln": ["(: cnet_atlocation_062d3f2be3 (AtLocation bill restaurant) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bill is located at wallet", "pln": ["(: cnet_atlocation_a4ea098d7b (AtLocation bill wallet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "billboard is located at city", "pln": ["(: cnet_atlocation_774bf543e6 (AtLocation billboard city) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bird is located at air", "pln": ["(: cnet_atlocation_822c605680 (AtLocation bird air) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bird is located at birdbath", "pln": ["(: cnet_atlocation_b33b413e31 (AtLocation bird birdbath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "bird is located at cage", "pln": ["(: cnet_atlocation_8d6dc3dfbe (AtLocation bird cage) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "birds is located at nest", "pln": ["(: cnet_atlocation_145ea30f24 (AtLocation birds nest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "blankets pillows sheets is located at bed", "pln": ["(: cnet_atlocation_9fee6bb09a (AtLocation blankets_pillows_sheets bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "blowfish is located at most tropical waters", "pln": ["(: cnet_atlocation_03d689d130 (AtLocation blowfish most_tropical_waters) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bird is located at forest", "pln": ["(: cnet_atlocation_87e7fce4d5 (AtLocation bird forest) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bird is located at nest", "pln": ["(: cnet_atlocation_df77a49569 (AtLocation bird nest) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bird is located at roof", "pln": ["(: cnet_atlocation_8d09d7bc16 (AtLocation bird roof) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bird is located at sea", "pln": ["(: cnet_atlocation_63dc9a0d4e (AtLocation bird sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bird is located at sky", "pln": ["(: cnet_atlocation_977ea315ae (AtLocation bird sky) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bird is located at tree", "pln": ["(: cnet_atlocation_cbddb0f23f (AtLocation bird tree) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "birdbath is located at lawn", "pln": ["(: cnet_atlocation_0f72c5c163 (AtLocation birdbath lawn) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bird is located at birdhouse", "pln": ["(: cnet_atlocation_b7b15ffb9e (AtLocation bird birdhouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bird is located at countryside", "pln": ["(: cnet_atlocation_9ce903cbcf (AtLocation bird countryside) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bird is located at park", "pln": ["(: cnet_atlocation_ceee997b99 (AtLocation bird park) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "birth control pill is located at bedroom", "pln": ["(: cnet_atlocation_7855485dd2 (AtLocation birth_control_pill bedroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "birth control pill is located at drug store", "pln": ["(: cnet_atlocation_6f52a21bb4 (AtLocation birth_control_pill drug_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "birth control pill is located at whore house", "pln": ["(: cnet_atlocation_10cab8ebf9 (AtLocation birth_control_pill whore_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "birthday present is located at box", "pln": ["(: cnet_atlocation_35e2fbcc37 (AtLocation birthday_present box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bishop is located at cathedral", "pln": ["(: cnet_atlocation_e64823dc57 (AtLocation bishop cathedral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bishop is located at church", "pln": ["(: cnet_atlocation_d669045269 (AtLocation bishop church) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "black hole is located at space", "pln": ["(: cnet_atlocation_4504f38323 (AtLocation black_hole space) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "black hole is located at outerspace", "pln": ["(: cnet_atlocation_5479a1bb37 (AtLocation black_hole outerspace) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "black hole is located at universe", "pln": ["(: cnet_atlocation_d0768f5b90 (AtLocation black_hole universe) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "black matter is located at universe", "pln": ["(: cnet_atlocation_a8feea2c90 (AtLocation black_matter universe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "blanket is located at bedroom", "pln": ["(: cnet_atlocation_a5ba3e43c2 (AtLocation blanket bedroom) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "blanketing is located at linen closet", "pln": ["(: cnet_atlocation_4e48e45b33 (AtLocation blanketing linen_closet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "blanket pillow sheet is located at bed", "pln": ["(: cnet_atlocation_899ddbcbba (AtLocation blanket_pillow_sheet bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bleacher is located at gymnasium", "pln": ["(: cnet_atlocation_7dad0e772b (AtLocation bleacher gymnasium) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bleacher is located at sporting event", "pln": ["(: cnet_atlocation_800a1225c4 (AtLocation bleacher sporting_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bleacher is located at stadium", "pln": ["(: cnet_atlocation_0736519932 (AtLocation bleacher stadium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "blender is located at kitchen", "pln": ["(: cnet_atlocation_e16193261c (AtLocation blender kitchen) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "blood is located at hospital", "pln": ["(: cnet_atlocation_d01a7abebe (AtLocation blood hospital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "blood is located at person", "pln": ["(: cnet_atlocation_f12693c303 (AtLocation blood person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "blood is located at vein", "pln": ["(: cnet_atlocation_1feae09070 (AtLocation blood vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "blood pressure machine is located at doctor", "pln": ["(: cnet_atlocation_8bbcabe143 (AtLocation blood_pressure_machine doctor) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "blotter is located at desk", "pln": ["(: cnet_atlocation_1c7792717e (AtLocation blotter desk) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "blotter is located at desktop", "pln": ["(: cnet_atlocation_b4210d6b93 (AtLocation blotter desktop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "blowdryer is located at bathroom", "pln": ["(: cnet_atlocation_7658546fee (AtLocation blowdryer bathroom) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "blowfish is located at book", "pln": ["(: cnet_atlocation_c08cb89d71 (AtLocation blowfish book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "blowfish is located at fish market", "pln": ["(: cnet_atlocation_7965809ee4 (AtLocation blowfish fish_market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "blowfish is located at japanese sushi restaurant", "pln": ["(: cnet_atlocation_5b6d1394e2 (AtLocation blowfish japanese_sushi_restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "blowfish is located at most tropical water", "pln": ["(: cnet_atlocation_aaa563d20b (AtLocation blowfish most_tropical_water) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "blowfish is located at restaurant", "pln": ["(: cnet_atlocation_74b2e162e3 (AtLocation blowfish restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "blowfish is located at salt water", "pln": ["(: cnet_atlocation_cffe786244 (AtLocation blowfish salt_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "blowfish is located at sushi restaurant", "pln": ["(: cnet_atlocation_129794641f (AtLocation blowfish sushi_restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "blowfish is located at tropical water", "pln": ["(: cnet_atlocation_68e632234e (AtLocation blowfish tropical_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "board game is located at toy store", "pln": ["(: cnet_atlocation_71ca98dfde (AtLocation board_game toy_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "boarding room is located at hostel", "pln": ["(: cnet_atlocation_4117743a54 (AtLocation boarding_room hostel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "boat is located at harbor", "pln": ["(: cnet_atlocation_4554f261cb (AtLocation boat harbor) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "boat is located at lake", "pln": ["(: cnet_atlocation_9bf4975c9a (AtLocation boat lake) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "boat is located at ocean", "pln": ["(: cnet_atlocation_54dc81dab3 (AtLocation boat ocean) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "boat is located at river", "pln": ["(: cnet_atlocation_8e63b885c9 (AtLocation boat river) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "boat is located at water", "pln": ["(: cnet_atlocation_e8aa6f4033 (AtLocation boat water) (STV 1.0 0.9763))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "boat is located at body of water", "pln": ["(: cnet_atlocation_2e83941712 (AtLocation boat body_of_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "boater is located at boat", "pln": ["(: cnet_atlocation_fcac493e38 (AtLocation boater boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bobby pin is located at woman s hair", "pln": ["(: cnet_atlocation_d267537f40 (AtLocation bobby_pin woman_s_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "body is located at coffin", "pln": ["(: cnet_atlocation_83b50e0999 (AtLocation body coffin) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "body is located at funeral", "pln": ["(: cnet_atlocation_cd3a7f2502 (AtLocation body funeral) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bogeyman is located at bed", "pln": ["(: cnet_atlocation_104d5ff82a (AtLocation bogeyman bed) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "bomb is located at bomber", "pln": ["(: cnet_atlocation_5f02ed53f6 (AtLocation bomb bomber) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bomb is located at war", "pln": ["(: cnet_atlocation_1e86ceb789 (AtLocation bomb war) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bombardon is located at war", "pln": ["(: cnet_atlocation_8bbc3c265d (AtLocation bombardon war) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bone is located at animal", "pln": ["(: cnet_atlocation_848913e979 (AtLocation bone animal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bone is located at arm", "pln": ["(: cnet_atlocation_8be82de92f (AtLocation bone arm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bone is located at cow", "pln": ["(: cnet_atlocation_afe6666afb (AtLocation bone cow) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bone is located at dog s mouth", "pln": ["(: cnet_atlocation_698983a722 (AtLocation bone dog_s_mouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bone is located at fish", "pln": ["(: cnet_atlocation_45225a4b64 (AtLocation bone fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bone is located at fresh fish", "pln": ["(: cnet_atlocation_f8301147cd (AtLocation bone fresh_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bone is located at human body", "pln": ["(: cnet_atlocation_78f9085f66 (AtLocation bone human_body) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bone is located at museum", "pln": ["(: cnet_atlocation_208c31dd9a (AtLocation bone museum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bone is located at skeleton", "pln": ["(: cnet_atlocation_c4996fe393 (AtLocation bone skeleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bone is located at tomb", "pln": ["(: cnet_atlocation_cf1bfdbb7b (AtLocation bone tomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bone is located at vertebrate", "pln": ["(: cnet_atlocation_20a2926006 (AtLocation bone vertebrate) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bone is located at person", "pln": ["(: cnet_atlocation_a56d2c6071 (AtLocation bone person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "booger is located at nose", "pln": ["(: cnet_atlocation_fc261745c0 (AtLocation booger nose) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "book is located at backpack", "pln": ["(: cnet_atlocation_81aefd59d4 (AtLocation book backpack) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "book is located at bedroom", "pln": ["(: cnet_atlocation_f70ef8549a (AtLocation book bedroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "bookends is located at shelf", "pln": ["(: cnet_atlocation_67d0853bee (AtLocation bookends shelf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "book is located at bookshelf", "pln": ["(: cnet_atlocation_65ec783a7b (AtLocation book bookshelf) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "book is located at classroom", "pln": ["(: cnet_atlocation_42dae8a1d6 (AtLocation book classroom) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "book is located at closet", "pln": ["(: cnet_atlocation_faf851f6ad (AtLocation book closet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "book is located at desk", "pln": ["(: cnet_atlocation_521c7f25cf (AtLocation book desk) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "book is located at house", "pln": ["(: cnet_atlocation_9712761744 (AtLocation book house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "book is located at library", "pln": ["(: cnet_atlocation_9199af617e (AtLocation book library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "book is located at shelf", "pln": ["(: cnet_atlocation_5dfa22ab94 (AtLocation book shelf) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "book is located at store", "pln": ["(: cnet_atlocation_550856d5eb (AtLocation book store) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "book is located at table", "pln": ["(: cnet_atlocation_595d8a312b (AtLocation book table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "book is located at university", "pln": ["(: cnet_atlocation_54f0f91dd3 (AtLocation book university) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bookcase is located at den", "pln": ["(: cnet_atlocation_4c434857d7 (AtLocation bookcase den) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bookend is located at shelf", "pln": ["(: cnet_atlocation_32522277d8 (AtLocation bookend shelf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bookie is located at race track", "pln": ["(: cnet_atlocation_905994a3f8 (AtLocation bookie race_track) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "booking office is located at building", "pln": ["(: cnet_atlocation_ed4091a834 (AtLocation booking_office building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bookmarker is located at bookstore", "pln": ["(: cnet_atlocation_ae556aee72 (AtLocation bookmarker bookstore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bookmark is located at bookstore", "pln": ["(: cnet_atlocation_b2341fdce2 (AtLocation bookmark bookstore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "book is located at cabinet", "pln": ["(: cnet_atlocation_d7794cfe2f (AtLocation book cabinet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "book is located at desktop", "pln": ["(: cnet_atlocation_e1f1492163 (AtLocation book desktop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "book for learning is located at school", "pln": ["(: cnet_atlocation_3ceeb7a436 (AtLocation book_for_learning school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bookshelf is located at library", "pln": ["(: cnet_atlocation_77e0f5f070 (AtLocation bookshelf library) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bookshop is located at mall", "pln": ["(: cnet_atlocation_732201caf6 (AtLocation bookshop mall) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bookstore is located at city", "pln": ["(: cnet_atlocation_93adee0836 (AtLocation bookstore city) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bookstore is located at mall", "pln": ["(: cnet_atlocation_55c7206fff (AtLocation bookstore mall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "boot is located at foot", "pln": ["(: cnet_atlocation_a3a869c565 (AtLocation boot foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "booth is located at farmer s market", "pln": ["(: cnet_atlocation_30625d889e (AtLocation booth farmer_s_market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "boot is located at sporting good store", "pln": ["(: cnet_atlocation_9185f67a09 (AtLocation boot sporting_good_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "booze is located at friend s wedding", "pln": ["(: cnet_atlocation_6b4b28ecc7 (AtLocation booze friend_s_wedding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bored adult is located at meeting", "pln": ["(: cnet_atlocation_9c43ccadb6 (AtLocation bored_adult meeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "bored worker is located at cubicle", "pln": ["(: cnet_atlocation_c5385d70c7 (AtLocation bored_worker cubicle) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "boss is located at meeting", "pln": ["(: cnet_atlocation_7189cb3c08 (AtLocation boss meeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bottle is located at grocery store", "pln": ["(: cnet_atlocation_0bb9ebc04f (AtLocation bottle grocery_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bottle is located at nursery", "pln": ["(: cnet_atlocation_be50df669b (AtLocation bottle nursery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bottle of asprin is located at cabinet", "pln": ["(: cnet_atlocation_82d94baa50 (AtLocation bottle_of_asprin cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bottle of vodka is located at freezer", "pln": ["(: cnet_atlocation_5fe54e4aa7 (AtLocation bottle_of_vodka freezer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bottle of wine is located at table", "pln": ["(: cnet_atlocation_1caad1d088 (AtLocation bottle_of_wine table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bottled water is located at refrigerator", "pln": ["(: cnet_atlocation_f7f4f29fa4 (AtLocation bottled_water refrigerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bottle is located at winery", "pln": ["(: cnet_atlocation_0dc92f9d15 (AtLocation bottle winery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bottle of ketchup is located at restaurant", "pln": ["(: cnet_atlocation_a9210e7457 (AtLocation bottle_of_ketchup restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "bowl is located at cupboard", "pln": ["(: cnet_atlocation_30b49af7fb (AtLocation bowl cupboard) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "bowling lanes is located at bowling alley", "pln": ["(: cnet_atlocation_4a899a9a5f (AtLocation bowling_lanes bowling_alley) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bowling ball is located at bowling alley", "pln": ["(: cnet_atlocation_007f664965 (AtLocation bowling_ball bowling_alley) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bowling lane is located at bowling alley", "pln": ["(: cnet_atlocation_2ec022c9ed (AtLocation bowling_lane bowling_alley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bowling pin is located at bowling alley", "pln": ["(: cnet_atlocation_4652369261 (AtLocation bowling_pin bowling_alley) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bowling shoe is located at bowling alley", "pln": ["(: cnet_atlocation_ced725a8c6 (AtLocation bowling_shoe bowling_alley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "box is located at basement", "pln": ["(: cnet_atlocation_730d4ea2fa (AtLocation box basement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "box is located at closet", "pln": ["(: cnet_atlocation_f12d4490e4 (AtLocation box closet) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "box is located at garage", "pln": ["(: cnet_atlocation_36f90d8685 (AtLocation box garage) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "box is located at post office", "pln": ["(: cnet_atlocation_b11397c3ea (AtLocation box post_office) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "box is located at warehouse", "pln": ["(: cnet_atlocation_f72a89d4a0 (AtLocation box warehouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "box is located at ballpark", "pln": ["(: cnet_atlocation_ab47363110 (AtLocation box ballpark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "box is located at theater", "pln": ["(: cnet_atlocation_b92f6d9414 (AtLocation box theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "box of cereal is located at grocery store", "pln": ["(: cnet_atlocation_a71ef0d6b2 (AtLocation box_of_cereal grocery_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "box of cereal is located at market", "pln": ["(: cnet_atlocation_228ebed6e6 (AtLocation box_of_cereal market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "box of cereal is located at store", "pln": ["(: cnet_atlocation_a77a4afff1 (AtLocation box_of_cereal store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "box of kleenex is located at desk", "pln": ["(: cnet_atlocation_1e8ddd4f36 (AtLocation box_of_kleenex desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "box of tissue is located at desk", "pln": ["(: cnet_atlocation_c4bd5013fe (AtLocation box_of_tissue desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "box office is located at theater", "pln": ["(: cnet_atlocation_73455b7d83 (AtLocation box_office theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "box seating is located at opera", "pln": ["(: cnet_atlocation_8b07c21ef3 (AtLocation box_seating opera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "boxe is located at attic", "pln": ["(: cnet_atlocation_5df9c33dd7 (AtLocation boxe attic) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "boxe is located at basement", "pln": ["(: cnet_atlocation_7a8c21d6ff (AtLocation boxe basement) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "boxe is located at garage", "pln": ["(: cnet_atlocation_8f23fc990e (AtLocation boxe garage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "boxe is located at loft", "pln": ["(: cnet_atlocation_007c8f3fdc (AtLocation boxe loft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "boxe for storage is located at basement", "pln": ["(: cnet_atlocation_f716df3b17 (AtLocation boxe_for_storage basement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "brain is located at person", "pln": ["(: cnet_atlocation_b800f08054 (AtLocation brain person) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "brain is located at skull", "pln": ["(: cnet_atlocation_0c6ba3bdc2 (AtLocation brain skull) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "brake is located at car", "pln": ["(: cnet_atlocation_4e7a05d89c (AtLocation brake car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "branch is located at forest", "pln": ["(: cnet_atlocation_a33a5c205f (AtLocation branch forest) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "branche is located at forest", "pln": ["(: cnet_atlocation_1df53799f7 (AtLocation branche forest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bra is located at suitcase", "pln": ["(: cnet_atlocation_57f6a4bde2 (AtLocation bra suitcase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "brass family is located at orchestra", "pln": ["(: cnet_atlocation_31ca2e8d6d (AtLocation brass_family orchestra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bread is located at breadbox", "pln": ["(: cnet_atlocation_4c73a35912 (AtLocation bread breadbox) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bread is located at dinner", "pln": ["(: cnet_atlocation_bce9bf1a6d (AtLocation bread dinner) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bread is located at market", "pln": ["(: cnet_atlocation_47fef7a2cf (AtLocation bread market) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "bread is located at oven", "pln": ["(: cnet_atlocation_826b5df178 (AtLocation bread oven) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bread is located at pantry", "pln": ["(: cnet_atlocation_f017f76ae6 (AtLocation bread pantry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "bread is located at refrigerator", "pln": ["(: cnet_atlocation_11fe003a39 (AtLocation bread refrigerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bread is located at store", "pln": ["(: cnet_atlocation_36f2cec95e (AtLocation bread store) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "bread is located at supermarket", "pln": ["(: cnet_atlocation_7faa969968 (AtLocation bread supermarket) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bread crumb is located at breadbox", "pln": ["(: cnet_atlocation_d9d76c81aa (AtLocation bread_crumb breadbox) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "break room is located at work", "pln": ["(: cnet_atlocation_b94cfb973b (AtLocation break_room work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "breakfast is located at table", "pln": ["(: cnet_atlocation_5276a70f45 (AtLocation breakfast table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "brick row house is located at city", "pln": ["(: cnet_atlocation_c994ce9a75 (AtLocation brick_row_house city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "brick row house is located at neighborhood", "pln": ["(: cnet_atlocation_cf8fef30b6 (AtLocation brick_row_house neighborhood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "brick is located at building", "pln": ["(: cnet_atlocation_2593d11c1a (AtLocation brick building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bride is located at wedding", "pln": ["(: cnet_atlocation_74f2b5cc68 (AtLocation bride wedding) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bride and groom is located at friend s wedding", "pln": ["(: cnet_atlocation_141471ebde (AtLocation bride_and_groom friend_s_wedding) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bride and groom is located at wedding", "pln": ["(: cnet_atlocation_982536a36e (AtLocation bride_and_groom wedding) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bridge is located at river", "pln": ["(: cnet_atlocation_121c8fc32b (AtLocation bridge river) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bridge arch is located at major city", "pln": ["(: cnet_atlocation_d8b5c46ce0 (AtLocation bridge_arch major_city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "briefcase is located at hand", "pln": ["(: cnet_atlocation_2af7f55b73 (AtLocation briefcase hand) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "broadcast studio is located at radio station", "pln": ["(: cnet_atlocation_c4139b099d (AtLocation broadcast_studio radio_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "broken is located at repair shop", "pln": ["(: cnet_atlocation_8063a2b8e2 (AtLocation broken repair_shop) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "broken car is located at repair shop", "pln": ["(: cnet_atlocation_cebe74974e (AtLocation broken_car repair_shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "broken glass is located at beach", "pln": ["(: cnet_atlocation_34d84b81b4 (AtLocation broken_glass beach) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "broken item is located at repair shop", "pln": ["(: cnet_atlocation_2c355e8403 (AtLocation broken_item repair_shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "broken thing is located at repair shop", "pln": ["(: cnet_atlocation_ad5c216674 (AtLocation broken_thing repair_shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "broken toaster is located at repair shop", "pln": ["(: cnet_atlocation_07c23889dc (AtLocation broken_toaster repair_shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "brook is located at country", "pln": ["(: cnet_atlocation_ca1bc6933b (AtLocation brook country) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "broom is located at closet", "pln": ["(: cnet_atlocation_be457bf5db (AtLocation broom closet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "brother is located at family", "pln": ["(: cnet_atlocation_ad828c5270 (AtLocation brother family) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "brother is located at home", "pln": ["(: cnet_atlocation_57a654fe9c (AtLocation brother home) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "brother is located at house", "pln": ["(: cnet_atlocation_0cd2e1eaf9 (AtLocation brother house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bubblegum is located at supermarket", "pln": ["(: cnet_atlocation_bbe1431891 (AtLocation bubblegum supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bubble is located at swimming pool", "pln": ["(: cnet_atlocation_8b483d5a0a (AtLocation bubble swimming_pool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bucket is located at janitor closet", "pln": ["(: cnet_atlocation_99dcc8765f (AtLocation bucket janitor_closet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "buddhist is located at temple", "pln": ["(: cnet_atlocation_2a5cebd920 (AtLocation buddhist temple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "buffet is located at restaurant", "pln": ["(: cnet_atlocation_32b935bcb2 (AtLocation buffet restaurant) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bug is located at meadow", "pln": ["(: cnet_atlocation_0c2a49c335 (AtLocation bug meadow) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bug is located at rock", "pln": ["(: cnet_atlocation_42cf865f79 (AtLocation bug rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bug is located at field", "pln": ["(: cnet_atlocation_8b640fc1f4 (AtLocation bug field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bug is located at roof", "pln": ["(: cnet_atlocation_4983c7a45d (AtLocation bug roof) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "building is located at town", "pln": ["(: cnet_atlocation_5a11f5895d (AtLocation building town) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "building is located at city", "pln": ["(: cnet_atlocation_0fc547caab (AtLocation building city) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "building is located at university", "pln": ["(: cnet_atlocation_eaecd54927 (AtLocation building university) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bulb is located at land", "pln": ["(: cnet_atlocation_116b49e51f (AtLocation bulb land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bullet is located at magazine", "pln": ["(: cnet_atlocation_87a1c8ef68 (AtLocation bullet magazine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "bullet train is located at railway", "pln": ["(: cnet_atlocation_bb7d94c031 (AtLocation bullet_train railway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bullet is located at war", "pln": ["(: cnet_atlocation_b47f12c58d (AtLocation bullet war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bum is located at bridge", "pln": ["(: cnet_atlocation_185760c89b (AtLocation bum bridge) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bum is located at bus stop", "pln": ["(: cnet_atlocation_a6ba44f2f5 (AtLocation bum bus_stop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bungalow is located at suburb", "pln": ["(: cnet_atlocation_031d5b4809 (AtLocation bungalow suburb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "bunsen burner is located at chemistry lab", "pln": ["(: cnet_atlocation_8838497772 (AtLocation bunsen_burner chemistry_lab) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "burlap is located at sacks", "pln": ["(: cnet_atlocation_4fccc3608b (AtLocation burlap sacks) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bunsen burner is located at laboratory", "pln": ["(: cnet_atlocation_a537eff942 (AtLocation bunsen_burner laboratory) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bureau is located at bedroom", "pln": ["(: cnet_atlocation_37e9678cfe (AtLocation bureau bedroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bureau is located at city", "pln": ["(: cnet_atlocation_6cc6bc38a9 (AtLocation bureau city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "burlap is located at sack", "pln": ["(: cnet_atlocation_4154ffd3a6 (AtLocation burlap sack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bus is located at bus station", "pln": ["(: cnet_atlocation_58c8a08c14 (AtLocation bus bus_station) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "bus is located at bus stop", "pln": ["(: cnet_atlocation_a19b12000b (AtLocation bus bus_stop) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bus is located at city", "pln": ["(: cnet_atlocation_7d82ce9fba (AtLocation bus city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bus is located at road", "pln": ["(: cnet_atlocation_5941a15948 (AtLocation bus road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bus pass is located at bus station", "pln": ["(: cnet_atlocation_19fa712554 (AtLocation bus_pass bus_station) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bus pass is located at pocket", "pln": ["(: cnet_atlocation_62b6911472 (AtLocation bus_pass pocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bus schedule is located at bus depot", "pln": ["(: cnet_atlocation_9945dec301 (AtLocation bus_schedule bus_depot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bus schedule is located at bus stop", "pln": ["(: cnet_atlocation_4f002fbc8f (AtLocation bus_schedule bus_stop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bus seat is located at bus", "pln": ["(: cnet_atlocation_74abc2d972 (AtLocation bus_seat bus) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bus shelter is located at bus route", "pln": ["(: cnet_atlocation_6a76114d85 (AtLocation bus_shelter bus_route) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bus shelter is located at bus station", "pln": ["(: cnet_atlocation_3610324f17 (AtLocation bus_shelter bus_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bus shelter is located at city", "pln": ["(: cnet_atlocation_6a5ce00fc2 (AtLocation bus_shelter city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bus station is located at city", "pln": ["(: cnet_atlocation_06855447de (AtLocation bus_station city) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bus stop is located at city", "pln": ["(: cnet_atlocation_0560b55ae8 (AtLocation bus_stop city) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "bus stop is located at town", "pln": ["(: cnet_atlocation_57e0d543e8 (AtLocation bus_stop town) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "bus stop is located at urban area", "pln": ["(: cnet_atlocation_1197a98d1b (AtLocation bus_stop urban_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "busboy is located at resturant", "pln": ["(: cnet_atlocation_69a12898b5 (AtLocation busboy resturant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "business is located at office building", "pln": ["(: cnet_atlocation_91706c591f (AtLocation business office_building) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "business card is located at desk", "pln": ["(: cnet_atlocation_fe28659432 (AtLocation business_card desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "business class airplane seat is located at airplane", "pln": ["(: cnet_atlocation_255416614a (AtLocation business_class_airplane_seat airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "butter is located at fridge", "pln": ["(: cnet_atlocation_b9c63823b3 (AtLocation butter fridge) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "butter is located at pastry", "pln": ["(: cnet_atlocation_ebfdc0f535 (AtLocation butter pastry) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "butter is located at refrigerator", "pln": ["(: cnet_atlocation_9fedf606b7 (AtLocation butter refrigerator) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "butter is located at restaurant", "pln": ["(: cnet_atlocation_7f1cba9c39 (AtLocation butter restaurant) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "butter is located at store", "pln": ["(: cnet_atlocation_9ebfc1acfb (AtLocation butter store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "butterfly is located at meadow", "pln": ["(: cnet_atlocation_3c7b88634b (AtLocation butterfly meadow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cabbage is located at supermarket", "pln": ["(: cnet_atlocation_051889e8b0 (AtLocation cabbage supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cabinet is located at corner", "pln": ["(: cnet_atlocation_a5677cdeef (AtLocation cabinet corner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cabinet is located at kitchen", "pln": ["(: cnet_atlocation_6b1ac39393 (AtLocation cabinet kitchen) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "cable is located at computer", "pln": ["(: cnet_atlocation_bd8ae6460b (AtLocation cable computer) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cable is located at desk", "pln": ["(: cnet_atlocation_480133879b (AtLocation cable desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cacti is located at desert", "pln": ["(: cnet_atlocation_d003956b93 (AtLocation cacti desert) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cactus is located at desert", "pln": ["(: cnet_atlocation_08ca97ce8d (AtLocation cactus desert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cafe is located at building", "pln": ["(: cnet_atlocation_113c8b955a (AtLocation cafe building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cafe is located at city", "pln": ["(: cnet_atlocation_39a79df2e7 (AtLocation cafe city) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cafe is located at london", "pln": ["(: cnet_atlocation_dfa4b228c2 (AtLocation cafe london) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cafe is located at paris", "pln": ["(: cnet_atlocation_884fc9c7b7 (AtLocation cafe paris) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cafeteria is located at school", "pln": ["(: cnet_atlocation_5562c71e3c (AtLocation cafeteria school) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cage is located at zoo", "pln": ["(: cnet_atlocation_e0af99c927 (AtLocation cage zoo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cake is located at bakery", "pln": ["(: cnet_atlocation_bbdb4420e0 (AtLocation cake bakery) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cake is located at oven", "pln": ["(: cnet_atlocation_075a1e4b1c (AtLocation cake oven) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cake is located at party", "pln": ["(: cnet_atlocation_f8cb863d0f (AtLocation cake party) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cake is located at store", "pln": ["(: cnet_atlocation_454a3ff4c1 (AtLocation cake store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "calculator is located at accountant s table", "pln": ["(: cnet_atlocation_3162d33455 (AtLocation calculator accountant_s_table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "calculator is located at desk", "pln": ["(: cnet_atlocation_99defbf0fa (AtLocation calculator desk) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "calculator is located at desktop", "pln": ["(: cnet_atlocation_689a87d6d5 (AtLocation calculator desktop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "calculator is located at office", "pln": ["(: cnet_atlocation_445ee5b2a5 (AtLocation calculator office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "calculator is located at wristwatch", "pln": ["(: cnet_atlocation_d4fcb17279 (AtLocation calculator wristwatch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "calendar is located at desk", "pln": ["(: cnet_atlocation_0f87bddb2c (AtLocation calendar desk) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "calendar is located at desktop", "pln": ["(: cnet_atlocation_9e549a20a0 (AtLocation calendar desktop) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "calendar is located at office supply store", "pln": ["(: cnet_atlocation_65c3f5d93b (AtLocation calendar office_supply_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "calendar book is located at briefcase", "pln": ["(: cnet_atlocation_2b2ab3ac2a (AtLocation calendar_book briefcase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "calendar pad is located at office", "pln": ["(: cnet_atlocation_e54da9127c (AtLocation calendar_pad office) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "calendar pad is located at office supply store", "pln": ["(: cnet_atlocation_d3ef79e90a (AtLocation calendar_pad office_supply_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "calender is located at desk", "pln": ["(: cnet_atlocation_ad6e879a31 (AtLocation calender desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "calm and stormy weather is located at sea", "pln": ["(: cnet_atlocation_c605389510 (AtLocation calm_and_stormy_weather sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "camera is located at suitcase", "pln": ["(: cnet_atlocation_9b3d5439ad (AtLocation camera suitcase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "camp site is located at forest", "pln": ["(: cnet_atlocation_e7f8caeef4 (AtLocation camp_site forest) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "campaign finance reform is located at table", "pln": ["(: cnet_atlocation_38f1d908e3 (AtLocation campaign_finance_reform table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "camper is located at forest", "pln": ["(: cnet_atlocation_89e0c56b72 (AtLocation camper forest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "camping supply is located at backpack", "pln": ["(: cnet_atlocation_d66b1a3edf (AtLocation camping_supply backpack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "can is located at cupboard", "pln": ["(: cnet_atlocation_70172ac25c (AtLocation can cupboard) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "can is located at grocery store", "pln": ["(: cnet_atlocation_62b737331a (AtLocation can grocery_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "can is located at pantry", "pln": ["(: cnet_atlocation_e914ab3c4e (AtLocation can pantry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "can is located at shelf", "pln": ["(: cnet_atlocation_0f411c94f2 (AtLocation can shelf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "can of paint is located at garage", "pln": ["(: cnet_atlocation_64a8824f09 (AtLocation can_of_paint garage) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "can of paint is located at hardware store", "pln": ["(: cnet_atlocation_a250bdc01f (AtLocation can_of_paint hardware_store) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "can of soda is located at vending machine", "pln": ["(: cnet_atlocation_a2f7c30dd7 (AtLocation can_of_soda vending_machine) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "canadian bacon is located at pizza", "pln": ["(: cnet_atlocation_eb56e2d66c (AtLocation canadian_bacon pizza) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "canal is located at amsterdam", "pln": ["(: cnet_atlocation_b30c2a669b (AtLocation canal amsterdam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "candy is located at movies", "pln": ["(: cnet_atlocation_c31d64b2b0 (AtLocation candy movies) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "canal is located at venice", "pln": ["(: cnet_atlocation_aca7c7f42b (AtLocation canal venice) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "candle is located at birthday cake", "pln": ["(: cnet_atlocation_71321a1036 (AtLocation candle birthday_cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "candle is located at kitchen", "pln": ["(: cnet_atlocation_f9ff1ff089 (AtLocation candle kitchen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "candle is located at table", "pln": ["(: cnet_atlocation_9e63eb575f (AtLocation candle table) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "candy is located at jar", "pln": ["(: cnet_atlocation_03320636e6 (AtLocation candy jar) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "candy is located at mall", "pln": ["(: cnet_atlocation_4328c5d5c7 (AtLocation candy mall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "candy is located at movy", "pln": ["(: cnet_atlocation_cc2e2eae9f (AtLocation candy movy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "candy is located at supermarket", "pln": ["(: cnet_atlocation_3d62aae51e (AtLocation candy supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cannabis is located at amsterdam", "pln": ["(: cnet_atlocation_e0e9222aa3 (AtLocation cannabis amsterdam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cannabis is located at garden", "pln": ["(: cnet_atlocation_cf05f147d6 (AtLocation cannabis garden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "canned food is located at cabinet", "pln": ["(: cnet_atlocation_c27626c6d3 (AtLocation canned_food cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "canned food is located at grocery store", "pln": ["(: cnet_atlocation_0ce48cb46a (AtLocation canned_food grocery_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "canned food is located at pantry", "pln": ["(: cnet_atlocation_17645f9b7e (AtLocation canned_food pantry) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "canned food is located at shelf", "pln": ["(: cnet_atlocation_6d73375579 (AtLocation canned_food shelf) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "canned goods is located at pantry", "pln": ["(: cnet_atlocation_b5440a898b (AtLocation canned_goods pantry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "cans of food is located at shelf", "pln": ["(: cnet_atlocation_3ef093f65d (AtLocation cans_of_food shelf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "canvas is located at art store", "pln": ["(: cnet_atlocation_91e620be1e (AtLocation canvas art_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "canned fruit is located at pantry", "pln": ["(: cnet_atlocation_b733a4d44e (AtLocation canned_fruit pantry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "canned good is located at cabinet", "pln": ["(: cnet_atlocation_19a6044e76 (AtLocation canned_good cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "canned good is located at cupboard", "pln": ["(: cnet_atlocation_ce2e70397a (AtLocation canned_good cupboard) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "canned good is located at pantry", "pln": ["(: cnet_atlocation_31e837ebac (AtLocation canned_good pantry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "canned good is located at shelf", "pln": ["(: cnet_atlocation_01e5c4a7d5 (AtLocation canned_good shelf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "canned peache is located at pantry", "pln": ["(: cnet_atlocation_1ec47bf7fc (AtLocation canned_peache pantry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "canned pea is located at store", "pln": ["(: cnet_atlocation_5dbdb6b88d (AtLocation canned_pea store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cannonball is located at cannon", "pln": ["(: cnet_atlocation_7258f00d55 (AtLocation cannonball cannon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "canoe is located at boat house", "pln": ["(: cnet_atlocation_c0440c5753 (AtLocation canoe boat_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "canoe is located at water", "pln": ["(: cnet_atlocation_ea13071e0d (AtLocation canoe water) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "can is located at supermarket", "pln": ["(: cnet_atlocation_1b479b25ee (AtLocation can supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "can of food is located at cupboard", "pln": ["(: cnet_atlocation_2ec83f38f8 (AtLocation can_of_food cupboard) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "can of food is located at shelf", "pln": ["(: cnet_atlocation_1452b16c8c (AtLocation can_of_food shelf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "can of soup is located at cupboard", "pln": ["(: cnet_atlocation_64ee3bae78 (AtLocation can_of_soup cupboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "canteen is located at backpack", "pln": ["(: cnet_atlocation_f29edd585b (AtLocation canteen backpack) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "canva is located at art gallery", "pln": ["(: cnet_atlocation_f58c63430d (AtLocation canva art_gallery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "canva is located at art store", "pln": ["(: cnet_atlocation_828ea7383e (AtLocation canva art_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "capital is located at country", "pln": ["(: cnet_atlocation_e48a3b5af7 (AtLocation capital country) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "capital is located at each state", "pln": ["(: cnet_atlocation_636803cac3 (AtLocation capital each_state) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "captain is located at ship", "pln": ["(: cnet_atlocation_05c2607c51 (AtLocation captain ship) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "captain and crew is located at boat", "pln": ["(: cnet_atlocation_f4e68406d7 (AtLocation captain_and_crew boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "car is located at car dealership", "pln": ["(: cnet_atlocation_35af82544a (AtLocation car car_dealership) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "car is located at car show", "pln": ["(: cnet_atlocation_dd27a4f46a (AtLocation car car_show) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "car is located at city", "pln": ["(: cnet_atlocation_209d86a260 (AtLocation car city) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "car is located at freeway", "pln": ["(: cnet_atlocation_df335bf581 (AtLocation car freeway) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "car is located at neighbor s house", "pln": ["(: cnet_atlocation_6701c66917 (AtLocation car neighbor_s_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "car is located at parking lot", "pln": ["(: cnet_atlocation_3f0f280037 (AtLocation car parking_lot) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "car is located at race track", "pln": ["(: cnet_atlocation_814defc869 (AtLocation car race_track) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "car is located at repair shop", "pln": ["(: cnet_atlocation_a6760e0b3e (AtLocation car repair_shop) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "car is located at road", "pln": ["(: cnet_atlocation_5572d86db6 (AtLocation car road) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "car enthusiast is located at car show", "pln": ["(: cnet_atlocation_9f59c09b2b (AtLocation car_enthusiast car_show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "car key is located at car", "pln": ["(: cnet_atlocation_b91e414c93 (AtLocation car_key car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "car key is located at ignition switch", "pln": ["(: cnet_atlocation_7a62fdc643 (AtLocation car_key ignition_switch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "car key is located at pocket", "pln": ["(: cnet_atlocation_488d0de34f (AtLocation car_key pocket) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "car lover is located at car show", "pln": ["(: cnet_atlocation_4439932bbf (AtLocation car_lover car_show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "car park is located at city", "pln": ["(: cnet_atlocation_ce1491bcda (AtLocation car_park city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "car seat belt is located at car", "pln": ["(: cnet_atlocation_bc5efa42a6 (AtLocation car_seat_belt car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "car wash is located at gas station", "pln": ["(: cnet_atlocation_a3285f2324 (AtLocation car_wash gas_station) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "carbon is located at organic matter", "pln": ["(: cnet_atlocation_bffc24b4f4 (AtLocation carbon organic_matter) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "carnies is located at fair", "pln": ["(: cnet_atlocation_1bd09211f7 (AtLocation carnies fair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "card is located at deck", "pln": ["(: cnet_atlocation_883cbd87f7 (AtLocation card deck) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "card catalog is located at libary", "pln": ["(: cnet_atlocation_9f0db7c0b1 (AtLocation card_catalog libary) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "card catalog is located at library", "pln": ["(: cnet_atlocation_8842bd0996 (AtLocation card_catalog library) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "card catalogue is located at library", "pln": ["(: cnet_atlocation_b33c2f0660 (AtLocation card_catalogue library) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "card index is located at library", "pln": ["(: cnet_atlocation_00cec2fb63 (AtLocation card_index library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "card slot is located at atm machine", "pln": ["(: cnet_atlocation_171767a972 (AtLocation card_slot atm_machine) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "card slot is located at slot machine", "pln": ["(: cnet_atlocation_94ba323058 (AtLocation card_slot slot_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cardboard is located at recycle bin", "pln": ["(: cnet_atlocation_0fc8c6b991 (AtLocation cardboard recycle_bin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cardboard is located at warehouse", "pln": ["(: cnet_atlocation_f316d1f449 (AtLocation cardboard warehouse) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cardboard box is located at trash", "pln": ["(: cnet_atlocation_a74f773819 (AtLocation cardboard_box trash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cardboard box is located at warehouse", "pln": ["(: cnet_atlocation_9b8aff8ddb (AtLocation cardboard_box warehouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "card is located at casino", "pln": ["(: cnet_atlocation_a58e34686f (AtLocation card casino) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "card is located at table", "pln": ["(: cnet_atlocation_95f362aa98 (AtLocation card table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cargo is located at boat", "pln": ["(: cnet_atlocation_54b74d8097 (AtLocation cargo boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cargo is located at ship", "pln": ["(: cnet_atlocation_4b7b87663f (AtLocation cargo ship) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "carny is located at fair", "pln": ["(: cnet_atlocation_031b083f5b (AtLocation carny fair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "carnival is located at fairground", "pln": ["(: cnet_atlocation_fe9cdc0402 (AtLocation carnival fairground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "carousel is located at carnival", "pln": ["(: cnet_atlocation_4457b1507d (AtLocation carousel carnival) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "carpet is located at bed", "pln": ["(: cnet_atlocation_b84bfad756 (AtLocation carpet bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "carpet is located at bedroom", "pln": ["(: cnet_atlocation_29a546a884 (AtLocation carpet bedroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "carpet is located at building", "pln": ["(: cnet_atlocation_c684eb0360 (AtLocation carpet building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "carpet is located at church", "pln": ["(: cnet_atlocation_1217b1bd54 (AtLocation carpet church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "carpet is located at closet", "pln": ["(: cnet_atlocation_c65526452b (AtLocation carpet closet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "carpet is located at desk", "pln": ["(: cnet_atlocation_21b1e2e3a5 (AtLocation carpet desk) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "carpet is located at house", "pln": ["(: cnet_atlocation_f3606313c2 (AtLocation carpet house) (STV 1.0 0.9748))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "carpet is located at office", "pln": ["(: cnet_atlocation_5effd2b78a (AtLocation carpet office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "carpet is located at room", "pln": ["(: cnet_atlocation_34f3db1af3 (AtLocation carpet room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "cartons of milk is located at store", "pln": ["(: cnet_atlocation_d39c1ab465 (AtLocation cartons_of_milk store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "carpet pad is located at carpet", "pln": ["(: cnet_atlocation_2c0b9ff79a (AtLocation carpet_pad carpet) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "carpeting is located at room", "pln": ["(: cnet_atlocation_c50d51947e (AtLocation carpeting room) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "carrier bag is located at supermarket", "pln": ["(: cnet_atlocation_b09b58878d (AtLocation carrier_bag supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "carrot is located at cellar", "pln": ["(: cnet_atlocation_9095023bc1 (AtLocation carrot cellar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "carrot is located at farmer s market", "pln": ["(: cnet_atlocation_5c9a0687a6 (AtLocation carrot farmer_s_market) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "carrot is located at market", "pln": ["(: cnet_atlocation_029a4abd88 (AtLocation carrot market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "carrot is located at refrigerator", "pln": ["(: cnet_atlocation_e930a984b5 (AtLocation carrot refrigerator) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "carrot is located at salad", "pln": ["(: cnet_atlocation_574dd97cb2 (AtLocation carrot salad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "carrot is located at store", "pln": ["(: cnet_atlocation_6a844c1d49 (AtLocation carrot store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "carrot is located at supermarket", "pln": ["(: cnet_atlocation_ec0d734b9e (AtLocation carrot supermarket) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "carry on bag is located at airport", "pln": ["(: cnet_atlocation_22e5e32c6a (AtLocation carry_on_bag airport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cart is located at supermarket", "pln": ["(: cnet_atlocation_25594302a2 (AtLocation cart supermarket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "carton of milk is located at refrigerator", "pln": ["(: cnet_atlocation_af81dd3810 (AtLocation carton_of_milk refrigerator) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "carton of milk is located at store", "pln": ["(: cnet_atlocation_c0fd100b55 (AtLocation carton_of_milk store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cartoon is located at newspaper", "pln": ["(: cnet_atlocation_478b48a6ef (AtLocation cartoon newspaper) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cartoon is located at television", "pln": ["(: cnet_atlocation_ef696771d4 (AtLocation cartoon television) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "case is located at trunk", "pln": ["(: cnet_atlocation_50c92934a2 (AtLocation case trunk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cash is located at bank", "pln": ["(: cnet_atlocation_62834ca65d (AtLocation cash bank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cash is located at purse", "pln": ["(: cnet_atlocation_0ceb7e3c84 (AtLocation cash purse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cash bill is located at own wallet", "pln": ["(: cnet_atlocation_0e1e105382 (AtLocation cash_bill own_wallet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cash bill is located at store", "pln": ["(: cnet_atlocation_dfc062eb36 (AtLocation cash_bill store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cash bill is located at wallet", "pln": ["(: cnet_atlocation_01b074f67c (AtLocation cash_bill wallet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cash coin is located at pocket", "pln": ["(: cnet_atlocation_ee167f66bf (AtLocation cash_coin pocket) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cash coin is located at purse", "pln": ["(: cnet_atlocation_d9227f888f (AtLocation cash_coin purse) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cash register is located at bookstore", "pln": ["(: cnet_atlocation_56139dedaf (AtLocation cash_register bookstore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cash register is located at shop", "pln": ["(: cnet_atlocation_e6f23285ec (AtLocation cash_register shop) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cash register is located at store", "pln": ["(: cnet_atlocation_3a75542694 (AtLocation cash_register store) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cash register is located at supermarket", "pln": ["(: cnet_atlocation_6c0397e211 (AtLocation cash_register supermarket) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "cashier is located at market", "pln": ["(: cnet_atlocation_df0feed26a (AtLocation cashier market) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "cast members is located at disneyland", "pln": ["(: cnet_atlocation_4fbf324ede (AtLocation cast_members disneyland) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cashier is located at shop", "pln": ["(: cnet_atlocation_6a5d53b86f (AtLocation cashier shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cashier is located at supermarket", "pln": ["(: cnet_atlocation_4b510b5d27 (AtLocation cashier supermarket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "casket is located at funeral", "pln": ["(: cnet_atlocation_07f13bc121 (AtLocation casket funeral) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cast member is located at disneyland", "pln": ["(: cnet_atlocation_d2f582d8fd (AtLocation cast_member disneyland) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "castanet is located at spain", "pln": ["(: cnet_atlocation_c9dcfdcec2 (AtLocation castanet spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "castle is located at edinburgh", "pln": ["(: cnet_atlocation_a6e94616ff (AtLocation castle edinburgh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "castle is located at england", "pln": ["(: cnet_atlocation_fc0cb181f2 (AtLocation castle england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "castle is located at europe", "pln": ["(: cnet_atlocation_a15ae10a80 (AtLocation castle europe) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "castle is located at fairy tale", "pln": ["(: cnet_atlocation_f487e85dc9 (AtLocation castle fairy_tale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "castle is located at germany", "pln": ["(: cnet_atlocation_055f68cba7 (AtLocation castle germany) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cat is located at alley", "pln": ["(: cnet_atlocation_31ce4e1822 (AtLocation cat alley) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cat is located at alleyway", "pln": ["(: cnet_atlocation_f341863d28 (AtLocation cat alleyway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cat is located at apartment", "pln": ["(: cnet_atlocation_7f06b33efa (AtLocation cat apartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cat is located at appartment", "pln": ["(: cnet_atlocation_d94fe8d6e5 (AtLocation cat appartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cat is located at back yard", "pln": ["(: cnet_atlocation_fba7994212 (AtLocation cat back_yard) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cat is located at backyard", "pln": ["(: cnet_atlocation_d9fe3b44b3 (AtLocation cat backyard) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cat is located at bag", "pln": ["(: cnet_atlocation_7fd23d64af (AtLocation cat bag) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cat is located at barn", "pln": ["(: cnet_atlocation_22ef8f12a7 (AtLocation cat barn) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "cat is located at beam of sunlight", "pln": ["(: cnet_atlocation_6c870f867f (AtLocation cat beam_of_sunlight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cat is located at bed", "pln": ["(: cnet_atlocation_7acf71b3be (AtLocation cat bed) (STV 1.0 0.9791))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cat is located at cat box", "pln": ["(: cnet_atlocation_ec2a73b1a5 (AtLocation cat cat_box) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cat is located at cat litter tray", "pln": ["(: cnet_atlocation_61f7069fc3 (AtLocation cat cat_litter_tray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cat is located at chair", "pln": ["(: cnet_atlocation_fc8916e14a (AtLocation cat chair) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cat is located at closet", "pln": ["(: cnet_atlocation_d7381f7034 (AtLocation cat closet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cat is located at floor", "pln": ["(: cnet_atlocation_44003298dc (AtLocation cat floor) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cat is located at heat", "pln": ["(: cnet_atlocation_42df2906da (AtLocation cat heat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cat is located at home", "pln": ["(: cnet_atlocation_dd10ff5a42 (AtLocation cat home) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cat is located at house", "pln": ["(: cnet_atlocation_a5bba6854a (AtLocation cat house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cat is located at it s basket", "pln": ["(: cnet_atlocation_da1b28ce18 (AtLocation cat it_s_basket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cat is located at lap", "pln": ["(: cnet_atlocation_d303eadead (AtLocation cat lap) (STV 1.0 0.9800))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cat is located at nature", "pln": ["(: cnet_atlocation_3ffb857efb (AtLocation cat nature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cat is located at outside", "pln": ["(: cnet_atlocation_21cc41e347 (AtLocation cat outside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cat is located at roof", "pln": ["(: cnet_atlocation_cafd4ecdff (AtLocation cat roof) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cat is located at rug", "pln": ["(: cnet_atlocation_540e0b624b (AtLocation cat rug) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cat is located at sofa", "pln": ["(: cnet_atlocation_cd299c24ce (AtLocation cat sofa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "cat is located at table", "pln": ["(: cnet_atlocation_36cc67c550 (AtLocation cat table) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cat is located at vet", "pln": ["(: cnet_atlocation_f30e6a1eb1 (AtLocation cat vet) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cat is located at warm place", "pln": ["(: cnet_atlocation_d948cc0e87 (AtLocation cat warm_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cat is located at way", "pln": ["(: cnet_atlocation_0a2467863d (AtLocation cat way) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cat is located at windowsill", "pln": ["(: cnet_atlocation_dfcbfcbd7b (AtLocation cat windowsill) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cat is located at zoo", "pln": ["(: cnet_atlocation_88a34a73af (AtLocation cat zoo) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cat fece is located at litter box", "pln": ["(: cnet_atlocation_b80ce6c073 (AtLocation cat_fece litter_box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "cat hair is located at rug", "pln": ["(: cnet_atlocation_040eed9f49 (AtLocation cat_hair rug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cat in is located at barn", "pln": ["(: cnet_atlocation_00803a3908 (AtLocation cat_in barn) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "catwalk is located at fieldhouse", "pln": ["(: cnet_atlocation_25e8309ecb (AtLocation catwalk fieldhouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "catwalk is located at theater", "pln": ["(: cnet_atlocation_d75573b501 (AtLocation catwalk theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cavity is located at dentist", "pln": ["(: cnet_atlocation_10889e4164 (AtLocation cavity dentist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cavity is located at molar", "pln": ["(: cnet_atlocation_6fffa4c626 (AtLocation cavity molar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cavity is located at teeth", "pln": ["(: cnet_atlocation_5a5ae09fbb (AtLocation cavity teeth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cavity is located at tooth", "pln": ["(: cnet_atlocation_c877f4edfb (AtLocation cavity tooth) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cd is located at cd player", "pln": ["(: cnet_atlocation_3e6be10b6b (AtLocation cd cd_player) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cd rom is located at box", "pln": ["(: cnet_atlocation_46b38d66eb (AtLocation cd_rom box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ceiling is located at building", "pln": ["(: cnet_atlocation_ffc8145b2a (AtLocation ceiling building) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ceiling is located at loft", "pln": ["(: cnet_atlocation_a06ad6ac23 (AtLocation ceiling loft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cell is located at jail", "pln": ["(: cnet_atlocation_f06b5dce3f (AtLocation cell jail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cellar is located at winery", "pln": ["(: cnet_atlocation_551a17d01a (AtLocation cellar winery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cemetery is located at city", "pln": ["(: cnet_atlocation_37f254e518 (AtLocation cemetery city) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "centerpiece is located at table", "pln": ["(: cnet_atlocation_5f24f76c07 (AtLocation centerpiece table) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "central passage is located at public building", "pln": ["(: cnet_atlocation_49562baa2b (AtLocation central_passage public_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cereal is located at cupboard", "pln": ["(: cnet_atlocation_819e75d498 (AtLocation cereal cupboard) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cereal bowl is located at cupboard", "pln": ["(: cnet_atlocation_e52a9fdf2c (AtLocation cereal_bowl cupboard) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cereal bowl is located at kitchen", "pln": ["(: cnet_atlocation_44570b57c2 (AtLocation cereal_bowl kitchen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cereal bowl is located at kitchen cabinet", "pln": ["(: cnet_atlocation_8fd90a4c3c (AtLocation cereal_bowl kitchen_cabinet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cereal is located at pantry", "pln": ["(: cnet_atlocation_fab993de5d (AtLocation cereal pantry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chain is located at garage", "pln": ["(: cnet_atlocation_aa88c2da70 (AtLocation chain garage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chain is located at gear shift", "pln": ["(: cnet_atlocation_5ca3971ba8 (AtLocation chain gear_shift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chain is located at hardware store", "pln": ["(: cnet_atlocation_4cdeabe8b9 (AtLocation chain hardware_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chair is located at church", "pln": ["(: cnet_atlocation_ef44b49191 (AtLocation chair church) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chair is located at cubicle", "pln": ["(: cnet_atlocation_b97a3b09fe (AtLocation chair cubicle) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chair is located at desk", "pln": ["(: cnet_atlocation_e9668a96b8 (AtLocation chair desk) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chair is located at floor", "pln": ["(: cnet_atlocation_252bce7d07 (AtLocation chair floor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chair is located at furniture store", "pln": ["(: cnet_atlocation_153c41f6f9 (AtLocation chair furniture_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chair is located at kitchen", "pln": ["(: cnet_atlocation_4201dfe838 (AtLocation chair kitchen) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chair is located at living room", "pln": ["(: cnet_atlocation_bd4f39e426 (AtLocation chair living_room) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "chair is located at office", "pln": ["(: cnet_atlocation_96343507a2 (AtLocation chair office) (STV 1.0 0.9770))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "chair is located at porch", "pln": ["(: cnet_atlocation_21c5a0cfa0 (AtLocation chair porch) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "chairs is located at theatre", "pln": ["(: cnet_atlocation_755ee1517c (AtLocation chairs theatre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "chairs for spectators is located at sporting event", "pln": ["(: cnet_atlocation_d2de7cbb2e (AtLocation chairs_for_spectators sporting_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chair is located at room", "pln": ["(: cnet_atlocation_adac00cada (AtLocation chair room) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chair is located at building", "pln": ["(: cnet_atlocation_932d7c6891 (AtLocation chair building) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chair is located at meeting", "pln": ["(: cnet_atlocation_35ceb00ba8 (AtLocation chair meeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chair is located at theater", "pln": ["(: cnet_atlocation_f03891b588 (AtLocation chair theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chair is located at theatre", "pln": ["(: cnet_atlocation_49337da770 (AtLocation chair theatre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chair for spectator is located at sporting event", "pln": ["(: cnet_atlocation_67adf75a57 (AtLocation chair_for_spectator sporting_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chalk is located at classroom", "pln": ["(: cnet_atlocation_0ad0e76bfc (AtLocation chalk classroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "chalkboard is located at classroom", "pln": ["(: cnet_atlocation_dcefa6736b (AtLocation chalkboard classroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chalkboard is located at school", "pln": ["(: cnet_atlocation_fba10d834f (AtLocation chalkboard school) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "challenge is located at work", "pln": ["(: cnet_atlocation_f97461ff17 (AtLocation challenge work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "change is located at jar", "pln": ["(: cnet_atlocation_3fb7b5aec7 (AtLocation change jar) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "change is located at pocket", "pln": ["(: cnet_atlocation_aa7db53009 (AtLocation change pocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "changing room is located at clothing store", "pln": ["(: cnet_atlocation_f404701b11 (AtLocation changing_room clothing_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "changing room is located at department store", "pln": ["(: cnet_atlocation_324dc5c5d4 (AtLocation changing_room department_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "channel is located at england", "pln": ["(: cnet_atlocation_f5a6a3875f (AtLocation channel england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "channel is located at river", "pln": ["(: cnet_atlocation_fb9bcf038e (AtLocation channel river) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "channel is located at television", "pln": ["(: cnet_atlocation_23740dc0d5 (AtLocation channel television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "character is located at play in play", "pln": ["(: cnet_atlocation_13253104e2 (AtLocation character play_in_play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "character is located at play in theater", "pln": ["(: cnet_atlocation_0f52e87b2f (AtLocation character play_in_theater) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chat room is located at internet cafe", "pln": ["(: cnet_atlocation_86b81880ae (AtLocation chat_room internet_cafe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cheap bed is located at motel", "pln": ["(: cnet_atlocation_0231ddc309 (AtLocation cheap_bed motel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "check is located at bank", "pln": ["(: cnet_atlocation_f80d1d2ab2 (AtLocation check bank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "check is located at checkbook", "pln": ["(: cnet_atlocation_530efffc65 (AtLocation check checkbook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "check is located at counter in airport", "pln": ["(: cnet_atlocation_6f1704cdf9 (AtLocation check counter_in_airport) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "check is located at counter in motel", "pln": ["(: cnet_atlocation_8ba5689392 (AtLocation check counter_in_motel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "check is located at desk in hotel", "pln": ["(: cnet_atlocation_476b343917 (AtLocation check desk_in_hotel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "check in counter is located at airport", "pln": ["(: cnet_atlocation_9c169d1f45 (AtLocation check_in_counter airport) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "check in desk is located at hotel", "pln": ["(: cnet_atlocation_cba779b48d (AtLocation check_in_desk hotel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "checkbook is located at purse", "pln": ["(: cnet_atlocation_84f51380f0 (AtLocation checkbook purse) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "checkbook cover is located at purse", "pln": ["(: cnet_atlocation_d272fb88d8 (AtLocation checkbook_cover purse) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "checkbook holder is located at bank", "pln": ["(: cnet_atlocation_26e3d0de92 (AtLocation checkbook_holder bank) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "checkbook holder is located at desk", "pln": ["(: cnet_atlocation_73ead05e9c (AtLocation checkbook_holder desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "checkbook holder is located at pocket", "pln": ["(: cnet_atlocation_68534721e1 (AtLocation checkbook_holder pocket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "checkbook holder is located at purse", "pln": ["(: cnet_atlocation_f7d3f5b8ab (AtLocation checkbook_holder purse) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "checkout line is located at supermarket", "pln": ["(: cnet_atlocation_70b46c039a (AtLocation checkout_line supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "checkout stand is located at supermarket", "pln": ["(: cnet_atlocation_71746d811e (AtLocation checkout_stand supermarket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cheese is located at fridge", "pln": ["(: cnet_atlocation_eada2f6af7 (AtLocation cheese fridge) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cheese is located at market", "pln": ["(: cnet_atlocation_0fb0b9f171 (AtLocation cheese market) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cheese is located at pizza", "pln": ["(: cnet_atlocation_e4a1d1ce60 (AtLocation cheese pizza) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "cheese is located at plate", "pln": ["(: cnet_atlocation_3ab4c2b706 (AtLocation cheese plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cheese is located at refrigerator", "pln": ["(: cnet_atlocation_ce971f32b1 (AtLocation cheese refrigerator) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cheeseburger is located at fast food restaurant", "pln": ["(: cnet_atlocation_16fbe1d896 (AtLocation cheeseburger fast_food_restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "chef special is located at restaurant", "pln": ["(: cnet_atlocation_6d31258939 (AtLocation chef_special restaurant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chemical is located at chemistry lab", "pln": ["(: cnet_atlocation_c13c0a4de5 (AtLocation chemical chemistry_lab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chemical is located at laboratory", "pln": ["(: cnet_atlocation_7344d254b9 (AtLocation chemical laboratory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chemist is located at chemistry lab", "pln": ["(: cnet_atlocation_d96c005bfa (AtLocation chemist chemistry_lab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cheque is located at bank", "pln": ["(: cnet_atlocation_90a8169c17 (AtLocation cheque bank) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cheque book holder is located at purse", "pln": ["(: cnet_atlocation_c0d89a4f8f (AtLocation cheque_book_holder purse) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cherry is located at cherry pie", "pln": ["(: cnet_atlocation_2f41168757 (AtLocation cherry cherry_pie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cherry is located at jar", "pln": ["(: cnet_atlocation_b65b573696 (AtLocation cherry jar) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cherub is located at heaven", "pln": ["(: cnet_atlocation_0e3b5e2a2d (AtLocation cherub heaven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chess bishop is located at chess", "pln": ["(: cnet_atlocation_a7311fb2e2 (AtLocation chess_bishop chess) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chess bishop is located at chess game", "pln": ["(: cnet_atlocation_0b55741ea3 (AtLocation chess_bishop chess_game) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chess bishop is located at game room", "pln": ["(: cnet_atlocation_d10da11e92 (AtLocation chess_bishop game_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chess board is located at germany", "pln": ["(: cnet_atlocation_1285105b87 (AtLocation chess_board germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chess king is located at chess set", "pln": ["(: cnet_atlocation_65c6bfd75c (AtLocation chess_king chess_set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chess pawn is located at chess game", "pln": ["(: cnet_atlocation_819f766958 (AtLocation chess_pawn chess_game) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "chess pawn is located at chess set", "pln": ["(: cnet_atlocation_47d3af5d8c (AtLocation chess_pawn chess_set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chess piece is located at chess set", "pln": ["(: cnet_atlocation_01ab3ff699 (AtLocation chess_piece chess_set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chess queen is located at chess game", "pln": ["(: cnet_atlocation_5130d19696 (AtLocation chess_queen chess_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chess queen is located at chess set", "pln": ["(: cnet_atlocation_7eecf30038 (AtLocation chess_queen chess_set) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chess rook is located at corner", "pln": ["(: cnet_atlocation_159174cc8c (AtLocation chess_rook corner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chess set is located at cupboard", "pln": ["(: cnet_atlocation_bbe732fdc6 (AtLocation chess_set cupboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chess set is located at toy store", "pln": ["(: cnet_atlocation_eb5c2c5edd (AtLocation chess_set toy_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chesspiece is located at chess game", "pln": ["(: cnet_atlocation_fc068346ef (AtLocation chesspiece chess_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chesspiece is located at chess set", "pln": ["(: cnet_atlocation_921b74ab17 (AtLocation chesspiece chess_set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chest is located at bedroom", "pln": ["(: cnet_atlocation_a9e4c4095c (AtLocation chest bedroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "chesterfield is located at living room", "pln": ["(: cnet_atlocation_ccbf24c4f6 (AtLocation chesterfield living_room) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chicken is located at pizza", "pln": ["(: cnet_atlocation_df03e135a5 (AtLocation chicken pizza) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "chicken is located at plate", "pln": ["(: cnet_atlocation_413351ad9d (AtLocation chicken plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "chickens is located at farm", "pln": ["(: cnet_atlocation_03dd6dc87b (AtLocation chickens farm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chicken is located at farm", "pln": ["(: cnet_atlocation_ff90bd8212 (AtLocation chicken farm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "child s car seat is located at backseat of car", "pln": ["(: cnet_atlocation_5055d83b73 (AtLocation child_s_car_seat backseat_of_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "child s drawing is located at fridge", "pln": ["(: cnet_atlocation_111addd23f (AtLocation child_s_drawing fridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "child is located at most home", "pln": ["(: cnet_atlocation_83ab401141 (AtLocation child most_home) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "child is located at school", "pln": ["(: cnet_atlocation_c24857bf51 (AtLocation child school) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "children s art is located at fridge", "pln": ["(: cnet_atlocation_504cebaa02 (AtLocation children_s_art fridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "children s artwork is located at fridge", "pln": ["(: cnet_atlocation_a24aa76671 (AtLocation children_s_artwork fridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "children s playhous is located at lawn", "pln": ["(: cnet_atlocation_a8a3018b9e (AtLocation children_s_playhous lawn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "children is located at backseat of car", "pln": ["(: cnet_atlocation_d81f007ce6 (AtLocation children backseat_of_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "children is located at school", "pln": ["(: cnet_atlocation_0d272d933e (AtLocation children school) (STV 1.0 0.9786))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "children is located at zoo", "pln": ["(: cnet_atlocation_0d7913cf93 (AtLocation children zoo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "children playing is located at park", "pln": ["(: cnet_atlocation_3c2d99f0ac (AtLocation children_playing park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "childseat is located at backseat of car", "pln": ["(: cnet_atlocation_9604f9d54b (AtLocation childseat backseat_of_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chimeny is located at roof", "pln": ["(: cnet_atlocation_be7def825f (AtLocation chimeny roof) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chimney is located at roof", "pln": ["(: cnet_atlocation_e122c5d706 (AtLocation chimney roof) (STV 1.0 0.9756))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chimpanzee is located at zoo", "pln": ["(: cnet_atlocation_6edd1da052 (AtLocation chimpanzee zoo) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chinese people is located at china", "pln": ["(: cnet_atlocation_3e7842d283 (AtLocation chinese_people china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chinese restaurant is located at china", "pln": ["(: cnet_atlocation_14ee67ed53 (AtLocation chinese_restaurant china) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chinese restaurant is located at city", "pln": ["(: cnet_atlocation_a2703a037b (AtLocation chinese_restaurant city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chinese restaurant is located at new york", "pln": ["(: cnet_atlocation_d873a296e1 (AtLocation chinese_restaurant new_york) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chipmunk is located at park", "pln": ["(: cnet_atlocation_dca3f69e4c (AtLocation chipmunk park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chip is located at supermarket", "pln": ["(: cnet_atlocation_373ddec099 (AtLocation chip supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chlorinated water is located at swimming pool", "pln": ["(: cnet_atlocation_3e6c03f428 (AtLocation chlorinated_water swimming_pool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chocolate is located at box", "pln": ["(: cnet_atlocation_14c5808d4e (AtLocation chocolate box) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "chocolate is located at candy store", "pln": ["(: cnet_atlocation_1e69f0255e (AtLocation chocolate candy_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "chocolate is located at christmas stocking", "pln": ["(: cnet_atlocation_ab6544907e (AtLocation chocolate christmas_stocking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "chocolate is located at christma stocking", "pln": ["(: cnet_atlocation_2a77c810a5 (AtLocation chocolate christma_stocking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "choice is located at fork in road", "pln": ["(: cnet_atlocation_2b27925be1 (AtLocation choice fork_in_road) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "choker is located at jewelry store", "pln": ["(: cnet_atlocation_c747512b62 (AtLocation choker jewelry_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "christian is located at church", "pln": ["(: cnet_atlocation_886bc105ca (AtLocation christian church) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "church is located at city", "pln": ["(: cnet_atlocation_20bea9d621 (AtLocation church city) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "church is located at community", "pln": ["(: cnet_atlocation_35bae0bc62 (AtLocation church community) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "church is located at town", "pln": ["(: cnet_atlocation_fea2481cc7 (AtLocation church town) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "church central passage is located at church", "pln": ["(: cnet_atlocation_16a7223b90 (AtLocation church_central_passage church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "church side passage is located at church", "pln": ["(: cnet_atlocation_dea846c670 (AtLocation church_side_passage church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cigarette is located at ashtray", "pln": ["(: cnet_atlocation_e00c95bfb6 (AtLocation cigarette ashtray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cigarette is located at hand", "pln": ["(: cnet_atlocation_bb7637fc9a (AtLocation cigarette hand) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cigarette smoke is located at bar", "pln": ["(: cnet_atlocation_aa81a158f3 (AtLocation cigarette_smoke bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cigarette is located at gas station", "pln": ["(: cnet_atlocation_fbde377d5b (AtLocation cigarette gas_station) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "cinema is located at city", "pln": ["(: cnet_atlocation_b3433da6d9 (AtLocation cinema city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "citizens is located at country", "pln": ["(: cnet_atlocation_e88d0acc4c (AtLocation citizens country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cinema is located at town", "pln": ["(: cnet_atlocation_e1db0dcd69 (AtLocation cinema town) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "circular is located at mail box", "pln": ["(: cnet_atlocation_3d09eef1d7 (AtLocation circular mail_box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "city is located at country", "pln": ["(: cnet_atlocation_2722fe72e0 (AtLocation city country) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "city is located at surface of earth", "pln": ["(: cnet_atlocation_701650184b (AtLocation city surface_of_earth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "citizen is located at country", "pln": ["(: cnet_atlocation_03ff9aece3 (AtLocation citizen country) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "city is located at county", "pln": ["(: cnet_atlocation_aba788f793 (AtLocation city county) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "city is located at germany", "pln": ["(: cnet_atlocation_37da09cc14 (AtLocation city germany) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "city is located at state", "pln": ["(: cnet_atlocation_9658709c1d (AtLocation city state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "city hall is located at town", "pln": ["(: cnet_atlocation_e3ec035537 (AtLocation city_hall town) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "city park is located at city", "pln": ["(: cnet_atlocation_3dfbc66407 (AtLocation city_park city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "clam is located at bottom of sea", "pln": ["(: cnet_atlocation_6d9395bcff (AtLocation clam bottom_of_sea) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clarinet is located at band", "pln": ["(: cnet_atlocation_0018f6ebfd (AtLocation clarinet band) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clarinet is located at orchestra", "pln": ["(: cnet_atlocation_4628d52710 (AtLocation clarinet orchestra) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "class is located at school", "pln": ["(: cnet_atlocation_4b42cb7dd4 (AtLocation class school) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "classified ad is located at newspaper", "pln": ["(: cnet_atlocation_3965eeb533 (AtLocation classified_ad newspaper) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "classified ads is located at newspaper", "pln": ["(: cnet_atlocation_6f59002a9d (AtLocation classified_ads newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "classified advertisement is located at newspaper", "pln": ["(: cnet_atlocation_97ace9f8db (AtLocation classified_advertisement newspaper) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "classmate is located at class", "pln": ["(: cnet_atlocation_253cd063ae (AtLocation classmate class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "classroom is located at university", "pln": ["(: cnet_atlocation_330496bd3a (AtLocation classroom university) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "classroom chair is located at school", "pln": ["(: cnet_atlocation_3a917d5c48 (AtLocation classroom_chair school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cleaning chemical is located at supermarket", "pln": ["(: cnet_atlocation_11b6b3a4f5 (AtLocation cleaning_chemical supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cleaning supply is located at cabinet", "pln": ["(: cnet_atlocation_b4d6b95928 (AtLocation cleaning_supply cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cleric is located at church", "pln": ["(: cnet_atlocation_fa4db705be (AtLocation cleric church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clerk is located at at hotel", "pln": ["(: cnet_atlocation_7897f65922 (AtLocation clerk at_hotel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "clerk is located at store", "pln": ["(: cnet_atlocation_4e62957cbe (AtLocation clerk store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clerk is located at post office", "pln": ["(: cnet_atlocation_df3a6aa5fc (AtLocation clerk post_office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clerk is located at shop", "pln": ["(: cnet_atlocation_dcc85b7a6e (AtLocation clerk shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "client is located at office", "pln": ["(: cnet_atlocation_c8abadd146 (AtLocation client office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "climber is located at mountain", "pln": ["(: cnet_atlocation_dd0ab3b22f (AtLocation climber mountain) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clip is located at accessory store", "pln": ["(: cnet_atlocation_3121175568 (AtLocation clip accessory_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clip is located at office", "pln": ["(: cnet_atlocation_bc66c5fb5b (AtLocation clip office) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clipboard is located at office supply store", "pln": ["(: cnet_atlocation_14939bd9e4 (AtLocation clipboard office_supply_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clipboard is located at work", "pln": ["(: cnet_atlocation_8c9efc92c4 (AtLocation clipboard work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clipper is located at barber s shop", "pln": ["(: cnet_atlocation_c5553f5617 (AtLocation clipper barber_s_shop) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clipper is located at bathroom", "pln": ["(: cnet_atlocation_0b8e4a4fe4 (AtLocation clipper bathroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clipper is located at drawer", "pln": ["(: cnet_atlocation_be1df25d35 (AtLocation clipper drawer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clock is located at desk", "pln": ["(: cnet_atlocation_54476446a4 (AtLocation clock desk) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clock is located at house", "pln": ["(: cnet_atlocation_0fa39e9376 (AtLocation clock house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "clock is located at office", "pln": ["(: cnet_atlocation_727bf4197e (AtLocation clock office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "clowns is located at carnival", "pln": ["(: cnet_atlocation_7999c76b80 (AtLocation clowns carnival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clock is located at office building", "pln": ["(: cnet_atlocation_538ede9956 (AtLocation clock office_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clock is located at own bedroom", "pln": ["(: cnet_atlocation_8e70beb08c (AtLocation clock own_bedroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clock is located at shelf", "pln": ["(: cnet_atlocation_ee2fc328f5 (AtLocation clock shelf) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clock is located at wall", "pln": ["(: cnet_atlocation_66bca54ae0 (AtLocation clock wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "closet is located at bedroom", "pln": ["(: cnet_atlocation_0b65571497 (AtLocation closet bedroom) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "closet is located at house", "pln": ["(: cnet_atlocation_3b9a850e20 (AtLocation closet house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "closet is located at room", "pln": ["(: cnet_atlocation_e7a32a354a (AtLocation closet room) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "closet is located at school", "pln": ["(: cnet_atlocation_6275dc4da3 (AtLocation closet school) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cloth is located at bedroom", "pln": ["(: cnet_atlocation_2e740bf658 (AtLocation cloth bedroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cloth is located at fabric store", "pln": ["(: cnet_atlocation_92bceec8f0 (AtLocation cloth fabric_store) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cloth is located at kitchen", "pln": ["(: cnet_atlocation_763d52e21c (AtLocation cloth kitchen) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cloth linen is located at linen closet", "pln": ["(: cnet_atlocation_1413ac3cc8 (AtLocation cloth_linen linen_closet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clothe is located at closet", "pln": ["(: cnet_atlocation_8e63a20322 (AtLocation clothe closet) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clothe is located at clothing store", "pln": ["(: cnet_atlocation_5cf613ad79 (AtLocation clothe clothing_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clothe is located at dresser", "pln": ["(: cnet_atlocation_0ada174f03 (AtLocation clothe dresser) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clothe is located at house", "pln": ["(: cnet_atlocation_7510f7209d (AtLocation clothe house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clothe is located at mall", "pln": ["(: cnet_atlocation_c73d0fe98f (AtLocation clothe mall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clothe is located at store", "pln": ["(: cnet_atlocation_b75b8f2421 (AtLocation clothe store) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clothe is located at suitcase", "pln": ["(: cnet_atlocation_d1701ac46a (AtLocation clothe suitcase) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clothe hanger is located at closet", "pln": ["(: cnet_atlocation_ec1ed2aba2 (AtLocation clothe_hanger closet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clothing is located at closet", "pln": ["(: cnet_atlocation_f2c3457246 (AtLocation clothing closet) (STV 1.0 0.9804))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clothing is located at drawer", "pln": ["(: cnet_atlocation_e333d85296 (AtLocation clothing drawer) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clothing is located at house", "pln": ["(: cnet_atlocation_3d9f2bc4fc (AtLocation clothing house) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clothing is located at shop", "pln": ["(: cnet_atlocation_4b79d75dfd (AtLocation clothing shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clothing is located at store", "pln": ["(: cnet_atlocation_41dccd45a4 (AtLocation clothing store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clothing is located at suitcase", "pln": ["(: cnet_atlocation_ec21e19c11 (AtLocation clothing suitcase) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clothing is located at trunk", "pln": ["(: cnet_atlocation_b76b960c37 (AtLocation clothing trunk) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clothing is located at washing machine", "pln": ["(: cnet_atlocation_d8ca6549a2 (AtLocation clothing washing_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clothing closet is located at apartment", "pln": ["(: cnet_atlocation_a67db3682a (AtLocation clothing_closet apartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clothing shelf is located at closet", "pln": ["(: cnet_atlocation_a318845cf3 (AtLocation clothing_shelf closet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clothing store is located at strip mall", "pln": ["(: cnet_atlocation_24e7831afe (AtLocation clothing_store strip_mall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clothing store changing room is located at mall", "pln": ["(: cnet_atlocation_d828a1db46 (AtLocation clothing_store_changing_room mall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cloud is located at sky", "pln": ["(: cnet_atlocation_ca7ed80501 (AtLocation cloud sky) (STV 1.0 0.9770))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cloud is located at air", "pln": ["(: cnet_atlocation_e2d964f0ef (AtLocation cloud air) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clown is located at carnival", "pln": ["(: cnet_atlocation_dd98095050 (AtLocation clown carnival) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clown shoe is located at bowling alley", "pln": ["(: cnet_atlocation_3ea6213cc5 (AtLocation clown_shoe bowling_alley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "club is located at golf bag", "pln": ["(: cnet_atlocation_b065ab02d9 (AtLocation club golf_bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clutter is located at desk", "pln": ["(: cnet_atlocation_585521dfc0 (AtLocation clutter desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "clutter is located at office", "pln": ["(: cnet_atlocation_e99c9081f5 (AtLocation clutter office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "co worker is located at work", "pln": ["(: cnet_atlocation_3a7a7861ea (AtLocation co_worker work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "co worker is located at office", "pln": ["(: cnet_atlocation_1cac483d51 (AtLocation co_worker office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coach airline seat is located at large airplane", "pln": ["(: cnet_atlocation_3d932d10b8 (AtLocation coach_airline_seat large_airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coach airplane seat is located at most airplane", "pln": ["(: cnet_atlocation_7a7799c2d0 (AtLocation coach_airplane_seat most_airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coach seat is located at back of airplane", "pln": ["(: cnet_atlocation_213d52b278 (AtLocation coach_seat back_of_airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coal is located at underground", "pln": ["(: cnet_atlocation_becc390522 (AtLocation coal underground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coaster is located at desk", "pln": ["(: cnet_atlocation_5d9f369202 (AtLocation coaster desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coat is located at closet", "pln": ["(: cnet_atlocation_08948fdb36 (AtLocation coat closet) (STV 1.0 0.9811))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "coat is located at wardrobe", "pln": ["(: cnet_atlocation_2dc793f7e2 (AtLocation coat wardrobe) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coat hanger is located at closet", "pln": ["(: cnet_atlocation_aab3494959 (AtLocation coat_hanger closet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cobblestone is located at field", "pln": ["(: cnet_atlocation_7a7cb23f78 (AtLocation cobblestone field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cobweb is located at attic", "pln": ["(: cnet_atlocation_4be18d2f60 (AtLocation cobweb attic) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cobweb is located at garage", "pln": ["(: cnet_atlocation_c076ab6e7b (AtLocation cobweb garage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cockpit is located at space shuttle", "pln": ["(: cnet_atlocation_2a97c418fb (AtLocation cockpit space_shuttle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cocktail cabinet is located at bar", "pln": ["(: cnet_atlocation_a0b4561ce7 (AtLocation cocktail_cabinet bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "cocktail cabinet is located at dining room", "pln": ["(: cnet_atlocation_62582f7ec1 (AtLocation cocktail_cabinet dining_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cocktail waitress is located at bar", "pln": ["(: cnet_atlocation_ba982fce5f (AtLocation cocktail_waitress bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "coffee is located at can", "pln": ["(: cnet_atlocation_c29a0b8d9e (AtLocation coffee can) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coffee is located at coffee shop", "pln": ["(: cnet_atlocation_abf122320e (AtLocation coffee coffee_shop) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "coffee is located at container", "pln": ["(: cnet_atlocation_17357be9e5 (AtLocation coffee container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "coffee is located at cup", "pln": ["(: cnet_atlocation_38b3ca5980 (AtLocation coffee cup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coffee is located at internet cafe", "pln": ["(: cnet_atlocation_a1e58b6ac1 (AtLocation coffee internet_cafe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coffee is located at office", "pln": ["(: cnet_atlocation_f4cb4b3158 (AtLocation coffee office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coffee cup is located at desk", "pln": ["(: cnet_atlocation_1767bf2239 (AtLocation coffee_cup desk) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coffee cup is located at cupboard", "pln": ["(: cnet_atlocation_4fb7777eb5 (AtLocation coffee_cup cupboard) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coffee cup is located at office", "pln": ["(: cnet_atlocation_d6dabff5e9 (AtLocation coffee_cup office) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coffee mug is located at cupboard", "pln": ["(: cnet_atlocation_c2a2c897cf (AtLocation coffee_mug cupboard) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coffee mug is located at desktop", "pln": ["(: cnet_atlocation_c8a67aaba8 (AtLocation coffee_mug desktop) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coffee mug is located at shelf", "pln": ["(: cnet_atlocation_9cf3001392 (AtLocation coffee_mug shelf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coffee table is located at front of couch", "pln": ["(: cnet_atlocation_31334a4930 (AtLocation coffee_table front_of_couch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coffeemaker is located at motel", "pln": ["(: cnet_atlocation_77cd5bc1b3 (AtLocation coffeemaker motel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "coffin is located at funeral", "pln": ["(: cnet_atlocation_ad11e4aabb (AtLocation coffin funeral) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coil is located at circuit", "pln": ["(: cnet_atlocation_95be50fafa (AtLocation coil circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coil is located at refridgerator", "pln": ["(: cnet_atlocation_eb48029981 (AtLocation coil refridgerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coin is located at bank", "pln": ["(: cnet_atlocation_d7dfe1039f (AtLocation coin bank) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coin is located at ground", "pln": ["(: cnet_atlocation_6076d552ac (AtLocation coin ground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coin is located at purse", "pln": ["(: cnet_atlocation_56518e6792 (AtLocation coin purse) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "coin purse is located at purse", "pln": ["(: cnet_atlocation_d122f78f7a (AtLocation coin_purse purse) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coin is located at desk", "pln": ["(: cnet_atlocation_f94790fdda (AtLocation coin desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coin is located at jar", "pln": ["(: cnet_atlocation_1799e62ada (AtLocation coin jar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coin is located at water fountain", "pln": ["(: cnet_atlocation_3f7474cfb0 (AtLocation coin water_fountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coke is located at movie", "pln": ["(: cnet_atlocation_b1bf647b59 (AtLocation coke movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cola is located at fridge", "pln": ["(: cnet_atlocation_357ded3322 (AtLocation cola fridge) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cold is located at freezer", "pln": ["(: cnet_atlocation_444dee29cd (AtLocation cold freezer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cold drink is located at beach", "pln": ["(: cnet_atlocation_91d5a6ef6d (AtLocation cold_drink beach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cold faucet is located at bathroom", "pln": ["(: cnet_atlocation_f2538c025f (AtLocation cold_faucet bathroom) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cold tap is located at kitchen", "pln": ["(: cnet_atlocation_a5ba24a2aa (AtLocation cold_tap kitchen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "collard green is located at farmer s market", "pln": ["(: cnet_atlocation_e18d3790d9 (AtLocation collard_green farmer_s_market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "college is located at big city", "pln": ["(: cnet_atlocation_78179fd17d (AtLocation college big_city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "college is located at city", "pln": ["(: cnet_atlocation_b22570831d (AtLocation college city) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "college is located at large city", "pln": ["(: cnet_atlocation_d81f114c06 (AtLocation college large_city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "college student is located at fraternity house", "pln": ["(: cnet_atlocation_206635d51c (AtLocation college_student fraternity_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coloring book is located at toy store", "pln": ["(: cnet_atlocation_43383b3f86 (AtLocation coloring_book toy_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "column is located at memorial", "pln": ["(: cnet_atlocation_1524e7aa0f (AtLocation column memorial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "comb is located at pocket", "pln": ["(: cnet_atlocation_d3c478a507 (AtLocation comb pocket) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "comb is located at purse", "pln": ["(: cnet_atlocation_1be327ab9f (AtLocation comb purse) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "comet is located at outerspace", "pln": ["(: cnet_atlocation_567e68e880 (AtLocation comet outerspace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "comet is located at space", "pln": ["(: cnet_atlocation_b64f7ee4a7 (AtLocation comet space) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "comet is located at universe", "pln": ["(: cnet_atlocation_f4f23e8507 (AtLocation comet universe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "comfort is located at friend s house", "pln": ["(: cnet_atlocation_c2ef4705c7 (AtLocation comfort friend_s_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "comfort is located at home", "pln": ["(: cnet_atlocation_eaaf5b6100 (AtLocation comfort home) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "comfortable couch is located at loft", "pln": ["(: cnet_atlocation_86c1bfcff8 (AtLocation comfortable_couch loft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "comfortable pillow is located at bedroom", "pln": ["(: cnet_atlocation_0e10d7fe18 (AtLocation comfortable_pillow bedroom) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "comforter is located at bedroom", "pln": ["(: cnet_atlocation_f46f6fc295 (AtLocation comforter bedroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "comic strip is located at newspaper", "pln": ["(: cnet_atlocation_88f63d0dfb (AtLocation comic_strip newspaper) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "comic is located at newspaper", "pln": ["(: cnet_atlocation_392a6b3971 (AtLocation comic newspaper) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "commercial is located at television", "pln": ["(: cnet_atlocation_3a6036c108 (AtLocation commercial television) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "company is located at yellow pages", "pln": ["(: cnet_atlocation_9d56efdb92 (AtLocation company yellow_pages) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "committee is located at government", "pln": ["(: cnet_atlocation_1934f375ae (AtLocation committee government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "communism is located at china", "pln": ["(: cnet_atlocation_ade24787fd (AtLocation communism china) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "community is located at church", "pln": ["(: cnet_atlocation_f46b32a5a6 (AtLocation community church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "company is located at yellow page", "pln": ["(: cnet_atlocation_60d48ca198 (AtLocation company yellow_page) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "compass is located at backpack", "pln": ["(: cnet_atlocation_bc2ae12585 (AtLocation compass backpack) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "competitor is located at sporting event", "pln": ["(: cnet_atlocation_38426ed194 (AtLocation competitor sporting_event) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "compost is located at forest", "pln": ["(: cnet_atlocation_994848cd8f (AtLocation compost forest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "compost is located at garden", "pln": ["(: cnet_atlocation_5147b8ec14 (AtLocation compost garden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "computer is located at building", "pln": ["(: cnet_atlocation_3e4d8bcd0d (AtLocation computer building) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "computer is located at desktop", "pln": ["(: cnet_atlocation_9247b7cbb6 (AtLocation computer desktop) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "computer is located at house", "pln": ["(: cnet_atlocation_06b1339060 (AtLocation computer house) (STV 1.0 0.9756))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "computer is located at jet airliner", "pln": ["(: cnet_atlocation_a36fe83db4 (AtLocation computer jet_airliner) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "computer is located at library", "pln": ["(: cnet_atlocation_5a70329150 (AtLocation computer library) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "computer is located at office", "pln": ["(: cnet_atlocation_6d86f96998 (AtLocation computer office) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "computer is located at school", "pln": ["(: cnet_atlocation_c3ecd53c7e (AtLocation computer school) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "computer is located at space shuttle", "pln": ["(: cnet_atlocation_0907671d2d (AtLocation computer space_shuttle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "computer is located at table", "pln": ["(: cnet_atlocation_0fdac01328 (AtLocation computer table) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "computer monitor is located at table", "pln": ["(: cnet_atlocation_c01718c9cc (AtLocation computer_monitor table) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "computers is located at office", "pln": ["(: cnet_atlocation_566ab97c3d (AtLocation computers office) (STV 1.0 0.9811))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "computer user is located at home", "pln": ["(: cnet_atlocation_1a61d21f06 (AtLocation computer_user home) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "computer user is located at office", "pln": ["(: cnet_atlocation_abc6a017a8 (AtLocation computer_user office) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "computer is located at mit", "pln": ["(: cnet_atlocation_8d33d3a5c1 (AtLocation computer mit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "concert hall is located at city", "pln": ["(: cnet_atlocation_f13ae690a3 (AtLocation concert_hall city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "concession stand is located at movy", "pln": ["(: cnet_atlocation_598a850076 (AtLocation concession_stand movy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "concession stand is located at state park", "pln": ["(: cnet_atlocation_d68b439fab (AtLocation concession_stand state_park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "conche is located at ocean", "pln": ["(: cnet_atlocation_6666ab5814 (AtLocation conche ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "concierge is located at at hotel", "pln": ["(: cnet_atlocation_48599947ad (AtLocation concierge at_hotel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "concierge is located at hotel", "pln": ["(: cnet_atlocation_9d1cf55ebe (AtLocation concierge hotel) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "condiment is located at container", "pln": ["(: cnet_atlocation_29cdde53c9 (AtLocation condiment container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "condiment is located at pantry", "pln": ["(: cnet_atlocation_0636172e3f (AtLocation condiment pantry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "condo is located at city", "pln": ["(: cnet_atlocation_4dda546ba9 (AtLocation condo city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "condom is located at bedroom", "pln": ["(: cnet_atlocation_2bc16bbaad (AtLocation condom bedroom) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "condom is located at pharmacy", "pln": ["(: cnet_atlocation_36da8ede19 (AtLocation condom pharmacy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "condom is located at sock drawer", "pln": ["(: cnet_atlocation_5e731ddb0e (AtLocation condom sock_drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "condominium is located at city", "pln": ["(: cnet_atlocation_9c5c57e598 (AtLocation condominium city) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "condominium is located at community", "pln": ["(: cnet_atlocation_c699d02da9 (AtLocation condominium community) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "condominium is located at florida", "pln": ["(: cnet_atlocation_fef291877b (AtLocation condominium florida) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "condominium is located at town", "pln": ["(: cnet_atlocation_c785be741f (AtLocation condominium town) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "condom is located at supermarket", "pln": ["(: cnet_atlocation_9c04197216 (AtLocation condom supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "conductor is located at opera", "pln": ["(: cnet_atlocation_ea498743ca (AtLocation conductor opera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "conference auditorium is located at office building", "pln": ["(: cnet_atlocation_0db2b7b425 (AtLocation conference_auditorium office_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "confessional is located at confession", "pln": ["(: cnet_atlocation_f2c47ffebe (AtLocation confessional confession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "confusion is located at quandry", "pln": ["(: cnet_atlocation_ca5710a325 (AtLocation confusion quandry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "congregation is located at synagogue", "pln": ["(: cnet_atlocation_47615bfae5 (AtLocation congregation synagogue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "contestants is located at sporting event", "pln": ["(: cnet_atlocation_166e514361 (AtLocation contestants sporting_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "connection is located at circuit", "pln": ["(: cnet_atlocation_2a1d19cc56 (AtLocation connection circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "container is located at cupboard", "pln": ["(: cnet_atlocation_c43aaa549b (AtLocation container cupboard) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "container is located at kitchen", "pln": ["(: cnet_atlocation_db6ee923d8 (AtLocation container kitchen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "container is located at pantry", "pln": ["(: cnet_atlocation_bb2661240a (AtLocation container pantry) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "container is located at refrigerator", "pln": ["(: cnet_atlocation_851bf32179 (AtLocation container refrigerator) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "container cup is located at kitchen", "pln": ["(: cnet_atlocation_c8b250f1d0 (AtLocation container_cup kitchen) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "contestant is located at sporting event", "pln": ["(: cnet_atlocation_b5c49bf95e (AtLocation contestant sporting_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "contraceptive is located at drug store", "pln": ["(: cnet_atlocation_d3c6393c66 (AtLocation contraceptive drug_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "contraceptive is located at medicine cabinet", "pln": ["(: cnet_atlocation_7a474c81e6 (AtLocation contraceptive medicine_cabinet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "contraceptive is located at pharmacy", "pln": ["(: cnet_atlocation_db6098f505 (AtLocation contraceptive pharmacy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "contraceptive device is located at bedroom", "pln": ["(: cnet_atlocation_2426f8f283 (AtLocation contraceptive_device bedroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "contraceptive device is located at drug store", "pln": ["(: cnet_atlocation_a444dde189 (AtLocation contraceptive_device drug_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "contralto is located at concert", "pln": ["(: cnet_atlocation_84aada151c (AtLocation contralto concert) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "control room is located at nuclear power plant", "pln": ["(: cnet_atlocation_bc0720f186 (AtLocation control_room nuclear_power_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "convenience food store is located at city", "pln": ["(: cnet_atlocation_67322ff9cd (AtLocation convenience_food_store city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "convenience store is located at street corner", "pln": ["(: cnet_atlocation_3874fed185 (AtLocation convenience_store street_corner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "conversation is located at dinner", "pln": ["(: cnet_atlocation_2728841f7e (AtLocation conversation dinner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "convict is located at jail", "pln": ["(: cnet_atlocation_5eb29aafa8 (AtLocation convict jail) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "convict is located at prison", "pln": ["(: cnet_atlocation_bd1051412c (AtLocation convict prison) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cook is located at kitchen", "pln": ["(: cnet_atlocation_67b3688990 (AtLocation cook kitchen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cook is located at restaurant", "pln": ["(: cnet_atlocation_ac1fae11d4 (AtLocation cook restaurant) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cooked food is located at oven", "pln": ["(: cnet_atlocation_8e6c3c159f (AtLocation cooked_food oven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cookie is located at dessert", "pln": ["(: cnet_atlocation_6022cdb526 (AtLocation cookie dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cookie is located at jar", "pln": ["(: cnet_atlocation_3b715f2dd3 (AtLocation cookie jar) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cookie sheet is located at oven", "pln": ["(: cnet_atlocation_945b2bf59f (AtLocation cookie_sheet oven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cooky is located at house", "pln": ["(: cnet_atlocation_2b5b03eac7 (AtLocation cooky house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cooky is located at jar", "pln": ["(: cnet_atlocation_6d4f7a4b68 (AtLocation cooky jar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cooky is located at plate", "pln": ["(: cnet_atlocation_a14ece20dc (AtLocation cooky plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cooling device is located at computer", "pln": ["(: cnet_atlocation_fec62be916 (AtLocation cooling_device computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "copier is located at office", "pln": ["(: cnet_atlocation_226ba579ce (AtLocation copier office) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "copy machine is located at office", "pln": ["(: cnet_atlocation_2cdc052f70 (AtLocation copy_machine office) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "copyholder is located at desk", "pln": ["(: cnet_atlocation_b476a8882e (AtLocation copyholder desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coral is located at ocean", "pln": ["(: cnet_atlocation_760e79803d (AtLocation coral ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "coral is located at sea", "pln": ["(: cnet_atlocation_74dd1d5789 (AtLocation coral sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coral reef is located at water", "pln": ["(: cnet_atlocation_bf2d7109c2 (AtLocation coral_reef water) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "cord is located at hardware store", "pln": ["(: cnet_atlocation_402a32acfe (AtLocation cord hardware_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "corn is located at can", "pln": ["(: cnet_atlocation_73c965c9fc (AtLocation corn can) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "corn is located at corn field", "pln": ["(: cnet_atlocation_e7fdb8bb96 (AtLocation corn corn_field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "corn is located at field", "pln": ["(: cnet_atlocation_e03f7ab6ae (AtLocation corn field) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "corn is located at polenta", "pln": ["(: cnet_atlocation_b2348a99dd (AtLocation corn polenta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "corn is located at silo", "pln": ["(: cnet_atlocation_64575e3ab9 (AtLocation corn silo) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "corn is located at supermarket", "pln": ["(: cnet_atlocation_2ff816901c (AtLocation corn supermarket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "corn on cob is located at farmer s market", "pln": ["(: cnet_atlocation_2f07ceddba (AtLocation corn_on_cob farmer_s_market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "corner cabinet is located at corner", "pln": ["(: cnet_atlocation_5df5297572 (AtLocation corner_cabinet corner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "corner cupboard is located at kitchen", "pln": ["(: cnet_atlocation_6828ef9a6e (AtLocation corner_cupboard kitchen) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "corner grocery is located at town", "pln": ["(: cnet_atlocation_728626b273 (AtLocation corner_grocery town) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "corner shop is located at corner", "pln": ["(: cnet_atlocation_d3048c21b3 (AtLocation corner_shop corner) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cornet is located at band", "pln": ["(: cnet_atlocation_9a8d5e2e0c (AtLocation cornet band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cornet is located at high school band", "pln": ["(: cnet_atlocation_a5de36b37d (AtLocation cornet high_school_band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "corpse is located at morgue", "pln": ["(: cnet_atlocation_c60c4a6443 (AtLocation corpse morgue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "correction fluid is located at desk", "pln": ["(: cnet_atlocation_ad0da3b718 (AtLocation correction_fluid desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "correction fluid is located at desk drawer", "pln": ["(: cnet_atlocation_7b72085ddc (AtLocation correction_fluid desk_drawer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "costume is located at opera", "pln": ["(: cnet_atlocation_e60b3e1d5f (AtLocation costume opera) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cot is located at jail", "pln": ["(: cnet_atlocation_6493b5ffb1 (AtLocation cot jail) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cottage is located at mountain", "pln": ["(: cnet_atlocation_5f7e58078f (AtLocation cottage mountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cottage is located at village", "pln": ["(: cnet_atlocation_3aa9c8a3e8 (AtLocation cottage village) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cotton is located at cotton field", "pln": ["(: cnet_atlocation_e67b69bf44 (AtLocation cotton cotton_field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cotton is located at georgia", "pln": ["(: cnet_atlocation_45a11d51da (AtLocation cotton georgia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "cotton is located at medicine cabinet", "pln": ["(: cnet_atlocation_728e30d9cb (AtLocation cotton medicine_cabinet) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cotton candy is located at carnival", "pln": ["(: cnet_atlocation_c73d550d8b (AtLocation cotton_candy carnival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cotton candy is located at fair", "pln": ["(: cnet_atlocation_cd6a772abb (AtLocation cotton_candy fair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cotton candy is located at fairground", "pln": ["(: cnet_atlocation_a375384b0c (AtLocation cotton_candy fairground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cotton footwear is located at sock drawer", "pln": ["(: cnet_atlocation_8edfd87cc2 (AtLocation cotton_footwear sock_drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "couch is located at den", "pln": ["(: cnet_atlocation_119eaee8a0 (AtLocation couch den) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "couch is located at house", "pln": ["(: cnet_atlocation_f6d32037ef (AtLocation couch house) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "couch is located at livingroom", "pln": ["(: cnet_atlocation_8caadcc122 (AtLocation couch livingroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "couch is located at neighbor s house", "pln": ["(: cnet_atlocation_ac248a7807 (AtLocation couch neighbor_s_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "council is located at council chamber", "pln": ["(: cnet_atlocation_d51db22982 (AtLocation council council_chamber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "counter is located at kitchen", "pln": ["(: cnet_atlocation_ef0261d369 (AtLocation counter kitchen) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "country is located at continent", "pln": ["(: cnet_atlocation_bb70498acd (AtLocation country continent) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "county is located at state", "pln": ["(: cnet_atlocation_cf63c2e41d (AtLocation county state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "county highway is located at map", "pln": ["(: cnet_atlocation_579ef13b4f (AtLocation county_highway map) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "county highway is located at rural area", "pln": ["(: cnet_atlocation_75813ed5f5 (AtLocation county_highway rural_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "couple is located at theatre", "pln": ["(: cnet_atlocation_b72f2d9f0c (AtLocation couple theatre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "couple is located at wedding", "pln": ["(: cnet_atlocation_1cfbd91a36 (AtLocation couple wedding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coupon is located at market", "pln": ["(: cnet_atlocation_9fb4e809a6 (AtLocation coupon market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "court is located at courthouse", "pln": ["(: cnet_atlocation_853fadbdb6 (AtLocation court courthouse) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "courthouse is located at city", "pln": ["(: cnet_atlocation_675f355e1a (AtLocation courthouse city) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "courtroom is located at courthouse", "pln": ["(: cnet_atlocation_7669f9384a (AtLocation courtroom courthouse) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cow is located at barnyard", "pln": ["(: cnet_atlocation_02e237f5cb (AtLocation cow barnyard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cow is located at butcher shop", "pln": ["(: cnet_atlocation_634cd25b7b (AtLocation cow butcher_shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "cow is located at canada", "pln": ["(: cnet_atlocation_21f7a2cc6c (AtLocation cow canada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cow is located at countryside", "pln": ["(: cnet_atlocation_1520e1fb54 (AtLocation cow countryside) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cow is located at county fair", "pln": ["(: cnet_atlocation_03af71bd88 (AtLocation cow county_fair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cow is located at dairy farm", "pln": ["(: cnet_atlocation_4d90f98799 (AtLocation cow dairy_farm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cow is located at farmyard", "pln": ["(: cnet_atlocation_8b792f6dbd (AtLocation cow farmyard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "cow is located at hamburger", "pln": ["(: cnet_atlocation_4dbaf19d14 (AtLocation cow hamburger) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cow is located at milking barn", "pln": ["(: cnet_atlocation_a99159a5a2 (AtLocation cow milking_barn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cow is located at milking stall", "pln": ["(: cnet_atlocation_b0ea2afb84 (AtLocation cow milking_stall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cow is located at paddock", "pln": ["(: cnet_atlocation_19595b8380 (AtLocation cow paddock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cow is located at ranch", "pln": ["(: cnet_atlocation_4992a9b86e (AtLocation cow ranch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cow is located at slaughter house", "pln": ["(: cnet_atlocation_c27eb97415 (AtLocation cow slaughter_house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cow is located at stable", "pln": ["(: cnet_atlocation_a556c0a3cb (AtLocation cow stable) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "coworker is located at office", "pln": ["(: cnet_atlocation_3729133c67 (AtLocation coworker office) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cpu is located at computer", "pln": ["(: cnet_atlocation_efad8bb860 (AtLocation cpu computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cpu is located at motherboard", "pln": ["(: cnet_atlocation_289926dc56 (AtLocation cpu motherboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crab is located at bay", "pln": ["(: cnet_atlocation_ffeed95192 (AtLocation crab bay) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crab is located at beach sand", "pln": ["(: cnet_atlocation_96d6407f9f (AtLocation crab beach_sand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crab is located at bottom of ocean", "pln": ["(: cnet_atlocation_507521eac3 (AtLocation crab bottom_of_ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crab is located at bottom of sea", "pln": ["(: cnet_atlocation_66c85f87d0 (AtLocation crab bottom_of_sea) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crab is located at chesapeak bay", "pln": ["(: cnet_atlocation_30082e529b (AtLocation crab chesapeak_bay) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crab is located at chesapeake bay", "pln": ["(: cnet_atlocation_3bf63368cb (AtLocation crab chesapeake_bay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crab is located at chinese buffet", "pln": ["(: cnet_atlocation_d44931fade (AtLocation crab chinese_buffet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crab is located at cooking pot", "pln": ["(: cnet_atlocation_886e3b9385 (AtLocation crab cooking_pot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crab is located at crab bisque", "pln": ["(: cnet_atlocation_2d13354fc8 (AtLocation crab crab_bisque) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crab is located at crab cake", "pln": ["(: cnet_atlocation_5ce36393d4 (AtLocation crab crab_cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crab is located at crab pot", "pln": ["(: cnet_atlocation_1a5c15d0a0 (AtLocation crab crab_pot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "crab is located at crab salad", "pln": ["(: cnet_atlocation_2b9fface35 (AtLocation crab crab_salad) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crab is located at fish market", "pln": ["(: cnet_atlocation_9df1489d1a (AtLocation crab fish_market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crab is located at freezer", "pln": ["(: cnet_atlocation_a5e7214c86 (AtLocation crab freezer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crab is located at maine", "pln": ["(: cnet_atlocation_0fe48cc8ad (AtLocation crab maine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crab is located at office", "pln": ["(: cnet_atlocation_43099850e2 (AtLocation crab office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crab is located at rock", "pln": ["(: cnet_atlocation_e3469ba052 (AtLocation crab rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crab is located at salad", "pln": ["(: cnet_atlocation_6bf1ceae7e (AtLocation crab salad) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crab is located at salt water", "pln": ["(: cnet_atlocation_f754ec7cdf (AtLocation crab salt_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crab is located at sand", "pln": ["(: cnet_atlocation_adc81bcc70 (AtLocation crab sand) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crab is located at sand at beach", "pln": ["(: cnet_atlocation_97f179b09d (AtLocation crab sand_at_beach) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crab is located at tank", "pln": ["(: cnet_atlocation_c44295eb40 (AtLocation crab tank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "crab is located at tide pool", "pln": ["(: cnet_atlocation_298fb9c196 (AtLocation crab tide_pool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "craters is located at suface of moon", "pln": ["(: cnet_atlocation_aeda73e934 (AtLocation craters suface_of_moon) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crab is located at tidepool", "pln": ["(: cnet_atlocation_c27d9125d6 (AtLocation crab tidepool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crap table is located at casino", "pln": ["(: cnet_atlocation_f35a01d8b1 (AtLocation crap_table casino) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crater is located at moon", "pln": ["(: cnet_atlocation_337f04e603 (AtLocation crater moon) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crater is located at suface of moon", "pln": ["(: cnet_atlocation_d5001956c0 (AtLocation crater suface_of_moon) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "creature is located at black lagoon", "pln": ["(: cnet_atlocation_afa971b03d (AtLocation creature black_lagoon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "creature is located at forest", "pln": ["(: cnet_atlocation_4d712d10d0 (AtLocation creature forest) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "creature is located at zoo", "pln": ["(: cnet_atlocation_56882f369b (AtLocation creature zoo) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "credit card is located at purse", "pln": ["(: cnet_atlocation_9dadd89fc3 (AtLocation credit_card purse) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "credit card wallet is located at purse", "pln": ["(: cnet_atlocation_b20b9b9c11 (AtLocation credit_card_wallet purse) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "creek is located at forest", "pln": ["(: cnet_atlocation_14149c5fbe (AtLocation creek forest) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "creek is located at valley", "pln": ["(: cnet_atlocation_4f0c8709a1 (AtLocation creek valley) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "criminal is located at jail", "pln": ["(: cnet_atlocation_900c23b323 (AtLocation criminal jail) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "criminals is located at jail", "pln": ["(: cnet_atlocation_22de4ace81 (AtLocation criminals jail) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "crowded trains is located at india", "pln": ["(: cnet_atlocation_1ae7b293bd (AtLocation crowded_trains india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "darkness is located at movies", "pln": ["(: cnet_atlocation_64ac6eecad (AtLocation darkness movies) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "criminal is located at prison", "pln": ["(: cnet_atlocation_ff212ca3ab (AtLocation criminal prison) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crop is located at field", "pln": ["(: cnet_atlocation_5d6a6dd97a (AtLocation crop field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crossroad is located at countryside", "pln": ["(: cnet_atlocation_47e917acaf (AtLocation crossroad countryside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crossroad is located at journey", "pln": ["(: cnet_atlocation_d36097b616 (AtLocation crossroad journey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crosswalk is located at city street", "pln": ["(: cnet_atlocation_c4d6cfa66e (AtLocation crosswalk city_street) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crosswalk is located at corner of two street", "pln": ["(: cnet_atlocation_bd000d4eec (AtLocation crosswalk corner_of_two_street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crosswalk is located at street", "pln": ["(: cnet_atlocation_a7fa068b63 (AtLocation crosswalk street) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crosswalk is located at street corner", "pln": ["(: cnet_atlocation_08564409e5 (AtLocation crosswalk street_corner) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crowded train is located at india", "pln": ["(: cnet_atlocation_ae852ee0ba (AtLocation crowded_train india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cruise ship is located at sea", "pln": ["(: cnet_atlocation_b1a4fd4568 (AtLocation cruise_ship sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crumb is located at breadbox", "pln": ["(: cnet_atlocation_b3414e3e1c (AtLocation crumb breadbox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crumb is located at floor", "pln": ["(: cnet_atlocation_eba211ba3f (AtLocation crumb floor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crumb is located at table", "pln": ["(: cnet_atlocation_2c356962e4 (AtLocation crumb table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crumpled up paper is located at trash", "pln": ["(: cnet_atlocation_60784ebdc2 (AtLocation crumpled_up_paper trash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "crustacean is located at ocean", "pln": ["(: cnet_atlocation_a7bb5fd550 (AtLocation crustacean ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cubicle is located at bank", "pln": ["(: cnet_atlocation_1a191dfa48 (AtLocation cubicle bank) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cubicle is located at office", "pln": ["(: cnet_atlocation_e114021c0d (AtLocation cubicle office) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cubicle is located at office building", "pln": ["(: cnet_atlocation_25fb3bcac9 (AtLocation cubicle office_building) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cubicle is located at building", "pln": ["(: cnet_atlocation_449ba96185 (AtLocation cubicle building) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cup is located at closet", "pln": ["(: cnet_atlocation_885a2ac31a (AtLocation cup closet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cup is located at dishwasher", "pln": ["(: cnet_atlocation_b276e12491 (AtLocation cup dishwasher) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cup is located at kitchen", "pln": ["(: cnet_atlocation_51b89fa305 (AtLocation cup kitchen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cup is located at shelf", "pln": ["(: cnet_atlocation_bb07c20d31 (AtLocation cup shelf) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cup is located at table", "pln": ["(: cnet_atlocation_3e2685b470 (AtLocation cup table) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cup of coffee is located at coffee shop", "pln": ["(: cnet_atlocation_cbc816d76c (AtLocation cup_of_coffee coffee_shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cup of coffee is located at desk", "pln": ["(: cnet_atlocation_eb1eeb6757 (AtLocation cup_of_coffee desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cup of coffee is located at kitchen", "pln": ["(: cnet_atlocation_4ef40fd6c9 (AtLocation cup_of_coffee kitchen) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cup of coffee is located at office", "pln": ["(: cnet_atlocation_4dbd27cc06 (AtLocation cup_of_coffee office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cup of coffee is located at table", "pln": ["(: cnet_atlocation_fd8d45322f (AtLocation cup_of_coffee table) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cup of sugar is located at neighbor s house", "pln": ["(: cnet_atlocation_e6ca69e2d2 (AtLocation cup_of_sugar neighbor_s_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cup and plate is located at cupboard", "pln": ["(: cnet_atlocation_45be3d7128 (AtLocation cup_and_plate cupboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "curator is located at museum", "pln": ["(: cnet_atlocation_cdad1cc460 (AtLocation curator museum) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "curling iron is located at bathroom", "pln": ["(: cnet_atlocation_0af49f106d (AtLocation curling_iron bathroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "current event is located at newspaper", "pln": ["(: cnet_atlocation_ec23edf836 (AtLocation current_event newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "curtain is located at theater", "pln": ["(: cnet_atlocation_b9d74fc1e7 (AtLocation curtain theater) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "curtain is located at theatre", "pln": ["(: cnet_atlocation_a76667996d (AtLocation curtain theatre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "curtain is located at window", "pln": ["(: cnet_atlocation_f23d8a40b4 (AtLocation curtain window) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "curtain is located at opera", "pln": ["(: cnet_atlocation_ef220721e8 (AtLocation curtain opera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cushion is located at sofa", "pln": ["(: cnet_atlocation_e7ef73f3f7 (AtLocation cushion sofa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "custodian is located at school", "pln": ["(: cnet_atlocation_dfe21ae0ad (AtLocation custodian school) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "customer is located at bar", "pln": ["(: cnet_atlocation_5e353dab25 (AtLocation customer bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "customer is located at market", "pln": ["(: cnet_atlocation_b7fb088b48 (AtLocation customer market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "custom officer is located at airport", "pln": ["(: cnet_atlocation_b65263d0ce (AtLocation custom_officer airport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cutlery is located at table", "pln": ["(: cnet_atlocation_d705263908 (AtLocation cutlery table) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "cutlery drawer is located at restaurant", "pln": ["(: cnet_atlocation_5c0905ab19 (AtLocation cutlery_drawer restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "daisy is located at field", "pln": ["(: cnet_atlocation_8982fb5d41 (AtLocation daisy field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dance club is located at city", "pln": ["(: cnet_atlocation_fbaf8a1c32 (AtLocation dance_club city) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dancing is located at friend s wedding", "pln": ["(: cnet_atlocation_df6dc17416 (AtLocation dancing friend_s_wedding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dandruff shampoo is located at bathroom", "pln": ["(: cnet_atlocation_8f4cc7346c (AtLocation dandruff_shampoo bathroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dandruff shampoo is located at pharmacy", "pln": ["(: cnet_atlocation_b3adc10d24 (AtLocation dandruff_shampoo pharmacy) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dandruff shampoo is located at shower", "pln": ["(: cnet_atlocation_fbbd1e0590 (AtLocation dandruff_shampoo shower) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dandruff shampoo is located at supermarket", "pln": ["(: cnet_atlocation_b1e7184126 (AtLocation dandruff_shampoo supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dark glass is located at store", "pln": ["(: cnet_atlocation_2425a314f5 (AtLocation dark_glass store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dark matter is located at universe", "pln": ["(: cnet_atlocation_d5fd6a0456 (AtLocation dark_matter universe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "darkness is located at movy", "pln": ["(: cnet_atlocation_dbdc0c3c50 (AtLocation darkness movy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "data is located at internet", "pln": ["(: cnet_atlocation_041a6e50f9 (AtLocation data internet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "data is located at storage media", "pln": ["(: cnet_atlocation_3d08d53e46 (AtLocation data storage_media) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "date is located at drive in movie", "pln": ["(: cnet_atlocation_d0f0f81d17 (AtLocation date drive_in_movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "date is located at newspaper", "pln": ["(: cnet_atlocation_86e0b8cbb5 (AtLocation date newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "date stamp is located at desk", "pln": ["(: cnet_atlocation_89a43c5e1c (AtLocation date_stamp desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dead body is located at war", "pln": ["(: cnet_atlocation_0bd94f82cd (AtLocation dead_body war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dead bug is located at windowsill", "pln": ["(: cnet_atlocation_42973145a8 (AtLocation dead_bug windowsill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dead fish is located at beach", "pln": ["(: cnet_atlocation_f66873306c (AtLocation dead_fish beach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dead fly is located at windowsill", "pln": ["(: cnet_atlocation_39c7a35966 (AtLocation dead_fly windowsill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dead leaf is located at tree", "pln": ["(: cnet_atlocation_615cd7724e (AtLocation dead_leaf tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dead leave is located at forest", "pln": ["(: cnet_atlocation_d9b5876e26 (AtLocation dead_leave forest) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dead people is located at war", "pln": ["(: cnet_atlocation_be6db65825 (AtLocation dead_people war) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dead person is located at funeral", "pln": ["(: cnet_atlocation_1099822e7f (AtLocation dead_person funeral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dead soldier is located at war", "pln": ["(: cnet_atlocation_ea97f2f3e4 (AtLocation dead_soldier war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "deadbeat dad is located at jail", "pln": ["(: cnet_atlocation_74718f9cee (AtLocation deadbeat_dad jail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "death is located at war", "pln": ["(: cnet_atlocation_b202ac02c5 (AtLocation death war) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "debris is located at orbit", "pln": ["(: cnet_atlocation_0c79e4d32b (AtLocation debris orbit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "decanter is located at brewery", "pln": ["(: cnet_atlocation_274911a4f0 (AtLocation decanter brewery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "decision is located at fork in road", "pln": ["(: cnet_atlocation_80a42abdd2 (AtLocation decision fork_in_road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "deck is located at boat", "pln": ["(: cnet_atlocation_0937b9d409 (AtLocation deck boat) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "delegate is located at conference", "pln": ["(: cnet_atlocation_4988828929 (AtLocation delegate conference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "deli is located at new york city", "pln": ["(: cnet_atlocation_1c30171231 (AtLocation deli new_york_city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "denim is located at pair of jeans", "pln": ["(: cnet_atlocation_11cfb014f0 (AtLocation denim pair_of_jeans) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "dental chair is located at dentists office", "pln": ["(: cnet_atlocation_fc8f812e89 (AtLocation dental_chair dentists_office) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "deli is located at town", "pln": ["(: cnet_atlocation_b35ab82b6b (AtLocation deli town) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "deli restaurant is located at new york city", "pln": ["(: cnet_atlocation_8a096ae89c (AtLocation deli_restaurant new_york_city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "deli store is located at mall", "pln": ["(: cnet_atlocation_b6576aa8c8 (AtLocation deli_store mall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "delicatessen is located at large city", "pln": ["(: cnet_atlocation_0f8c7528ce (AtLocation delicatessen large_city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "delicatessen counter is located at supermarket", "pln": ["(: cnet_atlocation_282e2b0624 (AtLocation delicatessen_counter supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "demonstration is located at class", "pln": ["(: cnet_atlocation_cd45b41b02 (AtLocation demonstration class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "denim is located at jean factory", "pln": ["(: cnet_atlocation_ff7a9393e5 (AtLocation denim jean_factory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "denim is located at pair of jean", "pln": ["(: cnet_atlocation_29a07f46ea (AtLocation denim pair_of_jean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dental assistant is located at dentist", "pln": ["(: cnet_atlocation_28014bdd97 (AtLocation dental_assistant dentist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dental chair is located at dentist office", "pln": ["(: cnet_atlocation_182c78d281 (AtLocation dental_chair dentist_office) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dental drill is located at dentist", "pln": ["(: cnet_atlocation_aa22cc9472 (AtLocation dental_drill dentist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dental floss is located at bathroom", "pln": ["(: cnet_atlocation_b84b486bf6 (AtLocation dental_floss bathroom) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dental floss is located at medicine cabinet", "pln": ["(: cnet_atlocation_13fd2afe24 (AtLocation dental_floss medicine_cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dentist is located at dentist", "pln": ["(: cnet_atlocation_a79928dbb9 (AtLocation dentist dentist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dentist is located at office", "pln": ["(: cnet_atlocation_547517a58d (AtLocation dentist office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dentist chair is located at dentist office", "pln": ["(: cnet_atlocation_ad986b1442 (AtLocation dentist_chair dentist_office) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dentist office is located at office building", "pln": ["(: cnet_atlocation_f9abc13c52 (AtLocation dentist_office office_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dentist office is located at town", "pln": ["(: cnet_atlocation_dc19415724 (AtLocation dentist_office town) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "denture is located at mouth", "pln": ["(: cnet_atlocation_b276175139 (AtLocation denture mouth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "deodorant is located at medicine chest", "pln": ["(: cnet_atlocation_3cdfe1c3b1 (AtLocation deodorant medicine_chest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "department store is located at city", "pln": ["(: cnet_atlocation_5da419eaf0 (AtLocation department_store city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "department store is located at mall", "pln": ["(: cnet_atlocation_4abf506b02 (AtLocation department_store mall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "depressed person is located at pschiatric hospital", "pln": ["(: cnet_atlocation_c2afee6b3a (AtLocation depressed_person pschiatric_hospital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "desk is located at library", "pln": ["(: cnet_atlocation_9870b923b9 (AtLocation desk library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "desk clerk is located at motel", "pln": ["(: cnet_atlocation_af74647c61 (AtLocation desk_clerk motel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "desk drawer is located at desk", "pln": ["(: cnet_atlocation_906dacab75 (AtLocation desk_drawer desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "desk drawer is located at office", "pln": ["(: cnet_atlocation_d1cf50d543 (AtLocation desk_drawer office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "desk lamp is located at desktop", "pln": ["(: cnet_atlocation_7d7c8b91a3 (AtLocation desk_lamp desktop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "desk pad is located at desk", "pln": ["(: cnet_atlocation_5d27809e96 (AtLocation desk_pad desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "desk is located at building", "pln": ["(: cnet_atlocation_be532d58c2 (AtLocation desk building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "destruction is located at war zone", "pln": ["(: cnet_atlocation_5a23526d21 (AtLocation destruction war_zone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "detergent is located at store", "pln": ["(: cnet_atlocation_e702d4d822 (AtLocation detergent store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "detergent is located at supermarket", "pln": ["(: cnet_atlocation_2662ef9068 (AtLocation detergent supermarket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "detritus is located at forest", "pln": ["(: cnet_atlocation_afcb0ea311 (AtLocation detritus forest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "devil is located at hell", "pln": ["(: cnet_atlocation_36b74419c1 (AtLocation devil hell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "deviled egg is located at plate", "pln": ["(: cnet_atlocation_1b959de4a4 (AtLocation deviled_egg plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dew in early morning is located at lawn", "pln": ["(: cnet_atlocation_554e5f898d (AtLocation dew_in_early_morning lawn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "diamond is located at drill bit", "pln": ["(: cnet_atlocation_401ebc0671 (AtLocation diamond drill_bit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "diamond is located at jewelry store", "pln": ["(: cnet_atlocation_123ec41b4e (AtLocation diamond jewelry_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "diamond is located at ring", "pln": ["(: cnet_atlocation_9816c121a1 (AtLocation diamond ring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dick tracy is located at newspaper", "pln": ["(: cnet_atlocation_5822353379 (AtLocation dick_tracy newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dictionary is located at library", "pln": ["(: cnet_atlocation_c6baacebdd (AtLocation dictionary library) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dime store is located at strip mall", "pln": ["(: cnet_atlocation_6c809ad1f5 (AtLocation dime_store strip_mall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "diner is located at town", "pln": ["(: cnet_atlocation_26956b6c5a (AtLocation diner town) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dining area is located at cruise ship", "pln": ["(: cnet_atlocation_01eb1a5405 (AtLocation dining_area cruise_ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dining area is located at resturant", "pln": ["(: cnet_atlocation_986972482e (AtLocation dining_area resturant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dining room is located at home", "pln": ["(: cnet_atlocation_be4ce804e7 (AtLocation dining_room home) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dining room is located at mansion", "pln": ["(: cnet_atlocation_4f01295fe1 (AtLocation dining_room mansion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dining room is located at restaurant", "pln": ["(: cnet_atlocation_7728713a47 (AtLocation dining_room restaurant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "dining room table is located at dining room", "pln": ["(: cnet_atlocation_279fa9a24e (AtLocation dining_room_table dining_room) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "dishes is located at pantry", "pln": ["(: cnet_atlocation_8dc8c78c42 (AtLocation dishes pantry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "dishes is located at shelf", "pln": ["(: cnet_atlocation_6b3e1a730a (AtLocation dishes shelf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dining room table is located at furniture store", "pln": ["(: cnet_atlocation_48683bfc32 (AtLocation dining_room_table furniture_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dinner is located at table", "pln": ["(: cnet_atlocation_4a3e921620 (AtLocation dinner table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dinner cooking in oven is located at kitchen", "pln": ["(: cnet_atlocation_b9c1693c61 (AtLocation dinner_cooking_in_oven kitchen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dinner plate is located at dinner", "pln": ["(: cnet_atlocation_956cd231b6 (AtLocation dinner_plate dinner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dinner plate is located at cabinet", "pln": ["(: cnet_atlocation_e115e74657 (AtLocation dinner_plate cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "diploma is located at frame", "pln": ["(: cnet_atlocation_471c0ba151 (AtLocation diploma frame) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dirt is located at bed", "pln": ["(: cnet_atlocation_375b30ab5a (AtLocation dirt bed) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dirt is located at carpet", "pln": ["(: cnet_atlocation_1a88909d74 (AtLocation dirt carpet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dirt is located at fingernail", "pln": ["(: cnet_atlocation_78f99a5ace (AtLocation dirt fingernail) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dirt is located at ground", "pln": ["(: cnet_atlocation_df8e692f3b (AtLocation dirt ground) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dirt is located at rug", "pln": ["(: cnet_atlocation_1a0636e25a (AtLocation dirt rug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dirt is located at street", "pln": ["(: cnet_atlocation_faeb7a905d (AtLocation dirt street) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dirt is located at subway", "pln": ["(: cnet_atlocation_d3ebe42735 (AtLocation dirt subway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dirt is located at surface of earth", "pln": ["(: cnet_atlocation_d4a543c732 (AtLocation dirt surface_of_earth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dirty sock is located at bed", "pln": ["(: cnet_atlocation_0b727a5a50 (AtLocation dirty_sock bed) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "discarded shopping list is located at supermarket", "pln": ["(: cnet_atlocation_46817463a5 (AtLocation discarded_shopping_list supermarket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "disco is located at town", "pln": ["(: cnet_atlocation_9c3848c51b (AtLocation disco town) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "discussion is located at meeting", "pln": ["(: cnet_atlocation_32b273daf4 (AtLocation discussion meeting) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "disease is located at hospital", "pln": ["(: cnet_atlocation_3a642328d2 (AtLocation disease hospital) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "disease is located at human body", "pln": ["(: cnet_atlocation_345d791c1f (AtLocation disease human_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "disease is located at third world country", "pln": ["(: cnet_atlocation_adf306d481 (AtLocation disease third_world_country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "disgruntled employee is located at office", "pln": ["(: cnet_atlocation_3b3c8771d0 (AtLocation disgruntled_employee office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dish is located at cabinet", "pln": ["(: cnet_atlocation_a62404e2dc (AtLocation dish cabinet) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dish is located at kitchen", "pln": ["(: cnet_atlocation_5069f509f4 (AtLocation dish kitchen) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dish is located at table", "pln": ["(: cnet_atlocation_3ded74482c (AtLocation dish table) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dishe is located at pantry", "pln": ["(: cnet_atlocation_edbe2ebf91 (AtLocation dishe pantry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dishe is located at shelf", "pln": ["(: cnet_atlocation_26a1dc7f11 (AtLocation dishe shelf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dishwasher is located at kitchen", "pln": ["(: cnet_atlocation_17ec76faa1 (AtLocation dishwasher kitchen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "disinfectant is located at hospital", "pln": ["(: cnet_atlocation_b58819b8f1 (AtLocation disinfectant hospital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "disk is located at cd player", "pln": ["(: cnet_atlocation_70d9d4e72a (AtLocation disk cd_player) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "disk is located at computer", "pln": ["(: cnet_atlocation_7e65f74a9e (AtLocation disk computer) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "display ads for automobile is located at newspaper", "pln": ["(: cnet_atlocation_d76575152c (AtLocation display_ads_for_automobile newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "display cabinet is located at living room", "pln": ["(: cnet_atlocation_e04d0a5e63 (AtLocation display_cabinet living_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "disposable razor is located at bathroom", "pln": ["(: cnet_atlocation_b366423459 (AtLocation disposable_razor bathroom) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "disposable razor is located at medicine cabinet", "pln": ["(: cnet_atlocation_66984c8aab (AtLocation disposable_razor medicine_cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "disposable razor is located at supermarket", "pln": ["(: cnet_atlocation_7b170033fd (AtLocation disposable_razor supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dissolved mineral is located at water", "pln": ["(: cnet_atlocation_092c7c20e4 (AtLocation dissolved_mineral water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "diva is located at opera", "pln": ["(: cnet_atlocation_8caa6a1373 (AtLocation diva opera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "diver is located at water", "pln": ["(: cnet_atlocation_3cd76ba8d2 (AtLocation diver water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "divider is located at notebook", "pln": ["(: cnet_atlocation_011a02bf88 (AtLocation divider notebook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "diving board is located at swimming pool", "pln": ["(: cnet_atlocation_e3790c4e7d (AtLocation diving_board swimming_pool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "dna is located at cell", "pln": ["(: cnet_atlocation_d0e014efae (AtLocation dna cell) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "doctor is located at doctor s office", "pln": ["(: cnet_atlocation_bff67ca8ed (AtLocation doctor doctor_s_office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "doctor examination room is located at hospital", "pln": ["(: cnet_atlocation_6458022fd0 (AtLocation doctor_examination_room hospital) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "document folder is located at computer desktop", "pln": ["(: cnet_atlocation_c1bcda97d0 (AtLocation document_folder computer_desktop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "document folder is located at file cabinet", "pln": ["(: cnet_atlocation_53281bfbad (AtLocation document_folder file_cabinet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "document folder is located at filing cabinet", "pln": ["(: cnet_atlocation_0a5ffbd832 (AtLocation document_folder filing_cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dog is located at backyard", "pln": ["(: cnet_atlocation_1e9cad96fa (AtLocation dog backyard) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dog is located at bed", "pln": ["(: cnet_atlocation_7c0ae43ea1 (AtLocation dog bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dog is located at couch", "pln": ["(: cnet_atlocation_025610f20b (AtLocation dog couch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dog is located at dog house", "pln": ["(: cnet_atlocation_1b051badf5 (AtLocation dog dog_house) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dog is located at doghouse", "pln": ["(: cnet_atlocation_4996a559d0 (AtLocation dog doghouse) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dog is located at dogpound", "pln": ["(: cnet_atlocation_be10aee1a8 (AtLocation dog dogpound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dog is located at house", "pln": ["(: cnet_atlocation_b815c636e4 (AtLocation dog house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dog is located at kennel", "pln": ["(: cnet_atlocation_005fa130d2 (AtLocation dog kennel) (STV 1.0 0.9791))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "dog is located at leash", "pln": ["(: cnet_atlocation_cb696f82ad (AtLocation dog leash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dog is located at park", "pln": ["(: cnet_atlocation_fed7ed2f79 (AtLocation dog park) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dog is located at porch", "pln": ["(: cnet_atlocation_17ee707637 (AtLocation dog porch) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dog is located at rug", "pln": ["(: cnet_atlocation_76a6cb1832 (AtLocation dog rug) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dog is located at table", "pln": ["(: cnet_atlocation_76b777038e (AtLocation dog table) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dog poop is located at ground", "pln": ["(: cnet_atlocation_42299ffaf3 (AtLocation dog_poop ground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dog poop is located at lawn", "pln": ["(: cnet_atlocation_3d1d58b71b (AtLocation dog_poop lawn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dog shit is located at shoe", "pln": ["(: cnet_atlocation_08cb27b457 (AtLocation dog_shit shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "doll is located at child s arm", "pln": ["(: cnet_atlocation_a35556f087 (AtLocation doll child_s_arm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "doll is located at dollshouse", "pln": ["(: cnet_atlocation_fae0dcc48e (AtLocation doll dollshouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dollar is located at bank", "pln": ["(: cnet_atlocation_8a9093a83c (AtLocation dollar bank) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dollar is located at pocket", "pln": ["(: cnet_atlocation_f3341f2dbe (AtLocation dollar pocket) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dollar bill is located at pocket", "pln": ["(: cnet_atlocation_6c513f19dc (AtLocation dollar_bill pocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "dollar bill is located at purse", "pln": ["(: cnet_atlocation_15e4af22ac (AtLocation dollar_bill purse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dollar bill is located at wallet", "pln": ["(: cnet_atlocation_69d1e8fef4 (AtLocation dollar_bill wallet) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dollar is located at purse", "pln": ["(: cnet_atlocation_502149fbc3 (AtLocation dollar purse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dolphin is located at ocean", "pln": ["(: cnet_atlocation_6174cb6010 (AtLocation dolphin ocean) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dolphin is located at water", "pln": ["(: cnet_atlocation_331bdc8eee (AtLocation dolphin water) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "door is located at apartment", "pln": ["(: cnet_atlocation_e83d81ed48 (AtLocation door apartment) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "door is located at building", "pln": ["(: cnet_atlocation_b3ee2ea3ff (AtLocation door building) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "door is located at neighbor s house", "pln": ["(: cnet_atlocation_40ecbac177 (AtLocation door neighbor_s_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "door is located at office", "pln": ["(: cnet_atlocation_1ff64552d3 (AtLocation door office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "door is located at room", "pln": ["(: cnet_atlocation_8823eab0a0 (AtLocation door room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "door is located at theater", "pln": ["(: cnet_atlocation_baf293f182 (AtLocation door theater) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "door is located at wall", "pln": ["(: cnet_atlocation_9453094f57 (AtLocation door wall) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "door knob is located at front door", "pln": ["(: cnet_atlocation_5201e4cd1e (AtLocation door_knob front_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "door with lock is located at garage", "pln": ["(: cnet_atlocation_01f58a2157 (AtLocation door_with_lock garage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "door with lock is located at house", "pln": ["(: cnet_atlocation_ac35fe0e5d (AtLocation door_with_lock house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "doorbell is located at front door", "pln": ["(: cnet_atlocation_09fcfce4b2 (AtLocation doorbell front_door) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "doorknob is located at front door", "pln": ["(: cnet_atlocation_b642c08903 (AtLocation doorknob front_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "doormat is located at front door", "pln": ["(: cnet_atlocation_aa21015285 (AtLocation doormat front_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "doormat is located at front of door", "pln": ["(: cnet_atlocation_d0d056dac5 (AtLocation doormat front_of_door) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "doormat is located at hallway", "pln": ["(: cnet_atlocation_6d692188dc (AtLocation doormat hallway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "doorway is located at building", "pln": ["(: cnet_atlocation_b0791f48fa (AtLocation doorway building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "doorway is located at room", "pln": ["(: cnet_atlocation_eeaffc547d (AtLocation doorway room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dot is located at end of line", "pln": ["(: cnet_atlocation_4ad90da1e2 (AtLocation dot end_of_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "double bass is located at orchestra", "pln": ["(: cnet_atlocation_06a7e68981 (AtLocation double_bass orchestra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "double edged razor is located at bathroom", "pln": ["(: cnet_atlocation_7ddd3aa97a (AtLocation double_edged_razor bathroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "double knit is located at clothing store", "pln": ["(: cnet_atlocation_158b3e231e (AtLocation double_knit clothing_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "drain is located at swimming pool", "pln": ["(: cnet_atlocation_950eadeab9 (AtLocation drain swimming_pool) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "drawer is located at dresser", "pln": ["(: cnet_atlocation_15b79a396a (AtLocation drawer dresser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "drawer is located at office desk", "pln": ["(: cnet_atlocation_aa59cf44aa (AtLocation drawer office_desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "drawer is located at desk", "pln": ["(: cnet_atlocation_b6e9552509 (AtLocation drawer desk) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "drawer is located at refrigerator", "pln": ["(: cnet_atlocation_3b9fa09937 (AtLocation drawer refrigerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "drawing room is located at house", "pln": ["(: cnet_atlocation_a93a0bf445 (AtLocation drawing_room house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "drawstring bag is located at store", "pln": ["(: cnet_atlocation_f0f7fd5825 (AtLocation drawstring_bag store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dresser is located at bedroom", "pln": ["(: cnet_atlocation_f92cb07872 (AtLocation dresser bedroom) (STV 1.0 0.9748))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dresser is located at home", "pln": ["(: cnet_atlocation_95d799f992 (AtLocation dresser home) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dresser is located at house", "pln": ["(: cnet_atlocation_6dd9f15658 (AtLocation dresser house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "dressing is located at refrigerator", "pln": ["(: cnet_atlocation_dcb26b8477 (AtLocation dressing refrigerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dressing room is located at clothing store", "pln": ["(: cnet_atlocation_461b66a697 (AtLocation dressing_room clothing_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dressing room is located at department store", "pln": ["(: cnet_atlocation_4dbe6e79eb (AtLocation dressing_room department_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dried up food is located at table", "pln": ["(: cnet_atlocation_4f5ae7d3fe (AtLocation dried_up_food table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "driftwood is located at beach", "pln": ["(: cnet_atlocation_d7c1ef98b1 (AtLocation driftwood beach) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "driftwood is located at sea", "pln": ["(: cnet_atlocation_1fdce1f33a (AtLocation driftwood sea) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "drill is located at dentist office", "pln": ["(: cnet_atlocation_d65c9d7c5e (AtLocation drill dentist_office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "drill is located at garage", "pln": ["(: cnet_atlocation_dd6e564f7b (AtLocation drill garage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "drink is located at cabinet", "pln": ["(: cnet_atlocation_9f9be0f11c (AtLocation drink cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "drink is located at can", "pln": ["(: cnet_atlocation_fd21d18250 (AtLocation drink can) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "drink is located at cup", "pln": ["(: cnet_atlocation_cedeeaaada (AtLocation drink cup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "drinking fountain is located at rest area", "pln": ["(: cnet_atlocation_ca1ef81d9a (AtLocation drinking_fountain rest_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "drink is located at dinner", "pln": ["(: cnet_atlocation_81d79cf6b8 (AtLocation drink dinner) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "driver s license is located at wallet", "pln": ["(: cnet_atlocation_fa10a07561 (AtLocation driver_s_license wallet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "driveway is located at front of house", "pln": ["(: cnet_atlocation_ffbaec8688 (AtLocation driveway front_of_house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "driveway is located at neighborhood", "pln": ["(: cnet_atlocation_bc4bd85730 (AtLocation driveway neighborhood) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "driveway is located at suburb", "pln": ["(: cnet_atlocation_f463cbbb8e (AtLocation driveway suburb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "driveway is located at yard", "pln": ["(: cnet_atlocation_86f6ad4902 (AtLocation driveway yard) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "drug is located at drugstore", "pln": ["(: cnet_atlocation_257a56b740 (AtLocation drug drugstore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "drug is located at iv", "pln": ["(: cnet_atlocation_65a4409ae1 (AtLocation drug iv) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "drug dealer is located at jail", "pln": ["(: cnet_atlocation_d71b00bc48 (AtLocation drug_dealer jail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "drug dealer is located at school", "pln": ["(: cnet_atlocation_48909ef0de (AtLocation drug_dealer school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "drug is located at concert", "pln": ["(: cnet_atlocation_af239fe8c1 (AtLocation drug concert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "drug is located at school", "pln": ["(: cnet_atlocation_56eea471cd (AtLocation drug school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "drum is located at orchestra", "pln": ["(: cnet_atlocation_3fb7d82967 (AtLocation drum orchestra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "drunk is located at bar", "pln": ["(: cnet_atlocation_59c03df47c (AtLocation drunk bar) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "drunk is located at gutter", "pln": ["(: cnet_atlocation_bab4ddaf1d (AtLocation drunk gutter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "drunk is located at jail", "pln": ["(: cnet_atlocation_986c1f29f7 (AtLocation drunk jail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "drunk fan is located at sporting event", "pln": ["(: cnet_atlocation_ffc345ef59 (AtLocation drunk_fan sporting_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "drunk people is located at bar", "pln": ["(: cnet_atlocation_01b8b253e8 (AtLocation drunk_people bar) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "drunkard is located at bar", "pln": ["(: cnet_atlocation_eb6e8a96f5 (AtLocation drunkard bar) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dry good is located at pantry", "pln": ["(: cnet_atlocation_d6ee9be14f (AtLocation dry_good pantry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dry storage is located at pantry", "pln": ["(: cnet_atlocation_4ac0898a98 (AtLocation dry_storage pantry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dry storage is located at warehouse", "pln": ["(: cnet_atlocation_a1d3cdd556 (AtLocation dry_storage warehouse) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dryer is located at basement", "pln": ["(: cnet_atlocation_2a639c0ea7 (AtLocation dryer basement) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "duck is located at lake", "pln": ["(: cnet_atlocation_a380e68d88 (AtLocation duck lake) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "duck in is located at pond", "pln": ["(: cnet_atlocation_f33a25c754 (AtLocation duck_in pond) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "duck is located at pond", "pln": ["(: cnet_atlocation_47f62abcd4 (AtLocation duck pond) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "duffel bag is located at locker room", "pln": ["(: cnet_atlocation_5089ae5114 (AtLocation duffel_bag locker_room) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dunce is located at corner", "pln": ["(: cnet_atlocation_4b802048f8 (AtLocation dunce corner) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dust is located at air", "pln": ["(: cnet_atlocation_fbf94812f0 (AtLocation dust air) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dust is located at attic", "pln": ["(: cnet_atlocation_8d895e8681 (AtLocation dust attic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dust is located at bed", "pln": ["(: cnet_atlocation_45cd0d6b92 (AtLocation dust bed) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dust is located at carpet", "pln": ["(: cnet_atlocation_9aaf5ae6ce (AtLocation dust carpet) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dust is located at closet", "pln": ["(: cnet_atlocation_8aeaf65050 (AtLocation dust closet) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dust is located at corner", "pln": ["(: cnet_atlocation_717e0cd789 (AtLocation dust corner) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dust is located at desk", "pln": ["(: cnet_atlocation_672cc7cb17 (AtLocation dust desk) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "dust is located at desktop", "pln": ["(: cnet_atlocation_cd31fe71ac (AtLocation dust desktop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "electronics store is located at shopping mall", "pln": ["(: cnet_atlocation_d7ffa9e5c0 (AtLocation electronics_store shopping_mall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dust is located at fridge", "pln": ["(: cnet_atlocation_9e75f0a860 (AtLocation dust fridge) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dust is located at ground", "pln": ["(: cnet_atlocation_635356554a (AtLocation dust ground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dust is located at library", "pln": ["(: cnet_atlocation_01a83d07c6 (AtLocation dust library) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dust is located at loft", "pln": ["(: cnet_atlocation_1f902a24a0 (AtLocation dust loft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dust is located at moon", "pln": ["(: cnet_atlocation_72d967ebbc (AtLocation dust moon) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dust is located at shelf", "pln": ["(: cnet_atlocation_cd0af3bc26 (AtLocation dust shelf) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dust is located at suface of moon", "pln": ["(: cnet_atlocation_6bb55e8ff9 (AtLocation dust suface_of_moon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dust is located at table", "pln": ["(: cnet_atlocation_f1354bf638 (AtLocation dust table) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dust is located at windowsill", "pln": ["(: cnet_atlocation_f1e26b4170 (AtLocation dust windowsill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dust bunny is located at bed", "pln": ["(: cnet_atlocation_1b2c267c8d (AtLocation dust_bunny bed) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dust bunny is located at closet", "pln": ["(: cnet_atlocation_f9ba785a9e (AtLocation dust_bunny closet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dust bunny is located at desk", "pln": ["(: cnet_atlocation_0430b972df (AtLocation dust_bunny desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dust mite is located at bed", "pln": ["(: cnet_atlocation_537075c2d7 (AtLocation dust_mite bed) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dustbin is located at kitchen", "pln": ["(: cnet_atlocation_8389b388d3 (AtLocation dustbin kitchen) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "dustbin is located at utility closet", "pln": ["(: cnet_atlocation_171a013101 (AtLocation dustbin utility_closet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "duvet is located at bedroom", "pln": ["(: cnet_atlocation_097c7708da (AtLocation duvet bedroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ear is located at head", "pln": ["(: cnet_atlocation_741ef0fcf9 (AtLocation ear head) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ear is located at person s head", "pln": ["(: cnet_atlocation_9116c3d07c (AtLocation ear person_s_head) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "earth is located at orbit", "pln": ["(: cnet_atlocation_fd15edf0bd (AtLocation earth orbit) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "earth is located at solar system", "pln": ["(: cnet_atlocation_bae7fb6ee6 (AtLocation earth solar_system) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "earth is located at tree", "pln": ["(: cnet_atlocation_2d5615d23a (AtLocation earth tree) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "earth worm is located at good garden soil", "pln": ["(: cnet_atlocation_3db07ed936 (AtLocation earth_worm good_garden_soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "eatery is located at town", "pln": ["(: cnet_atlocation_a83ac1349c (AtLocation eatery town) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "eating place is located at city", "pln": ["(: cnet_atlocation_2f796416d1 (AtLocation eating_place city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "eating place is located at restaurant", "pln": ["(: cnet_atlocation_5ad14b9a38 (AtLocation eating_place restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "editorial is located at newspaper", "pln": ["(: cnet_atlocation_d8ffbfb51e (AtLocation editorial newspaper) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "education is located at university", "pln": ["(: cnet_atlocation_4a71a39c34 (AtLocation education university) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "eel is located at water", "pln": ["(: cnet_atlocation_8bae804b3f (AtLocation eel water) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "egg is located at bird s nest", "pln": ["(: cnet_atlocation_ca6eeb54bb (AtLocation egg bird_s_nest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "egg is located at chicken", "pln": ["(: cnet_atlocation_8df82c1df0 (AtLocation egg chicken) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "egg is located at chicken coop", "pln": ["(: cnet_atlocation_bcbebcc86b (AtLocation egg chicken_coop) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "egg is located at grocery store", "pln": ["(: cnet_atlocation_e6edb96afd (AtLocation egg grocery_store) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "egg is located at henhouse", "pln": ["(: cnet_atlocation_445d71a21d (AtLocation egg henhouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "egg is located at nest", "pln": ["(: cnet_atlocation_f800bd56db (AtLocation egg nest) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "egg is located at supermarket", "pln": ["(: cnet_atlocation_cbc18b64cb (AtLocation egg supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "egg is located at fridge", "pln": ["(: cnet_atlocation_089a588d14 (AtLocation egg fridge) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "egg is located at refridgerator", "pln": ["(: cnet_atlocation_5504870288 (AtLocation egg refridgerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "eiffel tower is located at paris", "pln": ["(: cnet_atlocation_5efc4c71f7 (AtLocation eiffel_tower paris) (STV 1.0 0.9701))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "electric bill is located at mail", "pln": ["(: cnet_atlocation_7123633d15 (AtLocation electric_bill mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "electric blanket is located at bedroom", "pln": ["(: cnet_atlocation_ca525c64bf (AtLocation electric_blanket bedroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "electric blanket is located at closet", "pln": ["(: cnet_atlocation_edf70cf1d7 (AtLocation electric_blanket closet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "electric fan is located at hot room", "pln": ["(: cnet_atlocation_30b73956e2 (AtLocation electric_fan hot_room) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "electric pencil sharpener is located at class room", "pln": ["(: cnet_atlocation_1177e17260 (AtLocation electric_pencil_sharpener class_room) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "electric razor is located at bathroom", "pln": ["(: cnet_atlocation_e227dbed41 (AtLocation electric_razor bathroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "electric socket is located at wall", "pln": ["(: cnet_atlocation_2df6152e36 (AtLocation electric_socket wall) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "electric toothbrush is located at store", "pln": ["(: cnet_atlocation_c83d634693 (AtLocation electric_toothbrush store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "electrical appliance is located at basement", "pln": ["(: cnet_atlocation_2e1c37728c (AtLocation electrical_appliance basement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "electrical wiring is located at building", "pln": ["(: cnet_atlocation_30cbfcc691 (AtLocation electrical_wiring building) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "electricity is located at building", "pln": ["(: cnet_atlocation_02c956b627 (AtLocation electricity building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "electronic appliance is located at den", "pln": ["(: cnet_atlocation_ea9f2e1076 (AtLocation electronic_appliance den) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "electronic store is located at shopping mall", "pln": ["(: cnet_atlocation_fe95c6b1a1 (AtLocation electronic_store shopping_mall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "electronic store is located at strip mall", "pln": ["(: cnet_atlocation_d1e9763739 (AtLocation electronic_store strip_mall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "electron is located at atom", "pln": ["(: cnet_atlocation_7fbd882f4c (AtLocation electron atom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "elephant is located at africa", "pln": ["(: cnet_atlocation_b021341daa (AtLocation elephant africa) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "elephant is located at circus", "pln": ["(: cnet_atlocation_469b60117e (AtLocation elephant circus) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "elephant is located at zoo", "pln": ["(: cnet_atlocation_ffaea3b25a (AtLocation elephant zoo) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "elevator is located at at hotel", "pln": ["(: cnet_atlocation_bf35fc96e4 (AtLocation elevator at_hotel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "elevator is located at building", "pln": ["(: cnet_atlocation_6ad8e151aa (AtLocation elevator building) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "elevator is located at hotel", "pln": ["(: cnet_atlocation_2a484d672a (AtLocation elevator hotel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "elevator is located at elevator shaft", "pln": ["(: cnet_atlocation_142de8ad7b (AtLocation elevator elevator_shaft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "emergency care is located at hospital", "pln": ["(: cnet_atlocation_eeb947ee24 (AtLocation emergency_care hospital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "emergency room is located at hospital", "pln": ["(: cnet_atlocation_1c378acf6a (AtLocation emergency_room hospital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "emergency ward is located at hospital", "pln": ["(: cnet_atlocation_d8caf1ada8 (AtLocation emergency_ward hospital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "empire state building is located at new york city", "pln": ["(: cnet_atlocation_f3049017ee (AtLocation empire_state_building new_york_city) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "employee is located at company", "pln": ["(: cnet_atlocation_5a690b3871 (AtLocation employee company) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "employee is located at office", "pln": ["(: cnet_atlocation_5cb0ce2729 (AtLocation employee office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "empty can is located at waste bin", "pln": ["(: cnet_atlocation_ebdac2f705 (AtLocation empty_can waste_bin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "empty space is located at bed", "pln": ["(: cnet_atlocation_1451eb109b (AtLocation empty_space bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "end is located at end of line", "pln": ["(: cnet_atlocation_4b33b323fc (AtLocation end end_of_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "enemy is located at war", "pln": ["(: cnet_atlocation_ad7343a8b3 (AtLocation enemy war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "engine is located at plane", "pln": ["(: cnet_atlocation_bcf18a8057 (AtLocation engine plane) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "english channel is located at england", "pln": ["(: cnet_atlocation_0b0cf0e808 (AtLocation english_channel england) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "english channel is located at northern hemisphere", "pln": ["(: cnet_atlocation_f4838cc134 (AtLocation english_channel northern_hemisphere) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "entertainer is located at show", "pln": ["(: cnet_atlocation_f6d3964c0c (AtLocation entertainer show) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "entertainment is located at show", "pln": ["(: cnet_atlocation_520a99338d (AtLocation entertainment show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "entertainment and food is located at carnival", "pln": ["(: cnet_atlocation_c43c74d804 (AtLocation entertainment_and_food carnival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "entranceway is located at building", "pln": ["(: cnet_atlocation_ef9e38f86c (AtLocation entranceway building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "entree is located at dinner", "pln": ["(: cnet_atlocation_5215a4f0ef (AtLocation entree dinner) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "entree is located at plate", "pln": ["(: cnet_atlocation_bda5899962 (AtLocation entree plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "entryway is located at office building", "pln": ["(: cnet_atlocation_f8131d0ca0 (AtLocation entryway office_building) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "envelope is located at drawer", "pln": ["(: cnet_atlocation_ff4a4da273 (AtLocation envelope drawer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "equality for everyone is located at america", "pln": ["(: cnet_atlocation_40288d30f8 (AtLocation equality_for_everyone america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "eraser is located at desk", "pln": ["(: cnet_atlocation_65e2a53056 (AtLocation eraser desk) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "eraser is located at pencil", "pln": ["(: cnet_atlocation_0269a591f7 (AtLocation eraser pencil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "eraser is located at pencil box", "pln": ["(: cnet_atlocation_5ada505b03 (AtLocation eraser pencil_box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "eraser is located at school", "pln": ["(: cnet_atlocation_933729b11b (AtLocation eraser school) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "eraser holder is located at office", "pln": ["(: cnet_atlocation_6bf5dbee6b (AtLocation eraser_holder office) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "escalator is located at department store", "pln": ["(: cnet_atlocation_2f6a630992 (AtLocation escalator department_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "escalator is located at mall", "pln": ["(: cnet_atlocation_04971abe6d (AtLocation escalator mall) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "escalator is located at store", "pln": ["(: cnet_atlocation_3b86ed33a2 (AtLocation escalator store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "everything is located at universe", "pln": ["(: cnet_atlocation_87c9f39572 (AtLocation everything universe) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "evidence of meteor hit is located at surface of earth", "pln": ["(: cnet_atlocation_7b440090e4 (AtLocation evidence_of_meteor_hit surface_of_earth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "exam table is located at classroom", "pln": ["(: cnet_atlocation_2d850bb33b (AtLocation exam_table classroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "exam table is located at doctor s office", "pln": ["(: cnet_atlocation_e7830488c6 (AtLocation exam_table doctor_s_office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "examination table is located at doctor s office", "pln": ["(: cnet_atlocation_d03ef019f9 (AtLocation examination_table doctor_s_office) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "examination table is located at doctor", "pln": ["(: cnet_atlocation_1706198b3b (AtLocation examination_table doctor) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "exit turnstile is located at subway", "pln": ["(: cnet_atlocation_c742ff1ff3 (AtLocation exit_turnstile subway) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "exotic animal is located at zoo", "pln": ["(: cnet_atlocation_6e2d30d3a6 (AtLocation exotic_animal zoo) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "experiment is located at laboratory", "pln": ["(: cnet_atlocation_3666ad3718 (AtLocation experiment laboratory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "expert is located at field", "pln": ["(: cnet_atlocation_8d0f3e63ba (AtLocation expert field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "explosive is located at bomb", "pln": ["(: cnet_atlocation_67480d8d86 (AtLocation explosive bomb) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "family pictures is located at friend s house", "pln": ["(: cnet_atlocation_1f338bc0ed (AtLocation family_pictures friend_s_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "explosive is located at construction site", "pln": ["(: cnet_atlocation_aea9da6d58 (AtLocation explosive construction_site) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "expressway is located at city", "pln": ["(: cnet_atlocation_39fb411d00 (AtLocation expressway city) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "expressway is located at large city", "pln": ["(: cnet_atlocation_dc5ff0ab34 (AtLocation expressway large_city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "eye is located at eye socket", "pln": ["(: cnet_atlocation_58cc7e3f51 (AtLocation eye eye_socket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "eye is located at face", "pln": ["(: cnet_atlocation_2e41c770b8 (AtLocation eye face) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "eyeglass is located at case", "pln": ["(: cnet_atlocation_296cc6c9b1 (AtLocation eyeglass case) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "eyeglass case is located at drawer", "pln": ["(: cnet_atlocation_2f59f42898 (AtLocation eyeglass_case drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "eyeglass case is located at pocket", "pln": ["(: cnet_atlocation_d9ac2da9ca (AtLocation eyeglass_case pocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "eyeglass case is located at shirt pocket", "pln": ["(: cnet_atlocation_45a8b946dc (AtLocation eyeglass_case shirt_pocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fabric is located at clothe store", "pln": ["(: cnet_atlocation_6b252d682b (AtLocation fabric clothe_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fabric is located at fabric store", "pln": ["(: cnet_atlocation_6209f36ac0 (AtLocation fabric fabric_store) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "factory is located at city", "pln": ["(: cnet_atlocation_6037cdf173 (AtLocation factory city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "factory is located at industrial area", "pln": ["(: cnet_atlocation_e1c2877461 (AtLocation factory industrial_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "faith is located at church", "pln": ["(: cnet_atlocation_371c5e1268 (AtLocation faith church) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fallen leave is located at forest", "pln": ["(: cnet_atlocation_3323fd43d4 (AtLocation fallen_leave forest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fallen leave is located at tree", "pln": ["(: cnet_atlocation_9659c225ef (AtLocation fallen_leave tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "family is located at park", "pln": ["(: cnet_atlocation_c78cb4f261 (AtLocation family park) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "family is located at supermarket", "pln": ["(: cnet_atlocation_833064a8cf (AtLocation family supermarket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "family is located at house", "pln": ["(: cnet_atlocation_7168b4ee00 (AtLocation family house) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "family is located at relative house", "pln": ["(: cnet_atlocation_a308056a44 (AtLocation family relative_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "family picture is located at friend s house", "pln": ["(: cnet_atlocation_a19e63f978 (AtLocation family_picture friend_s_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fan is located at football stadium", "pln": ["(: cnet_atlocation_4e0a71984d (AtLocation fan football_stadium) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fan is located at hockey game", "pln": ["(: cnet_atlocation_5dd02b0bfb (AtLocation fan hockey_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fan is located at room", "pln": ["(: cnet_atlocation_bc2ce4dd4f (AtLocation fan room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "fan is located at stadium", "pln": ["(: cnet_atlocation_30214edf85 (AtLocation fan stadium) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fancy wall calendar is located at bookstore", "pln": ["(: cnet_atlocation_707b27f26c (AtLocation fancy_wall_calendar bookstore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fan is located at soccer game", "pln": ["(: cnet_atlocation_3dc8d88e0a (AtLocation fan soccer_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fan is located at sporting event", "pln": ["(: cnet_atlocation_c3dcaf3be2 (AtLocation fan sporting_event) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "farm is located at countryside", "pln": ["(: cnet_atlocation_d66d1d39f4 (AtLocation farm countryside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "farm animal is located at fair", "pln": ["(: cnet_atlocation_c6083ff7f0 (AtLocation farm_animal fair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "farm animal is located at countryside", "pln": ["(: cnet_atlocation_4ddf086276 (AtLocation farm_animal countryside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "farmer is located at fairground", "pln": ["(: cnet_atlocation_d479d4e568 (AtLocation farmer fairground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "farmhouse is located at farm", "pln": ["(: cnet_atlocation_d20d73e47c (AtLocation farmhouse farm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "farmhouse is located at farming community", "pln": ["(: cnet_atlocation_1d58993ef0 (AtLocation farmhouse farming_community) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "farmhouse is located at rural area", "pln": ["(: cnet_atlocation_250fe9a6f9 (AtLocation farmhouse rural_area) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "farmland is located at country", "pln": ["(: cnet_atlocation_16b73fafb0 (AtLocation farmland country) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "farmland is located at countryside", "pln": ["(: cnet_atlocation_7dbc975f85 (AtLocation farmland countryside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "farmland is located at midwest", "pln": ["(: cnet_atlocation_03d39fe2d5 (AtLocation farmland midwest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "farm is located at country", "pln": ["(: cnet_atlocation_dd7866725a (AtLocation farm country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fast food is located at bowling alley", "pln": ["(: cnet_atlocation_d25223abf2 (AtLocation fast_food bowling_alley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fast food is located at fast food restaurant", "pln": ["(: cnet_atlocation_83ab4c0176 (AtLocation fast_food fast_food_restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "fast food chain is located at beijing", "pln": ["(: cnet_atlocation_93af992a04 (AtLocation fast_food_chain beijing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fast food chain is located at city", "pln": ["(: cnet_atlocation_2ee24fcaa9 (AtLocation fast_food_chain city) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fast food restaurant is located at big city", "pln": ["(: cnet_atlocation_ed7d1ae288 (AtLocation fast_food_restaurant big_city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fast food restaurant counter is located at fast food restaurant", "pln": ["(: cnet_atlocation_8d6a06deb9 (AtLocation fast_food_restaurant_counter fast_food_restaurant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fastener binder is located at hardware store", "pln": ["(: cnet_atlocation_e05230d4a2 (AtLocation fastener_binder hardware_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fat lady is located at opera", "pln": ["(: cnet_atlocation_367aa7f7cd (AtLocation fat_lady opera) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fat singing lady is located at opera", "pln": ["(: cnet_atlocation_e645ebbcea (AtLocation fat_singing_lady opera) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "father s pistol is located at friend s house", "pln": ["(: cnet_atlocation_2f091a09b0 (AtLocation father_s_pistol friend_s_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "faucet is located at bathroom", "pln": ["(: cnet_atlocation_751f27c71e (AtLocation faucet bathroom) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "faucet is located at restroom", "pln": ["(: cnet_atlocation_a24e2b3b18 (AtLocation faucet restroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "faucet is located at sink", "pln": ["(: cnet_atlocation_797802328c (AtLocation faucet sink) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "faucet overflow is located at bathroom", "pln": ["(: cnet_atlocation_bedfd89e72 (AtLocation faucet_overflow bathroom) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fax machine is located at office", "pln": ["(: cnet_atlocation_589a8cb5dd (AtLocation fax_machine office) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "feather is located at bird", "pln": ["(: cnet_atlocation_db9a447db6 (AtLocation feather bird) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "feather is located at cap", "pln": ["(: cnet_atlocation_09bbd84235 (AtLocation feather cap) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "feather is located at pillow", "pln": ["(: cnet_atlocation_d55db35eed (AtLocation feather pillow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "feet is located at desk", "pln": ["(: cnet_atlocation_dc123ec9ae (AtLocation feet desk) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "feet is located at floor", "pln": ["(: cnet_atlocation_158ac5b40b (AtLocation feet floor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "feet is located at shoe", "pln": ["(: cnet_atlocation_a12566eb16 (AtLocation feet shoe) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "feet is located at table", "pln": ["(: cnet_atlocation_daceb41bcf (AtLocation feet table) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ferret is located at field", "pln": ["(: cnet_atlocation_26176d7819 (AtLocation ferret field) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ferret is located at great britain", "pln": ["(: cnet_atlocation_08a35c643a (AtLocation ferret great_britain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ferret is located at home", "pln": ["(: cnet_atlocation_b633191891 (AtLocation ferret home) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "ferret is located at hutch", "pln": ["(: cnet_atlocation_2c7272f845 (AtLocation ferret hutch) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ferret is located at outdoor", "pln": ["(: cnet_atlocation_ca5155174f (AtLocation ferret outdoor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ferret is located at own home", "pln": ["(: cnet_atlocation_4fdcf20f3a (AtLocation ferret own_home) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ferret is located at pet store", "pln": ["(: cnet_atlocation_1561a53fb4 (AtLocation ferret pet_store) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ferret is located at petstore", "pln": ["(: cnet_atlocation_fcaa397f9d (AtLocation ferret petstore) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "ferret is located at trouser", "pln": ["(: cnet_atlocation_28eb716d6f (AtLocation ferret trouser) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ferret is located at woody landscape", "pln": ["(: cnet_atlocation_12d557da18 (AtLocation ferret woody_landscape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "ferris wheel is located at carnival", "pln": ["(: cnet_atlocation_bfda0b8bca (AtLocation ferris_wheel carnival) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "fiction and non fiction books is located at library", "pln": ["(: cnet_atlocation_598cc73f51 (AtLocation fiction_and_non_fiction_books library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ferris wheel is located at fairground", "pln": ["(: cnet_atlocation_7e3543482d (AtLocation ferris_wheel fairground) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ferry is located at body of water", "pln": ["(: cnet_atlocation_e5568c3641 (AtLocation ferry body_of_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fiction and non fiction book is located at library", "pln": ["(: cnet_atlocation_f43425495e (AtLocation fiction_and_non_fiction_book library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ficus is located at arboretum", "pln": ["(: cnet_atlocation_9028117b3a (AtLocation ficus arboretum) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ficus is located at book", "pln": ["(: cnet_atlocation_1cecaaa17d (AtLocation ficus book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ficus is located at dirt", "pln": ["(: cnet_atlocation_eb9db08c13 (AtLocation ficus dirt) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ficus is located at field", "pln": ["(: cnet_atlocation_2df7707b51 (AtLocation ficus field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "ficus is located at flower pot", "pln": ["(: cnet_atlocation_783994aa48 (AtLocation ficus flower_pot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "ficus is located at forest", "pln": ["(: cnet_atlocation_3ce3dd80c1 (AtLocation ficus forest) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ficus is located at garden nursery", "pln": ["(: cnet_atlocation_20d95722c7 (AtLocation ficus garden_nursery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ficus is located at garden store", "pln": ["(: cnet_atlocation_98083ba982 (AtLocation ficus garden_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ficus is located at gardening section", "pln": ["(: cnet_atlocation_bfcc98c7ea (AtLocation ficus gardening_section) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ficus is located at green house", "pln": ["(: cnet_atlocation_438df791b1 (AtLocation ficus green_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "ficus is located at ground", "pln": ["(: cnet_atlocation_b8d9290ca9 (AtLocation ficus ground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ficus is located at large pot", "pln": ["(: cnet_atlocation_adfa21cfcf (AtLocation ficus large_pot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ficus is located at lobby", "pln": ["(: cnet_atlocation_c4c9b119c3 (AtLocation ficus lobby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ficus is located at mall", "pln": ["(: cnet_atlocation_8f0b20f481 (AtLocation ficus mall) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ficus is located at nursery", "pln": ["(: cnet_atlocation_821cb8d4b2 (AtLocation ficus nursery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ficus is located at office", "pln": ["(: cnet_atlocation_f33f28950d (AtLocation ficus office) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "ficus is located at park", "pln": ["(: cnet_atlocation_c691f077b5 (AtLocation ficus park) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ficus is located at plant store", "pln": ["(: cnet_atlocation_65c9a85ac5 (AtLocation ficus plant_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ficus is located at planter", "pln": ["(: cnet_atlocation_1e0a1dfc1d (AtLocation ficus planter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "ficus is located at pot", "pln": ["(: cnet_atlocation_546163ef5a (AtLocation ficus pot) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ficus is located at rainforest", "pln": ["(: cnet_atlocation_02d8788044 (AtLocation ficus rainforest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ficus is located at tropical forest", "pln": ["(: cnet_atlocation_5177d3978e (AtLocation ficus tropical_forest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ficus is located at yard", "pln": ["(: cnet_atlocation_fc92edc837 (AtLocation ficus yard) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fiddle is located at music store", "pln": ["(: cnet_atlocation_65eeb15303 (AtLocation fiddle music_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "fiddler is located at roof", "pln": ["(: cnet_atlocation_6d772c9a7f (AtLocation fiddler roof) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "field is located at country", "pln": ["(: cnet_atlocation_7f102a131e (AtLocation field country) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "field is located at countryside", "pln": ["(: cnet_atlocation_b578c5e801 (AtLocation field countryside) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "field is located at meadow", "pln": ["(: cnet_atlocation_95ae97b0fd (AtLocation field meadow) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fight is located at hockey game", "pln": ["(: cnet_atlocation_5470ed3490 (AtLocation fight hockey_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "file is located at computer", "pln": ["(: cnet_atlocation_664b3ae857 (AtLocation file computer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "file is located at drawer", "pln": ["(: cnet_atlocation_860c40479a (AtLocation file drawer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "file is located at filing cabinet", "pln": ["(: cnet_atlocation_1011739891 (AtLocation file filing_cabinet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "file is located at office", "pln": ["(: cnet_atlocation_097c8f2575 (AtLocation file office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "file folder is located at cabinet", "pln": ["(: cnet_atlocation_75bd31b04f (AtLocation file_folder cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "file is located at desk", "pln": ["(: cnet_atlocation_2ed7821fff (AtLocation file desk) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "filing cabinet is located at office", "pln": ["(: cnet_atlocation_cb9d43d9e4 (AtLocation filing_cabinet office) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "filling is located at mouth", "pln": ["(: cnet_atlocation_59835340b7 (AtLocation filling mouth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "film is located at movie", "pln": ["(: cnet_atlocation_baac190124 (AtLocation film movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "finger is located at glove", "pln": ["(: cnet_atlocation_538110be64 (AtLocation finger glove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "finger is located at hand", "pln": ["(: cnet_atlocation_9555194410 (AtLocation finger hand) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fingernail is located at finger", "pln": ["(: cnet_atlocation_c79fad7f48 (AtLocation fingernail finger) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fingerprint is located at finger", "pln": ["(: cnet_atlocation_286554daf3 (AtLocation fingerprint finger) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fingerprint is located at fridge", "pln": ["(: cnet_atlocation_443133a0a1 (AtLocation fingerprint fridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fire is located at fireplace", "pln": ["(: cnet_atlocation_d144d0b435 (AtLocation fire fireplace) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fire is located at forest", "pln": ["(: cnet_atlocation_f40f4a0ab6 (AtLocation fire forest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fire extinguisher is located at building", "pln": ["(: cnet_atlocation_00e41e4674 (AtLocation fire_extinguisher building) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fire extinguisher is located at house", "pln": ["(: cnet_atlocation_7082672dbc (AtLocation fire_extinguisher house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fireplace is located at cabin", "pln": ["(: cnet_atlocation_3c82fadc58 (AtLocation fireplace cabin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fireplace is located at home", "pln": ["(: cnet_atlocation_ede611285c (AtLocation fireplace home) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fireplace is located at living room", "pln": ["(: cnet_atlocation_a7f04d856a (AtLocation fireplace living_room) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "first aid kit is located at backpack", "pln": ["(: cnet_atlocation_5da8d66e2f (AtLocation first_aid_kit backpack) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "first class airline seat is located at 747", "pln": ["(: cnet_atlocation_9594b52254 (AtLocation first_class_airline_seat 747) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "first class airline seat is located at airplane", "pln": ["(: cnet_atlocation_d4f4a0e694 (AtLocation first_class_airline_seat airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "first class airline seat is located at jet", "pln": ["(: cnet_atlocation_7ee5942193 (AtLocation first_class_airline_seat jet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "first violin is located at orchestra", "pln": ["(: cnet_atlocation_75fe31ed75 (AtLocation first_violin orchestra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "fish is located at aquarium", "pln": ["(: cnet_atlocation_9b8d735ecb (AtLocation fish aquarium) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fish is located at boat", "pln": ["(: cnet_atlocation_44d328820a (AtLocation fish boat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "fish is located at bottom of sea", "pln": ["(: cnet_atlocation_8777b8f072 (AtLocation fish bottom_of_sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fish is located at end of line", "pln": ["(: cnet_atlocation_10e5aed888 (AtLocation fish end_of_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fish is located at lake", "pln": ["(: cnet_atlocation_8f3c3ede5c (AtLocation fish lake) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fish is located at market", "pln": ["(: cnet_atlocation_9cbf62cd58 (AtLocation fish market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fish is located at ocean", "pln": ["(: cnet_atlocation_ca7df8d2b0 (AtLocation fish ocean) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fish is located at pond", "pln": ["(: cnet_atlocation_6b5a72580a (AtLocation fish pond) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fish is located at river", "pln": ["(: cnet_atlocation_d2d2a19d78 (AtLocation fish river) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fish is located at stream", "pln": ["(: cnet_atlocation_1185e383ca (AtLocation fish stream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fish is located at tank", "pln": ["(: cnet_atlocation_7113db0648 (AtLocation fish tank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fish is located at water", "pln": ["(: cnet_atlocation_dfaf3f825d (AtLocation fish water) (STV 1.0 0.9829))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fish tank is located at neighbor s house", "pln": ["(: cnet_atlocation_f9d5636152 (AtLocation fish_tank neighbor_s_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fisherman is located at boat", "pln": ["(: cnet_atlocation_812611e92c (AtLocation fisherman boat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fitting room is located at department store", "pln": ["(: cnet_atlocation_8e5f5e83fe (AtLocation fitting_room department_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "five and dime is located at strip mall", "pln": ["(: cnet_atlocation_36d61db37e (AtLocation five_and_dime strip_mall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "five and ten store is located at very small town", "pln": ["(: cnet_atlocation_2e508d8995 (AtLocation five_and_ten_store very_small_town) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "flag is located at country", "pln": ["(: cnet_atlocation_bd7ec2cb15 (AtLocation flag country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "flare gun is located at boat", "pln": ["(: cnet_atlocation_dc659aa05b (AtLocation flare_gun boat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "flashing light is located at casino", "pln": ["(: cnet_atlocation_94880a50ad (AtLocation flashing_light casino) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "flashlight is located at backpack", "pln": ["(: cnet_atlocation_905be0e25c (AtLocation flashlight backpack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "flask is located at chemistry lab", "pln": ["(: cnet_atlocation_90fcdf5b85 (AtLocation flask chemistry_lab) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "flight attendants is located at plane", "pln": ["(: cnet_atlocation_98c7154e12 (AtLocation flight_attendants plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "flask is located at pocket", "pln": ["(: cnet_atlocation_3cb2389491 (AtLocation flask pocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "flat is located at city", "pln": ["(: cnet_atlocation_720486f177 (AtLocation flat city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "flat is located at london", "pln": ["(: cnet_atlocation_eabfc7674a (AtLocation flat london) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "flea is located at cat", "pln": ["(: cnet_atlocation_c85460078b (AtLocation flea cat) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "flea is located at dog", "pln": ["(: cnet_atlocation_690a971ca3 (AtLocation flea dog) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "flea is located at rug", "pln": ["(: cnet_atlocation_abaebc13ff (AtLocation flea rug) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "flight attendant is located at plane", "pln": ["(: cnet_atlocation_d00a649af5 (AtLocation flight_attendant plane) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "flight bag is located at aeroplane", "pln": ["(: cnet_atlocation_acce797726 (AtLocation flight_bag aeroplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "flight bag is located at airport", "pln": ["(: cnet_atlocation_0035508cc4 (AtLocation flight_bag airport) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "floor is located at bed", "pln": ["(: cnet_atlocation_dfb223dfba (AtLocation floor bed) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "floor is located at carpet", "pln": ["(: cnet_atlocation_1e34dbc759 (AtLocation floor carpet) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "floor is located at closet", "pln": ["(: cnet_atlocation_0e99886f8e (AtLocation floor closet) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "floor is located at desk", "pln": ["(: cnet_atlocation_3d08c480f1 (AtLocation floor desk) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "floor is located at house", "pln": ["(: cnet_atlocation_a6d94909f9 (AtLocation floor house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "floor is located at room", "pln": ["(: cnet_atlocation_c0d81eb1c7 (AtLocation floor room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "floor is located at table", "pln": ["(: cnet_atlocation_2a99b9a19f (AtLocation floor table) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "floorboard is located at closet", "pln": ["(: cnet_atlocation_1ced80f781 (AtLocation floorboard closet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "flooring is located at house", "pln": ["(: cnet_atlocation_a500c9f1d9 (AtLocation flooring house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "flotation gear is located at boat", "pln": ["(: cnet_atlocation_5193984c2b (AtLocation flotation_gear boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "flower girls is located at wedding", "pln": ["(: cnet_atlocation_cb8664571f (AtLocation flower_girls wedding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "fluoride mouthwash is located at most drug stores", "pln": ["(: cnet_atlocation_41434acc5b (AtLocation fluoride_mouthwash most_drug_stores) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "flour is located at cupboard", "pln": ["(: cnet_atlocation_09908363d5 (AtLocation flour cupboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "flour is located at pantry", "pln": ["(: cnet_atlocation_74c8271207 (AtLocation flour pantry) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "flouride is located at water", "pln": ["(: cnet_atlocation_e39fdf99b1 (AtLocation flouride water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "flower is located at flower garden", "pln": ["(: cnet_atlocation_130ff60b57 (AtLocation flower flower_garden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "flower is located at park", "pln": ["(: cnet_atlocation_092cb54a9e (AtLocation flower park) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "flower is located at vase", "pln": ["(: cnet_atlocation_ab0e437ce1 (AtLocation flower vase) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "flower is located at windowsill", "pln": ["(: cnet_atlocation_345a1d968d (AtLocation flower windowsill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "flower girl is located at wedding", "pln": ["(: cnet_atlocation_876ee9f885 (AtLocation flower_girl wedding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "flower pot is located at porch", "pln": ["(: cnet_atlocation_cb0faa885a (AtLocation flower_pot porch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "flowerpot is located at windowsill", "pln": ["(: cnet_atlocation_6ca5f0b9ab (AtLocation flowerpot windowsill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "flower is located at countryside", "pln": ["(: cnet_atlocation_c8b12be149 (AtLocation flower countryside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "flower is located at friend s wedding", "pln": ["(: cnet_atlocation_63a7536710 (AtLocation flower friend_s_wedding) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "flower is located at table", "pln": ["(: cnet_atlocation_f4c58f7ed1 (AtLocation flower table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "flower is located at wedding", "pln": ["(: cnet_atlocation_daabef5f77 (AtLocation flower wedding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fluid is located at container", "pln": ["(: cnet_atlocation_63405d3594 (AtLocation fluid container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fluoride mouthwash is located at most drug store", "pln": ["(: cnet_atlocation_0d9c819aa6 (AtLocation fluoride_mouthwash most_drug_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fluoride toothpaste is located at grocery store", "pln": ["(: cnet_atlocation_a3b82eb9e1 (AtLocation fluoride_toothpaste grocery_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "fluoride toothpaste is located at tube", "pln": ["(: cnet_atlocation_540167639b (AtLocation fluoride_toothpaste tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "flute is located at musical instrument store", "pln": ["(: cnet_atlocation_27155d52ef (AtLocation flute musical_instrument_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "flute is located at orchestra", "pln": ["(: cnet_atlocation_d2dea04e19 (AtLocation flute orchestra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fog is located at valley", "pln": ["(: cnet_atlocation_da0a1144c5 (AtLocation fog valley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "folded clothe is located at suitcase", "pln": ["(: cnet_atlocation_4da3ec2557 (AtLocation folded_clothe suitcase) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "folder is located at file cabinet", "pln": ["(: cnet_atlocation_08df0f4187 (AtLocation folder file_cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "folder is located at filing cabinet", "pln": ["(: cnet_atlocation_14464ae0d7 (AtLocation folder filing_cabinet) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "folder is located at shelf", "pln": ["(: cnet_atlocation_af27f0fc8a (AtLocation folder shelf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "folding shower door is located at bathroom", "pln": ["(: cnet_atlocation_58b7d6cc77 (AtLocation folding_shower_door bathroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "folding shower door is located at hardware store", "pln": ["(: cnet_atlocation_38e3b8aba5 (AtLocation folding_shower_door hardware_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "font is located at church", "pln": ["(: cnet_atlocation_52e6c661c7 (AtLocation font church) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "food is located at backpack", "pln": ["(: cnet_atlocation_e97b1126c4 (AtLocation food backpack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "food is located at can", "pln": ["(: cnet_atlocation_751b7adf15 (AtLocation food can) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "food is located at container", "pln": ["(: cnet_atlocation_513383de2a (AtLocation food container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "food is located at cupboard", "pln": ["(: cnet_atlocation_7e6022756c (AtLocation food cupboard) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "food is located at fair", "pln": ["(: cnet_atlocation_e5a4993c7d (AtLocation food fair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "food is located at fast food restaurant", "pln": ["(: cnet_atlocation_6a8a08d337 (AtLocation food fast_food_restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "food is located at freezer", "pln": ["(: cnet_atlocation_04e4f0b21c (AtLocation food freezer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "food is located at fridge", "pln": ["(: cnet_atlocation_307483726e (AtLocation food fridge) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "food is located at home", "pln": ["(: cnet_atlocation_22de194320 (AtLocation food home) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "food is located at house", "pln": ["(: cnet_atlocation_68a5b941b7 (AtLocation food house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "food is located at jar", "pln": ["(: cnet_atlocation_8e36b2792a (AtLocation food jar) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "food is located at kitchen", "pln": ["(: cnet_atlocation_670d58c3b5 (AtLocation food kitchen) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "food is located at market", "pln": ["(: cnet_atlocation_00007a9283 (AtLocation food market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "food is located at mouth", "pln": ["(: cnet_atlocation_f66424a7eb (AtLocation food mouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "food is located at oven", "pln": ["(: cnet_atlocation_631e997c23 (AtLocation food oven) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "food is located at pantry", "pln": ["(: cnet_atlocation_a1ceb0d96d (AtLocation food pantry) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "food is located at plate", "pln": ["(: cnet_atlocation_0e3706d374 (AtLocation food plate) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "food is located at refrigerator", "pln": ["(: cnet_atlocation_702e9d19df (AtLocation food refrigerator) (STV 1.0 0.9763))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "food is located at resturant", "pln": ["(: cnet_atlocation_057f36ec89 (AtLocation food resturant) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "food is located at school", "pln": ["(: cnet_atlocation_ed4b41ecc0 (AtLocation food school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "food is located at shelf", "pln": ["(: cnet_atlocation_b077ba6371 (AtLocation food shelf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "food is located at shop", "pln": ["(: cnet_atlocation_a6ebdd4353 (AtLocation food shop) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "food is located at stomach", "pln": ["(: cnet_atlocation_35106817e4 (AtLocation food stomach) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "food is located at store", "pln": ["(: cnet_atlocation_96356b44d6 (AtLocation food store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "food is located at supermarket", "pln": ["(: cnet_atlocation_9c5ffb268d (AtLocation food supermarket) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "food is located at table", "pln": ["(: cnet_atlocation_06e700ba9e (AtLocation food table) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "food baking is located at oven", "pln": ["(: cnet_atlocation_c0d1032f77 (AtLocation food_baking oven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "food being cooked is located at oven", "pln": ["(: cnet_atlocation_3e76f34de5 (AtLocation food_being_cooked oven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "food can is located at cabinet", "pln": ["(: cnet_atlocation_88ecbc45cd (AtLocation food_can cabinet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "food can is located at grocery store", "pln": ["(: cnet_atlocation_5091ec0adc (AtLocation food_can grocery_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "food can is located at supermarket", "pln": ["(: cnet_atlocation_f71a57b61d (AtLocation food_can supermarket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "food court is located at mall", "pln": ["(: cnet_atlocation_0acb0949c6 (AtLocation food_court mall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "food store is located at shopping center", "pln": ["(: cnet_atlocation_750fb2884e (AtLocation food_store shopping_center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "foot is located at desk", "pln": ["(: cnet_atlocation_623178b5f2 (AtLocation foot desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "foot is located at shoe", "pln": ["(: cnet_atlocation_b567b63711 (AtLocation foot shoe) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "foot is located at sock", "pln": ["(: cnet_atlocation_adc9536922 (AtLocation foot sock) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "foot is located at table", "pln": ["(: cnet_atlocation_53cdb275ee (AtLocation foot table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "foot rest is located at desk", "pln": ["(: cnet_atlocation_edc3eae560 (AtLocation foot_rest desk) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "football field is located at high school", "pln": ["(: cnet_atlocation_9838f50e1b (AtLocation football_field high_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "footprint is located at moon", "pln": ["(: cnet_atlocation_a66f1d342b (AtLocation footprint moon) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "footprint is located at rug", "pln": ["(: cnet_atlocation_9c4d01522e (AtLocation footprint rug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "footprint is located at suface of moon", "pln": ["(: cnet_atlocation_cf6f99761f (AtLocation footprint suface_of_moon) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "forest is located at countryside", "pln": ["(: cnet_atlocation_c56d0ecfd1 (AtLocation forest countryside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "forest is located at earth", "pln": ["(: cnet_atlocation_33ab067c9d (AtLocation forest earth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "forgiveness is located at confession", "pln": ["(: cnet_atlocation_122efd7541 (AtLocation forgiveness confession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fork is located at drawer", "pln": ["(: cnet_atlocation_779cb748a1 (AtLocation fork drawer) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fork is located at kitchen", "pln": ["(: cnet_atlocation_b8cc2b25f0 (AtLocation fork kitchen) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fork is located at kitchen drawer", "pln": ["(: cnet_atlocation_c02ad1355b (AtLocation fork kitchen_drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fork is located at plane", "pln": ["(: cnet_atlocation_cb9553e91d (AtLocation fork plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "fork is located at plate", "pln": ["(: cnet_atlocation_0020a47811 (AtLocation fork plate) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fork is located at road", "pln": ["(: cnet_atlocation_a89b75bde3 (AtLocation fork road) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fork is located at table", "pln": ["(: cnet_atlocation_012b88735e (AtLocation fork table) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fork is located at cutlery drawer", "pln": ["(: cnet_atlocation_427f585dce (AtLocation fork cutlery_drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "form is located at desk", "pln": ["(: cnet_atlocation_7322e4670f (AtLocation form desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fortune is located at bank", "pln": ["(: cnet_atlocation_6108562a6b (AtLocation fortune bank) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fortune is located at cookie", "pln": ["(: cnet_atlocation_8cbb50b0a3 (AtLocation fortune cookie) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "forzen meat is located at freezer", "pln": ["(: cnet_atlocation_3e7b84aacd (AtLocation forzen_meat freezer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "foundation is located at closet", "pln": ["(: cnet_atlocation_55c8ccc0db (AtLocation foundation closet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fountain is located at rome", "pln": ["(: cnet_atlocation_53152da763 (AtLocation fountain rome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fountain pen is located at desk", "pln": ["(: cnet_atlocation_b580742a26 (AtLocation fountain_pen desk) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fountain pen is located at pocket", "pln": ["(: cnet_atlocation_a852bb2d7d (AtLocation fountain_pen pocket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fox is located at arctic", "pln": ["(: cnet_atlocation_88152a1fee (AtLocation fox arctic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fox is located at box", "pln": ["(: cnet_atlocation_18165f8daf (AtLocation fox box) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fox is located at burrow", "pln": ["(: cnet_atlocation_596fc25cbe (AtLocation fox burrow) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fox is located at cage", "pln": ["(: cnet_atlocation_9ffbb1abe1 (AtLocation fox cage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fox is located at england", "pln": ["(: cnet_atlocation_1885a7f724 (AtLocation fox england) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fox is located at english hunt", "pln": ["(: cnet_atlocation_7f73b460c8 (AtLocation fox english_hunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fox is located at fox hole", "pln": ["(: cnet_atlocation_c9437dee5e (AtLocation fox fox_hole) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fox is located at fox hunt", "pln": ["(: cnet_atlocation_d84bd3f5ce (AtLocation fox fox_hunt) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fox is located at foxhunt", "pln": ["(: cnet_atlocation_76e823af5d (AtLocation fox foxhunt) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fox is located at hen house", "pln": ["(: cnet_atlocation_5ef94fe6d4 (AtLocation fox hen_house) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fox is located at meadow", "pln": ["(: cnet_atlocation_db2ff54277 (AtLocation fox meadow) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fox is located at mountain", "pln": ["(: cnet_atlocation_2d1040fbf5 (AtLocation fox mountain) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fox is located at rural area", "pln": ["(: cnet_atlocation_4e5ec3c52d (AtLocation fox rural_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fox is located at stump of tree", "pln": ["(: cnet_atlocation_08c81f68c2 (AtLocation fox stump_of_tree) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "fox is located at wild", "pln": ["(: cnet_atlocation_38de7cbaa1 (AtLocation fox wild) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fox is located at wooded area", "pln": ["(: cnet_atlocation_15e4a4c03c (AtLocation fox wooded_area) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fox in is located at fox hunt", "pln": ["(: cnet_atlocation_bae557a62d (AtLocation fox_in fox_hunt) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "foyer is located at building", "pln": ["(: cnet_atlocation_cfa6133dd5 (AtLocation foyer building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "foyer is located at home", "pln": ["(: cnet_atlocation_19dae377bf (AtLocation foyer home) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "foyer is located at mansion", "pln": ["(: cnet_atlocation_42bb61a808 (AtLocation foyer mansion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "frat boy is located at fraternity house", "pln": ["(: cnet_atlocation_2316cac3ee (AtLocation frat_boy fraternity_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "free food is located at gallery opening", "pln": ["(: cnet_atlocation_d9df2269d6 (AtLocation free_food gallery_opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "freeway is located at america", "pln": ["(: cnet_atlocation_ee6fa5f097 (AtLocation freeway america) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "freezer is located at garage", "pln": ["(: cnet_atlocation_db5b866028 (AtLocation freezer garage) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "french fry is located at fast food restaurant", "pln": ["(: cnet_atlocation_53b75fee5f (AtLocation french_fry fast_food_restaurant) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "french horn is located at music store", "pln": ["(: cnet_atlocation_8cec0fff6b (AtLocation french_horn music_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "frozen peas is located at freezer", "pln": ["(: cnet_atlocation_28a0607768 (AtLocation frozen_peas freezer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "frozen vegetables is located at freezer", "pln": ["(: cnet_atlocation_7e4fde7808 (AtLocation frozen_vegetables freezer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fresh air is located at countryside", "pln": ["(: cnet_atlocation_b1590781b7 (AtLocation fresh_air countryside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fresh flower is located at farmer s market", "pln": ["(: cnet_atlocation_42c4cab971 (AtLocation fresh_flower farmer_s_market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fresh fruit and vegetable is located at grocery store", "pln": ["(: cnet_atlocation_508deead8d (AtLocation fresh_fruit_and_vegetable grocery_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fresh vegetable is located at market", "pln": ["(: cnet_atlocation_d7b307be33 (AtLocation fresh_vegetable market) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fridge is located at kitchen", "pln": ["(: cnet_atlocation_7b98cc85d8 (AtLocation fridge kitchen) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fried dough is located at carnival", "pln": ["(: cnet_atlocation_b0de64e811 (AtLocation fried_dough carnival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "friend is located at at school", "pln": ["(: cnet_atlocation_cbd25438d0 (AtLocation friend at_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "friend is located at friend s wedding", "pln": ["(: cnet_atlocation_66af8a204a (AtLocation friend friend_s_wedding) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "friend is located at me", "pln": ["(: cnet_atlocation_5fb70134be (AtLocation friend me) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "friend is located at neighbor s house", "pln": ["(: cnet_atlocation_00c3028acb (AtLocation friend neighbor_s_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "friendly grocer is located at supermarket", "pln": ["(: cnet_atlocation_8277cc64c6 (AtLocation friendly_grocer supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "friend is located at fraternity house", "pln": ["(: cnet_atlocation_1ff8205341 (AtLocation friend fraternity_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "friend is located at friend s house", "pln": ["(: cnet_atlocation_3637cf6cee (AtLocation friend friend_s_house) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "friend is located at movie", "pln": ["(: cnet_atlocation_532e17668d (AtLocation friend movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "friend is located at school", "pln": ["(: cnet_atlocation_56caadc515 (AtLocation friend school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "frisbee is located at park", "pln": ["(: cnet_atlocation_d7a49e65e0 (AtLocation frisbee park) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "frog is located at lawn", "pln": ["(: cnet_atlocation_2e8851c37b (AtLocation frog lawn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "frog is located at pond", "pln": ["(: cnet_atlocation_f7ce3887b1 (AtLocation frog pond) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "frog is located at swamp", "pln": ["(: cnet_atlocation_c17fe67041 (AtLocation frog swamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "front courtyard is located at mansion", "pln": ["(: cnet_atlocation_6a9d18b68f (AtLocation front_courtyard mansion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "front courtyard is located at suburb", "pln": ["(: cnet_atlocation_f65dc33b5f (AtLocation front_courtyard suburb) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "front desk is located at at hotel", "pln": ["(: cnet_atlocation_33c43298d6 (AtLocation front_desk at_hotel) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "front desk is located at hotel", "pln": ["(: cnet_atlocation_1dfeebdd1d (AtLocation front_desk hotel) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "front door is located at house", "pln": ["(: cnet_atlocation_24065bfdf9 (AtLocation front_door house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "front garden is located at front yard", "pln": ["(: cnet_atlocation_1e9a8fa45a (AtLocation front_garden front_yard) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "front room is located at condo", "pln": ["(: cnet_atlocation_ee7197aa37 (AtLocation front_room condo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "front room is located at modern house", "pln": ["(: cnet_atlocation_ace1f66b72 (AtLocation front_room modern_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "front yard is located at front of house", "pln": ["(: cnet_atlocation_ce98d2841b (AtLocation front_yard front_of_house) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "front yard is located at neighborhood", "pln": ["(: cnet_atlocation_d9b9b5c4e2 (AtLocation front_yard neighborhood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "frozen dinner is located at freezer", "pln": ["(: cnet_atlocation_3801d01b8b (AtLocation frozen_dinner freezer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "frozen food is located at freezer", "pln": ["(: cnet_atlocation_a19c9bdf26 (AtLocation frozen_food freezer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "frozen food is located at fridge", "pln": ["(: cnet_atlocation_dd3ad6b603 (AtLocation frozen_food fridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "frozen food is located at grocery store", "pln": ["(: cnet_atlocation_34e59fe4a4 (AtLocation frozen_food grocery_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "frozen food is located at market", "pln": ["(: cnet_atlocation_b6fcb5ec3c (AtLocation frozen_food market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "frozen food is located at supermarket", "pln": ["(: cnet_atlocation_b66bba0a14 (AtLocation frozen_food supermarket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "frozen pea is located at freezer", "pln": ["(: cnet_atlocation_0828446c69 (AtLocation frozen_pea freezer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "frozen vegetable is located at freezer", "pln": ["(: cnet_atlocation_7473b0f8bb (AtLocation frozen_vegetable freezer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "frozen veggy is located at supermarket", "pln": ["(: cnet_atlocation_7b8ae95979 (AtLocation frozen_veggy supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fruit is located at market", "pln": ["(: cnet_atlocation_180fdea3c5 (AtLocation fruit market) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fruit is located at refridgerator", "pln": ["(: cnet_atlocation_d05565ad8e (AtLocation fruit refridgerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fruit is located at tree", "pln": ["(: cnet_atlocation_03a2897d02 (AtLocation fruit tree) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "frying pan is located at kitchen cabinet", "pln": ["(: cnet_atlocation_c4ab8548ce (AtLocation frying_pan kitchen_cabinet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fuel is located at plane", "pln": ["(: cnet_atlocation_cad3a54e05 (AtLocation fuel plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fun is located at watching television", "pln": ["(: cnet_atlocation_2d616c7f73 (AtLocation fun watching_television) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at basement", "pln": ["(: cnet_atlocation_8dae8253c1 (AtLocation fungus basement) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at bathroom", "pln": ["(: cnet_atlocation_017298b5bd (AtLocation fungus bathroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at bathroom wall", "pln": ["(: cnet_atlocation_b8ed4318cf (AtLocation fungus bathroom_wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at biology laboratory", "pln": ["(: cnet_atlocation_b400109804 (AtLocation fungus biology_laboratory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at cave", "pln": ["(: cnet_atlocation_3149d98989 (AtLocation fungus cave) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at damp area", "pln": ["(: cnet_atlocation_cfe9246c36 (AtLocation fungus damp_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at damp dark area", "pln": ["(: cnet_atlocation_4ffdeb7325 (AtLocation fungus damp_dark_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at damp wood", "pln": ["(: cnet_atlocation_7c47283b9b (AtLocation fungus damp_wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at dark damp area", "pln": ["(: cnet_atlocation_a54f1c3c4e (AtLocation fungus dark_damp_area) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at dark damp place", "pln": ["(: cnet_atlocation_ed045d3753 (AtLocation fungus dark_damp_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at dark moist area", "pln": ["(: cnet_atlocation_61a59bcb51 (AtLocation fungus dark_moist_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at dark moist place", "pln": ["(: cnet_atlocation_20e4b82e7a (AtLocation fungus dark_moist_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at dead tree", "pln": ["(: cnet_atlocation_08c41c5cb3 (AtLocation fungus dead_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at decaying matter", "pln": ["(: cnet_atlocation_15312025a4 (AtLocation fungus decaying_matter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at fallen tree", "pln": ["(: cnet_atlocation_0844a2ce5a (AtLocation fungus fallen_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at fridge", "pln": ["(: cnet_atlocation_dfb076af92 (AtLocation fungus fridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at garden", "pln": ["(: cnet_atlocation_24a852bde8 (AtLocation fungus garden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at grocery store", "pln": ["(: cnet_atlocation_1ec3a54286 (AtLocation fungus grocery_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at ground", "pln": ["(: cnet_atlocation_1d24dbdf88 (AtLocation fungus ground) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at hollow log", "pln": ["(: cnet_atlocation_887cae15db (AtLocation fungus hollow_log) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at humid place", "pln": ["(: cnet_atlocation_c16654868d (AtLocation fungus humid_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at laboratory", "pln": ["(: cnet_atlocation_1ed4ae98fe (AtLocation fungus laboratory) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at locker room", "pln": ["(: cnet_atlocation_d16fb3d941 (AtLocation fungus locker_room) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at moist place", "pln": ["(: cnet_atlocation_a00aa7b6d6 (AtLocation fungus moist_place) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at mushroom garden", "pln": ["(: cnet_atlocation_7cd7b8b4ae (AtLocation fungus mushroom_garden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at mushroom pizza", "pln": ["(: cnet_atlocation_dfa7ba3ac4 (AtLocation fungus mushroom_pizza) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at old cheese", "pln": ["(: cnet_atlocation_38cdb0c948 (AtLocation fungus old_cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at old food", "pln": ["(: cnet_atlocation_ed2eba09d2 (AtLocation fungus old_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at petre dish", "pln": ["(: cnet_atlocation_ecdcdeeaa9 (AtLocation fungus petre_dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "fungus is located at place wet", "pln": ["(: cnet_atlocation_1758d43d0e (AtLocation fungus place_wet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at refridgerator", "pln": ["(: cnet_atlocation_f8c741086d (AtLocation fungus refridgerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at refrigerator", "pln": ["(: cnet_atlocation_030c3e98dd (AtLocation fungus refrigerator) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at rotten log", "pln": ["(: cnet_atlocation_940a9ea69b (AtLocation fungus rotten_log) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at rotting vegetation", "pln": ["(: cnet_atlocation_d42bd64233 (AtLocation fungus rotting_vegetation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at salad", "pln": ["(: cnet_atlocation_2675c8f2df (AtLocation fungus salad) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at shower", "pln": ["(: cnet_atlocation_20bf73095f (AtLocation fungus shower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at shower stall", "pln": ["(: cnet_atlocation_6094e78779 (AtLocation fungus shower_stall) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at soup", "pln": ["(: cnet_atlocation_6664ac0401 (AtLocation fungus soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at toenail", "pln": ["(: cnet_atlocation_f91b02cbee (AtLocation fungus toenail) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at under rock", "pln": ["(: cnet_atlocation_189982ce05 (AtLocation fungus under_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at warm damp place", "pln": ["(: cnet_atlocation_b1414d031b (AtLocation fungus warm_damp_place) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at warm moist place", "pln": ["(: cnet_atlocation_049a30ee1c (AtLocation fungus warm_moist_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "fungus is located at wet and humid place", "pln": ["(: cnet_atlocation_5d71fbb6a5 (AtLocation fungus wet_and_humid_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "fungus is located at woodland", "pln": ["(: cnet_atlocation_3db86cdaeb (AtLocation fungus woodland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "furnace is located at basement", "pln": ["(: cnet_atlocation_6c60b73607 (AtLocation furnace basement) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "furnace is located at cellar", "pln": ["(: cnet_atlocation_720ec48730 (AtLocation furnace cellar) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "furnace is located at house", "pln": ["(: cnet_atlocation_61226c8c49 (AtLocation furnace house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "furniture is located at building", "pln": ["(: cnet_atlocation_6844b31fe6 (AtLocation furniture building) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "furniture is located at friend s house", "pln": ["(: cnet_atlocation_5210f222af (AtLocation furniture friend_s_house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "furniture is located at house", "pln": ["(: cnet_atlocation_7019629e95 (AtLocation furniture house) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "furniture is located at loft", "pln": ["(: cnet_atlocation_b43ae1580d (AtLocation furniture loft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "furniture is located at room", "pln": ["(: cnet_atlocation_24a60d42d8 (AtLocation furniture room) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "furniture is located at rug", "pln": ["(: cnet_atlocation_f4541b176c (AtLocation furniture rug) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "furniture is located at store", "pln": ["(: cnet_atlocation_3f9f9be1c8 (AtLocation furniture store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "furniture dresser is located at furniture store", "pln": ["(: cnet_atlocation_909a0e54f0 (AtLocation furniture_dresser furniture_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gaggle of art critic is located at gallery opening", "pln": ["(: cnet_atlocation_14c38fc3e6 (AtLocation gaggle_of_art_critic gallery_opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "galaxy is located at outerspace", "pln": ["(: cnet_atlocation_b97396ee0b (AtLocation galaxy outerspace) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "galaxy is located at universe", "pln": ["(: cnet_atlocation_8dc398265d (AtLocation galaxy universe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "galaxy is located at space", "pln": ["(: cnet_atlocation_6bf087161c (AtLocation galaxy space) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gallery is located at london", "pln": ["(: cnet_atlocation_192877b442 (AtLocation gallery london) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gallery is located at museum", "pln": ["(: cnet_atlocation_7debd26368 (AtLocation gallery museum) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "galley is located at boat", "pln": ["(: cnet_atlocation_ab5813526d (AtLocation galley boat) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gambler is located at casino", "pln": ["(: cnet_atlocation_8fa209040a (AtLocation gambler casino) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gambler is located at race track", "pln": ["(: cnet_atlocation_c50ba02150 (AtLocation gambler race_track) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gambling is located at casino", "pln": ["(: cnet_atlocation_27fb39edf2 (AtLocation gambling casino) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "game is located at arcade", "pln": ["(: cnet_atlocation_f9310cddda (AtLocation game arcade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "game is located at casino", "pln": ["(: cnet_atlocation_2081c4afd4 (AtLocation game casino) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "game is located at gameroom", "pln": ["(: cnet_atlocation_4de999b8a0 (AtLocation game gameroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "game is located at toy store", "pln": ["(: cnet_atlocation_9c7fa1f46a (AtLocation game toy_store) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "game of chance is located at carnival", "pln": ["(: cnet_atlocation_6156a032c3 (AtLocation game_of_chance carnival) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "game show is located at television", "pln": ["(: cnet_atlocation_7e0d6a8af3 (AtLocation game_show television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "garage is located at building", "pln": ["(: cnet_atlocation_a603a6eca1 (AtLocation garage building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "garage is located at car", "pln": ["(: cnet_atlocation_73e3f37ba3 (AtLocation garage car) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "garage is located at house", "pln": ["(: cnet_atlocation_caea761001 (AtLocation garage house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "garbage is located at dump", "pln": ["(: cnet_atlocation_14bb209b4e (AtLocation garbage dump) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "garbage is located at garbage can", "pln": ["(: cnet_atlocation_2d448c8e9e (AtLocation garbage garbage_can) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "garbage is located at landfill", "pln": ["(: cnet_atlocation_b5b9973222 (AtLocation garbage landfill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "garbage is located at trash", "pln": ["(: cnet_atlocation_2068afe6c1 (AtLocation garbage trash) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "garbage is located at trashcan", "pln": ["(: cnet_atlocation_76b760438a (AtLocation garbage trashcan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "garbage is located at waste bin", "pln": ["(: cnet_atlocation_2f37fc8f53 (AtLocation garbage waste_bin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "garbage can is located at alley", "pln": ["(: cnet_atlocation_e7e80283f6 (AtLocation garbage_can alley) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "garbage can is located at garage", "pln": ["(: cnet_atlocation_6d7473d8fc (AtLocation garbage_can garage) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "garbage waste is located at street", "pln": ["(: cnet_atlocation_e03a03e19c (AtLocation garbage_waste street) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "garden is located at back yard", "pln": ["(: cnet_atlocation_f92be98fcb (AtLocation garden back_yard) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "garden is located at backyard", "pln": ["(: cnet_atlocation_4380b48775 (AtLocation garden backyard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "garden is located at yard", "pln": ["(: cnet_atlocation_14b9314457 (AtLocation garden yard) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "garden hose is located at back yard", "pln": ["(: cnet_atlocation_3146c3d785 (AtLocation garden_hose back_yard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "garden hose is located at backyard", "pln": ["(: cnet_atlocation_df170488ad (AtLocation garden_hose backyard) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "garden hose is located at garage", "pln": ["(: cnet_atlocation_e13ab4c771 (AtLocation garden_hose garage) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "garden hose is located at garden shed", "pln": ["(: cnet_atlocation_dd1f5e4178 (AtLocation garden_hose garden_shed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "garden hose is located at yard", "pln": ["(: cnet_atlocation_aa424292f9 (AtLocation garden_hose yard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "garlic is located at kitchen", "pln": ["(: cnet_atlocation_38135f9238 (AtLocation garlic kitchen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "garment bag is located at closet", "pln": ["(: cnet_atlocation_a1895a6a92 (AtLocation garment_bag closet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gas is located at gas station", "pln": ["(: cnet_atlocation_d7ec80df56 (AtLocation gas gas_station) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gasoline is located at gas station", "pln": ["(: cnet_atlocation_8918b18683 (AtLocation gasoline gas_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "gate is located at fence", "pln": ["(: cnet_atlocation_09e56dac73 (AtLocation gate fence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "gate leg table is located at dining room", "pln": ["(: cnet_atlocation_7d583e491a (AtLocation gate_leg_table dining_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gay men is located at closet", "pln": ["(: cnet_atlocation_19179d07a4 (AtLocation gay_men closet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gay people is located at closet", "pln": ["(: cnet_atlocation_cac0deea29 (AtLocation gay_people closet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gazelle is located at africa s plain", "pln": ["(: cnet_atlocation_5691858695 (AtLocation gazelle africa_s_plain) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gazelle is located at africa on plain", "pln": ["(: cnet_atlocation_610d77859a (AtLocation gazelle africa_on_plain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gazelle is located at asia", "pln": ["(: cnet_atlocation_039fc6998f (AtLocation gazelle asia) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gazelle is located at game preserve", "pln": ["(: cnet_atlocation_897f88d79a (AtLocation gazelle game_preserve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gazelle is located at ivory coast", "pln": ["(: cnet_atlocation_93008c3a31 (AtLocation gazelle ivory_coast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gazelle is located at open plain", "pln": ["(: cnet_atlocation_3789372ce5 (AtLocation gazelle open_plain) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gazelle is located at savana", "pln": ["(: cnet_atlocation_55691e4656 (AtLocation gazelle savana) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gazelle is located at savanah", "pln": ["(: cnet_atlocation_1459042fc0 (AtLocation gazelle savanah) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gazelle is located at steppe", "pln": ["(: cnet_atlocation_6209edb2af (AtLocation gazelle steppe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gazelle is located at sudan", "pln": ["(: cnet_atlocation_b1c8538649 (AtLocation gazelle sudan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gazelle is located at wild", "pln": ["(: cnet_atlocation_01d72e4764 (AtLocation gazelle wild) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gazelle is located at wildlife refuge", "pln": ["(: cnet_atlocation_73484df29a (AtLocation gazelle wildlife_refuge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gel is located at tube", "pln": ["(: cnet_atlocation_325d00241c (AtLocation gel tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gel toothpaste is located at bathroom", "pln": ["(: cnet_atlocation_4e6e5863dc (AtLocation gel_toothpaste bathroom) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gel toothpaste is located at tube", "pln": ["(: cnet_atlocation_0b3d202ca5 (AtLocation gel_toothpaste tube) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "general ledger is located at accountant s office", "pln": ["(: cnet_atlocation_ef2f484304 (AtLocation general_ledger accountant_s_office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "general ledger is located at bookkeeper office", "pln": ["(: cnet_atlocation_b76dd429a4 (AtLocation general_ledger bookkeeper_office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "general ledger is located at office", "pln": ["(: cnet_atlocation_7ff9e3ecab (AtLocation general_ledger office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "general ledger in is located at accountant office", "pln": ["(: cnet_atlocation_41de08dc90 (AtLocation general_ledger_in accountant_office) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "general store is located at small town", "pln": ["(: cnet_atlocation_5ba54e5d23 (AtLocation general_store small_town) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "general store is located at town", "pln": ["(: cnet_atlocation_df374fa5bd (AtLocation general_store town) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gentleman is located at church", "pln": ["(: cnet_atlocation_40a52c2b57 (AtLocation gentleman church) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gentleman is located at restaurant", "pln": ["(: cnet_atlocation_62bbc35977 (AtLocation gentleman restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "george bush is located at war", "pln": ["(: cnet_atlocation_ec43af1cf6 (AtLocation george_bush war) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "germ is located at mouth", "pln": ["(: cnet_atlocation_cc7a470c7b (AtLocation germ mouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "germ is located at water", "pln": ["(: cnet_atlocation_4e4d13a8e8 (AtLocation germ water) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gideon s bible is located at motel", "pln": ["(: cnet_atlocation_5f0db0976d (AtLocation gideon_s_bible motel) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gideon bible is located at motel", "pln": ["(: cnet_atlocation_ec362f1379 (AtLocation gideon_bible motel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gift is located at box", "pln": ["(: cnet_atlocation_e7a3a4b038 (AtLocation gift box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gift is located at gift shop", "pln": ["(: cnet_atlocation_25bcd841ad (AtLocation gift gift_shop) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gift is located at party", "pln": ["(: cnet_atlocation_c43908b684 (AtLocation gift party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "giraffe is located at zoo", "pln": ["(: cnet_atlocation_30a666c6df (AtLocation giraffe zoo) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "glass is located at cabinet", "pln": ["(: cnet_atlocation_ef606595fb (AtLocation glass cabinet) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "glass is located at kitchen", "pln": ["(: cnet_atlocation_f0fb5d0c96 (AtLocation glass kitchen) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "glass is located at table", "pln": ["(: cnet_atlocation_9c1f8ca9eb (AtLocation glass table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "glass is located at window", "pln": ["(: cnet_atlocation_91ad09ef9a (AtLocation glass window) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "glass baker is located at laboratory", "pln": ["(: cnet_atlocation_97d843e34e (AtLocation glass_baker laboratory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "glass fronted cupboard is located at dining room", "pln": ["(: cnet_atlocation_17a8ccd048 (AtLocation glass_fronted_cupboard dining_room) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "glass fronted cupboard is located at kitchen", "pln": ["(: cnet_atlocation_c5bd0b6f5e (AtLocation glass_fronted_cupboard kitchen) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "glass fronted display cabinet is located at jewelry store", "pln": ["(: cnet_atlocation_b1e366eab0 (AtLocation glass_fronted_display_cabinet jewelry_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "glass fronted display cabinet is located at living room", "pln": ["(: cnet_atlocation_087f42915e (AtLocation glass_fronted_display_cabinet living_room) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "glass fronted display cabinet is located at store", "pln": ["(: cnet_atlocation_5245595b5c (AtLocation glass_fronted_display_cabinet store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "glass of water is located at desk", "pln": ["(: cnet_atlocation_b9ffe6bb03 (AtLocation glass_of_water desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "glass of water is located at table", "pln": ["(: cnet_atlocation_6f35e37f7e (AtLocation glass_of_water table) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "glass is located at cupboard", "pln": ["(: cnet_atlocation_56ce3169b5 (AtLocation glass cupboard) (STV 1.0 0.9756))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "glass case is located at drawer", "pln": ["(: cnet_atlocation_12c4eccb1e (AtLocation glass_case drawer) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "glass case is located at purse", "pln": ["(: cnet_atlocation_2561467734 (AtLocation glass_case purse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "global positioning system is located at plane", "pln": ["(: cnet_atlocation_496b2a1f69 (AtLocation global_positioning_system plane) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "globe is located at classroom", "pln": ["(: cnet_atlocation_37a6951b6e (AtLocation globe classroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "glue is located at desk drawer", "pln": ["(: cnet_atlocation_b6a1fc4fcc (AtLocation glue desk_drawer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "glue is located at school", "pln": ["(: cnet_atlocation_644443bf6e (AtLocation glue school) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "glue is located at tube", "pln": ["(: cnet_atlocation_cca9106073 (AtLocation glue tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "glue stick is located at desk", "pln": ["(: cnet_atlocation_8c08931de9 (AtLocation glue_stick desk) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "glue stick is located at drawer", "pln": ["(: cnet_atlocation_2a63028dc7 (AtLocation glue_stick drawer) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "goalie is located at hockey game", "pln": ["(: cnet_atlocation_de268c3ede (AtLocation goalie hockey_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "goaly is located at soccer game", "pln": ["(: cnet_atlocation_f9f9a5b0ae (AtLocation goaly soccer_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "goaltender is located at hockey game", "pln": ["(: cnet_atlocation_c4e17cc783 (AtLocation goaltender hockey_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "goat is located at petting zoo", "pln": ["(: cnet_atlocation_4cf6f39929 (AtLocation goat petting_zoo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "god is located at church", "pln": ["(: cnet_atlocation_70b3606826 (AtLocation god church) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "god is located at cloud", "pln": ["(: cnet_atlocation_11e800f77f (AtLocation god cloud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "god is located at heaven", "pln": ["(: cnet_atlocation_75b8613f14 (AtLocation god heaven) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "god is located at mind", "pln": ["(: cnet_atlocation_c6c1232a88 (AtLocation god mind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "god is located at synagogue", "pln": ["(: cnet_atlocation_034fc872b6 (AtLocation god synagogue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "gold is located at fort knox", "pln": ["(: cnet_atlocation_cb0d1f6c94 (AtLocation gold fort_knox) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "good beer is located at germany", "pln": ["(: cnet_atlocation_ecd847b401 (AtLocation good_beer germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "good meal is located at restaurant", "pln": ["(: cnet_atlocation_f08f0007f8 (AtLocation good_meal restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "good is located at supermarket", "pln": ["(: cnet_atlocation_8ad4382039 (AtLocation good supermarket) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "good to purchased is located at shop", "pln": ["(: cnet_atlocation_7d2bdd8c26 (AtLocation good_to_purchased shop) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "goodyear blimp is located at sky", "pln": ["(: cnet_atlocation_d8329f891d (AtLocation goodyear_blimp sky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "goofy is located at disneyland", "pln": ["(: cnet_atlocation_1a2aedcd3e (AtLocation goofy disneyland) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "gossip is located at water cooler", "pln": ["(: cnet_atlocation_e553731516 (AtLocation gossip water_cooler) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gourmet shop is located at mall", "pln": ["(: cnet_atlocation_45411ca30b (AtLocation gourmet_shop mall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "government is located at canada", "pln": ["(: cnet_atlocation_76a95b1a78 (AtLocation government canada) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "government is located at civilization", "pln": ["(: cnet_atlocation_5fd6abd397 (AtLocation government civilization) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "government is located at country", "pln": ["(: cnet_atlocation_3f5487bc3b (AtLocation government country) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grain of sand is located at beach", "pln": ["(: cnet_atlocation_edecc687df (AtLocation grain_of_sand beach) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grandma is located at relative house", "pln": ["(: cnet_atlocation_5a221296bd (AtLocation grandma relative_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grandmother is located at relative house", "pln": ["(: cnet_atlocation_79534fd2ed (AtLocation grandmother relative_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "granola bar is located at backpack", "pln": ["(: cnet_atlocation_54b30bf4c0 (AtLocation granola_bar backpack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grape is located at arbor", "pln": ["(: cnet_atlocation_5bf8a30440 (AtLocation grape arbor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grape is located at bowl", "pln": ["(: cnet_atlocation_3d6951f7cb (AtLocation grape bowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grape is located at bowl of fruit", "pln": ["(: cnet_atlocation_03bce641bb (AtLocation grape bowl_of_fruit) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grape is located at bunch with other grape", "pln": ["(: cnet_atlocation_866e9ac979 (AtLocation grape bunch_with_other_grape) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grape is located at field", "pln": ["(: cnet_atlocation_c2bd621d90 (AtLocation grape field) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grape is located at fridge", "pln": ["(: cnet_atlocation_17d6ed78cd (AtLocation grape fridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grape is located at fruit basket", "pln": ["(: cnet_atlocation_d801cf32e5 (AtLocation grape fruit_basket) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grape is located at fruit stand", "pln": ["(: cnet_atlocation_9a25d6a707 (AtLocation grape fruit_stand) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grape is located at fruit store", "pln": ["(: cnet_atlocation_3fc96adb68 (AtLocation grape fruit_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grape is located at garden", "pln": ["(: cnet_atlocation_c3ccb433a9 (AtLocation grape garden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grape is located at kitchen", "pln": ["(: cnet_atlocation_0e30fb1161 (AtLocation grape kitchen) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grape is located at mouth", "pln": ["(: cnet_atlocation_5985135702 (AtLocation grape mouth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grape is located at painting", "pln": ["(: cnet_atlocation_6d43502481 (AtLocation grape painting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grape is located at produce department", "pln": ["(: cnet_atlocation_f4635de60d (AtLocation grape produce_department) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grape is located at produce section", "pln": ["(: cnet_atlocation_f7ddcdbc59 (AtLocation grape produce_section) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grape is located at produce store", "pln": ["(: cnet_atlocation_cb2d8f8cad (AtLocation grape produce_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grape is located at salad", "pln": ["(: cnet_atlocation_3bec5c4827 (AtLocation grape salad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grape is located at shop", "pln": ["(: cnet_atlocation_e467bb590f (AtLocation grape shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grape is located at supermarket produce section", "pln": ["(: cnet_atlocation_a423eb9a4c (AtLocation grape supermarket_produce_section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grape is located at vine of other grape", "pln": ["(: cnet_atlocation_966668dc9f (AtLocation grape vine_of_other_grape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grape is located at wine", "pln": ["(: cnet_atlocation_303b4edacb (AtLocation grape wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grape is located at winery", "pln": ["(: cnet_atlocation_f646bd1a08 (AtLocation grape winery) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grape juice is located at refrigerator", "pln": ["(: cnet_atlocation_38251795b6 (AtLocation grape_juice refrigerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grapefruit is located at supermarket", "pln": ["(: cnet_atlocation_363ba35497 (AtLocation grapefruit supermarket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gra is located at park", "pln": ["(: cnet_atlocation_84678892bd (AtLocation gra park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grass is located at countryside", "pln": ["(: cnet_atlocation_c0d100670b (AtLocation grass countryside) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grass is located at field", "pln": ["(: cnet_atlocation_a593a9f453 (AtLocation grass field) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "grass is located at ground", "pln": ["(: cnet_atlocation_f7ec15ee6d (AtLocation grass ground) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grass is located at lawn", "pln": ["(: cnet_atlocation_a735c32c53 (AtLocation grass lawn) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grass is located at park", "pln": ["(: cnet_atlocation_5e2e236478 (AtLocation grass park) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grass is located at tree", "pln": ["(: cnet_atlocation_e42d9e1d55 (AtLocation grass tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grass and tree is located at park", "pln": ["(: cnet_atlocation_4a9262e502 (AtLocation grass_and_tree park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grave is located at funeral", "pln": ["(: cnet_atlocation_4d2c0a1955 (AtLocation grave funeral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gravel is located at surface of earth", "pln": ["(: cnet_atlocation_7de3dbd95e (AtLocation gravel surface_of_earth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gravy boat is located at cupboard", "pln": ["(: cnet_atlocation_3623eee7c0 (AtLocation gravy_boat cupboard) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grease is located at fast food restaurant", "pln": ["(: cnet_atlocation_309225897a (AtLocation grease fast_food_restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grease is located at garage", "pln": ["(: cnet_atlocation_2e5409c4ca (AtLocation grease garage) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "great view is located at top of mountain", "pln": ["(: cnet_atlocation_4056271eb3 (AtLocation great_view top_of_mountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "green bean is located at farmer s market", "pln": ["(: cnet_atlocation_9bdd7be33f (AtLocation green_bean farmer_s_market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "green grass is located at park", "pln": ["(: cnet_atlocation_faa965a1ed (AtLocation green_grass park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "green pepper is located at pizza", "pln": ["(: cnet_atlocation_a0d866e967 (AtLocation green_pepper pizza) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "greengrocer is located at city", "pln": ["(: cnet_atlocation_783ad0256a (AtLocation greengrocer city) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "grocery is located at supermarket", "pln": ["(: cnet_atlocation_e2db25c827 (AtLocation grocery supermarket) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "greengrocer is located at supermarket", "pln": ["(: cnet_atlocation_db2ca61888 (AtLocation greengrocer supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grenade is located at war", "pln": ["(: cnet_atlocation_4b0f735e9b (AtLocation grenade war) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grid is located at mathematic", "pln": ["(: cnet_atlocation_21679277f8 (AtLocation grid mathematic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grill is located at back yard", "pln": ["(: cnet_atlocation_c3e1bad1f9 (AtLocation grill back_yard) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grill is located at backyard", "pln": ["(: cnet_atlocation_ce4d98f136 (AtLocation grill backyard) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grocer is located at grocery store", "pln": ["(: cnet_atlocation_4702d9d852 (AtLocation grocer grocery_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grocery is located at supermarket", "pln": ["(: cnet_atlocation_e2db25c827 (AtLocation grocery supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grocery store is located at city", "pln": ["(: cnet_atlocation_91cfc174a4 (AtLocation grocery_store city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grocery store is located at neighborhood", "pln": ["(: cnet_atlocation_538c31aca2 (AtLocation grocery_store neighborhood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grocery store is located at town", "pln": ["(: cnet_atlocation_80ab5f4e54 (AtLocation grocery_store town) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "groom is located at friend s wedding", "pln": ["(: cnet_atlocation_01c4f0a3a7 (AtLocation groom friend_s_wedding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ground is located at tree", "pln": ["(: cnet_atlocation_cb99cbf85a (AtLocation ground tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ground floor is located at building", "pln": ["(: cnet_atlocation_556a6385c8 (AtLocation ground_floor building) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ground floor is located at office building", "pln": ["(: cnet_atlocation_e80b42d966 (AtLocation ground_floor office_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "group of people is located at meeting", "pln": ["(: cnet_atlocation_03e6f43b21 (AtLocation group_of_people meeting) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "group of student is located at bus", "pln": ["(: cnet_atlocation_e3da81828b (AtLocation group_of_student bus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "grumpy delayed passenger is located at airport", "pln": ["(: cnet_atlocation_c84d4accad (AtLocation grumpy_delayed_passenger airport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "guard dog is located at military base", "pln": ["(: cnet_atlocation_dab597b06c (AtLocation guard_dog military_base) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "guard is located at jail", "pln": ["(: cnet_atlocation_5a65e6e421 (AtLocation guard jail) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "guest is located at front door", "pln": ["(: cnet_atlocation_ae3fe068f2 (AtLocation guest front_door) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "guest room is located at loft", "pln": ["(: cnet_atlocation_a2761b6775 (AtLocation guest_room loft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "guilt is located at church", "pln": ["(: cnet_atlocation_cf95472bcb (AtLocation guilt church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "guitar is located at band", "pln": ["(: cnet_atlocation_7067ea4e8a (AtLocation guitar band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "guitar is located at concert", "pln": ["(: cnet_atlocation_848b3e1480 (AtLocation guitar concert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "guitar is located at music room", "pln": ["(: cnet_atlocation_ba3f102167 (AtLocation guitar music_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gull is located at sea", "pln": ["(: cnet_atlocation_60f726ad7a (AtLocation gull sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gum is located at mouth", "pln": ["(: cnet_atlocation_c9bc9c1f9e (AtLocation gum mouth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "gun is located at drawer", "pln": ["(: cnet_atlocation_4d9e41a51c (AtLocation gun drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gun is located at holster", "pln": ["(: cnet_atlocation_62db2e9c66 (AtLocation gun holster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gun is located at police station", "pln": ["(: cnet_atlocation_1f7432700e (AtLocation gun police_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gun is located at war", "pln": ["(: cnet_atlocation_559eeb7745 (AtLocation gun war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gurney is located at hospital", "pln": ["(: cnet_atlocation_5d476ef6cb (AtLocation gurney hospital) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "gym is located at school", "pln": ["(: cnet_atlocation_ef3706951c (AtLocation gym school) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "hair is located at arm", "pln": ["(: cnet_atlocation_a294ef4d81 (AtLocation hair arm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hair is located at brush", "pln": ["(: cnet_atlocation_87fca5af58 (AtLocation hair brush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hair is located at drain", "pln": ["(: cnet_atlocation_e08532fbcc (AtLocation hair drain) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hair is located at hairbrush", "pln": ["(: cnet_atlocation_34822577cb (AtLocation hair hairbrush) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hair is located at head", "pln": ["(: cnet_atlocation_baa2d3da0d (AtLocation hair head) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hair is located at mammal", "pln": ["(: cnet_atlocation_a2fe3cce71 (AtLocation hair mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hair is located at sink", "pln": ["(: cnet_atlocation_ed277c409d (AtLocation hair sink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hair care article is located at drug store", "pln": ["(: cnet_atlocation_ff1bf47597 (AtLocation hair_care_article drug_store) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hair clip is located at beauty salon", "pln": ["(: cnet_atlocation_6cffce03f3 (AtLocation hair_clip beauty_salon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hair clip is located at drug store", "pln": ["(: cnet_atlocation_6585941c54 (AtLocation hair_clip drug_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hair conditioner is located at drug store", "pln": ["(: cnet_atlocation_19b958cdc8 (AtLocation hair_conditioner drug_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hair conditioner is located at hair salon", "pln": ["(: cnet_atlocation_f3da5352d5 (AtLocation hair_conditioner hair_salon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hair dryer is located at bathroom", "pln": ["(: cnet_atlocation_ca34ece792 (AtLocation hair_dryer bathroom) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hair gel is located at barber", "pln": ["(: cnet_atlocation_7a9a41d5d9 (AtLocation hair_gel barber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hair gel is located at bathroom", "pln": ["(: cnet_atlocation_5595e7dce2 (AtLocation hair_gel bathroom) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hair roller is located at beauty salon", "pln": ["(: cnet_atlocation_1bf46f75f6 (AtLocation hair_roller beauty_salon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hair roller is located at hair", "pln": ["(: cnet_atlocation_8b0a221f68 (AtLocation hair_roller hair) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hair shaping gel is located at bathroom", "pln": ["(: cnet_atlocation_45dd36374e (AtLocation hair_shaping_gel bathroom) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hair shaping gel is located at supermarket", "pln": ["(: cnet_atlocation_2baa916a47 (AtLocation hair_shaping_gel supermarket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "hairbrush is located at bathroom", "pln": ["(: cnet_atlocation_ee24525517 (AtLocation hairbrush bathroom) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hairbrush is located at bathroom drawer", "pln": ["(: cnet_atlocation_d03a7294a8 (AtLocation hairbrush bathroom_drawer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "haircloth is located at bathroom", "pln": ["(: cnet_atlocation_9bc854d2a0 (AtLocation haircloth bathroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "haircutting scissor is located at barber shop", "pln": ["(: cnet_atlocation_fc7f9b19e6 (AtLocation haircutting_scissor barber_shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "haircutting scissor is located at salon", "pln": ["(: cnet_atlocation_c0ab1af99a (AtLocation haircutting_scissor salon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hairdresser is located at mall", "pln": ["(: cnet_atlocation_f6371d4889 (AtLocation hairdresser mall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hairdressing salon is located at mall", "pln": ["(: cnet_atlocation_c04982109a (AtLocation hairdressing_salon mall) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hairpin is located at woman s hair", "pln": ["(: cnet_atlocation_40949b7243 (AtLocation hairpin woman_s_hair) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hall is located at building", "pln": ["(: cnet_atlocation_bd0eb37290 (AtLocation hall building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hallway is located at building", "pln": ["(: cnet_atlocation_de23d87c4b (AtLocation hallway building) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "hallway is located at house", "pln": ["(: cnet_atlocation_65eab418b3 (AtLocation hallway house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "hallway is located at office building", "pln": ["(: cnet_atlocation_ed30bcee14 (AtLocation hallway office_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ham is located at pizza", "pln": ["(: cnet_atlocation_47764d3ad5 (AtLocation ham pizza) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "ham is located at refrigerator", "pln": ["(: cnet_atlocation_9a7d458a53 (AtLocation ham refrigerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hamburger is located at fast food restaurant", "pln": ["(: cnet_atlocation_647f9a06e8 (AtLocation hamburger fast_food_restaurant) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hamburger is located at pizza", "pln": ["(: cnet_atlocation_7f73fb6194 (AtLocation hamburger pizza) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hamburger is located at resturant", "pln": ["(: cnet_atlocation_b8c8370b1d (AtLocation hamburger resturant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hammer is located at hardware store", "pln": ["(: cnet_atlocation_5921b12465 (AtLocation hammer hardware_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hammer is located at tool box", "pln": ["(: cnet_atlocation_466172d6cf (AtLocation hammer tool_box) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "hand is located at pocket", "pln": ["(: cnet_atlocation_027148b413 (AtLocation hand pocket) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hand luggage is located at airport", "pln": ["(: cnet_atlocation_25e2b62d54 (AtLocation hand_luggage airport) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "handbag is located at store", "pln": ["(: cnet_atlocation_2984a53781 (AtLocation handbag store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "handgun is located at holster of policeman", "pln": ["(: cnet_atlocation_0ae43b353b (AtLocation handgun holster_of_policeman) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "handle is located at door", "pln": ["(: cnet_atlocation_8bcb4ada38 (AtLocation handle door) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "handle is located at fridge", "pln": ["(: cnet_atlocation_1ac9fd9baf (AtLocation handle fridge) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hand is located at glove", "pln": ["(: cnet_atlocation_9c425b5774 (AtLocation hand glove) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hand is located at sockpuppet", "pln": ["(: cnet_atlocation_ec97ac34b4 (AtLocation hand sockpuppet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "handstrap is located at subway", "pln": ["(: cnet_atlocation_f79c0748d6 (AtLocation handstrap subway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hanger is located at closet", "pln": ["(: cnet_atlocation_ea1685a373 (AtLocation hanger closet) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "hardware shop is located at city", "pln": ["(: cnet_atlocation_585176666b (AtLocation hardware_shop city) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "heart is located at all mammals", "pln": ["(: cnet_atlocation_689432495d (AtLocation heart all_mammals) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hardware shop is located at mall", "pln": ["(: cnet_atlocation_05e6fac036 (AtLocation hardware_shop mall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hardware store is located at city", "pln": ["(: cnet_atlocation_1e8e0c92a8 (AtLocation hardware_store city) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hardware store is located at town", "pln": ["(: cnet_atlocation_c0daabaf73 (AtLocation hardware_store town) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hardwood floor is located at carpet", "pln": ["(: cnet_atlocation_64c08ed1c5 (AtLocation hardwood_floor carpet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "harlot is located at street corner", "pln": ["(: cnet_atlocation_695c9446bc (AtLocation harlot street_corner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "harpsichord is located at band", "pln": ["(: cnet_atlocation_adedf05dc9 (AtLocation harpsichord band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "harpsichord is located at classical music orchestra", "pln": ["(: cnet_atlocation_f9be536b1b (AtLocation harpsichord classical_music_orchestra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hat is located at closet", "pln": ["(: cnet_atlocation_07ab258575 (AtLocation hat closet) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hat is located at head", "pln": ["(: cnet_atlocation_5a76a09657 (AtLocation hat head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hat with horn is located at opera", "pln": ["(: cnet_atlocation_a4508b1a1a (AtLocation hat_with_horn opera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "have cavity is located at dentist", "pln": ["(: cnet_atlocation_cb20cf6af3 (AtLocation have_cavity dentist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hay is located at barn", "pln": ["(: cnet_atlocation_de3ec1d072 (AtLocation hay barn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hay is located at loft", "pln": ["(: cnet_atlocation_e690d4704e (AtLocation hay loft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "head is located at morgue", "pln": ["(: cnet_atlocation_458c44203a (AtLocation head morgue) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "headline is located at newspaper", "pln": ["(: cnet_atlocation_5bc38de31e (AtLocation headline newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "health food store is located at city", "pln": ["(: cnet_atlocation_d6e2c0bb4e (AtLocation health_food_store city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "health food store is located at mall", "pln": ["(: cnet_atlocation_cfe66fc8f5 (AtLocation health_food_store mall) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "heart is located at all mammal", "pln": ["(: cnet_atlocation_f65a41a895 (AtLocation heart all_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "heart is located at animal", "pln": ["(: cnet_atlocation_4e70d1bfd4 (AtLocation heart animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "heart is located at person", "pln": ["(: cnet_atlocation_118d209890 (AtLocation heart person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "heat is located at oven", "pln": ["(: cnet_atlocation_308631c62f (AtLocation heat oven) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "heat source is located at house", "pln": ["(: cnet_atlocation_028c1e4fd6 (AtLocation heat_source house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "heated towel rack is located at bathroom", "pln": ["(: cnet_atlocation_6fe65401a3 (AtLocation heated_towel_rack bathroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "heater is located at house", "pln": ["(: cnet_atlocation_3ca89d69d2 (AtLocation heater house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "heating element is located at oven", "pln": ["(: cnet_atlocation_247fadf74b (AtLocation heating_element oven) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "heating room is located at basement", "pln": ["(: cnet_atlocation_0776a25e3d (AtLocation heating_room basement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "heifer is located at barnyard", "pln": ["(: cnet_atlocation_2fbcb90d58 (AtLocation heifer barnyard) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "heifer is located at cattle farm", "pln": ["(: cnet_atlocation_5d4afe81f4 (AtLocation heifer cattle_farm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "heifer is located at cattle ranch", "pln": ["(: cnet_atlocation_8d3e91b90c (AtLocation heifer cattle_ranch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "heifer is located at cattle show", "pln": ["(: cnet_atlocation_2b44ea31ca (AtLocation heifer cattle_show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "heifer is located at corral", "pln": ["(: cnet_atlocation_97e3e49b94 (AtLocation heifer corral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "heifer is located at countryside", "pln": ["(: cnet_atlocation_66dfcc10ca (AtLocation heifer countryside) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "heifer is located at cow pasture", "pln": ["(: cnet_atlocation_532338d4ab (AtLocation heifer cow_pasture) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "heifer is located at cow shed", "pln": ["(: cnet_atlocation_f3d2afc3b8 (AtLocation heifer cow_shed) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "heifer is located at dairy barn", "pln": ["(: cnet_atlocation_3174e1c8cc (AtLocation heifer dairy_barn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "heifer is located at dairy farm", "pln": ["(: cnet_atlocation_1bb1b41969 (AtLocation heifer dairy_farm) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "heifer is located at own meadow", "pln": ["(: cnet_atlocation_aedc8a39c9 (AtLocation heifer own_meadow) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "heifer is located at slaughterhouse", "pln": ["(: cnet_atlocation_47bfe6135b (AtLocation heifer slaughterhouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "heifer is located at stall", "pln": ["(: cnet_atlocation_7c6119109c (AtLocation heifer stall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "heifer is located at texa", "pln": ["(: cnet_atlocation_56fd3f97bd (AtLocation heifer texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "helicopter is located at airport", "pln": ["(: cnet_atlocation_b729923989 (AtLocation helicopter airport) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "helium balloon is located at birthday party", "pln": ["(: cnet_atlocation_18e94ad301 (AtLocation helium_balloon birthday_party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "helium balloon is located at circus", "pln": ["(: cnet_atlocation_d1f5feb4e8 (AtLocation helium_balloon circus) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "herringbone is located at herring", "pln": ["(: cnet_atlocation_a2cbca7337 (AtLocation herringbone herring) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hide bed is located at living room", "pln": ["(: cnet_atlocation_387b98f083 (AtLocation hide_bed living_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "high rise is located at city", "pln": ["(: cnet_atlocation_e6d3b20a1c (AtLocation high_rise city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "highlighter is located at desk", "pln": ["(: cnet_atlocation_c7ef6caf1b (AtLocation highlighter desk) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "highlighter pen is located at desk", "pln": ["(: cnet_atlocation_d2ffb7f58c (AtLocation highlighter_pen desk) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "highlighter pen is located at desk drawer", "pln": ["(: cnet_atlocation_e4bdffe748 (AtLocation highlighter_pen desk_drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "highway is located at atla", "pln": ["(: cnet_atlocation_a18b6eb966 (AtLocation highway atla) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "highway is located at between to city", "pln": ["(: cnet_atlocation_47308908d6 (AtLocation highway between_to_city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "highway is located at city", "pln": ["(: cnet_atlocation_21ed42b471 (AtLocation highway city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "highway is located at country", "pln": ["(: cnet_atlocation_ae59f95623 (AtLocation highway country) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hill is located at country", "pln": ["(: cnet_atlocation_73914ee759 (AtLocation hill country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hill is located at countryside", "pln": ["(: cnet_atlocation_3e1a669c0f (AtLocation hill countryside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hill is located at landscape", "pln": ["(: cnet_atlocation_822021024e (AtLocation hill landscape) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hindus is located at temple", "pln": ["(: cnet_atlocation_cb666655dd (AtLocation hindus temple) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hinged door is located at own house", "pln": ["(: cnet_atlocation_64d5cd37d3 (AtLocation hinged_door own_house) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "historical artifact is located at museum", "pln": ["(: cnet_atlocation_75e9fd2217 (AtLocation historical_artifact museum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "history book is located at university", "pln": ["(: cnet_atlocation_2106bd8763 (AtLocation history_book university) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "hockey sticks is located at hockey game", "pln": ["(: cnet_atlocation_fd0e37062d (AtLocation hockey_sticks hockey_game) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hitler is located at hell", "pln": ["(: cnet_atlocation_db6fde7332 (AtLocation hitler hell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hobo is located at bridge", "pln": ["(: cnet_atlocation_ee49c741b0 (AtLocation hobo bridge) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hockey fan is located at hockey game", "pln": ["(: cnet_atlocation_30c51d7a9a (AtLocation hockey_fan hockey_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hockey puck is located at hockey game", "pln": ["(: cnet_atlocation_61e1fff242 (AtLocation hockey_puck hockey_game) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hockey standing is located at newspaper", "pln": ["(: cnet_atlocation_47651405f0 (AtLocation hockey_standing newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hockey stick is located at hockey game", "pln": ["(: cnet_atlocation_de06720c27 (AtLocation hockey_stick hockey_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hole is located at donut", "pln": ["(: cnet_atlocation_aee76daf65 (AtLocation hole donut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hole is located at ground", "pln": ["(: cnet_atlocation_ff2145b9e2 (AtLocation hole ground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hole is located at swiss cheese", "pln": ["(: cnet_atlocation_44f163986f (AtLocation hole swiss_cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hole is located at wall", "pln": ["(: cnet_atlocation_7ba0fe823b (AtLocation hole wall) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "holy water is located at church", "pln": ["(: cnet_atlocation_d7ced21948 (AtLocation holy_water church) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "home is located at city", "pln": ["(: cnet_atlocation_83230236e7 (AtLocation home city) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "home is located at neighborhood", "pln": ["(: cnet_atlocation_64b12252ac (AtLocation home neighborhood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "homeless is located at bridge", "pln": ["(: cnet_atlocation_54c92f28d6 (AtLocation homeless bridge) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "homeless people is located at bus depot", "pln": ["(: cnet_atlocation_e3e4faa30c (AtLocation homeless_people bus_depot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "homeless person is located at bridge", "pln": ["(: cnet_atlocation_621c04eee8 (AtLocation homeless_person bridge) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "homeless person is located at homeless shelter", "pln": ["(: cnet_atlocation_5223111713 (AtLocation homeless_person homeless_shelter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "homeschool is located at home", "pln": ["(: cnet_atlocation_7c77b2c655 (AtLocation homeschool home) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "homework is located at desk", "pln": ["(: cnet_atlocation_04da85ffd7 (AtLocation homework desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "homework is located at school", "pln": ["(: cnet_atlocation_6855de197e (AtLocation homework school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "homosexual is located at closet", "pln": ["(: cnet_atlocation_9d73998616 (AtLocation homosexual closet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "homosexual is located at military base", "pln": ["(: cnet_atlocation_95cc3a3785 (AtLocation homosexual military_base) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "honey is located at jar", "pln": ["(: cnet_atlocation_3e23d8dc4b (AtLocation honey jar) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hook is located at end of line", "pln": ["(: cnet_atlocation_67fe22ea06 (AtLocation hook end_of_line) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hooker is located at street corner", "pln": ["(: cnet_atlocation_75961a9a29 (AtLocation hooker street_corner) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hooker is located at motel", "pln": ["(: cnet_atlocation_9969c8fc52 (AtLocation hooker motel) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "horn is located at automobile", "pln": ["(: cnet_atlocation_476885065f (AtLocation horn automobile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "horn is located at car", "pln": ["(: cnet_atlocation_f42b36facc (AtLocation horn car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "horn is located at head of animal", "pln": ["(: cnet_atlocation_d1b00e3306 (AtLocation horn head_of_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "horn is located at philharmonic orchestra", "pln": ["(: cnet_atlocation_ec0c892c75 (AtLocation horn philharmonic_orchestra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "horse is located at a", "pln": ["(: cnet_atlocation_dc30809a01 (AtLocation horse a) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "horse is located at canada", "pln": ["(: cnet_atlocation_b9afd1472a (AtLocation horse canada) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "horse is located at cavalry", "pln": ["(: cnet_atlocation_b727106b1a (AtLocation horse cavalry) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "horse is located at circus", "pln": ["(: cnet_atlocation_c2e8e5b917 (AtLocation horse circus) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "horse is located at country", "pln": ["(: cnet_atlocation_7964f0cea6 (AtLocation horse country) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "horse is located at equestrian competition", "pln": ["(: cnet_atlocation_a02342a5bb (AtLocation horse equestrian_competition) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "horse is located at farmyard", "pln": ["(: cnet_atlocation_38039385d7 (AtLocation horse farmyard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "horse is located at kentucky", "pln": ["(: cnet_atlocation_4fe0973901 (AtLocation horse kentucky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "horse is located at movy", "pln": ["(: cnet_atlocation_e7579df82e (AtLocation horse movy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "horse is located at parade", "pln": ["(: cnet_atlocation_087679b772 (AtLocation horse parade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "horse is located at race track", "pln": ["(: cnet_atlocation_fcd1243465 (AtLocation horse race_track) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "horse is located at stall", "pln": ["(: cnet_atlocation_60ebae53c4 (AtLocation horse stall) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "horse is located at western movie", "pln": ["(: cnet_atlocation_764a945833 (AtLocation horse western_movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "horse race is located at fairground", "pln": ["(: cnet_atlocation_c2098e42b5 (AtLocation horse_race fairground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hors is located at countryside", "pln": ["(: cnet_atlocation_9be76f895a (AtLocation hors countryside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "horseshoe crab is located at beach", "pln": ["(: cnet_atlocation_591acc86b9 (AtLocation horseshoe_crab beach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hose is located at garage", "pln": ["(: cnet_atlocation_ba8272dbc1 (AtLocation hose garage) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hospital is located at city", "pln": ["(: cnet_atlocation_6ef9149685 (AtLocation hospital city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hospital is located at town", "pln": ["(: cnet_atlocation_8d211024c5 (AtLocation hospital town) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hostility is located at war zone", "pln": ["(: cnet_atlocation_433463f2ba (AtLocation hostility war_zone) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hot chick is located at school", "pln": ["(: cnet_atlocation_a4e14e5674 (AtLocation hot_chick school) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hot dog is located at drive in movie", "pln": ["(: cnet_atlocation_bfe939800a (AtLocation hot_dog drive_in_movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hot dog is located at sporting event", "pln": ["(: cnet_atlocation_d7a54601c1 (AtLocation hot_dog sporting_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hot faucet is located at bathroom", "pln": ["(: cnet_atlocation_8b3430bf9a (AtLocation hot_faucet bathroom) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hot faucet is located at kitchen", "pln": ["(: cnet_atlocation_665af24d5c (AtLocation hot_faucet kitchen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hot faucet is located at sink", "pln": ["(: cnet_atlocation_19a389401b (AtLocation hot_faucet sink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hot table is located at kitchen", "pln": ["(: cnet_atlocation_593ad3bdf8 (AtLocation hot_table kitchen) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hot tap is located at bathroom", "pln": ["(: cnet_atlocation_fb4bd9ef44 (AtLocation hot_tap bathroom) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hot tap is located at sink", "pln": ["(: cnet_atlocation_94636e1986 (AtLocation hot_tap sink) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hot water heater is located at basement", "pln": ["(: cnet_atlocation_1cbaaded5d (AtLocation hot_water_heater basement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hotdog is located at sporting event", "pln": ["(: cnet_atlocation_758bd64c2e (AtLocation hotdog sporting_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hotel is located at las vega", "pln": ["(: cnet_atlocation_28bc8d8b7d (AtLocation hotel las_vega) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "house is located at city", "pln": ["(: cnet_atlocation_d8bd243445 (AtLocation house city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "house is located at residential area", "pln": ["(: cnet_atlocation_19f2ecc436 (AtLocation house residential_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "house is located at street", "pln": ["(: cnet_atlocation_0f6b0c0845 (AtLocation house street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "house is located at suburb", "pln": ["(: cnet_atlocation_ceffa570b5 (AtLocation house suburb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "house is located at surface of earth", "pln": ["(: cnet_atlocation_777d8be19e (AtLocation house surface_of_earth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "household supply is located at supermarket", "pln": ["(: cnet_atlocation_246d352694 (AtLocation household_supply supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hub cap is located at street", "pln": ["(: cnet_atlocation_e00ee55f91 (AtLocation hub_cap street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hubcap is located at car show", "pln": ["(: cnet_atlocation_2afa2bdb79 (AtLocation hubcap car_show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "huddersfield is located at west yorkshire", "pln": ["(: cnet_atlocation_a69a1ad2ef (AtLocation huddersfield west_yorkshire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "human is located at airport", "pln": ["(: cnet_atlocation_df16797711 (AtLocation human airport) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at apartment", "pln": ["(: cnet_atlocation_7bb9ea95c7 (AtLocation human apartment) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at apartment building", "pln": ["(: cnet_atlocation_ee90bd5f15 (AtLocation human apartment_building) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at automobile", "pln": ["(: cnet_atlocation_a0801577dd (AtLocation human automobile) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at band", "pln": ["(: cnet_atlocation_1e4d7eaf0f (AtLocation human band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at bar", "pln": ["(: cnet_atlocation_b6851582fb (AtLocation human bar) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "human is located at bathroom", "pln": ["(: cnet_atlocation_d706ff2050 (AtLocation human bathroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at bathtub", "pln": ["(: cnet_atlocation_79b6890721 (AtLocation human bathtub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at bed", "pln": ["(: cnet_atlocation_f7f75b984d (AtLocation human bed) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at bus", "pln": ["(: cnet_atlocation_cfd552e2e7 (AtLocation human bus) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at cemetary", "pln": ["(: cnet_atlocation_e808352955 (AtLocation human cemetary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at chair", "pln": ["(: cnet_atlocation_00af9b9b3c (AtLocation human chair) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at charge", "pln": ["(: cnet_atlocation_9fb92ae4d9 (AtLocation human charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "human is located at china", "pln": ["(: cnet_atlocation_709fae3284 (AtLocation human china) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at church", "pln": ["(: cnet_atlocation_d67d8cd62f (AtLocation human church) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at country", "pln": ["(: cnet_atlocation_3b22b10162 (AtLocation human country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at home", "pln": ["(: cnet_atlocation_99f2adea83 (AtLocation human home) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at hotel", "pln": ["(: cnet_atlocation_f273888e02 (AtLocation human hotel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at internet cafe", "pln": ["(: cnet_atlocation_49005b3a81 (AtLocation human internet_cafe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at jail", "pln": ["(: cnet_atlocation_2191f1559a (AtLocation human jail) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at library", "pln": ["(: cnet_atlocation_5444fc3e53 (AtLocation human library) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at love", "pln": ["(: cnet_atlocation_820638be0b (AtLocation human love) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "human is located at motion", "pln": ["(: cnet_atlocation_d85c031e7f (AtLocation human motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at office building", "pln": ["(: cnet_atlocation_b5fb8d86b9 (AtLocation human office_building) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at park", "pln": ["(: cnet_atlocation_6ffb687064 (AtLocation human park) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "human is located at sauna", "pln": ["(: cnet_atlocation_5605f7bae1 (AtLocation human sauna) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at school", "pln": ["(: cnet_atlocation_749159bdc7 (AtLocation human school) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at solar system", "pln": ["(: cnet_atlocation_208e95b96f (AtLocation human solar_system) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at space shuttle", "pln": ["(: cnet_atlocation_fb6817f9e0 (AtLocation human space_shuttle) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at submarine", "pln": ["(: cnet_atlocation_ebf9d620c4 (AtLocation human submarine) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at subway", "pln": ["(: cnet_atlocation_34cdf35acb (AtLocation human subway) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at theater", "pln": ["(: cnet_atlocation_bbb067cc4d (AtLocation human theater) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at train", "pln": ["(: cnet_atlocation_9e8cbe6ae2 (AtLocation human train) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at village", "pln": ["(: cnet_atlocation_e42140ddd8 (AtLocation human village) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at workplace", "pln": ["(: cnet_atlocation_abd15582bf (AtLocation human workplace) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at zoo", "pln": ["(: cnet_atlocation_1da6037976 (AtLocation human zoo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human being is located at street", "pln": ["(: cnet_atlocation_94759bf8ec (AtLocation human_being street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human body is located at funeral", "pln": ["(: cnet_atlocation_d0980b4644 (AtLocation human_body funeral) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at cafe", "pln": ["(: cnet_atlocation_1bc04267d0 (AtLocation human cafe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at movie theatre", "pln": ["(: cnet_atlocation_87dea65bde (AtLocation human movie_theatre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human is located at movy", "pln": ["(: cnet_atlocation_6e9e32f446 (AtLocation human movy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "human communicating is located at internet discussion group", "pln": ["(: cnet_atlocation_cea3e3002d (AtLocation human_communicating internet_discussion_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "humvee is located at military base", "pln": ["(: cnet_atlocation_8d22093936 (AtLocation humvee military_base) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hungry people is located at supermarket", "pln": ["(: cnet_atlocation_7f3957f554 (AtLocation hungry_people supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "husky is located at connecticut", "pln": ["(: cnet_atlocation_df3cdc678d (AtLocation husky connecticut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hydrogen is located at chemistry lab", "pln": ["(: cnet_atlocation_3eaa1f990f (AtLocation hydrogen chemistry_lab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hydrogen is located at space", "pln": ["(: cnet_atlocation_cbe5d51cf8 (AtLocation hydrogen space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hydrogen atom is located at space", "pln": ["(: cnet_atlocation_cf7f0ef983 (AtLocation hydrogen_atom space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hymn book is located at church", "pln": ["(: cnet_atlocation_533bef56f1 (AtLocation hymn_book church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hype is located at car show", "pln": ["(: cnet_atlocation_18e9c63131 (AtLocation hype car_show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "hypocrisy is located at church", "pln": ["(: cnet_atlocation_6b69678cff (AtLocation hypocrisy church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ice is located at antarctica", "pln": ["(: cnet_atlocation_aeb12f4bc3 (AtLocation ice antarctica) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ice is located at hockey game", "pln": ["(: cnet_atlocation_6e88a552cd (AtLocation ice hockey_game) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ice and snow is located at arctic", "pln": ["(: cnet_atlocation_8411c5a55f (AtLocation ice_and_snow arctic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ice berg is located at arctic", "pln": ["(: cnet_atlocation_4fd32b01ed (AtLocation ice_berg arctic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ice cream is located at freezer", "pln": ["(: cnet_atlocation_578614ba34 (AtLocation ice_cream freezer) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ice cube is located at freezer", "pln": ["(: cnet_atlocation_56e7fae95b (AtLocation ice_cube freezer) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "icebox is located at kitchen", "pln": ["(: cnet_atlocation_8a2e9c3ffc (AtLocation icebox kitchen) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "icecube is located at freezer", "pln": ["(: cnet_atlocation_40e70239dd (AtLocation icecube freezer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "icon is located at desktop", "pln": ["(: cnet_atlocation_70ec68a499 (AtLocation icon desktop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "icon is located at ms window desktop", "pln": ["(: cnet_atlocation_10b8eface1 (AtLocation icon ms_window_desktop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "idea is located at brain", "pln": ["(: cnet_atlocation_9ed976b5b9 (AtLocation idea brain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "idiot is located at hockey game", "pln": ["(: cnet_atlocation_f03ecbdc21 (AtLocation idiot hockey_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "illegal drug is located at black market", "pln": ["(: cnet_atlocation_22ad2719c9 (AtLocation illegal_drug black_market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "illegal weapon is located at black market", "pln": ["(: cnet_atlocation_6825f44725 (AtLocation illegal_weapon black_market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "illness is located at brain", "pln": ["(: cnet_atlocation_374f227e97 (AtLocation illness brain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "illness is located at hospital", "pln": ["(: cnet_atlocation_4839096242 (AtLocation illness hospital) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "in charge is located at meeting", "pln": ["(: cnet_atlocation_256ff7262b (AtLocation in_charge meeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "inbox is located at desk", "pln": ["(: cnet_atlocation_e362a1cb3f (AtLocation inbox desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "index card is located at library", "pln": ["(: cnet_atlocation_b9f1a152e7 (AtLocation index_card library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "index card cabinet is located at library", "pln": ["(: cnet_atlocation_0f8c31a22a (AtLocation index_card_cabinet library) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "index card cabinet is located at office", "pln": ["(: cnet_atlocation_eabb5022b0 (AtLocation index_card_cabinet office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "indian ocean is located at asia", "pln": ["(: cnet_atlocation_0777cc8b5f (AtLocation indian_ocean asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "indian ocean is located at east", "pln": ["(: cnet_atlocation_c9366e07ca (AtLocation indian_ocean east) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "indian ocean is located at india", "pln": ["(: cnet_atlocation_0cfd6a7cb6 (AtLocation indian_ocean india) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "indian restaurant is located at india", "pln": ["(: cnet_atlocation_4c1250ec56 (AtLocation indian_restaurant india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "industry is located at big city", "pln": ["(: cnet_atlocation_d66deadcc8 (AtLocation industry big_city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "industry is located at factory", "pln": ["(: cnet_atlocation_c6cf1d1fdd (AtLocation industry factory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "information is located at book", "pln": ["(: cnet_atlocation_9672469a45 (AtLocation information book) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "information is located at internet", "pln": ["(: cnet_atlocation_26de2a793a (AtLocation information internet) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "information is located at library", "pln": ["(: cnet_atlocation_6d82558a4d (AtLocation information library) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "information is located at newspaper", "pln": ["(: cnet_atlocation_42c2ea8929 (AtLocation information newspaper) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "information is located at television", "pln": ["(: cnet_atlocation_7093b0e979 (AtLocation information television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "injury is located at doctor s office", "pln": ["(: cnet_atlocation_18d37091b8 (AtLocation injury doctor_s_office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "injury is located at emergency room", "pln": ["(: cnet_atlocation_1bba8305cc (AtLocation injury emergency_room) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "injury is located at hockey game", "pln": ["(: cnet_atlocation_73e569aa68 (AtLocation injury hockey_game) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "injury is located at hospital", "pln": ["(: cnet_atlocation_6bdf7b7e99 (AtLocation injury hospital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ink is located at fountain pen", "pln": ["(: cnet_atlocation_b3ed32547d (AtLocation ink fountain_pen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ink is located at printer", "pln": ["(: cnet_atlocation_ab6c83bcc0 (AtLocation ink printer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ink is located at squid", "pln": ["(: cnet_atlocation_1919506061 (AtLocation ink squid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "inmate is located at jail", "pln": ["(: cnet_atlocation_4a53bb7702 (AtLocation inmate jail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "insect is located at field", "pln": ["(: cnet_atlocation_116f7234c7 (AtLocation insect field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "insect is located at log", "pln": ["(: cnet_atlocation_1af32e0c4e (AtLocation insect log) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "instrument is located at case", "pln": ["(: cnet_atlocation_2abf2419d1 (AtLocation instrument case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "instrument is located at laboratory", "pln": ["(: cnet_atlocation_7741e016e2 (AtLocation instrument laboratory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "instrument is located at orchestra", "pln": ["(: cnet_atlocation_de91cb2cb2 (AtLocation instrument orchestra) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "instrument triangle is located at orchestra", "pln": ["(: cnet_atlocation_546b7fff0c (AtLocation instrument_triangle orchestra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "insulation is located at attic", "pln": ["(: cnet_atlocation_3c6d193668 (AtLocation insulation attic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "interior area is located at house", "pln": ["(: cnet_atlocation_8ccc5a5266 (AtLocation interior_area house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "intern is located at desk", "pln": ["(: cnet_atlocation_731c65ed11 (AtLocation intern desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "international new is located at newspaper", "pln": ["(: cnet_atlocation_84e80e199f (AtLocation international_new newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "intersection is located at city", "pln": ["(: cnet_atlocation_db496013e4 (AtLocation intersection city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "intersection is located at city street", "pln": ["(: cnet_atlocation_5c300ea34c (AtLocation intersection city_street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "intersection is located at corner of two street", "pln": ["(: cnet_atlocation_62d7afb735 (AtLocation intersection corner_of_two_street) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "intersection is located at place where two street meet", "pln": ["(: cnet_atlocation_f8e9a8ab46 (AtLocation intersection place_where_two_street_meet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "intersection is located at road", "pln": ["(: cnet_atlocation_bda36a1451 (AtLocation intersection road) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "inuits is located at arctic", "pln": ["(: cnet_atlocation_5441d3df57 (AtLocation inuits arctic) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "jelly beans is located at jar", "pln": ["(: cnet_atlocation_e4e1a59096 (AtLocation jelly_beans jar) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "intersection is located at street corner", "pln": ["(: cnet_atlocation_162c1d3415 (AtLocation intersection street_corner) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "interstate highway is located at america", "pln": ["(: cnet_atlocation_831868eb1d (AtLocation interstate_highway america) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "interstate highway is located at united state", "pln": ["(: cnet_atlocation_18d9a8ea6b (AtLocation interstate_highway united_state) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "inuit is located at arctic", "pln": ["(: cnet_atlocation_a36d286d32 (AtLocation inuit arctic) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "iron is located at house", "pln": ["(: cnet_atlocation_20cbe44f76 (AtLocation iron house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "iron is located at laundry room", "pln": ["(: cnet_atlocation_3ba8a3d462 (AtLocation iron laundry_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "isle is located at ocean", "pln": ["(: cnet_atlocation_b66190719a (AtLocation isle ocean) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "isle is located at sea", "pln": ["(: cnet_atlocation_554577486c (AtLocation isle sea) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "italian restaurant is located at city", "pln": ["(: cnet_atlocation_7ff38b4fad (AtLocation italian_restaurant city) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "item is located at store", "pln": ["(: cnet_atlocation_d74fe9dc72 (AtLocation item store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "item for sale is located at shop", "pln": ["(: cnet_atlocation_6d63a1e768 (AtLocation item_for_sale shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jack is located at trunk", "pln": ["(: cnet_atlocation_539a9f89df (AtLocation jack trunk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jacket is located at closet", "pln": ["(: cnet_atlocation_4596061fb6 (AtLocation jacket closet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jam is located at jar", "pln": ["(: cnet_atlocation_a235485909 (AtLocation jam jar) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jar is located at cupboard", "pln": ["(: cnet_atlocation_500a9fe222 (AtLocation jar cupboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jar is located at kitchen cupboard", "pln": ["(: cnet_atlocation_aa84ed3b2b (AtLocation jar kitchen_cupboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jar is located at pantry", "pln": ["(: cnet_atlocation_7f2d3c73a6 (AtLocation jar pantry) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jar is located at refrigerator", "pln": ["(: cnet_atlocation_9514d90ff7 (AtLocation jar refrigerator) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jar of pickle is located at supermarket", "pln": ["(: cnet_atlocation_cf2aa82986 (AtLocation jar_of_pickle supermarket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jean is located at closet", "pln": ["(: cnet_atlocation_7833990387 (AtLocation jean closet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jean is located at clothe store", "pln": ["(: cnet_atlocation_f6f61bb55c (AtLocation jean clothe_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jean is located at clothing store", "pln": ["(: cnet_atlocation_1e64f7b7b2 (AtLocation jean clothing_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jean is located at drawer", "pln": ["(: cnet_atlocation_a2d2c105aa (AtLocation jean drawer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jean is located at gap", "pln": ["(: cnet_atlocation_c4481754c1 (AtLocation jean gap) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jean is located at store", "pln": ["(: cnet_atlocation_e2e33d9696 (AtLocation jean store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jean is located at thrift store", "pln": ["(: cnet_atlocation_20916740e4 (AtLocation jean thrift_store) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jehovah s witness is located at front door", "pln": ["(: cnet_atlocation_62719356bd (AtLocation jehovah_s_witness front_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jelly is located at jar", "pln": ["(: cnet_atlocation_1bbccc969b (AtLocation jelly jar) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jelly is located at refridgerator", "pln": ["(: cnet_atlocation_5e8963d549 (AtLocation jelly refridgerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jelly bean is located at jar", "pln": ["(: cnet_atlocation_71fffb65a8 (AtLocation jelly_bean jar) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jellyfish is located at aquarium", "pln": ["(: cnet_atlocation_ee842890df (AtLocation jellyfish aquarium) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jellyfish is located at atlantic ocean", "pln": ["(: cnet_atlocation_7cf73191fa (AtLocation jellyfish atlantic_ocean) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "jellyfish is located at bay", "pln": ["(: cnet_atlocation_245dd1de55 (AtLocation jellyfish bay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jellyfish is located at hawaii", "pln": ["(: cnet_atlocation_ea48f3af4a (AtLocation jellyfish hawaii) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jellyfish is located at japanese restaurant", "pln": ["(: cnet_atlocation_87c298185f (AtLocation jellyfish japanese_restaurant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jellyfish is located at mediterranean sea", "pln": ["(: cnet_atlocation_f12cd74f22 (AtLocation jellyfish mediterranean_sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jellyfish is located at monterey bay", "pln": ["(: cnet_atlocation_82833210f1 (AtLocation jellyfish monterey_bay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "jellyfish is located at monterey bay aquarium", "pln": ["(: cnet_atlocation_15953a376f (AtLocation jellyfish monterey_bay_aquarium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jellyfish is located at most ocean", "pln": ["(: cnet_atlocation_4d9150f85b (AtLocation jellyfish most_ocean) (STV 1.0 0.9786))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jellyfish is located at ocean water", "pln": ["(: cnet_atlocation_e6f9714fe0 (AtLocation jellyfish ocean_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jellyfish is located at pacific ocean", "pln": ["(: cnet_atlocation_22ae658171 (AtLocation jellyfish pacific_ocean) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jellyfish is located at salt water", "pln": ["(: cnet_atlocation_efa27a16bb (AtLocation jellyfish salt_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jellyfish is located at store", "pln": ["(: cnet_atlocation_a609f43ae5 (AtLocation jellyfish store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jellyfish is located at warm ocean", "pln": ["(: cnet_atlocation_5aed5c53ed (AtLocation jellyfish warm_ocean) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jellyfish is located at warm ocean water", "pln": ["(: cnet_atlocation_28f09d7c89 (AtLocation jellyfish warm_ocean_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jellyfish is located at zoo", "pln": ["(: cnet_atlocation_3ba15aeaf0 (AtLocation jellyfish zoo) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jet fuel is located at airport", "pln": ["(: cnet_atlocation_ae92fe70fd (AtLocation jet_fuel airport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "jewelry is located at jewelry box", "pln": ["(: cnet_atlocation_f5747b3115 (AtLocation jewelry jewelry_box) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jewelry is located at safe", "pln": ["(: cnet_atlocation_59150ccdb4 (AtLocation jewelry safe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jewish people is located at synagogue", "pln": ["(: cnet_atlocation_0be985e7f0 (AtLocation jewish_people synagogue) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "jewish person is located at synagogue", "pln": ["(: cnet_atlocation_debcf7aed6 (AtLocation jewish_person synagogue) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jewler is located at jewlery store", "pln": ["(: cnet_atlocation_1398cc7f59 (AtLocation jewler jewlery_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "jude is located at synagogue", "pln": ["(: cnet_atlocation_08ce84b1e0 (AtLocation jude synagogue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "judge is located at courtroom", "pln": ["(: cnet_atlocation_53ed8e8157 (AtLocation judge courtroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "juice is located at fridge", "pln": ["(: cnet_atlocation_d2fe387aee (AtLocation juice fridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "juice is located at refrigerator", "pln": ["(: cnet_atlocation_85b3845dd2 (AtLocation juice refrigerator) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "junk is located at attic", "pln": ["(: cnet_atlocation_ba8d5d86e2 (AtLocation junk attic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "junk is located at bed", "pln": ["(: cnet_atlocation_ee7c4b3bfb (AtLocation junk bed) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "junk is located at drawer", "pln": ["(: cnet_atlocation_8b0d41813b (AtLocation junk drawer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "junk food is located at fast food restaurant", "pln": ["(: cnet_atlocation_309513dede (AtLocation junk_food fast_food_restaurant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "junk mail is located at mail", "pln": ["(: cnet_atlocation_cc1c66c53c (AtLocation junk_mail mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "junk mail is located at mail box", "pln": ["(: cnet_atlocation_3108c0ae67 (AtLocation junk_mail mail_box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "junk mail is located at waste bin", "pln": ["(: cnet_atlocation_42abb4d035 (AtLocation junk_mail waste_bin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kale is located at farmer s market", "pln": ["(: cnet_atlocation_76c57b72c8 (AtLocation kale farmer_s_market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kangaroo is located at australia", "pln": ["(: cnet_atlocation_19607e064c (AtLocation kangaroo australia) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "keepsake is located at trunk", "pln": ["(: cnet_atlocation_3631f3e7eb (AtLocation keepsake trunk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "keepsake is located at box", "pln": ["(: cnet_atlocation_c4468a0834 (AtLocation keepsake box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kelp is located at ocean", "pln": ["(: cnet_atlocation_68ea9b57a5 (AtLocation kelp ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ketchup is located at fridge", "pln": ["(: cnet_atlocation_72d2cf5f4b (AtLocation ketchup fridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ketchup is located at refridgerator", "pln": ["(: cnet_atlocation_8ee86d17b1 (AtLocation ketchup refridgerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kettle is located at kitchen", "pln": ["(: cnet_atlocation_c02bd0c1c6 (AtLocation kettle kitchen) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "key is located at keychain", "pln": ["(: cnet_atlocation_9a6c8ba442 (AtLocation key keychain) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "keys is located at piano", "pln": ["(: cnet_atlocation_0d0e55d16c (AtLocation keys piano) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "key is located at keyhole", "pln": ["(: cnet_atlocation_d4e697eb0d (AtLocation key keyhole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "key is located at pocket", "pln": ["(: cnet_atlocation_7c492bc4e2 (AtLocation key pocket) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "key is located at purse", "pln": ["(: cnet_atlocation_84cad564f1 (AtLocation key purse) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "key case is located at pocket", "pln": ["(: cnet_atlocation_5966a48c89 (AtLocation key_case pocket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "keyboard is located at desk", "pln": ["(: cnet_atlocation_966457676f (AtLocation keyboard desk) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "keyboard is located at office", "pln": ["(: cnet_atlocation_9a28673cd8 (AtLocation keyboard office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "keyboard instrument is located at band", "pln": ["(: cnet_atlocation_d83f9875da (AtLocation keyboard_instrument band) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "keyboard instrument is located at orchestra", "pln": ["(: cnet_atlocation_044b9485f5 (AtLocation keyboard_instrument orchestra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "key is located at piano", "pln": ["(: cnet_atlocation_8eb537f4b3 (AtLocation key piano) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "key is located at shelf", "pln": ["(: cnet_atlocation_04aa2f5c63 (AtLocation key shelf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kid s art work is located at fridge", "pln": ["(: cnet_atlocation_e44b4b892a (AtLocation kid_s_art_work fridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kid is located at park", "pln": ["(: cnet_atlocation_c256962ed3 (AtLocation kid park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kiev is located at ukraine", "pln": ["(: cnet_atlocation_0136b08099 (AtLocation kiev ukraine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "killer is located at death row", "pln": ["(: cnet_atlocation_552aa7c5a9 (AtLocation killer death_row) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "killing is located at war", "pln": ["(: cnet_atlocation_a0a4cc0d95 (AtLocation killing war) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kinetic energy is located at moving object", "pln": ["(: cnet_atlocation_1c9ab79d47 (AtLocation kinetic_energy moving_object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "king is located at castle", "pln": ["(: cnet_atlocation_0b7c88c9f1 (AtLocation king castle) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "king is located at court", "pln": ["(: cnet_atlocation_2aa88e2290 (AtLocation king court) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kingdom is located at book", "pln": ["(: cnet_atlocation_09e229518f (AtLocation kingdom book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kingdom is located at europe", "pln": ["(: cnet_atlocation_2fe70f23b9 (AtLocation kingdom europe) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kingdom is located at monarchy", "pln": ["(: cnet_atlocation_9806ecf3cd (AtLocation kingdom monarchy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kitchen is located at friend s house", "pln": ["(: cnet_atlocation_b5e6771b7a (AtLocation kitchen friend_s_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kitchen is located at resturant", "pln": ["(: cnet_atlocation_b5d0a2b2c8 (AtLocation kitchen resturant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kitchen table is located at furniture store", "pln": ["(: cnet_atlocation_f301bd429c (AtLocation kitchen_table furniture_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kitchen utensil is located at sink", "pln": ["(: cnet_atlocation_325978cd21 (AtLocation kitchen_utensil sink) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "kitchenette is located at house", "pln": ["(: cnet_atlocation_dfa05b125a (AtLocation kitchenette house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kite is located at air", "pln": ["(: cnet_atlocation_8158aeea0f (AtLocation kite air) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kite is located at sky", "pln": ["(: cnet_atlocation_92167292e5 (AtLocation kite sky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kite is located at toy store", "pln": ["(: cnet_atlocation_0ec22d18f4 (AtLocation kite toy_store) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kitten is located at apartment", "pln": ["(: cnet_atlocation_5cfff2ca80 (AtLocation kitten apartment) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kitten is located at bed", "pln": ["(: cnet_atlocation_9160cd14a9 (AtLocation kitten bed) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kitten is located at cage", "pln": ["(: cnet_atlocation_8bfe0fa02f (AtLocation kitten cage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kitten is located at child s arm", "pln": ["(: cnet_atlocation_3eb87a7068 (AtLocation kitten child_s_arm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kitten is located at farmhouse", "pln": ["(: cnet_atlocation_3614dc3895 (AtLocation kitten farmhouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kitten is located at floor", "pln": ["(: cnet_atlocation_6e660621c1 (AtLocation kitten floor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kitten is located at kitchen", "pln": ["(: cnet_atlocation_b346deb696 (AtLocation kitten kitchen) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kitten is located at lap", "pln": ["(: cnet_atlocation_d408fc42dd (AtLocation kitten lap) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kitten is located at litterbox", "pln": ["(: cnet_atlocation_4d8bb7db7c (AtLocation kitten litterbox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kitten is located at little girl s lap", "pln": ["(: cnet_atlocation_72f2944281 (AtLocation kitten little_girl_s_lap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kitten is located at person home", "pln": ["(: cnet_atlocation_726a2c43b6 (AtLocation kitten person_home) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kitten is located at petshop", "pln": ["(: cnet_atlocation_89ff8a3633 (AtLocation kitten petshop) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kitten is located at proximity to mother", "pln": ["(: cnet_atlocation_a3c041068a (AtLocation kitten proximity_to_mother) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kitten is located at shelter", "pln": ["(: cnet_atlocation_5d73a561e7 (AtLocation kitten shelter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kitten is located at veterinarian s office", "pln": ["(: cnet_atlocation_90e3d8ebd1 (AtLocation kitten veterinarian_s_office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kitten is located at veterinarian office", "pln": ["(: cnet_atlocation_62c1a90825 (AtLocation kitten veterinarian_office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kitten is located at warm place", "pln": ["(: cnet_atlocation_b83851429b (AtLocation kitten warm_place) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kitten is located at yard", "pln": ["(: cnet_atlocation_3381a5d527 (AtLocation kitten yard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kitten is located at zoo", "pln": ["(: cnet_atlocation_affd8b9038 (AtLocation kitten zoo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "kleenex is located at pocket", "pln": ["(: cnet_atlocation_5a4bdd9493 (AtLocation kleenex pocket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "knee is located at table", "pln": ["(: cnet_atlocation_fc6264e093 (AtLocation knee table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "knick knack is located at shelf", "pln": ["(: cnet_atlocation_68e2a42bad (AtLocation knick_knack shelf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "knickknack is located at drawer", "pln": ["(: cnet_atlocation_2151fe093a (AtLocation knickknack drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "knife is located at drawer", "pln": ["(: cnet_atlocation_10f00432c7 (AtLocation knife drawer) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "knife is located at kitchen", "pln": ["(: cnet_atlocation_b9560c8f0a (AtLocation knife kitchen) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "knife is located at kitchen drawer", "pln": ["(: cnet_atlocation_8dbf3a6068 (AtLocation knife kitchen_drawer) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "knife is located at pocket", "pln": ["(: cnet_atlocation_0e87359476 (AtLocation knife pocket) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "knight is located at castle", "pln": ["(: cnet_atlocation_96ea163305 (AtLocation knight castle) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "knight is located at chess board", "pln": ["(: cnet_atlocation_330fcf30de (AtLocation knight chess_board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "knight is located at chess set", "pln": ["(: cnet_atlocation_f47587921c (AtLocation knight chess_set) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "knight is located at historical novel", "pln": ["(: cnet_atlocation_48d2ad2573 (AtLocation knight historical_novel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "knight in castle is located at midieval time", "pln": ["(: cnet_atlocation_bc2bc2ba66 (AtLocation knight_in_castle midieval_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "knive is located at kitchen", "pln": ["(: cnet_atlocation_5b5e9ce82e (AtLocation knive kitchen) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "knive is located at store", "pln": ["(: cnet_atlocation_d408ad1461 (AtLocation knive store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "knob is located at door", "pln": ["(: cnet_atlocation_610cefe418 (AtLocation knob door) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "knowledge is located at encyclopedia", "pln": ["(: cnet_atlocation_87f493c025 (AtLocation knowledge encyclopedia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "knuckle is located at finger", "pln": ["(: cnet_atlocation_07eac5be58 (AtLocation knuckle finger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "koala is located at eucalyptus", "pln": ["(: cnet_atlocation_192db07fde (AtLocation koala eucalyptus) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "koala is located at eucalyptus tree in australia", "pln": ["(: cnet_atlocation_326db22b88 (AtLocation koala eucalyptus_tree_in_australia) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "koala is located at jungle", "pln": ["(: cnet_atlocation_a3435ca3bf (AtLocation koala jungle) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "koala is located at natural habitat", "pln": ["(: cnet_atlocation_aec30750f2 (AtLocation koala natural_habitat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "koala is located at queensland", "pln": ["(: cnet_atlocation_d0b85dfac6 (AtLocation koala queensland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "koala is located at wood", "pln": ["(: cnet_atlocation_08b5ea534d (AtLocation koala wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "kosher deli is located at jerusalem", "pln": ["(: cnet_atlocation_1fd5a3cfc0 (AtLocation kosher_deli jerusalem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kosher deli is located at jewish neighborhood", "pln": ["(: cnet_atlocation_f9d1fd1685 (AtLocation kosher_deli jewish_neighborhood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kosher deli is located at new york", "pln": ["(: cnet_atlocation_a19e4a974c (AtLocation kosher_deli new_york) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kosher deli is located at new york city", "pln": ["(: cnet_atlocation_b5a32f8c09 (AtLocation kosher_deli new_york_city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kosher delicatessen is located at new york city", "pln": ["(: cnet_atlocation_2223e027fe (AtLocation kosher_delicatessen new_york_city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kosher restaurant is located at jewish neighborhood", "pln": ["(: cnet_atlocation_2c23cbe3ff (AtLocation kosher_restaurant jewish_neighborhood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kosher restaurant is located at new york", "pln": ["(: cnet_atlocation_dd182a1401 (AtLocation kosher_restaurant new_york) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "kosher restaurant is located at new york city", "pln": ["(: cnet_atlocation_dfe17888d3 (AtLocation kosher_restaurant new_york_city) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "label maker is located at mail room", "pln": ["(: cnet_atlocation_42fc26949d (AtLocation label_maker mail_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "label maker is located at office", "pln": ["(: cnet_atlocation_a56d57d883 (AtLocation label_maker office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "labeler is located at desk", "pln": ["(: cnet_atlocation_454eceb068 (AtLocation labeler desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "labeler is located at supermarket", "pln": ["(: cnet_atlocation_b63cf17d1e (AtLocation labeler supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ladder is located at garage", "pln": ["(: cnet_atlocation_a3b747f177 (AtLocation ladder garage) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ladder is located at hardware store", "pln": ["(: cnet_atlocation_eb1bb763c7 (AtLocation ladder hardware_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lady is located at church", "pln": ["(: cnet_atlocation_4561df3a2e (AtLocation lady church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lady is located at supermarket", "pln": ["(: cnet_atlocation_3937cedd20 (AtLocation lady supermarket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lake is located at countryside", "pln": ["(: cnet_atlocation_4464af3221 (AtLocation lake countryside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "lake is located at michigan", "pln": ["(: cnet_atlocation_b50f41978c (AtLocation lake michigan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lake is located at mountain", "pln": ["(: cnet_atlocation_6ef06579be (AtLocation lake mountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lake is located at park", "pln": ["(: cnet_atlocation_57480d7b54 (AtLocation lake park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lamp is located at bedroom", "pln": ["(: cnet_atlocation_ba420f19bd (AtLocation lamp bedroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lamp is located at building", "pln": ["(: cnet_atlocation_746f375e3e (AtLocation lamp building) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "lamp is located at corner", "pln": ["(: cnet_atlocation_ee1e396d85 (AtLocation lamp corner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "lamp is located at desk", "pln": ["(: cnet_atlocation_4c37642b76 (AtLocation lamp desk) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lamp is located at desktop", "pln": ["(: cnet_atlocation_a73b895aa4 (AtLocation lamp desktop) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lamp is located at house", "pln": ["(: cnet_atlocation_939589b544 (AtLocation lamp house) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lamp is located at office", "pln": ["(: cnet_atlocation_861319ab50 (AtLocation lamp office) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lamp is located at store", "pln": ["(: cnet_atlocation_17fba2f94b (AtLocation lamp store) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lamp is located at table", "pln": ["(: cnet_atlocation_6474a71538 (AtLocation lamp table) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lamp post is located at street", "pln": ["(: cnet_atlocation_019725b936 (AtLocation lamp_post street) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lamp post is located at street corner", "pln": ["(: cnet_atlocation_6a175210a2 (AtLocation lamp_post street_corner) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "land is located at country", "pln": ["(: cnet_atlocation_f8a9b16735 (AtLocation land country) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "land is located at ocean", "pln": ["(: cnet_atlocation_c38e0a3880 (AtLocation land ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "land mass is located at surface of earth", "pln": ["(: cnet_atlocation_3276bd3466 (AtLocation land_mass surface_of_earth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "landing is located at stairwell", "pln": ["(: cnet_atlocation_aaf8ce2d1f (AtLocation landing stairwell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "lanes is located at bowling alley", "pln": ["(: cnet_atlocation_b2b4b17aaa (AtLocation lanes bowling_alley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "landlord is located at apartment", "pln": ["(: cnet_atlocation_a2dcf2b635 (AtLocation landlord apartment) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "landmass is located at atla", "pln": ["(: cnet_atlocation_8aea0077a8 (AtLocation landmass atla) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lane is located at bowling alley", "pln": ["(: cnet_atlocation_c7099b206e (AtLocation lane bowling_alley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lane marking is located at street", "pln": ["(: cnet_atlocation_f4da799609 (AtLocation lane_marking street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lantern is located at house", "pln": ["(: cnet_atlocation_fdba4c3f8c (AtLocation lantern house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "large city shopping mall is located at london", "pln": ["(: cnet_atlocation_42882e7918 (AtLocation large_city_shopping_mall london) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "large container is located at supermarket", "pln": ["(: cnet_atlocation_881fcb8914 (AtLocation large_container supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "large container is located at warehouse", "pln": ["(: cnet_atlocation_775e5cef34 (AtLocation large_container warehouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "large food store is located at city", "pln": ["(: cnet_atlocation_0e98f573de (AtLocation large_food_store city) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "large food store is located at large city", "pln": ["(: cnet_atlocation_2da3059fa8 (AtLocation large_food_store large_city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "large food store is located at suburbs", "pln": ["(: cnet_atlocation_93a5687bee (AtLocation large_food_store suburbs) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "large food store is located at michigan", "pln": ["(: cnet_atlocation_bbc4d9586e (AtLocation large_food_store michigan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "large food store is located at midwestern u s", "pln": ["(: cnet_atlocation_b258deefc8 (AtLocation large_food_store midwestern_u_s) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "large food store is located at populous area", "pln": ["(: cnet_atlocation_bd4bc99f2e (AtLocation large_food_store populous_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "large food store is located at suburb", "pln": ["(: cnet_atlocation_573662a06c (AtLocation large_food_store suburb) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "large ship is located at sea", "pln": ["(: cnet_atlocation_5479860120 (AtLocation large_ship sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "large supermarket is located at city", "pln": ["(: cnet_atlocation_dc84ca21e9 (AtLocation large_supermarket city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "large wave is located at ocean", "pln": ["(: cnet_atlocation_92899942aa (AtLocation large_wave ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "las vega is located at casino", "pln": ["(: cnet_atlocation_4ada5f56e4 (AtLocation las_vega casino) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lasagna is located at freezer", "pln": ["(: cnet_atlocation_a6b91148b1 (AtLocation lasagna freezer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lasagna is located at plate", "pln": ["(: cnet_atlocation_dc6639506d (AtLocation lasagna plate) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "laser is located at cd player", "pln": ["(: cnet_atlocation_dc713ae14a (AtLocation laser cd_player) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "laser is located at laboratory", "pln": ["(: cnet_atlocation_d04c26fb0d (AtLocation laser laboratory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "launch pad is located at cape kennedy", "pln": ["(: cnet_atlocation_c39a40a143 (AtLocation launch_pad cape_kennedy) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "launch pad is located at space center", "pln": ["(: cnet_atlocation_e258b473bf (AtLocation launch_pad space_center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "lawn is located at united states", "pln": ["(: cnet_atlocation_4bb9ba316f (AtLocation lawn united_states) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "launch platform is located at cape canaveral", "pln": ["(: cnet_atlocation_f79dbce29d (AtLocation launch_platform cape_canaveral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "launch platform is located at nasa", "pln": ["(: cnet_atlocation_c219e08188 (AtLocation launch_platform nasa) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "launching pad is located at nasa", "pln": ["(: cnet_atlocation_65badcf023 (AtLocation launching_pad nasa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "laundry room is located at apartment building", "pln": ["(: cnet_atlocation_5ccee5c960 (AtLocation laundry_room apartment_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "laundry room is located at house", "pln": ["(: cnet_atlocation_314f4fc1f6 (AtLocation laundry_room house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lava is located at volcano", "pln": ["(: cnet_atlocation_994b81541e (AtLocation lava volcano) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lawn is located at suburb", "pln": ["(: cnet_atlocation_0570becba0 (AtLocation lawn suburb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lawn is located at united state", "pln": ["(: cnet_atlocation_c7be318692 (AtLocation lawn united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lawn is located at yard", "pln": ["(: cnet_atlocation_59943141d6 (AtLocation lawn yard) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lawn chair is located at lawn", "pln": ["(: cnet_atlocation_0143359667 (AtLocation lawn_chair lawn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lawn mower is located at garage", "pln": ["(: cnet_atlocation_a7cca3dd7f (AtLocation lawn_mower garage) (STV 1.0 0.9756))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lawn mower is located at shed", "pln": ["(: cnet_atlocation_f88609a1ca (AtLocation lawn_mower shed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lawn ornament is located at lawn", "pln": ["(: cnet_atlocation_fe5d26cdea (AtLocation lawn_ornament lawn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lawnmower is located at garage", "pln": ["(: cnet_atlocation_2594936b4e (AtLocation lawnmower garage) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lawyer is located at courtroom", "pln": ["(: cnet_atlocation_6164021f0b (AtLocation lawyer courtroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lazy boyfriend is located at bed", "pln": ["(: cnet_atlocation_8c1907648d (AtLocation lazy_boyfriend bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lead pencil is located at classroom", "pln": ["(: cnet_atlocation_a849abd43b (AtLocation lead_pencil classroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lead pencil is located at desk", "pln": ["(: cnet_atlocation_40c8e59b66 (AtLocation lead_pencil desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "lead pencil is located at school", "pln": ["(: cnet_atlocation_0907996896 (AtLocation lead_pencil school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lead pencil is located at school supply section of store", "pln": ["(: cnet_atlocation_0645bb7196 (AtLocation lead_pencil school_supply_section_of_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "leader is located at army", "pln": ["(: cnet_atlocation_c627d023f4 (AtLocation leader army) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "leader is located at country", "pln": ["(: cnet_atlocation_6f3921ef23 (AtLocation leader country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "leader is located at pack", "pln": ["(: cnet_atlocation_05ab810241 (AtLocation leader pack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "leaf is located at forrest", "pln": ["(: cnet_atlocation_ef06e212aa (AtLocation leaf forrest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "leaf is located at tree", "pln": ["(: cnet_atlocation_32a3bbeda8 (AtLocation leaf tree) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "leather is located at cobbler s shop", "pln": ["(: cnet_atlocation_de154241a2 (AtLocation leather cobbler_s_shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "leather is located at stable", "pln": ["(: cnet_atlocation_972f313b7a (AtLocation leather stable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "leave is located at roof", "pln": ["(: cnet_atlocation_0b3c68454c (AtLocation leave roof) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "leave is located at street", "pln": ["(: cnet_atlocation_dc4bfb6624 (AtLocation leave street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "leave is located at tree", "pln": ["(: cnet_atlocation_9c83456671 (AtLocation leave tree) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "led is located at electronic equipment", "pln": ["(: cnet_atlocation_a210a567c2 (AtLocation led electronic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "ledger is located at accountant s office", "pln": ["(: cnet_atlocation_12e089d139 (AtLocation ledger accountant_s_office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "left over is located at fridge", "pln": ["(: cnet_atlocation_08354e84bd (AtLocation left_over fridge) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "leftover is located at container", "pln": ["(: cnet_atlocation_064ce68ec7 (AtLocation leftover container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "leftover is located at fridge", "pln": ["(: cnet_atlocation_7f471ae037 (AtLocation leftover fridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "leftover is located at refrigerator", "pln": ["(: cnet_atlocation_1a9169c0ea (AtLocation leftover refrigerator) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "leg is located at bucket of chicken", "pln": ["(: cnet_atlocation_1939fc67fd (AtLocation leg bucket_of_chicken) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lego is located at toy store", "pln": ["(: cnet_atlocation_1a9b16491d (AtLocation lego toy_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "leg is located at table", "pln": ["(: cnet_atlocation_72972c0e9a (AtLocation leg table) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lemon peel is located at bar", "pln": ["(: cnet_atlocation_90520bb5e3 (AtLocation lemon_peel bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lemur is located at cage", "pln": ["(: cnet_atlocation_014d1d079f (AtLocation lemur cage) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lemur is located at forrest", "pln": ["(: cnet_atlocation_db3f8e0487 (AtLocation lemur forrest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "lemur is located at hole", "pln": ["(: cnet_atlocation_ff4bceaadd (AtLocation lemur hole) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lemur is located at india", "pln": ["(: cnet_atlocation_fa6fc4a34e (AtLocation lemur india) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lemur is located at madagascar forest", "pln": ["(: cnet_atlocation_a043d32015 (AtLocation lemur madagascar_forest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lemur is located at rain forest", "pln": ["(: cnet_atlocation_87abbe02d2 (AtLocation lemur rain_forest) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lemur is located at tree of madagascar", "pln": ["(: cnet_atlocation_917575539e (AtLocation lemur tree_of_madagascar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lemur is located at wild", "pln": ["(: cnet_atlocation_f293a02076 (AtLocation lemur wild) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "len is located at camera", "pln": ["(: cnet_atlocation_652d2123aa (AtLocation len camera) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "len is located at microscope", "pln": ["(: cnet_atlocation_d2e58534b3 (AtLocation len microscope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "len is located at telescope", "pln": ["(: cnet_atlocation_6a757db083 (AtLocation len telescope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "letter is located at alphabet", "pln": ["(: cnet_atlocation_31210f07a9 (AtLocation letter alphabet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "letter is located at envelope", "pln": ["(: cnet_atlocation_1900cb4596 (AtLocation letter envelope) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "letter is located at mail", "pln": ["(: cnet_atlocation_4dfa5f7bb5 (AtLocation letter mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "letter is located at mail box", "pln": ["(: cnet_atlocation_07e53f241c (AtLocation letter mail_box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "letter is located at post office", "pln": ["(: cnet_atlocation_69dd105055 (AtLocation letter post_office) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "letter from parent is located at mail", "pln": ["(: cnet_atlocation_80b276612b (AtLocation letter_from_parent mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "letter opener is located at office", "pln": ["(: cnet_atlocation_b7118b9c72 (AtLocation letter_opener office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "letter slot is located at post office", "pln": ["(: cnet_atlocation_5074eb204d (AtLocation letter_slot post_office) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "letter from friend is located at mail box", "pln": ["(: cnet_atlocation_38e3f22af2 (AtLocation letter_from_friend mail_box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "letter to editor is located at newspaper", "pln": ["(: cnet_atlocation_01700d3f1e (AtLocation letter_to_editor newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lettuce is located at farmer s market", "pln": ["(: cnet_atlocation_8d8ba663de (AtLocation lettuce farmer_s_market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lettuce is located at refrigerator", "pln": ["(: cnet_atlocation_9293b7e4c7 (AtLocation lettuce refrigerator) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lettuce is located at salad", "pln": ["(: cnet_atlocation_4f8430eaee (AtLocation lettuce salad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "lettuce is located at supermarket", "pln": ["(: cnet_atlocation_4dee2b5dbb (AtLocation lettuce supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "librarian is located at library", "pln": ["(: cnet_atlocation_3ff6747c00 (AtLocation librarian library) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "library is located at school", "pln": ["(: cnet_atlocation_4ba0214284 (AtLocation library school) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "library is located at town", "pln": ["(: cnet_atlocation_392956a6cc (AtLocation library town) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "life is located at earth", "pln": ["(: cnet_atlocation_4870f622c7 (AtLocation life earth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "life is located at surface of earth", "pln": ["(: cnet_atlocation_a9e626082b (AtLocation life surface_of_earth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lifeguard is located at beach", "pln": ["(: cnet_atlocation_ebff6a8f7a (AtLocation lifeguard beach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lifeguard is located at swimming pool", "pln": ["(: cnet_atlocation_2eff56dae7 (AtLocation lifeguard swimming_pool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "light is located at attic", "pln": ["(: cnet_atlocation_a03f0621c8 (AtLocation light attic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "light is located at desk", "pln": ["(: cnet_atlocation_ec0d8817c0 (AtLocation light desk) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "light pole is located at street", "pln": ["(: cnet_atlocation_33718a95c9 (AtLocation light_pole street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "light pole is located at street corner", "pln": ["(: cnet_atlocation_5657aa9017 (AtLocation light_pole street_corner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "light post is located at street corner", "pln": ["(: cnet_atlocation_ad224f5d26 (AtLocation light_post street_corner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "light is located at building", "pln": ["(: cnet_atlocation_d12512c92f (AtLocation light building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "light is located at plane", "pln": ["(: cnet_atlocation_c88c693ecd (AtLocation light plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lima bean is located at supermarket", "pln": ["(: cnet_atlocation_d78803855f (AtLocation lima_bean supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "line is located at bank", "pln": ["(: cnet_atlocation_514590f5ab (AtLocation line bank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "line is located at bus stop", "pln": ["(: cnet_atlocation_7bf7c606f5 (AtLocation line bus_stop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "line is located at graph", "pln": ["(: cnet_atlocation_3428f0e0d9 (AtLocation line graph) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "line is located at post office", "pln": ["(: cnet_atlocation_edf2e3b567 (AtLocation line post_office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "line is located at store", "pln": ["(: cnet_atlocation_88417fab93 (AtLocation line store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "linen is located at cabinet", "pln": ["(: cnet_atlocation_01691fc84b (AtLocation linen cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "linen is located at closet", "pln": ["(: cnet_atlocation_d650e3e6e2 (AtLocation linen closet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "linen is located at dresser drawer", "pln": ["(: cnet_atlocation_28f8c5018e (AtLocation linen dresser_drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "linen is located at linen closet", "pln": ["(: cnet_atlocation_6ac107429f (AtLocation linen linen_closet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "linen chest is located at bedroom", "pln": ["(: cnet_atlocation_a2cec01510 (AtLocation linen_chest bedroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "linen chest is located at closet", "pln": ["(: cnet_atlocation_6ef8f44d3c (AtLocation linen_chest closet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "linen chest is located at house", "pln": ["(: cnet_atlocation_c701128c82 (AtLocation linen_chest house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "linen closet is located at hallway", "pln": ["(: cnet_atlocation_8937783f81 (AtLocation linen_closet hallway) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "linen closet is located at home", "pln": ["(: cnet_atlocation_3600daa754 (AtLocation linen_closet home) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "linen closet is located at house", "pln": ["(: cnet_atlocation_5494403739 (AtLocation linen_closet house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "line is located at street", "pln": ["(: cnet_atlocation_a3d2c8b67b (AtLocation line street) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "linoleum is located at floor", "pln": ["(: cnet_atlocation_eec998386f (AtLocation linoleum floor) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "linoleum is located at kitchen", "pln": ["(: cnet_atlocation_82981f8a54 (AtLocation linoleum kitchen) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lint is located at pocket", "pln": ["(: cnet_atlocation_7e975c06a6 (AtLocation lint pocket) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lint is located at purse", "pln": ["(: cnet_atlocation_1dad7c6676 (AtLocation lint purse) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "linux is located at computer", "pln": ["(: cnet_atlocation_c4f1696ea7 (AtLocation linux computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lion is located at africa", "pln": ["(: cnet_atlocation_d81021df31 (AtLocation lion africa) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lion is located at veldt", "pln": ["(: cnet_atlocation_0e182d6fc2 (AtLocation lion veldt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lion is located at zoo", "pln": ["(: cnet_atlocation_0c0552e92a (AtLocation lion zoo) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lip is located at mouth", "pln": ["(: cnet_atlocation_cd4aeaea4f (AtLocation lip mouth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lip is located at face", "pln": ["(: cnet_atlocation_a694f288ca (AtLocation lip face) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lipstick is located at purse", "pln": ["(: cnet_atlocation_4c7808a698 (AtLocation lipstick purse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lipstick case is located at purse", "pln": ["(: cnet_atlocation_854fa34c1f (AtLocation lipstick_case purse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "liquid is located at container", "pln": ["(: cnet_atlocation_3d4ba0303d (AtLocation liquid container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "liquor is located at bar", "pln": ["(: cnet_atlocation_2bdadc8c87 (AtLocation liquor bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "liquor glass is located at bar", "pln": ["(: cnet_atlocation_023c0e488a (AtLocation liquor_glass bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "liquor glass is located at barroom", "pln": ["(: cnet_atlocation_0edb9c8cac (AtLocation liquor_glass barroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "liquor glass is located at pub", "pln": ["(: cnet_atlocation_757a2a4352 (AtLocation liquor_glass pub) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "list of appointment is located at briefcase", "pln": ["(: cnet_atlocation_b714c7615d (AtLocation list_of_appointment briefcase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "list of thing to do is located at desk", "pln": ["(: cnet_atlocation_9aa5c8ec8c (AtLocation list_of_thing_to_do desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "literature is located at library", "pln": ["(: cnet_atlocation_1ae992c731 (AtLocation literature library) (STV 1.0 0.9748))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "litter is located at park", "pln": ["(: cnet_atlocation_a4d653e8f7 (AtLocation litter park) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "living room is located at apartment", "pln": ["(: cnet_atlocation_7c0388c618 (AtLocation living_room apartment) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "living room is located at home", "pln": ["(: cnet_atlocation_21df66c4e0 (AtLocation living_room home) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lizard is located at arid region", "pln": ["(: cnet_atlocation_e47941319e (AtLocation lizard arid_region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lizard is located at bermuda", "pln": ["(: cnet_atlocation_02b41f8367 (AtLocation lizard bermuda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lizard is located at book", "pln": ["(: cnet_atlocation_22b96b29dc (AtLocation lizard book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lizard is located at bush", "pln": ["(: cnet_atlocation_1ca3788a8d (AtLocation lizard bush) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lizard is located at bushe", "pln": ["(: cnet_atlocation_d43f70fb22 (AtLocation lizard bushe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lizard is located at cage", "pln": ["(: cnet_atlocation_b2e77cafbd (AtLocation lizard cage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lizard is located at california", "pln": ["(: cnet_atlocation_69337ab40f (AtLocation lizard california) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lizard is located at china", "pln": ["(: cnet_atlocation_47dbbe549b (AtLocation lizard china) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lizard is located at dessert", "pln": ["(: cnet_atlocation_13edd837c7 (AtLocation lizard dessert) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lizard is located at dry rocky area", "pln": ["(: cnet_atlocation_e6b7ad7f74 (AtLocation lizard dry_rocky_area) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lizard is located at forrest", "pln": ["(: cnet_atlocation_2f4691941a (AtLocation lizard forrest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lizard is located at garden", "pln": ["(: cnet_atlocation_d1f40527bc (AtLocation lizard garden) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lizard is located at hot place", "pln": ["(: cnet_atlocation_309132776e (AtLocation lizard hot_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lizard is located at house", "pln": ["(: cnet_atlocation_f90a9ce7ca (AtLocation lizard house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "lizard is located at italy", "pln": ["(: cnet_atlocation_4549c3dc27 (AtLocation lizard italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lizard is located at lizard cage", "pln": ["(: cnet_atlocation_8793635770 (AtLocation lizard lizard_cage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lizard is located at new mexico", "pln": ["(: cnet_atlocation_7095fdce1c (AtLocation lizard new_mexico) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lizard is located at reptile house", "pln": ["(: cnet_atlocation_06ab15ab85 (AtLocation lizard reptile_house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lizard is located at rock", "pln": ["(: cnet_atlocation_ca3ae76f32 (AtLocation lizard rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lizard is located at sun", "pln": ["(: cnet_atlocation_329601e17c (AtLocation lizard sun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lizard is located at tropic", "pln": ["(: cnet_atlocation_0cc8cb8d49 (AtLocation lizard tropic) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lizard is located at utah", "pln": ["(: cnet_atlocation_0b629dd3f9 (AtLocation lizard utah) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lizard is located at wild", "pln": ["(: cnet_atlocation_13160289b2 (AtLocation lizard wild) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "lizard is located at yard", "pln": ["(: cnet_atlocation_23420a008a (AtLocation lizard yard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "loaf is located at breadbox", "pln": ["(: cnet_atlocation_67e02096a5 (AtLocation loaf breadbox) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "loaf of bread is located at breadbox", "pln": ["(: cnet_atlocation_ac8b47398f (AtLocation loaf_of_bread breadbox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lobster is located at ocean", "pln": ["(: cnet_atlocation_0303ec99cc (AtLocation lobster ocean) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "lobster is located at water", "pln": ["(: cnet_atlocation_78cc1ea3cc (AtLocation lobster water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lock is located at door", "pln": ["(: cnet_atlocation_6abff03e3f (AtLocation lock door) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lock is located at front door", "pln": ["(: cnet_atlocation_b662a7c540 (AtLocation lock front_door) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lock is located at gate", "pln": ["(: cnet_atlocation_7ecc6216d7 (AtLocation lock gate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "locker room is located at gymnasium", "pln": ["(: cnet_atlocation_5a7061a0c5 (AtLocation locker_room gymnasium) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "locker room is located at health club", "pln": ["(: cnet_atlocation_75b0a316d2 (AtLocation locker_room health_club) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "loft is located at soho", "pln": ["(: cnet_atlocation_08ca2529ea (AtLocation loft soho) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "loge seat is located at theater", "pln": ["(: cnet_atlocation_aa2fd2b326 (AtLocation loge_seat theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "logic is located at school", "pln": ["(: cnet_atlocation_b30fd26456 (AtLocation logic school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "long line is located at airport", "pln": ["(: cnet_atlocation_b29031915e (AtLocation long_line airport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "loose change is located at pocket", "pln": ["(: cnet_atlocation_5f4cce9368 (AtLocation loose_change pocket) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "loose shingle is located at roof", "pln": ["(: cnet_atlocation_0d29fd8d45 (AtLocation loose_shingle roof) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lost child is located at park", "pln": ["(: cnet_atlocation_ccd7587d9f (AtLocation lost_child park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lost item is located at bed", "pln": ["(: cnet_atlocation_9edca53910 (AtLocation lost_item bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lost sock is located at bed", "pln": ["(: cnet_atlocation_d4e384c14b (AtLocation lost_sock bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lot of book is located at library", "pln": ["(: cnet_atlocation_52e1ec0abf (AtLocation lot_of_book library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lot of car is located at mall", "pln": ["(: cnet_atlocation_581dd4f977 (AtLocation lot_of_car mall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lot of crap is located at television", "pln": ["(: cnet_atlocation_97d9128c9d (AtLocation lot_of_crap television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lot of speaker is located at concert", "pln": ["(: cnet_atlocation_862551f18b (AtLocation lot_of_speaker concert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "love is located at family", "pln": ["(: cnet_atlocation_b34b3ff4f3 (AtLocation love family) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "love is located at marriage", "pln": ["(: cnet_atlocation_db8540a955 (AtLocation love marriage) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "low gravity is located at moon", "pln": ["(: cnet_atlocation_88eb46cb0a (AtLocation low_gravity moon) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "luggage is located at bus stop", "pln": ["(: cnet_atlocation_c065b106b6 (AtLocation luggage bus_stop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "luggage is located at closet", "pln": ["(: cnet_atlocation_ae2c071d4d (AtLocation luggage closet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "luggage is located at trunk", "pln": ["(: cnet_atlocation_50ba5541fa (AtLocation luggage trunk) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "lunch room is located at school", "pln": ["(: cnet_atlocation_78d0128b08 (AtLocation lunch_room school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "macaroni is located at supermarket", "pln": ["(: cnet_atlocation_426a2c704e (AtLocation macaroni supermarket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "machine is located at barn", "pln": ["(: cnet_atlocation_5d3f6f3ae5 (AtLocation machine barn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "machine is located at house", "pln": ["(: cnet_atlocation_de48ac5c76 (AtLocation machine house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "machine is located at industrial area", "pln": ["(: cnet_atlocation_da0781e838 (AtLocation machine industrial_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "machine is located at laboratory", "pln": ["(: cnet_atlocation_5f39f7c7b7 (AtLocation machine laboratory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "machine is located at museum", "pln": ["(: cnet_atlocation_91d2fc1723 (AtLocation machine museum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "machine is located at office", "pln": ["(: cnet_atlocation_f7d52e464c (AtLocation machine office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "machine gun is located at armory", "pln": ["(: cnet_atlocation_6f4fff9fdd (AtLocation machine_gun armory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "machine gun is located at arsenal", "pln": ["(: cnet_atlocation_7d3f8a6e6d (AtLocation machine_gun arsenal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "magazine is located at bed", "pln": ["(: cnet_atlocation_9977c30c2e (AtLocation magazine bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "mammoth is located at ancient times", "pln": ["(: cnet_atlocation_216963221c (AtLocation mammoth ancient_times) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "magazine is located at library", "pln": ["(: cnet_atlocation_668f2045ca (AtLocation magazine library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "magazine is located at bookstore", "pln": ["(: cnet_atlocation_8af76eb214 (AtLocation magazine bookstore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "magazine is located at doctor", "pln": ["(: cnet_atlocation_6de7a726ee (AtLocation magazine doctor) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "magazine is located at market", "pln": ["(: cnet_atlocation_7c28a3d87b (AtLocation magazine market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "magazine is located at table", "pln": ["(: cnet_atlocation_c482a778ea (AtLocation magazine table) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "magazine is located at train station", "pln": ["(: cnet_atlocation_e5bce0a62e (AtLocation magazine train_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "magnet is located at fridge", "pln": ["(: cnet_atlocation_a96b0725ce (AtLocation magnet fridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "magnet is located at speaker", "pln": ["(: cnet_atlocation_43547b7be9 (AtLocation magnet speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "magnetic poetry is located at fridge", "pln": ["(: cnet_atlocation_18ca3fd195 (AtLocation magnetic_poetry fridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "maid is located at hotel", "pln": ["(: cnet_atlocation_3956f77510 (AtLocation maid hotel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "maid is located at at hotel", "pln": ["(: cnet_atlocation_f266e61120 (AtLocation maid at_hotel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mail is located at house", "pln": ["(: cnet_atlocation_d186c24f19 (AtLocation mail house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mail is located at mail box", "pln": ["(: cnet_atlocation_e143e40b9a (AtLocation mail mail_box) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mail is located at post office", "pln": ["(: cnet_atlocation_04e679911f (AtLocation mail post_office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mail is located at table", "pln": ["(: cnet_atlocation_d9adb04c8e (AtLocation mail table) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mail box is located at street corner", "pln": ["(: cnet_atlocation_50dd1d32d9 (AtLocation mail_box street_corner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mailbox is located at apartment complex", "pln": ["(: cnet_atlocation_d7da16e5b5 (AtLocation mailbox apartment_complex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mailbox is located at porch", "pln": ["(: cnet_atlocation_a74b9b7f49 (AtLocation mailbox porch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mailbox is located at post office", "pln": ["(: cnet_atlocation_18acd6816e (AtLocation mailbox post_office) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mailbox is located at street corner", "pln": ["(: cnet_atlocation_bc14c5f958 (AtLocation mailbox street_corner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mailboxe is located at apartment", "pln": ["(: cnet_atlocation_08cdc97ecb (AtLocation mailboxe apartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mailman is located at front door", "pln": ["(: cnet_atlocation_f1f3bafb8c (AtLocation mailman front_door) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mailman is located at post office", "pln": ["(: cnet_atlocation_3de9036a7f (AtLocation mailman post_office) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "main artery is located at body", "pln": ["(: cnet_atlocation_7b6aae58cf (AtLocation main_artery body) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "main artery is located at organism with heart", "pln": ["(: cnet_atlocation_a9854316d3 (AtLocation main_artery organism_with_heart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "main entrance is located at building", "pln": ["(: cnet_atlocation_eb89fcc1b2 (AtLocation main_entrance building) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "main entrance is located at public building", "pln": ["(: cnet_atlocation_734ef08366 (AtLocation main_entrance public_building) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mall is located at city", "pln": ["(: cnet_atlocation_93c74e3a1c (AtLocation mall city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mall is located at suburb", "pln": ["(: cnet_atlocation_b7f7640a0e (AtLocation mall suburb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mall is located at town", "pln": ["(: cnet_atlocation_4715500573 (AtLocation mall town) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mammoth is located at ancient time", "pln": ["(: cnet_atlocation_97d7f49d8b (AtLocation mammoth ancient_time) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mammoth is located at forest", "pln": ["(: cnet_atlocation_30ff7fa5ed (AtLocation mammoth forest) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mammoth is located at fossil bed", "pln": ["(: cnet_atlocation_be8ea9b264 (AtLocation mammoth fossil_bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mammoth is located at frozen tundra", "pln": ["(: cnet_atlocation_26360aa12d (AtLocation mammoth frozen_tundra) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "mammoth is located at ground", "pln": ["(: cnet_atlocation_36081e7299 (AtLocation mammoth ground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mammoth is located at ice age", "pln": ["(: cnet_atlocation_b3d0df6437 (AtLocation mammoth ice_age) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mammoth is located at movie", "pln": ["(: cnet_atlocation_d3479091c2 (AtLocation mammoth movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mammoth is located at museum exhibit", "pln": ["(: cnet_atlocation_893e581b0c (AtLocation mammoth museum_exhibit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mammoth is located at museum of natural history", "pln": ["(: cnet_atlocation_31e324118a (AtLocation mammoth museum_of_natural_history) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mammoth is located at prehistoric time", "pln": ["(: cnet_atlocation_2e13101c22 (AtLocation mammoth prehistoric_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mammoth is located at prehistory", "pln": ["(: cnet_atlocation_6b2c476d92 (AtLocation mammoth prehistory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mammoth is located at siberian tundra", "pln": ["(: cnet_atlocation_8a8a0829cc (AtLocation mammoth siberian_tundra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mammoth is located at tar pit", "pln": ["(: cnet_atlocation_772b78a4af (AtLocation mammoth tar_pit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mammoth is located at wild", "pln": ["(: cnet_atlocation_ed838cc29a (AtLocation mammoth wild) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "mammoth is located at zoo", "pln": ["(: cnet_atlocation_314d8394ed (AtLocation mammoth zoo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mandolin is located at instrument case", "pln": ["(: cnet_atlocation_c94477a3af (AtLocation mandolin instrument_case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "manhole cover is located at street", "pln": ["(: cnet_atlocation_40aa1cc461 (AtLocation manhole_cover street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "manure is located at zoo", "pln": ["(: cnet_atlocation_787b373009 (AtLocation manure zoo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "many book is located at library", "pln": ["(: cnet_atlocation_43ac10c29f (AtLocation many_book library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "many people is located at sporting event", "pln": ["(: cnet_atlocation_67f5004841 (AtLocation many_people sporting_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "many store is located at mall", "pln": ["(: cnet_atlocation_3a0049b2f5 (AtLocation many_store mall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "map is located at atla", "pln": ["(: cnet_atlocation_b8442bf95a (AtLocation map atla) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "map is located at backpack", "pln": ["(: cnet_atlocation_d289da26d5 (AtLocation map backpack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "map is located at glove compartment", "pln": ["(: cnet_atlocation_482901035a (AtLocation map glove_compartment) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "map is located at library", "pln": ["(: cnet_atlocation_e6ac31604b (AtLocation map library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "marble is located at boy s pocket", "pln": ["(: cnet_atlocation_d41e415d2b (AtLocation marble boy_s_pocket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "marble is located at game", "pln": ["(: cnet_atlocation_becf6e318d (AtLocation marble game) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "marble is located at store", "pln": ["(: cnet_atlocation_af68a11305 (AtLocation marble store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "marijuana is located at amsterdam", "pln": ["(: cnet_atlocation_912d59ba19 (AtLocation marijuana amsterdam) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "marker is located at book", "pln": ["(: cnet_atlocation_c5dd0d142f (AtLocation marker book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "marker is located at desk", "pln": ["(: cnet_atlocation_e903ccbd8c (AtLocation marker desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "market is located at city", "pln": ["(: cnet_atlocation_383242484c (AtLocation market city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "marmoset is located at burrow", "pln": ["(: cnet_atlocation_11aa67b9de (AtLocation marmoset burrow) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "marmoset is located at cage", "pln": ["(: cnet_atlocation_de75173659 (AtLocation marmoset cage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "marmoset is located at france", "pln": ["(: cnet_atlocation_13ebab42d7 (AtLocation marmoset france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "marmoset is located at rainforest", "pln": ["(: cnet_atlocation_5d174a1ecf (AtLocation marmoset rainforest) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "marmoset is located at south america", "pln": ["(: cnet_atlocation_cee027e53e (AtLocation marmoset south_america) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "marmoset is located at wild", "pln": ["(: cnet_atlocation_abc748eb8d (AtLocation marmoset wild) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "marmoset is located at wilderness", "pln": ["(: cnet_atlocation_cc023ae819 (AtLocation marmoset wilderness) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "marmoset is located at wood", "pln": ["(: cnet_atlocation_74a55629f0 (AtLocation marmoset wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "marmot is located at burrow", "pln": ["(: cnet_atlocation_8122a8612e (AtLocation marmot burrow) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "marmot is located at cage", "pln": ["(: cnet_atlocation_93b920371f (AtLocation marmot cage) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "marmot is located at colorado", "pln": ["(: cnet_atlocation_6e346707d9 (AtLocation marmot colorado) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "marmot is located at hole in ground", "pln": ["(: cnet_atlocation_a12ccdae1d (AtLocation marmot hole_in_ground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "marmot is located at in wild", "pln": ["(: cnet_atlocation_cceb446434 (AtLocation marmot in_wild) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "marmot is located at jungle", "pln": ["(: cnet_atlocation_6bfc2ea6eb (AtLocation marmot jungle) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "marmot is located at north america", "pln": ["(: cnet_atlocation_ab308df69d (AtLocation marmot north_america) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "marmot is located at northern hemisphere", "pln": ["(: cnet_atlocation_76552e5c3b (AtLocation marmot northern_hemisphere) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "marmot is located at outdoor", "pln": ["(: cnet_atlocation_ce570eb251 (AtLocation marmot outdoor) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "marmot is located at tree", "pln": ["(: cnet_atlocation_5a0e0f6b4f (AtLocation marmot tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "marmot is located at united state", "pln": ["(: cnet_atlocation_628db07430 (AtLocation marmot united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "marmot is located at vancouver island", "pln": ["(: cnet_atlocation_b5d95265d8 (AtLocation marmot vancouver_island) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "marmot is located at wild", "pln": ["(: cnet_atlocation_66a78d212c (AtLocation marmot wild) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "marsh is located at forest", "pln": ["(: cnet_atlocation_1664e10dff (AtLocation marsh forest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "martini glass is located at cabinet", "pln": ["(: cnet_atlocation_419a1e9a83 (AtLocation martini_glass cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "mask is located at carnival", "pln": ["(: cnet_atlocation_172bf1b483 (AtLocation mask carnival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "massacred body is located at war", "pln": ["(: cnet_atlocation_4b1b15c574 (AtLocation massacred_body war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mast is located at ship", "pln": ["(: cnet_atlocation_21e944ccf8 (AtLocation mast ship) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "master bedroom is located at big house", "pln": ["(: cnet_atlocation_df9659919f (AtLocation master_bedroom big_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mat is located at bathroom", "pln": ["(: cnet_atlocation_3d5d4de833 (AtLocation mat bathroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "material is located at construction", "pln": ["(: cnet_atlocation_9840ca2a89 (AtLocation material construction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "material is located at fabric store", "pln": ["(: cnet_atlocation_2f36ae6892 (AtLocation material fabric_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "matter is located at universe", "pln": ["(: cnet_atlocation_1234586d73 (AtLocation matter universe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mayonaise is located at jar", "pln": ["(: cnet_atlocation_58c1211a7b (AtLocation mayonaise jar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mayonnaise is located at jar", "pln": ["(: cnet_atlocation_982ee61558 (AtLocation mayonnaise jar) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mayonnaise is located at refrigerator", "pln": ["(: cnet_atlocation_1dd36fc5d7 (AtLocation mayonnaise refrigerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "mayor is located at city hall", "pln": ["(: cnet_atlocation_0d3a6dd767 (AtLocation mayor city_hall) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "mayor is located at town", "pln": ["(: cnet_atlocation_00ad363cdf (AtLocation mayor town) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mayor is located at town hall", "pln": ["(: cnet_atlocation_c3232a152e (AtLocation mayor town_hall) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "me is located at hockey game", "pln": ["(: cnet_atlocation_dcb7eed8c4 (AtLocation me hockey_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "meadow is located at countryside", "pln": ["(: cnet_atlocation_b13463d46a (AtLocation meadow countryside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "meadow lark is located at meadow", "pln": ["(: cnet_atlocation_d3b911144f (AtLocation meadow_lark meadow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "meal is located at fast food restaurant", "pln": ["(: cnet_atlocation_f60dd91de9 (AtLocation meal fast_food_restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "meal is located at plate", "pln": ["(: cnet_atlocation_d396a58684 (AtLocation meal plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "meat is located at butcher shop", "pln": ["(: cnet_atlocation_4e7017523e (AtLocation meat butcher_shop) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "meat is located at freezer", "pln": ["(: cnet_atlocation_f97504fdeb (AtLocation meat freezer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "meat is located at fridge", "pln": ["(: cnet_atlocation_521cda6ae2 (AtLocation meat fridge) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "meat is located at oven", "pln": ["(: cnet_atlocation_87e11a9e6b (AtLocation meat oven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "meat is located at stew", "pln": ["(: cnet_atlocation_66eb247386 (AtLocation meat stew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "meatloaf is located at oven", "pln": ["(: cnet_atlocation_6e6f0fb879 (AtLocation meatloaf oven) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "mechanical pencil is located at architects office", "pln": ["(: cnet_atlocation_a543bcb32f (AtLocation mechanical_pencil architects_office) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mechanic is located at race track", "pln": ["(: cnet_atlocation_b27d39cb40 (AtLocation mechanic race_track) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mechanic is located at repair shop", "pln": ["(: cnet_atlocation_0c325ad253 (AtLocation mechanic repair_shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mechanical pencil is located at architect office", "pln": ["(: cnet_atlocation_4088cb1311 (AtLocation mechanical_pencil architect_office) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "medic is located at battlefield", "pln": ["(: cnet_atlocation_50edf86577 (AtLocation medic battlefield) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "medic is located at military base", "pln": ["(: cnet_atlocation_7826339658 (AtLocation medic military_base) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "medicine is located at cabinet", "pln": ["(: cnet_atlocation_1ac0ecc44d (AtLocation medicine cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "medicine is located at hospital", "pln": ["(: cnet_atlocation_a419b7cd5f (AtLocation medicine hospital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "medicine ball is located at gym", "pln": ["(: cnet_atlocation_56b3dfb805 (AtLocation medicine_ball gym) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "memory is located at computer", "pln": ["(: cnet_atlocation_ce84b31291 (AtLocation memory computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "menorah is located at synagogue", "pln": ["(: cnet_atlocation_f8212a32b5 (AtLocation menorah synagogue) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "menu is located at cafe", "pln": ["(: cnet_atlocation_c0751fac9a (AtLocation menu cafe) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "menu is located at resturant", "pln": ["(: cnet_atlocation_d657548144 (AtLocation menu resturant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "merchandise is located at shop", "pln": ["(: cnet_atlocation_4272347b91 (AtLocation merchandise shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "merchant is located at mall", "pln": ["(: cnet_atlocation_44663eafb1 (AtLocation merchant mall) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "merchant is located at store", "pln": ["(: cnet_atlocation_0e4093cc54 (AtLocation merchant store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "merry go round is located at carnival", "pln": ["(: cnet_atlocation_15b59c8bdf (AtLocation merry_go_round carnival) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "merry go round is located at fair", "pln": ["(: cnet_atlocation_bb07f245bf (AtLocation merry_go_round fair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "merry go round is located at park", "pln": ["(: cnet_atlocation_ebd61909d2 (AtLocation merry_go_round park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "mess is located at desk", "pln": ["(: cnet_atlocation_73c6d3b62e (AtLocation mess desk) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mess hall is located at military base", "pln": ["(: cnet_atlocation_a5b269eb6d (AtLocation mess_hall military_base) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "message pad is located at desk", "pln": ["(: cnet_atlocation_80a5393056 (AtLocation message_pad desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "metal is located at ore", "pln": ["(: cnet_atlocation_08f2f852b0 (AtLocation metal ore) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "meteor is located at orbit", "pln": ["(: cnet_atlocation_1aa9e7958e (AtLocation meteor orbit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "meteor is located at outerspace", "pln": ["(: cnet_atlocation_6873ecbca8 (AtLocation meteor outerspace) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "meteor is located at space", "pln": ["(: cnet_atlocation_773ad6701f (AtLocation meteor space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "meteor is located at universe", "pln": ["(: cnet_atlocation_3efe6ef8c8 (AtLocation meteor universe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mezzanine is located at theater", "pln": ["(: cnet_atlocation_cb5784c767 (AtLocation mezzanine theater) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mice is located at laboratory", "pln": ["(: cnet_atlocation_afb1724de1 (AtLocation mice laboratory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mickey mouse is located at disneyland", "pln": ["(: cnet_atlocation_726ede0296 (AtLocation mickey_mouse disneyland) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "microphone boom is located at recording studio", "pln": ["(: cnet_atlocation_e78a737974 (AtLocation microphone_boom recording_studio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "microphone boom is located at studio", "pln": ["(: cnet_atlocation_2f7e79e3ad (AtLocation microphone_boom studio) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "microphone boom is located at television studio", "pln": ["(: cnet_atlocation_d35bcf7c3d (AtLocation microphone_boom television_studio) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "microphone boom is located at televisison studio", "pln": ["(: cnet_atlocation_ce46cba72b (AtLocation microphone_boom televisison_studio) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "microscope is located at laboratory", "pln": ["(: cnet_atlocation_523ba30a44 (AtLocation microscope laboratory) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "microwave oven is located at kitchen", "pln": ["(: cnet_atlocation_837b5710a2 (AtLocation microwave_oven kitchen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "midway is located at carnival", "pln": ["(: cnet_atlocation_4a34ce5f66 (AtLocation midway carnival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "mildew is located at basement", "pln": ["(: cnet_atlocation_3945534de4 (AtLocation mildew basement) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "milk is located at container", "pln": ["(: cnet_atlocation_06b006f287 (AtLocation milk container) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "milk is located at cow", "pln": ["(: cnet_atlocation_ffc8b63df0 (AtLocation milk cow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "milk is located at fridge", "pln": ["(: cnet_atlocation_31f4a0bb87 (AtLocation milk fridge) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "milk is located at market", "pln": ["(: cnet_atlocation_c9a5116f17 (AtLocation milk market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "milk is located at refrigerator", "pln": ["(: cnet_atlocation_f64e236041 (AtLocation milk refrigerator) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "milk duds is located at movies", "pln": ["(: cnet_atlocation_a742813daa (AtLocation milk_duds movies) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "milk is located at store", "pln": ["(: cnet_atlocation_6b88ef4bdd (AtLocation milk store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "milk is located at supermarket", "pln": ["(: cnet_atlocation_87f5ee36fe (AtLocation milk supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "milk dud is located at movy", "pln": ["(: cnet_atlocation_ac171278c5 (AtLocation milk_dud movy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "milkdud is located at movie", "pln": ["(: cnet_atlocation_90969b5384 (AtLocation milkdud movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mine is located at mountain", "pln": ["(: cnet_atlocation_7863ec744d (AtLocation mine mountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mineral is located at earth", "pln": ["(: cnet_atlocation_49f5747387 (AtLocation mineral earth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mini bar is located at home", "pln": ["(: cnet_atlocation_dff4004f6c (AtLocation mini_bar home) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mini bar is located at hotel room", "pln": ["(: cnet_atlocation_40b6143a18 (AtLocation mini_bar hotel_room) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mini mall is located at suburb", "pln": ["(: cnet_atlocation_98227f6a3c (AtLocation mini_mall suburb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mini mall is located at town", "pln": ["(: cnet_atlocation_1f783dd082 (AtLocation mini_mall town) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "minibar is located at at hotel", "pln": ["(: cnet_atlocation_9b8e26ae6f (AtLocation minibar at_hotel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "minibar is located at hotel", "pln": ["(: cnet_atlocation_54756bdf49 (AtLocation minibar hotel) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "minibar is located at hotel room", "pln": ["(: cnet_atlocation_c54f91e329 (AtLocation minibar hotel_room) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "minister is located at funeral", "pln": ["(: cnet_atlocation_b6e54a8cf1 (AtLocation minister funeral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mirror is located at bedroom", "pln": ["(: cnet_atlocation_af132a7579 (AtLocation mirror bedroom) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mirror is located at car", "pln": ["(: cnet_atlocation_eaa6cba164 (AtLocation mirror car) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mirror is located at purse", "pln": ["(: cnet_atlocation_37e6825b44 (AtLocation mirror purse) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "model is located at car show", "pln": ["(: cnet_atlocation_c1430d879a (AtLocation model car_show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "moistener is located at bathroom", "pln": ["(: cnet_atlocation_1ac3c5a879 (AtLocation moistener bathroom) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "moistener is located at hand lotion", "pln": ["(: cnet_atlocation_e0902e1bbd (AtLocation moistener hand_lotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "moistener is located at lotion", "pln": ["(: cnet_atlocation_0b790c93e3 (AtLocation moistener lotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "moisturizer is located at many cosmetic", "pln": ["(: cnet_atlocation_b0a35e0b22 (AtLocation moisturizer many_cosmetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "mold is located at breadbox", "pln": ["(: cnet_atlocation_90f6467b3d (AtLocation mold breadbox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mold is located at cellar", "pln": ["(: cnet_atlocation_acc4a30f50 (AtLocation mold cellar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mold is located at refrigerator", "pln": ["(: cnet_atlocation_bfb214df81 (AtLocation mold refrigerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "moldy food is located at refrigerator", "pln": ["(: cnet_atlocation_3b6daa4446 (AtLocation moldy_food refrigerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "moldy leftover is located at refrigerator", "pln": ["(: cnet_atlocation_39024bbf7f (AtLocation moldy_leftover refrigerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "molecule is located at hand", "pln": ["(: cnet_atlocation_7023da398d (AtLocation molecule hand) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "money is located at bank", "pln": ["(: cnet_atlocation_100824dc7d (AtLocation money bank) (STV 1.0 0.9748))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "money is located at cash register", "pln": ["(: cnet_atlocation_771f3d919a (AtLocation money cash_register) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "money is located at casino", "pln": ["(: cnet_atlocation_5a0548693c (AtLocation money casino) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "money is located at pocket", "pln": ["(: cnet_atlocation_f85dd24ae2 (AtLocation money pocket) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "money is located at purse", "pln": ["(: cnet_atlocation_5b0d0e89ef (AtLocation money purse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "money is located at sock drawer", "pln": ["(: cnet_atlocation_2273df95da (AtLocation money sock_drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "money is located at supermarket", "pln": ["(: cnet_atlocation_b820560479 (AtLocation money supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "money is located at vault", "pln": ["(: cnet_atlocation_f5bbfef311 (AtLocation money vault) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "money is located at wallet", "pln": ["(: cnet_atlocation_f42393cbd4 (AtLocation money wallet) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "monitor is located at box", "pln": ["(: cnet_atlocation_000ef649c8 (AtLocation monitor box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "monitor is located at desk", "pln": ["(: cnet_atlocation_70b728157b (AtLocation monitor desk) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "monitor is located at desktop", "pln": ["(: cnet_atlocation_ab07a4ad33 (AtLocation monitor desktop) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "monitor is located at internet cafe", "pln": ["(: cnet_atlocation_502ee628aa (AtLocation monitor internet_cafe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "monitor wall is located at studio", "pln": ["(: cnet_atlocation_60d953505d (AtLocation monitor_wall studio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "monkey is located at african jungle", "pln": ["(: cnet_atlocation_38563282b9 (AtLocation monkey african_jungle) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "monkey is located at barrel", "pln": ["(: cnet_atlocation_b62f1d0393 (AtLocation monkey barrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "monkey is located at book", "pln": ["(: cnet_atlocation_fad91ceebb (AtLocation monkey book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "monkey is located at brazil", "pln": ["(: cnet_atlocation_b8be900400 (AtLocation monkey brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "monkey is located at cage at zoo", "pln": ["(: cnet_atlocation_e4809da9e5 (AtLocation monkey cage_at_zoo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "monkey is located at cage in zoo", "pln": ["(: cnet_atlocation_8ba190f09b (AtLocation monkey cage_in_zoo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "monkey is located at circus", "pln": ["(: cnet_atlocation_87f83ba844 (AtLocation monkey circus) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "monkey is located at jungel", "pln": ["(: cnet_atlocation_9c1f0cf3c9 (AtLocation monkey jungel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "monkey is located at playful mood", "pln": ["(: cnet_atlocation_cef96e194d (AtLocation monkey playful_mood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "monkey is located at rain forest", "pln": ["(: cnet_atlocation_6f0fda8838 (AtLocation monkey rain_forest) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "monkey is located at research laboratory", "pln": ["(: cnet_atlocation_bffa726693 (AtLocation monkey research_laboratory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "monkey is located at south africa", "pln": ["(: cnet_atlocation_a719250676 (AtLocation monkey south_africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "monkey is located at south america", "pln": ["(: cnet_atlocation_2828188054 (AtLocation monkey south_america) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "monkey is located at treetop", "pln": ["(: cnet_atlocation_c1be70b27a (AtLocation monkey treetop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "monkey is located at tropical forest", "pln": ["(: cnet_atlocation_8ed5953dec (AtLocation monkey tropical_forest) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "monkey is located at work", "pln": ["(: cnet_atlocation_7288834f7c (AtLocation monkey work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "monkey wrench is located at repair shop", "pln": ["(: cnet_atlocation_9cdc35a6c0 (AtLocation monkey_wrench repair_shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "monster is located at bed", "pln": ["(: cnet_atlocation_c14061b4e6 (AtLocation monster bed) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "monster is located at closet", "pln": ["(: cnet_atlocation_4387590e9f (AtLocation monster closet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "monument is located at city", "pln": ["(: cnet_atlocation_bc9f623c0a (AtLocation monument city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "monument is located at state park", "pln": ["(: cnet_atlocation_2952d054f0 (AtLocation monument state_park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "moon is located at night sky", "pln": ["(: cnet_atlocation_791fc980ee (AtLocation moon night_sky) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "moon is located at orbit around earth", "pln": ["(: cnet_atlocation_27c0eb4543 (AtLocation moon orbit_around_earth) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "moon is located at space", "pln": ["(: cnet_atlocation_668314ee11 (AtLocation moon space) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "moon dust is located at moon", "pln": ["(: cnet_atlocation_506f3636db (AtLocation moon_dust moon) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "moon dust is located at suface of moon", "pln": ["(: cnet_atlocation_d613900ae3 (AtLocation moon_dust suface_of_moon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "moon rock is located at moon", "pln": ["(: cnet_atlocation_e63bec9de1 (AtLocation moon_rock moon) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "moon rock is located at suface of moon", "pln": ["(: cnet_atlocation_47be69d27b (AtLocation moon_rock suface_of_moon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "more space is located at space", "pln": ["(: cnet_atlocation_7bd9626384 (AtLocation more_space space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mormon is located at utah", "pln": ["(: cnet_atlocation_1c8026fcb3 (AtLocation mormon utah) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "morning paper is located at front door", "pln": ["(: cnet_atlocation_8620a1aa3f (AtLocation morning_paper front_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "moss is located at forest", "pln": ["(: cnet_atlocation_60373b285c (AtLocation moss forest) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "moss is located at ground", "pln": ["(: cnet_atlocation_40956803e2 (AtLocation moss ground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "mountains is located at surface of earth", "pln": ["(: cnet_atlocation_b51f8945e5 (AtLocation mountains surface_of_earth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "moss is located at tree", "pln": ["(: cnet_atlocation_ada09f76aa (AtLocation moss tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "moss is located at waterfall", "pln": ["(: cnet_atlocation_973273b48d (AtLocation moss waterfall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "most likely not your is located at space shuttle", "pln": ["(: cnet_atlocation_0bc3e0d12c (AtLocation most_likely_not_your space_shuttle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "moth is located at closet", "pln": ["(: cnet_atlocation_dc64142207 (AtLocation moth closet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "motherboard is located at computer", "pln": ["(: cnet_atlocation_d670670690 (AtLocation motherboard computer) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "motorcycle is located at garage", "pln": ["(: cnet_atlocation_99ddebbe3f (AtLocation motorcycle garage) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "motorway is located at city", "pln": ["(: cnet_atlocation_3744c016c0 (AtLocation motorway city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mound is located at hell", "pln": ["(: cnet_atlocation_72c5f7ecd1 (AtLocation mound hell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mountain is located at austria", "pln": ["(: cnet_atlocation_af70e3bbf9 (AtLocation mountain austria) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mountain is located at canada", "pln": ["(: cnet_atlocation_5750dd579c (AtLocation mountain canada) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mountain is located at colorado", "pln": ["(: cnet_atlocation_5728844e67 (AtLocation mountain colorado) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mountain is located at mountainous region", "pln": ["(: cnet_atlocation_e0fddfd716 (AtLocation mountain mountainous_region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mountain is located at surface of earth", "pln": ["(: cnet_atlocation_7875a30608 (AtLocation mountain surface_of_earth) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mourner is located at funeral", "pln": ["(: cnet_atlocation_7c7629d0c7 (AtLocation mourner funeral) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mourning people is located at funeral", "pln": ["(: cnet_atlocation_b9fe207407 (AtLocation mourning_people funeral) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at abandoned hous", "pln": ["(: cnet_atlocation_88af39b07f (AtLocation mouse abandoned_hous) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at attic", "pln": ["(: cnet_atlocation_a8c318314f (AtLocation mouse attic) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at cat s mouth", "pln": ["(: cnet_atlocation_d83112dfe9 (AtLocation mouse cat_s_mouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at cat", "pln": ["(: cnet_atlocation_f93a91dda9 (AtLocation mouse cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at cellar", "pln": ["(: cnet_atlocation_d347fb3f74 (AtLocation mouse cellar) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at computer", "pln": ["(: cnet_atlocation_f6885dc11f (AtLocation mouse computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at computer lab", "pln": ["(: cnet_atlocation_962d782f03 (AtLocation mouse computer_lab) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at computer store", "pln": ["(: cnet_atlocation_1153995d43 (AtLocation mouse computer_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at corn field", "pln": ["(: cnet_atlocation_a05f6f413b (AtLocation mouse corn_field) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at cornfield", "pln": ["(: cnet_atlocation_b7bc829bff (AtLocation mouse cornfield) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at cupboard", "pln": ["(: cnet_atlocation_b7aa39eeb2 (AtLocation mouse cupboard) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at department store", "pln": ["(: cnet_atlocation_bb213e1964 (AtLocation mouse department_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at desk", "pln": ["(: cnet_atlocation_35824066b2 (AtLocation mouse desk) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "mouse is located at desktop", "pln": ["(: cnet_atlocation_f5e81fa1dc (AtLocation mouse desktop) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at dirty house", "pln": ["(: cnet_atlocation_371528d51b (AtLocation mouse dirty_house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at disneyland", "pln": ["(: cnet_atlocation_3ff131e9a2 (AtLocation mouse disneyland) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "mouse is located at garage", "pln": ["(: cnet_atlocation_987a0cf63a (AtLocation mouse garage) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at garden", "pln": ["(: cnet_atlocation_69e1541f59 (AtLocation mouse garden) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at grain", "pln": ["(: cnet_atlocation_52753c3dcc (AtLocation mouse grain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at grain bin", "pln": ["(: cnet_atlocation_8ed93e3fd3 (AtLocation mouse grain_bin) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at grain field", "pln": ["(: cnet_atlocation_a003af22b4 (AtLocation mouse grain_field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at grain silo", "pln": ["(: cnet_atlocation_9f27e75c85 (AtLocation mouse grain_silo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at grainery", "pln": ["(: cnet_atlocation_5908df4b98 (AtLocation mouse grainery) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at hole", "pln": ["(: cnet_atlocation_6a22c5f420 (AtLocation mouse hole) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at hole in wall", "pln": ["(: cnet_atlocation_4e92f74c61 (AtLocation mouse hole_in_wall) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at kitchen", "pln": ["(: cnet_atlocation_683a7b46a2 (AtLocation mouse kitchen) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at lab maze", "pln": ["(: cnet_atlocation_62c4a00ecf (AtLocation mouse lab_maze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at laboratory", "pln": ["(: cnet_atlocation_1c97c21972 (AtLocation mouse laboratory) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at mousehouse", "pln": ["(: cnet_atlocation_dba15fd595 (AtLocation mouse mousehouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at new york", "pln": ["(: cnet_atlocation_850e96724e (AtLocation mouse new_york) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at office", "pln": ["(: cnet_atlocation_c4fbbde556 (AtLocation mouse office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at old barn", "pln": ["(: cnet_atlocation_805f699030 (AtLocation mouse old_barn) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at own home", "pln": ["(: cnet_atlocation_703d62f057 (AtLocation mouse own_home) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at pantry", "pln": ["(: cnet_atlocation_9bef653dea (AtLocation mouse pantry) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at research laboratory", "pln": ["(: cnet_atlocation_3e416db85e (AtLocation mouse research_laboratory) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at sewer", "pln": ["(: cnet_atlocation_c94447d6b6 (AtLocation mouse sewer) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at small hole", "pln": ["(: cnet_atlocation_97fb31fa0b (AtLocation mouse small_hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at tom and jerry cartoon", "pln": ["(: cnet_atlocation_6314916da7 (AtLocation mouse tom_and_jerry_cartoon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse is located at trap", "pln": ["(: cnet_atlocation_610719ae69 (AtLocation mouse trap) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouse pad is located at desk", "pln": ["(: cnet_atlocation_7bb511e663 (AtLocation mouse_pad desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouthwash is located at bathroom", "pln": ["(: cnet_atlocation_7f4c622295 (AtLocation mouthwash bathroom) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mouthwash is located at medicine chest", "pln": ["(: cnet_atlocation_90a522a1c7 (AtLocation mouthwash medicine_chest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "movie is located at movie", "pln": ["(: cnet_atlocation_490f5ab167 (AtLocation movie movie) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "movie is located at movie theater", "pln": ["(: cnet_atlocation_d3843235c4 (AtLocation movie movie_theater) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "movie is located at theater", "pln": ["(: cnet_atlocation_a1ad56171f (AtLocation movie theater) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "movie house is located at city", "pln": ["(: cnet_atlocation_8878d60bce (AtLocation movie_house city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "movie screen is located at drive in movie", "pln": ["(: cnet_atlocation_3926970ba0 (AtLocation movie_screen drive_in_movie) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "movie screen is located at movie", "pln": ["(: cnet_atlocation_90d7c0b20f (AtLocation movie_screen movie) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "movie star is located at hollywood", "pln": ["(: cnet_atlocation_db43ef2ce9 (AtLocation movie_star hollywood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "movie star is located at movie", "pln": ["(: cnet_atlocation_b626ad3274 (AtLocation movie_star movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "movie theater is located at mall", "pln": ["(: cnet_atlocation_6acec7fcc5 (AtLocation movie_theater mall) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "movie theater is located at town", "pln": ["(: cnet_atlocation_5dbcacd0f0 (AtLocation movie_theater town) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "movie theater seat is located at movie theatre", "pln": ["(: cnet_atlocation_46b4ce027c (AtLocation movie_theater_seat movie_theatre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "movie ticket is located at movie theater", "pln": ["(: cnet_atlocation_a827e8ea90 (AtLocation movie_ticket movie_theater) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "moviegoer is located at movies", "pln": ["(: cnet_atlocation_db484e692c (AtLocation moviegoer movies) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "movie ticket is located at theater", "pln": ["(: cnet_atlocation_ac50af9fb1 (AtLocation movie_ticket theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "moviegoer is located at movy", "pln": ["(: cnet_atlocation_d0ad81bbbc (AtLocation moviegoer movy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "movy is located at show", "pln": ["(: cnet_atlocation_b22f96dfb2 (AtLocation movy show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "movy is located at theatre", "pln": ["(: cnet_atlocation_015b0c7988 (AtLocation movy theatre) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mower is located at garage", "pln": ["(: cnet_atlocation_3fb61de20f (AtLocation mower garage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "muffin is located at internet cafe", "pln": ["(: cnet_atlocation_1c1631233d (AtLocation muffin internet_cafe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mug is located at cabinet", "pln": ["(: cnet_atlocation_fe1c5c5b1d (AtLocation mug cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mug is located at cupboard", "pln": ["(: cnet_atlocation_754ef50cfb (AtLocation mug cupboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "mug is located at store", "pln": ["(: cnet_atlocation_172b5ac0fe (AtLocation mug store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mum is located at home", "pln": ["(: cnet_atlocation_4a71278894 (AtLocation mum home) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "muscle is located at animal", "pln": ["(: cnet_atlocation_9d864d26f0 (AtLocation muscle animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "muscle is located at arm", "pln": ["(: cnet_atlocation_a05fe19ea5 (AtLocation muscle arm) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "muscle is located at body of animal", "pln": ["(: cnet_atlocation_89ad43e191 (AtLocation muscle body_of_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "muscle is located at human body", "pln": ["(: cnet_atlocation_0a2f9d6af6 (AtLocation muscle human_body) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "muscle builder is located at gym", "pln": ["(: cnet_atlocation_57c7f01cc5 (AtLocation muscle_builder gym) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "museum is located at city", "pln": ["(: cnet_atlocation_cd08525019 (AtLocation museum city) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "museum is located at europe", "pln": ["(: cnet_atlocation_528f987101 (AtLocation museum europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "museum ticket is located at pocket", "pln": ["(: cnet_atlocation_2a921eb68f (AtLocation museum_ticket pocket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mushroom is located at grocery store", "pln": ["(: cnet_atlocation_e44c89b95e (AtLocation mushroom grocery_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mushroom is located at pizza", "pln": ["(: cnet_atlocation_d8f7255651 (AtLocation mushroom pizza) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "music is located at carnival", "pln": ["(: cnet_atlocation_c2c97133c0 (AtLocation music carnival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "music is located at night club", "pln": ["(: cnet_atlocation_37803d7f88 (AtLocation music night_club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "music is located at opera", "pln": ["(: cnet_atlocation_91e7d4478a (AtLocation music opera) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "music stand is located at band hall", "pln": ["(: cnet_atlocation_ee2ec302f7 (AtLocation music_stand band_hall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "music video is located at television", "pln": ["(: cnet_atlocation_9e584f23ab (AtLocation music_video television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "musical instrument is located at band", "pln": ["(: cnet_atlocation_225df6477e (AtLocation musical_instrument band) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "musical instrument is located at bandroom", "pln": ["(: cnet_atlocation_52130af178 (AtLocation musical_instrument bandroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "musician is located at stage", "pln": ["(: cnet_atlocation_4b1f178b2c (AtLocation musician stage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "musician is located at studio", "pln": ["(: cnet_atlocation_58c08716b9 (AtLocation musician studio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "musicians is located at opera", "pln": ["(: cnet_atlocation_d7766b5341 (AtLocation musicians opera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "musician is located at band", "pln": ["(: cnet_atlocation_84e38332ae (AtLocation musician band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "musician is located at opera", "pln": ["(: cnet_atlocation_6c4d37f5d0 (AtLocation musician opera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "musician is located at show", "pln": ["(: cnet_atlocation_4e60a30120 (AtLocation musician show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "muslim is located at mosque", "pln": ["(: cnet_atlocation_7cf5baba58 (AtLocation muslim mosque) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mustard is located at jar", "pln": ["(: cnet_atlocation_ce4164684e (AtLocation mustard jar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "mystery is located at universe", "pln": ["(: cnet_atlocation_96f47e81f1 (AtLocation mystery universe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "nail is located at board", "pln": ["(: cnet_atlocation_83fbb9c9cb (AtLocation nail board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "nail is located at finger", "pln": ["(: cnet_atlocation_2ca4c8e991 (AtLocation nail finger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "nail is located at cabinet", "pln": ["(: cnet_atlocation_9a6a5f9b78 (AtLocation nail cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "nail is located at container", "pln": ["(: cnet_atlocation_7be432825e (AtLocation nail container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "nail is located at jar", "pln": ["(: cnet_atlocation_2dcebeacf2 (AtLocation nail jar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "nail is located at store", "pln": ["(: cnet_atlocation_1d3eb1c301 (AtLocation nail store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "name is located at directory", "pln": ["(: cnet_atlocation_61c99dd841 (AtLocation name directory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "name is located at phone book", "pln": ["(: cnet_atlocation_b4797d1a66 (AtLocation name phone_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "napkin is located at table", "pln": ["(: cnet_atlocation_be8ea6787d (AtLocation napkin table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "napkin holder is located at table", "pln": ["(: cnet_atlocation_4fcaa024df (AtLocation napkin_holder table) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "napkin is located at fast food restaurant", "pln": ["(: cnet_atlocation_54a9401034 (AtLocation napkin fast_food_restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "national flag is located at country", "pln": ["(: cnet_atlocation_8debedc010 (AtLocation national_flag country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "national highway is located at united state", "pln": ["(: cnet_atlocation_b6d04cf872 (AtLocation national_highway united_state) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "national interstate highway is located at modern country", "pln": ["(: cnet_atlocation_86f30abc81 (AtLocation national_interstate_highway modern_country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "national interstate highway is located at united state", "pln": ["(: cnet_atlocation_dd970f3f0a (AtLocation national_interstate_highway united_state) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "national weather is located at newspaper", "pln": ["(: cnet_atlocation_c82b8819a7 (AtLocation national_weather newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "naughty child is located at corner", "pln": ["(: cnet_atlocation_8e50e52265 (AtLocation naughty_child corner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "nausea is located at boat", "pln": ["(: cnet_atlocation_0e7108d134 (AtLocation nausea boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "neck is located at body", "pln": ["(: cnet_atlocation_e3c5b8c467 (AtLocation neck body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "neck is located at bottle", "pln": ["(: cnet_atlocation_7a7ba29d32 (AtLocation neck bottle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "neckwear is located at closet", "pln": ["(: cnet_atlocation_411b5c0cd0 (AtLocation neckwear closet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "neckwear is located at tie store", "pln": ["(: cnet_atlocation_22ca1972d7 (AtLocation neckwear tie_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "needle is located at doctor", "pln": ["(: cnet_atlocation_22399568f7 (AtLocation needle doctor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "needle is located at sewing kit", "pln": ["(: cnet_atlocation_0439cc7825 (AtLocation needle sewing_kit) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "needle is located at sewing shop", "pln": ["(: cnet_atlocation_f9ddf87eae (AtLocation needle sewing_shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "needlepoint is located at art store", "pln": ["(: cnet_atlocation_67da7e1bd2 (AtLocation needlepoint art_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "needlepoint is located at sewing", "pln": ["(: cnet_atlocation_9c52739410 (AtLocation needlepoint sewing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "neighbor is located at house next door", "pln": ["(: cnet_atlocation_ddf04e8e8c (AtLocation neighbor house_next_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "neighbor is located at neighborhood", "pln": ["(: cnet_atlocation_e94ad526ac (AtLocation neighbor neighborhood) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "neighbor is located at next door", "pln": ["(: cnet_atlocation_0c78d74cd5 (AtLocation neighbor next_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "neighborhood map is located at city hall", "pln": ["(: cnet_atlocation_d71b89918c (AtLocation neighborhood_map city_hall) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "neighbour is located at neighbor s house", "pln": ["(: cnet_atlocation_2e0a1227cb (AtLocation neighbour neighbor_s_house) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "nerd is located at comic convention", "pln": ["(: cnet_atlocation_3ad484b091 (AtLocation nerd comic_convention) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "nerd is located at internet cafe", "pln": ["(: cnet_atlocation_3885b9efa0 (AtLocation nerd internet_cafe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "nerve is located at animal", "pln": ["(: cnet_atlocation_198698d4a4 (AtLocation nerve animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "nerve is located at brain", "pln": ["(: cnet_atlocation_e815521019 (AtLocation nerve brain) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "nerve is located at brainstem", "pln": ["(: cnet_atlocation_c269064889 (AtLocation nerve brainstem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "nervous friend is located at friend s wedding", "pln": ["(: cnet_atlocation_2203096265 (AtLocation nervous_friend friend_s_wedding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "net is located at boat", "pln": ["(: cnet_atlocation_0d0e91a672 (AtLocation net boat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "net is located at fisherman s boat", "pln": ["(: cnet_atlocation_ebb9e42b87 (AtLocation net fisherman_s_boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "net is located at fishing boat", "pln": ["(: cnet_atlocation_b9beb67d36 (AtLocation net fishing_boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "new artwork is located at gallery opening", "pln": ["(: cnet_atlocation_2234d1fe4e (AtLocation new_artwork gallery_opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "new car is located at car show", "pln": ["(: cnet_atlocation_17847801f2 (AtLocation new_car car_show) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "new is located at television", "pln": ["(: cnet_atlocation_c3bbdbe54f (AtLocation new television) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "new is located at tv", "pln": ["(: cnet_atlocation_90c4b1586b (AtLocation new tv) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "newspaper is located at front door", "pln": ["(: cnet_atlocation_1bdcca685a (AtLocation newspaper front_door) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "newspaper is located at lawn", "pln": ["(: cnet_atlocation_43a5d80996 (AtLocation newspaper lawn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "newspaper is located at library", "pln": ["(: cnet_atlocation_2668969770 (AtLocation newspaper library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "newspaper is located at subway", "pln": ["(: cnet_atlocation_2887485cc3 (AtLocation newspaper subway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "newspaper is located at trash", "pln": ["(: cnet_atlocation_b839044f17 (AtLocation newspaper trash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "newspaper stand is located at airport", "pln": ["(: cnet_atlocation_16a238f995 (AtLocation newspaper_stand airport) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "newspaper is located at bookstore", "pln": ["(: cnet_atlocation_bbe099112f (AtLocation newspaper bookstore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "nice looking car is located at car show", "pln": ["(: cnet_atlocation_23ce4805fd (AtLocation nice_looking_car car_show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "niece is located at family reunion", "pln": ["(: cnet_atlocation_367edf2bcb (AtLocation niece family_reunion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "night clerk is located at motel", "pln": ["(: cnet_atlocation_26719bd076 (AtLocation night_clerk motel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "night light is located at bedroom", "pln": ["(: cnet_atlocation_7ecdd6b660 (AtLocation night_light bedroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "night stand is located at bedroom", "pln": ["(: cnet_atlocation_0990cfe70e (AtLocation night_stand bedroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "night table is located at furniture store", "pln": ["(: cnet_atlocation_ad8c038637 (AtLocation night_table furniture_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "nitrogen is located at air", "pln": ["(: cnet_atlocation_ac82a39686 (AtLocation nitrogen air) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "nitrous oxide gas is located at dentist", "pln": ["(: cnet_atlocation_9b8426fd95 (AtLocation nitrous_oxide_gas dentist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "noodle is located at pantry", "pln": ["(: cnet_atlocation_f4124e2d5e (AtLocation noodle pantry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "nose is located at face", "pln": ["(: cnet_atlocation_ba86b2e945 (AtLocation nose face) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "nose is located at middle of face", "pln": ["(: cnet_atlocation_1fe2f27bc6 (AtLocation nose middle_of_face) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "not on earth is located at orbit", "pln": ["(: cnet_atlocation_0b90b63814 (AtLocation not_on_earth orbit) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "note is located at desk", "pln": ["(: cnet_atlocation_946b9c3a64 (AtLocation note desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "note is located at fridge", "pln": ["(: cnet_atlocation_759c2f2043 (AtLocation note fridge) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "notebook is located at backpack", "pln": ["(: cnet_atlocation_270422d83f (AtLocation notebook backpack) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "notebook is located at bookstore", "pln": ["(: cnet_atlocation_8e8be543b5 (AtLocation notebook bookstore) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "notebook is located at class", "pln": ["(: cnet_atlocation_349bbf6f5c (AtLocation notebook class) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "notebook is located at classroom", "pln": ["(: cnet_atlocation_f0b6c8078d (AtLocation notebook classroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "notebook is located at desk", "pln": ["(: cnet_atlocation_21ff5b1744 (AtLocation notebook desk) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "notepad is located at desk", "pln": ["(: cnet_atlocation_f650da6e0a (AtLocation notepad desk) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "notepad is located at meeting", "pln": ["(: cnet_atlocation_f80cb115c8 (AtLocation notepad meeting) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "note is located at notebook", "pln": ["(: cnet_atlocation_c84a87bdfa (AtLocation note notebook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "novel is located at bookstore", "pln": ["(: cnet_atlocation_ac64233aa2 (AtLocation novel bookstore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "number is located at someones address", "pln": ["(: cnet_atlocation_61be1d3fe7 (AtLocation number someones_address) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "numbers is located at calculator", "pln": ["(: cnet_atlocation_e730304200 (AtLocation numbers calculator) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "nucleus is located at atom", "pln": ["(: cnet_atlocation_908b05d8ca (AtLocation nucleus atom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "number is located at equation", "pln": ["(: cnet_atlocation_5ae935bc05 (AtLocation number equation) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "number is located at mathematic", "pln": ["(: cnet_atlocation_3efe2c6021 (AtLocation number mathematic) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "number is located at phone book", "pln": ["(: cnet_atlocation_b2bfcc595c (AtLocation number phone_book) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "number is located at roulette wheel", "pln": ["(: cnet_atlocation_b6d05917d2 (AtLocation number roulette_wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "number is located at social security number", "pln": ["(: cnet_atlocation_a9437cb6db (AtLocation number social_security_number) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "number is located at someone address", "pln": ["(: cnet_atlocation_072132a0b8 (AtLocation number someone_address) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "number is located at statistic", "pln": ["(: cnet_atlocation_aa2faca9b7 (AtLocation number statistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "number is located at calculation", "pln": ["(: cnet_atlocation_181e86b59e (AtLocation number calculation) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "number is located at calculator", "pln": ["(: cnet_atlocation_989d6db8cc (AtLocation number calculator) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "nun is located at church", "pln": ["(: cnet_atlocation_2ec830889d (AtLocation nun church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "nurse is located at hospital", "pln": ["(: cnet_atlocation_fa16dbd0b0 (AtLocation nurse hospital) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "nurs is located at hospital", "pln": ["(: cnet_atlocation_37d3ff09a8 (AtLocation nurs hospital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "nylon is located at drawer", "pln": ["(: cnet_atlocation_07f692a4f4 (AtLocation nylon drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "nylon is located at rope", "pln": ["(: cnet_atlocation_60786b59af (AtLocation nylon rope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "obituary is located at newspaper", "pln": ["(: cnet_atlocation_914c2e18d5 (AtLocation obituary newspaper) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "object of art is located at art show", "pln": ["(: cnet_atlocation_593e05a1f2 (AtLocation object_of_art art_show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "oboe is located at music store", "pln": ["(: cnet_atlocation_ab1cd4f09d (AtLocation oboe music_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "oboe is located at orchestra", "pln": ["(: cnet_atlocation_5ebdd915b0 (AtLocation oboe orchestra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "occasional odd sock is located at sock drawer", "pln": ["(: cnet_atlocation_04f4d9a543 (AtLocation occasional_odd_sock sock_drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ocean is located at beach", "pln": ["(: cnet_atlocation_8ce8fea53f (AtLocation ocean beach) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ocean is located at earth", "pln": ["(: cnet_atlocation_f4bac40a71 (AtLocation ocean earth) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ocean is located at surface of earth", "pln": ["(: cnet_atlocation_afc29ed4f9 (AtLocation ocean surface_of_earth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "octopus is located at ocean", "pln": ["(: cnet_atlocation_173c5ea58e (AtLocation octopus ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "offering is located at church", "pln": ["(: cnet_atlocation_e57a87999d (AtLocation offering church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "office is located at city", "pln": ["(: cnet_atlocation_4ed2cedf71 (AtLocation office city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "office is located at downtown building", "pln": ["(: cnet_atlocation_d1edbf86b2 (AtLocation office downtown_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "office is located at office building", "pln": ["(: cnet_atlocation_4e5279a31f (AtLocation office office_building) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "office is located at work", "pln": ["(: cnet_atlocation_9d277b1596 (AtLocation office work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "office building is located at city", "pln": ["(: cnet_atlocation_dc3073c9ce (AtLocation office_building city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "office equipment is located at office", "pln": ["(: cnet_atlocation_a59dec4b82 (AtLocation office_equipment office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "office equipment is located at table", "pln": ["(: cnet_atlocation_c53e501ba0 (AtLocation office_equipment table) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "office supply is located at cabinet", "pln": ["(: cnet_atlocation_fe678e8505 (AtLocation office_supply cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "office is located at building", "pln": ["(: cnet_atlocation_ab42b71bee (AtLocation office building) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "office is located at skyscraper", "pln": ["(: cnet_atlocation_04442e90f5 (AtLocation office skyscraper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "oil is located at engine", "pln": ["(: cnet_atlocation_4587ddc3ac (AtLocation oil engine) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "oil is located at ground", "pln": ["(: cnet_atlocation_dc5ab614a8 (AtLocation oil ground) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "oil is located at iraq", "pln": ["(: cnet_atlocation_11415f2288 (AtLocation oil iraq) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "oil is located at street", "pln": ["(: cnet_atlocation_5a1d2d2259 (AtLocation oil street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "oil painting is located at art show", "pln": ["(: cnet_atlocation_cda8ec8e3e (AtLocation oil_painting art_show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "ointment is located at jar", "pln": ["(: cnet_atlocation_af05243dc9 (AtLocation ointment jar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "old things is located at museum", "pln": ["(: cnet_atlocation_46764a5c23 (AtLocation old_things museum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "old is located at museum", "pln": ["(: cnet_atlocation_f06791b242 (AtLocation old museum) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "old clothe is located at attic", "pln": ["(: cnet_atlocation_c2213e9c99 (AtLocation old_clothe attic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "old clothe is located at loft", "pln": ["(: cnet_atlocation_30cb437d60 (AtLocation old_clothe loft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "old clothe is located at trash", "pln": ["(: cnet_atlocation_06f6f05484 (AtLocation old_clothe trash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "old clothing is located at trash", "pln": ["(: cnet_atlocation_341be518d5 (AtLocation old_clothing trash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "old gum is located at sidewalk", "pln": ["(: cnet_atlocation_5328547e71 (AtLocation old_gum sidewalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "old magazine is located at dentist", "pln": ["(: cnet_atlocation_33cf3f318d (AtLocation old_magazine dentist) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "old medicine is located at cabinet", "pln": ["(: cnet_atlocation_f74e764f18 (AtLocation old_medicine cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "old movy is located at television", "pln": ["(: cnet_atlocation_5a00753fc3 (AtLocation old_movy television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "old photograph is located at trunk", "pln": ["(: cnet_atlocation_5532dea48c (AtLocation old_photograph trunk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "old photograph is located at attic", "pln": ["(: cnet_atlocation_fb1525e25f (AtLocation old_photograph attic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "old sock is located at bed", "pln": ["(: cnet_atlocation_833cf8cb89 (AtLocation old_sock bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "old stuff is located at cellar", "pln": ["(: cnet_atlocation_c7e6b0d051 (AtLocation old_stuff cellar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "old thing is located at museum", "pln": ["(: cnet_atlocation_2617c3e18e (AtLocation old_thing museum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "old tire is located at garage", "pln": ["(: cnet_atlocation_0cc65d1231 (AtLocation old_tire garage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "olive is located at jar", "pln": ["(: cnet_atlocation_f38894111b (AtLocation olive jar) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "olive is located at pizza", "pln": ["(: cnet_atlocation_52290fe647 (AtLocation olive pizza) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "on off switch is located at bedroom", "pln": ["(: cnet_atlocation_e971d78852 (AtLocation on_off_switch bedroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "on off switch is located at computer", "pln": ["(: cnet_atlocation_e0a8ef89ca (AtLocation on_off_switch computer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "on off switch is located at house", "pln": ["(: cnet_atlocation_8e94169493 (AtLocation on_off_switch house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "on off switch is located at room", "pln": ["(: cnet_atlocation_5f9f6078ea (AtLocation on_off_switch room) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "on street is located at street corner", "pln": ["(: cnet_atlocation_99b0d5a1ca (AtLocation on_street street_corner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "on top of house is located at roof", "pln": ["(: cnet_atlocation_11799636a4 (AtLocation on_top_of_house roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "one or more book is located at house", "pln": ["(: cnet_atlocation_1129c4d90b (AtLocation one_or_more_book house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "one person chair is located at dining room", "pln": ["(: cnet_atlocation_4ddaf76a99 (AtLocation one_person_chair dining_room) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "one person chair is located at office", "pln": ["(: cnet_atlocation_74195ce38b (AtLocation one_person_chair office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "onion is located at pizza", "pln": ["(: cnet_atlocation_e97ffd4841 (AtLocation onion pizza) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "only one golf ball is located at suface of moon", "pln": ["(: cnet_atlocation_e643e86626 (AtLocation only_one_golf_ball suface_of_moon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "open space is located at countryside", "pln": ["(: cnet_atlocation_0a1112eed6 (AtLocation open_space countryside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "opera glass is located at opera", "pln": ["(: cnet_atlocation_f1214b0f0f (AtLocation opera_glass opera) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "opera singer is located at opera", "pln": ["(: cnet_atlocation_5881ca3a90 (AtLocation opera_singer opera) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "operation system is located at computer", "pln": ["(: cnet_atlocation_3d93eb5762 (AtLocation operation_system computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "opinion is located at newspaper", "pln": ["(: cnet_atlocation_0bf5962868 (AtLocation opinion newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "orange cone is located at roadblock", "pln": ["(: cnet_atlocation_d2d0a33ffa (AtLocation orange_cone roadblock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "orange juice is located at fridge", "pln": ["(: cnet_atlocation_b9102626d7 (AtLocation orange_juice fridge) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "orange juice is located at refrigerator", "pln": ["(: cnet_atlocation_d89b3df710 (AtLocation orange_juice refrigerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "orchestra is located at opera", "pln": ["(: cnet_atlocation_a361d4a5d2 (AtLocation orchestra opera) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "orchestra pit is located at concert theater", "pln": ["(: cnet_atlocation_080333162c (AtLocation orchestra_pit concert_theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "orchestra pit is located at opera", "pln": ["(: cnet_atlocation_c99f067676 (AtLocation orchestra_pit opera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "other people outside enjoying themselves is located at park", "pln": ["(: cnet_atlocation_61b400fbfc (AtLocation other_people_outside_enjoying_themselves park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "orchestra pit is located at theatre", "pln": ["(: cnet_atlocation_00f87ab0ad (AtLocation orchestra_pit theatre) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "orchestra seat is located at auditorium", "pln": ["(: cnet_atlocation_e884c88fa0 (AtLocation orchestra_seat auditorium) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "orchestra seat is located at orchestra", "pln": ["(: cnet_atlocation_057fbe749e (AtLocation orchestra_seat orchestra) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "orchestra seat is located at theater", "pln": ["(: cnet_atlocation_f8d4dc5421 (AtLocation orchestra_seat theater) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "oreo is located at cookie jar", "pln": ["(: cnet_atlocation_d6b78bc66b (AtLocation oreo cookie_jar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "organ is located at body", "pln": ["(: cnet_atlocation_635a12e79b (AtLocation organ body) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "organ is located at human body", "pln": ["(: cnet_atlocation_e395a04ae2 (AtLocation organ human_body) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "other people is located at mall", "pln": ["(: cnet_atlocation_d8cf05ad9e (AtLocation other_people mall) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "other people outside enjoying themselve is located at park", "pln": ["(: cnet_atlocation_ca81fc4c04 (AtLocation other_people_outside_enjoying_themselve park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "other planet is located at outerspace", "pln": ["(: cnet_atlocation_b1708fcfb6 (AtLocation other_planet outerspace) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ottoman is located at furniture store", "pln": ["(: cnet_atlocation_b31ced3d13 (AtLocation ottoman furniture_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "outfield is located at baseball field", "pln": ["(: cnet_atlocation_2dbeeb1347 (AtLocation outfield baseball_field) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "oven is located at home", "pln": ["(: cnet_atlocation_49d5d2b3c0 (AtLocation oven home) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "oven rack is located at oven", "pln": ["(: cnet_atlocation_1056be454e (AtLocation oven_rack oven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "over priced ride is located at disneyland", "pln": ["(: cnet_atlocation_f7e48e177d (AtLocation over_priced_ride disneyland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "overflow is located at sewer", "pln": ["(: cnet_atlocation_94a08bc64c (AtLocation overflow sewer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "owl is located at air", "pln": ["(: cnet_atlocation_bd2a8c4226 (AtLocation owl air) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "owl is located at zoo", "pln": ["(: cnet_atlocation_afa035f030 (AtLocation owl zoo) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "own stuff is located at house", "pln": ["(: cnet_atlocation_24815ce27e (AtLocation own_stuff house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "oxygen is located at air", "pln": ["(: cnet_atlocation_91af2663c4 (AtLocation oxygen air) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "oxygen is located at earth", "pln": ["(: cnet_atlocation_90f1eddc96 (AtLocation oxygen earth) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "oxygen is located at space shuttle", "pln": ["(: cnet_atlocation_8701b8ada7 (AtLocation oxygen space_shuttle) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "oxygen is located at water", "pln": ["(: cnet_atlocation_9f5b3dec15 (AtLocation oxygen water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pacific ocean is located at atla", "pln": ["(: cnet_atlocation_a5e11b5efd (AtLocation pacific_ocean atla) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "package is located at mail", "pln": ["(: cnet_atlocation_e37b47c564 (AtLocation package mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "painted lines is located at street", "pln": ["(: cnet_atlocation_ec7a6f0791 (AtLocation painted_lines street) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "pair of socks is located at sock drawer", "pln": ["(: cnet_atlocation_464100a46f (AtLocation pair_of_socks sock_drawer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "package is located at mail box", "pln": ["(: cnet_atlocation_ada117f8cb (AtLocation package mail_box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "package is located at post office", "pln": ["(: cnet_atlocation_27104e4a53 (AtLocation package post_office) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pad is located at carpet", "pln": ["(: cnet_atlocation_91320367bc (AtLocation pad carpet) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pad of paper is located at desktop", "pln": ["(: cnet_atlocation_33234c945e (AtLocation pad_of_paper desktop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "padding is located at carpet", "pln": ["(: cnet_atlocation_795caa49dc (AtLocation padding carpet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paddle is located at fraternity house", "pln": ["(: cnet_atlocation_8778ff0588 (AtLocation paddle fraternity_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pail is located at garage", "pln": ["(: cnet_atlocation_54b3ba05b4 (AtLocation pail garage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paint is located at shelf", "pln": ["(: cnet_atlocation_5af420a140 (AtLocation paint shelf) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paint is located at wall", "pln": ["(: cnet_atlocation_f98ee38f78 (AtLocation paint wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paint is located at windowsill", "pln": ["(: cnet_atlocation_4ed2d3d337 (AtLocation paint windowsill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "painted line is located at street", "pln": ["(: cnet_atlocation_e40b3e9c14 (AtLocation painted_line street) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "painted white line is located at freeway", "pln": ["(: cnet_atlocation_19e21e4970 (AtLocation painted_white_line freeway) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "painting is located at art show", "pln": ["(: cnet_atlocation_d8d15b99c7 (AtLocation painting art_show) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "painting is located at museum", "pln": ["(: cnet_atlocation_5a2ec9a9c7 (AtLocation painting museum) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "painting is located at gallery opening", "pln": ["(: cnet_atlocation_3833210fba (AtLocation painting gallery_opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pair of scissor is located at drawer", "pln": ["(: cnet_atlocation_e90b168851 (AtLocation pair_of_scissor drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pair of shoe is located at closet", "pln": ["(: cnet_atlocation_d73d6d3588 (AtLocation pair_of_shoe closet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pair of sock is located at sock drawer", "pln": ["(: cnet_atlocation_b47259978a (AtLocation pair_of_sock sock_drawer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pair or sock is located at sock drawer", "pln": ["(: cnet_atlocation_a5efe1149f (AtLocation pair_or_sock sock_drawer) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pallbearer is located at funeral", "pln": ["(: cnet_atlocation_a3f7c3adf3 (AtLocation pallbearer funeral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pamphlet is located at library", "pln": ["(: cnet_atlocation_66087d35f8 (AtLocation pamphlet library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pan is located at kitchen", "pln": ["(: cnet_atlocation_6abaf98ea9 (AtLocation pan kitchen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pan is located at oven", "pln": ["(: cnet_atlocation_c4166894a6 (AtLocation pan oven) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pan is located at pantry", "pln": ["(: cnet_atlocation_e4c9110c33 (AtLocation pan pantry) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "panhandler is located at bus stop", "pln": ["(: cnet_atlocation_42020d434e (AtLocation panhandler bus_stop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "panty is located at drawer", "pln": ["(: cnet_atlocation_cc4d94b450 (AtLocation panty drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "panty is located at suitcase", "pln": ["(: cnet_atlocation_d8a7d821d1 (AtLocation panty suitcase) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pantry is located at farmhouse", "pln": ["(: cnet_atlocation_2aaa44cc77 (AtLocation pantry farmhouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pantry is located at home", "pln": ["(: cnet_atlocation_2e6c282aa6 (AtLocation pantry home) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pantry is located at kitchen", "pln": ["(: cnet_atlocation_0de899b74a (AtLocation pantry kitchen) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pantry is located at sunday school kitchen", "pln": ["(: cnet_atlocation_b846aa7410 (AtLocation pantry sunday_school_kitchen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pant is located at suitcase", "pln": ["(: cnet_atlocation_82db810b3a (AtLocation pant suitcase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paper is located at cabinet", "pln": ["(: cnet_atlocation_762393d684 (AtLocation paper cabinet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paper is located at classroom", "pln": ["(: cnet_atlocation_e60bc4b36b (AtLocation paper classroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paper is located at notebook", "pln": ["(: cnet_atlocation_7f54b2da57 (AtLocation paper notebook) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paper is located at printer", "pln": ["(: cnet_atlocation_4fe4ecfe41 (AtLocation paper printer) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paper is located at ream", "pln": ["(: cnet_atlocation_fcb5b370d9 (AtLocation paper ream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paper is located at stationary shop", "pln": ["(: cnet_atlocation_f9d3b11105 (AtLocation paper stationary_shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paper is located at suitcase", "pln": ["(: cnet_atlocation_f08bc0c791 (AtLocation paper suitcase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paper is located at waste bin", "pln": ["(: cnet_atlocation_2bfd58190e (AtLocation paper waste_bin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "paper bill is located at wallet", "pln": ["(: cnet_atlocation_8b42efd5d1 (AtLocation paper_bill wallet) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paper clip is located at desk", "pln": ["(: cnet_atlocation_0673ce6046 (AtLocation paper_clip desk) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paper clip is located at desk drawer", "pln": ["(: cnet_atlocation_9c2fed8515 (AtLocation paper_clip desk_drawer) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paper clip is located at drawer", "pln": ["(: cnet_atlocation_b798a20d17 (AtLocation paper_clip drawer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "paper clip is located at file folder", "pln": ["(: cnet_atlocation_b05f4ce742 (AtLocation paper_clip file_folder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "papers is located at drawer", "pln": ["(: cnet_atlocation_0480d19f9d (AtLocation papers drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paper cup is located at water cooler", "pln": ["(: cnet_atlocation_0068da16f6 (AtLocation paper_cup water_cooler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paper fastener is located at desk drawer", "pln": ["(: cnet_atlocation_15bbc2b3da (AtLocation paper_fastener desk_drawer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paper fastener is located at office", "pln": ["(: cnet_atlocation_7cb11c8992 (AtLocation paper_fastener office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paper menu is located at cheap restaurant", "pln": ["(: cnet_atlocation_fa08146cd5 (AtLocation paper_menu cheap_restaurant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paper page is located at book", "pln": ["(: cnet_atlocation_f3a183f053 (AtLocation paper_page book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paper page is located at magazine", "pln": ["(: cnet_atlocation_5b309e174a (AtLocation paper_page magazine) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paper page is located at newspaper", "pln": ["(: cnet_atlocation_df2198990e (AtLocation paper_page newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paper page is located at notebook", "pln": ["(: cnet_atlocation_83fa8a18e6 (AtLocation paper_page notebook) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paper product is located at supermarket", "pln": ["(: cnet_atlocation_428aacc44d (AtLocation paper_product supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paper punch is located at desk drawer", "pln": ["(: cnet_atlocation_0f2b9d51f9 (AtLocation paper_punch desk_drawer) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paper punch is located at office", "pln": ["(: cnet_atlocation_9ce3f5cc9b (AtLocation paper_punch office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paper sign is located at store window", "pln": ["(: cnet_atlocation_108cf815a6 (AtLocation paper_sign store_window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paperback book is located at bookstore", "pln": ["(: cnet_atlocation_4da5f356f3 (AtLocation paperback_book bookstore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paperclip is located at desk", "pln": ["(: cnet_atlocation_5605dd7bc6 (AtLocation paperclip desk) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paperclip is located at office", "pln": ["(: cnet_atlocation_9f3c18d235 (AtLocation paperclip office) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paper is located at drawer", "pln": ["(: cnet_atlocation_4d3eeeab61 (AtLocation paper drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paper is located at meeting", "pln": ["(: cnet_atlocation_8f4874bf9b (AtLocation paper meeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paper is located at table", "pln": ["(: cnet_atlocation_1563520f31 (AtLocation paper table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paperweight is located at desk", "pln": ["(: cnet_atlocation_fe31148fcf (AtLocation paperweight desk) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paperweight is located at desktop", "pln": ["(: cnet_atlocation_9d14a4b03f (AtLocation paperweight desktop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paperwork is located at desk", "pln": ["(: cnet_atlocation_8e6aad315b (AtLocation paperwork desk) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paperwork is located at office", "pln": ["(: cnet_atlocation_dfc0e88660 (AtLocation paperwork office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "parent is located at soccer game", "pln": ["(: cnet_atlocation_17d3acf1b4 (AtLocation parent soccer_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "paris is located at france", "pln": ["(: cnet_atlocation_6b34217111 (AtLocation paris france) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "park benche is located at park", "pln": ["(: cnet_atlocation_6e586ab7b5 (AtLocation park_benche park) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "park ranger is located at park", "pln": ["(: cnet_atlocation_eedfe65b09 (AtLocation park_ranger park) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "park ranger is located at state park", "pln": ["(: cnet_atlocation_bd0056f70f (AtLocation park_ranger state_park) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "parked car is located at airport", "pln": ["(: cnet_atlocation_375f28b557 (AtLocation parked_car airport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "parking area is located at city", "pln": ["(: cnet_atlocation_2842cddeb0 (AtLocation parking_area city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "parking lot is located at airport", "pln": ["(: cnet_atlocation_31bfeaeb77 (AtLocation parking_lot airport) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "parking lot is located at city", "pln": ["(: cnet_atlocation_b5f78c6895 (AtLocation parking_lot city) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "parking lot is located at mall", "pln": ["(: cnet_atlocation_e5a2910ca2 (AtLocation parking_lot mall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "parking lot is located at shopping center", "pln": ["(: cnet_atlocation_b4ad1cd3f7 (AtLocation parking_lot shopping_center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "parking lot is located at shopping mall", "pln": ["(: cnet_atlocation_2bcacd186d (AtLocation parking_lot shopping_mall) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "parking space is located at rest area", "pln": ["(: cnet_atlocation_bb608e67cf (AtLocation parking_space rest_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "parking space is located at drive in movie", "pln": ["(: cnet_atlocation_96f435a441 (AtLocation parking_space drive_in_movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "parking structure is located at city", "pln": ["(: cnet_atlocation_5a315036ed (AtLocation parking_structure city) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "parking zone is located at parking lot", "pln": ["(: cnet_atlocation_1c46ad7e16 (AtLocation parking_zone parking_lot) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "parlor is located at house", "pln": ["(: cnet_atlocation_ebcd18152b (AtLocation parlor house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "parlor is located at victorian house", "pln": ["(: cnet_atlocation_d032baf3bb (AtLocation parlor victorian_house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "party is located at fraternity house", "pln": ["(: cnet_atlocation_ae043287ed (AtLocation party fraternity_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "passage is located at bible", "pln": ["(: cnet_atlocation_4da9d04105 (AtLocation passage bible) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "passage is located at diary", "pln": ["(: cnet_atlocation_d5e14a5abf (AtLocation passage diary) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "passenger is located at airport", "pln": ["(: cnet_atlocation_20530039c8 (AtLocation passenger airport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "passenger is located at backseat of car", "pln": ["(: cnet_atlocation_ae0fbbef9f (AtLocation passenger backseat_of_car) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "passenger is located at bus depot", "pln": ["(: cnet_atlocation_7526fc5145 (AtLocation passenger bus_depot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "passenger is located at bus stop", "pln": ["(: cnet_atlocation_de17694390 (AtLocation passenger bus_stop) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "passenger ticket is located at pocket", "pln": ["(: cnet_atlocation_bc2dfc86b8 (AtLocation passenger_ticket pocket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "passenger ticket is located at train station", "pln": ["(: cnet_atlocation_409d8d8972 (AtLocation passenger_ticket train_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "passenger is located at car", "pln": ["(: cnet_atlocation_80ab569264 (AtLocation passenger car) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "passenger is located at train station", "pln": ["(: cnet_atlocation_159245a235 (AtLocation passenger train_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "passenger is located at vehicle", "pln": ["(: cnet_atlocation_114904a9be (AtLocation passenger vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "passport case is located at pocket", "pln": ["(: cnet_atlocation_59ee2a24f1 (AtLocation passport_case pocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "passport case is located at suitcase", "pln": ["(: cnet_atlocation_e81f750b0c (AtLocation passport_case suitcase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pasta is located at italian restaurant", "pln": ["(: cnet_atlocation_bae267e112 (AtLocation pasta italian_restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "patient is located at table", "pln": ["(: cnet_atlocation_f2bdb00019 (AtLocation patient table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "patient is located at dentist", "pln": ["(: cnet_atlocation_0fbfe1011a (AtLocation patient dentist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "patio is located at back of house", "pln": ["(: cnet_atlocation_d594bd94a8 (AtLocation patio back_of_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "patio table is located at porch", "pln": ["(: cnet_atlocation_ebe9a09fc1 (AtLocation patio_table porch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "patron is located at resturant", "pln": ["(: cnet_atlocation_e7e7a8e933 (AtLocation patron resturant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pavement is located at city", "pln": ["(: cnet_atlocation_c0152b134a (AtLocation pavement city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pawn is located at chess game", "pln": ["(: cnet_atlocation_9d8c22c122 (AtLocation pawn chess_game) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pawn is located at chess set", "pln": ["(: cnet_atlocation_ac4276b0eb (AtLocation pawn chess_set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pawn is located at scheme", "pln": ["(: cnet_atlocation_728aa7ba94 (AtLocation pawn scheme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pay per view movy is located at at hotel", "pln": ["(: cnet_atlocation_61cca8c9f6 (AtLocation pay_per_view_movy at_hotel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "payment counter is located at bank", "pln": ["(: cnet_atlocation_160460c274 (AtLocation payment_counter bank) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "payment counter is located at convenience store", "pln": ["(: cnet_atlocation_f6bc34da24 (AtLocation payment_counter convenience_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "peak is located at top of mountain", "pln": ["(: cnet_atlocation_7c094f8669 (AtLocation peak top_of_mountain) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "peanut butter is located at container", "pln": ["(: cnet_atlocation_014321fe88 (AtLocation peanut_butter container) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "peanut butter is located at jar", "pln": ["(: cnet_atlocation_61b37d5516 (AtLocation peanut_butter jar) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "peanut butter is located at pantry", "pln": ["(: cnet_atlocation_e1f9364504 (AtLocation peanut_butter pantry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "peanut butter is located at supermarket", "pln": ["(: cnet_atlocation_d5fd816ab5 (AtLocation peanut_butter supermarket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "peanut is located at jar", "pln": ["(: cnet_atlocation_64a71ea808 (AtLocation peanut jar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "peanut is located at plane", "pln": ["(: cnet_atlocation_5b333543b5 (AtLocation peanut plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pearl is located at oyster", "pln": ["(: cnet_atlocation_42bfb677df (AtLocation pearl oyster) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pea is located at farmer s market", "pln": ["(: cnet_atlocation_9bdc16678a (AtLocation pea farmer_s_market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "peasant is located at village", "pln": ["(: cnet_atlocation_363c3657f1 (AtLocation peasant village) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pebble is located at ground", "pln": ["(: cnet_atlocation_a0b99873b0 (AtLocation pebble ground) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pebble is located at lake", "pln": ["(: cnet_atlocation_8fa4c15fc2 (AtLocation pebble lake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pebble is located at pond", "pln": ["(: cnet_atlocation_d7a2b65cf8 (AtLocation pebble pond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pebble is located at beach", "pln": ["(: cnet_atlocation_80b84e7ea8 (AtLocation pebble beach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pedestal is located at museum", "pln": ["(: cnet_atlocation_9cb72d1b76 (AtLocation pedestal museum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pedestrian is located at street", "pln": ["(: cnet_atlocation_87e18acf19 (AtLocation pedestrian street) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "peep hole is located at front door", "pln": ["(: cnet_atlocation_e6d71464d6 (AtLocation peep_hole front_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pen is located at drawer", "pln": ["(: cnet_atlocation_c58f95e4db (AtLocation pen drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pen is located at office", "pln": ["(: cnet_atlocation_218ec39e5a (AtLocation pen office) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pen is located at office supply store", "pln": ["(: cnet_atlocation_047e752f59 (AtLocation pen office_supply_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pen is located at pocket", "pln": ["(: cnet_atlocation_ebe504e186 (AtLocation pen pocket) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pen is located at purse", "pln": ["(: cnet_atlocation_a0b048dcd8 (AtLocation pen purse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pencil is located at backpack", "pln": ["(: cnet_atlocation_84a7e462b2 (AtLocation pencil backpack) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pencil is located at classroom", "pln": ["(: cnet_atlocation_b45fca9449 (AtLocation pencil classroom) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pencil is located at cup", "pln": ["(: cnet_atlocation_d88f133457 (AtLocation pencil cup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pencil is located at desk drawer", "pln": ["(: cnet_atlocation_9a9f9f1075 (AtLocation pencil desk_drawer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pencil is located at desktop", "pln": ["(: cnet_atlocation_95c75c6406 (AtLocation pencil desktop) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pencil is located at drawer", "pln": ["(: cnet_atlocation_c6d8a7e76e (AtLocation pencil drawer) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pencil is located at pencil case", "pln": ["(: cnet_atlocation_9a926be09d (AtLocation pencil pencil_case) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "pencil is located at pencil holder", "pln": ["(: cnet_atlocation_87a674277e (AtLocation pencil pencil_holder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pencil is located at pocket", "pln": ["(: cnet_atlocation_042e3d2bbe (AtLocation pencil pocket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pencil holder is located at desk", "pln": ["(: cnet_atlocation_831f9c96ae (AtLocation pencil_holder desk) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pencil sharpener is located at desk", "pln": ["(: cnet_atlocation_e1654f8bed (AtLocation pencil_sharpener desk) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pencil sharpener is located at desk drawer", "pln": ["(: cnet_atlocation_8d89ba9894 (AtLocation pencil_sharpener desk_drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pencil sharpener is located at office", "pln": ["(: cnet_atlocation_94bce705c8 (AtLocation pencil_sharpener office) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pencil is located at store", "pln": ["(: cnet_atlocation_edd44c57da (AtLocation pencil store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pencil and pen is located at office", "pln": ["(: cnet_atlocation_39f6ccf4b2 (AtLocation pencil_and_pen office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "penguin is located at zoo", "pln": ["(: cnet_atlocation_396542e7be (AtLocation penguin zoo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "penis is located at pair of pant", "pln": ["(: cnet_atlocation_ac358c5313 (AtLocation penis pair_of_pant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "penny is located at jar", "pln": ["(: cnet_atlocation_7698c73fdb (AtLocation penny jar) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "penny is located at pocket", "pln": ["(: cnet_atlocation_bc7843d4de (AtLocation penny pocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "penny is located at ground", "pln": ["(: cnet_atlocation_a5d5db7801 (AtLocation penny ground) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "penny is located at piggy bank", "pln": ["(: cnet_atlocation_0b9356cb7e (AtLocation penny piggy_bank) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pen is located at backpack", "pln": ["(: cnet_atlocation_f9ea6ac3ae (AtLocation pen backpack) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pen is located at school", "pln": ["(: cnet_atlocation_3d3711421b (AtLocation pen school) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pen and pencil is located at desk", "pln": ["(: cnet_atlocation_c6c1bf040a (AtLocation pen_and_pencil desk) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "people is located at apartment", "pln": ["(: cnet_atlocation_fe8720a1b7 (AtLocation people apartment) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "people is located at audience", "pln": ["(: cnet_atlocation_4e592f3040 (AtLocation people audience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "people is located at building", "pln": ["(: cnet_atlocation_c738b7e910 (AtLocation people building) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "people is located at bus stop", "pln": ["(: cnet_atlocation_e18b227c83 (AtLocation people bus_stop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "people is located at conference", "pln": ["(: cnet_atlocation_a8076c7ec5 (AtLocation people conference) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "people is located at convention", "pln": ["(: cnet_atlocation_6691fa72bc (AtLocation people convention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "people is located at hockey game", "pln": ["(: cnet_atlocation_b8bf42e6f6 (AtLocation people hockey_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "people is located at hospital", "pln": ["(: cnet_atlocation_f74f60ddbf (AtLocation people hospital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "people is located at military base", "pln": ["(: cnet_atlocation_2774c2ca4e (AtLocation people military_base) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "people is located at opera", "pln": ["(: cnet_atlocation_493e58af4f (AtLocation people opera) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "people is located at quandry", "pln": ["(: cnet_atlocation_6a41e8a950 (AtLocation people quandry) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "people is located at show", "pln": ["(: cnet_atlocation_9f49788e10 (AtLocation people show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "people is located at supermarket", "pln": ["(: cnet_atlocation_d5bba507f9 (AtLocation people supermarket) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "people is located at theater", "pln": ["(: cnet_atlocation_119d67c4e6 (AtLocation people theater) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "people is located at town", "pln": ["(: cnet_atlocation_98a9dcf9c7 (AtLocation people town) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "people is located at train station", "pln": ["(: cnet_atlocation_ee17501af2 (AtLocation people train_station) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "people is located at vehicle", "pln": ["(: cnet_atlocation_b53a44291a (AtLocation people vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "people is located at water cooler", "pln": ["(: cnet_atlocation_7c3a6cdfa9 (AtLocation people water_cooler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "people is located at water fountain", "pln": ["(: cnet_atlocation_bbb2c4d1c5 (AtLocation people water_fountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "people is located at wedding", "pln": ["(: cnet_atlocation_bf610c3a50 (AtLocation people wedding) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "people and bus is located at bus depot", "pln": ["(: cnet_atlocation_c7f9af2e42 (AtLocation people_and_bus bus_depot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "people dancing and singing is located at show", "pln": ["(: cnet_atlocation_e2a14c4ee7 (AtLocation people_dancing_and_singing show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "people jogging is located at park", "pln": ["(: cnet_atlocation_645e4c8fc6 (AtLocation people_jogging park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "people waiting is located at bus stop", "pln": ["(: cnet_atlocation_6d2176db20 (AtLocation people_waiting bus_stop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "people waiting for bus is located at bus depot", "pln": ["(: cnet_atlocation_ed7fe28a15 (AtLocation people_waiting_for_bus bus_depot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "people waiting for bus is located at bus stop", "pln": ["(: cnet_atlocation_fb79cb0d43 (AtLocation people_waiting_for_bus bus_stop) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "people walking dog is located at park", "pln": ["(: cnet_atlocation_787549ec50 (AtLocation people_walking_dog park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "people who scuba dive is located at water", "pln": ["(: cnet_atlocation_c32e6816b0 (AtLocation people_who_scuba_dive water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "people without car is located at subway", "pln": ["(: cnet_atlocation_6c24d974e9 (AtLocation people_without_car subway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pepper is located at dinner", "pln": ["(: cnet_atlocation_0c83f6e818 (AtLocation pepper dinner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pepper is located at table", "pln": ["(: cnet_atlocation_d4a6ab7c87 (AtLocation pepper table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pepper and salt is located at grocery store", "pln": ["(: cnet_atlocation_c945099c17 (AtLocation pepper_and_salt grocery_store) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pepperoni is located at pizza", "pln": ["(: cnet_atlocation_091737567c (AtLocation pepperoni pizza) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pepper is located at farmer s market", "pln": ["(: cnet_atlocation_e0181b6778 (AtLocation pepper farmer_s_market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "performance is located at show", "pln": ["(: cnet_atlocation_20d363f5a3 (AtLocation performance show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "performance is located at theatre", "pln": ["(: cnet_atlocation_110e6801a0 (AtLocation performance theatre) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "performer is located at opera", "pln": ["(: cnet_atlocation_744373069c (AtLocation performer opera) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "performer is located at stage", "pln": ["(: cnet_atlocation_a5a130ece4 (AtLocation performer stage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "performer is located at theater", "pln": ["(: cnet_atlocation_e5058051f9 (AtLocation performer theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "period is located at end of line", "pln": ["(: cnet_atlocation_24052c6bbe (AtLocation period end_of_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "period is located at school", "pln": ["(: cnet_atlocation_fb51697d2e (AtLocation period school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "period is located at sentence", "pln": ["(: cnet_atlocation_e2769bba50 (AtLocation period sentence) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "person is located at building", "pln": ["(: cnet_atlocation_ae57e021cd (AtLocation person building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "person is located at bus stop", "pln": ["(: cnet_atlocation_4abec4555d (AtLocation person bus_stop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "person is located at garage", "pln": ["(: cnet_atlocation_41090ced16 (AtLocation person garage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "person is located at hospital", "pln": ["(: cnet_atlocation_627fc504ac (AtLocation person hospital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "phillips screwdriver is located at hardware store", "pln": ["(: cnet_atlocation_299f6248c9 (AtLocation phillips_screwdriver hardware_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "person is located at quandry", "pln": ["(: cnet_atlocation_fd4f9ecc10 (AtLocation person quandry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "person at prayer is located at synagogue", "pln": ["(: cnet_atlocation_8876599947 (AtLocation person_at_prayer synagogue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "person on date is located at movy", "pln": ["(: cnet_atlocation_78f5d8e35e (AtLocation person_on_date movy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "personal item is located at shelf", "pln": ["(: cnet_atlocation_001b222a61 (AtLocation personal_item shelf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pet is located at house", "pln": ["(: cnet_atlocation_85794640fc (AtLocation pet house) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pet food is located at supermarket", "pln": ["(: cnet_atlocation_8c82765524 (AtLocation pet_food supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "petri dish is located at chemistry lab", "pln": ["(: cnet_atlocation_8d5a7fd8ea (AtLocation petri_dish chemistry_lab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "petrol is located at car", "pln": ["(: cnet_atlocation_e826d14562 (AtLocation petrol car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "petrol is located at fuel tank", "pln": ["(: cnet_atlocation_5a1e8287fc (AtLocation petrol fuel_tank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "petrol is located at gas station", "pln": ["(: cnet_atlocation_266ef93c2c (AtLocation petrol gas_station) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "petrol is located at petrol station", "pln": ["(: cnet_atlocation_dd7b66b3ca (AtLocation petrol petrol_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "phantom is located at opera", "pln": ["(: cnet_atlocation_ed69e9f759 (AtLocation phantom opera) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "phillip screwdriver is located at hardware store", "pln": ["(: cnet_atlocation_7e965a210a (AtLocation phillip_screwdriver hardware_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "phillip screwdriver is located at tool chest", "pln": ["(: cnet_atlocation_7cbcaadbec (AtLocation phillip_screwdriver tool_chest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "phillip screwdriver is located at toolbox", "pln": ["(: cnet_atlocation_d5d763d1f2 (AtLocation phillip_screwdriver toolbox) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "phone is located at desk", "pln": ["(: cnet_atlocation_0d81638598 (AtLocation phone desk) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "phone is located at house", "pln": ["(: cnet_atlocation_7cf3c7e81d (AtLocation phone house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "phone is located at motel", "pln": ["(: cnet_atlocation_dea1220b86 (AtLocation phone motel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "phone is located at office", "pln": ["(: cnet_atlocation_1938d8cb5f (AtLocation phone office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "phone book is located at drawer", "pln": ["(: cnet_atlocation_40a74a2dc4 (AtLocation phone_book drawer) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "phone book is located at motel", "pln": ["(: cnet_atlocation_64dbdb438d (AtLocation phone_book motel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "phone number is located at phone book", "pln": ["(: cnet_atlocation_0c98b1e6d5 (AtLocation phone_number phone_book) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "photo album is located at attic", "pln": ["(: cnet_atlocation_53052f1465 (AtLocation photo_album attic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "photocopier is located at library", "pln": ["(: cnet_atlocation_64118b4755 (AtLocation photocopier library) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "photocopier is located at office", "pln": ["(: cnet_atlocation_34d662cd35 (AtLocation photocopier office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "photographer is located at wedding", "pln": ["(: cnet_atlocation_c69e9df02e (AtLocation photographer wedding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "photographer is located at waterfall", "pln": ["(: cnet_atlocation_253cdb30f0 (AtLocation photographer waterfall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "photon is located at space", "pln": ["(: cnet_atlocation_0eeca53e02 (AtLocation photon space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "physic is located at university", "pln": ["(: cnet_atlocation_262de96b13 (AtLocation physic university) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "piano is located at church", "pln": ["(: cnet_atlocation_4656d20584 (AtLocation piano church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "picketers is located at demonstration", "pln": ["(: cnet_atlocation_a4f79dbe63 (AtLocation picketers demonstration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "piano is located at concert", "pln": ["(: cnet_atlocation_371198722c (AtLocation piano concert) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "piano is located at concert hall", "pln": ["(: cnet_atlocation_cc49021fd2 (AtLocation piano concert_hall) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "piano is located at orchestra", "pln": ["(: cnet_atlocation_8dc05e797c (AtLocation piano orchestra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "piccolo is located at band", "pln": ["(: cnet_atlocation_d869e0a165 (AtLocation piccolo band) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "piccolo is located at orchestra", "pln": ["(: cnet_atlocation_902777b943 (AtLocation piccolo orchestra) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "picket sign is located at demonstration", "pln": ["(: cnet_atlocation_b9bf3e0456 (AtLocation picket_sign demonstration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "picketer is located at demonstration", "pln": ["(: cnet_atlocation_33f651360f (AtLocation picketer demonstration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pickle is located at jar", "pln": ["(: cnet_atlocation_2b38afced0 (AtLocation pickle jar) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pickled onion is located at jar", "pln": ["(: cnet_atlocation_defe5558fe (AtLocation pickled_onion jar) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pickle is located at pickle barrel", "pln": ["(: cnet_atlocation_be817a1503 (AtLocation pickle pickle_barrel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pickle is located at refrigerator", "pln": ["(: cnet_atlocation_cae5a49d89 (AtLocation pickle refrigerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pickpocket is located at fairground", "pln": ["(: cnet_atlocation_115a653f5c (AtLocation pickpocket fairground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "picnic table is located at park", "pln": ["(: cnet_atlocation_a5ae2f5634 (AtLocation picnic_table park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "picnic table is located at state park", "pln": ["(: cnet_atlocation_375c3041a5 (AtLocation picnic_table state_park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "picture is located at art show", "pln": ["(: cnet_atlocation_38b10cc7a0 (AtLocation picture art_show) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "picture is located at desktop", "pln": ["(: cnet_atlocation_1dc6a42d61 (AtLocation picture desktop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "picture is located at shelf", "pln": ["(: cnet_atlocation_155b1786ea (AtLocation picture shelf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "picture is located at wall", "pln": ["(: cnet_atlocation_5f09ae6d25 (AtLocation picture wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "picture frame is located at art show", "pln": ["(: cnet_atlocation_3a3390657a (AtLocation picture_frame art_show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "picture is located at house", "pln": ["(: cnet_atlocation_01a703d81b (AtLocation picture house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "picture is located at newspaper", "pln": ["(: cnet_atlocation_ff6b98703b (AtLocation picture newspaper) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pie is located at oven", "pln": ["(: cnet_atlocation_90d77c709a (AtLocation pie oven) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pie is located at refrigerator", "pln": ["(: cnet_atlocation_db12e571f1 (AtLocation pie refrigerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pie is located at windowsill", "pln": ["(: cnet_atlocation_facfaea3cc (AtLocation pie windowsill) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "piece is located at puzzle", "pln": ["(: cnet_atlocation_5511384110 (AtLocation piece puzzle) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "piece of paper is located at office", "pln": ["(: cnet_atlocation_e797187542 (AtLocation piece_of_paper office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "piece of pottery is located at kiln", "pln": ["(: cnet_atlocation_5f92cbb762 (AtLocation piece_of_pottery kiln) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pier is located at beach", "pln": ["(: cnet_atlocation_bc8083ba6c (AtLocation pier beach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pigeon is located at park", "pln": ["(: cnet_atlocation_a544eccc3a (AtLocation pigeon park) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pig feet is located at jar", "pln": ["(: cnet_atlocation_9e0ea54086 (AtLocation pig_feet jar) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pike is located at river", "pln": ["(: cnet_atlocation_e86d9845f6 (AtLocation pike river) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pile of paper is located at desk", "pln": ["(: cnet_atlocation_5bf4191524 (AtLocation pile_of_paper desk) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pill is located at bottle", "pln": ["(: cnet_atlocation_a66efbbbe9 (AtLocation pill bottle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pill is located at cabinet", "pln": ["(: cnet_atlocation_355effe20d (AtLocation pill cabinet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pill is located at purse", "pln": ["(: cnet_atlocation_ab0da04173 (AtLocation pill purse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pillow is located at bedroom", "pln": ["(: cnet_atlocation_e700e35952 (AtLocation pillow bedroom) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pillow case is located at bed", "pln": ["(: cnet_atlocation_59fcd4265d (AtLocation pillow_case bed) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pillow case is located at bedroom", "pln": ["(: cnet_atlocation_c54397f9c7 (AtLocation pillow_case bedroom) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pillow case is located at england", "pln": ["(: cnet_atlocation_89ab483abe (AtLocation pillow_case england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pillow cas is located at drawer", "pln": ["(: cnet_atlocation_a668d15477 (AtLocation pillow_cas drawer) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pillowcase is located at bedroom", "pln": ["(: cnet_atlocation_9f4d7819bb (AtLocation pillowcase bedroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pillowcase is located at linen closet", "pln": ["(: cnet_atlocation_3723dd445c (AtLocation pillowcase linen_closet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pilot is located at airplane", "pln": ["(: cnet_atlocation_222055232b (AtLocation pilot airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pilot is located at cockpit", "pln": ["(: cnet_atlocation_6aa8cc8098 (AtLocation pilot cockpit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pilot is located at shower", "pln": ["(: cnet_atlocation_196712a6e5 (AtLocation pilot shower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "pineapple is located at pizza", "pln": ["(: cnet_atlocation_2a0a87a9a2 (AtLocation pineapple pizza) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pin is located at bowling alley", "pln": ["(: cnet_atlocation_e206753981 (AtLocation pin bowling_alley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pirate is located at boat", "pln": ["(: cnet_atlocation_62fd396338 (AtLocation pirate boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pistol is located at police station", "pln": ["(: cnet_atlocation_b0e68f39ac (AtLocation pistol police_station) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pit is located at cherry", "pln": ["(: cnet_atlocation_a0f8cec511 (AtLocation pit cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pit is located at mine", "pln": ["(: cnet_atlocation_50d5ad3f94 (AtLocation pit mine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pit is located at peach", "pln": ["(: cnet_atlocation_413e2904e6 (AtLocation pit peach) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pitcher mound is located at baseball field", "pln": ["(: cnet_atlocation_44127ea075 (AtLocation pitcher_mound baseball_field) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pizza is located at oven", "pln": ["(: cnet_atlocation_ff6cd8de14 (AtLocation pizza oven) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pizza is located at plate", "pln": ["(: cnet_atlocation_df7ea679cf (AtLocation pizza plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pizza parlor is located at city", "pln": ["(: cnet_atlocation_a14aa6d955 (AtLocation pizza_parlor city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pizzeria is located at little italy", "pln": ["(: cnet_atlocation_4858cd1957 (AtLocation pizzeria little_italy) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pizzeria is located at mall", "pln": ["(: cnet_atlocation_f9b539e0a8 (AtLocation pizzeria mall) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pizzeria is located at populated area", "pln": ["(: cnet_atlocation_0a354b515e (AtLocation pizzeria populated_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "place is located at location", "pln": ["(: cnet_atlocation_591262abaf (AtLocation place location) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "place is located at map", "pln": ["(: cnet_atlocation_1ebc1ebbad (AtLocation place map) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "place mat is located at table", "pln": ["(: cnet_atlocation_ade099aa25 (AtLocation place_mat table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "place setting is located at table", "pln": ["(: cnet_atlocation_2610cd723c (AtLocation place_setting table) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "place to dive is located at swimming pool", "pln": ["(: cnet_atlocation_a2f4d8229c (AtLocation place_to_dive swimming_pool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "place to eat is located at city", "pln": ["(: cnet_atlocation_6acf225593 (AtLocation place_to_eat city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "place to eat is located at town", "pln": ["(: cnet_atlocation_af8b7b2c2a (AtLocation place_to_eat town) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "place to stay is located at city", "pln": ["(: cnet_atlocation_e7e820a5ed (AtLocation place_to_stay city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "place to stay is located at hotel", "pln": ["(: cnet_atlocation_bc352e8959 (AtLocation place_to_stay hotel) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "planets is located at space", "pln": ["(: cnet_atlocation_84af6331d7 (AtLocation planets space) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "place to stay is located at motel", "pln": ["(: cnet_atlocation_0b1d387974 (AtLocation place_to_stay motel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "place to stay is located at phone book", "pln": ["(: cnet_atlocation_3fc56d77e2 (AtLocation place_to_stay phone_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "placemat is located at table", "pln": ["(: cnet_atlocation_c21019dd42 (AtLocation placemat table) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "plain is located at georgia", "pln": ["(: cnet_atlocation_2ecc9d3e0d (AtLocation plain georgia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "plane is located at air", "pln": ["(: cnet_atlocation_9892272c60 (AtLocation plane air) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "plane is located at hangar", "pln": ["(: cnet_atlocation_0cf2afdfe7 (AtLocation plane hangar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "plane is located at runway", "pln": ["(: cnet_atlocation_c0e158ce53 (AtLocation plane runway) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "plane is located at sky", "pln": ["(: cnet_atlocation_0dd7cf3099 (AtLocation plane sky) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "plane is located at taxiway", "pln": ["(: cnet_atlocation_47a516ddb3 (AtLocation plane taxiway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "plane ticket is located at pocket", "pln": ["(: cnet_atlocation_3a0bc9b422 (AtLocation plane_ticket pocket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "planet is located at galaxy", "pln": ["(: cnet_atlocation_5b5df7c24b (AtLocation planet galaxy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "planet is located at orbit", "pln": ["(: cnet_atlocation_242a93c8e5 (AtLocation planet orbit) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "planet is located at outer space", "pln": ["(: cnet_atlocation_6ff229984d (AtLocation planet outer_space) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "planet is located at outerspace", "pln": ["(: cnet_atlocation_4457f9f25e (AtLocation planet outerspace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "planet is located at space", "pln": ["(: cnet_atlocation_f9a73a4653 (AtLocation planet space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "planet is located at universe", "pln": ["(: cnet_atlocation_13780fea4b (AtLocation planet universe) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "plankton is located at ocean", "pln": ["(: cnet_atlocation_6e14fd80e8 (AtLocation plankton ocean) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "plankton is located at water", "pln": ["(: cnet_atlocation_9a9b85189f (AtLocation plankton water) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "plant is located at pot", "pln": ["(: cnet_atlocation_bae7fe98ac (AtLocation plant pot) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "plant is located at windowsill", "pln": ["(: cnet_atlocation_30f5adafe3 (AtLocation plant windowsill) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "plantation is located at georgia", "pln": ["(: cnet_atlocation_b59ee973e1 (AtLocation plantation georgia) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "plant is located at garden", "pln": ["(: cnet_atlocation_351c2866a4 (AtLocation plant garden) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "plant is located at greenhouse", "pln": ["(: cnet_atlocation_442ef08ab3 (AtLocation plant greenhouse) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "plant is located at park", "pln": ["(: cnet_atlocation_5e83536dee (AtLocation plant park) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "plant is located at surface of earth", "pln": ["(: cnet_atlocation_34644509dc (AtLocation plant surface_of_earth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "plate is located at cabinet", "pln": ["(: cnet_atlocation_dbc5d4c176 (AtLocation plate cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "plate is located at cupboard", "pln": ["(: cnet_atlocation_afffa32bba (AtLocation plate cupboard) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "plate is located at kitchen", "pln": ["(: cnet_atlocation_e865f17c2e (AtLocation plate kitchen) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "plate is located at restaurant", "pln": ["(: cnet_atlocation_247cb8ec75 (AtLocation plate restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "plate is located at table", "pln": ["(: cnet_atlocation_7dc70bed7b (AtLocation plate table) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "platter is located at cabinet", "pln": ["(: cnet_atlocation_d3b4733fc0 (AtLocation platter cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "play is located at theater", "pln": ["(: cnet_atlocation_1cb39a0178 (AtLocation play theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "play is located at theatre", "pln": ["(: cnet_atlocation_c0fc93e024 (AtLocation play theatre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "player is located at sporting event", "pln": ["(: cnet_atlocation_5951a34583 (AtLocation player sporting_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "playground is located at park", "pln": ["(: cnet_atlocation_c2c1709b7c (AtLocation playground park) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "playroom is located at preschool", "pln": ["(: cnet_atlocation_c93cedb6bb (AtLocation playroom preschool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pleasure garden is located at japan", "pln": ["(: cnet_atlocation_8aada6718f (AtLocation pleasure_garden japan) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "plumbing is located at bathroom", "pln": ["(: cnet_atlocation_b3096f0cb2 (AtLocation plumbing bathroom) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "plumbing is located at house", "pln": ["(: cnet_atlocation_1066adaa4c (AtLocation plumbing house) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "plumbing is located at kitchen", "pln": ["(: cnet_atlocation_3b2bff460c (AtLocation plumbing kitchen) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "police cars is located at roadblock", "pln": ["(: cnet_atlocation_88fb854dcc (AtLocation police_cars roadblock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "plumbing is located at oil refinery", "pln": ["(: cnet_atlocation_480e782a88 (AtLocation plumbing oil_refinery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "plumbing is located at wall", "pln": ["(: cnet_atlocation_07608da890 (AtLocation plumbing wall) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "plumbing is located at water fountain", "pln": ["(: cnet_atlocation_60ac93e1ca (AtLocation plumbing water_fountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pluto is located at space", "pln": ["(: cnet_atlocation_186050a2d5 (AtLocation pluto space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pocket lint is located at pocket", "pln": ["(: cnet_atlocation_7ac7d43a2b (AtLocation pocket_lint pocket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pocket notebook is located at pocket", "pln": ["(: cnet_atlocation_dcf18f3acf (AtLocation pocket_notebook pocket) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "poem is located at book of poetry", "pln": ["(: cnet_atlocation_3fbffc8ecc (AtLocation poem book_of_poetry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "poem is located at poetry book", "pln": ["(: cnet_atlocation_0086ca45b0 (AtLocation poem poetry_book) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "poet is located at home", "pln": ["(: cnet_atlocation_d8c3771eee (AtLocation poet home) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "poet is located at unemployment line", "pln": ["(: cnet_atlocation_ba351e658e (AtLocation poet unemployment_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "poker table is located at casino", "pln": ["(: cnet_atlocation_f513304a89 (AtLocation poker_table casino) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "polar bear is located at zoo", "pln": ["(: cnet_atlocation_f3965ca4ce (AtLocation polar_bear zoo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "police is located at donut shop", "pln": ["(: cnet_atlocation_257b5fd2d0 (AtLocation police donut_shop) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "police car is located at roadblock", "pln": ["(: cnet_atlocation_274cf87cec (AtLocation police_car roadblock) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "police officer is located at beat", "pln": ["(: cnet_atlocation_5a918333f3 (AtLocation police_officer beat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "police officer is located at city", "pln": ["(: cnet_atlocation_0202f2bbf7 (AtLocation police_officer city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "policeman is located at police station", "pln": ["(: cnet_atlocation_3ed3d1be2a (AtLocation policeman police_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "policeman is located at roadblock", "pln": ["(: cnet_atlocation_8f9b77d186 (AtLocation policeman roadblock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "politician is located at washington d c", "pln": ["(: cnet_atlocation_bc507f0d1f (AtLocation politician washington_d_c) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pollution is located at air", "pln": ["(: cnet_atlocation_04640df614 (AtLocation pollution air) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pollution is located at car show", "pln": ["(: cnet_atlocation_ecc63fcbaf (AtLocation pollution car_show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pollution is located at street", "pln": ["(: cnet_atlocation_f57f91d592 (AtLocation pollution street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pond is located at forest", "pln": ["(: cnet_atlocation_788dd3d65d (AtLocation pond forest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pond is located at ground", "pln": ["(: cnet_atlocation_e8c8e6e158 (AtLocation pond ground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pond is located at park", "pln": ["(: cnet_atlocation_d9e0f13564 (AtLocation pond park) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pool is located at back yard", "pln": ["(: cnet_atlocation_ed40cc81e2 (AtLocation pool back_yard) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pool is located at backyard", "pln": ["(: cnet_atlocation_3355dd3f61 (AtLocation pool backyard) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pool is located at neighbor s house", "pln": ["(: cnet_atlocation_b86d0b01c3 (AtLocation pool neighbor_s_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pool table is located at bowling alley", "pln": ["(: cnet_atlocation_35337f268e (AtLocation pool_table bowling_alley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "poop is located at dirty diaper", "pln": ["(: cnet_atlocation_3b602305b7 (AtLocation poop dirty_diaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "poop is located at lawn", "pln": ["(: cnet_atlocation_e934f81bfd (AtLocation poop lawn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "poop is located at zoo", "pln": ["(: cnet_atlocation_c41434f19b (AtLocation poop zoo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "poor people is located at fast food restaurant", "pln": ["(: cnet_atlocation_b8f05f3f78 (AtLocation poor_people fast_food_restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "popcorn is located at drive in movie", "pln": ["(: cnet_atlocation_313dffeac0 (AtLocation popcorn drive_in_movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "popcorn is located at movie theater", "pln": ["(: cnet_atlocation_a9fcc9667a (AtLocation popcorn movie_theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "pork butcher is located at butchers shop", "pln": ["(: cnet_atlocation_1e26a8c074 (AtLocation pork_butcher butchers_shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "popcorn is located at movy", "pln": ["(: cnet_atlocation_5e0c250c4e (AtLocation popcorn movy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "popcorn is located at show", "pln": ["(: cnet_atlocation_e2681ccd23 (AtLocation popcorn show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "population is located at city", "pln": ["(: cnet_atlocation_79ef6f2dac (AtLocation population city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "population is located at country", "pln": ["(: cnet_atlocation_5cdae4b72e (AtLocation population country) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "porch swing is located at porch", "pln": ["(: cnet_atlocation_4f395de517 (AtLocation porch_swing porch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pork is located at dinner", "pln": ["(: cnet_atlocation_375e8fc5ba (AtLocation pork dinner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pork butcher is located at butcher shop", "pln": ["(: cnet_atlocation_a88d3c3051 (AtLocation pork_butcher butcher_shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "porn is located at internet", "pln": ["(: cnet_atlocation_58ea0742c8 (AtLocation porn internet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "porno is located at bed", "pln": ["(: cnet_atlocation_ca205d4f76 (AtLocation porno bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pornography is located at home", "pln": ["(: cnet_atlocation_a8e171cba4 (AtLocation pornography home) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pornography is located at internet", "pln": ["(: cnet_atlocation_b5ebdd6b2f (AtLocation pornography internet) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "possession is located at house", "pln": ["(: cnet_atlocation_ae868cc304 (AtLocation possession house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "post note is located at office", "pln": ["(: cnet_atlocation_39699dd760 (AtLocation post_note office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "post note is located at desk", "pln": ["(: cnet_atlocation_85ce847e0c (AtLocation post_note desk) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "post office is located at building", "pln": ["(: cnet_atlocation_bce9ed0ea3 (AtLocation post_office building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "post office is located at center of town", "pln": ["(: cnet_atlocation_5736fc89ef (AtLocation post_office center_of_town) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "post office is located at town", "pln": ["(: cnet_atlocation_0aa7dc8bdd (AtLocation post_office town) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "postal counter is located at office", "pln": ["(: cnet_atlocation_48b2d08ef8 (AtLocation postal_counter office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "postal worker is located at post office", "pln": ["(: cnet_atlocation_c76295422a (AtLocation postal_worker post_office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "postcard is located at mail box", "pln": ["(: cnet_atlocation_4436611af0 (AtLocation postcard mail_box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "postcard is located at post office", "pln": ["(: cnet_atlocation_6d1b526fc2 (AtLocation postcard post_office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "postmaster is located at post office", "pln": ["(: cnet_atlocation_fceb419ff9 (AtLocation postmaster post_office) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "postmen is located at post office", "pln": ["(: cnet_atlocation_57fd844e88 (AtLocation postmen post_office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pot is located at cupboard", "pln": ["(: cnet_atlocation_adc4c5cb75 (AtLocation pot cupboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pot is located at greenhouse", "pln": ["(: cnet_atlocation_55424f7331 (AtLocation pot greenhouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pot in or rather is located at stove", "pln": ["(: cnet_atlocation_e5281bf532 (AtLocation pot_in_or_rather stove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "potato is located at apartment", "pln": ["(: cnet_atlocation_a999bfe54e (AtLocation potato apartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "potato is located at bag", "pln": ["(: cnet_atlocation_68bf80f229 (AtLocation potato bag) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "potato is located at bag of potatoe", "pln": ["(: cnet_atlocation_a8611cae52 (AtLocation potato bag_of_potatoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "potato is located at bin", "pln": ["(: cnet_atlocation_927a6d3cdf (AtLocation potato bin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "potato is located at casserole", "pln": ["(: cnet_atlocation_e67758721e (AtLocation potato casserole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "potato is located at farmer s field", "pln": ["(: cnet_atlocation_14398d3a1a (AtLocation potato farmer_s_field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "potato is located at food market", "pln": ["(: cnet_atlocation_dae5535814 (AtLocation potato food_market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "potato is located at grocer shop", "pln": ["(: cnet_atlocation_2a83da9f13 (AtLocation potato grocer_shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "potted plants is located at windowsill", "pln": ["(: cnet_atlocation_539e4ccd4a (AtLocation potted_plants windowsill) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "potato is located at grocery", "pln": ["(: cnet_atlocation_c7dec34eff (AtLocation potato grocery) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "potato is located at ireland", "pln": ["(: cnet_atlocation_319559304a (AtLocation potato ireland) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "potato is located at kitchen", "pln": ["(: cnet_atlocation_b61ca96464 (AtLocation potato kitchen) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "potato is located at market", "pln": ["(: cnet_atlocation_a7f16dc81d (AtLocation potato market) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "potato is located at microwave", "pln": ["(: cnet_atlocation_5fec720851 (AtLocation potato microwave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "potato is located at new hampshire", "pln": ["(: cnet_atlocation_0888a3f32c (AtLocation potato new_hampshire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "potato is located at pantry", "pln": ["(: cnet_atlocation_27016e0715 (AtLocation potato pantry) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "potato is located at potato bin", "pln": ["(: cnet_atlocation_bb09b19ae0 (AtLocation potato potato_bin) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "potato is located at potato sack", "pln": ["(: cnet_atlocation_f479b88d27 (AtLocation potato potato_sack) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "potato is located at potato salad", "pln": ["(: cnet_atlocation_f406a3702c (AtLocation potato potato_salad) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "potato is located at produce store", "pln": ["(: cnet_atlocation_a23f81f5ec (AtLocation potato produce_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "potato is located at refridgerator", "pln": ["(: cnet_atlocation_015e8eff3b (AtLocation potato refridgerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "potato is located at restaurant", "pln": ["(: cnet_atlocation_1dd7844f2d (AtLocation potato restaurant) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "potato is located at root cellar", "pln": ["(: cnet_atlocation_a45b89427f (AtLocation potato root_cellar) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "potato is located at salad", "pln": ["(: cnet_atlocation_e6b4d76360 (AtLocation potato salad) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "potato is located at soil", "pln": ["(: cnet_atlocation_b478800cc7 (AtLocation potato soil) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "potato is located at stew", "pln": ["(: cnet_atlocation_46569e160e (AtLocation potato stew) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "potato is located at store", "pln": ["(: cnet_atlocation_edbeb343d1 (AtLocation potato store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "potatoe is located at cellar", "pln": ["(: cnet_atlocation_02f88d7e5e (AtLocation potatoe cellar) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "potatoe is located at countryside", "pln": ["(: cnet_atlocation_a0edaea7ad (AtLocation potatoe countryside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pothole is located at street", "pln": ["(: cnet_atlocation_cc476f8080 (AtLocation pothole street) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "potpourri is located at drawer", "pln": ["(: cnet_atlocation_1e286a1760 (AtLocation potpourri drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pot is located at drawer", "pln": ["(: cnet_atlocation_571b749777 (AtLocation pot drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pot and pan is located at kitchen", "pln": ["(: cnet_atlocation_725140f7b7 (AtLocation pot_and_pan kitchen) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "potted flower is located at windowsill", "pln": ["(: cnet_atlocation_2bab5a0375 (AtLocation potted_flower windowsill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "potted plant is located at windowsill", "pln": ["(: cnet_atlocation_5aca177e2a (AtLocation potted_plant windowsill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "power screwdriver is located at cabinet", "pln": ["(: cnet_atlocation_76acbcb1ab (AtLocation power_screwdriver cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "power screwdriver is located at hardware store", "pln": ["(: cnet_atlocation_59c80913b6 (AtLocation power_screwdriver hardware_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "power screwdriver is located at tool box", "pln": ["(: cnet_atlocation_796b80b8af (AtLocation power_screwdriver tool_box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "power screwdriver is located at tool chest", "pln": ["(: cnet_atlocation_1fe2019c17 (AtLocation power_screwdriver tool_chest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "power strip is located at desk", "pln": ["(: cnet_atlocation_50ab74e80f (AtLocation power_strip desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "prayer is located at church", "pln": ["(: cnet_atlocation_455e37eab3 (AtLocation prayer church) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "prayer book is located at church", "pln": ["(: cnet_atlocation_05b4a6e219 (AtLocation prayer_book church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "preaching is located at funeral", "pln": ["(: cnet_atlocation_877b3c6873 (AtLocation preaching funeral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "preist is located at confession", "pln": ["(: cnet_atlocation_4acc1823e6 (AtLocation preist confession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "present is located at box", "pln": ["(: cnet_atlocation_8df88a416b (AtLocation present box) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "presenter is located at demonstration", "pln": ["(: cnet_atlocation_d53d7df8c1 (AtLocation presenter demonstration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "present is located at friend s wedding", "pln": ["(: cnet_atlocation_5d7532d8cf (AtLocation present friend_s_wedding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "preserved frog is located at jar", "pln": ["(: cnet_atlocation_7023f55247 (AtLocation preserved_frog jar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "preserve is located at jar", "pln": ["(: cnet_atlocation_f6b9b6ca7e (AtLocation preserve jar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "president is located at government", "pln": ["(: cnet_atlocation_d49854b870 (AtLocation president government) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "president is located at white house", "pln": ["(: cnet_atlocation_c23c77a442 (AtLocation president white_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pretty girl is located at beach", "pln": ["(: cnet_atlocation_d15e8aee8f (AtLocation pretty_girl beach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "price of bond is located at newspaper", "pln": ["(: cnet_atlocation_d6e9777291 (AtLocation price_of_bond newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "price of commodity is located at newspaper", "pln": ["(: cnet_atlocation_2e5ce4563e (AtLocation price_of_commodity newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "price of gold is located at newspaper", "pln": ["(: cnet_atlocation_ee8d52524a (AtLocation price_of_gold newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "price of oil is located at newspaper", "pln": ["(: cnet_atlocation_fca4d01ca5 (AtLocation price_of_oil newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "price of over counter stock is located at newspaper", "pln": ["(: cnet_atlocation_6bebc4e454 (AtLocation price_of_over_counter_stock newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "price of silver is located at newspaper", "pln": ["(: cnet_atlocation_c0d147a0ea (AtLocation price_of_silver newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "priest is located at confession", "pln": ["(: cnet_atlocation_e374aaef15 (AtLocation priest confession) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "prince is located at castle", "pln": ["(: cnet_atlocation_5a5c7eabf5 (AtLocation prince castle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "prince is located at england", "pln": ["(: cnet_atlocation_2dbf8c32fd (AtLocation prince england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "prince is located at fairy tale", "pln": ["(: cnet_atlocation_2ce0ad9d84 (AtLocation prince fairy_tale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "principal is located at school", "pln": ["(: cnet_atlocation_279d2e0131 (AtLocation principal school) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "print is located at paper", "pln": ["(: cnet_atlocation_b35e27f780 (AtLocation print paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "printer is located at office", "pln": ["(: cnet_atlocation_c18095746d (AtLocation printer office) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "prisoner is located at jail", "pln": ["(: cnet_atlocation_483e747400 (AtLocation prisoner jail) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "prisoner is located at prison", "pln": ["(: cnet_atlocation_8c8870f6a1 (AtLocation prisoner prison) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "problem is located at quandry", "pln": ["(: cnet_atlocation_41f64b3bd3 (AtLocation problem quandry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "produce is located at market", "pln": ["(: cnet_atlocation_bf9385ea01 (AtLocation produce market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "produce is located at supermarket", "pln": ["(: cnet_atlocation_a5499c90a6 (AtLocation produce supermarket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "product is located at store", "pln": ["(: cnet_atlocation_3f224b731f (AtLocation product store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "program is located at opera", "pln": ["(: cnet_atlocation_d2d696187d (AtLocation program opera) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "program is located at television", "pln": ["(: cnet_atlocation_8f8ec6b0b3 (AtLocation program television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "program is located at conference", "pln": ["(: cnet_atlocation_7b2138592c (AtLocation program conference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "program is located at theater", "pln": ["(: cnet_atlocation_0c18696895 (AtLocation program theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "projectile is located at weapon", "pln": ["(: cnet_atlocation_49cad1d114 (AtLocation projectile weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "projectile ball is located at flintlock", "pln": ["(: cnet_atlocation_96320d23da (AtLocation projectile_ball flintlock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "projector is located at movie", "pln": ["(: cnet_atlocation_120082e4f9 (AtLocation projector movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "projector is located at movy", "pln": ["(: cnet_atlocation_c5383bd56e (AtLocation projector movy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "prostitute is located at street corner", "pln": ["(: cnet_atlocation_33c586aa70 (AtLocation prostitute street_corner) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "prostitute is located at whorehouse", "pln": ["(: cnet_atlocation_ec6f3b066f (AtLocation prostitute whorehouse) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "prostitute is located at corner of two street", "pln": ["(: cnet_atlocation_d849f14139 (AtLocation prostitute corner_of_two_street) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "prostitute is located at crack house", "pln": ["(: cnet_atlocation_bf00a70732 (AtLocation prostitute crack_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "prostitute is located at jail", "pln": ["(: cnet_atlocation_877301ec72 (AtLocation prostitute jail) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "protester is located at demonstration", "pln": ["(: cnet_atlocation_9bb76fca81 (AtLocation protester demonstration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "protestor is located at demonstration", "pln": ["(: cnet_atlocation_0ca9c73e2b (AtLocation protestor demonstration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pub is located at city", "pln": ["(: cnet_atlocation_5c0b4de75c (AtLocation pub city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pub is located at england", "pln": ["(: cnet_atlocation_827ade1cd8 (AtLocation pub england) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pub is located at great britain", "pln": ["(: cnet_atlocation_7d76411fa8 (AtLocation pub great_britain) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pub is located at ireland", "pln": ["(: cnet_atlocation_69166cbee0 (AtLocation pub ireland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pub is located at irish town", "pln": ["(: cnet_atlocation_4149328eaa (AtLocation pub irish_town) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pub is located at london", "pln": ["(: cnet_atlocation_64821e1c2b (AtLocation pub london) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pub is located at town s center", "pln": ["(: cnet_atlocation_ff78c4d3fd (AtLocation pub town_s_center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pub is located at edinburgh", "pln": ["(: cnet_atlocation_7713c8f15b (AtLocation pub edinburgh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "puck is located at hockey game", "pln": ["(: cnet_atlocation_617d6e3895 (AtLocation puck hockey_game) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "puck is located at hockey rink", "pln": ["(: cnet_atlocation_72a764fd3d (AtLocation puck hockey_rink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "puck is located at sporting good store", "pln": ["(: cnet_atlocation_65028b484c (AtLocation puck sporting_good_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "puddle of water is located at boat", "pln": ["(: cnet_atlocation_6532029ce2 (AtLocation puddle_of_water boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pulpit is located at cathedral", "pln": ["(: cnet_atlocation_6eb9df0066 (AtLocation pulpit cathedral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pumpkin is located at farmer s market", "pln": ["(: cnet_atlocation_e7fd0a6b5f (AtLocation pumpkin farmer_s_market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "puppy is located at home", "pln": ["(: cnet_atlocation_4a9ad8b650 (AtLocation puppy home) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "puppy is located at kennel", "pln": ["(: cnet_atlocation_cfa997e647 (AtLocation puppy kennel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "purse is located at handbag", "pln": ["(: cnet_atlocation_639dedc510 (AtLocation purse handbag) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "push button is located at machine", "pln": ["(: cnet_atlocation_580296b0a9 (AtLocation push_button machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "puzzle is located at newspaper", "pln": ["(: cnet_atlocation_a39cb23ade (AtLocation puzzle newspaper) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "puzzle is located at toy store", "pln": ["(: cnet_atlocation_f8a1411a15 (AtLocation puzzle toy_store) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pyjama is located at bedroom", "pln": ["(: cnet_atlocation_d5fe76d885 (AtLocation pyjama bedroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "pyrotechnic is located at opera", "pln": ["(: cnet_atlocation_c7ad94d5a2 (AtLocation pyrotechnic opera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "quartz is located at gem store", "pln": ["(: cnet_atlocation_6ec9920839 (AtLocation quartz gem_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "quasar is located at space", "pln": ["(: cnet_atlocation_743b52c6bb (AtLocation quasar space) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "queen is located at bee hive", "pln": ["(: cnet_atlocation_f143e5b71e (AtLocation queen bee_hive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "queen is located at beehive", "pln": ["(: cnet_atlocation_42fa1bc64f (AtLocation queen beehive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "queen is located at castle", "pln": ["(: cnet_atlocation_438ae32811 (AtLocation queen castle) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "queen is located at england", "pln": ["(: cnet_atlocation_b48a4f4584 (AtLocation queen england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "quiet is located at library", "pln": ["(: cnet_atlocation_e95fd15d29 (AtLocation quiet library) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "quiet place to study is located at library", "pln": ["(: cnet_atlocation_b7e5a7418f (AtLocation quiet_place_to_study library) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "quill brush is located at china", "pln": ["(: cnet_atlocation_4a7724d02c (AtLocation quill_brush china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rabbi is located at synagogue", "pln": ["(: cnet_atlocation_dbf4716536 (AtLocation rabbi synagogue) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "race car is located at race track", "pln": ["(: cnet_atlocation_9c9bdec330 (AtLocation race_car race_track) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "racer is located at race track", "pln": ["(: cnet_atlocation_764092a2f1 (AtLocation racer race_track) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rack is located at oven", "pln": ["(: cnet_atlocation_7a639cc9ac (AtLocation rack oven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "radiation is located at space", "pln": ["(: cnet_atlocation_e756b16378 (AtLocation radiation space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "radiator is located at car", "pln": ["(: cnet_atlocation_dbecb08726 (AtLocation radiator car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "radio is located at every car and house", "pln": ["(: cnet_atlocation_4f63ea32bb (AtLocation radio every_car_and_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "radio is located at space shuttle", "pln": ["(: cnet_atlocation_0cc5eec860 (AtLocation radio space_shuttle) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "radio city music hall is located at new york city", "pln": ["(: cnet_atlocation_cf600c9a80 (AtLocation radio_city_music_hall new_york_city) (STV 1.0 0.9245))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "radio studio is located at building", "pln": ["(: cnet_atlocation_a940197854 (AtLocation radio_studio building) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "radio studio is located at large city", "pln": ["(: cnet_atlocation_f53f3af041 (AtLocation radio_studio large_city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "radio studio is located at radio station", "pln": ["(: cnet_atlocation_82841a65d2 (AtLocation radio_studio radio_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rafter is located at attic", "pln": ["(: cnet_atlocation_f316fe94fc (AtLocation rafter attic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rail is located at subway", "pln": ["(: cnet_atlocation_9dc095fecf (AtLocation rail subway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "railing is located at porch", "pln": ["(: cnet_atlocation_d71a8011e4 (AtLocation railing porch) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "railroad station is located at new york city", "pln": ["(: cnet_atlocation_5f915d1060 (AtLocation railroad_station new_york_city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "railroad track is located at train station", "pln": ["(: cnet_atlocation_ef5af9bc02 (AtLocation railroad_track train_station) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rain is located at forest", "pln": ["(: cnet_atlocation_555af5a82d (AtLocation rain forest) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rain is located at weather", "pln": ["(: cnet_atlocation_657a86f8a1 (AtLocation rain weather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ramen noodle is located at pantry", "pln": ["(: cnet_atlocation_e1be3333d4 (AtLocation ramen_noodle pantry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ranch house is located at ranch", "pln": ["(: cnet_atlocation_d4d0bec3ec (AtLocation ranch_house ranch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ranch house is located at texa", "pln": ["(: cnet_atlocation_fefcb6a2d0 (AtLocation ranch_house texa) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ranger is located at state park", "pln": ["(: cnet_atlocation_115e9f990a (AtLocation ranger state_park) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rapist is located at jail", "pln": ["(: cnet_atlocation_85be13c4b4 (AtLocation rapist jail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "rat is located at laboratory", "pln": ["(: cnet_atlocation_4e770e194c (AtLocation rat laboratory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "rats is located at sewers", "pln": ["(: cnet_atlocation_43b2839b17 (AtLocation rats sewers) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "red peppers is located at pizza", "pln": ["(: cnet_atlocation_e1b99eb55b (AtLocation red_peppers pizza) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "reference materials is located at library", "pln": ["(: cnet_atlocation_61baa7af53 (AtLocation reference_materials library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rat is located at cellar", "pln": ["(: cnet_atlocation_b2f3cbbeac (AtLocation rat cellar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rat is located at petstore", "pln": ["(: cnet_atlocation_ceaa5af91c (AtLocation rat petstore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rat is located at sewer", "pln": ["(: cnet_atlocation_621c5e3fe7 (AtLocation rat sewer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "reader is located at library", "pln": ["(: cnet_atlocation_74ee765c4d (AtLocation reader library) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "reading glass is located at drawer", "pln": ["(: cnet_atlocation_65169c2013 (AtLocation reading_glass drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "real estate picture is located at newspaper", "pln": ["(: cnet_atlocation_5e0d48c7e5 (AtLocation real_estate_picture newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "reception is located at hall", "pln": ["(: cnet_atlocation_9c45318e27 (AtLocation reception hall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "reception area is located at hotel", "pln": ["(: cnet_atlocation_1e29a46409 (AtLocation reception_area hotel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "reception desk is located at hotel", "pln": ["(: cnet_atlocation_9d4b9d4645 (AtLocation reception_desk hotel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "reception desk is located at office", "pln": ["(: cnet_atlocation_c993080b86 (AtLocation reception_desk office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "reception desk is located at office park", "pln": ["(: cnet_atlocation_55c71de271 (AtLocation reception_desk office_park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "record is located at office", "pln": ["(: cnet_atlocation_e92667c38b (AtLocation record office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "red pepper is located at pizza", "pln": ["(: cnet_atlocation_765df1c46f (AtLocation red_pepper pizza) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "redneck is located at georgia", "pln": ["(: cnet_atlocation_4c045f8ceb (AtLocation redneck georgia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "referee is located at football", "pln": ["(: cnet_atlocation_ccebb795ec (AtLocation referee football) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "referee is located at hockey game", "pln": ["(: cnet_atlocation_efb88fa8fc (AtLocation referee hockey_game) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "referee is located at soccer game", "pln": ["(: cnet_atlocation_7fb46518c6 (AtLocation referee soccer_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "reference desk is located at library", "pln": ["(: cnet_atlocation_e0d571ca19 (AtLocation reference_desk library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "reference material is located at library", "pln": ["(: cnet_atlocation_4e4b9397e3 (AtLocation reference_material library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "reflection is located at mirror", "pln": ["(: cnet_atlocation_fee18442d8 (AtLocation reflection mirror) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "reflex hammer is located at doctor", "pln": ["(: cnet_atlocation_40c5f579c3 (AtLocation reflex_hammer doctor) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "refrigerator is located at apartment", "pln": ["(: cnet_atlocation_81b90371f2 (AtLocation refrigerator apartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "refrigerator is located at garage", "pln": ["(: cnet_atlocation_3b6fa864d2 (AtLocation refrigerator garage) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "refrigerator is located at home", "pln": ["(: cnet_atlocation_70674c8493 (AtLocation refrigerator home) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "refrigerator magnet is located at fridge", "pln": ["(: cnet_atlocation_51a9cbe814 (AtLocation refrigerator_magnet fridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "refuse is located at dump", "pln": ["(: cnet_atlocation_93c6797b11 (AtLocation refuse dump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "refuse is located at trash truck", "pln": ["(: cnet_atlocation_ff5f8fcb1c (AtLocation refuse trash_truck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "registry office is located at office building", "pln": ["(: cnet_atlocation_33476c2af2 (AtLocation registry_office office_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rehearsing room is located at theater", "pln": ["(: cnet_atlocation_c58f60d1bd (AtLocation rehearsing_room theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "relative is located at relative house", "pln": ["(: cnet_atlocation_5cad37cf2f (AtLocation relative relative_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "religious tract is located at church", "pln": ["(: cnet_atlocation_0881fe5666 (AtLocation religious_tract church) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "religious tract is located at proselyte s hand", "pln": ["(: cnet_atlocation_8c717252c5 (AtLocation religious_tract proselyte_s_hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "rented apartment is located at apartment building", "pln": ["(: cnet_atlocation_d08fdeed9c (AtLocation rented_apartment apartment_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rented apartment is located at city", "pln": ["(: cnet_atlocation_0bbfa6c018 (AtLocation rented_apartment city) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rented flat is located at city", "pln": ["(: cnet_atlocation_7a4fddf6f4 (AtLocation rented_flat city) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rented flat is located at england", "pln": ["(: cnet_atlocation_03002dd323 (AtLocation rented_flat england) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rented flat is located at london", "pln": ["(: cnet_atlocation_f0df46a827 (AtLocation rented_flat london) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "repairman is located at repair shop", "pln": ["(: cnet_atlocation_a60446001e (AtLocation repairman repair_shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "report card is located at fridge", "pln": ["(: cnet_atlocation_d1bdf6b393 (AtLocation report_card fridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "researcher is located at laboratory", "pln": ["(: cnet_atlocation_8c26e95d71 (AtLocation researcher laboratory) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "resident is located at apartment", "pln": ["(: cnet_atlocation_1e5b580ef0 (AtLocation resident apartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rest room is located at rest area", "pln": ["(: cnet_atlocation_20f7fdf8c5 (AtLocation rest_room rest_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "restaurant is located at city", "pln": ["(: cnet_atlocation_d187c83b52 (AtLocation restaurant city) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "restaurant is located at hotel", "pln": ["(: cnet_atlocation_8ecb030dff (AtLocation restaurant hotel) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "restaurant is located at town", "pln": ["(: cnet_atlocation_3de004855b (AtLocation restaurant town) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "restaurant bill is located at restaurant", "pln": ["(: cnet_atlocation_4ac2409f35 (AtLocation restaurant_bill restaurant) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "restaurant bill is located at table", "pln": ["(: cnet_atlocation_dd1ad4eaed (AtLocation restaurant_bill table) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "restaurant diner is located at restaurant", "pln": ["(: cnet_atlocation_d84b2f0942 (AtLocation restaurant_diner restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "restaurant diner is located at town", "pln": ["(: cnet_atlocation_9658281fa1 (AtLocation restaurant_diner town) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "restaurant dining area is located at hotel", "pln": ["(: cnet_atlocation_2caeb873c9 (AtLocation restaurant_dining_area hotel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "restaurant dining area is located at mall", "pln": ["(: cnet_atlocation_05ca171293 (AtLocation restaurant_dining_area mall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "restaurant dining area is located at restaurant", "pln": ["(: cnet_atlocation_2b4d2a0b07 (AtLocation restaurant_dining_area restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "restaurant storage area is located at restaurant", "pln": ["(: cnet_atlocation_2ea26c83a7 (AtLocation restaurant_storage_area restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "restaurant table is located at restaurant", "pln": ["(: cnet_atlocation_174709b3e0 (AtLocation restaurant_table restaurant) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "restroom is located at library", "pln": ["(: cnet_atlocation_93ea226946 (AtLocation restroom library) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "restroom is located at rest area", "pln": ["(: cnet_atlocation_8142e5c5b0 (AtLocation restroom rest_area) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "restroom is located at airport", "pln": ["(: cnet_atlocation_3821dcf513 (AtLocation restroom airport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "retiree is located at florida", "pln": ["(: cnet_atlocation_457caa12bf (AtLocation retiree florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "return ticket is located at airport", "pln": ["(: cnet_atlocation_20a18deead (AtLocation return_ticket airport) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "returned mail is located at desk", "pln": ["(: cnet_atlocation_a99680afe6 (AtLocation returned_mail desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "revolver is located at gun store", "pln": ["(: cnet_atlocation_979cf3b773 (AtLocation revolver gun_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "revolving door is located at lobby", "pln": ["(: cnet_atlocation_0cf500f6da (AtLocation revolving_door lobby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rhinocero is located at zoo", "pln": ["(: cnet_atlocation_de8752f94b (AtLocation rhinocero zoo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ribbon is located at gallery opening", "pln": ["(: cnet_atlocation_5febf16536 (AtLocation ribbon gallery_opening) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ribbon is located at hair", "pln": ["(: cnet_atlocation_d8ca624ca7 (AtLocation ribbon hair) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rich people is located at gallery opening", "pln": ["(: cnet_atlocation_8e3ad1e154 (AtLocation rich_people gallery_opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rich person is located at casino", "pln": ["(: cnet_atlocation_ddbb6d1f64 (AtLocation rich_person casino) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "riddle is located at newspaper", "pln": ["(: cnet_atlocation_9f230159ab (AtLocation riddle newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ride is located at carnival", "pln": ["(: cnet_atlocation_8269b581a3 (AtLocation ride carnival) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ride is located at fair", "pln": ["(: cnet_atlocation_03af157c73 (AtLocation ride fair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rider is located at car", "pln": ["(: cnet_atlocation_53c41d2ec9 (AtLocation rider car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rider is located at subway", "pln": ["(: cnet_atlocation_589de8762e (AtLocation rider subway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "riding lawnmower is located at garage", "pln": ["(: cnet_atlocation_c5350f25a0 (AtLocation riding_lawnmower garage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "right angle is located at corner", "pln": ["(: cnet_atlocation_c69da2600c (AtLocation right_angle corner) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ring is located at bath tub", "pln": ["(: cnet_atlocation_626e8eabed (AtLocation ring bath_tub) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ring is located at finger", "pln": ["(: cnet_atlocation_27d5399dbe (AtLocation ring finger) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ring is located at friend s wedding", "pln": ["(: cnet_atlocation_cc5c67ce22 (AtLocation ring friend_s_wedding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "ring bearer is located at wedding", "pln": ["(: cnet_atlocation_dcbbe9832b (AtLocation ring_bearer wedding) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "rings is located at jewelry store", "pln": ["(: cnet_atlocation_6a36440a09 (AtLocation rings jewelry_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "rocks is located at top of mountain", "pln": ["(: cnet_atlocation_58e9746faf (AtLocation rocks top_of_mountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ring binder is located at school", "pln": ["(: cnet_atlocation_d8b6cc51e8 (AtLocation ring_binder school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ring is located at jewelry store", "pln": ["(: cnet_atlocation_bfb432ef33 (AtLocation ring jewelry_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "river is located at bridge", "pln": ["(: cnet_atlocation_e6b12ae25f (AtLocation river bridge) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "river is located at valley", "pln": ["(: cnet_atlocation_995de516c2 (AtLocation river valley) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "river is located at waterfall", "pln": ["(: cnet_atlocation_8fead0a715 (AtLocation river waterfall) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "road is located at town", "pln": ["(: cnet_atlocation_a70a9dbe4b (AtLocation road town) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "road kill is located at freeway", "pln": ["(: cnet_atlocation_893ca619db (AtLocation road_kill freeway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "road kill is located at street", "pln": ["(: cnet_atlocation_231ce6f00d (AtLocation road_kill street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "road sign is located at fork in road", "pln": ["(: cnet_atlocation_6776d12f1b (AtLocation road_sign fork_in_road) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "road sign is located at street corner", "pln": ["(: cnet_atlocation_ade9d1c53b (AtLocation road_sign street_corner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "roadkill is located at freeway", "pln": ["(: cnet_atlocation_a32c907d73 (AtLocation roadkill freeway) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "roadway is located at city", "pln": ["(: cnet_atlocation_33a886f123 (AtLocation roadway city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "roast is located at oven", "pln": ["(: cnet_atlocation_7888f34092 (AtLocation roast oven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "robot is located at factory", "pln": ["(: cnet_atlocation_7cf66ae69f (AtLocation robot factory) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "robot is located at laboratory", "pln": ["(: cnet_atlocation_9db8f9383c (AtLocation robot laboratory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "robot is located at manufacturing plant", "pln": ["(: cnet_atlocation_e3025bfdba (AtLocation robot manufacturing_plant) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rock is located at bottom of sea", "pln": ["(: cnet_atlocation_c3f5ea987a (AtLocation rock bottom_of_sea) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rock is located at bridge", "pln": ["(: cnet_atlocation_2e8ddb71f9 (AtLocation rock bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rock is located at ground", "pln": ["(: cnet_atlocation_36faae29c8 (AtLocation rock ground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rock is located at in comet", "pln": ["(: cnet_atlocation_85e61a059e (AtLocation rock in_comet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rock is located at moon", "pln": ["(: cnet_atlocation_737820da19 (AtLocation rock moon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rock is located at mountain", "pln": ["(: cnet_atlocation_e7a404ce13 (AtLocation rock mountain) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rock is located at surface of earth", "pln": ["(: cnet_atlocation_4b563aafa0 (AtLocation rock surface_of_earth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rock is located at suface of moon", "pln": ["(: cnet_atlocation_3cf7b83f34 (AtLocation rock suface_of_moon) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rock is located at top of mountain", "pln": ["(: cnet_atlocation_b92337149c (AtLocation rock top_of_mountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rock is located at waterfall", "pln": ["(: cnet_atlocation_0671986f24 (AtLocation rock waterfall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rod is located at engine", "pln": ["(: cnet_atlocation_2f44f759d4 (AtLocation rod engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "rod is located at hardware store", "pln": ["(: cnet_atlocation_5f166066f8 (AtLocation rod hardware_store) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "roll of tape is located at desk", "pln": ["(: cnet_atlocation_5002ace053 (AtLocation roll_of_tape desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "roll of toilet paper is located at bathroom", "pln": ["(: cnet_atlocation_b85085a850 (AtLocation roll_of_toilet_paper bathroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "roller coaster is located at carnival", "pln": ["(: cnet_atlocation_90bc5073ac (AtLocation roller_coaster carnival) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "roller coaster is located at fairground", "pln": ["(: cnet_atlocation_4a37e2e311 (AtLocation roller_coaster fairground) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rollercoaster is located at disneyland", "pln": ["(: cnet_atlocation_cb0d8e7162 (AtLocation rollercoaster disneyland) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "roll is located at breadbox", "pln": ["(: cnet_atlocation_3b9ffe42c4 (AtLocation roll breadbox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "roof tile is located at roof", "pln": ["(: cnet_atlocation_3fdf6f2c08 (AtLocation roof_tile roof) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "roofer is located at roof", "pln": ["(: cnet_atlocation_8672aca34a (AtLocation roofer roof) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "roofing is located at roof", "pln": ["(: cnet_atlocation_96a199e7a7 (AtLocation roofing roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "rook is located at chess set", "pln": ["(: cnet_atlocation_f5688281e6 (AtLocation rook chess_set) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "rooms is located at motel", "pln": ["(: cnet_atlocation_ff08fac5c9 (AtLocation rooms motel) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "room is located at friend s house", "pln": ["(: cnet_atlocation_5661743624 (AtLocation room friend_s_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "room is located at motel", "pln": ["(: cnet_atlocation_7ab66577fa (AtLocation room motel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "room is located at school", "pln": ["(: cnet_atlocation_d00ced9ec5 (AtLocation room school) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "room is located at use", "pln": ["(: cnet_atlocation_edc312e957 (AtLocation room use) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "room for sleeping is located at motel", "pln": ["(: cnet_atlocation_56d6546ba8 (AtLocation room_for_sleeping motel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "room key is located at at hotel", "pln": ["(: cnet_atlocation_3554209ac5 (AtLocation room_key at_hotel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "room service is located at at hotel", "pln": ["(: cnet_atlocation_c52bd15644 (AtLocation room_service at_hotel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "room study is located at school", "pln": ["(: cnet_atlocation_7255b30101 (AtLocation room_study school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "roommate is located at apartment", "pln": ["(: cnet_atlocation_900ce5e1b8 (AtLocation roommate apartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "room is located at apartment", "pln": ["(: cnet_atlocation_f0f3e26043 (AtLocation room apartment) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "root is located at tree", "pln": ["(: cnet_atlocation_01a321e5f5 (AtLocation root tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "rope is located at backpack", "pln": ["(: cnet_atlocation_e925df0ef6 (AtLocation rope backpack) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rope is located at boat", "pln": ["(: cnet_atlocation_61c6561113 (AtLocation rope boat) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rope is located at sporting good store", "pln": ["(: cnet_atlocation_2310e47d87 (AtLocation rope sporting_good_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rosebush is located at back yard", "pln": ["(: cnet_atlocation_c864e6bdde (AtLocation rosebush back_yard) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rosebush is located at backyard", "pln": ["(: cnet_atlocation_f2bf846bc3 (AtLocation rosebush backyard) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rosebush is located at bloom", "pln": ["(: cnet_atlocation_17f1107180 (AtLocation rosebush bloom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rosebush is located at botanic garden", "pln": ["(: cnet_atlocation_9ddac6d2ef (AtLocation rosebush botanic_garden) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rosebush is located at botanical garden", "pln": ["(: cnet_atlocation_e6464711dd (AtLocation rosebush botanical_garden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rosebush is located at flower bed", "pln": ["(: cnet_atlocation_f5c4f0089c (AtLocation rosebush flower_bed) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rosebush is located at flower garden", "pln": ["(: cnet_atlocation_65532becde (AtLocation rosebush flower_garden) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "rosebush is located at formal garden", "pln": ["(: cnet_atlocation_eaf3a0c0c9 (AtLocation rosebush formal_garden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rosebush is located at front yard", "pln": ["(: cnet_atlocation_b9e776885b (AtLocation rosebush front_yard) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rosebush is located at garden center", "pln": ["(: cnet_atlocation_6df5a63ace (AtLocation rosebush garden_center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rosebush is located at gardening catalog", "pln": ["(: cnet_atlocation_4ec5761517 (AtLocation rosebush gardening_catalog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rosebush is located at landscape", "pln": ["(: cnet_atlocation_acc6d810f5 (AtLocation rosebush landscape) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rosebush is located at outdoor", "pln": ["(: cnet_atlocation_d3c3c693ef (AtLocation rosebush outdoor) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "rosebush is located at park", "pln": ["(: cnet_atlocation_2648bb6249 (AtLocation rosebush park) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rosebush is located at pot", "pln": ["(: cnet_atlocation_7f136fbdf7 (AtLocation rosebush pot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rosebush is located at store", "pln": ["(: cnet_atlocation_730031d789 (AtLocation rosebush store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rosebush is located at white house rose garden", "pln": ["(: cnet_atlocation_29897e7961 (AtLocation rosebush white_house_rose_garden) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "roulette wheel is located at casino", "pln": ["(: cnet_atlocation_72f6025b2a (AtLocation roulette_wheel casino) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "roulette is located at casino", "pln": ["(: cnet_atlocation_e62de16e6c (AtLocation roulette casino) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "round brush is located at bathroom", "pln": ["(: cnet_atlocation_057e4fa38f (AtLocation round_brush bathroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "route is located at map", "pln": ["(: cnet_atlocation_d0a41581df (AtLocation route map) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "router is located at network", "pln": ["(: cnet_atlocation_a0460f37aa (AtLocation router network) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "row house is located at city", "pln": ["(: cnet_atlocation_01168cfc4d (AtLocation row_house city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "rowing machine is located at gym", "pln": ["(: cnet_atlocation_88715b6544 (AtLocation rowing_machine gym) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "rubbermaid products is located at supermarket", "pln": ["(: cnet_atlocation_32cb07bcf4 (AtLocation rubbermaid_products supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rubber is located at bedside table", "pln": ["(: cnet_atlocation_5e6e0a3899 (AtLocation rubber bedside_table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rubber is located at pencil case", "pln": ["(: cnet_atlocation_ab5fc571aa (AtLocation rubber pencil_case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rubber stamp is located at cabinet", "pln": ["(: cnet_atlocation_5bd53adc70 (AtLocation rubber_stamp cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rubbermaid product is located at supermarket", "pln": ["(: cnet_atlocation_034d8da54f (AtLocation rubbermaid_product supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rudder is located at boat", "pln": ["(: cnet_atlocation_8299e93a4c (AtLocation rudder boat) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rug is located at desk", "pln": ["(: cnet_atlocation_44fd36c39a (AtLocation rug desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rug is located at table", "pln": ["(: cnet_atlocation_d69ffcaf77 (AtLocation rug table) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rule is located at classroom", "pln": ["(: cnet_atlocation_1622c3c7cb (AtLocation rule classroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "ruler is located at desk", "pln": ["(: cnet_atlocation_33ba22eb2a (AtLocation ruler desk) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "runway is located at city", "pln": ["(: cnet_atlocation_fa6ef844b1 (AtLocation runway city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "runway is located at military base", "pln": ["(: cnet_atlocation_18f127e849 (AtLocation runway military_base) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "rutabaga is located at farmer s market", "pln": ["(: cnet_atlocation_d24621ab04 (AtLocation rutabaga farmer_s_market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sachet is located at drawer", "pln": ["(: cnet_atlocation_7f97727c26 (AtLocation sachet drawer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sailor is located at ship", "pln": ["(: cnet_atlocation_b402d080e1 (AtLocation sailor ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "salad is located at refrigerator", "pln": ["(: cnet_atlocation_aee4def403 (AtLocation salad refrigerator) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "salad bowl is located at cupboard", "pln": ["(: cnet_atlocation_0c1acb715f (AtLocation salad_bowl cupboard) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "salad bowl is located at kitchen", "pln": ["(: cnet_atlocation_09a50970ae (AtLocation salad_bowl kitchen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "salad bowl is located at restaurant", "pln": ["(: cnet_atlocation_399914392b (AtLocation salad_bowl restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "salad spinner is located at cupboard", "pln": ["(: cnet_atlocation_ec75ebde31 (AtLocation salad_spinner cupboard) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "sale is located at department store", "pln": ["(: cnet_atlocation_73c44af1bd (AtLocation sale department_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sale is located at k mart", "pln": ["(: cnet_atlocation_203368171d (AtLocation sale k_mart) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sale is located at store", "pln": ["(: cnet_atlocation_a7c91b6fb3 (AtLocation sale store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sale person is located at shop", "pln": ["(: cnet_atlocation_c50e57136e (AtLocation sale_person shop) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "salesperson is located at bookstore", "pln": ["(: cnet_atlocation_188e2fb910 (AtLocation salesperson bookstore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "salesperson is located at toy store", "pln": ["(: cnet_atlocation_b0615148f5 (AtLocation salesperson toy_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "saliva is located at mouth", "pln": ["(: cnet_atlocation_f101f379d5 (AtLocation saliva mouth) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "salon is located at mall", "pln": ["(: cnet_atlocation_273cbebd13 (AtLocation salon mall) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "salt is located at ocean", "pln": ["(: cnet_atlocation_2c06dae628 (AtLocation salt ocean) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "salt is located at ocean water", "pln": ["(: cnet_atlocation_330f9767e2 (AtLocation salt ocean_water) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "salt is located at salt mine", "pln": ["(: cnet_atlocation_1ab73d6692 (AtLocation salt salt_mine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "salt and pepper shakers is located at table", "pln": ["(: cnet_atlocation_842f05856b (AtLocation salt_and_pepper_shakers table) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "salt is located at shaker", "pln": ["(: cnet_atlocation_df580b7a7b (AtLocation salt shaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "salt is located at shelf", "pln": ["(: cnet_atlocation_dfb9deccfa (AtLocation salt shelf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "salt is located at table", "pln": ["(: cnet_atlocation_8b787853ee (AtLocation salt table) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "salt is located at water", "pln": ["(: cnet_atlocation_f6a4c1243c (AtLocation salt water) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "salt and pepper is located at table", "pln": ["(: cnet_atlocation_74e590b752 (AtLocation salt_and_pepper table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "salt and pepper shaker is located at table", "pln": ["(: cnet_atlocation_665ee26050 (AtLocation salt_and_pepper_shaker table) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "salt shaker is located at fast food restaurant", "pln": ["(: cnet_atlocation_916f9d5a1b (AtLocation salt_shaker fast_food_restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "salt water is located at ocean", "pln": ["(: cnet_atlocation_73d27f3b94 (AtLocation salt_water ocean) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "saltshaker is located at own kitchen", "pln": ["(: cnet_atlocation_db21033fc3 (AtLocation saltshaker own_kitchen) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "saltshaker is located at resturant", "pln": ["(: cnet_atlocation_36e4755966 (AtLocation saltshaker resturant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sand is located at bottom of sea", "pln": ["(: cnet_atlocation_b1e1a8d55a (AtLocation sand bottom_of_sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sand is located at desert", "pln": ["(: cnet_atlocation_7a6fcea9d4 (AtLocation sand desert) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sand is located at ground", "pln": ["(: cnet_atlocation_fbf7a873e7 (AtLocation sand ground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sand is located at sandbox", "pln": ["(: cnet_atlocation_5f0e1b4ab9 (AtLocation sand sandbox) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sand is located at surface of earth", "pln": ["(: cnet_atlocation_754b31f2cb (AtLocation sand surface_of_earth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sand castle is located at beach", "pln": ["(: cnet_atlocation_e1af40b0ad (AtLocation sand_castle beach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sand dollar is located at beach", "pln": ["(: cnet_atlocation_a16f673d89 (AtLocation sand_dollar beach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sandwich is located at lunchbox", "pln": ["(: cnet_atlocation_b419b46a71 (AtLocation sandwich lunchbox) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sandwiche is located at delicatessen", "pln": ["(: cnet_atlocation_64da53574d (AtLocation sandwiche delicatessen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "santa claus is located at roof", "pln": ["(: cnet_atlocation_2f176c0c86 (AtLocation santa_claus roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "santa clause is located at roof", "pln": ["(: cnet_atlocation_b109feac5a (AtLocation santa_clause roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sap is located at tree", "pln": ["(: cnet_atlocation_f38f2d2c94 (AtLocation sap tree) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "satelite is located at orbit", "pln": ["(: cnet_atlocation_cb2bfc55a3 (AtLocation satelite orbit) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "satellite is located at orbit", "pln": ["(: cnet_atlocation_78061d442d (AtLocation satellite orbit) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "screen is located at movies", "pln": ["(: cnet_atlocation_91ad469a1d (AtLocation screen movies) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "satellite dish is located at roof", "pln": ["(: cnet_atlocation_9e75545f6f (AtLocation satellite_dish roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "satellite is located at outerspace", "pln": ["(: cnet_atlocation_8a0f4083cc (AtLocation satellite outerspace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "satellite is located at space", "pln": ["(: cnet_atlocation_0ab6ae02cc (AtLocation satellite space) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "satire is located at television", "pln": ["(: cnet_atlocation_345a407df0 (AtLocation satire television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sattelite is located at orbit", "pln": ["(: cnet_atlocation_87e76ebd1c (AtLocation sattelite orbit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sattellite is located at orbit", "pln": ["(: cnet_atlocation_28dd98521c (AtLocation sattellite orbit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "saucepan is located at cupboard", "pln": ["(: cnet_atlocation_23cf7a56ed (AtLocation saucepan cupboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "saucepan is located at georgia", "pln": ["(: cnet_atlocation_19d8461721 (AtLocation saucepan georgia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "saucepan is located at kitchen", "pln": ["(: cnet_atlocation_b8e017cc81 (AtLocation saucepan kitchen) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "saucer in is located at kitchen", "pln": ["(: cnet_atlocation_dc0df8be25 (AtLocation saucer_in kitchen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sausage is located at pizza", "pln": ["(: cnet_atlocation_b7d9e6c2c7 (AtLocation sausage pizza) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "saw is located at toolbox", "pln": ["(: cnet_atlocation_32d9c9ad7c (AtLocation saw toolbox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "saxophone is located at band", "pln": ["(: cnet_atlocation_334ee364f7 (AtLocation saxophone band) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "scale is located at bathroom", "pln": ["(: cnet_atlocation_96c1c75633 (AtLocation scale bathroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "scale is located at doctor", "pln": ["(: cnet_atlocation_046b5c116b (AtLocation scale doctor) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "scale is located at post office", "pln": ["(: cnet_atlocation_891ceca980 (AtLocation scale post_office) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "scale is located at fish", "pln": ["(: cnet_atlocation_edc65297de (AtLocation scale fish) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "scar is located at finger", "pln": ["(: cnet_atlocation_80c84b2cef (AtLocation scar finger) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "scene is located at play", "pln": ["(: cnet_atlocation_2904942e79 (AtLocation scene play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "scenery is located at painting", "pln": ["(: cnet_atlocation_aadfde70ed (AtLocation scenery painting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "schedule is located at train station", "pln": ["(: cnet_atlocation_12dbb2eaff (AtLocation schedule train_station) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "school is located at city", "pln": ["(: cnet_atlocation_acea6fa1d6 (AtLocation school city) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "school is located at prague", "pln": ["(: cnet_atlocation_c62df72872 (AtLocation school prague) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "school is located at town", "pln": ["(: cnet_atlocation_91f3b0ec80 (AtLocation school town) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "school book is located at backpack", "pln": ["(: cnet_atlocation_cc37b294d6 (AtLocation school_book backpack) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "school cafeteria is located at school", "pln": ["(: cnet_atlocation_b223630040 (AtLocation school_cafeteria school) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "schoolbook is located at backpack", "pln": ["(: cnet_atlocation_1347292a00 (AtLocation schoolbook backpack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "science is located at university", "pln": ["(: cnet_atlocation_df3880b0c8 (AtLocation science university) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "scientific experiment is located at space shuttle", "pln": ["(: cnet_atlocation_2aa78f1e9a (AtLocation scientific_experiment space_shuttle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "scientific research center is located at arctic", "pln": ["(: cnet_atlocation_2cbe6bd0e6 (AtLocation scientific_research_center arctic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "scientist is located at laboratory", "pln": ["(: cnet_atlocation_f87bafb55d (AtLocation scientist laboratory) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "scissor is located at cabinet", "pln": ["(: cnet_atlocation_2425534bc1 (AtLocation scissor cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "scissor is located at desk", "pln": ["(: cnet_atlocation_0aa07425e0 (AtLocation scissor desk) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "scrap food is located at trash", "pln": ["(: cnet_atlocation_1fc503ea38 (AtLocation scrap_food trash) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "scrap paper is located at desk", "pln": ["(: cnet_atlocation_79d57fef2d (AtLocation scrap_paper desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "screen is located at drive in movie", "pln": ["(: cnet_atlocation_324c83ed7e (AtLocation screen drive_in_movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "screen is located at monitor", "pln": ["(: cnet_atlocation_36e7c89753 (AtLocation screen monitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "screen is located at movie", "pln": ["(: cnet_atlocation_c357da39fc (AtLocation screen movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "screen is located at movy", "pln": ["(: cnet_atlocation_ad35f8e992 (AtLocation screen movy) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "screw is located at hinge of door", "pln": ["(: cnet_atlocation_7105f3b84a (AtLocation screw hinge_of_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "screw is located at motorcycle", "pln": ["(: cnet_atlocation_09794743e2 (AtLocation screw motorcycle) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "screwdriver is located at tool belt", "pln": ["(: cnet_atlocation_8ed3bb5469 (AtLocation screwdriver tool_belt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "screwdriver is located at tool box", "pln": ["(: cnet_atlocation_d10e832aa8 (AtLocation screwdriver tool_box) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "screwdriver is located at toolbox", "pln": ["(: cnet_atlocation_020bd05aa8 (AtLocation screwdriver toolbox) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "scuba diver is located at water", "pln": ["(: cnet_atlocation_213fc877b9 (AtLocation scuba_diver water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sculpting gel is located at bathroom", "pln": ["(: cnet_atlocation_2a7e7e939b (AtLocation sculpting_gel bathroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "sculpting gel is located at hair salon", "pln": ["(: cnet_atlocation_21ab9477ff (AtLocation sculpting_gel hair_salon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "sea shells is located at ocean", "pln": ["(: cnet_atlocation_c41516f659 (AtLocation sea_shells ocean) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sculpture is located at art show", "pln": ["(: cnet_atlocation_2b64b78afc (AtLocation sculpture art_show) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sculpture is located at gallery opening", "pln": ["(: cnet_atlocation_989beb4272 (AtLocation sculpture gallery_opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sculpture is located at museum", "pln": ["(: cnet_atlocation_006b78f88d (AtLocation sculpture museum) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sea is located at ocean", "pln": ["(: cnet_atlocation_94f6485603 (AtLocation sea ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sea gull is located at sea", "pln": ["(: cnet_atlocation_2974a8a3b6 (AtLocation sea_gull sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sea shell is located at ocean", "pln": ["(: cnet_atlocation_8a9f088605 (AtLocation sea_shell ocean) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "seahorse is located at ocean", "pln": ["(: cnet_atlocation_3b2beae710 (AtLocation seahorse ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "seal is located at sea", "pln": ["(: cnet_atlocation_0b45fe367f (AtLocation seal sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sear tower is located at chicago illinois", "pln": ["(: cnet_atlocation_d39d648817 (AtLocation sear_tower chicago_illinois) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "seat is located at airplane", "pln": ["(: cnet_atlocation_57ad60785e (AtLocation seat airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "seats is located at movie", "pln": ["(: cnet_atlocation_cd9404f875 (AtLocation seats movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "seats is located at movies", "pln": ["(: cnet_atlocation_2a6f0d4db6 (AtLocation seats movies) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "seat is located at auditorium", "pln": ["(: cnet_atlocation_11d5989328 (AtLocation seat auditorium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "seat is located at jeep", "pln": ["(: cnet_atlocation_952d94d072 (AtLocation seat jeep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "seat is located at show", "pln": ["(: cnet_atlocation_d274b94160 (AtLocation seat show) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "seat is located at theater", "pln": ["(: cnet_atlocation_bdaeba25c3 (AtLocation seat theater) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "seat is located at theatre", "pln": ["(: cnet_atlocation_c7b9fe56b0 (AtLocation seat theatre) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "seat belt is located at backseat of car", "pln": ["(: cnet_atlocation_818e1345cd (AtLocation seat_belt backseat_of_car) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "seat belt is located at plane", "pln": ["(: cnet_atlocation_f34c5f0c4c (AtLocation seat_belt plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "seatbelt is located at backseat of car", "pln": ["(: cnet_atlocation_6a927a634e (AtLocation seatbelt backseat_of_car) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "seatbelt is located at car", "pln": ["(: cnet_atlocation_91f9f79813 (AtLocation seatbelt car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "seating is located at theatre", "pln": ["(: cnet_atlocation_fb47cc48e3 (AtLocation seating theatre) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "seat is located at hockey game", "pln": ["(: cnet_atlocation_d255aeed76 (AtLocation seat hockey_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "seat is located at movie", "pln": ["(: cnet_atlocation_a11bfe12d5 (AtLocation seat movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "seat is located at movy", "pln": ["(: cnet_atlocation_a801e40141 (AtLocation seat movy) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "seat is located at opera", "pln": ["(: cnet_atlocation_49a4c8c9eb (AtLocation seat opera) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "seat is located at rest area", "pln": ["(: cnet_atlocation_c6baa48c5c (AtLocation seat rest_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "seaweed is located at beach", "pln": ["(: cnet_atlocation_b0f15065ed (AtLocation seaweed beach) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "seaweed is located at water", "pln": ["(: cnet_atlocation_03300a083f (AtLocation seaweed water) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "security camera is located at casino", "pln": ["(: cnet_atlocation_1dc68965d7 (AtLocation security_camera casino) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "security guard is located at store", "pln": ["(: cnet_atlocation_55166ce5ff (AtLocation security_guard store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "security guard is located at casino", "pln": ["(: cnet_atlocation_0c763e9d6f (AtLocation security_guard casino) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "seed is located at fruit", "pln": ["(: cnet_atlocation_232cc61700 (AtLocation seed fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "self adhesive label is located at office supply store", "pln": ["(: cnet_atlocation_74f92a053e (AtLocation self_adhesive_label office_supply_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "self adhesive label is located at self adhesive label box", "pln": ["(: cnet_atlocation_568ea2498f (AtLocation self_adhesive_label self_adhesive_label_box) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "set of dishes is located at cabinet", "pln": ["(: cnet_atlocation_cd1c18a1b5 (AtLocation set_of_dishes cabinet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "semen is located at test tube", "pln": ["(: cnet_atlocation_257dcbbca7 (AtLocation semen test_tube) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "senior is located at high school", "pln": ["(: cnet_atlocation_de37fe9a8e (AtLocation senior high_school) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "senior is located at old folk home", "pln": ["(: cnet_atlocation_d19c574681 (AtLocation senior old_folk_home) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "senior is located at republican party", "pln": ["(: cnet_atlocation_35fd0acea0 (AtLocation senior republican_party) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "separate shower is located at bathroom", "pln": ["(: cnet_atlocation_6976f36409 (AtLocation separate_shower bathroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "separate shower is located at ensuite room", "pln": ["(: cnet_atlocation_82ea7eb03b (AtLocation separate_shower ensuite_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sermon is located at church", "pln": ["(: cnet_atlocation_f553a42557 (AtLocation sermon church) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "service counter is located at store", "pln": ["(: cnet_atlocation_33ce8448c2 (AtLocation service_counter store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "serving cart is located at restaurant", "pln": ["(: cnet_atlocation_5cac677cbc (AtLocation serving_cart restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "serving trolley is located at restaurant", "pln": ["(: cnet_atlocation_c880c287bd (AtLocation serving_trolley restaurant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "set of dishe is located at cabinet", "pln": ["(: cnet_atlocation_331b5fe052 (AtLocation set_of_dishe cabinet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "sewage is located at ocean", "pln": ["(: cnet_atlocation_1592806c71 (AtLocation sewage ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "shades is located at windows", "pln": ["(: cnet_atlocation_dd62b27c3d (AtLocation shades windows) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sewer is located at street", "pln": ["(: cnet_atlocation_db9f514a86 (AtLocation sewer street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sex is located at bedroom", "pln": ["(: cnet_atlocation_6e69ce1ed1 (AtLocation sex bedroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sex toy is located at bedroom", "pln": ["(: cnet_atlocation_2c94a2eeba (AtLocation sex_toy bedroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shade is located at tree", "pln": ["(: cnet_atlocation_36834966a4 (AtLocation shade tree) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shaded seating is located at rest area", "pln": ["(: cnet_atlocation_fad9bb8ed7 (AtLocation shaded_seating rest_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shade is located at window", "pln": ["(: cnet_atlocation_c21fd0686d (AtLocation shade window) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shade is located at window decoration store", "pln": ["(: cnet_atlocation_1923c2da36 (AtLocation shade window_decoration_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shadow is located at bridge", "pln": ["(: cnet_atlocation_b3b882a729 (AtLocation shadow bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shadow is located at ground", "pln": ["(: cnet_atlocation_dfb064324f (AtLocation shadow ground) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shady place to sit is located at tree", "pln": ["(: cnet_atlocation_98fec6fba1 (AtLocation shady_place_to_sit tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shampoo is located at bottle", "pln": ["(: cnet_atlocation_db9daffd38 (AtLocation shampoo bottle) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "shampoo is located at hair", "pln": ["(: cnet_atlocation_4e2171a4dd (AtLocation shampoo hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shampoo is located at shower", "pln": ["(: cnet_atlocation_236b815425 (AtLocation shampoo shower) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shampoo is located at supermarket", "pln": ["(: cnet_atlocation_fd97364599 (AtLocation shampoo supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shark is located at atlantic ocean", "pln": ["(: cnet_atlocation_19a3e9f6ec (AtLocation shark atlantic_ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "shark is located at gulf of mexico", "pln": ["(: cnet_atlocation_535305d89d (AtLocation shark gulf_of_mexico) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shark is located at mediterranean sea", "pln": ["(: cnet_atlocation_0cb4d8bfe2 (AtLocation shark mediterranean_sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shark is located at movie", "pln": ["(: cnet_atlocation_af49c9e5cb (AtLocation shark movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shark is located at movie jaw", "pln": ["(: cnet_atlocation_d8d37e3ff6 (AtLocation shark movie_jaw) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shark is located at ocean", "pln": ["(: cnet_atlocation_7fdc56b207 (AtLocation shark ocean) (STV 1.0 0.9826))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shark is located at ocean of world", "pln": ["(: cnet_atlocation_43045bfa63 (AtLocation shark ocean_of_world) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shark is located at ocean or aquarium", "pln": ["(: cnet_atlocation_cdfa053b35 (AtLocation shark ocean_or_aquarium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shark is located at pacific ocean", "pln": ["(: cnet_atlocation_1848b6e3fc (AtLocation shark pacific_ocean) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "shark is located at pool hall", "pln": ["(: cnet_atlocation_d37e8c611f (AtLocation shark pool_hall) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shark is located at reef", "pln": ["(: cnet_atlocation_dae3dfa21f (AtLocation shark reef) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shark is located at salt water", "pln": ["(: cnet_atlocation_893ef78f45 (AtLocation shark salt_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shark is located at saltwater", "pln": ["(: cnet_atlocation_14d864ed5c (AtLocation shark saltwater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "shark is located at sea world", "pln": ["(: cnet_atlocation_ac78cabde7 (AtLocation shark sea_world) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shark is located at seawater", "pln": ["(: cnet_atlocation_99feaefda9 (AtLocation shark seawater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shark is located at separate tank", "pln": ["(: cnet_atlocation_4e4c4dc63c (AtLocation shark separate_tank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shark is located at shallow water", "pln": ["(: cnet_atlocation_5e83de5db2 (AtLocation shark shallow_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shark is located at south pacific", "pln": ["(: cnet_atlocation_fbc1bdbf72 (AtLocation shark south_pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shark is located at tank", "pln": ["(: cnet_atlocation_8d3d2089cc (AtLocation shark tank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shark is located at zoo", "pln": ["(: cnet_atlocation_cd36932785 (AtLocation shark zoo) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shed is located at backyard", "pln": ["(: cnet_atlocation_be46175971 (AtLocation shed backyard) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sheep is located at farm", "pln": ["(: cnet_atlocation_5e4743ef8c (AtLocation sheep farm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "sheep is located at meadow", "pln": ["(: cnet_atlocation_6b10553dd2 (AtLocation sheep meadow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sheet is located at linen closet", "pln": ["(: cnet_atlocation_f51ea8ad00 (AtLocation sheet linen_closet) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sheet is located at linen store", "pln": ["(: cnet_atlocation_8022754c44 (AtLocation sheet linen_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sheet of paper is located at box", "pln": ["(: cnet_atlocation_c9cb7261f7 (AtLocation sheet_of_paper box) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sheet of paper is located at office", "pln": ["(: cnet_atlocation_a8d4efb1fd (AtLocation sheet_of_paper office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sheet of paper is located at printer", "pln": ["(: cnet_atlocation_0a071f5ec9 (AtLocation sheet_of_paper printer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sheet is located at drawer", "pln": ["(: cnet_atlocation_7b42908e5a (AtLocation sheet drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shelf is located at bookstore", "pln": ["(: cnet_atlocation_4bd768f565 (AtLocation shelf bookstore) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shelf is located at closet", "pln": ["(: cnet_atlocation_e382b82a66 (AtLocation shelf closet) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shelf is located at corner", "pln": ["(: cnet_atlocation_94d7e1bfdf (AtLocation shelf corner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shelf is located at cupboard", "pln": ["(: cnet_atlocation_a42f9e2efe (AtLocation shelf cupboard) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shelf is located at refrigerator", "pln": ["(: cnet_atlocation_fabc0790bc (AtLocation shelf refrigerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shelf is located at wall", "pln": ["(: cnet_atlocation_3b3e04a38e (AtLocation shelf wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shell is located at ocean", "pln": ["(: cnet_atlocation_232fb153f9 (AtLocation shell ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shell in or rather is located at beach", "pln": ["(: cnet_atlocation_f17ce6bb1c (AtLocation shell_in_or_rather beach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shelter is located at bus stop", "pln": ["(: cnet_atlocation_3709850f55 (AtLocation shelter bus_stop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shelve of book and magazine is located at library", "pln": ["(: cnet_atlocation_71fc1b72d5 (AtLocation shelve_of_book_and_magazine library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shelving is located at pantry", "pln": ["(: cnet_atlocation_7e1e60b5a1 (AtLocation shelving pantry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "shingle is located at roof", "pln": ["(: cnet_atlocation_043751a2a3 (AtLocation shingle roof) (STV 1.0 0.9748))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ship is located at ocean", "pln": ["(: cnet_atlocation_715876a204 (AtLocation ship ocean) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ship is located at port", "pln": ["(: cnet_atlocation_e1f4985f5d (AtLocation ship port) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "ship wreck is located at bottom of sea", "pln": ["(: cnet_atlocation_45b49e2674 (AtLocation ship_wreck bottom_of_sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shipwreck is located at bottom of sea", "pln": ["(: cnet_atlocation_06c18ad7ce (AtLocation shipwreck bottom_of_sea) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shipwreck is located at ocean", "pln": ["(: cnet_atlocation_ff87597201 (AtLocation shipwreck ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shipwreck is located at water", "pln": ["(: cnet_atlocation_36a713cee3 (AtLocation shipwreck water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shirt is located at closet", "pln": ["(: cnet_atlocation_4f2598dbd4 (AtLocation shirt closet) (STV 1.0 0.9748))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shirt is located at suitcase", "pln": ["(: cnet_atlocation_0593be2b70 (AtLocation shirt suitcase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "shoe is located at closet", "pln": ["(: cnet_atlocation_c950350bd1 (AtLocation shoe closet) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shoe is located at foot", "pln": ["(: cnet_atlocation_1ed20e87ee (AtLocation shoe foot) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shoe is located at shoe store", "pln": ["(: cnet_atlocation_c885c63ed4 (AtLocation shoe shoe_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shoe is located at store", "pln": ["(: cnet_atlocation_aafb73b042 (AtLocation shoe store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shoe store is located at mall", "pln": ["(: cnet_atlocation_f8d1176bff (AtLocation shoe_store mall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shoe is located at bed", "pln": ["(: cnet_atlocation_0b1242b8ca (AtLocation shoe bed) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shoe is located at box", "pln": ["(: cnet_atlocation_fcc7386044 (AtLocation shoe box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shoe is located at table", "pln": ["(: cnet_atlocation_ce3a425149 (AtLocation shoe table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shop is located at shopping mall", "pln": ["(: cnet_atlocation_954dbc6ca8 (AtLocation shop shopping_mall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shop is located at town", "pln": ["(: cnet_atlocation_423fba6ab9 (AtLocation shop town) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "shopkeeper is located at shop", "pln": ["(: cnet_atlocation_ba6a7ae322 (AtLocation shopkeeper shop) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shopping arcade is located at city", "pln": ["(: cnet_atlocation_7753dd172a (AtLocation shopping_arcade city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shopping arcade is located at mall", "pln": ["(: cnet_atlocation_a6cd7ca4ad (AtLocation shopping_arcade mall) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shopping arcade is located at town", "pln": ["(: cnet_atlocation_e20908da76 (AtLocation shopping_arcade town) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shopping bag is located at supermarket", "pln": ["(: cnet_atlocation_5945573348 (AtLocation shopping_bag supermarket) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shopping basket is located at grocery store", "pln": ["(: cnet_atlocation_b2d3bd8ae2 (AtLocation shopping_basket grocery_store) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shopping basket is located at store", "pln": ["(: cnet_atlocation_527d3e65eb (AtLocation shopping_basket store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "shopping basket is located at supermarket", "pln": ["(: cnet_atlocation_cf663f4b02 (AtLocation shopping_basket supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shopping cart is located at market", "pln": ["(: cnet_atlocation_284b422a03 (AtLocation shopping_cart market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "shopping center is located at suburb", "pln": ["(: cnet_atlocation_be39463a55 (AtLocation shopping_center suburb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shopping complex is located at city", "pln": ["(: cnet_atlocation_ead376bb06 (AtLocation shopping_complex city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shopping list is located at fridge", "pln": ["(: cnet_atlocation_e16a636553 (AtLocation shopping_list fridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shopping mall is located at suburb", "pln": ["(: cnet_atlocation_af75c05676 (AtLocation shopping_mall suburb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shop is located at street", "pln": ["(: cnet_atlocation_9193a01c25 (AtLocation shop street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shore is located at beach", "pln": ["(: cnet_atlocation_30dc316c7c (AtLocation shore beach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "short order cook is located at fast food restaurant", "pln": ["(: cnet_atlocation_e2638d6ac5 (AtLocation short_order_cook fast_food_restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shoulder bag is located at department store", "pln": ["(: cnet_atlocation_8e2aea738e (AtLocation shoulder_bag department_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "show is located at television", "pln": ["(: cnet_atlocation_0d68bfa632 (AtLocation show television) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "show is located at theatre", "pln": ["(: cnet_atlocation_58985131b1 (AtLocation show theatre) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "show horse is located at fairground", "pln": ["(: cnet_atlocation_670351a203 (AtLocation show_horse fairground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shower curtain is located at department store", "pln": ["(: cnet_atlocation_56c8814559 (AtLocation shower_curtain department_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shower curtain is located at shower stall", "pln": ["(: cnet_atlocation_cc7154afdd (AtLocation shower_curtain shower_stall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "shower door is located at bathroom", "pln": ["(: cnet_atlocation_9383eebea0 (AtLocation shower_door bathroom) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shower head is located at shower stall", "pln": ["(: cnet_atlocation_6af8bf44f9 (AtLocation shower_head shower_stall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shower switch is located at bathroom", "pln": ["(: cnet_atlocation_141581e216 (AtLocation shower_switch bathroom) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "shower is located at locker room", "pln": ["(: cnet_atlocation_9fc0a56991 (AtLocation shower locker_room) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "sideboard is located at dining room", "pln": ["(: cnet_atlocation_0e57d94540 (AtLocation sideboard dining_room) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sign is located at bus stop", "pln": ["(: cnet_atlocation_f8402c0bfe (AtLocation sign bus_stop) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sign is located at city", "pln": ["(: cnet_atlocation_9e942e5d24 (AtLocation sign city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sign is located at fork in road", "pln": ["(: cnet_atlocation_4d017214fa (AtLocation sign fork_in_road) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sign is located at roadblock", "pln": ["(: cnet_atlocation_6bedbdf83c (AtLocation sign roadblock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sign giving direction is located at fork in road", "pln": ["(: cnet_atlocation_074a030bd2 (AtLocation sign_giving_direction fork_in_road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "signpost is located at fork in road", "pln": ["(: cnet_atlocation_181f2bb546 (AtLocation signpost fork_in_road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sign is located at corner of two street", "pln": ["(: cnet_atlocation_af53beed8b (AtLocation sign corner_of_two_street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sign is located at demonstration", "pln": ["(: cnet_atlocation_23ca39049c (AtLocation sign demonstration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sign is located at freeway", "pln": ["(: cnet_atlocation_42c5179307 (AtLocation sign freeway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "silence is located at library", "pln": ["(: cnet_atlocation_91287d1e0c (AtLocation silence library) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "silicone is located at artificial breast", "pln": ["(: cnet_atlocation_4612c61528 (AtLocation silicone artificial_breast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "silicone is located at tube", "pln": ["(: cnet_atlocation_106fe4702c (AtLocation silicone tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "silk is located at china", "pln": ["(: cnet_atlocation_ca669f2b17 (AtLocation silk china) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "silk gown is located at opera", "pln": ["(: cnet_atlocation_cd3bcba909 (AtLocation silk_gown opera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "silver is located at old coin", "pln": ["(: cnet_atlocation_1d6396f2dc (AtLocation silver old_coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "silverware is located at kitchen", "pln": ["(: cnet_atlocation_51be28cc11 (AtLocation silverware kitchen) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "silverware is located at restaurant", "pln": ["(: cnet_atlocation_97d628f40b (AtLocation silverware restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "silverware is located at table", "pln": ["(: cnet_atlocation_8dc0721e17 (AtLocation silverware table) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sin is located at confession", "pln": ["(: cnet_atlocation_4b82a8b496 (AtLocation sin confession) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "singapore is located at asia", "pln": ["(: cnet_atlocation_d3a2e5674a (AtLocation singapore asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "singing is located at opera", "pln": ["(: cnet_atlocation_e13db24c70 (AtLocation singing opera) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sink is located at chemistry lab", "pln": ["(: cnet_atlocation_f21ef1cf54 (AtLocation sink chemistry_lab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sink is located at house", "pln": ["(: cnet_atlocation_02bb3cea7b (AtLocation sink house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "sink is located at kitchen", "pln": ["(: cnet_atlocation_655c327ba4 (AtLocation sink kitchen) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sinner is located at confession", "pln": ["(: cnet_atlocation_4015608109 (AtLocation sinner confession) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sitcom is located at television", "pln": ["(: cnet_atlocation_8edee171ce (AtLocation sitcom television) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sitcom is located at tv", "pln": ["(: cnet_atlocation_3fc28bb949 (AtLocation sitcom tv) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "skeleton is located at closet", "pln": ["(: cnet_atlocation_c3f567e10b (AtLocation skeleton closet) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "skeleton is located at museum", "pln": ["(: cnet_atlocation_9ec9180434 (AtLocation skeleton museum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ski tow is located at hill", "pln": ["(: cnet_atlocation_c2cdc581a3 (AtLocation ski_tow hill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ski tow is located at mountain", "pln": ["(: cnet_atlocation_2823620860 (AtLocation ski_tow mountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "skier is located at mountain", "pln": ["(: cnet_atlocation_1d2bca82c2 (AtLocation skier mountain) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "skin is located at body", "pln": ["(: cnet_atlocation_fe5fd7f9fd (AtLocation skin body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "skin is located at finger", "pln": ["(: cnet_atlocation_74e12fb384 (AtLocation skin finger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "skin is located at fruit", "pln": ["(: cnet_atlocation_e8bf11d58e (AtLocation skin fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "skin care article is located at magazine", "pln": ["(: cnet_atlocation_b66af7d7b3 (AtLocation skin_care_article magazine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "skirt is located at closet", "pln": ["(: cnet_atlocation_32eb70cced (AtLocation skirt closet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sky is located at outdoor", "pln": ["(: cnet_atlocation_f2b3fe5678 (AtLocation sky outdoor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sky is located at painting", "pln": ["(: cnet_atlocation_faace7ed65 (AtLocation sky painting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "sky is located at photo", "pln": ["(: cnet_atlocation_d4b62bbdca (AtLocation sky photo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "slates is located at roof", "pln": ["(: cnet_atlocation_018d9a1615 (AtLocation slates roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sky is located at planet", "pln": ["(: cnet_atlocation_34c4e75ce6 (AtLocation sky planet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sky is located at planetarium", "pln": ["(: cnet_atlocation_183efb17cf (AtLocation sky planetarium) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "skycap is located at airport", "pln": ["(: cnet_atlocation_559d33c8fc (AtLocation skycap airport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "skylight is located at roof", "pln": ["(: cnet_atlocation_b375e29c98 (AtLocation skylight roof) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "skyscraper is located at city", "pln": ["(: cnet_atlocation_6eb272656c (AtLocation skyscraper city) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "skyscraper is located at large city", "pln": ["(: cnet_atlocation_7ace7a3e7b (AtLocation skyscraper large_city) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "slate is located at roof", "pln": ["(: cnet_atlocation_ac7e94ccfd (AtLocation slate roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sleeping bag is located at backpack", "pln": ["(: cnet_atlocation_b04f30bf15 (AtLocation sleeping_bag backpack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sleeping cat is located at rug", "pln": ["(: cnet_atlocation_3c62c0f2a7 (AtLocation sleeping_cat rug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sleeping dog is located at rug", "pln": ["(: cnet_atlocation_91766424d6 (AtLocation sleeping_dog rug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sleeping man is located at tree", "pln": ["(: cnet_atlocation_e55ad07fed (AtLocation sleeping_man tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sleeping people is located at bed", "pln": ["(: cnet_atlocation_6da621ae65 (AtLocation sleeping_people bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "slide is located at park", "pln": ["(: cnet_atlocation_6b120ff552 (AtLocation slide park) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "slinky is located at toy store", "pln": ["(: cnet_atlocation_2f56a2e488 (AtLocation slinky toy_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "slipper is located at bed", "pln": ["(: cnet_atlocation_51452b3263 (AtLocation slipper bed) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "slipper is located at bedroom", "pln": ["(: cnet_atlocation_10459a2d52 (AtLocation slipper bedroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "slot machine is located at casino", "pln": ["(: cnet_atlocation_58226d15d1 (AtLocation slot_machine casino) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sloth is located at amazon", "pln": ["(: cnet_atlocation_098795d444 (AtLocation sloth amazon) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sloth is located at brazil", "pln": ["(: cnet_atlocation_11a18709a4 (AtLocation sloth brazil) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sloth is located at country", "pln": ["(: cnet_atlocation_e4ea4db88b (AtLocation sloth country) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "sloth is located at dictionary", "pln": ["(: cnet_atlocation_b5f61ed215 (AtLocation sloth dictionary) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sloth is located at jungle tree", "pln": ["(: cnet_atlocation_5b79561110 (AtLocation sloth jungle_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "sloth is located at rain forest", "pln": ["(: cnet_atlocation_0bacaaf78d (AtLocation sloth rain_forest) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sloth is located at south american jungle", "pln": ["(: cnet_atlocation_1864570873 (AtLocation sloth south_american_jungle) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "sloth is located at tropical forest", "pln": ["(: cnet_atlocation_2886c020c9 (AtLocation sloth tropical_forest) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sloth is located at work", "pln": ["(: cnet_atlocation_f58e147ea7 (AtLocation sloth work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "slotmachine is located at casino", "pln": ["(: cnet_atlocation_791135f173 (AtLocation slotmachine casino) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "small appliance is located at kitchen", "pln": ["(: cnet_atlocation_138de593e5 (AtLocation small_appliance kitchen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "small dog is located at animal shelter", "pln": ["(: cnet_atlocation_97ea265da9 (AtLocation small_dog animal_shelter) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "small dog is located at backyard", "pln": ["(: cnet_atlocation_5024848e2a (AtLocation small_dog backyard) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "small dog is located at basket", "pln": ["(: cnet_atlocation_3eb42cf5f8 (AtLocation small_dog basket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "small dog is located at bed", "pln": ["(: cnet_atlocation_8c90116b98 (AtLocation small_dog bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "small dog is located at big house", "pln": ["(: cnet_atlocation_d721fbf4a5 (AtLocation small_dog big_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "small dog is located at owners lap", "pln": ["(: cnet_atlocation_fb27b37b22 (AtLocation small_dog owners_lap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "small dog is located at persons house", "pln": ["(: cnet_atlocation_89fa05170f (AtLocation small_dog persons_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "small dog is located at cage", "pln": ["(: cnet_atlocation_88fb5f0875 (AtLocation small_dog cage) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "small dog is located at city", "pln": ["(: cnet_atlocation_2d57448da0 (AtLocation small_dog city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "small dog is located at dog show", "pln": ["(: cnet_atlocation_02fe23da9c (AtLocation small_dog dog_show) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "small dog is located at fat lady s lap", "pln": ["(: cnet_atlocation_9c651ef1b3 (AtLocation small_dog fat_lady_s_lap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "small dog is located at georgia", "pln": ["(: cnet_atlocation_d59d58ec7d (AtLocation small_dog georgia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "small dog is located at home", "pln": ["(: cnet_atlocation_9c36d61fd4 (AtLocation small_dog home) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "small dog is located at lap", "pln": ["(: cnet_atlocation_3740049b3c (AtLocation small_dog lap) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "small dog is located at living room", "pln": ["(: cnet_atlocation_7126840d12 (AtLocation small_dog living_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "small dog is located at old lady s apartment", "pln": ["(: cnet_atlocation_0fcc3c33d8 (AtLocation small_dog old_lady_s_apartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "small dog is located at own home", "pln": ["(: cnet_atlocation_b9556cdec7 (AtLocation small_dog own_home) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "small dog is located at owner lap", "pln": ["(: cnet_atlocation_c445a7b1aa (AtLocation small_dog owner_lap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "small dog is located at person house", "pln": ["(: cnet_atlocation_5c2ffdacd3 (AtLocation small_dog person_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "small dog is located at pet pound", "pln": ["(: cnet_atlocation_1d6682cbb7 (AtLocation small_dog pet_pound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "small dog is located at petshop", "pln": ["(: cnet_atlocation_17f3a1ddc8 (AtLocation small_dog petshop) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "small dog is located at small apartment", "pln": ["(: cnet_atlocation_bfe2a14d02 (AtLocation small_dog small_apartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "small dog is located at small cage", "pln": ["(: cnet_atlocation_d0d9ef394a (AtLocation small_dog small_cage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "small dog is located at small dog house", "pln": ["(: cnet_atlocation_5c0f2878fb (AtLocation small_dog small_dog_house) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "small dog is located at small house", "pln": ["(: cnet_atlocation_18c9d0ce34 (AtLocation small_dog small_house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "small dog is located at someone lap", "pln": ["(: cnet_atlocation_6a18e5f21f (AtLocation small_dog someone_lap) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "small dog is located at vet", "pln": ["(: cnet_atlocation_c5aeab4aa6 (AtLocation small_dog vet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "small dog is located at yard", "pln": ["(: cnet_atlocation_d1b5de1379 (AtLocation small_dog yard) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "small kitchen is located at apartment", "pln": ["(: cnet_atlocation_aa09921269 (AtLocation small_kitchen apartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "small mirror is located at purse", "pln": ["(: cnet_atlocation_6931f57ccf (AtLocation small_mirror purse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "snack bar is located at airport", "pln": ["(: cnet_atlocation_d63ba582d2 (AtLocation snack_bar airport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "snack bar is located at bus depot", "pln": ["(: cnet_atlocation_e5f2eaea9d (AtLocation snack_bar bus_depot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snack is located at movie", "pln": ["(: cnet_atlocation_3f0da37e0c (AtLocation snack movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snack is located at rest area", "pln": ["(: cnet_atlocation_ffe3da7033 (AtLocation snack rest_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snake is located at amazon", "pln": ["(: cnet_atlocation_e7e8019888 (AtLocation snake amazon) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snake is located at aquarium", "pln": ["(: cnet_atlocation_f7a9a33663 (AtLocation snake aquarium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snake is located at barn", "pln": ["(: cnet_atlocation_a739a4acbe (AtLocation snake barn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snake is located at bed", "pln": ["(: cnet_atlocation_383141e7f9 (AtLocation snake bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snake is located at bible", "pln": ["(: cnet_atlocation_162141286d (AtLocation snake bible) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snake is located at cage", "pln": ["(: cnet_atlocation_56f45ac99f (AtLocation snake cage) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snake is located at cave", "pln": ["(: cnet_atlocation_aea61f6460 (AtLocation snake cave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snake is located at creek", "pln": ["(: cnet_atlocation_bca3852b94 (AtLocation snake creek) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snake is located at ditch", "pln": ["(: cnet_atlocation_3dd0684ea6 (AtLocation snake ditch) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snake is located at feild", "pln": ["(: cnet_atlocation_c4b8738b9b (AtLocation snake feild) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snake is located at field", "pln": ["(: cnet_atlocation_c1a914ab28 (AtLocation snake field) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snake is located at france", "pln": ["(: cnet_atlocation_0f4a226936 (AtLocation snake france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snake is located at garden", "pln": ["(: cnet_atlocation_25b9045c08 (AtLocation snake garden) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snake is located at glass enclosed case", "pln": ["(: cnet_atlocation_16d39a5e89 (AtLocation snake glass_enclosed_case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "snake is located at hole in ground", "pln": ["(: cnet_atlocation_2362e9bcd1 (AtLocation snake hole_in_ground) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "snake is located at pet shops", "pln": ["(: cnet_atlocation_cf93ca644a (AtLocation snake pet_shops) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snake is located at kansa", "pln": ["(: cnet_atlocation_cf1d8b65e9 (AtLocation snake kansa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snake is located at louisiana", "pln": ["(: cnet_atlocation_c9f5c21eb8 (AtLocation snake louisiana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snake is located at nature", "pln": ["(: cnet_atlocation_4f08b731c6 (AtLocation snake nature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snake is located at north america", "pln": ["(: cnet_atlocation_a516c54ba9 (AtLocation snake north_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snake is located at oregon", "pln": ["(: cnet_atlocation_0199ee8fdc (AtLocation snake oregon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snake is located at outdoor", "pln": ["(: cnet_atlocation_f19ce848a8 (AtLocation snake outdoor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snake is located at pet shop", "pln": ["(: cnet_atlocation_80687e0ce0 (AtLocation snake pet_shop) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snake is located at pet store", "pln": ["(: cnet_atlocation_7ecde88db6 (AtLocation snake pet_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snake is located at pit", "pln": ["(: cnet_atlocation_99720e5e5f (AtLocation snake pit) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snake is located at snake pit", "pln": ["(: cnet_atlocation_e83f873cfe (AtLocation snake snake_pit) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snake is located at texa", "pln": ["(: cnet_atlocation_b8dc98874e (AtLocation snake texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snake is located at tree", "pln": ["(: cnet_atlocation_d835f9e846 (AtLocation snake tree) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snake is located at tropical forest", "pln": ["(: cnet_atlocation_bf15abbb4e (AtLocation snake tropical_forest) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "snake is located at underbrush", "pln": ["(: cnet_atlocation_48b9acabe2 (AtLocation snake underbrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "snobs is located at gallery opening", "pln": ["(: cnet_atlocation_9dc6a24c6d (AtLocation snobs gallery_opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snake is located at zoo s reptile house", "pln": ["(: cnet_atlocation_e698385ba0 (AtLocation snake zoo_s_reptile_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snare drum is located at drum kit", "pln": ["(: cnet_atlocation_1f2ab18991 (AtLocation snare_drum drum_kit) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snare drum is located at marching band", "pln": ["(: cnet_atlocation_53755ad99b (AtLocation snare_drum marching_band) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snare drum is located at orchestra", "pln": ["(: cnet_atlocation_0997496e91 (AtLocation snare_drum orchestra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snob is located at gallery opening", "pln": ["(: cnet_atlocation_1c0941c4f6 (AtLocation snob gallery_opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snoopy is located at newspaper", "pln": ["(: cnet_atlocation_4056cfd06f (AtLocation snoopy newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snooty people is located at gallery opening", "pln": ["(: cnet_atlocation_b65adbbd7a (AtLocation snooty_people gallery_opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "snow is located at canada", "pln": ["(: cnet_atlocation_61c7b93b0e (AtLocation snow canada) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snow is located at ground", "pln": ["(: cnet_atlocation_924f7ee12e (AtLocation snow ground) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snow is located at mountain", "pln": ["(: cnet_atlocation_a8033656bc (AtLocation snow mountain) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snow is located at roof", "pln": ["(: cnet_atlocation_83b1ef4a10 (AtLocation snow roof) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snow is located at surface of earth", "pln": ["(: cnet_atlocation_8d7eace83c (AtLocation snow surface_of_earth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snow cap is located at top of mountain", "pln": ["(: cnet_atlocation_806deb05ce (AtLocation snow_cap top_of_mountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "snowflake is located at winter", "pln": ["(: cnet_atlocation_ca9bfe6b37 (AtLocation snowflake winter) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "soap is located at supermarket", "pln": ["(: cnet_atlocation_c107efcee2 (AtLocation soap supermarket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "soap dish is located at sink", "pln": ["(: cnet_atlocation_ff3a8cfa90 (AtLocation soap_dish sink) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "soccer ball is located at lawn", "pln": ["(: cnet_atlocation_e0b1f61ba0 (AtLocation soccer_ball lawn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "soccer ball is located at soccer game", "pln": ["(: cnet_atlocation_9c2f418ec3 (AtLocation soccer_ball soccer_game) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "soccer field is located at park", "pln": ["(: cnet_atlocation_a088892f1c (AtLocation soccer_field park) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "soccer field is located at town", "pln": ["(: cnet_atlocation_de46f84f73 (AtLocation soccer_field town) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "soccer mom is located at soccer game", "pln": ["(: cnet_atlocation_34bcc54ce4 (AtLocation soccer_mom soccer_game) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "soccer net is located at soccer game", "pln": ["(: cnet_atlocation_990c8168d8 (AtLocation soccer_net soccer_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "society is located at group of people", "pln": ["(: cnet_atlocation_38ba215eff (AtLocation society group_of_people) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sock is located at drawer", "pln": ["(: cnet_atlocation_5e0ab768c1 (AtLocation sock drawer) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "sock is located at sock drawer", "pln": ["(: cnet_atlocation_964316a0a6 (AtLocation sock sock_drawer) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sock is located at bed", "pln": ["(: cnet_atlocation_b9dc855168 (AtLocation sock bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sock is located at shoe", "pln": ["(: cnet_atlocation_66c4fe2aa3 (AtLocation sock shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sock is located at suitcase", "pln": ["(: cnet_atlocation_6314f25d36 (AtLocation sock suitcase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sock and underwear is located at sock drawer", "pln": ["(: cnet_atlocation_f71d2cd3c0 (AtLocation sock_and_underwear sock_drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "soda is located at can", "pln": ["(: cnet_atlocation_0103d977e5 (AtLocation soda can) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "soda can is located at plane", "pln": ["(: cnet_atlocation_7ac9a5ec7c (AtLocation soda_can plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sofa is located at home", "pln": ["(: cnet_atlocation_7b7ab11bd2 (AtLocation sofa home) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "sofa is located at house", "pln": ["(: cnet_atlocation_6bdb99417a (AtLocation sofa house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sofa is located at neighbor s house", "pln": ["(: cnet_atlocation_fad44b666a (AtLocation sofa neighbor_s_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "sofa bed is located at living room", "pln": ["(: cnet_atlocation_24a7c4c11d (AtLocation sofa_bed living_room) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sofa hide bed is located at apartment", "pln": ["(: cnet_atlocation_1b7fa4fe0c (AtLocation sofa_hide_bed apartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sofa hide bed is located at furniture store", "pln": ["(: cnet_atlocation_7a6f3c5279 (AtLocation sofa_hide_bed furniture_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sofa hide bed is located at living room", "pln": ["(: cnet_atlocation_1cb924c3f5 (AtLocation sofa_hide_bed living_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sofa hide bed is located at livingroom", "pln": ["(: cnet_atlocation_aad390b1ee (AtLocation sofa_hide_bed livingroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "soldier is located at battle", "pln": ["(: cnet_atlocation_5cefa5ff75 (AtLocation soldier battle) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "soldier is located at battlefield", "pln": ["(: cnet_atlocation_00b51e631c (AtLocation soldier battlefield) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "soldier is located at harm way", "pln": ["(: cnet_atlocation_91f4072da7 (AtLocation soldier harm_way) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "soldier is located at tent", "pln": ["(: cnet_atlocation_259b5cf847 (AtLocation soldier tent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "soldier is located at war zone", "pln": ["(: cnet_atlocation_55a5001147 (AtLocation soldier war_zone) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "soldier is located at white house", "pln": ["(: cnet_atlocation_cc0997c5ee (AtLocation soldier white_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "soldiere is located at military base", "pln": ["(: cnet_atlocation_7b6525b0ff (AtLocation soldiere military_base) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "song is located at cd", "pln": ["(: cnet_atlocation_6f0c1fc0b9 (AtLocation song cd) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "song is located at jukebox", "pln": ["(: cnet_atlocation_ac66ac65fc (AtLocation song jukebox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "soprano is located at choir", "pln": ["(: cnet_atlocation_4a8ec6ba00 (AtLocation soprano choir) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "soul is located at person", "pln": ["(: cnet_atlocation_99dc0e1207 (AtLocation soul person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sound is located at band hall", "pln": ["(: cnet_atlocation_d9266270ee (AtLocation sound band_hall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sound is located at movie", "pln": ["(: cnet_atlocation_14859747ee (AtLocation sound movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sound control room is located at recording studio", "pln": ["(: cnet_atlocation_7b3197f928 (AtLocation sound_control_room recording_studio) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sound control room is located at studio", "pln": ["(: cnet_atlocation_25745f200a (AtLocation sound_control_room studio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "soundstage is located at movie studio", "pln": ["(: cnet_atlocation_cfd95f1212 (AtLocation soundstage movie_studio) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "soup is located at can", "pln": ["(: cnet_atlocation_090211176b (AtLocation soup can) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "soup is located at container", "pln": ["(: cnet_atlocation_e27db9e8c2 (AtLocation soup container) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "soup is located at jar", "pln": ["(: cnet_atlocation_f7341dd6cf (AtLocation soup jar) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "soup is located at supermarket", "pln": ["(: cnet_atlocation_4a44d70a90 (AtLocation soup supermarket) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sour cream is located at fridge", "pln": ["(: cnet_atlocation_2daad3d59d (AtLocation sour_cream fridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "spa is located at backyard", "pln": ["(: cnet_atlocation_4d652f62cb (AtLocation spa backyard) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "space is located at box", "pln": ["(: cnet_atlocation_9e2ea84ce7 (AtLocation space box) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "space is located at jar", "pln": ["(: cnet_atlocation_1c7a4a8c81 (AtLocation space jar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "space is located at sentence", "pln": ["(: cnet_atlocation_074e46de3a (AtLocation space sentence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "space is located at suitcase", "pln": ["(: cnet_atlocation_cb89450592 (AtLocation space suitcase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "space debris is located at orbit", "pln": ["(: cnet_atlocation_1ba8894dd3 (AtLocation space_debris orbit) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "space junk is located at orbit", "pln": ["(: cnet_atlocation_27c017adf9 (AtLocation space_junk orbit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "space junk is located at space", "pln": ["(: cnet_atlocation_9d48f64643 (AtLocation space_junk space) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "space shuttle is located at orbit", "pln": ["(: cnet_atlocation_47ce2b3c9b (AtLocation space_shuttle orbit) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "space shuttle is located at outerspace", "pln": ["(: cnet_atlocation_afc9ad3d9c (AtLocation space_shuttle outerspace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "space shuttle is located at space", "pln": ["(: cnet_atlocation_8bf7112782 (AtLocation space_shuttle space) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "space suit is located at space shuttle", "pln": ["(: cnet_atlocation_60d5857519 (AtLocation space_suit space_shuttle) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "spaceship is located at space", "pln": ["(: cnet_atlocation_cb669ab152 (AtLocation spaceship space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "spanish restaurant is located at most city", "pln": ["(: cnet_atlocation_d0f3830d2c (AtLocation spanish_restaurant most_city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "spanish restaurant is located at spain", "pln": ["(: cnet_atlocation_e75292be40 (AtLocation spanish_restaurant spain) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "spare change is located at pant pocket", "pln": ["(: cnet_atlocation_6afe4a5894 (AtLocation spare_change pant_pocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "spare change is located at pocket", "pln": ["(: cnet_atlocation_6415c31e6f (AtLocation spare_change pocket) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "spare change is located at sofa cushion", "pln": ["(: cnet_atlocation_4d9483dab7 (AtLocation spare_change sofa_cushion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "spare tire is located at trunk", "pln": ["(: cnet_atlocation_25f08a4432 (AtLocation spare_tire trunk) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "spatula is located at kitchen", "pln": ["(: cnet_atlocation_fd1ce51b66 (AtLocation spatula kitchen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "speaker is located at conference", "pln": ["(: cnet_atlocation_d63fa03658 (AtLocation speaker conference) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "speaker is located at demonstration", "pln": ["(: cnet_atlocation_a0170638b6 (AtLocation speaker demonstration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "spectators is located at show", "pln": ["(: cnet_atlocation_12dfb78ef5 (AtLocation spectators show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "speaker is located at drive in movie", "pln": ["(: cnet_atlocation_aa7444c7a9 (AtLocation speaker drive_in_movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "speaker is located at shelf", "pln": ["(: cnet_atlocation_5bc0ba2cac (AtLocation speaker shelf) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "speaker is located at headphone", "pln": ["(: cnet_atlocation_c25e12eb20 (AtLocation speaker headphone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "spectator is located at show", "pln": ["(: cnet_atlocation_e07071865b (AtLocation spectator show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "spectator is located at soccer game", "pln": ["(: cnet_atlocation_8ad0c2730d (AtLocation spectator soccer_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "spectator is located at sporting event", "pln": ["(: cnet_atlocation_0f32263d95 (AtLocation spectator sporting_event) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "speed limit sign is located at freeway", "pln": ["(: cnet_atlocation_78622abca8 (AtLocation speed_limit_sign freeway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "speeding car is located at freeway", "pln": ["(: cnet_atlocation_c6bf94d7d0 (AtLocation speeding_car freeway) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "spider is located at cellar", "pln": ["(: cnet_atlocation_3c8394ff2a (AtLocation spider cellar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "spider is located at web", "pln": ["(: cnet_atlocation_95a2c6ca04 (AtLocation spider web) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "spider web is located at corner", "pln": ["(: cnet_atlocation_52a0865c4a (AtLocation spider_web corner) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "spigot is located at water fountain", "pln": ["(: cnet_atlocation_f24ad9b783 (AtLocation spigot water_fountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "spiral binding is located at notebook", "pln": ["(: cnet_atlocation_3e4cd31476 (AtLocation spiral_binding notebook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "spirit is located at bar", "pln": ["(: cnet_atlocation_ed38acb833 (AtLocation spirit bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "spirit is located at graveyard", "pln": ["(: cnet_atlocation_e9c8f79659 (AtLocation spirit graveyard) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "spiritual instruction is located at church", "pln": ["(: cnet_atlocation_2483621c44 (AtLocation spiritual_instruction church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "spit is located at mouth", "pln": ["(: cnet_atlocation_e5c498c217 (AtLocation spit mouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "spite is located at jealous person", "pln": ["(: cnet_atlocation_6252fcc726 (AtLocation spite jealous_person) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "spite is located at spiteful person", "pln": ["(: cnet_atlocation_4c5efbdf24 (AtLocation spite spiteful_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sponge is located at bottom of sea", "pln": ["(: cnet_atlocation_01a755398f (AtLocation sponge bottom_of_sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "spoon is located at bowl", "pln": ["(: cnet_atlocation_0f944ce588 (AtLocation spoon bowl) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "spoon is located at dinner", "pln": ["(: cnet_atlocation_f4ce0ddd18 (AtLocation spoon dinner) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sporting event is located at television", "pln": ["(: cnet_atlocation_68eea957ef (AtLocation sporting_event television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sport bat is located at baseball game", "pln": ["(: cnet_atlocation_648790a6bd (AtLocation sport_bat baseball_game) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sport equipment is located at school", "pln": ["(: cnet_atlocation_7039833197 (AtLocation sport_equipment school) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "spray is located at waterfall", "pln": ["(: cnet_atlocation_352d0540ac (AtLocation spray waterfall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "spray hose is located at yard", "pln": ["(: cnet_atlocation_7c6be1a877 (AtLocation spray_hose yard) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "spring binder is located at office supply store", "pln": ["(: cnet_atlocation_5264ba3e33 (AtLocation spring_binder office_supply_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sprinkler is located at lawn", "pln": ["(: cnet_atlocation_7a83773443 (AtLocation sprinkler lawn) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "square is located at geometry", "pln": ["(: cnet_atlocation_d7b21faaa3 (AtLocation square geometry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "square is located at town center", "pln": ["(: cnet_atlocation_ef24bff523 (AtLocation square town_center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "squash is located at farmer s market", "pln": ["(: cnet_atlocation_5956b8c246 (AtLocation squash farmer_s_market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "squash court is located at rich person s house", "pln": ["(: cnet_atlocation_e1607592c1 (AtLocation squash_court rich_person_s_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "stacking chairs is located at auditorium", "pln": ["(: cnet_atlocation_f08afb946e (AtLocation stacking_chairs auditorium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "squirrel is located at forest", "pln": ["(: cnet_atlocation_b108f233e6 (AtLocation squirrel forest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "squirrel is located at tree", "pln": ["(: cnet_atlocation_583266a53f (AtLocation squirrel tree) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "squirrel is located at park", "pln": ["(: cnet_atlocation_9c1fc88fec (AtLocation squirrel park) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stacking chair is located at auditorium", "pln": ["(: cnet_atlocation_408848c4dd (AtLocation stacking_chair auditorium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stadium is located at city", "pln": ["(: cnet_atlocation_65f8364a46 (AtLocation stadium city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stadium is located at large city", "pln": ["(: cnet_atlocation_79ecd7bb22 (AtLocation stadium large_city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stadium stand is located at stadium", "pln": ["(: cnet_atlocation_a1a2064d7c (AtLocation stadium_stand stadium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stage is located at auditorium", "pln": ["(: cnet_atlocation_d16a09c414 (AtLocation stage auditorium) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stage is located at opera", "pln": ["(: cnet_atlocation_9281f7b121 (AtLocation stage opera) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "stage is located at show", "pln": ["(: cnet_atlocation_0832573aeb (AtLocation stage show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stage is located at theatre", "pln": ["(: cnet_atlocation_e22499f66a (AtLocation stage theatre) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stage border is located at theatre", "pln": ["(: cnet_atlocation_e66e3380f3 (AtLocation stage_border theatre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stage curtain is located at theater", "pln": ["(: cnet_atlocation_232109a834 (AtLocation stage_curtain theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stage door is located at theatre", "pln": ["(: cnet_atlocation_6c9ad6817f (AtLocation stage_door theatre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stage entrance is located at theater", "pln": ["(: cnet_atlocation_2855630b4f (AtLocation stage_entrance theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stain is located at rug", "pln": ["(: cnet_atlocation_7502d0ebd1 (AtLocation stain rug) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stained glass window is located at church", "pln": ["(: cnet_atlocation_d6b3d45af4 (AtLocation stained_glass_window church) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "staircase is located at building", "pln": ["(: cnet_atlocation_26b1019381 (AtLocation staircase building) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "staircase is located at mansion", "pln": ["(: cnet_atlocation_4acdbffa0c (AtLocation staircase mansion) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stair is located at apartment", "pln": ["(: cnet_atlocation_19c0da08f9 (AtLocation stair apartment) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stair is located at building", "pln": ["(: cnet_atlocation_d33f43e68e (AtLocation stair building) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stair is located at house", "pln": ["(: cnet_atlocation_ff7860912c (AtLocation stair house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stair down is located at house", "pln": ["(: cnet_atlocation_27a03da2da (AtLocation stair_down house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stair railing is located at stair well", "pln": ["(: cnet_atlocation_eb3d3ebfa4 (AtLocation stair_railing stair_well) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stairwell is located at house", "pln": ["(: cnet_atlocation_55012857fd (AtLocation stairwell house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stale popcorn is located at theatre", "pln": ["(: cnet_atlocation_02beac6544 (AtLocation stale_popcorn theatre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stall is located at barn", "pln": ["(: cnet_atlocation_722edb285b (AtLocation stall barn) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stall is located at bathroom", "pln": ["(: cnet_atlocation_e302eef3a5 (AtLocation stall bathroom) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "stall is located at market", "pln": ["(: cnet_atlocation_fa8772f620 (AtLocation stall market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "stamps is located at desk", "pln": ["(: cnet_atlocation_c35ce209da (AtLocation stamps desk) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stamp is located at mail", "pln": ["(: cnet_atlocation_197323198f (AtLocation stamp mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stamp pad is located at and office", "pln": ["(: cnet_atlocation_e3ecadfd86 (AtLocation stamp_pad and_office) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stamp pad is located at desk", "pln": ["(: cnet_atlocation_2861463fd8 (AtLocation stamp_pad desk) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stamp pad is located at office", "pln": ["(: cnet_atlocation_f019c12f50 (AtLocation stamp_pad office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stamp pad is located at post office", "pln": ["(: cnet_atlocation_4e0ee2bff9 (AtLocation stamp_pad post_office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stamp rack is located at post office", "pln": ["(: cnet_atlocation_a058416037 (AtLocation stamp_rack post_office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stamp is located at desk", "pln": ["(: cnet_atlocation_bd210cc91d (AtLocation stamp desk) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stamp is located at drawer", "pln": ["(: cnet_atlocation_74120c6540 (AtLocation stamp drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stand is located at market", "pln": ["(: cnet_atlocation_c6675e455a (AtLocation stand market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "staple remover is located at desk drawer", "pln": ["(: cnet_atlocation_7b45ca0c10 (AtLocation staple_remover desk_drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "staple remover is located at office", "pln": ["(: cnet_atlocation_a2fa6f044f (AtLocation staple_remover office) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stapler is located at desk", "pln": ["(: cnet_atlocation_e82b97622c (AtLocation stapler desk) (STV 1.0 0.9815))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stapler is located at desk drawer", "pln": ["(: cnet_atlocation_69f822d495 (AtLocation stapler desk_drawer) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "stapler is located at desktop", "pln": ["(: cnet_atlocation_14b4224957 (AtLocation stapler desktop) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "staples is located at stapler", "pln": ["(: cnet_atlocation_182c7ee3d6 (AtLocation staples stapler) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stapler is located at office building", "pln": ["(: cnet_atlocation_9b5277e457 (AtLocation stapler office_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stapler is located at office supply store", "pln": ["(: cnet_atlocation_b0815ffff2 (AtLocation stapler office_supply_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stapler is located at work", "pln": ["(: cnet_atlocation_7f8b58c68a (AtLocation stapler work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stapler is located at cabinet", "pln": ["(: cnet_atlocation_cb2da66f89 (AtLocation stapler cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "staple is located at desk", "pln": ["(: cnet_atlocation_624f1d3875 (AtLocation staple desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "staple is located at office", "pln": ["(: cnet_atlocation_88c57b0652 (AtLocation staple office) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "staple is located at pantry", "pln": ["(: cnet_atlocation_c3e47e3596 (AtLocation staple pantry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "staple is located at stapler", "pln": ["(: cnet_atlocation_c6ae9774d1 (AtLocation staple stapler) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "star is located at center of black hole", "pln": ["(: cnet_atlocation_3095ddeb13 (AtLocation star center_of_black_hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "star is located at galaxy", "pln": ["(: cnet_atlocation_c7ddbc8095 (AtLocation star galaxy) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "star is located at night sky", "pln": ["(: cnet_atlocation_a7d3cca152 (AtLocation star night_sky) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "star is located at outer space", "pln": ["(: cnet_atlocation_f30f57de96 (AtLocation star outer_space) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "star is located at outerspace", "pln": ["(: cnet_atlocation_595979d83a (AtLocation star outerspace) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "star is located at sky", "pln": ["(: cnet_atlocation_c5eb59edf5 (AtLocation star sky) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "star is located at space", "pln": ["(: cnet_atlocation_3a4089daa1 (AtLocation star space) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "starfish is located at ocean", "pln": ["(: cnet_atlocation_08807889ff (AtLocation starfish ocean) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "starfish is located at sea", "pln": ["(: cnet_atlocation_f3df2d8de7 (AtLocation starfish sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "star is located at universe", "pln": ["(: cnet_atlocation_a8ea3e2000 (AtLocation star universe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "state is located at country", "pln": ["(: cnet_atlocation_978ef4d5b0 (AtLocation state country) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "state highway is located at state", "pln": ["(: cnet_atlocation_251b3ef657 (AtLocation state_highway state) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "state highway is located at united state", "pln": ["(: cnet_atlocation_d74b2109ce (AtLocation state_highway united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "statement is located at newspaper", "pln": ["(: cnet_atlocation_f1d8cf09e4 (AtLocation statement newspaper) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stationary is located at desk", "pln": ["(: cnet_atlocation_b0ef948bf2 (AtLocation stationary desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "statue is located at church", "pln": ["(: cnet_atlocation_7b5168e602 (AtLocation statue church) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "statue is located at museum", "pln": ["(: cnet_atlocation_7eb110c2ae (AtLocation statue museum) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "statue is located at park", "pln": ["(: cnet_atlocation_cdad435040 (AtLocation statue park) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "steak is located at freezer", "pln": ["(: cnet_atlocation_b721c14978 (AtLocation steak freezer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "steak is located at grill", "pln": ["(: cnet_atlocation_d1b0604295 (AtLocation steak grill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "steak is located at plate", "pln": ["(: cnet_atlocation_4985c28e49 (AtLocation steak plate) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "steak and egg is located at plate", "pln": ["(: cnet_atlocation_677e0bf629 (AtLocation steak_and_egg plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "steak house is located at city", "pln": ["(: cnet_atlocation_34d02dc5d2 (AtLocation steak_house city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "steakhouse is located at city", "pln": ["(: cnet_atlocation_fe487bd47c (AtLocation steakhouse city) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "steel is located at building", "pln": ["(: cnet_atlocation_a4e78f3426 (AtLocation steel building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "steel is located at car frame", "pln": ["(: cnet_atlocation_d447a215e8 (AtLocation steel car_frame) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "steel cable is located at ground", "pln": ["(: cnet_atlocation_8aff9f0f72 (AtLocation steel_cable ground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "steel cable is located at suspension bridge", "pln": ["(: cnet_atlocation_aed622fe9c (AtLocation steel_cable suspension_bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "steel wool pad is located at kitchen", "pln": ["(: cnet_atlocation_ad6f4bb327 (AtLocation steel_wool_pad kitchen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "steeple is located at church", "pln": ["(: cnet_atlocation_39c2b1a4f5 (AtLocation steeple church) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "steering wheel is located at bus", "pln": ["(: cnet_atlocation_696fe68a23 (AtLocation steering_wheel bus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "step chair is located at garage", "pln": ["(: cnet_atlocation_77f0fbf5f1 (AtLocation step_chair garage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "step chair is located at house", "pln": ["(: cnet_atlocation_7cd8ce4131 (AtLocation step_chair house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stepladder is located at hardware store", "pln": ["(: cnet_atlocation_aca3c5da6f (AtLocation stepladder hardware_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stereo is located at car", "pln": ["(: cnet_atlocation_b8e559b1fa (AtLocation stereo car) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stethescope is located at doctor", "pln": ["(: cnet_atlocation_045ab2bd6f (AtLocation stethescope doctor) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stethoscope is located at doctor s office", "pln": ["(: cnet_atlocation_4e01781a96 (AtLocation stethoscope doctor_s_office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "stethoscope is located at doctor", "pln": ["(: cnet_atlocation_677eb3f716 (AtLocation stethoscope doctor) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "stick is located at forest", "pln": ["(: cnet_atlocation_b27c4db8a6 (AtLocation stick forest) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "storage items is located at closet", "pln": ["(: cnet_atlocation_651b4a493c (AtLocation storage_items closet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stick eraser is located at desk drawer", "pln": ["(: cnet_atlocation_006b06f935 (AtLocation stick_eraser desk_drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stick eraser is located at office supply store", "pln": ["(: cnet_atlocation_83b7c72ecd (AtLocation stick_eraser office_supply_store) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stick of butter is located at fridge", "pln": ["(: cnet_atlocation_aa7cb991f5 (AtLocation stick_of_butter fridge) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sticking plaster is located at hospital", "pln": ["(: cnet_atlocation_f198b60f1c (AtLocation sticking_plaster hospital) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sticky floor is located at theater", "pln": ["(: cnet_atlocation_59028af72b (AtLocation sticky_floor theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sticky pad is located at desk", "pln": ["(: cnet_atlocation_14e0475826 (AtLocation sticky_pad desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stiff is located at funeral", "pln": ["(: cnet_atlocation_63faab7170 (AtLocation stiff funeral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stone is located at river", "pln": ["(: cnet_atlocation_2a806d927d (AtLocation stone river) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stone is located at bridge", "pln": ["(: cnet_atlocation_8a088cc51c (AtLocation stone bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stool is located at bar", "pln": ["(: cnet_atlocation_762296d3a2 (AtLocation stool bar) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stop is located at organ", "pln": ["(: cnet_atlocation_c9f2953cc0 (AtLocation stop organ) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stop light is located at corner of two street", "pln": ["(: cnet_atlocation_385a5fc2ae (AtLocation stop_light corner_of_two_street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stop sign is located at corner of two street", "pln": ["(: cnet_atlocation_a913dedfc4 (AtLocation stop_sign corner_of_two_street) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stop sign is located at fork in road", "pln": ["(: cnet_atlocation_12c383e47f (AtLocation stop_sign fork_in_road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stop sign is located at street corner", "pln": ["(: cnet_atlocation_c9f397599a (AtLocation stop_sign street_corner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "storage item is located at closet", "pln": ["(: cnet_atlocation_ff22efc53a (AtLocation storage_item closet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "store is located at town", "pln": ["(: cnet_atlocation_9fa23c6d81 (AtLocation store town) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "store refrigerator is located at deli", "pln": ["(: cnet_atlocation_bb32847075 (AtLocation store_refrigerator deli) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "store refrigerator is located at store", "pln": ["(: cnet_atlocation_e94cf5645f (AtLocation store_refrigerator store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "store refrigerator is located at supermarket", "pln": ["(: cnet_atlocation_70975335b0 (AtLocation store_refrigerator supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "store shelf is located at convienence store", "pln": ["(: cnet_atlocation_0c9a9848e6 (AtLocation store_shelf convienence_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "store shelf is located at stores", "pln": ["(: cnet_atlocation_544baf2f01 (AtLocation store_shelf stores) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "store shelf is located at store", "pln": ["(: cnet_atlocation_432fb3fb96 (AtLocation store_shelf store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stored item is located at container", "pln": ["(: cnet_atlocation_3b8566b81b (AtLocation stored_item container) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "stored item is located at shelf", "pln": ["(: cnet_atlocation_5be9f91a12 (AtLocation stored_item shelf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "store is located at city", "pln": ["(: cnet_atlocation_9d1361df08 (AtLocation store city) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "storey is located at building", "pln": ["(: cnet_atlocation_46c88660bf (AtLocation storey building) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "storm is located at america", "pln": ["(: cnet_atlocation_033e6fab41 (AtLocation storm america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "storm is located at summer", "pln": ["(: cnet_atlocation_9a0334a21e (AtLocation storm summer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "storm is located at tropic", "pln": ["(: cnet_atlocation_236dbfc10d (AtLocation storm tropic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "storm is located at sea", "pln": ["(: cnet_atlocation_ed4c065bb7 (AtLocation storm sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "story is located at newspaper", "pln": ["(: cnet_atlocation_adf828550e (AtLocation story newspaper) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "street sweepers is located at street", "pln": ["(: cnet_atlocation_6e94778b2e (AtLocation street_sweepers street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stove is located at house", "pln": ["(: cnet_atlocation_ebee53b1a8 (AtLocation stove house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "straw is located at fast food restaurant", "pln": ["(: cnet_atlocation_fd92aa4e04 (AtLocation straw fast_food_restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stream is located at forest", "pln": ["(: cnet_atlocation_45e62a6513 (AtLocation stream forest) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stream is located at wood", "pln": ["(: cnet_atlocation_5c1b68f507 (AtLocation stream wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "street is located at street corner", "pln": ["(: cnet_atlocation_c5eb839aa1 (AtLocation street street_corner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "street drain is located at street", "pln": ["(: cnet_atlocation_401a7f322f (AtLocation street_drain street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "street sign is located at street corner", "pln": ["(: cnet_atlocation_752d5bdac4 (AtLocation street_sign street_corner) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "street sweeper is located at street", "pln": ["(: cnet_atlocation_314f485b1a (AtLocation street_sweeper street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "streetlight is located at street", "pln": ["(: cnet_atlocation_124a50041b (AtLocation streetlight street) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "streetsign is located at street corner", "pln": ["(: cnet_atlocation_5a219f2d34 (AtLocation streetsign street_corner) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "string is located at guitar", "pln": ["(: cnet_atlocation_5e33901814 (AtLocation string guitar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "string bass is located at music shop", "pln": ["(: cnet_atlocation_0abaa8bbde (AtLocation string_bass music_shop) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "string bass is located at orchestra", "pln": ["(: cnet_atlocation_67f149ed2e (AtLocation string_bass orchestra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stringed instrument is located at band", "pln": ["(: cnet_atlocation_826fb679d4 (AtLocation stringed_instrument band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "strip mall is located at city", "pln": ["(: cnet_atlocation_e3eca1cec4 (AtLocation strip_mall city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "strip mall is located at suburb", "pln": ["(: cnet_atlocation_0c0952106f (AtLocation strip_mall suburb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stripper is located at strip club", "pln": ["(: cnet_atlocation_c1dc49ee49 (AtLocation stripper strip_club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "student s head is located at desk", "pln": ["(: cnet_atlocation_9cc88f797a (AtLocation student_s_head desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "student is located at classroom", "pln": ["(: cnet_atlocation_4e762b0d30 (AtLocation student classroom) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "student is located at college", "pln": ["(: cnet_atlocation_ebbb164d67 (AtLocation student college) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "student is located at college class", "pln": ["(: cnet_atlocation_71176dbaeb (AtLocation student college_class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "student is located at library", "pln": ["(: cnet_atlocation_f0886b84d8 (AtLocation student library) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "student is located at university", "pln": ["(: cnet_atlocation_3e921f8bf4 (AtLocation student university) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "student is located at homeschool", "pln": ["(: cnet_atlocation_e88f2eff2e (AtLocation student homeschool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "student is located at school", "pln": ["(: cnet_atlocation_c5379eae1b (AtLocation student school) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "study is located at large house", "pln": ["(: cnet_atlocation_e1c4b2dbc2 (AtLocation study large_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "study is located at mansion", "pln": ["(: cnet_atlocation_36ad464969 (AtLocation study mansion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stuff to make cooky is located at cupboard", "pln": ["(: cnet_atlocation_6eaa82b74a (AtLocation stuff_to_make_cooky cupboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stuffed animal is located at child s bedroom", "pln": ["(: cnet_atlocation_9c723c1674 (AtLocation stuffed_animal child_s_bedroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "stuffed animal is located at toy store", "pln": ["(: cnet_atlocation_e05365ea69 (AtLocation stuffed_animal toy_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "submarine is located at ocean", "pln": ["(: cnet_atlocation_081b9c645f (AtLocation submarine ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "submarine is located at water", "pln": ["(: cnet_atlocation_2f0c327755 (AtLocation submarine water) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "suburban shopping mall is located at united state", "pln": ["(: cnet_atlocation_0783b1a7d0 (AtLocation suburban_shopping_mall united_state) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "subway map is located at subway station", "pln": ["(: cnet_atlocation_2833330c4b (AtLocation subway_map subway_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "subway pass is located at pocket", "pln": ["(: cnet_atlocation_4fb35c17b1 (AtLocation subway_pass pocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "subway pass is located at purse", "pln": ["(: cnet_atlocation_ecaca0a1ee (AtLocation subway_pass purse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "subway pass is located at wallet", "pln": ["(: cnet_atlocation_7b880fcf0f (AtLocation subway_pass wallet) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "subway platform is located at new york city", "pln": ["(: cnet_atlocation_68381c0751 (AtLocation subway_platform new_york_city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "subway platform is located at subway station", "pln": ["(: cnet_atlocation_d07851b5a5 (AtLocation subway_platform subway_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "subway station is located at big city", "pln": ["(: cnet_atlocation_bfd83fd473 (AtLocation subway_station big_city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "subway station is located at city", "pln": ["(: cnet_atlocation_ac6ec0dd1c (AtLocation subway_station city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "subway station is located at london", "pln": ["(: cnet_atlocation_1c01c11a4c (AtLocation subway_station london) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "subway station is located at new york", "pln": ["(: cnet_atlocation_86dbae0dfd (AtLocation subway_station new_york) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "subway stop is located at new york city", "pln": ["(: cnet_atlocation_0b9fdbf040 (AtLocation subway_stop new_york_city) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "subway token is located at subway", "pln": ["(: cnet_atlocation_7112eadeb4 (AtLocation subway_token subway) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sugar is located at coffee", "pln": ["(: cnet_atlocation_03387d1a8b (AtLocation sugar coffee) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sugar is located at cupboard", "pln": ["(: cnet_atlocation_2d3e40a395 (AtLocation sugar cupboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "sugar is located at sugar bowl", "pln": ["(: cnet_atlocation_8a8c571457 (AtLocation sugar sugar_bowl) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "suit is located at suitcase", "pln": ["(: cnet_atlocation_4f4165ca52 (AtLocation suit suitcase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "suite is located at hotel", "pln": ["(: cnet_atlocation_a25510b55d (AtLocation suite hotel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "suit is located at closet", "pln": ["(: cnet_atlocation_0539c4bcbd (AtLocation suit closet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sulfur is located at chemistry lab", "pln": ["(: cnet_atlocation_48ba7b3718 (AtLocation sulfur chemistry_lab) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "summit is located at top of mountain", "pln": ["(: cnet_atlocation_b9698b94e3 (AtLocation summit top_of_mountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sun is located at center of solar system", "pln": ["(: cnet_atlocation_fae09c371e (AtLocation sun center_of_solar_system) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sun is located at solar system", "pln": ["(: cnet_atlocation_5298b4b147 (AtLocation sun solar_system) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sun is located at universe", "pln": ["(: cnet_atlocation_e38eb7bbf3 (AtLocation sun universe) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "sun bather is located at beach", "pln": ["(: cnet_atlocation_acc40e32a1 (AtLocation sun_bather beach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sunburned people is located at beach", "pln": ["(: cnet_atlocation_dea19493d3 (AtLocation sunburned_people beach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sunken ship is located at bottom of sea", "pln": ["(: cnet_atlocation_be1a435b3a (AtLocation sunken_ship bottom_of_sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "sunken treasure is located at bottom of sea", "pln": ["(: cnet_atlocation_e9af56d412 (AtLocation sunken_treasure bottom_of_sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sunlight is located at suface of moon", "pln": ["(: cnet_atlocation_74aee61ca8 (AtLocation sunlight suface_of_moon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sunscreen is located at beach", "pln": ["(: cnet_atlocation_cceb7ac315 (AtLocation sunscreen beach) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sunshine is located at beach", "pln": ["(: cnet_atlocation_b5319dc921 (AtLocation sunshine beach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sunshine is located at summer", "pln": ["(: cnet_atlocation_015879faf3 (AtLocation sunshine summer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sunspot is located at sun", "pln": ["(: cnet_atlocation_e2043176bf (AtLocation sunspot sun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "superhighway is located at america", "pln": ["(: cnet_atlocation_b16b05f95f (AtLocation superhighway america) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "superhighway is located at city", "pln": ["(: cnet_atlocation_42293640c8 (AtLocation superhighway city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "supermarket is located at city", "pln": ["(: cnet_atlocation_953c12bd35 (AtLocation supermarket city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "surface is located at geometry", "pln": ["(: cnet_atlocation_ac7f65063c (AtLocation surface geometry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "surface is located at lake", "pln": ["(: cnet_atlocation_8833ca363e (AtLocation surface lake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "suspension cable is located at bridge", "pln": ["(: cnet_atlocation_b38146451e (AtLocation suspension_cable bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "suspension cable is located at suspension bridge", "pln": ["(: cnet_atlocation_521f61cec6 (AtLocation suspension_cable suspension_bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "swamp is located at bayoo", "pln": ["(: cnet_atlocation_e94c13524b (AtLocation swamp bayoo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "swamp is located at louisiana", "pln": ["(: cnet_atlocation_f122b06ea8 (AtLocation swamp louisiana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sweater is located at drawer", "pln": ["(: cnet_atlocation_84cd72491f (AtLocation sweater drawer) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "swimmer is located at swimming pool", "pln": ["(: cnet_atlocation_48b2df0aeb (AtLocation swimmer swimming_pool) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "swimming pool is located at backyard", "pln": ["(: cnet_atlocation_a4b349b4d3 (AtLocation swimming_pool backyard) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "swimming pool is located at fitness center", "pln": ["(: cnet_atlocation_778d74a47d (AtLocation swimming_pool fitness_center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "swimming pool is located at motel", "pln": ["(: cnet_atlocation_bb546df7b3 (AtLocation swimming_pool motel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "swimming pool is located at school", "pln": ["(: cnet_atlocation_9aa8250967 (AtLocation swimming_pool school) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "swing is located at porch", "pln": ["(: cnet_atlocation_b22db2a6bf (AtLocation swing porch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "swing set is located at park", "pln": ["(: cnet_atlocation_88276368c4 (AtLocation swing_set park) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "swingset is located at park", "pln": ["(: cnet_atlocation_9d5767a537 (AtLocation swingset park) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sword is located at museum", "pln": ["(: cnet_atlocation_c817e0d46f (AtLocation sword museum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "sword is located at sheath", "pln": ["(: cnet_atlocation_dfe639dd82 (AtLocation sword sheath) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "symphony hall is located at city s downtown", "pln": ["(: cnet_atlocation_c1c6642248 (AtLocation symphony_hall city_s_downtown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "symphony hall is located at city", "pln": ["(: cnet_atlocation_b2435a381c (AtLocation symphony_hall city) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "symphony hall is located at large city", "pln": ["(: cnet_atlocation_552c10b6fb (AtLocation symphony_hall large_city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "syringe is located at doctor", "pln": ["(: cnet_atlocation_b91e0a0a28 (AtLocation syringe doctor) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "syrup is located at waffle", "pln": ["(: cnet_atlocation_1c8c9c319d (AtLocation syrup waffle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "t shirt is located at chest of drawer", "pln": ["(: cnet_atlocation_bf6c065c5e (AtLocation t_shirt chest_of_drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "t shirt is located at closet", "pln": ["(: cnet_atlocation_91a8485d42 (AtLocation t_shirt closet) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "t shirt is located at dresser drawer", "pln": ["(: cnet_atlocation_5e319e0a56 (AtLocation t_shirt dresser_drawer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "t shirt is located at laundry", "pln": ["(: cnet_atlocation_dabf4cd67f (AtLocation t_shirt laundry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "t shirt is located at souvenir shop", "pln": ["(: cnet_atlocation_7a79ddba50 (AtLocation t_shirt souvenir_shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "t shirt is located at t shirt drawer", "pln": ["(: cnet_atlocation_09192f4350 (AtLocation t_shirt t_shirt_drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "t shirt is located at tourist shop", "pln": ["(: cnet_atlocation_f36923dda8 (AtLocation t_shirt tourist_shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "t shirt is located at concert", "pln": ["(: cnet_atlocation_1b00971762 (AtLocation t_shirt concert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tab is located at bar", "pln": ["(: cnet_atlocation_bc8f2dd642 (AtLocation tab bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tabby cat is located at home", "pln": ["(: cnet_atlocation_1c51dc334d (AtLocation tabby_cat home) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tabby cat is located at lap", "pln": ["(: cnet_atlocation_760b462c71 (AtLocation tabby_cat lap) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "table is located at apartment", "pln": ["(: cnet_atlocation_467a824f54 (AtLocation table apartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "table is located at conference", "pln": ["(: cnet_atlocation_76c26a92a1 (AtLocation table conference) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "table is located at corner", "pln": ["(: cnet_atlocation_c707705b95 (AtLocation table corner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "table is located at demonstration", "pln": ["(: cnet_atlocation_63036b14a5 (AtLocation table demonstration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "table is located at dining room", "pln": ["(: cnet_atlocation_a1a2d1dc8e (AtLocation table dining_room) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "table is located at furniture store", "pln": ["(: cnet_atlocation_f78750f5b3 (AtLocation table furniture_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "table is located at house", "pln": ["(: cnet_atlocation_65b584516a (AtLocation table house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "table is located at kitchen", "pln": ["(: cnet_atlocation_92ce1ec038 (AtLocation table kitchen) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "table is located at library", "pln": ["(: cnet_atlocation_a2e0965549 (AtLocation table library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "table is located at resturant", "pln": ["(: cnet_atlocation_9caa30ba36 (AtLocation table resturant) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "table is located at room", "pln": ["(: cnet_atlocation_1be127775d (AtLocation table room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "table is located at rug", "pln": ["(: cnet_atlocation_34dccacf4b (AtLocation table rug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "table cloth is located at table", "pln": ["(: cnet_atlocation_0c30ba2f43 (AtLocation table_cloth table) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "tables is located at resturant", "pln": ["(: cnet_atlocation_b778e35f5f (AtLocation tables resturant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "table leg is located at table", "pln": ["(: cnet_atlocation_18776b38d4 (AtLocation table_leg table) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tablecloth is located at linen closet", "pln": ["(: cnet_atlocation_81dacb0e06 (AtLocation tablecloth linen_closet) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tablecloth is located at table", "pln": ["(: cnet_atlocation_335adbf5c8 (AtLocation tablecloth table) (STV 1.0 0.9756))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tablecloth covering is located at table", "pln": ["(: cnet_atlocation_7eae400ba8 (AtLocation tablecloth_covering table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "table and chair is located at conference", "pln": ["(: cnet_atlocation_fdc8a4a5af (AtLocation table_and_chair conference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tablespoon is located at kitchen", "pln": ["(: cnet_atlocation_a7d93f9c49 (AtLocation tablespoon kitchen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tablespoon is located at kitchen drawer", "pln": ["(: cnet_atlocation_73ec6dbdc6 (AtLocation tablespoon kitchen_drawer) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tabloid magazine is located at supermarket", "pln": ["(: cnet_atlocation_a97e0e59f5 (AtLocation tabloid_magazine supermarket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tack is located at carpet", "pln": ["(: cnet_atlocation_357cb66146 (AtLocation tack carpet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tack is located at cork board", "pln": ["(: cnet_atlocation_effa7cb987 (AtLocation tack cork_board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tack is located at wall", "pln": ["(: cnet_atlocation_feea044c1a (AtLocation tack wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "taco is located at fast food restaurant", "pln": ["(: cnet_atlocation_6bba71fee7 (AtLocation taco fast_food_restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tadpole is located at water", "pln": ["(: cnet_atlocation_b89b0ab80d (AtLocation tadpole water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tampon is located at purse", "pln": ["(: cnet_atlocation_93c23a628d (AtLocation tampon purse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tank is located at military base", "pln": ["(: cnet_atlocation_f6f4eedff9 (AtLocation tank military_base) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tank is located at war", "pln": ["(: cnet_atlocation_3c8eabbcda (AtLocation tank war) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "tanning lotion is located at beach bag", "pln": ["(: cnet_atlocation_2718c1709c (AtLocation tanning_lotion beach_bag) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tanning lotion is located at supermarket", "pln": ["(: cnet_atlocation_d05d15140e (AtLocation tanning_lotion supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tap is located at bathroom", "pln": ["(: cnet_atlocation_da44e49064 (AtLocation tap bathroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tape dispenser is located at desk", "pln": ["(: cnet_atlocation_bd924c3b38 (AtLocation tape_dispenser desk) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tape dispenser is located at office", "pln": ["(: cnet_atlocation_9d71b8721a (AtLocation tape_dispenser office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tarmac is located at airport", "pln": ["(: cnet_atlocation_59d2d5a83a (AtLocation tarmac airport) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "taste bud is located at mouth", "pln": ["(: cnet_atlocation_3d386a0630 (AtLocation taste_bud mouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "taste bud on tongue is located at mouth", "pln": ["(: cnet_atlocation_4a428041d7 (AtLocation taste_bud_on_tongue mouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tastebud is located at mouth", "pln": ["(: cnet_atlocation_aa5f0dbe99 (AtLocation tastebud mouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tax paperwork is located at home", "pln": ["(: cnet_atlocation_efd3257fda (AtLocation tax_paperwork home) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "taxi is located at airport", "pln": ["(: cnet_atlocation_e341788400 (AtLocation taxi airport) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "taxi is located at train station", "pln": ["(: cnet_atlocation_fcd9a88d92 (AtLocation taxi train_station) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "taxis is located at city", "pln": ["(: cnet_atlocation_f5a9b7dd99 (AtLocation taxis city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "taxiway is located at airport", "pln": ["(: cnet_atlocation_ff8aeb4718 (AtLocation taxiway airport) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "taxiway is located at city", "pln": ["(: cnet_atlocation_62928fccb6 (AtLocation taxiway city) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "taxiway turn off is located at city", "pln": ["(: cnet_atlocation_cf7ea8ce48 (AtLocation taxiway_turn_off city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "tea is located at cupboard", "pln": ["(: cnet_atlocation_783986162c (AtLocation tea cupboard) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "teacher aides is located at classroom", "pln": ["(: cnet_atlocation_9a4b524727 (AtLocation teacher_aides classroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "teacher is located at classroom", "pln": ["(: cnet_atlocation_d94af08ba0 (AtLocation teacher classroom) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "teacher aide is located at classroom", "pln": ["(: cnet_atlocation_077cc9ebe6 (AtLocation teacher_aide classroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "teacher lounge is located at school", "pln": ["(: cnet_atlocation_3fa8700781 (AtLocation teacher_lounge school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "teakettle is located at japanese tea room", "pln": ["(: cnet_atlocation_973afe402a (AtLocation teakettle japanese_tea_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "team is located at soccer game", "pln": ["(: cnet_atlocation_57a5014a61 (AtLocation team soccer_game) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tear gas is located at demonstration", "pln": ["(: cnet_atlocation_1657f6d35b (AtLocation tear_gas demonstration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tearoom is located at building", "pln": ["(: cnet_atlocation_432211c163 (AtLocation tearoom building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tearoom is located at england", "pln": ["(: cnet_atlocation_811771492e (AtLocation tearoom england) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tearoom is located at london", "pln": ["(: cnet_atlocation_07d9d18df3 (AtLocation tearoom london) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "teaspoon is located at coffee cup", "pln": ["(: cnet_atlocation_16c30eea75 (AtLocation teaspoon coffee_cup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "teaspoon is located at kitchen", "pln": ["(: cnet_atlocation_98dbf9c3d3 (AtLocation teaspoon kitchen) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "technician and nerd is located at laboratory", "pln": ["(: cnet_atlocation_85121acc9d (AtLocation technician_and_nerd laboratory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "teddy bear is located at shelf", "pln": ["(: cnet_atlocation_b9255d6287 (AtLocation teddy_bear shelf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "teddy bear is located at toy store", "pln": ["(: cnet_atlocation_a8b23ddb5b (AtLocation teddy_bear toy_store) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "teenager is located at high school", "pln": ["(: cnet_atlocation_ff91a7a2fa (AtLocation teenager high_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "teenager is located at mall", "pln": ["(: cnet_atlocation_690d2e584e (AtLocation teenager mall) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "teeth is located at mouth", "pln": ["(: cnet_atlocation_dcfac935b1 (AtLocation teeth mouth) (STV 1.0 0.9776))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "telephone is located at desk", "pln": ["(: cnet_atlocation_c38a87e97f (AtLocation telephone desk) (STV 1.0 0.9791))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "telephone is located at desktop", "pln": ["(: cnet_atlocation_d0548496cf (AtLocation telephone desktop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "telephone is located at friend s house", "pln": ["(: cnet_atlocation_edec70fcfa (AtLocation telephone friend_s_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "telephone is located at hotel", "pln": ["(: cnet_atlocation_1fe6199061 (AtLocation telephone hotel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "telephone is located at office", "pln": ["(: cnet_atlocation_136518da2f (AtLocation telephone office) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "telephone is located at phone booth", "pln": ["(: cnet_atlocation_10134b90f6 (AtLocation telephone phone_booth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "telephone book is located at at hotel", "pln": ["(: cnet_atlocation_5667388058 (AtLocation telephone_book at_hotel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "telephone book is located at telephone booth", "pln": ["(: cnet_atlocation_650ca04c07 (AtLocation telephone_book telephone_booth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "telephone booth is located at city", "pln": ["(: cnet_atlocation_3e707a34ad (AtLocation telephone_booth city) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "telephone booth is located at gas station", "pln": ["(: cnet_atlocation_6528f18466 (AtLocation telephone_booth gas_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "telephone booth is located at london", "pln": ["(: cnet_atlocation_6136195e5e (AtLocation telephone_booth london) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "telephone box is located at london", "pln": ["(: cnet_atlocation_e6801f84e0 (AtLocation telephone_box london) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "telephone directory is located at office", "pln": ["(: cnet_atlocation_3c82b3f66a (AtLocation telephone_directory office) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "telephone directory is located at phone booth", "pln": ["(: cnet_atlocation_be6d73fe37 (AtLocation telephone_directory phone_booth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "telephone index is located at office", "pln": ["(: cnet_atlocation_0f6511168b (AtLocation telephone_index office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "telephone index is located at phone book", "pln": ["(: cnet_atlocation_5ee4f5362c (AtLocation telephone_index phone_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "telephone index is located at telephone book", "pln": ["(: cnet_atlocation_f33bc27a31 (AtLocation telephone_index telephone_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "telephone number is located at telephone book", "pln": ["(: cnet_atlocation_9612b59c96 (AtLocation telephone_number telephone_book) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "television is located at living room", "pln": ["(: cnet_atlocation_d3eaf615de (AtLocation television living_room) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "television program is located at television", "pln": ["(: cnet_atlocation_fc9ac67981 (AtLocation television_program television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "television set is located at store", "pln": ["(: cnet_atlocation_e2b67b2bb8 (AtLocation television_set store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "television show is located at television", "pln": ["(: cnet_atlocation_2d2cbd4260 (AtLocation television_show television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "teller is located at train station", "pln": ["(: cnet_atlocation_90f2984bab (AtLocation teller train_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "temperature record is located at newspaper", "pln": ["(: cnet_atlocation_c08f864c6d (AtLocation temperature_record newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "temple is located at china", "pln": ["(: cnet_atlocation_eadf2c291a (AtLocation temple china) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "temple is located at india", "pln": ["(: cnet_atlocation_7c949badc6 (AtLocation temple india) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "temple is located at jerusalem", "pln": ["(: cnet_atlocation_6fb04de5db (AtLocation temple jerusalem) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tenant is located at apartment", "pln": ["(: cnet_atlocation_2c84272b67 (AtLocation tenant apartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tennis court is located at park", "pln": ["(: cnet_atlocation_ba85442198 (AtLocation tennis_court park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "tennis game is located at tennis court", "pln": ["(: cnet_atlocation_4de4fde3f2 (AtLocation tennis_game tennis_court) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "tenor is located at choir", "pln": ["(: cnet_atlocation_6c0bf565a4 (AtLocation tenor choir) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "test tubes is located at chemistry lab", "pln": ["(: cnet_atlocation_6eca594b43 (AtLocation test_tubes chemistry_lab) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tenor is located at opera", "pln": ["(: cnet_atlocation_7aca098cf0 (AtLocation tenor opera) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "terminal is located at airport", "pln": ["(: cnet_atlocation_d6baea4b61 (AtLocation terminal airport) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "terrace is located at architecture", "pln": ["(: cnet_atlocation_b20bcfbd82 (AtLocation terrace architecture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "terrace is located at building", "pln": ["(: cnet_atlocation_1d2b389373 (AtLocation terrace building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "terrace is located at house", "pln": ["(: cnet_atlocation_0ae2339da9 (AtLocation terrace house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "terrorist is located at airport", "pln": ["(: cnet_atlocation_5c10491aa1 (AtLocation terrorist airport) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "test equipment is located at laboratory", "pln": ["(: cnet_atlocation_f26cce3fe1 (AtLocation test_equipment laboratory) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "test tube is located at chemistry lab", "pln": ["(: cnet_atlocation_c5d0120fc5 (AtLocation test_tube chemistry_lab) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "test tube is located at laboratory", "pln": ["(: cnet_atlocation_906daaa6d9 (AtLocation test_tube laboratory) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "text is located at library", "pln": ["(: cnet_atlocation_e4a379d508 (AtLocation text library) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "text is located at newspaper", "pln": ["(: cnet_atlocation_55fac9a7c5 (AtLocation text newspaper) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "text book is located at school", "pln": ["(: cnet_atlocation_a659b5bab2 (AtLocation text_book school) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "textbook is located at locker", "pln": ["(: cnet_atlocation_1742f60ad6 (AtLocation textbook locker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "textile is located at fabric store", "pln": ["(: cnet_atlocation_c51d239a9a (AtLocation textile fabric_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "textile is located at factory", "pln": ["(: cnet_atlocation_9aa0de46c6 (AtLocation textile factory) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "thatch is located at roof", "pln": ["(: cnet_atlocation_c92d9821e5 (AtLocation thatch roof) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "thc is located at cannabis", "pln": ["(: cnet_atlocation_99660573f5 (AtLocation thc cannabis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "theater is located at city", "pln": ["(: cnet_atlocation_65dea5aeab (AtLocation theater city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "theater box is located at theater", "pln": ["(: cnet_atlocation_6280380987 (AtLocation theater_box theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "theater hall is located at big city", "pln": ["(: cnet_atlocation_62931fe2f8 (AtLocation theater_hall big_city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "tigers is located at zoo", "pln": ["(: cnet_atlocation_919685b8e8 (AtLocation tigers zoo) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "theater hall is located at city", "pln": ["(: cnet_atlocation_984957a771 (AtLocation theater_hall city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "theater hall is located at most city", "pln": ["(: cnet_atlocation_2952ad9616 (AtLocation theater_hall most_city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "theater hall is located at school", "pln": ["(: cnet_atlocation_5d1df663b9 (AtLocation theater_hall school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "theater hall is located at university", "pln": ["(: cnet_atlocation_c2cab93bf3 (AtLocation theater_hall university) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "theater ticket is located at box office", "pln": ["(: cnet_atlocation_a2cd180a02 (AtLocation theater_ticket box_office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "theater ticket is located at pocket", "pln": ["(: cnet_atlocation_2be3d7d41d (AtLocation theater_ticket pocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "theatre is located at mall", "pln": ["(: cnet_atlocation_e3cb6644a6 (AtLocation theatre mall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "thermometer is located at doctor", "pln": ["(: cnet_atlocation_c5e3d5e544 (AtLocation thermometer doctor) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "thespian is located at theater", "pln": ["(: cnet_atlocation_c2938ee969 (AtLocation thespian theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "thief is located at jail", "pln": ["(: cnet_atlocation_3753f6ec02 (AtLocation thief jail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "thin air is located at top of mountain", "pln": ["(: cnet_atlocation_07bb37a7e0 (AtLocation thin_air top_of_mountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "thirsty people is located at water fountain", "pln": ["(: cnet_atlocation_c04d12408b (AtLocation thirsty_people water_fountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "thirsty person is located at water fountain", "pln": ["(: cnet_atlocation_5388e75a06 (AtLocation thirsty_person water_fountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "thumb tack is located at cork board", "pln": ["(: cnet_atlocation_823c5421f7 (AtLocation thumb_tack cork_board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tick is located at meadow", "pln": ["(: cnet_atlocation_01c1a594b7 (AtLocation tick meadow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ticket is located at movie", "pln": ["(: cnet_atlocation_72df74ae63 (AtLocation ticket movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ticket is located at pocket", "pln": ["(: cnet_atlocation_58b90d30b1 (AtLocation ticket pocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ticket is located at train station", "pln": ["(: cnet_atlocation_74fe2d0f95 (AtLocation ticket train_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ticket agent is located at airport", "pln": ["(: cnet_atlocation_5f72480d63 (AtLocation ticket_agent airport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ticket booth is located at auditorium", "pln": ["(: cnet_atlocation_f210f7f32c (AtLocation ticket_booth auditorium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ticket booth is located at subway", "pln": ["(: cnet_atlocation_a478894706 (AtLocation ticket_booth subway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ticket booth is located at train station", "pln": ["(: cnet_atlocation_fa7060f7dd (AtLocation ticket_booth train_station) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ticket box is located at theater", "pln": ["(: cnet_atlocation_a2fa50b0be (AtLocation ticket_box theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ticket office is located at movie theater", "pln": ["(: cnet_atlocation_e057d1d8a2 (AtLocation ticket_office movie_theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ticket slot is located at parking lot", "pln": ["(: cnet_atlocation_03e718e3f0 (AtLocation ticket_slot parking_lot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ticket taker is located at train station", "pln": ["(: cnet_atlocation_690e67ad53 (AtLocation ticket_taker train_station) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ticket turnstile is located at subway", "pln": ["(: cnet_atlocation_6dc4fba10e (AtLocation ticket_turnstile subway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ticket window is located at train station", "pln": ["(: cnet_atlocation_0f8599adf4 (AtLocation ticket_window train_station) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ticket window is located at bus depot", "pln": ["(: cnet_atlocation_b68d5422d9 (AtLocation ticket_window bus_depot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ticket is located at opera", "pln": ["(: cnet_atlocation_44139eb824 (AtLocation ticket opera) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tie is located at suitcase", "pln": ["(: cnet_atlocation_5f03b163bb (AtLocation tie suitcase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tiger is located at zoo", "pln": ["(: cnet_atlocation_f02831f3be (AtLocation tiger zoo) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tile is located at roof", "pln": ["(: cnet_atlocation_a361571b19 (AtLocation tile roof) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tile is located at floor", "pln": ["(: cnet_atlocation_676b20e7a5 (AtLocation tile floor) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tiling is located at roof", "pln": ["(: cnet_atlocation_052c2877e6 (AtLocation tiling roof) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "timetable is located at train station", "pln": ["(: cnet_atlocation_05ad67f5f7 (AtLocation timetable train_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "tin is located at cupboard", "pln": ["(: cnet_atlocation_6c197d4bae (AtLocation tin cupboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "toilets is located at mall", "pln": ["(: cnet_atlocation_aa192aaf3b (AtLocation toilets mall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tired people is located at rest area", "pln": ["(: cnet_atlocation_65546962da (AtLocation tired_people rest_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tire is located at car show", "pln": ["(: cnet_atlocation_1c4681cf16 (AtLocation tire car_show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tire people is located at rest area", "pln": ["(: cnet_atlocation_38de7daac6 (AtLocation tire_people rest_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tissue is located at purse", "pln": ["(: cnet_atlocation_1b00e5f167 (AtLocation tissue purse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tissue holder is located at bathroom", "pln": ["(: cnet_atlocation_69af49f3ae (AtLocation tissue_holder bathroom) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tithe is located at church", "pln": ["(: cnet_atlocation_ced4c16c80 (AtLocation tithe church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toe is located at foot", "pln": ["(: cnet_atlocation_8d6378cd37 (AtLocation toe foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toe is located at sock", "pln": ["(: cnet_atlocation_69135a31a4 (AtLocation toe sock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toilet is located at apartment", "pln": ["(: cnet_atlocation_ee2c4e6274 (AtLocation toilet apartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toilet is located at bathroom", "pln": ["(: cnet_atlocation_fd94f0f52a (AtLocation toilet bathroom) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toilet is located at hospital", "pln": ["(: cnet_atlocation_b3043411d7 (AtLocation toilet hospital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toilet is located at house", "pln": ["(: cnet_atlocation_0b2f7b8467 (AtLocation toilet house) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toilet is located at motel room", "pln": ["(: cnet_atlocation_ddae94bedd (AtLocation toilet motel_room) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toilet is located at rest area", "pln": ["(: cnet_atlocation_4c7399363e (AtLocation toilet rest_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toilet is located at stadium", "pln": ["(: cnet_atlocation_409899d488 (AtLocation toilet stadium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toilet paper is located at bathroom", "pln": ["(: cnet_atlocation_e04f747dd9 (AtLocation toilet_paper bathroom) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toilet paper is located at cabinet", "pln": ["(: cnet_atlocation_2ada056830 (AtLocation toilet_paper cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toilet paper is located at grocery store", "pln": ["(: cnet_atlocation_7324daf6b2 (AtLocation toilet_paper grocery_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toilet paper is located at rest area", "pln": ["(: cnet_atlocation_5b7fe297c1 (AtLocation toilet_paper rest_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toilet paper is located at toilet", "pln": ["(: cnet_atlocation_3133bc3c28 (AtLocation toilet_paper toilet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toiletry is located at suitcase", "pln": ["(: cnet_atlocation_c05528ea06 (AtLocation toiletry suitcase) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toilet is located at mall", "pln": ["(: cnet_atlocation_92942bc551 (AtLocation toilet mall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "token is located at arcade", "pln": ["(: cnet_atlocation_0382d27cfd (AtLocation token arcade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "tomatoes is located at refrigerator", "pln": ["(: cnet_atlocation_4eaff168a7 (AtLocation tomatoes refrigerator) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "token is located at coin collection", "pln": ["(: cnet_atlocation_f5e06fae5b (AtLocation token coin_collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "token turnstile is located at subway station", "pln": ["(: cnet_atlocation_7803da6874 (AtLocation token_turnstile subway_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toliet is located at bathroom", "pln": ["(: cnet_atlocation_0b5f00fe96 (AtLocation toliet bathroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toll road is located at new jersey", "pln": ["(: cnet_atlocation_8580907747 (AtLocation toll_road new_jersey) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toll road is located at united state", "pln": ["(: cnet_atlocation_2e613d80eb (AtLocation toll_road united_state) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tomato is located at farmer s market", "pln": ["(: cnet_atlocation_b2b72466e0 (AtLocation tomato farmer_s_market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tomato is located at refrigerator", "pln": ["(: cnet_atlocation_c3de7d8504 (AtLocation tomato refrigerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tomatoe is located at market", "pln": ["(: cnet_atlocation_ffc60a82da (AtLocation tomatoe market) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tomatoe is located at pizza", "pln": ["(: cnet_atlocation_f0fca01a7f (AtLocation tomatoe pizza) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tomatoe is located at refrigerator", "pln": ["(: cnet_atlocation_a89917692a (AtLocation tomatoe refrigerator) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tombstone is located at cemetery", "pln": ["(: cnet_atlocation_1304ccd70c (AtLocation tombstone cemetery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tongue is located at mouth", "pln": ["(: cnet_atlocation_313c49adbd (AtLocation tongue mouth) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tongue depressor is located at doctor", "pln": ["(: cnet_atlocation_48fe8049dc (AtLocation tongue_depressor doctor) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "too few cashier is located at supermarket", "pln": ["(: cnet_atlocation_155801f30a (AtLocation too_few_cashier supermarket) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tool is located at garage", "pln": ["(: cnet_atlocation_7348091d15 (AtLocation tool garage) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tool is located at repair shop", "pln": ["(: cnet_atlocation_b67eb959ba (AtLocation tool repair_shop) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tool is located at tool box", "pln": ["(: cnet_atlocation_f54d8f708c (AtLocation tool tool_box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tool chest is located at garage", "pln": ["(: cnet_atlocation_a8fcb3d23e (AtLocation tool_chest garage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "toolbox is located at garage", "pln": ["(: cnet_atlocation_71a087614f (AtLocation toolbox garage) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tool is located at neighbor s house", "pln": ["(: cnet_atlocation_90b2eabb51 (AtLocation tool neighbor_s_house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tooth is located at mouth", "pln": ["(: cnet_atlocation_ced3ebd2eb (AtLocation tooth mouth) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toothbrush is located at dentist", "pln": ["(: cnet_atlocation_fdb8e5bf92 (AtLocation toothbrush dentist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toothbrush is located at mouth", "pln": ["(: cnet_atlocation_ceb4076769 (AtLocation toothbrush mouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toothbrush is located at suitcase", "pln": ["(: cnet_atlocation_2dbaa21366 (AtLocation toothbrush suitcase) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toothbrush bristle is located at toothbrush", "pln": ["(: cnet_atlocation_8658d3d121 (AtLocation toothbrush_bristle toothbrush) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toothbrush handle is located at hand", "pln": ["(: cnet_atlocation_cbbaf668ab (AtLocation toothbrush_handle hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toothbrush handle is located at toothbrush holder", "pln": ["(: cnet_atlocation_9be31e1f21 (AtLocation toothbrush_handle toothbrush_holder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toothbrushe is located at dentist", "pln": ["(: cnet_atlocation_74429ed4c5 (AtLocation toothbrushe dentist) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toothpaste is located at medicine cabinet", "pln": ["(: cnet_atlocation_ac49edc7f0 (AtLocation toothpaste medicine_cabinet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toothpaste is located at tube", "pln": ["(: cnet_atlocation_1c758c7f35 (AtLocation toothpaste tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tortilla is located at supermarket", "pln": ["(: cnet_atlocation_aaab6dbfd3 (AtLocation tortilla supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tounge is located at mouth", "pln": ["(: cnet_atlocation_9dab30c933 (AtLocation tounge mouth) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tourist is located at beach", "pln": ["(: cnet_atlocation_bb6848a92a (AtLocation tourist beach) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tourist is located at disneyland", "pln": ["(: cnet_atlocation_031ab1463c (AtLocation tourist disneyland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tourist is located at waterfall", "pln": ["(: cnet_atlocation_33141ac7c2 (AtLocation tourist waterfall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tourniquet is located at hospital", "pln": ["(: cnet_atlocation_134c05fa26 (AtLocation tourniquet hospital) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "towel is located at at hotel", "pln": ["(: cnet_atlocation_a9b0f60912 (AtLocation towel at_hotel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "towel is located at swimming pool", "pln": ["(: cnet_atlocation_10b394803e (AtLocation towel swimming_pool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "towel rack is located at bathroom", "pln": ["(: cnet_atlocation_4d60ba62c7 (AtLocation towel_rack bathroom) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "towel is located at hotel", "pln": ["(: cnet_atlocation_80653c56b0 (AtLocation towel hotel) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "towel is located at motel", "pln": ["(: cnet_atlocation_0230af83ee (AtLocation towel motel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tower is located at castle", "pln": ["(: cnet_atlocation_f5948dea85 (AtLocation tower castle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tower is located at city", "pln": ["(: cnet_atlocation_1f8ed8ce2c (AtLocation tower city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "town is located at country", "pln": ["(: cnet_atlocation_5c1261fa33 (AtLocation town country) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "town is located at countryside", "pln": ["(: cnet_atlocation_3b0f5b47c7 (AtLocation town countryside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "town is located at state", "pln": ["(: cnet_atlocation_4b58b52f73 (AtLocation town state) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "townhouse is located at town", "pln": ["(: cnet_atlocation_c4340206d5 (AtLocation townhouse town) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toy is located at store", "pln": ["(: cnet_atlocation_d5204b4d63 (AtLocation toy store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toy is located at toy chest", "pln": ["(: cnet_atlocation_bd2d098623 (AtLocation toy toy_chest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toy ball is located at child s room", "pln": ["(: cnet_atlocation_5ddb1791b9 (AtLocation toy_ball child_s_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toy ball is located at kid s room", "pln": ["(: cnet_atlocation_852787dbf7 (AtLocation toy_ball kid_s_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toy ball is located at kid room", "pln": ["(: cnet_atlocation_85a0813369 (AtLocation toy_ball kid_room) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toy ball is located at toy store", "pln": ["(: cnet_atlocation_f9b6245fb4 (AtLocation toy_ball toy_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toy balloon is located at amusement park", "pln": ["(: cnet_atlocation_8c581a4a68 (AtLocation toy_balloon amusement_park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toy balloon is located at birthday party", "pln": ["(: cnet_atlocation_9cd5a0810b (AtLocation toy_balloon birthday_party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "toy balloon is located at circus", "pln": ["(: cnet_atlocation_b234396007 (AtLocation toy_balloon circus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toy car is located at child s room", "pln": ["(: cnet_atlocation_855f1d5cd9 (AtLocation toy_car child_s_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toy car is located at toy box", "pln": ["(: cnet_atlocation_88b905518c (AtLocation toy_car toy_box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toy car is located at toy store", "pln": ["(: cnet_atlocation_2111d8367d (AtLocation toy_car toy_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "toy soldier is located at child s bedroom", "pln": ["(: cnet_atlocation_38362ede38 (AtLocation toy_soldier child_s_bedroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "toy soldier is located at toy box", "pln": ["(: cnet_atlocation_63685fc2b0 (AtLocation toy_soldier toy_box) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "toys is located at bed", "pln": ["(: cnet_atlocation_881e411430 (AtLocation toys bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toy train is located at toy store", "pln": ["(: cnet_atlocation_bdb9863a39 (AtLocation toy_train toy_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toy is located at bed", "pln": ["(: cnet_atlocation_6ce6277370 (AtLocation toy bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toy is located at box", "pln": ["(: cnet_atlocation_a7bb9c9791 (AtLocation toy box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "toy is located at floor", "pln": ["(: cnet_atlocation_2098567ae7 (AtLocation toy floor) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "trace amount of industrial chemical is located at water", "pln": ["(: cnet_atlocation_0f1c285d6b (AtLocation trace_amount_of_industrial_chemical water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "track is located at snow", "pln": ["(: cnet_atlocation_dc79fa9a17 (AtLocation track snow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "track is located at stadium", "pln": ["(: cnet_atlocation_049c01d21c (AtLocation track stadium) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "track is located at station", "pln": ["(: cnet_atlocation_edd0b1c890 (AtLocation track station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "track is located at train station", "pln": ["(: cnet_atlocation_52bf414147 (AtLocation track train_station) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tractor is located at farm", "pln": ["(: cnet_atlocation_47e7360cfd (AtLocation tractor farm) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "traffic is located at street", "pln": ["(: cnet_atlocation_d917ea5c8d (AtLocation traffic street) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "traffic artery is located at major city", "pln": ["(: cnet_atlocation_d432a9de0e (AtLocation traffic_artery major_city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "traffic light is located at corner of two street", "pln": ["(: cnet_atlocation_220f5513a9 (AtLocation traffic_light corner_of_two_street) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "train station is located at city", "pln": ["(: cnet_atlocation_d211b1df0d (AtLocation train_station city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "train ticket is located at purse", "pln": ["(: cnet_atlocation_7202cc12b9 (AtLocation train_ticket purse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "train ticket is located at train depot", "pln": ["(: cnet_atlocation_72ada70916 (AtLocation train_ticket train_depot) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "train track is located at train station", "pln": ["(: cnet_atlocation_495802e80a (AtLocation train_track train_station) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "train track is located at railyard", "pln": ["(: cnet_atlocation_95a5eeb1c7 (AtLocation train_track railyard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "transit ticket is located at bus station", "pln": ["(: cnet_atlocation_f677cbb30b (AtLocation transit_ticket bus_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "transit ticket is located at bus stop", "pln": ["(: cnet_atlocation_f2547c7c4f (AtLocation transit_ticket bus_stop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "transit ticket is located at pocket", "pln": ["(: cnet_atlocation_4310753fcc (AtLocation transit_ticket pocket) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "transit ticket is located at subway", "pln": ["(: cnet_atlocation_f6d398df09 (AtLocation transit_ticket subway) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "transit ticket is located at wallet", "pln": ["(: cnet_atlocation_6c681f251b (AtLocation transit_ticket wallet) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "trash is located at bin", "pln": ["(: cnet_atlocation_3799a8d40b (AtLocation trash bin) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "trash is located at container", "pln": ["(: cnet_atlocation_abf00f4992 (AtLocation trash container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "trash is located at dump", "pln": ["(: cnet_atlocation_061c682262 (AtLocation trash dump) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "trash is located at dumpster", "pln": ["(: cnet_atlocation_20ca6e8f70 (AtLocation trash dumpster) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "trash is located at dustbin", "pln": ["(: cnet_atlocation_faf38b961f (AtLocation trash dustbin) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "trash is located at garage", "pln": ["(: cnet_atlocation_b355bb4415 (AtLocation trash garage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "trash is located at garbage dump", "pln": ["(: cnet_atlocation_86e7defd77 (AtLocation trash garbage_dump) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "trash is located at ground", "pln": ["(: cnet_atlocation_5183e73abb (AtLocation trash ground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "trash bags is located at trash", "pln": ["(: cnet_atlocation_9e3e5e7945 (AtLocation trash_bags trash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "trash is located at state park", "pln": ["(: cnet_atlocation_6df9a074a7 (AtLocation trash state_park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "trash is located at subway", "pln": ["(: cnet_atlocation_2319105c55 (AtLocation trash subway) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "trash is located at trash bin", "pln": ["(: cnet_atlocation_51fdccc99c (AtLocation trash trash_bin) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "trash is located at waste bin", "pln": ["(: cnet_atlocation_329a5800b6 (AtLocation trash waste_bin) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "trash bag is located at trash", "pln": ["(: cnet_atlocation_e9b2dfada5 (AtLocation trash_bag trash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "trash can is located at alley", "pln": ["(: cnet_atlocation_ce2916e11c (AtLocation trash_can alley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "trash can is located at park", "pln": ["(: cnet_atlocation_29ae39e230 (AtLocation trash_can park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "trash can is located at water cooler", "pln": ["(: cnet_atlocation_20aab6a66e (AtLocation trash_can water_cooler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "trash container is located at kitchen", "pln": ["(: cnet_atlocation_aa3bd0f697 (AtLocation trash_container kitchen) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "trash receptacle is located at office", "pln": ["(: cnet_atlocation_86cf7dde41 (AtLocation trash_receptacle office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "traveler is located at bus depot", "pln": ["(: cnet_atlocation_3cddff8348 (AtLocation traveler bus_depot) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "traveller is located at airport", "pln": ["(: cnet_atlocation_9fa3bc6b96 (AtLocation traveller airport) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tree is located at state park", "pln": ["(: cnet_atlocation_9c79c60464 (AtLocation tree state_park) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tree frog is located at forest", "pln": ["(: cnet_atlocation_d6f67d0982 (AtLocation tree_frog forest) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tree is located at countryside", "pln": ["(: cnet_atlocation_5962404efe (AtLocation tree countryside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tree is located at forest", "pln": ["(: cnet_atlocation_0c460d62c5 (AtLocation tree forest) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tree is located at orchard", "pln": ["(: cnet_atlocation_5a454b28a4 (AtLocation tree orchard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tree is located at top of mountain", "pln": ["(: cnet_atlocation_3e50fc91c4 (AtLocation tree top_of_mountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tree is located at yard", "pln": ["(: cnet_atlocation_6fabe5343c (AtLocation tree yard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tress is located at forest", "pln": ["(: cnet_atlocation_6a46985909 (AtLocation tress forest) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "triangle is located at drafting", "pln": ["(: cnet_atlocation_da59bbca90 (AtLocation triangle drafting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "triangle is located at drafting class", "pln": ["(: cnet_atlocation_51994a308d (AtLocation triangle drafting_class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "triangle is located at geometry", "pln": ["(: cnet_atlocation_4eac78d06c (AtLocation triangle geometry) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "triangle is located at math", "pln": ["(: cnet_atlocation_b9a3341dab (AtLocation triangle math) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "triangle is located at math book", "pln": ["(: cnet_atlocation_e0a4dcb396 (AtLocation triangle math_book) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "triangle is located at math class", "pln": ["(: cnet_atlocation_c90a7500d6 (AtLocation triangle math_class) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "triangle is located at mathematic", "pln": ["(: cnet_atlocation_9f7c62b68d (AtLocation triangle mathematic) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "triangle is located at music class", "pln": ["(: cnet_atlocation_fb86b8b7a6 (AtLocation triangle music_class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "triangle is located at music shop", "pln": ["(: cnet_atlocation_274fd98209 (AtLocation triangle music_shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "triangle is located at orchestra", "pln": ["(: cnet_atlocation_17b67bf7c4 (AtLocation triangle orchestra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "triangle is located at trigonometry", "pln": ["(: cnet_atlocation_0444de3fbc (AtLocation triangle trigonometry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tripod is located at camera store", "pln": ["(: cnet_atlocation_a97bdc847c (AtLocation tripod camera_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "troll is located at bridge", "pln": ["(: cnet_atlocation_0a465ef284 (AtLocation troll bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "trombone is located at band", "pln": ["(: cnet_atlocation_e41a7cc5b0 (AtLocation trombone band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "trombone is located at marching band", "pln": ["(: cnet_atlocation_dc0ff543e9 (AtLocation trombone marching_band) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "trombone is located at orchestra", "pln": ["(: cnet_atlocation_bbb92b15bc (AtLocation trombone orchestra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tropical fish is located at aquarium", "pln": ["(: cnet_atlocation_1b520c5fba (AtLocation tropical_fish aquarium) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "trouble is located at roadblock", "pln": ["(: cnet_atlocation_028d7b2327 (AtLocation trouble roadblock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "trowel is located at cabinet", "pln": ["(: cnet_atlocation_1658763113 (AtLocation trowel cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "truck is located at garage", "pln": ["(: cnet_atlocation_80d515311a (AtLocation truck garage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "truck is located at freeway", "pln": ["(: cnet_atlocation_a5adc2b742 (AtLocation truck freeway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "trumpet is located at band", "pln": ["(: cnet_atlocation_f0ec167e0f (AtLocation trumpet band) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "trumpet is located at brass band", "pln": ["(: cnet_atlocation_1b4385db6f (AtLocation trumpet brass_band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "trumpet is located at trumpet case", "pln": ["(: cnet_atlocation_42664ce723 (AtLocation trumpet trumpet_case) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "trunk is located at attic", "pln": ["(: cnet_atlocation_e2ace494e7 (AtLocation trunk attic) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "trunk is located at car", "pln": ["(: cnet_atlocation_96a0834f1e (AtLocation trunk car) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "truss joist is located at attic", "pln": ["(: cnet_atlocation_6feb00be71 (AtLocation truss_joist attic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tuba is located at band", "pln": ["(: cnet_atlocation_ea340e79c7 (AtLocation tuba band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tube is located at chemistry lab", "pln": ["(: cnet_atlocation_c09d31cf08 (AtLocation tube chemistry_lab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tube is located at space shuttle", "pln": ["(: cnet_atlocation_1fb184420a (AtLocation tube space_shuttle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tuna fish is located at can", "pln": ["(: cnet_atlocation_9b264c5598 (AtLocation tuna_fish can) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tuning fork is located at music shop", "pln": ["(: cnet_atlocation_cede2e707d (AtLocation tuning_fork music_shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tuning fork is located at music store", "pln": ["(: cnet_atlocation_d68d878621 (AtLocation tuning_fork music_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "turkey is located at oven", "pln": ["(: cnet_atlocation_cdcc66bba4 (AtLocation turkey oven) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "turnip is located at farmer s market", "pln": ["(: cnet_atlocation_b6ad8c818b (AtLocation turnip farmer_s_market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "turnstile is located at amusement park", "pln": ["(: cnet_atlocation_ec4233908a (AtLocation turnstile amusement_park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "turnstile is located at train station", "pln": ["(: cnet_atlocation_88a3e122ee (AtLocation turnstile train_station) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tuxedo is located at opera", "pln": ["(: cnet_atlocation_fc600210e9 (AtLocation tuxedo opera) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tv is located at apartment", "pln": ["(: cnet_atlocation_fc63ec2a97 (AtLocation tv apartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tv is located at appliance store", "pln": ["(: cnet_atlocation_d34e572cdc (AtLocation tv appliance_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tv is located at arizona", "pln": ["(: cnet_atlocation_4921f74529 (AtLocation tv arizona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tv is located at bedroom", "pln": ["(: cnet_atlocation_a00c26a6f2 (AtLocation tv bedroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tv is located at family room", "pln": ["(: cnet_atlocation_5bd1c02220 (AtLocation tv family_room) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tv is located at house", "pln": ["(: cnet_atlocation_6927048179 (AtLocation tv house) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tv is located at livingroom", "pln": ["(: cnet_atlocation_79d8ca8e5d (AtLocation tv livingroom) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tv is located at neighbor s house", "pln": ["(: cnet_atlocation_bcb2d0eebc (AtLocation tv neighbor_s_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tv set is located at friend s house", "pln": ["(: cnet_atlocation_f17e9686a7 (AtLocation tv_set friend_s_house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "tweeter is located at speaker", "pln": ["(: cnet_atlocation_3c834b354d (AtLocation tweeter speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "two path is located at fork in road", "pln": ["(: cnet_atlocation_489f47a87b (AtLocation two_path fork_in_road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "two road is located at fork in road", "pln": ["(: cnet_atlocation_3ab30a9098 (AtLocation two_road fork_in_road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "typewriter is located at desk", "pln": ["(: cnet_atlocation_c26acc086e (AtLocation typewriter desk) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "typewriter key is located at keyboard", "pln": ["(: cnet_atlocation_bd9fce63cd (AtLocation typewriter_key keyboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "typewriter key is located at typewriter", "pln": ["(: cnet_atlocation_073f8f1a47 (AtLocation typewriter_key typewriter) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "typewriter ribbon is located at museum", "pln": ["(: cnet_atlocation_03a5eb057d (AtLocation typewriter_ribbon museum) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ufo is located at space", "pln": ["(: cnet_atlocation_d089711f4f (AtLocation ufo space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "umbrella is located at beach", "pln": ["(: cnet_atlocation_49b7501f08 (AtLocation umbrella beach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "umbrella is located at car", "pln": ["(: cnet_atlocation_39559f4c99 (AtLocation umbrella car) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "umbrella is located at closet", "pln": ["(: cnet_atlocation_6e247e6de0 (AtLocation umbrella closet) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "umbrella is located at umbrella stand", "pln": ["(: cnet_atlocation_4da890ec91 (AtLocation umbrella umbrella_stand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "uncle is located at aunt house", "pln": ["(: cnet_atlocation_7fc0551186 (AtLocation uncle aunt_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "uncle is located at house", "pln": ["(: cnet_atlocation_c031d6774f (AtLocation uncle house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "under water is located at bottom of sea", "pln": ["(: cnet_atlocation_022ba0384b (AtLocation under_water bottom_of_sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "underground area is located at subway", "pln": ["(: cnet_atlocation_35d203ab7d (AtLocation underground_area subway) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "underground map is located at library", "pln": ["(: cnet_atlocation_d7fe0937af (AtLocation underground_map library) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "underground map is located at london", "pln": ["(: cnet_atlocation_ec363f453b (AtLocation underground_map london) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "underground map is located at subway", "pln": ["(: cnet_atlocation_e5aeea5862 (AtLocation underground_map subway) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "united states is located at america", "pln": ["(: cnet_atlocation_dff778ecf5 (AtLocation united_states america) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "united states is located at history book", "pln": ["(: cnet_atlocation_0dd110bf14 (AtLocation united_states history_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "undergrowth is located at forest", "pln": ["(: cnet_atlocation_1c214b7b07 (AtLocation undergrowth forest) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "understanding is located at family", "pln": ["(: cnet_atlocation_276511c668 (AtLocation understanding family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "underwear is located at sock drawer", "pln": ["(: cnet_atlocation_ac2d08d2cd (AtLocation underwear sock_drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "underwear is located at suitcase", "pln": ["(: cnet_atlocation_a2f6ffb78c (AtLocation underwear suitcase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "uneducated foreign security personnel is located at airport", "pln": ["(: cnet_atlocation_c1ce501452 (AtLocation uneducated_foreign_security_personnel airport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "unidentified flying object is located at sky", "pln": ["(: cnet_atlocation_7928107373 (AtLocation unidentified_flying_object sky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "union is located at workplace", "pln": ["(: cnet_atlocation_bf8746d5fc (AtLocation union workplace) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "united state is located at america", "pln": ["(: cnet_atlocation_e2413d80d8 (AtLocation united_state america) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "united state is located at history book", "pln": ["(: cnet_atlocation_d496ade4d4 (AtLocation united_state history_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "united state is located at map", "pln": ["(: cnet_atlocation_d4feda7d9f (AtLocation united_state map) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "united state is located at north america", "pln": ["(: cnet_atlocation_dca218d1bf (AtLocation united_state north_america) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "united state is located at northern hemisphere", "pln": ["(: cnet_atlocation_97a764bc7a (AtLocation united_state northern_hemisphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "united state is located at western hemisphere", "pln": ["(: cnet_atlocation_5c17139568 (AtLocation united_state western_hemisphere) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "upset people is located at iraq", "pln": ["(: cnet_atlocation_6b638e81e7 (AtLocation upset_people iraq) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "urine is located at toilet", "pln": ["(: cnet_atlocation_2ce2cc9f08 (AtLocation urine toilet) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "used condom is located at floor", "pln": ["(: cnet_atlocation_8dfb399c99 (AtLocation used_condom floor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "utensil is located at dinner", "pln": ["(: cnet_atlocation_a3683e65d8 (AtLocation utensil dinner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "utility case is located at electrician s shop", "pln": ["(: cnet_atlocation_bcd91b5c32 (AtLocation utility_case electrician_s_shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "utility case is located at garage", "pln": ["(: cnet_atlocation_458458c709 (AtLocation utility_case garage) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "vacuum is located at closet", "pln": ["(: cnet_atlocation_1dc4f76252 (AtLocation vacuum closet) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "vacuum is located at space", "pln": ["(: cnet_atlocation_435ee51e7a (AtLocation vacuum space) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "vagina is located at skirt", "pln": ["(: cnet_atlocation_fab6fe95ff (AtLocation vagina skirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "valuable is located at vault", "pln": ["(: cnet_atlocation_6898438145 (AtLocation valuable vault) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "variety of tool is located at garage", "pln": ["(: cnet_atlocation_c4d387670e (AtLocation variety_of_tool garage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "varnish is located at desk", "pln": ["(: cnet_atlocation_ff74e1dc30 (AtLocation varnish desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "vase is located at shelf", "pln": ["(: cnet_atlocation_a53d4d7f12 (AtLocation vase shelf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "vase is located at table", "pln": ["(: cnet_atlocation_37173cc575 (AtLocation vase table) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "vase of flower is located at table", "pln": ["(: cnet_atlocation_127d52b6a8 (AtLocation vase_of_flower table) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "vault is located at bank", "pln": ["(: cnet_atlocation_a26d0327e0 (AtLocation vault bank) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "veal is located at meat section", "pln": ["(: cnet_atlocation_21c34461aa (AtLocation veal meat_section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "vegemite is located at jar", "pln": ["(: cnet_atlocation_b5aed3dc96 (AtLocation vegemite jar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "vegetable garden is located at back yard", "pln": ["(: cnet_atlocation_8bdac373af (AtLocation vegetable_garden back_yard) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "vegetable garden is located at backyard", "pln": ["(: cnet_atlocation_9e45a16b17 (AtLocation vegetable_garden backyard) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "vegetable is located at market", "pln": ["(: cnet_atlocation_68d8ebdcd7 (AtLocation vegetable market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "vegetable is located at supermarket", "pln": ["(: cnet_atlocation_64207ae713 (AtLocation vegetable supermarket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "vegetarian restaurant is located at most city", "pln": ["(: cnet_atlocation_87890dbdf1 (AtLocation vegetarian_restaurant most_city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "veggie dip is located at supermarket", "pln": ["(: cnet_atlocation_ad59afc628 (AtLocation veggie_dip supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "vehicle is located at freeway", "pln": ["(: cnet_atlocation_ae8da61317 (AtLocation vehicle freeway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "vehicle is located at street", "pln": ["(: cnet_atlocation_a8cc51fd1a (AtLocation vehicle street) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "veil is located at wedding", "pln": ["(: cnet_atlocation_9650de6e1e (AtLocation veil wedding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "velvet is located at clothe", "pln": ["(: cnet_atlocation_58bdd3128b (AtLocation velvet clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "velvet is located at fabric store", "pln": ["(: cnet_atlocation_cc2b49489a (AtLocation velvet fabric_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "vending machine is located at rest area", "pln": ["(: cnet_atlocation_919dd15564 (AtLocation vending_machine rest_area) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "vending stand is located at city", "pln": ["(: cnet_atlocation_c60413bd24 (AtLocation vending_stand city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "vending stand is located at mall", "pln": ["(: cnet_atlocation_2417d708e3 (AtLocation vending_stand mall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "vendor is located at farmer s market", "pln": ["(: cnet_atlocation_f368819471 (AtLocation vendor farmer_s_market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ventilation system is located at building", "pln": ["(: cnet_atlocation_0289cdf8a5 (AtLocation ventilation_system building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "ventilation system is located at house", "pln": ["(: cnet_atlocation_982a39a7fc (AtLocation ventilation_system house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "volume is located at set of encyclopedias", "pln": ["(: cnet_atlocation_e7660113e3 (AtLocation volume set_of_encyclopedias) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "waiting passengers is located at bus depot", "pln": ["(: cnet_atlocation_c6b346002d (AtLocation waiting_passengers bus_depot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "ventilation system is located at large building", "pln": ["(: cnet_atlocation_b85b55306a (AtLocation ventilation_system large_building) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "verb is located at instruction for assembly", "pln": ["(: cnet_atlocation_382ddad714 (AtLocation verb instruction_for_assembly) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "verb is located at sentence", "pln": ["(: cnet_atlocation_a1bf3fd029 (AtLocation verb sentence) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "vessel is located at ocean", "pln": ["(: cnet_atlocation_166df820e0 (AtLocation vessel ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "vicar is located at church", "pln": ["(: cnet_atlocation_be2842eff9 (AtLocation vicar church) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "video game is located at friend s house", "pln": ["(: cnet_atlocation_1d6dde12ef (AtLocation video_game friend_s_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "video tape is located at shelf", "pln": ["(: cnet_atlocation_69d1e5bd2a (AtLocation video_tape shelf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "video tape is located at cabinet", "pln": ["(: cnet_atlocation_f291898625 (AtLocation video_tape cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "video tape is located at library", "pln": ["(: cnet_atlocation_4a596d2cd1 (AtLocation video_tape library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "village is located at africa", "pln": ["(: cnet_atlocation_8a2a090a6b (AtLocation village africa) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "village is located at countryside", "pln": ["(: cnet_atlocation_2203f8e93a (AtLocation village countryside) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "vine is located at jungle", "pln": ["(: cnet_atlocation_f4706d0c9c (AtLocation vine jungle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "vintner is located at vineyard", "pln": ["(: cnet_atlocation_ce9853f780 (AtLocation vintner vineyard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "vintner is located at winery", "pln": ["(: cnet_atlocation_2b11eaf81c (AtLocation vintner winery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "vinyl is located at pant", "pln": ["(: cnet_atlocation_4a9e2e287a (AtLocation vinyl pant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "vinyl is located at store", "pln": ["(: cnet_atlocation_53ca9bdcc3 (AtLocation vinyl store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "viola is located at orchestra", "pln": ["(: cnet_atlocation_83aa0476d0 (AtLocation viola orchestra) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "violence is located at hockey game", "pln": ["(: cnet_atlocation_7a08691ccc (AtLocation violence hockey_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "violence is located at war", "pln": ["(: cnet_atlocation_cd9d53318d (AtLocation violence war) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "violent fan is located at soccer game", "pln": ["(: cnet_atlocation_c7fca8fb41 (AtLocation violent_fan soccer_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "violin is located at orchestra", "pln": ["(: cnet_atlocation_d8a67acd23 (AtLocation violin orchestra) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "violin is located at violin case", "pln": ["(: cnet_atlocation_3a9c30dd39 (AtLocation violin violin_case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "virus is located at computer", "pln": ["(: cnet_atlocation_b17e352095 (AtLocation virus computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "vodka is located at bar", "pln": ["(: cnet_atlocation_f6de4a5001 (AtLocation vodka bar) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "voice is located at radio", "pln": ["(: cnet_atlocation_6252a8bcb2 (AtLocation voice radio) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "voice is located at song", "pln": ["(: cnet_atlocation_d784956c86 (AtLocation voice song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "volleyball is located at beach", "pln": ["(: cnet_atlocation_b3701febc9 (AtLocation volleyball beach) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "volume is located at library", "pln": ["(: cnet_atlocation_57523aee07 (AtLocation volume library) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "volume is located at set of book", "pln": ["(: cnet_atlocation_e99ccc0d31 (AtLocation volume set_of_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "volume is located at set of encyclopedia", "pln": ["(: cnet_atlocation_d33f469881 (AtLocation volume set_of_encyclopedia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wadded up piece of paper is located at trash", "pln": ["(: cnet_atlocation_0010b6087d (AtLocation wadded_up_piece_of_paper trash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wagon is located at garage", "pln": ["(: cnet_atlocation_8b855867bd (AtLocation wagon garage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wagon is located at toy store", "pln": ["(: cnet_atlocation_3f5617bd19 (AtLocation wagon toy_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "waiter is located at cafe", "pln": ["(: cnet_atlocation_27a4608d29 (AtLocation waiter cafe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "waiter is located at resturant", "pln": ["(: cnet_atlocation_bb7e42be70 (AtLocation waiter resturant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "waiting area is located at airport", "pln": ["(: cnet_atlocation_e6475003c6 (AtLocation waiting_area airport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "waiting passenger is located at bus depot", "pln": ["(: cnet_atlocation_16b1f19e7b (AtLocation waiting_passenger bus_depot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "waiting room is located at airport", "pln": ["(: cnet_atlocation_8518c678ff (AtLocation waiting_room airport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "waiting room is located at dentist", "pln": ["(: cnet_atlocation_68baa9b531 (AtLocation waiting_room dentist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "waiting room is located at doctor s office", "pln": ["(: cnet_atlocation_9527036280 (AtLocation waiting_room doctor_s_office) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "waiting room is located at doctor", "pln": ["(: cnet_atlocation_51ef3a9ecd (AtLocation waiting_room doctor) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "waiting room is located at doctor office", "pln": ["(: cnet_atlocation_b7126a8963 (AtLocation waiting_room doctor_office) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "waiting room is located at hospital", "pln": ["(: cnet_atlocation_b32c38e397 (AtLocation waiting_room hospital) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "waitress is located at bar", "pln": ["(: cnet_atlocation_6b830c66bf (AtLocation waitress bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "waitress is located at resturant", "pln": ["(: cnet_atlocation_f53c215864 (AtLocation waitress resturant) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "walk is located at closet in house", "pln": ["(: cnet_atlocation_7dee616574 (AtLocation walk closet_in_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "walk is located at closet in mansion", "pln": ["(: cnet_atlocation_973673b1e1 (AtLocation walk closet_in_mansion) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "walk is located at closet in master bedroom", "pln": ["(: cnet_atlocation_1938c4cc19 (AtLocation walk closet_in_master_bedroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "walls is located at house", "pln": ["(: cnet_atlocation_e89e945bc7 (AtLocation walls house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "walkway is located at sporting event", "pln": ["(: cnet_atlocation_db493d3921 (AtLocation walkway sporting_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wall is located at building", "pln": ["(: cnet_atlocation_4c3234b7b7 (AtLocation wall building) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wall is located at house", "pln": ["(: cnet_atlocation_1fabd690c4 (AtLocation wall house) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wall is located at room", "pln": ["(: cnet_atlocation_68bb286a46 (AtLocation wall room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wallet is located at pocket", "pln": ["(: cnet_atlocation_63836513f7 (AtLocation wallet pocket) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wallet is located at purse", "pln": ["(: cnet_atlocation_9f600d0d34 (AtLocation wallet purse) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wallpaper is located at desktop", "pln": ["(: cnet_atlocation_cc3fd6324e (AtLocation wallpaper desktop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wall is located at corner", "pln": ["(: cnet_atlocation_111ee4ea19 (AtLocation wall corner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wardrobe is located at bedroom", "pln": ["(: cnet_atlocation_eae0b9e26f (AtLocation wardrobe bedroom) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "warm welcome is located at relative house", "pln": ["(: cnet_atlocation_bbffd45583 (AtLocation warm_welcome relative_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wash and wear fabric is located at department store", "pln": ["(: cnet_atlocation_3877b34f38 (AtLocation wash_and_wear_fabric department_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wash and wear fabric is located at own closet", "pln": ["(: cnet_atlocation_2dd177c22e (AtLocation wash_and_wear_fabric own_closet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "washcloth is located at linen closet", "pln": ["(: cnet_atlocation_d29865c235 (AtLocation washcloth linen_closet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "washer is located at jar", "pln": ["(: cnet_atlocation_de056d50dd (AtLocation washer jar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "washing machine is located at cellar", "pln": ["(: cnet_atlocation_8469c74e80 (AtLocation washing_machine cellar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "washing machine is located at house", "pln": ["(: cnet_atlocation_43563bf9c6 (AtLocation washing_machine house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "washing machine is located at laundromat", "pln": ["(: cnet_atlocation_e19858bf50 (AtLocation washing_machine laundromat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "washing maching and dryer is located at basement", "pln": ["(: cnet_atlocation_7e7048ac92 (AtLocation washing_maching_and_dryer basement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "washroom is located at park", "pln": ["(: cnet_atlocation_bda1d894ae (AtLocation washroom park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "washroom is located at rest area", "pln": ["(: cnet_atlocation_7a4b0aa867 (AtLocation washroom rest_area) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "waste paper is located at trash", "pln": ["(: cnet_atlocation_2e6c89e908 (AtLocation waste_paper trash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "watch is located at watch store", "pln": ["(: cnet_atlocation_72d28fd253 (AtLocation watch watch_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "water is located at beer", "pln": ["(: cnet_atlocation_73fa6c43f8 (AtLocation water beer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "water is located at bottle", "pln": ["(: cnet_atlocation_5c4d7037d0 (AtLocation water bottle) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "water is located at bridge", "pln": ["(: cnet_atlocation_eb10f4bb40 (AtLocation water bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "water is located at brook", "pln": ["(: cnet_atlocation_3230ab07ce (AtLocation water brook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "water is located at cactus", "pln": ["(: cnet_atlocation_db2e8d607b (AtLocation water cactus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "water is located at dam", "pln": ["(: cnet_atlocation_cb0a386ae2 (AtLocation water dam) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "water is located at enema", "pln": ["(: cnet_atlocation_7f4a7d9056 (AtLocation water enema) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "water is located at glass", "pln": ["(: cnet_atlocation_b92a639826 (AtLocation water glass) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "water is located at jar", "pln": ["(: cnet_atlocation_b4c90d862c (AtLocation water jar) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "water is located at lake", "pln": ["(: cnet_atlocation_9f0feb937c (AtLocation water lake) (STV 1.0 0.9800))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "water is located at ocean", "pln": ["(: cnet_atlocation_9c8c8757f8 (AtLocation water ocean) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "water is located at pee", "pln": ["(: cnet_atlocation_b9e1980471 (AtLocation water pee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "water is located at pool", "pln": ["(: cnet_atlocation_c34ec62c00 (AtLocation water pool) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "water is located at puddle", "pln": ["(: cnet_atlocation_cb7aa0c19e (AtLocation water puddle) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "water is located at rain", "pln": ["(: cnet_atlocation_49c5b9808f (AtLocation water rain) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "water is located at river", "pln": ["(: cnet_atlocation_df20d9c4cd (AtLocation water river) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "water is located at sewer", "pln": ["(: cnet_atlocation_38918f7c8a (AtLocation water sewer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "water is located at sink", "pln": ["(: cnet_atlocation_a4e6d10a3c (AtLocation water sink) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "water is located at soup", "pln": ["(: cnet_atlocation_2cb28d3066 (AtLocation water soup) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "water is located at steam", "pln": ["(: cnet_atlocation_71a31cd621 (AtLocation water steam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "water is located at stream", "pln": ["(: cnet_atlocation_be33ca920a (AtLocation water stream) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "water is located at surface of earth", "pln": ["(: cnet_atlocation_26c342d55a (AtLocation water surface_of_earth) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "water is located at swamp", "pln": ["(: cnet_atlocation_89216f4d69 (AtLocation water swamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "water is located at toilet", "pln": ["(: cnet_atlocation_da5857de98 (AtLocation water toilet) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "water is located at water cooler", "pln": ["(: cnet_atlocation_04e6c98b00 (AtLocation water water_cooler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "water is located at waterfall", "pln": ["(: cnet_atlocation_3ded31873e (AtLocation water waterfall) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "water fountain is located at park", "pln": ["(: cnet_atlocation_090f7eae76 (AtLocation water_fountain park) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "water heater is located at basement", "pln": ["(: cnet_atlocation_3fd0760553 (AtLocation water_heater basement) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "water heater is located at cellar", "pln": ["(: cnet_atlocation_f95e0b85a8 (AtLocation water_heater cellar) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "water skiy is located at boat", "pln": ["(: cnet_atlocation_efaf8de0da (AtLocation water_skiy boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "water spout is located at sink", "pln": ["(: cnet_atlocation_ef35f90b0e (AtLocation water_spout sink) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wave is located at ocean", "pln": ["(: cnet_atlocation_faf01f98d0 (AtLocation wave ocean) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "waxed dental floss is located at bathroom", "pln": ["(: cnet_atlocation_de68cabba0 (AtLocation waxed_dental_floss bathroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "waxed dental floss is located at medicine cabinet", "pln": ["(: cnet_atlocation_4338168ab3 (AtLocation waxed_dental_floss medicine_cabinet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wealth of knowledge is located at library", "pln": ["(: cnet_atlocation_aae806e874 (AtLocation wealth_of_knowledge library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "weapon is located at police station", "pln": ["(: cnet_atlocation_fdb2811ba4 (AtLocation weapon police_station) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "weapon is located at war", "pln": ["(: cnet_atlocation_c05a0525db (AtLocation weapon war) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "weasel is located at backyard", "pln": ["(: cnet_atlocation_62e02d2460 (AtLocation weasel backyard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "weasel is located at barn", "pln": ["(: cnet_atlocation_8b295bdc1a (AtLocation weasel barn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "weasel is located at chicken coop", "pln": ["(: cnet_atlocation_73a1772488 (AtLocation weasel chicken_coop) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "weasel is located at den", "pln": ["(: cnet_atlocation_4853a6a091 (AtLocation weasel den) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "weasel is located at forrest", "pln": ["(: cnet_atlocation_bbaa8d48a3 (AtLocation weasel forrest) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "weasel is located at hen house", "pln": ["(: cnet_atlocation_0f205250d4 (AtLocation weasel hen_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "weasel is located at henhouse", "pln": ["(: cnet_atlocation_9ce42e2934 (AtLocation weasel henhouse) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "weasel is located at hole in ground", "pln": ["(: cnet_atlocation_3e26736992 (AtLocation weasel hole_in_ground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "weasel is located at hollow log", "pln": ["(: cnet_atlocation_50585442db (AtLocation weasel hollow_log) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "weasel is located at law office", "pln": ["(: cnet_atlocation_ae8235b606 (AtLocation weasel law_office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "weasel is located at zoo", "pln": ["(: cnet_atlocation_b33b1fa53d (AtLocation weasel zoo) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "weather map is located at newspaper", "pln": ["(: cnet_atlocation_8cf4f6997d (AtLocation weather_map newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "weather report is located at newspaper", "pln": ["(: cnet_atlocation_1b505a024d (AtLocation weather_report newspaper) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "web site is located at internet", "pln": ["(: cnet_atlocation_2c477957ff (AtLocation web_site internet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "website is located at internet", "pln": ["(: cnet_atlocation_9a3a9d0421 (AtLocation website internet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wedding is located at church", "pln": ["(: cnet_atlocation_f0dfcee1cc (AtLocation wedding church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "wedding cake is located at wedding", "pln": ["(: cnet_atlocation_24cc45027f (AtLocation wedding_cake wedding) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wedding chapel is located at church", "pln": ["(: cnet_atlocation_599bc4d446 (AtLocation wedding_chapel church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wedding chapel is located at nevada", "pln": ["(: cnet_atlocation_f7a7ab0fe0 (AtLocation wedding_chapel nevada) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wedding gown is located at wedding", "pln": ["(: cnet_atlocation_67cd75065f (AtLocation wedding_gown wedding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wedding guest is located at friend s wedding", "pln": ["(: cnet_atlocation_c4093bf35c (AtLocation wedding_guest friend_s_wedding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wedding ring is located at church", "pln": ["(: cnet_atlocation_16467c1eb0 (AtLocation wedding_ring church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wedding ring is located at friend s wedding", "pln": ["(: cnet_atlocation_91675e7d57 (AtLocation wedding_ring friend_s_wedding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "weed is located at field", "pln": ["(: cnet_atlocation_93dceeaa07 (AtLocation weed field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "weed is located at lawn", "pln": ["(: cnet_atlocation_9f41903c25 (AtLocation weed lawn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "weight bench is located at gym", "pln": ["(: cnet_atlocation_2602f3fda8 (AtLocation weight_bench gym) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "weight lifter is located at gym", "pln": ["(: cnet_atlocation_fe6d49327d (AtLocation weight_lifter gym) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "welcome mat is located at front door", "pln": ["(: cnet_atlocation_dff044606e (AtLocation welcome_mat front_door) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "welcome mat is located at porch", "pln": ["(: cnet_atlocation_8299b2d0ee (AtLocation welcome_mat porch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "westminster abbey is located at london", "pln": ["(: cnet_atlocation_87aaf542e7 (AtLocation westminster_abbey london) (STV 1.0 0.9405))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wet is located at water", "pln": ["(: cnet_atlocation_87425dd7bc (AtLocation wet water) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "whale is located at ocean", "pln": ["(: cnet_atlocation_e9d0a9791c (AtLocation whale ocean) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wheat is located at field", "pln": ["(: cnet_atlocation_45a6b5628b (AtLocation wheat field) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "wheel is located at bicycle shop", "pln": ["(: cnet_atlocation_bd88427ca6 (AtLocation wheel bicycle_shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "whiskey is located at liquor store", "pln": ["(: cnet_atlocation_55bbdec551 (AtLocation whiskey liquor_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "whispering people is located at library", "pln": ["(: cnet_atlocation_ca688f59cf (AtLocation whispering_people library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "white house is located at washington d c", "pln": ["(: cnet_atlocation_adb14d4504 (AtLocation white_house washington_d_c) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "white house is located at washington dc", "pln": ["(: cnet_atlocation_868e8aa408 (AtLocation white_house washington_dc) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "white out is located at desk", "pln": ["(: cnet_atlocation_1b6af79d30 (AtLocation white_out desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "white overall is located at doctor", "pln": ["(: cnet_atlocation_5df7f55519 (AtLocation white_overall doctor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "whore is located at motel", "pln": ["(: cnet_atlocation_688d4ffec3 (AtLocation whore motel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wicker furniture is located at porch", "pln": ["(: cnet_atlocation_bb26f04db4 (AtLocation wicker_furniture porch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wiener dog is located at ballpark", "pln": ["(: cnet_atlocation_510984593c (AtLocation wiener_dog ballpark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wiener dog is located at cage", "pln": ["(: cnet_atlocation_091fa5d014 (AtLocation wiener_dog cage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wiener dog is located at circus", "pln": ["(: cnet_atlocation_80537d4a9e (AtLocation wiener_dog circus) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wiener dog is located at city", "pln": ["(: cnet_atlocation_a21dfa4d38 (AtLocation wiener_dog city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wiener dog is located at dog house", "pln": ["(: cnet_atlocation_1be0b5e3e7 (AtLocation wiener_dog dog_house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wiener dog is located at dog kennel", "pln": ["(: cnet_atlocation_4778fc0b5f (AtLocation wiener_dog dog_kennel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wiener dog is located at dog pound", "pln": ["(: cnet_atlocation_ddf697576a (AtLocation wiener_dog dog_pound) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wiener dog is located at germany", "pln": ["(: cnet_atlocation_216bd5e8c4 (AtLocation wiener_dog germany) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wiener dog is located at grocery store", "pln": ["(: cnet_atlocation_b098050365 (AtLocation wiener_dog grocery_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wiener dog is located at hot dog bun", "pln": ["(: cnet_atlocation_fc09ad33b8 (AtLocation wiener_dog hot_dog_bun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wiener dog is located at hot dog roll", "pln": ["(: cnet_atlocation_0f7e78c83c (AtLocation wiener_dog hot_dog_roll) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wiener dog is located at lap", "pln": ["(: cnet_atlocation_39093597b9 (AtLocation wiener_dog lap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "wiener dog is located at pet shop", "pln": ["(: cnet_atlocation_5977bd6f28 (AtLocation wiener_dog pet_shop) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wiener dog is located at refrigerator", "pln": ["(: cnet_atlocation_9d6746e09f (AtLocation wiener_dog refrigerator) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wiener dog is located at shop", "pln": ["(: cnet_atlocation_455890e595 (AtLocation wiener_dog shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wiener dog is located at sweater", "pln": ["(: cnet_atlocation_ae4f8e35a3 (AtLocation wiener_dog sweater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wiener dog is located at vet s office", "pln": ["(: cnet_atlocation_da4a503a3e (AtLocation wiener_dog vet_s_office) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wiener dog is located at yard", "pln": ["(: cnet_atlocation_9ca52a0e55 (AtLocation wiener_dog yard) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wiener dog in is located at hot dog bun", "pln": ["(: cnet_atlocation_adcdebae68 (AtLocation wiener_dog_in hot_dog_bun) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wild animal is located at zoo", "pln": ["(: cnet_atlocation_2809987dd7 (AtLocation wild_animal zoo) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wild flower is located at field", "pln": ["(: cnet_atlocation_4d49c574e7 (AtLocation wild_flower field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wildflower is located at countryside", "pln": ["(: cnet_atlocation_2422f285da (AtLocation wildflower countryside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wind is located at sea", "pln": ["(: cnet_atlocation_b78ea87733 (AtLocation wind sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "window is located at building", "pln": ["(: cnet_atlocation_30f447e228 (AtLocation window building) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "window is located at house", "pln": ["(: cnet_atlocation_3b32a61d47 (AtLocation window house) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "window is located at space shuttle", "pln": ["(: cnet_atlocation_6a29d10ab9 (AtLocation window space_shuttle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "window is located at wall", "pln": ["(: cnet_atlocation_1ac53c4051 (AtLocation window wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wine is located at bar", "pln": ["(: cnet_atlocation_19bd871b74 (AtLocation wine bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wine is located at wine cellar", "pln": ["(: cnet_atlocation_327174a998 (AtLocation wine wine_cellar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wine is located at winery", "pln": ["(: cnet_atlocation_4c973cdc5d (AtLocation wine winery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wine bottle is located at cellar", "pln": ["(: cnet_atlocation_34dbc24e9c (AtLocation wine_bottle cellar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wine cellar is located at basement", "pln": ["(: cnet_atlocation_677998d7bd (AtLocation wine_cellar basement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wine glass is located at dinner", "pln": ["(: cnet_atlocation_c6688d939c (AtLocation wine_glass dinner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wine list is located at restaurant", "pln": ["(: cnet_atlocation_8206dad3fd (AtLocation wine_list restaurant) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wine list is located at resturant", "pln": ["(: cnet_atlocation_9603225271 (AtLocation wine_list resturant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wing is located at large building", "pln": ["(: cnet_atlocation_1a3b96f457 (AtLocation wing large_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wing is located at mansion", "pln": ["(: cnet_atlocation_ae2fc5dcad (AtLocation wing mansion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "winter coat is located at closet", "pln": ["(: cnet_atlocation_212c869296 (AtLocation winter_coat closet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wire is located at space shuttle", "pln": ["(: cnet_atlocation_d2f011ef4a (AtLocation wire space_shuttle) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wood is located at boat", "pln": ["(: cnet_atlocation_d29738f259 (AtLocation wood boat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "wood is located at hardware store", "pln": ["(: cnet_atlocation_fe086e6d3b (AtLocation wood hardware_store) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wood is located at tree", "pln": ["(: cnet_atlocation_12d1ff32ff (AtLocation wood tree) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wood is located at country", "pln": ["(: cnet_atlocation_b76a5c20d7 (AtLocation wood country) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wood is located at rural area", "pln": ["(: cnet_atlocation_5adf7ee92a (AtLocation wood rural_area) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "woodwind instrument is located at music store", "pln": ["(: cnet_atlocation_7f2f625c65 (AtLocation woodwind_instrument music_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "woofer is located at speaker", "pln": ["(: cnet_atlocation_402d39d2ac (AtLocation woofer speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} {"nl": "wool is located at fabric store", "pln": ["(: cnet_atlocation_164f2f7012 (AtLocation wool fabric_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "words is located at newspaper", "pln": ["(: cnet_atlocation_90305eb603 (AtLocation words newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} -{"nl": "accountants is capable of cook books", "pln": ["(: cnet_capableof_77aa144df2 (CapableOf accountants cook_books) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "wool is located at sweater", "pln": ["(: cnet_atlocation_f834cbe914 (AtLocation wool sweater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "woolen fabric is located at sweater", "pln": ["(: cnet_atlocation_5c40008d46 (AtLocation woolen_fabric sweater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "word definition is located at dictionary", "pln": ["(: cnet_atlocation_1748ec37e3 (AtLocation word_definition dictionary) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "word is located at book", "pln": ["(: cnet_atlocation_dd48cee690 (AtLocation word book) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "word is located at newspaper", "pln": ["(: cnet_atlocation_4690926ee9 (AtLocation word newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "word is located at sentence", "pln": ["(: cnet_atlocation_4233c0d0e8 (AtLocation word sentence) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "work is located at desk", "pln": ["(: cnet_atlocation_dfc81ab3aa (AtLocation work desk) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "workbench is located at garage", "pln": ["(: cnet_atlocation_f9a5c35c76 (AtLocation workbench garage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "worker is located at work", "pln": ["(: cnet_atlocation_d46db2e5c7 (AtLocation worker work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "work of art is located at art show", "pln": ["(: cnet_atlocation_0cbdbbb1b6 (AtLocation work_of_art art_show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "world is located at galaxy", "pln": ["(: cnet_atlocation_354a7e6ebe (AtLocation world galaxy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "world is located at solar system", "pln": ["(: cnet_atlocation_bcfe4d6414 (AtLocation world solar_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "world is located at space", "pln": ["(: cnet_atlocation_1c845f6518 (AtLocation world space) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "world is located at universe", "pln": ["(: cnet_atlocation_a23c735903 (AtLocation world universe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "worm is located at ground", "pln": ["(: cnet_atlocation_d8613002ee (AtLocation worm ground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "worshiper is located at church", "pln": ["(: cnet_atlocation_b643f1b1c2 (AtLocation worshiper church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "worshiper is located at synagogue", "pln": ["(: cnet_atlocation_6b3ad31068 (AtLocation worshiper synagogue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "worshipper is located at church", "pln": ["(: cnet_atlocation_e47277dd5d (AtLocation worshipper church) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wound is located at body", "pln": ["(: cnet_atlocation_b4310edf6f (AtLocation wound body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wound is located at hospital", "pln": ["(: cnet_atlocation_352aec4770 (AtLocation wound hospital) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wound is located at patient", "pln": ["(: cnet_atlocation_a06326eca1 (AtLocation wound patient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wound is located at war", "pln": ["(: cnet_atlocation_31223b8ef0 (AtLocation wound war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wrapper is located at waste bin", "pln": ["(: cnet_atlocation_0b1a45a805 (AtLocation wrapper waste_bin) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wrench is located at repair shop", "pln": ["(: cnet_atlocation_0e4dca5077 (AtLocation wrench repair_shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wrinkle is located at finger", "pln": ["(: cnet_atlocation_e5c1245ab0 (AtLocation wrinkle finger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wrist rest is located at desk", "pln": ["(: cnet_atlocation_7c0f971b08 (AtLocation wrist_rest desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "wristwatch is located at jewelry store", "pln": ["(: cnet_atlocation_9fe71eb80e (AtLocation wristwatch jewelry_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "writing instrument is located at hand", "pln": ["(: cnet_atlocation_fad5832618 (AtLocation writing_instrument hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "xylophone is located at band", "pln": ["(: cnet_atlocation_91507f8084 (AtLocation xylophone band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "xylophone is located at percussion section", "pln": ["(: cnet_atlocation_32324075fa (AtLocation xylophone percussion_section) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "yard is located at city", "pln": ["(: cnet_atlocation_d021a7f5b4 (AtLocation yard city) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "yard is located at neighborhood", "pln": ["(: cnet_atlocation_5e6445a03a (AtLocation yard neighborhood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "yard is located at property", "pln": ["(: cnet_atlocation_8cc385e344 (AtLocation yard property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "young men is located at fraternity house", "pln": ["(: cnet_atlocation_ceb3021101 (AtLocation young_men fraternity_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "yoyo is located at toy shop", "pln": ["(: cnet_atlocation_c969154d55 (AtLocation yoyo toy_shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "yoyo is located at toystore or craftstore", "pln": ["(: cnet_atlocation_ca2c79fbbb (AtLocation yoyo toystore_or_craftstore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "zebra is located at zoo", "pln": ["(: cnet_atlocation_b7e5e7a674 (AtLocation zebra zoo) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "zombie is located at movie", "pln": ["(: cnet_atlocation_7b278762eb (AtLocation zombie movie) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "zoo keeper is located at zoo", "pln": ["(: cnet_atlocation_37e870a356 (AtLocation zoo_keeper zoo) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "zucchini is located at farmer s market", "pln": ["(: cnet_atlocation_52ef1a7868 (AtLocation zucchini farmer_s_market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "AtLocation"} +{"nl": "a is capable of container", "pln": ["(: cnet_capableof_45fe6fc74d (CapableOf a container) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "abortion is capable of kill fetus", "pln": ["(: cnet_capableof_c4b0a89a5d (CapableOf abortion kill_fetus) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "accident is capable of cause injury", "pln": ["(: cnet_capableof_8e8cf4f1a8 (CapableOf accident cause_injury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "accident is capable of happen to", "pln": ["(: cnet_capableof_9a32dd4e3c (CapableOf accident happen_to) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "accident is capable of happen to anybody", "pln": ["(: cnet_capableof_7f7e33c034 (CapableOf accident happen_to_anybody) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "accident is capable of slow down traffic", "pln": ["(: cnet_capableof_57101d83fe (CapableOf accident slow_down_traffic) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "accident is capable of slow traffic", "pln": ["(: cnet_capableof_1b54c96957 (CapableOf accident slow_traffic) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "accident is capable of happen anytime", "pln": ["(: cnet_capableof_4c71a222a5 (CapableOf accident happen_anytime) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "accountant is capable of cook book", "pln": ["(: cnet_capableof_55f9951d09 (CapableOf accountant cook_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "accused is capable of lie to court", "pln": ["(: cnet_capableof_54e4d1c5c6 (CapableOf accused lie_to_court) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "acid is capable of burn skin", "pln": ["(: cnet_capableof_d84ae4c06d (CapableOf acid burn_skin) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "actor is capable of act badly", "pln": ["(: cnet_capableof_f615ab7def (CapableOf actor act_badly) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "actor is capable of act scene in play", "pln": ["(: cnet_capableof_7fe0386efd (CapableOf actor act_scene_in_play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "actor is capable of appear in movie", "pln": ["(: cnet_capableof_1a87e888bd (CapableOf actor appear_in_movie) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "actor is capable of pretend", "pln": ["(: cnet_capableof_a770e4b2c8 (CapableOf actor pretend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "actor is capable of star in film", "pln": ["(: cnet_capableof_12cd197139 (CapableOf actor star_in_film) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "actor is capable of star in movie", "pln": ["(: cnet_capableof_2417e92e72 (CapableOf actor star_in_movie) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "actor is capable of act in movie", "pln": ["(: cnet_capableof_8962270352 (CapableOf actor act_in_movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "actor is capable of present performance", "pln": ["(: cnet_capableof_9d6704a209 (CapableOf actor present_performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "actress is capable of star in movie", "pln": ["(: cnet_capableof_e62f70e079 (CapableOf actress star_in_movie) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "actresses is capable of star in movies", "pln": ["(: cnet_capableof_dc3e3bb048 (CapableOf actresses star_in_movies) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "actress is capable of star in shakespeare play", "pln": ["(: cnet_capableof_ad19f997c5 (CapableOf actress star_in_shakespeare_play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "actress is capable of star in movy", "pln": ["(: cnet_capableof_7b0aa9813d (CapableOf actress star_in_movy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "addict is capable of need drug", "pln": ["(: cnet_capableof_c3ad6d0584 (CapableOf addict need_drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "adding water is capable of thin liquid", "pln": ["(: cnet_capableof_61c3a2856a (CapableOf adding_water thin_liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "adding water is capable of thin other liquid", "pln": ["(: cnet_capableof_8ee2390588 (CapableOf adding_water thin_other_liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "adult is capable of dress herself", "pln": ["(: cnet_capableof_2c137776db (CapableOf adult dress_herself) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "adult is capable of drink beer", "pln": ["(: cnet_capableof_b8a2ba34a1 (CapableOf adult drink_beer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "adult is capable of help child", "pln": ["(: cnet_capableof_1724016249 (CapableOf adult help_child) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "adult is capable of sign contract", "pln": ["(: cnet_capableof_ab8aaa4a84 (CapableOf adult sign_contract) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "adult is capable of work", "pln": ["(: cnet_capableof_23d28ccd14 (CapableOf adult work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "adult is capable of count", "pln": ["(: cnet_capableof_70c01ad6f4 (CapableOf adult count) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "adult is capable of dress themselve", "pln": ["(: cnet_capableof_39ac13fa86 (CapableOf adult dress_themselve) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "adult is capable of eat sushi", "pln": ["(: cnet_capableof_d752b7228d (CapableOf adult eat_sushi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "advertisement is capable of annoy", "pln": ["(: cnet_capableof_7dc5e08839 (CapableOf advertisement annoy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "advertiser is capable of market product", "pln": ["(: cnet_capableof_c7cdbacf83 (CapableOf advertiser market_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "advertising agency is capable of market product", "pln": ["(: cnet_capableof_71966d9951 (CapableOf advertising_agency market_product) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "aeroplane is capable of land on runway", "pln": ["(: cnet_capableof_a054d77749 (CapableOf aeroplane land_on_runway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "agoraphobe is capable of fear open space", "pln": ["(: cnet_capableof_03de4774a6 (CapableOf agoraphobe fear_open_space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "agoraphobic is capable of fear open space", "pln": ["(: cnet_capableof_71b277187a (CapableOf agoraphobic fear_open_space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "airplane is capable of arrive at airport", "pln": ["(: cnet_capableof_d09e565d87 (CapableOf airplane arrive_at_airport) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "airplane is capable of circle airport", "pln": ["(: cnet_capableof_46a75c8e83 (CapableOf airplane circle_airport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "airplane is capable of crash", "pln": ["(: cnet_capableof_af78445177 (CapableOf airplane crash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "alcohol is capable of burn", "pln": ["(: cnet_capableof_b08d8d37ae (CapableOf alcohol burn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "alcohol is capable of cloud judgement", "pln": ["(: cnet_capableof_e5dfcea0ec (CapableOf alcohol cloud_judgement) (STV 1.0 0.9804))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "alcohol is capable of cloud mind", "pln": ["(: cnet_capableof_3d4d4e973b (CapableOf alcohol cloud_mind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "alcohol is capable of destroy friendship", "pln": ["(: cnet_capableof_bc3f5b4ece (CapableOf alcohol destroy_friendship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "alcohol is capable of lead to drunken behavior", "pln": ["(: cnet_capableof_16ff35c7d1 (CapableOf alcohol lead_to_drunken_behavior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "alcohol is capable of slow thinking", "pln": ["(: cnet_capableof_5482fc5c71 (CapableOf alcohol slow_thinking) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "alcoholic is capable of bottom out", "pln": ["(: cnet_capableof_ab2fc8d1eb (CapableOf alcoholic bottom_out) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "alcoholic is capable of drink lot of booze", "pln": ["(: cnet_capableof_fa03b6a427 (CapableOf alcoholic drink_lot_of_booze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "alienate is capable of mean to estrange or make hostile", "pln": ["(: cnet_capableof_4a8721e687 (CapableOf alienate mean_to_estrange_or_make_hostile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "all effort is capable of amount to nothing", "pln": ["(: cnet_capableof_d6a4e97242 (CapableOf all_effort amount_to_nothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "all living thing is capable of grow", "pln": ["(: cnet_capableof_3c6a498a1a (CapableOf all_living_thing grow) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "american is capable of speak english", "pln": ["(: cnet_capableof_c09b4826c7 (CapableOf american speak_english) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "amish is capable of raise barn", "pln": ["(: cnet_capableof_f1cdbbf318 (CapableOf amish raise_barn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "android is capable of dream of electric sheep", "pln": ["(: cnet_capableof_381f3534d3 (CapableOf android dream_of_electric_sheep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "angry person is capable of storm out of room", "pln": ["(: cnet_capableof_3bb220274a (CapableOf angry_person storm_out_of_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "animal is capable of eating", "pln": ["(: cnet_capableof_d06a8b4f19 (CapableOf animal eating) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "animal is capable of feel pain", "pln": ["(: cnet_capableof_53e1b65dd7 (CapableOf animal feel_pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "animal is capable of live", "pln": ["(: cnet_capableof_53ec79430c (CapableOf animal live) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "animal is capable of live long", "pln": ["(: cnet_capableof_3536d0684d (CapableOf animal live_long) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "animal is capable of move itself about", "pln": ["(: cnet_capableof_02a6802a09 (CapableOf animal move_itself_about) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "animal is capable of bite", "pln": ["(: cnet_capableof_aad3f4c9c0 (CapableOf animal bite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "animal is capable of procreate", "pln": ["(: cnet_capableof_1fbc8db304 (CapableOf animal procreate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "animal is capable of reproduce asexually", "pln": ["(: cnet_capableof_228e61e8c9 (CapableOf animal reproduce_asexually) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "animal is capable of sense danger", "pln": ["(: cnet_capableof_de8a1560df (CapableOf animal sense_danger) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "animal is capable of sense environment", "pln": ["(: cnet_capableof_799ce774f9 (CapableOf animal sense_environment) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "animal is capable of sense fear", "pln": ["(: cnet_capableof_676ece8c5a (CapableOf animal sense_fear) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "animated flesh of dead person is capable of do what people do", "pln": ["(: cnet_capableof_d3e8a8a60d (CapableOf animated_flesh_of_dead_person do_what_people_do) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "animation is capable of draw attention", "pln": ["(: cnet_capableof_00cb41f013 (CapableOf animation draw_attention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ant is capable of crawl", "pln": ["(: cnet_capableof_3f24dc28b5 (CapableOf ant crawl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "anxiety is capable of cause one to lose sleep", "pln": ["(: cnet_capableof_f90eb1301d (CapableOf anxiety cause_one_to_lose_sleep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "anybody is capable of forget", "pln": ["(: cnet_capableof_896cfdd253 (CapableOf anybody forget) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "anyone is capable of answer question", "pln": ["(: cnet_capableof_83acf8877e (CapableOf anyone answer_question) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "anyone is capable of iron shirt", "pln": ["(: cnet_capableof_ad47c952ab (CapableOf anyone iron_shirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "anyone is capable of join club", "pln": ["(: cnet_capableof_9d724882e6 (CapableOf anyone join_club) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "arguing kids is capable of side against each other", "pln": ["(: cnet_capableof_c783f76411 (CapableOf arguing_kids side_against_each_other) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "anyone is capable of lose key", "pln": ["(: cnet_capableof_9b13cf1ad5 (CapableOf anyone lose_key) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "anyone is capable of voice opinion", "pln": ["(: cnet_capableof_da761b8a60 (CapableOf anyone voice_opinion) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "apple is capable of fall from tree", "pln": ["(: cnet_capableof_1f060711f5 (CapableOf apple fall_from_tree) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "appraiser is capable of value antique", "pln": ["(: cnet_capableof_58f74b177e (CapableOf appraiser value_antique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "apprentice is capable of master skill", "pln": ["(: cnet_capableof_0c6fe8d196 (CapableOf apprentice master_skill) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "arbiter is capable of settle dispute", "pln": ["(: cnet_capableof_330c7e45e6 (CapableOf arbiter settle_dispute) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "archaeologist is capable of date artifact", "pln": ["(: cnet_capableof_0774714463 (CapableOf archaeologist date_artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "architect is capable of complete floor plan", "pln": ["(: cnet_capableof_1121d7a2f5 (CapableOf architect complete_floor_plan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "architect is capable of position wall and plumbing with exactness", "pln": ["(: cnet_capableof_e5bb6aa8bb (CapableOf architect position_wall_and_plumbing_with_exactness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "architect is capable of plan building", "pln": ["(: cnet_capableof_9aaedae069 (CapableOf architect plan_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "arguing kid is capable of side against each other", "pln": ["(: cnet_capableof_539f1e3c53 (CapableOf arguing_kid side_against_each_other) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "army is capable of battle army", "pln": ["(: cnet_capableof_5e4b68bc91 (CapableOf army battle_army) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "army is capable of storm city", "pln": ["(: cnet_capableof_dbbe60539b (CapableOf army storm_city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "army is capable of advance toward enemy", "pln": ["(: cnet_capableof_5d03d8d314 (CapableOf army advance_toward_enemy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "army is capable of battle enemy", "pln": ["(: cnet_capableof_f80d379d51 (CapableOf army battle_enemy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "army is capable of guard country", "pln": ["(: cnet_capableof_b58a7f85d8 (CapableOf army guard_country) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "army is capable of storm castle", "pln": ["(: cnet_capableof_e05ddf1c75 (CapableOf army storm_castle) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "arrow is capable of hit target", "pln": ["(: cnet_capableof_7aab955706 (CapableOf arrow hit_target) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "artist is capable of create", "pln": ["(: cnet_capableof_df1742dd84 (CapableOf artist create) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "artist is capable of draw", "pln": ["(: cnet_capableof_93cc3c448d (CapableOf artist draw) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "artist is capable of letter sign", "pln": ["(: cnet_capableof_d04568e615 (CapableOf artist letter_sign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "artist is capable of paint", "pln": ["(: cnet_capableof_7da47d6120 (CapableOf artist paint) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "artist is capable of paint canva", "pln": ["(: cnet_capableof_a9e15ea932 (CapableOf artist paint_canva) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "artist is capable of paint portrait", "pln": ["(: cnet_capableof_dd067e7e19 (CapableOf artist paint_portrait) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "artist is capable of perfect technique", "pln": ["(: cnet_capableof_29d30b6b59 (CapableOf artist perfect_technique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "artist is capable of shade drawing", "pln": ["(: cnet_capableof_e7f1b6615d (CapableOf artist shade_drawing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "aspirin is capable of relieve headache pain", "pln": ["(: cnet_capableof_629480ebd5 (CapableOf aspirin relieve_headache_pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "astronaut is capable of journey to moon", "pln": ["(: cnet_capableof_8518cbe6fb (CapableOf astronaut journey_to_moon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "astronomer is capable of study star", "pln": ["(: cnet_capableof_439e9d146e (CapableOf astronomer study_star) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "atheist is capable of doubt existence of god", "pln": ["(: cnet_capableof_f185a57197 (CapableOf atheist doubt_existence_of_god) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "athlete is capable of attempt to break world record", "pln": ["(: cnet_capableof_338f01d574 (CapableOf athlete attempt_to_break_world_record) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "athlete is capable of break record", "pln": ["(: cnet_capableof_5472053b52 (CapableOf athlete break_record) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "athlete is capable of jump high", "pln": ["(: cnet_capableof_76951ba34f (CapableOf athlete jump_high) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "athlete is capable of play sport", "pln": ["(: cnet_capableof_f17e74756d (CapableOf athlete play_sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "attorney is capable of prove case", "pln": ["(: cnet_capableof_2450166764 (CapableOf attorney prove_case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "audience is capable of laugh at comedian", "pln": ["(: cnet_capableof_eaefdbc408 (CapableOf audience laugh_at_comedian) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "auditorium is capable of seat many people", "pln": ["(: cnet_capableof_918f925617 (CapableOf auditorium seat_many_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "author is capable of write book", "pln": ["(: cnet_capableof_b2bddc2114 (CapableOf author write_book) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "author is capable of write poem", "pln": ["(: cnet_capableof_3acfc489ad (CapableOf author write_poem) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "authors is capable of write book", "pln": ["(: cnet_capableof_918eef5ef4 (CapableOf authors write_book) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "automobile is capable of transport thing", "pln": ["(: cnet_capableof_cf1191512b (CapableOf automobile transport_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ax is capable of hurt person", "pln": ["(: cnet_capableof_4d2df08aa7 (CapableOf ax hurt_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "baby is capable of cry loud", "pln": ["(: cnet_capableof_7caf3b392c (CapableOf baby cry_loud) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "baby is capable of wave bye bye", "pln": ["(: cnet_capableof_c8aa5aa545 (CapableOf baby wave_bye_bye) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "baby is capable of cry", "pln": ["(: cnet_capableof_b4abf8e86c (CapableOf baby cry) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "baby is capable of cry lot", "pln": ["(: cnet_capableof_4fcc53c10f (CapableOf baby cry_lot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "baby is capable of cry loudly", "pln": ["(: cnet_capableof_9e4edb73eb (CapableOf baby cry_loudly) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "bad things is capable of happen to", "pln": ["(: cnet_capableof_3618d19830 (CapableOf bad_things happen_to) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "bag is capable of carry groceries", "pln": ["(: cnet_capableof_6632edeb0c (CapableOf bag carry_groceries) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "bag is capable of carry groceries in", "pln": ["(: cnet_capableof_1c15a0bc1f (CapableOf bag carry_groceries_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "baby is capable of sleep in crib", "pln": ["(: cnet_capableof_4f7f8330c0 (CapableOf baby sleep_in_crib) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "baby is capable of wet diaper", "pln": ["(: cnet_capableof_4a68ac88c9 (CapableOf baby wet_diaper) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "babysitter is capable of mind baby", "pln": ["(: cnet_capableof_583bc1d302 (CapableOf babysitter mind_baby) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "babysitter is capable of mind children", "pln": ["(: cnet_capableof_54234d1a55 (CapableOf babysitter mind_children) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bad thing is capable of happen to", "pln": ["(: cnet_capableof_75ef8f84a1 (CapableOf bad_thing happen_to) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bad thing is capable of happen to good people", "pln": ["(: cnet_capableof_883cad5b77 (CapableOf bad_thing happen_to_good_people) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bag is capable of carry grocery", "pln": ["(: cnet_capableof_0097408e01 (CapableOf bag carry_grocery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bag is capable of carry grocery in", "pln": ["(: cnet_capableof_d3799c093e (CapableOf bag carry_grocery_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "baker is capable of make cake", "pln": ["(: cnet_capableof_59ae6800b3 (CapableOf baker make_cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "baker is capable of roll dough", "pln": ["(: cnet_capableof_fe8bbb298d (CapableOf baker roll_dough) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ball is capable of bounce", "pln": ["(: cnet_capableof_b0590daa74 (CapableOf ball bounce) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ball is capable of break window", "pln": ["(: cnet_capableof_5108782095 (CapableOf ball break_window) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ball is capable of hit wall", "pln": ["(: cnet_capableof_141e3df742 (CapableOf ball hit_wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ball is capable of roll", "pln": ["(: cnet_capableof_8c50632f50 (CapableOf ball roll) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "ball is capable of roll down hill", "pln": ["(: cnet_capableof_f0ce24d007 (CapableOf ball roll_down_hill) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "bears is capable of fish for salmon", "pln": ["(: cnet_capableof_4788b99c82 (CapableOf bears fish_for_salmon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ball is capable of roll down stair", "pln": ["(: cnet_capableof_924f29e571 (CapableOf ball roll_down_stair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ball is capable of roll under table", "pln": ["(: cnet_capableof_d4c474b288 (CapableOf ball roll_under_table) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ball is capable of roll very well", "pln": ["(: cnet_capableof_84e15010b3 (CapableOf ball roll_very_well) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ball is capable of rolling downhill", "pln": ["(: cnet_capableof_752e189322 (CapableOf ball rolling_downhill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ball is capable of strike window", "pln": ["(: cnet_capableof_63f6c61e92 (CapableOf ball strike_window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ballerina is capable of dance gracefully", "pln": ["(: cnet_capableof_fab818ed58 (CapableOf ballerina dance_gracefully) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ball is capable of pop", "pln": ["(: cnet_capableof_79093333f6 (CapableOf ball pop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ball is capable of roll away", "pln": ["(: cnet_capableof_d6bc762828 (CapableOf ball roll_away) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "band is capable of play music", "pln": ["(: cnet_capableof_bcf2fbac5b (CapableOf band play_music) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bank is capable of charge interest", "pln": ["(: cnet_capableof_45ccb5a751 (CapableOf bank charge_interest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bank is capable of store money", "pln": ["(: cnet_capableof_8183f71517 (CapableOf bank store_money) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "banker is capable of lend money", "pln": ["(: cnet_capableof_0dd4b04bed (CapableOf banker lend_money) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "barack obama is capable of give speeche", "pln": ["(: cnet_capableof_cddf57797f (CapableOf barack_obama give_speeche) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "baseball bat is capable of break window", "pln": ["(: cnet_capableof_3a5e84de1a (CapableOf baseball_bat break_window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "baseball bat is capable of hurt", "pln": ["(: cnet_capableof_9ba5bf8674 (CapableOf baseball_bat hurt) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "baseball player is capable of hit home run", "pln": ["(: cnet_capableof_01d63ad074 (CapableOf baseball_player hit_home_run) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "baseball player is capable of throw", "pln": ["(: cnet_capableof_5ec9261612 (CapableOf baseball_player throw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "baseball player is capable of strike out", "pln": ["(: cnet_capableof_1f909d26d6 (CapableOf baseball_player strike_out) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bat is capable of eat mosquitoe", "pln": ["(: cnet_capableof_9196523d03 (CapableOf bat eat_mosquitoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bat is capable of strike ball", "pln": ["(: cnet_capableof_74008c53e8 (CapableOf bat strike_ball) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bat is capable of fly", "pln": ["(: cnet_capableof_4bc7a14c8a (CapableOf bat fly) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bat is capable of hang upside down", "pln": ["(: cnet_capableof_9a3a4697d1 (CapableOf bat hang_upside_down) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bat is capable of hit ball", "pln": ["(: cnet_capableof_d555e5143d (CapableOf bat hit_ball) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "batter is capable of crowd plate", "pln": ["(: cnet_capableof_e52a98a3de (CapableOf batter crowd_plate) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "batter is capable of hit ball", "pln": ["(: cnet_capableof_368e45bdb6 (CapableOf batter hit_ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "batter is capable of hit baseball", "pln": ["(: cnet_capableof_a01435f0ee (CapableOf batter hit_baseball) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "batter is capable of strike out", "pln": ["(: cnet_capableof_9ec7a1f07f (CapableOf batter strike_out) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "battery is capable of power electronic device", "pln": ["(: cnet_capableof_473a7275c6 (CapableOf battery power_electronic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "battery is capable of power flashlight", "pln": ["(: cnet_capableof_35f6d3ce67 (CapableOf battery power_flashlight) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "battery is capable of power radio", "pln": ["(: cnet_capableof_6f8cb12534 (CapableOf battery power_radio) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "battery is capable of power toy", "pln": ["(: cnet_capableof_e001e3212b (CapableOf battery power_toy) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "battery charger is capable of charge battery", "pln": ["(: cnet_capableof_436431f759 (CapableOf battery_charger charge_battery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bear is capable of fish for salmon", "pln": ["(: cnet_capableof_d6c3412e97 (CapableOf bear fish_for_salmon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bear is capable of fish with it s paw", "pln": ["(: cnet_capableof_11af232359 (CapableOf bear fish_with_it_s_paw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bear is capable of hunt rabbit", "pln": ["(: cnet_capableof_6fb1c811af (CapableOf bear hunt_rabbit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bear is capable of winter over in den", "pln": ["(: cnet_capableof_ad23d76bda (CapableOf bear winter_over_in_den) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "beautiful woman is capable of stop traffic", "pln": ["(: cnet_capableof_5dac60e9e7 (CapableOf beautiful_woman stop_traffic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "bees is capable of make honey", "pln": ["(: cnet_capableof_aec6bdbc08 (CapableOf bees make_honey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "beaver is capable of build dam", "pln": ["(: cnet_capableof_e8885d09d3 (CapableOf beaver build_dam) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bee is capable of sting", "pln": ["(: cnet_capableof_3c3d010f09 (CapableOf bee sting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "beer is capable of cloud judgment", "pln": ["(: cnet_capableof_20c884e896 (CapableOf beer cloud_judgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bee is capable of live in hive", "pln": ["(: cnet_capableof_b084bd8cae (CapableOf bee live_in_hive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bee is capable of make honey", "pln": ["(: cnet_capableof_7ef699fdb3 (CapableOf bee make_honey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "belief is capable of include fantasy", "pln": ["(: cnet_capableof_a201ba686b (CapableOf belief include_fantasy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bell is capable of ring", "pln": ["(: cnet_capableof_089b463bae (CapableOf bell ring) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bicycle is capable of go over 40mph", "pln": ["(: cnet_capableof_54826b3139 (CapableOf bicycle go_over_40mph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "big boy is capable of dress himself", "pln": ["(: cnet_capableof_7e22ef237f (CapableOf big_boy dress_himself) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bird is capable of build nest", "pln": ["(: cnet_capableof_9edabd295c (CapableOf bird build_nest) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bird is capable of chirp", "pln": ["(: cnet_capableof_ea04cf6e5c (CapableOf bird chirp) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bird is capable of fly", "pln": ["(: cnet_capableof_6b52f10d6a (CapableOf bird fly) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bird is capable of fly high", "pln": ["(: cnet_capableof_2eee120517 (CapableOf bird fly_high) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bird is capable of head south", "pln": ["(: cnet_capableof_a87f9b63af (CapableOf bird head_south) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "bird is capable of land on branch", "pln": ["(: cnet_capableof_fa685bcad3 (CapableOf bird land_on_branch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "birds is capable of sing songs", "pln": ["(: cnet_capableof_a69fadc08c (CapableOf birds sing_songs) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bird is capable of learn to fly", "pln": ["(: cnet_capableof_fecd0dd6db (CapableOf bird learn_to_fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bird is capable of pet", "pln": ["(: cnet_capableof_3fc60500e1 (CapableOf bird pet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bird is capable of prepare nest", "pln": ["(: cnet_capableof_99aab5e803 (CapableOf bird prepare_nest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bird is capable of sing", "pln": ["(: cnet_capableof_107d76a75c (CapableOf bird sing) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bird is capable of sing song", "pln": ["(: cnet_capableof_4cea8a853b (CapableOf bird sing_song) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bird is capable of spread wing", "pln": ["(: cnet_capableof_8758090f75 (CapableOf bird spread_wing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bird is capable of fear cat", "pln": ["(: cnet_capableof_097de77163 (CapableOf bird fear_cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bird is capable of gather stick to make nest", "pln": ["(: cnet_capableof_ef7d8367b1 (CapableOf bird gather_stick_to_make_nest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bird is capable of lay egg", "pln": ["(: cnet_capableof_37526378eb (CapableOf bird lay_egg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "black cat is capable of cross path", "pln": ["(: cnet_capableof_395b717896 (CapableOf black_cat cross_path) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "blacksmith is capable of shoe horse", "pln": ["(: cnet_capableof_9b446d9068 (CapableOf blacksmith shoe_horse) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "blacksmith is capable of shoe hors", "pln": ["(: cnet_capableof_1550cfb3f3 (CapableOf blacksmith shoe_hors) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "blanket is capable of cover bed", "pln": ["(: cnet_capableof_5abdcab58e (CapableOf blanket cover_bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "blanket is capable of warm person", "pln": ["(: cnet_capableof_087866874b (CapableOf blanket warm_person) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "blind people is capable of read using braile system", "pln": ["(: cnet_capableof_020f0c075c (CapableOf blind_people read_using_braile_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "block of wood is capable of wedge door", "pln": ["(: cnet_capableof_588b880fa0 (CapableOf block_of_wood wedge_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "block of wood is capable of wedge in door", "pln": ["(: cnet_capableof_1a4b892bc6 (CapableOf block_of_wood wedge_in_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "blood is capable of course through vein", "pln": ["(: cnet_capableof_2a1ae010d4 (CapableOf blood course_through_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "blood is capable of coursing through vein", "pln": ["(: cnet_capableof_03466f2ae2 (CapableOf blood coursing_through_vein) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "boat is capable of go on water", "pln": ["(: cnet_capableof_81aad4a128 (CapableOf boat go_on_water) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "boat is capable of ship cargo", "pln": ["(: cnet_capableof_97cf0b37cb (CapableOf boat ship_cargo) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "boat is capable of sail ocean", "pln": ["(: cnet_capableof_baa3b82fa2 (CapableOf boat sail_ocean) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bomb is capable of destroy city", "pln": ["(: cnet_capableof_3cb76340e4 (CapableOf bomb destroy_city) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bomb is capable of destroy building", "pln": ["(: cnet_capableof_1f4a554abc (CapableOf bomb destroy_building) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bomb is capable of explode", "pln": ["(: cnet_capableof_679eb00206 (CapableOf bomb explode) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bone is capable of break", "pln": ["(: cnet_capableof_a679cd7682 (CapableOf bone break) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "border is capable of divide two country", "pln": ["(: cnet_capableof_f99df7ebfa (CapableOf border divide_two_country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "border is capable of divide country", "pln": ["(: cnet_capableof_853ef7b514 (CapableOf border divide_country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "borrower is capable of return book to library", "pln": ["(: cnet_capableof_b3e7458fda (CapableOf borrower return_book_to_library) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "boss is capable of consider giving raise", "pln": ["(: cnet_capableof_a5b1bfcb8c (CapableOf boss consider_giving_raise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "boss is capable of page employee", "pln": ["(: cnet_capableof_ac5389476c (CapableOf boss page_employee) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "botanist is capable of study plant", "pln": ["(: cnet_capableof_4e66bf44e9 (CapableOf botanist study_plant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "boxer is capable of fight opponent", "pln": ["(: cnet_capableof_760d8ff091 (CapableOf boxer fight_opponent) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "boxers is capable of train to fight", "pln": ["(: cnet_capableof_c5b1568f70 (CapableOf boxers train_to_fight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "brainstorming is capable of mine ideas from group", "pln": ["(: cnet_capableof_594abfdc26 (CapableOf brainstorming mine_ideas_from_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "boxer is capable of hurt opponent", "pln": ["(: cnet_capableof_6c351fca39 (CapableOf boxer hurt_opponent) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "boxer is capable of strike opponent", "pln": ["(: cnet_capableof_f24b2d200f (CapableOf boxer strike_opponent) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "boxer is capable of train for fight", "pln": ["(: cnet_capableof_6ca6e2c74d (CapableOf boxer train_for_fight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "boxer is capable of train to fight", "pln": ["(: cnet_capableof_2b3293abf4 (CapableOf boxer train_to_fight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "boxe is capable of hold thing", "pln": ["(: cnet_capableof_af4e812516 (CapableOf boxe hold_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "brain is capable of splatter", "pln": ["(: cnet_capableof_62b4fbda92 (CapableOf brain splatter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "brain is capable of think about many thing", "pln": ["(: cnet_capableof_6d35a5d97b (CapableOf brain think_about_many_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "brainstorming is capable of mine idea from group", "pln": ["(: cnet_capableof_079e82cc84 (CapableOf brainstorming mine_idea_from_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "brake is capable of slow car", "pln": ["(: cnet_capableof_7efcb94e23 (CapableOf brake slow_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "brake is capable of slow vehicle", "pln": ["(: cnet_capableof_5be5e3397a (CapableOf brake slow_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "brewer is capable of bottle beer", "pln": ["(: cnet_capableof_f6358b3658 (CapableOf brewer bottle_beer) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "brewery is capable of bottle beer", "pln": ["(: cnet_capableof_0e8719a4d4 (CapableOf brewery bottle_beer) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bride is capable of plan wedding", "pln": ["(: cnet_capableof_54598dff0d (CapableOf bride plan_wedding) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bridge is capable of bridge ravine", "pln": ["(: cnet_capableof_854afc8eaa (CapableOf bridge bridge_ravine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bridge is capable of cross river", "pln": ["(: cnet_capableof_f1f948fe34 (CapableOf bridge cross_river) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "broker is capable of trade stock", "pln": ["(: cnet_capableof_cfb3ef8bc6 (CapableOf broker trade_stock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "broker is capable of trading stock", "pln": ["(: cnet_capableof_ef346947aa (CapableOf broker trading_stock) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "brother is capable of bug sister", "pln": ["(: cnet_capableof_d7b690040d (CapableOf brother bug_sister) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bucket is capable of carry water", "pln": ["(: cnet_capableof_5a450e2f57 (CapableOf bucket carry_water) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bucket is capable of hold water", "pln": ["(: cnet_capableof_0fcedda218 (CapableOf bucket hold_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "buddha is capable of show dharma", "pln": ["(: cnet_capableof_a715b55c82 (CapableOf buddha show_dharma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "building is capable of fall down", "pln": ["(: cnet_capableof_f51020c149 (CapableOf building fall_down) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "building is capable of weather storm", "pln": ["(: cnet_capableof_0d34ba335a (CapableOf building weather_storm) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bull is capable of charge matador", "pln": ["(: cnet_capableof_7e88602f40 (CapableOf bull charge_matador) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bulldozer is capable of move dirt", "pln": ["(: cnet_capableof_a0e9dd4f2c (CapableOf bulldozer move_dirt) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bull is capable of charge at people", "pln": ["(: cnet_capableof_d22cbe4dab (CapableOf bull charge_at_people) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bull is capable of charge people", "pln": ["(: cnet_capableof_882252adbe (CapableOf bull charge_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "bullying is capable of costly", "pln": ["(: cnet_capableof_655bab265f (CapableOf bullying costly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "burglar is capable of case joint", "pln": ["(: cnet_capableof_c2c140bf66 (CapableOf burglar case_joint) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "burgler is capable of fence stolen good", "pln": ["(: cnet_capableof_9933eff595 (CapableOf burgler fence_stolen_good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "bus is capable of transport people", "pln": ["(: cnet_capableof_a53bb694fa (CapableOf bus transport_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "busboy is capable of bus table", "pln": ["(: cnet_capableof_398c681e45 (CapableOf busboy bus_table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "busboy is capable of clear table", "pln": ["(: cnet_capableof_0ff9945071 (CapableOf busboy clear_table) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "butcher is capable of cut meat", "pln": ["(: cnet_capableof_b22edf9c25 (CapableOf butcher cut_meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "butcher is capable of quarter carcass", "pln": ["(: cnet_capableof_413220ac5f (CapableOf butcher quarter_carcass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "butter is capable of coat frying pan", "pln": ["(: cnet_capableof_54a5bb8f0f (CapableOf butter coat_frying_pan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "butter is capable of spread at room temperature", "pln": ["(: cnet_capableof_5b59dc4ae2 (CapableOf butter spread_at_room_temperature) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "butter is capable of spread on bread", "pln": ["(: cnet_capableof_afde3e34ee (CapableOf butter spread_on_bread) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "butter knife is capable of butter bread", "pln": ["(: cnet_capableof_e98739dfcb (CapableOf butter_knife butter_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "can openers is capable of open cans", "pln": ["(: cnet_capableof_3f92dee8be (CapableOf can_openers open_cans) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "butterfly is capable of fly", "pln": ["(: cnet_capableof_fa648fd463 (CapableOf butterfly fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "buyer is capable of offer money to seller", "pln": ["(: cnet_capableof_09ba35196d (CapableOf buyer offer_money_to_seller) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cacti is capable of grow in desert", "pln": ["(: cnet_capableof_d1b8276335 (CapableOf cacti grow_in_desert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "caffeine is capable of keep awake", "pln": ["(: cnet_capableof_1f31cc2015 (CapableOf caffeine keep_awake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "camper is capable of sleep in tent", "pln": ["(: cnet_capableof_07eca009fa (CapableOf camper sleep_in_tent) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "can opener is capable of open can", "pln": ["(: cnet_capableof_b8e8e4541b (CapableOf can_opener open_can) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cancer is capable of hurry death", "pln": ["(: cnet_capableof_2517ff2240 (CapableOf cancer hurry_death) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cancer is capable of kill", "pln": ["(: cnet_capableof_3700e0e595 (CapableOf cancer kill) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cancer is capable of result in death", "pln": ["(: cnet_capableof_7e2e45523b (CapableOf cancer result_in_death) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "candle is capable of emit light", "pln": ["(: cnet_capableof_af7e4607c7 (CapableOf candle emit_light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "candy is capable of taste good", "pln": ["(: cnet_capableof_5de813be70 (CapableOf candy taste_good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cannibal is capable of cook human", "pln": ["(: cnet_capableof_23367a4cb4 (CapableOf cannibal cook_human) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cannibal is capable of interesting subject of study", "pln": ["(: cnet_capableof_2bd05e48a5 (CapableOf cannibal interesting_subject_of_study) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cannon is capable of fire cannonball", "pln": ["(: cnet_capableof_596049ab94 (CapableOf cannon fire_cannonball) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "captain is capable of captain boat", "pln": ["(: cnet_capableof_3e4c96963e (CapableOf captain captain_boat) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "captain is capable of captain ship", "pln": ["(: cnet_capableof_b3edb7493c (CapableOf captain captain_ship) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "captor is capable of force will on prisoner", "pln": ["(: cnet_capableof_e42aa7c7ef (CapableOf captor force_will_on_prisoner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "car is capable of come up drive", "pln": ["(: cnet_capableof_ba70244850 (CapableOf car come_up_drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "car is capable of cost lot of money", "pln": ["(: cnet_capableof_6961848d5c (CapableOf car cost_lot_of_money) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "car is capable of cost money", "pln": ["(: cnet_capableof_0dd194874a (CapableOf car cost_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "car is capable of crash", "pln": ["(: cnet_capableof_565c67ccfc (CapableOf car crash) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "car is capable of enter garage", "pln": ["(: cnet_capableof_2cb41236f5 (CapableOf car enter_garage) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "car is capable of go fast", "pln": ["(: cnet_capableof_4b8c96c0a7 (CapableOf car go_fast) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "car is capable of head north", "pln": ["(: cnet_capableof_bc0fc6d933 (CapableOf car head_north) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "car is capable of heading north", "pln": ["(: cnet_capableof_001c953ad1 (CapableOf car heading_north) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "car is capable of move person", "pln": ["(: cnet_capableof_7af372b4fe (CapableOf car move_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "car is capable of move quickly", "pln": ["(: cnet_capableof_80792a47f4 (CapableOf car move_quickly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "car is capable of need petrol", "pln": ["(: cnet_capableof_612141c6b8 (CapableOf car need_petrol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "car is capable of pass another car", "pln": ["(: cnet_capableof_e377aa3cc3 (CapableOf car pass_another_car) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "car is capable of pass bus", "pln": ["(: cnet_capableof_328526ea24 (CapableOf car pass_bus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "car is capable of pass other car", "pln": ["(: cnet_capableof_0cf8ef4be6 (CapableOf car pass_other_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "car is capable of roll downhill", "pln": ["(: cnet_capableof_041ccc70b7 (CapableOf car roll_downhill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "car is capable of roll over", "pln": ["(: cnet_capableof_8da8cfe9e5 (CapableOf car roll_over) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "car is capable of rush through traffic", "pln": ["(: cnet_capableof_caceb19bda (CapableOf car rush_through_traffic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "car is capable of slow down", "pln": ["(: cnet_capableof_633086488e (CapableOf car slow_down) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "cars is capable of cost money", "pln": ["(: cnet_capableof_e1e657c76e (CapableOf cars cost_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "car horn is capable of honk", "pln": ["(: cnet_capableof_7854e12039 (CapableOf car_horn honk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "card dealer is capable of deal card", "pln": ["(: cnet_capableof_dc9291893a (CapableOf card_dealer deal_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "carelessness is capable of increase risk", "pln": ["(: cnet_capableof_99a4f57aba (CapableOf carelessness increase_risk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "carpenter is capable of build house", "pln": ["(: cnet_capableof_136c9e756a (CapableOf carpenter build_house) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "carpenter is capable of hammer nail", "pln": ["(: cnet_capableof_fab5288511 (CapableOf carpenter hammer_nail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "carpenter is capable of measure board", "pln": ["(: cnet_capableof_635c7f7e45 (CapableOf carpenter measure_board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "carpenter is capable of side house", "pln": ["(: cnet_capableof_e3b9348584 (CapableOf carpenter side_house) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "carpenter is capable of build hous", "pln": ["(: cnet_capableof_6cebaf340b (CapableOf carpenter build_hous) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "carpenter is capable of lay flooring", "pln": ["(: cnet_capableof_2ecb1a9cf9 (CapableOf carpenter lay_flooring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "carpenter is capable of nail thing with hammer", "pln": ["(: cnet_capableof_dd1906ff8c (CapableOf carpenter nail_thing_with_hammer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "carrot is capable of choped", "pln": ["(: cnet_capableof_27145bcefb (CapableOf carrot choped) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "car is capable of driven", "pln": ["(: cnet_capableof_83fa1c68ea (CapableOf car driven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "car is capable of move people", "pln": ["(: cnet_capableof_9fab208dc4 (CapableOf car move_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "car is capable of race", "pln": ["(: cnet_capableof_e0c2e69396 (CapableOf car race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "car is capable of take people place", "pln": ["(: cnet_capableof_b1378fa62b (CapableOf car take_people_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "car is capable of use fuel", "pln": ["(: cnet_capableof_1768173bbc (CapableOf car use_fuel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cashier is capable of short customer", "pln": ["(: cnet_capableof_9e2e74a4ba (CapableOf cashier short_customer) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cashier is capable of thank customer", "pln": ["(: cnet_capableof_5eecefa5ae (CapableOf cashier thank_customer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of catch bird", "pln": ["(: cnet_capableof_59cb4249d0 (CapableOf cat catch_bird) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of catch mouse", "pln": ["(: cnet_capableof_72b06d8764 (CapableOf cat catch_mouse) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of cleaning itself", "pln": ["(: cnet_capableof_4243839e46 (CapableOf cat cleaning_itself) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of climb up tree", "pln": ["(: cnet_capableof_4781336d87 (CapableOf cat climb_up_tree) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of corner mouse", "pln": ["(: cnet_capableof_3c9c0d421e (CapableOf cat corner_mouse) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of drink milk", "pln": ["(: cnet_capableof_462378a441 (CapableOf cat drink_milk) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "cat is capable of drink water", "pln": ["(: cnet_capableof_e42609a1e2 (CapableOf cat drink_water) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "cat is capable of eat bird", "pln": ["(: cnet_capableof_13d8ced160 (CapableOf cat eat_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of eat cat food", "pln": ["(: cnet_capableof_60c9160544 (CapableOf cat eat_cat_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of eye mouse", "pln": ["(: cnet_capableof_dc9804de28 (CapableOf cat eye_mouse) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of fight dog", "pln": ["(: cnet_capableof_9589735ffd (CapableOf cat fight_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "cat is capable of hide under bed", "pln": ["(: cnet_capableof_ac553e482a (CapableOf cat hide_under_bed) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of hunt mice", "pln": ["(: cnet_capableof_c870d957be (CapableOf cat hunt_mice) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of kill bird", "pln": ["(: cnet_capableof_ced246faca (CapableOf cat kill_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "cat is capable of kill mouse", "pln": ["(: cnet_capableof_7f30c6e24a (CapableOf cat kill_mouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of look at king", "pln": ["(: cnet_capableof_61694c433f (CapableOf cat look_at_king) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of meow", "pln": ["(: cnet_capableof_576753e535 (CapableOf cat meow) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of miaow", "pln": ["(: cnet_capableof_7192a434e5 (CapableOf cat miaow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of mother kitten", "pln": ["(: cnet_capableof_ab54c58d02 (CapableOf cat mother_kitten) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of scratch", "pln": ["(: cnet_capableof_8873e6493f (CapableOf cat scratch) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of scratch furniture", "pln": ["(: cnet_capableof_f635e8d3b5 (CapableOf cat scratch_furniture) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of see in dark", "pln": ["(: cnet_capableof_4f1c6c5e4d (CapableOf cat see_in_dark) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of sleep", "pln": ["(: cnet_capableof_2c1f43ff97 (CapableOf cat sleep) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of sleep all day", "pln": ["(: cnet_capableof_69ec3cc7e3 (CapableOf cat sleep_all_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of sleep most of day", "pln": ["(: cnet_capableof_dccb927fad (CapableOf cat sleep_most_of_day) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of sleep most of time", "pln": ["(: cnet_capableof_c0f3069671 (CapableOf cat sleep_most_of_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of sleep on windowsill", "pln": ["(: cnet_capableof_20a289db3c (CapableOf cat sleep_on_windowsill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of sun itself", "pln": ["(: cnet_capableof_311f9d1495 (CapableOf cat sun_itself) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of sun on porch", "pln": ["(: cnet_capableof_b5def06dcb (CapableOf cat sun_on_porch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of wash itself", "pln": ["(: cnet_capableof_7b6796f269 (CapableOf cat wash_itself) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of wash itself with tongue", "pln": ["(: cnet_capableof_b80ba240d8 (CapableOf cat wash_itself_with_tongue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of wash paw", "pln": ["(: cnet_capableof_3a875cdc38 (CapableOf cat wash_paw) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of watch mouse", "pln": ["(: cnet_capableof_8cb82cc939 (CapableOf cat watch_mouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of annoy", "pln": ["(: cnet_capableof_0f766a7755 (CapableOf cat annoy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of chase mice", "pln": ["(: cnet_capableof_ae1c8fa3b1 (CapableOf cat chase_mice) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of corner mice", "pln": ["(: cnet_capableof_67668b5be4 (CapableOf cat corner_mice) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of eat meat", "pln": ["(: cnet_capableof_8e3438cac5 (CapableOf cat eat_meat) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of eat mice", "pln": ["(: cnet_capableof_e91e4ae262 (CapableOf cat eat_mice) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of eating cat food", "pln": ["(: cnet_capableof_e0d5f3d7d1 (CapableOf cat eating_cat_food) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of excrete", "pln": ["(: cnet_capableof_3be355cb6e (CapableOf cat excrete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of fancy catnip", "pln": ["(: cnet_capableof_085e4a6ebd (CapableOf cat fancy_catnip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of kill mice", "pln": ["(: cnet_capableof_ad22db57f0 (CapableOf cat kill_mice) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of lie down", "pln": ["(: cnet_capableof_389809d36f (CapableOf cat lie_down) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of need food", "pln": ["(: cnet_capableof_937dccf0cb (CapableOf cat need_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of please human", "pln": ["(: cnet_capableof_754b18e539 (CapableOf cat please_human) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cat is capable of see well in dark", "pln": ["(: cnet_capableof_e13486094c (CapableOf cat see_well_in_dark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cds is capable of store music", "pln": ["(: cnet_capableof_a05f81391f (CapableOf cds store_music) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "celebrity is capable of sign autograph", "pln": ["(: cnet_capableof_6438912233 (CapableOf celebrity sign_autograph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "chairman is capable of chair meeting", "pln": ["(: cnet_capableof_76c318b9c1 (CapableOf chairman chair_meeting) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "chefs is capable of prepare meals", "pln": ["(: cnet_capableof_d7fb707e2a (CapableOf chefs prepare_meals) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "chairperson is capable of chair meeting", "pln": ["(: cnet_capableof_087dbba6d4 (CapableOf chairperson chair_meeting) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cheese is capable of age to get better", "pln": ["(: cnet_capableof_e34fffaf14 (CapableOf cheese age_to_get_better) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cheese is capable of age well", "pln": ["(: cnet_capableof_deddd98912 (CapableOf cheese age_well) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cheese is capable of smell badly", "pln": ["(: cnet_capableof_250284bd1f (CapableOf cheese smell_badly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "chef is capable of bone chicken", "pln": ["(: cnet_capableof_4da4306fbc (CapableOf chef bone_chicken) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "chef is capable of bone fish", "pln": ["(: cnet_capableof_36c03a1770 (CapableOf chef bone_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "chef is capable of bread chicken", "pln": ["(: cnet_capableof_9dd44b5f9b (CapableOf chef bread_chicken) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "chef is capable of cook", "pln": ["(: cnet_capableof_130245bcbe (CapableOf chef cook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "chef is capable of cook dinner", "pln": ["(: cnet_capableof_9347026922 (CapableOf chef cook_dinner) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "chef is capable of cook dish", "pln": ["(: cnet_capableof_2a5b026bd7 (CapableOf chef cook_dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "chef is capable of cook dishe", "pln": ["(: cnet_capableof_12c75520cc (CapableOf chef cook_dishe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "chef is capable of cook gourmet meal", "pln": ["(: cnet_capableof_0b6ca88e81 (CapableOf chef cook_gourmet_meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "chef is capable of cook very well", "pln": ["(: cnet_capableof_093ba806aa (CapableOf chef cook_very_well) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "chef is capable of prepare food", "pln": ["(: cnet_capableof_7bed3adaed (CapableOf chef prepare_food) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "chef is capable of prepare meal", "pln": ["(: cnet_capableof_a71dd54354 (CapableOf chef prepare_meal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "chef is capable of season food", "pln": ["(: cnet_capableof_5465ba87a3 (CapableOf chef season_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "chef is capable of season meat", "pln": ["(: cnet_capableof_b1a4ae014f (CapableOf chef season_meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "chef is capable of cook well", "pln": ["(: cnet_capableof_1e61bb05f3 (CapableOf chef cook_well) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cherry is capable of grow on tree", "pln": ["(: cnet_capableof_86fc7990e8 (CapableOf cherry grow_on_tree) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "chess player is capable of position piece", "pln": ["(: cnet_capableof_6dbb463fec (CapableOf chess_player position_piece) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "chess queen is capable of move in direction", "pln": ["(: cnet_capableof_15b0084d29 (CapableOf chess_queen move_in_direction) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "chicken is capable of cross road", "pln": ["(: cnet_capableof_a0982501e4 (CapableOf chicken cross_road) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "chickens is capable of cross roads", "pln": ["(: cnet_capableof_a6ef1e922f (CapableOf chickens cross_roads) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "chicken is capable of lay egg", "pln": ["(: cnet_capableof_552a024a26 (CapableOf chicken lay_egg) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "chicken is capable of produce egg", "pln": ["(: cnet_capableof_09684479af (CapableOf chicken produce_egg) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "child is capable of add two number", "pln": ["(: cnet_capableof_116242af0f (CapableOf child add_two_number) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "child is capable of anger mother", "pln": ["(: cnet_capableof_2fddfe21f3 (CapableOf child anger_mother) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "child is capable of anger parent", "pln": ["(: cnet_capableof_b1ef6875a6 (CapableOf child anger_parent) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "child is capable of ask question", "pln": ["(: cnet_capableof_4b407d2180 (CapableOf child ask_question) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "child is capable of become adult", "pln": ["(: cnet_capableof_61653c1001 (CapableOf child become_adult) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "child is capable of bicycle to school", "pln": ["(: cnet_capableof_622dcc66ef (CapableOf child bicycle_to_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "child is capable of dress dolls", "pln": ["(: cnet_capableof_8f0736eb03 (CapableOf child dress_dolls) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "child is capable of share toys", "pln": ["(: cnet_capableof_777013755f (CapableOf child share_toys) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "child is capable of wet pants", "pln": ["(: cnet_capableof_12015425bb (CapableOf child wet_pants) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "child is capable of butter toast", "pln": ["(: cnet_capableof_169f75613c (CapableOf child butter_toast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "child is capable of clean room", "pln": ["(: cnet_capableof_b528ca0795 (CapableOf child clean_room) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "child is capable of dress doll", "pln": ["(: cnet_capableof_44860d0759 (CapableOf child dress_doll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "child is capable of fill bucket with sand", "pln": ["(: cnet_capableof_8d844de99a (CapableOf child fill_bucket_with_sand) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "child is capable of grow up", "pln": ["(: cnet_capableof_2f042ea1f6 (CapableOf child grow_up) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "child is capable of laugh at clown", "pln": ["(: cnet_capableof_67876e7afd (CapableOf child laugh_at_clown) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "child is capable of listen story", "pln": ["(: cnet_capableof_1fe1f1c840 (CapableOf child listen_story) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "child is capable of listen to story", "pln": ["(: cnet_capableof_013c36b27a (CapableOf child listen_to_story) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "child is capable of mind parent", "pln": ["(: cnet_capableof_20a6dfcd7e (CapableOf child mind_parent) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "child is capable of name puppy", "pln": ["(: cnet_capableof_65ddfe8bb0 (CapableOf child name_puppy) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "child is capable of own toy", "pln": ["(: cnet_capableof_576470852f (CapableOf child own_toy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "child is capable of place puzzle piece", "pln": ["(: cnet_capableof_093c207bcb (CapableOf child place_puzzle_piece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "child is capable of push another child", "pln": ["(: cnet_capableof_e4651cf30c (CapableOf child push_another_child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "child is capable of put toy away", "pln": ["(: cnet_capableof_571507931f (CapableOf child put_toy_away) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "child is capable of read book", "pln": ["(: cnet_capableof_fabeec46b5 (CapableOf child read_book) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "child is capable of share toy", "pln": ["(: cnet_capableof_4a7c42f6a4 (CapableOf child share_toy) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "child is capable of show toy to friend", "pln": ["(: cnet_capableof_c3ebbf3639 (CapableOf child show_toy_to_friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "child is capable of wet pant", "pln": ["(: cnet_capableof_68a4814c44 (CapableOf child wet_pant) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "children is capable of borrow money from parent", "pln": ["(: cnet_capableof_0afba1327f (CapableOf children borrow_money_from_parent) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "children is capable of cut and paste", "pln": ["(: cnet_capableof_d5883ce497 (CapableOf children cut_and_paste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "children is capable of delight parent", "pln": ["(: cnet_capableof_0772aef20d (CapableOf children delight_parent) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "children is capable of do string trick with string", "pln": ["(: cnet_capableof_cf21765cb0 (CapableOf children do_string_trick_with_string) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "children is capable of expect present on birthday", "pln": ["(: cnet_capableof_d932f6cb68 (CapableOf children expect_present_on_birthday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "children is capable of honor parent", "pln": ["(: cnet_capableof_19d88b9e7b (CapableOf children honor_parent) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "children is capable of learn alphabet", "pln": ["(: cnet_capableof_9188f2316f (CapableOf children learn_alphabet) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "children is capable of listen to music", "pln": ["(: cnet_capableof_8d248b7aa3 (CapableOf children listen_to_music) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "children is capable of need care", "pln": ["(: cnet_capableof_078f5a227a (CapableOf children need_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "children is capable of play basketball", "pln": ["(: cnet_capableof_6374b149bf (CapableOf children play_basketball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "children is capable of play chess", "pln": ["(: cnet_capableof_46539adbf0 (CapableOf children play_chess) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "children is capable of play game", "pln": ["(: cnet_capableof_cce00633fc (CapableOf children play_game) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "children is capable of play in back yard", "pln": ["(: cnet_capableof_313117e47a (CapableOf children play_in_back_yard) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "children is capable of reach over", "pln": ["(: cnet_capableof_97040753e4 (CapableOf children reach_over) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "children is capable of share toy", "pln": ["(: cnet_capableof_886ddb918c (CapableOf children share_toy) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "children is capable of sleep in bed", "pln": ["(: cnet_capableof_8fb1657379 (CapableOf children sleep_in_bed) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "children is capable of surprise parent", "pln": ["(: cnet_capableof_2bdf1ce785 (CapableOf children surprise_parent) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "children is capable of thank parent", "pln": ["(: cnet_capableof_5fef05a67e (CapableOf children thank_parent) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "children is capable of tie own shoe", "pln": ["(: cnet_capableof_fe7f29c260 (CapableOf children tie_own_shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "children is capable of tie shoe", "pln": ["(: cnet_capableof_a7d1e0ba4c (CapableOf children tie_shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "children is capable of trade pokemon card", "pln": ["(: cnet_capableof_480bafc269 (CapableOf children trade_pokemon_card) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "children is capable of try patience", "pln": ["(: cnet_capableof_22a8cd1f82 (CapableOf children try_patience) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "children is capable of wash dishe", "pln": ["(: cnet_capableof_9ba0c158f3 (CapableOf children wash_dishe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "children is capable of watch television", "pln": ["(: cnet_capableof_4982de3270 (CapableOf children watch_television) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "chocolate is capable of melt", "pln": ["(: cnet_capableof_abb4735b80 (CapableOf chocolate melt) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "choir is capable of sing to crowd", "pln": ["(: cnet_capableof_bb72954d3d (CapableOf choir sing_to_crowd) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "christ is capable of appear to faithful", "pln": ["(: cnet_capableof_08f26dec38 (CapableOf christ appear_to_faithful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "christian is capable of believe in jesus christ", "pln": ["(: cnet_capableof_b0aee7e79d (CapableOf christian believe_in_jesus_christ) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "christian is capable of bring offering", "pln": ["(: cnet_capableof_81e11ba663 (CapableOf christian bring_offering) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "christian is capable of commit sin", "pln": ["(: cnet_capableof_1ac26bbd74 (CapableOf christian commit_sin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "christian is capable of confess sin", "pln": ["(: cnet_capableof_65080675d6 (CapableOf christian confess_sin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "clouds is capable of cover sun", "pln": ["(: cnet_capableof_a1f4af66a5 (CapableOf clouds cover_sun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "combs is capable of part hair", "pln": ["(: cnet_capableof_f7afac9d24 (CapableOf combs part_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "christian is capable of disobey", "pln": ["(: cnet_capableof_8c25cdc929 (CapableOf christian disobey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "christian is capable of fail", "pln": ["(: cnet_capableof_cc9f094e45 (CapableOf christian fail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "christian is capable of go astray", "pln": ["(: cnet_capableof_7b74acde25 (CapableOf christian go_astray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "christian is capable of justify sin", "pln": ["(: cnet_capableof_fdb4dcfeee (CapableOf christian justify_sin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "christian is capable of pray", "pln": ["(: cnet_capableof_f4187a87ae (CapableOf christian pray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "christian is capable of rationalize sin", "pln": ["(: cnet_capableof_68612b78fe (CapableOf christian rationalize_sin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "christian is capable of rebel", "pln": ["(: cnet_capableof_e10488e385 (CapableOf christian rebel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "christian is capable of repent", "pln": ["(: cnet_capableof_4b7f4c6aaf (CapableOf christian repent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "christian is capable of repent of sin", "pln": ["(: cnet_capableof_2a8fffef40 (CapableOf christian repent_of_sin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "christian is capable of sin", "pln": ["(: cnet_capableof_241f45560f (CapableOf christian sin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "christian is capable of stumble", "pln": ["(: cnet_capableof_1de53a2ac3 (CapableOf christian stumble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "christian will is capable of pray", "pln": ["(: cnet_capableof_3217d972fe (CapableOf christian_will pray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "christian is capable of receive communion", "pln": ["(: cnet_capableof_258b58765b (CapableOf christian receive_communion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "christian is capable of receive sacrament", "pln": ["(: cnet_capableof_5b00f742e9 (CapableOf christian receive_sacrament) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "christian is capable of value truth", "pln": ["(: cnet_capableof_bc725d6b40 (CapableOf christian value_truth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cild is capable of share toy", "pln": ["(: cnet_capableof_0420a5f442 (CapableOf cild share_toy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "citizen is capable of air grievance", "pln": ["(: cnet_capableof_13a68b2a20 (CapableOf citizen air_grievance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "clark kent is capable of double as superman", "pln": ["(: cnet_capableof_5dfc9bc014 (CapableOf clark_kent double_as_superman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "claw is capable of scratch", "pln": ["(: cnet_capableof_71c2a9df8f (CapableOf claw scratch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "clerk is capable of bag grocery", "pln": ["(: cnet_capableof_4106d1f51c (CapableOf clerk bag_grocery) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "clerk is capable of bagging grocery", "pln": ["(: cnet_capableof_9e4aebb0b6 (CapableOf clerk bagging_grocery) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "clerk is capable of stock shelve", "pln": ["(: cnet_capableof_5b370c1660 (CapableOf clerk stock_shelve) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "clock is capable of continue ticking", "pln": ["(: cnet_capableof_65a9e23d88 (CapableOf clock continue_ticking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "clock is capable of continue to tick", "pln": ["(: cnet_capableof_229504cf20 (CapableOf clock continue_to_tick) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "clock is capable of time race", "pln": ["(: cnet_capableof_f7e8f2a535 (CapableOf clock time_race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "clock is capable of tell time", "pln": ["(: cnet_capableof_2132f393bb (CapableOf clock tell_time) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cloth is capable of become wet", "pln": ["(: cnet_capableof_efdb901d33 (CapableOf cloth become_wet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cloud is capable of block sun", "pln": ["(: cnet_capableof_0bfde2cd8f (CapableOf cloud block_sun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cloud is capable of cover sun", "pln": ["(: cnet_capableof_350b451d51 (CapableOf cloud cover_sun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cloud is capable of hide sun", "pln": ["(: cnet_capableof_1dd7e560b4 (CapableOf cloud hide_sun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cloud is capable of bring rain", "pln": ["(: cnet_capableof_9ebac88e27 (CapableOf cloud bring_rain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cloud is capable of cloud sky", "pln": ["(: cnet_capableof_126a6387b2 (CapableOf cloud cloud_sky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cloud is capable of rain on", "pln": ["(: cnet_capableof_ccf20add52 (CapableOf cloud rain_on) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cloud is capable of rain on earth", "pln": ["(: cnet_capableof_56ac2fc61a (CapableOf cloud rain_on_earth) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cloud is capable of rain raindrop", "pln": ["(: cnet_capableof_687c1fab87 (CapableOf cloud rain_raindrop) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cloud is capable of rain water", "pln": ["(: cnet_capableof_bf7d0178d1 (CapableOf cloud rain_water) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "clown is capable of act silly", "pln": ["(: cnet_capableof_790e0de99f (CapableOf clown act_silly) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "clown is capable of delight children", "pln": ["(: cnet_capableof_50dc12ff98 (CapableOf clown delight_children) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "clown is capable of wear funny clothe", "pln": ["(: cnet_capableof_d82d944a99 (CapableOf clown wear_funny_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "coach is capable of time runner", "pln": ["(: cnet_capableof_15303309fd (CapableOf coach time_runner) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cock is capable of fight in pit", "pln": ["(: cnet_capableof_306c60d565 (CapableOf cock fight_in_pit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cock is capable of fight other cock", "pln": ["(: cnet_capableof_2f5bc575a9 (CapableOf cock fight_other_cock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cocoon is capable of become butterfly", "pln": ["(: cnet_capableof_057e5a9c5d (CapableOf cocoon become_butterfly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cold item is capable of freeze", "pln": ["(: cnet_capableof_69c239d842 (CapableOf cold_item freeze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "college degree is capable of further career", "pln": ["(: cnet_capableof_e566112e97 (CapableOf college_degree further_career) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "column is capable of in newspaper", "pln": ["(: cnet_capableof_05133dce85 (CapableOf column in_newspaper) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "comb is capable of part hair", "pln": ["(: cnet_capableof_97b8a1b325 (CapableOf comb part_hair) (STV 1.0 0.9791))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "comedian is capable of laugh at own joke", "pln": ["(: cnet_capableof_3eb873ac52 (CapableOf comedian laugh_at_own_joke) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "comedian is capable of time joke", "pln": ["(: cnet_capableof_f2683b637d (CapableOf comedian time_joke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "committing crime is capable of lead to punishment", "pln": ["(: cnet_capableof_fa365d8b8a (CapableOf committing_crime lead_to_punishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "community is capable of broken", "pln": ["(: cnet_capableof_cbb222ae7c (CapableOf community broken) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "community is capable of commit genocide", "pln": ["(: cnet_capableof_122650bcd8 (CapableOf community commit_genocide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "compressed files is capable of hold viruses", "pln": ["(: cnet_capableof_56ba25fe8f (CapableOf compressed_files hold_viruses) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "computers is capable of cost money", "pln": ["(: cnet_capableof_61ef28c920 (CapableOf computers cost_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "computers is capable of do work", "pln": ["(: cnet_capableof_6a4b5b32d1 (CapableOf computers do_work) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "community is capable of judge leader", "pln": ["(: cnet_capableof_7c2ad612c3 (CapableOf community judge_leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "community is capable of trade service for money", "pln": ["(: cnet_capableof_a2dd6b3353 (CapableOf community trade_service_for_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "community is capable of value good moral", "pln": ["(: cnet_capableof_3d9371d505 (CapableOf community value_good_moral) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "company is capable of market product", "pln": ["(: cnet_capableof_63501da61d (CapableOf company market_product) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "company is capable of branch out", "pln": ["(: cnet_capableof_1192efbf66 (CapableOf company branch_out) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "company is capable of commit crime", "pln": ["(: cnet_capableof_a2edf0af7f (CapableOf company commit_crime) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "company is capable of market new product", "pln": ["(: cnet_capableof_fa0e8dac9f (CapableOf company market_new_product) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "compost is capable of smell bad", "pln": ["(: cnet_capableof_61da4fb137 (CapableOf compost smell_bad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "compressed file is capable of hold virus", "pln": ["(: cnet_capableof_827f62b95d (CapableOf compressed_file hold_virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "computer is capable of arithmetic", "pln": ["(: cnet_capableof_5e6b3f7db2 (CapableOf computer arithmetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "computer is capable of process information", "pln": ["(: cnet_capableof_86efbf8d35 (CapableOf computer process_information) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "computer is capable of run program", "pln": ["(: cnet_capableof_254a3bfdd6 (CapableOf computer run_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "computer is capable of sort information", "pln": ["(: cnet_capableof_227fb94632 (CapableOf computer sort_information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "computer virus is capable of arrive as attachment to email", "pln": ["(: cnet_capableof_90524f7ae7 (CapableOf computer_virus arrive_as_attachment_to_email) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "computer virus is capable of destroy computer file", "pln": ["(: cnet_capableof_412ea02922 (CapableOf computer_virus destroy_computer_file) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "computer is capable of add number", "pln": ["(: cnet_capableof_fe502fb376 (CapableOf computer add_number) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "computer is capable of compute", "pln": ["(: cnet_capableof_98510568ba (CapableOf computer compute) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "computer is capable of cost money", "pln": ["(: cnet_capableof_6309809958 (CapableOf computer cost_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "computer is capable of do work", "pln": ["(: cnet_capableof_61bf86a940 (CapableOf computer do_work) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "computer is capable of monitor for fire", "pln": ["(: cnet_capableof_5d8fd59629 (CapableOf computer monitor_for_fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "conditioner is capable of condition hair", "pln": ["(: cnet_capableof_173ce20a86 (CapableOf conditioner condition_hair) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "conductor is capable of lead orchestra", "pln": ["(: cnet_capableof_1982efebc9 (CapableOf conductor lead_orchestra) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "contraceptive device is capable of prevent pregnancy", "pln": ["(: cnet_capableof_e8f9d6b4d8 (CapableOf contraceptive_device prevent_pregnancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "controller is capable of control device", "pln": ["(: cnet_capableof_6162e165aa (CapableOf controller control_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cook is capable of bone fish", "pln": ["(: cnet_capableof_60f40102c0 (CapableOf cook bone_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "cook is capable of bone roast", "pln": ["(: cnet_capableof_fc5c261dd2 (CapableOf cook bone_roast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "cook is capable of measure ingrediants", "pln": ["(: cnet_capableof_bec7612118 (CapableOf cook measure_ingrediants) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cook is capable of bread chicken breast", "pln": ["(: cnet_capableof_b0317070f3 (CapableOf cook bread_chicken_breast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cook is capable of bread fish", "pln": ["(: cnet_capableof_34889a5603 (CapableOf cook bread_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cook is capable of brown chicken", "pln": ["(: cnet_capableof_2379513f4a (CapableOf cook brown_chicken) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cook is capable of brown ground beef", "pln": ["(: cnet_capableof_c4ec85816e (CapableOf cook brown_ground_beef) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cook is capable of brown meat", "pln": ["(: cnet_capableof_c998b73966 (CapableOf cook brown_meat) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cook is capable of cook", "pln": ["(: cnet_capableof_1f9712b6cd (CapableOf cook cook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cook is capable of cook food", "pln": ["(: cnet_capableof_6c5b8d0dd5 (CapableOf cook cook_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cook is capable of measure flour", "pln": ["(: cnet_capableof_7be8546df2 (CapableOf cook measure_flour) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cook is capable of measure ingrediant", "pln": ["(: cnet_capableof_29a7e1d313 (CapableOf cook measure_ingrediant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cook is capable of measure ingredient", "pln": ["(: cnet_capableof_9b6eb1cf9e (CapableOf cook measure_ingredient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cook is capable of prepare meal", "pln": ["(: cnet_capableof_32ac53c86f (CapableOf cook prepare_meal) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cook is capable of quarter pie", "pln": ["(: cnet_capableof_301e19f85e (CapableOf cook quarter_pie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cook is capable of salt food", "pln": ["(: cnet_capableof_60b4c97dca (CapableOf cook salt_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "cook is capable of salt soup", "pln": ["(: cnet_capableof_077569d46d (CapableOf cook salt_soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cook is capable of season dish", "pln": ["(: cnet_capableof_4ae791f989 (CapableOf cook season_dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cook is capable of season food", "pln": ["(: cnet_capableof_87ab4a1765 (CapableOf cook season_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cook is capable of season soup", "pln": ["(: cnet_capableof_1f31e7e974 (CapableOf cook season_soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cook is capable of season stew", "pln": ["(: cnet_capableof_2c238b6f1e (CapableOf cook season_stew) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cook is capable of separate egg", "pln": ["(: cnet_capableof_001a6c5138 (CapableOf cook separate_egg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cook is capable of taste food prepare", "pln": ["(: cnet_capableof_9b06abd7b3 (CapableOf cook taste_food_prepare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cook is capable of use oven to cook", "pln": ["(: cnet_capableof_5f0acd6a5a (CapableOf cook use_oven_to_cook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cook is capable of bread meat", "pln": ["(: cnet_capableof_3286912143 (CapableOf cook bread_meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cop is capable of tail suspect", "pln": ["(: cnet_capableof_87f5de294d (CapableOf cop tail_suspect) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "corporation is capable of hold bank account", "pln": ["(: cnet_capableof_5c338697dd (CapableOf corporation hold_bank_account) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "cotton is capable of feel soft", "pln": ["(: cnet_capableof_38bd53d199 (CapableOf cotton feel_soft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "couch is capable of in living room", "pln": ["(: cnet_capableof_96504504c4 (CapableOf couch in_living_room) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "couch potato is capable of watch tv", "pln": ["(: cnet_capableof_9c54af8a14 (CapableOf couch_potato watch_tv) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "couple is capable of communicate", "pln": ["(: cnet_capableof_061ac70d2c (CapableOf couple communicate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "couple is capable of eat at resturant", "pln": ["(: cnet_capableof_01ea040d58 (CapableOf couple eat_at_resturant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "couple is capable of marry each other", "pln": ["(: cnet_capableof_f7850a730d (CapableOf couple marry_each_other) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "couple is capable of row about", "pln": ["(: cnet_capableof_eeef341039 (CapableOf couple row_about) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "couple is capable of think about divorcing", "pln": ["(: cnet_capableof_a820de5778 (CapableOf couple think_about_divorcing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "couple is capable of tie knot", "pln": ["(: cnet_capableof_e3816aba68 (CapableOf couple tie_knot) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "couple is capable of watch movie", "pln": ["(: cnet_capableof_8d26404a08 (CapableOf couple watch_movie) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "couple is capable of watch sunset", "pln": ["(: cnet_capableof_64522a4fda (CapableOf couple watch_sunset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "couple is capable of enjoy sex", "pln": ["(: cnet_capableof_8e0a3e8480 (CapableOf couple enjoy_sex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "couple is capable of have sex", "pln": ["(: cnet_capableof_a57fe6ad8d (CapableOf couple have_sex) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "couple is capable of row with each other", "pln": ["(: cnet_capableof_fb5854f111 (CapableOf couple row_with_each_other) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cover is capable of hide thing", "pln": ["(: cnet_capableof_8149333b59 (CapableOf cover hide_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "cow is capable of jump over moon", "pln": ["(: cnet_capableof_e966ba92a0 (CapableOf cow jump_over_moon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cow is capable of produce methane gas", "pln": ["(: cnet_capableof_4018a904cf (CapableOf cow produce_methane_gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cow is capable of give milk", "pln": ["(: cnet_capableof_1d94299522 (CapableOf cow give_milk) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cow is capable of jump moon", "pln": ["(: cnet_capableof_3d240f1bc2 (CapableOf cow jump_moon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cozy blanket is capable of provide comfort", "pln": ["(: cnet_capableof_649d67cdbd (CapableOf cozy_blanket provide_comfort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "crack is capable of get high", "pln": ["(: cnet_capableof_27b3b157b2 (CapableOf crack get_high) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cramp in side is capable of problem", "pln": ["(: cnet_capableof_6d2182bcb3 (CapableOf cramp_in_side problem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "creamer is capable of separate cream from milk", "pln": ["(: cnet_capableof_cecd00fd5c (CapableOf creamer separate_cream_from_milk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "creating division is capable of result in loss of status in community", "pln": ["(: cnet_capableof_d92203f0ae (CapableOf creating_division result_in_loss_of_status_in_community) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cricketer is capable of field ball", "pln": ["(: cnet_capableof_2576a8d310 (CapableOf cricketer field_ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "crime is capable of result in punishment", "pln": ["(: cnet_capableof_52e6395ee5 (CapableOf crime result_in_punishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "criminal is capable of case joint", "pln": ["(: cnet_capableof_aa8ac85155 (CapableOf criminal case_joint) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "criminal is capable of deal drug", "pln": ["(: cnet_capableof_454d51733e (CapableOf criminal deal_drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "criminal is capable of face accuser", "pln": ["(: cnet_capableof_dabdc188c2 (CapableOf criminal face_accuser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "criminal is capable of break law", "pln": ["(: cnet_capableof_bc72b32064 (CapableOf criminal break_law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "criminal is capable of use gun to commit crime", "pln": ["(: cnet_capableof_0c4062fc65 (CapableOf criminal use_gun_to_commit_crime) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cup is capable of hold liquid", "pln": ["(: cnet_capableof_b0cd171065 (CapableOf cup hold_liquid) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "customer is capable of pay bill", "pln": ["(: cnet_capableof_b639f76d0f (CapableOf customer pay_bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "customer is capable of wait in line", "pln": ["(: cnet_capableof_100f8e4d30 (CapableOf customer wait_in_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cyclist is capable of ride bike", "pln": ["(: cnet_capableof_463a1c2dd3 (CapableOf cyclist ride_bike) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "cyclist is capable of bicycle to work", "pln": ["(: cnet_capableof_126156043a (CapableOf cyclist bicycle_to_work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dam is capable of stop moving water", "pln": ["(: cnet_capableof_752c4c2d78 (CapableOf dam stop_moving_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dam is capable of control river", "pln": ["(: cnet_capableof_f5d7d7887e (CapableOf dam control_river) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "dancer is capable of cut rug", "pln": ["(: cnet_capableof_ceb9a8d565 (CapableOf dancer cut_rug) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "detective is capable of piece together clues", "pln": ["(: cnet_capableof_ee2142af01 (CapableOf detective piece_together_clues) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dancer is capable of dance", "pln": ["(: cnet_capableof_17203aa98a (CapableOf dancer dance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dancer is capable of do twist", "pln": ["(: cnet_capableof_183c86fc8c (CapableOf dancer do_twist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "deaf people is capable of communicate using sign language", "pln": ["(: cnet_capableof_315f6afeeb (CapableOf deaf_people communicate_using_sign_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "deaf people is capable of hear nothing", "pln": ["(: cnet_capableof_f45f36df69 (CapableOf deaf_people hear_nothing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dealer is capable of deal card", "pln": ["(: cnet_capableof_6ef402f27f (CapableOf dealer deal_card) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "death is capable of bring sorrow", "pln": ["(: cnet_capableof_8741326334 (CapableOf death bring_sorrow) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "deception is capable of delude", "pln": ["(: cnet_capableof_c99909c844 (CapableOf deception delude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "deli is capable of sell sandwiche", "pln": ["(: cnet_capableof_b9c76ccd48 (CapableOf deli sell_sandwiche) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "democrat is capable of fear republican", "pln": ["(: cnet_capableof_5a21b0f687 (CapableOf democrat fear_republican) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "democrat is capable of hope bush will die soon", "pln": ["(: cnet_capableof_ba4617c999 (CapableOf democrat hope_bush_will_die_soon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dentist is capable of fix teeth", "pln": ["(: cnet_capableof_ab9dca08ea (CapableOf dentist fix_teeth) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dentist is capable of pull teeth", "pln": ["(: cnet_capableof_d8aa11d4c1 (CapableOf dentist pull_teeth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "depressed person is capable of kill themselve", "pln": ["(: cnet_capableof_aa659db5d0 (CapableOf depressed_person kill_themselve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "depression is capable of lead person to attempt suicide", "pln": ["(: cnet_capableof_2269eb6310 (CapableOf depression lead_person_to_attempt_suicide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "detail is capable of matter during combat operation", "pln": ["(: cnet_capableof_3a6fe9195d (CapableOf detail matter_during_combat_operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "detective is capable of case joint", "pln": ["(: cnet_capableof_32549e3b99 (CapableOf detective case_joint) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "detective is capable of piece together clue", "pln": ["(: cnet_capableof_3baa041ffe (CapableOf detective piece_together_clue) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "detective is capable of tail suspect", "pln": ["(: cnet_capableof_2d514190b6 (CapableOf detective tail_suspect) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "diamond is capable of last forever", "pln": ["(: cnet_capableof_487740408f (CapableOf diamond last_forever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dime store is capable of sell variety of candy", "pln": ["(: cnet_capableof_9d70eff769 (CapableOf dime_store sell_variety_of_candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "diner is capable of salt food", "pln": ["(: cnet_capableof_03f9971c83 (CapableOf diner salt_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "directors is capable of direct movie", "pln": ["(: cnet_capableof_7111dc5efa (CapableOf directors direct_movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "diplomacy is capable of bridge difference", "pln": ["(: cnet_capableof_6d367fbf3d (CapableOf diplomacy bridge_difference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "director is capable of direct movie", "pln": ["(: cnet_capableof_426137eb7b (CapableOf director direct_movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "disposable razor is capable of become dull", "pln": ["(: cnet_capableof_ca7fbde43b (CapableOf disposable_razor become_dull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "distillery is capable of distill", "pln": ["(: cnet_capableof_3e5261b0be (CapableOf distillery distill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dna is capable of replicate", "pln": ["(: cnet_capableof_495db20e15 (CapableOf dna replicate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dock is capable of shore boat", "pln": ["(: cnet_capableof_b57350581e (CapableOf dock shore_boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "doctor is capable of answer question", "pln": ["(: cnet_capableof_0a85c49c0d (CapableOf doctor answer_question) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "doctor is capable of care for patient", "pln": ["(: cnet_capableof_e14e99452c (CapableOf doctor care_for_patient) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "doctor is capable of explain illness", "pln": ["(: cnet_capableof_7b3d586f02 (CapableOf doctor explain_illness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "doctor is capable of help patient", "pln": ["(: cnet_capableof_93ea4af434 (CapableOf doctor help_patient) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "doctor is capable of help sick person", "pln": ["(: cnet_capableof_4449794b60 (CapableOf doctor help_sick_person) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "doctor is capable of listen to person s heart", "pln": ["(: cnet_capableof_434e7a4163 (CapableOf doctor listen_to_person_s_heart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "doctor is capable of measure height", "pln": ["(: cnet_capableof_2ebee3f785 (CapableOf doctor measure_height) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "doctor is capable of prescribe medicine", "pln": ["(: cnet_capableof_fc3e9dff86 (CapableOf doctor prescribe_medicine) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "doctor is capable of resuscitate", "pln": ["(: cnet_capableof_9eb8120fba (CapableOf doctor resuscitate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "doctor is capable of set broken bone", "pln": ["(: cnet_capableof_752b05b1a2 (CapableOf doctor set_broken_bone) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "doctors is capable of look into people s throats", "pln": ["(: cnet_capableof_b539ed1f10 (CapableOf doctors look_into_people_s_throats) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "doctor is capable of visit patient at home", "pln": ["(: cnet_capableof_74549154ac (CapableOf doctor visit_patient_at_home) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "doctor is capable of doctor patient", "pln": ["(: cnet_capableof_3daab9c06f (CapableOf doctor doctor_patient) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "doctor is capable of give physical examination", "pln": ["(: cnet_capableof_1550424704 (CapableOf doctor give_physical_examination) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "doctor is capable of help sick people", "pln": ["(: cnet_capableof_0fc481097e (CapableOf doctor help_sick_people) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "doctor is capable of look into people s throat", "pln": ["(: cnet_capableof_53ed641f59 (CapableOf doctor look_into_people_s_throat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of bark", "pln": ["(: cnet_capableof_821f3ba2a7 (CapableOf dog bark) (STV 1.0 0.9877))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of bark at stranger", "pln": ["(: cnet_capableof_578505b18c (CapableOf dog bark_at_stranger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of bite", "pln": ["(: cnet_capableof_54b23e55a4 (CapableOf dog bite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of chasing ball", "pln": ["(: cnet_capableof_3ad09f4147 (CapableOf dog chasing_ball) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of corner cat", "pln": ["(: cnet_capableof_1aea8c782c (CapableOf dog corner_cat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of dig up bone", "pln": ["(: cnet_capableof_74da5005c5 (CapableOf dog dig_up_bone) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "dog is capable of drink water", "pln": ["(: cnet_capableof_34a67a06b1 (CapableOf dog drink_water) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of fight cat", "pln": ["(: cnet_capableof_0662ce76f2 (CapableOf dog fight_cat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of frighten intruder", "pln": ["(: cnet_capableof_a78aa6e595 (CapableOf dog frighten_intruder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of guard house", "pln": ["(: cnet_capableof_2472353121 (CapableOf dog guard_house) (STV 1.0 0.9811))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of guard property", "pln": ["(: cnet_capableof_b2a2bcab0e (CapableOf dog guard_property) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of guide blind", "pln": ["(: cnet_capableof_427179ea69 (CapableOf dog guide_blind) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "dog is capable of guide blind person", "pln": ["(: cnet_capableof_c031d60246 (CapableOf dog guide_blind_person) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of hear whistling", "pln": ["(: cnet_capableof_2a81b27158 (CapableOf dog hear_whistling) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of learn to do trick", "pln": ["(: cnet_capableof_81e1858d7b (CapableOf dog learn_to_do_trick) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of long for dead owner", "pln": ["(: cnet_capableof_e4c37b78be (CapableOf dog long_for_dead_owner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of mark territory", "pln": ["(: cnet_capableof_a307d6b483 (CapableOf dog mark_territory) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "dog is capable of mark tree", "pln": ["(: cnet_capableof_6072ee8d79 (CapableOf dog mark_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of mother puppy", "pln": ["(: cnet_capableof_b000878de8 (CapableOf dog mother_puppy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of pet", "pln": ["(: cnet_capableof_8157e0a616 (CapableOf dog pet) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of run", "pln": ["(: cnet_capableof_c843859953 (CapableOf dog run) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of sense danger", "pln": ["(: cnet_capableof_2988d49da3 (CapableOf dog sense_danger) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of shake hand", "pln": ["(: cnet_capableof_696480728f (CapableOf dog shake_hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of smell drug", "pln": ["(: cnet_capableof_07b147bcbe (CapableOf dog smell_drug) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "dog is capable of smell fear", "pln": ["(: cnet_capableof_573b97311b (CapableOf dog smell_fear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "dogs is capable of do many things", "pln": ["(: cnet_capableof_80aeab4cd1 (CapableOf dogs do_many_things) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "dogs is capable of doing nothing", "pln": ["(: cnet_capableof_ddd05491c8 (CapableOf dogs doing_nothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "dogs is capable of eat bones", "pln": ["(: cnet_capableof_83d6ba154f (CapableOf dogs eat_bones) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "dogs is capable of guard house", "pln": ["(: cnet_capableof_7b5283e285 (CapableOf dogs guard_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "dogs is capable of hear high pitched noises", "pln": ["(: cnet_capableof_b854708e9d (CapableOf dogs hear_high_pitched_noises) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "dogs is capable of sense fear", "pln": ["(: cnet_capableof_0b55ce712a (CapableOf dogs sense_fear) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "dogs is capable of sound loud", "pln": ["(: cnet_capableof_207c342bb1 (CapableOf dogs sound_loud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "dolphins is capable of swim", "pln": ["(: cnet_capableof_a85790adcc (CapableOf dolphins swim) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "drinking too much is capable of cause all kinds of health problems", "pln": ["(: cnet_capableof_c9d668dccd (CapableOf drinking_too_much cause_all_kinds_of_health_problems) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "dryer is capable of dry wet clothes", "pln": ["(: cnet_capableof_9b90e782c7 (CapableOf dryer dry_wet_clothes) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "duvets is capable of cover beds", "pln": ["(: cnet_capableof_ec5b940174 (CapableOf duvets cover_beds) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "emotions is capable of alter behavior", "pln": ["(: cnet_capableof_10681927d0 (CapableOf emotions alter_behavior) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "employer is capable of fire employees", "pln": ["(: cnet_capableof_63eeada716 (CapableOf employer fire_employees) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of stay in place", "pln": ["(: cnet_capableof_b01bab5c2c (CapableOf dog stay_in_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of stray", "pln": ["(: cnet_capableof_707e288c3a (CapableOf dog stray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of trip over rope", "pln": ["(: cnet_capableof_ec8754d7f4 (CapableOf dog trip_over_rope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of walk on leash", "pln": ["(: cnet_capableof_5e89581258 (CapableOf dog walk_on_leash) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of wear collar", "pln": ["(: cnet_capableof_97fde1d9c6 (CapableOf dog wear_collar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of win blue ribbon", "pln": ["(: cnet_capableof_2729427047 (CapableOf dog win_blue_ribbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of do many thing", "pln": ["(: cnet_capableof_76259459af (CapableOf dog do_many_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of doing nothing", "pln": ["(: cnet_capableof_f1c84ef58e (CapableOf dog doing_nothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of eat bone", "pln": ["(: cnet_capableof_27a5bd8d3a (CapableOf dog eat_bone) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of guard hous", "pln": ["(: cnet_capableof_46cd552903 (CapableOf dog guard_hous) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of guide blind people", "pln": ["(: cnet_capableof_db88f869b9 (CapableOf dog guide_blind_people) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of hear high pitched nois", "pln": ["(: cnet_capableof_390d42de63 (CapableOf dog hear_high_pitched_nois) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of hear very high pitched nois", "pln": ["(: cnet_capableof_d6f6a673d7 (CapableOf dog hear_very_high_pitched_nois) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of hear very high pitche", "pln": ["(: cnet_capableof_515c330a8e (CapableOf dog hear_very_high_pitche) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of hunt foxe", "pln": ["(: cnet_capableof_557172effe (CapableOf dog hunt_foxe) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of jump up", "pln": ["(: cnet_capableof_793a68a202 (CapableOf dog jump_up) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of lie around doing nothing", "pln": ["(: cnet_capableof_445904c85e (CapableOf dog lie_around_doing_nothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of live in dog hous", "pln": ["(: cnet_capableof_0671856801 (CapableOf dog live_in_dog_hous) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of need food", "pln": ["(: cnet_capableof_5c0b40c966 (CapableOf dog need_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of seem to love owner", "pln": ["(: cnet_capableof_5b1a923932 (CapableOf dog seem_to_love_owner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of sense fear", "pln": ["(: cnet_capableof_204fbc490c (CapableOf dog sense_fear) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of smell food", "pln": ["(: cnet_capableof_f0e6dcb98c (CapableOf dog smell_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of sound loud", "pln": ["(: cnet_capableof_1f75ccbf7b (CapableOf dog sound_loud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of wear sweater", "pln": ["(: cnet_capableof_42127f6695 (CapableOf dog wear_sweater) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dog is capable of wonder where everyone went", "pln": ["(: cnet_capableof_85b4511ced (CapableOf dog wonder_where_everyone_went) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dolphin is capable of swim", "pln": ["(: cnet_capableof_623ab9d1bc (CapableOf dolphin swim) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "donut is capable of eaten", "pln": ["(: cnet_capableof_1d19fa4e4e (CapableOf donut eaten) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "door is capable of open", "pln": ["(: cnet_capableof_d5c4a01c71 (CapableOf door open) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "door with lock is capable of locke", "pln": ["(: cnet_capableof_35cb0e34b1 (CapableOf door_with_lock locke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dove is capable of fly", "pln": ["(: cnet_capableof_7733cd7b91 (CapableOf dove fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dragon is capable of breathe fire", "pln": ["(: cnet_capableof_2a9afcbe96 (CapableOf dragon breathe_fire) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dragon is capable of fly", "pln": ["(: cnet_capableof_af070063af (CapableOf dragon fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "drain is capable of tube", "pln": ["(: cnet_capableof_82b859d972 (CapableOf drain tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "drinking too much is capable of cause all kind of health problem", "pln": ["(: cnet_capableof_17712c1b9f (CapableOf drinking_too_much cause_all_kind_of_health_problem) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "drinking too much is capable of cause headache", "pln": ["(: cnet_capableof_2e9bd99025 (CapableOf drinking_too_much cause_headache) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "driver is capable of starting car", "pln": ["(: cnet_capableof_0d1b88d319 (CapableOf driver starting_car) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "driver is capable of turn car", "pln": ["(: cnet_capableof_1aff06d4cc (CapableOf driver turn_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "drug is capable of cloud thinking", "pln": ["(: cnet_capableof_d22c0fece9 (CapableOf drug cloud_thinking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "drug is capable of alter emotion", "pln": ["(: cnet_capableof_36bd141ed3 (CapableOf drug alter_emotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "drug is capable of cause illness", "pln": ["(: cnet_capableof_e06e9f8334 (CapableOf drug cause_illness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "drug is capable of change subjective consciousness", "pln": ["(: cnet_capableof_6b02b91e50 (CapableOf drug change_subjective_consciousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "drug is capable of cloud mind", "pln": ["(: cnet_capableof_d7534cc7ea (CapableOf drug cloud_mind) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "drug is capable of cure illness", "pln": ["(: cnet_capableof_b1a77962af (CapableOf drug cure_illness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "drunk is capable of lie in alleyway", "pln": ["(: cnet_capableof_faf7c83d4d (CapableOf drunk lie_in_alleyway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dryer is capable of dry clothing", "pln": ["(: cnet_capableof_87d96022c3 (CapableOf dryer dry_clothing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "dryer is capable of dry wet clothe", "pln": ["(: cnet_capableof_c1437c897d (CapableOf dryer dry_wet_clothe) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "duck is capable of cooked", "pln": ["(: cnet_capableof_e15cf23c79 (CapableOf duck cooked) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "duvet is capable of cover bed", "pln": ["(: cnet_capableof_8caf29fcf2 (CapableOf duvet cover_bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ear is capable of hear noise", "pln": ["(: cnet_capableof_593d4cdefe (CapableOf ear hear_noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ear is capable of sense sound", "pln": ["(: cnet_capableof_4cf106afa7 (CapableOf ear sense_sound) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "earthquake is capable of shake ground", "pln": ["(: cnet_capableof_f1d9821f94 (CapableOf earthquake shake_ground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "eater is capable of choose food", "pln": ["(: cnet_capableof_2fc41068c6 (CapableOf eater choose_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "education is capable of change subjective consciousness", "pln": ["(: cnet_capableof_2f47a47a49 (CapableOf education change_subjective_consciousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "education is capable of further career", "pln": ["(: cnet_capableof_9f9df56f01 (CapableOf education further_career) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "education is capable of raise intelligence", "pln": ["(: cnet_capableof_c1881237eb (CapableOf education raise_intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "effort is capable of amount to nothing", "pln": ["(: cnet_capableof_e9583b6e46 (CapableOf effort amount_to_nothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "electricity is capable of kill person", "pln": ["(: cnet_capableof_2e0506f296 (CapableOf electricity kill_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "electricity is capable of power appliance", "pln": ["(: cnet_capableof_94f77ce6ea (CapableOf electricity power_appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "elton john is capable of perform concert", "pln": ["(: cnet_capableof_272d286e69 (CapableOf elton_john perform_concert) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "emac is capable of copy and paste", "pln": ["(: cnet_capableof_7ecf9076e3 (CapableOf emac copy_and_paste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "emac is capable of copy text", "pln": ["(: cnet_capableof_be1c88bbd0 (CapableOf emac copy_text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "emac is capable of paste text", "pln": ["(: cnet_capableof_b3c904539a (CapableOf emac paste_text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "emac is capable of save", "pln": ["(: cnet_capableof_ea51f46add (CapableOf emac save) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "email is capable of convay message to people", "pln": ["(: cnet_capableof_c5c7d2dec1 (CapableOf email convay_message_to_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "emotion is capable of alter behavior", "pln": ["(: cnet_capableof_8c69bd8112 (CapableOf emotion alter_behavior) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "employee is capable of please boss", "pln": ["(: cnet_capableof_234817d9b7 (CapableOf employee please_boss) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "employer is capable of fire employee", "pln": ["(: cnet_capableof_b44df91b9c (CapableOf employer fire_employee) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "employer is capable of pay employee", "pln": ["(: cnet_capableof_d4edaab7f1 (CapableOf employer pay_employee) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "emt is capable of resuscitate", "pln": ["(: cnet_capableof_d88a3ed98f (CapableOf emt resuscitate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "enemy is capable of agree on peace treaty", "pln": ["(: cnet_capableof_aa06ae9d50 (CapableOf enemy agree_on_peace_treaty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "enemy is capable of trade insult", "pln": ["(: cnet_capableof_3c677464e7 (CapableOf enemy trade_insult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "enemy is capable of die horribly", "pln": ["(: cnet_capableof_c64297faaa (CapableOf enemy die_horribly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "enemy is capable of holding secret weapon", "pln": ["(: cnet_capableof_71a3411ce6 (CapableOf enemy holding_secret_weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "energy is capable of equal mass", "pln": ["(: cnet_capableof_10e07e92ec (CapableOf energy equal_mass) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "engineer is capable of bridge river", "pln": ["(: cnet_capableof_79bdf3aebd (CapableOf engineer bridge_river) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "engineer is capable of build bridge", "pln": ["(: cnet_capableof_2d2c21a35d (CapableOf engineer build_bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "engineer is capable of design", "pln": ["(: cnet_capableof_b289b2211b (CapableOf engineer design) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "entrepreneur is capable of open business", "pln": ["(: cnet_capableof_3298540ffa (CapableOf entrepreneur open_business) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "equality for everyone is capable of change government", "pln": ["(: cnet_capableof_78d24d1fef (CapableOf equality_for_everyone change_government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "equality for everyone is capable of change society", "pln": ["(: cnet_capableof_dfb6200b61 (CapableOf equality_for_everyone change_society) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "equality for everyone is capable of make life better", "pln": ["(: cnet_capableof_c0945a9176 (CapableOf equality_for_everyone make_life_better) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "equality for everyone is capable of misinterpreted", "pln": ["(: cnet_capableof_26c20500f3 (CapableOf equality_for_everyone misinterpreted) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "equality for everyone is capable of stop oppression", "pln": ["(: cnet_capableof_7a15e16b58 (CapableOf equality_for_everyone stop_oppression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "event is capable of happen to", "pln": ["(: cnet_capableof_f2a753d7f2 (CapableOf event happen_to) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "event is capable of surprise", "pln": ["(: cnet_capableof_9b501d99bd (CapableOf event surprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "evian is capable of bottle water", "pln": ["(: cnet_capableof_148acbee9f (CapableOf evian bottle_water) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "excercise is capable of help reduce weight", "pln": ["(: cnet_capableof_1c9ef0fc5d (CapableOf excercise help_reduce_weight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "executioner is capable of hang criminal", "pln": ["(: cnet_capableof_33f0c8f313 (CapableOf executioner hang_criminal) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "eyes is capable of see light", "pln": ["(: cnet_capableof_0eb2b981ff (CapableOf eyes see_light) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "eyes is capable of sense light", "pln": ["(: cnet_capableof_e9e173526d (CapableOf eyes sense_light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "expert is capable of answer question", "pln": ["(: cnet_capableof_a49a22c0d7 (CapableOf expert answer_question) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "explorer is capable of discover new land", "pln": ["(: cnet_capableof_022b1bbb99 (CapableOf explorer discover_new_land) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "eye is capable of sense light", "pln": ["(: cnet_capableof_9a9a8fecc3 (CapableOf eye sense_light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "eye is capable of glass over", "pln": ["(: cnet_capableof_43cadbc899 (CapableOf eye glass_over) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "eye is capable of see light", "pln": ["(: cnet_capableof_33930ee62f (CapableOf eye see_light) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "eye is capable of tear up", "pln": ["(: cnet_capableof_463bd5fd3c (CapableOf eye tear_up) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "factory is capable of bottle medicine", "pln": ["(: cnet_capableof_e911f7795e (CapableOf factory bottle_medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "factory is capable of bottle water", "pln": ["(: cnet_capableof_691060b2da (CapableOf factory bottle_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "factory is capable of bottle wine", "pln": ["(: cnet_capableof_c5577dee7d (CapableOf factory bottle_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "factory is capable of produce car", "pln": ["(: cnet_capableof_d7021b6f23 (CapableOf factory produce_car) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fairy tale is capable of feature princess", "pln": ["(: cnet_capableof_1b34b4c109 (CapableOf fairy_tale feature_princess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "faith is capable of light way", "pln": ["(: cnet_capableof_daeec2d6f2 (CapableOf faith light_way) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "faith is capable of move mountain", "pln": ["(: cnet_capableof_ce619588de (CapableOf faith move_mountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "false friend is capable of let down", "pln": ["(: cnet_capableof_a7738ed036 (CapableOf false_friend let_down) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "family reunion is capable of involve reunion between sister", "pln": ["(: cnet_capableof_6c1ff02474 (CapableOf family_reunion involve_reunion_between_sister) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "famous person is capable of star in movie", "pln": ["(: cnet_capableof_44d79706ec (CapableOf famous_person star_in_movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fan is capable of cool air", "pln": ["(: cnet_capableof_e3bb44d6f3 (CapableOf fan cool_air) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fan is capable of cool person", "pln": ["(: cnet_capableof_7f2f9469c1 (CapableOf fan cool_person) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fan is capable of cool room", "pln": ["(: cnet_capableof_4b0a0b88bd (CapableOf fan cool_room) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "farmer is capable of enter barn", "pln": ["(: cnet_capableof_201a7c5229 (CapableOf farmer enter_barn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "farmer is capable of farm corn", "pln": ["(: cnet_capableof_eb7eed6ee4 (CapableOf farmer farm_corn) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "farmer is capable of farm land", "pln": ["(: cnet_capableof_6886fea68c (CapableOf farmer farm_land) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "farmer is capable of feed chicken", "pln": ["(: cnet_capableof_703432d08b (CapableOf farmer feed_chicken) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "farmer is capable of fence field", "pln": ["(: cnet_capableof_7d78464c69 (CapableOf farmer fence_field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "farmer is capable of gather crop", "pln": ["(: cnet_capableof_a4641a490c (CapableOf farmer gather_crop) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "farmer is capable of milk goat", "pln": ["(: cnet_capableof_da8be77983 (CapableOf farmer milk_goat) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "farmer is capable of pick carrot", "pln": ["(: cnet_capableof_7dc75200d9 (CapableOf farmer pick_carrot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "farmer is capable of raise crop", "pln": ["(: cnet_capableof_f47513e20f (CapableOf farmer raise_crop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "farmer is capable of seed field", "pln": ["(: cnet_capableof_57c88969d9 (CapableOf farmer seed_field) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "farmer is capable of seed plant", "pln": ["(: cnet_capableof_d0b9dc6c7b (CapableOf farmer seed_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "farmer is capable of water crop", "pln": ["(: cnet_capableof_a943e1de29 (CapableOf farmer water_crop) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "farmer is capable of grow corn", "pln": ["(: cnet_capableof_473b1636e0 (CapableOf farmer grow_corn) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "farrier is capable of shoe horse", "pln": ["(: cnet_capableof_107059c74e (CapableOf farrier shoe_horse) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "fast car is capable of pass slow car", "pln": ["(: cnet_capableof_2e40a3bcff (CapableOf fast_car pass_slow_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "ferrets is capable of bite", "pln": ["(: cnet_capableof_e979761e7b (CapableOf ferrets bite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "fingers is capable of push buttons", "pln": ["(: cnet_capableof_e57275a18a (CapableOf fingers push_buttons) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fbi is capable of investigate", "pln": ["(: cnet_capableof_e0baa75a61 (CapableOf fbi investigate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fear is capable of confuse", "pln": ["(: cnet_capableof_28c675d63d (CapableOf fear confuse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "feeling is capable of alter behavior", "pln": ["(: cnet_capableof_e8d3f66eca (CapableOf feeling alter_behavior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fence is capable of wall yard", "pln": ["(: cnet_capableof_5015f09dcb (CapableOf fence wall_yard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ferret is capable of bite", "pln": ["(: cnet_capableof_87d158062a (CapableOf ferret bite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "finger is capable of point", "pln": ["(: cnet_capableof_6ded9a01ea (CapableOf finger point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "finger is capable of point at", "pln": ["(: cnet_capableof_55c418fe83 (CapableOf finger point_at) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "finger is capable of push button", "pln": ["(: cnet_capableof_dee0f4ece3 (CapableOf finger push_button) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fire is capable of burn", "pln": ["(: cnet_capableof_4a1c2fe127 (CapableOf fire burn) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fire is capable of burn cloth", "pln": ["(: cnet_capableof_f6e3d80d5a (CapableOf fire burn_cloth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fire is capable of burn flesh", "pln": ["(: cnet_capableof_b4f3672fea (CapableOf fire burn_flesh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fire is capable of burn hous", "pln": ["(: cnet_capableof_5f4dab988a (CapableOf fire burn_hous) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fire is capable of burn metal", "pln": ["(: cnet_capableof_e8151d1f6a (CapableOf fire burn_metal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fire is capable of burn plastic", "pln": ["(: cnet_capableof_efeb59c03f (CapableOf fire burn_plastic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fire is capable of burn thing", "pln": ["(: cnet_capableof_b9294b48e5 (CapableOf fire burn_thing) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fire is capable of burn tire", "pln": ["(: cnet_capableof_e99240772a (CapableOf fire burn_tire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fire is capable of creat smoke", "pln": ["(: cnet_capableof_8d1eda06ea (CapableOf fire creat_smoke) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fire is capable of cremate human", "pln": ["(: cnet_capableof_9e32a11cf4 (CapableOf fire cremate_human) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fire is capable of damage thing", "pln": ["(: cnet_capableof_18d4984242 (CapableOf fire damage_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fire is capable of destroy all thing", "pln": ["(: cnet_capableof_150ccf78b7 (CapableOf fire destroy_all_thing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "fire is capable of destroy forest", "pln": ["(: cnet_capableof_9871403be8 (CapableOf fire destroy_forest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fire is capable of destroy home", "pln": ["(: cnet_capableof_7afd80c032 (CapableOf fire destroy_home) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fire is capable of harm", "pln": ["(: cnet_capableof_830b8f98f8 (CapableOf fire harm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fire is capable of heat home", "pln": ["(: cnet_capableof_abe350f2c8 (CapableOf fire heat_home) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fire is capable of heat house", "pln": ["(: cnet_capableof_ebb4d63dd1 (CapableOf fire heat_house) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fire is capable of heat metal", "pln": ["(: cnet_capableof_4968011c03 (CapableOf fire heat_metal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fire is capable of heat room", "pln": ["(: cnet_capableof_b828d47a82 (CapableOf fire heat_room) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fire is capable of hurt people", "pln": ["(: cnet_capableof_834c861c02 (CapableOf fire hurt_people) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fire is capable of hurt person", "pln": ["(: cnet_capableof_13bfe0cac0 (CapableOf fire hurt_person) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fire is capable of kill living thing", "pln": ["(: cnet_capableof_15aea5b731 (CapableOf fire kill_living_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fire is capable of kill people", "pln": ["(: cnet_capableof_d4eabea434 (CapableOf fire kill_people) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fire is capable of need fuel", "pln": ["(: cnet_capableof_d6ba4b8a3d (CapableOf fire need_fuel) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fire is capable of provide comfort", "pln": ["(: cnet_capableof_532e8d996c (CapableOf fire provide_comfort) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fire is capable of shut down airport", "pln": ["(: cnet_capableof_68f2bffdd2 (CapableOf fire shut_down_airport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fire is capable of warm hand", "pln": ["(: cnet_capableof_16f63eceb4 (CapableOf fire warm_hand) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fire is capable of wipe out natural habitat", "pln": ["(: cnet_capableof_172270b076 (CapableOf fire wipe_out_natural_habitat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fireman is capable of put out fire", "pln": ["(: cnet_capableof_bbb9b02869 (CapableOf fireman put_out_fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fireman is capable of resuscitate", "pln": ["(: cnet_capableof_cd39743140 (CapableOf fireman resuscitate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fireman is capable of wear hat", "pln": ["(: cnet_capableof_19e9fb546e (CapableOf fireman wear_hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fireplace is capable of heat room", "pln": ["(: cnet_capableof_3d100f01e5 (CapableOf fireplace heat_room) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fish is capable of live in lake", "pln": ["(: cnet_capableof_8c50e41917 (CapableOf fish live_in_lake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fish is capable of live underwater", "pln": ["(: cnet_capableof_ddce1cd592 (CapableOf fish live_underwater) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fish is capable of pet", "pln": ["(: cnet_capableof_64ddbb2203 (CapableOf fish pet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fish is capable of swim", "pln": ["(: cnet_capableof_bdd05d78f0 (CapableOf fish swim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "fisherman is capable of bone salmon", "pln": ["(: cnet_capableof_67e6b436ed (CapableOf fisherman bone_salmon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fisherman is capable of fish for trout", "pln": ["(: cnet_capableof_f654382024 (CapableOf fisherman fish_for_trout) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "flag is capable of wave in wind", "pln": ["(: cnet_capableof_bdc9de4844 (CapableOf flag wave_in_wind) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "flag is capable of wave", "pln": ["(: cnet_capableof_b489da20e0 (CapableOf flag wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "flea is capable of lay egg", "pln": ["(: cnet_capableof_e86baf4142 (CapableOf flea lay_egg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "flea is capable of transmit bubonic plague", "pln": ["(: cnet_capableof_6897f8bf77 (CapableOf flea transmit_bubonic_plague) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "flick of thumb is capable of pitch penny with accuracy", "pln": ["(: cnet_capableof_991f4133e6 (CapableOf flick_of_thumb pitch_penny_with_accuracy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "fly is capable of fly", "pln": ["(: cnet_capableof_148ce374ac (CapableOf fly fly) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "flick of thumb is capable of power marble many feet", "pln": ["(: cnet_capableof_2e349c0ca2 (CapableOf flick_of_thumb power_marble_many_feet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fly is capable of fly", "pln": ["(: cnet_capableof_148ce374ac (CapableOf fly fly) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "flower is capable of many color", "pln": ["(: cnet_capableof_ff2c34d57c (CapableOf flower many_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "flower is capable of smell nice", "pln": ["(: cnet_capableof_465e33dc3b (CapableOf flower smell_nice) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "food is capable of cost money", "pln": ["(: cnet_capableof_bcab93ee27 (CapableOf food cost_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fork is capable of move food to mouth", "pln": ["(: cnet_capableof_c60c65d1b9 (CapableOf fork move_food_to_mouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "form is capable of follow function", "pln": ["(: cnet_capableof_1c58a0712d (CapableOf form follow_function) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "friend is capable of come over", "pln": ["(: cnet_capableof_b236a31b05 (CapableOf friend come_over) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "friend is capable of give gift to friend", "pln": ["(: cnet_capableof_1de2f69e71 (CapableOf friend give_gift_to_friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "friend is capable of keep secret", "pln": ["(: cnet_capableof_4ea879e591 (CapableOf friend keep_secret) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "friend is capable of lend tool", "pln": ["(: cnet_capableof_87c057dbc7 (CapableOf friend lend_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "friend is capable of meet for coffee", "pln": ["(: cnet_capableof_3612bc2b45 (CapableOf friend meet_for_coffee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "friends is capable of lend tools", "pln": ["(: cnet_capableof_1e0b073ce1 (CapableOf friends lend_tools) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "friend is capable of rely on", "pln": ["(: cnet_capableof_6d2a7e112f (CapableOf friend rely_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "friend is capable of return phone call", "pln": ["(: cnet_capableof_c0ca7fedde (CapableOf friend return_phone_call) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "friend is capable of talk", "pln": ["(: cnet_capableof_4c1a26e133 (CapableOf friend talk) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "friend is capable of borrow money", "pln": ["(: cnet_capableof_56e6a5a28f (CapableOf friend borrow_money) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "friend is capable of meet for lunch", "pln": ["(: cnet_capableof_90cb880ae7 (CapableOf friend meet_for_lunch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "friend is capable of meet over lunch", "pln": ["(: cnet_capableof_f6bd66702f (CapableOf friend meet_over_lunch) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "frisbee is capable of descend slowly by hovering", "pln": ["(: cnet_capableof_0e450f590c (CapableOf frisbee descend_slowly_by_hovering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "frog is capable of leap", "pln": ["(: cnet_capableof_0b8ee2c6da (CapableOf frog leap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "frog is capable of jump", "pln": ["(: cnet_capableof_6b94f2c043 (CapableOf frog jump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "frog is capable of swim", "pln": ["(: cnet_capableof_29befdb07e (CapableOf frog swim) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "frugal shopper is capable of save money", "pln": ["(: cnet_capableof_40563d1c00 (CapableOf frugal_shopper save_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fruit is capable of grow on tree", "pln": ["(: cnet_capableof_9cb2fc6082 (CapableOf fruit grow_on_tree) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "furnace is capable of heat building", "pln": ["(: cnet_capableof_c9e0da17bf (CapableOf furnace heat_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "furnace is capable of heat home", "pln": ["(: cnet_capableof_6609d63d57 (CapableOf furnace heat_home) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "furnace is capable of heat house", "pln": ["(: cnet_capableof_f7f66c06fd (CapableOf furnace heat_house) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fuse is capable of short out", "pln": ["(: cnet_capableof_df68df9558 (CapableOf fuse short_out) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "fus is capable of short out", "pln": ["(: cnet_capableof_e1374e8642 (CapableOf fus short_out) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "gambler is capable of lose money", "pln": ["(: cnet_capableof_91e1755e9c (CapableOf gambler lose_money) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "gardener is capable of plant roses", "pln": ["(: cnet_capableof_e7c76b3f98 (CapableOf gardener plant_roses) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "gambler is capable of place bet", "pln": ["(: cnet_capableof_13482a011f (CapableOf gambler place_bet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "gambler is capable of play blackjack", "pln": ["(: cnet_capableof_35cd486d8c (CapableOf gambler play_blackjack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "gambler is capable of play card", "pln": ["(: cnet_capableof_a50a5561ec (CapableOf gambler play_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "gambler is capable of play poker", "pln": ["(: cnet_capableof_f31d57cdc2 (CapableOf gambler play_poker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "garbage is capable of hold garbage", "pln": ["(: cnet_capableof_7f8e2a2bc4 (CapableOf garbage hold_garbage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "gardener is capable of pick flower", "pln": ["(: cnet_capableof_ec46abc0a6 (CapableOf gardener pick_flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "gardener is capable of plant ros", "pln": ["(: cnet_capableof_4dbe0d3735 (CapableOf gardener plant_ros) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "gardener is capable of plant seed", "pln": ["(: cnet_capableof_9a976500fc (CapableOf gardener plant_seed) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "gardener is capable of plant tree", "pln": ["(: cnet_capableof_bf7ca3564e (CapableOf gardener plant_tree) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "gardener is capable of thin seedling", "pln": ["(: cnet_capableof_81b41278a9 (CapableOf gardener thin_seedling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "gardener is capable of water flower", "pln": ["(: cnet_capableof_bf1b4a3815 (CapableOf gardener water_flower) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "gardener is capable of water garden", "pln": ["(: cnet_capableof_34da26b6d6 (CapableOf gardener water_garden) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "gardeners is capable of pick flowers", "pln": ["(: cnet_capableof_89c3b2d2d9 (CapableOf gardeners pick_flowers) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "gardener is capable of water plant", "pln": ["(: cnet_capableof_579d1b0fc5 (CapableOf gardener water_plant) (STV 1.0 0.9748))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "gardener is capable of grow plant", "pln": ["(: cnet_capableof_3c8929ea99 (CapableOf gardener grow_plant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "gardner is capable of water plant", "pln": ["(: cnet_capableof_8ca02cc9ff (CapableOf gardner water_plant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "garlic is capable of leave odor behind", "pln": ["(: cnet_capableof_b66c215462 (CapableOf garlic leave_odor_behind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "garlic is capable of leave taste in mouth", "pln": ["(: cnet_capableof_0037ed899d (CapableOf garlic leave_taste_in_mouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "generals is capable of lead troops", "pln": ["(: cnet_capableof_b920cc2c01 (CapableOf generals lead_troops) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "gasoline is capable of power car", "pln": ["(: cnet_capableof_4191d01dbb (CapableOf gasoline power_car) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "gasoline is capable of power lawnmower", "pln": ["(: cnet_capableof_45f2cb34c9 (CapableOf gasoline power_lawnmower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "gasoline is capable of power mower", "pln": ["(: cnet_capableof_07e96be384 (CapableOf gasoline power_mower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "gate is capable of allow selected people to pass by", "pln": ["(: cnet_capableof_0ed4c069d5 (CapableOf gate allow_selected_people_to_pass_by) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "general is capable of begin attack", "pln": ["(: cnet_capableof_c4216ab1d7 (CapableOf general begin_attack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "general is capable of lead army", "pln": ["(: cnet_capableof_b95aab837f (CapableOf general lead_army) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "general is capable of lead troop", "pln": ["(: cnet_capableof_a2d04740a2 (CapableOf general lead_troop) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "general is capable of condition soldier", "pln": ["(: cnet_capableof_8471c486b8 (CapableOf general condition_soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "genius is capable of smoke joint", "pln": ["(: cnet_capableof_ffe15b07ff (CapableOf genius smoke_joint) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "george bush is capable of lie", "pln": ["(: cnet_capableof_5b37e90864 (CapableOf george_bush lie) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "german is capable of speak german", "pln": ["(: cnet_capableof_7d5653c61c (CapableOf german speak_german) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "germ is capable of make sick", "pln": ["(: cnet_capableof_6d4c00a43e (CapableOf germ make_sick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "germ is capable of spread disease", "pln": ["(: cnet_capableof_d0217d8345 (CapableOf germ spread_disease) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "glass is capable of break easily", "pln": ["(: cnet_capableof_b13124476e (CapableOf glass break_easily) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "glass is capable of hold liquid", "pln": ["(: cnet_capableof_4aea09fd33 (CapableOf glass hold_liquid) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "glass is capable of hold water", "pln": ["(: cnet_capableof_68b4fa051a (CapableOf glass hold_water) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "glove is capable of fit hand", "pln": ["(: cnet_capableof_7c62d60f5e (CapableOf glove fit_hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "glue is capable of hold thing together", "pln": ["(: cnet_capableof_a68038ade6 (CapableOf glue hold_thing_together) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "glue is capable of stick paper", "pln": ["(: cnet_capableof_2550049fd8 (CapableOf glue stick_paper) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "glue is capable of stick to", "pln": ["(: cnet_capableof_a0ed5630d8 (CapableOf glue stick_to) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "glue is capable of stick two thing together", "pln": ["(: cnet_capableof_08a676d634 (CapableOf glue stick_two_thing_together) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "god is capable of everywhere", "pln": ["(: cnet_capableof_db0a0acc05 (CapableOf god everywhere) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "god is capable of judge men", "pln": ["(: cnet_capableof_ddb4768f71 (CapableOf god judge_men) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "god is capable of judge people", "pln": ["(: cnet_capableof_da1e502e28 (CapableOf god judge_people) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "god is capable of love", "pln": ["(: cnet_capableof_de8834aaf8 (CapableOf god love) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "god is capable of quiet storm", "pln": ["(: cnet_capableof_9e18b0b643 (CapableOf god quiet_storm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "god is capable of work miracle", "pln": ["(: cnet_capableof_977efab2df (CapableOf god work_miracle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "golfer is capable of drive ball", "pln": ["(: cnet_capableof_055fb567f3 (CapableOf golfer drive_ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "golfer is capable of drive golf ball", "pln": ["(: cnet_capableof_05235c27fe (CapableOf golfer drive_golf_ball) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "golfers is capable of drive ball", "pln": ["(: cnet_capableof_4ee76290d9 (CapableOf golfers drive_ball) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "grocer is capable of bag groceries", "pln": ["(: cnet_capableof_d95151b0e2 (CapableOf grocer bag_groceries) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "good is capable of battle evil", "pln": ["(: cnet_capableof_637fd3f08b (CapableOf good battle_evil) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "good boat is capable of weather storm", "pln": ["(: cnet_capableof_fe2b0f6fd6 (CapableOf good_boat weather_storm) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "good body is capable of arousing", "pln": ["(: cnet_capableof_74c044ebbb (CapableOf good_body arousing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "good performer is capable of delight audience", "pln": ["(: cnet_capableof_d1fb439d7d (CapableOf good_performer delight_audience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "good plan is capable of further goal", "pln": ["(: cnet_capableof_ba247a29c1 (CapableOf good_plan further_goal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "good planning is capable of further goal", "pln": ["(: cnet_capableof_b0a770afc6 (CapableOf good_planning further_goal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "good teacher is capable of plant idea in fertile mind", "pln": ["(: cnet_capableof_ff300d4469 (CapableOf good_teacher plant_idea_in_fertile_mind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "gossip is capable of spread rumor", "pln": ["(: cnet_capableof_8196061e84 (CapableOf gossip spread_rumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "government is capable of force citizen to comply", "pln": ["(: cnet_capableof_245ef0d726 (CapableOf government force_citizen_to_comply) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "grass is capable of stain clothe", "pln": ["(: cnet_capableof_6484ff1333 (CapableOf grass stain_clothe) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "great performance is capable of delight audience", "pln": ["(: cnet_capableof_6b0bc9ffa0 (CapableOf great_performance delight_audience) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "greeter is capable of welcome customer", "pln": ["(: cnet_capableof_e021bac9cb (CapableOf greeter welcome_customer) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "grocer is capable of bag grocery", "pln": ["(: cnet_capableof_74f36d4abe (CapableOf grocer bag_grocery) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "grocer is capable of stock shelve", "pln": ["(: cnet_capableof_438f9866ee (CapableOf grocer stock_shelve) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "group is capable of include individual", "pln": ["(: cnet_capableof_efa5588e47 (CapableOf group include_individual) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "guard is capable of guard prison", "pln": ["(: cnet_capableof_197569d96c (CapableOf guard guard_prison) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "guard is capable of guard prisoner", "pln": ["(: cnet_capableof_8a66853f0e (CapableOf guard guard_prisoner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "guard is capable of sound alarm", "pln": ["(: cnet_capableof_4891f9da94 (CapableOf guard sound_alarm) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "guest is capable of stay overnight", "pln": ["(: cnet_capableof_f50da9eb38 (CapableOf guest stay_overnight) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "guest is capable of thank host", "pln": ["(: cnet_capableof_63a3fe74e0 (CapableOf guest thank_host) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "guest is capable of stay at hotel", "pln": ["(: cnet_capableof_71269b673e (CapableOf guest stay_at_hotel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "gun is capable of kill people", "pln": ["(: cnet_capableof_aa89414ca0 (CapableOf gun kill_people) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "gun is capable of break", "pln": ["(: cnet_capableof_25a63f8bda (CapableOf gun break) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "gun is capable of fire bullet to target", "pln": ["(: cnet_capableof_b574bd02c5 (CapableOf gun fire_bullet_to_target) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "gun is capable of jam", "pln": ["(: cnet_capableof_47fb1e5c5c (CapableOf gun jam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "gun is capable of misfire", "pln": ["(: cnet_capableof_9ac823bf3e (CapableOf gun misfire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "gymnast is capable of do flip", "pln": ["(: cnet_capableof_be414521b1 (CapableOf gymnast do_flip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hacker is capable of gather information about computer", "pln": ["(: cnet_capableof_8e9f51d722 (CapableOf hacker gather_information_about_computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hair is capable of fall out", "pln": ["(: cnet_capableof_3cac0a3518 (CapableOf hair fall_out) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hair is capable of grow on leg", "pln": ["(: cnet_capableof_bc112eef19 (CapableOf hair grow_on_leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hair dryer is capable of dry hair", "pln": ["(: cnet_capableof_30e974abea (CapableOf hair_dryer dry_hair) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "haircut is capable of cost twelve dollar", "pln": ["(: cnet_capableof_0ec0792b6c (CapableOf haircut cost_twelve_dollar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hammer is capable of break glass", "pln": ["(: cnet_capableof_d61da7e43f (CapableOf hammer break_glass) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hammer is capable of break window", "pln": ["(: cnet_capableof_98c266bca3 (CapableOf hammer break_window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hammer is capable of drive in nail", "pln": ["(: cnet_capableof_6eea54f7ef (CapableOf hammer drive_in_nail) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hammer is capable of nail nail", "pln": ["(: cnet_capableof_e7cfd837c1 (CapableOf hammer nail_nail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hammer is capable of strike nail", "pln": ["(: cnet_capableof_4b5efa7921 (CapableOf hammer strike_nail) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hand is capable of cup breast", "pln": ["(: cnet_capableof_e0b2d01e67 (CapableOf hand cup_breast) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "hand is capable of cup face", "pln": ["(: cnet_capableof_4f7cbaa78d (CapableOf hand cup_face) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hand is capable of cup water", "pln": ["(: cnet_capableof_f1f64a2862 (CapableOf hand cup_water) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hand is capable of fix collar", "pln": ["(: cnet_capableof_51fc59f8b1 (CapableOf hand fix_collar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hand is capable of hand", "pln": ["(: cnet_capableof_f864f718e4 (CapableOf hand hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hand is capable of hit person s face", "pln": ["(: cnet_capableof_60dda3570e (CapableOf hand hit_person_s_face) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hand is capable of hold another hand", "pln": ["(: cnet_capableof_e77841dd87 (CapableOf hand hold_another_hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hand is capable of push door", "pln": ["(: cnet_capableof_4d4ba4e53f (CapableOf hand push_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hand is capable of reach ass", "pln": ["(: cnet_capableof_01817437ad (CapableOf hand reach_ass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hand is capable of cup chin", "pln": ["(: cnet_capableof_a5e6ba0751 (CapableOf hand cup_chin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hand is capable of tear paper", "pln": ["(: cnet_capableof_df421f8e7d (CapableOf hand tear_paper) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hand is capable of tear piece of paper", "pln": ["(: cnet_capableof_64ccbe840b (CapableOf hand tear_piece_of_paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hand is capable of turn knob", "pln": ["(: cnet_capableof_0a959ea2d4 (CapableOf hand turn_knob) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hard disk drive is capable of store file", "pln": ["(: cnet_capableof_5f962d10a7 (CapableOf hard_disk_drive store_file) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hard drive is capable of store data", "pln": ["(: cnet_capableof_a0401fad60 (CapableOf hard_drive store_data) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hard exercise is capable of make muscle sore", "pln": ["(: cnet_capableof_e155c89039 (CapableOf hard_exercise make_muscle_sore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hate is capable of divide people", "pln": ["(: cnet_capableof_e495d0c213 (CapableOf hate divide_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "having sex is capable of give joy", "pln": ["(: cnet_capableof_97a2c6e37b (CapableOf having_sex give_joy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "having sex is capable of increase world population", "pln": ["(: cnet_capableof_56a887689d (CapableOf having_sex increase_world_population) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "having sex is capable of lead to more kid", "pln": ["(: cnet_capableof_75ff16f315 (CapableOf having_sex lead_to_more_kid) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "healthy child is capable of do cartwheel", "pln": ["(: cnet_capableof_f3ba3b9dc1 (CapableOf healthy_child do_cartwheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "heart is capable of beat", "pln": ["(: cnet_capableof_3a522faecf (CapableOf heart beat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "heat is capable of kill bacteria", "pln": ["(: cnet_capableof_149e0d06c7 (CapableOf heat kill_bacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "heat is capable of sterilize", "pln": ["(: cnet_capableof_0c0c89b277 (CapableOf heat sterilize) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "heater is capable of heat room", "pln": ["(: cnet_capableof_2671c7184d (CapableOf heater heat_room) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hen is capable of mother chick", "pln": ["(: cnet_capableof_1bf1b02750 (CapableOf hen mother_chick) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hen is capable of produce egg", "pln": ["(: cnet_capableof_0b09ac0fa8 (CapableOf hen produce_egg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hiker is capable of rest feet", "pln": ["(: cnet_capableof_eae9ddda52 (CapableOf hiker rest_feet) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "homeowner is capable of fence yard", "pln": ["(: cnet_capableof_8d93ee8868 (CapableOf homeowner fence_yard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "homeowner is capable of paint house", "pln": ["(: cnet_capableof_78f15eac77 (CapableOf homeowner paint_house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "hot coals is capable of cook food", "pln": ["(: cnet_capableof_b843e9278b (CapableOf hot_coals cook_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "hot items is capable of burn", "pln": ["(: cnet_capableof_c77b79abc0 (CapableOf hot_items burn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "houses is capable of blow down", "pln": ["(: cnet_capableof_2097665f11 (CapableOf houses blow_down) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "homeowner is capable of seed lawn", "pln": ["(: cnet_capableof_9045d1cd72 (CapableOf homeowner seed_lawn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "homeowner is capable of borrow money from bank", "pln": ["(: cnet_capableof_40971b71b0 (CapableOf homeowner borrow_money_from_bank) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hooker is capable of supply sex for money", "pln": ["(: cnet_capableof_a475d47b9d (CapableOf hooker supply_sex_for_money) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "horse is capable of carry person", "pln": ["(: cnet_capableof_a7ce2bada4 (CapableOf horse carry_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "horse is capable of drink water", "pln": ["(: cnet_capableof_9b46498af8 (CapableOf horse drink_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "horse is capable of jump barrier", "pln": ["(: cnet_capableof_e24f3eeb66 (CapableOf horse jump_barrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "horse is capable of jump fence", "pln": ["(: cnet_capableof_4a78351ce4 (CapableOf horse jump_fence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "horse is capable of pull cart", "pln": ["(: cnet_capableof_0a690a56bb (CapableOf horse pull_cart) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "horse is capable of run in pasture", "pln": ["(: cnet_capableof_d3d409ff65 (CapableOf horse run_in_pasture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "horse is capable of run quickly", "pln": ["(: cnet_capableof_151c5eb4fc (CapableOf horse run_quickly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "horse owner is capable of shoe horse", "pln": ["(: cnet_capableof_d3327c42ee (CapableOf horse_owner shoe_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hors is capable of drink water", "pln": ["(: cnet_capableof_9384370a90 (CapableOf hors drink_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hors is capable of eat oat", "pln": ["(: cnet_capableof_e25c447109 (CapableOf hors eat_oat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hors is capable of jump high", "pln": ["(: cnet_capableof_f2776ecb34 (CapableOf hors jump_high) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hors is capable of pull cart", "pln": ["(: cnet_capableof_2b125e6681 (CapableOf hors pull_cart) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hors is capable of race on track", "pln": ["(: cnet_capableof_5e9a579149 (CapableOf hors race_on_track) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hors is capable of sleep standing", "pln": ["(: cnet_capableof_5c85bd6f10 (CapableOf hors sleep_standing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "host is capable of welcome guest", "pln": ["(: cnet_capableof_3af7c26943 (CapableOf host welcome_guest) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hostess is capable of welcome guest", "pln": ["(: cnet_capableof_f6e70dcbce (CapableOf hostess welcome_guest) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hot air balloon is capable of float in air", "pln": ["(: cnet_capableof_bc1f30959d (CapableOf hot_air_balloon float_in_air) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hot chick is capable of work at hair salon", "pln": ["(: cnet_capableof_f5a654763c (CapableOf hot_chick work_at_hair_salon) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hot coal is capable of cook food", "pln": ["(: cnet_capableof_8b56a764ba (CapableOf hot_coal cook_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hot item is capable of burn", "pln": ["(: cnet_capableof_89de502fa5 (CapableOf hot_item burn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "house is capable of burn down", "pln": ["(: cnet_capableof_376c5b26b2 (CapableOf house burn_down) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "house is capable of cost lot", "pln": ["(: cnet_capableof_c1903efb0c (CapableOf house cost_lot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "house is capable of weather storm", "pln": ["(: cnet_capableof_fb789e696e (CapableOf house weather_storm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hous is capable of blow down", "pln": ["(: cnet_capableof_c3d8c2f931 (CapableOf hous blow_down) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hous is capable of burn", "pln": ["(: cnet_capableof_edc0cc64ed (CapableOf hous burn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hous is capable of cost lot", "pln": ["(: cnet_capableof_134123e103 (CapableOf hous cost_lot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hous is capable of weather storm", "pln": ["(: cnet_capableof_b9804bf02f (CapableOf hous weather_storm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "human is capable of better himself", "pln": ["(: cnet_capableof_97a9f1def1 (CapableOf human better_himself) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of catch bus", "pln": ["(: cnet_capableof_0320ebf8d9 (CapableOf human catch_bus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of get job", "pln": ["(: cnet_capableof_b65eb2fa00 (CapableOf human get_job) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of go on date", "pln": ["(: cnet_capableof_48b2c02164 (CapableOf human go_on_date) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of have fever", "pln": ["(: cnet_capableof_fc55b12f0f (CapableOf human have_fever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of have to sleep", "pln": ["(: cnet_capableof_3d96b8c6da (CapableOf human have_to_sleep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of laugh about joke", "pln": ["(: cnet_capableof_310a0f0b68 (CapableOf human laugh_about_joke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "human is capable of laugh at joke", "pln": ["(: cnet_capableof_3471f67ae7 (CapableOf human laugh_at_joke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "human is capable of talk to human", "pln": ["(: cnet_capableof_30a9412894 (CapableOf human talk_to_human) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "human is capable of taste dish", "pln": ["(: cnet_capableof_30781911d3 (CapableOf human taste_dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "humans is capable of crazy", "pln": ["(: cnet_capableof_29918d2fe4 (CapableOf humans crazy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "humans is capable of see with eyes", "pln": ["(: cnet_capableof_05d0a010a7 (CapableOf humans see_with_eyes) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "humans is capable of share", "pln": ["(: cnet_capableof_2c2dce28f7 (CapableOf humans share) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of think and reason", "pln": ["(: cnet_capableof_07cb90d80d (CapableOf human think_and_reason) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of think critically", "pln": ["(: cnet_capableof_9ea427e85d (CapableOf human think_critically) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of torture", "pln": ["(: cnet_capableof_1685cb7964 (CapableOf human torture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of walk on two leg", "pln": ["(: cnet_capableof_7e9735e4c3 (CapableOf human walk_on_two_leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "humanity is capable of commit genocide", "pln": ["(: cnet_capableof_7b57187110 (CapableOf humanity commit_genocide) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of act in response to emotion", "pln": ["(: cnet_capableof_1ed20a07db (CapableOf human act_in_response_to_emotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of break leg", "pln": ["(: cnet_capableof_336625a559 (CapableOf human break_leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of change", "pln": ["(: cnet_capableof_117280c100 (CapableOf human change) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of crazy", "pln": ["(: cnet_capableof_08288a8613 (CapableOf human crazy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of die only once", "pln": ["(: cnet_capableof_8435a4fd62 (CapableOf human die_only_once) (STV 1.0 0.9815))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of dream", "pln": ["(: cnet_capableof_f7ef95755e (CapableOf human dream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of drive car", "pln": ["(: cnet_capableof_2cbed2bc7c (CapableOf human drive_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of eat animal", "pln": ["(: cnet_capableof_a6dab97e56 (CapableOf human eat_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of eat meat", "pln": ["(: cnet_capableof_3a346f8067 (CapableOf human eat_meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of excrete", "pln": ["(: cnet_capableof_c29ea585c5 (CapableOf human excrete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of experience life", "pln": ["(: cnet_capableof_1a72302343 (CapableOf human experience_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of feel emotion", "pln": ["(: cnet_capableof_8a95924735 (CapableOf human feel_emotion) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of have sex", "pln": ["(: cnet_capableof_4a6d772cf9 (CapableOf human have_sex) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of heal", "pln": ["(: cnet_capableof_ac578019df (CapableOf human heal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of hear sound", "pln": ["(: cnet_capableof_c17439e048 (CapableOf human hear_sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of hunt animal", "pln": ["(: cnet_capableof_ef57f30d9c (CapableOf human hunt_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of make mistake", "pln": ["(: cnet_capableof_9e296a2109 (CapableOf human make_mistake) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of play piano", "pln": ["(: cnet_capableof_f8c1f3eb65 (CapableOf human play_piano) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of reason", "pln": ["(: cnet_capableof_d84380cd54 (CapableOf human reason) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of reproduce", "pln": ["(: cnet_capableof_986c824987 (CapableOf human reproduce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of run", "pln": ["(: cnet_capableof_0826c4c731 (CapableOf human run) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of see with eye", "pln": ["(: cnet_capableof_261f2ee27d (CapableOf human see_with_eye) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of share", "pln": ["(: cnet_capableof_d24739b9b5 (CapableOf human share) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of sit down", "pln": ["(: cnet_capableof_72b4447c9c (CapableOf human sit_down) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of talk", "pln": ["(: cnet_capableof_28d9f54448 (CapableOf human talk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "human is capable of think", "pln": ["(: cnet_capableof_1ffa56f44f (CapableOf human think) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hunter is capable of bag deer", "pln": ["(: cnet_capableof_1385083add (CapableOf hunter bag_deer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hunter is capable of corner prey", "pln": ["(: cnet_capableof_8a49a697a2 (CapableOf hunter corner_prey) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hunter is capable of cover trap", "pln": ["(: cnet_capableof_cdb128a27a (CapableOf hunter cover_trap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hunter is capable of fire rifle", "pln": ["(: cnet_capableof_7a312a2fe2 (CapableOf hunter fire_rifle) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hunter is capable of kill deer", "pln": ["(: cnet_capableof_5c7410f4ff (CapableOf hunter kill_deer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hunter is capable of spot prey", "pln": ["(: cnet_capableof_bae85e55cc (CapableOf hunter spot_prey) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hunter is capable of use gun", "pln": ["(: cnet_capableof_671b246ab9 (CapableOf hunter use_gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "hunter is capable of use automatic weapon", "pln": ["(: cnet_capableof_f65f55a46d (CapableOf hunter use_automatic_weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "hypocrite is capable of act like friend", "pln": ["(: cnet_capableof_d3ddac4273 (CapableOf hypocrite act_like_friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "ice is capable of become water", "pln": ["(: cnet_capableof_bd9d4ce4d9 (CapableOf ice become_water) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "ideas is capable of divide countries", "pln": ["(: cnet_capableof_fc23a95aa8 (CapableOf ideas divide_countries) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "instructors is capable of train students", "pln": ["(: cnet_capableof_796d074332 (CapableOf instructors train_students) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ice is capable of cool beverage", "pln": ["(: cnet_capableof_13c879851f (CapableOf ice cool_beverage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ice is capable of cool body", "pln": ["(: cnet_capableof_17d31e39ab (CapableOf ice cool_body) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ice is capable of cool drink", "pln": ["(: cnet_capableof_d165a85831 (CapableOf ice cool_drink) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ice is capable of cool food", "pln": ["(: cnet_capableof_ba61c03f5b (CapableOf ice cool_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ice is capable of cool water", "pln": ["(: cnet_capableof_684d50927a (CapableOf ice cool_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ice is capable of freeze meat", "pln": ["(: cnet_capableof_9e36912b3a (CapableOf ice freeze_meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ice is capable of melt", "pln": ["(: cnet_capableof_df48067b29 (CapableOf ice melt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ice cream is capable of melt", "pln": ["(: cnet_capableof_d969058c98 (CapableOf ice_cream melt) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "idea is capable of divide country", "pln": ["(: cnet_capableof_5a2f62d9d1 (CapableOf idea divide_country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ignorance is capable of anger intelligence", "pln": ["(: cnet_capableof_daa1bf14fc (CapableOf ignorance anger_intelligence) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "in space nobody is capable of hear scream", "pln": ["(: cnet_capableof_e4eaadb877 (CapableOf in_space_nobody hear_scream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "individual is capable of object to another s behavior", "pln": ["(: cnet_capableof_4d407704ec (CapableOf individual object_to_another_s_behavior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ink is capable of stain cloth", "pln": ["(: cnet_capableof_43eacbcc0e (CapableOf ink stain_cloth) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "inmate is capable of scape prison", "pln": ["(: cnet_capableof_abe93c794c (CapableOf inmate scape_prison) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "insect is capable of buzz", "pln": ["(: cnet_capableof_1fb6b39702 (CapableOf insect buzz) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "instructor is capable of train student", "pln": ["(: cnet_capableof_33543bda75 (CapableOf instructor train_student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "instrument is capable of make music", "pln": ["(: cnet_capableof_7710338bcf (CapableOf instrument make_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "instrument is capable of include trumpet", "pln": ["(: cnet_capableof_fbbf34e2b5 (CapableOf instrument include_trumpet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "interest is capable of accrue on annual basis", "pln": ["(: cnet_capableof_7668de0abe (CapableOf interest accrue_on_annual_basis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "internet is capable of find website", "pln": ["(: cnet_capableof_80131ee733 (CapableOf internet find_website) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "internet is capable of stream video", "pln": ["(: cnet_capableof_2bc726b507 (CapableOf internet stream_video) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "inventor is capable of invent", "pln": ["(: cnet_capableof_ab452424b3 (CapableOf inventor invent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "investigator is capable of question suspect", "pln": ["(: cnet_capableof_9581f797c0 (CapableOf investigator question_suspect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "investor is capable of save money", "pln": ["(: cnet_capableof_9c65b99e28 (CapableOf investor save_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "iron is capable of press clothe", "pln": ["(: cnet_capableof_0269d05ca8 (CapableOf iron press_clothe) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "iron is capable of press pant", "pln": ["(: cnet_capableof_5d276f5c82 (CapableOf iron press_pant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "iron is capable of rust", "pln": ["(: cnet_capableof_2bc27d1ec4 (CapableOf iron rust) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "issue is capable of matter to voter", "pln": ["(: cnet_capableof_9a1560d3d4 (CapableOf issue matter_to_voter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "jack is capable of deal drug", "pln": ["(: cnet_capableof_3225a92642 (CapableOf jack deal_drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "jack is capable of raise car", "pln": ["(: cnet_capableof_e6afa152d1 (CapableOf jack raise_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "janitor is capable of clean toilet", "pln": ["(: cnet_capableof_5537ca9fd8 (CapableOf janitor clean_toilet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "japanese is capable of speak english", "pln": ["(: cnet_capableof_01d0aca92c (CapableOf japanese speak_english) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "jazz music is capable of use saxophone", "pln": ["(: cnet_capableof_5d0f8448a8 (CapableOf jazz_music use_saxophone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "jerk is capable of laugh at failure", "pln": ["(: cnet_capableof_22aab8a85f (CapableOf jerk laugh_at_failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "jerk is capable of push limit", "pln": ["(: cnet_capableof_4749b9dd1d (CapableOf jerk push_limit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "jerk is capable of throw snowball", "pln": ["(: cnet_capableof_2280947d87 (CapableOf jerk throw_snowball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "jesus is capable of feed multitude", "pln": ["(: cnet_capableof_0eb7b40625 (CapableOf jesus feed_multitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "jesus is capable of save soul", "pln": ["(: cnet_capableof_aaf9dac185 (CapableOf jesus save_soul) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "jesus is capable of shoulder cross", "pln": ["(: cnet_capableof_0ff23ba273 (CapableOf jesus shoulder_cross) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "jesus is capable of spread love", "pln": ["(: cnet_capableof_94903970eb (CapableOf jesus spread_love) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "jeweler is capable of wind watch", "pln": ["(: cnet_capableof_2f6219a84e (CapableOf jeweler wind_watch) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "jew is capable of doubt god", "pln": ["(: cnet_capableof_8eca3546ec (CapableOf jew doubt_god) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "jew is capable of fast on yom kippur", "pln": ["(: cnet_capableof_2f9c71bf10 (CapableOf jew fast_on_yom_kippur) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "jockey is capable of ride fast horse", "pln": ["(: cnet_capableof_30db307b10 (CapableOf jockey ride_fast_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "jockey is capable of ride horse", "pln": ["(: cnet_capableof_47cfee33d3 (CapableOf jockey ride_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "john safran is capable of annoying", "pln": ["(: cnet_capableof_dfb792739a (CapableOf john_safran annoying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "judge is capable of decide criminal s fate", "pln": ["(: cnet_capableof_c5fbddb135 (CapableOf judge decide_criminal_s_fate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "judge is capable of fine defendant", "pln": ["(: cnet_capableof_252ac9ccc1 (CapableOf judge fine_defendant) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "jugs is capable of hold liquids", "pln": ["(: cnet_capableof_8135e90900 (CapableOf jugs hold_liquids) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "judge is capable of fine defendent", "pln": ["(: cnet_capableof_52f53cb627 (CapableOf judge fine_defendent) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "judge is capable of fine law breaker", "pln": ["(: cnet_capableof_7aa1b215a5 (CapableOf judge fine_law_breaker) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "judge is capable of fine lawyer", "pln": ["(: cnet_capableof_f64790794b (CapableOf judge fine_lawyer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "judge is capable of fine offender", "pln": ["(: cnet_capableof_c43f6cd4ab (CapableOf judge fine_offender) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "judge is capable of judge defendant to guilty", "pln": ["(: cnet_capableof_1b8216e935 (CapableOf judge judge_defendant_to_guilty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "judge is capable of right wrong", "pln": ["(: cnet_capableof_9698a05c89 (CapableOf judge right_wrong) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "judge is capable of settle argument", "pln": ["(: cnet_capableof_da80e544ab (CapableOf judge settle_argument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "judge is capable of settle dispute", "pln": ["(: cnet_capableof_ba8b1ec924 (CapableOf judge settle_dispute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "jug is capable of hold liquid", "pln": ["(: cnet_capableof_ce6a2642ef (CapableOf jug hold_liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "juror is capable of serve on jury", "pln": ["(: cnet_capableof_621279be04 (CapableOf juror serve_on_jury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "kangaroo is capable of jump fences", "pln": ["(: cnet_capableof_00cb447be1 (CapableOf kangaroo jump_fences) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "jury is capable of side with defendant", "pln": ["(: cnet_capableof_3120af42e6 (CapableOf jury side_with_defendant) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "kangaroo is capable of jump", "pln": ["(: cnet_capableof_5799b8b12c (CapableOf kangaroo jump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "kangaroo is capable of jump fence", "pln": ["(: cnet_capableof_f8ae32c6dc (CapableOf kangaroo jump_fence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "kangaroo is capable of jump high", "pln": ["(: cnet_capableof_78ba03df94 (CapableOf kangaroo jump_high) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "key is capable of open door", "pln": ["(: cnet_capableof_635f1a7540 (CapableOf key open_door) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "key is capable of open lock", "pln": ["(: cnet_capableof_405da7d1a7 (CapableOf key open_lock) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "key is capable of start car", "pln": ["(: cnet_capableof_0b966790c6 (CapableOf key start_car) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "kid is capable of trading baseball card", "pln": ["(: cnet_capableof_fe2283add7 (CapableOf kid trading_baseball_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "killer is capable of kill", "pln": ["(: cnet_capableof_95fe992d9a (CapableOf killer kill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "kite is capable of fly", "pln": ["(: cnet_capableof_283948901c (CapableOf kite fly) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "knife is capable of butter bread", "pln": ["(: cnet_capableof_cad00214ef (CapableOf knife butter_bread) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "knife is capable of cut", "pln": ["(: cnet_capableof_73975739f1 (CapableOf knife cut) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "knife is capable of cut apple", "pln": ["(: cnet_capableof_a597d47b1c (CapableOf knife cut_apple) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "knife is capable of hurt", "pln": ["(: cnet_capableof_7365fc30f0 (CapableOf knife hurt) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "knife is capable of hurt dog", "pln": ["(: cnet_capableof_9e4da24e23 (CapableOf knife hurt_dog) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "knife is capable of spread butter", "pln": ["(: cnet_capableof_42022b1db2 (CapableOf knife spread_butter) (STV 1.0 0.9791))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "knife is capable of spread peanut butter", "pln": ["(: cnet_capableof_c9ef84b4a1 (CapableOf knife spread_peanut_butter) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "knight is capable of ride horse", "pln": ["(: cnet_capableof_8e75f792ca (CapableOf knight ride_horse) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "knight is capable of storm castle", "pln": ["(: cnet_capableof_5dda044db8 (CapableOf knight storm_castle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "knive is capable of cut thing", "pln": ["(: cnet_capableof_eb255ec567 (CapableOf knive cut_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "knive is capable of spread butter", "pln": ["(: cnet_capableof_22ce93a70f (CapableOf knive spread_butter) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lack of sleep is capable of cause insanity", "pln": ["(: cnet_capableof_f2a6f81623 (CapableOf lack_of_sleep cause_insanity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lactose tolerant people is capable of drink milk", "pln": ["(: cnet_capableof_fe1c9deca1 (CapableOf lactose_tolerant_people drink_milk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ladder is capable of reach roof", "pln": ["(: cnet_capableof_1b8821d9a7 (CapableOf ladder reach_roof) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lamp is capable of illuminate", "pln": ["(: cnet_capableof_f20b0957e3 (CapableOf lamp illuminate) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lamp is capable of light up room", "pln": ["(: cnet_capableof_7726b56978 (CapableOf lamp light_up_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "landlord is capable of let flat", "pln": ["(: cnet_capableof_edc0019adb (CapableOf landlord let_flat) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lawnmower is capable of mow lawn", "pln": ["(: cnet_capableof_44fcde37e0 (CapableOf lawnmower mow_lawn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lawyer is capable of object in court", "pln": ["(: cnet_capableof_9539a597cc (CapableOf lawyer object_in_court) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lawyer is capable of object statement", "pln": ["(: cnet_capableof_17633c4b24 (CapableOf lawyer object_statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lawyer is capable of object to hearsay", "pln": ["(: cnet_capableof_23fb26cf3a (CapableOf lawyer object_to_hearsay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lawyer is capable of object to question", "pln": ["(: cnet_capableof_83f3ca031f (CapableOf lawyer object_to_question) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lawyer is capable of object to statement", "pln": ["(: cnet_capableof_5fc4f23555 (CapableOf lawyer object_to_statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "lawyer is capable of present case to court", "pln": ["(: cnet_capableof_15bf382cd4 (CapableOf lawyer present_case_to_court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "leaves is capable of fall off trees", "pln": ["(: cnet_capableof_d4c7a7e98d (CapableOf leaves fall_off_trees) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lawyer is capable of produce evidence", "pln": ["(: cnet_capableof_07637b7660 (CapableOf lawyer produce_evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lawyer is capable of question witness", "pln": ["(: cnet_capableof_2480577aaa (CapableOf lawyer question_witness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lawyer is capable of rest case", "pln": ["(: cnet_capableof_f7b5a8f7b5 (CapableOf lawyer rest_case) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lawyer is capable of settle dispute", "pln": ["(: cnet_capableof_5ad6ddfab3 (CapableOf lawyer settle_dispute) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lawyer is capable of settle lawsuit", "pln": ["(: cnet_capableof_1c397d17c2 (CapableOf lawyer settle_lawsuit) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lawyer is capable of state case", "pln": ["(: cnet_capableof_fcec700742 (CapableOf lawyer state_case) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lawyer is capable of keep quiet", "pln": ["(: cnet_capableof_2c15b6e2bc (CapableOf lawyer keep_quiet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lawyer is capable of object to evidence", "pln": ["(: cnet_capableof_f053c3efa3 (CapableOf lawyer object_to_evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lawyer is capable of press charge", "pln": ["(: cnet_capableof_bb44b797d4 (CapableOf lawyer press_charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lawyer is capable of prove cas", "pln": ["(: cnet_capableof_0c551950c2 (CapableOf lawyer prove_cas) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "laziness is capable of subject to poverty", "pln": ["(: cnet_capableof_cf61562852 (CapableOf laziness subject_to_poverty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "leader is capable of chair meeting", "pln": ["(: cnet_capableof_0462c530cc (CapableOf leader chair_meeting) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "leader is capable of present award", "pln": ["(: cnet_capableof_6e085c5678 (CapableOf leader present_award) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "leaf is capable of fall from tree", "pln": ["(: cnet_capableof_236fc47458 (CapableOf leaf fall_from_tree) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "learning is capable of increase knowledge", "pln": ["(: cnet_capableof_407d36bcdf (CapableOf learning increase_knowledge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "learning is capable of take time", "pln": ["(: cnet_capableof_e64a401dca (CapableOf learning take_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "leave is capable of cover ground", "pln": ["(: cnet_capableof_ede3198a5e (CapableOf leave cover_ground) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "leave is capable of fall from tree", "pln": ["(: cnet_capableof_1bceaac8a9 (CapableOf leave fall_from_tree) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "leave is capable of fall off tree", "pln": ["(: cnet_capableof_4890eddeff (CapableOf leave fall_off_tree) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "liar is capable of give false information", "pln": ["(: cnet_capableof_263ecaeb75 (CapableOf liar give_false_information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "librarian is capable of answer question", "pln": ["(: cnet_capableof_1590345294 (CapableOf librarian answer_question) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "librarian is capable of sort book", "pln": ["(: cnet_capableof_6d08644956 (CapableOf librarian sort_book) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lid is capable of cover pot", "pln": ["(: cnet_capableof_6b943d1f07 (CapableOf lid cover_pot) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "life form is capable of reproduce", "pln": ["(: cnet_capableof_59c5370b02 (CapableOf life_form reproduce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "life ring is capable of save live", "pln": ["(: cnet_capableof_dc492f707b (CapableOf life_ring save_live) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "light is capable of illuminate", "pln": ["(: cnet_capableof_19f91e20a7 (CapableOf light illuminate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "light is capable of travel", "pln": ["(: cnet_capableof_eb5c021c32 (CapableOf light travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "light bulb is capable of burn out", "pln": ["(: cnet_capableof_0f1518b35f (CapableOf light_bulb burn_out) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "lions is capable of hunt zebras", "pln": ["(: cnet_capableof_9c5e8d03b7 (CapableOf lions hunt_zebras) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lightning is capable of kill people", "pln": ["(: cnet_capableof_76aebd77c4 (CapableOf lightning kill_people) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lion is capable of hunt zebra", "pln": ["(: cnet_capableof_74c5aa2977 (CapableOf lion hunt_zebra) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lion is capable of roar", "pln": ["(: cnet_capableof_1e81e5d163 (CapableOf lion roar) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lion is capable of hunt", "pln": ["(: cnet_capableof_e6fe940f87 (CapableOf lion hunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "liquid is capable of flow", "pln": ["(: cnet_capableof_613b703ec6 (CapableOf liquid flow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "little girl is capable of dress doll", "pln": ["(: cnet_capableof_be2e18a92a (CapableOf little_girl dress_doll) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "living being is capable of die", "pln": ["(: cnet_capableof_63db2d1bef (CapableOf living_being die) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "living dog is capable of bark", "pln": ["(: cnet_capableof_8c2da24070 (CapableOf living_dog bark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "living thing is capable of move", "pln": ["(: cnet_capableof_05f9fd3776 (CapableOf living_thing move) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "living thing is capable of procreate", "pln": ["(: cnet_capableof_b7ca75f1c2 (CapableOf living_thing procreate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "living thing is capable of sense environment", "pln": ["(: cnet_capableof_53c9d9b5be (CapableOf living_thing sense_environment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lizard is capable of sun itself", "pln": ["(: cnet_capableof_c3e21ff867 (CapableOf lizard sun_itself) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lizard is capable of sun itself on rock", "pln": ["(: cnet_capableof_9f90c34985 (CapableOf lizard sun_itself_on_rock) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lizard is capable of sun on rock", "pln": ["(: cnet_capableof_d9a175e7c1 (CapableOf lizard sun_on_rock) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lizard is capable of change colour", "pln": ["(: cnet_capableof_2c846a1fd2 (CapableOf lizard change_colour) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "locksmith is capable of fix broken lock", "pln": ["(: cnet_capableof_490d9aaf66 (CapableOf locksmith fix_broken_lock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "locksmith is capable of pick lock", "pln": ["(: cnet_capableof_ac809a311a (CapableOf locksmith pick_lock) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "logic is capable of help", "pln": ["(: cnet_capableof_88f8e7db18 (CapableOf logic help) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "loneliness is capable of lead to depression", "pln": ["(: cnet_capableof_b03ad51dfa (CapableOf loneliness lead_to_depression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lord is capable of own servant", "pln": ["(: cnet_capableof_343f161f5f (CapableOf lord own_servant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lost sailor is capable of live on gilligan s island", "pln": ["(: cnet_capableof_8e6c67ea35 (CapableOf lost_sailor live_on_gilligan_s_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "love is capable of bring joy", "pln": ["(: cnet_capableof_cae50a565a (CapableOf love bring_joy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "love is capable of destroy", "pln": ["(: cnet_capableof_1a7ed6ad8d (CapableOf love destroy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "love is capable of fix many problem", "pln": ["(: cnet_capableof_33bb5142b2 (CapableOf love fix_many_problem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "love is capable of give hope", "pln": ["(: cnet_capableof_74d57c23db (CapableOf love give_hope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "love is capable of hurt", "pln": ["(: cnet_capableof_7cb0f7ddd6 (CapableOf love hurt) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "love is capable of last forever", "pln": ["(: cnet_capableof_e721843a8b (CapableOf love last_forever) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "love is capable of last life time", "pln": ["(: cnet_capableof_5a918a80f8 (CapableOf love last_life_time) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "love is capable of make better person", "pln": ["(: cnet_capableof_83739e3dfa (CapableOf love make_better_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "love is capable of surprise enemy", "pln": ["(: cnet_capableof_cc39e7a534 (CapableOf love surprise_enemy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lover is capable of delight beloved with sweet word", "pln": ["(: cnet_capableof_14df2acaa4 (CapableOf lover delight_beloved_with_sweet_word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "lover is capable of make love", "pln": ["(: cnet_capableof_3a5c19ef93 (CapableOf lover make_love) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "machine is capable of bottle soda", "pln": ["(: cnet_capableof_d94c7d3dec (CapableOf machine bottle_soda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "machine is capable of construct", "pln": ["(: cnet_capableof_2e1579acb4 (CapableOf machine construct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "machine is capable of dispense", "pln": ["(: cnet_capableof_889cdeba4b (CapableOf machine dispense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "machine is capable of sort letter", "pln": ["(: cnet_capableof_1f9a0177c4 (CapableOf machine sort_letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "machine is capable of vend", "pln": ["(: cnet_capableof_386dd9ed87 (CapableOf machine vend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "machine is capable of wash dishe", "pln": ["(: cnet_capableof_2933233583 (CapableOf machine wash_dishe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "machine is capable of bottle wine", "pln": ["(: cnet_capableof_209a333571 (CapableOf machine bottle_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "machine is capable of box fruit", "pln": ["(: cnet_capableof_4aad3b8072 (CapableOf machine box_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "machine is capable of fail to work", "pln": ["(: cnet_capableof_65c94ccd74 (CapableOf machine fail_to_work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "machine is capable of take people away from planet earth", "pln": ["(: cnet_capableof_4b26ba16a7 (CapableOf machine take_people_away_from_planet_earth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "machinist is capable of machine metal", "pln": ["(: cnet_capableof_be53848e53 (CapableOf machinist machine_metal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "machinist is capable of machine part", "pln": ["(: cnet_capableof_ced653b881 (CapableOf machinist machine_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "magazine is capable of print on glossy paper", "pln": ["(: cnet_capableof_41d86b822e (CapableOf magazine print_on_glossy_paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "magician is capable of fool audience", "pln": ["(: cnet_capableof_1aea637829 (CapableOf magician fool_audience) (STV 1.0 0.9786))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "magician is capable of saw woman in half", "pln": ["(: cnet_capableof_4eb60bee17 (CapableOf magician saw_woman_in_half) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "magician is capable of produce rabbit from hat", "pln": ["(: cnet_capableof_f5be3dcfcd (CapableOf magician produce_rabbit_from_hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "maid is capable of clean house", "pln": ["(: cnet_capableof_704689a18a (CapableOf maid clean_house) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "maid is capable of clean room", "pln": ["(: cnet_capableof_52de9752fd (CapableOf maid clean_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "maid is capable of cleaning house", "pln": ["(: cnet_capableof_a0975a169d (CapableOf maid cleaning_house) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "maid is capable of iron clothe", "pln": ["(: cnet_capableof_7cd5a36c0f (CapableOf maid iron_clothe) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "maid is capable of iron shirt", "pln": ["(: cnet_capableof_c3f6ceb40d (CapableOf maid iron_shirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "male is capable of ejaculate", "pln": ["(: cnet_capableof_7b45c13545 (CapableOf male ejaculate) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "male is capable of father child", "pln": ["(: cnet_capableof_1711c26944 (CapableOf male father_child) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "male is capable of father offspring", "pln": ["(: cnet_capableof_6f23bbf249 (CapableOf male father_offspring) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "male is capable of kiss female", "pln": ["(: cnet_capableof_9ebed83852 (CapableOf male kiss_female) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "manager is capable of chair meeting", "pln": ["(: cnet_capableof_92daf5de31 (CapableOf manager chair_meeting) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "maniac is capable of plant bomb", "pln": ["(: cnet_capableof_ef38ed85c5 (CapableOf maniac plant_bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "manufacturer is capable of market product", "pln": ["(: cnet_capableof_d424fa064e (CapableOf manufacturer market_product) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "marijuana is capable of cause to feel high", "pln": ["(: cnet_capableof_25865393b2 (CapableOf marijuana cause_to_feel_high) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "mayors is capable of govern towns", "pln": ["(: cnet_capableof_36e28e7132 (CapableOf mayors govern_towns) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "marijuana is capable of ease chonic pain", "pln": ["(: cnet_capableof_8db67a8ed4 (CapableOf marijuana ease_chonic_pain) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "marijuana is capable of get high", "pln": ["(: cnet_capableof_ec8d386bc0 (CapableOf marijuana get_high) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "marijuana is capable of please hippy", "pln": ["(: cnet_capableof_e70f8f7700 (CapableOf marijuana please_hippy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "masochist is capable of subject herself to pain", "pln": ["(: cnet_capableof_b3e7d33d8d (CapableOf masochist subject_herself_to_pain) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "masochist is capable of subject himself to pain", "pln": ["(: cnet_capableof_656b73ceac (CapableOf masochist subject_himself_to_pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "match is capable of burn paper", "pln": ["(: cnet_capableof_38e13148ca (CapableOf match burn_paper) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "match is capable of light candle", "pln": ["(: cnet_capableof_0cad85970d (CapableOf match light_candle) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "match is capable of light fire", "pln": ["(: cnet_capableof_7985ccd413 (CapableOf match light_fire) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "matche is capable of light candle", "pln": ["(: cnet_capableof_fcba36ee77 (CapableOf matche light_candle) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "matche is capable of light fire", "pln": ["(: cnet_capableof_4ab6b37fe6 (CapableOf matche light_fire) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "mathematician is capable of add number", "pln": ["(: cnet_capableof_384b3be6fb (CapableOf mathematician add_number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "mayor is capable of present award", "pln": ["(: cnet_capableof_87bcd60403 (CapableOf mayor present_award) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "mayor is capable of govern town", "pln": ["(: cnet_capableof_5f39c72cb4 (CapableOf mayor govern_town) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "mechanic is capable of oil car", "pln": ["(: cnet_capableof_39ec42e3a7 (CapableOf mechanic oil_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "mechanic is capable of service car", "pln": ["(: cnet_capableof_6f6e016f28 (CapableOf mechanic service_car) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "mechanic is capable of servicing car", "pln": ["(: cnet_capableof_84ec1649a9 (CapableOf mechanic servicing_car) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "mediator is capable of settle argument", "pln": ["(: cnet_capableof_8749113eee (CapableOf mediator settle_argument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "mediator is capable of settle arguments", "pln": ["(: cnet_capableof_eb855788d1 (CapableOf mediator settle_arguments) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "medium is capable of read tarot cards", "pln": ["(: cnet_capableof_df2922cabb (CapableOf medium read_tarot_cards) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "medical doctor is capable of diagnose", "pln": ["(: cnet_capableof_76ab515a2e (CapableOf medical_doctor diagnose) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "medical doctor is capable of identify illness", "pln": ["(: cnet_capableof_e8df53d1f3 (CapableOf medical_doctor identify_illness) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "medicine is capable of slow disease", "pln": ["(: cnet_capableof_6d7ec9aa8c (CapableOf medicine slow_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "meditation is capable of change subjective consciousness", "pln": ["(: cnet_capableof_850b0673c5 (CapableOf meditation change_subjective_consciousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "meditation is capable of quiet chattering mind", "pln": ["(: cnet_capableof_bf438a0cf2 (CapableOf meditation quiet_chattering_mind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "meditation is capable of quiet mind", "pln": ["(: cnet_capableof_620f95639a (CapableOf meditation quiet_mind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "meditator is capable of light candle", "pln": ["(: cnet_capableof_843b76205c (CapableOf meditator light_candle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "medium is capable of read tarot card", "pln": ["(: cnet_capableof_a63f2e786a (CapableOf medium read_tarot_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "mentally ill is capable of talk to themselve", "pln": ["(: cnet_capableof_380d6dd0f1 (CapableOf mentally_ill talk_to_themselve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "merchant is capable of sell good", "pln": ["(: cnet_capableof_9824de86cd (CapableOf merchant sell_good) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "meteor is capable of enter atmosphere", "pln": ["(: cnet_capableof_0cfd6b66fd (CapableOf meteor enter_atmosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "mice is capable of bell cat", "pln": ["(: cnet_capableof_e15ff25f25 (CapableOf mice bell_cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "microwave oven is capable of heat foods", "pln": ["(: cnet_capableof_02de00cb69 (CapableOf microwave_oven heat_foods) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "microwaves is capable of heat food", "pln": ["(: cnet_capableof_9a25b99d91 (CapableOf microwaves heat_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "misers is capable of count money", "pln": ["(: cnet_capableof_99e1376379 (CapableOf misers count_money) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "mice is capable of eat cheese", "pln": ["(: cnet_capableof_96f6218414 (CapableOf mice eat_cheese) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "microorganism is capable of battle for supremacy", "pln": ["(: cnet_capableof_89780ada6b (CapableOf microorganism battle_for_supremacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "microwave is capable of heat food", "pln": ["(: cnet_capableof_7fc45cbef3 (CapableOf microwave heat_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "microwave oven is capable of heat food", "pln": ["(: cnet_capableof_0c479fe908 (CapableOf microwave_oven heat_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "midget is capable of steal", "pln": ["(: cnet_capableof_6020079605 (CapableOf midget steal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "migrant worker is capable of pick fruit", "pln": ["(: cnet_capableof_0de24893e9 (CapableOf migrant_worker pick_fruit) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "milk is capable of come from mammal", "pln": ["(: cnet_capableof_eeae135b5e (CapableOf milk come_from_mammal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "miner is capable of mine coal", "pln": ["(: cnet_capableof_a973fbed15 (CapableOf miner mine_coal) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "miner is capable of mine gold", "pln": ["(: cnet_capableof_a4637faef9 (CapableOf miner mine_gold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "miner is capable of mine ore", "pln": ["(: cnet_capableof_d1aea02802 (CapableOf miner mine_ore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "minister is capable of marry couple", "pln": ["(: cnet_capableof_155e2517eb (CapableOf minister marry_couple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "mirror is capable of reflect image", "pln": ["(: cnet_capableof_1972859e87 (CapableOf mirror reflect_image) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "miser is capable of count money", "pln": ["(: cnet_capableof_7fad864aa3 (CapableOf miser count_money) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "mistake is capable of anger person", "pln": ["(: cnet_capableof_8f5242712d (CapableOf mistake anger_person) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "mom is capable of mother baby", "pln": ["(: cnet_capableof_8221abae3e (CapableOf mom mother_baby) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "mommy is capable of fix", "pln": ["(: cnet_capableof_adf9279e77 (CapableOf mommy fix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "monarch is capable of govern nation", "pln": ["(: cnet_capableof_6f82c41d02 (CapableOf monarch govern_nation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "money is capable of buy food", "pln": ["(: cnet_capableof_32657f5e0a (CapableOf money buy_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "money is capable of last short time", "pln": ["(: cnet_capableof_a94f22eddc (CapableOf money last_short_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "moses is capable of part red sea", "pln": ["(: cnet_capableof_f4a1c3792f (CapableOf moses part_red_sea) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "most birds is capable of perch in trees", "pln": ["(: cnet_capableof_33cadbdf55 (CapableOf most_birds perch_in_trees) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "motorcycles is capable of corner well", "pln": ["(: cnet_capableof_ec8858c38a (CapableOf motorcycles corner_well) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "movers is capable of box belongings", "pln": ["(: cnet_capableof_ec8025c8b9 (CapableOf movers box_belongings) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "monitor is capable of display image", "pln": ["(: cnet_capableof_c28499634b (CapableOf monitor display_image) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "monkey is capable of throw thing", "pln": ["(: cnet_capableof_0b26c75563 (CapableOf monkey throw_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "monument is capable of statue", "pln": ["(: cnet_capableof_0c1cfa89b4 (CapableOf monument statue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "mop is capable of clean floor", "pln": ["(: cnet_capableof_296c503952 (CapableOf mop clean_floor) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "mormon is capable of travel to europe", "pln": ["(: cnet_capableof_9ec98220db (CapableOf mormon travel_to_europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "morning time when is capable of rain", "pln": ["(: cnet_capableof_c75f7c0f76 (CapableOf morning_time_when rain) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "mos is capable of part red sea", "pln": ["(: cnet_capableof_aaa50858e4 (CapableOf mos part_red_sea) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "mos is capable of part sea", "pln": ["(: cnet_capableof_a223e3293d (CapableOf mos part_sea) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "mos is capable of part water", "pln": ["(: cnet_capableof_d35f74e312 (CapableOf mos part_water) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "mosquito is capable of fly", "pln": ["(: cnet_capableof_dfb146577f (CapableOf mosquito fly) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "mosquito is capable of suck blood", "pln": ["(: cnet_capableof_6226df7d03 (CapableOf mosquito suck_blood) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "mosquitoe is capable of fly", "pln": ["(: cnet_capableof_24b1f918a3 (CapableOf mosquitoe fly) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "mosquitoe is capable of spread disease", "pln": ["(: cnet_capableof_00f69da2da (CapableOf mosquitoe spread_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "mosquito is capable of spread disease", "pln": ["(: cnet_capableof_b0a38c186d (CapableOf mosquito spread_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "most bird is capable of learn to fly", "pln": ["(: cnet_capableof_36f96f9d53 (CapableOf most_bird learn_to_fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "most bird is capable of perch in tree", "pln": ["(: cnet_capableof_7adbe648e7 (CapableOf most_bird perch_in_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "most people is capable of lie", "pln": ["(: cnet_capableof_ce2e4f2469 (CapableOf most_people lie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "most people is capable of smell flower", "pln": ["(: cnet_capableof_17ebab622f (CapableOf most_people smell_flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "most people is capable of swim in water", "pln": ["(: cnet_capableof_22bea7b14e (CapableOf most_people swim_in_water) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "most people is capable of think", "pln": ["(: cnet_capableof_9691a0ab79 (CapableOf most_people think) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "most people is capable of tie knot", "pln": ["(: cnet_capableof_6d6a6e9357 (CapableOf most_people tie_knot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "motorcycle is capable of corner well", "pln": ["(: cnet_capableof_6aaa6953a9 (CapableOf motorcycle corner_well) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "mouse is capable of hear cat", "pln": ["(: cnet_capableof_28aee49e8c (CapableOf mouse hear_cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "mouse is capable of spring trap", "pln": ["(: cnet_capableof_ddac6d391c (CapableOf mouse spring_trap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "mover is capable of box belonging", "pln": ["(: cnet_capableof_46af4ad938 (CapableOf mover box_belonging) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "movie is capable of star actor", "pln": ["(: cnet_capableof_838c9b41a4 (CapableOf movie star_actor) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "moving slowly is capable of annoy people", "pln": ["(: cnet_capableof_2bde421e0d (CapableOf moving_slowly annoy_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "music is capable of express feelings", "pln": ["(: cnet_capableof_954c29bcf8 (CapableOf music express_feelings) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "mud is capable of cake on boot", "pln": ["(: cnet_capableof_7374b7d7a5 (CapableOf mud cake_on_boot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "mud is capable of cake shoe", "pln": ["(: cnet_capableof_96d3daad6f (CapableOf mud cake_shoe) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "multiple nation is capable of go to war against each other", "pln": ["(: cnet_capableof_6e9cc6337f (CapableOf multiple_nation go_to_war_against_each_other) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "murder is capable of cause death", "pln": ["(: cnet_capableof_c80f705084 (CapableOf murder cause_death) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "murderer is capable of leave trail", "pln": ["(: cnet_capableof_8cd0297760 (CapableOf murderer leave_trail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "murderer is capable of wall in victim", "pln": ["(: cnet_capableof_aa0b277c8c (CapableOf murderer wall_in_victim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "murderer is capable of face death penalty", "pln": ["(: cnet_capableof_6cbf2d19f0 (CapableOf murderer face_death_penalty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "muscle is capable of contract", "pln": ["(: cnet_capableof_61caaae0da (CapableOf muscle contract) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "music is capable of express feeling", "pln": ["(: cnet_capableof_4fa8fb93bb (CapableOf music express_feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "music is capable of sound good", "pln": ["(: cnet_capableof_a6ad2843c6 (CapableOf music sound_good) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "musician is capable of master instrument", "pln": ["(: cnet_capableof_65230953a0 (CapableOf musician master_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "musician is capable of play musical instrument", "pln": ["(: cnet_capableof_e46cec5de2 (CapableOf musician play_musical_instrument) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "musician is capable of play violin", "pln": ["(: cnet_capableof_b9a37a21db (CapableOf musician play_violin) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "musician is capable of record song", "pln": ["(: cnet_capableof_d84b271ac2 (CapableOf musician record_song) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "musician is capable of tune guitar", "pln": ["(: cnet_capableof_0709bb64aa (CapableOf musician tune_guitar) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "musician is capable of play music at live concert", "pln": ["(: cnet_capableof_afd2d0f5bc (CapableOf musician play_music_at_live_concert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "nail is capable of cause puncture wound", "pln": ["(: cnet_capableof_c7a71fbe76 (CapableOf nail cause_puncture_wound) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "nail is capable of nail thing to other thing", "pln": ["(: cnet_capableof_2aa1421d38 (CapableOf nail nail_thing_to_other_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "naked people is capable of star in porno", "pln": ["(: cnet_capableof_45c6bbba17 (CapableOf naked_people star_in_porno) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "nazi is capable of commit genocide", "pln": ["(: cnet_capableof_6643a0d82c (CapableOf nazi commit_genocide) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "neighbor is capable of borrow tool", "pln": ["(: cnet_capableof_c1d5a75015 (CapableOf neighbor borrow_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "neutron released is capable of trigger chain reaction", "pln": ["(: cnet_capableof_6da658ea4d (CapableOf neutron_released trigger_chain_reaction) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "newspaper is capable of list advertiser", "pln": ["(: cnet_capableof_d66a71bd2e (CapableOf newspaper list_advertiser) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "newspaper is capable of report event", "pln": ["(: cnet_capableof_b7e5165faa (CapableOf newspaper report_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "newspaper is capable of spread new", "pln": ["(: cnet_capableof_0fcf4b0b3b (CapableOf newspaper spread_new) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "no is capable of mean yes", "pln": ["(: cnet_capableof_2e6e7e45c6 (CapableOf no mean_yes) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "nose is capable of sense smell", "pln": ["(: cnet_capableof_8172deb0c2 (CapableOf nose sense_smell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "nose is capable of smell flower", "pln": ["(: cnet_capableof_694e973502 (CapableOf nose smell_flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "nose is capable of smell thing", "pln": ["(: cnet_capableof_d3995326da (CapableOf nose smell_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "nos is capable of sense smell", "pln": ["(: cnet_capableof_01592e77af (CapableOf nos sense_smell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "number is capable of equal number", "pln": ["(: cnet_capableof_e40f921a07 (CapableOf number equal_number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "number is capable of mean lot of thing", "pln": ["(: cnet_capableof_80ad32b4a5 (CapableOf number mean_lot_of_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "numerate is capable of add number", "pln": ["(: cnet_capableof_0fd0f91913 (CapableOf numerate add_number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "nun is capable of eat spam", "pln": ["(: cnet_capableof_d69af3d7de (CapableOf nun eat_spam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "nun is capable of pray", "pln": ["(: cnet_capableof_05fe78665e (CapableOf nun pray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "nurse is capable of care for patient", "pln": ["(: cnet_capableof_c84d812d64 (CapableOf nurse care_for_patient) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "nurse is capable of page doctor", "pln": ["(: cnet_capableof_a7f0eb770d (CapableOf nurse page_doctor) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "nurse is capable of resuscitate", "pln": ["(: cnet_capableof_f8ea67414b (CapableOf nurse resuscitate) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "nurs is capable of care for patient", "pln": ["(: cnet_capableof_652b4ae384 (CapableOf nurs care_for_patient) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "older child is capable of act independently", "pln": ["(: cnet_capableof_cdbed965ea (CapableOf older_child act_independently) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "on off switch is capable of change state", "pln": ["(: cnet_capableof_96565f05b6 (CapableOf on_off_switch change_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "one is capable of ride scooter for pleasure", "pln": ["(: cnet_capableof_f8103f88ce (CapableOf one ride_scooter_for_pleasure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "one hand is capable of wash other", "pln": ["(: cnet_capableof_29a6331fcd (CapableOf one_hand wash_other) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "one person is capable of wear pair of pant", "pln": ["(: cnet_capableof_ca580f2f45 (CapableOf one_person wear_pair_of_pant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "only living thing is capable of feel", "pln": ["(: cnet_capableof_e2c321287c (CapableOf only_living_thing feel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "only local people is capable of vote in local election", "pln": ["(: cnet_capableof_505239ff99 (CapableOf only_local_people vote_in_local_election) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "only one person is capable of sit in", "pln": ["(: cnet_capableof_1c8a9b265d (CapableOf only_one_person sit_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "only people is capable of wonder about thing", "pln": ["(: cnet_capableof_16024e7352 (CapableOf only_people wonder_about_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ontology is capable of group similar thing", "pln": ["(: cnet_capableof_1d9bf984a0 (CapableOf ontology group_similar_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "opera singer is capable of sing aria", "pln": ["(: cnet_capableof_cc4eb0f1a4 (CapableOf opera_singer sing_aria) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "operating system is capable of run application", "pln": ["(: cnet_capableof_24e39c46bf (CapableOf operating_system run_application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "operator is capable of direct call", "pln": ["(: cnet_capableof_34f4b1be70 (CapableOf operator direct_call) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "opinion is capable of separate group", "pln": ["(: cnet_capableof_790c536dab (CapableOf opinion separate_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "opponent is capable of deal blow", "pln": ["(: cnet_capableof_4dd7e1b541 (CapableOf opponent deal_blow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "organism is capable of die", "pln": ["(: cnet_capableof_313cc47cd8 (CapableOf organism die) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ostriche is capable of run fast", "pln": ["(: cnet_capableof_9953a2e3b6 (CapableOf ostriche run_fast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "oven is capable of brown chicken", "pln": ["(: cnet_capableof_5852115ca7 (CapableOf oven brown_chicken) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "owl is capable of hear mouse", "pln": ["(: cnet_capableof_194fabdc6a (CapableOf owl hear_mouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "owl is capable of hear slightest rustle", "pln": ["(: cnet_capableof_14950b814d (CapableOf owl hear_slightest_rustle) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "owls is capable of spot mice", "pln": ["(: cnet_capableof_5a2c9e9a2e (CapableOf owls spot_mice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "owl is capable of rest during day", "pln": ["(: cnet_capableof_450ae15dfe (CapableOf owl rest_during_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "owl is capable of see at night", "pln": ["(: cnet_capableof_616c18294d (CapableOf owl see_at_night) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "owl is capable of see in dark", "pln": ["(: cnet_capableof_c7c7cac6b8 (CapableOf owl see_in_dark) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "owl is capable of spot mice", "pln": ["(: cnet_capableof_f5bcb323b0 (CapableOf owl spot_mice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "owl is capable of spot prey", "pln": ["(: cnet_capableof_0926ade2d9 (CapableOf owl spot_prey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "owl is capable of spot snow track of mice", "pln": ["(: cnet_capableof_371208ac45 (CapableOf owl spot_snow_track_of_mice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "owner is capable of name pet", "pln": ["(: cnet_capableof_15a1d69c23 (CapableOf owner name_pet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pacifier is capable of quiet baby", "pln": ["(: cnet_capableof_16c02759f6 (CapableOf pacifier quiet_baby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pain is capable of good sometime", "pln": ["(: cnet_capableof_dfc86f26f7 (CapableOf pain good_sometime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "paint is capable of coat surface", "pln": ["(: cnet_capableof_e5a691a6dd (CapableOf paint coat_surface) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "paint is capable of coat wall", "pln": ["(: cnet_capableof_d9b728a64f (CapableOf paint coat_wall) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "paint is capable of consist of oil", "pln": ["(: cnet_capableof_320a03dcfe (CapableOf paint consist_of_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "painter is capable of coat house", "pln": ["(: cnet_capableof_b168c40775 (CapableOf painter coat_house) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "painter is capable of coat house in paint", "pln": ["(: cnet_capableof_a77e6cddd2 (CapableOf painter coat_house_in_paint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "painter is capable of coat house with paint", "pln": ["(: cnet_capableof_4f6fd51945 (CapableOf painter coat_house_with_paint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "painter is capable of coat wall", "pln": ["(: cnet_capableof_672c2d97e9 (CapableOf painter coat_wall) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "painter is capable of letter sign", "pln": ["(: cnet_capableof_66a3141dbf (CapableOf painter letter_sign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "painter is capable of paint", "pln": ["(: cnet_capableof_cccfd47edb (CapableOf painter paint) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "painter is capable of paint picture", "pln": ["(: cnet_capableof_68b97ae54d (CapableOf painter paint_picture) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "painter is capable of paint wall", "pln": ["(: cnet_capableof_2c22e7bd95 (CapableOf painter paint_wall) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "paper is capable of burn", "pln": ["(: cnet_capableof_667474201b (CapableOf paper burn) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "paper is capable of cover rock", "pln": ["(: cnet_capableof_b64c8e0319 (CapableOf paper cover_rock) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "paper is capable of cover stone", "pln": ["(: cnet_capableof_870ec95d8f (CapableOf paper cover_stone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "parakeet is capable of person s pet", "pln": ["(: cnet_capableof_ca6965522b (CapableOf parakeet person_s_pet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "parcel service is capable of ship package for", "pln": ["(: cnet_capableof_2813f6ad6d (CapableOf parcel_service ship_package_for) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "parcel service is capable of ship package", "pln": ["(: cnet_capableof_b98f1300b9 (CapableOf parcel_service ship_package) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "parent is capable of dress child", "pln": ["(: cnet_capableof_af3ac77469 (CapableOf parent dress_child) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "parent is capable of feed child", "pln": ["(: cnet_capableof_ada0f4ae2b (CapableOf parent feed_child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "parent is capable of homeschool", "pln": ["(: cnet_capableof_6d0f63e4c3 (CapableOf parent homeschool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "parent is capable of name baby", "pln": ["(: cnet_capableof_82cd33e7ed (CapableOf parent name_baby) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "parent is capable of name child", "pln": ["(: cnet_capableof_d610295315 (CapableOf parent name_child) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "parent is capable of name children", "pln": ["(: cnet_capableof_2eb80d5d87 (CapableOf parent name_children) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "parent is capable of school child", "pln": ["(: cnet_capableof_5589433c6e (CapableOf parent school_child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "parent is capable of school own children", "pln": ["(: cnet_capableof_0a32af5d67 (CapableOf parent school_own_children) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "parent is capable of care for children", "pln": ["(: cnet_capableof_6697ab49c0 (CapableOf parent care_for_children) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "parent is capable of end dispute", "pln": ["(: cnet_capableof_9483c81374 (CapableOf parent end_dispute) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "parrot is capable of talk", "pln": ["(: cnet_capableof_345f59a963 (CapableOf parrot talk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "passage is capable of mean section of text", "pln": ["(: cnet_capableof_feba3e5976 (CapableOf passage mean_section_of_text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "passenger is capable of board airplane", "pln": ["(: cnet_capableof_94c8ceb7e9 (CapableOf passenger board_airplane) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "passenger is capable of board boat", "pln": ["(: cnet_capableof_7b4c4baead (CapableOf passenger board_boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "passenger is capable of board bus", "pln": ["(: cnet_capableof_7f3dfad490 (CapableOf passenger board_bus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "passenger is capable of board plane", "pln": ["(: cnet_capableof_1ec04440fb (CapableOf passenger board_plane) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "passenger is capable of board ship", "pln": ["(: cnet_capableof_c2b28a8cf2 (CapableOf passenger board_ship) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "passenger is capable of board train", "pln": ["(: cnet_capableof_949c526768 (CapableOf passenger board_train) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "passengers is capable of board ship", "pln": ["(: cnet_capableof_c3d98f2c6d (CapableOf passengers board_ship) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pathway is capable of guide walker", "pln": ["(: cnet_capableof_74ce8e7ad5 (CapableOf pathway guide_walker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "patient is capable of battle disease", "pln": ["(: cnet_capableof_e8e44d85c4 (CapableOf patient battle_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "patient is capable of take pill", "pln": ["(: cnet_capableof_bb9c3b0020 (CapableOf patient take_pill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "peanut butter is capable of spread on bread", "pln": ["(: cnet_capableof_1a658d1dca (CapableOf peanut_butter spread_on_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pebble is capable of break window", "pln": ["(: cnet_capableof_3a68c97b03 (CapableOf pebble break_window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pedestrian is capable of cross street", "pln": ["(: cnet_capableof_cd92f0f740 (CapableOf pedestrian cross_street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pencil is capable of last for awhile", "pln": ["(: cnet_capableof_88a25ca073 (CapableOf pencil last_for_awhile) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pencil is capable of leave mark on paper", "pln": ["(: cnet_capableof_726c903f0e (CapableOf pencil leave_mark_on_paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pencil is capable of mark paper", "pln": ["(: cnet_capableof_c1efca3770 (CapableOf pencil mark_paper) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pencil is capable of shade sketch", "pln": ["(: cnet_capableof_a63e60aa91 (CapableOf pencil shade_sketch) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "penguin is capable of swim underwater", "pln": ["(: cnet_capableof_8acf0e3b3a (CapableOf penguin swim_underwater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "penis is capable of allow man to have intercourse", "pln": ["(: cnet_capableof_bbf5a5f417 (CapableOf penis allow_man_to_have_intercourse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "penis is capable of pee", "pln": ["(: cnet_capableof_149fcc166a (CapableOf penis pee) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "penis is capable of pee blood", "pln": ["(: cnet_capableof_1c739504ac (CapableOf penis pee_blood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "penis is capable of rise quickly", "pln": ["(: cnet_capableof_9444310f45 (CapableOf penis rise_quickly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "penis is capable of shoot sperm", "pln": ["(: cnet_capableof_c0fcde44f2 (CapableOf penis shoot_sperm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "people is capable of answer telephones", "pln": ["(: cnet_capableof_a7c9538985 (CapableOf people answer_telephones) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "people is capable of ask questions", "pln": ["(: cnet_capableof_17cfd2975c (CapableOf people ask_questions) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "peopl is capable of bank money", "pln": ["(: cnet_capableof_4db0362152 (CapableOf peopl bank_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of age quickly", "pln": ["(: cnet_capableof_476f31e942 (CapableOf people age_quickly) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of agree", "pln": ["(: cnet_capableof_d2df6782b7 (CapableOf people agree) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of answer telephone", "pln": ["(: cnet_capableof_7ed60a591e (CapableOf people answer_telephone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of appeal to supreme court", "pln": ["(: cnet_capableof_b73ec9a6c3 (CapableOf people appeal_to_supreme_court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of ask question", "pln": ["(: cnet_capableof_2fa757a85d (CapableOf people ask_question) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of bank money", "pln": ["(: cnet_capableof_2d570f36f1 (CapableOf people bank_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of believe idea", "pln": ["(: cnet_capableof_e1d64207e5 (CapableOf people believe_idea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of believe in god", "pln": ["(: cnet_capableof_8cde5d31ab (CapableOf people believe_in_god) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of bite", "pln": ["(: cnet_capableof_4490790cdf (CapableOf people bite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of board ship", "pln": ["(: cnet_capableof_5aa48c6bc1 (CapableOf people board_ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of borrow book from library", "pln": ["(: cnet_capableof_59e4ddbeae (CapableOf people borrow_book_from_library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of bridge gap", "pln": ["(: cnet_capableof_4dd1ae3734 (CapableOf people bridge_gap) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "people is capable of bug people", "pln": ["(: cnet_capableof_6d9327487b (CapableOf people bug_people) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of build house", "pln": ["(: cnet_capableof_53fc02cb3f (CapableOf people build_house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of build hous", "pln": ["(: cnet_capableof_2443e44e03 (CapableOf people build_hous) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of buy car", "pln": ["(: cnet_capableof_9f0d5c21bb (CapableOf people buy_car) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of captain ship", "pln": ["(: cnet_capableof_fbbdf36e01 (CapableOf people captain_ship) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of care for animal", "pln": ["(: cnet_capableof_663267e5d4 (CapableOf people care_for_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of catch cold", "pln": ["(: cnet_capableof_7ae7887fc0 (CapableOf people catch_cold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of catch fish", "pln": ["(: cnet_capableof_8c1d747c87 (CapableOf people catch_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "people is capable of climb mountain", "pln": ["(: cnet_capableof_042ba3b43d (CapableOf people climb_mountain) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of come home", "pln": ["(: cnet_capableof_40c64f2449 (CapableOf people come_home) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of complete sentence", "pln": ["(: cnet_capableof_600656a2ad (CapableOf people complete_sentence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of consider idea", "pln": ["(: cnet_capableof_95cfb94d6e (CapableOf people consider_idea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of cook dinner", "pln": ["(: cnet_capableof_7d7aa66cad (CapableOf people cook_dinner) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of cook food", "pln": ["(: cnet_capableof_ab42e51aba (CapableOf people cook_food) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of count", "pln": ["(: cnet_capableof_76c52b6215 (CapableOf people count) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of count sheep", "pln": ["(: cnet_capableof_3daa4967c4 (CapableOf people count_sheep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of cross road", "pln": ["(: cnet_capableof_50e71741de (CapableOf people cross_road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of cut hair", "pln": ["(: cnet_capableof_974bef4f3e (CapableOf people cut_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of dance to music", "pln": ["(: cnet_capableof_844f51cfab (CapableOf people dance_to_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of dance to waltz", "pln": ["(: cnet_capableof_850fc735e3 (CapableOf people dance_to_waltz) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of dance waltz", "pln": ["(: cnet_capableof_6737b60690 (CapableOf people dance_waltz) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of dance with each other", "pln": ["(: cnet_capableof_1b4a24c401 (CapableOf people dance_with_each_other) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of deal card", "pln": ["(: cnet_capableof_07f9d3b9f3 (CapableOf people deal_card) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of deceive", "pln": ["(: cnet_capableof_b88d2ea712 (CapableOf people deceive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of demand justice", "pln": ["(: cnet_capableof_79824d54a9 (CapableOf people demand_justice) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "people is capable of desire freedom", "pln": ["(: cnet_capableof_9fb8137615 (CapableOf people desire_freedom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of destroy world", "pln": ["(: cnet_capableof_382289180c (CapableOf people destroy_world) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of do bad thing to themselve", "pln": ["(: cnet_capableof_debe77f9aa (CapableOf people do_bad_thing_to_themselve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of do dishe", "pln": ["(: cnet_capableof_52048cb5c4 (CapableOf people do_dishe) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of doubt other people", "pln": ["(: cnet_capableof_d8a3718932 (CapableOf people doubt_other_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "people is capable of doubt people", "pln": ["(: cnet_capableof_1a70ce92da (CapableOf people doubt_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "people is capable of enjoy themselves", "pln": ["(: cnet_capableof_bfa13e2f89 (CapableOf people enjoy_themselves) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of dream when sleeping", "pln": ["(: cnet_capableof_803e9ca587 (CapableOf people dream_when_sleeping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of eat cat food", "pln": ["(: cnet_capableof_153fbd0e77 (CapableOf people eat_cat_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of eat food off plate", "pln": ["(: cnet_capableof_2ff0db864b (CapableOf people eat_food_off_plate) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of enjoy themselve", "pln": ["(: cnet_capableof_5282510451 (CapableOf people enjoy_themselve) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of experience joy", "pln": ["(: cnet_capableof_1ede4cca56 (CapableOf people experience_joy) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of experience new thing", "pln": ["(: cnet_capableof_2e0d393465 (CapableOf people experience_new_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of experience pain", "pln": ["(: cnet_capableof_996a1443a5 (CapableOf people experience_pain) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of face each other", "pln": ["(: cnet_capableof_09deb9df2e (CapableOf people face_each_other) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of fear dark", "pln": ["(: cnet_capableof_b6cc984b9d (CapableOf people fear_dark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "people is capable of fear death", "pln": ["(: cnet_capableof_84fd90e562 (CapableOf people fear_death) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of fight each other", "pln": ["(: cnet_capableof_a8bf488137 (CapableOf people fight_each_other) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of follow story", "pln": ["(: cnet_capableof_5ec288d457 (CapableOf people follow_story) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of forget thing", "pln": ["(: cnet_capableof_cd5d293a54 (CapableOf people forget_thing) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of friend", "pln": ["(: cnet_capableof_8b0b42274d (CapableOf people friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of gain knowledge", "pln": ["(: cnet_capableof_db7ab00ac9 (CapableOf people gain_knowledge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "people is capable of get sick", "pln": ["(: cnet_capableof_b5b7229d89 (CapableOf people get_sick) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "people is capable of give money to charities", "pln": ["(: cnet_capableof_570073482b (CapableOf people give_money_to_charities) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of give money to charity", "pln": ["(: cnet_capableof_57d40481c0 (CapableOf people give_money_to_charity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of go hiking", "pln": ["(: cnet_capableof_cec69adbad (CapableOf people go_hiking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "people is capable of go out", "pln": ["(: cnet_capableof_bed383292e (CapableOf people go_out) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of group object", "pln": ["(: cnet_capableof_0ae1f7ee44 (CapableOf people group_object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of group together", "pln": ["(: cnet_capableof_ccca61e065 (CapableOf people group_together) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of have to go to toilet", "pln": ["(: cnet_capableof_77f96e18df (CapableOf people have_to_go_to_toilet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of hear nois", "pln": ["(: cnet_capableof_2d7f7786b7 (CapableOf people hear_nois) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of imagine", "pln": ["(: cnet_capableof_b6f18116a5 (CapableOf people imagine) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of join group", "pln": ["(: cnet_capableof_9a67ef301e (CapableOf people join_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of jump", "pln": ["(: cnet_capableof_16decabd97 (CapableOf people jump) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "people is capable of kill each other", "pln": ["(: cnet_capableof_e73c840032 (CapableOf people kill_each_other) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "people is capable of laugh jokes", "pln": ["(: cnet_capableof_068cf8e4b0 (CapableOf people laugh_jokes) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "people is capable of put flowers in hair", "pln": ["(: cnet_capableof_f8b05397c0 (CapableOf people put_flowers_in_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of kill other people", "pln": ["(: cnet_capableof_5167642391 (CapableOf people kill_other_people) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of kiss each other", "pln": ["(: cnet_capableof_f968044d5d (CapableOf people kiss_each_other) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of laugh at each other", "pln": ["(: cnet_capableof_f3942f9732 (CapableOf people laugh_at_each_other) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of laugh at joke", "pln": ["(: cnet_capableof_986e186d4c (CapableOf people laugh_at_joke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of laugh joke", "pln": ["(: cnet_capableof_dc78bd8b1c (CapableOf people laugh_joke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of lay down", "pln": ["(: cnet_capableof_0bb5880beb (CapableOf people lay_down) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of learn by playing game", "pln": ["(: cnet_capableof_ff8d0b1ced (CapableOf people learn_by_playing_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of learn by reading", "pln": ["(: cnet_capableof_fe9b14f887 (CapableOf people learn_by_reading) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of learn from each other", "pln": ["(: cnet_capableof_7c0c11533d (CapableOf people learn_from_each_other) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of leave building", "pln": ["(: cnet_capableof_3ed24e5cf5 (CapableOf people leave_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of lie", "pln": ["(: cnet_capableof_5938fde222 (CapableOf people lie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of live over 100 year", "pln": ["(: cnet_capableof_340464831c (CapableOf people live_over_100_year) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of lose wallet", "pln": ["(: cnet_capableof_c20c1afb9f (CapableOf people lose_wallet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of make art", "pln": ["(: cnet_capableof_08279618f6 (CapableOf people make_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of make baby", "pln": ["(: cnet_capableof_e8e83b730f (CapableOf people make_baby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of make friend", "pln": ["(: cnet_capableof_17b873fb9c (CapableOf people make_friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of make music", "pln": ["(: cnet_capableof_9c7685f2c5 (CapableOf people make_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of milk cow", "pln": ["(: cnet_capableof_dfe1aea091 (CapableOf people milk_cow) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of miss appointment", "pln": ["(: cnet_capableof_ada0442bae (CapableOf people miss_appointment) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of own property", "pln": ["(: cnet_capableof_6721fd36c8 (CapableOf people own_property) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of pay bill", "pln": ["(: cnet_capableof_9c8f22b65e (CapableOf people pay_bill) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of plan", "pln": ["(: cnet_capableof_993484a3de (CapableOf people plan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of plant flower", "pln": ["(: cnet_capableof_41841e2427 (CapableOf people plant_flower) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of put flower in hair", "pln": ["(: cnet_capableof_ae7aece84d (CapableOf people put_flower_in_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of question authority", "pln": ["(: cnet_capableof_1c52b604f3 (CapableOf people question_authority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of race car", "pln": ["(: cnet_capableof_ab5f1d7052 (CapableOf people race_car) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of read book for enjoyment", "pln": ["(: cnet_capableof_3a96203a80 (CapableOf people read_book_for_enjoyment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of receive gift", "pln": ["(: cnet_capableof_bea69c640c (CapableOf people receive_gift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of report crime", "pln": ["(: cnet_capableof_f77a09a3d8 (CapableOf people report_crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of sail boat", "pln": ["(: cnet_capableof_a59d40b5d8 (CapableOf people sail_boat) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of salt food", "pln": ["(: cnet_capableof_992f2178e4 (CapableOf people salt_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of say thing", "pln": ["(: cnet_capableof_4ec28e8655 (CapableOf people say_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of sense environment", "pln": ["(: cnet_capableof_efb517067d (CapableOf people sense_environment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of settle argument", "pln": ["(: cnet_capableof_b6a254b355 (CapableOf people settle_argument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of shake hand", "pln": ["(: cnet_capableof_5a1a76be74 (CapableOf people shake_hand) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "people is capable of share food", "pln": ["(: cnet_capableof_10e92935d4 (CapableOf people share_food) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of share thing", "pln": ["(: cnet_capableof_9541f47eda (CapableOf people share_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of shoulder burden", "pln": ["(: cnet_capableof_fefbef4a71 (CapableOf people shoulder_burden) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of shout", "pln": ["(: cnet_capableof_fb25ea93ea (CapableOf people shout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "people is capable of shout to heard far away", "pln": ["(: cnet_capableof_4b680c7b3a (CapableOf people shout_to_heard_far_away) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of shout word", "pln": ["(: cnet_capableof_39a7928bc1 (CapableOf people shout_word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of sing in choir", "pln": ["(: cnet_capableof_7cb02c8b36 (CapableOf people sing_in_choir) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of sit on bar stool", "pln": ["(: cnet_capableof_46ab7fe490 (CapableOf people sit_on_bar_stool) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of ski on snow", "pln": ["(: cnet_capableof_9e4bd197eb (CapableOf people ski_on_snow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of smell flower", "pln": ["(: cnet_capableof_1cded0214c (CapableOf people smell_flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of smell with nos", "pln": ["(: cnet_capableof_7f5dee38f9 (CapableOf people smell_with_nos) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "people is capable of speak", "pln": ["(: cnet_capableof_99f1baa81f (CapableOf people speak) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "people is capable of swim in lakes", "pln": ["(: cnet_capableof_726523cb8f (CapableOf people swim_in_lakes) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of speak language", "pln": ["(: cnet_capableof_1b361d34d4 (CapableOf people speak_language) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of speak to each other", "pln": ["(: cnet_capableof_39d5c718f7 (CapableOf people speak_to_each_other) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of spread preserve", "pln": ["(: cnet_capableof_1f422642cf (CapableOf people spread_preserve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of stand on two feet", "pln": ["(: cnet_capableof_ef5558b480 (CapableOf people stand_on_two_feet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of stand upright", "pln": ["(: cnet_capableof_6051aae29a (CapableOf people stand_upright) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of study book", "pln": ["(: cnet_capableof_4f286148c1 (CapableOf people study_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of study from book", "pln": ["(: cnet_capableof_890e60a8cd (CapableOf people study_from_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of study in library", "pln": ["(: cnet_capableof_5891689657 (CapableOf people study_in_library) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of suffer hunger", "pln": ["(: cnet_capableof_e104823033 (CapableOf people suffer_hunger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of suffer pain", "pln": ["(: cnet_capableof_1909d26ada (CapableOf people suffer_pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of swim in lake", "pln": ["(: cnet_capableof_b608eb122e (CapableOf people swim_in_lake) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of swim in water", "pln": ["(: cnet_capableof_6172ce93b0 (CapableOf people swim_in_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of talk to each other", "pln": ["(: cnet_capableof_b921fafcfc (CapableOf people talk_to_each_other) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of taste food", "pln": ["(: cnet_capableof_f661e95e33 (CapableOf people taste_food) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "people is capable of thank god", "pln": ["(: cnet_capableof_3bec6ecb14 (CapableOf people thank_god) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "people is capable of train dogs", "pln": ["(: cnet_capableof_8607dd528c (CapableOf people train_dogs) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "people is capable of use drugs", "pln": ["(: cnet_capableof_3a6151ad84 (CapableOf people use_drugs) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "people is capable of view movies", "pln": ["(: cnet_capableof_fa8bff92f9 (CapableOf people view_movies) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of touch other people", "pln": ["(: cnet_capableof_2c96b1811d (CapableOf people touch_other_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of touch people", "pln": ["(: cnet_capableof_3e8770581e (CapableOf people touch_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of train dog", "pln": ["(: cnet_capableof_31d85f9acc (CapableOf people train_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of try to learn", "pln": ["(: cnet_capableof_2aa821e372 (CapableOf people try_to_learn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of turn page", "pln": ["(: cnet_capableof_7ac872d427 (CapableOf people turn_page) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of use drug", "pln": ["(: cnet_capableof_6455d94be8 (CapableOf people use_drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of value each other", "pln": ["(: cnet_capableof_cd363fa1d5 (CapableOf people value_each_other) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of view movy", "pln": ["(: cnet_capableof_0587e0fa92 (CapableOf people view_movy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of visit place", "pln": ["(: cnet_capableof_cab8802c14 (CapableOf people visit_place) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of voice opinion", "pln": ["(: cnet_capableof_40f6d23be7 (CapableOf people voice_opinion) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of wait in line", "pln": ["(: cnet_capableof_241d0dc2d5 (CapableOf people wait_in_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of wank off", "pln": ["(: cnet_capableof_39673630b6 (CapableOf people wank_off) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of wash car", "pln": ["(: cnet_capableof_148ede093c (CapableOf people wash_car) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of watch new on television", "pln": ["(: cnet_capableof_6ce6cccc98 (CapableOf people watch_new_on_television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of wave hand", "pln": ["(: cnet_capableof_c3d1f34952 (CapableOf people wave_hand) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of wear jean", "pln": ["(: cnet_capableof_a0017befdd (CapableOf people wear_jean) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of wear suit", "pln": ["(: cnet_capableof_19c26959ca (CapableOf people wear_suit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of weather storm", "pln": ["(: cnet_capableof_d260b8fcf9 (CapableOf people weather_storm) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "people is capable of work in team", "pln": ["(: cnet_capableof_21e22989f0 (CapableOf people work_in_team) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "person is capable of age with grace", "pln": ["(: cnet_capableof_0ca0a4813d (CapableOf person age_with_grace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of amount to", "pln": ["(: cnet_capableof_152dd87d8e (CapableOf person amount_to) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of attempt suicide", "pln": ["(: cnet_capableof_5403d10c2c (CapableOf person attempt_suicide) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of believe in god", "pln": ["(: cnet_capableof_8cbd317ef4 (CapableOf person believe_in_god) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of bicycle to work", "pln": ["(: cnet_capableof_ae17661e53 (CapableOf person bicycle_to_work) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of blow candle out", "pln": ["(: cnet_capableof_fe2a7b4bcd (CapableOf person blow_candle_out) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of board plane", "pln": ["(: cnet_capableof_bdbecc1f78 (CapableOf person board_plane) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of board ship", "pln": ["(: cnet_capableof_dde2ba43f3 (CapableOf person board_ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of board train", "pln": ["(: cnet_capableof_b793bdfe84 (CapableOf person board_train) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of borrow book from library", "pln": ["(: cnet_capableof_9d249531ed (CapableOf person borrow_book_from_library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of butter bread", "pln": ["(: cnet_capableof_a4a827325a (CapableOf person butter_bread) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of butter piece of bread", "pln": ["(: cnet_capableof_99a36285e0 (CapableOf person butter_piece_of_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of butter toast", "pln": ["(: cnet_capableof_1ebb72fc78 (CapableOf person butter_toast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of buy car", "pln": ["(: cnet_capableof_d857ba0e9d (CapableOf person buy_car) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "person is capable of buy food", "pln": ["(: cnet_capableof_43a8133024 (CapableOf person buy_food) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of captain ship", "pln": ["(: cnet_capableof_835004c2df (CapableOf person captain_ship) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of catch cold", "pln": ["(: cnet_capableof_8ec3aa4e37 (CapableOf person catch_cold) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of chair committee", "pln": ["(: cnet_capableof_d950f935a4 (CapableOf person chair_committee) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of chair meeting", "pln": ["(: cnet_capableof_677d0f074f (CapableOf person chair_meeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "person is capable of control own reproduction", "pln": ["(: cnet_capableof_e4a3fe73ea (CapableOf person control_own_reproduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of converse", "pln": ["(: cnet_capableof_dd9fe48ab7 (CapableOf person converse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of cook dinner", "pln": ["(: cnet_capableof_586645f448 (CapableOf person cook_dinner) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of cook food", "pln": ["(: cnet_capableof_847c9c5c9f (CapableOf person cook_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of cross street", "pln": ["(: cnet_capableof_546c3698d4 (CapableOf person cross_street) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of cup hand", "pln": ["(: cnet_capableof_3cfc484867 (CapableOf person cup_hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "person is capable of date another person", "pln": ["(: cnet_capableof_7e8f010b0e (CapableOf person date_another_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "person is capable of deal cards", "pln": ["(: cnet_capableof_2fccf9f810 (CapableOf person deal_cards) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of deal card", "pln": ["(: cnet_capableof_83906d18e1 (CapableOf person deal_card) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of deal drug", "pln": ["(: cnet_capableof_4de0f31e25 (CapableOf person deal_drug) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of die of cancer", "pln": ["(: cnet_capableof_805379b7a9 (CapableOf person die_of_cancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of drink liquid", "pln": ["(: cnet_capableof_8c178da615 (CapableOf person drink_liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of drink milk", "pln": ["(: cnet_capableof_e93a5f8e0d (CapableOf person drink_milk) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of enjoy food", "pln": ["(: cnet_capableof_0c9efaf9a6 (CapableOf person enjoy_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of enter house", "pln": ["(: cnet_capableof_5bd4a92f5e (CapableOf person enter_house) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "person is capable of enter store", "pln": ["(: cnet_capableof_a092c543cd (CapableOf person enter_store) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of experience joy", "pln": ["(: cnet_capableof_86c0fe7a28 (CapableOf person experience_joy) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of experience situation", "pln": ["(: cnet_capableof_2e41b6a128 (CapableOf person experience_situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of face truth", "pln": ["(: cnet_capableof_1893128a17 (CapableOf person face_truth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of fear death", "pln": ["(: cnet_capableof_270a5c32d7 (CapableOf person fear_death) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "person is capable of fear to fall", "pln": ["(: cnet_capableof_c64686f40d (CapableOf person fear_to_fall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of feel embarrassed", "pln": ["(: cnet_capableof_eba57eb36b (CapableOf person feel_embarrassed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of feel happy", "pln": ["(: cnet_capableof_97ba7b4072 (CapableOf person feel_happy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of further cause", "pln": ["(: cnet_capableof_ee469cbc9d (CapableOf person further_cause) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of gain weight", "pln": ["(: cnet_capableof_aa3059d280 (CapableOf person gain_weight) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of give gift", "pln": ["(: cnet_capableof_ca26f99508 (CapableOf person give_gift) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of go into mountain", "pln": ["(: cnet_capableof_779cea328e (CapableOf person go_into_mountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of go to mountain", "pln": ["(: cnet_capableof_89972cc182 (CapableOf person go_to_mountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of guess answer", "pln": ["(: cnet_capableof_8980fbd5d3 (CapableOf person guess_answer) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "person is capable of hear music on radio", "pln": ["(: cnet_capableof_83a49e84c0 (CapableOf person hear_music_on_radio) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "person is capable of lose keys", "pln": ["(: cnet_capableof_3b19651415 (CapableOf person lose_keys) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of hear nois", "pln": ["(: cnet_capableof_89d62d1b70 (CapableOf person hear_nois) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of hold breath", "pln": ["(: cnet_capableof_8b596178ce (CapableOf person hold_breath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of holding", "pln": ["(: cnet_capableof_2b8441b436 (CapableOf person holding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of hurry up", "pln": ["(: cnet_capableof_b6930af025 (CapableOf person hurry_up) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of iron pant", "pln": ["(: cnet_capableof_27cb6073db (CapableOf person iron_pant) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of iron shirt", "pln": ["(: cnet_capableof_3b540773a2 (CapableOf person iron_shirt) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of labor for hire", "pln": ["(: cnet_capableof_ef651a029a (CapableOf person labor_for_hire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of laugh at himself", "pln": ["(: cnet_capableof_e250cfdf74 (CapableOf person laugh_at_himself) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of laugh at joke", "pln": ["(: cnet_capableof_29a10fb529 (CapableOf person laugh_at_joke) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of leave house", "pln": ["(: cnet_capableof_2aecd1f4bf (CapableOf person leave_house) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of leave place", "pln": ["(: cnet_capableof_26c2c78a67 (CapableOf person leave_place) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of lie in bed", "pln": ["(: cnet_capableof_45fb6e0fb3 (CapableOf person lie_in_bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of lose key", "pln": ["(: cnet_capableof_1fd0922fa3 (CapableOf person lose_key) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of lose wallet", "pln": ["(: cnet_capableof_c34813bd83 (CapableOf person lose_wallet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of lower blind", "pln": ["(: cnet_capableof_f12bdbfff3 (CapableOf person lower_blind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of mail letter to another person", "pln": ["(: cnet_capableof_8f66296fed (CapableOf person mail_letter_to_another_person) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "person is capable of mail parcel to another person", "pln": ["(: cnet_capableof_340c9b85c7 (CapableOf person mail_parcel_to_another_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of make wine", "pln": ["(: cnet_capableof_aa50b54218 (CapableOf person make_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of man ship", "pln": ["(: cnet_capableof_b8b4917c45 (CapableOf person man_ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of master skill", "pln": ["(: cnet_capableof_09b8463b59 (CapableOf person master_skill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of meet friend", "pln": ["(: cnet_capableof_f520917384 (CapableOf person meet_friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of milk cow", "pln": ["(: cnet_capableof_08b7744836 (CapableOf person milk_cow) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of miss appointment", "pln": ["(: cnet_capableof_46631bee81 (CapableOf person miss_appointment) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of need companionship", "pln": ["(: cnet_capableof_27db8fa99d (CapableOf person need_companionship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of need food", "pln": ["(: cnet_capableof_3a06299b0e (CapableOf person need_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of open door", "pln": ["(: cnet_capableof_912b074147 (CapableOf person open_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of own car", "pln": ["(: cnet_capableof_8701f90bd1 (CapableOf person own_car) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of pay bill", "pln": ["(: cnet_capableof_b93a0d5da2 (CapableOf person pay_bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of pay on bill", "pln": ["(: cnet_capableof_18276ca8a9 (CapableOf person pay_on_bill) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of pick nose", "pln": ["(: cnet_capableof_823dfbe369 (CapableOf person pick_nose) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of plan party", "pln": ["(: cnet_capableof_bdd703ec37 (CapableOf person plan_party) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of plan vacation", "pln": ["(: cnet_capableof_2ca7609ca2 (CapableOf person plan_vacation) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of plant flower", "pln": ["(: cnet_capableof_9324db06d0 (CapableOf person plant_flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of plant thing", "pln": ["(: cnet_capableof_1f7c11623e (CapableOf person plant_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of plant tree", "pln": ["(: cnet_capableof_705088d39f (CapableOf person plant_tree) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of play saxophone", "pln": ["(: cnet_capableof_81cd061c31 (CapableOf person play_saxophone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "person is capable of promise to do", "pln": ["(: cnet_capableof_6c0ea0118b (CapableOf person promise_to_do) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of read bible", "pln": ["(: cnet_capableof_9ba6d41ca4 (CapableOf person read_bible) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of receive letter", "pln": ["(: cnet_capableof_803c9a3b70 (CapableOf person receive_letter) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of reply to e mail", "pln": ["(: cnet_capableof_2e2abd6a11 (CapableOf person reply_to_e_mail) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "person is capable of reply to letter", "pln": ["(: cnet_capableof_92e67487e0 (CapableOf person reply_to_letter) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of reply to question", "pln": ["(: cnet_capableof_74c23577f9 (CapableOf person reply_to_question) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of rest in bed", "pln": ["(: cnet_capableof_cccf20376f (CapableOf person rest_in_bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "person is capable of rest on bed", "pln": ["(: cnet_capableof_cd0376322b (CapableOf person rest_on_bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "person is capable of value desires", "pln": ["(: cnet_capableof_1e69a43944 (CapableOf person value_desires) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "person is capable of wash dishes", "pln": ["(: cnet_capableof_88482528ac (CapableOf person wash_dishes) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of return book to library", "pln": ["(: cnet_capableof_91f4cfba46 (CapableOf person return_book_to_library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of return favor", "pln": ["(: cnet_capableof_4e401493c2 (CapableOf person return_favor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of sail boat", "pln": ["(: cnet_capableof_f5bcb0b903 (CapableOf person sail_boat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of salt earth", "pln": ["(: cnet_capableof_8b2096eae3 (CapableOf person salt_earth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of salt food", "pln": ["(: cnet_capableof_f41c5362dd (CapableOf person salt_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of say love", "pln": ["(: cnet_capableof_6015bc285f (CapableOf person say_love) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of say word", "pln": ["(: cnet_capableof_2a79d0fcfc (CapableOf person say_word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of shoulder burden", "pln": ["(: cnet_capableof_dbea10f472 (CapableOf person shoulder_burden) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of shoulder responsibility", "pln": ["(: cnet_capableof_4bd20dbaad (CapableOf person shoulder_responsibility) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of shout at", "pln": ["(: cnet_capableof_010a30f4fc (CapableOf person shout_at) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of sit up", "pln": ["(: cnet_capableof_86191bcb27 (CapableOf person sit_up) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of skate across field of ice", "pln": ["(: cnet_capableof_acb5e5d4b1 (CapableOf person skate_across_field_of_ice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of smoke cigar", "pln": ["(: cnet_capableof_ed67f25f18 (CapableOf person smoke_cigar) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of speak language", "pln": ["(: cnet_capableof_ad9fa0b164 (CapableOf person speak_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of state fact", "pln": ["(: cnet_capableof_549112d5fb (CapableOf person state_fact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of state fact to audience", "pln": ["(: cnet_capableof_952177e4a0 (CapableOf person state_fact_to_audience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of step forward", "pln": ["(: cnet_capableof_ea224a0c9b (CapableOf person step_forward) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of step on other people", "pln": ["(: cnet_capableof_f9ff7cd690 (CapableOf person step_on_other_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of step out", "pln": ["(: cnet_capableof_927dda19d9 (CapableOf person step_out) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of step up", "pln": ["(: cnet_capableof_ec5f4d1ca4 (CapableOf person step_up) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of study greek", "pln": ["(: cnet_capableof_50d4ee257e (CapableOf person study_greek) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of subject himself to examination", "pln": ["(: cnet_capableof_e38a0a2828 (CapableOf person subject_himself_to_examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of surprise another person", "pln": ["(: cnet_capableof_5a25ab523c (CapableOf person surprise_another_person) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of take bus", "pln": ["(: cnet_capableof_6a26173ae9 (CapableOf person take_bus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of talk to else", "pln": ["(: cnet_capableof_adc640cead (CapableOf person talk_to_else) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of talk to themselve", "pln": ["(: cnet_capableof_c0e9c11096 (CapableOf person talk_to_themselve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of talking to else", "pln": ["(: cnet_capableof_28afd159e2 (CapableOf person talking_to_else) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of taste food", "pln": ["(: cnet_capableof_960caff531 (CapableOf person taste_food) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of tear paper", "pln": ["(: cnet_capableof_97aa4af062 (CapableOf person tear_paper) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of thank another person", "pln": ["(: cnet_capableof_84f7081a66 (CapableOf person thank_another_person) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of thank god", "pln": ["(: cnet_capableof_78e33e14be (CapableOf person thank_god) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of trip another person", "pln": ["(: cnet_capableof_51c91fe001 (CapableOf person trip_another_person) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of value desire", "pln": ["(: cnet_capableof_4a62c3bc51 (CapableOf person value_desire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of visit friend", "pln": ["(: cnet_capableof_70b10c7e8a (CapableOf person visit_friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of visit place", "pln": ["(: cnet_capableof_2f83d51405 (CapableOf person visit_place) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of voice opinion", "pln": ["(: cnet_capableof_b3de6780ef (CapableOf person voice_opinion) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of wait for while", "pln": ["(: cnet_capableof_02beb80590 (CapableOf person wait_for_while) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of walk dog", "pln": ["(: cnet_capableof_4d26582e67 (CapableOf person walk_dog) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of wash dishe", "pln": ["(: cnet_capableof_8732f0410a (CapableOf person wash_dishe) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of wash hair", "pln": ["(: cnet_capableof_4d3496de2e (CapableOf person wash_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "person is capable of water plant", "pln": ["(: cnet_capableof_89978500dd (CapableOf person water_plant) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "petrol is capable of power engines", "pln": ["(: cnet_capableof_c983239e82 (CapableOf petrol power_engines) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of wave at another person", "pln": ["(: cnet_capableof_8a6e6e5240 (CapableOf person wave_at_another_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of wave goodbye", "pln": ["(: cnet_capableof_3775e7a4bd (CapableOf person wave_goodbye) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of wave to another person", "pln": ["(: cnet_capableof_2c7965609f (CapableOf person wave_to_another_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of wave to friend", "pln": ["(: cnet_capableof_7f60c28f5c (CapableOf person wave_to_friend) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of wear jean", "pln": ["(: cnet_capableof_66d57c0521 (CapableOf person wear_jean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of win contest", "pln": ["(: cnet_capableof_0dc294c395 (CapableOf person win_contest) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of wind clock", "pln": ["(: cnet_capableof_95c6334b9c (CapableOf person wind_clock) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of wind watch", "pln": ["(: cnet_capableof_e96ef7221c (CapableOf person wind_watch) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of write letter to friend", "pln": ["(: cnet_capableof_aa1ac60a3e (CapableOf person write_letter_to_friend) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "person is capable of wrong another person", "pln": ["(: cnet_capableof_1390e55a44 (CapableOf person wrong_another_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pet owner is capable of walk dog", "pln": ["(: cnet_capableof_8c6fbf058a (CapableOf pet_owner walk_dog) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "petrol is capable of burn hot", "pln": ["(: cnet_capableof_8ed669671a (CapableOf petrol burn_hot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "petrol is capable of drop in price", "pln": ["(: cnet_capableof_c94215f87b (CapableOf petrol drop_in_price) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "petrol is capable of power engine", "pln": ["(: cnet_capableof_9309635138 (CapableOf petrol power_engine) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pharmacist is capable of fill prescription", "pln": ["(: cnet_capableof_eacbc5a757 (CapableOf pharmacist fill_prescription) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "phone is capable of make call", "pln": ["(: cnet_capableof_4c2929d40a (CapableOf phone make_call) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "phone is capable of ring", "pln": ["(: cnet_capableof_72b156c4b0 (CapableOf phone ring) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "photo is capable of record wedding", "pln": ["(: cnet_capableof_68eada3277 (CapableOf photo record_wedding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "photoshop is capable of doctor photo", "pln": ["(: cnet_capableof_b15529a0b1 (CapableOf photoshop doctor_photo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "php is capable of connect to databas", "pln": ["(: cnet_capableof_2d2b1f4e8a (CapableOf php connect_to_databas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pianist is capable of play piano", "pln": ["(: cnet_capableof_63c73e437e (CapableOf pianist play_piano) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pianist is capable of read sheet music", "pln": ["(: cnet_capableof_d2bc2a9559 (CapableOf pianist read_sheet_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "picture frame is capable of hang on wall", "pln": ["(: cnet_capableof_f2dd6a0b73 (CapableOf picture_frame hang_on_wall) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "picture is capable of hang on wall", "pln": ["(: cnet_capableof_503e827ae3 (CapableOf picture hang_on_wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pig is capable of find truffle", "pln": ["(: cnet_capableof_ef52f3e319 (CapableOf pig find_truffle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "pilot is capable of fly aeroplane", "pln": ["(: cnet_capableof_979d609686 (CapableOf pilot fly_aeroplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "pistols is capable of kill people", "pln": ["(: cnet_capableof_bcc507bb65 (CapableOf pistols kill_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pilot is capable of fly airplane", "pln": ["(: cnet_capableof_0df9229fd2 (CapableOf pilot fly_airplane) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pilot is capable of fly helicopter", "pln": ["(: cnet_capableof_084d0ec32a (CapableOf pilot fly_helicopter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pilot is capable of fly plane", "pln": ["(: cnet_capableof_03a66d16e3 (CapableOf pilot fly_plane) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pilot is capable of land airplane", "pln": ["(: cnet_capableof_2f8914139c (CapableOf pilot land_airplane) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pilot is capable of land plane", "pln": ["(: cnet_capableof_e04d01439f (CapableOf pilot land_plane) (STV 1.0 0.9786))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pilot is capable of work in airplane", "pln": ["(: cnet_capableof_5611ec1af1 (CapableOf pilot work_in_airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pipe is capable of branch off", "pln": ["(: cnet_capableof_0bb6bc964e (CapableOf pipe branch_off) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pirate is capable of board ship", "pln": ["(: cnet_capableof_ef76c9a8ef (CapableOf pirate board_ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pirate is capable of sail ship", "pln": ["(: cnet_capableof_74c1dae025 (CapableOf pirate sail_ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pistol is capable of deadly weapon", "pln": ["(: cnet_capableof_3f5ecaa64b (CapableOf pistol deadly_weapon) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pistol is capable of fire bullet", "pln": ["(: cnet_capableof_2d157f0304 (CapableOf pistol fire_bullet) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pistol is capable of kill people", "pln": ["(: cnet_capableof_a349a126bb (CapableOf pistol kill_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pitcher is capable of jog to pitching mound", "pln": ["(: cnet_capableof_8a66c33cfd (CapableOf pitcher jog_to_pitching_mound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pitcher is capable of strike out baseball hitter", "pln": ["(: cnet_capableof_087ee91139 (CapableOf pitcher strike_out_baseball_hitter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pitcher is capable of throw fast ball", "pln": ["(: cnet_capableof_ce23ace1fe (CapableOf pitcher throw_fast_ball) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "placebo is capable of ease depression", "pln": ["(: cnet_capableof_a6d3e8b62f (CapableOf placebo ease_depression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "plane is capable of arrive at airport", "pln": ["(: cnet_capableof_d89a1d771e (CapableOf plane arrive_at_airport) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "plane is capable of fly", "pln": ["(: cnet_capableof_009bd32b57 (CapableOf plane fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "plane is capable of journey far", "pln": ["(: cnet_capableof_a7d9d2c9e1 (CapableOf plane journey_far) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "plane is capable of land airport", "pln": ["(: cnet_capableof_90f9dd2e3d (CapableOf plane land_airport) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "plane is capable of land on runway", "pln": ["(: cnet_capableof_37d2b83f04 (CapableOf plane land_on_runway) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "plane is capable of crash", "pln": ["(: cnet_capableof_5bf1aacc35 (CapableOf plane crash) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "plank is capable of bridge gap", "pln": ["(: cnet_capableof_65ffde5c57 (CapableOf plank bridge_gap) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "plant is capable of bloom", "pln": ["(: cnet_capableof_fac6da34fb (CapableOf plant bloom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "plant is capable of flower in spring", "pln": ["(: cnet_capableof_a0e0ef69bb (CapableOf plant flower_in_spring) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "plants is capable of produce oxygen", "pln": ["(: cnet_capableof_7dc418dad9 (CapableOf plants produce_oxygen) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "plants is capable of reproduce asexually", "pln": ["(: cnet_capableof_6383c64189 (CapableOf plants reproduce_asexually) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "plant is capable of grow in garden", "pln": ["(: cnet_capableof_8ede08c759 (CapableOf plant grow_in_garden) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "plant is capable of suffering dehydration", "pln": ["(: cnet_capableof_ec819d8b08 (CapableOf plant suffering_dehydration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "plant is capable of produce oxygen", "pln": ["(: cnet_capableof_100afa6012 (CapableOf plant produce_oxygen) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "plant is capable of reproduce asexually", "pln": ["(: cnet_capableof_bf32cbebfb (CapableOf plant reproduce_asexually) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "plant is capable of sense environment", "pln": ["(: cnet_capableof_b79fddad88 (CapableOf plant sense_environment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "plastic is capable of melt", "pln": ["(: cnet_capableof_1b08bca2a6 (CapableOf plastic melt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "plumber is capable of fix faucet", "pln": ["(: cnet_capableof_59a4406bb2 (CapableOf plumber fix_faucet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "plumber is capable of hold wrench", "pln": ["(: cnet_capableof_424d70fb4f (CapableOf plumber hold_wrench) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "poem is capable of provide comfort", "pln": ["(: cnet_capableof_28c1fbaca8 (CapableOf poem provide_comfort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "poet is capable of write poem", "pln": ["(: cnet_capableof_79fdaea6a5 (CapableOf poet write_poem) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "poison ivy is capable of form rash on skin", "pln": ["(: cnet_capableof_f234c74249 (CapableOf poison_ivy form_rash_on_skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "poison is capable of kill", "pln": ["(: cnet_capableof_3b6f49456b (CapableOf poison kill) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "polic officer is capable of direct traffic", "pln": ["(: cnet_capableof_ecb796e5a7 (CapableOf polic_officer direct_traffic) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "police is capable of direct traffic", "pln": ["(: cnet_capableof_d393cf0ac6 (CapableOf police direct_traffic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "police is capable of tail suspect", "pln": ["(: cnet_capableof_034d3e54f2 (CapableOf police tail_suspect) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "police officer is capable of book criminal", "pln": ["(: cnet_capableof_ddc8797e6e (CapableOf police_officer book_criminal) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "police officer is capable of direct traffic", "pln": ["(: cnet_capableof_8c003a8366 (CapableOf police_officer direct_traffic) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "police officer is capable of separate people fighting", "pln": ["(: cnet_capableof_2bc42f0928 (CapableOf police_officer separate_people_fighting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "police officer is capable of arrest people", "pln": ["(: cnet_capableof_f68c52862c (CapableOf police_officer arrest_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "policeman is capable of direct traffic", "pln": ["(: cnet_capableof_835fde336d (CapableOf policeman direct_traffic) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "policeman is capable of notice jaywalker", "pln": ["(: cnet_capableof_2fbb831540 (CapableOf policeman notice_jaywalker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "policeman is capable of stop traffic", "pln": ["(: cnet_capableof_271e6af8c5 (CapableOf policeman stop_traffic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "policemen is capable of ride motorcycle", "pln": ["(: cnet_capableof_ac082871a0 (CapableOf policemen ride_motorcycle) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "political party is capable of back candidate", "pln": ["(: cnet_capableof_85f4b0a34c (CapableOf political_party back_candidate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "politician is capable of duck issue", "pln": ["(: cnet_capableof_7fbdd059b5 (CapableOf politician duck_issue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "politician is capable of field question", "pln": ["(: cnet_capableof_7acc960139 (CapableOf politician field_question) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "politician is capable of give speech", "pln": ["(: cnet_capableof_5d874b6acb (CapableOf politician give_speech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "politician is capable of lie", "pln": ["(: cnet_capableof_dbcba6d82c (CapableOf politician lie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "politician is capable of talk to crowd", "pln": ["(: cnet_capableof_9a113526ee (CapableOf politician talk_to_crowd) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "politician is capable of advance agenda", "pln": ["(: cnet_capableof_feb0d2506b (CapableOf politician advance_agenda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "politician is capable of fool mass", "pln": ["(: cnet_capableof_28d90c6c14 (CapableOf politician fool_mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "politician is capable of run for president", "pln": ["(: cnet_capableof_2212987df6 (CapableOf politician run_for_president) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "politician is capable of speaking lie", "pln": ["(: cnet_capableof_5b21093891 (CapableOf politician speaking_lie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "politician is capable of talk nonsense", "pln": ["(: cnet_capableof_5b1e6f7847 (CapableOf politician talk_nonsense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pond is capable of hold water", "pln": ["(: cnet_capableof_0210b3ec6f (CapableOf pond hold_water) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "poor person is capable of get rich", "pln": ["(: cnet_capableof_a617534761 (CapableOf poor_person get_rich) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pope is capable of speak to mass", "pln": ["(: cnet_capableof_123f08353f (CapableOf pope speak_to_mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "post office is capable of forward mail", "pln": ["(: cnet_capableof_b5ae68c79e (CapableOf post_office forward_mail) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "postal service is capable of ship package", "pln": ["(: cnet_capableof_74052d0732 (CapableOf postal_service ship_package) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "postman is capable of ring doorbell", "pln": ["(: cnet_capableof_8883bf0373 (CapableOf postman ring_doorbell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "praise is capable of add to confidence", "pln": ["(: cnet_capableof_585cb1e17d (CapableOf praise add_to_confidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "praise is capable of provide comfort", "pln": ["(: cnet_capableof_9a2d2fb60f (CapableOf praise provide_comfort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "prayer is capable of quiet troubled soul", "pln": ["(: cnet_capableof_26e8e61d27 (CapableOf prayer quiet_troubled_soul) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "predator is capable of corner prey", "pln": ["(: cnet_capableof_d75a5b67b7 (CapableOf predator corner_prey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "predator is capable of spot prey", "pln": ["(: cnet_capableof_2d9d92564c (CapableOf predator spot_prey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "predator is capable of kill prey", "pln": ["(: cnet_capableof_3b9b3a9638 (CapableOf predator kill_prey) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "pregnancy is capable of result from sex", "pln": ["(: cnet_capableof_fda7eef7f0 (CapableOf pregnancy result_from_sex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "present is capable of surprise child", "pln": ["(: cnet_capableof_14188d3333 (CapableOf present surprise_child) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "present is capable of delight children", "pln": ["(: cnet_capableof_b9de886532 (CapableOf present delight_children) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "president is capable of elected official", "pln": ["(: cnet_capableof_d12fa6ec65 (CapableOf president elected_official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "president is capable of govern country", "pln": ["(: cnet_capableof_3104e84d85 (CapableOf president govern_country) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "president is capable of govern nation", "pln": ["(: cnet_capableof_825cc54ab2 (CapableOf president govern_nation) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "president is capable of head company", "pln": ["(: cnet_capableof_acb65f014b (CapableOf president head_company) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "president is capable of lead country", "pln": ["(: cnet_capableof_977caf03bc (CapableOf president lead_country) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "president is capable of lead nation", "pln": ["(: cnet_capableof_c12f94c942 (CapableOf president lead_nation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "president is capable of sign bill", "pln": ["(: cnet_capableof_fa5fb86d82 (CapableOf president sign_bill) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "priest is capable of believe in god", "pln": ["(: cnet_capableof_60003f5f5b (CapableOf priest believe_in_god) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "priest is capable of say mass", "pln": ["(: cnet_capableof_a3d6a9e737 (CapableOf priest say_mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "prince is capable of succeed king", "pln": ["(: cnet_capableof_7f0286e34b (CapableOf prince succeed_king) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "prisoner is capable of attempt escape", "pln": ["(: cnet_capableof_d9ec99c1ad (CapableOf prisoner attempt_escape) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "prisoner is capable of attempt to escape", "pln": ["(: cnet_capableof_1bc805775a (CapableOf prisoner attempt_to_escape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "prisoner is capable of scape from jail", "pln": ["(: cnet_capableof_9b396739fd (CapableOf prisoner scape_from_jail) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "prisoner is capable of scape from prison", "pln": ["(: cnet_capableof_c7a0be711c (CapableOf prisoner scape_from_prison) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "prisoner is capable of scape jail", "pln": ["(: cnet_capableof_78187a0d93 (CapableOf prisoner scape_jail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "prisoner is capable of live on bread and water", "pln": ["(: cnet_capableof_893df350fd (CapableOf prisoner live_on_bread_and_water) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "private investigator is capable of tail suspect", "pln": ["(: cnet_capableof_21d72c3a4b (CapableOf private_investigator tail_suspect) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "problem is capable of slow work", "pln": ["(: cnet_capableof_7d0b369bcb (CapableOf problem slow_work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "problem is capable of cause headache", "pln": ["(: cnet_capableof_d60ff7d3ff (CapableOf problem cause_headache) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "procrastination is capable of cause problem", "pln": ["(: cnet_capableof_bfbb107a86 (CapableOf procrastination cause_problem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "procrastinator is capable of do thing later", "pln": ["(: cnet_capableof_e2a1149a01 (CapableOf procrastinator do_thing_later) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "profit is capable of equal expens", "pln": ["(: cnet_capableof_35c59ddac7 (CapableOf profit equal_expens) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "program is capable of run on computer", "pln": ["(: cnet_capableof_4a5fb91347 (CapableOf program run_on_computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "programmer is capable of program ai", "pln": ["(: cnet_capableof_b16272df3d (CapableOf programmer program_ai) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "programmer is capable of step through computer program", "pln": ["(: cnet_capableof_fc150e20e1 (CapableOf programmer step_through_computer_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "programmer is capable of write ai", "pln": ["(: cnet_capableof_7fe692ec56 (CapableOf programmer write_ai) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "programmer is capable of write program", "pln": ["(: cnet_capableof_53fd5dfa3b (CapableOf programmer write_program) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "programmer is capable of control computer", "pln": ["(: cnet_capableof_8ba1e472bd (CapableOf programmer control_computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "programmer is capable of learn new language", "pln": ["(: cnet_capableof_748e024cb0 (CapableOf programmer learn_new_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "programmer is capable of write code", "pln": ["(: cnet_capableof_f9aa2edad1 (CapableOf programmer write_code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "programmer is capable of write software", "pln": ["(: cnet_capableof_8399db5668 (CapableOf programmer write_software) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "programmer is capable of write specification", "pln": ["(: cnet_capableof_b31afe5327 (CapableOf programmer write_specification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "program is capable of compute", "pln": ["(: cnet_capableof_d5ad5595cb (CapableOf program compute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "prohibitionist society is capable of restrict freedom", "pln": ["(: cnet_capableof_3788e3dc9c (CapableOf prohibitionist_society restrict_freedom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "project is capable of near completion", "pln": ["(: cnet_capableof_8debb6f866 (CapableOf project near_completion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "prospector is capable of mine for gold", "pln": ["(: cnet_capableof_76de1e3803 (CapableOf prospector mine_for_gold) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "prospector is capable of mine gold", "pln": ["(: cnet_capableof_a4a2da167c (CapableOf prospector mine_gold) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "prostitute is capable of give head", "pln": ["(: cnet_capableof_5b950c8fb5 (CapableOf prostitute give_head) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "prostitute is capable of sell sexual favor", "pln": ["(: cnet_capableof_04ca0b31e2 (CapableOf prostitute sell_sexual_favor) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "prostitute is capable of service client", "pln": ["(: cnet_capableof_423bf75cfd (CapableOf prostitute service_client) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "prostitute is capable of spread disease", "pln": ["(: cnet_capableof_35009b5556 (CapableOf prostitute spread_disease) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "prostitute is capable of blow trick", "pln": ["(: cnet_capableof_e8c0e6970a (CapableOf prostitute blow_trick) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "prostitute is capable of charge for service rendered", "pln": ["(: cnet_capableof_6ccbe82a77 (CapableOf prostitute charge_for_service_rendered) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "prostitute is capable of offer sex", "pln": ["(: cnet_capableof_9e90b074d5 (CapableOf prostitute offer_sex) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "prostitute is capable of turn trick", "pln": ["(: cnet_capableof_2030178736 (CapableOf prostitute turn_trick) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "psychiatrist is capable of listen to neurotic person s fear", "pln": ["(: cnet_capableof_27492bd399 (CapableOf psychiatrist listen_to_neurotic_person_s_fear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "purse is capable of hold money", "pln": ["(: cnet_capableof_bc9f6f7e0a (CapableOf purse hold_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "puzzle is capable of keep mind limber", "pln": ["(: cnet_capableof_9e008b9d17 (CapableOf puzzle keep_mind_limber) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "quarterback is capable of pass football", "pln": ["(: cnet_capableof_c81f462ed7 (CapableOf quarterback pass_football) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "quarterback is capable of pass football to receiver", "pln": ["(: cnet_capableof_ed71b765d1 (CapableOf quarterback pass_football_to_receiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "queen is capable of rule country", "pln": ["(: cnet_capableof_eb1170323b (CapableOf queen rule_country) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "rabbit is capable of move fast", "pln": ["(: cnet_capableof_9cc0d00a62 (CapableOf rabbit move_fast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "racer is capable of close in", "pln": ["(: cnet_capableof_72e7dab3a0 (CapableOf racer close_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "radiator is capable of cool engine", "pln": ["(: cnet_capableof_3f3ded8c40 (CapableOf radiator cool_engine) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "radio station is capable of air radio program", "pln": ["(: cnet_capableof_aa686c3c93 (CapableOf radio_station air_radio_program) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "radio is capable of play music", "pln": ["(: cnet_capableof_044bd027ca (CapableOf radio play_music) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "rain is capable of wet ground", "pln": ["(: cnet_capableof_51587c80b8 (CapableOf rain wet_ground) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "raise is capable of increase salary", "pln": ["(: cnet_capableof_7e7ce665dc (CapableOf raise increase_salary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "rat is capable of bite", "pln": ["(: cnet_capableof_9aae142f57 (CapableOf rat bite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "rat is capable of spread disease", "pln": ["(: cnet_capableof_f471d5c036 (CapableOf rat spread_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "razor is capable of need new blade", "pln": ["(: cnet_capableof_79aef723ca (CapableOf razor need_new_blade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "reader is capable of open book", "pln": ["(: cnet_capableof_03ae81ec36 (CapableOf reader open_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "reader is capable of page through book", "pln": ["(: cnet_capableof_61c8d98e9d (CapableOf reader page_through_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "reader is capable of learn from book", "pln": ["(: cnet_capableof_0e159c9a28 (CapableOf reader learn_from_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "reading is capable of further knowledge", "pln": ["(: cnet_capableof_b4712a817f (CapableOf reading further_knowledge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "realtor is capable of selling house", "pln": ["(: cnet_capableof_50ccf3b53f (CapableOf realtor selling_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "receptionist is capable of page guest", "pln": ["(: cnet_capableof_969065b229 (CapableOf receptionist page_guest) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "referee is capable of time race", "pln": ["(: cnet_capableof_7ace055076 (CapableOf referee time_race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "refrigerator is capable of cool food", "pln": ["(: cnet_capableof_a881dbed62 (CapableOf refrigerator cool_food) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "refrigerator is capable of keep food cold", "pln": ["(: cnet_capableof_9b16eca4f8 (CapableOf refrigerator keep_food_cold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "relationship is capable of change as people change", "pln": ["(: cnet_capableof_3b41d0bbd6 (CapableOf relationship change_as_people_change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "repairman is capable of servicing appliance", "pln": ["(: cnet_capableof_1e58ff8af3 (CapableOf repairman servicing_appliance) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "reporter is capable of report new", "pln": ["(: cnet_capableof_314c616239 (CapableOf reporter report_new) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "researcher is capable of study cancer", "pln": ["(: cnet_capableof_506fd29dbb (CapableOf researcher study_cancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "revolution is capable of ending reign", "pln": ["(: cnet_capableof_8b449d434a (CapableOf revolution ending_reign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "revolution is capable of shake nation", "pln": ["(: cnet_capableof_dd4628ce24 (CapableOf revolution shake_nation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "roads is capable of branch many times", "pln": ["(: cnet_capableof_38670a0188 (CapableOf roads branch_many_times) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ribbon is capable of color", "pln": ["(: cnet_capableof_cbdc33e93b (CapableOf ribbon color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "riding bike is capable of good exercise", "pln": ["(: cnet_capableof_ac2deed4a4 (CapableOf riding_bike good_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ring bearer is capable of hold ring", "pln": ["(: cnet_capableof_ec28f82dc8 (CapableOf ring_bearer hold_ring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "road is capable of branch many time", "pln": ["(: cnet_capableof_0b079e98ec (CapableOf road branch_many_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "road is capable of branch off", "pln": ["(: cnet_capableof_a658951dff (CapableOf road branch_off) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "robber is capable of stick up bank", "pln": ["(: cnet_capableof_4e8ac53c31 (CapableOf robber stick_up_bank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "rocket vehicle is capable of operate in vacuum", "pln": ["(: cnet_capableof_0f0c419551 (CapableOf rocket_vehicle operate_in_vacuum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "rock is capable of break window", "pln": ["(: cnet_capableof_c0704800ff (CapableOf rock break_window) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "rolling stone is capable of gather no moss", "pln": ["(: cnet_capableof_d62d5c6fd6 (CapableOf rolling_stone gather_no_moss) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "room is capable of colourful and tidy", "pln": ["(: cnet_capableof_42479311a0 (CapableOf room colourful_and_tidy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "room is capable of connect to hallway", "pln": ["(: cnet_capableof_251b08a0bf (CapableOf room connect_to_hallway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "room is capable of different size", "pln": ["(: cnet_capableof_c271a4b4e0 (CapableOf room different_size) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "rope is capable of trip person", "pln": ["(: cnet_capableof_fae4994eea (CapableOf rope trip_person) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ruler is capable of measure distance", "pln": ["(: cnet_capableof_62b5b037b0 (CapableOf ruler measure_distance) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "runner is capable of get tired", "pln": ["(: cnet_capableof_c0fda0dff3 (CapableOf runner get_tired) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "runner is capable of trip himself", "pln": ["(: cnet_capableof_6ec49506fc (CapableOf runner trip_himself) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "runner is capable of trip over", "pln": ["(: cnet_capableof_9f06a5e7c0 (CapableOf runner trip_over) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "running with scissor is capable of hurt", "pln": ["(: cnet_capableof_25f36dc7ad (CapableOf running_with_scissor hurt) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sail is capable of raised", "pln": ["(: cnet_capableof_e036badbe9 (CapableOf sail raised) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sailor is capable of board ship", "pln": ["(: cnet_capableof_c694d633a4 (CapableOf sailor board_ship) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sailor is capable of captain ship", "pln": ["(: cnet_capableof_ddd4611764 (CapableOf sailor captain_ship) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sailor is capable of sail boat", "pln": ["(: cnet_capableof_5af39b777f (CapableOf sailor sail_boat) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sailor is capable of sail ship", "pln": ["(: cnet_capableof_7510f4e072 (CapableOf sailor sail_ship) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sailor is capable of ship out", "pln": ["(: cnet_capableof_c5da535311 (CapableOf sailor ship_out) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sailor is capable of tie knot", "pln": ["(: cnet_capableof_d17d279f64 (CapableOf sailor tie_knot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sailor is capable of row boat", "pln": ["(: cnet_capableof_115dc22348 (CapableOf sailor row_boat) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "salesman is capable of offer deal", "pln": ["(: cnet_capableof_a2c05d4fb8 (CapableOf salesman offer_deal) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "salesmen is capable of sell ice to eskimo", "pln": ["(: cnet_capableof_4a282567ee (CapableOf salesmen sell_ice_to_eskimo) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "salmon is capable of need to spawn", "pln": ["(: cnet_capableof_c492eb635e (CapableOf salmon need_to_spawn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "salt is capable of preserve fish and other meat", "pln": ["(: cnet_capableof_57812b5004 (CapableOf salt preserve_fish_and_other_meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "salt is capable of season food", "pln": ["(: cnet_capableof_d2e8ac29b0 (CapableOf salt season_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "salt is capable of dissolve in water", "pln": ["(: cnet_capableof_1b05c59af1 (CapableOf salt dissolve_in_water) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "santa claus is capable of surprise child", "pln": ["(: cnet_capableof_8f7a6bac17 (CapableOf santa_claus surprise_child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sarcasm is capable of bring hostility", "pln": ["(: cnet_capableof_60492bb3b6 (CapableOf sarcasm bring_hostility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "satan is capable of smite mortal", "pln": ["(: cnet_capableof_7cd7b98c69 (CapableOf satan smite_mortal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "satellite is capable of orbit planet", "pln": ["(: cnet_capableof_b642b9f319 (CapableOf satellite orbit_planet) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "scale is capable of measure weight of object", "pln": ["(: cnet_capableof_a79f2b79fb (CapableOf scale measure_weight_of_object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "school is capable of bus student", "pln": ["(: cnet_capableof_a39955c652 (CapableOf school bus_student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "school district is capable of bus student", "pln": ["(: cnet_capableof_be92dc1853 (CapableOf school_district bus_student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "school of fish is capable of number in thousand", "pln": ["(: cnet_capableof_840b2dc6ff (CapableOf school_of_fish number_in_thousand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "science is capable of date object", "pln": ["(: cnet_capableof_2f7b1d8349 (CapableOf science date_object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "science is capable of further medicine", "pln": ["(: cnet_capableof_2333f8dc07 (CapableOf science further_medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "science is capable of spread idea", "pln": ["(: cnet_capableof_253b4b2c32 (CapableOf science spread_idea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "scientist is capable of experiment", "pln": ["(: cnet_capableof_04c3f4f1fc (CapableOf scientist experiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "scientist is capable of perfect theory", "pln": ["(: cnet_capableof_335ce833b8 (CapableOf scientist perfect_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "scientist is capable of prove theory", "pln": ["(: cnet_capableof_64989e1041 (CapableOf scientist prove_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "scientist is capable of question theory", "pln": ["(: cnet_capableof_a2819e4f2a (CapableOf scientist question_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "scissor is capable of cut paper", "pln": ["(: cnet_capableof_d9e5733bba (CapableOf scissor cut_paper) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "scout is capable of sleep in tent", "pln": ["(: cnet_capableof_46734a62a9 (CapableOf scout sleep_in_tent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "screwdriver is capable of turn screw", "pln": ["(: cnet_capableof_c6706dde6e (CapableOf screwdriver turn_screw) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "second cousin is capable of marry each other", "pln": ["(: cnet_capableof_da117d3061 (CapableOf second_cousin marry_each_other) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "secret service agent is capable of guard president", "pln": ["(: cnet_capableof_dc6fcad74d (CapableOf secret_service_agent guard_president) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "security guard is capable of guard building", "pln": ["(: cnet_capableof_41b392f98c (CapableOf security_guard guard_building) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "security guard is capable of sound alarm", "pln": ["(: cnet_capableof_9551e7ba31 (CapableOf security_guard sound_alarm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "seedling is capable of grow into tree", "pln": ["(: cnet_capableof_b9d6f085a4 (CapableOf seedling grow_into_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "seeing eye dog is capable of guide blind person", "pln": ["(: cnet_capableof_8789454273 (CapableOf seeing_eye_dog guide_blind_person) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "seller is capable of market good", "pln": ["(: cnet_capableof_91493ce801 (CapableOf seller market_good) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "semen is capable of taste bitter", "pln": ["(: cnet_capableof_9134fca72b (CapableOf semen taste_bitter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "set is capable of include items", "pln": ["(: cnet_capableof_cd690afdc6 (CapableOf set include_items) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sentence is capable of end with period", "pln": ["(: cnet_capableof_1f84670d8a (CapableOf sentence end_with_period) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sentient being is capable of choose for themselv", "pln": ["(: cnet_capableof_c922a9da91 (CapableOf sentient_being choose_for_themselv) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sentry is capable of sound alarm", "pln": ["(: cnet_capableof_bf411f5f73 (CapableOf sentry sound_alarm) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sergeant is capable of order private to do pushup", "pln": ["(: cnet_capableof_a6579c7f1c (CapableOf sergeant order_private_to_do_pushup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "servant is capable of ready car", "pln": ["(: cnet_capableof_ed27e60322 (CapableOf servant ready_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "servant is capable of serve master", "pln": ["(: cnet_capableof_f0dd216dbf (CapableOf servant serve_master) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "servant is capable of dress queen", "pln": ["(: cnet_capableof_eccf95a910 (CapableOf servant dress_queen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "servant is capable of please master", "pln": ["(: cnet_capableof_615c3b022e (CapableOf servant please_master) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "servant is capable of ready country place", "pln": ["(: cnet_capableof_5f23fe8829 (CapableOf servant ready_country_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "set is capable of include item", "pln": ["(: cnet_capableof_196cffd6ca (CapableOf set include_item) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "several strong people is capable of push stalled vehicle", "pln": ["(: cnet_capableof_5f45714119 (CapableOf several_strong_people push_stalled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sewer is capable of sew", "pln": ["(: cnet_capableof_09b697c32b (CapableOf sewer sew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sex is capable of feel good", "pln": ["(: cnet_capableof_9ece4bbfd0 (CapableOf sex feel_good) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sex is capable of last 30 second", "pln": ["(: cnet_capableof_b5cc2d7f38 (CapableOf sex last_30_second) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sex is capable of making love", "pln": ["(: cnet_capableof_bab5d81973 (CapableOf sex making_love) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sex is capable of wonderful thing", "pln": ["(: cnet_capableof_810edcd809 (CapableOf sex wonderful_thing) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "shark is capable of eat people", "pln": ["(: cnet_capableof_47d691e373 (CapableOf shark eat_people) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sharp trader is capable of corner market", "pln": ["(: cnet_capableof_41275308b8 (CapableOf sharp_trader corner_market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sheep is capable of graze", "pln": ["(: cnet_capableof_8c827b2538 (CapableOf sheep graze) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sheet is capable of come in matching set", "pln": ["(: cnet_capableof_1ec370efdc (CapableOf sheet come_in_matching_set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "shepherd is capable of bell sheep", "pln": ["(: cnet_capableof_c659513953 (CapableOf shepherd bell_sheep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sherlock holme is capable of reason deductively", "pln": ["(: cnet_capableof_2ddf4571a6 (CapableOf sherlock_holme reason_deductively) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "ship is capable of near island", "pln": ["(: cnet_capableof_145222411b (CapableOf ship near_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ship is capable of near shore", "pln": ["(: cnet_capableof_83e88d5de8 (CapableOf ship near_shore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ship is capable of travel over water", "pln": ["(: cnet_capableof_6fc05fc7d2 (CapableOf ship travel_over_water) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ship is capable of weather storm", "pln": ["(: cnet_capableof_1b10ae7b14 (CapableOf ship weather_storm) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "shipper is capable of number crate", "pln": ["(: cnet_capableof_a866786945 (CapableOf shipper number_crate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "shoeshine boy is capable of shine shoe", "pln": ["(: cnet_capableof_a58779e906 (CapableOf shoeshine_boy shine_shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "shortstop is capable of field grounder", "pln": ["(: cnet_capableof_891859668f (CapableOf shortstop field_grounder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "siblings is capable of throw pillows at each other", "pln": ["(: cnet_capableof_305d2cd2f5 (CapableOf siblings throw_pillows_at_each_other) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "shot is capable of mark beginning of race", "pln": ["(: cnet_capableof_6923cdbae4 (CapableOf shot mark_beginning_of_race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "shovel is capable of dig hole", "pln": ["(: cnet_capableof_552a7a4d07 (CapableOf shovel dig_hole) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sibling is capable of throw pillow at each other", "pln": ["(: cnet_capableof_5f77dd87b9 (CapableOf sibling throw_pillow_at_each_other) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sick person is capable of battle cancer", "pln": ["(: cnet_capableof_2d45664c87 (CapableOf sick_person battle_cancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sick person is capable of battle disease", "pln": ["(: cnet_capableof_8855a73667 (CapableOf sick_person battle_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sick person is capable of fight sickness", "pln": ["(: cnet_capableof_1c898edccf (CapableOf sick_person fight_sickness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sick person is capable of give disease to another person", "pln": ["(: cnet_capableof_6745279ce8 (CapableOf sick_person give_disease_to_another_person) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sick person is capable of need nursing", "pln": ["(: cnet_capableof_09dc2494ec (CapableOf sick_person need_nursing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sick person is capable of suffer great pain", "pln": ["(: cnet_capableof_6845fe8b57 (CapableOf sick_person suffer_great_pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sick person is capable of throw up", "pln": ["(: cnet_capableof_d4555ff237 (CapableOf sick_person throw_up) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sickness is capable of cause person to hoarse", "pln": ["(: cnet_capableof_ac8523ec5d (CapableOf sickness cause_person_to_hoarse) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sickness is capable of happen to animal", "pln": ["(: cnet_capableof_455284e1d0 (CapableOf sickness happen_to_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "silk is capable of feel soft", "pln": ["(: cnet_capableof_31ff3a97ba (CapableOf silk feel_soft) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "singer is capable of sing ballad", "pln": ["(: cnet_capableof_9c02046719 (CapableOf singer sing_ballad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "singer is capable of create music", "pln": ["(: cnet_capableof_a8661b0224 (CapableOf singer create_music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "singer is capable of use microphone", "pln": ["(: cnet_capableof_ee0c5794e8 (CapableOf singer use_microphone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "situation is capable of anger human", "pln": ["(: cnet_capableof_bc78feb404 (CapableOf situation anger_human) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "situation is capable of get interesting", "pln": ["(: cnet_capableof_16ff719fd4 (CapableOf situation get_interesting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "situation is capable of go south", "pln": ["(: cnet_capableof_00301a2afd (CapableOf situation go_south) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "situation is capable of turn bad", "pln": ["(: cnet_capableof_07df70c383 (CapableOf situation turn_bad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "skiing is capable of dangerous sport", "pln": ["(: cnet_capableof_40f513f358 (CapableOf skiing dangerous_sport) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "skunk is capable of smell pretty bad", "pln": ["(: cnet_capableof_a8a82b8d26 (CapableOf skunk smell_pretty_bad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sky is capable of appear blue", "pln": ["(: cnet_capableof_c0a64596cd (CapableOf sky appear_blue) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sky is capable of rain water", "pln": ["(: cnet_capableof_26494c0c0a (CapableOf sky rain_water) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "slave is capable of gather cotton", "pln": ["(: cnet_capableof_55f711527d (CapableOf slave gather_cotton) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "slave is capable of sing of freedom", "pln": ["(: cnet_capableof_c638e15144 (CapableOf slave sing_of_freedom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "slave is capable of work for nothing", "pln": ["(: cnet_capableof_092b6bce8d (CapableOf slave work_for_nothing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "slide projector is capable of show slide", "pln": ["(: cnet_capableof_c3f0183fe2 (CapableOf slide_projector show_slide) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "smoke is capable of cake chimney", "pln": ["(: cnet_capableof_51e23a021b (CapableOf smoke cake_chimney) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "smoker is capable of light cigarette", "pln": ["(: cnet_capableof_0b68bb1d8e (CapableOf smoker light_cigarette) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "smoker is capable of smoke", "pln": ["(: cnet_capableof_ab8f85a7ec (CapableOf smoker smoke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "smoker is capable of strike match", "pln": ["(: cnet_capableof_5dea8f288d (CapableOf smoker strike_match) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "smoking is capable of cause lung cancer", "pln": ["(: cnet_capableof_d8153e2e80 (CapableOf smoking cause_lung_cancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "snowmen is capable of wear hat", "pln": ["(: cnet_capableof_308f8e7cd4 (CapableOf snowmen wear_hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "snowploy is capable of clear street", "pln": ["(: cnet_capableof_9ad108f99d (CapableOf snowploy clear_street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "social stigma is capable of lead to marginalization", "pln": ["(: cnet_capableof_09c9c398b8 (CapableOf social_stigma lead_to_marginalization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "socialist is capable of become communist", "pln": ["(: cnet_capableof_23942c442c (CapableOf socialist become_communist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "socialist is capable of empower community", "pln": ["(: cnet_capableof_eaf9a50f9c (CapableOf socialist empower_community) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sock is capable of warm foot", "pln": ["(: cnet_capableof_486dce2bf0 (CapableOf sock warm_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "soldier is capable of battle another solider", "pln": ["(: cnet_capableof_8ee91d9107 (CapableOf soldier battle_another_solider) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "soldier is capable of fight battle", "pln": ["(: cnet_capableof_49ef33c438 (CapableOf soldier fight_battle) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "soldier is capable of fight in battle", "pln": ["(: cnet_capableof_7af73847cb (CapableOf soldier fight_in_battle) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "soldier is capable of fire gun", "pln": ["(: cnet_capableof_acc81c2f2d (CapableOf soldier fire_gun) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "soldier is capable of kill enemy", "pln": ["(: cnet_capableof_cc6a830b54 (CapableOf soldier kill_enemy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "soldier is capable of step on land mine", "pln": ["(: cnet_capableof_0f8d96c07b (CapableOf soldier step_on_land_mine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "soldier is capable of storm beach", "pln": ["(: cnet_capableof_69603147e9 (CapableOf soldier storm_beach) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "soldier is capable of wait for order", "pln": ["(: cnet_capableof_9cdd871f5d (CapableOf soldier wait_for_order) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "soldier is capable of advance toward enemy line", "pln": ["(: cnet_capableof_908a8dec49 (CapableOf soldier advance_toward_enemy_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "soldier is capable of battle in war", "pln": ["(: cnet_capableof_87182382cc (CapableOf soldier battle_in_war) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "soldier is capable of fight war", "pln": ["(: cnet_capableof_70ad97b989 (CapableOf soldier fight_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "soldier is capable of follow order", "pln": ["(: cnet_capableof_6599a46816 (CapableOf soldier follow_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "soldier is capable of form formation", "pln": ["(: cnet_capableof_7a66d8c425 (CapableOf soldier form_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "soldier is capable of storm building", "pln": ["(: cnet_capableof_936fdeb7bb (CapableOf soldier storm_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "solvent is capable of thin paint", "pln": ["(: cnet_capableof_715654dc6b (CapableOf solvent thin_paint) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "something you is capable of take place in line", "pln": ["(: cnet_capableof_6745287c0a (CapableOf something_you take_place_in_line) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "somone is capable of burn candle", "pln": ["(: cnet_capableof_e045410483 (CapableOf somone burn_candle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "soprano is capable of sing aria", "pln": ["(: cnet_capableof_29fa38e54a (CapableOf soprano sing_aria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sorrowful person is capable of hope life will improve", "pln": ["(: cnet_capableof_8457140383 (CapableOf sorrowful_person hope_life_will_improve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "space shuttle is capable of fly", "pln": ["(: cnet_capableof_0706dd40d5 (CapableOf space_shuttle fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "speaker is capable of anger mob", "pln": ["(: cnet_capableof_ac81abbe84 (CapableOf speaker anger_mob) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "spectators is capable of watch events", "pln": ["(: cnet_capableof_95e05339cf (CapableOf spectators watch_events) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "spectators is capable of watch sport", "pln": ["(: cnet_capableof_4edcbd6706 (CapableOf spectators watch_sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "speaker is capable of field question", "pln": ["(: cnet_capableof_8cedd6db15 (CapableOf speaker field_question) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "specy of turtle is capable of live over 100 year", "pln": ["(: cnet_capableof_ac549f9e9e (CapableOf specy_of_turtle live_over_100_year) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "spectator is capable of watch event", "pln": ["(: cnet_capableof_49e189e82d (CapableOf spectator watch_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "spectator is capable of watch sport", "pln": ["(: cnet_capableof_c476f32777 (CapableOf spectator watch_sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "spider is capable of inject venom", "pln": ["(: cnet_capableof_98829d54af (CapableOf spider inject_venom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "spider is capable of spin web", "pln": ["(: cnet_capableof_d186769c8b (CapableOf spider spin_web) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "spy is capable of bug telephone", "pln": ["(: cnet_capableof_92b3b2065d (CapableOf spy bug_telephone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "spouse is capable of distance themselve with silence", "pln": ["(: cnet_capableof_bb00b120af (CapableOf spouse distance_themselve_with_silence) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "spous is capable of break up", "pln": ["(: cnet_capableof_5c65a0a32e (CapableOf spous break_up) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sprinkler is capable of water lawn", "pln": ["(: cnet_capableof_b7aa252a47 (CapableOf sprinkler water_lawn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "spy is capable of bug apartment", "pln": ["(: cnet_capableof_9b562759bf (CapableOf spy bug_apartment) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "squirrel is capable of gather acorn", "pln": ["(: cnet_capableof_81a340be09 (CapableOf squirrel gather_acorn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "squirrel is capable of store nut", "pln": ["(: cnet_capableof_4bd6276cff (CapableOf squirrel store_nut) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "stapler is capable of double as paperweight", "pln": ["(: cnet_capableof_5c3669a18a (CapableOf stapler double_as_paperweight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "star is capable of explode", "pln": ["(: cnet_capableof_75603d563a (CapableOf star explode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "still water is capable of reflect light", "pln": ["(: cnet_capableof_58014c74e6 (CapableOf still_water reflect_light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "stitch in time is capable of save nine", "pln": ["(: cnet_capableof_9e7afe0cec (CapableOf stitch_in_time save_nine) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "stock market is capable of bottom out", "pln": ["(: cnet_capableof_42234edf7a (CapableOf stock_market bottom_out) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "stopwatch is capable of time event", "pln": ["(: cnet_capableof_d62f6dff97 (CapableOf stopwatch time_event) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "stopwatch is capable of time race", "pln": ["(: cnet_capableof_b950a5d075 (CapableOf stopwatch time_race) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "stopwatche is capable of time race", "pln": ["(: cnet_capableof_45d00d663d (CapableOf stopwatche time_race) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "store is capable of offer sale", "pln": ["(: cnet_capableof_1caa5b9060 (CapableOf store offer_sale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "stove is capable of heat food", "pln": ["(: cnet_capableof_5deddae206 (CapableOf stove heat_food) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "strong emotion is capable of cloud judgement", "pln": ["(: cnet_capableof_ba320336cf (CapableOf strong_emotion cloud_judgement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "student is capable of answer question", "pln": ["(: cnet_capableof_22a16629e5 (CapableOf student answer_question) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "student is capable of ask question", "pln": ["(: cnet_capableof_057924c545 (CapableOf student ask_question) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "student is capable of ask questions", "pln": ["(: cnet_capableof_86605f4dc3 (CapableOf student ask_questions) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "student is capable of complete assignment", "pln": ["(: cnet_capableof_3de7c2af45 (CapableOf student complete_assignment) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "student is capable of complete homework", "pln": ["(: cnet_capableof_89054c894a (CapableOf student complete_homework) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "student is capable of complete test", "pln": ["(: cnet_capableof_2cd49c2515 (CapableOf student complete_test) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "student is capable of doubt teacher", "pln": ["(: cnet_capableof_014731ea84 (CapableOf student doubt_teacher) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "student is capable of fail exam", "pln": ["(: cnet_capableof_f0dd1f55f8 (CapableOf student fail_exam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "student is capable of fail test", "pln": ["(: cnet_capableof_fda82d3be6 (CapableOf student fail_test) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "student is capable of fool teacher", "pln": ["(: cnet_capableof_856e7b0b9b (CapableOf student fool_teacher) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "student is capable of forget homework", "pln": ["(: cnet_capableof_9b083f4aa2 (CapableOf student forget_homework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "student is capable of forget to do homework", "pln": ["(: cnet_capableof_0e17207309 (CapableOf student forget_to_do_homework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "student is capable of gain knowledge from studying", "pln": ["(: cnet_capableof_1a453f3590 (CapableOf student gain_knowledge_from_studying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "student is capable of go to class", "pln": ["(: cnet_capableof_deb4fa93be (CapableOf student go_to_class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "student is capable of go to high school", "pln": ["(: cnet_capableof_9019915002 (CapableOf student go_to_high_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "student is capable of guess answer", "pln": ["(: cnet_capableof_d7acd67071 (CapableOf student guess_answer) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "student is capable of holding answer", "pln": ["(: cnet_capableof_8a22687fb2 (CapableOf student holding_answer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "student is capable of homework", "pln": ["(: cnet_capableof_e2eb751465 (CapableOf student homework) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "student is capable of journey abroad", "pln": ["(: cnet_capableof_b5e7316e45 (CapableOf student journey_abroad) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "student is capable of learn to read", "pln": ["(: cnet_capableof_cb2e74549f (CapableOf student learn_to_read) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "student is capable of listen teacher", "pln": ["(: cnet_capableof_0bd9f0830f (CapableOf student listen_teacher) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "student is capable of master subject", "pln": ["(: cnet_capableof_b47146803c (CapableOf student master_subject) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "student is capable of note fact", "pln": ["(: cnet_capableof_d894795ff2 (CapableOf student note_fact) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "student is capable of question teacher", "pln": ["(: cnet_capableof_bd8a1b7467 (CapableOf student question_teacher) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "student is capable of read book", "pln": ["(: cnet_capableof_b522a48e40 (CapableOf student read_book) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "students is capable of fail classes", "pln": ["(: cnet_capableof_dc6203d9a8 (CapableOf students fail_classes) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "sugar is capable of comes in cubes", "pln": ["(: cnet_capableof_26cb5aa1fa (CapableOf sugar comes_in_cubes) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "student is capable of study", "pln": ["(: cnet_capableof_ec879c3904 (CapableOf student study) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "student is capable of study book", "pln": ["(: cnet_capableof_b16b401b4a (CapableOf student study_book) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "student is capable of study for test", "pln": ["(: cnet_capableof_3463353a88 (CapableOf student study_for_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "student is capable of study lesson", "pln": ["(: cnet_capableof_7dcd1974c7 (CapableOf student study_lesson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "student is capable of study math", "pln": ["(: cnet_capableof_3a5e7e1b34 (CapableOf student study_math) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "student is capable of understand lesson", "pln": ["(: cnet_capableof_92842774da (CapableOf student understand_lesson) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "student is capable of begin test", "pln": ["(: cnet_capableof_3689fbed2d (CapableOf student begin_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "student is capable of fail class", "pln": ["(: cnet_capableof_22dba9c402 (CapableOf student fail_class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "student is capable of listen to teacher", "pln": ["(: cnet_capableof_d3c3c89831 (CapableOf student listen_to_teacher) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "submarine is capable of dive", "pln": ["(: cnet_capableof_0ab761a904 (CapableOf submarine dive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "submarine is capable of sink", "pln": ["(: cnet_capableof_86bd7a8ef4 (CapableOf submarine sink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "submarine is capable of travel under north ole", "pln": ["(: cnet_capableof_3b486f8a43 (CapableOf submarine travel_under_north_ole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sugar is capable of come in cube", "pln": ["(: cnet_capableof_7b17946b92 (CapableOf sugar come_in_cube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "suitor is capable of fear rejection", "pln": ["(: cnet_capableof_e33654e8a2 (CapableOf suitor fear_rejection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sum is capable of amount to nothing", "pln": ["(: cnet_capableof_ef2bd3e2b6 (CapableOf sum amount_to_nothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sun is capable of age human skin", "pln": ["(: cnet_capableof_ac57a61f4b (CapableOf sun age_human_skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sun is capable of brown skin", "pln": ["(: cnet_capableof_1fbeb307ff (CapableOf sun brown_skin) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sun is capable of burn skin", "pln": ["(: cnet_capableof_22e50e4295 (CapableOf sun burn_skin) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sun is capable of dry laundry", "pln": ["(: cnet_capableof_fa159e609c (CapableOf sun dry_laundry) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sun is capable of heat earth", "pln": ["(: cnet_capableof_b923bf7b7c (CapableOf sun heat_earth) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sun is capable of rise in morning", "pln": ["(: cnet_capableof_a94b85de54 (CapableOf sun rise_in_morning) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "sun is capable of shine all day", "pln": ["(: cnet_capableof_0b1bd0c035 (CapableOf sun shine_all_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "sun is capable of shine bright", "pln": ["(: cnet_capableof_3089daa5a4 (CapableOf sun shine_bright) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sun is capable of shine brightly", "pln": ["(: cnet_capableof_6c84382179 (CapableOf sun shine_brightly) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sun is capable of shine on day", "pln": ["(: cnet_capableof_5c213f316b (CapableOf sun shine_on_day) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sunglass is capable of shade eye from sun", "pln": ["(: cnet_capableof_e93ea33f2e (CapableOf sunglass shade_eye_from_sun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "superman is capable of destroy lead pipe", "pln": ["(: cnet_capableof_47fe9865f5 (CapableOf superman destroy_lead_pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "superman is capable of do amazing feat", "pln": ["(: cnet_capableof_21a0ebdb12 (CapableOf superman do_amazing_feat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "superman is capable of fly", "pln": ["(: cnet_capableof_c840bcb59c (CapableOf superman fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "superman is capable of lift bus", "pln": ["(: cnet_capableof_293c01172f (CapableOf superman lift_bus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "talented people is capable of write very interesting fictious stories", "pln": ["(: cnet_capableof_7f7a0885f1 (CapableOf talented_people write_very_interesting_fictious_stories) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "tea candle is capable of burn for four hours", "pln": ["(: cnet_capableof_a0618edeaf (CapableOf tea_candle burn_for_four_hours) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "teachers is capable of fail students", "pln": ["(: cnet_capableof_425aca98ff (CapableOf teachers fail_students) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "teenager is capable of battle parents", "pln": ["(: cnet_capableof_4151e1d1ee (CapableOf teenager battle_parents) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "supplier is capable of ship product", "pln": ["(: cnet_capableof_645c0a9b3a (CapableOf supplier ship_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "surfer is capable of ride wave", "pln": ["(: cnet_capableof_1690359f29 (CapableOf surfer ride_wave) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "surgeon is capable of have to operate on patient", "pln": ["(: cnet_capableof_a69acebda9 (CapableOf surgeon have_to_operate_on_patient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "sweat is capable of drip", "pln": ["(: cnet_capableof_61ace4a09e (CapableOf sweat drip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "symptom is capable of point to diagnosis", "pln": ["(: cnet_capableof_5f7f39c709 (CapableOf symptom point_to_diagnosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "tablecloth is capable of cover table", "pln": ["(: cnet_capableof_95d58d43df (CapableOf tablecloth cover_table) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "tailor is capable of fit man with suit", "pln": ["(: cnet_capableof_578cfe8bd8 (CapableOf tailor fit_man_with_suit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "talented people is capable of write very interesting fictious story", "pln": ["(: cnet_capableof_600b1808f0 (CapableOf talented_people write_very_interesting_fictious_story) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "tape recorder is capable of record conversation", "pln": ["(: cnet_capableof_5013ab4973 (CapableOf tape_recorder record_conversation) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "tape recorder is capable of record sound", "pln": ["(: cnet_capableof_f5002581cc (CapableOf tape_recorder record_sound) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "tea candle is capable of burn for four hour", "pln": ["(: cnet_capableof_c5c3d1cb66 (CapableOf tea_candle burn_for_four_hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teacher is capable of answer question", "pln": ["(: cnet_capableof_4a000b43f5 (CapableOf teacher answer_question) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teacher is capable of assign homework", "pln": ["(: cnet_capableof_cc97eba39d (CapableOf teacher assign_homework) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teacher is capable of circle mistake", "pln": ["(: cnet_capableof_81ecdaad09 (CapableOf teacher circle_mistake) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teacher is capable of dare to learn", "pln": ["(: cnet_capableof_0ece655967 (CapableOf teacher dare_to_learn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teacher is capable of explain fact", "pln": ["(: cnet_capableof_df821423bd (CapableOf teacher explain_fact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teacher is capable of fail student", "pln": ["(: cnet_capableof_93dbdc59a2 (CapableOf teacher fail_student) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teacher is capable of forget to grade paper", "pln": ["(: cnet_capableof_71d1ee246e (CapableOf teacher forget_to_grade_paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teacher is capable of help student", "pln": ["(: cnet_capableof_8b35c4677e (CapableOf teacher help_student) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teacher is capable of list homework", "pln": ["(: cnet_capableof_ad3bfe8c4c (CapableOf teacher list_homework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teacher is capable of listen to student", "pln": ["(: cnet_capableof_9ea19b769f (CapableOf teacher listen_to_student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teacher is capable of mark homework", "pln": ["(: cnet_capableof_7c3b885727 (CapableOf teacher mark_homework) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teacher is capable of mark paper", "pln": ["(: cnet_capableof_2c3bb7ef98 (CapableOf teacher mark_paper) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teacher is capable of point at picture", "pln": ["(: cnet_capableof_9792d99422 (CapableOf teacher point_at_picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teacher is capable of point to example", "pln": ["(: cnet_capableof_9d8f41026c (CapableOf teacher point_to_example) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teacher is capable of question student", "pln": ["(: cnet_capableof_295e7cece7 (CapableOf teacher question_student) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teacher is capable of school children", "pln": ["(: cnet_capableof_6cede6136f (CapableOf teacher school_children) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teacher is capable of school student", "pln": ["(: cnet_capableof_08424bf474 (CapableOf teacher school_student) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teacher is capable of state fact", "pln": ["(: cnet_capableof_1c85c0fdc1 (CapableOf teacher state_fact) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teacher is capable of teach about company", "pln": ["(: cnet_capableof_28a2fc6b76 (CapableOf teacher teach_about_company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teacher is capable of teach child", "pln": ["(: cnet_capableof_4fe75c5885 (CapableOf teacher teach_child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teacher is capable of teach pupil", "pln": ["(: cnet_capableof_541ca370af (CapableOf teacher teach_pupil) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teacher is capable of teach student", "pln": ["(: cnet_capableof_6081a75ff1 (CapableOf teacher teach_student) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teacher is capable of time test", "pln": ["(: cnet_capableof_86f3b3bbcc (CapableOf teacher time_test) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teacher is capable of welcome new class", "pln": ["(: cnet_capableof_8075867d9a (CapableOf teacher welcome_new_class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teacher is capable of work in school", "pln": ["(: cnet_capableof_35a3eeccea (CapableOf teacher work_in_school) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teacher is capable of explain math", "pln": ["(: cnet_capableof_330ff00cda (CapableOf teacher explain_math) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teacher is capable of help student to learn", "pln": ["(: cnet_capableof_15e4e4fe1a (CapableOf teacher help_student_to_learn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teacher is capable of plan lesson", "pln": ["(: cnet_capableof_22b1687ffd (CapableOf teacher plan_lesson) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teacher is capable of read to student", "pln": ["(: cnet_capableof_4a4e5a9467 (CapableOf teacher read_to_student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teacher is capable of teach in classroom", "pln": ["(: cnet_capableof_41dd604688 (CapableOf teacher teach_in_classroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teacher is capable of teach us new knowledge", "pln": ["(: cnet_capableof_5aa693073d (CapableOf teacher teach_us_new_knowledge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "team is capable of lose to another team", "pln": ["(: cnet_capableof_b73d89f96b (CapableOf team lose_to_another_team) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teenager is capable of battle parent", "pln": ["(: cnet_capableof_980f8e9d30 (CapableOf teenager battle_parent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "teenager is capable of talk on telephone", "pln": ["(: cnet_capableof_3b77ea85e5 (CapableOf teenager talk_on_telephone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "teenagers is capable of sleep lot", "pln": ["(: cnet_capableof_545dd99e03 (CapableOf teenagers sleep_lot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teenager is capable of dance for hour", "pln": ["(: cnet_capableof_85fd320a35 (CapableOf teenager dance_for_hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teenager is capable of lift pus from zit", "pln": ["(: cnet_capableof_44c27781df (CapableOf teenager lift_pus_from_zit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teenager is capable of listen to rock music", "pln": ["(: cnet_capableof_49f5d51a35 (CapableOf teenager listen_to_rock_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teenager is capable of sleep lot", "pln": ["(: cnet_capableof_e445b5759e (CapableOf teenager sleep_lot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teenager is capable of voice dissent", "pln": ["(: cnet_capableof_27f963d36a (CapableOf teenager voice_dissent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "teeth is capable of cause pain", "pln": ["(: cnet_capableof_bb520e00e6 (CapableOf teeth cause_pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "telephone is capable of ring loudly", "pln": ["(: cnet_capableof_1d38b7eec7 (CapableOf telephone ring_loudly) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "telephone kiosk is capable of keep dry", "pln": ["(: cnet_capableof_5ee764aaa9 (CapableOf telephone_kiosk keep_dry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "telephone is capable of hang on wall", "pln": ["(: cnet_capableof_d96b66601b (CapableOf telephone hang_on_wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "telescope is capable of point to star", "pln": ["(: cnet_capableof_714e2a284a (CapableOf telescope point_to_star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "telescopes is capable of view stars", "pln": ["(: cnet_capableof_9b701851df (CapableOf telescopes view_stars) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "telescope is capable of spot distant object", "pln": ["(: cnet_capableof_211e104656 (CapableOf telescope spot_distant_object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "telescope is capable of use mirror", "pln": ["(: cnet_capableof_80ecd66399 (CapableOf telescope use_mirror) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "telescope is capable of spot planet", "pln": ["(: cnet_capableof_780f160d80 (CapableOf telescope spot_planet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "telescope is capable of view star", "pln": ["(: cnet_capableof_a65ffe8240 (CapableOf telescope view_star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "telescope is capable of view thing far away", "pln": ["(: cnet_capableof_efd0f76daa (CapableOf telescope view_thing_far_away) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "television station is capable of air program", "pln": ["(: cnet_capableof_8469614769 (CapableOf television_station air_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "tent is capable of shelter", "pln": ["(: cnet_capableof_06608f2b11 (CapableOf tent shelter) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "terrorist is capable of arm bomb", "pln": ["(: cnet_capableof_d45ea8ef89 (CapableOf terrorist arm_bomb) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "terrorist is capable of plant bomb", "pln": ["(: cnet_capableof_0a4f0c5673 (CapableOf terrorist plant_bomb) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "theater is capable of show movie", "pln": ["(: cnet_capableof_0d5c0e26b0 (CapableOf theater show_movie) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "theater is capable of showing movie", "pln": ["(: cnet_capableof_bef243f50d (CapableOf theater showing_movie) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "theory is capable of disproven", "pln": ["(: cnet_capableof_c91d0c9d1c (CapableOf theory disproven) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "thermometer is capable of measure temperature", "pln": ["(: cnet_capableof_b39f1659f7 (CapableOf thermometer measure_temperature) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "thief is capable of case house", "pln": ["(: cnet_capableof_333d772e06 (CapableOf thief case_house) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "thief is capable of case joint", "pln": ["(: cnet_capableof_cb1a32b689 (CapableOf thief case_joint) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "thought is capable of divide people", "pln": ["(: cnet_capableof_3419298982 (CapableOf thought divide_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "thrifty person is capable of save money", "pln": ["(: cnet_capableof_4e6032132a (CapableOf thrifty_person save_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "thunder is capable of surprise people", "pln": ["(: cnet_capableof_447e9a2783 (CapableOf thunder surprise_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "tiger is capable of eat", "pln": ["(: cnet_capableof_5387cf469e (CapableOf tiger eat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "toaster is capable of brown toast", "pln": ["(: cnet_capableof_de765f4a3b (CapableOf toaster brown_toast) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "toilet is capable of flush", "pln": ["(: cnet_capableof_814dc526a2 (CapableOf toilet flush) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "toilet is capable of smell bad", "pln": ["(: cnet_capableof_752f40531d (CapableOf toilet smell_bad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "toilet is capable of get clogged", "pln": ["(: cnet_capableof_5a05e70459 (CapableOf toilet get_clogged) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "token is capable of symbol", "pln": ["(: cnet_capableof_6dfd6d5ecc (CapableOf token symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "tongue is capable of taste food", "pln": ["(: cnet_capableof_0684afd6c6 (CapableOf tongue taste_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "too much sun is capable of cause skin cancer", "pln": ["(: cnet_capableof_3df5233d9c (CapableOf too_much_sun cause_skin_cancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "torch is capable of light way", "pln": ["(: cnet_capableof_36ae19f085 (CapableOf torch light_way) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "toys is capable of delight child", "pln": ["(: cnet_capableof_f4c1ba5ed1 (CapableOf toys delight_child) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "trains is capable of decelerate", "pln": ["(: cnet_capableof_2d2006da21 (CapableOf trains decelerate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "tortoise is capable of race hare", "pln": ["(: cnet_capableof_ba862cbede (CapableOf tortoise race_hare) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "tourist is capable of visit museum", "pln": ["(: cnet_capableof_8c23f5ce73 (CapableOf tourist visit_museum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "tourist is capable of view scenery", "pln": ["(: cnet_capableof_732e0d55ce (CapableOf tourist view_scenery) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "towel is capable of dry body", "pln": ["(: cnet_capableof_b53e186695 (CapableOf towel dry_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "towel is capable of dry dishe", "pln": ["(: cnet_capableof_888216512f (CapableOf towel dry_dishe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "towel is capable of dry hair", "pln": ["(: cnet_capableof_18450a3bc6 (CapableOf towel dry_hair) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "toy is capable of delight child", "pln": ["(: cnet_capableof_faa7c57e2c (CapableOf toy delight_child) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "tractor is capable of pull trailer", "pln": ["(: cnet_capableof_299f44b23f (CapableOf tractor pull_trailer) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "train is capable of arrive late", "pln": ["(: cnet_capableof_bfbadb9780 (CapableOf train arrive_late) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "train is capable of arrive on schedule", "pln": ["(: cnet_capableof_a7ef93d30b (CapableOf train arrive_on_schedule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "train is capable of near destination", "pln": ["(: cnet_capableof_5fd2c2abb8 (CapableOf train near_destination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "train is capable of run on railroad track", "pln": ["(: cnet_capableof_602b72c7ec (CapableOf train run_on_railroad_track) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "trainer is capable of condition racehorse", "pln": ["(: cnet_capableof_5a4188650c (CapableOf trainer condition_racehorse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "trainer is capable of condition racehors", "pln": ["(: cnet_capableof_bcbdd94c2f (CapableOf trainer condition_racehors) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "train is capable of decelerate", "pln": ["(: cnet_capableof_72b69c0126 (CapableOf train decelerate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "travel agent is capable of book flight", "pln": ["(: cnet_capableof_7a6b0c6cbd (CapableOf travel_agent book_flight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "travel agent is capable of plan vacation", "pln": ["(: cnet_capableof_292f454d2f (CapableOf travel_agent plan_vacation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "traveler is capable of near destination", "pln": ["(: cnet_capableof_a7af984b83 (CapableOf traveler near_destination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "tree is capable of branch into leave", "pln": ["(: cnet_capableof_25446b6fac (CapableOf tree branch_into_leave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "tree is capable of branch out", "pln": ["(: cnet_capableof_9d98ee1b1b (CapableOf tree branch_out) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "tree is capable of cast shadow", "pln": ["(: cnet_capableof_fe005bd774 (CapableOf tree cast_shadow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "tree is capable of drop leave", "pln": ["(: cnet_capableof_4ef87b9196 (CapableOf tree drop_leave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "tree is capable of grow", "pln": ["(: cnet_capableof_08380cb322 (CapableOf tree grow) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "tree is capable of grow leave", "pln": ["(: cnet_capableof_c79fc80ce8 (CapableOf tree grow_leave) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "tree is capable of shade car", "pln": ["(: cnet_capableof_b820be5314 (CapableOf tree shade_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "trees is capable of shade sun", "pln": ["(: cnet_capableof_5c497e5505 (CapableOf trees shade_sun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "tree is capable of shade from sun", "pln": ["(: cnet_capableof_b9cd52e611 (CapableOf tree shade_from_sun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "tree is capable of shade lawn", "pln": ["(: cnet_capableof_ac0bfb4f35 (CapableOf tree shade_lawn) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "tree is capable of branch to leave", "pln": ["(: cnet_capableof_c842d18ad0 (CapableOf tree branch_to_leave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "tree is capable of die", "pln": ["(: cnet_capableof_1985135458 (CapableOf tree die) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "tree is capable of fall", "pln": ["(: cnet_capableof_08954f698a (CapableOf tree fall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "tree is capable of fall down", "pln": ["(: cnet_capableof_56147d66f9 (CapableOf tree fall_down) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "tree is capable of produce fruit", "pln": ["(: cnet_capableof_6b65115de0 (CapableOf tree produce_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "tree is capable of shade grass", "pln": ["(: cnet_capableof_75820e99af (CapableOf tree shade_grass) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "tree is capable of shade sun", "pln": ["(: cnet_capableof_4fdaa6a067 (CapableOf tree shade_sun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "truck is capable of pull trailer", "pln": ["(: cnet_capableof_c56830f957 (CapableOf truck pull_trailer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "turpentine is capable of thin oil based paint", "pln": ["(: cnet_capableof_6fbde6e061 (CapableOf turpentine thin_oil_based_paint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "turtle is capable of live long time", "pln": ["(: cnet_capableof_a73fb3f08d (CapableOf turtle live_long_time) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "turtle is capable of live to very old", "pln": ["(: cnet_capableof_a1f91e41a7 (CapableOf turtle live_to_very_old) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "tv is capable of change subjective consciousness", "pln": ["(: cnet_capableof_ba32d7a2d7 (CapableOf tv change_subjective_consciousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "tv is capable of control mind", "pln": ["(: cnet_capableof_04b785daf4 (CapableOf tv control_mind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "two people is capable of agree", "pln": ["(: cnet_capableof_e754f62d9b (CapableOf two_people agree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "two people is capable of agree with each other", "pln": ["(: cnet_capableof_e535c409f2 (CapableOf two_people agree_with_each_other) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "two people is capable of make love", "pln": ["(: cnet_capableof_b19021d8ac (CapableOf two_people make_love) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ufo is capable of glow", "pln": ["(: cnet_capableof_7214205567 (CapableOf ufo glow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "ufo is capable of land on earth", "pln": ["(: cnet_capableof_5ef0108474 (CapableOf ufo land_on_earth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "undergraduate is capable of seek advice about curricula", "pln": ["(: cnet_capableof_435bbab3c4 (CapableOf undergraduate seek_advice_about_curricula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "undertaker is capable of dig grave", "pln": ["(: cnet_capableof_9812c1c33b (CapableOf undertaker dig_grave) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "union is capable of demand higher wage", "pln": ["(: cnet_capableof_f38a188ef3 (CapableOf union demand_higher_wage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "union member is capable of strike", "pln": ["(: cnet_capableof_a761f15ac3 (CapableOf union_member strike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "university is capable of honor researcher with award", "pln": ["(: cnet_capableof_16d685aebc (CapableOf university honor_researcher_with_award) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "usher is capable of seat audience member", "pln": ["(: cnet_capableof_0c3bb2c16d (CapableOf usher seat_audience_member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "usher is capable of seat guest", "pln": ["(: cnet_capableof_59c19257f0 (CapableOf usher seat_guest) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "usher is capable of seat patron", "pln": ["(: cnet_capableof_fd106a7ec0 (CapableOf usher seat_patron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "usher is capable of seat wedding guest", "pln": ["(: cnet_capableof_5809226c5d (CapableOf usher seat_wedding_guest) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "vacuum is capable of clean carpet", "pln": ["(: cnet_capableof_6070328003 (CapableOf vacuum clean_carpet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "vacuum is capable of clean floor", "pln": ["(: cnet_capableof_d8174077af (CapableOf vacuum clean_floor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "vase is capable of hold flower", "pln": ["(: cnet_capableof_3463c3f34f (CapableOf vase hold_flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "vehicle is capable of receive damage", "pln": ["(: cnet_capableof_22eda1ae42 (CapableOf vehicle receive_damage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "vehicle is capable of travel", "pln": ["(: cnet_capableof_073451326f (CapableOf vehicle travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "vehicle is capable of move on water", "pln": ["(: cnet_capableof_55efb694e2 (CapableOf vehicle move_on_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "venture capitalist is capable of raise fund", "pln": ["(: cnet_capableof_ddb1a04f77 (CapableOf venture_capitalist raise_fund) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "very cold water is capable of flow from spring", "pln": ["(: cnet_capableof_c0e3591db7 (CapableOf very_cold_water flow_from_spring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "vineyard is capable of bottle wine", "pln": ["(: cnet_capableof_9c0d59190a (CapableOf vineyard bottle_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "vintner is capable of bottle wine", "pln": ["(: cnet_capableof_00b902d1ef (CapableOf vintner bottle_wine) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "vintner is capable of make wine", "pln": ["(: cnet_capableof_6d7fcc7c6f (CapableOf vintner make_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "violence is capable of anger pacifist", "pln": ["(: cnet_capableof_9e4fd82248 (CapableOf violence anger_pacifist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "violence is capable of include death", "pln": ["(: cnet_capableof_1697922464 (CapableOf violence include_death) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "virus is capable of cause cold", "pln": ["(: cnet_capableof_0419b752b9 (CapableOf virus cause_cold) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "virus is capable of destroy cell", "pln": ["(: cnet_capableof_6cfe793ebd (CapableOf virus destroy_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "virus is capable of infect", "pln": ["(: cnet_capableof_b4763af80e (CapableOf virus infect) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "virus is capable of make computer malfunction", "pln": ["(: cnet_capableof_c5643804c2 (CapableOf virus make_computer_malfunction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "virus is capable of mutate", "pln": ["(: cnet_capableof_4d2c6e07e4 (CapableOf virus mutate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "virus is capable of attack immune system", "pln": ["(: cnet_capableof_d6125e0a18 (CapableOf virus attack_immune_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "visitor is capable of ring doorbell", "pln": ["(: cnet_capableof_0bdd085447 (CapableOf visitor ring_doorbell) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "voter is capable of voice opinion", "pln": ["(: cnet_capableof_630e704f82 (CapableOf voter voice_opinion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "waiter is capable of bus table", "pln": ["(: cnet_capableof_f48598eacb (CapableOf waiter bus_table) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "waiter is capable of serve food", "pln": ["(: cnet_capableof_7df7ff4439 (CapableOf waiter serve_food) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "waiter is capable of serve meal", "pln": ["(: cnet_capableof_c06bf494bc (CapableOf waiter serve_meal) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "waiter is capable of serve food and drink", "pln": ["(: cnet_capableof_cb9c824ceb (CapableOf waiter serve_food_and_drink) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "walk in closet is capable of hold lot of clothe", "pln": ["(: cnet_capableof_553b3c2fdb (CapableOf walk_in_closet hold_lot_of_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "wall is capable of separate room", "pln": ["(: cnet_capableof_a7c20436df (CapableOf wall separate_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "wall is capable of separate room from each other", "pln": ["(: cnet_capableof_b0cdd3ebd1 (CapableOf wall separate_room_from_each_other) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "wallet is capable of hold money", "pln": ["(: cnet_capableof_aa82c0a965 (CapableOf wallet hold_money) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "wasp is capable of sting", "pln": ["(: cnet_capableof_db85724fcf (CapableOf wasp sting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "watch is capable of time event", "pln": ["(: cnet_capableof_bb96514c94 (CapableOf watch time_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "water is capable of act as reflector", "pln": ["(: cnet_capableof_412c86fda3 (CapableOf water act_as_reflector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "water is capable of evaporate", "pln": ["(: cnet_capableof_8cb9425778 (CapableOf water evaporate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "water is capable of extinguish fire", "pln": ["(: cnet_capableof_656465bdc7 (CapableOf water extinguish_fire) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "water is capable of feel wet", "pln": ["(: cnet_capableof_64cb2148ab (CapableOf water feel_wet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "water is capable of fill bucket", "pln": ["(: cnet_capableof_90225f6119 (CapableOf water fill_bucket) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "water is capable of fill glass", "pln": ["(: cnet_capableof_44e065b105 (CapableOf water fill_glass) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "water is capable of flow", "pln": ["(: cnet_capableof_58fe08d159 (CapableOf water flow) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "water is capable of freeze", "pln": ["(: cnet_capableof_9871130115 (CapableOf water freeze) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "water is capable of short circuit", "pln": ["(: cnet_capableof_d2db876641 (CapableOf water short_circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "water is capable of short electrical circuit", "pln": ["(: cnet_capableof_f02f62c661 (CapableOf water short_electrical_circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "water is capable of short out electrical circuit", "pln": ["(: cnet_capableof_6951c35d6b (CapableOf water short_out_electrical_circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "water is capable of thin paint", "pln": ["(: cnet_capableof_b7caf98f84 (CapableOf water thin_paint) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "wax is capable of melt", "pln": ["(: cnet_capableof_d3bbde4417 (CapableOf wax melt) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "wax is capable of moulded", "pln": ["(: cnet_capableof_5b835a5c92 (CapableOf wax moulded) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "we is capable of honor name of heroe", "pln": ["(: cnet_capableof_06b3b5d477 (CapableOf we honor_name_of_heroe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "we is capable of laugh together", "pln": ["(: cnet_capableof_2ce41349c8 (CapableOf we laugh_together) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "weather is capable of cause ice to form", "pln": ["(: cnet_capableof_debc5884ad (CapableOf weather cause_ice_to_form) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "weed is capable of grow in lawn and garden", "pln": ["(: cnet_capableof_df74207c99 (CapableOf weed grow_in_lawn_and_garden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "weightlifter is capable of lift weight", "pln": ["(: cnet_capableof_cf9834c25a (CapableOf weightlifter lift_weight) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "wheeled vehicle is capable of roll", "pln": ["(: cnet_capableof_b9f4cc2c08 (CapableOf wheeled_vehicle roll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "whore is capable of suck dick", "pln": ["(: cnet_capableof_908761fb56 (CapableOf whore suck_dick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "whore is capable of swallow semen", "pln": ["(: cnet_capableof_bded4d67a8 (CapableOf whore swallow_semen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "whorehouse is capable of fun", "pln": ["(: cnet_capableof_486fa7e3c4 (CapableOf whorehouse fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "wind is capable of blow cold", "pln": ["(: cnet_capableof_dd2a3c3c25 (CapableOf wind blow_cold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "wind is capable of blow over tree", "pln": ["(: cnet_capableof_b75f5b6799 (CapableOf wind blow_over_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "wind is capable of blow to east", "pln": ["(: cnet_capableof_4dda08906f (CapableOf wind blow_to_east) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "wind is capable of blowing hard", "pln": ["(: cnet_capableof_2b3a7b8692 (CapableOf wind blowing_hard) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "wine is capable of age over time", "pln": ["(: cnet_capableof_a0aa6faf34 (CapableOf wine age_over_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "wine is capable of age well", "pln": ["(: cnet_capableof_ab6f4125ed (CapableOf wine age_well) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "wine is capable of age with time", "pln": ["(: cnet_capableof_8cbb87a02a (CapableOf wine age_with_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "wine bottle is capable of come with cork", "pln": ["(: cnet_capableof_d79324db4d (CapableOf wine_bottle come_with_cork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "winemaker is capable of press grape", "pln": ["(: cnet_capableof_d2944fd648 (CapableOf winemaker press_grape) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "winery is capable of bottle wine", "pln": ["(: cnet_capableof_1f5f20dfd2 (CapableOf winery bottle_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "winery is capable of make wine", "pln": ["(: cnet_capableof_b20239a5c0 (CapableOf winery make_wine) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "winner is capable of best loser", "pln": ["(: cnet_capableof_c4532bf811 (CapableOf winner best_loser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "wire is capable of short circuit", "pln": ["(: cnet_capableof_fd5e745ad2 (CapableOf wire short_circuit) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "witness is capable of report crime", "pln": ["(: cnet_capableof_6e865f4a94 (CapableOf witness report_crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "wood is capable of burn", "pln": ["(: cnet_capableof_f736f95a2a (CapableOf wood burn) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "wood is capable of burn in fireplace", "pln": ["(: cnet_capableof_36e5f3ea0d (CapableOf wood burn_in_fireplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "word is capable of mean more than one thing", "pln": ["(: cnet_capableof_fac126b70e (CapableOf word mean_more_than_one_thing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "word is capable of mean thing", "pln": ["(: cnet_capableof_7267f422e6 (CapableOf word mean_thing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "word is capable of hurt feeling", "pln": ["(: cnet_capableof_3f483e688e (CapableOf word hurt_feeling) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} {"nl": "worker is capable of bank paycheck", "pln": ["(: cnet_capableof_e02bf6b023 (CapableOf worker bank_paycheck) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} -{"nl": "all cars has a engine", "pln": ["(: cnet_hasa_2ff7a088cc (HasA all_cars engine) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "apartment house has a many apartments", "pln": ["(: cnet_hasa_525a7bec0e (HasA apartment_house many_apartments) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "worker is capable of drive to work", "pln": ["(: cnet_capableof_569103075f (CapableOf worker drive_to_work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "worker is capable of stock shelve", "pln": ["(: cnet_capableof_df795fea66 (CapableOf worker stock_shelve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "worried mom is capable of voice concern", "pln": ["(: cnet_capableof_ef715cb367 (CapableOf worried_mom voice_concern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "writer is capable of complete novel", "pln": ["(: cnet_capableof_9e6cec6103 (CapableOf writer complete_novel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "writer is capable of write novel", "pln": ["(: cnet_capableof_a1c7a7a13d (CapableOf writer write_novel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "x is capable of mark spot", "pln": ["(: cnet_capableof_a1790470a0 (CapableOf x mark_spot) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "yeast is capable of raise bread", "pln": ["(: cnet_capableof_b0f6bc7aba (CapableOf yeast raise_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "young child is capable of wet bed", "pln": ["(: cnet_capableof_be0c12610c (CapableOf young_child wet_bed) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "zomby is capable of turn other into zomby", "pln": ["(: cnet_capableof_18e83da9b9 (CapableOf zomby turn_other_into_zomby) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "CapableOf"} +{"nl": "accordion has a keyboard like piano", "pln": ["(: cnet_hasa_02ac8c83d3 (HasA accordion keyboard_like_piano) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "action has a consequence", "pln": ["(: cnet_hasa_4f3ee75ea9 (HasA action consequence) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "air has a oxygen", "pln": ["(: cnet_hasa_a4c76af3e2 (HasA air oxygen) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "air has a pressure", "pln": ["(: cnet_hasa_ee250d1a40 (HasA air pressure) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "airplane has a emergency brake", "pln": ["(: cnet_hasa_f0cb31ad80 (HasA airplane emergency_brake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "airplane has a propeller", "pln": ["(: cnet_hasa_28f0927ccf (HasA airplane propeller) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "airplane has a wing", "pln": ["(: cnet_hasa_867b0810c4 (HasA airplane wing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "all animal has a body", "pln": ["(: cnet_hasa_a552aa9ae0 (HasA all_animal body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "all car has a engine", "pln": ["(: cnet_hasa_75d26773bd (HasA all_car engine) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "all car has a license plate", "pln": ["(: cnet_hasa_b322827af2 (HasA all_car license_plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "all children has a two parent", "pln": ["(: cnet_hasa_f53a01a5d0 (HasA all_children two_parent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "all continent has a mountain", "pln": ["(: cnet_hasa_7c54a4d8b2 (HasA all_continent mountain) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "all follower has a leader", "pln": ["(: cnet_hasa_a389d66a4b (HasA all_follower leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "all hous has a toilet", "pln": ["(: cnet_hasa_92b3937b1c (HasA all_hous toilet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "all human has a bladder", "pln": ["(: cnet_hasa_0800d2cce3 (HasA all_human bladder) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "all human has a name", "pln": ["(: cnet_hasa_4e1fd470df (HasA all_human name) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "all known biological life has a carbon", "pln": ["(: cnet_hasa_80555b8a84 (HasA all_known_biological_life carbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "all male has a penis", "pln": ["(: cnet_hasa_65ca36316f (HasA all_male penis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "all mammal has a fur", "pln": ["(: cnet_hasa_3f8a316251 (HasA all_mammal fur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "all mammal has a hair", "pln": ["(: cnet_hasa_d20793be2d (HasA all_mammal hair) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "all people has a feeling", "pln": ["(: cnet_hasa_23894d850d (HasA all_people feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "all people has a muscle", "pln": ["(: cnet_hasa_1b8b6d2c5d (HasA all_people muscle) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "all people has a parent", "pln": ["(: cnet_hasa_7d0046265b (HasA all_people parent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "all triangle has a three side and three corner", "pln": ["(: cnet_hasa_e826377fbf (HasA all_triangle three_side_and_three_corner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "alto has a deeper voice than soprano", "pln": ["(: cnet_hasa_3cf9b42152 (HasA alto deeper_voice_than_soprano) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "alto has a higher voice than tenor", "pln": ["(: cnet_hasa_65c4c58ea7 (HasA alto higher_voice_than_tenor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "america has a beache", "pln": ["(: cnet_hasa_f012e776c2 (HasA america beache) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "animal has a body", "pln": ["(: cnet_hasa_dc96957094 (HasA animal body) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "animal has a bone", "pln": ["(: cnet_hasa_bfa8ba9115 (HasA animal bone) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "animal has a eye", "pln": ["(: cnet_hasa_d469ea4ff8 (HasA animal eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "animal has a fur", "pln": ["(: cnet_hasa_bc6226b4b7 (HasA animal fur) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "animal has a muscle", "pln": ["(: cnet_hasa_765f804756 (HasA animal muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "animal has a tail", "pln": ["(: cnet_hasa_046b845bd0 (HasA animal tail) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "apartment building has a several residential unit", "pln": ["(: cnet_hasa_7624937608 (HasA apartment_building several_residential_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "apartment house has a many apartment", "pln": ["(: cnet_hasa_52879810c2 (HasA apartment_house many_apartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "apple has a core", "pln": ["(: cnet_hasa_d6683f85b8 (HasA apple core) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "apple has a many cooking use", "pln": ["(: cnet_hasa_6b834e106a (HasA apple many_cooking_use) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "apple has a seed inside", "pln": ["(: cnet_hasa_bb380bf828 (HasA apple seed_inside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "apple has a skin", "pln": ["(: cnet_hasa_f18f72f979 (HasA apple skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "apple has a seed", "pln": ["(: cnet_hasa_432f446271 (HasA apple seed) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "aquarium has a water", "pln": ["(: cnet_hasa_60e94a9aee (HasA aquarium water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "arm has a one hand", "pln": ["(: cnet_hasa_1d13ec0118 (HasA arm one_hand) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "armchair has a four leg", "pln": ["(: cnet_hasa_23dd4c84e4 (HasA armchair four_leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "armchair has a two arm", "pln": ["(: cnet_hasa_8fd2b49f05 (HasA armchair two_arm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "attache case has a handle", "pln": ["(: cnet_hasa_209b8787fb (HasA attache_case handle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "auditorium has a good acoustic", "pln": ["(: cnet_hasa_82e0002006 (HasA auditorium good_acoustic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "australian baby boomer has a appalling saving record", "pln": ["(: cnet_hasa_256abd926a (HasA australian_baby_boomer appalling_saving_record) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "baby has a father and mother", "pln": ["(: cnet_hasa_405f610ee0 (HasA baby father_and_mother) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "ball has a three dimension", "pln": ["(: cnet_hasa_7b5983b7e2 (HasA ball three_dimension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "banjo has a string", "pln": ["(: cnet_hasa_c628659ee0 (HasA banjo string) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "bank has a branche", "pln": ["(: cnet_hasa_d0f097e395 (HasA bank branche) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "bank has a insurance", "pln": ["(: cnet_hasa_5de31eef58 (HasA bank insurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} {"nl": "baseball diamond has a outfield", "pln": ["(: cnet_hasa_77d9cb4987 (HasA baseball_diamond outfield) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "bathrooms has a plumbing", "pln": ["(: cnet_hasa_c5610aff88 (HasA bathrooms plumbing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "bicycles has a pedals", "pln": ["(: cnet_hasa_538c96118f (HasA bicycles pedals) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "boat has a sails", "pln": ["(: cnet_hasa_b92c3faf72 (HasA boat sails) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "bass guitar has a four string", "pln": ["(: cnet_hasa_1bc4fd4b46 (HasA bass_guitar four_string) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "bathroom has a plumbing", "pln": ["(: cnet_hasa_d024956849 (HasA bathroom plumbing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "bat has a wing", "pln": ["(: cnet_hasa_ae6b0b4667 (HasA bat wing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "bay has a water", "pln": ["(: cnet_hasa_6226dfd1d1 (HasA bay water) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "beach has a lot of sand", "pln": ["(: cnet_hasa_74efa81e2c (HasA beach lot_of_sand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "bear has a fur", "pln": ["(: cnet_hasa_553b2ca26b (HasA bear fur) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "berry has a seed", "pln": ["(: cnet_hasa_cbe24067f9 (HasA berry seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "bicycle has a chain", "pln": ["(: cnet_hasa_c22f753eb6 (HasA bicycle chain) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "bicycle has a two tire", "pln": ["(: cnet_hasa_42cca8d599 (HasA bicycle two_tire) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "bicycle has a two wheel", "pln": ["(: cnet_hasa_8b641c9081 (HasA bicycle two_wheel) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "bicycle has a pedal", "pln": ["(: cnet_hasa_da05874e3a (HasA bicycle pedal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "bike has a two wheel", "pln": ["(: cnet_hasa_6b6b62a94e (HasA bike two_wheel) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "bikinis has a become smaller and smaller", "pln": ["(: cnet_hasa_e8757cbe1e (HasA bikinis become_smaller_and_smaller) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "billing montana has a tornado siren", "pln": ["(: cnet_hasa_7888e97d2c (HasA billing_montana tornado_siren) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "bill has a specific amount", "pln": ["(: cnet_hasa_6022850719 (HasA bill specific_amount) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "bird has a two leg", "pln": ["(: cnet_hasa_0461ef0d23 (HasA bird two_leg) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "bird has a two wing", "pln": ["(: cnet_hasa_1a63494de3 (HasA bird two_wing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "bird has a wing", "pln": ["(: cnet_hasa_b6ea2c4471 (HasA bird wing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "bird has a feather", "pln": ["(: cnet_hasa_b734f45163 (HasA bird feather) (STV 1.0 0.9776))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "bird has a light bone", "pln": ["(: cnet_hasa_257c2ad9ed (HasA bird light_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "blood red because has a hemoglobin", "pln": ["(: cnet_hasa_2a05924c25 (HasA blood_red_because hemoglobin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "boat has a sail", "pln": ["(: cnet_hasa_d9035a5132 (HasA boat sail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "bone has a lot of calcium", "pln": ["(: cnet_hasa_514b3d0b95 (HasA bone lot_of_calcium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "book has a cover", "pln": ["(: cnet_hasa_fd28767452 (HasA book cover) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "book has a knowledge", "pln": ["(: cnet_hasa_be7e3a95f1 (HasA book knowledge) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "book has a many word", "pln": ["(: cnet_hasa_88de59d93a (HasA book many_word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "book has a page", "pln": ["(: cnet_hasa_eee2f89171 (HasA book page) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "book has a word and or picture", "pln": ["(: cnet_hasa_cc4a2e0bde (HasA book word_and_or_picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "bookcase has a book", "pln": ["(: cnet_hasa_e7d9439635 (HasA bookcase book) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "book has a sentence", "pln": ["(: cnet_hasa_06bb57d514 (HasA book sentence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "booth has a door", "pln": ["(: cnet_hasa_b36e850783 (HasA booth door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "both has a do with money", "pln": ["(: cnet_hasa_7636718fe3 (HasA both do_with_money) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "bottle has a bottle cap", "pln": ["(: cnet_hasa_a3bef02f16 (HasA bottle bottle_cap) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "brain has a ten of billion of neuron", "pln": ["(: cnet_hasa_eede6bfe7e (HasA brain ten_of_billion_of_neuron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "bread has a yeast", "pln": ["(: cnet_hasa_0829cefe0f (HasA bread yeast) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "broadcast studio has a lot of equipment in", "pln": ["(: cnet_hasa_dbf7e7b530 (HasA broadcast_studio lot_of_equipment_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} {"nl": "building has a foundation", "pln": ["(: cnet_hasa_00d364311e (HasA building foundation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "bulls has a horns", "pln": ["(: cnet_hasa_5135ba0cc8 (HasA bulls horns) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "cars has a seat belts", "pln": ["(: cnet_hasa_3dc1f8d043 (HasA cars seat_belts) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "cats has a bones", "pln": ["(: cnet_hasa_1daec6f976 (HasA cats bones) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "cats has a fur", "pln": ["(: cnet_hasa_f0ab8e99ea (HasA cats fur) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "cats has a good sense of smell", "pln": ["(: cnet_hasa_efd4d36105 (HasA cats good_sense_of_smell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "cats has a retractable claws", "pln": ["(: cnet_hasa_a2d685d788 (HasA cats retractable_claws) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "cats has a sharp claws", "pln": ["(: cnet_hasa_5c222715b3 (HasA cats sharp_claws) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "chicken eggs has a hard shell", "pln": ["(: cnet_hasa_a42f93a662 (HasA chicken_eggs hard_shell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "classical music has a piano pieces", "pln": ["(: cnet_hasa_a287f66e42 (HasA classical_music piano_pieces) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "building has a many window", "pln": ["(: cnet_hasa_6c4c36a0bb (HasA building many_window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "building has a window", "pln": ["(: cnet_hasa_6e6a68d7ed (HasA building window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "bull has a horn", "pln": ["(: cnet_hasa_9096dd1a93 (HasA bull horn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "cabinet has a door", "pln": ["(: cnet_hasa_0cff17f4d7 (HasA cabinet door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "camera has a flash", "pln": ["(: cnet_hasa_1566d86d65 (HasA camera flash) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "candy has a sugar", "pln": ["(: cnet_hasa_6c3bb21c77 (HasA candy sugar) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "car has a engine", "pln": ["(: cnet_hasa_33feccfa0c (HasA car engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "car has a headlight to increase visibility", "pln": ["(: cnet_hasa_6c0814cad3 (HasA car headlight_to_increase_visibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "car has a seat", "pln": ["(: cnet_hasa_27759f8a07 (HasA car seat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "car has a window", "pln": ["(: cnet_hasa_365adf7b8d (HasA car window) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "carrot has a particular taste", "pln": ["(: cnet_hasa_f033e1c170 (HasA carrot particular_taste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "car has a bumper", "pln": ["(: cnet_hasa_7827fedca7 (HasA car bumper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "car has a seat belt", "pln": ["(: cnet_hasa_610e856f83 (HasA car seat_belt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "car has a trunk", "pln": ["(: cnet_hasa_31a0a59ad8 (HasA car trunk) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "car has a wheel", "pln": ["(: cnet_hasa_7e7e3cfe34 (HasA car wheel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "cat has a four leg", "pln": ["(: cnet_hasa_9e097a3136 (HasA cat four_leg) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "cat has a hair", "pln": ["(: cnet_hasa_82ee8ca2bf (HasA cat hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "cat has a sharp claw", "pln": ["(: cnet_hasa_deef7f2a5b (HasA cat sharp_claw) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "cat has a bone", "pln": ["(: cnet_hasa_a88bf72e98 (HasA cat bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "cat has a claw", "pln": ["(: cnet_hasa_fbfcaa6382 (HasA cat claw) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "cat has a claw on feet", "pln": ["(: cnet_hasa_18d85c21c7 (HasA cat claw_on_feet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "cat has a eye", "pln": ["(: cnet_hasa_9d0c424ebe (HasA cat eye) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "cat has a four paw", "pln": ["(: cnet_hasa_2d339bb2bc (HasA cat four_paw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "cat has a fur", "pln": ["(: cnet_hasa_828cb54b5b (HasA cat fur) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "cat has a golden fur", "pln": ["(: cnet_hasa_2f889b0ea5 (HasA cat golden_fur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "cat has a good sense of smell", "pln": ["(: cnet_hasa_5e6345eec9 (HasA cat good_sense_of_smell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "cat has a paw", "pln": ["(: cnet_hasa_e7839cb16d (HasA cat paw) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "cat has a retractable claw", "pln": ["(: cnet_hasa_c47ebea72e (HasA cat retractable_claw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "cat has a two eye", "pln": ["(: cnet_hasa_420b555aa3 (HasA cat two_eye) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "cat has a whisker", "pln": ["(: cnet_hasa_650dd559f3 (HasA cat whisker) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "cat has a yellow eye", "pln": ["(: cnet_hasa_a1956f18d0 (HasA cat yellow_eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "cd has a number of song on", "pln": ["(: cnet_hasa_eccd069053 (HasA cd number_of_song_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "chain has a link", "pln": ["(: cnet_hasa_d78a342478 (HasA chain link) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "chair has a four leg", "pln": ["(: cnet_hasa_e06e7917b3 (HasA chair four_leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "checkbook has a check", "pln": ["(: cnet_hasa_3c8ab093e3 (HasA checkbook check) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "cheese has a flavor", "pln": ["(: cnet_hasa_b118912592 (HasA cheese flavor) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "cheese has a lot of fat", "pln": ["(: cnet_hasa_0ff1def33d (HasA cheese lot_of_fat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "cheese has a strong odor", "pln": ["(: cnet_hasa_94b1ad8725 (HasA cheese strong_odor) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "cherry has a pit in middle", "pln": ["(: cnet_hasa_e3860afc3c (HasA cherry pit_in_middle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "chess board has a 64 square", "pln": ["(: cnet_hasa_68d0cc3f85 (HasA chess_board 64_square) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "chicken egg has a hard shell", "pln": ["(: cnet_hasa_57d925d309 (HasA chicken_egg hard_shell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "china has a largest population on earth", "pln": ["(: cnet_hasa_b5c5d05312 (HasA china largest_population_on_earth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "china has a lot of people", "pln": ["(: cnet_hasa_3be65825bf (HasA china lot_of_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "chinese food has a meat in", "pln": ["(: cnet_hasa_93ba1b2357 (HasA chinese_food meat_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "cigarette has a tobacco", "pln": ["(: cnet_hasa_3fef359266 (HasA cigarette tobacco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "classical music has a piano piece", "pln": ["(: cnet_hasa_9e5c1286cc (HasA classical_music piano_piece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "classical music has a rhythm", "pln": ["(: cnet_hasa_90015f7d63 (HasA classical_music rhythm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "clock has a alarm", "pln": ["(: cnet_hasa_693648808e (HasA clock alarm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "coffee has a caffein", "pln": ["(: cnet_hasa_cae31193f9 (HasA coffee caffein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "coffee has a caffeine", "pln": ["(: cnet_hasa_b81460c130 (HasA coffee caffeine) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "coin has a numismatic value", "pln": ["(: cnet_hasa_c93211db2e (HasA coin numismatic_value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "comb has a many teeth", "pln": ["(: cnet_hasa_ae76caf164 (HasA comb many_teeth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "community resource has a value", "pln": ["(: cnet_hasa_9f262939e5 (HasA community_resource value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "computer has a keyboard", "pln": ["(: cnet_hasa_ebe2b6953a (HasA computer keyboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "country has a population", "pln": ["(: cnet_hasa_8ea3414332 (HasA country population) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "couple has a open marriage", "pln": ["(: cnet_hasa_7d7e274e59 (HasA couple open_marriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "couple often has a fun together", "pln": ["(: cnet_hasa_aa927cbcba (HasA couple_often fun_together) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "courthouse has a room", "pln": ["(: cnet_hasa_b474216c64 (HasA courthouse room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "cow has a four stomache", "pln": ["(: cnet_hasa_fdede9079a (HasA cow four_stomache) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "cow has a four stomach", "pln": ["(: cnet_hasa_71635a0465 (HasA cow four_stomach) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "cube has a six side", "pln": ["(: cnet_hasa_5cfea8f043 (HasA cube six_side) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "cup has a liquid", "pln": ["(: cnet_hasa_8ffeaef527 (HasA cup liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "cypress tree has a high sap content", "pln": ["(: cnet_hasa_475336f31f (HasA cypress_tree high_sap_content) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "decision has a consequence", "pln": ["(: cnet_hasa_cf106deb06 (HasA decision consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "deer has a four leg", "pln": ["(: cnet_hasa_08f90bfb15 (HasA deer four_leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "desk has a flat surface", "pln": ["(: cnet_hasa_b488519079 (HasA desk flat_surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "dice has a six side", "pln": ["(: cnet_hasa_c2842e7b35 (HasA dice six_side) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "different culture has a different tonal scale", "pln": ["(: cnet_hasa_8b9a855419 (HasA different_culture different_tonal_scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "display cabinet has a glass front", "pln": ["(: cnet_hasa_a2fa27b61f (HasA display_cabinet glass_front) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "doctor s office has a waiting room", "pln": ["(: cnet_hasa_c6d5ae0338 (HasA doctor_s_office waiting_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "doctor has a many year of education", "pln": ["(: cnet_hasa_4d26e0378b (HasA doctor many_year_of_education) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "doctor has a specialty", "pln": ["(: cnet_hasa_05b5212115 (HasA doctor specialty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "doctor office has a waiting room", "pln": ["(: cnet_hasa_1fc0dc999d (HasA doctor_office waiting_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "dog has a flea", "pln": ["(: cnet_hasa_ef96f069d2 (HasA dog flea) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "dog has a four leg", "pln": ["(: cnet_hasa_6af1ddd05d (HasA dog four_leg) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "HasA"} {"nl": "dog has a nose", "pln": ["(: cnet_hasa_a8b9c70d34 (HasA dog nose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "doughnuts has a holes in", "pln": ["(: cnet_hasa_4a4a14c023 (HasA doughnuts holes_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "ducks has a bones", "pln": ["(: cnet_hasa_960935ec97 (HasA ducks bones) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "earth has a many artificial satellites", "pln": ["(: cnet_hasa_854baf4de1 (HasA earth many_artificial_satellites) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "dog has a paw", "pln": ["(: cnet_hasa_b0128eb76c (HasA dog paw) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "dog has a teeth", "pln": ["(: cnet_hasa_2ae6b0c7d0 (HasA dog teeth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "dog has a two ear", "pln": ["(: cnet_hasa_2c82d29e95 (HasA dog two_ear) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "dog has a bone", "pln": ["(: cnet_hasa_03218582f9 (HasA dog bone) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "dog has a fur", "pln": ["(: cnet_hasa_772bf5d88d (HasA dog fur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "dog has a tail", "pln": ["(: cnet_hasa_ebb5828b72 (HasA dog tail) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "dog has a wet nos", "pln": ["(: cnet_hasa_03955e9784 (HasA dog wet_nos) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "doll has a yarn for hair", "pln": ["(: cnet_hasa_1300455907 (HasA doll yarn_for_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "door has a handle", "pln": ["(: cnet_hasa_ec7dfbd01f (HasA door handle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "door has a door knob", "pln": ["(: cnet_hasa_c4e8169112 (HasA door door_knob) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "doughnut has a hole in", "pln": ["(: cnet_hasa_ebdb297a5c (HasA doughnut hole_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "dragonfly has a two set of wing", "pln": ["(: cnet_hasa_aa58d4e5c5 (HasA dragonfly two_set_of_wing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "duck has a bill and webbed feet", "pln": ["(: cnet_hasa_09487f849d (HasA duck bill_and_webbed_feet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "duck has a webbed feet", "pln": ["(: cnet_hasa_41d068c40c (HasA duck webbed_feet) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "duck has a bill", "pln": ["(: cnet_hasa_13a82a0c47 (HasA duck bill) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "duck has a bone", "pln": ["(: cnet_hasa_a4d58fbbe4 (HasA duck bone) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "duck has a feather", "pln": ["(: cnet_hasa_b6760efb69 (HasA duck feather) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "each country has a own flag", "pln": ["(: cnet_hasa_a75c791974 (HasA each_country own_flag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "each hand has a one thumb", "pln": ["(: cnet_hasa_5ffd9673de (HasA each_hand one_thumb) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "each holiday has a own distinctive human behavior", "pln": ["(: cnet_hasa_f293547929 (HasA each_holiday own_distinctive_human_behavior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "each person has a two lip", "pln": ["(: cnet_hasa_d1e40d1c29 (HasA each_person two_lip) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "earth has a atmosphere", "pln": ["(: cnet_hasa_f312a16219 (HasA earth atmosphere) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "earth has a gravity", "pln": ["(: cnet_hasa_aea2993e82 (HasA earth gravity) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "earth has a many artificial satellite", "pln": ["(: cnet_hasa_b042078daa (HasA earth many_artificial_satellite) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "earth has a many different living organism", "pln": ["(: cnet_hasa_8e5c69f98c (HasA earth many_different_living_organism) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "earth has a molten core", "pln": ["(: cnet_hasa_59fd452756 (HasA earth molten_core) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "earth has a one moon", "pln": ["(: cnet_hasa_0ca45453d5 (HasA earth one_moon) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "earth has a single moon", "pln": ["(: cnet_hasa_1947b89ae4 (HasA earth single_moon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "electric blanket has a cord", "pln": ["(: cnet_hasa_3a1541e21f (HasA electric_blanket cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "electron has a negative charge", "pln": ["(: cnet_hasa_d328c18eca (HasA electron negative_charge) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "elephant has a trunk", "pln": ["(: cnet_hasa_b6f70ed5bf (HasA elephant trunk) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "elephant has a tusk", "pln": ["(: cnet_hasa_c333eee9d1 (HasA elephant tusk) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "elephant has a leathery skin", "pln": ["(: cnet_hasa_aea06260fa (HasA elephant leathery_skin) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "elephant has a long nose called trunk", "pln": ["(: cnet_hasa_cbacd538a0 (HasA elephant long_nose_called_trunk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "english alphabet has a 26 letter", "pln": ["(: cnet_hasa_f3e7f8d7c5 (HasA english_alphabet 26_letter) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "entity has a shape", "pln": ["(: cnet_hasa_21053971f0 (HasA entity shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "every action has a equal and opposite reaction", "pln": ["(: cnet_hasa_54d127595d (HasA every_action equal_and_opposite_reaction) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "every city has a zip code", "pln": ["(: cnet_hasa_6eede3e6c1 (HasA every_city zip_code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "every house has a roof", "pln": ["(: cnet_hasa_eaeb7f5dac (HasA every_house roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "every living thing has a have nutrient", "pln": ["(: cnet_hasa_74799d45b2 (HasA every_living_thing have_nutrient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "every music has a style", "pln": ["(: cnet_hasa_8c11acd337 (HasA every_music style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "every person has a heart", "pln": ["(: cnet_hasa_09e2667d99 (HasA every_person heart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "every person has a name", "pln": ["(: cnet_hasa_c085a9c658 (HasA every_person name) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "every uncle has a unique personality", "pln": ["(: cnet_hasa_f76cf2af5f (HasA every_uncle unique_personality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "everyone has a feeling", "pln": ["(: cnet_hasa_d3c78d8afe (HasA everyone feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "everyone has a unique personality", "pln": ["(: cnet_hasa_01ffbc65ed (HasA everyone unique_personality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "everyone has a value", "pln": ["(: cnet_hasa_87fc622b84 (HasA everyone value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "evolution has a effect of creating new specy", "pln": ["(: cnet_hasa_95eade20a0 (HasA evolution effect_of_creating_new_specy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "finche has a large powerful beak", "pln": ["(: cnet_hasa_c5835c4317 (HasA finche large_powerful_beak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "finger has a bone", "pln": ["(: cnet_hasa_28b7b9a1dd (HasA finger bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "fionacat has a tail", "pln": ["(: cnet_hasa_f00b5eb261 (HasA fionacat tail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "firemen has a dangerous job", "pln": ["(: cnet_hasa_aacf9e4d49 (HasA firemen dangerous_job) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "fish has a bone", "pln": ["(: cnet_hasa_99199fd2b2 (HasA fish bone) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "fish has a fin", "pln": ["(: cnet_hasa_be1a56f980 (HasA fish fin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "fish has a gill", "pln": ["(: cnet_hasa_0a689596dc (HasA fish gill) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "florida has a mild winter weather", "pln": ["(: cnet_hasa_2491465a6d (HasA florida mild_winter_weather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "flower has a thorny stem", "pln": ["(: cnet_hasa_9f6e6ad240 (HasA flower thorny_stem) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "foot has a five toe", "pln": ["(: cnet_hasa_6850b39523 (HasA foot five_toe) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "forest has a many tree", "pln": ["(: cnet_hasa_eddf83565f (HasA forest many_tree) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "forgetting to pack has a effect of inconvience", "pln": ["(: cnet_hasa_472a3c904a (HasA forgetting_to_pack effect_of_inconvience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "fork has a prong", "pln": ["(: cnet_hasa_4f0e0896e3 (HasA fork prong) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "fork has a tine", "pln": ["(: cnet_hasa_c576719e29 (HasA fork tine) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "fox has a four leg", "pln": ["(: cnet_hasa_41a65105fb (HasA fox four_leg) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "frog has a bone", "pln": ["(: cnet_hasa_bd7602237c (HasA frog bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "fruit has a sugar", "pln": ["(: cnet_hasa_3c83a9cacd (HasA fruit sugar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "furniture dresser has a drawer", "pln": ["(: cnet_hasa_5dcfbc66bb (HasA furniture_dresser drawer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "galaxy has a elliptical shape", "pln": ["(: cnet_hasa_4177dff0ad (HasA galaxy elliptical_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "galaxy has a spiral shape", "pln": ["(: cnet_hasa_80b9e1bce9 (HasA galaxy spiral_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "garden has a flower", "pln": ["(: cnet_hasa_6a89848e70 (HasA garden flower) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "gas heater has a pilot light", "pln": ["(: cnet_hasa_df2dfd1037 (HasA gas_heater pilot_light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "gas stove has a pilot light", "pln": ["(: cnet_hasa_bf5d66c6c9 (HasA gas_stove pilot_light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "german shepherd dog has a 89 congenital defect", "pln": ["(: cnet_hasa_1e415eda7d (HasA german_shepherd_dog 89_congenital_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "god has a strange sense of humor", "pln": ["(: cnet_hasa_5e13347534 (HasA god strange_sense_of_humor) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} {"nl": "gold has a value", "pln": ["(: cnet_hasa_31656289f0 (HasA gold value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "hair has a roots", "pln": ["(: cnet_hasa_c6ceae00e7 (HasA hair roots) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "harp has a strings", "pln": ["(: cnet_hasa_9ceadf8359 (HasA harp strings) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "golf ball has a dimple", "pln": ["(: cnet_hasa_5c4eac43bb (HasA golf_ball dimple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "group has a identity element", "pln": ["(: cnet_hasa_9d49292633 (HasA group identity_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "guitar has a string", "pln": ["(: cnet_hasa_ba717bfe49 (HasA guitar string) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "guitar has a six string", "pln": ["(: cnet_hasa_156dece7e9 (HasA guitar six_string) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "hair has a follical", "pln": ["(: cnet_hasa_9e71427361 (HasA hair follical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "hair has a root", "pln": ["(: cnet_hasa_7d97ecb2fc (HasA hair root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "harp has a string", "pln": ["(: cnet_hasa_a390c3ee9f (HasA harp string) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "having sex has a effect of satisfying libido", "pln": ["(: cnet_hasa_722ef84c4f (HasA having_sex effect_of_satisfying_libido) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "head has a brain", "pln": ["(: cnet_hasa_997aab81be (HasA head brain) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "hemoglobin has a iron", "pln": ["(: cnet_hasa_3da4d6369d (HasA hemoglobin iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "hermaphrodite has a feature of both sexe", "pln": ["(: cnet_hasa_5890d15fde (HasA hermaphrodite feature_of_both_sexe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "high rise has a many floor", "pln": ["(: cnet_hasa_21232b6445 (HasA high_rise many_floor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "home has a bedroom", "pln": ["(: cnet_hasa_ab1b83da64 (HasA home bedroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "homosexual has a sex with each other", "pln": ["(: cnet_hasa_6467ca57c5 (HasA homosexual sex_with_each_other) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "horse has a four leg", "pln": ["(: cnet_hasa_195eb09078 (HasA horse four_leg) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "hors has a big penis", "pln": ["(: cnet_hasa_d12c67e66a (HasA hors big_penis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "hors has a four leg", "pln": ["(: cnet_hasa_642d28f55c (HasA hors four_leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "hors has a mane", "pln": ["(: cnet_hasa_f8185cd6c1 (HasA hors mane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "hotel has a lobby", "pln": ["(: cnet_hasa_56946ea5ae (HasA hotel lobby) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "house has a basement", "pln": ["(: cnet_hasa_524bbe45be (HasA house basement) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "house has a bathroom", "pln": ["(: cnet_hasa_e1fa4b6680 (HasA house bathroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "house has a door", "pln": ["(: cnet_hasa_a23f17e60a (HasA house door) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "house has a floor", "pln": ["(: cnet_hasa_3d4e5d7218 (HasA house floor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "house has a kitchen", "pln": ["(: cnet_hasa_a93cb7d6d2 (HasA house kitchen) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "house has a living room", "pln": ["(: cnet_hasa_cdb27bbe12 (HasA house living_room) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "house has a roof", "pln": ["(: cnet_hasa_c375249319 (HasA house roof) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "house has a room", "pln": ["(: cnet_hasa_2c37aab86f (HasA house room) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "house has a window", "pln": ["(: cnet_hasa_1eb5a02439 (HasA house window) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "house has a yard", "pln": ["(: cnet_hasa_e9b2c14b33 (HasA house yard) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "hous has a door", "pln": ["(: cnet_hasa_f4313ea755 (HasA hous door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "hous has a roof", "pln": ["(: cnet_hasa_159e33f3bf (HasA hous roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "hous has a wall", "pln": ["(: cnet_hasa_73f7f1768f (HasA hous wall) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "human has a five finger on each hand", "pln": ["(: cnet_hasa_bc87bdc556 (HasA human five_finger_on_each_hand) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "human has a muscle", "pln": ["(: cnet_hasa_2c4373aabf (HasA human muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} {"nl": "human has a one body", "pln": ["(: cnet_hasa_2f26ccc2fc (HasA human one_body) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "humans has a two hands", "pln": ["(: cnet_hasa_67b911fa86 (HasA humans two_hands) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "jews has a children", "pln": ["(: cnet_hasa_71f33b7372 (HasA jews children) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "lizards has a tail", "pln": ["(: cnet_hasa_9f54d0826d (HasA lizards tail) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "human has a two arm", "pln": ["(: cnet_hasa_c643d1d0c2 (HasA human two_arm) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "human has a two leg and two arm", "pln": ["(: cnet_hasa_69c131c9ce (HasA human two_leg_and_two_arm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "human being has a five finger on each hand", "pln": ["(: cnet_hasa_f01a58dd82 (HasA human_being five_finger_on_each_hand) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "human body has a many muscle", "pln": ["(: cnet_hasa_59a01b3bbf (HasA human_body many_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "human body has a many organ", "pln": ["(: cnet_hasa_65a96a99b5 (HasA human_body many_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "human hand has a 5 finger", "pln": ["(: cnet_hasa_7543335f02 (HasA human_hand 5_finger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "human hand has a four finger and thumb", "pln": ["(: cnet_hasa_097acff3f6 (HasA human_hand four_finger_and_thumb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "human has a 10 finger", "pln": ["(: cnet_hasa_6c8df97476 (HasA human 10_finger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "human has a 2 ear", "pln": ["(: cnet_hasa_65ad4cb99b (HasA human 2_ear) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "human has a biological body", "pln": ["(: cnet_hasa_065d628a8a (HasA human biological_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "human has a bone", "pln": ["(: cnet_hasa_56d7c0c6e9 (HasA human bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "human has a brain", "pln": ["(: cnet_hasa_323e8c5982 (HasA human brain) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "human has a eye", "pln": ["(: cnet_hasa_b25fbd75cd (HasA human eye) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "human has a finger", "pln": ["(: cnet_hasa_1c203e9c45 (HasA human finger) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "human has a five toe on each foot", "pln": ["(: cnet_hasa_d2f6ceb77a (HasA human five_toe_on_each_foot) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "human has a hair", "pln": ["(: cnet_hasa_5bd752abdf (HasA human hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "human has a hand", "pln": ["(: cnet_hasa_86e603fd03 (HasA human hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "human has a landed on moon", "pln": ["(: cnet_hasa_ca139d58b9 (HasA human landed_on_moon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "human has a one head", "pln": ["(: cnet_hasa_38321cbb7d (HasA human one_head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "human has a one mouth", "pln": ["(: cnet_hasa_92a357afb1 (HasA human one_mouth) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "human has a ten finger", "pln": ["(: cnet_hasa_8193dd8ed8 (HasA human ten_finger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "human has a two arm and two leg", "pln": ["(: cnet_hasa_6e6f883777 (HasA human two_arm_and_two_leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "human has a two ear", "pln": ["(: cnet_hasa_77bc0cd09e (HasA human two_ear) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "human has a two eye", "pln": ["(: cnet_hasa_bf702a2c60 (HasA human two_eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "human has a two feet", "pln": ["(: cnet_hasa_fc84dd7bac (HasA human two_feet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "human has a two hand", "pln": ["(: cnet_hasa_09cc015ec2 (HasA human two_hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "human has a two leg", "pln": ["(: cnet_hasa_fedb0800b4 (HasA human two_leg) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "human usualy has a two hand", "pln": ["(: cnet_hasa_a91f8a498f (HasA human_usualy two_hand) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "husband and wife has a sex", "pln": ["(: cnet_hasa_cdd4d26442 (HasA husband_and_wife sex) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "hydrogen atom has a only one electron", "pln": ["(: cnet_hasa_9232f3bc67 (HasA hydrogen_atom only_one_electron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "insect has a 6 leg", "pln": ["(: cnet_hasa_9fa3276599 (HasA insect 6_leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "internet has a connection", "pln": ["(: cnet_hasa_bf25041f52 (HasA internet connection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "intestine has a worm", "pln": ["(: cnet_hasa_4c091c59ac (HasA intestine worm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "jacket has a zipper", "pln": ["(: cnet_hasa_1da85d2827 (HasA jacket zipper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "jewish people has a eat kosher food", "pln": ["(: cnet_hasa_ac82a645d6 (HasA jewish_people eat_kosher_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "jew has a children", "pln": ["(: cnet_hasa_b66948e352 (HasA jew children) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "kangaroo has a pouch for young", "pln": ["(: cnet_hasa_87f3cf8261 (HasA kangaroo pouch_for_young) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "keyboard has a key", "pln": ["(: cnet_hasa_514a319886 (HasA keyboard key) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "kimono has a wide sleeve", "pln": ["(: cnet_hasa_52ec156b3a (HasA kimono wide_sleeve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "king has a kingdom", "pln": ["(: cnet_hasa_4eeb2e88ac (HasA king kingdom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "kingdom has a many people", "pln": ["(: cnet_hasa_49abd6990d (HasA kingdom many_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "kitchen has a stove", "pln": ["(: cnet_hasa_add2044f4f (HasA kitchen stove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "kitty has a paw", "pln": ["(: cnet_hasa_582ac75a29 (HasA kitty paw) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "lake has a water", "pln": ["(: cnet_hasa_cfef92e6ac (HasA lake water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "latest new has a high value", "pln": ["(: cnet_hasa_f5402ebc73 (HasA latest_new high_value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "lawyer has a linen closet in home", "pln": ["(: cnet_hasa_61226c493b (HasA lawyer linen_closet_in_home) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "leader has a follower", "pln": ["(: cnet_hasa_9666ce8afa (HasA leader follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "leap year has a 366 day", "pln": ["(: cnet_hasa_80e84ed37c (HasA leap_year 366_day) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "leavened bread has a yeast", "pln": ["(: cnet_hasa_7cb16c5669 (HasA leavened_bread yeast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "leg has a one foot", "pln": ["(: cnet_hasa_5a4f8fb04b (HasA leg one_foot) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "leopard has a fur", "pln": ["(: cnet_hasa_dfe30110b4 (HasA leopard fur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "library has a book", "pln": ["(: cnet_hasa_131529c50b (HasA library book) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "library has a lot of book", "pln": ["(: cnet_hasa_eb4b04a495 (HasA library lot_of_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "lizard has a bone", "pln": ["(: cnet_hasa_7e4980c418 (HasA lizard bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "lizard has a four leg", "pln": ["(: cnet_hasa_6fc52116f1 (HasA lizard four_leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "lizard has a tail", "pln": ["(: cnet_hasa_6b102b1dfd (HasA lizard tail) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "magazine has a article", "pln": ["(: cnet_hasa_962d6d0abc (HasA magazine article) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "male has a sex with female", "pln": ["(: cnet_hasa_4cebdf198e (HasA male sex_with_female) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "male lion has a mane", "pln": ["(: cnet_hasa_87e6c15714 (HasA male_lion mane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} {"nl": "male peacock has a bright colored tail", "pln": ["(: cnet_hasa_e12f732052 (HasA male_peacock bright_colored_tail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "mankind has a made incredible advances in space travel", "pln": ["(: cnet_hasa_8058810c28 (HasA mankind made_incredible_advances_in_space_travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "mall has a many shop", "pln": ["(: cnet_hasa_6559702ef4 (HasA mall many_shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "mall has a escalator", "pln": ["(: cnet_hasa_f1e4dcc782 (HasA mall escalator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "mammal has a fur", "pln": ["(: cnet_hasa_6e481a318a (HasA mammal fur) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "mammal has a hair", "pln": ["(: cnet_hasa_364c1139ea (HasA mammal hair) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "mammal has a heart", "pln": ["(: cnet_hasa_d4075ae0e2 (HasA mammal heart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "mankind has a made incredible advance in space travel", "pln": ["(: cnet_hasa_c183e70c85 (HasA mankind made_incredible_advance_in_space_travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "mankind has a made many advancement", "pln": ["(: cnet_hasa_585e1866c1 (HasA mankind made_many_advancement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "many bird has a tail", "pln": ["(: cnet_hasa_046fa1135b (HasA many_bird tail) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "many people has a bbq on patio", "pln": ["(: cnet_hasa_b2e72afb7b (HasA many_people bbq_on_patio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "marijuana has a thc", "pln": ["(: cnet_hasa_72140fd10a (HasA marijuana thc) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "mar has a two moon", "pln": ["(: cnet_hasa_57d44a0d88 (HasA mar two_moon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} {"nl": "matter has a mass", "pln": ["(: cnet_hasa_e52d0c13cd (HasA matter mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "most bedrooms has a windows", "pln": ["(: cnet_hasa_25041f4b74 (HasA most_bedrooms windows) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "motorcycles has a two wheels", "pln": ["(: cnet_hasa_0e5d954588 (HasA motorcycles two_wheels) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "newspaper has a many columns", "pln": ["(: cnet_hasa_04f801b64e (HasA newspaper many_columns) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "normal people has a hands", "pln": ["(: cnet_hasa_718b8ef721 (HasA normal_people hands) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "people has a muscles", "pln": ["(: cnet_hasa_320e9d8185 (HasA people muscles) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "men and women has a sex", "pln": ["(: cnet_hasa_a5c069d8fa (HasA men_and_women sex) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "mike has a got flu", "pln": ["(: cnet_hasa_2fceb9f093 (HasA mike got_flu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "milk has a calcium", "pln": ["(: cnet_hasa_81eefaf17c (HasA milk calcium) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "milk has a water", "pln": ["(: cnet_hasa_f7f8a8c7c2 (HasA milk water) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "monday has a evening", "pln": ["(: cnet_hasa_b6649990fe (HasA monday evening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "money has a value", "pln": ["(: cnet_hasa_a7799b74e1 (HasA money value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "most apartment has a kitchen", "pln": ["(: cnet_hasa_711ef5fee3 (HasA most_apartment kitchen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "most bathroom has a sink", "pln": ["(: cnet_hasa_a65ea79cc3 (HasA most_bathroom sink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "most bedroom has a window", "pln": ["(: cnet_hasa_806a5e7fd2 (HasA most_bedroom window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "most bicyle has a two wheel", "pln": ["(: cnet_hasa_07b764eeb4 (HasA most_bicyle two_wheel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "most bird has a wing", "pln": ["(: cnet_hasa_a680733398 (HasA most_bird wing) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "most book has a word", "pln": ["(: cnet_hasa_cb97b1bc8c (HasA most_book word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "most camera has a len", "pln": ["(: cnet_hasa_b3760d91f6 (HasA most_camera len) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "most car has a four wheel", "pln": ["(: cnet_hasa_cff90c1d00 (HasA most_car four_wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "most cat has a tail", "pln": ["(: cnet_hasa_8b08825c55 (HasA most_cat tail) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "most community has a leash law", "pln": ["(: cnet_hasa_204411d6be (HasA most_community leash_law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "most door has a lock", "pln": ["(: cnet_hasa_75be2ca5c1 (HasA most_door lock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "most human has a two leg", "pln": ["(: cnet_hasa_ae58a0efd0 (HasA most_human two_leg) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "most magazine has a picture in", "pln": ["(: cnet_hasa_7a96d7a8ea (HasA most_magazine picture_in) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "most mammal has a four leg", "pln": ["(: cnet_hasa_1945c92ae5 (HasA most_mammal four_leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "most men has a job", "pln": ["(: cnet_hasa_0f3d7440b4 (HasA most_men job) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "most people has a favorite food", "pln": ["(: cnet_hasa_c31c8fa395 (HasA most_people favorite_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "most people has a two arm", "pln": ["(: cnet_hasa_913fd3b9d8 (HasA most_people two_arm) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "most people has a two eye", "pln": ["(: cnet_hasa_8a8cc4513c (HasA most_people two_eye) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "most people has a two hand", "pln": ["(: cnet_hasa_1bdb08c8b8 (HasA most_people two_hand) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "most pizza has a cheese on", "pln": ["(: cnet_hasa_4969ea0ed0 (HasA most_pizza cheese_on) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "most religion has a ritual", "pln": ["(: cnet_hasa_3da662d6b3 (HasA most_religion ritual) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "motorcycle has a two wheel", "pln": ["(: cnet_hasa_4bfc3da0ba (HasA motorcycle two_wheel) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "motorcycle has a 2 wheel", "pln": ["(: cnet_hasa_e38bfbd119 (HasA motorcycle 2_wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "mouse has a short lifespan", "pln": ["(: cnet_hasa_65dabe118a (HasA mouse short_lifespan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "mouth has a lip", "pln": ["(: cnet_hasa_ed5136a60a (HasA mouth lip) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "movie theater seat has a armrest", "pln": ["(: cnet_hasa_8af9dc5124 (HasA movie_theater_seat armrest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "mowing grass has a linear complexity", "pln": ["(: cnet_hasa_f3258e9d43 (HasA mowing_grass linear_complexity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "natural gas has a bad smell", "pln": ["(: cnet_hasa_db6ad632cf (HasA natural_gas bad_smell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "needle has a sharp point", "pln": ["(: cnet_hasa_316c8276cc (HasA needle sharp_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "new computer has a memory chip", "pln": ["(: cnet_hasa_783582ce17 (HasA new_computer memory_chip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "new york has a many tall building", "pln": ["(: cnet_hasa_009f364957 (HasA new_york many_tall_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "newspaper has a information about many thing", "pln": ["(: cnet_hasa_84d4ba1fe1 (HasA newspaper information_about_many_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "newspaper has a many column", "pln": ["(: cnet_hasa_8ef2310778 (HasA newspaper many_column) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "newspaper has a new in paper format", "pln": ["(: cnet_hasa_ef69ff7c61 (HasA newspaper new_in_paper_format) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "normal people has a hand", "pln": ["(: cnet_hasa_b9ec3dad48 (HasA normal_people hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "normally people has a one head", "pln": ["(: cnet_hasa_f16e74d746 (HasA normally_people one_head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "nose has a two nostril", "pln": ["(: cnet_hasa_1c468614aa (HasA nose two_nostril) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "november has a thirty day", "pln": ["(: cnet_hasa_ac7f6d57a8 (HasA november thirty_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "object has a volume", "pln": ["(: cnet_hasa_1468b768d9 (HasA object volume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "ocean has a salt", "pln": ["(: cnet_hasa_c2edd2d75e (HasA ocean salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "ocean has a water", "pln": ["(: cnet_hasa_fd328e3003 (HasA ocean water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "ocean has a salt water", "pln": ["(: cnet_hasa_5ccddf9cbe (HasA ocean salt_water) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "old new has a low value", "pln": ["(: cnet_hasa_d77c40e081 (HasA old_new low_value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "old people has a grey hair", "pln": ["(: cnet_hasa_0e778f628c (HasA old_people grey_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "one hand has a four finger and thumb", "pln": ["(: cnet_hasa_e5db7d3dcb (HasA one_hand four_finger_and_thumb) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "one impairment person might has a bright s disease", "pln": ["(: cnet_hasa_864f47cc95 (HasA one_impairment_person_might bright_s_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "one impairment person might has a buerger s disease", "pln": ["(: cnet_hasa_90f15a60ff (HasA one_impairment_person_might buerger_s_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "one impairment person might has a grave disease", "pln": ["(: cnet_hasa_7b8b50367c (HasA one_impairment_person_might grave_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "one pair of pant has a two leg", "pln": ["(: cnet_hasa_9c8a11255d (HasA one_pair_of_pant two_leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "one type of box has a hole for ventilation", "pln": ["(: cnet_hasa_520f766f10 (HasA one_type_of_box hole_for_ventilation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "onion has a skin", "pln": ["(: cnet_hasa_7a5aebc4d4 (HasA onion skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "orange has a peel", "pln": ["(: cnet_hasa_286d92c21e (HasA orange peel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "orange has a rind", "pln": ["(: cnet_hasa_ac45b1dc77 (HasA orange rind) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "orange juice has a vitamin c", "pln": ["(: cnet_hasa_397940ff65 (HasA orange_juice vitamin_c) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "orange has a seed", "pln": ["(: cnet_hasa_e3e545fc89 (HasA orange seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "orchestra pit has a musician", "pln": ["(: cnet_hasa_1a4e4c19cd (HasA orchestra_pit musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "owl has a eye", "pln": ["(: cnet_hasa_aada7596fa (HasA owl eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "pair of pant has a one waistline", "pln": ["(: cnet_hasa_ef54b6ed9c (HasA pair_of_pant one_waistline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "parent has a child", "pln": ["(: cnet_hasa_6e925133f1 (HasA parent child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "peach has a pit", "pln": ["(: cnet_hasa_0e8d6c6874 (HasA peach pit) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "pen has a ink", "pln": ["(: cnet_hasa_4feec2f33f (HasA pen ink) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "pencil has a graphite not lead", "pln": ["(: cnet_hasa_4a83f270af (HasA pencil graphite_not_lead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "people has a body part", "pln": ["(: cnet_hasa_dfab06d001 (HasA people body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "people has a brain", "pln": ["(: cnet_hasa_431fc7526a (HasA people brain) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "people has a brown hair", "pln": ["(: cnet_hasa_cc6e428328 (HasA people brown_hair) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "people has a cat for pet", "pln": ["(: cnet_hasa_d68de855d5 (HasA people cat_for_pet) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "people has a dog as pet", "pln": ["(: cnet_hasa_adfdc31a34 (HasA people dog_as_pet) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "people has a drug problem", "pln": ["(: cnet_hasa_209b9b45d8 (HasA people drug_problem) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "people has a eat", "pln": ["(: cnet_hasa_cd8f470dcd (HasA people eat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "people has a emotion", "pln": ["(: cnet_hasa_c8eb5a3b47 (HasA people emotion) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "people has a eye", "pln": ["(: cnet_hasa_583fa50d76 (HasA people eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "people has a favorite color", "pln": ["(: cnet_hasa_00b3b85603 (HasA people favorite_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "people has a feeling", "pln": ["(: cnet_hasa_22f5de2efe (HasA people feeling) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "people has a five finger on each hand", "pln": ["(: cnet_hasa_107dd3aa6c (HasA people five_finger_on_each_hand) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "people has a muscle", "pln": ["(: cnet_hasa_0d14ade3e3 (HasA people muscle) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "people has a name", "pln": ["(: cnet_hasa_b663ae9e01 (HasA people name) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "people has a parent", "pln": ["(: cnet_hasa_abb5542fcb (HasA people parent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "people has a pay taxe", "pln": ["(: cnet_hasa_6d98912e3f (HasA people pay_taxe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "people has a red hair", "pln": ["(: cnet_hasa_f7cf2b62b0 (HasA people red_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "people has a sex", "pln": ["(: cnet_hasa_0f46450585 (HasA people sex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "people has a sex in bed", "pln": ["(: cnet_hasa_986fae2054 (HasA people sex_in_bed) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "people has a two arm", "pln": ["(: cnet_hasa_cad1d33ebb (HasA people two_arm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "people has a two eye", "pln": ["(: cnet_hasa_06af8b720b (HasA people two_eye) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "people has a two leg", "pln": ["(: cnet_hasa_6788e78323 (HasA people two_leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "people put on trial has a lawyer", "pln": ["(: cnet_hasa_16c70ae846 (HasA people_put_on_trial lawyer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} {"nl": "person has a belly button", "pln": ["(: cnet_hasa_f3930590c8 (HasA person belly_button) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "person has a do dishe", "pln": ["(: cnet_hasa_13dddca70c (HasA person do_dishe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "person has a four grandparent", "pln": ["(: cnet_hasa_b872dc96b6 (HasA person four_grandparent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "person has a immune system", "pln": ["(: cnet_hasa_916f4e16c1 (HasA person immune_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "person has a name", "pln": ["(: cnet_hasa_990dc1d320 (HasA person name) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} {"nl": "person has a one head", "pln": ["(: cnet_hasa_f35515cb3a (HasA person one_head) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "person wants has a family", "pln": ["(: cnet_hasa_e1a2840df7 (HasA person_wants family) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "person has a two opposable thumb", "pln": ["(: cnet_hasa_81fba684ca (HasA person two_opposable_thumb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "person want has a family", "pln": ["(: cnet_hasa_0844b16367 (HasA person_want family) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "person want has a orgasm", "pln": ["(: cnet_hasa_11a3cda8cb (HasA person_want orgasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "pi has a value of about 3 141592653", "pln": ["(: cnet_hasa_717d93fe4f (HasA pi value_of_about_3_141592653) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "piano has a 88 key", "pln": ["(: cnet_hasa_e1c9e47d61 (HasA piano 88_key) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "piano has a black and white key", "pln": ["(: cnet_hasa_405fd92c8f (HasA piano black_and_white_key) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "pie has a pie crust", "pln": ["(: cnet_hasa_209d11a5fc (HasA pie pie_crust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "pig has a bone", "pln": ["(: cnet_hasa_d5632422ec (HasA pig bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "planet earth has a iron core", "pln": ["(: cnet_hasa_8c0a41c231 (HasA planet_earth iron_core) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "plant has a flower on", "pln": ["(: cnet_hasa_11a15ad6db (HasA plant flower_on) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "plant has a leave", "pln": ["(: cnet_hasa_1a4857effe (HasA plant leave) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "plant has a root", "pln": ["(: cnet_hasa_a3267694b5 (HasA plant root) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "pond has a water", "pln": ["(: cnet_hasa_35ea3b9e9b (HasA pond water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} {"nl": "ponderosa pine has a distinctive smell", "pln": ["(: cnet_hasa_ecf969948b (HasA ponderosa_pine distinctive_smell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "puppies has a bad breath", "pln": ["(: cnet_hasa_964002ca46 (HasA puppies bad_breath) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "pool has a water", "pln": ["(: cnet_hasa_5b29c3ca92 (HasA pool water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "proton has a positive electric charge", "pln": ["(: cnet_hasa_abc5b6a684 (HasA proton positive_electric_charge) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "puppy has a bad breath", "pln": ["(: cnet_hasa_6e44d3cab1 (HasA puppy bad_breath) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "puppy has a hair all over", "pln": ["(: cnet_hasa_0742e2cd89 (HasA puppy hair_all_over) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "rabbit has a two ear", "pln": ["(: cnet_hasa_6336fa74da (HasA rabbit two_ear) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "rabid animal has a raby", "pln": ["(: cnet_hasa_d7881d7595 (HasA rabid_animal raby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "race has a purse for winner", "pln": ["(: cnet_hasa_f0ddf11b9c (HasA race purse_for_winner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "ranch has a hors", "pln": ["(: cnet_hasa_9db987c997 (HasA ranch hors) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "religion has a caused many war", "pln": ["(: cnet_hasa_d1868fd4da (HasA religion caused_many_war) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "religion has a minister", "pln": ["(: cnet_hasa_5762b1af55 (HasA religion minister) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "room has a wall", "pln": ["(: cnet_hasa_f2292aad9c (HasA room wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "room has a wall and roof", "pln": ["(: cnet_hasa_5fd0c39f50 (HasA room wall_and_roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "room has a door", "pln": ["(: cnet_hasa_e52093fd06 (HasA room door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "room has a door and window", "pln": ["(: cnet_hasa_f43df1823d (HasA room door_and_window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "room has a high wall", "pln": ["(: cnet_hasa_bf60d038f6 (HasA room high_wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "room has a square shape", "pln": ["(: cnet_hasa_5d12ff5d3f (HasA room square_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "rooster has a comb", "pln": ["(: cnet_hasa_a66925954b (HasA rooster comb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "rose has a thorn", "pln": ["(: cnet_hasa_d99e3bb991 (HasA rose thorn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "rose bushe has a thorn", "pln": ["(: cnet_hasa_bd235699e7 (HasA rose_bushe thorn) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "ros has a thorn on stem", "pln": ["(: cnet_hasa_15a9b4193c (HasA ros thorn_on_stem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "sailboat has a mast", "pln": ["(: cnet_hasa_e858d76a88 (HasA sailboat mast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "sailboat has a sail", "pln": ["(: cnet_hasa_c0126d01c1 (HasA sailboat sail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "salesmen has a good manner", "pln": ["(: cnet_hasa_04d7141b0f (HasA salesmen good_manner) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "san francisco has a many hill", "pln": ["(: cnet_hasa_64bafbf9ee (HasA san_francisco many_hill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "school has a classroom", "pln": ["(: cnet_hasa_d646bc4189 (HasA school classroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "seafood restaurant has a bar", "pln": ["(: cnet_hasa_46ab4c0140 (HasA seafood_restaurant bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "sex has a effect of burning calory", "pln": ["(: cnet_hasa_d325fb7e6f (HasA sex effect_of_burning_calory) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} {"nl": "sex has a effect of insemination", "pln": ["(: cnet_hasa_eab77e33b4 (HasA sex effect_of_insemination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "snakes has a no legs", "pln": ["(: cnet_hasa_d8c88fae53 (HasA snakes no_legs) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "ship has a bow and stern", "pln": ["(: cnet_hasa_025de0a26f (HasA ship bow_and_stern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "shirt has a button", "pln": ["(: cnet_hasa_c78fcedd99 (HasA shirt button) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "shirt has a collar", "pln": ["(: cnet_hasa_9c8ca14e12 (HasA shirt collar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "shoe has a lace", "pln": ["(: cnet_hasa_2a77703e1c (HasA shoe lace) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "shoe has a heel", "pln": ["(: cnet_hasa_b8fa0ca7b9 (HasA shoe heel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "snake has a no leg", "pln": ["(: cnet_hasa_15daf8b323 (HasA snake no_leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "snake has a scale", "pln": ["(: cnet_hasa_be9e0529cd (HasA snake scale) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "solar system has a nine planet", "pln": ["(: cnet_hasa_476dded472 (HasA solar_system nine_planet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "solar system has a planet", "pln": ["(: cnet_hasa_7c811956a7 (HasA solar_system planet) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "soldier has a proud profession", "pln": ["(: cnet_hasa_47536e8be3 (HasA soldier proud_profession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "soldier has a different rank", "pln": ["(: cnet_hasa_b75a0b2de9 (HasA soldier different_rank) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "spider has a eight leg", "pln": ["(: cnet_hasa_122808e97e (HasA spider eight_leg) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "square has a four equal side", "pln": ["(: cnet_hasa_009b1fb693 (HasA square four_equal_side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "square has a four side", "pln": ["(: cnet_hasa_60ddb82dbb (HasA square four_side) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "stair often has a railing", "pln": ["(: cnet_hasa_afc0d3abd6 (HasA stair_often railing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "stairwell has a stair", "pln": ["(: cnet_hasa_bfbce2e243 (HasA stairwell stair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "stamp pad has a ink", "pln": ["(: cnet_hasa_1a0927e050 (HasA stamp_pad ink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} {"nl": "stamp pad has a ink on", "pln": ["(: cnet_hasa_4f7bdeb213 (HasA stamp_pad ink_on) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "state of virginia has a many trees", "pln": ["(: cnet_hasa_442e08fdff (HasA state_of_virginia many_trees) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "state of virginia has a many tree", "pln": ["(: cnet_hasa_ab15df98ae (HasA state_of_virginia many_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "steel has a iron", "pln": ["(: cnet_hasa_0851ba644d (HasA steel iron) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "student has a go to class", "pln": ["(: cnet_hasa_9100d6af2b (HasA student go_to_class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "supermarket has a large selection of food", "pln": ["(: cnet_hasa_3f8aa1a3f5 (HasA supermarket large_selection_of_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "sword has a sharp edge", "pln": ["(: cnet_hasa_7b6a25ee2a (HasA sword sharp_edge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "sydney has a taller building than melbourne", "pln": ["(: cnet_hasa_b3d1b97b75 (HasA sydney taller_building_than_melbourne) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "talk show has a guest", "pln": ["(: cnet_hasa_0f84face41 (HasA talk_show guest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} {"nl": "tall people has a advantage in basketball", "pln": ["(: cnet_hasa_5f2ec5199b (HasA tall_people advantage_in_basketball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "tea has a caffein", "pln": ["(: cnet_hasa_e58d8b79e8 (HasA tea caffein) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} {"nl": "tea has a caffeine", "pln": ["(: cnet_hasa_45690d6f5e (HasA tea caffeine) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "HasA"} {"nl": "teapot has a spout", "pln": ["(: cnet_hasa_826a2dc33e (HasA teapot spout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "terraced house has a many levels", "pln": ["(: cnet_hasa_26744dc89f (HasA terraced_house many_levels) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "trees has a leaves on branches", "pln": ["(: cnet_hasa_05417a720c (HasA trees leaves_on_branches) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "tennis court has a net", "pln": ["(: cnet_hasa_d58d62baf3 (HasA tennis_court net) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "terraced house has a many level", "pln": ["(: cnet_hasa_8a4e3d2588 (HasA terraced_house many_level) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "test often has a problem on", "pln": ["(: cnet_hasa_de4f98becf (HasA test_often problem_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "tissue holder has a tissue", "pln": ["(: cnet_hasa_b414cd4983 (HasA tissue_holder tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "toilet lid has a hinge", "pln": ["(: cnet_hasa_0f6c0359b4 (HasA toilet_lid hinge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "toothbrush has a bristle", "pln": ["(: cnet_hasa_60f435caac (HasA toothbrush bristle) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "toothbrush head has a bristle", "pln": ["(: cnet_hasa_c7bb2bae16 (HasA toothbrush_head bristle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "tortilla has a specific shape", "pln": ["(: cnet_hasa_ddbbc7914d (HasA tortilla specific_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "tree has a leave on branche", "pln": ["(: cnet_hasa_e1a0ee1887 (HasA tree leave_on_branche) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "tree has a trunk", "pln": ["(: cnet_hasa_d9229a33b7 (HasA tree trunk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "tree has a branche", "pln": ["(: cnet_hasa_8dc698be39 (HasA tree branche) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "tree has a leave", "pln": ["(: cnet_hasa_ac4fab5b10 (HasA tree leave) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "triangle has a 3 side", "pln": ["(: cnet_hasa_db81cbb2f0 (HasA triangle 3_side) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "triangle has a three side", "pln": ["(: cnet_hasa_bcd6169cc3 (HasA triangle three_side) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "tripod has a three leg", "pln": ["(: cnet_hasa_8635c2e881 (HasA tripod three_leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "tripod dolly has a three leg", "pln": ["(: cnet_hasa_567caf5f9c (HasA tripod_dolly three_leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} {"nl": "tuba has a mouthpiece", "pln": ["(: cnet_hasa_ab3d684970 (HasA tuba mouthpiece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "vertebrates has a spines", "pln": ["(: cnet_hasa_985e2dff9f (HasA vertebrates spines) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "wagon has a wheels", "pln": ["(: cnet_hasa_b02bcd1b0d (HasA wagon wheels) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "turtle has a hard shell", "pln": ["(: cnet_hasa_c72bd0588b (HasA turtle hard_shell) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "tv has a channel", "pln": ["(: cnet_hasa_e5ead5a932 (HasA tv channel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "unicorn has a one horn", "pln": ["(: cnet_hasa_c7d81a9e68 (HasA unicorn one_horn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "unicorn has a only one horn", "pln": ["(: cnet_hasa_d3ec1cd711 (HasA unicorn only_one_horn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "united state has a democratic government", "pln": ["(: cnet_hasa_8274fd5ee6 (HasA united_state democratic_government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "united state has a fifty state", "pln": ["(: cnet_hasa_e31ac2cc53 (HasA united_state fifty_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "valley has a different temperature than hill", "pln": ["(: cnet_hasa_584b62be3b (HasA valley different_temperature_than_hill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "vehicle has a just two wheel", "pln": ["(: cnet_hasa_57a907dc81 (HasA vehicle just_two_wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "vertebrate has a backbone", "pln": ["(: cnet_hasa_2355dd5cdc (HasA vertebrate backbone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "vertebrate has a spine", "pln": ["(: cnet_hasa_9a471cc70a (HasA vertebrate spine) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "violin has a string", "pln": ["(: cnet_hasa_f2880101d2 (HasA violin string) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "virgin person who has a not had sex", "pln": ["(: cnet_hasa_26edbe0b1e (HasA virgin_person_who not_had_sex) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "visa card has a credit limit", "pln": ["(: cnet_hasa_9e946bff32 (HasA visa_card credit_limit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "volcano has a crater", "pln": ["(: cnet_hasa_eb6d0bf98f (HasA volcano crater) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "wagon has a wheel", "pln": ["(: cnet_hasa_8cdbd15bf7 (HasA wagon wheel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} {"nl": "walnut has a shell", "pln": ["(: cnet_hasa_8d6e75c065 (HasA walnut shell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "watches has a hands", "pln": ["(: cnet_hasa_65aacc9ce7 (HasA watches hands) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "watermelon has a black seeds", "pln": ["(: cnet_hasa_7b7098f883 (HasA watermelon black_seeds) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "wine bottles has a corks", "pln": ["(: cnet_hasa_a0799b79d8 (HasA wine_bottles corks) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} -{"nl": "ants is very_strong", "pln": ["(: cnet_isa_ba6285adb9 (IsA ants very_strong) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "war has a violence", "pln": ["(: cnet_hasa_48c55c74ae (HasA war violence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "watche has a hand", "pln": ["(: cnet_hasa_121b52921a (HasA watche hand) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "water has a no taste", "pln": ["(: cnet_hasa_13c90ec54c (HasA water no_taste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "water in ocean has a salt", "pln": ["(: cnet_hasa_b83a8e8ca2 (HasA water_in_ocean salt) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "watermelon has a black seed", "pln": ["(: cnet_hasa_fde1074d64 (HasA watermelon black_seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "whale has a bone", "pln": ["(: cnet_hasa_7e5ca876af (HasA whale bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "window has a frame", "pln": ["(: cnet_hasa_31b04ec25c (HasA window frame) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "wine has a alcohol", "pln": ["(: cnet_hasa_653e8cc2eb (HasA wine alcohol) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "wine bottle has a cork", "pln": ["(: cnet_hasa_6211870565 (HasA wine_bottle cork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "wood has a grain to", "pln": ["(: cnet_hasa_29271fd497 (HasA wood grain_to) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "word has a meaning", "pln": ["(: cnet_hasa_0b1fbd65a0 (HasA word meaning) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "word has a multiple meaning", "pln": ["(: cnet_hasa_1469c0acf4 (HasA word multiple_meaning) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "wow has a three letter", "pln": ["(: cnet_hasa_32d01a5586 (HasA wow three_letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "year has a 12 month", "pln": ["(: cnet_hasa_74adbd70d3 (HasA year 12_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "zebra has a stripe", "pln": ["(: cnet_hasa_06a72bcc10 (HasA zebra stripe) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "HasA"} +{"nl": "addition is commutative", "pln": ["(: cnet_isa_5dd820c668 (IsA addition commutative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adult is older_than_children", "pln": ["(: cnet_isa_d0756db4fe (IsA adult older_than_children) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aerial_bomb is destructive", "pln": ["(: cnet_isa_1baedefed2 (IsA aerial_bomb destructive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air is invisible", "pln": ["(: cnet_isa_7cfb5b7536 (IsA air invisible) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcohol is addictive", "pln": ["(: cnet_isa_43b9d49928 (IsA alcohol addictive) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcoholic is more_likely_to_get_drunk", "pln": ["(: cnet_isa_4379a93294 (IsA alcoholic more_likely_to_get_drunk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alien is intelligent", "pln": ["(: cnet_isa_6e12606f2a (IsA alien intelligent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "all_bull is male", "pln": ["(: cnet_isa_59e374f91e (IsA all_bull male) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "all_cds is round", "pln": ["(: cnet_isa_6da73c49bd (IsA all_cds round) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "all_king is male", "pln": ["(: cnet_isa_199405e6ab (IsA all_king male) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "all_people is different", "pln": ["(: cnet_isa_66b9d2b48d (IsA all_people different) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "all_people is human", "pln": ["(: cnet_isa_4ea038d8b5 (IsA all_people human) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "all_planet is round", "pln": ["(: cnet_isa_b42a70e264 (IsA all_planet round) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alto is lower_than_soprano", "pln": ["(: cnet_isa_0b8a848d8c (IsA alto lower_than_soprano) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "and_chewing_tobacco is disgusting", "pln": ["(: cnet_isa_6105f2ec74 (IsA and_chewing_tobacco disgusting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animal is alive", "pln": ["(: cnet_isa_a7bba99b46 (IsA animal alive) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animal is edible", "pln": ["(: cnet_isa_0a5a460e1a (IsA animal edible) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "answer_to_everything is 42", "pln": ["(: cnet_isa_769a9ce079 (IsA answer_to_everything 42) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ant is very_strong", "pln": ["(: cnet_isa_ed13240898 (IsA ant very_strong) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appearance is deceptive", "pln": ["(: cnet_isa_46b8fc05c1 (IsA appearance deceptive) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apple is green", "pln": ["(: cnet_isa_7f0d05fbec (IsA apple green) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "apple is red", "pln": ["(: cnet_isa_b56ae45523 (IsA apple red) (STV 1.0 0.9796))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "apples is crisp", "pln": ["(: cnet_isa_4a3240271f (IsA apples crisp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "atoms is very_small", "pln": ["(: cnet_isa_e52c664f7a (IsA atoms very_small) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apple is crisp", "pln": ["(: cnet_isa_822176dec6 (IsA apple crisp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apple is good_for", "pln": ["(: cnet_isa_48886f24bf (IsA apple good_for) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apple is good_to_eat", "pln": ["(: cnet_isa_c8e8ffdb7d (IsA apple good_to_eat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apple is yellow", "pln": ["(: cnet_isa_f39cf28078 (IsA apple yellow) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arson is sad", "pln": ["(: cnet_isa_e77216acc5 (IsA arson sad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "art is beautiful", "pln": ["(: cnet_isa_97cbd3928d (IsA art beautiful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atom is very_very_small", "pln": ["(: cnet_isa_b60a6b15ed (IsA atom very_very_small) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atom is very_small", "pln": ["(: cnet_isa_6db5f5d444 (IsA atom very_small) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ax is useful_for_chopping_wood", "pln": ["(: cnet_isa_9741cf799c (IsA ax useful_for_chopping_wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "axe is sharp", "pln": ["(: cnet_isa_3af641257b (IsA axe sharp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bacteria is harmful", "pln": ["(: cnet_isa_161c7eed55 (IsA bacteria harmful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bagel is boiled_and_then_baked", "pln": ["(: cnet_isa_61bd0b16d4 (IsA bagel boiled_and_then_baked) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baking_oven is hot", "pln": ["(: cnet_isa_21e22bf69c (IsA baking_oven hot) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ball is circular", "pln": ["(: cnet_isa_57dc88f234 (IsA ball circular) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ball is rolling_down_street", "pln": ["(: cnet_isa_c9e4b9f380 (IsA ball rolling_down_street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ball is round", "pln": ["(: cnet_isa_ed1c99a18a (IsA ball round) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "bananas is yellow", "pln": ["(: cnet_isa_2f4912b59f (IsA bananas yellow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ball is round_and_fun_to_bounce", "pln": ["(: cnet_isa_bec7e3dfd0 (IsA ball round_and_fun_to_bounce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ball_often is round", "pln": ["(: cnet_isa_5db5bdbbc2 (IsA ball_often round) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balloon is colorful", "pln": ["(: cnet_isa_185e9806f1 (IsA balloon colorful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banana is yellow", "pln": ["(: cnet_isa_3e2d5877ba (IsA banana yellow) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banana is rich_in_potassium", "pln": ["(: cnet_isa_dadf58db2f (IsA banana rich_in_potassium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bank is near_parking", "pln": ["(: cnet_isa_29f93a4d7e (IsA bank near_parking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseball is fun_to_play", "pln": ["(: cnet_isa_b81fa2bab4 (IsA baseball fun_to_play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseball is hard", "pln": ["(: cnet_isa_df6e8e6a9b (IsA baseball hard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseball is round", "pln": ["(: cnet_isa_d332000414 (IsA baseball round) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "basketball is full_of_air", "pln": ["(: cnet_isa_264542759c (IsA basketball full_of_air) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basketball is one_form_of_exercise", "pln": ["(: cnet_isa_1bc5020ef1 (IsA basketball one_form_of_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basketball is round", "pln": ["(: cnet_isa_2d264d211b (IsA basketball round) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bbq is short_for_barbeque", "pln": ["(: cnet_isa_e5b97260b1 (IsA bbq short_for_barbeque) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beache is sandy", "pln": ["(: cnet_isa_cfe4d81932 (IsA beache sandy) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bed is flat", "pln": ["(: cnet_isa_67e966acc5 (IsA bed flat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bedroom is one_part_of_house", "pln": ["(: cnet_isa_8661401c94 (IsA bedroom one_part_of_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beer is harmful", "pln": ["(: cnet_isa_586fba3755 (IsA beer harmful) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beer is liquid", "pln": ["(: cnet_isa_deab5ad772 (IsA beer liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "being_hurt is crappy", "pln": ["(: cnet_isa_8fcb19f09d (IsA being_hurt crappy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "big_cat is dangerous", "pln": ["(: cnet_isa_890a8d893f (IsA big_cat dangerous) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biking is fun", "pln": ["(: cnet_isa_fb5fd6471e (IsA biking fun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biking is good_for_health", "pln": ["(: cnet_isa_ea9c3d93b3 (IsA biking good_for_health) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bird is singing", "pln": ["(: cnet_isa_1bde770671 (IsA bird singing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bird is very_colorful", "pln": ["(: cnet_isa_3a8a8a06bb (IsA bird very_colorful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blow_job is fun", "pln": ["(: cnet_isa_d0c93d65f8 (IsA blow_job fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boiling_water is hot", "pln": ["(: cnet_isa_76e64bc402 (IsA boiling_water hot) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bomb is dangerous", "pln": ["(: cnet_isa_67815b2465 (IsA bomb dangerous) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bomb is very_destructive", "pln": ["(: cnet_isa_7fd845f9d8 (IsA bomb very_destructive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bond_between_mother_and_child is strong", "pln": ["(: cnet_isa_8c7cfe6c4a (IsA bond_between_mother_and_child strong) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bone is hard", "pln": ["(: cnet_isa_04d2015207 (IsA bone hard) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bone is like_ceramic", "pln": ["(: cnet_isa_d19cda3c76 (IsA bone like_ceramic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bone is rigid", "pln": ["(: cnet_isa_de8832f135 (IsA bone rigid) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bone is stiff", "pln": ["(: cnet_isa_7be9385be9 (IsA bone stiff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bone is strong", "pln": ["(: cnet_isa_1a10e15e7a (IsA bone strong) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "book is up_on_top_shelf", "pln": ["(: cnet_isa_3b84a1de00 (IsA book up_on_top_shelf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "book is entertaining", "pln": ["(: cnet_isa_16d6e8a4c1 (IsA book entertaining) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "book is full_of_writing", "pln": ["(: cnet_isa_9e0f15732b (IsA book full_of_writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boredom is avoidable", "pln": ["(: cnet_isa_e950236cff (IsA boredom avoidable) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boredom is bad", "pln": ["(: cnet_isa_ef5b2f295d (IsA boredom bad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "both_cardboard_and_can is recyclable", "pln": ["(: cnet_isa_210c75ed32 (IsA both_cardboard_and_can recyclable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brain is complex_in_function", "pln": ["(: cnet_isa_8635ff14dc (IsA brain complex_in_function) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brain is complex", "pln": ["(: cnet_isa_6baf959ea5 (IsA brain complex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brick is hard", "pln": ["(: cnet_isa_3ba89806b3 (IsA brick hard) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bristle is stiff", "pln": ["(: cnet_isa_31104c51fc (IsA bristle stiff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broken_glass is sharp", "pln": ["(: cnet_isa_b153cc2a0c (IsA broken_glass sharp) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "building is man_made", "pln": ["(: cnet_isa_7eb2cc179b (IsA building man_made) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bungee_jumping is scary", "pln": ["(: cnet_isa_e71d56ea0a (IsA bungee_jumping scary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burnt_skin is painful", "pln": ["(: cnet_isa_5ccf8047b7 (IsA burnt_skin painful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "business is opening_early", "pln": ["(: cnet_isa_8a2b6bb976 (IsA business opening_early) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butter is pale_yellow", "pln": ["(: cnet_isa_39987f20e4 (IsA butter pale_yellow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butter is soft", "pln": ["(: cnet_isa_f7c97ac25f (IsA butter soft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butter is yellow", "pln": ["(: cnet_isa_ced706d989 (IsA butter yellow) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cake is good_for_dessert", "pln": ["(: cnet_isa_6c33cda8c7 (IsA cake good_for_dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cake is sweet", "pln": ["(: cnet_isa_2da62dd1a0 (IsA cake sweet) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calculus is difficult", "pln": ["(: cnet_isa_bf8531a022 (IsA calculus difficult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camping is fun", "pln": ["(: cnet_isa_a2505d148e (IsA camping fun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canada is cold", "pln": ["(: cnet_isa_937d4736f5 (IsA canada cold) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canada is north_of_united_state", "pln": ["(: cnet_isa_3c026d5e24 (IsA canada north_of_united_state) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cancer is bad", "pln": ["(: cnet_isa_2d61964212 (IsA cancer bad) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cannabis is good", "pln": ["(: cnet_isa_72d4fb105a (IsA cannabis good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cannibalism is wrong", "pln": ["(: cnet_isa_c56e02ad0c (IsA cannibalism wrong) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "can is colored", "pln": ["(: cnet_isa_1ecfb76df2 (IsA can colored) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "can is recyclable", "pln": ["(: cnet_isa_5a32e4f4f9 (IsA can recyclable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capital_of_united_kingdom is london", "pln": ["(: cnet_isa_eb5c915536 (IsA capital_of_united_kingdom london) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "car is heavy", "pln": ["(: cnet_isa_2581e9e507 (IsA car heavy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "cats is hairy", "pln": ["(: cnet_isa_d59ca1eb21 (IsA cats hairy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car is red", "pln": ["(: cnet_isa_bf9dd867c2 (IsA car red) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car is turning_into_driveway", "pln": ["(: cnet_isa_fd0ca6f0cb (IsA car turning_into_driveway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbonated_drink is bubbly", "pln": ["(: cnet_isa_263faff1f8 (IsA carbonated_drink bubbly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carrot is only_one_kind_of_root_vegetable", "pln": ["(: cnet_isa_3f750c9b18 (IsA carrot only_one_kind_of_root_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carrot is orange", "pln": ["(: cnet_isa_c07ebb713f (IsA carrot orange) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car is expensive", "pln": ["(: cnet_isa_309cf576a3 (IsA car expensive) (STV 1.0 0.9748))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car is very_heavy", "pln": ["(: cnet_isa_5464851448 (IsA car very_heavy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cat is feline", "pln": ["(: cnet_isa_6e2c40bcfa (IsA cat feline) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cat is hungry", "pln": ["(: cnet_isa_a0a7571f7a (IsA cat hungry) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cat is black", "pln": ["(: cnet_isa_fa21daffe5 (IsA cat black) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cat is gentle", "pln": ["(: cnet_isa_93586cc13c (IsA cat gentle) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cat is hairy", "pln": ["(: cnet_isa_8bd6c36166 (IsA cat hairy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cat_purr_when is happy", "pln": ["(: cnet_isa_b57abadc8e (IsA cat_purr_when happy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catwalk is narrow", "pln": ["(: cnet_isa_ba9608505d (IsA catwalk narrow) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cds is round", "pln": ["(: cnet_isa_9b242f48b7 (IsA cds round) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chalkboard is re_used_countless_of_time", "pln": ["(: cnet_isa_afccdd0682 (IsA chalkboard re_used_countless_of_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheddar_cheese is orange", "pln": ["(: cnet_isa_920b64209d (IsA cheddar_cheese orange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemical_symbol_of_carbon is c", "pln": ["(: cnet_isa_426a6c65ab (IsA chemical_symbol_of_carbon c) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemical_symbol_of_oxygen is o", "pln": ["(: cnet_isa_97b93fdbfb (IsA chemical_symbol_of_oxygen o) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemical is toxic", "pln": ["(: cnet_isa_dd38bd80b7 (IsA chemical toxic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chess_board is square", "pln": ["(: cnet_isa_c6322230f1 (IsA chess_board square) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chess_pawn is expendable", "pln": ["(: cnet_isa_65736e7099 (IsA chess_pawn expendable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "child is playful", "pln": ["(: cnet_isa_1305e5d844 (IsA child playful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "children is curious", "pln": ["(: cnet_isa_3b326d671a (IsA children curious) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "children is cute", "pln": ["(: cnet_isa_33665d8280 (IsA children cute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "children is innocent", "pln": ["(: cnet_isa_07f8176e04 (IsA children innocent) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "children is noisy", "pln": ["(: cnet_isa_57a60413ea (IsA children noisy) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chili_pepper is spicy", "pln": ["(: cnet_isa_41e2324966 (IsA chili_pepper spicy) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinese_food is spicy", "pln": ["(: cnet_isa_a1e43ee6ea (IsA chinese_food spicy) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christian is religious", "pln": ["(: cnet_isa_9507afd3ca (IsA christian religious) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christma is celebrated_by_christian", "pln": ["(: cnet_isa_6f94ebe0f4 (IsA christma celebrated_by_christian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cigarette is bad_for", "pln": ["(: cnet_isa_f97b1ce05a (IsA cigarette bad_for) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cigarette is unhealthy", "pln": ["(: cnet_isa_3eec8cb5c9 (IsA cigarette unhealthy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circle is round", "pln": ["(: cnet_isa_f6a078f025 (IsA circle round) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "classical_music is relaxing", "pln": ["(: cnet_isa_73b14f9f4e (IsA classical_music relaxing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clean_clothe is good", "pln": ["(: cnet_isa_4e20f3aa41 (IsA clean_clothe good) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cleaning_window is boring", "pln": ["(: cnet_isa_a07caf8293 (IsA cleaning_window boring) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cleanliness is next_to_godliness", "pln": ["(: cnet_isa_24bf30953b (IsA cleanliness next_to_godliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clock is analog_or_digital", "pln": ["(: cnet_isa_59290ceb69 (IsA clock analog_or_digital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clown_fish is immune_to_sting_of_anemone", "pln": ["(: cnet_isa_f4e712721a (IsA clown_fish immune_to_sting_of_anemone) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coat_hanger is for_hanging_up_clothe", "pln": ["(: cnet_isa_479acc21ef (IsA coat_hanger for_hanging_up_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocain is illegal", "pln": ["(: cnet_isa_8705b0d961 (IsA cocain illegal) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocaine is addictive", "pln": ["(: cnet_isa_6ab94a65cc (IsA cocaine addictive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffee is good_in_morning", "pln": ["(: cnet_isa_9491288e32 (IsA coffee good_in_morning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coffee is served_hot", "pln": ["(: cnet_isa_93ef094c6b (IsA coffee served_hot) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "cookies is sweet", "pln": ["(: cnet_isa_aeb018e140 (IsA cookies sweet) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "color_of_grass is green", "pln": ["(: cnet_isa_b50b5e34bb (IsA color_of_grass green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "column is vertical", "pln": ["(: cnet_isa_a3d1939f66 (IsA column vertical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commiting_genocide is bad", "pln": ["(: cnet_isa_0b3da1c85e (IsA commiting_genocide bad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common_sense is good", "pln": ["(: cnet_isa_8060b5d702 (IsA common_sense good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common_sense is uncommon", "pln": ["(: cnet_isa_ee50c00290 (IsA common_sense uncommon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compact_disc is round", "pln": ["(: cnet_isa_688e8543d1 (IsA compact_disc round) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compact_disk is rigid", "pln": ["(: cnet_isa_61ee4d33e8 (IsA compact_disk rigid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compost is useful_for_recycling", "pln": ["(: cnet_isa_7655e37d20 (IsA compost useful_for_recycling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comprehensive_test_ban_treaty is abbreviated_to_ctbt", "pln": ["(: cnet_isa_a22b74df1a (IsA comprehensive_test_ban_treaty abbreviated_to_ctbt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer is expensive", "pln": ["(: cnet_isa_47359872b1 (IsA computer expensive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer is more_complex_than_pencil", "pln": ["(: cnet_isa_4a66d2b086 (IsA computer more_complex_than_pencil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer_game is fun", "pln": ["(: cnet_isa_2c4b1a319e (IsA computer_game fun) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer_programming is difficult", "pln": ["(: cnet_isa_e0d2f78b01 (IsA computer_programming difficult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer_virus is dangerous", "pln": ["(: cnet_isa_e70533f7b4 (IsA computer_virus dangerous) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer is fun", "pln": ["(: cnet_isa_b2396f5539 (IsA computer fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concert is very_loud", "pln": ["(: cnet_isa_7a7558c56b (IsA concert very_loud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conservative is right_wing", "pln": ["(: cnet_isa_2a4b4491a2 (IsA conservative right_wing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "constipation is unhealthy", "pln": ["(: cnet_isa_825c44a587 (IsA constipation unhealthy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cooky is sweet", "pln": ["(: cnet_isa_90dc5766f8 (IsA cooky sweet) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "country_of_canada is north_of_united_state", "pln": ["(: cnet_isa_53aca321da (IsA country_of_canada north_of_united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "couple is two", "pln": ["(: cnet_isa_b823dbe438 (IsA couple two) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "couple is happy", "pln": ["(: cnet_isa_377d5aa1f0 (IsA couple happy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "court_cas is classified_as_criminal_cas", "pln": ["(: cnet_isa_e471106427 (IsA court_cas classified_as_criminal_cas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cow is innocent", "pln": ["(: cnet_isa_a5d9ab5d1f (IsA cow innocent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cruelty is bad", "pln": ["(: cnet_isa_2140051211 (IsA cruelty bad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cry_of_child is bad", "pln": ["(: cnet_isa_175fc92366 (IsA cry_of_child bad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cube is six_sided", "pln": ["(: cnet_isa_6926cc62b4 (IsA cube six_sided) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curry is spicy", "pln": ["(: cnet_isa_c8f49cf0ef (IsA curry spicy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutting_artichoke is best_done_with_serrated_knife", "pln": ["(: cnet_isa_0d9c8547c4 (IsA cutting_artichoke best_done_with_serrated_knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dandelion is edible", "pln": ["(: cnet_isa_0ccb08d1b6 (IsA dandelion edible) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dartboard is round", "pln": ["(: cnet_isa_237799d8ae (IsA dartboard round) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "day is bright", "pln": ["(: cnet_isa_6d9ac470aa (IsA day bright) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "death is inevitable", "pln": ["(: cnet_isa_3b9dcc89ea (IsA death inevitable) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "democrat is left_wing", "pln": ["(: cnet_isa_e64bd56f8d (IsA democrat left_wing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depression is depressing", "pln": ["(: cnet_isa_9100964d4d (IsA depression depressing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desert is dry", "pln": ["(: cnet_isa_bd1263d3ae (IsA desert dry) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "design is floral", "pln": ["(: cnet_isa_ad6375d8d7 (IsA design floral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "diamond is clear", "pln": ["(: cnet_isa_5f591a2622 (IsA diamond clear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "diseases is contagious", "pln": ["(: cnet_isa_6e4496a759 (IsA diseases contagious) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diamond is harder_than_glass", "pln": ["(: cnet_isa_6c2e04e732 (IsA diamond harder_than_glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diamond is expensive", "pln": ["(: cnet_isa_222a7c96c0 (IsA diamond expensive) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diamond is pretty", "pln": ["(: cnet_isa_79350ffe46 (IsA diamond pretty) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diamond is rare", "pln": ["(: cnet_isa_d0463f07c9 (IsA diamond rare) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disaster is bad", "pln": ["(: cnet_isa_b50cafaa5e (IsA disaster bad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diseas is contagious", "pln": ["(: cnet_isa_a198e02d8c (IsA diseas contagious) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disk is round", "pln": ["(: cnet_isa_2f376ad825 (IsA disk round) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divided_by_zero is infinite", "pln": ["(: cnet_isa_9b5b49c930 (IsA divided_by_zero infinite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dna is short_for_deoxyribonucleic_acid", "pln": ["(: cnet_isa_a6c4b835dc (IsA dna short_for_deoxyribonucleic_acid) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doctor is well_respected", "pln": ["(: cnet_isa_e8de69821a (IsA doctor well_respected) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doctor_can_study_whether_drug is effective", "pln": ["(: cnet_isa_b9edbef235 (IsA doctor_can_study_whether_drug effective) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dodo is extinct", "pln": ["(: cnet_isa_04d151ccf1 (IsA dodo extinct) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doesn_t is short_for_doe_not", "pln": ["(: cnet_isa_1d655fd9c5 (IsA doesn_t short_for_doe_not) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog is black", "pln": ["(: cnet_isa_2ca6f301b2 (IsA dog black) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog is fun", "pln": ["(: cnet_isa_63cedda3ea (IsA dog fun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog is faithful", "pln": ["(: cnet_isa_e0420685a5 (IsA dog faithful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog is found_outside", "pln": ["(: cnet_isa_f533d90795 (IsA dog found_outside) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog is friendly", "pln": ["(: cnet_isa_2fe6b89061 (IsA dog friendly) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog is very_loyal", "pln": ["(: cnet_isa_5a253a1ca5 (IsA dog very_loyal) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog is very_smart", "pln": ["(: cnet_isa_6db8a6f946 (IsA dog very_smart) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog_howl_when is sad", "pln": ["(: cnet_isa_ff9d5bf83f (IsA dog_howl_when sad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dolphin is similar_in_size_to_human", "pln": ["(: cnet_isa_5f62791147 (IsA dolphin similar_in_size_to_human) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "domain_name_system is abbreviated_to_dns", "pln": ["(: cnet_isa_00093ed3f8 (IsA domain_name_system abbreviated_to_dns) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drawstring_bag is open_or_closed", "pln": ["(: cnet_isa_36c03e2022 (IsA drawstring_bag open_or_closed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dream_occur_when is asleep", "pln": ["(: cnet_isa_fb6fd26530 (IsA dream_occur_when asleep) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dried_tortilla is rigid", "pln": ["(: cnet_isa_64fd2d943d (IsA dried_tortilla rigid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drinking_alcohol_and_then_driving is bad", "pln": ["(: cnet_isa_ecd0a8c068 (IsA drinking_alcohol_and_then_driving bad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "driving is dangerous", "pln": ["(: cnet_isa_f859ab2548 (IsA driving dangerous) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "driving is deadly", "pln": ["(: cnet_isa_92eac0fb55 (IsA driving deadly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dung is term_for_shit", "pln": ["(: cnet_isa_0af5885b1a (IsA dung term_for_shit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "each_person is unique", "pln": ["(: cnet_isa_85150d8011 (IsA each_person unique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earth is finite", "pln": ["(: cnet_isa_a876bb1685 (IsA earth finite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earth is round_like_ball", "pln": ["(: cnet_isa_288b66c9ba (IsA earth round_like_ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earth is spherical", "pln": ["(: cnet_isa_01c4c7bc79 (IsA earth spherical) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earth_core is molten_rock", "pln": ["(: cnet_isa_119d002ebc (IsA earth_core molten_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eating is satisfying", "pln": ["(: cnet_isa_b60165bc1a (IsA eating satisfying) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eating_fast_food is unhealthy", "pln": ["(: cnet_isa_ea87cac7c9 (IsA eating_fast_food unhealthy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egg is round", "pln": ["(: cnet_isa_df16d1773e (IsA egg round) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egg is good_for_food", "pln": ["(: cnet_isa_457880bc00 (IsA egg good_for_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egg is high_in_cholesterol", "pln": ["(: cnet_isa_7eb44bd72f (IsA egg high_in_cholesterol) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eiffel_tower is tall", "pln": ["(: cnet_isa_347451cea8 (IsA eiffel_tower tall) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eighth_month_of_year is august", "pln": ["(: cnet_isa_52d925d126 (IsA eighth_month_of_year august) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electricity is dangerous", "pln": ["(: cnet_isa_2ba9d56a9b (IsA electricity dangerous) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elephant is very_big", "pln": ["(: cnet_isa_3123a7a381 (IsA elephant very_big) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elmer_s_glue is white", "pln": ["(: cnet_isa_c72696fb16 (IsA elmer_s_glue white) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "elvis is dead", "pln": ["(: cnet_isa_090ed90e5c (IsA elvis dead) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emerald is green", "pln": ["(: cnet_isa_4394a0cf96 (IsA emerald green) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emotion is pleasant", "pln": ["(: cnet_isa_7f41173531 (IsA emotion pleasant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enthusiasm is contagious", "pln": ["(: cnet_isa_57b50b871c (IsA enthusiasm contagious) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epileptic_fit is involuntary", "pln": ["(: cnet_isa_1cf6c320e9 (IsA epileptic_fit involuntary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equality_for_everyone is good", "pln": ["(: cnet_isa_ee13742cdd (IsA equality_for_everyone good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erection is pleasurable", "pln": ["(: cnet_isa_63ac1f0f24 (IsA erection pleasurable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "esperanto is easy_to_learn_for_european", "pln": ["(: cnet_isa_fad46fd0d8 (IsA esperanto easy_to_learn_for_european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "every_person is unique", "pln": ["(: cnet_isa_5f10c90f5f (IsA every_person unique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "every_snowflake is unique", "pln": ["(: cnet_isa_fead08f862 (IsA every_snowflake unique) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "everyone is afraid_of", "pln": ["(: cnet_isa_434c11a8fc (IsA everyone afraid_of) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "everyone is different", "pln": ["(: cnet_isa_c0302e7641 (IsA everyone different) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "everything_know is wrong", "pln": ["(: cnet_isa_ac4c4ab6f4 (IsA everything_know wrong) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evil is bad", "pln": ["(: cnet_isa_260d6ba7af (IsA evil bad) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ex_girlfriend is annoying", "pln": ["(: cnet_isa_79830fe549 (IsA ex_girlfriend annoying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "examination_table is hard", "pln": ["(: cnet_isa_e9dff136a0 (IsA examination_table hard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "excercise is good", "pln": ["(: cnet_isa_4a9638de5c (IsA excercise good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "excess is bad", "pln": ["(: cnet_isa_bca3e598a3 (IsA excess bad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "exercise is fun", "pln": ["(: cnet_isa_b3d099d569 (IsA exercise fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "eyes is brown", "pln": ["(: cnet_isa_40c9cd9453 (IsA eyes brown) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "eyes is green", "pln": ["(: cnet_isa_cc8e8f7537 (IsA eyes green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "floppy_disks is obsolete", "pln": ["(: cnet_isa_5f081ebe4f (IsA floppy_disks obsolete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exercise is good_for_body", "pln": ["(: cnet_isa_23a87c9862 (IsA exercise good_for_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exercise is very_good_for", "pln": ["(: cnet_isa_58d906e1f1 (IsA exercise very_good_for) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "explosive is dangerous", "pln": ["(: cnet_isa_31afca157b (IsA explosive dangerous) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eye is blue", "pln": ["(: cnet_isa_376191c490 (IsA eye blue) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eye is brown", "pln": ["(: cnet_isa_6e001925a2 (IsA eye brown) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eye is green", "pln": ["(: cnet_isa_af55a61810 (IsA eye green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fact is true", "pln": ["(: cnet_isa_d9a0439e4e (IsA fact true) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "family is nice", "pln": ["(: cnet_isa_2426aa61b2 (IsA family nice) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fan is weird", "pln": ["(: cnet_isa_38d163ccc1 (IsA fan weird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fart is smelly", "pln": ["(: cnet_isa_deccfe6f58 (IsA fart smelly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feather is light", "pln": ["(: cnet_isa_41b41c6d5f (IsA feather light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feline is lazy", "pln": ["(: cnet_isa_3f369256d9 (IsA feline lazy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find_outside is dirt", "pln": ["(: cnet_isa_875f72179c (IsA find_outside dirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find_outside is nature", "pln": ["(: cnet_isa_39fce61fcf (IsA find_outside nature) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find_underground is rock", "pln": ["(: cnet_isa_322c5b9dca (IsA find_underground rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find_underground is water", "pln": ["(: cnet_isa_955e528be1 (IsA find_underground water) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find_underwater is coral", "pln": ["(: cnet_isa_53397aba2a (IsA find_underwater coral) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find_underwater is water", "pln": ["(: cnet_isa_1ed23729fe (IsA find_underwater water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finishing_job is satisfying", "pln": ["(: cnet_isa_bd8e14f162 (IsA finishing_job satisfying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire is hot", "pln": ["(: cnet_isa_dca0c6a034 (IsA fire hot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire is useful", "pln": ["(: cnet_isa_0482e69381 (IsA fire useful) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire is very_useful", "pln": ["(: cnet_isa_5083152778 (IsA fire very_useful) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fish is eaten_raw", "pln": ["(: cnet_isa_645f0c0417 (IsA fish eaten_raw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fish is striped", "pln": ["(: cnet_isa_f0b6aa0a71 (IsA fish striped) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flagrant_crime is scandalous", "pln": ["(: cnet_isa_a9c8398e25 (IsA flagrant_crime scandalous) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flame is hot", "pln": ["(: cnet_isa_0f0d58fb9a (IsA flame hot) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floor is flat", "pln": ["(: cnet_isa_35b8b5b8f6 (IsA floor flat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floppy_disk is obsolete", "pln": ["(: cnet_isa_1ba71819c1 (IsA floppy_disk obsolete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floss is wound_up_in_dispenser", "pln": ["(: cnet_isa_d327cb6fcd (IsA floss wound_up_in_dispenser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flower is alive", "pln": ["(: cnet_isa_3bd69c2a87 (IsA flower alive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flower is fragrant", "pln": ["(: cnet_isa_af20b6ba66 (IsA flower fragrant) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flower is pink", "pln": ["(: cnet_isa_a13253063a (IsA flower pink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flower is red", "pln": ["(: cnet_isa_d5bb306b1d (IsA flower red) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flower is yellow", "pln": ["(: cnet_isa_588f82219e (IsA flower yellow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fly is small", "pln": ["(: cnet_isa_71cc23e647 (IsA fly small) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "food is edible", "pln": ["(: cnet_isa_28bde782e5 (IsA food edible) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "food is necessary_to_live", "pln": ["(: cnet_isa_8e7a8ec73e (IsA food necessary_to_live) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "food is unhealthy", "pln": ["(: cnet_isa_62dabaa8f5 (IsA food unhealthy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fortune_in_cooky is just_for_fun", "pln": ["(: cnet_isa_892c78a225 (IsA fortune_in_cooky just_for_fun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frisbee is round", "pln": ["(: cnet_isa_0565989143 (IsA frisbee round) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frog is green", "pln": ["(: cnet_isa_ffee5e42c3 (IsA frog green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frozen_water is ice", "pln": ["(: cnet_isa_776f9cde35 (IsA frozen_water ice) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruit is good_for", "pln": ["(: cnet_isa_9a066c3852 (IsA fruit good_for) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruit is good_for_health", "pln": ["(: cnet_isa_3ab2dd8c2b (IsA fruit good_for_health) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruit is sour", "pln": ["(: cnet_isa_62633ac295 (IsA fruit sour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruit is edible", "pln": ["(: cnet_isa_2544f46999 (IsA fruit edible) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruit is good_to_eat", "pln": ["(: cnet_isa_640463f496 (IsA fruit good_to_eat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fun is enjoyable", "pln": ["(: cnet_isa_b54374e871 (IsA fun enjoyable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fungus_gnat is annoying", "pln": ["(: cnet_isa_a4c2131c9b (IsA fungus_gnat annoying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "game is fun_to_play", "pln": ["(: cnet_isa_33d7c2b6fa (IsA game fun_to_play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "game is played_outside", "pln": ["(: cnet_isa_9256bb9b14 (IsA game played_outside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas is short_for_gasoline", "pln": ["(: cnet_isa_d586521f05 (IsA gas short_for_gasoline) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gasoline is flammable", "pln": ["(: cnet_isa_bec8ec28a0 (IsA gasoline flammable) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gel is sticky", "pln": ["(: cnet_isa_c9d3cadd27 (IsA gel sticky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genital is very_entertaining", "pln": ["(: cnet_isa_207dbaadea (IsA genital very_entertaining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gentelman is male", "pln": ["(: cnet_isa_4ffe65a334 (IsA gentelman male) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "georgia is south_of_south_carolina", "pln": ["(: cnet_isa_f4a3543663 (IsA georgia south_of_south_carolina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "german_shepard_puppy is very_cute", "pln": ["(: cnet_isa_2e2986e23f (IsA german_shepard_puppy very_cute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "getting_hired is good", "pln": ["(: cnet_isa_0b68a291c3 (IsA getting_hired good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "getting_stabbed_with_knife is sharp", "pln": ["(: cnet_isa_a3571d9083 (IsA getting_stabbed_with_knife sharp) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gift is free", "pln": ["(: cnet_isa_7844a2e540 (IsA gift free) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giraffe is male", "pln": ["(: cnet_isa_a52a2cc745 (IsA giraffe male) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giraffe is native_to_africa", "pln": ["(: cnet_isa_bf71f59239 (IsA giraffe native_to_africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glass is clean", "pln": ["(: cnet_isa_29fa714f39 (IsA glass clean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glass is clear", "pln": ["(: cnet_isa_9e07b23dd2 (IsA glass clear) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glass is dirty", "pln": ["(: cnet_isa_a466ec813e (IsA glass dirty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glass is half_empty", "pln": ["(: cnet_isa_9261367f7e (IsA glass half_empty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glass is recyclable", "pln": ["(: cnet_isa_d388ba0a8b (IsA glass recyclable) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glass is very_fragile", "pln": ["(: cnet_isa_53635672ac (IsA glass very_fragile) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "globe is round", "pln": ["(: cnet_isa_fcd6f444f6 (IsA globe round) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glue is sticky", "pln": ["(: cnet_isa_7f38b68455 (IsA glue sticky) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "god is forgiving", "pln": ["(: cnet_isa_fe4fdb7ee5 (IsA god forgiving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "god is glorified_in_christianity", "pln": ["(: cnet_isa_5123ae654e (IsA god glorified_in_christianity) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golfing is expensive", "pln": ["(: cnet_isa_683ea4722f (IsA golfing expensive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good_manner is important", "pln": ["(: cnet_isa_dd964a72c7 (IsA good_manner important) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "government is corrupt", "pln": ["(: cnet_isa_f9ff6a1c51 (IsA government corrupt) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "guns is dangerous", "pln": ["(: cnet_isa_71ff8e5ead (IsA guns dangerous) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grain_of_sand is very_small", "pln": ["(: cnet_isa_0a06799956 (IsA grain_of_sand very_small) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gross_domestic_product is abbreviated_to_gdp", "pln": ["(: cnet_isa_670e6a63b6 (IsA gross_domestic_product abbreviated_to_gdp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groucho_marx is dead", "pln": ["(: cnet_isa_dec12539cd (IsA groucho_marx dead) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gunfire is lethal", "pln": ["(: cnet_isa_4dc09c2190 (IsA gunfire lethal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gun is dangerous", "pln": ["(: cnet_isa_96f6f0cc00 (IsA gun dangerous) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gun is very_dangerous", "pln": ["(: cnet_isa_00b2d1e00c (IsA gun very_dangerous) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gymnastic is good_for_body", "pln": ["(: cnet_isa_6c3a9d8014 (IsA gymnastic good_for_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hair is long_or_short", "pln": ["(: cnet_isa_768b4fa385 (IsA hair long_or_short) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "hallways is dark", "pln": ["(: cnet_isa_47daa32e38 (IsA hallways dark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hair is only_on_mammal", "pln": ["(: cnet_isa_88bfd25441 (IsA hair only_on_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hair is very_thin", "pln": ["(: cnet_isa_c096bd8eb9 (IsA hair very_thin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haircutting_scissor is very_sharp", "pln": ["(: cnet_isa_88b496d243 (IsA haircutting_scissor very_sharp) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hallway is dark", "pln": ["(: cnet_isa_72e1785e12 (IsA hallway dark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hammer is hard", "pln": ["(: cnet_isa_f8b7b68d6e (IsA hammer hard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handle is for_gripping", "pln": ["(: cnet_isa_91e1694161 (IsA handle for_gripping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand is very_useful", "pln": ["(: cnet_isa_8c527e1aec (IsA hand very_useful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard_packed_snow is slippery", "pln": ["(: cnet_isa_dded2c9d5a (IsA hard_packed_snow slippery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hardhat is red", "pln": ["(: cnet_isa_6da4269f4a (IsA hardhat red) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harmonica is annoying", "pln": ["(: cnet_isa_f86c148ef2 (IsA harmonica annoying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harry_potter is fictional", "pln": ["(: cnet_isa_9eb3d6d988 (IsA harry_potter fictional) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harsh_sound is annoying", "pln": ["(: cnet_isa_d0ed0f9ad7 (IsA harsh_sound annoying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hat is just_for_fun", "pln": ["(: cnet_isa_8a855710f2 (IsA hat just_for_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "having_fight is dangerous", "pln": ["(: cnet_isa_e5c14adae4 (IsA having_fight dangerous) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "having_period is cramping", "pln": ["(: cnet_isa_1080ffe931 (IsA having_period cramping) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "healthy_grass is green", "pln": ["(: cnet_isa_ec582ef888 (IsA healthy_grass green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high_blood_pressure is bad", "pln": ["(: cnet_isa_eb766d2dbf (IsA high_blood_pressure bad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hitler is pure_evil", "pln": ["(: cnet_isa_3e58364f86 (IsA hitler pure_evil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hitting_another_person is bad", "pln": ["(: cnet_isa_0e978a07e2 (IsA hitting_another_person bad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horseback_riding is fun", "pln": ["(: cnet_isa_635fd54fe6 (IsA horseback_riding fun) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hors is fast", "pln": ["(: cnet_isa_1b0e498c1a (IsA hors fast) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hors is very_good_at_jumping", "pln": ["(: cnet_isa_0eb450e7a2 (IsA hors very_good_at_jumping) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot_air is less_dense_than_cold_air", "pln": ["(: cnet_isa_4eff00e42d (IsA hot_air less_dense_than_cold_air) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot_dog is bad_for", "pln": ["(: cnet_isa_e15464a829 (IsA hot_dog bad_for) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "housework is boring", "pln": ["(: cnet_isa_611778c5d0 (IsA housework boring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "huddersfield is urban", "pln": ["(: cnet_isa_4066d4c47b (IsA huddersfield urban) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "human is good", "pln": ["(: cnet_isa_32fd6ec9e5 (IsA human good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "human_eye is very_delicate", "pln": ["(: cnet_isa_91bc259424 (IsA human_eye very_delicate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "human is bald", "pln": ["(: cnet_isa_5572346e18 (IsA human bald) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "human is emotional", "pln": ["(: cnet_isa_b9b86e4e55 (IsA human emotional) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "human is male", "pln": ["(: cnet_isa_e26eab409c (IsA human male) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "human is male_or_female", "pln": ["(: cnet_isa_b9da3b7539 (IsA human male_or_female) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "human is selfish", "pln": ["(: cnet_isa_571e5e30b6 (IsA human selfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "human is very_adaptable", "pln": ["(: cnet_isa_a47222667d (IsA human very_adaptable) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "human is warm_blooded", "pln": ["(: cnet_isa_da405c2c2c (IsA human warm_blooded) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humor is subjective", "pln": ["(: cnet_isa_88412c0e2d (IsA humor subjective) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunger is painful", "pln": ["(: cnet_isa_11fb035fde (IsA hunger painful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hurting_other_people is bad", "pln": ["(: cnet_isa_fb60b2f137 (IsA hurting_other_people bad) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hurting_yourself is bad", "pln": ["(: cnet_isa_4b58797918 (IsA hurting_yourself bad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ice is hard", "pln": ["(: cnet_isa_0bfaf7caac (IsA ice hard) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice is less_dense_than_water", "pln": ["(: cnet_isa_47f0b0d948 (IsA ice less_dense_than_water) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice is melting", "pln": ["(: cnet_isa_62eb8e78db (IsA ice melting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice is solid", "pln": ["(: cnet_isa_bf5f585ac0 (IsA ice solid) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice_cream is served_cold", "pln": ["(: cnet_isa_68bb335cb9 (IsA ice_cream served_cold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "icy_road is slippery", "pln": ["(: cnet_isa_de352daa71 (IsA icy_road slippery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ignorance is harmful_to_society", "pln": ["(: cnet_isa_1487245e2f (IsA ignorance harmful_to_society) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imprisonment is harmful", "pln": ["(: cnet_isa_db15fab267 (IsA imprisonment harmful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "in_street_celebration is likely_to_find_drug_and_confetti", "pln": ["(: cnet_isa_c74e0291f8 (IsA in_street_celebration likely_to_find_drug_and_confetti) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "in_winter is cold", "pln": ["(: cnet_isa_4251a07fb1 (IsA in_winter cold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ink is black", "pln": ["(: cnet_isa_4088e2a638 (IsA ink black) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instruction is misleading", "pln": ["(: cnet_isa_23979c28d0 (IsA instruction misleading) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insurance is expensive", "pln": ["(: cnet_isa_1d5e1ead51 (IsA insurance expensive) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "interior is inside", "pln": ["(: cnet_isa_ab39f4edc5 (IsA interior inside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internet is modern", "pln": ["(: cnet_isa_d1f84ec3bb (IsA internet modern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iraq is next_to_iran", "pln": ["(: cnet_isa_de779511b1 (IsA iraq next_to_iran) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "iron is heavy", "pln": ["(: cnet_isa_07bd76a5ba (IsA iron heavy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "isn_t is short_for_not", "pln": ["(: cnet_isa_91f1cca285 (IsA isn_t short_for_not) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "israel is full_of_jew", "pln": ["(: cnet_isa_f43f0a7871 (IsA israel full_of_jew) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jazz is form_of_music", "pln": ["(: cnet_isa_16a5dc89ee (IsA jazz form_of_music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jewel is ornate", "pln": ["(: cnet_isa_1d04582e09 (IsA jewel ornate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joke is bad", "pln": ["(: cnet_isa_fdbb0e6c8b (IsA joke bad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "killing is bad", "pln": ["(: cnet_isa_23d23c1dd8 (IsA killing bad) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "killing is wrong", "pln": ["(: cnet_isa_2d99c56996 (IsA killing wrong) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kissing is good", "pln": ["(: cnet_isa_ab2591d349 (IsA kissing good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kissing_furniture is weird", "pln": ["(: cnet_isa_c8a4b6bbb3 (IsA kissing_furniture weird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "kittens is small", "pln": ["(: cnet_isa_108cf0f017 (IsA kittens small) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "leaves is green_in_colour", "pln": ["(: cnet_isa_71263fcd71 (IsA leaves green_in_colour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kitten is annoying", "pln": ["(: cnet_isa_874d41c5d9 (IsA kitten annoying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kitten is small", "pln": ["(: cnet_isa_00a0e8c1dd (IsA kitten small) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knive is sharp", "pln": ["(: cnet_isa_89943ecbdf (IsA knive sharp) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lady is walking_along_beach_by_herself", "pln": ["(: cnet_isa_b5c3998c95 (IsA lady walking_along_beach_by_herself) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landmark is memorable", "pln": ["(: cnet_isa_fe422b0faf (IsA landmark memorable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lava is hot", "pln": ["(: cnet_isa_5c771c3245 (IsA lava hot) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lawn is green", "pln": ["(: cnet_isa_abfcef9dfd (IsA lawn green) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lawyer_work_to_decide_if is guilty", "pln": ["(: cnet_isa_872fb8958e (IsA lawyer_work_to_decide_if guilty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lead is toxic", "pln": ["(: cnet_isa_8b45399574 (IsA lead toxic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lead is very_heavy", "pln": ["(: cnet_isa_eb0b6b5d95 (IsA lead very_heavy) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaf is green", "pln": ["(: cnet_isa_cd57f3526c (IsA leaf green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "learning is fun", "pln": ["(: cnet_isa_0646eaa267 (IsA learning fun) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "learning is very_important", "pln": ["(: cnet_isa_e561db8ff0 (IsA learning very_important) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leave is green_in_colour", "pln": ["(: cnet_isa_5e20ed5165 (IsA leave green_in_colour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lecture is dull", "pln": ["(: cnet_isa_72ee589390 (IsA lecture dull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leisure_and_activity is fun", "pln": ["(: cnet_isa_ef26a6c03f (IsA leisure_and_activity fun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemon is bitter", "pln": ["(: cnet_isa_98524b533d (IsA lemon bitter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liberal is left_wing", "pln": ["(: cnet_isa_9b55885391 (IsA liberal left_wing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lie is false", "pln": ["(: cnet_isa_8e3f7bc3c9 (IsA lie false) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "life is finite", "pln": ["(: cnet_isa_f92e626a69 (IsA life finite) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "life is good", "pln": ["(: cnet_isa_fa6f2de035 (IsA life good) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "life is hard", "pln": ["(: cnet_isa_325d905b35 (IsA life hard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light_speed is fast", "pln": ["(: cnet_isa_2f72aa367e (IsA light_speed fast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lightning is hot", "pln": ["(: cnet_isa_7a6c1f4816 (IsA lightning hot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lion is native_to_africa", "pln": ["(: cnet_isa_8411662c4b (IsA lion native_to_africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liquid_nitrogen is very_cold", "pln": ["(: cnet_isa_8944447266 (IsA liquid_nitrogen very_cold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "listening_to_music is pleasurable", "pln": ["(: cnet_isa_14608e5f98 (IsA listening_to_music pleasurable) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "living is hard", "pln": ["(: cnet_isa_bda1e3d699 (IsA living hard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lot_of_plant is green", "pln": ["(: cnet_isa_27838aba5f (IsA lot_of_plant green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "love is blind", "pln": ["(: cnet_isa_4edc79cff1 (IsA love blind) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "love is contagious", "pln": ["(: cnet_isa_7b8a588105 (IsA love contagious) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "love is painful", "pln": ["(: cnet_isa_de68dd7bd4 (IsA love painful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "mammals is warm_blooded", "pln": ["(: cnet_isa_0afe0422fa (IsA mammals warm_blooded) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "most_leaves is green", "pln": ["(: cnet_isa_9b431e2ad3 (IsA most_leaves green) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "love is wonderful_and_frightening", "pln": ["(: cnet_isa_8e1599f7f8 (IsA love wonderful_and_frightening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lubricant is slippery", "pln": ["(: cnet_isa_5ca049dca0 (IsA lubricant slippery) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luck is unpredictable", "pln": ["(: cnet_isa_f2f6f0d5df (IsA luck unpredictable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machine is mechanical", "pln": ["(: cnet_isa_746235016b (IsA machine mechanical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magma is very_hot", "pln": ["(: cnet_isa_a00e825226 (IsA magma very_hot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mailbox_where_mail is picked_up_and_delivered", "pln": ["(: cnet_isa_0bceaf03b1 (IsA mailbox_where_mail picked_up_and_delivered) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mammal is warm_blooded", "pln": ["(: cnet_isa_d6529ec399 (IsA mammal warm_blooded) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "many_basketball_player is very_tall", "pln": ["(: cnet_isa_189dcc1b5a (IsA many_basketball_player very_tall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "many_other_thing is blue", "pln": ["(: cnet_isa_de96a2b952 (IsA many_other_thing blue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "many_people is dishonest", "pln": ["(: cnet_isa_62817c7ccf (IsA many_people dishonest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marble is opaque", "pln": ["(: cnet_isa_d579f541e6 (IsA marble opaque) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marble is rolling_across_table", "pln": ["(: cnet_isa_69dd2751ca (IsA marble rolling_across_table) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marble_floor is very_hard", "pln": ["(: cnet_isa_25ffd4cbd9 (IsA marble_floor very_hard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marijuana is illegal", "pln": ["(: cnet_isa_e7708809a3 (IsA marijuana illegal) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marijuana is intoxicating", "pln": ["(: cnet_isa_53678b97a3 (IsA marijuana intoxicating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masturbation is enjoyable", "pln": ["(: cnet_isa_80ee01c700 (IsA masturbation enjoyable) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "material is adaptable", "pln": ["(: cnet_isa_fffc676ef7 (IsA material adaptable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "math is difficult_for_student", "pln": ["(: cnet_isa_f8b31b4520 (IsA math difficult_for_student) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "math is fun", "pln": ["(: cnet_isa_6b6837b709 (IsA math fun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mathematic is useful_in_business", "pln": ["(: cnet_isa_57d53669ba (IsA mathematic useful_in_business) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mean_boss is unpleasant", "pln": ["(: cnet_isa_6b613d787d (IsA mean_boss unpleasant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meaning_of_life is impossible_for_human_to_determine", "pln": ["(: cnet_isa_7018a74f67 (IsA meaning_of_life impossible_for_human_to_determine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meaning_of_life is meaningless", "pln": ["(: cnet_isa_6e4d815b46 (IsA meaning_of_life meaningless) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "men_and_women is different", "pln": ["(: cnet_isa_0fdc97f901 (IsA men_and_women different) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mental_illness is common", "pln": ["(: cnet_isa_c3e1452352 (IsA mental_illness common) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mercury is poisonous", "pln": ["(: cnet_isa_c69e003aed (IsA mercury poisonous) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metal is heavy", "pln": ["(: cnet_isa_278f13e8ac (IsA metal heavy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mexico is south_of_united_state", "pln": ["(: cnet_isa_614a6f0c09 (IsA mexico south_of_united_state) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mice is small", "pln": ["(: cnet_isa_484bea6da7 (IsA mice small) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mike is hungry", "pln": ["(: cnet_isa_0d5403b38f (IsA mike hungry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milk is white", "pln": ["(: cnet_isa_2b0eb9f7d5 (IsA milk white) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mind is subjective", "pln": ["(: cnet_isa_af2ad4f5cb (IsA mind subjective) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mirror is reflective", "pln": ["(: cnet_isa_bc55b8e8a3 (IsA mirror reflective) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mistake is annoying", "pln": ["(: cnet_isa_b3f5d8578f (IsA mistake annoying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misunderstanding_between_people is normal", "pln": ["(: cnet_isa_0d280842e8 (IsA misunderstanding_between_people normal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monkey is hanging_off_tree", "pln": ["(: cnet_isa_8d32408920 (IsA monkey hanging_off_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monkey is hanging_from_tree", "pln": ["(: cnet_isa_b51319ff55 (IsA monkey hanging_from_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moon is radiant", "pln": ["(: cnet_isa_f7e48bb3b7 (IsA moon radiant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "most_dog is playful", "pln": ["(: cnet_isa_bcc30e8e16 (IsA most_dog playful) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "most_game is competitive", "pln": ["(: cnet_isa_d9b3162ef8 (IsA most_game competitive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "most_government is corrupt", "pln": ["(: cnet_isa_45ae81669d (IsA most_government corrupt) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "most_leave is green", "pln": ["(: cnet_isa_4f96bced04 (IsA most_leave green) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "most_newspaper is daily", "pln": ["(: cnet_isa_54848946bf (IsA most_newspaper daily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "most_rock is hard", "pln": ["(: cnet_isa_dde1f63694 (IsA most_rock hard) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "most_rock is very_hard", "pln": ["(: cnet_isa_2379147bcf (IsA most_rock very_hard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain is very_large", "pln": ["(: cnet_isa_c43914cebe (IsA mountain very_large) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "movy is excellent", "pln": ["(: cnet_isa_e81683c8bc (IsA movy excellent) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "murder is illegal", "pln": ["(: cnet_isa_f1566aafe8 (IsA murder illegal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "murder is wrong", "pln": ["(: cnet_isa_932a2cfc2f (IsA murder wrong) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mushroom is good_to_eat", "pln": ["(: cnet_isa_c26f986269 (IsA mushroom good_to_eat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mushroom is poisonous", "pln": ["(: cnet_isa_a4fcda0f39 (IsA mushroom poisonous) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "music is bad", "pln": ["(: cnet_isa_30372ce0da (IsA music bad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "music is enjoyable", "pln": ["(: cnet_isa_6e5ad6322d (IsA music enjoyable) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "music is relaxing", "pln": ["(: cnet_isa_4650f64c19 (IsA music relaxing) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "music is soothing", "pln": ["(: cnet_isa_a9cfaccbc7 (IsA music soothing) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "music is sound", "pln": ["(: cnet_isa_4c2e311f99 (IsA music sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nature is very_hard", "pln": ["(: cnet_isa_84b4976f76 (IsA nature very_hard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "needle is sharp", "pln": ["(: cnet_isa_f3d3e36bc9 (IsA needle sharp) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "not_all_snakes is venomous", "pln": ["(: cnet_isa_be89085332 (IsA not_all_snakes venomous) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "needle is small", "pln": ["(: cnet_isa_58252e53dc (IsA needle small) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new_experience is inevitable", "pln": ["(: cnet_isa_158e9a3e37 (IsA new_experience inevitable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newspaper is free", "pln": ["(: cnet_isa_fa647348b3 (IsA newspaper free) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newspaper is local", "pln": ["(: cnet_isa_179a50b6d3 (IsA newspaper local) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nicotine is addictive", "pln": ["(: cnet_isa_18841d6159 (IsA nicotine addictive) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nietzsche is classified_as_moral_skeptic", "pln": ["(: cnet_isa_f80309a5a9 (IsA nietzsche classified_as_moral_skeptic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "no_two_people is alike", "pln": ["(: cnet_isa_22e63cd9c6 (IsA no_two_people alike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "no_two_snowflake is alike", "pln": ["(: cnet_isa_4fcd6c52b2 (IsA no_two_snowflake alike) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "north_pole is cold", "pln": ["(: cnet_isa_0193b41804 (IsA north_pole cold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "not_all_mood_altering_drug is harmful", "pln": ["(: cnet_isa_d208748922 (IsA not_all_mood_altering_drug harmful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "not_all_snake is venomous", "pln": ["(: cnet_isa_74f0076fe8 (IsA not_all_snake venomous) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "number_one is second_to_none", "pln": ["(: cnet_isa_ee585bddea (IsA number_one second_to_none) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "number is more_than_one_number", "pln": ["(: cnet_isa_e2938b317a (IsA number more_than_one_number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ocean_water is salty", "pln": ["(: cnet_isa_0365d6b308 (IsA ocean_water salty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ocean is deep", "pln": ["(: cnet_isa_d0cfcd1730 (IsA ocean deep) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ocean is very_deep", "pln": ["(: cnet_isa_c6b24ab749 (IsA ocean very_deep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ocean is wet", "pln": ["(: cnet_isa_cfc7937b5b (IsA ocean wet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil is edible", "pln": ["(: cnet_isa_68226bad0e (IsA oil edible) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil is toxic", "pln": ["(: cnet_isa_5ce9ccb40a (IsA oil toxic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "one_nightly_ritual is turning_off_tv", "pln": ["(: cnet_isa_8f48fc75af (IsA one_nightly_ritual turning_off_tv) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one_of_chemical_element is silver", "pln": ["(: cnet_isa_b2d7c5ca33 (IsA one_of_chemical_element silver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one_plus_one is two", "pln": ["(: cnet_isa_1edf31e3dc (IsA one_plus_one two) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "only_snow_when is cold_outside", "pln": ["(: cnet_isa_e03fe90fcc (IsA only_snow_when cold_outside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "only_solid_object is rigid", "pln": ["(: cnet_isa_ad38b5c107 (IsA only_solid_object rigid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opera is boring", "pln": ["(: cnet_isa_c01bf96f8a (IsA opera boring) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opposite_of_hostile is friendly", "pln": ["(: cnet_isa_93cd64c72a (IsA opposite_of_hostile friendly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opposite_of_tactful is blunt", "pln": ["(: cnet_isa_14c8e77b0a (IsA opposite_of_tactful blunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "opposite_of_tasty is bland", "pln": ["(: cnet_isa_4d5111cf61 (IsA opposite_of_tasty bland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orange is sweet", "pln": ["(: cnet_isa_174eb6c92b (IsA orange sweet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orgasm is very_pleasurable", "pln": ["(: cnet_isa_67bed66ea8 (IsA orgasm very_pleasurable) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outer_space is infinite", "pln": ["(: cnet_isa_fa51b6b2f4 (IsA outer_space infinite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oven is very_hot", "pln": ["(: cnet_isa_5779eb2ec6 (IsA oven very_hot) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pain is bad", "pln": ["(: cnet_isa_91f7bfba2b (IsA pain bad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pain is unpleasant", "pln": ["(: cnet_isa_ba733816d1 (IsA pain unpleasant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paint is coloured", "pln": ["(: cnet_isa_818589b48b (IsA paint coloured) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paper is crumpled", "pln": ["(: cnet_isa_024f3408b8 (IsA paper crumpled) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paper is recyclable", "pln": ["(: cnet_isa_acd3185ade (IsA paper recyclable) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paperweight is heavy", "pln": ["(: cnet_isa_5010b39e37 (IsA paperweight heavy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parakeet is green", "pln": ["(: cnet_isa_9b251c4b48 (IsA parakeet green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parent is older_than_children", "pln": ["(: cnet_isa_e1e8058357 (IsA parent older_than_children) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partner is gay", "pln": ["(: cnet_isa_e03534b8ec (IsA partner gay) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patient is suffering_from_disease", "pln": ["(: cnet_isa_d8aacbbbad (IsA patient suffering_from_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pavement is hard", "pln": ["(: cnet_isa_d72f789079 (IsA pavement hard) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "peace is better_than_war", "pln": ["(: cnet_isa_5fccd1f7fb (IsA peace better_than_war) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peache is canned", "pln": ["(: cnet_isa_dc64bba482 (IsA peache canned) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peanut_butter is sticky", "pln": ["(: cnet_isa_9043574844 (IsA peanut_butter sticky) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peopel_pout_if is unhappy", "pln": ["(: cnet_isa_363aa10704 (IsA peopel_pout_if unhappy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is afraid_of_death", "pln": ["(: cnet_isa_7bcfa6eda1 (IsA people afraid_of_death) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is allergic_to_bee_sting", "pln": ["(: cnet_isa_599e1c9828 (IsA people allergic_to_bee_sting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is allergic_to_poison_ivy", "pln": ["(: cnet_isa_d3fd140848 (IsA people allergic_to_poison_ivy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is altruistic", "pln": ["(: cnet_isa_ef1cb40db2 (IsA people altruistic) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is cruel", "pln": ["(: cnet_isa_0c95ff0d5e (IsA people cruel) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is dangerous", "pln": ["(: cnet_isa_06ada86749 (IsA people dangerous) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is deceptive", "pln": ["(: cnet_isa_853331d9b0 (IsA people deceptive) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "people is different", "pln": ["(: cnet_isa_5c52a0d68a (IsA people different) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is generous", "pln": ["(: cnet_isa_4387f906e3 (IsA people generous) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is good", "pln": ["(: cnet_isa_1eb9f04bba (IsA people good) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is greedy", "pln": ["(: cnet_isa_6579f70e4d (IsA people greedy) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is happy", "pln": ["(: cnet_isa_0fb6e8c611 (IsA people happy) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is honest", "pln": ["(: cnet_isa_ee49d7398f (IsA people honest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "people is human", "pln": ["(: cnet_isa_b4fcff9c79 (IsA people human) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "person_wants_food_when is hungry", "pln": ["(: cnet_isa_d244fcb54b (IsA person_wants_food_when hungry) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is ignorant", "pln": ["(: cnet_isa_a4b2676260 (IsA people ignorant) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is insane", "pln": ["(: cnet_isa_a9b99fd6b2 (IsA people insane) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is japanese", "pln": ["(: cnet_isa_d45647dd58 (IsA people japanese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is jealous", "pln": ["(: cnet_isa_c243821995 (IsA people jealous) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is kind", "pln": ["(: cnet_isa_7253b52554 (IsA people kind) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is lazy", "pln": ["(: cnet_isa_0131eccc5c (IsA people lazy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is male_or_female", "pln": ["(: cnet_isa_ca83c3e794 (IsA people male_or_female) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is mean", "pln": ["(: cnet_isa_b69ef0975d (IsA people mean) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is neurotic", "pln": ["(: cnet_isa_23c8d7c587 (IsA people neurotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is nice", "pln": ["(: cnet_isa_983ffb1dd4 (IsA people nice) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is ridiculous", "pln": ["(: cnet_isa_1c3b682006 (IsA people ridiculous) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is sad", "pln": ["(: cnet_isa_90f4ad1764 (IsA people sad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is selfish", "pln": ["(: cnet_isa_2fee648cb6 (IsA people selfish) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is silly", "pln": ["(: cnet_isa_843e2b9367 (IsA people silly) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is strange", "pln": ["(: cnet_isa_b3e5ac7206 (IsA people strange) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is stupid", "pln": ["(: cnet_isa_1dde72f70b (IsA people stupid) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is thin", "pln": ["(: cnet_isa_8fa45d85ff (IsA people thin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is unique", "pln": ["(: cnet_isa_145867b75a (IsA people unique) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is weird", "pln": ["(: cnet_isa_ff000000f3 (IsA people weird) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people_believe_tv is harmful", "pln": ["(: cnet_isa_5d024b4d07 (IsA people_believe_tv harmful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people_like_flower_because is pretty", "pln": ["(: cnet_isa_222661edf9 (IsA people_like_flower_because pretty) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people_often_shout_when is angry", "pln": ["(: cnet_isa_b414534bec (IsA people_often_shout_when angry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people_smile_when is happy", "pln": ["(: cnet_isa_b9ce1cc559 (IsA people_smile_when happy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people_think_coffee is unhealthy", "pln": ["(: cnet_isa_65e42b28a9 (IsA people_think_coffee unhealthy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pepper is green", "pln": ["(: cnet_isa_5aa5d6a156 (IsA pepper green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "person is guilty_of_crime", "pln": ["(: cnet_isa_477d548d0b (IsA person guilty_of_crime) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "person is self_interested", "pln": ["(: cnet_isa_fe7a97c597 (IsA person self_interested) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "person is selfish", "pln": ["(: cnet_isa_71bd62bbbb (IsA person selfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "person_can_dream is flying", "pln": ["(: cnet_isa_282fb8af88 (IsA person_can_dream flying) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "person_can_realise is wrong", "pln": ["(: cnet_isa_8cfc3e3e4b (IsA person_can_realise wrong) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "person_want_food_when is hungry", "pln": ["(: cnet_isa_1da9057d0a (IsA person_want_food_when hungry) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "person_who_commit_crime is guilty", "pln": ["(: cnet_isa_9b2d50e3c3 (IsA person_who_commit_crime guilty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "peter is sick", "pln": ["(: cnet_isa_e9eca0130f (IsA peter sick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "pictures is artistic", "pln": ["(: cnet_isa_e7b446bad5 (IsA pictures artistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "pilots is bad", "pln": ["(: cnet_isa_a9bdd58b43 (IsA pilots bad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "pizzas is flat_and_round", "pln": ["(: cnet_isa_f0447ce4ea (IsA pizzas flat_and_round) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "plains is flat", "pln": ["(: cnet_isa_dc3d28376d (IsA plains flat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "pumpkins is orange", "pln": ["(: cnet_isa_836a02f7e7 (IsA pumpkins orange) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "php is free", "pln": ["(: cnet_isa_1e58c23868 (IsA php free) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pi is endless", "pln": ["(: cnet_isa_1a292a85bf (IsA pi endless) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picture is artistic", "pln": ["(: cnet_isa_bcdb526839 (IsA picture artistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piece is one_part_of", "pln": ["(: cnet_isa_3d732c234b (IsA piece one_part_of) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pie is baked_in_oven", "pln": ["(: cnet_isa_0e3ae3b597 (IsA pie baked_in_oven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pilot is bad", "pln": ["(: cnet_isa_f31cc542f9 (IsA pilot bad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pistol is dangerous", "pln": ["(: cnet_isa_d687fe2039 (IsA pistol dangerous) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pizza is baked_in_oven", "pln": ["(: cnet_isa_1597302638 (IsA pizza baked_in_oven) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pizza is flat_and_round", "pln": ["(: cnet_isa_c35fbb2c8c (IsA pizza flat_and_round) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plain is flat", "pln": ["(: cnet_isa_5267cd1d34 (IsA plain flat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plane_ticket is expensive", "pln": ["(: cnet_isa_dac1fa9125 (IsA plane_ticket expensive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planet_earth is round", "pln": ["(: cnet_isa_f6cf5ab88a (IsA planet_earth round) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planet is large", "pln": ["(: cnet_isa_6c623f302c (IsA planet large) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planet is round", "pln": ["(: cnet_isa_2381fffc6d (IsA planet round) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plant is alive", "pln": ["(: cnet_isa_5d7da8803b (IsA plant alive) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plant is good_for_environment", "pln": ["(: cnet_isa_e9d1d0178f (IsA plant good_for_environment) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plant is poisonous", "pln": ["(: cnet_isa_291c64a72d (IsA plant poisonous) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "play is fun", "pln": ["(: cnet_isa_ebca26d28c (IsA play fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playing is fun", "pln": ["(: cnet_isa_bae034b691 (IsA playing fun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playing_dart is fun", "pln": ["(: cnet_isa_eb2f5ff0ff (IsA playing_dart fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plutonium is radioactive", "pln": ["(: cnet_isa_778d0d86ed (IsA plutonium radioactive) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "political_ideology is bad", "pln": ["(: cnet_isa_33a1c1bcd7 (IsA political_ideology bad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "politician is corrupt", "pln": ["(: cnet_isa_e59bc7525d (IsA politician corrupt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poop is smelly", "pln": ["(: cnet_isa_6e22189765 (IsA poop smelly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poor_people is unhappy", "pln": ["(: cnet_isa_e28eba05f0 (IsA poor_people unhappy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pope is catholic", "pln": ["(: cnet_isa_f9b2a24d10 (IsA pope catholic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "postpartum_depression is treatable", "pln": ["(: cnet_isa_48eebfba3e (IsA postpartum_depression treatable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prevention is better_than_cure", "pln": ["(: cnet_isa_885dbbf23e (IsA prevention better_than_cure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "privacy is essential_to_healthy_psyche", "pln": ["(: cnet_isa_71244755e2 (IsA privacy essential_to_healthy_psyche) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pub is short_for_public_house", "pln": ["(: cnet_isa_c8443133c0 (IsA pub short_for_public_house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pumpkin is orange", "pln": ["(: cnet_isa_52a0252d20 (IsA pumpkin orange) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pupil_of_human_eye is black", "pln": ["(: cnet_isa_1115744c43 (IsA pupil_of_human_eye black) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puppy_and_children is cute", "pln": ["(: cnet_isa_32a775a50a (IsA puppy_and_children cute) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarter_note is one_beat", "pln": ["(: cnet_isa_ece69baccb (IsA quarter_note one_beat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "queen is female", "pln": ["(: cnet_isa_49872d7529 (IsA queen female) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "racism is bad", "pln": ["(: cnet_isa_65ac5c73e6 (IsA racism bad) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rain is water_falling_from_sky", "pln": ["(: cnet_isa_2eebb7e35e (IsA rain water_falling_from_sky) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rain is wet", "pln": ["(: cnet_isa_f9e8751efe (IsA rain wet) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rape is evil_and_wrong", "pln": ["(: cnet_isa_4b3a0f5054 (IsA rape evil_and_wrong) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "razor is sharp", "pln": ["(: cnet_isa_fee91a7f0e (IsA razor sharp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reading is fun", "pln": ["(: cnet_isa_0437d07eb7 (IsA reading fun) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reading_book is fun", "pln": ["(: cnet_isa_5a44c1d8a7 (IsA reading_book fun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "religion is confusing", "pln": ["(: cnet_isa_4dcc841b1a (IsA religion confusing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repetition is boring", "pln": ["(: cnet_isa_2842d8c080 (IsA repetition boring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revolver is dangerous", "pln": ["(: cnet_isa_ebc5846a22 (IsA revolver dangerous) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "revolver is one_kind_of_pistol", "pln": ["(: cnet_isa_a37a915a40 (IsA revolver one_kind_of_pistol) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "rooms is round", "pln": ["(: cnet_isa_122cac58de (IsA rooms round) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riding_hors is dangerous", "pln": ["(: cnet_isa_f1024b2096 (IsA riding_hors dangerous) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ripe_strawberry is red", "pln": ["(: cnet_isa_73c5f0dce1 (IsA ripe_strawberry red) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock is heavy", "pln": ["(: cnet_isa_a8cb2b9b70 (IsA rock heavy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rocking_chair is relaxing", "pln": ["(: cnet_isa_b789e77394 (IsA rocking_chair relaxing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock is rigid", "pln": ["(: cnet_isa_15303ac936 (IsA rock rigid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rollercoaster is fun", "pln": ["(: cnet_isa_c10e7486f5 (IsA rollercoaster fun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "room is upstair_from_garage", "pln": ["(: cnet_isa_e7ce610921 (IsA room upstair_from_garage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "room is round", "pln": ["(: cnet_isa_c1fdc7098e (IsA room round) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rpg is fun", "pln": ["(: cnet_isa_8ef574c987 (IsA rpg fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rubber_stamp is opaque", "pln": ["(: cnet_isa_93a474934c (IsA rubber_stamp opaque) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "sailboats is powered_by_wind", "pln": ["(: cnet_isa_5f012b0542 (IsA sailboats powered_by_wind) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruby is red", "pln": ["(: cnet_isa_7e0f2e993c (IsA ruby red) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "running_errand is boring", "pln": ["(: cnet_isa_360ba2ea84 (IsA running_errand boring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "running_for_long_time is boring", "pln": ["(: cnet_isa_de2e40477d (IsA running_for_long_time boring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sailboat is powered_by_wind", "pln": ["(: cnet_isa_b53431b791 (IsA sailboat powered_by_wind) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sailing is fun", "pln": ["(: cnet_isa_d40278da85 (IsA sailing fun) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "salt is bad_for", "pln": ["(: cnet_isa_7884e4f8c8 (IsA salt bad_for) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sand is gritty", "pln": ["(: cnet_isa_4c5da88e6d (IsA sand gritty) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scamper is dead", "pln": ["(: cnet_isa_835441c5c2 (IsA scamper dead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "school is boring", "pln": ["(: cnet_isa_e0cb17e34b (IsA school boring) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scissor is sharp", "pln": ["(: cnet_isa_52b3422b51 (IsA scissor sharp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea is full_of_water", "pln": ["(: cnet_isa_042bd2e11c (IsA sea full_of_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea is wet", "pln": ["(: cnet_isa_f395028a4f (IsA sea wet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sea_water is salty", "pln": ["(: cnet_isa_9e1807fc88 (IsA sea_water salty) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seat is more_comfortable_than_other", "pln": ["(: cnet_isa_60ab2fec05 (IsA seat more_comfortable_than_other) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "self_adhesive_label is sticky_on_one_side", "pln": ["(: cnet_isa_a2fe7f89d5 (IsA self_adhesive_label sticky_on_one_side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self_adhesive_label is very_sticky_on_one_side", "pln": ["(: cnet_isa_4175faabda (IsA self_adhesive_label very_sticky_on_one_side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "selling_out is bad", "pln": ["(: cnet_isa_825f66e77a (IsA selling_out bad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sentence is false", "pln": ["(: cnet_isa_9b3e9c5038 (IsA sentence false) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seventy_percent_of_earth_s_surface is water", "pln": ["(: cnet_isa_c135d72f08 (IsA seventy_percent_of_earth_s_surface water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex is dirty", "pln": ["(: cnet_isa_2e684f8179 (IsA sex dirty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex is fun", "pln": ["(: cnet_isa_ef4970df29 (IsA sex fun) (STV 1.0 0.9800))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex is good", "pln": ["(: cnet_isa_99269dc77a (IsA sex good) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex is great", "pln": ["(: cnet_isa_c5807fdf77 (IsA sex great) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex is great_fun", "pln": ["(: cnet_isa_e8545e540e (IsA sex great_fun) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex is nice", "pln": ["(: cnet_isa_352919b3e7 (IsA sex nice) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex is painful", "pln": ["(: cnet_isa_7d36375fbd (IsA sex painful) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex is pleasant", "pln": ["(: cnet_isa_0fecdc147d (IsA sex pleasant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex is pleasurable", "pln": ["(: cnet_isa_b20596b77f (IsA sex pleasurable) (STV 1.0 0.9756))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shadow is dark", "pln": ["(: cnet_isa_b9140ecb53 (IsA shadow dark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheet is white", "pln": ["(: cnet_isa_70b0d2f3d8 (IsA sheet white) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shell_of_turtle is hard", "pln": ["(: cnet_isa_f1a0a6763f (IsA shell_of_turtle hard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "sports is violent", "pln": ["(: cnet_isa_55f41638aa (IsA sports violent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shore_fly is annoying", "pln": ["(: cnet_isa_124609d31f (IsA shore_fly annoying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silence is suspenseful", "pln": ["(: cnet_isa_c174f8992a (IsA silence suspenseful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simple is beautiful", "pln": ["(: cnet_isa_26830a1147 (IsA simple beautiful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "single_cat is alone", "pln": ["(: cnet_isa_40e24e6a87 (IsA single_cat alone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "situation is grave", "pln": ["(: cnet_isa_eca441c8eb (IsA situation grave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sky is blue", "pln": ["(: cnet_isa_6ac8c04b1e (IsA sky blue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sky is blue_during_day", "pln": ["(: cnet_isa_5093e99b79 (IsA sky blue_during_day) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sky is blue_on_clear_day", "pln": ["(: cnet_isa_db8436b1b6 (IsA sky blue_on_clear_day) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sky is cloudy", "pln": ["(: cnet_isa_8a984b2b4e (IsA sky cloudy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sky is dark", "pln": ["(: cnet_isa_863e638957 (IsA sky dark) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sky is full_of_star", "pln": ["(: cnet_isa_6375fa275a (IsA sky full_of_star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sky is red_at_sunrise_and_sunset", "pln": ["(: cnet_isa_4c766d2be4 (IsA sky red_at_sunrise_and_sunset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slavery is bad", "pln": ["(: cnet_isa_e0b2aaf016 (IsA slavery bad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sliping_and_falling_on_ice is bad", "pln": ["(: cnet_isa_d3fa3f641c (IsA sliping_and_falling_on_ice bad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "small_furry_animal is cute", "pln": ["(: cnet_isa_1897396286 (IsA small_furry_animal cute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smoke is dangerous", "pln": ["(: cnet_isa_c03b893e98 (IsA smoke dangerous) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smoking is bad_for", "pln": ["(: cnet_isa_f8b482dae2 (IsA smoking bad_for) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smoking is bad_for_health", "pln": ["(: cnet_isa_2240aaacef (IsA smoking bad_for_health) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smoking is unhealthy", "pln": ["(: cnet_isa_d3635e9ef4 (IsA smoking unhealthy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smoking_cigarette is bad_for", "pln": ["(: cnet_isa_fea1d57cbc (IsA smoking_cigarette bad_for) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snake is dangerous", "pln": ["(: cnet_isa_e45fc083cd (IsA snake dangerous) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sneezing is involuntary", "pln": ["(: cnet_isa_c84dbd5ddc (IsA sneezing involuntary) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "socially_responsible_investment is abbreviated_to_sri", "pln": ["(: cnet_isa_0dcd405787 (IsA socially_responsible_investment abbreviated_to_sri) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solitary_work is very_lonely", "pln": ["(: cnet_isa_21f8b9c7e1 (IsA solitary_work very_lonely) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sound is loud", "pln": ["(: cnet_isa_652452c14b (IsA sound loud) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "space is cold", "pln": ["(: cnet_isa_f288eda5a2 (IsA space cold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "space is empty", "pln": ["(: cnet_isa_56a84cb54e (IsA space empty) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speed is dangerous", "pln": ["(: cnet_isa_f38321cdf1 (IsA speed dangerous) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speed_of_light is very_fast", "pln": ["(: cnet_isa_e818ddb10a (IsA speed_of_light very_fast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphere is round", "pln": ["(: cnet_isa_361fc49574 (IsA sphere round) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spilled_soda is sticky", "pln": ["(: cnet_isa_fc283f1795 (IsA spilled_soda sticky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinach is high_in_calcium", "pln": ["(: cnet_isa_9c973470b7 (IsA spinach high_in_calcium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sport is competitive", "pln": ["(: cnet_isa_dfe93f50bf (IsA sport competitive) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sport is fun", "pln": ["(: cnet_isa_540c4b0297 (IsA sport fun) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sport is violent", "pln": ["(: cnet_isa_f224813c87 (IsA sport violent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stairway is dark", "pln": ["(: cnet_isa_bd497449d3 (IsA stairway dark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "star is visible_at_night", "pln": ["(: cnet_isa_0c4132fb6c (IsA star visible_at_night) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "statement is false", "pln": ["(: cnet_isa_237203c48e (IsA statement false) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steak is delicious", "pln": ["(: cnet_isa_76f7cab61a (IsA steak delicious) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steak is edible", "pln": ["(: cnet_isa_5db81c9744 (IsA steak edible) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steak is one_cut_of_meat", "pln": ["(: cnet_isa_b90e8db796 (IsA steak one_cut_of_meat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stealing is bad", "pln": ["(: cnet_isa_b4f897c017 (IsA stealing bad) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "steam is hot", "pln": ["(: cnet_isa_1895708fde (IsA steam hot) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "stop_signs is red_and_white", "pln": ["(: cnet_isa_8d869d90af (IsA stop_signs red_and_white) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "submarines is very_big", "pln": ["(: cnet_isa_5640ee4951 (IsA submarines very_big) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steam_pipe is hot", "pln": ["(: cnet_isa_4d0a172ffb (IsA steam_pipe hot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steel is hard", "pln": ["(: cnet_isa_2491c84103 (IsA steel hard) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steel_pen is hard", "pln": ["(: cnet_isa_330bd5bbec (IsA steel_pen hard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stone is hard", "pln": ["(: cnet_isa_6a08dfe7d9 (IsA stone hard) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stop_sign is red_and_white", "pln": ["(: cnet_isa_35bb8cda8f (IsA stop_sign red_and_white) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stove is hot", "pln": ["(: cnet_isa_389c372fdf (IsA stove hot) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "submarine is very_big", "pln": ["(: cnet_isa_25cc995629 (IsA submarine very_big) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sugar is bad_for_diabetic_person", "pln": ["(: cnet_isa_97e4a2a3b4 (IsA sugar bad_for_diabetic_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sugar is one_kind_of_carbohydrate", "pln": ["(: cnet_isa_0b88bf0ab8 (IsA sugar one_kind_of_carbohydrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sumo is popular_in_japan", "pln": ["(: cnet_isa_bf30c0ead3 (IsA sumo popular_in_japan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sun is far_from_earth", "pln": ["(: cnet_isa_d3d8d8c6ad (IsA sun far_from_earth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sun is warm", "pln": ["(: cnet_isa_e88899e2f6 (IsA sun warm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunlight is bright", "pln": ["(: cnet_isa_1f0704fe9a (IsA sunlight bright) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunny_day is warm", "pln": ["(: cnet_isa_1a93f24075 (IsA sunny_day warm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunset is romantic", "pln": ["(: cnet_isa_5110aa6fc0 (IsA sunset romantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunshine is harmful", "pln": ["(: cnet_isa_1b82708406 (IsA sunshine harmful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunshine is one_kind_of_light", "pln": ["(: cnet_isa_5516c06be4 (IsA sunshine one_kind_of_light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suturing is closing", "pln": ["(: cnet_isa_a3fd90a64c (IsA suturing closing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swiss_army_knive is handy", "pln": ["(: cnet_isa_eeb5595428 (IsA swiss_army_knive handy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swiss_cheese is full_of_hole", "pln": ["(: cnet_isa_6412dbb27d (IsA swiss_cheese full_of_hole) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sword is sharp", "pln": ["(: cnet_isa_c9ae1e9cd7 (IsA sword sharp) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "t_shirt is considered_casual_wear", "pln": ["(: cnet_isa_5b2a630532 (IsA t_shirt considered_casual_wear) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tabby_cat is alive", "pln": ["(: cnet_isa_3108a0e5e1 (IsA tabby_cat alive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "table_tennis is fun", "pln": ["(: cnet_isa_1cec37642e (IsA table_tennis fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tack is sharp", "pln": ["(: cnet_isa_bfa11c1cee (IsA tack sharp) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "tomatoes is red", "pln": ["(: cnet_isa_8bb1dff5be (IsA tomatoes red) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taking_advantage_of is bad", "pln": ["(: cnet_isa_a65366e68f (IsA taking_advantage_of bad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tape is sticky", "pln": ["(: cnet_isa_7a9cfe0d46 (IsA tape sticky) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taping_television_show is legal", "pln": ["(: cnet_isa_2127d8ea3f (IsA taping_television_show legal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teaching_computer_sometime is boring", "pln": ["(: cnet_isa_55aae1e185 (IsA teaching_computer_sometime boring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "television is entertaining", "pln": ["(: cnet_isa_1c3b65652c (IsA television entertaining) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "three is 3", "pln": ["(: cnet_isa_7a8e38bb50 (IsA three 3) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thunder is loud", "pln": ["(: cnet_isa_a7a67f1e45 (IsA thunder loud) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tickling is fun", "pln": ["(: cnet_isa_1b78a807d1 (IsA tickling fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tick is brown", "pln": ["(: cnet_isa_cb8ace3701 (IsA tick brown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time is linear", "pln": ["(: cnet_isa_45c9a8c085 (IsA time linear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time is running", "pln": ["(: cnet_isa_faff987d2e (IsA time running) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tire is black", "pln": ["(: cnet_isa_6b708f4e4d (IsA tire black) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toilet_paper is biodegradable", "pln": ["(: cnet_isa_598f9975e2 (IsA toilet_paper biodegradable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toilet_paper is soft", "pln": ["(: cnet_isa_225bdaaabd (IsA toilet_paper soft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tomatoe is red", "pln": ["(: cnet_isa_2c885dfac3 (IsA tomatoe red) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trash is bad", "pln": ["(: cnet_isa_1b8ace820e (IsA trash bad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree is alive", "pln": ["(: cnet_isa_ee7d6f5317 (IsA tree alive) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree is one_form_of_plant", "pln": ["(: cnet_isa_483b14ed63 (IsA tree one_form_of_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree is tall", "pln": ["(: cnet_isa_ba51a2713e (IsA tree tall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tropical_fish is colorful", "pln": ["(: cnet_isa_8c68c02b7d (IsA tropical_fish colorful) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truth is complex", "pln": ["(: cnet_isa_7c8f9e1014 (IsA truth complex) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truth is simple", "pln": ["(: cnet_isa_64c5818d5b (IsA truth simple) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tube is hollow", "pln": ["(: cnet_isa_ed9fe97479 (IsA tube hollow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tv is good", "pln": ["(: cnet_isa_cfa6b03d01 (IsA tv good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tv is short_for_television", "pln": ["(: cnet_isa_8e3632742c (IsA tv short_for_television) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "two_am is late", "pln": ["(: cnet_isa_22668b29af (IsA two_am late) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "two_plus_two is four", "pln": ["(: cnet_isa_5bf98ab3d6 (IsA two_plus_two four) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uncle is male", "pln": ["(: cnet_isa_cf55c90f90 (IsA uncle male) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "undead is animated_dead", "pln": ["(: cnet_isa_51f459f58d (IsA undead animated_dead) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unitarian_universalist is christian", "pln": ["(: cnet_isa_efc74f3aa6 (IsA unitarian_universalist christian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "universe is infinite", "pln": ["(: cnet_isa_d310808272 (IsA universe infinite) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "universe is very_old", "pln": ["(: cnet_isa_6fcfd826e1 (IsA universe very_old) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uv_ray is harmful", "pln": ["(: cnet_isa_9180b3194d (IsA uv_ray harmful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "variety_in_fruit is healthy", "pln": ["(: cnet_isa_e3a6b67208 (IsA variety_in_fruit healthy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vegetable is green", "pln": ["(: cnet_isa_a6a9485df0 (IsA vegetable green) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "velvet is soft", "pln": ["(: cnet_isa_837469bcc4 (IsA velvet soft) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vertebrate is animal", "pln": ["(: cnet_isa_3cd84ab54f (IsA vertebrate animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vertebrate is diverse", "pln": ["(: cnet_isa_fe96082c05 (IsA vertebrate diverse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "very_few_people is content", "pln": ["(: cnet_isa_1484d3f509 (IsA very_few_people content) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vinyl is cold", "pln": ["(: cnet_isa_da1dd6f57e (IsA vinyl cold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voice is loud", "pln": ["(: cnet_isa_41086b7dd1 (IsA voice loud) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waiting_for_printer is boring", "pln": ["(: cnet_isa_b06ffac8e2 (IsA waiting_for_printer boring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "war is terrible", "pln": ["(: cnet_isa_59f774881e (IsA war terrible) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water is blue", "pln": ["(: cnet_isa_98e2b83272 (IsA water blue) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water is dangerous", "pln": ["(: cnet_isa_a12805836d (IsA water dangerous) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "water is essential_to_all_life", "pln": ["(: cnet_isa_d26cfbcce6 (IsA water essential_to_all_life) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water is essential_to_human_life", "pln": ["(: cnet_isa_0dae8fc6da (IsA water essential_to_human_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water is good_to_drink", "pln": ["(: cnet_isa_0b07803966 (IsA water good_to_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water is liquid", "pln": ["(: cnet_isa_137d2608e7 (IsA water liquid) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water is transparent", "pln": ["(: cnet_isa_755cb84ea4 (IsA water transparent) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water_from_ocean is salty", "pln": ["(: cnet_isa_e37059d544 (IsA water_from_ocean salty) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water_in_river is cold", "pln": ["(: cnet_isa_0c49d9cb6d (IsA water_in_river cold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weapon is harmful", "pln": ["(: cnet_isa_618789c885 (IsA weapon harmful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wedding is boring", "pln": ["(: cnet_isa_c068d46314 (IsA wedding boring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weed is green", "pln": ["(: cnet_isa_43d175780b (IsA weed green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wet_grass is slippery", "pln": ["(: cnet_isa_f3cf6e260d (IsA wet_grass slippery) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wet_ice is slippery", "pln": ["(: cnet_isa_311a79c378 (IsA wet_ice slippery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wet_tile_surface is slippery", "pln": ["(: cnet_isa_87bea9ee14 (IsA wet_tile_surface slippery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheel is round", "pln": ["(: cnet_isa_270c31c69a (IsA wheel round) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wine is tasty", "pln": ["(: cnet_isa_1a06fbff62 (IsA wine tasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wine is white", "pln": ["(: cnet_isa_cf1e2048a5 (IsA wine white) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winner is happy", "pln": ["(: cnet_isa_755b062ca2 (IsA winner happy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winter is cold", "pln": ["(: cnet_isa_d14ecf044d (IsA winter cold) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "witche is pagan", "pln": ["(: cnet_isa_ea4381d311 (IsA witche pagan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood is solid", "pln": ["(: cnet_isa_d0879bc17b (IsA wood solid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wooden_floor is hard", "pln": ["(: cnet_isa_09b42d237b (IsA wooden_floor hard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wooden_rod is hard", "pln": ["(: cnet_isa_8873bee1e9 (IsA wooden_rod hard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "word_n_f_l_and_coaching is both_associated_with_football", "pln": ["(: cnet_isa_7edb77d774 (IsA word_n_f_l_and_coaching both_associated_with_football) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "work is boring", "pln": ["(: cnet_isa_2131fd0d42 (IsA work boring) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "world is diverse", "pln": ["(: cnet_isa_b78b0bdf95 (IsA world diverse) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "world is round", "pln": ["(: cnet_isa_007d9b44dd (IsA world round) (STV 1.0 0.9756))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "world is small", "pln": ["(: cnet_isa_8aa1618077 (IsA world small) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "1 is a kind of abstaction", "pln": ["(: cnet_isa_ef543b76f8 (IsA 1 abstaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "1860s is a kind of decade", "pln": ["(: cnet_isa_03cf18b346 (IsA 1860s decade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "1 is a kind of number", "pln": ["(: cnet_isa_3259095dc4 (IsA 1 number) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "1000 mbit s is a kind of generic artifact", "pln": ["(: cnet_isa_aae5ec5009 (IsA 1000_mbit_s generic_artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "100 mbit s is a kind of generic artifact", "pln": ["(: cnet_isa_f05838d0c8 (IsA 100_mbit_s generic_artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "10 mbit s is a kind of generic artifact", "pln": ["(: cnet_isa_48b5f86b44 (IsA 10_mbit_s generic_artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "124141234 is a kind of number", "pln": ["(: cnet_isa_912115e8bb (IsA 124141234 number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "1530 is a kind of decade", "pln": ["(: cnet_isa_8fef22e95d (IsA 1530 decade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "1750 is a kind of decade", "pln": ["(: cnet_isa_e13cf41fa3 (IsA 1750 decade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "1760 is a kind of decade", "pln": ["(: cnet_isa_6f013ca2c0 (IsA 1760 decade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "1770 is a kind of decade", "pln": ["(: cnet_isa_ee81a62d6d (IsA 1770 decade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "1780 is a kind of decade", "pln": ["(: cnet_isa_3ff009fca8 (IsA 1780 decade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "1790 is a kind of decade", "pln": ["(: cnet_isa_64a066cb01 (IsA 1790 decade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "1820 is a kind of decade", "pln": ["(: cnet_isa_e71a04af3c (IsA 1820 decade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "1830 is a kind of decade", "pln": ["(: cnet_isa_e72573dd8f (IsA 1830 decade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "1840 is a kind of decade", "pln": ["(: cnet_isa_6143ab1274 (IsA 1840 decade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "1850 is a kind of decade", "pln": ["(: cnet_isa_2137b6598a (IsA 1850 decade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "1860 is a kind of decade", "pln": ["(: cnet_isa_5e613becc1 (IsA 1860 decade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "1870 is a kind of decade", "pln": ["(: cnet_isa_e0e4a5723b (IsA 1870 decade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "18 karat gold is a kind of alloy", "pln": ["(: cnet_isa_542daa7d4a (IsA 18_karat_gold alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "1900 is a kind of decade", "pln": ["(: cnet_isa_73bfa8ff3a (IsA 1900 decade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "1984 is a kind of very good book", "pln": ["(: cnet_isa_353e64c43e (IsA 1984 very_good_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "20 20 is a kind of acuity", "pln": ["(: cnet_isa_93f3b714ff (IsA 20_20 acuity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "22 karat gold is a kind of alloy", "pln": ["(: cnet_isa_7c1bb74029 (IsA 22_karat_gold alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "24 7 is a kind of uptime", "pln": ["(: cnet_isa_9204aeed69 (IsA 24_7 uptime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "24 karat gold is a kind of gold", "pln": ["(: cnet_isa_5fd8de082d (IsA 24_karat_gold gold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "3d printer is a kind of printer", "pln": ["(: cnet_isa_82e0c74d9e (IsA 3d_printer printer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "401 k plan is a kind of pension plan", "pln": ["(: cnet_isa_f76abc9602 (IsA 401_k_plan pension_plan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "7 is a kind of number", "pln": ["(: cnet_isa_edf305481e (IsA 7 number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "78 is a kind of phonograph record", "pln": ["(: cnet_isa_c7a3e91462 (IsA 78 phonograph_record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "7 up is a kind of soda", "pln": ["(: cnet_isa_660c113cba (IsA 7_up soda) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "80386 is a kind of cpu", "pln": ["(: cnet_isa_edb243ba2c (IsA 80386 cpu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "9 is a kind of number", "pln": ["(: cnet_isa_8f8a76924f (IsA 9 number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "a is a kind of set containing one element", "pln": ["(: cnet_isa_9057d6851e (IsA a set_containing_one_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "a is a kind of blood group", "pln": ["(: cnet_isa_6b28178d2d (IsA a blood_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "a is a kind of letter", "pln": ["(: cnet_isa_259f09f348 (IsA a letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aa is a kind of lava", "pln": ["(: cnet_isa_2f8c755ebd (IsA aa lava) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aalii is a kind of tree", "pln": ["(: cnet_isa_6ba732d46a (IsA aalii tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aardvark is a kind of placental", "pln": ["(: cnet_isa_5dc63e261b (IsA aardvark placental) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aardwolf is a kind of hyena", "pln": ["(: cnet_isa_1e7062d745 (IsA aardwolf hyena) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ab is a kind of blood group", "pln": ["(: cnet_isa_352968b831 (IsA ab blood_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ab is a kind of jewish calendar month", "pln": ["(: cnet_isa_cc38aa9676 (IsA ab jewish_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "aba is a kind of fabric", "pln": ["(: cnet_isa_16fd8f755a (IsA aba fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aba is a kind of overgarment", "pln": ["(: cnet_isa_8224769f49 (IsA aba overgarment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abaca is a kind of banana", "pln": ["(: cnet_isa_d013c1aa13 (IsA abaca banana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abacus is a kind of calculator", "pln": ["(: cnet_isa_f8fc112e84 (IsA abacus calculator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abacus is a kind of tablet", "pln": ["(: cnet_isa_5e9dcad8e8 (IsA abacus tablet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abalone is a kind of gastropod", "pln": ["(: cnet_isa_0fdde0d59a (IsA abalone gastropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "abampere is a kind of current unit", "pln": ["(: cnet_isa_a618d9c369 (IsA abampere current_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "abandon is a kind of unrestraint", "pln": ["(: cnet_isa_fdda22a7d0 (IsA abandon unrestraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abandoned person is a kind of unfortunate", "pln": ["(: cnet_isa_e2e0ec4ce7 (IsA abandoned_person unfortunate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abandoned ship is a kind of ship", "pln": ["(: cnet_isa_17befe1bf1 (IsA abandoned_ship ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abandonment is a kind of disposal", "pln": ["(: cnet_isa_191f6aa319 (IsA abandonment disposal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abandonment is a kind of rejection", "pln": ["(: cnet_isa_88cd1ed2a7 (IsA abandonment rejection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abarticulation is a kind of dislocation", "pln": ["(: cnet_isa_089a4e7802 (IsA abarticulation dislocation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abasement is a kind of humiliation", "pln": ["(: cnet_isa_d551d357d3 (IsA abasement humiliation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abashment is a kind of embarrassment", "pln": ["(: cnet_isa_21e64e5cac (IsA abashment embarrassment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abasia is a kind of disability of walking", "pln": ["(: cnet_isa_b5821c6c9d (IsA abasia disability_of_walking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abasia trepidan is a kind of abasia", "pln": ["(: cnet_isa_02897815dc (IsA abasia_trepidan abasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abatable nuisance is a kind of nuisance", "pln": ["(: cnet_isa_c0dd2e2bdb (IsA abatable_nuisance nuisance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abatement is a kind of moderation", "pln": ["(: cnet_isa_f3d87758b7 (IsA abatement moderation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abatement of nuisance is a kind of abatement", "pln": ["(: cnet_isa_9a9e0980c6 (IsA abatement_of_nuisance abatement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abator is a kind of person", "pln": ["(: cnet_isa_19f61f50b7 (IsA abator person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abattis is a kind of line of defense", "pln": ["(: cnet_isa_ce900307aa (IsA abattis line_of_defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abattoir is a kind of building", "pln": ["(: cnet_isa_91eaabfc9c (IsA abattoir building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abaya is a kind of robe", "pln": ["(: cnet_isa_be1e77c48a (IsA abaya robe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abbacy is a kind of jurisdiction", "pln": ["(: cnet_isa_69e717d95b (IsA abbacy jurisdiction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abbe is a kind of abbot", "pln": ["(: cnet_isa_949452f0d2 (IsA abbe abbot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abbe condenser is a kind of condenser", "pln": ["(: cnet_isa_fcfe089b0f (IsA abbe_condenser condenser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abbess is a kind of superior", "pln": ["(: cnet_isa_b466e9f086 (IsA abbess superior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abbey is a kind of church", "pln": ["(: cnet_isa_a504a4fc08 (IsA abbey church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abbey is a kind of convent", "pln": ["(: cnet_isa_4d6999cc6e (IsA abbey convent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abbey is a kind of monastery", "pln": ["(: cnet_isa_8e44f36e60 (IsA abbey monastery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abbot is a kind of superior", "pln": ["(: cnet_isa_e7493113aa (IsA abbot superior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abbreviation is a kind of shortening", "pln": ["(: cnet_isa_34f5a33238 (IsA abbreviation shortening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abbreviation is a kind of form", "pln": ["(: cnet_isa_3a1174239a (IsA abbreviation form) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abcoulomb is a kind of charge unit", "pln": ["(: cnet_isa_6f956fd5f2 (IsA abcoulomb charge_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abdication is a kind of resignation", "pln": ["(: cnet_isa_91ddb5dab8 (IsA abdication resignation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abdicator is a kind of quitter", "pln": ["(: cnet_isa_6321491b45 (IsA abdicator quitter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abdomen is a kind of body part", "pln": ["(: cnet_isa_ccedaec269 (IsA abdomen body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abdominal is a kind of skeletal muscle", "pln": ["(: cnet_isa_4ae2b51c6b (IsA abdominal skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abdominal actinomycosis is a kind of actinomycosis", "pln": ["(: cnet_isa_e694050054 (IsA abdominal_actinomycosis actinomycosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abdominal aorta is a kind of aorta", "pln": ["(: cnet_isa_18f04ee2e2 (IsA abdominal_aorta aorta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abdominal aortic aneurysm is a kind of aortic aneurysm", "pln": ["(: cnet_isa_b7c3080356 (IsA abdominal_aortic_aneurysm aortic_aneurysm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abdominal breathing is a kind of breathing", "pln": ["(: cnet_isa_e5326ff8c5 (IsA abdominal_breathing breathing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abdominal cavity is a kind of cavity", "pln": ["(: cnet_isa_ae5333a00a (IsA abdominal_cavity cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abdominal pregnancy is a kind of ectopic pregnancy", "pln": ["(: cnet_isa_a73956440f (IsA abdominal_pregnancy ectopic_pregnancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "abdominal wall is a kind of wall", "pln": ["(: cnet_isa_d8eeb85bad (IsA abdominal_wall wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abdominocentesis is a kind of centesis", "pln": ["(: cnet_isa_a23131d57c (IsA abdominocentesis centesis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abdominoplasty is a kind of plastic surgery", "pln": ["(: cnet_isa_f4b3cdba90 (IsA abdominoplasty plastic_surgery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abdominousness is a kind of fatness", "pln": ["(: cnet_isa_689abefc61 (IsA abdominousness fatness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abducen muscle is a kind of ocular muscle", "pln": ["(: cnet_isa_00e9aa3712 (IsA abducen_muscle ocular_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abducent is a kind of cranial nerve", "pln": ["(: cnet_isa_27f65f2a94 (IsA abducent cranial_nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abduction is a kind of capture", "pln": ["(: cnet_isa_f8c02c6ae2 (IsA abduction capture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abduction is a kind of motion", "pln": ["(: cnet_isa_622ad3ca56 (IsA abduction motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abductor is a kind of skeletal muscle", "pln": ["(: cnet_isa_7d9272aebf (IsA abductor skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abecedarian is a kind of sect", "pln": ["(: cnet_isa_76f5b772cb (IsA abecedarian sect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abecedarian is a kind of novice", "pln": ["(: cnet_isa_6c23f4d37b (IsA abecedarian novice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abecedarius is a kind of poem", "pln": ["(: cnet_isa_105380567b (IsA abecedarius poem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abelia is a kind of shrub", "pln": ["(: cnet_isa_8e47faccff (IsA abelia shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "abelian group is a kind of group", "pln": ["(: cnet_isa_2291f59c05 (IsA abelian_group group) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abelmoschus is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_b876a61273 (IsA abelmoschus dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abelmosk is a kind of mallow", "pln": ["(: cnet_isa_90d51dd4dd (IsA abelmosk mallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abenaki is a kind of algonquin", "pln": ["(: cnet_isa_ce4d21912d (IsA abenaki algonquin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aberdeen angus is a kind of beef", "pln": ["(: cnet_isa_ccdf936b16 (IsA aberdeen_angus beef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "aberrance is a kind of abnormality", "pln": ["(: cnet_isa_5efafaa7c8 (IsA aberrance abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aberrant is a kind of anomaly", "pln": ["(: cnet_isa_2a47cdd97c (IsA aberrant anomaly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aberration is a kind of optical phenomenon", "pln": ["(: cnet_isa_261e820b1b (IsA aberration optical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aberration is a kind of mental disorder", "pln": ["(: cnet_isa_dac4e93a97 (IsA aberration mental_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abetalipoproteinemia is a kind of genetic disease", "pln": ["(: cnet_isa_7805f5bff2 (IsA abetalipoproteinemia genetic_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abetalipoproteinemia is a kind of hypobetalipoproteinemia", "pln": ["(: cnet_isa_6e1df4c9f6 (IsA abetalipoproteinemia hypobetalipoproteinemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abetalipoproteinemia is a kind of lipidosis", "pln": ["(: cnet_isa_f7592ea91d (IsA abetalipoproteinemia lipidosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abetment is a kind of encouragement", "pln": ["(: cnet_isa_b517dffc14 (IsA abetment encouragement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abettor is a kind of accessory", "pln": ["(: cnet_isa_664f0b03fa (IsA abettor accessory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abeyance is a kind of inaction", "pln": ["(: cnet_isa_d7f2be7f5c (IsA abeyance inaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abfarad is a kind of capacitance unit", "pln": ["(: cnet_isa_07ac1069e5 (IsA abfarad capacitance_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abhenry is a kind of inductance unit", "pln": ["(: cnet_isa_31b77c56f8 (IsA abhenry inductance_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abhorrence is a kind of disgust", "pln": ["(: cnet_isa_865dd1a42a (IsA abhorrence disgust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abhorrence is a kind of hate", "pln": ["(: cnet_isa_3672ee61b5 (IsA abhorrence hate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abhorrer is a kind of signer", "pln": ["(: cnet_isa_86b7480926 (IsA abhorrer signer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abidance is a kind of continuance", "pln": ["(: cnet_isa_979a5ce80d (IsA abidance continuance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abience is a kind of urge", "pln": ["(: cnet_isa_3debc65981 (IsA abience urge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aby is a kind of gymnosperm genus", "pln": ["(: cnet_isa_0679cd1cc8 (IsA aby gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ability is a kind of quality", "pln": ["(: cnet_isa_11a5ca86da (IsA ability quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ability is a kind of cognition", "pln": ["(: cnet_isa_c012596346 (IsA ability cognition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abiogenesis is a kind of organic phenomenon", "pln": ["(: cnet_isa_6358098731 (IsA abiogenesis organic_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abiogenist is a kind of believer", "pln": ["(: cnet_isa_00fcb6f620 (IsA abiogenist believer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abiotrophy is a kind of degeneration", "pln": ["(: cnet_isa_3ef2c8e123 (IsA abiotrophy degeneration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "abjurer is a kind of person", "pln": ["(: cnet_isa_8e23c5fe31 (IsA abjurer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "abkhasian is a kind of circassian", "pln": ["(: cnet_isa_b1a5f7c9e0 (IsA abkhasian circassian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abkhazian is a kind of circassian", "pln": ["(: cnet_isa_8ae5af46bf (IsA abkhazian circassian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ablactation is a kind of bodily process", "pln": ["(: cnet_isa_7ac44404f3 (IsA ablactation bodily_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ablation is a kind of operation", "pln": ["(: cnet_isa_2357d66287 (IsA ablation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ablation is a kind of erosion", "pln": ["(: cnet_isa_2bcc36e44a (IsA ablation erosion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ablative is a kind of oblique", "pln": ["(: cnet_isa_15a4586ba8 (IsA ablative oblique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ablative absolute is a kind of constituent", "pln": ["(: cnet_isa_61cb380269 (IsA ablative_absolute constituent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ablaut is a kind of vowel", "pln": ["(: cnet_isa_0c16149d5f (IsA ablaut vowel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "able seaman is a kind of mariner", "pln": ["(: cnet_isa_8d9df6322b (IsA able_seaman mariner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ableism is a kind of discrimination", "pln": ["(: cnet_isa_76d8ae3f5a (IsA ableism discrimination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ablepharia is a kind of birth defect", "pln": ["(: cnet_isa_022f092897 (IsA ablepharia birth_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ablution is a kind of ritual", "pln": ["(: cnet_isa_9f4b98e79e (IsA ablution ritual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ablution is a kind of wash", "pln": ["(: cnet_isa_cd3ccf53b9 (IsA ablution wash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abnaki is a kind of algonquian", "pln": ["(: cnet_isa_0a52eefea3 (IsA abnaki algonquian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abnegation is a kind of renunciation", "pln": ["(: cnet_isa_fd4c69fde4 (IsA abnegation renunciation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abnegation is a kind of selflessness", "pln": ["(: cnet_isa_a293b4a4f1 (IsA abnegation selflessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abnegation is a kind of denial", "pln": ["(: cnet_isa_da57653e74 (IsA abnegation denial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abnegator is a kind of donor", "pln": ["(: cnet_isa_3cdb7d6b80 (IsA abnegator donor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abney level is a kind of surveyor s level", "pln": ["(: cnet_isa_c15fd66691 (IsA abney_level surveyor_s_level) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abnormal psychology is a kind of psychology", "pln": ["(: cnet_isa_18bdb73a77 (IsA abnormal_psychology psychology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abnormality is a kind of misbehavior", "pln": ["(: cnet_isa_bae8f6841d (IsA abnormality misbehavior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abnormality is a kind of unfamiliarity", "pln": ["(: cnet_isa_6a10d7d23d (IsA abnormality unfamiliarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abnormality is a kind of retardation", "pln": ["(: cnet_isa_5d7feca507 (IsA abnormality retardation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abnormality is a kind of physiological state", "pln": ["(: cnet_isa_bffdd79adf (IsA abnormality physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abo antibody is a kind of antibody", "pln": ["(: cnet_isa_62f6510849 (IsA abo_antibody antibody) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abo blood group system is a kind of classification system", "pln": ["(: cnet_isa_d5e3a038b9 (IsA abo_blood_group_system classification_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abocclusion is a kind of disorder", "pln": ["(: cnet_isa_d85aca88a7 (IsA abocclusion disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abohm is a kind of resistance unit", "pln": ["(: cnet_isa_8d2065b7fc (IsA abohm resistance_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abolition is a kind of termination", "pln": ["(: cnet_isa_b35332db3f (IsA abolition termination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abolitionism is a kind of doctrine", "pln": ["(: cnet_isa_a76a3269d6 (IsA abolitionism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abolitionist is a kind of reformer", "pln": ["(: cnet_isa_430f0396f6 (IsA abolitionist reformer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abomasum is a kind of stomach", "pln": ["(: cnet_isa_7c20999cbc (IsA abomasum stomach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abominable snowman is a kind of legendary creature", "pln": ["(: cnet_isa_ae5ee7a8cd (IsA abominable_snowman legendary_creature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abomination is a kind of transgression", "pln": ["(: cnet_isa_88c138bedf (IsA abomination transgression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abomination is a kind of person", "pln": ["(: cnet_isa_9f715616ab (IsA abomination person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abominator is a kind of hater", "pln": ["(: cnet_isa_7447218965 (IsA abominator hater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aborigine is a kind of person", "pln": ["(: cnet_isa_3056d1e40f (IsA aborigine person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "abort is a kind of termination", "pln": ["(: cnet_isa_3271571602 (IsA abort termination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aborticide is a kind of induced abortion", "pln": ["(: cnet_isa_537c71a079 (IsA aborticide induced_abortion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abortifacient is a kind of drug", "pln": ["(: cnet_isa_2efff47a32 (IsA abortifacient drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abortion is a kind of termination", "pln": ["(: cnet_isa_92497418ef (IsA abortion termination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abortion pill is a kind of abortifacient", "pln": ["(: cnet_isa_fb9d2b7d0f (IsA abortion_pill abortifacient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abortionist is a kind of doctor", "pln": ["(: cnet_isa_9f6e96fbc8 (IsA abortionist doctor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abortus is a kind of fetus", "pln": ["(: cnet_isa_fb286a8273 (IsA abortus fetus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "about face is a kind of change", "pln": ["(: cnet_isa_0113be65a3 (IsA about_face change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "about face is a kind of reversion", "pln": ["(: cnet_isa_1dfa88e722 (IsA about_face reversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "above is a kind of section", "pln": ["(: cnet_isa_47cff05a98 (IsA above section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abracadabra is a kind of gibberish", "pln": ["(: cnet_isa_0d60b8dd79 (IsA abracadabra gibberish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abrachia is a kind of abnormality", "pln": ["(: cnet_isa_a569b2efca (IsA abrachia abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abrader is a kind of tool", "pln": ["(: cnet_isa_821d46127d (IsA abrader tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abrading stone is a kind of abrader", "pln": ["(: cnet_isa_06594ad0af (IsA abrading_stone abrader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abraham s bosom is a kind of heaven", "pln": ["(: cnet_isa_358dfef57b (IsA abraham_s_bosom heaven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abramis is a kind of fish genus", "pln": ["(: cnet_isa_bc0ef3025f (IsA abramis fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abrasion is a kind of erosion", "pln": ["(: cnet_isa_11292b39d1 (IsA abrasion erosion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abrasion is a kind of wound", "pln": ["(: cnet_isa_bd96fd58a1 (IsA abrasion wound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abrasive is a kind of material", "pln": ["(: cnet_isa_7922e38e56 (IsA abrasive material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abrasiveness is a kind of disagreeableness", "pln": ["(: cnet_isa_ca8cbd6e69 (IsA abrasiveness disagreeableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abridger is a kind of redact", "pln": ["(: cnet_isa_5635271459 (IsA abridger redact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "abrocoma is a kind of mammal genus", "pln": ["(: cnet_isa_b89afcafb3 (IsA abrocoma mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abrocome is a kind of rodent", "pln": ["(: cnet_isa_0e637fa8b7 (IsA abrocome rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abrogation is a kind of cancellation", "pln": ["(: cnet_isa_0d83fbae86 (IsA abrogation cancellation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abrogator is a kind of authority", "pln": ["(: cnet_isa_c4d0f7dde8 (IsA abrogator authority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "abronia is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_a66f0e8b33 (IsA abronia caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abruptio placentae is a kind of disorder", "pln": ["(: cnet_isa_bd18f022b4 (IsA abruptio_placentae disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abruptness is a kind of discourtesy", "pln": ["(: cnet_isa_9e4e9638c4 (IsA abruptness discourtesy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abruptness is a kind of gradient", "pln": ["(: cnet_isa_0d4bb8aae4 (IsA abruptness gradient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abruptness is a kind of haste", "pln": ["(: cnet_isa_279d90efb1 (IsA abruptness haste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abscess is a kind of symptom", "pln": ["(: cnet_isa_cdf3065911 (IsA abscess symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abscessed tooth is a kind of abscess", "pln": ["(: cnet_isa_903581c940 (IsA abscessed_tooth abscess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abscissa is a kind of cartesian coordinate", "pln": ["(: cnet_isa_d537144c67 (IsA abscissa cartesian_coordinate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abscission is a kind of removal", "pln": ["(: cnet_isa_6b40dfafb0 (IsA abscission removal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abscission is a kind of shedding", "pln": ["(: cnet_isa_007a0c9c93 (IsA abscission shedding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absconder is a kind of fugitive", "pln": ["(: cnet_isa_654d73c47a (IsA absconder fugitive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abscondment is a kind of desertion", "pln": ["(: cnet_isa_57ce1d915f (IsA abscondment desertion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abseil is a kind of descent", "pln": ["(: cnet_isa_887f5d4e81 (IsA abseil descent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abseiler is a kind of descender", "pln": ["(: cnet_isa_067de950e6 (IsA abseiler descender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absence is a kind of nonattendance", "pln": ["(: cnet_isa_4557f76404 (IsA absence nonattendance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absence is a kind of lack", "pln": ["(: cnet_isa_9dcf02c003 (IsA absence lack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absence is a kind of time interval", "pln": ["(: cnet_isa_1918be07a6 (IsA absence time_interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absence without leave is a kind of desertion", "pln": ["(: cnet_isa_136930a5f6 (IsA absence_without_leave desertion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absentee is a kind of traveler", "pln": ["(: cnet_isa_7a2160aae9 (IsA absentee traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absentee ballot is a kind of ballot", "pln": ["(: cnet_isa_c42abb77ed (IsA absentee_ballot ballot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absentee rate is a kind of percentage", "pln": ["(: cnet_isa_09ec98ba20 (IsA absentee_rate percentage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absenteeism is a kind of absence", "pln": ["(: cnet_isa_f592aeb042 (IsA absenteeism absence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "absentmindedness is a kind of preoccupation", "pln": ["(: cnet_isa_2497176f08 (IsA absentmindedness preoccupation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absinth is a kind of liqueur", "pln": ["(: cnet_isa_1a3df1cf43 (IsA absinth liqueur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absolute is a kind of abstraction", "pln": ["(: cnet_isa_530e73ec75 (IsA absolute abstraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absolute alcohol is a kind of ethyl alcohol", "pln": ["(: cnet_isa_a37c7f8043 (IsA absolute_alcohol ethyl_alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absolute ceiling is a kind of ceiling", "pln": ["(: cnet_isa_31a932bdc2 (IsA absolute_ceiling ceiling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absolute magnitude is a kind of magnitude", "pln": ["(: cnet_isa_3e73ad9643 (IsA absolute_magnitude magnitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absolute pitch is a kind of hearing", "pln": ["(: cnet_isa_0d7ef780cb (IsA absolute_pitch hearing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absolute space is a kind of space", "pln": ["(: cnet_isa_1e8ca5e0c1 (IsA absolute_space space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absolute temperature is a kind of temperature", "pln": ["(: cnet_isa_9311ed775b (IsA absolute_temperature temperature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absolute threshold is a kind of threshold", "pln": ["(: cnet_isa_745de6cbf8 (IsA absolute_threshold threshold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absolute value is a kind of definite quantity", "pln": ["(: cnet_isa_4cd675e7f8 (IsA absolute_value definite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absolute zero is a kind of temperature", "pln": ["(: cnet_isa_3074b92c1c (IsA absolute_zero temperature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absoluteness is a kind of changelessness", "pln": ["(: cnet_isa_74c6fe9dcd (IsA absoluteness changelessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absolution is a kind of redemption", "pln": ["(: cnet_isa_b7bd4e1106 (IsA absolution redemption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absolution is a kind of condition", "pln": ["(: cnet_isa_4136f5b3ac (IsA absolution condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absolutism is a kind of doctrine", "pln": ["(: cnet_isa_1df71bbfb3 (IsA absolutism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absolutism is a kind of political orientation", "pln": ["(: cnet_isa_4363ec403b (IsA absolutism political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absolutism is a kind of dominance", "pln": ["(: cnet_isa_17aa466465 (IsA absolutism dominance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absolutist is a kind of disciple", "pln": ["(: cnet_isa_d50c2d8e7f (IsA absolutist disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absolver is a kind of pardoner", "pln": ["(: cnet_isa_c9e7cb44f8 (IsA absolver pardoner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absorbate is a kind of sorbate", "pln": ["(: cnet_isa_55e43b9f74 (IsA absorbate sorbate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absorbency is a kind of permeability", "pln": ["(: cnet_isa_25a72ada7b (IsA absorbency permeability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absorbent cotton is a kind of absorbent material", "pln": ["(: cnet_isa_a8864920e3 (IsA absorbent_cotton absorbent_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absorbent cotton is a kind of cotton", "pln": ["(: cnet_isa_b30216571e (IsA absorbent_cotton cotton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absorbent material is a kind of sorbent", "pln": ["(: cnet_isa_0641afd2b7 (IsA absorbent_material sorbent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absorber is a kind of absorbent material", "pln": ["(: cnet_isa_31c450ba2a (IsA absorber absorbent_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absorption is a kind of sorption", "pln": ["(: cnet_isa_106968556b (IsA absorption sorption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absorption is a kind of natural process", "pln": ["(: cnet_isa_7387908eb7 (IsA absorption natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "absorption band is a kind of optical phenomenon", "pln": ["(: cnet_isa_5125826783 (IsA absorption_band optical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absorption coefficient is a kind of coefficient", "pln": ["(: cnet_isa_4212b45890 (IsA absorption_coefficient coefficient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absorption indicator is a kind of indicator", "pln": ["(: cnet_isa_eb837296eb (IsA absorption_indicator indicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absorption spectrum is a kind of spectrum", "pln": ["(: cnet_isa_1e263f6f42 (IsA absorption_spectrum spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absorption unit is a kind of unit of measurement", "pln": ["(: cnet_isa_3dd360e253 (IsA absorption_unit unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absorptivity is a kind of physical property", "pln": ["(: cnet_isa_8577e85101 (IsA absorptivity physical_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "abstainer is a kind of person", "pln": ["(: cnet_isa_82b587eb0d (IsA abstainer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abstainer is a kind of religionist", "pln": ["(: cnet_isa_f77a6cc0b3 (IsA abstainer religionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abstemiousness is a kind of meagerness", "pln": ["(: cnet_isa_0a631a29a8 (IsA abstemiousness meagerness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abstemiousness is a kind of temperance", "pln": ["(: cnet_isa_8b09d76a4b (IsA abstemiousness temperance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abstinence is a kind of self denial", "pln": ["(: cnet_isa_a42c669e0d (IsA abstinence self_denial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abstinence is a kind of self discipline", "pln": ["(: cnet_isa_8abeaf1103 (IsA abstinence self_discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abstract is a kind of summary", "pln": ["(: cnet_isa_9bb8f81c28 (IsA abstract summary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abstract expressionism is a kind of artistic movement", "pln": ["(: cnet_isa_fc0a2a45b5 (IsA abstract_expressionism artistic_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abstractedness is a kind of preoccupation", "pln": ["(: cnet_isa_d1b710b9a4 (IsA abstractedness preoccupation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abstraction is a kind of entity", "pln": ["(: cnet_isa_6ea9f2b2af (IsA abstraction entity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abstraction is a kind of removal", "pln": ["(: cnet_isa_05ba0a465e (IsA abstraction removal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abstraction is a kind of painting", "pln": ["(: cnet_isa_1475de2ea8 (IsA abstraction painting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abstraction is a kind of concept", "pln": ["(: cnet_isa_0171f41930 (IsA abstraction concept) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abstraction is a kind of theorization", "pln": ["(: cnet_isa_c6af4e89c5 (IsA abstraction theorization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "abstractionism is a kind of genre", "pln": ["(: cnet_isa_98e0d2769c (IsA abstractionism genre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abstractionism is a kind of representation", "pln": ["(: cnet_isa_f941a88101 (IsA abstractionism representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abstractionist is a kind of painter", "pln": ["(: cnet_isa_6f02aa510d (IsA abstractionist painter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abstractness is a kind of immateriality", "pln": ["(: cnet_isa_f76a48edef (IsA abstractness immateriality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abstractor is a kind of writer", "pln": ["(: cnet_isa_db1f9c0088 (IsA abstractor writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absurd is a kind of situation", "pln": ["(: cnet_isa_53259679a4 (IsA absurd situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absurdity is a kind of folly", "pln": ["(: cnet_isa_d0b56a6f2b (IsA absurdity folly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "absurdity is a kind of nonsense", "pln": ["(: cnet_isa_e805aa15d2 (IsA absurdity nonsense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abudefduf is a kind of fish genus", "pln": ["(: cnet_isa_b386ec184f (IsA abudefduf fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abulia is a kind of psychological state", "pln": ["(: cnet_isa_8ffac1d596 (IsA abulia psychological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abundance is a kind of quantity", "pln": ["(: cnet_isa_5bf5a2e6f6 (IsA abundance quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abundance is a kind of ratio", "pln": ["(: cnet_isa_7a88cc9dd3 (IsA abundance ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abuse is a kind of disrespect", "pln": ["(: cnet_isa_373133c849 (IsA abuse disrespect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abuser is a kind of wrongdoer", "pln": ["(: cnet_isa_fb8fb06461 (IsA abuser wrongdoer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abutilon is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_2dded4fbe9 (IsA abutilon dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abutment is a kind of support", "pln": ["(: cnet_isa_5942665f4c (IsA abutment support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abutment is a kind of point", "pln": ["(: cnet_isa_bb8f04d88b (IsA abutment point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abutment arch is a kind of arch", "pln": ["(: cnet_isa_549ea00438 (IsA abutment_arch arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abutter is a kind of landowner", "pln": ["(: cnet_isa_56fd574456 (IsA abutter landowner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abvolt is a kind of potential unit", "pln": ["(: cnet_isa_99a928b819 (IsA abvolt potential_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "abwatt is a kind of power unit", "pln": ["(: cnet_isa_8b96476a8f (IsA abwatt power_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abyss is a kind of chasm", "pln": ["(: cnet_isa_82387bfa6e (IsA abyss chasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abyssal zone is a kind of ocean floor", "pln": ["(: cnet_isa_0bbd29ae81 (IsA abyssal_zone ocean_floor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abyssinian is a kind of domestic cat", "pln": ["(: cnet_isa_c03e0290b8 (IsA abyssinian domestic_cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "abyssinian banana is a kind of herb", "pln": ["(: cnet_isa_f028fb33dc (IsA abyssinian_banana herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acacia is a kind of tree", "pln": ["(: cnet_isa_a75ff387a3 (IsA acacia tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "academia is a kind of world", "pln": ["(: cnet_isa_2e67f357c6 (IsA academia world) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "academic administrator is a kind of administrator", "pln": ["(: cnet_isa_458ad0b686 (IsA academic_administrator administrator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "academic costume is a kind of costume", "pln": ["(: cnet_isa_0b2fc4a49b (IsA academic_costume costume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "academic degree is a kind of award", "pln": ["(: cnet_isa_c6f0a10cc1 (IsA academic_degree award) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "academic department is a kind of department", "pln": ["(: cnet_isa_2ac34187b9 (IsA academic_department department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "academic freedom is a kind of freedom", "pln": ["(: cnet_isa_085c7f1110 (IsA academic_freedom freedom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "academic gown is a kind of gown", "pln": ["(: cnet_isa_dc7df542a2 (IsA academic_gown gown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "academic program is a kind of educational program", "pln": ["(: cnet_isa_a2dc84a9f2 (IsA academic_program educational_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "academic relation is a kind of professional relation", "pln": ["(: cnet_isa_4e47cd3deb (IsA academic_relation professional_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "academic requirement is a kind of prerequisite", "pln": ["(: cnet_isa_ed3d869e88 (IsA academic_requirement prerequisite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "academician is a kind of educator", "pln": ["(: cnet_isa_2fd09154e8 (IsA academician educator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "academician is a kind of honoree", "pln": ["(: cnet_isa_265cfcf8c6 (IsA academician honoree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "academician is a kind of scholar", "pln": ["(: cnet_isa_aac79d7bb3 (IsA academician scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "academicianship is a kind of position", "pln": ["(: cnet_isa_80a6db5bdb (IsA academicianship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "academy is a kind of establishment", "pln": ["(: cnet_isa_03df6d2e09 (IsA academy establishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "academy is a kind of institution", "pln": ["(: cnet_isa_55ce0b502d (IsA academy institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "academy is a kind of school", "pln": ["(: cnet_isa_ba5680bd77 (IsA academy school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "academy is a kind of secondary school", "pln": ["(: cnet_isa_08cf4f6e19 (IsA academy secondary_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "academy award is a kind of award", "pln": ["(: cnet_isa_36ffdf5d06 (IsA academy_award award) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "academy of motion picture art and science is a kind of academy", "pln": ["(: cnet_isa_978ec72b1a (IsA academy_of_motion_picture_art_and_science academy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "academy of television art and science is a kind of academy", "pln": ["(: cnet_isa_259468ef55 (IsA academy_of_television_art_and_science academy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acadian is a kind of french canadian", "pln": ["(: cnet_isa_4c7c551d38 (IsA acadian french_canadian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acalypha is a kind of rosid dicot genus", "pln": ["(: cnet_isa_48ae62ddff (IsA acalypha rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acanthaceae is a kind of asterid dicot family", "pln": ["(: cnet_isa_6b181be5d4 (IsA acanthaceae asterid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acanthion is a kind of craniometric point", "pln": ["(: cnet_isa_22630ea081 (IsA acanthion craniometric_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acanthisitta is a kind of bird genus", "pln": ["(: cnet_isa_3f019be33a (IsA acanthisitta bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acanthocephala is a kind of phylum", "pln": ["(: cnet_isa_f04d97e113 (IsA acanthocephala phylum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acanthocephalan is a kind of worm", "pln": ["(: cnet_isa_ad67cf52c9 (IsA acanthocephalan worm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acanthocereus is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_19199dcfa8 (IsA acanthocereus caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acanthocybium is a kind of fish genus", "pln": ["(: cnet_isa_583af3a814 (IsA acanthocybium fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acanthocyte is a kind of red blood cell", "pln": ["(: cnet_isa_2d25b33a8e (IsA acanthocyte red_blood_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acanthocytosis is a kind of blood disease", "pln": ["(: cnet_isa_1d08beb3f8 (IsA acanthocytosis blood_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acantholysis is a kind of skin disease", "pln": ["(: cnet_isa_6fc2847eec (IsA acantholysis skin_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acanthoma is a kind of tumor", "pln": ["(: cnet_isa_f7bd0b90f1 (IsA acanthoma tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acanthophis is a kind of reptile genus", "pln": ["(: cnet_isa_185b490793 (IsA acanthophis reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acanthopterygii is a kind of animal order", "pln": ["(: cnet_isa_9647e42593 (IsA acanthopterygii animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acanthoscelide is a kind of arthropod genus", "pln": ["(: cnet_isa_5f0c2606cd (IsA acanthoscelide arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acanthosis is a kind of skin disease", "pln": ["(: cnet_isa_4e211cc764 (IsA acanthosis skin_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acanthosis nigrican is a kind of skin disease", "pln": ["(: cnet_isa_d2c3bd014e (IsA acanthosis_nigrican skin_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acanthuridae is a kind of fish family", "pln": ["(: cnet_isa_b5657f8dd4 (IsA acanthuridae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acanthurus is a kind of fish genus", "pln": ["(: cnet_isa_e39dbc37b9 (IsA acanthurus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acanthus is a kind of herb", "pln": ["(: cnet_isa_ead911a4b9 (IsA acanthus herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acapulco gold is a kind of cannabis", "pln": ["(: cnet_isa_794d4f1c16 (IsA acapulco_gold cannabis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acardia is a kind of abnormality", "pln": ["(: cnet_isa_26ccce72ce (IsA acardia abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acariasis is a kind of infestation", "pln": ["(: cnet_isa_6833157f74 (IsA acariasis infestation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acaricide is a kind of pesticide", "pln": ["(: cnet_isa_b5e9631f03 (IsA acaricide pesticide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acarid is a kind of mite", "pln": ["(: cnet_isa_fbabf39a42 (IsA acarid mite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acaridae is a kind of arthropod family", "pln": ["(: cnet_isa_7d506846be (IsA acaridae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acarina is a kind of animal order", "pln": ["(: cnet_isa_fd88725d01 (IsA acarina animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acarine is a kind of arachnid", "pln": ["(: cnet_isa_18e08b9a19 (IsA acarine arachnid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acaroid resin is a kind of natural resin", "pln": ["(: cnet_isa_60296dd36f (IsA acaroid_resin natural_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acarophobia is a kind of zoophobia", "pln": ["(: cnet_isa_b0d7ad0237 (IsA acarophobia zoophobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acarus is a kind of mite", "pln": ["(: cnet_isa_413a5d0a0c (IsA acarus mite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acatalectic is a kind of line of poetry", "pln": ["(: cnet_isa_6c3797520b (IsA acatalectic line_of_poetry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acataphasia is a kind of brain disorder", "pln": ["(: cnet_isa_97e3450ae6 (IsA acataphasia brain_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acathexia is a kind of physiological state", "pln": ["(: cnet_isa_f0221abca2 (IsA acathexia physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "acathexis is a kind of libidinal energy", "pln": ["(: cnet_isa_99af85bc2f (IsA acathexis libidinal_energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accelerando is a kind of tempo", "pln": ["(: cnet_isa_8ab4827de1 (IsA accelerando tempo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acceleration is a kind of speed", "pln": ["(: cnet_isa_d5e44d4605 (IsA acceleration speed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acceleration is a kind of change", "pln": ["(: cnet_isa_793c2cf300 (IsA acceleration change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acceleration is a kind of rate", "pln": ["(: cnet_isa_1c86815db5 (IsA acceleration rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "acceleration unit is a kind of unit of measurement", "pln": ["(: cnet_isa_4d0157127c (IsA acceleration_unit unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accelerator is a kind of pedal", "pln": ["(: cnet_isa_39cb201cca (IsA accelerator pedal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accelerator is a kind of scientific instrument", "pln": ["(: cnet_isa_5e74eb0dd5 (IsA accelerator scientific_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accelerator is a kind of valve", "pln": ["(: cnet_isa_a897babc53 (IsA accelerator valve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accelerometer is a kind of measuring instrument", "pln": ["(: cnet_isa_3760a39f16 (IsA accelerometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accent is a kind of pronunciation", "pln": ["(: cnet_isa_f6996daf2d (IsA accent pronunciation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accent is a kind of diacritical mark", "pln": ["(: cnet_isa_f6920ddb5e (IsA accent diacritical_mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accentor is a kind of oscine", "pln": ["(: cnet_isa_25cc867d88 (IsA accentor oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "accentual system is a kind of language system", "pln": ["(: cnet_isa_af840067f4 (IsA accentual_system language_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accentuation is a kind of stress", "pln": ["(: cnet_isa_4c6279963a (IsA accentuation stress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acceptability is a kind of satisfactoriness", "pln": ["(: cnet_isa_11d591105f (IsA acceptability satisfactoriness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acceptance is a kind of acquisition", "pln": ["(: cnet_isa_58e87f8261 (IsA acceptance acquisition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acceptance is a kind of assent", "pln": ["(: cnet_isa_f82f9a1a0b (IsA acceptance assent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acceptance is a kind of draft", "pln": ["(: cnet_isa_532a299c28 (IsA acceptance draft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acceptance is a kind of situation", "pln": ["(: cnet_isa_6dcf9638a1 (IsA acceptance situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acceptance sampling is a kind of quality control", "pln": ["(: cnet_isa_97b8a9bd67 (IsA acceptance_sampling quality_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acceptance sampling is a kind of sample distribution", "pln": ["(: cnet_isa_254163e51a (IsA acceptance_sampling sample_distribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acceptation is a kind of acceptance", "pln": ["(: cnet_isa_06f92af4a1 (IsA acceptation acceptance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acceptor is a kind of compound", "pln": ["(: cnet_isa_54e17f44f2 (IsA acceptor compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acceptor is a kind of drawee", "pln": ["(: cnet_isa_dc585edebe (IsA acceptor drawee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "access is a kind of approach", "pln": ["(: cnet_isa_f1df0af360 (IsA access approach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "access is a kind of way", "pln": ["(: cnet_isa_0fc69b3f4c (IsA access way) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "access is a kind of right", "pln": ["(: cnet_isa_b521d82125 (IsA access right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "access is a kind of operation", "pln": ["(: cnet_isa_e9ca5fee11 (IsA access operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "access code is a kind of code", "pln": ["(: cnet_isa_c3b95ab01a (IsA access_code code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "access road is a kind of road", "pln": ["(: cnet_isa_140e9fb604 (IsA access_road road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "access time is a kind of time interval", "pln": ["(: cnet_isa_60b61fbd58 (IsA access_time time_interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accession is a kind of attainment", "pln": ["(: cnet_isa_28d3761308 (IsA accession attainment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accession is a kind of property right", "pln": ["(: cnet_isa_c2e53701dc (IsA accession property_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accession is a kind of agreement", "pln": ["(: cnet_isa_8c3f8f92cc (IsA accession agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accession is a kind of acquisition", "pln": ["(: cnet_isa_95a6495b54 (IsA accession acquisition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "accession is a kind of increase", "pln": ["(: cnet_isa_32beb4aee5 (IsA accession increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accessory is a kind of clothing", "pln": ["(: cnet_isa_aed24e594e (IsA accessory clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accessory is a kind of component", "pln": ["(: cnet_isa_56edcd6658 (IsA accessory component) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accessory is a kind of criminal", "pln": ["(: cnet_isa_ea0bea9e28 (IsA accessory criminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accessory after fact is a kind of accessory", "pln": ["(: cnet_isa_40d775aa2f (IsA accessory_after_fact accessory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accessory before fact is a kind of accessory", "pln": ["(: cnet_isa_7edc1a39ed (IsA accessory_before_fact accessory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accessory cephalic vein is a kind of vein", "pln": ["(: cnet_isa_8a8a463781 (IsA accessory_cephalic_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accessory during fact is a kind of accessory", "pln": ["(: cnet_isa_79b546a689 (IsA accessory_during_fact accessory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accessory fruit is a kind of fruit", "pln": ["(: cnet_isa_0f7554dd4c (IsA accessory_fruit fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accessory hemiazygo vein is a kind of vein", "pln": ["(: cnet_isa_88878973bd (IsA accessory_hemiazygo_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accessory nerve is a kind of cranial nerve", "pln": ["(: cnet_isa_b5caec0039 (IsA accessory_nerve cranial_nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accessory vertebral vein is a kind of vein", "pln": ["(: cnet_isa_2d11b55721 (IsA accessory_vertebral_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accident is a kind of happening", "pln": ["(: cnet_isa_e9b0840681 (IsA accident happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accident is a kind of mishap", "pln": ["(: cnet_isa_6bb95763b0 (IsA accident mishap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accidental is a kind of musical notation", "pln": ["(: cnet_isa_0bad4e1752 (IsA accidental musical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accipiter is a kind of bird genus", "pln": ["(: cnet_isa_60367cedd2 (IsA accipiter bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accipitridae is a kind of bird family", "pln": ["(: cnet_isa_37db0131a8 (IsA accipitridae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accipitriforme is a kind of bird of prey", "pln": ["(: cnet_isa_36355d12d4 (IsA accipitriforme bird_of_prey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acclaim is a kind of approval", "pln": ["(: cnet_isa_cc41d998be (IsA acclaim approval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acclimatization is a kind of adaptation", "pln": ["(: cnet_isa_f0a82f45ed (IsA acclimatization adaptation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accommodating len implant is a kind of len implant", "pln": ["(: cnet_isa_5c647579f8 (IsA accommodating_len_implant len_implant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accommodation is a kind of aid", "pln": ["(: cnet_isa_f1f0316e6a (IsA accommodation aid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accommodation is a kind of living quarter", "pln": ["(: cnet_isa_bbe2b73394 (IsA accommodation living_quarter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "accommodation is a kind of developmental learning", "pln": ["(: cnet_isa_7612640f75 (IsA accommodation developmental_learning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accommodation is a kind of settlement", "pln": ["(: cnet_isa_49f63f43c4 (IsA accommodation settlement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accommodation is a kind of alteration", "pln": ["(: cnet_isa_3bef56f7d8 (IsA accommodation alteration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "accommodation endorser is a kind of endorser", "pln": ["(: cnet_isa_0043aa8c32 (IsA accommodation_endorser endorser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accommodation ladder is a kind of sea ladder", "pln": ["(: cnet_isa_f5533b8ef6 (IsA accommodation_ladder sea_ladder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accommodation reflex is a kind of reflex", "pln": ["(: cnet_isa_20301b2531 (IsA accommodation_reflex reflex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accompaniment is a kind of part", "pln": ["(: cnet_isa_44e6abcaae (IsA accompaniment part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accompaniment is a kind of happening", "pln": ["(: cnet_isa_bed66c6edc (IsA accompaniment happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accompanist is a kind of musician", "pln": ["(: cnet_isa_551c7f9d24 (IsA accompanist musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "accompanying vein is a kind of vein", "pln": ["(: cnet_isa_0b6c1dd8e8 (IsA accompanying_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accomplice is a kind of assistant", "pln": ["(: cnet_isa_8fa2418721 (IsA accomplice assistant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accomplishment is a kind of action", "pln": ["(: cnet_isa_203d549f5f (IsA accomplishment action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accord is a kind of compatibility", "pln": ["(: cnet_isa_f93a479bdc (IsA accord compatibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "accord is a kind of agreement", "pln": ["(: cnet_isa_bef2f74662 (IsA accord agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accord and satisfaction is a kind of settlement", "pln": ["(: cnet_isa_fd48a548dd (IsA accord_and_satisfaction settlement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accordance is a kind of giving", "pln": ["(: cnet_isa_0779dce75f (IsA accordance giving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "accordian is a kind of musical instrument", "pln": ["(: cnet_isa_802f70a9cf (IsA accordian musical_instrument) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accordion is a kind of instrument", "pln": ["(: cnet_isa_b961bcd595 (IsA accordion instrument) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accordion is a kind of accordion", "pln": ["(: cnet_isa_b1cb4b4fa9 (IsA accordion accordion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accordion is a kind of free reed instrument", "pln": ["(: cnet_isa_3b7d53ea78 (IsA accordion free_reed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accordion is a kind of keyboard instrument", "pln": ["(: cnet_isa_1a5d8afd65 (IsA accordion keyboard_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accordionist is a kind of musician", "pln": ["(: cnet_isa_c4d35fb6bc (IsA accordionist musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "account is a kind of importance", "pln": ["(: cnet_isa_3591088610 (IsA account importance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "account is a kind of profit", "pln": ["(: cnet_isa_cf952e8765 (IsA account profit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "account is a kind of statement", "pln": ["(: cnet_isa_3d25de7514 (IsA account statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "account is a kind of relationship", "pln": ["(: cnet_isa_09653d4bd3 (IsA account relationship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "account executive is a kind of businessperson", "pln": ["(: cnet_isa_cf8b7cf207 (IsA account_executive businessperson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "account payable is a kind of indebtedness", "pln": ["(: cnet_isa_c79c765815 (IsA account_payable indebtedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accountability is a kind of responsibility", "pln": ["(: cnet_isa_5adcb7faea (IsA accountability responsibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accountancy is a kind of occupation", "pln": ["(: cnet_isa_bced6426f1 (IsA accountancy occupation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accountant is a kind of businessperson", "pln": ["(: cnet_isa_b19978560b (IsA accountant businessperson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accountantship is a kind of position", "pln": ["(: cnet_isa_0f81ac4787 (IsA accountantship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accounting is a kind of system", "pln": ["(: cnet_isa_4fdcb2ec79 (IsA accounting system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accounting is a kind of explanation", "pln": ["(: cnet_isa_2bfd43d5b1 (IsA accounting explanation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accounting is a kind of register", "pln": ["(: cnet_isa_54c2562fc0 (IsA accounting register) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accounting data is a kind of data", "pln": ["(: cnet_isa_071fc4b3fb (IsA accounting_data data) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accounting firm is a kind of firm", "pln": ["(: cnet_isa_e0354a5fde (IsA accounting_firm firm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accounting principle is a kind of principle", "pln": ["(: cnet_isa_475ec3eff7 (IsA accounting_principle principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "account payable is a kind of liability", "pln": ["(: cnet_isa_0abfa0875c (IsA account_payable liability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "account receivable is a kind of asset", "pln": ["(: cnet_isa_bfbf6bbd6e (IsA account_receivable asset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accreditation is a kind of certification", "pln": ["(: cnet_isa_926d159cad (IsA accreditation certification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accretion is a kind of increase", "pln": ["(: cnet_isa_a90e5f27e3 (IsA accretion increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accretion is a kind of inheritance", "pln": ["(: cnet_isa_290241b797 (IsA accretion inheritance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "accretion is a kind of addition", "pln": ["(: cnet_isa_2c6171a0df (IsA accretion addition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accrual basis is a kind of accounting", "pln": ["(: cnet_isa_1348d7b32e (IsA accrual_basis accounting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acculturation is a kind of content", "pln": ["(: cnet_isa_64bc07b41d (IsA acculturation content) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acculturation is a kind of education", "pln": ["(: cnet_isa_fe6658bf67 (IsA acculturation education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accumulation is a kind of increase", "pln": ["(: cnet_isa_e461c82c34 (IsA accumulation increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accumulation is a kind of net income", "pln": ["(: cnet_isa_ffeefbce71 (IsA accumulation net_income) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accumulator is a kind of register", "pln": ["(: cnet_isa_efe0736ad0 (IsA accumulator register) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accuracy is a kind of quality", "pln": ["(: cnet_isa_0a67668ce8 (IsA accuracy quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "accusation is a kind of assertion", "pln": ["(: cnet_isa_adb9c9b833 (IsA accusation assertion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accusation is a kind of charge", "pln": ["(: cnet_isa_41e8c15ece (IsA accusation charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accusative is a kind of oblique", "pln": ["(: cnet_isa_9166433e88 (IsA accusative oblique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accused is a kind of defendant", "pln": ["(: cnet_isa_812f3d7ac2 (IsA accused defendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "accuser is a kind of disputant", "pln": ["(: cnet_isa_5ca324426e (IsA accuser disputant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ace is a kind of serve", "pln": ["(: cnet_isa_9d9c1610fe (IsA ace serve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ace is a kind of playing card", "pln": ["(: cnet_isa_7d181843cc (IsA ace playing_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ace is a kind of expert", "pln": ["(: cnet_isa_2d38606bcc (IsA ace expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ace inhibitor is a kind of antihypertensive", "pln": ["(: cnet_isa_e39916c099 (IsA ace_inhibitor antihypertensive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ace of club is a kind of ace", "pln": ["(: cnet_isa_28cdb3a6be (IsA ace_of_club ace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ace of diamond is a kind of ace", "pln": ["(: cnet_isa_ec409163dd (IsA ace_of_diamond ace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ace of heart is a kind of ace", "pln": ["(: cnet_isa_34be14dc53 (IsA ace_of_heart ace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ace of spade is a kind of ace", "pln": ["(: cnet_isa_9479b752f5 (IsA ace_of_spade ace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acebutolol is a kind of beta blocker", "pln": ["(: cnet_isa_619e631dfd (IsA acebutolol beta_blocker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acentric chromosome is a kind of chromosome", "pln": ["(: cnet_isa_d4c9ee6c08 (IsA acentric_chromosome chromosome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acephalia is a kind of abnormality", "pln": ["(: cnet_isa_abcd6e97e5 (IsA acephalia abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acer is a kind of dicot genus", "pln": ["(: cnet_isa_60d7f873cb (IsA acer dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aceraceae is a kind of dicot family", "pln": ["(: cnet_isa_97652aa391 (IsA aceraceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acerate leaf is a kind of simple leaf", "pln": ["(: cnet_isa_d6ed1127cf (IsA acerate_leaf simple_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "acerbity is a kind of bitterness", "pln": ["(: cnet_isa_68fcf4382c (IsA acerbity bitterness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acerbity is a kind of sourness", "pln": ["(: cnet_isa_42b3499d9f (IsA acerbity sourness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "acerola is a kind of berry", "pln": ["(: cnet_isa_639a52c5a8 (IsA acerola berry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acervulus is a kind of fruiting body", "pln": ["(: cnet_isa_1da6166adb (IsA acervulus fruiting_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acetabulum is a kind of socket", "pln": ["(: cnet_isa_1336a55c36 (IsA acetabulum socket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acetal is a kind of organic compound", "pln": ["(: cnet_isa_6e489b35a1 (IsA acetal organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acetaldehyde is a kind of aldehyde", "pln": ["(: cnet_isa_826504262d (IsA acetaldehyde aldehyde) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acetaldol is a kind of aldol", "pln": ["(: cnet_isa_77046f2820 (IsA acetaldol aldol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acetamide is a kind of amide", "pln": ["(: cnet_isa_9030952ac3 (IsA acetamide amide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acetaminophen is a kind of pain reliever and fever reducer", "pln": ["(: cnet_isa_8d126e981b (IsA acetaminophen pain_reliever_and_fever_reducer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "acetaminophen is a kind of analgesic", "pln": ["(: cnet_isa_0ab844d396 (IsA acetaminophen analgesic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acetanilide is a kind of analgesic", "pln": ["(: cnet_isa_e76b259ed7 (IsA acetanilide analgesic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acetate is a kind of salt", "pln": ["(: cnet_isa_46bea0c05b (IsA acetate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acetate disk is a kind of disk", "pln": ["(: cnet_isa_f790e5d681 (IsA acetate_disk disk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acetate rayon is a kind of rayon", "pln": ["(: cnet_isa_b0f3bda6bb (IsA acetate_rayon rayon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acetic acid is a kind of carboxylic acid", "pln": ["(: cnet_isa_8855bbf948 (IsA acetic_acid carboxylic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acetic anhydride is a kind of anhydride", "pln": ["(: cnet_isa_9d53b7dc1a (IsA acetic_anhydride anhydride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acetin is a kind of acetate", "pln": ["(: cnet_isa_98c27af6da (IsA acetin acetate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acetoacetic acid is a kind of ketone body", "pln": ["(: cnet_isa_e65b204aca (IsA acetoacetic_acid ketone_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acetone is a kind of ketone", "pln": ["(: cnet_isa_e7505ba1a0 (IsA acetone ketone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acetone is a kind of solvent", "pln": ["(: cnet_isa_d7eb39e167 (IsA acetone solvent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acetophenetidin is a kind of analgesic", "pln": ["(: cnet_isa_74236eb325 (IsA acetophenetidin analgesic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acetum is a kind of acetic acid", "pln": ["(: cnet_isa_48a2e9f827 (IsA acetum acetic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acetyl is a kind of acyl", "pln": ["(: cnet_isa_f949f03bc1 (IsA acetyl acyl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acetyl chloride is a kind of acyl halide", "pln": ["(: cnet_isa_dd39d886d6 (IsA acetyl_chloride acyl_halide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acetylation is a kind of acylation", "pln": ["(: cnet_isa_21c7105a87 (IsA acetylation acylation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acetylcholine is a kind of neurotransmitter", "pln": ["(: cnet_isa_9677baeff2 (IsA acetylcholine neurotransmitter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acetylene is a kind of aliphatic compound", "pln": ["(: cnet_isa_e91a14edf5 (IsA acetylene aliphatic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "achaian is a kind of hellene", "pln": ["(: cnet_isa_028c62b20d (IsA achaian hellene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ache is a kind of pain", "pln": ["(: cnet_isa_fa0e8a34a8 (IsA ache pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "achene is a kind of fruit", "pln": ["(: cnet_isa_2f9e044836 (IsA achene fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acherontia is a kind of arthropod genus", "pln": ["(: cnet_isa_3c2253b5d7 (IsA acherontia arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "acheson process is a kind of industrial process", "pln": ["(: cnet_isa_5242ad9d0c (IsA acheson_process industrial_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "acheta is a kind of arthropod genus", "pln": ["(: cnet_isa_64e7c3bacb (IsA acheta arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "achimenes is a kind of flower", "pln": ["(: cnet_isa_c75cee3c44 (IsA achimenes flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "achromatic lens is a kind of compound lens", "pln": ["(: cnet_isa_b996820db3 (IsA achromatic_lens compound_lens) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "achievability is a kind of possibility", "pln": ["(: cnet_isa_fab77de5de (IsA achievability possibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "achiever is a kind of person", "pln": ["(: cnet_isa_4f9d56c9bd (IsA achiever person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "achillea is a kind of herb", "pln": ["(: cnet_isa_edbb740506 (IsA achillea herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "achille heel is a kind of weak part", "pln": ["(: cnet_isa_7815100928 (IsA achille_heel weak_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "achille tendon is a kind of tendon", "pln": ["(: cnet_isa_6494ea8a94 (IsA achille_tendon tendon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "achimene is a kind of flower", "pln": ["(: cnet_isa_24365a6446 (IsA achimene flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "achira is a kind of canna", "pln": ["(: cnet_isa_ea039a977f (IsA achira canna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "achlorhydria is a kind of disorder", "pln": ["(: cnet_isa_042c8ed221 (IsA achlorhydria disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "achoerodus is a kind of fish genus", "pln": ["(: cnet_isa_fd8ae7cb08 (IsA achoerodus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acholia is a kind of disorder", "pln": ["(: cnet_isa_04ba1f9ae6 (IsA acholia disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "achomawi is a kind of shastan", "pln": ["(: cnet_isa_056fda4143 (IsA achomawi shastan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "achomawi is a kind of hoka", "pln": ["(: cnet_isa_2e2fa51d38 (IsA achomawi hoka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "achondrite is a kind of rock", "pln": ["(: cnet_isa_a1847a2949 (IsA achondrite rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "achondroplasia is a kind of genetic disease", "pln": ["(: cnet_isa_544a7b4ef3 (IsA achondroplasia genetic_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "achra is a kind of dicot genus", "pln": ["(: cnet_isa_c44893c7dd (IsA achra dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "achromatic color is a kind of color", "pln": ["(: cnet_isa_9d99843f8e (IsA achromatic_color color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "achromatic len is a kind of compound len", "pln": ["(: cnet_isa_197d6d230f (IsA achromatic_len compound_len) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "achromatic vision is a kind of sight", "pln": ["(: cnet_isa_f0a4eefd5e (IsA achromatic_vision sight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "achromatin is a kind of body substance", "pln": ["(: cnet_isa_862825a247 (IsA achromatin body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "achromia is a kind of colorlessness", "pln": ["(: cnet_isa_128805bacd (IsA achromia colorlessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "achylia is a kind of disorder", "pln": ["(: cnet_isa_bb6c38b0f5 (IsA achylia disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acicula is a kind of part", "pln": ["(: cnet_isa_6f302763b0 (IsA acicula part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acid is a kind of lysergic acid diethylamide", "pln": ["(: cnet_isa_81c5ad0580 (IsA acid lysergic_acid_diethylamide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acid is a kind of compound", "pln": ["(: cnet_isa_a22d174fd7 (IsA acid compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acid base equilibrium is a kind of chemical equilibrium", "pln": ["(: cnet_isa_0b59ed3467 (IsA acid_base_equilibrium chemical_equilibrium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acid base indicator is a kind of indicator", "pln": ["(: cnet_isa_4d99d000f8 (IsA acid_base_indicator indicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acid dye is a kind of dye", "pln": ["(: cnet_isa_4d2d89c4f8 (IsA acid_dye dye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "acid head is a kind of head", "pln": ["(: cnet_isa_aa172be1c3 (IsA acid_head head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "acinos is a kind of asterid dicot genus", "pln": ["(: cnet_isa_b47a6a36e6 (IsA acinos asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acid rain is a kind of air pollution", "pln": ["(: cnet_isa_b7e88e87a4 (IsA acid_rain air_pollution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acid test is a kind of appraisal", "pln": ["(: cnet_isa_375b5e17bf (IsA acid_test appraisal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acid value is a kind of definite quantity", "pln": ["(: cnet_isa_0dc3e07ece (IsA acid_value definite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acidemia is a kind of blood disease", "pln": ["(: cnet_isa_6bba8e0b57 (IsA acidemia blood_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acidic hydrogen is a kind of hydrogen atom", "pln": ["(: cnet_isa_5754b9c542 (IsA acidic_hydrogen hydrogen_atom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acidification is a kind of natural process", "pln": ["(: cnet_isa_9fb7bf9809 (IsA acidification natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acidimetry is a kind of volumetric analysis", "pln": ["(: cnet_isa_52169f8bd9 (IsA acidimetry volumetric_analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acidity is a kind of ph", "pln": ["(: cnet_isa_0eef7a7aef (IsA acidity ph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acidity is a kind of sour", "pln": ["(: cnet_isa_bdf0bea35f (IsA acidity sour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acidophil is a kind of bacteria", "pln": ["(: cnet_isa_be0aa465db (IsA acidophil bacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acidophilus is a kind of lactobacillus", "pln": ["(: cnet_isa_047282f0a7 (IsA acidophilus lactobacillus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acidophilus is a kind of probiotic microflora", "pln": ["(: cnet_isa_523c63becb (IsA acidophilus probiotic_microflora) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acidophilus milk is a kind of milk", "pln": ["(: cnet_isa_d2f7918565 (IsA acidophilus_milk milk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acidosis is a kind of pathology", "pln": ["(: cnet_isa_4c3c3d983b (IsA acidosis pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acinonyx is a kind of mammal genus", "pln": ["(: cnet_isa_bf26f2eb6b (IsA acinonyx mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acino is a kind of asterid dicot genus", "pln": ["(: cnet_isa_8ce2d432fd (IsA acino asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acinus is a kind of sac", "pln": ["(: cnet_isa_11d6908067 (IsA acinus sac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acinus is a kind of drupelet", "pln": ["(: cnet_isa_260a1c5ae1 (IsA acinus drupelet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acipenser is a kind of fish genus", "pln": ["(: cnet_isa_c84b519c84 (IsA acipenser fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acipenseridae is a kind of fish family", "pln": ["(: cnet_isa_612677e295 (IsA acipenseridae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ackee is a kind of edible fruit", "pln": ["(: cnet_isa_b4906653eb (IsA ackee edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acknowledgment is a kind of message", "pln": ["(: cnet_isa_ac74d4b46f (IsA acknowledgment message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "aclinic line is a kind of line", "pln": ["(: cnet_isa_c67af3d62e (IsA aclinic_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acme is a kind of degree", "pln": ["(: cnet_isa_90f1fa3495 (IsA acme degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acne is a kind of inflammatory disease", "pln": ["(: cnet_isa_910000e7ec (IsA acne inflammatory_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acne is a kind of skin disease", "pln": ["(: cnet_isa_0c587f732b (IsA acne skin_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "acne rosacea is a kind of acne", "pln": ["(: cnet_isa_494d9faf67 (IsA acne_rosacea acne) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acne vulgaris is a kind of acne", "pln": ["(: cnet_isa_6d7251d6b0 (IsA acne_vulgaris acne) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acnidosporidia is a kind of class", "pln": ["(: cnet_isa_0f641c453c (IsA acnidosporidia class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acocanthera is a kind of dicot genus", "pln": ["(: cnet_isa_279dfd319b (IsA acocanthera dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acolyte is a kind of clergyman", "pln": ["(: cnet_isa_51a555e179 (IsA acolyte clergyman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acolyte is a kind of holy order", "pln": ["(: cnet_isa_6c274875b5 (IsA acolyte holy_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "aconite is a kind of poisonous plant", "pln": ["(: cnet_isa_ac0590a1b8 (IsA aconite poisonous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aconitum is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_32a234d118 (IsA aconitum magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acoraceae is a kind of monocot family", "pln": ["(: cnet_isa_de05fa51c6 (IsA acoraceae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "acorea is a kind of abnormality", "pln": ["(: cnet_isa_fe8c98dcd4 (IsA acorea abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acorn is a kind of fruit", "pln": ["(: cnet_isa_1a301e73bf (IsA acorn fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acorn barnacle is a kind of barnacle", "pln": ["(: cnet_isa_e77b58ec34 (IsA acorn_barnacle barnacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acorn squash is a kind of winter squash", "pln": ["(: cnet_isa_07bd1666ac (IsA acorn_squash winter_squash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acorn tube is a kind of tube", "pln": ["(: cnet_isa_0dbea4e6de (IsA acorn_tube tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acorus is a kind of monocot genus", "pln": ["(: cnet_isa_b903c977be (IsA acorus monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acoustic is a kind of remedy", "pln": ["(: cnet_isa_90198b1055 (IsA acoustic remedy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "acoustic buoy is a kind of buoy", "pln": ["(: cnet_isa_9c5f21d898 (IsA acoustic_buoy buoy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acoustic delay line is a kind of delay line", "pln": ["(: cnet_isa_bbcdd8d58f (IsA acoustic_delay_line delay_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acoustic device is a kind of device", "pln": ["(: cnet_isa_c4f11c5a03 (IsA acoustic_device device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acoustic guitar is a kind of guitar", "pln": ["(: cnet_isa_cffd9e461f (IsA acoustic_guitar guitar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acoustic modem is a kind of modem", "pln": ["(: cnet_isa_6ab55cf4b3 (IsA acoustic_modem modem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acoustic nerve is a kind of cranial nerve", "pln": ["(: cnet_isa_74e12b8481 (IsA acoustic_nerve cranial_nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acoustic phenomenon is a kind of physical phenomenon", "pln": ["(: cnet_isa_98551d36a9 (IsA acoustic_phenomenon physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acoustic power is a kind of intensity", "pln": ["(: cnet_isa_ad75bf0063 (IsA acoustic_power intensity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acoustic radiation pressure is a kind of radiation pressure", "pln": ["(: cnet_isa_315e2e9faf (IsA acoustic_radiation_pressure radiation_pressure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acoustic resistance is a kind of resistance", "pln": ["(: cnet_isa_c6efb609e2 (IsA acoustic_resistance resistance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "acoustic storage is a kind of memory device", "pln": ["(: cnet_isa_8649a00ad4 (IsA acoustic_storage memory_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acoustician is a kind of physicist", "pln": ["(: cnet_isa_4af974ad4e (IsA acoustician physicist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acoustic is a kind of physical science", "pln": ["(: cnet_isa_223a937389 (IsA acoustic physical_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acquaintance is a kind of information", "pln": ["(: cnet_isa_94e51041bc (IsA acquaintance information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acquaintance is a kind of person", "pln": ["(: cnet_isa_5f1f642e8d (IsA acquaintance person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acquaintance is a kind of relationship", "pln": ["(: cnet_isa_cecd1006ab (IsA acquaintance relationship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acquiescence is a kind of acceptance", "pln": ["(: cnet_isa_448b9ace8c (IsA acquiescence acceptance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "acquired hemochromatosis is a kind of hemochromatosis", "pln": ["(: cnet_isa_b2d0727c13 (IsA acquired_hemochromatosis hemochromatosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acquired immunity is a kind of immunity", "pln": ["(: cnet_isa_def93ce667 (IsA acquired_immunity immunity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acquired taste is a kind of preference", "pln": ["(: cnet_isa_c4955b0ad8 (IsA acquired_taste preference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acquirer is a kind of depository financial institution", "pln": ["(: cnet_isa_9a1e7731a6 (IsA acquirer depository_financial_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acquirer is a kind of financial institution", "pln": ["(: cnet_isa_4aaba208b8 (IsA acquirer financial_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acquirer is a kind of person", "pln": ["(: cnet_isa_59c4781f99 (IsA acquirer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acquiring is a kind of act", "pln": ["(: cnet_isa_77526be754 (IsA acquiring act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acquisition is a kind of acquiring", "pln": ["(: cnet_isa_47dc7779d9 (IsA acquisition acquiring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acquisition is a kind of transferred property", "pln": ["(: cnet_isa_dd6c431bc2 (IsA acquisition transferred_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acquisitiveness is a kind of greed", "pln": ["(: cnet_isa_aaefab2f23 (IsA acquisitiveness greed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acquittal is a kind of final judgment", "pln": ["(: cnet_isa_93e3de9133 (IsA acquittal final_judgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acquittance is a kind of legal document", "pln": ["(: cnet_isa_e9f9eeeece (IsA acquittance legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acrasiomycete is a kind of class", "pln": ["(: cnet_isa_151f97f47f (IsA acrasiomycete class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acre is a kind of area unit", "pln": ["(: cnet_isa_5b0a4f1188 (IsA acre area_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acre foot is a kind of volume unit", "pln": ["(: cnet_isa_8ca47df07d (IsA acre_foot volume_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acre inch is a kind of volume unit", "pln": ["(: cnet_isa_b262d3b8b5 (IsA acre_inch volume_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acreage is a kind of area", "pln": ["(: cnet_isa_76be2ae043 (IsA acreage area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acrididae is a kind of arthropod family", "pln": ["(: cnet_isa_ce6b518af0 (IsA acrididae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "acridity is a kind of bitterness", "pln": ["(: cnet_isa_2a45bb28e9 (IsA acridity bitterness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acridity is a kind of disagreeableness", "pln": ["(: cnet_isa_09b25a7ef3 (IsA acridity disagreeableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acridity is a kind of smell", "pln": ["(: cnet_isa_4551ce6112 (IsA acridity smell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acridothere is a kind of bird genus", "pln": ["(: cnet_isa_addf1049a1 (IsA acridothere bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acris is a kind of amphibian genus", "pln": ["(: cnet_isa_3b9c94f29b (IsA acris amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acroanesthesia is a kind of regional anesthesia", "pln": ["(: cnet_isa_cb438ef3b2 (IsA acroanesthesia regional_anesthesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acrobat is a kind of athlete", "pln": ["(: cnet_isa_bb00bd9dd4 (IsA acrobat athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acrobate is a kind of mammal genus", "pln": ["(: cnet_isa_16ae22b6f5 (IsA acrobate mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acrobatic stunt is a kind of stunt", "pln": ["(: cnet_isa_88cd7d9840 (IsA acrobatic_stunt stunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acrobatic is a kind of flight", "pln": ["(: cnet_isa_2afd2caceb (IsA acrobatic flight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acrobatic is a kind of gymnastic", "pln": ["(: cnet_isa_ba285370f4 (IsA acrobatic gymnastic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acrocarp is a kind of moss", "pln": ["(: cnet_isa_3bec460129 (IsA acrocarp moss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acrocarpus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_6ea4ea94a9 (IsA acrocarpus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "acrocentric chromosome is a kind of chromosome", "pln": ["(: cnet_isa_2d8e75202d (IsA acrocentric_chromosome chromosome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acrocephalus is a kind of bird genus", "pln": ["(: cnet_isa_2ca2cd12a1 (IsA acrocephalus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acroclinium is a kind of asterid dicot genus", "pln": ["(: cnet_isa_34644718c9 (IsA acroclinium asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acrocomia is a kind of monocot genus", "pln": ["(: cnet_isa_582214a762 (IsA acrocomia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "acrocyanosis is a kind of cyanosis", "pln": ["(: cnet_isa_cb95777cba (IsA acrocyanosis cyanosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acrodont is a kind of animal", "pln": ["(: cnet_isa_ced6db5fd1 (IsA acrodont animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acrogen is a kind of plant", "pln": ["(: cnet_isa_38f9bcfaff (IsA acrogen plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acromegaly is a kind of hypertrophy", "pln": ["(: cnet_isa_93798d1719 (IsA acromegaly hypertrophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acromicria is a kind of abnormality", "pln": ["(: cnet_isa_f82875c2f0 (IsA acromicria abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "acromion is a kind of process", "pln": ["(: cnet_isa_924972271f (IsA acromion process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acromphalus is a kind of abnormality", "pln": ["(: cnet_isa_5ba4516db2 (IsA acromphalus abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acromyotonia is a kind of myotonia", "pln": ["(: cnet_isa_283311578d (IsA acromyotonia myotonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acronym is a kind of abbreviation", "pln": ["(: cnet_isa_ccc2b79644 (IsA acronym abbreviation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acronym is a kind of form", "pln": ["(: cnet_isa_ef30635c60 (IsA acronym form) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acrophobia is a kind of simple phobia", "pln": ["(: cnet_isa_488ff07567 (IsA acrophobia simple_phobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acrophony is a kind of naming", "pln": ["(: cnet_isa_f26872b395 (IsA acrophony naming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acropolis is a kind of bastion", "pln": ["(: cnet_isa_b477bd3160 (IsA acropolis bastion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acropora is a kind of coelenterate genus", "pln": ["(: cnet_isa_1dca442f1b (IsA acropora coelenterate_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acrosome is a kind of process", "pln": ["(: cnet_isa_c2e8633376 (IsA acrosome process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acrostic is a kind of literary composition", "pln": ["(: cnet_isa_7ac2e298ef (IsA acrostic literary_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acrostichum is a kind of fern genus", "pln": ["(: cnet_isa_4d05d47bd0 (IsA acrostichum fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acrylamide is a kind of amide", "pln": ["(: cnet_isa_60c423bcd5 (IsA acrylamide amide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acrylic is a kind of fabric", "pln": ["(: cnet_isa_3881fc33ad (IsA acrylic fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acrylic is a kind of paint", "pln": ["(: cnet_isa_63b4493c12 (IsA acrylic paint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "acrylic is a kind of synthetic resin", "pln": ["(: cnet_isa_385fa58d84 (IsA acrylic synthetic_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acrylic fiber is a kind of man made fiber", "pln": ["(: cnet_isa_b25dc988ac (IsA acrylic_fiber man_made_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "acrylonitrile butadiene styrene is a kind of plastic", "pln": ["(: cnet_isa_484d8a6d75 (IsA acrylonitrile_butadiene_styrene plastic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "actinide series is a kind of series", "pln": ["(: cnet_isa_c96e9c8ec3 (IsA actinide_series series) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "act is a kind of event", "pln": ["(: cnet_isa_4d1a2cf00e (IsA act event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "act is a kind of dramatic composition", "pln": ["(: cnet_isa_b64bf73b4c (IsA act dramatic_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "act is a kind of expression", "pln": ["(: cnet_isa_ddd1b00065 (IsA act expression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "act is a kind of performance", "pln": ["(: cnet_isa_afdf969aaf (IsA act performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "act is a kind of legal document", "pln": ["(: cnet_isa_ebbe3045b6 (IsA act legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "act of god is a kind of calamity", "pln": ["(: cnet_isa_35bad22494 (IsA act_of_god calamity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actaea is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_24e994eff2 (IsA actaea magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actia is a kind of arthropod genus", "pln": ["(: cnet_isa_d55686bc2f (IsA actia arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actin is a kind of simple protein", "pln": ["(: cnet_isa_ca52e05aca (IsA actin simple_protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acting is a kind of activity", "pln": ["(: cnet_isa_ab578f878c (IsA acting activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acting is a kind of performing art", "pln": ["(: cnet_isa_36e18a446e (IsA acting performing_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acting out is a kind of effusion", "pln": ["(: cnet_isa_17d4f10b76 (IsA acting_out effusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acting out is a kind of display", "pln": ["(: cnet_isa_46ffab0399 (IsA acting_out display) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actinia is a kind of coelenterate genus", "pln": ["(: cnet_isa_237ef81d50 (IsA actinia coelenterate_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actinia is a kind of sea anemone", "pln": ["(: cnet_isa_26a2eb72fa (IsA actinia sea_anemone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actiniaria is a kind of animal order", "pln": ["(: cnet_isa_b68e97cd56 (IsA actiniaria animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actinic dermatitis is a kind of dermatitis", "pln": ["(: cnet_isa_8e47b0514a (IsA actinic_dermatitis dermatitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actinic keratosis is a kind of keratosis", "pln": ["(: cnet_isa_ab7bcdd1ab (IsA actinic_keratosis keratosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actinic radiation is a kind of electromagnetic radiation", "pln": ["(: cnet_isa_bf2d3f9558 (IsA actinic_radiation electromagnetic_radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actinide sery is a kind of sery", "pln": ["(: cnet_isa_d73b07b072 (IsA actinide_sery sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "actinidia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_3c403cb758 (IsA actinidia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actinidiaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_9787180e03 (IsA actinidiaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actiniopteris is a kind of fern genus", "pln": ["(: cnet_isa_dd5879f5c5 (IsA actiniopteris fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actinism is a kind of property", "pln": ["(: cnet_isa_ee4011f268 (IsA actinism property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actinium is a kind of chemical element", "pln": ["(: cnet_isa_bfd090d978 (IsA actinium chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actinoid is a kind of group", "pln": ["(: cnet_isa_be2befcb9e (IsA actinoid group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actinolite is a kind of amphibole", "pln": ["(: cnet_isa_4f15e0ed9f (IsA actinolite amphibole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actinomeris is a kind of asterid dicot genus", "pln": ["(: cnet_isa_8aeff44d5e (IsA actinomeris asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actinometer is a kind of measuring instrument", "pln": ["(: cnet_isa_ccdf5e0fa1 (IsA actinometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actinometry is a kind of measurement", "pln": ["(: cnet_isa_79bcc30aa3 (IsA actinometry measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actinomyce is a kind of eubacteria", "pln": ["(: cnet_isa_e0bf994979 (IsA actinomyce eubacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actinomycetaceae is a kind of bacteria family", "pln": ["(: cnet_isa_3f318a6e26 (IsA actinomycetaceae bacteria_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actinomycetale is a kind of animal order", "pln": ["(: cnet_isa_f18a86b0a4 (IsA actinomycetale animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actinomycete is a kind of eubacteria", "pln": ["(: cnet_isa_8b4e745fdc (IsA actinomycete eubacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actinomycin is a kind of antibiotic", "pln": ["(: cnet_isa_0e74207d0c (IsA actinomycin antibiotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actinomycosis is a kind of zoonosis", "pln": ["(: cnet_isa_1f3df0d357 (IsA actinomycosis zoonosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actinomyxidia is a kind of animal order", "pln": ["(: cnet_isa_1755790f29 (IsA actinomyxidia animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actinomyxidian is a kind of sporozoan", "pln": ["(: cnet_isa_e631995dbe (IsA actinomyxidian sporozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actinopod is a kind of sarcodinian", "pln": ["(: cnet_isa_e113042570 (IsA actinopod sarcodinian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "actinopoda is a kind of class", "pln": ["(: cnet_isa_6359abdb34 (IsA actinopoda class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "action is a kind of act", "pln": ["(: cnet_isa_3ba74e29c9 (IsA action act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "action is a kind of group action", "pln": ["(: cnet_isa_bb82b8d7c6 (IsA action group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "action is a kind of work", "pln": ["(: cnet_isa_2c04c4f8f5 (IsA action work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "action is a kind of mechanism", "pln": ["(: cnet_isa_98b956a6de (IsA action mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "action is a kind of drive", "pln": ["(: cnet_isa_7c802f37e6 (IsA action drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "action is a kind of plot", "pln": ["(: cnet_isa_07c9608b4c (IsA action plot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "action is a kind of state", "pln": ["(: cnet_isa_d337c24e0f (IsA action state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "action officer is a kind of case officer", "pln": ["(: cnet_isa_1b383642c8 (IsA action_officer case_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "action potential is a kind of nerve impulse", "pln": ["(: cnet_isa_b33845fd6b (IsA action_potential nerve_impulse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "action spectrum is a kind of spectrum", "pln": ["(: cnet_isa_aa1836953a (IsA action_spectrum spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actitis is a kind of bird genus", "pln": ["(: cnet_isa_eae8141bf1 (IsA actitis bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "activated carbon is a kind of carbon", "pln": ["(: cnet_isa_728d7fc0da (IsA activated_carbon carbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "activating agent is a kind of activator", "pln": ["(: cnet_isa_41bafc930a (IsA activating_agent activator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "activation is a kind of beginning", "pln": ["(: cnet_isa_65ef9d2f22 (IsA activation beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "activation is a kind of stimulation", "pln": ["(: cnet_isa_f1b6d57026 (IsA activation stimulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "activation energy is a kind of energy", "pln": ["(: cnet_isa_038f6ed1e7 (IsA activation_energy energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "activator is a kind of substance", "pln": ["(: cnet_isa_10e6f3dd2b (IsA activator substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "active is a kind of person", "pln": ["(: cnet_isa_c23ad26548 (IsA active person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "active agent is a kind of chemical agent", "pln": ["(: cnet_isa_458cd5853b (IsA active_agent chemical_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "active air defense is a kind of air defense", "pln": ["(: cnet_isa_2513ab2f55 (IsA active_air_defense air_defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "active application is a kind of application", "pln": ["(: cnet_isa_ebd1269808 (IsA active_application application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "active birth is a kind of childbirth", "pln": ["(: cnet_isa_a9596e08b5 (IsA active_birth childbirth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "active citizen is a kind of citizen", "pln": ["(: cnet_isa_82afa520c0 (IsA active_citizen citizen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "active immunity is a kind of acquired immunity", "pln": ["(: cnet_isa_10c623cba3 (IsA active_immunity acquired_immunity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "active matrix screen is a kind of liquid crystal display", "pln": ["(: cnet_isa_c0a13af738 (IsA active_matrix_screen liquid_crystal_display) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "active placebo is a kind of placebo", "pln": ["(: cnet_isa_5f419a5fd3 (IsA active_placebo placebo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "active site is a kind of site", "pln": ["(: cnet_isa_efae5582e2 (IsA active_site site) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "active transport is a kind of transport", "pln": ["(: cnet_isa_944ee55902 (IsA active_transport transport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "active trust is a kind of trust", "pln": ["(: cnet_isa_aaa9040718 (IsA active_trust trust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "active voice is a kind of voice", "pln": ["(: cnet_isa_af5ca22a07 (IsA active_voice voice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "activeness is a kind of trait", "pln": ["(: cnet_isa_127b0425ba (IsA activeness trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "activism is a kind of policy", "pln": ["(: cnet_isa_a42c9e3505 (IsA activism policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "activity is a kind of action", "pln": ["(: cnet_isa_bd13389a25 (IsA activity action) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "activity is a kind of act", "pln": ["(: cnet_isa_004bb52b84 (IsA activity act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "activity is a kind of capability", "pln": ["(: cnet_isa_54c78f9bc1 (IsA activity capability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actomyosin is a kind of protein", "pln": ["(: cnet_isa_b6ef7c8968 (IsA actomyosin protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actor s agent is a kind of business agent", "pln": ["(: cnet_isa_b8300a2ae4 (IsA actor_s_agent business_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actor s line is a kind of line", "pln": ["(: cnet_isa_ffd9d1c313 (IsA actor_s_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actor is a kind of performer", "pln": ["(: cnet_isa_1b6455e3ec (IsA actor performer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actor is a kind of person", "pln": ["(: cnet_isa_9943fcde6a (IsA actor person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actor is a kind of people", "pln": ["(: cnet_isa_ccd4ed5238 (IsA actor people) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actress is a kind of actor", "pln": ["(: cnet_isa_70a51100fc (IsA actress actor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actual damage is a kind of damage", "pln": ["(: cnet_isa_b10861433d (IsA actual_damage damage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actual eviction is a kind of eviction", "pln": ["(: cnet_isa_ffbd3060e6 (IsA actual_eviction eviction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actual possession is a kind of possession", "pln": ["(: cnet_isa_295f6cc5d1 (IsA actual_possession possession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actual sin is a kind of sin", "pln": ["(: cnet_isa_5352cc4d53 (IsA actual_sin sin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actuality is a kind of being", "pln": ["(: cnet_isa_8b2851a50b (IsA actuality being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actuarial table is a kind of table", "pln": ["(: cnet_isa_45fdad4069 (IsA actuarial_table table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "actuator is a kind of mechanism", "pln": ["(: cnet_isa_02cb389a36 (IsA actuator mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acuity is a kind of sight", "pln": ["(: cnet_isa_71f159a9ef (IsA acuity sight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aculea is a kind of process", "pln": ["(: cnet_isa_6e85378fbc (IsA aculea process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aculeus is a kind of stinger", "pln": ["(: cnet_isa_9fb0d65fd6 (IsA aculeus stinger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aculeus is a kind of plant process", "pln": ["(: cnet_isa_2c977b8a93 (IsA aculeus plant_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acumen is a kind of plant process", "pln": ["(: cnet_isa_1630a3b0b4 (IsA acumen plant_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acuminate leaf is a kind of simple leaf", "pln": ["(: cnet_isa_3d56222d67 (IsA acuminate_leaf simple_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acupressure is a kind of treatment", "pln": ["(: cnet_isa_60c02af7ba (IsA acupressure treatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acupuncture is a kind of treatment", "pln": ["(: cnet_isa_090aed57a3 (IsA acupuncture treatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acute accent is a kind of accent", "pln": ["(: cnet_isa_a342ba4624 (IsA acute_accent accent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acute angle is a kind of oblique angle", "pln": ["(: cnet_isa_2db80335c5 (IsA acute_angle oblique_angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "acute brain disorder is a kind of disorder", "pln": ["(: cnet_isa_b89814b11c (IsA acute_brain_disorder disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acute gastritis is a kind of gastritis", "pln": ["(: cnet_isa_77c5e9a0a0 (IsA acute_gastritis gastritis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acute glaucoma is a kind of glaucoma", "pln": ["(: cnet_isa_bff0a18dfb (IsA acute_glaucoma glaucoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acute glossitis is a kind of glossitis", "pln": ["(: cnet_isa_bad011ad5f (IsA acute_glossitis glossitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acute hemorrhagic encephalitis is a kind of encephalitis", "pln": ["(: cnet_isa_ea9773176b (IsA acute_hemorrhagic_encephalitis encephalitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acute leukemia is a kind of leukemia", "pln": ["(: cnet_isa_82374dc5e0 (IsA acute_leukemia leukemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acute lymphocytic leukemia is a kind of acute leukemia", "pln": ["(: cnet_isa_ebeca77ca8 (IsA acute_lymphocytic_leukemia acute_leukemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acute myelocytic leukemia is a kind of acute leukemia", "pln": ["(: cnet_isa_87aad32a8b (IsA acute_myelocytic_leukemia acute_leukemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acute myelocytic leukemia is a kind of myelocytic leukemia", "pln": ["(: cnet_isa_b13ac91cc5 (IsA acute_myelocytic_leukemia myelocytic_leukemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acute pyelonephritis is a kind of pyelonephritis", "pln": ["(: cnet_isa_4362a56f6f (IsA acute_pyelonephritis pyelonephritis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acute renal failure is a kind of renal failure", "pln": ["(: cnet_isa_dffd666a68 (IsA acute_renal_failure renal_failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acute schizophrenic episode is a kind of schizophrenia", "pln": ["(: cnet_isa_7d0d3f20cf (IsA acute_schizophrenic_episode schizophrenia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acute triangle is a kind of triangle", "pln": ["(: cnet_isa_004567e031 (IsA acute_triangle triangle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acuteness is a kind of sharpness", "pln": ["(: cnet_isa_047dfb88fb (IsA acuteness sharpness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acuteness is a kind of intelligence", "pln": ["(: cnet_isa_c1872f0b27 (IsA acuteness intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acuteness is a kind of sensitivity", "pln": ["(: cnet_isa_4259aa60a9 (IsA acuteness sensitivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acyl is a kind of group", "pln": ["(: cnet_isa_925d22d7db (IsA acyl group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acyl anhydride is a kind of organic compound", "pln": ["(: cnet_isa_d70b9e6aa2 (IsA acyl_anhydride organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acyl halide is a kind of organic compound", "pln": ["(: cnet_isa_d18d8603d4 (IsA acyl_halide organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "acylation is a kind of chemical process", "pln": ["(: cnet_isa_682a4f1e06 (IsA acylation chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ad is a kind of promotion", "pln": ["(: cnet_isa_10602cd2a9 (IsA ad promotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ad lib is a kind of remark", "pln": ["(: cnet_isa_4f39cfd44d (IsA ad_lib remark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ada scid is a kind of severe combined immunodeficiency", "pln": ["(: cnet_isa_17541e74ee (IsA ada_scid severe_combined_immunodeficiency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adactylia is a kind of meromelia", "pln": ["(: cnet_isa_4c2742c90e (IsA adactylia meromelia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adagio is a kind of dancing", "pln": ["(: cnet_isa_5c18e90891 (IsA adagio dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adagio is a kind of musical composition", "pln": ["(: cnet_isa_e2d3bf5683 (IsA adagio musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adagio is a kind of passage", "pln": ["(: cnet_isa_be615f7071 (IsA adagio passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adalia is a kind of arthropod genus", "pln": ["(: cnet_isa_6c27b868f7 (IsA adalia arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adam s needle is a kind of yucca", "pln": ["(: cnet_isa_a5e6b38f30 (IsA adam_s_needle yucca) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adam is a kind of methylenedioxymethamphetamine", "pln": ["(: cnet_isa_8ec46dfc68 (IsA adam methylenedioxymethamphetamine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adamance is a kind of resoluteness", "pln": ["(: cnet_isa_a84edb0b1d (IsA adamance resoluteness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adansonia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_8788f91dd4 (IsA adansonia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adapid is a kind of taxonomic group", "pln": ["(: cnet_isa_3d3e833326 (IsA adapid taxonomic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adaptability is a kind of ability", "pln": ["(: cnet_isa_4c707ff3e0 (IsA adaptability ability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adaptation is a kind of writing", "pln": ["(: cnet_isa_a7b5ef0394 (IsA adaptation writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adaptation is a kind of alteration", "pln": ["(: cnet_isa_18bc8a1e36 (IsA adaptation alteration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adaptation is a kind of organic process", "pln": ["(: cnet_isa_c00f2de9cc (IsA adaptation organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adapter is a kind of device", "pln": ["(: cnet_isa_cb13d05774 (IsA adapter device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adaptive radiation is a kind of radiation", "pln": ["(: cnet_isa_7a1f2aeff2 (IsA adaptive_radiation radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adar is a kind of jewish calendar month", "pln": ["(: cnet_isa_5f3837b171 (IsA adar jewish_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "addax is a kind of antelope", "pln": ["(: cnet_isa_cfbf3f8977 (IsA addax antelope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "addend is a kind of number", "pln": ["(: cnet_isa_afe8916f6f (IsA addend number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "addendum is a kind of matter", "pln": ["(: cnet_isa_39fc470c7e (IsA addendum matter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adder s tongue is a kind of fern", "pln": ["(: cnet_isa_c5578f117d (IsA adder_s_tongue fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "adder is a kind of viper", "pln": ["(: cnet_isa_8869132e87 (IsA adder viper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adder is a kind of calculator", "pln": ["(: cnet_isa_c7d205a7a4 (IsA adder calculator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "addict is a kind of drug user", "pln": ["(: cnet_isa_6ac353a0a3 (IsA addict drug_user) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "addict is a kind of enthusiast", "pln": ["(: cnet_isa_05f651f39b (IsA addict enthusiast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "addiction is a kind of craving", "pln": ["(: cnet_isa_a9ce40f4c1 (IsA addiction craving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "addiction is a kind of physiological state", "pln": ["(: cnet_isa_b9fbd5a8c0 (IsA addiction physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "addiction is a kind of award", "pln": ["(: cnet_isa_fae2489665 (IsA addiction award) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adding machine is a kind of calculator", "pln": ["(: cnet_isa_829c89761f (IsA adding_machine calculator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "addison s disease is a kind of glandular disease", "pln": ["(: cnet_isa_26c6c7a2ab (IsA addison_s_disease glandular_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "addition is a kind of increase", "pln": ["(: cnet_isa_63808d3408 (IsA addition increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "addition is a kind of component", "pln": ["(: cnet_isa_62ff8c6305 (IsA addition component) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "addition is a kind of suburb", "pln": ["(: cnet_isa_de3e7aad07 (IsA addition suburb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "addition is a kind of indefinite quantity", "pln": ["(: cnet_isa_7bed31496a (IsA addition indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "addition reaction is a kind of chemical reaction", "pln": ["(: cnet_isa_559cbf67b0 (IsA addition_reaction chemical_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "additive is a kind of addition", "pln": ["(: cnet_isa_7f6b487972 (IsA additive addition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "additive inverse is a kind of inverse", "pln": ["(: cnet_isa_0171572ab9 (IsA additive_inverse inverse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "addle head is a kind of misfit", "pln": ["(: cnet_isa_be21d72180 (IsA addle_head misfit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "address is a kind of direction", "pln": ["(: cnet_isa_5c9344d44c (IsA address direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "address is a kind of manner of speaking", "pln": ["(: cnet_isa_8755d97c22 (IsA address manner_of_speaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "address is a kind of speech act", "pln": ["(: cnet_isa_f5930cce64 (IsA address speech_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "address is a kind of street sign", "pln": ["(: cnet_isa_8096cbb8a6 (IsA address street_sign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "address is a kind of code", "pln": ["(: cnet_isa_6b059f1b60 (IsA address code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "address is a kind of stance", "pln": ["(: cnet_isa_7369b0b64a (IsA address stance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "address is a kind of geographic point", "pln": ["(: cnet_isa_8cf1283edc (IsA address geographic_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "addressee is a kind of recipient", "pln": ["(: cnet_isa_d8faa4c218 (IsA addressee recipient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "addressing machine is a kind of printer", "pln": ["(: cnet_isa_3dd736eca0 (IsA addressing_machine printer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adducer is a kind of discussant", "pln": ["(: cnet_isa_1c98fc6dde (IsA adducer discussant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adducing is a kind of argument", "pln": ["(: cnet_isa_172864c5a2 (IsA adducing argument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adduct is a kind of compound", "pln": ["(: cnet_isa_c72ac513f1 (IsA adduct compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adduction is a kind of motion", "pln": ["(: cnet_isa_022a7ea6c2 (IsA adduction motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adductor is a kind of skeletal muscle", "pln": ["(: cnet_isa_002f98d00b (IsA adductor skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adelge is a kind of arthropod genus", "pln": ["(: cnet_isa_4f9f784cf6 (IsA adelge arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adelgid is a kind of plant louse", "pln": ["(: cnet_isa_ff5459d5a5 (IsA adelgid plant_louse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adelgidae is a kind of arthropod family", "pln": ["(: cnet_isa_9ba1b2e0c7 (IsA adelgidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adelie is a kind of penguin", "pln": ["(: cnet_isa_86a97145b9 (IsA adelie penguin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adenanthera is a kind of rosid dicot genus", "pln": ["(: cnet_isa_51cbf47094 (IsA adenanthera rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adenine is a kind of purine", "pln": ["(: cnet_isa_bc27185170 (IsA adenine purine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adenitis is a kind of inflammation", "pln": ["(: cnet_isa_2e37ee18ae (IsA adenitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "adenium is a kind of dicot genus", "pln": ["(: cnet_isa_ea83a97242 (IsA adenium dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adenocarcinoma is a kind of carcinoma", "pln": ["(: cnet_isa_0330549126 (IsA adenocarcinoma carcinoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adenoidectomy is a kind of ablation", "pln": ["(: cnet_isa_52e5c5e65e (IsA adenoidectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adenoma is a kind of benign tumor", "pln": ["(: cnet_isa_b53336b545 (IsA adenoma benign_tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "adenomatous polyp is a kind of polyp", "pln": ["(: cnet_isa_93f0fad281 (IsA adenomatous_polyp polyp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "adenomegaly is a kind of hypertrophy", "pln": ["(: cnet_isa_31c05d4ef7 (IsA adenomegaly hypertrophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adenopathy is a kind of glandular disease", "pln": ["(: cnet_isa_4b2fba3c37 (IsA adenopathy glandular_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adenosine is a kind of nucleoside", "pln": ["(: cnet_isa_121b096ddc (IsA adenosine nucleoside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adenosine deaminase is a kind of enzyme", "pln": ["(: cnet_isa_347614c963 (IsA adenosine_deaminase enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adenosine diphosphate is a kind of nucleotide", "pln": ["(: cnet_isa_0b25233e6e (IsA adenosine_diphosphate nucleotide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adenosine monophosphate is a kind of nucleotide", "pln": ["(: cnet_isa_3115fea19e (IsA adenosine_monophosphate nucleotide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adenosine triphosphate is a kind of nucleotide", "pln": ["(: cnet_isa_d645a89a85 (IsA adenosine_triphosphate nucleotide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adenota is a kind of mammal genus", "pln": ["(: cnet_isa_53e9ab3bc6 (IsA adenota mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adenovirus is a kind of animal virus", "pln": ["(: cnet_isa_983916de14 (IsA adenovirus animal_virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adeptness is a kind of skillfulness", "pln": ["(: cnet_isa_b03e7187bb (IsA adeptness skillfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adequacy is a kind of satisfactoriness", "pln": ["(: cnet_isa_320edfe05d (IsA adequacy satisfactoriness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ader wax is a kind of mineral", "pln": ["(: cnet_isa_55f998d407 (IsA ader_wax mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adesite is a kind of igneous rock", "pln": ["(: cnet_isa_8b053833c4 (IsA adesite igneous_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adhesion is a kind of scar tissue", "pln": ["(: cnet_isa_ac0400b6e0 (IsA adhesion scar_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adhesion is a kind of pathology", "pln": ["(: cnet_isa_e444df1190 (IsA adhesion pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "adhesion contract is a kind of contract", "pln": ["(: cnet_isa_0399c068f4 (IsA adhesion_contract contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adhesive bandage is a kind of bandage", "pln": ["(: cnet_isa_1fc68fd011 (IsA adhesive_bandage bandage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adhesive material is a kind of material", "pln": ["(: cnet_isa_6e7e8f806f (IsA adhesive_material material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adhesive tape is a kind of tape", "pln": ["(: cnet_isa_5a03526160 (IsA adhesive_tape tape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adhesiveness is a kind of stickiness", "pln": ["(: cnet_isa_7e2f3b63ea (IsA adhesiveness stickiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adhocracy is a kind of organization", "pln": ["(: cnet_isa_9b5f2707a9 (IsA adhocracy organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adiabatic process is a kind of natural process", "pln": ["(: cnet_isa_6a1e536e29 (IsA adiabatic_process natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adiantaceae is a kind of fern family", "pln": ["(: cnet_isa_3fce0c4532 (IsA adiantaceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adiantum is a kind of fern genus", "pln": ["(: cnet_isa_d068ff7b50 (IsA adiantum fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adience is a kind of urge", "pln": ["(: cnet_isa_050a73ef6a (IsA adience urge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adieu is a kind of farewell", "pln": ["(: cnet_isa_b4658e6f4c (IsA adieu farewell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "adipose tissue is a kind of animal tissue", "pln": ["(: cnet_isa_fd96e38571 (IsA adipose_tissue animal_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "adiposity is a kind of fatness", "pln": ["(: cnet_isa_8ecc32e0e9 (IsA adiposity fatness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adit is a kind of passage", "pln": ["(: cnet_isa_0ea15f0c11 (IsA adit passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aditya is a kind of hindu deity", "pln": ["(: cnet_isa_9970611935 (IsA aditya hindu_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adjacency is a kind of nearness", "pln": ["(: cnet_isa_82ce93bad9 (IsA adjacency nearness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adjective is a kind of major form class", "pln": ["(: cnet_isa_4a1e60dfc6 (IsA adjective major_form_class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adjective is a kind of modifier", "pln": ["(: cnet_isa_919427b01b (IsA adjective modifier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adjoining room is a kind of hotel room", "pln": ["(: cnet_isa_9ef43f5e15 (IsA adjoining_room hotel_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adjournment is a kind of postponement", "pln": ["(: cnet_isa_4dd53b2c40 (IsA adjournment postponement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adjournment is a kind of termination", "pln": ["(: cnet_isa_bc8a1424bb (IsA adjournment termination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adjudication is a kind of judgment", "pln": ["(: cnet_isa_7becccf87c (IsA adjudication judgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adjudicator is a kind of person", "pln": ["(: cnet_isa_e950a635b5 (IsA adjudicator person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adjunct is a kind of construction", "pln": ["(: cnet_isa_f4b041ac50 (IsA adjunct construction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adjunct is a kind of inessential", "pln": ["(: cnet_isa_5ff3b8f1aa (IsA adjunct inessential) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adjunct is a kind of associate", "pln": ["(: cnet_isa_5a44f39396 (IsA adjunct associate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adjuration is a kind of entreaty", "pln": ["(: cnet_isa_960c7f0641 (IsA adjuration entreaty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adjustable wrench is a kind of useful tool", "pln": ["(: cnet_isa_54ec80c95d (IsA adjustable_wrench useful_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adjustable wrench is a kind of very useful tool", "pln": ["(: cnet_isa_05542987e2 (IsA adjustable_wrench very_useful_tool) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adjustable wrench is a kind of wrench", "pln": ["(: cnet_isa_724ab10882 (IsA adjustable_wrench wrench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "adjuster is a kind of investigator", "pln": ["(: cnet_isa_b592c6c7ec (IsA adjuster investigator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adjusting entry is a kind of entry", "pln": ["(: cnet_isa_bcdc6a81c8 (IsA adjusting_entry entry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adjustment is a kind of calibration", "pln": ["(: cnet_isa_ac94a2ca80 (IsA adjustment calibration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adjustment is a kind of improvement", "pln": ["(: cnet_isa_3729855b44 (IsA adjustment improvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adjutant is a kind of military officer", "pln": ["(: cnet_isa_22485ab2b5 (IsA adjutant military_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adjutant bird is a kind of stork", "pln": ["(: cnet_isa_c51eecce94 (IsA adjutant_bird stork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adjutant general is a kind of adjutant", "pln": ["(: cnet_isa_2d7e60e42f (IsA adjutant_general adjutant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adjuvant is a kind of additive", "pln": ["(: cnet_isa_2cb00c27f8 (IsA adjuvant additive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "adlumia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_a756dfec20 (IsA adlumia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "admass is a kind of populace", "pln": ["(: cnet_isa_6897f887ee (IsA admass populace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "administration is a kind of medication", "pln": ["(: cnet_isa_f0c10aed66 (IsA administration medication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "administration is a kind of management", "pln": ["(: cnet_isa_ff5ba98012 (IsA administration management) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "administration is a kind of body", "pln": ["(: cnet_isa_8ee6ada431 (IsA administration body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "administrative data processing is a kind of data processing", "pln": ["(: cnet_isa_11b15ef92c (IsA administrative_data_processing data_processing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "administrative district is a kind of district", "pln": ["(: cnet_isa_a3a474f6a9 (IsA administrative_district district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "administrative hearing is a kind of hearing", "pln": ["(: cnet_isa_0ae7884f5b (IsA administrative_hearing hearing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "administrative law is a kind of law", "pln": ["(: cnet_isa_72ed91f6fa (IsA administrative_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "administrative unit is a kind of unit", "pln": ["(: cnet_isa_056ff5cc74 (IsA administrative_unit unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "administrator is a kind of fiduciary", "pln": ["(: cnet_isa_04a4ac8113 (IsA administrator fiduciary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "administrator is a kind of head", "pln": ["(: cnet_isa_758bdaca62 (IsA administrator head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "administrivia is a kind of running", "pln": ["(: cnet_isa_8ec1b769fe (IsA administrivia running) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "admirability is a kind of excellence", "pln": ["(: cnet_isa_85f72b3a43 (IsA admirability excellence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "admiral is a kind of nymphalid", "pln": ["(: cnet_isa_f497105d05 (IsA admiral nymphalid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "admiral is a kind of flag officer", "pln": ["(: cnet_isa_640ae50b66 (IsA admiral flag_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "admiralty is a kind of position", "pln": ["(: cnet_isa_9d3bb52538 (IsA admiralty position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "admiralty is a kind of government department", "pln": ["(: cnet_isa_5f0c276307 (IsA admiralty government_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "admiration is a kind of blessing", "pln": ["(: cnet_isa_eece4b5675 (IsA admiration blessing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "admiration is a kind of liking", "pln": ["(: cnet_isa_8baf0b86a6 (IsA admiration liking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "admirer is a kind of lover", "pln": ["(: cnet_isa_860f7adb42 (IsA admirer lover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "admirer is a kind of person", "pln": ["(: cnet_isa_d903c653d5 (IsA admirer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "admissibility is a kind of acceptability", "pln": ["(: cnet_isa_a41caa11b4 (IsA admissibility acceptability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "admission is a kind of entrance", "pln": ["(: cnet_isa_babc8eda6c (IsA admission entrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "admission is a kind of acknowledgment", "pln": ["(: cnet_isa_a4ffa1efa3 (IsA admission acknowledgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "admission day is a kind of day", "pln": ["(: cnet_isa_e386609149 (IsA admission_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "admixture is a kind of ingredient", "pln": ["(: cnet_isa_3d71194f39 (IsA admixture ingredient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "admixture is a kind of impurity", "pln": ["(: cnet_isa_12529747c4 (IsA admixture impurity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "admonisher is a kind of defender", "pln": ["(: cnet_isa_50cbd9c849 (IsA admonisher defender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "admonition is a kind of advice", "pln": ["(: cnet_isa_a383f93180 (IsA admonition advice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "admonition is a kind of rebuke", "pln": ["(: cnet_isa_60c6e77c87 (IsA admonition rebuke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "adnexa is a kind of body part", "pln": ["(: cnet_isa_dbe72dfae5 (IsA adnexa body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adnoun is a kind of common noun", "pln": ["(: cnet_isa_0109262f36 (IsA adnoun common_noun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adobe is a kind of brick", "pln": ["(: cnet_isa_ee2432cbe8 (IsA adobe brick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "adobe is a kind of clay", "pln": ["(: cnet_isa_0c7d547674 (IsA adobe clay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adobe lily is a kind of fritillary", "pln": ["(: cnet_isa_20f99ea312 (IsA adobe_lily fritillary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adobo is a kind of dish", "pln": ["(: cnet_isa_4e2b3c1d57 (IsA adobo dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adolescence is a kind of immaturity", "pln": ["(: cnet_isa_a73dadab90 (IsA adolescence immaturity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adolescence is a kind of time of life", "pln": ["(: cnet_isa_a384dddeb5 (IsA adolescence time_of_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adolescent is a kind of juvenile", "pln": ["(: cnet_isa_93e048c3ce (IsA adolescent juvenile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "adonic is a kind of verse", "pln": ["(: cnet_isa_205577d69e (IsA adonic verse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adonis is a kind of daemon", "pln": ["(: cnet_isa_3890c540ce (IsA adonis daemon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "adonis is a kind of man", "pln": ["(: cnet_isa_c80db56272 (IsA adonis man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adonis is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_95e797ab03 (IsA adonis magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adoptee is a kind of person", "pln": ["(: cnet_isa_f8e4bd5576 (IsA adoptee person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adoption is a kind of blessing", "pln": ["(: cnet_isa_6dcb1b532b (IsA adoption blessing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "adoption is a kind of proceeding", "pln": ["(: cnet_isa_9f5433bfcc (IsA adoption proceeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adoptive parent is a kind of parent", "pln": ["(: cnet_isa_fb2d7c80e4 (IsA adoptive_parent parent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adorability is a kind of attractiveness", "pln": ["(: cnet_isa_86a0e680ea (IsA adorability attractiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adoration is a kind of admiration", "pln": ["(: cnet_isa_f8e7b59449 (IsA adoration admiration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adoration is a kind of worship", "pln": ["(: cnet_isa_4895cdfec3 (IsA adoration worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adornment is a kind of decoration", "pln": ["(: cnet_isa_842ce4334f (IsA adornment decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adoxography is a kind of writing", "pln": ["(: cnet_isa_7c60fd21b9 (IsA adoxography writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adrenal cortex is a kind of cortex", "pln": ["(: cnet_isa_a09e5362bf (IsA adrenal_cortex cortex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adrenal cortex is a kind of endocrine gland", "pln": ["(: cnet_isa_945d7c8fb5 (IsA adrenal_cortex endocrine_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adrenal gland is a kind of endocrine gland", "pln": ["(: cnet_isa_7536fc364f (IsA adrenal_gland endocrine_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adrenal medulla is a kind of endocrine gland", "pln": ["(: cnet_isa_5f1415f3e6 (IsA adrenal_medulla endocrine_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adrenal medulla is a kind of medulla", "pln": ["(: cnet_isa_ef2f377fa6 (IsA adrenal_medulla medulla) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adrenalectomy is a kind of ablation", "pln": ["(: cnet_isa_836a6b88a2 (IsA adrenalectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adrenarche is a kind of start", "pln": ["(: cnet_isa_f224559eba (IsA adrenarche start) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adrenergic is a kind of vasoconstrictor", "pln": ["(: cnet_isa_cbe5ace641 (IsA adrenergic vasoconstrictor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adrenergic agonist eyedrop is a kind of eye drop", "pln": ["(: cnet_isa_839d49c32f (IsA adrenergic_agonist_eyedrop eye_drop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adrenocorticotropic hormone is a kind of hormone", "pln": ["(: cnet_isa_2103a18dca (IsA adrenocorticotropic_hormone hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "adrenosterone is a kind of hormone", "pln": ["(: cnet_isa_df09721f9d (IsA adrenosterone hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adsorbate is a kind of sorbate", "pln": ["(: cnet_isa_def5b2d997 (IsA adsorbate sorbate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adsorbent is a kind of sorbent", "pln": ["(: cnet_isa_9b030cdba2 (IsA adsorbent sorbent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adsorption is a kind of sorption", "pln": ["(: cnet_isa_005a2c4648 (IsA adsorption sorption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "adulation is a kind of flattery", "pln": ["(: cnet_isa_f282a56758 (IsA adulation flattery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adult is a kind of animal", "pln": ["(: cnet_isa_e5586ca54b (IsA adult animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adult is a kind of person", "pln": ["(: cnet_isa_b0d01ae0b9 (IsA adult person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adult body is a kind of human body", "pln": ["(: cnet_isa_5e8cb1bd3a (IsA adult_body human_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adult education is a kind of course", "pln": ["(: cnet_isa_171d35c96d (IsA adult_education course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adult female body is a kind of adult body", "pln": ["(: cnet_isa_3ab7f221c7 (IsA adult_female_body adult_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adult female body is a kind of female body", "pln": ["(: cnet_isa_671dd0e437 (IsA adult_female_body female_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adult intelligence is a kind of intelligence quotient", "pln": ["(: cnet_isa_edcd1fd121 (IsA adult_intelligence intelligence_quotient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adult male body is a kind of adult body", "pln": ["(: cnet_isa_3bc9ff49f1 (IsA adult_male_body adult_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adult male body is a kind of male body", "pln": ["(: cnet_isa_6a564c0062 (IsA adult_male_body male_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adult respiratory distress syndrome is a kind of respiratory disease", "pln": ["(: cnet_isa_05e6f9574b (IsA adult_respiratory_distress_syndrome respiratory_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adulterant is a kind of substance", "pln": ["(: cnet_isa_e606f90547 (IsA adulterant substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adulteration is a kind of change", "pln": ["(: cnet_isa_95091f643a (IsA adulteration change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adulteration is a kind of impurity", "pln": ["(: cnet_isa_11dda282ac (IsA adulteration impurity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adulterator is a kind of changer", "pln": ["(: cnet_isa_87d289dfaa (IsA adulterator changer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adulterer is a kind of libertine", "pln": ["(: cnet_isa_9e86a9df5d (IsA adulterer libertine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adulteress is a kind of adulterer", "pln": ["(: cnet_isa_7b1144c42c (IsA adulteress adulterer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adultery is a kind of extramarital sex", "pln": ["(: cnet_isa_e58a35b780 (IsA adultery extramarital_sex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adulthood is a kind of maturity", "pln": ["(: cnet_isa_7fe149a12a (IsA adulthood maturity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adulthood is a kind of time of life", "pln": ["(: cnet_isa_1b66027b68 (IsA adulthood time_of_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adumbration is a kind of representation", "pln": ["(: cnet_isa_705ced043d (IsA adumbration representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "advance is a kind of increase", "pln": ["(: cnet_isa_9f15f72a19 (IsA advance increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "advance is a kind of sum", "pln": ["(: cnet_isa_1e1ba0996b (IsA advance sum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "advance death benefit is a kind of death benefit", "pln": ["(: cnet_isa_af0475f74a (IsA advance_death_benefit death_benefit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "advanced research and development activity is a kind of agency", "pln": ["(: cnet_isa_2c3d3b4e57 (IsA advanced_research_and_development_activity agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "advancement is a kind of development", "pln": ["(: cnet_isa_6dd0d82417 (IsA advancement development) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "advancer is a kind of mover", "pln": ["(: cnet_isa_b06b20c66a (IsA advancer mover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "advantage is a kind of asset", "pln": ["(: cnet_isa_991f98725c (IsA advantage asset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "advantage is a kind of benefit", "pln": ["(: cnet_isa_86e6909dd7 (IsA advantage benefit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "advantage is a kind of point", "pln": ["(: cnet_isa_5d08747e27 (IsA advantage point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "advection is a kind of temperature change", "pln": ["(: cnet_isa_830c5eae59 (IsA advection temperature_change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "advent is a kind of arrival", "pln": ["(: cnet_isa_3006c43ed1 (IsA advent arrival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "advent is a kind of season", "pln": ["(: cnet_isa_69831c3e4e (IsA advent season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "advent sunday is a kind of christian holy day", "pln": ["(: cnet_isa_0f73ca8d48 (IsA advent_sunday christian_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "adventism is a kind of christianity", "pln": ["(: cnet_isa_8cf5a634a1 (IsA adventism christianity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adventitious root is a kind of root", "pln": ["(: cnet_isa_66c2e65ffd (IsA adventitious_root root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adventure is a kind of undertaking", "pln": ["(: cnet_isa_dadb88c0e6 (IsA adventure undertaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "adventure story is a kind of story", "pln": ["(: cnet_isa_41593445c1 (IsA adventure_story story) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adventurer is a kind of person", "pln": ["(: cnet_isa_db46e10deb (IsA adventurer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adventuress is a kind of adventurer", "pln": ["(: cnet_isa_807e0c4b17 (IsA adventuress adventurer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adventurism is a kind of recklessness", "pln": ["(: cnet_isa_b170bf37fd (IsA adventurism recklessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adventurousness is a kind of boldness", "pln": ["(: cnet_isa_16bf485460 (IsA adventurousness boldness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adverb is a kind of major form class", "pln": ["(: cnet_isa_67fbaeaaff (IsA adverb major_form_class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "adverb is a kind of modifier", "pln": ["(: cnet_isa_48ea43521e (IsA adverb modifier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adverbial is a kind of adverb", "pln": ["(: cnet_isa_17a61a1e44 (IsA adverbial adverb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adversary is a kind of person", "pln": ["(: cnet_isa_52dfd4a4f1 (IsA adversary person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adversative conjunction is a kind of conjunction", "pln": ["(: cnet_isa_ab19a4e944 (IsA adversative_conjunction conjunction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adverse opinion is a kind of opinion", "pln": ["(: cnet_isa_87511896a4 (IsA adverse_opinion opinion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adverse witness is a kind of witness", "pln": ["(: cnet_isa_cb45cd3e23 (IsA adverse_witness witness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adversity is a kind of misfortune", "pln": ["(: cnet_isa_b0143b53f3 (IsA adversity misfortune) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "advertence is a kind of attentiveness", "pln": ["(: cnet_isa_4011c999e9 (IsA advertence attentiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "advertiser is a kind of publicist", "pln": ["(: cnet_isa_0a5e3edec1 (IsA advertiser publicist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "advertising is a kind of commercial enterprise", "pln": ["(: cnet_isa_ee9472989e (IsA advertising commercial_enterprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "advertising agency is a kind of agency", "pln": ["(: cnet_isa_ac32909f25 (IsA advertising_agency agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "advertising campaign is a kind of campaign", "pln": ["(: cnet_isa_feb126658d (IsA advertising_campaign campaign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "advertising department is a kind of business department", "pln": ["(: cnet_isa_94405cf804 (IsA advertising_department business_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "advertorial is a kind of ad", "pln": ["(: cnet_isa_0ff139c6ea (IsA advertorial ad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "advice is a kind of proposal", "pln": ["(: cnet_isa_6486c33620 (IsA advice proposal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "advice and consent is a kind of saying", "pln": ["(: cnet_isa_c54ef62847 (IsA advice_and_consent saying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "advisability is a kind of wisdom", "pln": ["(: cnet_isa_c7526203a6 (IsA advisability wisdom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "advisee is a kind of person", "pln": ["(: cnet_isa_ac82e5a78e (IsA advisee person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adviser is a kind of authority", "pln": ["(: cnet_isa_819e767e1b (IsA adviser authority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "advisory is a kind of announcement", "pln": ["(: cnet_isa_3b52942379 (IsA advisory announcement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "advisory board is a kind of board", "pln": ["(: cnet_isa_45af77f2c5 (IsA advisory_board board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "advisory service is a kind of consulting service", "pln": ["(: cnet_isa_bc53e18e67 (IsA advisory_service consulting_service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "advocacy is a kind of support", "pln": ["(: cnet_isa_9679208f96 (IsA advocacy support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "advocate is a kind of lawyer", "pln": ["(: cnet_isa_b657c38e92 (IsA advocate lawyer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "advocate is a kind of person", "pln": ["(: cnet_isa_f1a32c2a66 (IsA advocate person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "advowson is a kind of right", "pln": ["(: cnet_isa_6511457abe (IsA advowson right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adynamia is a kind of weakness", "pln": ["(: cnet_isa_c1d65b33f9 (IsA adynamia weakness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adz is a kind of edge tool", "pln": ["(: cnet_isa_4b4b1ae03f (IsA adz edge_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "adzuki bean is a kind of legume", "pln": ["(: cnet_isa_ec1c424d65 (IsA adzuki_bean legume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aeciospore is a kind of spore", "pln": ["(: cnet_isa_c89705fbe7 (IsA aeciospore spore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aecium is a kind of fruiting body", "pln": ["(: cnet_isa_fdc0c8d544 (IsA aecium fruiting_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aede is a kind of arthropod genus", "pln": ["(: cnet_isa_02389e037c (IsA aede arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aegean civilization is a kind of culture", "pln": ["(: cnet_isa_b9e1d25774 (IsA aegean_civilization culture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aegean island is a kind of island", "pln": ["(: cnet_isa_78756e7c2c (IsA aegean_island island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aegicera is a kind of asterid dicot genus", "pln": ["(: cnet_isa_f8e399aab1 (IsA aegicera asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aegilop is a kind of monocot genus", "pln": ["(: cnet_isa_6ebc3f2e9d (IsA aegilop monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aegina is a kind of jellyfish", "pln": ["(: cnet_isa_2352f970e3 (IsA aegina jellyfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aegypiidae is a kind of vulture", "pln": ["(: cnet_isa_582775b91c (IsA aegypiidae vulture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aegypius is a kind of bird genus", "pln": ["(: cnet_isa_b78ae038d5 (IsA aegypius bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aegyptopithecus is a kind of hominoid", "pln": ["(: cnet_isa_bb6614c24c (IsA aegyptopithecus hominoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aeolian is a kind of citizenry", "pln": ["(: cnet_isa_58bc344d6b (IsA aeolian citizenry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aeolian harp is a kind of harp", "pln": ["(: cnet_isa_5b556df51c (IsA aeolian_harp harp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aeolic is a kind of ancient greek", "pln": ["(: cnet_isa_6e0b49123c (IsA aeolic ancient_greek) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aeonium is a kind of plant genus", "pln": ["(: cnet_isa_48e1e37181 (IsA aeonium plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aepycero is a kind of mammal genus", "pln": ["(: cnet_isa_24cde62e89 (IsA aepycero mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aepyornidae is a kind of bird family", "pln": ["(: cnet_isa_546d3cecf9 (IsA aepyornidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aepyorniforme is a kind of animal order", "pln": ["(: cnet_isa_1bd7e0ec47 (IsA aepyorniforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aeration is a kind of change of state", "pln": ["(: cnet_isa_e82a0313ae (IsA aeration change_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aeration is a kind of natural process", "pln": ["(: cnet_isa_6e06fbd496 (IsA aeration natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aerator is a kind of apparatus", "pln": ["(: cnet_isa_a49c49adbb (IsA aerator apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aerial ladder is a kind of extension ladder", "pln": ["(: cnet_isa_f0f05aeac0 (IsA aerial_ladder extension_ladder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aerial torpedo is a kind of torpedo", "pln": ["(: cnet_isa_1e3fd9f734 (IsA aerial_torpedo torpedo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aerialist is a kind of acrobat", "pln": ["(: cnet_isa_84326082d9 (IsA aerialist acrobat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aeride is a kind of orchid", "pln": ["(: cnet_isa_e8f08a60f3 (IsA aeride orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aerie is a kind of habitation", "pln": ["(: cnet_isa_5d01358afd (IsA aerie habitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aerie is a kind of bird s nest", "pln": ["(: cnet_isa_692a5b625d (IsA aerie bird_s_nest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "aerobacter is a kind of bacteria genus", "pln": ["(: cnet_isa_4df5f3e89c (IsA aerobacter bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aerobacter aerogene is a kind of bacteria specy", "pln": ["(: cnet_isa_96e8c409b6 (IsA aerobacter_aerogene bacteria_specy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aerobe is a kind of organism", "pln": ["(: cnet_isa_09c26f95f6 (IsA aerobe organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aerobic is a kind of cardiopulmonary exercise", "pln": ["(: cnet_isa_efd401b620 (IsA aerobic cardiopulmonary_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aerobiosis is a kind of life", "pln": ["(: cnet_isa_f720e820b2 (IsA aerobiosis life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aerodontalgia is a kind of toothache", "pln": ["(: cnet_isa_f9fa4733a2 (IsA aerodontalgia toothache) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aerodynamic force is a kind of force", "pln": ["(: cnet_isa_648894568d (IsA aerodynamic_force force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aerodynamic lift is a kind of aerodynamic force", "pln": ["(: cnet_isa_f27031f95d (IsA aerodynamic_lift aerodynamic_force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "aerolite is a kind of meteorite", "pln": ["(: cnet_isa_80a8c30d0e (IsA aerolite meteorite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aerology is a kind of meteorology", "pln": ["(: cnet_isa_712faa1328 (IsA aerology meteorology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aeromechanic is a kind of mechanic", "pln": ["(: cnet_isa_c5c5c9c5ed (IsA aeromechanic mechanic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aeromedicine is a kind of biomedicine", "pln": ["(: cnet_isa_4867aaeb9a (IsA aeromedicine biomedicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aeronautical engineer is a kind of engineer", "pln": ["(: cnet_isa_f6fb81a915 (IsA aeronautical_engineer engineer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aeronautical engineering is a kind of technology", "pln": ["(: cnet_isa_c847b64567 (IsA aeronautical_engineering technology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aeronautical engineering is a kind of engineering", "pln": ["(: cnet_isa_aa0c950742 (IsA aeronautical_engineering engineering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aeronautic is a kind of physic", "pln": ["(: cnet_isa_114626b237 (IsA aeronautic physic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "aerophagia is a kind of swallow", "pln": ["(: cnet_isa_dd3e3cf59c (IsA aerophagia swallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aerophilately is a kind of philately", "pln": ["(: cnet_isa_03c9c13b78 (IsA aerophilately philately) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aerophile is a kind of fan", "pln": ["(: cnet_isa_f9b01e189c (IsA aerophile fan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aerosol is a kind of dispenser", "pln": ["(: cnet_isa_4677d05c04 (IsA aerosol dispenser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aerosol is a kind of cloud", "pln": ["(: cnet_isa_ba3259cce4 (IsA aerosol cloud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aerospace is a kind of region", "pln": ["(: cnet_isa_6c1c310a16 (IsA aerospace region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aerospace engineer is a kind of engineer", "pln": ["(: cnet_isa_a7a72f3a31 (IsA aerospace_engineer engineer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aeschynanthus is a kind of air plant", "pln": ["(: cnet_isa_820f171e20 (IsA aeschynanthus air_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "aesculus is a kind of dicot genus", "pln": ["(: cnet_isa_eff5611cdf (IsA aesculus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aesir is a kind of norse deity", "pln": ["(: cnet_isa_08a9f08ac0 (IsA aesir norse_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aesop s fable is a kind of fable", "pln": ["(: cnet_isa_7a56fb9ed7 (IsA aesop_s_fable fable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aesthetic is a kind of philosophical doctrine", "pln": ["(: cnet_isa_16d185938a (IsA aesthetic philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aesthetic is a kind of branch of philosophy", "pln": ["(: cnet_isa_4c02805e48 (IsA aesthetic branch_of_philosophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aesthetic is a kind of philosophy", "pln": ["(: cnet_isa_9017ab90f1 (IsA aesthetic philosophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aether is a kind of greek deity", "pln": ["(: cnet_isa_4acaa420e9 (IsA aether greek_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aethionema is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_86a4e3312e (IsA aethionema dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aethusa is a kind of rosid dicot genus", "pln": ["(: cnet_isa_d7f25a9d1f (IsA aethusa rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aetobatus is a kind of fish genus", "pln": ["(: cnet_isa_ab0a0e52ee (IsA aetobatus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affability is a kind of friendliness", "pln": ["(: cnet_isa_98356a5f6d (IsA affability friendliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "affair is a kind of social event", "pln": ["(: cnet_isa_c8df60f7d5 (IsA affair social_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affair is a kind of sexual relationship", "pln": ["(: cnet_isa_f05b50c22a (IsA affair sexual_relationship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affair is a kind of transaction", "pln": ["(: cnet_isa_47438d223a (IsA affair transaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affect is a kind of feeling", "pln": ["(: cnet_isa_8e10fdf26b (IsA affect feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affectation is a kind of pretense", "pln": ["(: cnet_isa_dd70ff6878 (IsA affectation pretense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affected role is a kind of semantic role", "pln": ["(: cnet_isa_74b9bf8869 (IsA affected_role semantic_role) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affectedness is a kind of unnaturalness", "pln": ["(: cnet_isa_f133d27b6b (IsA affectedness unnaturalness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "affection is a kind of feeling", "pln": ["(: cnet_isa_31536608ed (IsA affection feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affectionateness is a kind of emotionality", "pln": ["(: cnet_isa_c4fdbf6937 (IsA affectionateness emotionality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affective disorder is a kind of mental disorder", "pln": ["(: cnet_isa_41bcd103c5 (IsA affective_disorder mental_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affenpinscher is a kind of pinscher", "pln": ["(: cnet_isa_7c6daefb6a (IsA affenpinscher pinscher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "afferent fiber is a kind of nerve fiber", "pln": ["(: cnet_isa_973b058b88 (IsA afferent_fiber nerve_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affiant is a kind of person", "pln": ["(: cnet_isa_bcb51e367e (IsA affiant person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affidavit is a kind of legal document", "pln": ["(: cnet_isa_cdf0025d12 (IsA affidavit legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affidavit is a kind of testimony", "pln": ["(: cnet_isa_18113d8419 (IsA affidavit testimony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affiliate is a kind of organization", "pln": ["(: cnet_isa_299e0d4ea1 (IsA affiliate organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affiliate is a kind of associate", "pln": ["(: cnet_isa_6feeb5d9ad (IsA affiliate associate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affiliation is a kind of association", "pln": ["(: cnet_isa_e0f1313eb6 (IsA affiliation association) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affiliation is a kind of relationship", "pln": ["(: cnet_isa_92ca9304e3 (IsA affiliation relationship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affine is a kind of kin", "pln": ["(: cnet_isa_6885ea2dc6 (IsA affine kin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affine geometry is a kind of geometry", "pln": ["(: cnet_isa_2d5565a549 (IsA affine_geometry geometry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affine transformation is a kind of transformation", "pln": ["(: cnet_isa_f03fab05fd (IsA affine_transformation transformation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "affinity is a kind of kinship", "pln": ["(: cnet_isa_fcd7e55e8b (IsA affinity kinship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affinity is a kind of attraction", "pln": ["(: cnet_isa_1b2352ff9f (IsA affinity attraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affinity is a kind of resemblance", "pln": ["(: cnet_isa_a98bb87e8d (IsA affinity resemblance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affinity is a kind of relation", "pln": ["(: cnet_isa_df0ebe919d (IsA affinity relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affinity is a kind of force", "pln": ["(: cnet_isa_7db3208581 (IsA affinity force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affirmation is a kind of speech act", "pln": ["(: cnet_isa_cddb2e902e (IsA affirmation speech_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affirmation is a kind of judgment", "pln": ["(: cnet_isa_aa9b1967ae (IsA affirmation judgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affirmation is a kind of commitment", "pln": ["(: cnet_isa_b2d8152ae7 (IsA affirmation commitment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affirmative is a kind of avowal", "pln": ["(: cnet_isa_b179c51838 (IsA affirmative avowal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affirmative action is a kind of social action", "pln": ["(: cnet_isa_290f66c8c6 (IsA affirmative_action social_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affirmative pleading is a kind of pleading", "pln": ["(: cnet_isa_366b381ecb (IsA affirmative_pleading pleading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affirmativeness is a kind of agreeableness", "pln": ["(: cnet_isa_55a8e38f51 (IsA affirmativeness agreeableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affix is a kind of bound morpheme", "pln": ["(: cnet_isa_8db6ad36e4 (IsA affix bound_morpheme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affixation is a kind of formation", "pln": ["(: cnet_isa_4920fa5d28 (IsA affixation formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affixation is a kind of morphology", "pln": ["(: cnet_isa_685681d7ba (IsA affixation morphology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "afflatus is a kind of inspiration", "pln": ["(: cnet_isa_b2b6e1240f (IsA afflatus inspiration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affliction is a kind of trouble", "pln": ["(: cnet_isa_e7ea994745 (IsA affliction trouble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "affliction is a kind of adversity", "pln": ["(: cnet_isa_4dc5847468 (IsA affliction adversity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affliction is a kind of ill health", "pln": ["(: cnet_isa_23d5c385a4 (IsA affliction ill_health) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affluence is a kind of wealth", "pln": ["(: cnet_isa_3875e7493b (IsA affluence wealth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affluent is a kind of rich person", "pln": ["(: cnet_isa_56228d16a2 (IsA affluent rich_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "afforestation is a kind of conversion", "pln": ["(: cnet_isa_4f4e0f0425 (IsA afforestation conversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affray is a kind of fight", "pln": ["(: cnet_isa_91ff47326a (IsA affray fight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affray is a kind of quarrel", "pln": ["(: cnet_isa_83e5e78242 (IsA affray quarrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affricate is a kind of obstruent", "pln": ["(: cnet_isa_b0317963cc (IsA affricate obstruent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affrication is a kind of articulation", "pln": ["(: cnet_isa_a19e9e489d (IsA affrication articulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "affusion is a kind of baptism", "pln": ["(: cnet_isa_9821c9e192 (IsA affusion baptism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "afgan hound is a kind of dog", "pln": ["(: cnet_isa_b8868b9be0 (IsA afgan_hound dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "afghan is a kind of blanket", "pln": ["(: cnet_isa_e5f0f768ff (IsA afghan blanket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "afghan hound is a kind of hound", "pln": ["(: cnet_isa_6f45916d82 (IsA afghan_hound hound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "afghan monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_be399527dd (IsA afghan_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "afghani is a kind of afghan monetary unit", "pln": ["(: cnet_isa_21d61a7dd0 (IsA afghani afghan_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "afghanistani is a kind of asiatic", "pln": ["(: cnet_isa_d364f42c89 (IsA afghanistani asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "afibrinogenemia is a kind of blood disease", "pln": ["(: cnet_isa_93d07b5434 (IsA afibrinogenemia blood_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "aficionado is a kind of fan", "pln": ["(: cnet_isa_2c2dc541e4 (IsA aficionado fan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aficionado is a kind of sport fan", "pln": ["(: cnet_isa_8c6dd0bdbb (IsA aficionado sport_fan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aflatoxin is a kind of bioweapon", "pln": ["(: cnet_isa_c871abcc64 (IsA aflatoxin bioweapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aflatoxin is a kind of mycotoxin", "pln": ["(: cnet_isa_54079ec62b (IsA aflatoxin mycotoxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aframomum is a kind of plant genus", "pln": ["(: cnet_isa_f123b3656b (IsA aframomum plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "africa is a kind of continent", "pln": ["(: cnet_isa_4e3a94baa8 (IsA africa continent) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "african is a kind of person", "pln": ["(: cnet_isa_5c574546f9 (IsA african person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "african american is a kind of negro", "pln": ["(: cnet_isa_597eca9808 (IsA african_american negro) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "african bowstring hemp is a kind of sansevieria", "pln": ["(: cnet_isa_42286693a1 (IsA african_bowstring_hemp sansevieria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "african chameleon is a kind of chameleon", "pln": ["(: cnet_isa_c3bdc2fd03 (IsA african_chameleon chameleon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "african clawed frog is a kind of tongueless frog", "pln": ["(: cnet_isa_529c28b0c5 (IsA african_clawed_frog tongueless_frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "african coral snake is a kind of coral snake", "pln": ["(: cnet_isa_e5be24e03f (IsA african_coral_snake coral_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "african country is a kind of country", "pln": ["(: cnet_isa_de9be580bc (IsA african_country country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "african crocodile is a kind of crocodile", "pln": ["(: cnet_isa_1d2ab91cc1 (IsA african_crocodile crocodile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "african daisy is a kind of flower", "pln": ["(: cnet_isa_57c4d9598c (IsA african_daisy flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "african elephant is a kind of elephant", "pln": ["(: cnet_isa_5337bfd882 (IsA african_elephant elephant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "african gray is a kind of parrot", "pln": ["(: cnet_isa_7f8b5273c7 (IsA african_gray parrot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "african hemp is a kind of shrub", "pln": ["(: cnet_isa_e126769480 (IsA african_hemp shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "african holly is a kind of nightshade", "pln": ["(: cnet_isa_6d56d45f23 (IsA african_holly nightshade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "african hunting dog is a kind of wild dog", "pln": ["(: cnet_isa_95c156e0f8 (IsA african_hunting_dog wild_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "african lily is a kind of agapanthus", "pln": ["(: cnet_isa_81ad71bff4 (IsA african_lily agapanthus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "african mahogany is a kind of mahogany", "pln": ["(: cnet_isa_8b470e5696 (IsA african_mahogany mahogany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "african marigold is a kind of marigold", "pln": ["(: cnet_isa_5312e36247 (IsA african_marigold marigold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "african monitor is a kind of monitor", "pln": ["(: cnet_isa_a153c6ad24 (IsA african_monitor monitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "african oil palm is a kind of oil palm", "pln": ["(: cnet_isa_5acc2558f9 (IsA african_oil_palm oil_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "african scented mahogany is a kind of mahogany", "pln": ["(: cnet_isa_aa74f860e3 (IsA african_scented_mahogany mahogany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "african violet is a kind of flower", "pln": ["(: cnet_isa_7ba851639f (IsA african_violet flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "african walnut is a kind of tree", "pln": ["(: cnet_isa_f449e64b39 (IsA african_walnut tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "african wild ass is a kind of wild ass", "pln": ["(: cnet_isa_445e552983 (IsA african_wild_ass wild_ass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "africander is a kind of cattle", "pln": ["(: cnet_isa_f0877e5aec (IsA africander cattle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "africanized bee is a kind of honeybee", "pln": ["(: cnet_isa_e95cf044a1 (IsA africanized_bee honeybee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "afrikaan is a kind of dutch", "pln": ["(: cnet_isa_e1386704ac (IsA afrikaan dutch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "afrikander is a kind of south african", "pln": ["(: cnet_isa_d25a200daf (IsA afrikander south_african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "afro is a kind of hairdo", "pln": ["(: cnet_isa_73f4ea7ec2 (IsA afro hairdo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "afro wig is a kind of hairpiece", "pln": ["(: cnet_isa_f7be7ed645 (IsA afro_wig hairpiece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "afroasiatic is a kind of natural language", "pln": ["(: cnet_isa_5516a5f227 (IsA afroasiatic natural_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "afrocarpus is a kind of gymnosperm genus", "pln": ["(: cnet_isa_381d7d47af (IsA afrocarpus gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "afropavo is a kind of pheasant", "pln": ["(: cnet_isa_45c831aad5 (IsA afropavo pheasant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "after shave is a kind of lotion", "pln": ["(: cnet_isa_37f48343ff (IsA after_shave lotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "afterbirth is a kind of placenta", "pln": ["(: cnet_isa_03c64104f2 (IsA afterbirth placenta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "afterburner is a kind of device", "pln": ["(: cnet_isa_1841ea3a9d (IsA afterburner device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aftercare is a kind of medical care", "pln": ["(: cnet_isa_cbf43d1bc1 (IsA aftercare medical_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "afterdamp is a kind of gas", "pln": ["(: cnet_isa_2f3981e74d (IsA afterdamp gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "afterdeck is a kind of deck", "pln": ["(: cnet_isa_5d1877194d (IsA afterdeck deck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aftereffect is a kind of consequence", "pln": ["(: cnet_isa_d19cf74598 (IsA aftereffect consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "aftereffect is a kind of effect", "pln": ["(: cnet_isa_c3cac70910 (IsA aftereffect effect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "afterglow is a kind of pleasantness", "pln": ["(: cnet_isa_2a7cc22322 (IsA afterglow pleasantness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "afterglow is a kind of atmospheric phenomenon", "pln": ["(: cnet_isa_fb31c12f70 (IsA afterglow atmospheric_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "afterimage is a kind of memory image", "pln": ["(: cnet_isa_91ece5284c (IsA afterimage memory_image) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "afterlife is a kind of life", "pln": ["(: cnet_isa_ccf309f789 (IsA afterlife life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aftermath is a kind of consequence", "pln": ["(: cnet_isa_6898e0b43d (IsA aftermath consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "afternoon is a kind of day", "pln": ["(: cnet_isa_4fa0f67d94 (IsA afternoon day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "afterpain is a kind of pang", "pln": ["(: cnet_isa_92f319fe9f (IsA afterpain pang) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "afterpiece is a kind of piece", "pln": ["(: cnet_isa_08a0c4b21c (IsA afterpiece piece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "aftershaft is a kind of feather", "pln": ["(: cnet_isa_0f96b9c82a (IsA aftershaft feather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aftershock is a kind of tremor", "pln": ["(: cnet_isa_2dbd886c16 (IsA aftershock tremor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aftertaste is a kind of afterimage", "pln": ["(: cnet_isa_03d7d9a7dc (IsA aftertaste afterimage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "afterthought is a kind of addition", "pln": ["(: cnet_isa_e66041ffe5 (IsA afterthought addition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "afterworld is a kind of imaginary place", "pln": ["(: cnet_isa_b91a014232 (IsA afterworld imaginary_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aga is a kind of title", "pln": ["(: cnet_isa_acb3ce2f18 (IsA aga title) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agal is a kind of cord", "pln": ["(: cnet_isa_38ebebbf9c (IsA agal cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agalactia is a kind of physiological state", "pln": ["(: cnet_isa_4f1259532f (IsA agalactia physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agalinis is a kind of asterid dicot genus", "pln": ["(: cnet_isa_4561715ff2 (IsA agalinis asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agama is a kind of agamid", "pln": ["(: cnet_isa_3417116330 (IsA agama agamid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agamete is a kind of reproductive structure", "pln": ["(: cnet_isa_5f41baef6e (IsA agamete reproductive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agamid is a kind of lizard", "pln": ["(: cnet_isa_8b6243e81c (IsA agamid lizard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agamidae is a kind of reptile family", "pln": ["(: cnet_isa_7ccbda2f9a (IsA agamidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agammaglobulinemia is a kind of immunodeficiency", "pln": ["(: cnet_isa_c272339d97 (IsA agammaglobulinemia immunodeficiency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agapanthus is a kind of liliaceous plant", "pln": ["(: cnet_isa_2a53fe24fd (IsA agapanthus liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agape is a kind of religious ceremony", "pln": ["(: cnet_isa_3e3d1dc903 (IsA agape religious_ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agape is a kind of love", "pln": ["(: cnet_isa_0a85d7c516 (IsA agape love) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agapornis is a kind of bird genus", "pln": ["(: cnet_isa_4bdade5e62 (IsA agapornis bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agar is a kind of culture medium", "pln": ["(: cnet_isa_944101f2db (IsA agar culture_medium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agar is a kind of gum", "pln": ["(: cnet_isa_786dcf6ed4 (IsA agar gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agaric is a kind of basidiomycete", "pln": ["(: cnet_isa_d27dd62e93 (IsA agaric basidiomycete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agaric is a kind of fungus", "pln": ["(: cnet_isa_6ccc4cace5 (IsA agaric fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agaricaceae is a kind of fungus family", "pln": ["(: cnet_isa_18f63be7dd (IsA agaricaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agaricale is a kind of fungus order", "pln": ["(: cnet_isa_05b31f9356 (IsA agaricale fungus_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agaricus is a kind of fungus genus", "pln": ["(: cnet_isa_f8dd008262 (IsA agaricus fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agastache is a kind of asterid dicot genus", "pln": ["(: cnet_isa_809a00972b (IsA agastache asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "agate is a kind of chalcedony", "pln": ["(: cnet_isa_fb440dec1d (IsA agate chalcedony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agate line is a kind of area unit", "pln": ["(: cnet_isa_78276ed54e (IsA agate_line area_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agateware is a kind of pottery", "pln": ["(: cnet_isa_48b5f0cfff (IsA agateware pottery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agathis is a kind of gymnosperm genus", "pln": ["(: cnet_isa_0bed7fbec8 (IsA agathis gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agavaceae is a kind of liliid monocot family", "pln": ["(: cnet_isa_067a44ddac (IsA agavaceae liliid_monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agave is a kind of desert plant", "pln": ["(: cnet_isa_e354aa5d5f (IsA agave desert_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agave tequilana is a kind of agave", "pln": ["(: cnet_isa_6165e34c24 (IsA agave_tequilana agave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agdestis is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_2e4d2d696b (IsA agdestis caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agdestis is a kind of climber", "pln": ["(: cnet_isa_dab9171bb2 (IsA agdestis climber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "age is a kind of period of existence", "pln": ["(: cnet_isa_fd43a57c06 (IsA age period_of_existence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "age is a kind of property", "pln": ["(: cnet_isa_62b90e6d18 (IsA age property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "age is a kind of time of life", "pln": ["(: cnet_isa_2c031c4627 (IsA age time_of_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "age class is a kind of class", "pln": ["(: cnet_isa_c11225cbed (IsA age_class class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "age group is a kind of people", "pln": ["(: cnet_isa_f391d87cd4 (IsA age_group people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "age limit is a kind of regulation", "pln": ["(: cnet_isa_b8868d3731 (IsA age_limit regulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "age norm is a kind of average", "pln": ["(: cnet_isa_79c88354c7 (IsA age_norm average) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "age of consent is a kind of age", "pln": ["(: cnet_isa_e27ad05ebe (IsA age_of_consent age) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "age related macular degeneration is a kind of macular degeneration", "pln": ["(: cnet_isa_fc75d3c696 (IsA age_related_macular_degeneration macular_degeneration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "aged is a kind of age group", "pln": ["(: cnet_isa_5f3d0aaf78 (IsA aged age_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agedness is a kind of oldness", "pln": ["(: cnet_isa_4e394f8622 (IsA agedness oldness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ageism is a kind of discrimination", "pln": ["(: cnet_isa_3f7524c33c (IsA ageism discrimination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agelaius is a kind of bird genus", "pln": ["(: cnet_isa_efbd8804c7 (IsA agelaius bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "agelessness is a kind of immutability", "pln": ["(: cnet_isa_16916d6f5c (IsA agelessness immutability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agency is a kind of administrative unit", "pln": ["(: cnet_isa_3f5ae6f554 (IsA agency administrative_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agency is a kind of business", "pln": ["(: cnet_isa_dbd9adcaf9 (IsA agency business) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agency is a kind of action", "pln": ["(: cnet_isa_cebbb9e9d3 (IsA agency action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agenda is a kind of plan", "pln": ["(: cnet_isa_d83d0b9661 (IsA agenda plan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agenda is a kind of list", "pln": ["(: cnet_isa_ee64a355dd (IsA agenda list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agenda item is a kind of item", "pln": ["(: cnet_isa_ab95fb7254 (IsA agenda_item item) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "agenesis is a kind of nondevelopment", "pln": ["(: cnet_isa_bc2b038ce1 (IsA agenesis nondevelopment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "agent is a kind of causal agent", "pln": ["(: cnet_isa_3168368c8d (IsA agent causal_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agent is a kind of businessperson", "pln": ["(: cnet_isa_3706dd218d (IsA agent businessperson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agent is a kind of official", "pln": ["(: cnet_isa_435e45d38c (IsA agent official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agent is a kind of representative", "pln": ["(: cnet_isa_7dafcd051f (IsA agent representative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agent is a kind of substance", "pln": ["(: cnet_isa_dd6b7ffd52 (IsA agent substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agent bank is a kind of depository financial institution", "pln": ["(: cnet_isa_911b39bfd0 (IsA agent_bank depository_financial_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "agent in place is a kind of secret agent", "pln": ["(: cnet_isa_78935bb815 (IsA agent_in_place secret_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agent orange is a kind of herbicide", "pln": ["(: cnet_isa_06c76d3b88 (IsA agent_orange herbicide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agent provocateur is a kind of secret agent", "pln": ["(: cnet_isa_13d4d6b716 (IsA agent_provocateur secret_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agentive role is a kind of semantic role", "pln": ["(: cnet_isa_af06b855ed (IsA agentive_role semantic_role) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "agerasia is a kind of appearance", "pln": ["(: cnet_isa_b4ee10d580 (IsA agerasia appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ageratina is a kind of asterid dicot genus", "pln": ["(: cnet_isa_3e6a0477e7 (IsA ageratina asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ageratum is a kind of flower", "pln": ["(: cnet_isa_94536cd34f (IsA ageratum flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agglomerate is a kind of volcanic rock", "pln": ["(: cnet_isa_bebd6b62a8 (IsA agglomerate volcanic_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agglomeration is a kind of collection", "pln": ["(: cnet_isa_eb88eafaa5 (IsA agglomeration collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agglomerator is a kind of device", "pln": ["(: cnet_isa_090379477f (IsA agglomerator device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agglutination is a kind of chemical process", "pln": ["(: cnet_isa_5a9b279fde (IsA agglutination chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "agglutination is a kind of linguistic process", "pln": ["(: cnet_isa_d68f02fac4 (IsA agglutination linguistic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agglutination is a kind of organic process", "pln": ["(: cnet_isa_9644406c98 (IsA agglutination organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agglutination test is a kind of blood test", "pln": ["(: cnet_isa_6ec353e498 (IsA agglutination_test blood_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agglutinin is a kind of antibody", "pln": ["(: cnet_isa_729cbd5fc8 (IsA agglutinin antibody) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agglutinogen is a kind of antigen", "pln": ["(: cnet_isa_95970c6f2b (IsA agglutinogen antigen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aggrandizement is a kind of increase", "pln": ["(: cnet_isa_fcd3f1cd88 (IsA aggrandizement increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aggravated assault is a kind of assault", "pln": ["(: cnet_isa_5c33f8c7d0 (IsA aggravated_assault assault) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aggravation is a kind of aggression", "pln": ["(: cnet_isa_c0a6df02eb (IsA aggravation aggression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aggravation is a kind of intensification", "pln": ["(: cnet_isa_58c77b1975 (IsA aggravation intensification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aggravation is a kind of annoyance", "pln": ["(: cnet_isa_87d5af25c1 (IsA aggravation annoyance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aggravator is a kind of unpleasant person", "pln": ["(: cnet_isa_1f4b6373a3 (IsA aggravator unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aggregate is a kind of sum", "pln": ["(: cnet_isa_8a6a1919f3 (IsA aggregate sum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aggregate is a kind of material", "pln": ["(: cnet_isa_ac0d25bbe0 (IsA aggregate material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aggregate fruit is a kind of fruit", "pln": ["(: cnet_isa_4dc3b37f0c (IsA aggregate_fruit fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aggression is a kind of action", "pln": ["(: cnet_isa_523fd2f810 (IsA aggression action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aggression is a kind of behavior", "pln": ["(: cnet_isa_11a80e2fb1 (IsA aggression behavior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aggression is a kind of combat", "pln": ["(: cnet_isa_cdf6a8fa01 (IsA aggression combat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aggression is a kind of unfriendliness", "pln": ["(: cnet_isa_b3c7b62c38 (IsA aggression unfriendliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aggression is a kind of hostility", "pln": ["(: cnet_isa_63624e9a39 (IsA aggression hostility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aggressiveness is a kind of disagreeableness", "pln": ["(: cnet_isa_f310bd9ee8 (IsA aggressiveness disagreeableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aggressiveness is a kind of drive", "pln": ["(: cnet_isa_968a37e98d (IsA aggressiveness drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aggressor is a kind of instigator", "pln": ["(: cnet_isa_8ffa59d92c (IsA aggressor instigator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aggro is a kind of aggravation", "pln": ["(: cnet_isa_388bcf898f (IsA aggro aggravation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aghan is a kind of hindu calendar month", "pln": ["(: cnet_isa_a46e010577 (IsA aghan hindu_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agility is a kind of gracefulness", "pln": ["(: cnet_isa_1e14cf6c8f (IsA agility gracefulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aging is a kind of organic process", "pln": ["(: cnet_isa_22ed6dfa05 (IsA aging organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agio is a kind of charge", "pln": ["(: cnet_isa_f328928e93 (IsA agio charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agitated depression is a kind of depressive disorder", "pln": ["(: cnet_isa_795f64d173 (IsA agitated_depression depressive_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agitation is a kind of disturbance", "pln": ["(: cnet_isa_e403f5be03 (IsA agitation disturbance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agitation is a kind of motion", "pln": ["(: cnet_isa_9821d296d8 (IsA agitation motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agitation is a kind of feeling", "pln": ["(: cnet_isa_5928d53ffc (IsA agitation feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agitation is a kind of psychological state", "pln": ["(: cnet_isa_63ceb6a182 (IsA agitation psychological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agitation is a kind of turbulence", "pln": ["(: cnet_isa_99159b4a9b (IsA agitation turbulence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agitator is a kind of troublemaker", "pln": ["(: cnet_isa_a0a6e5b717 (IsA agitator troublemaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agitprop is a kind of propaganda", "pln": ["(: cnet_isa_5c8a3b3490 (IsA agitprop propaganda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agkistrodon is a kind of reptile genus", "pln": ["(: cnet_isa_367b586dd5 (IsA agkistrodon reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "aglaia is a kind of grace", "pln": ["(: cnet_isa_86c0747c4a (IsA aglaia grace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aglaomorpha is a kind of fern genus", "pln": ["(: cnet_isa_0460484a47 (IsA aglaomorpha fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aglaonema is a kind of monocot genus", "pln": ["(: cnet_isa_2d03f10264 (IsA aglaonema monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aglet is a kind of braid", "pln": ["(: cnet_isa_0246041060 (IsA aglet braid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aglet is a kind of sheath", "pln": ["(: cnet_isa_6e92d5903b (IsA aglet sheath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "agnate is a kind of relative", "pln": ["(: cnet_isa_7048908b73 (IsA agnate relative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agnatha is a kind of class", "pln": ["(: cnet_isa_95cfd93ef7 (IsA agnatha class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agnomen is a kind of name", "pln": ["(: cnet_isa_a725adff8c (IsA agnomen name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agnosia is a kind of brain disorder", "pln": ["(: cnet_isa_a8ab47bc53 (IsA agnosia brain_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agnostic is a kind of person", "pln": ["(: cnet_isa_4dca313fdc (IsA agnostic person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agnostic is a kind of religionist", "pln": ["(: cnet_isa_c608737bef (IsA agnostic religionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "agnosticism is a kind of religious orientation", "pln": ["(: cnet_isa_362d73721f (IsA agnosticism religious_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agnosticism is a kind of unbelief", "pln": ["(: cnet_isa_add981032e (IsA agnosticism unbelief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agnus dei is a kind of emblem", "pln": ["(: cnet_isa_df0535cee2 (IsA agnus_dei emblem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agnus dei is a kind of prayer", "pln": ["(: cnet_isa_e8a855fb6a (IsA agnus_dei prayer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agon is a kind of celebration", "pln": ["(: cnet_isa_55e416ed13 (IsA agon celebration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agonic line is a kind of line", "pln": ["(: cnet_isa_2376cc4a73 (IsA agonic_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agonidae is a kind of fish family", "pln": ["(: cnet_isa_234d149cc5 (IsA agonidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agonist is a kind of drug", "pln": ["(: cnet_isa_28d095d0d8 (IsA agonist drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agonist is a kind of antagonistic muscle", "pln": ["(: cnet_isa_b7c7a7a3b7 (IsA agonist antagonistic_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agonist is a kind of contestant", "pln": ["(: cnet_isa_2734af0bc4 (IsA agonist contestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agonus is a kind of fish genus", "pln": ["(: cnet_isa_e9da0efbea (IsA agonus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "agony is a kind of suffering", "pln": ["(: cnet_isa_86e2642576 (IsA agony suffering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agony is a kind of pain", "pln": ["(: cnet_isa_5f816df5d3 (IsA agony pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agony aunt is a kind of newspaper columnist", "pln": ["(: cnet_isa_8a96f68f35 (IsA agony_aunt newspaper_columnist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agony column is a kind of column", "pln": ["(: cnet_isa_5f18de270d (IsA agony_column column) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agora is a kind of marketplace", "pln": ["(: cnet_isa_988f43508c (IsA agora marketplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "agora is a kind of israeli monetary unit", "pln": ["(: cnet_isa_a251e066d3 (IsA agora israeli_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agoraphobia is a kind of anxiety disorder", "pln": ["(: cnet_isa_6a71e89897 (IsA agoraphobia anxiety_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agoraphobia is a kind of phobia", "pln": ["(: cnet_isa_244c8613fa (IsA agoraphobia phobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "agouti is a kind of rodent", "pln": ["(: cnet_isa_5e9866eb26 (IsA agouti rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agranulocytosis is a kind of blood disease", "pln": ["(: cnet_isa_3c5428e55d (IsA agranulocytosis blood_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agrapha is a kind of saying", "pln": ["(: cnet_isa_f662a1d65c (IsA agrapha saying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agraphia is a kind of brain disorder", "pln": ["(: cnet_isa_cf8a64de40 (IsA agraphia brain_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agreeableness is a kind of disposition", "pln": ["(: cnet_isa_c60077b1f8 (IsA agreeableness disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agreeableness is a kind of pleasantness", "pln": ["(: cnet_isa_2bcfe3a90f (IsA agreeableness pleasantness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "agreement is a kind of compatibility", "pln": ["(: cnet_isa_aaa308a6ab (IsA agreement compatibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agreement is a kind of planning", "pln": ["(: cnet_isa_3d0c0edcb7 (IsA agreement planning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agreement is a kind of speech act", "pln": ["(: cnet_isa_552e805f3c (IsA agreement speech_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agreement is a kind of statement", "pln": ["(: cnet_isa_ddc07ad731 (IsA agreement statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agreement is a kind of grammatical relation", "pln": ["(: cnet_isa_14f5c4a552 (IsA agreement grammatical_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agreement is a kind of harmony", "pln": ["(: cnet_isa_1f2445c0a6 (IsA agreement harmony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agribusiness is a kind of commercial enterprise", "pln": ["(: cnet_isa_c43e7e1bc1 (IsA agribusiness commercial_enterprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agricultural laborer is a kind of laborer", "pln": ["(: cnet_isa_aba756bc13 (IsA agricultural_laborer laborer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agriculture is a kind of class", "pln": ["(: cnet_isa_a4f7a2f6ab (IsA agriculture class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agriculture secretary is a kind of secretary", "pln": ["(: cnet_isa_fa8796a3c4 (IsA agriculture_secretary secretary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "agriculturist is a kind of farmer", "pln": ["(: cnet_isa_fb7dadc64b (IsA agriculturist farmer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agrimonia is a kind of herb", "pln": ["(: cnet_isa_69af9352a6 (IsA agrimonia herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agriocharis is a kind of bird genus", "pln": ["(: cnet_isa_01bf69c646 (IsA agriocharis bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "agrobacterium is a kind of bacteria genus", "pln": ["(: cnet_isa_bc996e7811 (IsA agrobacterium bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "agrobacterium tumefaciens is a kind of bacteria species", "pln": ["(: cnet_isa_5f233c997e (IsA agrobacterium_tumefaciens bacteria_species) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agrobacterium tumefacien is a kind of bacteria specy", "pln": ["(: cnet_isa_fe5874a3ee (IsA agrobacterium_tumefacien bacteria_specy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agrobiology is a kind of science", "pln": ["(: cnet_isa_d2d9a939a4 (IsA agrobiology science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agrology is a kind of science", "pln": ["(: cnet_isa_c0f632ab1e (IsA agrology science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agromania is a kind of mania", "pln": ["(: cnet_isa_9787983c28 (IsA agromania mania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agronomist is a kind of expert", "pln": ["(: cnet_isa_850e76871b (IsA agronomist expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agronomy is a kind of science", "pln": ["(: cnet_isa_732f88e9af (IsA agronomy science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agropyron is a kind of monocot genus", "pln": ["(: cnet_isa_d6edd5078d (IsA agropyron monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agrostemma is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_d0ac8bef1e (IsA agrostemma caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agrostis is a kind of plant genus", "pln": ["(: cnet_isa_e6d2bff9eb (IsA agrostis plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agrypnia is a kind of vigil", "pln": ["(: cnet_isa_731fff7b29 (IsA agrypnia vigil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agua is a kind of true toad", "pln": ["(: cnet_isa_50ef19ff17 (IsA agua true_toad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ague is a kind of illness", "pln": ["(: cnet_isa_7ec5a2cf7c (IsA ague illness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ague is a kind of symptom", "pln": ["(: cnet_isa_3c43cfb4b6 (IsA ague symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ague root is a kind of colicroot", "pln": ["(: cnet_isa_b72be86ce7 (IsA ague_root colicroot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "agueweed is a kind of gentian", "pln": ["(: cnet_isa_7aaf0cf684 (IsA agueweed gentian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ahem is a kind of utterance", "pln": ["(: cnet_isa_04c260bfbc (IsA ahem utterance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ahimsa is a kind of religious doctrine", "pln": ["(: cnet_isa_8059115bcb (IsA ahimsa religious_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ahuehuete is a kind of montezuma cypress", "pln": ["(: cnet_isa_e192b8a908 (IsA ahuehuete montezuma_cypress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ahura is a kind of hindu deity", "pln": ["(: cnet_isa_4f628cc222 (IsA ahura hindu_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ai is a kind of artificial intelligence", "pln": ["(: cnet_isa_13ed690478 (IsA ai artificial_intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aid is a kind of activity", "pln": ["(: cnet_isa_1d33079f5b (IsA aid activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aid is a kind of resource", "pln": ["(: cnet_isa_331c4484a5 (IsA aid resource) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aide is a kind of assistant", "pln": ["(: cnet_isa_0cd2f0a0d9 (IsA aide assistant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aide memoire is a kind of memo", "pln": ["(: cnet_isa_f012b0bfc6 (IsA aide_memoire memo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aid is a kind of disease", "pln": ["(: cnet_isa_4ee3bd09e4 (IsA aid disease) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aid is a kind of virus", "pln": ["(: cnet_isa_67906bedd4 (IsA aid virus) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aid is a kind of immunodeficiency", "pln": ["(: cnet_isa_9419ef39b2 (IsA aid immunodeficiency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aid is a kind of infectious disease", "pln": ["(: cnet_isa_2f37a42fe9 (IsA aid infectious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aigrette is a kind of plume", "pln": ["(: cnet_isa_96850fbb56 (IsA aigrette plume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aikido is a kind of martial art", "pln": ["(: cnet_isa_152fe6a5b5 (IsA aikido martial_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ailanthus is a kind of angiospermous tree", "pln": ["(: cnet_isa_7ab65f867b (IsA ailanthus angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ailanthus silkworm is a kind of silkworm", "pln": ["(: cnet_isa_bc3c62a6bc (IsA ailanthus_silkworm silkworm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aileron is a kind of airfoil", "pln": ["(: cnet_isa_ae769e6d97 (IsA aileron airfoil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ailment is a kind of disorder", "pln": ["(: cnet_isa_7c201527b3 (IsA ailment disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ailurophobia is a kind of zoophobia", "pln": ["(: cnet_isa_3407021db0 (IsA ailurophobia zoophobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ailuropoda is a kind of mammal genus", "pln": ["(: cnet_isa_296684cc03 (IsA ailuropoda mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ailuropodidae is a kind of mammal family", "pln": ["(: cnet_isa_41e3c2de3b (IsA ailuropodidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ailurus is a kind of mammal genus", "pln": ["(: cnet_isa_cb7ce21b20 (IsA ailurus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aim is a kind of steering", "pln": ["(: cnet_isa_64d24708e3 (IsA aim steering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aim is a kind of goal", "pln": ["(: cnet_isa_860c36ca4a (IsA aim goal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aioli is a kind of sauce", "pln": ["(: cnet_isa_50d3cdac4e (IsA aioli sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air is a kind of gas", "pln": ["(: cnet_isa_a391cff04d (IsA air gas) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air is a kind of mixture of gas", "pln": ["(: cnet_isa_7cc6e7f74c (IsA air mixture_of_gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air is a kind of quality", "pln": ["(: cnet_isa_6a76946acf (IsA air quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air is a kind of medium", "pln": ["(: cnet_isa_d56fe48699 (IsA air medium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air is a kind of region", "pln": ["(: cnet_isa_08f3ed4ccf (IsA air region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air is a kind of element", "pln": ["(: cnet_isa_34a9c48623 (IsA air element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air alert is a kind of alarm", "pln": ["(: cnet_isa_1b42cd1266 (IsA air_alert alarm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air alert is a kind of alert", "pln": ["(: cnet_isa_66726019d5 (IsA air_alert alert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air alert is a kind of time period", "pln": ["(: cnet_isa_ad10c2b53a (IsA air_alert time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air attache is a kind of military attache", "pln": ["(: cnet_isa_85229fddf8 (IsA air_attache military_attache) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air bag is a kind of bag", "pln": ["(: cnet_isa_4c4ad5e038 (IsA air_bag bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air bag is a kind of restraint", "pln": ["(: cnet_isa_3db32dc336 (IsA air_bag restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "air base is a kind of base", "pln": ["(: cnet_isa_b60d7da6d3 (IsA air_base base) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air bladder is a kind of sac", "pln": ["(: cnet_isa_92ef739d63 (IsA air_bladder sac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air bubble is a kind of bubble", "pln": ["(: cnet_isa_9aed5409a3 (IsA air_bubble bubble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air combat command is a kind of command", "pln": ["(: cnet_isa_241739a235 (IsA air_combat_command command) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air compressor is a kind of compressor", "pln": ["(: cnet_isa_e3dc5868e9 (IsA air_compressor compressor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air conditioner is a kind of cooling device", "pln": ["(: cnet_isa_d956fa4e8f (IsA air_conditioner cooling_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "air conditioner is a kind of appliance", "pln": ["(: cnet_isa_fd074067e6 (IsA air_conditioner appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air conditioner is a kind of cooling system", "pln": ["(: cnet_isa_49d835bafe (IsA air_conditioner cooling_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air corp is a kind of air force", "pln": ["(: cnet_isa_3042f9d205 (IsA air_corp air_force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "air cover is a kind of protection", "pln": ["(: cnet_isa_ca9068ccab (IsA air_cover protection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air cushion is a kind of cushion", "pln": ["(: cnet_isa_8d68815c3d (IsA air_cushion cushion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air cushion is a kind of shock absorber", "pln": ["(: cnet_isa_1ded7134ef (IsA air_cushion shock_absorber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air cushion is a kind of compressed air", "pln": ["(: cnet_isa_ff62171f25 (IsA air_cushion compressed_air) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air defense is a kind of defense", "pln": ["(: cnet_isa_72f323e500 (IsA air_defense defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air embolism is a kind of embolism", "pln": ["(: cnet_isa_a0fc8c8cef (IsA air_embolism embolism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air filter is a kind of filter", "pln": ["(: cnet_isa_6012d5491b (IsA air_filter filter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air force is a kind of military service", "pln": ["(: cnet_isa_294eba20c4 (IsA air_force military_service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air force academy is a kind of academy", "pln": ["(: cnet_isa_b9689502b3 (IsA air_force_academy academy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air force intelligence surveillance and reconnaissance is a kind of agency", "pln": ["(: cnet_isa_c830bcb704 (IsA air_force_intelligence_surveillance_and_reconnaissance agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air force officer is a kind of serviceman", "pln": ["(: cnet_isa_b0616ae8c5 (IsA air_force_officer serviceman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air force space command is a kind of command", "pln": ["(: cnet_isa_37763760c8 (IsA air_force_space_command command) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air group is a kind of air unit", "pln": ["(: cnet_isa_3d146b1aaf (IsA air_group air_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "air gun is a kind of gun", "pln": ["(: cnet_isa_e136e0aa6b (IsA air_gun gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air hammer is a kind of hammer", "pln": ["(: cnet_isa_7b7a22b6e0 (IsA air_hammer hammer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air hole is a kind of hole", "pln": ["(: cnet_isa_0066f799f3 (IsA air_hole hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "air horn is a kind of horn", "pln": ["(: cnet_isa_e00e3a17dd (IsA air_horn horn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air horn is a kind of intake", "pln": ["(: cnet_isa_e1418c71be (IsA air_horn intake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "air intake is a kind of duct", "pln": ["(: cnet_isa_97d69a6367 (IsA air_intake duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air lane is a kind of path", "pln": ["(: cnet_isa_ed98fb6565 (IsA air_lane path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air mail is a kind of mail", "pln": ["(: cnet_isa_ac81279ab4 (IsA air_mail mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air marshal is a kind of marshal", "pln": ["(: cnet_isa_60dc2d435e (IsA air_marshal marshal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air mass is a kind of atmosphere", "pln": ["(: cnet_isa_94e939b767 (IsA air_mass atmosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air mattress is a kind of mattress", "pln": ["(: cnet_isa_c3acacf7aa (IsA air_mattress mattress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air medal is a kind of decoration", "pln": ["(: cnet_isa_79c647b4a2 (IsA air_medal decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air national guard is a kind of national guard", "pln": ["(: cnet_isa_cfe1818aa2 (IsA air_national_guard national_guard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air observer is a kind of observer", "pln": ["(: cnet_isa_3bfa4ab5b3 (IsA air_observer observer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air passage is a kind of duct", "pln": ["(: cnet_isa_265f42bd81 (IsA air_passage duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air plant is a kind of plant", "pln": ["(: cnet_isa_461451e886 (IsA air_plant plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air pocket is a kind of atmospheric phenomenon", "pln": ["(: cnet_isa_75936ad4d3 (IsA air_pocket atmospheric_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air pollution is a kind of pollution", "pln": ["(: cnet_isa_1620ff9b93 (IsA air_pollution pollution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air potato is a kind of yam", "pln": ["(: cnet_isa_b142c490ac (IsA air_potato yam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air pump is a kind of pump", "pln": ["(: cnet_isa_e0c160bdf2 (IsA air_pump pump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air raid is a kind of foray", "pln": ["(: cnet_isa_a88f313a8e (IsA air_raid foray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air reconnaissance is a kind of reconnaissance", "pln": ["(: cnet_isa_c43425a5fe (IsA air_reconnaissance reconnaissance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air sac is a kind of sac", "pln": ["(: cnet_isa_1b5987df35 (IsA air_sac sac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air search radar is a kind of naval radar", "pln": ["(: cnet_isa_e520596d79 (IsA air_search_radar naval_radar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air shaft is a kind of shaft", "pln": ["(: cnet_isa_651d061ec0 (IsA air_shaft shaft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air terminal is a kind of terminal", "pln": ["(: cnet_isa_aacb5fc8ea (IsA air_terminal terminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air to air missile is a kind of missile", "pln": ["(: cnet_isa_df6354c115 (IsA air_to_air_missile missile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air to ground missile is a kind of missile", "pln": ["(: cnet_isa_e7ece5e4b8 (IsA air_to_ground_missile missile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air traffic is a kind of traffic", "pln": ["(: cnet_isa_42fc58803a (IsA air_traffic traffic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air transportation is a kind of transportation", "pln": ["(: cnet_isa_b2770c6b4a (IsA air_transportation transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air transportation system is a kind of transportation system", "pln": ["(: cnet_isa_8d51173757 (IsA air_transportation_system transportation_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "air travel is a kind of travel", "pln": ["(: cnet_isa_2983d8fe6f (IsA air_travel travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air traveler is a kind of traveler", "pln": ["(: cnet_isa_c0763ff1de (IsA air_traveler traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air unit is a kind of military unit", "pln": ["(: cnet_isa_a5af675274 (IsA air_unit military_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air wave is a kind of sound wave", "pln": ["(: cnet_isa_475f82dea7 (IsA air_wave sound_wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airborne patrol is a kind of patrol", "pln": ["(: cnet_isa_3df00b40c0 (IsA airborne_patrol patrol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airborne transmission is a kind of transmission mechanism", "pln": ["(: cnet_isa_df525353ff (IsA airborne_transmission transmission_mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "airbrake is a kind of power brake", "pln": ["(: cnet_isa_dcf692adb2 (IsA airbrake power_brake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "airbrake is a kind of restraint", "pln": ["(: cnet_isa_b4bf55fa7c (IsA airbrake restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airbrush is a kind of atomizer", "pln": ["(: cnet_isa_733bf5a724 (IsA airbrush atomizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airburst is a kind of explosion", "pln": ["(: cnet_isa_2fd2eed6f9 (IsA airburst explosion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airbus is a kind of airliner", "pln": ["(: cnet_isa_32cfedf47b (IsA airbus airliner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aircraft is a kind of craft", "pln": ["(: cnet_isa_93836d1c42 (IsA aircraft craft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aircraft carrier is a kind of warship", "pln": ["(: cnet_isa_6fe9e56839 (IsA aircraft_carrier warship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aircraft engine is a kind of engine", "pln": ["(: cnet_isa_6592f3086a (IsA aircraft_engine engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aircraft landing is a kind of landing", "pln": ["(: cnet_isa_2117c4f18c (IsA aircraft_landing landing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "aircraftsman is a kind of noncommissioned officer", "pln": ["(: cnet_isa_4cb0452d0d (IsA aircraftsman noncommissioned_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aircrew is a kind of crew", "pln": ["(: cnet_isa_0456928db7 (IsA aircrew crew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aircrewman is a kind of crewman", "pln": ["(: cnet_isa_fe09f14e65 (IsA aircrewman crewman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airdock is a kind of structure", "pln": ["(: cnet_isa_0fbbca5875 (IsA airdock structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airdrop is a kind of delivery", "pln": ["(: cnet_isa_3de5b1009d (IsA airdrop delivery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airedale is a kind of terrier", "pln": ["(: cnet_isa_abaca563ed (IsA airedale terrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airfare is a kind of fare", "pln": ["(: cnet_isa_ab93b0505b (IsA airfare fare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airfield is a kind of facility", "pln": ["(: cnet_isa_186b3b17c6 (IsA airfield facility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airflow is a kind of flow", "pln": ["(: cnet_isa_2e0c3ea536 (IsA airflow flow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airfoil is a kind of device", "pln": ["(: cnet_isa_735852c186 (IsA airfoil device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airframe is a kind of framework", "pln": ["(: cnet_isa_1beb02cae3 (IsA airframe framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airhead is a kind of bridgehead", "pln": ["(: cnet_isa_1c8e8d88ae (IsA airhead bridgehead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "airhead is a kind of simpleton", "pln": ["(: cnet_isa_5ee1eb2440 (IsA airhead simpleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airiness is a kind of capaciousness", "pln": ["(: cnet_isa_2d73b86eaf (IsA airiness capaciousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airiness is a kind of lightness", "pln": ["(: cnet_isa_9065e31630 (IsA airiness lightness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airiness is a kind of liveliness", "pln": ["(: cnet_isa_eb642410dc (IsA airiness liveliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "airing is a kind of excursion", "pln": ["(: cnet_isa_baca1bad2f (IsA airing excursion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airing cupboard is a kind of cupboard", "pln": ["(: cnet_isa_a389e0f87b (IsA airing_cupboard cupboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airlift is a kind of transportation", "pln": ["(: cnet_isa_55182f91c7 (IsA airlift transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airline is a kind of hose", "pln": ["(: cnet_isa_83fbe81ccb (IsA airline hose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airline is a kind of line", "pln": ["(: cnet_isa_f836dfb6fd (IsA airline line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airliner is a kind of airplane", "pln": ["(: cnet_isa_6d9ec901ad (IsA airliner airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airlock is a kind of chamber", "pln": ["(: cnet_isa_95477341a5 (IsA airlock chamber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airmail is a kind of mail", "pln": ["(: cnet_isa_b6143307ec (IsA airmail mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airmail letter is a kind of letter", "pln": ["(: cnet_isa_7bc9e0febf (IsA airmail_letter letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airmailer is a kind of mailer", "pln": ["(: cnet_isa_54ec45c330 (IsA airmailer mailer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airplane is a kind of form of transportation", "pln": ["(: cnet_isa_cf4b3c86ed (IsA airplane form_of_transportation) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airplane is a kind of heavier than air", "pln": ["(: cnet_isa_e81880c899 (IsA airplane heavier_than_air) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airplane is a kind of large machine with wing", "pln": ["(: cnet_isa_5aad55c76d (IsA airplane large_machine_with_wing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airplane is a kind of heavier than air craft", "pln": ["(: cnet_isa_69a82140be (IsA airplane heavier_than_air_craft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airplane mechanic is a kind of trade", "pln": ["(: cnet_isa_56e0fbf258 (IsA airplane_mechanic trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airplane propeller is a kind of propeller", "pln": ["(: cnet_isa_52257d62b9 (IsA airplane_propeller propeller) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airport is a kind of airfield", "pln": ["(: cnet_isa_6e92c40795 (IsA airport airfield) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "air is a kind of affectedness", "pln": ["(: cnet_isa_f8d7be6780 (IsA air affectedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airship is a kind of lighter than air craft", "pln": ["(: cnet_isa_fda4091117 (IsA airship lighter_than_air_craft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airsickness is a kind of motion sickness", "pln": ["(: cnet_isa_44d373bda6 (IsA airsickness motion_sickness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "airspace is a kind of atmosphere", "pln": ["(: cnet_isa_e971207ea9 (IsA airspace atmosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airspace is a kind of space", "pln": ["(: cnet_isa_9887deed8e (IsA airspace space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airspeed is a kind of speed", "pln": ["(: cnet_isa_ffe1d71f1a (IsA airspeed speed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airstream is a kind of wind", "pln": ["(: cnet_isa_3cf0832441 (IsA airstream wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airstrip is a kind of airfield", "pln": ["(: cnet_isa_870262e69a (IsA airstrip airfield) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "airworthiness is a kind of soundness", "pln": ["(: cnet_isa_783088fe89 (IsA airworthiness soundness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "aisle is a kind of area", "pln": ["(: cnet_isa_2fc86fc815 (IsA aisle area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aisle is a kind of passage", "pln": ["(: cnet_isa_fd679ddf65 (IsA aisle passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aisle is a kind of passageway", "pln": ["(: cnet_isa_638d8815c5 (IsA aisle passageway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aitchbone is a kind of cut of beef", "pln": ["(: cnet_isa_4683248d34 (IsA aitchbone cut_of_beef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aix is a kind of bird genus", "pln": ["(: cnet_isa_6a5a2918d2 (IsA aix bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aizoaceae is a kind of caryophylloid dicot family", "pln": ["(: cnet_isa_3de82a6856 (IsA aizoaceae caryophylloid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ajaia is a kind of bird genus", "pln": ["(: cnet_isa_61a426cb1b (IsA ajaia bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ajuga is a kind of asterid dicot genus", "pln": ["(: cnet_isa_eddbd9e6a1 (IsA ajuga asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "akan is a kind of kwa", "pln": ["(: cnet_isa_16d920afb2 (IsA akan kwa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "akaryocyte is a kind of cell", "pln": ["(: cnet_isa_38dc768f81 (IsA akaryocyte cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "akee is a kind of fruit tree", "pln": ["(: cnet_isa_696f65075c (IsA akee fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "akeridae is a kind of mollusk family", "pln": ["(: cnet_isa_2e4d2c7a76 (IsA akeridae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "akhbari is a kind of religious movement", "pln": ["(: cnet_isa_b6624b247c (IsA akhbari religious_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "akinesis is a kind of paralysis", "pln": ["(: cnet_isa_96daa8f17c (IsA akinesis paralysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "akinetic epilepsy is a kind of epilepsy", "pln": ["(: cnet_isa_de340474fd (IsA akinetic_epilepsy epilepsy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "akkadian is a kind of semitic", "pln": ["(: cnet_isa_059e269660 (IsA akkadian semitic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "akwa ala is a kind of yuman", "pln": ["(: cnet_isa_04d07bc064 (IsA akwa_ala yuman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "akwa ala is a kind of hoka", "pln": ["(: cnet_isa_a6f7b1c404 (IsA akwa_ala hoka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ala is a kind of wing", "pln": ["(: cnet_isa_ecb0323ed1 (IsA ala wing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ala is a kind of process", "pln": ["(: cnet_isa_0bd83a933a (IsA ala process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alabama is a kind of state", "pln": ["(: cnet_isa_738a87096b (IsA alabama state) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alabama is a kind of muskhogean", "pln": ["(: cnet_isa_0e14552486 (IsA alabama muskhogean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alabama is a kind of south", "pln": ["(: cnet_isa_4980aab387 (IsA alabama south) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alabama is a kind of muskogean", "pln": ["(: cnet_isa_39abd3264a (IsA alabama muskogean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alabama state song is a kind of alabama", "pln": ["(: cnet_isa_9215574a0f (IsA alabama_state_song alabama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alabamian is a kind of american", "pln": ["(: cnet_isa_a8c326105a (IsA alabamian american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alabaster is a kind of white", "pln": ["(: cnet_isa_f4a0fe7f4d (IsA alabaster white) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alabaster is a kind of calcite", "pln": ["(: cnet_isa_a6987d3b18 (IsA alabaster calcite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alabaster is a kind of gypsum", "pln": ["(: cnet_isa_138f008117 (IsA alabaster gypsum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alacrity is a kind of liveliness", "pln": ["(: cnet_isa_598d10592a (IsA alacrity liveliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aladdin s lamp is a kind of lamp", "pln": ["(: cnet_isa_116d267f1d (IsA aladdin_s_lamp lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alalia is a kind of paralysis", "pln": ["(: cnet_isa_5b51486c8a (IsA alalia paralysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alanine is a kind of amino acid", "pln": ["(: cnet_isa_27de7d2fc0 (IsA alanine amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alarm is a kind of device", "pln": ["(: cnet_isa_b352758606 (IsA alarm device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alarm is a kind of signal", "pln": ["(: cnet_isa_b516525dc2 (IsA alarm signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alarm is a kind of fear", "pln": ["(: cnet_isa_73994e1666 (IsA alarm fear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alarm clock is a kind of clock", "pln": ["(: cnet_isa_2bb37ef5a4 (IsA alarm_clock clock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alarmism is a kind of warning", "pln": ["(: cnet_isa_b593a8353c (IsA alarmism warning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alarmist is a kind of communicator", "pln": ["(: cnet_isa_98a0d2fece (IsA alarmist communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alaska is a kind of state", "pln": ["(: cnet_isa_684627e0a9 (IsA alaska state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alaska fur seal is a kind of fur seal", "pln": ["(: cnet_isa_c9d362e2ec (IsA alaska_fur_seal fur_seal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alaska king crab is a kind of crab", "pln": ["(: cnet_isa_7c42126063 (IsA alaska_king_crab crab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alaska rein orchid is a kind of rein orchid", "pln": ["(: cnet_isa_b88c4c751a (IsA alaska_rein_orchid rein_orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alaska standard time is a kind of civil time", "pln": ["(: cnet_isa_307261ff4d (IsA alaska_standard_time civil_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alaska state song is a kind of alaska s flag", "pln": ["(: cnet_isa_e1cd91b087 (IsA alaska_state_song alaska_s_flag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "alaskan is a kind of american", "pln": ["(: cnet_isa_3cb390c275 (IsA alaskan american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alaskan brown bear is a kind of brown bear", "pln": ["(: cnet_isa_2eb1d601d6 (IsA alaskan_brown_bear brown_bear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "alaskan native is a kind of alaskan", "pln": ["(: cnet_isa_492aef80d6 (IsA alaskan_native alaskan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alastrim is a kind of smallpox", "pln": ["(: cnet_isa_4a48cd7828 (IsA alastrim smallpox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alauda is a kind of bird genus", "pln": ["(: cnet_isa_3937885607 (IsA alauda bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "alaudidae is a kind of bird family", "pln": ["(: cnet_isa_414cd90a29 (IsA alaudidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alb is a kind of vestment", "pln": ["(: cnet_isa_cff79862cb (IsA alb vestment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "albacore is a kind of tuna", "pln": ["(: cnet_isa_5e7198f721 (IsA albacore tuna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "albanian is a kind of indo european", "pln": ["(: cnet_isa_59c8cd2818 (IsA albanian indo_european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "albanian is a kind of european", "pln": ["(: cnet_isa_3d47fa2d91 (IsA albanian european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "albanian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_6486ad053c (IsA albanian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "albatrellus is a kind of fungus genus", "pln": ["(: cnet_isa_cc02f1d9a1 (IsA albatrellus fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "albatrellus dispansus is a kind of polypore", "pln": ["(: cnet_isa_66aba14c1d (IsA albatrellus_dispansus polypore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "albatrellus ovinus is a kind of polypore", "pln": ["(: cnet_isa_ed0576c201 (IsA albatrellus_ovinus polypore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "albatross is a kind of bird", "pln": ["(: cnet_isa_00b228f5a0 (IsA albatross bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "albatross is a kind of pelagic bird", "pln": ["(: cnet_isa_d3816f1b45 (IsA albatross pelagic_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "albatross is a kind of hindrance", "pln": ["(: cnet_isa_0ff76656b9 (IsA albatross hindrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "albedo is a kind of ratio", "pln": ["(: cnet_isa_13cc9843ec (IsA albedo ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "albigens is a kind of sect", "pln": ["(: cnet_isa_db3d3aee3f (IsA albigens sect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "albigensianism is a kind of christianity", "pln": ["(: cnet_isa_f5b8735b8b (IsA albigensianism christianity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "albigensianism is a kind of heresy", "pln": ["(: cnet_isa_8975b0359d (IsA albigensianism heresy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "albinism is a kind of birth defect", "pln": ["(: cnet_isa_6f20377dfb (IsA albinism birth_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "albinism is a kind of hypopigmentation", "pln": ["(: cnet_isa_20899e09d3 (IsA albinism hypopigmentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "albino is a kind of person", "pln": ["(: cnet_isa_3a56321058 (IsA albino person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "albite is a kind of plagioclase", "pln": ["(: cnet_isa_00f00d61ec (IsA albite plagioclase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "albizzia is a kind of tree", "pln": ["(: cnet_isa_679468479d (IsA albizzia tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "albright s disease is a kind of fibrous dysplasia of bone", "pln": ["(: cnet_isa_8a31836c0f (IsA albright_s_disease fibrous_dysplasia_of_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "albuca is a kind of liliaceous plant", "pln": ["(: cnet_isa_c58d14eaad (IsA albuca liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "albuginaceae is a kind of fungus family", "pln": ["(: cnet_isa_322720772f (IsA albuginaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "albuginea is a kind of tunic", "pln": ["(: cnet_isa_c107be15ff (IsA albuginea tunic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "albugo is a kind of fungus genus", "pln": ["(: cnet_isa_481362e8ea (IsA albugo fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "albula is a kind of fish genus", "pln": ["(: cnet_isa_39aa9cd5f3 (IsA albula fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "alces is a kind of mammal genus", "pln": ["(: cnet_isa_a3543a24b4 (IsA alces mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "albulidae is a kind of fish family", "pln": ["(: cnet_isa_ca5182af6e (IsA albulidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "album is a kind of book", "pln": ["(: cnet_isa_0a77c50dba (IsA album book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "album is a kind of medium", "pln": ["(: cnet_isa_167209797c (IsA album medium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "albumin is a kind of simple protein", "pln": ["(: cnet_isa_b83a478a1d (IsA albumin simple_protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "albuminuria is a kind of symptom", "pln": ["(: cnet_isa_0b288c1649 (IsA albuminuria symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alca is a kind of bird genus", "pln": ["(: cnet_isa_ed3be820b2 (IsA alca bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcaic is a kind of poem", "pln": ["(: cnet_isa_918b68f6b7 (IsA alcaic poem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcalde is a kind of judge", "pln": ["(: cnet_isa_300648b7b6 (IsA alcalde judge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcalde is a kind of mayor", "pln": ["(: cnet_isa_b6f45a8e4b (IsA alcalde mayor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcazar is a kind of fortress", "pln": ["(: cnet_isa_73be23dfda (IsA alcazar fortress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcazar is a kind of palace", "pln": ["(: cnet_isa_41c67466a7 (IsA alcazar palace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcea is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_72d648334f (IsA alcea dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcedinidae is a kind of bird family", "pln": ["(: cnet_isa_8efa8a98eb (IsA alcedinidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcedo is a kind of bird genus", "pln": ["(: cnet_isa_9815d1584c (IsA alcedo bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcelaphus is a kind of mammal genus", "pln": ["(: cnet_isa_00ac56d570 (IsA alcelaphus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alce is a kind of mammal genus", "pln": ["(: cnet_isa_7c73d41b81 (IsA alce mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "alchemist is a kind of intellectual", "pln": ["(: cnet_isa_54496615b3 (IsA alchemist intellectual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alchemy is a kind of pseudoscience", "pln": ["(: cnet_isa_9472ebe4b8 (IsA alchemy pseudoscience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcidae is a kind of bird family", "pln": ["(: cnet_isa_928b088064 (IsA alcidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcohol is a kind of depressant", "pln": ["(: cnet_isa_6f370baba0 (IsA alcohol depressant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcohol is a kind of fermented beverage", "pln": ["(: cnet_isa_eff9b1af85 (IsA alcohol fermented_beverage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcohol is a kind of instance of drug", "pln": ["(: cnet_isa_6da0083707 (IsA alcohol instance_of_drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "alcohol is a kind of intoxicating beverage", "pln": ["(: cnet_isa_38854f2b72 (IsA alcohol intoxicating_beverage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "alecto is a kind of eumenides", "pln": ["(: cnet_isa_f98172ac32 (IsA alecto eumenides) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcohol is a kind of numbing agent", "pln": ["(: cnet_isa_a41134c9e2 (IsA alcohol numbing_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcohol is a kind of sedative and pain killer", "pln": ["(: cnet_isa_6f2504c8bf (IsA alcohol sedative_and_pain_killer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcohol is a kind of beverage", "pln": ["(: cnet_isa_1352e2605f (IsA alcohol beverage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcohol is a kind of drug of abuse", "pln": ["(: cnet_isa_f7ebff06cb (IsA alcohol drug_of_abuse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcohol is a kind of liquid", "pln": ["(: cnet_isa_f1644a950e (IsA alcohol liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcohol abuse is a kind of substance abuse", "pln": ["(: cnet_isa_c704c1ae71 (IsA alcohol_abuse substance_abuse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcohol group is a kind of group", "pln": ["(: cnet_isa_1c4c9efdf9 (IsA alcohol_group group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcohol thermometer is a kind of thermometer", "pln": ["(: cnet_isa_50ff0442a0 (IsA alcohol_thermometer thermometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcoholic is a kind of person", "pln": ["(: cnet_isa_df02b1fd0d (IsA alcoholic person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcoholic is a kind of drunkard", "pln": ["(: cnet_isa_bb80fe5959 (IsA alcoholic drunkard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcoholic dementia is a kind of dementia", "pln": ["(: cnet_isa_5620838f7f (IsA alcoholic_dementia dementia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcoholic anonymous is a kind of nongovernmental organization", "pln": ["(: cnet_isa_acd77f7e1e (IsA alcoholic_anonymous nongovernmental_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcoholism is a kind of drug addiction", "pln": ["(: cnet_isa_ce22bb005e (IsA alcoholism drug_addiction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcove is a kind of recess", "pln": ["(: cnet_isa_f15d24a4c3 (IsA alcove recess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcyonacea is a kind of animal order", "pln": ["(: cnet_isa_f62e7719b7 (IsA alcyonacea animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcyonaria is a kind of animal order", "pln": ["(: cnet_isa_741352e6a3 (IsA alcyonaria animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alcyone is a kind of mythical being", "pln": ["(: cnet_isa_5c58370b19 (IsA alcyone mythical_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aldehyde is a kind of organic compound", "pln": ["(: cnet_isa_23c6a8c2ef (IsA aldehyde organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aldehyde group is a kind of group", "pln": ["(: cnet_isa_6b5eaad3dc (IsA aldehyde_group group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alder is a kind of tree", "pln": ["(: cnet_isa_7831ec72f8 (IsA alder tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alder is a kind of wood", "pln": ["(: cnet_isa_9b6b62adf2 (IsA alder wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alder blight is a kind of blight", "pln": ["(: cnet_isa_485e74d6d7 (IsA alder_blight blight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alder buckthorn is a kind of buckthorn", "pln": ["(: cnet_isa_231b0746dc (IsA alder_buckthorn buckthorn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alderfly is a kind of neuropteron", "pln": ["(: cnet_isa_9d96e194b5 (IsA alderfly neuropteron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alderleaf juneberry is a kind of juneberry", "pln": ["(: cnet_isa_16a01c9c5a (IsA alderleaf_juneberry juneberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alderman is a kind of representative", "pln": ["(: cnet_isa_34790aef30 (IsA alderman representative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aldohexose is a kind of aldose", "pln": ["(: cnet_isa_4386d74329 (IsA aldohexose aldose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aldohexose is a kind of hexose", "pln": ["(: cnet_isa_a0af72cd95 (IsA aldohexose hexose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aldol is a kind of organic compound", "pln": ["(: cnet_isa_f31b37f8fa (IsA aldol organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aldol reaction is a kind of chemical reaction", "pln": ["(: cnet_isa_4ed8dd8c8c (IsA aldol_reaction chemical_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aldose is a kind of monosaccharide", "pln": ["(: cnet_isa_81aad5409b (IsA aldose monosaccharide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aldosterone is a kind of mineralocorticoid", "pln": ["(: cnet_isa_f54f2d0d95 (IsA aldosterone mineralocorticoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aldosteronism is a kind of glandular disease", "pln": ["(: cnet_isa_f914b8894e (IsA aldosteronism glandular_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aldrovanda is a kind of dicot genus", "pln": ["(: cnet_isa_666e32b1e9 (IsA aldrovanda dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ale is a kind of beer", "pln": ["(: cnet_isa_a0675332d5 (IsA ale beer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aleatory contract is a kind of contract", "pln": ["(: cnet_isa_b3f946c542 (IsA aleatory_contract contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alectis is a kind of fish genus", "pln": ["(: cnet_isa_8dd743de94 (IsA alectis fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alecto is a kind of eumenide", "pln": ["(: cnet_isa_476ae94c61 (IsA alecto eumenide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alectoria is a kind of fungus genus", "pln": ["(: cnet_isa_af747bb948 (IsA alectoria fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "alectoris is a kind of bird genus", "pln": ["(: cnet_isa_c64257dfb3 (IsA alectoris bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alectura is a kind of bird genus", "pln": ["(: cnet_isa_e2d15b56b9 (IsA alectura bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alehouse is a kind of public house", "pln": ["(: cnet_isa_4e588b187f (IsA alehouse public_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alembic is a kind of retort", "pln": ["(: cnet_isa_3e119aa56a (IsA alembic retort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aleph is a kind of letter", "pln": ["(: cnet_isa_0538426cbc (IsA aleph letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aleph null is a kind of large integer", "pln": ["(: cnet_isa_8afddb9d8f (IsA aleph_null large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alepisaurus is a kind of fish genus", "pln": ["(: cnet_isa_bb3d4cae64 (IsA alepisaurus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alert is a kind of warning", "pln": ["(: cnet_isa_dfd320ac83 (IsA alert warning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alert is a kind of readiness", "pln": ["(: cnet_isa_47c6553593 (IsA alert readiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alertness is a kind of attentiveness", "pln": ["(: cnet_isa_3a49568975 (IsA alertness attentiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alertness is a kind of arousal", "pln": ["(: cnet_isa_4557dcbb1a (IsA alertness arousal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alethic logic is a kind of modal logic", "pln": ["(: cnet_isa_345271efa9 (IsA alethic_logic modal_logic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "aletris is a kind of liliid monocot genus", "pln": ["(: cnet_isa_cebbe14227 (IsA aletris liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aleuria aurantia is a kind of discomycete", "pln": ["(: cnet_isa_93eeb30e17 (IsA aleuria_aurantia discomycete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aleurite is a kind of rosid dicot genus", "pln": ["(: cnet_isa_7e9663b204 (IsA aleurite rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aleurone is a kind of protein", "pln": ["(: cnet_isa_0e96ba590e (IsA aleurone protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aleut is a kind of eskimo aleut", "pln": ["(: cnet_isa_2fbce12da8 (IsA aleut eskimo_aleut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aleut is a kind of community", "pln": ["(: cnet_isa_65e61dfb81 (IsA aleut community) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aleutian is a kind of native american", "pln": ["(: cnet_isa_f1a6022d79 (IsA aleutian native_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "alewife is a kind of clupeid fish", "pln": ["(: cnet_isa_585f63ea30 (IsA alewife clupeid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alewife is a kind of fish", "pln": ["(: cnet_isa_7b73f7b244 (IsA alewife fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alexander is a kind of herb", "pln": ["(: cnet_isa_5ecf3581f6 (IsA alexander herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alexandria senna is a kind of senna", "pln": ["(: cnet_isa_947a1f1c07 (IsA alexandria_senna senna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alexandrian is a kind of resident", "pln": ["(: cnet_isa_dbdbb96994 (IsA alexandrian resident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alexandrian laurel is a kind of poon", "pln": ["(: cnet_isa_c9e322caaa (IsA alexandrian_laurel poon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "alexandrine is a kind of line of poetry", "pln": ["(: cnet_isa_d769076213 (IsA alexandrine line_of_poetry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "aleyrodes is a kind of arthropod genus", "pln": ["(: cnet_isa_dd1da34a76 (IsA aleyrodes arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alexandrite is a kind of chrysoberyl", "pln": ["(: cnet_isa_41d493a4c9 (IsA alexandrite chrysoberyl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alexic is a kind of patient", "pln": ["(: cnet_isa_cf28997244 (IsA alexic patient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aleyrode is a kind of arthropod genus", "pln": ["(: cnet_isa_a4fed5092a (IsA aleyrode arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aleyrodidae is a kind of arthropod family", "pln": ["(: cnet_isa_7564b3966c (IsA aleyrodidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alfalfa is a kind of fodder", "pln": ["(: cnet_isa_ee6fbaff96 (IsA alfalfa fodder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alfalfa is a kind of medic", "pln": ["(: cnet_isa_341ac314ac (IsA alfalfa medic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alfalfa sprout is a kind of sprout", "pln": ["(: cnet_isa_461eeb49fc (IsA alfalfa_sprout sprout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alga is a kind of protoctist", "pln": ["(: cnet_isa_8c19a17668 (IsA alga protoctist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "algarroba is a kind of bean", "pln": ["(: cnet_isa_041f5a0099 (IsA algarroba bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "algarroba is a kind of mesquite", "pln": ["(: cnet_isa_be13dd571c (IsA algarroba mesquite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "algebra is a kind of pure mathematic", "pln": ["(: cnet_isa_5e91b34eab (IsA algebra pure_mathematic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "algebraic language is a kind of algorithmic language", "pln": ["(: cnet_isa_e0d679641e (IsA algebraic_language algorithmic_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "algebraic number is a kind of irrational number", "pln": ["(: cnet_isa_63e1f64abd (IsA algebraic_number irrational_number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "algebraist is a kind of mathematician", "pln": ["(: cnet_isa_9797a62cc3 (IsA algebraist mathematician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "algerian is a kind of african", "pln": ["(: cnet_isa_7e86de40c3 (IsA algerian african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "algerian centime is a kind of centime", "pln": ["(: cnet_isa_73e2ac5abe (IsA algerian_centime centime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "algerian dinar is a kind of algerian monetary unit", "pln": ["(: cnet_isa_3648e003a8 (IsA algerian_dinar algerian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "algerian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_ad3e2a57e9 (IsA algerian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "algeripithecus is a kind of mammal genus", "pln": ["(: cnet_isa_213fee3cab (IsA algeripithecus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "algeripithecus minutus is a kind of hominoid", "pln": ["(: cnet_isa_2ec524a7bc (IsA algeripithecus_minutus hominoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "algidity is a kind of collapse", "pln": ["(: cnet_isa_3bfa136216 (IsA algidity collapse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "algin is a kind of gum", "pln": ["(: cnet_isa_5bff0e1c38 (IsA algin gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "algol is a kind of algebraic language", "pln": ["(: cnet_isa_eb5439c38c (IsA algol algebraic_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "algolagnia is a kind of sexual pleasure", "pln": ["(: cnet_isa_b4d881fb6f (IsA algolagnia sexual_pleasure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "algometer is a kind of measuring instrument", "pln": ["(: cnet_isa_65f0a8f70c (IsA algometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "algometry is a kind of measurement", "pln": ["(: cnet_isa_220626731f (IsA algometry measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "algonkian is a kind of algonquian", "pln": ["(: cnet_isa_28710785a0 (IsA algonkian algonquian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "algonkin is a kind of algonquin", "pln": ["(: cnet_isa_ca090a5d2c (IsA algonkin algonquin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "algonquian is a kind of amerind", "pln": ["(: cnet_isa_38826933b1 (IsA algonquian amerind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "algonquin is a kind of native american", "pln": ["(: cnet_isa_5a3a0bc61f (IsA algonquin native_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "algophobia is a kind of simple phobia", "pln": ["(: cnet_isa_18612a8f13 (IsA algophobia simple_phobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "algorism is a kind of arithmetic", "pln": ["(: cnet_isa_5a7e1e3a8c (IsA algorism arithmetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "algorism is a kind of decimal numeration system", "pln": ["(: cnet_isa_879c2daffd (IsA algorism decimal_numeration_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "algorithm is a kind of rule", "pln": ["(: cnet_isa_ff6c881a06 (IsA algorithm rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "algorithm error is a kind of error", "pln": ["(: cnet_isa_1ca9c2c39a (IsA algorithm_error error) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "algorithmic language is a kind of programming language", "pln": ["(: cnet_isa_13bbec7f59 (IsA algorithmic_language programming_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alia is a kind of name", "pln": ["(: cnet_isa_a375d68dd8 (IsA alia name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alibi is a kind of defense", "pln": ["(: cnet_isa_22ec4c8acd (IsA alibi defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alicyclic compound is a kind of aliphatic compound", "pln": ["(: cnet_isa_a3d1b42e5d (IsA alicyclic_compound aliphatic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alidade is a kind of surveying instrument", "pln": ["(: cnet_isa_4aea724487 (IsA alidade surveying_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "alien is a kind of person", "pln": ["(: cnet_isa_111927f211 (IsA alien person) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "alien absconder is a kind of absconder", "pln": ["(: cnet_isa_c9674ea3a1 (IsA alien_absconder absconder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alienage is a kind of foreignness", "pln": ["(: cnet_isa_43e7a60f58 (IsA alienage foreignness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alienation is a kind of action", "pln": ["(: cnet_isa_bf02dd91ce (IsA alienation action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alienation is a kind of dislike", "pln": ["(: cnet_isa_9649f1b8b4 (IsA alienation dislike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alienation is a kind of transfer", "pln": ["(: cnet_isa_39e6ebfce8 (IsA alienation transfer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alienation is a kind of isolation", "pln": ["(: cnet_isa_f639941bca (IsA alienation isolation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alienation of affection is a kind of tort", "pln": ["(: cnet_isa_273abf2226 (IsA alienation_of_affection tort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alienator is a kind of unpleasant person", "pln": ["(: cnet_isa_e4ca9b6377 (IsA alienator unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alienee is a kind of recipient", "pln": ["(: cnet_isa_a1fd2fa6b6 (IsA alienee recipient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "alienism is a kind of psychiatry", "pln": ["(: cnet_isa_e8df49e443 (IsA alienism psychiatry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alienist is a kind of psychiatrist", "pln": ["(: cnet_isa_87fd1db3b2 (IsA alienist psychiatrist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alienor is a kind of grantor", "pln": ["(: cnet_isa_6c9eaa1fdf (IsA alienor grantor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alien is a kind of all around us", "pln": ["(: cnet_isa_7a6aa3a7f3 (IsA alien all_around_us) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alignment is a kind of adjustment", "pln": ["(: cnet_isa_d3acb9089d (IsA alignment adjustment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alignment is a kind of placement", "pln": ["(: cnet_isa_a719293846 (IsA alignment placement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alimentary canal is a kind of duct", "pln": ["(: cnet_isa_725e7866d3 (IsA alimentary_canal duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alimentary tract smear is a kind of smear", "pln": ["(: cnet_isa_302b5bfb0b (IsA alimentary_tract_smear smear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alimony is a kind of support payment", "pln": ["(: cnet_isa_6851c4d38c (IsA alimony support_payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aliphatic compound is a kind of organic compound", "pln": ["(: cnet_isa_1aaa1244a6 (IsA aliphatic_compound organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aliquant is a kind of divisor", "pln": ["(: cnet_isa_8ff6082e47 (IsA aliquant divisor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aliquot is a kind of divisor", "pln": ["(: cnet_isa_2c26f2e96c (IsA aliquot divisor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alisma is a kind of monocot genus", "pln": ["(: cnet_isa_aa40794745 (IsA alisma monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alismataceae is a kind of monocot family", "pln": ["(: cnet_isa_9e537d38bd (IsA alismataceae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alismatidae is a kind of class", "pln": ["(: cnet_isa_ff1d8aeb7d (IsA alismatidae class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aliterate is a kind of ignoramus", "pln": ["(: cnet_isa_d438b95078 (IsA aliterate ignoramus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aliyah is a kind of award", "pln": ["(: cnet_isa_58ed3f851b (IsA aliyah award) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aliyah is a kind of immigration", "pln": ["(: cnet_isa_4bd1e449c4 (IsA aliyah immigration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alizarin is a kind of pigment", "pln": ["(: cnet_isa_2f16614d74 (IsA alizarin pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alizarin carmine is a kind of alizarin", "pln": ["(: cnet_isa_4b17a6a1c9 (IsA alizarin_carmine alizarin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alizarin yellow is a kind of dye", "pln": ["(: cnet_isa_cb94fb3244 (IsA alizarin_yellow dye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alkahest is a kind of solvent", "pln": ["(: cnet_isa_02888e5926 (IsA alkahest solvent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alkalemia is a kind of blood disease", "pln": ["(: cnet_isa_c258fe2c0f (IsA alkalemia blood_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alkali is a kind of salt", "pln": ["(: cnet_isa_820832b4d0 (IsA alkali salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alkali grass is a kind of death cama", "pln": ["(: cnet_isa_7158a13239 (IsA alkali_grass death_cama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alkali metal is a kind of metallic element", "pln": ["(: cnet_isa_5eb6f36dad (IsA alkali_metal metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alkali poisoning is a kind of poisoning", "pln": ["(: cnet_isa_bb2550d7e3 (IsA alkali_poisoning poisoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alkalimetry is a kind of volumetric analysis", "pln": ["(: cnet_isa_6ffc46d186 (IsA alkalimetry volumetric_analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alkaline earth is a kind of metallic element", "pln": ["(: cnet_isa_624133326e (IsA alkaline_earth metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alkalinity is a kind of ph", "pln": ["(: cnet_isa_4946cc15ce (IsA alkalinity ph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "alkalinuria is a kind of symptom", "pln": ["(: cnet_isa_20b2245e6c (IsA alkalinuria symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "alkaloid is a kind of organic compound", "pln": ["(: cnet_isa_0648d29200 (IsA alkaloid organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alkalosis is a kind of pathology", "pln": ["(: cnet_isa_1a3ee2deb5 (IsA alkalosis pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alkane is a kind of hydrocarbon", "pln": ["(: cnet_isa_d066360b70 (IsA alkane hydrocarbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alkapton is a kind of acid", "pln": ["(: cnet_isa_d9fcece777 (IsA alkapton acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alkaptonuria is a kind of metabolic disorder", "pln": ["(: cnet_isa_f45181bcf3 (IsA alkaptonuria metabolic_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alkene is a kind of aliphatic compound", "pln": ["(: cnet_isa_16d33bec75 (IsA alkene aliphatic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alkyd is a kind of synthetic resin", "pln": ["(: cnet_isa_aab11863b9 (IsA alkyd synthetic_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alkyl is a kind of group", "pln": ["(: cnet_isa_016413dcb9 (IsA alkyl group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alkyl halide is a kind of organic compound", "pln": ["(: cnet_isa_409ff624ea (IsA alkyl_halide organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alkylating agent is a kind of antineoplastic", "pln": ["(: cnet_isa_2700b83a1d (IsA alkylating_agent antineoplastic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alkylbenzene is a kind of organic compound", "pln": ["(: cnet_isa_10e4b452ed (IsA alkylbenzene organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "alkylbenzenesulfonate is a kind of sulfonate", "pln": ["(: cnet_isa_60f7b69d40 (IsA alkylbenzenesulfonate sulfonate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "all catholic is a kind of christian", "pln": ["(: cnet_isa_22dd05e7e5 (IsA all_catholic christian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "all clear is a kind of permission", "pln": ["(: cnet_isa_563d714241 (IsA all_clear permission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "all clear is a kind of signal", "pln": ["(: cnet_isa_a9ccb7e157 (IsA all_clear signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "all four is a kind of card game", "pln": ["(: cnet_isa_31072d3b2a (IsA all_four card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "all mammal is a kind of vertebrate", "pln": ["(: cnet_isa_2374c9a2c1 (IsA all_mammal vertebrate) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "all or none law is a kind of law", "pln": ["(: cnet_isa_877c1a930d (IsA all_or_none_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "all protestant is a kind of christian", "pln": ["(: cnet_isa_d803680274 (IsA all_protestant christian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "all real thing is a kind of construction", "pln": ["(: cnet_isa_926a7193a6 (IsA all_real_thing construction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "all rounder is a kind of expert", "pln": ["(: cnet_isa_351f8d9fd1 (IsA all_rounder expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "all saint day is a kind of holy day of obligation", "pln": ["(: cnet_isa_5d002c2650 (IsA all_saint_day holy_day_of_obligation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "all soul day is a kind of christian holy day", "pln": ["(: cnet_isa_0cf57ba5bf (IsA all_soul_day christian_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alla breve is a kind of time signature", "pln": ["(: cnet_isa_c333aa7a2c (IsA alla_breve time_signature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allamanda is a kind of vine", "pln": ["(: cnet_isa_d36b252abc (IsA allamanda vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allantois is a kind of fetal membrane", "pln": ["(: cnet_isa_2c0fb025c7 (IsA allantois fetal_membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allegation is a kind of claim", "pln": ["(: cnet_isa_a8bf2d1e41 (IsA allegation claim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allegation is a kind of accusation", "pln": ["(: cnet_isa_b721d39b82 (IsA allegation accusation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allegheny chinkapin is a kind of chestnut", "pln": ["(: cnet_isa_b2294e3d1f (IsA allegheny_chinkapin chestnut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allegheny plum is a kind of wild plum", "pln": ["(: cnet_isa_d51140feef (IsA allegheny_plum wild_plum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allegheny spurge is a kind of pachysandra", "pln": ["(: cnet_isa_550384b0d6 (IsA allegheny_spurge pachysandra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allegiance is a kind of loyalty", "pln": ["(: cnet_isa_ee1e7432f5 (IsA allegiance loyalty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allegorizer is a kind of communicator", "pln": ["(: cnet_isa_f5b8040483 (IsA allegorizer communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allegory is a kind of expressive style", "pln": ["(: cnet_isa_ef10af32c3 (IsA allegory expressive_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allegretto is a kind of musical composition", "pln": ["(: cnet_isa_dfd6d4bdcb (IsA allegretto musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allegretto is a kind of passage", "pln": ["(: cnet_isa_b2a5332c8e (IsA allegretto passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allegretto is a kind of tempo", "pln": ["(: cnet_isa_ea97251998 (IsA allegretto tempo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allegro is a kind of musical composition", "pln": ["(: cnet_isa_02c0514f19 (IsA allegro musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allegro is a kind of passage", "pln": ["(: cnet_isa_1091a8b9eb (IsA allegro passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "allegro is a kind of tempo", "pln": ["(: cnet_isa_8ffa255d3b (IsA allegro tempo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allegro con spirito is a kind of allegro", "pln": ["(: cnet_isa_01d5903acf (IsA allegro_con_spirito allegro) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allele is a kind of gene", "pln": ["(: cnet_isa_9b5dd66c65 (IsA allele gene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allemande is a kind of sauce", "pln": ["(: cnet_isa_d24a1786c2 (IsA allemande sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allen screw is a kind of screw", "pln": ["(: cnet_isa_15b1f6dd04 (IsA allen_screw screw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allen wrench is a kind of wrench", "pln": ["(: cnet_isa_1160a27312 (IsA allen_wrench wrench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allergen is a kind of substance", "pln": ["(: cnet_isa_dd4177f2e8 (IsA allergen substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "allergic eczema is a kind of eczema", "pln": ["(: cnet_isa_7e980b3478 (IsA allergic_eczema eczema) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allergic rhinitis is a kind of hypersensitivity reaction", "pln": ["(: cnet_isa_55714ad606 (IsA allergic_rhinitis hypersensitivity_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allergic rhinitis is a kind of rhinitis", "pln": ["(: cnet_isa_c53d6a63c2 (IsA allergic_rhinitis rhinitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allergist is a kind of doctor", "pln": ["(: cnet_isa_952d3cc91b (IsA allergist doctor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allergology is a kind of medicine", "pln": ["(: cnet_isa_44c1b25b64 (IsA allergology medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allergy is a kind of hypersensitivity reaction", "pln": ["(: cnet_isa_80195488ea (IsA allergy hypersensitivity_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allergy diet is a kind of diet", "pln": ["(: cnet_isa_d2edfbaa32 (IsA allergy_diet diet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alleviator is a kind of therapist", "pln": ["(: cnet_isa_807b5edbf6 (IsA alleviator therapist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alley is a kind of street", "pln": ["(: cnet_isa_60e0661abf (IsA alley street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alley cat is a kind of domestic cat", "pln": ["(: cnet_isa_9240978b59 (IsA alley_cat domestic_cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allhallowtide is a kind of season", "pln": ["(: cnet_isa_dd42901a30 (IsA allhallowtide season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alliaceae is a kind of liliid monocot family", "pln": ["(: cnet_isa_5c8cdb5875 (IsA alliaceae liliid_monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alliaceous plant is a kind of liliaceous plant", "pln": ["(: cnet_isa_81d56727a5 (IsA alliaceous_plant liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alliance is a kind of treaty", "pln": ["(: cnet_isa_177b099bba (IsA alliance treaty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alliance is a kind of organization", "pln": ["(: cnet_isa_34e8a4bc3d (IsA alliance organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alliance is a kind of connection", "pln": ["(: cnet_isa_f99078b2b2 (IsA alliance connection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alliance is a kind of coalition", "pln": ["(: cnet_isa_86f1483ec2 (IsA alliance coalition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alliaria is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_bd88f6279d (IsA alliaria dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allice shad is a kind of shad", "pln": ["(: cnet_isa_2f4091f3d5 (IsA allice_shad shad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allied command atlantic is a kind of headquarter", "pln": ["(: cnet_isa_6de3ccf7c2 (IsA allied_command_atlantic headquarter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allied command europe is a kind of headquarter", "pln": ["(: cnet_isa_fde0f3246c (IsA allied_command_europe headquarter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ally is a kind of alliance", "pln": ["(: cnet_isa_fa5d15279b (IsA ally alliance) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alligator is a kind of crocodilian reptile", "pln": ["(: cnet_isa_50d4d2d135 (IsA alligator crocodilian_reptile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alligator is a kind of leather", "pln": ["(: cnet_isa_b4ed2d44f1 (IsA alligator leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alligator lizard is a kind of anguid lizard", "pln": ["(: cnet_isa_4402b52fa0 (IsA alligator_lizard anguid_lizard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alligator snapping turtle is a kind of snapping turtle", "pln": ["(: cnet_isa_c368802bdb (IsA alligator_snapping_turtle snapping_turtle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alligator weed is a kind of weed", "pln": ["(: cnet_isa_f6f0fb5b7a (IsA alligator_weed weed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alligator wrench is a kind of wrench", "pln": ["(: cnet_isa_13ae9beb7a (IsA alligator_wrench wrench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alligatorfish is a kind of poacher", "pln": ["(: cnet_isa_e0dbf77a18 (IsA alligatorfish poacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alligatoridae is a kind of reptile family", "pln": ["(: cnet_isa_2b906cd477 (IsA alligatoridae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allionia is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_cee9995eb3 (IsA allionia caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "alliteration is a kind of rhyme", "pln": ["(: cnet_isa_46a90b6df7 (IsA alliteration rhyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alliterator is a kind of speaker", "pln": ["(: cnet_isa_f519bfcd5a (IsA alliterator speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alliterator is a kind of writer", "pln": ["(: cnet_isa_378127068f (IsA alliterator writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allium is a kind of liliid monocot genus", "pln": ["(: cnet_isa_4a2d9df1d6 (IsA allium liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allocation is a kind of assignment", "pln": ["(: cnet_isa_e89a641456 (IsA allocation assignment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allocation unit is a kind of computer memory unit", "pln": ["(: cnet_isa_d53f045850 (IsA allocation_unit computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allocator is a kind of authority", "pln": ["(: cnet_isa_adca12576d (IsA allocator authority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allocution is a kind of address", "pln": ["(: cnet_isa_09d59bf419 (IsA allocution address) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allogamy is a kind of cross fertilization", "pln": ["(: cnet_isa_d3372d05ce (IsA allogamy cross_fertilization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allograph is a kind of character", "pln": ["(: cnet_isa_e13967bc76 (IsA allograph character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allograph is a kind of signature", "pln": ["(: cnet_isa_50a3dd53d6 (IsA allograph signature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allomerism is a kind of variation", "pln": ["(: cnet_isa_1abdee1816 (IsA allomerism variation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allometry is a kind of discipline", "pln": ["(: cnet_isa_909dda7ceb (IsA allometry discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allomorph is a kind of morpheme", "pln": ["(: cnet_isa_7d5301c62a (IsA allomorph morpheme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allomorph is a kind of compound", "pln": ["(: cnet_isa_f8959be070 (IsA allomorph compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allopathy is a kind of medical care", "pln": ["(: cnet_isa_1076f8038a (IsA allopathy medical_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allopatry is a kind of occurrence", "pln": ["(: cnet_isa_bb51877803 (IsA allopatry occurrence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allophone is a kind of phoneme", "pln": ["(: cnet_isa_6042565a08 (IsA allophone phoneme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allosaur is a kind of theropod", "pln": ["(: cnet_isa_c2530d93ec (IsA allosaur theropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allotment is a kind of distribution", "pln": ["(: cnet_isa_9349888309 (IsA allotment distribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allotment is a kind of share", "pln": ["(: cnet_isa_9c6d726e92 (IsA allotment share) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allotrope is a kind of chemical element", "pln": ["(: cnet_isa_c93f2691c4 (IsA allotrope chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allotropy is a kind of chemical phenomenon", "pln": ["(: cnet_isa_0da597117a (IsA allotropy chemical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "allowance is a kind of license", "pln": ["(: cnet_isa_90b0127759 (IsA allowance license) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allowance is a kind of discrepancy", "pln": ["(: cnet_isa_54d7196743 (IsA allowance discrepancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allowance is a kind of recompense", "pln": ["(: cnet_isa_da0dc45527 (IsA allowance recompense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allowance is a kind of reimbursement", "pln": ["(: cnet_isa_b2964b5bd3 (IsA allowance reimbursement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allowance is a kind of share", "pln": ["(: cnet_isa_4cbb3691e7 (IsA allowance share) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alloy is a kind of mixture", "pln": ["(: cnet_isa_96fc96e82f (IsA alloy mixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alloy iron is a kind of cast iron", "pln": ["(: cnet_isa_d0aa81b700 (IsA alloy_iron cast_iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "alloy steel is a kind of steel", "pln": ["(: cnet_isa_d6d468d93d (IsA alloy_steel steel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allspice is a kind of spice", "pln": ["(: cnet_isa_f2aa5a786d (IsA allspice spice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allspice is a kind of shrub", "pln": ["(: cnet_isa_6a818e4426 (IsA allspice shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allspice is a kind of spice tree", "pln": ["(: cnet_isa_22f0fb8e7a (IsA allspice spice_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allspice tree is a kind of spice tree", "pln": ["(: cnet_isa_d39d901722 (IsA allspice_tree spice_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "allure is a kind of attraction", "pln": ["(: cnet_isa_b4ff24fbff (IsA allure attraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allurement is a kind of temptation", "pln": ["(: cnet_isa_acbe24a9e8 (IsA allurement temptation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allusion is a kind of mention", "pln": ["(: cnet_isa_1e10bbf9bf (IsA allusion mention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allusiveness is a kind of indirectness", "pln": ["(: cnet_isa_06a8fd6a98 (IsA allusiveness indirectness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alluvial fan is a kind of geological phenomenon", "pln": ["(: cnet_isa_fc8943109b (IsA alluvial_fan geological_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alluvial plain is a kind of flat", "pln": ["(: cnet_isa_fc23059f7e (IsA alluvial_plain flat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alluvial sediment is a kind of sediment", "pln": ["(: cnet_isa_fc3dd0f1eb (IsA alluvial_sediment sediment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alluvial soil is a kind of soil", "pln": ["(: cnet_isa_2ee4e9d93d (IsA alluvial_soil soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alluvion is a kind of geological process", "pln": ["(: cnet_isa_e101d2da7e (IsA alluvion geological_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ally is a kind of state", "pln": ["(: cnet_isa_2780c0094c (IsA ally state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ally is a kind of associate", "pln": ["(: cnet_isa_82f6ab876d (IsA ally associate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allyl is a kind of group", "pln": ["(: cnet_isa_16bed03af5 (IsA allyl group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "allyl alcohol is a kind of alcohol", "pln": ["(: cnet_isa_f048bbf784 (IsA allyl_alcohol alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "allyl resin is a kind of synthetic resin", "pln": ["(: cnet_isa_9ff8937583 (IsA allyl_resin synthetic_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alma mater is a kind of school", "pln": ["(: cnet_isa_a2e5b64c5f (IsA alma_mater school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "almanac is a kind of annual", "pln": ["(: cnet_isa_3f75fb6f32 (IsA almanac annual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "almandine is a kind of spinel ruby", "pln": ["(: cnet_isa_c552fdfc10 (IsA almandine spinel_ruby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "almandite is a kind of garnet", "pln": ["(: cnet_isa_4998620ded (IsA almandite garnet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "almond is a kind of drupe", "pln": ["(: cnet_isa_7cfd0017ba (IsA almond drupe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "almond is a kind of edible nut", "pln": ["(: cnet_isa_e8d859c062 (IsA almond edible_nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "almond is a kind of almond tree", "pln": ["(: cnet_isa_01f123b1a7 (IsA almond almond_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "almond cookie is a kind of cookie", "pln": ["(: cnet_isa_58cd758132 (IsA almond_cookie cookie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "almond extract is a kind of flavorer", "pln": ["(: cnet_isa_db71465a53 (IsA almond_extract flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "almond moth is a kind of pyralid", "pln": ["(: cnet_isa_57e2e676e5 (IsA almond_moth pyralid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "almond oil is a kind of oil", "pln": ["(: cnet_isa_ec7b388c1f (IsA almond_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "almond tree is a kind of fruit tree", "pln": ["(: cnet_isa_625ae2294f (IsA almond_tree fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "almond willow is a kind of osier", "pln": ["(: cnet_isa_415be3b43d (IsA almond_willow osier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "almoner is a kind of social worker", "pln": ["(: cnet_isa_8d8fc51657 (IsA almoner social_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "almoravid is a kind of berber", "pln": ["(: cnet_isa_c22417264a (IsA almoravid berber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alm is a kind of contribution", "pln": ["(: cnet_isa_0e264893a7 (IsA alm contribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alm is a kind of giving", "pln": ["(: cnet_isa_d4e883fcdf (IsA alm giving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alm dish is a kind of tray", "pln": ["(: cnet_isa_2d5bc1f2ce (IsA alm_dish tray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "almsgiver is a kind of donor", "pln": ["(: cnet_isa_d114b30411 (IsA almsgiver donor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alnus is a kind of hamamelid dicot genus", "pln": ["(: cnet_isa_df14046b50 (IsA alnus hamamelid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alocasia is a kind of arum", "pln": ["(: cnet_isa_610cff97bd (IsA alocasia arum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aloe is a kind of succulent", "pln": ["(: cnet_isa_338c857131 (IsA aloe succulent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aloe vera is a kind of plant", "pln": ["(: cnet_isa_159cd2d926 (IsA aloe_vera plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aloeaceae is a kind of liliid monocot family", "pln": ["(: cnet_isa_c78423054c (IsA aloeaceae liliid_monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aloe is a kind of purgative", "pln": ["(: cnet_isa_39c684436b (IsA aloe purgative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aloha is a kind of acknowledgment", "pln": ["(: cnet_isa_d266f66ff6 (IsA aloha acknowledgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "aloneness is a kind of disposition", "pln": ["(: cnet_isa_2260e3207b (IsA aloneness disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aloofness is a kind of unsociability", "pln": ["(: cnet_isa_ce4dc6086f (IsA aloofness unsociability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alopecia is a kind of baldness", "pln": ["(: cnet_isa_3e66ff70be (IsA alopecia baldness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alopecia areata is a kind of alopecia", "pln": ["(: cnet_isa_450887b0b1 (IsA alopecia_areata alopecia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alopecurus is a kind of monocot genus", "pln": ["(: cnet_isa_b203fe066a (IsA alopecurus monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alopex is a kind of mammal genus", "pln": ["(: cnet_isa_607d63fc39 (IsA alopex mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alopiidae is a kind of fish family", "pln": ["(: cnet_isa_c5771ff24e (IsA alopiidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alopius is a kind of fish genus", "pln": ["(: cnet_isa_fd0e83aa60 (IsA alopius fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alosa is a kind of fish genus", "pln": ["(: cnet_isa_7db6b0848b (IsA alosa fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alouatta is a kind of mammal genus", "pln": ["(: cnet_isa_7b0f8952ed (IsA alouatta mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alp is a kind of mountain", "pln": ["(: cnet_isa_d8a0cd1a4f (IsA alp mountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpaca is a kind of llama", "pln": ["(: cnet_isa_feb08327a7 (IsA alpaca llama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpaca is a kind of fabric", "pln": ["(: cnet_isa_a4bdae8b6e (IsA alpaca fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpaca is a kind of wool", "pln": ["(: cnet_isa_f769f9d140 (IsA alpaca wool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpenstock is a kind of staff", "pln": ["(: cnet_isa_b22d6c1340 (IsA alpenstock staff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpha is a kind of letter", "pln": ["(: cnet_isa_4010756d2a (IsA alpha letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpha is a kind of start", "pln": ["(: cnet_isa_628ffada26 (IsA alpha start) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpha and omega is a kind of crux", "pln": ["(: cnet_isa_62386737ed (IsA alpha_and_omega crux) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpha and omega is a kind of eternity", "pln": ["(: cnet_isa_e9400af2f3 (IsA alpha_and_omega eternity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpha beta brass is a kind of brass", "pln": ["(: cnet_isa_a53f32b3df (IsA alpha_beta_brass brass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "alpha blocker is a kind of blocker", "pln": ["(: cnet_isa_1a0f59d1dd (IsA alpha_blocker blocker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpha brass is a kind of brass", "pln": ["(: cnet_isa_6c100298c7 (IsA alpha_brass brass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpha bronze is a kind of bronze", "pln": ["(: cnet_isa_df042146ca (IsA alpha_bronze bronze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpha decay is a kind of decay", "pln": ["(: cnet_isa_1a3df31ef2 (IsA alpha_decay decay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpha fetoprotein is a kind of fetoprotein", "pln": ["(: cnet_isa_f6625ff917 (IsA alpha_fetoprotein fetoprotein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpha globulin is a kind of globulin", "pln": ["(: cnet_isa_765cb23428 (IsA alpha_globulin globulin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpha interferon is a kind of interferon", "pln": ["(: cnet_isa_031836c8bd (IsA alpha_interferon interferon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpha iron is a kind of iron", "pln": ["(: cnet_isa_0249d67753 (IsA alpha_iron iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "alpha linolenic acid is a kind of omega 3 fatty acid", "pln": ["(: cnet_isa_a4ac14f1fe (IsA alpha_linolenic_acid omega_3_fatty_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpha naphthol is a kind of naphthol", "pln": ["(: cnet_isa_c1aa4ffae9 (IsA alpha_naphthol naphthol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpha naphthol test is a kind of indicator", "pln": ["(: cnet_isa_d80f76b643 (IsA alpha_naphthol_test indicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpha particle is a kind of particle", "pln": ["(: cnet_isa_b150a04154 (IsA alpha_particle particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpha privative is a kind of prefix", "pln": ["(: cnet_isa_1e0c9d946d (IsA alpha_privative prefix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpha radiation is a kind of corpuscular radiation", "pln": ["(: cnet_isa_1bf2becac3 (IsA alpha_radiation corpuscular_radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "alpha radiation is a kind of ionizing radiation", "pln": ["(: cnet_isa_ee11bc2939 (IsA alpha_radiation ionizing_radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpha receptor is a kind of receptor", "pln": ["(: cnet_isa_9d762b2876 (IsA alpha_receptor receptor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpha rhythm is a kind of brainwave", "pln": ["(: cnet_isa_21aaf7d5cf (IsA alpha_rhythm brainwave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpha software is a kind of software", "pln": ["(: cnet_isa_a4687d7fcb (IsA alpha_software software) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpha test is a kind of trial", "pln": ["(: cnet_isa_6ae48a2e4c (IsA alpha_test trial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpha tocopheral is a kind of vitamin e", "pln": ["(: cnet_isa_a55d4fe8ab (IsA alpha_tocopheral vitamin_e) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alphabet is a kind of sery of letter", "pln": ["(: cnet_isa_71fa894f9c (IsA alphabet sery_of_letter) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alphabet is a kind of character set", "pln": ["(: cnet_isa_76f0cc460b (IsA alphabet character_set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alphabet is a kind of script", "pln": ["(: cnet_isa_a77fe6df7a (IsA alphabet script) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alphabet soup is a kind of soup", "pln": ["(: cnet_isa_f006a0ded5 (IsA alphabet_soup soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "alphabet soup is a kind of assortment", "pln": ["(: cnet_isa_c92e371611 (IsA alphabet_soup assortment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alphabetic writing is a kind of orthography", "pln": ["(: cnet_isa_cab7e28194 (IsA alphabetic_writing orthography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alphabetization is a kind of order", "pln": ["(: cnet_isa_e0a7cc1b0a (IsA alphabetization order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alphabetizer is a kind of literate", "pln": ["(: cnet_isa_c1d006cd98 (IsA alphabetizer literate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alphanumeric is a kind of character set", "pln": ["(: cnet_isa_e734a888c7 (IsA alphanumeric character_set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alphavirus is a kind of animal virus", "pln": ["(: cnet_isa_62876f9056 (IsA alphavirus animal_virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpine anemone is a kind of anemone", "pln": ["(: cnet_isa_a7793d91c4 (IsA alpine_anemone anemone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpine ash is a kind of eucalyptus", "pln": ["(: cnet_isa_c732e2c23d (IsA alpine_ash eucalyptus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "alpine azalea is a kind of shrub", "pln": ["(: cnet_isa_11b9ca5a58 (IsA alpine_azalea shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "alternation of generations is a kind of organic phenomenon", "pln": ["(: cnet_isa_a79e15e1d5 (IsA alternation_of_generations organic_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpine bearberry is a kind of bearberry", "pln": ["(: cnet_isa_fcbbec218f (IsA alpine_bearberry bearberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpine besseya is a kind of kitten tail", "pln": ["(: cnet_isa_9860a2fcd7 (IsA alpine_besseya kitten_tail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpine celery pine is a kind of celery pine", "pln": ["(: cnet_isa_de03c6a1b8 (IsA alpine_celery_pine celery_pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpine clover is a kind of clover", "pln": ["(: cnet_isa_80c3eff6cf (IsA alpine_clover clover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpine clubmoss is a kind of club moss", "pln": ["(: cnet_isa_8dc087fa2b (IsA alpine_clubmoss club_moss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpine coltsfoot is a kind of herb", "pln": ["(: cnet_isa_86c929ca71 (IsA alpine_coltsfoot herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpine enchanter s nightshade is a kind of enchanter s nightshade", "pln": ["(: cnet_isa_ed1f6740d5 (IsA alpine_enchanter_s_nightshade enchanter_s_nightshade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpine fir is a kind of silver fir", "pln": ["(: cnet_isa_d33853f7ab (IsA alpine_fir silver_fir) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpine glacier is a kind of glacier", "pln": ["(: cnet_isa_2515727de6 (IsA alpine_glacier glacier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpine gold is a kind of wildflower", "pln": ["(: cnet_isa_9841c71ef0 (IsA alpine_gold wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpine goldenrod is a kind of goldenrod", "pln": ["(: cnet_isa_c49c4d69c5 (IsA alpine_goldenrod goldenrod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpine lady fern is a kind of lady fern", "pln": ["(: cnet_isa_1000404fb1 (IsA alpine_lady_fern lady_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpine milk vetch is a kind of milk vetch", "pln": ["(: cnet_isa_44b9eee178 (IsA alpine_milk_vetch milk_vetch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpine mouse ear is a kind of mouse ear chickweed", "pln": ["(: cnet_isa_5b06f70158 (IsA alpine_mouse_ear mouse_ear_chickweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpine salamander is a kind of salamander", "pln": ["(: cnet_isa_e4d8f592d5 (IsA alpine_salamander salamander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpine totara is a kind of shrub", "pln": ["(: cnet_isa_9a1152b56c (IsA alpine_totara shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpine woodsia is a kind of woodsia", "pln": ["(: cnet_isa_9d0b1aa092 (IsA alpine_woodsia woodsia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpinia is a kind of plant genus", "pln": ["(: cnet_isa_3cc751943a (IsA alpinia plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpinism is a kind of mountain climbing", "pln": ["(: cnet_isa_06b4a83240 (IsA alpinism mountain_climbing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alpinist is a kind of mountaineer", "pln": ["(: cnet_isa_903d2769de (IsA alpinist mountaineer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alsatian is a kind of inhabitant", "pln": ["(: cnet_isa_f6e873b767 (IsA alsatian inhabitant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alsobia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_227d136e6d (IsA alsobia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alsophila is a kind of arthropod genus", "pln": ["(: cnet_isa_f9de8c2f53 (IsA alsophila arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alsophila pometaria is a kind of geometrid", "pln": ["(: cnet_isa_fa1620761f (IsA alsophila_pometaria geometrid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alstonia is a kind of dicot genus", "pln": ["(: cnet_isa_05b7b72d21 (IsA alstonia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alstroemeria is a kind of liliaceous plant", "pln": ["(: cnet_isa_6d3927fb9c (IsA alstroemeria liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alstroemeriaceae is a kind of liliid monocot family", "pln": ["(: cnet_isa_f0b0ada152 (IsA alstroemeriaceae liliid_monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alta vista is a kind of search engine", "pln": ["(: cnet_isa_3209d9f17b (IsA alta_vista search_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "altaic is a kind of ural altaic", "pln": ["(: cnet_isa_d1133b41cc (IsA altaic ural_altaic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "altaic is a kind of asiatic", "pln": ["(: cnet_isa_c6d93f3313 (IsA altaic asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "altar is a kind of structure", "pln": ["(: cnet_isa_1df26f9c6a (IsA altar structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "altar is a kind of table", "pln": ["(: cnet_isa_6a32afbfe9 (IsA altar table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "altar boy is a kind of acolyte", "pln": ["(: cnet_isa_1e21b46cef (IsA altar_boy acolyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "altar boy is a kind of male child", "pln": ["(: cnet_isa_6f74a72a4e (IsA altar_boy male_child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "altar wine is a kind of wine", "pln": ["(: cnet_isa_de3f5b570a (IsA altar_wine wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "altarpiece is a kind of screen", "pln": ["(: cnet_isa_cac7b066e1 (IsA altarpiece screen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "altazimuth is a kind of measuring instrument", "pln": ["(: cnet_isa_9955d98754 (IsA altazimuth measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alter ego is a kind of friend", "pln": ["(: cnet_isa_251f54863c (IsA alter_ego friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alterability is a kind of mutability", "pln": ["(: cnet_isa_f30b11f380 (IsA alterability mutability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alteration is a kind of change", "pln": ["(: cnet_isa_2918379417 (IsA alteration change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alternanthera is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_1f64ead951 (IsA alternanthera caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alternating current is a kind of electricity", "pln": ["(: cnet_isa_ce11ea7d84 (IsA alternating_current electricity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alternation is a kind of succession", "pln": ["(: cnet_isa_8579e06ff1 (IsA alternation succession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alternation of generation is a kind of organic phenomenon", "pln": ["(: cnet_isa_8b02cc86a2 (IsA alternation_of_generation organic_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alternative birth is a kind of childbirth", "pln": ["(: cnet_isa_edc2f658b4 (IsA alternative_birth childbirth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alternative energy is a kind of energy", "pln": ["(: cnet_isa_70fc427955 (IsA alternative_energy energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alternative medicine is a kind of medicine", "pln": ["(: cnet_isa_ff70928969 (IsA alternative_medicine medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alternative pleading is a kind of pleading", "pln": ["(: cnet_isa_5ec30ce3e2 (IsA alternative_pleading pleading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alternator is a kind of generator", "pln": ["(: cnet_isa_f0d521f19b (IsA alternator generator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "althea is a kind of mallow", "pln": ["(: cnet_isa_0e1d1cd2cb (IsA althea mallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "altimeter is a kind of measuring instrument", "pln": ["(: cnet_isa_9209447aee (IsA altimeter measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "altitude is a kind of elevation", "pln": ["(: cnet_isa_fca9cb8046 (IsA altitude elevation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "altitude is a kind of distance", "pln": ["(: cnet_isa_38003cdd56 (IsA altitude distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "altitude sickness is a kind of hypoxia", "pln": ["(: cnet_isa_3d94286e5d (IsA altitude_sickness hypoxia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alto is a kind of pitch", "pln": ["(: cnet_isa_8a867dd87f (IsA alto pitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alto is a kind of singer", "pln": ["(: cnet_isa_f74b5f11ff (IsA alto singer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alto clef is a kind of clef", "pln": ["(: cnet_isa_7e73b19c6e (IsA alto_clef clef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "alto relievo is a kind of relief", "pln": ["(: cnet_isa_260047eeff (IsA alto_relievo relief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "alto saxophonist is a kind of saxophonist", "pln": ["(: cnet_isa_b378af6982 (IsA alto_saxophonist saxophonist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "altocumulus is a kind of cumulus", "pln": ["(: cnet_isa_041817830c (IsA altocumulus cumulus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "altostratus is a kind of stratus", "pln": ["(: cnet_isa_a19fb0d09a (IsA altostratus stratus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "altruism is a kind of unselfishness", "pln": ["(: cnet_isa_2483c22952 (IsA altruism unselfishness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alula is a kind of squama", "pln": ["(: cnet_isa_7ab707dd57 (IsA alula squama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alum is a kind of astringent", "pln": ["(: cnet_isa_f263d425c7 (IsA alum astringent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alum is a kind of aluminum", "pln": ["(: cnet_isa_1206f17bc9 (IsA alum aluminum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "alum is a kind of double salt", "pln": ["(: cnet_isa_8ce78ec4f4 (IsA alum double_salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alumina is a kind of corundom", "pln": ["(: cnet_isa_43090ff16e (IsA alumina corundom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aluminate is a kind of compound", "pln": ["(: cnet_isa_e67bdb4f5c (IsA aluminate compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aluminum is a kind of material", "pln": ["(: cnet_isa_060646f82f (IsA aluminum material) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aluminum is a kind of metal", "pln": ["(: cnet_isa_8128861ac3 (IsA aluminum metal) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aluminum is a kind of metallic element", "pln": ["(: cnet_isa_a25ff6e9e3 (IsA aluminum metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aluminum bronze is a kind of copper base alloy", "pln": ["(: cnet_isa_21c0917ee0 (IsA aluminum_bronze copper_base_alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aluminum business is a kind of industry", "pln": ["(: cnet_isa_32691ef78b (IsA aluminum_business industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aluminum chloride is a kind of chloride", "pln": ["(: cnet_isa_4240210047 (IsA aluminum_chloride chloride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aluminum foil is a kind of foil", "pln": ["(: cnet_isa_dc98a7967f (IsA aluminum_foil foil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aluminum hydroxide is a kind of hydroxide", "pln": ["(: cnet_isa_b3cc9a9bed (IsA aluminum_hydroxide hydroxide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alumnus is a kind of scholar", "pln": ["(: cnet_isa_d17edd4577 (IsA alumnus scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alumroot is a kind of herb", "pln": ["(: cnet_isa_4f965920a1 (IsA alumroot herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alundum is a kind of alumina", "pln": ["(: cnet_isa_f833925892 (IsA alundum alumina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alveolar arch is a kind of process", "pln": ["(: cnet_isa_1c17582ee3 (IsA alveolar_arch process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alveolar artery is a kind of artery", "pln": ["(: cnet_isa_b65e508030 (IsA alveolar_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alveolar bed is a kind of structure", "pln": ["(: cnet_isa_a5fd29dfb9 (IsA alveolar_bed structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alveolar consonant is a kind of consonant", "pln": ["(: cnet_isa_ed9d3934f7 (IsA alveolar_consonant consonant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alveolar ectasia is a kind of ectasia", "pln": ["(: cnet_isa_ac5bcdf4c9 (IsA alveolar_ectasia ectasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alveolar resorption is a kind of periodontal disease", "pln": ["(: cnet_isa_eb8b2091af (IsA alveolar_resorption periodontal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alveolar rhabdomyosarcoma is a kind of rhabdomyosarcoma", "pln": ["(: cnet_isa_2ebef85157 (IsA alveolar_rhabdomyosarcoma rhabdomyosarcoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alveolar ridge is a kind of process", "pln": ["(: cnet_isa_4b09b55f3b (IsA alveolar_ridge process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alveolitis is a kind of inflammation", "pln": ["(: cnet_isa_25f85c0350 (IsA alveolitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alveolus is a kind of sac", "pln": ["(: cnet_isa_eaed7cdbda (IsA alveolus sac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alyssum is a kind of crucifer", "pln": ["(: cnet_isa_8ed51f8595 (IsA alyssum crucifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alyssum is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_0e3dbecf51 (IsA alyssum dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "alyte is a kind of amphibian genus", "pln": ["(: cnet_isa_80136fc859 (IsA alyte amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "alzheimer s disease is a kind of presenile dementia", "pln": ["(: cnet_isa_db8c7a99f8 (IsA alzheimer_s_disease presenile_dementia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amabilis fir is a kind of silver fir", "pln": ["(: cnet_isa_9043255f9c (IsA amabilis_fir silver_fir) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amalgam is a kind of combination", "pln": ["(: cnet_isa_b2ced23cc7 (IsA amalgam combination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amalgam is a kind of alloy", "pln": ["(: cnet_isa_9953d4cffa (IsA amalgam alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amalgamation is a kind of consolidation", "pln": ["(: cnet_isa_4664be6633 (IsA amalgamation consolidation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amalgamator is a kind of businessman", "pln": ["(: cnet_isa_832a3f3bcd (IsA amalgamator businessman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amanita is a kind of fungus genus", "pln": ["(: cnet_isa_e3ed18c524 (IsA amanita fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amaranth is a kind of grain", "pln": ["(: cnet_isa_7e7f3a7b43 (IsA amaranth grain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amaranth is a kind of herb", "pln": ["(: cnet_isa_cec0327bf3 (IsA amaranth herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amaranthaceae is a kind of caryophylloid dicot family", "pln": ["(: cnet_isa_5eae212460 (IsA amaranthaceae caryophylloid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amaranthus is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_5027c4ea12 (IsA amaranthus caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amarelle is a kind of sour cherry", "pln": ["(: cnet_isa_1f2c4e18ad (IsA amarelle sour_cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amaretto is a kind of liqueur", "pln": ["(: cnet_isa_b18ca53684 (IsA amaretto liqueur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amaryllidaceae is a kind of liliid monocot family", "pln": ["(: cnet_isa_c96ec89e16 (IsA amaryllidaceae liliid_monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amaryllis is a kind of bulbous plant", "pln": ["(: cnet_isa_d7aa023099 (IsA amaryllis bulbous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amastia is a kind of abnormality", "pln": ["(: cnet_isa_769c95d938 (IsA amastia abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amateur is a kind of athlete", "pln": ["(: cnet_isa_43a162c06f (IsA amateur athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amateur is a kind of person", "pln": ["(: cnet_isa_d88b74bce3 (IsA amateur person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amateurishness is a kind of unskillfulness", "pln": ["(: cnet_isa_49f63fa50f (IsA amateurishness unskillfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "amateurism is a kind of conviction", "pln": ["(: cnet_isa_7a0fe3c912 (IsA amateurism conviction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amati is a kind of violin", "pln": ["(: cnet_isa_c8b10beb56 (IsA amati violin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amauropelta is a kind of fern genus", "pln": ["(: cnet_isa_8a3419841e (IsA amauropelta fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amaurosis is a kind of visual impairment", "pln": ["(: cnet_isa_d5eaf6e484 (IsA amaurosis visual_impairment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amazon is a kind of parrot", "pln": ["(: cnet_isa_47bb14aa33 (IsA amazon parrot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amazon is a kind of mythical being", "pln": ["(: cnet_isa_7eac36bb39 (IsA amazon mythical_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "amazon is a kind of woman", "pln": ["(: cnet_isa_deb79dba04 (IsA amazon woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amazon ant is a kind of slave making ant", "pln": ["(: cnet_isa_b9502ce70c (IsA amazon_ant slave_making_ant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amazona is a kind of bird genus", "pln": ["(: cnet_isa_2b2e582ed7 (IsA amazona bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ambage is a kind of way", "pln": ["(: cnet_isa_328c689578 (IsA ambage way) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ambassador is a kind of diplomat", "pln": ["(: cnet_isa_86562e51da (IsA ambassador diplomat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ambassador is a kind of spokesperson", "pln": ["(: cnet_isa_1c3c7dfbcc (IsA ambassador spokesperson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ambassadorship is a kind of position", "pln": ["(: cnet_isa_31d6e9c9f1 (IsA ambassadorship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ambassadress is a kind of ambassador", "pln": ["(: cnet_isa_3847b360c6 (IsA ambassadress ambassador) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amber is a kind of yellow", "pln": ["(: cnet_isa_0ce4cf6531 (IsA amber yellow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amber is a kind of natural resin", "pln": ["(: cnet_isa_91a5bc715d (IsA amber natural_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amber lily is a kind of liliaceous plant", "pln": ["(: cnet_isa_1928e3b0fc (IsA amber_lily liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amberboa is a kind of asterid dicot genus", "pln": ["(: cnet_isa_0cbfd366e4 (IsA amberboa asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ambergris is a kind of animal product", "pln": ["(: cnet_isa_323b7ac0b6 (IsA ambergris animal_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amberjack is a kind of jack", "pln": ["(: cnet_isa_af45a1a4e7 (IsA amberjack jack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ambiance is a kind of environment", "pln": ["(: cnet_isa_e4f79eaa3e (IsA ambiance environment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ambidexterity is a kind of handedness", "pln": ["(: cnet_isa_aaca36407d (IsA ambidexterity handedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ambiguity is a kind of unclearness", "pln": ["(: cnet_isa_49dea9ea52 (IsA ambiguity unclearness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ambiguity is a kind of saying", "pln": ["(: cnet_isa_87d415c66d (IsA ambiguity saying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ambition is a kind of drive", "pln": ["(: cnet_isa_bd697d36bc (IsA ambition drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ambition is a kind of desire", "pln": ["(: cnet_isa_3f36be2c75 (IsA ambition desire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ambivalence is a kind of feeling", "pln": ["(: cnet_isa_8a317ffbc1 (IsA ambivalence feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ambiversion is a kind of sociability", "pln": ["(: cnet_isa_a1c4172510 (IsA ambiversion sociability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amble is a kind of walk", "pln": ["(: cnet_isa_d5198c1b88 (IsA amble walk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ambloplite is a kind of fish genus", "pln": ["(: cnet_isa_9a9f0a2c86 (IsA ambloplite fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amblygonite is a kind of mineral", "pln": ["(: cnet_isa_11abee345f (IsA amblygonite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amblyopia is a kind of visual impairment", "pln": ["(: cnet_isa_cda2b29a1b (IsA amblyopia visual_impairment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amblyrhynchus is a kind of reptile genus", "pln": ["(: cnet_isa_975a4b0220 (IsA amblyrhynchus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amboina pine is a kind of kauri pine", "pln": ["(: cnet_isa_b9445530ca (IsA amboina_pine kauri_pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amboyna is a kind of rosewood", "pln": ["(: cnet_isa_42b5d36449 (IsA amboyna rosewood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ambrosia is a kind of dainty", "pln": ["(: cnet_isa_d14e3f641a (IsA ambrosia dainty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ambrosia is a kind of dessert", "pln": ["(: cnet_isa_6fb8e702ce (IsA ambrosia dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ambrosiaceae is a kind of asterid dicot family", "pln": ["(: cnet_isa_9580ce8115 (IsA ambrosiaceae asterid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ambulacrum is a kind of body part", "pln": ["(: cnet_isa_43d47bb3cc (IsA ambulacrum body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ambulance is a kind of car", "pln": ["(: cnet_isa_fedf7b344c (IsA ambulance car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ambulance chaser is a kind of lawyer", "pln": ["(: cnet_isa_683afec4e5 (IsA ambulance_chaser lawyer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ambulation is a kind of walk", "pln": ["(: cnet_isa_c00ba4aef2 (IsA ambulation walk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ambulatory is a kind of walk", "pln": ["(: cnet_isa_44b0cf13ca (IsA ambulatory walk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ambulatory plague is a kind of bubonic plague", "pln": ["(: cnet_isa_05f68a2416 (IsA ambulatory_plague bubonic_plague) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ambush is a kind of surprise attack", "pln": ["(: cnet_isa_39f7dbdb33 (IsA ambush surprise_attack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ambusher is a kind of attacker", "pln": ["(: cnet_isa_791a08849a (IsA ambusher attacker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ambystoma is a kind of amphibian genus", "pln": ["(: cnet_isa_3d33dc9770 (IsA ambystoma amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ambystomatidae is a kind of amphibian family", "pln": ["(: cnet_isa_2bd40f35d0 (IsA ambystomatidae amphibian_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ambystomid is a kind of salamander", "pln": ["(: cnet_isa_3b5613b94f (IsA ambystomid salamander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ameba is a kind of rhizopod", "pln": ["(: cnet_isa_c805f94e44 (IsA ameba rhizopod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amebiasis is a kind of protozoal infection", "pln": ["(: cnet_isa_48b64c4812 (IsA amebiasis protozoal_infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amebic dysentery is a kind of amebiasis", "pln": ["(: cnet_isa_59c1ffe142 (IsA amebic_dysentery amebiasis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amebic dysentery is a kind of dysentery", "pln": ["(: cnet_isa_6552a4dd3e (IsA amebic_dysentery dysentery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ameiuridae is a kind of fish family", "pln": ["(: cnet_isa_e175adedf8 (IsA ameiuridae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ameiurus is a kind of fish genus", "pln": ["(: cnet_isa_22cea6d641 (IsA ameiurus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amelanchier is a kind of rosid dicot genus", "pln": ["(: cnet_isa_d2b49586db (IsA amelanchier rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amelia is a kind of birth defect", "pln": ["(: cnet_isa_d7625cd876 (IsA amelia birth_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amelioration is a kind of improvement", "pln": ["(: cnet_isa_0ac92271b6 (IsA amelioration improvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ameloblast is a kind of embryonic cell", "pln": ["(: cnet_isa_bb3f58d1db (IsA ameloblast embryonic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amelogenesis is a kind of growth", "pln": ["(: cnet_isa_f78915ddb3 (IsA amelogenesis growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "amen corner is a kind of corner", "pln": ["(: cnet_isa_54ad7087a9 (IsA amen_corner corner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amenability is a kind of tractability", "pln": ["(: cnet_isa_b8b5f09155 (IsA amenability tractability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amended return is a kind of tax return", "pln": ["(: cnet_isa_8fa0bf571c (IsA amended_return tax_return) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amendment is a kind of correction", "pln": ["(: cnet_isa_22eed5531e (IsA amendment correction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amendment is a kind of statement", "pln": ["(: cnet_isa_b33438c1da (IsA amendment statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amenorrhea is a kind of symptom", "pln": ["(: cnet_isa_e1bad6f8b6 (IsA amenorrhea symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amentiferae is a kind of taxonomic group", "pln": ["(: cnet_isa_bf354b5b4b (IsA amentiferae taxonomic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "america is a kind of country", "pln": ["(: cnet_isa_3bdf719767 (IsA america country) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american is a kind of citizen of america", "pln": ["(: cnet_isa_ab0c22f6e9 (IsA american citizen_of_america) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american is a kind of inhabitant", "pln": ["(: cnet_isa_b26e6f6003 (IsA american inhabitant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american agave is a kind of agave", "pln": ["(: cnet_isa_8cc501bec3 (IsA american_agave agave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american alligator is a kind of alligator", "pln": ["(: cnet_isa_589bc76a6c (IsA american_alligator alligator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american angelica tree is a kind of shrub", "pln": ["(: cnet_isa_3bfa757e47 (IsA american_angelica_tree shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american arborvitae is a kind of arborvitae", "pln": ["(: cnet_isa_cd1f22c5e5 (IsA american_arborvitae arborvitae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american badger is a kind of badger", "pln": ["(: cnet_isa_df5fa26942 (IsA american_badger badger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american baptist convention is a kind of association", "pln": ["(: cnet_isa_94baa6aec2 (IsA american_baptist_convention association) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american barberry is a kind of barberry", "pln": ["(: cnet_isa_facf17a166 (IsA american_barberry barberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american basswood is a kind of linden", "pln": ["(: cnet_isa_0054179f58 (IsA american_basswood linden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american beech is a kind of beech", "pln": ["(: cnet_isa_33ae239597 (IsA american_beech beech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american bison is a kind of bison", "pln": ["(: cnet_isa_82b487dd18 (IsA american_bison bison) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american bittern is a kind of bittern", "pln": ["(: cnet_isa_af5117c26f (IsA american_bittern bittern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american black bear is a kind of bear", "pln": ["(: cnet_isa_e559ffbb73 (IsA american_black_bear bear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american bog asphodel is a kind of bog asphodel", "pln": ["(: cnet_isa_ce8b8e39b2 (IsA american_bog_asphodel bog_asphodel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american bugbane is a kind of bugbane", "pln": ["(: cnet_isa_c29dc1602e (IsA american_bugbane bugbane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american chameleon is a kind of iguanid", "pln": ["(: cnet_isa_3f48eec96d (IsA american_chameleon iguanid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american chestnut is a kind of chestnut", "pln": ["(: cnet_isa_43dc8b7404 (IsA american_chestnut chestnut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american cockroach is a kind of cockroach", "pln": ["(: cnet_isa_23252bb4d5 (IsA american_cockroach cockroach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american coot is a kind of coot", "pln": ["(: cnet_isa_b55e3fd928 (IsA american_coot coot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american copper is a kind of copper", "pln": ["(: cnet_isa_1c56abaf95 (IsA american_copper copper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "american crab apple is a kind of wild apple", "pln": ["(: cnet_isa_3f05d3a7bf (IsA american_crab_apple wild_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american cranberry is a kind of cranberry", "pln": ["(: cnet_isa_a2ccc8f354 (IsA american_cranberry cranberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american crayfish is a kind of crayfish", "pln": ["(: cnet_isa_abc1c87ed9 (IsA american_crayfish crayfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american crow is a kind of crow", "pln": ["(: cnet_isa_a8bd41e388 (IsA american_crow crow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american dewberry is a kind of dewberry", "pln": ["(: cnet_isa_7796721d21 (IsA american_dewberry dewberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american dog violet is a kind of violet", "pln": ["(: cnet_isa_a32c559e35 (IsA american_dog_violet violet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american dream is a kind of ambition", "pln": ["(: cnet_isa_ba4946a645 (IsA american_dream ambition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american egret is a kind of egret", "pln": ["(: cnet_isa_0b818baaea (IsA american_egret egret) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american elder is a kind of elder", "pln": ["(: cnet_isa_5864d43fd2 (IsA american_elder elder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american elm is a kind of elm", "pln": ["(: cnet_isa_9a82acffe1 (IsA american_elm elm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "american english is a kind of english", "pln": ["(: cnet_isa_4b9f713035 (IsA american_english english) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "american federation of labor and congress of industrial organizations is a kind of federation", "pln": ["(: cnet_isa_87c20a86dd (IsA american_federation_of_labor_and_congress_of_industrial_organizations federation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american federation of labor is a kind of federation", "pln": ["(: cnet_isa_6a97f06a68 (IsA american_federation_of_labor federation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american federation of labor and congress of industrial organization is a kind of federation", "pln": ["(: cnet_isa_71d656d7ab (IsA american_federation_of_labor_and_congress_of_industrial_organization federation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "american feverfew is a kind of subshrub", "pln": ["(: cnet_isa_b7a6d15f26 (IsA american_feverfew subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american flag is a kind of flag", "pln": ["(: cnet_isa_dd81d398bd (IsA american_flag flag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "american fly honeysuckle is a kind of honeysuckle", "pln": ["(: cnet_isa_40ad677cdc (IsA american_fly_honeysuckle honeysuckle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american flying squirrel is a kind of squirrel", "pln": ["(: cnet_isa_5949515cc6 (IsA american_flying_squirrel squirrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american football is a kind of brutal", "pln": ["(: cnet_isa_ae134a27fc (IsA american_football brutal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american football is a kind of different sport from football elsewhere", "pln": ["(: cnet_isa_d7ba353440 (IsA american_football different_sport_from_football_elsewhere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american football is a kind of football", "pln": ["(: cnet_isa_9d84296d92 (IsA american_football football) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american foxhound is a kind of foxhound", "pln": ["(: cnet_isa_5b1cba5eb3 (IsA american_foxhound foxhound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american frogbit is a kind of aquatic plant", "pln": ["(: cnet_isa_5c5f362968 (IsA american_frogbit aquatic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american gallinule is a kind of purple gallinule", "pln": ["(: cnet_isa_08d0be05af (IsA american_gallinule purple_gallinule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american germander is a kind of germander", "pln": ["(: cnet_isa_796dbd7f16 (IsA american_germander germander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american ginseng is a kind of herb", "pln": ["(: cnet_isa_baa9ca9caf (IsA american_ginseng herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american goldfinch is a kind of animal", "pln": ["(: cnet_isa_08ec2a9d91 (IsA american_goldfinch animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american goldfinch is a kind of bird", "pln": ["(: cnet_isa_3502a5cdb9 (IsA american_goldfinch bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american goldfinch is a kind of eukaryotic organism", "pln": ["(: cnet_isa_eefc505fb0 (IsA american_goldfinch eukaryotic_organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american green toad is a kind of true toad", "pln": ["(: cnet_isa_c418767424 (IsA american_green_toad true_toad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "american hackberry is a kind of hackberry", "pln": ["(: cnet_isa_4309590319 (IsA american_hackberry hackberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american harvest mouse is a kind of new world mouse", "pln": ["(: cnet_isa_6cf9dd77f4 (IsA american_harvest_mouse new_world_mouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american hazel is a kind of hazelnut", "pln": ["(: cnet_isa_d837093f05 (IsA american_hazel hazelnut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american holly is a kind of holly", "pln": ["(: cnet_isa_cd58c30434 (IsA american_holly holly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american holly is a kind of poisonous plant", "pln": ["(: cnet_isa_cf44e758ee (IsA american_holly poisonous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american hop is a kind of hop", "pln": ["(: cnet_isa_7634e8f1ef (IsA american_hop hop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american hornbeam is a kind of hornbeam", "pln": ["(: cnet_isa_c932fc5745 (IsA american_hornbeam hornbeam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "american indian day is a kind of day", "pln": ["(: cnet_isa_e81d3b4f67 (IsA american_indian_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american labor party is a kind of party", "pln": ["(: cnet_isa_768f310fd0 (IsA american_labor_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american lady crab is a kind of swimming crab", "pln": ["(: cnet_isa_c18e2fa65a (IsA american_lady_crab swimming_crab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american larch is a kind of larch", "pln": ["(: cnet_isa_c9292d2f22 (IsA american_larch larch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american legion is a kind of association", "pln": ["(: cnet_isa_d5f447f080 (IsA american_legion association) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american lobster is a kind of true lobster", "pln": ["(: cnet_isa_4fdae18896 (IsA american_lobster true_lobster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "american lobster is a kind of lobster", "pln": ["(: cnet_isa_45e30c3903 (IsA american_lobster lobster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american magpie is a kind of magpie", "pln": ["(: cnet_isa_f4c612c022 (IsA american_magpie magpie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american maidenhair fern is a kind of maidenhair", "pln": ["(: cnet_isa_a87d6b9f29 (IsA american_maidenhair_fern maidenhair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american marten is a kind of marten", "pln": ["(: cnet_isa_a8580c4a3d (IsA american_marten marten) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american mastodon is a kind of mastodon", "pln": ["(: cnet_isa_db65853525 (IsA american_mastodon mastodon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american merganser is a kind of merganser", "pln": ["(: cnet_isa_e026b983e4 (IsA american_merganser merganser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american mink is a kind of mink", "pln": ["(: cnet_isa_b9e83bec2e (IsA american_mink mink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "american mistletoe is a kind of mistletoe", "pln": ["(: cnet_isa_108724aee8 (IsA american_mistletoe mistletoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american mistletoe is a kind of parasitic plant", "pln": ["(: cnet_isa_18da9517ef (IsA american_mistletoe parasitic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "american mountain ash is a kind of mountain ash", "pln": ["(: cnet_isa_be1737ba7e (IsA american_mountain_ash mountain_ash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american oil palm is a kind of oil palm", "pln": ["(: cnet_isa_04b512a6f0 (IsA american_oil_palm oil_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "american organ is a kind of free reed instrument", "pln": ["(: cnet_isa_1b8615c265 (IsA american_organ free_reed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american parasol is a kind of lepiota", "pln": ["(: cnet_isa_02a37965df (IsA american_parasol lepiota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american party is a kind of party", "pln": ["(: cnet_isa_3fc198b7fa (IsA american_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american pasqueflower is a kind of pasqueflower", "pln": ["(: cnet_isa_3dfdaa478a (IsA american_pasqueflower pasqueflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american persimmon is a kind of persimmon", "pln": ["(: cnet_isa_5793cb8dc4 (IsA american_persimmon persimmon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american plaice is a kind of righteye flounder", "pln": ["(: cnet_isa_ecc41ba05c (IsA american_plaice righteye_flounder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american plan is a kind of hotel plan", "pln": ["(: cnet_isa_866a18157e (IsA american_plan hotel_plan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "american quaking aspen is a kind of aspen", "pln": ["(: cnet_isa_19796966ed (IsA american_quaking_aspen aspen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american raspberry is a kind of red raspberry", "pln": ["(: cnet_isa_3c0bfdac25 (IsA american_raspberry red_raspberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american rattlebox is a kind of crotalaria", "pln": ["(: cnet_isa_c3d582b0f4 (IsA american_rattlebox crotalaria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american red elder is a kind of elder", "pln": ["(: cnet_isa_6e34587334 (IsA american_red_elder elder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american red plum is a kind of wild plum", "pln": ["(: cnet_isa_df72588012 (IsA american_red_plum wild_plum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american red squirrel is a kind of tree squirrel", "pln": ["(: cnet_isa_d2139cae79 (IsA american_red_squirrel tree_squirrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american redstart is a kind of flycatching warbler", "pln": ["(: cnet_isa_ac569504ff (IsA american_redstart flycatching_warbler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american revolutionary leader is a kind of nationalist leader", "pln": ["(: cnet_isa_00865ff20c (IsA american_revolutionary_leader nationalist_leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american rock brake is a kind of rock brake", "pln": ["(: cnet_isa_83db28f8e3 (IsA american_rock_brake rock_brake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american saddle horse is a kind of saddle horse", "pln": ["(: cnet_isa_ddc4e7be2a (IsA american_saddle_horse saddle_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american shrew mole is a kind of shrew mole", "pln": ["(: cnet_isa_2d815526e3 (IsA american_shrew_mole shrew_mole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american smelt is a kind of smelt", "pln": ["(: cnet_isa_4bf8a42bcb (IsA american_smelt smelt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american smokewood is a kind of smoke tree", "pln": ["(: cnet_isa_48696a9111 (IsA american_smokewood smoke_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american smooth dogfish is a kind of smooth dogfish", "pln": ["(: cnet_isa_729e9040f7 (IsA american_smooth_dogfish smooth_dogfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american spikenard is a kind of subshrub", "pln": ["(: cnet_isa_e1bb42a89d (IsA american_spikenard subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american staffordshire terrier is a kind of bullterrier", "pln": ["(: cnet_isa_9bff479f52 (IsA american_staffordshire_terrier bullterrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american standard code for information interchange is a kind of code", "pln": ["(: cnet_isa_f853887727 (IsA american_standard_code_for_information_interchange code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american star grass is a kind of star grass", "pln": ["(: cnet_isa_0cfe774073 (IsA american_star_grass star_grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american state is a kind of state", "pln": ["(: cnet_isa_ab23085e3e (IsA american_state state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "american sycamore is a kind of plane tree", "pln": ["(: cnet_isa_819c94f716 (IsA american_sycamore plane_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american toad is a kind of true toad", "pln": ["(: cnet_isa_eafc4383d9 (IsA american_toad true_toad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american turkey oak is a kind of oak", "pln": ["(: cnet_isa_3d12fd8d59 (IsA american_turkey_oak oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american twinflower is a kind of twinflower", "pln": ["(: cnet_isa_b3a67d8089 (IsA american_twinflower twinflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american water ouzel is a kind of water ouzel", "pln": ["(: cnet_isa_451e37d765 (IsA american_water_ouzel water_ouzel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american water shrew is a kind of water shrew", "pln": ["(: cnet_isa_f3548e53d8 (IsA american_water_shrew water_shrew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american water spaniel is a kind of water spaniel", "pln": ["(: cnet_isa_728b05aec7 (IsA american_water_spaniel water_spaniel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "american watercress is a kind of watercress", "pln": ["(: cnet_isa_33550bbb9e (IsA american_watercress watercress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "american white birch is a kind of birch", "pln": ["(: cnet_isa_cbc107aff6 (IsA american_white_birch birch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american white oak is a kind of white oak", "pln": ["(: cnet_isa_3ea82bc06e (IsA american_white_oak white_oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american white pine is a kind of white pine", "pln": ["(: cnet_isa_8d254bd7e5 (IsA american_white_pine white_pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american widgeon is a kind of widgeon", "pln": ["(: cnet_isa_068ac7ce22 (IsA american_widgeon widgeon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "american wistaria is a kind of wisteria", "pln": ["(: cnet_isa_9ed5c7b185 (IsA american_wistaria wisteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american woodcock is a kind of woodcock", "pln": ["(: cnet_isa_243a091b20 (IsA american_woodcock woodcock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american wormseed is a kind of goosefoot", "pln": ["(: cnet_isa_97b2aa7dee (IsA american_wormseed goosefoot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "americana is a kind of artifact", "pln": ["(: cnet_isa_225c922f17 (IsA americana artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "americanism is a kind of custom", "pln": ["(: cnet_isa_ee493fe9e5 (IsA americanism custom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "americanism is a kind of patriotism", "pln": ["(: cnet_isa_7b58ae92a3 (IsA americanism patriotism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "americanism is a kind of formulation", "pln": ["(: cnet_isa_0f04e7c066 (IsA americanism formulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "americanization is a kind of assimilation", "pln": ["(: cnet_isa_a64110775c (IsA americanization assimilation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "american is a kind of people", "pln": ["(: cnet_isa_48d4f86864 (IsA american people) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "americium is a kind of metallic element", "pln": ["(: cnet_isa_b730f240fc (IsA americium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amerind is a kind of natural language", "pln": ["(: cnet_isa_2c96ced557 (IsA amerind natural_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amethyst is a kind of quartz", "pln": ["(: cnet_isa_91d52f3c95 (IsA amethyst quartz) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amethyst is a kind of transparent gem", "pln": ["(: cnet_isa_3a20675113 (IsA amethyst transparent_gem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amethystine python is a kind of python", "pln": ["(: cnet_isa_19c63bbef4 (IsA amethystine_python python) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ametria is a kind of birth defect", "pln": ["(: cnet_isa_3541da73cf (IsA ametria birth_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ametropia is a kind of visual impairment", "pln": ["(: cnet_isa_b0223049d1 (IsA ametropia visual_impairment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amhara is a kind of ethiopian", "pln": ["(: cnet_isa_be5b7a0c3f (IsA amhara ethiopian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amharic is a kind of semitic", "pln": ["(: cnet_isa_e80b770088 (IsA amharic semitic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amia is a kind of fish genus", "pln": ["(: cnet_isa_f5c7479ee4 (IsA amia fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "amianthum is a kind of liliid monocot genus", "pln": ["(: cnet_isa_b32bbee6b8 (IsA amianthum liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amicability is a kind of friendliness", "pln": ["(: cnet_isa_5dc1123de9 (IsA amicability friendliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amicus curiae is a kind of adviser", "pln": ["(: cnet_isa_682d53a839 (IsA amicus_curiae adviser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amicus curiae brief is a kind of brief", "pln": ["(: cnet_isa_f36cc3cf03 (IsA amicus_curiae_brief brief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amide is a kind of organic compound", "pln": ["(: cnet_isa_72c1999882 (IsA amide organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amiga is a kind of computer", "pln": ["(: cnet_isa_ea4a5c6386 (IsA amiga computer) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amigo is a kind of friend", "pln": ["(: cnet_isa_80b95fc46b (IsA amigo friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amiidae is a kind of fish family", "pln": ["(: cnet_isa_01f7cca209 (IsA amiidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amine is a kind of methane sery", "pln": ["(: cnet_isa_3ebc5f35b7 (IsA amine methane_sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amino is a kind of group", "pln": ["(: cnet_isa_b8549177e8 (IsA amino group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amino acid is a kind of organic compound", "pln": ["(: cnet_isa_45410e174c (IsA amino_acid organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amino plastic is a kind of plastic", "pln": ["(: cnet_isa_dcd72a1c33 (IsA amino_plastic plastic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aminoaciduria is a kind of symptom", "pln": ["(: cnet_isa_731fc6433e (IsA aminoaciduria symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aminobenzoic acid is a kind of acid", "pln": ["(: cnet_isa_008d1e125f (IsA aminobenzoic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aminomethane is a kind of methyl", "pln": ["(: cnet_isa_8e7be3599d (IsA aminomethane methyl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "aminophylline is a kind of bronchodilator", "pln": ["(: cnet_isa_5f008d8ab0 (IsA aminophylline bronchodilator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aminopyrine is a kind of analgesic", "pln": ["(: cnet_isa_67a0602815 (IsA aminopyrine analgesic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amish is a kind of mennonite", "pln": ["(: cnet_isa_7387f51704 (IsA amish mennonite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amish sect is a kind of sect", "pln": ["(: cnet_isa_eefc741e36 (IsA amish_sect sect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amitosis is a kind of cell division", "pln": ["(: cnet_isa_df6d133aa5 (IsA amitosis cell_division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amity is a kind of friendliness", "pln": ["(: cnet_isa_7fcb104e23 (IsA amity friendliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amity is a kind of peace", "pln": ["(: cnet_isa_b6fcfb0eb8 (IsA amity peace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ammeter is a kind of meter", "pln": ["(: cnet_isa_de95ec5556 (IsA ammeter meter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ammine is a kind of compound", "pln": ["(: cnet_isa_47ad451586 (IsA ammine compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ammobium is a kind of flower", "pln": ["(: cnet_isa_c69d7a57a0 (IsA ammobium flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ammodyte is a kind of fish genus", "pln": ["(: cnet_isa_6280336e82 (IsA ammodyte fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ammodytidae is a kind of fish family", "pln": ["(: cnet_isa_bad1ef39d4 (IsA ammodytidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ammonia is a kind of binary compound", "pln": ["(: cnet_isa_5065bbf4ec (IsA ammonia binary_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ammonia clock is a kind of atomic clock", "pln": ["(: cnet_isa_fcda3b0857 (IsA ammonia_clock atomic_clock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ammonia water is a kind of liquid", "pln": ["(: cnet_isa_33d8c943a8 (IsA ammonia_water liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ammoniac is a kind of gum", "pln": ["(: cnet_isa_ab3a9f1302 (IsA ammoniac gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ammonification is a kind of permeation", "pln": ["(: cnet_isa_108b3a7bfb (IsA ammonification permeation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ammonite is a kind of fossil", "pln": ["(: cnet_isa_86952a4fcc (IsA ammonite fossil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ammonium is a kind of ammonia", "pln": ["(: cnet_isa_9ab3ae157f (IsA ammonium ammonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ammonium carbamate is a kind of carbamate", "pln": ["(: cnet_isa_489fc7c986 (IsA ammonium_carbamate carbamate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ammonium carbonate is a kind of carbonate", "pln": ["(: cnet_isa_4e39082269 (IsA ammonium_carbonate carbonate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ammonium chloride is a kind of salt", "pln": ["(: cnet_isa_2e206c599e (IsA ammonium_chloride salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ammonium nitrate is a kind of nitrate", "pln": ["(: cnet_isa_3bcfa6b4da (IsA ammonium_nitrate nitrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ammoniuria is a kind of symptom", "pln": ["(: cnet_isa_a4853832bc (IsA ammoniuria symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ammotragus is a kind of mammal genus", "pln": ["(: cnet_isa_8357cee7be (IsA ammotragus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ammunition is a kind of weaponry", "pln": ["(: cnet_isa_694001e27e (IsA ammunition weaponry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ammunition is a kind of information", "pln": ["(: cnet_isa_e579bd5ee8 (IsA ammunition information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ammunition is a kind of material", "pln": ["(: cnet_isa_7be35079f5 (IsA ammunition material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amnesia is a kind of cognitive state", "pln": ["(: cnet_isa_3cb563dcf6 (IsA amnesia cognitive_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amnesic is a kind of handicapped person", "pln": ["(: cnet_isa_6effbb93c2 (IsA amnesic handicapped_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amnesty is a kind of clemency", "pln": ["(: cnet_isa_46912f1ec9 (IsA amnesty clemency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amnesty is a kind of exemption", "pln": ["(: cnet_isa_9c425540f0 (IsA amnesty exemption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amniocentesis is a kind of centesis", "pln": ["(: cnet_isa_a41bcde07b (IsA amniocentesis centesis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amniocentesis is a kind of prenatal diagnosis", "pln": ["(: cnet_isa_afda74e88a (IsA amniocentesis prenatal_diagnosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amnion is a kind of sac", "pln": ["(: cnet_isa_347904cd42 (IsA amnion sac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amniota is a kind of vertebrate", "pln": ["(: cnet_isa_8a64c75bde (IsA amniota vertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amniote is a kind of vertebrate", "pln": ["(: cnet_isa_80e1631481 (IsA amniote vertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amniotic cavity is a kind of cavity", "pln": ["(: cnet_isa_8389f63576 (IsA amniotic_cavity cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amniotic fluid is a kind of liquid body substance", "pln": ["(: cnet_isa_9890fc2bcd (IsA amniotic_fluid liquid_body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "amobarbital is a kind of barbiturate", "pln": ["(: cnet_isa_b35c584a00 (IsA amobarbital barbiturate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amobarbital is a kind of truth serum", "pln": ["(: cnet_isa_efbb4330c9 (IsA amobarbital truth_serum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amobarbital sodium is a kind of amobarbital", "pln": ["(: cnet_isa_72973f689a (IsA amobarbital_sodium amobarbital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amoebida is a kind of animal order", "pln": ["(: cnet_isa_975045a218 (IsA amoebida animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "amontillado is a kind of sherry", "pln": ["(: cnet_isa_80799f7f92 (IsA amontillado sherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amora is a kind of rabbi", "pln": ["(: cnet_isa_fff42f2ffe (IsA amora rabbi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amoralism is a kind of doctrine", "pln": ["(: cnet_isa_b7793c99db (IsA amoralism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amoralist is a kind of disciple", "pln": ["(: cnet_isa_dbe6dac881 (IsA amoralist disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amorality is a kind of quality", "pln": ["(: cnet_isa_3fb2e14725 (IsA amorality quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amorist is a kind of fan", "pln": ["(: cnet_isa_77b906893d (IsA amorist fan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amorousness is a kind of love", "pln": ["(: cnet_isa_02bfa0404f (IsA amorousness love) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "amorousness is a kind of sexual desire", "pln": ["(: cnet_isa_5e26204c92 (IsA amorousness sexual_desire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "amorpha is a kind of shrub", "pln": ["(: cnet_isa_4a14d22893 (IsA amorpha shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amorphophallus is a kind of arum", "pln": ["(: cnet_isa_22342ef448 (IsA amorphophallus arum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amorphous shape is a kind of shape", "pln": ["(: cnet_isa_c6bfff9158 (IsA amorphous_shape shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amortization is a kind of decrease", "pln": ["(: cnet_isa_1b8bedbd36 (IsA amortization decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amortization is a kind of payment", "pln": ["(: cnet_isa_8cf306c1b3 (IsA amortization payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amount is a kind of magnitude", "pln": ["(: cnet_isa_4cdea812a5 (IsA amount magnitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amour propre is a kind of pride", "pln": ["(: cnet_isa_96fc2a6791 (IsA amour_propre pride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amperage is a kind of electrical phenomenon", "pln": ["(: cnet_isa_29b6d503b2 (IsA amperage electrical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ampere is a kind of current unit", "pln": ["(: cnet_isa_cf489f0962 (IsA ampere current_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ampere hour is a kind of charge unit", "pln": ["(: cnet_isa_ac2e2d1e73 (IsA ampere_hour charge_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ampere minute is a kind of charge unit", "pln": ["(: cnet_isa_3d3b416eb6 (IsA ampere_minute charge_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ampere turn is a kind of magnetomotive force unit", "pln": ["(: cnet_isa_7d931ce468 (IsA ampere_turn magnetomotive_force_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ampersand is a kind of punctuation", "pln": ["(: cnet_isa_676740ee89 (IsA ampersand punctuation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphetamine is a kind of drug of abuse", "pln": ["(: cnet_isa_2d8737ee49 (IsA amphetamine drug_of_abuse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphetamine is a kind of stimulant", "pln": ["(: cnet_isa_39f1de4603 (IsA amphetamine stimulant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphetamine sulfate is a kind of amphetamine", "pln": ["(: cnet_isa_355e6291d4 (IsA amphetamine_sulfate amphetamine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "amphibia is a kind of class", "pln": ["(: cnet_isa_9751b7793e (IsA amphibia class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphibian is a kind of vertebrate", "pln": ["(: cnet_isa_4f4d94d3c7 (IsA amphibian vertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphibian is a kind of airplane", "pln": ["(: cnet_isa_03b631eb59 (IsA amphibian airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphibian is a kind of motor vehicle", "pln": ["(: cnet_isa_16382fc30e (IsA amphibian motor_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphibian family is a kind of family", "pln": ["(: cnet_isa_dabc114892 (IsA amphibian_family family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphibian genus is a kind of genus", "pln": ["(: cnet_isa_8d425349da (IsA amphibian_genus genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphibious assault is a kind of amphibious operation", "pln": ["(: cnet_isa_edb900c256 (IsA amphibious_assault amphibious_operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphibious demonstration is a kind of amphibious operation", "pln": ["(: cnet_isa_b8f5f2e1d3 (IsA amphibious_demonstration amphibious_operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphibious landing is a kind of landing", "pln": ["(: cnet_isa_4adf7cc018 (IsA amphibious_landing landing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphibious landing is a kind of military action", "pln": ["(: cnet_isa_754e8a5968 (IsA amphibious_landing military_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphibious operation is a kind of operation", "pln": ["(: cnet_isa_9374d99253 (IsA amphibious_operation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphibole is a kind of mineral", "pln": ["(: cnet_isa_2d42be98a6 (IsA amphibole mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphibole group is a kind of mineral", "pln": ["(: cnet_isa_703e92cc76 (IsA amphibole_group mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphibolip is a kind of arthropod genus", "pln": ["(: cnet_isa_e1b2ca6ec9 (IsA amphibolip arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphibolite is a kind of metamorphic rock", "pln": ["(: cnet_isa_482a2b81bb (IsA amphibolite metamorphic_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphibology is a kind of ambiguity", "pln": ["(: cnet_isa_97994116db (IsA amphibology ambiguity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphibrach is a kind of metrical foot", "pln": ["(: cnet_isa_6d27c75fff (IsA amphibrach metrical_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "amphicarpaea is a kind of rosid dicot genus", "pln": ["(: cnet_isa_35ef5ecb8f (IsA amphicarpaea rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphictyony is a kind of political unit", "pln": ["(: cnet_isa_5c4d30cd6a (IsA amphictyony political_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "amphidiploid is a kind of organism", "pln": ["(: cnet_isa_894e3a423d (IsA amphidiploid organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphidiploidy is a kind of condition", "pln": ["(: cnet_isa_516fe32a46 (IsA amphidiploidy condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "amphigory is a kind of nonsense", "pln": ["(: cnet_isa_a1f7a478ec (IsA amphigory nonsense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphimixis is a kind of union", "pln": ["(: cnet_isa_6a19d0d69d (IsA amphimixis union) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphineura is a kind of class", "pln": ["(: cnet_isa_c728ad458a (IsA amphineura class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphioxidae is a kind of chordate family", "pln": ["(: cnet_isa_7ba9c6aa0c (IsA amphioxidae chordate_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphipod is a kind of malacostracan crustacean", "pln": ["(: cnet_isa_3bafbd643c (IsA amphipod malacostracan_crustacean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphipoda is a kind of animal order", "pln": ["(: cnet_isa_fb48f20138 (IsA amphipoda animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphiprion is a kind of fish genus", "pln": ["(: cnet_isa_fb9638af2e (IsA amphiprion fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphisbaena is a kind of reptile genus", "pln": ["(: cnet_isa_35b6588f7b (IsA amphisbaena reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphisbaena is a kind of mythical monster", "pln": ["(: cnet_isa_fe9c9a969a (IsA amphisbaena mythical_monster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphisbaenidae is a kind of reptile family", "pln": ["(: cnet_isa_61b601b6b7 (IsA amphisbaenidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphitheater is a kind of stadium", "pln": ["(: cnet_isa_0bfb6355e9 (IsA amphitheater stadium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphitheater is a kind of gallery", "pln": ["(: cnet_isa_522d2b9660 (IsA amphitheater gallery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphitropous ovule is a kind of ovule", "pln": ["(: cnet_isa_002e0ecedb (IsA amphitropous_ovule ovule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphiuma is a kind of salamander", "pln": ["(: cnet_isa_ea41cf5a05 (IsA amphiuma salamander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphiumidae is a kind of amphibian family", "pln": ["(: cnet_isa_e5d2733c8f (IsA amphiumidae amphibian_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amphora is a kind of jar", "pln": ["(: cnet_isa_a8b56b8d30 (IsA amphora jar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "amphotericin is a kind of antibiotic", "pln": ["(: cnet_isa_6e6fd019f9 (IsA amphotericin antibiotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ampleness is a kind of largeness", "pln": ["(: cnet_isa_028e99110d (IsA ampleness largeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ampleness is a kind of sufficiency", "pln": ["(: cnet_isa_2a28efc2bc (IsA ampleness sufficiency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amplexicaul leaf is a kind of leaf", "pln": ["(: cnet_isa_b10ff7cc33 (IsA amplexicaul_leaf leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amplification is a kind of expansion", "pln": ["(: cnet_isa_f0f9e56042 (IsA amplification expansion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "amplification is a kind of increase", "pln": ["(: cnet_isa_a567d0b26d (IsA amplification increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amplifier is a kind of electronic equipment", "pln": ["(: cnet_isa_1b4785ad6b (IsA amplifier electronic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amplitude is a kind of abundance", "pln": ["(: cnet_isa_ea1746962d (IsA amplitude abundance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amplitude is a kind of magnitude", "pln": ["(: cnet_isa_427c90ce95 (IsA amplitude magnitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amplitude is a kind of shift", "pln": ["(: cnet_isa_be8702a1b2 (IsA amplitude shift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amplitude level is a kind of degree", "pln": ["(: cnet_isa_50bcb31b8f (IsA amplitude_level degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amplitude modulation is a kind of modulation", "pln": ["(: cnet_isa_5b8c5a4b83 (IsA amplitude_modulation modulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ampulla is a kind of flask", "pln": ["(: cnet_isa_6053500ab3 (IsA ampulla flask) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ampulla is a kind of body part", "pln": ["(: cnet_isa_78d3c94818 (IsA ampulla body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amputation is a kind of operation", "pln": ["(: cnet_isa_36de0bdb62 (IsA amputation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amputation is a kind of disability", "pln": ["(: cnet_isa_20a4854e97 (IsA amputation disability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amputator is a kind of surgeon", "pln": ["(: cnet_isa_fdb880deb9 (IsA amputator surgeon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "amputee is a kind of unfortunate", "pln": ["(: cnet_isa_792c470e7c (IsA amputee unfortunate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "amsinckia is a kind of plant genus", "pln": ["(: cnet_isa_fd280a5364 (IsA amsinckia plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amsler grid is a kind of grid", "pln": ["(: cnet_isa_af0267a82b (IsA amsler_grid grid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amsonia is a kind of dicot genus", "pln": ["(: cnet_isa_747c229648 (IsA amsonia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amsterdam is a kind of in holland", "pln": ["(: cnet_isa_3af47a4a7a (IsA amsterdam in_holland) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amulet is a kind of charm", "pln": ["(: cnet_isa_d475d6241a (IsA amulet charm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amur privet is a kind of privet", "pln": ["(: cnet_isa_67bc30b791 (IsA amur_privet privet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amusement is a kind of delight", "pln": ["(: cnet_isa_10789f459a (IsA amusement delight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "amusement arcade is a kind of arcade", "pln": ["(: cnet_isa_bd9cbd7416 (IsA amusement_arcade arcade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amusement park is a kind of park", "pln": ["(: cnet_isa_25c8e24b24 (IsA amusement_park park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amygdala is a kind of basal ganglion", "pln": ["(: cnet_isa_e7b2c1907d (IsA amygdala basal_ganglion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amygdalaceae is a kind of dicot family", "pln": ["(: cnet_isa_3383441429 (IsA amygdalaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amygdalin is a kind of glucoside", "pln": ["(: cnet_isa_0192af006e (IsA amygdalin glucoside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amygdaloid is a kind of volcanic rock", "pln": ["(: cnet_isa_d6b61179de (IsA amygdaloid volcanic_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amygdalotomy is a kind of psychosurgery", "pln": ["(: cnet_isa_6dbc47c63d (IsA amygdalotomy psychosurgery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amygdalus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_b19353a86e (IsA amygdalus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "amyl is a kind of group", "pln": ["(: cnet_isa_e727f94b91 (IsA amyl group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amyl alcohol is a kind of alcohol", "pln": ["(: cnet_isa_2e2ffdcaa3 (IsA amyl_alcohol alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amyl nitrate is a kind of vasodilator", "pln": ["(: cnet_isa_39f88e1be4 (IsA amyl_nitrate vasodilator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "amylase is a kind of enzyme", "pln": ["(: cnet_isa_ffdb14edd3 (IsA amylase enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "amyloid is a kind of protein", "pln": ["(: cnet_isa_37b6fc7173 (IsA amyloid protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amyloid is a kind of starch", "pln": ["(: cnet_isa_41fcc806e8 (IsA amyloid starch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amyloid plaque is a kind of plaque", "pln": ["(: cnet_isa_86962679ba (IsA amyloid_plaque plaque) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amyloidosis is a kind of illness", "pln": ["(: cnet_isa_d879d50498 (IsA amyloidosis illness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amylolysis is a kind of chemical process", "pln": ["(: cnet_isa_6bad388f71 (IsA amylolysis chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amyotrophia is a kind of atrophy", "pln": ["(: cnet_isa_8568762508 (IsA amyotrophia atrophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amyotrophic lateral sclerosis is a kind of nervous disorder", "pln": ["(: cnet_isa_26e1857caa (IsA amyotrophic_lateral_sclerosis nervous_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amyotrophic lateral sclerosis is a kind of sclerosis", "pln": ["(: cnet_isa_f31f0e6874 (IsA amyotrophic_lateral_sclerosis sclerosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "amyxia is a kind of physiological state", "pln": ["(: cnet_isa_dfddb5ebca (IsA amyxia physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ana is a kind of collection", "pln": ["(: cnet_isa_e309729338 (IsA ana collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anabantidae is a kind of fish family", "pln": ["(: cnet_isa_e8f3c1f4da (IsA anabantidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anabaptism is a kind of protestantism", "pln": ["(: cnet_isa_ee91c86fce (IsA anabaptism protestantism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anabaptist is a kind of protestant", "pln": ["(: cnet_isa_8d17f8ad69 (IsA anabaptist protestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anabaptist denomination is a kind of protestant denomination", "pln": ["(: cnet_isa_6918e0a1ce (IsA anabaptist_denomination protestant_denomination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anaba is a kind of fish genus", "pln": ["(: cnet_isa_ea20120533 (IsA anaba fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anabiosis is a kind of suspended animation", "pln": ["(: cnet_isa_d11cc59f07 (IsA anabiosis suspended_animation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anabolic steroid is a kind of steroid hormone", "pln": ["(: cnet_isa_234053dd46 (IsA anabolic_steroid steroid_hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anabolism is a kind of assimilation", "pln": ["(: cnet_isa_48d76cec33 (IsA anabolism assimilation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anabrus is a kind of arthropod genus", "pln": ["(: cnet_isa_49041db26c (IsA anabrus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anacanthini is a kind of animal order", "pln": ["(: cnet_isa_c854fa44c7 (IsA anacanthini animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anacardiaceae is a kind of dicot family", "pln": ["(: cnet_isa_4f12f699cd (IsA anacardiaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anacardium is a kind of dicot genus", "pln": ["(: cnet_isa_0af16ea03d (IsA anacardium dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anachronism is a kind of artifact", "pln": ["(: cnet_isa_0447800241 (IsA anachronism artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anachronism is a kind of person", "pln": ["(: cnet_isa_f392e73613 (IsA anachronism person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anachronism is a kind of timekeeping", "pln": ["(: cnet_isa_ffc2c5bae2 (IsA anachronism timekeeping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anaclisis is a kind of relationship", "pln": ["(: cnet_isa_6238a1934a (IsA anaclisis relationship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anaclitic depression is a kind of depressive disorder", "pln": ["(: cnet_isa_7f7a8bd3c9 (IsA anaclitic_depression depressive_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anacoluthia is a kind of rhetorical device", "pln": ["(: cnet_isa_b83471c8d3 (IsA anacoluthia rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anaconda is a kind of snake", "pln": ["(: cnet_isa_10f2e800c3 (IsA anaconda snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anaconda is a kind of boa", "pln": ["(: cnet_isa_4055c050d3 (IsA anaconda boa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anacyclus is a kind of asterid dicot genus", "pln": ["(: cnet_isa_84122302b2 (IsA anacyclus asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anadama bread is a kind of bread", "pln": ["(: cnet_isa_df7ed33fe8 (IsA anadama_bread bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anadenanthera is a kind of rosid dicot genus", "pln": ["(: cnet_isa_f3f7e65daa (IsA anadenanthera rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anadenanthera colubrina is a kind of shrub", "pln": ["(: cnet_isa_bb0391f994 (IsA anadenanthera_colubrina shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anadiplosis is a kind of repetition", "pln": ["(: cnet_isa_f2a225c517 (IsA anadiplosis repetition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anaerobe is a kind of organism", "pln": ["(: cnet_isa_46a1f2147b (IsA anaerobe organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anagallis is a kind of dicot genus", "pln": ["(: cnet_isa_274565bb59 (IsA anagallis dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anagasta is a kind of arthropod genus", "pln": ["(: cnet_isa_b0ecf6acfc (IsA anagasta arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anaglyph is a kind of glyptic art", "pln": ["(: cnet_isa_400f4ebc48 (IsA anaglyph glyptic_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anaglyph is a kind of stereo", "pln": ["(: cnet_isa_b38ba3947a (IsA anaglyph stereo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anaglyphy is a kind of photography", "pln": ["(: cnet_isa_c4de1e9e91 (IsA anaglyphy photography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anagnost is a kind of clergyman", "pln": ["(: cnet_isa_751e446f7b (IsA anagnost clergyman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anagnost is a kind of holy order", "pln": ["(: cnet_isa_fd4aaf54d6 (IsA anagnost holy_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anagoge is a kind of interpretation", "pln": ["(: cnet_isa_50fbcecf72 (IsA anagoge interpretation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anagram is a kind of word", "pln": ["(: cnet_isa_36332366dd (IsA anagram word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anagram is a kind of word game", "pln": ["(: cnet_isa_918f09bbb6 (IsA anagram word_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anagyris is a kind of rosid dicot genus", "pln": ["(: cnet_isa_5c35e60dcf (IsA anagyris rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anal personality is a kind of personality", "pln": ["(: cnet_isa_f6f345bde1 (IsA anal_personality personality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anal sphincter is a kind of sphincter", "pln": ["(: cnet_isa_63a52f68b9 (IsA anal_sphincter sphincter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anal stage is a kind of phase", "pln": ["(: cnet_isa_f1913673ac (IsA anal_stage phase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "analbuminemia is a kind of blood disease", "pln": ["(: cnet_isa_269833cc12 (IsA analbuminemia blood_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "analect is a kind of excerpt", "pln": ["(: cnet_isa_4bca051372 (IsA analect excerpt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "analeptic is a kind of stimulant", "pln": ["(: cnet_isa_e34d87e3b2 (IsA analeptic stimulant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "analgesia is a kind of physiological state", "pln": ["(: cnet_isa_3306879345 (IsA analgesia physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "analgesic is a kind of medicine", "pln": ["(: cnet_isa_54d70694d3 (IsA analgesic medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "analog clock is a kind of clock", "pln": ["(: cnet_isa_f77df710bd (IsA analog_clock clock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "analog computer is a kind of computer", "pln": ["(: cnet_isa_86626c0ea3 (IsA analog_computer computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "analog watch is a kind of watch", "pln": ["(: cnet_isa_a4a4252b84 (IsA analog_watch watch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "analogist is a kind of reasoner", "pln": ["(: cnet_isa_9961be2a5d (IsA analogist reasoner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "analogue is a kind of similarity", "pln": ["(: cnet_isa_2f97badee0 (IsA analogue similarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "analogy is a kind of comparison", "pln": ["(: cnet_isa_80dbe00518 (IsA analogy comparison) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "analogy is a kind of inference", "pln": ["(: cnet_isa_babc45d62e (IsA analogy inference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "analphabet is a kind of illiterate", "pln": ["(: cnet_isa_ad51bf9def (IsA analphabet illiterate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "analysand is a kind of patient", "pln": ["(: cnet_isa_ca17c94235 (IsA analysand patient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "analysis is a kind of investigation", "pln": ["(: cnet_isa_d02e35f42e (IsA analysis investigation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "analysis is a kind of reasoning", "pln": ["(: cnet_isa_89d8f9e81a (IsA analysis reasoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "analysis is a kind of criticism", "pln": ["(: cnet_isa_2693753057 (IsA analysis criticism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "analysis is a kind of expressive style", "pln": ["(: cnet_isa_46f97a0a38 (IsA analysis expressive_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "analysis is a kind of calculus", "pln": ["(: cnet_isa_b8526316f6 (IsA analysis calculus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "analysis of variance is a kind of multivariate analysis", "pln": ["(: cnet_isa_eeab8a3883 (IsA analysis_of_variance multivariate_analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "analyst is a kind of expert", "pln": ["(: cnet_isa_bc12b7e3b6 (IsA analyst expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "analyst is a kind of psychiatrist", "pln": ["(: cnet_isa_a06e259eb2 (IsA analyst psychiatrist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "analytic geometry is a kind of geometry", "pln": ["(: cnet_isa_b8e2fbeb86 (IsA analytic_geometry geometry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "analytical balance is a kind of beam balance", "pln": ["(: cnet_isa_e626dbe54f (IsA analytical_balance beam_balance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "analytical cubism is a kind of cubism", "pln": ["(: cnet_isa_c49263becf (IsA analytical_cubism cubism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "analytical review is a kind of review", "pln": ["(: cnet_isa_4c8475c86d (IsA analytical_review review) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "analyticity is a kind of property", "pln": ["(: cnet_isa_537408a8c7 (IsA analyticity property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "analyzer is a kind of instrument", "pln": ["(: cnet_isa_ca77902fb8 (IsA analyzer instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anamnestic response is a kind of immune response", "pln": ["(: cnet_isa_daa7e099f5 (IsA anamnestic_response immune_response) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anamorphism is a kind of metamorphism", "pln": ["(: cnet_isa_894dc53c71 (IsA anamorphism metamorphism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anamorphosis is a kind of copy", "pln": ["(: cnet_isa_b586fc1dc4 (IsA anamorphosis copy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anamorphosis is a kind of evolution", "pln": ["(: cnet_isa_32936d3ba5 (IsA anamorphosis evolution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anana is a kind of monocot genus", "pln": ["(: cnet_isa_c5fc11803f (IsA anana monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anapest is a kind of metrical foot", "pln": ["(: cnet_isa_3c74dcf160 (IsA anapest metrical_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anaphalis is a kind of asterid dicot genus", "pln": ["(: cnet_isa_35a23d127a (IsA anaphalis asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anaphase is a kind of creation event", "pln": ["(: cnet_isa_5eac528383 (IsA anaphase creation_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anaphase is a kind of iterated event scene", "pln": ["(: cnet_isa_78a40dfdd0 (IsA anaphase iterated_event_scene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anaphase is a kind of phase of cell division", "pln": ["(: cnet_isa_930b745632 (IsA anaphase phase_of_cell_division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anaphase cell is a kind of anucleated cell", "pln": ["(: cnet_isa_4d477e3915 (IsA anaphase_cell anucleated_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anaphase cell is a kind of cell undergoing meiosis", "pln": ["(: cnet_isa_f4afe89d07 (IsA anaphase_cell cell_undergoing_meiosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anaphase cell is a kind of eukaryotic cell", "pln": ["(: cnet_isa_1d55639d61 (IsA anaphase_cell eukaryotic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anaphor is a kind of word", "pln": ["(: cnet_isa_24cfddc2b3 (IsA anaphor word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anaphora is a kind of repetition", "pln": ["(: cnet_isa_0f2ac57e5e (IsA anaphora repetition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anaphoric pronoun is a kind of pronoun", "pln": ["(: cnet_isa_5eb487299d (IsA anaphoric_pronoun pronoun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anaphoric relation is a kind of grammatical relation", "pln": ["(: cnet_isa_61e0781d84 (IsA anaphoric_relation grammatical_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anaphrodisia is a kind of sexual desire", "pln": ["(: cnet_isa_aacd49e436 (IsA anaphrodisia sexual_desire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anaphylactic shock is a kind of anaphylaxis", "pln": ["(: cnet_isa_70a5fd19aa (IsA anaphylactic_shock anaphylaxis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anaphylaxis is a kind of hypersensitivity reaction", "pln": ["(: cnet_isa_d856f83461 (IsA anaphylaxis hypersensitivity_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anaplasia is a kind of dysplasia", "pln": ["(: cnet_isa_cd7633d700 (IsA anaplasia dysplasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anaplasmosis is a kind of animal disease", "pln": ["(: cnet_isa_e1b515828b (IsA anaplasmosis animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anapsid is a kind of reptile", "pln": ["(: cnet_isa_6e5ec00fd3 (IsA anapsid reptile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anapsida is a kind of class", "pln": ["(: cnet_isa_db724d8e4e (IsA anapsida class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anarchism is a kind of political ideology", "pln": ["(: cnet_isa_0029f806ea (IsA anarchism political_ideology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anarchism is a kind of visceral revolt", "pln": ["(: cnet_isa_9d2af4c213 (IsA anarchism visceral_revolt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anarchism is a kind of political orientation", "pln": ["(: cnet_isa_0c20fc3a52 (IsA anarchism political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anarchist is a kind of radical", "pln": ["(: cnet_isa_3daec32561 (IsA anarchist radical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anarchy is a kind of disorder", "pln": ["(: cnet_isa_e033ee0a99 (IsA anarchy disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anarhichadidae is a kind of fish family", "pln": ["(: cnet_isa_e640cb5aec (IsA anarhichadidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anarhicha is a kind of fish genus", "pln": ["(: cnet_isa_826c103d25 (IsA anarhicha fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anarthria is a kind of speech disorder", "pln": ["(: cnet_isa_9fbebcfa46 (IsA anarthria speech_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ana is a kind of bird genus", "pln": ["(: cnet_isa_1f3e0157a0 (IsA ana bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anasa is a kind of arthropod genus", "pln": ["(: cnet_isa_033456a303 (IsA anasa arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anasarca is a kind of edema", "pln": ["(: cnet_isa_f5cc0516eb (IsA anasarca edema) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anasazi is a kind of native american", "pln": ["(: cnet_isa_b952c46852 (IsA anasazi native_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "anastigmatic lens is a kind of lens", "pln": ["(: cnet_isa_52f3980e8c (IsA anastigmatic_lens lens) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anaspid is a kind of jawless vertebrate", "pln": ["(: cnet_isa_c2382f1042 (IsA anaspid jawless_vertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anaspida is a kind of animal order", "pln": ["(: cnet_isa_f47061bda5 (IsA anaspida animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anastalsis is a kind of bodily process", "pln": ["(: cnet_isa_3845cc78d8 (IsA anastalsis bodily_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anastatica is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_b010a33ee7 (IsA anastatica dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anastigmat is a kind of len", "pln": ["(: cnet_isa_dec15d6f9f (IsA anastigmat len) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anastigmatic len is a kind of len", "pln": ["(: cnet_isa_ebcb3e9f71 (IsA anastigmatic_len len) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anastomosis is a kind of junction", "pln": ["(: cnet_isa_745d8d1f7b (IsA anastomosis junction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anastomotic vein is a kind of vein", "pln": ["(: cnet_isa_1fd46525e0 (IsA anastomotic_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anastomus is a kind of bird genus", "pln": ["(: cnet_isa_2eb215c007 (IsA anastomus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anastrophe is a kind of rhetorical device", "pln": ["(: cnet_isa_b129f609c6 (IsA anastrophe rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anastylosis is a kind of reassembly", "pln": ["(: cnet_isa_e1a9419a56 (IsA anastylosis reassembly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anathema is a kind of execration", "pln": ["(: cnet_isa_22c14b69fd (IsA anathema execration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anathema is a kind of unpleasant person", "pln": ["(: cnet_isa_ee44383a66 (IsA anathema unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anathematization is a kind of banishment", "pln": ["(: cnet_isa_b6fbdfa93c (IsA anathematization banishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anatidae is a kind of bird family", "pln": ["(: cnet_isa_70c097ae2c (IsA anatidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anatolian is a kind of indo european", "pln": ["(: cnet_isa_0137349e0a (IsA anatolian indo_european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anatomical reference is a kind of saying", "pln": ["(: cnet_isa_24764b0a41 (IsA anatomical_reference saying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anatomist is a kind of expert", "pln": ["(: cnet_isa_f487c92de5 (IsA anatomist expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anatomy is a kind of science", "pln": ["(: cnet_isa_91880335c5 (IsA anatomy science) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anatomy is a kind of analysis", "pln": ["(: cnet_isa_6528591909 (IsA anatomy analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anatomy is a kind of morphology", "pln": ["(: cnet_isa_40fe85652a (IsA anatomy morphology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anatotitan is a kind of hadrosaur", "pln": ["(: cnet_isa_25ae787cce (IsA anatotitan hadrosaur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anatoxin is a kind of antigen", "pln": ["(: cnet_isa_047c52788c (IsA anatoxin antigen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anatoxin is a kind of bacterial toxin", "pln": ["(: cnet_isa_78cf4d2747 (IsA anatoxin bacterial_toxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anatropous ovule is a kind of ovule", "pln": ["(: cnet_isa_352f03c17a (IsA anatropous_ovule ovule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ancestor is a kind of relative", "pln": ["(: cnet_isa_e6972f6264 (IsA ancestor relative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ancestor worship is a kind of worship", "pln": ["(: cnet_isa_cb75b3eaba (IsA ancestor_worship worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ancestress is a kind of ancestor", "pln": ["(: cnet_isa_c851a0b549 (IsA ancestress ancestor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ancestry is a kind of inheritance", "pln": ["(: cnet_isa_4827b6ce7c (IsA ancestry inheritance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anchor is a kind of hook", "pln": ["(: cnet_isa_837fdfe167 (IsA anchor hook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anchor is a kind of support", "pln": ["(: cnet_isa_8b399b366e (IsA anchor support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anchor is a kind of television reporter", "pln": ["(: cnet_isa_4850620fa3 (IsA anchor television_reporter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anchor chain is a kind of chain", "pln": ["(: cnet_isa_d84be0c61a (IsA anchor_chain chain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anchor light is a kind of light", "pln": ["(: cnet_isa_da32b29f23 (IsA anchor_light light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anchorage is a kind of arrival", "pln": ["(: cnet_isa_c9cc03d382 (IsA anchorage arrival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anchorage is a kind of area", "pln": ["(: cnet_isa_5aeeec033f (IsA anchorage area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anchorage is a kind of fee", "pln": ["(: cnet_isa_3b632df940 (IsA anchorage fee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anchorage is a kind of condition", "pln": ["(: cnet_isa_90c8b16ef7 (IsA anchorage condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anchorite is a kind of eremite", "pln": ["(: cnet_isa_e586603cd9 (IsA anchorite eremite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anchovy is a kind of soft finned fish", "pln": ["(: cnet_isa_d9d663f312 (IsA anchovy soft_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anchovy is a kind of fish", "pln": ["(: cnet_isa_ed029f0a33 (IsA anchovy fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anchovy butter is a kind of spread", "pln": ["(: cnet_isa_e0ac2dafba (IsA anchovy_butter spread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anchovy dressing is a kind of dressing", "pln": ["(: cnet_isa_4217e6572a (IsA anchovy_dressing dressing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anchovy paste is a kind of flavorer", "pln": ["(: cnet_isa_3a9f637ad3 (IsA anchovy_paste flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anchovy pear is a kind of edible fruit", "pln": ["(: cnet_isa_74e6f99911 (IsA anchovy_pear edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anchovy pear is a kind of fruit tree", "pln": ["(: cnet_isa_4294475e4e (IsA anchovy_pear fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anchovy pizza is a kind of pizza", "pln": ["(: cnet_isa_1cce5eee25 (IsA anchovy_pizza pizza) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anchovy sauce is a kind of sauce", "pln": ["(: cnet_isa_d4d18a597f (IsA anchovy_sauce sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anchusa is a kind of herb", "pln": ["(: cnet_isa_8bf395d75e (IsA anchusa herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ancien regime is a kind of government", "pln": ["(: cnet_isa_fcb6587d3e (IsA ancien_regime government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ancient is a kind of person", "pln": ["(: cnet_isa_b697188f1a (IsA ancient person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ancient greek is a kind of greek", "pln": ["(: cnet_isa_70a446a50d (IsA ancient_greek greek) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ancient history is a kind of common knowledge", "pln": ["(: cnet_isa_f18bcc16c6 (IsA ancient_history common_knowledge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ancient history is a kind of history", "pln": ["(: cnet_isa_c460efa796 (IsA ancient_history history) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ancient jewelry is a kind of artifact", "pln": ["(: cnet_isa_be057d7763 (IsA ancient_jewelry artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ancient pine is a kind of pine", "pln": ["(: cnet_isa_dcd38126fe (IsA ancient_pine pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ancientness is a kind of oldness", "pln": ["(: cnet_isa_ad97ec51f6 (IsA ancientness oldness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ancient is a kind of people", "pln": ["(: cnet_isa_b16af2e264 (IsA ancient people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anconeous muscle is a kind of skeletal muscle", "pln": ["(: cnet_isa_443783423b (IsA anconeous_muscle skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ancylidae is a kind of mollusk family", "pln": ["(: cnet_isa_d9be88362d (IsA ancylidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ancylostomatidae is a kind of worm family", "pln": ["(: cnet_isa_7014bf37c2 (IsA ancylostomatidae worm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ancylus is a kind of mollusk genus", "pln": ["(: cnet_isa_2101897234 (IsA ancylus mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "and circuit is a kind of gate", "pln": ["(: cnet_isa_61827cc6ef (IsA and_circuit gate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "andante is a kind of musical composition", "pln": ["(: cnet_isa_de0b18f451 (IsA andante musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "andante is a kind of passage", "pln": ["(: cnet_isa_cc36f05c3e (IsA andante passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "andante is a kind of tempo", "pln": ["(: cnet_isa_87d5a683ca (IsA andante tempo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "andean condor is a kind of condor", "pln": ["(: cnet_isa_c1e982c7ae (IsA andean_condor condor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "andesite is a kind of igneous rock", "pln": ["(: cnet_isa_ba27f47c5e (IsA andesite igneous_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "andira is a kind of rosid dicot genus", "pln": ["(: cnet_isa_1e38e9ad34 (IsA andira rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "andiron is a kind of support", "pln": ["(: cnet_isa_a1b9bd6d94 (IsA andiron support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "andreaeales is a kind of plant order", "pln": ["(: cnet_isa_7097259767 (IsA andreaeales plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "andorran is a kind of european", "pln": ["(: cnet_isa_12a3579eea (IsA andorran european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "andradite is a kind of garnet", "pln": ["(: cnet_isa_2774fa2191 (IsA andradite garnet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "andreaea is a kind of moss genus", "pln": ["(: cnet_isa_e6d891e23e (IsA andreaea moss_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "andreaeale is a kind of plant order", "pln": ["(: cnet_isa_6e7b3bed07 (IsA andreaeale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "andrena is a kind of bee", "pln": ["(: cnet_isa_e32b49f9a6 (IsA andrena bee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "andrenidae is a kind of arthropod family", "pln": ["(: cnet_isa_4bf88ee665 (IsA andrenidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "andricus is a kind of arthropod genus", "pln": ["(: cnet_isa_e4f1652e2d (IsA andricus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "androecium is a kind of gametoecium", "pln": ["(: cnet_isa_1303093c4c (IsA androecium gametoecium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "androgen is a kind of steroid hormone", "pln": ["(: cnet_isa_513224cccc (IsA androgen steroid_hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "androgenesis is a kind of parthenogenesis", "pln": ["(: cnet_isa_fd40d24cd8 (IsA androgenesis parthenogenesis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "androglossia is a kind of voice", "pln": ["(: cnet_isa_88d8a33839 (IsA androglossia voice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "androgyny is a kind of sex", "pln": ["(: cnet_isa_979c265435 (IsA androgyny sex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "android is a kind of automaton", "pln": ["(: cnet_isa_03d2b34767 (IsA android automaton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "andromeda is a kind of galaxy", "pln": ["(: cnet_isa_f1c4d2c828 (IsA andromeda galaxy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "andromeda is a kind of shrub", "pln": ["(: cnet_isa_aa751d03a5 (IsA andromeda shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "andromeda galaxy is a kind of spiral galaxy", "pln": ["(: cnet_isa_fca5e3b085 (IsA andromeda_galaxy spiral_galaxy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "androphobia is a kind of social phobia", "pln": ["(: cnet_isa_ff83a9f6cd (IsA androphobia social_phobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "andropogon is a kind of monocot genus", "pln": ["(: cnet_isa_ceb27a20e8 (IsA andropogon monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "androsterone is a kind of androgen", "pln": ["(: cnet_isa_18bd39d35a (IsA androsterone androgen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "androsterone is a kind of ketosteroid", "pln": ["(: cnet_isa_7e3f803f9f (IsA androsterone ketosteroid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "andryala is a kind of herb", "pln": ["(: cnet_isa_e8846cd791 (IsA andryala herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "andvari is a kind of gnome", "pln": ["(: cnet_isa_10b5436d13 (IsA andvari gnome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anecdote is a kind of report", "pln": ["(: cnet_isa_ba76154bc2 (IsA anecdote report) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anecdotist is a kind of narrator", "pln": ["(: cnet_isa_453dc76323 (IsA anecdotist narrator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anechoic chamber is a kind of room", "pln": ["(: cnet_isa_aee85a24c1 (IsA anechoic_chamber room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aneide is a kind of amphibian genus", "pln": ["(: cnet_isa_caf116efbb (IsA aneide amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anemia is a kind of fern genus", "pln": ["(: cnet_isa_c5f306fa68 (IsA anemia fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anemia is a kind of blood disease", "pln": ["(: cnet_isa_3e14fc6c3b (IsA anemia blood_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anemia is a kind of symptom", "pln": ["(: cnet_isa_bbde8dbe75 (IsA anemia symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anemic anoxia is a kind of anoxia", "pln": ["(: cnet_isa_0fdf7ae132 (IsA anemic_anoxia anoxia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anemic hypoxia is a kind of hypoxia", "pln": ["(: cnet_isa_b2e0e19508 (IsA anemic_hypoxia hypoxia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anemography is a kind of measurement", "pln": ["(: cnet_isa_0032c5f7b5 (IsA anemography measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anemometer is a kind of gauge", "pln": ["(: cnet_isa_63572702a8 (IsA anemometer gauge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anemometry is a kind of measurement", "pln": ["(: cnet_isa_5dba942937 (IsA anemometry measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anemone is a kind of flower", "pln": ["(: cnet_isa_b4c9f19021 (IsA anemone flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anemone fish is a kind of damselfish", "pln": ["(: cnet_isa_9988bce50e (IsA anemone_fish damselfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anemonella is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_0d91862d7a (IsA anemonella magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anemopsis is a kind of dicot genus", "pln": ["(: cnet_isa_2c5992bc95 (IsA anemopsis dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anencephaly is a kind of birth defect", "pln": ["(: cnet_isa_40463a485f (IsA anencephaly birth_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anergy is a kind of immunological disorder", "pln": ["(: cnet_isa_f6885945df (IsA anergy immunological_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anergy is a kind of inaction", "pln": ["(: cnet_isa_d4baa5e290 (IsA anergy inaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aneroid barometer is a kind of barometer", "pln": ["(: cnet_isa_e5eb385eff (IsA aneroid_barometer barometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anesthesia is a kind of physiological state", "pln": ["(: cnet_isa_46a3a71de8 (IsA anesthesia physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anesthesiologist is a kind of specialist", "pln": ["(: cnet_isa_70e9ee2dbf (IsA anesthesiologist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anesthesiology is a kind of medicine", "pln": ["(: cnet_isa_6f6fb6a650 (IsA anesthesiology medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anesthetic is a kind of drug", "pln": ["(: cnet_isa_207ab6e171 (IsA anesthetic drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anesthyl is a kind of local anesthetic", "pln": ["(: cnet_isa_d34b47d8c0 (IsA anesthyl local_anesthetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anestrus is a kind of physiological state", "pln": ["(: cnet_isa_60ee19f108 (IsA anestrus physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anethum is a kind of rosid dicot genus", "pln": ["(: cnet_isa_d0de1cbfaa (IsA anethum rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aneuploidy is a kind of abnormality", "pln": ["(: cnet_isa_d2bf41873c (IsA aneuploidy abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "aneurysm is a kind of cardiovascular disease", "pln": ["(: cnet_isa_a83cef5892 (IsA aneurysm cardiovascular_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anga is a kind of west chadic", "pln": ["(: cnet_isa_35bc791b0c (IsA anga west_chadic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angel s trumpet is a kind of shrub", "pln": ["(: cnet_isa_c1b7b3e625 (IsA angel_s_trumpet shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angel is a kind of patron", "pln": ["(: cnet_isa_76f382113a (IsA angel patron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angel is a kind of spiritual being", "pln": ["(: cnet_isa_de5b805f85 (IsA angel spiritual_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angel cake is a kind of sponge cake", "pln": ["(: cnet_isa_d638e8a66f (IsA angel_cake sponge_cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angel shark is a kind of shark", "pln": ["(: cnet_isa_f2ed4dd522 (IsA angel_shark shark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angel wing begonia is a kind of begonia", "pln": ["(: cnet_isa_9a6847cbb2 (IsA angel_wing_begonia begonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angelfish is a kind of butterfly fish", "pln": ["(: cnet_isa_c46e9f55bd (IsA angelfish butterfly_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angelica is a kind of flavorer", "pln": ["(: cnet_isa_3203debbee (IsA angelica flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angelica is a kind of herb", "pln": ["(: cnet_isa_a8bf95cfe8 (IsA angelica herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angelim is a kind of tree", "pln": ["(: cnet_isa_d75e8c66a3 (IsA angelim tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "angelology is a kind of theology", "pln": ["(: cnet_isa_2e767c08f2 (IsA angelology theology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angelus bell is a kind of bell", "pln": ["(: cnet_isa_60e2389b6d (IsA angelus_bell bell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anger is a kind of emotion", "pln": ["(: cnet_isa_55d57a3b7c (IsA anger emotion) (STV 1.0 0.9748))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anger is a kind of emotional arousal", "pln": ["(: cnet_isa_c9bf441cdc (IsA anger emotional_arousal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angevine is a kind of french person", "pln": ["(: cnet_isa_c6b68387dd (IsA angevine french_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angiitis is a kind of angiopathy", "pln": ["(: cnet_isa_79f9edc9f8 (IsA angiitis angiopathy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angiitis is a kind of inflammation", "pln": ["(: cnet_isa_2ff49afd09 (IsA angiitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angina is a kind of inflammatory disease", "pln": ["(: cnet_isa_06739a2c67 (IsA angina inflammatory_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "angina pectoris is a kind of heart disease", "pln": ["(: cnet_isa_8efb439a0e (IsA angina_pectoris heart_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angiocardiogram is a kind of roentgenogram", "pln": ["(: cnet_isa_3567a53690 (IsA angiocardiogram roentgenogram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angiocarp is a kind of angiosperm", "pln": ["(: cnet_isa_e38552926e (IsA angiocarp angiosperm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angiogenesis is a kind of growth", "pln": ["(: cnet_isa_3b68045119 (IsA angiogenesis growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angiogenesis inhibitor is a kind of medicine", "pln": ["(: cnet_isa_d2a18e382e (IsA angiogenesis_inhibitor medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angiogram is a kind of roentgenogram", "pln": ["(: cnet_isa_ee7f43b45c (IsA angiogram roentgenogram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angiography is a kind of roentgenography", "pln": ["(: cnet_isa_977174e650 (IsA angiography roentgenography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angiologist is a kind of doctor", "pln": ["(: cnet_isa_a20b5ca4ec (IsA angiologist doctor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angiology is a kind of medicine", "pln": ["(: cnet_isa_3bd64fe27c (IsA angiology medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angioma is a kind of angiopathy", "pln": ["(: cnet_isa_9bf3dde66c (IsA angioma angiopathy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angioma is a kind of tumor", "pln": ["(: cnet_isa_19754340da (IsA angioma tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angiopathy is a kind of pathology", "pln": ["(: cnet_isa_9c605bc509 (IsA angiopathy pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angioplasty is a kind of operation", "pln": ["(: cnet_isa_fe836dcbaa (IsA angioplasty operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angiopteris is a kind of tree fern", "pln": ["(: cnet_isa_095dd8e1bd (IsA angiopteris tree_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angiosarcoma is a kind of malignant tumor", "pln": ["(: cnet_isa_a169653028 (IsA angiosarcoma malignant_tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angioscope is a kind of microscope", "pln": ["(: cnet_isa_4426b97d08 (IsA angioscope microscope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angiosperm is a kind of spermatophyte", "pln": ["(: cnet_isa_5f021e9881 (IsA angiosperm spermatophyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angiospermae is a kind of class", "pln": ["(: cnet_isa_cc4078cc79 (IsA angiospermae class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "angiospermous tree is a kind of tree", "pln": ["(: cnet_isa_7cad536831 (IsA angiospermous_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angiospermous yellowwood is a kind of yellowwood", "pln": ["(: cnet_isa_b505a144cd (IsA angiospermous_yellowwood yellowwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angiotelectasia is a kind of physiological state", "pln": ["(: cnet_isa_12ac1c93df (IsA angiotelectasia physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angiotensin converting enzyme is a kind of protease", "pln": ["(: cnet_isa_8244d8d13a (IsA angiotensin_converting_enzyme protease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angle is a kind of european", "pln": ["(: cnet_isa_639ad2d695 (IsA angle european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angle is a kind of space", "pln": ["(: cnet_isa_a8fb870b01 (IsA angle space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angle bracket is a kind of bracket", "pln": ["(: cnet_isa_8b6fc2f322 (IsA angle_bracket bracket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angle bracket is a kind of punctuation", "pln": ["(: cnet_isa_d1a6422584 (IsA angle_bracket punctuation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angle of attack is a kind of angle of incidence", "pln": ["(: cnet_isa_dd3d1f4ce9 (IsA angle_of_attack angle_of_incidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angle of extinction is a kind of angle", "pln": ["(: cnet_isa_8d5e8d87a5 (IsA angle_of_extinction angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angle of incidence is a kind of angle", "pln": ["(: cnet_isa_4d5505eb62 (IsA angle_of_incidence angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angle of reflection is a kind of angle", "pln": ["(: cnet_isa_e34b180fb0 (IsA angle_of_reflection angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angle of refraction is a kind of angle", "pln": ["(: cnet_isa_53316cc98b (IsA angle_of_refraction angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angled loofah is a kind of luffa", "pln": ["(: cnet_isa_630a37f1e7 (IsA angled_loofah luffa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angledozer is a kind of bulldozer", "pln": ["(: cnet_isa_d78e2305fb (IsA angledozer bulldozer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angler is a kind of fisherman", "pln": ["(: cnet_isa_a12f1c2e4d (IsA angler fisherman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angler is a kind of schemer", "pln": ["(: cnet_isa_d24eafc39e (IsA angler schemer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anglewing is a kind of nymphalid", "pln": ["(: cnet_isa_b17acbf89f (IsA anglewing nymphalid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anglian is a kind of old english", "pln": ["(: cnet_isa_330dc51bfe (IsA anglian old_english) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anglican is a kind of protestant", "pln": ["(: cnet_isa_5b4965ee81 (IsA anglican protestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anglican catholic is a kind of catholic", "pln": ["(: cnet_isa_d26132a814 (IsA anglican_catholic catholic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anglican church is a kind of protestant denomination", "pln": ["(: cnet_isa_0b424f0461 (IsA anglican_church protestant_denomination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anglicanism is a kind of protestantism", "pln": ["(: cnet_isa_c0e745efcf (IsA anglicanism protestantism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anglicisation is a kind of assimilation", "pln": ["(: cnet_isa_31d948fc4a (IsA anglicisation assimilation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anglicism is a kind of custom", "pln": ["(: cnet_isa_03dbaed47f (IsA anglicism custom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anglicism is a kind of formulation", "pln": ["(: cnet_isa_02316c1bdc (IsA anglicism formulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angling is a kind of fishing", "pln": ["(: cnet_isa_3a05877639 (IsA angling fishing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anglo american is a kind of american", "pln": ["(: cnet_isa_7c5b700f3f (IsA anglo_american american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anglo catholicism is a kind of anglicanism", "pln": ["(: cnet_isa_f5527f8dab (IsA anglo_catholicism anglicanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anglo french is a kind of french", "pln": ["(: cnet_isa_d2893405ef (IsA anglo_french french) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anglo german concertina is a kind of concertina", "pln": ["(: cnet_isa_2b92c010dd (IsA anglo_german_concertina concertina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anglo indian is a kind of english person", "pln": ["(: cnet_isa_4e7abe90e4 (IsA anglo_indian english_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anglo saxon is a kind of english person", "pln": ["(: cnet_isa_39c3a09f47 (IsA anglo_saxon english_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anglo saxon deity is a kind of deity", "pln": ["(: cnet_isa_b79ab0c6b1 (IsA anglo_saxon_deity deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anglomania is a kind of enthusiasm", "pln": ["(: cnet_isa_1010d8be46 (IsA anglomania enthusiasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anglophile is a kind of supporter", "pln": ["(: cnet_isa_843ddc1203 (IsA anglophile supporter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anglophilia is a kind of admiration", "pln": ["(: cnet_isa_7037c9ad30 (IsA anglophilia admiration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anglophobe is a kind of hater", "pln": ["(: cnet_isa_4740f124d5 (IsA anglophobe hater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anglophobia is a kind of dislike", "pln": ["(: cnet_isa_8b898d89fd (IsA anglophobia dislike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angolan is a kind of african", "pln": ["(: cnet_isa_1748fd2f00 (IsA angolan african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angolan monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_b12d501706 (IsA angolan_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angolese is a kind of angolan", "pln": ["(: cnet_isa_923eb4a0da (IsA angolese angolan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angora is a kind of domestic cat", "pln": ["(: cnet_isa_9d36bd0422 (IsA angora domestic_cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angora is a kind of domestic goat", "pln": ["(: cnet_isa_e1ca83b6ef (IsA angora domestic_goat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angora is a kind of rabbit", "pln": ["(: cnet_isa_adca1f8293 (IsA angora rabbit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angostura bark is a kind of bark", "pln": ["(: cnet_isa_864730e692 (IsA angostura_bark bark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angoumois moth is a kind of grain moth", "pln": ["(: cnet_isa_ad2f000076 (IsA angoumois_moth grain_moth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angrecum is a kind of orchid", "pln": ["(: cnet_isa_b73c113710 (IsA angrecum orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angst is a kind of anxiety", "pln": ["(: cnet_isa_b0f3bfbcd3 (IsA angst anxiety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angstrom is a kind of metric linear unit", "pln": ["(: cnet_isa_671f84cfc6 (IsA angstrom metric_linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anguid lizard is a kind of lizard", "pln": ["(: cnet_isa_619f062c4a (IsA anguid_lizard lizard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anguidae is a kind of reptile family", "pln": ["(: cnet_isa_3913c33955 (IsA anguidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anguilla is a kind of fish genus", "pln": ["(: cnet_isa_84934507c4 (IsA anguilla fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anguillan is a kind of west indian", "pln": ["(: cnet_isa_8035188570 (IsA anguillan west_indian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anguillidae is a kind of fish family", "pln": ["(: cnet_isa_9b6054c79b (IsA anguillidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anguilliforme is a kind of animal order", "pln": ["(: cnet_isa_8c9c094ee3 (IsA anguilliforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anguillula is a kind of worm genus", "pln": ["(: cnet_isa_88b28df6b6 (IsA anguillula worm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anguis is a kind of reptile genus", "pln": ["(: cnet_isa_a6ad4f5c99 (IsA anguis reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anguish is a kind of distress", "pln": ["(: cnet_isa_de9f6221a7 (IsA anguish distress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angular acceleration is a kind of acceleration", "pln": ["(: cnet_isa_e01edd5e25 (IsA angular_acceleration acceleration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angular artery is a kind of artery", "pln": ["(: cnet_isa_22621486ad (IsA angular_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angular distance is a kind of angle", "pln": ["(: cnet_isa_81fa693500 (IsA angular_distance angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angular momentum is a kind of momentum", "pln": ["(: cnet_isa_c9b92ac1d2 (IsA angular_momentum momentum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angular position is a kind of position", "pln": ["(: cnet_isa_2cf33ba344 (IsA angular_position position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angular shape is a kind of shape", "pln": ["(: cnet_isa_bf2eca2442 (IsA angular_shape shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angular unit is a kind of unit of measurement", "pln": ["(: cnet_isa_1ae17afbeb (IsA angular_unit unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angular vein is a kind of vein", "pln": ["(: cnet_isa_525717cf24 (IsA angular_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angular velocity is a kind of speed", "pln": ["(: cnet_isa_735bbd4d7e (IsA angular_velocity speed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angularity is a kind of shape", "pln": ["(: cnet_isa_1a33838c34 (IsA angularity shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "angulation is a kind of change of shape", "pln": ["(: cnet_isa_ed94212de4 (IsA angulation change_of_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angulation is a kind of measurement", "pln": ["(: cnet_isa_8bf22e4e34 (IsA angulation measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "angwantibo is a kind of lemur", "pln": ["(: cnet_isa_ccc1295b1f (IsA angwantibo lemur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anhedonia is a kind of psychological state", "pln": ["(: cnet_isa_6929e12159 (IsA anhedonia psychological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anhidrosis is a kind of physiological state", "pln": ["(: cnet_isa_1baaaf1921 (IsA anhidrosis physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anhima is a kind of bird genus", "pln": ["(: cnet_isa_a2597266e1 (IsA anhima bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anhimidae is a kind of bird family", "pln": ["(: cnet_isa_e5ab60e241 (IsA anhimidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anhingidae is a kind of bird family", "pln": ["(: cnet_isa_ad7f16fd62 (IsA anhingidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anhydride is a kind of compound", "pln": ["(: cnet_isa_b151dc24da (IsA anhydride compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ani is a kind of cuckoo", "pln": ["(: cnet_isa_2f2ac0338f (IsA ani cuckoo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anigozanthus is a kind of monocot genus", "pln": ["(: cnet_isa_2da0786b44 (IsA anigozanthus monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anil is a kind of indigo", "pln": ["(: cnet_isa_75a015cedf (IsA anil indigo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anil is a kind of dye", "pln": ["(: cnet_isa_f6e6d09420 (IsA anil dye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aniline is a kind of amine", "pln": ["(: cnet_isa_c4b9609fdc (IsA aniline amine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aniline dye is a kind of dye", "pln": ["(: cnet_isa_ae1665a524 (IsA aniline_dye dye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anima is a kind of self", "pln": ["(: cnet_isa_35ecc35a84 (IsA anima self) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animal is a kind of organism", "pln": ["(: cnet_isa_1d764b3e5b (IsA animal organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "animal communication is a kind of signal", "pln": ["(: cnet_isa_7d9187b75d (IsA animal_communication signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animal disease is a kind of disease", "pln": ["(: cnet_isa_8ccf75ff76 (IsA animal_disease disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animal fancier is a kind of fancier", "pln": ["(: cnet_isa_d89e09aee3 (IsA animal_fancier fancier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animal fat is a kind of animal material", "pln": ["(: cnet_isa_f4a15432c5 (IsA animal_fat animal_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animal fat is a kind of fat", "pln": ["(: cnet_isa_c62b16fd7c (IsA animal_fat fat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animal fiber is a kind of animal product", "pln": ["(: cnet_isa_a09e86c341 (IsA animal_fiber animal_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "animal fiber is a kind of natural fiber", "pln": ["(: cnet_isa_d2873e8ef5 (IsA animal_fiber natural_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animal foot is a kind of vertebrate foot", "pln": ["(: cnet_isa_b663514ff3 (IsA animal_foot vertebrate_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "animal glue is a kind of animal product", "pln": ["(: cnet_isa_28cdc5ee51 (IsA animal_glue animal_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animal glue is a kind of glue", "pln": ["(: cnet_isa_8bbcc33f52 (IsA animal_glue glue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "animal group is a kind of biological group", "pln": ["(: cnet_isa_3b408f96d9 (IsA animal_group biological_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "animal husbandry is a kind of farming", "pln": ["(: cnet_isa_c6f5d41fc3 (IsA animal_husbandry farming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animal leg is a kind of leg", "pln": ["(: cnet_isa_43893819b1 (IsA animal_leg leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animal material is a kind of material", "pln": ["(: cnet_isa_d62f50610b (IsA animal_material material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animal model is a kind of model", "pln": ["(: cnet_isa_29c002d543 (IsA animal_model model) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animal oil is a kind of animal material", "pln": ["(: cnet_isa_e4f5f2a7ba (IsA animal_oil animal_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animal oil is a kind of oil", "pln": ["(: cnet_isa_b2424fb770 (IsA animal_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "animal order is a kind of order", "pln": ["(: cnet_isa_6e329285bb (IsA animal_order order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "animatronics is a kind of robotics", "pln": ["(: cnet_isa_7fedf603ed (IsA animatronics robotics) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animal pigment is a kind of pigment", "pln": ["(: cnet_isa_4fb0309f26 (IsA animal_pigment pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animal product is a kind of animal material", "pln": ["(: cnet_isa_12807e836b (IsA animal_product animal_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animal skin is a kind of animal product", "pln": ["(: cnet_isa_f1b277f665 (IsA animal_skin animal_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animal tissue is a kind of tissue", "pln": ["(: cnet_isa_d254be7529 (IsA animal_tissue tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animal toxin is a kind of toxin", "pln": ["(: cnet_isa_801ad4468b (IsA animal_toxin toxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animal trainer is a kind of trainer", "pln": ["(: cnet_isa_4811b10f94 (IsA animal_trainer trainer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animal virus is a kind of virus", "pln": ["(: cnet_isa_08b4db762f (IsA animal_virus virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animalcule is a kind of organism", "pln": ["(: cnet_isa_8372da1460 (IsA animalcule organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animalia is a kind of kingdom", "pln": ["(: cnet_isa_1f6b241eb9 (IsA animalia kingdom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animalism is a kind of disposition", "pln": ["(: cnet_isa_6090df32b7 (IsA animalism disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animalism is a kind of doctrine", "pln": ["(: cnet_isa_01b98518eb (IsA animalism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animality is a kind of nature", "pln": ["(: cnet_isa_c05c56eb04 (IsA animality nature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animalization is a kind of delineation", "pln": ["(: cnet_isa_c0e795a8e2 (IsA animalization delineation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animal is a kind of living creature", "pln": ["(: cnet_isa_5bab90a0f8 (IsA animal living_creature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animal is a kind of mammal", "pln": ["(: cnet_isa_e0e1ef93f1 (IsA animal mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animated flesh of dead person is a kind of zombie", "pln": ["(: cnet_isa_63d6c34aac (IsA animated_flesh_of_dead_person zombie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animateness is a kind of physiological property", "pln": ["(: cnet_isa_b304779bfb (IsA animateness physiological_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animation is a kind of filming", "pln": ["(: cnet_isa_357f0940df (IsA animation filming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animation is a kind of activeness", "pln": ["(: cnet_isa_92a604f1b2 (IsA animation activeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animation is a kind of animateness", "pln": ["(: cnet_isa_f5d1b6d063 (IsA animation animateness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animation is a kind of being", "pln": ["(: cnet_isa_2e46eb2234 (IsA animation being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animatism is a kind of attribution", "pln": ["(: cnet_isa_d459c7b0b1 (IsA animatism attribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animator is a kind of technician", "pln": ["(: cnet_isa_aa23baa93d (IsA animator technician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animatronic is a kind of robotic", "pln": ["(: cnet_isa_5144418686 (IsA animatronic robotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anime is a kind of animation", "pln": ["(: cnet_isa_57889948ea (IsA anime animation) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anime is a kind of cartoon", "pln": ["(: cnet_isa_1612de3e18 (IsA anime cartoon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anime is a kind of natural resin", "pln": ["(: cnet_isa_a98c558444 (IsA anime natural_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animism is a kind of doctrine", "pln": ["(: cnet_isa_f8a2b9ff83 (IsA animism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "animist is a kind of disciple", "pln": ["(: cnet_isa_04423d5629 (IsA animist disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "animosity is a kind of hostility", "pln": ["(: cnet_isa_26d8b27ed0 (IsA animosity hostility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anion is a kind of ion", "pln": ["(: cnet_isa_f156d840b1 (IsA anion ion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anionic compound is a kind of compound", "pln": ["(: cnet_isa_9ef4649945 (IsA anionic_compound compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anionic detergent is a kind of detergent", "pln": ["(: cnet_isa_391aba380f (IsA anionic_detergent detergent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anise is a kind of flavorer", "pln": ["(: cnet_isa_eab7ac1adf (IsA anise flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anise is a kind of herb", "pln": ["(: cnet_isa_af41dd709e (IsA anise herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anise cookie is a kind of cookie", "pln": ["(: cnet_isa_841b5916cf (IsA anise_cookie cookie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anise hyssop is a kind of giant hyssop", "pln": ["(: cnet_isa_cd2d10e442 (IsA anise_hyssop giant_hyssop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anise tree is a kind of tree", "pln": ["(: cnet_isa_034277e903 (IsA anise_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aniseikonia is a kind of visual impairment", "pln": ["(: cnet_isa_f534e88d99 (IsA aniseikonia visual_impairment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anisette is a kind of liqueur", "pln": ["(: cnet_isa_046fa38b52 (IsA anisette liqueur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anisogamete is a kind of gamete", "pln": ["(: cnet_isa_1c0a5f4f90 (IsA anisogamete gamete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anisogamy is a kind of sexual reproduction", "pln": ["(: cnet_isa_c7048e2a37 (IsA anisogamy sexual_reproduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anisometropia is a kind of eye condition", "pln": ["(: cnet_isa_c9672880d2 (IsA anisometropia eye_condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anisoptera is a kind of animal order", "pln": ["(: cnet_isa_6c0217260b (IsA anisoptera animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anisotremus is a kind of fish genus", "pln": ["(: cnet_isa_1141f1da75 (IsA anisotremus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anisotropy is a kind of property", "pln": ["(: cnet_isa_e5c3a44e34 (IsA anisotropy property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anjou is a kind of pear", "pln": ["(: cnet_isa_fed0329488 (IsA anjou pear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ankle is a kind of gliding joint", "pln": ["(: cnet_isa_9d9ecc38c6 (IsA ankle gliding_joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ankle brace is a kind of brace", "pln": ["(: cnet_isa_0fdbb81d95 (IsA ankle_brace brace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anklebone is a kind of bone", "pln": ["(: cnet_isa_ee92a80769 (IsA anklebone bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anklet is a kind of bracelet", "pln": ["(: cnet_isa_6ebecb296a (IsA anklet bracelet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anklet is a kind of shoe", "pln": ["(: cnet_isa_e67f8375a1 (IsA anklet shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anklet is a kind of sock", "pln": ["(: cnet_isa_e0f457eac4 (IsA anklet sock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ankus is a kind of prod", "pln": ["(: cnet_isa_dcad1f6e8a (IsA ankus prod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ankylosaur is a kind of armored dinosaur", "pln": ["(: cnet_isa_b11590cb2f (IsA ankylosaur armored_dinosaur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ankylosing spondylitis is a kind of autoimmune disease", "pln": ["(: cnet_isa_a126bcc29d (IsA ankylosing_spondylitis autoimmune_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ankylosing spondylitis is a kind of spondylitis", "pln": ["(: cnet_isa_8af33c8a72 (IsA ankylosing_spondylitis spondylitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ankylosis is a kind of pathology", "pln": ["(: cnet_isa_99ab906034 (IsA ankylosis pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ann arbor is a kind of in michigan", "pln": ["(: cnet_isa_079de477fb (IsA ann_arbor in_michigan) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anna is a kind of indian monetary unit", "pln": ["(: cnet_isa_605d74a117 (IsA anna indian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anna is a kind of pakistani monetary unit", "pln": ["(: cnet_isa_1d5c16dbbb (IsA anna pakistani_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "annals is a kind of journal", "pln": ["(: cnet_isa_1197b9b52a (IsA annals journal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annalist is a kind of historian", "pln": ["(: cnet_isa_44765268e7 (IsA annalist historian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annal is a kind of history", "pln": ["(: cnet_isa_520d7dd4b7 (IsA annal history) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annal is a kind of journal", "pln": ["(: cnet_isa_7ce9f246bd (IsA annal journal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annamese is a kind of asiatic", "pln": ["(: cnet_isa_29b0cb0275 (IsA annamese asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "annealing is a kind of hardening", "pln": ["(: cnet_isa_0be3e77fa6 (IsA annealing hardening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annelid is a kind of worm", "pln": ["(: cnet_isa_5db2f18774 (IsA annelid worm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annelida is a kind of phylum", "pln": ["(: cnet_isa_6bf1833909 (IsA annelida phylum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annex is a kind of addition", "pln": ["(: cnet_isa_c8b51afc3c (IsA annex addition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annexation is a kind of acquisition", "pln": ["(: cnet_isa_87d69cf006 (IsA annexation acquisition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annexation is a kind of incorporation", "pln": ["(: cnet_isa_a0505bd651 (IsA annexation incorporation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anniellidae is a kind of reptile family", "pln": ["(: cnet_isa_8f30852dc9 (IsA anniellidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annihilation is a kind of destruction", "pln": ["(: cnet_isa_d4907e10d8 (IsA annihilation destruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annihilator is a kind of destroyer", "pln": ["(: cnet_isa_98d10f3e32 (IsA annihilator destroyer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anniversary is a kind of day", "pln": ["(: cnet_isa_fbe6694404 (IsA anniversary day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annona is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_f94ccf39ff (IsA annona magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annonaceae is a kind of magnoliid dicot family", "pln": ["(: cnet_isa_58de44bc7c (IsA annonaceae magnoliid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annotation is a kind of expansion", "pln": ["(: cnet_isa_be2345a07d (IsA annotation expansion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annotator is a kind of observer", "pln": ["(: cnet_isa_142c266158 (IsA annotator observer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "announcement is a kind of statement", "pln": ["(: cnet_isa_3d00558d67 (IsA announcement statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "announcer is a kind of broadcaster", "pln": ["(: cnet_isa_3b867db966 (IsA announcer broadcaster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "announcer is a kind of communicator", "pln": ["(: cnet_isa_04a97e2745 (IsA announcer communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annoyance is a kind of mistreatment", "pln": ["(: cnet_isa_5fc7fea817 (IsA annoyance mistreatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "annoyance is a kind of negative stimulus", "pln": ["(: cnet_isa_3d66a3e4ce (IsA annoyance negative_stimulus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "annoyance is a kind of anger", "pln": ["(: cnet_isa_5795106293 (IsA annoyance anger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annual is a kind of plant", "pln": ["(: cnet_isa_4b046bdba5 (IsA annual plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "annual is a kind of reference book", "pln": ["(: cnet_isa_ef69aec16b (IsA annual reference_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annual fern is a kind of fern", "pln": ["(: cnet_isa_63cd7c4e4b (IsA annual_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annual ring is a kind of organic phenomenon", "pln": ["(: cnet_isa_eec3e8cc0b (IsA annual_ring organic_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annual salt marsh aster is a kind of aster", "pln": ["(: cnet_isa_6ae9e21878 (IsA annual_salt_marsh_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annuitant is a kind of recipient", "pln": ["(: cnet_isa_fca4cb926e (IsA annuitant recipient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annuity is a kind of regular payment", "pln": ["(: cnet_isa_67424fe9b6 (IsA annuity regular_payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annuity in advance is a kind of annuity", "pln": ["(: cnet_isa_aecc63ae76 (IsA annuity_in_advance annuity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annular eclipse is a kind of solar eclipse", "pln": ["(: cnet_isa_838e7aaf13 (IsA annular_eclipse solar_eclipse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annular scotoma is a kind of scotoma", "pln": ["(: cnet_isa_c980630502 (IsA annular_scotoma scotoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "annulet is a kind of molding", "pln": ["(: cnet_isa_7244c6fb80 (IsA annulet molding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annulet is a kind of charge", "pln": ["(: cnet_isa_84e009102d (IsA annulet charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annulment is a kind of dissolution", "pln": ["(: cnet_isa_682a05d7f3 (IsA annulment dissolution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annulus is a kind of plant part", "pln": ["(: cnet_isa_8ef61cd966 (IsA annulus plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annum is a kind of year", "pln": ["(: cnet_isa_b0cc0aef91 (IsA annum year) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annunciation is a kind of quarter day", "pln": ["(: cnet_isa_608fa556a3 (IsA annunciation quarter_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annunciator is a kind of indicator", "pln": ["(: cnet_isa_2ad7c983ee (IsA annunciator indicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "annwfn is a kind of imaginary place", "pln": ["(: cnet_isa_80b040ed47 (IsA annwfn imaginary_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anoa is a kind of old world buffalo", "pln": ["(: cnet_isa_581ac4c1a6 (IsA anoa old_world_buffalo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anobiidae is a kind of arthropod family", "pln": ["(: cnet_isa_61b5b257c6 (IsA anobiidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anode is a kind of electrode", "pln": ["(: cnet_isa_c17b8b3e8f (IsA anode electrode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anode is a kind of terminal", "pln": ["(: cnet_isa_637975e6f5 (IsA anode terminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anodonta is a kind of mollusk genus", "pln": ["(: cnet_isa_8e309594db (IsA anodonta mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anoectochilus is a kind of monocot genus", "pln": ["(: cnet_isa_952f1add33 (IsA anoectochilus monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anogramma is a kind of fern genus", "pln": ["(: cnet_isa_d2d1946cac (IsA anogramma fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anointer is a kind of religionist", "pln": ["(: cnet_isa_45cb55bfcb (IsA anointer religionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anointing is a kind of application", "pln": ["(: cnet_isa_5294776c3d (IsA anointing application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anointing of sick is a kind of sacrament", "pln": ["(: cnet_isa_b04852a92f (IsA anointing_of_sick sacrament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anolis is a kind of reptile genus", "pln": ["(: cnet_isa_f0b9030252 (IsA anolis reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anomala is a kind of arthropod genus", "pln": ["(: cnet_isa_ffb312f312 (IsA anomala arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anomalist is a kind of intellectual", "pln": ["(: cnet_isa_1a9ae01933 (IsA anomalist intellectual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anomalistic month is a kind of month", "pln": ["(: cnet_isa_36cbc2e5cc (IsA anomalistic_month month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anomalistic year is a kind of year", "pln": ["(: cnet_isa_dab56efb28 (IsA anomalistic_year year) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anomalopidae is a kind of fish family", "pln": ["(: cnet_isa_19e894b23c (IsA anomalopidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anomalop is a kind of spiny finned fish", "pln": ["(: cnet_isa_4543eb61d5 (IsA anomalop spiny_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anomalopteryx is a kind of moa", "pln": ["(: cnet_isa_90acfe041c (IsA anomalopteryx moa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anomaly is a kind of position", "pln": ["(: cnet_isa_49226baf2e (IsA anomaly position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anomaly is a kind of person", "pln": ["(: cnet_isa_65a0631f51 (IsA anomaly person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anomaly is a kind of abnormality", "pln": ["(: cnet_isa_3da10cbce2 (IsA anomaly abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anomia is a kind of mollusk genus", "pln": ["(: cnet_isa_4b24e85f94 (IsA anomia mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anomie is a kind of immorality", "pln": ["(: cnet_isa_57604776fe (IsA anomie immorality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anomie is a kind of isolation", "pln": ["(: cnet_isa_769ba4d063 (IsA anomie isolation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anomiidae is a kind of mollusk family", "pln": ["(: cnet_isa_7279b3fe52 (IsA anomiidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anonymity is a kind of obscurity", "pln": ["(: cnet_isa_7f6e5e7c3b (IsA anonymity obscurity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anonymous ftp is a kind of file transfer protocol", "pln": ["(: cnet_isa_a7f1b7aa63 (IsA anonymous_ftp file_transfer_protocol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anophele is a kind of arthropod genus", "pln": ["(: cnet_isa_d610cee56b (IsA anophele arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anopheline is a kind of mosquito", "pln": ["(: cnet_isa_df359e1350 (IsA anopheline mosquito) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "another word for feces is a kind of poop", "pln": ["(: cnet_isa_4965d7a7c6 (IsA another_word_for_feces poop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anopia is a kind of blindness", "pln": ["(: cnet_isa_e76c0f75b7 (IsA anopia blindness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anoplura is a kind of animal order", "pln": ["(: cnet_isa_a8b623fdf9 (IsA anoplura animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anorchism is a kind of abnormality", "pln": ["(: cnet_isa_4023d17dcf (IsA anorchism abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anorexia is a kind of eating disorder", "pln": ["(: cnet_isa_9517009427 (IsA anorexia eating_disorder) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anorexia nervosa is a kind of anorexia", "pln": ["(: cnet_isa_1f24ce3f69 (IsA anorexia_nervosa anorexia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anorexic is a kind of sick person", "pln": ["(: cnet_isa_6c79528eb1 (IsA anorexic sick_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anorgasmia is a kind of disability", "pln": ["(: cnet_isa_9f235c0df6 (IsA anorgasmia disability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anorthite is a kind of plagioclase", "pln": ["(: cnet_isa_f1bc2797f6 (IsA anorthite plagioclase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anorthopia is a kind of visual impairment", "pln": ["(: cnet_isa_912b599680 (IsA anorthopia visual_impairment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anosmia is a kind of dysomia", "pln": ["(: cnet_isa_a48d90c16b (IsA anosmia dysomia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anostraca is a kind of animal order", "pln": ["(: cnet_isa_053dfe6b6d (IsA anostraca animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "another way to say is a kind of city", "pln": ["(: cnet_isa_40a672c8cb (IsA another_way_to_say city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "another way to say state is a kind of condition", "pln": ["(: cnet_isa_76f5a49504 (IsA another_way_to_say_state condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "another weapon is a kind of bomb", "pln": ["(: cnet_isa_4a705d7a6c (IsA another_weapon bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "another word for fece is a kind of poop", "pln": ["(: cnet_isa_1f959531dc (IsA another_word_for_fece poop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "another word for television is a kind of tv", "pln": ["(: cnet_isa_3b82588b7e (IsA another_word_for_television tv) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anovulation is a kind of organic process", "pln": ["(: cnet_isa_dc34b584d5 (IsA anovulation organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anoxemia is a kind of pathology", "pln": ["(: cnet_isa_6297b4c95d (IsA anoxemia pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anoxia is a kind of hypoxia", "pln": ["(: cnet_isa_a7e096aac0 (IsA anoxia hypoxia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anoxic anoxia is a kind of anoxia", "pln": ["(: cnet_isa_87b0873306 (IsA anoxic_anoxia anoxia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anser is a kind of bird genus", "pln": ["(: cnet_isa_f71c266005 (IsA anser bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "anseriformes is a kind of animal order", "pln": ["(: cnet_isa_018655352c (IsA anseriformes animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ansere is a kind of animal order", "pln": ["(: cnet_isa_bd765e34fc (IsA ansere animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anseriform bird is a kind of waterfowl", "pln": ["(: cnet_isa_a2ccc1f142 (IsA anseriform_bird waterfowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anseriforme is a kind of animal order", "pln": ["(: cnet_isa_fcae90a9d5 (IsA anseriforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anserinae is a kind of bird family", "pln": ["(: cnet_isa_d5aff23c08 (IsA anserinae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "answer is a kind of reaction", "pln": ["(: cnet_isa_bdacee0293 (IsA answer reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "answer is a kind of reply", "pln": ["(: cnet_isa_7d5c8bc9ec (IsA answer reply) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "answer is a kind of statement", "pln": ["(: cnet_isa_ca6a5b3234 (IsA answer statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "answer is a kind of pleading", "pln": ["(: cnet_isa_fea8f041f1 (IsA answer pleading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "answering machine is a kind of electronic device", "pln": ["(: cnet_isa_0a05d5d05f (IsA answering_machine electronic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ant is a kind of insect", "pln": ["(: cnet_isa_da42ec9b19 (IsA ant insect) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ant is a kind of one type of insect", "pln": ["(: cnet_isa_e79561e62d (IsA ant one_type_of_insect) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ant is a kind of hymenopterous insect", "pln": ["(: cnet_isa_ee96f6fb14 (IsA ant hymenopterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ant bear is a kind of anteater", "pln": ["(: cnet_isa_3a65b75689 (IsA ant_bear anteater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ant cow is a kind of aphid", "pln": ["(: cnet_isa_249f373190 (IsA ant_cow aphid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ant lion is a kind of neuropteron", "pln": ["(: cnet_isa_95380ffba1 (IsA ant_lion neuropteron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ant shrike is a kind of antbird", "pln": ["(: cnet_isa_d23086e287 (IsA ant_shrike antbird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ant thrush is a kind of antbird", "pln": ["(: cnet_isa_63d5b99f89 (IsA ant_thrush antbird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antacid is a kind of agent", "pln": ["(: cnet_isa_91b0ccadcb (IsA antacid agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "antagonism is a kind of hindrance", "pln": ["(: cnet_isa_87d694a25c (IsA antagonism hindrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antagonism is a kind of dislike", "pln": ["(: cnet_isa_dc69c268cf (IsA antagonism dislike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "antagonism is a kind of hostility", "pln": ["(: cnet_isa_58bd260deb (IsA antagonism hostility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antagonism is a kind of opposition", "pln": ["(: cnet_isa_aea044fc10 (IsA antagonism opposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "antagonist is a kind of drug", "pln": ["(: cnet_isa_3efa0f85be (IsA antagonist drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antagonist is a kind of antagonistic muscle", "pln": ["(: cnet_isa_ba3bb0f107 (IsA antagonist antagonistic_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antagonistic muscle is a kind of muscle", "pln": ["(: cnet_isa_68bf48e5dc (IsA antagonistic_muscle muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antapex is a kind of celestial point", "pln": ["(: cnet_isa_db6ff0e36a (IsA antapex celestial_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antarctica is a kind of continent", "pln": ["(: cnet_isa_b64e83121f (IsA antarctica continent) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antbird is a kind of tyrannid", "pln": ["(: cnet_isa_2fdc138620 (IsA antbird tyrannid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ante is a kind of stake", "pln": ["(: cnet_isa_bf0840e50b (IsA ante stake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anteater is a kind of edentate", "pln": ["(: cnet_isa_c179314a58 (IsA anteater edentate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antecedent is a kind of referent", "pln": ["(: cnet_isa_78f01f9c13 (IsA antecedent referent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "antecedent is a kind of cause", "pln": ["(: cnet_isa_7376e49739 (IsA antecedent cause) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antecedent is a kind of temporal relation", "pln": ["(: cnet_isa_df58b86105 (IsA antecedent temporal_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antediluvian is a kind of oldster", "pln": ["(: cnet_isa_b5ab4d3f80 (IsA antediluvian oldster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antediluvian is a kind of patriarch", "pln": ["(: cnet_isa_e2fd2f8735 (IsA antediluvian patriarch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antedon is a kind of echinoderm genus", "pln": ["(: cnet_isa_41db8cb247 (IsA antedon echinoderm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antedonidae is a kind of echinoderm family", "pln": ["(: cnet_isa_89caa2960a (IsA antedonidae echinoderm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antefix is a kind of architectural ornament", "pln": ["(: cnet_isa_0d67539218 (IsA antefix architectural_ornament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antelope is a kind of bovid", "pln": ["(: cnet_isa_a5dae7cd84 (IsA antelope bovid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antelope squirrel is a kind of ground squirrel", "pln": ["(: cnet_isa_f6b3c84cbc (IsA antelope_squirrel ground_squirrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antenna is a kind of tentacle", "pln": ["(: cnet_isa_c67c16cd51 (IsA antenna tentacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antenna is a kind of electrical device", "pln": ["(: cnet_isa_09953c3272 (IsA antenna electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antenna is a kind of sensitivity", "pln": ["(: cnet_isa_c9040f94b5 (IsA antenna sensitivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "antennaria is a kind of asterid dicot genus", "pln": ["(: cnet_isa_0557f33926 (IsA antennaria asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antennariidae is a kind of fish family", "pln": ["(: cnet_isa_4423a9a542 (IsA antennariidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antepenult is a kind of syllable", "pln": ["(: cnet_isa_a851c7e92f (IsA antepenult syllable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anterior cardinal vein is a kind of cardinal vein", "pln": ["(: cnet_isa_16eec30f3e (IsA anterior_cardinal_vein cardinal_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anterior cerebral artery is a kind of cerebral artery", "pln": ["(: cnet_isa_bee1c91aed (IsA anterior_cerebral_artery cerebral_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anterior cerebral vein is a kind of cerebral vein", "pln": ["(: cnet_isa_5785e9fac0 (IsA anterior_cerebral_vein cerebral_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anterior facial vein is a kind of facial vein", "pln": ["(: cnet_isa_d2a64708b2 (IsA anterior_facial_vein facial_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anterior fontanelle is a kind of fontanelle", "pln": ["(: cnet_isa_11be060475 (IsA anterior_fontanelle fontanelle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anterior horn is a kind of motor nerve", "pln": ["(: cnet_isa_0af69c3c54 (IsA anterior_horn motor_nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anterior jugular vein is a kind of jugular vein", "pln": ["(: cnet_isa_dc73ef3f1c (IsA anterior_jugular_vein jugular_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anterior meningeal artery is a kind of meningeal artery", "pln": ["(: cnet_isa_a8a2d822e1 (IsA anterior_meningeal_artery meningeal_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anterior pituitary is a kind of endocrine gland", "pln": ["(: cnet_isa_649960aba0 (IsA anterior_pituitary endocrine_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anterior serratus muscle is a kind of serratus", "pln": ["(: cnet_isa_0996f251ab (IsA anterior_serratus_muscle serratus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anterior synechia is a kind of synechia", "pln": ["(: cnet_isa_b064157461 (IsA anterior_synechia synechia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anterior temporal artery is a kind of temporal artery", "pln": ["(: cnet_isa_7e33922f35 (IsA anterior_temporal_artery temporal_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anterior vertebral vein is a kind of vein", "pln": ["(: cnet_isa_bff0b75ba8 (IsA anterior_vertebral_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anteriority is a kind of position", "pln": ["(: cnet_isa_eb12073bd3 (IsA anteriority position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anterograde amnesia is a kind of amnesia", "pln": ["(: cnet_isa_6f1e2f8046 (IsA anterograde_amnesia amnesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anteroom is a kind of room", "pln": ["(: cnet_isa_cb7fccba2d (IsA anteroom room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthem is a kind of song", "pln": ["(: cnet_isa_7d551c3f81 (IsA anthem song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthemis is a kind of asterid dicot genus", "pln": ["(: cnet_isa_f53145248c (IsA anthemis asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anther is a kind of reproductive structure", "pln": ["(: cnet_isa_036a8a0fde (IsA anther reproductive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antheraea is a kind of arthropod genus", "pln": ["(: cnet_isa_b314d31db4 (IsA antheraea arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthericum is a kind of liliid monocot genus", "pln": ["(: cnet_isa_166fa874ba (IsA anthericum liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antheridiophore is a kind of gametophore", "pln": ["(: cnet_isa_062d03b3fb (IsA antheridiophore gametophore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antheridium is a kind of reproductive structure", "pln": ["(: cnet_isa_2708e85b88 (IsA antheridium reproductive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antheropea is a kind of asterid dicot genus", "pln": ["(: cnet_isa_48d243a880 (IsA antheropea asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antherozoid is a kind of gamete", "pln": ["(: cnet_isa_2ebc9ade6a (IsA antherozoid gamete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthidium is a kind of arthropod genus", "pln": ["(: cnet_isa_feefefe52c (IsA anthidium arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthill is a kind of knoll", "pln": ["(: cnet_isa_994c86e186 (IsA anthill knoll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthoceropsida is a kind of class", "pln": ["(: cnet_isa_1f1130f654 (IsA anthoceropsida class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthocero is a kind of moss genus", "pln": ["(: cnet_isa_2f7343f229 (IsA anthocero moss_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthocerotaceae is a kind of moss family", "pln": ["(: cnet_isa_a5e15d32bb (IsA anthocerotaceae moss_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthocerotale is a kind of plant order", "pln": ["(: cnet_isa_e19f50047e (IsA anthocerotale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthologist is a kind of editor", "pln": ["(: cnet_isa_1d3f19623e (IsA anthologist editor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anthology is a kind of collection", "pln": ["(: cnet_isa_9a13775b4c (IsA anthology collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthonomus is a kind of arthropod genus", "pln": ["(: cnet_isa_e0f0ba3de5 (IsA anthonomus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthophyllite is a kind of amphibole", "pln": ["(: cnet_isa_faa5edf2a0 (IsA anthophyllite amphibole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthozoa is a kind of class", "pln": ["(: cnet_isa_f7be52efe4 (IsA anthozoa class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthozoan is a kind of coelenterate", "pln": ["(: cnet_isa_9e4918e6a5 (IsA anthozoan coelenterate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anthracite is a kind of coal", "pln": ["(: cnet_isa_ac6d3eee88 (IsA anthracite coal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthracosis is a kind of pneumoconiosis", "pln": ["(: cnet_isa_2687d07a3c (IsA anthracosis pneumoconiosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthrax is a kind of disease", "pln": ["(: cnet_isa_790500a014 (IsA anthrax disease) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthrax is a kind of zoonosis", "pln": ["(: cnet_isa_7d2a8229cf (IsA anthrax zoonosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthriscus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_48487af26b (IsA anthriscus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthropocentrism is a kind of partiality", "pln": ["(: cnet_isa_ef5988d3f4 (IsA anthropocentrism partiality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthropogenesis is a kind of evolution", "pln": ["(: cnet_isa_6f509b4f51 (IsA anthropogenesis evolution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthropoid is a kind of primate", "pln": ["(: cnet_isa_8b2ffe1dc3 (IsA anthropoid primate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthropoid is a kind of misfit", "pln": ["(: cnet_isa_d0e2d6f24f (IsA anthropoid misfit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthropoid ape is a kind of ape", "pln": ["(: cnet_isa_dbbf864bf1 (IsA anthropoid_ape ape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthropoidea is a kind of animal order", "pln": ["(: cnet_isa_f4e9d730b6 (IsA anthropoidea animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthropolatry is a kind of worship", "pln": ["(: cnet_isa_2a31176170 (IsA anthropolatry worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthropologist is a kind of social scientist", "pln": ["(: cnet_isa_907117466c (IsA anthropologist social_scientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthropology is a kind of social science", "pln": ["(: cnet_isa_3c1db8eb94 (IsA anthropology social_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthropology department is a kind of academic department", "pln": ["(: cnet_isa_5491284716 (IsA anthropology_department academic_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anthropometry is a kind of measurement", "pln": ["(: cnet_isa_faf0c3d09b (IsA anthropometry measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthropomorphism is a kind of representational process", "pln": ["(: cnet_isa_e4f7b9b897 (IsA anthropomorphism representational_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthropophagy is a kind of cannibalism", "pln": ["(: cnet_isa_3439e6bfe5 (IsA anthropophagy cannibalism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthroposophy is a kind of system", "pln": ["(: cnet_isa_a1c0508437 (IsA anthroposophy system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthurium is a kind of houseplant", "pln": ["(: cnet_isa_143b22113f (IsA anthurium houseplant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthus is a kind of bird genus", "pln": ["(: cnet_isa_f097c60078 (IsA anthus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anthyllis is a kind of rosid dicot genus", "pln": ["(: cnet_isa_d4317a6fe2 (IsA anthyllis rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anti is a kind of person", "pln": ["(: cnet_isa_7fdc053ca9 (IsA anti person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anti american is a kind of person", "pln": ["(: cnet_isa_1aa4d9157c (IsA anti_american person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anti catholicism is a kind of religious orientation", "pln": ["(: cnet_isa_e10d4dc779 (IsA anti_catholicism religious_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anti drug law is a kind of law", "pln": ["(: cnet_isa_20254ac7c3 (IsA anti_drug_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anti dumping duty is a kind of protective tariff", "pln": ["(: cnet_isa_daa0af503d (IsA anti_dumping_duty protective_tariff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anti g suit is a kind of pressure suit", "pln": ["(: cnet_isa_1180013723 (IsA anti_g_suit pressure_suit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anti inflammatory is a kind of medicine", "pln": ["(: cnet_isa_6947684a05 (IsA anti_inflammatory medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anti masonic party is a kind of party", "pln": ["(: cnet_isa_93bdd5baff (IsA anti_masonic_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anti racketeering law is a kind of law", "pln": ["(: cnet_isa_908999abaa (IsA anti_racketeering_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anti semite is a kind of hater", "pln": ["(: cnet_isa_1603266dd1 (IsA anti_semite hater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anti semitism is a kind of racism", "pln": ["(: cnet_isa_2f08abf12a (IsA anti_semitism racism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anti submarine rocket is a kind of shipboard system", "pln": ["(: cnet_isa_db6a23d614 (IsA anti_submarine_rocket shipboard_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anti takeover defense is a kind of resistance", "pln": ["(: cnet_isa_a344dbc13d (IsA anti_takeover_defense resistance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anti tnf compound is a kind of drug", "pln": ["(: cnet_isa_6dc6b055da (IsA anti_tnf_compound drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anti virus program is a kind of program", "pln": ["(: cnet_isa_90d11b4e60 (IsA anti_virus_program program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anti war movement is a kind of campaign", "pln": ["(: cnet_isa_996c29f778 (IsA anti_war_movement campaign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antiaircraft is a kind of gun", "pln": ["(: cnet_isa_bb63d8cc02 (IsA antiaircraft gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antiaircraft fire is a kind of fire", "pln": ["(: cnet_isa_6d1d840e2d (IsA antiaircraft_fire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antialiasing is a kind of technique", "pln": ["(: cnet_isa_d3d2eef39f (IsA antialiasing technique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antiarrhythmic is a kind of medicine", "pln": ["(: cnet_isa_8c0585a115 (IsA antiarrhythmic medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antibacterial is a kind of medicine", "pln": ["(: cnet_isa_1096b80f34 (IsA antibacterial medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "antiballistic missile is a kind of guided missile", "pln": ["(: cnet_isa_8e542bdae3 (IsA antiballistic_missile guided_missile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antibaryon is a kind of hadron", "pln": ["(: cnet_isa_b88c49bf5b (IsA antibaryon hadron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antibiosis is a kind of association", "pln": ["(: cnet_isa_46dae16346 (IsA antibiosis association) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antibiotic is a kind of antibacterial", "pln": ["(: cnet_isa_d61a1f2893 (IsA antibiotic antibacterial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antibody is a kind of protein", "pln": ["(: cnet_isa_5d967982a1 (IsA antibody protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antic is a kind of diversion", "pln": ["(: cnet_isa_cb52a76ae5 (IsA antic diversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anticatalyst is a kind of inhibitor", "pln": ["(: cnet_isa_bb039a7fdd (IsA anticatalyst inhibitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anticholinergic is a kind of medicine", "pln": ["(: cnet_isa_3b4c8bf06c (IsA anticholinergic medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anticholinesterase is a kind of medicine", "pln": ["(: cnet_isa_dba6308c32 (IsA anticholinesterase medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anticipation is a kind of expectation", "pln": ["(: cnet_isa_52ab3ecb25 (IsA anticipation expectation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anticipation is a kind of hopefulness", "pln": ["(: cnet_isa_4abb98001f (IsA anticipation hopefulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anticipator is a kind of visionary", "pln": ["(: cnet_isa_a8c9f395f7 (IsA anticipator visionary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anticipatory breach is a kind of breach of contract", "pln": ["(: cnet_isa_640e78c439 (IsA anticipatory_breach breach_of_contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anticlimax is a kind of conclusion", "pln": ["(: cnet_isa_42874d3b54 (IsA anticlimax conclusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anticlimax is a kind of fall", "pln": ["(: cnet_isa_55d6a4720c (IsA anticlimax fall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anticoagulant is a kind of medicine", "pln": ["(: cnet_isa_300dba0cfa (IsA anticoagulant medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anticoagulation is a kind of medical care", "pln": ["(: cnet_isa_012fea0316 (IsA anticoagulation medical_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anticonvulsant is a kind of medicine", "pln": ["(: cnet_isa_dcf71ee109 (IsA anticonvulsant medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anticyclone is a kind of atmosphere", "pln": ["(: cnet_isa_d767a29365 (IsA anticyclone atmosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antidepressant is a kind of medicine", "pln": ["(: cnet_isa_c550d88cb5 (IsA antidepressant medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antidiabetic is a kind of medicine", "pln": ["(: cnet_isa_757b3101e6 (IsA antidiabetic medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antidiarrheal is a kind of medicine", "pln": ["(: cnet_isa_67a18eafd6 (IsA antidiarrheal medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antidiuretic is a kind of medicine", "pln": ["(: cnet_isa_3ab58a6853 (IsA antidiuretic medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antido is a kind of artificial language", "pln": ["(: cnet_isa_b562b768cb (IsA antido artificial_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antidorca is a kind of mammal genus", "pln": ["(: cnet_isa_3495dedf9e (IsA antidorca mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antidote is a kind of remedy", "pln": ["(: cnet_isa_6afc98780f (IsA antidote remedy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antiemetic is a kind of medicine", "pln": ["(: cnet_isa_17d554c7f9 (IsA antiemetic medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antiestablishmentarianism is a kind of doctrine", "pln": ["(: cnet_isa_2ac9ace714 (IsA antiestablishmentarianism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antifeminist is a kind of bigot", "pln": ["(: cnet_isa_6ab7651e37 (IsA antifeminist bigot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antiferromagnetism is a kind of magnetism", "pln": ["(: cnet_isa_57c0541deb (IsA antiferromagnetism magnetism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antiflatulent is a kind of agent", "pln": ["(: cnet_isa_7f854ca1ce (IsA antiflatulent agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antifouling paint is a kind of paint", "pln": ["(: cnet_isa_b146701cbe (IsA antifouling_paint paint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antifreeze is a kind of liquid", "pln": ["(: cnet_isa_d77e0cb383 (IsA antifreeze liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antifungal is a kind of agent", "pln": ["(: cnet_isa_74e7c9d62c (IsA antifungal agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antigen is a kind of substance", "pln": ["(: cnet_isa_e7faeff830 (IsA antigen substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antigenic determinant is a kind of site", "pln": ["(: cnet_isa_c3f0590af3 (IsA antigenic_determinant site) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antigonia is a kind of fish genus", "pln": ["(: cnet_isa_3596e1a68e (IsA antigonia fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antigram is a kind of anagram", "pln": ["(: cnet_isa_4c8e3ada08 (IsA antigram anagram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antiguan is a kind of west indian", "pln": ["(: cnet_isa_1bd127dbaa (IsA antiguan west_indian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antihero is a kind of protagonist", "pln": ["(: cnet_isa_aa884717f1 (IsA antihero protagonist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antihistamine is a kind of medicine", "pln": ["(: cnet_isa_3b844357c7 (IsA antihistamine medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antihypertensive is a kind of medicine", "pln": ["(: cnet_isa_9bd686b965 (IsA antihypertensive medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antiknock is a kind of compound", "pln": ["(: cnet_isa_b068004819 (IsA antiknock compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antilepton is a kind of elementary particle", "pln": ["(: cnet_isa_e18b3ff90d (IsA antilepton elementary_particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antilocapra is a kind of mammal genus", "pln": ["(: cnet_isa_4711f5051f (IsA antilocapra mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antilocapridae is a kind of mammal family", "pln": ["(: cnet_isa_65e0182166 (IsA antilocapridae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antilogarithm is a kind of numeral", "pln": ["(: cnet_isa_b1bf44455f (IsA antilogarithm numeral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antilope is a kind of mammal genus", "pln": ["(: cnet_isa_37cafb2286 (IsA antilope mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antimacassar is a kind of cloth covering", "pln": ["(: cnet_isa_c825b7613e (IsA antimacassar cloth_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antimalarial is a kind of antiprotozoal", "pln": ["(: cnet_isa_8072b3bc0b (IsA antimalarial antiprotozoal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antimatter is a kind of substance", "pln": ["(: cnet_isa_acac3ef956 (IsA antimatter substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antimeson is a kind of hadron", "pln": ["(: cnet_isa_308f95dd1e (IsA antimeson hadron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antimetabolite is a kind of antineoplastic", "pln": ["(: cnet_isa_03f03ac826 (IsA antimetabolite antineoplastic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antimony is a kind of metallic element", "pln": ["(: cnet_isa_50ecd1adae (IsA antimony metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antimuon is a kind of antilepton", "pln": ["(: cnet_isa_c3b04e0f70 (IsA antimuon antilepton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antimycin is a kind of antibiotic", "pln": ["(: cnet_isa_5acbb03b1e (IsA antimycin antibiotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "antineoplastic is a kind of cytotoxic drug", "pln": ["(: cnet_isa_760b47e242 (IsA antineoplastic cytotoxic_drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "antineoplastic antibiotic is a kind of antibiotic", "pln": ["(: cnet_isa_f7797e0669 (IsA antineoplastic_antibiotic antibiotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antineoplastic antibiotic is a kind of antineoplastic", "pln": ["(: cnet_isa_5b57bdcbe5 (IsA antineoplastic_antibiotic antineoplastic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antineutrino is a kind of antilepton", "pln": ["(: cnet_isa_79095b6941 (IsA antineutrino antilepton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antineutron is a kind of nucleon", "pln": ["(: cnet_isa_05c6307dd2 (IsA antineutron nucleon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antinode is a kind of point", "pln": ["(: cnet_isa_51dd1c0b75 (IsA antinode point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antinomasia is a kind of rhetorical device", "pln": ["(: cnet_isa_e795900efc (IsA antinomasia rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antinomian is a kind of disciple", "pln": ["(: cnet_isa_bb40682cc2 (IsA antinomian disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antinomianism is a kind of theological doctrine", "pln": ["(: cnet_isa_f4fc257363 (IsA antinomianism theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antinomy is a kind of contradiction", "pln": ["(: cnet_isa_bbcd47efa4 (IsA antinomy contradiction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antioxidant is a kind of inhibitor", "pln": ["(: cnet_isa_ba0c331d2a (IsA antioxidant inhibitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antiparticle is a kind of elementary particle", "pln": ["(: cnet_isa_5fc341e0bb (IsA antiparticle elementary_particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antipasto is a kind of appetizer", "pln": ["(: cnet_isa_fc48d59306 (IsA antipasto appetizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antipathy is a kind of object", "pln": ["(: cnet_isa_52b80f6243 (IsA antipathy object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antipathy is a kind of dislike", "pln": ["(: cnet_isa_6eeccd4081 (IsA antipathy dislike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antiperspirant is a kind of toiletry", "pln": ["(: cnet_isa_832de98709 (IsA antiperspirant toiletry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antiphon is a kind of religious music", "pln": ["(: cnet_isa_6acfabe3dd (IsA antiphon religious_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antiphonary is a kind of religious music", "pln": ["(: cnet_isa_86ef9c65db (IsA antiphonary religious_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antiphony is a kind of music", "pln": ["(: cnet_isa_61ccaee26f (IsA antiphony music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antiphrasis is a kind of rhetorical device", "pln": ["(: cnet_isa_be2f188790 (IsA antiphrasis rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antipodal is a kind of opposition", "pln": ["(: cnet_isa_647c93b589 (IsA antipodal opposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antipode is a kind of opposition", "pln": ["(: cnet_isa_071ac87832 (IsA antipode opposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antipode is a kind of region", "pln": ["(: cnet_isa_5a4798e108 (IsA antipode region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antipope is a kind of pontiff", "pln": ["(: cnet_isa_b38e8740e6 (IsA antipope pontiff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antiproton is a kind of nucleon", "pln": ["(: cnet_isa_f2800f88e0 (IsA antiproton nucleon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antiprotozoal is a kind of medicine", "pln": ["(: cnet_isa_77f212f586 (IsA antiprotozoal medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "antipruritic is a kind of local anesthetic", "pln": ["(: cnet_isa_f7e118a846 (IsA antipruritic local_anesthetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antipyresis is a kind of medication", "pln": ["(: cnet_isa_47740ec412 (IsA antipyresis medication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "antipyretic is a kind of medicine", "pln": ["(: cnet_isa_e499d173a4 (IsA antipyretic medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "antiques is a kind of old things", "pln": ["(: cnet_isa_d1e1624614 (IsA antiques old_things) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antiquark is a kind of elementary particle", "pln": ["(: cnet_isa_f9c46a3373 (IsA antiquark elementary_particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antiquary is a kind of expert", "pln": ["(: cnet_isa_45c5faede3 (IsA antiquary expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antique is a kind of antiquity", "pln": ["(: cnet_isa_1c37032d28 (IsA antique antiquity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antique is a kind of old thing", "pln": ["(: cnet_isa_426df77877 (IsA antique old_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antiquity is a kind of artifact", "pln": ["(: cnet_isa_6f9a9d878f (IsA antiquity artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antiquity is a kind of period", "pln": ["(: cnet_isa_4521b8a108 (IsA antiquity period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antiredeposition is a kind of natural process", "pln": ["(: cnet_isa_98d8d731a8 (IsA antiredeposition natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antirrhinum is a kind of asterid dicot genus", "pln": ["(: cnet_isa_e17f3f2c93 (IsA antirrhinum asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antisepsis is a kind of organic process", "pln": ["(: cnet_isa_4c9a42a19e (IsA antisepsis organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antiseptic is a kind of medicine", "pln": ["(: cnet_isa_0c8ea9674f (IsA antiseptic medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "antiserum is a kind of serum", "pln": ["(: cnet_isa_7870eba0da (IsA antiserum serum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antisocial personality disorder is a kind of personality disorder", "pln": ["(: cnet_isa_1eb46f5487 (IsA antisocial_personality_disorder personality_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antispasmodic is a kind of medicine", "pln": ["(: cnet_isa_ae6c6310bb (IsA antispasmodic medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antistrophe is a kind of stanza", "pln": ["(: cnet_isa_ad925c46e8 (IsA antistrophe stanza) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antisyphilitic is a kind of drug", "pln": ["(: cnet_isa_c476e31f68 (IsA antisyphilitic drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antitauon is a kind of antilepton", "pln": ["(: cnet_isa_339fcf0cea (IsA antitauon antilepton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "antithesis is a kind of rhetorical device", "pln": ["(: cnet_isa_31430e7097 (IsA antithesis rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "antitrades is a kind of prevailing wind", "pln": ["(: cnet_isa_c5586f7172 (IsA antitrades prevailing_wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antithesis is a kind of opposition", "pln": ["(: cnet_isa_f345c79964 (IsA antithesis opposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antitoxin is a kind of antibody", "pln": ["(: cnet_isa_46f4556dd1 (IsA antitoxin antibody) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antitrade wind is a kind of prevailing wind", "pln": ["(: cnet_isa_44bc4d8736 (IsA antitrade_wind prevailing_wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antitrade is a kind of prevailing wind", "pln": ["(: cnet_isa_669509e974 (IsA antitrade prevailing_wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antitrust case is a kind of legal action", "pln": ["(: cnet_isa_903724bf5a (IsA antitrust_case legal_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antitrust legislation is a kind of law", "pln": ["(: cnet_isa_d01bf33fc2 (IsA antitrust_legislation law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antitussive is a kind of medicine", "pln": ["(: cnet_isa_32a7d414e9 (IsA antitussive medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "antitype is a kind of kind", "pln": ["(: cnet_isa_0d3895413b (IsA antitype kind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antitype is a kind of representation", "pln": ["(: cnet_isa_c979721b0c (IsA antitype representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antivenin is a kind of antitoxin", "pln": ["(: cnet_isa_98ee68cae9 (IsA antivenin antitoxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antiviral is a kind of medicine", "pln": ["(: cnet_isa_68cbc61cf4 (IsA antiviral medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antler is a kind of horn", "pln": ["(: cnet_isa_9d14fee22d (IsA antler horn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antler moth is a kind of noctuid moth", "pln": ["(: cnet_isa_da79a35bfe (IsA antler_moth noctuid_moth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antonym is a kind of word", "pln": ["(: cnet_isa_3c177927b5 (IsA antonym word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antonymy is a kind of semantic relation", "pln": ["(: cnet_isa_b1b65c982f (IsA antonymy semantic_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antrozous is a kind of mammal genus", "pln": ["(: cnet_isa_e04374b9ea (IsA antrozous mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "antrum is a kind of cavity", "pln": ["(: cnet_isa_7b3381e3b0 (IsA antrum cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ant is a kind of social insect", "pln": ["(: cnet_isa_598a6822da (IsA ant social_insect) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anuresis is a kind of illness", "pln": ["(: cnet_isa_31c96e3749 (IsA anuresis illness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anus is a kind of orifice", "pln": ["(: cnet_isa_4f9a686db6 (IsA anus orifice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anvil is a kind of block", "pln": ["(: cnet_isa_e9b41a2ff3 (IsA anvil block) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anxiety is a kind of emotion", "pln": ["(: cnet_isa_3c417ef1c8 (IsA anxiety emotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anxiety is a kind of psychological state", "pln": ["(: cnet_isa_758a753f3a (IsA anxiety psychological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anxiety attack is a kind of attack", "pln": ["(: cnet_isa_4f62352a35 (IsA anxiety_attack attack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anxiety disorder is a kind of mental disorder", "pln": ["(: cnet_isa_bf441a0df8 (IsA anxiety_disorder mental_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anxiety hysteria is a kind of hysteria", "pln": ["(: cnet_isa_84aa4d8f0b (IsA anxiety_hysteria hysteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "anxiety neurosis is a kind of neurosis", "pln": ["(: cnet_isa_16bc890bd7 (IsA anxiety_neurosis neurosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anxiousness is a kind of anxiety", "pln": ["(: cnet_isa_738346aadc (IsA anxiousness anxiety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "any and all bid is a kind of takeover bid", "pln": ["(: cnet_isa_62abfc7274 (IsA any_and_all_bid takeover_bid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "anzac is a kind of soldier", "pln": ["(: cnet_isa_0e5593d160 (IsA anzac soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ao dai is a kind of attire", "pln": ["(: cnet_isa_59df497409 (IsA ao_dai attire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aorist is a kind of tense", "pln": ["(: cnet_isa_9143eb32af (IsA aorist tense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aorta is a kind of artery", "pln": ["(: cnet_isa_ecf855cca4 (IsA aorta artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aortic aneurysm is a kind of aneurysm", "pln": ["(: cnet_isa_26f99a5177 (IsA aortic_aneurysm aneurysm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aortic arch is a kind of aorta", "pln": ["(: cnet_isa_ee5a59b9f2 (IsA aortic_arch aorta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aortic orifice is a kind of orifice", "pln": ["(: cnet_isa_228174bea8 (IsA aortic_orifice orifice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aortic plexus is a kind of plexus", "pln": ["(: cnet_isa_d9c8e9a156 (IsA aortic_plexus plexus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aortic stenosis is a kind of stenosis", "pln": ["(: cnet_isa_568218bfe8 (IsA aortic_stenosis stenosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aortic stenosis is a kind of valvular heart disease", "pln": ["(: cnet_isa_3ec4170c6d (IsA aortic_stenosis valvular_heart_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aortic valve is a kind of semilunar valve", "pln": ["(: cnet_isa_47667670a5 (IsA aortic_valve semilunar_valve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aortitis is a kind of inflammation", "pln": ["(: cnet_isa_05a3c73038 (IsA aortitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aotus is a kind of mammal genus", "pln": ["(: cnet_isa_d9ee93b858 (IsA aotus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aoudad is a kind of wild sheep", "pln": ["(: cnet_isa_56bef9d4e2 (IsA aoudad wild_sheep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apache is a kind of athapaskan", "pln": ["(: cnet_isa_877e563f84 (IsA apache athapaskan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apache is a kind of athabascan", "pln": ["(: cnet_isa_99c05c8e59 (IsA apache athabascan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apache is a kind of gangster", "pln": ["(: cnet_isa_d44c994b52 (IsA apache gangster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apache dance is a kind of stage dancing", "pln": ["(: cnet_isa_bf358d1a1d (IsA apache_dance stage_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "apache devil dance is a kind of ritual dancing", "pln": ["(: cnet_isa_25bac8c869 (IsA apache_devil_dance ritual_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apadana is a kind of great hall", "pln": ["(: cnet_isa_28384ef9c5 (IsA apadana great_hall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "apalachicola rosemary is a kind of shrub", "pln": ["(: cnet_isa_81ace53242 (IsA apalachicola_rosemary shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apar is a kind of armadillo", "pln": ["(: cnet_isa_e1a55b4077 (IsA apar armadillo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apartheid is a kind of social policy", "pln": ["(: cnet_isa_e875f2911b (IsA apartheid social_policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apartment is a kind of place to live in", "pln": ["(: cnet_isa_7a972fc041 (IsA apartment place_to_live_in) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apartment is a kind of housing", "pln": ["(: cnet_isa_4eaaf726b8 (IsA apartment housing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "apartment building is a kind of building", "pln": ["(: cnet_isa_52bfcade1b (IsA apartment_building building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "apatetic coloration is a kind of protective coloration", "pln": ["(: cnet_isa_bb14e12bce (IsA apatetic_coloration protective_coloration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apathy is a kind of passivity", "pln": ["(: cnet_isa_8be577fb25 (IsA apathy passivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apathy is a kind of feeling", "pln": ["(: cnet_isa_2f5940e2f1 (IsA apathy feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "apatite is a kind of mineral", "pln": ["(: cnet_isa_d1ba3c2647 (IsA apatite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apatosaur is a kind of sauropod", "pln": ["(: cnet_isa_eb92ef972c (IsA apatosaur sauropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apatura is a kind of arthropod genus", "pln": ["(: cnet_isa_0c2ee45409 (IsA apatura arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apc is a kind of medicine", "pln": ["(: cnet_isa_dcf53136a9 (IsA apc medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ape is a kind of primate", "pln": ["(: cnet_isa_d8127f0b6f (IsA ape primate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ape man is a kind of wild man", "pln": ["(: cnet_isa_884166134a (IsA ape_man wild_man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "apercu is a kind of outline", "pln": ["(: cnet_isa_89c540cf48 (IsA apercu outline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aperea is a kind of cavy", "pln": ["(: cnet_isa_b137fb3fbc (IsA aperea cavy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aperitif is a kind of alcohol", "pln": ["(: cnet_isa_c038cf3a67 (IsA aperitif alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aperture is a kind of opening", "pln": ["(: cnet_isa_15bebafc93 (IsA aperture opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aperture is a kind of regulator", "pln": ["(: cnet_isa_7b6099ed9b (IsA aperture regulator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aperture is a kind of hole", "pln": ["(: cnet_isa_adabbf6856 (IsA aperture hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apery is a kind of impersonation", "pln": ["(: cnet_isa_b82b59482b (IsA apery impersonation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apetalous flower is a kind of flower", "pln": ["(: cnet_isa_d90f87523e (IsA apetalous_flower flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apex is a kind of celestial point", "pln": ["(: cnet_isa_a3e9981d48 (IsA apex celestial_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apgar score is a kind of assay", "pln": ["(: cnet_isa_a1abe862a0 (IsA apgar_score assay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aphaeresis is a kind of omission", "pln": ["(: cnet_isa_3ebbba7ebd (IsA aphaeresis omission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aphagia is a kind of pathology", "pln": ["(: cnet_isa_2499b100d5 (IsA aphagia pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aphakia is a kind of visual impairment", "pln": ["(: cnet_isa_53d8a99407 (IsA aphakia visual_impairment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aphakic is a kind of visually impaired person", "pln": ["(: cnet_isa_63a4fd870a (IsA aphakic visually_impaired_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aphanite is a kind of rock", "pln": ["(: cnet_isa_73118dc47a (IsA aphanite rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aphasia is a kind of brain disorder", "pln": ["(: cnet_isa_a175aa1d32 (IsA aphasia brain_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "aphasic is a kind of handicapped person", "pln": ["(: cnet_isa_9a589a18ff (IsA aphasic handicapped_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "aphasmidia is a kind of class", "pln": ["(: cnet_isa_fb596750d3 (IsA aphasmidia class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aphelion is a kind of apoapsis", "pln": ["(: cnet_isa_2518e67ae9 (IsA aphelion apoapsis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apheresis is a kind of dialysis", "pln": ["(: cnet_isa_2729e21d70 (IsA apheresis dialysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aphesis is a kind of omission", "pln": ["(: cnet_isa_d3e03394fc (IsA aphesis omission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aphid is a kind of plant louse", "pln": ["(: cnet_isa_bdd490929c (IsA aphid plant_louse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aphid lion is a kind of larva", "pln": ["(: cnet_isa_97fe16052a (IsA aphid_lion larva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "aphididae is a kind of arthropod family", "pln": ["(: cnet_isa_24515fb369 (IsA aphididae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "aphyllanthes is a kind of liliid monocot genus", "pln": ["(: cnet_isa_c851403a9d (IsA aphyllanthes liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aphidoidea is a kind of arthropod family", "pln": ["(: cnet_isa_9ab95a9038 (IsA aphidoidea arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aphis is a kind of arthropod genus", "pln": ["(: cnet_isa_a1e4286e45 (IsA aphis arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aphonia is a kind of speech disorder", "pln": ["(: cnet_isa_5a9d25a3e1 (IsA aphonia speech_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aphorism is a kind of maxim", "pln": ["(: cnet_isa_e4700c773f (IsA aphorism maxim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aphorist is a kind of intellectual", "pln": ["(: cnet_isa_8e39378e3b (IsA aphorist intellectual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aphriza is a kind of bird genus", "pln": ["(: cnet_isa_3b55004e5b (IsA aphriza bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aphrodisia is a kind of sexual desire", "pln": ["(: cnet_isa_e2b78980da (IsA aphrodisia sexual_desire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aphrodisiac is a kind of stimulant", "pln": ["(: cnet_isa_79aa320a1b (IsA aphrodisiac stimulant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aphrophora is a kind of arthropod genus", "pln": ["(: cnet_isa_2462211952 (IsA aphrophora arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aphthous ulcer is a kind of ulcer", "pln": ["(: cnet_isa_0857439e8b (IsA aphthous_ulcer ulcer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aphyllanthaceae is a kind of liliid monocot family", "pln": ["(: cnet_isa_1208238be2 (IsA aphyllanthaceae liliid_monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aphyllanthe is a kind of liliid monocot genus", "pln": ["(: cnet_isa_c71981595c (IsA aphyllanthe liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aphyllophorale is a kind of fungus order", "pln": ["(: cnet_isa_ab817be7bc (IsA aphyllophorale fungus_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "apiary is a kind of shed", "pln": ["(: cnet_isa_0cb7724917 (IsA apiary shed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apical placentation is a kind of placentation", "pln": ["(: cnet_isa_973cdfcd34 (IsA apical_placentation placentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apidae is a kind of arthropod family", "pln": ["(: cnet_isa_3ccde2f544 (IsA apidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apio is a kind of rosid dicot genus", "pln": ["(: cnet_isa_8bdd087ad6 (IsA apio rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apis is a kind of arthropod genus", "pln": ["(: cnet_isa_0c6c973213 (IsA apis arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apishamore is a kind of saddle blanket", "pln": ["(: cnet_isa_357a61d701 (IsA apishamore saddle_blanket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apium is a kind of rosid dicot genus", "pln": ["(: cnet_isa_3ccf1ebfaa (IsA apium rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aplasia is a kind of dysplasia", "pln": ["(: cnet_isa_b2af6c08dd (IsA aplasia dysplasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aplastic anemia is a kind of anemia", "pln": ["(: cnet_isa_697190a83e (IsA aplastic_anemia anemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aplectrum is a kind of monocot genus", "pln": ["(: cnet_isa_4faeaadd2a (IsA aplectrum monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aplite is a kind of igneous rock", "pln": ["(: cnet_isa_8f493984e2 (IsA aplite igneous_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aplodontia is a kind of mammal genus", "pln": ["(: cnet_isa_e67f5aa74b (IsA aplodontia mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aplodontiidae is a kind of mammal family", "pln": ["(: cnet_isa_14382e09db (IsA aplodontiidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aplomb is a kind of composure", "pln": ["(: cnet_isa_8a57d1fae1 (IsA aplomb composure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aplysia is a kind of mollusk genus", "pln": ["(: cnet_isa_d0b15bc7f4 (IsA aplysia mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aplysiidae is a kind of mollusk family", "pln": ["(: cnet_isa_9452979a7c (IsA aplysiidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "apnea is a kind of symptom", "pln": ["(: cnet_isa_48e65c92ba (IsA apnea symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apoapsis is a kind of celestial point", "pln": ["(: cnet_isa_c67868c978 (IsA apoapsis celestial_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apocalypse is a kind of calamity", "pln": ["(: cnet_isa_1c85c0b442 (IsA apocalypse calamity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apocope is a kind of abbreviation", "pln": ["(: cnet_isa_19d4581315 (IsA apocope abbreviation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apocrine gland is a kind of sweat gland", "pln": ["(: cnet_isa_4df3e07529 (IsA apocrine_gland sweat_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apocrypha is a kind of sacred text", "pln": ["(: cnet_isa_8f9410a49d (IsA apocrypha sacred_text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apocynaceae is a kind of dicot family", "pln": ["(: cnet_isa_a25572f26c (IsA apocynaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apocynum is a kind of dicot genus", "pln": ["(: cnet_isa_e87cabb7ac (IsA apocynum dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apodeme is a kind of structure", "pln": ["(: cnet_isa_5bf871b985 (IsA apodeme structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apodemus is a kind of mammal genus", "pln": ["(: cnet_isa_137fcbb31c (IsA apodemus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apodidae is a kind of bird family", "pln": ["(: cnet_isa_c631d13ec9 (IsA apodidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apodiform bird is a kind of bird", "pln": ["(: cnet_isa_4b8b17478a (IsA apodiform_bird bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apodiforme is a kind of animal order", "pln": ["(: cnet_isa_665be9442c (IsA apodiforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apoenzyme is a kind of protein", "pln": ["(: cnet_isa_6ebf03d92b (IsA apoenzyme protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apogamy is a kind of apomixis", "pln": ["(: cnet_isa_1a4b8fad1f (IsA apogamy apomixis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apogee is a kind of apoapsis", "pln": ["(: cnet_isa_d855a2c3b1 (IsA apogee apoapsis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apogee is a kind of phase", "pln": ["(: cnet_isa_a7954d453c (IsA apogee phase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apogon is a kind of fish genus", "pln": ["(: cnet_isa_30e9d3594b (IsA apogon fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apogonidae is a kind of fish family", "pln": ["(: cnet_isa_7d4d80e7b0 (IsA apogonidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "apoidea is a kind of arthropod family", "pln": ["(: cnet_isa_617eb2a9ee (IsA apoidea arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apojove is a kind of apoapsis", "pln": ["(: cnet_isa_45186e9a80 (IsA apojove apoapsis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apolemia is a kind of siphonophore", "pln": ["(: cnet_isa_989fc165de (IsA apolemia siphonophore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apologetic is a kind of theology", "pln": ["(: cnet_isa_f1f77f761c (IsA apologetic theology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apologist is a kind of advocate", "pln": ["(: cnet_isa_7935237126 (IsA apologist advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apology is a kind of example", "pln": ["(: cnet_isa_c1813b5754 (IsA apology example) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apology is a kind of acknowledgment", "pln": ["(: cnet_isa_79c1962485 (IsA apology acknowledgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "apology is a kind of defense", "pln": ["(: cnet_isa_054a591211 (IsA apology defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apomict is a kind of plant", "pln": ["(: cnet_isa_2f67e7e328 (IsA apomict plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apomixis is a kind of asexual reproduction", "pln": ["(: cnet_isa_ad63a02b2a (IsA apomixis asexual_reproduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apomorphine is a kind of morphine", "pln": ["(: cnet_isa_314453bac5 (IsA apomorphine morphine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aponeurosis is a kind of fascia", "pln": ["(: cnet_isa_88e9820048 (IsA aponeurosis fascia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apophasis is a kind of rhetorical device", "pln": ["(: cnet_isa_9e66f3f5de (IsA apophasis rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apophatism is a kind of religion", "pln": ["(: cnet_isa_08ea8ddbb2 (IsA apophatism religion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apophysis is a kind of process", "pln": ["(: cnet_isa_53b4b0924c (IsA apophysis process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apophysis is a kind of plant process", "pln": ["(: cnet_isa_176d25f98a (IsA apophysis plant_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apoptosis is a kind of necrobiosis", "pln": ["(: cnet_isa_5b069eb94a (IsA apoptosis necrobiosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "aporocactus is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_4695fe6ff7 (IsA aporocactus caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aposelene is a kind of apoapsis", "pln": ["(: cnet_isa_e0f3227966 (IsA aposelene apoapsis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aposematic coloration is a kind of protective coloration", "pln": ["(: cnet_isa_a4cfca008d (IsA aposematic_coloration protective_coloration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aposiopesis is a kind of rhetorical device", "pln": ["(: cnet_isa_f0c597b0a7 (IsA aposiopesis rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apostasy is a kind of abandonment", "pln": ["(: cnet_isa_3181c86e53 (IsA apostasy abandonment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apostasy is a kind of rejection", "pln": ["(: cnet_isa_7d86d29186 (IsA apostasy rejection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apostelic father is a kind of christian", "pln": ["(: cnet_isa_f09684245d (IsA apostelic_father christian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apostle is a kind of christian", "pln": ["(: cnet_isa_23f02bbd44 (IsA apostle christian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apostle is a kind of disciple", "pln": ["(: cnet_isa_84ba798009 (IsA apostle disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apostle is a kind of believer", "pln": ["(: cnet_isa_720573ad63 (IsA apostle believer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apostleship is a kind of position", "pln": ["(: cnet_isa_159fa47c07 (IsA apostleship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apostolic delegate is a kind of delegate", "pln": ["(: cnet_isa_383585aca6 (IsA apostolic_delegate delegate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apostrophe is a kind of punctuation", "pln": ["(: cnet_isa_2232d0e3a6 (IsA apostrophe punctuation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apostrophe is a kind of rhetorical device", "pln": ["(: cnet_isa_00ef85eb6e (IsA apostrophe rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apothecary unit is a kind of weight unit", "pln": ["(: cnet_isa_edc1e2fb74 (IsA apothecary_unit weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apothecium is a kind of ascocarp", "pln": ["(: cnet_isa_d3d7f25ede (IsA apothecium ascocarp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "appalachian is a kind of american", "pln": ["(: cnet_isa_e990a0f835 (IsA appalachian american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appalling is a kind of experience", "pln": ["(: cnet_isa_a8faf3819e (IsA appalling experience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appaloosa is a kind of saddle horse", "pln": ["(: cnet_isa_cb64d68bd3 (IsA appaloosa saddle_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appanage is a kind of fringe benefit", "pln": ["(: cnet_isa_67d3b1d297 (IsA appanage fringe_benefit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appanage is a kind of grant", "pln": ["(: cnet_isa_3760e98e07 (IsA appanage grant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "apparatchik is a kind of communist", "pln": ["(: cnet_isa_2bf66bd34c (IsA apparatchik communist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apparatchik is a kind of official", "pln": ["(: cnet_isa_312af1c4e2 (IsA apparatchik official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "apparatus is a kind of body part", "pln": ["(: cnet_isa_49b4b1cb4d (IsA apparatus body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apparatus is a kind of equipment", "pln": ["(: cnet_isa_9fd7712e97 (IsA apparatus equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apparel is a kind of clothing", "pln": ["(: cnet_isa_98ec169bb8 (IsA apparel clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "apparel chain is a kind of chain", "pln": ["(: cnet_isa_2d336ae125 (IsA apparel_chain chain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apparel industry is a kind of industry", "pln": ["(: cnet_isa_094eae2eb4 (IsA apparel_industry industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apparent motion is a kind of optical illusion", "pln": ["(: cnet_isa_e18527eef5 (IsA apparent_motion optical_illusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apparentness is a kind of obviousness", "pln": ["(: cnet_isa_3b0809ea9c (IsA apparentness obviousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "apparition is a kind of appearance", "pln": ["(: cnet_isa_6ba8e2a294 (IsA apparition appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apparition is a kind of illusion", "pln": ["(: cnet_isa_76cea4b9d9 (IsA apparition illusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apparition is a kind of spirit", "pln": ["(: cnet_isa_00d79a531e (IsA apparition spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appeal is a kind of attractiveness", "pln": ["(: cnet_isa_78050bbbce (IsA appeal attractiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appeal is a kind of proceeding", "pln": ["(: cnet_isa_2ae67e23d4 (IsA appeal proceeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appeal board is a kind of board", "pln": ["(: cnet_isa_ee7e73d2dc (IsA appeal_board board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appearance is a kind of arrival", "pln": ["(: cnet_isa_1b3a6b9ac7 (IsA appearance arrival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appearance is a kind of attendance", "pln": ["(: cnet_isa_ee1e615de7 (IsA appearance attendance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appearance is a kind of pretense", "pln": ["(: cnet_isa_b1d468d70e (IsA appearance pretense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appearance is a kind of quality", "pln": ["(: cnet_isa_6ddff43996 (IsA appearance quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appearance is a kind of representation", "pln": ["(: cnet_isa_bd0d7d69ec (IsA appearance representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appearance is a kind of happening", "pln": ["(: cnet_isa_2347f7a0f2 (IsA appearance happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appeasement is a kind of social control", "pln": ["(: cnet_isa_fc97fbb1bc (IsA appeasement social_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "appeaser is a kind of conciliator", "pln": ["(: cnet_isa_1557a54838 (IsA appeaser conciliator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appellant is a kind of litigant", "pln": ["(: cnet_isa_7f09a688df (IsA appellant litigant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appellate court is a kind of court", "pln": ["(: cnet_isa_d699f5b70f (IsA appellate_court court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appellation is a kind of geographical indication", "pln": ["(: cnet_isa_fc5d5e32e4 (IsA appellation geographical_indication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appellation is a kind of name", "pln": ["(: cnet_isa_e66ced994d (IsA appellation name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "appendage is a kind of part", "pln": ["(: cnet_isa_0887a9b1f9 (IsA appendage part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appendectomy is a kind of ablation", "pln": ["(: cnet_isa_f8b259416e (IsA appendectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appendicitis is a kind of inflammation", "pln": ["(: cnet_isa_678e3d2a74 (IsA appendicitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appendicle is a kind of appendage", "pln": ["(: cnet_isa_c49c804652 (IsA appendicle appendage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appendicular artery is a kind of artery", "pln": ["(: cnet_isa_42801ff9e8 (IsA appendicular_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appendicular skeleton is a kind of skeletal structure", "pln": ["(: cnet_isa_4b0bb9c47a (IsA appendicular_skeleton skeletal_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appendicular vein is a kind of vein", "pln": ["(: cnet_isa_dff774ef17 (IsA appendicular_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appendicularia is a kind of tunicate", "pln": ["(: cnet_isa_1174573eff (IsA appendicularia tunicate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appendix is a kind of process", "pln": ["(: cnet_isa_cd3af6023e (IsA appendix process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appendix is a kind of addendum", "pln": ["(: cnet_isa_fada7edc92 (IsA appendix addendum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appenzeller sennenhund is a kind of sennenhund", "pln": ["(: cnet_isa_ed6f230349 (IsA appenzeller_sennenhund sennenhund) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apperception is a kind of basic cognitive process", "pln": ["(: cnet_isa_d09aee2afe (IsA apperception basic_cognitive_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appetite is a kind of craving", "pln": ["(: cnet_isa_96f41cb76a (IsA appetite craving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appetizer is a kind of course", "pln": ["(: cnet_isa_d31c2b6b1e (IsA appetizer course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appetizingness is a kind of palatability", "pln": ["(: cnet_isa_38df47bf38 (IsA appetizingness palatability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "applause is a kind of approval", "pln": ["(: cnet_isa_13047aa559 (IsA applause approval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apple is a kind of computer brand", "pln": ["(: cnet_isa_52c7306d16 (IsA apple computer_brand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apple is a kind of edible fruit", "pln": ["(: cnet_isa_ae7806553f (IsA apple edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apple is a kind of pome", "pln": ["(: cnet_isa_9db8357ba6 (IsA apple pome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apple is a kind of apple tree", "pln": ["(: cnet_isa_4584458f92 (IsA apple apple_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apple aphid is a kind of aphid", "pln": ["(: cnet_isa_a3b0efb9f2 (IsA apple_aphid aphid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apple blight is a kind of blight", "pln": ["(: cnet_isa_11fe667513 (IsA apple_blight blight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apple butter is a kind of conserve", "pln": ["(: cnet_isa_9cd8b3d654 (IsA apple_butter conserve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apple dumpling is a kind of dumpling", "pln": ["(: cnet_isa_4c535c7fa1 (IsA apple_dumpling dumpling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apple fritter is a kind of fritter", "pln": ["(: cnet_isa_dbadcd31e8 (IsA apple_fritter fritter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apple geranium is a kind of geranium", "pln": ["(: cnet_isa_5485d88d03 (IsA apple_geranium geranium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "apple jelly is a kind of jelly", "pln": ["(: cnet_isa_944a44c811 (IsA apple_jelly jelly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apple juice is a kind of fruit juice", "pln": ["(: cnet_isa_b18f1343f0 (IsA apple_juice fruit_juice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apple maggot is a kind of fruit fly", "pln": ["(: cnet_isa_04f2080cbf (IsA apple_maggot fruit_fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apple mint is a kind of mint", "pln": ["(: cnet_isa_bfba68c2f1 (IsA apple_mint mint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apple of discord is a kind of trophy", "pln": ["(: cnet_isa_ce67a8b3bf (IsA apple_of_discord trophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apple of peru is a kind of herb", "pln": ["(: cnet_isa_b5b68c6fc0 (IsA apple_of_peru herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "apple orchard is a kind of grove", "pln": ["(: cnet_isa_ad35f8fd47 (IsA apple_orchard grove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apple pie is a kind of pie", "pln": ["(: cnet_isa_56e96467e8 (IsA apple_pie pie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apple polisher is a kind of sycophant", "pln": ["(: cnet_isa_f0552467aa (IsA apple_polisher sycophant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apple rust is a kind of rust", "pln": ["(: cnet_isa_5318a8a841 (IsA apple_rust rust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apple tart is a kind of tart", "pln": ["(: cnet_isa_03e6d2a691 (IsA apple_tart tart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "apple tree is a kind of tree", "pln": ["(: cnet_isa_293233c7f6 (IsA apple_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apple tree is a kind of fruit tree", "pln": ["(: cnet_isa_d72254db60 (IsA apple_tree fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apple turnover is a kind of turnover", "pln": ["(: cnet_isa_e2acabffc0 (IsA apple_turnover turnover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "applecart is a kind of handcart", "pln": ["(: cnet_isa_7b47ba8a4b (IsA applecart handcart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "applecart is a kind of planning", "pln": ["(: cnet_isa_7db29208bd (IsA applecart planning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "applejack is a kind of brandy", "pln": ["(: cnet_isa_c17169293d (IsA applejack brandy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apple is a kind of not vegetable", "pln": ["(: cnet_isa_fc970a1b06 (IsA apple not_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "applesauce is a kind of dish", "pln": ["(: cnet_isa_c45975eb7f (IsA applesauce dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "applesauce cake is a kind of cake", "pln": ["(: cnet_isa_dbab3b1fa1 (IsA applesauce_cake cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "applied mathematics is a kind of mathematics", "pln": ["(: cnet_isa_1bfe982fb4 (IsA applied_mathematics mathematics) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "appointments is a kind of artifacts of busy society", "pln": ["(: cnet_isa_eb6f2693d1 (IsA appointments artifacts_of_busy_society) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "applet is a kind of application", "pln": ["(: cnet_isa_7ed5829cc6 (IsA applet application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "applewood is a kind of fruitwood", "pln": ["(: cnet_isa_736f04123c (IsA applewood fruitwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appliance is a kind of device", "pln": ["(: cnet_isa_848d2bdc7b (IsA appliance device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appliance is a kind of durable", "pln": ["(: cnet_isa_4951e7e52e (IsA appliance durable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "applicability is a kind of relevance", "pln": ["(: cnet_isa_cbf86b83ec (IsA applicability relevance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "applicant is a kind of person", "pln": ["(: cnet_isa_4ba2695ea0 (IsA applicant person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "application is a kind of piece of software", "pln": ["(: cnet_isa_43d2902522 (IsA application piece_of_software) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "application is a kind of action", "pln": ["(: cnet_isa_e50791bf42 (IsA application action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "application is a kind of effort", "pln": ["(: cnet_isa_98ba337494 (IsA application effort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "application is a kind of manual labor", "pln": ["(: cnet_isa_7fe3e9f85c (IsA application manual_labor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "application is a kind of use", "pln": ["(: cnet_isa_a86117ed68 (IsA application use) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "application is a kind of program", "pln": ["(: cnet_isa_200869cfc8 (IsA application program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "application is a kind of request", "pln": ["(: cnet_isa_d1a547bf28 (IsA application request) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "application form is a kind of form", "pln": ["(: cnet_isa_6e7ef3e10a (IsA application_form form) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "application oriented language is a kind of source language", "pln": ["(: cnet_isa_e00b10209e (IsA application_oriented_language source_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "applicator is a kind of device", "pln": ["(: cnet_isa_ef5fe0fb9b (IsA applicator device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "applied mathematic is a kind of mathematic", "pln": ["(: cnet_isa_48d5fd7b56 (IsA applied_mathematic mathematic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "applied psychology is a kind of psychology", "pln": ["(: cnet_isa_ce62697198 (IsA applied_psychology psychology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "applique is a kind of sewing", "pln": ["(: cnet_isa_0621ad3e6c (IsA applique sewing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appointee is a kind of official", "pln": ["(: cnet_isa_695de768bf (IsA appointee official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appointee is a kind of person", "pln": ["(: cnet_isa_0f7e53a70f (IsA appointee person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appointment is a kind of decision", "pln": ["(: cnet_isa_2b233f8d7c (IsA appointment decision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appointment is a kind of occupation", "pln": ["(: cnet_isa_0bfcc4bd67 (IsA appointment occupation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appointment is a kind of furnishing", "pln": ["(: cnet_isa_80e792c4be (IsA appointment furnishing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appointment is a kind of disposal", "pln": ["(: cnet_isa_3c0809b11e (IsA appointment disposal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appointment book is a kind of book", "pln": ["(: cnet_isa_5569c1cc73 (IsA appointment_book book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appointment is a kind of artifact of busy society", "pln": ["(: cnet_isa_61dbb56271 (IsA appointment artifact_of_busy_society) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "apposition is a kind of growth", "pln": ["(: cnet_isa_3422f83b4d (IsA apposition growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apposition is a kind of modification", "pln": ["(: cnet_isa_ab8b94a78a (IsA apposition modification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appraisal is a kind of estimate", "pln": ["(: cnet_isa_bb1bef1129 (IsA appraisal estimate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appraisal is a kind of classification", "pln": ["(: cnet_isa_6a64a3e785 (IsA appraisal classification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appraisal is a kind of commercial document", "pln": ["(: cnet_isa_ac1c8d4d5f (IsA appraisal commercial_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appraiser is a kind of critic", "pln": ["(: cnet_isa_8d23d3fe4d (IsA appraiser critic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appraiser is a kind of evaluator", "pln": ["(: cnet_isa_310104f0aa (IsA appraiser evaluator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appreciation is a kind of increase", "pln": ["(: cnet_isa_0602de9d3c (IsA appreciation increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appreciation is a kind of understanding", "pln": ["(: cnet_isa_13c0549026 (IsA appreciation understanding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appreciation is a kind of thank", "pln": ["(: cnet_isa_c66ef306da (IsA appreciation thank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appreciator is a kind of person", "pln": ["(: cnet_isa_b34677cd6c (IsA appreciator person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apprehender is a kind of person", "pln": ["(: cnet_isa_7740ec607b (IsA apprehender person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apprehension is a kind of capture", "pln": ["(: cnet_isa_ac64c5987c (IsA apprehension capture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "apprehension is a kind of expectation", "pln": ["(: cnet_isa_a57f3b4886 (IsA apprehension expectation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apprehension is a kind of fear", "pln": ["(: cnet_isa_2ab234fd07 (IsA apprehension fear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apprentice is a kind of novice", "pln": ["(: cnet_isa_f3dac13a35 (IsA apprentice novice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apprenticeship is a kind of position", "pln": ["(: cnet_isa_e9d60013ed (IsA apprenticeship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appro is a kind of approval", "pln": ["(: cnet_isa_578d28c2ca (IsA appro approval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "approach is a kind of conceptualization", "pln": ["(: cnet_isa_750b04f7af (IsA approach conceptualization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "approach is a kind of motion", "pln": ["(: cnet_isa_812abbb335 (IsA approach motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "approach is a kind of similarity", "pln": ["(: cnet_isa_e38197267c (IsA approach similarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "approach is a kind of timing", "pln": ["(: cnet_isa_f157a82266 (IsA approach timing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "approach is a kind of movement", "pln": ["(: cnet_isa_4901438e8d (IsA approach movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "approach is a kind of golf stroke", "pln": ["(: cnet_isa_c3637ec6b9 (IsA approach golf_stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "approach path is a kind of air lane", "pln": ["(: cnet_isa_535a7cb12b (IsA approach_path air_lane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "approach trench is a kind of trench", "pln": ["(: cnet_isa_ecd7434e3b (IsA approach_trench trench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "approachability is a kind of friendliness", "pln": ["(: cnet_isa_829c2af905 (IsA approachability friendliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "approbation is a kind of approval", "pln": ["(: cnet_isa_a9d46c63d6 (IsA approbation approval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appropriateness is a kind of propriety", "pln": ["(: cnet_isa_e82e9e79f5 (IsA appropriateness propriety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appropriateness is a kind of suitability", "pln": ["(: cnet_isa_dcb0a5c0cf (IsA appropriateness suitability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "appropriation is a kind of acquiring", "pln": ["(: cnet_isa_01d622f40a (IsA appropriation acquiring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appropriation is a kind of money", "pln": ["(: cnet_isa_cbb87ed5ec (IsA appropriation money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "appropriation bill is a kind of bill", "pln": ["(: cnet_isa_d5608aeaa0 (IsA appropriation_bill bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "appropriator is a kind of acquirer", "pln": ["(: cnet_isa_20450f38c3 (IsA appropriator acquirer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "approval is a kind of message", "pln": ["(: cnet_isa_e4ab2ab7f1 (IsA approval message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "approval is a kind of liking", "pln": ["(: cnet_isa_58db3df5c8 (IsA approval liking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "approval is a kind of acceptance", "pln": ["(: cnet_isa_c787fd392e (IsA approval acceptance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "approver is a kind of authority", "pln": ["(: cnet_isa_0549a8f640 (IsA approver authority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "approximate range is a kind of scope", "pln": ["(: cnet_isa_f036d1f2b8 (IsA approximate_range scope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "approximation is a kind of joining", "pln": ["(: cnet_isa_0309dfa3e0 (IsA approximation joining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "approximation is a kind of similarity", "pln": ["(: cnet_isa_a5f6bf9c9a (IsA approximation similarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "approximation is a kind of version", "pln": ["(: cnet_isa_febb5643b9 (IsA approximation version) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apraxia is a kind of brain disorder", "pln": ["(: cnet_isa_1eb246df00 (IsA apraxia brain_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apricot is a kind of edible fruit", "pln": ["(: cnet_isa_089553e46e (IsA apricot edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apricot is a kind of fruit tree", "pln": ["(: cnet_isa_6465d9150d (IsA apricot fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apricot bar is a kind of fruit bar", "pln": ["(: cnet_isa_98fea32029 (IsA apricot_bar fruit_bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "apricot sauce is a kind of sauce", "pln": ["(: cnet_isa_4226703dcb (IsA apricot_sauce sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "april is a kind of gregorian calendar month", "pln": ["(: cnet_isa_7ad899d6d3 (IsA april gregorian_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "april fool is a kind of practical joke", "pln": ["(: cnet_isa_9502be0f25 (IsA april_fool practical_joke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "april fool is a kind of butt", "pln": ["(: cnet_isa_a37b18d89c (IsA april_fool butt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "april fool is a kind of day", "pln": ["(: cnet_isa_999fe5255b (IsA april_fool day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apron is a kind of paved surface", "pln": ["(: cnet_isa_76a92b8de3 (IsA apron paved_surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apron is a kind of protective garment", "pln": ["(: cnet_isa_256f3f2c9a (IsA apron protective_garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apron is a kind of site", "pln": ["(: cnet_isa_fe5bb70267 (IsA apron site) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apron string is a kind of cord", "pln": ["(: cnet_isa_249dee879b (IsA apron_string cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "apse is a kind of recess", "pln": ["(: cnet_isa_6d2176b84e (IsA apse recess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "apterygiformes is a kind of animal order", "pln": ["(: cnet_isa_f6cef2a187 (IsA apterygiformes animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aptenodyte is a kind of bird genus", "pln": ["(: cnet_isa_22655338ca (IsA aptenodyte bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apterygidae is a kind of bird family", "pln": ["(: cnet_isa_35e7aa7bf9 (IsA apterygidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apterygiforme is a kind of animal order", "pln": ["(: cnet_isa_13d1503ff7 (IsA apterygiforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aptitude is a kind of ability", "pln": ["(: cnet_isa_f2f977249c (IsA aptitude ability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aptness is a kind of appropriateness", "pln": ["(: cnet_isa_8f80cdb607 (IsA aptness appropriateness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aptness is a kind of disposition", "pln": ["(: cnet_isa_8e94a729de (IsA aptness disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "apus is a kind of bird genus", "pln": ["(: cnet_isa_9ba3580f7e (IsA apus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aqua regia is a kind of acid", "pln": ["(: cnet_isa_0ecb58f01b (IsA aqua_regia acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "aqua vitae is a kind of liquor", "pln": ["(: cnet_isa_99d57c668d (IsA aqua_vitae liquor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aquaculture is a kind of cultivation", "pln": ["(: cnet_isa_b4c2f09cae (IsA aquaculture cultivation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aquamarine is a kind of beryl", "pln": ["(: cnet_isa_9c2664142c (IsA aquamarine beryl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aquamarine is a kind of transparent gem", "pln": ["(: cnet_isa_b56c02308c (IsA aquamarine transparent_gem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aquanaut is a kind of skilled worker", "pln": ["(: cnet_isa_8872a7af03 (IsA aquanaut skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aquaphobia is a kind of simple phobia", "pln": ["(: cnet_isa_cd3f94de98 (IsA aquaphobia simple_phobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aquaplane is a kind of board", "pln": ["(: cnet_isa_35e14d5fa1 (IsA aquaplane board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aquarium is a kind of tank", "pln": ["(: cnet_isa_b8f9574eb0 (IsA aquarium tank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "aquarium is a kind of vivarium", "pln": ["(: cnet_isa_6118179629 (IsA aquarium vivarium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aquatic is a kind of plant", "pln": ["(: cnet_isa_fb0ef69109 (IsA aquatic plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aquatic bird is a kind of bird", "pln": ["(: cnet_isa_202361e4a9 (IsA aquatic_bird bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aquatic fern is a kind of fern", "pln": ["(: cnet_isa_b1dfae3ea0 (IsA aquatic_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aquatic mammal is a kind of placental", "pln": ["(: cnet_isa_56dd010874 (IsA aquatic_mammal placental) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aquatic plant is a kind of vascular plant", "pln": ["(: cnet_isa_f8aa2479f6 (IsA aquatic_plant vascular_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aquatic vertebrate is a kind of vertebrate", "pln": ["(: cnet_isa_b7a133c476 (IsA aquatic_vertebrate vertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aquatint is a kind of engraving", "pln": ["(: cnet_isa_89481a6761 (IsA aquatint engraving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aquatint is a kind of etching", "pln": ["(: cnet_isa_30729ed152 (IsA aquatint etching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aquavit is a kind of liquor", "pln": ["(: cnet_isa_561d9e7f37 (IsA aquavit liquor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aqueduct is a kind of conduit", "pln": ["(: cnet_isa_0fc0e0ab70 (IsA aqueduct conduit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aqueous humor is a kind of liquid body substance", "pln": ["(: cnet_isa_a600c37d37 (IsA aqueous_humor liquid_body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aqueous solution is a kind of solution", "pln": ["(: cnet_isa_7838619d5e (IsA aqueous_solution solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aquifer is a kind of geological formation", "pln": ["(: cnet_isa_67cebaed2b (IsA aquifer geological_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aquifoliaceae is a kind of dicot family", "pln": ["(: cnet_isa_bd2a38176c (IsA aquifoliaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aquila is a kind of bird genus", "pln": ["(: cnet_isa_0d2354aaa4 (IsA aquila bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ara is a kind of bird genus", "pln": ["(: cnet_isa_8881786164 (IsA ara bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arab league is a kind of world organization", "pln": ["(: cnet_isa_ad472a0f71 (IsA arab_league world_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arabesque is a kind of decoration", "pln": ["(: cnet_isa_eca94a5f1e (IsA arabesque decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arabesque is a kind of ballet position", "pln": ["(: cnet_isa_259c7c58da (IsA arabesque ballet_position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arabian is a kind of saddle horse", "pln": ["(: cnet_isa_da31adbcb0 (IsA arabian saddle_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arabian is a kind of semite", "pln": ["(: cnet_isa_ffd3b5a141 (IsA arabian semite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arabian camel is a kind of camel", "pln": ["(: cnet_isa_3d8ec3ee3d (IsA arabian_camel camel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arabian coffee is a kind of coffee", "pln": ["(: cnet_isa_48a755f938 (IsA arabian_coffee coffee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arabian jasmine is a kind of jasmine", "pln": ["(: cnet_isa_ec0fbdf26f (IsA arabian_jasmine jasmine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arabic is a kind of semitic", "pln": ["(: cnet_isa_6b5a4b1c9d (IsA arabic semitic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arabic alphabet is a kind of alphabet", "pln": ["(: cnet_isa_69115e6054 (IsA arabic_alphabet alphabet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arabic alphabet is a kind of unicameral script", "pln": ["(: cnet_isa_bcf362a8c9 (IsA arabic_alphabet unicameral_script) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arabic numeral is a kind of numeral", "pln": ["(: cnet_isa_949a075a91 (IsA arabic_numeral numeral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "arabidopsis is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_0b7d11ad46 (IsA arabidopsis dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arabidopsis lyrata is a kind of cress", "pln": ["(: cnet_isa_74570f7510 (IsA arabidopsis_lyrata cress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arabidopsis thaliana is a kind of cress", "pln": ["(: cnet_isa_b4cbae7cad (IsA arabidopsis_thaliana cress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arability is a kind of quality", "pln": ["(: cnet_isa_c4329fe851 (IsA arability quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arabis is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_3133d01a33 (IsA arabis dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arabist is a kind of scholar", "pln": ["(: cnet_isa_cf0a18eb23 (IsA arabist scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "araceae is a kind of monocot family", "pln": ["(: cnet_isa_9f0d12a779 (IsA araceae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arachis is a kind of rosid dicot genus", "pln": ["(: cnet_isa_6e6ee93792 (IsA arachis rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arachnid is a kind of arthropod", "pln": ["(: cnet_isa_eb66354534 (IsA arachnid arthropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arachnida is a kind of class", "pln": ["(: cnet_isa_8ae25c8add (IsA arachnida class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arachnoid is a kind of meninx", "pln": ["(: cnet_isa_c3a2fd1e10 (IsA arachnoid meninx) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arachnophobia is a kind of phobia", "pln": ["(: cnet_isa_3e7a7975be (IsA arachnophobia phobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "arachnophobia is a kind of zoophobia", "pln": ["(: cnet_isa_3532c27a31 (IsA arachnophobia zoophobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aragonite is a kind of mineral", "pln": ["(: cnet_isa_8c79955d38 (IsA aragonite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arale is a kind of plant order", "pln": ["(: cnet_isa_aa227c0047 (IsA arale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aralia is a kind of woody plant", "pln": ["(: cnet_isa_1a954478f9 (IsA aralia woody_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "araliaceae is a kind of rosid dicot family", "pln": ["(: cnet_isa_04b1f230c5 (IsA araliaceae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aramaean is a kind of semite", "pln": ["(: cnet_isa_4d76b4d5d8 (IsA aramaean semite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aramaic is a kind of script", "pln": ["(: cnet_isa_24a532c9e0 (IsA aramaic script) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aramaic is a kind of semitic", "pln": ["(: cnet_isa_f319a72684 (IsA aramaic semitic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arame is a kind of seaweed", "pln": ["(: cnet_isa_d31dfc175a (IsA arame seaweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aramus is a kind of bird genus", "pln": ["(: cnet_isa_317acc603a (IsA aramus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aranea is a kind of arthropod genus", "pln": ["(: cnet_isa_d76b29d153 (IsA aranea arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "araneae is a kind of animal order", "pln": ["(: cnet_isa_de3b9fdbf1 (IsA araneae animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arapaho is a kind of algonquian", "pln": ["(: cnet_isa_3f8a4feb00 (IsA arapaho algonquian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arapahoe is a kind of algonquin", "pln": ["(: cnet_isa_71d46fa204 (IsA arapahoe algonquin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arapahoe is a kind of buffalo indian", "pln": ["(: cnet_isa_5bbee956c0 (IsA arapahoe buffalo_indian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arariba is a kind of zebrawood", "pln": ["(: cnet_isa_bb5d06f14d (IsA arariba zebrawood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "araroba is a kind of powder", "pln": ["(: cnet_isa_2f846d646f (IsA araroba powder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "araucaria is a kind of conifer", "pln": ["(: cnet_isa_07c62df170 (IsA araucaria conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "araucariaceae is a kind of gymnosperm family", "pln": ["(: cnet_isa_00774ef363 (IsA araucariaceae gymnosperm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "araujia is a kind of dicot genus", "pln": ["(: cnet_isa_294032cabe (IsA araujia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arawak is a kind of amerind", "pln": ["(: cnet_isa_1870738ff0 (IsA arawak amerind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arawakan is a kind of native american", "pln": ["(: cnet_isa_bf7f3fbae0 (IsA arawakan native_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arbiter is a kind of evaluator", "pln": ["(: cnet_isa_4650310650 (IsA arbiter evaluator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arbiter is a kind of expert", "pln": ["(: cnet_isa_1a36b734ad (IsA arbiter expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arbitrage is a kind of investing", "pln": ["(: cnet_isa_e207df17ee (IsA arbitrage investing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arbitrageur is a kind of businessman", "pln": ["(: cnet_isa_306317c6b2 (IsA arbitrageur businessman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arbitration is a kind of judgment", "pln": ["(: cnet_isa_0b75654c53 (IsA arbitration judgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arbitration is a kind of mediation", "pln": ["(: cnet_isa_a9138d1758 (IsA arbitration mediation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arbitration clause is a kind of article", "pln": ["(: cnet_isa_5d64230145 (IsA arbitration_clause article) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arbor is a kind of framework", "pln": ["(: cnet_isa_c144b11287 (IsA arbor framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arbor is a kind of tree", "pln": ["(: cnet_isa_efbabf4421 (IsA arbor tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arbor day is a kind of day", "pln": ["(: cnet_isa_ddccea6ecb (IsA arbor_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arboreal salamander is a kind of climbing salamander", "pln": ["(: cnet_isa_86ae4e9d82 (IsA arboreal_salamander climbing_salamander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arborescent plant is a kind of woody plant", "pln": ["(: cnet_isa_ec85a62709 (IsA arborescent_plant woody_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arboretum is a kind of facility", "pln": ["(: cnet_isa_20fcf9f231 (IsA arboretum facility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "arboriculture is a kind of farming", "pln": ["(: cnet_isa_d2ac4e9dc4 (IsA arboriculture farming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arborolatry is a kind of worship", "pln": ["(: cnet_isa_84e0b645ef (IsA arborolatry worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arborvitae is a kind of conifer", "pln": ["(: cnet_isa_e9d95e253d (IsA arborvitae conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "arbovirus is a kind of virus", "pln": ["(: cnet_isa_87b130c8ee (IsA arbovirus virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arbutus is a kind of shrub", "pln": ["(: cnet_isa_a4482828d6 (IsA arbutus shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arc is a kind of curve", "pln": ["(: cnet_isa_6a23f501b6 (IsA arc curve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arc lamp is a kind of electric lamp", "pln": ["(: cnet_isa_a6ab078d04 (IsA arc_lamp electric_lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arca is a kind of mollusk genus", "pln": ["(: cnet_isa_1bc3a7eb32 (IsA arca mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arcade is a kind of passageway", "pln": ["(: cnet_isa_443991cf4b (IsA arcade passageway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arcade is a kind of structure", "pln": ["(: cnet_isa_2f6f3371f6 (IsA arcade structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arcadian is a kind of hellene", "pln": ["(: cnet_isa_9b58ba4d4a (IsA arcadian hellene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arcadic is a kind of ancient greek", "pln": ["(: cnet_isa_dfdb160913 (IsA arcadic ancient_greek) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arcado cyprian is a kind of citizenry", "pln": ["(: cnet_isa_f0e81db8bc (IsA arcado_cyprian citizenry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arcella is a kind of protozoan", "pln": ["(: cnet_isa_9a7f46ab3c (IsA arcella protozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arcellidae is a kind of protoctist family", "pln": ["(: cnet_isa_c9177dc49f (IsA arcellidae protoctist_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arceuthobium is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_34c2f614c4 (IsA arceuthobium dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arch is a kind of structure", "pln": ["(: cnet_isa_c95e8d87eb (IsA arch structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arch is a kind of entrance", "pln": ["(: cnet_isa_ff4f7ec0a3 (IsA arch entrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arch is a kind of skeletal structure", "pln": ["(: cnet_isa_5ec322b3c8 (IsA arch skeletal_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arch is a kind of curve", "pln": ["(: cnet_isa_8f160925a4 (IsA arch curve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arch support is a kind of support", "pln": ["(: cnet_isa_60ac971021 (IsA arch_support support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "archaebacteria is a kind of moneran", "pln": ["(: cnet_isa_7ad5fac10d (IsA archaebacteria moneran) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archaeopteryx is a kind of bird", "pln": ["(: cnet_isa_e4872d4787 (IsA archaeopteryx bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archaeornis is a kind of bird", "pln": ["(: cnet_isa_17a2805ce8 (IsA archaeornis bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archaeornithe is a kind of class", "pln": ["(: cnet_isa_ebc1d1e915 (IsA archaeornithe class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archaism is a kind of formulation", "pln": ["(: cnet_isa_bfa5528ebd (IsA archaism formulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archaist is a kind of person", "pln": ["(: cnet_isa_3043b2e831 (IsA archaist person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archangel is a kind of angel", "pln": ["(: cnet_isa_80c5f4f236 (IsA archangel angel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archbishop is a kind of bishop", "pln": ["(: cnet_isa_9d8fd3a889 (IsA archbishop bishop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archbishopric is a kind of jurisdiction", "pln": ["(: cnet_isa_f86b465e09 (IsA archbishopric jurisdiction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archdeacon is a kind of clergyman", "pln": ["(: cnet_isa_3a98c714db (IsA archdeacon clergyman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "archdeaconry is a kind of jurisdiction", "pln": ["(: cnet_isa_74dbfc46ac (IsA archdeaconry jurisdiction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archdiocese is a kind of diocese", "pln": ["(: cnet_isa_14b6c56f07 (IsA archdiocese diocese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archduchess is a kind of princess", "pln": ["(: cnet_isa_1749b416d7 (IsA archduchess princess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archduchy is a kind of domain", "pln": ["(: cnet_isa_e118c4145f (IsA archduchy domain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archduke is a kind of prince", "pln": ["(: cnet_isa_7cc241bdd0 (IsA archduke prince) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archegonium is a kind of plant organ", "pln": ["(: cnet_isa_1f08f8b1fd (IsA archegonium plant_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archenteron is a kind of cavity", "pln": ["(: cnet_isa_b3ef695c43 (IsA archenteron cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archeological remain is a kind of relic", "pln": ["(: cnet_isa_15857a09f2 (IsA archeological_remain relic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archeological remain is a kind of remain", "pln": ["(: cnet_isa_394d8cf36e (IsA archeological_remain remain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archeologist is a kind of anthropologist", "pln": ["(: cnet_isa_40de9594aa (IsA archeologist anthropologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "archeology is a kind of anthropology", "pln": ["(: cnet_isa_a0c8668174 (IsA archeology anthropology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archer is a kind of person", "pln": ["(: cnet_isa_c82744e557 (IsA archer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archer is a kind of expert", "pln": ["(: cnet_isa_f47e96a768 (IsA archer expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archerfish is a kind of percoid fish", "pln": ["(: cnet_isa_0c537d4d61 (IsA archerfish percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "archery is a kind of sport", "pln": ["(: cnet_isa_3559f49791 (IsA archery sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archespore is a kind of cell", "pln": ["(: cnet_isa_56ef8ffa36 (IsA archespore cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archiannelid is a kind of annelid", "pln": ["(: cnet_isa_98b80c06e0 (IsA archiannelid annelid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "archiannelida is a kind of class", "pln": ["(: cnet_isa_e7ef186144 (IsA archiannelida class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "archimedes principle is a kind of law", "pln": ["(: cnet_isa_463f0eb3fa (IsA archimedes_principle law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archidiaconate is a kind of rank", "pln": ["(: cnet_isa_85196a317b (IsA archidiaconate rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archidiskidon is a kind of mammal genus", "pln": ["(: cnet_isa_831dfeae46 (IsA archidiskidon mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archil is a kind of lecanora", "pln": ["(: cnet_isa_44bf8bc901 (IsA archil lecanora) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archilochus is a kind of bird genus", "pln": ["(: cnet_isa_4687d5b126 (IsA archilochus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archilochus colubris is a kind of hummingbird", "pln": ["(: cnet_isa_0f6d319010 (IsA archilochus_colubris hummingbird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archimede principle is a kind of law", "pln": ["(: cnet_isa_06e9dca532 (IsA archimede_principle law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archine is a kind of linear unit", "pln": ["(: cnet_isa_0173737c01 (IsA archine linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archipallium is a kind of cerebral cortex", "pln": ["(: cnet_isa_0457ab58cd (IsA archipallium cerebral_cortex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archipelago is a kind of land", "pln": ["(: cnet_isa_e543819e9c (IsA archipelago land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "architect is a kind of creator", "pln": ["(: cnet_isa_a1ee32ee26 (IsA architect creator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "architectonic is a kind of science", "pln": ["(: cnet_isa_176452061a (IsA architectonic science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "architectural engineering is a kind of engineering", "pln": ["(: cnet_isa_162f567921 (IsA architectural_engineering engineering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "architectural ornament is a kind of decoration", "pln": ["(: cnet_isa_faea322b6a (IsA architectural_ornament decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "architectural style is a kind of art form", "pln": ["(: cnet_isa_c769f9f16a (IsA architectural_style art_form) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "architecture is a kind of profession", "pln": ["(: cnet_isa_2be2a88d29 (IsA architecture profession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "architecture is a kind of building", "pln": ["(: cnet_isa_b4d40d5e9c (IsA architecture building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "architecture is a kind of discipline", "pln": ["(: cnet_isa_373d685211 (IsA architecture discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "architecture is a kind of fine art", "pln": ["(: cnet_isa_071922ff32 (IsA architecture fine_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "architeuthis is a kind of squid", "pln": ["(: cnet_isa_2544d6edfc (IsA architeuthis squid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "architrave is a kind of molding", "pln": ["(: cnet_isa_edde3e8061 (IsA architrave molding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "architrave is a kind of support", "pln": ["(: cnet_isa_a671bbcd20 (IsA architrave support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archive is a kind of depository", "pln": ["(: cnet_isa_7e95b8b16a (IsA archive depository) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archive is a kind of collection", "pln": ["(: cnet_isa_f04aebb2f7 (IsA archive collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archivist is a kind of collector", "pln": ["(: cnet_isa_3f4a1841cd (IsA archivist collector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archosargus is a kind of fish genus", "pln": ["(: cnet_isa_27270370e9 (IsA archosargus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archosaur is a kind of diapsid", "pln": ["(: cnet_isa_f216fd95d5 (IsA archosaur diapsid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archosauria is a kind of class", "pln": ["(: cnet_isa_98191ff9a3 (IsA archosauria class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "archpriest is a kind of priest", "pln": ["(: cnet_isa_81830e1e6a (IsA archpriest priest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arcidae is a kind of mollusk family", "pln": ["(: cnet_isa_cd8c77e3d1 (IsA arcidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arctic is a kind of overshoe", "pln": ["(: cnet_isa_ede808b523 (IsA arctic overshoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arctic char is a kind of char", "pln": ["(: cnet_isa_8d56d2d5b2 (IsA arctic_char char) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arctic fox is a kind of fox", "pln": ["(: cnet_isa_84e2dc507e (IsA arctic_fox fox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arctic ground squirrel is a kind of ground squirrel", "pln": ["(: cnet_isa_58f8c03413 (IsA arctic_ground_squirrel ground_squirrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "arctic willow is a kind of willow", "pln": ["(: cnet_isa_723205c280 (IsA arctic_willow willow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arctictis is a kind of mammal genus", "pln": ["(: cnet_isa_140aa004f5 (IsA arctictis mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arctiid is a kind of moth", "pln": ["(: cnet_isa_a820a1bda8 (IsA arctiid moth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arctiidae is a kind of arthropod family", "pln": ["(: cnet_isa_9cea48e0bc (IsA arctiidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arctium is a kind of asterid dicot genus", "pln": ["(: cnet_isa_86e7e462c2 (IsA arctium asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arctocebus is a kind of mammal genus", "pln": ["(: cnet_isa_19410cb3d2 (IsA arctocebus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arctocephalus is a kind of mammal genus", "pln": ["(: cnet_isa_355c303321 (IsA arctocephalus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arctonyx is a kind of mammal genus", "pln": ["(: cnet_isa_24fc994390 (IsA arctonyx mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arctostaphylo is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_bc0a486c30 (IsA arctostaphylo dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arctotis is a kind of asterid dicot genus", "pln": ["(: cnet_isa_31b3c79f0e (IsA arctotis asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arcuate artery is a kind of artery", "pln": ["(: cnet_isa_94e36286a3 (IsA arcuate_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arcuate artery of kidney is a kind of artery", "pln": ["(: cnet_isa_e571493d96 (IsA arcuate_artery_of_kidney artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arcuate vein of kidney is a kind of vein", "pln": ["(: cnet_isa_af25db81a3 (IsA arcuate_vein_of_kidney vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arcus is a kind of cornea", "pln": ["(: cnet_isa_fc26b11b50 (IsA arcus cornea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ardea is a kind of bird genus", "pln": ["(: cnet_isa_ec72cb56e9 (IsA ardea bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ardeb is a kind of dry unit", "pln": ["(: cnet_isa_a600603d1c (IsA ardeb dry_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ardeidae is a kind of bird family", "pln": ["(: cnet_isa_7798614206 (IsA ardeidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ardisia is a kind of dicot genus", "pln": ["(: cnet_isa_0b330f5eb9 (IsA ardisia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ardor is a kind of eagerness", "pln": ["(: cnet_isa_5ed6c36fdb (IsA ardor eagerness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ardor is a kind of love", "pln": ["(: cnet_isa_2713a1d543 (IsA ardor love) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ardor is a kind of passion", "pln": ["(: cnet_isa_cdcd752046 (IsA ardor passion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arduousness is a kind of effortfulness", "pln": ["(: cnet_isa_edbe954a44 (IsA arduousness effortfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "are is a kind of area unit", "pln": ["(: cnet_isa_68f01fdc10 (IsA are area_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "area is a kind of place", "pln": ["(: cnet_isa_9f3f7c3bcf (IsA area place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "area is a kind of structure", "pln": ["(: cnet_isa_cb90efabb1 (IsA area structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "area is a kind of extent", "pln": ["(: cnet_isa_26781b8d0f (IsA area extent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "area is a kind of body part", "pln": ["(: cnet_isa_2fc34ee987 (IsA area body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "area is a kind of topic", "pln": ["(: cnet_isa_0fb2414cbd (IsA area topic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "area is a kind of region", "pln": ["(: cnet_isa_599db16244 (IsA area region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "area code is a kind of code", "pln": ["(: cnet_isa_443c14115f (IsA area_code code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "area of cardiac dullness is a kind of area", "pln": ["(: cnet_isa_4992b8d134 (IsA area_of_cardiac_dullness area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "area unit is a kind of unit of measurement", "pln": ["(: cnet_isa_f50b37bfa2 (IsA area_unit unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "areaway is a kind of passageway", "pln": ["(: cnet_isa_b498c8e27d (IsA areaway passageway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "areca is a kind of feather palm", "pln": ["(: cnet_isa_f652edfbb8 (IsA areca feather_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arecidae is a kind of class", "pln": ["(: cnet_isa_1e40324609 (IsA arecidae class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "areflexia is a kind of symptom", "pln": ["(: cnet_isa_e03758b88c (IsA areflexia symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arena is a kind of area", "pln": ["(: cnet_isa_adad8f79ac (IsA arena area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arena is a kind of playing field", "pln": ["(: cnet_isa_f38d53c734 (IsA arena playing_field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arena theater is a kind of theater", "pln": ["(: cnet_isa_62226b7e2e (IsA arena_theater theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arenaceous rock is a kind of sedimentary rock", "pln": ["(: cnet_isa_5d674bc5d0 (IsA arenaceous_rock sedimentary_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arenaria is a kind of bird genus", "pln": ["(: cnet_isa_b7d7283f02 (IsA arenaria bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "arenaria is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_8cdcdb7a2d (IsA arenaria caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arenaviridae is a kind of arbovirus", "pln": ["(: cnet_isa_4f81ee11e4 (IsA arenaviridae arbovirus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arenavirus is a kind of animal virus", "pln": ["(: cnet_isa_92d3629fa9 (IsA arenavirus animal_virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arenga is a kind of plant genus", "pln": ["(: cnet_isa_109d0ce974 (IsA arenga plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "areola is a kind of area", "pln": ["(: cnet_isa_093e55d53c (IsA areola area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "areola is a kind of interstice", "pln": ["(: cnet_isa_c0447e90d7 (IsA areola interstice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "areolar tissue is a kind of connective tissue", "pln": ["(: cnet_isa_afba899dde (IsA areolar_tissue connective_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "areopagite is a kind of member", "pln": ["(: cnet_isa_09b411a019 (IsA areopagite member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "areopagus is a kind of assembly", "pln": ["(: cnet_isa_9e96698443 (IsA areopagus assembly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arete is a kind of ridge", "pln": ["(: cnet_isa_0f35ad3aaa (IsA arete ridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arethusa is a kind of orchid", "pln": ["(: cnet_isa_013df241a3 (IsA arethusa orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argali is a kind of wild sheep", "pln": ["(: cnet_isa_5ba9b947ee (IsA argali wild_sheep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argasidae is a kind of arthropod family", "pln": ["(: cnet_isa_111261a4a6 (IsA argasidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argent is a kind of tincture", "pln": ["(: cnet_isa_f44dd82a21 (IsA argent tincture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argentina is a kind of fish genus", "pln": ["(: cnet_isa_252de6eb63 (IsA argentina fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argentine is a kind of soft finned fish", "pln": ["(: cnet_isa_812db844ff (IsA argentine soft_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "argentine hemorrhagic fever is a kind of hemorrhagic fever", "pln": ["(: cnet_isa_6371640320 (IsA argentine_hemorrhagic_fever hemorrhagic_fever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argentine monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_396f1478b3 (IsA argentine_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argentinian is a kind of south american", "pln": ["(: cnet_isa_cd33c77143 (IsA argentinian south_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argentinidae is a kind of fish family", "pln": ["(: cnet_isa_5e5f61b288 (IsA argentinidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argentinosaur is a kind of dinosaur", "pln": ["(: cnet_isa_66a40af31d (IsA argentinosaur dinosaur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argentite is a kind of mineral", "pln": ["(: cnet_isa_c4d03a32d3 (IsA argentite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argil is a kind of clay", "pln": ["(: cnet_isa_8a0f49efdf (IsA argil clay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argillaceous rock is a kind of sedimentary rock", "pln": ["(: cnet_isa_03f299aaf1 (IsA argillaceous_rock sedimentary_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argillite is a kind of sedimentary rock", "pln": ["(: cnet_isa_1371743a2e (IsA argillite sedimentary_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arginine is a kind of essential amino acid", "pln": ["(: cnet_isa_02c8c3d461 (IsA arginine essential_amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argiope is a kind of arthropod genus", "pln": ["(: cnet_isa_b37150b4b7 (IsA argiope arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argiopidae is a kind of arthropod family", "pln": ["(: cnet_isa_723b9a48c1 (IsA argiopidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argive is a kind of hellene", "pln": ["(: cnet_isa_05a78b789b (IsA argive hellene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argon is a kind of inert gas", "pln": ["(: cnet_isa_1ee0ee80f9 (IsA argon inert_gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argon is a kind of chemical element", "pln": ["(: cnet_isa_0c6c5bd2f1 (IsA argon chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argon is a kind of noble gas", "pln": ["(: cnet_isa_529ba2f2de (IsA argon noble_gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argonaut is a kind of adventurer", "pln": ["(: cnet_isa_3e5f1f81e9 (IsA argonaut adventurer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argonauta is a kind of mollusk genus", "pln": ["(: cnet_isa_ecec525548 (IsA argonauta mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "argonautidae is a kind of mollusk family", "pln": ["(: cnet_isa_07257ae6aa (IsA argonautidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argosy is a kind of fleet", "pln": ["(: cnet_isa_50cbb7913f (IsA argosy fleet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argument is a kind of variable", "pln": ["(: cnet_isa_3466b4f5d8 (IsA argument variable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argument is a kind of discussion", "pln": ["(: cnet_isa_191a271733 (IsA argument discussion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argument is a kind of evidence", "pln": ["(: cnet_isa_a23873cd0a (IsA argument evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argument is a kind of summary", "pln": ["(: cnet_isa_a6afaf4e82 (IsA argument summary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "argumentation is a kind of reasoning", "pln": ["(: cnet_isa_7be0385565 (IsA argumentation reasoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argus is a kind of pheasant", "pln": ["(: cnet_isa_e9e3886209 (IsA argus pheasant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argus is a kind of giant", "pln": ["(: cnet_isa_4a0571b6d8 (IsA argus giant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argusianus is a kind of bird genus", "pln": ["(: cnet_isa_de380b454d (IsA argusianus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argy bargy is a kind of controversy", "pln": ["(: cnet_isa_0377e47f08 (IsA argy_bargy controversy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argyle is a kind of design", "pln": ["(: cnet_isa_06a1a7eff4 (IsA argyle design) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argyle is a kind of sock", "pln": ["(: cnet_isa_4264d7fa5a (IsA argyle sock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argyll is a kind of gravy boat", "pln": ["(: cnet_isa_8e441f0ced (IsA argyll gravy_boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argynnis is a kind of arthropod genus", "pln": ["(: cnet_isa_bbf07c65de (IsA argynnis arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "argyranthemum is a kind of asterid dicot genus", "pln": ["(: cnet_isa_70e9c3a9bd (IsA argyranthemum asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argyreia is a kind of dicot genus", "pln": ["(: cnet_isa_df6ac56425 (IsA argyreia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argyrodite is a kind of mineral", "pln": ["(: cnet_isa_c2b0913362 (IsA argyrodite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argyrotaenia is a kind of arthropod genus", "pln": ["(: cnet_isa_0c65b26800 (IsA argyrotaenia arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "argyroxiphium is a kind of asterid dicot genus", "pln": ["(: cnet_isa_b7fc4f6824 (IsA argyroxiphium asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aria is a kind of song", "pln": ["(: cnet_isa_11a4179949 (IsA aria song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arianism is a kind of heresy", "pln": ["(: cnet_isa_fe3585eca9 (IsA arianism heresy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arianism is a kind of theological doctrine", "pln": ["(: cnet_isa_5277d78edf (IsA arianism theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arianist is a kind of christian", "pln": ["(: cnet_isa_0043d1ce0d (IsA arianist christian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aricara is a kind of caddo", "pln": ["(: cnet_isa_21489a10bb (IsA aricara caddo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aridity is a kind of dryness", "pln": ["(: cnet_isa_aadf25fea9 (IsA aridity dryness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arietta is a kind of aria", "pln": ["(: cnet_isa_6fa9a84347 (IsA arietta aria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ariidae is a kind of fish family", "pln": ["(: cnet_isa_e877a35a4a (IsA ariidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arikara is a kind of caddo", "pln": ["(: cnet_isa_8e6aa20f55 (IsA arikara caddo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aril is a kind of plant part", "pln": ["(: cnet_isa_5b1ffb2397 (IsA aril plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arilus is a kind of arthropod genus", "pln": ["(: cnet_isa_dd192e735e (IsA arilus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ariocarpus is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_362a23546e (IsA ariocarpus caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ariomma is a kind of fish genus", "pln": ["(: cnet_isa_b54a3500c2 (IsA ariomma fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "arioso is a kind of recitative", "pln": ["(: cnet_isa_49f91dbdc5 (IsA arioso recitative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arisaema is a kind of monocot genus", "pln": ["(: cnet_isa_7db0d10338 (IsA arisaema monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arisarum is a kind of monocot genus", "pln": ["(: cnet_isa_1007c8dc7a (IsA arisarum monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arista is a kind of process", "pln": ["(: cnet_isa_f71fb94dea (IsA arista process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aristocrat is a kind of leader", "pln": ["(: cnet_isa_a345a7ef63 (IsA aristocrat leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aristolochia is a kind of dicot genus", "pln": ["(: cnet_isa_b46eea8b12 (IsA aristolochia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aristolochiaceae is a kind of dicot family", "pln": ["(: cnet_isa_362221bec8 (IsA aristolochiaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aristolochiale is a kind of plant order", "pln": ["(: cnet_isa_9c64cfdf40 (IsA aristolochiale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aristotelean is a kind of disciple", "pln": ["(: cnet_isa_fbb66c4081 (IsA aristotelean disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aristotelia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_e74363b727 (IsA aristotelia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aristotelian logic is a kind of logic", "pln": ["(: cnet_isa_c65ca73fcf (IsA aristotelian_logic logic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aristotelianism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_fa67ebf809 (IsA aristotelianism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arithmancy is a kind of divination", "pln": ["(: cnet_isa_8737440042 (IsA arithmancy divination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arithmetic is a kind of math", "pln": ["(: cnet_isa_269c6b40cd (IsA arithmetic math) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arithmetic is a kind of pure mathematic", "pln": ["(: cnet_isa_81eabbedf1 (IsA arithmetic pure_mathematic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arithmetic mean is a kind of mean", "pln": ["(: cnet_isa_ceb092cafe (IsA arithmetic_mean mean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arithmetic operation is a kind of mathematical process", "pln": ["(: cnet_isa_c5c12bf7bf (IsA arithmetic_operation mathematical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "arithmetic progression is a kind of progression", "pln": ["(: cnet_isa_c21b77284b (IsA arithmetic_progression progression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arithmetician is a kind of mathematician", "pln": ["(: cnet_isa_5b0f354f90 (IsA arithmetician mathematician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arity is a kind of number", "pln": ["(: cnet_isa_f9a43a35da (IsA arity number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arius is a kind of fish genus", "pln": ["(: cnet_isa_59412ecaa2 (IsA arius fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arizona is a kind of state", "pln": ["(: cnet_isa_8c93dc6750 (IsA arizona state) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arizona is a kind of reptile genus", "pln": ["(: cnet_isa_ad446f7c7e (IsA arizona reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arizona ash is a kind of ash", "pln": ["(: cnet_isa_9f21713e89 (IsA arizona_ash ash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arizona cypress is a kind of cypress", "pln": ["(: cnet_isa_0d55368cd9 (IsA arizona_cypress cypress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arizona state song is a kind of arizona", "pln": ["(: cnet_isa_f7831fc867 (IsA arizona_state_song arizona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arizona sycamore is a kind of plane tree", "pln": ["(: cnet_isa_86fcaf9b11 (IsA arizona_sycamore plane_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arizona white oak is a kind of white oak", "pln": ["(: cnet_isa_e6b9e82c3b (IsA arizona_white_oak white_oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arizonian is a kind of american", "pln": ["(: cnet_isa_dba6d79b98 (IsA arizonian american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ark is a kind of boat", "pln": ["(: cnet_isa_ceba876681 (IsA ark boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ark shell is a kind of bivalve", "pln": ["(: cnet_isa_d58ba73ada (IsA ark_shell bivalve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arkansa is a kind of state", "pln": ["(: cnet_isa_b7a41c2c4d (IsA arkansa state) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arkansa kingbird is a kind of kingbird", "pln": ["(: cnet_isa_1d5a88f80a (IsA arkansa_kingbird kingbird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arkansa state song is a kind of arkansa", "pln": ["(: cnet_isa_e443bd42b6 (IsA arkansa_state_song arkansa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arkansawyer is a kind of american", "pln": ["(: cnet_isa_70967b8153 (IsA arkansawyer american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arm s length is a kind of distance", "pln": ["(: cnet_isa_8a006145ea (IsA arm_s_length distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arm is a kind of armrest", "pln": ["(: cnet_isa_e1b57b03e5 (IsA arm armrest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arm is a kind of projection", "pln": ["(: cnet_isa_fe5e06deaa (IsA arm projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arm is a kind of limb", "pln": ["(: cnet_isa_747a690d2f (IsA arm limb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arm bone is a kind of long bone", "pln": ["(: cnet_isa_9981b68c31 (IsA arm_bone long_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arm exercise is a kind of exercise", "pln": ["(: cnet_isa_a103d7400e (IsA arm_exercise exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arm guard is a kind of protective garment", "pln": ["(: cnet_isa_e931ae95c2 (IsA arm_guard protective_garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arm twisting is a kind of persuasion", "pln": ["(: cnet_isa_710c1b5eb6 (IsA arm_twisting persuasion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armada is a kind of fleet", "pln": ["(: cnet_isa_64f464963f (IsA armada fleet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armadillidiidae is a kind of arthropod family", "pln": ["(: cnet_isa_ebc4251c8b (IsA armadillidiidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armadillidium is a kind of arthropod genus", "pln": ["(: cnet_isa_29d7ba7fc3 (IsA armadillidium arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armadillo is a kind of mammal", "pln": ["(: cnet_isa_6ce1c1927d (IsA armadillo mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armadillo is a kind of edentate", "pln": ["(: cnet_isa_2a18f0623f (IsA armadillo edentate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armageddon is a kind of battle", "pln": ["(: cnet_isa_5a1401dffa (IsA armageddon battle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "armagnac is a kind of brandy", "pln": ["(: cnet_isa_fe69635618 (IsA armagnac brandy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armament is a kind of weaponry", "pln": ["(: cnet_isa_2de00096d7 (IsA armament weaponry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armamentarium is a kind of collection", "pln": ["(: cnet_isa_1578288961 (IsA armamentarium collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armature is a kind of coil", "pln": ["(: cnet_isa_01d40ee5f1 (IsA armature coil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armband is a kind of band", "pln": ["(: cnet_isa_7797faf13d (IsA armband band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armband is a kind of visual signal", "pln": ["(: cnet_isa_973c3af09b (IsA armband visual_signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armchair is a kind of chair", "pln": ["(: cnet_isa_6d9eaaad09 (IsA armchair chair) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armchair liberal is a kind of liberal", "pln": ["(: cnet_isa_837d52cdcb (IsA armchair_liberal liberal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armed force censorship is a kind of military censorship", "pln": ["(: cnet_isa_d5c59630e7 (IsA armed_force_censorship military_censorship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armed force day is a kind of day", "pln": ["(: cnet_isa_da72f0330f (IsA armed_force_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armed robbery is a kind of robbery", "pln": ["(: cnet_isa_5cd23619d2 (IsA armed_robbery robbery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "armenia is a kind of very small country in eurasia", "pln": ["(: cnet_isa_881e4e0f54 (IsA armenia very_small_country_in_eurasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armenian is a kind of alphabet", "pln": ["(: cnet_isa_9622174ddc (IsA armenian alphabet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armenian is a kind of indo european", "pln": ["(: cnet_isa_8e664c714d (IsA armenian indo_european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armenian is a kind of asiatic", "pln": ["(: cnet_isa_b84ff2cb68 (IsA armenian asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "armenian church is a kind of church", "pln": ["(: cnet_isa_77a129302c (IsA armenian_church church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armenian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_85a50f1e6a (IsA armenian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armeria is a kind of dicot genus", "pln": ["(: cnet_isa_91e5b76937 (IsA armeria dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armet is a kind of helmet", "pln": ["(: cnet_isa_9315ebf94d (IsA armet helmet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armful is a kind of containerful", "pln": ["(: cnet_isa_7b6b869009 (IsA armful containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armhole is a kind of hole", "pln": ["(: cnet_isa_5200ecac47 (IsA armhole hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "armiger is a kind of nobleman", "pln": ["(: cnet_isa_14b11e5395 (IsA armiger nobleman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armiger is a kind of squire", "pln": ["(: cnet_isa_49f0b7ef7d (IsA armiger squire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armilla is a kind of bracelet", "pln": ["(: cnet_isa_37bf32e837 (IsA armilla bracelet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armillaria is a kind of fungus genus", "pln": ["(: cnet_isa_609df0ffb4 (IsA armillaria fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armillaria caligata is a kind of agaric", "pln": ["(: cnet_isa_5b6a676196 (IsA armillaria_caligata agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armillaria ponderosa is a kind of agaric", "pln": ["(: cnet_isa_49001f585f (IsA armillaria_ponderosa agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armillaria zelleri is a kind of agaric", "pln": ["(: cnet_isa_eae8d8ed01 (IsA armillaria_zelleri agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "armillariella is a kind of fungus genus", "pln": ["(: cnet_isa_736bbe5150 (IsA armillariella fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "armillary sphere is a kind of celestial globe", "pln": ["(: cnet_isa_e21ffa5aeb (IsA armillary_sphere celestial_globe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arming is a kind of mobilization", "pln": ["(: cnet_isa_74dbaffaa6 (IsA arming mobilization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arminian is a kind of disciple", "pln": ["(: cnet_isa_8d780687d5 (IsA arminian disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arminian baptist is a kind of baptist denomination", "pln": ["(: cnet_isa_a7ae5f2632 (IsA arminian_baptist baptist_denomination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arminian church is a kind of protestant denomination", "pln": ["(: cnet_isa_baba547748 (IsA arminian_church protestant_denomination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arminianism is a kind of protestantism", "pln": ["(: cnet_isa_795096b773 (IsA arminianism protestantism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armistice is a kind of peace", "pln": ["(: cnet_isa_fa57976c53 (IsA armistice peace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armlet is a kind of band", "pln": ["(: cnet_isa_1b92f110fc (IsA armlet band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armoire is a kind of wardrobe", "pln": ["(: cnet_isa_5e82b9c3ed (IsA armoire wardrobe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armor is a kind of protective covering", "pln": ["(: cnet_isa_4e3a92e104 (IsA armor protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "armor is a kind of military unit", "pln": ["(: cnet_isa_9ac6e1d3ec (IsA armor military_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armor plate is a kind of plate", "pln": ["(: cnet_isa_ed1d39bbc2 (IsA armor_plate plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armoracia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_b947ec51ba (IsA armoracia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armored car is a kind of armored vehicle", "pln": ["(: cnet_isa_2041a51f94 (IsA armored_car armored_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armored catfish is a kind of catfish", "pln": ["(: cnet_isa_333f9a6989 (IsA armored_catfish catfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armored dinosaur is a kind of ornithischian", "pln": ["(: cnet_isa_e1db50cd66 (IsA armored_dinosaur ornithischian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armored personnel carrier is a kind of armored vehicle", "pln": ["(: cnet_isa_3b3c60c361 (IsA armored_personnel_carrier armored_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armored scale is a kind of scale insect", "pln": ["(: cnet_isa_673c4e4cfe (IsA armored_scale scale_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armored searobin is a kind of sea robin", "pln": ["(: cnet_isa_1d598d3c02 (IsA armored_searobin sea_robin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armored vehicle is a kind of self propelled vehicle", "pln": ["(: cnet_isa_af3a9542fe (IsA armored_vehicle self_propelled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armorer is a kind of manufacturer", "pln": ["(: cnet_isa_277011f64d (IsA armorer manufacturer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armorer is a kind of enlisted man", "pln": ["(: cnet_isa_656303d3cf (IsA armorer enlisted_man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armory is a kind of foundry", "pln": ["(: cnet_isa_11b0472a0b (IsA armory foundry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armory is a kind of resource", "pln": ["(: cnet_isa_57c72a5162 (IsA armory resource) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armourer is a kind of skilled worker", "pln": ["(: cnet_isa_28ffbf74d6 (IsA armourer skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armpit is a kind of cavity", "pln": ["(: cnet_isa_67940db480 (IsA armpit cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armrest is a kind of rest", "pln": ["(: cnet_isa_91b25f5170 (IsA armrest rest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arm control is a kind of limitation", "pln": ["(: cnet_isa_ff5a22a872 (IsA arm_control limitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arm deal is a kind of deal", "pln": ["(: cnet_isa_f8e096ad57 (IsA arm_deal deal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arm manufacturer is a kind of manufacturer", "pln": ["(: cnet_isa_4628f0064e (IsA arm_manufacturer manufacturer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arm race is a kind of race", "pln": ["(: cnet_isa_2206da2744 (IsA arm_race race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "army is a kind of military force", "pln": ["(: cnet_isa_80b8b72fe5 (IsA army military_force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "army is a kind of crowd", "pln": ["(: cnet_isa_412c7dfb42 (IsA army crowd) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "army is a kind of military service", "pln": ["(: cnet_isa_0b184eef25 (IsA army military_service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "army ant is a kind of ant", "pln": ["(: cnet_isa_dedd0df1e4 (IsA army_ant ant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "army attache is a kind of military attache", "pln": ["(: cnet_isa_8596c0d8f0 (IsA army_attache military_attache) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "army base is a kind of base", "pln": ["(: cnet_isa_e9f1a2de84 (IsA army_base base) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "army brat is a kind of child", "pln": ["(: cnet_isa_3577126542 (IsA army_brat child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "army cutworm is a kind of cutworm", "pln": ["(: cnet_isa_5aefecf196 (IsA army_cutworm cutworm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "army engineer is a kind of engineer", "pln": ["(: cnet_isa_d0d1106e82 (IsA army_engineer engineer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "army intelligence is a kind of agency", "pln": ["(: cnet_isa_b5323f78ca (IsA army_intelligence agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "army national guard is a kind of national guard", "pln": ["(: cnet_isa_44ccfc4cf2 (IsA army_national_guard national_guard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "army officer is a kind of military officer", "pln": ["(: cnet_isa_eab18a0fe2 (IsA army_officer military_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "army unit is a kind of military unit", "pln": ["(: cnet_isa_30ffd04168 (IsA army_unit military_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armyworm is a kind of caterpillar", "pln": ["(: cnet_isa_fa4086afca (IsA armyworm caterpillar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "armyworm is a kind of fungus gnat", "pln": ["(: cnet_isa_d857f926b7 (IsA armyworm fungus_gnat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "armyworm is a kind of noctuid moth", "pln": ["(: cnet_isa_89220f1e83 (IsA armyworm noctuid_moth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arnica is a kind of ointment", "pln": ["(: cnet_isa_945304171a (IsA arnica ointment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arnica is a kind of herb", "pln": ["(: cnet_isa_9ffd230754 (IsA arnica herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arnica is a kind of tincture", "pln": ["(: cnet_isa_4e4b7ccf69 (IsA arnica tincture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arnica montana is a kind of wildflower", "pln": ["(: cnet_isa_89028be603 (IsA arnica_montana wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arnold chiari deformity is a kind of deformity", "pln": ["(: cnet_isa_61ee7f63ab (IsA arnold_chiari_deformity deformity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arnoseris is a kind of asterid dicot genus", "pln": ["(: cnet_isa_fcd6856146 (IsA arnoseris asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aroeira blanca is a kind of tree", "pln": ["(: cnet_isa_5a7cfeb54b (IsA aroeira_blanca tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "aroma is a kind of smell", "pln": ["(: cnet_isa_9e42c791e3 (IsA aroma smell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aromatherapy is a kind of therapy", "pln": ["(: cnet_isa_871fb6ee82 (IsA aromatherapy therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "aromatic aster is a kind of aster", "pln": ["(: cnet_isa_0a0732adb5 (IsA aromatic_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aromatic compound is a kind of hydrocarbon", "pln": ["(: cnet_isa_70045808d2 (IsA aromatic_compound hydrocarbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aromatic hydrocarbon is a kind of hydrocarbon", "pln": ["(: cnet_isa_4038ee1026 (IsA aromatic_hydrocarbon hydrocarbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arousal is a kind of change of state", "pln": ["(: cnet_isa_a83dfcba5f (IsA arousal change_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arousal is a kind of wakefulness", "pln": ["(: cnet_isa_4989e17a3f (IsA arousal wakefulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arousal is a kind of physiological state", "pln": ["(: cnet_isa_20c837cd4e (IsA arousal physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "arpeggio is a kind of chord", "pln": ["(: cnet_isa_bfc1a26270 (IsA arpeggio chord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arpent is a kind of area unit", "pln": ["(: cnet_isa_6fb98b5a1d (IsA arpent area_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arquebus is a kind of muzzle loader", "pln": ["(: cnet_isa_c35dbe3747 (IsA arquebus muzzle_loader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arrack is a kind of liquor", "pln": ["(: cnet_isa_f1d5dba0df (IsA arrack liquor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arraignment is a kind of legal document", "pln": ["(: cnet_isa_bd4a0a8486 (IsA arraignment legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arrangement is a kind of composing", "pln": ["(: cnet_isa_a3af00623a (IsA arrangement composing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arrangement is a kind of structure", "pln": ["(: cnet_isa_d4914b4ae7 (IsA arrangement structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arrangement is a kind of group", "pln": ["(: cnet_isa_04f4b06b49 (IsA arrangement group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arranger is a kind of musician", "pln": ["(: cnet_isa_aba92a82a1 (IsA arranger musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "array is a kind of clothing", "pln": ["(: cnet_isa_692a42c4da (IsA array clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "array is a kind of directional antenna", "pln": ["(: cnet_isa_99eaecb299 (IsA array directional_antenna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "array is a kind of display", "pln": ["(: cnet_isa_680c51e0c0 (IsA array display) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "array is a kind of arrangement", "pln": ["(: cnet_isa_54fcf51427 (IsA array arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arrear is a kind of debt", "pln": ["(: cnet_isa_d6baa55040 (IsA arrear debt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arrear is a kind of indebtedness", "pln": ["(: cnet_isa_fcdae35f2b (IsA arrear indebtedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "arrest is a kind of inaction", "pln": ["(: cnet_isa_675313fb5d (IsA arrest inaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arrested development is a kind of abnormality", "pln": ["(: cnet_isa_b19b607c6b (IsA arrested_development abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "arrester is a kind of restraint", "pln": ["(: cnet_isa_7262272b10 (IsA arrester restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arrhenatherum is a kind of plant genus", "pln": ["(: cnet_isa_e973addee9 (IsA arrhenatherum plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arrival is a kind of accomplishment", "pln": ["(: cnet_isa_502b0a6355 (IsA arrival accomplishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arrival is a kind of action", "pln": ["(: cnet_isa_b64047911d (IsA arrival action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arrival is a kind of traveler", "pln": ["(: cnet_isa_1802c208ea (IsA arrival traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arrival gate is a kind of gate", "pln": ["(: cnet_isa_b09820d985 (IsA arrival_gate gate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arrival time is a kind of point", "pln": ["(: cnet_isa_0b6c2763e8 (IsA arrival_time point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arroba is a kind of liquid unit", "pln": ["(: cnet_isa_3001894d7f (IsA arroba liquid_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arroba is a kind of weight unit", "pln": ["(: cnet_isa_ba6311db65 (IsA arroba weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arrogance is a kind of pride", "pln": ["(: cnet_isa_662aba0947 (IsA arrogance pride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arrogator is a kind of person", "pln": ["(: cnet_isa_70025a16c4 (IsA arrogator person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arrow is a kind of projectile", "pln": ["(: cnet_isa_4011044ace (IsA arrow projectile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arrow is a kind of mark", "pln": ["(: cnet_isa_89b7f3f0c6 (IsA arrow mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arrow arum is a kind of aquatic plant", "pln": ["(: cnet_isa_f478022812 (IsA arrow_arum aquatic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "arrow grass is a kind of marsh plant", "pln": ["(: cnet_isa_113ddc5772 (IsA arrow_grass marsh_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arrow leaved aster is a kind of aster", "pln": ["(: cnet_isa_39e716a4ed (IsA arrow_leaved_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arrow wood is a kind of shrub", "pln": ["(: cnet_isa_9f98b8efce (IsA arrow_wood shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arrowhead is a kind of point", "pln": ["(: cnet_isa_29f4cb0847 (IsA arrowhead point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arrowleaf groundsel is a kind of wildflower", "pln": ["(: cnet_isa_083646f22f (IsA arrowleaf_groundsel wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arrowroot is a kind of maranta", "pln": ["(: cnet_isa_7c374f2806 (IsA arrowroot maranta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arrowroot is a kind of starch", "pln": ["(: cnet_isa_5d1161a853 (IsA arrowroot starch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arrowsmith is a kind of smith", "pln": ["(: cnet_isa_98a6a79ad0 (IsA arrowsmith smith) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arrowworm is a kind of worm", "pln": ["(: cnet_isa_0c95fa2a2a (IsA arrowworm worm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arroyo is a kind of gully", "pln": ["(: cnet_isa_a6f4f9cb77 (IsA arroyo gully) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arroyo willow is a kind of willow", "pln": ["(: cnet_isa_37c2d5fe84 (IsA arroyo_willow willow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arroz con pollo is a kind of chicken and rice", "pln": ["(: cnet_isa_19bc6ca092 (IsA arroz_con_pollo chicken_and_rice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arsehole is a kind of anus", "pln": ["(: cnet_isa_323d760d92 (IsA arsehole anus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arsenal is a kind of armament", "pln": ["(: cnet_isa_39f4a79382 (IsA arsenal armament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arsenal is a kind of military installation", "pln": ["(: cnet_isa_09440880bc (IsA arsenal military_installation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arsenate is a kind of salt", "pln": ["(: cnet_isa_665ad1c848 (IsA arsenate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "arsenic is a kind of element", "pln": ["(: cnet_isa_68ca57a7a0 (IsA arsenic element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arsenic is a kind of poison", "pln": ["(: cnet_isa_7b1cd18668 (IsA arsenic poison) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arsenic is a kind of chemical element", "pln": ["(: cnet_isa_b77d9b974f (IsA arsenic chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arsenic is a kind of trioxide", "pln": ["(: cnet_isa_d36dd663c0 (IsA arsenic trioxide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arsenic acid is a kind of acid", "pln": ["(: cnet_isa_aaa58ee03f (IsA arsenic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arsenical is a kind of drug", "pln": ["(: cnet_isa_682a4b30fd (IsA arsenical drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arsenical is a kind of pesticide", "pln": ["(: cnet_isa_2558ec3f66 (IsA arsenical pesticide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arsenide is a kind of compound", "pln": ["(: cnet_isa_b4826da435 (IsA arsenide compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arsenopyrite is a kind of mineral", "pln": ["(: cnet_isa_e3e5450f3e (IsA arsenopyrite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arsine is a kind of gas", "pln": ["(: cnet_isa_1e185996ab (IsA arsine gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arson is a kind of crime involving fire", "pln": ["(: cnet_isa_4867d2d1ea (IsA arson crime_involving_fire) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arson is a kind of burning", "pln": ["(: cnet_isa_3075e3fa21 (IsA arson burning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arsonist is a kind of criminal", "pln": ["(: cnet_isa_7093a40fd6 (IsA arsonist criminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "art is a kind of way of expressing human emotion", "pln": ["(: cnet_isa_918a54df22 (IsA art way_of_expressing_human_emotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "art is a kind of way of expressing yourself", "pln": ["(: cnet_isa_b0227034ef (IsA art way_of_expressing_yourself) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "art is a kind of creation", "pln": ["(: cnet_isa_c4f6ccfece (IsA art creation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "art is a kind of superior skill", "pln": ["(: cnet_isa_3186b776c3 (IsA art superior_skill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "art class is a kind of course", "pln": ["(: cnet_isa_2f9bda9f75 (IsA art_class course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "art collection is a kind of collection", "pln": ["(: cnet_isa_19939a11b5 (IsA art_collection collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "art critic is a kind of critic", "pln": ["(: cnet_isa_fcf282dcfe (IsA art_critic critic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "art dealer is a kind of trader", "pln": ["(: cnet_isa_bc76fbe250 (IsA art_dealer trader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "art deco is a kind of artistic movement", "pln": ["(: cnet_isa_874fa77da8 (IsA art_deco artistic_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "art department is a kind of academic department", "pln": ["(: cnet_isa_e6a9f19229 (IsA art_department academic_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "art director is a kind of stage director", "pln": ["(: cnet_isa_0af30351b7 (IsA art_director stage_director) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "art editor is a kind of editor", "pln": ["(: cnet_isa_3f3a374465 (IsA art_editor editor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "art exhibition is a kind of exhibition", "pln": ["(: cnet_isa_22810bdc22 (IsA art_exhibition exhibition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "art form is a kind of kind", "pln": ["(: cnet_isa_641d03d169 (IsA art_form kind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "art historian is a kind of historian", "pln": ["(: cnet_isa_12038b71dc (IsA art_historian historian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "art history is a kind of humanistic discipline", "pln": ["(: cnet_isa_14b49df57b (IsA art_history humanistic_discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "art nouveau is a kind of artistic movement", "pln": ["(: cnet_isa_fceff1acf2 (IsA art_nouveau artistic_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "art nouveau is a kind of school", "pln": ["(: cnet_isa_a21f1cbbd4 (IsA art_nouveau school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "art paper is a kind of paper", "pln": ["(: cnet_isa_333a189c0f (IsA art_paper paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "art school is a kind of conservatory", "pln": ["(: cnet_isa_02311e6c60 (IsA art_school conservatory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "art student is a kind of student", "pln": ["(: cnet_isa_3842bbd76a (IsA art_student student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "art teacher is a kind of teacher", "pln": ["(: cnet_isa_a03e66134e (IsA art_teacher teacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artamidae is a kind of bird family", "pln": ["(: cnet_isa_4cb267650b (IsA artamidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artamus is a kind of bird genus", "pln": ["(: cnet_isa_0f5258969e (IsA artamus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artemia is a kind of arthropod genus", "pln": ["(: cnet_isa_940e051cf6 (IsA artemia arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artemisia is a kind of shrub", "pln": ["(: cnet_isa_0d45def7f0 (IsA artemisia shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arterial blood is a kind of blood", "pln": ["(: cnet_isa_3a404ebfe7 (IsA arterial_blood blood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arterial blood gas is a kind of measurement", "pln": ["(: cnet_isa_23da189a70 (IsA arterial_blood_gas measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arterial plaque is a kind of plaque", "pln": ["(: cnet_isa_ec15581879 (IsA arterial_plaque plaque) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "arterial pressure is a kind of blood pressure", "pln": ["(: cnet_isa_47e06f6e82 (IsA arterial_pressure blood_pressure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arterial road is a kind of highway", "pln": ["(: cnet_isa_00a2a14068 (IsA arterial_road highway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arteriectasis is a kind of pathology", "pln": ["(: cnet_isa_1abedf99b8 (IsA arteriectasis pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arteriogram is a kind of roentgenogram", "pln": ["(: cnet_isa_3ffb7bde1e (IsA arteriogram roentgenogram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arteriography is a kind of arthrography", "pln": ["(: cnet_isa_2302550820 (IsA arteriography arthrography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arteriole is a kind of artery", "pln": ["(: cnet_isa_073d2d1101 (IsA arteriole artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arteriolosclerosis is a kind of sclerosis", "pln": ["(: cnet_isa_5d365a90a6 (IsA arteriolosclerosis sclerosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arteriosclerosis is a kind of sclerosis", "pln": ["(: cnet_isa_f9a255b58e (IsA arteriosclerosis sclerosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arteriosclerosis obliteran is a kind of arteriosclerosis", "pln": ["(: cnet_isa_debb243037 (IsA arteriosclerosis_obliteran arteriosclerosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arteritis is a kind of inflammation", "pln": ["(: cnet_isa_3dd9179542 (IsA arteritis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artery is a kind of blood vessel", "pln": ["(: cnet_isa_58007a63aa (IsA artery blood_vessel) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artery is a kind of thoroughfare", "pln": ["(: cnet_isa_f1153c7083 (IsA artery thoroughfare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artery of penis bulb is a kind of artery", "pln": ["(: cnet_isa_367c9313f8 (IsA artery_of_penis_bulb artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artery of vestibule bulb is a kind of artery", "pln": ["(: cnet_isa_8b0328b85d (IsA artery_of_vestibule_bulb artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artesian well is a kind of well", "pln": ["(: cnet_isa_0adf24f30b (IsA artesian_well well) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "artfulness is a kind of disingenuousness", "pln": ["(: cnet_isa_4c5710ba77 (IsA artfulness disingenuousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arthralgia is a kind of pain", "pln": ["(: cnet_isa_12a8975a54 (IsA arthralgia pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arthritic is a kind of patient", "pln": ["(: cnet_isa_94dec8ceaa (IsA arthritic patient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arthritis is a kind of inflammatory disease", "pln": ["(: cnet_isa_97e65f1d08 (IsA arthritis inflammatory_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arthrocentesis is a kind of centesis", "pln": ["(: cnet_isa_313334c8b5 (IsA arthrocentesis centesis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arthrodesis is a kind of arthroplasty", "pln": ["(: cnet_isa_6994ef9569 (IsA arthrodesis arthroplasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arthrogram is a kind of roentgenogram", "pln": ["(: cnet_isa_0ede438032 (IsA arthrogram roentgenogram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arthrography is a kind of roentgenography", "pln": ["(: cnet_isa_bcdf976d59 (IsA arthrography roentgenography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arthromere is a kind of external body part", "pln": ["(: cnet_isa_c8334f970e (IsA arthromere external_body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arthropathy is a kind of pathology", "pln": ["(: cnet_isa_996ae5f80e (IsA arthropathy pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arthroplasty is a kind of operation", "pln": ["(: cnet_isa_8360d37493 (IsA arthroplasty operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arthropod is a kind of invertebrate", "pln": ["(: cnet_isa_cef3a2dea2 (IsA arthropod invertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arthropod family is a kind of family", "pln": ["(: cnet_isa_3815c1927e (IsA arthropod_family family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arthropod genus is a kind of genus", "pln": ["(: cnet_isa_8653065ebb (IsA arthropod_genus genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arthropoda is a kind of phylum", "pln": ["(: cnet_isa_1d37830534 (IsA arthropoda phylum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arthropteris is a kind of fern genus", "pln": ["(: cnet_isa_8efd7d494a (IsA arthropteris fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arthroscope is a kind of endoscope", "pln": ["(: cnet_isa_6a1572dd54 (IsA arthroscope endoscope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arthroscopy is a kind of operation", "pln": ["(: cnet_isa_54e1fe1f18 (IsA arthroscopy operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arthrospore is a kind of cell", "pln": ["(: cnet_isa_ea2c54d7f9 (IsA arthrospore cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arthurian legend is a kind of legend", "pln": ["(: cnet_isa_6ad42fdbff (IsA arthurian_legend legend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artic winter is a kind of cold and dry environment", "pln": ["(: cnet_isa_2b4597d248 (IsA artic_winter cold_and_dry_environment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "artichoke is a kind of vegetable", "pln": ["(: cnet_isa_3e4b67b1d3 (IsA artichoke vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artichoke heart is a kind of vegetable", "pln": ["(: cnet_isa_0509ba268c (IsA artichoke_heart vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "article is a kind of artifact", "pln": ["(: cnet_isa_bfed6ba0d2 (IsA article artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "article is a kind of nonfiction", "pln": ["(: cnet_isa_68f95366f3 (IsA article nonfiction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "article is a kind of piece", "pln": ["(: cnet_isa_2902a5aa56 (IsA article piece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "article is a kind of section", "pln": ["(: cnet_isa_d41aa0e1a5 (IsA article section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "article is a kind of determiner", "pln": ["(: cnet_isa_80b7d6943c (IsA article determiner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "article of commerce is a kind of article", "pln": ["(: cnet_isa_79cbb3f758 (IsA article_of_commerce article) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "article of commerce is a kind of ware", "pln": ["(: cnet_isa_679c6e7645 (IsA article_of_commerce ware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "article of faith is a kind of dogma", "pln": ["(: cnet_isa_d2187089bc (IsA article_of_faith dogma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "article of agreement is a kind of contract", "pln": ["(: cnet_isa_05d5c59f4b (IsA article_of_agreement contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "article of incorporation is a kind of legal document", "pln": ["(: cnet_isa_a448e68d3e (IsA article_of_incorporation legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "articular muscle is a kind of skeletal muscle", "pln": ["(: cnet_isa_48612b1e2f (IsA articular_muscle skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "articulated ladder is a kind of ladder", "pln": ["(: cnet_isa_92f121ba28 (IsA articulated_ladder ladder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "articulation is a kind of joining", "pln": ["(: cnet_isa_98f95a21cb (IsA articulation joining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "articulation is a kind of expression", "pln": ["(: cnet_isa_cd0b78114b (IsA articulation expression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "articulation is a kind of pronunciation", "pln": ["(: cnet_isa_430d4c1843 (IsA articulation pronunciation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "articulation is a kind of connection", "pln": ["(: cnet_isa_c28805541a (IsA articulation connection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "articulator is a kind of speech organ", "pln": ["(: cnet_isa_2268e27976 (IsA articulator speech_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "articulator is a kind of communicator", "pln": ["(: cnet_isa_3288483cd5 (IsA articulator communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "articulatory system is a kind of system", "pln": ["(: cnet_isa_ee27509d93 (IsA articulatory_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artifact is a kind of whole", "pln": ["(: cnet_isa_a5e9d43a26 (IsA artifact whole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artificial blood is a kind of liquid", "pln": ["(: cnet_isa_bce96b9355 (IsA artificial_blood liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artificial flower is a kind of art", "pln": ["(: cnet_isa_af193d52dc (IsA artificial_flower art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artificial heart is a kind of implant", "pln": ["(: cnet_isa_7962014041 (IsA artificial_heart implant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artificial horizon is a kind of navigational instrument", "pln": ["(: cnet_isa_ffd10f6f06 (IsA artificial_horizon navigational_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artificial insemination is a kind of insemination", "pln": ["(: cnet_isa_4a94d41db7 (IsA artificial_insemination insemination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artificial intelligence is a kind of computer science", "pln": ["(: cnet_isa_db4a258d31 (IsA artificial_intelligence computer_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "artificial joint is a kind of implant", "pln": ["(: cnet_isa_4c52ea144f (IsA artificial_joint implant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artificial kidney is a kind of dialyzer", "pln": ["(: cnet_isa_79dec05bd2 (IsA artificial_kidney dialyzer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artificial language is a kind of language", "pln": ["(: cnet_isa_c27d496cb0 (IsA artificial_language language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artificial respiration is a kind of breathing", "pln": ["(: cnet_isa_7940965390 (IsA artificial_respiration breathing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artificial respiration is a kind of emergency procedure", "pln": ["(: cnet_isa_71911a99e7 (IsA artificial_respiration emergency_procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "artificial skin is a kind of covering", "pln": ["(: cnet_isa_cb347b5c8b (IsA artificial_skin covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artificiality is a kind of unnaturalness", "pln": ["(: cnet_isa_bdba1cbde8 (IsA artificiality unnaturalness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artillery is a kind of armament", "pln": ["(: cnet_isa_ac20426127 (IsA artillery armament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artillery is a kind of army unit", "pln": ["(: cnet_isa_1acd4431c6 (IsA artillery army_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artillery fire is a kind of fire", "pln": ["(: cnet_isa_ba1e832009 (IsA artillery_fire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artillery plant is a kind of nettle", "pln": ["(: cnet_isa_e8339a496b (IsA artillery_plant nettle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artillery shell is a kind of shell", "pln": ["(: cnet_isa_086cfead79 (IsA artillery_shell shell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artilleryman is a kind of serviceman", "pln": ["(: cnet_isa_225b967cc1 (IsA artilleryman serviceman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artiodactyla is a kind of animal order", "pln": ["(: cnet_isa_a14f3c5e32 (IsA artiodactyla animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artisan s lien is a kind of lien", "pln": ["(: cnet_isa_450bbc0215 (IsA artisan_s_lien lien) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artist s loft is a kind of artist s workroom", "pln": ["(: cnet_isa_18790ac12f (IsA artist_s_loft artist_s_workroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "artist s loft is a kind of loft", "pln": ["(: cnet_isa_377e71ed18 (IsA artist_s_loft loft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artist s model is a kind of model", "pln": ["(: cnet_isa_df1786e073 (IsA artist_s_model model) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artist s workroom is a kind of studio", "pln": ["(: cnet_isa_6d7c830239 (IsA artist_s_workroom studio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artist is a kind of creator", "pln": ["(: cnet_isa_ebcbb85db0 (IsA artist creator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "artiste is a kind of performer", "pln": ["(: cnet_isa_537eb77de9 (IsA artiste performer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artistic movement is a kind of movement", "pln": ["(: cnet_isa_98f3865a30 (IsA artistic_movement movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artistic style is a kind of manner", "pln": ["(: cnet_isa_36402a0918 (IsA artistic_style manner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artlessness is a kind of ingenuousness", "pln": ["(: cnet_isa_cc9263af23 (IsA artlessness ingenuousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artlessness is a kind of naivete", "pln": ["(: cnet_isa_0ac643e660 (IsA artlessness naivete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artocarpus is a kind of dicot genus", "pln": ["(: cnet_isa_671c1c855d (IsA artocarpus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "art and craft is a kind of art", "pln": ["(: cnet_isa_769b91207c (IsA art_and_craft art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "artwork is a kind of visual communication", "pln": ["(: cnet_isa_022401c3a4 (IsA artwork visual_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arulo is a kind of artificial language", "pln": ["(: cnet_isa_8c6031cce6 (IsA arulo artificial_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arum is a kind of herb", "pln": ["(: cnet_isa_1b1f2c58c0 (IsA arum herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arum is a kind of starch", "pln": ["(: cnet_isa_baa318ac77 (IsA arum starch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "arundinaria is a kind of monocot genus", "pln": ["(: cnet_isa_44ec8eab2d (IsA arundinaria monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "arundo is a kind of monocot genus", "pln": ["(: cnet_isa_d8abd502e7 (IsA arundo monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "asbestos is a kind of amphibole", "pln": ["(: cnet_isa_48aea41a52 (IsA asbestos amphibole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arvicola is a kind of mammal genus", "pln": ["(: cnet_isa_8329be4f52 (IsA arvicola mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aryan is a kind of white person", "pln": ["(: cnet_isa_b097cb865e (IsA aryan white_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "arytenoid is a kind of cartilage", "pln": ["(: cnet_isa_3e5f3bb06d (IsA arytenoid cartilage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asafetida is a kind of natural resin", "pln": ["(: cnet_isa_c640d14d9e (IsA asafetida natural_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asana is a kind of position", "pln": ["(: cnet_isa_ac52fadbf8 (IsA asana position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asarabacca is a kind of wild ginger", "pln": ["(: cnet_isa_f4bec9ade7 (IsA asarabacca wild_ginger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asarh is a kind of hindu calendar month", "pln": ["(: cnet_isa_738d288f6c (IsA asarh hindu_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asarum is a kind of dicot genus", "pln": ["(: cnet_isa_d6cebecd62 (IsA asarum dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asbesto is a kind of amphibole", "pln": ["(: cnet_isa_ddff47b91c (IsA asbesto amphibole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asbesto abatement is a kind of abatement of nuisance", "pln": ["(: cnet_isa_0ca83bb14e (IsA asbesto_abatement abatement_of_nuisance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asbestosis is a kind of pneumoconiosis", "pln": ["(: cnet_isa_308606afc0 (IsA asbestosis pneumoconiosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ascaphidae is a kind of amphibian family", "pln": ["(: cnet_isa_1f10db637c (IsA ascaphidae amphibian_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ascaphus is a kind of amphibian genus", "pln": ["(: cnet_isa_7d52fc90ba (IsA ascaphus amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ascariasis is a kind of infestation", "pln": ["(: cnet_isa_78289e8a95 (IsA ascariasis infestation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ascaridae is a kind of worm family", "pln": ["(: cnet_isa_ec7300a0b1 (IsA ascaridae worm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ascaridia is a kind of worm genus", "pln": ["(: cnet_isa_7cc5735ade (IsA ascaridia worm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ascaris is a kind of worm genus", "pln": ["(: cnet_isa_e93dd7907b (IsA ascaris worm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ascendant is a kind of dominance", "pln": ["(: cnet_isa_d0db167d89 (IsA ascendant dominance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ascender is a kind of letter", "pln": ["(: cnet_isa_aaf67a6c84 (IsA ascender letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ascender is a kind of mover", "pln": ["(: cnet_isa_4cb87360c6 (IsA ascender mover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ascender is a kind of line", "pln": ["(: cnet_isa_38328580f3 (IsA ascender line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ascending aorta is a kind of aorta", "pln": ["(: cnet_isa_e66a627a8c (IsA ascending_aorta aorta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ascending artery is a kind of artery", "pln": ["(: cnet_isa_c9f2ea74ef (IsA ascending_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ascending colon is a kind of colon", "pln": ["(: cnet_isa_ffe8687a7a (IsA ascending_colon colon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ascending node is a kind of node", "pln": ["(: cnet_isa_2d36f651a3 (IsA ascending_node node) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ascension is a kind of change of location", "pln": ["(: cnet_isa_4a4bb0b2a5 (IsA ascension change_of_location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ascension is a kind of holy day of obligation", "pln": ["(: cnet_isa_152cc3d78c (IsA ascension holy_day_of_obligation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ascent is a kind of slope", "pln": ["(: cnet_isa_347c0dc51b (IsA ascent slope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asceticism is a kind of self denial", "pln": ["(: cnet_isa_64e6a64def (IsA asceticism self_denial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "asceticism is a kind of doctrine", "pln": ["(: cnet_isa_cdffbf1a79 (IsA asceticism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "ascomycetes is a kind of class", "pln": ["(: cnet_isa_19cca94eef (IsA ascomycetes class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ascidiaceae is a kind of class", "pln": ["(: cnet_isa_9063645c2a (IsA ascidiaceae class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ascidian is a kind of tunicate", "pln": ["(: cnet_isa_2c286c9bf1 (IsA ascidian tunicate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ascidian tadpole is a kind of larva", "pln": ["(: cnet_isa_03964ef04f (IsA ascidian_tadpole larva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ascii character is a kind of character", "pln": ["(: cnet_isa_4126a8e8bf (IsA ascii_character character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ascii text file is a kind of text file", "pln": ["(: cnet_isa_595dc95a73 (IsA ascii_text_file text_file) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ascite is a kind of pathology", "pln": ["(: cnet_isa_0c24275573 (IsA ascite pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asclepiad is a kind of herb", "pln": ["(: cnet_isa_21bd86b9fb (IsA asclepiad herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asclepiadaceae is a kind of dicot family", "pln": ["(: cnet_isa_8e0b337cf9 (IsA asclepiadaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asclepia is a kind of dicot genus", "pln": ["(: cnet_isa_5dd4df96ad (IsA asclepia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ascocarp is a kind of fruiting body", "pln": ["(: cnet_isa_26c362b9ab (IsA ascocarp fruiting_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ascolichen is a kind of lichen", "pln": ["(: cnet_isa_7bd9db4828 (IsA ascolichen lichen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ascoma is a kind of ascocarp", "pln": ["(: cnet_isa_70f7a334a7 (IsA ascoma ascocarp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ascomycete is a kind of fungus", "pln": ["(: cnet_isa_03291fea88 (IsA ascomycete fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ascomycete is a kind of class", "pln": ["(: cnet_isa_25f891dd6c (IsA ascomycete class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ascomycota is a kind of division", "pln": ["(: cnet_isa_016e180222 (IsA ascomycota division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ascophyllum is a kind of protoctist genus", "pln": ["(: cnet_isa_2806594ad6 (IsA ascophyllum protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ascospore is a kind of spore", "pln": ["(: cnet_isa_2d6038b99b (IsA ascospore spore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ascot is a kind of cravat", "pln": ["(: cnet_isa_36564edb1a (IsA ascot cravat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ascus is a kind of reproductive structure", "pln": ["(: cnet_isa_1d0f42fa8b (IsA ascus reproductive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asepsis is a kind of sanitariness", "pln": ["(: cnet_isa_a6326a5c7f (IsA asepsis sanitariness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asexual reproduction is a kind of reproduction", "pln": ["(: cnet_isa_4bfce32950 (IsA asexual_reproduction reproduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asexuality is a kind of physiological property", "pln": ["(: cnet_isa_0b6e43f6d7 (IsA asexuality physiological_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asgard is a kind of imaginary place", "pln": ["(: cnet_isa_850007da43 (IsA asgard imaginary_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ash is a kind of tree", "pln": ["(: cnet_isa_cc54f1e703 (IsA ash tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ash is a kind of wood", "pln": ["(: cnet_isa_602dea61c0 (IsA ash wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ash is a kind of residue", "pln": ["(: cnet_isa_48cdf59430 (IsA ash residue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ash can is a kind of artistic movement", "pln": ["(: cnet_isa_06954446eb (IsA ash_can artistic_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ash gray is a kind of gray", "pln": ["(: cnet_isa_39ee4cfb22 (IsA ash_gray gray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ash key is a kind of seed", "pln": ["(: cnet_isa_591514e789 (IsA ash_key seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ash pan is a kind of receptacle", "pln": ["(: cnet_isa_a1e3c204d8 (IsA ash_pan receptacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ash wednesday is a kind of christian holy day", "pln": ["(: cnet_isa_8ed2046184 (IsA ash_wednesday christian_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ashcake is a kind of cornbread", "pln": ["(: cnet_isa_a1294fa6eb (IsA ashcake cornbread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ashcan is a kind of bin", "pln": ["(: cnet_isa_dea1381f40 (IsA ashcan bin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ashcan school is a kind of artistic movement", "pln": ["(: cnet_isa_93f42131f0 (IsA ashcan_school artistic_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ashcan school is a kind of school", "pln": ["(: cnet_isa_f5c0cbd086 (IsA ashcan_school school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ashkenazi is a kind of israelite", "pln": ["(: cnet_isa_ab1ed0da46 (IsA ashkenazi israelite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ashlar is a kind of building block", "pln": ["(: cnet_isa_10b99df6fa (IsA ashlar building_block) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ashlar is a kind of stone", "pln": ["(: cnet_isa_c96c9b8d9c (IsA ashlar stone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ashram is a kind of retreat", "pln": ["(: cnet_isa_e375aae17a (IsA ashram retreat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ashtray is a kind of receptacle", "pln": ["(: cnet_isa_af1366d633 (IsA ashtray receptacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asia is a kind of continent", "pln": ["(: cnet_isa_31ec71d508 (IsA asia continent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asia is a kind of collection", "pln": ["(: cnet_isa_249d002ff3 (IsA asia collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asian american is a kind of american", "pln": ["(: cnet_isa_cd5dff275b (IsA asian_american american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asian black grouse is a kind of black grouse", "pln": ["(: cnet_isa_a7ea94193b (IsA asian_black_grouse black_grouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asian coral snake is a kind of coral snake", "pln": ["(: cnet_isa_a4ab403066 (IsA asian_coral_snake coral_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asian country is a kind of country", "pln": ["(: cnet_isa_87423f90ec (IsA asian_country country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asian crocodile is a kind of crocodile", "pln": ["(: cnet_isa_ffbe8a806c (IsA asian_crocodile crocodile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asian horseshoe crab is a kind of arthropod", "pln": ["(: cnet_isa_dd7b4a0674 (IsA asian_horseshoe_crab arthropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asian influenza is a kind of influenza", "pln": ["(: cnet_isa_4ddaa52a46 (IsA asian_influenza influenza) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "asian longhorned beetle is a kind of beetle", "pln": ["(: cnet_isa_9a99557435 (IsA asian_longhorned_beetle beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asian tiger mosquito is a kind of mosquito", "pln": ["(: cnet_isa_1f678be3b6 (IsA asian_tiger_mosquito mosquito) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asian wild ox is a kind of ox", "pln": ["(: cnet_isa_d8674eb233 (IsA asian_wild_ox ox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asiatic is a kind of inhabitant", "pln": ["(: cnet_isa_38e81149ef (IsA asiatic inhabitant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "asiatic is a kind of person of color", "pln": ["(: cnet_isa_59ee1bd93e (IsA asiatic person_of_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asiatic black bear is a kind of bear", "pln": ["(: cnet_isa_cfd557369f (IsA asiatic_black_bear bear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asiatic flying squirrel is a kind of squirrel", "pln": ["(: cnet_isa_d1e0efcf8a (IsA asiatic_flying_squirrel squirrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asiatic shrew mole is a kind of shrew mole", "pln": ["(: cnet_isa_0f27ff5045 (IsA asiatic_shrew_mole shrew_mole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asiatic sweetleaf is a kind of flowering shrub", "pln": ["(: cnet_isa_681f9c10f4 (IsA asiatic_sweetleaf flowering_shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aside is a kind of actor s line", "pln": ["(: cnet_isa_05a0864bb3 (IsA aside actor_s_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asilidae is a kind of arthropod family", "pln": ["(: cnet_isa_dca9a1d757 (IsA asilidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asimina is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_02c0af7c90 (IsA asimina magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asin is a kind of hindu calendar month", "pln": ["(: cnet_isa_2a664befc3 (IsA asin hindu_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asininity is a kind of folly", "pln": ["(: cnet_isa_3c0a361bbc (IsA asininity folly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asio is a kind of bird genus", "pln": ["(: cnet_isa_d37850dd09 (IsA asio bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "asking price is a kind of price", "pln": ["(: cnet_isa_216f416d22 (IsA asking_price price) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asl is a kind of sign language", "pln": ["(: cnet_isa_bbd835ce9c (IsA asl sign_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asp is a kind of cobra", "pln": ["(: cnet_isa_fe30c98a44 (IsA asp cobra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asp is a kind of viper", "pln": ["(: cnet_isa_28b95a7a3b (IsA asp viper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspalathus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_bb175ca145 (IsA aspalathus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "asparagaceae is a kind of liliid monocot family", "pln": ["(: cnet_isa_b5f0ac3e36 (IsA asparagaceae liliid_monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asparagine is a kind of amino acid", "pln": ["(: cnet_isa_f0821082fe (IsA asparagine amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asparagus is a kind of vegetable", "pln": ["(: cnet_isa_f2166ecc8c (IsA asparagus vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asparagus is a kind of herb", "pln": ["(: cnet_isa_a792abeab0 (IsA asparagus herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asparagus bean is a kind of legume", "pln": ["(: cnet_isa_d001d9f996 (IsA asparagus_bean legume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asparagus bed is a kind of bed", "pln": ["(: cnet_isa_e8d7196d87 (IsA asparagus_bed bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asparagus fern is a kind of herb", "pln": ["(: cnet_isa_6d8c26b0d5 (IsA asparagus_fern herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspartame is a kind of sweetening", "pln": ["(: cnet_isa_b955db55c5 (IsA aspartame sweetening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspartic acid is a kind of amino acid", "pln": ["(: cnet_isa_33a41cd3ae (IsA aspartic_acid amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspect is a kind of characteristic", "pln": ["(: cnet_isa_ebeb0ddb41 (IsA aspect characteristic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspect is a kind of feature", "pln": ["(: cnet_isa_5abbc3aa82 (IsA aspect feature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspect is a kind of grammatical relation", "pln": ["(: cnet_isa_d0427647fc (IsA aspect grammatical_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspect ratio is a kind of ratio", "pln": ["(: cnet_isa_2699b2d401 (IsA aspect_ratio ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspen is a kind of poplar", "pln": ["(: cnet_isa_b7bcd5ddff (IsA aspen poplar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asper is a kind of turkish monetary unit", "pln": ["(: cnet_isa_f7f603304c (IsA asper turkish_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "asperger s syndrome is a kind of mental disorder", "pln": ["(: cnet_isa_facf0ac84a (IsA asperger_s_syndrome mental_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspergill is a kind of device", "pln": ["(: cnet_isa_dfb11f3d02 (IsA aspergill device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspergillaceae is a kind of fungus family", "pln": ["(: cnet_isa_64b8305323 (IsA aspergillaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "aspergillosis is a kind of animal disease", "pln": ["(: cnet_isa_efe9d7472a (IsA aspergillosis animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspergillosis is a kind of disease", "pln": ["(: cnet_isa_aded21834b (IsA aspergillosis disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspergillosis is a kind of opportunistic infection", "pln": ["(: cnet_isa_7d4c619655 (IsA aspergillosis opportunistic_infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspergillus is a kind of fungus genus", "pln": ["(: cnet_isa_0cb4c69ec1 (IsA aspergillus fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspergillus fumigatus is a kind of fungus", "pln": ["(: cnet_isa_f4ec0c5f58 (IsA aspergillus_fumigatus fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asperity is a kind of difficulty", "pln": ["(: cnet_isa_de6d9c05f3 (IsA asperity difficulty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "asperity is a kind of ill nature", "pln": ["(: cnet_isa_0098bc2862 (IsA asperity ill_nature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "aspersion is a kind of attack", "pln": ["(: cnet_isa_b8ee8e287c (IsA aspersion attack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspersion is a kind of baptism", "pln": ["(: cnet_isa_4c4b565410 (IsA aspersion baptism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspersion is a kind of disparagement", "pln": ["(: cnet_isa_1a51e9b1e9 (IsA aspersion disparagement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspersorium is a kind of basin", "pln": ["(: cnet_isa_ed00463f2c (IsA aspersorium basin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asperula is a kind of asterid dicot genus", "pln": ["(: cnet_isa_cb0d582d54 (IsA asperula asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asphalt is a kind of mineral", "pln": ["(: cnet_isa_b4a2965915 (IsA asphalt mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asphalt is a kind of paving material", "pln": ["(: cnet_isa_30de0be426 (IsA asphalt paving_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asphodel is a kind of liliaceous plant", "pln": ["(: cnet_isa_104e67e90c (IsA asphodel liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asphodelaceae is a kind of liliid monocot family", "pln": ["(: cnet_isa_c9bbcaa9ab (IsA asphodelaceae liliid_monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asphodeline is a kind of liliid monocot genus", "pln": ["(: cnet_isa_266918e3cb (IsA asphodeline liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asphodelus is a kind of liliid monocot genus", "pln": ["(: cnet_isa_11301df5e7 (IsA asphodelus liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asphyxia is a kind of physiological state", "pln": ["(: cnet_isa_a4b95bba11 (IsA asphyxia physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspic is a kind of gelatin", "pln": ["(: cnet_isa_5dd64a293d (IsA aspic gelatin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspidelap is a kind of reptile genus", "pln": ["(: cnet_isa_a5e3ed261a (IsA aspidelap reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspidiotus is a kind of arthropod genus", "pln": ["(: cnet_isa_582bb0e649 (IsA aspidiotus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspidistra is a kind of herb", "pln": ["(: cnet_isa_fe88199ea9 (IsA aspidistra herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspidophoroide is a kind of fish genus", "pln": ["(: cnet_isa_8ac9dd7f0f (IsA aspidophoroide fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspirant is a kind of applicant", "pln": ["(: cnet_isa_4fbc4f8d6d (IsA aspirant applicant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspirate is a kind of consonant", "pln": ["(: cnet_isa_1adeb4edbe (IsA aspirate consonant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspiration is a kind of ambition", "pln": ["(: cnet_isa_6eb2cb0ed4 (IsA aspiration ambition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspiration is a kind of articulation", "pln": ["(: cnet_isa_38f26dbe35 (IsA aspiration articulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspiration pneumonia is a kind of bronchopneumonia", "pln": ["(: cnet_isa_9223d2ac1a (IsA aspiration_pneumonia bronchopneumonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspirator is a kind of pump", "pln": ["(: cnet_isa_6fd306ef0b (IsA aspirator pump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspirin is a kind of medicine", "pln": ["(: cnet_isa_afa61d79a5 (IsA aspirin medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspirin is a kind of analgesic", "pln": ["(: cnet_isa_f7db79e464 (IsA aspirin analgesic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspirin is a kind of salicylate", "pln": ["(: cnet_isa_800e1d4164 (IsA aspirin salicylate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspirin powder is a kind of aspirin", "pln": ["(: cnet_isa_6dfdbb8d9b (IsA aspirin_powder aspirin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspirin powder is a kind of powder", "pln": ["(: cnet_isa_de44365596 (IsA aspirin_powder powder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aspleniaceae is a kind of fern family", "pln": ["(: cnet_isa_ea36d2f382 (IsA aspleniaceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asplenium is a kind of fern genus", "pln": ["(: cnet_isa_617a91bcf6 (IsA asplenium fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asprin is a kind of analgesic", "pln": ["(: cnet_isa_b417496ff2 (IsA asprin analgesic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ass is a kind of equine", "pln": ["(: cnet_isa_6c5d0e976b (IsA ass equine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ass is a kind of fool", "pln": ["(: cnet_isa_00a8e02fde (IsA ass fool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "assailability is a kind of vulnerability", "pln": ["(: cnet_isa_29db283f01 (IsA assailability vulnerability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assamese is a kind of magadhan", "pln": ["(: cnet_isa_9375ea24ca (IsA assamese magadhan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assamese is a kind of indian", "pln": ["(: cnet_isa_bf874d036f (IsA assamese indian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assassin is a kind of moslem", "pln": ["(: cnet_isa_94d1b84be1 (IsA assassin moslem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assassin is a kind of murderer", "pln": ["(: cnet_isa_60e794d235 (IsA assassin murderer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assassin bug is a kind of heteropterous insect", "pln": ["(: cnet_isa_f19bd1f4c0 (IsA assassin_bug heteropterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assassination is a kind of murder", "pln": ["(: cnet_isa_35e9cd39cb (IsA assassination murder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assault is a kind of attack", "pln": ["(: cnet_isa_18c737aee4 (IsA assault attack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assault is a kind of battle", "pln": ["(: cnet_isa_94587bd321 (IsA assault battle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assault gun is a kind of armored vehicle", "pln": ["(: cnet_isa_20b1d4ccae (IsA assault_gun armored_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assault rifle is a kind of automatic rifle", "pln": ["(: cnet_isa_92d4cc0d46 (IsA assault_rifle automatic_rifle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assay is a kind of test", "pln": ["(: cnet_isa_8552c68857 (IsA assay test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assay is a kind of appraisal", "pln": ["(: cnet_isa_3a316ad225 (IsA assay appraisal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assay is a kind of report", "pln": ["(: cnet_isa_232a119530 (IsA assay report) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "assay is a kind of substance", "pln": ["(: cnet_isa_9413e40549 (IsA assay substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "assemblies of god is a kind of protestant denomination", "pln": ["(: cnet_isa_2c48ec2a35 (IsA assemblies_of_god protestant_denomination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assayer is a kind of analyst", "pln": ["(: cnet_isa_0b6907877a (IsA assayer analyst) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assegai is a kind of spear", "pln": ["(: cnet_isa_e7c194924f (IsA assegai spear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assembler is a kind of program", "pln": ["(: cnet_isa_ee2236dd9d (IsA assembler program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assembly of god is a kind of protestant denomination", "pln": ["(: cnet_isa_c050012872 (IsA assembly_of_god protestant_denomination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assembly is a kind of group action", "pln": ["(: cnet_isa_a21058eba2 (IsA assembly group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assembly is a kind of machine", "pln": ["(: cnet_isa_20579496fb (IsA assembly machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assembly is a kind of whole", "pln": ["(: cnet_isa_0cc2ab7bd3 (IsA assembly whole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assembly is a kind of gathering", "pln": ["(: cnet_isa_72d11dfaad (IsA assembly gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assembly hall is a kind of auditorium", "pln": ["(: cnet_isa_1b9d92986b (IsA assembly_hall auditorium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assembly language is a kind of programming language", "pln": ["(: cnet_isa_fe01975013 (IsA assembly_language programming_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assembly plant is a kind of factory", "pln": ["(: cnet_isa_86e2261a52 (IsA assembly_plant factory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assemblyman is a kind of representative", "pln": ["(: cnet_isa_c5b72614f4 (IsA assemblyman representative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assemblywoman is a kind of representative", "pln": ["(: cnet_isa_3215e03ed4 (IsA assemblywoman representative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assent is a kind of agreement", "pln": ["(: cnet_isa_8968e26a43 (IsA assent agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assenter is a kind of respondent", "pln": ["(: cnet_isa_1d6298e3e7 (IsA assenter respondent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asserter is a kind of communicator", "pln": ["(: cnet_isa_97963253e6 (IsA asserter communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assertion is a kind of declaration", "pln": ["(: cnet_isa_110da9edac (IsA assertion declaration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "assertiveness is a kind of positivism", "pln": ["(: cnet_isa_dc4738ffe6 (IsA assertiveness positivism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assertiveness training is a kind of behavior therapy", "pln": ["(: cnet_isa_a80cc07a67 (IsA assertiveness_training behavior_therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "assessee is a kind of person", "pln": ["(: cnet_isa_a8c4496e75 (IsA assessee person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assessment is a kind of monetary value", "pln": ["(: cnet_isa_4c3ddca445 (IsA assessment monetary_value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assessment is a kind of charge", "pln": ["(: cnet_isa_65095c0bc1 (IsA assessment charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asset is a kind of quality", "pln": ["(: cnet_isa_d33d9164e2 (IsA asset quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asset is a kind of possession", "pln": ["(: cnet_isa_894107df98 (IsA asset possession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asshole is a kind of unpleasant person", "pln": ["(: cnet_isa_0cbf2a5cd4 (IsA asshole unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assibilation is a kind of development", "pln": ["(: cnet_isa_8150f70d31 (IsA assibilation development) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "assiduity is a kind of diligence", "pln": ["(: cnet_isa_aa3257fa4e (IsA assiduity diligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assignation is a kind of rendezvous", "pln": ["(: cnet_isa_8b183420c5 (IsA assignation rendezvous) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assignee is a kind of party", "pln": ["(: cnet_isa_523379615e (IsA assignee party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assignee is a kind of recipient", "pln": ["(: cnet_isa_05f113bb59 (IsA assignee recipient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "assignment is a kind of distribution", "pln": ["(: cnet_isa_5b5f24c839 (IsA assignment distribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assignment is a kind of duty", "pln": ["(: cnet_isa_cbf373b232 (IsA assignment duty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assignment is a kind of undertaking", "pln": ["(: cnet_isa_ae081655bd (IsA assignment undertaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assignment is a kind of legal document", "pln": ["(: cnet_isa_46a88c2aca (IsA assignment legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assignor is a kind of party", "pln": ["(: cnet_isa_ab4c594f91 (IsA assignor party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assimilation is a kind of developmental learning", "pln": ["(: cnet_isa_7f86a52c46 (IsA assimilation developmental_learning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assimilation is a kind of linguistic process", "pln": ["(: cnet_isa_69b6d3e091 (IsA assimilation linguistic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assimilation is a kind of organic process", "pln": ["(: cnet_isa_6f6cdf2f07 (IsA assimilation organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "assimilation is a kind of social process", "pln": ["(: cnet_isa_bd3745888e (IsA assimilation social_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "assimilation is a kind of relationship", "pln": ["(: cnet_isa_bc3140601b (IsA assimilation relationship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assist is a kind of maneuver", "pln": ["(: cnet_isa_bc54bcaee8 (IsA assist maneuver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assistant is a kind of worker", "pln": ["(: cnet_isa_68c6c90b5e (IsA assistant worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assistant professor is a kind of professor", "pln": ["(: cnet_isa_849e1411b6 (IsA assistant_professor professor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assisted suicide is a kind of suicide", "pln": ["(: cnet_isa_152ae8000f (IsA assisted_suicide suicide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "assize is a kind of regulation", "pln": ["(: cnet_isa_b796c8dc1e (IsA assize regulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assize is a kind of writ", "pln": ["(: cnet_isa_888a7bbe28 (IsA assize writ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assize is a kind of court", "pln": ["(: cnet_isa_e7225350df (IsA assize court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "associability is a kind of capability", "pln": ["(: cnet_isa_a5de59bd02 (IsA associability capability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "associate is a kind of accompaniment", "pln": ["(: cnet_isa_a1238e78fa (IsA associate accompaniment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "associate is a kind of peer", "pln": ["(: cnet_isa_42ce0dfd3d (IsA associate peer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "associate is a kind of subordinate", "pln": ["(: cnet_isa_2d3532d4e1 (IsA associate subordinate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "associate degree is a kind of academic degree", "pln": ["(: cnet_isa_5c8f5f04e6 (IsA associate_degree academic_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "associate in applied science is a kind of associate degree", "pln": ["(: cnet_isa_192fce1343 (IsA associate_in_applied_science associate_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "associate in art is a kind of associate degree", "pln": ["(: cnet_isa_05216f6491 (IsA associate_in_art associate_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "associate in nursing is a kind of associate degree", "pln": ["(: cnet_isa_95ecdf80c3 (IsA associate_in_nursing associate_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "associate professor is a kind of professor", "pln": ["(: cnet_isa_fa2d4f95b4 (IsA associate_professor professor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "associateship is a kind of position", "pln": ["(: cnet_isa_275c46801f (IsA associateship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "association is a kind of social activity", "pln": ["(: cnet_isa_6bf061a1f9 (IsA association social_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "association is a kind of chemical process", "pln": ["(: cnet_isa_8191b4f9f5 (IsA association chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "association is a kind of memory", "pln": ["(: cnet_isa_8f666ac87f (IsA association memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "association is a kind of group", "pln": ["(: cnet_isa_faba722e81 (IsA association group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "association is a kind of organization", "pln": ["(: cnet_isa_0960a4674b (IsA association organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "association is a kind of relation", "pln": ["(: cnet_isa_16e7776684 (IsA association relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "association is a kind of union", "pln": ["(: cnet_isa_a37988b4f9 (IsA association union) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "association area is a kind of cortical area", "pln": ["(: cnet_isa_52318109d5 (IsA association_area cortical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "association for advancement of retired person is a kind of association", "pln": ["(: cnet_isa_09d52fa19f (IsA association_for_advancement_of_retired_person association) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "association of southeast asian nation is a kind of association", "pln": ["(: cnet_isa_0e7c911330 (IsA association_of_southeast_asian_nation association) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "associationism is a kind of scientific theory", "pln": ["(: cnet_isa_e2512684c6 (IsA associationism scientific_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assonance is a kind of rhyme", "pln": ["(: cnet_isa_5905cbd1ae (IsA assonance rhyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assortative mating is a kind of coupling", "pln": ["(: cnet_isa_d472a67d56 (IsA assortative_mating coupling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assortment is a kind of collection", "pln": ["(: cnet_isa_abd6700b5b (IsA assortment collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assumption is a kind of acquisition", "pln": ["(: cnet_isa_727be19fca (IsA assumption acquisition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assumption is a kind of act", "pln": ["(: cnet_isa_7a6799e3fc (IsA assumption act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "assumption is a kind of miracle", "pln": ["(: cnet_isa_40ba208a11 (IsA assumption miracle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assumption is a kind of hypothesis", "pln": ["(: cnet_isa_c71e193f50 (IsA assumption hypothesis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assumption is a kind of holy day of obligation", "pln": ["(: cnet_isa_302d5b350d (IsA assumption holy_day_of_obligation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assurance is a kind of certainty", "pln": ["(: cnet_isa_ef28b62a31 (IsA assurance certainty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "assurance is a kind of commitment", "pln": ["(: cnet_isa_05db858b4c (IsA assurance commitment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assurance is a kind of statement", "pln": ["(: cnet_isa_da30db136f (IsA assurance statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assurance is a kind of insurance", "pln": ["(: cnet_isa_d3f174059d (IsA assurance insurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assyrian is a kind of akkadian", "pln": ["(: cnet_isa_4ea30a34ae (IsA assyrian akkadian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "assyrian is a kind of semite", "pln": ["(: cnet_isa_93741ad344 (IsA assyrian semite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assyrian neo aramaic is a kind of aramaic", "pln": ["(: cnet_isa_0ec9f87cde (IsA assyrian_neo_aramaic aramaic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "assyriology is a kind of archeology", "pln": ["(: cnet_isa_ad6056f48a (IsA assyriology archeology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astacidae is a kind of arthropod family", "pln": ["(: cnet_isa_27518dd06b (IsA astacidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astacus is a kind of arthropod genus", "pln": ["(: cnet_isa_746e61afcb (IsA astacus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astasia is a kind of disability", "pln": ["(: cnet_isa_12a372a6b9 (IsA astasia disability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astatic coil is a kind of coil", "pln": ["(: cnet_isa_dbce961410 (IsA astatic_coil coil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astatic galvanometer is a kind of galvanometer", "pln": ["(: cnet_isa_f95bcb272e (IsA astatic_galvanometer galvanometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astatine is a kind of chemical element", "pln": ["(: cnet_isa_d50d5bc0d7 (IsA astatine chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astatine is a kind of halogen", "pln": ["(: cnet_isa_a1fa59bcd1 (IsA astatine halogen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aster is a kind of structure", "pln": ["(: cnet_isa_bd0a0f72a5 (IsA aster structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aster is a kind of flower", "pln": ["(: cnet_isa_6a52b95256 (IsA aster flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astereognosis is a kind of agnosia", "pln": ["(: cnet_isa_846c5f2359 (IsA astereognosis agnosia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asterid dicot family is a kind of dicot family", "pln": ["(: cnet_isa_ff414b9987 (IsA asterid_dicot_family dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asterid dicot genus is a kind of dicot genus", "pln": ["(: cnet_isa_144ea5655c (IsA asterid_dicot_genus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asteridae is a kind of class", "pln": ["(: cnet_isa_7181b9db5b (IsA asteridae class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asterion is a kind of craniometric point", "pln": ["(: cnet_isa_ada44d2b25 (IsA asterion craniometric_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asterisk is a kind of character", "pln": ["(: cnet_isa_c9647bd9c3 (IsA asterisk character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asterism is a kind of natural object", "pln": ["(: cnet_isa_1e7c2f47aa (IsA asterism natural_object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asterism is a kind of star", "pln": ["(: cnet_isa_0807d2376f (IsA asterism star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asteroid is a kind of asteroid", "pln": ["(: cnet_isa_ec4d2b71fd (IsA asteroid asteroid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "asteroid is a kind of celestial body", "pln": ["(: cnet_isa_d414502629 (IsA asteroid celestial_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asteroid belt is a kind of belt", "pln": ["(: cnet_isa_a574d98b9d (IsA asteroid_belt belt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asteroidea is a kind of class", "pln": ["(: cnet_isa_15f327238f (IsA asteroidea class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asteroid is a kind of remnant planet", "pln": ["(: cnet_isa_f46b69165e (IsA asteroid remnant_planet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asterope is a kind of nymph", "pln": ["(: cnet_isa_198853b67a (IsA asterope nymph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "asthenia is a kind of infirmity", "pln": ["(: cnet_isa_e378aa5b29 (IsA asthenia infirmity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asthenic type is a kind of body type", "pln": ["(: cnet_isa_6fccc50cf4 (IsA asthenic_type body_type) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asthenosphere is a kind of layer", "pln": ["(: cnet_isa_bef24de407 (IsA asthenosphere layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asthma is a kind of respiratory disease", "pln": ["(: cnet_isa_0a6f2e4c98 (IsA asthma respiratory_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asthmatic is a kind of person", "pln": ["(: cnet_isa_23a32ac3ed (IsA asthmatic person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astigmatism is a kind of ametropia", "pln": ["(: cnet_isa_dc0ac70193 (IsA astigmatism ametropia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "astigmatism is a kind of condition", "pln": ["(: cnet_isa_5c6589c031 (IsA astigmatism condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astilbe is a kind of herb", "pln": ["(: cnet_isa_3f471d4fd4 (IsA astilbe herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astimagtism is a kind of common visual problem", "pln": ["(: cnet_isa_a605c2d56d (IsA astimagtism common_visual_problem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astonishment is a kind of feeling", "pln": ["(: cnet_isa_8f13fccc2a (IsA astonishment feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astragalus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_a0b29490ee (IsA astragalus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astrakhan is a kind of fur", "pln": ["(: cnet_isa_a85776d8f5 (IsA astrakhan fur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astrantia is a kind of herb", "pln": ["(: cnet_isa_3e868a9c97 (IsA astrantia herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astraphobia is a kind of simple phobia", "pln": ["(: cnet_isa_e831c9b10b (IsA astraphobia simple_phobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astreus is a kind of fungus genus", "pln": ["(: cnet_isa_22ffa5a566 (IsA astreus fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astreus hygrometricus is a kind of earthstar", "pln": ["(: cnet_isa_f3da135b59 (IsA astreus_hygrometricus earthstar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astreus pteridis is a kind of earthstar", "pln": ["(: cnet_isa_d79204cfd3 (IsA astreus_pteridis earthstar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astringency is a kind of contractility", "pln": ["(: cnet_isa_01648d0962 (IsA astringency contractility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "astringency is a kind of taste", "pln": ["(: cnet_isa_74f027ceaf (IsA astringency taste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "astronauts is a kind of people", "pln": ["(: cnet_isa_9e891fd93a (IsA astronauts people) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astringent is a kind of medicine", "pln": ["(: cnet_isa_f14d2518ba (IsA astringent medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astrobleme is a kind of crater", "pln": ["(: cnet_isa_d36576e413 (IsA astrobleme crater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astrocyte is a kind of neurogliacyte", "pln": ["(: cnet_isa_a81d702a36 (IsA astrocyte neurogliacyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astrodome is a kind of dome", "pln": ["(: cnet_isa_c718b30e5f (IsA astrodome dome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astrodynamic is a kind of astronomy", "pln": ["(: cnet_isa_4c8b56fcf0 (IsA astrodynamic astronomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astrogator is a kind of navigator", "pln": ["(: cnet_isa_dedcfa5008 (IsA astrogator navigator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astroglia is a kind of neuroglia", "pln": ["(: cnet_isa_f71c76389e (IsA astroglia neuroglia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astrolabe is a kind of sextant", "pln": ["(: cnet_isa_b9a9bb1596 (IsA astrolabe sextant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astrolatry is a kind of worship", "pln": ["(: cnet_isa_25c3d25229 (IsA astrolatry worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astrologer is a kind of forecaster", "pln": ["(: cnet_isa_5106b4f0b7 (IsA astrologer forecaster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astrology is a kind of pseudoscience", "pln": ["(: cnet_isa_6b655a43eb (IsA astrology pseudoscience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astroloma is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_d8860c9eba (IsA astroloma dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astrometry is a kind of astronomy", "pln": ["(: cnet_isa_b94b391f34 (IsA astrometry astronomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astronaut is a kind of traveler", "pln": ["(: cnet_isa_4f82d27944 (IsA astronaut traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astronaut is a kind of people", "pln": ["(: cnet_isa_a9e59388b0 (IsA astronaut people) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astronium is a kind of dicot genus", "pln": ["(: cnet_isa_13392db78a (IsA astronium dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "astronomer is a kind of physicist", "pln": ["(: cnet_isa_2d37ac8dcd (IsA astronomer physicist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astronomical telescope is a kind of telescope", "pln": ["(: cnet_isa_3d7ab92ef3 (IsA astronomical_telescope telescope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astronomical unit is a kind of astronomy unit", "pln": ["(: cnet_isa_a30dce36c9 (IsA astronomical_unit astronomy_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astronomy is a kind of science", "pln": ["(: cnet_isa_bddba90014 (IsA astronomy science) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astronomy is a kind of physic", "pln": ["(: cnet_isa_ae7c54c5c5 (IsA astronomy physic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astronomy satellite is a kind of satellite", "pln": ["(: cnet_isa_a58c66867e (IsA astronomy_satellite satellite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astronomy unit is a kind of linear unit", "pln": ["(: cnet_isa_55d45bcb01 (IsA astronomy_unit linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astrophysicist is a kind of astronomer", "pln": ["(: cnet_isa_566b2d4b4b (IsA astrophysicist astronomer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astrophysic is a kind of astronomy", "pln": ["(: cnet_isa_78b9b31e99 (IsA astrophysic astronomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astrophyton is a kind of echinoderm genus", "pln": ["(: cnet_isa_5c66df4374 (IsA astrophyton echinoderm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astrophyton muricatum is a kind of basket star", "pln": ["(: cnet_isa_893f62a899 (IsA astrophyton_muricatum basket_star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astropogon is a kind of fish genus", "pln": ["(: cnet_isa_5a9a44ad34 (IsA astropogon fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "astuteness is a kind of wisdom", "pln": ["(: cnet_isa_0604758655 (IsA astuteness wisdom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asvin is a kind of hindu deity", "pln": ["(: cnet_isa_3d3a4b29f0 (IsA asvin hindu_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asymmetry is a kind of spatial property", "pln": ["(: cnet_isa_2ce6188809 (IsA asymmetry spatial_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asymptote is a kind of straight line", "pln": ["(: cnet_isa_89367a4682 (IsA asymptote straight_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asynchronism is a kind of temporal relation", "pln": ["(: cnet_isa_14c893828c (IsA asynchronism temporal_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asynchronous operation is a kind of operation", "pln": ["(: cnet_isa_ffa34cb96f (IsA asynchronous_operation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asynchronous transfer mode is a kind of digital communication", "pln": ["(: cnet_isa_25d15ae735 (IsA asynchronous_transfer_mode digital_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "asynclitism is a kind of abnormality", "pln": ["(: cnet_isa_c4bb153ebc (IsA asynclitism abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asyndeton is a kind of rhetorical device", "pln": ["(: cnet_isa_45a61b3f30 (IsA asyndeton rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asynergy is a kind of pathology", "pln": ["(: cnet_isa_a3a426a423 (IsA asynergy pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "asystole is a kind of pathology", "pln": ["(: cnet_isa_81ab79bd08 (IsA asystole pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "at is a kind of laotian monetary unit", "pln": ["(: cnet_isa_8228ccbc1f (IsA at laotian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "at home is a kind of reception", "pln": ["(: cnet_isa_c8cc29fd57 (IsA at_home reception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "at top of arch is a kind of keystone", "pln": ["(: cnet_isa_cd17f8e371 (IsA at_top_of_arch keystone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atactic abasia is a kind of abasia", "pln": ["(: cnet_isa_1849adde0a (IsA atactic_abasia abasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atakapa is a kind of amerind", "pln": ["(: cnet_isa_4c52fa0ede (IsA atakapa amerind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ataraxia is a kind of repose", "pln": ["(: cnet_isa_bb0597fa5d (IsA ataraxia repose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "atavism is a kind of recurrence", "pln": ["(: cnet_isa_1d311f57bb (IsA atavism recurrence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atavist is a kind of organism", "pln": ["(: cnet_isa_4db76d6969 (IsA atavist organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ataxia is a kind of nervous disorder", "pln": ["(: cnet_isa_880979b3b4 (IsA ataxia nervous_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atelectasis is a kind of pathology", "pln": ["(: cnet_isa_c403876cfe (IsA atelectasis pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ateleiosis is a kind of infantilism", "pln": ["(: cnet_isa_de010c8eb3 (IsA ateleiosis infantilism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atele is a kind of mammal genus", "pln": ["(: cnet_isa_68ce04c548 (IsA atele mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "athabascan is a kind of native american", "pln": ["(: cnet_isa_dc75a71417 (IsA athabascan native_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "athanasian creed is a kind of creed", "pln": ["(: cnet_isa_aa541bda70 (IsA athanasian_creed creed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "athanasianism is a kind of theological doctrine", "pln": ["(: cnet_isa_47e26db1ea (IsA athanasianism theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "athanor is a kind of furnace", "pln": ["(: cnet_isa_d631d6b61a (IsA athanor furnace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "athapaskan is a kind of amerind", "pln": ["(: cnet_isa_154023c81d (IsA athapaskan amerind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atheism is a kind of unbelief", "pln": ["(: cnet_isa_b8a07a0462 (IsA atheism unbelief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atheist is a kind of disbeliever", "pln": ["(: cnet_isa_a9c2109096 (IsA atheist disbeliever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atheist is a kind of people", "pln": ["(: cnet_isa_8259c236ca (IsA atheist people) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "athenaeum is a kind of library", "pln": ["(: cnet_isa_f521afdb0c (IsA athenaeum library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "athenaeum is a kind of club", "pln": ["(: cnet_isa_8eda65babd (IsA athenaeum club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "athene is a kind of bird genus", "pln": ["(: cnet_isa_678575c2d6 (IsA athene bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "athenian is a kind of hellene", "pln": ["(: cnet_isa_6953da938f (IsA athenian hellene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atherinidae is a kind of fish family", "pln": ["(: cnet_isa_99ab383c5b (IsA atherinidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atherinopsis is a kind of fish genus", "pln": ["(: cnet_isa_cb4613e767 (IsA atherinopsis fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atherogenesis is a kind of pathology", "pln": ["(: cnet_isa_21a92b1fdb (IsA atherogenesis pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atheroma is a kind of adipose tissue", "pln": ["(: cnet_isa_8e82b3d2b6 (IsA atheroma adipose_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atherosclerosis is a kind of arteriosclerosis", "pln": ["(: cnet_isa_ff20b0a193 (IsA atherosclerosis arteriosclerosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atherurus is a kind of mammal genus", "pln": ["(: cnet_isa_fe41962088 (IsA atherurus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "athetosis is a kind of nervous disorder", "pln": ["(: cnet_isa_8f264dff4a (IsA athetosis nervous_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "athiorhodaceae is a kind of bacteria family", "pln": ["(: cnet_isa_e377713be8 (IsA athiorhodaceae bacteria_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "athlete s heart is a kind of heart", "pln": ["(: cnet_isa_474d2684c3 (IsA athlete_s_heart heart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "athlete is a kind of contestant", "pln": ["(: cnet_isa_3b5b2537b3 (IsA athlete contestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "athletic contest is a kind of contest", "pln": ["(: cnet_isa_882f339cf3 (IsA athletic_contest contest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "athletic facility is a kind of facility", "pln": ["(: cnet_isa_52f150bba2 (IsA athletic_facility facility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "athletic game is a kind of game", "pln": ["(: cnet_isa_423f20d3dc (IsA athletic_game game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "athletic game is a kind of sport", "pln": ["(: cnet_isa_814c077b6f (IsA athletic_game sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "athletic sock is a kind of sock", "pln": ["(: cnet_isa_afc4024609 (IsA athletic_sock sock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "athletic supporter is a kind of man s clothing", "pln": ["(: cnet_isa_fc44211588 (IsA athletic_supporter man_s_clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "athletic supporter is a kind of protective garment", "pln": ["(: cnet_isa_dc972aaf1b (IsA athletic_supporter protective_garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "athletic training is a kind of training", "pln": ["(: cnet_isa_3b16aae69b (IsA athletic_training training) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "athletic type is a kind of body type", "pln": ["(: cnet_isa_025d40d26b (IsA athletic_type body_type) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "athleticism is a kind of energy", "pln": ["(: cnet_isa_7d26aed93d (IsA athleticism energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "athletic is a kind of extracurricular activity", "pln": ["(: cnet_isa_30d67a4c88 (IsA athletic extracurricular_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "athrotaxis is a kind of gymnosperm genus", "pln": ["(: cnet_isa_f17a91e5dc (IsA athrotaxis gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "athyrium is a kind of fern genus", "pln": ["(: cnet_isa_89f4165bf6 (IsA athyrium fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atlanta is a kind of city", "pln": ["(: cnet_isa_fad80f690d (IsA atlanta city) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atlanta is a kind of in georgia", "pln": ["(: cnet_isa_63afb4f72d (IsA atlanta in_georgia) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "atlantic bottlenose dolphin is a kind of bottlenose dolphin", "pln": ["(: cnet_isa_a7d90906c6 (IsA atlantic_bottlenose_dolphin bottlenose_dolphin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atlantic cod is a kind of cod", "pln": ["(: cnet_isa_196564f98a (IsA atlantic_cod cod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atlantic croaker is a kind of croaker", "pln": ["(: cnet_isa_822527f549 (IsA atlantic_croaker croaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atlantic halibut is a kind of righteye flounder", "pln": ["(: cnet_isa_771388ae65 (IsA atlantic_halibut righteye_flounder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atlantic herring is a kind of herring", "pln": ["(: cnet_isa_d68aa230c4 (IsA atlantic_herring herring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atlantic manta is a kind of manta", "pln": ["(: cnet_isa_9422640f97 (IsA atlantic_manta manta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atlantic puffin is a kind of puffin", "pln": ["(: cnet_isa_9191fc3420 (IsA atlantic_puffin puffin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "atlantic ridley is a kind of ridley", "pln": ["(: cnet_isa_a83dd452d5 (IsA atlantic_ridley ridley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "atlantides is a kind of nymph", "pln": ["(: cnet_isa_0cff874306 (IsA atlantides nymph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "atlas is a kind of reference book", "pln": ["(: cnet_isa_07ce5a07ca (IsA atlas reference_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "atlas moth is a kind of giant silkworm moth", "pln": ["(: cnet_isa_f41a20c1e8 (IsA atlas_moth giant_silkworm_moth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atlantic sailfish is a kind of sailfish", "pln": ["(: cnet_isa_d4e20c7244 (IsA atlantic_sailfish sailfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atlantic salmon is a kind of salmon", "pln": ["(: cnet_isa_b6f2660b76 (IsA atlantic_salmon salmon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atlantic sea bream is a kind of sea bream", "pln": ["(: cnet_isa_4e18802d05 (IsA atlantic_sea_bream sea_bream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atlantic spiny dogfish is a kind of spiny dogfish", "pln": ["(: cnet_isa_4446a0d510 (IsA atlantic_spiny_dogfish spiny_dogfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atlantic time is a kind of civil time", "pln": ["(: cnet_isa_3c65fff3a1 (IsA atlantic_time civil_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atlantic tripletail is a kind of tripletail", "pln": ["(: cnet_isa_86fd2f5728 (IsA atlantic_tripletail tripletail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atlantic walrus is a kind of walrus", "pln": ["(: cnet_isa_9a0ad9bbb6 (IsA atlantic_walrus walrus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atlantide is a kind of nymph", "pln": ["(: cnet_isa_7137128038 (IsA atlantide nymph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atlantis is a kind of imaginary place", "pln": ["(: cnet_isa_8319f5ef06 (IsA atlantis imaginary_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atla is a kind of column", "pln": ["(: cnet_isa_6b580f2e4f (IsA atla column) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atla is a kind of cervical vertebra", "pln": ["(: cnet_isa_3d6a633eba (IsA atla cervical_vertebra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atla is a kind of reference book", "pln": ["(: cnet_isa_ec9b02d358 (IsA atla reference_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atla cedar is a kind of cedar", "pln": ["(: cnet_isa_dba59fbf62 (IsA atla_cedar cedar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atla moth is a kind of giant silkworm moth", "pln": ["(: cnet_isa_12cafbba10 (IsA atla_moth giant_silkworm_moth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atmometer is a kind of measuring instrument", "pln": ["(: cnet_isa_8d228e9260 (IsA atmometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atmosphere is a kind of region", "pln": ["(: cnet_isa_c63dc45931 (IsA atmosphere region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "atmosphere is a kind of gas", "pln": ["(: cnet_isa_64c38df83a (IsA atmosphere gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atmosphere is a kind of condition", "pln": ["(: cnet_isa_930d0a4776 (IsA atmosphere condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atmosphere is a kind of weather", "pln": ["(: cnet_isa_356369f56b (IsA atmosphere weather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atmospheric electricity is a kind of atmospheric phenomenon", "pln": ["(: cnet_isa_8cbd7002eb (IsA atmospheric_electricity atmospheric_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atmospheric electricity is a kind of electrical discharge", "pln": ["(: cnet_isa_c4481f5842 (IsA atmospheric_electricity electrical_discharge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atmospheric phenomenon is a kind of physical phenomenon", "pln": ["(: cnet_isa_05483e9e5a (IsA atmospheric_phenomenon physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atmospheric pressure is a kind of gas pressure", "pln": ["(: cnet_isa_b250616732 (IsA atmospheric_pressure gas_pressure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atole is a kind of mush", "pln": ["(: cnet_isa_8c04e912d1 (IsA atole mush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atoll is a kind of coral reef", "pln": ["(: cnet_isa_b35c52dd61 (IsA atoll coral_reef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atom is a kind of substance", "pln": ["(: cnet_isa_a17c110090 (IsA atom substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atom is a kind of material", "pln": ["(: cnet_isa_91339f5676 (IsA atom material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atom bomb is a kind of bomb", "pln": ["(: cnet_isa_66f689237f (IsA atom_bomb bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atom bomb is a kind of nuclear weapon", "pln": ["(: cnet_isa_9f9530a80f (IsA atom_bomb nuclear_weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atomic bomb is a kind of weapon", "pln": ["(: cnet_isa_9c220fd39b (IsA atomic_bomb weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atomic clock is a kind of timepiece", "pln": ["(: cnet_isa_44fc4fd253 (IsA atomic_clock timepiece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atomic cocktail is a kind of medicine", "pln": ["(: cnet_isa_e990c88a25 (IsA atomic_cocktail medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "atomic energy is a kind of energy", "pln": ["(: cnet_isa_640b2b05d2 (IsA atomic_energy energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atomic energy commission is a kind of executive agency", "pln": ["(: cnet_isa_4706897690 (IsA atomic_energy_commission executive_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atomic mass is a kind of mass", "pln": ["(: cnet_isa_98edd477ce (IsA atomic_mass mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atomic mass unit is a kind of mass unit", "pln": ["(: cnet_isa_c5650611b5 (IsA atomic_mass_unit mass_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atomic number is a kind of number", "pln": ["(: cnet_isa_8fa3d821a4 (IsA atomic_number number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atomic pile is a kind of nuclear reactor", "pln": ["(: cnet_isa_fbe381fe4c (IsA atomic_pile nuclear_reactor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atomic power is a kind of atomic energy", "pln": ["(: cnet_isa_1b10850753 (IsA atomic_power atomic_energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atomic spectrum is a kind of spectrum", "pln": ["(: cnet_isa_48ed18b2b3 (IsA atomic_spectrum spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atomic theory is a kind of scientific theory", "pln": ["(: cnet_isa_dd2526906e (IsA atomic_theory scientific_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atomic warhead is a kind of warhead", "pln": ["(: cnet_isa_a366c01442 (IsA atomic_warhead warhead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atomism is a kind of theory", "pln": ["(: cnet_isa_7ddbdecc5e (IsA atomism theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atomism is a kind of scientific theory", "pln": ["(: cnet_isa_b44335082b (IsA atomism scientific_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atomization is a kind of annihilation", "pln": ["(: cnet_isa_93a0ac41eb (IsA atomization annihilation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atomization is a kind of division", "pln": ["(: cnet_isa_e93a3bbb14 (IsA atomization division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "atomizer is a kind of dispenser", "pln": ["(: cnet_isa_c650b85fdd (IsA atomizer dispenser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atonality is a kind of musical notation", "pln": ["(: cnet_isa_b7c35f0628 (IsA atonality musical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atonement is a kind of damage", "pln": ["(: cnet_isa_78c79cb05f (IsA atonement damage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atonicity is a kind of condition", "pln": ["(: cnet_isa_0780fb03de (IsA atonicity condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atopic dermatitis is a kind of dermatitis", "pln": ["(: cnet_isa_ce8b207501 (IsA atopic_dermatitis dermatitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "atopognosia is a kind of nervous disorder", "pln": ["(: cnet_isa_eee955d245 (IsA atopognosia nervous_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atrazine is a kind of herbicide", "pln": ["(: cnet_isa_e9dfdb6ebf (IsA atrazine herbicide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atresia is a kind of abnormality", "pln": ["(: cnet_isa_82ad4b27c7 (IsA atresia abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atrial artery is a kind of coronary artery", "pln": ["(: cnet_isa_0ab103b6d6 (IsA atrial_artery coronary_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atrial fibrillation is a kind of cardiac arrhythmia", "pln": ["(: cnet_isa_1a4b0c4e52 (IsA atrial_fibrillation cardiac_arrhythmia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atrial fibrillation is a kind of fibrillation", "pln": ["(: cnet_isa_64d831fce3 (IsA atrial_fibrillation fibrillation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atrial septal defect is a kind of septal defect", "pln": ["(: cnet_isa_d515073767 (IsA atrial_septal_defect septal_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atrichornis is a kind of bird genus", "pln": ["(: cnet_isa_0fe155898e (IsA atrichornis bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "atrichornithidae is a kind of bird family", "pln": ["(: cnet_isa_81a3f4b76e (IsA atrichornithidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atrioventricular bundle is a kind of cardiac muscle", "pln": ["(: cnet_isa_010041df09 (IsA atrioventricular_bundle cardiac_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atrioventricular nodal rhythm is a kind of cardiac rhythm", "pln": ["(: cnet_isa_38f930f489 (IsA atrioventricular_nodal_rhythm cardiac_rhythm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "atrioventricular node is a kind of cardiac muscle", "pln": ["(: cnet_isa_050581f6a1 (IsA atrioventricular_node cardiac_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atrioventricular valve is a kind of heart valve", "pln": ["(: cnet_isa_200a957bf3 (IsA atrioventricular_valve heart_valve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atriplex is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_03b6d153d7 (IsA atriplex caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atrium is a kind of court", "pln": ["(: cnet_isa_5c748cf833 (IsA atrium court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atrium is a kind of chamber", "pln": ["(: cnet_isa_972fafe164 (IsA atrium chamber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atrium cordis is a kind of atrium", "pln": ["(: cnet_isa_2ea99e9483 (IsA atrium_cordis atrium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atrocity is a kind of cruelty", "pln": ["(: cnet_isa_e84543d0a3 (IsA atrocity cruelty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atrocity is a kind of inhumaneness", "pln": ["(: cnet_isa_73f17c7820 (IsA atrocity inhumaneness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atropa is a kind of asterid dicot genus", "pln": ["(: cnet_isa_457a606278 (IsA atropa asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atrophy is a kind of weakening", "pln": ["(: cnet_isa_abe90ba8a3 (IsA atrophy weakening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atrophy is a kind of symptom", "pln": ["(: cnet_isa_e7a552b914 (IsA atrophy symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atropidae is a kind of arthropod family", "pln": ["(: cnet_isa_abc774bbe2 (IsA atropidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atropina belladona is a kind of plant", "pln": ["(: cnet_isa_1d89ab42d8 (IsA atropina_belladona plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atropine is a kind of alkaloid", "pln": ["(: cnet_isa_227b3e2816 (IsA atropine alkaloid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atropine is a kind of antidote", "pln": ["(: cnet_isa_f48f473209 (IsA atropine antidote) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atropine is a kind of antispasmodic", "pln": ["(: cnet_isa_6154ab1e2b (IsA atropine antispasmodic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atropine is a kind of mydriatic", "pln": ["(: cnet_isa_72ea525fa9 (IsA atropine mydriatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atropine is a kind of poison", "pln": ["(: cnet_isa_b40f80afd2 (IsA atropine poison) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atsugewi is a kind of shastan", "pln": ["(: cnet_isa_1d766bc0fc (IsA atsugewi shastan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atsugewi is a kind of hoka", "pln": ["(: cnet_isa_fc7ab314fb (IsA atsugewi hoka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attacapan is a kind of buffalo indian", "pln": ["(: cnet_isa_5ade462c55 (IsA attacapan buffalo_indian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attache is a kind of specialist", "pln": ["(: cnet_isa_627db2550e (IsA attache specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attache case is a kind of briefcase", "pln": ["(: cnet_isa_d2aebe69eb (IsA attache_case briefcase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "attachment is a kind of combination", "pln": ["(: cnet_isa_4e2202f2bf (IsA attachment combination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attachment is a kind of support", "pln": ["(: cnet_isa_f18b3970cc (IsA attachment support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attachment is a kind of addition", "pln": ["(: cnet_isa_16a7247f57 (IsA attachment addition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "attachment is a kind of connection", "pln": ["(: cnet_isa_1f4342ef58 (IsA attachment connection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attachment is a kind of affection", "pln": ["(: cnet_isa_eb0c245e7f (IsA attachment affection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attachment is a kind of writ", "pln": ["(: cnet_isa_2e00ad1664 (IsA attachment writ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attack is a kind of beginning", "pln": ["(: cnet_isa_51af811ea4 (IsA attack beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attack is a kind of crime", "pln": ["(: cnet_isa_72f5f6e806 (IsA attack crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attack is a kind of criticism", "pln": ["(: cnet_isa_70762386b7 (IsA attack criticism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attack is a kind of turn", "pln": ["(: cnet_isa_b5b34aa8a2 (IsA attack turn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attack is a kind of operation", "pln": ["(: cnet_isa_9e56fa70da (IsA attack operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attack is a kind of degeneration", "pln": ["(: cnet_isa_ff88e5e6cd (IsA attack degeneration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attack is a kind of affliction", "pln": ["(: cnet_isa_3110e1994f (IsA attack affliction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attack dog is a kind of watchdog", "pln": ["(: cnet_isa_81ef97239a (IsA attack_dog watchdog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attack submarine is a kind of submarine", "pln": ["(: cnet_isa_4ad935618b (IsA attack_submarine submarine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attacker is a kind of wrongdoer", "pln": ["(: cnet_isa_690cdd3aa1 (IsA attacker wrongdoer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attainder is a kind of cancellation", "pln": ["(: cnet_isa_deef9b9bd2 (IsA attainder cancellation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attainment is a kind of accomplishment", "pln": ["(: cnet_isa_e29ae90b80 (IsA attainment accomplishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attainment is a kind of arrival", "pln": ["(: cnet_isa_36dc422c25 (IsA attainment arrival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attalea is a kind of monocot genus", "pln": ["(: cnet_isa_246cafa5c8 (IsA attalea monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attar is a kind of essential oil", "pln": ["(: cnet_isa_8b8d26a750 (IsA attar essential_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attar of ros is a kind of attar", "pln": ["(: cnet_isa_53b04ec3cf (IsA attar_of_ros attar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attempt is a kind of activity", "pln": ["(: cnet_isa_f8312ef6b7 (IsA attempt activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attendance is a kind of group action", "pln": ["(: cnet_isa_b12b2fed44 (IsA attendance group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attendance is a kind of company", "pln": ["(: cnet_isa_6ad5307913 (IsA attendance company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attendance is a kind of frequency", "pln": ["(: cnet_isa_e46b1dde9f (IsA attendance frequency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attendance check is a kind of roll call", "pln": ["(: cnet_isa_de6a2cb05c (IsA attendance_check roll_call) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attendant is a kind of assistant", "pln": ["(: cnet_isa_bb3bf2a9e0 (IsA attendant assistant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attendant is a kind of participant", "pln": ["(: cnet_isa_5b584e0889 (IsA attendant participant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attention is a kind of courtesy", "pln": ["(: cnet_isa_ff6d94ec73 (IsA attention courtesy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attention is a kind of attraction", "pln": ["(: cnet_isa_7084f02fe6 (IsA attention attraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "attention is a kind of basic cognitive process", "pln": ["(: cnet_isa_264da2bb99 (IsA attention basic_cognitive_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attention is a kind of faculty", "pln": ["(: cnet_isa_b0d9cd846b (IsA attention faculty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attention is a kind of stance", "pln": ["(: cnet_isa_70ca1c24df (IsA attention stance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attention deficit disorder is a kind of syndrome", "pln": ["(: cnet_isa_390c3401d5 (IsA attention_deficit_disorder syndrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attention deficit hyperactivity disorder is a kind of affective spectrum disorder", "pln": ["(: cnet_isa_9d8006dde5 (IsA attention_deficit_hyperactivity_disorder affective_spectrum_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attention span is a kind of span", "pln": ["(: cnet_isa_585375f8f0 (IsA attention_span span) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attentiveness is a kind of consideration", "pln": ["(: cnet_isa_0e3ca8de05 (IsA attentiveness consideration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attentiveness is a kind of trait", "pln": ["(: cnet_isa_f0932a7a97 (IsA attentiveness trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attentiveness is a kind of attention", "pln": ["(: cnet_isa_1e4115152f (IsA attentiveness attention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attenuation is a kind of weakness", "pln": ["(: cnet_isa_0db48c4a73 (IsA attenuation weakness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attenuation is a kind of weakening", "pln": ["(: cnet_isa_474ee781a2 (IsA attenuation weakening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attenuator is a kind of electrical device", "pln": ["(: cnet_isa_4e87f03d1c (IsA attenuator electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "attestation is a kind of evidence", "pln": ["(: cnet_isa_7d366871e6 (IsA attestation evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attestation is a kind of testimony", "pln": ["(: cnet_isa_51e085f9ae (IsA attestation testimony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "attestation service is a kind of consulting service", "pln": ["(: cnet_isa_07df711f8a (IsA attestation_service consulting_service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "attester is a kind of witness", "pln": ["(: cnet_isa_60d3e8bcfc (IsA attester witness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attic is a kind of wall", "pln": ["(: cnet_isa_16c67c1040 (IsA attic wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attic is a kind of human head", "pln": ["(: cnet_isa_a1448237cd (IsA attic human_head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attic fan is a kind of exhaust fan", "pln": ["(: cnet_isa_fe20c21f8d (IsA attic_fan exhaust_fan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atticus is a kind of arthropod genus", "pln": ["(: cnet_isa_1936114985 (IsA atticus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "attire is a kind of clothing", "pln": ["(: cnet_isa_cdeb57f332 (IsA attire clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attitude is a kind of affectation", "pln": ["(: cnet_isa_f63edada17 (IsA attitude affectation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attitude is a kind of cognition", "pln": ["(: cnet_isa_2b30be0ae8 (IsA attitude cognition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attitude is a kind of orientation", "pln": ["(: cnet_isa_ff7be8e445 (IsA attitude orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attorney client privilege is a kind of privilege", "pln": ["(: cnet_isa_9428428dd4 (IsA attorney_client_privilege privilege) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attorney general is a kind of secretaryship", "pln": ["(: cnet_isa_e99cc8c374 (IsA attorney_general secretaryship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attorney general is a kind of lawman", "pln": ["(: cnet_isa_7e8e43080d (IsA attorney_general lawman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attorneyship is a kind of position", "pln": ["(: cnet_isa_eb31fd2cc9 (IsA attorneyship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attosecond is a kind of time unit", "pln": ["(: cnet_isa_46964ebe42 (IsA attosecond time_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attraction is a kind of quality", "pln": ["(: cnet_isa_76b912aca6 (IsA attraction quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attraction is a kind of feature", "pln": ["(: cnet_isa_4054743f8f (IsA attraction feature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attraction is a kind of show", "pln": ["(: cnet_isa_31639537b2 (IsA attraction show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attraction is a kind of force", "pln": ["(: cnet_isa_d61e948db7 (IsA attraction force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attractive nuisance is a kind of nuisance", "pln": ["(: cnet_isa_655abf0562 (IsA attractive_nuisance nuisance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attractiveness is a kind of beauty", "pln": ["(: cnet_isa_eb9e8cd3ac (IsA attractiveness beauty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attractor is a kind of point", "pln": ["(: cnet_isa_98263da216 (IsA attractor point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attribute is a kind of abstraction", "pln": ["(: cnet_isa_8571c1dcfd (IsA attribute abstraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attribute is a kind of property", "pln": ["(: cnet_isa_d82ed8e60e (IsA attribute property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attribution is a kind of classification", "pln": ["(: cnet_isa_6ef5ecb668 (IsA attribution classification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attributive genitive case is a kind of genitive", "pln": ["(: cnet_isa_ab7d9ed6e6 (IsA attributive_genitive_case genitive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "attrition is a kind of friction", "pln": ["(: cnet_isa_871d5677ae (IsA attrition friction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attrition is a kind of decrease", "pln": ["(: cnet_isa_d44e601f10 (IsA attrition decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attrition is a kind of sorrow", "pln": ["(: cnet_isa_a92f5203c6 (IsA attrition sorrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "attrition rate is a kind of rate", "pln": ["(: cnet_isa_e784bc28c9 (IsA attrition_rate rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atypical pneumonia is a kind of respiratory disease", "pln": ["(: cnet_isa_5a259740c0 (IsA atypical_pneumonia respiratory_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "atypicality is a kind of abnormality", "pln": ["(: cnet_isa_1c09172fe0 (IsA atypicality abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "au pair is a kind of foreigner", "pln": ["(: cnet_isa_8be97ca7bb (IsA au_pair foreigner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "au pair girl is a kind of au pair", "pln": ["(: cnet_isa_1660344926 (IsA au_pair_girl au_pair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auckland is a kind of city in new zealand", "pln": ["(: cnet_isa_8f31eff929 (IsA auckland city_in_new_zealand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auction is a kind of bridge", "pln": ["(: cnet_isa_6f25e50dc0 (IsA auction bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auction is a kind of sale", "pln": ["(: cnet_isa_1f9d9f244d (IsA auction sale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auction block is a kind of platform", "pln": ["(: cnet_isa_35d33c6eac (IsA auction_block platform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auction house is a kind of firm", "pln": ["(: cnet_isa_0cd3041dfd (IsA auction_house firm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auctioneer is a kind of agent", "pln": ["(: cnet_isa_488ae49921 (IsA auctioneer agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aucuba is a kind of rosid dicot genus", "pln": ["(: cnet_isa_f16aba6ec2 (IsA aucuba rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "audacity is a kind of boldness", "pln": ["(: cnet_isa_d8b1e17782 (IsA audacity boldness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "audibility is a kind of perceptibility", "pln": ["(: cnet_isa_f9740a3112 (IsA audibility perceptibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "audible is a kind of football play", "pln": ["(: cnet_isa_6d94de7a39 (IsA audible football_play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "audience is a kind of group of people", "pln": ["(: cnet_isa_651d8ae708 (IsA audience group_of_people) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "audience is a kind of gathering", "pln": ["(: cnet_isa_229ba42b4a (IsA audience gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "audience is a kind of multitude", "pln": ["(: cnet_isa_441da3b9c8 (IsA audience multitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "audile is a kind of perceiver", "pln": ["(: cnet_isa_74c9ffaaad (IsA audile perceiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "audio is a kind of component", "pln": ["(: cnet_isa_ccc519183e (IsA audio component) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "audio is a kind of frequency", "pln": ["(: cnet_isa_66b8677d16 (IsA audio frequency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "audio is a kind of auditory communication", "pln": ["(: cnet_isa_e12f89dbd0 (IsA audio auditory_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "audio amplifier is a kind of amplifier", "pln": ["(: cnet_isa_2c67e3fed0 (IsA audio_amplifier amplifier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "audio cd is a kind of compact disk", "pln": ["(: cnet_isa_1ad1796dad (IsA audio_cd compact_disk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "audio lingual acquisition is a kind of language learning", "pln": ["(: cnet_isa_f0d81c91e8 (IsA audio_lingual_acquisition language_learning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "audio system is a kind of electronic equipment", "pln": ["(: cnet_isa_90da9f7f43 (IsA audio_system electronic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "audio system is a kind of system", "pln": ["(: cnet_isa_2c8e50d122 (IsA audio_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "audiocassette is a kind of cassette", "pln": ["(: cnet_isa_9c147d545e (IsA audiocassette cassette) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "audiogram is a kind of representation", "pln": ["(: cnet_isa_8e67b48796 (IsA audiogram representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "audiology is a kind of otology", "pln": ["(: cnet_isa_4c31fd5f1c (IsA audiology otology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "audiometer is a kind of measuring instrument", "pln": ["(: cnet_isa_c06d3e8a93 (IsA audiometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "audiometry is a kind of measurement", "pln": ["(: cnet_isa_4d2fca02fb (IsA audiometry measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "audiotape is a kind of magnetic tape", "pln": ["(: cnet_isa_1f6573c88f (IsA audiotape magnetic_tape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "audiotape is a kind of sound recording", "pln": ["(: cnet_isa_ef5750b4ec (IsA audiotape sound_recording) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "audiotape is a kind of tape", "pln": ["(: cnet_isa_28fd587b96 (IsA audiotape tape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "audiovisual is a kind of teaching aid", "pln": ["(: cnet_isa_907e97265c (IsA audiovisual teaching_aid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "audit is a kind of examination", "pln": ["(: cnet_isa_2b37b68b54 (IsA audit examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "audit program is a kind of plan", "pln": ["(: cnet_isa_7d9253f2fb (IsA audit_program plan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "audited account is a kind of accounting", "pln": ["(: cnet_isa_c9f38d63fb (IsA audited_account accounting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "audition is a kind of test", "pln": ["(: cnet_isa_397d9f894d (IsA audition test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auditor is a kind of accountant", "pln": ["(: cnet_isa_5df5a2d864 (IsA auditor accountant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auditor is a kind of student", "pln": ["(: cnet_isa_170a2a8784 (IsA auditor student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auditorium is a kind of area", "pln": ["(: cnet_isa_110c9d58c1 (IsA auditorium area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auditory agnosia is a kind of agnosia", "pln": ["(: cnet_isa_167b60f54d (IsA auditory_agnosia agnosia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "auditory aphasia is a kind of aphasia", "pln": ["(: cnet_isa_edbb545dc4 (IsA auditory_aphasia aphasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auditory apparatus is a kind of apparatus", "pln": ["(: cnet_isa_a94f3cec39 (IsA auditory_apparatus apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auditory area is a kind of cortical area", "pln": ["(: cnet_isa_1ed311f094 (IsA auditory_area cortical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "auditory center is a kind of center", "pln": ["(: cnet_isa_28b7fcc1c4 (IsA auditory_center center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auditory communication is a kind of communication", "pln": ["(: cnet_isa_cc8654c8a4 (IsA auditory_communication communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auditory hallucination is a kind of hallucination", "pln": ["(: cnet_isa_fb524b7f1b (IsA auditory_hallucination hallucination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auditory image is a kind of image", "pln": ["(: cnet_isa_577387f37c (IsA auditory_image image) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auditory meatus is a kind of meatus", "pln": ["(: cnet_isa_dd128fefa9 (IsA auditory_meatus meatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auditory ossicle is a kind of ossicle", "pln": ["(: cnet_isa_a2a5e40e4d (IsA auditory_ossicle ossicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auditory perception is a kind of perception", "pln": ["(: cnet_isa_c45fea83ba (IsA auditory_perception perception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auditory system is a kind of sensory system", "pln": ["(: cnet_isa_5fb19e6b2c (IsA auditory_system sensory_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "audubon s caracara is a kind of caracara", "pln": ["(: cnet_isa_f0f510ad4e (IsA audubon_s_caracara caracara) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "audubon s warbler is a kind of new world warbler", "pln": ["(: cnet_isa_0ac1bf779c (IsA audubon_s_warbler new_world_warbler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "augend is a kind of number", "pln": ["(: cnet_isa_6b72919c73 (IsA augend number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auger is a kind of drill", "pln": ["(: cnet_isa_dfd91f73dd (IsA auger drill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "augite is a kind of mineral", "pln": ["(: cnet_isa_9722e12251 (IsA augite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "augmentation is a kind of increase", "pln": ["(: cnet_isa_e978b46935 (IsA augmentation increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "augmentation is a kind of statement", "pln": ["(: cnet_isa_4abc9cd649 (IsA augmentation statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "augur is a kind of prophet", "pln": ["(: cnet_isa_7ab34c2155 (IsA augur prophet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "augury is a kind of experience", "pln": ["(: cnet_isa_81ea6518fb (IsA augury experience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "august is a kind of month", "pln": ["(: cnet_isa_de16c89ef5 (IsA august month) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "august is a kind of gregorian calendar month", "pln": ["(: cnet_isa_89c7e5bd58 (IsA august gregorian_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "augustinian is a kind of friar", "pln": ["(: cnet_isa_fc8829f8c6 (IsA augustinian friar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "augustinian canon is a kind of augustinian order", "pln": ["(: cnet_isa_3cd106d92e (IsA augustinian_canon augustinian_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "augustinian hermit is a kind of augustinian order", "pln": ["(: cnet_isa_8c8707073c (IsA augustinian_hermit augustinian_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "augustinian order is a kind of order", "pln": ["(: cnet_isa_39265e1e3c (IsA augustinian_order order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auk is a kind of bird", "pln": ["(: cnet_isa_43667150ee (IsA auk bird) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auk is a kind of seabird", "pln": ["(: cnet_isa_a410ee0ffa (IsA auk seabird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "auklet is a kind of auk", "pln": ["(: cnet_isa_3dd7f26331 (IsA auklet auk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aulacorhyncus is a kind of bird genus", "pln": ["(: cnet_isa_95c10c3343 (IsA aulacorhyncus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auld langsyne is a kind of past", "pln": ["(: cnet_isa_e4b4df9139 (IsA auld_langsyne past) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aulostomidae is a kind of fish family", "pln": ["(: cnet_isa_5877784da6 (IsA aulostomidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aulostomus is a kind of fish genus", "pln": ["(: cnet_isa_76c80ef28b (IsA aulostomus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aunt is a kind of kinswoman", "pln": ["(: cnet_isa_239b32d063 (IsA aunt kinswoman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aunt is a kind of parent s sister", "pln": ["(: cnet_isa_360ce1651e (IsA aunt parent_s_sister) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aura is a kind of light", "pln": ["(: cnet_isa_6621cdf538 (IsA aura light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aura is a kind of symptom", "pln": ["(: cnet_isa_74ec115362 (IsA aura symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aurar is a kind of icelandic monetary unit", "pln": ["(: cnet_isa_e6ae9d9505 (IsA aurar icelandic_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aureolaria is a kind of asterid dicot genus", "pln": ["(: cnet_isa_04ce07e4a8 (IsA aureolaria asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aureole is a kind of radiance", "pln": ["(: cnet_isa_f5083f1890 (IsA aureole radiance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auricle is a kind of cartilaginous structure", "pln": ["(: cnet_isa_4ae8865c1f (IsA auricle cartilaginous_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auricle is a kind of pouch", "pln": ["(: cnet_isa_2bf63e1211 (IsA auricle pouch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auricula is a kind of pouch", "pln": ["(: cnet_isa_af140574f7 (IsA auricula pouch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auricula is a kind of primrose", "pln": ["(: cnet_isa_1a1b9efc18 (IsA auricula primrose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auricular artery is a kind of artery", "pln": ["(: cnet_isa_7fb5d66211 (IsA auricular_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "auricular vein is a kind of vein", "pln": ["(: cnet_isa_ae47829c21 (IsA auricular_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "auriculare is a kind of craniometric point", "pln": ["(: cnet_isa_765cef0d1f (IsA auriculare craniometric_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auricularia is a kind of fungus genus", "pln": ["(: cnet_isa_e08b5d0c2b (IsA auricularia fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auriculariaceae is a kind of fungus family", "pln": ["(: cnet_isa_d0022a3539 (IsA auriculariaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auriculariale is a kind of fungus order", "pln": ["(: cnet_isa_f92dd9efb0 (IsA auriculariale fungus_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "auriparus is a kind of bird genus", "pln": ["(: cnet_isa_2e20c3181d (IsA auriparus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auroch is a kind of ox", "pln": ["(: cnet_isa_6db6426e42 (IsA auroch ox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aurora is a kind of atmospheric phenomenon", "pln": ["(: cnet_isa_a4ed121203 (IsA aurora atmospheric_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aurora australis is a kind of aurora", "pln": ["(: cnet_isa_c6d6e7ec90 (IsA aurora_australis aurora) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aurora borealis is a kind of aurora", "pln": ["(: cnet_isa_e99968c7fb (IsA aurora_borealis aurora) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auscultation is a kind of diagnostic procedure", "pln": ["(: cnet_isa_43d1764acf (IsA auscultation diagnostic_procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auscultation is a kind of listening", "pln": ["(: cnet_isa_f09e9c7445 (IsA auscultation listening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auspice is a kind of omen", "pln": ["(: cnet_isa_34cab6276f (IsA auspice omen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auspice is a kind of endorsement", "pln": ["(: cnet_isa_87a672508c (IsA auspice endorsement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auspiciousness is a kind of favorableness", "pln": ["(: cnet_isa_8a70189f1d (IsA auspiciousness favorableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aussie is a kind of inhabitant", "pln": ["(: cnet_isa_62297ba2c3 (IsA aussie inhabitant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "austenite is a kind of solid solution", "pln": ["(: cnet_isa_cedd8c5266 (IsA austenite solid_solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "austenitic steel is a kind of steel", "pln": ["(: cnet_isa_4c59f65557 (IsA austenitic_steel steel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "austereness is a kind of plainness", "pln": ["(: cnet_isa_4a830fea4f (IsA austereness plainness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "austerity is a kind of self discipline", "pln": ["(: cnet_isa_3708b677fb (IsA austerity self_discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "austin friar is a kind of augustinian", "pln": ["(: cnet_isa_e543904adc (IsA austin_friar augustinian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "austin friar is a kind of augustinian order", "pln": ["(: cnet_isa_a0c5aeda50 (IsA austin_friar augustinian_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "austral is a kind of argentine monetary unit", "pln": ["(: cnet_isa_32ef79b32c (IsA austral argentine_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "australia is a kind of country", "pln": ["(: cnet_isa_b0a4375a88 (IsA australia country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "australia is a kind of island", "pln": ["(: cnet_isa_16cd53081b (IsA australia island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "australian is a kind of austronesian", "pln": ["(: cnet_isa_bbe1827070 (IsA australian austronesian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "australian aborigine is a kind of aussie", "pln": ["(: cnet_isa_cfae78e729 (IsA australian_aborigine aussie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "australian aborigine is a kind of ethnic group", "pln": ["(: cnet_isa_80797e4cc1 (IsA australian_aborigine ethnic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "australian blacksnake is a kind of elapid", "pln": ["(: cnet_isa_6959fa2a1c (IsA australian_blacksnake elapid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "australian cattle dog is a kind of herding dog", "pln": ["(: cnet_isa_8198f38503 (IsA australian_cattle_dog herding_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "australian cockroach is a kind of cockroach", "pln": ["(: cnet_isa_d58af192d5 (IsA australian_cockroach cockroach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "australian coral snake is a kind of coral snake", "pln": ["(: cnet_isa_d109a040fb (IsA australian_coral_snake coral_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "australian dollar is a kind of dollar", "pln": ["(: cnet_isa_52044ea463 (IsA australian_dollar dollar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "australian grass tree is a kind of australian heath", "pln": ["(: cnet_isa_023d4ebf23 (IsA australian_grass_tree australian_heath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "australian hare s foot is a kind of hare s foot fern", "pln": ["(: cnet_isa_05ff985950 (IsA australian_hare_s_foot hare_s_foot_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "australian heath is a kind of shrub", "pln": ["(: cnet_isa_53140015a7 (IsA australian_heath shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "australian labor party is a kind of labour party", "pln": ["(: cnet_isa_2298f6ec30 (IsA australian_labor_party labour_party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "australian magpie is a kind of oscine", "pln": ["(: cnet_isa_e9b0a43b25 (IsA australian_magpie oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "australian nettle is a kind of tree", "pln": ["(: cnet_isa_7908d22299 (IsA australian_nettle tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "australian pea is a kind of vine", "pln": ["(: cnet_isa_dbc1e06343 (IsA australian_pea vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "australian pine is a kind of beefwood", "pln": ["(: cnet_isa_a934eb7a04 (IsA australian_pine beefwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "australian pitcher plant is a kind of herb", "pln": ["(: cnet_isa_9b8855e3a7 (IsA australian_pitcher_plant herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "australian reed grass is a kind of reed grass", "pln": ["(: cnet_isa_463440827c (IsA australian_reed_grass reed_grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "australian sea lion is a kind of sea lion", "pln": ["(: cnet_isa_b084968b4c (IsA australian_sea_lion sea_lion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "australian state is a kind of state", "pln": ["(: cnet_isa_283bcd524a (IsA australian_state state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "australian sumac is a kind of angiospermous yellowwood", "pln": ["(: cnet_isa_f55fe929d2 (IsA australian_sumac angiospermous_yellowwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "australian terrier is a kind of terrier", "pln": ["(: cnet_isa_8b49770f95 (IsA australian_terrier terrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "australian turtledove is a kind of dove", "pln": ["(: cnet_isa_a665d51eba (IsA australian_turtledove dove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "australian walk about is a kind of great form of exercise", "pln": ["(: cnet_isa_baf187f0b5 (IsA australian_walk_about great_form_of_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "australopithecine is a kind of hominid", "pln": ["(: cnet_isa_dddd2e01f0 (IsA australopithecine hominid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "australopithecus afarensis is a kind of australopithecine", "pln": ["(: cnet_isa_c1a74ed11b (IsA australopithecus_afarensis australopithecine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "australopithecus africanus is a kind of australopithecine", "pln": ["(: cnet_isa_b94f361332 (IsA australopithecus_africanus australopithecine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "australopithecus boisei is a kind of australopithecine", "pln": ["(: cnet_isa_4f15780f2b (IsA australopithecus_boisei australopithecine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "australopithecus robustus is a kind of australopithecine", "pln": ["(: cnet_isa_6ab41f9013 (IsA australopithecus_robustus australopithecine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "austria is a kind of country", "pln": ["(: cnet_isa_3af40075dc (IsA austria country) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "austria is a kind of country in europe", "pln": ["(: cnet_isa_0fb7188615 (IsA austria country_in_europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "austria is a kind of not australia", "pln": ["(: cnet_isa_439e399d9d (IsA austria not_australia) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "austrian is a kind of european", "pln": ["(: cnet_isa_1d2581529d (IsA austrian european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "austrian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_3a1ddb2c0c (IsA austrian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "austro asiatic is a kind of natural language", "pln": ["(: cnet_isa_bb683fcd13 (IsA austro_asiatic natural_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "austrocedrus is a kind of gymnosperm genus", "pln": ["(: cnet_isa_fbf9dddde6 (IsA austrocedrus gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "austronesian is a kind of natural language", "pln": ["(: cnet_isa_27aaa66824 (IsA austronesian natural_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "austronesian is a kind of inhabitant", "pln": ["(: cnet_isa_802662382f (IsA austronesian inhabitant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "austrotaxus is a kind of gymnosperm genus", "pln": ["(: cnet_isa_5bdfb529bd (IsA austrotaxus gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autacoid is a kind of secretion", "pln": ["(: cnet_isa_9700dfad40 (IsA autacoid secretion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autarky is a kind of independence", "pln": ["(: cnet_isa_26dc0e36a6 (IsA autarky independence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auteur is a kind of film maker", "pln": ["(: cnet_isa_501f9e3077 (IsA auteur film_maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "authentication is a kind of validation", "pln": ["(: cnet_isa_79287c64a5 (IsA authentication validation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "authentication is a kind of marker", "pln": ["(: cnet_isa_28f68f5041 (IsA authentication marker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "authenticity is a kind of credibility", "pln": ["(: cnet_isa_4a45db1cd7 (IsA authenticity credibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "authoress is a kind of writer", "pln": ["(: cnet_isa_1a7bb24a2e (IsA authoress writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "authoring language is a kind of software", "pln": ["(: cnet_isa_36d83eeea3 (IsA authoring_language software) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "authoritarian is a kind of oppressor", "pln": ["(: cnet_isa_68d9d12fd7 (IsA authoritarian oppressor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "authoritarian regime is a kind of government", "pln": ["(: cnet_isa_8e3fcfc498 (IsA authoritarian_regime government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "authority is a kind of control", "pln": ["(: cnet_isa_b46a75269e (IsA authority control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "authority is a kind of permission", "pln": ["(: cnet_isa_ec1d0694db (IsA authority permission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "authority is a kind of book", "pln": ["(: cnet_isa_5fd2644fab (IsA authority book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "authority is a kind of expert", "pln": ["(: cnet_isa_809460a2ea (IsA authority expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "authority is a kind of person", "pln": ["(: cnet_isa_0eba1cd722 (IsA authority person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "authority figure is a kind of authority", "pln": ["(: cnet_isa_b8d548aebb (IsA authority_figure authority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "authorization is a kind of management", "pln": ["(: cnet_isa_2795699338 (IsA authorization management) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "authorized share is a kind of stock", "pln": ["(: cnet_isa_d1c8ec4199 (IsA authorized_share stock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "authorizer is a kind of authority", "pln": ["(: cnet_isa_fc4fe9e2bd (IsA authorizer authority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "authorship is a kind of initiation", "pln": ["(: cnet_isa_9466aab7af (IsA authorship initiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autism is a kind of syndrome", "pln": ["(: cnet_isa_89d6cf0192 (IsA autism syndrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auto accessory is a kind of accessory", "pln": ["(: cnet_isa_526af83858 (IsA auto_accessory accessory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "auto da fe is a kind of burning", "pln": ["(: cnet_isa_a31e3d33cb (IsA auto_da_fe burning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auto limitation is a kind of social control", "pln": ["(: cnet_isa_1ba29fcacf (IsA auto_limitation social_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auto mechanic is a kind of trade", "pln": ["(: cnet_isa_f4a7c5666c (IsA auto_mechanic trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auto part is a kind of component", "pln": ["(: cnet_isa_169c6e29ae (IsA auto_part component) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auto racing is a kind of racing", "pln": ["(: cnet_isa_ad9cb99e4d (IsA auto_racing racing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auto suggestion is a kind of self improvement", "pln": ["(: cnet_isa_b7570912fc (IsA auto_suggestion self_improvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "autoantibody is a kind of antibody", "pln": ["(: cnet_isa_9765c45808 (IsA autoantibody antibody) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autobahn is a kind of expressway", "pln": ["(: cnet_isa_e1af91a2f1 (IsA autobahn expressway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "autobiographer is a kind of biographer", "pln": ["(: cnet_isa_f8992d9c9b (IsA autobiographer biographer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autobiography is a kind of biography", "pln": ["(: cnet_isa_0c12cf1729 (IsA autobiography biography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autocatalysis is a kind of catalysis", "pln": ["(: cnet_isa_a3a0bbb364 (IsA autocatalysis catalysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autochthon is a kind of primitive", "pln": ["(: cnet_isa_43e121fca2 (IsA autochthon primitive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "autoclave is a kind of vessel", "pln": ["(: cnet_isa_71c4e16e19 (IsA autoclave vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autocracy is a kind of political orientation", "pln": ["(: cnet_isa_4ae2b150c8 (IsA autocracy political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autocracy is a kind of political system", "pln": ["(: cnet_isa_f46c7277a3 (IsA autocracy political_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autodidact is a kind of person", "pln": ["(: cnet_isa_2314c165c3 (IsA autodidact person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autoeroticism is a kind of sexual activity", "pln": ["(: cnet_isa_03e55259db (IsA autoeroticism sexual_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autofluorescence is a kind of fluorescence", "pln": ["(: cnet_isa_97273d8e3b (IsA autofluorescence fluorescence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autofocus is a kind of optical device", "pln": ["(: cnet_isa_dff995d8bf (IsA autofocus optical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autogamy is a kind of self fertilization", "pln": ["(: cnet_isa_9ddf7f8852 (IsA autogamy self_fertilization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autogenic therapy is a kind of treatment", "pln": ["(: cnet_isa_84eda8722b (IsA autogenic_therapy treatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autogiro is a kind of heavier than air craft", "pln": ["(: cnet_isa_02f46b1c95 (IsA autogiro heavier_than_air_craft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autograft is a kind of graft", "pln": ["(: cnet_isa_eda43c678d (IsA autograft graft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autograph is a kind of signature", "pln": ["(: cnet_isa_aeaf99e80c (IsA autograph signature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autograph is a kind of writing", "pln": ["(: cnet_isa_845f2970bb (IsA autograph writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autograph album is a kind of album", "pln": ["(: cnet_isa_4a2ce57cc7 (IsA autograph_album album) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "autoimmune disease is a kind of disease", "pln": ["(: cnet_isa_523bf9946f (IsA autoimmune_disease disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "autoimmunity is a kind of pathology", "pln": ["(: cnet_isa_183f7ff201 (IsA autoimmunity pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autoinjector is a kind of hypodermic syringe", "pln": ["(: cnet_isa_3ec0b7c5cf (IsA autoinjector hypodermic_syringe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autoloader is a kind of firearm", "pln": ["(: cnet_isa_f60549e340 (IsA autoloader firearm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autolysis is a kind of lysis", "pln": ["(: cnet_isa_a7c77da3c1 (IsA autolysis lysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "automat is a kind of cafeteria", "pln": ["(: cnet_isa_b3deb7c812 (IsA automat cafeteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "automat is a kind of vending machine", "pln": ["(: cnet_isa_4b1acb7387 (IsA automat vending_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "automatic is a kind of weapon", "pln": ["(: cnet_isa_bac172394a (IsA automatic weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "automatic choke is a kind of choke", "pln": ["(: cnet_isa_45034b1e7d (IsA automatic_choke choke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "automatic data processing is a kind of data processing", "pln": ["(: cnet_isa_cc5af45bf3 (IsA automatic_data_processing data_processing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "automatic firearm is a kind of autoloader", "pln": ["(: cnet_isa_c8de220fb9 (IsA automatic_firearm autoloader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "automatic pilot is a kind of unconsciousness", "pln": ["(: cnet_isa_cc56f20264 (IsA automatic_pilot unconsciousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "automatic pistol is a kind of automatic firearm", "pln": ["(: cnet_isa_6d2ab53c43 (IsA automatic_pistol automatic_firearm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "automatic pistol is a kind of pistol", "pln": ["(: cnet_isa_1d9c0435c3 (IsA automatic_pistol pistol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "automatic rifle is a kind of automatic firearm", "pln": ["(: cnet_isa_b9e16f5a20 (IsA automatic_rifle automatic_firearm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "automatic rifle is a kind of machine gun", "pln": ["(: cnet_isa_9d6cbc5beb (IsA automatic_rifle machine_gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "automatic transmission is a kind of transmission", "pln": ["(: cnet_isa_1f7040022b (IsA automatic_transmission transmission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "automation is a kind of high technology", "pln": ["(: cnet_isa_6b599048f6 (IsA automation high_technology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "automation is a kind of equipment", "pln": ["(: cnet_isa_cb4fdbe3ca (IsA automation equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "automation is a kind of condition", "pln": ["(: cnet_isa_4c6e45027c (IsA automation condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "automatism is a kind of reaction", "pln": ["(: cnet_isa_65cf316eb1 (IsA automatism reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "automaton is a kind of machine", "pln": ["(: cnet_isa_650ab5220c (IsA automaton machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "automaton is a kind of mechanism", "pln": ["(: cnet_isa_9ec7de3334 (IsA automaton mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "automaton is a kind of person", "pln": ["(: cnet_isa_d6c8f952a9 (IsA automaton person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "automeris is a kind of arthropod genus", "pln": ["(: cnet_isa_3c5fa1da52 (IsA automeris arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "automobile engine is a kind of engine", "pln": ["(: cnet_isa_b7e31cf789 (IsA automobile_engine engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "automobile factory is a kind of factory", "pln": ["(: cnet_isa_ae0055b943 (IsA automobile_factory factory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "automobile horn is a kind of alarm", "pln": ["(: cnet_isa_1225e99332 (IsA automobile_horn alarm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "automobile industry is a kind of industry", "pln": ["(: cnet_isa_dcb6ad4767 (IsA automobile_industry industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "automobile insurance is a kind of insurance", "pln": ["(: cnet_isa_8caebf237b (IsA automobile_insurance insurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "automobile loan is a kind of personal loan", "pln": ["(: cnet_isa_c8b158eae7 (IsA automobile_loan personal_loan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "automobile mechanic is a kind of maintenance man", "pln": ["(: cnet_isa_d0d9af0031 (IsA automobile_mechanic maintenance_man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "automobile race is a kind of race", "pln": ["(: cnet_isa_969cb03772 (IsA automobile_race race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "automobile traffic is a kind of vehicular traffic", "pln": ["(: cnet_isa_2b00f31e44 (IsA automobile_traffic vehicular_traffic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "automotive engineer is a kind of engineer", "pln": ["(: cnet_isa_f2aa2e8c10 (IsA automotive_engineer engineer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "automotive technology is a kind of technology", "pln": ["(: cnet_isa_63eb8c5450 (IsA automotive_technology technology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "automysophobia is a kind of simple phobia", "pln": ["(: cnet_isa_1913731e17 (IsA automysophobia simple_phobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autonomic ganglion is a kind of ganglion", "pln": ["(: cnet_isa_9e6edf0c39 (IsA autonomic_ganglion ganglion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autonomic nervous system is a kind of neural structure", "pln": ["(: cnet_isa_ab9a898c81 (IsA autonomic_nervous_system neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autonomic plexus is a kind of nerve plexus", "pln": ["(: cnet_isa_01e391ddb5 (IsA autonomic_plexus nerve_plexus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autonomous community is a kind of state", "pln": ["(: cnet_isa_c716ff093f (IsA autonomous_community state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autonomy is a kind of independence", "pln": ["(: cnet_isa_918453fd0c (IsA autonomy independence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autophyte is a kind of plant", "pln": ["(: cnet_isa_4ccbe199d1 (IsA autophyte plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autopilot is a kind of device", "pln": ["(: cnet_isa_03ef102eb0 (IsA autopilot device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autoplasty is a kind of plastic surgery", "pln": ["(: cnet_isa_610b8cfd1d (IsA autoplasty plastic_surgery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autopsy is a kind of examination", "pln": ["(: cnet_isa_152c8be6f5 (IsA autopsy examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autoradiograph is a kind of radiogram", "pln": ["(: cnet_isa_f2d77c50c6 (IsA autoradiograph radiogram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autoradiography is a kind of radiography", "pln": ["(: cnet_isa_361db5245c (IsA autoradiography radiography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autoregulation is a kind of organic process", "pln": ["(: cnet_isa_3e79758ca1 (IsA autoregulation organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autosexing is a kind of breeding", "pln": ["(: cnet_isa_9808323b60 (IsA autosexing breeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autosomal dominant disease is a kind of genetic disease", "pln": ["(: cnet_isa_d04501941a (IsA autosomal_dominant_disease genetic_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autosomal recessive disease is a kind of genetic disease", "pln": ["(: cnet_isa_f427a7f064 (IsA autosomal_recessive_disease genetic_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autosome is a kind of chromosome", "pln": ["(: cnet_isa_066bf647c8 (IsA autosome chromosome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autostrada is a kind of expressway", "pln": ["(: cnet_isa_3f9d92c0d3 (IsA autostrada expressway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autotelism is a kind of belief", "pln": ["(: cnet_isa_2bba534c3f (IsA autotelism belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autotomy is a kind of removal", "pln": ["(: cnet_isa_2fe6519f4b (IsA autotomy removal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autotype is a kind of photography", "pln": ["(: cnet_isa_519a183914 (IsA autotype photography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "autumn crocus is a kind of bulbous plant", "pln": ["(: cnet_isa_ebea3f9f7d (IsA autumn_crocus bulbous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autumn sneezeweed is a kind of sneezeweed", "pln": ["(: cnet_isa_26eaa3f20e (IsA autumn_sneezeweed sneezeweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autumnal equinox is a kind of equinoctial point", "pln": ["(: cnet_isa_c0415cccc2 (IsA autumnal_equinox equinoctial_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "autumnal equinox is a kind of equinox", "pln": ["(: cnet_isa_461d335092 (IsA autumnal_equinox equinox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auxesis is a kind of growth", "pln": ["(: cnet_isa_242b456419 (IsA auxesis growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "auxiliary airfield is a kind of airfield", "pln": ["(: cnet_isa_46768e3bf0 (IsA auxiliary_airfield airfield) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auxiliary boiler is a kind of boiler", "pln": ["(: cnet_isa_655b2176f6 (IsA auxiliary_boiler boiler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auxiliary cell is a kind of terrorist cell", "pln": ["(: cnet_isa_b9934ef56b (IsA auxiliary_cell terrorist_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auxiliary engine is a kind of engine", "pln": ["(: cnet_isa_9ddf55e3f8 (IsA auxiliary_engine engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auxiliary operation is a kind of operation", "pln": ["(: cnet_isa_401cf87890 (IsA auxiliary_operation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auxiliary pump is a kind of pump", "pln": ["(: cnet_isa_47b6b17db8 (IsA auxiliary_pump pump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auxiliary research submarine is a kind of submarine", "pln": ["(: cnet_isa_32ce66f74e (IsA auxiliary_research_submarine submarine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "auxiliary storage is a kind of memory device", "pln": ["(: cnet_isa_7f6a33d5f1 (IsA auxiliary_storage memory_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "auxiliary verb is a kind of verb", "pln": ["(: cnet_isa_446e10fd1e (IsA auxiliary_verb verb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "auxin is a kind of phytohormone", "pln": ["(: cnet_isa_3799dda48f (IsA auxin phytohormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "aves is a kind of class", "pln": ["(: cnet_isa_466e50aa5f (IsA aves class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avadavat is a kind of weaver", "pln": ["(: cnet_isa_ade0df696f (IsA avadavat weaver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avahi is a kind of mammal genus", "pln": ["(: cnet_isa_97580599fc (IsA avahi mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avail is a kind of helpfulness", "pln": ["(: cnet_isa_fddb3156a7 (IsA avail helpfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avalanche is a kind of happening", "pln": ["(: cnet_isa_40d0cc3a05 (IsA avalanche happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avalanche is a kind of slide", "pln": ["(: cnet_isa_825cba0f90 (IsA avalanche slide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avalanche lily is a kind of liliaceous plant", "pln": ["(: cnet_isa_e3d92923bb (IsA avalanche_lily liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avant garde is a kind of artistic movement", "pln": ["(: cnet_isa_b6ac858176 (IsA avant_garde artistic_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avaram is a kind of senna", "pln": ["(: cnet_isa_ceaa65ae36 (IsA avaram senna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avarice is a kind of mortal sin", "pln": ["(: cnet_isa_33c2d51ab3 (IsA avarice mortal_sin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avarice is a kind of greed", "pln": ["(: cnet_isa_8e17ed84c6 (IsA avarice greed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avatar is a kind of hindu deity", "pln": ["(: cnet_isa_18709fb55d (IsA avatar hindu_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avena is a kind of plant genus", "pln": ["(: cnet_isa_fbc4adf19c (IsA avena plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avenger is a kind of attacker", "pln": ["(: cnet_isa_fa1b8c4f6e (IsA avenger attacker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aven is a kind of subshrub", "pln": ["(: cnet_isa_901c2b79e7 (IsA aven subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avenue is a kind of street", "pln": ["(: cnet_isa_758866291e (IsA avenue street) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avenue is a kind of approach", "pln": ["(: cnet_isa_e3bf6bc425 (IsA avenue approach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "average is a kind of scale value", "pln": ["(: cnet_isa_397e2f0478 (IsA average scale_value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "average is a kind of ratio", "pln": ["(: cnet_isa_4e503b18b4 (IsA average ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "average is a kind of statistic", "pln": ["(: cnet_isa_61a18388f6 (IsA average statistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "average cost is a kind of monetary value", "pln": ["(: cnet_isa_1de1ed1cff (IsA average_cost monetary_value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "averageness is a kind of ordinariness", "pln": ["(: cnet_isa_915036e946 (IsA averageness ordinariness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "averageness is a kind of normality", "pln": ["(: cnet_isa_e3a7e3d366 (IsA averageness normality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "averrhoa is a kind of rosid dicot genus", "pln": ["(: cnet_isa_d516693312 (IsA averrhoa rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aversion is a kind of avoidance", "pln": ["(: cnet_isa_b20686180c (IsA aversion avoidance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aversion therapy is a kind of behavior therapy", "pln": ["(: cnet_isa_e78ee51cf8 (IsA aversion_therapy behavior_therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aversive conditioning is a kind of conditioning", "pln": ["(: cnet_isa_de11c0e3a2 (IsA aversive_conditioning conditioning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aversive stimulus is a kind of negative stimulus", "pln": ["(: cnet_isa_f8e62dc33a (IsA aversive_stimulus negative_stimulus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "averting is a kind of prevention", "pln": ["(: cnet_isa_806dc978f7 (IsA averting prevention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ave is a kind of class", "pln": ["(: cnet_isa_9cec9aba99 (IsA ave class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "avestan is a kind of iranian", "pln": ["(: cnet_isa_9d57da0588 (IsA avestan iranian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avestan is a kind of script", "pln": ["(: cnet_isa_541e2eb9ce (IsA avestan script) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aviary is a kind of building", "pln": ["(: cnet_isa_316e6bb5c0 (IsA aviary building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aviation is a kind of art", "pln": ["(: cnet_isa_24aadbc830 (IsA aviation art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aviation is a kind of industry", "pln": ["(: cnet_isa_6ca61f4e57 (IsA aviation industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "aviation is a kind of collection", "pln": ["(: cnet_isa_7e307e3f97 (IsA aviation collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aviator is a kind of skilled worker", "pln": ["(: cnet_isa_8ffd844582 (IsA aviator skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aviatrix is a kind of aviator", "pln": ["(: cnet_isa_108d9d9f45 (IsA aviatrix aviator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "avicennia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_a8f851ba83 (IsA avicennia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avicenniaceae is a kind of asterid dicot family", "pln": ["(: cnet_isa_87baba85e9 (IsA avicenniaceae asterid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avifauna is a kind of fauna", "pln": ["(: cnet_isa_22c1172ce4 (IsA avifauna fauna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avionic is a kind of aeronautic", "pln": ["(: cnet_isa_744cc25347 (IsA avionic aeronautic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avitaminosis is a kind of malnutrition", "pln": ["(: cnet_isa_cde545206d (IsA avitaminosis malnutrition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avo is a kind of macao monetary unit", "pln": ["(: cnet_isa_bcbfa49bad (IsA avo macao_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avocado is a kind of edible fruit", "pln": ["(: cnet_isa_5234eed44a (IsA avocado edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avocado is a kind of fruit tree", "pln": ["(: cnet_isa_57767f1760 (IsA avocado fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avocado tree is a kind of tree", "pln": ["(: cnet_isa_f406d6115d (IsA avocado_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avocation is a kind of pastime", "pln": ["(: cnet_isa_cfaba5d7eb (IsA avocation pastime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avocet is a kind of shorebird", "pln": ["(: cnet_isa_bd989dd7c6 (IsA avocet shorebird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avogadro s law is a kind of law", "pln": ["(: cnet_isa_b058ea133a (IsA avogadro_s_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avogadro s number is a kind of constant", "pln": ["(: cnet_isa_05e5401eb4 (IsA avogadro_s_number constant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avoidance is a kind of rejection", "pln": ["(: cnet_isa_0e69cbac0a (IsA avoidance rejection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avoirdupois is a kind of system of weight", "pln": ["(: cnet_isa_6451c8494d (IsA avoirdupois system_of_weight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avoirdupois unit is a kind of mass unit", "pln": ["(: cnet_isa_e0f39eadcf (IsA avoirdupois_unit mass_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "avowal is a kind of assertion", "pln": ["(: cnet_isa_dd4eae8350 (IsA avowal assertion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avower is a kind of communicator", "pln": ["(: cnet_isa_a173b9ad04 (IsA avower communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "avulsion is a kind of separation", "pln": ["(: cnet_isa_8196e4a8f0 (IsA avulsion separation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "avulsion is a kind of change", "pln": ["(: cnet_isa_099a8cb7b6 (IsA avulsion change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "awakening is a kind of arousal", "pln": ["(: cnet_isa_75b002638f (IsA awakening arousal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "award is a kind of symbol", "pln": ["(: cnet_isa_ef4581056d (IsA award symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "award is a kind of grant", "pln": ["(: cnet_isa_32314b04ec (IsA award grant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "awareness is a kind of consciousness", "pln": ["(: cnet_isa_305dc18172 (IsA awareness consciousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "awareness is a kind of knowing", "pln": ["(: cnet_isa_efe45bd223 (IsA awareness knowing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "away game is a kind of game", "pln": ["(: cnet_isa_149e8ca031 (IsA away_game game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "awayness is a kind of absence", "pln": ["(: cnet_isa_002f78eeef (IsA awayness absence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "awe is a kind of emotion", "pln": ["(: cnet_isa_36164d47d7 (IsA awe emotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "awe is a kind of wonder", "pln": ["(: cnet_isa_21864d8d14 (IsA awe wonder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "awfulness is a kind of unpleasantness", "pln": ["(: cnet_isa_54cf04166f (IsA awfulness unpleasantness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "awkwardness is a kind of carriage", "pln": ["(: cnet_isa_3cbf89c58a (IsA awkwardness carriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "awkwardness is a kind of disadvantage", "pln": ["(: cnet_isa_d8fe4c8080 (IsA awkwardness disadvantage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "awkwardness is a kind of inelegance", "pln": ["(: cnet_isa_b909898194 (IsA awkwardness inelegance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "awkwardness is a kind of troublesomeness", "pln": ["(: cnet_isa_45a619bead (IsA awkwardness troublesomeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "awkwardness is a kind of unskillfulness", "pln": ["(: cnet_isa_a81890408f (IsA awkwardness unskillfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "awl is a kind of hand tool", "pln": ["(: cnet_isa_48694f73e5 (IsA awl hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "awlwort is a kind of aquatic plant", "pln": ["(: cnet_isa_0c12dec6ef (IsA awlwort aquatic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "awn is a kind of beard", "pln": ["(: cnet_isa_8938462851 (IsA awn beard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "awning is a kind of canopy", "pln": ["(: cnet_isa_6074fc67ee (IsA awning canopy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "awnless bromegrass is a kind of brome", "pln": ["(: cnet_isa_ca3814e3dc (IsA awnless_bromegrass brome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "awol is a kind of absentee", "pln": ["(: cnet_isa_e95929b272 (IsA awol absentee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ax is a kind of edge tool", "pln": ["(: cnet_isa_66f090e495 (IsA ax edge_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ax handle is a kind of handle", "pln": ["(: cnet_isa_e103bf181f (IsA ax_handle handle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ax head is a kind of wedge", "pln": ["(: cnet_isa_a57afb40bc (IsA ax_head wedge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "axe is a kind of tool", "pln": ["(: cnet_isa_f19613e314 (IsA axe tool) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "axial muscle is a kind of skeletal muscle", "pln": ["(: cnet_isa_69825c23af (IsA axial_muscle skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "axial rotation is a kind of rotation", "pln": ["(: cnet_isa_a3552db17d (IsA axial_rotation rotation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "axial skeleton is a kind of skeletal structure", "pln": ["(: cnet_isa_865bd2b064 (IsA axial_skeleton skeletal_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "axial vector is a kind of vector", "pln": ["(: cnet_isa_a499617bf3 (IsA axial_vector vector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "axil is a kind of angle", "pln": ["(: cnet_isa_e2ab6166df (IsA axil angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "axile placentation is a kind of placentation", "pln": ["(: cnet_isa_3e0cb03813 (IsA axile_placentation placentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "axillary artery is a kind of artery", "pln": ["(: cnet_isa_84c364108e (IsA axillary_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "axillary node is a kind of lymph node", "pln": ["(: cnet_isa_db41bd1a44 (IsA axillary_node lymph_node) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "axillary vein is a kind of vein", "pln": ["(: cnet_isa_520cf614b1 (IsA axillary_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "axiology is a kind of philosophy", "pln": ["(: cnet_isa_ac6f31d78c (IsA axiology philosophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "axiom is a kind of proposition", "pln": ["(: cnet_isa_0873468669 (IsA axiom proposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "axis is a kind of mechanism", "pln": ["(: cnet_isa_970d182f49 (IsA axis mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "axis is a kind of cervical vertebra", "pln": ["(: cnet_isa_f8965b8abb (IsA axis cervical_vertebra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "axis is a kind of line", "pln": ["(: cnet_isa_2ac7595a87 (IsA axis line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "axis is a kind of alliance", "pln": ["(: cnet_isa_79b9452d80 (IsA axis alliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "axis is a kind of stalk", "pln": ["(: cnet_isa_bdc188bb00 (IsA axis stalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "axle is a kind of shaft", "pln": ["(: cnet_isa_b858b1efa1 (IsA axle shaft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "axle bar is a kind of axletree", "pln": ["(: cnet_isa_ff25430ab0 (IsA axle_bar axletree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "axle grease is a kind of grease", "pln": ["(: cnet_isa_a838ff344a (IsA axle_grease grease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "axletree is a kind of dead axle", "pln": ["(: cnet_isa_c962882b8c (IsA axletree dead_axle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "axolemma is a kind of membrane", "pln": ["(: cnet_isa_5d3b719edb (IsA axolemma membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "axolotl is a kind of ambystomid", "pln": ["(: cnet_isa_8c854b3021 (IsA axolotl ambystomid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "axon is a kind of nerve fiber", "pln": ["(: cnet_isa_e4d0cc83b7 (IsA axon nerve_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "axseed is a kind of coronilla", "pln": ["(: cnet_isa_e711f71df5 (IsA axseed coronilla) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ayah is a kind of domestic", "pln": ["(: cnet_isa_8eb58c380d (IsA ayah domestic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ayapana is a kind of herb", "pln": ["(: cnet_isa_4c59a9c565 (IsA ayapana herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ayatollah is a kind of religious leader", "pln": ["(: cnet_isa_447eaf86bb (IsA ayatollah religious_leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aye aye is a kind of lemur", "pln": ["(: cnet_isa_b850fa268b (IsA aye_aye lemur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ayin is a kind of letter", "pln": ["(: cnet_isa_5a2ab27fd9 (IsA ayin letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ayrshire is a kind of dairy cattle", "pln": ["(: cnet_isa_0ca1afed05 (IsA ayrshire dairy_cattle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aythya is a kind of bird genus", "pln": ["(: cnet_isa_06bb681295 (IsA aythya bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "azadirachta is a kind of rosid dicot genus", "pln": ["(: cnet_isa_b5cf74328d (IsA azadirachta rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "azadirachtin is a kind of organic compound", "pln": ["(: cnet_isa_7ba146ce13 (IsA azadirachtin organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "azalea is a kind of rhododendron", "pln": ["(: cnet_isa_cf3ecc810c (IsA azalea rhododendron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "azerbaijani is a kind of turki", "pln": ["(: cnet_isa_6811e60a43 (IsA azerbaijani turki) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "azerbaijani monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_2bc0537ec1 (IsA azerbaijani_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "azeri is a kind of ethnic group", "pln": ["(: cnet_isa_a29b498f7a (IsA azeri ethnic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "azide is a kind of compound", "pln": ["(: cnet_isa_f8cddb8eed (IsA azide compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "azido group is a kind of group", "pln": ["(: cnet_isa_120ad44af2 (IsA azido_group group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "azimuth is a kind of angle", "pln": ["(: cnet_isa_9ad66fc242 (IsA azimuth angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "azo dye is a kind of dye", "pln": ["(: cnet_isa_7026e2f422 (IsA azo_dye dye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "azo group is a kind of group", "pln": ["(: cnet_isa_42357ee30c (IsA azo_group group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "azolla is a kind of fern genus", "pln": ["(: cnet_isa_d5b63be8d0 (IsA azolla fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "azollaceae is a kind of fern family", "pln": ["(: cnet_isa_558490ac1a (IsA azollaceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "azote is a kind of nitrogen", "pln": ["(: cnet_isa_5af894dbe0 (IsA azote nitrogen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "azoturia is a kind of pathology", "pln": ["(: cnet_isa_39cc86677c (IsA azoturia pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "aztec is a kind of nahuatl", "pln": ["(: cnet_isa_d09b4bae22 (IsA aztec nahuatl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "aztecan is a kind of uto aztecan", "pln": ["(: cnet_isa_338dcf220c (IsA aztecan uto_aztecan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "azure is a kind of blue", "pln": ["(: cnet_isa_9ac7f659ce (IsA azure blue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "azure aster is a kind of aster", "pln": ["(: cnet_isa_ca81d6d0d2 (IsA azure_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "azurite is a kind of malachite", "pln": ["(: cnet_isa_1bdf78319a (IsA azurite malachite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "azygo vein is a kind of vein", "pln": ["(: cnet_isa_78df1d50f9 (IsA azygo_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "azymia is a kind of pathology", "pln": ["(: cnet_isa_887d0fb7d5 (IsA azymia pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "b is a kind of blood group", "pln": ["(: cnet_isa_f6ac07fa1e (IsA b blood_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "b is a kind of letter", "pln": ["(: cnet_isa_04d37bb41e (IsA b letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "b battery is a kind of battery", "pln": ["(: cnet_isa_7b98a091f2 (IsA b_battery battery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "b cell is a kind of lymphocyte", "pln": ["(: cnet_isa_f507f2653b (IsA b_cell lymphocyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "b complex vitamin is a kind of water soluble vitamin", "pln": ["(: cnet_isa_31ba97a6bd (IsA b_complex_vitamin water_soluble_vitamin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "b flat clarinet is a kind of clarinet", "pln": ["(: cnet_isa_a51f6c7eb1 (IsA b_flat_clarinet clarinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "b meson is a kind of meson", "pln": ["(: cnet_isa_f28a5545e6 (IsA b_meson meson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "b scan ultrasonography is a kind of sonography", "pln": ["(: cnet_isa_93e395537e (IsA b_scan_ultrasonography sonography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "b tree is a kind of tree", "pln": ["(: cnet_isa_b513f309bd (IsA b_tree tree) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baa is a kind of cry", "pln": ["(: cnet_isa_694d8410fe (IsA baa cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baa lamb is a kind of lamb", "pln": ["(: cnet_isa_9b013800f5 (IsA baa_lamb lamb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baa is a kind of foreman", "pln": ["(: cnet_isa_7d383d6ed8 (IsA baa foreman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baba is a kind of cake", "pln": ["(: cnet_isa_766479613b (IsA baba cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baba au rhum is a kind of baba", "pln": ["(: cnet_isa_24717a26ae (IsA baba_au_rhum baba) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "babassu is a kind of feather palm", "pln": ["(: cnet_isa_1ca5ca9a32 (IsA babassu feather_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "babassu nut is a kind of seed", "pln": ["(: cnet_isa_07d8b61d00 (IsA babassu_nut seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "babassu oil is a kind of oil", "pln": ["(: cnet_isa_f5dda96b42 (IsA babassu_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "babbitt metal is a kind of alloy", "pln": ["(: cnet_isa_c3e26fc27d (IsA babbitt_metal alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "babbitting is a kind of lining", "pln": ["(: cnet_isa_17b9a4b120 (IsA babbitting lining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "babble is a kind of gibberish", "pln": ["(: cnet_isa_3796213e68 (IsA babble gibberish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "babbler is a kind of oscine", "pln": ["(: cnet_isa_2eb9d6d129 (IsA babbler oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "babe ruth is a kind of baseball player", "pln": ["(: cnet_isa_f06222fe49 (IsA babe_ruth baseball_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "babel is a kind of confusion", "pln": ["(: cnet_isa_d6f0bcebc0 (IsA babel confusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "babesiidae is a kind of protoctist family", "pln": ["(: cnet_isa_01dac38d83 (IsA babesiidae protoctist_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "babinski is a kind of reflex", "pln": ["(: cnet_isa_a5609feea2 (IsA babinski reflex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "babirusa is a kind of swine", "pln": ["(: cnet_isa_a829933307 (IsA babirusa swine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "babka is a kind of coffeecake", "pln": ["(: cnet_isa_cce528315f (IsA babka coffeecake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baboon is a kind of primate", "pln": ["(: cnet_isa_2798d589bb (IsA baboon primate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baboon is a kind of old world monkey", "pln": ["(: cnet_isa_c66cf99c5b (IsA baboon old_world_monkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "babu is a kind of man", "pln": ["(: cnet_isa_8788cb2f37 (IsA babu man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "babushka is a kind of headscarf", "pln": ["(: cnet_isa_ab83a0cad1 (IsA babushka headscarf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baby s breath is a kind of flower", "pln": ["(: cnet_isa_cf3ca6749c (IsA baby_s_breath flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baby s tear is a kind of groundcover", "pln": ["(: cnet_isa_b45747d959 (IsA baby_s_tear groundcover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baby is a kind of newborn human", "pln": ["(: cnet_isa_16712640ba (IsA baby newborn_human) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baby is a kind of very young child", "pln": ["(: cnet_isa_e11b500d30 (IsA baby very_young_child) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baby is a kind of undertaking", "pln": ["(: cnet_isa_505331218c (IsA baby undertaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "baby is a kind of young mammal", "pln": ["(: cnet_isa_3946d041c3 (IsA baby young_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baby is a kind of child", "pln": ["(: cnet_isa_ae89ef21f7 (IsA baby child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baby is a kind of fetus", "pln": ["(: cnet_isa_fbfff0bdb6 (IsA baby fetus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baby is a kind of offspring", "pln": ["(: cnet_isa_c56bbb99c6 (IsA baby offspring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baby bed is a kind of furniture", "pln": ["(: cnet_isa_52352b5990 (IsA baby_bed furniture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baby blue eye is a kind of herb", "pln": ["(: cnet_isa_a8c977dcfb (IsA baby_blue_eye herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baby boom is a kind of generation", "pln": ["(: cnet_isa_5a5255d099 (IsA baby_boom generation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baby boomer is a kind of person", "pln": ["(: cnet_isa_c1a27fd1ee (IsA baby_boomer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baby buggy is a kind of wheeled vehicle", "pln": ["(: cnet_isa_b2f8ad03a1 (IsA baby_buggy wheeled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baby buster is a kind of person", "pln": ["(: cnet_isa_757053343f (IsA baby_buster person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baby doctor is a kind of specialist", "pln": ["(: cnet_isa_59f14dbc6d (IsA baby_doctor specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "baby farmer is a kind of keeper", "pln": ["(: cnet_isa_54d71846f6 (IsA baby_farmer keeper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baby grand is a kind of grand piano", "pln": ["(: cnet_isa_5dd491fd64 (IsA baby_grand grand_piano) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baby oil is a kind of good lubricant for masturbation", "pln": ["(: cnet_isa_56509352cb (IsA baby_oil good_lubricant_for_masturbation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baby oil is a kind of ointment", "pln": ["(: cnet_isa_9d94af59f3 (IsA baby_oil ointment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baby powder is a kind of powder", "pln": ["(: cnet_isa_0a9a2d50c3 (IsA baby_powder powder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "baby shoe is a kind of shoe", "pln": ["(: cnet_isa_1609008537 (IsA baby_shoe shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baby talk is a kind of non standard speech", "pln": ["(: cnet_isa_f15b239075 (IsA baby_talk non_standard_speech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "babylonian is a kind of cuneiform", "pln": ["(: cnet_isa_0fc74ef2d3 (IsA babylonian cuneiform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "babylonian is a kind of semite", "pln": ["(: cnet_isa_8abb2832a3 (IsA babylonian semite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "babyminder is a kind of keeper", "pln": ["(: cnet_isa_57f11ac7f6 (IsA babyminder keeper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "babyrousa is a kind of mammal genus", "pln": ["(: cnet_isa_394e97911a (IsA babyrousa mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "babysitter is a kind of keeper", "pln": ["(: cnet_isa_1aa5a95c43 (IsA babysitter keeper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "babysitting is a kind of care", "pln": ["(: cnet_isa_75f27796e0 (IsA babysitting care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "baccalaureate is a kind of sermon", "pln": ["(: cnet_isa_fee97e19d8 (IsA baccalaureate sermon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baccarat is a kind of card game", "pln": ["(: cnet_isa_d91d6f8348 (IsA baccarat card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bacchant is a kind of fan", "pln": ["(: cnet_isa_685631d225 (IsA bacchant fan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bacchant is a kind of votary", "pln": ["(: cnet_isa_c139921785 (IsA bacchant votary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bacchante is a kind of votary", "pln": ["(: cnet_isa_2363dae0ee (IsA bacchante votary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baccharis is a kind of asterid dicot genus", "pln": ["(: cnet_isa_6c38896b48 (IsA baccharis asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bach is a kind of music", "pln": ["(: cnet_isa_0aa5d4c834 (IsA bach music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bachelor s degree is a kind of academic degree", "pln": ["(: cnet_isa_120e5a0082 (IsA bachelor_s_degree academic_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bachelor is a kind of man", "pln": ["(: cnet_isa_090583be6d (IsA bachelor man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bachelor girl is a kind of woman", "pln": ["(: cnet_isa_77c2915157 (IsA bachelor_girl woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bachelor of art is a kind of bachelor s degree", "pln": ["(: cnet_isa_258b0fe462 (IsA bachelor_of_art bachelor_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bachelor of art in library science is a kind of bachelor s degree", "pln": ["(: cnet_isa_84f2203dfd (IsA bachelor_of_art_in_library_science bachelor_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bachelor of art in nursing is a kind of bachelor s degree", "pln": ["(: cnet_isa_98eaa1fd2e (IsA bachelor_of_art_in_nursing bachelor_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bachelor of divinity is a kind of bachelor s degree", "pln": ["(: cnet_isa_31534b5c2d (IsA bachelor_of_divinity bachelor_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bachelor of law is a kind of law degree", "pln": ["(: cnet_isa_ab9b96f81d (IsA bachelor_of_law law_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bachelor of literature is a kind of bachelor s degree", "pln": ["(: cnet_isa_410d05f37f (IsA bachelor_of_literature bachelor_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bachelor of medicine is a kind of bachelor s degree", "pln": ["(: cnet_isa_b3277992c7 (IsA bachelor_of_medicine bachelor_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bachelor of music is a kind of bachelor s degree", "pln": ["(: cnet_isa_1c7422c514 (IsA bachelor_of_music bachelor_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bachelor of naval science is a kind of bachelor s degree", "pln": ["(: cnet_isa_1b45b2dad4 (IsA bachelor_of_naval_science bachelor_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bachelor of science is a kind of bachelor s degree", "pln": ["(: cnet_isa_5a76c325d4 (IsA bachelor_of_science bachelor_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bachelor of science in architecture is a kind of bachelor s degree", "pln": ["(: cnet_isa_3645440683 (IsA bachelor_of_science_in_architecture bachelor_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bachelor of science in engineering is a kind of bachelor s degree", "pln": ["(: cnet_isa_dc2078e428 (IsA bachelor_of_science_in_engineering bachelor_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bachelor of theology is a kind of bachelor s degree", "pln": ["(: cnet_isa_b324e1162e (IsA bachelor_of_theology bachelor_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bachelor party is a kind of stag party", "pln": ["(: cnet_isa_0702619db0 (IsA bachelor_party stag_party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bachelorhood is a kind of marital status", "pln": ["(: cnet_isa_47b0507a9b (IsA bachelorhood marital_status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bachelorhood is a kind of time of life", "pln": ["(: cnet_isa_4078a24ad6 (IsA bachelorhood time_of_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bacillaceae is a kind of bacteria family", "pln": ["(: cnet_isa_4b4636fd9a (IsA bacillaceae bacteria_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bacillariophyceae is a kind of class", "pln": ["(: cnet_isa_6f6d4e406e (IsA bacillariophyceae class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bacillus is a kind of eubacteria", "pln": ["(: cnet_isa_ee47d170b0 (IsA bacillus eubacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bacillus anthracis is a kind of bacillus", "pln": ["(: cnet_isa_107ac33843 (IsA bacillus_anthracis bacillus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bacillus anthracis is a kind of bioweapon", "pln": ["(: cnet_isa_94c368dd7e (IsA bacillus_anthracis bioweapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bacillus subtilis is a kind of bacillus", "pln": ["(: cnet_isa_cdc348be63 (IsA bacillus_subtilis bacillus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bacitracin is a kind of antibiotic", "pln": ["(: cnet_isa_c89facf99d (IsA bacitracin antibiotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "back is a kind of position", "pln": ["(: cnet_isa_376dbeab43 (IsA back position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "back is a kind of cloth covering", "pln": ["(: cnet_isa_4fb090ce86 (IsA back cloth_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "back is a kind of support", "pln": ["(: cnet_isa_49faf4124c (IsA back support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "back is a kind of body part", "pln": ["(: cnet_isa_3ccde358ec (IsA back body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "back is a kind of football player", "pln": ["(: cnet_isa_5e7bbc319c (IsA back football_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "back brace is a kind of brace", "pln": ["(: cnet_isa_1568c8fe40 (IsA back_brace brace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "back burner is a kind of precedence", "pln": ["(: cnet_isa_ecf631b90a (IsA back_burner precedence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "back channel is a kind of channel", "pln": ["(: cnet_isa_2624b37c95 (IsA back_channel channel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "back circle is a kind of acrobatic stunt", "pln": ["(: cnet_isa_b6aaaa255a (IsA back_circle acrobatic_stunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "back door is a kind of access", "pln": ["(: cnet_isa_f337f878ec (IsA back_door access) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "back door is a kind of exterior door", "pln": ["(: cnet_isa_6eefdd393a (IsA back_door exterior_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "back exercise is a kind of exercise", "pln": ["(: cnet_isa_2a47454ff0 (IsA back_exercise exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "back formation is a kind of word", "pln": ["(: cnet_isa_19d32d53fc (IsA back_formation word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "back judge is a kind of football official", "pln": ["(: cnet_isa_1959ef4b35 (IsA back_judge football_official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "back matter is a kind of matter", "pln": ["(: cnet_isa_8cc2b181a8 (IsA back_matter matter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "back of beyond is a kind of depth", "pln": ["(: cnet_isa_348503fada (IsA back_of_beyond depth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "back porch is a kind of porch", "pln": ["(: cnet_isa_6b04a6ea5e (IsA back_porch porch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "back room is a kind of room", "pln": ["(: cnet_isa_fe5b34667d (IsA back_room room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "back tooth is a kind of tooth", "pln": ["(: cnet_isa_c55afc47fe (IsA back_tooth tooth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backache is a kind of ache", "pln": ["(: cnet_isa_b8fb76b943 (IsA backache ache) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backband is a kind of band", "pln": ["(: cnet_isa_a47d1f41c8 (IsA backband band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backbeat is a kind of rhythm", "pln": ["(: cnet_isa_af91876340 (IsA backbeat rhythm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backbench is a kind of seat", "pln": ["(: cnet_isa_7b416ebc92 (IsA backbench seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backbencher is a kind of legislator", "pln": ["(: cnet_isa_6e9c0e205c (IsA backbencher legislator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backbend is a kind of acrobatic stunt", "pln": ["(: cnet_isa_47e38b89e8 (IsA backbend acrobatic_stunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backblast is a kind of blowback", "pln": ["(: cnet_isa_5ddd4f30a0 (IsA backblast blowback) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "backboard is a kind of support", "pln": ["(: cnet_isa_498a092d2f (IsA backboard support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backboard is a kind of game equipment", "pln": ["(: cnet_isa_5f0250333a (IsA backboard game_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backbone is a kind of connection", "pln": ["(: cnet_isa_cea4511242 (IsA backbone connection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backbone is a kind of part", "pln": ["(: cnet_isa_30e666ec27 (IsA backbone part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backbone is a kind of fortitude", "pln": ["(: cnet_isa_df79ba4497 (IsA backbone fortitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backdoor is a kind of access code", "pln": ["(: cnet_isa_f103775083 (IsA backdoor access_code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backdrop is a kind of scenery", "pln": ["(: cnet_isa_cd78095861 (IsA backdrop scenery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backfield is a kind of formation", "pln": ["(: cnet_isa_aa07aa5fdb (IsA backfield formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "backfire is a kind of miscalculation", "pln": ["(: cnet_isa_9fdd752e47 (IsA backfire miscalculation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backfire is a kind of explosion", "pln": ["(: cnet_isa_4f1a41c345 (IsA backfire explosion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backfire is a kind of fire", "pln": ["(: cnet_isa_d582061b6d (IsA backfire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backflow is a kind of flow", "pln": ["(: cnet_isa_94e40ad120 (IsA backflow flow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backgammon is a kind of board game for two player", "pln": ["(: cnet_isa_b1a9d1d7a7 (IsA backgammon board_game_for_two_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backgammon is a kind of board game with two player", "pln": ["(: cnet_isa_a0bace846f (IsA backgammon board_game_with_two_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backgammon is a kind of game of strategy", "pln": ["(: cnet_isa_0be6916e68 (IsA backgammon game_of_strategy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backgammon is a kind of board game", "pln": ["(: cnet_isa_b492c9e5a2 (IsA backgammon board_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backgammon board is a kind of board", "pln": ["(: cnet_isa_d0d603a36c (IsA backgammon_board board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "background is a kind of inheritance", "pln": ["(: cnet_isa_9f620abfc0 (IsA background inheritance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "background is a kind of information", "pln": ["(: cnet_isa_150602acd9 (IsA background information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "background is a kind of view", "pln": ["(: cnet_isa_0d3cc106cd (IsA background view) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "background is a kind of screen", "pln": ["(: cnet_isa_dd9e669656 (IsA background screen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "background is a kind of accompaniment", "pln": ["(: cnet_isa_b663a018eb (IsA background accompaniment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "background is a kind of noise", "pln": ["(: cnet_isa_1648ecc1e5 (IsA background noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "background noise is a kind of background", "pln": ["(: cnet_isa_bb4600e3ef (IsA background_noise background) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "background processing is a kind of priority processing", "pln": ["(: cnet_isa_02ddbdd4f4 (IsA background_processing priority_processing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "background radiation is a kind of background", "pln": ["(: cnet_isa_15dec7b78e (IsA background_radiation background) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backgrounder is a kind of press conference", "pln": ["(: cnet_isa_63ad2cf291 (IsA backgrounder press_conference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backhand is a kind of return", "pln": ["(: cnet_isa_93296f26c9 (IsA backhand return) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backhand drive is a kind of drive", "pln": ["(: cnet_isa_9ed2500991 (IsA backhand_drive drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backhander is a kind of blow", "pln": ["(: cnet_isa_6ca4314cea (IsA backhander blow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backhoe is a kind of power shovel", "pln": ["(: cnet_isa_3706a1e066 (IsA backhoe power_shovel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backing is a kind of blessing", "pln": ["(: cnet_isa_30d867b231 (IsA backing blessing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backing is a kind of layer", "pln": ["(: cnet_isa_c683df698a (IsA backing layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backing is a kind of strengthener", "pln": ["(: cnet_isa_67a884d573 (IsA backing strengthener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backlash is a kind of reaction", "pln": ["(: cnet_isa_e052d34e19 (IsA backlash reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backlighting is a kind of lighting", "pln": ["(: cnet_isa_7802f57144 (IsA backlighting lighting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backlog is a kind of collection", "pln": ["(: cnet_isa_0a1f9b3535 (IsA backlog collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backlog is a kind of firewood", "pln": ["(: cnet_isa_6ac5fd91e1 (IsA backlog firewood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backpack is a kind of bag", "pln": ["(: cnet_isa_3ef4adbffe (IsA backpack bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backpacker is a kind of hiker", "pln": ["(: cnet_isa_c4d7654499 (IsA backpacker hiker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backpacking tent is a kind of tent", "pln": ["(: cnet_isa_d6f4458fb5 (IsA backpacking_tent tent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backplate is a kind of armor plate", "pln": ["(: cnet_isa_d10a93aea5 (IsA backplate armor_plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backroom is a kind of facility", "pln": ["(: cnet_isa_05be59ffe4 (IsA backroom facility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backroom boy is a kind of adviser", "pln": ["(: cnet_isa_ccbc21f831 (IsA backroom_boy adviser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "backsaw is a kind of handsaw", "pln": ["(: cnet_isa_5f4b57da35 (IsA backsaw handsaw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backscratcher is a kind of scratcher", "pln": ["(: cnet_isa_5777328f45 (IsA backscratcher scratcher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backscratcher is a kind of opportunist", "pln": ["(: cnet_isa_5a8dd855a4 (IsA backscratcher opportunist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backseat is a kind of seat", "pln": ["(: cnet_isa_d676309e7b (IsA backseat seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "backseat is a kind of inferiority", "pln": ["(: cnet_isa_549fa97814 (IsA backseat inferiority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backseat driver is a kind of meddler", "pln": ["(: cnet_isa_81ed44504a (IsA backseat_driver meddler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backslapper is a kind of enthusiast", "pln": ["(: cnet_isa_80eb257dff (IsA backslapper enthusiast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backsliding is a kind of failure", "pln": ["(: cnet_isa_71fe0e3b73 (IsA backsliding failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backspace character is a kind of control character", "pln": ["(: cnet_isa_7f2e6531be (IsA backspace_character control_character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backspace key is a kind of key", "pln": ["(: cnet_isa_45f62c53bc (IsA backspace_key key) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backspin is a kind of spin", "pln": ["(: cnet_isa_98db3dbc16 (IsA backspin spin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backstair is a kind of stairway", "pln": ["(: cnet_isa_60271e4f68 (IsA backstair stairway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backstay is a kind of stay", "pln": ["(: cnet_isa_c672e1f0ad (IsA backstay stay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backstitch is a kind of embroidery stitch", "pln": ["(: cnet_isa_94fb78a662 (IsA backstitch embroidery_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backstop is a kind of precaution", "pln": ["(: cnet_isa_87e8467f32 (IsA backstop precaution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backstop is a kind of fence", "pln": ["(: cnet_isa_cade627679 (IsA backstop fence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backstroke is a kind of swimming stroke", "pln": ["(: cnet_isa_cf444a3af2 (IsA backstroke swimming_stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backstroker is a kind of swimmer", "pln": ["(: cnet_isa_4991f4642f (IsA backstroker swimmer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backstroke is a kind of for swimmer", "pln": ["(: cnet_isa_b246e78032 (IsA backstroke for_swimmer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backswimmer is a kind of hemipterous insect", "pln": ["(: cnet_isa_d2dbe52bbe (IsA backswimmer hemipterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backsword is a kind of sword", "pln": ["(: cnet_isa_56236660dc (IsA backsword sword) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backup is a kind of duplicate", "pln": ["(: cnet_isa_798527db38 (IsA backup duplicate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backup is a kind of accretion", "pln": ["(: cnet_isa_2e71e57e75 (IsA backup accretion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backup file is a kind of computer file", "pln": ["(: cnet_isa_2e73dd5ca4 (IsA backup_file computer_file) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backup system is a kind of computer system", "pln": ["(: cnet_isa_5113db4ea3 (IsA backup_system computer_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backwater is a kind of region", "pln": ["(: cnet_isa_305abd1ad7 (IsA backwater region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backwater is a kind of body of water", "pln": ["(: cnet_isa_f50727aeb4 (IsA backwater body_of_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backwood is a kind of country", "pln": ["(: cnet_isa_16e253a6d9 (IsA backwood country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "backyard is a kind of yard", "pln": ["(: cnet_isa_9b13966e63 (IsA backyard yard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bacon is a kind of cut of pork", "pln": ["(: cnet_isa_95bd62b7f4 (IsA bacon cut_of_pork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bacon and egg is a kind of dish", "pln": ["(: cnet_isa_542afddec8 (IsA bacon_and_egg dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bacon lettuce tomato sandwich is a kind of sandwich", "pln": ["(: cnet_isa_dd9501cf1f (IsA bacon_lettuce_tomato_sandwich sandwich) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bacon rind is a kind of rind", "pln": ["(: cnet_isa_31925dedd1 (IsA bacon_rind rind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bacon strip is a kind of bacon", "pln": ["(: cnet_isa_424253f914 (IsA bacon_strip bacon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bacteremia is a kind of pathology", "pln": ["(: cnet_isa_084e2ef0c5 (IsA bacteremia pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bacteria is a kind of microorganism", "pln": ["(: cnet_isa_555268b0f7 (IsA bacteria microorganism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bacteria bed is a kind of filter", "pln": ["(: cnet_isa_2ee7293c88 (IsA bacteria_bed filter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bacteria family is a kind of family", "pln": ["(: cnet_isa_183caf9d71 (IsA bacteria_family family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bacteria genus is a kind of genus", "pln": ["(: cnet_isa_4bbac81cac (IsA bacteria_genus genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bacteria order is a kind of ordering", "pln": ["(: cnet_isa_9151291809 (IsA bacteria_order ordering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bacteria specy is a kind of specy", "pln": ["(: cnet_isa_bdc51d535a (IsA bacteria_specy specy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bacterial toxin is a kind of toxin", "pln": ["(: cnet_isa_e2d630b1bb (IsA bacterial_toxin toxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bactericide is a kind of chemical", "pln": ["(: cnet_isa_b446fd8d3a (IsA bactericide chemical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bacteriochlorophyll is a kind of pigment", "pln": ["(: cnet_isa_c890c2cb7f (IsA bacteriochlorophyll pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bacteriologist is a kind of biologist", "pln": ["(: cnet_isa_4639e70700 (IsA bacteriologist biologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bacteriology is a kind of medicine", "pln": ["(: cnet_isa_f098162751 (IsA bacteriology medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bacteriolysis is a kind of lysis", "pln": ["(: cnet_isa_adab770ff9 (IsA bacteriolysis lysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bacteriophage is a kind of virus", "pln": ["(: cnet_isa_ce9798330d (IsA bacteriophage virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bacteriostasis is a kind of organic process", "pln": ["(: cnet_isa_868295a327 (IsA bacteriostasis organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bacteriostat is a kind of agent", "pln": ["(: cnet_isa_6721093601 (IsA bacteriostat agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bacteroid is a kind of bacteria", "pln": ["(: cnet_isa_9e21954fda (IsA bacteroid bacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bacteroidaceae is a kind of bacteria family", "pln": ["(: cnet_isa_8913af3986 (IsA bacteroidaceae bacteria_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bacteroide is a kind of bacteria genus", "pln": ["(: cnet_isa_4c6818fbfd (IsA bacteroide bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bactrian camel is a kind of camel", "pln": ["(: cnet_isa_2e241fe80e (IsA bactrian_camel camel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bad is a kind of quality", "pln": ["(: cnet_isa_aaad174891 (IsA bad quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bad block is a kind of block", "pln": ["(: cnet_isa_33d817889c (IsA bad_block block) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bad check is a kind of check", "pln": ["(: cnet_isa_a793801bf7 (IsA bad_check check) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bad debt is a kind of debt", "pln": ["(: cnet_isa_cb701cf114 (IsA bad_debt debt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bad egg is a kind of bad person", "pln": ["(: cnet_isa_32d4f97081 (IsA bad_egg bad_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bad fairy is a kind of evil spirit", "pln": ["(: cnet_isa_13e2997e87 (IsA bad_fairy evil_spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bad guy is a kind of person", "pln": ["(: cnet_isa_fe125607b6 (IsA bad_guy person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bad luck is a kind of luck", "pln": ["(: cnet_isa_4667c5448d (IsA bad_luck luck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bad manner is a kind of impoliteness", "pln": ["(: cnet_isa_997b3415c9 (IsA bad_manner impoliteness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bad person is a kind of person", "pln": ["(: cnet_isa_dee93ffcea (IsA bad_person person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bad temper is a kind of anger", "pln": ["(: cnet_isa_a4df774ac6 (IsA bad_temper anger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bad weather is a kind of weather", "pln": ["(: cnet_isa_9abb008142 (IsA bad_weather weather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "badaga is a kind of kannada", "pln": ["(: cnet_isa_d636ed7725 (IsA badaga kannada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "badaga is a kind of dravidian", "pln": ["(: cnet_isa_60e63ab9b6 (IsA badaga dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baddeleyite is a kind of mineral", "pln": ["(: cnet_isa_f7ab40af8c (IsA baddeleyite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bade is a kind of west chadic", "pln": ["(: cnet_isa_f6eafe7132 (IsA bade west_chadic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "badge is a kind of feature", "pln": ["(: cnet_isa_1117be7f97 (IsA badge feature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "badge is a kind of emblem", "pln": ["(: cnet_isa_b94ccd490c (IsA badge emblem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "badger is a kind of mammal", "pln": ["(: cnet_isa_7780fbff9e (IsA badger mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "badger is a kind of musteline mammal", "pln": ["(: cnet_isa_738f0d485e (IsA badger musteline_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "badger is a kind of american", "pln": ["(: cnet_isa_50d55e9fa6 (IsA badger american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "badgering is a kind of harassment", "pln": ["(: cnet_isa_389dabcb92 (IsA badgering harassment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "badinage is a kind of banter", "pln": ["(: cnet_isa_debf0262c0 (IsA badinage banter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "badland is a kind of land", "pln": ["(: cnet_isa_8a53a45450 (IsA badland land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "badminton is a kind of fun game", "pln": ["(: cnet_isa_a73c073a51 (IsA badminton fun_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "badminton is a kind of game", "pln": ["(: cnet_isa_52186a016e (IsA badminton game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "badminton is a kind of sport", "pln": ["(: cnet_isa_21e8626b03 (IsA badminton sport) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "badminton is a kind of court game", "pln": ["(: cnet_isa_cc5c69fe26 (IsA badminton court_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "badminton court is a kind of court", "pln": ["(: cnet_isa_36fd39dd53 (IsA badminton_court court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "badminton equipment is a kind of sport equipment", "pln": ["(: cnet_isa_7a209e13c0 (IsA badminton_equipment sport_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "badminton player is a kind of athlete", "pln": ["(: cnet_isa_9469980d72 (IsA badminton_player athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "badminton racket is a kind of racket", "pln": ["(: cnet_isa_1b4a811205 (IsA badminton_racket racket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "badness is a kind of intensity", "pln": ["(: cnet_isa_4301c0d0f7 (IsA badness intensity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baedeker is a kind of travel guidebook", "pln": ["(: cnet_isa_46a0f3b0d7 (IsA baedeker travel_guidebook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baffle is a kind of plate", "pln": ["(: cnet_isa_a59cc09731 (IsA baffle plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baffled is a kind of people", "pln": ["(: cnet_isa_3aa46ba3f2 (IsA baffled people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bag is a kind of baggage", "pln": ["(: cnet_isa_da362a5c3c (IsA bag baggage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bag is a kind of container", "pln": ["(: cnet_isa_dce86cc6d3 (IsA bag container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bag is a kind of unpleasant woman", "pln": ["(: cnet_isa_09f8962968 (IsA bag unpleasant_woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bag is a kind of containerful", "pln": ["(: cnet_isa_0518a94022 (IsA bag containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bag is a kind of indefinite quantity", "pln": ["(: cnet_isa_dba7ada0b6 (IsA bag indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bag lady is a kind of homeless", "pln": ["(: cnet_isa_cc9757b93b (IsA bag_lady homeless) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bag of trick is a kind of know how", "pln": ["(: cnet_isa_fa96c7cd09 (IsA bag_of_trick know_how) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bagasse is a kind of pulp", "pln": ["(: cnet_isa_a8eb5fdcd3 (IsA bagasse pulp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bagassosis is a kind of alveolitis", "pln": ["(: cnet_isa_b6ad6cb58d (IsA bagassosis alveolitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bagatelle is a kind of table game", "pln": ["(: cnet_isa_6b9d1732b5 (IsA bagatelle table_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bagatelle is a kind of triviality", "pln": ["(: cnet_isa_86a3dc3c5b (IsA bagatelle triviality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bagatelle is a kind of musical composition", "pln": ["(: cnet_isa_67ca728477 (IsA bagatelle musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bagel is a kind of bun", "pln": ["(: cnet_isa_0c03ad91ef (IsA bagel bun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "baggage is a kind of case", "pln": ["(: cnet_isa_9b440b158b (IsA baggage case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baggage is a kind of materiel", "pln": ["(: cnet_isa_525c2936c9 (IsA baggage materiel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baggage is a kind of woman", "pln": ["(: cnet_isa_7e591d3ffb (IsA baggage woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baggage car is a kind of car", "pln": ["(: cnet_isa_6d1cc8ab90 (IsA baggage_car car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baggage claim is a kind of area", "pln": ["(: cnet_isa_a84e9271a3 (IsA baggage_claim area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baggageman is a kind of attendant", "pln": ["(: cnet_isa_13133af7f6 (IsA baggageman attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bagger is a kind of machine", "pln": ["(: cnet_isa_fff5724e3b (IsA bagger machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bagman is a kind of racketeer", "pln": ["(: cnet_isa_955fa2a766 (IsA bagman racketeer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bagpipe is a kind of pipe", "pln": ["(: cnet_isa_a0ab99507a (IsA bagpipe pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bagpipe is a kind of musical instrument", "pln": ["(: cnet_isa_ae001e2d9a (IsA bagpipe musical_instrument) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baguet is a kind of french bread", "pln": ["(: cnet_isa_bbf572d141 (IsA baguet french_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bahai is a kind of disciple", "pln": ["(: cnet_isa_85b65da8e2 (IsA bahai disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bahai is a kind of teacher", "pln": ["(: cnet_isa_f5d49d29ff (IsA bahai teacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bahaism is a kind of religion", "pln": ["(: cnet_isa_b422c9e635 (IsA bahaism religion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bahamian is a kind of west indian", "pln": ["(: cnet_isa_0eb573b668 (IsA bahamian west_indian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bahamian dollar is a kind of dollar", "pln": ["(: cnet_isa_ef61f8dcfb (IsA bahamian_dollar dollar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bahia grass is a kind of grass", "pln": ["(: cnet_isa_5ea6b2de76 (IsA bahia_grass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bahrain dinar is a kind of bahrainian monetary unit", "pln": ["(: cnet_isa_89dd7c22c4 (IsA bahrain_dinar bahrainian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bahrainian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_702ca52e4a (IsA bahrainian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bahreini is a kind of arabian", "pln": ["(: cnet_isa_c30b1428c2 (IsA bahreini arabian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "baht is a kind of thai monetary unit", "pln": ["(: cnet_isa_386f632535 (IsA baht thai_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bai is a kind of tibeto burman", "pln": ["(: cnet_isa_5b28937f0c (IsA bai tibeto_burman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bail is a kind of recognizance", "pln": ["(: cnet_isa_3847538936 (IsA bail recognizance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bail is a kind of legal system", "pln": ["(: cnet_isa_1c3a4a85bb (IsA bail legal_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bailee is a kind of agent", "pln": ["(: cnet_isa_81f1d73c04 (IsA bailee agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bailey is a kind of court", "pln": ["(: cnet_isa_203dcc1413 (IsA bailey court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bailey is a kind of rampart", "pln": ["(: cnet_isa_994d34fefe (IsA bailey rampart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bailey bridge is a kind of bridge", "pln": ["(: cnet_isa_e68feb1579 (IsA bailey_bridge bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bailiff is a kind of official", "pln": ["(: cnet_isa_2776d8b67e (IsA bailiff official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bailiffship is a kind of position", "pln": ["(: cnet_isa_f081b747ef (IsA bailiffship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bailiwick is a kind of jurisdiction", "pln": ["(: cnet_isa_0864764db7 (IsA bailiwick jurisdiction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bailment is a kind of delivery", "pln": ["(: cnet_isa_dad358f70b (IsA bailment delivery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bailor is a kind of deliverer", "pln": ["(: cnet_isa_7ccc93f80b (IsA bailor deliverer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bain marie is a kind of pan", "pln": ["(: cnet_isa_45b5b96161 (IsA bain_marie pan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baiomy is a kind of mammal genus", "pln": ["(: cnet_isa_c354286cb0 (IsA baiomy mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bairdiella is a kind of fish genus", "pln": ["(: cnet_isa_2b737c87f6 (IsA bairdiella fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bairn is a kind of child", "pln": ["(: cnet_isa_efeb2e31e2 (IsA bairn child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baisakh is a kind of hindu calendar month", "pln": ["(: cnet_isa_764da2c37b (IsA baisakh hindu_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bait is a kind of device", "pln": ["(: cnet_isa_c0d5b5f0c6 (IsA bait device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bait is a kind of temptation", "pln": ["(: cnet_isa_38d5baf547 (IsA bait temptation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bait and switch is a kind of selling", "pln": ["(: cnet_isa_83a330e4d6 (IsA bait_and_switch selling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bait casting is a kind of casting", "pln": ["(: cnet_isa_ce078d379f (IsA bait_casting casting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baiting is a kind of harassment", "pln": ["(: cnet_isa_5f99b694bc (IsA baiting harassment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baiza is a kind of omani monetary unit", "pln": ["(: cnet_isa_f504d61871 (IsA baiza omani_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baize is a kind of fabric", "pln": ["(: cnet_isa_15c1e94a3f (IsA baize fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baked alaska is a kind of dessert", "pln": ["(: cnet_isa_8f131a3f0d (IsA baked_alaska dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baked good is a kind of food", "pln": ["(: cnet_isa_4e81c769f4 (IsA baked_good food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baked potato is a kind of potato", "pln": ["(: cnet_isa_437f5aefba (IsA baked_potato potato) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baker s eczema is a kind of allergic eczema", "pln": ["(: cnet_isa_59f584c2f1 (IsA baker_s_eczema allergic_eczema) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baker s yeast is a kind of yeast", "pln": ["(: cnet_isa_e08c935cd8 (IsA baker_s_yeast yeast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baker is a kind of merchant", "pln": ["(: cnet_isa_94c93eeb6a (IsA baker merchant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baker is a kind of skilled worker", "pln": ["(: cnet_isa_b475c510fd (IsA baker skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bakery is a kind of shop", "pln": ["(: cnet_isa_4f80de56aa (IsA bakery shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bakery is a kind of workplace", "pln": ["(: cnet_isa_58034837c0 (IsA bakery workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baking is a kind of cooking", "pln": ["(: cnet_isa_828b869194 (IsA baking cooking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baking is a kind of creating from raw material", "pln": ["(: cnet_isa_167448a349 (IsA baking creating_from_raw_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baking powder is a kind of leaven", "pln": ["(: cnet_isa_34ee91511f (IsA baking_powder leaven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baking powder biscuit is a kind of biscuit", "pln": ["(: cnet_isa_9ae55494d8 (IsA baking_powder_biscuit biscuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baklava is a kind of pastry", "pln": ["(: cnet_isa_f08ec0af64 (IsA baklava pastry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balaclava is a kind of cap", "pln": ["(: cnet_isa_28941bf610 (IsA balaclava cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "balaena is a kind of mammal genus", "pln": ["(: cnet_isa_77f6a224f6 (IsA balaena mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balaenicep is a kind of bird genus", "pln": ["(: cnet_isa_e98a8b3fe3 (IsA balaenicep bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balaenicipitidae is a kind of bird family", "pln": ["(: cnet_isa_1c206c785a (IsA balaenicipitidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balaenidae is a kind of mammal family", "pln": ["(: cnet_isa_989cfbdc5c (IsA balaenidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balaenoptera is a kind of mammal genus", "pln": ["(: cnet_isa_6a7186c30a (IsA balaenoptera mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balaenopteridae is a kind of mammal family", "pln": ["(: cnet_isa_8742a33348 (IsA balaenopteridae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balagan is a kind of chao", "pln": ["(: cnet_isa_c4dd2a5498 (IsA balagan chao) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balalaika is a kind of chordophone", "pln": ["(: cnet_isa_1d1ea36579 (IsA balalaika chordophone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balance is a kind of scale", "pln": ["(: cnet_isa_47489e0be3 (IsA balance scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balance is a kind of person", "pln": ["(: cnet_isa_5f11b722ed (IsA balance person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balance is a kind of equality", "pln": ["(: cnet_isa_712f7b29f0 (IsA balance equality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balance is a kind of remainder", "pln": ["(: cnet_isa_584e408640 (IsA balance remainder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balance is a kind of structure", "pln": ["(: cnet_isa_cd7c0a873a (IsA balance structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "balance is a kind of equilibrium", "pln": ["(: cnet_isa_4b1f89e3ba (IsA balance equilibrium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "balance of payments problem is a kind of problem", "pln": ["(: cnet_isa_83e80cc648 (IsA balance_of_payments_problem problem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balance beam is a kind of gymnastic apparatus", "pln": ["(: cnet_isa_a3f90c0e67 (IsA balance_beam gymnastic_apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balance of payment is a kind of accounting", "pln": ["(: cnet_isa_0247b04e2c (IsA balance_of_payment accounting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balance of payment problem is a kind of problem", "pln": ["(: cnet_isa_d8dcf85c00 (IsA balance_of_payment_problem problem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balance of power is a kind of equilibrium", "pln": ["(: cnet_isa_98db6607ae (IsA balance_of_power equilibrium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balance of trade is a kind of balance", "pln": ["(: cnet_isa_1625d12c3f (IsA balance_of_trade balance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balance sheet is a kind of record", "pln": ["(: cnet_isa_f761721cef (IsA balance_sheet record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balance wheel is a kind of wheel", "pln": ["(: cnet_isa_4e54898832 (IsA balance_wheel wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balanced budget is a kind of budget", "pln": ["(: cnet_isa_a043c89ba9 (IsA balanced_budget budget) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balanced diet is a kind of diet", "pln": ["(: cnet_isa_fd6530969c (IsA balanced_diet diet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balancer is a kind of acrobat", "pln": ["(: cnet_isa_4d85f7607a (IsA balancer acrobat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balanidae is a kind of arthropod family", "pln": ["(: cnet_isa_c77cdfc476 (IsA balanidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balanitis is a kind of inflammation", "pln": ["(: cnet_isa_4e3cba2661 (IsA balanitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balanoposthitis is a kind of inflammation", "pln": ["(: cnet_isa_885d55f994 (IsA balanoposthitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balanus is a kind of arthropod genus", "pln": ["(: cnet_isa_f49b6515e0 (IsA balanus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bala is a kind of spinel ruby", "pln": ["(: cnet_isa_aa4f3575ad (IsA bala spinel_ruby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balata is a kind of gum", "pln": ["(: cnet_isa_4f86492bff (IsA balata gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "balata is a kind of tree", "pln": ["(: cnet_isa_86278ec2cc (IsA balata tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balboa is a kind of panamanian monetary unit", "pln": ["(: cnet_isa_26353a5a7f (IsA balboa panamanian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balbriggan is a kind of knit", "pln": ["(: cnet_isa_7b7860b668 (IsA balbriggan knit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "balcony is a kind of structure", "pln": ["(: cnet_isa_a49a9a51d2 (IsA balcony structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bald cypress is a kind of cypress", "pln": ["(: cnet_isa_197ac7df44 (IsA bald_cypress cypress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bald eagle is a kind of bird", "pln": ["(: cnet_isa_e17c350073 (IsA bald_eagle bird) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bald eagle is a kind of eagle", "pln": ["(: cnet_isa_6d018fa9c7 (IsA bald_eagle eagle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bald faced hornet is a kind of hornet", "pln": ["(: cnet_isa_0f5265b7a3 (IsA bald_faced_hornet hornet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baldachin is a kind of canopy", "pln": ["(: cnet_isa_4d38619121 (IsA baldachin canopy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balderdash is a kind of board game", "pln": ["(: cnet_isa_f1ec19fdde (IsA balderdash board_game) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balderdash is a kind of nonsense", "pln": ["(: cnet_isa_21dff25c32 (IsA balderdash nonsense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "baldhead is a kind of person", "pln": ["(: cnet_isa_a0f33d7611 (IsA baldhead person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baldness is a kind of hairlessness", "pln": ["(: cnet_isa_869cc7537f (IsA baldness hairlessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baldric is a kind of belt", "pln": ["(: cnet_isa_9818b649e3 (IsA baldric belt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "baldwin is a kind of eating apple", "pln": ["(: cnet_isa_69cef20a24 (IsA baldwin eating_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bale is a kind of bundle", "pln": ["(: cnet_isa_c80c6ce96b (IsA bale bundle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baleen whale is a kind of whale", "pln": ["(: cnet_isa_b8dda2e9d3 (IsA baleen_whale whale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balinese is a kind of indonesian", "pln": ["(: cnet_isa_149372f75a (IsA balinese indonesian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "baling wire is a kind of wire", "pln": ["(: cnet_isa_1b95ee7c78 (IsA baling_wire wire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baliste is a kind of fish genus", "pln": ["(: cnet_isa_90e2d1553d (IsA baliste fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balistidae is a kind of fish family", "pln": ["(: cnet_isa_fe6cae7c12 (IsA balistidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balk is a kind of pitch", "pln": ["(: cnet_isa_e83c3d008a (IsA balk pitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balk is a kind of area", "pln": ["(: cnet_isa_e1c9191207 (IsA balk area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balkan is a kind of european", "pln": ["(: cnet_isa_4d17d91fde (IsA balkan european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balkan country is a kind of european country", "pln": ["(: cnet_isa_ee540b7197 (IsA balkan_country european_country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balker is a kind of person", "pln": ["(: cnet_isa_fdf8c18268 (IsA balker person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balkiness is a kind of intractability", "pln": ["(: cnet_isa_8a743cac12 (IsA balkiness intractability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balkline is a kind of line", "pln": ["(: cnet_isa_ea9e83e2a6 (IsA balkline line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ball is a kind of another name for sphere", "pln": ["(: cnet_isa_cb41ad372b (IsA ball another_name_for_sphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ball is a kind of for golfer to hit", "pln": ["(: cnet_isa_33bceb181e (IsA ball for_golfer_to_hit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ball is a kind of round object", "pln": ["(: cnet_isa_f572de7575 (IsA ball round_object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ball is a kind of slang term for teste", "pln": ["(: cnet_isa_38de96ce1d (IsA ball slang_term_for_teste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ball is a kind of toy", "pln": ["(: cnet_isa_907658337b (IsA ball toy) (STV 1.0 0.9748))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ball is a kind of pitch", "pln": ["(: cnet_isa_e27977ac2f (IsA ball pitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ball is a kind of game equipment", "pln": ["(: cnet_isa_f286d2e3c4 (IsA ball game_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ball is a kind of plaything", "pln": ["(: cnet_isa_4cbeaf3f8e (IsA ball plaything) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ball is a kind of structure", "pln": ["(: cnet_isa_c3838ce270 (IsA ball structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ball is a kind of dance", "pln": ["(: cnet_isa_9ebec71a92 (IsA ball dance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ball is a kind of agglomeration", "pln": ["(: cnet_isa_b311025905 (IsA ball agglomeration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ball is a kind of sphere", "pln": ["(: cnet_isa_825c5ba80c (IsA ball sphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ball and chain is a kind of shackle", "pln": ["(: cnet_isa_b924081aec (IsA ball_and_chain shackle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ball and socket joint is a kind of joint", "pln": ["(: cnet_isa_59655d4fc2 (IsA ball_and_socket_joint joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ball and socket joint is a kind of synovial joint", "pln": ["(: cnet_isa_0e09ab803d (IsA ball_and_socket_joint synovial_joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ball bearing is a kind of bearing", "pln": ["(: cnet_isa_9141fd0f32 (IsA ball_bearing bearing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ball boy is a kind of male child", "pln": ["(: cnet_isa_fea4afee02 (IsA ball_boy male_child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ball buster is a kind of job", "pln": ["(: cnet_isa_f45a6afd22 (IsA ball_buster job) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ball buster is a kind of woman", "pln": ["(: cnet_isa_4d24bac375 (IsA ball_buster woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ball carrier is a kind of football player", "pln": ["(: cnet_isa_423b6b645e (IsA ball_carrier football_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ball cartridge is a kind of cartridge", "pln": ["(: cnet_isa_ef17f62cf0 (IsA ball_cartridge cartridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ball field is a kind of playing field", "pln": ["(: cnet_isa_a01d722b81 (IsA ball_field playing_field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ball game is a kind of field game", "pln": ["(: cnet_isa_90327234de (IsA ball_game field_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ball gown is a kind of gown", "pln": ["(: cnet_isa_fbac3e85c9 (IsA ball_gown gown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ball hawk is a kind of athlete", "pln": ["(: cnet_isa_f17744a083 (IsA ball_hawk athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ball hawking is a kind of maneuver", "pln": ["(: cnet_isa_4c98a38212 (IsA ball_hawking maneuver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ball peen hammer is a kind of hammer", "pln": ["(: cnet_isa_3d7f1a725d (IsA ball_peen_hammer hammer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ball valve is a kind of valve", "pln": ["(: cnet_isa_6c0c44ff6c (IsA ball_valve valve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballad is a kind of poem", "pln": ["(: cnet_isa_2aae132e14 (IsA ballad poem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballad is a kind of song", "pln": ["(: cnet_isa_14fec0b1d5 (IsA ballad song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballade is a kind of poem", "pln": ["(: cnet_isa_ab767237b8 (IsA ballade poem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballast is a kind of electrical device", "pln": ["(: cnet_isa_1d50f39a2e (IsA ballast electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballast is a kind of material", "pln": ["(: cnet_isa_803e43efaf (IsA ballast material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballast is a kind of attribute", "pln": ["(: cnet_isa_e23ac35a64 (IsA ballast attribute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballast is a kind of gravel", "pln": ["(: cnet_isa_d12528b8a3 (IsA ballast gravel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballast resistor is a kind of resistor", "pln": ["(: cnet_isa_acd3258f0d (IsA ballast_resistor resistor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballcock is a kind of regulator", "pln": ["(: cnet_isa_43c9aab3b6 (IsA ballcock regulator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balldress is a kind of formalwear", "pln": ["(: cnet_isa_59b50b4638 (IsA balldress formalwear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballerina is a kind of ballet dancer", "pln": ["(: cnet_isa_fc8106b99c (IsA ballerina ballet_dancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballet is a kind of stage dancing", "pln": ["(: cnet_isa_d8006fa67d (IsA ballet stage_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ballet is a kind of music", "pln": ["(: cnet_isa_16f9ed1682 (IsA ballet music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballet company is a kind of company", "pln": ["(: cnet_isa_e12fba68b2 (IsA ballet_company company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballet dancer is a kind of dancer", "pln": ["(: cnet_isa_a00740187a (IsA ballet_dancer dancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ballet master is a kind of dancer", "pln": ["(: cnet_isa_fb15e75118 (IsA ballet_master dancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballet mistress is a kind of dancer", "pln": ["(: cnet_isa_872512cf35 (IsA ballet_mistress dancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballet position is a kind of position", "pln": ["(: cnet_isa_7c89e50a8d (IsA ballet_position position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballet skirt is a kind of skirt", "pln": ["(: cnet_isa_aa89c4f516 (IsA ballet_skirt skirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balletomane is a kind of enthusiast", "pln": ["(: cnet_isa_96a6362efa (IsA balletomane enthusiast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balletomania is a kind of enthusiasm", "pln": ["(: cnet_isa_e2080b0941 (IsA balletomania enthusiasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballgame is a kind of situation", "pln": ["(: cnet_isa_916956eb9e (IsA ballgame situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballistic galvanometer is a kind of moving coil galvanometer", "pln": ["(: cnet_isa_b515c23852 (IsA ballistic_galvanometer moving_coil_galvanometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballistic identification is a kind of identification", "pln": ["(: cnet_isa_a15a2cb280 (IsA ballistic_identification identification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ballistic missile is a kind of missile", "pln": ["(: cnet_isa_ae0a61ecad (IsA ballistic_missile missile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballistic missile defense organization is a kind of agency", "pln": ["(: cnet_isa_0bf4699f87 (IsA ballistic_missile_defense_organization agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballistic pendulum is a kind of physical pendulum", "pln": ["(: cnet_isa_460fe525d7 (IsA ballistic_pendulum physical_pendulum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballistic is a kind of dynamic", "pln": ["(: cnet_isa_b452d546e9 (IsA ballistic dynamic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballistic is a kind of trajectory", "pln": ["(: cnet_isa_74badc28ad (IsA ballistic trajectory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballistocardiogram is a kind of graph", "pln": ["(: cnet_isa_fed251e930 (IsA ballistocardiogram graph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballistocardiograph is a kind of medical instrument", "pln": ["(: cnet_isa_f1fe7d2ad7 (IsA ballistocardiograph medical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balloon is a kind of lighter than air craft", "pln": ["(: cnet_isa_9e096d592d (IsA balloon lighter_than_air_craft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "balloon is a kind of plaything", "pln": ["(: cnet_isa_fe30a26ee6 (IsA balloon plaything) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balloon bomb is a kind of bomb", "pln": ["(: cnet_isa_f9e8a3ca63 (IsA balloon_bomb bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "balloon flower is a kind of wildflower", "pln": ["(: cnet_isa_b84568009b (IsA balloon_flower wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balloon sail is a kind of sail", "pln": ["(: cnet_isa_587c2f6727 (IsA balloon_sail sail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balloon vine is a kind of soapberry vine", "pln": ["(: cnet_isa_368df15dec (IsA balloon_vine soapberry_vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balloonfish is a kind of spiny puffer", "pln": ["(: cnet_isa_068e4437b8 (IsA balloonfish spiny_puffer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballooning is a kind of flight", "pln": ["(: cnet_isa_26c462b771 (IsA ballooning flight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balloonist is a kind of skilled worker", "pln": ["(: cnet_isa_a401873282 (IsA balloonist skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballot is a kind of document", "pln": ["(: cnet_isa_8be1ec37b2 (IsA ballot document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballot box is a kind of box", "pln": ["(: cnet_isa_097c4a7005 (IsA ballot_box box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ballota is a kind of asterid dicot genus", "pln": ["(: cnet_isa_32a7ec850a (IsA ballota asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballottement is a kind of palpation", "pln": ["(: cnet_isa_657533bbd4 (IsA ballottement palpation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballpark is a kind of stadium", "pln": ["(: cnet_isa_980e1e64c8 (IsA ballpark stadium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballplayer is a kind of athlete", "pln": ["(: cnet_isa_56e6ae5c74 (IsA ballplayer athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballplayer is a kind of player", "pln": ["(: cnet_isa_c87790436d (IsA ballplayer player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballpoint is a kind of pen", "pln": ["(: cnet_isa_09c16c720d (IsA ballpoint pen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballroom is a kind of room", "pln": ["(: cnet_isa_eb773d288f (IsA ballroom room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballroom dancing is a kind of social dancing", "pln": ["(: cnet_isa_6f424dd240 (IsA ballroom_dancing social_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballup is a kind of mistake", "pln": ["(: cnet_isa_7b5ea3370d (IsA ballup mistake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ballyhoo is a kind of promotion", "pln": ["(: cnet_isa_37e9821252 (IsA ballyhoo promotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balm is a kind of balsam", "pln": ["(: cnet_isa_42bd579b42 (IsA balm balsam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "balm of gilead is a kind of incense tree", "pln": ["(: cnet_isa_a06570cc88 (IsA balm_of_gilead incense_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balm of gilead is a kind of balm", "pln": ["(: cnet_isa_57567c04fe (IsA balm_of_gilead balm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "balminess is a kind of mildness", "pln": ["(: cnet_isa_cc15b532ef (IsA balminess mildness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balmoral is a kind of cap", "pln": ["(: cnet_isa_3eb4ad3791 (IsA balmoral cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balmoral is a kind of shoe", "pln": ["(: cnet_isa_7dddba4484 (IsA balmoral shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balochi is a kind of iranian", "pln": ["(: cnet_isa_99c7572c8c (IsA balochi iranian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baloney is a kind of nonsense", "pln": ["(: cnet_isa_481cffe41a (IsA baloney nonsense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balsa is a kind of angiospermous tree", "pln": ["(: cnet_isa_d5f0f8c298 (IsA balsa angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balsa is a kind of wood", "pln": ["(: cnet_isa_c1aaf7522a (IsA balsa wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balsa raft is a kind of raft", "pln": ["(: cnet_isa_4049dc855b (IsA balsa_raft raft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balsam is a kind of ointment", "pln": ["(: cnet_isa_73ae6cff26 (IsA balsam ointment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "balsam is a kind of spermatophyte", "pln": ["(: cnet_isa_fa0cbccdf4 (IsA balsam spermatophyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balsam is a kind of oleoresin", "pln": ["(: cnet_isa_108e390745 (IsA balsam oleoresin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balsam apple is a kind of gourd", "pln": ["(: cnet_isa_cbbeb5c69c (IsA balsam_apple gourd) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balsam fir is a kind of silver fir", "pln": ["(: cnet_isa_129280365c (IsA balsam_fir silver_fir) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balsam of peru is a kind of tolu", "pln": ["(: cnet_isa_bd9706e04f (IsA balsam_of_peru tolu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balsam pear is a kind of gourd", "pln": ["(: cnet_isa_c8327b3fd2 (IsA balsam_pear gourd) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balsam poplar is a kind of poplar", "pln": ["(: cnet_isa_6b2fa8a1b0 (IsA balsam_poplar poplar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "balsam willow is a kind of willow", "pln": ["(: cnet_isa_858ba7bb37 (IsA balsam_willow willow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balsam woolly aphid is a kind of adelgid", "pln": ["(: cnet_isa_8cd2aab7ae (IsA balsam_woolly_aphid adelgid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balsaminaceae is a kind of rosid dicot family", "pln": ["(: cnet_isa_d78dd49835 (IsA balsaminaceae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "balsamorhiza is a kind of asterid dicot genus", "pln": ["(: cnet_isa_d5d9cc7166 (IsA balsamorhiza asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balsamroot is a kind of herb", "pln": ["(: cnet_isa_50dbfb66b1 (IsA balsamroot herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baltic is a kind of balto slavic", "pln": ["(: cnet_isa_8169724eea (IsA baltic balto_slavic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baltic finnic is a kind of fennic", "pln": ["(: cnet_isa_dc36651d51 (IsA baltic_finnic fennic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "baltic state is a kind of geographical area", "pln": ["(: cnet_isa_41b75dc669 (IsA baltic_state geographical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baltimore is a kind of city", "pln": ["(: cnet_isa_dadc1aeaea (IsA baltimore city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baltimore is a kind of city in maryland", "pln": ["(: cnet_isa_a52da4c046 (IsA baltimore city_in_maryland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baltimore oriole is a kind of northern oriole", "pln": ["(: cnet_isa_a9ad2f9dc6 (IsA baltimore_oriole northern_oriole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "balto slavic is a kind of indo european", "pln": ["(: cnet_isa_b4430f7844 (IsA balto_slavic indo_european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baluster is a kind of support", "pln": ["(: cnet_isa_568399564a (IsA baluster support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bamboo is a kind of gramineous plant", "pln": ["(: cnet_isa_dba5833e2b (IsA bamboo gramineous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bamboo is a kind of wood", "pln": ["(: cnet_isa_05f7d68b55 (IsA bamboo wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bamboo curtain is a kind of ideological barrier", "pln": ["(: cnet_isa_9552ee1e5c (IsA bamboo_curtain ideological_barrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bamboo fern is a kind of fern", "pln": ["(: cnet_isa_bccb65d6c7 (IsA bamboo_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bamboo palm is a kind of raffia palm", "pln": ["(: cnet_isa_62a444b557 (IsA bamboo_palm raffia_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bamboo shoot is a kind of vegetable", "pln": ["(: cnet_isa_c08fe4f6a7 (IsA bamboo_shoot vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bambusa is a kind of monocot genus", "pln": ["(: cnet_isa_78d8f0dcd7 (IsA bambusa monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bambuseae is a kind of tribe", "pln": ["(: cnet_isa_3052d6527b (IsA bambuseae tribe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ban is a kind of prohibition", "pln": ["(: cnet_isa_ad25dd402d (IsA ban prohibition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ban is a kind of moldovan monetary unit", "pln": ["(: cnet_isa_c6b6b9841c (IsA ban moldovan_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ban is a kind of romanian monetary unit", "pln": ["(: cnet_isa_a201cb66bf (IsA ban romanian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banana is a kind of edible fruit", "pln": ["(: cnet_isa_a0868bdc40 (IsA banana edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banana is a kind of herb", "pln": ["(: cnet_isa_4b004c58e8 (IsA banana herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banana boat is a kind of cargo ship", "pln": ["(: cnet_isa_37925fbe4f (IsA banana_boat cargo_ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banana bread is a kind of quick bread", "pln": ["(: cnet_isa_8ae2685a74 (IsA banana_bread quick_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banana oil is a kind of ester", "pln": ["(: cnet_isa_d4510a346a (IsA banana_oil ester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banana passion fruit is a kind of passionflower", "pln": ["(: cnet_isa_b57f644d6f (IsA banana_passion_fruit passionflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banana peel is a kind of peel", "pln": ["(: cnet_isa_5a146562c2 (IsA banana_peel peel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "banana quit is a kind of honeycreeper", "pln": ["(: cnet_isa_90df9358f9 (IsA banana_quit honeycreeper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "banana republic is a kind of country", "pln": ["(: cnet_isa_61291e976d (IsA banana_republic country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banana split is a kind of split", "pln": ["(: cnet_isa_a8e46e9169 (IsA banana_split split) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "band is a kind of adornment", "pln": ["(: cnet_isa_0d7fb31026 (IsA band adornment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "band is a kind of belt", "pln": ["(: cnet_isa_a43bb1b6d1 (IsA band belt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "band is a kind of loop", "pln": ["(: cnet_isa_e0c8d3fbc0 (IsA band loop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "band is a kind of restraint", "pln": ["(: cnet_isa_c6a4f01c9e (IsA band restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "band is a kind of strip", "pln": ["(: cnet_isa_9a71d8d3a1 (IsA band strip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "band is a kind of stripe", "pln": ["(: cnet_isa_9a1d3b1b1b (IsA band stripe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "band is a kind of range", "pln": ["(: cnet_isa_a421c9e128 (IsA band range) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "band is a kind of musical organization", "pln": ["(: cnet_isa_d24e371233 (IsA band musical_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "band aid is a kind of repair", "pln": ["(: cnet_isa_d590fdd6b5 (IsA band_aid repair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "band tailed pigeon is a kind of pigeon", "pln": ["(: cnet_isa_9987beb3ca (IsA band_tailed_pigeon pigeon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bandage is a kind of dressing", "pln": ["(: cnet_isa_8c31b77d70 (IsA bandage dressing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bandanna is a kind of handkerchief", "pln": ["(: cnet_isa_1e687d77b0 (IsA bandanna handkerchief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bandbox is a kind of box", "pln": ["(: cnet_isa_6128545b47 (IsA bandbox box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banded gecko is a kind of gecko", "pln": ["(: cnet_isa_95e2bafbc4 (IsA banded_gecko gecko) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banded krait is a kind of krait", "pln": ["(: cnet_isa_cff8a9cec5 (IsA banded_krait krait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banded palm civet is a kind of civet", "pln": ["(: cnet_isa_b4cfb93fbc (IsA banded_palm_civet civet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banded purple is a kind of nymphalid", "pln": ["(: cnet_isa_1348e47fe4 (IsA banded_purple nymphalid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banded sand snake is a kind of sand snake", "pln": ["(: cnet_isa_6c24f6f858 (IsA banded_sand_snake sand_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "banded stilt is a kind of stilt", "pln": ["(: cnet_isa_3549817504 (IsA banded_stilt stilt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banderilla is a kind of dart", "pln": ["(: cnet_isa_f51e6459ac (IsA banderilla dart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banderillero is a kind of bullfighter", "pln": ["(: cnet_isa_98900396d6 (IsA banderillero bullfighter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bandicoot is a kind of marsupial", "pln": ["(: cnet_isa_0051f03d52 (IsA bandicoot marsupial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bandicoot rat is a kind of rat", "pln": ["(: cnet_isa_5534337ffb (IsA bandicoot_rat rat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bandit is a kind of thief", "pln": ["(: cnet_isa_93c00dc531 (IsA bandit thief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banditry is a kind of plundering", "pln": ["(: cnet_isa_b8994d554a (IsA banditry plundering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bandleader is a kind of conductor", "pln": ["(: cnet_isa_b0eeefdb77 (IsA bandleader conductor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bandmaster is a kind of conductor", "pln": ["(: cnet_isa_98958e45a2 (IsA bandmaster conductor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bandoleer is a kind of cartridge belt", "pln": ["(: cnet_isa_a833628610 (IsA bandoleer cartridge_belt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bandoneon is a kind of concertina", "pln": ["(: cnet_isa_619da352d9 (IsA bandoneon concertina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bandsaw is a kind of power saw", "pln": ["(: cnet_isa_99d23a3a55 (IsA bandsaw power_saw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bandsman is a kind of musician", "pln": ["(: cnet_isa_405ef5dcbd (IsA bandsman musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bandstand is a kind of platform", "pln": ["(: cnet_isa_e412ecc283 (IsA bandstand platform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bandwagon is a kind of wagon", "pln": ["(: cnet_isa_8d01d96a38 (IsA bandwagon wagon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bandwagon is a kind of vogue", "pln": ["(: cnet_isa_c07b675326 (IsA bandwagon vogue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bandwagon effect is a kind of consequence", "pln": ["(: cnet_isa_27d09b33d1 (IsA bandwagon_effect consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bandwidth is a kind of information measure", "pln": ["(: cnet_isa_93d28b6b30 (IsA bandwidth information_measure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bane is a kind of affliction", "pln": ["(: cnet_isa_9717f05758 (IsA bane affliction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baneberry is a kind of berry", "pln": ["(: cnet_isa_4993541887 (IsA baneberry berry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baneberry is a kind of poisonous plant", "pln": ["(: cnet_isa_7b7594b625 (IsA baneberry poisonous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bang is a kind of hairdo", "pln": ["(: cnet_isa_23589fbd42 (IsA bang hairdo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bang is a kind of noise", "pln": ["(: cnet_isa_984189e473 (IsA bang noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bang is a kind of exhilaration", "pln": ["(: cnet_isa_7e7bdb78cd (IsA bang exhilaration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bangalore torpedo is a kind of torpedo", "pln": ["(: cnet_isa_5ef2c29c19 (IsA bangalore_torpedo torpedo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banger is a kind of pork sausage", "pln": ["(: cnet_isa_9ac94e6ecf (IsA banger pork_sausage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bangiaceae is a kind of protoctist family", "pln": ["(: cnet_isa_fb3ad03d15 (IsA bangiaceae protoctist_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banging is a kind of noise", "pln": ["(: cnet_isa_4c6de6269c (IsA banging noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bangladeshi is a kind of asiatic", "pln": ["(: cnet_isa_909c8767fb (IsA bangladeshi asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bangladeshi monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_246c5f40af (IsA bangladeshi_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bangle is a kind of adornment", "pln": ["(: cnet_isa_519ea39774 (IsA bangle adornment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banishment is a kind of rejection", "pln": ["(: cnet_isa_eeaca59401 (IsA banishment rejection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banishment is a kind of exclusion", "pln": ["(: cnet_isa_5bd91a5077 (IsA banishment exclusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banjo is a kind of guitar like musical instrument", "pln": ["(: cnet_isa_254ac86e29 (IsA banjo guitar_like_musical_instrument) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banjo is a kind of musical instrument", "pln": ["(: cnet_isa_de373e1ca0 (IsA banjo musical_instrument) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banjo is a kind of stringed instrument", "pln": ["(: cnet_isa_7ea89e4ad2 (IsA banjo stringed_instrument) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bank is a kind of flight maneuver", "pln": ["(: cnet_isa_7753e61101 (IsA bank flight_maneuver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bank is a kind of depository", "pln": ["(: cnet_isa_3779813537 (IsA bank depository) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bank is a kind of array", "pln": ["(: cnet_isa_4f78955c8d (IsA bank array) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bank is a kind of ridge", "pln": ["(: cnet_isa_0d982b5fb9 (IsA bank ridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bank is a kind of slope", "pln": ["(: cnet_isa_634a9d1adf (IsA bank slope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bank is a kind of fund", "pln": ["(: cnet_isa_a1282305ee (IsA bank fund) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bank is a kind of reserve", "pln": ["(: cnet_isa_4d2de915e0 (IsA bank reserve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bank account is a kind of account", "pln": ["(: cnet_isa_8af0012b25 (IsA bank_account account) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bank card is a kind of credit card", "pln": ["(: cnet_isa_e523bcc627 (IsA bank_card credit_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bank charter is a kind of charter", "pln": ["(: cnet_isa_fcad13425b (IsA bank_charter charter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bank closing is a kind of closure", "pln": ["(: cnet_isa_7c6b6449ee (IsA bank_closing closure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bank commissioner is a kind of commissioner", "pln": ["(: cnet_isa_907f9dcb06 (IsA bank_commissioner commissioner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bank depositor relation is a kind of fiduciary relation", "pln": ["(: cnet_isa_dea9802983 (IsA bank_depositor_relation fiduciary_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bank draft is a kind of draft", "pln": ["(: cnet_isa_4b68296ce1 (IsA bank_draft draft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bank examination is a kind of examination", "pln": ["(: cnet_isa_7542600ecc (IsA bank_examination examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bank examiner is a kind of examiner", "pln": ["(: cnet_isa_e3ee12be81 (IsA bank_examiner examiner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bank failure is a kind of failure", "pln": ["(: cnet_isa_e250baf9dd (IsA bank_failure failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bank gravel is a kind of gravel", "pln": ["(: cnet_isa_4ef9458823 (IsA bank_gravel gravel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bank guard is a kind of watchman", "pln": ["(: cnet_isa_bf18dfcd55 (IsA bank_guard watchman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bank holding company is a kind of holding company", "pln": ["(: cnet_isa_755bc16190 (IsA bank_holding_company holding_company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bank holiday is a kind of legal holiday", "pln": ["(: cnet_isa_8f08cf51af (IsA bank_holiday legal_holiday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bank identification number is a kind of number", "pln": ["(: cnet_isa_5e8e463f9c (IsA bank_identification_number number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bank loan is a kind of loan", "pln": ["(: cnet_isa_21aeff503d (IsA bank_loan loan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bank manager is a kind of director", "pln": ["(: cnet_isa_ef069e0e8d (IsA bank_manager director) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bank martin is a kind of martin", "pln": ["(: cnet_isa_fd1af48806 (IsA bank_martin martin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bank of england is a kind of central bank", "pln": ["(: cnet_isa_a8dc0a969e (IsA bank_of_england central_bank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bank of japan is a kind of central bank", "pln": ["(: cnet_isa_31be7f3567 (IsA bank_of_japan central_bank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bank rate is a kind of discount rate", "pln": ["(: cnet_isa_d9f759a5ea (IsA bank_rate discount_rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bank robber is a kind of robber", "pln": ["(: cnet_isa_0cce536d4c (IsA bank_robber robber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bank run is a kind of bank withdrawal", "pln": ["(: cnet_isa_9ebda72bae (IsA bank_run bank_withdrawal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bank shot is a kind of basketball shot", "pln": ["(: cnet_isa_51c07fa3f3 (IsA bank_shot basketball_shot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bank statement is a kind of statement", "pln": ["(: cnet_isa_9d3e920ddc (IsA bank_statement statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bank withdrawal is a kind of withdrawal", "pln": ["(: cnet_isa_c313376267 (IsA bank_withdrawal withdrawal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bankbook is a kind of record", "pln": ["(: cnet_isa_5ae344c41f (IsA bankbook record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banker is a kind of person", "pln": ["(: cnet_isa_c787d35313 (IsA banker person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "banker is a kind of financier", "pln": ["(: cnet_isa_d1a3a1681f (IsA banker financier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "banker is a kind of money handler", "pln": ["(: cnet_isa_17be86a4b6 (IsA banker money_handler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bankia is a kind of mollusk genus", "pln": ["(: cnet_isa_0e71f67125 (IsA bankia mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banking is a kind of finance", "pln": ["(: cnet_isa_d2fcd95cf9 (IsA banking finance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banking game is a kind of game of chance", "pln": ["(: cnet_isa_40c05f9507 (IsA banking_game game_of_chance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banking industry is a kind of industry", "pln": ["(: cnet_isa_ae076a07bf (IsA banking_industry industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bankroll is a kind of fund", "pln": ["(: cnet_isa_2feb5e4e41 (IsA bankroll fund) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bankrupt is a kind of failure", "pln": ["(: cnet_isa_9b0aa48446 (IsA bankrupt failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bankruptcy is a kind of proceeding", "pln": ["(: cnet_isa_c4a7baf833 (IsA bankruptcy proceeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bankruptcy is a kind of failure", "pln": ["(: cnet_isa_3111213da4 (IsA bankruptcy failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bankruptcy is a kind of insolvency", "pln": ["(: cnet_isa_51f450912a (IsA bankruptcy insolvency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banksia is a kind of shrub", "pln": ["(: cnet_isa_722f47c52e (IsA banksia shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banksia rose is a kind of rose", "pln": ["(: cnet_isa_9ef7213a0e (IsA banksia_rose rose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "banner is a kind of flag", "pln": ["(: cnet_isa_7e1dd62cce (IsA banner flag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banning order is a kind of prohibition", "pln": ["(: cnet_isa_d4d30b4532 (IsA banning_order prohibition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bannister is a kind of barrier", "pln": ["(: cnet_isa_8ac5fee6b6 (IsA bannister barrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bannock is a kind of flatbread", "pln": ["(: cnet_isa_12c07f3157 (IsA bannock flatbread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bann is a kind of announcement", "pln": ["(: cnet_isa_68163bc36e (IsA bann announcement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banquet is a kind of meal", "pln": ["(: cnet_isa_e38ad874fe (IsA banquet meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banquet is a kind of dinner", "pln": ["(: cnet_isa_7f7dd028e3 (IsA banquet dinner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banquette is a kind of bench", "pln": ["(: cnet_isa_8d4c2a823e (IsA banquette bench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banshee is a kind of spirit", "pln": ["(: cnet_isa_439f9182c7 (IsA banshee spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bantam is a kind of domestic fowl", "pln": ["(: cnet_isa_bfb538db40 (IsA bantam domestic_fowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bantamweight is a kind of boxer", "pln": ["(: cnet_isa_390ed08628 (IsA bantamweight boxer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bantamweight is a kind of wrestler", "pln": ["(: cnet_isa_1003feb6dd (IsA bantamweight wrestler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banteng is a kind of ox", "pln": ["(: cnet_isa_aa0ee7d05a (IsA banteng ox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banter is a kind of repartee", "pln": ["(: cnet_isa_6dc3936e5d (IsA banter repartee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "banti s disease is a kind of blood disease", "pln": ["(: cnet_isa_9f02a50fcf (IsA banti_s_disease blood_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bantu is a kind of niger congo", "pln": ["(: cnet_isa_0ae7dc0938 (IsA bantu niger_congo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bantu is a kind of african", "pln": ["(: cnet_isa_08c0a403c5 (IsA bantu african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banyan is a kind of jacket", "pln": ["(: cnet_isa_6ff19ef093 (IsA banyan jacket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banyan is a kind of fig tree", "pln": ["(: cnet_isa_a84844360a (IsA banyan fig_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banyan tree is a kind of tree", "pln": ["(: cnet_isa_a63a2554a4 (IsA banyan_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banzai is a kind of cheer", "pln": ["(: cnet_isa_ab0dbab872 (IsA banzai cheer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "banzai attack is a kind of attack", "pln": ["(: cnet_isa_6073d45b2b (IsA banzai_attack attack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baobab is a kind of angiospermous tree", "pln": ["(: cnet_isa_1ba21b7788 (IsA baobab angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bap is a kind of bread", "pln": ["(: cnet_isa_0b58201cbd (IsA bap bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baphia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_6a67aa8603 (IsA baphia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baptisia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_a4104caca2 (IsA baptisia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "baptism is a kind of sacrament", "pln": ["(: cnet_isa_debb8f8b9c (IsA baptism sacrament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baptismal font is a kind of basin", "pln": ["(: cnet_isa_2099ba5cb8 (IsA baptismal_font basin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baptist is a kind of protestant", "pln": ["(: cnet_isa_60f5e3db68 (IsA baptist protestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baptist church is a kind of protestant denomination", "pln": ["(: cnet_isa_a94a351246 (IsA baptist_church protestant_denomination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baptist denomination is a kind of protestant denomination", "pln": ["(: cnet_isa_b3118a4ab4 (IsA baptist_denomination protestant_denomination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baptistic doctrine is a kind of protestantism", "pln": ["(: cnet_isa_56502c4d35 (IsA baptistic_doctrine protestantism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bar is a kind of place", "pln": ["(: cnet_isa_e2418293c8 (IsA bar place) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bar is a kind of counter", "pln": ["(: cnet_isa_39b65848d7 (IsA bar counter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bar is a kind of heating element", "pln": ["(: cnet_isa_4629689a4d (IsA bar heating_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bar is a kind of implement", "pln": ["(: cnet_isa_e4a26c0a18 (IsA bar implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bar is a kind of obstruction", "pln": ["(: cnet_isa_64ba4438a3 (IsA bar obstruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bar is a kind of support", "pln": ["(: cnet_isa_3a572ffbb8 (IsA bar support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bar is a kind of railing", "pln": ["(: cnet_isa_e40cfc831f (IsA bar railing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bar is a kind of pressure unit", "pln": ["(: cnet_isa_06ebf18af4 (IsA bar pressure_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bar is a kind of barrier", "pln": ["(: cnet_isa_27f9b39a21 (IsA bar barrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bar is a kind of ridge", "pln": ["(: cnet_isa_74429df419 (IsA bar ridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bar bit is a kind of bit", "pln": ["(: cnet_isa_83a66c3d80 (IsA bar_bit bit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bar chart is a kind of chart", "pln": ["(: cnet_isa_9dbb37f1b6 (IsA bar_chart chart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bar code is a kind of code", "pln": ["(: cnet_isa_5f1c1671f4 (IsA bar_code code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bar examination is a kind of examination", "pln": ["(: cnet_isa_81b8b277d2 (IsA bar_examination examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bar fly is a kind of drinker", "pln": ["(: cnet_isa_10b8d8de4d (IsA bar_fly drinker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bar girl is a kind of woman", "pln": ["(: cnet_isa_4cab4c5e55 (IsA bar_girl woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bar line is a kind of line", "pln": ["(: cnet_isa_efefc50933 (IsA bar_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bar line is a kind of musical notation", "pln": ["(: cnet_isa_3ebf66a96c (IsA bar_line musical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bar magnet is a kind of magnet", "pln": ["(: cnet_isa_c92e460878 (IsA bar_magnet magnet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bar mask is a kind of catcher s mask", "pln": ["(: cnet_isa_daa8c9e5be (IsA bar_mask catcher_s_mask) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bar mitzvah is a kind of initiation", "pln": ["(: cnet_isa_80fda6c3dd (IsA bar_mitzvah initiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bar printer is a kind of impact printer", "pln": ["(: cnet_isa_052b365c9f (IsA bar_printer impact_printer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bar sinister is a kind of mark", "pln": ["(: cnet_isa_02398e8e07 (IsA bar_sinister mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bar sinister is a kind of ordinary", "pln": ["(: cnet_isa_5d6fc38307 (IsA bar_sinister ordinary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bar soap is a kind of soap", "pln": ["(: cnet_isa_7818d70c16 (IsA bar_soap soap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barack obama is a kind of democrat", "pln": ["(: cnet_isa_2cb34a15e0 (IsA barack_obama democrat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barb is a kind of fibril", "pln": ["(: cnet_isa_0ba113f27d (IsA barb fibril) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barb is a kind of point", "pln": ["(: cnet_isa_aa5334e57f (IsA barb point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barbadian is a kind of west indian", "pln": ["(: cnet_isa_791b1570ea (IsA barbadian west_indian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barbado cherry is a kind of dicot", "pln": ["(: cnet_isa_597b7016dd (IsA barbado_cherry dicot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barbado dollar is a kind of dollar", "pln": ["(: cnet_isa_aadeefbee4 (IsA barbado_dollar dollar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barbado gooseberry is a kind of edible fruit", "pln": ["(: cnet_isa_a6d77894a7 (IsA barbado_gooseberry edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barbado gooseberry is a kind of vine", "pln": ["(: cnet_isa_057a82f2ff (IsA barbado_gooseberry vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barbarea is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_35b0965484 (IsA barbarea dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barbarization is a kind of degradation", "pln": ["(: cnet_isa_d45e72b361 (IsA barbarization degradation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barbary ape is a kind of macaque", "pln": ["(: cnet_isa_b37ba8c57f (IsA barbary_ape macaque) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barbary coast is a kind of city district", "pln": ["(: cnet_isa_4b2ebe4f52 (IsA barbary_coast city_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "barbasco is a kind of shrub", "pln": ["(: cnet_isa_4215efaa8b (IsA barbasco shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barbecue is a kind of rack", "pln": ["(: cnet_isa_93612ae81e (IsA barbecue rack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "barbecue is a kind of cookout", "pln": ["(: cnet_isa_41504c57f6 (IsA barbecue cookout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barbecue is a kind of dish", "pln": ["(: cnet_isa_3854568362 (IsA barbecue dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barbecue pit is a kind of pit", "pln": ["(: cnet_isa_6129669686 (IsA barbecue_pit pit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barbecue sauce is a kind of sauce", "pln": ["(: cnet_isa_db696b36ef (IsA barbecue_sauce sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barbecued sparerib is a kind of dish", "pln": ["(: cnet_isa_fc5bb84fb2 (IsA barbecued_sparerib dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barbecued wing is a kind of dish", "pln": ["(: cnet_isa_2cbef50db1 (IsA barbecued_wing dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barbecuing is a kind of roasting", "pln": ["(: cnet_isa_b618b35279 (IsA barbecuing roasting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barbed wire is a kind of wire", "pln": ["(: cnet_isa_b20e23a67c (IsA barbed_wire wire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barbel is a kind of tentacle", "pln": ["(: cnet_isa_abcbb7b6c9 (IsA barbel tentacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "barbell is a kind of weight", "pln": ["(: cnet_isa_eab566820d (IsA barbell weight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barber s pole is a kind of visual signal", "pln": ["(: cnet_isa_b61efc270f (IsA barber_s_pole visual_signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barber is a kind of hairdresser", "pln": ["(: cnet_isa_a5a379c34d (IsA barber hairdresser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barber chair is a kind of chair", "pln": ["(: cnet_isa_2be9f11a55 (IsA barber_chair chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barberry is a kind of shrub", "pln": ["(: cnet_isa_cf5187e867 (IsA barberry shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barbershop is a kind of shop", "pln": ["(: cnet_isa_7218700917 (IsA barbershop shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barbershop quartet is a kind of quartet", "pln": ["(: cnet_isa_a7e1b51124 (IsA barbershop_quartet quartet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barberton daisy is a kind of african daisy", "pln": ["(: cnet_isa_56edfd75e4 (IsA barberton_daisy african_daisy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barbet is a kind of piciform bird", "pln": ["(: cnet_isa_6660cda4cd (IsA barbet piciform_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barbette is a kind of mound", "pln": ["(: cnet_isa_5d08a8f688 (IsA barbette mound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "barbette carriage is a kind of gun carriage", "pln": ["(: cnet_isa_3708b1e46c (IsA barbette_carriage gun_carriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barbican is a kind of tower", "pln": ["(: cnet_isa_bcdd3f4656 (IsA barbican tower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barbital is a kind of barbiturate", "pln": ["(: cnet_isa_70b0755854 (IsA barbital barbiturate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barbiturate is a kind of sedative hypnotic", "pln": ["(: cnet_isa_5c44128178 (IsA barbiturate sedative_hypnotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barbituric acid is a kind of acid", "pln": ["(: cnet_isa_0b26f2e2d0 (IsA barbituric_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barbu is a kind of threadfin", "pln": ["(: cnet_isa_67aacf0279 (IsA barbu threadfin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barcarole is a kind of song", "pln": ["(: cnet_isa_300ad926ca (IsA barcarole song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bard is a kind of caparison", "pln": ["(: cnet_isa_11fde609d9 (IsA bard caparison) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bard is a kind of poet", "pln": ["(: cnet_isa_20ece9bf78 (IsA bard poet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bardolatry is a kind of idolization", "pln": ["(: cnet_isa_c2e72311b4 (IsA bardolatry idolization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bare bone is a kind of bone", "pln": ["(: cnet_isa_1d0e989667 (IsA bare_bone bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bare bone is a kind of kernel", "pln": ["(: cnet_isa_a6cce9d7f6 (IsA bare_bone kernel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bareboat is a kind of vessel", "pln": ["(: cnet_isa_659ed1a7b8 (IsA bareboat vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bareboating is a kind of boating", "pln": ["(: cnet_isa_c68c68b3f2 (IsA bareboating boating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bareness is a kind of plainness", "pln": ["(: cnet_isa_b83926c1b0 (IsA bareness plainness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bareness is a kind of nakedness", "pln": ["(: cnet_isa_caf0f3c52a (IsA bareness nakedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bargain is a kind of agreement", "pln": ["(: cnet_isa_a75a4766de (IsA bargain agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bargain is a kind of purchase", "pln": ["(: cnet_isa_938d9145fc (IsA bargain purchase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bargain hunter is a kind of shopper", "pln": ["(: cnet_isa_e21c356e54 (IsA bargain_hunter shopper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bargain rate is a kind of inexpensiveness", "pln": ["(: cnet_isa_beb0eb8fad (IsA bargain_rate inexpensiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bargainer is a kind of negotiator", "pln": ["(: cnet_isa_0e857bd539 (IsA bargainer negotiator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bargaining is a kind of negotiation", "pln": ["(: cnet_isa_40126f4b16 (IsA bargaining negotiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bargaining chip is a kind of leverage", "pln": ["(: cnet_isa_05a418845c (IsA bargaining_chip leverage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barge is a kind of boat", "pln": ["(: cnet_isa_c7ec193b7e (IsA barge boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barge pole is a kind of pole", "pln": ["(: cnet_isa_a4deb49e55 (IsA barge_pole pole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bargello is a kind of embroidery stitch", "pln": ["(: cnet_isa_73fea68354 (IsA bargello embroidery_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barilla is a kind of herb", "pln": ["(: cnet_isa_87f45796b9 (IsA barilla herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baritone is a kind of singer", "pln": ["(: cnet_isa_b760cdfe76 (IsA baritone singer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baritone is a kind of brass", "pln": ["(: cnet_isa_0076357742 (IsA baritone brass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baritone is a kind of singing voice", "pln": ["(: cnet_isa_72a97141a6 (IsA baritone singing_voice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barium is a kind of metallic element", "pln": ["(: cnet_isa_7a1ef63a41 (IsA barium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barium dioxide is a kind of baryta", "pln": ["(: cnet_isa_9bb76e940a (IsA barium_dioxide baryta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "barium enema is a kind of enema", "pln": ["(: cnet_isa_11924c0215 (IsA barium_enema enema) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barium hydroxide is a kind of baryta", "pln": ["(: cnet_isa_399757c249 (IsA barium_hydroxide baryta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barium monoxide is a kind of baryta", "pln": ["(: cnet_isa_0203c4eadd (IsA barium_monoxide baryta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barium sulphate is a kind of sulfate", "pln": ["(: cnet_isa_61839b2358 (IsA barium_sulphate sulfate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bark is a kind of sailing vessel", "pln": ["(: cnet_isa_9910182bba (IsA bark sailing_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bark is a kind of cry", "pln": ["(: cnet_isa_e53cae9fa3 (IsA bark cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bark is a kind of noise", "pln": ["(: cnet_isa_2b05e5760e (IsA bark noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bark is a kind of covering", "pln": ["(: cnet_isa_3a97011e07 (IsA bark covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bark beetle is a kind of beetle", "pln": ["(: cnet_isa_6272e89c5e (IsA bark_beetle beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bark louse is a kind of psocid", "pln": ["(: cnet_isa_0dc8b519d4 (IsA bark_louse psocid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barker is a kind of promoter", "pln": ["(: cnet_isa_e9ae7d3ee5 (IsA barker promoter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barking frog is a kind of frog", "pln": ["(: cnet_isa_12f6709295 (IsA barking_frog frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barley is a kind of grain", "pln": ["(: cnet_isa_bfc48482b5 (IsA barley grain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barley is a kind of cereal", "pln": ["(: cnet_isa_aee2cd3d97 (IsA barley cereal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barley grass is a kind of barley", "pln": ["(: cnet_isa_968b8707d2 (IsA barley_grass barley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "barley sugar is a kind of hard candy", "pln": ["(: cnet_isa_ef19668dd2 (IsA barley_sugar hard_candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "barley water is a kind of broth", "pln": ["(: cnet_isa_6c12876989 (IsA barley_water broth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barleycorn is a kind of grain", "pln": ["(: cnet_isa_bb201ee157 (IsA barleycorn grain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barmaid is a kind of bartender", "pln": ["(: cnet_isa_261bcc08cf (IsA barmaid bartender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barman is a kind of bartender", "pln": ["(: cnet_isa_42f974afe1 (IsA barman bartender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barmbrack is a kind of bread", "pln": ["(: cnet_isa_17ff6a3c18 (IsA barmbrack bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barn is a kind of farm building", "pln": ["(: cnet_isa_7fd5dba306 (IsA barn farm_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barn is a kind of area unit", "pln": ["(: cnet_isa_a5315a38f6 (IsA barn area_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barn dance is a kind of dance", "pln": ["(: cnet_isa_a9801898e0 (IsA barn_dance dance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barn door is a kind of sliding door", "pln": ["(: cnet_isa_a00f5a587a (IsA barn_door sliding_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barn owl is a kind of owl", "pln": ["(: cnet_isa_54b4f42f55 (IsA barn_owl owl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barn spider is a kind of spider", "pln": ["(: cnet_isa_b02c78d006 (IsA barn_spider spider) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barn swallow is a kind of swallow", "pln": ["(: cnet_isa_c93734716a (IsA barn_swallow swallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barnaby s thistle is a kind of weed", "pln": ["(: cnet_isa_a14c19ce9e (IsA barnaby_s_thistle weed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barnacle is a kind of crustacean", "pln": ["(: cnet_isa_ee0daef3f1 (IsA barnacle crustacean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barnacle goose is a kind of goose", "pln": ["(: cnet_isa_89eb5ee0f8 (IsA barnacle_goose goose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barnburner is a kind of success", "pln": ["(: cnet_isa_e964bed3e7 (IsA barnburner success) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barnburner is a kind of arsonist", "pln": ["(: cnet_isa_5d0981d5c7 (IsA barnburner arsonist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barndoor is a kind of flap", "pln": ["(: cnet_isa_64f45feff4 (IsA barndoor flap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barndoor skate is a kind of skate", "pln": ["(: cnet_isa_91f31ed391 (IsA barndoor_skate skate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barnful is a kind of containerful", "pln": ["(: cnet_isa_3fbab0a52c (IsA barnful containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barnstormer is a kind of actor", "pln": ["(: cnet_isa_1c011cd125 (IsA barnstormer actor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barnstormer is a kind of pilot", "pln": ["(: cnet_isa_ddc1415e39 (IsA barnstormer pilot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barnyard is a kind of yard", "pln": ["(: cnet_isa_4dbc72c447 (IsA barnyard yard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barnyard grass is a kind of millet", "pln": ["(: cnet_isa_544d82288a (IsA barnyard_grass millet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barograph is a kind of barometer", "pln": ["(: cnet_isa_aabfb3af70 (IsA barograph barometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barometer is a kind of measuring instrument", "pln": ["(: cnet_isa_1bf8b1d63a (IsA barometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barometric pressure is a kind of atmospheric pressure", "pln": ["(: cnet_isa_86221d3bde (IsA barometric_pressure atmospheric_pressure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baron is a kind of businessman", "pln": ["(: cnet_isa_0ad8a0cd9b (IsA baron businessman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baron is a kind of nobleman", "pln": ["(: cnet_isa_20c7109fa7 (IsA baron nobleman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baron is a kind of peer", "pln": ["(: cnet_isa_818cb91d7c (IsA baron peer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baronduki is a kind of squirrel", "pln": ["(: cnet_isa_a4ede0ce17 (IsA baronduki squirrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baroness is a kind of noblewoman", "pln": ["(: cnet_isa_8a8029ee94 (IsA baroness noblewoman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baronet is a kind of aristocrat", "pln": ["(: cnet_isa_4b1e70700f (IsA baronet aristocrat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baronetage is a kind of position", "pln": ["(: cnet_isa_d1dec62c3c (IsA baronetage position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baronetage is a kind of nobility", "pln": ["(: cnet_isa_9b6f893104 (IsA baronetage nobility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baronetcy is a kind of title", "pln": ["(: cnet_isa_2e89a72405 (IsA baronetcy title) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baronetcy is a kind of rank", "pln": ["(: cnet_isa_8e15dafc66 (IsA baronetcy rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barong is a kind of knife", "pln": ["(: cnet_isa_0e97c0b333 (IsA barong knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barony is a kind of domain", "pln": ["(: cnet_isa_67edeb9261 (IsA barony domain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barony is a kind of estate", "pln": ["(: cnet_isa_e579d23096 (IsA barony estate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baroque is a kind of artistic style", "pln": ["(: cnet_isa_1037eeb195 (IsA baroque artistic_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baroreceptor is a kind of sense organ", "pln": ["(: cnet_isa_334ef09d78 (IsA baroreceptor sense_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barosaur is a kind of sauropod", "pln": ["(: cnet_isa_5f9e20eef1 (IsA barosaur sauropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barouche is a kind of carriage", "pln": ["(: cnet_isa_3e433b8f98 (IsA barouche carriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barrack is a kind of military quarter", "pln": ["(: cnet_isa_ce1183fcf2 (IsA barrack military_quarter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barracouta is a kind of food fish", "pln": ["(: cnet_isa_36a50bc250 (IsA barracouta food_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barracuda is a kind of spiny finned fish", "pln": ["(: cnet_isa_50cd168618 (IsA barracuda spiny_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barrage is a kind of fire", "pln": ["(: cnet_isa_41f52ae2ef (IsA barrage fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "barrage is a kind of language", "pln": ["(: cnet_isa_cf2df6af6d (IsA barrage language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barrage balloon is a kind of airship", "pln": ["(: cnet_isa_b4f1ede28d (IsA barrage_balloon airship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barrage jamming is a kind of jamming", "pln": ["(: cnet_isa_29ab3b40da (IsA barrage_jamming jamming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barramunda is a kind of endangered specy", "pln": ["(: cnet_isa_fc1c1fe965 (IsA barramunda endangered_specy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barrater is a kind of wrongdoer", "pln": ["(: cnet_isa_212e850d4f (IsA barrater wrongdoer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barratry is a kind of bribery", "pln": ["(: cnet_isa_29743f1d7c (IsA barratry bribery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barratry is a kind of crime", "pln": ["(: cnet_isa_7a3bacebd4 (IsA barratry crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barratry is a kind of fraud", "pln": ["(: cnet_isa_0322a6f8b5 (IsA barratry fraud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barred owl is a kind of owl", "pln": ["(: cnet_isa_97be699a5a (IsA barred_owl owl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barrel is a kind of container", "pln": ["(: cnet_isa_b4030549c8 (IsA barrel container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barrel is a kind of tube", "pln": ["(: cnet_isa_fa3f5fde20 (IsA barrel tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barrel is a kind of vessel", "pln": ["(: cnet_isa_b595299556 (IsA barrel vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barrel is a kind of british capacity unit", "pln": ["(: cnet_isa_768e0af43a (IsA barrel british_capacity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "barrel is a kind of containerful", "pln": ["(: cnet_isa_d2304c8195 (IsA barrel containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barrel is a kind of united state liquid unit", "pln": ["(: cnet_isa_49578a1571 (IsA barrel united_state_liquid_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "barrel is a kind of cylinder", "pln": ["(: cnet_isa_e28334bd79 (IsA barrel cylinder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barrel cactus is a kind of cactus", "pln": ["(: cnet_isa_c724e4dec1 (IsA barrel_cactus cactus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barrel knot is a kind of knot", "pln": ["(: cnet_isa_e7d30ef2af (IsA barrel_knot knot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "barrel maker is a kind of craftsman", "pln": ["(: cnet_isa_27554cc01c (IsA barrel_maker craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "barrels is a kind of large indefinite quantity", "pln": ["(: cnet_isa_6c0bfa25c7 (IsA barrels large_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barrel organ is a kind of musical instrument", "pln": ["(: cnet_isa_05c4e390f7 (IsA barrel_organ musical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barrel roll is a kind of roll", "pln": ["(: cnet_isa_8818a9eeaf (IsA barrel_roll roll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barrel vault is a kind of vault", "pln": ["(: cnet_isa_c998ff27d2 (IsA barrel_vault vault) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barrelfish is a kind of butterfish", "pln": ["(: cnet_isa_60f1e2a7f0 (IsA barrelfish butterfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barrelhouse is a kind of barroom", "pln": ["(: cnet_isa_27907b9499 (IsA barrelhouse barroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barrel is a kind of large indefinite quantity", "pln": ["(: cnet_isa_fee5f78fe7 (IsA barrel large_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barren is a kind of wilderness", "pln": ["(: cnet_isa_7a2a856181 (IsA barren wilderness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barren ground caribou is a kind of caribou", "pln": ["(: cnet_isa_0d509fab75 (IsA barren_ground_caribou caribou) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "barrenness is a kind of sterility", "pln": ["(: cnet_isa_38e1501b79 (IsA barrenness sterility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barrenwort is a kind of herb", "pln": ["(: cnet_isa_42e7b20cc2 (IsA barrenwort herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barrette is a kind of pin", "pln": ["(: cnet_isa_c381553c34 (IsA barrette pin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barricade is a kind of barrier", "pln": ["(: cnet_isa_01fd47c246 (IsA barricade barrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barrier is a kind of obstruction", "pln": ["(: cnet_isa_e7a622550f (IsA barrier obstruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barrier is a kind of obstacle", "pln": ["(: cnet_isa_0ef061f643 (IsA barrier obstacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barrier is a kind of mechanism", "pln": ["(: cnet_isa_efca5e8c56 (IsA barrier mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barrier island is a kind of island", "pln": ["(: cnet_isa_50167f5f02 (IsA barrier_island island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barrier reef is a kind of coral reef", "pln": ["(: cnet_isa_7998b684e0 (IsA barrier_reef coral_reef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barring is a kind of ejection", "pln": ["(: cnet_isa_2417319d4c (IsA barring ejection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barrio is a kind of quarter", "pln": ["(: cnet_isa_37390907dd (IsA barrio quarter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barrio is a kind of urban area", "pln": ["(: cnet_isa_b4d69653d6 (IsA barrio urban_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barrister is a kind of lawyer", "pln": ["(: cnet_isa_78cf7370c3 (IsA barrister lawyer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "barroom is a kind of room", "pln": ["(: cnet_isa_0c3a245b09 (IsA barroom room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barrow s goldeneye is a kind of goldeneye", "pln": ["(: cnet_isa_e26c81b7c6 (IsA barrow_s_goldeneye goldeneye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "barrow is a kind of handcart", "pln": ["(: cnet_isa_39bf131dc8 (IsA barrow handcart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barrow is a kind of containerful", "pln": ["(: cnet_isa_7ffbf79683 (IsA barrow containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bartender is a kind of employee", "pln": ["(: cnet_isa_6d57a2650f (IsA bartender employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barter is a kind of exchange", "pln": ["(: cnet_isa_faafb53ceb (IsA barter exchange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barterer is a kind of trader", "pln": ["(: cnet_isa_8b89c5a6af (IsA barterer trader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bartholin s gland is a kind of vestibular gland", "pln": ["(: cnet_isa_b071e2677a (IsA bartholin_s_gland vestibular_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bartle frere is a kind of dicot genus", "pln": ["(: cnet_isa_653a3e31a5 (IsA bartle_frere dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bartlett is a kind of pear", "pln": ["(: cnet_isa_daf15a5ba8 (IsA bartlett pear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bartonia is a kind of flower", "pln": ["(: cnet_isa_faf955a672 (IsA bartonia flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bartram juneberry is a kind of juneberry", "pln": ["(: cnet_isa_0cb506ea8e (IsA bartram_juneberry juneberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bartramia is a kind of bird genus", "pln": ["(: cnet_isa_0098f6858d (IsA bartramia bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barycenter is a kind of center of mass", "pln": ["(: cnet_isa_d2e3283476 (IsA barycenter center_of_mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "barye is a kind of pressure unit", "pln": ["(: cnet_isa_4d6d569f45 (IsA barye pressure_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baryon is a kind of fermion", "pln": ["(: cnet_isa_04a5970d3c (IsA baryon fermion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baryon is a kind of hadron", "pln": ["(: cnet_isa_74c3f2f70d (IsA baryon hadron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baryon number is a kind of number", "pln": ["(: cnet_isa_a7984200f3 (IsA baryon_number number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "baryta is a kind of barium", "pln": ["(: cnet_isa_4ced94a9c3 (IsA baryta barium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bas relief is a kind of relief", "pln": ["(: cnet_isa_65867c7f8d (IsA bas_relief relief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basal body temperature is a kind of body temperature", "pln": ["(: cnet_isa_4a26d20691 (IsA basal_body_temperature body_temperature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basal body temperature method of family planning is a kind of natural family planning", "pln": ["(: cnet_isa_c8ef608611 (IsA basal_body_temperature_method_of_family_planning natural_family_planning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basal ganglion is a kind of ganglion", "pln": ["(: cnet_isa_a72863cf4c (IsA basal_ganglion ganglion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basal metabolic rate is a kind of metabolic rate", "pln": ["(: cnet_isa_c1851f8996 (IsA basal_metabolic_rate metabolic_rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basal metabolism is a kind of metabolism", "pln": ["(: cnet_isa_91940ce2fb (IsA basal_metabolism metabolism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basal placentation is a kind of placentation", "pln": ["(: cnet_isa_37d56edc7e (IsA basal_placentation placentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basal vein is a kind of vein", "pln": ["(: cnet_isa_b870d1cd7f (IsA basal_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basalt is a kind of volcanic rock", "pln": ["(: cnet_isa_a6bd332ae0 (IsA basalt volcanic_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bascule is a kind of structure", "pln": ["(: cnet_isa_cbaeea02bc (IsA bascule structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "base is a kind of bottom", "pln": ["(: cnet_isa_3518622c29 (IsA base bottom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "base is a kind of baseball equipment", "pln": ["(: cnet_isa_0205e6d82c (IsA base baseball_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "base is a kind of ingredient", "pln": ["(: cnet_isa_efa1924409 (IsA base ingredient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "base is a kind of support", "pln": ["(: cnet_isa_0a3ac53a6c (IsA base support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "base is a kind of electrode", "pln": ["(: cnet_isa_bc4e81ad27 (IsA base electrode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "base is a kind of location", "pln": ["(: cnet_isa_d2d8dcbcd5 (IsA base location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "base is a kind of military installation", "pln": ["(: cnet_isa_90d33c4985 (IsA base military_installation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "base is a kind of number", "pln": ["(: cnet_isa_a6faa3f637 (IsA base number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "base is a kind of part", "pln": ["(: cnet_isa_7675e4e2fb (IsA base part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "base is a kind of flank", "pln": ["(: cnet_isa_eb16a2b746 (IsA base flank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "base is a kind of compound", "pln": ["(: cnet_isa_f3ef9eaaf1 (IsA base compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "base hit is a kind of hit", "pln": ["(: cnet_isa_47ed8ea18f (IsA base_hit hit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "base metal is a kind of metallic element", "pln": ["(: cnet_isa_6e8510ac42 (IsA base_metal metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "base on ball is a kind of accomplishment", "pln": ["(: cnet_isa_437c812ef9 (IsA base_on_ball accomplishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "base pair is a kind of nucleotide", "pln": ["(: cnet_isa_eb0ff77065 (IsA base_pair nucleotide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "base rate is a kind of interest rate", "pln": ["(: cnet_isa_099e1ce5e6 (IsA base_rate interest_rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "base runner is a kind of ballplayer", "pln": ["(: cnet_isa_83076fc5b9 (IsA base_runner ballplayer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseball is a kind of american pastime", "pln": ["(: cnet_isa_39eef56099 (IsA baseball american_pastime) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseball is a kind of american sport", "pln": ["(: cnet_isa_d56af79db0 (IsA baseball american_sport) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseball is a kind of american tradition", "pln": ["(: cnet_isa_e7ee2e7324 (IsA baseball american_tradition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseball is a kind of game", "pln": ["(: cnet_isa_cc6a107df9 (IsA baseball game) (STV 1.0 0.9748))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseball is a kind of game people play", "pln": ["(: cnet_isa_0e3ade69ea (IsA baseball game_people_play) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseball is a kind of smaller than basketball", "pln": ["(: cnet_isa_64ad1066ca (IsA baseball smaller_than_basketball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseball is a kind of sport", "pln": ["(: cnet_isa_fcc022edb9 (IsA baseball sport) (STV 1.0 0.9913))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseball is a kind of ball game", "pln": ["(: cnet_isa_e8c4f5e8c0 (IsA baseball ball_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseball is a kind of ball", "pln": ["(: cnet_isa_4ebf44737b (IsA baseball ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseball is a kind of baseball equipment", "pln": ["(: cnet_isa_fac6546965 (IsA baseball baseball_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "baseball bat is a kind of baseball equipment", "pln": ["(: cnet_isa_27f923dcd5 (IsA baseball_bat baseball_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseball bat is a kind of bat", "pln": ["(: cnet_isa_8e30f294fc (IsA baseball_bat bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseball cap is a kind of cap", "pln": ["(: cnet_isa_4958a3d3d0 (IsA baseball_cap cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "baseball card is a kind of trading card", "pln": ["(: cnet_isa_3255035558 (IsA baseball_card trading_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseball clinic is a kind of clinic", "pln": ["(: cnet_isa_1f3db65e81 (IsA baseball_clinic clinic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseball club is a kind of baseball team", "pln": ["(: cnet_isa_a303c64364 (IsA baseball_club baseball_team) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseball coach is a kind of coach", "pln": ["(: cnet_isa_cd08b1048b (IsA baseball_coach coach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseball diamond is a kind of tract", "pln": ["(: cnet_isa_ba76fc5d86 (IsA baseball_diamond tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseball equipment is a kind of sport equipment", "pln": ["(: cnet_isa_f006f717ea (IsA baseball_equipment sport_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseball glove is a kind of baseball equipment", "pln": ["(: cnet_isa_7a1c0c2cc4 (IsA baseball_glove baseball_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseball league is a kind of league", "pln": ["(: cnet_isa_739d81883a (IsA baseball_league league) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseball mitt is a kind of glove", "pln": ["(: cnet_isa_ca969f8b1a (IsA baseball_mitt glove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseball play is a kind of maneuver", "pln": ["(: cnet_isa_9b5b3d733f (IsA baseball_play maneuver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseball player is a kind of athlete", "pln": ["(: cnet_isa_c29e5d7c78 (IsA baseball_player athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseball score is a kind of score", "pln": ["(: cnet_isa_b88e1b7389 (IsA baseball_score score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseball season is a kind of season", "pln": ["(: cnet_isa_0454e74d53 (IsA baseball_season season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseball swing is a kind of stroke", "pln": ["(: cnet_isa_6f61809da8 (IsA baseball_swing stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseball team is a kind of team", "pln": ["(: cnet_isa_7beb9272fe (IsA baseball_team team) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseboard is a kind of molding", "pln": ["(: cnet_isa_00665c1d8b (IsA baseboard molding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseline is a kind of standard", "pln": ["(: cnet_isa_162736ca3d (IsA baseline standard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseline is a kind of line", "pln": ["(: cnet_isa_efba79b5b7 (IsA baseline line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basement is a kind of place", "pln": ["(: cnet_isa_58e1f86359 (IsA basement place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basement is a kind of room below house", "pln": ["(: cnet_isa_4cff5481a0 (IsA basement room_below_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basement is a kind of room under house", "pln": ["(: cnet_isa_dbb3c5e5ea (IsA basement room_under_house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basement is a kind of floor", "pln": ["(: cnet_isa_00e6073e6e (IsA basement floor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basement is a kind of support", "pln": ["(: cnet_isa_f39ab5a757 (IsA basement support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baseness is a kind of unworthiness", "pln": ["(: cnet_isa_24d43bc372 (IsA baseness unworthiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basenji is a kind of dog", "pln": ["(: cnet_isa_9aa7b0abc1 (IsA basenji dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bash is a kind of party", "pln": ["(: cnet_isa_6bcca13c53 (IsA bash party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basic is a kind of commodity", "pln": ["(: cnet_isa_84a76f8d2b (IsA basic commodity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basic is a kind of programming language", "pln": ["(: cnet_isa_6473141763 (IsA basic programming_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basic assumption is a kind of assumption", "pln": ["(: cnet_isa_f22212f597 (IsA basic_assumption assumption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basic cognitive process is a kind of process", "pln": ["(: cnet_isa_1063745b86 (IsA basic_cognitive_process process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basic dye is a kind of dye", "pln": ["(: cnet_isa_36ac0129e6 (IsA basic_dye dye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basic english is a kind of artificial language", "pln": ["(: cnet_isa_a098123249 (IsA basic_english artificial_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basic iron is a kind of pig iron", "pln": ["(: cnet_isa_6d0e7830a9 (IsA basic_iron pig_iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basic point defense missile system is a kind of shipboard system", "pln": ["(: cnet_isa_d96b1db0a1 (IsA basic_point_defense_missile_system shipboard_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basic slag is a kind of slag", "pln": ["(: cnet_isa_01a4759fc1 (IsA basic_slag slag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basic training is a kind of military training", "pln": ["(: cnet_isa_bbec752810 (IsA basic_training military_training) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basic is a kind of fact", "pln": ["(: cnet_isa_e7b83b224c (IsA basic fact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "basidiocarp is a kind of fruiting body", "pln": ["(: cnet_isa_628b095ad0 (IsA basidiocarp fruiting_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "basidiolichen is a kind of lichen", "pln": ["(: cnet_isa_d0ef591301 (IsA basidiolichen lichen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basidiomycete is a kind of fungus", "pln": ["(: cnet_isa_d6897ffabe (IsA basidiomycete fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basidiomycete is a kind of class", "pln": ["(: cnet_isa_a2389fcee5 (IsA basidiomycete class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "basidiomycota is a kind of division", "pln": ["(: cnet_isa_3e409282db (IsA basidiomycota division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basidiospore is a kind of spore", "pln": ["(: cnet_isa_feaede1059 (IsA basidiospore spore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basidium is a kind of reproductive structure", "pln": ["(: cnet_isa_85de82d9d4 (IsA basidium reproductive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basil is a kind of herb", "pln": ["(: cnet_isa_a9cbc799a4 (IsA basil herb) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basil balm is a kind of monarda", "pln": ["(: cnet_isa_9952dd1dd9 (IsA basil_balm monarda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basil mint is a kind of mountain mint", "pln": ["(: cnet_isa_4a54666d9e (IsA basil_mint mountain_mint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basil thyme is a kind of herb", "pln": ["(: cnet_isa_32a183f869 (IsA basil_thyme herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basilar artery is a kind of artery", "pln": ["(: cnet_isa_e1d7dec131 (IsA basilar_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basilar membrane is a kind of membrane", "pln": ["(: cnet_isa_5489d77b75 (IsA basilar_membrane membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basileus is a kind of ruler", "pln": ["(: cnet_isa_0a5bc956bc (IsA basileus ruler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "basilic vein is a kind of vein", "pln": ["(: cnet_isa_71b8caca36 (IsA basilic_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basilica is a kind of church", "pln": ["(: cnet_isa_e6a5d5b9e0 (IsA basilica church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basilica is a kind of roman building", "pln": ["(: cnet_isa_532f4ea886 (IsA basilica roman_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basiliscus is a kind of reptile genus", "pln": ["(: cnet_isa_61652ce47f (IsA basiliscus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basilisk is a kind of iguanid", "pln": ["(: cnet_isa_bc95b9d557 (IsA basilisk iguanid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basilisk is a kind of cannon", "pln": ["(: cnet_isa_650aea84ea (IsA basilisk cannon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basilisk is a kind of mythical monster", "pln": ["(: cnet_isa_6c4bd7e05f (IsA basilisk mythical_monster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basin is a kind of vessel", "pln": ["(: cnet_isa_a25764a9a8 (IsA basin vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basin is a kind of natural depression", "pln": ["(: cnet_isa_c6a12f0862 (IsA basin natural_depression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "basin is a kind of containerful", "pln": ["(: cnet_isa_665dfa8519 (IsA basin containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basinet is a kind of helmet", "pln": ["(: cnet_isa_77e129fd7d (IsA basinet helmet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basis is a kind of assumption", "pln": ["(: cnet_isa_0daaa3c916 (IsA basis assumption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basis is a kind of part", "pln": ["(: cnet_isa_995f2a285e (IsA basis part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basivertebral vein is a kind of vein", "pln": ["(: cnet_isa_298c8b5926 (IsA basivertebral_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basket is a kind of score", "pln": ["(: cnet_isa_3aa1d20916 (IsA basket score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basket is a kind of basketball equipment", "pln": ["(: cnet_isa_aca24f9840 (IsA basket basketball_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basket is a kind of container", "pln": ["(: cnet_isa_08cfc87718 (IsA basket container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basket is a kind of goal", "pln": ["(: cnet_isa_d540546d14 (IsA basket goal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basket is a kind of containerful", "pln": ["(: cnet_isa_0b28a22809 (IsA basket containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basket fern is a kind of fern", "pln": ["(: cnet_isa_840108cff6 (IsA basket_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basket fern is a kind of sword fern", "pln": ["(: cnet_isa_366014caa7 (IsA basket_fern sword_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basket flower is a kind of centaury", "pln": ["(: cnet_isa_931a35edd8 (IsA basket_flower centaury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basket hilt is a kind of hilt", "pln": ["(: cnet_isa_eb65d16618 (IsA basket_hilt hilt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basket maker is a kind of primitive", "pln": ["(: cnet_isa_72a9e35e1f (IsA basket_maker primitive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basket oak is a kind of chestnut oak", "pln": ["(: cnet_isa_fb81968496 (IsA basket_oak chestnut_oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basket star is a kind of echinoderm", "pln": ["(: cnet_isa_b1edc2acf9 (IsA basket_star echinoderm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "basket weave is a kind of fabric", "pln": ["(: cnet_isa_c243d43997 (IsA basket_weave fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basketball is a kind of fast and physically demanding sport", "pln": ["(: cnet_isa_c2e557ef8c (IsA basketball fast_and_physically_demanding_sport) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basketball is a kind of fast moving game", "pln": ["(: cnet_isa_94a7123285 (IsA basketball fast_moving_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basketball is a kind of form of exercise", "pln": ["(: cnet_isa_863ae9ddd4 (IsA basketball form_of_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basketball is a kind of popular sport", "pln": ["(: cnet_isa_77594ef2da (IsA basketball popular_sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basketball is a kind of subset of sport", "pln": ["(: cnet_isa_671fd787ef (IsA basketball subset_of_sport) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "basketball is a kind of team game", "pln": ["(: cnet_isa_0cf5c322f7 (IsA basketball team_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basketball is a kind of court game", "pln": ["(: cnet_isa_331d8790e0 (IsA basketball court_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basketball is a kind of ball", "pln": ["(: cnet_isa_c17f7f20db (IsA basketball ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basketball is a kind of basketball equipment", "pln": ["(: cnet_isa_ae54385e88 (IsA basketball basketball_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basketball and football is a kind of sport", "pln": ["(: cnet_isa_3173aa7cd5 (IsA basketball_and_football sport) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basketball clinic is a kind of clinic", "pln": ["(: cnet_isa_425d313364 (IsA basketball_clinic clinic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basketball coach is a kind of coach", "pln": ["(: cnet_isa_936bc1a20d (IsA basketball_coach coach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basketball court is a kind of court", "pln": ["(: cnet_isa_042c4bbf5b (IsA basketball_court court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basketball equipment is a kind of sport equipment", "pln": ["(: cnet_isa_e737500b33 (IsA basketball_equipment sport_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basketball league is a kind of league", "pln": ["(: cnet_isa_6875a4bef2 (IsA basketball_league league) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basketball play is a kind of play", "pln": ["(: cnet_isa_b9f7a95243 (IsA basketball_play play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basketball player is a kind of athlete", "pln": ["(: cnet_isa_c9ca75ad53 (IsA basketball_player athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basketball score is a kind of score", "pln": ["(: cnet_isa_41d4ee4dc2 (IsA basketball_score score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basketball season is a kind of season", "pln": ["(: cnet_isa_d21d3a4ac0 (IsA basketball_season season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basketball shot is a kind of shot", "pln": ["(: cnet_isa_2f66cbf987 (IsA basketball_shot shot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basketball team is a kind of team", "pln": ["(: cnet_isa_8cb82f209a (IsA basketball_team team) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basketry is a kind of trade", "pln": ["(: cnet_isa_dcf2dfbc83 (IsA basketry trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basketweaver is a kind of maker", "pln": ["(: cnet_isa_029a4b07a5 (IsA basketweaver maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "basking shark is a kind of mackerel shark", "pln": ["(: cnet_isa_c9940b168a (IsA basking_shark mackerel_shark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basophil is a kind of leukocyte", "pln": ["(: cnet_isa_6c7574b3df (IsA basophil leukocyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basophilia is a kind of stainability", "pln": ["(: cnet_isa_c62389d7ef (IsA basophilia stainability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "basotho is a kind of african", "pln": ["(: cnet_isa_514f175f99 (IsA basotho african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basque is a kind of natural language", "pln": ["(: cnet_isa_4650e7f31f (IsA basque natural_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basque is a kind of european", "pln": ["(: cnet_isa_70d6a48795 (IsA basque european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bass is a kind of fish", "pln": ["(: cnet_isa_ff39ffc055 (IsA bass fish) (STV 1.0 0.9770))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bass is a kind of freshwater fish", "pln": ["(: cnet_isa_72e849a41f (IsA bass freshwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bass is a kind of instrument", "pln": ["(: cnet_isa_68b6c6dd5c (IsA bass instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bass is a kind of musical instrument", "pln": ["(: cnet_isa_94d971e6ca (IsA bass musical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bass is a kind of specy of fish", "pln": ["(: cnet_isa_c89578c170 (IsA bass specy_of_fish) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bass is a kind of percoid fish", "pln": ["(: cnet_isa_fe30c3e53d (IsA bass percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bass is a kind of pitch", "pln": ["(: cnet_isa_2fbe0d1618 (IsA bass pitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bass is a kind of part", "pln": ["(: cnet_isa_f406dcd9d1 (IsA bass part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bass is a kind of singing voice", "pln": ["(: cnet_isa_4f89872c72 (IsA bass singing_voice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bass is a kind of singer", "pln": ["(: cnet_isa_7b16fc1790 (IsA bass singer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bass clarinet is a kind of reed instrument", "pln": ["(: cnet_isa_eb2a62b8c6 (IsA bass_clarinet reed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bass clarinet is a kind of clarinet", "pln": ["(: cnet_isa_eadae3d7f0 (IsA bass_clarinet clarinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bass clef is a kind of clef", "pln": ["(: cnet_isa_2570fa6c19 (IsA bass_clef clef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bass drum is a kind of drum", "pln": ["(: cnet_isa_5f2f2b3dc0 (IsA bass_drum drum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bass fiddle is a kind of bass", "pln": ["(: cnet_isa_d29661a7f2 (IsA bass_fiddle bass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bass fiddle is a kind of bowed stringed instrument", "pln": ["(: cnet_isa_eed6775cd4 (IsA bass_fiddle bowed_stringed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bass guitar is a kind of instrument", "pln": ["(: cnet_isa_35983a072d (IsA bass_guitar instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bass guitar is a kind of bass", "pln": ["(: cnet_isa_c64c19b625 (IsA bass_guitar bass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bass guitar is a kind of guitar", "pln": ["(: cnet_isa_da10e034f6 (IsA bass_guitar guitar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bass horn is a kind of bass", "pln": ["(: cnet_isa_4b4391cd57 (IsA bass_horn bass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bass horn is a kind of brass", "pln": ["(: cnet_isa_ed26b94ad3 (IsA bass_horn brass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bassariscidae is a kind of mammal family", "pln": ["(: cnet_isa_9146430a88 (IsA bassariscidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bassariscus is a kind of mammal genus", "pln": ["(: cnet_isa_9f6e989cb5 (IsA bassariscus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bassarisk is a kind of procyonid", "pln": ["(: cnet_isa_0c056412d1 (IsA bassarisk procyonid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "bastard pennyroyal is a kind of blue curls", "pln": ["(: cnet_isa_b917547d58 (IsA bastard_pennyroyal blue_curls) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basset is a kind of hound", "pln": ["(: cnet_isa_c63d75b514 (IsA basset hound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basset horn is a kind of clarinet", "pln": ["(: cnet_isa_af1bda68f8 (IsA basset_horn clarinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bassia is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_774d28b92c (IsA bassia caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bassine is a kind of fiber", "pln": ["(: cnet_isa_573fab5d97 (IsA bassine fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bassinet is a kind of baby bed", "pln": ["(: cnet_isa_758ee6f4db (IsA bassinet baby_bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bassinet is a kind of baby buggy", "pln": ["(: cnet_isa_8f6a3750d1 (IsA bassinet baby_buggy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bassist is a kind of musician", "pln": ["(: cnet_isa_77009d96fb (IsA bassist musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basso profundo is a kind of bass", "pln": ["(: cnet_isa_4cb22b7683 (IsA basso_profundo bass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bassoon is a kind of musical instrument", "pln": ["(: cnet_isa_0d147b5248 (IsA bassoon musical_instrument) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bassoon is a kind of double reed instrument", "pln": ["(: cnet_isa_e03f8ce56b (IsA bassoon double_reed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bassoonist is a kind of musician", "pln": ["(: cnet_isa_f71e133e71 (IsA bassoonist musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basswood is a kind of wood", "pln": ["(: cnet_isa_7f208e84de (IsA basswood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bast is a kind of natural fiber", "pln": ["(: cnet_isa_9e672b35a8 (IsA bast natural_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bastard is a kind of variation", "pln": ["(: cnet_isa_d367715d68 (IsA bastard variation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bastard is a kind of offspring", "pln": ["(: cnet_isa_19e76544c1 (IsA bastard offspring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bastard feverfew is a kind of weed", "pln": ["(: cnet_isa_3bf3e1da07 (IsA bastard_feverfew weed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bastard indigo is a kind of hoary pea", "pln": ["(: cnet_isa_90f8e53e1f (IsA bastard_indigo hoary_pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bastard lignum vitae is a kind of angiospermous tree", "pln": ["(: cnet_isa_efb5ad25b3 (IsA bastard_lignum_vitae angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bastard pennyroyal is a kind of blue curl", "pln": ["(: cnet_isa_f12bc51e41 (IsA bastard_pennyroyal blue_curl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bastard toadflax is a kind of parasitic plant", "pln": ["(: cnet_isa_31048f7830 (IsA bastard_toadflax parasitic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bastard wing is a kind of feather", "pln": ["(: cnet_isa_7a01d7b966 (IsA bastard_wing feather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bastardization is a kind of degradation", "pln": ["(: cnet_isa_934a33bfd9 (IsA bastardization degradation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bastardization is a kind of declaration", "pln": ["(: cnet_isa_bac8725cb4 (IsA bastardization declaration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bastardy is a kind of status", "pln": ["(: cnet_isa_66037b1d08 (IsA bastardy status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "baste is a kind of embroidery stitch", "pln": ["(: cnet_isa_a58031b874 (IsA baste embroidery_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baster is a kind of cooking utensil", "pln": ["(: cnet_isa_c32c5b0b18 (IsA baster cooking_utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baster is a kind of roaster", "pln": ["(: cnet_isa_99f60a9c63 (IsA baster roaster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "baster is a kind of sewer", "pln": ["(: cnet_isa_63d190fd68 (IsA baster sewer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bastille is a kind of jail", "pln": ["(: cnet_isa_60ec1749c1 (IsA bastille jail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bastille is a kind of prison", "pln": ["(: cnet_isa_9f08f403d1 (IsA bastille prison) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bastille day is a kind of legal holiday", "pln": ["(: cnet_isa_7ac88fdb68 (IsA bastille_day legal_holiday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bastinado is a kind of cudgel", "pln": ["(: cnet_isa_a861745e43 (IsA bastinado cudgel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basting is a kind of moistening", "pln": ["(: cnet_isa_fe45d1d2c3 (IsA basting moistening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bastion is a kind of fortification", "pln": ["(: cnet_isa_f553e854bd (IsA bastion fortification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bastion is a kind of stronghold", "pln": ["(: cnet_isa_df6464b9cb (IsA bastion stronghold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bastion is a kind of defense", "pln": ["(: cnet_isa_dfe4f8511c (IsA bastion defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bastnasite is a kind of mineral", "pln": ["(: cnet_isa_ae29b6c1f3 (IsA bastnasite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "basuco is a kind of cocaine", "pln": ["(: cnet_isa_935f4225ab (IsA basuco cocaine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bat is a kind of small rodent mammal", "pln": ["(: cnet_isa_c6755d7750 (IsA bat small_rodent_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bat is a kind of placental", "pln": ["(: cnet_isa_620ba83aa7 (IsA bat placental) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bat is a kind of club", "pln": ["(: cnet_isa_da81ff0cb9 (IsA bat club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bat is a kind of turn", "pln": ["(: cnet_isa_13bc09825a (IsA bat turn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bat boy is a kind of assistant", "pln": ["(: cnet_isa_194589c82d (IsA bat_boy assistant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bat boy is a kind of male child", "pln": ["(: cnet_isa_0fe4e6a3f6 (IsA bat_boy male_child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bat mitzvah is a kind of initiation", "pln": ["(: cnet_isa_27140135f0 (IsA bat_mitzvah initiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bata is a kind of biu mandara", "pln": ["(: cnet_isa_b0403975d9 (IsA bata biu_mandara) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "batch is a kind of collection", "pln": ["(: cnet_isa_de3d38c244 (IsA batch collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "batch is a kind of large indefinite quantity", "pln": ["(: cnet_isa_8c52c6b994 (IsA batch large_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "batch processing is a kind of execution", "pln": ["(: cnet_isa_e0cd602d31 (IsA batch_processing execution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "batfish is a kind of spiny finned fish", "pln": ["(: cnet_isa_8bfe5173ca (IsA batfish spiny_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bath is a kind of washup", "pln": ["(: cnet_isa_8453fc05f7 (IsA bath washup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bath is a kind of vessel", "pln": ["(: cnet_isa_4a65ad1bb6 (IsA bath vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bath is a kind of liquid unit", "pln": ["(: cnet_isa_1186fe0610 (IsA bath liquid_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bath asparagus is a kind of star of bethlehem", "pln": ["(: cnet_isa_6c03b9345b (IsA bath_asparagus star_of_bethlehem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bath chair is a kind of wheelchair", "pln": ["(: cnet_isa_f78745428d (IsA bath_chair wheelchair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bath linen is a kind of linen", "pln": ["(: cnet_isa_e185c2522c (IsA bath_linen linen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bath mat is a kind of bath linen", "pln": ["(: cnet_isa_e004e72501 (IsA bath_mat bath_linen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bath oil is a kind of toiletry", "pln": ["(: cnet_isa_4565159675 (IsA bath_oil toiletry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bath salt is a kind of toiletry", "pln": ["(: cnet_isa_9aa032df31 (IsA bath_salt toiletry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bath towel is a kind of bath linen", "pln": ["(: cnet_isa_45f670d4af (IsA bath_towel bath_linen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bath towel is a kind of towel", "pln": ["(: cnet_isa_d2eabed912 (IsA bath_towel towel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bath water is a kind of water", "pln": ["(: cnet_isa_b65bd3b230 (IsA bath_water water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bathe is a kind of swimming", "pln": ["(: cnet_isa_fd3545c864 (IsA bathe swimming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bather is a kind of person", "pln": ["(: cnet_isa_60448d580d (IsA bather person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bathhouse is a kind of building", "pln": ["(: cnet_isa_f952eb833e (IsA bathhouse building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bathhouse is a kind of house", "pln": ["(: cnet_isa_974d1053e8 (IsA bathhouse house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bathing is a kind of diversion", "pln": ["(: cnet_isa_b72d705e7a (IsA bathing diversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bathing cap is a kind of cap", "pln": ["(: cnet_isa_6b898ecaa0 (IsA bathing_cap cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "batholith is a kind of igneous rock", "pln": ["(: cnet_isa_9cd7eb96e3 (IsA batholith igneous_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bathometer is a kind of measuring instrument", "pln": ["(: cnet_isa_96b95ab5e4 (IsA bathometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "batho is a kind of expressive style", "pln": ["(: cnet_isa_ae636e324f (IsA batho expressive_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bathrobe is a kind of robe", "pln": ["(: cnet_isa_4171c0d366 (IsA bathrobe robe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bathroom is a kind of room", "pln": ["(: cnet_isa_54f11f3862 (IsA bathroom room) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bathroom cleaner is a kind of cleansing agent", "pln": ["(: cnet_isa_9160e92be4 (IsA bathroom_cleaner cleansing_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bathroom fixture is a kind of fixture", "pln": ["(: cnet_isa_4855d873f9 (IsA bathroom_fixture fixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bathtub is a kind of vessel", "pln": ["(: cnet_isa_7115df66c9 (IsA bathtub vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bathtub gin is a kind of gin", "pln": ["(: cnet_isa_f0de07ab7c (IsA bathtub_gin gin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bathyergidae is a kind of mammal family", "pln": ["(: cnet_isa_08061e7822 (IsA bathyergidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bathyergus is a kind of mammal genus", "pln": ["(: cnet_isa_006162ceb0 (IsA bathyergus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bathymetry is a kind of measurement", "pln": ["(: cnet_isa_adbd4e193d (IsA bathymetry measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bathyscaphe is a kind of submersible", "pln": ["(: cnet_isa_c5e68c7d77 (IsA bathyscaphe submersible) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bathysphere is a kind of submersible", "pln": ["(: cnet_isa_e4d856e118 (IsA bathysphere submersible) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "batidaceae is a kind of caryophylloid dicot family", "pln": ["(: cnet_isa_c110b74b3b (IsA batidaceae caryophylloid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "batik is a kind of fabric", "pln": ["(: cnet_isa_954934d7c5 (IsA batik fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "batis is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_96999075c2 (IsA batis caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "batiste is a kind of fabric", "pln": ["(: cnet_isa_f3f763e8d3 (IsA batiste fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "batman is a kind of attendant", "pln": ["(: cnet_isa_a2dff13539 (IsA batman attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baton is a kind of stick", "pln": ["(: cnet_isa_f39f4c7ee1 (IsA baton stick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baton is a kind of rod", "pln": ["(: cnet_isa_e50cbb353f (IsA baton rod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baton is a kind of sport implement", "pln": ["(: cnet_isa_67fdc4ec26 (IsA baton sport_implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baton is a kind of staff", "pln": ["(: cnet_isa_87c4c10d15 (IsA baton staff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baton twirler is a kind of performer", "pln": ["(: cnet_isa_0024718091 (IsA baton_twirler performer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "batrachoididae is a kind of fish family", "pln": ["(: cnet_isa_d743ba083f (IsA batrachoididae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "batrachomyomachia is a kind of affray", "pln": ["(: cnet_isa_64752220bf (IsA batrachomyomachia affray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "batrachosep is a kind of amphibian genus", "pln": ["(: cnet_isa_80bf8cd459 (IsA batrachosep amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bat is a kind of nocturnal flying rodent", "pln": ["(: cnet_isa_fe39df859a (IsA bat nocturnal_flying_rodent) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "batswana is a kind of bantu", "pln": ["(: cnet_isa_6012d39e5f (IsA batswana bantu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battalion is a kind of army unit", "pln": ["(: cnet_isa_1da98a57a7 (IsA battalion army_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battalion is a kind of large indefinite quantity", "pln": ["(: cnet_isa_b2915f1497 (IsA battalion large_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "batten is a kind of strip", "pln": ["(: cnet_isa_8b1655d273 (IsA batten strip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "batter s box is a kind of box", "pln": ["(: cnet_isa_7679bd96cc (IsA batter_s_box box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "batter is a kind of ballplayer", "pln": ["(: cnet_isa_b85fc7cc59 (IsA batter ballplayer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "batter is a kind of concoction", "pln": ["(: cnet_isa_ced5196f9e (IsA batter concoction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battering is a kind of fight", "pln": ["(: cnet_isa_f6e752abe3 (IsA battering fight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battering ram is a kind of engine", "pln": ["(: cnet_isa_f30c4c70c2 (IsA battering_ram engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battering ram is a kind of ram", "pln": ["(: cnet_isa_8732864dc3 (IsA battering_ram ram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battery is a kind of assault", "pln": ["(: cnet_isa_3b7ce4159f (IsA battery assault) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battery is a kind of battery", "pln": ["(: cnet_isa_648114e6fb (IsA battery battery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battery is a kind of electrical device", "pln": ["(: cnet_isa_e99d5be79b (IsA battery electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battery is a kind of stamp mill", "pln": ["(: cnet_isa_5e3f886525 (IsA battery stamp_mill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battery is a kind of collection", "pln": ["(: cnet_isa_601b6fde1f (IsA battery collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battery is a kind of team", "pln": ["(: cnet_isa_955e9b43f1 (IsA battery team) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "battery is a kind of artillery", "pln": ["(: cnet_isa_8e8aedd25c (IsA battery artillery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "battery acid is a kind of vitriol", "pln": ["(: cnet_isa_9f29ca8804 (IsA battery_acid vitriol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "batting is a kind of stuffing", "pln": ["(: cnet_isa_22ce8b0019 (IsA batting stuffing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "batting is a kind of attempt", "pln": ["(: cnet_isa_40b229abca (IsA batting attempt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "batting average is a kind of proportion", "pln": ["(: cnet_isa_75db09a9f8 (IsA batting_average proportion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "batting cage is a kind of baseball equipment", "pln": ["(: cnet_isa_d684797af2 (IsA batting_cage baseball_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "batting coach is a kind of baseball coach", "pln": ["(: cnet_isa_cc1e64adb8 (IsA batting_coach baseball_coach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "batting glove is a kind of baseball equipment", "pln": ["(: cnet_isa_4573c8f18a (IsA batting_glove baseball_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "batting glove is a kind of glove", "pln": ["(: cnet_isa_2d653c5d23 (IsA batting_glove glove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "batting helmet is a kind of baseball equipment", "pln": ["(: cnet_isa_3041de5dae (IsA batting_helmet baseball_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "batting helmet is a kind of helmet", "pln": ["(: cnet_isa_c17aec30ec (IsA batting_helmet helmet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "batting order is a kind of roll", "pln": ["(: cnet_isa_b3fe413d9d (IsA batting_order roll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battle is a kind of fight between enemy", "pln": ["(: cnet_isa_d5fe7ddb61 (IsA battle fight_between_enemy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battle is a kind of military action", "pln": ["(: cnet_isa_b6aafaa4ab (IsA battle military_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battle ax is a kind of broadax", "pln": ["(: cnet_isa_566ddcd8c6 (IsA battle_ax broadax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battle ax is a kind of wife", "pln": ["(: cnet_isa_63860581e1 (IsA battle_ax wife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battle cruiser is a kind of cruiser", "pln": ["(: cnet_isa_6bc6cafcee (IsA battle_cruiser cruiser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battle damage is a kind of damage", "pln": ["(: cnet_isa_da84099923 (IsA battle_damage damage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battle dress is a kind of military uniform", "pln": ["(: cnet_isa_440ebbe66f (IsA battle_dress military_uniform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battle fatigue is a kind of posttraumatic stress disorder", "pln": ["(: cnet_isa_668c8ec575 (IsA battle_fatigue posttraumatic_stress_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battle flag is a kind of flag", "pln": ["(: cnet_isa_2974f8d2bc (IsA battle_flag flag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battle fleet is a kind of fleet", "pln": ["(: cnet_isa_8bcb1e320b (IsA battle_fleet fleet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battle group is a kind of army unit", "pln": ["(: cnet_isa_562ce5baaa (IsA battle_group army_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battle line is a kind of line", "pln": ["(: cnet_isa_6fd7374bee (IsA battle_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battle of wit is a kind of contest", "pln": ["(: cnet_isa_17fd2b43e5 (IsA battle_of_wit contest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battle plan is a kind of plan of action", "pln": ["(: cnet_isa_aa5784b2d9 (IsA battle_plan plan_of_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battle sight is a kind of gunsight", "pln": ["(: cnet_isa_a071e8852b (IsA battle_sight gunsight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battledore is a kind of badminton", "pln": ["(: cnet_isa_6f2b97daf6 (IsA battledore badminton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battlefield is a kind of tract", "pln": ["(: cnet_isa_bdbda212d6 (IsA battlefield tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battlefront is a kind of line", "pln": ["(: cnet_isa_c024379c4c (IsA battlefront line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battlement is a kind of rampart", "pln": ["(: cnet_isa_d902c851f8 (IsA battlement rampart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battleship is a kind of ship", "pln": ["(: cnet_isa_4ae340133c (IsA battleship ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battleship is a kind of warship", "pln": ["(: cnet_isa_71486b312a (IsA battleship warship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "battue is a kind of hunt", "pln": ["(: cnet_isa_6e943ac1d0 (IsA battue hunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "batwing is a kind of swing door", "pln": ["(: cnet_isa_c30995cb54 (IsA batwing swing_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bauble is a kind of scepter", "pln": ["(: cnet_isa_e2ada0e3f1 (IsA bauble scepter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baud is a kind of information measure", "pln": ["(: cnet_isa_2f6feec72c (IsA baud information_measure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bauhaus is a kind of architectural style", "pln": ["(: cnet_isa_0de77fb57b (IsA bauhaus architectural_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bauhinia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_3a43b842b5 (IsA bauhinia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bauxite is a kind of mineral", "pln": ["(: cnet_isa_c3de01f8b5 (IsA bauxite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bavarian is a kind of german", "pln": ["(: cnet_isa_b6f82e2b17 (IsA bavarian german) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bavarian blue is a kind of bleu", "pln": ["(: cnet_isa_e4192dfc36 (IsA bavarian_blue bleu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bavarian cream is a kind of custard", "pln": ["(: cnet_isa_9d285acce1 (IsA bavarian_cream custard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bawbee is a kind of coin", "pln": ["(: cnet_isa_f09c7f941e (IsA bawbee coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bawdry is a kind of obscenity", "pln": ["(: cnet_isa_35c32b2efa (IsA bawdry obscenity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bawler is a kind of weeper", "pln": ["(: cnet_isa_243c64f71c (IsA bawler weeper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bay is a kind of horse", "pln": ["(: cnet_isa_16b3d6c073 (IsA bay horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bay is a kind of compartment", "pln": ["(: cnet_isa_09f4aa1a0d (IsA bay compartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bay is a kind of cry", "pln": ["(: cnet_isa_19ec0a012e (IsA bay cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bay is a kind of body of water", "pln": ["(: cnet_isa_c8b3ac886b (IsA bay body_of_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bay leaf is a kind of herb", "pln": ["(: cnet_isa_d17ca5d872 (IsA bay_leaf herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bay myrtle is a kind of wax myrtle", "pln": ["(: cnet_isa_32fb1ee3a8 (IsA bay_myrtle wax_myrtle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bay rum is a kind of after shave", "pln": ["(: cnet_isa_fef86d714d (IsA bay_rum after_shave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bay scallop is a kind of scallop", "pln": ["(: cnet_isa_f156f75940 (IsA bay_scallop scallop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bay stater is a kind of american", "pln": ["(: cnet_isa_06cf13216a (IsA bay_stater american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bay willow is a kind of willow", "pln": ["(: cnet_isa_2057d297da (IsA bay_willow willow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bay window is a kind of window", "pln": ["(: cnet_isa_3eb7a006cf (IsA bay_window window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baya is a kind of weaver", "pln": ["(: cnet_isa_e90a8c3ec8 (IsA baya weaver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bayat is a kind of oath", "pln": ["(: cnet_isa_6e58f8c530 (IsA bayat oath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bayberry is a kind of tree", "pln": ["(: cnet_isa_9cff7ccc06 (IsA bayberry tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bayberry is a kind of wax myrtle", "pln": ["(: cnet_isa_ed3f16a619 (IsA bayberry wax_myrtle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bayberry wax is a kind of wax", "pln": ["(: cnet_isa_0a3fa913f8 (IsA bayberry_wax wax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baye postulate is a kind of postulate", "pln": ["(: cnet_isa_b75e735e93 (IsA baye_postulate postulate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "baye theorem is a kind of theorem", "pln": ["(: cnet_isa_1369db6170 (IsA baye_theorem theorem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bayonet is a kind of knife", "pln": ["(: cnet_isa_c6d2c45763 (IsA bayonet knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bayou is a kind of lake", "pln": ["(: cnet_isa_e497046004 (IsA bayou lake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bazaar is a kind of marketplace", "pln": ["(: cnet_isa_751d25ea34 (IsA bazaar marketplace) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bazaar is a kind of sale", "pln": ["(: cnet_isa_3b62e6dbdd (IsA bazaar sale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bazaar is a kind of shop", "pln": ["(: cnet_isa_5767b723e9 (IsA bazaar shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bazooka is a kind of launcher", "pln": ["(: cnet_isa_ed7f70336a (IsA bazooka launcher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bb is a kind of shot", "pln": ["(: cnet_isa_250c98b80d (IsA bb shot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bb gun is a kind of air gun", "pln": ["(: cnet_isa_b3c6d2fdf3 (IsA bb_gun air_gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bdellium is a kind of gum resin", "pln": ["(: cnet_isa_6cd68be68f (IsA bdellium gum_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "be all and end all is a kind of component", "pln": ["(: cnet_isa_bcbb9816e4 (IsA be_all_and_end_all component) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beach is a kind of geological formation", "pln": ["(: cnet_isa_eb87e96927 (IsA beach geological_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beach ball is a kind of ball", "pln": ["(: cnet_isa_206677997a (IsA beach_ball ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beach erosion is a kind of erosion", "pln": ["(: cnet_isa_899202b6d9 (IsA beach_erosion erosion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beach flea is a kind of amphipod", "pln": ["(: cnet_isa_2b6cd350a9 (IsA beach_flea amphipod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "beach grass is a kind of grass", "pln": ["(: cnet_isa_ff097ec50f (IsA beach_grass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beach heather is a kind of subshrub", "pln": ["(: cnet_isa_8c08d18c92 (IsA beach_heather subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beach house is a kind of house", "pln": ["(: cnet_isa_9149e095c7 (IsA beach_house house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beach pancake is a kind of sand verbena", "pln": ["(: cnet_isa_e78ec2cf20 (IsA beach_pancake sand_verbena) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beach pea is a kind of wild pea", "pln": ["(: cnet_isa_9aa5a9d4f0 (IsA beach_pea wild_pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beach plum is a kind of plum", "pln": ["(: cnet_isa_982a094d3a (IsA beach_plum plum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beach plum is a kind of wild plum", "pln": ["(: cnet_isa_1b71a65c25 (IsA beach_plum wild_plum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beach sand verbena is a kind of sand verbena", "pln": ["(: cnet_isa_e0641600ee (IsA beach_sand_verbena sand_verbena) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beach strawberry is a kind of strawberry", "pln": ["(: cnet_isa_bb1e87f753 (IsA beach_strawberry strawberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beach towel is a kind of towel", "pln": ["(: cnet_isa_4af88c0bd4 (IsA beach_towel towel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beach wagon is a kind of car", "pln": ["(: cnet_isa_2a3135651c (IsA beach_wagon car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beachcomber is a kind of vagrant", "pln": ["(: cnet_isa_40aca41431 (IsA beachcomber vagrant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "beachfront is a kind of land", "pln": ["(: cnet_isa_4d32a8c0b2 (IsA beachfront land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "beachhead is a kind of accomplishment", "pln": ["(: cnet_isa_0b29db7304 (IsA beachhead accomplishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "beachhead is a kind of bridgehead", "pln": ["(: cnet_isa_4d36656145 (IsA beachhead bridgehead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beachwear is a kind of clothing", "pln": ["(: cnet_isa_1117665860 (IsA beachwear clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beacon is a kind of tower", "pln": ["(: cnet_isa_d3d09324ee (IsA beacon tower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beacon is a kind of visual signal", "pln": ["(: cnet_isa_35810fe1ad (IsA beacon visual_signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bead is a kind of jewelry", "pln": ["(: cnet_isa_b56b5fed00 (IsA bead jewelry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bead tree is a kind of necklace tree", "pln": ["(: cnet_isa_b7e96fc8b6 (IsA bead_tree necklace_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beaded lizard is a kind of venomous lizard", "pln": ["(: cnet_isa_8c54f8919f (IsA beaded_lizard venomous_lizard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "beading is a kind of decoration", "pln": ["(: cnet_isa_db5565c4cc (IsA beading decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beading is a kind of molding", "pln": ["(: cnet_isa_1d0e36b720 (IsA beading molding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "beading plane is a kind of plane", "pln": ["(: cnet_isa_4064279724 (IsA beading_plane plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beadle is a kind of official", "pln": ["(: cnet_isa_9d43c63691 (IsA beadle official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bead is a kind of string", "pln": ["(: cnet_isa_fb5c0aae89 (IsA bead string) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beadsman is a kind of prayer", "pln": ["(: cnet_isa_5ee30832fe (IsA beadsman prayer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beagle is a kind of dog", "pln": ["(: cnet_isa_99800dafd7 (IsA beagle dog) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "beagle is a kind of hound", "pln": ["(: cnet_isa_703b5d5d1e (IsA beagle hound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beagling is a kind of hunt", "pln": ["(: cnet_isa_58e1c30d9b (IsA beagling hunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beak is a kind of mouth", "pln": ["(: cnet_isa_fc3b8752a4 (IsA beak mouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beak is a kind of nose", "pln": ["(: cnet_isa_b1c784441f (IsA beak nose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beak is a kind of tip", "pln": ["(: cnet_isa_a91da70c6b (IsA beak tip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beaked hazelnut is a kind of hazelnut", "pln": ["(: cnet_isa_0b20c84249 (IsA beaked_hazelnut hazelnut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beaked salmon is a kind of soft finned fish", "pln": ["(: cnet_isa_9d0d14d367 (IsA beaked_salmon soft_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beaked whale is a kind of toothed whale", "pln": ["(: cnet_isa_829211969b (IsA beaked_whale toothed_whale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "beaker is a kind of cup", "pln": ["(: cnet_isa_f71f492b8c (IsA beaker cup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beaker is a kind of jar", "pln": ["(: cnet_isa_471cf4c7e5 (IsA beaker jar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beam is a kind of piece", "pln": ["(: cnet_isa_180631097c (IsA beam piece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beam is a kind of side", "pln": ["(: cnet_isa_563ceefb84 (IsA beam side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beam is a kind of structural member", "pln": ["(: cnet_isa_d9088e527a (IsA beam structural_member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beam is a kind of electromagnetic radiation", "pln": ["(: cnet_isa_d5b40dc171 (IsA beam electromagnetic_radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "beam is a kind of light", "pln": ["(: cnet_isa_97598a57e4 (IsA beam light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beam is a kind of width", "pln": ["(: cnet_isa_a9707c1676 (IsA beam width) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "beam balance is a kind of balance", "pln": ["(: cnet_isa_e73f469aa5 (IsA beam_balance balance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beam end is a kind of side", "pln": ["(: cnet_isa_4b1b016afd (IsA beam_end side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bean is a kind of vegetable", "pln": ["(: cnet_isa_0943a1f380 (IsA bean vegetable) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bean is a kind of legume", "pln": ["(: cnet_isa_29929af7ea (IsA bean legume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bean is a kind of seed", "pln": ["(: cnet_isa_5d458e91f2 (IsA bean seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bean caper is a kind of shrub", "pln": ["(: cnet_isa_3b29a1ad25 (IsA bean_caper shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bean counter is a kind of accountant", "pln": ["(: cnet_isa_4596324f8b (IsA bean_counter accountant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bean counter is a kind of bureaucrat", "pln": ["(: cnet_isa_a3fbcda3ca (IsA bean_counter bureaucrat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bean curd is a kind of curd", "pln": ["(: cnet_isa_b957f83016 (IsA bean_curd curd) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bean dip is a kind of dip", "pln": ["(: cnet_isa_97de822dd1 (IsA bean_dip dip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bean sprout is a kind of sprout", "pln": ["(: cnet_isa_140bbebe9e (IsA bean_sprout sprout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bean tostada is a kind of tostada", "pln": ["(: cnet_isa_b68359fa4e (IsA bean_tostada tostada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bean tree is a kind of tree", "pln": ["(: cnet_isa_a1e4d8777c (IsA bean_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bean trefoil is a kind of shrub", "pln": ["(: cnet_isa_710ffe8e61 (IsA bean_trefoil shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bean weevil is a kind of seed beetle", "pln": ["(: cnet_isa_be5dacd09c (IsA bean_weevil seed_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beanbag is a kind of bag", "pln": ["(: cnet_isa_77f86e85ef (IsA beanbag bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beanball is a kind of pitch", "pln": ["(: cnet_isa_2ce26fe772 (IsA beanball pitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beanfeast is a kind of dinner", "pln": ["(: cnet_isa_f9d6647825 (IsA beanfeast dinner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beanie is a kind of skullcap", "pln": ["(: cnet_isa_a05d044af5 (IsA beanie skullcap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beanie baby is a kind of toy", "pln": ["(: cnet_isa_05ab364bb7 (IsA beanie_baby toy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beanstalk is a kind of stalk", "pln": ["(: cnet_isa_fa9ca1589c (IsA beanstalk stalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bear s breech is a kind of acanthus", "pln": ["(: cnet_isa_aafac0cef4 (IsA bear_s_breech acanthus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bear s paw fern is a kind of fern", "pln": ["(: cnet_isa_73ae857a44 (IsA bear_s_paw_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bear is a kind of mammal", "pln": ["(: cnet_isa_d3e1ce52d0 (IsA bear mammal) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bear is a kind of carnivore", "pln": ["(: cnet_isa_681d0b52b9 (IsA bear carnivore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bear is a kind of investor", "pln": ["(: cnet_isa_765e17e210 (IsA bear investor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bear claw is a kind of claw", "pln": ["(: cnet_isa_6af32a29fb (IsA bear_claw claw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bear claw is a kind of design", "pln": ["(: cnet_isa_c0d569af2a (IsA bear_claw design) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bear claw is a kind of sweet roll", "pln": ["(: cnet_isa_0d286c667a (IsA bear_claw sweet_roll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bear cub is a kind of bear", "pln": ["(: cnet_isa_bb0cc0a776 (IsA bear_cub bear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bear cub is a kind of cub", "pln": ["(: cnet_isa_bf7823cebe (IsA bear_cub cub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bear grass is a kind of agave", "pln": ["(: cnet_isa_f5a61a6dce (IsA bear_grass agave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bear grass is a kind of yucca", "pln": ["(: cnet_isa_0d5d3da4fe (IsA bear_grass yucca) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bear hug is a kind of takeover attempt", "pln": ["(: cnet_isa_72ec97d8b2 (IsA bear_hug takeover_attempt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bear hug is a kind of wrestling hold", "pln": ["(: cnet_isa_60fc3119be (IsA bear_hug wrestling_hold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bear market is a kind of market", "pln": ["(: cnet_isa_e2bf683e53 (IsA bear_market market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bear oak is a kind of scrub oak", "pln": ["(: cnet_isa_6b79bf0e9c (IsA bear_oak scrub_oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bearberry is a kind of holly", "pln": ["(: cnet_isa_b1a0da7595 (IsA bearberry holly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bearberry is a kind of shrub", "pln": ["(: cnet_isa_6bc4fdd01f (IsA bearberry shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bearberry willow is a kind of willow", "pln": ["(: cnet_isa_ce2fe3ba77 (IsA bearberry_willow willow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beard is a kind of hair", "pln": ["(: cnet_isa_bcaf2edfba (IsA beard hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "beard is a kind of facial hair", "pln": ["(: cnet_isa_297e51c3d4 (IsA beard facial_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beard is a kind of person", "pln": ["(: cnet_isa_c1ad2ef93b (IsA beard person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "beard lichen is a kind of lichen", "pln": ["(: cnet_isa_176f2d69e0 (IsA beard_lichen lichen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beard worm is a kind of worm", "pln": ["(: cnet_isa_8154dfdfe8 (IsA beard_worm worm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bearded iris is a kind of iris", "pln": ["(: cnet_isa_97c26c2a12 (IsA bearded_iris iris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bearded seal is a kind of earless seal", "pln": ["(: cnet_isa_1ee496d85d (IsA bearded_seal earless_seal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bearded vulture is a kind of old world vulture", "pln": ["(: cnet_isa_309e1b9590 (IsA bearded_vulture old_world_vulture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bearded wheatgrass is a kind of wheatgrass", "pln": ["(: cnet_isa_1f49817e6c (IsA bearded_wheatgrass wheatgrass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beardless iris is a kind of iris", "pln": ["(: cnet_isa_5cdef46c69 (IsA beardless_iris iris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bearer is a kind of capitalist", "pln": ["(: cnet_isa_ede24204ee (IsA bearer capitalist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bearer is a kind of messenger", "pln": ["(: cnet_isa_ec47161a81 (IsA bearer messenger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bearing is a kind of support", "pln": ["(: cnet_isa_8283969289 (IsA bearing support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bearing is a kind of manner", "pln": ["(: cnet_isa_2c6feec01c (IsA bearing manner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bearing is a kind of relatedness", "pln": ["(: cnet_isa_99f785b4d7 (IsA bearing relatedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bearing is a kind of direction", "pln": ["(: cnet_isa_190edf6da8 (IsA bearing direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bearing brass is a kind of brass", "pln": ["(: cnet_isa_e036e5f375 (IsA bearing_brass brass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bearing rein is a kind of rein", "pln": ["(: cnet_isa_d51e2d77c8 (IsA bearing_rein rein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bearing wall is a kind of support", "pln": ["(: cnet_isa_fe6d2f8d51 (IsA bearing_wall support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bearing wall is a kind of wall", "pln": ["(: cnet_isa_5f7bf25a45 (IsA bearing_wall wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bearnaise is a kind of sauce", "pln": ["(: cnet_isa_c5fb75eb4b (IsA bearnaise sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bear is a kind of dangerous animal", "pln": ["(: cnet_isa_513e4f0ac4 (IsA bear dangerous_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bearskin is a kind of hat", "pln": ["(: cnet_isa_0361e3314f (IsA bearskin hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bearskin is a kind of fur", "pln": ["(: cnet_isa_503ade1771 (IsA bearskin fur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beast is a kind of attacker", "pln": ["(: cnet_isa_2215dd6331 (IsA beast attacker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beast of burden is a kind of work animal", "pln": ["(: cnet_isa_9259b9a0ea (IsA beast_of_burden work_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beastliness is a kind of malevolence", "pln": ["(: cnet_isa_99f3014d69 (IsA beastliness malevolence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beastliness is a kind of nastiness", "pln": ["(: cnet_isa_a8d7d1d8e5 (IsA beastliness nastiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beat is a kind of sailing", "pln": ["(: cnet_isa_488a322c61 (IsA beat sailing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beat is a kind of stroke", "pln": ["(: cnet_isa_8bff457c81 (IsA beat stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beat is a kind of pace", "pln": ["(: cnet_isa_9d6ab30efd (IsA beat pace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beat is a kind of sound", "pln": ["(: cnet_isa_e1a1499a66 (IsA beat sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beat is a kind of path", "pln": ["(: cnet_isa_8d7898d0d8 (IsA beat path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beat is a kind of oscillation", "pln": ["(: cnet_isa_f0de044f3a (IsA beat oscillation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "beat generation is a kind of youth subculture", "pln": ["(: cnet_isa_8fc5106c4d (IsA beat_generation youth_subculture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beater is a kind of implement", "pln": ["(: cnet_isa_b5a70dc18a (IsA beater implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beater is a kind of worker", "pln": ["(: cnet_isa_bd3895f1fe (IsA beater worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beatification is a kind of action", "pln": ["(: cnet_isa_f38f7775ab (IsA beatification action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "beatification is a kind of sanctification", "pln": ["(: cnet_isa_a541799aba (IsA beatification sanctification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beating is a kind of corporal punishment", "pln": ["(: cnet_isa_48c780acc4 (IsA beating corporal_punishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beating is a kind of fight", "pln": ["(: cnet_isa_714e5ec996 (IsA beating fight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beating reed instrument is a kind of woodwind", "pln": ["(: cnet_isa_066d520399 (IsA beating_reed_instrument woodwind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "beatitude is a kind of saying", "pln": ["(: cnet_isa_6149338b36 (IsA beatitude saying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beatnik is a kind of nonconformist", "pln": ["(: cnet_isa_fcb5dad086 (IsA beatnik nonconformist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beat per minute is a kind of tempo", "pln": ["(: cnet_isa_5a671e116f (IsA beat_per_minute tempo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beau geste is a kind of gesture", "pln": ["(: cnet_isa_5e724f2955 (IsA beau_geste gesture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beaufort scale is a kind of scale", "pln": ["(: cnet_isa_23e8ad2113 (IsA beaufort_scale scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beaufort scale is a kind of system of measurement", "pln": ["(: cnet_isa_bf609ec60b (IsA beaufort_scale system_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "beaugregory is a kind of damselfish", "pln": ["(: cnet_isa_83f88c0110 (IsA beaugregory damselfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beaujolais is a kind of burgundy", "pln": ["(: cnet_isa_ed43b3c69a (IsA beaujolais burgundy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beaujolais is a kind of red wine", "pln": ["(: cnet_isa_8682ff9444 (IsA beaujolais red_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beaumontia is a kind of dicot genus", "pln": ["(: cnet_isa_b59e9b8a9e (IsA beaumontia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beautician is a kind of craftsman", "pln": ["(: cnet_isa_fe28ea6439 (IsA beautician craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beautification is a kind of change of state", "pln": ["(: cnet_isa_e6eedfe872 (IsA beautification change_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beauty is a kind of only skin deep", "pln": ["(: cnet_isa_0bb7e3c208 (IsA beauty only_skin_deep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beauty is a kind of skin deep", "pln": ["(: cnet_isa_a34a3106c5 (IsA beauty skin_deep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beauty is a kind of appearance", "pln": ["(: cnet_isa_9ac88d741c (IsA beauty appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beauty is a kind of exemplar", "pln": ["(: cnet_isa_2952897a99 (IsA beauty exemplar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beauty bush is a kind of shrub", "pln": ["(: cnet_isa_28c1b869fa (IsA beauty_bush shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "beauty consultant is a kind of adviser", "pln": ["(: cnet_isa_7f84a76b25 (IsA beauty_consultant adviser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beauty sleep is a kind of sleep", "pln": ["(: cnet_isa_da7eeb95df (IsA beauty_sleep sleep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beauty spot is a kind of adornment", "pln": ["(: cnet_isa_d3e457181f (IsA beauty_spot adornment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "beauty treatment is a kind of beautification", "pln": ["(: cnet_isa_aa8bcf39d0 (IsA beauty_treatment beautification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beaver is a kind of animal", "pln": ["(: cnet_isa_b33e698279 (IsA beaver animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beaver is a kind of mammal", "pln": ["(: cnet_isa_32daa38628 (IsA beaver mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beaver is a kind of rodent", "pln": ["(: cnet_isa_654514689c (IsA beaver rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beaver is a kind of armor plate", "pln": ["(: cnet_isa_a87233008d (IsA beaver armor_plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beaver is a kind of fur hat", "pln": ["(: cnet_isa_c43d6a60eb (IsA beaver fur_hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beaver is a kind of beard", "pln": ["(: cnet_isa_e6231e5426 (IsA beaver beard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beaver is a kind of american", "pln": ["(: cnet_isa_f41a6c7983 (IsA beaver american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beaver is a kind of fur", "pln": ["(: cnet_isa_bc738d452e (IsA beaver fur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beaver board is a kind of wallboard", "pln": ["(: cnet_isa_e7c44014a6 (IsA beaver_board wallboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beaver rat is a kind of water rat", "pln": ["(: cnet_isa_1b1ba15a31 (IsA beaver_rat water_rat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bechtel crab is a kind of iowa crab", "pln": ["(: cnet_isa_21c20bf8ed (IsA bechtel_crab iowa_crab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beck is a kind of gesture", "pln": ["(: cnet_isa_e7eca9da12 (IsA beck gesture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "becker muscular dystrophy is a kind of muscular dystrophy", "pln": ["(: cnet_isa_dd4b88db7f (IsA becker_muscular_dystrophy muscular_dystrophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "becket is a kind of line", "pln": ["(: cnet_isa_be49e42e1c (IsA becket line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beckman thermometer is a kind of mercury thermometer", "pln": ["(: cnet_isa_ac69ce4383 (IsA beckman_thermometer mercury_thermometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "becomingness is a kind of decorum", "pln": ["(: cnet_isa_7b272f9644 (IsA becomingness decorum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bed is a kind of furniture", "pln": ["(: cnet_isa_d34258803a (IsA bed furniture) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bed is a kind of good place to lie", "pln": ["(: cnet_isa_ec66f4a592 (IsA bed good_place_to_lie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bed is a kind of place", "pln": ["(: cnet_isa_f24d49a2fc (IsA bed place) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bed is a kind of bedroom furniture", "pln": ["(: cnet_isa_147c579f67 (IsA bed bedroom_furniture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bed is a kind of foundation", "pln": ["(: cnet_isa_7ca7b16d5f (IsA bed foundation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bed is a kind of plot", "pln": ["(: cnet_isa_d3b4a5b01e (IsA bed plot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bed is a kind of surface", "pln": ["(: cnet_isa_2cfea8ee1c (IsA bed surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bed is a kind of stratum", "pln": ["(: cnet_isa_50610cd633 (IsA bed stratum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bed is a kind of natural depression", "pln": ["(: cnet_isa_c707d80881 (IsA bed natural_depression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bed and breakfast is a kind of boarding house", "pln": ["(: cnet_isa_cdbd1f132d (IsA bed_and_breakfast boarding_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bed check is a kind of confirmation", "pln": ["(: cnet_isa_8b203efd6c (IsA bed_check confirmation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bed ground is a kind of area", "pln": ["(: cnet_isa_7b5fad6b35 (IsA bed_ground area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bed jacket is a kind of jacket", "pln": ["(: cnet_isa_b5810959b0 (IsA bed_jacket jacket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bed linen is a kind of linen", "pln": ["(: cnet_isa_31abb5ca5f (IsA bed_linen linen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bed pillow is a kind of pillow", "pln": ["(: cnet_isa_75731f545c (IsA bed_pillow pillow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bed wetting is a kind of enuresis", "pln": ["(: cnet_isa_dfb65f7f2d (IsA bed_wetting enuresis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bedbug is a kind of hemipterous insect", "pln": ["(: cnet_isa_9585173d03 (IsA bedbug hemipterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bedclothe is a kind of cloth covering", "pln": ["(: cnet_isa_fab37ced0a (IsA bedclothe cloth_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bedder is a kind of garden plant", "pln": ["(: cnet_isa_7545fae6af (IsA bedder garden_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bedding material is a kind of material", "pln": ["(: cnet_isa_7d5127bdb4 (IsA bedding_material material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bedfellow is a kind of associate", "pln": ["(: cnet_isa_74b14768d5 (IsA bedfellow associate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bedfellow is a kind of person", "pln": ["(: cnet_isa_0c9378f17c (IsA bedfellow person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bedford cord is a kind of cord", "pln": ["(: cnet_isa_ea94bb48cb (IsA bedford_cord cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bedlam is a kind of mental hospital", "pln": ["(: cnet_isa_a09c2df35e (IsA bedlam mental_hospital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bedlamite is a kind of lunatic", "pln": ["(: cnet_isa_65918841fc (IsA bedlamite lunatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bedlington terrier is a kind of terrier", "pln": ["(: cnet_isa_f28c4b736d (IsA bedlington_terrier terrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bedpan is a kind of vessel", "pln": ["(: cnet_isa_b522de12cb (IsA bedpan vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bedpost is a kind of support", "pln": ["(: cnet_isa_46ea16eab1 (IsA bedpost support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bedrest is a kind of rest", "pln": ["(: cnet_isa_dec3556ee7 (IsA bedrest rest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bedrock is a kind of rock", "pln": ["(: cnet_isa_6ecfdc10ef (IsA bedrock rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bedroll is a kind of bedclothe", "pln": ["(: cnet_isa_fc2729a2f9 (IsA bedroll bedclothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bedroom is a kind of room", "pln": ["(: cnet_isa_2999486028 (IsA bedroom room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bedroom community is a kind of suburb", "pln": ["(: cnet_isa_a064231d01 (IsA bedroom_community suburb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bedroom furniture is a kind of furniture", "pln": ["(: cnet_isa_9003fb79c8 (IsA bedroom_furniture furniture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bedroom suite is a kind of suite", "pln": ["(: cnet_isa_3a9fa8135e (IsA bedroom_suite suite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bed is a kind of usually in bedroom", "pln": ["(: cnet_isa_530a432df9 (IsA bed usually_in_bedroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bedside is a kind of side", "pln": ["(: cnet_isa_74ecd76758 (IsA bedside side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bedside manner is a kind of manner", "pln": ["(: cnet_isa_8a3bdd991f (IsA bedside_manner manner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bedsitting room is a kind of apartment", "pln": ["(: cnet_isa_07b7ce0860 (IsA bedsitting_room apartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bedsore is a kind of ulcer", "pln": ["(: cnet_isa_d9aa663ae4 (IsA bedsore ulcer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bedspread is a kind of bedclothe", "pln": ["(: cnet_isa_78e6a00379 (IsA bedspread bedclothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bedspring is a kind of spring", "pln": ["(: cnet_isa_de9890a2df (IsA bedspring spring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bedstead is a kind of furniture", "pln": ["(: cnet_isa_519916e24c (IsA bedstead furniture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bedstraw is a kind of herb", "pln": ["(: cnet_isa_58d68b2438 (IsA bedstraw herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bedtime is a kind of hour", "pln": ["(: cnet_isa_9b4743d0b6 (IsA bedtime hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beduin is a kind of arabian", "pln": ["(: cnet_isa_1a2e9fea7f (IsA beduin arabian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beduin is a kind of nomad", "pln": ["(: cnet_isa_518557b5b9 (IsA beduin nomad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bedwetter is a kind of pisser", "pln": ["(: cnet_isa_087ffce566 (IsA bedwetter pisser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bee is a kind of hymenopterous insect", "pln": ["(: cnet_isa_cc46ce263a (IsA bee hymenopterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bee is a kind of social gathering", "pln": ["(: cnet_isa_a5d6fe3725 (IsA bee social_gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bee balm is a kind of monarda", "pln": ["(: cnet_isa_945ded1863 (IsA bee_balm monarda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bee beetle is a kind of clerid beetle", "pln": ["(: cnet_isa_863341fe52 (IsA bee_beetle clerid_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bee eater is a kind of coraciiform bird", "pln": ["(: cnet_isa_4793607891 (IsA bee_eater coraciiform_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bee fly is a kind of fly", "pln": ["(: cnet_isa_e3236a4049 (IsA bee_fly fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bee moth is a kind of pyralid", "pln": ["(: cnet_isa_1848657fad (IsA bee_moth pyralid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bee orchid is a kind of orchid", "pln": ["(: cnet_isa_096ab92ae7 (IsA bee_orchid orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bee sting is a kind of sting", "pln": ["(: cnet_isa_bc24bb0a72 (IsA bee_sting sting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beebread is a kind of composition", "pln": ["(: cnet_isa_cd4845f2b3 (IsA beebread composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "beech is a kind of tree", "pln": ["(: cnet_isa_38245a6ba2 (IsA beech tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beech is a kind of wood", "pln": ["(: cnet_isa_cb21d28359 (IsA beech wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beech fern is a kind of fern", "pln": ["(: cnet_isa_dceef06983 (IsA beech_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beechnut is a kind of edible nut", "pln": ["(: cnet_isa_d7986c09dd (IsA beechnut edible_nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beef is a kind of cattle", "pln": ["(: cnet_isa_287b8a23c2 (IsA beef cattle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "beef is a kind of meat", "pln": ["(: cnet_isa_3e68eeb2e2 (IsA beef meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beef bourguignonne is a kind of dish", "pln": ["(: cnet_isa_10124ef3b1 (IsA beef_bourguignonne dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beef broth is a kind of broth", "pln": ["(: cnet_isa_65ec004ef0 (IsA beef_broth broth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beef burrito is a kind of burrito", "pln": ["(: cnet_isa_22b10bef67 (IsA beef_burrito burrito) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beef fondue is a kind of fondue", "pln": ["(: cnet_isa_02d686dcca (IsA beef_fondue fondue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beef goulash is a kind of goulash", "pln": ["(: cnet_isa_e335211936 (IsA beef_goulash goulash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beef jerky is a kind of jerky", "pln": ["(: cnet_isa_135f6d02dd (IsA beef_jerky jerky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beef loin is a kind of cut of beef", "pln": ["(: cnet_isa_c3b90e3aa8 (IsA beef_loin cut_of_beef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beef neck is a kind of cut of beef", "pln": ["(: cnet_isa_d10b1ff3ea (IsA beef_neck cut_of_beef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beef roast is a kind of roast", "pln": ["(: cnet_isa_17c2585dc2 (IsA beef_roast roast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beef stew is a kind of stew", "pln": ["(: cnet_isa_566392a8bd (IsA beef_stew stew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beef stroganoff is a kind of dish", "pln": ["(: cnet_isa_944ec18b40 (IsA beef_stroganoff dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beef tallow is a kind of tallow", "pln": ["(: cnet_isa_9e3e9176ad (IsA beef_tallow tallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beef tea is a kind of infusion", "pln": ["(: cnet_isa_bb8981220f (IsA beef_tea infusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beef tenderloin is a kind of tenderloin", "pln": ["(: cnet_isa_c50622b755 (IsA beef_tenderloin tenderloin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beef tongue is a kind of tongue", "pln": ["(: cnet_isa_487b916959 (IsA beef_tongue tongue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beef wellington is a kind of dish", "pln": ["(: cnet_isa_e6d06d3a2a (IsA beef_wellington dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beefcake is a kind of picture", "pln": ["(: cnet_isa_5fcc495b5a (IsA beefcake picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beefsteak is a kind of steak", "pln": ["(: cnet_isa_65b841752e (IsA beefsteak steak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beefsteak begonia is a kind of begonia", "pln": ["(: cnet_isa_f20f08af60 (IsA beefsteak_begonia begonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beefsteak fungus is a kind of polypore", "pln": ["(: cnet_isa_2652cf4e4c (IsA beefsteak_fungus polypore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beefsteak plant is a kind of bloodleaf", "pln": ["(: cnet_isa_3385e6bb03 (IsA beefsteak_plant bloodleaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beefsteak plant is a kind of herb", "pln": ["(: cnet_isa_d262789229 (IsA beefsteak_plant herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beefsteak tomato is a kind of tomato", "pln": ["(: cnet_isa_02908aa88c (IsA beefsteak_tomato tomato) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beefwood is a kind of casuarina", "pln": ["(: cnet_isa_60c21a8cd4 (IsA beefwood casuarina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beefwood is a kind of silk oak", "pln": ["(: cnet_isa_9420a0a0bb (IsA beefwood silk_oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beefwood is a kind of wood", "pln": ["(: cnet_isa_3050f84383 (IsA beefwood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beehive is a kind of receptacle", "pln": ["(: cnet_isa_c5002cbf1d (IsA beehive receptacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beehive is a kind of workplace", "pln": ["(: cnet_isa_26542a58c8 (IsA beehive workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beehive is a kind of hairdo", "pln": ["(: cnet_isa_b8e4977a16 (IsA beehive hairdo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beehive is a kind of nest", "pln": ["(: cnet_isa_75971eb68b (IsA beehive nest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "beekeeper is a kind of farmer", "pln": ["(: cnet_isa_b7b38a2abf (IsA beekeeper farmer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beekeeping is a kind of cultivation", "pln": ["(: cnet_isa_da7d1a1af9 (IsA beekeeping cultivation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beeline is a kind of path", "pln": ["(: cnet_isa_c8a2144f85 (IsA beeline path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beep is a kind of sound", "pln": ["(: cnet_isa_0c0be2046b (IsA beep sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beeper is a kind of electronic device", "pln": ["(: cnet_isa_3fadd87388 (IsA beeper electronic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "beer is a kind of alcohol", "pln": ["(: cnet_isa_666e3450f1 (IsA beer alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "beer is a kind of alcoholic beverage", "pln": ["(: cnet_isa_5becbac663 (IsA beer alcoholic_beverage) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beer is a kind of alcoholic drink", "pln": ["(: cnet_isa_aed639f7c8 (IsA beer alcoholic_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beer is a kind of beverage", "pln": ["(: cnet_isa_b18e6b7956 (IsA beer beverage) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beer is a kind of carbonated", "pln": ["(: cnet_isa_ab3d1de0b9 (IsA beer carbonated) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beer is a kind of fizzy", "pln": ["(: cnet_isa_7664f6fcfe (IsA beer fizzy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beer is a kind of brew", "pln": ["(: cnet_isa_7c7975ac82 (IsA beer brew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beer barrel is a kind of barrel", "pln": ["(: cnet_isa_743a003e84 (IsA beer_barrel barrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beer bottle is a kind of bottle", "pln": ["(: cnet_isa_caed2f8bb1 (IsA beer_bottle bottle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beer can is a kind of can", "pln": ["(: cnet_isa_3adee46ddd (IsA beer_can can) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beer drinker is a kind of drinker", "pln": ["(: cnet_isa_2f4357188c (IsA beer_drinker drinker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beer garden is a kind of tavern", "pln": ["(: cnet_isa_cf727a2c76 (IsA beer_garden tavern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beer glass is a kind of glass", "pln": ["(: cnet_isa_37f76c21f1 (IsA beer_glass glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beer hall is a kind of hall", "pln": ["(: cnet_isa_595222b2e2 (IsA beer_hall hall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beer mat is a kind of drip mat", "pln": ["(: cnet_isa_a900cace91 (IsA beer_mat drip_mat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beer mug is a kind of mug", "pln": ["(: cnet_isa_01484885ad (IsA beer_mug mug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bee is a kind of insect", "pln": ["(: cnet_isa_43f04f7c20 (IsA bee insect) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beeswax is a kind of animal product", "pln": ["(: cnet_isa_73890cb01b (IsA beeswax animal_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "beeswax is a kind of wax", "pln": ["(: cnet_isa_a080ebf997 (IsA beeswax wax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beet is a kind of vegetable", "pln": ["(: cnet_isa_637bbebd9c (IsA beet vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beet is a kind of root vegetable", "pln": ["(: cnet_isa_83beeb0d86 (IsA beet root_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beet armyworm is a kind of caterpillar", "pln": ["(: cnet_isa_6ee5141857 (IsA beet_armyworm caterpillar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "beet blight is a kind of blight", "pln": ["(: cnet_isa_52ab7ecd12 (IsA beet_blight blight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "beet green is a kind of greens", "pln": ["(: cnet_isa_d6908a901c (IsA beet_green greens) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beet green is a kind of green", "pln": ["(: cnet_isa_1e4fba3f3a (IsA beet_green green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beet sugar is a kind of sugar", "pln": ["(: cnet_isa_d1f3a3d6a3 (IsA beet_sugar sugar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beet sugar is a kind of carbohydrate", "pln": ["(: cnet_isa_7b2b39fb59 (IsA beet_sugar carbohydrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beethoven is a kind of composer", "pln": ["(: cnet_isa_c4f71790fb (IsA beethoven composer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beethoven is a kind of music", "pln": ["(: cnet_isa_8d9629a429 (IsA beethoven music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beetle is a kind of insect", "pln": ["(: cnet_isa_d7d7fd1c69 (IsA beetle insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beetroot is a kind of beet", "pln": ["(: cnet_isa_a171e91a1b (IsA beetroot beet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "befoulment is a kind of dirtiness", "pln": ["(: cnet_isa_cb10d578d6 (IsA befoulment dirtiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "beggar s lice is a kind of stickweed", "pln": ["(: cnet_isa_d0547004fa (IsA beggar_s_lice stickweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beggar is a kind of pauper", "pln": ["(: cnet_isa_a3d846fae8 (IsA beggar pauper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beggar my neighbor is a kind of card game", "pln": ["(: cnet_isa_b70327e9cd (IsA beggar_my_neighbor card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beggar my neighbor policy is a kind of policy", "pln": ["(: cnet_isa_cc5450cbde (IsA beggar_my_neighbor_policy policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beggarman is a kind of beggar", "pln": ["(: cnet_isa_d1745154ff (IsA beggarman beggar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beggarweed is a kind of tick trefoil", "pln": ["(: cnet_isa_21a60cd4bd (IsA beggarweed tick_trefoil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beggarwoman is a kind of beggar", "pln": ["(: cnet_isa_59ba1dbdcb (IsA beggarwoman beggar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beggary is a kind of solicitation", "pln": ["(: cnet_isa_5b00ec5571 (IsA beggary solicitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beginning is a kind of change of state", "pln": ["(: cnet_isa_aa02182600 (IsA beginning change_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beginning is a kind of part", "pln": ["(: cnet_isa_ff1896bd08 (IsA beginning part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beginning is a kind of happening", "pln": ["(: cnet_isa_63e894c52a (IsA beginning happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beginning is a kind of point", "pln": ["(: cnet_isa_afa6e7968d (IsA beginning point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "begonia is a kind of flower", "pln": ["(: cnet_isa_a7fb5fe55a (IsA begonia flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "begoniaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_7c5269f119 (IsA begoniaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beguilement is a kind of entertainment", "pln": ["(: cnet_isa_86bdd5c756 (IsA beguilement entertainment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beguine is a kind of ballroom dancing", "pln": ["(: cnet_isa_09a33e1bf4 (IsA beguine ballroom_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beguine is a kind of dance music", "pln": ["(: cnet_isa_2dedda765b (IsA beguine dance_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beguine is a kind of sister", "pln": ["(: cnet_isa_d57e799605 (IsA beguine sister) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "begum is a kind of lady", "pln": ["(: cnet_isa_8e0127c224 (IsA begum lady) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "begum is a kind of moslem", "pln": ["(: cnet_isa_fed5e0ccc2 (IsA begum moslem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "behalf is a kind of stead", "pln": ["(: cnet_isa_bd8b6f3982 (IsA behalf stead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "behalf is a kind of sake", "pln": ["(: cnet_isa_ade9e58c61 (IsA behalf sake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "behavior is a kind of activity", "pln": ["(: cnet_isa_65b9aabfb9 (IsA behavior activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "behavior is a kind of action", "pln": ["(: cnet_isa_c23abfa84c (IsA behavior action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "behavior therapy is a kind of psychotherapy", "pln": ["(: cnet_isa_ef4ebb4f07 (IsA behavior_therapy psychotherapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "behaviorism is a kind of experimental psychology", "pln": ["(: cnet_isa_3eacfc255f (IsA behaviorism experimental_psychology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "behaviorist is a kind of psychologist", "pln": ["(: cnet_isa_272bc04172 (IsA behaviorist psychologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "behemoth is a kind of anomaly", "pln": ["(: cnet_isa_a09e162b97 (IsA behemoth anomaly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "behest is a kind of command", "pln": ["(: cnet_isa_948937aaad (IsA behest command) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beige is a kind of colour", "pln": ["(: cnet_isa_3e6af1bb19 (IsA beige colour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beige is a kind of light brown", "pln": ["(: cnet_isa_2938ba3356 (IsA beige light_brown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beijing is a kind of in china", "pln": ["(: cnet_isa_08ef047b55 (IsA beijing in_china) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "being is a kind of state", "pln": ["(: cnet_isa_f7e02ed94f (IsA being state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "being full is a kind of feeling", "pln": ["(: cnet_isa_0c3bc3706f (IsA being_full feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "being in love is a kind of wonderful feeling", "pln": ["(: cnet_isa_555fa8c516 (IsA being_in_love wonderful_feeling) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "being lawyer is a kind of profession", "pln": ["(: cnet_isa_6a32a36383 (IsA being_lawyer profession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bel is a kind of sound unit", "pln": ["(: cnet_isa_48a21cc70b (IsA bel sound_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bel canto is a kind of singing", "pln": ["(: cnet_isa_91ec539b3c (IsA bel_canto singing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bel esprit is a kind of intellectual", "pln": ["(: cnet_isa_3b4fbd4edb (IsA bel_esprit intellectual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belamcanda is a kind of liliid monocot genus", "pln": ["(: cnet_isa_3f9eaacfdd (IsA belamcanda liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belarusian is a kind of slavic", "pln": ["(: cnet_isa_252439229d (IsA belarusian slavic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belarusian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_4f7688df01 (IsA belarusian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belay is a kind of outcrop", "pln": ["(: cnet_isa_d944c8e676 (IsA belay outcrop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belaying pin is a kind of bar", "pln": ["(: cnet_isa_79e727ffdb (IsA belaying_pin bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belch is a kind of expulsion", "pln": ["(: cnet_isa_11dcdf27af (IsA belch expulsion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belch is a kind of reflex", "pln": ["(: cnet_isa_9c1e9c5e5b (IsA belch reflex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belching is a kind of expulsion", "pln": ["(: cnet_isa_00eab6a415 (IsA belching expulsion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beldam is a kind of old woman", "pln": ["(: cnet_isa_88f7992a94 (IsA beldam old_woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belemnite is a kind of fossil", "pln": ["(: cnet_isa_f27637553a (IsA belemnite fossil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belemnitidae is a kind of mollusk family", "pln": ["(: cnet_isa_57b9ad70ad (IsA belemnitidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belemnoidea is a kind of animal order", "pln": ["(: cnet_isa_992624f6ab (IsA belemnoidea animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belfry is a kind of room", "pln": ["(: cnet_isa_b2bbb916e4 (IsA belfry room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "belgian is a kind of european", "pln": ["(: cnet_isa_c69b53156e (IsA belgian european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belgian endive is a kind of chicory escarole", "pln": ["(: cnet_isa_67de9cfbf8 (IsA belgian_endive chicory_escarole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belgian franc is a kind of franc", "pln": ["(: cnet_isa_922de601c8 (IsA belgian_franc franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belgian hare is a kind of rabbit", "pln": ["(: cnet_isa_cf06c5c252 (IsA belgian_hare rabbit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belgian sheepdog is a kind of shepherd dog", "pln": ["(: cnet_isa_fa38fc4228 (IsA belgian_sheepdog shepherd_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "belgian waffle is a kind of waffle", "pln": ["(: cnet_isa_78fe98bb6a (IsA belgian_waffle waffle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "belief is a kind of subjective sense of knowledge", "pln": ["(: cnet_isa_e91063e63f (IsA belief subjective_sense_of_knowledge) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belief is a kind of content", "pln": ["(: cnet_isa_c0f836b0f8 (IsA belief content) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "believer is a kind of religionist", "pln": ["(: cnet_isa_cdd2a004d8 (IsA believer religionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "believer is a kind of supporter", "pln": ["(: cnet_isa_5f9d898591 (IsA believer supporter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "believing is a kind of basic cognitive process", "pln": ["(: cnet_isa_2c4c4dd4b3 (IsA believing basic_cognitive_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belittling is a kind of disparagement", "pln": ["(: cnet_isa_6285266952 (IsA belittling disparagement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belize dollar is a kind of dollar", "pln": ["(: cnet_isa_0cea3dfbbe (IsA belize_dollar dollar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bell is a kind of acoustic device", "pln": ["(: cnet_isa_f330bc7262 (IsA bell acoustic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bell is a kind of opening", "pln": ["(: cnet_isa_f1a0396b86 (IsA bell opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bell is a kind of signaling device", "pln": ["(: cnet_isa_3c27a83928 (IsA bell signaling_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bell is a kind of sound", "pln": ["(: cnet_isa_89f58c67bd (IsA bell sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bell is a kind of time unit", "pln": ["(: cnet_isa_3c1c2fb4a0 (IsA bell time_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bell is a kind of curve", "pln": ["(: cnet_isa_b99722daff (IsA bell curve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bell apple is a kind of passion fruit", "pln": ["(: cnet_isa_6716cc6389 (IsA bell_apple passion_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bell arch is a kind of round arch", "pln": ["(: cnet_isa_9b2ff4d80a (IsA bell_arch round_arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bell book is a kind of logbook", "pln": ["(: cnet_isa_13209c8fe8 (IsA bell_book logbook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bell buoy is a kind of acoustic buoy", "pln": ["(: cnet_isa_9933df5454 (IsA bell_buoy acoustic_buoy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bell captain is a kind of supervisor", "pln": ["(: cnet_isa_7773af917e (IsA bell_captain supervisor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bell cote is a kind of shelter", "pln": ["(: cnet_isa_6744283ac2 (IsA bell_cote shelter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bell deck is a kind of floor", "pln": ["(: cnet_isa_b4cc84f0e7 (IsA bell_deck floor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bell founder is a kind of founder", "pln": ["(: cnet_isa_c95cbd3504 (IsA bell_founder founder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bell foundry is a kind of foundry", "pln": ["(: cnet_isa_8bcca44694 (IsA bell_foundry foundry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bell gable is a kind of gable", "pln": ["(: cnet_isa_76820ebcc7 (IsA bell_gable gable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bell heather is a kind of erica", "pln": ["(: cnet_isa_98d510c89e (IsA bell_heather erica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bell jar is a kind of protective covering", "pln": ["(: cnet_isa_0c975d0ab3 (IsA bell_jar protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bell like call is a kind of birdcall", "pln": ["(: cnet_isa_ec753d6d90 (IsA bell_like_call birdcall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bell metal is a kind of bronze", "pln": ["(: cnet_isa_2275e584de (IsA bell_metal bronze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bell pepper is a kind of sweet pepper", "pln": ["(: cnet_isa_76a3eccb03 (IsA bell_pepper sweet_pepper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bell push is a kind of push button", "pln": ["(: cnet_isa_a2f4ae6d20 (IsA bell_push push_button) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bell ringer is a kind of success", "pln": ["(: cnet_isa_5de1c2a6d9 (IsA bell_ringer success) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bell ringer is a kind of musician", "pln": ["(: cnet_isa_1ff889b73c (IsA bell_ringer musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bell ringing is a kind of music", "pln": ["(: cnet_isa_b451525ae9 (IsA bell_ringing music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bell ringing is a kind of ring", "pln": ["(: cnet_isa_3e89699d98 (IsA bell_ringing ring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bell seat is a kind of seat", "pln": ["(: cnet_isa_14855b6dc0 (IsA bell_seat seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bell tent is a kind of tent", "pln": ["(: cnet_isa_375d27bebf (IsA bell_tent tent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bell tower is a kind of tower", "pln": ["(: cnet_isa_f45ae4e8af (IsA bell_tower tower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belladonna is a kind of atropine", "pln": ["(: cnet_isa_28be589217 (IsA belladonna atropine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belladonna is a kind of herb", "pln": ["(: cnet_isa_3e2ff234c3 (IsA belladonna herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belladonna lily is a kind of amaryllis", "pln": ["(: cnet_isa_cb61d94568 (IsA belladonna_lily amaryllis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bellarmine is a kind of jug", "pln": ["(: cnet_isa_ee89158d03 (IsA bellarmine jug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bellbird is a kind of cotinga", "pln": ["(: cnet_isa_16566238c7 (IsA bellbird cotinga) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bellbottom trouser is a kind of pair of trouser", "pln": ["(: cnet_isa_eec3d35ede (IsA bellbottom_trouser pair_of_trouser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bellboy is a kind of attendant", "pln": ["(: cnet_isa_b20c9c1be0 (IsA bellboy attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belle is a kind of girl", "pln": ["(: cnet_isa_367ba65d23 (IsA belle girl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belle isle cress is a kind of winter cress", "pln": ["(: cnet_isa_79624860ad (IsA belle_isle_cress winter_cress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belle lettre is a kind of literary composition", "pln": ["(: cnet_isa_47b89fb431 (IsA belle_lettre literary_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bellicoseness is a kind of aggressiveness", "pln": ["(: cnet_isa_5ef09b887e (IsA bellicoseness aggressiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belligerence is a kind of hostility", "pln": ["(: cnet_isa_318c7c655e (IsA belligerence hostility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bellis is a kind of asterid dicot genus", "pln": ["(: cnet_isa_d45d9d120b (IsA bellis asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bellow is a kind of cry", "pln": ["(: cnet_isa_e823e0a974 (IsA bellow cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bellow is a kind of blower", "pln": ["(: cnet_isa_49d51f4885 (IsA bellow blower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bellpull is a kind of pull", "pln": ["(: cnet_isa_e48e5bcb9b (IsA bellpull pull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bellwether is a kind of wether", "pln": ["(: cnet_isa_e9f8c7c811 (IsA bellwether wether) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bellwether is a kind of leader", "pln": ["(: cnet_isa_d4feff86d1 (IsA bellwether leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bellwort is a kind of flower", "pln": ["(: cnet_isa_981608616e (IsA bellwort flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belly is a kind of underpart", "pln": ["(: cnet_isa_09a67ba4ca (IsA belly underpart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belly is a kind of adipose tissue", "pln": ["(: cnet_isa_e3ffcdee05 (IsA belly adipose_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belly is a kind of inside", "pln": ["(: cnet_isa_5577fb71b9 (IsA belly inside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belly is a kind of bulge", "pln": ["(: cnet_isa_f76d00476e (IsA belly bulge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belly dance is a kind of stage dancing", "pln": ["(: cnet_isa_e9aae7cbb1 (IsA belly_dance stage_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belly dancer is a kind of dancer", "pln": ["(: cnet_isa_57052d8df1 (IsA belly_dancer dancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belly flop is a kind of dive", "pln": ["(: cnet_isa_f8d162688b (IsA belly_flop dive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belly laugh is a kind of joke", "pln": ["(: cnet_isa_0da76ce835 (IsA belly_laugh joke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bellyband is a kind of band", "pln": ["(: cnet_isa_87a1e9d347 (IsA bellyband band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bellyband is a kind of fastener", "pln": ["(: cnet_isa_0d58eea847 (IsA bellyband fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bellyful is a kind of overabundance", "pln": ["(: cnet_isa_e3c7a9ac0f (IsA bellyful overabundance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belmont stake is a kind of thoroughbred race", "pln": ["(: cnet_isa_5cef942c14 (IsA belmont_stake thoroughbred_race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belonging is a kind of happiness", "pln": ["(: cnet_isa_92f14674a8 (IsA belonging happiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belonidae is a kind of fish family", "pln": ["(: cnet_isa_c8a71f0a11 (IsA belonidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belorussian is a kind of european", "pln": ["(: cnet_isa_8bc356ae24 (IsA belorussian european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belostomatidae is a kind of arthropod family", "pln": ["(: cnet_isa_d92b6972f3 (IsA belostomatidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beloved is a kind of lover", "pln": ["(: cnet_isa_7dd793461c (IsA beloved lover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belt is a kind of accessory", "pln": ["(: cnet_isa_cbd01e6b2d (IsA belt accessory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "belt is a kind of loop", "pln": ["(: cnet_isa_71654e254c (IsA belt loop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belt is a kind of region", "pln": ["(: cnet_isa_bd4991486a (IsA belt region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belt buckle is a kind of buckle", "pln": ["(: cnet_isa_bfb96f88df (IsA belt_buckle buckle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belt maker is a kind of maker", "pln": ["(: cnet_isa_ef429db37c (IsA belt_maker maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belted ammunition is a kind of ammunition", "pln": ["(: cnet_isa_b7b5bc5f3e (IsA belted_ammunition ammunition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belted kingfisher is a kind of kingfisher", "pln": ["(: cnet_isa_4616f6cc07 (IsA belted_kingfisher kingfisher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belted sandfish is a kind of sea bass", "pln": ["(: cnet_isa_26d2b5e668 (IsA belted_sandfish sea_bass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belting is a kind of fabric", "pln": ["(: cnet_isa_f16dfd0b82 (IsA belting fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beluga is a kind of sturgeon", "pln": ["(: cnet_isa_e1291af9db (IsA beluga sturgeon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beluga caviar is a kind of caviar", "pln": ["(: cnet_isa_834d9f9360 (IsA beluga_caviar caviar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "belvedere is a kind of gazebo", "pln": ["(: cnet_isa_17c2933822 (IsA belvedere gazebo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bemisia is a kind of arthropod genus", "pln": ["(: cnet_isa_3d7052c48d (IsA bemisia arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ben is a kind of mountain", "pln": ["(: cnet_isa_2b9b5f8c04 (IsA ben mountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bench is a kind of long seat with no backrest", "pln": ["(: cnet_isa_c9be659ec4 (IsA bench long_seat_with_no_backrest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bench is a kind of seat", "pln": ["(: cnet_isa_fdf8b01281 (IsA bench seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bench is a kind of assembly", "pln": ["(: cnet_isa_37098d3cdf (IsA bench assembly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bench is a kind of subgroup", "pln": ["(: cnet_isa_217fb72c43 (IsA bench subgroup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bench clamp is a kind of clamp", "pln": ["(: cnet_isa_82e71762b9 (IsA bench_clamp clamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bench hook is a kind of catch", "pln": ["(: cnet_isa_68b27c2df4 (IsA bench_hook catch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bench lathe is a kind of lathe", "pln": ["(: cnet_isa_f602a9c415 (IsA bench_lathe lathe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bench press is a kind of weightlifting", "pln": ["(: cnet_isa_fc72963226 (IsA bench_press weightlifting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bench press is a kind of punch press", "pln": ["(: cnet_isa_b5c2944697 (IsA bench_press punch_press) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bench warmer is a kind of substitute", "pln": ["(: cnet_isa_1ae4ba4d1c (IsA bench_warmer substitute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bench warrant is a kind of warrant", "pln": ["(: cnet_isa_b31c76de3f (IsA bench_warrant warrant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benchmark is a kind of reference point", "pln": ["(: cnet_isa_15f0741c12 (IsA benchmark reference_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benchmark is a kind of standard", "pln": ["(: cnet_isa_3b7fd64b35 (IsA benchmark standard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bend is a kind of ordinary", "pln": ["(: cnet_isa_207ab4f8ff (IsA bend ordinary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bend is a kind of section", "pln": ["(: cnet_isa_e9d592c033 (IsA bend section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bend is a kind of curve", "pln": ["(: cnet_isa_b8020afcfd (IsA bend curve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bendability is a kind of flexibility", "pln": ["(: cnet_isa_38a5e6ba5e (IsA bendability flexibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benday process is a kind of technique", "pln": ["(: cnet_isa_1252a98df3 (IsA benday_process technique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bender is a kind of tool", "pln": ["(: cnet_isa_0591b82c64 (IsA bender tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bending is a kind of change of shape", "pln": ["(: cnet_isa_dd23992560 (IsA bending change_of_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bending is a kind of movement", "pln": ["(: cnet_isa_a270a5bce5 (IsA bending movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benedick is a kind of husband", "pln": ["(: cnet_isa_1a91419992 (IsA benedick husband) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benedictine is a kind of liqueur", "pln": ["(: cnet_isa_b32a4ea387 (IsA benedictine liqueur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benedictine is a kind of religious", "pln": ["(: cnet_isa_b8c91588af (IsA benedictine religious) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "benedictine order is a kind of order", "pln": ["(: cnet_isa_7385af35e2 (IsA benedictine_order order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benediction is a kind of prayer", "pln": ["(: cnet_isa_c8363b6f69 (IsA benediction prayer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benefaction is a kind of contribution", "pln": ["(: cnet_isa_ad412be33f (IsA benefaction contribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benefactive role is a kind of semantic role", "pln": ["(: cnet_isa_8d69445ccd (IsA benefactive_role semantic_role) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "benefactor is a kind of good person", "pln": ["(: cnet_isa_9ee28c5c0e (IsA benefactor good_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benefactress is a kind of benefactor", "pln": ["(: cnet_isa_196deef955 (IsA benefactress benefactor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benefice is a kind of spiritualty", "pln": ["(: cnet_isa_f3b53cba9e (IsA benefice spiritualty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beneficence is a kind of good", "pln": ["(: cnet_isa_c021d9948a (IsA beneficence good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beneficence is a kind of benevolence", "pln": ["(: cnet_isa_e77d8dd22f (IsA beneficence benevolence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beneficiary is a kind of recipient", "pln": ["(: cnet_isa_22631d088b (IsA beneficiary recipient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benefit is a kind of good", "pln": ["(: cnet_isa_a369352e1b (IsA benefit good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benefit is a kind of performance", "pln": ["(: cnet_isa_6c823d8f18 (IsA benefit performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benefit is a kind of payment", "pln": ["(: cnet_isa_cb29880dc4 (IsA benefit payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benefit concert is a kind of benefit", "pln": ["(: cnet_isa_5bd21ebd8e (IsA benefit_concert benefit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benefit of clergy is a kind of sanction", "pln": ["(: cnet_isa_b4f71b5f9d (IsA benefit_of_clergy sanction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benelux is a kind of custom union", "pln": ["(: cnet_isa_e84b37111a (IsA benelux custom_union) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benevolence is a kind of kindness", "pln": ["(: cnet_isa_bda73c2748 (IsA benevolence kindness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benevolence is a kind of love", "pln": ["(: cnet_isa_85b39884ea (IsA benevolence love) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benford s law is a kind of law", "pln": ["(: cnet_isa_96995428fd (IsA benford_s_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bengal light is a kind of flare", "pln": ["(: cnet_isa_83116e7bbd (IsA bengal_light flare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bengal tiger is a kind of tiger", "pln": ["(: cnet_isa_92be3e343c (IsA bengal_tiger tiger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bengali is a kind of magadhan", "pln": ["(: cnet_isa_23429563d3 (IsA bengali magadhan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bengali is a kind of ethnic group", "pln": ["(: cnet_isa_a737f9309e (IsA bengali ethnic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bengali is a kind of asiatic", "pln": ["(: cnet_isa_802be1d616 (IsA bengali asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benign prostatic hyperplasia is a kind of hyperplasia", "pln": ["(: cnet_isa_4c48433bbf (IsA benign_prostatic_hyperplasia hyperplasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benign tumor is a kind of tumor", "pln": ["(: cnet_isa_c6ca8f1160 (IsA benign_tumor tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benignity is a kind of good", "pln": ["(: cnet_isa_2f99d7fb0c (IsA benignity good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "benin franc is a kind of franc", "pln": ["(: cnet_isa_fd15b92650 (IsA benin_franc franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "beninese is a kind of african", "pln": ["(: cnet_isa_bd05f7fe57 (IsA beninese african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benison is a kind of benediction", "pln": ["(: cnet_isa_65b2ab52ba (IsA benison benediction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bennet is a kind of aven", "pln": ["(: cnet_isa_d921bec93f (IsA bennet aven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bennettitaceae is a kind of gymnosperm family", "pln": ["(: cnet_isa_fdda8a3839 (IsA bennettitaceae gymnosperm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bennettitale is a kind of plant order", "pln": ["(: cnet_isa_1da44557c8 (IsA bennettitale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bennettitis is a kind of gymnosperm genus", "pln": ["(: cnet_isa_01279694a7 (IsA bennettitis gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bent is a kind of endowment", "pln": ["(: cnet_isa_f9ea9e11f1 (IsA bent endowment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bent is a kind of inclination", "pln": ["(: cnet_isa_a50e943465 (IsA bent inclination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bent is a kind of grassland", "pln": ["(: cnet_isa_1fbbbd4cf0 (IsA bent grassland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bent is a kind of grass", "pln": ["(: cnet_isa_fa5eba5c70 (IsA bent grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bent hang is a kind of hang", "pln": ["(: cnet_isa_1254f25a73 (IsA bent_hang hang) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bentho is a kind of organism", "pln": ["(: cnet_isa_5562afa8e3 (IsA bentho organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bentho is a kind of biogeographical region", "pln": ["(: cnet_isa_6db6cc5ca7 (IsA bentho biogeographical_region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bentonite is a kind of clay", "pln": ["(: cnet_isa_7b97bc95b8 (IsA bentonite clay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bentwood is a kind of wood", "pln": ["(: cnet_isa_701bede4ec (IsA bentwood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benzene is a kind of aromatic hydrocarbon", "pln": ["(: cnet_isa_2705677e49 (IsA benzene aromatic_hydrocarbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benzene formula is a kind of benzene", "pln": ["(: cnet_isa_ad2554305e (IsA benzene_formula benzene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benzoate is a kind of salt", "pln": ["(: cnet_isa_f23fa27e10 (IsA benzoate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "benzoate of soda is a kind of benzoate", "pln": ["(: cnet_isa_a733c64b37 (IsA benzoate_of_soda benzoate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "benzocaine is a kind of local anesthetic", "pln": ["(: cnet_isa_52d3634f93 (IsA benzocaine local_anesthetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benzodiazepine is a kind of minor tranquilizer", "pln": ["(: cnet_isa_5e2422bead (IsA benzodiazepine minor_tranquilizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benzodiazepine is a kind of muscle relaxant", "pln": ["(: cnet_isa_401b59e181 (IsA benzodiazepine muscle_relaxant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benzofuran is a kind of compound", "pln": ["(: cnet_isa_a069c8cdef (IsA benzofuran compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benzoic acid is a kind of carboxylic acid", "pln": ["(: cnet_isa_a1f47afe78 (IsA benzoic_acid carboxylic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benzoin is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_3a75d74a76 (IsA benzoin magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benzoin is a kind of gum resin", "pln": ["(: cnet_isa_68024234d8 (IsA benzoin gum_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "benzoyl group is a kind of group", "pln": ["(: cnet_isa_2e857755aa (IsA benzoyl_group group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benzoyl peroxide is a kind of bleaching agent", "pln": ["(: cnet_isa_6416ad8d78 (IsA benzoyl_peroxide bleaching_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benzoyl peroxide is a kind of peroxide", "pln": ["(: cnet_isa_21a165ae96 (IsA benzoyl_peroxide peroxide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "benzyl is a kind of group", "pln": ["(: cnet_isa_7569c1fb78 (IsA benzyl group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beo is a kind of operating system", "pln": ["(: cnet_isa_c9e61102b8 (IsA beo operating_system) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bequest is a kind of gift", "pln": ["(: cnet_isa_95825cd4cd (IsA bequest gift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bequest is a kind of inheritance", "pln": ["(: cnet_isa_46f226b669 (IsA bequest inheritance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "berating is a kind of rebuke", "pln": ["(: cnet_isa_abf32cb2b3 (IsA berating rebuke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "berber is a kind of afroasiatic", "pln": ["(: cnet_isa_df8fe0829e (IsA berber afroasiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "berber is a kind of ethnic minority", "pln": ["(: cnet_isa_9d59cb6010 (IsA berber ethnic_minority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "berber is a kind of african", "pln": ["(: cnet_isa_8fcffc0c4e (IsA berber african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "berberidaceae is a kind of magnoliid dicot family", "pln": ["(: cnet_isa_9a44070ce0 (IsA berberidaceae magnoliid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "berberis is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_d1257165bf (IsA berberis magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bercy is a kind of sauce", "pln": ["(: cnet_isa_c0664b94e3 (IsA bercy sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bereaved person is a kind of person", "pln": ["(: cnet_isa_c49a941aec (IsA bereaved_person person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beret is a kind of cap", "pln": ["(: cnet_isa_277010fe7d (IsA beret cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bergamot is a kind of orange", "pln": ["(: cnet_isa_db53a86d6b (IsA bergamot orange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bergamot mint is a kind of mint", "pln": ["(: cnet_isa_213d699237 (IsA bergamot_mint mint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bergenia is a kind of herb", "pln": ["(: cnet_isa_2c697d7dbb (IsA bergenia herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beriberi is a kind of avitaminosis", "pln": ["(: cnet_isa_a6361d53ba (IsA beriberi avitaminosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bering time is a kind of civil time", "pln": ["(: cnet_isa_b22a181cc3 (IsA bering_time civil_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "berith is a kind of circumcision", "pln": ["(: cnet_isa_ec476816f9 (IsA berith circumcision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "berk is a kind of stupid", "pln": ["(: cnet_isa_4eb2657238 (IsA berk stupid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "berkelium is a kind of metallic element", "pln": ["(: cnet_isa_58e5ba5543 (IsA berkelium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "berlin is a kind of city in germany", "pln": ["(: cnet_isa_d0a30fcd76 (IsA berlin city_in_germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "berlin is a kind of limousine", "pln": ["(: cnet_isa_1b47599096 (IsA berlin limousine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "berlin doughnut is a kind of raised doughnut", "pln": ["(: cnet_isa_f3d65f9822 (IsA berlin_doughnut raised_doughnut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "berliner is a kind of german", "pln": ["(: cnet_isa_e9b730913e (IsA berliner german) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "berm is a kind of ledge", "pln": ["(: cnet_isa_9c8511570d (IsA berm ledge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bermuda buttercup is a kind of oxalis", "pln": ["(: cnet_isa_b43cb85e9b (IsA bermuda_buttercup oxalis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bermuda cedar is a kind of pencil cedar", "pln": ["(: cnet_isa_e1e95caa7f (IsA bermuda_cedar pencil_cedar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bermuda chub is a kind of sea chub", "pln": ["(: cnet_isa_bb29b83f37 (IsA bermuda_chub sea_chub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bermuda dollar is a kind of dollar", "pln": ["(: cnet_isa_a31471fc8e (IsA bermuda_dollar dollar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bermuda grass is a kind of grass", "pln": ["(: cnet_isa_b5261f9374 (IsA bermuda_grass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "bermuda shorts is a kind of short pants", "pln": ["(: cnet_isa_2109126eed (IsA bermuda_shorts short_pants) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bermuda maidenhair is a kind of maidenhair", "pln": ["(: cnet_isa_97c67f826e (IsA bermuda_maidenhair maidenhair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bermuda onion is a kind of onion", "pln": ["(: cnet_isa_cea0e706af (IsA bermuda_onion onion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bermuda plan is a kind of hotel plan", "pln": ["(: cnet_isa_5b7d395ab3 (IsA bermuda_plan hotel_plan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bermuda rig is a kind of rig", "pln": ["(: cnet_isa_9fdd6694dd (IsA bermuda_rig rig) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bermuda short is a kind of short pant", "pln": ["(: cnet_isa_8a1dffac27 (IsA bermuda_short short_pant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bermudian is a kind of north american", "pln": ["(: cnet_isa_7b9b19a21b (IsA bermudian north_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bernese mountain dog is a kind of sennenhund", "pln": ["(: cnet_isa_e1bb73cadc (IsA bernese_mountain_dog sennenhund) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bernoulli s law is a kind of law", "pln": ["(: cnet_isa_d22e5f7c68 (IsA bernoulli_s_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beroe is a kind of ctenophore", "pln": ["(: cnet_isa_85222c468d (IsA beroe ctenophore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "berry is a kind of edible fruit", "pln": ["(: cnet_isa_69b299b5f9 (IsA berry edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "berry is a kind of fruit", "pln": ["(: cnet_isa_592d63ebde (IsA berry fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "berserker is a kind of northman", "pln": ["(: cnet_isa_33fc2c2eda (IsA berserker northman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "berteroa is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_e17a2cf720 (IsA berteroa dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "berth is a kind of bed", "pln": ["(: cnet_isa_3261b0dc18 (IsA berth bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bertholletia is a kind of dicot genus", "pln": ["(: cnet_isa_9c19f0f339 (IsA bertholletia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bertillon system is a kind of procedure", "pln": ["(: cnet_isa_57d09e0e0d (IsA bertillon_system procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "berycomorphi is a kind of animal order", "pln": ["(: cnet_isa_7d84075a7a (IsA berycomorphi animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beryl is a kind of mineral", "pln": ["(: cnet_isa_52dab761f8 (IsA beryl mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beryllium is a kind of metallic element", "pln": ["(: cnet_isa_a11bc72472 (IsA beryllium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beryllium bronze is a kind of bronze", "pln": ["(: cnet_isa_e12319c576 (IsA beryllium_bronze bronze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "besieger is a kind of enemy", "pln": ["(: cnet_isa_fc5af442e7 (IsA besieger enemy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "besieger is a kind of petitioner", "pln": ["(: cnet_isa_32c1f55ce7 (IsA besieger petitioner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "besom is a kind of broom", "pln": ["(: cnet_isa_e15e7c324d (IsA besom broom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bessemer converter is a kind of converter", "pln": ["(: cnet_isa_6e879fa738 (IsA bessemer_converter converter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bessemer process is a kind of industrial process", "pln": ["(: cnet_isa_3b7536188e (IsA bessemer_process industrial_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bessemer process is a kind of steel production", "pln": ["(: cnet_isa_6fb4f323fa (IsA bessemer_process steel_production) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bessera is a kind of liliid monocot genus", "pln": ["(: cnet_isa_41f6afa0df (IsA bessera liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "besseya is a kind of asterid dicot genus", "pln": ["(: cnet_isa_2e74638004 (IsA besseya asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "best is a kind of attempt", "pln": ["(: cnet_isa_dd0f14107d (IsA best attempt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "best is a kind of person", "pln": ["(: cnet_isa_e06df7cc41 (IsA best person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "best evidence rule is a kind of rule of evidence", "pln": ["(: cnet_isa_d3865babef (IsA best_evidence_rule rule_of_evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "best friend is a kind of friend", "pln": ["(: cnet_isa_95f0bac69c (IsA best_friend friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "best man is a kind of groomsman", "pln": ["(: cnet_isa_4bb96a8c59 (IsA best_man groomsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "best part of waking up is a kind of folger s in cup", "pln": ["(: cnet_isa_c39a0c0e63 (IsA best_part_of_waking_up folger_s_in_cup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "best seller is a kind of trade book", "pln": ["(: cnet_isa_a04b02e3b4 (IsA best_seller trade_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bestiality is a kind of sexual activity", "pln": ["(: cnet_isa_f330b03a33 (IsA bestiality sexual_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bestiality is a kind of inhumaneness", "pln": ["(: cnet_isa_c524b5bf96 (IsA bestiality inhumaneness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bestiary is a kind of book", "pln": ["(: cnet_isa_389ae48515 (IsA bestiary book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bestowal is a kind of giving", "pln": ["(: cnet_isa_55b67b9963 (IsA bestowal giving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bestowal is a kind of gift", "pln": ["(: cnet_isa_3b4bcfc708 (IsA bestowal gift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bet is a kind of gambling", "pln": ["(: cnet_isa_1a7343b941 (IsA bet gambling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beta is a kind of letter", "pln": ["(: cnet_isa_ff259c8164 (IsA beta letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beta is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_ac52c52536 (IsA beta caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beta is a kind of chenopodiaceae", "pln": ["(: cnet_isa_f2cbe233a6 (IsA beta chenopodiaceae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beta blocker is a kind of blocker", "pln": ["(: cnet_isa_60322b6517 (IsA beta_blocker blocker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beta blocker eyedrop is a kind of eye drop", "pln": ["(: cnet_isa_217e2f3514 (IsA beta_blocker_eyedrop eye_drop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "beta carotene is a kind of carotenoid", "pln": ["(: cnet_isa_0301e57581 (IsA beta_carotene carotenoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beta carotene is a kind of provitamin", "pln": ["(: cnet_isa_33e399b93b (IsA beta_carotene provitamin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beta cell is a kind of cell", "pln": ["(: cnet_isa_bbe7515ada (IsA beta_cell cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beta decay is a kind of decay", "pln": ["(: cnet_isa_0cd4a21eaa (IsA beta_decay decay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beta endorphin is a kind of endorphin", "pln": ["(: cnet_isa_d43a7d65fd (IsA beta_endorphin endorphin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beta hydroxybutyric acid is a kind of hydroxybutyric acid", "pln": ["(: cnet_isa_1a46478648 (IsA beta_hydroxybutyric_acid hydroxybutyric_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beta hydroxybutyric acid is a kind of ketone body", "pln": ["(: cnet_isa_1949f6b4b3 (IsA beta_hydroxybutyric_acid ketone_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beta interferon is a kind of interferon", "pln": ["(: cnet_isa_f14a2dbfc2 (IsA beta_interferon interferon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beta iron is a kind of iron", "pln": ["(: cnet_isa_e65cfc054d (IsA beta_iron iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beta naphthol is a kind of antioxidant", "pln": ["(: cnet_isa_8d6a4cadba (IsA beta_naphthol antioxidant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beta naphthol is a kind of naphthol", "pln": ["(: cnet_isa_893cbe9737 (IsA beta_naphthol naphthol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beta particle is a kind of particle", "pln": ["(: cnet_isa_3fdb652f4a (IsA beta_particle particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beta radiation is a kind of corpuscular radiation", "pln": ["(: cnet_isa_6869551536 (IsA beta_radiation corpuscular_radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beta radiation is a kind of ionizing radiation", "pln": ["(: cnet_isa_802ec66be4 (IsA beta_radiation ionizing_radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beta receptor is a kind of receptor", "pln": ["(: cnet_isa_9f178847a9 (IsA beta_receptor receptor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beta rhythm is a kind of brainwave", "pln": ["(: cnet_isa_91ef44a393 (IsA beta_rhythm brainwave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beta software is a kind of software", "pln": ["(: cnet_isa_7dd3615468 (IsA beta_software software) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beta test is a kind of trial", "pln": ["(: cnet_isa_d0a367d7dd (IsA beta_test trial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "betaine is a kind of alkaloid", "pln": ["(: cnet_isa_e9dec58358 (IsA betaine alkaloid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "betatron is a kind of accelerator", "pln": ["(: cnet_isa_9b0be0155f (IsA betatron accelerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "betel is a kind of true pepper", "pln": ["(: cnet_isa_4a83515a12 (IsA betel true_pepper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "betel leaf is a kind of leaf", "pln": ["(: cnet_isa_9017ee6f01 (IsA betel_leaf leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "betel nut is a kind of edible seed", "pln": ["(: cnet_isa_0345e3d5ce (IsA betel_nut edible_seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "betel palm is a kind of areca", "pln": ["(: cnet_isa_15168bac55 (IsA betel_palm areca) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beth is a kind of letter", "pln": ["(: cnet_isa_d0d52694f6 (IsA beth letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bethel is a kind of place of worship", "pln": ["(: cnet_isa_7ea5765854 (IsA bethel place_of_worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "betrayal is a kind of treason", "pln": ["(: cnet_isa_9aa69ceffb (IsA betrayal treason) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "betrothal is a kind of ritual", "pln": ["(: cnet_isa_fc80b46cb9 (IsA betrothal ritual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "betrothal is a kind of promise", "pln": ["(: cnet_isa_c0e9e75e82 (IsA betrothal promise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "betrothed is a kind of lover", "pln": ["(: cnet_isa_b36cbc871a (IsA betrothed lover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "better is a kind of good", "pln": ["(: cnet_isa_6ec026e848 (IsA better good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "better is a kind of superior", "pln": ["(: cnet_isa_1cf0cd2da2 (IsA better superior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "betterment is a kind of improvement", "pln": ["(: cnet_isa_d87f9fe321 (IsA betterment improvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "betting shop is a kind of shop", "pln": ["(: cnet_isa_80c2233cb0 (IsA betting_shop shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bettong is a kind of rat kangaroo", "pln": ["(: cnet_isa_ee076273ee (IsA bettong rat_kangaroo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bettongia is a kind of mammal genus", "pln": ["(: cnet_isa_09faa5a127 (IsA bettongia mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bettor is a kind of gambler", "pln": ["(: cnet_isa_c868d773b6 (IsA bettor gambler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "betula is a kind of hamamelid dicot genus", "pln": ["(: cnet_isa_0537105815 (IsA betula hamamelid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "betulaceae is a kind of hamamelid dicot family", "pln": ["(: cnet_isa_07749f398b (IsA betulaceae hamamelid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bevatron is a kind of cyclotron", "pln": ["(: cnet_isa_e2f2faae82 (IsA bevatron cyclotron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bevel is a kind of edge", "pln": ["(: cnet_isa_69ec7176b5 (IsA bevel edge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bevel is a kind of hand tool", "pln": ["(: cnet_isa_22685dd1f8 (IsA bevel hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bevel gear is a kind of gear", "pln": ["(: cnet_isa_1d2f9f7207 (IsA bevel_gear gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beverage is a kind of food", "pln": ["(: cnet_isa_cb701d5756 (IsA beverage food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "beverage is a kind of liquid", "pln": ["(: cnet_isa_e4515a7093 (IsA beverage liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bevy is a kind of flock", "pln": ["(: cnet_isa_f0182e2727 (IsA bevy flock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bevy is a kind of gathering", "pln": ["(: cnet_isa_56ba501349 (IsA bevy gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bewick s swan is a kind of tundra swan", "pln": ["(: cnet_isa_ca3a78424f (IsA bewick_s_swan tundra_swan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bewilderment is a kind of confusion", "pln": ["(: cnet_isa_11ce713680 (IsA bewilderment confusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bewitchery is a kind of attractiveness", "pln": ["(: cnet_isa_6e6fb6069c (IsA bewitchery attractiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bey is a kind of governor", "pln": ["(: cnet_isa_ee4ee6549c (IsA bey governor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bey is a kind of man", "pln": ["(: cnet_isa_be7340f5f0 (IsA bey man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bezant is a kind of coin", "pln": ["(: cnet_isa_90a5bbd41c (IsA bezant coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bezel is a kind of edge", "pln": ["(: cnet_isa_477a632d4e (IsA bezel edge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bezoar goat is a kind of wild goat", "pln": ["(: cnet_isa_d25782402b (IsA bezoar_goat wild_goat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bhadon is a kind of hindu calendar month", "pln": ["(: cnet_isa_e0d234d077 (IsA bhadon hindu_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bhakti is a kind of devotion", "pln": ["(: cnet_isa_5ae2147323 (IsA bhakti devotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bhang is a kind of soft drug", "pln": ["(: cnet_isa_909d568176 (IsA bhang soft_drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bhutanese monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_243dfd8ccb (IsA bhutanese_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bhutani is a kind of asiatic", "pln": ["(: cnet_isa_7fa82874d8 (IsA bhutani asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bi fold door is a kind of interior door", "pln": ["(: cnet_isa_2870066d91 (IsA bi_fold_door interior_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bialy is a kind of onion roll", "pln": ["(: cnet_isa_9766423e2a (IsA bialy onion_roll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bia is a kind of partiality", "pln": ["(: cnet_isa_4474a7f08d (IsA bia partiality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biathlon is a kind of sport", "pln": ["(: cnet_isa_76689ade82 (IsA biathlon sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biauriculate heart is a kind of heart", "pln": ["(: cnet_isa_92fec70f3f (IsA biauriculate_heart heart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bib is a kind of napkin", "pln": ["(: cnet_isa_0db1412cc9 (IsA bib napkin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bib is a kind of piece of cloth", "pln": ["(: cnet_isa_8868feda91 (IsA bib piece_of_cloth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bib and tucker is a kind of outfit", "pln": ["(: cnet_isa_023ca0aa11 (IsA bib_and_tucker outfit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bibb lettuce is a kind of butterhead lettuce", "pln": ["(: cnet_isa_b617fc42a8 (IsA bibb_lettuce butterhead_lettuce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bible is a kind of book", "pln": ["(: cnet_isa_ad4aa6ca83 (IsA bible book) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bible is a kind of handbook", "pln": ["(: cnet_isa_e43fb89d1f (IsA bible handbook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bible is a kind of sacred text", "pln": ["(: cnet_isa_54bf594188 (IsA bible sacred_text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biblical aramaic is a kind of aramaic", "pln": ["(: cnet_isa_e825d692a3 (IsA biblical_aramaic aramaic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bibliographer is a kind of scholar", "pln": ["(: cnet_isa_bff040904d (IsA bibliographer scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bibliography is a kind of list", "pln": ["(: cnet_isa_4413342cfa (IsA bibliography list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bibliolatry is a kind of idolatry", "pln": ["(: cnet_isa_f7e9702455 (IsA bibliolatry idolatry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bibliomania is a kind of acquisitiveness", "pln": ["(: cnet_isa_a270f91799 (IsA bibliomania acquisitiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bibliophile is a kind of scholar", "pln": ["(: cnet_isa_4ea09413ef (IsA bibliophile scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bibliopole is a kind of trader", "pln": ["(: cnet_isa_ecf17774b2 (IsA bibliopole trader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bibliotheca is a kind of library", "pln": ["(: cnet_isa_d42bccaa92 (IsA bibliotheca library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bibliotic is a kind of discipline", "pln": ["(: cnet_isa_a839b66f86 (IsA bibliotic discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bibliotist is a kind of scientist", "pln": ["(: cnet_isa_3552cf4e1d (IsA bibliotist scientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bibo is a kind of mammal genus", "pln": ["(: cnet_isa_c71b119848 (IsA bibo mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bicameral script is a kind of font", "pln": ["(: cnet_isa_8fe467bde0 (IsA bicameral_script font) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bicarbonate is a kind of carbonate", "pln": ["(: cnet_isa_a99287086c (IsA bicarbonate carbonate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bicarbonate of soda is a kind of bicarbonate", "pln": ["(: cnet_isa_cc560456ef (IsA bicarbonate_of_soda bicarbonate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bicentennial is a kind of anniversary", "pln": ["(: cnet_isa_117242eb18 (IsA bicentennial anniversary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bicep is a kind of skeletal muscle", "pln": ["(: cnet_isa_ccf3312f80 (IsA bicep skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bicep brachii is a kind of bicep", "pln": ["(: cnet_isa_69a4e10227 (IsA bicep_brachii bicep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bichromate is a kind of salt", "pln": ["(: cnet_isa_34912a6675 (IsA bichromate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bicker is a kind of quarrel", "pln": ["(: cnet_isa_75d49b0f56 (IsA bicker quarrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bicolor lespediza is a kind of bush clover", "pln": ["(: cnet_isa_a1d201327e (IsA bicolor_lespediza bush_clover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bicorn is a kind of cocked hat", "pln": ["(: cnet_isa_ae6e0f4c36 (IsA bicorn cocked_hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bicycle is a kind of efficient form of human transportation", "pln": ["(: cnet_isa_f4a0e98699 (IsA bicycle efficient_form_of_human_transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bicycle is a kind of toy", "pln": ["(: cnet_isa_dfe2d7c357 (IsA bicycle toy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bicycle is a kind of transportation", "pln": ["(: cnet_isa_c442c213ce (IsA bicycle transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bicycle is a kind of two wheel vehicle", "pln": ["(: cnet_isa_11661b7426 (IsA bicycle two_wheel_vehicle) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bicycle is a kind of wheeled vehicle", "pln": ["(: cnet_isa_8a8025983a (IsA bicycle wheeled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bicycle built for two is a kind of bicycle", "pln": ["(: cnet_isa_f9534a65ed (IsA bicycle_built_for_two bicycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bicycle chain is a kind of chain", "pln": ["(: cnet_isa_6016218672 (IsA bicycle_chain chain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bicycle clip is a kind of clip", "pln": ["(: cnet_isa_c6aa34c123 (IsA bicycle_clip clip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bicycle pump is a kind of pump", "pln": ["(: cnet_isa_d00e87982f (IsA bicycle_pump pump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bicycle race is a kind of race", "pln": ["(: cnet_isa_1183dda398 (IsA bicycle_race race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bicycle rack is a kind of rack", "pln": ["(: cnet_isa_48eaf312fd (IsA bicycle_rack rack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bicycle seat is a kind of seat", "pln": ["(: cnet_isa_d4ee252742 (IsA bicycle_seat seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bicycle traffic is a kind of vehicular traffic", "pln": ["(: cnet_isa_c2e1746e12 (IsA bicycle_traffic vehicular_traffic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bicycle wheel is a kind of wheel", "pln": ["(: cnet_isa_8bf8a62b94 (IsA bicycle_wheel wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bicycling is a kind of aerobic sport", "pln": ["(: cnet_isa_b8cae21a17 (IsA bicycling aerobic_sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bicycling is a kind of good form of exercise", "pln": ["(: cnet_isa_d5f910d656 (IsA bicycling good_form_of_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bicycling is a kind of cycling", "pln": ["(: cnet_isa_0d8db9a1b5 (IsA bicycling cycling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bid is a kind of attempt", "pln": ["(: cnet_isa_c557a1dbfc (IsA bid attempt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bid is a kind of statement", "pln": ["(: cnet_isa_9d1ea36050 (IsA bid statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bid is a kind of offer", "pln": ["(: cnet_isa_1654a733bd (IsA bid offer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bid price is a kind of price", "pln": ["(: cnet_isa_b14e757cff (IsA bid_price price) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bidder is a kind of applicant", "pln": ["(: cnet_isa_811045dc57 (IsA bidder applicant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bidder is a kind of bridge player", "pln": ["(: cnet_isa_7eccd34577 (IsA bidder bridge_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bidding is a kind of invitation", "pln": ["(: cnet_isa_bff0699d85 (IsA bidding invitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bidding contest is a kind of contest", "pln": ["(: cnet_isa_5c1e73f77e (IsA bidding_contest contest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biden is a kind of asterid dicot genus", "pln": ["(: cnet_isa_5aafbf4828 (IsA biden asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bidet is a kind of machine", "pln": ["(: cnet_isa_f8fe6f58d1 (IsA bidet machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bidet is a kind of basin", "pln": ["(: cnet_isa_a420ab8028 (IsA bidet basin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biennial is a kind of plant", "pln": ["(: cnet_isa_3bd7eaf763 (IsA biennial plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bier is a kind of coffin", "pln": ["(: cnet_isa_c1704b5c4d (IsA bier coffin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bier is a kind of rack", "pln": ["(: cnet_isa_98585d6a55 (IsA bier rack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bifocal is a kind of spectacle", "pln": ["(: cnet_isa_6aa1229cf6 (IsA bifocal spectacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bifurcation is a kind of branching", "pln": ["(: cnet_isa_438fa17175 (IsA bifurcation branching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bifurcation is a kind of branch", "pln": ["(: cnet_isa_d88296debd (IsA bifurcation branch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bifurcation is a kind of furcation", "pln": ["(: cnet_isa_55513cced7 (IsA bifurcation furcation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "big band is a kind of dance band", "pln": ["(: cnet_isa_382c25d99d (IsA big_band dance_band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "big bang is a kind of explosion", "pln": ["(: cnet_isa_2f7a4d1cd9 (IsA big_bang explosion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "big bang theory is a kind of scientific theory", "pln": ["(: cnet_isa_e82fdd2774 (IsA big_bang_theory scientific_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "big blue is a kind of fragmentation bomb", "pln": ["(: cnet_isa_a894724777 (IsA big_blue fragmentation_bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "big board is a kind of display panel", "pln": ["(: cnet_isa_4b182225ca (IsA big_board display_panel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "big brother is a kind of authoritarian", "pln": ["(: cnet_isa_d597c00eb0 (IsA big_brother authoritarian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "big brother is a kind of brother", "pln": ["(: cnet_isa_34c1e7f19b (IsA big_brother brother) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "big brown bat is a kind of vespertilian bat", "pln": ["(: cnet_isa_dcc4d5d1be (IsA big_brown_bat vespertilian_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "big business is a kind of business", "pln": ["(: cnet_isa_84ce926a49 (IsA big_business business) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "big cat is a kind of feline", "pln": ["(: cnet_isa_8d070ca0b5 (IsA big_cat feline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "big cone spruce is a kind of dougla fir", "pln": ["(: cnet_isa_5f959663b9 (IsA big_cone_spruce dougla_fir) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "big deal is a kind of importance", "pln": ["(: cnet_isa_8e6c293e41 (IsA big_deal importance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "big eared bat is a kind of false vampire", "pln": ["(: cnet_isa_d587df57fe (IsA big_eared_bat false_vampire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "big game is a kind of game", "pln": ["(: cnet_isa_a460365c38 (IsA big_game game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "big h is a kind of heroin", "pln": ["(: cnet_isa_e7bafbd996 (IsA big_h heroin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "big name is a kind of name", "pln": ["(: cnet_isa_7c3421793c (IsA big_name name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "big sagebrush is a kind of sagebrush", "pln": ["(: cnet_isa_e0bb7eed5b (IsA big_sagebrush sagebrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "big science is a kind of scientific research", "pln": ["(: cnet_isa_bbfbd8c802 (IsA big_science scientific_research) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "big shellbark is a kind of hickory", "pln": ["(: cnet_isa_7be246b7c9 (IsA big_shellbark hickory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "big shot is a kind of important person", "pln": ["(: cnet_isa_10e724f79c (IsA big_shot important_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "big sister is a kind of sister", "pln": ["(: cnet_isa_7c2d1ab60a (IsA big_sister sister) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "big spender is a kind of spendthrift", "pln": ["(: cnet_isa_6b9cf96842 (IsA big_spender spendthrift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "big stick is a kind of display", "pln": ["(: cnet_isa_713cdc143f (IsA big_stick display) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "big time is a kind of success", "pln": ["(: cnet_isa_db3ff08451 (IsA big_time success) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "big toe is a kind of toe", "pln": ["(: cnet_isa_a7afac27dd (IsA big_toe toe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "big tree plum is a kind of plum", "pln": ["(: cnet_isa_f1629148d2 (IsA big_tree_plum plum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bigamist is a kind of spouse", "pln": ["(: cnet_isa_3425c10091 (IsA bigamist spouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bigamy is a kind of statutory offense", "pln": ["(: cnet_isa_d8e7586d9a (IsA bigamy statutory_offense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bigamy is a kind of marriage", "pln": ["(: cnet_isa_00324f8288 (IsA bigamy marriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bigeye is a kind of percoid fish", "pln": ["(: cnet_isa_b3f90464f7 (IsA bigeye percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bigeye scad is a kind of scad", "pln": ["(: cnet_isa_05b6395f78 (IsA bigeye_scad scad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biggin is a kind of cap", "pln": ["(: cnet_isa_2dc9083a9c (IsA biggin cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bighead is a kind of animal disease", "pln": ["(: cnet_isa_05dab0df2d (IsA bighead animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bigheartedness is a kind of generosity", "pln": ["(: cnet_isa_c2850e507f (IsA bigheartedness generosity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bighorn is a kind of mountain sheep", "pln": ["(: cnet_isa_74205ca23e (IsA bighorn mountain_sheep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bight is a kind of center", "pln": ["(: cnet_isa_7ee2bf8017 (IsA bight center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bight is a kind of bay", "pln": ["(: cnet_isa_a4ad1a3551 (IsA bight bay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bight is a kind of bend", "pln": ["(: cnet_isa_39d27bb08a (IsA bight bend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bight is a kind of loop", "pln": ["(: cnet_isa_a711ab660d (IsA bight loop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bignonia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_5aee279c64 (IsA bignonia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bignoniaceae is a kind of asterid dicot family", "pln": ["(: cnet_isa_3a76bb3682 (IsA bignoniaceae asterid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bignoniad is a kind of woody plant", "pln": ["(: cnet_isa_10a73dcde8 (IsA bignoniad woody_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bigo is a kind of stew", "pln": ["(: cnet_isa_3ad6f879c9 (IsA bigo stew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bigot is a kind of partisan", "pln": ["(: cnet_isa_9cc8a95980 (IsA bigot partisan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bigotry is a kind of intolerance", "pln": ["(: cnet_isa_a80d35abc6 (IsA bigotry intolerance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bigram is a kind of written word", "pln": ["(: cnet_isa_6f910e5068 (IsA bigram written_word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bihari is a kind of sanskrit", "pln": ["(: cnet_isa_3a0ea957cb (IsA bihari sanskrit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bijou is a kind of jewelry", "pln": ["(: cnet_isa_4bd8a92051 (IsA bijou jewelry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bijugate leaf is a kind of pinnate leaf", "pln": ["(: cnet_isa_8172b7fc2f (IsA bijugate_leaf pinnate_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bikini is a kind of swimsuit", "pln": ["(: cnet_isa_46f7ecbeab (IsA bikini swimsuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bikini pant is a kind of underpant", "pln": ["(: cnet_isa_2752d575ff (IsA bikini_pant underpant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bilabial is a kind of labial consonant", "pln": ["(: cnet_isa_fbc69c57e9 (IsA bilabial labial_consonant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bilateral contract is a kind of contract", "pln": ["(: cnet_isa_1a40d6e847 (IsA bilateral_contract contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bilateral descent is a kind of descent", "pln": ["(: cnet_isa_ef3e2f0822 (IsA bilateral_descent descent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bilaterality is a kind of symmetry", "pln": ["(: cnet_isa_577ded207e (IsA bilaterality symmetry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bilberry is a kind of berry", "pln": ["(: cnet_isa_6cb222c2e6 (IsA bilberry berry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bilberry is a kind of blueberry", "pln": ["(: cnet_isa_d5a6469fb6 (IsA bilberry blueberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bile is a kind of digestive juice", "pln": ["(: cnet_isa_27834dcae6 (IsA bile digestive_juice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bile acid is a kind of steroid", "pln": ["(: cnet_isa_8f93335bcf (IsA bile_acid steroid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bile salt is a kind of salt", "pln": ["(: cnet_isa_78aea075a3 (IsA bile_salt salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bilge is a kind of bottom", "pln": ["(: cnet_isa_3fccc95171 (IsA bilge bottom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bilge is a kind of water", "pln": ["(: cnet_isa_9361b247f9 (IsA bilge water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bilge keel is a kind of keel", "pln": ["(: cnet_isa_24f1b9f787 (IsA bilge_keel keel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bilge pump is a kind of pump", "pln": ["(: cnet_isa_c71ab1dc11 (IsA bilge_pump pump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bilge well is a kind of well", "pln": ["(: cnet_isa_9699b6aff8 (IsA bilge_well well) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bilge is a kind of bilge", "pln": ["(: cnet_isa_1a1a96b36b (IsA bilge bilge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biliary ductule is a kind of ductule", "pln": ["(: cnet_isa_9f5363e15f (IsA biliary_ductule ductule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bilimbi is a kind of fruit tree", "pln": ["(: cnet_isa_5ac0d11397 (IsA bilimbi fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bilingual is a kind of linguist", "pln": ["(: cnet_isa_054cbec2bf (IsA bilingual linguist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bilingual dictionary is a kind of dictionary", "pln": ["(: cnet_isa_4a48438fda (IsA bilingual_dictionary dictionary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bilingualism is a kind of ability", "pln": ["(: cnet_isa_d597f4e669 (IsA bilingualism ability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biliousness is a kind of ill health", "pln": ["(: cnet_isa_bdde8d3c66 (IsA biliousness ill_health) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bilirubin is a kind of animal pigment", "pln": ["(: cnet_isa_1aca13241b (IsA bilirubin animal_pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "bill of particulars is a kind of allegation", "pln": ["(: cnet_isa_22111468c8 (IsA bill_of_particulars allegation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bill is a kind of duck s mouth", "pln": ["(: cnet_isa_a05d568ffc (IsA bill duck_s_mouth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bill is a kind of program", "pln": ["(: cnet_isa_55f74fcd5a (IsA bill program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bill is a kind of brim", "pln": ["(: cnet_isa_7773f96d21 (IsA bill brim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bill is a kind of hand tool", "pln": ["(: cnet_isa_c51c1581c5 (IsA bill hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bill is a kind of list", "pln": ["(: cnet_isa_56a149fc8e (IsA bill list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bill is a kind of statement", "pln": ["(: cnet_isa_eca3f06355 (IsA bill statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bill is a kind of legal document", "pln": ["(: cnet_isa_10d17da02d (IsA bill legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bill is a kind of paper money", "pln": ["(: cnet_isa_cac7dd8dfb (IsA bill paper_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bill clinton is a kind of president of united state", "pln": ["(: cnet_isa_d39f2531c3 (IsA bill_clinton president_of_united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bill of attainder is a kind of bill", "pln": ["(: cnet_isa_6bb3cb7d47 (IsA bill_of_attainder bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bill of entry is a kind of bill", "pln": ["(: cnet_isa_7b2b450a85 (IsA bill_of_entry bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bill of good is a kind of bill", "pln": ["(: cnet_isa_3bb25a607c (IsA bill_of_good bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bill of good is a kind of misrepresentation", "pln": ["(: cnet_isa_136b2db85c (IsA bill_of_good misrepresentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bill of health is a kind of certificate", "pln": ["(: cnet_isa_7f6f8239d9 (IsA bill_of_health certificate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bill of lading is a kind of receipt", "pln": ["(: cnet_isa_034b709c8c (IsA bill_of_lading receipt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bill of particular is a kind of allegation", "pln": ["(: cnet_isa_a1e9e86f50 (IsA bill_of_particular allegation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bill of review is a kind of review", "pln": ["(: cnet_isa_74cb763bda (IsA bill_of_review review) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bill of right is a kind of statement", "pln": ["(: cnet_isa_a130bf7497 (IsA bill_of_right statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bill of sale is a kind of deed", "pln": ["(: cnet_isa_6c1d77ebfe (IsA bill_of_sale deed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bill poster is a kind of worker", "pln": ["(: cnet_isa_c4e3951579 (IsA bill_poster worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "billabong is a kind of branch", "pln": ["(: cnet_isa_d28f372590 (IsA billabong branch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "billabong is a kind of pool", "pln": ["(: cnet_isa_f4a91986c4 (IsA billabong pool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "billboard is a kind of signboard", "pln": ["(: cnet_isa_f13d11d1a3 (IsA billboard signboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "billet is a kind of housing", "pln": ["(: cnet_isa_b1168c672f (IsA billet housing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "billfish is a kind of scombroid", "pln": ["(: cnet_isa_b0a1086720 (IsA billfish scombroid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "billiard ball is a kind of ball", "pln": ["(: cnet_isa_ba101b5a64 (IsA billiard_ball ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "billiard marker is a kind of device", "pln": ["(: cnet_isa_3c6f35b1c8 (IsA billiard_marker device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "billiard player is a kind of player", "pln": ["(: cnet_isa_5d3bdf3c35 (IsA billiard_player player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "billiard room is a kind of room", "pln": ["(: cnet_isa_b788013620 (IsA billiard_room room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "billiard is a kind of table game", "pln": ["(: cnet_isa_187d4da9ed (IsA billiard table_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "billibi is a kind of soup", "pln": ["(: cnet_isa_60f39d4c6f (IsA billibi soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "billion is a kind of large integer", "pln": ["(: cnet_isa_4f26a2ffb9 (IsA billion large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "billion dollar is a kind of very big expenditure", "pln": ["(: cnet_isa_5c5811a5c9 (IsA billion_dollar very_big_expenditure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "billionaire is a kind of rich person", "pln": ["(: cnet_isa_b587f7441f (IsA billionaire rich_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "billionth is a kind of rank", "pln": ["(: cnet_isa_37964fc1c5 (IsA billionth rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "billow is a kind of wave", "pln": ["(: cnet_isa_b1cdf16667 (IsA billow wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bill is a kind of paperwork representation of transaction", "pln": ["(: cnet_isa_5ab721d485 (IsA bill paperwork_representation_of_transaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "billy is a kind of goat", "pln": ["(: cnet_isa_fefcf0e099 (IsA billy goat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "billy button is a kind of flower", "pln": ["(: cnet_isa_53abc7aca1 (IsA billy_button flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "billyo is a kind of large indefinite quantity", "pln": ["(: cnet_isa_9a98f41a10 (IsA billyo large_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bilocation is a kind of location", "pln": ["(: cnet_isa_44cb2153bc (IsA bilocation location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bilocular capsule is a kind of capsule", "pln": ["(: cnet_isa_5053ecea5e (IsA bilocular_capsule capsule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biloxi is a kind of siouan", "pln": ["(: cnet_isa_929490d058 (IsA biloxi siouan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biltong is a kind of jerky", "pln": ["(: cnet_isa_12fc56dc00 (IsA biltong jerky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bimbo is a kind of girl", "pln": ["(: cnet_isa_e7da4530d7 (IsA bimbo girl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bimester is a kind of time period", "pln": ["(: cnet_isa_2e33e9c94b (IsA bimester time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bimetal is a kind of material", "pln": ["(: cnet_isa_55bbc5e583 (IsA bimetal material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bimetallic strip is a kind of electrical device", "pln": ["(: cnet_isa_89906e70a4 (IsA bimetallic_strip electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bimetallism is a kind of standard", "pln": ["(: cnet_isa_500ce787c9 (IsA bimetallism standard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bimetallist is a kind of monetarist", "pln": ["(: cnet_isa_da3d2aaf65 (IsA bimetallist monetarist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bimillenary is a kind of anniversary", "pln": ["(: cnet_isa_5ba3ba1b26 (IsA bimillenary anniversary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bimillennium is a kind of time period", "pln": ["(: cnet_isa_5f6b792106 (IsA bimillennium time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bimonthly is a kind of sery", "pln": ["(: cnet_isa_037db2a1f6 (IsA bimonthly sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bin is a kind of container", "pln": ["(: cnet_isa_b1687d69ca (IsA bin container) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bin is a kind of containerful", "pln": ["(: cnet_isa_f78cfd5cea (IsA bin containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bin and bag is a kind of both container", "pln": ["(: cnet_isa_c013dba6fb (IsA bin_and_bag both_container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bin liner is a kind of plastic bag", "pln": ["(: cnet_isa_c0ff678dae (IsA bin_liner plastic_bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "binary code is a kind of code", "pln": ["(: cnet_isa_6306ad2b94 (IsA binary_code code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "binary compound is a kind of compound", "pln": ["(: cnet_isa_5a32d37791 (IsA binary_compound compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "binary digit is a kind of digit", "pln": ["(: cnet_isa_e9caefdc95 (IsA binary_digit digit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "binary file is a kind of computer file", "pln": ["(: cnet_isa_9f17b81814 (IsA binary_file computer_file) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "binary notation is a kind of mathematical notation", "pln": ["(: cnet_isa_d77a505694 (IsA binary_notation mathematical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "binary numeration system is a kind of positional notation", "pln": ["(: cnet_isa_a5e5e1134c (IsA binary_numeration_system positional_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "binary program is a kind of program", "pln": ["(: cnet_isa_3dfee62892 (IsA binary_program program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "binary safe is a kind of safe", "pln": ["(: cnet_isa_79fa934630 (IsA binary_safe safe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "binary star is a kind of star", "pln": ["(: cnet_isa_98da11d260 (IsA binary_star star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bind is a kind of hindrance", "pln": ["(: cnet_isa_cdf96fcff2 (IsA bind hindrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "binder s board is a kind of cardboard", "pln": ["(: cnet_isa_da10bcfa24 (IsA binder_s_board cardboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "binder is a kind of harvester", "pln": ["(: cnet_isa_3a4c3e17ad (IsA binder harvester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "binder is a kind of ligament", "pln": ["(: cnet_isa_bf9eb5b705 (IsA binder ligament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "binder is a kind of protective covering", "pln": ["(: cnet_isa_34da545110 (IsA binder protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "binder is a kind of adhesive material", "pln": ["(: cnet_isa_683f17f540 (IsA binder adhesive_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bindery is a kind of workshop", "pln": ["(: cnet_isa_070cf116ce (IsA bindery workshop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "binding is a kind of protective covering", "pln": ["(: cnet_isa_3e036181ac (IsA binding protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "binding is a kind of sewing", "pln": ["(: cnet_isa_da7bebf847 (IsA binding sewing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "binding is a kind of attraction", "pln": ["(: cnet_isa_697538bd6a (IsA binding attraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "binding energy is a kind of energy", "pln": ["(: cnet_isa_fd64680b3b (IsA binding_energy energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bindweed is a kind of vine", "pln": ["(: cnet_isa_3d7c359ec3 (IsA bindweed vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "binet simon scale is a kind of intelligence test", "pln": ["(: cnet_isa_a6aa2b0a7e (IsA binet_simon_scale intelligence_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bing cherry is a kind of sweet cherry", "pln": ["(: cnet_isa_64561a0ec3 (IsA bing_cherry sweet_cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "binnacle is a kind of housing", "pln": ["(: cnet_isa_59a05d5167 (IsA binnacle housing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "binocular is a kind of optical instrument", "pln": ["(: cnet_isa_60e7204f42 (IsA binocular optical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "binocular microscope is a kind of light microscope", "pln": ["(: cnet_isa_cadedc7a41 (IsA binocular_microscope light_microscope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "binocular vision is a kind of sight", "pln": ["(: cnet_isa_9658c02198 (IsA binocular_vision sight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "binomial is a kind of quantity", "pln": ["(: cnet_isa_04a77d4b9b (IsA binomial quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "binomial distribution is a kind of distribution", "pln": ["(: cnet_isa_2d5a87e101 (IsA binomial_distribution distribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "binomial theorem is a kind of theorem", "pln": ["(: cnet_isa_a267b95e46 (IsA binomial_theorem theorem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "binturong is a kind of civet", "pln": ["(: cnet_isa_23b3211d0d (IsA binturong civet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bioassay is a kind of assay", "pln": ["(: cnet_isa_3faa1f2490 (IsA bioassay assay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "biocatalyst is a kind of catalyst", "pln": ["(: cnet_isa_16e01e6d32 (IsA biocatalyst catalyst) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biochemical mechanism is a kind of mechanism", "pln": ["(: cnet_isa_ca1c6692e2 (IsA biochemical_mechanism mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biochemist is a kind of chemist", "pln": ["(: cnet_isa_7bc8b22cdc (IsA biochemist chemist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biochemistry is a kind of organic chemistry", "pln": ["(: cnet_isa_a8a0a617f0 (IsA biochemistry organic_chemistry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "biochip is a kind of chip", "pln": ["(: cnet_isa_8d5c3df64c (IsA biochip chip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bioclimatology is a kind of climatology", "pln": ["(: cnet_isa_87d14feec8 (IsA bioclimatology climatology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biodegradable pollution is a kind of pollution", "pln": ["(: cnet_isa_0ea6b97f8c (IsA biodegradable_pollution pollution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biodiesel is a kind of fuel", "pln": ["(: cnet_isa_e532a0c7ee (IsA biodiesel fuel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biodiversity is a kind of diverseness", "pln": ["(: cnet_isa_669993fd53 (IsA biodiversity diverseness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bioelectricity is a kind of organic phenomenon", "pln": ["(: cnet_isa_997ce21e19 (IsA bioelectricity organic_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bioethic is a kind of ethic", "pln": ["(: cnet_isa_ef9cd60852 (IsA bioethic ethic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biofeedback is a kind of training program", "pln": ["(: cnet_isa_6e7164b4e7 (IsA biofeedback training_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biogenesis is a kind of generation", "pln": ["(: cnet_isa_2329a3078d (IsA biogenesis generation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "biogeographical region is a kind of region", "pln": ["(: cnet_isa_0bf79be008 (IsA biogeographical_region region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biogeography is a kind of biology", "pln": ["(: cnet_isa_e8c0f6dbf5 (IsA biogeography biology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biographer is a kind of writer", "pln": ["(: cnet_isa_a00a648d2d (IsA biographer writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biography is a kind of history", "pln": ["(: cnet_isa_3a1768f084 (IsA biography history) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biohazard is a kind of health hazard", "pln": ["(: cnet_isa_36f25c667a (IsA biohazard health_hazard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biohazard suit is a kind of protective garment", "pln": ["(: cnet_isa_65d234f543 (IsA biohazard_suit protective_garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biological agent is a kind of agent", "pln": ["(: cnet_isa_70d1c5842c (IsA biological_agent agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biological clock is a kind of mechanism", "pln": ["(: cnet_isa_ac0d0240ba (IsA biological_clock mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biological defense is a kind of defense", "pln": ["(: cnet_isa_56ec97e62c (IsA biological_defense defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biological group is a kind of group", "pln": ["(: cnet_isa_a9f29294e6 (IsA biological_group group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biological research is a kind of scientific research", "pln": ["(: cnet_isa_6de7a84577 (IsA biological_research scientific_research) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biological time is a kind of time", "pln": ["(: cnet_isa_f53421d0ca (IsA biological_time time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biological warfare is a kind of war", "pln": ["(: cnet_isa_bd06e90819 (IsA biological_warfare war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biological warfare defense is a kind of defense", "pln": ["(: cnet_isa_a57cc15f97 (IsA biological_warfare_defense defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "biologism is a kind of practice", "pln": ["(: cnet_isa_eb709bc94e (IsA biologism practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biologist is a kind of scientist", "pln": ["(: cnet_isa_ca0eca3e3a (IsA biologist scientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biology is a kind of science", "pln": ["(: cnet_isa_b3c9cc5b70 (IsA biology science) (STV 1.0 0.9763))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biology is a kind of life science", "pln": ["(: cnet_isa_09bd323eb9 (IsA biology life_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biology is a kind of life", "pln": ["(: cnet_isa_922968db4a (IsA biology life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biology department is a kind of academic department", "pln": ["(: cnet_isa_1145b6e462 (IsA biology_department academic_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biology lab is a kind of lab", "pln": ["(: cnet_isa_e949c79865 (IsA biology_lab lab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bioluminescence is a kind of luminescence", "pln": ["(: cnet_isa_ba7ec82214 (IsA bioluminescence luminescence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biomass is a kind of mass", "pln": ["(: cnet_isa_e60bc3d067 (IsA biomass mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biomass is a kind of fuel", "pln": ["(: cnet_isa_f392ea4b5d (IsA biomass fuel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "biome is a kind of community", "pln": ["(: cnet_isa_da1e701bf7 (IsA biome community) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biomedical science is a kind of life science", "pln": ["(: cnet_isa_3134314140 (IsA biomedical_science life_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "biomedicine is a kind of medicine", "pln": ["(: cnet_isa_97a8480bca (IsA biomedicine medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "bionics is a kind of engineering", "pln": ["(: cnet_isa_8b0aafe414 (IsA bionics engineering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biometric identification is a kind of identification", "pln": ["(: cnet_isa_ce3c22ed55 (IsA biometric_identification identification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biometric is a kind of life science", "pln": ["(: cnet_isa_ea74fca6dd (IsA biometric life_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biometric is a kind of statistic", "pln": ["(: cnet_isa_f5bd5dc7dd (IsA biometric statistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bionic is a kind of engineering", "pln": ["(: cnet_isa_020d8c000a (IsA bionic engineering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biont is a kind of living thing", "pln": ["(: cnet_isa_9af8afad2f (IsA biont living_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "biophysicist is a kind of physicist", "pln": ["(: cnet_isa_ce0b82ab13 (IsA biophysicist physicist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biophysic is a kind of physic", "pln": ["(: cnet_isa_8b38f4f550 (IsA biophysic physic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "biopiracy is a kind of larceny", "pln": ["(: cnet_isa_a9471f2ad0 (IsA biopiracy larceny) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biopsy is a kind of diagnostic test", "pln": ["(: cnet_isa_d84adb8a49 (IsA biopsy diagnostic_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bioremediation is a kind of treatment", "pln": ["(: cnet_isa_7ce4478fb7 (IsA bioremediation treatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bioremediation is a kind of biotechnology", "pln": ["(: cnet_isa_00b2d9a41e (IsA bioremediation biotechnology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biosafety is a kind of safety", "pln": ["(: cnet_isa_dc6a7cf86a (IsA biosafety safety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biosafety level is a kind of grade", "pln": ["(: cnet_isa_1eb458652c (IsA biosafety_level grade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biosafety level 1 is a kind of biosafety level", "pln": ["(: cnet_isa_a4e0615d69 (IsA biosafety_level_1 biosafety_level) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biosafety level 2 is a kind of biosafety level", "pln": ["(: cnet_isa_a1118e4aee (IsA biosafety_level_2 biosafety_level) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biosafety level 3 is a kind of biosafety level", "pln": ["(: cnet_isa_bcc89e1dec (IsA biosafety_level_3 biosafety_level) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biosafety level 4 is a kind of biosafety level", "pln": ["(: cnet_isa_5487ac7fb9 (IsA biosafety_level_4 biosafety_level) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bioscope is a kind of cinema", "pln": ["(: cnet_isa_c914ffb45b (IsA bioscope cinema) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bioscope is a kind of movie projector", "pln": ["(: cnet_isa_78bbae3d2a (IsA bioscope movie_projector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biosphere is a kind of region", "pln": ["(: cnet_isa_d57635cdb1 (IsA biosphere region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biosynthesis is a kind of synthesis", "pln": ["(: cnet_isa_28ff0dbc5a (IsA biosynthesis synthesis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biosystematic is a kind of systematic", "pln": ["(: cnet_isa_7379d02326 (IsA biosystematic systematic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biota is a kind of collection", "pln": ["(: cnet_isa_33fc7d5478 (IsA biota collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biotechnology is a kind of engineering", "pln": ["(: cnet_isa_5ea0b75530 (IsA biotechnology engineering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biotechnology is a kind of molecular biology", "pln": ["(: cnet_isa_96b29b161e (IsA biotechnology molecular_biology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bioterrorism is a kind of terrorism", "pln": ["(: cnet_isa_aa6493bf3b (IsA bioterrorism terrorism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "biotin is a kind of b complex vitamin", "pln": ["(: cnet_isa_a2ccc4c08a (IsA biotin b_complex_vitamin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biotite is a kind of mica", "pln": ["(: cnet_isa_ec33a18f84 (IsA biotite mica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biotype is a kind of genotype", "pln": ["(: cnet_isa_3d16d34b71 (IsA biotype genotype) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bioweapon is a kind of weapon of mass destruction", "pln": ["(: cnet_isa_fc79a44173 (IsA bioweapon weapon_of_mass_destruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biped is a kind of two legged", "pln": ["(: cnet_isa_f734e9155d (IsA biped two_legged) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biped is a kind of two legged animal", "pln": ["(: cnet_isa_d478455fdf (IsA biped two_legged_animal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biped is a kind of animal", "pln": ["(: cnet_isa_edfb3ffed2 (IsA biped animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bipedalism is a kind of bodily property", "pln": ["(: cnet_isa_3ef6b50022 (IsA bipedalism bodily_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bipinnate leaf is a kind of pinnate leaf", "pln": ["(: cnet_isa_01e42826e8 (IsA bipinnate_leaf pinnate_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biplane is a kind of airplane", "pln": ["(: cnet_isa_25dc05693c (IsA biplane airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biplane flying fish is a kind of flying fish", "pln": ["(: cnet_isa_34739083b5 (IsA biplane_flying_fish flying_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bipolar disorder is a kind of affective spectrum disorder", "pln": ["(: cnet_isa_fe2bd2904f (IsA bipolar_disorder affective_spectrum_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bipolar disorder is a kind of affective disorder", "pln": ["(: cnet_isa_097bb42580 (IsA bipolar_disorder affective_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biprism is a kind of optical device", "pln": ["(: cnet_isa_c1bff62b55 (IsA biprism optical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biquadrate is a kind of number", "pln": ["(: cnet_isa_24b1c157c4 (IsA biquadrate number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biquadratic is a kind of polynomial", "pln": ["(: cnet_isa_4c842ee4bb (IsA biquadratic polynomial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biquadratic equation is a kind of equation", "pln": ["(: cnet_isa_33769e560b (IsA biquadratic_equation equation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birch is a kind of switch", "pln": ["(: cnet_isa_c9b5b3dff4 (IsA birch switch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birch is a kind of tree", "pln": ["(: cnet_isa_ec8355f0c4 (IsA birch tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birch is a kind of wood", "pln": ["(: cnet_isa_dbe565f75b (IsA birch wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birch beer is a kind of soft drink", "pln": ["(: cnet_isa_6edf86fabb (IsA birch_beer soft_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birch leaf miner is a kind of sawfly", "pln": ["(: cnet_isa_b0115af6fa (IsA birch_leaf_miner sawfly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birchbark canoe is a kind of canoe", "pln": ["(: cnet_isa_5fcc6ff18c (IsA birchbark_canoe canoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bird s eye bush is a kind of shrub", "pln": ["(: cnet_isa_faeced543e (IsA bird_s_eye_bush shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bird s eye maple is a kind of maple", "pln": ["(: cnet_isa_6ea61d98df (IsA bird_s_eye_maple maple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bird s eye view is a kind of position", "pln": ["(: cnet_isa_c9328591ff (IsA bird_s_eye_view position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bird s foot is a kind of animal foot", "pln": ["(: cnet_isa_54ed081723 (IsA bird_s_foot animal_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bird s foot fern is a kind of cliff brake", "pln": ["(: cnet_isa_b83f3abf59 (IsA bird_s_foot_fern cliff_brake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bird s foot trefoil is a kind of herb", "pln": ["(: cnet_isa_0653369937 (IsA bird_s_foot_trefoil herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bird s foot trefoil is a kind of subshrub", "pln": ["(: cnet_isa_0a21deb0ca (IsA bird_s_foot_trefoil subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bird s foot violet is a kind of violet", "pln": ["(: cnet_isa_750b40c110 (IsA bird_s_foot_violet violet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bird s nest is a kind of nest", "pln": ["(: cnet_isa_f68bebd856 (IsA bird_s_nest nest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bird s nest fern is a kind of fern", "pln": ["(: cnet_isa_d8f2847573 (IsA bird_s_nest_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bird s nest fungus is a kind of fungus", "pln": ["(: cnet_isa_1508621090 (IsA bird_s_nest_fungus fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bird is a kind of vertebrate", "pln": ["(: cnet_isa_467a191e69 (IsA bird vertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bird is a kind of meat", "pln": ["(: cnet_isa_9d40c97c76 (IsA bird meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bird cannot fly is a kind of flightless bird", "pln": ["(: cnet_isa_86f35ee71c (IsA bird_cannot_fly flightless_bird) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bird cherry is a kind of wild cherry", "pln": ["(: cnet_isa_b28e9485a1 (IsA bird_cherry wild_cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bird dog is a kind of sporting dog", "pln": ["(: cnet_isa_6c081dff5d (IsA bird_dog sporting_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bird family is a kind of family", "pln": ["(: cnet_isa_b79e1c1935 (IsA bird_family family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bird fancier is a kind of fancier", "pln": ["(: cnet_isa_5d1968f36a (IsA bird_fancier fancier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bird feeder is a kind of device", "pln": ["(: cnet_isa_129dbc47f5 (IsA bird_feeder device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bird food is a kind of feed", "pln": ["(: cnet_isa_12c986412c (IsA bird_food feed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bird genus is a kind of genus", "pln": ["(: cnet_isa_c9ec47f796 (IsA bird_genus genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bird in hand is a kind of worth two in bush", "pln": ["(: cnet_isa_865f2fbe29 (IsA bird_in_hand worth_two_in_bush) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bird louse is a kind of insect", "pln": ["(: cnet_isa_3ebd3d2cae (IsA bird_louse insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bird of paradise is a kind of oscine", "pln": ["(: cnet_isa_dbe62ad6ab (IsA bird_of_paradise oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bird of paradise is a kind of flowering shrub", "pln": ["(: cnet_isa_895a3920af (IsA bird_of_paradise flowering_shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bird of paradise is a kind of herb", "pln": ["(: cnet_isa_6d6f03d9a5 (IsA bird_of_paradise herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bird of passage is a kind of bird", "pln": ["(: cnet_isa_62f269115a (IsA bird_of_passage bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bird of prey is a kind of bird", "pln": ["(: cnet_isa_850d780667 (IsA bird_of_prey bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bird pepper is a kind of capsicum", "pln": ["(: cnet_isa_5505ab3443 (IsA bird_pepper capsicum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bird shot is a kind of shot", "pln": ["(: cnet_isa_9e4682db02 (IsA bird_shot shot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bird watcher is a kind of amateur", "pln": ["(: cnet_isa_cbb07dea2b (IsA bird_watcher amateur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birdbath is a kind of basin", "pln": ["(: cnet_isa_7b8270cce9 (IsA birdbath basin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birdcage is a kind of cage", "pln": ["(: cnet_isa_ff8246e5bd (IsA birdcage cage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birdcage mask is a kind of catcher s mask", "pln": ["(: cnet_isa_7b87bf9d2d (IsA birdcage_mask catcher_s_mask) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birdcall is a kind of acoustic device", "pln": ["(: cnet_isa_3ab6f32ee9 (IsA birdcall acoustic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birdcall is a kind of animal communication", "pln": ["(: cnet_isa_07032ec9bd (IsA birdcall animal_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birdhouse is a kind of shelter", "pln": ["(: cnet_isa_c7f44b01c5 (IsA birdhouse shelter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birdie is a kind of score", "pln": ["(: cnet_isa_3478563e33 (IsA birdie score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birdlime is a kind of adhesive material", "pln": ["(: cnet_isa_be52cb5336 (IsA birdlime adhesive_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birdnesting is a kind of hunt", "pln": ["(: cnet_isa_dae93ec7b6 (IsA birdnesting hunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bird is a kind of eagle", "pln": ["(: cnet_isa_59e92087e7 (IsA bird eagle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bird is a kind of not mammal", "pln": ["(: cnet_isa_5cc841fcab (IsA bird not_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bird and reptile is a kind of vertebrate", "pln": ["(: cnet_isa_536f88c912 (IsA bird_and_reptile vertebrate) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biretta is a kind of cap", "pln": ["(: cnet_isa_b16f8d064d (IsA biretta cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biriani is a kind of dish", "pln": ["(: cnet_isa_9a6c2e4171 (IsA biriani dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "birling is a kind of spin", "pln": ["(: cnet_isa_07d35fe438 (IsA birling spin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birr is a kind of ethiopian monetary unit", "pln": ["(: cnet_isa_3143dd10df (IsA birr ethiopian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birth is a kind of change", "pln": ["(: cnet_isa_e59c4f4a0c (IsA birth change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birth is a kind of person", "pln": ["(: cnet_isa_345360beaa (IsA birth person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birth is a kind of beginning", "pln": ["(: cnet_isa_8b8a29f7ea (IsA birth beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birth canal is a kind of passage", "pln": ["(: cnet_isa_97101b0d72 (IsA birth_canal passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "birth certificate is a kind of certificate", "pln": ["(: cnet_isa_14ee9342ca (IsA birth_certificate certificate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birth control is a kind of planning", "pln": ["(: cnet_isa_fd6420ac9b (IsA birth_control planning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birth control campaigner is a kind of reformer", "pln": ["(: cnet_isa_f99f40cd0b (IsA birth_control_campaigner reformer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birth defect is a kind of anomaly", "pln": ["(: cnet_isa_fdb214d04b (IsA birth_defect anomaly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birth defect is a kind of defect", "pln": ["(: cnet_isa_388a68ced9 (IsA birth_defect defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birth pang is a kind of pang", "pln": ["(: cnet_isa_10511c1dea (IsA birth_pang pang) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "birth trauma is a kind of injury", "pln": ["(: cnet_isa_b4d7a4e526 (IsA birth_trauma injury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birth trauma is a kind of trauma", "pln": ["(: cnet_isa_f5ca83fd18 (IsA birth_trauma trauma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birthday is a kind of anniversary", "pln": ["(: cnet_isa_bc72a2f4d6 (IsA birthday anniversary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birthday is a kind of date", "pln": ["(: cnet_isa_b852dc7a2d (IsA birthday date) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birthday cake is a kind of cake", "pln": ["(: cnet_isa_09ceb30c18 (IsA birthday_cake cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birthday card is a kind of greeting card", "pln": ["(: cnet_isa_0880c2516e (IsA birthday_card greeting_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birthday party is a kind of party", "pln": ["(: cnet_isa_62444671c2 (IsA birthday_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birthday present is a kind of present", "pln": ["(: cnet_isa_76e19577a5 (IsA birthday_present present) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birthmark is a kind of blemish", "pln": ["(: cnet_isa_be12ceb8da (IsA birthmark blemish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birthplace is a kind of beginning", "pln": ["(: cnet_isa_96ec486731 (IsA birthplace beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birthplace is a kind of topographic point", "pln": ["(: cnet_isa_245ae82fc1 (IsA birthplace topographic_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birthrate is a kind of rate", "pln": ["(: cnet_isa_30245aee7a (IsA birthrate rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "birthright is a kind of inheritance", "pln": ["(: cnet_isa_9feb049b26 (IsA birthright inheritance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "birthwort is a kind of vine", "pln": ["(: cnet_isa_053c2f1cd4 (IsA birthwort vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bisayan is a kind of filipino", "pln": ["(: cnet_isa_aa9974a893 (IsA bisayan filipino) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biscuit is a kind of quick bread", "pln": ["(: cnet_isa_f5f4876a38 (IsA biscuit quick_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biscutella is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_70a6291176 (IsA biscutella dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bise is a kind of north wind", "pln": ["(: cnet_isa_7888712a34 (IsA bise north_wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bisection is a kind of division", "pln": ["(: cnet_isa_8d1712e0ee (IsA bisection division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biserial correlation coefficient is a kind of correlation coefficient", "pln": ["(: cnet_isa_9684bae58d (IsA biserial_correlation_coefficient correlation_coefficient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bisexual is a kind of sensualist", "pln": ["(: cnet_isa_d48fc0497e (IsA bisexual sensualist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bisexuality is a kind of sexual orientation", "pln": ["(: cnet_isa_cc21f42c8f (IsA bisexuality sexual_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bisexuality is a kind of sexual activity", "pln": ["(: cnet_isa_863767b594 (IsA bisexuality sexual_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bisexual is a kind of equal opportunity lover", "pln": ["(: cnet_isa_44cec8cc9d (IsA bisexual equal_opportunity_lover) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bishop is a kind of chessman", "pln": ["(: cnet_isa_341b8ef305 (IsA bishop chessman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bishop is a kind of mulled wine", "pln": ["(: cnet_isa_78bd0710c0 (IsA bishop mulled_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bishop is a kind of priest", "pln": ["(: cnet_isa_a83271b39c (IsA bishop priest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bishop pine is a kind of pinon", "pln": ["(: cnet_isa_650f3e6eef (IsA bishop_pine pinon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bishopry is a kind of position", "pln": ["(: cnet_isa_e08b3ac550 (IsA bishopry position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bismuth is a kind of metallic element", "pln": ["(: cnet_isa_0e29fe0902 (IsA bismuth metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bison is a kind of bovid", "pln": ["(: cnet_isa_9dba349a27 (IsA bison bovid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bisque is a kind of soup", "pln": ["(: cnet_isa_61cf420f48 (IsA bisque soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bister is a kind of pigment", "pln": ["(: cnet_isa_be3503ad3d (IsA bister pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bistro is a kind of restaurant", "pln": ["(: cnet_isa_de980c7822 (IsA bistro restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bit is a kind of cutting implement", "pln": ["(: cnet_isa_318e64d3e1 (IsA bit cutting_implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bit is a kind of part", "pln": ["(: cnet_isa_2aaf8f5b66 (IsA bit part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bit is a kind of stable gear", "pln": ["(: cnet_isa_613375b212 (IsA bit stable_gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bit is a kind of fragment", "pln": ["(: cnet_isa_f536182e82 (IsA bit fragment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bit is a kind of unit of measurement", "pln": ["(: cnet_isa_cab92f950d (IsA bit unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bit field is a kind of field", "pln": ["(: cnet_isa_63262a62ac (IsA bit_field field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bit part is a kind of character", "pln": ["(: cnet_isa_bdde1a6207 (IsA bit_part character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bitartrate is a kind of tartrate", "pln": ["(: cnet_isa_5756086063 (IsA bitartrate tartrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bitch is a kind of canine", "pln": ["(: cnet_isa_b5cd69a8b2 (IsA bitch canine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bitch is a kind of difficulty", "pln": ["(: cnet_isa_89dff88e82 (IsA bitch difficulty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bitchery is a kind of aggression", "pln": ["(: cnet_isa_e17d38c5b3 (IsA bitchery aggression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bite is a kind of eating", "pln": ["(: cnet_isa_a27c1e454b (IsA bite eating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bite is a kind of subtraction", "pln": ["(: cnet_isa_0e7e38dc1e (IsA bite subtraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bite is a kind of success", "pln": ["(: cnet_isa_936eec6558 (IsA bite success) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bite is a kind of meal", "pln": ["(: cnet_isa_a14cf02fff (IsA bite meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bite is a kind of wound", "pln": ["(: cnet_isa_080fbf942b (IsA bite wound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bite plate is a kind of dental appliance", "pln": ["(: cnet_isa_f46d51fff0 (IsA bite_plate dental_appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biter is a kind of person", "pln": ["(: cnet_isa_508d2fa336 (IsA biter person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bitewing is a kind of x ray film", "pln": ["(: cnet_isa_c3577c036f (IsA bitewing x_ray_film) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bitis is a kind of reptile genus", "pln": ["(: cnet_isa_8528cc635d (IsA bitis reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bitmap is a kind of ikon", "pln": ["(: cnet_isa_6a1285f7ab (IsA bitmap ikon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bitok is a kind of dish", "pln": ["(: cnet_isa_6161208273 (IsA bitok dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bit per inch is a kind of concentration", "pln": ["(: cnet_isa_76d0733239 (IsA bit_per_inch concentration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bit per second is a kind of rate", "pln": ["(: cnet_isa_de6cb33f17 (IsA bit_per_second rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bitt pin is a kind of pin", "pln": ["(: cnet_isa_ec0e7a5ac3 (IsA bitt_pin pin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bittacidae is a kind of family", "pln": ["(: cnet_isa_bb90bbc52c (IsA bittacidae family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bitter is a kind of taste", "pln": ["(: cnet_isa_16fc0d67ac (IsA bitter taste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bitter is a kind of ale", "pln": ["(: cnet_isa_0844c8e230 (IsA bitter ale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bitter almond is a kind of almond tree", "pln": ["(: cnet_isa_b953fbc03f (IsA bitter_almond almond_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bitter almond oil is a kind of essential oil", "pln": ["(: cnet_isa_e20a34774d (IsA bitter_almond_oil essential_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bitter almond tree is a kind of tree", "pln": ["(: cnet_isa_cc2835b489 (IsA bitter_almond_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bitter betch is a kind of vetch", "pln": ["(: cnet_isa_bda5efee61 (IsA bitter_betch vetch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bitter cassava is a kind of cassava", "pln": ["(: cnet_isa_79dfaf6db1 (IsA bitter_cassava cassava) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bitter chocolate is a kind of chocolate", "pln": ["(: cnet_isa_da1895160d (IsA bitter_chocolate chocolate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bitter dock is a kind of dock", "pln": ["(: cnet_isa_cb9017b523 (IsA bitter_dock dock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bitter end is a kind of end", "pln": ["(: cnet_isa_df3fa62a41 (IsA bitter_end end) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bitter end is a kind of extremity", "pln": ["(: cnet_isa_8b8a61058e (IsA bitter_end extremity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bitter lemon is a kind of soft drink", "pln": ["(: cnet_isa_171475ec6b (IsA bitter_lemon soft_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bitter orange is a kind of orange", "pln": ["(: cnet_isa_91faa6289f (IsA bitter_orange orange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bitter pea is a kind of shrub", "pln": ["(: cnet_isa_5c1a4a7423 (IsA bitter_pea shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bitter principle is a kind of compound", "pln": ["(: cnet_isa_09f28fc085 (IsA bitter_principle compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bittercress is a kind of cress", "pln": ["(: cnet_isa_7045dc8908 (IsA bittercress cress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bittern is a kind of heron", "pln": ["(: cnet_isa_17e1029f15 (IsA bittern heron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bitterness is a kind of disagreeableness", "pln": ["(: cnet_isa_6f7b7cf0d6 (IsA bitterness disagreeableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bitterness is a kind of taste property", "pln": ["(: cnet_isa_e00cdbda72 (IsA bitterness taste_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "bitters is a kind of liquor", "pln": ["(: cnet_isa_aeb118345b (IsA bitters liquor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bitternut is a kind of hickory", "pln": ["(: cnet_isa_034dd9bb62 (IsA bitternut hickory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bitterroot is a kind of wildflower", "pln": ["(: cnet_isa_f43ce5b8ac (IsA bitterroot wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bitter is a kind of liquor", "pln": ["(: cnet_isa_8080afefb7 (IsA bitter liquor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bittersweet is a kind of nightshade", "pln": ["(: cnet_isa_f83906e916 (IsA bittersweet nightshade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bittersweet is a kind of vine", "pln": ["(: cnet_isa_8c2ebced78 (IsA bittersweet vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bittersweet chocolate is a kind of chocolate", "pln": ["(: cnet_isa_5df3b849ae (IsA bittersweet_chocolate chocolate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bitterwood tree is a kind of tree", "pln": ["(: cnet_isa_6eeaa13acc (IsA bitterwood_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bitthead is a kind of end", "pln": ["(: cnet_isa_f8ba87a577 (IsA bitthead end) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bitumastic is a kind of coating", "pln": ["(: cnet_isa_6ebad556d2 (IsA bitumastic coating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bitumen is a kind of hydrocarbon", "pln": ["(: cnet_isa_dbe5120dd7 (IsA bitumen hydrocarbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bituminous coal is a kind of coal", "pln": ["(: cnet_isa_5f3d11586a (IsA bituminous_coal coal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biu mandara is a kind of chad", "pln": ["(: cnet_isa_d0cdb4abd6 (IsA biu_mandara chad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bivalve is a kind of mollusk", "pln": ["(: cnet_isa_a201c8d709 (IsA bivalve mollusk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bivalvia is a kind of class", "pln": ["(: cnet_isa_7c1484cbb1 (IsA bivalvia class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "biweekly is a kind of sery", "pln": ["(: cnet_isa_84e0d42a04 (IsA biweekly sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blaberus is a kind of arthropod genus", "pln": ["(: cnet_isa_4609c75e56 (IsA blaberus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black is a kind of color", "pln": ["(: cnet_isa_4ea3b634d5 (IsA black color) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black is a kind of clothing", "pln": ["(: cnet_isa_40c80c7759 (IsA black clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "black is a kind of achromatic color", "pln": ["(: cnet_isa_5139b22106 (IsA black achromatic_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black is a kind of man", "pln": ["(: cnet_isa_9b5366710f (IsA black man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black african is a kind of african", "pln": ["(: cnet_isa_bb3b25021b (IsA black_african african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black and gold garden spider is a kind of spider", "pln": ["(: cnet_isa_8a2bfcb10d (IsA black_and_gold_garden_spider spider) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black and tan is a kind of recruit", "pln": ["(: cnet_isa_71c670e71e (IsA black_and_tan recruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black and tan coonhound is a kind of coonhound", "pln": ["(: cnet_isa_2e906ba7ef (IsA black_and_tan_coonhound coonhound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black and white is a kind of picture", "pln": ["(: cnet_isa_9967a52430 (IsA black_and_white picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black ash is a kind of ash", "pln": ["(: cnet_isa_3ccb26b292 (IsA black_ash ash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black backed gull is a kind of gull", "pln": ["(: cnet_isa_84e5b4fc11 (IsA black_backed_gull gull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black bamboo is a kind of bamboo", "pln": ["(: cnet_isa_160c843756 (IsA black_bamboo bamboo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black bass is a kind of sunfish", "pln": ["(: cnet_isa_939cf7e1bf (IsA black_bass sunfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black bean is a kind of common bean", "pln": ["(: cnet_isa_a52b66ab3f (IsA black_bean common_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black bee is a kind of honeybee", "pln": ["(: cnet_isa_60db4baede (IsA black_bee honeybee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black beech is a kind of southern beech", "pln": ["(: cnet_isa_35606ebfef (IsA black_beech southern_beech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black belt is a kind of badge", "pln": ["(: cnet_isa_dbfb8c6af5 (IsA black_belt badge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black belt is a kind of expert", "pln": ["(: cnet_isa_6cacf4a368 (IsA black_belt expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black bile is a kind of liquid body substance", "pln": ["(: cnet_isa_4b56f70f8c (IsA black_bile liquid_body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black billed cuckoo is a kind of cuckoo", "pln": ["(: cnet_isa_b87a43df99 (IsA black_billed_cuckoo cuckoo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "black birch is a kind of birch", "pln": ["(: cnet_isa_6cec5f6793 (IsA black_birch birch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black body is a kind of natural object", "pln": ["(: cnet_isa_f582b90077 (IsA black_body natural_object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black body radiation is a kind of electromagnetic radiation", "pln": ["(: cnet_isa_00785127d1 (IsA black_body_radiation electromagnetic_radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black box is a kind of recorder", "pln": ["(: cnet_isa_4a8ccdf329 (IsA black_box recorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black bread is a kind of rye bread", "pln": ["(: cnet_isa_95c1425c57 (IsA black_bread rye_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black bream is a kind of sea bream", "pln": ["(: cnet_isa_688fbf6103 (IsA black_bream sea_bream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black bryony is a kind of vine", "pln": ["(: cnet_isa_4d4226545a (IsA black_bryony vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black buffalo is a kind of buffalo fish", "pln": ["(: cnet_isa_0898dffa33 (IsA black_buffalo buffalo_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black calla is a kind of arum", "pln": ["(: cnet_isa_b157f0491a (IsA black_calla arum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black capped chickadee is a kind of chickadee", "pln": ["(: cnet_isa_4596a64774 (IsA black_capped_chickadee chickadee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black caraway is a kind of nigella", "pln": ["(: cnet_isa_d8b701989f (IsA black_caraway nigella) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black carpet beetle is a kind of carpet beetle", "pln": ["(: cnet_isa_7f782507d1 (IsA black_carpet_beetle carpet_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black catechu is a kind of infusion", "pln": ["(: cnet_isa_525c8f4af3 (IsA black_catechu infusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black cherry is a kind of wild cherry", "pln": ["(: cnet_isa_d79d95b341 (IsA black_cherry wild_cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "black cohosh is a kind of bugbane", "pln": ["(: cnet_isa_0548a0d116 (IsA black_cohosh bugbane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black comedy is a kind of comedy", "pln": ["(: cnet_isa_43531f5ee9 (IsA black_comedy comedy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black cottonwood is a kind of cottonwood", "pln": ["(: cnet_isa_fc36b24820 (IsA black_cottonwood cottonwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black crappie is a kind of crappie", "pln": ["(: cnet_isa_aa7f3f437a (IsA black_crappie crappie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black crowned night heron is a kind of night heron", "pln": ["(: cnet_isa_691d2f8fc7 (IsA black_crowned_night_heron night_heron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black currant is a kind of currant", "pln": ["(: cnet_isa_29d84f7458 (IsA black_currant currant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black cypress pine is a kind of cypress pine", "pln": ["(: cnet_isa_a8afecacf2 (IsA black_cypress_pine cypress_pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black death is a kind of bubonic plague", "pln": ["(: cnet_isa_a426abd84f (IsA black_death bubonic_plague) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black disease is a kind of animal disease", "pln": ["(: cnet_isa_313f346892 (IsA black_disease animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black duck is a kind of duck", "pln": ["(: cnet_isa_07060cc6b5 (IsA black_duck duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black economy is a kind of sector", "pln": ["(: cnet_isa_d1df4bebac (IsA black_economy sector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black english is a kind of american english", "pln": ["(: cnet_isa_572462c6c6 (IsA black_english american_english) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black eye is a kind of repute", "pln": ["(: cnet_isa_51913b4a55 (IsA black_eye repute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black eyed pea is a kind of legume", "pln": ["(: cnet_isa_3d92928b35 (IsA black_eyed_pea legume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black eyed susan is a kind of coneflower", "pln": ["(: cnet_isa_57b2f29962 (IsA black_eyed_susan coneflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black eyed susan is a kind of vine", "pln": ["(: cnet_isa_cf712730fb (IsA black_eyed_susan vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black felt cup is a kind of sarcosomataceae", "pln": ["(: cnet_isa_368c1e5dc9 (IsA black_felt_cup sarcosomataceae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black flag is a kind of flag", "pln": ["(: cnet_isa_41ee282d2d (IsA black_flag flag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "black footed albatross is a kind of albatross", "pln": ["(: cnet_isa_7dba148c27 (IsA black_footed_albatross albatross) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "black footed ferret is a kind of musteline mammal", "pln": ["(: cnet_isa_514c9bfc2b (IsA black_footed_ferret musteline_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black fox is a kind of red fox", "pln": ["(: cnet_isa_6976a9769d (IsA black_fox red_fox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black fronted bush shrike is a kind of bush shrike", "pln": ["(: cnet_isa_63f4a8bc96 (IsA black_fronted_bush_shrike bush_shrike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black grama is a kind of grama", "pln": ["(: cnet_isa_72a0da837c (IsA black_grama grama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black grouse is a kind of grouse", "pln": ["(: cnet_isa_ad01896192 (IsA black_grouse grouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black guillemot is a kind of guillemot", "pln": ["(: cnet_isa_7e18694eed (IsA black_guillemot guillemot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black hand is a kind of organized crime", "pln": ["(: cnet_isa_f2945a1eb7 (IsA black_hand organized_crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black haw is a kind of shrub", "pln": ["(: cnet_isa_34cb986dd9 (IsA black_haw shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black headed snake is a kind of colubrid snake", "pln": ["(: cnet_isa_05f6e68a3f (IsA black_headed_snake colubrid_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black hole is a kind of object of great mass", "pln": ["(: cnet_isa_89abc96d4a (IsA black_hole object_of_great_mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black hole is a kind of region", "pln": ["(: cnet_isa_724926d829 (IsA black_hole region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black horehound is a kind of herb", "pln": ["(: cnet_isa_e1afe85b6e (IsA black_horehound herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black huckleberry is a kind of huckleberry", "pln": ["(: cnet_isa_3166edcb3a (IsA black_huckleberry huckleberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black humor is a kind of expressive style", "pln": ["(: cnet_isa_832e1ccb93 (IsA black_humor expressive_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black ice is a kind of ice", "pln": ["(: cnet_isa_9fe14c22d6 (IsA black_ice ice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black kite is a kind of kite", "pln": ["(: cnet_isa_94de055a16 (IsA black_kite kite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black knot is a kind of plant disease", "pln": ["(: cnet_isa_06c84cd89c (IsA black_knot plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black locust is a kind of locust tree", "pln": ["(: cnet_isa_15adf16fe9 (IsA black_locust locust_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black locust is a kind of wood", "pln": ["(: cnet_isa_c2f355863d (IsA black_locust wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black maire is a kind of olive tree", "pln": ["(: cnet_isa_7986a7879e (IsA black_maire olive_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black mallee is a kind of mallee", "pln": ["(: cnet_isa_3d11682ae4 (IsA black_mallee mallee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "black mamba is a kind of mamba", "pln": ["(: cnet_isa_e21146b40b (IsA black_mamba mamba) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black mangrove is a kind of blackwood", "pln": ["(: cnet_isa_fef05acada (IsA black_mangrove blackwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black mangrove is a kind of tree", "pln": ["(: cnet_isa_24b2410ebd (IsA black_mangrove tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black market is a kind of market", "pln": ["(: cnet_isa_44f8048205 (IsA black_market market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "black marketeer is a kind of supplier", "pln": ["(: cnet_isa_4be602743d (IsA black_marketeer supplier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black marlin is a kind of marlin", "pln": ["(: cnet_isa_2f7cff592b (IsA black_marlin marlin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black medick is a kind of medic", "pln": ["(: cnet_isa_27a488aab4 (IsA black_medick medic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black morel is a kind of morel", "pln": ["(: cnet_isa_d301c619c4 (IsA black_morel morel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black mulberry is a kind of mulberry", "pln": ["(: cnet_isa_b5d420a139 (IsA black_mulberry mulberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black music is a kind of music genre", "pln": ["(: cnet_isa_22b7edba32 (IsA black_music music_genre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black muslim is a kind of militant", "pln": ["(: cnet_isa_c63ad1d085 (IsA black_muslim militant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black mustard is a kind of mustard", "pln": ["(: cnet_isa_341038e965 (IsA black_mustard mustard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black necked cobra is a kind of cobra", "pln": ["(: cnet_isa_24d1ad5efd (IsA black_necked_cobra cobra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black necked grebe is a kind of grebe", "pln": ["(: cnet_isa_2aa7801fa0 (IsA black_necked_grebe grebe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black necked stilt is a kind of stilt", "pln": ["(: cnet_isa_6a1e0dcd06 (IsA black_necked_stilt stilt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black nightshade is a kind of nightshade", "pln": ["(: cnet_isa_fbdb0ca742 (IsA black_nightshade nightshade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black oak is a kind of oak", "pln": ["(: cnet_isa_29b320d127 (IsA black_oak oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black olive is a kind of olive", "pln": ["(: cnet_isa_c0fb942ebc (IsA black_olive olive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black opal is a kind of opal", "pln": ["(: cnet_isa_515a4c09ae (IsA black_opal opal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "black operation is a kind of covert operation", "pln": ["(: cnet_isa_4158e97074 (IsA black_operation covert_operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black panther is a kind of militant", "pln": ["(: cnet_isa_f2b5f5e960 (IsA black_panther militant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black panther is a kind of party", "pln": ["(: cnet_isa_24c08956b7 (IsA black_panther party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black pea is a kind of vetchling", "pln": ["(: cnet_isa_330438e048 (IsA black_pea vetchling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black pepper is a kind of pepper", "pln": ["(: cnet_isa_10be267e2d (IsA black_pepper pepper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black pine is a kind of pine", "pln": ["(: cnet_isa_66c2a7fe95 (IsA black_pine pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black poplar is a kind of poplar", "pln": ["(: cnet_isa_6e629c321c (IsA black_poplar poplar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black raspberry is a kind of raspberry", "pln": ["(: cnet_isa_4946e205ff (IsA black_raspberry raspberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black rat is a kind of rat", "pln": ["(: cnet_isa_1a590e8167 (IsA black_rat rat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "black rat snake is a kind of rat snake", "pln": ["(: cnet_isa_fabf5ae782 (IsA black_rat_snake rat_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black rhinocero is a kind of rhinocero", "pln": ["(: cnet_isa_1d6abc6e1d (IsA black_rhinocero rhinocero) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black root rot fungus is a kind of fungus", "pln": ["(: cnet_isa_65f751c9fb (IsA black_root_rot_fungus fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black rot is a kind of plant disease", "pln": ["(: cnet_isa_bc00c5023c (IsA black_rot plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black sage is a kind of blue curl", "pln": ["(: cnet_isa_1a926d65da (IsA black_sage blue_curl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black salsify is a kind of herb", "pln": ["(: cnet_isa_ebad579e55 (IsA black_salsify herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black sea bass is a kind of sea bass", "pln": ["(: cnet_isa_34fbd77370 (IsA black_sea_bass sea_bass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black sheep is a kind of sheep", "pln": ["(: cnet_isa_36eaa5c896 (IsA black_sheep sheep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black spleenwort is a kind of spleenwort", "pln": ["(: cnet_isa_4108142a42 (IsA black_spleenwort spleenwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black spot is a kind of plant disease", "pln": ["(: cnet_isa_e9b297cc25 (IsA black_spot plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black spruce is a kind of spruce", "pln": ["(: cnet_isa_e48691adc9 (IsA black_spruce spruce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black squirrel is a kind of tree squirrel", "pln": ["(: cnet_isa_7a2755a993 (IsA black_squirrel tree_squirrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black stem spleenwort is a kind of spleenwort", "pln": ["(: cnet_isa_29306292c4 (IsA black_stem_spleenwort spleenwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black stork is a kind of stork", "pln": ["(: cnet_isa_b611bbdb6f (IsA black_stork stork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black swan is a kind of swan", "pln": ["(: cnet_isa_ec79061fd4 (IsA black_swan swan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "black tailed deer is a kind of mule deer", "pln": ["(: cnet_isa_08bded7144 (IsA black_tailed_deer mule_deer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black tea is a kind of tea", "pln": ["(: cnet_isa_ff45c4f524 (IsA black_tea tea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black tie is a kind of bow tie", "pln": ["(: cnet_isa_17f9509d23 (IsA black_tie bow_tie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black turnstone is a kind of turnstone", "pln": ["(: cnet_isa_f66d1f682b (IsA black_turnstone turnstone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black vulture is a kind of new world vulture", "pln": ["(: cnet_isa_dff6f4ae77 (IsA black_vulture new_world_vulture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black vulture is a kind of old world vulture", "pln": ["(: cnet_isa_ae4d3a4dc8 (IsA black_vulture old_world_vulture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black walnut is a kind of walnut", "pln": ["(: cnet_isa_cd86e220c3 (IsA black_walnut walnut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black wattle is a kind of wattle", "pln": ["(: cnet_isa_b9338eb541 (IsA black_wattle wattle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "black widow is a kind of spider", "pln": ["(: cnet_isa_7173c7c3d0 (IsA black_widow spider) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "black winged stilt is a kind of stilt", "pln": ["(: cnet_isa_bdbe59e686 (IsA black_winged_stilt stilt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackberry is a kind of berry", "pln": ["(: cnet_isa_466475e781 (IsA blackberry berry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackberry is a kind of drupelet", "pln": ["(: cnet_isa_e79c831b9b (IsA blackberry drupelet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackberry is a kind of bramble bush", "pln": ["(: cnet_isa_a317d1eb4e (IsA blackberry bramble_bush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackberry lily is a kind of iridaceous plant", "pln": ["(: cnet_isa_d92bfd8ef0 (IsA blackberry_lily iridaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackbird is a kind of bird", "pln": ["(: cnet_isa_8967c82c84 (IsA blackbird bird) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackbird is a kind of thrush", "pln": ["(: cnet_isa_b011d04103 (IsA blackbird thrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackboard is a kind of board", "pln": ["(: cnet_isa_a02f018d81 (IsA blackboard board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackboard eraser is a kind of eraser", "pln": ["(: cnet_isa_d4745d1daa (IsA blackboard_eraser eraser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackbuck is a kind of antelope", "pln": ["(: cnet_isa_96184905e0 (IsA blackbuck antelope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackburn is a kind of new world warbler", "pln": ["(: cnet_isa_6b7977de5e (IsA blackburn new_world_warbler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackcap is a kind of old world warbler", "pln": ["(: cnet_isa_c91b25586d (IsA blackcap old_world_warbler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackcock is a kind of black grouse", "pln": ["(: cnet_isa_3c102ae0dd (IsA blackcock black_grouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackening is a kind of change of color", "pln": ["(: cnet_isa_46b28a42df (IsA blackening change_of_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackface is a kind of makeup", "pln": ["(: cnet_isa_6f8a1fa3d0 (IsA blackface makeup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackfish is a kind of salmon", "pln": ["(: cnet_isa_99d2924873 (IsA blackfish salmon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackfly is a kind of aphid", "pln": ["(: cnet_isa_99f0fb5e33 (IsA blackfly aphid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackfly is a kind of gnat", "pln": ["(: cnet_isa_8ea02a61d1 (IsA blackfly gnat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackfoot is a kind of algonquian", "pln": ["(: cnet_isa_dfab1d2d57 (IsA blackfoot algonquian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackfoot is a kind of algonquin", "pln": ["(: cnet_isa_2dec24aa46 (IsA blackfoot algonquin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackfoot is a kind of buffalo indian", "pln": ["(: cnet_isa_6aeb39f398 (IsA blackfoot buffalo_indian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackfoot daisy is a kind of wildflower", "pln": ["(: cnet_isa_aa3c1ca9bb (IsA blackfoot_daisy wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackhead is a kind of blemish", "pln": ["(: cnet_isa_6bf55c06d9 (IsA blackhead blemish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackheart is a kind of heart cherry", "pln": ["(: cnet_isa_6b49e2fbc6 (IsA blackheart heart_cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackheart is a kind of plant disease", "pln": ["(: cnet_isa_800ee5b553 (IsA blackheart plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackjack is a kind of card game", "pln": ["(: cnet_isa_e7bb57554b (IsA blackjack card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackjack is a kind of bludgeon", "pln": ["(: cnet_isa_ec62a31b37 (IsA blackjack bludgeon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackjack oak is a kind of scrub oak", "pln": ["(: cnet_isa_ffd0eac38f (IsA blackjack_oak scrub_oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blacklist is a kind of list", "pln": ["(: cnet_isa_e0ae8f8f2b (IsA blacklist list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackmail is a kind of extortion", "pln": ["(: cnet_isa_9e340fb30f (IsA blackmail extortion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackmailer is a kind of criminal", "pln": ["(: cnet_isa_c352703b14 (IsA blackmailer criminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackmouth bass is a kind of sea bass", "pln": ["(: cnet_isa_5ec73750f1 (IsA blackmouth_bass sea_bass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackout is a kind of dark", "pln": ["(: cnet_isa_c7dc70be91 (IsA blackout dark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackout is a kind of unconsciousness", "pln": ["(: cnet_isa_6852e2647f (IsA blackout unconsciousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackout is a kind of power outage", "pln": ["(: cnet_isa_b07a9f50b9 (IsA blackout power_outage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blackout is a kind of pause", "pln": ["(: cnet_isa_a84aa09d43 (IsA blackout pause) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackpoll is a kind of new world warbler", "pln": ["(: cnet_isa_b794c6bce5 (IsA blackpoll new_world_warbler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackshirt is a kind of fascist", "pln": ["(: cnet_isa_fe305e7660 (IsA blackshirt fascist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blacksmith is a kind of smith", "pln": ["(: cnet_isa_3a52833d2d (IsA blacksmith smith) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blacksnake is a kind of racer", "pln": ["(: cnet_isa_a411705607 (IsA blacksnake racer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blacktail jackrabbit is a kind of jackrabbit", "pln": ["(: cnet_isa_6a7c48deb3 (IsA blacktail_jackrabbit jackrabbit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blacktail prairie dog is a kind of prairie dog", "pln": ["(: cnet_isa_3a0f25db2b (IsA blacktail_prairie_dog prairie_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackthorn is a kind of hawthorn", "pln": ["(: cnet_isa_bfcdc063af (IsA blackthorn hawthorn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackthorn is a kind of shrub", "pln": ["(: cnet_isa_dd9ac6e4ff (IsA blackthorn shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blacktip shark is a kind of requiem shark", "pln": ["(: cnet_isa_13fcd11585 (IsA blacktip_shark requiem_shark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blacktop is a kind of paving material", "pln": ["(: cnet_isa_154209cadd (IsA blacktop paving_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackwall hitch is a kind of hitch", "pln": ["(: cnet_isa_7864933a00 (IsA blackwall_hitch hitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackwash is a kind of lotion", "pln": ["(: cnet_isa_c326dbced1 (IsA blackwash lotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackwash is a kind of wash", "pln": ["(: cnet_isa_bee53beead (IsA blackwash wash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackwater is a kind of disease", "pln": ["(: cnet_isa_77a0bf3391 (IsA blackwater disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackwater fever is a kind of malaria", "pln": ["(: cnet_isa_8f75c1c93f (IsA blackwater_fever malaria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blackwood is a kind of tree", "pln": ["(: cnet_isa_3508feea2b (IsA blackwood tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blackwood is a kind of wood", "pln": ["(: cnet_isa_7609746a4a (IsA blackwood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bladder is a kind of bag", "pln": ["(: cnet_isa_9d7689142e (IsA bladder bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bladder is a kind of sac", "pln": ["(: cnet_isa_192a29dc10 (IsA bladder sac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bladder campion is a kind of silene", "pln": ["(: cnet_isa_484c14e39f (IsA bladder_campion silene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bladder disorder is a kind of disorder", "pln": ["(: cnet_isa_d37f5934db (IsA bladder_disorder disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bladder fern is a kind of fern", "pln": ["(: cnet_isa_e59d82b799 (IsA bladder_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bladder senna is a kind of shrub", "pln": ["(: cnet_isa_e54c82db68 (IsA bladder_senna shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bladder sphincter is a kind of sphincter", "pln": ["(: cnet_isa_35dd19f406 (IsA bladder_sphincter sphincter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bladder stone is a kind of calculus", "pln": ["(: cnet_isa_aa1fb8590e (IsA bladder_stone calculus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bladder worm is a kind of larva", "pln": ["(: cnet_isa_e94982475f (IsA bladder_worm larva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bladderpod is a kind of herb", "pln": ["(: cnet_isa_8091e70181 (IsA bladderpod herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bladderwort is a kind of carnivorous plant", "pln": ["(: cnet_isa_01b7eeacf0 (IsA bladderwort carnivorous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bladderwrack is a kind of rockweed", "pln": ["(: cnet_isa_2719e10fdb (IsA bladderwrack rockweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blade is a kind of cutting implement", "pln": ["(: cnet_isa_40dfbc7ad7 (IsA blade cutting_implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blade is a kind of rotating mechanism", "pln": ["(: cnet_isa_2f0aa6d776 (IsA blade rotating_mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blade is a kind of runner", "pln": ["(: cnet_isa_700fdf9a3d (IsA blade runner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blade is a kind of structure", "pln": ["(: cnet_isa_babbd5f9ba (IsA blade structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blade is a kind of cut of beef", "pln": ["(: cnet_isa_22a42c90c8 (IsA blade cut_of_beef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blade is a kind of ribbon", "pln": ["(: cnet_isa_d744d0be7f (IsA blade ribbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blade is a kind of young person", "pln": ["(: cnet_isa_33a88cd10d (IsA blade young_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blade is a kind of leaf", "pln": ["(: cnet_isa_ed83daf2ff (IsA blade leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blade roast is a kind of roast", "pln": ["(: cnet_isa_5312f91368 (IsA blade_roast roast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blade runner is a kind of famous science fiction movie", "pln": ["(: cnet_isa_c37b17c7f4 (IsA blade_runner famous_science_fiction_movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blah is a kind of boredom", "pln": ["(: cnet_isa_6636938599 (IsA blah boredom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blaia zimondal is a kind of artificial language", "pln": ["(: cnet_isa_c8cb1691c2 (IsA blaia_zimondal artificial_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blain is a kind of sore", "pln": ["(: cnet_isa_838569752b (IsA blain sore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blame is a kind of reproach", "pln": ["(: cnet_isa_2f14976fa1 (IsA blame reproach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blame game is a kind of accusation", "pln": ["(: cnet_isa_1a9a9abd2b (IsA blame_game accusation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blamelessness is a kind of innocence", "pln": ["(: cnet_isa_572164dee1 (IsA blamelessness innocence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blameworthiness is a kind of guilt", "pln": ["(: cnet_isa_315abf7cba (IsA blameworthiness guilt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blanc is a kind of white sauce", "pln": ["(: cnet_isa_3a5c33a519 (IsA blanc white_sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blanching is a kind of cooking", "pln": ["(: cnet_isa_0fa3515bc8 (IsA blanching cooking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blancmange is a kind of dessert", "pln": ["(: cnet_isa_e72c806b1b (IsA blancmange dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bland diet is a kind of diet", "pln": ["(: cnet_isa_300e441bd9 (IsA bland_diet diet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blandfordia is a kind of liliid monocot genus", "pln": ["(: cnet_isa_756f9d7403 (IsA blandfordia liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blandishment is a kind of enticement", "pln": ["(: cnet_isa_c70dc9a861 (IsA blandishment enticement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blandishment is a kind of flattery", "pln": ["(: cnet_isa_069a248c26 (IsA blandishment flattery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blandness is a kind of unappetizingness", "pln": ["(: cnet_isa_4740f5fb7a (IsA blandness unappetizingness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blandness is a kind of unemotionality", "pln": ["(: cnet_isa_96d3b85ae3 (IsA blandness unemotionality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blank is a kind of cartridge", "pln": ["(: cnet_isa_e2f1309585 (IsA blank cartridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blank is a kind of sheet", "pln": ["(: cnet_isa_bcea259b3b (IsA blank sheet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blank check is a kind of check", "pln": ["(: cnet_isa_381e2b9fc8 (IsA blank_check check) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blank endorsement is a kind of endorsement", "pln": ["(: cnet_isa_6e69fc6983 (IsA blank_endorsement endorsement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blank verse is a kind of poem", "pln": ["(: cnet_isa_df066845bd (IsA blank_verse poem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blanket is a kind of bedclothe", "pln": ["(: cnet_isa_072b4fc563 (IsA blanket bedclothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blanket is a kind of layer", "pln": ["(: cnet_isa_4dbe425cc1 (IsA blanket layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blanket is a kind of covering", "pln": ["(: cnet_isa_2efce4a18b (IsA blanket covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blanket flower is a kind of gaillardia", "pln": ["(: cnet_isa_2d1d96b2cd (IsA blanket_flower gaillardia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blanket stitch is a kind of embroidery stitch", "pln": ["(: cnet_isa_548262ec30 (IsA blanket_stitch embroidery_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blankness is a kind of emptiness", "pln": ["(: cnet_isa_1abfc5e841 (IsA blankness emptiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blanquillo is a kind of percoid fish", "pln": ["(: cnet_isa_4fd2a8c578 (IsA blanquillo percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blare is a kind of noise", "pln": ["(: cnet_isa_27df685644 (IsA blare noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blarina is a kind of mammal genus", "pln": ["(: cnet_isa_1e98976eb1 (IsA blarina mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blarney is a kind of flattery", "pln": ["(: cnet_isa_788a977994 (IsA blarney flattery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blasphemer is a kind of nonreligious person", "pln": ["(: cnet_isa_460f886ac2 (IsA blasphemer nonreligious_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blasphemy is a kind of disrespect", "pln": ["(: cnet_isa_6bda656db1 (IsA blasphemy disrespect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blasphemy is a kind of profanity", "pln": ["(: cnet_isa_e25f9f7af0 (IsA blasphemy profanity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blast is a kind of fly", "pln": ["(: cnet_isa_4096762cbf (IsA blast fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blast is a kind of explosion", "pln": ["(: cnet_isa_d35954f7ed (IsA blast explosion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blast furnace is a kind of furnace", "pln": ["(: cnet_isa_fe9521290f (IsA blast_furnace furnace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blast trauma is a kind of injury", "pln": ["(: cnet_isa_48ff3ea16f (IsA blast_trauma injury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blastema is a kind of cell", "pln": ["(: cnet_isa_2a837ce980 (IsA blastema cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blaster is a kind of workman", "pln": ["(: cnet_isa_b5e662d3f8 (IsA blaster workman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blasting cap is a kind of detonator", "pln": ["(: cnet_isa_c2d71856c6 (IsA blasting_cap detonator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blasting gelatin is a kind of explosive mixture", "pln": ["(: cnet_isa_dac402d18e (IsA blasting_gelatin explosive_mixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blastocladia is a kind of fungus genus", "pln": ["(: cnet_isa_b50e696217 (IsA blastocladia fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blastocladiale is a kind of fungus order", "pln": ["(: cnet_isa_11cd7aa139 (IsA blastocladiale fungus_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blastocoel is a kind of cavity", "pln": ["(: cnet_isa_7ac738b0ac (IsA blastocoel cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blastocyte is a kind of embryonic cell", "pln": ["(: cnet_isa_1fbd183799 (IsA blastocyte embryonic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blastoderm is a kind of layer", "pln": ["(: cnet_isa_ba3988a77b (IsA blastoderm layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blastodermic vessicle is a kind of blastosphere", "pln": ["(: cnet_isa_4e5f04421f (IsA blastodermic_vessicle blastosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blastodiaceae is a kind of fungus family", "pln": ["(: cnet_isa_214613fceb (IsA blastodiaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blastoff is a kind of rocket firing", "pln": ["(: cnet_isa_82f2b128e7 (IsA blastoff rocket_firing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blastogenesis is a kind of theory", "pln": ["(: cnet_isa_3d39b61797 (IsA blastogenesis theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blastogenesis is a kind of asexual reproduction", "pln": ["(: cnet_isa_7c6f45cce6 (IsA blastogenesis asexual_reproduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blastoma is a kind of tumor", "pln": ["(: cnet_isa_746c1fa182 (IsA blastoma tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blastomere is a kind of cell", "pln": ["(: cnet_isa_8d75301902 (IsA blastomere cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blastomyce is a kind of fungus genus", "pln": ["(: cnet_isa_c8e71885f8 (IsA blastomyce fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blastomycete is a kind of fungus", "pln": ["(: cnet_isa_3a3cce44cf (IsA blastomycete fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blastomycosis is a kind of fungal infection", "pln": ["(: cnet_isa_3ff2a817bf (IsA blastomycosis fungal_infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blastopore is a kind of orifice", "pln": ["(: cnet_isa_3cfdfa50bf (IsA blastopore orifice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blastosphere is a kind of embryo", "pln": ["(: cnet_isa_2ab2701a46 (IsA blastosphere embryo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blatancy is a kind of obviousness", "pln": ["(: cnet_isa_802a13c059 (IsA blatancy obviousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blatancy is a kind of offensiveness", "pln": ["(: cnet_isa_b1f54b4794 (IsA blatancy offensiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blather is a kind of gibberish", "pln": ["(: cnet_isa_e387c2a2e3 (IsA blather gibberish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blatta is a kind of arthropod genus", "pln": ["(: cnet_isa_2d6cbd5531 (IsA blatta arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blattella is a kind of arthropod genus", "pln": ["(: cnet_isa_2eda9b0b0a (IsA blattella arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blattidae is a kind of arthropod family", "pln": ["(: cnet_isa_467dc38e49 (IsA blattidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blattodea is a kind of animal order", "pln": ["(: cnet_isa_bab779307e (IsA blattodea animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blaxploitation is a kind of exploitation", "pln": ["(: cnet_isa_909820520a (IsA blaxploitation exploitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blaze is a kind of marking", "pln": ["(: cnet_isa_23069f7faa (IsA blaze marking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blaze is a kind of fire", "pln": ["(: cnet_isa_880bc7b1f0 (IsA blaze fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blazer is a kind of jacket", "pln": ["(: cnet_isa_3cd1975bbf (IsA blazer jacket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blazing star is a kind of flower", "pln": ["(: cnet_isa_9d512c5fe5 (IsA blazing_star flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blazing star is a kind of wildflower", "pln": ["(: cnet_isa_8e6d579b4b (IsA blazing_star wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bleach is a kind of whitening", "pln": ["(: cnet_isa_2350351511 (IsA bleach whitening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bleach is a kind of white", "pln": ["(: cnet_isa_d98e9767d2 (IsA bleach white) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bleach liquor is a kind of solution", "pln": ["(: cnet_isa_8a0b5e1681 (IsA bleach_liquor solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bleacher is a kind of worker", "pln": ["(: cnet_isa_0747d2aa46 (IsA bleacher worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bleacher is a kind of stand", "pln": ["(: cnet_isa_37094725a9 (IsA bleacher stand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bleaching agent is a kind of agent", "pln": ["(: cnet_isa_7d0a46ffc7 (IsA bleaching_agent agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bleaching clay is a kind of mud", "pln": ["(: cnet_isa_298334bf7c (IsA bleaching_clay mud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bleaching powder is a kind of bleaching agent", "pln": ["(: cnet_isa_9fb2ced89e (IsA bleaching_powder bleaching_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bleakness is a kind of gloom", "pln": ["(: cnet_isa_216867e979 (IsA bleakness gloom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bleat is a kind of cry", "pln": ["(: cnet_isa_d105b81496 (IsA bleat cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blechnaceae is a kind of fern family", "pln": ["(: cnet_isa_88fa6bcc0e (IsA blechnaceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blechnum is a kind of fern genus", "pln": ["(: cnet_isa_c486ad82e3 (IsA blechnum fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bleeding is a kind of injury", "pln": ["(: cnet_isa_433fecc1a3 (IsA bleeding injury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bleeding heart is a kind of sympathizer", "pln": ["(: cnet_isa_c89be2074f (IsA bleeding_heart sympathizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bleeding heart is a kind of herb", "pln": ["(: cnet_isa_255624e25d (IsA bleeding_heart herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bleeding tooth is a kind of neritid", "pln": ["(: cnet_isa_3fd095a5ac (IsA bleeding_tooth neritid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blemish is a kind of appearance", "pln": ["(: cnet_isa_d77f5b53fa (IsA blemish appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blend is a kind of combination", "pln": ["(: cnet_isa_cf8ded2382 (IsA blend combination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blend is a kind of neologism", "pln": ["(: cnet_isa_7afc6a1f52 (IsA blend neologism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blend is a kind of mix", "pln": ["(: cnet_isa_ef4d65e3aa (IsA blend mix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blended whiskey is a kind of whiskey", "pln": ["(: cnet_isa_40b3f82aee (IsA blended_whiskey whiskey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blender is a kind of mixer", "pln": ["(: cnet_isa_0a6634c6a1 (IsA blender mixer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blenheim spaniel is a kind of english toy spaniel", "pln": ["(: cnet_isa_8f07b833fa (IsA blenheim_spaniel english_toy_spaniel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blenniidae is a kind of fish family", "pln": ["(: cnet_isa_2cbef4af13 (IsA blenniidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blennioid fish is a kind of percoid fish", "pln": ["(: cnet_isa_6c44f8c4d4 (IsA blennioid_fish percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blennioidea is a kind of animal order", "pln": ["(: cnet_isa_07c320a18f (IsA blennioidea animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blennius is a kind of fish genus", "pln": ["(: cnet_isa_b0c84cf9d4 (IsA blennius fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blenny is a kind of blennioid fish", "pln": ["(: cnet_isa_bc19a4dcbe (IsA blenny blennioid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blepharism is a kind of twitch", "pln": ["(: cnet_isa_5a44f3ebaa (IsA blepharism twitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blepharitis is a kind of inflammation", "pln": ["(: cnet_isa_a1bc9c4d71 (IsA blepharitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blepharospasm is a kind of spasm", "pln": ["(: cnet_isa_e7be58ac1e (IsA blepharospasm spasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "blewits is a kind of agaric", "pln": ["(: cnet_isa_925d363d4c (IsA blewits agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blephilia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_d1d7d66a48 (IsA blephilia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blessed event is a kind of live birth", "pln": ["(: cnet_isa_906a899e15 (IsA blessed_event live_birth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blessed thistle is a kind of thistle", "pln": ["(: cnet_isa_2740b03fc0 (IsA blessed_thistle thistle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blessed trinity is a kind of god almighty", "pln": ["(: cnet_isa_61ae48d619 (IsA blessed_trinity god_almighty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blessedness is a kind of happiness", "pln": ["(: cnet_isa_7b1b127d79 (IsA blessedness happiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blessing is a kind of prayer", "pln": ["(: cnet_isa_c960dee8cb (IsA blessing prayer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blessing is a kind of support", "pln": ["(: cnet_isa_58f27c762d (IsA blessing support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blessing is a kind of good fortune", "pln": ["(: cnet_isa_749b5ec186 (IsA blessing good_fortune) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bletia is a kind of orchid", "pln": ["(: cnet_isa_ce6ac73ecc (IsA bletia orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bletilla is a kind of monocot genus", "pln": ["(: cnet_isa_f8971c7d75 (IsA bletilla monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bletilla striata is a kind of orchid", "pln": ["(: cnet_isa_f4de652d14 (IsA bletilla_striata orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bleu is a kind of cheese", "pln": ["(: cnet_isa_528e871e2c (IsA bleu cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bleu cheese dressing is a kind of dressing", "pln": ["(: cnet_isa_015b315be1 (IsA bleu_cheese_dressing dressing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blewit is a kind of agaric", "pln": ["(: cnet_isa_640fcbd6e1 (IsA blewit agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blighia is a kind of dicot genus", "pln": ["(: cnet_isa_67f8a63565 (IsA blighia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blight is a kind of devastation", "pln": ["(: cnet_isa_014bb6b1f9 (IsA blight devastation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blight is a kind of plant disease", "pln": ["(: cnet_isa_d9c6ba7f08 (IsA blight plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blight canker is a kind of fire blight", "pln": ["(: cnet_isa_a49148dfb2 (IsA blight_canker fire_blight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blighty is a kind of united kingdom", "pln": ["(: cnet_isa_210baaba5f (IsA blighty united_kingdom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blighty wound is a kind of wound", "pln": ["(: cnet_isa_a2b844b1c3 (IsA blighty_wound wound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blimp is a kind of airship", "pln": ["(: cnet_isa_abecbad174 (IsA blimp airship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blimp is a kind of reactionary", "pln": ["(: cnet_isa_4b3956fc81 (IsA blimp reactionary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blind is a kind of protective covering", "pln": ["(: cnet_isa_998c593289 (IsA blind protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blind is a kind of screen", "pln": ["(: cnet_isa_2a8584a627 (IsA blind screen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blind is a kind of people", "pln": ["(: cnet_isa_745063ade6 (IsA blind people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blind alley is a kind of course", "pln": ["(: cnet_isa_3ac6d6af17 (IsA blind_alley course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blind alley is a kind of thoroughfare", "pln": ["(: cnet_isa_34df5f8754 (IsA blind_alley thoroughfare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blind corner is a kind of corner", "pln": ["(: cnet_isa_2a83ae6e8f (IsA blind_corner corner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blind curve is a kind of bend", "pln": ["(: cnet_isa_007d720190 (IsA blind_curve bend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blind date is a kind of date", "pln": ["(: cnet_isa_bee65e1ae2 (IsA blind_date date) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blind flying is a kind of flight", "pln": ["(: cnet_isa_7b4e3744a0 (IsA blind_flying flight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blind person is a kind of visually impaired person", "pln": ["(: cnet_isa_84fddc52ce (IsA blind_person visually_impaired_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blind side is a kind of side", "pln": ["(: cnet_isa_df87df6e90 (IsA blind_side side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blind snake is a kind of snake", "pln": ["(: cnet_isa_178a4b35d3 (IsA blind_snake snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blind spot is a kind of point", "pln": ["(: cnet_isa_8f42b0b8ec (IsA blind_spot point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blind spot is a kind of topic", "pln": ["(: cnet_isa_1f99c3f22e (IsA blind_spot topic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blind stitching is a kind of sewing", "pln": ["(: cnet_isa_cbf1fad45c (IsA blind_stitching sewing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blind trust is a kind of trust", "pln": ["(: cnet_isa_d65cd39baf (IsA blind_trust trust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blindfold is a kind of cloth covering", "pln": ["(: cnet_isa_5c792f09a9 (IsA blindfold cloth_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blindman s bluff is a kind of child s game", "pln": ["(: cnet_isa_a747fb1f19 (IsA blindman_s_bluff child_s_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blindness is a kind of visual impairment", "pln": ["(: cnet_isa_526d74c5ad (IsA blindness visual_impairment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blindworm is a kind of anguid lizard", "pln": ["(: cnet_isa_a89bc0cd31 (IsA blindworm anguid_lizard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bling bling is a kind of jewelry", "pln": ["(: cnet_isa_b338e39b50 (IsA bling_bling jewelry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blini is a kind of pancake", "pln": ["(: cnet_isa_61bdb99345 (IsA blini pancake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blink is a kind of reflex", "pln": ["(: cnet_isa_959b091068 (IsA blink reflex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blink of eye is a kind of moment", "pln": ["(: cnet_isa_fff517f0c9 (IsA blink_of_eye moment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blinker is a kind of light", "pln": ["(: cnet_isa_cbed904c04 (IsA blinker light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blinker is a kind of visual signal", "pln": ["(: cnet_isa_ec923f5e91 (IsA blinker visual_signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blink is a kind of indian lettuce", "pln": ["(: cnet_isa_a4451a1359 (IsA blink indian_lettuce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blintz is a kind of pancake", "pln": ["(: cnet_isa_6c96059a34 (IsA blintz pancake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blip is a kind of radar echo", "pln": ["(: cnet_isa_53b8c72e1b (IsA blip radar_echo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blip is a kind of shock", "pln": ["(: cnet_isa_0579636fd5 (IsA blip shock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bliss is a kind of elation", "pln": ["(: cnet_isa_5b6a18efeb (IsA bliss elation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blissus is a kind of arthropod genus", "pln": ["(: cnet_isa_415e69094b (IsA blissus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blister is a kind of plant process", "pln": ["(: cnet_isa_b202d90adb (IsA blister plant_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blister is a kind of vesicle", "pln": ["(: cnet_isa_f96b38a137 (IsA blister vesicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blister is a kind of defect", "pln": ["(: cnet_isa_a607317d36 (IsA blister defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blister beetle is a kind of beetle", "pln": ["(: cnet_isa_6a0a7c44a2 (IsA blister_beetle beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blister blight is a kind of blight", "pln": ["(: cnet_isa_1cfe032e85 (IsA blister_blight blight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blister copper is a kind of copper", "pln": ["(: cnet_isa_166225c4ba (IsA blister_copper copper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blister pack is a kind of packaging", "pln": ["(: cnet_isa_39bf4e2f4f (IsA blister_pack packaging) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blister rust is a kind of rust", "pln": ["(: cnet_isa_3074d8c198 (IsA blister_rust rust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blitz is a kind of attack", "pln": ["(: cnet_isa_9ce5dd4213 (IsA blitz attack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blizzard is a kind of storm", "pln": ["(: cnet_isa_e523b0d1a2 (IsA blizzard storm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bloat is a kind of swelling", "pln": ["(: cnet_isa_78519c4269 (IsA bloat swelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bloater is a kind of herring", "pln": ["(: cnet_isa_add74824a3 (IsA bloater herring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blob is a kind of amorphous shape", "pln": ["(: cnet_isa_170c7f7d21 (IsA blob amorphous_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bloc is a kind of alliance", "pln": ["(: cnet_isa_0bfdbc911d (IsA bloc alliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "block is a kind of cube", "pln": ["(: cnet_isa_6d7c10e09c (IsA block cube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "block is a kind of artifact", "pln": ["(: cnet_isa_cc3223c509 (IsA block artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "block is a kind of housing", "pln": ["(: cnet_isa_0c78d4692b (IsA block housing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "block is a kind of inability", "pln": ["(: cnet_isa_382babf6d5 (IsA block inability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "block is a kind of computer memory unit", "pln": ["(: cnet_isa_1ccca05a28 (IsA block computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "block is a kind of collection", "pln": ["(: cnet_isa_9af8c7fab8 (IsA block collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "block is a kind of area", "pln": ["(: cnet_isa_3574964280 (IsA block area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "block is a kind of solid", "pln": ["(: cnet_isa_f8bb75d3b5 (IsA block solid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "block and tackle is a kind of hoist", "pln": ["(: cnet_isa_1d303436d1 (IsA block_and_tackle hoist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "block diagram is a kind of diagram", "pln": ["(: cnet_isa_2454622d82 (IsA block_diagram diagram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "block grant is a kind of grant", "pln": ["(: cnet_isa_1b618dcd9f (IsA block_grant grant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "block letter is a kind of letter", "pln": ["(: cnet_isa_7a82d8fb7f (IsA block_letter letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "block plane is a kind of plane", "pln": ["(: cnet_isa_74dc5ea4b6 (IsA block_plane plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "block vote is a kind of vote", "pln": ["(: cnet_isa_6c63397e25 (IsA block_vote vote) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blockade is a kind of obstruction", "pln": ["(: cnet_isa_031888867f (IsA blockade obstruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blockade is a kind of military action", "pln": ["(: cnet_isa_4621c3a72e (IsA blockade military_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blockade runner is a kind of ship", "pln": ["(: cnet_isa_fde23f9910 (IsA blockade_runner ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blockage is a kind of obstruction", "pln": ["(: cnet_isa_f043a57cb9 (IsA blockage obstruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blockbuster is a kind of hit", "pln": ["(: cnet_isa_80a2cd9731 (IsA blockbuster hit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blockbuster is a kind of general purpose bomb", "pln": ["(: cnet_isa_f2fcc2e362 (IsA blockbuster general_purpose_bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blocker is a kind of medicine", "pln": ["(: cnet_isa_2b9befe6cd (IsA blocker medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blocker is a kind of football player", "pln": ["(: cnet_isa_8ec09ba9e5 (IsA blocker football_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blockhouse is a kind of stronghold", "pln": ["(: cnet_isa_ab38b33983 (IsA blockhouse stronghold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blocking is a kind of obstruction", "pln": ["(: cnet_isa_f0cc8fb95b (IsA blocking obstruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blogger is a kind of person", "pln": ["(: cnet_isa_e23a689e42 (IsA blogger person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blolly is a kind of shrub", "pln": ["(: cnet_isa_cbda0444d3 (IsA blolly shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blond is a kind of person", "pln": ["(: cnet_isa_3e2020e1d9 (IsA blond person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blonde is a kind of chromatic color", "pln": ["(: cnet_isa_d1fac1fbb3 (IsA blonde chromatic_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood is a kind of bodily fluid", "pln": ["(: cnet_isa_b6d65eb0c3 (IsA blood bodily_fluid) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood is a kind of disposition", "pln": ["(: cnet_isa_17323f6638 (IsA blood disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood is a kind of people", "pln": ["(: cnet_isa_248a5ff801 (IsA blood people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood is a kind of liquid body substance", "pln": ["(: cnet_isa_ceb8c7dc70 (IsA blood liquid_body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood agar is a kind of agar", "pln": ["(: cnet_isa_7593b412d5 (IsA blood_agar agar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood bank is a kind of bank", "pln": ["(: cnet_isa_82735aad81 (IsA blood_bank bank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood blister is a kind of blister", "pln": ["(: cnet_isa_76681b9bb9 (IsA blood_blister blister) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood brain barrier is a kind of barrier", "pln": ["(: cnet_isa_371214ffc9 (IsA blood_brain_barrier barrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood brother is a kind of ally", "pln": ["(: cnet_isa_2507e81dd6 (IsA blood_brother ally) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blood brotherhood is a kind of friendship", "pln": ["(: cnet_isa_29baed6505 (IsA blood_brotherhood friendship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood cell is a kind of somatic cell", "pln": ["(: cnet_isa_d71496af9f (IsA blood_cell somatic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood clam is a kind of bivalve", "pln": ["(: cnet_isa_25d41ce323 (IsA blood_clam bivalve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood clot is a kind of blood", "pln": ["(: cnet_isa_e215da4e95 (IsA blood_clot blood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood coagulation is a kind of curdling", "pln": ["(: cnet_isa_5c419f94e1 (IsA blood_coagulation curdling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood count is a kind of count", "pln": ["(: cnet_isa_55777503a6 (IsA blood_count count) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood cup is a kind of discomycete", "pln": ["(: cnet_isa_5df76f9f10 (IsA blood_cup discomycete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood disease is a kind of blood dyscrasia", "pln": ["(: cnet_isa_5c0f870d1f (IsA blood_disease blood_dyscrasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood donor is a kind of donor", "pln": ["(: cnet_isa_ad91aa211f (IsA blood_donor donor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood dyscrasia is a kind of dyscrasia", "pln": ["(: cnet_isa_9bfcf7187e (IsA blood_dyscrasia dyscrasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood extravasation is a kind of bleeding", "pln": ["(: cnet_isa_d40696a66e (IsA blood_extravasation bleeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood extravasation is a kind of extravasation", "pln": ["(: cnet_isa_e7b8c8da1a (IsA blood_extravasation extravasation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood flower is a kind of milkweed", "pln": ["(: cnet_isa_56b6bcd451 (IsA blood_flower milkweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood group is a kind of blood", "pln": ["(: cnet_isa_852448d5d4 (IsA blood_group blood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood lily is a kind of bulbous plant", "pln": ["(: cnet_isa_566c0dea0f (IsA blood_lily bulbous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood meal is a kind of feed", "pln": ["(: cnet_isa_c22888fcd9 (IsA blood_meal feed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood money is a kind of compensation", "pln": ["(: cnet_isa_ac4ee3a454 (IsA blood_money compensation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blood money is a kind of payment", "pln": ["(: cnet_isa_44ce7ebfd6 (IsA blood_money payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood money is a kind of reward", "pln": ["(: cnet_isa_34309a529a (IsA blood_money reward) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blood oxygenation level dependent functional magnetic resonance imaging is a kind of functional magnetic resonance imaging", "pln": ["(: cnet_isa_521848d82e (IsA blood_oxygenation_level_dependent_functional_magnetic_resonance_imaging functional_magnetic_resonance_imaging) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blood plasma is a kind of extracellular fluid", "pln": ["(: cnet_isa_b2f022789a (IsA blood_plasma extracellular_fluid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood poisoning is a kind of blood disease", "pln": ["(: cnet_isa_c52e899bf7 (IsA blood_poisoning blood_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood poisoning is a kind of sepsis", "pln": ["(: cnet_isa_9e6fcd6bc7 (IsA blood_poisoning sepsis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood pressure is a kind of pressure", "pln": ["(: cnet_isa_1502186410 (IsA blood_pressure pressure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood pressure is a kind of vital sign", "pln": ["(: cnet_isa_40bfe9e124 (IsA blood_pressure vital_sign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blood relation is a kind of relative", "pln": ["(: cnet_isa_f693089379 (IsA blood_relation relative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood sausage is a kind of sausage", "pln": ["(: cnet_isa_8985b9c140 (IsA blood_sausage sausage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood spavin is a kind of spavin", "pln": ["(: cnet_isa_67db12aa8a (IsA blood_spavin spavin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood sport is a kind of sport", "pln": ["(: cnet_isa_9580bcea8b (IsA blood_sport sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blood sugar is a kind of glucose", "pln": ["(: cnet_isa_2aa4fdffd2 (IsA blood_sugar glucose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blood test is a kind of biopsy", "pln": ["(: cnet_isa_888f3a24e4 (IsA blood_test biopsy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blood typing is a kind of diagnosis", "pln": ["(: cnet_isa_ef7eea7701 (IsA blood_typing diagnosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blood vessel is a kind of vessel", "pln": ["(: cnet_isa_dc768f0a69 (IsA blood_vessel vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bloodbath is a kind of slaughter", "pln": ["(: cnet_isa_e2bda1804c (IsA bloodbath slaughter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bloodberry is a kind of houseplant", "pln": ["(: cnet_isa_d8240b64ef (IsA bloodberry houseplant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bloodguilt is a kind of guilt", "pln": ["(: cnet_isa_a041b8ba61 (IsA bloodguilt guilt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bloodhound is a kind of hound", "pln": ["(: cnet_isa_bdeab79d9d (IsA bloodhound hound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bloodiness is a kind of physiological state", "pln": ["(: cnet_isa_c802dbca01 (IsA bloodiness physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bloodleaf is a kind of subshrub", "pln": ["(: cnet_isa_d0b0fe1c79 (IsA bloodleaf subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bloodletting is a kind of medical care", "pln": ["(: cnet_isa_417b1cd398 (IsA bloodletting medical_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bloodlust is a kind of desire", "pln": ["(: cnet_isa_45dc24c2f6 (IsA bloodlust desire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bloodmobile is a kind of motor vehicle", "pln": ["(: cnet_isa_1a3d3b205d (IsA bloodmobile motor_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bloodroot is a kind of herb", "pln": ["(: cnet_isa_7e50b728aa (IsA bloodroot herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bloodshed is a kind of murder", "pln": ["(: cnet_isa_40c0fc53f5 (IsA bloodshed murder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bloodstain is a kind of stain", "pln": ["(: cnet_isa_8ae5f2cfe9 (IsA bloodstain stain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bloodstock is a kind of breed", "pln": ["(: cnet_isa_2587f476e8 (IsA bloodstock breed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bloodstone is a kind of chalcedony", "pln": ["(: cnet_isa_97b67c107b (IsA bloodstone chalcedony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bloodstream is a kind of blood", "pln": ["(: cnet_isa_f1ebfd7049 (IsA bloodstream blood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bloodthirstiness is a kind of disposition", "pln": ["(: cnet_isa_9c2e1f04d3 (IsA bloodthirstiness disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bloodwood tree is a kind of tree", "pln": ["(: cnet_isa_e3af9d9faa (IsA bloodwood_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bloodworm is a kind of polychaete", "pln": ["(: cnet_isa_918a488b08 (IsA bloodworm polychaete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bloodwort is a kind of herb", "pln": ["(: cnet_isa_cae2317800 (IsA bloodwort herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bloody mary is a kind of cocktail", "pln": ["(: cnet_isa_2ddca84b17 (IsA bloody_mary cocktail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bloom is a kind of good health", "pln": ["(: cnet_isa_fb774cff13 (IsA bloom good_health) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bloom is a kind of time of life", "pln": ["(: cnet_isa_9347f5c8e6 (IsA bloom time_of_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bloomer is a kind of flower", "pln": ["(: cnet_isa_5c0e107e81 (IsA bloomer flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bloomeria is a kind of liliid monocot genus", "pln": ["(: cnet_isa_b215cdee2d (IsA bloomeria liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blooming is a kind of organic process", "pln": ["(: cnet_isa_8fc310bef8 (IsA blooming organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bloomsbury group is a kind of clique", "pln": ["(: cnet_isa_5486e7b743 (IsA bloomsbury_group clique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blossoming is a kind of growth", "pln": ["(: cnet_isa_1fcb725e4f (IsA blossoming growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blot is a kind of mistake", "pln": ["(: cnet_isa_9bbec53577 (IsA blot mistake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blotch is a kind of smudge", "pln": ["(: cnet_isa_7079893972 (IsA blotch smudge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blotter is a kind of written record", "pln": ["(: cnet_isa_4e5c89b037 (IsA blotter written_record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blotting paper is a kind of paper", "pln": ["(: cnet_isa_9aa3e123e1 (IsA blotting_paper paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blouse is a kind of top", "pln": ["(: cnet_isa_13bcd324f1 (IsA blouse top) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blow is a kind of exhalation", "pln": ["(: cnet_isa_148fb60126 (IsA blow exhalation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blow is a kind of stroke", "pln": ["(: cnet_isa_84486947a8 (IsA blow stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blow gas is a kind of gas", "pln": ["(: cnet_isa_547bfbd422 (IsA blow_gas gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blowback is a kind of misinformation", "pln": ["(: cnet_isa_3899869223 (IsA blowback misinformation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blowback is a kind of explosion", "pln": ["(: cnet_isa_133493a44b (IsA blowback explosion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blower is a kind of device", "pln": ["(: cnet_isa_c601623234 (IsA blower device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blowfish is a kind of saltwater fish", "pln": ["(: cnet_isa_ba8c552c00 (IsA blowfish saltwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blowfly is a kind of fly", "pln": ["(: cnet_isa_3182d4324b (IsA blowfly fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blowgun is a kind of tube", "pln": ["(: cnet_isa_41267da5de (IsA blowgun tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blowhole is a kind of spiracle", "pln": ["(: cnet_isa_2b36a5fd27 (IsA blowhole spiracle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blowing is a kind of processing", "pln": ["(: cnet_isa_78481225c6 (IsA blowing processing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blowout is a kind of malfunction", "pln": ["(: cnet_isa_327044d073 (IsA blowout malfunction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blowtorch is a kind of burner", "pln": ["(: cnet_isa_ee1b7ba571 (IsA blowtorch burner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blowtube is a kind of tube", "pln": ["(: cnet_isa_33042de2ca (IsA blowtube tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blubber is a kind of animal oil", "pln": ["(: cnet_isa_1148c93584 (IsA blubber animal_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blubberer is a kind of weeper", "pln": ["(: cnet_isa_eb60d9237a (IsA blubberer weeper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blucher is a kind of shoe", "pln": ["(: cnet_isa_5d9a481f44 (IsA blucher shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bludgeon is a kind of club", "pln": ["(: cnet_isa_8aea5df79a (IsA bludgeon club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bludgeoner is a kind of attacker", "pln": ["(: cnet_isa_8de34a262f (IsA bludgeoner attacker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue is a kind of color", "pln": ["(: cnet_isa_46a287014c (IsA blue color) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue is a kind of colour", "pln": ["(: cnet_isa_4fdc881c74 (IsA blue colour) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue is a kind of mood", "pln": ["(: cnet_isa_9948331d73 (IsA blue mood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue is a kind of primary color", "pln": ["(: cnet_isa_18e3de1778 (IsA blue primary_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue is a kind of uncommon color for food", "pln": ["(: cnet_isa_e3cd5a8392 (IsA blue uncommon_color_for_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue is a kind of lycaenid", "pln": ["(: cnet_isa_7fd4ba8ce4 (IsA blue lycaenid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue is a kind of clothing", "pln": ["(: cnet_isa_ba747e1f0c (IsA blue clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue is a kind of chromatic color", "pln": ["(: cnet_isa_633fd98b52 (IsA blue chromatic_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue is a kind of organization", "pln": ["(: cnet_isa_f039337eec (IsA blue organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue ash is a kind of ash", "pln": ["(: cnet_isa_e82705c878 (IsA blue_ash ash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue baby is a kind of baby", "pln": ["(: cnet_isa_84f0e47411 (IsA blue_baby baby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue book is a kind of booklet", "pln": ["(: cnet_isa_4b00238213 (IsA blue_book booklet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue book is a kind of directory", "pln": ["(: cnet_isa_aa15a8e391 (IsA blue_book directory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue book is a kind of report", "pln": ["(: cnet_isa_aff2440883 (IsA blue_book report) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue catfish is a kind of channel catfish", "pln": ["(: cnet_isa_0c4cbcff63 (IsA blue_catfish channel_catfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue cheese dressing is a kind of dressing", "pln": ["(: cnet_isa_baa1fd51c1 (IsA blue_cheese_dressing dressing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue chip is a kind of chip", "pln": ["(: cnet_isa_63822420ba (IsA blue_chip chip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blue chip is a kind of common stock", "pln": ["(: cnet_isa_d6bc017d5d (IsA blue_chip common_stock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue cohosh is a kind of shrub", "pln": ["(: cnet_isa_34d5eed68d (IsA blue_cohosh shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue columbine is a kind of columbine", "pln": ["(: cnet_isa_8e640ae74f (IsA blue_columbine columbine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue crab is a kind of swimming crab", "pln": ["(: cnet_isa_7ba82e3285 (IsA blue_crab swimming_crab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue crab is a kind of crab", "pln": ["(: cnet_isa_8313cc8de5 (IsA blue_crab crab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue curl is a kind of subshrub", "pln": ["(: cnet_isa_9ee89ca202 (IsA blue_curl subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue daisy is a kind of flower", "pln": ["(: cnet_isa_ee27c75771 (IsA blue_daisy flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue elder is a kind of elder", "pln": ["(: cnet_isa_15c9e7d680 (IsA blue_elder elder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue eyed african daisy is a kind of flower", "pln": ["(: cnet_isa_7ec7d22251 (IsA blue_eyed_african_daisy flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue eyed grass is a kind of iridaceous plant", "pln": ["(: cnet_isa_077894a5e3 (IsA blue_eyed_grass iridaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue eyed mary is a kind of wildflower", "pln": ["(: cnet_isa_2dc9cf7d60 (IsA blue_eyed_mary wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue false indigo is a kind of wild indigo", "pln": ["(: cnet_isa_db88d4dadb (IsA blue_false_indigo wild_indigo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue flag is a kind of iris", "pln": ["(: cnet_isa_f6071f516d (IsA blue_flag iris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue fleabane is a kind of fleabane", "pln": ["(: cnet_isa_6fbf00d79b (IsA blue_fleabane fleabane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue fox is a kind of arctic fox", "pln": ["(: cnet_isa_212676ecb5 (IsA blue_fox arctic_fox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue goose is a kind of goose", "pln": ["(: cnet_isa_58d04e6ff8 (IsA blue_goose goose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue grama is a kind of grama", "pln": ["(: cnet_isa_2083cfcb9d (IsA blue_grama grama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue gum is a kind of eucalyptus", "pln": ["(: cnet_isa_a7634d58bf (IsA blue_gum eucalyptus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue headed vireo is a kind of vireo", "pln": ["(: cnet_isa_9efbf46aa1 (IsA blue_headed_vireo vireo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blue jasmine is a kind of clematis", "pln": ["(: cnet_isa_ebdc98ab45 (IsA blue_jasmine clematis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue jay is a kind of new world jay", "pln": ["(: cnet_isa_ff217ea636 (IsA blue_jay new_world_jay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue law is a kind of law", "pln": ["(: cnet_isa_df73306573 (IsA blue_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue lotus is a kind of water lily", "pln": ["(: cnet_isa_a6234ad1e1 (IsA blue_lotus water_lily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue marlin is a kind of marlin", "pln": ["(: cnet_isa_e4caa46381 (IsA blue_marlin marlin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue mockingbird is a kind of oscine", "pln": ["(: cnet_isa_c82a107557 (IsA blue_mockingbird oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue mold fungus is a kind of downy mildew", "pln": ["(: cnet_isa_85bf4f092b (IsA blue_mold_fungus downy_mildew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue moon is a kind of long time", "pln": ["(: cnet_isa_4855a3679b (IsA blue_moon long_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue mountain tea is a kind of goldenrod", "pln": ["(: cnet_isa_2a976993e5 (IsA blue_mountain_tea goldenrod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue murder is a kind of cry", "pln": ["(: cnet_isa_d70d1f6e1e (IsA blue_murder cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue note is a kind of note", "pln": ["(: cnet_isa_3a5664a109 (IsA blue_note note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue orchid is a kind of vanda", "pln": ["(: cnet_isa_35b185c3dd (IsA blue_orchid vanda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue pea is a kind of vine", "pln": ["(: cnet_isa_f667b2b0ba (IsA blue_pea vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue peafowl is a kind of peafowl", "pln": ["(: cnet_isa_5e79283c7a (IsA blue_peafowl peafowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blue peter is a kind of code flag", "pln": ["(: cnet_isa_10b21c9c00 (IsA blue_peter code_flag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue pike is a kind of walleye", "pln": ["(: cnet_isa_551aca08f6 (IsA blue_pike walleye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue pimpernel is a kind of herb", "pln": ["(: cnet_isa_6c779a7cb2 (IsA blue_pimpernel herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue point siamese is a kind of siamese cat", "pln": ["(: cnet_isa_024eded536 (IsA blue_point_siamese siamese_cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blue poppy is a kind of poppy", "pln": ["(: cnet_isa_0f4298fc4f (IsA blue_poppy poppy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue racer is a kind of blacksnake", "pln": ["(: cnet_isa_db3be2a676 (IsA blue_racer blacksnake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue ribbon is a kind of badge", "pln": ["(: cnet_isa_6cf1c0552e (IsA blue_ribbon badge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue ribbon commission is a kind of committee", "pln": ["(: cnet_isa_6d99d8818c (IsA blue_ribbon_commission committee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue sage is a kind of sage", "pln": ["(: cnet_isa_37a99503c3 (IsA blue_sage sage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue shark is a kind of requiem shark", "pln": ["(: cnet_isa_9f8cf454ea (IsA blue_shark requiem_shark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue sky is a kind of sky", "pln": ["(: cnet_isa_971e3f0c57 (IsA blue_sky sky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blue sky law is a kind of law", "pln": ["(: cnet_isa_f9fab307f0 (IsA blue_sky_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue star is a kind of subshrub", "pln": ["(: cnet_isa_5b11ea9f53 (IsA blue_star subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue star juniper is a kind of plant", "pln": ["(: cnet_isa_7f71ccc825 (IsA blue_star_juniper plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue succory is a kind of catananche", "pln": ["(: cnet_isa_ef49ccb18a (IsA blue_succory catananche) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue tip juniper is a kind of plant", "pln": ["(: cnet_isa_a9fdbcbab2 (IsA blue_tip_juniper plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue tit is a kind of titmouse", "pln": ["(: cnet_isa_aa821a0722 (IsA blue_tit titmouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue toadflax is a kind of toadflax", "pln": ["(: cnet_isa_8110f6342d (IsA blue_toadflax toadflax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue vitriol is a kind of copper sulfate", "pln": ["(: cnet_isa_35b51284ac (IsA blue_vitriol copper_sulfate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue wall of silence is a kind of cover up", "pln": ["(: cnet_isa_13fe23bd96 (IsA blue_wall_of_silence cover_up) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue whale is a kind of baleen whale", "pln": ["(: cnet_isa_7b68f9e53b (IsA blue_whale baleen_whale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blueberry is a kind of berry", "pln": ["(: cnet_isa_f8820bb104 (IsA blueberry berry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blueberry is a kind of shrub", "pln": ["(: cnet_isa_e206a9e9d0 (IsA blueberry shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blueberry pie is a kind of pie", "pln": ["(: cnet_isa_bfee8575c7 (IsA blueberry_pie pie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blueberry yogurt is a kind of yogurt", "pln": ["(: cnet_isa_9b38a20c02 (IsA blueberry_yogurt yogurt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bluebird is a kind of thrush", "pln": ["(: cnet_isa_366ff9e056 (IsA bluebird thrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bluebonnet is a kind of lupine", "pln": ["(: cnet_isa_b3181336df (IsA bluebonnet lupine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bluebottle is a kind of blowfly", "pln": ["(: cnet_isa_65263d47af (IsA bluebottle blowfly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bluecoat is a kind of person", "pln": ["(: cnet_isa_fc7097ba3f (IsA bluecoat person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bluefin is a kind of tuna", "pln": ["(: cnet_isa_3c32cd89fd (IsA bluefin tuna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bluefish is a kind of percoid fish", "pln": ["(: cnet_isa_bc9d982aa3 (IsA bluefish percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bluefish is a kind of saltwater fish", "pln": ["(: cnet_isa_edc64c6a2c (IsA bluefish saltwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bluegill is a kind of freshwater bream", "pln": ["(: cnet_isa_78ad610ab2 (IsA bluegill freshwater_bream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bluegrass is a kind of country music", "pln": ["(: cnet_isa_52ccd2ece3 (IsA bluegrass country_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bluegrass is a kind of grass", "pln": ["(: cnet_isa_b67dc34391 (IsA bluegrass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bluegrass stater is a kind of american", "pln": ["(: cnet_isa_e18e2d919c (IsA bluegrass_stater american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bluehead is a kind of wrasse", "pln": ["(: cnet_isa_ddbf8d674a (IsA bluehead wrasse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bluejack oak is a kind of oak", "pln": ["(: cnet_isa_ed2b471fa1 (IsA bluejack_oak oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bluejacket is a kind of serviceman", "pln": ["(: cnet_isa_b50fd031bf (IsA bluejacket serviceman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bluenose is a kind of canadian", "pln": ["(: cnet_isa_42603f7e64 (IsA bluenose canadian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bluepoint is a kind of oyster", "pln": ["(: cnet_isa_263a1acaba (IsA bluepoint oyster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bluepoint is a kind of huitre", "pln": ["(: cnet_isa_e50179a556 (IsA bluepoint huitre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "blueprint is a kind of picture", "pln": ["(: cnet_isa_a13721b484 (IsA blueprint picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blueprint is a kind of plan", "pln": ["(: cnet_isa_530073e096 (IsA blueprint plan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blueprint paper is a kind of paper", "pln": ["(: cnet_isa_484d1426d6 (IsA blueprint_paper paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue is a kind of black music", "pln": ["(: cnet_isa_c3a9bbe2af (IsA blue black_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue is a kind of folk song", "pln": ["(: cnet_isa_dcbd0942fe (IsA blue folk_song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blue is a kind of depression", "pln": ["(: cnet_isa_c68c1297f7 (IsA blue depression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bluestem is a kind of grass", "pln": ["(: cnet_isa_1fa8babe5d (IsA bluestem grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bluestocking is a kind of woman", "pln": ["(: cnet_isa_c460c8a73a (IsA bluestocking woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bluestone is a kind of sandstone", "pln": ["(: cnet_isa_eb3e422931 (IsA bluestone sandstone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bluethroat is a kind of thrush", "pln": ["(: cnet_isa_4d87f47706 (IsA bluethroat thrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bluethroat pikeblenny is a kind of pikeblenny", "pln": ["(: cnet_isa_555f6d33c7 (IsA bluethroat_pikeblenny pikeblenny) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bluetick is a kind of hound", "pln": ["(: cnet_isa_e838485380 (IsA bluetick hound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bluetongue is a kind of catarrhal fever", "pln": ["(: cnet_isa_a9ec595b1b (IsA bluetongue catarrhal_fever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blueweed is a kind of herb", "pln": ["(: cnet_isa_aa08c240d5 (IsA blueweed herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bluewing is a kind of teal", "pln": ["(: cnet_isa_25622aa5f2 (IsA bluewing teal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bluff is a kind of deception", "pln": ["(: cnet_isa_61fd93b5c4 (IsA bluff deception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bluff is a kind of pretense", "pln": ["(: cnet_isa_a7f5261441 (IsA bluff pretense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bluff is a kind of bank", "pln": ["(: cnet_isa_092f7c3db7 (IsA bluff bank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bluffer is a kind of deceiver", "pln": ["(: cnet_isa_c122073e50 (IsA bluffer deceiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bluffness is a kind of frankness", "pln": ["(: cnet_isa_b35d0f37ea (IsA bluffness frankness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bluing is a kind of chemical process", "pln": ["(: cnet_isa_9c4d7a50f6 (IsA bluing chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bluing is a kind of dye", "pln": ["(: cnet_isa_f30c9ca3a5 (IsA bluing dye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bluish green is a kind of green", "pln": ["(: cnet_isa_d2482e7a09 (IsA bluish_green green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blunder is a kind of mistake", "pln": ["(: cnet_isa_b995bcdd5c (IsA blunder mistake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blunderbuss is a kind of musket", "pln": ["(: cnet_isa_b4df211964 (IsA blunderbuss musket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blunt file is a kind of file", "pln": ["(: cnet_isa_52e3d18031 (IsA blunt_file file) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blunt trauma is a kind of injury", "pln": ["(: cnet_isa_e533fde768 (IsA blunt_trauma injury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bluntness is a kind of inconsideration", "pln": ["(: cnet_isa_058b210f99 (IsA bluntness inconsideration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blur is a kind of representation", "pln": ["(: cnet_isa_cf64eb3cbd (IsA blur representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blush is a kind of reflex", "pln": ["(: cnet_isa_af50a8327a (IsA blush reflex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blush wine is a kind of wine", "pln": ["(: cnet_isa_4229ee1ec2 (IsA blush_wine wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "blushing mushroom is a kind of agaric", "pln": ["(: cnet_isa_3bc79d3b1d (IsA blushing_mushroom agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bluster is a kind of gust", "pln": ["(: cnet_isa_d19e603998 (IsA bluster gust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bluster is a kind of confusion", "pln": ["(: cnet_isa_ecce7c075f (IsA bluster confusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bmw is a kind of car", "pln": ["(: cnet_isa_dc670f2809 (IsA bmw car) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boa is a kind of constrictor", "pln": ["(: cnet_isa_60600a0df0 (IsA boa constrictor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boa constrictor is a kind of boa", "pln": ["(: cnet_isa_3b0a866018 (IsA boa_constrictor boa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boar is a kind of swine", "pln": ["(: cnet_isa_b8c7acf479 (IsA boar swine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "board is a kind of flat piece of wood", "pln": ["(: cnet_isa_a04b3e5201 (IsA board flat_piece_of_wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "board is a kind of sheet", "pln": ["(: cnet_isa_9c289b1759 (IsA board sheet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "board is a kind of surface", "pln": ["(: cnet_isa_2db28a6183 (IsA board surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "board is a kind of fare", "pln": ["(: cnet_isa_f0882cd57f (IsA board fare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "board is a kind of committee", "pln": ["(: cnet_isa_9cd4fdf6a5 (IsA board committee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "board is a kind of lumber", "pln": ["(: cnet_isa_8e21db4731 (IsA board lumber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "board foot is a kind of volume unit", "pln": ["(: cnet_isa_7a9bfa74c2 (IsA board_foot volume_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "board game is a kind of parlor game", "pln": ["(: cnet_isa_7431deb237 (IsA board_game parlor_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "board measure is a kind of system of measurement", "pln": ["(: cnet_isa_7b5f8d3322 (IsA board_measure system_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "board meeting is a kind of meeting", "pln": ["(: cnet_isa_935c8b39f6 (IsA board_meeting meeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "board member is a kind of member", "pln": ["(: cnet_isa_5da06e5ef7 (IsA board_member member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "board of regent is a kind of governing board", "pln": ["(: cnet_isa_f298309887 (IsA board_of_regent governing_board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "board of selectmen is a kind of board", "pln": ["(: cnet_isa_617b8b9675 (IsA board_of_selectmen board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "board of trustee is a kind of governing board", "pln": ["(: cnet_isa_c37f410ba1 (IsA board_of_trustee governing_board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "board rule is a kind of measuring stick", "pln": ["(: cnet_isa_13423b45d7 (IsA board_rule measuring_stick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boarder is a kind of intruder", "pln": ["(: cnet_isa_39db9c986a (IsA boarder intruder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boarder is a kind of schoolchild", "pln": ["(: cnet_isa_bb425ed956 (IsA boarder schoolchild) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boarding is a kind of departure", "pln": ["(: cnet_isa_e9cda6483e (IsA boarding departure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boarding is a kind of structure", "pln": ["(: cnet_isa_eb1f73459a (IsA boarding structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boarding card is a kind of pass", "pln": ["(: cnet_isa_e6b6acc16b (IsA boarding_card pass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boarding house is a kind of house", "pln": ["(: cnet_isa_1fbe206aa4 (IsA boarding_house house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boarding school is a kind of private school", "pln": ["(: cnet_isa_6230c21c87 (IsA boarding_school private_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "boardroom is a kind of room", "pln": ["(: cnet_isa_51fe61a5b8 (IsA boardroom room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "board is a kind of boarding", "pln": ["(: cnet_isa_0ce7b71528 (IsA board boarding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "board is a kind of theater stage", "pln": ["(: cnet_isa_b8e09487dc (IsA board theater_stage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boardwalk is a kind of walk", "pln": ["(: cnet_isa_bb4ed4bf65 (IsA boardwalk walk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boarfish is a kind of spiny finned fish", "pln": ["(: cnet_isa_ad4edc4c75 (IsA boarfish spiny_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "boarhound is a kind of hound", "pln": ["(: cnet_isa_b96dcfb9c3 (IsA boarhound hound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boast is a kind of speech act", "pln": ["(: cnet_isa_397c8d0d87 (IsA boast speech_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boastfulness is a kind of conceit", "pln": ["(: cnet_isa_7d6287bac1 (IsA boastfulness conceit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boat is a kind of form of transportation", "pln": ["(: cnet_isa_8fc4dcaa6c (IsA boat form_of_transportation) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boat is a kind of mean of transport", "pln": ["(: cnet_isa_4a05efc236 (IsA boat mean_of_transport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boat is a kind of vehicle", "pln": ["(: cnet_isa_3dc1bd5503 (IsA boat vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "boat is a kind of vessel", "pln": ["(: cnet_isa_0694280c96 (IsA boat vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boat deck is a kind of upper deck", "pln": ["(: cnet_isa_4f0a1d3d36 (IsA boat_deck upper_deck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boat hook is a kind of hook", "pln": ["(: cnet_isa_0e96c905b1 (IsA boat_hook hook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boat race is a kind of race", "pln": ["(: cnet_isa_d2793ff303 (IsA boat_race race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boat racing is a kind of racing", "pln": ["(: cnet_isa_eb5b408cb6 (IsA boat_racing racing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boat train is a kind of train", "pln": ["(: cnet_isa_73060db122 (IsA boat_train train) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boat whistle is a kind of whistle", "pln": ["(: cnet_isa_07a7c9b07e (IsA boat_whistle whistle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boatbill is a kind of heron", "pln": ["(: cnet_isa_ac5395ad27 (IsA boatbill heron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boatbuilder is a kind of builder", "pln": ["(: cnet_isa_702f8b6606 (IsA boatbuilder builder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "boater is a kind of hat", "pln": ["(: cnet_isa_0ad8ec01c3 (IsA boater hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boathouse is a kind of shed", "pln": ["(: cnet_isa_fc0b26f06e (IsA boathouse shed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boating is a kind of activity", "pln": ["(: cnet_isa_73ab390226 (IsA boating activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boating is a kind of sport as skiing", "pln": ["(: cnet_isa_f2fa024d64 (IsA boating sport_as_skiing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boating is a kind of water travel", "pln": ["(: cnet_isa_783e897bcb (IsA boating water_travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boatload is a kind of large indefinite quantity", "pln": ["(: cnet_isa_dcb327017b (IsA boatload large_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boatman is a kind of worker", "pln": ["(: cnet_isa_addb106681 (IsA boatman worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boatmanship is a kind of seamanship", "pln": ["(: cnet_isa_3b3cc8f3b2 (IsA boatmanship seamanship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boatswain s chair is a kind of seat", "pln": ["(: cnet_isa_f09ea89de5 (IsA boatswain_s_chair seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boatswain is a kind of mariner", "pln": ["(: cnet_isa_500f93a9ba (IsA boatswain mariner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boatyard is a kind of place", "pln": ["(: cnet_isa_9e3ade4666 (IsA boatyard place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bob is a kind of nickname for robert", "pln": ["(: cnet_isa_b5350de58d (IsA bob nickname_for_robert) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bob is a kind of police officer", "pln": ["(: cnet_isa_90aa6a797d (IsA bob police_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bob is a kind of inclination", "pln": ["(: cnet_isa_f32b60def3 (IsA bob inclination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bob is a kind of float", "pln": ["(: cnet_isa_39f9bbfaaf (IsA bob float) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bob is a kind of weight", "pln": ["(: cnet_isa_90d29d6fc2 (IsA bob weight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bob is a kind of hairdo", "pln": ["(: cnet_isa_ae9d84bccf (IsA bob hairdo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bobbin is a kind of winder", "pln": ["(: cnet_isa_ec49e18ac7 (IsA bobbin winder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bobble is a kind of blunder", "pln": ["(: cnet_isa_c549fa7980 (IsA bobble blunder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bobby is a kind of policeman", "pln": ["(: cnet_isa_4469278ff2 (IsA bobby policeman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bobby pin is a kind of hairpin", "pln": ["(: cnet_isa_b4e80c444b (IsA bobby_pin hairpin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bobbysoxer is a kind of lass", "pln": ["(: cnet_isa_6ca3ee5090 (IsA bobbysoxer lass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bobcat is a kind of lynx", "pln": ["(: cnet_isa_0bcce1608a (IsA bobcat lynx) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bobolink is a kind of new world oriole", "pln": ["(: cnet_isa_b58e3a0596 (IsA bobolink new_world_oriole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bobsled is a kind of sled", "pln": ["(: cnet_isa_d9ddc16de3 (IsA bobsled sled) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bobsledding is a kind of sledding", "pln": ["(: cnet_isa_2834920efb (IsA bobsledding sledding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bobtail is a kind of tail", "pln": ["(: cnet_isa_74f4f1c082 (IsA bobtail tail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bobwhite is a kind of quail", "pln": ["(: cnet_isa_3e8cde6e5d (IsA bobwhite quail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bocce is a kind of bowling", "pln": ["(: cnet_isa_15a132e8f5 (IsA bocce bowling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bocce ball is a kind of ball", "pln": ["(: cnet_isa_eb7ac1b37f (IsA bocce_ball ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bocconia is a kind of angiospermous tree", "pln": ["(: cnet_isa_df195ceb0a (IsA bocconia angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bock is a kind of lager", "pln": ["(: cnet_isa_5465359893 (IsA bock lager) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bodega is a kind of shop", "pln": ["(: cnet_isa_be24d9b5c2 (IsA bodega shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bodice is a kind of top", "pln": ["(: cnet_isa_eda11d4100 (IsA bodice top) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bodice ripper is a kind of romance", "pln": ["(: cnet_isa_e9bc41c87a (IsA bodice_ripper romance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bodily process is a kind of organic process", "pln": ["(: cnet_isa_952cc60e04 (IsA bodily_process organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bodily property is a kind of property", "pln": ["(: cnet_isa_fad5501b6b (IsA bodily_property property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bodkin is a kind of hairpin", "pln": ["(: cnet_isa_c9e96d7d2a (IsA bodkin hairpin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bodkin is a kind of hand tool", "pln": ["(: cnet_isa_6c4e7b3b91 (IsA bodkin hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bodo garo is a kind of kamarupan", "pln": ["(: cnet_isa_026446f006 (IsA bodo_garo kamarupan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "body is a kind of natural object", "pln": ["(: cnet_isa_90a34f458b (IsA body natural_object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "body is a kind of structure", "pln": ["(: cnet_isa_107c021d82 (IsA body structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "body is a kind of mass", "pln": ["(: cnet_isa_7df3cf9357 (IsA body mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "body is a kind of message", "pln": ["(: cnet_isa_f6698f038f (IsA body message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "body is a kind of social group", "pln": ["(: cnet_isa_357a943f18 (IsA body social_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "body is a kind of system", "pln": ["(: cnet_isa_080b5fd314 (IsA body system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "body armor is a kind of armor", "pln": ["(: cnet_isa_ca86621c46 (IsA body_armor armor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "body bag is a kind of bag", "pln": ["(: cnet_isa_064550cde8 (IsA body_bag bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "body count is a kind of count", "pln": ["(: cnet_isa_da8e0b6f29 (IsA body_count count) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "body covering is a kind of covering", "pln": ["(: cnet_isa_8b833640c3 (IsA body_covering covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "body english is a kind of motion", "pln": ["(: cnet_isa_9990c79e4f (IsA body_english motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "body hair is a kind of hair", "pln": ["(: cnet_isa_7b6b10f5f5 (IsA body_hair hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "body image is a kind of idea", "pln": ["(: cnet_isa_84b2742c73 (IsA body_image idea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "body language is a kind of visual communication", "pln": ["(: cnet_isa_834b4a9910 (IsA body_language visual_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "body length is a kind of linear unit", "pln": ["(: cnet_isa_6fa9357d83 (IsA body_length linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "body lotion is a kind of lotion", "pln": ["(: cnet_isa_a7ae1ee981 (IsA body_lotion lotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "body louse is a kind of louse", "pln": ["(: cnet_isa_4729d273bc (IsA body_louse louse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "body mass index is a kind of index", "pln": ["(: cnet_isa_c6843d8456 (IsA body_mass_index index) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "body odor is a kind of malodorousness", "pln": ["(: cnet_isa_f067f172aa (IsA body_odor malodorousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "body of water is a kind of thing", "pln": ["(: cnet_isa_67098fc2ac (IsA body_of_water thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "body pad is a kind of protective garment", "pln": ["(: cnet_isa_b8f2daa3eb (IsA body_pad protective_garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "body part is a kind of part", "pln": ["(: cnet_isa_55296dbaba (IsA body_part part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "body plethysmograph is a kind of plethysmograph", "pln": ["(: cnet_isa_2b663837d3 (IsA body_plethysmograph plethysmograph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "body servant is a kind of servant", "pln": ["(: cnet_isa_6eb31b0a55 (IsA body_servant servant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "body stocking is a kind of undergarment", "pln": ["(: cnet_isa_0a8d5cad97 (IsA body_stocking undergarment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "body substance is a kind of substance", "pln": ["(: cnet_isa_e6a77ff79b (IsA body_substance substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "body temperature is a kind of temperature", "pln": ["(: cnet_isa_6e72a0611e (IsA body_temperature temperature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "body temperature is a kind of vital sign", "pln": ["(: cnet_isa_afaffc06c1 (IsA body_temperature vital_sign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "body type is a kind of physique", "pln": ["(: cnet_isa_129bfe7c4f (IsA body_type physique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "body waste is a kind of waste", "pln": ["(: cnet_isa_402cfb4bf9 (IsA body_waste waste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "body weight is a kind of weight", "pln": ["(: cnet_isa_c1a2da0656 (IsA body_weight weight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bodybuilder is a kind of person", "pln": ["(: cnet_isa_29c8de85b2 (IsA bodybuilder person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bodybuilding is a kind of exercise", "pln": ["(: cnet_isa_56f02c965b (IsA bodybuilding exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bodyguard is a kind of defender", "pln": ["(: cnet_isa_fa81f9527d (IsA bodyguard defender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bodywork is a kind of manual labor", "pln": ["(: cnet_isa_848c7adba1 (IsA bodywork manual_labor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bodywork is a kind of body", "pln": ["(: cnet_isa_0a60a2e4a9 (IsA bodywork body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boehmenism is a kind of theological doctrine", "pln": ["(: cnet_isa_08c7b021a4 (IsA boehmenism theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boehmeria is a kind of dicot genus", "pln": ["(: cnet_isa_a21af0058d (IsA boehmeria dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boffin is a kind of research worker", "pln": ["(: cnet_isa_5583c66d8b (IsA boffin research_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bofor gun is a kind of antiaircraft", "pln": ["(: cnet_isa_c2b23ddad4 (IsA bofor_gun antiaircraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bog is a kind of wetland", "pln": ["(: cnet_isa_ebace306a8 (IsA bog wetland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bog asphodel is a kind of liliaceous plant", "pln": ["(: cnet_isa_f8a17e3b1d (IsA bog_asphodel liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bog aster is a kind of aster", "pln": ["(: cnet_isa_3ea6d3ab33 (IsA bog_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bog bilberry is a kind of blueberry", "pln": ["(: cnet_isa_ec917fbe8a (IsA bog_bilberry blueberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bog pimpernel is a kind of pimpernel", "pln": ["(: cnet_isa_8eb7979f38 (IsA bog_pimpernel pimpernel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bog rein orchid is a kind of rein orchid", "pln": ["(: cnet_isa_bba46f58a9 (IsA bog_rein_orchid rein_orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bog rose is a kind of arethusa", "pln": ["(: cnet_isa_5819914028 (IsA bog_rose arethusa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bog rosemary is a kind of andromeda", "pln": ["(: cnet_isa_09cccbf897 (IsA bog_rosemary andromeda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bog soil is a kind of soil", "pln": ["(: cnet_isa_5f9f7e1601 (IsA bog_soil soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bog spavin is a kind of spavin", "pln": ["(: cnet_isa_9819a4713d (IsA bog_spavin spavin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bog star is a kind of parnassia", "pln": ["(: cnet_isa_237fdd42f1 (IsA bog_star parnassia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bogey is a kind of score", "pln": ["(: cnet_isa_85a4fca3ac (IsA bogey score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bogey is a kind of evil spirit", "pln": ["(: cnet_isa_4f33562500 (IsA bogey evil_spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bogeyman is a kind of monster", "pln": ["(: cnet_isa_bc7ad9add0 (IsA bogeyman monster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bogy is a kind of aircraft", "pln": ["(: cnet_isa_57d4fb4810 (IsA bogy aircraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bohemia is a kind of clique", "pln": ["(: cnet_isa_0d8e128d9d (IsA bohemia clique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bohemian is a kind of european", "pln": ["(: cnet_isa_2144d55b15 (IsA bohemian european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bohemian is a kind of nonconformist", "pln": ["(: cnet_isa_501413cc7f (IsA bohemian nonconformist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bohemian waxwing is a kind of waxwing", "pln": ["(: cnet_isa_9961e7007a (IsA bohemian_waxwing waxwing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bohemianism is a kind of behavior", "pln": ["(: cnet_isa_eeff0af59d (IsA bohemianism behavior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bohr theory is a kind of atomic theory", "pln": ["(: cnet_isa_bcce2e78d6 (IsA bohr_theory atomic_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boidae is a kind of reptile family", "pln": ["(: cnet_isa_25ba30d5de (IsA boidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boil is a kind of staphylococcal infection", "pln": ["(: cnet_isa_c7b8f58544 (IsA boil staphylococcal_infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boil smut is a kind of cornsmut", "pln": ["(: cnet_isa_64dee1d152 (IsA boil_smut cornsmut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boiled dinner is a kind of dish", "pln": ["(: cnet_isa_37ba85339e (IsA boiled_dinner dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boiled egg is a kind of dish", "pln": ["(: cnet_isa_192241541b (IsA boiled_egg dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boiler is a kind of vessel", "pln": ["(: cnet_isa_1cdd8d1783 (IsA boiler vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boilerplate is a kind of plate iron", "pln": ["(: cnet_isa_f41f0aa19b (IsA boilerplate plate_iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "boilerplate is a kind of formulation", "pln": ["(: cnet_isa_ecbda20c97 (IsA boilerplate formulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boiling is a kind of cooking", "pln": ["(: cnet_isa_f68b4e819a (IsA boiling cooking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boiling is a kind of heating", "pln": ["(: cnet_isa_300c9fb983 (IsA boiling heating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boiling is a kind of vaporization", "pln": ["(: cnet_isa_8d986e2028 (IsA boiling vaporization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boiling point is a kind of excitability", "pln": ["(: cnet_isa_aa75519f6b (IsA boiling_point excitability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boiling point is a kind of temperature", "pln": ["(: cnet_isa_2883145cf6 (IsA boiling_point temperature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boiling water reactor is a kind of water cooled reactor", "pln": ["(: cnet_isa_f0f2bff18d (IsA boiling_water_reactor water_cooled_reactor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boisterousness is a kind of noisiness", "pln": ["(: cnet_isa_483887969e (IsA boisterousness noisiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boisterousness is a kind of storminess", "pln": ["(: cnet_isa_2ada1848e6 (IsA boisterousness storminess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bok choy is a kind of cabbage", "pln": ["(: cnet_isa_8c0840c443 (IsA bok_choy cabbage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bok choy is a kind of crucifer", "pln": ["(: cnet_isa_61a30ec31a (IsA bok_choy crucifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bokmal is a kind of norwegian", "pln": ["(: cnet_isa_86fe749144 (IsA bokmal norwegian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bola is a kind of rope", "pln": ["(: cnet_isa_be3d94f29f (IsA bola rope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bolbitis is a kind of fern genus", "pln": ["(: cnet_isa_68390bbe29 (IsA bolbitis fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boldface is a kind of font", "pln": ["(: cnet_isa_5bd1803816 (IsA boldface font) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boldness is a kind of aggressiveness", "pln": ["(: cnet_isa_ad067824cb (IsA boldness aggressiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boldness is a kind of conspicuousness", "pln": ["(: cnet_isa_8b01ac9a24 (IsA boldness conspicuousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boldness is a kind of fearlessness", "pln": ["(: cnet_isa_dc0edb6b2a (IsA boldness fearlessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bole is a kind of west chadic", "pln": ["(: cnet_isa_d820f9e085 (IsA bole west_chadic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bole is a kind of pigment", "pln": ["(: cnet_isa_930c391619 (IsA bole pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bole is a kind of soil", "pln": ["(: cnet_isa_40f67f8e67 (IsA bole soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bolero is a kind of stage dancing", "pln": ["(: cnet_isa_d3dbdffec7 (IsA bolero stage_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bolero is a kind of jacket", "pln": ["(: cnet_isa_305c0cd396 (IsA bolero jacket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bolero is a kind of dance music", "pln": ["(: cnet_isa_750252761b (IsA bolero dance_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boletaceae is a kind of fungus family", "pln": ["(: cnet_isa_a807ecb50f (IsA boletaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bolete is a kind of fungus", "pln": ["(: cnet_isa_da320e3862 (IsA bolete fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boletellus is a kind of fungus genus", "pln": ["(: cnet_isa_8c70f0d390 (IsA boletellus fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "boletellus russellii is a kind of bolete", "pln": ["(: cnet_isa_fa81b2552b (IsA boletellus_russellii bolete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boletus is a kind of fungus genus", "pln": ["(: cnet_isa_38780f2c5b (IsA boletus fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boletus chrysenteron is a kind of bolete", "pln": ["(: cnet_isa_c054a0edb4 (IsA boletus_chrysenteron bolete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boletus edulis is a kind of bolete", "pln": ["(: cnet_isa_161f5ccf48 (IsA boletus_edulis bolete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boletus luridus is a kind of bolete", "pln": ["(: cnet_isa_ed7525c5f4 (IsA boletus_luridus bolete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boletus mirabilis is a kind of bolete", "pln": ["(: cnet_isa_078b7dca07 (IsA boletus_mirabilis bolete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boletus pallidus is a kind of bolete", "pln": ["(: cnet_isa_90b39a13fb (IsA boletus_pallidus bolete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boletus pulcherrimus is a kind of bolete", "pln": ["(: cnet_isa_938cd366dc (IsA boletus_pulcherrimus bolete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boletus pulverulentus is a kind of bolete", "pln": ["(: cnet_isa_5496e4c809 (IsA boletus_pulverulentus bolete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boletus roxanae is a kind of bolete", "pln": ["(: cnet_isa_5de8d8f985 (IsA boletus_roxanae bolete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boletus subvelutipe is a kind of bolete", "pln": ["(: cnet_isa_c12dd81642 (IsA boletus_subvelutipe bolete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boletus variipe is a kind of bolete", "pln": ["(: cnet_isa_603955dbb2 (IsA boletus_variipe bolete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boletus zelleri is a kind of bolete", "pln": ["(: cnet_isa_303537e8b3 (IsA boletus_zelleri bolete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bolide is a kind of meteor", "pln": ["(: cnet_isa_cdd5ce478e (IsA bolide meteor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bolivar is a kind of venezuelan monetary unit", "pln": ["(: cnet_isa_1c46b99786 (IsA bolivar venezuelan_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bolivia is a kind of canasta", "pln": ["(: cnet_isa_98752c7e0a (IsA bolivia canasta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bolivian is a kind of south american", "pln": ["(: cnet_isa_db435f4727 (IsA bolivian south_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bolivian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_4822484fe6 (IsA bolivian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boliviano is a kind of bolivian monetary unit", "pln": ["(: cnet_isa_b64759faf5 (IsA boliviano bolivian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boll is a kind of capsule", "pln": ["(: cnet_isa_22c5daa0a7 (IsA boll capsule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boll weevil is a kind of weevil", "pln": ["(: cnet_isa_145e4ca6fc (IsA boll_weevil weevil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bollard is a kind of post", "pln": ["(: cnet_isa_82fc0cf406 (IsA bollard post) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bollock is a kind of pulley", "pln": ["(: cnet_isa_c86b5d8e75 (IsA bollock pulley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bollworm is a kind of caterpillar", "pln": ["(: cnet_isa_3ffd0bed85 (IsA bollworm caterpillar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bollywood is a kind of film industry", "pln": ["(: cnet_isa_73373615e0 (IsA bollywood film_industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bolo is a kind of knife", "pln": ["(: cnet_isa_d3c433d4af (IsA bolo knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bolo tie is a kind of necktie", "pln": ["(: cnet_isa_3cf45f904e (IsA bolo_tie necktie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bologna is a kind of sausage", "pln": ["(: cnet_isa_ec3e723c78 (IsA bologna sausage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bolognese pasta sauce is a kind of spaghetti sauce", "pln": ["(: cnet_isa_015c77a251 (IsA bolognese_pasta_sauce spaghetti_sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bologram is a kind of recording", "pln": ["(: cnet_isa_881c5573f6 (IsA bologram recording) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bolometer is a kind of measuring instrument", "pln": ["(: cnet_isa_088453beec (IsA bolometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bolshevism is a kind of communism", "pln": ["(: cnet_isa_9ebe65075b (IsA bolshevism communism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bolshevist is a kind of communist", "pln": ["(: cnet_isa_a60823123f (IsA bolshevist communist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bolshie is a kind of radical", "pln": ["(: cnet_isa_ec5789d46d (IsA bolshie radical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bolster is a kind of pillow", "pln": ["(: cnet_isa_836f593b94 (IsA bolster pillow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bolt is a kind of piece of hardware", "pln": ["(: cnet_isa_29370d521f (IsA bolt piece_of_hardware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bolt is a kind of bar", "pln": ["(: cnet_isa_68e4fcd63d (IsA bolt bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bolt is a kind of roll", "pln": ["(: cnet_isa_44251859b4 (IsA bolt roll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bolt is a kind of screw", "pln": ["(: cnet_isa_b83749ba5f (IsA bolt screw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bolt is a kind of abandonment", "pln": ["(: cnet_isa_43fed7686e (IsA bolt abandonment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bolt cutter is a kind of cutter", "pln": ["(: cnet_isa_07e9a65b05 (IsA bolt_cutter cutter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bolt hole is a kind of hole", "pln": ["(: cnet_isa_699f6cd2e1 (IsA bolt_hole hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bolti is a kind of cichlid", "pln": ["(: cnet_isa_00d050ddcf (IsA bolti cichlid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "boltonia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_2a50b83664 (IsA boltonia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "boltzmann s constant is a kind of constant", "pln": ["(: cnet_isa_38c4880d67 (IsA boltzmann_s_constant constant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bolus is a kind of pill", "pln": ["(: cnet_isa_1823071d1d (IsA bolus pill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bolus is a kind of ball", "pln": ["(: cnet_isa_0f4efc49ca (IsA bolus ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bomarea is a kind of liliid monocot genus", "pln": ["(: cnet_isa_6eb6039e02 (IsA bomarea liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bomb is a kind of device", "pln": ["(: cnet_isa_e1727abf44 (IsA bomb device) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bomb is a kind of explosive", "pln": ["(: cnet_isa_9bed87acef (IsA bomb explosive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bomb is a kind of explosive device", "pln": ["(: cnet_isa_5895a69844 (IsA bomb explosive_device) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bomb is a kind of object", "pln": ["(: cnet_isa_22c8cc932c (IsA bomb object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bomb is a kind of weaponry", "pln": ["(: cnet_isa_277503e900 (IsA bomb weaponry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bomb blast is a kind of blast", "pln": ["(: cnet_isa_d9b8926608 (IsA bomb_blast blast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bomb calorimeter is a kind of calorimeter", "pln": ["(: cnet_isa_03be36b012 (IsA bomb_calorimeter calorimeter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bomb rack is a kind of carrier", "pln": ["(: cnet_isa_d984b94ec8 (IsA bomb_rack carrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bomb shelter is a kind of chamber", "pln": ["(: cnet_isa_ab99aa41d6 (IsA bomb_shelter chamber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bomb site is a kind of site", "pln": ["(: cnet_isa_11eb641c44 (IsA bomb_site site) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bombacaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_fe40158460 (IsA bombacaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bombardier is a kind of aircrewman", "pln": ["(: cnet_isa_86aabad6b8 (IsA bombardier aircrewman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bombardier is a kind of noncommissioned officer", "pln": ["(: cnet_isa_91aeaf6505 (IsA bombardier noncommissioned_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bombardier beetle is a kind of ground beetle", "pln": ["(: cnet_isa_55e440e1d4 (IsA bombardier_beetle ground_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bombardment is a kind of radiation", "pln": ["(: cnet_isa_ea37060f15 (IsA bombardment radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bombardon is a kind of bass", "pln": ["(: cnet_isa_5749cea995 (IsA bombardon bass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bombardon is a kind of shawm", "pln": ["(: cnet_isa_ac720f2d54 (IsA bombardon shawm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bombast is a kind of grandiosity", "pln": ["(: cnet_isa_7625280a03 (IsA bombast grandiosity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "bombsight is a kind of sights", "pln": ["(: cnet_isa_78ce630118 (IsA bombsight sights) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bombax is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_60c6f7f594 (IsA bombax dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bombazine is a kind of fabric", "pln": ["(: cnet_isa_f7d9a07006 (IsA bombazine fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bomber is a kind of sandwich", "pln": ["(: cnet_isa_572ad5d7d0 (IsA bomber sandwich) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bomber is a kind of airplane", "pln": ["(: cnet_isa_5552b9d0e2 (IsA bomber airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bomber is a kind of warplane", "pln": ["(: cnet_isa_65d18d0b80 (IsA bomber warplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bomber is a kind of person", "pln": ["(: cnet_isa_8fc6adb388 (IsA bomber person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bomber crew is a kind of aircrew", "pln": ["(: cnet_isa_80b39c5b2d (IsA bomber_crew aircrew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bomber jacket is a kind of jacket", "pln": ["(: cnet_isa_d85b7d5431 (IsA bomber_jacket jacket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bomber is a kind of aircraft", "pln": ["(: cnet_isa_a87de2a979 (IsA bomber aircraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bombie is a kind of bomblet", "pln": ["(: cnet_isa_b2f2c9f83c (IsA bombie bomblet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bombina is a kind of amphibian genus", "pln": ["(: cnet_isa_6789956f67 (IsA bombina amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bombing is a kind of attack", "pln": ["(: cnet_isa_f960ac547e (IsA bombing attack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bombing is a kind of sabotage", "pln": ["(: cnet_isa_61eeb5614e (IsA bombing sabotage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bombing run is a kind of bombing", "pln": ["(: cnet_isa_faea4ab480 (IsA bombing_run bombing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bomblet is a kind of bomb", "pln": ["(: cnet_isa_27bbc08e05 (IsA bomblet bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bombshell is a kind of bomb", "pln": ["(: cnet_isa_adb56f0065 (IsA bombshell bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bombshell is a kind of surprise", "pln": ["(: cnet_isa_414d06712c (IsA bombshell surprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bombshell is a kind of entertainer", "pln": ["(: cnet_isa_2c9a3aa2c7 (IsA bombshell entertainer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bombsight is a kind of sight", "pln": ["(: cnet_isa_fe2a7fd432 (IsA bombsight sight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bombus is a kind of arthropod genus", "pln": ["(: cnet_isa_21a7b40e07 (IsA bombus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bombycid is a kind of moth", "pln": ["(: cnet_isa_7aec9935ed (IsA bombycid moth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bombycidae is a kind of arthropod family", "pln": ["(: cnet_isa_94bd2fccdf (IsA bombycidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bombycilla is a kind of bird genus", "pln": ["(: cnet_isa_83ff631c5b (IsA bombycilla bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bombycillidae is a kind of bird family", "pln": ["(: cnet_isa_08a667e9d8 (IsA bombycillidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bombyliidae is a kind of arthropod family", "pln": ["(: cnet_isa_eb0551e213 (IsA bombyliidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bombyx is a kind of arthropod genus", "pln": ["(: cnet_isa_16dff81dd0 (IsA bombyx arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bon mot is a kind of wit", "pln": ["(: cnet_isa_5a6100a3b4 (IsA bon_mot wit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bon voyage is a kind of farewell", "pln": ["(: cnet_isa_8c4895f002 (IsA bon_voyage farewell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bonanza is a kind of vein", "pln": ["(: cnet_isa_d3ec4faeaf (IsA bonanza vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bonasa is a kind of bird genus", "pln": ["(: cnet_isa_1070c21b01 (IsA bonasa bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bonbon is a kind of candy", "pln": ["(: cnet_isa_13ec285120 (IsA bonbon candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bond is a kind of debt instrument", "pln": ["(: cnet_isa_0129d5c97f (IsA bond debt_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bond is a kind of security", "pln": ["(: cnet_isa_53f73ef87e (IsA bond security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bond is a kind of writing paper", "pln": ["(: cnet_isa_76c56c8ed4 (IsA bond writing_paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bond issue is a kind of bond", "pln": ["(: cnet_isa_dd408a7f83 (IsA bond_issue bond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bond rating is a kind of evaluation", "pln": ["(: cnet_isa_7d45481be8 (IsA bond_rating evaluation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bond servant is a kind of slave", "pln": ["(: cnet_isa_9d592ab15a (IsA bond_servant slave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bond trading is a kind of trading", "pln": ["(: cnet_isa_88be7b9882 (IsA bond_trading trading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bondage is a kind of sexual activity", "pln": ["(: cnet_isa_1e1c567a17 (IsA bondage sexual_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bondage is a kind of subjugation", "pln": ["(: cnet_isa_5460b74325 (IsA bondage subjugation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bonded labor is a kind of bondage", "pln": ["(: cnet_isa_301c999647 (IsA bonded_labor bondage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bondholder is a kind of holder", "pln": ["(: cnet_isa_968bbe7d48 (IsA bondholder holder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bondholder is a kind of investor", "pln": ["(: cnet_isa_a4c15d6ac6 (IsA bondholder investor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bonding is a kind of fastening", "pln": ["(: cnet_isa_de49bba601 (IsA bonding fastening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bonding is a kind of technique", "pln": ["(: cnet_isa_3bab58fe00 (IsA bonding technique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bonding is a kind of personal relation", "pln": ["(: cnet_isa_4c5d7daae0 (IsA bonding personal_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bondman is a kind of bond servant", "pln": ["(: cnet_isa_331931ceb4 (IsA bondman bond_servant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bondman is a kind of slave", "pln": ["(: cnet_isa_6755fefeb8 (IsA bondman slave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bondsman is a kind of benefactor", "pln": ["(: cnet_isa_d72120320a (IsA bondsman benefactor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bonduc is a kind of tree", "pln": ["(: cnet_isa_57ad4b78f1 (IsA bonduc tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bonduc nut is a kind of seed", "pln": ["(: cnet_isa_b90eda89de (IsA bonduc_nut seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bondwoman is a kind of bond servant", "pln": ["(: cnet_isa_f9245bb2a0 (IsA bondwoman bond_servant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bondwoman is a kind of slave", "pln": ["(: cnet_isa_f8120cc83c (IsA bondwoman slave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bone is a kind of contend over", "pln": ["(: cnet_isa_08d406ccd3 (IsA bone contend_over) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bone is a kind of important part of person", "pln": ["(: cnet_isa_20346bd048 (IsA bone important_part_of_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bone is a kind of not meat", "pln": ["(: cnet_isa_889d139441 (IsA bone not_meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bone is a kind of part of animal", "pln": ["(: cnet_isa_102eb5a0e6 (IsA bone part_of_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bone is a kind of structural support", "pln": ["(: cnet_isa_5a362b85e9 (IsA bone structural_support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bone is a kind of white", "pln": ["(: cnet_isa_d52be6f44e (IsA bone white) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bone is a kind of connective tissue", "pln": ["(: cnet_isa_44134ab276 (IsA bone connective_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bone is a kind of animal material", "pln": ["(: cnet_isa_10facd3ec0 (IsA bone animal_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bone age is a kind of age", "pln": ["(: cnet_isa_fe2a75ca08 (IsA bone_age age) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bone ash is a kind of ash", "pln": ["(: cnet_isa_924198a44f (IsA bone_ash ash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bone ash cup is a kind of vessel", "pln": ["(: cnet_isa_d42adb0b84 (IsA bone_ash_cup vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bone black is a kind of char", "pln": ["(: cnet_isa_eeb32975f9 (IsA bone_black char) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bone cell is a kind of somatic cell", "pln": ["(: cnet_isa_a05ea6cd30 (IsA bone_cell somatic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bone china is a kind of china", "pln": ["(: cnet_isa_36b3dbc248 (IsA bone_china china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bone fat is a kind of animal fat", "pln": ["(: cnet_isa_206d2f4cdb (IsA bone_fat animal_fat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bone headed dinosaur is a kind of ornithischian", "pln": ["(: cnet_isa_7dce483984 (IsA bone_headed_dinosaur ornithischian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bone of contention is a kind of subject", "pln": ["(: cnet_isa_3e3c57ef5e (IsA bone_of_contention subject) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bone oil is a kind of animal oil", "pln": ["(: cnet_isa_71bcae8e39 (IsA bone_oil animal_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bone spavin is a kind of spavin", "pln": ["(: cnet_isa_fb81bead8d (IsA bone_spavin spavin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bonefish is a kind of soft finned fish", "pln": ["(: cnet_isa_d21ae8fa4a (IsA bonefish soft_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bonemeal is a kind of organic", "pln": ["(: cnet_isa_576b0fd575 (IsA bonemeal organic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bone is a kind of not good food for dog", "pln": ["(: cnet_isa_4d5ee63eb4 (IsA bone not_good_food_for_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bone is a kind of percussion instrument", "pln": ["(: cnet_isa_ad671f8c3c (IsA bone percussion_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boneset is a kind of herb", "pln": ["(: cnet_isa_9169f75806 (IsA boneset herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bonesetter is a kind of health professional", "pln": ["(: cnet_isa_2ca3834246 (IsA bonesetter health_professional) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boneshaker is a kind of wheeled vehicle", "pln": ["(: cnet_isa_e93c07ff4f (IsA boneshaker wheeled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bonfire is a kind of fire", "pln": ["(: cnet_isa_e4f67cd7c9 (IsA bonfire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bonfire night is a kind of november 5", "pln": ["(: cnet_isa_0b84c791b4 (IsA bonfire_night november_5) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bong is a kind of sound", "pln": ["(: cnet_isa_fda1e4a18f (IsA bong sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bongo is a kind of antelope", "pln": ["(: cnet_isa_a3c8631d70 (IsA bongo antelope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bongo is a kind of drum", "pln": ["(: cnet_isa_a3f79f0126 (IsA bongo drum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bonheur is a kind of happiness", "pln": ["(: cnet_isa_f94b7f5c0b (IsA bonheur happiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bonito is a kind of scombroid", "pln": ["(: cnet_isa_00c26587a3 (IsA bonito scombroid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bonito is a kind of tuna", "pln": ["(: cnet_isa_6ef7c0f3ff (IsA bonito tuna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bonito shark is a kind of mako", "pln": ["(: cnet_isa_34aa96a9de (IsA bonito_shark mako) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bonn is a kind of in germany", "pln": ["(: cnet_isa_85bb821e6a (IsA bonn in_germany) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bonnet is a kind of hat", "pln": ["(: cnet_isa_330372d5cd (IsA bonnet hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bonnet macaque is a kind of macaque", "pln": ["(: cnet_isa_980bb26404 (IsA bonnet_macaque macaque) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bonsai is a kind of tree", "pln": ["(: cnet_isa_4bf37b6a29 (IsA bonsai tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bonus is a kind of positive stimulus", "pln": ["(: cnet_isa_626359c01c (IsA bonus positive_stimulus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bonus is a kind of payment", "pln": ["(: cnet_isa_b2481c1e56 (IsA bonus payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bony fish is a kind of fish", "pln": ["(: cnet_isa_34a3d04439 (IsA bony_fish fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bony labyrinth is a kind of structure", "pln": ["(: cnet_isa_c8ffd05aa9 (IsA bony_labyrinth structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bonyness is a kind of leanness", "pln": ["(: cnet_isa_b90ca2f126 (IsA bonyness leanness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boo is a kind of cry", "pln": ["(: cnet_isa_29869b5d1e (IsA boo cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "booboisie is a kind of class", "pln": ["(: cnet_isa_d53f6ce126 (IsA booboisie class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "booby is a kind of gannet", "pln": ["(: cnet_isa_bf6648695e (IsA booby gannet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "booby prize is a kind of trophy", "pln": ["(: cnet_isa_2fd195e2c2 (IsA booby_prize trophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boodle is a kind of money", "pln": ["(: cnet_isa_f4e0cb3cd6 (IsA boodle money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "booger is a kind of mucus", "pln": ["(: cnet_isa_69e572b6c1 (IsA booger mucus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boogie is a kind of blue", "pln": ["(: cnet_isa_dd154deb7d (IsA boogie blue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boogie is a kind of jazz", "pln": ["(: cnet_isa_1cfea98609 (IsA boogie jazz) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boojum tree is a kind of candlewood", "pln": ["(: cnet_isa_065517c1f8 (IsA boojum_tree candlewood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "book is a kind of excellent source of information", "pln": ["(: cnet_isa_a7db29a650 (IsA book excellent_source_of_information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "book is a kind of product", "pln": ["(: cnet_isa_cef20ea040 (IsA book product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "book is a kind of collection", "pln": ["(: cnet_isa_3c7a3fc4c2 (IsA book collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "book is a kind of publication", "pln": ["(: cnet_isa_9589075130 (IsA book publication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "book is a kind of section", "pln": ["(: cnet_isa_e67ea7dad5 (IsA book section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "book agent is a kind of salesman", "pln": ["(: cnet_isa_3032576434 (IsA book_agent salesman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "book bag is a kind of bag", "pln": ["(: cnet_isa_a1a88e3311 (IsA book_bag bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "book fair is a kind of bazaar", "pln": ["(: cnet_isa_fc5f58dc96 (IsA book_fair bazaar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "book fair is a kind of fair", "pln": ["(: cnet_isa_638b0b134d (IsA book_fair fair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "book jacket is a kind of jacket", "pln": ["(: cnet_isa_cf2d5b0e16 (IsA book_jacket jacket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "book lung is a kind of respiratory organ", "pln": ["(: cnet_isa_616fc08f13 (IsA book_lung respiratory_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "book of knowledge is a kind of encyclopedia", "pln": ["(: cnet_isa_47ff61c99d (IsA book_of_knowledge encyclopedia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "book review is a kind of review", "pln": ["(: cnet_isa_f2a51bc493 (IsA book_review review) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "book scorpion is a kind of false scorpion", "pln": ["(: cnet_isa_80231994b3 (IsA book_scorpion false_scorpion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "book token is a kind of coupon", "pln": ["(: cnet_isa_62aaad7ba6 (IsA book_token coupon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "book value is a kind of value", "pln": ["(: cnet_isa_acb5447bba (IsA book_value value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bookbinder is a kind of craftsman", "pln": ["(: cnet_isa_315cc4b09c (IsA bookbinder craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bookbindery is a kind of workshop", "pln": ["(: cnet_isa_ec77c2b6db (IsA bookbindery workshop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bookbinding is a kind of handicraft", "pln": ["(: cnet_isa_3caadaa554 (IsA bookbinding handicraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bookcase is a kind of furniture", "pln": ["(: cnet_isa_5986c82932 (IsA bookcase furniture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bookclub is a kind of club", "pln": ["(: cnet_isa_d65ccf766d (IsA bookclub club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bookdealer is a kind of merchant", "pln": ["(: cnet_isa_9874b98008 (IsA bookdealer merchant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bookend is a kind of support", "pln": ["(: cnet_isa_621c0967ee (IsA bookend support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "booker is a kind of agent", "pln": ["(: cnet_isa_3617f68bde (IsA booker agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "booking is a kind of employment", "pln": ["(: cnet_isa_2b1a0eb225 (IsA booking employment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bookishness is a kind of studiousness", "pln": ["(: cnet_isa_548d44e0f2 (IsA bookishness studiousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bookkeeper is a kind of accountant", "pln": ["(: cnet_isa_4efd7d68ed (IsA bookkeeper accountant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bookkeeping is a kind of accountancy", "pln": ["(: cnet_isa_f877edb5bd (IsA bookkeeping accountancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "booklet is a kind of book", "pln": ["(: cnet_isa_44174c7186 (IsA booklet book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "booklouse is a kind of psocopterous insect", "pln": ["(: cnet_isa_ee8934ca67 (IsA booklouse psocopterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bookmaker is a kind of gambler", "pln": ["(: cnet_isa_b0ae8bea6a (IsA bookmaker gambler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bookmaker is a kind of maker", "pln": ["(: cnet_isa_736b8b5467 (IsA bookmaker maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bookmark is a kind of marker", "pln": ["(: cnet_isa_ca9a6e8696 (IsA bookmark marker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bookmobile is a kind of van", "pln": ["(: cnet_isa_f4c336816d (IsA bookmobile van) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bookplate is a kind of gummed label", "pln": ["(: cnet_isa_1647859b54 (IsA bookplate gummed_label) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "book is a kind of different size", "pln": ["(: cnet_isa_84b5dfa38f (IsA book different_size) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "book is a kind of printed paper", "pln": ["(: cnet_isa_c391d55686 (IsA book printed_paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "book is a kind of storage device", "pln": ["(: cnet_isa_7b5917e766 (IsA book storage_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bookseller is a kind of owner", "pln": ["(: cnet_isa_9788dc72a0 (IsA bookseller owner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bookshelf is a kind of shelf", "pln": ["(: cnet_isa_e0cb573244 (IsA bookshelf shelf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bookshop is a kind of shop", "pln": ["(: cnet_isa_3ce33749bc (IsA bookshop shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bookworm is a kind of reader", "pln": ["(: cnet_isa_6cfe0cf177 (IsA bookworm reader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boolean logic is a kind of symbolic logic", "pln": ["(: cnet_isa_6283dcb7a2 (IsA boolean_logic symbolic_logic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boolean operation is a kind of operation", "pln": ["(: cnet_isa_19543ce93b (IsA boolean_operation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boom is a kind of pole", "pln": ["(: cnet_isa_badfa91066 (IsA boom pole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boom is a kind of spar", "pln": ["(: cnet_isa_ba9e1eee04 (IsA boom spar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "boom is a kind of happening", "pln": ["(: cnet_isa_641b5fb1ac (IsA boom happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boom is a kind of noise", "pln": ["(: cnet_isa_89a9f7fef7 (IsA boom noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boom is a kind of prosperity", "pln": ["(: cnet_isa_2a5f752d38 (IsA boom prosperity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boom town is a kind of town", "pln": ["(: cnet_isa_65a5411297 (IsA boom_town town) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "boomerang is a kind of projectile", "pln": ["(: cnet_isa_3ad816f1c8 (IsA boomerang projectile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "boondoggle is a kind of waste", "pln": ["(: cnet_isa_f0c4610dce (IsA boondoggle waste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boorishness is a kind of discourtesy", "pln": ["(: cnet_isa_58475ee05a (IsA boorishness discourtesy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boorishness is a kind of inelegance", "pln": ["(: cnet_isa_b1f018169a (IsA boorishness inelegance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "boost is a kind of aid", "pln": ["(: cnet_isa_0199ac2eab (IsA boost aid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "boost is a kind of push", "pln": ["(: cnet_isa_e1bb5b303d (IsA boost push) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "booster is a kind of dose", "pln": ["(: cnet_isa_1918da3865 (IsA booster dose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "booster is a kind of rocket", "pln": ["(: cnet_isa_eb77482e2b (IsA booster rocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "booster is a kind of thief", "pln": ["(: cnet_isa_76945667ae (IsA booster thief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "booster is a kind of amplifier", "pln": ["(: cnet_isa_971df742f1 (IsA booster amplifier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boot is a kind of torture", "pln": ["(: cnet_isa_5eb65d6b64 (IsA boot torture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boot is a kind of compartment", "pln": ["(: cnet_isa_a0c844f477 (IsA boot compartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boot is a kind of footwear", "pln": ["(: cnet_isa_d6270dc1a5 (IsA boot footwear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boot is a kind of instrument of torture", "pln": ["(: cnet_isa_0bd8adb9e9 (IsA boot instrument_of_torture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boot is a kind of shell", "pln": ["(: cnet_isa_d7843106c5 (IsA boot shell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "boot camp is a kind of camp", "pln": ["(: cnet_isa_d7f04a2955 (IsA boot_camp camp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bootblack is a kind of unskilled person", "pln": ["(: cnet_isa_82f2318139 (IsA bootblack unskilled_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bootee is a kind of slipper", "pln": ["(: cnet_isa_ec29dc354e (IsA bootee slipper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "booth is a kind of closet", "pln": ["(: cnet_isa_e816d107e3 (IsA booth closet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "booth is a kind of shop", "pln": ["(: cnet_isa_24124dc76f (IsA booth shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "booth is a kind of table", "pln": ["(: cnet_isa_b3b0d988ef (IsA booth table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boothose is a kind of stocking", "pln": ["(: cnet_isa_deaeb1ede6 (IsA boothose stocking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bootjack is a kind of device", "pln": ["(: cnet_isa_28e94cfa67 (IsA bootjack device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bootlace is a kind of lace", "pln": ["(: cnet_isa_bf00d8149f (IsA bootlace lace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bootleg is a kind of covering", "pln": ["(: cnet_isa_3655cc1a9b (IsA bootleg covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bootlegger is a kind of criminal", "pln": ["(: cnet_isa_05f60c9479 (IsA bootlegger criminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bootlegging is a kind of selling", "pln": ["(: cnet_isa_98a04094b1 (IsA bootlegging selling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bootmaker is a kind of cobbler", "pln": ["(: cnet_isa_3b0f917890 (IsA bootmaker cobbler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bootstrap is a kind of strap", "pln": ["(: cnet_isa_27224e553d (IsA bootstrap strap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "boott s goldenrod is a kind of goldenrod", "pln": ["(: cnet_isa_66b256d691 (IsA boott_s_goldenrod goldenrod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bop is a kind of jazz", "pln": ["(: cnet_isa_218279b128 (IsA bop jazz) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "borage is a kind of herb", "pln": ["(: cnet_isa_4b941ee480 (IsA borage herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boraginaceae is a kind of plant family", "pln": ["(: cnet_isa_d1b56a4fe5 (IsA boraginaceae plant_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "borago is a kind of plant genus", "pln": ["(: cnet_isa_d9b6eae683 (IsA borago plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "borassus is a kind of monocot genus", "pln": ["(: cnet_isa_6039914909 (IsA borassus monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "borate is a kind of salt", "pln": ["(: cnet_isa_100ac7676f (IsA borate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "borax is a kind of mineral", "pln": ["(: cnet_isa_2402e1cff4 (IsA borax mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bordeaux is a kind of wine", "pln": ["(: cnet_isa_cfaa2f9ba3 (IsA bordeaux wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bordeaux mixture is a kind of antifungal", "pln": ["(: cnet_isa_a2a59407cb (IsA bordeaux_mixture antifungal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bordelaise is a kind of sauce", "pln": ["(: cnet_isa_66c775614d (IsA bordelaise sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "border is a kind of edge", "pln": ["(: cnet_isa_a4c273a4fb (IsA border edge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "border collie is a kind of shepherd dog", "pln": ["(: cnet_isa_2f8a7936f4 (IsA border_collie shepherd_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "border patrol is a kind of patrol", "pln": ["(: cnet_isa_2fd0b74f57 (IsA border_patrol patrol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "border patrolman is a kind of lawman", "pln": ["(: cnet_isa_b2909df6c6 (IsA border_patrolman lawman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "border terrier is a kind of terrier", "pln": ["(: cnet_isa_55032613b2 (IsA border_terrier terrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "borderer is a kind of inhabitant", "pln": ["(: cnet_isa_283b7e7919 (IsA borderer inhabitant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "borderland is a kind of district", "pln": ["(: cnet_isa_5a8cf232b6 (IsA borderland district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "borderline intelligence is a kind of intelligence quotient", "pln": ["(: cnet_isa_56d9fa015d (IsA borderline_intelligence intelligence_quotient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "borderline schizophrenia is a kind of schizophrenia", "pln": ["(: cnet_isa_2a4bab925d (IsA borderline_schizophrenia schizophrenia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "border is a kind of line between country", "pln": ["(: cnet_isa_fb59599055 (IsA border line_between_country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bore is a kind of diameter", "pln": ["(: cnet_isa_490784d2a3 (IsA bore diameter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bore is a kind of excavation", "pln": ["(: cnet_isa_1a19becb0b (IsA bore excavation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bore is a kind of unpleasant person", "pln": ["(: cnet_isa_ce5b8fba2e (IsA bore unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bore bit is a kind of drill", "pln": ["(: cnet_isa_6e6b4f2954 (IsA bore_bit drill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boredom is a kind of emotion", "pln": ["(: cnet_isa_f144a5a9db (IsA boredom emotion) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boredom is a kind of dissatisfaction", "pln": ["(: cnet_isa_2732b0eb93 (IsA boredom dissatisfaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boric acid is a kind of acid", "pln": ["(: cnet_isa_85d4327796 (IsA boric_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boring is a kind of production", "pln": ["(: cnet_isa_173bbf72aa (IsA boring production) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "boringness is a kind of dullness", "pln": ["(: cnet_isa_9452fec8d8 (IsA boringness dullness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "born again christian is a kind of christian", "pln": ["(: cnet_isa_f7fc245132 (IsA born_again_christian christian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bornean is a kind of malaysian", "pln": ["(: cnet_isa_6010f8aa13 (IsA bornean malaysian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bornite is a kind of mineral", "pln": ["(: cnet_isa_bfd70835fc (IsA bornite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boron is a kind of chemical element", "pln": ["(: cnet_isa_f8a4861300 (IsA boron chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boron chamber is a kind of ionization chamber", "pln": ["(: cnet_isa_7f0741e048 (IsA boron_chamber ionization_chamber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boron counter tube is a kind of proportional counter tube", "pln": ["(: cnet_isa_943fa8ee69 (IsA boron_counter_tube proportional_counter_tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boron trifluoride is a kind of fluoride", "pln": ["(: cnet_isa_c9f923518f (IsA boron_trifluoride fluoride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "borosilicate is a kind of salt", "pln": ["(: cnet_isa_7d3c3d453c (IsA borosilicate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "borough is a kind of administrative district", "pln": ["(: cnet_isa_86e35d63ac (IsA borough administrative_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "borough is a kind of town", "pln": ["(: cnet_isa_c4bcfd2d9d (IsA borough town) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "borough english is a kind of inheritance", "pln": ["(: cnet_isa_61e4f9b072 (IsA borough_english inheritance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "borrelia is a kind of spirochete", "pln": ["(: cnet_isa_e31a612df3 (IsA borrelia spirochete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "borrelia burgdorferi is a kind of spirochete", "pln": ["(: cnet_isa_c9b0cb28b1 (IsA borrelia_burgdorferi spirochete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "borrow pit is a kind of pit", "pln": ["(: cnet_isa_204b608f2b (IsA borrow_pit pit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "borrower is a kind of recipient", "pln": ["(: cnet_isa_80b005a676 (IsA borrower recipient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "borrowing is a kind of appropriation", "pln": ["(: cnet_isa_2f26f9a345 (IsA borrowing appropriation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "borrowing is a kind of transaction", "pln": ["(: cnet_isa_46d9515a39 (IsA borrowing transaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "borrowing cost is a kind of cost", "pln": ["(: cnet_isa_6fe445ab57 (IsA borrowing_cost cost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "borsch is a kind of soup", "pln": ["(: cnet_isa_8d85ff22e1 (IsA borsch soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "borscht circuit is a kind of resort area", "pln": ["(: cnet_isa_d0379d5ccc (IsA borscht_circuit resort_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "borstal is a kind of reformatory", "pln": ["(: cnet_isa_028c126638 (IsA borstal reformatory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "borzoi is a kind of wolfhound", "pln": ["(: cnet_isa_19217fdae8 (IsA borzoi wolfhound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bos is a kind of mammal genus", "pln": ["(: cnet_isa_d2d4be391a (IsA bos mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bosc is a kind of pear", "pln": ["(: cnet_isa_d9e1099f06 (IsA bosc pear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bose einstein statistic is a kind of law", "pln": ["(: cnet_isa_c7b9ed9eaa (IsA bose_einstein_statistic law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "boselaphus is a kind of mammal genus", "pln": ["(: cnet_isa_353986df29 (IsA boselaphus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bosk is a kind of forest", "pln": ["(: cnet_isa_ab4a276cd7 (IsA bosk forest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boskop man is a kind of homo sapien", "pln": ["(: cnet_isa_6a7fac8b98 (IsA boskop_man homo_sapien) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bosom is a kind of cloth covering", "pln": ["(: cnet_isa_9d9ee70ecf (IsA bosom cloth_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bosom is a kind of breast", "pln": ["(: cnet_isa_5893d5c167 (IsA bosom breast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bosom is a kind of privacy", "pln": ["(: cnet_isa_7bec3f3e0e (IsA bosom privacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boson is a kind of elementary particle", "pln": ["(: cnet_isa_933cace4ac (IsA boson elementary_particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "boson is a kind of particle", "pln": ["(: cnet_isa_f26310584b (IsA boson particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boss is a kind of person", "pln": ["(: cnet_isa_d90d1caef6 (IsA boss person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boss is a kind of employer", "pln": ["(: cnet_isa_815a798e4f (IsA boss employer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boss is a kind of leader", "pln": ["(: cnet_isa_e0100d15d5 (IsA boss leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bossism is a kind of domination", "pln": ["(: cnet_isa_95ce221c42 (IsA bossism domination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boston baked bean is a kind of dish", "pln": ["(: cnet_isa_386d70da66 (IsA boston_baked_bean dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boston bull is a kind of terrier", "pln": ["(: cnet_isa_d09163e634 (IsA boston_bull terrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "boston cream pie is a kind of cake", "pln": ["(: cnet_isa_c44137c717 (IsA boston_cream_pie cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boston fern is a kind of sword fern", "pln": ["(: cnet_isa_eebb5c28f7 (IsA boston_fern sword_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boston ivy is a kind of vine", "pln": ["(: cnet_isa_5b4f2a17a3 (IsA boston_ivy vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boston lettuce is a kind of butterhead lettuce", "pln": ["(: cnet_isa_b2acc0abd1 (IsA boston_lettuce butterhead_lettuce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boston rocker is a kind of rocking chair", "pln": ["(: cnet_isa_35ab6d5d60 (IsA boston_rocker rocking_chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bostonian is a kind of american", "pln": ["(: cnet_isa_17cff158b9 (IsA bostonian american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boswell is a kind of supporter", "pln": ["(: cnet_isa_624adefc0f (IsA boswell supporter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boswellia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_d4d7c82749 (IsA boswellia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boswellia carteri is a kind of incense tree", "pln": ["(: cnet_isa_00c9c59981 (IsA boswellia_carteri incense_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bot is a kind of larva", "pln": ["(: cnet_isa_1f07063410 (IsA bot larva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bota is a kind of wine bottle", "pln": ["(: cnet_isa_4762345572 (IsA bota wine_bottle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "botanical is a kind of drug", "pln": ["(: cnet_isa_6a48ee8ff7 (IsA botanical drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "botanist is a kind of biologist", "pln": ["(: cnet_isa_4aeec601d4 (IsA botanist biologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "botany is a kind of biology", "pln": ["(: cnet_isa_faeac4c3e7 (IsA botany biology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "botaurus is a kind of bird genus", "pln": ["(: cnet_isa_c4e07c5212 (IsA botaurus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "botfly is a kind of gadfly", "pln": ["(: cnet_isa_c966bbc9ef (IsA botfly gadfly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "both dress and pant is a kind of type of clothe", "pln": ["(: cnet_isa_d09c0cbd03 (IsA both_dress_and_pant type_of_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "both embassy and vote is a kind of political term", "pln": ["(: cnet_isa_27103bca0e (IsA both_embassy_and_vote political_term) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "both kitten and dog is a kind of animal", "pln": ["(: cnet_isa_d2ae0da657 (IsA both_kitten_and_dog animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "both meat and potatoe is a kind of type of food", "pln": ["(: cnet_isa_1d0aa45c5e (IsA both_meat_and_potatoe type_of_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "both muffin and celery is a kind of food", "pln": ["(: cnet_isa_3763b055e4 (IsA both_muffin_and_celery food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "both pound cake and furitcake is a kind of type of cake", "pln": ["(: cnet_isa_bf7754f8c0 (IsA both_pound_cake_and_furitcake type_of_cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "both radio and newspaper is a kind of type of media", "pln": ["(: cnet_isa_404ca213a4 (IsA both_radio_and_newspaper type_of_media) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "both salad and pizza is a kind of food", "pln": ["(: cnet_isa_63450c4156 (IsA both_salad_and_pizza food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "both shrub and tomatoe is a kind of type of plant", "pln": ["(: cnet_isa_5f1c361d36 (IsA both_shrub_and_tomatoe type_of_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "both snake and skunk is a kind of animal", "pln": ["(: cnet_isa_f7f2bef2d4 (IsA both_snake_and_skunk animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "both vegetable and beef is a kind of type of food", "pln": ["(: cnet_isa_b7912339f8 (IsA both_vegetable_and_beef type_of_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bothidae is a kind of fish family", "pln": ["(: cnet_isa_8c037acdf3 (IsA bothidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bothrop is a kind of reptile genus", "pln": ["(: cnet_isa_a814e51b68 (IsA bothrop reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "botrychium is a kind of fern genus", "pln": ["(: cnet_isa_0f8cb702ba (IsA botrychium fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "botswana monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_2c21a9e03d (IsA botswana_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bottle is a kind of container", "pln": ["(: cnet_isa_37ac30773c (IsA bottle container) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bottle is a kind of vessel", "pln": ["(: cnet_isa_1d4d2580c1 (IsA bottle vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bottle is a kind of containerful", "pln": ["(: cnet_isa_2a9ca7b23b (IsA bottle containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bottle bank is a kind of recycling bin", "pln": ["(: cnet_isa_5c35dac5d4 (IsA bottle_bank recycling_bin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bottle bill is a kind of bill", "pln": ["(: cnet_isa_721ab1d27a (IsA bottle_bill bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bottle collection is a kind of collection", "pln": ["(: cnet_isa_8c72af2838 (IsA bottle_collection collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bottle collection is a kind of recycling", "pln": ["(: cnet_isa_442a24afb4 (IsA bottle_collection recycling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bottle gourd is a kind of gourd", "pln": ["(: cnet_isa_44d5c570a3 (IsA bottle_gourd gourd) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bottle green is a kind of green", "pln": ["(: cnet_isa_df01055f5a (IsA bottle_green green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bottle nosed whale is a kind of beaked whale", "pln": ["(: cnet_isa_8b97c1b17f (IsA bottle_nosed_whale beaked_whale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bottle opener is a kind of opener", "pln": ["(: cnet_isa_dc46cb8c5e (IsA bottle_opener opener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bottle tree is a kind of tree", "pln": ["(: cnet_isa_423a7c62dc (IsA bottle_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bottlebrush is a kind of brush", "pln": ["(: cnet_isa_7db8aa0c4f (IsA bottlebrush brush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bottlecap is a kind of cap", "pln": ["(: cnet_isa_c40023e65f (IsA bottlecap cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bottled water is a kind of drinking water", "pln": ["(: cnet_isa_9d068ae128 (IsA bottled_water drinking_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bottleneck is a kind of part", "pln": ["(: cnet_isa_a1b059742b (IsA bottleneck part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bottlenose dolphin is a kind of dolphin", "pln": ["(: cnet_isa_dd386ba823 (IsA bottlenose_dolphin dolphin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "bottles is a kind of specific type of trash", "pln": ["(: cnet_isa_20ca5b4f59 (IsA bottles specific_type_of_trash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bottler is a kind of manufacturer", "pln": ["(: cnet_isa_fbcfc32422 (IsA bottler manufacturer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bottle is a kind of one type of container", "pln": ["(: cnet_isa_86b03e5eda (IsA bottle one_type_of_container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bottle is a kind of specific type of trash", "pln": ["(: cnet_isa_2b588d9245 (IsA bottle specific_type_of_trash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bottling plant is a kind of plant", "pln": ["(: cnet_isa_adf127488b (IsA bottling_plant plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bottom is a kind of cargo ship", "pln": ["(: cnet_isa_5727259fb6 (IsA bottom cargo_ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bottom is a kind of region", "pln": ["(: cnet_isa_f09c4fc1a1 (IsA bottom region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bottom is a kind of side", "pln": ["(: cnet_isa_c9b0ccb949 (IsA bottom side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bottom is a kind of turn", "pln": ["(: cnet_isa_37660b2f22 (IsA bottom turn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bottom dog is a kind of subordinate", "pln": ["(: cnet_isa_0e95966939 (IsA bottom_dog subordinate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bottom feeder is a kind of fish", "pln": ["(: cnet_isa_00a4e9de98 (IsA bottom_feeder fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bottom feeder is a kind of scavenger", "pln": ["(: cnet_isa_f0beb0362e (IsA bottom_feeder scavenger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bottom feeder is a kind of opportunist", "pln": ["(: cnet_isa_dcd698c019 (IsA bottom_feeder opportunist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bottom fermentation is a kind of zymosis", "pln": ["(: cnet_isa_a4f7b98fe2 (IsA bottom_fermentation zymosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bottom fermenting yeast is a kind of brewer s yeast", "pln": ["(: cnet_isa_b2296f9ad3 (IsA bottom_fermenting_yeast brewer_s_yeast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bottom line is a kind of point", "pln": ["(: cnet_isa_0ee0486975 (IsA bottom_line point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bottom line is a kind of line", "pln": ["(: cnet_isa_032428a953 (IsA bottom_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bottom lurker is a kind of fish", "pln": ["(: cnet_isa_bbcb115c7a (IsA bottom_lurker fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bottom quark is a kind of quark", "pln": ["(: cnet_isa_ca96dbf47e (IsA bottom_quark quark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bottom rot is a kind of plant disease", "pln": ["(: cnet_isa_4e5e006091 (IsA bottom_rot plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bottom rot fungus is a kind of fungus", "pln": ["(: cnet_isa_5e6d35ff8a (IsA bottom_rot_fungus fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bottom round is a kind of pot roast", "pln": ["(: cnet_isa_19d88746ff (IsA bottom_round pot_roast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bottomland is a kind of land", "pln": ["(: cnet_isa_8d8402b088 (IsA bottomland land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bottomlessness is a kind of deepness", "pln": ["(: cnet_isa_0762da6356 (IsA bottomlessness deepness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "botulin is a kind of bacterial toxin", "pln": ["(: cnet_isa_08a3446702 (IsA botulin bacterial_toxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "botulin is a kind of bioweapon", "pln": ["(: cnet_isa_c12faf51b4 (IsA botulin bioweapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "botulinum toxin is a kind of neurotoxin", "pln": ["(: cnet_isa_104a162280 (IsA botulinum_toxin neurotoxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "botulinus is a kind of eubacteria", "pln": ["(: cnet_isa_edc847a327 (IsA botulinus eubacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "botulism is a kind of food poisoning", "pln": ["(: cnet_isa_dab25cb09c (IsA botulism food_poisoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boucle is a kind of fabric", "pln": ["(: cnet_isa_8a5f95e7f6 (IsA boucle fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boudoir is a kind of bedroom", "pln": ["(: cnet_isa_85f56404c3 (IsA boudoir bedroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bouffant is a kind of hairdo", "pln": ["(: cnet_isa_5295f5bc7a (IsA bouffant hairdo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bougainvillea is a kind of vine", "pln": ["(: cnet_isa_2b1f14cd60 (IsA bougainvillea vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bough is a kind of limb", "pln": ["(: cnet_isa_ac51243e61 (IsA bough limb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bouillabaisse is a kind of fish stew", "pln": ["(: cnet_isa_8adabad3d0 (IsA bouillabaisse fish_stew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bouillon is a kind of broth", "pln": ["(: cnet_isa_5aa3000001 (IsA bouillon broth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bouillon cube is a kind of flavorer", "pln": ["(: cnet_isa_990788a0fe (IsA bouillon_cube flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boulder is a kind of rock", "pln": ["(: cnet_isa_4e76b2fe65 (IsA boulder rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "boulevard is a kind of street", "pln": ["(: cnet_isa_1c015bcfcf (IsA boulevard street) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boulevardier is a kind of visitor", "pln": ["(: cnet_isa_5331d370c1 (IsA boulevardier visitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boulle is a kind of embellishment", "pln": ["(: cnet_isa_d8864f03e0 (IsA boulle embellishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bounce is a kind of elasticity", "pln": ["(: cnet_isa_f594158284 (IsA bounce elasticity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bounce is a kind of recoil", "pln": ["(: cnet_isa_8964f8a918 (IsA bounce recoil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bouncer is a kind of guard", "pln": ["(: cnet_isa_3f0638d43e (IsA bouncer guard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bouncing betty is a kind of land mine", "pln": ["(: cnet_isa_10f1539bbe (IsA bouncing_betty land_mine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bouncing putty is a kind of silicone", "pln": ["(: cnet_isa_4d49c1a084 (IsA bouncing_putty silicone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bound morpheme is a kind of morpheme", "pln": ["(: cnet_isa_74a9b8b795 (IsA bound_morpheme morpheme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boundary is a kind of extremity", "pln": ["(: cnet_isa_415d1a72f8 (IsA boundary extremity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boundary is a kind of line", "pln": ["(: cnet_isa_01527cf855 (IsA boundary line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boundary condition is a kind of condition", "pln": ["(: cnet_isa_d9dfed84de (IsA boundary_condition condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boundary layer is a kind of physical phenomenon", "pln": ["(: cnet_isa_dcbda8119f (IsA boundary_layer physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "boundary line is a kind of boundary", "pln": ["(: cnet_isa_f9ae238540 (IsA boundary_line boundary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bounder is a kind of athlete", "pln": ["(: cnet_isa_462a3432da (IsA bounder athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bounty is a kind of generosity", "pln": ["(: cnet_isa_2d7225528a (IsA bounty generosity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bounty is a kind of reward", "pln": ["(: cnet_isa_4aae338545 (IsA bounty reward) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bounty hunter is a kind of hunter", "pln": ["(: cnet_isa_1d4bdf4b78 (IsA bounty_hunter hunter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bounty hunter is a kind of pursuer", "pln": ["(: cnet_isa_16b2764433 (IsA bounty_hunter pursuer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bouquet is a kind of flower arrangement", "pln": ["(: cnet_isa_6bccf21166 (IsA bouquet flower_arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bouquet is a kind of olfactory property", "pln": ["(: cnet_isa_c8088d9448 (IsA bouquet olfactory_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bourbon is a kind of whiskey", "pln": ["(: cnet_isa_dd8d4e4fd7 (IsA bourbon whiskey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bourbon is a kind of dynasty", "pln": ["(: cnet_isa_bb6e5118e7 (IsA bourbon dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bourbon is a kind of reactionary", "pln": ["(: cnet_isa_c786473241 (IsA bourbon reactionary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bourbon is a kind of ruler", "pln": ["(: cnet_isa_c3ce3b2636 (IsA bourbon ruler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bourgeois is a kind of commoner", "pln": ["(: cnet_isa_08d9d2bf13 (IsA bourgeois commoner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bourguignon is a kind of sauce", "pln": ["(: cnet_isa_847ef4e14c (IsA bourguignon sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bourn is a kind of goal", "pln": ["(: cnet_isa_1c105f3316 (IsA bourn goal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bourn is a kind of boundary", "pln": ["(: cnet_isa_e86bcb703a (IsA bourn boundary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "bouvier des flandres is a kind of shepherd dog", "pln": ["(: cnet_isa_b2ec97f5db (IsA bouvier_des_flandres shepherd_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bourtree is a kind of elder", "pln": ["(: cnet_isa_718ea663cb (IsA bourtree elder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boustrophedon is a kind of orthography", "pln": ["(: cnet_isa_271ebf5e42 (IsA boustrophedon orthography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bout is a kind of contest", "pln": ["(: cnet_isa_5151ee0aa0 (IsA bout contest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bout is a kind of time period", "pln": ["(: cnet_isa_2ab914a9a0 (IsA bout time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bouteloua is a kind of monocot genus", "pln": ["(: cnet_isa_89fb93f411 (IsA bouteloua monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boutique is a kind of shop", "pln": ["(: cnet_isa_73b061283e (IsA boutique shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boutonniere is a kind of adornment", "pln": ["(: cnet_isa_d4f2d5d4cc (IsA boutonniere adornment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bouvier des flandre is a kind of shepherd dog", "pln": ["(: cnet_isa_41f6e1c598 (IsA bouvier_des_flandre shepherd_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bouyei is a kind of tai", "pln": ["(: cnet_isa_b75cc37371 (IsA bouyei tai) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bovid is a kind of ruminant", "pln": ["(: cnet_isa_dedbf4fe7a (IsA bovid ruminant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bovidae is a kind of mammal family", "pln": ["(: cnet_isa_ec813858df (IsA bovidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bovinae is a kind of mammal family", "pln": ["(: cnet_isa_5e289469dc (IsA bovinae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bovine is a kind of bovid", "pln": ["(: cnet_isa_b3a6670e4a (IsA bovine bovid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bovine spongiform encephalitis is a kind of animal disease", "pln": ["(: cnet_isa_d3afcf6fd3 (IsA bovine_spongiform_encephalitis animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bovini is a kind of tribe", "pln": ["(: cnet_isa_d7be68b5b3 (IsA bovini tribe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bow is a kind of stroke", "pln": ["(: cnet_isa_05dae2fbb4 (IsA bow stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bow is a kind of decoration", "pln": ["(: cnet_isa_89bbf30553 (IsA bow decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bow is a kind of front", "pln": ["(: cnet_isa_07c12f50e5 (IsA bow front) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bow is a kind of knot", "pln": ["(: cnet_isa_d93c30b77b (IsA bow knot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bow is a kind of stick", "pln": ["(: cnet_isa_dc629a9988 (IsA bow stick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bow is a kind of weapon", "pln": ["(: cnet_isa_9b2792ec5c (IsA bow weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bow is a kind of gesture", "pln": ["(: cnet_isa_25be16f896 (IsA bow gesture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bow is a kind of reverence", "pln": ["(: cnet_isa_b5ba2e7154 (IsA bow reverence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bow is a kind of thank", "pln": ["(: cnet_isa_3dbaa3b5e2 (IsA bow thank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bow is a kind of curve", "pln": ["(: cnet_isa_f678490b92 (IsA bow curve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bow and arrow is a kind of weapon", "pln": ["(: cnet_isa_d7fe23b1d3 (IsA bow_and_arrow weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bow leg is a kind of disability", "pln": ["(: cnet_isa_e825b4cc6e (IsA bow_leg disability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bow tie is a kind of necktie", "pln": ["(: cnet_isa_ab90747ad2 (IsA bow_tie necktie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bow wow is a kind of bark", "pln": ["(: cnet_isa_102534c4d9 (IsA bow_wow bark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowdleriser is a kind of editor", "pln": ["(: cnet_isa_39717ecb85 (IsA bowdleriser editor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowdlerism is a kind of censoring", "pln": ["(: cnet_isa_bd30003647 (IsA bowdlerism censoring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowdlerization is a kind of expurgation", "pln": ["(: cnet_isa_53ecd4db59 (IsA bowdlerization expurgation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowdlerization is a kind of writing", "pln": ["(: cnet_isa_cd33525302 (IsA bowdlerization writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowed stringed instrument is a kind of stringed instrument", "pln": ["(: cnet_isa_ba504b8e97 (IsA bowed_stringed_instrument stringed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowel movement is a kind of defecation", "pln": ["(: cnet_isa_039739ddd7 (IsA bowel_movement defecation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowel is a kind of center", "pln": ["(: cnet_isa_bbb65193a3 (IsA bowel center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bower actinidia is a kind of vine", "pln": ["(: cnet_isa_575a64cbbe (IsA bower_actinidia vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bowerbird is a kind of oscine", "pln": ["(: cnet_isa_1ff864c341 (IsA bowerbird oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bowfin is a kind of ganoid", "pln": ["(: cnet_isa_970e7a2822 (IsA bowfin ganoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowhead is a kind of baleen whale", "pln": ["(: cnet_isa_678fb465d9 (IsA bowhead baleen_whale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowie knife is a kind of knife", "pln": ["(: cnet_isa_21fb61acc6 (IsA bowie_knife knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowiea is a kind of liliid monocot genus", "pln": ["(: cnet_isa_d68335b53c (IsA bowiea liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowing is a kind of playing", "pln": ["(: cnet_isa_18581e29b2 (IsA bowing playing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowl is a kind of ball", "pln": ["(: cnet_isa_9d42c41925 (IsA bowl ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowl is a kind of container", "pln": ["(: cnet_isa_ad738cdef1 (IsA bowl container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowl is a kind of dish", "pln": ["(: cnet_isa_c6052d8092 (IsA bowl dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bowl is a kind of vessel", "pln": ["(: cnet_isa_e32a8e9bcc (IsA bowl vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bowl is a kind of containerful", "pln": ["(: cnet_isa_88a703c8b6 (IsA bowl containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bowl is a kind of concave shape", "pln": ["(: cnet_isa_64a03a9245 (IsA bowl concave_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowleg is a kind of disability", "pln": ["(: cnet_isa_ab1bae0a7e (IsA bowleg disability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowleg is a kind of leg", "pln": ["(: cnet_isa_1edb37e820 (IsA bowleg leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowler is a kind of cricketer", "pln": ["(: cnet_isa_3f5f6c95d6 (IsA bowler cricketer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowler is a kind of player", "pln": ["(: cnet_isa_97c9fe8f17 (IsA bowler player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowler hat is a kind of hat", "pln": ["(: cnet_isa_5b5349b9ef (IsA bowler_hat hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowline is a kind of loop knot", "pln": ["(: cnet_isa_06fc0d2066 (IsA bowline loop_knot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowling is a kind of game", "pln": ["(: cnet_isa_47d92689cb (IsA bowling game) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowling is a kind of sport", "pln": ["(: cnet_isa_be9dbef60e (IsA bowling sport) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowling is a kind of playing", "pln": ["(: cnet_isa_215f79b388 (IsA bowling playing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowling is a kind of throw", "pln": ["(: cnet_isa_f2c376cb9f (IsA bowling throw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowling alley is a kind of building", "pln": ["(: cnet_isa_e0fe92eaf7 (IsA bowling_alley building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bowling alley is a kind of lane", "pln": ["(: cnet_isa_4aae9fb123 (IsA bowling_alley lane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowling ball is a kind of ball", "pln": ["(: cnet_isa_7aa8b47d62 (IsA bowling_ball ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowling equipment is a kind of game equipment", "pln": ["(: cnet_isa_c37836d44f (IsA bowling_equipment game_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowling green is a kind of playing field", "pln": ["(: cnet_isa_f3f3dea567 (IsA bowling_green playing_field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowling league is a kind of league", "pln": ["(: cnet_isa_2531a4696a (IsA bowling_league league) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowling pin is a kind of bowling equipment", "pln": ["(: cnet_isa_6b2a207739 (IsA bowling_pin bowling_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowling score is a kind of score", "pln": ["(: cnet_isa_9023955350 (IsA bowling_score score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowling shoe is a kind of shoe", "pln": ["(: cnet_isa_d629062517 (IsA bowling_shoe shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowman s capsule is a kind of membrane", "pln": ["(: cnet_isa_49f096fb64 (IsA bowman_s_capsule membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bowsprit is a kind of spar", "pln": ["(: cnet_isa_89529a6824 (IsA bowsprit spar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bowstring is a kind of cord", "pln": ["(: cnet_isa_cc8509ecd9 (IsA bowstring cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bowstring hemp is a kind of natural fiber", "pln": ["(: cnet_isa_53093ccd41 (IsA bowstring_hemp natural_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowstring hemp is a kind of hemp", "pln": ["(: cnet_isa_0af6ba5691 (IsA bowstring_hemp hemp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bowtie pasta is a kind of pasta", "pln": ["(: cnet_isa_f9e48a4caa (IsA bowtie_pasta pasta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "box is a kind of container", "pln": ["(: cnet_isa_abbf4c7db2 (IsA box container) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "box is a kind of blow", "pln": ["(: cnet_isa_34280c4496 (IsA box blow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "box is a kind of area", "pln": ["(: cnet_isa_1b41d690fd (IsA box area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "box is a kind of compartment", "pln": ["(: cnet_isa_6f5653f742 (IsA box compartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "box is a kind of seat", "pln": ["(: cnet_isa_e6fe579bd4 (IsA box seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "box is a kind of shrub", "pln": ["(: cnet_isa_be0b1c5f6d (IsA box shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "box is a kind of containerful", "pln": ["(: cnet_isa_77234ced45 (IsA box containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "box is a kind of rectangle", "pln": ["(: cnet_isa_4cf958637d (IsA box rectangle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "box beam is a kind of beam", "pln": ["(: cnet_isa_e130871e15 (IsA box_beam beam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "box calf is a kind of calf", "pln": ["(: cnet_isa_9697a9f884 (IsA box_calf calf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "box camera is a kind of camera", "pln": ["(: cnet_isa_1045606332 (IsA box_camera camera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "box coat is a kind of coat", "pln": ["(: cnet_isa_c1d845db43 (IsA box_coat coat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "box elder is a kind of maple", "pln": ["(: cnet_isa_6b8ea4ceed (IsA box_elder maple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "box huckleberry is a kind of huckleberry", "pln": ["(: cnet_isa_4b12e960e6 (IsA box_huckleberry huckleberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "box kite is a kind of kite", "pln": ["(: cnet_isa_f92bb5b165 (IsA box_kite kite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "box number is a kind of mailing address", "pln": ["(: cnet_isa_1573140cc6 (IsA box_number mailing_address) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "box office is a kind of office", "pln": ["(: cnet_isa_f6bc3da8d4 (IsA box_office office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "box office is a kind of gross", "pln": ["(: cnet_isa_b7c1cb7e24 (IsA box_office gross) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "box pleat is a kind of pleat", "pln": ["(: cnet_isa_107e6de735 (IsA box_pleat pleat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "box seat is a kind of seat", "pln": ["(: cnet_isa_1fe9e7c91c (IsA box_seat seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "box spring is a kind of bedspring", "pln": ["(: cnet_isa_2c146b8853 (IsA box_spring bedspring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "box turtle is a kind of turtle", "pln": ["(: cnet_isa_584af355b6 (IsA box_turtle turtle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "box wrench is a kind of wrench", "pln": ["(: cnet_isa_faa338e590 (IsA box_wrench wrench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "boxcar is a kind of freight car", "pln": ["(: cnet_isa_3d20424a11 (IsA boxcar freight_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boxcar is a kind of twelve", "pln": ["(: cnet_isa_c4e7d6a313 (IsA boxcar twelve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "boxer is a kind of working dog", "pln": ["(: cnet_isa_8ba7afb1ec (IsA boxer working_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "boxer is a kind of chinese", "pln": ["(: cnet_isa_52a76e324d (IsA boxer chinese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boxer is a kind of combatant", "pln": ["(: cnet_isa_6f9b22ed11 (IsA boxer combatant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boxfish is a kind of plectognath", "pln": ["(: cnet_isa_91080ae0f9 (IsA boxfish plectognath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boxing is a kind of contact sport", "pln": ["(: cnet_isa_d6c723db3f (IsA boxing contact_sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boxing day is a kind of legal holiday", "pln": ["(: cnet_isa_acc3b30faf (IsA boxing_day legal_holiday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boxing equipment is a kind of sport equipment", "pln": ["(: cnet_isa_327769254a (IsA boxing_equipment sport_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boxing glove is a kind of boxing equipment", "pln": ["(: cnet_isa_9dfe01804e (IsA boxing_glove boxing_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boxing match is a kind of match", "pln": ["(: cnet_isa_e8ffd4ad9d (IsA boxing_match match) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boxing ring is a kind of ring", "pln": ["(: cnet_isa_a8d9f537cf (IsA boxing_ring ring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boxwood is a kind of wood", "pln": ["(: cnet_isa_1c702f9046 (IsA boxwood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boy is a kind of man", "pln": ["(: cnet_isa_675a8ebc23 (IsA boy man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boy making sandwich is a kind of making sandwich", "pln": ["(: cnet_isa_885449c7b4 (IsA boy_making_sandwich making_sandwich) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boy scout is a kind of innocent", "pln": ["(: cnet_isa_001afcb88e (IsA boy_scout innocent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boy scout is a kind of scout", "pln": ["(: cnet_isa_5c89a4b669 (IsA boy_scout scout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boy scout is a kind of movement", "pln": ["(: cnet_isa_516a551560 (IsA boy_scout movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boy scout of america is a kind of corporation", "pln": ["(: cnet_isa_ec0e525926 (IsA boy_scout_of_america corporation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boy skateboarding is a kind of skateboarding", "pln": ["(: cnet_isa_befcc6ee64 (IsA boy_skateboarding skateboarding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boy wonder is a kind of male", "pln": ["(: cnet_isa_421cc41755 (IsA boy_wonder male) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boy wonder is a kind of prodigy", "pln": ["(: cnet_isa_24c7e301a3 (IsA boy_wonder prodigy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boycott is a kind of protest", "pln": ["(: cnet_isa_5001f09ef6 (IsA boycott protest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boyfriend is a kind of lover", "pln": ["(: cnet_isa_523adc6d0a (IsA boyfriend lover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boyfriend is a kind of man", "pln": ["(: cnet_isa_48a3fd85ac (IsA boyfriend man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boyhood is a kind of childhood", "pln": ["(: cnet_isa_35bc78b471 (IsA boyhood childhood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boyishness is a kind of masculinity", "pln": ["(: cnet_isa_6ebd7151a0 (IsA boyishness masculinity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boykinia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_02acd7692f (IsA boykinia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boyle s law is a kind of law", "pln": ["(: cnet_isa_d245bee2a9 (IsA boyle_s_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boysenberry is a kind of berry", "pln": ["(: cnet_isa_5c264dc6d0 (IsA boysenberry berry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "boysenberry is a kind of western blackberry", "pln": ["(: cnet_isa_c74635581c (IsA boysenberry western_blackberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brabancon griffon is a kind of griffon", "pln": ["(: cnet_isa_7dbf6aa8f2 (IsA brabancon_griffon griffon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brace is a kind of dental appliance", "pln": ["(: cnet_isa_89bcd18792 (IsA brace dental_appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brace is a kind of man s clothing", "pln": ["(: cnet_isa_ab2f43637f (IsA brace man_s_clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brace is a kind of rope", "pln": ["(: cnet_isa_a2c3c1e478 (IsA brace rope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brace is a kind of stock", "pln": ["(: cnet_isa_317333c0bc (IsA brace stock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brace is a kind of strengthener", "pln": ["(: cnet_isa_bf01166881 (IsA brace strengthener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brace is a kind of structural member", "pln": ["(: cnet_isa_aba4b63ade (IsA brace structural_member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brace is a kind of support", "pln": ["(: cnet_isa_3412e537b6 (IsA brace support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brace is a kind of punctuation", "pln": ["(: cnet_isa_44b7250016 (IsA brace punctuation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brace and bit is a kind of drill", "pln": ["(: cnet_isa_844c274d50 (IsA brace_and_bit drill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brace wrench is a kind of wrench", "pln": ["(: cnet_isa_bc6183b263 (IsA brace_wrench wrench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bracelet is a kind of jewelry", "pln": ["(: cnet_isa_a86352be61 (IsA bracelet jewelry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bracelet wood is a kind of shrub", "pln": ["(: cnet_isa_23a7c185f1 (IsA bracelet_wood shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bracer is a kind of protective covering", "pln": ["(: cnet_isa_1efd9653f5 (IsA bracer protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bracer is a kind of tonic", "pln": ["(: cnet_isa_011f318e70 (IsA bracer tonic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bracero is a kind of laborer", "pln": ["(: cnet_isa_c3a623c280 (IsA bracero laborer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brachial artery is a kind of artery", "pln": ["(: cnet_isa_487d2ecb86 (IsA brachial_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brachial plexus is a kind of nerve plexus", "pln": ["(: cnet_isa_d18a45570b (IsA brachial_plexus nerve_plexus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brachial vein is a kind of vein", "pln": ["(: cnet_isa_c581487c6a (IsA brachial_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brachiation is a kind of locomotion", "pln": ["(: cnet_isa_15be1c01b5 (IsA brachiation locomotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brachinus is a kind of arthropod genus", "pln": ["(: cnet_isa_3d3439aca4 (IsA brachinus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brachiocephalic vein is a kind of vein", "pln": ["(: cnet_isa_4bc6ea0039 (IsA brachiocephalic_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brachiopod is a kind of invertebrate", "pln": ["(: cnet_isa_e8bd14abf5 (IsA brachiopod invertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brachiopoda is a kind of phylum", "pln": ["(: cnet_isa_0412f12bf2 (IsA brachiopoda phylum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brachium is a kind of branch", "pln": ["(: cnet_isa_9afa85a7a2 (IsA brachium branch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brachycephalic is a kind of adult", "pln": ["(: cnet_isa_5afcbd5806 (IsA brachycephalic adult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brachycephalism is a kind of quality", "pln": ["(: cnet_isa_abc8156d77 (IsA brachycephalism quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brachychiton is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_c85e864a8a (IsA brachychiton dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brachycome is a kind of asterid dicot genus", "pln": ["(: cnet_isa_49b474cba9 (IsA brachycome asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brachystegia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_ad294fd829 (IsA brachystegia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brachytactyly is a kind of abnormality", "pln": ["(: cnet_isa_8fcfd9c1c7 (IsA brachytactyly abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brachyura is a kind of animal order", "pln": ["(: cnet_isa_64857d3daf (IsA brachyura animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brachyuran is a kind of crustacean", "pln": ["(: cnet_isa_8accd2b0e6 (IsA brachyuran crustacean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bracken is a kind of fern", "pln": ["(: cnet_isa_c9d6d6a3e2 (IsA bracken fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bracket is a kind of support", "pln": ["(: cnet_isa_996181b3fb (IsA bracket support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bracket is a kind of punctuation", "pln": ["(: cnet_isa_b05580fe77 (IsA bracket punctuation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bracket is a kind of set", "pln": ["(: cnet_isa_8394fa2ad3 (IsA bracket set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bracket creep is a kind of income tax", "pln": ["(: cnet_isa_03b1e1b6bc (IsA bracket_creep income_tax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bracket fungus is a kind of polypore", "pln": ["(: cnet_isa_3854d4343f (IsA bracket_fungus polypore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brackishness is a kind of saltiness", "pln": ["(: cnet_isa_188b1ed936 (IsA brackishness saltiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bract is a kind of husk", "pln": ["(: cnet_isa_3e3857eef6 (IsA bract husk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bracteole is a kind of bract", "pln": ["(: cnet_isa_62e6c58f81 (IsA bracteole bract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brad is a kind of nail", "pln": ["(: cnet_isa_fc5c3a6378 (IsA brad nail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bradawl is a kind of awl", "pln": ["(: cnet_isa_ff956fa357 (IsA bradawl awl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bradley s spleenwort is a kind of spleenwort", "pln": ["(: cnet_isa_03f9cbfefc (IsA bradley_s_spleenwort spleenwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bradley method of childbirth is a kind of natural childbirth", "pln": ["(: cnet_isa_de63ac49b3 (IsA bradley_method_of_childbirth natural_childbirth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bradycardia is a kind of cardiac arrhythmia", "pln": ["(: cnet_isa_5384ae1476 (IsA bradycardia cardiac_arrhythmia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bradypodidae is a kind of mammal family", "pln": ["(: cnet_isa_34e3e8a457 (IsA bradypodidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bradypus is a kind of mammal genus", "pln": ["(: cnet_isa_153b9aa914 (IsA bradypus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brae is a kind of hillside", "pln": ["(: cnet_isa_5d2fd1452d (IsA brae hillside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brag is a kind of boast", "pln": ["(: cnet_isa_d738c97f27 (IsA brag boast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "braggadocio is a kind of boast", "pln": ["(: cnet_isa_1f005c6339 (IsA braggadocio boast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bragger is a kind of egotist", "pln": ["(: cnet_isa_7066369da0 (IsA bragger egotist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brahman is a kind of bovine", "pln": ["(: cnet_isa_7037404614 (IsA brahman bovine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brahman is a kind of varna", "pln": ["(: cnet_isa_0c71c22be9 (IsA brahman varna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brahman is a kind of aristocrat", "pln": ["(: cnet_isa_727dd66917 (IsA brahman aristocrat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brahman is a kind of hindustani", "pln": ["(: cnet_isa_f95d48f4bd (IsA brahman hindustani) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brahmanism is a kind of religion", "pln": ["(: cnet_isa_098b5cdee1 (IsA brahmanism religion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brahmanism is a kind of hinduism", "pln": ["(: cnet_isa_b733d76150 (IsA brahmanism hinduism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brahmi is a kind of script", "pln": ["(: cnet_isa_9d3dfe01f5 (IsA brahmi script) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brahm is a kind of music", "pln": ["(: cnet_isa_15f537808b (IsA brahm music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brahui is a kind of north dravidian", "pln": ["(: cnet_isa_86b5d2f7e3 (IsA brahui north_dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brahui is a kind of pakistani", "pln": ["(: cnet_isa_8774d31f5f (IsA brahui pakistani) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "braid is a kind of trimming", "pln": ["(: cnet_isa_51389dd494 (IsA braid trimming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "braid is a kind of hairdo", "pln": ["(: cnet_isa_8e4036c6a2 (IsA braid hairdo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brail is a kind of net", "pln": ["(: cnet_isa_d148f700d4 (IsA brail net) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brail is a kind of rope", "pln": ["(: cnet_isa_6bb3e5261d (IsA brail rope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "braille is a kind of point system", "pln": ["(: cnet_isa_005ac06654 (IsA braille point_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brain is a kind of biological organ", "pln": ["(: cnet_isa_60256e9ed0 (IsA brain biological_organ) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brain is a kind of neural structure", "pln": ["(: cnet_isa_503c10dd68 (IsA brain neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brain is a kind of organ", "pln": ["(: cnet_isa_72128d2cfe (IsA brain organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brain is a kind of part of human body", "pln": ["(: cnet_isa_daf970a5f5 (IsA brain part_of_human_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brain is a kind of where mind exist", "pln": ["(: cnet_isa_4897a1f83e (IsA brain where_mind_exist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brain is a kind of intelligence", "pln": ["(: cnet_isa_6eac73b53f (IsA brain intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brain is a kind of variety meat", "pln": ["(: cnet_isa_216a122313 (IsA brain variety_meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brain cell is a kind of nerve cell", "pln": ["(: cnet_isa_a7adc54fbe (IsA brain_cell nerve_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brain coral is a kind of stony coral", "pln": ["(: cnet_isa_dd71fc5b49 (IsA brain_coral stony_coral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brain damage is a kind of injury", "pln": ["(: cnet_isa_eb0409a7e9 (IsA brain_damage injury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brain damage is a kind of nervous disorder", "pln": ["(: cnet_isa_3d5244e3ee (IsA brain_damage nervous_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brain death is a kind of death", "pln": ["(: cnet_isa_ea791bf4bb (IsA brain_death death) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brain disorder is a kind of nervous disorder", "pln": ["(: cnet_isa_17aeaac720 (IsA brain_disorder nervous_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brain drain is a kind of drain", "pln": ["(: cnet_isa_520e436d29 (IsA brain_drain drain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brain science is a kind of neuroscience", "pln": ["(: cnet_isa_5d2cdc051a (IsA brain_science neuroscience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brain surgery is a kind of operation", "pln": ["(: cnet_isa_7263a3756c (IsA brain_surgery operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brain tumor is a kind of tumor", "pln": ["(: cnet_isa_9e96ca6345 (IsA brain_tumor tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brainstem is a kind of neural structure", "pln": ["(: cnet_isa_5c0c9d6a23 (IsA brainstem neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brainstorming is a kind of group action", "pln": ["(: cnet_isa_6a2ae214d8 (IsA brainstorming group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brainwashing is a kind of indoctrination", "pln": ["(: cnet_isa_ba95d09d71 (IsA brainwashing indoctrination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brainwave is a kind of bioelectricity", "pln": ["(: cnet_isa_ebb2b1ea7f (IsA brainwave bioelectricity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brainworker is a kind of thinker", "pln": ["(: cnet_isa_9ae261f51f (IsA brainworker thinker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "braising is a kind of cooking", "pln": ["(: cnet_isa_6711a91125 (IsA braising cooking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brake is a kind of restraint", "pln": ["(: cnet_isa_cc708319f2 (IsA brake restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brake is a kind of brush", "pln": ["(: cnet_isa_6c054c5e22 (IsA brake brush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brake is a kind of fern", "pln": ["(: cnet_isa_f2f8b4b466 (IsA brake fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brake band is a kind of band", "pln": ["(: cnet_isa_abc88cb989 (IsA brake_band band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brake cylinder is a kind of cylinder", "pln": ["(: cnet_isa_c34beebec2 (IsA brake_cylinder cylinder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brake disk is a kind of disk", "pln": ["(: cnet_isa_08f2d2c989 (IsA brake_disk disk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brake drum is a kind of cylinder", "pln": ["(: cnet_isa_74b7aacc78 (IsA brake_drum cylinder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brake failure is a kind of breakdown", "pln": ["(: cnet_isa_db1a901976 (IsA brake_failure breakdown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brake lining is a kind of lining", "pln": ["(: cnet_isa_20d9505e3c (IsA brake_lining lining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brake pad is a kind of restraint", "pln": ["(: cnet_isa_df627d72fb (IsA brake_pad restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brake pedal is a kind of pedal", "pln": ["(: cnet_isa_6f9abba381 (IsA brake_pedal pedal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brake shoe is a kind of restraint", "pln": ["(: cnet_isa_a021e00dac (IsA brake_shoe restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brake system is a kind of brake", "pln": ["(: cnet_isa_2574af349f (IsA brake_system brake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brakeman is a kind of trainman", "pln": ["(: cnet_isa_515e510304 (IsA brakeman trainman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brama is a kind of fish genus", "pln": ["(: cnet_isa_e2ecc4b54e (IsA brama fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bramble is a kind of woody plant", "pln": ["(: cnet_isa_9691b59758 (IsA bramble woody_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bramble bush is a kind of bramble", "pln": ["(: cnet_isa_a3d23f75cd (IsA bramble_bush bramble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brambling is a kind of finch", "pln": ["(: cnet_isa_bc5193dcb8 (IsA brambling finch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bramidae is a kind of fish family", "pln": ["(: cnet_isa_f1b32189f4 (IsA bramidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bramley s seedling is a kind of cooking apple", "pln": ["(: cnet_isa_b0c4697732 (IsA bramley_s_seedling cooking_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bran is a kind of roughage", "pln": ["(: cnet_isa_d40edcb5dc (IsA bran roughage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bran is a kind of chaff", "pln": ["(: cnet_isa_bc0d02bee3 (IsA bran chaff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bran flake is a kind of cold cereal", "pln": ["(: cnet_isa_e5844afa99 (IsA bran_flake cold_cereal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bran muffin is a kind of muffin", "pln": ["(: cnet_isa_e4adb85638 (IsA bran_muffin muffin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "branch is a kind of division", "pln": ["(: cnet_isa_39597ab337 (IsA branch division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "branch is a kind of stream", "pln": ["(: cnet_isa_c5325618cc (IsA branch stream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "branch is a kind of stalk", "pln": ["(: cnet_isa_d44b4b0f6c (IsA branch stalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "branch is a kind of subfigure", "pln": ["(: cnet_isa_c17e2f8273 (IsA branch subfigure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "branch line is a kind of line", "pln": ["(: cnet_isa_efa322c683 (IsA branch_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "branch water is a kind of water", "pln": ["(: cnet_isa_cc346be3ef (IsA branch_water water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "branched chain is a kind of open chain", "pln": ["(: cnet_isa_c26bc314a2 (IsA branched_chain open_chain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "branching is a kind of division", "pln": ["(: cnet_isa_145c5c9ae9 (IsA branching division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "branchiobdella is a kind of worm genus", "pln": ["(: cnet_isa_98ab303377 (IsA branchiobdella worm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "branchiobdellidae is a kind of worm family", "pln": ["(: cnet_isa_3b9624a007 (IsA branchiobdellidae worm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "branchiopod crustacean is a kind of crustacean", "pln": ["(: cnet_isa_2f655db4c5 (IsA branchiopod_crustacean crustacean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "branchiopoda is a kind of class", "pln": ["(: cnet_isa_47d244639a (IsA branchiopoda class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "branchiostegidae is a kind of fish family", "pln": ["(: cnet_isa_11e93ace2c (IsA branchiostegidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "branchiura is a kind of animal order", "pln": ["(: cnet_isa_d189a062c9 (IsA branchiura animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "branchlet is a kind of branch", "pln": ["(: cnet_isa_9227004020 (IsA branchlet branch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brand is a kind of kind", "pln": ["(: cnet_isa_d2b8435cc0 (IsA brand kind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brand is a kind of marker", "pln": ["(: cnet_isa_eaeaa17db3 (IsA brand marker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brand is a kind of firewood", "pln": ["(: cnet_isa_8c76e828ac (IsA brand firewood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brand name drug is a kind of drug", "pln": ["(: cnet_isa_295455ef32 (IsA brand_name_drug drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brand newness is a kind of newness", "pln": ["(: cnet_isa_53a269c264 (IsA brand_newness newness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brandy is a kind of liquor", "pln": ["(: cnet_isa_5094a58598 (IsA brandy liquor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brandy sling is a kind of sling", "pln": ["(: cnet_isa_141d0bd08f (IsA brandy_sling sling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brandyball is a kind of candy", "pln": ["(: cnet_isa_eb6edd2bc4 (IsA brandyball candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brandysnap is a kind of gingersnap", "pln": ["(: cnet_isa_240ee7106b (IsA brandysnap gingersnap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brant is a kind of goose", "pln": ["(: cnet_isa_1c0a908885 (IsA brant goose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "branta is a kind of bird genus", "pln": ["(: cnet_isa_12d6c02708 (IsA branta bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brasenia is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_a57bd105a2 (IsA brasenia magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brashness is a kind of recklessness", "pln": ["(: cnet_isa_2de9d7d500 (IsA brashness recklessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brass is a kind of heavy alloy", "pln": ["(: cnet_isa_ca1c80e678 (IsA brass heavy_alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brass is a kind of decoration", "pln": ["(: cnet_isa_0c26a3a9a3 (IsA brass decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brass is a kind of memorial", "pln": ["(: cnet_isa_bf9d49cbd2 (IsA brass memorial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brass is a kind of wind instrument", "pln": ["(: cnet_isa_b5ecf8ef04 (IsA brass wind_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brass is a kind of copper base alloy", "pln": ["(: cnet_isa_13b20021b1 (IsA brass copper_base_alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brass band is a kind of band", "pln": ["(: cnet_isa_cfc1a19274 (IsA brass_band band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brass button is a kind of flower", "pln": ["(: cnet_isa_17ac4a0822 (IsA brass_button flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brass drum is a kind of loud musical instrument", "pln": ["(: cnet_isa_f6d91ae01a (IsA brass_drum loud_musical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brass family is a kind of class", "pln": ["(: cnet_isa_0ab8089138 (IsA brass_family class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brass hat is a kind of military officer", "pln": ["(: cnet_isa_8a8299fc58 (IsA brass_hat military_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brass knuck is a kind of weapon", "pln": ["(: cnet_isa_71a639e700 (IsA brass_knuck weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brass monkey is a kind of base", "pln": ["(: cnet_isa_e3962751e8 (IsA brass_monkey base) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brass ring is a kind of opportunity", "pln": ["(: cnet_isa_930000475a (IsA brass_ring opportunity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brass section is a kind of section", "pln": ["(: cnet_isa_8e6296564c (IsA brass_section section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brassard is a kind of armor plate", "pln": ["(: cnet_isa_fec2af1d2a (IsA brassard armor_plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brassavola is a kind of orchid", "pln": ["(: cnet_isa_6a1da90427 (IsA brassavola orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brasserie is a kind of restaurant", "pln": ["(: cnet_isa_a9718753b1 (IsA brasserie restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brassia is a kind of monocot genus", "pln": ["(: cnet_isa_d24a00de46 (IsA brassia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brassica is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_a36980fd54 (IsA brassica dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brassie is a kind of wood", "pln": ["(: cnet_isa_1e25c0ac02 (IsA brassie wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brassiere is a kind of undergarment", "pln": ["(: cnet_isa_b19cf0f6eb (IsA brassiere undergarment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brassiere is a kind of woman s clothing", "pln": ["(: cnet_isa_e4416ff925 (IsA brassiere woman_s_clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brattice is a kind of partition", "pln": ["(: cnet_isa_91b946cfd0 (IsA brattice partition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bratwurst is a kind of pork sausage", "pln": ["(: cnet_isa_9b250312b4 (IsA bratwurst pork_sausage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "braun s holly fern is a kind of holly fern", "pln": ["(: cnet_isa_e2168078aa (IsA braun_s_holly_fern holly_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bravado is a kind of ostentation", "pln": ["(: cnet_isa_21100cf24f (IsA bravado ostentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brave is a kind of people", "pln": ["(: cnet_isa_c80b6b9e25 (IsA brave people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brave is a kind of warrior", "pln": ["(: cnet_isa_3b41e5cb4b (IsA brave warrior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bravo is a kind of cheer", "pln": ["(: cnet_isa_6090e62fbb (IsA bravo cheer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bravura is a kind of virtuosity", "pln": ["(: cnet_isa_9d666c2165 (IsA bravura virtuosity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brawl is a kind of fight", "pln": ["(: cnet_isa_0682bf28e3 (IsA brawl fight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brawler is a kind of combatant", "pln": ["(: cnet_isa_b89a0211a9 (IsA brawler combatant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brawn is a kind of strength", "pln": ["(: cnet_isa_5a01a79607 (IsA brawn strength) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "braxton hick contraction is a kind of contraction", "pln": ["(: cnet_isa_ce4007a12b (IsA braxton_hick_contraction contraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bray is a kind of cry", "pln": ["(: cnet_isa_57eeae01d0 (IsA bray cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brazier is a kind of heater", "pln": ["(: cnet_isa_52fd5d19c3 (IsA brazier heater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brazil is a kind of country", "pln": ["(: cnet_isa_d081afeff3 (IsA brazil country) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brazil is a kind of country in south america", "pln": ["(: cnet_isa_9a027e5fba (IsA brazil country_in_south_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brazil is a kind of in south america", "pln": ["(: cnet_isa_eb6d2b77d9 (IsA brazil in_south_america) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brazil is a kind of very large country", "pln": ["(: cnet_isa_d666f441ca (IsA brazil very_large_country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brazil nut is a kind of edible nut", "pln": ["(: cnet_isa_a337cb4e19 (IsA brazil_nut edible_nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brazil nut is a kind of nut tree", "pln": ["(: cnet_isa_308bab6cd0 (IsA brazil_nut nut_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brazilian is a kind of south american", "pln": ["(: cnet_isa_253e52448c (IsA brazilian south_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brazilian guava is a kind of fruit tree", "pln": ["(: cnet_isa_106ff97cd2 (IsA brazilian_guava fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brazilian ironwood is a kind of tree", "pln": ["(: cnet_isa_73b69c4c3a (IsA brazilian_ironwood tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brazilian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_ecdff05434 (IsA brazilian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brazilian pepper tree is a kind of tree", "pln": ["(: cnet_isa_4811bbb21a (IsA brazilian_pepper_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brazilian rosewood is a kind of rosewood", "pln": ["(: cnet_isa_a1273c86d7 (IsA brazilian_rosewood rosewood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brazilian trumpeter is a kind of trumpeter", "pln": ["(: cnet_isa_bbdb45665b (IsA brazilian_trumpeter trumpeter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brazilwood is a kind of tree", "pln": ["(: cnet_isa_618420a4d0 (IsA brazilwood tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brazilwood is a kind of wood", "pln": ["(: cnet_isa_e6e97f2412 (IsA brazilwood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breach is a kind of failure", "pln": ["(: cnet_isa_c690b7c3c6 (IsA breach failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breach is a kind of opening", "pln": ["(: cnet_isa_1bf12c4a4d (IsA breach opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breach of contract is a kind of breach", "pln": ["(: cnet_isa_ee24b34836 (IsA breach_of_contract breach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breach of covenant of warranty is a kind of breach of contract", "pln": ["(: cnet_isa_6c8b0eed0f (IsA breach_of_covenant_of_warranty breach_of_contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breach of duty is a kind of breach", "pln": ["(: cnet_isa_b5b5bb158b (IsA breach_of_duty breach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "breach of promise is a kind of breach of contract", "pln": ["(: cnet_isa_45b938d343 (IsA breach_of_promise breach_of_contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breach of trust is a kind of breach of contract", "pln": ["(: cnet_isa_9756866104 (IsA breach_of_trust breach_of_contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breach of trust with fraudulent intent is a kind of larceny", "pln": ["(: cnet_isa_3129e105bd (IsA breach_of_trust_with_fraudulent_intent larceny) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breach of warranty is a kind of breach of contract", "pln": ["(: cnet_isa_f32527bff4 (IsA breach_of_warranty breach_of_contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bread is a kind of structural element in sandwich", "pln": ["(: cnet_isa_6dca2b52c9 (IsA bread structural_element_in_sandwich) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bread is a kind of baked good", "pln": ["(: cnet_isa_edb40ebfb6 (IsA bread baked_good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bread is a kind of starche", "pln": ["(: cnet_isa_1b634bb335 (IsA bread starche) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bread and butter issue is a kind of issue", "pln": ["(: cnet_isa_ae29035bc9 (IsA bread_and_butter_issue issue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bread and butter pickle is a kind of sweet pickle", "pln": ["(: cnet_isa_1466922141 (IsA bread_and_butter_pickle sweet_pickle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bread and steak is a kind of food", "pln": ["(: cnet_isa_bed90bc8a3 (IsA bread_and_steak food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bread bin is a kind of container", "pln": ["(: cnet_isa_56d71ca06e (IsA bread_bin container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bread dough is a kind of dough", "pln": ["(: cnet_isa_f562ffeee5 (IsA bread_dough dough) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bread knife is a kind of knife", "pln": ["(: cnet_isa_d1d2e1b5a9 (IsA bread_knife knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bread mold is a kind of rhizopus", "pln": ["(: cnet_isa_bc9ccfce63 (IsA bread_mold rhizopus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bread sauce is a kind of sauce", "pln": ["(: cnet_isa_6299d38190 (IsA bread_sauce sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breadbasket is a kind of basket", "pln": ["(: cnet_isa_10e2fdede2 (IsA breadbasket basket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "breadbasket is a kind of region", "pln": ["(: cnet_isa_2eadc1d0af (IsA breadbasket region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breadboard is a kind of board", "pln": ["(: cnet_isa_9dc98f8987 (IsA breadboard board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breadcrumb is a kind of crumb", "pln": ["(: cnet_isa_1c42b80ed2 (IsA breadcrumb crumb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breadfruit is a kind of edible fruit", "pln": ["(: cnet_isa_6f64a6a82e (IsA breadfruit edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breadfruit is a kind of fruit tree", "pln": ["(: cnet_isa_39c9c0b3d7 (IsA breadfruit fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breadline is a kind of queue", "pln": ["(: cnet_isa_84da60542c (IsA breadline queue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breadroot is a kind of herb", "pln": ["(: cnet_isa_e2cc932605 (IsA breadroot herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "breadstick is a kind of bread", "pln": ["(: cnet_isa_160ddbc4a5 (IsA breadstick bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breadstuff is a kind of foodstuff", "pln": ["(: cnet_isa_5aafd0087f (IsA breadstuff foodstuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "breadth is a kind of intelligence", "pln": ["(: cnet_isa_76e609353c (IsA breadth intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breadwinner is a kind of earner", "pln": ["(: cnet_isa_09ddd847a2 (IsA breadwinner earner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "break is a kind of dash", "pln": ["(: cnet_isa_0fdc1db74f (IsA break dash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "break is a kind of delay", "pln": ["(: cnet_isa_26736eea18 (IsA break delay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "break is a kind of escape", "pln": ["(: cnet_isa_daaff7e71b (IsA break escape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "break is a kind of stroke", "pln": ["(: cnet_isa_1083bbaaf8 (IsA break stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "break is a kind of accident", "pln": ["(: cnet_isa_6458520e02 (IsA break accident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "break is a kind of change", "pln": ["(: cnet_isa_e86608b505 (IsA break change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "break is a kind of separation", "pln": ["(: cnet_isa_214b4d2c2c (IsA break separation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "break is a kind of score", "pln": ["(: cnet_isa_a2c3c24c6f (IsA break score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "break dancing is a kind of dancing", "pln": ["(: cnet_isa_792985caba (IsA break_dancing dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "break seal is a kind of seal", "pln": ["(: cnet_isa_67b3ad2080 (IsA break_seal seal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breakable is a kind of article", "pln": ["(: cnet_isa_7e82f97b9c (IsA breakable article) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breakableness is a kind of consistency", "pln": ["(: cnet_isa_d760db2f14 (IsA breakableness consistency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breakage is a kind of change of integrity", "pln": ["(: cnet_isa_d5b663931a (IsA breakage change_of_integrity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breakage is a kind of reimbursement", "pln": ["(: cnet_isa_f8ac55c36c (IsA breakage reimbursement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breakage is a kind of indefinite quantity", "pln": ["(: cnet_isa_e2e7358cc9 (IsA breakage indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breakaway is a kind of secession", "pln": ["(: cnet_isa_d838fdd1be (IsA breakaway secession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breakax is a kind of tree", "pln": ["(: cnet_isa_ab724ee4c8 (IsA breakax tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breakdown is a kind of analysis", "pln": ["(: cnet_isa_cc7ab7565a (IsA breakdown analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breakdown is a kind of failure", "pln": ["(: cnet_isa_171f6019e6 (IsA breakdown failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breakdown is a kind of collapse", "pln": ["(: cnet_isa_3344be83a7 (IsA breakdown collapse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breaker is a kind of quarryman", "pln": ["(: cnet_isa_8fe6510fde (IsA breaker quarryman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breakfast is a kind of meal", "pln": ["(: cnet_isa_bdde51960e (IsA breakfast meal) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breakfast is a kind of morning meal", "pln": ["(: cnet_isa_5c7a1833a5 (IsA breakfast morning_meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "breakfast area is a kind of area", "pln": ["(: cnet_isa_48de1fe93b (IsA breakfast_area area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breakfast food is a kind of food", "pln": ["(: cnet_isa_c2efb03c7d (IsA breakfast_food food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breakfast table is a kind of table", "pln": ["(: cnet_isa_7dbf525803 (IsA breakfast_table table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breakfast time is a kind of mealtime", "pln": ["(: cnet_isa_e7014e89b9 (IsA breakfast_time mealtime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breaking away is a kind of departure", "pln": ["(: cnet_isa_3e719d59ff (IsA breaking_away departure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breaking off is a kind of break", "pln": ["(: cnet_isa_e50a34d2fb (IsA breaking_off break) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breaking point is a kind of stress", "pln": ["(: cnet_isa_1fc4e3800c (IsA breaking_point stress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "breaking point is a kind of tension", "pln": ["(: cnet_isa_3f01f499d5 (IsA breaking_point tension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breakthrough is a kind of discovery", "pln": ["(: cnet_isa_9d065a36ec (IsA breakthrough discovery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breakthrough is a kind of penetration", "pln": ["(: cnet_isa_41bd33b4ae (IsA breakthrough penetration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breakwater is a kind of barrier", "pln": ["(: cnet_isa_00ecfaf121 (IsA breakwater barrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bream is a kind of freshwater fish", "pln": ["(: cnet_isa_b194dbee28 (IsA bream freshwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bream is a kind of saltwater fish", "pln": ["(: cnet_isa_59e4b83cee (IsA bream saltwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breast is a kind of external body part", "pln": ["(: cnet_isa_e7b6bfd2a4 (IsA breast external_body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breast is a kind of mammary gland", "pln": ["(: cnet_isa_68df5472b2 (IsA breast mammary_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breast is a kind of helping", "pln": ["(: cnet_isa_c69f8b877c (IsA breast helping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breast cancer is a kind of carcinoma", "pln": ["(: cnet_isa_5037393e1c (IsA breast_cancer carcinoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breast drill is a kind of drill", "pln": ["(: cnet_isa_7434293e7b (IsA breast_drill drill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breast implant is a kind of implant", "pln": ["(: cnet_isa_805b4852f8 (IsA breast_implant implant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "breast of lamb is a kind of cut of lamb", "pln": ["(: cnet_isa_78998a91e7 (IsA breast_of_lamb cut_of_lamb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breast of veal is a kind of veal roast", "pln": ["(: cnet_isa_fe40bf471e (IsA breast_of_veal veal_roast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breast pocket is a kind of pocket", "pln": ["(: cnet_isa_e9b130c6a6 (IsA breast_pocket pocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breastplate is a kind of armor plate", "pln": ["(: cnet_isa_377a41ddfd (IsA breastplate armor_plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breaststroke is a kind of swimming stroke", "pln": ["(: cnet_isa_9343836224 (IsA breaststroke swimming_stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breaststroker is a kind of swimmer", "pln": ["(: cnet_isa_f69896eac7 (IsA breaststroker swimmer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breath is a kind of bodily process", "pln": ["(: cnet_isa_594cdf3a6b (IsA breath bodily_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "breath is a kind of breeze", "pln": ["(: cnet_isa_9e19fa7a7d (IsA breath breeze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breath is a kind of air", "pln": ["(: cnet_isa_8f22babf55 (IsA breath air) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breath is a kind of respite", "pln": ["(: cnet_isa_9543566caa (IsA breath respite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breath of fresh air is a kind of easing", "pln": ["(: cnet_isa_92790f2dca (IsA breath_of_fresh_air easing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breathalyzer is a kind of device", "pln": ["(: cnet_isa_7fcdc7e0e7 (IsA breathalyzer device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breathing is a kind of bodily process", "pln": ["(: cnet_isa_bcf4005cde (IsA breathing bodily_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breathing device is a kind of device", "pln": ["(: cnet_isa_b35a7aeca7 (IsA breathing_device device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breathing room is a kind of room", "pln": ["(: cnet_isa_13214438e8 (IsA breathing_room room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breccia is a kind of rudaceous rock", "pln": ["(: cnet_isa_3b5bbb835a (IsA breccia rudaceous_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breech is a kind of opening", "pln": ["(: cnet_isa_990e4d32c1 (IsA breech opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breech delivery is a kind of delivery", "pln": ["(: cnet_isa_e415fe642d (IsA breech_delivery delivery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breechblock is a kind of blockage", "pln": ["(: cnet_isa_906d54aeb9 (IsA breechblock blockage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breechcloth is a kind of garment", "pln": ["(: cnet_isa_e79c9b32c9 (IsA breechcloth garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breeche is a kind of pair of trouser", "pln": ["(: cnet_isa_34c4b6ba5d (IsA breeche pair_of_trouser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breeche buoy is a kind of life buoy", "pln": ["(: cnet_isa_9b128fc180 (IsA breeche_buoy life_buoy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breechloader is a kind of gun", "pln": ["(: cnet_isa_badeb08318 (IsA breechloader gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breed is a kind of type", "pln": ["(: cnet_isa_07cece3876 (IsA breed type) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breed is a kind of animal group", "pln": ["(: cnet_isa_cbed8f5b03 (IsA breed animal_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breed is a kind of variety", "pln": ["(: cnet_isa_24c4db5c8c (IsA breed variety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breeder is a kind of stockman", "pln": ["(: cnet_isa_5582a54316 (IsA breeder stockman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breeder reactor is a kind of nuclear reactor", "pln": ["(: cnet_isa_dc40beb2a8 (IsA breeder_reactor nuclear_reactor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breeding is a kind of production", "pln": ["(: cnet_isa_18d96de318 (IsA breeding production) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breeding is a kind of socialization", "pln": ["(: cnet_isa_17bee96348 (IsA breeding socialization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breeding is a kind of elegance", "pln": ["(: cnet_isa_c0d3c23be6 (IsA breeding elegance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breeding ground is a kind of tract", "pln": ["(: cnet_isa_997c54718c (IsA breeding_ground tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breeze is a kind of wind", "pln": ["(: cnet_isa_d20eb413db (IsA breeze wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "breeziness is a kind of liveliness", "pln": ["(: cnet_isa_d457933427 (IsA breeziness liveliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breeziness is a kind of storminess", "pln": ["(: cnet_isa_51d1efe8c5 (IsA breeziness storminess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bregma is a kind of craniometric point", "pln": ["(: cnet_isa_c0df72fb6f (IsA bregma craniometric_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bren is a kind of submachine gun", "pln": ["(: cnet_isa_a36889ece3 (IsA bren submachine_gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brethren is a kind of sect", "pln": ["(: cnet_isa_606c83131c (IsA brethren sect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breton is a kind of brythonic", "pln": ["(: cnet_isa_b5527a9901 (IsA breton brythonic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breton is a kind of french person", "pln": ["(: cnet_isa_fb63ba6546 (IsA breton french_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "breve is a kind of diacritical mark", "pln": ["(: cnet_isa_2feb8e85a9 (IsA breve diacritical_mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brevet is a kind of document", "pln": ["(: cnet_isa_72aed62d8d (IsA brevet document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "breviary is a kind of prayer book", "pln": ["(: cnet_isa_0e0e9b3b11 (IsA breviary prayer_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brevity is a kind of duration", "pln": ["(: cnet_isa_9d2a8d2277 (IsA brevity duration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brevity is a kind of terseness", "pln": ["(: cnet_isa_aa0ce48601 (IsA brevity terseness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brevoortia is a kind of fish genus", "pln": ["(: cnet_isa_fd0ce05c1f (IsA brevoortia fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brew is a kind of alcohol", "pln": ["(: cnet_isa_1f3dcaaff4 (IsA brew alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brewer s mole is a kind of mole", "pln": ["(: cnet_isa_e0e92ed8cd (IsA brewer_s_mole mole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brewer s yeast is a kind of yeast", "pln": ["(: cnet_isa_6e128cb4cd (IsA brewer_s_yeast yeast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brewer is a kind of maker", "pln": ["(: cnet_isa_d4bc9a1b15 (IsA brewer maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brewer is a kind of manufacturer", "pln": ["(: cnet_isa_8a5b55b212 (IsA brewer manufacturer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brewery is a kind of plant", "pln": ["(: cnet_isa_0e9db7c232 (IsA brewery plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brewing is a kind of production", "pln": ["(: cnet_isa_fb8b250a96 (IsA brewing production) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brewpub is a kind of brewery", "pln": ["(: cnet_isa_5e1a555104 (IsA brewpub brewery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brewpub is a kind of restaurant", "pln": ["(: cnet_isa_5f52f1e3b7 (IsA brewpub restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "briar is a kind of pipe", "pln": ["(: cnet_isa_214ef9acc8 (IsA briar pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "briard is a kind of shepherd dog", "pln": ["(: cnet_isa_714e017834 (IsA briard shepherd_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "briarroot is a kind of root", "pln": ["(: cnet_isa_ab7c921e7e (IsA briarroot root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "briarwood is a kind of wood", "pln": ["(: cnet_isa_4d6dfcaf1b (IsA briarwood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bribe is a kind of payment", "pln": ["(: cnet_isa_2cd2966c3e (IsA bribe payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "briber is a kind of criminal", "pln": ["(: cnet_isa_9015e345e2 (IsA briber criminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bribery is a kind of felony", "pln": ["(: cnet_isa_d0b9f1041d (IsA bribery felony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bric brac is a kind of curio", "pln": ["(: cnet_isa_37130541e7 (IsA bric_brac curio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brick is a kind of building material", "pln": ["(: cnet_isa_6808d44aac (IsA brick building_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brick is a kind of ceramic", "pln": ["(: cnet_isa_29a0ccd069 (IsA brick ceramic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brick is a kind of good person", "pln": ["(: cnet_isa_44ff7ddf26 (IsA brick good_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brick cheese is a kind of cheese", "pln": ["(: cnet_isa_8e9bf14282 (IsA brick_cheese cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brick red is a kind of reddish brown", "pln": ["(: cnet_isa_4afa04c696 (IsA brick_red reddish_brown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brick trowel is a kind of trowel", "pln": ["(: cnet_isa_48ad261210 (IsA brick_trowel trowel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brickbat is a kind of criticism", "pln": ["(: cnet_isa_7b20b2b753 (IsA brickbat criticism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brickbat is a kind of fragment", "pln": ["(: cnet_isa_9db4c647d3 (IsA brickbat fragment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "bricks and mortar is a kind of building material", "pln": ["(: cnet_isa_984a3d4804 (IsA bricks_and_mortar building_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brickellia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_fadbdff7f8 (IsA brickellia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brickkiln is a kind of kiln", "pln": ["(: cnet_isa_f5a571b578 (IsA brickkiln kiln) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bricklayer s hammer is a kind of hammer", "pln": ["(: cnet_isa_e21c84679e (IsA bricklayer_s_hammer hammer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bricklayer is a kind of craftsman", "pln": ["(: cnet_isa_c4bee971c5 (IsA bricklayer craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bricklaying is a kind of masonry", "pln": ["(: cnet_isa_fc934add30 (IsA bricklaying masonry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brick and mortar is a kind of building material", "pln": ["(: cnet_isa_23fb3e8fc8 (IsA brick_and_mortar building_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brickwork is a kind of masonry", "pln": ["(: cnet_isa_1e816fdffe (IsA brickwork masonry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brickyard is a kind of workshop", "pln": ["(: cnet_isa_04394a1432 (IsA brickyard workshop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bricolage is a kind of construction", "pln": ["(: cnet_isa_a2c380e1ce (IsA bricolage construction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bridal is a kind of marriage", "pln": ["(: cnet_isa_8f93ae9a5b (IsA bridal marriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bridal gown is a kind of gown", "pln": ["(: cnet_isa_bb83166fd0 (IsA bridal_gown gown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bridal wreath is a kind of shrub", "pln": ["(: cnet_isa_b67ece4f63 (IsA bridal_wreath shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bridal wreath is a kind of spirea", "pln": ["(: cnet_isa_209cb41209 (IsA bridal_wreath spirea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bride is a kind of newlywed", "pln": ["(: cnet_isa_d673c57d46 (IsA bride newlywed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bride is a kind of participant", "pln": ["(: cnet_isa_a17604eb47 (IsA bride participant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bride and groom is a kind of couple", "pln": ["(: cnet_isa_2b2792cfa5 (IsA bride_and_groom couple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bride gift is a kind of wedding present", "pln": ["(: cnet_isa_2596cb58ee (IsA bride_gift wedding_present) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bride price is a kind of gift", "pln": ["(: cnet_isa_a69140afc7 (IsA bride_price gift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bridesmaid is a kind of attendant", "pln": ["(: cnet_isa_c8579758bd (IsA bridesmaid attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bridesmaid is a kind of woman", "pln": ["(: cnet_isa_de2a239afa (IsA bridesmaid woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bridge is a kind of card game", "pln": ["(: cnet_isa_3ba3924a31 (IsA bridge card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bridge is a kind of circuit", "pln": ["(: cnet_isa_793f7ee5cb (IsA bridge circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bridge is a kind of denture", "pln": ["(: cnet_isa_ad26b4ddf5 (IsA bridge denture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bridge is a kind of link", "pln": ["(: cnet_isa_22e1c95472 (IsA bridge link) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bridge is a kind of structure", "pln": ["(: cnet_isa_edcf4eaf09 (IsA bridge structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bridge is a kind of support", "pln": ["(: cnet_isa_bc9a90eef2 (IsA bridge support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bridge is a kind of upper deck", "pln": ["(: cnet_isa_fe5b41384f (IsA bridge upper_deck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bridge is a kind of connection", "pln": ["(: cnet_isa_631719fcbc (IsA bridge connection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bridge agent is a kind of secret agent", "pln": ["(: cnet_isa_cbee200b26 (IsA bridge_agent secret_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bridge hand is a kind of hand", "pln": ["(: cnet_isa_09352638a5 (IsA bridge_hand hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bridge partner is a kind of bridge player", "pln": ["(: cnet_isa_7e37c49523 (IsA bridge_partner bridge_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bridge partner is a kind of collaborator", "pln": ["(: cnet_isa_22bffe4be8 (IsA bridge_partner collaborator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bridge player is a kind of card player", "pln": ["(: cnet_isa_43b3b2b0df (IsA bridge_player card_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bridge whist is a kind of bridge", "pln": ["(: cnet_isa_592ec86180 (IsA bridge_whist bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bridged t is a kind of circuit", "pln": ["(: cnet_isa_f9a4bb00f7 (IsA bridged_t circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bridgehead is a kind of combat zone", "pln": ["(: cnet_isa_d1ca47d7dd (IsA bridgehead combat_zone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bridgehead is a kind of post", "pln": ["(: cnet_isa_121a82d807 (IsA bridgehead post) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bridle is a kind of restraint", "pln": ["(: cnet_isa_0c03e18b19 (IsA bridle restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bridle is a kind of headgear", "pln": ["(: cnet_isa_fb47c3deb6 (IsA bridle headgear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bridle path is a kind of path", "pln": ["(: cnet_isa_3e404a6518 (IsA bridle_path path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bridoon is a kind of bit", "pln": ["(: cnet_isa_a9a9ed3939 (IsA bridoon bit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brie is a kind of cheese", "pln": ["(: cnet_isa_9e620d09bb (IsA brie cheese) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brief is a kind of outline", "pln": ["(: cnet_isa_c47a58382d (IsA brief outline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brief is a kind of legal document", "pln": ["(: cnet_isa_d6f3960824 (IsA brief legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "briefcase is a kind of case", "pln": ["(: cnet_isa_c4cac9c850 (IsA briefcase case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "briefcase bomb is a kind of bomb", "pln": ["(: cnet_isa_f6a6b66901 (IsA briefcase_bomb bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "briefcase computer is a kind of portable computer", "pln": ["(: cnet_isa_bf2340b9dc (IsA briefcase_computer portable_computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "briefing is a kind of informing", "pln": ["(: cnet_isa_aab61f444c (IsA briefing informing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "briefness is a kind of shortness", "pln": ["(: cnet_isa_f0812bb2b0 (IsA briefness shortness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brief is a kind of underpant", "pln": ["(: cnet_isa_e1d3db2fd5 (IsA brief underpant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brier is a kind of branchlet", "pln": ["(: cnet_isa_42c76686ba (IsA brier branchlet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brier is a kind of vegetation", "pln": ["(: cnet_isa_7868c02422 (IsA brier vegetation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brig is a kind of sailing vessel", "pln": ["(: cnet_isa_7d190a7062 (IsA brig sailing_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brig is a kind of penal institution", "pln": ["(: cnet_isa_53c721bfd2 (IsA brig penal_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brigade is a kind of army unit", "pln": ["(: cnet_isa_cfb0962a4f (IsA brigade army_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brigadier is a kind of general officer", "pln": ["(: cnet_isa_28f6892769 (IsA brigadier general_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brigandine is a kind of chain mail", "pln": ["(: cnet_isa_56d13df523 (IsA brigandine chain_mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brigantine is a kind of sailing vessel", "pln": ["(: cnet_isa_4ddaba41e4 (IsA brigantine sailing_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brightness is a kind of light", "pln": ["(: cnet_isa_f05b6108a2 (IsA brightness light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brightness is a kind of intelligence", "pln": ["(: cnet_isa_eaa30461af (IsA brightness intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brightness constancy is a kind of constancy", "pln": ["(: cnet_isa_6482f42ffe (IsA brightness_constancy constancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brill is a kind of lefteye flounder", "pln": ["(: cnet_isa_c3b4688f61 (IsA brill lefteye_flounder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brilliance is a kind of intelligence", "pln": ["(: cnet_isa_332fcce66e (IsA brilliance intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brilliant pebble is a kind of heat seeking missile", "pln": ["(: cnet_isa_98154f38ff (IsA brilliant_pebble heat_seeking_missile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brilliantine is a kind of pomade", "pln": ["(: cnet_isa_f66f9a779f (IsA brilliantine pomade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brim is a kind of edge", "pln": ["(: cnet_isa_a406f503a5 (IsA brim edge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brim is a kind of projection", "pln": ["(: cnet_isa_77e2ca2655 (IsA brim projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brimstone is a kind of sulfur", "pln": ["(: cnet_isa_171a08c259 (IsA brimstone sulfur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brine is a kind of solution", "pln": ["(: cnet_isa_38df198f62 (IsA brine solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brine shrimp is a kind of branchiopod crustacean", "pln": ["(: cnet_isa_406df1a956 (IsA brine_shrimp branchiopod_crustacean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brinell number is a kind of unit of measurement", "pln": ["(: cnet_isa_52ad228ee6 (IsA brinell_number unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brininess is a kind of saltiness", "pln": ["(: cnet_isa_7cada9d5dc (IsA brininess saltiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brink is a kind of edge", "pln": ["(: cnet_isa_9c1fdad946 (IsA brink edge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brink is a kind of boundary", "pln": ["(: cnet_isa_019630644b (IsA brink boundary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brinkmanship is a kind of foreign policy", "pln": ["(: cnet_isa_62cb3b0322 (IsA brinkmanship foreign_policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brioche is a kind of bun", "pln": ["(: cnet_isa_4fdc855b51 (IsA brioche bun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "briquette is a kind of block", "pln": ["(: cnet_isa_b8f9ef2d1a (IsA briquette block) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brisance is a kind of consequence", "pln": ["(: cnet_isa_8c63047b3d (IsA brisance consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brisket is a kind of cut", "pln": ["(: cnet_isa_cbad95363b (IsA brisket cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brisling is a kind of sardine", "pln": ["(: cnet_isa_157cbdf22f (IsA brisling sardine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bristle is a kind of hair", "pln": ["(: cnet_isa_7ef8abeff5 (IsA bristle hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bristle is a kind of fiber", "pln": ["(: cnet_isa_3486db10d7 (IsA bristle fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bristle brush is a kind of brush", "pln": ["(: cnet_isa_045ead5b84 (IsA bristle_brush brush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bristle fern is a kind of fern", "pln": ["(: cnet_isa_1018001553 (IsA bristle_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bristlecone pine is a kind of pine", "pln": ["(: cnet_isa_2af3dbc3bb (IsA bristlecone_pine pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bristlegrass is a kind of foxtail", "pln": ["(: cnet_isa_eaf660e489 (IsA bristlegrass foxtail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bristletail is a kind of thysanuran insect", "pln": ["(: cnet_isa_f22fbe859f (IsA bristletail thysanuran_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bristliness is a kind of roughness", "pln": ["(: cnet_isa_bb5fd81327 (IsA bristliness roughness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bristly locust is a kind of shrub", "pln": ["(: cnet_isa_e012e4282c (IsA bristly_locust shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bristly sarsaparilla is a kind of subshrub", "pln": ["(: cnet_isa_1af3187618 (IsA bristly_sarsaparilla subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brit is a kind of copepod", "pln": ["(: cnet_isa_a4921e4d18 (IsA brit copepod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brit is a kind of young fish", "pln": ["(: cnet_isa_8f46e0affb (IsA brit young_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brit is a kind of european", "pln": ["(: cnet_isa_42372ed420 (IsA brit european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "britannia metal is a kind of alloy", "pln": ["(: cnet_isa_cd843c7748 (IsA britannia_metal alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "britche is a kind of breeche", "pln": ["(: cnet_isa_aac645f1ea (IsA britche breeche) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "british is a kind of pansy", "pln": ["(: cnet_isa_cbd6f2ac50 (IsA british pansy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "british cabinet is a kind of cabinet", "pln": ["(: cnet_isa_8c95ce3a93 (IsA british_cabinet cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "british capacity unit is a kind of dry unit", "pln": ["(: cnet_isa_4b8c3cf798 (IsA british_capacity_unit dry_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "british capacity unit is a kind of liquid unit", "pln": ["(: cnet_isa_4ab860767c (IsA british_capacity_unit liquid_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "british commonwealth is a kind of commonwealth", "pln": ["(: cnet_isa_42bde70385 (IsA british_commonwealth commonwealth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "british east africa is a kind of district", "pln": ["(: cnet_isa_0fe0c66568 (IsA british_east_africa district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "british empiricism is a kind of empiricism", "pln": ["(: cnet_isa_d521169688 (IsA british_empiricism empiricism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "british imperial system is a kind of system of weight and measure", "pln": ["(: cnet_isa_65c3d27d47 (IsA british_imperial_system system_of_weight_and_measure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "british monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_6806c80f2c (IsA british_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "british parliament is a kind of parliament", "pln": ["(: cnet_isa_017a3abea7 (IsA british_parliament parliament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "british people is a kind of nation", "pln": ["(: cnet_isa_f248eae40f (IsA british_people nation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "british pound is a kind of british monetary unit", "pln": ["(: cnet_isa_78f7357047 (IsA british_pound british_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "british shilling is a kind of british monetary unit", "pln": ["(: cnet_isa_ce783e4b2b (IsA british_shilling british_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "british thermal unit is a kind of work unit", "pln": ["(: cnet_isa_dbf57ab95a (IsA british_thermal_unit work_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "british west africa is a kind of district", "pln": ["(: cnet_isa_bec576dfdc (IsA british_west_africa district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "british west indy is a kind of west indy", "pln": ["(: cnet_isa_d1f028384d (IsA british_west_indy west_indy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "briton is a kind of kelt", "pln": ["(: cnet_isa_5104d94bf2 (IsA briton kelt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brittany spaniel is a kind of spaniel", "pln": ["(: cnet_isa_b0e5874896 (IsA brittany_spaniel spaniel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brittle is a kind of candy", "pln": ["(: cnet_isa_20ecc4838f (IsA brittle candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brittle bladder fern is a kind of bladder fern", "pln": ["(: cnet_isa_7eaadfc54f (IsA brittle_bladder_fern bladder_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brittle maidenhair is a kind of maidenhair", "pln": ["(: cnet_isa_a1c02515d1 (IsA brittle_maidenhair maidenhair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brittle star is a kind of echinoderm", "pln": ["(: cnet_isa_f96d76c0ae (IsA brittle_star echinoderm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brittlebush is a kind of wildflower", "pln": ["(: cnet_isa_70d731ca00 (IsA brittlebush wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brittleness is a kind of breakableness", "pln": ["(: cnet_isa_efa4b61da7 (IsA brittleness breakableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brix scale is a kind of system of measurement", "pln": ["(: cnet_isa_54c36dd65d (IsA brix_scale system_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broad is a kind of woman", "pln": ["(: cnet_isa_7a4e3180e7 (IsA broad woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broad arrow is a kind of arrow", "pln": ["(: cnet_isa_2bcd475bf1 (IsA broad_arrow arrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broad arrow is a kind of mark", "pln": ["(: cnet_isa_260512a386 (IsA broad_arrow mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broad arrow is a kind of marker", "pln": ["(: cnet_isa_36e69a67f3 (IsA broad_arrow marker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broad bean is a kind of fodder", "pln": ["(: cnet_isa_3cbb65ee11 (IsA broad_bean fodder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broad bean is a kind of bean", "pln": ["(: cnet_isa_f1c1db6a26 (IsA broad_bean bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broad bean is a kind of shell bean", "pln": ["(: cnet_isa_015ede3e7f (IsA broad_bean shell_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broad beech fern is a kind of beech fern", "pln": ["(: cnet_isa_1515ce7fb0 (IsA broad_beech_fern beech_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broad buckler fern is a kind of shield fern", "pln": ["(: cnet_isa_eae64d6b93 (IsA broad_buckler_fern shield_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broad gauge is a kind of gauge", "pln": ["(: cnet_isa_7acdb6c2c2 (IsA broad_gauge gauge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broad gauge is a kind of railroad track", "pln": ["(: cnet_isa_d350d88d22 (IsA broad_gauge railroad_track) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broad hatchet is a kind of hatchet", "pln": ["(: cnet_isa_b89e985c5c (IsA broad_hatchet hatchet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "broad interpretation is a kind of interpretation", "pln": ["(: cnet_isa_b3baa659d8 (IsA broad_interpretation interpretation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broad jump is a kind of jumping", "pln": ["(: cnet_isa_2d39db7de7 (IsA broad_jump jumping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broad leaved centaury is a kind of centaury", "pln": ["(: cnet_isa_48ddf246b2 (IsA broad_leaved_centaury centaury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broad leaved everlasting pea is a kind of everlasting pea", "pln": ["(: cnet_isa_de601c26a7 (IsA broad_leaved_everlasting_pea everlasting_pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broad leaved montia is a kind of indian lettuce", "pln": ["(: cnet_isa_2803d97180 (IsA broad_leaved_montia indian_lettuce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broad leaved plantain is a kind of plantain", "pln": ["(: cnet_isa_c36086b2a0 (IsA broad_leaved_plantain plantain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "broad leaved twayblade is a kind of orchid", "pln": ["(: cnet_isa_39092474da (IsA broad_leaved_twayblade orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broad mindedness is a kind of tolerance", "pln": ["(: cnet_isa_c6c6eb419f (IsA broad_mindedness tolerance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broadax is a kind of ax", "pln": ["(: cnet_isa_63a39209d5 (IsA broadax ax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broadbill is a kind of passerine", "pln": ["(: cnet_isa_ec17cb2558 (IsA broadbill passerine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broadcast is a kind of message", "pln": ["(: cnet_isa_7b41e4ede7 (IsA broadcast message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broadcast is a kind of show", "pln": ["(: cnet_isa_bdddc94fc0 (IsA broadcast show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broadcast area is a kind of area", "pln": ["(: cnet_isa_55001c3a4f (IsA broadcast_area area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "broadcast journalist is a kind of broadcaster", "pln": ["(: cnet_isa_ca61844c10 (IsA broadcast_journalist broadcaster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broadcast journalist is a kind of journalist", "pln": ["(: cnet_isa_a0dbbfe164 (IsA broadcast_journalist journalist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broadcast medium is a kind of medium", "pln": ["(: cnet_isa_eb2f509a5f (IsA broadcast_medium medium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broadcast studio is a kind of room in", "pln": ["(: cnet_isa_32a6a20ab3 (IsA broadcast_studio room_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broadcaster is a kind of mechanical device", "pln": ["(: cnet_isa_4453e13cfb (IsA broadcaster mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broadcaster is a kind of communicator", "pln": ["(: cnet_isa_5e7565e7ec (IsA broadcaster communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broadcasting is a kind of telecommunication", "pln": ["(: cnet_isa_d07a2f11cd (IsA broadcasting telecommunication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broadcasting company is a kind of company", "pln": ["(: cnet_isa_91fefefbd9 (IsA broadcasting_company company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broadcasting station is a kind of station", "pln": ["(: cnet_isa_3903b3004a (IsA broadcasting_station station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broadcasting studio is a kind of studio", "pln": ["(: cnet_isa_0526afe5cd (IsA broadcasting_studio studio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broadcloth is a kind of fabric", "pln": ["(: cnet_isa_3f6442a4c1 (IsA broadcloth fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broadening is a kind of development", "pln": ["(: cnet_isa_b5919aae59 (IsA broadening development) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broadloom is a kind of rug", "pln": ["(: cnet_isa_fddf8b6a41 (IsA broadloom rug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broadside is a kind of side", "pln": ["(: cnet_isa_69f430170a (IsA broadside side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broadside is a kind of armament", "pln": ["(: cnet_isa_8ef2c6c63d (IsA broadside armament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broadside is a kind of fire", "pln": ["(: cnet_isa_182ec8ad30 (IsA broadside fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broadsword is a kind of sword", "pln": ["(: cnet_isa_d4cfdacda2 (IsA broadsword sword) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broadtail is a kind of domestic sheep", "pln": ["(: cnet_isa_5ea3c53e78 (IsA broadtail domestic_sheep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broadtail is a kind of lambskin", "pln": ["(: cnet_isa_a238825746 (IsA broadtail lambskin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brobdingnag is a kind of imaginary place", "pln": ["(: cnet_isa_05de627a33 (IsA brobdingnag imaginary_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broca s area is a kind of center", "pln": ["(: cnet_isa_9746531f82 (IsA broca_s_area center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brocade is a kind of fabric", "pln": ["(: cnet_isa_888d142501 (IsA brocade fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broccoli is a kind of green vegetable", "pln": ["(: cnet_isa_8355c8c304 (IsA broccoli green_vegetable) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broccoli is a kind of cruciferous vegetable", "pln": ["(: cnet_isa_70cb1f99d6 (IsA broccoli cruciferous_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broccoli is a kind of crucifer", "pln": ["(: cnet_isa_87b4f552fd (IsA broccoli crucifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broccoli raab is a kind of crucifer", "pln": ["(: cnet_isa_ac85fcb6b0 (IsA broccoli_raab crucifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broccoli rabe is a kind of cruciferous vegetable", "pln": ["(: cnet_isa_b2b8873870 (IsA broccoli_rabe cruciferous_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brochette is a kind of spit", "pln": ["(: cnet_isa_839bf7989d (IsA brochette spit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brocket is a kind of deer", "pln": ["(: cnet_isa_079bbec78c (IsA brocket deer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brocket is a kind of red deer", "pln": ["(: cnet_isa_188ea01ff0 (IsA brocket red_deer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brodiaea is a kind of liliaceous plant", "pln": ["(: cnet_isa_d73d259590 (IsA brodiaea liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brodmann s area is a kind of cortical area", "pln": ["(: cnet_isa_9d2c00eb8f (IsA brodmann_s_area cortical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brogan is a kind of shoe", "pln": ["(: cnet_isa_8c27b4f4ee (IsA brogan shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broil is a kind of cooking", "pln": ["(: cnet_isa_4dc5850f82 (IsA broil cooking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broiler is a kind of oven", "pln": ["(: cnet_isa_21084c14a9 (IsA broiler oven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broiler is a kind of chicken", "pln": ["(: cnet_isa_cfcaee6732 (IsA broiler chicken) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broiling is a kind of cooking", "pln": ["(: cnet_isa_be8554c6f5 (IsA broiling cooking) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broken arch is a kind of arch", "pln": ["(: cnet_isa_b7379b49fe (IsA broken_arch arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broken bone is a kind of injury", "pln": ["(: cnet_isa_67afed1c44 (IsA broken_bone injury) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broken heart is a kind of sorrow", "pln": ["(: cnet_isa_16ea791b89 (IsA broken_heart sorrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broken home is a kind of family", "pln": ["(: cnet_isa_35c973d745 (IsA broken_home family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broker dealer is a kind of principal", "pln": ["(: cnet_isa_c3ba28119d (IsA broker_dealer principal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brokerage is a kind of business", "pln": ["(: cnet_isa_8a8fa3faac (IsA brokerage business) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brokerage is a kind of nondepository financial institution", "pln": ["(: cnet_isa_a88b4ced05 (IsA brokerage nondepository_financial_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brokerage account is a kind of account", "pln": ["(: cnet_isa_926150604a (IsA brokerage_account account) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brokerage house is a kind of workplace", "pln": ["(: cnet_isa_7ee38d04c7 (IsA brokerage_house workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brome is a kind of grass", "pln": ["(: cnet_isa_74dfb9d37a (IsA brome grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bromelia is a kind of monocot genus", "pln": ["(: cnet_isa_8ec4c8c836 (IsA bromelia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bromeliaceae is a kind of monocot family", "pln": ["(: cnet_isa_e6b85c4aa4 (IsA bromeliaceae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bromic acid is a kind of acid", "pln": ["(: cnet_isa_a33b70a178 (IsA bromic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bromide is a kind of remark", "pln": ["(: cnet_isa_3c8e65521c (IsA bromide remark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bromide is a kind of truism", "pln": ["(: cnet_isa_22533dd18f (IsA bromide truism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bromide is a kind of halide", "pln": ["(: cnet_isa_1cdf2cd9b9 (IsA bromide halide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bromine is a kind of chemical element", "pln": ["(: cnet_isa_41168498cb (IsA bromine chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bromine is a kind of halogen", "pln": ["(: cnet_isa_bce7c4657f (IsA bromine halogen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bromoform is a kind of haloform", "pln": ["(: cnet_isa_5036fb1518 (IsA bromoform haloform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bromophenol blue is a kind of acid base indicator", "pln": ["(: cnet_isa_14f385f88c (IsA bromophenol_blue acid_base_indicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bromophenol blue is a kind of dye", "pln": ["(: cnet_isa_77f9385777 (IsA bromophenol_blue dye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bromothymol blue is a kind of acid base indicator", "pln": ["(: cnet_isa_ec7b57498a (IsA bromothymol_blue acid_base_indicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bromothymol blue is a kind of dye", "pln": ["(: cnet_isa_81621bae83 (IsA bromothymol_blue dye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brompton stock is a kind of stock", "pln": ["(: cnet_isa_267893a314 (IsA brompton_stock stock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bromus is a kind of monocot genus", "pln": ["(: cnet_isa_a851d93c02 (IsA bromus monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bronchial artery is a kind of artery", "pln": ["(: cnet_isa_dcb1d4951c (IsA bronchial_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bronchial vein is a kind of vein", "pln": ["(: cnet_isa_8181bd7400 (IsA bronchial_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bronchiole is a kind of duct", "pln": ["(: cnet_isa_48dca3456d (IsA bronchiole duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bronchiolitis is a kind of bronchitis", "pln": ["(: cnet_isa_61b51a5086 (IsA bronchiolitis bronchitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bronchitis is a kind of respiratory disease", "pln": ["(: cnet_isa_b82e74a792 (IsA bronchitis respiratory_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bronchodilator is a kind of medicine", "pln": ["(: cnet_isa_2326702bfc (IsA bronchodilator medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bronchopneumonia is a kind of pneumonia", "pln": ["(: cnet_isa_c9d3c11cc4 (IsA bronchopneumonia pneumonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bronchoscope is a kind of medical instrument", "pln": ["(: cnet_isa_49011df075 (IsA bronchoscope medical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bronchospasm is a kind of spasm", "pln": ["(: cnet_isa_2cfe68563b (IsA bronchospasm spasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bronchus is a kind of cartilaginous tube", "pln": ["(: cnet_isa_c4f1acd00c (IsA bronchus cartilaginous_tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bronco is a kind of mustang", "pln": ["(: cnet_isa_aa062c1f3f (IsA bronco mustang) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bronco buster is a kind of horseman", "pln": ["(: cnet_isa_1895966c33 (IsA bronco_buster horseman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bronco busting is a kind of riding", "pln": ["(: cnet_isa_92cb3d5617 (IsA bronco_busting riding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brontosaurus is a kind of sauropod", "pln": ["(: cnet_isa_7adf31b0cb (IsA brontosaurus sauropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bronze is a kind of alloy", "pln": ["(: cnet_isa_f6ff24728e (IsA bronze alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bronze is a kind of metal", "pln": ["(: cnet_isa_f1db543f65 (IsA bronze metal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bronze is a kind of sculpture", "pln": ["(: cnet_isa_e569d93c8a (IsA bronze sculpture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bronze is a kind of copper base alloy", "pln": ["(: cnet_isa_33d699a434 (IsA bronze copper_base_alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bronze age is a kind of time period", "pln": ["(: cnet_isa_cd2549548a (IsA bronze_age time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bronze medal is a kind of trophy", "pln": ["(: cnet_isa_df28ab1553 (IsA bronze_medal trophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bronze star medal is a kind of decoration", "pln": ["(: cnet_isa_a729588643 (IsA bronze_star_medal decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brooch is a kind of pin", "pln": ["(: cnet_isa_2474be722a (IsA brooch pin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brood is a kind of animal group", "pln": ["(: cnet_isa_6770bf3491 (IsA brood animal_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brood bitch is a kind of bitch", "pln": ["(: cnet_isa_b5e36767f5 (IsA brood_bitch bitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brood hen is a kind of hen", "pln": ["(: cnet_isa_3735a2be4e (IsA brood_hen hen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brooding is a kind of parturition", "pln": ["(: cnet_isa_39256efef8 (IsA brooding parturition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broodmare is a kind of mare", "pln": ["(: cnet_isa_764f6b1bb7 (IsA broodmare mare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brook is a kind of stream", "pln": ["(: cnet_isa_617cd818c9 (IsA brook stream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brook thistle is a kind of plume thistle", "pln": ["(: cnet_isa_bd7e341204 (IsA brook_thistle plume_thistle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brook trout is a kind of trout", "pln": ["(: cnet_isa_b9868dc9a5 (IsA brook_trout trout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brook trout is a kind of freshwater fish", "pln": ["(: cnet_isa_99e6544caf (IsA brook_trout freshwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brooklet is a kind of brook", "pln": ["(: cnet_isa_91dee63ceb (IsA brooklet brook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brooklime is a kind of marsh plant", "pln": ["(: cnet_isa_cb894d5e2d (IsA brooklime marsh_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brookweed is a kind of water pimpernel", "pln": ["(: cnet_isa_7eb3e9adc3 (IsA brookweed water_pimpernel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broom is a kind of cleaning implement", "pln": ["(: cnet_isa_caa47772e8 (IsA broom cleaning_implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "broom is a kind of shrub", "pln": ["(: cnet_isa_263e2decfc (IsA broom shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broom beard grass is a kind of broom grass", "pln": ["(: cnet_isa_e6b085233c (IsA broom_beard_grass broom_grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broom closet is a kind of cupboard", "pln": ["(: cnet_isa_d9c0fe9487 (IsA broom_closet cupboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broom grass is a kind of grass", "pln": ["(: cnet_isa_a5f38a7f80 (IsA broom_grass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broom sedge is a kind of broom grass", "pln": ["(: cnet_isa_440be9a12e (IsA broom_sedge broom_grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broom tree is a kind of broom", "pln": ["(: cnet_isa_5544630da8 (IsA broom_tree broom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broomcorn is a kind of sorghum", "pln": ["(: cnet_isa_0226c4d0c8 (IsA broomcorn sorghum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broomcorn millet is a kind of panic grass", "pln": ["(: cnet_isa_f27e6f4347 (IsA broomcorn_millet panic_grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "broomstick is a kind of handle", "pln": ["(: cnet_isa_9d01c9f2b5 (IsA broomstick handle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broomweed is a kind of matchweed", "pln": ["(: cnet_isa_97d0d15f98 (IsA broomweed matchweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brosmius is a kind of fish genus", "pln": ["(: cnet_isa_3a9812a792 (IsA brosmius fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broth is a kind of soup", "pln": ["(: cnet_isa_d855843e9b (IsA broth soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broth of boy is a kind of boy", "pln": ["(: cnet_isa_1ec13e16fd (IsA broth_of_boy boy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brothel is a kind of commercial sex establishment", "pln": ["(: cnet_isa_e37b6e24f3 (IsA brothel commercial_sex_establishment) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brother is a kind of male", "pln": ["(: cnet_isa_169bd5563e (IsA brother male) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brother is a kind of sibling", "pln": ["(: cnet_isa_96f86e1c26 (IsA brother sibling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brother is a kind of friend", "pln": ["(: cnet_isa_d37aedc8f8 (IsA brother friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brother is a kind of male sibling", "pln": ["(: cnet_isa_d81e105cba (IsA brother male_sibling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brother is a kind of member", "pln": ["(: cnet_isa_14df67f0e0 (IsA brother member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brother is a kind of monk", "pln": ["(: cnet_isa_7eb7488bc6 (IsA brother monk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brother and sister is a kind of sibling", "pln": ["(: cnet_isa_5d7be4dcb0 (IsA brother_and_sister sibling) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brother in law is a kind of in law", "pln": ["(: cnet_isa_73f371854b (IsA brother_in_law in_law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brotherhood is a kind of friendliness", "pln": ["(: cnet_isa_787337d038 (IsA brotherhood friendliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brotherhood is a kind of class", "pln": ["(: cnet_isa_755fc2afa2 (IsA brotherhood class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brotherhood is a kind of kinship", "pln": ["(: cnet_isa_ec8f6de957 (IsA brotherhood kinship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brotula is a kind of percoid fish", "pln": ["(: cnet_isa_89eb300c96 (IsA brotula percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brotulidae is a kind of fish family", "pln": ["(: cnet_isa_919b288419 (IsA brotulidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brougham is a kind of carriage", "pln": ["(: cnet_isa_f123c4a039 (IsA brougham carriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brougham is a kind of sedan", "pln": ["(: cnet_isa_b5ee3d4a41 (IsA brougham sedan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brouhaha is a kind of furor", "pln": ["(: cnet_isa_61eceebdd2 (IsA brouhaha furor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "broussonetia is a kind of dicot genus", "pln": ["(: cnet_isa_d764b0fc46 (IsA broussonetia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brow is a kind of feature", "pln": ["(: cnet_isa_8888ad7ef1 (IsA brow feature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brow ptosis is a kind of ptosis", "pln": ["(: cnet_isa_a3e44108ee (IsA brow_ptosis ptosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brown is a kind of color", "pln": ["(: cnet_isa_2af23e329e (IsA brown color) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brown is a kind of chromatic color", "pln": ["(: cnet_isa_9c77467a58 (IsA brown chromatic_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brown algae is a kind of alga", "pln": ["(: cnet_isa_b6b2e13c3f (IsA brown_algae alga) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "brown bells is a kind of fritillary", "pln": ["(: cnet_isa_e98a65e569 (IsA brown_bells fritillary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brown bat is a kind of carnivorous bat", "pln": ["(: cnet_isa_afe7129e7f (IsA brown_bat carnivorous_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brown bear is a kind of bear", "pln": ["(: cnet_isa_caf8d36e06 (IsA brown_bear bear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brown bell is a kind of fritillary", "pln": ["(: cnet_isa_af37e35413 (IsA brown_bell fritillary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brown betty is a kind of pudding", "pln": ["(: cnet_isa_38e1001222 (IsA brown_betty pudding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brown bread is a kind of bread", "pln": ["(: cnet_isa_17514eb601 (IsA brown_bread bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brown bullhead is a kind of bullhead", "pln": ["(: cnet_isa_ade72e8a51 (IsA brown_bullhead bullhead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brown butter is a kind of butter", "pln": ["(: cnet_isa_5a03ba8b53 (IsA brown_butter butter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brown creeper is a kind of creeper", "pln": ["(: cnet_isa_2b4691ee7e (IsA brown_creeper creeper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brown cup is a kind of sclerotinia", "pln": ["(: cnet_isa_f8c43984fb (IsA brown_cup sclerotinia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brown hyena is a kind of hyena", "pln": ["(: cnet_isa_ffc5a25f06 (IsA brown_hyena hyena) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brown lacewing is a kind of lacewing", "pln": ["(: cnet_isa_8bfd7778c9 (IsA brown_lacewing lacewing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brown lemming is a kind of lemming", "pln": ["(: cnet_isa_2520227376 (IsA brown_lemming lemming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brown pine is a kind of conifer", "pln": ["(: cnet_isa_b37e8443c7 (IsA brown_pine conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brown rat is a kind of rat", "pln": ["(: cnet_isa_2cb3f48b7e (IsA brown_rat rat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brown rice is a kind of rice", "pln": ["(: cnet_isa_0b75c41daa (IsA brown_rice rice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brown root rot fungus is a kind of fungus", "pln": ["(: cnet_isa_ebdefbcae8 (IsA brown_root_rot_fungus fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brown rot is a kind of plant disease", "pln": ["(: cnet_isa_2eb973ffba (IsA brown_rot plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brown rot gummosis is a kind of brown rot", "pln": ["(: cnet_isa_3ed71f269b (IsA brown_rot_gummosis brown_rot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brown sauce is a kind of sauce", "pln": ["(: cnet_isa_26b7c4aa34 (IsA brown_sauce sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brown snail is a kind of garden snail", "pln": ["(: cnet_isa_8c74413825 (IsA brown_snail garden_snail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brown soft scale is a kind of soft scale", "pln": ["(: cnet_isa_ab2ff37a92 (IsA brown_soft_scale soft_scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brown study is a kind of reverie", "pln": ["(: cnet_isa_6ced34975e (IsA brown_study reverie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brown sugar is a kind of sugar", "pln": ["(: cnet_isa_5cb4d632dc (IsA brown_sugar sugar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brown swiss is a kind of dairy cattle", "pln": ["(: cnet_isa_0dd99ac97f (IsA brown_swiss dairy_cattle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brown thrasher is a kind of thrasher", "pln": ["(: cnet_isa_694ca03721 (IsA brown_thrasher thrasher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brown trout is a kind of trout", "pln": ["(: cnet_isa_f200816010 (IsA brown_trout trout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brownian movement is a kind of movement", "pln": ["(: cnet_isa_8cebb47094 (IsA brownian_movement movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brownie is a kind of cookie", "pln": ["(: cnet_isa_65ff0b437a (IsA brownie cookie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brownie is a kind of girl scout", "pln": ["(: cnet_isa_bc67f47ff9 (IsA brownie girl_scout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brownie mix is a kind of ready mix", "pln": ["(: cnet_isa_68650acacc (IsA brownie_mix ready_mix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "browning automatic rifle is a kind of automatic rifle", "pln": ["(: cnet_isa_ccd63f5208 (IsA browning_automatic_rifle automatic_rifle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "browning machine gun is a kind of machine gun", "pln": ["(: cnet_isa_4d6c2f3604 (IsA browning_machine_gun machine_gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brownish yellow is a kind of yellow", "pln": ["(: cnet_isa_ddd44d97f3 (IsA brownish_yellow yellow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brownshirt is a kind of german nazi", "pln": ["(: cnet_isa_52241e71c8 (IsA brownshirt german_nazi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brownstone is a kind of row house", "pln": ["(: cnet_isa_b761d0c99c (IsA brownstone row_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brownstone is a kind of sandstone", "pln": ["(: cnet_isa_91640f2875 (IsA brownstone sandstone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "browntail is a kind of lymantriid", "pln": ["(: cnet_isa_3d07473d71 (IsA browntail lymantriid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "browse is a kind of eating", "pln": ["(: cnet_isa_5cf9436fa5 (IsA browse eating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "browse is a kind of reading", "pln": ["(: cnet_isa_0f332b06b0 (IsA browse reading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "browse is a kind of vegetation", "pln": ["(: cnet_isa_cc1c60c199 (IsA browse vegetation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "browser is a kind of application", "pln": ["(: cnet_isa_fc8fa47511 (IsA browser application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "browser is a kind of spectator", "pln": ["(: cnet_isa_9da625f45d (IsA browser spectator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brucella is a kind of coccobacillus", "pln": ["(: cnet_isa_f20913d23c (IsA brucella coccobacillus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brucellosis is a kind of infectious disease", "pln": ["(: cnet_isa_362906aabe (IsA brucellosis infectious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brucellosis is a kind of zoonosis", "pln": ["(: cnet_isa_7606571ad8 (IsA brucellosis zoonosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bruchidae is a kind of arthropod family", "pln": ["(: cnet_isa_b7d373c809 (IsA bruchidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bruchus is a kind of arthropod genus", "pln": ["(: cnet_isa_9323b5225f (IsA bruchus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brucine is a kind of alkaloid", "pln": ["(: cnet_isa_a09a00d825 (IsA brucine alkaloid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brucine is a kind of plant toxin", "pln": ["(: cnet_isa_ed4354f779 (IsA brucine plant_toxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bruckenthalia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_a6140e0c0d (IsA bruckenthalia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brugmansia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_0753ffa0ff (IsA brugmansia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bruin is a kind of bear", "pln": ["(: cnet_isa_b26283aedf (IsA bruin bear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bruise is a kind of injury", "pln": ["(: cnet_isa_2f88d30d2b (IsA bruise injury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brule is a kind of teton dakota", "pln": ["(: cnet_isa_57173862df (IsA brule teton_dakota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brumaire is a kind of revolutionary calendar month", "pln": ["(: cnet_isa_5ed621d5d8 (IsA brumaire revolutionary_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brummy is a kind of english person", "pln": ["(: cnet_isa_bd90b1018b (IsA brummy english_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brunch is a kind of meal", "pln": ["(: cnet_isa_fd6b9bf2e7 (IsA brunch meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brunch coat is a kind of negligee", "pln": ["(: cnet_isa_f9d9f95765 (IsA brunch_coat negligee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brunei dollar is a kind of dollar", "pln": ["(: cnet_isa_50a4569fb2 (IsA brunei_dollar dollar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bruneian is a kind of bornean", "pln": ["(: cnet_isa_3b22fa4eef (IsA bruneian bornean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brunet is a kind of person", "pln": ["(: cnet_isa_fd7effa1da (IsA brunet person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brunfelsia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_f401da6bf5 (IsA brunfelsia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brunswick stew is a kind of stew", "pln": ["(: cnet_isa_e13a1b9917 (IsA brunswick_stew stew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brunt is a kind of force", "pln": ["(: cnet_isa_cf8f3279e7 (IsA brunt force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brush is a kind of contact", "pln": ["(: cnet_isa_8def0044d0 (IsA brush contact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brush is a kind of dental care", "pln": ["(: cnet_isa_bf6444dfec (IsA brush dental_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brush is a kind of fight", "pln": ["(: cnet_isa_f1efbf5a09 (IsA brush fight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brush is a kind of hair care", "pln": ["(: cnet_isa_110f316453 (IsA brush hair_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brush is a kind of tail", "pln": ["(: cnet_isa_1df57f6317 (IsA brush tail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brush is a kind of electrical device", "pln": ["(: cnet_isa_4999721b0b (IsA brush electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brush is a kind of implement", "pln": ["(: cnet_isa_a06d2eb679 (IsA brush implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brush is a kind of touch", "pln": ["(: cnet_isa_0f5497cd2b (IsA brush touch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brush is a kind of vegetation", "pln": ["(: cnet_isa_cdf7cd0833 (IsA brush vegetation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brush cut is a kind of haircut", "pln": ["(: cnet_isa_00887cb3ad (IsA brush_cut haircut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brush discharge is a kind of discharge", "pln": ["(: cnet_isa_6278d0bf4d (IsA brush_discharge discharge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brush fire is a kind of fire", "pln": ["(: cnet_isa_f8250b5b6d (IsA brush_fire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brush off is a kind of rejection", "pln": ["(: cnet_isa_96949744d0 (IsA brush_off rejection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brush tailed phalanger is a kind of phalanger", "pln": ["(: cnet_isa_90c2df5be9 (IsA brush_tailed_phalanger phalanger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brush tailed porcupine is a kind of old world porcupine", "pln": ["(: cnet_isa_7b0a45ab42 (IsA brush_tailed_porcupine old_world_porcupine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brush turkey is a kind of megapode", "pln": ["(: cnet_isa_0edc27af5c (IsA brush_turkey megapode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brushwood is a kind of wood", "pln": ["(: cnet_isa_62204e9b0f (IsA brushwood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brushwork is a kind of proficiency", "pln": ["(: cnet_isa_dfa7c5d33e (IsA brushwork proficiency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "brussels carpet is a kind of rug", "pln": ["(: cnet_isa_40d7e7c422 (IsA brussels_carpet rug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brussel carpet is a kind of rug", "pln": ["(: cnet_isa_00f3c61eab (IsA brussel_carpet rug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brussel lace is a kind of lace", "pln": ["(: cnet_isa_9c27f3128a (IsA brussel_lace lace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brussel sprout is a kind of cruciferous vegetable", "pln": ["(: cnet_isa_3a54d6497e (IsA brussel_sprout cruciferous_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brussel sprout is a kind of crucifer", "pln": ["(: cnet_isa_2b0dd2644f (IsA brussel_sprout crucifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brussel sprout is a kind of vegetable", "pln": ["(: cnet_isa_18fd414c60 (IsA brussel_sprout vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brutality is a kind of atrocity", "pln": ["(: cnet_isa_2693f566fa (IsA brutality atrocity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brutalization is a kind of degradation", "pln": ["(: cnet_isa_c4f72410f0 (IsA brutalization degradation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brutalization is a kind of wrongdoing", "pln": ["(: cnet_isa_29bbc866cb (IsA brutalization wrongdoing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "brutalization is a kind of condition", "pln": ["(: cnet_isa_3fb3672fef (IsA brutalization condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bruxism is a kind of action", "pln": ["(: cnet_isa_caf4d0002a (IsA bruxism action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brya is a kind of rosid dicot genus", "pln": ["(: cnet_isa_e6810216db (IsA brya rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bryaceae is a kind of moss family", "pln": ["(: cnet_isa_6f361598cd (IsA bryaceae moss_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bryale is a kind of plant order", "pln": ["(: cnet_isa_7ad061caa5 (IsA bryale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bryanthus is a kind of shrub", "pln": ["(: cnet_isa_92bbb0c1b1 (IsA bryanthus shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bryony is a kind of vine", "pln": ["(: cnet_isa_1464b99a03 (IsA bryony vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bryophyta is a kind of division", "pln": ["(: cnet_isa_c3469a9232 (IsA bryophyta division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bryophyte is a kind of nonvascular organism", "pln": ["(: cnet_isa_c5192cb5fe (IsA bryophyte nonvascular_organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bryopsida is a kind of class", "pln": ["(: cnet_isa_96b12f218c (IsA bryopsida class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bryozoa is a kind of phylum", "pln": ["(: cnet_isa_79aedc0056 (IsA bryozoa phylum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bryozoan is a kind of invertebrate", "pln": ["(: cnet_isa_8a2b473028 (IsA bryozoan invertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "brythonic is a kind of celtic", "pln": ["(: cnet_isa_d198a46a6a (IsA brythonic celtic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bryum is a kind of moss genus", "pln": ["(: cnet_isa_124ed28751 (IsA bryum moss_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bse is a kind of disease", "pln": ["(: cnet_isa_04c8d5ab38 (IsA bse disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bubalus is a kind of mammal genus", "pln": ["(: cnet_isa_f63b0ceff3 (IsA bubalus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bubble is a kind of covering", "pln": ["(: cnet_isa_08f3c24a60 (IsA bubble covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bubble is a kind of illusion", "pln": ["(: cnet_isa_bd9cd11685 (IsA bubble illusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bubble is a kind of globule", "pln": ["(: cnet_isa_986dcf0c25 (IsA bubble globule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bubble and squeak is a kind of dish", "pln": ["(: cnet_isa_dcf7f87f44 (IsA bubble_and_squeak dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bubble bath is a kind of bath", "pln": ["(: cnet_isa_8c6a0e5702 (IsA bubble_bath bath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bubble chamber is a kind of particle detector", "pln": ["(: cnet_isa_1650baa1e1 (IsA bubble_chamber particle_detector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bubble dance is a kind of nude dancing", "pln": ["(: cnet_isa_255cecf81d (IsA bubble_dance nude_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bubble gum is a kind of chewing gum", "pln": ["(: cnet_isa_d9e0530e40 (IsA bubble_gum chewing_gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bubble gum dermatitis is a kind of contact dermatitis", "pln": ["(: cnet_isa_e999144d2d (IsA bubble_gum_dermatitis contact_dermatitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bubble jet printer is a kind of ink jet printer", "pln": ["(: cnet_isa_c3248744db (IsA bubble_jet_printer ink_jet_printer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bubble shell is a kind of gastropod", "pln": ["(: cnet_isa_4d3234f0bd (IsA bubble_shell gastropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bubbler is a kind of device", "pln": ["(: cnet_isa_c39640fad5 (IsA bubbler device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bubbliness is a kind of gaseousness", "pln": ["(: cnet_isa_1b735c47b9 (IsA bubbliness gaseousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bubo is a kind of bird genus", "pln": ["(: cnet_isa_37d8d44d03 (IsA bubo bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bubo is a kind of lymph node", "pln": ["(: cnet_isa_4a28bd90b4 (IsA bubo lymph_node) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bubo is a kind of symptom", "pln": ["(: cnet_isa_e9ec04a82e (IsA bubo symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bubonic plague is a kind of plague", "pln": ["(: cnet_isa_374562dbc8 (IsA bubonic_plague plague) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bubulcus is a kind of bird genus", "pln": ["(: cnet_isa_af223a3be2 (IsA bubulcus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "buccal artery is a kind of artery", "pln": ["(: cnet_isa_ec8dc13944 (IsA buccal_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buccal cavity is a kind of cavity", "pln": ["(: cnet_isa_a59a36d999 (IsA buccal_cavity cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buccinidae is a kind of mollusk family", "pln": ["(: cnet_isa_3f0844ff3e (IsA buccinidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bucconidae is a kind of bird family", "pln": ["(: cnet_isa_79e900c8d4 (IsA bucconidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bucephala is a kind of bird genus", "pln": ["(: cnet_isa_346b3e0014 (IsA bucephala bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "buceros is a kind of bird genus", "pln": ["(: cnet_isa_ea789167d7 (IsA buceros bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bucero is a kind of bird genus", "pln": ["(: cnet_isa_7a428f92d5 (IsA bucero bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bucerotidae is a kind of bird family", "pln": ["(: cnet_isa_8c5cf619df (IsA bucerotidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buchloe is a kind of monocot genus", "pln": ["(: cnet_isa_15b96e7189 (IsA buchloe monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buck is a kind of deer", "pln": ["(: cnet_isa_71ceff8fd5 (IsA buck deer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buck is a kind of placental", "pln": ["(: cnet_isa_4129a95abe (IsA buck placental) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buck and wing is a kind of tap dancing", "pln": ["(: cnet_isa_bb94ac83cd (IsA buck_and_wing tap_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buck fever is a kind of fever", "pln": ["(: cnet_isa_22875c638c (IsA buck_fever fever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buck sergeant is a kind of police sergeant", "pln": ["(: cnet_isa_3a45018196 (IsA buck_sergeant police_sergeant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buckboard is a kind of carriage", "pln": ["(: cnet_isa_28469793bb (IsA buckboard carriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bucket is a kind of container", "pln": ["(: cnet_isa_9f32b412a2 (IsA bucket container) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bucket is a kind of vessel", "pln": ["(: cnet_isa_0cdaf3a0e3 (IsA bucket vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bucket is a kind of containerful", "pln": ["(: cnet_isa_78ad935ec2 (IsA bucket containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bucket seat is a kind of seat", "pln": ["(: cnet_isa_28bc73c91f (IsA bucket_seat seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bucket shop is a kind of tavern", "pln": ["(: cnet_isa_a45373e345 (IsA bucket_shop tavern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bucket shop is a kind of brokerage", "pln": ["(: cnet_isa_7b2d730feb (IsA bucket_shop brokerage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buckeye is a kind of american", "pln": ["(: cnet_isa_1b82dfeb3b (IsA buckeye american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buckeye is a kind of seed", "pln": ["(: cnet_isa_76bb320425 (IsA buckeye seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bucking bronco is a kind of bronco", "pln": ["(: cnet_isa_d96c2f12f9 (IsA bucking_bronco bronco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buckle is a kind of fastener", "pln": ["(: cnet_isa_660e31f475 (IsA buckle fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "buckler mustard is a kind of shrub", "pln": ["(: cnet_isa_9b3edd5134 (IsA buckler_mustard shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buckleya is a kind of parasitic plant", "pln": ["(: cnet_isa_c0202152db (IsA buckleya parasitic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buckminsterfullerene is a kind of fullerene", "pln": ["(: cnet_isa_81314a0a41 (IsA buckminsterfullerene fullerene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buckram is a kind of fabric", "pln": ["(: cnet_isa_87451dee71 (IsA buckram fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bucksaw is a kind of saw", "pln": ["(: cnet_isa_2b3ae1f33f (IsA bucksaw saw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buckskin is a kind of saddle horse", "pln": ["(: cnet_isa_0d346e023a (IsA buckskin saddle_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buckskin is a kind of leather", "pln": ["(: cnet_isa_bc1969d361 (IsA buckskin leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buckskin is a kind of breeche", "pln": ["(: cnet_isa_90258eab9c (IsA buckskin breeche) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buckthorn is a kind of shrub", "pln": ["(: cnet_isa_3b15c25e81 (IsA buckthorn shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buckthorn berry is a kind of fruit", "pln": ["(: cnet_isa_fb781bb59d (IsA buckthorn_berry fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bucktooth is a kind of front tooth", "pln": ["(: cnet_isa_121239d9e9 (IsA bucktooth front_tooth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buckwheat is a kind of grain", "pln": ["(: cnet_isa_2a5e518aab (IsA buckwheat grain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buckwheat is a kind of herb", "pln": ["(: cnet_isa_5cab32a9ca (IsA buckwheat herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buckwheat cake is a kind of pancake", "pln": ["(: cnet_isa_2f06804d19 (IsA buckwheat_cake pancake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bud is a kind of flower", "pln": ["(: cnet_isa_8e9814ecde (IsA bud flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bud is a kind of sprout", "pln": ["(: cnet_isa_6ea5b41901 (IsA bud sprout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bud brush is a kind of sagebrush", "pln": ["(: cnet_isa_57dbd0539f (IsA bud_brush sagebrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buddha is a kind of saint", "pln": ["(: cnet_isa_78adae5a12 (IsA buddha saint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buddhism is a kind of religion", "pln": ["(: cnet_isa_c3503b66bc (IsA buddhism religion) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buddhist is a kind of religionist", "pln": ["(: cnet_isa_e26fb27b8e (IsA buddhist religionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "budding is a kind of asexual reproduction", "pln": ["(: cnet_isa_992a302590 (IsA budding asexual_reproduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buddy is a kind of friend", "pln": ["(: cnet_isa_f62ab9afca (IsA buddy friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buddy system is a kind of pairing", "pln": ["(: cnet_isa_cdc943d981 (IsA buddy_system pairing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "budgerigar is a kind of parakeet", "pln": ["(: cnet_isa_95416a30f1 (IsA budgerigar parakeet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "budget is a kind of fund", "pln": ["(: cnet_isa_681a616d11 (IsA budget fund) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "budget is a kind of plan", "pln": ["(: cnet_isa_3153eb1502 (IsA budget plan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "budget cut is a kind of cut", "pln": ["(: cnet_isa_a3038b00e6 (IsA budget_cut cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "budget deficit is a kind of deficit", "pln": ["(: cnet_isa_b433987cfa (IsA budget_deficit deficit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "budorca is a kind of mammal genus", "pln": ["(: cnet_isa_d039d4f83f (IsA budorca mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buff is a kind of implement", "pln": ["(: cnet_isa_2e05e92ca9 (IsA buff implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buff is a kind of skin", "pln": ["(: cnet_isa_d713620df2 (IsA buff skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buff is a kind of leather", "pln": ["(: cnet_isa_f1730c8b9b (IsA buff leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buffalo is a kind of game", "pln": ["(: cnet_isa_684327f939 (IsA buffalo game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buffalo bur is a kind of nightshade", "pln": ["(: cnet_isa_9281c542a7 (IsA buffalo_bur nightshade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buffalo carpet beetle is a kind of carpet beetle", "pln": ["(: cnet_isa_28c5ff71df (IsA buffalo_carpet_beetle carpet_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buffalo clover is a kind of clover", "pln": ["(: cnet_isa_03ceaa9e59 (IsA buffalo_clover clover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buffalo fish is a kind of sucker", "pln": ["(: cnet_isa_5bdee323c3 (IsA buffalo_fish sucker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buffalo grass is a kind of grass", "pln": ["(: cnet_isa_8a39057aa5 (IsA buffalo_grass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buffalo indian is a kind of native american", "pln": ["(: cnet_isa_8d7387dc7c (IsA buffalo_indian native_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buffalo nut is a kind of fruit", "pln": ["(: cnet_isa_772c85df33 (IsA buffalo_nut fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buffalo wing is a kind of dish", "pln": ["(: cnet_isa_2dc9750226 (IsA buffalo_wing dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buffalofish is a kind of freshwater fish", "pln": ["(: cnet_isa_f53732f8c6 (IsA buffalofish freshwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buffel grass is a kind of burgrass", "pln": ["(: cnet_isa_01070be5ef (IsA buffel_grass burgrass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buffer is a kind of device", "pln": ["(: cnet_isa_3d25145395 (IsA buffer device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buffer is a kind of power tool", "pln": ["(: cnet_isa_95ee3af927 (IsA buffer power_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buffer is a kind of compound", "pln": ["(: cnet_isa_f1cca21d0a (IsA buffer compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buffer is a kind of memory device", "pln": ["(: cnet_isa_b7855c3aad (IsA buffer memory_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buffer solution is a kind of solution", "pln": ["(: cnet_isa_36fdea6638 (IsA buffer_solution solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buffer state is a kind of country", "pln": ["(: cnet_isa_90f109d54e (IsA buffer_state country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buffer zone is a kind of zone", "pln": ["(: cnet_isa_a85fb90293 (IsA buffer_zone zone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buffet is a kind of furniture", "pln": ["(: cnet_isa_c26c63a8a0 (IsA buffet furniture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buffet is a kind of meal", "pln": ["(: cnet_isa_ee1b11b92e (IsA buffet meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buffing wheel is a kind of wheel", "pln": ["(: cnet_isa_414bfabbc6 (IsA buffing_wheel wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bufflehead is a kind of duck", "pln": ["(: cnet_isa_524efd59b8 (IsA bufflehead duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "buffoonery is a kind of folly", "pln": ["(: cnet_isa_3a8c67b791 (IsA buffoonery folly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bufo is a kind of true toad", "pln": ["(: cnet_isa_66121bc3b0 (IsA bufo true_toad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bufonidae is a kind of amphibian family", "pln": ["(: cnet_isa_af5cf8e817 (IsA bufonidae amphibian_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bug is a kind of insect", "pln": ["(: cnet_isa_b69ad24f62 (IsA bug insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bug is a kind of microphone", "pln": ["(: cnet_isa_ab03533b96 (IsA bug microphone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bug is a kind of defect", "pln": ["(: cnet_isa_b41800a48c (IsA bug defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bug in computer software is a kind of error", "pln": ["(: cnet_isa_ca418f0a09 (IsA bug_in_computer_software error) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bugaboo is a kind of concern", "pln": ["(: cnet_isa_fa8cfc182d (IsA bugaboo concern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bugbane is a kind of woody plant", "pln": ["(: cnet_isa_27e45eb472 (IsA bugbane woody_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bugbear is a kind of object", "pln": ["(: cnet_isa_b54535cc8b (IsA bugbear object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bugger all is a kind of nothing", "pln": ["(: cnet_isa_51b26f3e87 (IsA bugger_all nothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bugginess is a kind of defectiveness", "pln": ["(: cnet_isa_65ee87a8ef (IsA bugginess defectiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buggy is a kind of carriage", "pln": ["(: cnet_isa_79d059ecbf (IsA buggy carriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buggy whip is a kind of horsewhip", "pln": ["(: cnet_isa_1fed8f6dd4 (IsA buggy_whip horsewhip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bugle is a kind of bead", "pln": ["(: cnet_isa_92a5661c76 (IsA bugle bead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bugle is a kind of brass", "pln": ["(: cnet_isa_c5f45da95c (IsA bugle brass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bugle is a kind of herb", "pln": ["(: cnet_isa_d708b9249a (IsA bugle herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bugle call is a kind of signal", "pln": ["(: cnet_isa_ead03297e4 (IsA bugle_call signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bugler is a kind of trumpeter", "pln": ["(: cnet_isa_033e123a96 (IsA bugler trumpeter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bugleweed is a kind of herb", "pln": ["(: cnet_isa_1be4b69906 (IsA bugleweed herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bugloss is a kind of anchusa", "pln": ["(: cnet_isa_5e027e75cf (IsA bugloss anchusa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "building society is a kind of savings and loan", "pln": ["(: cnet_isa_40025d5895 (IsA building_society savings_and_loan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buick is a kind of brand of car", "pln": ["(: cnet_isa_f99096fff1 (IsA buick brand_of_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buick is a kind of manufacturer of car", "pln": ["(: cnet_isa_f02bde9b2e (IsA buick manufacturer_of_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "builder is a kind of contractor", "pln": ["(: cnet_isa_37af7a0a1c (IsA builder contractor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "builder is a kind of creator", "pln": ["(: cnet_isa_41202540c3 (IsA builder creator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "builder is a kind of material", "pln": ["(: cnet_isa_597d0af7d8 (IsA builder material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "building is a kind of artificial structure", "pln": ["(: cnet_isa_1c95037489 (IsA building artificial_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "building is a kind of structure", "pln": ["(: cnet_isa_c22acbf402 (IsA building structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "building is a kind of gathering", "pln": ["(: cnet_isa_2ecae90e9a (IsA building gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "building block is a kind of building material", "pln": ["(: cnet_isa_2e8ada8245 (IsA building_block building_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "building code is a kind of code", "pln": ["(: cnet_isa_e04d2f851f (IsA building_code code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "building complex is a kind of structure", "pln": ["(: cnet_isa_d556087bc6 (IsA building_complex structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "building material is a kind of artifact", "pln": ["(: cnet_isa_9d1d39a4c4 (IsA building_material artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "building permit is a kind of license", "pln": ["(: cnet_isa_5e3385f89b (IsA building_permit license) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "building society is a kind of saving and loan", "pln": ["(: cnet_isa_f8b81a1d98 (IsA building_society saving_and_loan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "building supply store is a kind of shop", "pln": ["(: cnet_isa_0f534f0f58 (IsA building_supply_store shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buildup is a kind of accumulation", "pln": ["(: cnet_isa_43fdf571e4 (IsA buildup accumulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buildup is a kind of promotion", "pln": ["(: cnet_isa_b5ae10475f (IsA buildup promotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buildup is a kind of accretion", "pln": ["(: cnet_isa_977712426b (IsA buildup accretion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "built in bed is a kind of bed", "pln": ["(: cnet_isa_bffcb3cedc (IsA built_in_bed bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulb is a kind of part", "pln": ["(: cnet_isa_189a62833d (IsA bulb part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulb is a kind of structure", "pln": ["(: cnet_isa_d09ec2460a (IsA bulb structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulb is a kind of stalk", "pln": ["(: cnet_isa_7a0515a0c4 (IsA bulb stalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulb is a kind of round shape", "pln": ["(: cnet_isa_10be7aa180 (IsA bulb round_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulbar conjunctiva is a kind of conjunctiva", "pln": ["(: cnet_isa_5ed774ff13 (IsA bulbar_conjunctiva conjunctiva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulbil is a kind of bulb", "pln": ["(: cnet_isa_5b92f336bd (IsA bulbil bulb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulblet fern is a kind of bladder fern", "pln": ["(: cnet_isa_fac9598a93 (IsA bulblet_fern bladder_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulbous iris is a kind of iris", "pln": ["(: cnet_isa_dcf5e7d27f (IsA bulbous_iris iris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulbous plant is a kind of vascular plant", "pln": ["(: cnet_isa_99f49c7d06 (IsA bulbous_plant vascular_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulbul is a kind of nightingale", "pln": ["(: cnet_isa_0b1f518988 (IsA bulbul nightingale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulgarian is a kind of slavic", "pln": ["(: cnet_isa_992450bc29 (IsA bulgarian slavic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bulgarian is a kind of european", "pln": ["(: cnet_isa_184a6b5c03 (IsA bulgarian european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulgarian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_2bd9a89b7e (IsA bulgarian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulge is a kind of projection", "pln": ["(: cnet_isa_cb9c7a75bb (IsA bulge projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulgur is a kind of wheat", "pln": ["(: cnet_isa_f9410d0c58 (IsA bulgur wheat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulgur pilaf is a kind of pilaf", "pln": ["(: cnet_isa_60e0045f50 (IsA bulgur_pilaf pilaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulimarexia is a kind of eating disorder", "pln": ["(: cnet_isa_2801adf2b1 (IsA bulimarexia eating_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulimia is a kind of eating disorder", "pln": ["(: cnet_isa_37cb90c493 (IsA bulimia eating_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulimia is a kind of hunger", "pln": ["(: cnet_isa_6ad1b9e6ad (IsA bulimia hunger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulimic is a kind of sick person", "pln": ["(: cnet_isa_53c7cda32b (IsA bulimic sick_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulk is a kind of magnitude", "pln": ["(: cnet_isa_73f3716953 (IsA bulk magnitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulk is a kind of mass", "pln": ["(: cnet_isa_2acdd72e1b (IsA bulk mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulk mail is a kind of mail", "pln": ["(: cnet_isa_49215610aa (IsA bulk_mail mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulk modulus is a kind of coefficient of elasticity", "pln": ["(: cnet_isa_822e979b34 (IsA bulk_modulus coefficient_of_elasticity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulkhead is a kind of partition", "pln": ["(: cnet_isa_f1a67c56dc (IsA bulkhead partition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulkiness is a kind of largeness", "pln": ["(: cnet_isa_0846f978fc (IsA bulkiness largeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bull s eye is a kind of score", "pln": ["(: cnet_isa_e10d6158cf (IsA bull_s_eye score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bull s eye is a kind of center", "pln": ["(: cnet_isa_12f7522520 (IsA bull_s_eye center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bull is a kind of blunder", "pln": ["(: cnet_isa_863d2f9c38 (IsA bull blunder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bull is a kind of cattle", "pln": ["(: cnet_isa_25b8e762a8 (IsA bull cattle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bull is a kind of placental", "pln": ["(: cnet_isa_efbfcb9e13 (IsA bull placental) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bull is a kind of person", "pln": ["(: cnet_isa_e1c1d70ec7 (IsA bull person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bull is a kind of decree", "pln": ["(: cnet_isa_bb662d32ab (IsA bull decree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bull is a kind of investor", "pln": ["(: cnet_isa_df3df0fc31 (IsA bull investor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bull is a kind of man", "pln": ["(: cnet_isa_c0b8e38725 (IsA bull man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bull is a kind of policeman", "pln": ["(: cnet_isa_5282562c03 (IsA bull policeman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bull market is a kind of market", "pln": ["(: cnet_isa_79c6180c3c (IsA bull_market market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bull mastiff is a kind of working dog", "pln": ["(: cnet_isa_ea955058f4 (IsA bull_mastiff working_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bull neck is a kind of neck", "pln": ["(: cnet_isa_656eba9f55 (IsA bull_neck neck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bull nose is a kind of animal disease", "pln": ["(: cnet_isa_bae56d35b0 (IsA bull_nose animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bull session is a kind of conference", "pln": ["(: cnet_isa_65f3dd406f (IsA bull_session conference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bull shark is a kind of requiem shark", "pln": ["(: cnet_isa_bd69a59ea1 (IsA bull_shark requiem_shark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bull snake is a kind of colubrid snake", "pln": ["(: cnet_isa_d72ef5b8a7 (IsA bull_snake colubrid_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bull thistle is a kind of plume thistle", "pln": ["(: cnet_isa_8d62759086 (IsA bull_thistle plume_thistle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bull tongue is a kind of plow", "pln": ["(: cnet_isa_e3d7794327 (IsA bull_tongue plow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulla is a kind of seal", "pln": ["(: cnet_isa_867fc06cc4 (IsA bulla seal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bullace is a kind of plum", "pln": ["(: cnet_isa_4cc27c9e12 (IsA bullace plum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bullbrier is a kind of vine", "pln": ["(: cnet_isa_407bfac474 (IsA bullbrier vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulldog is a kind of working dog", "pln": ["(: cnet_isa_b47e053a02 (IsA bulldog working_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulldog ant is a kind of ant", "pln": ["(: cnet_isa_81d10e0261 (IsA bulldog_ant ant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulldog clip is a kind of clip", "pln": ["(: cnet_isa_9b3f50fefa (IsA bulldog_clip clip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulldog wrench is a kind of wrench", "pln": ["(: cnet_isa_2853d4d6d0 (IsA bulldog_wrench wrench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bulldozer is a kind of tractor", "pln": ["(: cnet_isa_f6c0b53bf0 (IsA bulldozer tractor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bullet is a kind of projectile", "pln": ["(: cnet_isa_a274b1ac9e (IsA bullet projectile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bullet hole is a kind of hole", "pln": ["(: cnet_isa_09322da1f1 (IsA bullet_hole hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bullet train is a kind of passenger train", "pln": ["(: cnet_isa_9f9eaf85f6 (IsA bullet_train passenger_train) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bullethead is a kind of human head", "pln": ["(: cnet_isa_1d21da5876 (IsA bullethead human_head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulletin is a kind of report", "pln": ["(: cnet_isa_6136530175 (IsA bulletin report) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bulletin board is a kind of board", "pln": ["(: cnet_isa_060d2c53b7 (IsA bulletin_board board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulletin board system is a kind of digital computer", "pln": ["(: cnet_isa_f63cae6e8b (IsA bulletin_board_system digital_computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulletproof vest is a kind of body armor", "pln": ["(: cnet_isa_a7f0629084 (IsA bulletproof_vest body_armor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulletproof vest is a kind of vest", "pln": ["(: cnet_isa_baa2962147 (IsA bulletproof_vest vest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bullfight is a kind of spectacle", "pln": ["(: cnet_isa_d4e7a2b651 (IsA bullfight spectacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bullfighter is a kind of person", "pln": ["(: cnet_isa_84d0d07d3e (IsA bullfighter person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bullfighting is a kind of blood sport", "pln": ["(: cnet_isa_df5ecdcb86 (IsA bullfighting blood_sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bullfinch is a kind of finch", "pln": ["(: cnet_isa_9a03288fb3 (IsA bullfinch finch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bullfrog is a kind of true frog", "pln": ["(: cnet_isa_8a7223f221 (IsA bullfrog true_frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bullhead is a kind of catfish", "pln": ["(: cnet_isa_1363fa0fc5 (IsA bullhead catfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bullhead is a kind of sculpin", "pln": ["(: cnet_isa_0ae90ec326 (IsA bullhead sculpin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bullhorn is a kind of loudspeaker", "pln": ["(: cnet_isa_4e18899a2f (IsA bullhorn loudspeaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bullion is a kind of ingot", "pln": ["(: cnet_isa_bb84dc9f70 (IsA bullion ingot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bullion is a kind of precious metal", "pln": ["(: cnet_isa_d6c1ecbcf2 (IsA bullion precious_metal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bullnose is a kind of plane", "pln": ["(: cnet_isa_2b3eb17b54 (IsA bullnose plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bullock s heart is a kind of custard apple", "pln": ["(: cnet_isa_92384173b3 (IsA bullock_s_heart custard_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bullock s oriole is a kind of northern oriole", "pln": ["(: cnet_isa_397e349ba9 (IsA bullock_s_oriole northern_oriole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bullock is a kind of bull", "pln": ["(: cnet_isa_7257463c4a (IsA bullock bull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bullock is a kind of cattle", "pln": ["(: cnet_isa_173c6e160a (IsA bullock cattle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bullock is a kind of male", "pln": ["(: cnet_isa_1e3b92fe38 (IsA bullock male) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bullock is a kind of young mammal", "pln": ["(: cnet_isa_2338cbf8c7 (IsA bullock young_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bullpen is a kind of area", "pln": ["(: cnet_isa_9b19ee76ce (IsA bullpen area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bullpen is a kind of cell", "pln": ["(: cnet_isa_d040f7d3c2 (IsA bullpen cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bullring is a kind of stadium", "pln": ["(: cnet_isa_3151339f2f (IsA bullring stadium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bull is a kind of team", "pln": ["(: cnet_isa_dc2f678d43 (IsA bull team) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bullshit is a kind of bunk", "pln": ["(: cnet_isa_ddc46f6041 (IsA bullshit bunk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bullshot is a kind of cocktail", "pln": ["(: cnet_isa_4fbb927531 (IsA bullshot cocktail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bullterrier is a kind of terrier", "pln": ["(: cnet_isa_4e27a0fc71 (IsA bullterrier terrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bully is a kind of person", "pln": ["(: cnet_isa_d7d80d89dc (IsA bully person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bully is a kind of attacker", "pln": ["(: cnet_isa_7ebdec4202 (IsA bully attacker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bully is a kind of hood", "pln": ["(: cnet_isa_16db01521e (IsA bully hood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bully beef is a kind of beef", "pln": ["(: cnet_isa_272b054fd0 (IsA bully_beef beef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bully pulpit is a kind of public office", "pln": ["(: cnet_isa_9a552431ff (IsA bully_pulpit public_office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bullyboy is a kind of bully", "pln": ["(: cnet_isa_a6aa13aa02 (IsA bullyboy bully) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bullying is a kind of health and safety risk", "pln": ["(: cnet_isa_22f7a3e73d (IsA bullying health_and_safety_risk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bullying is a kind of aggression", "pln": ["(: cnet_isa_091c89bff5 (IsA bullying aggression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulnesia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_0e149c622c (IsA bulnesia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulrush is a kind of rush", "pln": ["(: cnet_isa_7372d0dd7a (IsA bulrush rush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bulwark is a kind of barrier", "pln": ["(: cnet_isa_56526b4ec7 (IsA bulwark barrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bumblebee is a kind of bee", "pln": ["(: cnet_isa_5466f684a2 (IsA bumblebee bee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bumboat is a kind of boat", "pln": ["(: cnet_isa_ab89143c23 (IsA bumboat boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bumelia is a kind of dicot genus", "pln": ["(: cnet_isa_3e883dea70 (IsA bumelia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bumf is a kind of reading", "pln": ["(: cnet_isa_81216808fd (IsA bumf reading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bummer is a kind of effect", "pln": ["(: cnet_isa_787714e487 (IsA bummer effect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bummer is a kind of irritation", "pln": ["(: cnet_isa_504603babc (IsA bummer irritation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bump is a kind of impact", "pln": ["(: cnet_isa_4671ce3f75 (IsA bump impact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bump is a kind of injury", "pln": ["(: cnet_isa_5c43743ebb (IsA bump injury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bumper is a kind of glass", "pln": ["(: cnet_isa_b00f59452a (IsA bumper glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bumper is a kind of mechanical device", "pln": ["(: cnet_isa_71a870d332 (IsA bumper mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bumper car is a kind of vehicle", "pln": ["(: cnet_isa_f6c4f38b2a (IsA bumper_car vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bumper guard is a kind of mechanical device", "pln": ["(: cnet_isa_521a700beb (IsA bumper_guard mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bumper jack is a kind of jack", "pln": ["(: cnet_isa_569ee969a2 (IsA bumper_jack jack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bumpiness is a kind of roughness", "pln": ["(: cnet_isa_cdb3be9e50 (IsA bumpiness roughness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bumptiousness is a kind of assertiveness", "pln": ["(: cnet_isa_7f50fd1304 (IsA bumptiousness assertiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bun is a kind of bread", "pln": ["(: cnet_isa_345d4e1fa8 (IsA bun bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buna rubber is a kind of synthetic rubber", "pln": ["(: cnet_isa_ad8edbbcd9 (IsA buna_rubber synthetic_rubber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bunch is a kind of agglomeration", "pln": ["(: cnet_isa_203a7b3a32 (IsA bunch agglomeration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bunch is a kind of collection", "pln": ["(: cnet_isa_6a726b0893 (IsA bunch collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bunchberry is a kind of dogwood", "pln": ["(: cnet_isa_18654a964e (IsA bunchberry dogwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bunchgrass is a kind of grass", "pln": ["(: cnet_isa_fceb258f25 (IsA bunchgrass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bunco is a kind of swindle", "pln": ["(: cnet_isa_331b6b4c4a (IsA bunco swindle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bundesbank is a kind of central bank", "pln": ["(: cnet_isa_e8807001ee (IsA bundesbank central_bank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bundle is a kind of package", "pln": ["(: cnet_isa_8a3e6fe354 (IsA bundle package) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bundling is a kind of packing", "pln": ["(: cnet_isa_48beec3323 (IsA bundling packing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bundling is a kind of shove", "pln": ["(: cnet_isa_ee5389971c (IsA bundling shove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bundling is a kind of courtship", "pln": ["(: cnet_isa_ee4f6448f8 (IsA bundling courtship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bunfight is a kind of party", "pln": ["(: cnet_isa_221baab9c8 (IsA bunfight party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bung is a kind of plug", "pln": ["(: cnet_isa_fbb153614c (IsA bung plug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bungalow is a kind of house", "pln": ["(: cnet_isa_3c2b139a15 (IsA bungalow house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bungalow is a kind of ground level structure", "pln": ["(: cnet_isa_9b61a61aba (IsA bungalow ground_level_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bungarus is a kind of reptile genus", "pln": ["(: cnet_isa_05cede6068 (IsA bungarus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bungee is a kind of rope", "pln": ["(: cnet_isa_39984afb9f (IsA bungee rope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bungee jumping is a kind of activity", "pln": ["(: cnet_isa_8f4909eb37 (IsA bungee_jumping activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bunghole is a kind of hole", "pln": ["(: cnet_isa_5b857a3748 (IsA bunghole hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bungler is a kind of incompetent", "pln": ["(: cnet_isa_36683f22d6 (IsA bungler incompetent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bunion is a kind of swelling", "pln": ["(: cnet_isa_124393e98a (IsA bunion swelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bunji bunji is a kind of silver ash", "pln": ["(: cnet_isa_d233703f57 (IsA bunji_bunji silver_ash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bunk is a kind of bed", "pln": ["(: cnet_isa_1b74f249f9 (IsA bunk bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bunk is a kind of manger", "pln": ["(: cnet_isa_fe1a5c9ef1 (IsA bunk manger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bunk is a kind of drivel", "pln": ["(: cnet_isa_14d911bc4a (IsA bunk drivel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bunk bed is a kind of bed", "pln": ["(: cnet_isa_98e2be883c (IsA bunk_bed bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bunker is a kind of container", "pln": ["(: cnet_isa_a44e46bc67 (IsA bunker container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bunker is a kind of fortification", "pln": ["(: cnet_isa_0dc6645d97 (IsA bunker fortification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bunker is a kind of hazard", "pln": ["(: cnet_isa_83ebca30d4 (IsA bunker hazard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bunker mentality is a kind of defensiveness", "pln": ["(: cnet_isa_c71433ef67 (IsA bunker_mentality defensiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bunkmate is a kind of acquaintance", "pln": ["(: cnet_isa_aad42d1fd3 (IsA bunkmate acquaintance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bunny is a kind of rabbit", "pln": ["(: cnet_isa_07ec909007 (IsA bunny rabbit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bunny is a kind of waitress", "pln": ["(: cnet_isa_f0f206efb5 (IsA bunny waitress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bunny hug is a kind of ballroom dancing", "pln": ["(: cnet_isa_a298bcf898 (IsA bunny_hug ballroom_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bunsen burner is a kind of gas burner", "pln": ["(: cnet_isa_a9da2eb1c4 (IsA bunsen_burner gas_burner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bunt is a kind of hit", "pln": ["(: cnet_isa_ee4c89657b (IsA bunt hit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bunt is a kind of smut", "pln": ["(: cnet_isa_16a5e8b45a (IsA bunt smut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buntal is a kind of plant fiber", "pln": ["(: cnet_isa_fba69fe2e4 (IsA buntal plant_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bunter is a kind of batter", "pln": ["(: cnet_isa_eeef4b8ff3 (IsA bunter batter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bunting is a kind of finch", "pln": ["(: cnet_isa_9db043d3e1 (IsA bunting finch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bunting is a kind of fabric", "pln": ["(: cnet_isa_b4bd22ba77 (IsA bunting fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bunya bunya is a kind of edible nut", "pln": ["(: cnet_isa_eeccca8ac2 (IsA bunya_bunya edible_nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bunya bunya is a kind of araucaria", "pln": ["(: cnet_isa_3b72ffdee6 (IsA bunya_bunya araucaria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bunyaviridae is a kind of arbovirus", "pln": ["(: cnet_isa_79db33ec99 (IsA bunyaviridae arbovirus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bunyavirus is a kind of animal virus", "pln": ["(: cnet_isa_42b013c31e (IsA bunyavirus animal_virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buoy is a kind of reference point", "pln": ["(: cnet_isa_cfdf18b42d (IsA buoy reference_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buoyancy is a kind of tendency", "pln": ["(: cnet_isa_8a86021ef5 (IsA buoyancy tendency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buoyancy is a kind of cheerfulness", "pln": ["(: cnet_isa_5574b3ffe2 (IsA buoyancy cheerfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buphthalmum is a kind of asterid dicot genus", "pln": ["(: cnet_isa_ffd6a3ec05 (IsA buphthalmum asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bur is a kind of bit", "pln": ["(: cnet_isa_7ad6792945 (IsA bur bit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bur is a kind of pericarp", "pln": ["(: cnet_isa_2ac96f2ee6 (IsA bur pericarp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bur marigold is a kind of subshrub", "pln": ["(: cnet_isa_63c666a772 (IsA bur_marigold subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bur oak is a kind of white oak", "pln": ["(: cnet_isa_776e7f43dd (IsA bur_oak white_oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bur reed is a kind of herb", "pln": ["(: cnet_isa_71a4a52209 (IsA bur_reed herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bura is a kind of biu mandara", "pln": ["(: cnet_isa_70b2e1c9d6 (IsA bura biu_mandara) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "bureau of customs is a kind of agency", "pln": ["(: cnet_isa_c503f31944 (IsA bureau_of_customs agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burberry is a kind of raincoat", "pln": ["(: cnet_isa_a5f446c025 (IsA burberry raincoat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burbot is a kind of cod", "pln": ["(: cnet_isa_e6c513ebe0 (IsA burbot cod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burden is a kind of concern", "pln": ["(: cnet_isa_ac8189faec (IsA burden concern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burden is a kind of idea", "pln": ["(: cnet_isa_b5d0cefc56 (IsA burden idea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burden of proof is a kind of duty", "pln": ["(: cnet_isa_996e6765db (IsA burden_of_proof duty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burdensomeness is a kind of difficulty", "pln": ["(: cnet_isa_a4d5d4a11c (IsA burdensomeness difficulty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burdock is a kind of subshrub", "pln": ["(: cnet_isa_2275b873f1 (IsA burdock subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bureau is a kind of division of government", "pln": ["(: cnet_isa_79a406a72b (IsA bureau division_of_government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bureau de change is a kind of company", "pln": ["(: cnet_isa_a4a13f6aed (IsA bureau_de_change company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bureau of alcohol tobacco and firearm is a kind of law enforcement agency", "pln": ["(: cnet_isa_260f8fa16d (IsA bureau_of_alcohol_tobacco_and_firearm law_enforcement_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bureau of census is a kind of agency", "pln": ["(: cnet_isa_f1459e8cf9 (IsA bureau_of_census agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bureau of custom is a kind of agency", "pln": ["(: cnet_isa_d95c370171 (IsA bureau_of_custom agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bureau of diplomatic security is a kind of agency", "pln": ["(: cnet_isa_e99ad90dad (IsA bureau_of_diplomatic_security agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bureau of engraving and printing is a kind of agency", "pln": ["(: cnet_isa_4ec9c77b64 (IsA bureau_of_engraving_and_printing agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bureau of intelligence and research is a kind of agency", "pln": ["(: cnet_isa_99e721c868 (IsA bureau_of_intelligence_and_research agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bureau of justice assistance is a kind of agency", "pln": ["(: cnet_isa_f091a7a41c (IsA bureau_of_justice_assistance agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bureau of justice statistic is a kind of agency", "pln": ["(: cnet_isa_4b7bc1c475 (IsA bureau_of_justice_statistic agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bureaucracy is a kind of government", "pln": ["(: cnet_isa_7010de82f0 (IsA bureaucracy government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bureaucracy is a kind of government official", "pln": ["(: cnet_isa_254f3c6325 (IsA bureaucracy government_official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bureaucracy is a kind of organization", "pln": ["(: cnet_isa_eebfa3aeb2 (IsA bureaucracy organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bureaucrat is a kind of official", "pln": ["(: cnet_isa_ba40367012 (IsA bureaucrat official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bureaucratic procedure is a kind of procedure", "pln": ["(: cnet_isa_f0302a85c1 (IsA bureaucratic_procedure procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burette is a kind of measuring instrument", "pln": ["(: cnet_isa_cd22e863fe (IsA burette measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burg is a kind of town", "pln": ["(: cnet_isa_5c7e588806 (IsA burg town) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burgess is a kind of englishman", "pln": ["(: cnet_isa_39f1a11965 (IsA burgess englishman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "burgh is a kind of borough", "pln": ["(: cnet_isa_86a2fc4cd6 (IsA burgh borough) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burglar is a kind of thief", "pln": ["(: cnet_isa_44b9095747 (IsA burglar thief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burglar alarm is a kind of alarm", "pln": ["(: cnet_isa_8b5de0ef8e (IsA burglar_alarm alarm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burglary is a kind of felony", "pln": ["(: cnet_isa_cb304541fe (IsA burglary felony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burgomaster is a kind of mayor", "pln": ["(: cnet_isa_606c4117bb (IsA burgomaster mayor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "burgoo is a kind of cookout", "pln": ["(: cnet_isa_a2d9b68b4a (IsA burgoo cookout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burgoo is a kind of stew", "pln": ["(: cnet_isa_006f6dc138 (IsA burgoo stew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burgrass is a kind of grass", "pln": ["(: cnet_isa_1806dbcca0 (IsA burgrass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burgrave is a kind of military governor", "pln": ["(: cnet_isa_15ad1bd7d4 (IsA burgrave military_governor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burgrave is a kind of nobleman", "pln": ["(: cnet_isa_b92a295871 (IsA burgrave nobleman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burgundy is a kind of dark red", "pln": ["(: cnet_isa_f493e93b9f (IsA burgundy dark_red) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burgundy is a kind of wine", "pln": ["(: cnet_isa_f58f9d9f07 (IsA burgundy wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burhinidae is a kind of bird family", "pln": ["(: cnet_isa_5548d28524 (IsA burhinidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burhinus is a kind of bird genus", "pln": ["(: cnet_isa_da6696927e (IsA burhinus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burial is a kind of funeral", "pln": ["(: cnet_isa_07676cae00 (IsA burial funeral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burial chamber is a kind of chamber", "pln": ["(: cnet_isa_183a95dc1a (IsA burial_chamber chamber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "burial chamber is a kind of grave", "pln": ["(: cnet_isa_b517b67049 (IsA burial_chamber grave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burial garment is a kind of cloth covering", "pln": ["(: cnet_isa_666ca7e954 (IsA burial_garment cloth_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burial mound is a kind of mound", "pln": ["(: cnet_isa_d9bc8521e3 (IsA burial_mound mound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burin is a kind of chisel", "pln": ["(: cnet_isa_96c44227d8 (IsA burin chisel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burkina faso franc is a kind of franc", "pln": ["(: cnet_isa_d2fa22462f (IsA burkina_faso_franc franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "burl is a kind of plant process", "pln": ["(: cnet_isa_c1b33b68e8 (IsA burl plant_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burl is a kind of wood", "pln": ["(: cnet_isa_91cd3013e0 (IsA burl wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burlap is a kind of fabric", "pln": ["(: cnet_isa_309c9756c6 (IsA burlap fabric) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burlap is a kind of sturdy fabric", "pln": ["(: cnet_isa_19dcead9e3 (IsA burlap sturdy_fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burlap is a kind of sacking", "pln": ["(: cnet_isa_ed7e1b0fe8 (IsA burlap sacking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burlesque is a kind of show", "pln": ["(: cnet_isa_e049f3216b (IsA burlesque show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burma padauk is a kind of tree", "pln": ["(: cnet_isa_8f19286caf (IsA burma_padauk tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burmannia is a kind of monocot genus", "pln": ["(: cnet_isa_7edcf23ad3 (IsA burmannia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burmanniaceae is a kind of monocot family", "pln": ["(: cnet_isa_f8a8de8cd4 (IsA burmanniaceae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burmeisteria is a kind of mammal genus", "pln": ["(: cnet_isa_da14e88e5e (IsA burmeisteria mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burmese is a kind of lolo burmese", "pln": ["(: cnet_isa_92e81171d9 (IsA burmese lolo_burmese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burmese is a kind of asiatic", "pln": ["(: cnet_isa_3ebcebfeda (IsA burmese asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burmese cat is a kind of domestic cat", "pln": ["(: cnet_isa_f5a8eaa389 (IsA burmese_cat domestic_cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burn is a kind of damage", "pln": ["(: cnet_isa_5e0ad94298 (IsA burn damage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burn is a kind of blemish", "pln": ["(: cnet_isa_0de0cb8faf (IsA burn blemish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burn is a kind of injury", "pln": ["(: cnet_isa_02f869347b (IsA burn injury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burn is a kind of pain", "pln": ["(: cnet_isa_bd0b9edc92 (IsA burn pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burn bag is a kind of bag", "pln": ["(: cnet_isa_e18ae63493 (IsA burn_bag bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burn center is a kind of center", "pln": ["(: cnet_isa_83d56a5601 (IsA burn_center center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "burn plant is a kind of aloe", "pln": ["(: cnet_isa_c6f88f8876 (IsA burn_plant aloe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burner is a kind of apparatus", "pln": ["(: cnet_isa_7f471572d6 (IsA burner apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burner is a kind of heating element", "pln": ["(: cnet_isa_348db39bf5 (IsA burner heating_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burning is a kind of change of integrity", "pln": ["(: cnet_isa_e7ba13cb48 (IsA burning change_of_integrity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burning is a kind of execution", "pln": ["(: cnet_isa_defcdfdbea (IsA burning execution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "burning is a kind of torture", "pln": ["(: cnet_isa_d1fa9e928a (IsA burning torture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burning bush is a kind of shrub", "pln": ["(: cnet_isa_551732e6cf (IsA burning_bush shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burnous is a kind of cloak", "pln": ["(: cnet_isa_a3fa601ff3 (IsA burnous cloak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burnt sienna is a kind of sienna", "pln": ["(: cnet_isa_766144af20 (IsA burnt_sienna sienna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burnt umber is a kind of umber", "pln": ["(: cnet_isa_e77e8ecd11 (IsA burnt_umber umber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burnup is a kind of consumption", "pln": ["(: cnet_isa_6676025fae (IsA burnup consumption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burnup is a kind of race", "pln": ["(: cnet_isa_772b589e65 (IsA burnup race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burp gun is a kind of submachine gun", "pln": ["(: cnet_isa_e83d271db6 (IsA burp_gun submachine_gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burqa is a kind of garment", "pln": ["(: cnet_isa_8c326dccd2 (IsA burqa garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burr is a kind of power tool", "pln": ["(: cnet_isa_f62fcc2f66 (IsA burr power_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burr is a kind of projection", "pln": ["(: cnet_isa_35ca471053 (IsA burr projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burrawong is a kind of cycad", "pln": ["(: cnet_isa_ae85266bed (IsA burrawong cycad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burrfish is a kind of spiny puffer", "pln": ["(: cnet_isa_cfdb6c6810 (IsA burrfish spiny_puffer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burrito is a kind of dish", "pln": ["(: cnet_isa_d1184d2664 (IsA burrito dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burro is a kind of domestic ass", "pln": ["(: cnet_isa_9c8f976cb6 (IsA burro domestic_ass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burrow is a kind of hole", "pln": ["(: cnet_isa_4cfb78b09c (IsA burrow hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bursa is a kind of sac", "pln": ["(: cnet_isa_dea33e1c28 (IsA bursa sac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bursa omentalis is a kind of cavity", "pln": ["(: cnet_isa_9ef7eb8162 (IsA bursa_omentalis cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bursar is a kind of treasurer", "pln": ["(: cnet_isa_bcaa6c2cef (IsA bursar treasurer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bursary is a kind of treasury", "pln": ["(: cnet_isa_edca6d6c7b (IsA bursary treasury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bursera is a kind of rosid dicot genus", "pln": ["(: cnet_isa_bd8d3585fb (IsA bursera rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burseraceae is a kind of rosid dicot family", "pln": ["(: cnet_isa_f48dea1250 (IsA burseraceae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bursitis is a kind of inflammation", "pln": ["(: cnet_isa_e29eef0c44 (IsA bursitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burst is a kind of activity", "pln": ["(: cnet_isa_90b971d93f (IsA burst activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burthen is a kind of load", "pln": ["(: cnet_isa_db64ce34fe (IsA burthen load) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burton is a kind of ale", "pln": ["(: cnet_isa_668a2bf850 (IsA burton ale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burundi franc is a kind of franc", "pln": ["(: cnet_isa_3ee4b20a95 (IsA burundi_franc franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "burundian is a kind of african", "pln": ["(: cnet_isa_3ac048b301 (IsA burundian african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "burweed marsh elder is a kind of marsh elder", "pln": ["(: cnet_isa_bec4b683e2 (IsA burweed_marsh_elder marsh_elder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "burying is a kind of concealment", "pln": ["(: cnet_isa_8ab1eb380e (IsA burying concealment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bus is a kind of form of mass transit", "pln": ["(: cnet_isa_dfe11e708c (IsA bus form_of_mass_transit) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bus is a kind of form of public transportation", "pln": ["(: cnet_isa_dbecaf39b7 (IsA bus form_of_public_transportation) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bus is a kind of car", "pln": ["(: cnet_isa_c3620d13e6 (IsA bus car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bus is a kind of dysphemism", "pln": ["(: cnet_isa_8e527baee1 (IsA bus dysphemism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bus is a kind of public transport", "pln": ["(: cnet_isa_d00f8ae6ad (IsA bus public_transport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bus company is a kind of transportation company", "pln": ["(: cnet_isa_4857492222 (IsA bus_company transportation_company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bus company is a kind of utility", "pln": ["(: cnet_isa_1bd6d55fdd (IsA bus_company utility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bus fare is a kind of fare", "pln": ["(: cnet_isa_f09b8afb8c (IsA bus_fare fare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bus lane is a kind of traffic lane", "pln": ["(: cnet_isa_95bea69fc5 (IsA bus_lane traffic_lane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bus line is a kind of transit line", "pln": ["(: cnet_isa_5fc859399f (IsA bus_line transit_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bus route is a kind of path", "pln": ["(: cnet_isa_7541df66d7 (IsA bus_route path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bus stop is a kind of stop", "pln": ["(: cnet_isa_deb53730bf (IsA bus_stop stop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bus terminal is a kind of terminal", "pln": ["(: cnet_isa_db5f3f8a1f (IsA bus_terminal terminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bus ticket is a kind of ticket", "pln": ["(: cnet_isa_19041074c2 (IsA bus_ticket ticket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bus topology is a kind of topology", "pln": ["(: cnet_isa_a91ec70d70 (IsA bus_topology topology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bus traffic is a kind of vehicular traffic", "pln": ["(: cnet_isa_8974a4a58d (IsA bus_traffic vehicular_traffic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "busbar is a kind of conductor", "pln": ["(: cnet_isa_f81416d6c0 (IsA busbar conductor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "busboy is a kind of dining room attendant", "pln": ["(: cnet_isa_5601febd6d (IsA busboy dining_room_attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bus is a kind of form of transportation", "pln": ["(: cnet_isa_4406bce862 (IsA bus form_of_transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bush is a kind of wilderness", "pln": ["(: cnet_isa_b8c50c7849 (IsA bush wilderness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bush administration is a kind of executive", "pln": ["(: cnet_isa_d70bd8b23c (IsA bush_administration executive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bush bean is a kind of bean", "pln": ["(: cnet_isa_3c559a97bd (IsA bush_bean bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bush clover is a kind of woody plant", "pln": ["(: cnet_isa_92d81075a1 (IsA bush_clover woody_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bush hibiscus is a kind of shrub", "pln": ["(: cnet_isa_c50a289f14 (IsA bush_hibiscus shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "bush honeysuckle is a kind of honeysuckle", "pln": ["(: cnet_isa_317caea0bc (IsA bush_honeysuckle honeysuckle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bush honeysuckle is a kind of shrub", "pln": ["(: cnet_isa_fb6b0409e0 (IsA bush_honeysuckle shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bush jacket is a kind of jacket", "pln": ["(: cnet_isa_f89e57388c (IsA bush_jacket jacket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bush nasturtium is a kind of nasturtium", "pln": ["(: cnet_isa_3987709f04 (IsA bush_nasturtium nasturtium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bush pea is a kind of herb", "pln": ["(: cnet_isa_5b0f6375d9 (IsA bush_pea herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bush poppy is a kind of shrub", "pln": ["(: cnet_isa_f4bff1d677 (IsA bush_poppy shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bush shrike is a kind of shrike", "pln": ["(: cnet_isa_767e61bdcc (IsA bush_shrike shrike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bush vetch is a kind of vetch", "pln": ["(: cnet_isa_54766a558e (IsA bush_vetch vetch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bush violet is a kind of flower", "pln": ["(: cnet_isa_8829f95cc2 (IsA bush_violet flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bush willow is a kind of angiospermous tree", "pln": ["(: cnet_isa_1bcb465f1c (IsA bush_willow angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bushbuck is a kind of harnessed antelope", "pln": ["(: cnet_isa_ae2ae470d7 (IsA bushbuck harnessed_antelope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bushel is a kind of basket", "pln": ["(: cnet_isa_06c7d17be8 (IsA bushel basket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bushel is a kind of british capacity unit", "pln": ["(: cnet_isa_800ac46bb5 (IsA bushel british_capacity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bushel is a kind of united state dry unit", "pln": ["(: cnet_isa_5ff22b8a0e (IsA bushel united_state_dry_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bushido is a kind of code", "pln": ["(: cnet_isa_d43998385d (IsA bushido code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bushing is a kind of insulator", "pln": ["(: cnet_isa_f1110b3c13 (IsA bushing insulator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bushing is a kind of lining", "pln": ["(: cnet_isa_99756d1ae5 (IsA bushing lining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bushman s poison is a kind of shrub", "pln": ["(: cnet_isa_caea21dd55 (IsA bushman_s_poison shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bushman is a kind of nomad", "pln": ["(: cnet_isa_ae3c4b3d2f (IsA bushman nomad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bushman is a kind of pioneer", "pln": ["(: cnet_isa_36e8fe1b51 (IsA bushman pioneer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bushtit is a kind of titmouse", "pln": ["(: cnet_isa_393ef10b8a (IsA bushtit titmouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bushwhacker is a kind of confederate soldier", "pln": ["(: cnet_isa_9775d8aeeb (IsA bushwhacker confederate_soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bushy aster is a kind of aster", "pln": ["(: cnet_isa_2d79d8ac06 (IsA bushy_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "business is a kind of business", "pln": ["(: cnet_isa_902946bacd (IsA business business) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "business is a kind of acting", "pln": ["(: cnet_isa_235d1754ff (IsA business acting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "business is a kind of aim", "pln": ["(: cnet_isa_5030aaaa48 (IsA business aim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "business is a kind of concern", "pln": ["(: cnet_isa_80a961633f (IsA business concern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "business is a kind of business activity", "pln": ["(: cnet_isa_4c74e08d4e (IsA business business_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "business is a kind of enterprise", "pln": ["(: cnet_isa_5a80da4702 (IsA business enterprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "business is a kind of sector", "pln": ["(: cnet_isa_958d8f0dd9 (IsA business sector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "business activity is a kind of enterprise", "pln": ["(: cnet_isa_d7eb896125 (IsA business_activity enterprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "business address is a kind of address", "pln": ["(: cnet_isa_2be31c8934 (IsA business_address address) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "business agent is a kind of agent", "pln": ["(: cnet_isa_e931bc0881 (IsA business_agent agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "business card is a kind of card", "pln": ["(: cnet_isa_c773060cd4 (IsA business_card card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "business cards is a kind of important networking tool", "pln": ["(: cnet_isa_6620ea5754 (IsA business_cards important_networking_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "business card is a kind of important networking tool", "pln": ["(: cnet_isa_fd4eb8f114 (IsA business_card important_networking_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "business college is a kind of college", "pln": ["(: cnet_isa_a8a330891d (IsA business_college college) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "business cycle is a kind of variation", "pln": ["(: cnet_isa_36189e30c0 (IsA business_cycle variation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "business deduction is a kind of tax write off", "pln": ["(: cnet_isa_d64f9c40e2 (IsA business_deduction tax_write_off) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "business department is a kind of department", "pln": ["(: cnet_isa_8cd85ea65e (IsA business_department department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "business district is a kind of city district", "pln": ["(: cnet_isa_6d97ed134a (IsA business_district city_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "business editor is a kind of newspaper editor", "pln": ["(: cnet_isa_7e10268dc3 (IsA business_editor newspaper_editor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "business expense is a kind of expense", "pln": ["(: cnet_isa_fc650ebae7 (IsA business_expense expense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "business index is a kind of index", "pln": ["(: cnet_isa_b285fcfbc0 (IsA business_index index) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "business interruption insurance is a kind of insurance", "pln": ["(: cnet_isa_19e1913a2f (IsA business_interruption_insurance insurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "business letter is a kind of letter", "pln": ["(: cnet_isa_4016ad72b5 (IsA business_letter letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "business life is a kind of career", "pln": ["(: cnet_isa_eb68c7e08c (IsA business_life career) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "business loan is a kind of bank loan", "pln": ["(: cnet_isa_2b2ee887a1 (IsA business_loan bank_loan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "business lunch is a kind of lunch", "pln": ["(: cnet_isa_45b3fa4c0e (IsA business_lunch lunch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "business new is a kind of new", "pln": ["(: cnet_isa_4a596bf74a (IsA business_new new) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "business people is a kind of people", "pln": ["(: cnet_isa_6dc48cfaee (IsA business_people people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "business relation is a kind of relation", "pln": ["(: cnet_isa_b8887845d8 (IsA business_relation relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "business school is a kind of graduate school", "pln": ["(: cnet_isa_294c30e897 (IsA business_school graduate_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "business suit is a kind of suit", "pln": ["(: cnet_isa_d0e85a5144 (IsA business_suit suit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "business traveler is a kind of traveler", "pln": ["(: cnet_isa_1a3cdcac0e (IsA business_traveler traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "businessman is a kind of businessperson", "pln": ["(: cnet_isa_439e3077fe (IsA businessman businessperson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "businessmen is a kind of profession", "pln": ["(: cnet_isa_e585d52f34 (IsA businessmen profession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "businessperson is a kind of capitalist", "pln": ["(: cnet_isa_0f0eb1f110 (IsA businessperson capitalist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "businesswoman is a kind of businessperson", "pln": ["(: cnet_isa_bbce94d73b (IsA businesswoman businessperson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "busker is a kind of entertainer", "pln": ["(: cnet_isa_1cebcac1ee (IsA busker entertainer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buskin is a kind of boot", "pln": ["(: cnet_isa_c1eb80dbac (IsA buskin boot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "busload is a kind of large indefinite quantity", "pln": ["(: cnet_isa_907fe3ee71 (IsA busload large_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "busman s holiday is a kind of vacationing", "pln": ["(: cnet_isa_5cf1826bb3 (IsA busman_s_holiday vacationing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "busman is a kind of driver", "pln": ["(: cnet_isa_3b5b5c0b6d (IsA busman driver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bust is a kind of revel", "pln": ["(: cnet_isa_cc36d3fc1e (IsA bust revel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bust is a kind of sculpture", "pln": ["(: cnet_isa_0d3c68564d (IsA bust sculpture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bust up is a kind of quarrel", "pln": ["(: cnet_isa_c2f2bbd44d (IsA bust_up quarrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bust up takeover is a kind of leveraged buyout", "pln": ["(: cnet_isa_1eda58d4da (IsA bust_up_takeover leveraged_buyout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bustard is a kind of wading bird", "pln": ["(: cnet_isa_29c386916d (IsA bustard wading_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buster is a kind of child", "pln": ["(: cnet_isa_64acd205ba (IsA buster child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buster is a kind of person", "pln": ["(: cnet_isa_1765bcf809 (IsA buster person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bustier is a kind of top", "pln": ["(: cnet_isa_082152bba2 (IsA bustier top) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bustle is a kind of commotion", "pln": ["(: cnet_isa_d2769f7882 (IsA bustle commotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bustle is a kind of framework", "pln": ["(: cnet_isa_0f9dc7f53c (IsA bustle framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "busybody is a kind of meddler", "pln": ["(: cnet_isa_d1f936a11b (IsA busybody meddler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "busyness is a kind of action", "pln": ["(: cnet_isa_d8d0c210da (IsA busyness action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "busywork is a kind of work", "pln": ["(: cnet_isa_4c998ff2a1 (IsA busywork work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "butacaine is a kind of local anesthetic", "pln": ["(: cnet_isa_669d1fd108 (IsA butacaine local_anesthetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "butadiene is a kind of hydrocarbon", "pln": ["(: cnet_isa_b2f3882671 (IsA butadiene hydrocarbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butane is a kind of fuel", "pln": ["(: cnet_isa_2ffcb0a2c5 (IsA butane fuel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butane is a kind of gas", "pln": ["(: cnet_isa_61f01b8b30 (IsA butane gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butane is a kind of methane sery", "pln": ["(: cnet_isa_ef96708d25 (IsA butane methane_sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butanone is a kind of ketone", "pln": ["(: cnet_isa_f9ddc4839a (IsA butanone ketone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butch is a kind of lesbian", "pln": ["(: cnet_isa_f6c53f137b (IsA butch lesbian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butcher s broom is a kind of shrub", "pln": ["(: cnet_isa_cb0a384b01 (IsA butcher_s_broom shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butcher is a kind of merchant", "pln": ["(: cnet_isa_8f6956ef8b (IsA butcher merchant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butcher is a kind of murderer", "pln": ["(: cnet_isa_9ae7feec3f (IsA butcher murderer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butcher is a kind of skilled worker", "pln": ["(: cnet_isa_e401825d0e (IsA butcher skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butcher board is a kind of slab", "pln": ["(: cnet_isa_13e7209a25 (IsA butcher_board slab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butcher knife is a kind of knife", "pln": ["(: cnet_isa_4b3479aab6 (IsA butcher_knife knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butcher paper is a kind of wrapping paper", "pln": ["(: cnet_isa_291d23c12b (IsA butcher_paper wrapping_paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butcher shop is a kind of shop", "pln": ["(: cnet_isa_c17748858a (IsA butcher_shop shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butcherbird is a kind of australian magpie", "pln": ["(: cnet_isa_d41edeb678 (IsA butcherbird australian_magpie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butcherbird is a kind of shrike", "pln": ["(: cnet_isa_c8732a896e (IsA butcherbird shrike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butchery is a kind of commercial enterprise", "pln": ["(: cnet_isa_3099271470 (IsA butchery commercial_enterprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butea is a kind of rosid dicot genus", "pln": ["(: cnet_isa_24c52b77b2 (IsA butea rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buteo is a kind of bird genus", "pln": ["(: cnet_isa_77ee461e5e (IsA buteo bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buteonine is a kind of hawk", "pln": ["(: cnet_isa_b89105ee3c (IsA buteonine hawk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butler is a kind of person", "pln": ["(: cnet_isa_7a8cc63037 (IsA butler person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butler is a kind of servant", "pln": ["(: cnet_isa_b8bebc57b5 (IsA butler servant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butler is a kind of manservant", "pln": ["(: cnet_isa_152b6e12c1 (IsA butler manservant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butt is a kind of barrel", "pln": ["(: cnet_isa_deb17218e1 (IsA butt barrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butt is a kind of part", "pln": ["(: cnet_isa_80d629d155 (IsA butt part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butt is a kind of stock", "pln": ["(: cnet_isa_de8194a0c9 (IsA butt stock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butt is a kind of victim", "pln": ["(: cnet_isa_50cc3a36df (IsA butt victim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butt hinge is a kind of hinge", "pln": ["(: cnet_isa_d0b61e2259 (IsA butt_hinge hinge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butt joint is a kind of joint", "pln": ["(: cnet_isa_93f0317860 (IsA butt_joint joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butt shaft is a kind of arrow", "pln": ["(: cnet_isa_be1e47edaa (IsA butt_shaft arrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butt weld is a kind of butt joint", "pln": ["(: cnet_isa_8a9939a226 (IsA butt_weld butt_joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butt welding is a kind of welding", "pln": ["(: cnet_isa_7b98da4787 (IsA butt_welding welding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butte is a kind of hill", "pln": ["(: cnet_isa_b04d7b47dd (IsA butte hill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butter is a kind of dairy product", "pln": ["(: cnet_isa_44e287e75e (IsA butter dairy_product) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butter is a kind of food", "pln": ["(: cnet_isa_f0e7a86091 (IsA butter food) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butter is a kind of ingredient often", "pln": ["(: cnet_isa_fe31bc10b5 (IsA butter ingredient_often) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butter is a kind of combatant", "pln": ["(: cnet_isa_93cd9a9e29 (IsA butter combatant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butter cookie is a kind of cookie", "pln": ["(: cnet_isa_dadae11dd2 (IsA butter_cookie cookie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butter dish is a kind of dish", "pln": ["(: cnet_isa_e723212846 (IsA butter_dish dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butter knife is a kind of table knife", "pln": ["(: cnet_isa_fa46e00e56 (IsA butter_knife table_knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "butterbur is a kind of herb", "pln": ["(: cnet_isa_7ba69bdb50 (IsA butterbur herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "buttercrunch is a kind of butterhead lettuce", "pln": ["(: cnet_isa_30cb3a48e2 (IsA buttercrunch butterhead_lettuce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "buttercup is a kind of herb", "pln": ["(: cnet_isa_ce51ef82cf (IsA buttercup herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buttercup squash is a kind of turban squash", "pln": ["(: cnet_isa_d4b7358008 (IsA buttercup_squash turban_squash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butterfat is a kind of animal fat", "pln": ["(: cnet_isa_f8b861c0e5 (IsA butterfat animal_fat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butterfinger is a kind of clumsy person", "pln": ["(: cnet_isa_7a83a6a4fc (IsA butterfinger clumsy_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butterfish is a kind of percoid fish", "pln": ["(: cnet_isa_9dc8e4746a (IsA butterfish percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butterfish is a kind of saltwater fish", "pln": ["(: cnet_isa_ddee1fd73c (IsA butterfish saltwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butterfly is a kind of insect", "pln": ["(: cnet_isa_08f72936cc (IsA butterfly insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butterfly is a kind of swimming stroke", "pln": ["(: cnet_isa_a08c9353f3 (IsA butterfly swimming_stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butterfly is a kind of lepidopterous insect", "pln": ["(: cnet_isa_7283c6efc0 (IsA butterfly lepidopterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butterfly bush is a kind of shrub", "pln": ["(: cnet_isa_dc609fb6a4 (IsA butterfly_bush shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butterfly effect is a kind of consequence", "pln": ["(: cnet_isa_3394822261 (IsA butterfly_effect consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butterfly fish is a kind of percoid fish", "pln": ["(: cnet_isa_aaa1439e94 (IsA butterfly_fish percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butterfly flower is a kind of flower", "pln": ["(: cnet_isa_c5b3e4eb1a (IsA butterfly_flower flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butterfly flower is a kind of shrub", "pln": ["(: cnet_isa_110a69874b (IsA butterfly_flower shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butterfly orchid is a kind of orchid", "pln": ["(: cnet_isa_3ec820c30f (IsA butterfly_orchid orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butterfly orchid is a kind of orchis", "pln": ["(: cnet_isa_1ddfb9c76b (IsA butterfly_orchid orchis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butterfly pea is a kind of vine", "pln": ["(: cnet_isa_49b3fbee63 (IsA butterfly_pea vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butterfly plant is a kind of moth orchid", "pln": ["(: cnet_isa_5210f88d37 (IsA butterfly_plant moth_orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butterfly ray is a kind of stingray", "pln": ["(: cnet_isa_a2a45c8c18 (IsA butterfly_ray stingray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butterfly valve is a kind of valve", "pln": ["(: cnet_isa_ad1707fa6e (IsA butterfly_valve valve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butterfly weed is a kind of milkweed", "pln": ["(: cnet_isa_b6d2669a7a (IsA butterfly_weed milkweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "butterhead lettuce is a kind of lettuce", "pln": ["(: cnet_isa_399e5f773c (IsA butterhead_lettuce lettuce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buttermilk is a kind of soured milk", "pln": ["(: cnet_isa_118d3be98c (IsA buttermilk soured_milk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "buttermilk is a kind of milk", "pln": ["(: cnet_isa_c47c3a8a8b (IsA buttermilk milk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buttermilk biscuit is a kind of biscuit", "pln": ["(: cnet_isa_cf9f2fba7c (IsA buttermilk_biscuit biscuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buttermilk pancake is a kind of pancake", "pln": ["(: cnet_isa_b0b88b3ed7 (IsA buttermilk_pancake pancake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "butternut is a kind of edible nut", "pln": ["(: cnet_isa_f0534f955b (IsA butternut edible_nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butternut is a kind of walnut", "pln": ["(: cnet_isa_fb7547afee (IsA butternut walnut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butternut squash is a kind of winter squash", "pln": ["(: cnet_isa_35f686f42b (IsA butternut_squash winter_squash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butterscotch is a kind of candy", "pln": ["(: cnet_isa_2aa63803f7 (IsA butterscotch candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butterweed is a kind of herb", "pln": ["(: cnet_isa_5e22f40c86 (IsA butterweed herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "butterweed is a kind of wildflower", "pln": ["(: cnet_isa_491eb03958 (IsA butterweed wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "butterwort is a kind of carnivorous plant", "pln": ["(: cnet_isa_9f418779ca (IsA butterwort carnivorous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buttery is a kind of teashop", "pln": ["(: cnet_isa_3a4d7de8a8 (IsA buttery teashop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buttinsky is a kind of meddler", "pln": ["(: cnet_isa_3dbb4a9649 (IsA buttinsky meddler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buttock is a kind of body part", "pln": ["(: cnet_isa_c74e129c9e (IsA buttock body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "button is a kind of fastening", "pln": ["(: cnet_isa_0eca402b76 (IsA button fastening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "button is a kind of artifact", "pln": ["(: cnet_isa_caa3d7a914 (IsA button artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "button is a kind of fastener", "pln": ["(: cnet_isa_7b3e262f69 (IsA button fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "button is a kind of badge", "pln": ["(: cnet_isa_7f5594d2a0 (IsA button badge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "button is a kind of plant part", "pln": ["(: cnet_isa_68ebaadadb (IsA button plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "button accordion is a kind of accordion", "pln": ["(: cnet_isa_4e8243885e (IsA button_accordion accordion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "button fern is a kind of fern", "pln": ["(: cnet_isa_d87247e702 (IsA button_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "button pink is a kind of pink", "pln": ["(: cnet_isa_b603a31278 (IsA button_pink pink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "button quail is a kind of wading bird", "pln": ["(: cnet_isa_d1220f8ace (IsA button_quail wading_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "button snakeroot is a kind of herb", "pln": ["(: cnet_isa_5cf0f53f1a (IsA button_snakeroot herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "button tree is a kind of tree", "pln": ["(: cnet_isa_cccf391c7a (IsA button_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buttonhole is a kind of hole", "pln": ["(: cnet_isa_03c70e2d48 (IsA buttonhole hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buttonhole stitch is a kind of embroidery stitch", "pln": ["(: cnet_isa_dea2f55a3b (IsA buttonhole_stitch embroidery_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buttonhook is a kind of hook", "pln": ["(: cnet_isa_99ea1655c2 (IsA buttonhook hook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buttress is a kind of support", "pln": ["(: cnet_isa_fa2f7a9c1b (IsA buttress support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "butty is a kind of sandwich", "pln": ["(: cnet_isa_b1d2fe7882 (IsA butty sandwich) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "butut is a kind of gambian monetary unit", "pln": ["(: cnet_isa_03ab5ef526 (IsA butut gambian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butyl is a kind of group", "pln": ["(: cnet_isa_999e749682 (IsA butyl group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butyl alcohol is a kind of alcohol", "pln": ["(: cnet_isa_31c3114eb9 (IsA butyl_alcohol alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butyl nitrite is a kind of stimulant", "pln": ["(: cnet_isa_cb9977017f (IsA butyl_nitrite stimulant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butyl nitrite is a kind of vasodilator", "pln": ["(: cnet_isa_5e14953d51 (IsA butyl_nitrite vasodilator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butyl rubber is a kind of synthetic rubber", "pln": ["(: cnet_isa_f58bea961b (IsA butyl_rubber synthetic_rubber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butylene is a kind of gas", "pln": ["(: cnet_isa_33642e41a4 (IsA butylene gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "butyric acid is a kind of saturated fatty acid", "pln": ["(: cnet_isa_ef593386ad (IsA butyric_acid saturated_fatty_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "butyrin is a kind of glyceryl ester", "pln": ["(: cnet_isa_ebce6acf98 (IsA butyrin glyceryl_ester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buxaceae is a kind of dicot family", "pln": ["(: cnet_isa_889f8e9eed (IsA buxaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buxomness is a kind of plumpness", "pln": ["(: cnet_isa_29d75e3063 (IsA buxomness plumpness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buxus is a kind of dicot genus", "pln": ["(: cnet_isa_44022aa6f6 (IsA buxus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buy and bust operation is a kind of undercover operation", "pln": ["(: cnet_isa_9afc6a12cb (IsA buy_and_bust_operation undercover_operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buyer s market is a kind of market", "pln": ["(: cnet_isa_db264171ef (IsA buyer_s_market market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buyer is a kind of customer", "pln": ["(: cnet_isa_622dae90fd (IsA buyer customer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buying is a kind of purchase", "pln": ["(: cnet_isa_bde8397fae (IsA buying purchase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buyout is a kind of acquisition", "pln": ["(: cnet_isa_d36eca2d76 (IsA buyout acquisition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buyout bid is a kind of bid", "pln": ["(: cnet_isa_563e2363d4 (IsA buyout_bid bid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buzz is a kind of activity", "pln": ["(: cnet_isa_c102809cf5 (IsA buzz activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buzz is a kind of sound", "pln": ["(: cnet_isa_1b1b1e5257 (IsA buzz sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buzz bomb is a kind of guided missile", "pln": ["(: cnet_isa_03c138c310 (IsA buzz_bomb guided_missile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buzzard is a kind of hawk", "pln": ["(: cnet_isa_2f08d3e163 (IsA buzzard hawk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buzzard is a kind of new world vulture", "pln": ["(: cnet_isa_85ac417853 (IsA buzzard new_world_vulture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buzzer is a kind of signaling device", "pln": ["(: cnet_isa_ea319e4ce8 (IsA buzzer signaling_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "buzzword is a kind of nonsense", "pln": ["(: cnet_isa_a5a2ef2ad3 (IsA buzzword nonsense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "by and by is a kind of future", "pln": ["(: cnet_isa_529a8c02f5 (IsA by_and_by future) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "by catch is a kind of marine animal", "pln": ["(: cnet_isa_b8f0636ae3 (IsA by_catch marine_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "by election is a kind of election", "pln": ["(: cnet_isa_b0e58f4948 (IsA by_election election) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "by line is a kind of line", "pln": ["(: cnet_isa_07508b21ee (IsA by_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "by product is a kind of product", "pln": ["(: cnet_isa_08e99565c3 (IsA by_product product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "by product is a kind of consequence", "pln": ["(: cnet_isa_3a5374e818 (IsA by_product consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bye is a kind of concession", "pln": ["(: cnet_isa_eb6beb73fa (IsA bye concession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bygone is a kind of past", "pln": ["(: cnet_isa_d7900d5b1b (IsA bygone past) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bylaw is a kind of rule", "pln": ["(: cnet_isa_c0ad1c8eb2 (IsA bylaw rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bypass is a kind of highway", "pln": ["(: cnet_isa_c515997493 (IsA bypass highway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bypass is a kind of shunt", "pln": ["(: cnet_isa_80d91ef273 (IsA bypass shunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bypass condenser is a kind of capacitor", "pln": ["(: cnet_isa_167ad8fa65 (IsA bypass_condenser capacitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "byssus is a kind of fiber", "pln": ["(: cnet_isa_c168ae93f9 (IsA byssus fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "bystander is a kind of spectator", "pln": ["(: cnet_isa_14dc8af776 (IsA bystander spectator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "byte is a kind of computer memory unit", "pln": ["(: cnet_isa_64bca1ca8b (IsA byte computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "byway is a kind of road", "pln": ["(: cnet_isa_711064d023 (IsA byway road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "byzantine is a kind of asiatic", "pln": ["(: cnet_isa_ddc8c8a62a (IsA byzantine asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "byzantine architecture is a kind of architectural style", "pln": ["(: cnet_isa_f1cfd07c6a (IsA byzantine_architecture architectural_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "c is a kind of example of programming language", "pln": ["(: cnet_isa_f20a787415 (IsA c example_of_programming_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "c is a kind of object oriented programming language", "pln": ["(: cnet_isa_a8a2a180a9 (IsA c object_oriented_programming_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "c is a kind of procedural programming lanuage", "pln": ["(: cnet_isa_35c6f644c1 (IsA c procedural_programming_lanuage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "c is a kind of programming language", "pln": ["(: cnet_isa_8bbd942219 (IsA c programming_language) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "c is a kind of letter", "pln": ["(: cnet_isa_09740f5367 (IsA c letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "c is a kind of tonic", "pln": ["(: cnet_isa_6858bc4557 (IsA c tonic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "c battery is a kind of battery", "pln": ["(: cnet_isa_81838f93a5 (IsA c_battery battery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "c clamp is a kind of clamp", "pln": ["(: cnet_isa_cd8d27238f (IsA c_clamp clamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "c clef is a kind of clef", "pln": ["(: cnet_isa_eaaee6d5c0 (IsA c_clef clef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "c compiler is a kind of compiler", "pln": ["(: cnet_isa_4b8c6b68fc (IsA c_compiler compiler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "c program is a kind of program", "pln": ["(: cnet_isa_0a6ab04257 (IsA c_program program) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "c ration is a kind of field ration", "pln": ["(: cnet_isa_dcdbeca506 (IsA c_ration field_ration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "c reactive protein is a kind of serum globulin", "pln": ["(: cnet_isa_4540e25eaf (IsA c_reactive_protein serum_globulin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ca is a kind of abbreviation for california", "pln": ["(: cnet_isa_7c94d8b3db (IsA ca abbreviation_for_california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cab is a kind of car", "pln": ["(: cnet_isa_3a077a1ae6 (IsA cab car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cab is a kind of carriage", "pln": ["(: cnet_isa_2329e7dcb0 (IsA cab carriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cab is a kind of compartment", "pln": ["(: cnet_isa_a2aeb7c054 (IsA cab compartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cab fare is a kind of fare", "pln": ["(: cnet_isa_2fc26c2919 (IsA cab_fare fare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabal is a kind of clique", "pln": ["(: cnet_isa_c83fd2903b (IsA cabal clique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabala is a kind of secret", "pln": ["(: cnet_isa_c247c4297f (IsA cabala secret) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabalist is a kind of expert", "pln": ["(: cnet_isa_55101cd767 (IsA cabalist expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabalist is a kind of member", "pln": ["(: cnet_isa_1cbb232541 (IsA cabalist member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabana is a kind of tent", "pln": ["(: cnet_isa_b693da5dc5 (IsA cabana tent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabaret is a kind of show", "pln": ["(: cnet_isa_0759c4079e (IsA cabaret show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabaret is a kind of spot", "pln": ["(: cnet_isa_eb7edd13ce (IsA cabaret spot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabbage is a kind of plant", "pln": ["(: cnet_isa_884d38c222 (IsA cabbage plant) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabbage is a kind of cruciferous vegetable", "pln": ["(: cnet_isa_04bbeb1bae (IsA cabbage cruciferous_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabbage is a kind of crucifer", "pln": ["(: cnet_isa_6800530f4c (IsA cabbage crucifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabbage bark is a kind of angelim", "pln": ["(: cnet_isa_12baa10b62 (IsA cabbage_bark angelim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabbage butterfly is a kind of pierid", "pln": ["(: cnet_isa_7e0f9d8162 (IsA cabbage_butterfly pierid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabbage palm is a kind of palm", "pln": ["(: cnet_isa_e0fe35165d (IsA cabbage_palm palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabbage palmetto is a kind of palmetto", "pln": ["(: cnet_isa_b3a11760da (IsA cabbage_palmetto palmetto) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabbage tree is a kind of tree", "pln": ["(: cnet_isa_866b9aea00 (IsA cabbage_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabbageworm is a kind of caterpillar", "pln": ["(: cnet_isa_7569b895c4 (IsA cabbageworm caterpillar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "caber is a kind of pole", "pln": ["(: cnet_isa_06b5282320 (IsA caber pole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cabernet is a kind of red wine", "pln": ["(: cnet_isa_f02a6662c1 (IsA cabernet red_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabernet sauvignon grape is a kind of vinifera", "pln": ["(: cnet_isa_5e3ba17405 (IsA cabernet_sauvignon_grape vinifera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabin is a kind of compartment", "pln": ["(: cnet_isa_a0574875a8 (IsA cabin compartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabin is a kind of house", "pln": ["(: cnet_isa_d091fe525d (IsA cabin house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabin boy is a kind of servant", "pln": ["(: cnet_isa_a1aa7d8da1 (IsA cabin_boy servant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabin car is a kind of car", "pln": ["(: cnet_isa_1261e16d12 (IsA cabin_car car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabin class is a kind of accommodation", "pln": ["(: cnet_isa_6c6111e8f1 (IsA cabin_class accommodation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabin cruiser is a kind of motorboat", "pln": ["(: cnet_isa_a0fc8231cb (IsA cabin_cruiser motorboat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabin liner is a kind of liner", "pln": ["(: cnet_isa_b169710d1e (IsA cabin_liner liner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabinet is a kind of furniture", "pln": ["(: cnet_isa_d17627e5f9 (IsA cabinet furniture) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabinet is a kind of compartment", "pln": ["(: cnet_isa_80873da3db (IsA cabinet compartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabinet is a kind of housing", "pln": ["(: cnet_isa_4a27210bee (IsA cabinet housing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabinet is a kind of advisory board", "pln": ["(: cnet_isa_3fcdd4c081 (IsA cabinet advisory_board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabinet minister is a kind of minister", "pln": ["(: cnet_isa_2fab4981ea (IsA cabinet_minister minister) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabinet wood is a kind of wood", "pln": ["(: cnet_isa_269165b976 (IsA cabinet_wood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabinetmaker is a kind of woodworker", "pln": ["(: cnet_isa_b162376a3d (IsA cabinetmaker woodworker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabinetmaking is a kind of carpentry", "pln": ["(: cnet_isa_ed56540eb9 (IsA cabinetmaking carpentry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabinetwork is a kind of woodwork", "pln": ["(: cnet_isa_7872b11f58 (IsA cabinetwork woodwork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cabinetwork is a kind of carpentry", "pln": ["(: cnet_isa_5de1196b4a (IsA cabinetwork carpentry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cable is a kind of conductor", "pln": ["(: cnet_isa_3f3d56a81b (IsA cable conductor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cable is a kind of rope", "pln": ["(: cnet_isa_18ac7cfecc (IsA cable rope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cable is a kind of television", "pln": ["(: cnet_isa_1d3cebd0be (IsA cable television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cable is a kind of telegram", "pln": ["(: cnet_isa_2f986675b7 (IsA cable telegram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cable is a kind of linear unit", "pln": ["(: cnet_isa_99dab96312 (IsA cable linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cable car is a kind of compartment", "pln": ["(: cnet_isa_4cf5be1f74 (IsA cable_car compartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cable railway is a kind of railway", "pln": ["(: cnet_isa_5e2ffeffe5 (IsA cable_railway railway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cable television is a kind of television", "pln": ["(: cnet_isa_9981a1851f (IsA cable_television television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabochon is a kind of gem", "pln": ["(: cnet_isa_77a28f425f (IsA cabochon gem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabomba is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_2d79485d7c (IsA cabomba magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabombaceae is a kind of magnoliid dicot family", "pln": ["(: cnet_isa_9cd17cc1cf (IsA cabombaceae magnoliid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabotage is a kind of seafaring", "pln": ["(: cnet_isa_491e4342a0 (IsA cabotage seafaring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabotage is a kind of right", "pln": ["(: cnet_isa_6d68a0f54c (IsA cabotage right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cabstand is a kind of stand", "pln": ["(: cnet_isa_21020fe5b0 (IsA cabstand stand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cacajao is a kind of mammal genus", "pln": ["(: cnet_isa_3f0080f6cf (IsA cacajao mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cacalia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_e3c6e0fba4 (IsA cacalia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cacao is a kind of angiospermous tree", "pln": ["(: cnet_isa_ed0927fadc (IsA cacao angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cacao bean is a kind of cacao", "pln": ["(: cnet_isa_dae2af9aee (IsA cacao_bean cacao) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cache is a kind of storage space", "pln": ["(: cnet_isa_a04f720ab5 (IsA cache storage_space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cache is a kind of buffer", "pln": ["(: cnet_isa_09f206fa21 (IsA cache buffer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cachet is a kind of seal", "pln": ["(: cnet_isa_60c6f2ee13 (IsA cachet seal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cachet is a kind of award", "pln": ["(: cnet_isa_21133ced2a (IsA cachet award) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cachet is a kind of warrant", "pln": ["(: cnet_isa_fbff8e0c59 (IsA cachet warrant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cachexia is a kind of infirmity", "pln": ["(: cnet_isa_4b20dfc218 (IsA cachexia infirmity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cachinnation is a kind of laugh", "pln": ["(: cnet_isa_6ada61a14f (IsA cachinnation laugh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cachou is a kind of lozenge", "pln": ["(: cnet_isa_41d9fd691a (IsA cachou lozenge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cacicus is a kind of bird genus", "pln": ["(: cnet_isa_9c024f27fe (IsA cacicus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cacique is a kind of new world oriole", "pln": ["(: cnet_isa_d4d23e91de (IsA cacique new_world_oriole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cackle is a kind of laugh", "pln": ["(: cnet_isa_a39663ec21 (IsA cackle laugh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cackle is a kind of cry", "pln": ["(: cnet_isa_6b69f31993 (IsA cackle cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cackler is a kind of hen", "pln": ["(: cnet_isa_b2520d3481 (IsA cackler hen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cacodemon is a kind of evil spirit", "pln": ["(: cnet_isa_3087cffa84 (IsA cacodemon evil_spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cacodyl is a kind of group", "pln": ["(: cnet_isa_1cc94e19f9 (IsA cacodyl group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cacodyl is a kind of organic compound", "pln": ["(: cnet_isa_cf0497e4f9 (IsA cacodyl organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cacogenesis is a kind of sterility", "pln": ["(: cnet_isa_13491a1bdb (IsA cacogenesis sterility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cacophony is a kind of dissonance", "pln": ["(: cnet_isa_3501f2ae52 (IsA cacophony dissonance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cactaceae is a kind of caryophylloid dicot family", "pln": ["(: cnet_isa_aeed7618ea (IsA cactaceae caryophylloid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cactus is a kind of succulent", "pln": ["(: cnet_isa_d6e2586a30 (IsA cactus succulent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cactus mouse is a kind of wood mouse", "pln": ["(: cnet_isa_f65efc4708 (IsA cactus_mouse wood_mouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cactus wren is a kind of wren", "pln": ["(: cnet_isa_409fc5ca15 (IsA cactus_wren wren) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cad is a kind of villain", "pln": ["(: cnet_isa_a5d1fa48d2 (IsA cad villain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cadaster is a kind of register", "pln": ["(: cnet_isa_5ef26c8f39 (IsA cadaster register) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cadaver is a kind of body", "pln": ["(: cnet_isa_8fded845bf (IsA cadaver body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cadaverine is a kind of ptomaine", "pln": ["(: cnet_isa_e46130220b (IsA cadaverine ptomaine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caddie is a kind of attendant", "pln": ["(: cnet_isa_2f39b3b2b2 (IsA caddie attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caddis fly is a kind of trichopterous insect", "pln": ["(: cnet_isa_11b4deeca5 (IsA caddis_fly trichopterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caddisworm is a kind of caseworm", "pln": ["(: cnet_isa_e7d4c45357 (IsA caddisworm caseworm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caddo is a kind of amerind", "pln": ["(: cnet_isa_41eb137297 (IsA caddo amerind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caddo is a kind of buffalo indian", "pln": ["(: cnet_isa_5ba3a15cf5 (IsA caddo buffalo_indian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caddy is a kind of can", "pln": ["(: cnet_isa_6d18d38e89 (IsA caddy can) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cadence is a kind of rhythmicity", "pln": ["(: cnet_isa_96633f3412 (IsA cadence rhythmicity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cadence is a kind of passage", "pln": ["(: cnet_isa_dd0982c201 (IsA cadence passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cadenza is a kind of passage", "pln": ["(: cnet_isa_8d88ecbf6e (IsA cadenza passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cadet is a kind of trainee", "pln": ["(: cnet_isa_fd1a67ed59 (IsA cadet trainee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cadetship is a kind of position", "pln": ["(: cnet_isa_829b933890 (IsA cadetship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cadillac is a kind of brand of car", "pln": ["(: cnet_isa_06ab900ead (IsA cadillac brand_of_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cadillac is a kind of expensive car", "pln": ["(: cnet_isa_3d4fd8bfc7 (IsA cadillac expensive_car) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cadmium is a kind of metallic element", "pln": ["(: cnet_isa_51d26ab210 (IsA cadmium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cadmium orange is a kind of cadmium yellow", "pln": ["(: cnet_isa_a676ce531e (IsA cadmium_orange cadmium_yellow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cadmium sulfide is a kind of sulfide", "pln": ["(: cnet_isa_f88df0e69b (IsA cadmium_sulfide sulfide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cadmium yellow is a kind of pigment", "pln": ["(: cnet_isa_5cea9fd9de (IsA cadmium_yellow pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cadmium yellow pale is a kind of cadmium yellow", "pln": ["(: cnet_isa_95a02f6ee7 (IsA cadmium_yellow_pale cadmium_yellow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cadmus is a kind of imaginary being", "pln": ["(: cnet_isa_cb685d52c7 (IsA cadmus imaginary_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cadra is a kind of arthropod genus", "pln": ["(: cnet_isa_118330a1e1 (IsA cadra arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cadre is a kind of core", "pln": ["(: cnet_isa_ede9ea6d68 (IsA cadre core) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caduceus is a kind of insignia", "pln": ["(: cnet_isa_8e14bc94c1 (IsA caduceus insignia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caecilian is a kind of amphibian", "pln": ["(: cnet_isa_3c809a32b2 (IsA caecilian amphibian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caeciliidae is a kind of amphibian family", "pln": ["(: cnet_isa_574c7dac9a (IsA caeciliidae amphibian_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caenoleste is a kind of mammal genus", "pln": ["(: cnet_isa_ea061a296b (IsA caenoleste mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "caenolestidae is a kind of mammal family", "pln": ["(: cnet_isa_8794397a34 (IsA caenolestidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caesalpinia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_9550e79155 (IsA caesalpinia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caesalpiniaceae is a kind of rosid dicot family", "pln": ["(: cnet_isa_7100f5ca0c (IsA caesalpiniaceae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caesalpinioideae is a kind of rosid dicot family", "pln": ["(: cnet_isa_d96f75ff9e (IsA caesalpinioideae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caesar salad is a kind of tossed salad", "pln": ["(: cnet_isa_4725c09eba (IsA caesar_salad tossed_salad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caesium clock is a kind of atomic clock", "pln": ["(: cnet_isa_2c454a6cb7 (IsA caesium_clock atomic_clock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caesura is a kind of prosody", "pln": ["(: cnet_isa_e474b3949a (IsA caesura prosody) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "caesura is a kind of pause", "pln": ["(: cnet_isa_5b5f63dfd9 (IsA caesura pause) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cafe is a kind of restaurant", "pln": ["(: cnet_isa_dbaca4f1e6 (IsA cafe restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cafe au lait is a kind of coffee", "pln": ["(: cnet_isa_4d0dd6f5da (IsA cafe_au_lait coffee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cafe noir is a kind of coffee", "pln": ["(: cnet_isa_f900324976 (IsA cafe_noir coffee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cafe royale is a kind of coffee", "pln": ["(: cnet_isa_6a0978a94f (IsA cafe_royale coffee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cafeteria is a kind of restaurant", "pln": ["(: cnet_isa_d35727668a (IsA cafeteria restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cafeteria facility is a kind of facility", "pln": ["(: cnet_isa_ff897d4148 (IsA cafeteria_facility facility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cafeteria tray is a kind of tray", "pln": ["(: cnet_isa_55dff212c9 (IsA cafeteria_tray tray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caff is a kind of cafe", "pln": ["(: cnet_isa_a14d8de6ae (IsA caff cafe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caffe latte is a kind of espresso", "pln": ["(: cnet_isa_cdd1c1bf59 (IsA caffe_latte espresso) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caffein addiction is a kind of drug addiction", "pln": ["(: cnet_isa_f78cf55652 (IsA caffein_addiction drug_addiction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "caffeine is a kind of stimulant", "pln": ["(: cnet_isa_56e7b6c5ac (IsA caffeine stimulant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caffeine is a kind of alkaloid", "pln": ["(: cnet_isa_cb63082f8e (IsA caffeine alkaloid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caffeine addict is a kind of addict", "pln": ["(: cnet_isa_c523c57c59 (IsA caffeine_addict addict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caffeinism is a kind of poisoning", "pln": ["(: cnet_isa_56f3bf0e5a (IsA caffeinism poisoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caftan is a kind of cloak", "pln": ["(: cnet_isa_4a0394d5f8 (IsA caftan cloak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "caftan is a kind of dress", "pln": ["(: cnet_isa_85bad494f8 (IsA caftan dress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cage is a kind of enclosure", "pln": ["(: cnet_isa_4fc45afaa0 (IsA cage enclosure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cage is a kind of net", "pln": ["(: cnet_isa_b6e3019556 (IsA cage net) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cage is a kind of constraint", "pln": ["(: cnet_isa_d80557c8b2 (IsA cage constraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cagoule is a kind of parka", "pln": ["(: cnet_isa_62f98f2a98 (IsA cagoule parka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cahita is a kind of uto aztecan", "pln": ["(: cnet_isa_7ab76f6b73 (IsA cahita uto_aztecan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cahita is a kind of taracahitian", "pln": ["(: cnet_isa_23b6075fde (IsA cahita taracahitian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cahoot is a kind of connivance", "pln": ["(: cnet_isa_82dfde5133 (IsA cahoot connivance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caiman lizard is a kind of teiid lizard", "pln": ["(: cnet_isa_3d2dd6d5eb (IsA caiman_lizard teiid_lizard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cairene is a kind of egyptian", "pln": ["(: cnet_isa_9367ee9261 (IsA cairene egyptian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cairina is a kind of bird genus", "pln": ["(: cnet_isa_49ebdec56c (IsA cairina bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cairn is a kind of terrier", "pln": ["(: cnet_isa_d3c89a1b2e (IsA cairn terrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cairn is a kind of marker", "pln": ["(: cnet_isa_5b4464885e (IsA cairn marker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cairngorm is a kind of quartz", "pln": ["(: cnet_isa_1cc3ea4ce8 (IsA cairngorm quartz) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caisson is a kind of chamber", "pln": ["(: cnet_isa_19e3d33cc2 (IsA caisson chamber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caisson is a kind of chest", "pln": ["(: cnet_isa_a106e30310 (IsA caisson chest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caisson is a kind of military vehicle", "pln": ["(: cnet_isa_14210114fe (IsA caisson military_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caitiff is a kind of cur", "pln": ["(: cnet_isa_d500912e50 (IsA caitiff cur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cajan pea is a kind of pea", "pln": ["(: cnet_isa_abff70469b (IsA cajan_pea pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cajanus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_ce1bdc8f2d (IsA cajanus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cajun is a kind of acadian", "pln": ["(: cnet_isa_bcb13bd795 (IsA cajun acadian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cakchiquel is a kind of maya", "pln": ["(: cnet_isa_2c00a8b438 (IsA cakchiquel maya) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cakchiquel is a kind of mayan", "pln": ["(: cnet_isa_00d85e241a (IsA cakchiquel mayan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cake is a kind of block", "pln": ["(: cnet_isa_052f039728 (IsA cake block) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cake is a kind of baked good", "pln": ["(: cnet_isa_cc89d1bcf0 (IsA cake baked_good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cake mix is a kind of ready mix", "pln": ["(: cnet_isa_69772ac14c (IsA cake_mix ready_mix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cakewalk is a kind of accomplishment", "pln": ["(: cnet_isa_694a5aaa47 (IsA cakewalk accomplishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cakewalk is a kind of stage dancing", "pln": ["(: cnet_isa_d8d4635848 (IsA cakewalk stage_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cakile is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_7ee357906d (IsA cakile dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calaba is a kind of tree", "pln": ["(: cnet_isa_c1d1869694 (IsA calaba tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calabar bean is a kind of bean", "pln": ["(: cnet_isa_5133c900b9 (IsA calabar_bean bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "calabar bean vine is a kind of vine", "pln": ["(: cnet_isa_b0b048b06f (IsA calabar_bean_vine vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calabash is a kind of pipe", "pln": ["(: cnet_isa_1d2ff596e8 (IsA calabash pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calabash is a kind of gourd", "pln": ["(: cnet_isa_e0bf27e126 (IsA calabash gourd) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calabash is a kind of tree", "pln": ["(: cnet_isa_727b7987d8 (IsA calabash tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caladenia is a kind of orchid", "pln": ["(: cnet_isa_50c9e387f5 (IsA caladenia orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caladium is a kind of arum", "pln": ["(: cnet_isa_435eb179bd (IsA caladium arum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caladium bicolor is a kind of caladium", "pln": ["(: cnet_isa_61024f3c93 (IsA caladium_bicolor caladium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calamagrostis is a kind of gramineae", "pln": ["(: cnet_isa_5dc837252f (IsA calamagrostis gramineae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calamagrostis is a kind of monocot genus", "pln": ["(: cnet_isa_5920078584 (IsA calamagrostis monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calamine lotion is a kind of lotion", "pln": ["(: cnet_isa_e0f70bbd9f (IsA calamine_lotion lotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calamint is a kind of herb", "pln": ["(: cnet_isa_0947f27f55 (IsA calamint herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calamintha is a kind of asterid dicot genus", "pln": ["(: cnet_isa_d57f3da319 (IsA calamintha asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calamity is a kind of misfortune", "pln": ["(: cnet_isa_c8bdd40ab2 (IsA calamity misfortune) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calamus is a kind of fish genus", "pln": ["(: cnet_isa_245103a7e0 (IsA calamus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calamus is a kind of palm", "pln": ["(: cnet_isa_71ae9f7109 (IsA calamus palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calamus is a kind of root", "pln": ["(: cnet_isa_9329e2e523 (IsA calamus root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calamus oil is a kind of oil", "pln": ["(: cnet_isa_6b8b5f0417 (IsA calamus_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "calandrinia is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_a4aba73e9c (IsA calandrinia caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calanthe is a kind of orchid", "pln": ["(: cnet_isa_56a0db34e5 (IsA calanthe orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calapooya is a kind of penutian", "pln": ["(: cnet_isa_da30ca0558 (IsA calapooya penutian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calash is a kind of hood", "pln": ["(: cnet_isa_bfb3e8319e (IsA calash hood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calcarine sulcus is a kind of sulcus", "pln": ["(: cnet_isa_7ed991244b (IsA calcarine_sulcus sulcus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calceolaria is a kind of flower", "pln": ["(: cnet_isa_73f5fbba60 (IsA calceolaria flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calceus is a kind of shoe", "pln": ["(: cnet_isa_bfd7f738f9 (IsA calceus shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "calcification is a kind of chemical process", "pln": ["(: cnet_isa_0e4fba2e98 (IsA calcification chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calcification is a kind of hardening", "pln": ["(: cnet_isa_c9581ba99f (IsA calcification hardening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calcification is a kind of inaction", "pln": ["(: cnet_isa_01a33bcb15 (IsA calcification inaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calcimine is a kind of wash", "pln": ["(: cnet_isa_f279eb6a0d (IsA calcimine wash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calcimine is a kind of water base paint", "pln": ["(: cnet_isa_d327099ee4 (IsA calcimine water_base_paint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calcination is a kind of oxidation", "pln": ["(: cnet_isa_ed4fe012f9 (IsA calcination oxidation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calcite is a kind of spar", "pln": ["(: cnet_isa_25966da8b5 (IsA calcite spar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calcitonin is a kind of thyroid hormone", "pln": ["(: cnet_isa_9e686d490a (IsA calcitonin thyroid_hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calcium is a kind of element", "pln": ["(: cnet_isa_19c9405755 (IsA calcium element) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calcium is a kind of metallic element", "pln": ["(: cnet_isa_336c4a649b (IsA calcium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calcium bicarbonate is a kind of bicarbonate", "pln": ["(: cnet_isa_fa97bea1a6 (IsA calcium_bicarbonate bicarbonate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calcium blocker is a kind of medicine", "pln": ["(: cnet_isa_5a94d670b0 (IsA calcium_blocker medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "calcium carbide is a kind of binary compound", "pln": ["(: cnet_isa_4e18f80813 (IsA calcium_carbide binary_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calcium carbide is a kind of carbide", "pln": ["(: cnet_isa_f9ae938c67 (IsA calcium_carbide carbide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calcium carbonate is a kind of carbonate", "pln": ["(: cnet_isa_de5c2c93f0 (IsA calcium_carbonate carbonate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calcium chloride is a kind of salt", "pln": ["(: cnet_isa_c6b6687a5f (IsA calcium_chloride salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calcium cyanamide is a kind of compound", "pln": ["(: cnet_isa_b02bce539c (IsA calcium_cyanamide compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calcium hydride is a kind of hydride", "pln": ["(: cnet_isa_0615c51b02 (IsA calcium_hydride hydride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calcium hydroxide is a kind of hydroxide", "pln": ["(: cnet_isa_1c4bef4afa (IsA calcium_hydroxide hydroxide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calcium hypochlorite is a kind of bleaching agent", "pln": ["(: cnet_isa_fc5d75558a (IsA calcium_hypochlorite bleaching_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calcium hypochlorite is a kind of hypochlorite", "pln": ["(: cnet_isa_6b3574d302 (IsA calcium_hypochlorite hypochlorite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calcium ion is a kind of calcium", "pln": ["(: cnet_isa_9e55767435 (IsA calcium_ion calcium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calcium ion is a kind of coagulation factor", "pln": ["(: cnet_isa_9bd410d790 (IsA calcium_ion coagulation_factor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calcium lactate is a kind of salt", "pln": ["(: cnet_isa_089e2c72f7 (IsA calcium_lactate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calcium nitrate is a kind of nitrate", "pln": ["(: cnet_isa_ec49f3cedb (IsA calcium_nitrate nitrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calcium oxide is a kind of oxide", "pln": ["(: cnet_isa_83ee93685f (IsA calcium_oxide oxide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calcium phosphate is a kind of phosphate", "pln": ["(: cnet_isa_76fbaa27da (IsA calcium_phosphate phosphate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calcium stearate is a kind of salt", "pln": ["(: cnet_isa_e8c883d305 (IsA calcium_stearate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calcium sulphate is a kind of salt", "pln": ["(: cnet_isa_8407495e3c (IsA calcium_sulphate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calculation is a kind of procedure", "pln": ["(: cnet_isa_587c0a10cf (IsA calculation procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calculation is a kind of planning", "pln": ["(: cnet_isa_5908003c4b (IsA calculation planning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calculation is a kind of problem solving", "pln": ["(: cnet_isa_3f0706faf1 (IsA calculation problem_solving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calculator is a kind of machine", "pln": ["(: cnet_isa_4de9027844 (IsA calculator machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calculator is a kind of expert", "pln": ["(: cnet_isa_ee2edee9ef (IsA calculator expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calculus is a kind of pure mathematic", "pln": ["(: cnet_isa_8dbe35162d (IsA calculus pure_mathematic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calculus is a kind of rock", "pln": ["(: cnet_isa_47d102f85a (IsA calculus rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calculus of variation is a kind of calculus", "pln": ["(: cnet_isa_1f29d1a8ee (IsA calculus_of_variation calculus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caldera is a kind of volcanic crater", "pln": ["(: cnet_isa_6b23a0842c (IsA caldera volcanic_crater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caldron is a kind of pot", "pln": ["(: cnet_isa_ca7d504331 (IsA caldron pot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "calefaction is a kind of hotness", "pln": ["(: cnet_isa_b391cb452a (IsA calefaction hotness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calendar is a kind of list", "pln": ["(: cnet_isa_0c4a268a9b (IsA calendar list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calendar is a kind of table", "pln": ["(: cnet_isa_52e5fe1352 (IsA calendar table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "calendar is a kind of arrangement", "pln": ["(: cnet_isa_e69bf442df (IsA calendar arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calendar day is a kind of time period", "pln": ["(: cnet_isa_532da72f1d (IsA calendar_day time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calendar month is a kind of time period", "pln": ["(: cnet_isa_1eae3d9c23 (IsA calendar_month time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calendar year is a kind of year", "pln": ["(: cnet_isa_2fa516b8d0 (IsA calendar_year year) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calender is a kind of machine", "pln": ["(: cnet_isa_6b4b7c44e6 (IsA calender machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calendula is a kind of flower", "pln": ["(: cnet_isa_1e168f196e (IsA calendula flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calf s brain is a kind of brain", "pln": ["(: cnet_isa_327a0cd869 (IsA calf_s_brain brain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calf s foot jelly is a kind of gelatin", "pln": ["(: cnet_isa_6d70fc1330 (IsA calf_s_foot_jelly gelatin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calf s tongue is a kind of tongue", "pln": ["(: cnet_isa_9d26aa381e (IsA calf_s_tongue tongue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calf is a kind of young mammal", "pln": ["(: cnet_isa_b6ffd76fb6 (IsA calf young_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calf is a kind of skeletal muscle", "pln": ["(: cnet_isa_8d1080d0f5 (IsA calf skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calf is a kind of leather", "pln": ["(: cnet_isa_8365404609 (IsA calf leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calf roping is a kind of roping", "pln": ["(: cnet_isa_f1eb7de99f (IsA calf_roping roping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calgary carpet juniper is a kind of plant", "pln": ["(: cnet_isa_175795310b (IsA calgary_carpet_juniper plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calibration is a kind of activity", "pln": ["(: cnet_isa_a565c63c39 (IsA calibration activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caliche is a kind of rock", "pln": ["(: cnet_isa_8131c975ee (IsA caliche rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caliche is a kind of soil", "pln": ["(: cnet_isa_fe3b62d7dc (IsA caliche soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calico is a kind of fabric", "pln": ["(: cnet_isa_1cd8b38a5c (IsA calico fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calidris is a kind of bird genus", "pln": ["(: cnet_isa_8322158f64 (IsA calidris bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "california is a kind of place in north america", "pln": ["(: cnet_isa_ba38d56b72 (IsA california place_in_north_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "california is a kind of state", "pln": ["(: cnet_isa_fa0aa133fb (IsA california state) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "california is a kind of state in usa", "pln": ["(: cnet_isa_4d000120e6 (IsA california state_in_usa) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "california black oak is a kind of oak", "pln": ["(: cnet_isa_d8d8f73e32 (IsA california_black_oak oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "california black walnut is a kind of walnut", "pln": ["(: cnet_isa_adfa39dbd2 (IsA california_black_walnut walnut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "california bluebell is a kind of scorpionweed", "pln": ["(: cnet_isa_5286c22d34 (IsA california_bluebell scorpionweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "california box elder is a kind of box elder", "pln": ["(: cnet_isa_8b4b6c5e8d (IsA california_box_elder box_elder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "california condor is a kind of condor", "pln": ["(: cnet_isa_189cee7944 (IsA california_condor condor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "california four o clock is a kind of four o clock", "pln": ["(: cnet_isa_d93adfc5e9 (IsA california_four_o_clock four_o_clock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "california fuchsia is a kind of shrublet", "pln": ["(: cnet_isa_d8ddbc4985 (IsA california_fuchsia shrublet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "california lady s slipper is a kind of lady s slipper", "pln": ["(: cnet_isa_354573b214 (IsA california_lady_s_slipper lady_s_slipper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "california laurel is a kind of laurel", "pln": ["(: cnet_isa_3b83c30d5e (IsA california_laurel laurel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "california newt is a kind of pacific newt", "pln": ["(: cnet_isa_6fd6664bd2 (IsA california_newt pacific_newt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "california nutmeg is a kind of yew", "pln": ["(: cnet_isa_422842a32b (IsA california_nutmeg yew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "california personality inventory is a kind of self report personality inventory", "pln": ["(: cnet_isa_7f9e34aea8 (IsA california_personality_inventory self_report_personality_inventory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "california pitcher plant is a kind of pitcher plant", "pln": ["(: cnet_isa_40c66dbda9 (IsA california_pitcher_plant pitcher_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "california poppy is a kind of poppy", "pln": ["(: cnet_isa_6b8b094667 (IsA california_poppy poppy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "california privet is a kind of privet", "pln": ["(: cnet_isa_dac49cb846 (IsA california_privet privet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "california quail is a kind of quail", "pln": ["(: cnet_isa_efd9a97c77 (IsA california_quail quail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "california redwood is a kind of sequoia", "pln": ["(: cnet_isa_ec56868f25 (IsA california_redwood sequoia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "california sagebrush is a kind of sagebrush", "pln": ["(: cnet_isa_53beb3dacd (IsA california_sagebrush sagebrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "california sea lion is a kind of sea lion", "pln": ["(: cnet_isa_2484e7a270 (IsA california_sea_lion sea_lion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "california single leaf pinyon is a kind of pinon", "pln": ["(: cnet_isa_b1a8b27a11 (IsA california_single_leaf_pinyon pinon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "california state song is a kind of love california", "pln": ["(: cnet_isa_aa00731df9 (IsA california_state_song love_california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "california sycamore is a kind of plane tree", "pln": ["(: cnet_isa_9c4c77a053 (IsA california_sycamore plane_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "california whipsnake is a kind of whip snake", "pln": ["(: cnet_isa_a45d4a810c (IsA california_whipsnake whip_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "california white oak is a kind of white oak", "pln": ["(: cnet_isa_a662b08af2 (IsA california_white_oak white_oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "california wine is a kind of wine", "pln": ["(: cnet_isa_7936c4040a (IsA california_wine wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "californian is a kind of american", "pln": ["(: cnet_isa_eb51dd0465 (IsA californian american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "californium is a kind of metallic element", "pln": ["(: cnet_isa_b2555f502c (IsA californium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caliper is a kind of measuring instrument", "pln": ["(: cnet_isa_998dfd188d (IsA caliper measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caliph is a kind of moslem", "pln": ["(: cnet_isa_52788b3b21 (IsA caliph moslem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caliph is a kind of ruler", "pln": ["(: cnet_isa_9936121dfb (IsA caliph ruler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caliphate is a kind of position", "pln": ["(: cnet_isa_2f031ae83f (IsA caliphate position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caliphate is a kind of jurisdiction", "pln": ["(: cnet_isa_b2c8bdcae9 (IsA caliphate jurisdiction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calisaya is a kind of cinchona", "pln": ["(: cnet_isa_78a8c635fe (IsA calisaya cinchona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calisthenic is a kind of exercise", "pln": ["(: cnet_isa_20077c9783 (IsA calisthenic exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calk is a kind of cleat", "pln": ["(: cnet_isa_e2fdb41902 (IsA calk cleat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "call is a kind of visit", "pln": ["(: cnet_isa_087671924e (IsA call visit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "call is a kind of inclination", "pln": ["(: cnet_isa_bad54f9fd0 (IsA call inclination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "call is a kind of demand", "pln": ["(: cnet_isa_894c1273d5 (IsA call demand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "call is a kind of instruction", "pln": ["(: cnet_isa_fb196fa55d (IsA call instruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "call is a kind of request", "pln": ["(: cnet_isa_604a82e51d (IsA call request) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "call is a kind of telephone", "pln": ["(: cnet_isa_d6fd550bfd (IsA call telephone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "call is a kind of decision", "pln": ["(: cnet_isa_5785ec14a0 (IsA call decision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "call back is a kind of employment", "pln": ["(: cnet_isa_e84384561b (IsA call_back employment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "call back is a kind of call", "pln": ["(: cnet_isa_896349773d (IsA call_back call) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "call board is a kind of bulletin board", "pln": ["(: cnet_isa_e0857c7beb (IsA call_board bulletin_board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "call center is a kind of center", "pln": ["(: cnet_isa_6dc54eb250 (IsA call_center center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "call fire is a kind of fire", "pln": ["(: cnet_isa_05110706d1 (IsA call_fire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "call forwarding is a kind of telephone", "pln": ["(: cnet_isa_4d1eef6c80 (IsA call_forwarding telephone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "call girl is a kind of prostitute", "pln": ["(: cnet_isa_948d20d24b (IsA call_girl prostitute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "call in is a kind of call", "pln": ["(: cnet_isa_d5f05eeb88 (IsA call_in call) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "call loan is a kind of loan", "pln": ["(: cnet_isa_bb877d4c17 (IsA call_loan loan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "call mark is a kind of mark", "pln": ["(: cnet_isa_e53dc45d9a (IsA call_mark mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "call option is a kind of option", "pln": ["(: cnet_isa_9ede1a9282 (IsA call_option option) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "call option is a kind of stock option", "pln": ["(: cnet_isa_6b79609e91 (IsA call_option stock_option) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "call out is a kind of challenge", "pln": ["(: cnet_isa_fec484f7ed (IsA call_out challenge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "call up is a kind of summon", "pln": ["(: cnet_isa_e814dc93cf (IsA call_up summon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "call waiting is a kind of telephone", "pln": ["(: cnet_isa_a31b77d2d6 (IsA call_waiting telephone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calla is a kind of monocot genus", "pln": ["(: cnet_isa_0d02be53ae (IsA calla monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calla lily is a kind of flower", "pln": ["(: cnet_isa_125a757ba6 (IsA calla_lily flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "caller is a kind of announcer", "pln": ["(: cnet_isa_9a737b735c (IsA caller announcer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "caller is a kind of bettor", "pln": ["(: cnet_isa_a2481110b2 (IsA caller bettor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caller is a kind of investor", "pln": ["(: cnet_isa_6c9fb65c7d (IsA caller investor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caller is a kind of leader", "pln": ["(: cnet_isa_33e8905e5a (IsA caller leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caller is a kind of speaker", "pln": ["(: cnet_isa_8eb600b390 (IsA caller speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caller is a kind of visitor", "pln": ["(: cnet_isa_a5363f5f69 (IsA caller visitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caller id is a kind of display", "pln": ["(: cnet_isa_ea3633ea36 (IsA caller_id display) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calliandra is a kind of shrub", "pln": ["(: cnet_isa_9c1a168b17 (IsA calliandra shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "callicebus is a kind of mammal genus", "pln": ["(: cnet_isa_2f197117ec (IsA callicebus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calligrapher is a kind of skilled worker", "pln": ["(: cnet_isa_dd7e009cfd (IsA calligrapher skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calligraphy is a kind of handwriting", "pln": ["(: cnet_isa_3ddc55364c (IsA calligraphy handwriting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "callimorpha is a kind of arthropod genus", "pln": ["(: cnet_isa_05ec12a6ff (IsA callimorpha arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "callinecte is a kind of arthropod genus", "pln": ["(: cnet_isa_4d1c1f5492 (IsA callinecte arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calling card is a kind of peculiarity", "pln": ["(: cnet_isa_d9d7556650 (IsA calling_card peculiarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calling card is a kind of greeting", "pln": ["(: cnet_isa_021e5d5e3e (IsA calling_card greeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calling card is a kind of credit card", "pln": ["(: cnet_isa_ef956148c8 (IsA calling_card credit_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calling into question is a kind of challenge", "pln": ["(: cnet_isa_26558e16ba (IsA calling_into_question challenge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "callionymidae is a kind of fish family", "pln": ["(: cnet_isa_8cfcaf377d (IsA callionymidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calliope is a kind of musical instrument", "pln": ["(: cnet_isa_c11611a89c (IsA calliope musical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calliophis is a kind of reptile genus", "pln": ["(: cnet_isa_dad0157cac (IsA calliophis reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calliopsis is a kind of coreopsis", "pln": ["(: cnet_isa_4ce7404d6f (IsA calliopsis coreopsis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calliphora is a kind of arthropod genus", "pln": ["(: cnet_isa_becab079b7 (IsA calliphora arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calliphoridae is a kind of arthropod family", "pln": ["(: cnet_isa_f19a0db1b9 (IsA calliphoridae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "callirhoe is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_ce20e55d06 (IsA callirhoe dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "callisaurus is a kind of reptile genus", "pln": ["(: cnet_isa_207882ad54 (IsA callisaurus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "callistephus is a kind of asterid dicot genus", "pln": ["(: cnet_isa_8b9c0e5205 (IsA callistephus asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "callisthenic is a kind of practice", "pln": ["(: cnet_isa_8522beaea8 (IsA callisthenic practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "callithricidae is a kind of mammal family", "pln": ["(: cnet_isa_7999da3fcf (IsA callithricidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "callithrix is a kind of mammal genus", "pln": ["(: cnet_isa_a4c3134ac2 (IsA callithrix mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "callithump is a kind of parade", "pln": ["(: cnet_isa_5d9858df48 (IsA callithump parade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "callitrichaceae is a kind of rosid dicot family", "pln": ["(: cnet_isa_a6eabf545d (IsA callitrichaceae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "callitriche is a kind of rosid dicot genus", "pln": ["(: cnet_isa_598621b64e (IsA callitriche rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "callitris is a kind of gymnosperm genus", "pln": ["(: cnet_isa_72a0f2979a (IsA callitris gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "callorhinus is a kind of mammal genus", "pln": ["(: cnet_isa_9831a12602 (IsA callorhinus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "callosity is a kind of hardening", "pln": ["(: cnet_isa_153982fe00 (IsA callosity hardening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "callosotomy is a kind of psychosurgery", "pln": ["(: cnet_isa_ef9097c900 (IsA callosotomy psychosurgery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "callowness is a kind of immaturity", "pln": ["(: cnet_isa_6404c03eb0 (IsA callowness immaturity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calluna is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_d7c52ae735 (IsA calluna dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "callus is a kind of plant process", "pln": ["(: cnet_isa_3f9d8c4b3f (IsA callus plant_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "callus is a kind of scar", "pln": ["(: cnet_isa_f0f67f232c (IsA callus scar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calm air is a kind of wind", "pln": ["(: cnet_isa_a0125d661d (IsA calm_air wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calmness is a kind of feeling", "pln": ["(: cnet_isa_9e20235044 (IsA calmness feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calmness is a kind of good weather", "pln": ["(: cnet_isa_49b6fad48b (IsA calmness good_weather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calocarpum is a kind of dicot genus", "pln": ["(: cnet_isa_03ecbc0f53 (IsA calocarpum dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calocedrus is a kind of gymnosperm genus", "pln": ["(: cnet_isa_7a43320797 (IsA calocedrus gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calochortus is a kind of liliid monocot genus", "pln": ["(: cnet_isa_18c28dd605 (IsA calochortus liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calomel is a kind of chloride", "pln": ["(: cnet_isa_8da67d2722 (IsA calomel chloride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calophyllum is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_0f91b628ab (IsA calophyllum dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calopogon is a kind of monocot genus", "pln": ["(: cnet_isa_0462735696 (IsA calopogon monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calorie is a kind of work unit", "pln": ["(: cnet_isa_a8847ad6ed (IsA calorie work_unit) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calorie chart is a kind of list", "pln": ["(: cnet_isa_a0205cf9ae (IsA calorie_chart list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calorimeter is a kind of measuring instrument", "pln": ["(: cnet_isa_1e7256b5eb (IsA calorimeter measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calorimetry is a kind of measurement", "pln": ["(: cnet_isa_8e1e3d6fcf (IsA calorimetry measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caloscypha fulgen is a kind of discomycete", "pln": ["(: cnet_isa_f4988fc0ac (IsA caloscypha_fulgen discomycete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calosoma is a kind of ground beetle", "pln": ["(: cnet_isa_ba9d65e07a (IsA calosoma ground_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calostoma cinnabarina is a kind of gasteromycete", "pln": ["(: cnet_isa_852060e82e (IsA calostoma_cinnabarina gasteromycete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calostoma lutescen is a kind of gasteromycete", "pln": ["(: cnet_isa_778147f950 (IsA calostoma_lutescen gasteromycete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calostoma ravenelii is a kind of gasteromycete", "pln": ["(: cnet_isa_2ed4beb5df (IsA calostoma_ravenelii gasteromycete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "calostomataceae is a kind of fungus family", "pln": ["(: cnet_isa_199ad9dd92 (IsA calostomataceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calpac is a kind of cap", "pln": ["(: cnet_isa_08cd660377 (IsA calpac cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calque is a kind of saying", "pln": ["(: cnet_isa_a1b20e99d7 (IsA calque saying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caltha is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_4d212f5e40 (IsA caltha magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caltrop is a kind of subshrub", "pln": ["(: cnet_isa_3c28b2b517 (IsA caltrop subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calumet is a kind of pipe", "pln": ["(: cnet_isa_381868764d (IsA calumet pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calvado is a kind of brandy", "pln": ["(: cnet_isa_bdbf9fe4f3 (IsA calvado brandy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "calvaria is a kind of bone", "pln": ["(: cnet_isa_91673a9dea (IsA calvaria bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calvary is a kind of affliction", "pln": ["(: cnet_isa_d3cd2acd45 (IsA calvary affliction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calvary clover is a kind of medic", "pln": ["(: cnet_isa_a567bcb0ce (IsA calvary_clover medic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calvary cross is a kind of cross", "pln": ["(: cnet_isa_901e85e082 (IsA calvary_cross cross) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "calvatia is a kind of fungus genus", "pln": ["(: cnet_isa_8bb1856663 (IsA calvatia fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calve feet is a kind of veal", "pln": ["(: cnet_isa_0be7621131 (IsA calve_feet veal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calve liver is a kind of liver", "pln": ["(: cnet_isa_5424b7b6c0 (IsA calve_liver liver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calvin and hobbe is a kind of cartoon", "pln": ["(: cnet_isa_866f3ba4b7 (IsA calvin_and_hobbe cartoon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calving is a kind of parturition", "pln": ["(: cnet_isa_ab0d89e768 (IsA calving parturition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calvinism is a kind of protestantism", "pln": ["(: cnet_isa_b1451b028a (IsA calvinism protestantism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "calvinistic baptist is a kind of baptist denomination", "pln": ["(: cnet_isa_a7317fc2ab (IsA calvinistic_baptist baptist_denomination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calycanthaceae is a kind of magnoliid dicot family", "pln": ["(: cnet_isa_1ca5ca98bd (IsA calycanthaceae magnoliid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calycanthus is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_85f1da8074 (IsA calycanthus magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calycophyllum is a kind of asterid dicot genus", "pln": ["(: cnet_isa_1e9e27c52a (IsA calycophyllum asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calyculus is a kind of structure", "pln": ["(: cnet_isa_baebec3b2d (IsA calyculus structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "calymmatobacterium is a kind of bacteria", "pln": ["(: cnet_isa_db4ea89ea9 (IsA calymmatobacterium bacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calymmatobacterium granulomatis is a kind of bacteria specy", "pln": ["(: cnet_isa_fa1a26c890 (IsA calymmatobacterium_granulomatis bacteria_specy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calypso is a kind of sea nymph", "pln": ["(: cnet_isa_9f23648c35 (IsA calypso sea_nymph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calypso is a kind of orchid", "pln": ["(: cnet_isa_6afa27b939 (IsA calypso orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calyptra is a kind of plant part", "pln": ["(: cnet_isa_3744733ab5 (IsA calyptra plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calystegia is a kind of dicot genus", "pln": ["(: cnet_isa_221653946a (IsA calystegia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "calyx is a kind of coil", "pln": ["(: cnet_isa_b64536e5d9 (IsA calyx coil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cam is a kind of rotating mechanism", "pln": ["(: cnet_isa_fd1703ea42 (IsA cam rotating_mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camail is a kind of hood", "pln": ["(: cnet_isa_ee67e8bd1c (IsA camail hood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cama is a kind of liliaceous plant", "pln": ["(: cnet_isa_e398af4a3b (IsA cama liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camassia is a kind of liliid monocot genus", "pln": ["(: cnet_isa_84634633d0 (IsA camassia liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cambarus is a kind of arthropod genus", "pln": ["(: cnet_isa_781367ca87 (IsA cambarus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camber is a kind of alignment", "pln": ["(: cnet_isa_c23d52a96b (IsA camber alignment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camber is a kind of convex shape", "pln": ["(: cnet_isa_b0e06117b6 (IsA camber convex_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camber arch is a kind of arch", "pln": ["(: cnet_isa_5312395005 (IsA camber_arch arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cambium is a kind of stratum", "pln": ["(: cnet_isa_2fd6ef8699 (IsA cambium stratum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cambium is a kind of vascular tissue", "pln": ["(: cnet_isa_0d67d57fef (IsA cambium vascular_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cambodian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_a22aecd112 (IsA cambodian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cambric is a kind of fabric", "pln": ["(: cnet_isa_501bd3ed91 (IsA cambric fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cambric tea is a kind of tea", "pln": ["(: cnet_isa_2179a68d9e (IsA cambric_tea tea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camcorder is a kind of television camera", "pln": ["(: cnet_isa_882d4e1f1b (IsA camcorder television_camera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camel s hair is a kind of fabric", "pln": ["(: cnet_isa_fe8d84173a (IsA camel_s_hair fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "camel is a kind of even toed ungulate", "pln": ["(: cnet_isa_26df97ed97 (IsA camel even_toed_ungulate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camel cavalry is a kind of cavalry", "pln": ["(: cnet_isa_59bf0fb2ff (IsA camel_cavalry cavalry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camel racing is a kind of racing", "pln": ["(: cnet_isa_eab8baa5a4 (IsA camel_racing racing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camelidae is a kind of mammal family", "pln": ["(: cnet_isa_c1ee1b4d69 (IsA camelidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camelina is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_ceef912ecd (IsA camelina dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camellia is a kind of shrub", "pln": ["(: cnet_isa_b7cde94583 (IsA camellia shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camelpox is a kind of animal disease", "pln": ["(: cnet_isa_f202ae5693 (IsA camelpox animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "camelus is a kind of mammal genus", "pln": ["(: cnet_isa_5499cea346 (IsA camelus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camembert is a kind of cheese", "pln": ["(: cnet_isa_8550b50406 (IsA camembert cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cameo is a kind of anaglyph", "pln": ["(: cnet_isa_f994e497e3 (IsA cameo anaglyph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camera is a kind of tool for taking picture", "pln": ["(: cnet_isa_98308c7824 (IsA camera tool_for_taking_picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camera is a kind of photographic equipment", "pln": ["(: cnet_isa_2b6bba1ad2 (IsA camera photographic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camera angle is a kind of point of view", "pln": ["(: cnet_isa_6be0863ac7 (IsA camera_angle point_of_view) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camera care is a kind of care", "pln": ["(: cnet_isa_067f19880d (IsA camera_care care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camera len is a kind of len", "pln": ["(: cnet_isa_e03c179de3 (IsA camera_len len) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camera lucida is a kind of optical device", "pln": ["(: cnet_isa_8492cf1ea7 (IsA camera_lucida optical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "camera obscura is a kind of chamber", "pln": ["(: cnet_isa_3b8cab9483 (IsA camera_obscura chamber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camera tripod is a kind of tripod", "pln": ["(: cnet_isa_5cbbb8fe32 (IsA camera_tripod tripod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cameraman is a kind of photographer", "pln": ["(: cnet_isa_780bbe9dc5 (IsA cameraman photographer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cameroon franc is a kind of franc", "pln": ["(: cnet_isa_f0c888b61a (IsA cameroon_franc franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cameroonian is a kind of african", "pln": ["(: cnet_isa_6ca4cdb44f (IsA cameroonian african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camise is a kind of shirt", "pln": ["(: cnet_isa_2ba1700ef0 (IsA camise shirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camisole is a kind of negligee", "pln": ["(: cnet_isa_ccd1c11cd5 (IsA camisole negligee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "camisole is a kind of undergarment", "pln": ["(: cnet_isa_6ea2983b42 (IsA camisole undergarment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camlet is a kind of fabric", "pln": ["(: cnet_isa_8221cdf1ba (IsA camlet fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camlet is a kind of garment", "pln": ["(: cnet_isa_777818fa01 (IsA camlet garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camomile tea is a kind of tisane", "pln": ["(: cnet_isa_6b343751c9 (IsA camomile_tea tisane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camorra is a kind of organized crime", "pln": ["(: cnet_isa_42fe68f1a6 (IsA camorra organized_crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camouflage is a kind of fabric", "pln": ["(: cnet_isa_07d10b3db4 (IsA camouflage fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camouflage is a kind of screen", "pln": ["(: cnet_isa_a920a3a5ef (IsA camouflage screen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camp is a kind of place", "pln": ["(: cnet_isa_c12a350139 (IsA camp place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camp is a kind of housing", "pln": ["(: cnet_isa_71e21c4e82 (IsA camp housing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "camp is a kind of penal institution", "pln": ["(: cnet_isa_78dac2b6ed (IsA camp penal_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camp is a kind of shelter", "pln": ["(: cnet_isa_29cbbc7606 (IsA camp shelter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camp is a kind of site", "pln": ["(: cnet_isa_9efe8be550 (IsA camp site) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camp is a kind of triteness", "pln": ["(: cnet_isa_da277afbfa (IsA camp triteness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camp is a kind of gathering", "pln": ["(: cnet_isa_abd34c3e63 (IsA camp gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camp is a kind of military quarter", "pln": ["(: cnet_isa_c94b3306b3 (IsA camp military_quarter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camp chair is a kind of folding chair", "pln": ["(: cnet_isa_4b73b807ed (IsA camp_chair folding_chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camp follower is a kind of follower", "pln": ["(: cnet_isa_9bc15bd865 (IsA camp_follower follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camp follower is a kind of prostitute", "pln": ["(: cnet_isa_58cea34034 (IsA camp_follower prostitute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camp meeting is a kind of meeting", "pln": ["(: cnet_isa_e613296f07 (IsA camp_meeting meeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "campaign is a kind of expedition", "pln": ["(: cnet_isa_8bddd8757a (IsA campaign expedition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "campaign is a kind of venture", "pln": ["(: cnet_isa_7185f10e01 (IsA campaign venture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "campaign is a kind of operation", "pln": ["(: cnet_isa_4215bbe717 (IsA campaign operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "campaign hat is a kind of hat", "pln": ["(: cnet_isa_ef124b2bb9 (IsA campaign_hat hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "campaigner is a kind of politician", "pln": ["(: cnet_isa_af10c9034c (IsA campaigner politician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "campaigning is a kind of campaign", "pln": ["(: cnet_isa_66600422ae (IsA campaigning campaign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "campanile is a kind of bell tower", "pln": ["(: cnet_isa_1352513448 (IsA campanile bell_tower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "campanula is a kind of herb", "pln": ["(: cnet_isa_7dd5bb872e (IsA campanula herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "campanulaceae is a kind of plant family", "pln": ["(: cnet_isa_fd22f00d70 (IsA campanulaceae plant_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "campanulale is a kind of plant order", "pln": ["(: cnet_isa_1bd2d77ff1 (IsA campanulale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "campephilus is a kind of bird genus", "pln": ["(: cnet_isa_497a0702f4 (IsA campephilus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camper is a kind of recreational vehicle", "pln": ["(: cnet_isa_1fd9aa049e (IsA camper recreational_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camper is a kind of vacationer", "pln": ["(: cnet_isa_5c0df48200 (IsA camper vacationer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camper trailer is a kind of trailer", "pln": ["(: cnet_isa_45d92d6bc8 (IsA camper_trailer trailer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "campfire is a kind of fire", "pln": ["(: cnet_isa_ca0d197ac9 (IsA campfire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "campfire girl is a kind of female child", "pln": ["(: cnet_isa_8ec42c6d52 (IsA campfire_girl female_child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camphor is a kind of natural resin", "pln": ["(: cnet_isa_2fb36066cd (IsA camphor natural_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camphor daisy is a kind of goldenbush", "pln": ["(: cnet_isa_6afc205dc9 (IsA camphor_daisy goldenbush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camphor dune tansy is a kind of herb", "pln": ["(: cnet_isa_c587af22c4 (IsA camphor_dune_tansy herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camphor ice is a kind of cerate", "pln": ["(: cnet_isa_082fa44504 (IsA camphor_ice cerate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camphor oil is a kind of oil", "pln": ["(: cnet_isa_4292fa66cd (IsA camphor_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "camphor tree is a kind of laurel", "pln": ["(: cnet_isa_2e1e937fad (IsA camphor_tree laurel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camping is a kind of inhabitancy", "pln": ["(: cnet_isa_427075b8e1 (IsA camping inhabitancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "campmate is a kind of acquaintance", "pln": ["(: cnet_isa_a5732b1c62 (IsA campmate acquaintance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camponotus is a kind of arthropod genus", "pln": ["(: cnet_isa_a93bd1dacd (IsA camponotus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "campsite is a kind of site", "pln": ["(: cnet_isa_998e415e7d (IsA campsite site) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "campstool is a kind of stool", "pln": ["(: cnet_isa_12a0518f9d (IsA campstool stool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camptosorus is a kind of fern genus", "pln": ["(: cnet_isa_045ace68e9 (IsA camptosorus fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "campus is a kind of field", "pln": ["(: cnet_isa_98d9c33093 (IsA campus field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "campyloneurum is a kind of fern genus", "pln": ["(: cnet_isa_cefa7ce85c (IsA campyloneurum fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "campylorhynchus is a kind of bird genus", "pln": ["(: cnet_isa_c5d5b5adc0 (IsA campylorhynchus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "campylotropous ovule is a kind of ovule", "pln": ["(: cnet_isa_68b2da94d6 (IsA campylotropous_ovule ovule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camshaft is a kind of rotating shaft", "pln": ["(: cnet_isa_4009efc555 (IsA camshaft rotating_shaft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "camwood is a kind of tree", "pln": ["(: cnet_isa_8a1cac5475 (IsA camwood tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "can is a kind of container", "pln": ["(: cnet_isa_0fe38f3bf5 (IsA can container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "can is a kind of buoy", "pln": ["(: cnet_isa_ab591050ba (IsA can buoy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "can is a kind of containerful", "pln": ["(: cnet_isa_7f17a7b2af (IsA can containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "can of worm is a kind of trouble", "pln": ["(: cnet_isa_e2d3c817d1 (IsA can_of_worm trouble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "can opener is a kind of opener", "pln": ["(: cnet_isa_8bbc4bcabc (IsA can_opener opener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canaanite is a kind of canaanitic", "pln": ["(: cnet_isa_a4e4463673 (IsA canaanite canaanitic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canaanite is a kind of semite", "pln": ["(: cnet_isa_a78fe160fb (IsA canaanite semite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canaanitic is a kind of semitic", "pln": ["(: cnet_isa_c3f856c7d3 (IsA canaanitic semitic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canachite is a kind of bird genus", "pln": ["(: cnet_isa_019a42034c (IsA canachite bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canada is a kind of country", "pln": ["(: cnet_isa_9e9c3534e9 (IsA canada country) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canada is a kind of country in north america", "pln": ["(: cnet_isa_d0e545ad3d (IsA canada country_in_north_america) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canada is a kind of in north america", "pln": ["(: cnet_isa_6558ec21e5 (IsA canada in_north_america) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canada is a kind of independent country", "pln": ["(: cnet_isa_8c2fae65ca (IsA canada independent_country) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canada is a kind of large country with cold winter", "pln": ["(: cnet_isa_a02a15c865 (IsA canada large_country_with_cold_winter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "canada anemone is a kind of anemone", "pln": ["(: cnet_isa_4153720285 (IsA canada_anemone anemone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canada balsam is a kind of oleoresin", "pln": ["(: cnet_isa_2e302b7900 (IsA canada_balsam oleoresin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canada garlic is a kind of alliaceous plant", "pln": ["(: cnet_isa_aa6aa5af60 (IsA canada_garlic alliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canada ginger is a kind of wild ginger", "pln": ["(: cnet_isa_c43d0a4e72 (IsA canada_ginger wild_ginger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canada jay is a kind of jay", "pln": ["(: cnet_isa_a7006320c6 (IsA canada_jay jay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canada lily is a kind of lily", "pln": ["(: cnet_isa_9ff4fde8ec (IsA canada_lily lily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canada lynx is a kind of lynx", "pln": ["(: cnet_isa_a54344ecda (IsA canada_lynx lynx) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canada plum is a kind of plum", "pln": ["(: cnet_isa_3483503334 (IsA canada_plum plum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canada porcupine is a kind of new world porcupine", "pln": ["(: cnet_isa_5f8455e5bf (IsA canada_porcupine new_world_porcupine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canada thistle is a kind of plume thistle", "pln": ["(: cnet_isa_ad3e600a79 (IsA canada_thistle plume_thistle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canada violet is a kind of violet", "pln": ["(: cnet_isa_0f36a614c1 (IsA canada_violet violet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canada wild rye is a kind of wild rye", "pln": ["(: cnet_isa_bf64f4b45d (IsA canada_wild_rye wild_rye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canadian is a kind of north american", "pln": ["(: cnet_isa_add49022eb (IsA canadian north_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "canadian aspen is a kind of aspen", "pln": ["(: cnet_isa_83c2525460 (IsA canadian_aspen aspen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canadian bacon is a kind of bacon", "pln": ["(: cnet_isa_e99844de15 (IsA canadian_bacon bacon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canadian dollar is a kind of dollar", "pln": ["(: cnet_isa_3480403176 (IsA canadian_dollar dollar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canadian french is a kind of french", "pln": ["(: cnet_isa_d3ee56beb1 (IsA canadian_french french) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canadian hemlock is a kind of plant", "pln": ["(: cnet_isa_908281802a (IsA canadian_hemlock plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canadian pondweed is a kind of waterweed", "pln": ["(: cnet_isa_c89cc4c669 (IsA canadian_pondweed waterweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "canadian province is a kind of state", "pln": ["(: cnet_isa_f96bd97f46 (IsA canadian_province state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canadian security intelligence service is a kind of international intelligence agency", "pln": ["(: cnet_isa_018e6524c9 (IsA canadian_security_intelligence_service international_intelligence_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canal is a kind of watercourse", "pln": ["(: cnet_isa_d74b166bc3 (IsA canal watercourse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canal is a kind of channel", "pln": ["(: cnet_isa_479a66f4c8 (IsA canal channel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canal boat is a kind of boat", "pln": ["(: cnet_isa_79338a9170 (IsA canal_boat boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canal of schlemm is a kind of duct", "pln": ["(: cnet_isa_dea4cd031c (IsA canal_of_schlemm duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canaliculus is a kind of duct", "pln": ["(: cnet_isa_0bfe0ec908 (IsA canaliculus duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canalization is a kind of production", "pln": ["(: cnet_isa_d7f8f2c949 (IsA canalization production) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cananga is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_8136a0594a (IsA cananga magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canape is a kind of appetizer", "pln": ["(: cnet_isa_8f0c5a7b36 (IsA canape appetizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canard is a kind of fabrication", "pln": ["(: cnet_isa_bc2b2fe63a (IsA canard fabrication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canarese is a kind of dravidian", "pln": ["(: cnet_isa_1c55d73353 (IsA canarese dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "canary is a kind of finch", "pln": ["(: cnet_isa_146528ab33 (IsA canary finch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canary is a kind of singer", "pln": ["(: cnet_isa_06a834ca24 (IsA canary singer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canary grass is a kind of grass", "pln": ["(: cnet_isa_7187b0d724 (IsA canary_grass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canary island hare s foot fern is a kind of hare s foot fern", "pln": ["(: cnet_isa_d641a97ad5 (IsA canary_island_hare_s_foot_fern hare_s_foot_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canary seed is a kind of bird food", "pln": ["(: cnet_isa_837f9976a6 (IsA canary_seed bird_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canary wine is a kind of white wine", "pln": ["(: cnet_isa_fc5c804dd2 (IsA canary_wine white_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canary yellow is a kind of yellow", "pln": ["(: cnet_isa_d8553a4d43 (IsA canary_yellow yellow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canarybird flower is a kind of nasturtium", "pln": ["(: cnet_isa_29653ef56e (IsA canarybird_flower nasturtium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canasta is a kind of rummy", "pln": ["(: cnet_isa_ed3ac8359e (IsA canasta rummy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canavalia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_7071c8729b (IsA canavalia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canavanine is a kind of amino acid", "pln": ["(: cnet_isa_d36f44dca4 (IsA canavanine amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cancan is a kind of stage dancing", "pln": ["(: cnet_isa_8e1a96173c (IsA cancan stage_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cancellation is a kind of nullification", "pln": ["(: cnet_isa_c6f5a58df1 (IsA cancellation nullification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cancellation is a kind of negation", "pln": ["(: cnet_isa_8ed37ddb62 (IsA cancellation negation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cancer is a kind of disease", "pln": ["(: cnet_isa_06a0a97d2f (IsA cancer disease) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cancer is a kind of arthropod genus", "pln": ["(: cnet_isa_980522399c (IsA cancer arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cancer is a kind of malignant tumor", "pln": ["(: cnet_isa_8a76efeea7 (IsA cancer malignant_tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cancer cell is a kind of neoplastic cell", "pln": ["(: cnet_isa_0420933a80 (IsA cancer_cell neoplastic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cancer juice is a kind of juice", "pln": ["(: cnet_isa_4be7fda010 (IsA cancer_juice juice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cancerweed is a kind of sage", "pln": ["(: cnet_isa_fc6905b586 (IsA cancerweed sage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cancridae is a kind of arthropod family", "pln": ["(: cnet_isa_5aa15d13a9 (IsA cancridae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cancroid is a kind of skin cancer", "pln": ["(: cnet_isa_e00c160b76 (IsA cancroid skin_cancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candelabrum is a kind of candlestick", "pln": ["(: cnet_isa_b47f33fdf9 (IsA candelabrum candlestick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candelilla is a kind of slipper spurge", "pln": ["(: cnet_isa_da2665788c (IsA candelilla slipper_spurge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candelilla is a kind of spurge", "pln": ["(: cnet_isa_a4d066166e (IsA candelilla spurge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "candelilla wax is a kind of wax", "pln": ["(: cnet_isa_20d7bb5fb5 (IsA candelilla_wax wax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candid camera is a kind of camera", "pln": ["(: cnet_isa_b97ff39d08 (IsA candid_camera camera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "candida is a kind of fungus", "pln": ["(: cnet_isa_1f1d8b0290 (IsA candida fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candida albican is a kind of candida", "pln": ["(: cnet_isa_f7d42c282e (IsA candida_albican candida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candidate is a kind of person", "pln": ["(: cnet_isa_090a7a5bf7 (IsA candidate person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candidiasis is a kind of fungal infection", "pln": ["(: cnet_isa_93f0033d82 (IsA candidiasis fungal_infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candied apple is a kind of sweet", "pln": ["(: cnet_isa_96b3b7d37a (IsA candied_apple sweet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candied citrus peel is a kind of candied fruit", "pln": ["(: cnet_isa_bada8d6570 (IsA candied_citrus_peel candied_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candied fruit is a kind of confiture", "pln": ["(: cnet_isa_62f36c7fed (IsA candied_fruit confiture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "candle is a kind of lamp", "pln": ["(: cnet_isa_888291eaab (IsA candle lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candle is a kind of luminous intensity unit", "pln": ["(: cnet_isa_d7aafb550d (IsA candle luminous_intensity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candlelight is a kind of light", "pln": ["(: cnet_isa_138f5dae15 (IsA candlelight light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candlemaker is a kind of chandler", "pln": ["(: cnet_isa_ad8f09c308 (IsA candlemaker chandler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candlema is a kind of quarter day", "pln": ["(: cnet_isa_2a1f23dbf9 (IsA candlema quarter_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candlenut is a kind of angiospermous tree", "pln": ["(: cnet_isa_121ca8c030 (IsA candlenut angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candlenut is a kind of oilseed", "pln": ["(: cnet_isa_64cb63e1cd (IsA candlenut oilseed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candlepin is a kind of bowling pin", "pln": ["(: cnet_isa_e2bacdf630 (IsA candlepin bowling_pin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candlepin is a kind of bowling", "pln": ["(: cnet_isa_8439cbc7b8 (IsA candlepin bowling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candlepower is a kind of intensity", "pln": ["(: cnet_isa_84a04af316 (IsA candlepower intensity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candlesnuffer is a kind of implement", "pln": ["(: cnet_isa_3bd23e4ea7 (IsA candlesnuffer implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candlestick is a kind of holder", "pln": ["(: cnet_isa_a14d040b8a (IsA candlestick holder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candlewick is a kind of embroidery", "pln": ["(: cnet_isa_182a12a69e (IsA candlewick embroidery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candlewick is a kind of wick", "pln": ["(: cnet_isa_25309e5ae6 (IsA candlewick wick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candlewood is a kind of shrub", "pln": ["(: cnet_isa_3d7f1d7fce (IsA candlewood shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candor is a kind of honesty", "pln": ["(: cnet_isa_586dcc565e (IsA candor honesty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candy is a kind of sweet", "pln": ["(: cnet_isa_8614ae0bdb (IsA candy sweet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candy bar is a kind of candy", "pln": ["(: cnet_isa_93099c0794 (IsA candy_bar candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candy cane is a kind of candy", "pln": ["(: cnet_isa_81e0a71deb (IsA candy_cane candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "candy corn is a kind of candy", "pln": ["(: cnet_isa_bf0868b3b2 (IsA candy_corn candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candy egg is a kind of easter egg", "pln": ["(: cnet_isa_e2a5785920 (IsA candy_egg easter_egg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candy striper is a kind of volunteer", "pln": ["(: cnet_isa_a4230b6b47 (IsA candy_striper volunteer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candy thermometer is a kind of thermometer", "pln": ["(: cnet_isa_23feb3e1da (IsA candy_thermometer thermometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "candytuft is a kind of flower", "pln": ["(: cnet_isa_2327725d14 (IsA candytuft flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cane is a kind of switch", "pln": ["(: cnet_isa_58144df86c (IsA cane switch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cane is a kind of walking stick", "pln": ["(: cnet_isa_778ff09458 (IsA cane walking_stick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cane is a kind of stalk", "pln": ["(: cnet_isa_b6a8c59e07 (IsA cane stalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cane blight is a kind of blight", "pln": ["(: cnet_isa_c372941060 (IsA cane_blight blight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cane sugar is a kind of sugar", "pln": ["(: cnet_isa_092cd6673a (IsA cane_sugar sugar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cane sugar is a kind of carbohydrate", "pln": ["(: cnet_isa_97a463e0d9 (IsA cane_sugar carbohydrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canebrake is a kind of brush", "pln": ["(: cnet_isa_b226e2b748 (IsA canebrake brush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canebrake rattlesnake is a kind of timber rattlesnake", "pln": ["(: cnet_isa_4ee4060939 (IsA canebrake_rattlesnake timber_rattlesnake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canella is a kind of bark", "pln": ["(: cnet_isa_1f0130ed21 (IsA canella bark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canellaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_15ba3bb409 (IsA canellaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canfield is a kind of solitaire", "pln": ["(: cnet_isa_18d111835e (IsA canfield solitaire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cangue is a kind of instrument of punishment", "pln": ["(: cnet_isa_c5bc6f172c (IsA cangue instrument_of_punishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canicola fever is a kind of swamp fever", "pln": ["(: cnet_isa_655769a091 (IsA canicola_fever swamp_fever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canidae is a kind of mammal family", "pln": ["(: cnet_isa_279e53bdec (IsA canidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canine is a kind of carnivore", "pln": ["(: cnet_isa_594e0ab218 (IsA canine carnivore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canine is a kind of tooth", "pln": ["(: cnet_isa_974a5180db (IsA canine tooth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canine chorea is a kind of animal disease", "pln": ["(: cnet_isa_d1cd35c962 (IsA canine_chorea animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canine distemper is a kind of distemper", "pln": ["(: cnet_isa_2799446e1d (IsA canine_distemper distemper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canis is a kind of mammal genus", "pln": ["(: cnet_isa_ad9900efa3 (IsA canis mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canistel is a kind of edible fruit", "pln": ["(: cnet_isa_3ed9d717cc (IsA canistel edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canistel is a kind of fruit tree", "pln": ["(: cnet_isa_65a85008ad (IsA canistel fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canister is a kind of container", "pln": ["(: cnet_isa_c579ac963c (IsA canister container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canker is a kind of plant disease", "pln": ["(: cnet_isa_20fb3a5f0a (IsA canker plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canker is a kind of ulcer", "pln": ["(: cnet_isa_3e2f0fee3b (IsA canker ulcer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cankerworm is a kind of caterpillar", "pln": ["(: cnet_isa_1b5ce5c0f6 (IsA cankerworm caterpillar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canna is a kind of herb", "pln": ["(: cnet_isa_57e6df9ddb (IsA canna herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canna lily is a kind of canna", "pln": ["(: cnet_isa_52ad13828e (IsA canna_lily canna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cannabidaceae is a kind of dicot family", "pln": ["(: cnet_isa_e6378b97f5 (IsA cannabidaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cannabin is a kind of natural resin", "pln": ["(: cnet_isa_45dc33c497 (IsA cannabin natural_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cannabis is a kind of plant", "pln": ["(: cnet_isa_7e18190273 (IsA cannabis plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cannabis is a kind of controlled substance", "pln": ["(: cnet_isa_f76b781ae9 (IsA cannabis controlled_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cannabis is a kind of soft drug", "pln": ["(: cnet_isa_7863ea8026 (IsA cannabis soft_drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cannabis is a kind of shrub", "pln": ["(: cnet_isa_2ded326afa (IsA cannabis shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cannaceae is a kind of monocot family", "pln": ["(: cnet_isa_3a0185d013 (IsA cannaceae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canned food is a kind of foodstuff", "pln": ["(: cnet_isa_05220124be (IsA canned_food foodstuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canned hunt is a kind of hunt", "pln": ["(: cnet_isa_49c4377249 (IsA canned_hunt hunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canned meat is a kind of canned food", "pln": ["(: cnet_isa_08c2b1b3f5 (IsA canned_meat canned_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cannel coal is a kind of bituminous coal", "pln": ["(: cnet_isa_b4cdba3a80 (IsA cannel_coal bituminous_coal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cannelloni is a kind of pasta", "pln": ["(: cnet_isa_ed563f6e91 (IsA cannelloni pasta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cannery is a kind of factory", "pln": ["(: cnet_isa_355a5e3b7a (IsA cannery factory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cannibal is a kind of savage", "pln": ["(: cnet_isa_625c46af5e (IsA cannibal savage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cannibalism is a kind of practice", "pln": ["(: cnet_isa_5fa3e28909 (IsA cannibalism practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cannikin is a kind of bucket", "pln": ["(: cnet_isa_d334330e0a (IsA cannikin bucket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cannikin is a kind of can", "pln": ["(: cnet_isa_1c1431d68b (IsA cannikin can) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cannon is a kind of weapon", "pln": ["(: cnet_isa_48faacada1 (IsA cannon weapon) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cannon is a kind of body part", "pln": ["(: cnet_isa_c896d3dcec (IsA cannon body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cannon is a kind of artillery", "pln": ["(: cnet_isa_cd72b245c2 (IsA cannon artillery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cannon is a kind of gun", "pln": ["(: cnet_isa_65aa5b06bf (IsA cannon gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cannon is a kind of armor plate", "pln": ["(: cnet_isa_84386979cc (IsA cannon armor_plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cannon bone is a kind of bone", "pln": ["(: cnet_isa_5dc1aa7fc4 (IsA cannon_bone bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cannon cracker is a kind of firecracker", "pln": ["(: cnet_isa_5095d637bc (IsA cannon_cracker firecracker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cannon fodder is a kind of soldier", "pln": ["(: cnet_isa_9dde95f5e1 (IsA cannon_fodder soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cannonade is a kind of artillery fire", "pln": ["(: cnet_isa_b0a5001503 (IsA cannonade artillery_fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cannonball is a kind of projectile", "pln": ["(: cnet_isa_39524f0702 (IsA cannonball projectile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cannula is a kind of tube", "pln": ["(: cnet_isa_f7f9720afc (IsA cannula tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cannulation is a kind of insertion", "pln": ["(: cnet_isa_a88c884dbe (IsA cannulation insertion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "canoe is a kind of vehicle", "pln": ["(: cnet_isa_9022b67121 (IsA canoe vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "canoe is a kind of small boat", "pln": ["(: cnet_isa_6d7acf1aa9 (IsA canoe small_boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canoeing is a kind of great exercise for arm", "pln": ["(: cnet_isa_bc85e6c344 (IsA canoeing great_exercise_for_arm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canoeist is a kind of boatman", "pln": ["(: cnet_isa_e49b300c4b (IsA canoeist boatman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "canola oil is a kind of vegetable oil", "pln": ["(: cnet_isa_3430e9b72f (IsA canola_oil vegetable_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canon is a kind of list", "pln": ["(: cnet_isa_1bcac22f26 (IsA canon list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canon is a kind of musical composition", "pln": ["(: cnet_isa_0de1c48302 (IsA canon musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canon is a kind of rule", "pln": ["(: cnet_isa_ffc4d0b766 (IsA canon rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canon is a kind of scripture", "pln": ["(: cnet_isa_283814267d (IsA canon scripture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canon is a kind of priest", "pln": ["(: cnet_isa_1f9a074bc1 (IsA canon priest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canon law is a kind of law", "pln": ["(: cnet_isa_d86fc6d929 (IsA canon_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canonical hour is a kind of hour", "pln": ["(: cnet_isa_5e38ae41dd (IsA canonical_hour hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canonist is a kind of specialist", "pln": ["(: cnet_isa_e36b4332b4 (IsA canonist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canonization is a kind of sanctification", "pln": ["(: cnet_isa_b6260d7825 (IsA canonization sanctification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canopic jar is a kind of jar", "pln": ["(: cnet_isa_2d27a53b95 (IsA canopic_jar jar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canopy is a kind of covering", "pln": ["(: cnet_isa_de855eb7b6 (IsA canopy covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canopy is a kind of fabric", "pln": ["(: cnet_isa_68873041c4 (IsA canopy fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canopy is a kind of shelter", "pln": ["(: cnet_isa_630f568611 (IsA canopy shelter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cant is a kind of non standard speech", "pln": ["(: cnet_isa_fb4e191f42 (IsA cant non_standard_speech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cant is a kind of talk", "pln": ["(: cnet_isa_10b3595757 (IsA cant talk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cant hook is a kind of peavey", "pln": ["(: cnet_isa_ee54138beb (IsA cant_hook peavey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cantabrigian is a kind of english person", "pln": ["(: cnet_isa_f259a99dfb (IsA cantabrigian english_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cantala is a kind of fiber", "pln": ["(: cnet_isa_dc5d3670be (IsA cantala fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cantaloup is a kind of muskmelon", "pln": ["(: cnet_isa_9493a7a150 (IsA cantaloup muskmelon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cantaloupe is a kind of sweet melon", "pln": ["(: cnet_isa_256bea7294 (IsA cantaloupe sweet_melon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cantata is a kind of classical music", "pln": ["(: cnet_isa_a10d16199d (IsA cantata classical_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canteen is a kind of flask", "pln": ["(: cnet_isa_ed59222f64 (IsA canteen flask) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canteen is a kind of recreation room", "pln": ["(: cnet_isa_9aefe835fa (IsA canteen recreation_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canteen is a kind of restaurant", "pln": ["(: cnet_isa_b55e6fef9f (IsA canteen restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canteen is a kind of shop", "pln": ["(: cnet_isa_15b39c403c (IsA canteen shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canter is a kind of gait", "pln": ["(: cnet_isa_c70f873e8e (IsA canter gait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canterbury bell is a kind of campanula", "pln": ["(: cnet_isa_5a2e97035f (IsA canterbury_bell campanula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canterbury bell is a kind of gloxinia", "pln": ["(: cnet_isa_d86dbb1fe5 (IsA canterbury_bell gloxinia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cantharellus is a kind of fungus genus", "pln": ["(: cnet_isa_10d8a320a4 (IsA cantharellus fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canthus is a kind of corner", "pln": ["(: cnet_isa_6e49040709 (IsA canthus corner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canticle is a kind of hymn", "pln": ["(: cnet_isa_f584e79697 (IsA canticle hymn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cantilever is a kind of beam", "pln": ["(: cnet_isa_b2bcd1f18a (IsA cantilever beam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cantilever bridge is a kind of bridge", "pln": ["(: cnet_isa_7c0410e7ff (IsA cantilever_bridge bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cantillation is a kind of intonation", "pln": ["(: cnet_isa_8607dd1f14 (IsA cantillation intonation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cantle is a kind of back", "pln": ["(: cnet_isa_85e51ed42f (IsA cantle back) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canto is a kind of section", "pln": ["(: cnet_isa_7b800aaff0 (IsA canto section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canto is a kind of voice part", "pln": ["(: cnet_isa_0d9c6e0f4b (IsA canto voice_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "canton crepe is a kind of crepe", "pln": ["(: cnet_isa_c19b37f677 (IsA canton_crepe crepe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cantor is a kind of spiritual leader", "pln": ["(: cnet_isa_e14f94e09c (IsA cantor spiritual_leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cantus firmus is a kind of chant", "pln": ["(: cnet_isa_c03db5ef21 (IsA cantus_firmus chant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canuck is a kind of french canadian", "pln": ["(: cnet_isa_3b24037d73 (IsA canuck french_canadian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canva is a kind of fabric", "pln": ["(: cnet_isa_938f07670e (IsA canva fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canva is a kind of mat", "pln": ["(: cnet_isa_90ef2bcb8b (IsA canva mat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canva is a kind of oil painting", "pln": ["(: cnet_isa_aef76d1e97 (IsA canva oil_painting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canva is a kind of setting", "pln": ["(: cnet_isa_28fa9cb78c (IsA canva setting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canva tent is a kind of tent", "pln": ["(: cnet_isa_5b49076f18 (IsA canva_tent tent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canvasback is a kind of duck", "pln": ["(: cnet_isa_f8e47ee82c (IsA canvasback duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canvasser is a kind of teller", "pln": ["(: cnet_isa_6105fa8a20 (IsA canvasser teller) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canyon is a kind of ravine", "pln": ["(: cnet_isa_f217f3cbf7 (IsA canyon ravine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canyon oak is a kind of live oak", "pln": ["(: cnet_isa_6eb7e01c99 (IsA canyon_oak live_oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "canyon treefrog is a kind of tree toad", "pln": ["(: cnet_isa_e32329eaf9 (IsA canyon_treefrog tree_toad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "canyonside is a kind of slope", "pln": ["(: cnet_isa_433c86c89a (IsA canyonside slope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cap is a kind of headdress", "pln": ["(: cnet_isa_f89beec5e5 (IsA cap headdress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cap is a kind of protective covering", "pln": ["(: cnet_isa_3c3c513b03 (IsA cap protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cap is a kind of top", "pln": ["(: cnet_isa_4c34683812 (IsA cap top) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cap is a kind of plant part", "pln": ["(: cnet_isa_e2955bd1da (IsA cap plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cap opener is a kind of bottle opener", "pln": ["(: cnet_isa_d32c3d65f7 (IsA cap_opener bottle_opener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cap screw is a kind of screw", "pln": ["(: cnet_isa_afb2f5c626 (IsA cap_screw screw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capability is a kind of ability", "pln": ["(: cnet_isa_061b0731f0 (IsA capability ability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capability is a kind of aptitude", "pln": ["(: cnet_isa_f30042242c (IsA capability aptitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capability is a kind of susceptibility", "pln": ["(: cnet_isa_fed50f9048 (IsA capability susceptibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capaciousness is a kind of largeness", "pln": ["(: cnet_isa_74514abd07 (IsA capaciousness largeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capacitance is a kind of electrical phenomenon", "pln": ["(: cnet_isa_b81aecfe2c (IsA capacitance electrical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capacitance unit is a kind of electromagnetic unit", "pln": ["(: cnet_isa_1a08c0a21e (IsA capacitance_unit electromagnetic_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capacitor is a kind of electrical device", "pln": ["(: cnet_isa_ec04e8755f (IsA capacitor electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capacity is a kind of function", "pln": ["(: cnet_isa_accc539dc1 (IsA capacity function) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capacity is a kind of production", "pln": ["(: cnet_isa_30db4a316e (IsA capacity production) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capacity is a kind of capability", "pln": ["(: cnet_isa_e2f66db24e (IsA capacity capability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capacity is a kind of tolerance", "pln": ["(: cnet_isa_ee6f192194 (IsA capacity tolerance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "capacity is a kind of ability", "pln": ["(: cnet_isa_eb494642fb (IsA capacity ability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capacity is a kind of indefinite quantity", "pln": ["(: cnet_isa_b403b875a0 (IsA capacity indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capacity is a kind of volume", "pln": ["(: cnet_isa_70b26ea946 (IsA capacity volume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caparison is a kind of stable gear", "pln": ["(: cnet_isa_4f06501a25 (IsA caparison stable_gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cape is a kind of cloak", "pln": ["(: cnet_isa_e0027dc79f (IsA cape cloak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cape is a kind of land", "pln": ["(: cnet_isa_414ccf700e (IsA cape land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cape aloe is a kind of aloe", "pln": ["(: cnet_isa_fff0bfc0c7 (IsA cape_aloe aloe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cape buffalo is a kind of old world buffalo", "pln": ["(: cnet_isa_62bbcd385a (IsA cape_buffalo old_world_buffalo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cape forget me not is a kind of anchusa", "pln": ["(: cnet_isa_bc770fe4a6 (IsA cape_forget_me_not anchusa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cape gooseberry is a kind of ground cherry", "pln": ["(: cnet_isa_9adf435e25 (IsA cape_gooseberry ground_cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cape jasmine is a kind of gardenia", "pln": ["(: cnet_isa_f07e831498 (IsA cape_jasmine gardenia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cape lobster is a kind of true lobster", "pln": ["(: cnet_isa_0c288902c6 (IsA cape_lobster true_lobster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cape marigold is a kind of flower", "pln": ["(: cnet_isa_acd2ab0208 (IsA cape_marigold flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cape may warbler is a kind of new world warbler", "pln": ["(: cnet_isa_36c6fcea06 (IsA cape_may_warbler new_world_warbler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cape primrose is a kind of streptocarpus", "pln": ["(: cnet_isa_cec567988c (IsA cape_primrose streptocarpus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cape tulip is a kind of blood lily", "pln": ["(: cnet_isa_98bf4daace (IsA cape_tulip blood_lily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cape verde escudo is a kind of cape verde monetary unit", "pln": ["(: cnet_isa_ba28054696 (IsA cape_verde_escudo cape_verde_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cape verde monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_c9cb46bca3 (IsA cape_verde_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cape yellowwood is a kind of conifer", "pln": ["(: cnet_isa_5f0473fbb1 (IsA cape_yellowwood conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capelin is a kind of smelt", "pln": ["(: cnet_isa_05b3f13c19 (IsA capelin smelt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "capeline bandage is a kind of bandage", "pln": ["(: cnet_isa_6e741c877a (IsA capeline_bandage bandage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caper is a kind of leap", "pln": ["(: cnet_isa_328063dcf6 (IsA caper leap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caper is a kind of robbery", "pln": ["(: cnet_isa_39e4e7d5ec (IsA caper robbery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caper is a kind of pickle", "pln": ["(: cnet_isa_a03597c6be (IsA caper pickle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caper is a kind of shrub", "pln": ["(: cnet_isa_a062e0d6b6 (IsA caper shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "caper sauce is a kind of sauce", "pln": ["(: cnet_isa_9a9573edd7 (IsA caper_sauce sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caper spurge is a kind of spurge", "pln": ["(: cnet_isa_1f775bef45 (IsA caper_spurge spurge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caper tree is a kind of caper", "pln": ["(: cnet_isa_629f4f6b2c (IsA caper_tree caper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capercaillie is a kind of grouse", "pln": ["(: cnet_isa_0cc0b203ae (IsA capercaillie grouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capetian is a kind of sovereign", "pln": ["(: cnet_isa_3e5ac98d8e (IsA capetian sovereign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capetian dynasty is a kind of dynasty", "pln": ["(: cnet_isa_1b6a8f3b20 (IsA capetian_dynasty dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "capful is a kind of containerful", "pln": ["(: cnet_isa_26d8d72e44 (IsA capful containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "capital is a kind of assets", "pln": ["(: cnet_isa_f16005a29b (IsA capital assets) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capillarity is a kind of surface tension", "pln": ["(: cnet_isa_af29052137 (IsA capillarity surface_tension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capillary is a kind of tube", "pln": ["(: cnet_isa_546709c835 (IsA capillary tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capillary is a kind of blood vessel", "pln": ["(: cnet_isa_17f3a68786 (IsA capillary blood_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capillary bed is a kind of animal tissue", "pln": ["(: cnet_isa_b139eb8d56 (IsA capillary_bed animal_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capital is a kind of top", "pln": ["(: cnet_isa_1e33f9271a (IsA capital top) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capital is a kind of character", "pln": ["(: cnet_isa_7ad0b0b50c (IsA capital character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capital is a kind of center", "pln": ["(: cnet_isa_8484ee08ed (IsA capital center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capital is a kind of seat", "pln": ["(: cnet_isa_b671aa0f47 (IsA capital seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capital is a kind of asset", "pln": ["(: cnet_isa_15f7d9218e (IsA capital asset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capital account is a kind of account", "pln": ["(: cnet_isa_729189dfb4 (IsA capital_account account) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capital city of nevada is a kind of carson city", "pln": ["(: cnet_isa_b6881fcfe7 (IsA capital_city_of_nevada carson_city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capital expenditure is a kind of cost", "pln": ["(: cnet_isa_c9f9708df2 (IsA capital_expenditure cost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capital gain is a kind of financial gain", "pln": ["(: cnet_isa_f34c02038a (IsA capital_gain financial_gain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capital gain tax is a kind of tax", "pln": ["(: cnet_isa_c2a689d7ff (IsA capital_gain_tax tax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "capital levy is a kind of tax", "pln": ["(: cnet_isa_9029c38ae1 (IsA capital_levy tax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capital loss is a kind of financial loss", "pln": ["(: cnet_isa_7cff7e3847 (IsA capital_loss financial_loss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capital of djibouti is a kind of djibouti", "pln": ["(: cnet_isa_fb9864873c (IsA capital_of_djibouti djibouti) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capital of netherland is a kind of amsterdam", "pln": ["(: cnet_isa_2b03126e90 (IsA capital_of_netherland amsterdam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capital offense is a kind of crime", "pln": ["(: cnet_isa_055682d843 (IsA capital_offense crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capital ship is a kind of warship", "pln": ["(: cnet_isa_5c2448b516 (IsA capital_ship warship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capital stock is a kind of book value", "pln": ["(: cnet_isa_91f228bace (IsA capital_stock book_value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capitalism is a kind of market economy", "pln": ["(: cnet_isa_16097c49bf (IsA capitalism market_economy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capitalist is a kind of person", "pln": ["(: cnet_isa_9bb70088f8 (IsA capitalist person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capitalist is a kind of conservative", "pln": ["(: cnet_isa_a84110d43e (IsA capitalist conservative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capitalization is a kind of estimate", "pln": ["(: cnet_isa_2b0e107b71 (IsA capitalization estimate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capitalization is a kind of exploitation", "pln": ["(: cnet_isa_ac686304cb (IsA capitalization exploitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capitalization is a kind of selling", "pln": ["(: cnet_isa_a98db53f53 (IsA capitalization selling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capitalization is a kind of writing", "pln": ["(: cnet_isa_4fd222a429 (IsA capitalization writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capitate is a kind of carpal bone", "pln": ["(: cnet_isa_b5e576e024 (IsA capitate carpal_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capitation is a kind of tax", "pln": ["(: cnet_isa_b4f97d56af (IsA capitation tax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capitol is a kind of government building", "pln": ["(: cnet_isa_f2ff03f24e (IsA capitol government_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capitonidae is a kind of bird family", "pln": ["(: cnet_isa_9224c7bd47 (IsA capitonidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capitulation is a kind of loss", "pln": ["(: cnet_isa_eacf0bbfb5 (IsA capitulation loss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "capitulation is a kind of document", "pln": ["(: cnet_isa_4243b117a8 (IsA capitulation document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capitulation is a kind of summary", "pln": ["(: cnet_isa_f36a62f67b (IsA capitulation summary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capitulum is a kind of crown", "pln": ["(: cnet_isa_b89dcfa696 (IsA capitulum crown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capitulum is a kind of plant organ", "pln": ["(: cnet_isa_fce39ec51d (IsA capitulum plant_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capo is a kind of head", "pln": ["(: cnet_isa_57f98855f6 (IsA capo head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capon is a kind of chicken", "pln": ["(: cnet_isa_8115b8d3f9 (IsA capon chicken) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capote is a kind of cloak", "pln": ["(: cnet_isa_3e8714b0eb (IsA capote cloak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capote is a kind of greatcoat", "pln": ["(: cnet_isa_8d01c61782 (IsA capote greatcoat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capparidaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_bd793771bd (IsA capparidaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capparis is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_8bcc5bc802 (IsA capparis dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cappella is a kind of music", "pln": ["(: cnet_isa_bb04c0b190 (IsA cappella music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cappella singing is a kind of singing", "pln": ["(: cnet_isa_9604fcd5c8 (IsA cappella_singing singing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cappuccino is a kind of drink", "pln": ["(: cnet_isa_2a02d94acf (IsA cappuccino drink) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cappuccino coffee is a kind of coffee", "pln": ["(: cnet_isa_58094ded06 (IsA cappuccino_coffee coffee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cappucino is a kind of coffee drink with frothed milk", "pln": ["(: cnet_isa_a668e3ee05 (IsA cappucino coffee_drink_with_frothed_milk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cappucino is a kind of italian invention", "pln": ["(: cnet_isa_696c147c27 (IsA cappucino italian_invention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cappucino is a kind of variety of coffee", "pln": ["(: cnet_isa_d4d1faaec3 (IsA cappucino variety_of_coffee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capra is a kind of mammal genus", "pln": ["(: cnet_isa_7b25d2825f (IsA capra mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caprella is a kind of arthropod genus", "pln": ["(: cnet_isa_42158b3193 (IsA caprella arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capreolus is a kind of mammal genus", "pln": ["(: cnet_isa_14d9ac31c6 (IsA capreolus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capric acid is a kind of saturated fatty acid", "pln": ["(: cnet_isa_4634e73fb5 (IsA capric_acid saturated_fatty_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capriccio is a kind of musical composition", "pln": ["(: cnet_isa_e9ba61c4fb (IsA capriccio musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caprice is a kind of desire", "pln": ["(: cnet_isa_b53b27b4c6 (IsA caprice desire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capriciousness is a kind of inconstancy", "pln": ["(: cnet_isa_e10295c209 (IsA capriciousness inconstancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capricornis is a kind of mammal genus", "pln": ["(: cnet_isa_4384197f4f (IsA capricornis mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caprifig is a kind of fig", "pln": ["(: cnet_isa_db3c9d7d1f (IsA caprifig fig) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caprifoliaceae is a kind of asterid dicot family", "pln": ["(: cnet_isa_4e25b2df70 (IsA caprifoliaceae asterid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caprimulgidae is a kind of bird family", "pln": ["(: cnet_isa_86f47edc09 (IsA caprimulgidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caprimulgiform bird is a kind of bird", "pln": ["(: cnet_isa_91c00d63cc (IsA caprimulgiform_bird bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caprimulgiforme is a kind of animal order", "pln": ["(: cnet_isa_17cb4a5142 (IsA caprimulgiforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caprimulgus is a kind of bird genus", "pln": ["(: cnet_isa_2c09066b14 (IsA caprimulgus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capriole is a kind of jump", "pln": ["(: cnet_isa_be9ba30137 (IsA capriole jump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caproic acid is a kind of saturated fatty acid", "pln": ["(: cnet_isa_20a1533167 (IsA caproic_acid saturated_fatty_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caproidae is a kind of fish family", "pln": ["(: cnet_isa_7dc36132b6 (IsA caproidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capromyidae is a kind of mammal family", "pln": ["(: cnet_isa_746851c76c (IsA capromyidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capro is a kind of fish genus", "pln": ["(: cnet_isa_6598413401 (IsA capro fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caprylic acid is a kind of saturated fatty acid", "pln": ["(: cnet_isa_58e8d0f3e5 (IsA caprylic_acid saturated_fatty_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capsaicin is a kind of chemical irritant", "pln": ["(: cnet_isa_189bd62286 (IsA capsaicin chemical_irritant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capsella is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_30eb3d06cf (IsA capsella dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "capsicum is a kind of shrub", "pln": ["(: cnet_isa_f79726a8ed (IsA capsicum shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capsid is a kind of protein", "pln": ["(: cnet_isa_3be1f5f6b8 (IsA capsid protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capsizing is a kind of shipwreck", "pln": ["(: cnet_isa_aeb8611203 (IsA capsizing shipwreck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "capstan is a kind of winch", "pln": ["(: cnet_isa_17eb98e40f (IsA capstan winch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capstone is a kind of stone", "pln": ["(: cnet_isa_f1c8b3ab27 (IsA capstone stone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capsule is a kind of container", "pln": ["(: cnet_isa_adc6d421dc (IsA capsule container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "capsule is a kind of pill", "pln": ["(: cnet_isa_e91382d290 (IsA capsule pill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capsule is a kind of structure", "pln": ["(: cnet_isa_21cbc0881f (IsA capsule structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capsule is a kind of pericarp", "pln": ["(: cnet_isa_d22519c368 (IsA capsule pericarp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "captain s chair is a kind of armchair", "pln": ["(: cnet_isa_e25fe2e41b (IsA captain_s_chair armchair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "captain is a kind of commissioned military officer", "pln": ["(: cnet_isa_79c7b37ff9 (IsA captain commissioned_military_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "captain is a kind of commissioned naval officer", "pln": ["(: cnet_isa_dbde661723 (IsA captain commissioned_naval_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "captain is a kind of dining room attendant", "pln": ["(: cnet_isa_645522d326 (IsA captain dining_room_attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "captain is a kind of leader", "pln": ["(: cnet_isa_3c6cbf8089 (IsA captain leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "captain is a kind of pilot", "pln": ["(: cnet_isa_e1c74e94a4 (IsA captain pilot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "captain is a kind of policeman", "pln": ["(: cnet_isa_5bcaac4c5a (IsA captain policeman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "captainship is a kind of position", "pln": ["(: cnet_isa_2868b29ef1 (IsA captainship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caption is a kind of exception", "pln": ["(: cnet_isa_7f1675130e (IsA caption exception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caption is a kind of title", "pln": ["(: cnet_isa_406fe60f32 (IsA caption title) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "captivation is a kind of liking", "pln": ["(: cnet_isa_210ce8fbc9 (IsA captivation liking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "captive is a kind of animal", "pln": ["(: cnet_isa_a598105629 (IsA captive animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "captive is a kind of emotional person", "pln": ["(: cnet_isa_c5b96fd491 (IsA captive emotional_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "captive finance company is a kind of finance company", "pln": ["(: cnet_isa_8399913151 (IsA captive_finance_company finance_company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "captivity is a kind of confinement", "pln": ["(: cnet_isa_9f4c748dd5 (IsA captivity confinement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "captor is a kind of person", "pln": ["(: cnet_isa_c2e6f93505 (IsA captor person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capture is a kind of acquiring", "pln": ["(: cnet_isa_7cde23ddce (IsA capture acquiring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capture is a kind of chess move", "pln": ["(: cnet_isa_798e46e13a (IsA capture chess_move) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "capture is a kind of felony", "pln": ["(: cnet_isa_82789c782c (IsA capture felony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "capture is a kind of natural process", "pln": ["(: cnet_isa_2566ccb73c (IsA capture natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capuchin is a kind of new world monkey", "pln": ["(: cnet_isa_b84fc1dd5b (IsA capuchin new_world_monkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capuchin is a kind of cloak", "pln": ["(: cnet_isa_d8a580ed54 (IsA capuchin cloak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capulin is a kind of cherry", "pln": ["(: cnet_isa_f1ec7c4374 (IsA capulin cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caput is a kind of bulge", "pln": ["(: cnet_isa_4876da57e3 (IsA caput bulge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "capybara is a kind of rodent", "pln": ["(: cnet_isa_f685845e00 (IsA capybara rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car is a kind of another name for automobile", "pln": ["(: cnet_isa_b49e6b81e2 (IsA car another_name_for_automobile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car is a kind of another word for automobile", "pln": ["(: cnet_isa_ec5b779708 (IsA car another_word_for_automobile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car is a kind of machine", "pln": ["(: cnet_isa_c32f42d706 (IsA car machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car is a kind of motor vehicle", "pln": ["(: cnet_isa_26f4e51b62 (IsA car motor_vehicle) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car is a kind of vehicle", "pln": ["(: cnet_isa_807602305d (IsA car vehicle) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car is a kind of compartment", "pln": ["(: cnet_isa_d46f7bfa4a (IsA car compartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car is a kind of wheeled vehicle", "pln": ["(: cnet_isa_6d79d12c80 (IsA car wheeled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car battery is a kind of lead acid battery", "pln": ["(: cnet_isa_8b240c15f0 (IsA car_battery lead_acid_battery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car bomb is a kind of bomb", "pln": ["(: cnet_isa_ac4df42580 (IsA car_bomb bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car boot sale is a kind of sale", "pln": ["(: cnet_isa_623d119549 (IsA car_boot_sale sale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car care is a kind of care", "pln": ["(: cnet_isa_0a4b50f99f (IsA car_care care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car carrier is a kind of trailer", "pln": ["(: cnet_isa_2d8ffd13ea (IsA car_carrier trailer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "car company is a kind of company", "pln": ["(: cnet_isa_f6140d1c99 (IsA car_company company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car crash is a kind of sudden deceleration", "pln": ["(: cnet_isa_da29173b47 (IsA car_crash sudden_deceleration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car dealer is a kind of dealer", "pln": ["(: cnet_isa_c22c9df545 (IsA car_dealer dealer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car door is a kind of door", "pln": ["(: cnet_isa_1d6b84a167 (IsA car_door door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car ferry is a kind of ferry", "pln": ["(: cnet_isa_25204ee3c9 (IsA car_ferry ferry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car jacking is a kind of crime", "pln": ["(: cnet_isa_550dd9040f (IsA car_jacking crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car manufacturer is a kind of manufacturer", "pln": ["(: cnet_isa_77ea226cac (IsA car_manufacturer manufacturer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car mirror is a kind of mirror", "pln": ["(: cnet_isa_b6b734e52d (IsA car_mirror mirror) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car park is a kind of place to park car", "pln": ["(: cnet_isa_3406f93114 (IsA car_park place_to_park_car) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car park is a kind of place where park car", "pln": ["(: cnet_isa_7c5ad85809 (IsA car_park place_where_park_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car pool is a kind of set", "pln": ["(: cnet_isa_66ef421728 (IsA car_pool set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car rental is a kind of lease", "pln": ["(: cnet_isa_3a2554dd70 (IsA car_rental lease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car seat is a kind of seat", "pln": ["(: cnet_isa_71890d5de8 (IsA car_seat seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car sickness is a kind of motion sickness", "pln": ["(: cnet_isa_a78acd2a21 (IsA car_sickness motion_sickness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car tire is a kind of tire", "pln": ["(: cnet_isa_fac314b4c5 (IsA car_tire tire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car train is a kind of train", "pln": ["(: cnet_isa_217f076214 (IsA car_train train) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car wheel is a kind of wheel", "pln": ["(: cnet_isa_d4daff18c7 (IsA car_wheel wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car window is a kind of window", "pln": ["(: cnet_isa_22ae40eefa (IsA car_window window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carabao is a kind of water buffalo", "pln": ["(: cnet_isa_bf15f544ad (IsA carabao water_buffalo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carabidae is a kind of arthropod family", "pln": ["(: cnet_isa_84160e980b (IsA carabidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carabineer is a kind of rifleman", "pln": ["(: cnet_isa_6eec852137 (IsA carabineer rifleman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carabiner is a kind of fastener", "pln": ["(: cnet_isa_ecbddabbf8 (IsA carabiner fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "carabiner is a kind of hoop", "pln": ["(: cnet_isa_c3a861e50d (IsA carabiner hoop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caracal is a kind of lynx", "pln": ["(: cnet_isa_4104c81852 (IsA caracal lynx) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caracara is a kind of falcon", "pln": ["(: cnet_isa_324209d4de (IsA caracara falcon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "caracolito is a kind of tree", "pln": ["(: cnet_isa_6b13f0c05b (IsA caracolito tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "carafe is a kind of bottle", "pln": ["(: cnet_isa_16b088232e (IsA carafe bottle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carambola is a kind of edible fruit", "pln": ["(: cnet_isa_ac6524b678 (IsA carambola edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carambola is a kind of fruit tree", "pln": ["(: cnet_isa_a96e92fbf2 (IsA carambola fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caramel is a kind of candy", "pln": ["(: cnet_isa_ec28117225 (IsA caramel candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caramel is a kind of sugar", "pln": ["(: cnet_isa_c7d14b18c5 (IsA caramel sugar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carancha is a kind of caracara", "pln": ["(: cnet_isa_5fe4282412 (IsA carancha caracara) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caranday is a kind of fan palm", "pln": ["(: cnet_isa_72ef748b92 (IsA caranday fan_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carangid fish is a kind of percoid fish", "pln": ["(: cnet_isa_992c37675a (IsA carangid_fish percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carangidae is a kind of fish family", "pln": ["(: cnet_isa_d81b8b41f4 (IsA carangidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caranx is a kind of fish genus", "pln": ["(: cnet_isa_c3f59cf2e5 (IsA caranx fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carapace is a kind of scute", "pln": ["(: cnet_isa_8bbe72b95c (IsA carapace scute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carapidae is a kind of fish family", "pln": ["(: cnet_isa_0abd150bc1 (IsA carapidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carassius is a kind of fish genus", "pln": ["(: cnet_isa_d24723ddc7 (IsA carassius fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carat is a kind of metric weight unit", "pln": ["(: cnet_isa_ccb275b668 (IsA carat metric_weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caravan is a kind of procession", "pln": ["(: cnet_isa_97858981b0 (IsA caravan procession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caravanning is a kind of vacationing", "pln": ["(: cnet_isa_ad1079a172 (IsA caravanning vacationing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caravansary is a kind of hostel", "pln": ["(: cnet_isa_66f7c9dd24 (IsA caravansary hostel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caraway is a kind of herb", "pln": ["(: cnet_isa_3c63592c74 (IsA caraway herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caraway seed is a kind of flavorer", "pln": ["(: cnet_isa_bd5bad62cf (IsA caraway_seed flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "caraway seed bread is a kind of bread", "pln": ["(: cnet_isa_bba32cb099 (IsA caraway_seed_bread bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbamate is a kind of salt", "pln": ["(: cnet_isa_e1e21dc7fb (IsA carbamate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "carbamic acid is a kind of acid", "pln": ["(: cnet_isa_5cf3d82108 (IsA carbamic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbide is a kind of inorganic compound", "pln": ["(: cnet_isa_390bdcfb33 (IsA carbide inorganic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbine is a kind of rifle", "pln": ["(: cnet_isa_61471a49ae (IsA carbine rifle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbohydrate is a kind of macromolecule", "pln": ["(: cnet_isa_f65a4f6140 (IsA carbohydrate macromolecule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbohydrate loading is a kind of diet", "pln": ["(: cnet_isa_b570635ff9 (IsA carbohydrate_loading diet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbolic acid is a kind of acid", "pln": ["(: cnet_isa_b93b3daf7a (IsA carbolic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "carbolic acid is a kind of solvent", "pln": ["(: cnet_isa_488229489b (IsA carbolic_acid solvent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbomycin is a kind of antibiotic", "pln": ["(: cnet_isa_9be1da72ce (IsA carbomycin antibiotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbon is a kind of element", "pln": ["(: cnet_isa_a6342156d3 (IsA carbon element) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbon is a kind of copy", "pln": ["(: cnet_isa_7198da19e5 (IsA carbon copy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "carbon is a kind of chemical element", "pln": ["(: cnet_isa_920617fad0 (IsA carbon chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbon arc lamp is a kind of arc lamp", "pln": ["(: cnet_isa_4c61a47d57 (IsA carbon_arc_lamp arc_lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbon atom is a kind of atom", "pln": ["(: cnet_isa_0a363cd7ca (IsA carbon_atom atom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbon black is a kind of carbon", "pln": ["(: cnet_isa_7d182651dd (IsA carbon_black carbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbon cycle is a kind of organic process", "pln": ["(: cnet_isa_ad0c8e02c8 (IsA carbon_cycle organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "carbon cycle is a kind of thermonuclear reaction", "pln": ["(: cnet_isa_290b45b5b3 (IsA carbon_cycle thermonuclear_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbon dioxide is a kind of greenhouse gas", "pln": ["(: cnet_isa_55a9279e64 (IsA carbon_dioxide greenhouse_gas) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "carbon dioxide is a kind of dioxide", "pln": ["(: cnet_isa_7c5cea6806 (IsA carbon_dioxide dioxide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbon disulfide is a kind of compound", "pln": ["(: cnet_isa_49dbee06d0 (IsA carbon_disulfide compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbon monoxide is a kind of monoxide", "pln": ["(: cnet_isa_25771a8bb4 (IsA carbon_monoxide monoxide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbon monoxide poisoning is a kind of poisoning", "pln": ["(: cnet_isa_7396c236d5 (IsA carbon_monoxide_poisoning poisoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbon nanotube is a kind of fullerene", "pln": ["(: cnet_isa_512c4248c2 (IsA carbon_nanotube fullerene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbon paper is a kind of paper", "pln": ["(: cnet_isa_86fa38a13d (IsA carbon_paper paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbon process is a kind of printing", "pln": ["(: cnet_isa_a7705aa43a (IsA carbon_process printing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbon steel is a kind of steel", "pln": ["(: cnet_isa_8ed77db28c (IsA carbon_steel steel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbon tetrachloride is a kind of solvent", "pln": ["(: cnet_isa_239203c3f7 (IsA carbon_tetrachloride solvent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbon tetrachloride is a kind of tetrachloride", "pln": ["(: cnet_isa_6386189361 (IsA carbon_tetrachloride tetrachloride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbon tetrahalide is a kind of chemical", "pln": ["(: cnet_isa_94b67ebdb0 (IsA carbon_tetrahalide chemical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbonado is a kind of meat", "pln": ["(: cnet_isa_a7dc553e7b (IsA carbonado meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbonado is a kind of diamond", "pln": ["(: cnet_isa_991a91f158 (IsA carbonado diamond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbonara is a kind of spaghetti sauce", "pln": ["(: cnet_isa_60cb8b2684 (IsA carbonara spaghetti_sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbonate is a kind of salt", "pln": ["(: cnet_isa_26d3577f68 (IsA carbonate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbonation is a kind of permeation", "pln": ["(: cnet_isa_932afd05de (IsA carbonation permeation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbonic acid is a kind of acid", "pln": ["(: cnet_isa_740ebbc087 (IsA carbonic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbonization is a kind of destructive distillation", "pln": ["(: cnet_isa_4abb87841a (IsA carbonization destructive_distillation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbonnade flamande is a kind of dish", "pln": ["(: cnet_isa_6aa63e90c7 (IsA carbonnade_flamande dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbonyl is a kind of compound", "pln": ["(: cnet_isa_af6333ae03 (IsA carbonyl compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbonyl group is a kind of group", "pln": ["(: cnet_isa_6d640b455b (IsA carbonyl_group group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carboxyl is a kind of group", "pln": ["(: cnet_isa_144457d929 (IsA carboxyl group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carboxylic acid is a kind of acid", "pln": ["(: cnet_isa_becb7d48c1 (IsA carboxylic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carboxymethyl cellulose is a kind of cellulose", "pln": ["(: cnet_isa_bf965daede (IsA carboxymethyl_cellulose cellulose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carboy is a kind of bottle", "pln": ["(: cnet_isa_948c142038 (IsA carboy bottle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbuncle is a kind of staphylococcal infection", "pln": ["(: cnet_isa_6124944621 (IsA carbuncle staphylococcal_infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carbuncle is a kind of garnet", "pln": ["(: cnet_isa_07ff279c6a (IsA carbuncle garnet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carburetor is a kind of mechanical device", "pln": ["(: cnet_isa_1c4ffd463c (IsA carburetor mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carcase is a kind of body", "pln": ["(: cnet_isa_040a385779 (IsA carcase body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "carcharhinidae is a kind of fish family", "pln": ["(: cnet_isa_e1c8aa52b8 (IsA carcharhinidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carcharhinus is a kind of fish genus", "pln": ["(: cnet_isa_76312b1986 (IsA carcharhinus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carcharia is a kind of fish genus", "pln": ["(: cnet_isa_48462af26a (IsA carcharia fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carchariidae is a kind of fish family", "pln": ["(: cnet_isa_44b257cad4 (IsA carchariidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carcharodon is a kind of fish genus", "pln": ["(: cnet_isa_57ba3b85ac (IsA carcharodon fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carcinogen is a kind of substance", "pln": ["(: cnet_isa_751f06eb58 (IsA carcinogen substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carcinoid is a kind of tumor", "pln": ["(: cnet_isa_f047823d7a (IsA carcinoid tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carcinoma is a kind of cancer", "pln": ["(: cnet_isa_6113d3bee7 (IsA carcinoma cancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carcinoma in situ is a kind of carcinoma", "pln": ["(: cnet_isa_027a9b282a (IsA carcinoma_in_situ carcinoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carcinosarcoma is a kind of malignant tumor", "pln": ["(: cnet_isa_87a38e3558 (IsA carcinosarcoma malignant_tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "card is a kind of paper", "pln": ["(: cnet_isa_41832308a5 (IsA card paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "card is a kind of correspondence", "pln": ["(: cnet_isa_dfa82a70d2 (IsA card correspondence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "card is a kind of positive identification", "pln": ["(: cnet_isa_bece4b1df8 (IsA card positive_identification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "card is a kind of record", "pln": ["(: cnet_isa_3b59bd0a30 (IsA card record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "card is a kind of cardboard", "pln": ["(: cnet_isa_2a695b0963 (IsA card cardboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "card catalog is a kind of library catalog", "pln": ["(: cnet_isa_b6865f4ee8 (IsA card_catalog library_catalog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "card catalogue is a kind of file", "pln": ["(: cnet_isa_34b0a540a4 (IsA card_catalogue file) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "card game is a kind of game", "pln": ["(: cnet_isa_b6186978c7 (IsA card_game game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "card player is a kind of player", "pln": ["(: cnet_isa_7cd6ef7e3d (IsA card_player player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "card table is a kind of table", "pln": ["(: cnet_isa_ed866837d0 (IsA card_table table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "card trick is a kind of magic trick", "pln": ["(: cnet_isa_572909f01b (IsA card_trick magic_trick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardamine is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_ba0011f37a (IsA cardamine dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardamom is a kind of flavorer", "pln": ["(: cnet_isa_d946952554 (IsA cardamom flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardamom is a kind of herb", "pln": ["(: cnet_isa_0a85335461 (IsA cardamom herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardboard is a kind of packing material", "pln": ["(: cnet_isa_0fa3cb5242 (IsA cardboard packing_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardboard is a kind of paper", "pln": ["(: cnet_isa_d31532a97e (IsA cardboard paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardcase is a kind of case", "pln": ["(: cnet_isa_a3636ee004 (IsA cardcase case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardholder is a kind of card player", "pln": ["(: cnet_isa_64f6a90cc5 (IsA cardholder card_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardholder is a kind of holder", "pln": ["(: cnet_isa_d22d3c8a05 (IsA cardholder holder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardia is a kind of orifice", "pln": ["(: cnet_isa_559aaf7dee (IsA cardia orifice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardiac arrhythmia is a kind of heart disease", "pln": ["(: cnet_isa_ba1390605a (IsA cardiac_arrhythmia heart_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardiac cycle is a kind of cycle", "pln": ["(: cnet_isa_7ab9191859 (IsA cardiac_cycle cycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cardiac glycoside is a kind of steroid", "pln": ["(: cnet_isa_406c2c4de0 (IsA cardiac_glycoside steroid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardiac massage is a kind of emergency procedure", "pln": ["(: cnet_isa_7577f313b5 (IsA cardiac_massage emergency_procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardiac massage is a kind of massage", "pln": ["(: cnet_isa_0dc8928ce1 (IsA cardiac_massage massage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardiac monitor is a kind of monitor", "pln": ["(: cnet_isa_6ec0e319fd (IsA cardiac_monitor monitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardiac muscle is a kind of muscle", "pln": ["(: cnet_isa_93065cf304 (IsA cardiac_muscle muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardiac output is a kind of flow", "pln": ["(: cnet_isa_ef1bc707b0 (IsA cardiac_output flow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardiac plexus is a kind of nerve plexus", "pln": ["(: cnet_isa_918a89ccbe (IsA cardiac_plexus nerve_plexus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardiac rhythm is a kind of rhythm", "pln": ["(: cnet_isa_60906b65f1 (IsA cardiac_rhythm rhythm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardiac sphincter is a kind of physiological sphincter", "pln": ["(: cnet_isa_9ff72fdb47 (IsA cardiac_sphincter physiological_sphincter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardiac tamponade is a kind of tamponade", "pln": ["(: cnet_isa_d5f537d67c (IsA cardiac_tamponade tamponade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cardigan is a kind of corgi", "pln": ["(: cnet_isa_f9bcdb107d (IsA cardigan corgi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardigan is a kind of sweater", "pln": ["(: cnet_isa_03b1003109 (IsA cardigan sweater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardiidae is a kind of mollusk family", "pln": ["(: cnet_isa_ad0f1b143f (IsA cardiidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardinal is a kind of bird", "pln": ["(: cnet_isa_7b7f5b9e34 (IsA cardinal bird) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardinal is a kind of number", "pln": ["(: cnet_isa_4ff30f3eb3 (IsA cardinal number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardinal is a kind of finch", "pln": ["(: cnet_isa_34ae9dda19 (IsA cardinal finch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardinal is a kind of red", "pln": ["(: cnet_isa_9311c5dd1c (IsA cardinal red) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardinal is a kind of bishop", "pln": ["(: cnet_isa_69067a8649 (IsA cardinal bishop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardinal compass point is a kind of compass point", "pln": ["(: cnet_isa_4926bb0ea7 (IsA cardinal_compass_point compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardinal flower is a kind of lobelia", "pln": ["(: cnet_isa_4acd94a0b9 (IsA cardinal_flower lobelia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardinal number is a kind of number", "pln": ["(: cnet_isa_d3424e2762 (IsA cardinal_number number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardinal tetra is a kind of characin", "pln": ["(: cnet_isa_1ae214de6d (IsA cardinal_tetra characin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardinal vein is a kind of vein", "pln": ["(: cnet_isa_ff40e74fcf (IsA cardinal_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardinal virtue is a kind of virtue", "pln": ["(: cnet_isa_b487e948bb (IsA cardinal_virtue virtue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardinalfish is a kind of percoid fish", "pln": ["(: cnet_isa_8b169ccb9f (IsA cardinalfish percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardinality is a kind of number", "pln": ["(: cnet_isa_c494464b8c (IsA cardinality number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardinalship is a kind of position", "pln": ["(: cnet_isa_4b6697654a (IsA cardinalship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardiogenic shock is a kind of shock", "pln": ["(: cnet_isa_4d3fe9999a (IsA cardiogenic_shock shock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cardiograph is a kind of medical instrument", "pln": ["(: cnet_isa_00f6fecec0 (IsA cardiograph medical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardiography is a kind of diagnostic procedure", "pln": ["(: cnet_isa_bf567bcb74 (IsA cardiography diagnostic_procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cardioid is a kind of epicycloid", "pln": ["(: cnet_isa_4071c779d7 (IsA cardioid epicycloid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardioid microphone is a kind of directional microphone", "pln": ["(: cnet_isa_9a3624214b (IsA cardioid_microphone directional_microphone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardiologist is a kind of specialist", "pln": ["(: cnet_isa_0fc8477d65 (IsA cardiologist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardiology is a kind of medicine", "pln": ["(: cnet_isa_9c1331b360 (IsA cardiology medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cardiomegaly is a kind of symptom", "pln": ["(: cnet_isa_b3fc64b4d0 (IsA cardiomegaly symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cardiomyopathy is a kind of heart disease", "pln": ["(: cnet_isa_d7355ee891 (IsA cardiomyopathy heart_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardiopulmonary exercise is a kind of exercise", "pln": ["(: cnet_isa_0bbb319ef9 (IsA cardiopulmonary_exercise exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardiopulmonary resuscitation is a kind of emergency procedure", "pln": ["(: cnet_isa_a241d4a14b (IsA cardiopulmonary_resuscitation emergency_procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardiopulmonary resuscitation is a kind of resuscitation", "pln": ["(: cnet_isa_28ef373b96 (IsA cardiopulmonary_resuscitation resuscitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardiospasm is a kind of spasm", "pln": ["(: cnet_isa_06d3babb0c (IsA cardiospasm spasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardiospermum is a kind of dicot genus", "pln": ["(: cnet_isa_93a14cbb67 (IsA cardiospermum dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardiovascular disease is a kind of disorder", "pln": ["(: cnet_isa_b8e54a27e0 (IsA cardiovascular_disease disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carditis is a kind of inflammation", "pln": ["(: cnet_isa_ce35d87093 (IsA carditis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardium is a kind of mollusk genus", "pln": ["(: cnet_isa_0f4c4cdcac (IsA cardium mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardoon is a kind of vegetable", "pln": ["(: cnet_isa_27613848de (IsA cardoon vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardroom is a kind of room", "pln": ["(: cnet_isa_8f36a0a539 (IsA cardroom room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardsharp is a kind of card player", "pln": ["(: cnet_isa_3a9bcec127 (IsA cardsharp card_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cardsharp is a kind of swindler", "pln": ["(: cnet_isa_f9bc7f59c6 (IsA cardsharp swindler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carduelinae is a kind of bird family", "pln": ["(: cnet_isa_e5a49243b1 (IsA carduelinae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carduelis is a kind of bird genus", "pln": ["(: cnet_isa_1d622d333f (IsA carduelis bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carduus is a kind of asterid dicot genus", "pln": ["(: cnet_isa_2ea43e8365 (IsA carduus asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "care is a kind of protection", "pln": ["(: cnet_isa_350096b380 (IsA care protection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "care is a kind of repair", "pln": ["(: cnet_isa_42d23bb569 (IsA care repair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "care is a kind of work", "pln": ["(: cnet_isa_a35790ca65 (IsA care work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "care is a kind of predicament", "pln": ["(: cnet_isa_4e2029d6d3 (IsA care predicament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "career is a kind of occupation", "pln": ["(: cnet_isa_63ed57e284 (IsA career occupation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "career is a kind of progress", "pln": ["(: cnet_isa_7fec7bd17c (IsA career progress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "career counseling is a kind of guidance", "pln": ["(: cnet_isa_5cc003a05f (IsA career_counseling guidance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "career girl is a kind of careerist", "pln": ["(: cnet_isa_bc82c8ec26 (IsA career_girl careerist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "career man is a kind of careerist", "pln": ["(: cnet_isa_95b8fe427b (IsA career_man careerist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "careerism is a kind of practice", "pln": ["(: cnet_isa_6772620011 (IsA careerism practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "careerist is a kind of professional", "pln": ["(: cnet_isa_4a959d89ab (IsA careerist professional) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carefreeness is a kind of irresponsibility", "pln": ["(: cnet_isa_34337587c0 (IsA carefreeness irresponsibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carefreeness is a kind of cheerfulness", "pln": ["(: cnet_isa_2336900bb6 (IsA carefreeness cheerfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carefulness is a kind of attentiveness", "pln": ["(: cnet_isa_ad1fe824f5 (IsA carefulness attentiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caregiver is a kind of adult", "pln": ["(: cnet_isa_c9470b5df9 (IsA caregiver adult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carelessness is a kind of inattentiveness", "pln": ["(: cnet_isa_16ef47d3d5 (IsA carelessness inattentiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carelian is a kind of russian", "pln": ["(: cnet_isa_60674cb542 (IsA carelian russian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caress is a kind of stroke", "pln": ["(: cnet_isa_0868fcf11a (IsA caress stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caressing is a kind of foreplay", "pln": ["(: cnet_isa_8998b09816 (IsA caressing foreplay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caret is a kind of mark", "pln": ["(: cnet_isa_0e4f005960 (IsA caret mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caretaker is a kind of custodian", "pln": ["(: cnet_isa_d9157d4292 (IsA caretaker custodian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caretaker is a kind of official", "pln": ["(: cnet_isa_b137ca390a (IsA caretaker official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caretta is a kind of reptile genus", "pln": ["(: cnet_isa_495f334639 (IsA caretta reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carex is a kind of monocot genus", "pln": ["(: cnet_isa_f94fbd04be (IsA carex monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carful is a kind of containerful", "pln": ["(: cnet_isa_1d791c8e84 (IsA carful containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cargo is a kind of merchandise", "pln": ["(: cnet_isa_7ed7a5fae9 (IsA cargo merchandise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cargo area is a kind of enclosure", "pln": ["(: cnet_isa_a7369d80fd (IsA cargo_area enclosure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cargo container is a kind of container", "pln": ["(: cnet_isa_93e932d481 (IsA cargo_container container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cargo cult is a kind of cult", "pln": ["(: cnet_isa_76162e6688 (IsA cargo_cult cult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cargo door is a kind of door", "pln": ["(: cnet_isa_816f9f82d0 (IsA cargo_door door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cargo hatch is a kind of hatch", "pln": ["(: cnet_isa_aef92c780c (IsA cargo_hatch hatch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cargo helicopter is a kind of helicopter", "pln": ["(: cnet_isa_eb504815bb (IsA cargo_helicopter helicopter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cargo liner is a kind of liner", "pln": ["(: cnet_isa_99c8a5ab42 (IsA cargo_liner liner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cargo ship is a kind of ship", "pln": ["(: cnet_isa_2335a88877 (IsA cargo_ship ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carhop is a kind of waiter", "pln": ["(: cnet_isa_88bd134944 (IsA carhop waiter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cariama is a kind of bird genus", "pln": ["(: cnet_isa_8fa475640e (IsA cariama bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cariamidae is a kind of bird family", "pln": ["(: cnet_isa_1b495e1fab (IsA cariamidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carib is a kind of amerind", "pln": ["(: cnet_isa_7fbd6a4907 (IsA carib amerind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carib indian is a kind of native american", "pln": ["(: cnet_isa_ae7b784eb1 (IsA carib_indian native_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carib wood is a kind of tree", "pln": ["(: cnet_isa_f348928701 (IsA carib_wood tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "caribbean island is a kind of island", "pln": ["(: cnet_isa_f3177c6dc5 (IsA caribbean_island island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caribou is a kind of mammal", "pln": ["(: cnet_isa_afaec896ee (IsA caribou mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "caribou is a kind of deer", "pln": ["(: cnet_isa_1ba936cd49 (IsA caribou deer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carica is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_0c40f51bce (IsA carica dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caricaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_085e3ec9ee (IsA caricaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caricature is a kind of wit", "pln": ["(: cnet_isa_2e80f2a5f4 (IsA caricature wit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caricature plant is a kind of shrub", "pln": ["(: cnet_isa_8fff611031 (IsA caricature_plant shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caricaturist is a kind of parodist", "pln": ["(: cnet_isa_9d476c93a3 (IsA caricaturist parodist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carillon is a kind of chime", "pln": ["(: cnet_isa_fdd7cfccb2 (IsA carillon chime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carillonneur is a kind of musician", "pln": ["(: cnet_isa_dc0ab036ea (IsA carillonneur musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carina is a kind of structure", "pln": ["(: cnet_isa_e62e7f5b3c (IsA carina structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "carina fornicis is a kind of carina", "pln": ["(: cnet_isa_7b6d89795e (IsA carina_fornicis carina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carinate is a kind of bird", "pln": ["(: cnet_isa_0a2cc6fff4 (IsA carinate bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "carioca is a kind of ballroom dancing", "pln": ["(: cnet_isa_f0e66dba37 (IsA carioca ballroom_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carioca is a kind of dance music", "pln": ["(: cnet_isa_3a015dc7be (IsA carioca dance_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carioca is a kind of brazilian", "pln": ["(: cnet_isa_b1622c5ead (IsA carioca brazilian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carissa is a kind of shrub", "pln": ["(: cnet_isa_198e4f67b7 (IsA carissa shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carissa plum is a kind of edible fruit", "pln": ["(: cnet_isa_d489800280 (IsA carissa_plum edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carjacking is a kind of hijack", "pln": ["(: cnet_isa_8c7d2bb8e4 (IsA carjacking hijack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "carlina is a kind of asterid dicot genus", "pln": ["(: cnet_isa_767c070a14 (IsA carlina asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carline thistle is a kind of thistle", "pln": ["(: cnet_isa_303db16998 (IsA carline_thistle thistle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carload is a kind of gathering", "pln": ["(: cnet_isa_0fdb1a6444 (IsA carload gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carlovingian is a kind of sovereign", "pln": ["(: cnet_isa_5cc2c6c48a (IsA carlovingian sovereign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carmelite order is a kind of order", "pln": ["(: cnet_isa_015c361bec (IsA carmelite_order order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carminative is a kind of medicine", "pln": ["(: cnet_isa_4550b543e0 (IsA carminative medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carnal abuse is a kind of sexual activity", "pln": ["(: cnet_isa_7baaa4fea8 (IsA carnal_abuse sexual_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carnallite is a kind of mineral", "pln": ["(: cnet_isa_daa25ba2f9 (IsA carnallite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carnassial tooth is a kind of tooth", "pln": ["(: cnet_isa_156a1ddd2e (IsA carnassial_tooth tooth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carnation is a kind of flower", "pln": ["(: cnet_isa_4ca9a2e9e1 (IsA carnation flower) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carnation is a kind of pink", "pln": ["(: cnet_isa_7037923d9e (IsA carnation pink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carnauba is a kind of fan palm", "pln": ["(: cnet_isa_681327bde7 (IsA carnauba fan_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carnauba wax is a kind of wax", "pln": ["(: cnet_isa_94a45c7ae0 (IsA carnauba_wax wax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carnegiea is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_0cb5571a67 (IsA carnegiea caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carnelian is a kind of chalcedony", "pln": ["(: cnet_isa_ea7fe89e0b (IsA carnelian chalcedony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carniolan bee is a kind of honeybee", "pln": ["(: cnet_isa_5ea7ddb64a (IsA carniolan_bee honeybee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carnival is a kind of festival", "pln": ["(: cnet_isa_63a100c852 (IsA carnival festival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carnival is a kind of show", "pln": ["(: cnet_isa_1213d1c51d (IsA carnival show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carnivora is a kind of animal order", "pln": ["(: cnet_isa_cd25d75774 (IsA carnivora animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carnivore is a kind of placental", "pln": ["(: cnet_isa_77cf738be5 (IsA carnivore placental) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carnivore is a kind of predator", "pln": ["(: cnet_isa_0c503dbb2d (IsA carnivore predator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carnivorous bat is a kind of bat", "pln": ["(: cnet_isa_dd9ff846d5 (IsA carnivorous_bat bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carnivorous plant is a kind of herb", "pln": ["(: cnet_isa_e304d7f1ea (IsA carnivorous_plant herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "carnosaur is a kind of theropod", "pln": ["(: cnet_isa_62cf96d160 (IsA carnosaur theropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carnosaura is a kind of animal order", "pln": ["(: cnet_isa_3c44c49bc5 (IsA carnosaura animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carnot cycle is a kind of cycle", "pln": ["(: cnet_isa_eee07347d5 (IsA carnot_cycle cycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carnotite is a kind of uranium ore", "pln": ["(: cnet_isa_9a6507de22 (IsA carnotite uranium_ore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carob is a kind of foodstuff", "pln": ["(: cnet_isa_4f9b552d02 (IsA carob foodstuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carob is a kind of bean", "pln": ["(: cnet_isa_7cc0afe671 (IsA carob bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carob is a kind of bean tree", "pln": ["(: cnet_isa_d638f07dc3 (IsA carob bean_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carob bar is a kind of candy", "pln": ["(: cnet_isa_eb0123b653 (IsA carob_bar candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "caroche is a kind of carriage", "pln": ["(: cnet_isa_8ebd6fa204 (IsA caroche carriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carol is a kind of song", "pln": ["(: cnet_isa_3a5c081a6a (IsA carol song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carol is a kind of religious song", "pln": ["(: cnet_isa_31bc94e46c (IsA carol religious_song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "caroler is a kind of singer", "pln": ["(: cnet_isa_00c30f58fb (IsA caroler singer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carolina allspice is a kind of allspice", "pln": ["(: cnet_isa_8e9f539cc3 (IsA carolina_allspice allspice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carolina buckthorn is a kind of buckthorn", "pln": ["(: cnet_isa_df8d0c7cba (IsA carolina_buckthorn buckthorn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carolina chickadee is a kind of chickadee", "pln": ["(: cnet_isa_52ddbd91da (IsA carolina_chickadee chickadee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carolina hemlock is a kind of hemlock", "pln": ["(: cnet_isa_6f4a425158 (IsA carolina_hemlock hemlock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carolina lupine is a kind of bush pea", "pln": ["(: cnet_isa_2bc3afa2cf (IsA carolina_lupine bush_pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carolina moonseed is a kind of moonseed", "pln": ["(: cnet_isa_9026d084a1 (IsA carolina_moonseed moonseed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carolina parakeet is a kind of parakeet", "pln": ["(: cnet_isa_6cef58dbc6 (IsA carolina_parakeet parakeet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carolina spring beauty is a kind of flower", "pln": ["(: cnet_isa_054df03677 (IsA carolina_spring_beauty flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carolina wren is a kind of wren", "pln": ["(: cnet_isa_4c31c78b8c (IsA carolina_wren wren) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caroling is a kind of singing", "pln": ["(: cnet_isa_9e1640b8e8 (IsA caroling singing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carolingian dynasty is a kind of dynasty", "pln": ["(: cnet_isa_ca6218654d (IsA carolingian_dynasty dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carolinian is a kind of american", "pln": ["(: cnet_isa_0e11416e35 (IsA carolinian american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "carom is a kind of stroke", "pln": ["(: cnet_isa_be5bfd8b04 (IsA carom stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carotene is a kind of carotenoid", "pln": ["(: cnet_isa_53ca6e9d60 (IsA carotene carotenoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carotenemia is a kind of pathology", "pln": ["(: cnet_isa_0ed51294d6 (IsA carotenemia pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carotenoid is a kind of antioxidant", "pln": ["(: cnet_isa_63b49b2e31 (IsA carotenoid antioxidant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carotenoid is a kind of phytochemical", "pln": ["(: cnet_isa_89fc8eebd4 (IsA carotenoid phytochemical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carotenoid is a kind of pigment", "pln": ["(: cnet_isa_cc1da0d316 (IsA carotenoid pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carotid artery is a kind of artery", "pln": ["(: cnet_isa_eac63052df (IsA carotid_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carotid body is a kind of chemoreceptor", "pln": ["(: cnet_isa_e414c69bea (IsA carotid_body chemoreceptor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "carotid plexus is a kind of nerve plexus", "pln": ["(: cnet_isa_86044d6add (IsA carotid_plexus nerve_plexus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carouse is a kind of revel", "pln": ["(: cnet_isa_1dc7066595 (IsA carouse revel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carousel is a kind of conveyer belt", "pln": ["(: cnet_isa_b44d0ff13c (IsA carousel conveyer_belt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carousel is a kind of ride", "pln": ["(: cnet_isa_5b05e19ab8 (IsA carousel ride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carp is a kind of cyprinid", "pln": ["(: cnet_isa_834f2bbe5c (IsA carp cyprinid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carp is a kind of freshwater fish", "pln": ["(: cnet_isa_f901eeb5ca (IsA carp freshwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "carpal bone is a kind of bone", "pln": ["(: cnet_isa_6dfc6642d3 (IsA carpal_bone bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpal tunnel is a kind of passage", "pln": ["(: cnet_isa_68ea802954 (IsA carpal_tunnel passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpal tunnel syndrome is a kind of nerve entrapment", "pln": ["(: cnet_isa_9801c1941f (IsA carpal_tunnel_syndrome nerve_entrapment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpel is a kind of pistil", "pln": ["(: cnet_isa_799adb4a10 (IsA carpel pistil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpenter s hammer is a kind of hammer", "pln": ["(: cnet_isa_ebcd3dbc9d (IsA carpenter_s_hammer hammer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpenter s kit is a kind of kit", "pln": ["(: cnet_isa_d2ccb4ebeb (IsA carpenter_s_kit kit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpenter s level is a kind of bar", "pln": ["(: cnet_isa_41e0c64c4e (IsA carpenter_s_level bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpenter s mallet is a kind of mallet", "pln": ["(: cnet_isa_63338eab91 (IsA carpenter_s_mallet mallet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpenter s rule is a kind of rule", "pln": ["(: cnet_isa_6832316cb3 (IsA carpenter_s_rule rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpenter s square is a kind of square", "pln": ["(: cnet_isa_3159f2726c (IsA carpenter_s_square square) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpenter is a kind of woodworker", "pln": ["(: cnet_isa_e774bfc8f4 (IsA carpenter woodworker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpenter ant is a kind of ant", "pln": ["(: cnet_isa_e0278f3ae5 (IsA carpenter_ant ant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpenter bee is a kind of bee", "pln": ["(: cnet_isa_617f7e400a (IsA carpenter_bee bee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpentry is a kind of trade", "pln": ["(: cnet_isa_6c848ad046 (IsA carpentry trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carper is a kind of critic", "pln": ["(: cnet_isa_76aa9f2e41 (IsA carper critic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpet is a kind of natural object", "pln": ["(: cnet_isa_a2e6b018a5 (IsA carpet natural_object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpet beater is a kind of beater", "pln": ["(: cnet_isa_51a20f6c31 (IsA carpet_beater beater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpet beetle is a kind of beetle", "pln": ["(: cnet_isa_1026344f46 (IsA carpet_beetle beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpet bombing is a kind of bombing", "pln": ["(: cnet_isa_869169cf20 (IsA carpet_bombing bombing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpet knight is a kind of knight", "pln": ["(: cnet_isa_f78bc96c53 (IsA carpet_knight knight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpet loom is a kind of loom", "pln": ["(: cnet_isa_9b58173970 (IsA carpet_loom loom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpet moth is a kind of tineid", "pln": ["(: cnet_isa_acb0258b31 (IsA carpet_moth tineid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpet pad is a kind of pad", "pln": ["(: cnet_isa_0a2642c19b (IsA carpet_pad pad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "carpet shark is a kind of shark", "pln": ["(: cnet_isa_e3795a7c00 (IsA carpet_shark shark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpet snake is a kind of python", "pln": ["(: cnet_isa_2fdbf4d2ea (IsA carpet_snake python) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpet sweeper is a kind of cleaning implement", "pln": ["(: cnet_isa_baa7acef3a (IsA carpet_sweeper cleaning_implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpet tack is a kind of tack", "pln": ["(: cnet_isa_043f8d88d7 (IsA carpet_tack tack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpetbag is a kind of bag", "pln": ["(: cnet_isa_61fc9e3235 (IsA carpetbag bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpetbagger is a kind of opportunist", "pln": ["(: cnet_isa_7b42446194 (IsA carpetbagger opportunist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpeting is a kind of floor covering", "pln": ["(: cnet_isa_70fce4f1bd (IsA carpeting floor_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "carpetweed is a kind of weed", "pln": ["(: cnet_isa_e1aec1270b (IsA carpetweed weed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "carphophis is a kind of reptile genus", "pln": ["(: cnet_isa_5e44688bba (IsA carphophis reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpinaceae is a kind of hamamelid dicot family", "pln": ["(: cnet_isa_a31dbae5c0 (IsA carpinaceae hamamelid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpinus is a kind of hamamelid dicot genus", "pln": ["(: cnet_isa_376183da80 (IsA carpinus hamamelid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpobrotus is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_9bfec9f489 (IsA carpobrotus caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpocapsa is a kind of arthropod genus", "pln": ["(: cnet_isa_82f7b9fd75 (IsA carpocapsa arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpodacus is a kind of bird genus", "pln": ["(: cnet_isa_7221c0914f (IsA carpodacus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpophore is a kind of stalk", "pln": ["(: cnet_isa_49ccf76906 (IsA carpophore stalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carport is a kind of garage", "pln": ["(: cnet_isa_ed3079c271 (IsA carport garage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carpospore is a kind of spore", "pln": ["(: cnet_isa_18896871ac (IsA carpospore spore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carrack is a kind of galleon", "pln": ["(: cnet_isa_69e64b56e6 (IsA carrack galleon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carrageenin is a kind of gum", "pln": ["(: cnet_isa_3ff39eea3b (IsA carrageenin gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "carrel is a kind of alcove", "pln": ["(: cnet_isa_572c376b9a (IsA carrel alcove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carriage is a kind of horse drawn vehicle", "pln": ["(: cnet_isa_739c48ea6f (IsA carriage horse_drawn_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carriage is a kind of mechanism", "pln": ["(: cnet_isa_df0d46fe3f (IsA carriage mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "carriage is a kind of bodily property", "pln": ["(: cnet_isa_997980e230 (IsA carriage bodily_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carriage bolt is a kind of bolt", "pln": ["(: cnet_isa_459df08b4e (IsA carriage_bolt bolt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carriage return is a kind of printing operation", "pln": ["(: cnet_isa_13f216d2e6 (IsA carriage_return printing_operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carriage trade is a kind of commerce", "pln": ["(: cnet_isa_fc2dbc4e6b (IsA carriage_trade commerce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carriage wrench is a kind of wrench", "pln": ["(: cnet_isa_abcce6b4f5 (IsA carriage_wrench wrench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carriageway is a kind of roadway", "pln": ["(: cnet_isa_4ded99f52d (IsA carriageway roadway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carrick bend is a kind of knot", "pln": ["(: cnet_isa_7f1be1209b (IsA carrick_bend knot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carrick bitt is a kind of post", "pln": ["(: cnet_isa_a27658cbd4 (IsA carrick_bitt post) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carrier is a kind of rack", "pln": ["(: cnet_isa_adbe246292 (IsA carrier rack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carrier is a kind of self propelled vehicle", "pln": ["(: cnet_isa_e6fd4ceaf8 (IsA carrier self_propelled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carrier is a kind of organism", "pln": ["(: cnet_isa_1aad8d7c99 (IsA carrier organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carrier is a kind of business", "pln": ["(: cnet_isa_3d34fa7541 (IsA carrier business) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carrier is a kind of immune", "pln": ["(: cnet_isa_4ed43ca28a (IsA carrier immune) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "carrier is a kind of vector", "pln": ["(: cnet_isa_ebff67371b (IsA carrier vector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carrier is a kind of deliveryman", "pln": ["(: cnet_isa_80e2323c1e (IsA carrier deliveryman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carrier is a kind of traveler", "pln": ["(: cnet_isa_75d757cda5 (IsA carrier traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carrier is a kind of chemical", "pln": ["(: cnet_isa_01df83b6fd (IsA carrier chemical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carrier pigeon is a kind of homing pigeon", "pln": ["(: cnet_isa_b6b04e738c (IsA carrier_pigeon homing_pigeon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carrier wave is a kind of radio wave", "pln": ["(: cnet_isa_e4d35e06da (IsA carrier_wave radio_wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carrion is a kind of body", "pln": ["(: cnet_isa_6f65505bb3 (IsA carrion body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carron oil is a kind of ointment", "pln": ["(: cnet_isa_1a8024160d (IsA carron_oil ointment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carrot is a kind of reward", "pln": ["(: cnet_isa_ec7fc4fa35 (IsA carrot reward) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carrot is a kind of root vegetable", "pln": ["(: cnet_isa_e158ee693e (IsA carrot root_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carrot is a kind of herb", "pln": ["(: cnet_isa_4a1a290d0e (IsA carrot herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carrot is a kind of root", "pln": ["(: cnet_isa_d5a2f5c604 (IsA carrot root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carrot juice is a kind of juice", "pln": ["(: cnet_isa_6e9b254054 (IsA carrot_juice juice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carrot pudding is a kind of pudding", "pln": ["(: cnet_isa_91e26e5b0f (IsA carrot_pudding pudding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carrot stick is a kind of crudite", "pln": ["(: cnet_isa_319124cecc (IsA carrot_stick crudite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carrot is a kind of rinsed in sink", "pln": ["(: cnet_isa_354c525c1c (IsA carrot rinsed_in_sink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carry is a kind of transportation", "pln": ["(: cnet_isa_8b8353418b (IsA carry transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carry over is a kind of balance", "pln": ["(: cnet_isa_e102ca316e (IsA carry_over balance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "carryall is a kind of bag", "pln": ["(: cnet_isa_d4631be771 (IsA carryall bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carrycot is a kind of baby bed", "pln": ["(: cnet_isa_2570048056 (IsA carrycot baby_bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carrying charge is a kind of charge", "pln": ["(: cnet_isa_510e9bc203 (IsA carrying_charge charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carrying cost is a kind of opportunity cost", "pln": ["(: cnet_isa_28c8caff0c (IsA carrying_cost opportunity_cost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car is a kind of automobile", "pln": ["(: cnet_isa_41d0b7fc5e (IsA car automobile) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car is a kind of form of personal transportation", "pln": ["(: cnet_isa_811dad48ee (IsA car form_of_personal_transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car is a kind of major cause of pollution", "pln": ["(: cnet_isa_ef11db5f6a (IsA car major_cause_of_pollution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car is a kind of mean of transportation", "pln": ["(: cnet_isa_3753fb4f60 (IsA car mean_of_transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "car is a kind of popular form of transport", "pln": ["(: cnet_isa_3f78409bd4 (IsA car popular_form_of_transport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cart is a kind of vehicle", "pln": ["(: cnet_isa_3d4b2ddda3 (IsA cart vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cart is a kind of wagon", "pln": ["(: cnet_isa_0b0023bed3 (IsA cart wagon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartage is a kind of hauling", "pln": ["(: cnet_isa_d0abb25da6 (IsA cartage hauling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartagena bark is a kind of cinchona", "pln": ["(: cnet_isa_88c8fb0adc (IsA cartagena_bark cinchona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carte blanche is a kind of authority", "pln": ["(: cnet_isa_8407851c4e (IsA carte_blanche authority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carter is a kind of worker", "pln": ["(: cnet_isa_a2467a4df5 (IsA carter worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carter administration is a kind of executive", "pln": ["(: cnet_isa_65c1a3b0e0 (IsA carter_administration executive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartesian is a kind of follower", "pln": ["(: cnet_isa_8b4cd22452 (IsA cartesian follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartesian coordinate is a kind of coordinate", "pln": ["(: cnet_isa_2518c77744 (IsA cartesian_coordinate coordinate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartesian coordinate system is a kind of coordinate system", "pln": ["(: cnet_isa_3fb941fe71 (IsA cartesian_coordinate_system coordinate_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartesian plane is a kind of plane", "pln": ["(: cnet_isa_51febed6eb (IsA cartesian_plane plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carthaginian is a kind of african", "pln": ["(: cnet_isa_37c1cae66c (IsA carthaginian african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carthamus is a kind of asterid dicot genus", "pln": ["(: cnet_isa_4419744c66 (IsA carthamus asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carthorse is a kind of draft horse", "pln": ["(: cnet_isa_3b0d902c45 (IsA carthorse draft_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carthusian is a kind of monk", "pln": ["(: cnet_isa_7b89c4d17b (IsA carthusian monk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "carthusian order is a kind of order", "pln": ["(: cnet_isa_3ad7dc63c5 (IsA carthusian_order order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartilage is a kind of animal tissue", "pln": ["(: cnet_isa_e805ac27d8 (IsA cartilage animal_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cartilage bone is a kind of bone", "pln": ["(: cnet_isa_e512d6d606 (IsA cartilage_bone bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartilaginification is a kind of pathology", "pln": ["(: cnet_isa_928dc09990 (IsA cartilaginification pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartilaginous fish is a kind of fish", "pln": ["(: cnet_isa_75d4ca33d1 (IsA cartilaginous_fish fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartilaginous structure is a kind of structure", "pln": ["(: cnet_isa_14181f88a2 (IsA cartilaginous_structure structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartilaginous tube is a kind of duct", "pln": ["(: cnet_isa_4780c357dd (IsA cartilaginous_tube duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartload is a kind of containerful", "pln": ["(: cnet_isa_58020d7029 (IsA cartload containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartographer is a kind of geographer", "pln": ["(: cnet_isa_bf0f71f8c5 (IsA cartographer geographer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carton is a kind of box", "pln": ["(: cnet_isa_7beac394b7 (IsA carton box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carton is a kind of containerful", "pln": ["(: cnet_isa_c6f195fd84 (IsA carton containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cartoon is a kind of drawing", "pln": ["(: cnet_isa_0410a68103 (IsA cartoon drawing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartoon is a kind of picture", "pln": ["(: cnet_isa_68ad232034 (IsA cartoon picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartoon is a kind of show", "pln": ["(: cnet_isa_c4fbbc5dd3 (IsA cartoon show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartoon is a kind of short subject", "pln": ["(: cnet_isa_ecc83a0034 (IsA cartoon short_subject) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartoon is a kind of wit", "pln": ["(: cnet_isa_0686a0cb64 (IsA cartoon wit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartoonist is a kind of draftsman", "pln": ["(: cnet_isa_c3368ed978 (IsA cartoonist draftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartouche is a kind of cartridge", "pln": ["(: cnet_isa_50f8d4cee5 (IsA cartouche cartridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartridge is a kind of ammunition", "pln": ["(: cnet_isa_794eda7ac0 (IsA cartridge ammunition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartridge is a kind of electro acoustic transducer", "pln": ["(: cnet_isa_bc5f837bed (IsA cartridge electro_acoustic_transducer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartridge is a kind of module", "pln": ["(: cnet_isa_1f15c660cf (IsA cartridge module) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartridge belt is a kind of belt", "pln": ["(: cnet_isa_b4642229c6 (IsA cartridge_belt belt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartridge brass is a kind of brass", "pln": ["(: cnet_isa_a36f7b019e (IsA cartridge_brass brass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartridge ejector is a kind of mechanism", "pln": ["(: cnet_isa_7f062da5ac (IsA cartridge_ejector mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartridge extractor is a kind of mechanism", "pln": ["(: cnet_isa_cf2f3fb919 (IsA cartridge_extractor mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cartridge fuse is a kind of fuse", "pln": ["(: cnet_isa_9014508d57 (IsA cartridge_fuse fuse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartridge holder is a kind of supply chamber", "pln": ["(: cnet_isa_eee7043cd5 (IsA cartridge_holder supply_chamber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartridge paper is a kind of drawing paper", "pln": ["(: cnet_isa_50ee80d18e (IsA cartridge_paper drawing_paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartridge paper is a kind of paper", "pln": ["(: cnet_isa_5c224988a0 (IsA cartridge_paper paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartwheel is a kind of acrobatic stunt", "pln": ["(: cnet_isa_39e74a1e45 (IsA cartwheel acrobatic_stunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartwheel is a kind of wheel", "pln": ["(: cnet_isa_6de2fcadc8 (IsA cartwheel wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cartwright is a kind of wright", "pln": ["(: cnet_isa_180a77892d (IsA cartwright wright) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carum is a kind of rosid dicot genus", "pln": ["(: cnet_isa_406b26295c (IsA carum rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caruncle is a kind of process", "pln": ["(: cnet_isa_4e355795c7 (IsA caruncle process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carvedilol is a kind of beta blocker", "pln": ["(: cnet_isa_37871bd2ff (IsA carvedilol beta_blocker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carving is a kind of creating by removal", "pln": ["(: cnet_isa_61020ede41 (IsA carving creating_by_removal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carving is a kind of sculpture", "pln": ["(: cnet_isa_014a83a6cd (IsA carving sculpture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carving fork is a kind of fork", "pln": ["(: cnet_isa_60cce165be (IsA carving_fork fork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "carving knife is a kind of knife", "pln": ["(: cnet_isa_4a82f53f0d (IsA carving_knife knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "carya is a kind of dicot genus", "pln": ["(: cnet_isa_94f164701b (IsA carya dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caryatid is a kind of column", "pln": ["(: cnet_isa_96e9e53bfa (IsA caryatid column) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caryocar is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_a447da6552 (IsA caryocar dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caryocaraceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_21d9f19ce6 (IsA caryocaraceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "caryophyllaceae is a kind of caryophylloid dicot family", "pln": ["(: cnet_isa_db798a185b (IsA caryophyllaceae caryophylloid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caryophyllaceous plant is a kind of herb", "pln": ["(: cnet_isa_73d8dec27a (IsA caryophyllaceous_plant herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caryophyllale is a kind of plant order", "pln": ["(: cnet_isa_bc3ac9388d (IsA caryophyllale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caryophyllidae is a kind of class", "pln": ["(: cnet_isa_26bd8c5543 (IsA caryophyllidae class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caryophylloid dicot family is a kind of dicot family", "pln": ["(: cnet_isa_6bf0529f2c (IsA caryophylloid_dicot_family dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caryophylloid dicot genus is a kind of dicot genus", "pln": ["(: cnet_isa_bccac5dc30 (IsA caryophylloid_dicot_genus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caryota is a kind of monocot genus", "pln": ["(: cnet_isa_4705416145 (IsA caryota monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casaba is a kind of winter melon", "pln": ["(: cnet_isa_96f15fb29e (IsA casaba winter_melon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casanova is a kind of womanizer", "pln": ["(: cnet_isa_38d1bb0d8f (IsA casanova womanizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cascade is a kind of succession", "pln": ["(: cnet_isa_89f20d6c4c (IsA cascade succession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cascade is a kind of waterfall", "pln": ["(: cnet_isa_69780c25ba (IsA cascade waterfall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cascade everlasting is a kind of everlasting", "pln": ["(: cnet_isa_5bbef28c2d (IsA cascade_everlasting everlasting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cascade liquefier is a kind of apparatus", "pln": ["(: cnet_isa_b68351eaf5 (IsA cascade_liquefier apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cascade penstemon is a kind of wildflower", "pln": ["(: cnet_isa_3f1e09a1da (IsA cascade_penstemon wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cascade transformer is a kind of step up transformer", "pln": ["(: cnet_isa_aa0d6ba657 (IsA cascade_transformer step_up_transformer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cascade frog is a kind of true frog", "pln": ["(: cnet_isa_6cbb719b6f (IsA cascade_frog true_frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cascara is a kind of bark", "pln": ["(: cnet_isa_9c1557aab5 (IsA cascara bark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cascara buckthorn is a kind of buckthorn", "pln": ["(: cnet_isa_eb9b1e440c (IsA cascara_buckthorn buckthorn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cascarilla is a kind of croton", "pln": ["(: cnet_isa_4952dbbc38 (IsA cascarilla croton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cascarilla bark is a kind of bark", "pln": ["(: cnet_isa_8bacffeb5d (IsA cascarilla_bark bark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "case is a kind of bed linen", "pln": ["(: cnet_isa_c62687f122 (IsA case bed_linen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "case is a kind of container", "pln": ["(: cnet_isa_fbb37f38df (IsA case container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "case is a kind of fact", "pln": ["(: cnet_isa_c4023d1d6e (IsA case fact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "case is a kind of argument", "pln": ["(: cnet_isa_1e0ec6d699 (IsA case argument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "case is a kind of grammatical category", "pln": ["(: cnet_isa_9a096f3cde (IsA case grammatical_category) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "case is a kind of problem", "pln": ["(: cnet_isa_7fc001d3e1 (IsA case problem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "case is a kind of happening", "pln": ["(: cnet_isa_13991949a5 (IsA case happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "case is a kind of person", "pln": ["(: cnet_isa_a4abe1c8e5 (IsA case person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "case is a kind of containerful", "pln": ["(: cnet_isa_6222ad5f73 (IsA case containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "case is a kind of state of mind", "pln": ["(: cnet_isa_8f0e8c3112 (IsA case state_of_mind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "case agreement is a kind of agreement", "pln": ["(: cnet_isa_714dea0ead (IsA case_agreement agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "case fatality proportion is a kind of proportion", "pln": ["(: cnet_isa_d1d0f282dd (IsA case_fatality_proportion proportion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "case hardened steel is a kind of steel", "pln": ["(: cnet_isa_a060c84b3a (IsA case_hardened_steel steel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "case history is a kind of history", "pln": ["(: cnet_isa_865654b257 (IsA case_history history) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "case knife is a kind of knife", "pln": ["(: cnet_isa_207868ca7c (IsA case_knife knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "case knife is a kind of table knife", "pln": ["(: cnet_isa_366772f7e9 (IsA case_knife table_knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "case law is a kind of civil law", "pln": ["(: cnet_isa_87f1c51f50 (IsA case_law civil_law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "case load is a kind of workload", "pln": ["(: cnet_isa_0dbadc8511 (IsA case_load workload) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "case officer is a kind of secret agent", "pln": ["(: cnet_isa_3575069014 (IsA case_officer secret_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "case shot is a kind of ammunition", "pln": ["(: cnet_isa_cbd4de7e65 (IsA case_shot ammunition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "case study is a kind of analysis", "pln": ["(: cnet_isa_2be8be29f6 (IsA case_study analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "case study is a kind of report", "pln": ["(: cnet_isa_e44e224777 (IsA case_study report) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "case to infection proportion is a kind of proportion", "pln": ["(: cnet_isa_56011b999f (IsA case_to_infection_proportion proportion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casebook is a kind of written record", "pln": ["(: cnet_isa_ec08fc6088 (IsA casebook written_record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casein is a kind of phosphoprotein", "pln": ["(: cnet_isa_8b0382bae7 (IsA casein phosphoprotein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casein glue is a kind of glue", "pln": ["(: cnet_isa_bec1ca44ee (IsA casein_glue glue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casein paint is a kind of water base paint", "pln": ["(: cnet_isa_e961a24eb6 (IsA casein_paint water_base_paint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casemaking clothe moth is a kind of clothe moth", "pln": ["(: cnet_isa_6a402c37fd (IsA casemaking_clothe_moth clothe_moth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casement is a kind of sash", "pln": ["(: cnet_isa_3b906326a1 (IsA casement sash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casement window is a kind of window", "pln": ["(: cnet_isa_06694a21c9 (IsA casement_window window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casern is a kind of barrack", "pln": ["(: cnet_isa_f215782d52 (IsA casern barrack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casework is a kind of welfare work", "pln": ["(: cnet_isa_052f15d42e (IsA casework welfare_work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "caseworm is a kind of larva", "pln": ["(: cnet_isa_5bb5c52b9b (IsA caseworm larva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cash is a kind of another name for paper money", "pln": ["(: cnet_isa_500056b8da (IsA cash another_name_for_paper_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cash is a kind of another word for money", "pln": ["(: cnet_isa_239af57435 (IsA cash another_word_for_money) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cash is a kind of money", "pln": ["(: cnet_isa_3247c6eb2b (IsA cash money) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cash is a kind of currency", "pln": ["(: cnet_isa_76f4413dcf (IsA cash currency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cash is a kind of payment", "pln": ["(: cnet_isa_f1f2a34b3a (IsA cash payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cash account is a kind of brokerage account", "pln": ["(: cnet_isa_8e08d1bbc5 (IsA cash_account brokerage_account) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cash bar is a kind of bar", "pln": ["(: cnet_isa_5f7510e6ba (IsA cash_bar bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cash basis is a kind of accounting", "pln": ["(: cnet_isa_7efbda5336 (IsA cash_basis accounting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cash card is a kind of credit card", "pln": ["(: cnet_isa_ece5346a84 (IsA cash_card credit_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cash crop is a kind of crop", "pln": ["(: cnet_isa_c550412e48 (IsA cash_crop crop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cash equivalent is a kind of debt instrument", "pln": ["(: cnet_isa_357de6e117 (IsA cash_equivalent debt_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cash flow is a kind of income", "pln": ["(: cnet_isa_499ce8f615 (IsA cash_flow income) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cash machine is a kind of machine", "pln": ["(: cnet_isa_a18bc362f9 (IsA cash_machine machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cash register is a kind of cashbox", "pln": ["(: cnet_isa_999705e41b (IsA cash_register cashbox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cash surrender value is a kind of sum", "pln": ["(: cnet_isa_e85500a2c9 (IsA cash_surrender_value sum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cashbox is a kind of strongbox", "pln": ["(: cnet_isa_dc4ad63a48 (IsA cashbox strongbox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cashew is a kind of edible nut", "pln": ["(: cnet_isa_4ff6893f94 (IsA cashew edible_nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cashew is a kind of nut tree", "pln": ["(: cnet_isa_2cf3e4ad92 (IsA cashew nut_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cashier s check is a kind of check", "pln": ["(: cnet_isa_861aaeec31 (IsA cashier_s_check check) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cashier is a kind of person", "pln": ["(: cnet_isa_c13370d495 (IsA cashier person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cashmere is a kind of fabric", "pln": ["(: cnet_isa_c16d3de2ee (IsA cashmere fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cashmere is a kind of wool", "pln": ["(: cnet_isa_84cc20a53a (IsA cashmere wool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cashmere goat is a kind of domestic goat", "pln": ["(: cnet_isa_2aaddded0e (IsA cashmere_goat domestic_goat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casing is a kind of covering", "pln": ["(: cnet_isa_de45a81f20 (IsA casing covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casing is a kind of framework", "pln": ["(: cnet_isa_f6847791ad (IsA casing framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casino is a kind of card game", "pln": ["(: cnet_isa_d8c8e392e8 (IsA casino card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casino is a kind of gambling house", "pln": ["(: cnet_isa_5ef65300db (IsA casino gambling_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cask is a kind of containerful", "pln": ["(: cnet_isa_4b11df5da3 (IsA cask containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casket is a kind of box", "pln": ["(: cnet_isa_905f64dc75 (IsA casket box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casmerodius is a kind of bird genus", "pln": ["(: cnet_isa_088c9a6d5a (IsA casmerodius bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caspase is a kind of protease", "pln": ["(: cnet_isa_1123ed5f70 (IsA caspase protease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casque is a kind of helmet", "pln": ["(: cnet_isa_9b6b0ab01f (IsA casque helmet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casquet is a kind of casque", "pln": ["(: cnet_isa_013df624b7 (IsA casquet casque) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cassareep is a kind of flavorer", "pln": ["(: cnet_isa_e5be5a3b2c (IsA cassareep flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cassava is a kind of root", "pln": ["(: cnet_isa_67661393cc (IsA cassava root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cassava is a kind of shrub", "pln": ["(: cnet_isa_485fb83280 (IsA cassava shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cassava is a kind of starch", "pln": ["(: cnet_isa_c5dc7852ad (IsA cassava starch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cassegrainian telescope is a kind of reflecting telescope", "pln": ["(: cnet_isa_55ed99091d (IsA cassegrainian_telescope reflecting_telescope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casserole is a kind of dish", "pln": ["(: cnet_isa_661fd911fc (IsA casserole dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cassette is a kind of container", "pln": ["(: cnet_isa_b63e69e197 (IsA cassette container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cassette deck is a kind of tape deck", "pln": ["(: cnet_isa_4f136668d1 (IsA cassette_deck tape_deck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cassette player is a kind of electronic equipment", "pln": ["(: cnet_isa_2c7db59ef7 (IsA cassette_player electronic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cassette recorder is a kind of recorder", "pln": ["(: cnet_isa_2991ea0539 (IsA cassette_recorder recorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cassette tape is a kind of magnetic tape", "pln": ["(: cnet_isa_601e24b9fb (IsA cassette_tape magnetic_tape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cassia is a kind of laurel", "pln": ["(: cnet_isa_42f01dcbdc (IsA cassia laurel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cassia is a kind of tree", "pln": ["(: cnet_isa_39f4d5e980 (IsA cassia tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cassia bark is a kind of bark", "pln": ["(: cnet_isa_9fb91cdf5a (IsA cassia_bark bark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cassin s kingbird is a kind of kingbird", "pln": ["(: cnet_isa_3b2e2bf22a (IsA cassin_s_kingbird kingbird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cassiope is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_57ed21fe9e (IsA cassiope dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cassiri is a kind of brew", "pln": ["(: cnet_isa_0ed0281439 (IsA cassiri brew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cassite is a kind of white person", "pln": ["(: cnet_isa_4b1a9165e4 (IsA cassite white_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cassiterite is a kind of mineral", "pln": ["(: cnet_isa_6f8dca41f4 (IsA cassiterite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cassock is a kind of vestment", "pln": ["(: cnet_isa_fb29a411fc (IsA cassock vestment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cassowary is a kind of bird", "pln": ["(: cnet_isa_5dd881060b (IsA cassowary bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cassowary is a kind of ratite", "pln": ["(: cnet_isa_63988b40df (IsA cassowary ratite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cast is a kind of throw", "pln": ["(: cnet_isa_0bcf227b61 (IsA cast throw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cast is a kind of bandage", "pln": ["(: cnet_isa_6af85af79a (IsA cast bandage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cast is a kind of copy", "pln": ["(: cnet_isa_ae2f4f4cf6 (IsA cast copy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cast is a kind of gathering", "pln": ["(: cnet_isa_314dbcc3b1 (IsA cast gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "casting lots is a kind of decision", "pln": ["(: cnet_isa_afa619c452 (IsA casting_lots decision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "casuistry is a kind of ethics", "pln": ["(: cnet_isa_22df6e4081 (IsA casuistry ethics) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cast is a kind of solid", "pln": ["(: cnet_isa_fc1c1d23f3 (IsA cast solid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cast iron is a kind of iron", "pln": ["(: cnet_isa_45e57d545b (IsA cast_iron iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "castanea is a kind of hamamelid dicot genus", "pln": ["(: cnet_isa_475b9e9d6e (IsA castanea hamamelid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "castanopsis is a kind of hamamelid dicot genus", "pln": ["(: cnet_isa_49e0e41618 (IsA castanopsis hamamelid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "castanospermum is a kind of rosid dicot genus", "pln": ["(: cnet_isa_351b599b62 (IsA castanospermum rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "castaway is a kind of abandoned person", "pln": ["(: cnet_isa_fb4683ae76 (IsA castaway abandoned_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caste is a kind of animal group", "pln": ["(: cnet_isa_2af8243bfb (IsA caste animal_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caste is a kind of class", "pln": ["(: cnet_isa_20835130f7 (IsA caste class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caste is a kind of status", "pln": ["(: cnet_isa_4eb5aa7090 (IsA caste status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caste system is a kind of class structure", "pln": ["(: cnet_isa_96b4591c5c (IsA caste_system class_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caster is a kind of roller", "pln": ["(: cnet_isa_fbea38353f (IsA caster roller) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caster is a kind of shaker", "pln": ["(: cnet_isa_5a6baac64f (IsA caster shaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caster is a kind of worker", "pln": ["(: cnet_isa_c3c0c39c0a (IsA caster worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "castigation is a kind of punishment", "pln": ["(: cnet_isa_a858d6cc72 (IsA castigation punishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "castigation is a kind of rebuke", "pln": ["(: cnet_isa_16b7b51301 (IsA castigation rebuke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "castile soap is a kind of soap", "pln": ["(: cnet_isa_fb25c464c0 (IsA castile_soap soap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "castilian is a kind of spanish", "pln": ["(: cnet_isa_222a2a6665 (IsA castilian spanish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "castilleja is a kind of asterid dicot genus", "pln": ["(: cnet_isa_cde67e8440 (IsA castilleja asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "castillian is a kind of spaniard", "pln": ["(: cnet_isa_c40da8e9f6 (IsA castillian spaniard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casting is a kind of choice", "pln": ["(: cnet_isa_e33226c941 (IsA casting choice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casting is a kind of fishing", "pln": ["(: cnet_isa_1dbb151a76 (IsA casting fishing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casting lot is a kind of decision", "pln": ["(: cnet_isa_533e0a28d9 (IsA casting_lot decision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casting vote is a kind of vote", "pln": ["(: cnet_isa_61a2cd3e2e (IsA casting_vote vote) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "castle is a kind of large building", "pln": ["(: cnet_isa_5d183d61d8 (IsA castle large_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "castle is a kind of large richly decorated building", "pln": ["(: cnet_isa_f01d513f3a (IsA castle large_richly_decorated_building) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "castle is a kind of chess move", "pln": ["(: cnet_isa_4f5d7be1f4 (IsA castle chess_move) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "castle is a kind of fortification", "pln": ["(: cnet_isa_8b1e8423b1 (IsA castle fortification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "castle is a kind of chessman", "pln": ["(: cnet_isa_9901d16c66 (IsA castle chessman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "castor is a kind of mammal genus", "pln": ["(: cnet_isa_ff4929262e (IsA castor mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "castor bean is a kind of oilseed", "pln": ["(: cnet_isa_7ea14a14a9 (IsA castor_bean oilseed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "castor oil is a kind of purgative", "pln": ["(: cnet_isa_ab7985f1c7 (IsA castor_oil purgative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "castor oil plant is a kind of shrub", "pln": ["(: cnet_isa_85518fbefa (IsA castor_oil_plant shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "castor sugar is a kind of powdered sugar", "pln": ["(: cnet_isa_efe5ec5213 (IsA castor_sugar powdered_sugar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "castoridae is a kind of mammal family", "pln": ["(: cnet_isa_e82a62fce8 (IsA castoridae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "castoroide is a kind of mammal genus", "pln": ["(: cnet_isa_2d42de47a8 (IsA castoroide mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "castration is a kind of neutering", "pln": ["(: cnet_isa_34bec68ad2 (IsA castration neutering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "castration is a kind of operation", "pln": ["(: cnet_isa_cae88cdc44 (IsA castration operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "castration anxiety is a kind of anxiety", "pln": ["(: cnet_isa_4ff9e0671f (IsA castration_anxiety anxiety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "castrato is a kind of singer", "pln": ["(: cnet_isa_fa8bdbdc91 (IsA castrato singer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "castroism is a kind of communism", "pln": ["(: cnet_isa_6ada2c80aa (IsA castroism communism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casualness is a kind of informality", "pln": ["(: cnet_isa_5bbdc34067 (IsA casualness informality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casualty is a kind of decrease", "pln": ["(: cnet_isa_6142532e6b (IsA casualty decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casualty is a kind of victim", "pln": ["(: cnet_isa_945172c116 (IsA casualty victim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casualty care research center is a kind of agency", "pln": ["(: cnet_isa_5a000c69de (IsA casualty_care_research_center agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casuaridae is a kind of bird family", "pln": ["(: cnet_isa_8dff8f28c7 (IsA casuaridae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casuariiforme is a kind of animal order", "pln": ["(: cnet_isa_85a33c0333 (IsA casuariiforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casuarina is a kind of tree", "pln": ["(: cnet_isa_2c9b25afec (IsA casuarina tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casuarinaceae is a kind of dicot family", "pln": ["(: cnet_isa_27aad978bc (IsA casuarinaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casuarinale is a kind of plant order", "pln": ["(: cnet_isa_c7dda1be00 (IsA casuarinale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casuarius is a kind of bird genus", "pln": ["(: cnet_isa_5fee7b3a5d (IsA casuarius bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casuist is a kind of reasoner", "pln": ["(: cnet_isa_c69ae646b2 (IsA casuist reasoner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casuistry is a kind of argumentation", "pln": ["(: cnet_isa_a443005a9f (IsA casuistry argumentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "casuistry is a kind of ethic", "pln": ["(: cnet_isa_34eef37fff (IsA casuistry ethic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "casus belli is a kind of beginning", "pln": ["(: cnet_isa_742267793f (IsA casus_belli beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cat s claw is a kind of shrub", "pln": ["(: cnet_isa_f21333063d (IsA cat_s_claw shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cat s cradle is a kind of child s game", "pln": ["(: cnet_isa_73652e1000 (IsA cat_s_cradle child_s_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cat s ear is a kind of liliaceous plant", "pln": ["(: cnet_isa_e1265cefc0 (IsA cat_s_ear liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cat s ear is a kind of weed", "pln": ["(: cnet_isa_0746f0a4a4 (IsA cat_s_ear weed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cat s eye is a kind of opaque gem", "pln": ["(: cnet_isa_bf568539c8 (IsA cat_s_eye opaque_gem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cat s foot is a kind of herb", "pln": ["(: cnet_isa_ff0c94ac22 (IsA cat_s_foot herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cat s paw is a kind of hitch", "pln": ["(: cnet_isa_230cdd9c68 (IsA cat_s_paw hitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cat s tail is a kind of cattail", "pln": ["(: cnet_isa_0bddaf5281 (IsA cat_s_tail cattail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cat is a kind of gossip", "pln": ["(: cnet_isa_4aec21297b (IsA cat gossip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cat is a kind of woman", "pln": ["(: cnet_isa_66d1ac7948 (IsA cat woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cat and mouse is a kind of child s game", "pln": ["(: cnet_isa_b364aece08 (IsA cat_and_mouse child_s_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cat box is a kind of receptacle", "pln": ["(: cnet_isa_da3f79b710 (IsA cat_box receptacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cat fancier is a kind of animal fancier", "pln": ["(: cnet_isa_5e3022d2b2 (IsA cat_fancier animal_fancier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cat flea is a kind of flea", "pln": ["(: cnet_isa_675bbe72f4 (IsA cat_flea flea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cat food is a kind of petfood", "pln": ["(: cnet_isa_4ccbfa0161 (IsA cat_food petfood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cat o nine tail is a kind of whip", "pln": ["(: cnet_isa_6239563ac6 (IsA cat_o_nine_tail whip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cat rig is a kind of rig", "pln": ["(: cnet_isa_f526e3cc20 (IsA cat_rig rig) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cat scratch disease is a kind of disease", "pln": ["(: cnet_isa_ff11f1e923 (IsA cat_scratch_disease disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cat scratch fever is a kind of fever", "pln": ["(: cnet_isa_cf10fe46b0 (IsA cat_scratch_fever fever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cat shark is a kind of shark", "pln": ["(: cnet_isa_56bd3e009a (IsA cat_shark shark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cat thyme is a kind of germander", "pln": ["(: cnet_isa_c1e4ab59e5 (IsA cat_thyme germander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catabiosis is a kind of aging", "pln": ["(: cnet_isa_e746c09495 (IsA catabiosis aging) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catabolism is a kind of organic process", "pln": ["(: cnet_isa_e9ff885b95 (IsA catabolism organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catacala is a kind of arthropod genus", "pln": ["(: cnet_isa_b12702d158 (IsA catacala arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catachresis is a kind of rhetorical device", "pln": ["(: cnet_isa_3f357b3c33 (IsA catachresis rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catacomb is a kind of tunnel", "pln": ["(: cnet_isa_45d7f48fc7 (IsA catacomb tunnel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catafalque is a kind of bier", "pln": ["(: cnet_isa_bb1e2c41ac (IsA catafalque bier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catahoula leopard dog is a kind of dog", "pln": ["(: cnet_isa_8213b48f78 (IsA catahoula_leopard_dog dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catalan is a kind of romance", "pln": ["(: cnet_isa_6287b866f0 (IsA catalan romance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catalan is a kind of spaniard", "pln": ["(: cnet_isa_ff637c4197 (IsA catalan spaniard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catalase is a kind of enzyme", "pln": ["(: cnet_isa_386c902eee (IsA catalase enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catalectic is a kind of line of poetry", "pln": ["(: cnet_isa_d17ebdcaf6 (IsA catalectic line_of_poetry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catalepsy is a kind of hypersomnia", "pln": ["(: cnet_isa_d3dbf491f7 (IsA catalepsy hypersomnia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cataleptic is a kind of psychotic", "pln": ["(: cnet_isa_9ea4022e73 (IsA cataleptic psychotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catalexis is a kind of meter", "pln": ["(: cnet_isa_2f5b083cc2 (IsA catalexis meter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catalina cherry is a kind of cherry", "pln": ["(: cnet_isa_a4501f1c41 (IsA catalina_cherry cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catalog is a kind of book", "pln": ["(: cnet_isa_9dd95345c6 (IsA catalog book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catalog is a kind of list", "pln": ["(: cnet_isa_7fe2612ea0 (IsA catalog list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cataloged procedure is a kind of routine", "pln": ["(: cnet_isa_555adfc494 (IsA cataloged_procedure routine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cataloger is a kind of librarian", "pln": ["(: cnet_isa_85b6257abc (IsA cataloger librarian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catalpa is a kind of bean tree", "pln": ["(: cnet_isa_c43b18c31b (IsA catalpa bean_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catalpa bignioide is a kind of catalpa", "pln": ["(: cnet_isa_cb5cdeb583 (IsA catalpa_bignioide catalpa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catalpa speciosa is a kind of catalpa", "pln": ["(: cnet_isa_b77857bbbf (IsA catalpa_speciosa catalpa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catalufa is a kind of percoid fish", "pln": ["(: cnet_isa_e22c0e0dbf (IsA catalufa percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catalysis is a kind of chemical process", "pln": ["(: cnet_isa_8929a50230 (IsA catalysis chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catalyst is a kind of activator", "pln": ["(: cnet_isa_2440f7fec0 (IsA catalyst activator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catalyst is a kind of causal agent", "pln": ["(: cnet_isa_6b260cdd54 (IsA catalyst causal_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catalytic converter is a kind of converter", "pln": ["(: cnet_isa_9d16ec5652 (IsA catalytic_converter converter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catalytic cracker is a kind of chemical reactor", "pln": ["(: cnet_isa_e088e96c97 (IsA catalytic_cracker chemical_reactor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catamaran is a kind of boat", "pln": ["(: cnet_isa_f7cfba3083 (IsA catamaran boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catamite is a kind of male child", "pln": ["(: cnet_isa_3c0af45d21 (IsA catamite male_child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catananche is a kind of flower", "pln": ["(: cnet_isa_4d9bccbd6d (IsA catananche flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cataphasia is a kind of speech disorder", "pln": ["(: cnet_isa_4d1face515 (IsA cataphasia speech_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cataphatism is a kind of religion", "pln": ["(: cnet_isa_bdb67ed841 (IsA cataphatism religion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cataphyll is a kind of leaf", "pln": ["(: cnet_isa_38f934cca5 (IsA cataphyll leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cataplasia is a kind of degeneration", "pln": ["(: cnet_isa_8beca22e45 (IsA cataplasia degeneration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catapult is a kind of device", "pln": ["(: cnet_isa_fe94d1b2f0 (IsA catapult device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catapult is a kind of engine", "pln": ["(: cnet_isa_55dbe76e63 (IsA catapult engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cataract is a kind of waterfall", "pln": ["(: cnet_isa_6337d01f42 (IsA cataract waterfall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cataract is a kind of eye disease", "pln": ["(: cnet_isa_4b13d5d866 (IsA cataract eye_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cataract surgery is a kind of eye operation", "pln": ["(: cnet_isa_dbbefe868a (IsA cataract_surgery eye_operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catarrh is a kind of inflammation", "pln": ["(: cnet_isa_5fabb4e133 (IsA catarrh inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catarrhal fever is a kind of animal disease", "pln": ["(: cnet_isa_cfb3b59cb6 (IsA catarrhal_fever animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catasetum is a kind of monocot genus", "pln": ["(: cnet_isa_d6b976328e (IsA catasetum monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catastrophe is a kind of geological phenomenon", "pln": ["(: cnet_isa_83cdb16a9f (IsA catastrophe geological_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catastrophe is a kind of adversity", "pln": ["(: cnet_isa_84911ab4fc (IsA catastrophe adversity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catastrophic illness is a kind of illness", "pln": ["(: cnet_isa_fc0438e5b7 (IsA catastrophic_illness illness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catatonia is a kind of tonicity", "pln": ["(: cnet_isa_82bec9f6ba (IsA catatonia tonicity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catatonic schizophrenia is a kind of schizophrenia", "pln": ["(: cnet_isa_7005c9e67f (IsA catatonic_schizophrenia schizophrenia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catawba is a kind of siouan", "pln": ["(: cnet_isa_c644979a57 (IsA catawba siouan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catawba is a kind of fox grape", "pln": ["(: cnet_isa_07a59e38a4 (IsA catawba fox_grape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catbird is a kind of oscine", "pln": ["(: cnet_isa_984ec52147 (IsA catbird oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "catboat is a kind of sailboat", "pln": ["(: cnet_isa_11966dcc5d (IsA catboat sailboat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catcall is a kind of cry", "pln": ["(: cnet_isa_d11b2d39e1 (IsA catcall cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catch is a kind of game", "pln": ["(: cnet_isa_2cc8ad8172 (IsA catch game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "catch is a kind of touch", "pln": ["(: cnet_isa_3b66fe28a0 (IsA catch touch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catch is a kind of fastener", "pln": ["(: cnet_isa_2fc4512eae (IsA catch fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catch is a kind of restraint", "pln": ["(: cnet_isa_ef0c9eb354 (IsA catch restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "catch is a kind of drawback", "pln": ["(: cnet_isa_00ddca4f24 (IsA catch drawback) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catch is a kind of manner of speaking", "pln": ["(: cnet_isa_cce280fc54 (IsA catch manner_of_speaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catch is a kind of object", "pln": ["(: cnet_isa_68fb702d5d (IsA catch object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catch is a kind of adult", "pln": ["(: cnet_isa_3deec8e819 (IsA catch adult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catch is a kind of indefinite quantity", "pln": ["(: cnet_isa_68461a50a8 (IsA catch indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catch crop is a kind of crop", "pln": ["(: cnet_isa_490f9b49ca (IsA catch_crop crop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catchall is a kind of enclosure", "pln": ["(: cnet_isa_a49cf0cf4d (IsA catchall enclosure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "catchall is a kind of receptacle", "pln": ["(: cnet_isa_4cb55e58d7 (IsA catchall receptacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "catcher s mask is a kind of baseball equipment", "pln": ["(: cnet_isa_476dab6da2 (IsA catcher_s_mask baseball_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catcher s mask is a kind of face mask", "pln": ["(: cnet_isa_89356194a6 (IsA catcher_s_mask face_mask) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catcher is a kind of position", "pln": ["(: cnet_isa_6c28fb1e32 (IsA catcher position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catcher is a kind of infielder", "pln": ["(: cnet_isa_3c24a20868 (IsA catcher infielder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catching is a kind of acquiring", "pln": ["(: cnet_isa_f64530cf42 (IsA catching acquiring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "catching is a kind of playing", "pln": ["(: cnet_isa_9353205d2c (IsA catching playing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catchment is a kind of structure", "pln": ["(: cnet_isa_77f0512bb0 (IsA catchment structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catchment area is a kind of geographical area", "pln": ["(: cnet_isa_882ea97c70 (IsA catchment_area geographical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catchphrase is a kind of motto", "pln": ["(: cnet_isa_dbe454642c (IsA catchphrase motto) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catchphrase is a kind of phrase", "pln": ["(: cnet_isa_7ebbf0a592 (IsA catchphrase phrase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catechesis is a kind of teaching", "pln": ["(: cnet_isa_5b7b2c8512 (IsA catechesis teaching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "catechetical instruction is a kind of teaching", "pln": ["(: cnet_isa_d8e101be69 (IsA catechetical_instruction teaching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catechin is a kind of tannin", "pln": ["(: cnet_isa_ac60a45a74 (IsA catechin tannin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catechism is a kind of book", "pln": ["(: cnet_isa_ccf3f69abb (IsA catechism book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catechism is a kind of interrogation", "pln": ["(: cnet_isa_1e6074d2fd (IsA catechism interrogation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catechist is a kind of teacher", "pln": ["(: cnet_isa_0a6af958f6 (IsA catechist teacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catecholamine is a kind of hormone", "pln": ["(: cnet_isa_d711025235 (IsA catecholamine hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catechu is a kind of acacia", "pln": ["(: cnet_isa_db30ce15b6 (IsA catechu acacia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catechumen is a kind of student", "pln": ["(: cnet_isa_6863e91acd (IsA catechumen student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "categorem is a kind of term", "pln": ["(: cnet_isa_26d76fa675 (IsA categorem term) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "categorical imperative is a kind of moral principle", "pln": ["(: cnet_isa_0a2fec17bf (IsA categorical_imperative moral_principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "categorization is a kind of grouping", "pln": ["(: cnet_isa_426047cf39 (IsA categorization grouping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "category is a kind of concept", "pln": ["(: cnet_isa_3ec8b65f88 (IsA category concept) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "category theory is a kind of abstract math", "pln": ["(: cnet_isa_34a07ec7c7 (IsA category_theory abstract_math) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "category theory is a kind of math", "pln": ["(: cnet_isa_219ce70012 (IsA category_theory math) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catena is a kind of chain", "pln": ["(: cnet_isa_6a653dcfa7 (IsA catena chain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catenary is a kind of curve", "pln": ["(: cnet_isa_009515e7d4 (IsA catenary curve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caterer is a kind of supplier", "pln": ["(: cnet_isa_e08725a142 (IsA caterer supplier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catering is a kind of occupation", "pln": ["(: cnet_isa_656a431b33 (IsA catering occupation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caterpillar is a kind of larva", "pln": ["(: cnet_isa_29776f8594 (IsA caterpillar larva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caterwaul is a kind of cry", "pln": ["(: cnet_isa_eb029b8c65 (IsA caterwaul cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catfish is a kind of soft finned fish", "pln": ["(: cnet_isa_bc56719a8a (IsA catfish soft_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catfish is a kind of freshwater fish", "pln": ["(: cnet_isa_bd6c9105e2 (IsA catfish freshwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catgut is a kind of cord", "pln": ["(: cnet_isa_7cc3baff09 (IsA catgut cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catgut is a kind of hoary pea", "pln": ["(: cnet_isa_90ab40bfd0 (IsA catgut hoary_pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "catha is a kind of gymnosperm genus", "pln": ["(: cnet_isa_2175af74db (IsA catha gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catha edulis is a kind of shrub", "pln": ["(: cnet_isa_22f0c9a2be (IsA catha_edulis shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catharacta is a kind of bird genus", "pln": ["(: cnet_isa_c0583288e1 (IsA catharacta bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catharanthus is a kind of dicot genus", "pln": ["(: cnet_isa_0a2e2a281f (IsA catharanthus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catharsis is a kind of purge", "pln": ["(: cnet_isa_5f033ecda8 (IsA catharsis purge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catharte is a kind of bird genus", "pln": ["(: cnet_isa_18bbe75e5e (IsA catharte bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cathartidae is a kind of bird family", "pln": ["(: cnet_isa_f7426c0562 (IsA cathartidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cathaya is a kind of conifer", "pln": ["(: cnet_isa_983fef374e (IsA cathaya conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cathedra is a kind of throne", "pln": ["(: cnet_isa_84128f4138 (IsA cathedra throne) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cathedral is a kind of church", "pln": ["(: cnet_isa_9b7c0906dd (IsA cathedral church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catherine wheel is a kind of firework", "pln": ["(: cnet_isa_c104fdf7be (IsA catherine_wheel firework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catheter is a kind of tube", "pln": ["(: cnet_isa_3937c3b702 (IsA catheter tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catheterisation is a kind of operation", "pln": ["(: cnet_isa_528da09d49 (IsA catheterisation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cathexis is a kind of libidinal energy", "pln": ["(: cnet_isa_1e78688357 (IsA cathexis libidinal_energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cathode is a kind of electrode", "pln": ["(: cnet_isa_0d93402c1f (IsA cathode electrode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cathode is a kind of terminal", "pln": ["(: cnet_isa_62675d68e9 (IsA cathode terminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cathode ray is a kind of beam", "pln": ["(: cnet_isa_19f98d3af3 (IsA cathode_ray beam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cathode ray tube is a kind of gas discharge tube", "pln": ["(: cnet_isa_cd01cf12d8 (IsA cathode_ray_tube gas_discharge_tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "catholic is a kind of christian", "pln": ["(: cnet_isa_15fc609023 (IsA catholic christian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catholic church is a kind of church", "pln": ["(: cnet_isa_afd2eed9c5 (IsA catholic_church church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catholic school is a kind of church school", "pln": ["(: cnet_isa_734e536283 (IsA catholic_school church_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catholicism is a kind of christianity", "pln": ["(: cnet_isa_51a69dc0eb (IsA catholicism christianity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catholico is a kind of spiritual leader", "pln": ["(: cnet_isa_b1676068a9 (IsA catholico spiritual_leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cation is a kind of ion", "pln": ["(: cnet_isa_68dba57e17 (IsA cation ion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "cats is a kind of very independent animals", "pln": ["(: cnet_isa_9081c02709 (IsA cats very_independent_animals) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cationic detergent is a kind of detergent", "pln": ["(: cnet_isa_e6817ff231 (IsA cationic_detergent detergent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catkin is a kind of inflorescence", "pln": ["(: cnet_isa_fec1d0de6a (IsA catkin inflorescence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catling is a kind of surgical knife", "pln": ["(: cnet_isa_1287562f25 (IsA catling surgical_knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catmint is a kind of herb", "pln": ["(: cnet_isa_c454e51dba (IsA catmint herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catoptric is a kind of optic", "pln": ["(: cnet_isa_fbd8731e04 (IsA catoptric optic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catoptrophorus is a kind of bird genus", "pln": ["(: cnet_isa_9e6d33a625 (IsA catoptrophorus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catostomid is a kind of cypriniform fish", "pln": ["(: cnet_isa_7331cc4384 (IsA catostomid cypriniform_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catostomidae is a kind of fish family", "pln": ["(: cnet_isa_a09fdbba47 (IsA catostomidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catostomus is a kind of fish genus", "pln": ["(: cnet_isa_d9e2ea41d6 (IsA catostomus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cat is a kind of not dog", "pln": ["(: cnet_isa_631a3673e8 (IsA cat not_dog) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cat is a kind of very common choice of pet", "pln": ["(: cnet_isa_983ee4c61c (IsA cat very_common_choice_of_pet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cat is a kind of very independant animal", "pln": ["(: cnet_isa_ea99d8137d (IsA cat very_independant_animal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cat is a kind of very independent animal", "pln": ["(: cnet_isa_491bc38f40 (IsA cat very_independent_animal) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cat and hamster is a kind of both pet", "pln": ["(: cnet_isa_6d52cbe00c (IsA cat_and_hamster both_pet) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catsup is a kind of condiment", "pln": ["(: cnet_isa_001c21f0c4 (IsA catsup condiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catsup bottle is a kind of bottle", "pln": ["(: cnet_isa_50b071c90d (IsA catsup_bottle bottle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cattail is a kind of marsh plant", "pln": ["(: cnet_isa_c988095b6e (IsA cattail marsh_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cattalo is a kind of beef", "pln": ["(: cnet_isa_25dcc1bbac (IsA cattalo beef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cattiness is a kind of malevolence", "pln": ["(: cnet_isa_d990bf1d3f (IsA cattiness malevolence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cattle is a kind of bovine", "pln": ["(: cnet_isa_33f02ab384 (IsA cattle bovine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cattle breeding is a kind of breeding", "pln": ["(: cnet_isa_492716bb90 (IsA cattle_breeding breeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cattle cake is a kind of feed", "pln": ["(: cnet_isa_a9c70eb9f1 (IsA cattle_cake feed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cattle car is a kind of freight car", "pln": ["(: cnet_isa_f57e7537bf (IsA cattle_car freight_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cattle drive is a kind of drive", "pln": ["(: cnet_isa_044d61972b (IsA cattle_drive drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cattle egret is a kind of egret", "pln": ["(: cnet_isa_f302037c3a (IsA cattle_egret egret) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cattle guard is a kind of bridge", "pln": ["(: cnet_isa_360b5a79dd (IsA cattle_guard bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cattle trail is a kind of trail", "pln": ["(: cnet_isa_a097e68dde (IsA cattle_trail trail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cattleman is a kind of stockman", "pln": ["(: cnet_isa_7364819bab (IsA cattleman stockman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cattleship is a kind of cargo ship", "pln": ["(: cnet_isa_35276c480a (IsA cattleship cargo_ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cattley guava is a kind of fruit tree", "pln": ["(: cnet_isa_e3f7117b54 (IsA cattley_guava fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cattleya is a kind of orchid", "pln": ["(: cnet_isa_dab3a30e20 (IsA cattleya orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catty is a kind of weight unit", "pln": ["(: cnet_isa_442e9b3117 (IsA catty weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catwalk is a kind of narrow walkway", "pln": ["(: cnet_isa_12b98ebf13 (IsA catwalk narrow_walkway) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catwalk is a kind of platform", "pln": ["(: cnet_isa_c419a73c07 (IsA catwalk platform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "catwalk is a kind of walk", "pln": ["(: cnet_isa_5a05b5045f (IsA catwalk walk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caucasian is a kind of natural language", "pln": ["(: cnet_isa_5c9c4f65d9 (IsA caucasian natural_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caucasian walnut is a kind of wing nut", "pln": ["(: cnet_isa_34bd200bca (IsA caucasian_walnut wing_nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caucus is a kind of meeting", "pln": ["(: cnet_isa_4ab4c14f56 (IsA caucus meeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cauda is a kind of structure", "pln": ["(: cnet_isa_9fef20d964 (IsA cauda structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caudal anesthesia is a kind of regional anesthesia", "pln": ["(: cnet_isa_5d4639713f (IsA caudal_anesthesia regional_anesthesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caudal appendage is a kind of tail", "pln": ["(: cnet_isa_f49e453021 (IsA caudal_appendage tail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caudate nucleus is a kind of basal ganglion", "pln": ["(: cnet_isa_0e878bc31d (IsA caudate_nucleus basal_ganglion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caudex is a kind of stalk", "pln": ["(: cnet_isa_0a1a3f7dd4 (IsA caudex stalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caul is a kind of fetal membrane", "pln": ["(: cnet_isa_aea423687f (IsA caul fetal_membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cauliflower is a kind of vegetable", "pln": ["(: cnet_isa_47cef71de5 (IsA cauliflower vegetable) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cauliflower is a kind of cruciferous vegetable", "pln": ["(: cnet_isa_259d86cac1 (IsA cauliflower cruciferous_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cauliflower is a kind of crucifer", "pln": ["(: cnet_isa_110e9a60dc (IsA cauliflower crucifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cauliflower ear is a kind of auricle", "pln": ["(: cnet_isa_77ea37efb6 (IsA cauliflower_ear auricle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caulking is a kind of sealant", "pln": ["(: cnet_isa_bdc374efa6 (IsA caulking sealant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "caulophyllum is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_d5819bc148 (IsA caulophyllum magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "causal agent is a kind of physical entity", "pln": ["(: cnet_isa_0b31a90379 (IsA causal_agent physical_entity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "causalgia is a kind of pain", "pln": ["(: cnet_isa_544376128e (IsA causalgia pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "causality is a kind of relation", "pln": ["(: cnet_isa_08922a8174 (IsA causality relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cause is a kind of justification", "pln": ["(: cnet_isa_1cf7443149 (IsA cause justification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cause is a kind of origin", "pln": ["(: cnet_isa_8b84d8fafa (IsA cause origin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cause celebre is a kind of incident", "pln": ["(: cnet_isa_5f5a79a152 (IsA cause_celebre incident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cause of action is a kind of claim", "pln": ["(: cnet_isa_9fe7f1c90c (IsA cause_of_action claim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cause of death is a kind of causal agent", "pln": ["(: cnet_isa_5fb4fb3a2d (IsA cause_of_death causal_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "causeway is a kind of road", "pln": ["(: cnet_isa_d01b2b2b45 (IsA causeway road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "causing is a kind of act", "pln": ["(: cnet_isa_b8a0c33734 (IsA causing act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caustic is a kind of compound", "pln": ["(: cnet_isa_01254fd7ab (IsA caustic compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cautery is a kind of operation", "pln": ["(: cnet_isa_381457789a (IsA cautery operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cautery is a kind of instrument", "pln": ["(: cnet_isa_6bf01298c3 (IsA cautery instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caution is a kind of attentiveness", "pln": ["(: cnet_isa_cabcb8587a (IsA caution attentiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caution is a kind of judiciousness", "pln": ["(: cnet_isa_5c3ba81a1d (IsA caution judiciousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caution is a kind of warning", "pln": ["(: cnet_isa_9860c1446f (IsA caution warning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cautious statement is a kind of statement", "pln": ["(: cnet_isa_f21ca1f338 (IsA cautious_statement statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cavalcade is a kind of procession", "pln": ["(: cnet_isa_752d23ec51 (IsA cavalcade procession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cavalier is a kind of male aristocrat", "pln": ["(: cnet_isa_19c1c3443d (IsA cavalier male_aristocrat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cavalier hat is a kind of hat", "pln": ["(: cnet_isa_77b632612a (IsA cavalier_hat hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cavalry is a kind of army unit", "pln": ["(: cnet_isa_0e84ff8c70 (IsA cavalry army_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cavalry is a kind of military personnel", "pln": ["(: cnet_isa_c7f47e8647 (IsA cavalry military_personnel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cavalry horse is a kind of warhorse", "pln": ["(: cnet_isa_0c28af967a (IsA cavalry_horse warhorse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cavalry sword is a kind of sword", "pln": ["(: cnet_isa_b9fb3498e0 (IsA cavalry_sword sword) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cavalryman is a kind of soldier", "pln": ["(: cnet_isa_49d0c8d33a (IsA cavalryman soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cave is a kind of geological formation", "pln": ["(: cnet_isa_d07ba3f199 (IsA cave geological_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cave in is a kind of collapse", "pln": ["(: cnet_isa_f1a606fcd9 (IsA cave_in collapse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cave myotis is a kind of vespertilian bat", "pln": ["(: cnet_isa_3ec607ac0c (IsA cave_myotis vespertilian_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caveat is a kind of notice", "pln": ["(: cnet_isa_9f6cb03af0 (IsA caveat notice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caveat emptor is a kind of principle", "pln": ["(: cnet_isa_c95f95a449 (IsA caveat_emptor principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caveman is a kind of primitive", "pln": ["(: cnet_isa_38b82098b6 (IsA caveman primitive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cavern is a kind of cave", "pln": ["(: cnet_isa_bc3e4d9ab2 (IsA cavern cave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cavern is a kind of enclosure", "pln": ["(: cnet_isa_fbc96c5543 (IsA cavern enclosure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cavernous sinus is a kind of venous sinus", "pln": ["(: cnet_isa_6338a75083 (IsA cavernous_sinus venous_sinus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cavetto is a kind of molding", "pln": ["(: cnet_isa_f9ffc4134b (IsA cavetto molding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cavia is a kind of mammal genus", "pln": ["(: cnet_isa_03ab038b01 (IsA cavia mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caviar is a kind of roe", "pln": ["(: cnet_isa_b4e77de443 (IsA caviar roe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "caviidae is a kind of mammal family", "pln": ["(: cnet_isa_0c34d91d12 (IsA caviidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cavity is a kind of decaying hole in tooth", "pln": ["(: cnet_isa_1147a266b9 (IsA cavity decaying_hole_in_tooth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cavity is a kind of structure", "pln": ["(: cnet_isa_072726d717 (IsA cavity structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cavity is a kind of decay", "pln": ["(: cnet_isa_d96e6fe06b (IsA cavity decay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cavity is a kind of space", "pln": ["(: cnet_isa_70fdb3f98b (IsA cavity space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cavity wall is a kind of wall", "pln": ["(: cnet_isa_52f55f117e (IsA cavity_wall wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cavy is a kind of rodent", "pln": ["(: cnet_isa_f0102ce190 (IsA cavy rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "caw is a kind of cry", "pln": ["(: cnet_isa_174d1db9b7 (IsA caw cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cayenne is a kind of chili", "pln": ["(: cnet_isa_7057b841ad (IsA cayenne chili) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cayenne is a kind of flavorer", "pln": ["(: cnet_isa_ba2acb9857 (IsA cayenne flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cayenne is a kind of capsicum", "pln": ["(: cnet_isa_c83e00ad4c (IsA cayenne capsicum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cayman is a kind of crocodilian reptile", "pln": ["(: cnet_isa_31ad438c7f (IsA cayman crocodilian_reptile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cayman island dollar is a kind of dollar", "pln": ["(: cnet_isa_bbbe3e71a1 (IsA cayman_island_dollar dollar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cayuga is a kind of iroquoian", "pln": ["(: cnet_isa_60370f5a09 (IsA cayuga iroquoian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cayuga is a kind of iroquois", "pln": ["(: cnet_isa_2d09622e77 (IsA cayuga iroquois) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cayuse is a kind of pony", "pln": ["(: cnet_isa_fc40c9a4e0 (IsA cayuse pony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cd is a kind of abbreviation for compact disc", "pln": ["(: cnet_isa_42c85b69a3 (IsA cd abbreviation_for_compact_disc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cd is a kind of disc", "pln": ["(: cnet_isa_0e9927b8da (IsA cd disc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cd is a kind of medium", "pln": ["(: cnet_isa_6bd5d8cfcc (IsA cd medium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cd is a kind of optical disk", "pln": ["(: cnet_isa_5b3b3b0ac1 (IsA cd optical_disk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cd is a kind of round flat disk", "pln": ["(: cnet_isa_ca1bdb3366 (IsA cd round_flat_disk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cd drive is a kind of drive", "pln": ["(: cnet_isa_ee70b1f71e (IsA cd_drive drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cd player is a kind of electronic equipment", "pln": ["(: cnet_isa_30005ce44c (IsA cd_player electronic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cd r is a kind of compact disk", "pln": ["(: cnet_isa_0d9e900cab (IsA cd_r compact_disk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cd rom is a kind of compact disk", "pln": ["(: cnet_isa_25ea0be46b (IsA cd_rom compact_disk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cd rom is a kind of read only memory", "pln": ["(: cnet_isa_b289ebb946 (IsA cd_rom read_only_memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cd rom drive is a kind of drive", "pln": ["(: cnet_isa_50a3fcaf7a (IsA cd_rom_drive drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cease is a kind of end", "pln": ["(: cnet_isa_5d0850c24e (IsA cease end) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cebidae is a kind of mammal family", "pln": ["(: cnet_isa_c89f6350b4 (IsA cebidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cebuan is a kind of philippine", "pln": ["(: cnet_isa_e0c4972d68 (IsA cebuan philippine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cebuan is a kind of bisayan", "pln": ["(: cnet_isa_20e7928f71 (IsA cebuan bisayan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cebuella is a kind of mammal genus", "pln": ["(: cnet_isa_49e90f1782 (IsA cebuella mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cebus is a kind of mammal genus", "pln": ["(: cnet_isa_b5a459deee (IsA cebus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cecidomyidae is a kind of arthropod family", "pln": ["(: cnet_isa_898aa003d3 (IsA cecidomyidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cecropia is a kind of saturniid", "pln": ["(: cnet_isa_ad0c549a21 (IsA cecropia saturniid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cecropia is a kind of dicot genus", "pln": ["(: cnet_isa_ddaad81682 (IsA cecropia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cecropiaceae is a kind of dicot family", "pln": ["(: cnet_isa_f0c8d92d11 (IsA cecropiaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cecum is a kind of cavity", "pln": ["(: cnet_isa_c86d139c4c (IsA cecum cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cedar is a kind of conifer", "pln": ["(: cnet_isa_02875f160d (IsA cedar conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cedar is a kind of wood", "pln": ["(: cnet_isa_74b10b367a (IsA cedar wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cedar chest is a kind of chest", "pln": ["(: cnet_isa_42f731526d (IsA cedar_chest chest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cedar elm is a kind of elm", "pln": ["(: cnet_isa_904eed6f28 (IsA cedar_elm elm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cedar of lebanon is a kind of cedar", "pln": ["(: cnet_isa_f2b16928fc (IsA cedar_of_lebanon cedar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cedar waxwing is a kind of waxwing", "pln": ["(: cnet_isa_0e86b8d48d (IsA cedar_waxwing waxwing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cedar is a kind of coniferous tree", "pln": ["(: cnet_isa_cd7d46fccf (IsA cedar coniferous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cedi is a kind of ghanian monetary unit", "pln": ["(: cnet_isa_16e047dea8 (IsA cedi ghanian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cedilla is a kind of diacritical mark", "pln": ["(: cnet_isa_37039d5fa2 (IsA cedilla diacritical_mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cedrela is a kind of rosid dicot genus", "pln": ["(: cnet_isa_4406365ff8 (IsA cedrela rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cedrus is a kind of gymnosperm genus", "pln": ["(: cnet_isa_76369d2be8 (IsA cedrus gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ceiba is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_a3a291aefc (IsA ceiba dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ceibo is a kind of coral tree", "pln": ["(: cnet_isa_3fa15911d5 (IsA ceibo coral_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ceilidh is a kind of party", "pln": ["(: cnet_isa_043d70a9a0 (IsA ceilidh party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ceiling is a kind of upper surface", "pln": ["(: cnet_isa_9e4d0f5548 (IsA ceiling upper_surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ceiling is a kind of altitude", "pln": ["(: cnet_isa_1011516631 (IsA ceiling altitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ceiling is a kind of control", "pln": ["(: cnet_isa_9d373c0e4e (IsA ceiling control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celandine is a kind of poppy", "pln": ["(: cnet_isa_c68eda1b70 (IsA celandine poppy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celandine poppy is a kind of poppy", "pln": ["(: cnet_isa_18f4c28074 (IsA celandine_poppy poppy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "celastraceae is a kind of dicot family", "pln": ["(: cnet_isa_a25253265b (IsA celastraceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celastrus is a kind of dicot genus", "pln": ["(: cnet_isa_72c678f568 (IsA celastrus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celebrant is a kind of person", "pln": ["(: cnet_isa_ed7a5edf3e (IsA celebrant person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "celebrant is a kind of priest", "pln": ["(: cnet_isa_8a96d8e6ab (IsA celebrant priest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celebration is a kind of diversion", "pln": ["(: cnet_isa_39da9bbba5 (IsA celebration diversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "celebration is a kind of ritual", "pln": ["(: cnet_isa_b49dad895e (IsA celebration ritual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "celebration is a kind of affair", "pln": ["(: cnet_isa_482b5933dc (IsA celebration affair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celebrity is a kind of important person", "pln": ["(: cnet_isa_b64cc9d65a (IsA celebrity important_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celeriac is a kind of root vegetable", "pln": ["(: cnet_isa_575ea88f96 (IsA celeriac root_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celeriac is a kind of herb", "pln": ["(: cnet_isa_81969be9cf (IsA celeriac herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celerity is a kind of pace", "pln": ["(: cnet_isa_36b84c814d (IsA celerity pace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celery is a kind of vegetable", "pln": ["(: cnet_isa_47731700a2 (IsA celery vegetable) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celery is a kind of herb", "pln": ["(: cnet_isa_057f9612f9 (IsA celery herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celery blight is a kind of late blight", "pln": ["(: cnet_isa_a7eec1f2f4 (IsA celery_blight late_blight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "celery pine is a kind of conifer", "pln": ["(: cnet_isa_f1a270aa12 (IsA celery_pine conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "celery salt is a kind of flavorer", "pln": ["(: cnet_isa_8a770fe58a (IsA celery_salt flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celery seed is a kind of flavorer", "pln": ["(: cnet_isa_da3ab48b69 (IsA celery_seed flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celery stick is a kind of crudite", "pln": ["(: cnet_isa_78ba81bf08 (IsA celery_stick crudite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "celery top pine is a kind of celery pine", "pln": ["(: cnet_isa_83db75a665 (IsA celery_top_pine celery_pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celesta is a kind of keyboard instrument", "pln": ["(: cnet_isa_fb84edb3b7 (IsA celesta keyboard_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celestial body is a kind of natural object", "pln": ["(: cnet_isa_9747423095 (IsA celestial_body natural_object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celestial city is a kind of heaven", "pln": ["(: cnet_isa_0d48c0b9d3 (IsA celestial_city heaven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celestial equator is a kind of great circle", "pln": ["(: cnet_isa_272804a27b (IsA celestial_equator great_circle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celestial globe is a kind of globe", "pln": ["(: cnet_isa_d7c5b391f8 (IsA celestial_globe globe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celestial guidance is a kind of steering", "pln": ["(: cnet_isa_51c4f26442 (IsA celestial_guidance steering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celestial hierarchy is a kind of hierarchy", "pln": ["(: cnet_isa_0aa51a01f8 (IsA celestial_hierarchy hierarchy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celestial mechanic is a kind of astronomy", "pln": ["(: cnet_isa_5fffeb550d (IsA celestial_mechanic astronomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celestial navigation is a kind of navigation", "pln": ["(: cnet_isa_68c0e555c7 (IsA celestial_navigation navigation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "celestial point is a kind of point", "pln": ["(: cnet_isa_8651233804 (IsA celestial_point point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celestial sphere is a kind of surface", "pln": ["(: cnet_isa_176ca8ae04 (IsA celestial_sphere surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celestite is a kind of mineral", "pln": ["(: cnet_isa_bdf1f0b5f9 (IsA celestite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "celiac disease is a kind of disorder", "pln": ["(: cnet_isa_1054c0dd4d (IsA celiac_disease disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celiac trunk is a kind of artery", "pln": ["(: cnet_isa_5d3a4b2729 (IsA celiac_trunk artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celibacy is a kind of condition", "pln": ["(: cnet_isa_f683e59842 (IsA celibacy condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celibate is a kind of religionist", "pln": ["(: cnet_isa_ae67b563c1 (IsA celibate religionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celiocentesis is a kind of centesis", "pln": ["(: cnet_isa_491c70f916 (IsA celiocentesis centesis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celioma is a kind of tumor", "pln": ["(: cnet_isa_30c4304fef (IsA celioma tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celioscopy is a kind of endoscopy", "pln": ["(: cnet_isa_e8411f6391 (IsA celioscopy endoscopy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cell is a kind of compartment", "pln": ["(: cnet_isa_3739357cc7 (IsA cell compartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cell is a kind of electrical device", "pln": ["(: cnet_isa_d38970a872 (IsA cell electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cell is a kind of room", "pln": ["(: cnet_isa_eef0dbf120 (IsA cell room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cell is a kind of living thing", "pln": ["(: cnet_isa_e5e28429b7 (IsA cell living_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cell is a kind of political unit", "pln": ["(: cnet_isa_c7f00950be (IsA cell political_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cell division is a kind of organic process", "pln": ["(: cnet_isa_21beb52087 (IsA cell_division organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cell mediated immune response is a kind of immune response", "pln": ["(: cnet_isa_978a5a1b2c (IsA cell_mediated_immune_response immune_response) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cell phone is a kind of telephone", "pln": ["(: cnet_isa_44341ceeae (IsA cell_phone telephone) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cell theory is a kind of scientific theory", "pln": ["(: cnet_isa_7f3d5afe54 (IsA cell_theory scientific_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cell undergoing meiosis is a kind of eukaryotic cell", "pln": ["(: cnet_isa_9af2683461 (IsA cell_undergoing_meiosis eukaryotic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cell wall is a kind of semipermeable membrane", "pln": ["(: cnet_isa_7ec2fc093a (IsA cell_wall semipermeable_membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cell wall is a kind of layer", "pln": ["(: cnet_isa_318626fb4a (IsA cell_wall layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cellar is a kind of storage space", "pln": ["(: cnet_isa_b1e957ee0a (IsA cellar storage_space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cellarage is a kind of basement", "pln": ["(: cnet_isa_2b14caf187 (IsA cellarage basement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cellarage is a kind of fee", "pln": ["(: cnet_isa_f67ad28410 (IsA cellarage fee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cellblock is a kind of block", "pln": ["(: cnet_isa_ae8bbbee3f (IsA cellblock block) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cellist is a kind of musician", "pln": ["(: cnet_isa_f8922d0d29 (IsA cellist musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cello is a kind of instrument", "pln": ["(: cnet_isa_96818bbaec (IsA cello instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cello is a kind of bowed stringed instrument", "pln": ["(: cnet_isa_cf6724b040 (IsA cello bowed_stringed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cellophane is a kind of plastic wrap", "pln": ["(: cnet_isa_d543aa202a (IsA cellophane plastic_wrap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cellphone is a kind of electronic device", "pln": ["(: cnet_isa_7a751db10b (IsA cellphone electronic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cellular slime mold is a kind of slime mold", "pln": ["(: cnet_isa_283ecd70a3 (IsA cellular_slime_mold slime_mold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cellular telephone is a kind of radiotelephone", "pln": ["(: cnet_isa_dce1435103 (IsA cellular_telephone radiotelephone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cellularity is a kind of physiological state", "pln": ["(: cnet_isa_bcc0a666a5 (IsA cellularity physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cellulite is a kind of adipose tissue", "pln": ["(: cnet_isa_b8e4942d3a (IsA cellulite adipose_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cellulitis is a kind of inflammation", "pln": ["(: cnet_isa_fefcf8d22d (IsA cellulitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celluloid is a kind of thermoplastic", "pln": ["(: cnet_isa_cec1052511 (IsA celluloid thermoplastic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cellulose is a kind of polysaccharide", "pln": ["(: cnet_isa_274e539513 (IsA cellulose polysaccharide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cellulose acetate is a kind of cellulose ester", "pln": ["(: cnet_isa_c8f93baf0c (IsA cellulose_acetate cellulose_ester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cellulose ester is a kind of ester", "pln": ["(: cnet_isa_31497d8917 (IsA cellulose_ester ester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cellulose nitrate is a kind of cellulose ester", "pln": ["(: cnet_isa_67621dbb26 (IsA cellulose_nitrate cellulose_ester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cellulose nitrate is a kind of nitrate", "pln": ["(: cnet_isa_dbd3ae03ac (IsA cellulose_nitrate nitrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cellulose tape is a kind of adhesive tape", "pln": ["(: cnet_isa_11dc257fb3 (IsA cellulose_tape adhesive_tape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cellulose triacetate is a kind of cellulose acetate", "pln": ["(: cnet_isa_25d3e68291 (IsA cellulose_triacetate cellulose_acetate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cellulose xanthate is a kind of cellulose ester", "pln": ["(: cnet_isa_0efae7272a (IsA cellulose_xanthate cellulose_ester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cellulose xanthate is a kind of xanthate", "pln": ["(: cnet_isa_6bd69a4abe (IsA cellulose_xanthate xanthate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cellulosic is a kind of plastic", "pln": ["(: cnet_isa_0c7941185d (IsA cellulosic plastic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celom is a kind of cavity", "pln": ["(: cnet_isa_e302579922 (IsA celom cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celosia is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_7e5260b3a3 (IsA celosia caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celsius scale is a kind of temperature scale", "pln": ["(: cnet_isa_2ec30830eb (IsA celsius_scale temperature_scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celtic is a kind of indo european", "pln": ["(: cnet_isa_256452bcdf (IsA celtic indo_european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celtic cross is a kind of cross", "pln": ["(: cnet_isa_d30014fec8 (IsA celtic_cross cross) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celtic deity is a kind of deity", "pln": ["(: cnet_isa_62fa5fb1a5 (IsA celtic_deity deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celtis is a kind of dicot genus", "pln": ["(: cnet_isa_ba235ff6fb (IsA celtis dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celtuce is a kind of salad green", "pln": ["(: cnet_isa_343a34b186 (IsA celtuce salad_green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "celtuce is a kind of lettuce", "pln": ["(: cnet_isa_8f0cff05de (IsA celtuce lettuce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cembra nut is a kind of nut", "pln": ["(: cnet_isa_789bd16871 (IsA cembra_nut nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cement is a kind of adhesive material", "pln": ["(: cnet_isa_83a1bc9cfa (IsA cement adhesive_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cement is a kind of building material", "pln": ["(: cnet_isa_58e4df4ede (IsA cement building_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cement is a kind of concrete", "pln": ["(: cnet_isa_14466b13c5 (IsA cement concrete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cement is a kind of filling", "pln": ["(: cnet_isa_927aa18e62 (IsA cement filling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cementite is a kind of compound", "pln": ["(: cnet_isa_c178313807 (IsA cementite compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cementum is a kind of solid body substance", "pln": ["(: cnet_isa_5ece7c19cf (IsA cementum solid_body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cemetery is a kind of sad place", "pln": ["(: cnet_isa_b191633f91 (IsA cemetery sad_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cemetery is a kind of site", "pln": ["(: cnet_isa_48db8433c8 (IsA cemetery site) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cenchrus is a kind of monocot genus", "pln": ["(: cnet_isa_16a89b56f3 (IsA cenchrus monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cenobite is a kind of religious", "pln": ["(: cnet_isa_2198bc39b0 (IsA cenobite religious) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cenogenesis is a kind of growth", "pln": ["(: cnet_isa_4d64db55e8 (IsA cenogenesis growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cenotaph is a kind of memorial", "pln": ["(: cnet_isa_650820e791 (IsA cenotaph memorial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "censer is a kind of incense burner", "pln": ["(: cnet_isa_7acb101aa6 (IsA censer incense_burner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "censer is a kind of vessel", "pln": ["(: cnet_isa_8698ba3230 (IsA censer vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "censor is a kind of official", "pln": ["(: cnet_isa_3ead2b15d8 (IsA censor official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "censor is a kind of person", "pln": ["(: cnet_isa_d531d3fa58 (IsA censor person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "censoring is a kind of counterintelligence", "pln": ["(: cnet_isa_54573b644c (IsA censoring counterintelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "censoring is a kind of deletion", "pln": ["(: cnet_isa_871c706262 (IsA censoring deletion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "censure is a kind of disapprobation", "pln": ["(: cnet_isa_6c90d876ff (IsA censure disapprobation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "census is a kind of count", "pln": ["(: cnet_isa_275e29c32d (IsA census count) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "census taker is a kind of official", "pln": ["(: cnet_isa_ae27f7f9b0 (IsA census_taker official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cent is a kind of fractional monetary unit", "pln": ["(: cnet_isa_8894a3d73c (IsA cent fractional_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cent is a kind of sri lanka rupee", "pln": ["(: cnet_isa_7aaafedfa4 (IsA cent sri_lanka_rupee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centa is a kind of lithuanian monetary unit", "pln": ["(: cnet_isa_43f737e75e (IsA centa lithuanian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centaur is a kind of mythical monster", "pln": ["(: cnet_isa_e964b4b638 (IsA centaur mythical_monster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centaurea is a kind of asterid dicot genus", "pln": ["(: cnet_isa_7ec82953f2 (IsA centaurea asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centaurium is a kind of dicot genus", "pln": ["(: cnet_isa_7ef0bdef7a (IsA centaurium dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centaury is a kind of flower", "pln": ["(: cnet_isa_5b124faf5a (IsA centaury flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centaury is a kind of subshrub", "pln": ["(: cnet_isa_fb7e6343ad (IsA centaury subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centavo is a kind of fractional monetary unit", "pln": ["(: cnet_isa_9bbe26e6a3 (IsA centavo fractional_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "centenarian is a kind of oldster", "pln": ["(: cnet_isa_5262a87b6e (IsA centenarian oldster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centennial is a kind of anniversary", "pln": ["(: cnet_isa_301fac3d97 (IsA centennial anniversary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "center is a kind of lineman", "pln": ["(: cnet_isa_9b13f70e24 (IsA center lineman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "center is a kind of position", "pln": ["(: cnet_isa_0055313a92 (IsA center position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "center is a kind of building", "pln": ["(: cnet_isa_58f5065a04 (IsA center building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "center is a kind of basketball player", "pln": ["(: cnet_isa_ef10f89fe9 (IsA center basketball_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "center is a kind of neural structure", "pln": ["(: cnet_isa_69556b0857 (IsA center neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "center is a kind of object", "pln": ["(: cnet_isa_b82b8fc5b1 (IsA center object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "center is a kind of sweet", "pln": ["(: cnet_isa_84bc0ee774 (IsA center sweet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "center is a kind of class", "pln": ["(: cnet_isa_e220c31726 (IsA center class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "center is a kind of hockey player", "pln": ["(: cnet_isa_2593f71aee (IsA center hockey_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "center is a kind of area", "pln": ["(: cnet_isa_9e80f1330d (IsA center area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "center is a kind of place", "pln": ["(: cnet_isa_2c64507576 (IsA center place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "center is a kind of point", "pln": ["(: cnet_isa_f1286bfdc5 (IsA center point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "center is a kind of formation", "pln": ["(: cnet_isa_5febbfc5e8 (IsA center formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "center bit is a kind of bit", "pln": ["(: cnet_isa_c76d76d289 (IsA center_bit bit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "center field is a kind of position", "pln": ["(: cnet_isa_72fcf142eb (IsA center_field position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "center field is a kind of tract", "pln": ["(: cnet_isa_9f89a45e78 (IsA center_field tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "center fielder is a kind of outfielder", "pln": ["(: cnet_isa_0b571bb397 (IsA center_fielder outfielder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "center for disease control and prevention is a kind of agency", "pln": ["(: cnet_isa_be368be04b (IsA center_for_disease_control_and_prevention agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "center of buoyancy is a kind of center of mass", "pln": ["(: cnet_isa_ee3558ff27 (IsA center_of_buoyancy center_of_mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "center of curvature is a kind of center", "pln": ["(: cnet_isa_8dccc91287 (IsA center_of_curvature center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "center of flotation is a kind of center of gravity", "pln": ["(: cnet_isa_67241d4a5f (IsA center_of_flotation center_of_gravity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "center of gravity is a kind of center", "pln": ["(: cnet_isa_8b94ab4d6e (IsA center_of_gravity center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "center of mass is a kind of center", "pln": ["(: cnet_isa_90a498a460 (IsA center_of_mass center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "center punch is a kind of punch", "pln": ["(: cnet_isa_965cbd488f (IsA center_punch punch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "center spread is a kind of spread", "pln": ["(: cnet_isa_7d2a8cb751 (IsA center_spread spread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "center stage is a kind of center", "pln": ["(: cnet_isa_35e3487e8e (IsA center_stage center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "center stage is a kind of high status", "pln": ["(: cnet_isa_fb62576bfc (IsA center_stage high_status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centerboard is a kind of fin keel", "pln": ["(: cnet_isa_c5cf46d946 (IsA centerboard fin_keel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centerfold is a kind of foldout", "pln": ["(: cnet_isa_6ea129a2da (IsA centerfold foldout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centerfold is a kind of spread", "pln": ["(: cnet_isa_63c937cc5c (IsA centerfold spread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centering is a kind of pass", "pln": ["(: cnet_isa_56cdc19fa9 (IsA centering pass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centerline is a kind of line", "pln": ["(: cnet_isa_3a56d8cc08 (IsA centerline line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centerpiece is a kind of decoration", "pln": ["(: cnet_isa_bf5a622241 (IsA centerpiece decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centerpiece is a kind of feature", "pln": ["(: cnet_isa_609a29f235 (IsA centerpiece feature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centesimo is a kind of fractional monetary unit", "pln": ["(: cnet_isa_3b69272ed2 (IsA centesimo fractional_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centesis is a kind of puncture", "pln": ["(: cnet_isa_11011a5bc8 (IsA centesis puncture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centigrade thermometer is a kind of thermometer", "pln": ["(: cnet_isa_d0f8ccfaf6 (IsA centigrade_thermometer thermometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centiliter is a kind of metric capacity unit", "pln": ["(: cnet_isa_391cacefba (IsA centiliter metric_capacity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centime is a kind of fractional monetary unit", "pln": ["(: cnet_isa_81412b6127 (IsA centime fractional_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centimeter is a kind of metric linear unit", "pln": ["(: cnet_isa_9037f36259 (IsA centimeter metric_linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centimo is a kind of fractional monetary unit", "pln": ["(: cnet_isa_71ffb5f91d (IsA centimo fractional_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centipede is a kind of arthropod", "pln": ["(: cnet_isa_a52045d81f (IsA centipede arthropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centner is a kind of metric weight unit", "pln": ["(: cnet_isa_ae6576f648 (IsA centner metric_weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "central is a kind of workplace", "pln": ["(: cnet_isa_131c45e06f (IsA central workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "central african republic franc is a kind of franc", "pln": ["(: cnet_isa_07db911d13 (IsA central_african_republic_franc franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "central america is a kind of collection", "pln": ["(: cnet_isa_fb102ec88f (IsA central_america collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "central american is a kind of north american", "pln": ["(: cnet_isa_da8c88aeb9 (IsA central_american north_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "central american country is a kind of north american country", "pln": ["(: cnet_isa_843d7c4a27 (IsA central_american_country north_american_country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "central american strap fern is a kind of strap fern", "pln": ["(: cnet_isa_49d04ff0ce (IsA central_american_strap_fern strap_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "central powers is a kind of alliance", "pln": ["(: cnet_isa_99a65538ea (IsA central_powers alliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "central artery of retina is a kind of artery", "pln": ["(: cnet_isa_1832dbdd06 (IsA central_artery_of_retina artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "central bank is a kind of financial institution", "pln": ["(: cnet_isa_57a3602d17 (IsA central_bank financial_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "central chimpanzee is a kind of chimpanzee", "pln": ["(: cnet_isa_557c72abae (IsA central_chimpanzee chimpanzee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "central dravidian is a kind of dravidian", "pln": ["(: cnet_isa_1f7623bf8d (IsA central_dravidian dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "central gyrus is a kind of gyrus", "pln": ["(: cnet_isa_2057c274a4 (IsA central_gyrus gyrus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "central heating is a kind of heating system", "pln": ["(: cnet_isa_2a06d4926c (IsA central_heating heating_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "central intelligence agency is a kind of independent agency", "pln": ["(: cnet_isa_b6c1cf4b3b (IsA central_intelligence_agency independent_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "central intelligence agency is a kind of united state intelligence agency", "pln": ["(: cnet_isa_05ae2803dc (IsA central_intelligence_agency united_state_intelligence_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "central intelligence machinery is a kind of international intelligence agency", "pln": ["(: cnet_isa_067223d1e6 (IsA central_intelligence_machinery international_intelligence_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "central nervous system is a kind of system", "pln": ["(: cnet_isa_2008b9a134 (IsA central_nervous_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "central power is a kind of alliance", "pln": ["(: cnet_isa_0f3ba03190 (IsA central_power alliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "central processing unit is a kind of electronic equipment", "pln": ["(: cnet_isa_18ff6e9fd8 (IsA central_processing_unit electronic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "central processing unit is a kind of hardware", "pln": ["(: cnet_isa_d82743e2bb (IsA central_processing_unit hardware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "central scotoma is a kind of scotoma", "pln": ["(: cnet_isa_7f6f5e9c23 (IsA central_scotoma scotoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "central time is a kind of civil time", "pln": ["(: cnet_isa_3e75369270 (IsA central_time civil_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "central vein of retina is a kind of vein", "pln": ["(: cnet_isa_7945eb5077 (IsA central_vein_of_retina vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "central vein of suprarenal gland is a kind of vein", "pln": ["(: cnet_isa_65588afd67 (IsA central_vein_of_suprarenal_gland vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "central vein of liver is a kind of vein", "pln": ["(: cnet_isa_b9ddcd3704 (IsA central_vein_of_liver vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "central vision is a kind of sight", "pln": ["(: cnet_isa_68d8e332c7 (IsA central_vision sight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centralism is a kind of policy", "pln": ["(: cnet_isa_9fa2c76d8c (IsA centralism policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centrality is a kind of position", "pln": ["(: cnet_isa_906c0c1114 (IsA centrality position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "centralization is a kind of consolidation", "pln": ["(: cnet_isa_9bce2bdf35 (IsA centralization consolidation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centralization is a kind of gather", "pln": ["(: cnet_isa_215dab7481 (IsA centralization gather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centranthus is a kind of asterid dicot genus", "pln": ["(: cnet_isa_544194e808 (IsA centranthus asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centrarchidae is a kind of fish family", "pln": ["(: cnet_isa_496f6147c3 (IsA centrarchidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "centrex is a kind of central", "pln": ["(: cnet_isa_3e7160e775 (IsA centrex central) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centrifugal force is a kind of force", "pln": ["(: cnet_isa_3931f0c4b3 (IsA centrifugal_force force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centrifugal pump is a kind of pump", "pln": ["(: cnet_isa_379c717e8e (IsA centrifugal_pump pump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centrifugation is a kind of natural process", "pln": ["(: cnet_isa_bcc9dfa5cc (IsA centrifugation natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "centrifuge is a kind of apparatus", "pln": ["(: cnet_isa_0f6fc62262 (IsA centrifuge apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centriole is a kind of organelle", "pln": ["(: cnet_isa_f5ff44ac96 (IsA centriole organelle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centripetal acceleration is a kind of acceleration", "pln": ["(: cnet_isa_26b9f076aa (IsA centripetal_acceleration acceleration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centripetal force is a kind of force", "pln": ["(: cnet_isa_9b52dc3f77 (IsA centripetal_force force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centriscidae is a kind of fish family", "pln": ["(: cnet_isa_5fc5dff2f9 (IsA centriscidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centrism is a kind of political orientation", "pln": ["(: cnet_isa_678f2ec05d (IsA centrism political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centrist is a kind of adult", "pln": ["(: cnet_isa_fd88069701 (IsA centrist adult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centrocercus is a kind of bird genus", "pln": ["(: cnet_isa_63cf82391e (IsA centrocercus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centroid is a kind of center of mass", "pln": ["(: cnet_isa_4a41a0ce9f (IsA centroid center_of_mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centrolobium is a kind of rosid dicot genus", "pln": ["(: cnet_isa_a08db4110c (IsA centrolobium rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centromere is a kind of structure", "pln": ["(: cnet_isa_7f87fa5d7e (IsA centromere structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "centropomidae is a kind of fish family", "pln": ["(: cnet_isa_96023be3ec (IsA centropomidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centropomus is a kind of fish genus", "pln": ["(: cnet_isa_5fa7c4558e (IsA centropomus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centropristis is a kind of fish genus", "pln": ["(: cnet_isa_f8fac33e12 (IsA centropristis fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centropus is a kind of bird genus", "pln": ["(: cnet_isa_7af55587a9 (IsA centropus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centrosema is a kind of rosid dicot genus", "pln": ["(: cnet_isa_9c8a20402d (IsA centrosema rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centrosome is a kind of cytoplasm", "pln": ["(: cnet_isa_1fc085eb9c (IsA centrosome cytoplasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centrospermae is a kind of taxonomic group", "pln": ["(: cnet_isa_f09c120a8e (IsA centrospermae taxonomic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centrum is a kind of bone", "pln": ["(: cnet_isa_ef8f491694 (IsA centrum bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centunculus is a kind of dicot genus", "pln": ["(: cnet_isa_b8ac48541b (IsA centunculus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "centurion is a kind of warrior", "pln": ["(: cnet_isa_f974d13c6f (IsA centurion warrior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "century is a kind of time period", "pln": ["(: cnet_isa_e0902353dd (IsA century time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cephalanthera is a kind of monocot genus", "pln": ["(: cnet_isa_830cdd9107 (IsA cephalanthera monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cephalhematoma is a kind of hemorrhagic cyst", "pln": ["(: cnet_isa_720822d169 (IsA cephalhematoma hemorrhagic_cyst) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cephalic index is a kind of ratio", "pln": ["(: cnet_isa_4fe5d059fe (IsA cephalic_index ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cephalic vein is a kind of vein", "pln": ["(: cnet_isa_dd63548596 (IsA cephalic_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cephalobidae is a kind of worm family", "pln": ["(: cnet_isa_8b23fb70ff (IsA cephalobidae worm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cephalochordata is a kind of phylum", "pln": ["(: cnet_isa_0a66f52d72 (IsA cephalochordata phylum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cephalochordate is a kind of chordate", "pln": ["(: cnet_isa_08d331378f (IsA cephalochordate chordate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cephalometry is a kind of measurement", "pln": ["(: cnet_isa_9081e7a0c5 (IsA cephalometry measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cephalopod is a kind of mollusk", "pln": ["(: cnet_isa_b23aaf7a61 (IsA cephalopod mollusk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cephalopoda is a kind of class", "pln": ["(: cnet_isa_d6beb66003 (IsA cephalopoda class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cephalopterus is a kind of bird genus", "pln": ["(: cnet_isa_81e0b8d00b (IsA cephalopterus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cephaloridine is a kind of antibiotic", "pln": ["(: cnet_isa_0be3281ebd (IsA cephaloridine antibiotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cephalotaceae is a kind of rosid dicot family", "pln": ["(: cnet_isa_40742b8b01 (IsA cephalotaceae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cephalotaxaceae is a kind of gymnosperm family", "pln": ["(: cnet_isa_77abdfb790 (IsA cephalotaxaceae gymnosperm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cephalotaxus is a kind of gymnosperm genus", "pln": ["(: cnet_isa_2b16420448 (IsA cephalotaxus gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cephalotus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_35a7e965f8 (IsA cephalotus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cepphus is a kind of bird genus", "pln": ["(: cnet_isa_69bd74b7eb (IsA cepphus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cerambycidae is a kind of arthropod family", "pln": ["(: cnet_isa_5c4209a46f (IsA cerambycidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ceramic is a kind of instrumentality", "pln": ["(: cnet_isa_33f1a68ca2 (IsA ceramic instrumentality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ceramic ware is a kind of utensil", "pln": ["(: cnet_isa_6262ea58da (IsA ceramic_ware utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "ceras is a kind of gill", "pln": ["(: cnet_isa_d5a895e501 (IsA ceras gill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ceramic is a kind of art", "pln": ["(: cnet_isa_6abebfb0ca (IsA ceramic art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cerapteryx is a kind of arthropod genus", "pln": ["(: cnet_isa_3905b7d80a (IsA cerapteryx arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cera is a kind of gill", "pln": ["(: cnet_isa_f64a8771ae (IsA cera gill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cerastium is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_18db846ffa (IsA cerastium caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cerate is a kind of ointment", "pln": ["(: cnet_isa_8c02e8cee5 (IsA cerate ointment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ceratitis is a kind of arthropod genus", "pln": ["(: cnet_isa_003b269e37 (IsA ceratitis arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ceratodontidae is a kind of fish family", "pln": ["(: cnet_isa_fdbdb78de2 (IsA ceratodontidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ceratodus is a kind of lungfish", "pln": ["(: cnet_isa_f797b16150 (IsA ceratodus lungfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ceratonia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_b7bb0e4a9c (IsA ceratonia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ceratopetalum is a kind of rosid dicot genus", "pln": ["(: cnet_isa_7ce06a9189 (IsA ceratopetalum rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ceratophyllaceae is a kind of magnoliid dicot family", "pln": ["(: cnet_isa_07332ea624 (IsA ceratophyllaceae magnoliid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ceratophyllum is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_cf11a76c27 (IsA ceratophyllum magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ceratopogon is a kind of arthropod genus", "pln": ["(: cnet_isa_906b549cf5 (IsA ceratopogon arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ceratopogonidae is a kind of arthropod family", "pln": ["(: cnet_isa_2d5847db7a (IsA ceratopogonidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ceratopsia is a kind of animal order", "pln": ["(: cnet_isa_97a8fd2d66 (IsA ceratopsia animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ceratopsian is a kind of ornithischian", "pln": ["(: cnet_isa_b2795406c0 (IsA ceratopsian ornithischian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ceratopsidae is a kind of reptile family", "pln": ["(: cnet_isa_a8430f4291 (IsA ceratopsidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ceratopteris is a kind of fern genus", "pln": ["(: cnet_isa_b2889a49dd (IsA ceratopteris fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ceratosaur is a kind of theropod", "pln": ["(: cnet_isa_7fa92c9025 (IsA ceratosaur theropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ceratostomataceae is a kind of fungus family", "pln": ["(: cnet_isa_918165dcb5 (IsA ceratostomataceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ceratostomella is a kind of fungus genus", "pln": ["(: cnet_isa_a3575c994c (IsA ceratostomella fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ceratotherium is a kind of mammal genus", "pln": ["(: cnet_isa_dce52e009d (IsA ceratotherium mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ceratozamia is a kind of cycad", "pln": ["(: cnet_isa_ba847e4137 (IsA ceratozamia cycad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cercaria is a kind of larva", "pln": ["(: cnet_isa_058e7fb3c9 (IsA cercaria larva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cercidiphyllaceae is a kind of magnoliid dicot family", "pln": ["(: cnet_isa_274bd93435 (IsA cercidiphyllaceae magnoliid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cercidiphyllum is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_a0d9f0b083 (IsA cercidiphyllum magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cercidium is a kind of rosid dicot genus", "pln": ["(: cnet_isa_21c16bba19 (IsA cercidium rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cercis is a kind of rosid dicot genus", "pln": ["(: cnet_isa_ab01c7922b (IsA cercis rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cercocebus is a kind of mammal genus", "pln": ["(: cnet_isa_ccc97105bd (IsA cercocebus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cercopidae is a kind of arthropod family", "pln": ["(: cnet_isa_8f4a6c407d (IsA cercopidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cercopithecidae is a kind of mammal family", "pln": ["(: cnet_isa_2a6804c327 (IsA cercopithecidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cercopithecus is a kind of mammal genus", "pln": ["(: cnet_isa_ee9b1cadf1 (IsA cercopithecus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cercospora is a kind of fungus genus", "pln": ["(: cnet_isa_9a96cd53d1 (IsA cercospora fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cercosporella is a kind of fungus genus", "pln": ["(: cnet_isa_ea923e94db (IsA cercosporella fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cere is a kind of beak", "pln": ["(: cnet_isa_c56e41b336 (IsA cere beak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cereal is a kind of typically", "pln": ["(: cnet_isa_583c16ebb1 (IsA cereal typically) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cereal is a kind of breakfast food", "pln": ["(: cnet_isa_f7ee12caa9 (IsA cereal breakfast_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cereal is a kind of grass", "pln": ["(: cnet_isa_3f69c30822 (IsA cereal grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cereal bowl is a kind of bowl", "pln": ["(: cnet_isa_d1e9e7a257 (IsA cereal_bowl bowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cereal box is a kind of box", "pln": ["(: cnet_isa_d3b5b5a9b3 (IsA cereal_box box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cereal oat is a kind of oat", "pln": ["(: cnet_isa_ff92653ab5 (IsA cereal_oat oat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cerebellar artery is a kind of artery", "pln": ["(: cnet_isa_0d35d983fa (IsA cerebellar_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cerebellar hemisphere is a kind of neural structure", "pln": ["(: cnet_isa_e9cca927e0 (IsA cerebellar_hemisphere neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cerebellar vein is a kind of vein", "pln": ["(: cnet_isa_0a10f02fbb (IsA cerebellar_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cerebellum is a kind of neural structure", "pln": ["(: cnet_isa_9c1e958af4 (IsA cerebellum neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cerebral aneurysm is a kind of aneurysm", "pln": ["(: cnet_isa_4687b4263e (IsA cerebral_aneurysm aneurysm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cerebral aqueduct is a kind of duct", "pln": ["(: cnet_isa_e098928ca2 (IsA cerebral_aqueduct duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cerebral artery is a kind of artery", "pln": ["(: cnet_isa_8a0db49598 (IsA cerebral_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cerebral cortex is a kind of neural structure", "pln": ["(: cnet_isa_88c0e9646e (IsA cerebral_cortex neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cerebral edema is a kind of edema", "pln": ["(: cnet_isa_995d151125 (IsA cerebral_edema edema) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cerebral hemorrhage is a kind of bleeding", "pln": ["(: cnet_isa_081959aff7 (IsA cerebral_hemorrhage bleeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cerebral palsy is a kind of brain disorder", "pln": ["(: cnet_isa_b7dcdc1099 (IsA cerebral_palsy brain_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cerebral thrombosis is a kind of thrombosis", "pln": ["(: cnet_isa_3378d9346f (IsA cerebral_thrombosis thrombosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cerebral vein is a kind of vein", "pln": ["(: cnet_isa_03cb413e56 (IsA cerebral_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cerebrospinal meningitis is a kind of meningitis", "pln": ["(: cnet_isa_04890b6ea3 (IsA cerebrospinal_meningitis meningitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cerebrum is a kind of neural structure", "pln": ["(: cnet_isa_075e33962c (IsA cerebrum neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cerecloth is a kind of fabric", "pln": ["(: cnet_isa_2c2d351f64 (IsA cerecloth fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ceremoniousness is a kind of formality", "pln": ["(: cnet_isa_ef61c4f555 (IsA ceremoniousness formality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ceremony is a kind of activity", "pln": ["(: cnet_isa_de25b70402 (IsA ceremony activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ceremony is a kind of affair", "pln": ["(: cnet_isa_8d352faad5 (IsA ceremony affair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ceresin is a kind of wax", "pln": ["(: cnet_isa_c69433ad5b (IsA ceresin wax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cereus is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_eec26136c7 (IsA cereus caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ceriman is a kind of edible fruit", "pln": ["(: cnet_isa_6325df4f9b (IsA ceriman edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ceriman is a kind of monstera", "pln": ["(: cnet_isa_6f53246cd2 (IsA ceriman monstera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cerise is a kind of red", "pln": ["(: cnet_isa_fb8e3057bd (IsA cerise red) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cerium is a kind of metallic element", "pln": ["(: cnet_isa_cf7b36ec76 (IsA cerium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cero is a kind of spanish mackerel", "pln": ["(: cnet_isa_2976e5d33d (IsA cero spanish_mackerel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cerotic acid is a kind of acid", "pln": ["(: cnet_isa_b8d7d683e8 (IsA cerotic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ceroxylon is a kind of monocot genus", "pln": ["(: cnet_isa_65644df02b (IsA ceroxylon monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cert is a kind of certainty", "pln": ["(: cnet_isa_f5b5f560ec (IsA cert certainty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "certainty is a kind of quality", "pln": ["(: cnet_isa_547e06f56e (IsA certainty quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "certainty is a kind of cognitive state", "pln": ["(: cnet_isa_f505c4aee4 (IsA certainty cognitive_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "certhia is a kind of bird genus", "pln": ["(: cnet_isa_3550a2a37f (IsA certhia bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "certhiidae is a kind of bird family", "pln": ["(: cnet_isa_da45f87f62 (IsA certhiidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "certificate is a kind of document", "pln": ["(: cnet_isa_d1f56e7078 (IsA certificate document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "certificate of deposit is a kind of debt instrument", "pln": ["(: cnet_isa_a658b0e0f9 (IsA certificate_of_deposit debt_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "certificate of incorporation is a kind of certificate", "pln": ["(: cnet_isa_def4e2f7fd (IsA certificate_of_incorporation certificate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "certification is a kind of authorization", "pln": ["(: cnet_isa_0909390b8d (IsA certification authorization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "certified check is a kind of check", "pln": ["(: cnet_isa_1fa01ae42e (IsA certified_check check) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "certified milk is a kind of milk", "pln": ["(: cnet_isa_b1b41d3989 (IsA certified_milk milk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "certified public accountant is a kind of accountant", "pln": ["(: cnet_isa_cb7fc6adcf (IsA certified_public_accountant accountant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "certiorari is a kind of writ", "pln": ["(: cnet_isa_58ca975b39 (IsA certiorari writ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "certitude is a kind of certainty", "pln": ["(: cnet_isa_0f9c886a70 (IsA certitude certainty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cerulean blue is a kind of pigment", "pln": ["(: cnet_isa_928283c66c (IsA cerulean_blue pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cerumen is a kind of wax", "pln": ["(: cnet_isa_bde3142c26 (IsA cerumen wax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cerussite is a kind of mineral", "pln": ["(: cnet_isa_f715509b10 (IsA cerussite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cervical artery is a kind of artery", "pln": ["(: cnet_isa_a6a659a16c (IsA cervical_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cervical canal is a kind of duct", "pln": ["(: cnet_isa_ca6f4990a9 (IsA cervical_canal duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cervical cap is a kind of contraceptive", "pln": ["(: cnet_isa_32381128c3 (IsA cervical_cap contraceptive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cervical disc syndrome is a kind of syndrome", "pln": ["(: cnet_isa_7d15ffcb09 (IsA cervical_disc_syndrome syndrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cervical gland is a kind of exocrine gland", "pln": ["(: cnet_isa_c068adf1b7 (IsA cervical_gland exocrine_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cervical nerve is a kind of spinal nerve", "pln": ["(: cnet_isa_98eb6b8179 (IsA cervical_nerve spinal_nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cervical plexus is a kind of nerve plexus", "pln": ["(: cnet_isa_832a57b71f (IsA cervical_plexus nerve_plexus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cervical smear is a kind of smear", "pln": ["(: cnet_isa_c5a1e0d907 (IsA cervical_smear smear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cervical vein is a kind of vein", "pln": ["(: cnet_isa_2792c08b91 (IsA cervical_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cervical vertebra is a kind of vertebra", "pln": ["(: cnet_isa_01d8fc991a (IsA cervical_vertebra vertebra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cervicitis is a kind of inflammation", "pln": ["(: cnet_isa_db89be50bd (IsA cervicitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cervicofacial actinomycosis is a kind of actinomycosis", "pln": ["(: cnet_isa_b58efbba5e (IsA cervicofacial_actinomycosis actinomycosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cervidae is a kind of mammal family", "pln": ["(: cnet_isa_a33ce8e573 (IsA cervidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cervix is a kind of orifice", "pln": ["(: cnet_isa_04e551dd4b (IsA cervix orifice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cervus is a kind of mammal genus", "pln": ["(: cnet_isa_fe51cf5e78 (IsA cervus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ceryle is a kind of bird genus", "pln": ["(: cnet_isa_c6aee9e350 (IsA ceryle bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cesarean delivery is a kind of delivery", "pln": ["(: cnet_isa_9029ed48b0 (IsA cesarean_delivery delivery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cesium is a kind of metallic element", "pln": ["(: cnet_isa_2874022c2a (IsA cesium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cesium 137 is a kind of cesium", "pln": ["(: cnet_isa_4ebc0e056e (IsA cesium_137 cesium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cessation is a kind of stop", "pln": ["(: cnet_isa_45cebc1046 (IsA cessation stop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cession is a kind of relinquishment", "pln": ["(: cnet_isa_08bce491a5 (IsA cession relinquishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cesspool is a kind of cistern", "pln": ["(: cnet_isa_63ccfed457 (IsA cesspool cistern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cestida is a kind of animal order", "pln": ["(: cnet_isa_98372783dc (IsA cestida animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cestidae is a kind of ctenophore family", "pln": ["(: cnet_isa_2404bf6747 (IsA cestidae ctenophore_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cestoda is a kind of class", "pln": ["(: cnet_isa_421d54f874 (IsA cestoda class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cestrum is a kind of asterid dicot genus", "pln": ["(: cnet_isa_901a73c2a1 (IsA cestrum asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cestum is a kind of ctenophore genus", "pln": ["(: cnet_isa_16a904447a (IsA cestum ctenophore_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cetacea is a kind of animal order", "pln": ["(: cnet_isa_b141133585 (IsA cetacea animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cetacean is a kind of aquatic mammal", "pln": ["(: cnet_isa_54805660a6 (IsA cetacean aquatic_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ceterach is a kind of fern genus", "pln": ["(: cnet_isa_eb1dd8b96d (IsA ceterach fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cetonia is a kind of arthropod genus", "pln": ["(: cnet_isa_be48c79e26 (IsA cetonia arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cetoniidae is a kind of arthropod family", "pln": ["(: cnet_isa_7bbad28d2b (IsA cetoniidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cetorhinidae is a kind of fish family", "pln": ["(: cnet_isa_748c0aa884 (IsA cetorhinidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cetorhinus is a kind of fish genus", "pln": ["(: cnet_isa_6eff58e0e4 (IsA cetorhinus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cetraria is a kind of fungus genus", "pln": ["(: cnet_isa_75b8872fc4 (IsA cetraria fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cetrimide is a kind of cationic detergent", "pln": ["(: cnet_isa_0ff1b8e0b4 (IsA cetrimide cationic_detergent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cetrimide is a kind of disinfectant", "pln": ["(: cnet_isa_0d81b4bd4a (IsA cetrimide disinfectant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cewa is a kind of african", "pln": ["(: cnet_isa_4f8fc8c8dc (IsA cewa african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ceylon bowstring hemp is a kind of sansevieria", "pln": ["(: cnet_isa_305194dd4e (IsA ceylon_bowstring_hemp sansevieria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ceylonite is a kind of spinel", "pln": ["(: cnet_isa_1418b3ce77 (IsA ceylonite spinel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cgs is a kind of metric system", "pln": ["(: cnet_isa_737febbfc1 (IsA cgs metric_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ch in dynasty is a kind of dynasty", "pln": ["(: cnet_isa_dc988eae8c (IsA ch_in_dynasty dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cha cha is a kind of ballroom dancing", "pln": ["(: cnet_isa_12959cf3de (IsA cha_cha ballroom_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chabad is a kind of hasidism", "pln": ["(: cnet_isa_1634141076 (IsA chabad hasidism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chabazite is a kind of zeolite", "pln": ["(: cnet_isa_f299a5aac2 (IsA chabazite zeolite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chablis is a kind of burgundy", "pln": ["(: cnet_isa_78e1385b05 (IsA chablis burgundy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chablis is a kind of white wine", "pln": ["(: cnet_isa_a80fef068d (IsA chablis white_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chachalaca is a kind of gallinaceous bird", "pln": ["(: cnet_isa_efa4ac4d44 (IsA chachalaca gallinaceous_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chachka is a kind of collectible", "pln": ["(: cnet_isa_901b447784 (IsA chachka collectible) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chachka is a kind of girl", "pln": ["(: cnet_isa_4575376ab5 (IsA chachka girl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chacma is a kind of baboon", "pln": ["(: cnet_isa_663cf30dd9 (IsA chacma baboon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chad is a kind of country", "pln": ["(: cnet_isa_bacc3517fd (IsA chad country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chad is a kind of afroasiatic", "pln": ["(: cnet_isa_448f607729 (IsA chad afroasiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chad is a kind of paper", "pln": ["(: cnet_isa_10dd198759 (IsA chad paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chadian is a kind of african", "pln": ["(: cnet_isa_e7a81ab38c (IsA chadian african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chadian franc is a kind of franc", "pln": ["(: cnet_isa_a8a79ddc0a (IsA chadian_franc franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chador is a kind of head covering", "pln": ["(: cnet_isa_36c54d4968 (IsA chador head_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chaenactis is a kind of herb", "pln": ["(: cnet_isa_37fc599f52 (IsA chaenactis herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chaenomele is a kind of rosid dicot genus", "pln": ["(: cnet_isa_2080f8239c (IsA chaenomele rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chaenopsis is a kind of fish genus", "pln": ["(: cnet_isa_73a8c3d764 (IsA chaenopsis fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chaeta is a kind of seta", "pln": ["(: cnet_isa_ece4ae75df (IsA chaeta seta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chaetodipterus is a kind of fish genus", "pln": ["(: cnet_isa_539f02784c (IsA chaetodipterus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chaetodon is a kind of butterfly fish", "pln": ["(: cnet_isa_c8542aaae6 (IsA chaetodon butterfly_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chaetodontidae is a kind of fish family", "pln": ["(: cnet_isa_518e880455 (IsA chaetodontidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chaetognatha is a kind of phylum", "pln": ["(: cnet_isa_6b75753b41 (IsA chaetognatha phylum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chafe is a kind of tenderness", "pln": ["(: cnet_isa_ef724ef4ae (IsA chafe tenderness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chafeweed is a kind of cudweed", "pln": ["(: cnet_isa_ca553d9bad (IsA chafeweed cudweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chaff is a kind of foil", "pln": ["(: cnet_isa_789f742f8c (IsA chaff foil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chaff is a kind of plant material", "pln": ["(: cnet_isa_267f28ff42 (IsA chaff plant_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chaffinch is a kind of finch", "pln": ["(: cnet_isa_2e7a81b04d (IsA chaffinch finch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chaffweed is a kind of subshrub", "pln": ["(: cnet_isa_e06c7547e8 (IsA chaffweed subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chafing is a kind of tenderness", "pln": ["(: cnet_isa_913e9920c2 (IsA chafing tenderness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chafing dish is a kind of cooking utensil", "pln": ["(: cnet_isa_32a25d84ad (IsA chafing_dish cooking_utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chafing gear is a kind of covering", "pln": ["(: cnet_isa_90900c66c0 (IsA chafing_gear covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chagatai is a kind of turki", "pln": ["(: cnet_isa_cf83327791 (IsA chagatai turki) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chagrin is a kind of embarrassment", "pln": ["(: cnet_isa_a7e06ed6fb (IsA chagrin embarrassment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chain is a kind of ligament", "pln": ["(: cnet_isa_3a24ded120 (IsA chain ligament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chain is a kind of necklace", "pln": ["(: cnet_isa_8df39b43d3 (IsA chain necklace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chain is a kind of restraint", "pln": ["(: cnet_isa_668eb562ce (IsA chain restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chain is a kind of unit", "pln": ["(: cnet_isa_db2b428356 (IsA chain unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chain is a kind of business", "pln": ["(: cnet_isa_0707974afc (IsA chain business) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chain is a kind of sery", "pln": ["(: cnet_isa_5351addc0f (IsA chain sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chain is a kind of linear unit", "pln": ["(: cnet_isa_9e12cab90d (IsA chain linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chain fern is a kind of fern", "pln": ["(: cnet_isa_d1ccc9dc5b (IsA chain_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chain gang is a kind of gang", "pln": ["(: cnet_isa_edb29bb03e (IsA chain_gang gang) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chain letter is a kind of letter", "pln": ["(: cnet_isa_a294d9b8a0 (IsA chain_letter letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chain mail is a kind of body armor", "pln": ["(: cnet_isa_8a5c8acdf1 (IsA chain_mail body_armor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chain pickerel is a kind of pickerel", "pln": ["(: cnet_isa_17b2914e2d (IsA chain_pickerel pickerel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chain printer is a kind of impact printer", "pln": ["(: cnet_isa_bdbaaafc3f (IsA chain_printer impact_printer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chain reaction is a kind of chemical reaction", "pln": ["(: cnet_isa_0fac8828b3 (IsA chain_reaction chemical_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chain reaction is a kind of nuclear reaction", "pln": ["(: cnet_isa_54e7b2d91f (IsA chain_reaction nuclear_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chain saw is a kind of power saw", "pln": ["(: cnet_isa_2d0f1a5457 (IsA chain_saw power_saw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chain smoker is a kind of smoker", "pln": ["(: cnet_isa_729ab8fd01 (IsA chain_smoker smoker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chain stitch is a kind of crochet stitch", "pln": ["(: cnet_isa_e47433b083 (IsA chain_stitch crochet_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chain stitch is a kind of embroidery stitch", "pln": ["(: cnet_isa_b052a3cce5 (IsA chain_stitch embroidery_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chain store is a kind of shop", "pln": ["(: cnet_isa_fb7b7b7b13 (IsA chain_store shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chain tong is a kind of pipe wrench", "pln": ["(: cnet_isa_46907f97cc (IsA chain_tong pipe_wrench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chain wrench is a kind of chain tong", "pln": ["(: cnet_isa_c2df32cc36 (IsA chain_wrench chain_tong) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chainlink fence is a kind of fence", "pln": ["(: cnet_isa_2288f8ca0e (IsA chainlink_fence fence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chair is a kind of seat", "pln": ["(: cnet_isa_49762b0e4f (IsA chair seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chair by fire is a kind of good place to read", "pln": ["(: cnet_isa_a04ba1d2ac (IsA chair_by_fire good_place_to_read) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chair of state is a kind of chair", "pln": ["(: cnet_isa_483592f21d (IsA chair_of_state chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chairlift is a kind of ski tow", "pln": ["(: cnet_isa_9c941969ee (IsA chairlift ski_tow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chairman is a kind of chair", "pln": ["(: cnet_isa_0d92f4dc66 (IsA chairman chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chairman of board is a kind of corporate executive", "pln": ["(: cnet_isa_67173f373f (IsA chairman_of_board corporate_executive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chairmanship is a kind of position", "pln": ["(: cnet_isa_bed69e6ded (IsA chairmanship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chaise is a kind of carriage", "pln": ["(: cnet_isa_cc75deb668 (IsA chaise carriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chaise longue is a kind of chair", "pln": ["(: cnet_isa_c0270b4a48 (IsA chaise_longue chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chait is a kind of hindu calendar month", "pln": ["(: cnet_isa_7226e92135 (IsA chait hindu_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chaja is a kind of crested screamer", "pln": ["(: cnet_isa_552cf2b086 (IsA chaja crested_screamer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chalaza is a kind of animal tissue", "pln": ["(: cnet_isa_7b01688d18 (IsA chalaza animal_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chalaza is a kind of plant part", "pln": ["(: cnet_isa_b0d27610e6 (IsA chalaza plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chalazion is a kind of sebaceous cyst", "pln": ["(: cnet_isa_1a5d158cc5 (IsA chalazion sebaceous_cyst) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chalcedony is a kind of quartz", "pln": ["(: cnet_isa_d6060891b7 (IsA chalcedony quartz) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chalcedony is a kind of transparent gem", "pln": ["(: cnet_isa_dc5fd0e70b (IsA chalcedony transparent_gem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chalcid fly is a kind of hymenopterous insect", "pln": ["(: cnet_isa_fae6f8ad20 (IsA chalcid_fly hymenopterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chalcididae is a kind of arthropod family", "pln": ["(: cnet_isa_b48c9ad407 (IsA chalcididae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chalcis is a kind of arthropod genus", "pln": ["(: cnet_isa_1a7d7b8fe5 (IsA chalcis arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chalcis fly is a kind of chalcid fly", "pln": ["(: cnet_isa_fb34fb73ca (IsA chalcis_fly chalcid_fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chalcocite is a kind of mineral", "pln": ["(: cnet_isa_f1293d0224 (IsA chalcocite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chalcopyrite is a kind of mineral", "pln": ["(: cnet_isa_f7e0e5372a (IsA chalcopyrite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chalcostigma is a kind of bird genus", "pln": ["(: cnet_isa_2219bdf619 (IsA chalcostigma bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chaldaean is a kind of semite", "pln": ["(: cnet_isa_48aaff08d9 (IsA chaldaean semite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chaldee is a kind of occultist", "pln": ["(: cnet_isa_d5ae378b8d (IsA chaldee occultist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chaldron is a kind of british capacity unit", "pln": ["(: cnet_isa_99fa5ac252 (IsA chaldron british_capacity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chalet is a kind of house", "pln": ["(: cnet_isa_ffd5113426 (IsA chalet house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chalice is a kind of cup", "pln": ["(: cnet_isa_3bb765465f (IsA chalice cup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chalice vine is a kind of shrub", "pln": ["(: cnet_isa_d75fa1b6c6 (IsA chalice_vine shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chalk is a kind of writing implement", "pln": ["(: cnet_isa_212a2ca39e (IsA chalk writing_implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chalk is a kind of white", "pln": ["(: cnet_isa_2ca7982591 (IsA chalk white) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chalk is a kind of calcite", "pln": ["(: cnet_isa_557a8771a8 (IsA chalk calcite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chalk dust is a kind of dust", "pln": ["(: cnet_isa_57a741baa2 (IsA chalk_dust dust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chalk line is a kind of string", "pln": ["(: cnet_isa_23fd29c9e3 (IsA chalk_line string) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chalk talk is a kind of talk", "pln": ["(: cnet_isa_90aeb13d29 (IsA chalk_talk talk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chalkboard is a kind of erasable surface", "pln": ["(: cnet_isa_5dc39e018a (IsA chalkboard erasable_surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chalkpit is a kind of pit", "pln": ["(: cnet_isa_5ecb71e1af (IsA chalkpit pit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "challah is a kind of bread", "pln": ["(: cnet_isa_aa04cbf783 (IsA challah bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "challenge is a kind of demand", "pln": ["(: cnet_isa_d84ae51812 (IsA challenge demand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "challenge is a kind of objection", "pln": ["(: cnet_isa_3dd703c11c (IsA challenge objection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "challenge is a kind of questioning", "pln": ["(: cnet_isa_3b16dc1568 (IsA challenge questioning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "challenge is a kind of speech act", "pln": ["(: cnet_isa_f1a5bdfcfc (IsA challenge speech_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "challenge is a kind of situation", "pln": ["(: cnet_isa_225f61eeab (IsA challenge situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "challis is a kind of fabric", "pln": ["(: cnet_isa_65cb054b7d (IsA challis fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chamaea is a kind of bird genus", "pln": ["(: cnet_isa_7e3a8b677d (IsA chamaea bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chamaecrista is a kind of rosid dicot genus", "pln": ["(: cnet_isa_4d371381da (IsA chamaecrista rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chamaecyparis is a kind of gymnosperm genus", "pln": ["(: cnet_isa_a5f1366982 (IsA chamaecyparis gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chamaecytisus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_f45a9ae475 (IsA chamaecytisus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chamaedaphne is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_d80b5bdb8c (IsA chamaedaphne dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chamaeleo is a kind of reptile genus", "pln": ["(: cnet_isa_9dda8246ba (IsA chamaeleo reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chamaeleontidae is a kind of reptile family", "pln": ["(: cnet_isa_b02e790bec (IsA chamaeleontidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chamaemelum is a kind of asterid dicot genus", "pln": ["(: cnet_isa_982828f6e5 (IsA chamaemelum asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chamber is a kind of enclosure", "pln": ["(: cnet_isa_f8979e94c6 (IsA chamber enclosure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chamber is a kind of room", "pln": ["(: cnet_isa_d840d33503 (IsA chamber room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chamber is a kind of cavity", "pln": ["(: cnet_isa_c7a7928c88 (IsA chamber cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chamber is a kind of assembly", "pln": ["(: cnet_isa_494993f979 (IsA chamber assembly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chamber music is a kind of classical music", "pln": ["(: cnet_isa_ab5438a78a (IsA chamber_music classical_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chamber of commerce is a kind of association", "pln": ["(: cnet_isa_2d855bc5cd (IsA chamber_of_commerce association) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chamber orchestra is a kind of orchestra", "pln": ["(: cnet_isa_edbd370c76 (IsA chamber_orchestra orchestra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chambered nautilus is a kind of cephalopod", "pln": ["(: cnet_isa_97d42fbcae (IsA chambered_nautilus cephalopod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chamberlain is a kind of steward", "pln": ["(: cnet_isa_1eff93ffda (IsA chamberlain steward) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chamberlain is a kind of treasurer", "pln": ["(: cnet_isa_1844386c3e (IsA chamberlain treasurer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chambermaid is a kind of maid", "pln": ["(: cnet_isa_e2b9e2841d (IsA chambermaid maid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chamberpot is a kind of receptacle", "pln": ["(: cnet_isa_450221ccdf (IsA chamberpot receptacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chambray is a kind of fabric", "pln": ["(: cnet_isa_190fa899a1 (IsA chambray fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chameleon is a kind of lizard", "pln": ["(: cnet_isa_2762aa6236 (IsA chameleon lizard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chameleon is a kind of person", "pln": ["(: cnet_isa_ada090c14c (IsA chameleon person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chameleon tree frog is a kind of tree toad", "pln": ["(: cnet_isa_70652ceb0e (IsA chameleon_tree_frog tree_toad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chamfer bit is a kind of bit", "pln": ["(: cnet_isa_940ffe82ee (IsA chamfer_bit bit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chamfer plane is a kind of plane", "pln": ["(: cnet_isa_a9da71ecd8 (IsA chamfer_plane plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chamois is a kind of goat antelope", "pln": ["(: cnet_isa_db9093d4ef (IsA chamois goat_antelope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chamois is a kind of leather", "pln": ["(: cnet_isa_597b3032ba (IsA chamois leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chamois cloth is a kind of piece of cloth", "pln": ["(: cnet_isa_00973b649b (IsA chamois_cloth piece_of_cloth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chamois cress is a kind of herb", "pln": ["(: cnet_isa_751a20e187 (IsA chamois_cress herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chamomile is a kind of herb", "pln": ["(: cnet_isa_caf4c7ab51 (IsA chamomile herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chamosite is a kind of iron ore", "pln": ["(: cnet_isa_6528161802 (IsA chamosite iron_ore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "champage is a kind of light sparkling wine", "pln": ["(: cnet_isa_4bf4b8a77f (IsA champage light_sparkling_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "champagne is a kind of alcoholic beverage", "pln": ["(: cnet_isa_d82ee028ab (IsA champagne alcoholic_beverage) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "champagne is a kind of alcoholic drink", "pln": ["(: cnet_isa_3b0bbf9f81 (IsA champagne alcoholic_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "champagne is a kind of french sparkling wine", "pln": ["(: cnet_isa_1a369feca3 (IsA champagne french_sparkling_wine) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "champagne is a kind of region of france", "pln": ["(: cnet_isa_68010ef642 (IsA champagne region_of_france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "champagne is a kind of sparkling wine", "pln": ["(: cnet_isa_b6a38b3c3e (IsA champagne sparkling_wine) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "champagne cup is a kind of cup", "pln": ["(: cnet_isa_eedacecfe5 (IsA champagne_cup cup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "champerty is a kind of wrongdoing", "pln": ["(: cnet_isa_83b1be5ace (IsA champerty wrongdoing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "champion is a kind of defender", "pln": ["(: cnet_isa_951af21278 (IsA champion defender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "champion is a kind of rival", "pln": ["(: cnet_isa_191a3727ac (IsA champion rival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "championship is a kind of contest", "pln": ["(: cnet_isa_16efa8e138 (IsA championship contest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "championship is a kind of high status", "pln": ["(: cnet_isa_5a6561d9ba (IsA championship high_status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chanar is a kind of shrub", "pln": ["(: cnet_isa_d973f9243d (IsA chanar shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chance is a kind of risk", "pln": ["(: cnet_isa_5e8c75b590 (IsA chance risk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chance medley is a kind of manslaughter", "pln": ["(: cnet_isa_5edd2e325a (IsA chance_medley manslaughter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chancel is a kind of area", "pln": ["(: cnet_isa_5ce3a6da77 (IsA chancel area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chancellery is a kind of government building", "pln": ["(: cnet_isa_b025060dd5 (IsA chancellery government_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chancellor is a kind of cabinet minister", "pln": ["(: cnet_isa_a1878b899e (IsA chancellor cabinet_minister) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chancellor is a kind of head of state", "pln": ["(: cnet_isa_b2d7dff59b (IsA chancellor head_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chancellor is a kind of principal", "pln": ["(: cnet_isa_a5c2bc727a (IsA chancellor principal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chancellorship is a kind of position", "pln": ["(: cnet_isa_0660e87f95 (IsA chancellorship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chancery is a kind of archive", "pln": ["(: cnet_isa_3ec61422c8 (IsA chancery archive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chancery is a kind of court", "pln": ["(: cnet_isa_9e60d83b88 (IsA chancery court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chancre is a kind of sore", "pln": ["(: cnet_isa_bb6a8134aa (IsA chancre sore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chancroid is a kind of ulcer", "pln": ["(: cnet_isa_4cf9823653 (IsA chancroid ulcer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chandelier is a kind of lighting fixture", "pln": ["(: cnet_isa_07a7f82d15 (IsA chandelier lighting_fixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chandelle is a kind of flight maneuver", "pln": ["(: cnet_isa_fd222c6df7 (IsA chandelle flight_maneuver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chandler is a kind of maker", "pln": ["(: cnet_isa_381624e131 (IsA chandler maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chandler is a kind of retailer", "pln": ["(: cnet_isa_705422eafa (IsA chandler retailer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chandlery is a kind of candle", "pln": ["(: cnet_isa_6da1c7284e (IsA chandlery candle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chandlery is a kind of storeroom", "pln": ["(: cnet_isa_c42511e2d8 (IsA chandlery storeroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chanfron is a kind of armor plate", "pln": ["(: cnet_isa_e99efd45d1 (IsA chanfron armor_plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "change is a kind of action", "pln": ["(: cnet_isa_47caace45b (IsA change action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "change is a kind of clothing", "pln": ["(: cnet_isa_3790dc6f38 (IsA change clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "change is a kind of thing", "pln": ["(: cnet_isa_20c1b656d0 (IsA change thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "change is a kind of happening", "pln": ["(: cnet_isa_fcfbfe820d (IsA change happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "change is a kind of relation", "pln": ["(: cnet_isa_3c675ab981 (IsA change relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "change is a kind of consequence", "pln": ["(: cnet_isa_d303a58faf (IsA change consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "change is a kind of cash", "pln": ["(: cnet_isa_d4e66e75ad (IsA change cash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "change is a kind of coin", "pln": ["(: cnet_isa_3fdec6893c (IsA change coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "change of color is a kind of change of state", "pln": ["(: cnet_isa_429f53ac87 (IsA change_of_color change_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "change of course is a kind of change of direction", "pln": ["(: cnet_isa_b4e2087f0b (IsA change_of_course change_of_direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "change of direction is a kind of change", "pln": ["(: cnet_isa_a0abad4ad5 (IsA change_of_direction change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "change of integrity is a kind of change", "pln": ["(: cnet_isa_9d123ab863 (IsA change_of_integrity change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "change of location is a kind of movement", "pln": ["(: cnet_isa_a67244267b (IsA change_of_location movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "change of magnitude is a kind of change", "pln": ["(: cnet_isa_a531aef6d5 (IsA change_of_magnitude change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "change of shape is a kind of change", "pln": ["(: cnet_isa_aedc6c51b8 (IsA change_of_shape change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "change of state is a kind of change", "pln": ["(: cnet_isa_d6bebc7516 (IsA change_of_state change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "change ringing is a kind of bell ringing", "pln": ["(: cnet_isa_cd44c4032a (IsA change_ringing bell_ringing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "change up is a kind of pitch", "pln": ["(: cnet_isa_78cc67561f (IsA change_up pitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "changeableness is a kind of quality", "pln": ["(: cnet_isa_c1a109efb4 (IsA changeableness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "changelessness is a kind of lastingness", "pln": ["(: cnet_isa_cfb78c4401 (IsA changelessness lastingness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "changelessness is a kind of quality", "pln": ["(: cnet_isa_7655472eb5 (IsA changelessness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "changeling is a kind of child", "pln": ["(: cnet_isa_76ba0901d0 (IsA changeling child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "changer is a kind of person", "pln": ["(: cnet_isa_e2af7a424c (IsA changer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "changing tire is a kind of hard work", "pln": ["(: cnet_isa_679451ee96 (IsA changing_tire hard_work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "channel is a kind of passage", "pln": ["(: cnet_isa_48b4e5faf3 (IsA channel passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "channel is a kind of television station", "pln": ["(: cnet_isa_1162e362b4 (IsA channel television_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "channel is a kind of communication", "pln": ["(: cnet_isa_0758f1f4f4 (IsA channel communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "channel is a kind of transmission", "pln": ["(: cnet_isa_244ff7cad1 (IsA channel transmission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "channel is a kind of body of water", "pln": ["(: cnet_isa_38fc078fe1 (IsA channel body_of_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "channel capacity is a kind of data rate", "pln": ["(: cnet_isa_c9771271ad (IsA channel_capacity data_rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "channel catfish is a kind of catfish", "pln": ["(: cnet_isa_522bca9e51 (IsA channel_catfish catfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "channelization is a kind of management", "pln": ["(: cnet_isa_5b370df94c (IsA channelization management) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "channidae is a kind of class", "pln": ["(: cnet_isa_57fd05b5bb (IsA channidae class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "chaos is a kind of confusion", "pln": ["(: cnet_isa_36cb6950b2 (IsA chaos confusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chanson de geste is a kind of epic poem", "pln": ["(: cnet_isa_debef30749 (IsA chanson_de_geste epic_poem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chant is a kind of religious song", "pln": ["(: cnet_isa_081885e89b (IsA chant religious_song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chanter is a kind of pipe", "pln": ["(: cnet_isa_316b752d27 (IsA chanter pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chanterelle is a kind of agaric", "pln": ["(: cnet_isa_ad3e5fc17a (IsA chanterelle agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chantey is a kind of work song", "pln": ["(: cnet_isa_cb76664e5b (IsA chantey work_song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chantry is a kind of chapel", "pln": ["(: cnet_isa_3b0e8cd4d9 (IsA chantry chapel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chantry is a kind of endowment", "pln": ["(: cnet_isa_5432734e9d (IsA chantry endowment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chao is a kind of physical phenomenon", "pln": ["(: cnet_isa_56b677e600 (IsA chao physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chao is a kind of dynamical system", "pln": ["(: cnet_isa_a176c45c0a (IsA chao dynamical_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chao is a kind of confusion", "pln": ["(: cnet_isa_59216ac642 (IsA chao confusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chap is a kind of legging", "pln": ["(: cnet_isa_e2f8851496 (IsA chap legging) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chap is a kind of crack", "pln": ["(: cnet_isa_87963a0a9b (IsA chap crack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chap is a kind of male", "pln": ["(: cnet_isa_b551b09d45 (IsA chap male) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chaparral mallow is a kind of mallow", "pln": ["(: cnet_isa_29b498ac85 (IsA chaparral_mallow mallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chaparral pea is a kind of shrub", "pln": ["(: cnet_isa_ebc5150e31 (IsA chaparral_pea shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chapatti is a kind of flatbread", "pln": ["(: cnet_isa_a2e67836a1 (IsA chapatti flatbread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chapel is a kind of place of worship", "pln": ["(: cnet_isa_29c0483676 (IsA chapel place_of_worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chapel service is a kind of service", "pln": ["(: cnet_isa_f4d2f9669e (IsA chapel_service service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chapelgoer is a kind of protestant", "pln": ["(: cnet_isa_6e61b1dd3c (IsA chapelgoer protestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chaperon is a kind of defender", "pln": ["(: cnet_isa_457a433199 (IsA chaperon defender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chaplain is a kind of clergyman", "pln": ["(: cnet_isa_3b52d4c714 (IsA chaplain clergyman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chaplaincy is a kind of position", "pln": ["(: cnet_isa_4e3a4fd8cc (IsA chaplaincy position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chapman is a kind of peddler", "pln": ["(: cnet_isa_6bdcaacf8e (IsA chapman peddler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chapter is a kind of section", "pln": ["(: cnet_isa_feced3ce30 (IsA chapter section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chapter is a kind of episode", "pln": ["(: cnet_isa_d8195b18b6 (IsA chapter episode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chapter is a kind of assembly", "pln": ["(: cnet_isa_4ff18824f6 (IsA chapter assembly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chapter is a kind of club", "pln": ["(: cnet_isa_617e66196f (IsA chapter club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chapter is a kind of phase", "pln": ["(: cnet_isa_04ea44c8e0 (IsA chapter phase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chapterhouse is a kind of building", "pln": ["(: cnet_isa_ba4a43d32f (IsA chapterhouse building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chapterhouse is a kind of house", "pln": ["(: cnet_isa_e537cea34a (IsA chapterhouse house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "char is a kind of salmonid", "pln": ["(: cnet_isa_e0fbaee7f8 (IsA char salmonid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "char is a kind of carbon", "pln": ["(: cnet_isa_5e191dc5b9 (IsA char carbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chara is a kind of protoctist genus", "pln": ["(: cnet_isa_19b961558a (IsA chara protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "characeae is a kind of protoctist family", "pln": ["(: cnet_isa_ce2dcee2c1 (IsA characeae protoctist_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "characidae is a kind of fish family", "pln": ["(: cnet_isa_c9c4362f2d (IsA characidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "characin is a kind of cypriniform fish", "pln": ["(: cnet_isa_fe59cfa550 (IsA characin cypriniform_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "characinidae is a kind of fish family", "pln": ["(: cnet_isa_477e5c3ed3 (IsA characinidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "character is a kind of trait", "pln": ["(: cnet_isa_c261fdd4ea (IsA character trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "character is a kind of portrayal", "pln": ["(: cnet_isa_8f0c1841e5 (IsA character portrayal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "character is a kind of recommendation", "pln": ["(: cnet_isa_72d1eb5feb (IsA character recommendation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "character is a kind of written symbol", "pln": ["(: cnet_isa_2b4fcadc4a (IsA character written_symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "character is a kind of attribute", "pln": ["(: cnet_isa_8693e84b42 (IsA character attribute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "character is a kind of adult", "pln": ["(: cnet_isa_574f489b54 (IsA character adult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "character is a kind of repute", "pln": ["(: cnet_isa_6fb7cf944c (IsA character repute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "character actor is a kind of actor", "pln": ["(: cnet_isa_173cf74ffb (IsA character_actor actor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "character assassination is a kind of defamation", "pln": ["(: cnet_isa_01e50c2140 (IsA character_assassination defamation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "character printer is a kind of printer", "pln": ["(: cnet_isa_9d19cc40a6 (IsA character_printer printer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "character set is a kind of list", "pln": ["(: cnet_isa_675c2eefd6 (IsA character_set list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "character witness is a kind of witness", "pln": ["(: cnet_isa_9c875d1102 (IsA character_witness witness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "characteristic is a kind of quality", "pln": ["(: cnet_isa_f6b13473cf (IsA characteristic quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "characteristic is a kind of integer", "pln": ["(: cnet_isa_ff96e4fd2b (IsA characteristic integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "characteristic is a kind of property", "pln": ["(: cnet_isa_516dee655f (IsA characteristic property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "characteristic curve is a kind of graph", "pln": ["(: cnet_isa_e7864011e7 (IsA characteristic_curve graph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "characteristic root of square matrix is a kind of value", "pln": ["(: cnet_isa_35743afe4d (IsA characteristic_root_of_square_matrix value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "characterization is a kind of description", "pln": ["(: cnet_isa_375d8b5bb1 (IsA characterization description) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charade is a kind of word", "pln": ["(: cnet_isa_38623e301a (IsA charade word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charade is a kind of guessing game", "pln": ["(: cnet_isa_ddebacf2ab (IsA charade guessing_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "charadrii is a kind of animal order", "pln": ["(: cnet_isa_889a617ccd (IsA charadrii animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charadriidae is a kind of bird family", "pln": ["(: cnet_isa_7541f9e3bf (IsA charadriidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charadriiforme is a kind of animal order", "pln": ["(: cnet_isa_1bd6882468 (IsA charadriiforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "charadrius is a kind of bird genus", "pln": ["(: cnet_isa_4158eb1bd4 (IsA charadrius bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charale is a kind of protoctist order", "pln": ["(: cnet_isa_419b6c880d (IsA charale protoctist_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charcoal is a kind of drawing", "pln": ["(: cnet_isa_d2a0a07437 (IsA charcoal drawing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charcoal is a kind of writing implement", "pln": ["(: cnet_isa_d1efa4ab94 (IsA charcoal writing_implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charcoal is a kind of gray", "pln": ["(: cnet_isa_3ba7edcf47 (IsA charcoal gray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charcoal is a kind of carbon", "pln": ["(: cnet_isa_abb06e39de (IsA charcoal carbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charcoal is a kind of fuel", "pln": ["(: cnet_isa_e78b6285ed (IsA charcoal fuel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charcoal burner is a kind of stove", "pln": ["(: cnet_isa_79bd93f3c4 (IsA charcoal_burner stove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charcoal burner is a kind of worker", "pln": ["(: cnet_isa_901780ee4d (IsA charcoal_burner worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charcot marie tooth disease is a kind of neuropathy", "pln": ["(: cnet_isa_6ff05b9881 (IsA charcot_marie_tooth_disease neuropathy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charcuterie is a kind of delicatessen", "pln": ["(: cnet_isa_922b55887e (IsA charcuterie delicatessen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chard is a kind of green", "pln": ["(: cnet_isa_ff3580275a (IsA chard green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chard is a kind of beet", "pln": ["(: cnet_isa_330da0d53b (IsA chard beet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chardonnay is a kind of white wine", "pln": ["(: cnet_isa_f8a948ba29 (IsA chardonnay white_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chardonnay is a kind of vinifera", "pln": ["(: cnet_isa_d6d724c669 (IsA chardonnay vinifera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charge is a kind of attack", "pln": ["(: cnet_isa_df228b49f7 (IsA charge attack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charge is a kind of explosive", "pln": ["(: cnet_isa_a769529e31 (IsA charge explosive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charge is a kind of heraldry", "pln": ["(: cnet_isa_1580a180c6 (IsA charge heraldry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charge is a kind of request", "pln": ["(: cnet_isa_e5e9819ac2 (IsA charge request) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charge is a kind of pleading", "pln": ["(: cnet_isa_ec7bc59cc9 (IsA charge pleading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charge is a kind of dependant", "pln": ["(: cnet_isa_a9bcb7523c (IsA charge dependant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charge is a kind of electrical phenomenon", "pln": ["(: cnet_isa_f422ff434f (IsA charge electrical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charge is a kind of cost", "pln": ["(: cnet_isa_65182a7a1f (IsA charge cost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charge is a kind of liability", "pln": ["(: cnet_isa_7c5d5907bd (IsA charge liability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charge d affaire is a kind of diplomat", "pln": ["(: cnet_isa_7780b89d9b (IsA charge_d_affaire diplomat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charge exchange accelerator is a kind of accelerator", "pln": ["(: cnet_isa_761513fe34 (IsA charge_exchange_accelerator accelerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charge of quarter is a kind of enlisted man", "pln": ["(: cnet_isa_2134163172 (IsA charge_of_quarter enlisted_man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charge unit is a kind of electromagnetic unit", "pln": ["(: cnet_isa_361ff47cc3 (IsA charge_unit electromagnetic_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charger is a kind of warhorse", "pln": ["(: cnet_isa_c45556000a (IsA charger warhorse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charger is a kind of device", "pln": ["(: cnet_isa_8aab2a5ed3 (IsA charger device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chari nile is a kind of nilo saharan", "pln": ["(: cnet_isa_013061bda5 (IsA chari_nile nilo_saharan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charina is a kind of reptile genus", "pln": ["(: cnet_isa_60b062a562 (IsA charina reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chariot is a kind of archetype of spirit below", "pln": ["(: cnet_isa_7a211336a3 (IsA chariot archetype_of_spirit_below) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chariot is a kind of carriage", "pln": ["(: cnet_isa_a5e9f5f387 (IsA chariot carriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chariot is a kind of horse drawn vehicle", "pln": ["(: cnet_isa_ee3623859b (IsA chariot horse_drawn_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chariot race is a kind of race", "pln": ["(: cnet_isa_b2cd72cbb0 (IsA chariot_race race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charioteer is a kind of driver", "pln": ["(: cnet_isa_ffbd4aa2f9 (IsA charioteer driver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charisma is a kind of attractiveness", "pln": ["(: cnet_isa_00e836e924 (IsA charisma attractiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charisma is a kind of interest", "pln": ["(: cnet_isa_48ae51bf87 (IsA charisma interest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charitable trust is a kind of trust", "pln": ["(: cnet_isa_0503d68671 (IsA charitable_trust trust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charitableness is a kind of generosity", "pln": ["(: cnet_isa_58054ffca7 (IsA charitableness generosity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charity is a kind of giving", "pln": ["(: cnet_isa_ae52d87f60 (IsA charity giving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charity is a kind of benevolence", "pln": ["(: cnet_isa_0be6226865 (IsA charity benevolence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charity is a kind of theological virtue", "pln": ["(: cnet_isa_4fe43ee4be (IsA charity theological_virtue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charity is a kind of foundation", "pln": ["(: cnet_isa_982619db02 (IsA charity foundation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charity is a kind of institution", "pln": ["(: cnet_isa_b31e3fac5b (IsA charity institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "charlatanism is a kind of dishonesty", "pln": ["(: cnet_isa_cd9a8b6992 (IsA charlatanism dishonesty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charle barkley is a kind of basketball player", "pln": ["(: cnet_isa_9a7478058a (IsA charle_barkley basketball_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charle hard towne is a kind of physicist", "pln": ["(: cnet_isa_a536b4c75a (IsA charle_hard_towne physicist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charleston is a kind of ballroom dancing", "pln": ["(: cnet_isa_50ab865c91 (IsA charleston ballroom_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charley horse is a kind of spasm", "pln": ["(: cnet_isa_621e2740c5 (IsA charley_horse spasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charlotte is a kind of dessert", "pln": ["(: cnet_isa_5d01d651fc (IsA charlotte dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charlotte russe is a kind of charlotte", "pln": ["(: cnet_isa_69e057896f (IsA charlotte_russe charlotte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charm is a kind of object", "pln": ["(: cnet_isa_21cdbe5a4e (IsA charm object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charm is a kind of flavor", "pln": ["(: cnet_isa_97b907d9fe (IsA charm flavor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charm campaign is a kind of campaign", "pln": ["(: cnet_isa_23a25d359c (IsA charm_campaign campaign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charm quark is a kind of quark", "pln": ["(: cnet_isa_d7f11bed2f (IsA charm_quark quark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "charmer is a kind of person", "pln": ["(: cnet_isa_5d000c20bb (IsA charmer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charnel house is a kind of vault", "pln": ["(: cnet_isa_57fab4a608 (IsA charnel_house vault) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "charolais is a kind of beef", "pln": ["(: cnet_isa_715ea7321b (IsA charolais beef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charon is a kind of ferryman", "pln": ["(: cnet_isa_ffe5788b3d (IsA charon ferryman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charophyceae is a kind of class", "pln": ["(: cnet_isa_70a32a5107 (IsA charophyceae class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charred pancake cup is a kind of sarcosomataceae", "pln": ["(: cnet_isa_26c491c4b9 (IsA charred_pancake_cup sarcosomataceae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charronia is a kind of mammal genus", "pln": ["(: cnet_isa_cff3e33014 (IsA charronia mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chart is a kind of map", "pln": ["(: cnet_isa_4b8f1c6aac (IsA chart map) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chart is a kind of list", "pln": ["(: cnet_isa_84d667be29 (IsA chart list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chart is a kind of visual communication", "pln": ["(: cnet_isa_e1f522c218 (IsA chart visual_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charter is a kind of contract", "pln": ["(: cnet_isa_9710a88980 (IsA charter contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charter is a kind of document", "pln": ["(: cnet_isa_33214b041a (IsA charter document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charter member is a kind of member", "pln": ["(: cnet_isa_1f02df9426 (IsA charter_member member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "charter school is a kind of public school", "pln": ["(: cnet_isa_8f0a728c9c (IsA charter_school public_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chartered accountant is a kind of accountant", "pln": ["(: cnet_isa_1efaff16c7 (IsA chartered_accountant accountant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charterhouse is a kind of monastery", "pln": ["(: cnet_isa_dacc79670c (IsA charterhouse monastery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chartism is a kind of ethic", "pln": ["(: cnet_isa_fcacec7860 (IsA chartism ethic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chartist is a kind of market analyst", "pln": ["(: cnet_isa_33dae54174 (IsA chartist market_analyst) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chartist is a kind of reformer", "pln": ["(: cnet_isa_f71abcb2b4 (IsA chartist reformer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chartreuse is a kind of color", "pln": ["(: cnet_isa_4b36a63d9f (IsA chartreuse color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chartreuse is a kind of liqueur", "pln": ["(: cnet_isa_5e2a36bb00 (IsA chartreuse liqueur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charwoman is a kind of cleaner", "pln": ["(: cnet_isa_f450389167 (IsA charwoman cleaner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "charybdis is a kind of whirlpool", "pln": ["(: cnet_isa_be568b4e17 (IsA charybdis whirlpool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chase is a kind of frame", "pln": ["(: cnet_isa_2170647666 (IsA chase frame) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chaser is a kind of drink", "pln": ["(: cnet_isa_62fb0d0895 (IsA chaser drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chasm is a kind of opening", "pln": ["(: cnet_isa_ec4ef4d499 (IsA chasm opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chasse is a kind of dance step", "pln": ["(: cnet_isa_5b5764112c (IsA chasse dance_step) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chassid is a kind of orthodox jew", "pln": ["(: cnet_isa_3820431ee5 (IsA chassid orthodox_jew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chassis is a kind of mounting", "pln": ["(: cnet_isa_a57594da8b (IsA chassis mounting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chassis is a kind of skeleton", "pln": ["(: cnet_isa_74713ca101 (IsA chassis skeleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chasteness is a kind of plainness", "pln": ["(: cnet_isa_a2ec3423cf (IsA chasteness plainness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chastity is a kind of abstinence", "pln": ["(: cnet_isa_7e45286afc (IsA chastity abstinence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chasuble is a kind of vestment", "pln": ["(: cnet_isa_d1e14fa4e5 (IsA chasuble vestment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chat is a kind of conversation", "pln": ["(: cnet_isa_b26e33eb70 (IsA chat conversation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chat room is a kind of web site", "pln": ["(: cnet_isa_7640d63b7c (IsA chat_room web_site) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chateau is a kind of country house", "pln": ["(: cnet_isa_b0e2c7b2ae (IsA chateau country_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chateaubriand is a kind of fillet", "pln": ["(: cnet_isa_1c2ccf28e9 (IsA chateaubriand fillet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chatelaine is a kind of chain", "pln": ["(: cnet_isa_6c780a11a8 (IsA chatelaine chain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chatelaine is a kind of mistress", "pln": ["(: cnet_isa_c9270f2cf6 (IsA chatelaine mistress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chateura is a kind of bird genus", "pln": ["(: cnet_isa_172b131b6b (IsA chateura bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chattel is a kind of personal property", "pln": ["(: cnet_isa_fe72581d3c (IsA chattel personal_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chattel mortgage is a kind of mortgage", "pln": ["(: cnet_isa_cfac4fe6d1 (IsA chattel_mortgage mortgage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chatter is a kind of noise", "pln": ["(: cnet_isa_4193da90bb (IsA chatter noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chatter mark is a kind of blemish", "pln": ["(: cnet_isa_f79a34dc81 (IsA chatter_mark blemish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chatter mark is a kind of erosion", "pln": ["(: cnet_isa_34a9fd623a (IsA chatter_mark erosion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chatterer is a kind of speaker", "pln": ["(: cnet_isa_8f2522d63f (IsA chatterer speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chauffeur is a kind of driver", "pln": ["(: cnet_isa_631739b5f1 (IsA chauffeur driver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chauffeuse is a kind of chauffeur", "pln": ["(: cnet_isa_e71a8d9b73 (IsA chauffeuse chauffeur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chaulmoogra is a kind of tree", "pln": ["(: cnet_isa_b543d7c959 (IsA chaulmoogra tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chaulmoogra oil is a kind of oil", "pln": ["(: cnet_isa_88e3d41cd7 (IsA chaulmoogra_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chauna is a kind of bird genus", "pln": ["(: cnet_isa_f18d19dbe5 (IsA chauna bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chauvinism is a kind of patriotism", "pln": ["(: cnet_isa_84ebf9abf5 (IsA chauvinism patriotism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chauvinist is a kind of bigot", "pln": ["(: cnet_isa_32d1ef4370 (IsA chauvinist bigot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chauvinist is a kind of patriot", "pln": ["(: cnet_isa_60dfcb83ff (IsA chauvinist patriot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheap money is a kind of credit", "pln": ["(: cnet_isa_832c952c50 (IsA cheap_money credit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheap shot is a kind of shot", "pln": ["(: cnet_isa_4899fc44ed (IsA cheap_shot shot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheapjack is a kind of peddler", "pln": ["(: cnet_isa_0c1cbad7eb (IsA cheapjack peddler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheapness is a kind of tastelessness", "pln": ["(: cnet_isa_fe10fd3e04 (IsA cheapness tastelessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheapskate is a kind of miser", "pln": ["(: cnet_isa_d33843fec6 (IsA cheapskate miser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheat is a kind of deception", "pln": ["(: cnet_isa_25de909271 (IsA cheat deception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chebab is a kind of adolescent", "pln": ["(: cnet_isa_3b24429b28 (IsA chebab adolescent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chechen is a kind of caucasian", "pln": ["(: cnet_isa_c782413198 (IsA chechen caucasian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chechen is a kind of russian", "pln": ["(: cnet_isa_87c089f404 (IsA chechen russian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "check is a kind of inspection", "pln": ["(: cnet_isa_78c50c4005 (IsA check inspection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "check is a kind of obstruction", "pln": ["(: cnet_isa_6ac65cc12c (IsA check obstruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "check is a kind of weave", "pln": ["(: cnet_isa_0279c13543 (IsA check weave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "check is a kind of blemish", "pln": ["(: cnet_isa_6a6c749f77 (IsA check blemish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "check is a kind of chess move", "pln": ["(: cnet_isa_d27ea20296 (IsA check chess_move) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "check is a kind of bill", "pln": ["(: cnet_isa_2da56ead40 (IsA check bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "check is a kind of draft", "pln": ["(: cnet_isa_1336c146f8 (IsA check draft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "check character is a kind of character", "pln": ["(: cnet_isa_dd5c248558 (IsA check_character character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "check girl is a kind of checker", "pln": ["(: cnet_isa_8e8caae4e4 (IsA check_girl checker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "check in is a kind of arrival", "pln": ["(: cnet_isa_d6234b88ec (IsA check_in arrival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "check mark is a kind of mark", "pln": ["(: cnet_isa_6c44840ee7 (IsA check_mark mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "check register is a kind of register", "pln": ["(: cnet_isa_96fa015a8b (IsA check_register register) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "checkbook is a kind of record", "pln": ["(: cnet_isa_206a9ee1dc (IsA checkbook record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "checker is a kind of man", "pln": ["(: cnet_isa_88c9b3eb36 (IsA checker man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "checker is a kind of attendant", "pln": ["(: cnet_isa_2bc167bdfa (IsA checker attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "checker is a kind of examiner", "pln": ["(: cnet_isa_26194fba48 (IsA checker examiner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "checkerbloom is a kind of mallow", "pln": ["(: cnet_isa_36be304808 (IsA checkerbloom mallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "checkerboard is a kind of board", "pln": ["(: cnet_isa_33a4769030 (IsA checkerboard board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "checkered whiptail is a kind of whiptail", "pln": ["(: cnet_isa_e6d76c50f6 (IsA checkered_whiptail whiptail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "checker is a kind of board game", "pln": ["(: cnet_isa_329f72b763 (IsA checker board_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "checking account is a kind of bank account", "pln": ["(: cnet_isa_89a3acd871 (IsA checking_account bank_account) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "checking program is a kind of program", "pln": ["(: cnet_isa_3fe3c860e3 (IsA checking_program program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "checklist is a kind of list", "pln": ["(: cnet_isa_6f3079e27f (IsA checklist list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "checkmate is a kind of chess move", "pln": ["(: cnet_isa_6af39e358a (IsA checkmate chess_move) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "checkmate is a kind of victory", "pln": ["(: cnet_isa_bc7f316ebd (IsA checkmate victory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "checkout is a kind of counter", "pln": ["(: cnet_isa_2ea2fb0306 (IsA checkout counter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "checkout is a kind of departure time", "pln": ["(: cnet_isa_8f78b266de (IsA checkout departure_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "checkout line is a kind of queue", "pln": ["(: cnet_isa_930354787e (IsA checkout_line queue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "checkpoint is a kind of stop", "pln": ["(: cnet_isa_91bbcfc35b (IsA checkpoint stop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "checkroom is a kind of room", "pln": ["(: cnet_isa_0ebecf0b40 (IsA checkroom room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "checksum is a kind of confirmation", "pln": ["(: cnet_isa_ce409a0b87 (IsA checksum confirmation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "checkup is a kind of medical exam", "pln": ["(: cnet_isa_3d6295c36b (IsA checkup medical_exam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "checkup is a kind of examination", "pln": ["(: cnet_isa_415432f39f (IsA checkup examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheddar is a kind of cheese", "pln": ["(: cnet_isa_6d1688fbb7 (IsA cheddar cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheddar pink is a kind of pink", "pln": ["(: cnet_isa_3546f5dc8e (IsA cheddar_pink pink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheek is a kind of feature", "pln": ["(: cnet_isa_f55db49f15 (IsA cheek feature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheek muscle is a kind of facial muscle", "pln": ["(: cnet_isa_ac086cdb0a (IsA cheek_muscle facial_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheek pouch is a kind of pouch", "pln": ["(: cnet_isa_eba73a4f50 (IsA cheek_pouch pouch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheekbone is a kind of bone", "pln": ["(: cnet_isa_35a8621842 (IsA cheekbone bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheekpiece is a kind of strap", "pln": ["(: cnet_isa_f445d261a3 (IsA cheekpiece strap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheep is a kind of cry", "pln": ["(: cnet_isa_a62117cd63 (IsA cheep cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheer is a kind of approval", "pln": ["(: cnet_isa_64af08f073 (IsA cheer approval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheerer is a kind of spectator", "pln": ["(: cnet_isa_45a1bbf755 (IsA cheerer spectator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheerfulness is a kind of attribute", "pln": ["(: cnet_isa_95927410b1 (IsA cheerfulness attribute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheerfulness is a kind of happiness", "pln": ["(: cnet_isa_a1ea6e5aba (IsA cheerfulness happiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheering is a kind of encouragement", "pln": ["(: cnet_isa_99d63a31c3 (IsA cheering encouragement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheerleader is a kind of leader", "pln": ["(: cnet_isa_2e142e0dff (IsA cheerleader leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheerleader is a kind of supporter", "pln": ["(: cnet_isa_96c6b4c3e7 (IsA cheerleader supporter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheerlessness is a kind of sadness", "pln": ["(: cnet_isa_b60dfac317 (IsA cheerlessness sadness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheese is a kind of dairy product from cow", "pln": ["(: cnet_isa_f0d2a0f95b (IsA cheese dairy_product_from_cow) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheese is a kind of food", "pln": ["(: cnet_isa_7e7ceeda1c (IsA cheese food) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheese is a kind of good protein food", "pln": ["(: cnet_isa_513d62c3b3 (IsA cheese good_protein_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheese is a kind of noun", "pln": ["(: cnet_isa_ff5505e874 (IsA cheese noun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheese is a kind of dairy product", "pln": ["(: cnet_isa_c434e9f107 (IsA cheese dairy_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheese cutter is a kind of kitchen utensil", "pln": ["(: cnet_isa_2d8dbfe936 (IsA cheese_cutter kitchen_utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheese dip is a kind of dip", "pln": ["(: cnet_isa_da97931d23 (IsA cheese_dip dip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheese fondue is a kind of fondue", "pln": ["(: cnet_isa_bbc34d0c58 (IsA cheese_fondue fondue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheese pizza is a kind of pizza", "pln": ["(: cnet_isa_ca7b3ae8bb (IsA cheese_pizza pizza) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheese press is a kind of press", "pln": ["(: cnet_isa_32d167b904 (IsA cheese_press press) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheese rind is a kind of rind", "pln": ["(: cnet_isa_63527a8b7d (IsA cheese_rind rind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheese sauce is a kind of white sauce", "pln": ["(: cnet_isa_f04c7610ad (IsA cheese_sauce white_sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheese souffle is a kind of souffle", "pln": ["(: cnet_isa_d75e9be26b (IsA cheese_souffle souffle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheese spread is a kind of spread", "pln": ["(: cnet_isa_56bf2cb159 (IsA cheese_spread spread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheeseboard is a kind of tray", "pln": ["(: cnet_isa_7d561b8a96 (IsA cheeseboard tray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheeseburger is a kind of hamburger", "pln": ["(: cnet_isa_3b895a5658 (IsA cheeseburger hamburger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheesecake is a kind of picture", "pln": ["(: cnet_isa_0831e74e34 (IsA cheesecake picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheesecake is a kind of cake", "pln": ["(: cnet_isa_a89b406e96 (IsA cheesecake cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheesecloth is a kind of gauze", "pln": ["(: cnet_isa_3e6ddfe2cf (IsA cheesecloth gauze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheesemonger is a kind of trader", "pln": ["(: cnet_isa_1c9c16305b (IsA cheesemonger trader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheetah is a kind of big cat", "pln": ["(: cnet_isa_bcc12e922e (IsA cheetah big_cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chef s salad is a kind of combination salad", "pln": ["(: cnet_isa_8a43063dde (IsA chef_s_salad combination_salad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chef is a kind of cook", "pln": ["(: cnet_isa_3e22ef5a7a (IsA chef cook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheilanthe is a kind of fern genus", "pln": ["(: cnet_isa_5f06eb590c (IsA cheilanthe fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheilitis is a kind of inflammation", "pln": ["(: cnet_isa_6acf2e94ed (IsA cheilitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheilosis is a kind of disorder", "pln": ["(: cnet_isa_6fb93755cb (IsA cheilosis disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheiranthus is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_b249d82063 (IsA cheiranthus dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chela is a kind of hindoo", "pln": ["(: cnet_isa_5b6ecfb849 (IsA chela hindoo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chelate is a kind of heterocyclic compound", "pln": ["(: cnet_isa_0a97392756 (IsA chelate heterocyclic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chelation is a kind of process", "pln": ["(: cnet_isa_988e0d3763 (IsA chelation process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chelation is a kind of chemical process", "pln": ["(: cnet_isa_961ed0a871 (IsA chelation chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chelicera is a kind of extremity", "pln": ["(: cnet_isa_e2c7d491bb (IsA chelicera extremity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chelicerata is a kind of class", "pln": ["(: cnet_isa_ee6929b679 (IsA chelicerata class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chelidonium is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_db72570b2b (IsA chelidonium dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chelifer is a kind of arthropod genus", "pln": ["(: cnet_isa_f34c78b192 (IsA chelifer arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chelone is a kind of asterid dicot genus", "pln": ["(: cnet_isa_79f1d56ec6 (IsA chelone asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chelonethida is a kind of animal order", "pln": ["(: cnet_isa_e27a0f8717 (IsA chelonethida animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chelonia is a kind of animal order", "pln": ["(: cnet_isa_6de105a117 (IsA chelonia animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chelonia is a kind of reptile genus", "pln": ["(: cnet_isa_55c5aac363 (IsA chelonia reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chelonian is a kind of anapsid", "pln": ["(: cnet_isa_3e2850e726 (IsA chelonian anapsid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheloniidae is a kind of reptile family", "pln": ["(: cnet_isa_cd66c33fc1 (IsA cheloniidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chelydra is a kind of reptile genus", "pln": ["(: cnet_isa_d2a22c2f75 (IsA chelydra reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chelydridae is a kind of reptile family", "pln": ["(: cnet_isa_4516ce8118 (IsA chelydridae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemakuan is a kind of mosan", "pln": ["(: cnet_isa_901dea8fcd (IsA chemakuan mosan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemakum is a kind of chemakuan", "pln": ["(: cnet_isa_f6610d2869 (IsA chemakum chemakuan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemical is a kind of material", "pln": ["(: cnet_isa_171009010c (IsA chemical material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemical agent is a kind of agent", "pln": ["(: cnet_isa_38fb4ec8b0 (IsA chemical_agent agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemical analysis is a kind of analysis", "pln": ["(: cnet_isa_a1cfcf9143 (IsA chemical_analysis analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemical bomb is a kind of bomb", "pln": ["(: cnet_isa_c8c7ec13a0 (IsA chemical_bomb bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemical bomb is a kind of chemical weapon", "pln": ["(: cnet_isa_47b58459c3 (IsA chemical_bomb chemical_weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemical bond is a kind of attraction", "pln": ["(: cnet_isa_0e18f571d4 (IsA chemical_bond attraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemical defense is a kind of defense", "pln": ["(: cnet_isa_1a025fce04 (IsA chemical_defense defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemical element is a kind of substance", "pln": ["(: cnet_isa_e7b969c51a (IsA chemical_element substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemical energy is a kind of energy", "pln": ["(: cnet_isa_d55f062d5f (IsA chemical_energy energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemical engineering is a kind of technology", "pln": ["(: cnet_isa_357cab1e1a (IsA chemical_engineering technology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemical engineering is a kind of engineering", "pln": ["(: cnet_isa_90f96b22b1 (IsA chemical_engineering engineering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemical equilibrium is a kind of chemical reaction", "pln": ["(: cnet_isa_f2ff5564d2 (IsA chemical_equilibrium chemical_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemical industry is a kind of industry", "pln": ["(: cnet_isa_11c6abc379 (IsA chemical_industry industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemical irritant is a kind of substance", "pln": ["(: cnet_isa_d2ea1f93e3 (IsA chemical_irritant substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemical notation is a kind of notation", "pln": ["(: cnet_isa_a5424fa57a (IsA chemical_notation notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chemical phenomenon is a kind of natural phenomenon", "pln": ["(: cnet_isa_aba98fb620 (IsA chemical_phenomenon natural_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemical plant is a kind of factory", "pln": ["(: cnet_isa_2d2babd00a (IsA chemical_plant factory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemical process is a kind of natural process", "pln": ["(: cnet_isa_6d9e598026 (IsA chemical_process natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemical property is a kind of property", "pln": ["(: cnet_isa_375fb25d34 (IsA chemical_property property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemical reaction is a kind of chemical process", "pln": ["(: cnet_isa_549be6ad3d (IsA chemical_reaction chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemical reactor is a kind of apparatus", "pln": ["(: cnet_isa_6003d7b270 (IsA chemical_reactor apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chemical symbol for hydrogen is a kind of h", "pln": ["(: cnet_isa_adf742f95c (IsA chemical_symbol_for_hydrogen h) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemical symbol for phosphorous is a kind of p", "pln": ["(: cnet_isa_91caf06a3c (IsA chemical_symbol_for_phosphorous p) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemical terrorism is a kind of terrorism", "pln": ["(: cnet_isa_1a06913152 (IsA chemical_terrorism terrorism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemical warfare is a kind of war", "pln": ["(: cnet_isa_17978229b6 (IsA chemical_warfare war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chemical weapon is a kind of weapon of mass destruction", "pln": ["(: cnet_isa_4e270737c2 (IsA chemical_weapon weapon_of_mass_destruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemiluminescence is a kind of luminescence", "pln": ["(: cnet_isa_bbbc8edb9e (IsA chemiluminescence luminescence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemise is a kind of dress", "pln": ["(: cnet_isa_57ddaf4303 (IsA chemise dress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemise is a kind of undergarment", "pln": ["(: cnet_isa_6d191c6d28 (IsA chemise undergarment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemisorption is a kind of adsorption", "pln": ["(: cnet_isa_807e1e579e (IsA chemisorption adsorption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemist is a kind of scientist", "pln": ["(: cnet_isa_94c0a021d9 (IsA chemist scientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemistry is a kind of science", "pln": ["(: cnet_isa_a69d2685c6 (IsA chemistry science) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemistry is a kind of natural science", "pln": ["(: cnet_isa_71bcd4a897 (IsA chemistry natural_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemistry is a kind of social relation", "pln": ["(: cnet_isa_695848c116 (IsA chemistry social_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemistry is a kind of substance", "pln": ["(: cnet_isa_16e2c23a01 (IsA chemistry substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemistry department is a kind of academic department", "pln": ["(: cnet_isa_f4fa1fa7a0 (IsA chemistry_department academic_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemistry lab is a kind of lab", "pln": ["(: cnet_isa_9fe6b74671 (IsA chemistry_lab lab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemnitzer concertina is a kind of concertina", "pln": ["(: cnet_isa_7464707fef (IsA chemnitzer_concertina concertina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemoreceptor is a kind of sense organ", "pln": ["(: cnet_isa_c87695f9c5 (IsA chemoreceptor sense_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemosis is a kind of edema", "pln": ["(: cnet_isa_72c97c3d25 (IsA chemosis edema) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemosurgery is a kind of operation", "pln": ["(: cnet_isa_4867582737 (IsA chemosurgery operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemosynthesis is a kind of synthesis", "pln": ["(: cnet_isa_9905c7efb3 (IsA chemosynthesis synthesis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chemotaxis is a kind of taxis", "pln": ["(: cnet_isa_cf3b6e27fd (IsA chemotaxis taxis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chemotherapy is a kind of therapy", "pln": ["(: cnet_isa_86593b0e20 (IsA chemotherapy therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chen is a kind of bird genus", "pln": ["(: cnet_isa_1aa433e2af (IsA chen bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chenille is a kind of cord", "pln": ["(: cnet_isa_ad4d968663 (IsA chenille cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chenille is a kind of fabric", "pln": ["(: cnet_isa_33bf200156 (IsA chenille fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chenin blanc is a kind of white wine", "pln": ["(: cnet_isa_e328a1bcb1 (IsA chenin_blanc white_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chenin blanc is a kind of vinifera", "pln": ["(: cnet_isa_3e2ba48517 (IsA chenin_blanc vinifera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chenopodiaceae is a kind of caryophylloid dicot family", "pln": ["(: cnet_isa_21f5fd376d (IsA chenopodiaceae caryophylloid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chenopodium is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_e0c91082ba (IsA chenopodium caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheoplastic metal is a kind of alloy", "pln": ["(: cnet_isa_388d37491f (IsA cheoplastic_metal alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheop is a kind of pharaoh of egypt", "pln": ["(: cnet_isa_c33276271f (IsA cheop pharaoh_of_egypt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheremis is a kind of volgaic", "pln": ["(: cnet_isa_1116cf828a (IsA cheremis volgaic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheremiss is a kind of russian", "pln": ["(: cnet_isa_66a86d985a (IsA cheremiss russian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cherimoya is a kind of custard apple", "pln": ["(: cnet_isa_5f32b6d249 (IsA cherimoya custard_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chernozemic soil is a kind of loam", "pln": ["(: cnet_isa_2450c7e08d (IsA chernozemic_soil loam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cherokee is a kind of iroquoian", "pln": ["(: cnet_isa_2cd590d5ce (IsA cherokee iroquoian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cherokee is a kind of iroquois", "pln": ["(: cnet_isa_c9a335a690 (IsA cherokee iroquois) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cherokee rose is a kind of rose", "pln": ["(: cnet_isa_22e797ecf9 (IsA cherokee_rose rose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheroot is a kind of cigar", "pln": ["(: cnet_isa_50c15335b9 (IsA cheroot cigar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cherry is a kind of drupe", "pln": ["(: cnet_isa_15ca6d9d57 (IsA cherry drupe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cherry is a kind of edible fruit", "pln": ["(: cnet_isa_4a94fa1e77 (IsA cherry edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cherry is a kind of fruit tree", "pln": ["(: cnet_isa_388cdca1f1 (IsA cherry fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cherry is a kind of wood", "pln": ["(: cnet_isa_61f3c5c60a (IsA cherry wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cherry bomb is a kind of firecracker", "pln": ["(: cnet_isa_e2dbdce385 (IsA cherry_bomb firecracker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cherry laurel is a kind of angiospermous tree", "pln": ["(: cnet_isa_358fb5fef1 (IsA cherry_laurel angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cherry laurel is a kind of shrub", "pln": ["(: cnet_isa_a81847b9b7 (IsA cherry_laurel shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cherry pepper is a kind of capsicum", "pln": ["(: cnet_isa_51122d7ec5 (IsA cherry_pepper capsicum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cherry plum is a kind of plum", "pln": ["(: cnet_isa_099be1cb01 (IsA cherry_plum plum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cherry stone is a kind of stone", "pln": ["(: cnet_isa_bb7bba0029 (IsA cherry_stone stone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cherry tomato is a kind of tomato", "pln": ["(: cnet_isa_bce9fa39b3 (IsA cherry_tomato tomato) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cherry tree is a kind of tree", "pln": ["(: cnet_isa_69d9cbeb78 (IsA cherry_tree tree) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cherry tree gum is a kind of gum", "pln": ["(: cnet_isa_2a098c47f4 (IsA cherry_tree_gum gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cherrystone is a kind of quahog", "pln": ["(: cnet_isa_00857a6fbd (IsA cherrystone quahog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cherrystone is a kind of quahaug", "pln": ["(: cnet_isa_8647a9f8aa (IsA cherrystone quahaug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chert is a kind of silica", "pln": ["(: cnet_isa_722c0d3f07 (IsA chert silica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cherub is a kind of angel", "pln": ["(: cnet_isa_973dfd16dd (IsA cherub angel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cherub is a kind of baby", "pln": ["(: cnet_isa_6fdfc3834f (IsA cherub baby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chervil is a kind of herb", "pln": ["(: cnet_isa_331130dda3 (IsA chervil herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chesapeake bay retriever is a kind of retriever", "pln": ["(: cnet_isa_cd0507fe78 (IsA chesapeake_bay_retriever retriever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheshire cheese is a kind of cheese", "pln": ["(: cnet_isa_07a3532b00 (IsA cheshire_cheese cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chess is a kind of analytical game", "pln": ["(: cnet_isa_1fa322ca37 (IsA chess analytical_game) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chess is a kind of board game", "pln": ["(: cnet_isa_f045e4d4da (IsA chess board_game) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chess is a kind of complicated game", "pln": ["(: cnet_isa_83963e756f (IsA chess complicated_game) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chess is a kind of exciting game", "pln": ["(: cnet_isa_ebbd43cf25 (IsA chess exciting_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chess is a kind of game", "pln": ["(: cnet_isa_7e60ad7d5f (IsA chess game) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chess is a kind of game of no chance", "pln": ["(: cnet_isa_808c682571 (IsA chess game_of_no_chance) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chess is a kind of game of skill", "pln": ["(: cnet_isa_9d160cd96e (IsA chess game_of_skill) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chess is a kind of game of strategy", "pln": ["(: cnet_isa_216ed5baed (IsA chess game_of_strategy) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chess is a kind of game of two player", "pln": ["(: cnet_isa_b5973de1eb (IsA chess game_of_two_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chess is a kind of great game", "pln": ["(: cnet_isa_239ddaf52c (IsA chess great_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chess is a kind of intellectual game", "pln": ["(: cnet_isa_3ac3cbbc4b (IsA chess intellectual_game) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chess is a kind of two player game", "pln": ["(: cnet_isa_a7db78a1b3 (IsA chess two_player_game) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chess is a kind of brome", "pln": ["(: cnet_isa_ef8d92b350 (IsA chess brome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chess club is a kind of club", "pln": ["(: cnet_isa_b726efa466 (IsA chess_club club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chess master is a kind of chess player", "pln": ["(: cnet_isa_ef229e80c8 (IsA chess_master chess_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chess match is a kind of match", "pln": ["(: cnet_isa_3e53fe1dba (IsA chess_match match) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chess move is a kind of move", "pln": ["(: cnet_isa_e0257ec018 (IsA chess_move move) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chess opening is a kind of succession", "pln": ["(: cnet_isa_31a644f3b4 (IsA chess_opening succession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chess player is a kind of player", "pln": ["(: cnet_isa_76823eed54 (IsA chess_player player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chess queen is a kind of one piece", "pln": ["(: cnet_isa_6127fb1d72 (IsA chess_queen one_piece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chess set is a kind of set", "pln": ["(: cnet_isa_6a21cf29de (IsA chess_set set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chessboard is a kind of checkerboard", "pln": ["(: cnet_isa_38d1354692 (IsA chessboard checkerboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chessman is a kind of man", "pln": ["(: cnet_isa_554a8d4b74 (IsA chessman man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chest is a kind of part of body", "pln": ["(: cnet_isa_aa8b0dfab3 (IsA chest part_of_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chest is a kind of place to store jewelry", "pln": ["(: cnet_isa_f26cd7adba (IsA chest place_to_store_jewelry) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chest is a kind of box", "pln": ["(: cnet_isa_1365fb958a (IsA chest box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chest cavity is a kind of cavity", "pln": ["(: cnet_isa_173a6daa23 (IsA chest_cavity cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chest of drawer is a kind of furniture", "pln": ["(: cnet_isa_bb93c69617 (IsA chest_of_drawer furniture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chest pain is a kind of pain", "pln": ["(: cnet_isa_c16e1d03f7 (IsA chest_pain pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chest protector is a kind of protective garment", "pln": ["(: cnet_isa_9b78f540f7 (IsA chest_protector protective_garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chest register is a kind of register", "pln": ["(: cnet_isa_874bf4ee1a (IsA chest_register register) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chesterfield is a kind of brand of cigarette", "pln": ["(: cnet_isa_3f3894216d (IsA chesterfield brand_of_cigarette) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chesterfield is a kind of piece of furniture", "pln": ["(: cnet_isa_07cd912b52 (IsA chesterfield piece_of_furniture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chesterfield is a kind of davenport", "pln": ["(: cnet_isa_26badd1527 (IsA chesterfield davenport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chesterfield is a kind of greatcoat", "pln": ["(: cnet_isa_93449fb830 (IsA chesterfield greatcoat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chestnut is a kind of callus", "pln": ["(: cnet_isa_9a136ced05 (IsA chestnut callus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chestnut is a kind of horse", "pln": ["(: cnet_isa_b11ab249de (IsA chestnut horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chestnut is a kind of brown", "pln": ["(: cnet_isa_a4636c028e (IsA chestnut brown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chestnut is a kind of edible nut", "pln": ["(: cnet_isa_425cd553ed (IsA chestnut edible_nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chestnut is a kind of tree", "pln": ["(: cnet_isa_9505f4f0a1 (IsA chestnut tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chestnut is a kind of wood", "pln": ["(: cnet_isa_4f1d49a73d (IsA chestnut wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chestnut blight is a kind of blight", "pln": ["(: cnet_isa_4cf35351ef (IsA chestnut_blight blight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chestnut oak is a kind of oak", "pln": ["(: cnet_isa_d9fa4c6abd (IsA chestnut_oak oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chestnut tree is a kind of tree", "pln": ["(: cnet_isa_7429742a9c (IsA chestnut_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chetrum is a kind of bhutanese monetary unit", "pln": ["(: cnet_isa_c1cecce7e3 (IsA chetrum bhutanese_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheval de frise is a kind of defensive structure", "pln": ["(: cnet_isa_d30e21e17b (IsA cheval_de_frise defensive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cheval glass is a kind of mirror", "pln": ["(: cnet_isa_f73575f414 (IsA cheval_glass mirror) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheviot is a kind of domestic sheep", "pln": ["(: cnet_isa_d62b5d8712 (IsA cheviot domestic_sheep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chevrolet is a kind of type of car", "pln": ["(: cnet_isa_483c2fe380 (IsA chevrolet type_of_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chevron is a kind of charge", "pln": ["(: cnet_isa_2b6ee69612 (IsA chevron charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chevron is a kind of badge", "pln": ["(: cnet_isa_45ce278057 (IsA chevron badge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chevrotain is a kind of ruminant", "pln": ["(: cnet_isa_f8dda19476 (IsA chevrotain ruminant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chew is a kind of change of state", "pln": ["(: cnet_isa_da5428397a (IsA chew change_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chew is a kind of morsel", "pln": ["(: cnet_isa_a3ff927ef5 (IsA chew morsel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chewer is a kind of consumer", "pln": ["(: cnet_isa_06d5f56ade (IsA chewer consumer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chewing gum is a kind of sweet", "pln": ["(: cnet_isa_b4f997624e (IsA chewing_gum sweet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chewink is a kind of towhee", "pln": ["(: cnet_isa_b7bf45ea7f (IsA chewink towhee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheyenne is a kind of algonquian", "pln": ["(: cnet_isa_3ee5414486 (IsA cheyenne algonquian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheyenne is a kind of algonquin", "pln": ["(: cnet_isa_0959a944de (IsA cheyenne algonquin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cheyenne is a kind of buffalo indian", "pln": ["(: cnet_isa_b7893515da (IsA cheyenne buffalo_indian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chi is a kind of letter", "pln": ["(: cnet_isa_d267b8765f (IsA chi letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chiacoan peccary is a kind of peccary", "pln": ["(: cnet_isa_8b9fefadab (IsA chiacoan_peccary peccary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chian turpentine is a kind of turpentine", "pln": ["(: cnet_isa_cecc6d4b13 (IsA chian_turpentine turpentine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chianti is a kind of red wine", "pln": ["(: cnet_isa_0eb53ac91f (IsA chianti red_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chiaroscuro is a kind of ikon", "pln": ["(: cnet_isa_222d2dcf04 (IsA chiaroscuro ikon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chiasma is a kind of structure", "pln": ["(: cnet_isa_99dd189bdb (IsA chiasma structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chiasmus is a kind of rhetorical device", "pln": ["(: cnet_isa_c47a4effdc (IsA chiasmus rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chic is a kind of elegance", "pln": ["(: cnet_isa_b9e4ca04e7 (IsA chic elegance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicago is a kind of city", "pln": ["(: cnet_isa_c0348a5beb (IsA chicago city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chicane is a kind of movable barrier", "pln": ["(: cnet_isa_b09f78d9d7 (IsA chicane movable_barrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicane is a kind of bridge hand", "pln": ["(: cnet_isa_1a58527f68 (IsA chicane bridge_hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicano is a kind of mexican", "pln": ["(: cnet_isa_2810e6f611 (IsA chicano mexican) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chichewa is a kind of bantu", "pln": ["(: cnet_isa_f1310aa14f (IsA chichewa bantu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chichi is a kind of dresser", "pln": ["(: cnet_isa_275519e66b (IsA chichi dresser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chichipe is a kind of cactus", "pln": ["(: cnet_isa_90d3e74578 (IsA chichipe cactus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chick is a kind of chicken", "pln": ["(: cnet_isa_d3146987b1 (IsA chick chicken) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chick is a kind of young bird", "pln": ["(: cnet_isa_9064035a2e (IsA chick young_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chickadee is a kind of bird", "pln": ["(: cnet_isa_38b5396ee5 (IsA chickadee bird) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chickadee is a kind of titmouse", "pln": ["(: cnet_isa_931cd4d6f5 (IsA chickadee titmouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chickasaw is a kind of muskhogean", "pln": ["(: cnet_isa_9b1b50673c (IsA chickasaw muskhogean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chickasaw is a kind of native american", "pln": ["(: cnet_isa_ad5c6354c9 (IsA chickasaw native_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chickasaw plum is a kind of wild plum", "pln": ["(: cnet_isa_67157cc299 (IsA chickasaw_plum wild_plum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken is a kind of biped", "pln": ["(: cnet_isa_88dc9d11bb (IsA chicken biped) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken is a kind of food", "pln": ["(: cnet_isa_07bed63a5d (IsA chicken food) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken is a kind of meat", "pln": ["(: cnet_isa_b6f41bd473 (IsA chicken meat) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken is a kind of domestic fowl", "pln": ["(: cnet_isa_11b180ada6 (IsA chicken domestic_fowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken is a kind of contest", "pln": ["(: cnet_isa_8dc5f05fce (IsA chicken contest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken is a kind of poultry", "pln": ["(: cnet_isa_f0020ebfa8 (IsA chicken poultry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken and rice is a kind of dish", "pln": ["(: cnet_isa_08eff2027a (IsA chicken_and_rice dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken broth is a kind of broth", "pln": ["(: cnet_isa_211a7c8ee6 (IsA chicken_broth broth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken cacciatore is a kind of chicken casserole", "pln": ["(: cnet_isa_bc81ce4c3c (IsA chicken_cacciatore chicken_casserole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken casserole is a kind of casserole", "pln": ["(: cnet_isa_9e52210a57 (IsA chicken_casserole casserole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken coop is a kind of farm building", "pln": ["(: cnet_isa_d9f48f58d9 (IsA chicken_coop farm_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken cordon bleu is a kind of dish", "pln": ["(: cnet_isa_6c04f94e97 (IsA chicken_cordon_bleu dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken egg is a kind of egg", "pln": ["(: cnet_isa_277f866af2 (IsA chicken_egg egg) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken farm is a kind of farm", "pln": ["(: cnet_isa_80a332d94e (IsA chicken_farm farm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken feed is a kind of mash", "pln": ["(: cnet_isa_4d32b662ae (IsA chicken_feed mash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken hawk is a kind of hawk", "pln": ["(: cnet_isa_9e6d1bc8af (IsA chicken_hawk hawk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken kiev is a kind of dish", "pln": ["(: cnet_isa_5338bc049b (IsA chicken_kiev dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chicken leg is a kind of drumstick", "pln": ["(: cnet_isa_9431c7429e (IsA chicken_leg drumstick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken liver is a kind of liver", "pln": ["(: cnet_isa_9170f53c9a (IsA chicken_liver liver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken louse is a kind of bird louse", "pln": ["(: cnet_isa_fcf474c425 (IsA chicken_louse bird_louse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken manure is a kind of manure", "pln": ["(: cnet_isa_2b3adbb5fd (IsA chicken_manure manure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken marengo is a kind of dish", "pln": ["(: cnet_isa_23c9e6f9b6 (IsA chicken_marengo dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken mousse is a kind of mousse", "pln": ["(: cnet_isa_c1a5085560 (IsA chicken_mousse mousse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken paprika is a kind of dish", "pln": ["(: cnet_isa_a0bd69eba9 (IsA chicken_paprika dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken provencale is a kind of dish", "pln": ["(: cnet_isa_b701a7f486 (IsA chicken_provencale dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken roundworm is a kind of nematode", "pln": ["(: cnet_isa_51ff5be1dc (IsA chicken_roundworm nematode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken salad is a kind of salad", "pln": ["(: cnet_isa_50f2457ca3 (IsA chicken_salad salad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken sandwich is a kind of sandwich", "pln": ["(: cnet_isa_c2405050dc (IsA chicken_sandwich sandwich) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken scratch is a kind of scribble", "pln": ["(: cnet_isa_5d9dda278c (IsA chicken_scratch scribble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken snake is a kind of rat snake", "pln": ["(: cnet_isa_fd5f7a4f32 (IsA chicken_snake rat_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken soup is a kind of soup", "pln": ["(: cnet_isa_edd6e2334f (IsA chicken_soup soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken stew is a kind of fricassee", "pln": ["(: cnet_isa_4e52e6ebcd (IsA chicken_stew fricassee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken taco is a kind of taco", "pln": ["(: cnet_isa_b0eabef999 (IsA chicken_taco taco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken tetrazzini is a kind of tetrazzini", "pln": ["(: cnet_isa_955938e8b8 (IsA chicken_tetrazzini tetrazzini) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken wing is a kind of wing", "pln": ["(: cnet_isa_d364026a8f (IsA chicken_wing wing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken wire is a kind of net", "pln": ["(: cnet_isa_37de04a32c (IsA chicken_wire net) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken yard is a kind of yard", "pln": ["(: cnet_isa_28d13a661a (IsA chicken_yard yard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chickenpox is a kind of pox", "pln": ["(: cnet_isa_86cd07519f (IsA chickenpox pox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicken is a kind of animal", "pln": ["(: cnet_isa_7c3a7dcdeb (IsA chicken animal) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chickenshit is a kind of drivel", "pln": ["(: cnet_isa_c7856597c9 (IsA chickenshit drivel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chickeree is a kind of tree squirrel", "pln": ["(: cnet_isa_544d30c4c7 (IsA chickeree tree_squirrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chickpea is a kind of legume", "pln": ["(: cnet_isa_34faf0a615 (IsA chickpea legume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chickweed is a kind of herb", "pln": ["(: cnet_isa_48ce345df0 (IsA chickweed herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chickweed phlox is a kind of phlox", "pln": ["(: cnet_isa_87b95feac2 (IsA chickweed_phlox phlox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicle is a kind of gum", "pln": ["(: cnet_isa_a906671cf4 (IsA chicle gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicory is a kind of coffee substitute", "pln": ["(: cnet_isa_1ff5ffb396 (IsA chicory coffee_substitute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicory is a kind of salad green", "pln": ["(: cnet_isa_d32f39619f (IsA chicory salad_green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicory is a kind of herb", "pln": ["(: cnet_isa_e732489f9f (IsA chicory herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicory is a kind of root", "pln": ["(: cnet_isa_34ad03d115 (IsA chicory root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chicory escarole is a kind of salad green", "pln": ["(: cnet_isa_0e6bc9c53a (IsA chicory_escarole salad_green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chiding is a kind of rebuke", "pln": ["(: cnet_isa_7bfd7c0ae9 (IsA chiding rebuke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chief constable is a kind of captain", "pln": ["(: cnet_isa_37fd215a09 (IsA chief_constable captain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chief executive officer is a kind of corporate executive", "pln": ["(: cnet_isa_a24a7d2ce4 (IsA chief_executive_officer corporate_executive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chief financial officer is a kind of corporate executive", "pln": ["(: cnet_isa_28d55e7d8d (IsA chief_financial_officer corporate_executive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chief justice is a kind of judge", "pln": ["(: cnet_isa_076a36743d (IsA chief_justice judge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chief of staff is a kind of military officer", "pln": ["(: cnet_isa_67d39a166b (IsA chief_of_staff military_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chief petty officer is a kind of noncommissioned officer", "pln": ["(: cnet_isa_96ac49d792 (IsA chief_petty_officer noncommissioned_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chief secretary is a kind of cabinet minister", "pln": ["(: cnet_isa_c30888d6ea (IsA chief_secretary cabinet_minister) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chieftaincy is a kind of position", "pln": ["(: cnet_isa_afc13b6102 (IsA chieftaincy position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chiffon is a kind of fabric", "pln": ["(: cnet_isa_7a326f60ff (IsA chiffon fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chiffon cake is a kind of cake", "pln": ["(: cnet_isa_1f3d4456f5 (IsA chiffon_cake cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chiffonier is a kind of chest of drawer", "pln": ["(: cnet_isa_9c231cfabe (IsA chiffonier chest_of_drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chigetai is a kind of onager", "pln": ["(: cnet_isa_41c2bf2a27 (IsA chigetai onager) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chignon is a kind of hairdo", "pln": ["(: cnet_isa_93499669a9 (IsA chignon hairdo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chigoe is a kind of flea", "pln": ["(: cnet_isa_f28bc6933a (IsA chigoe flea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chihuahua is a kind of toy dog", "pln": ["(: cnet_isa_8fc5ea8464 (IsA chihuahua toy_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chihuahuan spotted whiptail is a kind of whiptail", "pln": ["(: cnet_isa_48a0ee65b6 (IsA chihuahuan_spotted_whiptail whiptail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chilblain is a kind of blain", "pln": ["(: cnet_isa_596a77f766 (IsA chilblain blain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "child s body is a kind of juvenile body", "pln": ["(: cnet_isa_928eccabf8 (IsA child_s_body juvenile_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "child s game is a kind of game", "pln": ["(: cnet_isa_aac1b66d5f (IsA child_s_game game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "child s room is a kind of bedroom", "pln": ["(: cnet_isa_f879d01499 (IsA child_s_room bedroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "child is a kind of small young person", "pln": ["(: cnet_isa_7cb30139af (IsA child small_young_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "child is a kind of younger than parent", "pln": ["(: cnet_isa_8345fbbb2a (IsA child younger_than_parent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "child is a kind of descendant", "pln": ["(: cnet_isa_215c11b3d1 (IsA child descendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "child is a kind of juvenile", "pln": ["(: cnet_isa_3b312d3963 (IsA child juvenile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "child is a kind of offspring", "pln": ["(: cnet_isa_8468703f5a (IsA child offspring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "child is a kind of person", "pln": ["(: cnet_isa_2b297c2b93 (IsA child person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "child abuse is a kind of maltreatment", "pln": ["(: cnet_isa_a686839d21 (IsA child_abuse maltreatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "child making sandwich is a kind of making sandwich", "pln": ["(: cnet_isa_534ec042c5 (IsA child_making_sandwich making_sandwich) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "child neglect is a kind of maltreatment", "pln": ["(: cnet_isa_d8848affdd (IsA child_neglect maltreatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "child pornography is a kind of pornography", "pln": ["(: cnet_isa_59d6e7e03f (IsA child_pornography pornography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "child prodigy is a kind of child", "pln": ["(: cnet_isa_8a870e79e0 (IsA child_prodigy child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "child prodigy is a kind of prodigy", "pln": ["(: cnet_isa_fde0b6ae15 (IsA child_prodigy prodigy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "child support is a kind of support payment", "pln": ["(: cnet_isa_50f2137afc (IsA child_support support_payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "child welfare agency is a kind of administrative unit", "pln": ["(: cnet_isa_0d8c22434c (IsA child_welfare_agency administrative_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "childbirth is a kind of parturition", "pln": ["(: cnet_isa_3e2d98ec3c (IsA childbirth parturition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "childbirth preparation class is a kind of course", "pln": ["(: cnet_isa_c3758da5fc (IsA childbirth_preparation_class course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "childcare is a kind of service", "pln": ["(: cnet_isa_9ed64f9490 (IsA childcare service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "childhood is a kind of immaturity", "pln": ["(: cnet_isa_3a18e78a18 (IsA childhood immaturity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "childhood is a kind of time of life", "pln": ["(: cnet_isa_fef00ac2e7 (IsA childhood time_of_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "childishness is a kind of youngness", "pln": ["(: cnet_isa_516b0dedec (IsA childishness youngness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "childlessness is a kind of situation", "pln": ["(: cnet_isa_6a4a4efd05 (IsA childlessness situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "children is a kind of smaller than adult", "pln": ["(: cnet_isa_4d42b54c0a (IsA children smaller_than_adult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "children with same parent is a kind of sibling", "pln": ["(: cnet_isa_3126cbe182 (IsA children_with_same_parent sibling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chilean is a kind of south american", "pln": ["(: cnet_isa_601dec9a69 (IsA chilean south_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chilean cedar is a kind of cedar", "pln": ["(: cnet_isa_464bc59b46 (IsA chilean_cedar cedar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chilean firebush is a kind of shrub", "pln": ["(: cnet_isa_fd58962c52 (IsA chilean_firebush shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chilean jasmine is a kind of liana", "pln": ["(: cnet_isa_18d2bbec44 (IsA chilean_jasmine liana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chilean monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_42e5066fa9 (IsA chilean_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chilean nut is a kind of shrub", "pln": ["(: cnet_isa_c549b7182e (IsA chilean_nut shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chilean peso is a kind of chilean monetary unit", "pln": ["(: cnet_isa_ba2648197a (IsA chilean_peso chilean_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chilean rimu is a kind of shrub", "pln": ["(: cnet_isa_b69c8fae5c (IsA chilean_rimu shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chili is a kind of dish", "pln": ["(: cnet_isa_35be9fec16 (IsA chili dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chili is a kind of hot pepper", "pln": ["(: cnet_isa_01176ccf31 (IsA chili hot_pepper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chili dog is a kind of hotdog", "pln": ["(: cnet_isa_50f6af4df3 (IsA chili_dog hotdog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chili powder is a kind of flavorer", "pln": ["(: cnet_isa_ab4c8d28e3 (IsA chili_powder flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chili sauce is a kind of condiment", "pln": ["(: cnet_isa_bdfc30f567 (IsA chili_sauce condiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chili vinegar is a kind of vinegar", "pln": ["(: cnet_isa_e08bd2d7a9 (IsA chili_vinegar vinegar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chill is a kind of coldness", "pln": ["(: cnet_isa_3e84a87650 (IsA chill coldness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chill is a kind of apprehension", "pln": ["(: cnet_isa_54e20145a7 (IsA chill apprehension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chill is a kind of symptom", "pln": ["(: cnet_isa_912a820c40 (IsA chill symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chilliness is a kind of coldness", "pln": ["(: cnet_isa_4748a86249 (IsA chilliness coldness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chilomastix is a kind of protoctist genus", "pln": ["(: cnet_isa_e694be4254 (IsA chilomastix protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chilomeniscus is a kind of reptile genus", "pln": ["(: cnet_isa_4fbce2c367 (IsA chilomeniscus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chilomycterus is a kind of fish genus", "pln": ["(: cnet_isa_3889d85841 (IsA chilomycterus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chilopoda is a kind of class", "pln": ["(: cnet_isa_129b0c14b4 (IsA chilopoda class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chilopsis is a kind of asterid dicot genus", "pln": ["(: cnet_isa_dd6535ec38 (IsA chilopsis asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chiluba is a kind of bantu", "pln": ["(: cnet_isa_4d3f892251 (IsA chiluba bantu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chimaera is a kind of holocephalan", "pln": ["(: cnet_isa_226ee09576 (IsA chimaera holocephalan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chimaera is a kind of mythical monster", "pln": ["(: cnet_isa_29a92ec14f (IsA chimaera mythical_monster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chimaeridae is a kind of fish family", "pln": ["(: cnet_isa_dc28b10030 (IsA chimaeridae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chimakum is a kind of salish", "pln": ["(: cnet_isa_1bc8d5e29d (IsA chimakum salish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chimaphila is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_8b8ed515c2 (IsA chimaphila dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chimariko is a kind of hokan", "pln": ["(: cnet_isa_3e7e9850fb (IsA chimariko hokan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chimariko is a kind of hoka", "pln": ["(: cnet_isa_35e658a3df (IsA chimariko hoka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chime is a kind of percussion instrument", "pln": ["(: cnet_isa_9d7f115ff5 (IsA chime percussion_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chimera is a kind of imagination", "pln": ["(: cnet_isa_f2eb4d7ab0 (IsA chimera imagination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chimney is a kind of flue", "pln": ["(: cnet_isa_6bf8b0afad (IsA chimney flue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chimney breast is a kind of wall", "pln": ["(: cnet_isa_f432776d48 (IsA chimney_breast wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chimney corner is a kind of corner", "pln": ["(: cnet_isa_deb5a6db68 (IsA chimney_corner corner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chimney plant is a kind of campanula", "pln": ["(: cnet_isa_f3bdcfbbe0 (IsA chimney_plant campanula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chimney swift is a kind of swift", "pln": ["(: cnet_isa_2274c10547 (IsA chimney_swift swift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chimneypot is a kind of pipe", "pln": ["(: cnet_isa_f2eaa3887e (IsA chimneypot pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chimneystack is a kind of flue", "pln": ["(: cnet_isa_ad3eeb1d0d (IsA chimneystack flue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chimneysweeper is a kind of cleaner", "pln": ["(: cnet_isa_95426e017a (IsA chimneysweeper cleaner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chimonanthus is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_a0b51dbc3c (IsA chimonanthus magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chimpanzee is a kind of ape", "pln": ["(: cnet_isa_1dae8a0ae6 (IsA chimpanzee ape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chimpanzee is a kind of great ape", "pln": ["(: cnet_isa_18ea44db0c (IsA chimpanzee great_ape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chimwini is a kind of bantu", "pln": ["(: cnet_isa_2bf8cf5ff7 (IsA chimwini bantu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chin is a kind of feature", "pln": ["(: cnet_isa_528468b891 (IsA chin feature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chin rest is a kind of rest", "pln": ["(: cnet_isa_ffe8a9912f (IsA chin_rest rest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chin strap is a kind of strap", "pln": ["(: cnet_isa_4a1fe6493f (IsA chin_strap strap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "china is a kind of communist country", "pln": ["(: cnet_isa_8e961d0498 (IsA china communist_country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "china is a kind of country", "pln": ["(: cnet_isa_ed80ca5a8b (IsA china country) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "china is a kind of enormous economy", "pln": ["(: cnet_isa_37425a648c (IsA china enormous_economy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "china is a kind of very large country", "pln": ["(: cnet_isa_80df936d85 (IsA china very_large_country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "china is a kind of porcelain", "pln": ["(: cnet_isa_d563bbd17e (IsA china porcelain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "china aster is a kind of flower", "pln": ["(: cnet_isa_3c1d06057c (IsA china_aster flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "china cabinet is a kind of cabinet", "pln": ["(: cnet_isa_aaabaad2ea (IsA china_cabinet cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "china clay is a kind of clay", "pln": ["(: cnet_isa_f19184edaa (IsA china_clay clay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "china pink is a kind of pink", "pln": ["(: cnet_isa_fbdfa408c4 (IsA china_pink pink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "china rose is a kind of hibiscus", "pln": ["(: cnet_isa_3cd007277b (IsA china_rose hibiscus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "china rose is a kind of rose", "pln": ["(: cnet_isa_cfc6d0133d (IsA china_rose rose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "china tree is a kind of soapberry", "pln": ["(: cnet_isa_9eef0c6a3a (IsA china_tree soapberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinaberry is a kind of tree", "pln": ["(: cnet_isa_92cfd20c03 (IsA chinaberry tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinaman is a kind of bowling", "pln": ["(: cnet_isa_6658ea0d9b (IsA chinaman bowling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinaware is a kind of crockery", "pln": ["(: cnet_isa_89d7750d9f (IsA chinaware crockery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chincapin is a kind of edible nut", "pln": ["(: cnet_isa_55c41812a3 (IsA chincapin edible_nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinch bug is a kind of lygaeid", "pln": ["(: cnet_isa_eaeb9ed5c6 (IsA chinch_bug lygaeid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chincherinchee is a kind of star of bethlehem", "pln": ["(: cnet_isa_271d3c792d (IsA chincherinchee star_of_bethlehem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chinchilla is a kind of rodent", "pln": ["(: cnet_isa_5714591cb9 (IsA chinchilla rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinchilla is a kind of coating", "pln": ["(: cnet_isa_65bced6a78 (IsA chinchilla coating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinchilla is a kind of fur", "pln": ["(: cnet_isa_07e78c3302 (IsA chinchilla fur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinchillidae is a kind of mammal family", "pln": ["(: cnet_isa_f5dde06704 (IsA chinchillidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chine is a kind of spinal column", "pln": ["(: cnet_isa_94b048d1f2 (IsA chine spinal_column) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chine is a kind of cut", "pln": ["(: cnet_isa_69eab3ee27 (IsA chine cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinese is a kind of human language", "pln": ["(: cnet_isa_c936c2e1bf (IsA chinese human_language) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinese is a kind of language", "pln": ["(: cnet_isa_b7bc85e6dc (IsA chinese language) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinese is a kind of sinitic", "pln": ["(: cnet_isa_494c04f792 (IsA chinese sinitic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinese is a kind of asiatic", "pln": ["(: cnet_isa_a6bba300e1 (IsA chinese asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinese alligator is a kind of alligator", "pln": ["(: cnet_isa_aaaa548791 (IsA chinese_alligator alligator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinese angelica is a kind of shrub", "pln": ["(: cnet_isa_8dd7129ff1 (IsA chinese_angelica shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinese anise is a kind of spice", "pln": ["(: cnet_isa_76b01edc2a (IsA chinese_anise spice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinese brown sauce is a kind of sauce", "pln": ["(: cnet_isa_53d084d87f (IsA chinese_brown_sauce sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinese cabbage is a kind of cabbage", "pln": ["(: cnet_isa_9245cf9769 (IsA chinese_cabbage cabbage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinese cabbage is a kind of crucifer", "pln": ["(: cnet_isa_dfb2149fe4 (IsA chinese_cabbage crucifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinese checker is a kind of board game", "pln": ["(: cnet_isa_95d39b2f51 (IsA chinese_checker board_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinese chestnut is a kind of chestnut", "pln": ["(: cnet_isa_0078ad1ef7 (IsA chinese_chestnut chestnut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chinese cork oak is a kind of oak", "pln": ["(: cnet_isa_4d293eca8d (IsA chinese_cork_oak oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinese deity is a kind of deity", "pln": ["(: cnet_isa_6bceb48765 (IsA chinese_deity deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinese elm is a kind of elm", "pln": ["(: cnet_isa_efb40250fe (IsA chinese_elm elm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinese evergreen is a kind of houseplant", "pln": ["(: cnet_isa_fc5a18cead (IsA chinese_evergreen houseplant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinese forget me not is a kind of herb", "pln": ["(: cnet_isa_f86ae65f2f (IsA chinese_forget_me_not herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinese goose is a kind of goose", "pln": ["(: cnet_isa_d857bc090f (IsA chinese_goose goose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinese gooseberry is a kind of vine", "pln": ["(: cnet_isa_eeb723f4cc (IsA chinese_gooseberry vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chinese holly is a kind of shrub", "pln": ["(: cnet_isa_55dbdd7c25 (IsA chinese_holly shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinese lantern is a kind of lantern", "pln": ["(: cnet_isa_753960e7f1 (IsA chinese_lantern lantern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chinese lantern plant is a kind of ground cherry", "pln": ["(: cnet_isa_ab4f254b52 (IsA chinese_lantern_plant ground_cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinese monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_737637d9d5 (IsA chinese_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinese mustard is a kind of mustard", "pln": ["(: cnet_isa_b1ecbad65e (IsA chinese_mustard mustard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinese paddlefish is a kind of ganoid", "pln": ["(: cnet_isa_28575021ad (IsA chinese_paddlefish ganoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinese parasol tree is a kind of tree", "pln": ["(: cnet_isa_1fc1e60b1b (IsA chinese_parasol_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinese pea tree is a kind of pea tree", "pln": ["(: cnet_isa_599bad8da7 (IsA chinese_pea_tree pea_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinese primrose is a kind of primrose", "pln": ["(: cnet_isa_6ec53c97cf (IsA chinese_primrose primrose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinese privet is a kind of privet", "pln": ["(: cnet_isa_ce6dc5fa18 (IsA chinese_privet privet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinese puzzle is a kind of puzzle", "pln": ["(: cnet_isa_eb62a5a615 (IsA chinese_puzzle puzzle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chinese restaurant syndrome is a kind of syndrome", "pln": ["(: cnet_isa_2d83b17196 (IsA chinese_restaurant_syndrome syndrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chinese rhubarb is a kind of rhubarb", "pln": ["(: cnet_isa_f10107c780 (IsA chinese_rhubarb rhubarb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinese wistaria is a kind of wisteria", "pln": ["(: cnet_isa_4c132346c7 (IsA chinese_wistaria wisteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chink is a kind of sound", "pln": ["(: cnet_isa_ae23b93c05 (IsA chink sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chink is a kind of crack", "pln": ["(: cnet_isa_fcda85805a (IsA chink crack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chink is a kind of chinese", "pln": ["(: cnet_isa_bf6a17c593 (IsA chink chinese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinning bar is a kind of bar", "pln": ["(: cnet_isa_33d2329f54 (IsA chinning_bar bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chino is a kind of fabric", "pln": ["(: cnet_isa_bf0e2f4d78 (IsA chino fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinoiserie is a kind of genre", "pln": ["(: cnet_isa_2dbe2124f0 (IsA chinoiserie genre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinook is a kind of salmon", "pln": ["(: cnet_isa_639f4da7ee (IsA chinook salmon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinook is a kind of penutian", "pln": ["(: cnet_isa_1fc65093ad (IsA chinook penutian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinook is a kind of wind", "pln": ["(: cnet_isa_46c1ce1f59 (IsA chinook wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chinook jargon is a kind of pidgin", "pln": ["(: cnet_isa_6947abeca0 (IsA chinook_jargon pidgin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinook salmon is a kind of salmon", "pln": ["(: cnet_isa_7b98bc447f (IsA chinook_salmon salmon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinookan is a kind of penutian", "pln": ["(: cnet_isa_b2e52d64f4 (IsA chinookan penutian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chino is a kind of pair of trouser", "pln": ["(: cnet_isa_5188d36e0a (IsA chino pair_of_trouser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chinquapin oak is a kind of chestnut oak", "pln": ["(: cnet_isa_88ec4993a1 (IsA chinquapin_oak chestnut_oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chintz is a kind of fabric", "pln": ["(: cnet_isa_80c29e0c6f (IsA chintz fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chiococca is a kind of asterid dicot genus", "pln": ["(: cnet_isa_680974c3b2 (IsA chiococca asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chionanthus is a kind of dicot genus", "pln": ["(: cnet_isa_cb3f6bd51a (IsA chionanthus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chip is a kind of breakage", "pln": ["(: cnet_isa_81556d479c (IsA chip breakage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chip is a kind of counter", "pln": ["(: cnet_isa_ddf29499fc (IsA chip counter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chip is a kind of semiconductor device", "pln": ["(: cnet_isa_875a1b513e (IsA chip semiconductor_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chip is a kind of snack food", "pln": ["(: cnet_isa_c4cadb3a1c (IsA chip snack_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chip is a kind of approach", "pln": ["(: cnet_isa_be9b8b8c7c (IsA chip approach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chip is a kind of dropping", "pln": ["(: cnet_isa_250d7e52b9 (IsA chip dropping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chip is a kind of float", "pln": ["(: cnet_isa_79f5e1213a (IsA chip float) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chipboard is a kind of board", "pln": ["(: cnet_isa_ec15012551 (IsA chipboard board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chipewyan is a kind of athapaskan", "pln": ["(: cnet_isa_25873206da (IsA chipewyan athapaskan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chipewyan is a kind of athabascan", "pln": ["(: cnet_isa_5f9e0f22df (IsA chipewyan athabascan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chipmunk is a kind of squirrel", "pln": ["(: cnet_isa_d99ed98dfc (IsA chipmunk squirrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chipolata is a kind of sausage", "pln": ["(: cnet_isa_00a6320ad7 (IsA chipolata sausage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chipotle is a kind of jalapeno", "pln": ["(: cnet_isa_bf92559b06 (IsA chipotle jalapeno) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chippewa is a kind of algonquin", "pln": ["(: cnet_isa_3b6439b17f (IsA chippewa algonquin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chippewa is a kind of buffalo indian", "pln": ["(: cnet_isa_657e087f7c (IsA chippewa buffalo_indian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chipping sparrow is a kind of new world sparrow", "pln": ["(: cnet_isa_2dd7a5661f (IsA chipping_sparrow new_world_sparrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chiralgia is a kind of pain", "pln": ["(: cnet_isa_98f9e50c9a (IsA chiralgia pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chiricahua apache is a kind of apache", "pln": ["(: cnet_isa_aab517e666 (IsA chiricahua_apache apache) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chiron is a kind of centaur", "pln": ["(: cnet_isa_9f40082aa0 (IsA chiron centaur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chiron is a kind of asteroid", "pln": ["(: cnet_isa_985189e3aa (IsA chiron asteroid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chironomidae is a kind of arthropod family", "pln": ["(: cnet_isa_74b86ccdcc (IsA chironomidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chironomus is a kind of arthropod genus", "pln": ["(: cnet_isa_d2a456d422 (IsA chironomus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chiropodist is a kind of specialist", "pln": ["(: cnet_isa_05bd65b87c (IsA chiropodist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chiropractic is a kind of treatment", "pln": ["(: cnet_isa_399592dfb9 (IsA chiropractic treatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chiropractor is a kind of therapist", "pln": ["(: cnet_isa_b7ec79a088 (IsA chiropractor therapist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chiroptera is a kind of animal order", "pln": ["(: cnet_isa_4b394460df (IsA chiroptera animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chirp is a kind of sound", "pln": ["(: cnet_isa_dcfd8de4d4 (IsA chirp sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chirpiness is a kind of animation", "pln": ["(: cnet_isa_fa559d9b06 (IsA chirpiness animation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chirrup is a kind of sound", "pln": ["(: cnet_isa_73c3bd0879 (IsA chirrup sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chisel is a kind of edge tool", "pln": ["(: cnet_isa_cf750e145e (IsA chisel edge_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chisel steel is a kind of steel", "pln": ["(: cnet_isa_7579c77be0 (IsA chisel_steel steel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chishona is a kind of bantu", "pln": ["(: cnet_isa_4bb3af559e (IsA chishona bantu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chit is a kind of girl", "pln": ["(: cnet_isa_f3325d58e2 (IsA chit girl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chitchat is a kind of chat", "pln": ["(: cnet_isa_0ced8e4fa4 (IsA chitchat chat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chitin is a kind of polysaccharide", "pln": ["(: cnet_isa_16a95b2bb4 (IsA chitin polysaccharide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chiton is a kind of mollusk", "pln": ["(: cnet_isa_a303cae6c7 (IsA chiton mollusk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chiton is a kind of tunic", "pln": ["(: cnet_isa_cdbf8ec681 (IsA chiton tunic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chitterling is a kind of variety meat", "pln": ["(: cnet_isa_4b6c049475 (IsA chitterling variety_meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chivalry is a kind of courtesy", "pln": ["(: cnet_isa_bd17cdac2c (IsA chivalry courtesy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chivalry is a kind of principle", "pln": ["(: cnet_isa_90656ca8fb (IsA chivalry principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chive is a kind of herb", "pln": ["(: cnet_isa_c67b39d0de (IsA chive herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chive is a kind of alliaceous plant", "pln": ["(: cnet_isa_b754097cb6 (IsA chive alliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chiwere is a kind of siouan", "pln": ["(: cnet_isa_dab48c7579 (IsA chiwere siouan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlamydera is a kind of bird genus", "pln": ["(: cnet_isa_4e3abc8d32 (IsA chlamydera bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chlamydia is a kind of eubacteria", "pln": ["(: cnet_isa_d4ee0226d2 (IsA chlamydia eubacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlamydia is a kind of venereal disease", "pln": ["(: cnet_isa_228540eae2 (IsA chlamydia venereal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlamydia psittaci is a kind of chlamydia", "pln": ["(: cnet_isa_efdb1daabb (IsA chlamydia_psittaci chlamydia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlamydia trachomatis is a kind of chlamydia", "pln": ["(: cnet_isa_3c7d23cc97 (IsA chlamydia_trachomatis chlamydia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlamydiaceae is a kind of bacteria family", "pln": ["(: cnet_isa_aa01ffc0b2 (IsA chlamydiaceae bacteria_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chlamydomonadaceae is a kind of protoctist family", "pln": ["(: cnet_isa_0621397d21 (IsA chlamydomonadaceae protoctist_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlamydomona is a kind of protoctist genus", "pln": ["(: cnet_isa_cf45fee0a6 (IsA chlamydomona protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlamydosaurus is a kind of reptile genus", "pln": ["(: cnet_isa_6d46990a14 (IsA chlamydosaurus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlamydospore is a kind of spore", "pln": ["(: cnet_isa_0b5f540299 (IsA chlamydospore spore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlamyphorus is a kind of mammal genus", "pln": ["(: cnet_isa_2ca4970626 (IsA chlamyphorus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlamy is a kind of cape", "pln": ["(: cnet_isa_97e1aea9d0 (IsA chlamy cape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chloasma is a kind of symptom", "pln": ["(: cnet_isa_a0531b59c6 (IsA chloasma symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chloral hydrate is a kind of sedative", "pln": ["(: cnet_isa_91500035f1 (IsA chloral_hydrate sedative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chloramine is a kind of antiseptic", "pln": ["(: cnet_isa_eecf14f6b1 (IsA chloramine antiseptic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chloramphenicol is a kind of antibiotic", "pln": ["(: cnet_isa_c28f9bebf7 (IsA chloramphenicol antibiotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chloranthaceae is a kind of dicot family", "pln": ["(: cnet_isa_01a027a600 (IsA chloranthaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chloranthus is a kind of dicot genus", "pln": ["(: cnet_isa_6ca0ecec62 (IsA chloranthus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorate is a kind of salt", "pln": ["(: cnet_isa_9aa3055c5f (IsA chlorate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorella is a kind of alga", "pln": ["(: cnet_isa_c3556fa953 (IsA chlorella alga) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorenchyma is a kind of parenchyma", "pln": ["(: cnet_isa_27adc38e8d (IsA chlorenchyma parenchyma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorhexidine is a kind of antiseptic", "pln": ["(: cnet_isa_35effd9b3c (IsA chlorhexidine antiseptic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chloric acid is a kind of acid", "pln": ["(: cnet_isa_23a719ba24 (IsA chloric_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chloride is a kind of compound", "pln": ["(: cnet_isa_66f4c3c463 (IsA chloride compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chloride is a kind of halide", "pln": ["(: cnet_isa_78edc1d841 (IsA chloride halide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorination is a kind of disinfection", "pln": ["(: cnet_isa_073c2d494b (IsA chlorination disinfection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorination is a kind of chemical process", "pln": ["(: cnet_isa_053788298d (IsA chlorination chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorine is a kind of chemical element", "pln": ["(: cnet_isa_5f8f8d5b15 (IsA chlorine chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorine is a kind of gas", "pln": ["(: cnet_isa_9c465bf154 (IsA chlorine gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorine is a kind of halogen", "pln": ["(: cnet_isa_8e15a6d9ea (IsA chlorine halogen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorine dioxide is a kind of bleaching agent", "pln": ["(: cnet_isa_d5b5623cf8 (IsA chlorine_dioxide bleaching_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorine dioxide is a kind of dioxide", "pln": ["(: cnet_isa_0948377b75 (IsA chlorine_dioxide dioxide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorine water is a kind of bleaching agent", "pln": ["(: cnet_isa_03b48af15b (IsA chlorine_water bleaching_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorine water is a kind of solution", "pln": ["(: cnet_isa_d471e98966 (IsA chlorine_water solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorinity is a kind of definite quantity", "pln": ["(: cnet_isa_5604b6886b (IsA chlorinity definite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chloris is a kind of monocot genus", "pln": ["(: cnet_isa_0be1b392ab (IsA chloris monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorite is a kind of mineral", "pln": ["(: cnet_isa_9428f31539 (IsA chlorite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chloroacetophenone is a kind of tear gas", "pln": ["(: cnet_isa_8f41ea714c (IsA chloroacetophenone tear_gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorobenzene is a kind of hydrocarbon", "pln": ["(: cnet_isa_5a3096d99f (IsA chlorobenzene hydrocarbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorobenzene is a kind of solvent", "pln": ["(: cnet_isa_590aa48566 (IsA chlorobenzene solvent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorobenzylidenemalononitrile is a kind of tear gas", "pln": ["(: cnet_isa_3941876489 (IsA chlorobenzylidenemalononitrile tear_gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorococcale is a kind of protoctist order", "pln": ["(: cnet_isa_9bad4de5b9 (IsA chlorococcale protoctist_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorococcum is a kind of protoctist genus", "pln": ["(: cnet_isa_6f943ab12f (IsA chlorococcum protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorofluorocarbon is a kind of fluorocarbon", "pln": ["(: cnet_isa_b7837bc1bd (IsA chlorofluorocarbon fluorocarbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorofluorocarbon is a kind of greenhouse gas", "pln": ["(: cnet_isa_710d32ff20 (IsA chlorofluorocarbon greenhouse_gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chlorofluorocarbon is a kind of pollutant", "pln": ["(: cnet_isa_3f8cf27572 (IsA chlorofluorocarbon pollutant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chloroform is a kind of haloform", "pln": ["(: cnet_isa_ffb54c6d10 (IsA chloroform haloform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chloroform is a kind of inhalation anesthetic", "pln": ["(: cnet_isa_24a0d9343a (IsA chloroform inhalation_anesthetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorophis is a kind of reptile genus", "pln": ["(: cnet_isa_a60c770423 (IsA chlorophis reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chlorophoneus is a kind of bird genus", "pln": ["(: cnet_isa_79776fbdc2 (IsA chlorophoneus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorophthalmidae is a kind of fish family", "pln": ["(: cnet_isa_cbefcf0e41 (IsA chlorophthalmidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorophyceae is a kind of class", "pln": ["(: cnet_isa_d4e9f80e1a (IsA chlorophyceae class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorophyll is a kind of chemical", "pln": ["(: cnet_isa_cc5b5ed533 (IsA chlorophyll chemical) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorophyll is a kind of chlorophyll", "pln": ["(: cnet_isa_b55f8f13b9 (IsA chlorophyll chlorophyll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorophyll is a kind of pigment", "pln": ["(: cnet_isa_e63279bf16 (IsA chlorophyll pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorophyll b is a kind of chlorophyll", "pln": ["(: cnet_isa_4247a97382 (IsA chlorophyll_b chlorophyll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorophyll c is a kind of chlorophyll", "pln": ["(: cnet_isa_a407d5135f (IsA chlorophyll_c chlorophyll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chlorophyll d is a kind of chlorophyll", "pln": ["(: cnet_isa_11f977eacf (IsA chlorophyll_d chlorophyll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "chlorpyrifos is a kind of organophosphate", "pln": ["(: cnet_isa_17379fc4d7 (IsA chlorpyrifos organophosphate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorophyll molecule is a kind of chlorophyll", "pln": ["(: cnet_isa_6d5ce38112 (IsA chlorophyll_molecule chlorophyll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorophyll molecule is a kind of molecule", "pln": ["(: cnet_isa_518a23962e (IsA chlorophyll_molecule molecule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorophyllum molybdite is a kind of agaric", "pln": ["(: cnet_isa_1522edb60c (IsA chlorophyllum_molybdite agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorophyta is a kind of division", "pln": ["(: cnet_isa_707ed19f40 (IsA chlorophyta division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chloropicrin is a kind of compound", "pln": ["(: cnet_isa_4261574b01 (IsA chloropicrin compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chloroplast is a kind of plastid", "pln": ["(: cnet_isa_70888cc1cd (IsA chloroplast plastid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chloroprene is a kind of butadiene", "pln": ["(: cnet_isa_46b39a291c (IsA chloroprene butadiene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chloroquine is a kind of antimalarial", "pln": ["(: cnet_isa_35e4c7d99a (IsA chloroquine antimalarial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorosis is a kind of iron deficiency anemia", "pln": ["(: cnet_isa_0ca82da366 (IsA chlorosis iron_deficiency_anemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorous acid is a kind of acid", "pln": ["(: cnet_isa_fb8e8cf406 (IsA chlorous_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chloroxylon is a kind of rosid dicot genus", "pln": ["(: cnet_isa_decebfa7a7 (IsA chloroxylon rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorpyrifo is a kind of organophosphate", "pln": ["(: cnet_isa_54d733c309 (IsA chlorpyrifo organophosphate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chlorura is a kind of bird genus", "pln": ["(: cnet_isa_e20be5c7c7 (IsA chlorura bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choanocyte is a kind of flagellated cell", "pln": ["(: cnet_isa_45a46fa2bd (IsA choanocyte flagellated_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choc is a kind of chocolate candy", "pln": ["(: cnet_isa_b431073f84 (IsA choc chocolate_candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choc ice is a kind of chocolate ice cream", "pln": ["(: cnet_isa_be4a5bee90 (IsA choc_ice chocolate_ice_cream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chock is a kind of block", "pln": ["(: cnet_isa_07bc27e0b7 (IsA chock block) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chocolate is a kind of candy", "pln": ["(: cnet_isa_394e5c10eb (IsA chocolate candy) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chocolate is a kind of favorite food of people", "pln": ["(: cnet_isa_beeb79e08c (IsA chocolate favorite_food_of_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chocolate is a kind of food", "pln": ["(: cnet_isa_39e0478dd4 (IsA chocolate food) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chocolate is a kind of brown", "pln": ["(: cnet_isa_f33ec44cac (IsA chocolate brown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chocolate bar is a kind of chocolate candy", "pln": ["(: cnet_isa_b7e50181b3 (IsA chocolate_bar chocolate_candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chocolate cake is a kind of cake", "pln": ["(: cnet_isa_61170aaef9 (IsA chocolate_cake cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chocolate candy is a kind of chocolate", "pln": ["(: cnet_isa_e68d85b073 (IsA chocolate_candy chocolate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chocolate chip cookie is a kind of cookie", "pln": ["(: cnet_isa_e6ed171d7e (IsA chocolate_chip_cookie cookie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chocolate eclair is a kind of eclair", "pln": ["(: cnet_isa_6ea60e0b69 (IsA chocolate_eclair eclair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chocolate egg is a kind of easter egg", "pln": ["(: cnet_isa_8244d30149 (IsA chocolate_egg easter_egg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chocolate fondue is a kind of fondue", "pln": ["(: cnet_isa_b25a96855d (IsA chocolate_fondue fondue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chocolate fudge is a kind of fudge", "pln": ["(: cnet_isa_7429da05c4 (IsA chocolate_fudge fudge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chocolate ice cream is a kind of ice cream", "pln": ["(: cnet_isa_09e606ed48 (IsA chocolate_ice_cream ice_cream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chocolate kiss is a kind of chocolate candy", "pln": ["(: cnet_isa_5c035dd9eb (IsA chocolate_kiss chocolate_candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chocolate kiss is a kind of kiss", "pln": ["(: cnet_isa_2060f03ded (IsA chocolate_kiss kiss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chocolate liquor is a kind of chocolate", "pln": ["(: cnet_isa_2ac5be0e20 (IsA chocolate_liquor chocolate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chocolate milk is a kind of milk", "pln": ["(: cnet_isa_3eb0250a20 (IsA chocolate_milk milk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chocolate mousse is a kind of mousse", "pln": ["(: cnet_isa_8329f0ace4 (IsA chocolate_mousse mousse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chocolate pudding is a kind of pudding", "pln": ["(: cnet_isa_e06f93ec51 (IsA chocolate_pudding pudding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chocolate sauce is a kind of sauce", "pln": ["(: cnet_isa_00aa10c0a7 (IsA chocolate_sauce sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choctaw is a kind of muskhogean", "pln": ["(: cnet_isa_c2d51a4117 (IsA choctaw muskhogean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choctaw is a kind of muskogean", "pln": ["(: cnet_isa_10351c7db1 (IsA choctaw muskogean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choeronycteris is a kind of mammal genus", "pln": ["(: cnet_isa_3645a24e20 (IsA choeronycteris mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choice is a kind of action", "pln": ["(: cnet_isa_0b1bddf03a (IsA choice action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choice is a kind of decision making", "pln": ["(: cnet_isa_0b40cae923 (IsA choice decision_making) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choice morsel is a kind of dainty", "pln": ["(: cnet_isa_72f4dd1503 (IsA choice_morsel dainty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choir is a kind of group of people", "pln": ["(: cnet_isa_6039ff4ac7 (IsA choir group_of_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choir is a kind of area", "pln": ["(: cnet_isa_296f4e9d10 (IsA choir area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choir is a kind of chorus", "pln": ["(: cnet_isa_2f4cf76550 (IsA choir chorus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choir is a kind of set", "pln": ["(: cnet_isa_2633af33c7 (IsA choir set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choir loft is a kind of gallery", "pln": ["(: cnet_isa_4bdcd8f788 (IsA choir_loft gallery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choir school is a kind of preparatory school", "pln": ["(: cnet_isa_54db1e37c7 (IsA choir_school preparatory_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choirboy is a kind of chorister", "pln": ["(: cnet_isa_8d3624a033 (IsA choirboy chorister) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choirmaster is a kind of musician", "pln": ["(: cnet_isa_48c8863d49 (IsA choirmaster musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choke is a kind of coil", "pln": ["(: cnet_isa_a155bb2e88 (IsA choke coil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choke is a kind of valve", "pln": ["(: cnet_isa_aed9a6a29f (IsA choke valve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chokecherry is a kind of cherry", "pln": ["(: cnet_isa_91540c6744 (IsA chokecherry cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chokecherry is a kind of fruit", "pln": ["(: cnet_isa_b8ee2ad612 (IsA chokecherry fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chokedamp is a kind of carbon dioxide", "pln": ["(: cnet_isa_6f09b55374 (IsA chokedamp carbon_dioxide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chokehold is a kind of clasp", "pln": ["(: cnet_isa_7df8449be5 (IsA chokehold clasp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chokepoint is a kind of point", "pln": ["(: cnet_isa_efcae5d9da (IsA chokepoint point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choker is a kind of collar", "pln": ["(: cnet_isa_a109c60ee2 (IsA choker collar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choker is a kind of necklace", "pln": ["(: cnet_isa_9ec25c15fe (IsA choker necklace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choker is a kind of unfortunate", "pln": ["(: cnet_isa_81aa959e41 (IsA choker unfortunate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chokey is a kind of prison", "pln": ["(: cnet_isa_15f79b2f02 (IsA chokey prison) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choking is a kind of suffocation", "pln": ["(: cnet_isa_d5e7e2b308 (IsA choking suffocation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choking is a kind of disorder", "pln": ["(: cnet_isa_f97d9a2e84 (IsA choking disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cholangiography is a kind of roentgenography", "pln": ["(: cnet_isa_35e62e7711 (IsA cholangiography roentgenography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cholangitis is a kind of inflammation", "pln": ["(: cnet_isa_872cf41868 (IsA cholangitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cholecystectomy is a kind of ablation", "pln": ["(: cnet_isa_a8598457d0 (IsA cholecystectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cholecystitis is a kind of inflammation", "pln": ["(: cnet_isa_42d70a24e9 (IsA cholecystitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cholecystokinin is a kind of gastrointestinal hormone", "pln": ["(: cnet_isa_ecf017c35a (IsA cholecystokinin gastrointestinal_hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cholelithiasis is a kind of lithiasis", "pln": ["(: cnet_isa_b53f661072 (IsA cholelithiasis lithiasis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cholelithotomy is a kind of lithotomy", "pln": ["(: cnet_isa_3d643738b1 (IsA cholelithotomy lithotomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cholera is a kind of infectious disease", "pln": ["(: cnet_isa_5058c7e60d (IsA cholera infectious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cholera infantum is a kind of gastroenteritis", "pln": ["(: cnet_isa_f93ee2b3e6 (IsA cholera_infantum gastroenteritis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cholera morbus is a kind of gastroenteritis", "pln": ["(: cnet_isa_53855fb72d (IsA cholera_morbus gastroenteritis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cholesterol is a kind of sterol", "pln": ["(: cnet_isa_23686bccf8 (IsA cholesterol sterol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cholic acid is a kind of bile acid", "pln": ["(: cnet_isa_d140b4d13e (IsA cholic_acid bile_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "choline is a kind of b complex vitamin", "pln": ["(: cnet_isa_4169a5e43f (IsA choline b_complex_vitamin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cholinesterase is a kind of enzyme", "pln": ["(: cnet_isa_ecf3314cea (IsA cholinesterase enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cholla is a kind of cactus", "pln": ["(: cnet_isa_4aea0bd815 (IsA cholla cactus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choloepus is a kind of mammal genus", "pln": ["(: cnet_isa_7fb901009b (IsA choloepus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chomping is a kind of chew", "pln": ["(: cnet_isa_f74d1a830f (IsA chomping chew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chon is a kind of north korean monetary unit", "pln": ["(: cnet_isa_f05dc76410 (IsA chon north_korean_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chon is a kind of south korean monetary unit", "pln": ["(: cnet_isa_44eb63efe5 (IsA chon south_korean_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chondrichthye is a kind of class", "pln": ["(: cnet_isa_16677c77a7 (IsA chondrichthye class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chondrin is a kind of scleroprotein", "pln": ["(: cnet_isa_a7c4bdd382 (IsA chondrin scleroprotein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chondrite is a kind of meteorite", "pln": ["(: cnet_isa_c0550a73c4 (IsA chondrite meteorite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chondrite is a kind of rock", "pln": ["(: cnet_isa_1eef9701cc (IsA chondrite rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chondroma is a kind of benign tumor", "pln": ["(: cnet_isa_a2f580d97f (IsA chondroma benign_tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chondrosarcoma is a kind of sarcoma", "pln": ["(: cnet_isa_c9e2e2549b (IsA chondrosarcoma sarcoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chondrule is a kind of granule", "pln": ["(: cnet_isa_6b06494ede (IsA chondrule granule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chondrus is a kind of protoctist genus", "pln": ["(: cnet_isa_64d3947e0c (IsA chondrus protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choo choo is a kind of locomotive", "pln": ["(: cnet_isa_3b3765b3ab (IsA choo_choo locomotive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chop is a kind of grounder", "pln": ["(: cnet_isa_312af18779 (IsA chop grounder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chop is a kind of return", "pln": ["(: cnet_isa_76b7bccbe0 (IsA chop return) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chop is a kind of jaw", "pln": ["(: cnet_isa_891fe0c279 (IsA chop jaw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chop is a kind of cut", "pln": ["(: cnet_isa_be2b91418e (IsA chop cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chop is a kind of physical phenomenon", "pln": ["(: cnet_isa_b26225b618 (IsA chop physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chop shop is a kind of workshop", "pln": ["(: cnet_isa_101bbce59a (IsA chop_shop workshop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chop suey is a kind of dish", "pln": ["(: cnet_isa_fd4d06a41a (IsA chop_suey dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chop suey green is a kind of green", "pln": ["(: cnet_isa_a6b28dcae8 (IsA chop_suey_green green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chop suey green is a kind of chrysanthemum", "pln": ["(: cnet_isa_be7653f1bd (IsA chop_suey_green chrysanthemum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chopin is a kind of music", "pln": ["(: cnet_isa_c52f241653 (IsA chopin music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chopine is a kind of shoe", "pln": ["(: cnet_isa_57853f1895 (IsA chopine shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chopped steak is a kind of beefsteak", "pln": ["(: cnet_isa_dff89cec9b (IsA chopped_steak beefsteak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chopper is a kind of tooth", "pln": ["(: cnet_isa_eecf7481bf (IsA chopper tooth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choppiness is a kind of storminess", "pln": ["(: cnet_isa_59a4588f47 (IsA choppiness storminess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chopping block is a kind of block", "pln": ["(: cnet_isa_3f67cea708 (IsA chopping_block block) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chopping board is a kind of board", "pln": ["(: cnet_isa_df2b3fcdfd (IsA chopping_board board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chopstick is a kind of tableware", "pln": ["(: cnet_isa_a495b3b18d (IsA chopstick tableware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choragus is a kind of leader", "pln": ["(: cnet_isa_63512a1b06 (IsA choragus leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choral ode is a kind of ode", "pln": ["(: cnet_isa_8053005cad (IsA choral_ode ode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chorale is a kind of hymn", "pln": ["(: cnet_isa_a3d22777e4 (IsA chorale hymn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chorale prelude is a kind of prelude", "pln": ["(: cnet_isa_fd98aa361c (IsA chorale_prelude prelude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chord is a kind of note", "pln": ["(: cnet_isa_9a3521b892 (IsA chord note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chord is a kind of straight line", "pln": ["(: cnet_isa_3db6646e44 (IsA chord straight_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chordamesoderm is a kind of mesoderm", "pln": ["(: cnet_isa_c44e35bc8f (IsA chordamesoderm mesoderm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chordata is a kind of phylum", "pln": ["(: cnet_isa_e7baff68df (IsA chordata phylum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chordate is a kind of animal", "pln": ["(: cnet_isa_4643f8a58e (IsA chordate animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chordate family is a kind of family", "pln": ["(: cnet_isa_994dc15fc0 (IsA chordate_family family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chordate genus is a kind of genus", "pln": ["(: cnet_isa_59684e6e86 (IsA chordate_genus genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chordeile is a kind of bird genus", "pln": ["(: cnet_isa_6823ce6888 (IsA chordeile bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chorditis is a kind of inflammation", "pln": ["(: cnet_isa_ecf77fd127 (IsA chorditis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chordophone is a kind of stringed instrument", "pln": ["(: cnet_isa_60f6fd73ce (IsA chordophone stringed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chordospartium is a kind of rosid dicot genus", "pln": ["(: cnet_isa_d54018ab8c (IsA chordospartium rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chorea is a kind of degenerative disorder", "pln": ["(: cnet_isa_b44a7ee3fe (IsA chorea degenerative_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chorea is a kind of nervous disorder", "pln": ["(: cnet_isa_1dc23bb2a8 (IsA chorea nervous_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choreic abasia is a kind of abasia", "pln": ["(: cnet_isa_aac45280cc (IsA choreic_abasia abasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choreographer is a kind of creator", "pln": ["(: cnet_isa_4eb4a1c5d9 (IsA choreographer creator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choreography is a kind of dance", "pln": ["(: cnet_isa_dc20fd3482 (IsA choreography dance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choreography is a kind of notation", "pln": ["(: cnet_isa_f3abc2563e (IsA choreography notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chorioallantois is a kind of membrane", "pln": ["(: cnet_isa_6d3650acb4 (IsA chorioallantois membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choriomeningitis is a kind of meningitis", "pln": ["(: cnet_isa_9e26d577fd (IsA choriomeningitis meningitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chorion is a kind of sac", "pln": ["(: cnet_isa_4a6eb6419e (IsA chorion sac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chorionic villus is a kind of villus", "pln": ["(: cnet_isa_bfb4dcc51d (IsA chorionic_villus villus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chorionic villus sampling is a kind of biopsy", "pln": ["(: cnet_isa_df7e398b0c (IsA chorionic_villus_sampling biopsy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chorioretinitis is a kind of retinitis", "pln": ["(: cnet_isa_50679a568d (IsA chorioretinitis retinitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choriotis is a kind of bird genus", "pln": ["(: cnet_isa_0785a838ea (IsA choriotis bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chorister is a kind of singer", "pln": ["(: cnet_isa_eb422b3764 (IsA chorister singer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chorizagrotis is a kind of arthropod genus", "pln": ["(: cnet_isa_07383cbf5d (IsA chorizagrotis arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chorizema is a kind of rosid dicot genus", "pln": ["(: cnet_isa_1a31d599d6 (IsA chorizema rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chorizo is a kind of sausage", "pln": ["(: cnet_isa_b51558780a (IsA chorizo sausage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choroid is a kind of membrane", "pln": ["(: cnet_isa_e12fef5349 (IsA choroid membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choroid plexus is a kind of plexus", "pln": ["(: cnet_isa_9167b9945b (IsA choroid_plexus plexus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choroid vein is a kind of vein", "pln": ["(: cnet_isa_38f7e5f18d (IsA choroid_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choroidal artery is a kind of artery", "pln": ["(: cnet_isa_02726ce1a3 (IsA choroidal_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "choropleth map is a kind of map", "pln": ["(: cnet_isa_ff9277b398 (IsA choropleth_map map) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chortle is a kind of laugh", "pln": ["(: cnet_isa_68c03a528a (IsA chortle laugh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chorus is a kind of sound", "pln": ["(: cnet_isa_603fca7f9f (IsA chorus sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chorus is a kind of line", "pln": ["(: cnet_isa_e1b717bd06 (IsA chorus line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chorus is a kind of musical organization", "pln": ["(: cnet_isa_11ace3a134 (IsA chorus musical_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chorus is a kind of company", "pln": ["(: cnet_isa_cd95040674 (IsA chorus company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chorus frog is a kind of tree toad", "pln": ["(: cnet_isa_90a0191b21 (IsA chorus_frog tree_toad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chorus girl is a kind of dancer", "pln": ["(: cnet_isa_bc13f875d1 (IsA chorus_girl dancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chosen is a kind of elite", "pln": ["(: cnet_isa_41d759eb96 (IsA chosen elite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chosen is a kind of darling", "pln": ["(: cnet_isa_0e2fe08d6a (IsA chosen darling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chosen people is a kind of people", "pln": ["(: cnet_isa_9a219f090a (IsA chosen_people people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chough is a kind of corvine bird", "pln": ["(: cnet_isa_a961e4985c (IsA chough corvine_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chow is a kind of breed of dog", "pln": ["(: cnet_isa_19447200af (IsA chow breed_of_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chow is a kind of spitz", "pln": ["(: cnet_isa_cddafdb53e (IsA chow spitz) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chow is a kind of fare", "pln": ["(: cnet_isa_ee33bb9a53 (IsA chow fare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chow line is a kind of queue", "pln": ["(: cnet_isa_dfc9a3e351 (IsA chow_line queue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chow mein is a kind of dish", "pln": ["(: cnet_isa_69981253b0 (IsA chow_mein dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chowchow is a kind of conserve", "pln": ["(: cnet_isa_260733405c (IsA chowchow conserve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chowchow is a kind of relish", "pln": ["(: cnet_isa_3de29e8e70 (IsA chowchow relish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chowder is a kind of soup", "pln": ["(: cnet_isa_cd8ab18ddb (IsA chowder soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrestomathy is a kind of excerpt", "pln": ["(: cnet_isa_f01845dafe (IsA chrestomathy excerpt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrism is a kind of ointment", "pln": ["(: cnet_isa_6fc3dd43b4 (IsA chrism ointment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christ s thorn is a kind of shrub", "pln": ["(: cnet_isa_788afaebac (IsA christ_s_thorn shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christella is a kind of fern", "pln": ["(: cnet_isa_ad5807287b (IsA christella fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christendom is a kind of body", "pln": ["(: cnet_isa_cb8fb631ce (IsA christendom body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christening is a kind of baptism", "pln": ["(: cnet_isa_9947340160 (IsA christening baptism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christian is a kind of follower of christ", "pln": ["(: cnet_isa_e49140a7c1 (IsA christian follower_of_christ) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christian is a kind of religionist", "pln": ["(: cnet_isa_c5547ee322 (IsA christian religionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christian church is a kind of protestant denomination", "pln": ["(: cnet_isa_b57ea7c5ae (IsA christian_church protestant_denomination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christian holy day is a kind of religious holiday", "pln": ["(: cnet_isa_6cde4d20f4 (IsA christian_holy_day religious_holiday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "christian liturgy is a kind of liturgy", "pln": ["(: cnet_isa_78a103385a (IsA christian_liturgy liturgy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christian name is a kind of first name", "pln": ["(: cnet_isa_e6176d35ff (IsA christian_name first_name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christian science is a kind of protestantism", "pln": ["(: cnet_isa_f961ce665e (IsA christian_science protestantism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christian science is a kind of protestant denomination", "pln": ["(: cnet_isa_22700350db (IsA christian_science protestant_denomination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christian scientist is a kind of protestant", "pln": ["(: cnet_isa_ca9a42e881 (IsA christian_scientist protestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christian theology is a kind of theology", "pln": ["(: cnet_isa_0d531f298f (IsA christian_theology theology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "christianity is a kind of major world religion", "pln": ["(: cnet_isa_1e80473ebe (IsA christianity major_world_religion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "christmas is a kind of christian holiday", "pln": ["(: cnet_isa_c6910ee14e (IsA christmas christian_holiday) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "christmas is a kind of legal holiday", "pln": ["(: cnet_isa_e0f6a64ef2 (IsA christmas legal_holiday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "christmas is a kind of season", "pln": ["(: cnet_isa_c12445be97 (IsA christmas season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christianity is a kind of monotheistic religion", "pln": ["(: cnet_isa_65deb14062 (IsA christianity monotheistic_religion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christianity is a kind of relegion", "pln": ["(: cnet_isa_c83b089a68 (IsA christianity relegion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christianity is a kind of religion", "pln": ["(: cnet_isa_672dddc58b (IsA christianity religion) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christianization is a kind of conversion", "pln": ["(: cnet_isa_ee07a879d2 (IsA christianization conversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christian is a kind of people", "pln": ["(: cnet_isa_121c8ff3d2 (IsA christian people) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christma is a kind of christian holiday", "pln": ["(: cnet_isa_5ff406a22d (IsA christma christian_holiday) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christma is a kind of commercialized holiday", "pln": ["(: cnet_isa_86cecf735c (IsA christma commercialized_holiday) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christma is a kind of holiday", "pln": ["(: cnet_isa_17b47244ca (IsA christma holiday) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christma is a kind of on december 25", "pln": ["(: cnet_isa_769fe8948e (IsA christma on_december_25) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christma is a kind of subset of holiday", "pln": ["(: cnet_isa_e3fbd1dc33 (IsA christma subset_of_holiday) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christma is a kind of feast day", "pln": ["(: cnet_isa_b9e35acc26 (IsA christma feast_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christma is a kind of holy day of obligation", "pln": ["(: cnet_isa_e92eff98d7 (IsA christma holy_day_of_obligation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christma is a kind of legal holiday", "pln": ["(: cnet_isa_c18acdf986 (IsA christma legal_holiday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christma is a kind of quarter day", "pln": ["(: cnet_isa_d05413bfa9 (IsA christma quarter_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christma is a kind of season", "pln": ["(: cnet_isa_a02c5efb12 (IsA christma season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christma begonia is a kind of begonia", "pln": ["(: cnet_isa_1a8a9f8406 (IsA christma_begonia begonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christma bell is a kind of flower", "pln": ["(: cnet_isa_c2cfcedae1 (IsA christma_bell flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christma box is a kind of gratuity", "pln": ["(: cnet_isa_e05232eed5 (IsA christma_box gratuity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christma bush is a kind of tree", "pln": ["(: cnet_isa_bdfc255f8e (IsA christma_bush tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christma cactus is a kind of cactus", "pln": ["(: cnet_isa_dc988b232d (IsA christma_cactus cactus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christma cake is a kind of fruitcake", "pln": ["(: cnet_isa_a0611f50b6 (IsA christma_cake fruitcake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christma card is a kind of greeting card", "pln": ["(: cnet_isa_03b734256f (IsA christma_card greeting_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christma eve is a kind of holiday", "pln": ["(: cnet_isa_100fb0a608 (IsA christma_eve holiday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christma factor is a kind of coagulation factor", "pln": ["(: cnet_isa_71c72b5aba (IsA christma_factor coagulation_factor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christma fern is a kind of fern", "pln": ["(: cnet_isa_df01732eb7 (IsA christma_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christma present is a kind of present", "pln": ["(: cnet_isa_3bfc7c2fec (IsA christma_present present) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christma rose is a kind of hellebore", "pln": ["(: cnet_isa_d147621d43 (IsA christma_rose hellebore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christma stocking is a kind of stocking", "pln": ["(: cnet_isa_f681c0f1a8 (IsA christma_stocking stocking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christma tree is a kind of decoration", "pln": ["(: cnet_isa_357a29edfc (IsA christma_tree decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christmasberry is a kind of shrub", "pln": ["(: cnet_isa_8f93afcc97 (IsA christmasberry shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christology is a kind of christian theology", "pln": ["(: cnet_isa_fef083cd54 (IsA christology christian_theology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "christology is a kind of theological doctrine", "pln": ["(: cnet_isa_75b40d51b7 (IsA christology theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chromate is a kind of salt", "pln": ["(: cnet_isa_2fa236b296 (IsA chromate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chromatic aberration is a kind of aberration", "pln": ["(: cnet_isa_4d0fe34354 (IsA chromatic_aberration aberration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chromatic color is a kind of color", "pln": ["(: cnet_isa_35e293ffc5 (IsA chromatic_color color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chromatic scale is a kind of scale", "pln": ["(: cnet_isa_9430832cdd (IsA chromatic_scale scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chromatid is a kind of fibril", "pln": ["(: cnet_isa_0cfcb2aea1 (IsA chromatid fibril) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chromatin is a kind of body substance", "pln": ["(: cnet_isa_962fd24196 (IsA chromatin body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chromatism is a kind of pigmentation", "pln": ["(: cnet_isa_97690b9851 (IsA chromatism pigmentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chromatism is a kind of visual hallucination", "pln": ["(: cnet_isa_acd6e5a444 (IsA chromatism visual_hallucination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chromatogram is a kind of recording", "pln": ["(: cnet_isa_e8b4a23f67 (IsA chromatogram recording) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chromatography is a kind of natural process", "pln": ["(: cnet_isa_53c800c34b (IsA chromatography natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrome is a kind of chromium", "pln": ["(: cnet_isa_f59013b116 (IsA chrome chromium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chrome alum is a kind of mordant", "pln": ["(: cnet_isa_7dc6c7222a (IsA chrome_alum mordant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrome alum is a kind of salt", "pln": ["(: cnet_isa_dc1edcaec8 (IsA chrome_alum salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrome green is a kind of green", "pln": ["(: cnet_isa_8daeb33255 (IsA chrome_green green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrome green is a kind of pigment", "pln": ["(: cnet_isa_b82b423692 (IsA chrome_green pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrome red is a kind of red", "pln": ["(: cnet_isa_c1b2414f10 (IsA chrome_red red) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chrome tungsten steel is a kind of alloy steel", "pln": ["(: cnet_isa_6d17b1883e (IsA chrome_tungsten_steel alloy_steel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrome yellow is a kind of pigment", "pln": ["(: cnet_isa_f53cd0a0a3 (IsA chrome_yellow pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chromesthesia is a kind of synesthesia", "pln": ["(: cnet_isa_7155cf09ac (IsA chromesthesia synesthesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chromic acid is a kind of acid", "pln": ["(: cnet_isa_631b120e6f (IsA chromic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chromite is a kind of mineral", "pln": ["(: cnet_isa_5b7b239c35 (IsA chromite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chromium is a kind of metallic element", "pln": ["(: cnet_isa_172d992ab3 (IsA chromium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chromoblastomycosis is a kind of blastomycosis", "pln": ["(: cnet_isa_f7c0047121 (IsA chromoblastomycosis blastomycosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chromogen is a kind of compound", "pln": ["(: cnet_isa_a30c0178a0 (IsA chromogen compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chromolithography is a kind of lithography", "pln": ["(: cnet_isa_7b70c8cb39 (IsA chromolithography lithography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chromophore is a kind of group", "pln": ["(: cnet_isa_dfffcf4083 (IsA chromophore group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chromoplast is a kind of plastid", "pln": ["(: cnet_isa_b81d3ada93 (IsA chromoplast plastid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chromosomal aberration is a kind of aberrance", "pln": ["(: cnet_isa_6af6fc3a7f (IsA chromosomal_aberration aberrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chromosome is a kind of body", "pln": ["(: cnet_isa_022a8a13ac (IsA chromosome body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chromosphere is a kind of layer", "pln": ["(: cnet_isa_f12505c861 (IsA chromosphere layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chronic bronchitis is a kind of bronchitis", "pln": ["(: cnet_isa_6016a4adea (IsA chronic_bronchitis bronchitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chronic gastritis is a kind of gastritis", "pln": ["(: cnet_isa_a9626c7073 (IsA chronic_gastritis gastritis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chronic glaucoma is a kind of glaucoma", "pln": ["(: cnet_isa_9cb6e7e8e1 (IsA chronic_glaucoma glaucoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chronic glossitis is a kind of glossitis", "pln": ["(: cnet_isa_f67a1df79e (IsA chronic_glossitis glossitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chronic leukemia is a kind of leukemia", "pln": ["(: cnet_isa_3c2aeca7b3 (IsA chronic_leukemia leukemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chronic lymphocytic leukemia is a kind of chronic leukemia", "pln": ["(: cnet_isa_f2e291485e (IsA chronic_lymphocytic_leukemia chronic_leukemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chronic myelocytic leukemia is a kind of chronic leukemia", "pln": ["(: cnet_isa_7e95b2725e (IsA chronic_myelocytic_leukemia chronic_leukemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chronic myelocytic leukemia is a kind of myelocytic leukemia", "pln": ["(: cnet_isa_cc4eb408d1 (IsA chronic_myelocytic_leukemia myelocytic_leukemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chronic obstructive pulmonary disease is a kind of chronic bronchitis", "pln": ["(: cnet_isa_cb633f14df (IsA chronic_obstructive_pulmonary_disease chronic_bronchitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chronic obstructive pulmonary disease is a kind of emphysema", "pln": ["(: cnet_isa_3d7c5b0d6b (IsA chronic_obstructive_pulmonary_disease emphysema) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chronic pyelonephritis is a kind of pyelonephritis", "pln": ["(: cnet_isa_ebf1d88503 (IsA chronic_pyelonephritis pyelonephritis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chronic renal failure is a kind of renal failure", "pln": ["(: cnet_isa_ad6e77ba61 (IsA chronic_renal_failure renal_failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "chronoperates is a kind of reptile genus", "pln": ["(: cnet_isa_14ba6cbef8 (IsA chronoperates reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chronic wasting disease is a kind of animal disease", "pln": ["(: cnet_isa_3a7ca046e8 (IsA chronic_wasting_disease animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chronicler is a kind of historian", "pln": ["(: cnet_isa_0843b8eb2b (IsA chronicler historian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chronograph is a kind of timer", "pln": ["(: cnet_isa_6c8d0b3a9f (IsA chronograph timer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chronological age is a kind of age", "pln": ["(: cnet_isa_d46c4119e1 (IsA chronological_age age) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chronology is a kind of humanistic discipline", "pln": ["(: cnet_isa_3bf1a6ed1f (IsA chronology humanistic_discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chronology is a kind of written record", "pln": ["(: cnet_isa_fe43071310 (IsA chronology written_record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chronology is a kind of temporal relation", "pln": ["(: cnet_isa_925ff81ef0 (IsA chronology temporal_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chronometer is a kind of clock", "pln": ["(: cnet_isa_a30194fddc (IsA chronometer clock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chronoperate is a kind of reptile genus", "pln": ["(: cnet_isa_8996b9b337 (IsA chronoperate reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chronoperate paradoxus is a kind of therapsid", "pln": ["(: cnet_isa_c42a7757d4 (IsA chronoperate_paradoxus therapsid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chronoscope is a kind of measuring instrument", "pln": ["(: cnet_isa_506a1e4cee (IsA chronoscope measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chrysalis is a kind of pupa", "pln": ["(: cnet_isa_0e0b8bd62c (IsA chrysalis pupa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrysanthemum is a kind of flower", "pln": ["(: cnet_isa_13a268ca74 (IsA chrysanthemum flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chrysaora is a kind of coelenterate genus", "pln": ["(: cnet_isa_f2a8e28584 (IsA chrysaora coelenterate_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrysaora quinquecirrha is a kind of jellyfish", "pln": ["(: cnet_isa_05f722e3b8 (IsA chrysaora_quinquecirrha jellyfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrysemy is a kind of reptile genus", "pln": ["(: cnet_isa_95738aef9f (IsA chrysemy reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrysobalanus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_eabec0b2f3 (IsA chrysobalanus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrysoberyl is a kind of mineral", "pln": ["(: cnet_isa_d3cecdef3b (IsA chrysoberyl mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrysoberyl is a kind of opaque gem", "pln": ["(: cnet_isa_94c13c5eb0 (IsA chrysoberyl opaque_gem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrysochloridae is a kind of mammal family", "pln": ["(: cnet_isa_b93876a7b6 (IsA chrysochloridae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrysochloris is a kind of mammal genus", "pln": ["(: cnet_isa_dbf4543432 (IsA chrysochloris mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrysolepis is a kind of hamamelid dicot genus", "pln": ["(: cnet_isa_ff6e4c2dc6 (IsA chrysolepis hamamelid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrysolite is a kind of olivine", "pln": ["(: cnet_isa_86e144269a (IsA chrysolite olivine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrysolite is a kind of transparent gem", "pln": ["(: cnet_isa_0a7db61488 (IsA chrysolite transparent_gem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chrysolophus is a kind of bird genus", "pln": ["(: cnet_isa_49774650a8 (IsA chrysolophus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrysomelidae is a kind of arthropod family", "pln": ["(: cnet_isa_cc7ed6144d (IsA chrysomelidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrysophry is a kind of fish genus", "pln": ["(: cnet_isa_b019b392c0 (IsA chrysophry fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrysophyceae is a kind of class", "pln": ["(: cnet_isa_f5a4725f18 (IsA chrysophyceae class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrysophyllum is a kind of dicot genus", "pln": ["(: cnet_isa_4ed057c5ea (IsA chrysophyllum dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrysophyta is a kind of division", "pln": ["(: cnet_isa_0ad92a275f (IsA chrysophyta division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrysopidae is a kind of arthropod family", "pln": ["(: cnet_isa_36e5ae1775 (IsA chrysopidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrysoprase is a kind of chalcedony", "pln": ["(: cnet_isa_77358b7b1f (IsA chrysoprase chalcedony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrysoprase is a kind of transparent gem", "pln": ["(: cnet_isa_d9a3030b35 (IsA chrysoprase transparent_gem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrysopsis is a kind of asterid dicot genus", "pln": ["(: cnet_isa_19be17b92f (IsA chrysopsis asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrysosplenium is a kind of rosid dicot genus", "pln": ["(: cnet_isa_d49c3d926d (IsA chrysosplenium rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrysothamnus is a kind of asterid dicot genus", "pln": ["(: cnet_isa_f63209003f (IsA chrysothamnus asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrysotherapy is a kind of chemotherapy", "pln": ["(: cnet_isa_5ea546e2f3 (IsA chrysotherapy chemotherapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chrysotile is a kind of asbesto", "pln": ["(: cnet_isa_261da47b5e (IsA chrysotile asbesto) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chub is a kind of cyprinid", "pln": ["(: cnet_isa_2735947909 (IsA chub cyprinid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chub mackerel is a kind of mackerel", "pln": ["(: cnet_isa_7c238a9216 (IsA chub_mackerel mackerel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chubbiness is a kind of plumpness", "pln": ["(: cnet_isa_d8eed7fcf4 (IsA chubbiness plumpness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chuck is a kind of holding device", "pln": ["(: cnet_isa_2c380aa9cd (IsA chuck holding_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chuck is a kind of cut of beef", "pln": ["(: cnet_isa_46a2d6abf3 (IsA chuck cut_of_beef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chuck short rib is a kind of cut of beef", "pln": ["(: cnet_isa_e79326dfa9 (IsA chuck_short_rib cut_of_beef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chuck wagon is a kind of wagon", "pln": ["(: cnet_isa_5ff67d372e (IsA chuck_wagon wagon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chuck will s widow is a kind of goatsucker", "pln": ["(: cnet_isa_5e0b9f4894 (IsA chuck_will_s_widow goatsucker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chuckwalla is a kind of iguanid", "pln": ["(: cnet_isa_e6d3020146 (IsA chuckwalla iguanid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chufa is a kind of sedge", "pln": ["(: cnet_isa_52acef34f8 (IsA chufa sedge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chug is a kind of noise", "pln": ["(: cnet_isa_9d2bc0fd1a (IsA chug noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chukchi is a kind of siberian", "pln": ["(: cnet_isa_a36dd413d1 (IsA chukchi siberian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chukchi language is a kind of natural language", "pln": ["(: cnet_isa_a7dee2998f (IsA chukchi_language natural_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chukka is a kind of part", "pln": ["(: cnet_isa_c4a79511e0 (IsA chukka part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chukka boot is a kind of shoe", "pln": ["(: cnet_isa_c0b86f29a6 (IsA chukka_boot shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chum is a kind of bait", "pln": ["(: cnet_isa_9dc6bf2edd (IsA chum bait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chum salmon is a kind of salmon", "pln": ["(: cnet_isa_5d165c2151 (IsA chum_salmon salmon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chumminess is a kind of sociability", "pln": ["(: cnet_isa_2cc47798d8 (IsA chumminess sociability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chump is a kind of victim", "pln": ["(: cnet_isa_e4fc461a18 (IsA chump victim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chunga is a kind of wading bird", "pln": ["(: cnet_isa_29cec9e7aa (IsA chunga wading_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chunk is a kind of large indefinite quantity", "pln": ["(: cnet_isa_9bb5e1d223 (IsA chunk large_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "church is a kind of building", "pln": ["(: cnet_isa_99686ed6bc (IsA church building) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "church is a kind of place of worship", "pln": ["(: cnet_isa_c36500038f (IsA church place_of_worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "church is a kind of body", "pln": ["(: cnet_isa_251698e3ca (IsA church body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "church is a kind of religion", "pln": ["(: cnet_isa_ff87eede9a (IsA church religion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "church bell is a kind of bell", "pln": ["(: cnet_isa_f82e2fbb11 (IsA church_bell bell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "church calendar is a kind of gregorian calendar", "pln": ["(: cnet_isa_3761efa3ff (IsA church_calendar gregorian_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "church hat is a kind of millinery", "pln": ["(: cnet_isa_fcffd9ecc4 (IsA church_hat millinery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "church key is a kind of can opener", "pln": ["(: cnet_isa_5105ac9f27 (IsA church_key can_opener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "church of brethren is a kind of baptist denomination", "pln": ["(: cnet_isa_57a22eb4c3 (IsA church_of_brethren baptist_denomination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "church of ireland is a kind of anglican church", "pln": ["(: cnet_isa_091bb95a74 (IsA church_of_ireland anglican_church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "church officer is a kind of official", "pln": ["(: cnet_isa_697632d50a (IsA church_officer official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "church roll is a kind of roll", "pln": ["(: cnet_isa_5434b47460 (IsA church_roll roll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "church school is a kind of religious school", "pln": ["(: cnet_isa_7dd2179408 (IsA church_school religious_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "church service is a kind of service", "pln": ["(: cnet_isa_ec31446f1d (IsA church_service service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "church state is a kind of theocracy", "pln": ["(: cnet_isa_9abadfb838 (IsA church_state theocracy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "church tower is a kind of tower", "pln": ["(: cnet_isa_0c57e08454 (IsA church_tower tower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "church year is a kind of year", "pln": ["(: cnet_isa_4c81d71da3 (IsA church_year year) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "churchgoer is a kind of religionist", "pln": ["(: cnet_isa_f2140771cc (IsA churchgoer religionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "churchwarden is a kind of church officer", "pln": ["(: cnet_isa_16330b4d06 (IsA churchwarden church_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "churchyard is a kind of yard", "pln": ["(: cnet_isa_5f386f4f08 (IsA churchyard yard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "churidar is a kind of pair of trouser", "pln": ["(: cnet_isa_a1c9ed26b1 (IsA churidar pair_of_trouser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "churn is a kind of vessel", "pln": ["(: cnet_isa_c951aebefd (IsA churn vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chute is a kind of gutter", "pln": ["(: cnet_isa_58b2bd18cf (IsA chute gutter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chutney is a kind of condiment", "pln": ["(: cnet_isa_aa6e963a7c (IsA chutney condiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "chutzpa is a kind of crust", "pln": ["(: cnet_isa_55ae78c6d0 (IsA chutzpa crust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chutzpanik is a kind of person", "pln": ["(: cnet_isa_8788e7745b (IsA chutzpanik person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chuvash is a kind of turki", "pln": ["(: cnet_isa_08dfa2b583 (IsA chuvash turki) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chyle is a kind of liquid body substance", "pln": ["(: cnet_isa_ecaeb9c3b1 (IsA chyle liquid_body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chylomicron is a kind of atom", "pln": ["(: cnet_isa_1c05fd1119 (IsA chylomicron atom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chyme is a kind of food", "pln": ["(: cnet_isa_36c256c1ed (IsA chyme food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chytridiaceae is a kind of fungus family", "pln": ["(: cnet_isa_3995289774 (IsA chytridiaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chytridiale is a kind of fungus order", "pln": ["(: cnet_isa_3de120b847 (IsA chytridiale fungus_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "chytridiomycete is a kind of class", "pln": ["(: cnet_isa_8d3abd7bfe (IsA chytridiomycete class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cibotium is a kind of fern genus", "pln": ["(: cnet_isa_2e5dce377b (IsA cibotium fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cicada is a kind of homopterous insect", "pln": ["(: cnet_isa_0c92e164c8 (IsA cicada homopterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cicada killer is a kind of digger wasp", "pln": ["(: cnet_isa_a4dc7fa3f8 (IsA cicada_killer digger_wasp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cicadellidae is a kind of arthropod family", "pln": ["(: cnet_isa_cd821c4f44 (IsA cicadellidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cicadidae is a kind of arthropod family", "pln": ["(: cnet_isa_2a918844eb (IsA cicadidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cicer is a kind of rosid dicot genus", "pln": ["(: cnet_isa_8a9d599248 (IsA cicer rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cicero is a kind of linear unit", "pln": ["(: cnet_isa_32c1ddf3d4 (IsA cicero linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cicerone is a kind of guide", "pln": ["(: cnet_isa_ec9ff46972 (IsA cicerone guide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cichlid is a kind of percoid fish", "pln": ["(: cnet_isa_bf9009b75c (IsA cichlid percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cichlidae is a kind of fish family", "pln": ["(: cnet_isa_318c5b6285 (IsA cichlidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cichorium is a kind of asterid dicot genus", "pln": ["(: cnet_isa_a4ad1d2ad1 (IsA cichorium asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cicindelidae is a kind of arthropod family", "pln": ["(: cnet_isa_16d159b136 (IsA cicindelidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ciconia is a kind of bird genus", "pln": ["(: cnet_isa_bb1021f3cc (IsA ciconia bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ciconiidae is a kind of bird family", "pln": ["(: cnet_isa_e841dbfb97 (IsA ciconiidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ciconiiforme is a kind of animal order", "pln": ["(: cnet_isa_412a9a9df2 (IsA ciconiiforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cicuta is a kind of rosid dicot genus", "pln": ["(: cnet_isa_f85c1b77cb (IsA cicuta rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cider is a kind of beverage", "pln": ["(: cnet_isa_5ecd1527e4 (IsA cider beverage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cider gum is a kind of flooded gum", "pln": ["(: cnet_isa_d8d455ce96 (IsA cider_gum flooded_gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cider mill is a kind of mill", "pln": ["(: cnet_isa_e52384cd05 (IsA cider_mill mill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cider vinegar is a kind of vinegar", "pln": ["(: cnet_isa_713850632d (IsA cider_vinegar vinegar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ciderpress is a kind of press", "pln": ["(: cnet_isa_e42fbf4898 (IsA ciderpress press) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cigar is a kind of roll of tobacco", "pln": ["(: cnet_isa_ed9ada5c06 (IsA cigar roll_of_tobacco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cigar band is a kind of band", "pln": ["(: cnet_isa_7542937036 (IsA cigar_band band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cigar box is a kind of box", "pln": ["(: cnet_isa_2c6126237d (IsA cigar_box box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cigar box cedar is a kind of mahogany", "pln": ["(: cnet_isa_90058e3d7a (IsA cigar_box_cedar mahogany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cigar butt is a kind of butt", "pln": ["(: cnet_isa_14f97b7dbe (IsA cigar_butt butt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cigar cutter is a kind of cutter", "pln": ["(: cnet_isa_4870caeaef (IsA cigar_cutter cutter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cigar lighter is a kind of lighter", "pln": ["(: cnet_isa_b6bfc5af5c (IsA cigar_lighter lighter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cigar smoker is a kind of smoker", "pln": ["(: cnet_isa_5e927ea267 (IsA cigar_smoker smoker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cigarette is a kind of roll of tobacco", "pln": ["(: cnet_isa_491c3644c9 (IsA cigarette roll_of_tobacco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cigarette burn is a kind of burn", "pln": ["(: cnet_isa_c88b064b7e (IsA cigarette_burn burn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cigarette butt is a kind of butt", "pln": ["(: cnet_isa_d3b2a8d91b (IsA cigarette_butt butt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cigarette case is a kind of case", "pln": ["(: cnet_isa_79bec61b72 (IsA cigarette_case case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cigarette holder is a kind of holder", "pln": ["(: cnet_isa_5f8d108c9b (IsA cigarette_holder holder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cigarette holder is a kind of tube", "pln": ["(: cnet_isa_343f338ea2 (IsA cigarette_holder tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cigarette paper is a kind of tissue", "pln": ["(: cnet_isa_6ebee4ae5d (IsA cigarette_paper tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cigarette smoker is a kind of smoker", "pln": ["(: cnet_isa_e9ce3ccc67 (IsA cigarette_smoker smoker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cigarillo is a kind of cigar", "pln": ["(: cnet_isa_3568ee362d (IsA cigarillo cigar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ciliary artery is a kind of artery", "pln": ["(: cnet_isa_bcce467ebb (IsA ciliary_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ciliary body is a kind of membrane", "pln": ["(: cnet_isa_8338938640 (IsA ciliary_body membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ciliary vein is a kind of vein", "pln": ["(: cnet_isa_43ff8e2d28 (IsA ciliary_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ciliata is a kind of class", "pln": ["(: cnet_isa_d9ef49ecc3 (IsA ciliata class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ciliate is a kind of protozoan", "pln": ["(: cnet_isa_988aab3d93 (IsA ciliate protozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cilium is a kind of organelle", "pln": ["(: cnet_isa_9ca3a4b60d (IsA cilium organelle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cimex is a kind of arthropod genus", "pln": ["(: cnet_isa_7de1871a79 (IsA cimex arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cimicidae is a kind of arthropod family", "pln": ["(: cnet_isa_3432910a98 (IsA cimicidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cimicifuga is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_c65348d8cd (IsA cimicifuga magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinch is a kind of all four", "pln": ["(: cnet_isa_d589b51140 (IsA cinch all_four) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinch is a kind of undertaking", "pln": ["(: cnet_isa_ff8b4cd472 (IsA cinch undertaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinch is a kind of stable gear", "pln": ["(: cnet_isa_1402ac35af (IsA cinch stable_gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinchona is a kind of tree", "pln": ["(: cnet_isa_243382700f (IsA cinchona tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinchona bark is a kind of bark", "pln": ["(: cnet_isa_f76a4e75f4 (IsA cinchona_bark bark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinchona tree is a kind of cinchona", "pln": ["(: cnet_isa_419c339849 (IsA cinchona_tree cinchona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinchonine is a kind of alkaloid", "pln": ["(: cnet_isa_907be2c664 (IsA cinchonine alkaloid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinclidae is a kind of bird family", "pln": ["(: cnet_isa_7e75fa6dd0 (IsA cinclidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cinclus is a kind of bird genus", "pln": ["(: cnet_isa_6141d5b8a4 (IsA cinclus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinco de mayo is a kind of day", "pln": ["(: cnet_isa_3bce28e71e (IsA cinco_de_mayo day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinder is a kind of fragment", "pln": ["(: cnet_isa_99c7b6f2c0 (IsA cinder fragment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinder block is a kind of building block", "pln": ["(: cnet_isa_a3e5a5fd60 (IsA cinder_block building_block) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinder pig is a kind of pig iron", "pln": ["(: cnet_isa_5e3154fd18 (IsA cinder_pig pig_iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinder track is a kind of racetrack", "pln": ["(: cnet_isa_cb57fd2c55 (IsA cinder_track racetrack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinderella is a kind of fictional character", "pln": ["(: cnet_isa_6b7c1ae420 (IsA cinderella fictional_character) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinderella is a kind of woman", "pln": ["(: cnet_isa_4fab4c8d3c (IsA cinderella woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinema is a kind of theater", "pln": ["(: cnet_isa_212a137ea0 (IsA cinema theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinema verite is a kind of movie", "pln": ["(: cnet_isa_60966142a6 (IsA cinema_verite movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cineraria is a kind of flower", "pln": ["(: cnet_isa_7e74375d77 (IsA cineraria flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cingulate gyrus is a kind of neural structure", "pln": ["(: cnet_isa_56a3288ed4 (IsA cingulate_gyrus neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cingulum is a kind of structure", "pln": ["(: cnet_isa_3bd29c0807 (IsA cingulum structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinnabar is a kind of arctiid", "pln": ["(: cnet_isa_35473be6fa (IsA cinnabar arctiid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinnabar is a kind of mineral", "pln": ["(: cnet_isa_c5b31efa18 (IsA cinnabar mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinnabar chanterelle is a kind of agaric", "pln": ["(: cnet_isa_0d0002ef29 (IsA cinnabar_chanterelle agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinnamomum is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_6aab617349 (IsA cinnamomum magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinnamon is a kind of spice", "pln": ["(: cnet_isa_2e8fbc02f3 (IsA cinnamon spice) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinnamon is a kind of bark", "pln": ["(: cnet_isa_d176be365e (IsA cinnamon bark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cinnamon is a kind of laurel", "pln": ["(: cnet_isa_234fcb6d0e (IsA cinnamon laurel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinnamon bark is a kind of bark", "pln": ["(: cnet_isa_ce607747f7 (IsA cinnamon_bark bark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinnamon bear is a kind of american black bear", "pln": ["(: cnet_isa_5d3736c89f (IsA cinnamon_bear american_black_bear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinnamon bread is a kind of bread", "pln": ["(: cnet_isa_fe805dcda4 (IsA cinnamon_bread bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cinnamon fern is a kind of flowering fern", "pln": ["(: cnet_isa_0159dfd1ba (IsA cinnamon_fern flowering_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinnamon roll is a kind of sweet roll", "pln": ["(: cnet_isa_cdadb5bc57 (IsA cinnamon_roll sweet_roll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinnamon stone is a kind of garnet", "pln": ["(: cnet_isa_93eb66828a (IsA cinnamon_stone garnet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinnamon toast is a kind of toast", "pln": ["(: cnet_isa_982dcc885b (IsA cinnamon_toast toast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinnamon vine is a kind of yam", "pln": ["(: cnet_isa_1d0190bb0a (IsA cinnamon_vine yam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinquefoil is a kind of carving", "pln": ["(: cnet_isa_5bfb189ddf (IsA cinquefoil carving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cinquefoil is a kind of shrub", "pln": ["(: cnet_isa_50ead5b58e (IsA cinquefoil shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cipher is a kind of code", "pln": ["(: cnet_isa_b4b88caab2 (IsA cipher code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cipher is a kind of message", "pln": ["(: cnet_isa_dbd99200fa (IsA cipher message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cipher is a kind of commoner", "pln": ["(: cnet_isa_96fb904e40 (IsA cipher commoner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circadian rhythm is a kind of biological time", "pln": ["(: cnet_isa_b02e3a10d2 (IsA circadian_rhythm biological_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circaea is a kind of rosid dicot genus", "pln": ["(: cnet_isa_250fc9f7fc (IsA circaea rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circaea lutetiana is a kind of enchanter s nightshade", "pln": ["(: cnet_isa_8e1f763c53 (IsA circaea_lutetiana enchanter_s_nightshade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circaetus is a kind of bird genus", "pln": ["(: cnet_isa_4bfbc5ba58 (IsA circaetus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circassian is a kind of caucasian", "pln": ["(: cnet_isa_055d4734a4 (IsA circassian caucasian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circassian is a kind of community", "pln": ["(: cnet_isa_9faff5d93a (IsA circassian community) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circassian is a kind of white person", "pln": ["(: cnet_isa_3b0ac0970d (IsA circassian white_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circe is a kind of sorceress", "pln": ["(: cnet_isa_5e57912fab (IsA circe sorceress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "circle is a kind of shape", "pln": ["(: cnet_isa_0107a2d0ac (IsA circle shape) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circle is a kind of rotating mechanism", "pln": ["(: cnet_isa_088d007435 (IsA circle rotating_mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circle is a kind of seating", "pln": ["(: cnet_isa_9b9ce0665a (IsA circle seating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circle is a kind of ellipse", "pln": ["(: cnet_isa_2ba3bb7caf (IsA circle ellipse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circle of curvature is a kind of circle", "pln": ["(: cnet_isa_94b1cee1ea (IsA circle_of_curvature circle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circle of willis is a kind of artery", "pln": ["(: cnet_isa_0d76bfce0d (IsA circle_of_willis artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circlet is a kind of adornment", "pln": ["(: cnet_isa_d1dd376d34 (IsA circlet adornment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circlet is a kind of circle", "pln": ["(: cnet_isa_8ab428d7f5 (IsA circlet circle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circuit is a kind of electrical device", "pln": ["(: cnet_isa_0cf9cb3007 (IsA circuit electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circuit is a kind of group", "pln": ["(: cnet_isa_dd1dc76177 (IsA circuit group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circuit is a kind of path", "pln": ["(: cnet_isa_ccf67f809d (IsA circuit path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circuit board is a kind of printed circuit", "pln": ["(: cnet_isa_09e769c06c (IsA circuit_board printed_circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circuit breaker is a kind of fuse", "pln": ["(: cnet_isa_dd8902d8ca (IsA circuit_breaker fuse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circuit court of appeal is a kind of appellate court", "pln": ["(: cnet_isa_284eb531c0 (IsA circuit_court_of_appeal appellate_court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "circuitry is a kind of electronic equipment", "pln": ["(: cnet_isa_0e1e487c8d (IsA circuitry electronic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circular is a kind of shape", "pln": ["(: cnet_isa_e08b2375cd (IsA circular shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circular is a kind of ad", "pln": ["(: cnet_isa_5e6eac56af (IsA circular ad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circular measure is a kind of system of measurement", "pln": ["(: cnet_isa_e7fcd2c260 (IsA circular_measure system_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circular plane is a kind of plane", "pln": ["(: cnet_isa_d64bd58525 (IsA circular_plane plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circular saw is a kind of power saw", "pln": ["(: cnet_isa_0066c82ba9 (IsA circular_saw power_saw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circularity is a kind of roundness", "pln": ["(: cnet_isa_96b2ea8cfe (IsA circularity roundness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circularization is a kind of advertising", "pln": ["(: cnet_isa_9f08fab192 (IsA circularization advertising) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circulating decimal is a kind of decimal fraction", "pln": ["(: cnet_isa_770111d28d (IsA circulating_decimal decimal_fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circulation is a kind of spread", "pln": ["(: cnet_isa_07168ac765 (IsA circulation spread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circulation is a kind of dissemination", "pln": ["(: cnet_isa_c161b6c2f8 (IsA circulation dissemination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circulation is a kind of count", "pln": ["(: cnet_isa_30f1aea05e (IsA circulation count) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "circulation is a kind of organic phenomenon", "pln": ["(: cnet_isa_abf03a6e0b (IsA circulation organic_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circulation is a kind of change of location", "pln": ["(: cnet_isa_6160a75183 (IsA circulation change_of_location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circulatory failure is a kind of cardiovascular disease", "pln": ["(: cnet_isa_1d57ef147f (IsA circulatory_failure cardiovascular_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "circulatory system is a kind of vascular system", "pln": ["(: cnet_isa_9f8a78fbc1 (IsA circulatory_system vascular_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circumcision is a kind of abscission", "pln": ["(: cnet_isa_5080b6c58d (IsA circumcision abscission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circumcision is a kind of rite", "pln": ["(: cnet_isa_68c18c6c5a (IsA circumcision rite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circumcision is a kind of feast day", "pln": ["(: cnet_isa_5418f9e477 (IsA circumcision feast_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circumduction is a kind of motion", "pln": ["(: cnet_isa_eda92615cc (IsA circumduction motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circumference is a kind of length", "pln": ["(: cnet_isa_9ff251c84b (IsA circumference length) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circumference is a kind of size", "pln": ["(: cnet_isa_e19d1a35c1 (IsA circumference size) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circumference is a kind of boundary line", "pln": ["(: cnet_isa_029633694e (IsA circumference boundary_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circumflex is a kind of diacritical mark", "pln": ["(: cnet_isa_bcbdd38201 (IsA circumflex diacritical_mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circumflex artery is a kind of artery", "pln": ["(: cnet_isa_651b9ff278 (IsA circumflex_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circumflex artery of thigh is a kind of circumflex artery", "pln": ["(: cnet_isa_e4b6f98a76 (IsA circumflex_artery_of_thigh circumflex_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circumflex femoral vein is a kind of circumflex vein", "pln": ["(: cnet_isa_18f7b6a240 (IsA circumflex_femoral_vein circumflex_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circumflex humeral artery is a kind of circumflex artery", "pln": ["(: cnet_isa_4970bb7947 (IsA circumflex_humeral_artery circumflex_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circumflex iliac artery is a kind of circumflex artery", "pln": ["(: cnet_isa_d75f6a6d55 (IsA circumflex_iliac_artery circumflex_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circumflex iliac vein is a kind of circumflex vein", "pln": ["(: cnet_isa_ece42a47cb (IsA circumflex_iliac_vein circumflex_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "circumflex scapular artery is a kind of circumflex artery", "pln": ["(: cnet_isa_f997c329e0 (IsA circumflex_scapular_artery circumflex_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circumflex vein is a kind of vein", "pln": ["(: cnet_isa_7d9b62469c (IsA circumflex_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circumlocution is a kind of evasion", "pln": ["(: cnet_isa_d477b034cd (IsA circumlocution evasion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "circumlocution is a kind of verboseness", "pln": ["(: cnet_isa_952e7c8047 (IsA circumlocution verboseness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circumnavigation is a kind of travel", "pln": ["(: cnet_isa_37feb00a06 (IsA circumnavigation travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circumposition is a kind of adposition", "pln": ["(: cnet_isa_e188fea951 (IsA circumposition adposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circumscription is a kind of restriction", "pln": ["(: cnet_isa_2a67f0ac58 (IsA circumscription restriction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circumspection is a kind of discretion", "pln": ["(: cnet_isa_464b1c1575 (IsA circumspection discretion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circumstance is a kind of information", "pln": ["(: cnet_isa_f86fefa0c1 (IsA circumstance information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "circumstance is a kind of ceremony", "pln": ["(: cnet_isa_a3193269b6 (IsA circumstance ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circumstance is a kind of condition", "pln": ["(: cnet_isa_ae3933a626 (IsA circumstance condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circumstance is a kind of possession", "pln": ["(: cnet_isa_f10e53bfd6 (IsA circumstance possession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circumstantial evidence is a kind of evidence", "pln": ["(: cnet_isa_f51a57264e (IsA circumstantial_evidence evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circumvention is a kind of evasion", "pln": ["(: cnet_isa_800153804d (IsA circumvention evasion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circumvolution is a kind of rotation", "pln": ["(: cnet_isa_15380af081 (IsA circumvolution rotation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circus is a kind of disturbance", "pln": ["(: cnet_isa_f11f58b666 (IsA circus disturbance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circus is a kind of show", "pln": ["(: cnet_isa_c87dbadda4 (IsA circus show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circus is a kind of bird genus", "pln": ["(: cnet_isa_dbd7da8b78 (IsA circus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circus is a kind of stadium", "pln": ["(: cnet_isa_5a7635efb3 (IsA circus stadium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circus is a kind of arena", "pln": ["(: cnet_isa_4d48b19701 (IsA circus arena) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circus is a kind of company", "pln": ["(: cnet_isa_170325846b (IsA circus company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circus acrobat is a kind of acrobat", "pln": ["(: cnet_isa_b4b9cabbd3 (IsA circus_acrobat acrobat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "circus tent is a kind of canva tent", "pln": ["(: cnet_isa_a8d534ad76 (IsA circus_tent canva_tent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cirque is a kind of basin", "pln": ["(: cnet_isa_3c5a113d06 (IsA cirque basin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cirrhosis is a kind of liver disease", "pln": ["(: cnet_isa_4c0f9b77ae (IsA cirrhosis liver_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cirripedia is a kind of class", "pln": ["(: cnet_isa_a44cb6faa5 (IsA cirripedia class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cirrocumulus is a kind of cloud", "pln": ["(: cnet_isa_f18429757c (IsA cirrocumulus cloud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cirrostratus is a kind of cloud", "pln": ["(: cnet_isa_a2cbad3802 (IsA cirrostratus cloud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cirrus is a kind of process", "pln": ["(: cnet_isa_69569bf520 (IsA cirrus process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cirrus is a kind of cloud", "pln": ["(: cnet_isa_c2fb2591f1 (IsA cirrus cloud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cirrus is a kind of tendril", "pln": ["(: cnet_isa_ff75fdcf5a (IsA cirrus tendril) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cirsium is a kind of asterid dicot genus", "pln": ["(: cnet_isa_df66204004 (IsA cirsium asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cisco is a kind of whitefish", "pln": ["(: cnet_isa_ffbf8387fa (IsA cisco whitefish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cistaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_a750c2f8a1 (IsA cistaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cistercian is a kind of monk", "pln": ["(: cnet_isa_06984dc854 (IsA cistercian monk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cistern is a kind of pool", "pln": ["(: cnet_isa_62c26bfeb8 (IsA cistern pool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cistern is a kind of reservoir", "pln": ["(: cnet_isa_fd72a1828e (IsA cistern reservoir) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cistern is a kind of tank", "pln": ["(: cnet_isa_286d3940f7 (IsA cistern tank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cisterna is a kind of sac", "pln": ["(: cnet_isa_fe4072dc96 (IsA cisterna sac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cistothorus is a kind of bird genus", "pln": ["(: cnet_isa_421c7c710e (IsA cistothorus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cistus is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_3fb13bfc56 (IsA cistus dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "citation is a kind of award", "pln": ["(: cnet_isa_cf97b24171 (IsA citation award) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "citation is a kind of note", "pln": ["(: cnet_isa_958dfadb71 (IsA citation note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "citation is a kind of speech act", "pln": ["(: cnet_isa_e7c512d239 (IsA citation speech_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "citation is a kind of summon", "pln": ["(: cnet_isa_76a467a907 (IsA citation summon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "citation form is a kind of form", "pln": ["(: cnet_isa_710aa28f14 (IsA citation_form form) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "citellus is a kind of mammal genus", "pln": ["(: cnet_isa_ee2ac3fbc2 (IsA citellus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "citharichthy is a kind of fish genus", "pln": ["(: cnet_isa_9a808d40cb (IsA citharichthy fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "citizen is a kind of national", "pln": ["(: cnet_isa_1057581208 (IsA citizen national) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "citizenry is a kind of group", "pln": ["(: cnet_isa_30dba53828 (IsA citizenry group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "citizenship is a kind of demeanor", "pln": ["(: cnet_isa_d86dba38f8 (IsA citizenship demeanor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "citizenship is a kind of legal status", "pln": ["(: cnet_isa_f55be1e045 (IsA citizenship legal_status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "citizenship day is a kind of day", "pln": ["(: cnet_isa_5479732131 (IsA citizenship_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "citrange is a kind of citrus", "pln": ["(: cnet_isa_96a01f0303 (IsA citrange citrus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "citrate is a kind of ester", "pln": ["(: cnet_isa_84b1c9be38 (IsA citrate ester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "citrate is a kind of salt", "pln": ["(: cnet_isa_1b63ac28d9 (IsA citrate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "citric acid is a kind of acid", "pln": ["(: cnet_isa_44f66412c9 (IsA citric_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "citrine is a kind of quartz", "pln": ["(: cnet_isa_aa2578b1b8 (IsA citrine quartz) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "citrine is a kind of transparent gem", "pln": ["(: cnet_isa_c86e53a793 (IsA citrine transparent_gem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "citron is a kind of citrus", "pln": ["(: cnet_isa_8c66555c13 (IsA citron citrus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "citroncirus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_a5df396b6f (IsA citroncirus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "citronwood is a kind of wood", "pln": ["(: cnet_isa_b08c9ae2f7 (IsA citronwood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "citrophilous mealybug is a kind of mealybug", "pln": ["(: cnet_isa_cc7fd8846e (IsA citrophilous_mealybug mealybug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "citrulline is a kind of amino acid", "pln": ["(: cnet_isa_a906449a55 (IsA citrulline amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "citrullus is a kind of dicot genus", "pln": ["(: cnet_isa_7061728a8f (IsA citrullus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "citrus is a kind of edible fruit", "pln": ["(: cnet_isa_a0a1f3ea4f (IsA citrus edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "citrus is a kind of fruit tree", "pln": ["(: cnet_isa_c975eea807 (IsA citrus fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "citrus mealybug is a kind of mealybug", "pln": ["(: cnet_isa_b411cdbfc4 (IsA citrus_mealybug mealybug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "citrus whitefly is a kind of whitefly", "pln": ["(: cnet_isa_ecdf29bdd2 (IsA citrus_whitefly whitefly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cittern is a kind of guitar", "pln": ["(: cnet_isa_e27c1e5796 (IsA cittern guitar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "city is a kind of larger than town", "pln": ["(: cnet_isa_927e6aba98 (IsA city larger_than_town) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "city is a kind of place", "pln": ["(: cnet_isa_4cc2114cca (IsA city place) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "city is a kind of market", "pln": ["(: cnet_isa_c575be03e8 (IsA city market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "city is a kind of municipality", "pln": ["(: cnet_isa_de39da57a7 (IsA city municipality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "city is a kind of administrative district", "pln": ["(: cnet_isa_a1f9126f20 (IsA city administrative_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "city center is a kind of center", "pln": ["(: cnet_isa_7133cde204 (IsA city_center center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "city council is a kind of council", "pln": ["(: cnet_isa_8e06138bb2 (IsA city_council council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "city desk is a kind of editorial department", "pln": ["(: cnet_isa_af7ed5abb4 (IsA city_desk editorial_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "city district is a kind of district", "pln": ["(: cnet_isa_5c52542901 (IsA city_district district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "city editor is a kind of newspaper editor", "pln": ["(: cnet_isa_66ea389df8 (IsA city_editor newspaper_editor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "city father is a kind of official", "pln": ["(: cnet_isa_3900b8af37 (IsA city_father official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "city hall is a kind of hall", "pln": ["(: cnet_isa_01b12a012a (IsA city_hall hall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "city limit is a kind of limit", "pln": ["(: cnet_isa_bf3ddbc2d5 (IsA city_limit limit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "city line is a kind of boundary", "pln": ["(: cnet_isa_9c1fbdd197 (IsA city_line boundary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "city man is a kind of financier", "pln": ["(: cnet_isa_115b24a56b (IsA city_man financier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "city park is a kind of park", "pln": ["(: cnet_isa_2e52d61c49 (IsA city_park park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "city planning is a kind of planning", "pln": ["(: cnet_isa_2647be4a9c (IsA city_planning planning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "city slicker is a kind of slicker", "pln": ["(: cnet_isa_0768badfab (IsA city_slicker slicker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "city state is a kind of state", "pln": ["(: cnet_isa_40618a29dc (IsA city_state state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "city university is a kind of university", "pln": ["(: cnet_isa_6566d927a4 (IsA city_university university) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cityscape is a kind of painting", "pln": ["(: cnet_isa_fe52e3af0c (IsA cityscape painting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cityscape is a kind of point of view", "pln": ["(: cnet_isa_537686d27b (IsA cityscape point_of_view) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civet is a kind of viverrine", "pln": ["(: cnet_isa_fcea12b347 (IsA civet viverrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civic center is a kind of hub", "pln": ["(: cnet_isa_7f28594460 (IsA civic_center hub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civic duty is a kind of duty", "pln": ["(: cnet_isa_b21e917d2b (IsA civic_duty duty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civic leader is a kind of leader", "pln": ["(: cnet_isa_beb53652ed (IsA civic_leader leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civic pride is a kind of pride", "pln": ["(: cnet_isa_e2967b6425 (IsA civic_pride pride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civic is a kind of social science", "pln": ["(: cnet_isa_0f1c10eee4 (IsA civic social_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civy is a kind of civilian clothing", "pln": ["(: cnet_isa_23e7af4cc9 (IsA civy civilian_clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civil action is a kind of legal action", "pln": ["(: cnet_isa_d2eaf1b2cb (IsA civil_action legal_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civil authority is a kind of authority", "pln": ["(: cnet_isa_30db69eaab (IsA civil_authority authority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civil censorship is a kind of military censorship", "pln": ["(: cnet_isa_78fba480b5 (IsA civil_censorship military_censorship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civil contempt is a kind of contempt of court", "pln": ["(: cnet_isa_2898a74233 (IsA civil_contempt contempt_of_court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civil death is a kind of legal status", "pln": ["(: cnet_isa_211c82d2a6 (IsA civil_death legal_status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civil defense is a kind of protection", "pln": ["(: cnet_isa_febb1146ce (IsA civil_defense protection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civil disobedience is a kind of direct action", "pln": ["(: cnet_isa_6655c3820f (IsA civil_disobedience direct_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civil engineer is a kind of engineer", "pln": ["(: cnet_isa_b243459ace (IsA civil_engineer engineer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civil engineering is a kind of engineering", "pln": ["(: cnet_isa_1dc8e48b95 (IsA civil_engineering engineering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civil law is a kind of law", "pln": ["(: cnet_isa_b7b4b6f60b (IsA civil_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civil libertarian is a kind of libertarian", "pln": ["(: cnet_isa_0e9d904b0f (IsA civil_libertarian libertarian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "civil liberty is a kind of civil right", "pln": ["(: cnet_isa_fc89e7eb10 (IsA civil_liberty civil_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civil liberty is a kind of freedom", "pln": ["(: cnet_isa_180973a67c (IsA civil_liberty freedom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civil list is a kind of budget", "pln": ["(: cnet_isa_1118405294 (IsA civil_list budget) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civil marriage is a kind of marriage", "pln": ["(: cnet_isa_11218b79d3 (IsA civil_marriage marriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civil order is a kind of order", "pln": ["(: cnet_isa_f70cca7823 (IsA civil_order order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civil right is a kind of human right", "pln": ["(: cnet_isa_f9b2d80568 (IsA civil_right human_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civil right leader is a kind of reformer", "pln": ["(: cnet_isa_3f98a3a742 (IsA civil_right_leader reformer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civil right movement is a kind of movement", "pln": ["(: cnet_isa_3df4fb8a9e (IsA civil_right_movement movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civil servant is a kind of worker", "pln": ["(: cnet_isa_9731579e23 (IsA civil_servant worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "civil servant is a kind of official", "pln": ["(: cnet_isa_90a667a1f3 (IsA civil_servant official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civil service is a kind of government official", "pln": ["(: cnet_isa_5d6f8bab9d (IsA civil_service government_official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civil suit is a kind of lawsuit", "pln": ["(: cnet_isa_21813d61af (IsA civil_suit lawsuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civil time is a kind of time", "pln": ["(: cnet_isa_eb91f2b291 (IsA civil_time time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civil union is a kind of marital status", "pln": ["(: cnet_isa_a8c055302c (IsA civil_union marital_status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civil war is a kind of war", "pln": ["(: cnet_isa_971c39ffbd (IsA civil_war war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civilian is a kind of citizen", "pln": ["(: cnet_isa_4e7b8f91e1 (IsA civilian citizen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civilian clothing is a kind of clothing", "pln": ["(: cnet_isa_69fe1c9670 (IsA civilian_clothing clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civility is a kind of courtesy", "pln": ["(: cnet_isa_7f3ef58243 (IsA civility courtesy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civilization is a kind of society", "pln": ["(: cnet_isa_5779bbbee2 (IsA civilization society) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "civilization is a kind of social process", "pln": ["(: cnet_isa_1f807ff0a5 (IsA civilization social_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clabber is a kind of dairy product", "pln": ["(: cnet_isa_75ec3e26e0 (IsA clabber dairy_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clack is a kind of noise", "pln": ["(: cnet_isa_018919174d (IsA clack noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "clack valve is a kind of valve", "pln": ["(: cnet_isa_a07c91db18 (IsA clack_valve valve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clade is a kind of biological group", "pln": ["(: cnet_isa_e3a15f2fe4 (IsA clade biological_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cladistic is a kind of taxonomy", "pln": ["(: cnet_isa_1373baf777 (IsA cladistic taxonomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cladode is a kind of stalk", "pln": ["(: cnet_isa_0b30645cab (IsA cladode stalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cladogram is a kind of tree", "pln": ["(: cnet_isa_5e81a7c692 (IsA cladogram tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cladonia is a kind of fungus genus", "pln": ["(: cnet_isa_28b4edfa5e (IsA cladonia fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cladoniaceae is a kind of fungus family", "pln": ["(: cnet_isa_e0eefd3199 (IsA cladoniaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cladorhyncus is a kind of bird genus", "pln": ["(: cnet_isa_769ab59cc9 (IsA cladorhyncus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cladrastis is a kind of rosid dicot genus", "pln": ["(: cnet_isa_e4805cb21e (IsA cladrastis rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "claim is a kind of demand", "pln": ["(: cnet_isa_a6520b9b90 (IsA claim demand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "claim is a kind of right", "pln": ["(: cnet_isa_a37b2bb809 (IsA claim right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "claim is a kind of assertion", "pln": ["(: cnet_isa_1f34ebd55d (IsA claim assertion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "claim form is a kind of form", "pln": ["(: cnet_isa_be35b3bd5b (IsA claim_form form) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "claim jumper is a kind of usurper", "pln": ["(: cnet_isa_d9550fcdfc (IsA claim_jumper usurper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "claimant is a kind of applicant", "pln": ["(: cnet_isa_ed34bfa0d9 (IsA claimant applicant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "claiming race is a kind of horse race", "pln": ["(: cnet_isa_14bb9df26d (IsA claiming_race horse_race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clairvoyance is a kind of psychic phenomena", "pln": ["(: cnet_isa_0589d6e2d3 (IsA clairvoyance psychic_phenomena) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clairvoyant is a kind of psychic", "pln": ["(: cnet_isa_93a5af8dd4 (IsA clairvoyant psychic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clam is a kind of bivalve", "pln": ["(: cnet_isa_4a837d09cd (IsA clam bivalve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "clam is a kind of shellfish", "pln": ["(: cnet_isa_ddf9fce0c6 (IsA clam shellfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clam chowder is a kind of chowder", "pln": ["(: cnet_isa_20103fa91f (IsA clam_chowder chowder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clam dip is a kind of dip", "pln": ["(: cnet_isa_32a9e4bada (IsA clam_dip dip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clamatore is a kind of animal order", "pln": ["(: cnet_isa_3199d4b6e3 (IsA clamatore animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clambake is a kind of cookout", "pln": ["(: cnet_isa_a77d34db1a (IsA clambake cookout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clamber is a kind of climb", "pln": ["(: cnet_isa_5703767e14 (IsA clamber climb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clammy locust is a kind of locust tree", "pln": ["(: cnet_isa_974f64f565 (IsA clammy_locust locust_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clammyweed is a kind of herb", "pln": ["(: cnet_isa_e11c8a6176 (IsA clammyweed herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clamor is a kind of cry", "pln": ["(: cnet_isa_36f8e9a2bd (IsA clamor cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clamp is a kind of holding device", "pln": ["(: cnet_isa_d805b70c96 (IsA clamp holding_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clampdown is a kind of limitation", "pln": ["(: cnet_isa_c7bf88072d (IsA clampdown limitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clamshell is a kind of shell", "pln": ["(: cnet_isa_7e1ecdb0e6 (IsA clamshell shell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clamshell is a kind of dredging bucket", "pln": ["(: cnet_isa_5c714c2bc8 (IsA clamshell dredging_bucket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "clandestine operation is a kind of intelligence", "pln": ["(: cnet_isa_294dc2d53d (IsA clandestine_operation intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clang is a kind of noise", "pln": ["(: cnet_isa_fe70f05ca7 (IsA clang noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clanger is a kind of blunder", "pln": ["(: cnet_isa_5de003003f (IsA clanger blunder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clangula is a kind of bird genus", "pln": ["(: cnet_isa_ffe6433792 (IsA clangula bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "clannishness is a kind of snobbery", "pln": ["(: cnet_isa_71e1adf3b6 (IsA clannishness snobbery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clansman is a kind of member", "pln": ["(: cnet_isa_a8f21871d5 (IsA clansman member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clapboard is a kind of siding", "pln": ["(: cnet_isa_86488cf4a8 (IsA clapboard siding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clapper is a kind of striker", "pln": ["(: cnet_isa_ddaeb9bf1b (IsA clapper striker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clapper is a kind of laudator", "pln": ["(: cnet_isa_521ef61503 (IsA clapper laudator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "clapperboard is a kind of photographic equipment", "pln": ["(: cnet_isa_3844bf9ce5 (IsA clapperboard photographic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "claque is a kind of following", "pln": ["(: cnet_isa_5db6efc8bc (IsA claque following) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clarence is a kind of carriage", "pln": ["(: cnet_isa_86c627fe1b (IsA clarence carriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "claret is a kind of dark red", "pln": ["(: cnet_isa_f8e42cb5af (IsA claret dark_red) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "claret is a kind of bordeaux", "pln": ["(: cnet_isa_65ddf8574d (IsA claret bordeaux) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "claret is a kind of red wine", "pln": ["(: cnet_isa_2c220f933d (IsA claret red_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "claret cup is a kind of cup", "pln": ["(: cnet_isa_d03a5a6e60 (IsA claret_cup cup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clarification is a kind of interpretation", "pln": ["(: cnet_isa_69ad6a26d6 (IsA clarification interpretation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clarified butter is a kind of butter", "pln": ["(: cnet_isa_de52f41c5b (IsA clarified_butter butter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clarinet is a kind of instrument", "pln": ["(: cnet_isa_ecdfdbe360 (IsA clarinet instrument) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clarinet is a kind of member of woodwind section", "pln": ["(: cnet_isa_f22e8bd237 (IsA clarinet member_of_woodwind_section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clarinet is a kind of musical instrument", "pln": ["(: cnet_isa_9bfd59f6ed (IsA clarinet musical_instrument) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clarinet is a kind of woodwind instrument", "pln": ["(: cnet_isa_62ba9f6c5c (IsA clarinet woodwind_instrument) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clarinet is a kind of single reed instrument", "pln": ["(: cnet_isa_114ad033a5 (IsA clarinet single_reed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clarinet section is a kind of reed section", "pln": ["(: cnet_isa_cc1aacf419 (IsA clarinet_section reed_section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clarinetist is a kind of musician", "pln": ["(: cnet_isa_ed57bd2b0f (IsA clarinetist musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clarion is a kind of brass", "pln": ["(: cnet_isa_febc42b305 (IsA clarion brass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clarity is a kind of comprehensibility", "pln": ["(: cnet_isa_5240cb1021 (IsA clarity comprehensibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clark s nutcracker is a kind of nutcracker", "pln": ["(: cnet_isa_95ba04cb2e (IsA clark_s_nutcracker nutcracker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clark cell is a kind of standard cell", "pln": ["(: cnet_isa_5096206248 (IsA clark_cell standard_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "claro is a kind of cigar", "pln": ["(: cnet_isa_673ef12eed (IsA claro cigar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clary is a kind of sage", "pln": ["(: cnet_isa_bab74ba8d7 (IsA clary sage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clary sage is a kind of sage", "pln": ["(: cnet_isa_fcb853e2c7 (IsA clary_sage sage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clash is a kind of conflict", "pln": ["(: cnet_isa_3282e21fe8 (IsA clash conflict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clasp is a kind of grasping", "pln": ["(: cnet_isa_5e7f269dd9 (IsA clasp grasping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clasp is a kind of fastener", "pln": ["(: cnet_isa_15aa346156 (IsA clasp fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clasp knife is a kind of pocketknife", "pln": ["(: cnet_isa_9d3e13eb4f (IsA clasp_knife pocketknife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "class is a kind of group of student", "pln": ["(: cnet_isa_585fe39db2 (IsA class group_of_student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "class is a kind of elegance", "pln": ["(: cnet_isa_4c5c50ddfb (IsA class elegance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "class is a kind of taxonomic group", "pln": ["(: cnet_isa_648b47b65d (IsA class taxonomic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "class is a kind of collection", "pln": ["(: cnet_isa_0ae0808698 (IsA class collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "class is a kind of gathering", "pln": ["(: cnet_isa_70eab28403 (IsA class gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "class is a kind of league", "pln": ["(: cnet_isa_8230eafeaa (IsA class league) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "class is a kind of people", "pln": ["(: cnet_isa_6817c09f48 (IsA class people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "class act is a kind of ideal", "pln": ["(: cnet_isa_663dadb39f (IsA class_act ideal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "class action is a kind of lawsuit", "pln": ["(: cnet_isa_66d964566b (IsA class_action lawsuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "class cyanobacteria is a kind of class", "pln": ["(: cnet_isa_a1778ec3c9 (IsA class_cyanobacteria class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "class feeling is a kind of hostility", "pln": ["(: cnet_isa_dbe36977b1 (IsA class_feeling hostility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "class list is a kind of list", "pln": ["(: cnet_isa_f17224fc0a (IsA class_list list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "class structure is a kind of social organization", "pln": ["(: cnet_isa_324fabf3d9 (IsA class_structure social_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "class struggle is a kind of conflict", "pln": ["(: cnet_isa_dcb03bc887 (IsA class_struggle conflict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "classic is a kind of creation", "pln": ["(: cnet_isa_83564d0f97 (IsA classic creation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "classic is a kind of artist", "pln": ["(: cnet_isa_46844880d6 (IsA classic artist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "classic hemochromatosis is a kind of hemochromatosis", "pln": ["(: cnet_isa_8488d2bc98 (IsA classic_hemochromatosis hemochromatosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "classical is a kind of music", "pln": ["(: cnet_isa_7541187ccc (IsA classical music) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "classical architecture is a kind of architectural style", "pln": ["(: cnet_isa_85a67522df (IsA classical_architecture architectural_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "classical ballet is a kind of ballet", "pln": ["(: cnet_isa_92d86b25b9 (IsA classical_ballet ballet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "classical conditioning is a kind of conditioning", "pln": ["(: cnet_isa_43459c07c9 (IsA classical_conditioning conditioning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "classical latin is a kind of latin", "pln": ["(: cnet_isa_8f296253cf (IsA classical_latin latin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "classical mechanic is a kind of mechanic", "pln": ["(: cnet_isa_c52d75995a (IsA classical_mechanic mechanic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "classical music is a kind of music", "pln": ["(: cnet_isa_d9741a0a67 (IsA classical_music music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "classical music is a kind of music genre", "pln": ["(: cnet_isa_213147ad6d (IsA classical_music music_genre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "classical mythology is a kind of mythology", "pln": ["(: cnet_isa_4749cbcf5e (IsA classical_mythology mythology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "classical style is a kind of artistic style", "pln": ["(: cnet_isa_32ec6f0f8a (IsA classical_style artistic_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "classicism is a kind of artistic style", "pln": ["(: cnet_isa_4a199cbba0 (IsA classicism artistic_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "classicism is a kind of humanistic discipline", "pln": ["(: cnet_isa_eba467ae4a (IsA classicism humanistic_discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "classicist is a kind of artist", "pln": ["(: cnet_isa_36d93acfd6 (IsA classicist artist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "classicist is a kind of humanist", "pln": ["(: cnet_isa_74fa1a9d7d (IsA classicist humanist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "classic is a kind of literary study", "pln": ["(: cnet_isa_fb7fb1fbb1 (IsA classic literary_study) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "classification is a kind of restriction", "pln": ["(: cnet_isa_3cf20e3010 (IsA classification restriction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "classification is a kind of basic cognitive process", "pln": ["(: cnet_isa_f03bd787be (IsA classification basic_cognitive_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "classification is a kind of arrangement", "pln": ["(: cnet_isa_b7da68e44d (IsA classification arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "classification system is a kind of arrangement", "pln": ["(: cnet_isa_10aa5d2d7b (IsA classification_system arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "classified ad is a kind of newspaper ad", "pln": ["(: cnet_isa_fec6256359 (IsA classified_ad newspaper_ad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "classified stock is a kind of common stock", "pln": ["(: cnet_isa_b8c391f66f (IsA classified_stock common_stock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "classifier is a kind of morpheme", "pln": ["(: cnet_isa_9c6469cf22 (IsA classifier morpheme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "classifier is a kind of word", "pln": ["(: cnet_isa_2e4f491d0f (IsA classifier word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "classifier is a kind of thinker", "pln": ["(: cnet_isa_8c5e17711b (IsA classifier thinker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "classroom is a kind of room", "pln": ["(: cnet_isa_6bad3b199b (IsA classroom room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "classroom project is a kind of school assignment", "pln": ["(: cnet_isa_4e161a6f58 (IsA classroom_project school_assignment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "classroom is a kind of in school", "pln": ["(: cnet_isa_216dd5b412 (IsA classroom in_school) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "classwork is a kind of school assignment", "pln": ["(: cnet_isa_b14b4f7ecc (IsA classwork school_assignment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clast is a kind of fragment", "pln": ["(: cnet_isa_11de450984 (IsA clast fragment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clastic rock is a kind of rock", "pln": ["(: cnet_isa_1bb64efa35 (IsA clastic_rock rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clathraceae is a kind of fungus family", "pln": ["(: cnet_isa_611b7a773b (IsA clathraceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clathrus is a kind of fungus genus", "pln": ["(: cnet_isa_44d1470778 (IsA clathrus fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clatter is a kind of noise", "pln": ["(: cnet_isa_efd5925fa1 (IsA clatter noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clause is a kind of construction", "pln": ["(: cnet_isa_dba7f609b0 (IsA clause construction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "claustrophobe is a kind of neurotic", "pln": ["(: cnet_isa_e6888cae35 (IsA claustrophobe neurotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "claustrophobia is a kind of simple phobia", "pln": ["(: cnet_isa_30731e4102 (IsA claustrophobia simple_phobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "claustrum is a kind of basal ganglion", "pln": ["(: cnet_isa_9c513df873 (IsA claustrum basal_ganglion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clavariaceae is a kind of fungus family", "pln": ["(: cnet_isa_c3dc312887 (IsA clavariaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clavicep is a kind of fungus genus", "pln": ["(: cnet_isa_2606504bf0 (IsA clavicep fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "clavichord is a kind of keyboard instrument", "pln": ["(: cnet_isa_9da957d569 (IsA clavichord keyboard_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clavichord is a kind of stringed instrument", "pln": ["(: cnet_isa_43dc5b17fb (IsA clavichord stringed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clavichord is a kind of instrument", "pln": ["(: cnet_isa_8698ed14ea (IsA clavichord instrument) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clavicipitaceae is a kind of ascomycete", "pln": ["(: cnet_isa_f7993aa06d (IsA clavicipitaceae ascomycete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clavicle is a kind of bone", "pln": ["(: cnet_isa_c890da01c0 (IsA clavicle bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clavier is a kind of keyboard instrument", "pln": ["(: cnet_isa_81810dabb5 (IsA clavier keyboard_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clavier is a kind of stringed instrument", "pln": ["(: cnet_isa_db67a5afa2 (IsA clavier stringed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "claw is a kind of bird s foot", "pln": ["(: cnet_isa_8710818276 (IsA claw bird_s_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "claw is a kind of extremity", "pln": ["(: cnet_isa_6e23691ee7 (IsA claw extremity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "claw is a kind of horny structure", "pln": ["(: cnet_isa_c9a876f740 (IsA claw horny_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "claw hatchet is a kind of hatchet", "pln": ["(: cnet_isa_37a1edb914 (IsA claw_hatchet hatchet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clawback is a kind of restoration", "pln": ["(: cnet_isa_4daa403839 (IsA clawback restoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "clawfoot is a kind of deformity", "pln": ["(: cnet_isa_e3f8767a5b (IsA clawfoot deformity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clay is a kind of soil", "pln": ["(: cnet_isa_dc421a5c82 (IsA clay soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clay colored robin is a kind of thrush", "pln": ["(: cnet_isa_67d193b868 (IsA clay_colored_robin thrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clay pigeon is a kind of target", "pln": ["(: cnet_isa_b0facdcee1 (IsA clay_pigeon target) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clay pipe is a kind of pipe", "pln": ["(: cnet_isa_ea3fca4ecb (IsA clay_pipe pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "claymore is a kind of broadsword", "pln": ["(: cnet_isa_e3e126c1ef (IsA claymore broadsword) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "claymore mine is a kind of land mine", "pln": ["(: cnet_isa_b993c2e79a (IsA claymore_mine land_mine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "claystone is a kind of rock", "pln": ["(: cnet_isa_3ec36b3774 (IsA claystone rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "claytonia is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_52c22592e8 (IsA claytonia caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clean and jerk is a kind of weightlifting", "pln": ["(: cnet_isa_17079086f9 (IsA clean_and_jerk weightlifting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clean bill of health is a kind of assurance", "pln": ["(: cnet_isa_dc3e331a39 (IsA clean_bill_of_health assurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "clean bomb is a kind of atom bomb", "pln": ["(: cnet_isa_d120a9b2a8 (IsA clean_bomb atom_bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clean room is a kind of room", "pln": ["(: cnet_isa_e6ad377d0d (IsA clean_room room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cleaner is a kind of laborer", "pln": ["(: cnet_isa_ec5333482d (IsA cleaner laborer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cleaner is a kind of shopkeeper", "pln": ["(: cnet_isa_c41239d12d (IsA cleaner shopkeeper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cleaner is a kind of shop", "pln": ["(: cnet_isa_082e624186 (IsA cleaner shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cleaning is a kind of improvement", "pln": ["(: cnet_isa_9042df81cf (IsA cleaning improvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cleaning implement is a kind of implement", "pln": ["(: cnet_isa_8410e98759 (IsA cleaning_implement implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cleaning pad is a kind of cleaning implement", "pln": ["(: cnet_isa_e3919932ee (IsA cleaning_pad cleaning_implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cleaning pad is a kind of pad", "pln": ["(: cnet_isa_8c944239a3 (IsA cleaning_pad pad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cleanliness is a kind of good thing", "pln": ["(: cnet_isa_a155a88fad (IsA cleanliness good_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cleanliness is a kind of trait", "pln": ["(: cnet_isa_2a54972258 (IsA cleanliness trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cleanliness is a kind of habit", "pln": ["(: cnet_isa_9f5697f97b (IsA cleanliness habit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cleanness is a kind of purity", "pln": ["(: cnet_isa_007fbd6082 (IsA cleanness purity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cleanness is a kind of sanitary condition", "pln": ["(: cnet_isa_8f64ee0645 (IsA cleanness sanitary_condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cleansing agent is a kind of formulation", "pln": ["(: cnet_isa_62be918782 (IsA cleansing_agent formulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cleanup is a kind of position", "pln": ["(: cnet_isa_f456494637 (IsA cleanup position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clear is a kind of innocence", "pln": ["(: cnet_isa_9c0c047280 (IsA clear innocence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clear air turbulence is a kind of turbulence", "pln": ["(: cnet_isa_c0eb59a721 (IsA clear_air_turbulence turbulence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clear and present danger is a kind of danger", "pln": ["(: cnet_isa_d1787b6e47 (IsA clear_and_present_danger danger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clear liquid diet is a kind of liquid diet", "pln": ["(: cnet_isa_e82692483e (IsA clear_liquid_diet liquid_diet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clearance is a kind of license", "pln": ["(: cnet_isa_b0c3f4a52d (IsA clearance license) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clearance is a kind of interval", "pln": ["(: cnet_isa_09b4c6745e (IsA clearance interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clearance sale is a kind of sale", "pln": ["(: cnet_isa_592de87ef1 (IsA clearance_sale sale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clearing is a kind of improvement", "pln": ["(: cnet_isa_44a8147066 (IsA clearing improvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "clearing is a kind of liberation", "pln": ["(: cnet_isa_5794faf2c8 (IsA clearing liberation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clearing is a kind of tract", "pln": ["(: cnet_isa_6e0618fae1 (IsA clearing tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clearing house is a kind of financial institution", "pln": ["(: cnet_isa_5ab157e57c (IsA clearing_house financial_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clearness is a kind of quality", "pln": ["(: cnet_isa_2c17bf843d (IsA clearness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clearway is a kind of road", "pln": ["(: cnet_isa_9ef06e3cf9 (IsA clearway road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cleat is a kind of fastener", "pln": ["(: cnet_isa_a227677ebc (IsA cleat fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cleat is a kind of projection", "pln": ["(: cnet_isa_e13924c3df (IsA cleat projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cleat is a kind of strip", "pln": ["(: cnet_isa_60210ce35f (IsA cleat strip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cleat is a kind of shoe", "pln": ["(: cnet_isa_8b459efe48 (IsA cleat shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cleavage is a kind of division", "pln": ["(: cnet_isa_8c9a4c7726 (IsA cleavage division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cleavage is a kind of area", "pln": ["(: cnet_isa_842d7cf28b (IsA cleavage area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cleavage is a kind of cell division", "pln": ["(: cnet_isa_e45a0d5b2c (IsA cleavage cell_division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cleavage is a kind of chemical process", "pln": ["(: cnet_isa_d24c1796bb (IsA cleavage chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cleavage is a kind of state", "pln": ["(: cnet_isa_a1e8787f8b (IsA cleavage state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cleaver is a kind of knife", "pln": ["(: cnet_isa_b05a6231e1 (IsA cleaver knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cleaver is a kind of bedstraw", "pln": ["(: cnet_isa_d1d2edaff6 (IsA cleaver bedstraw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clef is a kind of musical notation", "pln": ["(: cnet_isa_fc6aaf943e (IsA clef musical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cleft is a kind of indentation", "pln": ["(: cnet_isa_e4005332a2 (IsA cleft indentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cleft foot is a kind of deformity", "pln": ["(: cnet_isa_9a8608564f (IsA cleft_foot deformity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cleft lip is a kind of birth defect", "pln": ["(: cnet_isa_3f4ff8ad9f (IsA cleft_lip birth_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cleft palate is a kind of birth defect", "pln": ["(: cnet_isa_22743d6c98 (IsA cleft_palate birth_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cleiste is a kind of monocot genus", "pln": ["(: cnet_isa_970fa86920 (IsA cleiste monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cleistogamy is a kind of self pollination", "pln": ["(: cnet_isa_dc0aba008c (IsA cleistogamy self_pollination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cleistothecium is a kind of ascocarp", "pln": ["(: cnet_isa_203812820e (IsA cleistothecium ascocarp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clematis is a kind of climber", "pln": ["(: cnet_isa_9916f85a8d (IsA clematis climber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clematis is a kind of vine", "pln": ["(: cnet_isa_7579a0063a (IsA clematis vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clemency is a kind of lenience", "pln": ["(: cnet_isa_01a549a3cf (IsA clemency lenience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clementine is a kind of mandarin", "pln": ["(: cnet_isa_f1ebc6eeac (IsA clementine mandarin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clerestory is a kind of window", "pln": ["(: cnet_isa_9d727e7f92 (IsA clerestory window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clergy is a kind of priesthood", "pln": ["(: cnet_isa_81b6bfd238 (IsA clergy priesthood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clergyman is a kind of spiritual leader", "pln": ["(: cnet_isa_128c85aaab (IsA clergyman spiritual_leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cleric is a kind of clergyman", "pln": ["(: cnet_isa_3c4b5465b2 (IsA cleric clergyman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clerical collar is a kind of collar", "pln": ["(: cnet_isa_ce81851629 (IsA clerical_collar collar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clericalism is a kind of policy", "pln": ["(: cnet_isa_0d2e6e587a (IsA clericalism policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clericalist is a kind of disciple", "pln": ["(: cnet_isa_07a90eb14c (IsA clericalist disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clerid beetle is a kind of beetle", "pln": ["(: cnet_isa_a189a22d90 (IsA clerid_beetle beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cleridae is a kind of arthropod family", "pln": ["(: cnet_isa_f700de9411 (IsA cleridae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clerihew is a kind of verse", "pln": ["(: cnet_isa_3660ff18b2 (IsA clerihew verse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clerk is a kind of employee", "pln": ["(: cnet_isa_620392b0cc (IsA clerk employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clerkship is a kind of position", "pln": ["(: cnet_isa_ae2aaabf44 (IsA clerkship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clethra is a kind of dicot genus", "pln": ["(: cnet_isa_88743f31bb (IsA clethra dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clethraceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_16f2842a2d (IsA clethraceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clethrionomy is a kind of mammal genus", "pln": ["(: cnet_isa_e3aadd651c (IsA clethrionomy mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clever dick is a kind of intellectual", "pln": ["(: cnet_isa_e8dd13eea5 (IsA clever_dick intellectual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clevis is a kind of coupling", "pln": ["(: cnet_isa_80571720fb (IsA clevis coupling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clew is a kind of ball", "pln": ["(: cnet_isa_89f455d417 (IsA clew ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clew is a kind of cord", "pln": ["(: cnet_isa_40555c69eb (IsA clew cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cliche is a kind of overused expression", "pln": ["(: cnet_isa_6dec0558e3 (IsA cliche overused_expression) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "click is a kind of depression", "pln": ["(: cnet_isa_0073cc3a0d (IsA click depression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "click beetle is a kind of elaterid beetle", "pln": ["(: cnet_isa_76bd145059 (IsA click_beetle elaterid_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "click clack is a kind of sound", "pln": ["(: cnet_isa_64d5b3ea13 (IsA click_clack sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "clickety clack is a kind of click clack", "pln": ["(: cnet_isa_2394ce8dbc (IsA clickety_clack click_clack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "client is a kind of case", "pln": ["(: cnet_isa_4f7aafc4fc (IsA client case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "client centered therapy is a kind of psychotherapy", "pln": ["(: cnet_isa_5e1519d743 (IsA client_centered_therapy psychotherapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clientage is a kind of business relation", "pln": ["(: cnet_isa_42464f6387 (IsA clientage business_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clientele is a kind of people", "pln": ["(: cnet_isa_af59628760 (IsA clientele people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cliff is a kind of geological formation", "pln": ["(: cnet_isa_768213426d (IsA cliff geological_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cliff brake is a kind of fern", "pln": ["(: cnet_isa_2d014ad64c (IsA cliff_brake fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cliff diving is a kind of dive", "pln": ["(: cnet_isa_aac694ea16 (IsA cliff_diving dive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cliff dweller is a kind of anasazi", "pln": ["(: cnet_isa_da577d47ec (IsA cliff_dweller anasazi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cliff dwelling is a kind of dwelling", "pln": ["(: cnet_isa_efad88cb6d (IsA cliff_dwelling dwelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cliff rose is a kind of thrift", "pln": ["(: cnet_isa_2e0794a756 (IsA cliff_rose thrift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cliff swallow is a kind of swallow", "pln": ["(: cnet_isa_2fc4cf1502 (IsA cliff_swallow swallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cliffhanger is a kind of episode", "pln": ["(: cnet_isa_6dd5738606 (IsA cliffhanger episode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cliffhanger is a kind of contest", "pln": ["(: cnet_isa_5aacff32f4 (IsA cliffhanger contest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clifford trust is a kind of trust", "pln": ["(: cnet_isa_5c776ac2ba (IsA clifford_trust trust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cliftonia is a kind of dicot genus", "pln": ["(: cnet_isa_73bb8296b3 (IsA cliftonia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "climacteric is a kind of biological time", "pln": ["(: cnet_isa_a46d9d456e (IsA climacteric biological_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "climate is a kind of condition", "pln": ["(: cnet_isa_d9e129bd68 (IsA climate condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "climate is a kind of environmental condition", "pln": ["(: cnet_isa_d4cbd1bae7 (IsA climate environmental_condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "climate change is a kind of temperature change", "pln": ["(: cnet_isa_335b41b289 (IsA climate_change temperature_change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "climatic zone is a kind of zone", "pln": ["(: cnet_isa_7b49c957ce (IsA climatic_zone zone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "climatologist is a kind of expert", "pln": ["(: cnet_isa_f29b99a4ab (IsA climatologist expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "climatology is a kind of meteorology", "pln": ["(: cnet_isa_ca366cf9de (IsA climatology meteorology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "climax is a kind of moment", "pln": ["(: cnet_isa_819fd462f6 (IsA climax moment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "climax is a kind of rhetorical device", "pln": ["(: cnet_isa_f7c2543e11 (IsA climax rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "climax is a kind of juncture", "pln": ["(: cnet_isa_b8f817cd62 (IsA climax juncture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "climax is a kind of degree", "pln": ["(: cnet_isa_4126ed618f (IsA climax degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "climb is a kind of rise", "pln": ["(: cnet_isa_4b49a186c2 (IsA climb rise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "climber is a kind of athlete", "pln": ["(: cnet_isa_6a75d2ac83 (IsA climber athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "climber is a kind of vine", "pln": ["(: cnet_isa_47426eb883 (IsA climber vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "climbing bird s nest fern is a kind of fern", "pln": ["(: cnet_isa_5ddc363dbc (IsA climbing_bird_s_nest_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "climbing corydalis is a kind of vine", "pln": ["(: cnet_isa_698f742f77 (IsA climbing_corydalis vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "climbing fern is a kind of climber", "pln": ["(: cnet_isa_304ce974c6 (IsA climbing_fern climber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "climbing fern is a kind of fern", "pln": ["(: cnet_isa_afdace32a9 (IsA climbing_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "climbing frame is a kind of framework", "pln": ["(: cnet_isa_439df30f19 (IsA climbing_frame framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "climbing fumitory is a kind of vine", "pln": ["(: cnet_isa_04a0a155f1 (IsA climbing_fumitory vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "climbing hempweed is a kind of vine", "pln": ["(: cnet_isa_8b3380ee62 (IsA climbing_hempweed vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "climbing hydrangea is a kind of hydrangea", "pln": ["(: cnet_isa_deca9ae5b2 (IsA climbing_hydrangea hydrangea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "climbing hydrangea is a kind of shrub", "pln": ["(: cnet_isa_4a49d43edd (IsA climbing_hydrangea shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "climbing maidenhair is a kind of climbing fern", "pln": ["(: cnet_isa_9d2a24d31d (IsA climbing_maidenhair climbing_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "climbing mountain is a kind of dangerous activity", "pln": ["(: cnet_isa_f2dc040e23 (IsA climbing_mountain dangerous_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "climbing onion is a kind of herb", "pln": ["(: cnet_isa_8c05671600 (IsA climbing_onion herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "climbing perch is a kind of fish", "pln": ["(: cnet_isa_90c7117270 (IsA climbing_perch fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "climbing salamander is a kind of salamander", "pln": ["(: cnet_isa_aaf69ab78f (IsA climbing_salamander salamander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clinch is a kind of fastener", "pln": ["(: cnet_isa_265b5f7ddc (IsA clinch fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "clinch is a kind of maneuver", "pln": ["(: cnet_isa_e1957bbd68 (IsA clinch maneuver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clinch is a kind of noose", "pln": ["(: cnet_isa_58972a3024 (IsA clinch noose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clincher is a kind of tool", "pln": ["(: cnet_isa_7d2d83bb30 (IsA clincher tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clincher is a kind of determinant", "pln": ["(: cnet_isa_2eb0e7fbdb (IsA clincher determinant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clincher is a kind of argument", "pln": ["(: cnet_isa_9423fc02e9 (IsA clincher argument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cling is a kind of edible fruit", "pln": ["(: cnet_isa_39a5ff422f (IsA cling edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cling film is a kind of plastic wrap", "pln": ["(: cnet_isa_a8fe228d55 (IsA cling_film plastic_wrap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clingfish is a kind of percoid fish", "pln": ["(: cnet_isa_f38ddad05c (IsA clingfish percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clinic is a kind of medical building", "pln": ["(: cnet_isa_9d82350718 (IsA clinic medical_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clinic is a kind of session", "pln": ["(: cnet_isa_e01ad8508e (IsA clinic session) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clinic is a kind of medical institution", "pln": ["(: cnet_isa_c4f6b82d3a (IsA clinic medical_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clinical anatomy is a kind of anatomy", "pln": ["(: cnet_isa_28ba4ef9dc (IsA clinical_anatomy anatomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clinical psychology is a kind of psychotherapy", "pln": ["(: cnet_isa_bdeab47dce (IsA clinical_psychology psychotherapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clinical thermometer is a kind of mercury thermometer", "pln": ["(: cnet_isa_3869acc74f (IsA clinical_thermometer mercury_thermometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "clinical trial is a kind of test", "pln": ["(: cnet_isa_860c9456a6 (IsA clinical_trial test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clinician is a kind of practitioner", "pln": ["(: cnet_isa_249e76f6ca (IsA clinician practitioner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clinid is a kind of blennioid fish", "pln": ["(: cnet_isa_cbdeb5ad6f (IsA clinid blennioid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clinidae is a kind of fish family", "pln": ["(: cnet_isa_aeba4aec5e (IsA clinidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clinker is a kind of brick", "pln": ["(: cnet_isa_1849aebe79 (IsA clinker brick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clinocephaly is a kind of birth defect", "pln": ["(: cnet_isa_90f9030b78 (IsA clinocephaly birth_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clinodactyly is a kind of birth defect", "pln": ["(: cnet_isa_453856c913 (IsA clinodactyly birth_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clinometer is a kind of surveying instrument", "pln": ["(: cnet_isa_2755b21b7c (IsA clinometer surveying_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clinopodium is a kind of asterid dicot genus", "pln": ["(: cnet_isa_d6577057d1 (IsA clinopodium asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clinton is a kind of liar", "pln": ["(: cnet_isa_5c6324756f (IsA clinton liar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clinton is a kind of president", "pln": ["(: cnet_isa_0e5582e60d (IsA clinton president) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clinton administration is a kind of executive", "pln": ["(: cnet_isa_e82790961c (IsA clinton_administration executive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clintonia is a kind of liliaceous plant", "pln": ["(: cnet_isa_8530e4a53f (IsA clintonia liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clip is a kind of short video segment", "pln": ["(: cnet_isa_2625c7bd51 (IsA clip short_video_segment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "clip is a kind of blow", "pln": ["(: cnet_isa_c47ba07ad0 (IsA clip blow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clip is a kind of cut", "pln": ["(: cnet_isa_534c1b9cd8 (IsA clip cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "clip is a kind of fastener", "pln": ["(: cnet_isa_43d63ad1c3 (IsA clip fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "clip is a kind of jewelry", "pln": ["(: cnet_isa_9e4d20a7d0 (IsA clip jewelry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clip art is a kind of computer graphic", "pln": ["(: cnet_isa_447dd6e1fd (IsA clip_art computer_graphic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clip artist is a kind of swindler", "pln": ["(: cnet_isa_e0bd49ea8f (IsA clip_artist swindler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clip joint is a kind of spot", "pln": ["(: cnet_isa_979d9d684c (IsA clip_joint spot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clip lead is a kind of jumper cable", "pln": ["(: cnet_isa_b1ec8d57ff (IsA clip_lead jumper_cable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clip on is a kind of device", "pln": ["(: cnet_isa_92dec8750f (IsA clip_on device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clipboard is a kind of writing board", "pln": ["(: cnet_isa_af3bb320f7 (IsA clipboard writing_board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clipper is a kind of sailing vessel", "pln": ["(: cnet_isa_32b789465d (IsA clipper sailing_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clipper is a kind of scissor", "pln": ["(: cnet_isa_85ea733560 (IsA clipper scissor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clipper is a kind of shear", "pln": ["(: cnet_isa_a32da2b490 (IsA clipper shear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clippety clop is a kind of sound", "pln": ["(: cnet_isa_86cdd06735 (IsA clippety_clop sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clipping is a kind of excerpt", "pln": ["(: cnet_isa_25c9e79038 (IsA clipping excerpt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "clique is a kind of set", "pln": ["(: cnet_isa_46a97a8a53 (IsA clique set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clitocybe is a kind of fungus genus", "pln": ["(: cnet_isa_fb6ebe1488 (IsA clitocybe fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clitocybe clavipe is a kind of agaric", "pln": ["(: cnet_isa_17a5d90082 (IsA clitocybe_clavipe agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clitocybe dealbata is a kind of agaric", "pln": ["(: cnet_isa_109f88b3f9 (IsA clitocybe_dealbata agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clitocybe inornata is a kind of agaric", "pln": ["(: cnet_isa_6737d446f5 (IsA clitocybe_inornata agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clitocybe irina is a kind of agaric", "pln": ["(: cnet_isa_dc47acd9e1 (IsA clitocybe_irina agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clitocybe robusta is a kind of agaric", "pln": ["(: cnet_isa_a9a6448cc7 (IsA clitocybe_robusta agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clitocybe subconnexa is a kind of agaric", "pln": ["(: cnet_isa_686b76ee67 (IsA clitocybe_subconnexa agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clitoral vein is a kind of vein", "pln": ["(: cnet_isa_39ce5d08a5 (IsA clitoral_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clitoria is a kind of rosid dicot genus", "pln": ["(: cnet_isa_86ba71ee9b (IsA clitoria rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "clitoridectomy is a kind of ablation", "pln": ["(: cnet_isa_0e1fd88d5c (IsA clitoridectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clitoris is a kind of erectile organ", "pln": ["(: cnet_isa_a10babfeba (IsA clitoris erectile_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloaca is a kind of cavity", "pln": ["(: cnet_isa_7b57dcae4f (IsA cloaca cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloak is a kind of covering", "pln": ["(: cnet_isa_785d91a68e (IsA cloak covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloak is a kind of overgarment", "pln": ["(: cnet_isa_b8927b1088 (IsA cloak overgarment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloakmaker is a kind of garmentmaker", "pln": ["(: cnet_isa_6208a08b20 (IsA cloakmaker garmentmaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloakroom is a kind of lounge", "pln": ["(: cnet_isa_84e0ce8d0d (IsA cloakroom lounge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloakroom is a kind of room", "pln": ["(: cnet_isa_d75292f460 (IsA cloakroom room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloche is a kind of millinery", "pln": ["(: cnet_isa_4c5c53a712 (IsA cloche millinery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloche is a kind of protective covering", "pln": ["(: cnet_isa_774c992434 (IsA cloche protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clock is a kind of machine", "pln": ["(: cnet_isa_6f9278c4ac (IsA clock machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clock is a kind of timepiece", "pln": ["(: cnet_isa_f71d069fdf (IsA clock timepiece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clock face is a kind of face", "pln": ["(: cnet_isa_c2d0263a13 (IsA clock_face face) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clock golf is a kind of golf", "pln": ["(: cnet_isa_efc2d44303 (IsA clock_golf golf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clock pendulum is a kind of physical pendulum", "pln": ["(: cnet_isa_a237c818f4 (IsA clock_pendulum physical_pendulum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clock radio is a kind of radio receiver", "pln": ["(: cnet_isa_d6701e1b4e (IsA clock_radio radio_receiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clock time is a kind of reading", "pln": ["(: cnet_isa_c81aeef8c7 (IsA clock_time reading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clock tower is a kind of tower", "pln": ["(: cnet_isa_d48a1a4830 (IsA clock_tower tower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clock watcher is a kind of idler", "pln": ["(: cnet_isa_7ea1078179 (IsA clock_watcher idler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clock watching is a kind of attention", "pln": ["(: cnet_isa_22576e2166 (IsA clock_watching attention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clocking is a kind of duration", "pln": ["(: cnet_isa_baa764bff9 (IsA clocking duration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clocksmith is a kind of craftsman", "pln": ["(: cnet_isa_aa35cc40b9 (IsA clocksmith craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clockwork is a kind of mechanism", "pln": ["(: cnet_isa_1d860b785b (IsA clockwork mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "clockwork universe is a kind of weltanschauung", "pln": ["(: cnet_isa_eead6ce9fa (IsA clockwork_universe weltanschauung) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "close quarters is a kind of site", "pln": ["(: cnet_isa_6cf1cefeeb (IsA close_quarters site) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clog is a kind of footwear", "pln": ["(: cnet_isa_d09bb6187f (IsA clog footwear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clog is a kind of hindrance", "pln": ["(: cnet_isa_e9af3f0f0e (IsA clog hindrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clog dance is a kind of tap dancing", "pln": ["(: cnet_isa_50ae40e7e3 (IsA clog_dance tap_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clog dancer is a kind of dancer", "pln": ["(: cnet_isa_0cac15d25b (IsA clog_dancer dancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloisonne is a kind of enamelware", "pln": ["(: cnet_isa_0850cddcd0 (IsA cloisonne enamelware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloister is a kind of court", "pln": ["(: cnet_isa_2544e3b730 (IsA cloister court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clomipramine is a kind of tricyclic", "pln": ["(: cnet_isa_6e7ed108b5 (IsA clomipramine tricyclic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clone is a kind of organism", "pln": ["(: cnet_isa_a00cd112e9 (IsA clone organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloning is a kind of biological research", "pln": ["(: cnet_isa_ad0ab40639 (IsA cloning biological_research) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clonus is a kind of convulsion", "pln": ["(: cnet_isa_a0d97ab593 (IsA clonus convulsion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "close call is a kind of accomplishment", "pln": ["(: cnet_isa_aace1a9e28 (IsA close_call accomplishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "close order is a kind of military formation", "pln": ["(: cnet_isa_7d0eaa3354 (IsA close_order military_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "close order drill is a kind of military drill", "pln": ["(: cnet_isa_851980b806 (IsA close_order_drill military_drill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "close quarter fighting is a kind of fight", "pln": ["(: cnet_isa_47c7bf7893 (IsA close_quarter_fighting fight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "close quarter is a kind of site", "pln": ["(: cnet_isa_8c6bde87f8 (IsA close_quarter site) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "close support is a kind of support", "pln": ["(: cnet_isa_017b5f9ae3 (IsA close_support support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "close supporting fire is a kind of supporting fire", "pln": ["(: cnet_isa_84d119c077 (IsA close_supporting_fire supporting_fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "closed chain is a kind of chain", "pln": ["(: cnet_isa_921d7a0a89 (IsA closed_chain chain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "closed circuit is a kind of circuit", "pln": ["(: cnet_isa_4e3758f245 (IsA closed_circuit circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "closed circuit television is a kind of television", "pln": ["(: cnet_isa_e4d4bc972e (IsA closed_circuit_television television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "closed corporation is a kind of corporation", "pln": ["(: cnet_isa_2161cf4f80 (IsA closed_corporation corporation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "closed couplet is a kind of couplet", "pln": ["(: cnet_isa_ce8718f9ad (IsA closed_couplet couplet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "closed curve is a kind of curve", "pln": ["(: cnet_isa_07b7437231 (IsA closed_curve curve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "closed end fund is a kind of investment company", "pln": ["(: cnet_isa_ff3fb96a64 (IsA closed_end_fund investment_company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "closed gentian is a kind of gentian", "pln": ["(: cnet_isa_78728a007b (IsA closed_gentian gentian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "closed heart surgery is a kind of heart surgery", "pln": ["(: cnet_isa_9d1aa8342a (IsA closed_heart_surgery heart_surgery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "closed interval is a kind of interval", "pln": ["(: cnet_isa_a0d2613324 (IsA closed_interval interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "closed loop is a kind of control system", "pln": ["(: cnet_isa_fefd5025e4 (IsA closed_loop control_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "closed primary is a kind of direct primary", "pln": ["(: cnet_isa_219b1ab7fc (IsA closed_primary direct_primary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "closed shop is a kind of company", "pln": ["(: cnet_isa_004385ad59 (IsA closed_shop company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "closed universe is a kind of universe", "pln": ["(: cnet_isa_6a9f5c2ecc (IsA closed_universe universe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "closely held corporation is a kind of corporation", "pln": ["(: cnet_isa_c5d1c98bbd (IsA closely_held_corporation corporation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "closeness is a kind of unsociability", "pln": ["(: cnet_isa_a216866624 (IsA closeness unsociability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "closeness is a kind of belonging", "pln": ["(: cnet_isa_fc3325c060 (IsA closeness belonging) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "closeout is a kind of sale", "pln": ["(: cnet_isa_e34e614ace (IsA closeout sale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "closer is a kind of reliever", "pln": ["(: cnet_isa_0432df13ad (IsA closer reliever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "closer is a kind of person", "pln": ["(: cnet_isa_80e08e23a3 (IsA closer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "closet is a kind of room", "pln": ["(: cnet_isa_27a85c323a (IsA closet room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "closet auger is a kind of hydra", "pln": ["(: cnet_isa_545ff42738 (IsA closet_auger hydra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "closet drama is a kind of drama", "pln": ["(: cnet_isa_337a3bfe50 (IsA closet_drama drama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "closet queen is a kind of homosexual", "pln": ["(: cnet_isa_b45a7be881 (IsA closet_queen homosexual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "closeup is a kind of picture", "pln": ["(: cnet_isa_68df0f792c (IsA closeup picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "closeup len is a kind of camera len", "pln": ["(: cnet_isa_194ea604a1 (IsA closeup_len camera_len) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "closing is a kind of approach", "pln": ["(: cnet_isa_272577d241 (IsA closing approach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "closing drawer is a kind of pushing", "pln": ["(: cnet_isa_9d1212b625 (IsA closing_drawer pushing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "closing price is a kind of price", "pln": ["(: cnet_isa_555c800055 (IsA closing_price price) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "closing time is a kind of hour", "pln": ["(: cnet_isa_e3e06b1f7f (IsA closing_time hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clostridium is a kind of eubacteria", "pln": ["(: cnet_isa_fde15b52bc (IsA clostridium eubacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clostridium perfringen is a kind of bioweapon", "pln": ["(: cnet_isa_2d3171aff9 (IsA clostridium_perfringen bioweapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clostridium perfringen is a kind of eubacteria", "pln": ["(: cnet_isa_23f4780711 (IsA clostridium_perfringen eubacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "closure is a kind of termination", "pln": ["(: cnet_isa_7647d10503 (IsA closure termination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "closure is a kind of gestalt law of organization", "pln": ["(: cnet_isa_6dfa6b4833 (IsA closure gestalt_law_of_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "closure is a kind of order", "pln": ["(: cnet_isa_76836d169f (IsA closure order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "closure by compartment is a kind of closure", "pln": ["(: cnet_isa_da0c7d0d24 (IsA closure_by_compartment closure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clot is a kind of ball", "pln": ["(: cnet_isa_4e38c56a20 (IsA clot ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloth cap is a kind of cap", "pln": ["(: cnet_isa_47b60f57fb (IsA cloth_cap cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloth covering is a kind of covering", "pln": ["(: cnet_isa_dcf327ac2a (IsA cloth_covering covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloth linen is a kind of fabric", "pln": ["(: cnet_isa_3609fa0183 (IsA cloth_linen fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clothe closet is a kind of wardrobe", "pln": ["(: cnet_isa_59b3e8b2be (IsA clothe_closet wardrobe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clothe dryer is a kind of dryer", "pln": ["(: cnet_isa_81a5a2c3dd (IsA clothe_dryer dryer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clothe dryer is a kind of white good", "pln": ["(: cnet_isa_1785f21818 (IsA clothe_dryer white_good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clothe hamper is a kind of hamper", "pln": ["(: cnet_isa_4c6f736877 (IsA clothe_hamper hamper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clothe moth is a kind of tineid", "pln": ["(: cnet_isa_f087e487c2 (IsA clothe_moth tineid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clothe tree is a kind of pole", "pln": ["(: cnet_isa_6247e30f01 (IsA clothe_tree pole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clothesbrush is a kind of brush", "pln": ["(: cnet_isa_05e1e26665 (IsA clothesbrush brush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clotheshorse is a kind of framework", "pln": ["(: cnet_isa_830da19f14 (IsA clotheshorse framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "clothesline is a kind of cord", "pln": ["(: cnet_isa_e6e17fd0f2 (IsA clothesline cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clothespin is a kind of fastener", "pln": ["(: cnet_isa_2b253a211b (IsA clothespin fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clothier is a kind of merchant", "pln": ["(: cnet_isa_9a7e45a4da (IsA clothier merchant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clothing is a kind of consumer good", "pln": ["(: cnet_isa_054bf84c5e (IsA clothing consumer_good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clothing is a kind of covering", "pln": ["(: cnet_isa_36558c2dd5 (IsA clothing covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clothing store is a kind of shop", "pln": ["(: cnet_isa_88f8781109 (IsA clothing_store shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clotted cream is a kind of cream", "pln": ["(: cnet_isa_241e2e0cf6 (IsA clotted_cream cream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clotting time is a kind of time period", "pln": ["(: cnet_isa_7f7069b495 (IsA clotting_time time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cloud is a kind of atmospheric phenomenon", "pln": ["(: cnet_isa_9909ea3e0f (IsA cloud atmospheric_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloud is a kind of physical phenomenon", "pln": ["(: cnet_isa_5289b7663d (IsA cloud physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloud is a kind of gloom", "pln": ["(: cnet_isa_d5edb47c99 (IsA cloud gloom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloud is a kind of suspicion", "pln": ["(: cnet_isa_65e09c9030 (IsA cloud suspicion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloud is a kind of unreality", "pln": ["(: cnet_isa_3b1c00dd90 (IsA cloud unreality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloud bank is a kind of cloud", "pln": ["(: cnet_isa_27a593a3f4 (IsA cloud_bank cloud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloud chamber is a kind of particle detector", "pln": ["(: cnet_isa_0683f8e70e (IsA cloud_chamber particle_detector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloud cuckoo land is a kind of land", "pln": ["(: cnet_isa_09fccca203 (IsA cloud_cuckoo_land land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloud cuckoo land is a kind of imaginary place", "pln": ["(: cnet_isa_867b8cd448 (IsA cloud_cuckoo_land imaginary_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloud grass is a kind of bent", "pln": ["(: cnet_isa_8322fb1a3a (IsA cloud_grass bent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloudberry is a kind of raspberry", "pln": ["(: cnet_isa_2a3942b09e (IsA cloudberry raspberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cloudiness is a kind of opacity", "pln": ["(: cnet_isa_7c25dad537 (IsA cloudiness opacity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloudiness is a kind of bad weather", "pln": ["(: cnet_isa_4128c0d061 (IsA cloudiness bad_weather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloudiness is a kind of semidarkness", "pln": ["(: cnet_isa_c667a63c34 (IsA cloudiness semidarkness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clouding is a kind of vaporization", "pln": ["(: cnet_isa_c53738edf1 (IsA clouding vaporization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloudlessness is a kind of sunniness", "pln": ["(: cnet_isa_649e3046f8 (IsA cloudlessness sunniness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloud is a kind of often in sky", "pln": ["(: cnet_isa_d8458eeb0b (IsA cloud often_in_sky) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloud is a kind of usually in sky", "pln": ["(: cnet_isa_0d4e6ddd98 (IsA cloud usually_in_sky) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloud is a kind of water vapor", "pln": ["(: cnet_isa_60fbb76c77 (IsA cloud water_vapor) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clout is a kind of target", "pln": ["(: cnet_isa_6216d4a483 (IsA clout target) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clout nail is a kind of nail", "pln": ["(: cnet_isa_3692c90d3b (IsA clout_nail nail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clove is a kind of garlic", "pln": ["(: cnet_isa_c29bfa4898 (IsA clove garlic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clove is a kind of spice", "pln": ["(: cnet_isa_eb598685de (IsA clove spice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clove is a kind of flower bud", "pln": ["(: cnet_isa_98162ac02f (IsA clove flower_bud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clove is a kind of spice tree", "pln": ["(: cnet_isa_e231a87b9e (IsA clove spice_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clove hitch is a kind of knot", "pln": ["(: cnet_isa_7cfebc6cfe (IsA clove_hitch knot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clove oil is a kind of essential oil", "pln": ["(: cnet_isa_8c644cbfa5 (IsA clove_oil essential_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cloven foot is a kind of hoof", "pln": ["(: cnet_isa_b9fdc8790e (IsA cloven_foot hoof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloven hoof is a kind of mark", "pln": ["(: cnet_isa_03fa5f2aa5 (IsA cloven_hoof mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clover is a kind of herb", "pln": ["(: cnet_isa_aec8dec1c3 (IsA clover herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clover fern is a kind of aquatic fern", "pln": ["(: cnet_isa_72540d60b4 (IsA clover_fern aquatic_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clover leaf roll is a kind of bun", "pln": ["(: cnet_isa_211a62b388 (IsA clover_leaf_roll bun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloverleaf is a kind of interchange", "pln": ["(: cnet_isa_16ee523ee8 (IsA cloverleaf interchange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clovis culture is a kind of paleo american culture", "pln": ["(: cnet_isa_cdf45d2d08 (IsA clovis_culture paleo_american_culture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "clowder is a kind of animal group", "pln": ["(: cnet_isa_f9124adaee (IsA clowder animal_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clown is a kind of comedian", "pln": ["(: cnet_isa_fd14a4f785 (IsA clown comedian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clown is a kind of fool", "pln": ["(: cnet_isa_4c007dc9a4 (IsA clown fool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clown anemone fish is a kind of anemone fish", "pln": ["(: cnet_isa_e207aa4ec2 (IsA clown_anemone_fish anemone_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cloze procedure is a kind of diagnostic test", "pln": ["(: cnet_isa_486c745bea (IsA cloze_procedure diagnostic_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "club is a kind of exclusive group of people", "pln": ["(: cnet_isa_bed0524dcd (IsA club exclusive_group_of_people) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "club is a kind of playing card", "pln": ["(: cnet_isa_f5f4da1739 (IsA club playing_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "club is a kind of stick", "pln": ["(: cnet_isa_fa35720c68 (IsA club stick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "club is a kind of association", "pln": ["(: cnet_isa_b6156d88e3 (IsA club association) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "club car is a kind of car", "pln": ["(: cnet_isa_35a1a03885 (IsA club_car car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "club drug is a kind of controlled substance", "pln": ["(: cnet_isa_dbb04f2797 (IsA club_drug controlled_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "club fungus is a kind of coral fungus", "pln": ["(: cnet_isa_20f7c8c250 (IsA club_fungus coral_fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "club member is a kind of member", "pln": ["(: cnet_isa_d979e3d362 (IsA club_member member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "club moss is a kind of fern ally", "pln": ["(: cnet_isa_65ac50503b (IsA club_moss fern_ally) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "club sandwich is a kind of sandwich", "pln": ["(: cnet_isa_ffaf636dd5 (IsA club_sandwich sandwich) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clubbing is a kind of symptom", "pln": ["(: cnet_isa_92c459bce1 (IsA clubbing symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clubfoot is a kind of deformity", "pln": ["(: cnet_isa_d7db237655 (IsA clubfoot deformity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clubhouse is a kind of building", "pln": ["(: cnet_isa_f7b1fa30aa (IsA clubhouse building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clubroom is a kind of room", "pln": ["(: cnet_isa_2027c369fe (IsA clubroom room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clubroot fungus is a kind of fungus", "pln": ["(: cnet_isa_03a8ca4feb (IsA clubroot_fungus fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cluck is a kind of cry", "pln": ["(: cnet_isa_fbf3a44336 (IsA cluck cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clue is a kind of evidence", "pln": ["(: cnet_isa_f5bcbc741d (IsA clue evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clumber is a kind of spaniel", "pln": ["(: cnet_isa_2a7a54495e (IsA clumber spaniel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clumsy person is a kind of person", "pln": ["(: cnet_isa_9822517e69 (IsA clumsy_person person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clunch is a kind of soil", "pln": ["(: cnet_isa_65d8ff712b (IsA clunch soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clupea is a kind of fish genus", "pln": ["(: cnet_isa_416a2058af (IsA clupea fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clupeid fish is a kind of soft finned fish", "pln": ["(: cnet_isa_348a862bbd (IsA clupeid_fish soft_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clupeidae is a kind of fish family", "pln": ["(: cnet_isa_f075b7e3fd (IsA clupeidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clusia is a kind of tree", "pln": ["(: cnet_isa_188f181afb (IsA clusia tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cluster bomb is a kind of bomb", "pln": ["(: cnet_isa_0cb459995e (IsA cluster_bomb bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cluster of differentiation 4 is a kind of glycoprotein", "pln": ["(: cnet_isa_98d4193d49 (IsA cluster_of_differentiation_4 glycoprotein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cluster of differentiation 8 is a kind of glycoprotein", "pln": ["(: cnet_isa_e32f937b77 (IsA cluster_of_differentiation_8 glycoprotein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clustered bellflower is a kind of campanula", "pln": ["(: cnet_isa_1c0b0a1997 (IsA clustered_bellflower campanula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clustered lady s slipper is a kind of lady s slipper", "pln": ["(: cnet_isa_464b64dc13 (IsA clustered_lady_s_slipper lady_s_slipper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "clustered poppy mallow is a kind of poppy mallow", "pln": ["(: cnet_isa_762e338784 (IsA clustered_poppy_mallow poppy_mallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "coach is a kind of person who coaches other people", "pln": ["(: cnet_isa_dbaae3f3ba (IsA coach person_who_coaches_other_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clutch is a kind of coupling", "pln": ["(: cnet_isa_4d418d9ac1 (IsA clutch coupling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clutch is a kind of pedal", "pln": ["(: cnet_isa_2d15bf9497 (IsA clutch pedal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clutch is a kind of brood", "pln": ["(: cnet_isa_700215362b (IsA clutch brood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clutch is a kind of temporary state", "pln": ["(: cnet_isa_8dc21bd9ab (IsA clutch temporary_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clutch bag is a kind of bag", "pln": ["(: cnet_isa_38952325d3 (IsA clutch_bag bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clutter is a kind of noise", "pln": ["(: cnet_isa_3880d617bc (IsA clutter noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clutter is a kind of radar echo", "pln": ["(: cnet_isa_bd325e3dae (IsA clutter radar_echo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clutter is a kind of disorderliness", "pln": ["(: cnet_isa_9c18e86682 (IsA clutter disorderliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clydesdale is a kind of draft horse", "pln": ["(: cnet_isa_2fe4f5ad51 (IsA clydesdale draft_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clydesdale terrier is a kind of skye terrier", "pln": ["(: cnet_isa_0f573a6540 (IsA clydesdale_terrier skye_terrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "clypeus is a kind of protective covering", "pln": ["(: cnet_isa_c68a6c9dc8 (IsA clypeus protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cnemidophorus is a kind of reptile genus", "pln": ["(: cnet_isa_f7166046d2 (IsA cnemidophorus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cnicus is a kind of asterid dicot genus", "pln": ["(: cnet_isa_d1e16be926 (IsA cnicus asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cnidaria is a kind of phylum", "pln": ["(: cnet_isa_4c8a4f2cf9 (IsA cnidaria phylum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cnidoscolus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_b77eb705c8 (IsA cnidoscolus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cnidosporidia is a kind of class", "pln": ["(: cnet_isa_42a120d6e8 (IsA cnidosporidia class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cnn is a kind of television channel", "pln": ["(: cnet_isa_8d2e3d15b9 (IsA cnn television_channel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cnn is a kind of television network", "pln": ["(: cnet_isa_402eb5503e (IsA cnn television_network) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "co beneficiary is a kind of beneficiary", "pln": ["(: cnet_isa_3410716869 (IsA co_beneficiary beneficiary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "co discoverer is a kind of finder", "pln": ["(: cnet_isa_5bacf8e5d3 (IsA co_discoverer finder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "co ed is a kind of undergraduate", "pln": ["(: cnet_isa_0788b2dc21 (IsA co_ed undergraduate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "co option is a kind of appointment", "pln": ["(: cnet_isa_54af70e9ed (IsA co_option appointment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "co option is a kind of election", "pln": ["(: cnet_isa_cb37884917 (IsA co_option election) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "co star is a kind of star", "pln": ["(: cnet_isa_b7c37baa65 (IsA co_star star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coach is a kind of person who coache other people", "pln": ["(: cnet_isa_a86663324d (IsA coach person_who_coache_other_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coach is a kind of carriage", "pln": ["(: cnet_isa_3d53ddab5e (IsA coach carriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coach is a kind of teacher", "pln": ["(: cnet_isa_a261bb272d (IsA coach teacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coach is a kind of trainer", "pln": ["(: cnet_isa_795e74db81 (IsA coach trainer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coach horse is a kind of draft horse", "pln": ["(: cnet_isa_b2efbf6267 (IsA coach_horse draft_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coach house is a kind of outbuilding", "pln": ["(: cnet_isa_d96ef17acb (IsA coach_house outbuilding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coachbuilder is a kind of craftsman", "pln": ["(: cnet_isa_77c398a8f2 (IsA coachbuilder craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coaching is a kind of employment", "pln": ["(: cnet_isa_c212140fc3 (IsA coaching employment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coachman is a kind of driver", "pln": ["(: cnet_isa_4e2fbb8de3 (IsA coachman driver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coachwhip is a kind of whip snake", "pln": ["(: cnet_isa_165ac4c58d (IsA coachwhip whip_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coadjutor is a kind of assistant", "pln": ["(: cnet_isa_77e80dfa6c (IsA coadjutor assistant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coagulant is a kind of agent", "pln": ["(: cnet_isa_24505021de (IsA coagulant agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coagulase is a kind of enzyme", "pln": ["(: cnet_isa_5245d21c0f (IsA coagulase enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coagulation factor is a kind of plasma protein", "pln": ["(: cnet_isa_e9e1b4ef35 (IsA coagulation_factor plasma_protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coal is a kind of fossil fuel", "pln": ["(: cnet_isa_6e0d012490 (IsA coal fossil_fuel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coal is a kind of vegetable matter", "pln": ["(: cnet_isa_5806daf87e (IsA coal vegetable_matter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coal black is a kind of black", "pln": ["(: cnet_isa_4af18961dc (IsA coal_black black) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coal car is a kind of freight car", "pln": ["(: cnet_isa_7d8c3d5c1a (IsA coal_car freight_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coal chute is a kind of chute", "pln": ["(: cnet_isa_e75282812b (IsA coal_chute chute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coal gas is a kind of fuel", "pln": ["(: cnet_isa_34f98e6a6d (IsA coal_gas fuel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coal house is a kind of shed", "pln": ["(: cnet_isa_b460b1009a (IsA coal_house shed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coal industry is a kind of industry", "pln": ["(: cnet_isa_f26b710e76 (IsA coal_industry industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coal mine is a kind of mine", "pln": ["(: cnet_isa_a5c6534dc7 (IsA coal_mine mine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coal miner is a kind of miner", "pln": ["(: cnet_isa_cc3933377c (IsA coal_miner miner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coal seam is a kind of seam", "pln": ["(: cnet_isa_55f6ebe300 (IsA coal_seam seam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coal shovel is a kind of hand shovel", "pln": ["(: cnet_isa_fa1e77ef42 (IsA coal_shovel hand_shovel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coal tar is a kind of pitch", "pln": ["(: cnet_isa_d8bc6fa427 (IsA coal_tar pitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coalbin is a kind of bin", "pln": ["(: cnet_isa_730ed112f7 (IsA coalbin bin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coalescence is a kind of union", "pln": ["(: cnet_isa_95f4fc3a55 (IsA coalescence union) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coalface is a kind of face", "pln": ["(: cnet_isa_aa02c8f9ab (IsA coalface face) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coalfield is a kind of field", "pln": ["(: cnet_isa_ab85e9def7 (IsA coalfield field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coaling station is a kind of seaport", "pln": ["(: cnet_isa_d156c874b2 (IsA coaling_station seaport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coalition is a kind of union", "pln": ["(: cnet_isa_956a7fe783 (IsA coalition union) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coalman is a kind of deliveryman", "pln": ["(: cnet_isa_dfdffb535c (IsA coalman deliveryman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coaming is a kind of framework", "pln": ["(: cnet_isa_97ffc4e98f (IsA coaming framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coarctation is a kind of narrowing", "pln": ["(: cnet_isa_c06eaa70d1 (IsA coarctation narrowing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coarseness is a kind of inelegance", "pln": ["(: cnet_isa_c71879a5b7 (IsA coarseness inelegance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coarseness is a kind of roughness", "pln": ["(: cnet_isa_2d195d8eb6 (IsA coarseness roughness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coarseness is a kind of expressive style", "pln": ["(: cnet_isa_fbe2fbabff (IsA coarseness expressive_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coast is a kind of view", "pln": ["(: cnet_isa_5da2822398 (IsA coast view) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coast is a kind of slope", "pln": ["(: cnet_isa_d0aae1cd6c (IsA coast slope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coast boykinia is a kind of wildflower", "pln": ["(: cnet_isa_257eee4273 (IsA coast_boykinia wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coast lily is a kind of lily", "pln": ["(: cnet_isa_37124daa9b (IsA coast_lily lily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coast live oak is a kind of live oak", "pln": ["(: cnet_isa_7b04fd9060 (IsA coast_live_oak live_oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coast rhododendron is a kind of rhododendron", "pln": ["(: cnet_isa_fc33f0865d (IsA coast_rhododendron rhododendron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coastal diving bird is a kind of seabird", "pln": ["(: cnet_isa_9298b791e8 (IsA coastal_diving_bird seabird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coastal plain is a kind of land", "pln": ["(: cnet_isa_80ae9b81b6 (IsA coastal_plain land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coastal rein orchid is a kind of rein orchid", "pln": ["(: cnet_isa_2728ac8c95 (IsA coastal_rein_orchid rein_orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coaster is a kind of protective covering", "pln": ["(: cnet_isa_6b5631a0b5 (IsA coaster protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coaster is a kind of mover", "pln": ["(: cnet_isa_c50b6f0b1d (IsA coaster mover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coaster is a kind of resident", "pln": ["(: cnet_isa_242fd0fcaa (IsA coaster resident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coaster brake is a kind of brake", "pln": ["(: cnet_isa_3845873bf1 (IsA coaster_brake brake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coastguard is a kind of military service", "pln": ["(: cnet_isa_c2e521bb8a (IsA coastguard military_service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coastguardsman is a kind of bluejacket", "pln": ["(: cnet_isa_6422eb4ea6 (IsA coastguardsman bluejacket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coastland is a kind of land", "pln": ["(: cnet_isa_9e8c1ad922 (IsA coastland land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coastline is a kind of outline", "pln": ["(: cnet_isa_65e28e4ab1 (IsA coastline outline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coat is a kind of garment", "pln": ["(: cnet_isa_fda0a328e8 (IsA coat garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coat is a kind of hair", "pln": ["(: cnet_isa_827111419f (IsA coat hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coat is a kind of overgarment", "pln": ["(: cnet_isa_5d050dccf1 (IsA coat overgarment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coat button is a kind of button", "pln": ["(: cnet_isa_8eec04618a (IsA coat_button button) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coat closet is a kind of wardrobe", "pln": ["(: cnet_isa_f63951e4ed (IsA coat_closet wardrobe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coat hanger is a kind of inanimate object", "pln": ["(: cnet_isa_243486eade (IsA coat_hanger inanimate_object) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coat hanger is a kind of hanger", "pln": ["(: cnet_isa_d4694975de (IsA coat_hanger hanger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coat of arm is a kind of heraldry", "pln": ["(: cnet_isa_eda317d31c (IsA coat_of_arm heraldry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coat of paint is a kind of coating", "pln": ["(: cnet_isa_6329df33fc (IsA coat_of_paint coating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coat of paint is a kind of paint", "pln": ["(: cnet_isa_7a4a9d149d (IsA coat_of_paint paint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coatdress is a kind of dress", "pln": ["(: cnet_isa_5edbd705cc (IsA coatdress dress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coatee is a kind of coat", "pln": ["(: cnet_isa_1e4c13dcf1 (IsA coatee coat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coati is a kind of procyonid", "pln": ["(: cnet_isa_05da69730d (IsA coati procyonid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coating is a kind of covering", "pln": ["(: cnet_isa_4ddeddf4a3 (IsA coating covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coating is a kind of fabric", "pln": ["(: cnet_isa_4cb93eed55 (IsA coating fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coating is a kind of decorativeness", "pln": ["(: cnet_isa_c2d2a454fc (IsA coating decorativeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coatrack is a kind of rack", "pln": ["(: cnet_isa_b87581e96e (IsA coatrack rack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coattail is a kind of flap", "pln": ["(: cnet_isa_e01be22db5 (IsA coattail flap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coattail effect is a kind of consequence", "pln": ["(: cnet_isa_b038e3f851 (IsA coattail_effect consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coauthor is a kind of writer", "pln": ["(: cnet_isa_559c55d2e1 (IsA coauthor writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coaxial cable is a kind of cable", "pln": ["(: cnet_isa_2f23a91c2f (IsA coaxial_cable cable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cob is a kind of harness horse", "pln": ["(: cnet_isa_b48dc70a0c (IsA cob harness_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cob is a kind of swan", "pln": ["(: cnet_isa_02ed5c0cf6 (IsA cob swan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cobalt is a kind of metallic element", "pln": ["(: cnet_isa_173cda1f3b (IsA cobalt metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cobalt 60 is a kind of cobalt", "pln": ["(: cnet_isa_25e9fd9d1d (IsA cobalt_60 cobalt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cobalt blue is a kind of pigment", "pln": ["(: cnet_isa_592b96e28a (IsA cobalt_blue pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cobaltite is a kind of mineral", "pln": ["(: cnet_isa_552f780243 (IsA cobaltite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cobber is a kind of buddy", "pln": ["(: cnet_isa_a4ea6f6c40 (IsA cobber buddy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cobble is a kind of paving stone", "pln": ["(: cnet_isa_eda4ec65d2 (IsA cobble paving_stone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cobbler is a kind of highball", "pln": ["(: cnet_isa_5ebfe3a826 (IsA cobbler highball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cobbler is a kind of maker", "pln": ["(: cnet_isa_2f9e4e883e (IsA cobbler maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cobbler is a kind of testis", "pln": ["(: cnet_isa_a4284dc007 (IsA cobbler testis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cobbler is a kind of nonsense", "pln": ["(: cnet_isa_814866cfd5 (IsA cobbler nonsense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cobia is a kind of percoid fish", "pln": ["(: cnet_isa_0e1b27b112 (IsA cobia percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cobitidae is a kind of fish family", "pln": ["(: cnet_isa_b0a4183604 (IsA cobitidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cobnut is a kind of hazelnut", "pln": ["(: cnet_isa_08608319e8 (IsA cobnut hazelnut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cobol is a kind of programming language", "pln": ["(: cnet_isa_8269a244c5 (IsA cobol programming_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cobra is a kind of snake", "pln": ["(: cnet_isa_38738ceecb (IsA cobra snake) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cobra is a kind of elapid", "pln": ["(: cnet_isa_aa5d621e59 (IsA cobra elapid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cobweb is a kind of fabric", "pln": ["(: cnet_isa_fafd4aae1b (IsA cobweb fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cobweb is a kind of fibril", "pln": ["(: cnet_isa_1836083a2d (IsA cobweb fibril) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cobweb is a kind of spider web", "pln": ["(: cnet_isa_d255d5f3d2 (IsA cobweb spider_web) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coca is a kind of tree", "pln": ["(: cnet_isa_8c1be266d8 (IsA coca tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coca is a kind of plant product", "pln": ["(: cnet_isa_adecefb737 (IsA coca plant_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coca cola is a kind of soft drink", "pln": ["(: cnet_isa_2274b12068 (IsA coca_cola soft_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coca cola is a kind of cola", "pln": ["(: cnet_isa_c00a41a99a (IsA coca_cola cola) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocaine is a kind of chemical", "pln": ["(: cnet_isa_f511a2695f (IsA cocaine chemical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocaine is a kind of hard drug", "pln": ["(: cnet_isa_2e01b67549 (IsA cocaine hard_drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocaine addict is a kind of drug addict", "pln": ["(: cnet_isa_ac0119d276 (IsA cocaine_addict drug_addict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocaine addiction is a kind of drug addiction", "pln": ["(: cnet_isa_46492b5bb9 (IsA cocaine_addiction drug_addiction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocarboxylase is a kind of coenzyme", "pln": ["(: cnet_isa_d02696dbe6 (IsA cocarboxylase coenzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coccid insect is a kind of homopterous insect", "pln": ["(: cnet_isa_697ae31be0 (IsA coccid_insect homopterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coccidae is a kind of arthropod family", "pln": ["(: cnet_isa_75415a0de4 (IsA coccidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coccidia is a kind of animal order", "pln": ["(: cnet_isa_e5cf2b65ab (IsA coccidia animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coccidioidomycosis is a kind of fungal infection", "pln": ["(: cnet_isa_bfcad935ba (IsA coccidioidomycosis fungal_infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coccidiosis is a kind of infestation", "pln": ["(: cnet_isa_52ae8c8fe1 (IsA coccidiosis infestation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "coccothraustes is a kind of bird genus", "pln": ["(: cnet_isa_2fbedf3b3d (IsA coccothraustes bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coccidium is a kind of sporozoan", "pln": ["(: cnet_isa_c0784c05c7 (IsA coccidium sporozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coccinellidae is a kind of arthropod family", "pln": ["(: cnet_isa_aaaf18b999 (IsA coccinellidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coccobacillus is a kind of eubacteria", "pln": ["(: cnet_isa_390fd0ef0e (IsA coccobacillus eubacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coccoidea is a kind of arthropod family", "pln": ["(: cnet_isa_46a654586b (IsA coccoidea arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coccothrauste is a kind of bird genus", "pln": ["(: cnet_isa_6480e0273c (IsA coccothrauste bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocculus is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_c8e85416d4 (IsA cocculus magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coccus is a kind of eubacteria", "pln": ["(: cnet_isa_ed1e9bab28 (IsA coccus eubacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coccygeal nerve is a kind of spinal nerve", "pln": ["(: cnet_isa_b787e9fbf4 (IsA coccygeal_nerve spinal_nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coccygeal plexus is a kind of nerve plexus", "pln": ["(: cnet_isa_fb8c3dd88d (IsA coccygeal_plexus nerve_plexus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coccygeal vertebra is a kind of vertebra", "pln": ["(: cnet_isa_f207d210ed (IsA coccygeal_vertebra vertebra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coccyx is a kind of bone", "pln": ["(: cnet_isa_8d16d7f7c4 (IsA coccyx bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coccyzus is a kind of bird genus", "pln": ["(: cnet_isa_48debd4dbd (IsA coccyzus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cochimi is a kind of yuman", "pln": ["(: cnet_isa_5e548f0267 (IsA cochimi yuman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cochimi is a kind of hoka", "pln": ["(: cnet_isa_2f24d3e013 (IsA cochimi hoka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cochin is a kind of domestic fowl", "pln": ["(: cnet_isa_cf073968cf (IsA cochin domestic_fowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cochineal is a kind of dye", "pln": ["(: cnet_isa_a13304d8a1 (IsA cochineal dye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cochineal insect is a kind of scale insect", "pln": ["(: cnet_isa_147e0d4533 (IsA cochineal_insect scale_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "cock s eggs is a kind of vine", "pln": ["(: cnet_isa_7a6be575b6 (IsA cock_s_eggs vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cochlea is a kind of tube", "pln": ["(: cnet_isa_10e2fe580e (IsA cochlea tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cochlearia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_2b889474cb (IsA cochlearia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cochlearius is a kind of bird genus", "pln": ["(: cnet_isa_07a02e8547 (IsA cochlearius bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cochon de lait is a kind of pork", "pln": ["(: cnet_isa_0ad3b2ddcf (IsA cochon_de_lait pork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cock s egg is a kind of vine", "pln": ["(: cnet_isa_3c43023f6f (IsA cock_s_egg vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cock is a kind of male chicken", "pln": ["(: cnet_isa_e7197b551a (IsA cock male_chicken) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cock is a kind of bird", "pln": ["(: cnet_isa_41b28c3070 (IsA cock bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cock is a kind of chicken", "pln": ["(: cnet_isa_8d9149fb45 (IsA cock chicken) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cock is a kind of penis", "pln": ["(: cnet_isa_ad403aca2e (IsA cock penis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cock doodle doo is a kind of crow", "pln": ["(: cnet_isa_55b1743367 (IsA cock_doodle_doo crow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cock leekie is a kind of soup", "pln": ["(: cnet_isa_f12c8c7364 (IsA cock_leekie soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cock of rock is a kind of cotinga", "pln": ["(: cnet_isa_c59e61246b (IsA cock_of_rock cotinga) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cock sucking is a kind of fellatio", "pln": ["(: cnet_isa_6c3e2bbfe0 (IsA cock_sucking fellatio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cockade is a kind of decoration", "pln": ["(: cnet_isa_1fd683bcb0 (IsA cockade decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cockaigne is a kind of imaginary place", "pln": ["(: cnet_isa_97a0592823 (IsA cockaigne imaginary_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cockateel is a kind of parrot", "pln": ["(: cnet_isa_54fd734c70 (IsA cockateel parrot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cockatoo is a kind of parrot", "pln": ["(: cnet_isa_a9c16a126d (IsA cockatoo parrot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cockatrice is a kind of mythical monster", "pln": ["(: cnet_isa_552d99aed9 (IsA cockatrice mythical_monster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cockchafer is a kind of melolonthid beetle", "pln": ["(: cnet_isa_6ab94769c0 (IsA cockchafer melolonthid_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cockcroft and walton accelerator is a kind of accelerator", "pln": ["(: cnet_isa_fdc6f0690b (IsA cockcroft_and_walton_accelerator accelerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cocked hat is a kind of hat", "pln": ["(: cnet_isa_4bceb7dc86 (IsA cocked_hat hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocker spaniel is a kind of dog", "pln": ["(: cnet_isa_dfbc7aebbb (IsA cocker_spaniel dog) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocker spaniel is a kind of spaniel", "pln": ["(: cnet_isa_8430e01183 (IsA cocker_spaniel spaniel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cockerel is a kind of cock", "pln": ["(: cnet_isa_a1c78f03b2 (IsA cockerel cock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cockfight is a kind of match", "pln": ["(: cnet_isa_5a0005d27b (IsA cockfight match) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cockfighting is a kind of blood sport", "pln": ["(: cnet_isa_60f367cf6b (IsA cockfighting blood_sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cockhorse is a kind of plaything", "pln": ["(: cnet_isa_7b9f9f445e (IsA cockhorse plaything) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cockle is a kind of bivalve", "pln": ["(: cnet_isa_1e172b4e47 (IsA cockle bivalve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cockle is a kind of shellfish", "pln": ["(: cnet_isa_3d86e4e966 (IsA cockle shellfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocklebur is a kind of weed", "pln": ["(: cnet_isa_8bb59a1c9d (IsA cocklebur weed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cockleshell is a kind of small boat", "pln": ["(: cnet_isa_96f0775c0d (IsA cockleshell small_boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cockloft is a kind of loft", "pln": ["(: cnet_isa_32fb32ecbc (IsA cockloft loft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cockney is a kind of english", "pln": ["(: cnet_isa_4396bc1808 (IsA cockney english) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cockney is a kind of londoner", "pln": ["(: cnet_isa_51a3b09ce1 (IsA cockney londoner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cockpit is a kind of compartment", "pln": ["(: cnet_isa_22882648b5 (IsA cockpit compartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cockpit is a kind of pit", "pln": ["(: cnet_isa_c94e9509ed (IsA cockpit pit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cockpit is a kind of seat", "pln": ["(: cnet_isa_b6c09d5dca (IsA cockpit seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cockroach is a kind of dictyopterous insect", "pln": ["(: cnet_isa_ed72578e21 (IsA cockroach dictyopterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cockroache is a kind of insect", "pln": ["(: cnet_isa_209b29ee97 (IsA cockroache insect) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cockscomb is a kind of cap", "pln": ["(: cnet_isa_d42542c5ce (IsA cockscomb cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cockscomb is a kind of herb", "pln": ["(: cnet_isa_57c2631f69 (IsA cockscomb herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cockspur is a kind of tree", "pln": ["(: cnet_isa_ccd1426108 (IsA cockspur tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cockspur thorn is a kind of hawthorn", "pln": ["(: cnet_isa_4aa3ef6d95 (IsA cockspur_thorn hawthorn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocksucker is a kind of sensualist", "pln": ["(: cnet_isa_605af8d78d (IsA cocksucker sensualist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocktail is a kind of appetizer", "pln": ["(: cnet_isa_5d85c79a8f (IsA cocktail appetizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocktail is a kind of mixed drink", "pln": ["(: cnet_isa_2e9a784763 (IsA cocktail mixed_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocktail dress is a kind of dress", "pln": ["(: cnet_isa_5b5c6f6e85 (IsA cocktail_dress dress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocktail lounge is a kind of barroom", "pln": ["(: cnet_isa_ce47a5b4b7 (IsA cocktail_lounge barroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocktail party is a kind of party", "pln": ["(: cnet_isa_14eeacb21e (IsA cocktail_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocktail sauce is a kind of sauce", "pln": ["(: cnet_isa_271d824e78 (IsA cocktail_sauce sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocktail shaker is a kind of shaker", "pln": ["(: cnet_isa_9631877bd8 (IsA cocktail_shaker shaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coco plum is a kind of fruit tree", "pln": ["(: cnet_isa_3eeeae8534 (IsA coco_plum fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocoa is a kind of beverage", "pln": ["(: cnet_isa_ebc6cc4016 (IsA cocoa beverage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocoa is a kind of foodstuff", "pln": ["(: cnet_isa_a368074dec (IsA cocoa foodstuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocoa butter is a kind of chocolate", "pln": ["(: cnet_isa_6a2c6fef93 (IsA cocoa_butter chocolate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocoa butter is a kind of fat", "pln": ["(: cnet_isa_1c2806363e (IsA cocoa_butter fat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cocoa plum is a kind of edible fruit", "pln": ["(: cnet_isa_92adceb059 (IsA cocoa_plum edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocoa powder is a kind of chocolate", "pln": ["(: cnet_isa_984ffc630f (IsA cocoa_powder chocolate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocobolo is a kind of tree", "pln": ["(: cnet_isa_8bc0539e61 (IsA cocobolo tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coconut is a kind of edible nut", "pln": ["(: cnet_isa_2e4542cf8c (IsA coconut edible_nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coconut is a kind of food", "pln": ["(: cnet_isa_0c008add20 (IsA coconut food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coconut is a kind of palm", "pln": ["(: cnet_isa_0360a3d1d0 (IsA coconut palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coconut cake is a kind of cake", "pln": ["(: cnet_isa_b216fe5618 (IsA coconut_cake cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coconut macaroon is a kind of macaroon", "pln": ["(: cnet_isa_34c5b50074 (IsA coconut_macaroon macaroon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coconut milk is a kind of milk", "pln": ["(: cnet_isa_acbafc3269 (IsA coconut_milk milk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coconut oil is a kind of vegetable oil", "pln": ["(: cnet_isa_53609c8ab3 (IsA coconut_oil vegetable_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocoon is a kind of natural object", "pln": ["(: cnet_isa_ac2ced0621 (IsA cocoon natural_object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocooning is a kind of seclusion", "pln": ["(: cnet_isa_47ba3fe021 (IsA cocooning seclusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocopa is a kind of yuman", "pln": ["(: cnet_isa_bf4fb5cbdc (IsA cocopa yuman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocopah is a kind of hoka", "pln": ["(: cnet_isa_7a1b6fc57a (IsA cocopah hoka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coco is a kind of monocot genus", "pln": ["(: cnet_isa_b0cff5a4d4 (IsA coco monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocotte is a kind of casserole", "pln": ["(: cnet_isa_ab6062ce1b (IsA cocotte casserole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocozelle is a kind of summer squash", "pln": ["(: cnet_isa_f3b721dff7 (IsA cocozelle summer_squash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocozelle is a kind of marrow", "pln": ["(: cnet_isa_832203e563 (IsA cocozelle marrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cocuswood is a kind of wood", "pln": ["(: cnet_isa_441e077ebf (IsA cocuswood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cod is a kind of gadoid", "pln": ["(: cnet_isa_ccc3ed12b7 (IsA cod gadoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cod is a kind of saltwater fish", "pln": ["(: cnet_isa_626873b2b3 (IsA cod saltwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cod liver oil is a kind of animal oil", "pln": ["(: cnet_isa_f69bee4f55 (IsA cod_liver_oil animal_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cod oil is a kind of cod liver oil", "pln": ["(: cnet_isa_8f94aea15f (IsA cod_oil cod_liver_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "codariocalyx is a kind of rosid dicot genus", "pln": ["(: cnet_isa_649c846669 (IsA codariocalyx rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "code is a kind of coding system", "pln": ["(: cnet_isa_806c4df416 (IsA code coding_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "code is a kind of written communication", "pln": ["(: cnet_isa_46012c5524 (IsA code written_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "code flag is a kind of flag", "pln": ["(: cnet_isa_9524a7f349 (IsA code_flag flag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "code of conduct is a kind of convention", "pln": ["(: cnet_isa_875f57837b (IsA code_of_conduct convention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "codefendant is a kind of defendant", "pln": ["(: cnet_isa_73627597a6 (IsA codefendant defendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "codeine is a kind of analgesic", "pln": ["(: cnet_isa_e5bdb2778f (IsA codeine analgesic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "codeine is a kind of antitussive", "pln": ["(: cnet_isa_de8272efcd (IsA codeine antitussive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "codeine is a kind of opiate", "pln": ["(: cnet_isa_e98475fb8c (IsA codeine opiate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "codetalker is a kind of secret agent", "pln": ["(: cnet_isa_af882d2f42 (IsA codetalker secret_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "codex is a kind of list", "pln": ["(: cnet_isa_99e0c4ba68 (IsA codex list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "codex is a kind of manuscript", "pln": ["(: cnet_isa_9c815c370f (IsA codex manuscript) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "codfish ball is a kind of fish cake", "pln": ["(: cnet_isa_231bd3977b (IsA codfish_ball fish_cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "codger is a kind of old man", "pln": ["(: cnet_isa_7d5bd75f01 (IsA codger old_man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "codiaeum is a kind of rosid dicot genus", "pln": ["(: cnet_isa_d9c03711d4 (IsA codiaeum rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "codicil is a kind of appendix", "pln": ["(: cnet_isa_d4eec4914a (IsA codicil appendix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "codification is a kind of systematization", "pln": ["(: cnet_isa_387a7f152d (IsA codification systematization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coding system is a kind of writing", "pln": ["(: cnet_isa_54f55d9e92 (IsA coding_system writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "codling is a kind of cod", "pln": ["(: cnet_isa_7dea44ac0a (IsA codling cod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "codling moth is a kind of tortricid", "pln": ["(: cnet_isa_0999974247 (IsA codling_moth tortricid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "codon is a kind of sequence", "pln": ["(: cnet_isa_82b462cc9f (IsA codon sequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "codpiece is a kind of flap", "pln": ["(: cnet_isa_e175f52e1f (IsA codpiece flap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coeducation is a kind of education", "pln": ["(: cnet_isa_7ccb55f0e0 (IsA coeducation education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coefficient is a kind of constant", "pln": ["(: cnet_isa_b95cfb5853 (IsA coefficient constant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coefficient of concordance is a kind of kendall test", "pln": ["(: cnet_isa_d6cbe7ef1c (IsA coefficient_of_concordance kendall_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coefficient of elasticity is a kind of modulus", "pln": ["(: cnet_isa_02378cc72a (IsA coefficient_of_elasticity modulus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coefficient of expansion is a kind of coefficient", "pln": ["(: cnet_isa_1986f814e1 (IsA coefficient_of_expansion coefficient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coefficient of friction is a kind of coefficient", "pln": ["(: cnet_isa_21fdb08430 (IsA coefficient_of_friction coefficient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coefficient of mutual induction is a kind of coefficient", "pln": ["(: cnet_isa_ee95d7f8a4 (IsA coefficient_of_mutual_induction coefficient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coefficient of reflection is a kind of coefficient", "pln": ["(: cnet_isa_e4e39b0e25 (IsA coefficient_of_reflection coefficient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coefficient of self induction is a kind of coefficient", "pln": ["(: cnet_isa_6ff009c864 (IsA coefficient_of_self_induction coefficient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coefficient of viscosity is a kind of coefficient", "pln": ["(: cnet_isa_412ea98ac2 (IsA coefficient_of_viscosity coefficient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coelacanth is a kind of crossopterygian", "pln": ["(: cnet_isa_0df75abf85 (IsA coelacanth crossopterygian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coelenterate is a kind of invertebrate", "pln": ["(: cnet_isa_9f8d2d4543 (IsA coelenterate invertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coelenterate family is a kind of family", "pln": ["(: cnet_isa_4d33c0400f (IsA coelenterate_family family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coelenterate genus is a kind of genus", "pln": ["(: cnet_isa_ad5b5517ce (IsA coelenterate_genus genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coelenteron is a kind of sac", "pln": ["(: cnet_isa_03c053f363 (IsA coelenteron sac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coeloglossum is a kind of monocot genus", "pln": ["(: cnet_isa_ceedbc41e2 (IsA coeloglossum monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coelogyne is a kind of orchid", "pln": ["(: cnet_isa_4feca0f546 (IsA coelogyne orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coelophysis is a kind of ceratosaur", "pln": ["(: cnet_isa_1e2598caff (IsA coelophysis ceratosaur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coelostat is a kind of optical device", "pln": ["(: cnet_isa_4d06a1b7f6 (IsA coelostat optical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coenzyme is a kind of coenzyme", "pln": ["(: cnet_isa_a4c195ba94 (IsA coenzyme coenzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coenzyme is a kind of molecule", "pln": ["(: cnet_isa_7c3c294eea (IsA coenzyme molecule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coercion is a kind of enforcement", "pln": ["(: cnet_isa_946ce0214f (IsA coercion enforcement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coereba is a kind of bird genus", "pln": ["(: cnet_isa_a0c5158037 (IsA coereba bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coerebidae is a kind of bird family", "pln": ["(: cnet_isa_a277daeba7 (IsA coerebidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coeur d alene is a kind of native american", "pln": ["(: cnet_isa_d12cd2d60f (IsA coeur_d_alene native_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coeval is a kind of people", "pln": ["(: cnet_isa_8cc89d257b (IsA coeval people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coexistence is a kind of being", "pln": ["(: cnet_isa_6717ef442c (IsA coexistence being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coextension is a kind of extension", "pln": ["(: cnet_isa_bb8062c0ad (IsA coextension extension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cofactor is a kind of compound", "pln": ["(: cnet_isa_a34a9b2216 (IsA cofactor compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffea is a kind of asterid dicot genus", "pln": ["(: cnet_isa_70bd3c3f57 (IsA coffea asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffee is a kind of acquired taste", "pln": ["(: cnet_isa_f71158862a (IsA coffee acquired_taste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffee is a kind of addictive substance", "pln": ["(: cnet_isa_4bf19920d6 (IsA coffee addictive_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffee is a kind of beverage", "pln": ["(: cnet_isa_f9114a6af4 (IsA coffee beverage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffee is a kind of bushy plant", "pln": ["(: cnet_isa_50706258ac (IsA coffee bushy_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffee is a kind of good after dinner drink", "pln": ["(: cnet_isa_52ef5b6540 (IsA coffee good_after_dinner_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffee is a kind of popular drink", "pln": ["(: cnet_isa_85c5557c4a (IsA coffee popular_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffee is a kind of stimulant", "pln": ["(: cnet_isa_cca1e995c1 (IsA coffee stimulant) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffee is a kind of tree", "pln": ["(: cnet_isa_3660126240 (IsA coffee tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffee bean is a kind of seed", "pln": ["(: cnet_isa_a2dc1e84ac (IsA coffee_bean seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffee blight is a kind of blight", "pln": ["(: cnet_isa_44c425dc7f (IsA coffee_blight blight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffee break is a kind of bite", "pln": ["(: cnet_isa_34e51f55ff (IsA coffee_break bite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffee can is a kind of can", "pln": ["(: cnet_isa_12c43a087f (IsA coffee_can can) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffee cup is a kind of cup", "pln": ["(: cnet_isa_140b93fd3c (IsA coffee_cup cup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffee fern is a kind of cliff brake", "pln": ["(: cnet_isa_d1d0058aee (IsA coffee_fern cliff_brake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffee filter is a kind of filter", "pln": ["(: cnet_isa_db30668b19 (IsA coffee_filter filter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffee fungus is a kind of fungus", "pln": ["(: cnet_isa_816b1f5da0 (IsA coffee_fungus fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffee ground is a kind of ground", "pln": ["(: cnet_isa_3f6aa118c4 (IsA coffee_ground ground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffee liqueur is a kind of liqueur", "pln": ["(: cnet_isa_3b17027a36 (IsA coffee_liqueur liqueur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffee maker is a kind of kitchen appliance", "pln": ["(: cnet_isa_15c7f437bc (IsA coffee_maker kitchen_appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffee mill is a kind of mill", "pln": ["(: cnet_isa_ca9f20fa33 (IsA coffee_mill mill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffee mug is a kind of mug", "pln": ["(: cnet_isa_8118cfcd5a (IsA coffee_mug mug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffee ring is a kind of coffeecake", "pln": ["(: cnet_isa_6f64dcb45a (IsA coffee_ring coffeecake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffee senna is a kind of senna", "pln": ["(: cnet_isa_ce9db0d6bf (IsA coffee_senna senna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffee stall is a kind of stall", "pln": ["(: cnet_isa_30cf0f429d (IsA coffee_stall stall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffee substitute is a kind of coffee", "pln": ["(: cnet_isa_cfbf518dd3 (IsA coffee_substitute coffee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffee table is a kind of table", "pln": ["(: cnet_isa_8b853fd939 (IsA coffee_table table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffee table book is a kind of book", "pln": ["(: cnet_isa_7ab9fb41e4 (IsA coffee_table_book book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffee urn is a kind of urn", "pln": ["(: cnet_isa_d6c910706d (IsA coffee_urn urn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffeeberry is a kind of buckthorn", "pln": ["(: cnet_isa_81116b3ce9 (IsA coffeeberry buckthorn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffeecake is a kind of cake", "pln": ["(: cnet_isa_afce877df1 (IsA coffeecake cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffeepot is a kind of pot", "pln": ["(: cnet_isa_8f413da0b9 (IsA coffeepot pot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffer is a kind of chest", "pln": ["(: cnet_isa_017a9e205d (IsA coffer chest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffer is a kind of panel", "pln": ["(: cnet_isa_c9d262d956 (IsA coffer panel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coffey still is a kind of still", "pln": ["(: cnet_isa_63d6303a75 (IsA coffey_still still) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coffin is a kind of box", "pln": ["(: cnet_isa_9546896132 (IsA coffin box) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cofounder is a kind of founder", "pln": ["(: cnet_isa_700656d12a (IsA cofounder founder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cog is a kind of tooth", "pln": ["(: cnet_isa_248d6ee883 (IsA cog tooth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cog is a kind of subordinate", "pln": ["(: cnet_isa_8be2d347db (IsA cog subordinate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cog railway is a kind of railway", "pln": ["(: cnet_isa_9b2e0a0bbc (IsA cog_railway railway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cogency is a kind of credibility", "pln": ["(: cnet_isa_d906adca0a (IsA cogency credibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cogency is a kind of relevance", "pln": ["(: cnet_isa_bd16b41cb5 (IsA cogency relevance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cogitation is a kind of contemplation", "pln": ["(: cnet_isa_3009fe9beb (IsA cogitation contemplation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cogitation is a kind of idea", "pln": ["(: cnet_isa_fabcdf5611 (IsA cogitation idea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cognac is a kind of brandy", "pln": ["(: cnet_isa_7db0ba5c45 (IsA cognac brandy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cognate is a kind of word", "pln": ["(: cnet_isa_ebd5fecb7e (IsA cognate word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cognition is a kind of psychological feature", "pln": ["(: cnet_isa_fbe40add05 (IsA cognition psychological_feature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cognitive factor is a kind of cognition", "pln": ["(: cnet_isa_0d2e034c1c (IsA cognitive_factor cognition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cognitive neuroscience is a kind of neuroscience", "pln": ["(: cnet_isa_c0c8c8ba01 (IsA cognitive_neuroscience neuroscience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cognitive neuroscientist is a kind of cognitive scientist", "pln": ["(: cnet_isa_6ceb87aa79 (IsA cognitive_neuroscientist cognitive_scientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cognitive psychology is a kind of psychology", "pln": ["(: cnet_isa_b1997fccdf (IsA cognitive_psychology psychology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cognitive science is a kind of science", "pln": ["(: cnet_isa_6a8f5734d1 (IsA cognitive_science science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cognitive scientist is a kind of scientist", "pln": ["(: cnet_isa_028dc4d40b (IsA cognitive_scientist scientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cognitive state is a kind of psychological state", "pln": ["(: cnet_isa_b76ada7e31 (IsA cognitive_state psychological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cognizance is a kind of knowing", "pln": ["(: cnet_isa_524cac5e4c (IsA cognizance knowing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cognizance is a kind of perception", "pln": ["(: cnet_isa_1879e9bcfb (IsA cognizance perception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cohabitation is a kind of inhabitancy", "pln": ["(: cnet_isa_298ae33234 (IsA cohabitation inhabitancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coherence is a kind of comprehensibility", "pln": ["(: cnet_isa_0c395531ed (IsA coherence comprehensibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coherence is a kind of connection", "pln": ["(: cnet_isa_9c38d463eb (IsA coherence connection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cohesion is a kind of growth", "pln": ["(: cnet_isa_5510ed001d (IsA cohesion growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cohesion is a kind of force", "pln": ["(: cnet_isa_dd79e23a75 (IsA cohesion force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cohesiveness is a kind of viscosity", "pln": ["(: cnet_isa_5cb50e2dff (IsA cohesiveness viscosity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coho is a kind of salmon", "pln": ["(: cnet_isa_b6e97f923f (IsA coho salmon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cohort is a kind of company", "pln": ["(: cnet_isa_cb4d42aad2 (IsA cohort company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cohort is a kind of set", "pln": ["(: cnet_isa_8b10f7afca (IsA cohort set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cohune nut is a kind of seed", "pln": ["(: cnet_isa_0bf537161e (IsA cohune_nut seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cohune nut oil is a kind of oil", "pln": ["(: cnet_isa_3a129d96dc (IsA cohune_nut_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cohune palm is a kind of feather palm", "pln": ["(: cnet_isa_e81221cc62 (IsA cohune_palm feather_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coif is a kind of skullcap", "pln": ["(: cnet_isa_23a1bec6ac (IsA coif skullcap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coiffeur is a kind of hairdresser", "pln": ["(: cnet_isa_a69ae1522b (IsA coiffeur hairdresser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coiffeuse is a kind of hairdresser", "pln": ["(: cnet_isa_bc8c3abeca (IsA coiffeuse hairdresser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coigue is a kind of southern beech", "pln": ["(: cnet_isa_8240c1c48e (IsA coigue southern_beech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coil is a kind of shape", "pln": ["(: cnet_isa_86802fc3ee (IsA coil shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coil is a kind of contraceptive", "pln": ["(: cnet_isa_19a56c2a1e (IsA coil contraceptive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coil is a kind of reactor", "pln": ["(: cnet_isa_c26b697bb3 (IsA coil reactor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coil is a kind of structure", "pln": ["(: cnet_isa_f019aa408e (IsA coil structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coil is a kind of transformer", "pln": ["(: cnet_isa_862a98070a (IsA coil transformer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coil is a kind of tube", "pln": ["(: cnet_isa_c59042798f (IsA coil tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coil is a kind of round shape", "pln": ["(: cnet_isa_8c92a15be6 (IsA coil round_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coil spring is a kind of spring", "pln": ["(: cnet_isa_4726d1ba9b (IsA coil_spring spring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coin is a kind of metal disc", "pln": ["(: cnet_isa_969385f999 (IsA coin metal_disc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coin is a kind of coinage", "pln": ["(: cnet_isa_5fcdf59751 (IsA coin coinage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coin box is a kind of receptacle", "pln": ["(: cnet_isa_0a48f37183 (IsA coin_box receptacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coin collection is a kind of collection", "pln": ["(: cnet_isa_094b5784d9 (IsA coin_collection collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coin silver is a kind of silver", "pln": ["(: cnet_isa_19b5d0f45c (IsA coin_silver silver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coin slot is a kind of slot", "pln": ["(: cnet_isa_71c843cf4c (IsA coin_slot slot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coinage is a kind of currency", "pln": ["(: cnet_isa_1a467539a1 (IsA coinage currency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coincidence is a kind of position", "pln": ["(: cnet_isa_7624ab1f23 (IsA coincidence position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coincidence is a kind of accident", "pln": ["(: cnet_isa_59ccc6db34 (IsA coincidence accident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coiner is a kind of forger", "pln": ["(: cnet_isa_98b5c7c639 (IsA coiner forger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coiner is a kind of generator", "pln": ["(: cnet_isa_e73840e544 (IsA coiner generator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coiner is a kind of skilled worker", "pln": ["(: cnet_isa_ded8e67819 (IsA coiner skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coin is a kind of small metal disk", "pln": ["(: cnet_isa_fa61fa30d7 (IsA coin small_metal_disk) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coinsurance is a kind of insurance", "pln": ["(: cnet_isa_25d765c711 (IsA coinsurance insurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coir is a kind of fiber", "pln": ["(: cnet_isa_b1968f1777 (IsA coir fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coitus interruptus is a kind of birth control", "pln": ["(: cnet_isa_f7e27ff843 (IsA coitus_interruptus birth_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coke is a kind of beverage", "pln": ["(: cnet_isa_ad91a80641 (IsA coke beverage) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coke is a kind of soda", "pln": ["(: cnet_isa_76bdb1c70a (IsA coke soda) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coke is a kind of cocaine", "pln": ["(: cnet_isa_89e0feed86 (IsA coke cocaine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coke is a kind of fuel", "pln": ["(: cnet_isa_30b3a51367 (IsA coke fuel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coke and pepsi is a kind of competitor", "pln": ["(: cnet_isa_5267f5405e (IsA coke_and_pepsi competitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coke float is a kind of ice cream soda", "pln": ["(: cnet_isa_2fb41b3603 (IsA coke_float ice_cream_soda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "col is a kind of pass", "pln": ["(: cnet_isa_afaa377e1d (IsA col pass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cola is a kind of soft drink", "pln": ["(: cnet_isa_a7d364f5da (IsA cola soft_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cola is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_9c7d7f43a1 (IsA cola dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cola extract is a kind of flavorer", "pln": ["(: cnet_isa_3085044940 (IsA cola_extract flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colander is a kind of strainer", "pln": ["(: cnet_isa_e31244ec7a (IsA colander strainer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colapte is a kind of bird genus", "pln": ["(: cnet_isa_f302e6e761 (IsA colapte bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colbert is a kind of sauce", "pln": ["(: cnet_isa_1723b6e637 (IsA colbert sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colchicaceae is a kind of liliid monocot family", "pln": ["(: cnet_isa_e1e4cad0ee (IsA colchicaceae liliid_monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colchicine is a kind of analgesic", "pln": ["(: cnet_isa_2088d94c95 (IsA colchicine analgesic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colchicum is a kind of liliid monocot genus", "pln": ["(: cnet_isa_d053cbab19 (IsA colchicum liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cold is a kind of sickness", "pln": ["(: cnet_isa_47c2390274 (IsA cold sickness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cold is a kind of temperature", "pln": ["(: cnet_isa_4253d0432c (IsA cold temperature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cold is a kind of communicable disease", "pln": ["(: cnet_isa_79c48755c1 (IsA cold communicable_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cold is a kind of respiratory disease", "pln": ["(: cnet_isa_e64d7ac9fc (IsA cold respiratory_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cold cathode is a kind of cathode", "pln": ["(: cnet_isa_1ba941b8e8 (IsA cold_cathode cathode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cold cereal is a kind of cereal", "pln": ["(: cnet_isa_9244b2fb53 (IsA cold_cereal cereal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cold chisel is a kind of chisel", "pln": ["(: cnet_isa_59417531c0 (IsA cold_chisel chisel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cold comfort is a kind of consolation", "pln": ["(: cnet_isa_8b2ed94122 (IsA cold_comfort consolation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cold cream is a kind of cream", "pln": ["(: cnet_isa_bcd6ba844c (IsA cold_cream cream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cold cut is a kind of meat", "pln": ["(: cnet_isa_413beb5c26 (IsA cold_cut meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cold duck is a kind of sparkling wine", "pln": ["(: cnet_isa_6ad507f547 (IsA cold_duck sparkling_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cold feet is a kind of timidity", "pln": ["(: cnet_isa_4fa62b722e (IsA cold_feet timidity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cold fish is a kind of unpleasant person", "pln": ["(: cnet_isa_472ab479b8 (IsA cold_fish unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cold frame is a kind of protective covering", "pln": ["(: cnet_isa_fc18eb6857 (IsA cold_frame protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cold front is a kind of front", "pln": ["(: cnet_isa_9392169544 (IsA cold_front front) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cold fusion is a kind of fusion", "pln": ["(: cnet_isa_769fe4d252 (IsA cold_fusion fusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cold medicine is a kind of medicine", "pln": ["(: cnet_isa_b9f89ee89a (IsA cold_medicine medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cold medium is a kind of medium", "pln": ["(: cnet_isa_92cf5bcc11 (IsA cold_medium medium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cold rubber is a kind of rubber", "pln": ["(: cnet_isa_c0a95f9afc (IsA cold_rubber rubber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cold spell is a kind of while", "pln": ["(: cnet_isa_1fcaf39250 (IsA cold_spell while) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cold storage is a kind of storage", "pln": ["(: cnet_isa_596c20af99 (IsA cold_storage storage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cold storage is a kind of abeyance", "pln": ["(: cnet_isa_f8d1ce081d (IsA cold_storage abeyance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cold sweat is a kind of physiological state", "pln": ["(: cnet_isa_767b79cfe1 (IsA cold_sweat physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cold turkey is a kind of withdrawal", "pln": ["(: cnet_isa_87952667d0 (IsA cold_turkey withdrawal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cold turkey is a kind of expression", "pln": ["(: cnet_isa_182739de7a (IsA cold_turkey expression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cold war is a kind of hostility", "pln": ["(: cnet_isa_57163aed43 (IsA cold_war hostility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cold water is a kind of disparagement", "pln": ["(: cnet_isa_1d842e8567 (IsA cold_water disparagement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cold water flat is a kind of apartment", "pln": ["(: cnet_isa_3208c5a210 (IsA cold_water_flat apartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cold wave is a kind of wave", "pln": ["(: cnet_isa_8038ed671d (IsA cold_wave wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cold weather is a kind of weather", "pln": ["(: cnet_isa_871ceb148b (IsA cold_weather weather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coldness is a kind of temperature", "pln": ["(: cnet_isa_634e2c0ae4 (IsA coldness temperature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coldness is a kind of unemotionality", "pln": ["(: cnet_isa_b4b23b2a5f (IsA coldness unemotionality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coldness is a kind of vasoconstrictor", "pln": ["(: cnet_isa_1b4ebb7950 (IsA coldness vasoconstrictor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coleonyx is a kind of reptile genus", "pln": ["(: cnet_isa_055c27423a (IsA coleonyx reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coleoptera is a kind of animal order", "pln": ["(: cnet_isa_5a3aba38b9 (IsA coleoptera animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coleslaw is a kind of salad", "pln": ["(: cnet_isa_cb23c62061 (IsA coleslaw salad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coleus is a kind of herb", "pln": ["(: cnet_isa_f3de6d9d5c (IsA coleus herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colic is a kind of pain", "pln": ["(: cnet_isa_c200e6aff6 (IsA colic pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colic artery is a kind of artery", "pln": ["(: cnet_isa_73968f8885 (IsA colic_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colic vein is a kind of vein", "pln": ["(: cnet_isa_a2587e1041 (IsA colic_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colicroot is a kind of liliaceous plant", "pln": ["(: cnet_isa_1e3756a287 (IsA colicroot liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colinus is a kind of bird genus", "pln": ["(: cnet_isa_e67c11b336 (IsA colinus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coliphage is a kind of bacteriophage", "pln": ["(: cnet_isa_d40eea98c9 (IsA coliphage bacteriophage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colitis is a kind of inflammation", "pln": ["(: cnet_isa_515ea0589e (IsA colitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collaboration is a kind of cooperation", "pln": ["(: cnet_isa_466eccaee4 (IsA collaboration cooperation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collaborator is a kind of associate", "pln": ["(: cnet_isa_1338e6878c (IsA collaborator associate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collaborator is a kind of traitor", "pln": ["(: cnet_isa_ab1463b7eb (IsA collaborator traitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collage is a kind of ikon", "pln": ["(: cnet_isa_0757db7401 (IsA collage ikon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collage is a kind of paste up", "pln": ["(: cnet_isa_15796a3811 (IsA collage paste_up) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collage is a kind of collection", "pln": ["(: cnet_isa_03840e7956 (IsA collage collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collage film is a kind of movie", "pln": ["(: cnet_isa_2f3b70c0b4 (IsA collage_film movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collagen is a kind of scleroprotein", "pln": ["(: cnet_isa_1f208e4c3b (IsA collagen scleroprotein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collagenase is a kind of enzyme", "pln": ["(: cnet_isa_7db06895d2 (IsA collagenase enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collapse is a kind of happening", "pln": ["(: cnet_isa_1d270a7c25 (IsA collapse happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collapse is a kind of illness", "pln": ["(: cnet_isa_e81a46d3c2 (IsA collapse illness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collar is a kind of restraint", "pln": ["(: cnet_isa_c40199aa5d (IsA collar restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collar is a kind of band", "pln": ["(: cnet_isa_157f025919 (IsA collar band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collar is a kind of hoop", "pln": ["(: cnet_isa_f4b0e20560 (IsA collar hoop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collar is a kind of neckpiece", "pln": ["(: cnet_isa_f66be69f9f (IsA collar neckpiece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collar blight is a kind of blight", "pln": ["(: cnet_isa_94a80149c4 (IsA collar_blight blight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collard is a kind of kale", "pln": ["(: cnet_isa_f2fe33e63b (IsA collard kale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collared lizard is a kind of iguanid", "pln": ["(: cnet_isa_a59b7c8730 (IsA collared_lizard iguanid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collared peccary is a kind of peccary", "pln": ["(: cnet_isa_1e292443fe (IsA collared_peccary peccary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collared pika is a kind of pika", "pln": ["(: cnet_isa_73c25b2940 (IsA collared_pika pika) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collateral is a kind of security interest", "pln": ["(: cnet_isa_c3c90a1fa5 (IsA collateral security_interest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collateral damage is a kind of fatal accident", "pln": ["(: cnet_isa_e924834ed5 (IsA collateral_damage fatal_accident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collation is a kind of collection", "pln": ["(: cnet_isa_5b1244622c (IsA collation collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collation is a kind of comparison", "pln": ["(: cnet_isa_8038682cfa (IsA collation comparison) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colleague is a kind of associate", "pln": ["(: cnet_isa_cf2f0713c2 (IsA colleague associate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collect is a kind of prayer", "pln": ["(: cnet_isa_82ac4fe583 (IsA collect prayer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collect call is a kind of call", "pln": ["(: cnet_isa_de9e0a58f2 (IsA collect_call call) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "collectible is a kind of curio", "pln": ["(: cnet_isa_37aeeab8b2 (IsA collectible curio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collection is a kind of grouping", "pln": ["(: cnet_isa_ea455a6299 (IsA collection grouping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collection is a kind of publication", "pln": ["(: cnet_isa_0b1383e7c0 (IsA collection publication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collection is a kind of group", "pln": ["(: cnet_isa_e25c57b808 (IsA collection group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "collective is a kind of enterprise", "pln": ["(: cnet_isa_d91f7002f7 (IsA collective enterprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collective bargaining is a kind of negotiation", "pln": ["(: cnet_isa_d2cea78cff (IsA collective_bargaining negotiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collective farm is a kind of collective", "pln": ["(: cnet_isa_b05c795878 (IsA collective_farm collective) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collective noun is a kind of noun", "pln": ["(: cnet_isa_a066d495da (IsA collective_noun noun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collective security is a kind of peace", "pln": ["(: cnet_isa_66e4eff14f (IsA collective_security peace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collectivism is a kind of political orientation", "pln": ["(: cnet_isa_31713cb309 (IsA collectivism political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collectivist is a kind of socialist", "pln": ["(: cnet_isa_ba5bfda133 (IsA collectivist socialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collectivization is a kind of constitution", "pln": ["(: cnet_isa_fa619c257a (IsA collectivization constitution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collector s item is a kind of curio", "pln": ["(: cnet_isa_49c246322f (IsA collector_s_item curio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collector is a kind of electrode", "pln": ["(: cnet_isa_a39833057e (IsA collector electrode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collector is a kind of crater", "pln": ["(: cnet_isa_fa30c53c5f (IsA collector crater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collector is a kind of person", "pln": ["(: cnet_isa_07934262f0 (IsA collector person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collector is a kind of worker", "pln": ["(: cnet_isa_284e98d5a3 (IsA collector worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colleen is a kind of girl", "pln": ["(: cnet_isa_13138dfdfb (IsA colleen girl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "college is a kind of educational institution", "pln": ["(: cnet_isa_23784a0be7 (IsA college educational_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "college is a kind of place", "pln": ["(: cnet_isa_37476eed46 (IsA college place) (STV 1.0 0.9763))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "college is a kind of place of learning", "pln": ["(: cnet_isa_79d867689e (IsA college place_of_learning) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "college is a kind of school", "pln": ["(: cnet_isa_c3f725095c (IsA college school) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "college is a kind of building complex", "pln": ["(: cnet_isa_9ac52f8f53 (IsA college building_complex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "college is a kind of body", "pln": ["(: cnet_isa_2c8ceffd4b (IsA college body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "college level is a kind of grade", "pln": ["(: cnet_isa_592b5fc63d (IsA college_level grade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "college student is a kind of student attending college", "pln": ["(: cnet_isa_5ed74168f7 (IsA college_student student_attending_college) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "college student is a kind of collegian", "pln": ["(: cnet_isa_70077f617e (IsA college_student collegian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collegian is a kind of student", "pln": ["(: cnet_isa_5d4316322b (IsA collegian student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collembola is a kind of animal order", "pln": ["(: cnet_isa_47c1ba8d9e (IsA collembola animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collembolan is a kind of insect", "pln": ["(: cnet_isa_128eb52f4e (IsA collembolan insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collet is a kind of band", "pln": ["(: cnet_isa_7dc311fef0 (IsA collet band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collet is a kind of chuck", "pln": ["(: cnet_isa_ad995e1123 (IsA collet chuck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collider is a kind of accelerator", "pln": ["(: cnet_isa_d7a8b46272 (IsA collider accelerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collie is a kind of shepherd dog", "pln": ["(: cnet_isa_37be9190e1 (IsA collie shepherd_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colliery is a kind of workplace", "pln": ["(: cnet_isa_425e0ae349 (IsA colliery workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colligation is a kind of association", "pln": ["(: cnet_isa_6681b46d9d (IsA colligation association) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collimation is a kind of adjustment", "pln": ["(: cnet_isa_a1057bc7fa (IsA collimation adjustment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "collimator is a kind of optical device", "pln": ["(: cnet_isa_d2b20bc195 (IsA collimator optical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "collimator is a kind of telescope", "pln": ["(: cnet_isa_c14f979bd8 (IsA collimator telescope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collin is a kind of highball", "pln": ["(: cnet_isa_3969280ea9 (IsA collin highball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collinsia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_aa01218cd8 (IsA collinsia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collinsonia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_9e5b5f9235 (IsA collinsonia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collision is a kind of dispute", "pln": ["(: cnet_isa_d95a3c1c0d (IsA collision dispute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collision is a kind of accident", "pln": ["(: cnet_isa_2fac69ac06 (IsA collision accident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collision is a kind of contact", "pln": ["(: cnet_isa_358f1093e3 (IsA collision contact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collision course is a kind of course", "pln": ["(: cnet_isa_cc55bd9df0 (IsA collision_course course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collision course is a kind of path", "pln": ["(: cnet_isa_e06c7d9841 (IsA collision_course path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collocalia is a kind of bird genus", "pln": ["(: cnet_isa_bb189e2572 (IsA collocalia bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collocation is a kind of language unit", "pln": ["(: cnet_isa_2bdb318ae1 (IsA collocation language_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collodion is a kind of solution", "pln": ["(: cnet_isa_8a1ce73be4 (IsA collodion solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colloid is a kind of mixture", "pln": ["(: cnet_isa_6559756aa5 (IsA colloid mixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colloquialism is a kind of formulation", "pln": ["(: cnet_isa_1a60a0857b (IsA colloquialism formulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colloquium is a kind of address", "pln": ["(: cnet_isa_4c96db9e8f (IsA colloquium address) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colloquium is a kind of conference", "pln": ["(: cnet_isa_51a489ac78 (IsA colloquium conference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colloquy is a kind of conference", "pln": ["(: cnet_isa_30c9d10853 (IsA colloquy conference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colloquy is a kind of conversation", "pln": ["(: cnet_isa_2471c7689d (IsA colloquy conversation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collotype is a kind of planographic printing", "pln": ["(: cnet_isa_155be7dc0e (IsA collotype planographic_printing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "collusion is a kind of agreement", "pln": ["(: cnet_isa_bd38914bd3 (IsA collusion agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colobus is a kind of old world monkey", "pln": ["(: cnet_isa_be2d2f5bc4 (IsA colobus old_world_monkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colocasia is a kind of monocot genus", "pln": ["(: cnet_isa_1ed70c164e (IsA colocasia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cologne is a kind of perfume", "pln": ["(: cnet_isa_f847ecace8 (IsA cologne perfume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colombian is a kind of south american", "pln": ["(: cnet_isa_429b099712 (IsA colombian south_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colombian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_124794e5b2 (IsA colombian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colombian peso is a kind of colombian monetary unit", "pln": ["(: cnet_isa_d162065abb (IsA colombian_peso colombian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colon is a kind of large intestine", "pln": ["(: cnet_isa_05f3647e5e (IsA colon large_intestine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colon is a kind of punctuation", "pln": ["(: cnet_isa_28d6d5330b (IsA colon punctuation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colon is a kind of costa rican monetary unit", "pln": ["(: cnet_isa_305fbb3ea5 (IsA colon costa_rican_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colon is a kind of el salvadoran monetary unit", "pln": ["(: cnet_isa_09364ba70e (IsA colon el_salvadoran_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colon cancer is a kind of carcinoma", "pln": ["(: cnet_isa_1be6e5feea (IsA colon_cancer carcinoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colonel is a kind of commissioned military officer", "pln": ["(: cnet_isa_58f8694e92 (IsA colonel commissioned_military_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colonial is a kind of resident", "pln": ["(: cnet_isa_714f31097b (IsA colonial resident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colonialism is a kind of exploitation", "pln": ["(: cnet_isa_e10cb72395 (IsA colonialism exploitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colonialist is a kind of believer", "pln": ["(: cnet_isa_624d9d08ea (IsA colonialist believer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colonic is a kind of colonic irrigation", "pln": ["(: cnet_isa_6014d09bb3 (IsA colonic colonic_irrigation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "colonic irrigation is a kind of enema", "pln": ["(: cnet_isa_584586e5c5 (IsA colonic_irrigation enema) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colonization is a kind of constitution", "pln": ["(: cnet_isa_5aebafd3c1 (IsA colonization constitution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "colonizer is a kind of founder", "pln": ["(: cnet_isa_08eef21ad0 (IsA colonizer founder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colonnade is a kind of structure", "pln": ["(: cnet_isa_158e4dc772 (IsA colonnade structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colonoscope is a kind of endoscope", "pln": ["(: cnet_isa_e78d6246ff (IsA colonoscope endoscope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colonoscopy is a kind of endoscopy", "pln": ["(: cnet_isa_d3f4c9ce3c (IsA colonoscopy endoscopy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colony is a kind of biological group", "pln": ["(: cnet_isa_581d5712ba (IsA colony biological_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colony is a kind of body", "pln": ["(: cnet_isa_8147f57c9d (IsA colony body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colony is a kind of geographical area", "pln": ["(: cnet_isa_396397efa7 (IsA colony geographical_area) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colony is a kind of place", "pln": ["(: cnet_isa_768dc0f75a (IsA colony place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colony is a kind of animal group", "pln": ["(: cnet_isa_ba5b7fedfd (IsA colony animal_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colophon is a kind of emblem", "pln": ["(: cnet_isa_093c485587 (IsA colophon emblem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colophony is a kind of natural resin", "pln": ["(: cnet_isa_225f96d514 (IsA colophony natural_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "color is a kind of appearance", "pln": ["(: cnet_isa_75d38189c6 (IsA color appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "color is a kind of interest", "pln": ["(: cnet_isa_b1f3f36f83 (IsA color interest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "color is a kind of timbre", "pln": ["(: cnet_isa_5f1b8fe5ee (IsA color timbre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "color is a kind of visual property", "pln": ["(: cnet_isa_2bedf25636 (IsA color visual_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "color is a kind of kind", "pln": ["(: cnet_isa_8a8f68cbaa (IsA color kind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "color bar is a kind of ideological barrier", "pln": ["(: cnet_isa_646f36a808 (IsA color_bar ideological_barrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "color barrier is a kind of barrier", "pln": ["(: cnet_isa_76476a9572 (IsA color_barrier barrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "color bearer is a kind of soldier", "pln": ["(: cnet_isa_cdee7a4eda (IsA color_bearer soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "color blind person is a kind of person", "pln": ["(: cnet_isa_04abebba04 (IsA color_blind_person person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "color blindness is a kind of birth defect", "pln": ["(: cnet_isa_8e6c219140 (IsA color_blindness birth_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "color blindness is a kind of visual impairment", "pln": ["(: cnet_isa_1a83dd7baf (IsA color_blindness visual_impairment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "color chart is a kind of chart", "pln": ["(: cnet_isa_4097be11f5 (IsA color_chart chart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "color circle is a kind of color chart", "pln": ["(: cnet_isa_b6fad09b8b (IsA color_circle color_chart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "color code is a kind of code", "pln": ["(: cnet_isa_7c76bf2c9f (IsA color_code code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "color constancy is a kind of constancy", "pln": ["(: cnet_isa_fbba438d99 (IsA color_constancy constancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "color guard is a kind of escort", "pln": ["(: cnet_isa_0d13c77bdd (IsA color_guard escort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "color of law is a kind of semblance", "pln": ["(: cnet_isa_a81e1e371a (IsA color_of_law semblance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "color property is a kind of visual property", "pln": ["(: cnet_isa_ddd6b9694b (IsA color_property visual_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "color scheme is a kind of combination", "pln": ["(: cnet_isa_0a61e5c7db (IsA color_scheme combination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "color sergeant is a kind of sergeant", "pln": ["(: cnet_isa_9c17a58e4e (IsA color_sergeant sergeant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "color television is a kind of television", "pln": ["(: cnet_isa_6e1c5481a7 (IsA color_television television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "color tube is a kind of kinescope", "pln": ["(: cnet_isa_5c3bb654ea (IsA color_tube kinescope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "color vision is a kind of sight", "pln": ["(: cnet_isa_838d64f1a9 (IsA color_vision sight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "color wash is a kind of wash", "pln": ["(: cnet_isa_6778552095 (IsA color_wash wash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coloradan is a kind of american", "pln": ["(: cnet_isa_e2d1d0565a (IsA coloradan american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colorado is a kind of place", "pln": ["(: cnet_isa_a40b3ce5a6 (IsA colorado place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "colorado is a kind of state", "pln": ["(: cnet_isa_7cf00756d3 (IsA colorado state) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "colors is a kind of emblem", "pln": ["(: cnet_isa_89e8af6143 (IsA colors emblem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colorado blue spruce is a kind of plant", "pln": ["(: cnet_isa_d0beec9fdf (IsA colorado_blue_spruce plant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colorado potato beetle is a kind of leaf beetle", "pln": ["(: cnet_isa_7e053603fc (IsA colorado_potato_beetle leaf_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colorado river hemp is a kind of sesbania", "pln": ["(: cnet_isa_ab775cb7db (IsA colorado_river_hemp sesbania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colorado spruce is a kind of spruce", "pln": ["(: cnet_isa_0ef5bfe351 (IsA colorado_spruce spruce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coloration is a kind of choice", "pln": ["(: cnet_isa_b6ac698a13 (IsA coloration choice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coloration is a kind of color", "pln": ["(: cnet_isa_5c83f43b96 (IsA coloration color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coloratura is a kind of singing", "pln": ["(: cnet_isa_c53a7bf8c3 (IsA coloratura singing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coloratura is a kind of soprano", "pln": ["(: cnet_isa_72af76d102 (IsA coloratura soprano) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colored hearing is a kind of chromesthesia", "pln": ["(: cnet_isa_4072ae7560 (IsA colored_hearing chromesthesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colorimeter is a kind of measuring instrument", "pln": ["(: cnet_isa_63c7f6cdee (IsA colorimeter measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colorimetry is a kind of quantitative analysis", "pln": ["(: cnet_isa_07dac3c902 (IsA colorimetry quantitative_analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coloring is a kind of change of color", "pln": ["(: cnet_isa_6887513f77 (IsA coloring change_of_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coloring is a kind of foodstuff", "pln": ["(: cnet_isa_66337c9789 (IsA coloring foodstuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coloring book is a kind of picture book", "pln": ["(: cnet_isa_4eba3769fb (IsA coloring_book picture_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coloring material is a kind of material", "pln": ["(: cnet_isa_2335998162 (IsA coloring_material material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colorist is a kind of painter", "pln": ["(: cnet_isa_73a083ac19 (IsA colorist painter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colorlessness is a kind of visual property", "pln": ["(: cnet_isa_cd5c1d6d91 (IsA colorlessness visual_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "color is a kind of emblem", "pln": ["(: cnet_isa_8473312658 (IsA color emblem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "color is a kind of flag", "pln": ["(: cnet_isa_51277354d4 (IsA color flag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colossian is a kind of phrygian", "pln": ["(: cnet_isa_ac305423fa (IsA colossian phrygian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colossus is a kind of important person", "pln": ["(: cnet_isa_c9f3af10c6 (IsA colossus important_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colostomy is a kind of ostomy", "pln": ["(: cnet_isa_161ac72c1e (IsA colostomy ostomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colostrum is a kind of milk", "pln": ["(: cnet_isa_0cc4ac4880 (IsA colostrum milk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "colour supplement is a kind of magazine", "pln": ["(: cnet_isa_69623b56dd (IsA colour_supplement magazine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colourcast is a kind of television program", "pln": ["(: cnet_isa_28d91b0d0c (IsA colourcast television_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "colpitis is a kind of inflammation", "pln": ["(: cnet_isa_c0df941783 (IsA colpitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colpocele is a kind of hernia", "pln": ["(: cnet_isa_5fe343f495 (IsA colpocele hernia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colpocystitis is a kind of inflammation", "pln": ["(: cnet_isa_fcfe0d66fe (IsA colpocystitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colpoxerosis is a kind of disorder", "pln": ["(: cnet_isa_6cd2803be2 (IsA colpoxerosis disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colt is a kind of foal", "pln": ["(: cnet_isa_cc5a49dd48 (IsA colt foal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colt is a kind of male", "pln": ["(: cnet_isa_ac35bc40d8 (IsA colt male) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colter is a kind of wedge", "pln": ["(: cnet_isa_f603e08286 (IsA colter wedge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coltsfoot is a kind of herb", "pln": ["(: cnet_isa_819bf766c3 (IsA coltsfoot herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coluber is a kind of reptile genus", "pln": ["(: cnet_isa_77986dd236 (IsA coluber reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colubrid snake is a kind of snake", "pln": ["(: cnet_isa_0be9f61585 (IsA colubrid_snake snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colubridae is a kind of reptile family", "pln": ["(: cnet_isa_277889ec8b (IsA colubridae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colubrina is a kind of dicot genus", "pln": ["(: cnet_isa_2af92d0ee0 (IsA colubrina dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "columba is a kind of bird genus", "pln": ["(: cnet_isa_3e4be026d7 (IsA columba bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "columbarium is a kind of recess", "pln": ["(: cnet_isa_0c4d4e2a5e (IsA columbarium recess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "columbarium is a kind of vault", "pln": ["(: cnet_isa_afc027bda1 (IsA columbarium vault) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "columbia tiger lily is a kind of lily", "pln": ["(: cnet_isa_0be0225898 (IsA columbia_tiger_lily lily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "columbian mammoth is a kind of mammoth", "pln": ["(: cnet_isa_ad29d18ad2 (IsA columbian_mammoth mammoth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "columbidae is a kind of bird family", "pln": ["(: cnet_isa_f149afee76 (IsA columbidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "columbiform bird is a kind of gallinaceous bird", "pln": ["(: cnet_isa_bde8e82afb (IsA columbiform_bird gallinaceous_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "columbiforme is a kind of animal order", "pln": ["(: cnet_isa_128106f298 (IsA columbiforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "columbine is a kind of flower", "pln": ["(: cnet_isa_c0a3879187 (IsA columbine flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "columbite tantalite is a kind of mineral", "pln": ["(: cnet_isa_5f00ce057d (IsA columbite_tantalite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "columbium is a kind of niobium", "pln": ["(: cnet_isa_37bbef1ab2 (IsA columbium niobium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "columbo is a kind of herb", "pln": ["(: cnet_isa_ab71c7335c (IsA columbo herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "columbus day is a kind of legal holiday", "pln": ["(: cnet_isa_9642a82f27 (IsA columbus_day legal_holiday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "columella is a kind of column", "pln": ["(: cnet_isa_f0f5dd0e22 (IsA columella column) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "column is a kind of upright", "pln": ["(: cnet_isa_8158bd0231 (IsA column upright) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "column is a kind of structure", "pln": ["(: cnet_isa_b6a5f75361 (IsA column structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "column is a kind of tube", "pln": ["(: cnet_isa_8e07eb9f54 (IsA column tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "column is a kind of skeletal structure", "pln": ["(: cnet_isa_c729ce697c (IsA column skeletal_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "column is a kind of article", "pln": ["(: cnet_isa_0d80c9f1f4 (IsA column article) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "column is a kind of text", "pln": ["(: cnet_isa_2bfa330ee9 (IsA column text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "column is a kind of array", "pln": ["(: cnet_isa_13aca5f394 (IsA column array) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "column is a kind of file", "pln": ["(: cnet_isa_3b040acd23 (IsA column file) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "column is a kind of shape", "pln": ["(: cnet_isa_9739e417a1 (IsA column shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "column chromatography is a kind of chromatography", "pln": ["(: cnet_isa_6fd93f2d86 (IsA column_chromatography chromatography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "column inch is a kind of area unit", "pln": ["(: cnet_isa_503fbcdca2 (IsA column_inch area_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "column vector is a kind of vector", "pln": ["(: cnet_isa_5b4bfb2eb2 (IsA column_vector vector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "columnar cell is a kind of epithelial cell", "pln": ["(: cnet_isa_bfcccee27d (IsA columnar_cell epithelial_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "columnea is a kind of shrub", "pln": ["(: cnet_isa_fae94b1089 (IsA columnea shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "columniation is a kind of placement", "pln": ["(: cnet_isa_48861e46e2 (IsA columniation placement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "columnist is a kind of journalist", "pln": ["(: cnet_isa_f1197f2aa4 (IsA columnist journalist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "colutea is a kind of rosid dicot genus", "pln": ["(: cnet_isa_b4ff2756b4 (IsA colutea rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coma is a kind of cloud", "pln": ["(: cnet_isa_0b4e1efcfd (IsA coma cloud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coma is a kind of tuft", "pln": ["(: cnet_isa_4c618ca228 (IsA coma tuft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coma is a kind of unconsciousness", "pln": ["(: cnet_isa_b3029a0bb6 (IsA coma unconsciousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "comanche is a kind of shoshonean", "pln": ["(: cnet_isa_4f99dcb864 (IsA comanche shoshonean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comanche is a kind of shoshoni", "pln": ["(: cnet_isa_8c9b2dd967 (IsA comanche shoshoni) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comandra is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_37718b9d63 (IsA comandra dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comatula is a kind of antedon", "pln": ["(: cnet_isa_7dca6b8c1b (IsA comatula antedon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comatulidae is a kind of antedonidae", "pln": ["(: cnet_isa_74bf187d11 (IsA comatulidae antedonidae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comb is a kind of tool", "pln": ["(: cnet_isa_a951ed40d1 (IsA comb tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comb is a kind of hair care", "pln": ["(: cnet_isa_e0ed41df8c (IsA comb hair_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comb is a kind of crest", "pln": ["(: cnet_isa_8c3a8cd989 (IsA comb crest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comb is a kind of plate", "pln": ["(: cnet_isa_40f8a8332d (IsA comb plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comb is a kind of device", "pln": ["(: cnet_isa_c980890553 (IsA comb device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comb footed spider is a kind of spider", "pln": ["(: cnet_isa_d13f32e90d (IsA comb_footed_spider spider) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comb out is a kind of comb", "pln": ["(: cnet_isa_1056f3e349 (IsA comb_out comb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comb out is a kind of disposal", "pln": ["(: cnet_isa_ce135c4826 (IsA comb_out disposal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "combat is a kind of battle", "pln": ["(: cnet_isa_a4047f85db (IsA combat battle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "combat ceiling is a kind of ceiling", "pln": ["(: cnet_isa_f3ceb13db8 (IsA combat_ceiling ceiling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "combat mission is a kind of mission", "pln": ["(: cnet_isa_ea6d29585b (IsA combat_mission mission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "combat pay is a kind of wage", "pln": ["(: cnet_isa_0dde347698 (IsA combat_pay wage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "combat pilot is a kind of pilot", "pln": ["(: cnet_isa_1eed7689cc (IsA combat_pilot pilot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "combat zone is a kind of city district", "pln": ["(: cnet_isa_6631268d21 (IsA combat_zone city_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "combat zone is a kind of zone", "pln": ["(: cnet_isa_be09e8f735 (IsA combat_zone zone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "combatant is a kind of person", "pln": ["(: cnet_isa_340075fdee (IsA combatant person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "combativeness is a kind of aggressiveness", "pln": ["(: cnet_isa_ee05b6f08a (IsA combativeness aggressiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comber is a kind of machine", "pln": ["(: cnet_isa_09d6e36fbf (IsA comber machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comber is a kind of wave", "pln": ["(: cnet_isa_08d3585d8b (IsA comber wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comber is a kind of worker", "pln": ["(: cnet_isa_9c5d7493ff (IsA comber worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "combination is a kind of change of integrity", "pln": ["(: cnet_isa_630edc8977 (IsA combination change_of_integrity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "combination is a kind of mathematical process", "pln": ["(: cnet_isa_226ffb35ab (IsA combination mathematical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "combination is a kind of collection", "pln": ["(: cnet_isa_54ea54c951 (IsA combination collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "combination is a kind of sequence", "pln": ["(: cnet_isa_63c5869424 (IsA combination sequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "combination is a kind of unit", "pln": ["(: cnet_isa_faaaf46c6b (IsA combination unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "combination is a kind of alliance", "pln": ["(: cnet_isa_c9ebb4cdee (IsA combination alliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "combination in restraint of trade is a kind of combination", "pln": ["(: cnet_isa_d87075c259 (IsA combination_in_restraint_of_trade combination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "combination lock is a kind of lock", "pln": ["(: cnet_isa_f48395bbae (IsA combination_lock lock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "combination plane is a kind of plane", "pln": ["(: cnet_isa_7ed62e3861 (IsA combination_plane plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "combination salad is a kind of tossed salad", "pln": ["(: cnet_isa_89924a65be (IsA combination_salad tossed_salad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "combine is a kind of harvester", "pln": ["(: cnet_isa_8e9d8e2f20 (IsA combine harvester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "combined operation is a kind of operation", "pln": ["(: cnet_isa_9634d1910b (IsA combined_operation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "combining is a kind of union", "pln": ["(: cnet_isa_6492036dc9 (IsA combining union) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "combining form is a kind of bound morpheme", "pln": ["(: cnet_isa_f3a1e7d24b (IsA combining_form bound_morpheme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "combretaceae is a kind of dicot family", "pln": ["(: cnet_isa_7bde92dd0c (IsA combretaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "combretum is a kind of woody plant", "pln": ["(: cnet_isa_d068123862 (IsA combretum woody_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "combustible is a kind of fuel", "pln": ["(: cnet_isa_116bd7138b (IsA combustible fuel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "combustibleness is a kind of quality", "pln": ["(: cnet_isa_08d9af6bd9 (IsA combustibleness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "combustion is a kind of oxidation", "pln": ["(: cnet_isa_ee3dd32bd2 (IsA combustion oxidation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "combustion is a kind of tumult", "pln": ["(: cnet_isa_89beacd72b (IsA combustion tumult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comeback is a kind of reappearance", "pln": ["(: cnet_isa_d82065176c (IsA comeback reappearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comedian is a kind of actor", "pln": ["(: cnet_isa_d42efe6948 (IsA comedian actor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comedian is a kind of performer", "pln": ["(: cnet_isa_a7e644174e (IsA comedian performer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comedienne is a kind of comedian", "pln": ["(: cnet_isa_562a3f0762 (IsA comedienne comedian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comedown is a kind of humiliation", "pln": ["(: cnet_isa_388b7c85a4 (IsA comedown humiliation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "comedy is a kind of drama", "pln": ["(: cnet_isa_48b28349b5 (IsA comedy drama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comedy ballet is a kind of ballet", "pln": ["(: cnet_isa_0cfcac9fb7 (IsA comedy_ballet ballet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comeliness is a kind of beauty", "pln": ["(: cnet_isa_8896031e8a (IsA comeliness beauty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comer is a kind of rival", "pln": ["(: cnet_isa_4fe5ca46ea (IsA comer rival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comestible is a kind of food", "pln": ["(: cnet_isa_06f60338d9 (IsA comestible food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comet is a kind of extraterrestrial object", "pln": ["(: cnet_isa_572aa6a4ee (IsA comet extraterrestrial_object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comet is a kind of like dirty snowball", "pln": ["(: cnet_isa_fbf9586c81 (IsA comet like_dirty_snowball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comfit is a kind of sweet", "pln": ["(: cnet_isa_19e4186cf2 (IsA comfit sweet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comfort is a kind of good feeling", "pln": ["(: cnet_isa_c6f2daef41 (IsA comfort good_feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comfort is a kind of aid", "pln": ["(: cnet_isa_8addfa62fa (IsA comfort aid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "comfort is a kind of pleasure", "pln": ["(: cnet_isa_9e86592946 (IsA comfort pleasure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comfort is a kind of condition", "pln": ["(: cnet_isa_1c782953b9 (IsA comfort condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comfort is a kind of gratification", "pln": ["(: cnet_isa_d44617efca (IsA comfort gratification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comfort food is a kind of food", "pln": ["(: cnet_isa_cd8ad22242 (IsA comfort_food food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comfort woman is a kind of prostitute", "pln": ["(: cnet_isa_aff9997fee (IsA comfort_woman prostitute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "comfort zone is a kind of temperature", "pln": ["(: cnet_isa_747ec50fcd (IsA comfort_zone temperature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comfortableness is a kind of belonging", "pln": ["(: cnet_isa_5883900a17 (IsA comfortableness belonging) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comforter is a kind of blanket", "pln": ["(: cnet_isa_c59a8229c0 (IsA comforter blanket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comforter is a kind of device", "pln": ["(: cnet_isa_edcd3509a7 (IsA comforter device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comfort is a kind of support", "pln": ["(: cnet_isa_b785523a52 (IsA comfort support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comfrey is a kind of herb", "pln": ["(: cnet_isa_aee791fa83 (IsA comfrey herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comic book is a kind of magazine", "pln": ["(: cnet_isa_0b97e03ac4 (IsA comic_book magazine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comic opera is a kind of opera", "pln": ["(: cnet_isa_9191d3633b (IsA comic_opera opera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comic strip is a kind of cartoon", "pln": ["(: cnet_isa_b72b91efe6 (IsA comic_strip cartoon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comicality is a kind of humor", "pln": ["(: cnet_isa_347864c742 (IsA comicality humor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coming attraction is a kind of movie", "pln": ["(: cnet_isa_2f28c08cbb (IsA coming_attraction movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comity is a kind of harmony", "pln": ["(: cnet_isa_0e15486a20 (IsA comity harmony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comity of nation is a kind of comity", "pln": ["(: cnet_isa_bfd5d76988 (IsA comity_of_nation comity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comma is a kind of nymphalid", "pln": ["(: cnet_isa_779e7f8d25 (IsA comma nymphalid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comma is a kind of punctuation", "pln": ["(: cnet_isa_2800956cbd (IsA comma punctuation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "comma bacillus is a kind of vibrio", "pln": ["(: cnet_isa_e00789b1f2 (IsA comma_bacillus vibrio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "command is a kind of authority", "pln": ["(: cnet_isa_a8ad371a84 (IsA command authority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "command is a kind of handiness", "pln": ["(: cnet_isa_bf4838a3b2 (IsA command handiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "command is a kind of skillfulness", "pln": ["(: cnet_isa_3366f4d698 (IsA command skillfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "command is a kind of speech act", "pln": ["(: cnet_isa_ea0dd6a893 (IsA command speech_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "command is a kind of military unit", "pln": ["(: cnet_isa_0c05665a3d (IsA command military_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "command is a kind of status", "pln": ["(: cnet_isa_f624f8c8eb (IsA command status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "command guidance is a kind of steering", "pln": ["(: cnet_isa_e989ad4d04 (IsA command_guidance steering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "command language is a kind of source language", "pln": ["(: cnet_isa_926c0a2388 (IsA command_language source_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "command line is a kind of instruction", "pln": ["(: cnet_isa_2ac3b8c0d1 (IsA command_line instruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "command line interface is a kind of interface", "pln": ["(: cnet_isa_087c60eba3 (IsA command_line_interface interface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "command module is a kind of module", "pln": ["(: cnet_isa_2b9c9dd0a2 (IsA command_module module) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "command post is a kind of headquarter", "pln": ["(: cnet_isa_4c312a5fc8 (IsA command_post headquarter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "command processing overhead time is a kind of processing time", "pln": ["(: cnet_isa_618f780bc7 (IsA command_processing_overhead_time processing_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commander is a kind of commissioned naval officer", "pln": ["(: cnet_isa_e1178f2ae1 (IsA commander commissioned_naval_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commander is a kind of leader", "pln": ["(: cnet_isa_97eb377285 (IsA commander leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commander in chief is a kind of commanding officer", "pln": ["(: cnet_isa_d40d5829b1 (IsA commander_in_chief commanding_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commandership is a kind of position", "pln": ["(: cnet_isa_e3acc389b6 (IsA commandership position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commanding officer is a kind of military officer", "pln": ["(: cnet_isa_b5342b64c1 (IsA commanding_officer military_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commandment is a kind of command", "pln": ["(: cnet_isa_c574e82fe1 (IsA commandment command) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commando is a kind of military unit", "pln": ["(: cnet_isa_416f2553b4 (IsA commando military_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commando is a kind of serviceman", "pln": ["(: cnet_isa_e0971e29fb (IsA commando serviceman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "commedia dell arte is a kind of comedy", "pln": ["(: cnet_isa_d791544e95 (IsA commedia_dell_arte comedy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commelina is a kind of flower", "pln": ["(: cnet_isa_29d4f9c4da (IsA commelina flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commelinaceae is a kind of monocot family", "pln": ["(: cnet_isa_d4ea047a92 (IsA commelinaceae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commelinidae is a kind of class", "pln": ["(: cnet_isa_f1589dceda (IsA commelinidae class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commemoration is a kind of ceremony", "pln": ["(: cnet_isa_c6a39ccd78 (IsA commemoration ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "commemorative is a kind of object", "pln": ["(: cnet_isa_3a79570c0a (IsA commemorative object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commencement is a kind of exercise", "pln": ["(: cnet_isa_17cd44d048 (IsA commencement exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commencement day is a kind of day", "pln": ["(: cnet_isa_ee1034bca4 (IsA commencement_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commensal is a kind of organism", "pln": ["(: cnet_isa_ab1e0d84e9 (IsA commensal organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commensalism is a kind of mutuality", "pln": ["(: cnet_isa_eb07f4238b (IsA commensalism mutuality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commensurateness is a kind of proportionality", "pln": ["(: cnet_isa_f7bf895d7e (IsA commensurateness proportionality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comment is a kind of statement", "pln": ["(: cnet_isa_d43deb2307 (IsA comment statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commentator is a kind of writer", "pln": ["(: cnet_isa_831416a1e8 (IsA commentator writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commerce is a kind of transaction", "pln": ["(: cnet_isa_4e22b40f2d (IsA commerce transaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commerce is a kind of conversation", "pln": ["(: cnet_isa_7a6d2e7ffc (IsA commerce conversation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commerce secretary is a kind of secretary", "pln": ["(: cnet_isa_869bf9575e (IsA commerce_secretary secretary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "commercial is a kind of ad", "pln": ["(: cnet_isa_a087b1c00a (IsA commercial ad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commercial art is a kind of art", "pln": ["(: cnet_isa_52f0d876f8 (IsA commercial_art art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commercial artist is a kind of illustrator", "pln": ["(: cnet_isa_f3528f3bba (IsA commercial_artist illustrator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commercial bank is a kind of depository financial institution", "pln": ["(: cnet_isa_273970576b (IsA commercial_bank depository_financial_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commercial bribery is a kind of bribery", "pln": ["(: cnet_isa_91800d4a6e (IsA commercial_bribery bribery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commercial credit is a kind of credit", "pln": ["(: cnet_isa_cdb6dfb412 (IsA commercial_credit credit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commercial document is a kind of document", "pln": ["(: cnet_isa_8b1424380f (IsA commercial_document document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commercial enterprise is a kind of commerce", "pln": ["(: cnet_isa_53ebb56ed6 (IsA commercial_enterprise commerce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commercial enterprise is a kind of enterprise", "pln": ["(: cnet_isa_b43a06c685 (IsA commercial_enterprise enterprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commercial finance company is a kind of finance company", "pln": ["(: cnet_isa_619c91896b (IsA commercial_finance_company finance_company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commercial letter of credit is a kind of letter of credit", "pln": ["(: cnet_isa_4a8eb1e81f (IsA commercial_letter_of_credit letter_of_credit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commercial paper is a kind of cash equivalent", "pln": ["(: cnet_isa_8771e7a4c6 (IsA commercial_paper cash_equivalent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commercial treaty is a kind of treaty", "pln": ["(: cnet_isa_468e18e2f7 (IsA commercial_treaty treaty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commercialization is a kind of exploitation", "pln": ["(: cnet_isa_532e9df943 (IsA commercialization exploitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commination is a kind of prayer", "pln": ["(: cnet_isa_b1226eca10 (IsA commination prayer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commination is a kind of threat", "pln": ["(: cnet_isa_0d0f17613f (IsA commination threat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comminuted fracture is a kind of fracture", "pln": ["(: cnet_isa_57b00f1b69 (IsA comminuted_fracture fracture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commiphora is a kind of rosid dicot genus", "pln": ["(: cnet_isa_317184c72d (IsA commiphora rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commiseration is a kind of sympathy", "pln": ["(: cnet_isa_350f517602 (IsA commiseration sympathy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "commissar is a kind of official", "pln": ["(: cnet_isa_359933c16b (IsA commissar official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "commissariat is a kind of food", "pln": ["(: cnet_isa_809cbc2a6f (IsA commissariat food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commissary is a kind of snack bar", "pln": ["(: cnet_isa_422f2ef2aa (IsA commissary snack_bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commissary is a kind of shop", "pln": ["(: cnet_isa_6abed165e7 (IsA commissary shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commission is a kind of authorization", "pln": ["(: cnet_isa_3c66c4f614 (IsA commission authorization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commission is a kind of command", "pln": ["(: cnet_isa_fd7bdcbfc1 (IsA commission command) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commission is a kind of certificate", "pln": ["(: cnet_isa_115064fcec (IsA commission certificate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commission is a kind of fee", "pln": ["(: cnet_isa_887b24923d (IsA commission fee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commission is a kind of operation", "pln": ["(: cnet_isa_2595a0334e (IsA commission operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commission on human right is a kind of economic and social council commission", "pln": ["(: cnet_isa_00178714d9 (IsA commission_on_human_right economic_and_social_council_commission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commission on narcotic drug is a kind of economic and social council commission", "pln": ["(: cnet_isa_29b7bdd792 (IsA commission_on_narcotic_drug economic_and_social_council_commission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commission on status of women is a kind of economic and social council commission", "pln": ["(: cnet_isa_d74f98439c (IsA commission_on_status_of_women economic_and_social_council_commission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commission plan is a kind of municipal government", "pln": ["(: cnet_isa_9ebdb42249 (IsA commission_plan municipal_government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commissionaire is a kind of doorkeeper", "pln": ["(: cnet_isa_05bb2d93f9 (IsA commissionaire doorkeeper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commissioned military officer is a kind of commissioned officer", "pln": ["(: cnet_isa_302490db48 (IsA commissioned_military_officer commissioned_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commissioned naval officer is a kind of commissioned officer", "pln": ["(: cnet_isa_8f552b39b2 (IsA commissioned_naval_officer commissioned_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commissioned officer is a kind of military officer", "pln": ["(: cnet_isa_d2a5b7fd8f (IsA commissioned_officer military_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commissioner is a kind of administrator", "pln": ["(: cnet_isa_8d9d13edfd (IsA commissioner administrator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commissioner is a kind of member", "pln": ["(: cnet_isa_fdabfa6bbe (IsA commissioner member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commissure is a kind of nerve pathway", "pln": ["(: cnet_isa_2bdeff166f (IsA commissure nerve_pathway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commiting crime is a kind of breaking law", "pln": ["(: cnet_isa_382cd4bf2b (IsA commiting_crime breaking_law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commitment is a kind of confinement", "pln": ["(: cnet_isa_3eb6ee06c2 (IsA commitment confinement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commitment is a kind of cooperation", "pln": ["(: cnet_isa_21804cef7f (IsA commitment cooperation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commitment is a kind of engagement", "pln": ["(: cnet_isa_4972ce8211 (IsA commitment engagement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commitment is a kind of message", "pln": ["(: cnet_isa_a01f418cc6 (IsA commitment message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "committal service is a kind of service", "pln": ["(: cnet_isa_9f674842ca (IsA committal_service service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "committedness is a kind of seriousness", "pln": ["(: cnet_isa_574e2bb680 (IsA committedness seriousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "committee is a kind of administrative unit", "pln": ["(: cnet_isa_086daeb16c (IsA committee administrative_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "committee is a kind of nongovernmental organization", "pln": ["(: cnet_isa_8237422ba4 (IsA committee nongovernmental_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "committee for state security is a kind of russian agency", "pln": ["(: cnet_isa_d257c96d82 (IsA committee_for_state_security russian_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "committee member is a kind of member", "pln": ["(: cnet_isa_2252330433 (IsA committee_member member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "committeeman is a kind of committee member", "pln": ["(: cnet_isa_5dcc7a8fe0 (IsA committeeman committee_member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "committeewoman is a kind of committee member", "pln": ["(: cnet_isa_d22ac0a860 (IsA committeewoman committee_member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "committing crime is a kind of against social good", "pln": ["(: cnet_isa_e213b8e0ca (IsA committing_crime against_social_good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "committing crime is a kind of civil faux pa", "pln": ["(: cnet_isa_780e89b4b0 (IsA committing_crime civil_faux_pa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "committing crime is a kind of civil faux pas", "pln": ["(: cnet_isa_dddb916f6d (IsA committing_crime civil_faux_pas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commodity is a kind of object", "pln": ["(: cnet_isa_4fb0ee17b9 (IsA commodity object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commodity is a kind of artifact", "pln": ["(: cnet_isa_94c780f9c1 (IsA commodity artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commodity brokerage is a kind of brokerage", "pln": ["(: cnet_isa_320027cd6b (IsA commodity_brokerage brokerage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commodity exchange is a kind of exchange", "pln": ["(: cnet_isa_ce9721ab31 (IsA commodity_exchange exchange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commodore is a kind of commissioned naval officer", "pln": ["(: cnet_isa_621b1d3a20 (IsA commodore commissioned_naval_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common ageratum is a kind of ageratum", "pln": ["(: cnet_isa_b0afb5937a (IsA common_ageratum ageratum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common alder is a kind of alder", "pln": ["(: cnet_isa_c8cd7efb3f (IsA common_alder alder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common allamanda is a kind of allamanda", "pln": ["(: cnet_isa_ef33a4278c (IsA common_allamanda allamanda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common american shad is a kind of shad", "pln": ["(: cnet_isa_30918bdeaf (IsA common_american_shad shad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common amsinckia is a kind of herb", "pln": ["(: cnet_isa_57d3f2c617 (IsA common_amsinckia herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common apricot is a kind of apricot", "pln": ["(: cnet_isa_f8ea4ade76 (IsA common_apricot apricot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common arrowhead is a kind of sagittaria", "pln": ["(: cnet_isa_123d5b8d2c (IsA common_arrowhead sagittaria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common ax is a kind of ax", "pln": ["(: cnet_isa_d4405fab8b (IsA common_ax ax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common bamboo is a kind of bamboo", "pln": ["(: cnet_isa_074b156989 (IsA common_bamboo bamboo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common barberry is a kind of barberry", "pln": ["(: cnet_isa_e63a501802 (IsA common_barberry barberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common barley is a kind of barley", "pln": ["(: cnet_isa_f1c5b59266 (IsA common_barley barley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common basil is a kind of basil", "pln": ["(: cnet_isa_fbfa6175eb (IsA common_basil basil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common bean is a kind of bean", "pln": ["(: cnet_isa_faaff9bcc7 (IsA common_bean bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common bean is a kind of bush bean", "pln": ["(: cnet_isa_241fb1982d (IsA common_bean bush_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common bearberry is a kind of bearberry", "pln": ["(: cnet_isa_6b54470ae5 (IsA common_bearberry bearberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common beech is a kind of beech", "pln": ["(: cnet_isa_593f8f96d8 (IsA common_beech beech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common bile duct is a kind of duct", "pln": ["(: cnet_isa_a748e3477e (IsA common_bile_duct duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common booklouse is a kind of booklouse", "pln": ["(: cnet_isa_8798c7819b (IsA common_booklouse booklouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common box is a kind of box", "pln": ["(: cnet_isa_579793e47e (IsA common_box box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common brant goose is a kind of brant", "pln": ["(: cnet_isa_4d8ab80b49 (IsA common_brant_goose brant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common broom is a kind of broom", "pln": ["(: cnet_isa_3c7daae795 (IsA common_broom broom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common burdock is a kind of burdock", "pln": ["(: cnet_isa_2cf0d6a6c3 (IsA common_burdock burdock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common buttercup is a kind of buttercup", "pln": ["(: cnet_isa_0acddb9a6b (IsA common_buttercup buttercup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common calamint is a kind of calamint", "pln": ["(: cnet_isa_54b48e9dae (IsA common_calamint calamint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common cama is a kind of cama", "pln": ["(: cnet_isa_43986faa58 (IsA common_cama cama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common canary is a kind of canary", "pln": ["(: cnet_isa_ef54703826 (IsA common_canary canary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common caper is a kind of caper", "pln": ["(: cnet_isa_5edb39b219 (IsA common_caper caper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common cardinal vein is a kind of cardinal vein", "pln": ["(: cnet_isa_2532a4c51b (IsA common_cardinal_vein cardinal_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common carline thistle is a kind of carline thistle", "pln": ["(: cnet_isa_149a1aa8a6 (IsA common_carline_thistle carline_thistle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common carotid artery is a kind of carotid artery", "pln": ["(: cnet_isa_9373414e79 (IsA common_carotid_artery carotid_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common chickweed is a kind of chickweed", "pln": ["(: cnet_isa_b8abaa453b (IsA common_chickweed chickweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common chord is a kind of chord", "pln": ["(: cnet_isa_85e079d31c (IsA common_chord chord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common comfrey is a kind of comfrey", "pln": ["(: cnet_isa_9c98f91fca (IsA common_comfrey comfrey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common corn salad is a kind of corn salad", "pln": ["(: cnet_isa_b15b46e5b8 (IsA common_corn_salad corn_salad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common cotton grass is a kind of cotton grass", "pln": ["(: cnet_isa_74d665bdf7 (IsA common_cotton_grass cotton_grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common daisy is a kind of daisy", "pln": ["(: cnet_isa_54e50f3f9d (IsA common_daisy daisy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common dandelion is a kind of dandelion", "pln": ["(: cnet_isa_64e4d635eb (IsA common_dandelion dandelion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common denominator is a kind of attribute", "pln": ["(: cnet_isa_3ea359c86d (IsA common_denominator attribute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common denominator is a kind of denominator", "pln": ["(: cnet_isa_9b5ed9b251 (IsA common_denominator denominator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common divisor is a kind of divisor", "pln": ["(: cnet_isa_e2cf8b40ac (IsA common_divisor divisor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common dogbane is a kind of dogbane", "pln": ["(: cnet_isa_147f613cfd (IsA common_dogbane dogbane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common dolphin is a kind of dolphin", "pln": ["(: cnet_isa_6eab792604 (IsA common_dolphin dolphin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common duckweed is a kind of duckweed", "pln": ["(: cnet_isa_190e412034 (IsA common_duckweed duckweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "common eel is a kind of eel", "pln": ["(: cnet_isa_c482927dd2 (IsA common_eel eel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common eland is a kind of eland", "pln": ["(: cnet_isa_14aed0de24 (IsA common_eland eland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common european dogwood is a kind of dogwood", "pln": ["(: cnet_isa_d2d717a365 (IsA common_european_dogwood dogwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common european earwig is a kind of earwig", "pln": ["(: cnet_isa_f29b8ed6cb (IsA common_european_earwig earwig) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common european jay is a kind of old world jay", "pln": ["(: cnet_isa_f33df14b50 (IsA common_european_jay old_world_jay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common evening primrose is a kind of evening primrose", "pln": ["(: cnet_isa_3fd31c6a12 (IsA common_evening_primrose evening_primrose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "common facial vein is a kind of vein", "pln": ["(: cnet_isa_5c81ded6af (IsA common_facial_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common fate is a kind of gestalt law of organization", "pln": ["(: cnet_isa_2ea5abc819 (IsA common_fate gestalt_law_of_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common fennel is a kind of fennel", "pln": ["(: cnet_isa_8c53bf5fe4 (IsA common_fennel fennel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common flat pea is a kind of shrub", "pln": ["(: cnet_isa_2c8912d1ae (IsA common_flat_pea shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common four o clock is a kind of four o clock", "pln": ["(: cnet_isa_73561bb61f (IsA common_four_o_clock four_o_clock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common foxglove is a kind of foxglove", "pln": ["(: cnet_isa_eba0bcab06 (IsA common_foxglove foxglove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common fraction is a kind of fraction", "pln": ["(: cnet_isa_e1ede097ea (IsA common_fraction fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common front is a kind of movement", "pln": ["(: cnet_isa_457dd9d6a9 (IsA common_front movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "common garden cress is a kind of cress", "pln": ["(: cnet_isa_705a2d5881 (IsA common_garden_cress cress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common garter snake is a kind of garter snake", "pln": ["(: cnet_isa_49919f8241 (IsA common_garter_snake garter_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common ginger is a kind of ginger", "pln": ["(: cnet_isa_a6fbfe5d1f (IsA common_ginger ginger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common good is a kind of good", "pln": ["(: cnet_isa_e2d146363c (IsA common_good good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common grape hyacinth is a kind of grape hyacinth", "pln": ["(: cnet_isa_a055c28fbb (IsA common_grape_hyacinth grape_hyacinth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "common ground is a kind of footing", "pln": ["(: cnet_isa_4ffb8931a7 (IsA common_ground footing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common gum cistus is a kind of rockrose", "pln": ["(: cnet_isa_d8b94ebe84 (IsA common_gum_cistus rockrose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common heath is a kind of epacris", "pln": ["(: cnet_isa_43d208a167 (IsA common_heath epacris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common hop is a kind of hop", "pln": ["(: cnet_isa_ea5f8ec316 (IsA common_hop hop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common horehound is a kind of horehound", "pln": ["(: cnet_isa_4942811f0e (IsA common_horehound horehound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common horsetail is a kind of horsetail", "pln": ["(: cnet_isa_ebf7a0d884 (IsA common_horsetail horsetail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common hyacinth is a kind of hyacinth", "pln": ["(: cnet_isa_bbd8167ef1 (IsA common_hyacinth hyacinth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common iguana is a kind of iguanid", "pln": ["(: cnet_isa_7a6c963d08 (IsA common_iguana iguanid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common iliac artery is a kind of iliac artery", "pln": ["(: cnet_isa_13f943d093 (IsA common_iliac_artery iliac_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common iliac vein is a kind of iliac vein", "pln": ["(: cnet_isa_2c5b4902a6 (IsA common_iliac_vein iliac_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common jasmine is a kind of jasmine", "pln": ["(: cnet_isa_eabeb8f9da (IsA common_jasmine jasmine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common juniper is a kind of juniper", "pln": ["(: cnet_isa_eade48a3f4 (IsA common_juniper juniper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common kingsnake is a kind of king snake", "pln": ["(: cnet_isa_f8a45d14c3 (IsA common_kingsnake king_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common knowledge is a kind of public knowledge", "pln": ["(: cnet_isa_af3287368d (IsA common_knowledge public_knowledge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common laburnum is a kind of flowering shrub", "pln": ["(: cnet_isa_fee510f964 (IsA common_laburnum flowering_shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common lady s slipper is a kind of lady s slipper", "pln": ["(: cnet_isa_72698a4222 (IsA common_lady_s_slipper lady_s_slipper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common law is a kind of law", "pln": ["(: cnet_isa_c09c408cf6 (IsA common_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common law marriage is a kind of marriage", "pln": ["(: cnet_isa_b28c26fb3f (IsA common_law_marriage marriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common lilac is a kind of lilac", "pln": ["(: cnet_isa_4c2e2f1b1a (IsA common_lilac lilac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common limpet is a kind of limpet", "pln": ["(: cnet_isa_a00a934077 (IsA common_limpet limpet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common logarithm is a kind of logarithm", "pln": ["(: cnet_isa_e1f5b99544 (IsA common_logarithm logarithm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common louse is a kind of louse", "pln": ["(: cnet_isa_7f7c944268 (IsA common_louse louse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common lynx is a kind of lynx", "pln": ["(: cnet_isa_a53485f138 (IsA common_lynx lynx) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common mackerel is a kind of mackerel", "pln": ["(: cnet_isa_964f5fcef9 (IsA common_mackerel mackerel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common madia is a kind of wildflower", "pln": ["(: cnet_isa_2090a92f3a (IsA common_madia wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common maidenhair is a kind of maidenhair", "pln": ["(: cnet_isa_674c5f075e (IsA common_maidenhair maidenhair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common mallow is a kind of mallow", "pln": ["(: cnet_isa_195701acf6 (IsA common_mallow mallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common marigold is a kind of calendula", "pln": ["(: cnet_isa_904b97ddca (IsA common_marigold calendula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common matrimony vine is a kind of matrimony vine", "pln": ["(: cnet_isa_e3675d6681 (IsA common_matrimony_vine matrimony_vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common measure is a kind of meter", "pln": ["(: cnet_isa_43056c9f08 (IsA common_measure meter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "common milkwort is a kind of milkwort", "pln": ["(: cnet_isa_11c871a065 (IsA common_milkwort milkwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common moonseed is a kind of moonseed", "pln": ["(: cnet_isa_0bcc7cf142 (IsA common_moonseed moonseed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common morel is a kind of morel", "pln": ["(: cnet_isa_7c93893407 (IsA common_morel morel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common morning glory is a kind of morning glory", "pln": ["(: cnet_isa_8ec511d8eb (IsA common_morning_glory morning_glory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common mosquito is a kind of mosquito", "pln": ["(: cnet_isa_6d9d272b14 (IsA common_mosquito mosquito) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common mugwort is a kind of mugwort", "pln": ["(: cnet_isa_eaa5c12dbb (IsA common_mugwort mugwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common mullein is a kind of mullein", "pln": ["(: cnet_isa_d710680ab2 (IsA common_mullein mullein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common multiple is a kind of integer", "pln": ["(: cnet_isa_f6a8b0ddac (IsA common_multiple integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common murre is a kind of murre", "pln": ["(: cnet_isa_9c38167a12 (IsA common_murre murre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common myrtle is a kind of myrtle", "pln": ["(: cnet_isa_e603b4bc04 (IsA common_myrtle myrtle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common newt is a kind of newt", "pln": ["(: cnet_isa_d6bb3eae37 (IsA common_newt newt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common noun is a kind of noun", "pln": ["(: cnet_isa_5a88d1139b (IsA common_noun noun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common nutcracker is a kind of nutcracker", "pln": ["(: cnet_isa_605cc7d41d (IsA common_nutcracker nutcracker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common oak is a kind of white oak", "pln": ["(: cnet_isa_f7e6bce891 (IsA common_oak white_oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common opossum is a kind of opossum", "pln": ["(: cnet_isa_89981cd0a8 (IsA common_opossum opossum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common osier is a kind of osier", "pln": ["(: cnet_isa_86ac50a738 (IsA common_osier osier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common pitcher plant is a kind of pitcher plant", "pln": ["(: cnet_isa_e6cbd078af (IsA common_pitcher_plant pitcher_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common plum is a kind of plum", "pln": ["(: cnet_isa_88da8786ac (IsA common_plum plum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common polypody is a kind of polypody", "pln": ["(: cnet_isa_30bc2ae463 (IsA common_polypody polypody) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common pond skater is a kind of water strider", "pln": ["(: cnet_isa_ff3a5f6d5e (IsA common_pond_skater water_strider) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common privet is a kind of privet", "pln": ["(: cnet_isa_2bbd95ea49 (IsA common_privet privet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common purslane is a kind of purslane", "pln": ["(: cnet_isa_3327c70fad (IsA common_purslane purslane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common raccoon is a kind of raccoon", "pln": ["(: cnet_isa_586740e5ce (IsA common_raccoon raccoon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common ragweed is a kind of ragweed", "pln": ["(: cnet_isa_c9b5ebca6f (IsA common_ragweed ragweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common room is a kind of living room", "pln": ["(: cnet_isa_a064ccc29e (IsA common_room living_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "common roundworm is a kind of nematode", "pln": ["(: cnet_isa_6317642d13 (IsA common_roundworm nematode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common sage is a kind of sage", "pln": ["(: cnet_isa_fe747ea1dc (IsA common_sage sage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common scoter is a kind of scoter", "pln": ["(: cnet_isa_3a5418ad56 (IsA common_scoter scoter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common sense is a kind of sagacity", "pln": ["(: cnet_isa_d5163bda84 (IsA common_sense sagacity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common shiner is a kind of shiner", "pln": ["(: cnet_isa_fa4fb10749 (IsA common_shiner shiner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common shrew is a kind of shrew", "pln": ["(: cnet_isa_f96ed64a1d (IsA common_shrew shrew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common sickle pine is a kind of conifer", "pln": ["(: cnet_isa_490e487975 (IsA common_sickle_pine conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common snapping turtle is a kind of snapping turtle", "pln": ["(: cnet_isa_37c4bde631 (IsA common_snapping_turtle snapping_turtle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common speedwell is a kind of veronica", "pln": ["(: cnet_isa_65b704877e (IsA common_speedwell veronica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common spindle tree is a kind of spindle tree", "pln": ["(: cnet_isa_7dec78d872 (IsA common_spindle_tree spindle_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common spoonbill is a kind of spoonbill", "pln": ["(: cnet_isa_3be5ea9aae (IsA common_spoonbill spoonbill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common spotted orchid is a kind of orchid", "pln": ["(: cnet_isa_87870f6148 (IsA common_spotted_orchid orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common st john s wort is a kind of st john s wort", "pln": ["(: cnet_isa_52e86cf630 (IsA common_st_john_s_wort st_john_s_wort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common staghorn fern is a kind of staghorn fern", "pln": ["(: cnet_isa_904365ae0b (IsA common_staghorn_fern staghorn_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common starling is a kind of starling", "pln": ["(: cnet_isa_0d2c6ccf37 (IsA common_starling starling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common stinkhorn is a kind of stinkhorn", "pln": ["(: cnet_isa_5885973095 (IsA common_stinkhorn stinkhorn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common stock is a kind of stock", "pln": ["(: cnet_isa_68164a843b (IsA common_stock stock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common stock equivalent is a kind of stock", "pln": ["(: cnet_isa_13cf049e41 (IsA common_stock_equivalent stock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common sunflower is a kind of sunflower", "pln": ["(: cnet_isa_17530adcff (IsA common_sunflower sunflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "common teasel is a kind of teasel", "pln": ["(: cnet_isa_81b365311b (IsA common_teasel teasel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common thyme is a kind of thyme", "pln": ["(: cnet_isa_15728dc2b6 (IsA common_thyme thyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common time is a kind of musical time", "pln": ["(: cnet_isa_9362d5a337 (IsA common_time musical_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "common tobacco is a kind of tobacco", "pln": ["(: cnet_isa_539d6eac63 (IsA common_tobacco tobacco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common touch is a kind of touch", "pln": ["(: cnet_isa_f87b395f72 (IsA common_touch touch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "common unicorn plant is a kind of herb", "pln": ["(: cnet_isa_2c0c887d10 (IsA common_unicorn_plant herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common valerian is a kind of valerian", "pln": ["(: cnet_isa_bfef5db2ea (IsA common_valerian valerian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common vetchling is a kind of wild pea", "pln": ["(: cnet_isa_7a06a8fa3b (IsA common_vetchling wild_pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common wallaby is a kind of wallaby", "pln": ["(: cnet_isa_b53f8bf893 (IsA common_wallaby wallaby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common wart is a kind of wart", "pln": ["(: cnet_isa_a556395985 (IsA common_wart wart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common wasp is a kind of vespid", "pln": ["(: cnet_isa_1fd8d13c2b (IsA common_wasp vespid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common water snake is a kind of water snake", "pln": ["(: cnet_isa_fbb9399753 (IsA common_water_snake water_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common watercress is a kind of watercress", "pln": ["(: cnet_isa_33c39689cc (IsA common_watercress watercress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common wheat is a kind of wheat", "pln": ["(: cnet_isa_e7020eb20e (IsA common_wheat wheat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common white dogwood is a kind of dogwood", "pln": ["(: cnet_isa_55972905b8 (IsA common_white_dogwood dogwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "common winterberry holly is a kind of holly", "pln": ["(: cnet_isa_18bea62549 (IsA common_winterberry_holly holly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common wolffia is a kind of watermeal", "pln": ["(: cnet_isa_8765282688 (IsA common_wolffia watermeal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common wood sorrel is a kind of oxalis", "pln": ["(: cnet_isa_17f761a12f (IsA common_wood_sorrel oxalis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common wormwood is a kind of wormwood", "pln": ["(: cnet_isa_4035a175c3 (IsA common_wormwood wormwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common year is a kind of year", "pln": ["(: cnet_isa_48a3230db6 (IsA common_year year) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common yellowthroat is a kind of yellowthroat", "pln": ["(: cnet_isa_9d76712130 (IsA common_yellowthroat yellowthroat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common yellowwood is a kind of gymnospermous yellowwood", "pln": ["(: cnet_isa_d360c65035 (IsA common_yellowwood gymnospermous_yellowwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common zebra is a kind of zebra", "pln": ["(: cnet_isa_13a13238bd (IsA common_zebra zebra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commonage is a kind of property", "pln": ["(: cnet_isa_248dab7932 (IsA commonage property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commonality is a kind of generality", "pln": ["(: cnet_isa_7c1a9b6290 (IsA commonality generality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "commonalty is a kind of class", "pln": ["(: cnet_isa_073d7bdcd5 (IsA commonalty class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commoner is a kind of person", "pln": ["(: cnet_isa_cf1e217851 (IsA commoner person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commonness is a kind of ordinariness", "pln": ["(: cnet_isa_6cb821941d (IsA commonness ordinariness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "commonness is a kind of normality", "pln": ["(: cnet_isa_d2a29cac05 (IsA commonness normality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commonplace book is a kind of notebook", "pln": ["(: cnet_isa_2c70cdbcf8 (IsA commonplace_book notebook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "common is a kind of pasture", "pln": ["(: cnet_isa_2f611c1eb4 (IsA common pasture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commonwealth is a kind of world organization", "pln": ["(: cnet_isa_db627ffb27 (IsA commonwealth world_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commonwealth is a kind of state", "pln": ["(: cnet_isa_680cfa66ae (IsA commonwealth state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commonwealth country is a kind of state", "pln": ["(: cnet_isa_3de1e78eb1 (IsA commonwealth_country state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commonwealth day is a kind of legal holiday", "pln": ["(: cnet_isa_eaad8f2cab (IsA commonwealth_day legal_holiday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commonwealth of independent state is a kind of world organization", "pln": ["(: cnet_isa_db614c34ea (IsA commonwealth_of_independent_state world_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commotion is a kind of disturbance", "pln": ["(: cnet_isa_642e5ceada (IsA commotion disturbance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communalism is a kind of commitment", "pln": ["(: cnet_isa_0b328302ab (IsA communalism commitment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communalism is a kind of group action", "pln": ["(: cnet_isa_b80bf8bf01 (IsA communalism group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commune is a kind of gathering", "pln": ["(: cnet_isa_6111e51999 (IsA commune gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commune is a kind of administrative district", "pln": ["(: cnet_isa_3031f988c2 (IsA commune administrative_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communicable disease is a kind of disease", "pln": ["(: cnet_isa_191a2efa75 (IsA communicable_disease disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communicant is a kind of christian", "pln": ["(: cnet_isa_55b4169f80 (IsA communicant christian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communicating artery is a kind of artery", "pln": ["(: cnet_isa_4b2bbd6b04 (IsA communicating_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communication is a kind of abstraction", "pln": ["(: cnet_isa_4764bcb808 (IsA communication abstraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communication is a kind of act", "pln": ["(: cnet_isa_b9c20c337f (IsA communication act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communication is a kind of connection", "pln": ["(: cnet_isa_0de79b0249 (IsA communication connection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communication system is a kind of facility", "pln": ["(: cnet_isa_c4c541eca4 (IsA communication_system facility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communication system is a kind of system", "pln": ["(: cnet_isa_f771aac13a (IsA communication_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communication is a kind of discipline", "pln": ["(: cnet_isa_339e544c6e (IsA communication discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communication intelligence is a kind of signal intelligence", "pln": ["(: cnet_isa_1975230c35 (IsA communication_intelligence signal_intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communication officer is a kind of officer", "pln": ["(: cnet_isa_16511b5412 (IsA communication_officer officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communication officer is a kind of worker", "pln": ["(: cnet_isa_e1958b6c8b (IsA communication_officer worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communication satellite is a kind of satellite", "pln": ["(: cnet_isa_a45ea98421 (IsA communication_satellite satellite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communication security establishment is a kind of international intelligence agency", "pln": ["(: cnet_isa_8787e35eb9 (IsA communication_security_establishment international_intelligence_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communication specialist is a kind of worker", "pln": ["(: cnet_isa_102bb0ad5e (IsA communication_specialist worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communication technology is a kind of technology", "pln": ["(: cnet_isa_3a318cebd9 (IsA communication_technology technology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communicativeness is a kind of trait", "pln": ["(: cnet_isa_c70201dcab (IsA communicativeness trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communicator is a kind of person", "pln": ["(: cnet_isa_99366a3fd6 (IsA communicator person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communion is a kind of ritual", "pln": ["(: cnet_isa_1520d43f38 (IsA communion ritual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "communion is a kind of denomination", "pln": ["(: cnet_isa_04f9b2743b (IsA communion denomination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communion is a kind of intercourse", "pln": ["(: cnet_isa_e06be57578 (IsA communion intercourse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communism is a kind of extreme leftist ideology", "pln": ["(: cnet_isa_35513298fc (IsA communism extreme_leftist_ideology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communism is a kind of government", "pln": ["(: cnet_isa_3eef54d2b4 (IsA communism government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communism is a kind of political orientation", "pln": ["(: cnet_isa_7f4b80895e (IsA communism political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communism is a kind of socialism", "pln": ["(: cnet_isa_8ba83374f8 (IsA communism socialism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communist is a kind of politician", "pln": ["(: cnet_isa_0f7fbb0a8a (IsA communist politician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communist is a kind of socialist", "pln": ["(: cnet_isa_885434420e (IsA communist socialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communist economy is a kind of managed economy", "pln": ["(: cnet_isa_6dfc03ca1c (IsA communist_economy managed_economy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communist party is a kind of party", "pln": ["(: cnet_isa_7a4e60def4 (IsA communist_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "community is a kind of group", "pln": ["(: cnet_isa_7c842f68e7 (IsA community group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "community is a kind of gathering", "pln": ["(: cnet_isa_007e1e6997 (IsA community gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "community is a kind of people", "pln": ["(: cnet_isa_21cd710c5a (IsA community people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "community is a kind of world organization", "pln": ["(: cnet_isa_795114d26c (IsA community world_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "community is a kind of ownership", "pln": ["(: cnet_isa_7fe638a346 (IsA community ownership) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "community is a kind of agreement", "pln": ["(: cnet_isa_9d7b04d8bc (IsA community agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "community center is a kind of center", "pln": ["(: cnet_isa_8ce7cc6bab (IsA community_center center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "community chest is a kind of charity", "pln": ["(: cnet_isa_2db3e0b8a1 (IsA community_chest charity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "community college is a kind of junior college", "pln": ["(: cnet_isa_de4d3f3be8 (IsA community_college junior_college) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "community of scholar is a kind of profession", "pln": ["(: cnet_isa_14f28dab4c (IsA community_of_scholar profession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "community property is a kind of property", "pln": ["(: cnet_isa_eb66e4c1a1 (IsA community_property property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "community service is a kind of service", "pln": ["(: cnet_isa_525fbd1912 (IsA community_service service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communization is a kind of change", "pln": ["(: cnet_isa_02c48cb68e (IsA communization change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "communization is a kind of constitution", "pln": ["(: cnet_isa_999f2edfb8 (IsA communization constitution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commutability is a kind of changeableness", "pln": ["(: cnet_isa_16da37bf3e (IsA commutability changeableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commutation is a kind of travel", "pln": ["(: cnet_isa_7460555fdf (IsA commutation travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commutation is a kind of clemency", "pln": ["(: cnet_isa_a3503a469f (IsA commutation clemency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commutation is a kind of warrant", "pln": ["(: cnet_isa_4dbd0a9326 (IsA commutation warrant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commutation ticket is a kind of ticket", "pln": ["(: cnet_isa_e1c9b5ab6b (IsA commutation_ticket ticket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commutator is a kind of switch", "pln": ["(: cnet_isa_46f65764c5 (IsA commutator switch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commute is a kind of journey", "pln": ["(: cnet_isa_1b794715a3 (IsA commute journey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commuter is a kind of passenger train", "pln": ["(: cnet_isa_6830a82393 (IsA commuter passenger_train) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "commuter is a kind of passenger", "pln": ["(: cnet_isa_b0c89e9abd (IsA commuter passenger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "commuter traffic is a kind of traffic", "pln": ["(: cnet_isa_b42a272847 (IsA commuter_traffic traffic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compact is a kind of car", "pln": ["(: cnet_isa_d6c853632a (IsA compact car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compact is a kind of case", "pln": ["(: cnet_isa_819af95fd6 (IsA compact case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compact disk is a kind of optical disk", "pln": ["(: cnet_isa_09ba739126 (IsA compact_disk optical_disk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compact disk is a kind of recording", "pln": ["(: cnet_isa_c7e91dbe0f (IsA compact_disk recording) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compact disk burner is a kind of recorder", "pln": ["(: cnet_isa_436afb7769 (IsA compact_disk_burner recorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compaction is a kind of concentration", "pln": ["(: cnet_isa_923b2b1935 (IsA compaction concentration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compactness is a kind of solidity", "pln": ["(: cnet_isa_b3e55ac591 (IsA compactness solidity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "companion is a kind of attendant", "pln": ["(: cnet_isa_c8f94cd5f6 (IsA companion attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "companion is a kind of friend", "pln": ["(: cnet_isa_dd6350518a (IsA companion friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "companion is a kind of traveler", "pln": ["(: cnet_isa_c6fa0f82ef (IsA companion traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "companionability is a kind of sociability", "pln": ["(: cnet_isa_ad723ed68e (IsA companionability sociability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "companionway is a kind of stairway", "pln": ["(: cnet_isa_4764679c37 (IsA companionway stairway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "company is a kind of legal entity", "pln": ["(: cnet_isa_26cb685128 (IsA company legal_entity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "company is a kind of institution", "pln": ["(: cnet_isa_1792f05c49 (IsA company institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "company is a kind of organization", "pln": ["(: cnet_isa_8286b3ce58 (IsA company organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "company is a kind of social gathering", "pln": ["(: cnet_isa_6d87cc07d2 (IsA company social_gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "company is a kind of unit", "pln": ["(: cnet_isa_53b2421eec (IsA company unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "company is a kind of army unit", "pln": ["(: cnet_isa_67f5b566a3 (IsA company army_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "company is a kind of friendship", "pln": ["(: cnet_isa_65610723a0 (IsA company friendship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "company man is a kind of employee", "pln": ["(: cnet_isa_cc5ffdbeaa (IsA company_man employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "company name is a kind of name", "pln": ["(: cnet_isa_73df45e269 (IsA company_name name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "company operator is a kind of operator", "pln": ["(: cnet_isa_317ff6dabc (IsA company_operator operator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "company union is a kind of union", "pln": ["(: cnet_isa_1a38332723 (IsA company_union union) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comparative is a kind of adjective", "pln": ["(: cnet_isa_64c51fdb2f (IsA comparative adjective) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comparative is a kind of adverb", "pln": ["(: cnet_isa_b42ff9c7fe (IsA comparative adverb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "comparative anatomist is a kind of anatomist", "pln": ["(: cnet_isa_e7716429d3 (IsA comparative_anatomist anatomist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comparative anatomy is a kind of anatomy", "pln": ["(: cnet_isa_a08ca872c7 (IsA comparative_anatomy anatomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comparative literature is a kind of literary study", "pln": ["(: cnet_isa_4809d74eaa (IsA comparative_literature literary_study) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comparative negligence is a kind of negligence", "pln": ["(: cnet_isa_4b76863fb5 (IsA comparative_negligence negligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comparative psychology is a kind of psychology", "pln": ["(: cnet_isa_895b7b1bf1 (IsA comparative_psychology psychology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comparison is a kind of examination", "pln": ["(: cnet_isa_03f72e53b2 (IsA comparison examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comparison is a kind of likeness", "pln": ["(: cnet_isa_0c9c539afa (IsA comparison likeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comparison is a kind of relation", "pln": ["(: cnet_isa_f97df99e8b (IsA comparison relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compartment is a kind of room", "pln": ["(: cnet_isa_1f2805b556 (IsA compartment room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compartment is a kind of space", "pln": ["(: cnet_isa_88202fcba9 (IsA compartment space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compartment pressure is a kind of atmospheric pressure", "pln": ["(: cnet_isa_13958c7ff2 (IsA compartment_pressure atmospheric_pressure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compartmentalization is a kind of dissociation", "pln": ["(: cnet_isa_4b72cff4b2 (IsA compartmentalization dissociation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compass is a kind of drafting instrument", "pln": ["(: cnet_isa_92a22e0ca4 (IsA compass drafting_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compass is a kind of navigational instrument", "pln": ["(: cnet_isa_ef060214b2 (IsA compass navigational_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compass is a kind of capability", "pln": ["(: cnet_isa_6928794b1e (IsA compass capability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compass card is a kind of magnetic compass", "pln": ["(: cnet_isa_ee0ea9ed4a (IsA compass_card magnetic_compass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compass plant is a kind of composite", "pln": ["(: cnet_isa_abff11ee50 (IsA compass_plant composite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compass point is a kind of direction", "pln": ["(: cnet_isa_b4cc9e470c (IsA compass_point direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compass saw is a kind of handsaw", "pln": ["(: cnet_isa_4da8c1d6d8 (IsA compass_saw handsaw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compassion is a kind of mercifulness", "pln": ["(: cnet_isa_56da703d1b (IsA compassion mercifulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compassion is a kind of sympathy", "pln": ["(: cnet_isa_da6117e28d (IsA compassion sympathy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compassionate leave is a kind of leave", "pln": ["(: cnet_isa_8288efe036 (IsA compassionate_leave leave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compatibility is a kind of characteristic", "pln": ["(: cnet_isa_42e05b087f (IsA compatibility characteristic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compatibility is a kind of sympathy", "pln": ["(: cnet_isa_da24306a3e (IsA compatibility sympathy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compatible software is a kind of software", "pln": ["(: cnet_isa_81fa4bd407 (IsA compatible_software software) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compatriot is a kind of national", "pln": ["(: cnet_isa_461f180a54 (IsA compatriot national) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compendium is a kind of summary", "pln": ["(: cnet_isa_21ab2a65c5 (IsA compendium summary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compensating balance is a kind of balance", "pln": ["(: cnet_isa_a9e2b6e5ec (IsA compensating_balance balance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compensation is a kind of recompense", "pln": ["(: cnet_isa_2fc647b5a7 (IsA compensation recompense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compensation is a kind of defense mechanism", "pln": ["(: cnet_isa_af6ab9b3f7 (IsA compensation defense_mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compensatory time is a kind of time off", "pln": ["(: cnet_isa_fe4df785e3 (IsA compensatory_time time_off) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compere is a kind of master of ceremony", "pln": ["(: cnet_isa_f71f292080 (IsA compere master_of_ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "competence is a kind of ability", "pln": ["(: cnet_isa_81c19b01f7 (IsA competence ability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "competence hearing is a kind of hearing", "pln": ["(: cnet_isa_ab4896de27 (IsA competence_hearing hearing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "competition is a kind of group action", "pln": ["(: cnet_isa_7bb81306d3 (IsA competition group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "competition is a kind of business relation", "pln": ["(: cnet_isa_2915a8538a (IsA competition business_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "competitiveness is a kind of aggressiveness", "pln": ["(: cnet_isa_4e9f9c84b9 (IsA competitiveness aggressiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compilation is a kind of collection", "pln": ["(: cnet_isa_f9cb987293 (IsA compilation collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compiler is a kind of program", "pln": ["(: cnet_isa_c99febe8f1 (IsA compiler program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complacency is a kind of satisfaction", "pln": ["(: cnet_isa_c8410013c1 (IsA complacency satisfaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complaint is a kind of pleading", "pln": ["(: cnet_isa_fc4f05991a (IsA complaint pleading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complaint is a kind of cry", "pln": ["(: cnet_isa_779ac16cf6 (IsA complaint cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "complaint is a kind of objection", "pln": ["(: cnet_isa_ae3e4ac0d4 (IsA complaint objection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "complementary angles is a kind of angle", "pln": ["(: cnet_isa_2c062f95f5 (IsA complementary_angles angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complaisance is a kind of agreeableness", "pln": ["(: cnet_isa_955a0893b8 (IsA complaisance agreeableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complement is a kind of adjunct", "pln": ["(: cnet_isa_4c7b888c49 (IsA complement adjunct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complement is a kind of counterpart", "pln": ["(: cnet_isa_b62312f8a4 (IsA complement counterpart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complement is a kind of construction", "pln": ["(: cnet_isa_3612dac6b3 (IsA complement construction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complement is a kind of work force", "pln": ["(: cnet_isa_bc296e3c46 (IsA complement work_force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complement is a kind of count", "pln": ["(: cnet_isa_e0754ba006 (IsA complement count) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complement is a kind of enzyme", "pln": ["(: cnet_isa_d22ee9a90f (IsA complement enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complement fixation is a kind of immune response", "pln": ["(: cnet_isa_f66c5815ec (IsA complement_fixation immune_response) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complement fixation test is a kind of blood test", "pln": ["(: cnet_isa_6334820b8c (IsA complement_fixation_test blood_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complementarity is a kind of reciprocality", "pln": ["(: cnet_isa_56d8ca034d (IsA complementarity reciprocality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complementarity is a kind of ungradable opposition", "pln": ["(: cnet_isa_c0299ab4ac (IsA complementarity ungradable_opposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complementary angle is a kind of angle", "pln": ["(: cnet_isa_4768e0707f (IsA complementary_angle angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complementary color is a kind of chromatic color", "pln": ["(: cnet_isa_2d7fcdbf35 (IsA complementary_color chromatic_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complementary distribution is a kind of distribution", "pln": ["(: cnet_isa_dc41dda0a7 (IsA complementary_distribution distribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complementary dna is a kind of deoxyribonucleic acid", "pln": ["(: cnet_isa_6022a5e310 (IsA complementary_dna deoxyribonucleic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complementary medicine is a kind of medicine", "pln": ["(: cnet_isa_9c46c802b9 (IsA complementary_medicine medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complementation is a kind of grammatical relation", "pln": ["(: cnet_isa_9c0b56b973 (IsA complementation grammatical_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complete blood count is a kind of blood count", "pln": ["(: cnet_isa_aef1dbd525 (IsA complete_blood_count blood_count) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complete fracture is a kind of fracture", "pln": ["(: cnet_isa_087a7b7a23 (IsA complete_fracture fracture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "completeness is a kind of logicality", "pln": ["(: cnet_isa_d95ea4d586 (IsA completeness logicality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "completeness is a kind of integrity", "pln": ["(: cnet_isa_013489144d (IsA completeness integrity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "completion is a kind of termination", "pln": ["(: cnet_isa_c008539809 (IsA completion termination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "completion is a kind of maneuver", "pln": ["(: cnet_isa_b9302a3ea9 (IsA completion maneuver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complex is a kind of whole", "pln": ["(: cnet_isa_c5d50800ea (IsA complex whole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complex is a kind of feeling", "pln": ["(: cnet_isa_c90e393284 (IsA complex feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complex is a kind of compound", "pln": ["(: cnet_isa_2130b827e7 (IsA complex compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complex absence is a kind of petit mal epilepsy", "pln": ["(: cnet_isa_c0f410dfa3 (IsA complex_absence petit_mal_epilepsy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complex conjugate is a kind of complex number", "pln": ["(: cnet_isa_b43373056a (IsA complex_conjugate complex_number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complex fraction is a kind of fraction", "pln": ["(: cnet_isa_8005fb6afb (IsA complex_fraction fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "complex instruction set computing is a kind of computer architecture", "pln": ["(: cnet_isa_fa4795d9c6 (IsA complex_instruction_set_computing computer_architecture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "complex number is a kind of number", "pln": ["(: cnet_isa_1a4d4d35fb (IsA complex_number number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complex plane is a kind of cartesian plane", "pln": ["(: cnet_isa_b9231754a2 (IsA complex_plane cartesian_plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complex sentence is a kind of sentence", "pln": ["(: cnet_isa_9ccfc35b4e (IsA complex_sentence sentence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "complexifier is a kind of person", "pln": ["(: cnet_isa_d2d15a6c8d (IsA complexifier person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complexion is a kind of appearance", "pln": ["(: cnet_isa_6d647f1417 (IsA complexion appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complexion is a kind of color", "pln": ["(: cnet_isa_b693984e30 (IsA complexion color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complexion is a kind of nature", "pln": ["(: cnet_isa_3d51ce63ac (IsA complexion nature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complexion is a kind of point of view", "pln": ["(: cnet_isa_0831a0706c (IsA complexion point_of_view) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "complexion is a kind of combination", "pln": ["(: cnet_isa_415523c4c8 (IsA complexion combination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complexity is a kind of quality", "pln": ["(: cnet_isa_df13078b64 (IsA complexity quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compliance is a kind of group action", "pln": ["(: cnet_isa_66abce7455 (IsA compliance group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complicatedness is a kind of complexity", "pln": ["(: cnet_isa_c0ab4009ef (IsA complicatedness complexity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complication is a kind of hindrance", "pln": ["(: cnet_isa_94e60394d7 (IsA complication hindrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complication is a kind of development", "pln": ["(: cnet_isa_e48f446efd (IsA complication development) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complication is a kind of disease", "pln": ["(: cnet_isa_d6ab69e7cd (IsA complication disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complication is a kind of situation", "pln": ["(: cnet_isa_a165945737 (IsA complication situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "complicity is a kind of guilt", "pln": ["(: cnet_isa_c0609f4f17 (IsA complicity guilt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compliment is a kind of praise", "pln": ["(: cnet_isa_ab2633c1d4 (IsA compliment praise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compline is a kind of canonical hour", "pln": ["(: cnet_isa_ceb28b3581 (IsA compline canonical_hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "component is a kind of part", "pln": ["(: cnet_isa_bab4423273 (IsA component part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "composer is a kind of musician", "pln": ["(: cnet_isa_2070ad9a10 (IsA composer musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "composing is a kind of creating by mental act", "pln": ["(: cnet_isa_2b6fd73f2b (IsA composing creating_by_mental_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compositae is a kind of asterid dicot family", "pln": ["(: cnet_isa_fd8cb8796b (IsA compositae asterid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "composite is a kind of flower", "pln": ["(: cnet_isa_38d79a8fcb (IsA composite flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "composite material is a kind of material", "pln": ["(: cnet_isa_21eeaa3eb4 (IsA composite_material material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "composite number is a kind of number", "pln": ["(: cnet_isa_4fbb1ed947 (IsA composite_number number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "composite order is a kind of order", "pln": ["(: cnet_isa_271b7b20f0 (IsA composite_order order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compositeness is a kind of property", "pln": ["(: cnet_isa_7d7bd07a04 (IsA compositeness property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "composition is a kind of creation", "pln": ["(: cnet_isa_4ce0373ebd (IsA composition creation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "composition is a kind of placement", "pln": ["(: cnet_isa_8a01da32ec (IsA composition placement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "composition is a kind of essay", "pln": ["(: cnet_isa_48e568a26b (IsA composition essay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "composition is a kind of mixture", "pln": ["(: cnet_isa_ba3a227680 (IsA composition mixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "composition of earth is a kind of 17 percent magnesium", "pln": ["(: cnet_isa_27e8b9357a (IsA composition_of_earth 17_percent_magnesium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compositor s case is a kind of receptacle", "pln": ["(: cnet_isa_e2d7c9e361 (IsA compositor_s_case receptacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compositor is a kind of printer", "pln": ["(: cnet_isa_ca1df1b9c5 (IsA compositor printer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compost is a kind of composition", "pln": ["(: cnet_isa_f7a3038161 (IsA compost composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compost heap is a kind of pile", "pln": ["(: cnet_isa_8cfd262df2 (IsA compost_heap pile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "composure is a kind of disposition", "pln": ["(: cnet_isa_01d2649a57 (IsA composure disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compote is a kind of dessert", "pln": ["(: cnet_isa_93a8b5dc29 (IsA compote dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compound is a kind of enclosure", "pln": ["(: cnet_isa_6a277c42d6 (IsA compound enclosure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compound is a kind of chemical", "pln": ["(: cnet_isa_5c3f1ff166 (IsA compound chemical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "compound is a kind of whole", "pln": ["(: cnet_isa_e26c05aaa1 (IsA compound whole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "compound lens is a kind of lens", "pln": ["(: cnet_isa_ca7079f365 (IsA compound_lens lens) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compound eye is a kind of eye", "pln": ["(: cnet_isa_536aa394cd (IsA compound_eye eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compound fracture is a kind of fracture", "pln": ["(: cnet_isa_d23870cdae (IsA compound_fracture fracture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compound interest is a kind of interest", "pln": ["(: cnet_isa_fbf9899037 (IsA compound_interest interest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compound leaf is a kind of leaf", "pln": ["(: cnet_isa_9e73ebbd51 (IsA compound_leaf leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compound len is a kind of len", "pln": ["(: cnet_isa_86e9c9b909 (IsA compound_len len) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compound lever is a kind of lever", "pln": ["(: cnet_isa_60c68beca7 (IsA compound_lever lever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compound microscope is a kind of light microscope", "pln": ["(: cnet_isa_d68f238d93 (IsA compound_microscope light_microscope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compound morphology is a kind of morphology", "pln": ["(: cnet_isa_66d424163f (IsA compound_morphology morphology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compound number is a kind of number", "pln": ["(: cnet_isa_948c775279 (IsA compound_number number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compound pistil is a kind of pistil", "pln": ["(: cnet_isa_2334af563a (IsA compound_pistil pistil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compound sentence is a kind of sentence", "pln": ["(: cnet_isa_4167fa25f4 (IsA compound_sentence sentence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comprehensibility is a kind of quality", "pln": ["(: cnet_isa_e53d10f53a (IsA comprehensibility quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "comprehension is a kind of understanding", "pln": ["(: cnet_isa_3fcee7c255 (IsA comprehension understanding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comprehensive examination is a kind of examination", "pln": ["(: cnet_isa_63413a1d22 (IsA comprehensive_examination examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "comprehensive school is a kind of secondary school", "pln": ["(: cnet_isa_a561671515 (IsA comprehensive_school secondary_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comprehensiveness is a kind of completeness", "pln": ["(: cnet_isa_c08ccd7509 (IsA comprehensiveness completeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compress is a kind of dressing", "pln": ["(: cnet_isa_51ea02edc7 (IsA compress dressing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compressed air is a kind of compressed gas", "pln": ["(: cnet_isa_e7d2ea3f0c (IsA compressed_air compressed_gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compressed gas is a kind of gas", "pln": ["(: cnet_isa_f2125077aa (IsA compressed_gas gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compressed gas is a kind of propellant", "pln": ["(: cnet_isa_da6689af6a (IsA compressed_gas propellant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compressibility is a kind of softness", "pln": ["(: cnet_isa_077f8a9f14 (IsA compressibility softness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compression is a kind of encoding", "pln": ["(: cnet_isa_18c84d4f6f (IsA compression encoding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compression is a kind of press", "pln": ["(: cnet_isa_2dd8099367 (IsA compression press) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compression is a kind of shrinking", "pln": ["(: cnet_isa_711603b92d (IsA compression shrinking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compression bandage is a kind of bandage", "pln": ["(: cnet_isa_58bf8f614f (IsA compression_bandage bandage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compression fracture is a kind of fracture", "pln": ["(: cnet_isa_1aff7544ea (IsA compression_fracture fracture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compressor is a kind of mechanical device", "pln": ["(: cnet_isa_0c46045e22 (IsA compressor mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compromise is a kind of cooperation", "pln": ["(: cnet_isa_b2ccf7ff2c (IsA compromise cooperation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compromise is a kind of accommodation", "pln": ["(: cnet_isa_74ce533cdb (IsA compromise accommodation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compromise verdict is a kind of verdict", "pln": ["(: cnet_isa_e0b9a130b8 (IsA compromise_verdict verdict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compromiser is a kind of negotiator", "pln": ["(: cnet_isa_4bae668176 (IsA compromiser negotiator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compsognathus is a kind of theropod", "pln": ["(: cnet_isa_0fe8a9d619 (IsA compsognathus theropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comptonia is a kind of dicot genus", "pln": ["(: cnet_isa_73dbd44f1e (IsA comptonia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comptroller general is a kind of official", "pln": ["(: cnet_isa_c70d3b11e2 (IsA comptroller_general official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comptroller of currency is a kind of agency", "pln": ["(: cnet_isa_5e1c7a30ad (IsA comptroller_of_currency agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comptroller of currency is a kind of official", "pln": ["(: cnet_isa_9ce537c72d (IsA comptroller_of_currency official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comptrollership is a kind of position", "pln": ["(: cnet_isa_c3f22b64f6 (IsA comptrollership position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compulsion is a kind of causing", "pln": ["(: cnet_isa_4236101cc1 (IsA compulsion causing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "compulsion is a kind of irrational impulse", "pln": ["(: cnet_isa_43bfd7b075 (IsA compulsion irrational_impulse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compulsion is a kind of irrational motive", "pln": ["(: cnet_isa_529e283336 (IsA compulsion irrational_motive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compulsive is a kind of person", "pln": ["(: cnet_isa_76b57db515 (IsA compulsive person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "compulsive hoarding is a kind of symptom of ocd", "pln": ["(: cnet_isa_ce63821ac5 (IsA compulsive_hoarding symptom_of_ocd) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "compulsiveness is a kind of trait", "pln": ["(: cnet_isa_b73b8a6ce3 (IsA compulsiveness trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compulsory process is a kind of legal right", "pln": ["(: cnet_isa_5c706f9710 (IsA compulsory_process legal_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "compunction is a kind of sorrow", "pln": ["(: cnet_isa_1c8900d624 (IsA compunction sorrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computational linguist is a kind of computer scientist", "pln": ["(: cnet_isa_0dd6626189 (IsA computational_linguist computer_scientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computational linguist is a kind of linguist", "pln": ["(: cnet_isa_ad127e3a49 (IsA computational_linguist linguist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computational linguistic is a kind of linguistic", "pln": ["(: cnet_isa_0272e3ba8c (IsA computational_linguistic linguistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer is a kind of electronic device", "pln": ["(: cnet_isa_2f80e69f76 (IsA computer electronic_device) (STV 1.0 0.9748))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer is a kind of machine", "pln": ["(: cnet_isa_a8242d49e2 (IsA computer machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer is a kind of one type of machine", "pln": ["(: cnet_isa_e54b5557aa (IsA computer one_type_of_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer accessory is a kind of accessory", "pln": ["(: cnet_isa_2ac64844f7 (IsA computer_accessory accessory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "computer aided design is a kind of software", "pln": ["(: cnet_isa_9bcf7b7d6d (IsA computer_aided_design software) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "computer architecture is a kind of specification", "pln": ["(: cnet_isa_d7ad832920 (IsA computer_architecture specification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "computers is a kind of not sentient beings", "pln": ["(: cnet_isa_c1e5f69845 (IsA computers not_sentient_beings) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer architecture is a kind of structure", "pln": ["(: cnet_isa_356b32b1ea (IsA computer_architecture structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer business is a kind of manufacturer", "pln": ["(: cnet_isa_c256a0fc00 (IsA computer_business manufacturer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer chip is a kind of integrated circuit", "pln": ["(: cnet_isa_a6b7115be6 (IsA computer_chip integrated_circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer circuit is a kind of circuit", "pln": ["(: cnet_isa_b8920b580f (IsA computer_circuit circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer dealer is a kind of dealer", "pln": ["(: cnet_isa_aad462d7b3 (IsA computer_dealer dealer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer expert is a kind of computer user", "pln": ["(: cnet_isa_46cd436071 (IsA computer_expert computer_user) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer expert is a kind of expert", "pln": ["(: cnet_isa_92581fc6fe (IsA computer_expert expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer file is a kind of file", "pln": ["(: cnet_isa_ee8c2fbe01 (IsA computer_file file) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer game is a kind of game", "pln": ["(: cnet_isa_8b9a6be206 (IsA computer_game game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer graphic is a kind of ikon", "pln": ["(: cnet_isa_aceed4ea5d (IsA computer_graphic ikon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer graphic is a kind of graphic", "pln": ["(: cnet_isa_201684586f (IsA computer_graphic graphic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer industry is a kind of industry", "pln": ["(: cnet_isa_aac0cb9691 (IsA computer_industry industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer keyboard is a kind of data input device", "pln": ["(: cnet_isa_48723b1725 (IsA computer_keyboard data_input_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer keyboard is a kind of keyboard", "pln": ["(: cnet_isa_722fd4e088 (IsA computer_keyboard keyboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer language is a kind of programming language", "pln": ["(: cnet_isa_be7b343a46 (IsA computer_language programming_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer memory unit is a kind of unit of measurement", "pln": ["(: cnet_isa_deaf8117cf (IsA computer_memory_unit unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer monitor is a kind of monitor", "pln": ["(: cnet_isa_1fe83729e4 (IsA computer_monitor monitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer network is a kind of network", "pln": ["(: cnet_isa_1b0aa49368 (IsA computer_network network) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer operation is a kind of operation", "pln": ["(: cnet_isa_1a1177c4f1 (IsA computer_operation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer paper is a kind of paper", "pln": ["(: cnet_isa_f59e41ade8 (IsA computer_paper paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer program is a kind of program", "pln": ["(: cnet_isa_5c244b0200 (IsA computer_program program) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer science is a kind of science", "pln": ["(: cnet_isa_9f484da489 (IsA computer_science science) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer science is a kind of engineering", "pln": ["(: cnet_isa_61a1c84719 (IsA computer_science engineering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer scientist is a kind of computer user", "pln": ["(: cnet_isa_9602344c86 (IsA computer_scientist computer_user) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer scientist is a kind of scientist", "pln": ["(: cnet_isa_929cba226e (IsA computer_scientist scientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer screen is a kind of screen", "pln": ["(: cnet_isa_5e052eb156 (IsA computer_screen screen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer store is a kind of shop", "pln": ["(: cnet_isa_990ff224f6 (IsA computer_store shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer store owner is a kind of worker", "pln": ["(: cnet_isa_096893c1d4 (IsA computer_store_owner worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer system is a kind of system", "pln": ["(: cnet_isa_fe1ac52675 (IsA computer_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer technology is a kind of technology", "pln": ["(: cnet_isa_cc86ee4fb2 (IsA computer_technology technology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer user is a kind of person", "pln": ["(: cnet_isa_0cd0322e58 (IsA computer_user person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer vision is a kind of artificial intelligence", "pln": ["(: cnet_isa_d187863188 (IsA computer_vision artificial_intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computerization is a kind of automation", "pln": ["(: cnet_isa_8ac564b7d8 (IsA computerization automation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computerized axial tomography scanner is a kind of tomograph", "pln": ["(: cnet_isa_2dbe97dd0f (IsA computerized_axial_tomography_scanner tomograph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computerized tomography is a kind of x raying", "pln": ["(: cnet_isa_4c5a8e427c (IsA computerized_tomography x_raying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "computer is a kind of not sentient being", "pln": ["(: cnet_isa_9befc1847c (IsA computer not_sentient_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comrade is a kind of communist", "pln": ["(: cnet_isa_1828d5bd1c (IsA comrade communist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comstock mealybug is a kind of mealybug", "pln": ["(: cnet_isa_b97e71dc09 (IsA comstock_mealybug mealybug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comstockery is a kind of censoring", "pln": ["(: cnet_isa_f2a9c49110 (IsA comstockery censoring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "comtism is a kind of positivism", "pln": ["(: cnet_isa_8cf7ef4105 (IsA comtism positivism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "con is a kind of argument", "pln": ["(: cnet_isa_40e9d34feb (IsA con argument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conacaste is a kind of tree", "pln": ["(: cnet_isa_09b467685f (IsA conacaste tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concatenation is a kind of joining", "pln": ["(: cnet_isa_9617729429 (IsA concatenation joining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concatenation is a kind of connection", "pln": ["(: cnet_isa_1875e49461 (IsA concatenation connection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concave polygon is a kind of polygon", "pln": ["(: cnet_isa_48c6f72142 (IsA concave_polygon polygon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concave polyhedron is a kind of polyhedron", "pln": ["(: cnet_isa_821ee6313d (IsA concave_polyhedron polyhedron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concave shape is a kind of solid", "pln": ["(: cnet_isa_1d1b4a0f83 (IsA concave_shape solid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concavity is a kind of shape", "pln": ["(: cnet_isa_49a55eb6e5 (IsA concavity shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concealment is a kind of activity", "pln": ["(: cnet_isa_c69259b525 (IsA concealment activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conceit is a kind of trait", "pln": ["(: cnet_isa_401ef9e0ac (IsA conceit trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conceit is a kind of device", "pln": ["(: cnet_isa_a6cbfd6d5b (IsA conceit device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conceit is a kind of trope", "pln": ["(: cnet_isa_45d407f719 (IsA conceit trope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conceit is a kind of turn of expression", "pln": ["(: cnet_isa_035febbc5f (IsA conceit turn_of_expression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conceivableness is a kind of possibility", "pln": ["(: cnet_isa_b1bd8dedb5 (IsA conceivableness possibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concentrate is a kind of prototype", "pln": ["(: cnet_isa_ec3747337b (IsA concentrate prototype) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concentrate is a kind of foodstuff", "pln": ["(: cnet_isa_6e4e076df2 (IsA concentrate foodstuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concentrated fire is a kind of fire", "pln": ["(: cnet_isa_6fd1bb75a0 (IsA concentrated_fire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concentration is a kind of assembly", "pln": ["(: cnet_isa_16ff644d93 (IsA concentration assembly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concentration is a kind of strengthening", "pln": ["(: cnet_isa_314df6fb61 (IsA concentration strengthening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concentration is a kind of compactness", "pln": ["(: cnet_isa_20dccf4bcf (IsA concentration compactness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concentration is a kind of property", "pln": ["(: cnet_isa_c88b304b32 (IsA concentration property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concentration is a kind of attention", "pln": ["(: cnet_isa_e7797ae5ef (IsA concentration attention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concentration is a kind of increase", "pln": ["(: cnet_isa_05a8d3249d (IsA concentration increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concentration camp is a kind of camp", "pln": ["(: cnet_isa_3b2d05cfac (IsA concentration_camp camp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concentration camp is a kind of misery", "pln": ["(: cnet_isa_380bffe395 (IsA concentration_camp misery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concentration gradient is a kind of gradient", "pln": ["(: cnet_isa_13398989d8 (IsA concentration_gradient gradient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concentricity is a kind of circularity", "pln": ["(: cnet_isa_50114b4c98 (IsA concentricity circularity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "concept is a kind of idea", "pln": ["(: cnet_isa_1b3a71067f (IsA concept idea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concept album is a kind of album", "pln": ["(: cnet_isa_53b563126f (IsA concept_album album) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conception is a kind of sexual activity", "pln": ["(: cnet_isa_0fd434e8dc (IsA conception sexual_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conceptual semantic is a kind of semantic", "pln": ["(: cnet_isa_c76c595a62 (IsA conceptual_semantic semantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conceptualism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_1eb8519179 (IsA conceptualism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conceptualization is a kind of creating by mental act", "pln": ["(: cnet_isa_1d156f9b4f (IsA conceptualization creating_by_mental_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conceptualization is a kind of concept", "pln": ["(: cnet_isa_0be19b71e6 (IsA conceptualization concept) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concern is a kind of interest", "pln": ["(: cnet_isa_344bb550a1 (IsA concern interest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concern is a kind of negative stimulus", "pln": ["(: cnet_isa_67eda4cf0e (IsA concern negative_stimulus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concern is a kind of anxiety", "pln": ["(: cnet_isa_f3b9526b26 (IsA concern anxiety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concern is a kind of sympathy", "pln": ["(: cnet_isa_f68b829040 (IsA concern sympathy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concert is a kind of show", "pln": ["(: cnet_isa_308ff41727 (IsA concert show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concert is a kind of performance", "pln": ["(: cnet_isa_885115435c (IsA concert performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concert band is a kind of band", "pln": ["(: cnet_isa_62025f3a9c (IsA concert_band band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concert goer is a kind of consumer", "pln": ["(: cnet_isa_debf67cfcf (IsA concert_goer consumer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concert grand is a kind of grand piano", "pln": ["(: cnet_isa_9602fdcd17 (IsA concert_grand grand_piano) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "concert hall is a kind of hall", "pln": ["(: cnet_isa_5a212e709b (IsA concert_hall hall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "concert pitch is a kind of pitch", "pln": ["(: cnet_isa_43035e6408 (IsA concert_pitch pitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concertina is a kind of barbed wire", "pln": ["(: cnet_isa_825b908bb2 (IsA concertina barbed_wire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concertina is a kind of free reed instrument", "pln": ["(: cnet_isa_da6803e221 (IsA concertina free_reed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concertinist is a kind of musician", "pln": ["(: cnet_isa_9ef2d98481 (IsA concertinist musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concerto is a kind of classical music", "pln": ["(: cnet_isa_91d20d3e30 (IsA concerto classical_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concerto grosso is a kind of concerto", "pln": ["(: cnet_isa_b88b976f93 (IsA concerto_grosso concerto) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concession is a kind of agreement", "pln": ["(: cnet_isa_ce97b3231d (IsA concession agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concession is a kind of assent", "pln": ["(: cnet_isa_4468501708 (IsA concession assent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concession is a kind of contract", "pln": ["(: cnet_isa_dbb81f18c8 (IsA concession contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "concessionaire is a kind of small businessman", "pln": ["(: cnet_isa_9164bba08f (IsA concessionaire small_businessman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conch is a kind of gastropod", "pln": ["(: cnet_isa_70094ba5f6 (IsA conch gastropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concha is a kind of structure", "pln": ["(: cnet_isa_85acc96f3e (IsA concha structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "conchfish is a kind of cardinalfish", "pln": ["(: cnet_isa_abdbb5cdf9 (IsA conchfish cardinalfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conchologist is a kind of collector", "pln": ["(: cnet_isa_27f5ef80dd (IsA conchologist collector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conchology is a kind of collection", "pln": ["(: cnet_isa_2572ed108d (IsA conchology collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conchology is a kind of malacology", "pln": ["(: cnet_isa_7238e8a91c (IsA conchology malacology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concierge is a kind of caretaker", "pln": ["(: cnet_isa_42e0ee5c25 (IsA concierge caretaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conciliation is a kind of mediation", "pln": ["(: cnet_isa_3cad96602c (IsA conciliation mediation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conciliation is a kind of peace", "pln": ["(: cnet_isa_af1ae3cd08 (IsA conciliation peace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conciliator is a kind of mediator", "pln": ["(: cnet_isa_9dfa51d7f9 (IsA conciliator mediator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conciseness is a kind of terseness", "pln": ["(: cnet_isa_c969aca174 (IsA conciseness terseness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "conclave is a kind of meeting", "pln": ["(: cnet_isa_c2acc14f99 (IsA conclave meeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conclusion is a kind of assumption", "pln": ["(: cnet_isa_054baf7f53 (IsA conclusion assumption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conclusion is a kind of proposition", "pln": ["(: cnet_isa_25223dfe16 (IsA conclusion proposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conclusion is a kind of section", "pln": ["(: cnet_isa_6915ec6ed7 (IsA conclusion section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conclusion is a kind of settlement", "pln": ["(: cnet_isa_a05f2ae16d (IsA conclusion settlement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concoction is a kind of invention", "pln": ["(: cnet_isa_025f1abf8f (IsA concoction invention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concoction is a kind of mix", "pln": ["(: cnet_isa_f40ec1d3af (IsA concoction mix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concoction is a kind of foodstuff", "pln": ["(: cnet_isa_8af4c7e376 (IsA concoction foodstuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concomitance is a kind of concurrence", "pln": ["(: cnet_isa_46f6d72675 (IsA concomitance concurrence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concord grape is a kind of fox grape", "pln": ["(: cnet_isa_4e88996f65 (IsA concord_grape fox_grape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concordance is a kind of index", "pln": ["(: cnet_isa_88dad00f1e (IsA concordance index) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concourse is a kind of merging", "pln": ["(: cnet_isa_f838c657aa (IsA concourse merging) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concourse is a kind of hallway", "pln": ["(: cnet_isa_783f8b37f3 (IsA concourse hallway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concrete is a kind of building material", "pln": ["(: cnet_isa_733688556c (IsA concrete building_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concrete is a kind of paving material", "pln": ["(: cnet_isa_a3115c93e4 (IsA concrete paving_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concrete jungle is a kind of jungle", "pln": ["(: cnet_isa_48bd5b4fcf (IsA concrete_jungle jungle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concrete mixer is a kind of machine", "pln": ["(: cnet_isa_1dfe498653 (IsA concrete_mixer machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "concreteness is a kind of materiality", "pln": ["(: cnet_isa_57a825d66b (IsA concreteness materiality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concretion is a kind of natural process", "pln": ["(: cnet_isa_fda6ac2624 (IsA concretion natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concretism is a kind of representation", "pln": ["(: cnet_isa_ac442f922c (IsA concretism representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concubinage is a kind of cohabitation", "pln": ["(: cnet_isa_6c1626410c (IsA concubinage cohabitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concubine is a kind of mistress", "pln": ["(: cnet_isa_973852a0c7 (IsA concubine mistress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concurrence is a kind of cooperation", "pln": ["(: cnet_isa_d579646f58 (IsA concurrence cooperation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "concurrence is a kind of simultaneity", "pln": ["(: cnet_isa_b47bd6337a (IsA concurrence simultaneity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concurrence is a kind of agreement", "pln": ["(: cnet_isa_40fbcee5dc (IsA concurrence agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concurrent negligence is a kind of negligence", "pln": ["(: cnet_isa_9b21f8ec20 (IsA concurrent_negligence negligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concurrent operation is a kind of operation", "pln": ["(: cnet_isa_0ec8724339 (IsA concurrent_operation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concurring opinion is a kind of opinion", "pln": ["(: cnet_isa_8fa6aa90b8 (IsA concurring_opinion opinion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concussion is a kind of bump", "pln": ["(: cnet_isa_cbfa631d29 (IsA concussion bump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "concussion is a kind of injury", "pln": ["(: cnet_isa_e8b8ed792c (IsA concussion injury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condemnation is a kind of disapproval", "pln": ["(: cnet_isa_bec7f4d8d5 (IsA condemnation disapproval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condemnation is a kind of condition", "pln": ["(: cnet_isa_b9a4a122b8 (IsA condemnation condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condensate is a kind of fresh water", "pln": ["(: cnet_isa_f97dd5b2e2 (IsA condensate fresh_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condensation is a kind of summary", "pln": ["(: cnet_isa_ec8db1b6e9 (IsA condensation summary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condensation is a kind of atmospheric phenomenon", "pln": ["(: cnet_isa_01093b2378 (IsA condensation atmospheric_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condensation is a kind of natural process", "pln": ["(: cnet_isa_ff0dea3e6e (IsA condensation natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condensation is a kind of process", "pln": ["(: cnet_isa_6c79a41b8e (IsA condensation process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condensation pump is a kind of air pump", "pln": ["(: cnet_isa_5ba8871c47 (IsA condensation_pump air_pump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condensed milk is a kind of milk", "pln": ["(: cnet_isa_5668cc52fa (IsA condensed_milk milk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condenser is a kind of apparatus", "pln": ["(: cnet_isa_3f00688850 (IsA condenser apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "condenser is a kind of coil", "pln": ["(: cnet_isa_65d8c6cc4b (IsA condenser coil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condenser is a kind of len", "pln": ["(: cnet_isa_00aa3a6a93 (IsA condenser len) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condenser microphone is a kind of microphone", "pln": ["(: cnet_isa_5ebbaf7345 (IsA condenser_microphone microphone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condensing is a kind of compression", "pln": ["(: cnet_isa_f68f0906e2 (IsA condensing compression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condescension is a kind of affability", "pln": ["(: cnet_isa_0b7d42cdea (IsA condescension affability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condescension is a kind of arrogance", "pln": ["(: cnet_isa_e39d1ec677 (IsA condescension arrogance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condescension is a kind of disparagement", "pln": ["(: cnet_isa_d66652fa04 (IsA condescension disparagement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condiment is a kind of flavorer", "pln": ["(: cnet_isa_159af96d8f (IsA condiment flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condition is a kind of procedure", "pln": ["(: cnet_isa_b10aae86a4 (IsA condition procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condition is a kind of premise", "pln": ["(: cnet_isa_da2c448d6a (IsA condition premise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condition is a kind of statement", "pln": ["(: cnet_isa_7554f8450e (IsA condition statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condition is a kind of good health", "pln": ["(: cnet_isa_cc8fc054de (IsA condition good_health) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "condition is a kind of illness", "pln": ["(: cnet_isa_dc1edc52ef (IsA condition illness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condition is a kind of state", "pln": ["(: cnet_isa_ee522aac45 (IsA condition state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conditional contract is a kind of contract", "pln": ["(: cnet_isa_84cec1643a (IsA conditional_contract contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conditional probability is a kind of probability", "pln": ["(: cnet_isa_4bff49a3e1 (IsA conditional_probability probability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conditional reflex is a kind of learned reaction", "pln": ["(: cnet_isa_bb7ce64871 (IsA conditional_reflex learned_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conditional sale is a kind of sale", "pln": ["(: cnet_isa_2ba3196525 (IsA conditional_sale sale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conditional sale is a kind of security interest", "pln": ["(: cnet_isa_2e5bfb3de7 (IsA conditional_sale security_interest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conditionality is a kind of state", "pln": ["(: cnet_isa_f6187c6e03 (IsA conditionality state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conditioned avoidance is a kind of conditional reflex", "pln": ["(: cnet_isa_0ee0a86bbc (IsA conditioned_avoidance conditional_reflex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conditioned emotional response is a kind of emotion", "pln": ["(: cnet_isa_400d7a285d (IsA conditioned_emotional_response emotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "conditioned stimulus is a kind of stimulation", "pln": ["(: cnet_isa_e9a674110d (IsA conditioned_stimulus stimulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conditioner is a kind of cardiopulmonary exercise", "pln": ["(: cnet_isa_6409e01bc9 (IsA conditioner cardiopulmonary_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conditioner is a kind of softener", "pln": ["(: cnet_isa_a845b90572 (IsA conditioner softener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conditioner is a kind of coach", "pln": ["(: cnet_isa_147dff30e6 (IsA conditioner coach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conditioning is a kind of learning", "pln": ["(: cnet_isa_19ab2440f1 (IsA conditioning learning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condition is a kind of context", "pln": ["(: cnet_isa_1791501365 (IsA condition context) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condolence is a kind of acknowledgment", "pln": ["(: cnet_isa_91f1ae73d3 (IsA condolence acknowledgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condom is a kind of contraceptive", "pln": ["(: cnet_isa_5da22cfeea (IsA condom contraceptive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condominium is a kind of dwelling", "pln": ["(: cnet_isa_5e9fb063a3 (IsA condominium dwelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condominium is a kind of housing", "pln": ["(: cnet_isa_589c0c7e32 (IsA condominium housing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condom is a kind of protection", "pln": ["(: cnet_isa_6599b81afb (IsA condom protection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condonation is a kind of forgiveness", "pln": ["(: cnet_isa_5b265b88fd (IsA condonation forgiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condor is a kind of new world vulture", "pln": ["(: cnet_isa_467a7b4bd0 (IsA condor new_world_vulture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conductance is a kind of electrical phenomenon", "pln": ["(: cnet_isa_1113a6275e (IsA conductance electrical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conductance unit is a kind of electromagnetic unit", "pln": ["(: cnet_isa_c2b3d73c36 (IsA conductance_unit electromagnetic_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conducting is a kind of administration", "pln": ["(: cnet_isa_5c1ca3ecb2 (IsA conducting administration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conducting is a kind of management", "pln": ["(: cnet_isa_f9c950b21b (IsA conducting management) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conduction is a kind of physical phenomenon", "pln": ["(: cnet_isa_3f93dd317e (IsA conduction physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conduction anesthesia is a kind of anesthesia", "pln": ["(: cnet_isa_4c6d4fd8bc (IsA conduction_anesthesia anesthesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conduction aphasia is a kind of aphasia", "pln": ["(: cnet_isa_af0d887c57 (IsA conduction_aphasia aphasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conductive hearing loss is a kind of hearing impairment", "pln": ["(: cnet_isa_6d66952954 (IsA conductive_hearing_loss hearing_impairment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conductor is a kind of device", "pln": ["(: cnet_isa_59c6fc9e9e (IsA conductor device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conductor is a kind of collector", "pln": ["(: cnet_isa_51869d140a (IsA conductor collector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conductor is a kind of musician", "pln": ["(: cnet_isa_a06144963d (IsA conductor musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conductor is a kind of material", "pln": ["(: cnet_isa_982bdf3423 (IsA conductor material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conductress is a kind of conductor", "pln": ["(: cnet_isa_145521de07 (IsA conductress conductor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conduit is a kind of passage", "pln": ["(: cnet_isa_d2ed2c573e (IsA conduit passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "condylar process is a kind of condyle", "pln": ["(: cnet_isa_325b9db02c (IsA condylar_process condyle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condyle is a kind of process", "pln": ["(: cnet_isa_2fc9055872 (IsA condyle process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condylion is a kind of craniometric point", "pln": ["(: cnet_isa_c24743cbb9 (IsA condylion craniometric_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "condylura is a kind of mammal genus", "pln": ["(: cnet_isa_26e817bcb3 (IsA condylura mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cone is a kind of artifact", "pln": ["(: cnet_isa_8cb7e4ee90 (IsA cone artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cone is a kind of visual cell", "pln": ["(: cnet_isa_e7771dadf9 (IsA cone visual_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cone is a kind of reproductive structure", "pln": ["(: cnet_isa_f477d181aa (IsA cone reproductive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cone is a kind of round shape", "pln": ["(: cnet_isa_615c75405d (IsA cone round_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cone clutch is a kind of friction clutch", "pln": ["(: cnet_isa_e19b58b0dc (IsA cone_clutch friction_clutch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cone pepper is a kind of capsicum", "pln": ["(: cnet_isa_e205a8c99a (IsA cone_pepper capsicum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coneflower is a kind of flower", "pln": ["(: cnet_isa_9c78e6d0d5 (IsA coneflower flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coneflower is a kind of wildflower", "pln": ["(: cnet_isa_8d19ae2c21 (IsA coneflower wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conenose is a kind of assassin bug", "pln": ["(: cnet_isa_28d2be4739 (IsA conenose assassin_bug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conepatus is a kind of mammal genus", "pln": ["(: cnet_isa_d2cb4a4f33 (IsA conepatus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coney is a kind of grouper", "pln": ["(: cnet_isa_c95f11d519 (IsA coney grouper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confabulation is a kind of memory", "pln": ["(: cnet_isa_6fe2377096 (IsA confabulation memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confection is a kind of creating from raw material", "pln": ["(: cnet_isa_baf0f90633 (IsA confection creating_from_raw_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confectioner is a kind of maker", "pln": ["(: cnet_isa_6da55dd50e (IsA confectioner maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confectionery is a kind of occupation", "pln": ["(: cnet_isa_a6bdefc5cf (IsA confectionery occupation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confectionery is a kind of shop", "pln": ["(: cnet_isa_fe8e58122e (IsA confectionery shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confectionery is a kind of sweet", "pln": ["(: cnet_isa_86696c0bf0 (IsA confectionery sweet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confederate is a kind of accessory", "pln": ["(: cnet_isa_f6e73bf73c (IsA confederate accessory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confederate is a kind of southerner", "pln": ["(: cnet_isa_2167f3e13d (IsA confederate southerner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confederate is a kind of supporter", "pln": ["(: cnet_isa_188d609443 (IsA confederate supporter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confederate army is a kind of army", "pln": ["(: cnet_isa_c465d28314 (IsA confederate_army army) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confederate army is a kind of gray", "pln": ["(: cnet_isa_0ce69ea9b5 (IsA confederate_army gray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confederate soldier is a kind of confederate", "pln": ["(: cnet_isa_c783fee2ee (IsA confederate_soldier confederate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confederate soldier is a kind of soldier", "pln": ["(: cnet_isa_77d051c054 (IsA confederate_soldier soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confederation is a kind of group action", "pln": ["(: cnet_isa_852c809b91 (IsA confederation group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confederation is a kind of union", "pln": ["(: cnet_isa_1db5fb4768 (IsA confederation union) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conferee is a kind of communicator", "pln": ["(: cnet_isa_2bd03245f6 (IsA conferee communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "conferee is a kind of recipient", "pln": ["(: cnet_isa_0663b217b9 (IsA conferee recipient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conference is a kind of discussion", "pln": ["(: cnet_isa_23494de4d2 (IsA conference discussion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conference is a kind of meeting", "pln": ["(: cnet_isa_a9637a4b3a (IsA conference meeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conference call is a kind of call", "pln": ["(: cnet_isa_3619d39b34 (IsA conference_call call) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conference center is a kind of center", "pln": ["(: cnet_isa_a2837587e6 (IsA conference_center center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conference room is a kind of room", "pln": ["(: cnet_isa_207315f7df (IsA conference_room room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conference table is a kind of table", "pln": ["(: cnet_isa_d7efdff38c (IsA conference_table table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conferrer is a kind of communicator", "pln": ["(: cnet_isa_eae5552521 (IsA conferrer communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conferva is a kind of yellow green algae", "pln": ["(: cnet_isa_daa9fae870 (IsA conferva yellow_green_algae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confervoid algae is a kind of alga", "pln": ["(: cnet_isa_ca827ef31e (IsA confervoid_algae alga) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confession is a kind of admission", "pln": ["(: cnet_isa_4d239f2357 (IsA confession admission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confession is a kind of declaration", "pln": ["(: cnet_isa_70e90e323d (IsA confession declaration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confession is a kind of document", "pln": ["(: cnet_isa_837bec08d3 (IsA confession document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confession is a kind of religious doctrine", "pln": ["(: cnet_isa_d97f66449e (IsA confession religious_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confession is a kind of penance", "pln": ["(: cnet_isa_d4fd03190b (IsA confession penance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confession of judgment is a kind of judgment", "pln": ["(: cnet_isa_fedcc27b11 (IsA confession_of_judgment judgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confessional is a kind of booth", "pln": ["(: cnet_isa_ec7edcbe22 (IsA confessional booth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confessor is a kind of communicator", "pln": ["(: cnet_isa_9e683de123 (IsA confessor communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "confessor is a kind of priest", "pln": ["(: cnet_isa_ef2104fe8f (IsA confessor priest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confetti is a kind of small piece of paper", "pln": ["(: cnet_isa_3d8e7b5988 (IsA confetti small_piece_of_paper) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confetti is a kind of paper", "pln": ["(: cnet_isa_18a52e53f5 (IsA confetti paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confidant is a kind of friend", "pln": ["(: cnet_isa_e8df9044f9 (IsA confidant friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confidante is a kind of confidant", "pln": ["(: cnet_isa_1756723c7d (IsA confidante confidant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confidence is a kind of secret", "pln": ["(: cnet_isa_2d6875e61d (IsA confidence secret) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confidence is a kind of security", "pln": ["(: cnet_isa_d7f958cb14 (IsA confidence security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confidence is a kind of friendship", "pln": ["(: cnet_isa_31c2990f23 (IsA confidence friendship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "confidence is a kind of hopefulness", "pln": ["(: cnet_isa_7409b9cd2c (IsA confidence hopefulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confidence man is a kind of swindler", "pln": ["(: cnet_isa_d9595c7d6d (IsA confidence_man swindler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confidential adviser advisee relation is a kind of fiduciary relation", "pln": ["(: cnet_isa_fb58cf1992 (IsA confidential_adviser_advisee_relation fiduciary_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confidentiality is a kind of discretion", "pln": ["(: cnet_isa_22d8939290 (IsA confidentiality discretion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confidentiality is a kind of privacy", "pln": ["(: cnet_isa_7a5deed889 (IsA confidentiality privacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "configuration is a kind of design", "pln": ["(: cnet_isa_2dcb0875e0 (IsA configuration design) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confinement is a kind of restraint", "pln": ["(: cnet_isa_c069757cf4 (IsA confinement restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confinement is a kind of subjugation", "pln": ["(: cnet_isa_767c625a27 (IsA confinement subjugation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confine is a kind of scope", "pln": ["(: cnet_isa_1e16494fda (IsA confine scope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confirmation is a kind of religious ceremony", "pln": ["(: cnet_isa_0c1b099b7c (IsA confirmation religious_ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confirmation is a kind of sacrament", "pln": ["(: cnet_isa_fcc1184356 (IsA confirmation sacrament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confirmation is a kind of proof", "pln": ["(: cnet_isa_f001b95402 (IsA confirmation proof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confirmation is a kind of information", "pln": ["(: cnet_isa_f939bcd4ae (IsA confirmation information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confirmation hearing is a kind of hearing", "pln": ["(: cnet_isa_f98e5ea6ec (IsA confirmation_hearing hearing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confiscation is a kind of seizure", "pln": ["(: cnet_isa_a88f3c609e (IsA confiscation seizure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confit is a kind of cut", "pln": ["(: cnet_isa_640504415a (IsA confit cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confiture is a kind of sweet", "pln": ["(: cnet_isa_0f1af2ba62 (IsA confiture sweet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conflagration is a kind of fire", "pln": ["(: cnet_isa_72d78c83f1 (IsA conflagration fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "conflict is a kind of group action", "pln": ["(: cnet_isa_e7d56fcec1 (IsA conflict group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conflict is a kind of incompatibility", "pln": ["(: cnet_isa_f72f177619 (IsA conflict incompatibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conflict is a kind of ambivalence", "pln": ["(: cnet_isa_3b562421fe (IsA conflict ambivalence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conflict is a kind of opposition", "pln": ["(: cnet_isa_99d032f5fc (IsA conflict opposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conflict is a kind of state", "pln": ["(: cnet_isa_720c25c58f (IsA conflict state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conflict of interest is a kind of situation", "pln": ["(: cnet_isa_6d4c8925c1 (IsA conflict_of_interest situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confluence is a kind of blend", "pln": ["(: cnet_isa_9eae47b530 (IsA confluence blend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confluence is a kind of geographic point", "pln": ["(: cnet_isa_835282d900 (IsA confluence geographic_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conformal projection is a kind of map projection", "pln": ["(: cnet_isa_3f418d25ff (IsA conformal_projection map_projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conformation is a kind of balance", "pln": ["(: cnet_isa_548344d1de (IsA conformation balance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conformational entropy is a kind of randomness", "pln": ["(: cnet_isa_83a09acdf2 (IsA conformational_entropy randomness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conformist is a kind of conservative", "pln": ["(: cnet_isa_4007877fbd (IsA conformist conservative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conformity is a kind of cooperation", "pln": ["(: cnet_isa_e64d92fc7f (IsA conformity cooperation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conformity is a kind of agreement", "pln": ["(: cnet_isa_28630d97df (IsA conformity agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conformity is a kind of orthodoxy", "pln": ["(: cnet_isa_5e45d87c55 (IsA conformity orthodoxy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confrontation is a kind of comparison", "pln": ["(: cnet_isa_78e69775a7 (IsA confrontation comparison) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confrontation is a kind of resistance", "pln": ["(: cnet_isa_accb5e4bac (IsA confrontation resistance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "confrontation is a kind of challenge", "pln": ["(: cnet_isa_de89f63618 (IsA confrontation challenge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confrontation is a kind of disagreement", "pln": ["(: cnet_isa_60a3e183f5 (IsA confrontation disagreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confrontation is a kind of discord", "pln": ["(: cnet_isa_3b9c3b9195 (IsA confrontation discord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confucianism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_5b25756422 (IsA confucianism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confucianist is a kind of believer", "pln": ["(: cnet_isa_1d1f8d6061 (IsA confucianist believer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confusion is a kind of combination", "pln": ["(: cnet_isa_b483b2a085 (IsA confusion combination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confusion is a kind of mistake", "pln": ["(: cnet_isa_4e94f5be36 (IsA confusion mistake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confusion is a kind of cognitive state", "pln": ["(: cnet_isa_a2d5ce8b5d (IsA confusion cognitive_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confusion is a kind of embarrassment", "pln": ["(: cnet_isa_075fb6126d (IsA confusion embarrassment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confusion is a kind of disorder", "pln": ["(: cnet_isa_cd6a7c58f5 (IsA confusion disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confutation is a kind of disproof", "pln": ["(: cnet_isa_6a76517af1 (IsA confutation disproof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "confutation is a kind of refutation", "pln": ["(: cnet_isa_0695c97729 (IsA confutation refutation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conga is a kind of ballroom dancing", "pln": ["(: cnet_isa_b95f9ef7fe (IsA conga ballroom_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conga is a kind of dance music", "pln": ["(: cnet_isa_b35ac0c3f6 (IsA conga dance_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conga line is a kind of line", "pln": ["(: cnet_isa_266646bf4e (IsA conga_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conge is a kind of dismissal", "pln": ["(: cnet_isa_c5c6457d26 (IsA conge dismissal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conge is a kind of license", "pln": ["(: cnet_isa_0fb8a272db (IsA conge license) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conge is a kind of molding", "pln": ["(: cnet_isa_7ea5e9fa68 (IsA conge molding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "congealment is a kind of hardening", "pln": ["(: cnet_isa_f5708b3f7f (IsA congealment hardening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congee is a kind of gruel", "pln": ["(: cnet_isa_e5c85ba0df (IsA congee gruel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congener is a kind of whole", "pln": ["(: cnet_isa_2b4a1b660c (IsA congener whole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congener is a kind of chemical", "pln": ["(: cnet_isa_41fd334612 (IsA congener chemical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congeniality is a kind of friendliness", "pln": ["(: cnet_isa_c29625f827 (IsA congeniality friendliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congenialness is a kind of compatibility", "pln": ["(: cnet_isa_610f6a7f43 (IsA congenialness compatibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congenital afibrinogenemia is a kind of afibrinogenemia", "pln": ["(: cnet_isa_454c1066b0 (IsA congenital_afibrinogenemia afibrinogenemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congenital afibrinogenemia is a kind of genetic disease", "pln": ["(: cnet_isa_f1b08336bf (IsA congenital_afibrinogenemia genetic_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congenital heart defect is a kind of birth defect", "pln": ["(: cnet_isa_7180c41210 (IsA congenital_heart_defect birth_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conger is a kind of eel", "pln": ["(: cnet_isa_0f28b9296d (IsA conger eel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congestion is a kind of crowding", "pln": ["(: cnet_isa_087dd1a734 (IsA congestion crowding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congestion is a kind of symptom", "pln": ["(: cnet_isa_cb4814fe05 (IsA congestion symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congestive heart failure is a kind of heart failure", "pln": ["(: cnet_isa_0c3efd7238 (IsA congestive_heart_failure heart_failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conglomerate is a kind of corporation", "pln": ["(: cnet_isa_0944489bc6 (IsA conglomerate corporation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conglomeration is a kind of combining", "pln": ["(: cnet_isa_79f1eac7a3 (IsA conglomeration combining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conglomeration is a kind of sphere", "pln": ["(: cnet_isa_25cbad9da2 (IsA conglomeration sphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congo copal is a kind of copal", "pln": ["(: cnet_isa_7ba76128eb (IsA congo_copal copal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congo franc is a kind of franc", "pln": ["(: cnet_isa_aae9379818 (IsA congo_franc franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congo red is a kind of acid base indicator", "pln": ["(: cnet_isa_961406346e (IsA congo_red acid_base_indicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congo red is a kind of azo dye", "pln": ["(: cnet_isa_435c990d1b (IsA congo_red azo_dye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congolese is a kind of african", "pln": ["(: cnet_isa_df68d265bf (IsA congolese african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congou is a kind of black tea", "pln": ["(: cnet_isa_4313a2be13 (IsA congou black_tea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congratulation is a kind of expression", "pln": ["(: cnet_isa_2bccb5def1 (IsA congratulation expression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congratulation is a kind of speech act", "pln": ["(: cnet_isa_f444ad74df (IsA congratulation speech_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congregant is a kind of churchgoer", "pln": ["(: cnet_isa_3fbc64ba2b (IsA congregant churchgoer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congregation is a kind of assembly", "pln": ["(: cnet_isa_750e557862 (IsA congregation assembly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congregation is a kind of collection", "pln": ["(: cnet_isa_f714645b07 (IsA congregation collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congregation is a kind of social group", "pln": ["(: cnet_isa_b99d2ca08a (IsA congregation social_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congregational christian church is a kind of protestant denomination", "pln": ["(: cnet_isa_951f70240e (IsA congregational_christian_church protestant_denomination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congregational church is a kind of protestant denomination", "pln": ["(: cnet_isa_64e21e3411 (IsA congregational_church protestant_denomination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congregationalism is a kind of protestantism", "pln": ["(: cnet_isa_791886da71 (IsA congregationalism protestantism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "congregationalist is a kind of protestant", "pln": ["(: cnet_isa_21c84d9675 (IsA congregationalist protestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congress is a kind of legislature", "pln": ["(: cnet_isa_f92957fc4f (IsA congress legislature) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congress is a kind of meeting", "pln": ["(: cnet_isa_8023396a83 (IsA congress meeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congress boot is a kind of shoe", "pln": ["(: cnet_isa_46694e7e97 (IsA congress_boot shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congress of industrial organization is a kind of federation", "pln": ["(: cnet_isa_0f7bf9f61e (IsA congress_of_industrial_organization federation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congress of racial equality is a kind of nongovernmental organization", "pln": ["(: cnet_isa_17d26c4a18 (IsA congress_of_racial_equality nongovernmental_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congressional district is a kind of district", "pln": ["(: cnet_isa_3c7022715c (IsA congressional_district district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congressional record is a kind of minute", "pln": ["(: cnet_isa_39ab225ef5 (IsA congressional_record minute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congressman is a kind of member of congress", "pln": ["(: cnet_isa_87dd0a83c2 (IsA congressman member_of_congress) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "congressman is a kind of legislator", "pln": ["(: cnet_isa_0c89329b17 (IsA congressman legislator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "coniferales is a kind of plant order", "pln": ["(: cnet_isa_19a72ccfc1 (IsA coniferales plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congridae is a kind of fish family", "pln": ["(: cnet_isa_8d5af55d1f (IsA congridae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "congruity is a kind of harmony", "pln": ["(: cnet_isa_7c7d8e9924 (IsA congruity harmony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conic projection is a kind of map projection", "pln": ["(: cnet_isa_39909eb4a3 (IsA conic_projection map_projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conic section is a kind of plane figure", "pln": ["(: cnet_isa_8b8277019c (IsA conic_section plane_figure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conical buoy is a kind of buoy", "pln": ["(: cnet_isa_5ce7933132 (IsA conical_buoy buoy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conidiophore is a kind of hypha", "pln": ["(: cnet_isa_cfbea85f80 (IsA conidiophore hypha) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conidium is a kind of spore", "pln": ["(: cnet_isa_806a5b2be6 (IsA conidium spore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conifer is a kind of gymnospermous tree", "pln": ["(: cnet_isa_f6a7620c0d (IsA conifer gymnospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coniferale is a kind of plant order", "pln": ["(: cnet_isa_84177b58f4 (IsA coniferale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coniferopsida is a kind of class", "pln": ["(: cnet_isa_98601d029d (IsA coniferopsida class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conilurus is a kind of mammal genus", "pln": ["(: cnet_isa_7e53c2c92e (IsA conilurus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "conima is a kind of gum", "pln": ["(: cnet_isa_4f2614c906 (IsA conima gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coniogramme is a kind of fern genus", "pln": ["(: cnet_isa_01002e80b8 (IsA coniogramme fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conium is a kind of rosid dicot genus", "pln": ["(: cnet_isa_1d350e1150 (IsA conium rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conjecture is a kind of reasoning", "pln": ["(: cnet_isa_fe9b7fd4ac (IsA conjecture reasoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conjoined twin is a kind of identical twin", "pln": ["(: cnet_isa_02cf389a78 (IsA conjoined_twin identical_twin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conjugal right is a kind of legal right", "pln": ["(: cnet_isa_f4a5af3220 (IsA conjugal_right legal_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conjugal visitation right is a kind of legal right", "pln": ["(: cnet_isa_97c11b1597 (IsA conjugal_visitation_right legal_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conjugate solution is a kind of solution", "pln": ["(: cnet_isa_5300243b3a (IsA conjugate_solution solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conjugated protein is a kind of protein", "pln": ["(: cnet_isa_5f214ed656 (IsA conjugated_protein protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conjugation is a kind of class", "pln": ["(: cnet_isa_8dce49ad7d (IsA conjugation class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conjugation is a kind of set", "pln": ["(: cnet_isa_5400e454c1 (IsA conjugation set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conjugation is a kind of inflection", "pln": ["(: cnet_isa_c23d6eb6fa (IsA conjugation inflection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conjunction is a kind of meeting", "pln": ["(: cnet_isa_755a1523b1 (IsA conjunction meeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conjunction is a kind of function word", "pln": ["(: cnet_isa_6d830c940d (IsA conjunction function_word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "conjunction is a kind of grammatical relation", "pln": ["(: cnet_isa_733da481b2 (IsA conjunction grammatical_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conjunctiva is a kind of mucous membrane", "pln": ["(: cnet_isa_9f9e2ebb0f (IsA conjunctiva mucous_membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conjunctival vein is a kind of vein", "pln": ["(: cnet_isa_710a8b7e18 (IsA conjunctival_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conjunctivitis is a kind of inflammation", "pln": ["(: cnet_isa_235202bfd4 (IsA conjunctivitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conjuncture is a kind of juncture", "pln": ["(: cnet_isa_90e87d0704 (IsA conjuncture juncture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conjurer is a kind of witch doctor", "pln": ["(: cnet_isa_a02eeb165e (IsA conjurer witch_doctor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conjuring is a kind of magic", "pln": ["(: cnet_isa_cc227d1a04 (IsA conjuring magic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "conk is a kind of nose", "pln": ["(: cnet_isa_ce0efc0b8e (IsA conk nose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conn s syndrome is a kind of syndrome", "pln": ["(: cnet_isa_2cb2b22192 (IsA conn_s_syndrome syndrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "connaraceae is a kind of rosid dicot family", "pln": ["(: cnet_isa_8a70410955 (IsA connaraceae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "connarus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_cd6322e8e8 (IsA connarus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "connarus guianensis is a kind of zebrawood", "pln": ["(: cnet_isa_78d0f2c84d (IsA connarus_guianensis zebrawood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "connecticut is a kind of state", "pln": ["(: cnet_isa_96a936d5bf (IsA connecticut state) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "connecticuter is a kind of american", "pln": ["(: cnet_isa_2ad73894d1 (IsA connecticuter american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "connecting flight is a kind of flight", "pln": ["(: cnet_isa_21a0a8ce23 (IsA connecting_flight flight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "connecting rod is a kind of rod", "pln": ["(: cnet_isa_d1553e00bd (IsA connecting_rod rod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "connecting room is a kind of hotel room", "pln": ["(: cnet_isa_f15d082d86 (IsA connecting_room hotel_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "connection is a kind of transportation", "pln": ["(: cnet_isa_2876c04c74 (IsA connection transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "connection is a kind of instrumentality", "pln": ["(: cnet_isa_f979672f0d (IsA connection instrumentality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "connection is a kind of relation", "pln": ["(: cnet_isa_cf98a0876a (IsA connection relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "connection is a kind of supplier", "pln": ["(: cnet_isa_58a07ba445 (IsA connection supplier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "connection is a kind of acquaintance", "pln": ["(: cnet_isa_7364f678a5 (IsA connection acquaintance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "connection is a kind of shape", "pln": ["(: cnet_isa_d606aaa72e (IsA connection shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "connection is a kind of union", "pln": ["(: cnet_isa_9dd4b82c2d (IsA connection union) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "connective tissue is a kind of animal tissue", "pln": ["(: cnet_isa_adb9f50e65 (IsA connective_tissue animal_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "connectivity is a kind of property", "pln": ["(: cnet_isa_3fea0c70c9 (IsA connectivity property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "connemara heath is a kind of heath", "pln": ["(: cnet_isa_4279ca1d2f (IsA connemara_heath heath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conning tower is a kind of bridge", "pln": ["(: cnet_isa_baff72e7fa (IsA conning_tower bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conning tower is a kind of pilothouse", "pln": ["(: cnet_isa_47b27d5b7c (IsA conning_tower pilothouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "connivance is a kind of agreement", "pln": ["(: cnet_isa_9b1004557c (IsA connivance agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "connivance is a kind of approval", "pln": ["(: cnet_isa_42c6e2a009 (IsA connivance approval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "connochaete is a kind of mammal genus", "pln": ["(: cnet_isa_7259e8dddc (IsA connochaete mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "connoisseur is a kind of authority", "pln": ["(: cnet_isa_37fb672ba3 (IsA connoisseur authority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "connotation is a kind of meaning", "pln": ["(: cnet_isa_10e23334eb (IsA connotation meaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "conocarpus is a kind of dicot genus", "pln": ["(: cnet_isa_a94f432eb8 (IsA conocarpus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conoclinium is a kind of asterid dicot genus", "pln": ["(: cnet_isa_7aa05f4b49 (IsA conoclinium asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conodont is a kind of jawless vertebrate", "pln": ["(: cnet_isa_3955a6a69a (IsA conodont jawless_vertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conodont is a kind of tooth", "pln": ["(: cnet_isa_bcc04d1609 (IsA conodont tooth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "conodonta is a kind of animal order", "pln": ["(: cnet_isa_2e3ed2093d (IsA conodonta animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "conopodium is a kind of rosid dicot genus", "pln": ["(: cnet_isa_b75aff4dd2 (IsA conopodium rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conospermum is a kind of dicot genus", "pln": ["(: cnet_isa_08c6ab0099 (IsA conospermum dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conoy is a kind of algonquin", "pln": ["(: cnet_isa_878e042e7c (IsA conoy algonquin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conqueror is a kind of victor", "pln": ["(: cnet_isa_3f617f82d6 (IsA conqueror victor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conquest is a kind of capture", "pln": ["(: cnet_isa_a5c152ad3c (IsA conquest capture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conquest is a kind of success", "pln": ["(: cnet_isa_2fcd0a941f (IsA conquest success) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conquistador is a kind of explorer", "pln": ["(: cnet_isa_e0fbb5e9d9 (IsA conquistador explorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conradina is a kind of asterid dicot genus", "pln": ["(: cnet_isa_f89ec269d4 (IsA conradina asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consanguinity is a kind of kinship", "pln": ["(: cnet_isa_5f03071265 (IsA consanguinity kinship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conscience is a kind of morality", "pln": ["(: cnet_isa_d8efbeab6d (IsA conscience morality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conscience is a kind of shame", "pln": ["(: cnet_isa_f10fbf3454 (IsA conscience shame) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "conscience is a kind of ethical motive", "pln": ["(: cnet_isa_4d9631f4f7 (IsA conscience ethical_motive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conscience money is a kind of payment", "pln": ["(: cnet_isa_493f8c4bc7 (IsA conscience_money payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "conscientious objector is a kind of dissenter", "pln": ["(: cnet_isa_7e58b849da (IsA conscientious_objector dissenter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conscientiousness is a kind of carefulness", "pln": ["(: cnet_isa_ec51661e2c (IsA conscientiousness carefulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conscientiousness is a kind of conscience", "pln": ["(: cnet_isa_32d26ca1ab (IsA conscientiousness conscience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consciousness is a kind of cognitive state", "pln": ["(: cnet_isa_647e7885b3 (IsA consciousness cognitive_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conscription is a kind of mobilization", "pln": ["(: cnet_isa_49f83302c5 (IsA conscription mobilization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consecration is a kind of commitment", "pln": ["(: cnet_isa_9887ddda20 (IsA consecration commitment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consecration is a kind of sanctification", "pln": ["(: cnet_isa_a05c5d3439 (IsA consecration sanctification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consensus is a kind of agreement", "pln": ["(: cnet_isa_5dbe7aaf36 (IsA consensus agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consent is a kind of permission", "pln": ["(: cnet_isa_9d167a7fee (IsA consent permission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consent decree is a kind of decree", "pln": ["(: cnet_isa_194e7f9c4d (IsA consent_decree decree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consequence is a kind of significance", "pln": ["(: cnet_isa_438d2167e2 (IsA consequence significance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consequence is a kind of result", "pln": ["(: cnet_isa_c6f5f12b44 (IsA consequence result) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consequence is a kind of phenomenon", "pln": ["(: cnet_isa_c23a644362 (IsA consequence phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conservancy is a kind of conservation", "pln": ["(: cnet_isa_4bda232a6a (IsA conservancy conservation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conservancy is a kind of committee", "pln": ["(: cnet_isa_5537ce4950 (IsA conservancy committee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conservation is a kind of preservation", "pln": ["(: cnet_isa_391d1e7f58 (IsA conservation preservation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conservation is a kind of improvement", "pln": ["(: cnet_isa_0883b6e8eb (IsA conservation improvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conservation is a kind of principle", "pln": ["(: cnet_isa_36f5687e1e (IsA conservation principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conservation of charge is a kind of conservation", "pln": ["(: cnet_isa_663be3484c (IsA conservation_of_charge conservation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conservation of energy is a kind of conservation", "pln": ["(: cnet_isa_b90a8dbdb7 (IsA conservation_of_energy conservation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conservation of energy is a kind of law of thermodynamic", "pln": ["(: cnet_isa_b0bb3ebb35 (IsA conservation_of_energy law_of_thermodynamic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conservation of mass is a kind of conservation", "pln": ["(: cnet_isa_883248b733 (IsA conservation_of_mass conservation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conservation of momentum is a kind of conservation", "pln": ["(: cnet_isa_e3fb899b76 (IsA conservation_of_momentum conservation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conservatism is a kind of political ideology", "pln": ["(: cnet_isa_fbfde57346 (IsA conservatism political_ideology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conservatism is a kind of political philosophy", "pln": ["(: cnet_isa_331632121d (IsA conservatism political_philosophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conservatism is a kind of political orientation", "pln": ["(: cnet_isa_71c99e2857 (IsA conservatism political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conservative is a kind of adult", "pln": ["(: cnet_isa_8a8d1aa1a8 (IsA conservative adult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conservative is a kind of member", "pln": ["(: cnet_isa_011d90dda2 (IsA conservative member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conservative jew is a kind of israelite", "pln": ["(: cnet_isa_74f3888340 (IsA conservative_jew israelite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conservative judaism is a kind of judaism", "pln": ["(: cnet_isa_6fb34a71c2 (IsA conservative_judaism judaism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conservative party is a kind of party", "pln": ["(: cnet_isa_dcb17c852a (IsA conservative_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conservator is a kind of fiduciary", "pln": ["(: cnet_isa_70362407f5 (IsA conservator fiduciary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conservator ward relation is a kind of fiduciary relation", "pln": ["(: cnet_isa_8e829d1a2b (IsA conservator_ward_relation fiduciary_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conservatory is a kind of greenhouse", "pln": ["(: cnet_isa_2899072fca (IsA conservatory greenhouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conservatory is a kind of school", "pln": ["(: cnet_isa_8cadd529c6 (IsA conservatory school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conserve is a kind of confiture", "pln": ["(: cnet_isa_e4cf5ff312 (IsA conserve confiture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consideration is a kind of kindness", "pln": ["(: cnet_isa_52004c6d93 (IsA consideration kindness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consideration is a kind of thinking", "pln": ["(: cnet_isa_0b28fafb78 (IsA consideration thinking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consideration is a kind of discussion", "pln": ["(: cnet_isa_73c9949ce3 (IsA consideration discussion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consignee is a kind of recipient", "pln": ["(: cnet_isa_0da64ee864 (IsA consignee recipient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consigner is a kind of shipper", "pln": ["(: cnet_isa_65dd25259b (IsA consigner shipper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consignment is a kind of delivery", "pln": ["(: cnet_isa_66494888f4 (IsA consignment delivery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consistency is a kind of property", "pln": ["(: cnet_isa_6388a21717 (IsA consistency property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "consistency is a kind of uniformity", "pln": ["(: cnet_isa_b37e022a89 (IsA consistency uniformity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consistency is a kind of logicality", "pln": ["(: cnet_isa_8878727761 (IsA consistency logicality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consistency is a kind of coherence", "pln": ["(: cnet_isa_aaaaae77c4 (IsA consistency coherence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consistory is a kind of court", "pln": ["(: cnet_isa_d911796914 (IsA consistory court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consolation is a kind of relief", "pln": ["(: cnet_isa_7470ffe3fc (IsA consolation relief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consolation is a kind of comfort", "pln": ["(: cnet_isa_b5dc64d882 (IsA consolation comfort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "console is a kind of bracket", "pln": ["(: cnet_isa_7046f3253e (IsA console bracket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "console is a kind of scientific instrument", "pln": ["(: cnet_isa_1d1ed4736c (IsA console scientific_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "console table is a kind of table", "pln": ["(: cnet_isa_23df0885ce (IsA console_table table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consolida is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_b5b06138e2 (IsA consolida magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consolidation is a kind of combination", "pln": ["(: cnet_isa_167c4e5345 (IsA consolidation combination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consolidation is a kind of combining", "pln": ["(: cnet_isa_52a44305a7 (IsA consolidation combining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consolidation is a kind of natural object", "pln": ["(: cnet_isa_873a93661d (IsA consolidation natural_object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "consomme is a kind of soup", "pln": ["(: cnet_isa_f2c6ee9bfb (IsA consomme soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consonance is a kind of harmony", "pln": ["(: cnet_isa_0918e6c2b9 (IsA consonance harmony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consonance is a kind of rhyme", "pln": ["(: cnet_isa_2eafbb2aa4 (IsA consonance rhyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consonant is a kind of letter", "pln": ["(: cnet_isa_73381848d1 (IsA consonant letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consonant is a kind of phone", "pln": ["(: cnet_isa_339b941e7e (IsA consonant phone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consonant system is a kind of phonemic system", "pln": ["(: cnet_isa_32b8db7ba5 (IsA consonant_system phonemic_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consort is a kind of spouse", "pln": ["(: cnet_isa_e870bf4d4b (IsA consort spouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consortium is a kind of association", "pln": ["(: cnet_isa_c0588e6fdd (IsA consortium association) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conspecific is a kind of organism", "pln": ["(: cnet_isa_e9d6581a3e (IsA conspecific organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conspectus is a kind of summary", "pln": ["(: cnet_isa_7d648c5a75 (IsA conspectus summary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conspicuous consumption is a kind of consumption", "pln": ["(: cnet_isa_0fdffa017d (IsA conspicuous_consumption consumption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conspicuousness is a kind of visibility", "pln": ["(: cnet_isa_bb079f08d6 (IsA conspicuousness visibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conspicuousness is a kind of salience", "pln": ["(: cnet_isa_34b4f27256 (IsA conspicuousness salience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "conspiracy is a kind of agreement", "pln": ["(: cnet_isa_61d5ff13c0 (IsA conspiracy agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conspiracy is a kind of set", "pln": ["(: cnet_isa_0f5802ecb2 (IsA conspiracy set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conspiracy is a kind of plot", "pln": ["(: cnet_isa_e5378cb590 (IsA conspiracy plot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conspiracy of silence is a kind of conspiracy", "pln": ["(: cnet_isa_8507af79b9 (IsA conspiracy_of_silence conspiracy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conspirator is a kind of criminal", "pln": ["(: cnet_isa_b4e2fe08ef (IsA conspirator criminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "constable is a kind of lawman", "pln": ["(: cnet_isa_f793ce7df5 (IsA constable lawman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "constable is a kind of policeman", "pln": ["(: cnet_isa_48d0e449b0 (IsA constable policeman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "constancy is a kind of changelessness", "pln": ["(: cnet_isa_fa12cd25d4 (IsA constancy changelessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "constancy is a kind of fidelity", "pln": ["(: cnet_isa_b8694d9c05 (IsA constancy fidelity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "constancy is a kind of perception", "pln": ["(: cnet_isa_f920f5f49a (IsA constancy perception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "constant is a kind of quantity", "pln": ["(: cnet_isa_0afcf8c4ab (IsA constant quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "constant is a kind of number", "pln": ["(: cnet_isa_5feba9f8e8 (IsA constant number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "constantan is a kind of copper base alloy", "pln": ["(: cnet_isa_a0ca02d31c (IsA constantan copper_base_alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "constellation is a kind of natural object", "pln": ["(: cnet_isa_f3825f4200 (IsA constellation natural_object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "constipation is a kind of symptom", "pln": ["(: cnet_isa_6e2f66fc04 (IsA constipation symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "constituency is a kind of body", "pln": ["(: cnet_isa_111e14b05a (IsA constituency body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "constituent is a kind of syntagma", "pln": ["(: cnet_isa_3bf9b1d891 (IsA constituent syntagma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "constituent is a kind of voter", "pln": ["(: cnet_isa_a8b746ec20 (IsA constituent voter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "constitution is a kind of beginning", "pln": ["(: cnet_isa_89904e9d17 (IsA constitution beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "constitution is a kind of property", "pln": ["(: cnet_isa_a6f58dc453 (IsA constitution property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "constitutional is a kind of walk", "pln": ["(: cnet_isa_50b2e8c4c1 (IsA constitutional walk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "constitutional convention is a kind of convention", "pln": ["(: cnet_isa_a1539c75ed (IsA constitutional_convention convention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "constitutional union party is a kind of party", "pln": ["(: cnet_isa_dfad33c53e (IsA constitutional_union_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "constitutionalism is a kind of political orientation", "pln": ["(: cnet_isa_2b4c83115f (IsA constitutionalism political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "constitutionalism is a kind of political system", "pln": ["(: cnet_isa_4446d384bc (IsA constitutionalism political_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "constitutionalist is a kind of advocate", "pln": ["(: cnet_isa_26946a5547 (IsA constitutionalist advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "constraint is a kind of restriction", "pln": ["(: cnet_isa_453fd2837f (IsA constraint restriction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "constraint is a kind of confinement", "pln": ["(: cnet_isa_265ea450b6 (IsA constraint confinement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "constriction is a kind of compression", "pln": ["(: cnet_isa_075215a702 (IsA constriction compression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "constriction is a kind of feeling", "pln": ["(: cnet_isa_1f86f0896b (IsA constriction feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "constriction is a kind of narrowing", "pln": ["(: cnet_isa_ff8b8c8a33 (IsA constriction narrowing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "constrictor is a kind of snake", "pln": ["(: cnet_isa_acda986870 (IsA constrictor snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "construal is a kind of interpretation", "pln": ["(: cnet_isa_281caa74dd (IsA construal interpretation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "construction is a kind of commercial enterprise", "pln": ["(: cnet_isa_898c81af09 (IsA construction commercial_enterprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "construction is a kind of creating from raw material", "pln": ["(: cnet_isa_4bf1438e95 (IsA construction creating_from_raw_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "construction is a kind of mathematical process", "pln": ["(: cnet_isa_50678d289f (IsA construction mathematical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "construction is a kind of thinking", "pln": ["(: cnet_isa_fc576c97cd (IsA construction thinking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "construction is a kind of constituent", "pln": ["(: cnet_isa_3c34b032d5 (IsA construction constituent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "construction is a kind of interpretation", "pln": ["(: cnet_isa_11db6b1cc5 (IsA construction interpretation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "construction industry is a kind of industry", "pln": ["(: cnet_isa_076dbe2a1c (IsA construction_industry industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "construction paper is a kind of paper", "pln": ["(: cnet_isa_5aa7c3e62d (IsA construction_paper paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "construction worker is a kind of craftsman", "pln": ["(: cnet_isa_5afd7ebd60 (IsA construction_worker craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "constructive fraud is a kind of fraud", "pln": ["(: cnet_isa_6addc4adaa (IsA constructive_fraud fraud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "constructive possession is a kind of possession", "pln": ["(: cnet_isa_86300df913 (IsA constructive_possession possession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "constructive trust is a kind of implied trust", "pln": ["(: cnet_isa_87a8cc2da6 (IsA constructive_trust implied_trust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "constructiveness is a kind of quality", "pln": ["(: cnet_isa_c6261a94a1 (IsA constructiveness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "constructivism is a kind of artistic movement", "pln": ["(: cnet_isa_17a11929f2 (IsA constructivism artistic_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "constructivist is a kind of artist", "pln": ["(: cnet_isa_68f68c4b12 (IsA constructivist artist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consubstantiation is a kind of theological doctrine", "pln": ["(: cnet_isa_072c14461c (IsA consubstantiation theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consuetude is a kind of custom", "pln": ["(: cnet_isa_11b6ffe980 (IsA consuetude custom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consuetudinary is a kind of manual", "pln": ["(: cnet_isa_801cf4d3a9 (IsA consuetudinary manual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consul is a kind of diplomat", "pln": ["(: cnet_isa_26981dc3dc (IsA consul diplomat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consulate is a kind of diplomatic building", "pln": ["(: cnet_isa_98270efe09 (IsA consulate diplomatic_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consulship is a kind of position", "pln": ["(: cnet_isa_91cd2dd224 (IsA consulship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consultancy is a kind of practice", "pln": ["(: cnet_isa_79f9c7fc52 (IsA consultancy practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consultation is a kind of conference", "pln": ["(: cnet_isa_668c4393a4 (IsA consultation conference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consulting firm is a kind of firm", "pln": ["(: cnet_isa_ef489442e3 (IsA consulting_firm firm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consulting service is a kind of service", "pln": ["(: cnet_isa_6c3338b7f1 (IsA consulting_service service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consumer is a kind of user", "pln": ["(: cnet_isa_a89d583141 (IsA consumer user) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consumer credit is a kind of credit line", "pln": ["(: cnet_isa_a712580c37 (IsA consumer_credit credit_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consumer finance company is a kind of finance company", "pln": ["(: cnet_isa_ddab50712b (IsA consumer_finance_company finance_company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consumer good is a kind of commodity", "pln": ["(: cnet_isa_2efb1a760a (IsA consumer_good commodity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consumer price index is a kind of price index", "pln": ["(: cnet_isa_85ad2983a2 (IsA consumer_price_index price_index) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consumer research is a kind of marketing research", "pln": ["(: cnet_isa_5c317aa905 (IsA consumer_research marketing_research) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consumerism is a kind of global evil", "pln": ["(: cnet_isa_024ae7964f (IsA consumerism global_evil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consumerism is a kind of campaign", "pln": ["(: cnet_isa_2c88e1987e (IsA consumerism campaign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consumerism is a kind of economic theory", "pln": ["(: cnet_isa_3f2f4a12c8 (IsA consumerism economic_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consummation is a kind of completion", "pln": ["(: cnet_isa_c29174a490 (IsA consummation completion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consumption is a kind of bodily process", "pln": ["(: cnet_isa_26c850e375 (IsA consumption bodily_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consumption is a kind of depletion", "pln": ["(: cnet_isa_d9d41a5302 (IsA consumption depletion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consumption is a kind of demand", "pln": ["(: cnet_isa_04fd15aeaa (IsA consumption demand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "consumptive is a kind of sick person", "pln": ["(: cnet_isa_a14abcd83d (IsA consumptive sick_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contact is a kind of interaction", "pln": ["(: cnet_isa_3994af14a7 (IsA contact interaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contact is a kind of touch", "pln": ["(: cnet_isa_e207cdcac8 (IsA contact touch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contact is a kind of len", "pln": ["(: cnet_isa_e4d13be4f8 (IsA contact len) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contact is a kind of communication", "pln": ["(: cnet_isa_65b196fd6e (IsA contact communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contact is a kind of junction", "pln": ["(: cnet_isa_b4c5d47a8c (IsA contact junction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contact is a kind of happening", "pln": ["(: cnet_isa_03153d1d6e (IsA contact happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contact is a kind of representative", "pln": ["(: cnet_isa_d28e75e5ed (IsA contact representative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contact is a kind of connection", "pln": ["(: cnet_isa_69445491e8 (IsA contact connection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "contact dermatitis is a kind of dermatitis", "pln": ["(: cnet_isa_1e26b45947 (IsA contact_dermatitis dermatitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contact lens is a kind of alternative to wearing glass", "pln": ["(: cnet_isa_50d1e17ec9 (IsA contact_lens alternative_to_wearing_glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "contact microphone is a kind of microphone", "pln": ["(: cnet_isa_ee0d4e93f5 (IsA contact_microphone microphone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contact print is a kind of print", "pln": ["(: cnet_isa_14dea96e71 (IsA contact_print print) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contact sport is a kind of sport", "pln": ["(: cnet_isa_dcce277470 (IsA contact_sport sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contadino is a kind of farmer", "pln": ["(: cnet_isa_67eacce1e2 (IsA contadino farmer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contagion is a kind of communication", "pln": ["(: cnet_isa_8d3114b1d2 (IsA contagion communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contagious disease is a kind of communicable disease", "pln": ["(: cnet_isa_763b03ccf5 (IsA contagious_disease communicable_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "container is a kind of instrumentality", "pln": ["(: cnet_isa_83a828cef7 (IsA container instrumentality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "container ship is a kind of cargo ship", "pln": ["(: cnet_isa_a5f9712b40 (IsA container_ship cargo_ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "containerful is a kind of indefinite quantity", "pln": ["(: cnet_isa_84e37f4390 (IsA containerful indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "containment is a kind of restraint", "pln": ["(: cnet_isa_32d72a803b (IsA containment restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "containment is a kind of policy", "pln": ["(: cnet_isa_94363cf4a2 (IsA containment policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "containment is a kind of system", "pln": ["(: cnet_isa_5a76b81f50 (IsA containment system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contaminant is a kind of material", "pln": ["(: cnet_isa_24210992dd (IsA contaminant material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "contamination is a kind of soiling", "pln": ["(: cnet_isa_acc21ea9de (IsA contamination soiling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contamination is a kind of impurity", "pln": ["(: cnet_isa_6a159733f7 (IsA contamination impurity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contemplation is a kind of stare", "pln": ["(: cnet_isa_1ce0d5fec6 (IsA contemplation stare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contemplation is a kind of consideration", "pln": ["(: cnet_isa_1fd4ddc068 (IsA contemplation consideration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contemplative is a kind of person", "pln": ["(: cnet_isa_af8d6c4943 (IsA contemplative person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contemporaneity is a kind of concurrence", "pln": ["(: cnet_isa_9ae2157c4d (IsA contemporaneity concurrence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contemporary is a kind of peer", "pln": ["(: cnet_isa_a5c486b7ac (IsA contemporary peer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contempt is a kind of discourtesy", "pln": ["(: cnet_isa_318235b3f0 (IsA contempt discourtesy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contempt is a kind of disrespect", "pln": ["(: cnet_isa_028ae1365d (IsA contempt disrespect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contempt is a kind of dislike", "pln": ["(: cnet_isa_e7572bf6b3 (IsA contempt dislike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contempt is a kind of disobedience", "pln": ["(: cnet_isa_e6f17914c9 (IsA contempt disobedience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contempt of congress is a kind of contempt", "pln": ["(: cnet_isa_3fa0f406e0 (IsA contempt_of_congress contempt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contempt of court is a kind of contempt", "pln": ["(: cnet_isa_20e2291d9e (IsA contempt_of_court contempt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contemptuousness is a kind of arrogance", "pln": ["(: cnet_isa_d208f04b10 (IsA contemptuousness arrogance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "content is a kind of cognition", "pln": ["(: cnet_isa_a440db094a (IsA content cognition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "content is a kind of collection", "pln": ["(: cnet_isa_c1dae8207d (IsA content collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "content is a kind of proportion", "pln": ["(: cnet_isa_02e15a3e82 (IsA content proportion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "content management system is a kind of management system", "pln": ["(: cnet_isa_da5b48e343 (IsA content_management_system management_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "content word is a kind of word", "pln": ["(: cnet_isa_194b8e0844 (IsA content_word word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contentedness is a kind of acceptance", "pln": ["(: cnet_isa_2b728a5b93 (IsA contentedness acceptance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contention is a kind of assertion", "pln": ["(: cnet_isa_234ff972f3 (IsA contention assertion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contentiousness is a kind of disagreeableness", "pln": ["(: cnet_isa_76951e0fbf (IsA contentiousness disagreeableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contentment is a kind of good feeling", "pln": ["(: cnet_isa_7922c725a5 (IsA contentment good_feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contentment is a kind of happiness", "pln": ["(: cnet_isa_05c5393a4e (IsA contentment happiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "content is a kind of list", "pln": ["(: cnet_isa_680c9a067c (IsA content list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "content is a kind of table", "pln": ["(: cnet_isa_f5fe6ce74a (IsA content table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contest is a kind of competition", "pln": ["(: cnet_isa_2f3bfafc9f (IsA contest competition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contest is a kind of social event", "pln": ["(: cnet_isa_aae07bed65 (IsA contest social_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contestant is a kind of person", "pln": ["(: cnet_isa_84741e0216 (IsA contestant person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contestee is a kind of winner", "pln": ["(: cnet_isa_98d7268deb (IsA contestee winner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "contester is a kind of disputant", "pln": ["(: cnet_isa_588c9e695f (IsA contester disputant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "context is a kind of discourse", "pln": ["(: cnet_isa_bb0942b4ff (IsA context discourse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "context is a kind of environment", "pln": ["(: cnet_isa_c88dd86f49 (IsA context environment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contextual definition is a kind of definition", "pln": ["(: cnet_isa_9dc5f80f28 (IsA contextual_definition definition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contextualism is a kind of doctrine", "pln": ["(: cnet_isa_7eb84d0bd7 (IsA contextualism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "continence is a kind of restraint", "pln": ["(: cnet_isa_f08bff95d1 (IsA continence restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "continence is a kind of self discipline", "pln": ["(: cnet_isa_5ed1c43b45 (IsA continence self_discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "continent is a kind of landmass", "pln": ["(: cnet_isa_7b9ffa08a8 (IsA continent landmass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "continental army is a kind of army", "pln": ["(: cnet_isa_79492652e2 (IsA continental_army army) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "continental breakfast is a kind of breakfast", "pln": ["(: cnet_isa_e37f0179a8 (IsA continental_breakfast breakfast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "continental congress is a kind of congress", "pln": ["(: cnet_isa_4ddb82a5e2 (IsA continental_congress congress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "continental divide is a kind of watershed", "pln": ["(: cnet_isa_93127255b9 (IsA continental_divide watershed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "continental drift is a kind of geological phenomenon", "pln": ["(: cnet_isa_c3a9c111fc (IsA continental_drift geological_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "continental glacier is a kind of glacier", "pln": ["(: cnet_isa_1b02813c6e (IsA continental_glacier glacier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "continental shelf is a kind of ocean floor", "pln": ["(: cnet_isa_c2a3d644a5 (IsA continental_shelf ocean_floor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "continental slope is a kind of ocean floor", "pln": ["(: cnet_isa_6a430f5387 (IsA continental_slope ocean_floor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "contingency is a kind of dependence", "pln": ["(: cnet_isa_712cdcef20 (IsA contingency dependence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contingency fee is a kind of fee", "pln": ["(: cnet_isa_c8af4570c1 (IsA contingency_fee fee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contingency procedure is a kind of routine", "pln": ["(: cnet_isa_dbe7b56af9 (IsA contingency_procedure routine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contingent is a kind of gathering", "pln": ["(: cnet_isa_b5cd5d048f (IsA contingent gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contingent is a kind of military unit", "pln": ["(: cnet_isa_619950fc1a (IsA contingent military_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "continuance is a kind of activity", "pln": ["(: cnet_isa_d269f34283 (IsA continuance activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "continuant consonant is a kind of obstruent", "pln": ["(: cnet_isa_1872cee660 (IsA continuant_consonant obstruent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "continued fraction is a kind of fraction", "pln": ["(: cnet_isa_c8463432f9 (IsA continued_fraction fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "continuing education is a kind of education", "pln": ["(: cnet_isa_61edd52d97 (IsA continuing_education education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "continuing trespass is a kind of trespass", "pln": ["(: cnet_isa_1239c25bb7 (IsA continuing_trespass trespass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "continuity is a kind of lastingness", "pln": ["(: cnet_isa_5a55965ba6 (IsA continuity lastingness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "continuity is a kind of script", "pln": ["(: cnet_isa_334f8b7f9b (IsA continuity script) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "continuity is a kind of coherence", "pln": ["(: cnet_isa_4a8373b22b (IsA continuity coherence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "continuous creation theory is a kind of scientific theory", "pln": ["(: cnet_isa_03166b727d (IsA continuous_creation_theory scientific_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "continuousness is a kind of endlessness", "pln": ["(: cnet_isa_cd4e668061 (IsA continuousness endlessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "continuum is a kind of time", "pln": ["(: cnet_isa_7df64a9344 (IsA continuum time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conto is a kind of portuguese monetary unit", "pln": ["(: cnet_isa_a87b94f85d (IsA conto portuguese_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contopus is a kind of bird genus", "pln": ["(: cnet_isa_c987454ea7 (IsA contopus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contortion is a kind of change of shape", "pln": ["(: cnet_isa_61c84a8632 (IsA contortion change_of_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contortionist is a kind of acrobat", "pln": ["(: cnet_isa_2a978def59 (IsA contortionist acrobat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contour is a kind of feature", "pln": ["(: cnet_isa_7b2b61f3fa (IsA contour feature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contour is a kind of isometric line", "pln": ["(: cnet_isa_787135f7e9 (IsA contour isometric_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contour feather is a kind of feather", "pln": ["(: cnet_isa_59742dea33 (IsA contour_feather feather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "contour language is a kind of tone language", "pln": ["(: cnet_isa_7ecab26167 (IsA contour_language tone_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contour map is a kind of map", "pln": ["(: cnet_isa_99b51c7859 (IsA contour_map map) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contra is a kind of nicaraguan", "pln": ["(: cnet_isa_cec2681cb0 (IsA contra nicaraguan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contraband is a kind of merchandise", "pln": ["(: cnet_isa_0e5c3f50e9 (IsA contraband merchandise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contrabassoon is a kind of bassoon", "pln": ["(: cnet_isa_69c6f33ad2 (IsA contrabassoon bassoon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contraception is a kind of birth control", "pln": ["(: cnet_isa_ca939f9703 (IsA contraception birth_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contraceptive is a kind of device", "pln": ["(: cnet_isa_9929c4c5ff (IsA contraceptive device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contraceptive is a kind of pill", "pln": ["(: cnet_isa_5d2d9e400e (IsA contraceptive pill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contract is a kind of agreement enforceable at law", "pln": ["(: cnet_isa_0e24759c0c (IsA contract agreement_enforceable_at_law) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contract is a kind of bridge", "pln": ["(: cnet_isa_2227209911 (IsA contract bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contract is a kind of written agreement", "pln": ["(: cnet_isa_2465dc6038 (IsA contract written_agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contract is a kind of bid", "pln": ["(: cnet_isa_25b1e5fa8b (IsA contract bid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contract killing is a kind of murder", "pln": ["(: cnet_isa_b184a5b4d4 (IsA contract_killing murder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contract law is a kind of jurisprudence", "pln": ["(: cnet_isa_98e55aa62c (IsA contract_law jurisprudence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contract offer is a kind of offer", "pln": ["(: cnet_isa_ab4c10fbcc (IsA contract_offer offer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contractile organ is a kind of organ", "pln": ["(: cnet_isa_97f16e832d (IsA contractile_organ organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contractility is a kind of ability", "pln": ["(: cnet_isa_bcd293f5b5 (IsA contractility ability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contraction is a kind of decrease", "pln": ["(: cnet_isa_b3c8e17d24 (IsA contraction decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contraction is a kind of word", "pln": ["(: cnet_isa_3291cc0615 (IsA contraction word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contraction is a kind of shortening", "pln": ["(: cnet_isa_f2a448afb4 (IsA contraction shortening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contractor is a kind of party", "pln": ["(: cnet_isa_887a505fc0 (IsA contractor party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contractor is a kind of bridge player", "pln": ["(: cnet_isa_df9490d82b (IsA contractor bridge_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "contractor is a kind of builder", "pln": ["(: cnet_isa_e991137c7c (IsA contractor builder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contracture is a kind of contraction", "pln": ["(: cnet_isa_ab048032d7 (IsA contracture contraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contradiction is a kind of negation", "pln": ["(: cnet_isa_61830ad5e8 (IsA contradiction negation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contradiction is a kind of opposition", "pln": ["(: cnet_isa_94a515a01d (IsA contradiction opposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contradiction is a kind of falsehood", "pln": ["(: cnet_isa_bbb0e9cc6b (IsA contradiction falsehood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contradictoriness is a kind of opposition", "pln": ["(: cnet_isa_12d34260b4 (IsA contradictoriness opposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contradictory is a kind of logical relation", "pln": ["(: cnet_isa_5ef2995516 (IsA contradictory logical_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contradistinction is a kind of differentiation", "pln": ["(: cnet_isa_7d62af2fb0 (IsA contradistinction differentiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contrail is a kind of cloud", "pln": ["(: cnet_isa_85ef8279cd (IsA contrail cloud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contraindication is a kind of reason", "pln": ["(: cnet_isa_65e7392496 (IsA contraindication reason) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contralto is a kind of singing voice", "pln": ["(: cnet_isa_4645a2a8fb (IsA contralto singing_voice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contralto is a kind of singer", "pln": ["(: cnet_isa_7710ee334c (IsA contralto singer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contrapuntist is a kind of composer", "pln": ["(: cnet_isa_e12af75e9b (IsA contrapuntist composer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contrarian is a kind of investor", "pln": ["(: cnet_isa_8ebf6c0ac8 (IsA contrarian investor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "contrariety is a kind of opposition", "pln": ["(: cnet_isa_cc63ad5035 (IsA contrariety opposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contrariness is a kind of unruliness", "pln": ["(: cnet_isa_f1785204b9 (IsA contrariness unruliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contrary is a kind of logical relation", "pln": ["(: cnet_isa_9da7654d07 (IsA contrary logical_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contrary is a kind of opposition", "pln": ["(: cnet_isa_fd9403305e (IsA contrary opposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contrast is a kind of comparison", "pln": ["(: cnet_isa_90a7703bb4 (IsA contrast comparison) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contrast is a kind of visual perception", "pln": ["(: cnet_isa_b21e4a8b04 (IsA contrast visual_perception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contrast is a kind of opposition", "pln": ["(: cnet_isa_1c78f8d412 (IsA contrast opposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "contrast is a kind of scope", "pln": ["(: cnet_isa_389028f469 (IsA contrast scope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contrast medium is a kind of medium", "pln": ["(: cnet_isa_1e926e9de9 (IsA contrast_medium medium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contretemp is a kind of brush", "pln": ["(: cnet_isa_289d287d6e (IsA contretemp brush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contribution is a kind of attempt", "pln": ["(: cnet_isa_b7ec9605f0 (IsA contribution attempt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contribution is a kind of giving", "pln": ["(: cnet_isa_77aa1083df (IsA contribution giving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contribution is a kind of publication", "pln": ["(: cnet_isa_d5fa3478ea (IsA contribution publication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contribution is a kind of gift", "pln": ["(: cnet_isa_9b4c0d96ce (IsA contribution gift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contribution is a kind of sum", "pln": ["(: cnet_isa_987b165505 (IsA contribution sum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contributor is a kind of writer", "pln": ["(: cnet_isa_8ef3e869e4 (IsA contributor writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contributory negligence is a kind of negligence", "pln": ["(: cnet_isa_cd3c6c9c02 (IsA contributory_negligence negligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contrivance is a kind of arrangement", "pln": ["(: cnet_isa_802e4f3996 (IsA contrivance arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contrivance is a kind of invention", "pln": ["(: cnet_isa_42937bc11a (IsA contrivance invention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "contrivance is a kind of scheme", "pln": ["(: cnet_isa_7325d9d95c (IsA contrivance scheme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "control is a kind of activity", "pln": ["(: cnet_isa_53f37747d6 (IsA control activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "control is a kind of mechanism", "pln": ["(: cnet_isa_974cd712ac (IsA control mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "control is a kind of power", "pln": ["(: cnet_isa_15a4fb63ef (IsA control power) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "control is a kind of economic policy", "pln": ["(: cnet_isa_5a407df5b7 (IsA control economic_policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "control is a kind of relation", "pln": ["(: cnet_isa_1eac404178 (IsA control relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "control is a kind of spirit", "pln": ["(: cnet_isa_17b26def9a (IsA control spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "control is a kind of bodily process", "pln": ["(: cnet_isa_0ce093f21d (IsA control bodily_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "control account is a kind of accounting", "pln": ["(: cnet_isa_69a34c94bb (IsA control_account accounting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "control center is a kind of center", "pln": ["(: cnet_isa_d0d574d6eb (IsA control_center center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "control character is a kind of ascii character", "pln": ["(: cnet_isa_947c2d7608 (IsA control_character ascii_character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "control circuit is a kind of feedback circuit", "pln": ["(: cnet_isa_cc943f8b6c (IsA control_circuit feedback_circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "control condition is a kind of criterion", "pln": ["(: cnet_isa_86aa9c1878 (IsA control_condition criterion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "control experiment is a kind of experiment", "pln": ["(: cnet_isa_db72a4093e (IsA control_experiment experiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "control freak is a kind of compulsive", "pln": ["(: cnet_isa_55a1e6b304 (IsA control_freak compulsive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "control key is a kind of key", "pln": ["(: cnet_isa_c722fed41e (IsA control_key key) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "control operation is a kind of operation", "pln": ["(: cnet_isa_5c6cc6f157 (IsA control_operation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "control panel is a kind of electrical device", "pln": ["(: cnet_isa_01e33d5e81 (IsA control_panel electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "control rod is a kind of rod", "pln": ["(: cnet_isa_77ee0e61ba (IsA control_rod rod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "control room is a kind of room", "pln": ["(: cnet_isa_a743593369 (IsA control_room room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "control stock is a kind of stock", "pln": ["(: cnet_isa_47ef8d1ca2 (IsA control_stock stock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "control system is a kind of system", "pln": ["(: cnet_isa_95e92979e4 (IsA control_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "control tower is a kind of tower", "pln": ["(: cnet_isa_46a9a2b276 (IsA control_tower tower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "controlled substance is a kind of drug", "pln": ["(: cnet_isa_b82ca3620a (IsA controlled_substance drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "controllership is a kind of position", "pln": ["(: cnet_isa_f77833ec01 (IsA controllership position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "controlling interest is a kind of interest", "pln": ["(: cnet_isa_4bdb89160e (IsA controlling_interest interest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "controversy is a kind of dispute", "pln": ["(: cnet_isa_c71b495b14 (IsA controversy dispute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contumacy is a kind of insubordination", "pln": ["(: cnet_isa_db0e58ebc9 (IsA contumacy insubordination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "contumacy is a kind of disobedience", "pln": ["(: cnet_isa_d253439653 (IsA contumacy disobedience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "contusion is a kind of hit", "pln": ["(: cnet_isa_2597b37e82 (IsA contusion hit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conurbation is a kind of urban area", "pln": ["(: cnet_isa_b6d3c56bb6 (IsA conurbation urban_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conuropsis is a kind of bird genus", "pln": ["(: cnet_isa_af32a28be9 (IsA conuropsis bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convalescence is a kind of healing", "pln": ["(: cnet_isa_bb0de31b98 (IsA convalescence healing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convalescent is a kind of sick person", "pln": ["(: cnet_isa_a837c67b2f (IsA convalescent sick_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convallaria is a kind of liliid monocot genus", "pln": ["(: cnet_isa_8b3fc760ea (IsA convallaria liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convallariaceae is a kind of liliid monocot family", "pln": ["(: cnet_isa_62fc5ef309 (IsA convallariaceae liliid_monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convection is a kind of natural process", "pln": ["(: cnet_isa_4453c4e61a (IsA convection natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convection is a kind of temperature change", "pln": ["(: cnet_isa_b9b2aa09d0 (IsA convection temperature_change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convector is a kind of heater", "pln": ["(: cnet_isa_ce1b01bece (IsA convector heater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convener is a kind of caller", "pln": ["(: cnet_isa_dbc3692f8d (IsA convener caller) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convenience is a kind of suitability", "pln": ["(: cnet_isa_3710af25dc (IsA convenience suitability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "convenience is a kind of comfort", "pln": ["(: cnet_isa_254dcb198f (IsA convenience comfort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convenience food is a kind of food", "pln": ["(: cnet_isa_c20681b95e (IsA convenience_food food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convenience store is a kind of shop", "pln": ["(: cnet_isa_c2edfbd920 (IsA convenience_store shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convent is a kind of religious residence", "pln": ["(: cnet_isa_1c28d81f34 (IsA convent religious_residence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "convent is a kind of community", "pln": ["(: cnet_isa_bd1ce60279 (IsA convent community) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conventicle is a kind of place of worship", "pln": ["(: cnet_isa_65b9f335aa (IsA conventicle place_of_worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conventicle is a kind of meeting", "pln": ["(: cnet_isa_441f84a7a2 (IsA conventicle meeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convention is a kind of assembly", "pln": ["(: cnet_isa_23fdf3c1e0 (IsA convention assembly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convention is a kind of practice", "pln": ["(: cnet_isa_4c70776f24 (IsA convention practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convention is a kind of treaty", "pln": ["(: cnet_isa_33315b43d3 (IsA convention treaty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convention is a kind of meeting", "pln": ["(: cnet_isa_fc7a615b3f (IsA convention meeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conventionality is a kind of orthodoxy", "pln": ["(: cnet_isa_249f8e661e (IsA conventionality orthodoxy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conventionality is a kind of conformity", "pln": ["(: cnet_isa_de2a270b3d (IsA conventionality conformity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conventionality is a kind of unoriginality", "pln": ["(: cnet_isa_156ad8a142 (IsA conventionality unoriginality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "conventionalization is a kind of stylization", "pln": ["(: cnet_isa_f1e399ed3f (IsA conventionalization stylization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conventioneer is a kind of attendant", "pln": ["(: cnet_isa_077a408ec3 (IsA conventioneer attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convergence is a kind of joining", "pln": ["(: cnet_isa_39fce36732 (IsA convergence joining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convergence is a kind of sery", "pln": ["(: cnet_isa_198bddb84a (IsA convergence sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convergence is a kind of happening", "pln": ["(: cnet_isa_449a0d345c (IsA convergence happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convergent thinking is a kind of thinking", "pln": ["(: cnet_isa_10ebb18d04 (IsA convergent_thinking thinking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "converging len is a kind of len", "pln": ["(: cnet_isa_cfff51bf83 (IsA converging_len len) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conversation is a kind of speech", "pln": ["(: cnet_isa_d245760ab2 (IsA conversation speech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conversation piece is a kind of center", "pln": ["(: cnet_isa_98d42e5fce (IsA conversation_piece center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conversation stopper is a kind of remark", "pln": ["(: cnet_isa_a06bcad0b9 (IsA conversation_stopper remark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conversationalist is a kind of speaker", "pln": ["(: cnet_isa_e000d638f7 (IsA conversationalist speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "converse is a kind of proposition", "pln": ["(: cnet_isa_e534cfe9a2 (IsA converse proposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conversion is a kind of change", "pln": ["(: cnet_isa_f086297cad (IsA conversion change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conversion is a kind of exchange", "pln": ["(: cnet_isa_74ac69effa (IsA conversion exchange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conversion is a kind of redemption", "pln": ["(: cnet_isa_69894f1680 (IsA conversion redemption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conversion is a kind of score", "pln": ["(: cnet_isa_369dd13297 (IsA conversion score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conversion is a kind of calculation", "pln": ["(: cnet_isa_d93493dda3 (IsA conversion calculation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conversion is a kind of rhetorical device", "pln": ["(: cnet_isa_f72509e579 (IsA conversion rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conversion is a kind of transformation", "pln": ["(: cnet_isa_37dd26241b (IsA conversion transformation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conversion is a kind of defense mechanism", "pln": ["(: cnet_isa_bb02c1daf3 (IsA conversion defense_mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conversion disorder is a kind of mental disorder", "pln": ["(: cnet_isa_f8439c4d91 (IsA conversion_disorder mental_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conversion factor is a kind of factor", "pln": ["(: cnet_isa_325997c27c (IsA conversion_factor factor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "converso is a kind of convert", "pln": ["(: cnet_isa_cf63bd10fc (IsA converso convert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convert is a kind of person", "pln": ["(: cnet_isa_10c623ea5b (IsA convert person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "converter is a kind of device", "pln": ["(: cnet_isa_b6ccbefddf (IsA converter device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "convertibility is a kind of exchangeability", "pln": ["(: cnet_isa_8eb28c3748 (IsA convertibility exchangeability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convertible is a kind of car", "pln": ["(: cnet_isa_de1fdfc618 (IsA convertible car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convertible is a kind of sofa", "pln": ["(: cnet_isa_7d0b1260ad (IsA convertible sofa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convertible is a kind of security", "pln": ["(: cnet_isa_1bcf33f268 (IsA convertible security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "convertible bond is a kind of bond", "pln": ["(: cnet_isa_37e994dfc9 (IsA convertible_bond bond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convex polygon is a kind of polygon", "pln": ["(: cnet_isa_9d2d5129e1 (IsA convex_polygon polygon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convex polyhedron is a kind of polyhedron", "pln": ["(: cnet_isa_d24c875bdc (IsA convex_polyhedron polyhedron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convex shape is a kind of solid", "pln": ["(: cnet_isa_0a3d2791bc (IsA convex_shape solid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "convexity is a kind of shape", "pln": ["(: cnet_isa_f7838329be (IsA convexity shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conveyance is a kind of transfer", "pln": ["(: cnet_isa_e52366822f (IsA conveyance transfer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conveyance is a kind of instrumentality", "pln": ["(: cnet_isa_e2a87948e2 (IsA conveyance instrumentality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conveyance is a kind of transmission", "pln": ["(: cnet_isa_bf06f1c70b (IsA conveyance transmission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conveyance is a kind of legal document", "pln": ["(: cnet_isa_4f5efc63b6 (IsA conveyance legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conveyancer is a kind of lawyer", "pln": ["(: cnet_isa_0defa9e2db (IsA conveyancer lawyer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conveyer is a kind of messenger", "pln": ["(: cnet_isa_65e2c99df7 (IsA conveyer messenger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conveyer belt is a kind of belt", "pln": ["(: cnet_isa_15f13410b7 (IsA conveyer_belt belt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convict is a kind of prisoner", "pln": ["(: cnet_isa_0774c5ed24 (IsA convict prisoner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convict is a kind of wrongdoer", "pln": ["(: cnet_isa_f1d59c1d7b (IsA convict wrongdoer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conviction is a kind of belief", "pln": ["(: cnet_isa_9de59ac64f (IsA conviction belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conviction is a kind of final judgment", "pln": ["(: cnet_isa_24248745b9 (IsA conviction final_judgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convincingness is a kind of persuasiveness", "pln": ["(: cnet_isa_33e769c4ac (IsA convincingness persuasiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "conviviality is a kind of sociability", "pln": ["(: cnet_isa_3c4b00d267 (IsA conviviality sociability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convocation is a kind of assembly", "pln": ["(: cnet_isa_70dc476f25 (IsA convocation assembly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convocation is a kind of gathering", "pln": ["(: cnet_isa_3c3c807abb (IsA convocation gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convolution is a kind of change of shape", "pln": ["(: cnet_isa_a56d369930 (IsA convolution change_of_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convolvulaceae is a kind of dicot family", "pln": ["(: cnet_isa_02ddb349cc (IsA convolvulaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convolvulus is a kind of vine", "pln": ["(: cnet_isa_5dd442df2e (IsA convolvulus vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convoy is a kind of escort", "pln": ["(: cnet_isa_53771faafd (IsA convoy escort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convoy is a kind of collection", "pln": ["(: cnet_isa_d27fc1b033 (IsA convoy collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convoy is a kind of procession", "pln": ["(: cnet_isa_15fe0e01a4 (IsA convoy procession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convulsion is a kind of trouble", "pln": ["(: cnet_isa_adb5aa6876 (IsA convulsion trouble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convulsion is a kind of disturbance", "pln": ["(: cnet_isa_b2efcfc8c2 (IsA convulsion disturbance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "convulsion is a kind of seizure", "pln": ["(: cnet_isa_6a527b6d2e (IsA convulsion seizure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "conyza is a kind of asterid dicot genus", "pln": ["(: cnet_isa_4b6782e8ad (IsA conyza asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coo is a kind of cry", "pln": ["(: cnet_isa_b5adfd98aa (IsA coo cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cook is a kind of skilled worker", "pln": ["(: cnet_isa_898537a227 (IsA cook skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cookbook is a kind of reference book", "pln": ["(: cnet_isa_53aa6ebdd9 (IsA cookbook reference_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cooker is a kind of cooking utensil", "pln": ["(: cnet_isa_639516666c (IsA cooker cooking_utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cookfire is a kind of fire", "pln": ["(: cnet_isa_a2d631d4e5 (IsA cookfire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cookhouse is a kind of shelter", "pln": ["(: cnet_isa_d5ed60d1c2 (IsA cookhouse shelter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cookie is a kind of text", "pln": ["(: cnet_isa_4288275fc6 (IsA cookie text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cookie is a kind of cake", "pln": ["(: cnet_isa_e8272d7521 (IsA cookie cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cookie is a kind of cook", "pln": ["(: cnet_isa_16a51735f6 (IsA cookie cook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cookie cutter is a kind of kitchen utensil", "pln": ["(: cnet_isa_6f65375546 (IsA cookie_cutter kitchen_utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cookie jar is a kind of jar", "pln": ["(: cnet_isa_caf242cf67 (IsA cookie_jar jar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cookie jar reserve is a kind of hidden reserve", "pln": ["(: cnet_isa_ff95c9cbb3 (IsA cookie_jar_reserve hidden_reserve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cookie sheet is a kind of cooking utensil", "pln": ["(: cnet_isa_2f0c63f605 (IsA cookie_sheet cooking_utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cooking is a kind of change of state", "pln": ["(: cnet_isa_34e6183195 (IsA cooking change_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cooking apple is a kind of apple", "pln": ["(: cnet_isa_8182448195 (IsA cooking_apple apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cooking food is a kind of fun activity", "pln": ["(: cnet_isa_6ea6bc85fe (IsA cooking_food fun_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cooking oil is a kind of oil", "pln": ["(: cnet_isa_1df1993c1f (IsA cooking_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cooking oil is a kind of vegetable oil", "pln": ["(: cnet_isa_5f06c79027 (IsA cooking_oil vegetable_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cooking utensil is a kind of kitchen utensil", "pln": ["(: cnet_isa_44e50743fa (IsA cooking_utensil kitchen_utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cookout is a kind of picnic", "pln": ["(: cnet_isa_c4319e5625 (IsA cookout picnic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cookstove is a kind of stove", "pln": ["(: cnet_isa_65c566ee5d (IsA cookstove stove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cool is a kind of coldness", "pln": ["(: cnet_isa_08554297c6 (IsA cool coldness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cool jazz is a kind of jazz", "pln": ["(: cnet_isa_ae0e560916 (IsA cool_jazz jazz) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coolant is a kind of agent", "pln": ["(: cnet_isa_93adf51ede (IsA coolant agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coolant is a kind of fluid", "pln": ["(: cnet_isa_30823c9b6c (IsA coolant fluid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coolant system is a kind of cooling system", "pln": ["(: cnet_isa_db84d74ef8 (IsA coolant_system cooling_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cooler is a kind of cell", "pln": ["(: cnet_isa_3da8a595e1 (IsA cooler cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cooler is a kind of refrigerator", "pln": ["(: cnet_isa_77fad01598 (IsA cooler refrigerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cooler is a kind of beverage", "pln": ["(: cnet_isa_47fbc0aead (IsA cooler beverage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cooley s anemia is a kind of thalassemia", "pln": ["(: cnet_isa_127bc40a10 (IsA cooley_s_anemia thalassemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coolie is a kind of asiatic", "pln": ["(: cnet_isa_962e9eec47 (IsA coolie asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cooling is a kind of temperature change", "pln": ["(: cnet_isa_752cb9dd75 (IsA cooling temperature_change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cooling system is a kind of equipment", "pln": ["(: cnet_isa_12108148e7 (IsA cooling_system equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cooling system is a kind of mechanism", "pln": ["(: cnet_isa_ae1171e7d9 (IsA cooling_system mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cooling tower is a kind of cooling system", "pln": ["(: cnet_isa_4d2402a9a5 (IsA cooling_tower cooling_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coolness is a kind of fearlessness", "pln": ["(: cnet_isa_3e7803214f (IsA coolness fearlessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coolness is a kind of calmness", "pln": ["(: cnet_isa_e78a6e78b1 (IsA coolness calmness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coon is a kind of rustic", "pln": ["(: cnet_isa_a25067bb90 (IsA coon rustic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coondog is a kind of coonhound", "pln": ["(: cnet_isa_ee61ecaa71 (IsA coondog coonhound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coonhound is a kind of hound", "pln": ["(: cnet_isa_ca6e552eb9 (IsA coonhound hound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coonskin cap is a kind of cap", "pln": ["(: cnet_isa_4f6b42f235 (IsA coonskin_cap cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coontie is a kind of zamia", "pln": ["(: cnet_isa_b2d6b030b4 (IsA coontie zamia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cooper s hawk is a kind of hawk", "pln": ["(: cnet_isa_ca985edb6d (IsA cooper_s_hawk hawk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cooperation is a kind of group action", "pln": ["(: cnet_isa_bcb9f248ad (IsA cooperation group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cooperation is a kind of practice", "pln": ["(: cnet_isa_80c09d1b1d (IsA cooperation practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cooperative is a kind of commercial enterprise", "pln": ["(: cnet_isa_96c983bd7f (IsA cooperative commercial_enterprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cooperative is a kind of association", "pln": ["(: cnet_isa_815cbbb43c (IsA cooperative association) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coordinate is a kind of number", "pln": ["(: cnet_isa_fec08130b9 (IsA coordinate number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coordinate axis is a kind of axis", "pln": ["(: cnet_isa_872f78c42c (IsA coordinate_axis axis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coordinate bond is a kind of covalent bond", "pln": ["(: cnet_isa_4dcff9c077 (IsA coordinate_bond covalent_bond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coordinate clause is a kind of clause", "pln": ["(: cnet_isa_4a24d1b03a (IsA coordinate_clause clause) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coordinate system is a kind of arrangement", "pln": ["(: cnet_isa_2ccbc0359a (IsA coordinate_system arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coordinated universal time is a kind of greenwich mean time", "pln": ["(: cnet_isa_317d2ed7ab (IsA coordinated_universal_time greenwich_mean_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coordinating conjunction is a kind of conjunction", "pln": ["(: cnet_isa_a2909aa2e8 (IsA coordinating_conjunction conjunction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coordination is a kind of timing", "pln": ["(: cnet_isa_bfb986abdf (IsA coordination timing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coordination is a kind of classification", "pln": ["(: cnet_isa_3e61dd10dc (IsA coordination classification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coordination is a kind of skillfulness", "pln": ["(: cnet_isa_8482a7d037 (IsA coordination skillfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coordination is a kind of grammatical relation", "pln": ["(: cnet_isa_523523fcda (IsA coordination grammatical_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coordinator is a kind of organizer", "pln": ["(: cnet_isa_b5a0e86c9a (IsA coordinator organizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coot is a kind of rail", "pln": ["(: cnet_isa_bbaea7c11b (IsA coot rail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cooter is a kind of turtle", "pln": ["(: cnet_isa_b2626a50a5 (IsA cooter turtle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copaiba is a kind of oleoresin", "pln": ["(: cnet_isa_93ce95dbb3 (IsA copaiba oleoresin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copal is a kind of natural resin", "pln": ["(: cnet_isa_22181774e7 (IsA copal natural_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copalite is a kind of copal", "pln": ["(: cnet_isa_c7967c7b53 (IsA copalite copal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copartner is a kind of partner", "pln": ["(: cnet_isa_6b47e0b884 (IsA copartner partner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copartnership is a kind of partnership", "pln": ["(: cnet_isa_36f592b0fa (IsA copartnership partnership) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cope is a kind of cloak", "pln": ["(: cnet_isa_ae69ca3cc0 (IsA cope cloak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copehan is a kind of penutian", "pln": ["(: cnet_isa_2244d79af6 (IsA copehan penutian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copepod is a kind of crustacean", "pln": ["(: cnet_isa_c5fcfc80f5 (IsA copepod crustacean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copepoda is a kind of class", "pln": ["(: cnet_isa_1b39bafc7b (IsA copepoda class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copernican system is a kind of model", "pln": ["(: cnet_isa_227a3be829 (IsA copernican_system model) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copernicia is a kind of monocot genus", "pln": ["(: cnet_isa_45af2b7587 (IsA copernicia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copilot is a kind of pilot", "pln": ["(: cnet_isa_c535a61706 (IsA copilot pilot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coping saw is a kind of handsaw", "pln": ["(: cnet_isa_cf598ce8dc (IsA coping_saw handsaw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "copolymer is a kind of polymer", "pln": ["(: cnet_isa_32354a11be (IsA copolymer polymer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copout is a kind of failure", "pln": ["(: cnet_isa_d750580aa3 (IsA copout failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copper is a kind of element", "pln": ["(: cnet_isa_a9eb5009af (IsA copper element) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copper is a kind of good conductor of electricity", "pln": ["(: cnet_isa_0c699e7c1a (IsA copper good_conductor_of_electricity) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "copper is a kind of good electrical conductor", "pln": ["(: cnet_isa_8ed1ca72e4 (IsA copper good_electrical_conductor) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copper is a kind of metal", "pln": ["(: cnet_isa_3d5f9a0b56 (IsA copper metal) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copper is a kind of lycaenid", "pln": ["(: cnet_isa_81e4c9f2c7 (IsA copper lycaenid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copper is a kind of reddish brown", "pln": ["(: cnet_isa_5db7e64876 (IsA copper reddish_brown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copper is a kind of penny", "pln": ["(: cnet_isa_99cc683010 (IsA copper penny) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copper is a kind of conductor", "pln": ["(: cnet_isa_6ef21872b8 (IsA copper conductor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copper is a kind of metallic element", "pln": ["(: cnet_isa_6860d0154d (IsA copper metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copper base alloy is a kind of alloy", "pln": ["(: cnet_isa_607d6e5827 (IsA copper_base_alloy alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copper beech is a kind of beech", "pln": ["(: cnet_isa_108ad26c0f (IsA copper_beech beech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copper mine is a kind of mine", "pln": ["(: cnet_isa_cbdc777bdb (IsA copper_mine mine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copper oxide is a kind of oxide", "pln": ["(: cnet_isa_91641c535f (IsA copper_oxide oxide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copper rockfish is a kind of rockfish", "pln": ["(: cnet_isa_b5c9ec08ff (IsA copper_rockfish rockfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copper sulfate is a kind of sulfate", "pln": ["(: cnet_isa_cacbe8924d (IsA copper_sulfate sulfate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copperhead is a kind of elapid", "pln": ["(: cnet_isa_fd85edb5ec (IsA copperhead elapid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copperhead is a kind of pit viper", "pln": ["(: cnet_isa_13d1f48ff3 (IsA copperhead pit_viper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copperplate is a kind of engraving", "pln": ["(: cnet_isa_2f39d818c0 (IsA copperplate engraving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copperplate is a kind of print", "pln": ["(: cnet_isa_ad51d0055b (IsA copperplate print) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copperplate is a kind of longhand", "pln": ["(: cnet_isa_1519860777 (IsA copperplate longhand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coppersmith is a kind of craftsman", "pln": ["(: cnet_isa_7a9ceff9ad (IsA coppersmith craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copperware is a kind of utensil", "pln": ["(: cnet_isa_af10d776bd (IsA copperware utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copra is a kind of coconut", "pln": ["(: cnet_isa_b030fa1707 (IsA copra coconut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coprinaceae is a kind of fungus family", "pln": ["(: cnet_isa_2df42550ca (IsA coprinaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coprinus is a kind of fungus genus", "pln": ["(: cnet_isa_0a2bd95fb4 (IsA coprinus fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coprolalia is a kind of pathology", "pln": ["(: cnet_isa_55f38bd011 (IsA coprolalia pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coprolite is a kind of dropping", "pln": ["(: cnet_isa_3e3de5bf71 (IsA coprolite dropping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coprolith is a kind of mass", "pln": ["(: cnet_isa_7e49b325fe (IsA coprolith mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coprophagy is a kind of eating", "pln": ["(: cnet_isa_7b49d36e59 (IsA coprophagy eating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copt is a kind of christian", "pln": ["(: cnet_isa_4b51cdd1b5 (IsA copt christian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copt is a kind of egyptian", "pln": ["(: cnet_isa_f2e7f0fcec (IsA copt egyptian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coptic is a kind of egyptian", "pln": ["(: cnet_isa_96fe918bb3 (IsA coptic egyptian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coptic church is a kind of church", "pln": ["(: cnet_isa_cd75c38e79 (IsA coptic_church church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coptis is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_e94aa574f1 (IsA coptis magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copula is a kind of verb", "pln": ["(: cnet_isa_6724a992ce (IsA copula verb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copulative conjunction is a kind of conjunction", "pln": ["(: cnet_isa_1e728a816c (IsA copulative_conjunction conjunction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copy is a kind of representation", "pln": ["(: cnet_isa_d575add3d3 (IsA copy representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copy is a kind of material", "pln": ["(: cnet_isa_b614f6f090 (IsA copy material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copy is a kind of text", "pln": ["(: cnet_isa_79c4ecb4ab (IsA copy text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copy editing is a kind of editing", "pln": ["(: cnet_isa_5b46813459 (IsA copy_editing editing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copy editor is a kind of editor", "pln": ["(: cnet_isa_a346fa4510 (IsA copy_editor editor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copybook is a kind of book", "pln": ["(: cnet_isa_aba4ac9172 (IsA copybook book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copycat is a kind of person", "pln": ["(: cnet_isa_8f18d1bd51 (IsA copycat person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copyhold is a kind of tenure", "pln": ["(: cnet_isa_93c2d87126 (IsA copyhold tenure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copyholder is a kind of mechanical device", "pln": ["(: cnet_isa_ddada783e1 (IsA copyholder mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copying is a kind of repetition", "pln": ["(: cnet_isa_067ae1b6de (IsA copying repetition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "copyist is a kind of employee", "pln": ["(: cnet_isa_8e0513208f (IsA copyist employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "coquilles saint jacques is a kind of dish", "pln": ["(: cnet_isa_9882265ec1 (IsA coquilles_saint_jacques dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copyright is a kind of document", "pln": ["(: cnet_isa_33bb68826b (IsA copyright document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copyright is a kind of legal right", "pln": ["(: cnet_isa_4b83efaa9c (IsA copyright legal_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copyright infringement is a kind of crime", "pln": ["(: cnet_isa_c2296eec2e (IsA copyright_infringement crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copyright infringement is a kind of violation", "pln": ["(: cnet_isa_a8301524c4 (IsA copyright_infringement violation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "copywriter is a kind of employee", "pln": ["(: cnet_isa_61070ea60a (IsA copywriter employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coq au vin is a kind of dish", "pln": ["(: cnet_isa_19262ac429 (IsA coq_au_vin dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coquette is a kind of woman", "pln": ["(: cnet_isa_122727973c (IsA coquette woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coquilla nut is a kind of seed", "pln": ["(: cnet_isa_80e8a22c75 (IsA coquilla_nut seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coquille is a kind of dish", "pln": ["(: cnet_isa_0de70c129f (IsA coquille dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coquille saint jacque is a kind of dish", "pln": ["(: cnet_isa_0224922d86 (IsA coquille_saint_jacque dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cor pulmonale is a kind of hypertrophy", "pln": ["(: cnet_isa_144a703f89 (IsA cor_pulmonale hypertrophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coracia is a kind of bird genus", "pln": ["(: cnet_isa_315bfae784 (IsA coracia bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coraciidae is a kind of bird family", "pln": ["(: cnet_isa_df973230ac (IsA coraciidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coraciiform bird is a kind of bird", "pln": ["(: cnet_isa_b3df667f6c (IsA coraciiform_bird bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coraciiforme is a kind of animal order", "pln": ["(: cnet_isa_e89b9afd9d (IsA coraciiforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coracle is a kind of small boat", "pln": ["(: cnet_isa_b600216f1b (IsA coracle small_boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coragyp is a kind of bird genus", "pln": ["(: cnet_isa_74a88574da (IsA coragyp bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coral is a kind of anthozoan", "pln": ["(: cnet_isa_f26ac7de18 (IsA coral anthozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coral is a kind of pink", "pln": ["(: cnet_isa_14006d280c (IsA coral pink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coral is a kind of roe", "pln": ["(: cnet_isa_92fbb20c63 (IsA coral roe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coral is a kind of opaque gem", "pln": ["(: cnet_isa_9fab685f7b (IsA coral opaque_gem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coral bean tree is a kind of coral tree", "pln": ["(: cnet_isa_67d1d399d1 (IsA coral_bean_tree coral_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coral bush is a kind of shrub", "pln": ["(: cnet_isa_84e09bc1c6 (IsA coral_bush shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "coral drops is a kind of flower", "pln": ["(: cnet_isa_e841e7ca86 (IsA coral_drops flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coral drop is a kind of flower", "pln": ["(: cnet_isa_ae9ec1d7ec (IsA coral_drop flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coral fungus is a kind of fungus", "pln": ["(: cnet_isa_b700a801b4 (IsA coral_fungus fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coral gem is a kind of subshrub", "pln": ["(: cnet_isa_24c7e002a7 (IsA coral_gem subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coral necklace is a kind of herb", "pln": ["(: cnet_isa_5e0928d036 (IsA coral_necklace herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coral pea is a kind of vine", "pln": ["(: cnet_isa_40c3ed5fbc (IsA coral_pea vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coral reef is a kind of reef", "pln": ["(: cnet_isa_a0be9836b1 (IsA coral_reef reef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coral root is a kind of orchid", "pln": ["(: cnet_isa_ee589dbf17 (IsA coral_root orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coral root bittercress is a kind of bittercress", "pln": ["(: cnet_isa_1b38cfa0bc (IsA coral_root_bittercress bittercress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coral snake is a kind of elapid", "pln": ["(: cnet_isa_faec8590a9 (IsA coral_snake elapid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coral tree is a kind of tree", "pln": ["(: cnet_isa_84fcaee53a (IsA coral_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coral vine is a kind of coral pea", "pln": ["(: cnet_isa_994f0f1259 (IsA coral_vine coral_pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coralbell is a kind of alumroot", "pln": ["(: cnet_isa_035504eab3 (IsA coralbell alumroot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coralberry is a kind of shrub", "pln": ["(: cnet_isa_7cf14c6272 (IsA coralberry shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corallorhiza is a kind of monocot genus", "pln": ["(: cnet_isa_d0e03cbd93 (IsA corallorhiza monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coralwood is a kind of tree", "pln": ["(: cnet_isa_46111c43a4 (IsA coralwood tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corbel is a kind of bracket", "pln": ["(: cnet_isa_ac0bdae419 (IsA corbel bracket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corbel arch is a kind of arch", "pln": ["(: cnet_isa_6c3af200b7 (IsA corbel_arch arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corbel step is a kind of step", "pln": ["(: cnet_isa_ac2e0c5a20 (IsA corbel_step step) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corbie gable is a kind of gable", "pln": ["(: cnet_isa_0902eed52a (IsA corbie_gable gable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corbina is a kind of whiting", "pln": ["(: cnet_isa_129edea57f (IsA corbina whiting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corchorus is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_bf7c7f3665 (IsA corchorus dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corchorus is a kind of subshrub", "pln": ["(: cnet_isa_1a80b4f1e3 (IsA corchorus subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cord is a kind of conductor", "pln": ["(: cnet_isa_34ee4d677e (IsA cord conductor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cord is a kind of fabric", "pln": ["(: cnet_isa_0d0be77d1e (IsA cord fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cord is a kind of line", "pln": ["(: cnet_isa_3426438763 (IsA cord line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cord is a kind of volume unit", "pln": ["(: cnet_isa_8bac195041 (IsA cord volume_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cord blood is a kind of blood", "pln": ["(: cnet_isa_175fd1a7d2 (IsA cord_blood blood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cordage is a kind of rope", "pln": ["(: cnet_isa_be77a38422 (IsA cordage rope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cordage is a kind of measure", "pln": ["(: cnet_isa_82128008d5 (IsA cordage measure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cordaitaceae is a kind of gymnosperm family", "pln": ["(: cnet_isa_9e724f491d (IsA cordaitaceae gymnosperm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cordaitale is a kind of plant order", "pln": ["(: cnet_isa_84bf9ad0c7 (IsA cordaitale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cordaite is a kind of gymnosperm genus", "pln": ["(: cnet_isa_3f9d6c9029 (IsA cordaite gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cordate leaf is a kind of simple leaf", "pln": ["(: cnet_isa_58d4c64b2f (IsA cordate_leaf simple_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cordgrass is a kind of grass", "pln": ["(: cnet_isa_6ea5217735 (IsA cordgrass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cordia is a kind of dicot genus", "pln": ["(: cnet_isa_71fa1e34ce (IsA cordia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cordial reception is a kind of welcome", "pln": ["(: cnet_isa_014139bf64 (IsA cordial_reception welcome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cordierite is a kind of mineral", "pln": ["(: cnet_isa_9a12e00b9f (IsA cordierite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cordite is a kind of explosive compound", "pln": ["(: cnet_isa_f27e7cb4c4 (IsA cordite explosive_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corditis is a kind of inflammation", "pln": ["(: cnet_isa_3f53555224 (IsA corditis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cordoba is a kind of nicaraguan monetary unit", "pln": ["(: cnet_isa_2c586b139d (IsA cordoba nicaraguan_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cordon is a kind of adornment", "pln": ["(: cnet_isa_539e15e4bd (IsA cordon adornment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cordon is a kind of insignia", "pln": ["(: cnet_isa_6d0a3231c8 (IsA cordon insignia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cordon is a kind of sery", "pln": ["(: cnet_isa_c4ef04f05d (IsA cordon sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cordon bleu is a kind of chef", "pln": ["(: cnet_isa_819dc1d47f (IsA cordon_bleu chef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "cords is a kind of pair of trousers", "pln": ["(: cnet_isa_71dba77b8d (IsA cords pair_of_trousers) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cordovan is a kind of leather", "pln": ["(: cnet_isa_fb1f8ed94e (IsA cordovan leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cord is a kind of pair of trouser", "pln": ["(: cnet_isa_207aee44b2 (IsA cord pair_of_trouser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corduroy is a kind of road", "pln": ["(: cnet_isa_1d59770e09 (IsA corduroy road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cordwood is a kind of firewood", "pln": ["(: cnet_isa_7e3422a9fd (IsA cordwood firewood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cordylidae is a kind of reptile genus", "pln": ["(: cnet_isa_32e1efafd4 (IsA cordylidae reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cordyline is a kind of liliid monocot genus", "pln": ["(: cnet_isa_bea42e888a (IsA cordyline liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cordylus is a kind of reptile genus", "pln": ["(: cnet_isa_6c1943f933 (IsA cordylus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "core is a kind of bar", "pln": ["(: cnet_isa_cef2bcd3fa (IsA core bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "core is a kind of chamber", "pln": ["(: cnet_isa_a9cf472568 (IsA core chamber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "core is a kind of set", "pln": ["(: cnet_isa_8ae4da1247 (IsA core set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "core is a kind of center", "pln": ["(: cnet_isa_c71b3144e4 (IsA core center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "core is a kind of sample", "pln": ["(: cnet_isa_c6494582e9 (IsA core sample) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "core bit is a kind of drilling bit", "pln": ["(: cnet_isa_af67b961e7 (IsA core_bit drilling_bit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "core drill is a kind of drill", "pln": ["(: cnet_isa_0119c8766b (IsA core_drill drill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "core dump is a kind of dump", "pln": ["(: cnet_isa_71bb57d4de (IsA core_dump dump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coreference is a kind of grammatical relation", "pln": ["(: cnet_isa_41472a8f13 (IsA coreference grammatical_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coregonidae is a kind of fish family", "pln": ["(: cnet_isa_3d2bb49724 (IsA coregonidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coregonus is a kind of fish genus", "pln": ["(: cnet_isa_81ba957ca4 (IsA coregonus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coreid bug is a kind of hemipterous insect", "pln": ["(: cnet_isa_2aa97150c1 (IsA coreid_bug hemipterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coreidae is a kind of arthropod family", "pln": ["(: cnet_isa_1e195066a7 (IsA coreidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coreligionist is a kind of religionist", "pln": ["(: cnet_isa_45c01bce50 (IsA coreligionist religionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coreopsis is a kind of herb", "pln": ["(: cnet_isa_b6e485816e (IsA coreopsis herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corer is a kind of device", "pln": ["(: cnet_isa_ab54fc18a7 (IsA corer device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corespondent is a kind of codefendant", "pln": ["(: cnet_isa_39a9fd3920 (IsA corespondent codefendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corgi is a kind of dog", "pln": ["(: cnet_isa_dac354eec5 (IsA corgi dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coriander is a kind of flavorer", "pln": ["(: cnet_isa_7ff8dc9f5e (IsA coriander flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coriander is a kind of herb", "pln": ["(: cnet_isa_dbc223c031 (IsA coriander herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coriandrum is a kind of rosid dicot genus", "pln": ["(: cnet_isa_dfbc2da906 (IsA coriandrum rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corinthian is a kind of hellene", "pln": ["(: cnet_isa_c699d9a814 (IsA corinthian hellene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corinthian order is a kind of order", "pln": ["(: cnet_isa_f7b16e81af (IsA corinthian_order order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coriolis effect is a kind of consequence", "pln": ["(: cnet_isa_a578145fc5 (IsA coriolis_effect consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coriolis force is a kind of force", "pln": ["(: cnet_isa_40eeb38c49 (IsA coriolis_force force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corixa is a kind of arthropod genus", "pln": ["(: cnet_isa_b6dacf60c0 (IsA corixa arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corixidae is a kind of arthropod family", "pln": ["(: cnet_isa_d26aefade2 (IsA corixidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cork is a kind of plug", "pln": ["(: cnet_isa_a0f6c29df0 (IsA cork plug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cork is a kind of bark", "pln": ["(: cnet_isa_27d1e12d83 (IsA cork bark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cork is a kind of plant material", "pln": ["(: cnet_isa_b4489edeb0 (IsA cork plant_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cork oak is a kind of oak", "pln": ["(: cnet_isa_453a57a152 (IsA cork_oak oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cork tree is a kind of coral tree", "pln": ["(: cnet_isa_9d61a5cee1 (IsA cork_tree coral_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cork tree is a kind of tree", "pln": ["(: cnet_isa_cb0745b4ca (IsA cork_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corkage is a kind of service charge", "pln": ["(: cnet_isa_3a4aa71cee (IsA corkage service_charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "corkboard is a kind of insulating material", "pln": ["(: cnet_isa_76b8b81e2b (IsA corkboard insulating_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corker is a kind of machine", "pln": ["(: cnet_isa_daa431b870 (IsA corker machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corker is a kind of message", "pln": ["(: cnet_isa_28792eac23 (IsA corker message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corkscrew is a kind of bottle opener", "pln": ["(: cnet_isa_a307122247 (IsA corkscrew bottle_opener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "corkwood is a kind of shrub", "pln": ["(: cnet_isa_fc533df9cf (IsA corkwood shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corm is a kind of stalk", "pln": ["(: cnet_isa_0a6f316116 (IsA corm stalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cormorant is a kind of pelecaniform seabird", "pln": ["(: cnet_isa_3cdc90b485 (IsA cormorant pelecaniform_seabird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cormous plant is a kind of vascular plant", "pln": ["(: cnet_isa_6379045d2c (IsA cormous_plant vascular_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn is a kind of food", "pln": ["(: cnet_isa_d966bf106a (IsA corn food) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "corn is a kind of starchy vegetable", "pln": ["(: cnet_isa_8735f63d43 (IsA corn starchy_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn is a kind of vegetable", "pln": ["(: cnet_isa_184d4c37d5 (IsA corn vegetable) (STV 1.0 0.9781))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn is a kind of mawkishness", "pln": ["(: cnet_isa_705eb29c70 (IsA corn mawkishness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn is a kind of grain", "pln": ["(: cnet_isa_6a952ece90 (IsA corn grain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn is a kind of cereal", "pln": ["(: cnet_isa_5240fd94b6 (IsA corn cereal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn is a kind of kernel", "pln": ["(: cnet_isa_3c2a67e442 (IsA corn kernel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn is a kind of callosity", "pln": ["(: cnet_isa_1bdb9f6b87 (IsA corn callosity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn borer is a kind of caterpillar", "pln": ["(: cnet_isa_65ede18b2b (IsA corn_borer caterpillar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn borer is a kind of pyralid", "pln": ["(: cnet_isa_4008c04a1f (IsA corn_borer pyralid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn bread is a kind of bread", "pln": ["(: cnet_isa_0a98be4be3 (IsA corn_bread bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn cake is a kind of cornbread", "pln": ["(: cnet_isa_3fc110adce (IsA corn_cake cornbread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn chamomile is a kind of composite", "pln": ["(: cnet_isa_78973e8df5 (IsA corn_chamomile composite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn chip is a kind of snack food", "pln": ["(: cnet_isa_960bfb9de2 (IsA corn_chip snack_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn chowder is a kind of chowder", "pln": ["(: cnet_isa_dc59e6dac3 (IsA corn_chowder chowder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn cockle is a kind of weed", "pln": ["(: cnet_isa_b8f7219a29 (IsA corn_cockle weed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn dab is a kind of cornbread", "pln": ["(: cnet_isa_f55a775da2 (IsA corn_dab cornbread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn dance is a kind of rain dance", "pln": ["(: cnet_isa_71add1f44d (IsA corn_dance rain_dance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn earworm is a kind of bollworm", "pln": ["(: cnet_isa_53f6f02d89 (IsA corn_earworm bollworm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn exchange is a kind of exchange", "pln": ["(: cnet_isa_194dda1ecb (IsA corn_exchange exchange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn flake is a kind of cold cereal", "pln": ["(: cnet_isa_4900553e0d (IsA corn_flake cold_cereal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn fritter is a kind of fritter", "pln": ["(: cnet_isa_7f6feaa275 (IsA corn_fritter fritter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "corn gluten is a kind of gluten", "pln": ["(: cnet_isa_b93dfef8b8 (IsA corn_gluten gluten) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "corn gluten feed is a kind of feed", "pln": ["(: cnet_isa_3849da92b1 (IsA corn_gluten_feed feed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn lily is a kind of iridaceous plant", "pln": ["(: cnet_isa_97145130d2 (IsA corn_lily iridaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn marigold is a kind of chrysanthemum", "pln": ["(: cnet_isa_38a9834ea7 (IsA corn_marigold chrysanthemum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn mint is a kind of mint", "pln": ["(: cnet_isa_4aeb411854 (IsA corn_mint mint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn muffin is a kind of muffin", "pln": ["(: cnet_isa_8383c59ad6 (IsA corn_muffin muffin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn oil is a kind of vegetable oil", "pln": ["(: cnet_isa_4c2d9c96b7 (IsA corn_oil vegetable_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn poppy is a kind of poppy", "pln": ["(: cnet_isa_64fafe4593 (IsA corn_poppy poppy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn pudding is a kind of pudding", "pln": ["(: cnet_isa_5eef82feb2 (IsA corn_pudding pudding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn salad is a kind of herb", "pln": ["(: cnet_isa_95ab7f82ca (IsA corn_salad herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn silk is a kind of style", "pln": ["(: cnet_isa_8594cc1a32 (IsA corn_silk style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn snake is a kind of rat snake", "pln": ["(: cnet_isa_0ab3244c7c (IsA corn_snake rat_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn snow is a kind of snow", "pln": ["(: cnet_isa_0379a287a4 (IsA corn_snow snow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn speedwell is a kind of veronica", "pln": ["(: cnet_isa_9de54d0742 (IsA corn_speedwell veronica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn spurry is a kind of weed", "pln": ["(: cnet_isa_769be44bf7 (IsA corn_spurry weed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn stalk is a kind of stalk", "pln": ["(: cnet_isa_9ad48770b7 (IsA corn_stalk stalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn sugar is a kind of sugar", "pln": ["(: cnet_isa_9a3423a8dd (IsA corn_sugar sugar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn sugar is a kind of glucose", "pln": ["(: cnet_isa_e891d60e96 (IsA corn_sugar glucose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn syrup is a kind of syrup", "pln": ["(: cnet_isa_f70d17969d (IsA corn_syrup syrup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corn whiskey is a kind of whiskey", "pln": ["(: cnet_isa_ec3e50c9ae (IsA corn_whiskey whiskey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cornaceae is a kind of rosid dicot family", "pln": ["(: cnet_isa_09927fb7aa (IsA cornaceae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cornbread is a kind of food", "pln": ["(: cnet_isa_009fe90f67 (IsA cornbread food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cornbread is a kind of quick bread", "pln": ["(: cnet_isa_d5b17badb8 (IsA cornbread quick_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corncob is a kind of core", "pln": ["(: cnet_isa_3f6c99440f (IsA corncob core) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corncrake is a kind of crake", "pln": ["(: cnet_isa_a5d58518d6 (IsA corncrake crake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corncrib is a kind of crib", "pln": ["(: cnet_isa_da6a5dd545 (IsA corncrib crib) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cornea is a kind of membrane", "pln": ["(: cnet_isa_c87e41e269 (IsA cornea membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corned beef hash is a kind of hash", "pln": ["(: cnet_isa_f169f66080 (IsA corned_beef_hash hash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cornelian cherry is a kind of dogwood", "pln": ["(: cnet_isa_7bffcb1704 (IsA cornelian_cherry dogwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corner is a kind of structure", "pln": ["(: cnet_isa_300046a48b (IsA corner structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corner is a kind of area", "pln": ["(: cnet_isa_2f008250b0 (IsA corner area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corner is a kind of intersection", "pln": ["(: cnet_isa_2a4f00dee3 (IsA corner intersection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "corner is a kind of point", "pln": ["(: cnet_isa_2a8c51f64b (IsA corner point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corner is a kind of part", "pln": ["(: cnet_isa_ad14e1e11e (IsA corner part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corner is a kind of monopoly", "pln": ["(: cnet_isa_bdb1b88de4 (IsA corner monopoly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corner is a kind of predicament", "pln": ["(: cnet_isa_20587bd468 (IsA corner predicament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corner kick is a kind of free kick", "pln": ["(: cnet_isa_f425227601 (IsA corner_kick free_kick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corner pocket is a kind of pocket", "pln": ["(: cnet_isa_660e3b6451 (IsA corner_pocket pocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corner post is a kind of post", "pln": ["(: cnet_isa_d17460feeb (IsA corner_post post) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cornerback is a kind of football player", "pln": ["(: cnet_isa_bcf0d1ce8f (IsA cornerback football_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cornerstone is a kind of stone", "pln": ["(: cnet_isa_cf79e190df (IsA cornerstone stone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cornet is a kind of brass", "pln": ["(: cnet_isa_e799ed440c (IsA cornet brass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cornetfish is a kind of teleost fish", "pln": ["(: cnet_isa_c27f3eb439 (IsA cornetfish teleost_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cornfield is a kind of grainfield", "pln": ["(: cnet_isa_3fec696415 (IsA cornfield grainfield) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cornflower is a kind of flower", "pln": ["(: cnet_isa_7064f81a28 (IsA cornflower flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cornhusk is a kind of husk", "pln": ["(: cnet_isa_def4cbd928 (IsA cornhusk husk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cornhusker is a kind of american", "pln": ["(: cnet_isa_49e929a8d9 (IsA cornhusker american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cornhusker is a kind of worker", "pln": ["(: cnet_isa_7ae3bc8a27 (IsA cornhusker worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cornhusking is a kind of denudation", "pln": ["(: cnet_isa_cfab9b27d7 (IsA cornhusking denudation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cornice is a kind of framework", "pln": ["(: cnet_isa_4f05664bfd (IsA cornice framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cornice is a kind of molding", "pln": ["(: cnet_isa_e8b78063e9 (IsA cornice molding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cornice is a kind of projection", "pln": ["(: cnet_isa_bde1c323dc (IsA cornice projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cornish is a kind of domestic fowl", "pln": ["(: cnet_isa_41968086e7 (IsA cornish domestic_fowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cornish is a kind of brythonic", "pln": ["(: cnet_isa_55d692eb5b (IsA cornish brythonic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cornish heath is a kind of erica", "pln": ["(: cnet_isa_2b61647d90 (IsA cornish_heath erica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cornish pasty is a kind of pasty", "pln": ["(: cnet_isa_2a7b8f4724 (IsA cornish_pasty pasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cornishman is a kind of englishman", "pln": ["(: cnet_isa_3f07ca048b (IsA cornishman englishman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cornishwoman is a kind of englishwoman", "pln": ["(: cnet_isa_d4cfe92b4e (IsA cornishwoman englishwoman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cornmeal is a kind of meal", "pln": ["(: cnet_isa_0f53951bf8 (IsA cornmeal meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cornpone is a kind of cornbread", "pln": ["(: cnet_isa_c54c1048f8 (IsA cornpone cornbread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cornsmut is a kind of smut", "pln": ["(: cnet_isa_3893231c34 (IsA cornsmut smut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cornstarch is a kind of starch", "pln": ["(: cnet_isa_6426784f15 (IsA cornstarch starch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cornu is a kind of structure", "pln": ["(: cnet_isa_5fc6846956 (IsA cornu structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cornus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_cca2e82464 (IsA cornus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corokia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_4f9247739d (IsA corokia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "corolla is a kind of coil", "pln": ["(: cnet_isa_ea5d23fb95 (IsA corolla coil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corollary is a kind of consequence", "pln": ["(: cnet_isa_487e480e59 (IsA corollary consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corollary is a kind of inference", "pln": ["(: cnet_isa_cc0d954e4b (IsA corollary inference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corona is a kind of structure", "pln": ["(: cnet_isa_5d743f0473 (IsA corona structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corona is a kind of cigar", "pln": ["(: cnet_isa_649769cd56 (IsA corona cigar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corona is a kind of plant part", "pln": ["(: cnet_isa_e06a0ce9c4 (IsA corona plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corona is a kind of light", "pln": ["(: cnet_isa_68b2e8ddb0 (IsA corona light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corona discharge is a kind of discharge", "pln": ["(: cnet_isa_ce5dcdc0d8 (IsA corona_discharge discharge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coronal suture is a kind of suture", "pln": ["(: cnet_isa_9ffb33e2c7 (IsA coronal_suture suture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coronary artery is a kind of artery", "pln": ["(: cnet_isa_a01e2c62ff (IsA coronary_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coronary bypass is a kind of open heart surgery", "pln": ["(: cnet_isa_a005c324ff (IsA coronary_bypass open_heart_surgery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coronary care unit is a kind of intensive care unit", "pln": ["(: cnet_isa_6540780088 (IsA coronary_care_unit intensive_care_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coronary heart disease is a kind of heart disease", "pln": ["(: cnet_isa_65d246db23 (IsA coronary_heart_disease heart_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coronary insufficiency is a kind of insufficiency", "pln": ["(: cnet_isa_10b17e4d3a (IsA coronary_insufficiency insufficiency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coronary occlusion is a kind of coronary heart disease", "pln": ["(: cnet_isa_a9da896b8f (IsA coronary_occlusion coronary_heart_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coronary occlusion is a kind of occlusion", "pln": ["(: cnet_isa_eb9cb65561 (IsA coronary_occlusion occlusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coronary sinus is a kind of venous sinus", "pln": ["(: cnet_isa_6e249a2735 (IsA coronary_sinus venous_sinus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coronary thrombosis is a kind of coronary heart disease", "pln": ["(: cnet_isa_2de1a0a69e (IsA coronary_thrombosis coronary_heart_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coronary thrombosis is a kind of thrombosis", "pln": ["(: cnet_isa_9ae1250220 (IsA coronary_thrombosis thrombosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coronation is a kind of initiation", "pln": ["(: cnet_isa_d1d05a25b5 (IsA coronation initiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coroner is a kind of investigator", "pln": ["(: cnet_isa_e1d301cde0 (IsA coroner investigator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coronet is a kind of animal tissue", "pln": ["(: cnet_isa_6cc57f4191 (IsA coronet animal_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coronet is a kind of crown", "pln": ["(: cnet_isa_9e1b07b2d8 (IsA coronet crown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coronilla is a kind of shrub", "pln": ["(: cnet_isa_90c35fbfbf (IsA coronilla shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coronion is a kind of craniometric point", "pln": ["(: cnet_isa_ee5c2c9964 (IsA coronion craniometric_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coronoid process is a kind of process", "pln": ["(: cnet_isa_6a2fced352 (IsA coronoid_process process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coronoid process of mandible is a kind of coronoid process", "pln": ["(: cnet_isa_35ef1b1dec (IsA coronoid_process_of_mandible coronoid_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corozo is a kind of palm", "pln": ["(: cnet_isa_80a413ec56 (IsA corozo palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corporal is a kind of noncommissioned officer", "pln": ["(: cnet_isa_38f2145b9a (IsA corporal noncommissioned_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "corporal punishment is a kind of punishment", "pln": ["(: cnet_isa_5d736501b5 (IsA corporal_punishment punishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corporate bond is a kind of bond", "pln": ["(: cnet_isa_983de8e998 (IsA corporate_bond bond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corporate executive is a kind of executive", "pln": ["(: cnet_isa_ea5aa1cf44 (IsA corporate_executive executive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corporate finance is a kind of finance", "pln": ["(: cnet_isa_6143acc0a2 (IsA corporate_finance finance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corporate investor is a kind of company", "pln": ["(: cnet_isa_64f9523351 (IsA corporate_investor company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corporation is a kind of firm", "pln": ["(: cnet_isa_7b0da54033 (IsA corporation firm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corporation law is a kind of jurisprudence", "pln": ["(: cnet_isa_f1dc339d38 (IsA corporation_law jurisprudence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corporatism is a kind of control", "pln": ["(: cnet_isa_6bedcdb76d (IsA corporatism control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corporatist is a kind of supporter", "pln": ["(: cnet_isa_9f004e8d0d (IsA corporatist supporter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corp is a kind of army unit", "pln": ["(: cnet_isa_5110660cc1 (IsA corp army_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corp is a kind of body", "pln": ["(: cnet_isa_675a34197a (IsA corp body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corp de ballet is a kind of chorus", "pln": ["(: cnet_isa_6dbf9a1dfb (IsA corp_de_ballet chorus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corpulence is a kind of fleshiness", "pln": ["(: cnet_isa_5e42b07d0e (IsA corpulence fleshiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corpus is a kind of part", "pln": ["(: cnet_isa_962c1b23b8 (IsA corpus part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corpus is a kind of collection", "pln": ["(: cnet_isa_7cbaa8abca (IsA corpus collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corpus callosum is a kind of commissure", "pln": ["(: cnet_isa_587a4be081 (IsA corpus_callosum commissure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corpus christi is a kind of christian holy day", "pln": ["(: cnet_isa_6a91854ffe (IsA corpus_christi christian_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corpus delicti is a kind of evidence", "pln": ["(: cnet_isa_e6bd09bf6c (IsA corpus_delicti evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corpus luteum is a kind of endocrine gland", "pln": ["(: cnet_isa_05381918ab (IsA corpus_luteum endocrine_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corpus striatum is a kind of basal ganglion", "pln": ["(: cnet_isa_c2980d6138 (IsA corpus_striatum basal_ganglion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corpuscular radiation is a kind of radiation", "pln": ["(: cnet_isa_69b6c99aac (IsA corpuscular_radiation radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corpuscular theory is a kind of scientific theory", "pln": ["(: cnet_isa_8362d8651a (IsA corpuscular_theory scientific_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "correction is a kind of improvement", "pln": ["(: cnet_isa_6a6012b7fe (IsA correction improvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "correction is a kind of therapy", "pln": ["(: cnet_isa_93ea6faa01 (IsA correction therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "correction is a kind of drop", "pln": ["(: cnet_isa_4df2f46f95 (IsA correction drop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "correction is a kind of editing", "pln": ["(: cnet_isa_dcf637402b (IsA correction editing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "correction is a kind of rebuke", "pln": ["(: cnet_isa_841d11e2ab (IsA correction rebuke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "correction is a kind of indefinite quantity", "pln": ["(: cnet_isa_2e9e211791 (IsA correction indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "correctional institution is a kind of penal institution", "pln": ["(: cnet_isa_278c223f82 (IsA correctional_institution penal_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "correctional rehabilitation is a kind of rehabilitation", "pln": ["(: cnet_isa_f35eea1ff9 (IsA correctional_rehabilitation rehabilitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "correction is a kind of social control", "pln": ["(: cnet_isa_04e5d67696 (IsA correction social_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "correction is a kind of local department", "pln": ["(: cnet_isa_58b299c26f (IsA correction local_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corrective is a kind of device", "pln": ["(: cnet_isa_b883d4384b (IsA corrective device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "correctness is a kind of propriety", "pln": ["(: cnet_isa_306fb2c0eb (IsA correctness propriety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "correctness is a kind of quality", "pln": ["(: cnet_isa_300f2cf899 (IsA correctness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "correlate is a kind of variable", "pln": ["(: cnet_isa_7b0515bf87 (IsA correlate variable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "correlation is a kind of statistic", "pln": ["(: cnet_isa_ffc831cb4b (IsA correlation statistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "correlation is a kind of reciprocality", "pln": ["(: cnet_isa_c01bd4feb7 (IsA correlation reciprocality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "correlation coefficient is a kind of parametric statistic", "pln": ["(: cnet_isa_5dadcc4a14 (IsA correlation_coefficient parametric_statistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "correlation matrix is a kind of matrix", "pln": ["(: cnet_isa_2245313a24 (IsA correlation_matrix matrix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "correlation table is a kind of table", "pln": ["(: cnet_isa_9374cd7bfb (IsA correlation_table table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "correlational analysis is a kind of multivariate analysis", "pln": ["(: cnet_isa_4aaffcfcfc (IsA correlational_analysis multivariate_analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "correspondence is a kind of first class", "pln": ["(: cnet_isa_8433d6d124 (IsA correspondence first_class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "correspondence is a kind of written communication", "pln": ["(: cnet_isa_ab17df94dd (IsA correspondence written_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "correspondence course is a kind of course", "pln": ["(: cnet_isa_f70ee51fbe (IsA correspondence_course course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "correspondence school is a kind of school", "pln": ["(: cnet_isa_bfb86f75aa (IsA correspondence_school school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "correspondent is a kind of communicator", "pln": ["(: cnet_isa_109d03273e (IsA correspondent communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "correspondent is a kind of journalist", "pln": ["(: cnet_isa_ffb500b08f (IsA correspondent journalist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corridor is a kind of passageway", "pln": ["(: cnet_isa_aec4160612 (IsA corridor passageway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corrigenda is a kind of list", "pln": ["(: cnet_isa_6d163453cb (IsA corrigenda list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corrigendum is a kind of error", "pln": ["(: cnet_isa_515ca0a9bb (IsA corrigendum error) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "corroborating evidence is a kind of evidence", "pln": ["(: cnet_isa_cc22b3608a (IsA corroborating_evidence evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corrosion is a kind of chemical process", "pln": ["(: cnet_isa_bffe8f552f (IsA corrosion chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corrosion is a kind of deterioration", "pln": ["(: cnet_isa_a9288d4a7c (IsA corrosion deterioration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corrosive is a kind of compound", "pln": ["(: cnet_isa_e284f2dd50 (IsA corrosive compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corrugated board is a kind of cardboard", "pln": ["(: cnet_isa_562b3be56f (IsA corrugated_board cardboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corrugated fastener is a kind of fastener", "pln": ["(: cnet_isa_61a5774abd (IsA corrugated_fastener fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corrugated iron is a kind of sheet metal", "pln": ["(: cnet_isa_6e41bc1a73 (IsA corrugated_iron sheet_metal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corrugation is a kind of change of shape", "pln": ["(: cnet_isa_72c23b30f8 (IsA corrugation change_of_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corrugation is a kind of ridge", "pln": ["(: cnet_isa_c2e4b7e07b (IsA corrugation ridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corruptibility is a kind of immorality", "pln": ["(: cnet_isa_6552305d9a (IsA corruptibility immorality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corruption is a kind of degradation", "pln": ["(: cnet_isa_3d7d5c6889 (IsA corruption degradation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corruption is a kind of inducement", "pln": ["(: cnet_isa_7bf3908963 (IsA corruption inducement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "corruption is a kind of immorality", "pln": ["(: cnet_isa_1e800d9c16 (IsA corruption immorality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corruption is a kind of decay", "pln": ["(: cnet_isa_2a9c8e96c8 (IsA corruption decay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corruptness is a kind of dishonesty", "pln": ["(: cnet_isa_f101b4e993 (IsA corruptness dishonesty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corruptness is a kind of dishonor", "pln": ["(: cnet_isa_60d281a5b3 (IsA corruptness dishonor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "corsair is a kind of pirate", "pln": ["(: cnet_isa_4b9031e613 (IsA corsair pirate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corselet is a kind of body armor", "pln": ["(: cnet_isa_abd5feecfd (IsA corselet body_armor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corset is a kind of foundation garment", "pln": ["(: cnet_isa_c4e5b7aea9 (IsA corset foundation_garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cortaderia is a kind of monocot genus", "pln": ["(: cnet_isa_f2458663fc (IsA cortaderia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cortege is a kind of gathering", "pln": ["(: cnet_isa_470a771453 (IsA cortege gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cortege is a kind of procession", "pln": ["(: cnet_isa_c38a70a77f (IsA cortege procession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cortex is a kind of animal tissue", "pln": ["(: cnet_isa_08ef3fb1f7 (IsA cortex animal_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cortex is a kind of plant tissue", "pln": ["(: cnet_isa_fc6e3fd2c4 (IsA cortex plant_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cortical area is a kind of area", "pln": ["(: cnet_isa_a9cff8340b (IsA cortical_area area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cortical cataract is a kind of cataract", "pln": ["(: cnet_isa_5787beb5e3 (IsA cortical_cataract cataract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cortical epilepsy is a kind of epilepsy", "pln": ["(: cnet_isa_312adf1936 (IsA cortical_epilepsy epilepsy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corticium is a kind of fungus genus", "pln": ["(: cnet_isa_cdcac9e8af (IsA corticium fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corticosteroid is a kind of steroid hormone", "pln": ["(: cnet_isa_56284e3ab3 (IsA corticosteroid steroid_hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corticosterone is a kind of glucocorticoid", "pln": ["(: cnet_isa_6e2d76f937 (IsA corticosterone glucocorticoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cortina is a kind of partial veil", "pln": ["(: cnet_isa_b96db9f231 (IsA cortina partial_veil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cortinariaceae is a kind of fungus family", "pln": ["(: cnet_isa_9ac270ff29 (IsA cortinariaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cortinarius is a kind of fungus genus", "pln": ["(: cnet_isa_d600038177 (IsA cortinarius fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cortinarius armillatus is a kind of agaric", "pln": ["(: cnet_isa_d8f25b384d (IsA cortinarius_armillatus agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cortinarius atkinsonianus is a kind of agaric", "pln": ["(: cnet_isa_891ef3bdec (IsA cortinarius_atkinsonianus agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cortinarius corrugatus is a kind of agaric", "pln": ["(: cnet_isa_f45ba96c89 (IsA cortinarius_corrugatus agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cortinarius gentilis is a kind of agaric", "pln": ["(: cnet_isa_709a3f07b9 (IsA cortinarius_gentilis agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cortinarius mutabilis is a kind of agaric", "pln": ["(: cnet_isa_e843c3ec54 (IsA cortinarius_mutabilis agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cortinarius semisanguineus is a kind of agaric", "pln": ["(: cnet_isa_9ee5de35cc (IsA cortinarius_semisanguineus agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cortinarius subfoetidus is a kind of agaric", "pln": ["(: cnet_isa_30e9283933 (IsA cortinarius_subfoetidus agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cortinarius violaceus is a kind of agaric", "pln": ["(: cnet_isa_5cd88674ae (IsA cortinarius_violaceus agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cortisone is a kind of corticosteroid", "pln": ["(: cnet_isa_7ce56b8484 (IsA cortisone corticosteroid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cortisone is a kind of ketosteroid", "pln": ["(: cnet_isa_df25fbf508 (IsA cortisone ketosteroid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cortland is a kind of eating apple", "pln": ["(: cnet_isa_3f76d120cb (IsA cortland eating_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corundom is a kind of mineral", "pln": ["(: cnet_isa_2c9fa2dd37 (IsA corundom mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coruscation is a kind of brilliance", "pln": ["(: cnet_isa_075a927a06 (IsA coruscation brilliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corvee is a kind of labor", "pln": ["(: cnet_isa_511b4de8cf (IsA corvee labor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corvette is a kind of warship", "pln": ["(: cnet_isa_c2b2c16be3 (IsA corvette warship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corvidae is a kind of bird family", "pln": ["(: cnet_isa_353a79d950 (IsA corvidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "corvine bird is a kind of oscine", "pln": ["(: cnet_isa_9dc4b5fa8e (IsA corvine_bird oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "coryanthes is a kind of monocot genus", "pln": ["(: cnet_isa_88caeee260 (IsA coryanthes monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corvus is a kind of bird genus", "pln": ["(: cnet_isa_fc7b20329e (IsA corvus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coryanthe is a kind of monocot genus", "pln": ["(: cnet_isa_aa6a3ebb22 (IsA coryanthe monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corydalidae is a kind of arthropod family", "pln": ["(: cnet_isa_21920bd5fa (IsA corydalidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corydalis is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_0c89d77041 (IsA corydalis dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corydalis is a kind of flower", "pln": ["(: cnet_isa_574a89f874 (IsA corydalis flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corydalus is a kind of arthropod genus", "pln": ["(: cnet_isa_720a9accd4 (IsA corydalus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corylaceae is a kind of hamamelid dicot family", "pln": ["(: cnet_isa_d7ffc4f3e6 (IsA corylaceae hamamelid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corylopsis is a kind of plant genus", "pln": ["(: cnet_isa_cc3b92b3ea (IsA corylopsis plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corylus is a kind of hamamelid dicot genus", "pln": ["(: cnet_isa_cdae0fea3b (IsA corylus hamamelid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "corymb is a kind of inflorescence", "pln": ["(: cnet_isa_686c8336d9 (IsA corymb inflorescence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "corynebacteriaceae is a kind of bacteria family", "pln": ["(: cnet_isa_56be7fd92b (IsA corynebacteriaceae bacteria_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corynebacterium is a kind of eubacteria", "pln": ["(: cnet_isa_50c4f7a3ca (IsA corynebacterium eubacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corynebacterium diphtheriae is a kind of corynebacterium", "pln": ["(: cnet_isa_1f452644cc (IsA corynebacterium_diphtheriae corynebacterium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "corypha is a kind of monocot genus", "pln": ["(: cnet_isa_0294b36117 (IsA corypha monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coryphaena equisetis is a kind of dolphinfish", "pln": ["(: cnet_isa_1165558787 (IsA coryphaena_equisetis dolphinfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coryphaena hippurus is a kind of dolphinfish", "pln": ["(: cnet_isa_a197577a7a (IsA coryphaena_hippurus dolphinfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coryphaenidae is a kind of fish family", "pln": ["(: cnet_isa_f43dde0a85 (IsA coryphaenidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coryphantha is a kind of cactus", "pln": ["(: cnet_isa_40ee238ba4 (IsA coryphantha cactus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "corythosaur is a kind of hadrosaur", "pln": ["(: cnet_isa_f9bad10b37 (IsA corythosaur hadrosaur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cos is a kind of lettuce", "pln": ["(: cnet_isa_e37b520946 (IsA cos lettuce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cos lettuce is a kind of lettuce", "pln": ["(: cnet_isa_9e711ff89f (IsA cos_lettuce lettuce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coscoroba is a kind of swan", "pln": ["(: cnet_isa_b08f6a1233 (IsA coscoroba swan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cosecant is a kind of trigonometric function", "pln": ["(: cnet_isa_333e233084 (IsA cosecant trigonometric_function) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cosigner is a kind of signer", "pln": ["(: cnet_isa_d41d9967d7 (IsA cosigner signer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cosine is a kind of trigonometric function", "pln": ["(: cnet_isa_ff1b763345 (IsA cosine trigonometric_function) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cosmetic is a kind of toiletry", "pln": ["(: cnet_isa_1537c50995 (IsA cosmetic toiletry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cosmetic dentistry is a kind of dentistry", "pln": ["(: cnet_isa_96b5f4036d (IsA cosmetic_dentistry dentistry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cosmetic surgeon is a kind of surgeon", "pln": ["(: cnet_isa_de8b3b81f7 (IsA cosmetic_surgeon surgeon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cosmetician is a kind of seller", "pln": ["(: cnet_isa_cb3d36f658 (IsA cosmetician seller) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cosmetologist is a kind of expert", "pln": ["(: cnet_isa_6fcec80b95 (IsA cosmetologist expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cosmetology is a kind of practice", "pln": ["(: cnet_isa_a8bc859bf1 (IsA cosmetology practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cosmic background radiation is a kind of cosmic radiation", "pln": ["(: cnet_isa_a647fcbbe1 (IsA cosmic_background_radiation cosmic_radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cosmic dust is a kind of cloud", "pln": ["(: cnet_isa_57112501cc (IsA cosmic_dust cloud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cosmic radiation is a kind of radiation", "pln": ["(: cnet_isa_9ef191755d (IsA cosmic_radiation radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cosmic ray is a kind of ionizing radiation", "pln": ["(: cnet_isa_fbfe1212cc (IsA cosmic_ray ionizing_radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cosmic string is a kind of elementary particle", "pln": ["(: cnet_isa_527ce307d4 (IsA cosmic_string elementary_particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cosmic time is a kind of time", "pln": ["(: cnet_isa_ca4130a5e4 (IsA cosmic_time time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cosmid is a kind of vector", "pln": ["(: cnet_isa_5b6ec5001b (IsA cosmid vector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cosmocampus is a kind of fish genus", "pln": ["(: cnet_isa_fa5bd56221 (IsA cosmocampus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cosmographer is a kind of scientist", "pln": ["(: cnet_isa_6dc8f848ce (IsA cosmographer scientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cosmography is a kind of representation", "pln": ["(: cnet_isa_0d47ea60b5 (IsA cosmography representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cosmography is a kind of natural science", "pln": ["(: cnet_isa_fe4c4e62be (IsA cosmography natural_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cosmolatry is a kind of worship", "pln": ["(: cnet_isa_2d4ea03abd (IsA cosmolatry worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cosmological constant is a kind of constant", "pln": ["(: cnet_isa_770802a290 (IsA cosmological_constant constant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cosmologist is a kind of astronomer", "pln": ["(: cnet_isa_ef1661326f (IsA cosmologist astronomer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cosmology is a kind of astrophysic", "pln": ["(: cnet_isa_e8ad30b216 (IsA cosmology astrophysic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cosmology is a kind of metaphysic", "pln": ["(: cnet_isa_34b2def102 (IsA cosmology metaphysic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cosmopolitan is a kind of sophisticate", "pln": ["(: cnet_isa_99c2cb5f20 (IsA cosmopolitan sophisticate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cosmo is a kind of flower", "pln": ["(: cnet_isa_5b378d0e57 (IsA cosmo flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cosmotron is a kind of synchrotron", "pln": ["(: cnet_isa_7ce0e22400 (IsA cosmotron synchrotron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cossack is a kind of slav", "pln": ["(: cnet_isa_0c4292c08e (IsA cossack slav) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cost is a kind of outgo", "pln": ["(: cnet_isa_79e2ecf0e8 (IsA cost outgo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cost accountant is a kind of accountant", "pln": ["(: cnet_isa_917136eb25 (IsA cost_accountant accountant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cost accounting is a kind of accountancy", "pln": ["(: cnet_isa_5f74fa18aa (IsA cost_accounting accountancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cost analysis is a kind of analysis", "pln": ["(: cnet_isa_33fb6b84d7 (IsA cost_analysis analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cost benefit analysis is a kind of analysis", "pln": ["(: cnet_isa_60f3e0ea25 (IsA cost_benefit_analysis analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cost cutting is a kind of cut", "pln": ["(: cnet_isa_395d0c8dbe (IsA cost_cutting cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cost ledger is a kind of ledger", "pln": ["(: cnet_isa_80ded797f8 (IsA cost_ledger ledger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cost of capital is a kind of opportunity cost", "pln": ["(: cnet_isa_fddde0e1dd (IsA cost_of_capital opportunity_cost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cost of living is a kind of cost", "pln": ["(: cnet_isa_77516a4b72 (IsA cost_of_living cost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cost of living allowance is a kind of allowance", "pln": ["(: cnet_isa_87ece6c586 (IsA cost_of_living_allowance allowance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cost of living benefit is a kind of benefit", "pln": ["(: cnet_isa_bc5da4a6fb (IsA cost_of_living_benefit benefit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cost overrun is a kind of cost", "pln": ["(: cnet_isa_e8b04e25f5 (IsA cost_overrun cost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cost plus contract is a kind of contract", "pln": ["(: cnet_isa_93043db5a9 (IsA cost_plus_contract contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cost pull inflation is a kind of inflation", "pln": ["(: cnet_isa_befd154ae1 (IsA cost_pull_inflation inflation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "costa is a kind of structure", "pln": ["(: cnet_isa_e35e075fc3 (IsA costa structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "costa rican is a kind of central american", "pln": ["(: cnet_isa_4fe4203480 (IsA costa_rican central_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "costa rican monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_d9e66eabb2 (IsA costa_rican_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "costal cartilage is a kind of cartilaginous structure", "pln": ["(: cnet_isa_15e7b1d2ce (IsA costal_cartilage cartilaginous_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "costal groove is a kind of groove", "pln": ["(: cnet_isa_839be94b1f (IsA costal_groove groove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "costanoan is a kind of penutian", "pln": ["(: cnet_isa_98683d8471 (IsA costanoan penutian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "costermonger is a kind of trader", "pln": ["(: cnet_isa_c251d25468 (IsA costermonger trader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "costia is a kind of flagellate", "pln": ["(: cnet_isa_a0d230be2a (IsA costia flagellate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "costiasis is a kind of animal disease", "pln": ["(: cnet_isa_98f3844962 (IsA costiasis animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "costing is a kind of cost accounting", "pln": ["(: cnet_isa_68a8234b1e (IsA costing cost_accounting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "costliness is a kind of expensiveness", "pln": ["(: cnet_isa_58b38b0134 (IsA costliness expensiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "costmary is a kind of herb", "pln": ["(: cnet_isa_7d4c112331 (IsA costmary herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "costoaxillary vein is a kind of vein", "pln": ["(: cnet_isa_c1fd95b946 (IsA costoaxillary_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "costochondritis is a kind of inflammation", "pln": ["(: cnet_isa_aa50dc4200 (IsA costochondritis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cost is a kind of reimbursement", "pln": ["(: cnet_isa_a08b66897f (IsA cost reimbursement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "costume is a kind of attire", "pln": ["(: cnet_isa_8d0c79f551 (IsA costume attire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "costumier is a kind of couturier", "pln": ["(: cnet_isa_3d366a41d7 (IsA costumier couturier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "costus oil is a kind of essential oil", "pln": ["(: cnet_isa_0404968617 (IsA costus_oil essential_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "costusroot is a kind of herb", "pln": ["(: cnet_isa_f1e4c99b64 (IsA costusroot herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cosy is a kind of cloth covering", "pln": ["(: cnet_isa_38e53da5f9 (IsA cosy cloth_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cot is a kind of bed", "pln": ["(: cnet_isa_163313f14d (IsA cot bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotangent is a kind of trigonometric function", "pln": ["(: cnet_isa_8064407b59 (IsA cotangent trigonometric_function) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cote is a kind of shelter", "pln": ["(: cnet_isa_00d6806224 (IsA cote shelter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cotenant is a kind of tenant", "pln": ["(: cnet_isa_38dad1e24f (IsA cotenant tenant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cote de provence is a kind of wine", "pln": ["(: cnet_isa_71386b91d1 (IsA cote_de_provence wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotillion is a kind of ballroom dancing", "pln": ["(: cnet_isa_78f0cfe7d5 (IsA cotillion ballroom_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotillion is a kind of ball", "pln": ["(: cnet_isa_4ab3048476 (IsA cotillion ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotinga is a kind of new world flycatcher", "pln": ["(: cnet_isa_96b2e65b72 (IsA cotinga new_world_flycatcher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotingidae is a kind of bird family", "pln": ["(: cnet_isa_18982dfe3c (IsA cotingidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotinus is a kind of dicot genus", "pln": ["(: cnet_isa_f94d2980c4 (IsA cotinus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotoneaster is a kind of shrub", "pln": ["(: cnet_isa_c3abb79ba1 (IsA cotoneaster shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotoneaster dammeri is a kind of cotoneaster", "pln": ["(: cnet_isa_17a7a90eff (IsA cotoneaster_dammeri cotoneaster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotoneaster horizontalis is a kind of cotoneaster", "pln": ["(: cnet_isa_2de92c6d1b (IsA cotoneaster_horizontalis cotoneaster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotswold is a kind of domestic sheep", "pln": ["(: cnet_isa_1a77b9034c (IsA cotswold domestic_sheep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cottage is a kind of house", "pln": ["(: cnet_isa_92afc15e0e (IsA cottage house) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cottage cheese is a kind of cheese", "pln": ["(: cnet_isa_43c1348bc4 (IsA cottage_cheese cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cottage industry is a kind of industry", "pln": ["(: cnet_isa_f89c064c3d (IsA cottage_industry industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cottage pie is a kind of dish", "pln": ["(: cnet_isa_c8e092a027 (IsA cottage_pie dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cottage pink is a kind of pink", "pln": ["(: cnet_isa_b776036bcc (IsA cottage_pink pink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cottage tent is a kind of tent", "pln": ["(: cnet_isa_cae030096c (IsA cottage_tent tent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cottage tulip is a kind of tulip", "pln": ["(: cnet_isa_4f28aface3 (IsA cottage_tulip tulip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cottager is a kind of inhabitant", "pln": ["(: cnet_isa_08e3ff078f (IsA cottager inhabitant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cotter is a kind of fastener", "pln": ["(: cnet_isa_793d188e76 (IsA cotter fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotter is a kind of peasant", "pln": ["(: cnet_isa_deeda58618 (IsA cotter peasant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cotter is a kind of serf", "pln": ["(: cnet_isa_c909c6a88f (IsA cotter serf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotter pin is a kind of cotter", "pln": ["(: cnet_isa_303f61e3fb (IsA cotter_pin cotter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cottidae is a kind of fish family", "pln": ["(: cnet_isa_4fd6cfbd53 (IsA cottidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotton is a kind of crop", "pln": ["(: cnet_isa_a98e00b243 (IsA cotton crop) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotton is a kind of fabric", "pln": ["(: cnet_isa_403a2f8cff (IsA cotton fabric) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotton is a kind of fiber from plant", "pln": ["(: cnet_isa_b9ba07e001 (IsA cotton fiber_from_plant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotton is a kind of natural fiber", "pln": ["(: cnet_isa_39998d2e07 (IsA cotton natural_fiber) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotton is a kind of plant", "pln": ["(: cnet_isa_de735108a8 (IsA cotton plant) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotton is a kind of thread", "pln": ["(: cnet_isa_95cefa9203 (IsA cotton thread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotton is a kind of shrub", "pln": ["(: cnet_isa_a1733bdb13 (IsA cotton shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotton is a kind of plant fiber", "pln": ["(: cnet_isa_c1f7e2ed9b (IsA cotton plant_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotton ball is a kind of plant disease", "pln": ["(: cnet_isa_f2d9207e7a (IsA cotton_ball plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotton candy is a kind of candy", "pln": ["(: cnet_isa_460d069b19 (IsA cotton_candy candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotton flannel is a kind of fabric", "pln": ["(: cnet_isa_10560ed1d7 (IsA cotton_flannel fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotton gin is a kind of machine", "pln": ["(: cnet_isa_36c0cab9ec (IsA cotton_gin machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotton grass is a kind of sedge", "pln": ["(: cnet_isa_78c99a2216 (IsA cotton_grass sedge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotton mill is a kind of textile mill", "pln": ["(: cnet_isa_34ad039213 (IsA cotton_mill textile_mill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotton mouse is a kind of wood mouse", "pln": ["(: cnet_isa_585a452f3d (IsA cotton_mouse wood_mouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotton rat is a kind of rodent", "pln": ["(: cnet_isa_ac4d6c5a30 (IsA cotton_rat rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotton rose is a kind of flower", "pln": ["(: cnet_isa_b7ab5697b2 (IsA cotton_rose flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotton rose is a kind of hibiscus", "pln": ["(: cnet_isa_5bbdfab8a7 (IsA cotton_rose hibiscus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotton stainer is a kind of heteropterous insect", "pln": ["(: cnet_isa_ce2642b63e (IsA cotton_stainer heteropterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cotton strain is a kind of sweet potato whitefly", "pln": ["(: cnet_isa_3b7cb3e591 (IsA cotton_strain sweet_potato_whitefly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotton thistle is a kind of thistle", "pln": ["(: cnet_isa_e8a1480edc (IsA cotton_thistle thistle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cottonseed is a kind of oilseed", "pln": ["(: cnet_isa_97c778373e (IsA cottonseed oilseed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cottonseed cake is a kind of residue", "pln": ["(: cnet_isa_cbdea4989c (IsA cottonseed_cake residue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cottonseed oil is a kind of vegetable oil", "pln": ["(: cnet_isa_197f313221 (IsA cottonseed_oil vegetable_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cottonweed is a kind of herb", "pln": ["(: cnet_isa_b1536b0acf (IsA cottonweed herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cottonwick is a kind of grunt", "pln": ["(: cnet_isa_b5dc1c54a3 (IsA cottonwick grunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cottonwood is a kind of poplar", "pln": ["(: cnet_isa_487161696a (IsA cottonwood poplar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cottus is a kind of fish genus", "pln": ["(: cnet_isa_df48f643f0 (IsA cottus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotula is a kind of asterid dicot genus", "pln": ["(: cnet_isa_5a3c6a7fca (IsA cotula asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coturnix is a kind of bird genus", "pln": ["(: cnet_isa_26e20da009 (IsA coturnix bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cotyledon is a kind of cataphyll", "pln": ["(: cnet_isa_fc88ebe2c2 (IsA cotyledon cataphyll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coucal is a kind of cuckoo", "pln": ["(: cnet_isa_c48aec9941 (IsA coucal cuckoo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "couch is a kind of bed", "pln": ["(: cnet_isa_21f73d4553 (IsA couch bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "couch is a kind of flat coat", "pln": ["(: cnet_isa_64ee9a187f (IsA couch flat_coat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "couch potato is a kind of idler", "pln": ["(: cnet_isa_8cf10b84e3 (IsA couch_potato idler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "couchette is a kind of compartment", "pln": ["(: cnet_isa_4d601f6556 (IsA couchette compartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coude telescope is a kind of reflecting telescope", "pln": ["(: cnet_isa_4e298bd1a5 (IsA coude_telescope reflecting_telescope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cougar is a kind of wildcat", "pln": ["(: cnet_isa_d4a1ddb37e (IsA cougar wildcat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cough is a kind of symptom", "pln": ["(: cnet_isa_c1daeb0abe (IsA cough symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cough drop is a kind of lozenge", "pln": ["(: cnet_isa_5e8f38e064 (IsA cough_drop lozenge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coughing up is a kind of expulsion", "pln": ["(: cnet_isa_e7f50fe0a5 (IsA coughing_up expulsion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coulisse is a kind of flat", "pln": ["(: cnet_isa_ef368a5023 (IsA coulisse flat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coulisse is a kind of timber", "pln": ["(: cnet_isa_8ed9a9965d (IsA coulisse timber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coulomb s law is a kind of law", "pln": ["(: cnet_isa_aef3d20b48 (IsA coulomb_s_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coulomb is a kind of charge unit", "pln": ["(: cnet_isa_b6cec93cc7 (IsA coulomb charge_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coumarone indene resin is a kind of plastic", "pln": ["(: cnet_isa_e862259dfb (IsA coumarone_indene_resin plastic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coumarouna is a kind of rosid dicot genus", "pln": ["(: cnet_isa_1d0ff21d4c (IsA coumarouna rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "council is a kind of assembly", "pln": ["(: cnet_isa_1e5b69aab5 (IsA council assembly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "council is a kind of administrative unit", "pln": ["(: cnet_isa_28c5e2875c (IsA council administrative_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "council is a kind of meeting", "pln": ["(: cnet_isa_0cb8f19f7b (IsA council meeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "council member is a kind of member", "pln": ["(: cnet_isa_de2292f6ed (IsA council_member member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "council of basel ferrara florence is a kind of council", "pln": ["(: cnet_isa_fdb472eb4e (IsA council_of_basel_ferrara_florence council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "council of chalcedon is a kind of ecumenical council", "pln": ["(: cnet_isa_2dfd452ec3 (IsA council_of_chalcedon ecumenical_council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "council of constance is a kind of council", "pln": ["(: cnet_isa_153b672346 (IsA council_of_constance council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "council of economic advisor is a kind of executive agency", "pln": ["(: cnet_isa_9e268a53c7 (IsA council_of_economic_advisor executive_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "council of ephesus is a kind of ecumenical council", "pln": ["(: cnet_isa_f4b65f4e54 (IsA council_of_ephesus ecumenical_council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "council of trent is a kind of council", "pln": ["(: cnet_isa_db4d89445b (IsA council_of_trent council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "council of vienne is a kind of council", "pln": ["(: cnet_isa_01609c2848 (IsA council_of_vienne council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "council on environmental policy is a kind of executive agency", "pln": ["(: cnet_isa_04d860cc36 (IsA council_on_environmental_policy executive_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "council tax is a kind of property tax", "pln": ["(: cnet_isa_8c024a217e (IsA council_tax property_tax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "councillorship is a kind of position", "pln": ["(: cnet_isa_aa87d28d47 (IsA councillorship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "councilman is a kind of council member", "pln": ["(: cnet_isa_16a8574b6e (IsA councilman council_member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "councilwoman is a kind of council member", "pln": ["(: cnet_isa_f0e19f30c6 (IsA councilwoman council_member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counsel to crown is a kind of barrister", "pln": ["(: cnet_isa_bc84bdb5c7 (IsA counsel_to_crown barrister) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counselor is a kind of adviser", "pln": ["(: cnet_isa_5d1a1e87e7 (IsA counselor adviser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counselor is a kind of supervisor", "pln": ["(: cnet_isa_81ff513de4 (IsA counselor supervisor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counselorship is a kind of position", "pln": ["(: cnet_isa_a0375a5b3e (IsA counselorship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "count is a kind of investigation", "pln": ["(: cnet_isa_2fe33ecb58 (IsA count investigation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "count is a kind of nobleman", "pln": ["(: cnet_isa_a9250715a1 (IsA count nobleman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "count is a kind of number", "pln": ["(: cnet_isa_59ac1fab9e (IsA count number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "count noun is a kind of noun", "pln": ["(: cnet_isa_ad59a25cac (IsA count_noun noun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "count palatine is a kind of count", "pln": ["(: cnet_isa_89342e211e (IsA count_palatine count) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "count per minute is a kind of frequency", "pln": ["(: cnet_isa_f4188492a3 (IsA count_per_minute frequency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "countdown is a kind of count", "pln": ["(: cnet_isa_c3c6434a96 (IsA countdown count) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "countenance is a kind of appearance", "pln": ["(: cnet_isa_49d408255d (IsA countenance appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "countenance is a kind of face", "pln": ["(: cnet_isa_58655ae445 (IsA countenance face) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "counter is a kind of flat horizontal surface", "pln": ["(: cnet_isa_1a4c10c878 (IsA counter flat_horizontal_surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counter is a kind of calculator", "pln": ["(: cnet_isa_fc7b0e6a4f (IsA counter calculator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "counter is a kind of game equipment", "pln": ["(: cnet_isa_09c07a6438 (IsA counter game_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counter is a kind of piece of leather", "pln": ["(: cnet_isa_ea8cf0b074 (IsA counter piece_of_leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counter is a kind of table", "pln": ["(: cnet_isa_6983f937a6 (IsA counter table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counter is a kind of register", "pln": ["(: cnet_isa_53aa843de4 (IsA counter register) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counter is a kind of person", "pln": ["(: cnet_isa_dedaff7050 (IsA counter person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counter check is a kind of check", "pln": ["(: cnet_isa_50847f73d3 (IsA counter_check check) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counter conditioning is a kind of conditioning", "pln": ["(: cnet_isa_4eff6adfcf (IsA counter_conditioning conditioning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counter reformation is a kind of religious movement", "pln": ["(: cnet_isa_2da4fc464c (IsA counter_reformation religious_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counter sabotage is a kind of counterintelligence", "pln": ["(: cnet_isa_78e65ca6ad (IsA counter_sabotage counterintelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counter tube is a kind of measuring instrument", "pln": ["(: cnet_isa_6827aedd01 (IsA counter_tube measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterargument is a kind of argument", "pln": ["(: cnet_isa_ab22d9d8da (IsA counterargument argument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterattack is a kind of attack", "pln": ["(: cnet_isa_3ad7427347 (IsA counterattack attack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterattraction is a kind of attraction", "pln": ["(: cnet_isa_ce59a1075e (IsA counterattraction attraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterbalance is a kind of compensation", "pln": ["(: cnet_isa_fee7c72875 (IsA counterbalance compensation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterbattery fire is a kind of counterfire", "pln": ["(: cnet_isa_5f86492472 (IsA counterbattery_fire counterfire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterblast is a kind of reply", "pln": ["(: cnet_isa_204c513eeb (IsA counterblast reply) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterblow is a kind of blow", "pln": ["(: cnet_isa_55e599642f (IsA counterblow blow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterbombardment is a kind of counterfire", "pln": ["(: cnet_isa_e967eaa52d (IsA counterbombardment counterfire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterbore is a kind of bit", "pln": ["(: cnet_isa_f8835cbb44 (IsA counterbore bit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "countercharge is a kind of charge", "pln": ["(: cnet_isa_19ff6cf6f5 (IsA countercharge charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "countercharge is a kind of accusation", "pln": ["(: cnet_isa_e14e094460 (IsA countercharge accusation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "countercheck is a kind of assay", "pln": ["(: cnet_isa_750e08db04 (IsA countercheck assay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "countercheck is a kind of arrest", "pln": ["(: cnet_isa_0ec01c5f08 (IsA countercheck arrest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterclaim is a kind of legal action", "pln": ["(: cnet_isa_209d037ab0 (IsA counterclaim legal_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "countercoup is a kind of coup d etat", "pln": ["(: cnet_isa_995a7da951 (IsA countercoup coup_d_etat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterculture is a kind of culture", "pln": ["(: cnet_isa_28b4a69534 (IsA counterculture culture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "countercurrent is a kind of strife", "pln": ["(: cnet_isa_5345556cd1 (IsA countercurrent strife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "counterdemonstration is a kind of presentation", "pln": ["(: cnet_isa_bec7495671 (IsA counterdemonstration presentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterdemonstrator is a kind of demonstrator", "pln": ["(: cnet_isa_1c8c9d907f (IsA counterdemonstrator demonstrator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterespionage is a kind of counterintelligence", "pln": ["(: cnet_isa_08a9995a65 (IsA counterespionage counterintelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterexample is a kind of disproof", "pln": ["(: cnet_isa_214182ec26 (IsA counterexample disproof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterfactuality is a kind of quality", "pln": ["(: cnet_isa_afd82385ad (IsA counterfactuality quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterfeit is a kind of imitation", "pln": ["(: cnet_isa_97282f1728 (IsA counterfeit imitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterfire is a kind of fire", "pln": ["(: cnet_isa_9e17db2255 (IsA counterfire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterglow is a kind of light", "pln": ["(: cnet_isa_965f7be0a3 (IsA counterglow light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "counterintelligence is a kind of intelligence", "pln": ["(: cnet_isa_ff726971de (IsA counterintelligence intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterirritant is a kind of medicine", "pln": ["(: cnet_isa_87426ed18a (IsA counterirritant medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "countermand is a kind of command", "pln": ["(: cnet_isa_b6dc90e393 (IsA countermand command) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "countermarch is a kind of march", "pln": ["(: cnet_isa_a30c9ecf95 (IsA countermarch march) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "countermeasure is a kind of measure", "pln": ["(: cnet_isa_9e8c80807f (IsA countermeasure measure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "countermine is a kind of countermeasure", "pln": ["(: cnet_isa_9d9453d733 (IsA countermine countermeasure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "countermortar fire is a kind of counterfire", "pln": ["(: cnet_isa_aaf674e3a1 (IsA countermortar_fire counterfire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counteroffensive is a kind of offense", "pln": ["(: cnet_isa_f6494e2cd5 (IsA counteroffensive offense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counteroffer is a kind of offer", "pln": ["(: cnet_isa_f0896d7357 (IsA counteroffer offer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterpart is a kind of duplicate", "pln": ["(: cnet_isa_23c5d40397 (IsA counterpart duplicate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterpart is a kind of equivalent", "pln": ["(: cnet_isa_1227bfe652 (IsA counterpart equivalent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterperson is a kind of waiter", "pln": ["(: cnet_isa_23cd5fcc77 (IsA counterperson waiter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterplea is a kind of plea", "pln": ["(: cnet_isa_17f315d2b6 (IsA counterplea plea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterplot is a kind of plot", "pln": ["(: cnet_isa_ebb2573add (IsA counterplot plot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterpoint is a kind of polyphony", "pln": ["(: cnet_isa_d4305d1105 (IsA counterpoint polyphony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "counterpreparation fire is a kind of fire", "pln": ["(: cnet_isa_812a2e40e4 (IsA counterpreparation_fire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterproposal is a kind of proposal", "pln": ["(: cnet_isa_0c83c4722f (IsA counterproposal proposal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterpunch is a kind of punch", "pln": ["(: cnet_isa_440c239c49 (IsA counterpunch punch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterreformation is a kind of reformation", "pln": ["(: cnet_isa_6c820a48c2 (IsA counterreformation reformation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterrevolution is a kind of revolution", "pln": ["(: cnet_isa_26b543d23c (IsA counterrevolution revolution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterrevolutionist is a kind of revolutionist", "pln": ["(: cnet_isa_cdeaaa2991 (IsA counterrevolutionist revolutionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "countershot is a kind of shooting", "pln": ["(: cnet_isa_5d7ebf7fee (IsA countershot shooting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "countersignature is a kind of signature", "pln": ["(: cnet_isa_91843b2d11 (IsA countersignature signature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "countersink is a kind of hole", "pln": ["(: cnet_isa_db516c83fd (IsA countersink hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterspy is a kind of spy", "pln": ["(: cnet_isa_38267e50db (IsA counterspy spy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterstain is a kind of stain", "pln": ["(: cnet_isa_5034432a08 (IsA counterstain stain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "countersubversion is a kind of counterintelligence", "pln": ["(: cnet_isa_4d7c12fcdd (IsA countersubversion counterintelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "countersuit is a kind of lawsuit", "pln": ["(: cnet_isa_6e1b79c490 (IsA countersuit lawsuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "countertenor is a kind of singing voice", "pln": ["(: cnet_isa_303756f281 (IsA countertenor singing_voice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "countertenor is a kind of alto", "pln": ["(: cnet_isa_54b2d0cb92 (IsA countertenor alto) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterterrorism is a kind of scheme", "pln": ["(: cnet_isa_fb41dea225 (IsA counterterrorism scheme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "counterterrorist is a kind of person", "pln": ["(: cnet_isa_4551816612 (IsA counterterrorist person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "counterterrorist center is a kind of agency", "pln": ["(: cnet_isa_a0928abafd (IsA counterterrorist_center agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "countertop is a kind of tabletop", "pln": ["(: cnet_isa_9a6ce3ffbf (IsA countertop tabletop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "countertransference is a kind of transference", "pln": ["(: cnet_isa_d7ce145722 (IsA countertransference transference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "countervailing duty is a kind of duty", "pln": ["(: cnet_isa_df90dff852 (IsA countervailing_duty duty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "counterweight is a kind of weight", "pln": ["(: cnet_isa_fad84a099e (IsA counterweight weight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "countess is a kind of noblewoman", "pln": ["(: cnet_isa_7a54eb9073 (IsA countess noblewoman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "countinghouse is a kind of office", "pln": ["(: cnet_isa_6120e96ea0 (IsA countinghouse office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "country is a kind of administrative district", "pln": ["(: cnet_isa_c3145c3ccc (IsA country administrative_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "country is a kind of geographical area", "pln": ["(: cnet_isa_f36ac7d7bd (IsA country geographical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "country borage is a kind of coleus", "pln": ["(: cnet_isa_7d8853be6b (IsA country_borage coleus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "country club is a kind of club", "pln": ["(: cnet_isa_7a61052d8f (IsA country_club club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "country dance is a kind of folk dancing", "pln": ["(: cnet_isa_9a71eb989d (IsA country_dance folk_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "country doctor is a kind of general practitioner", "pln": ["(: cnet_isa_3e85e8f740 (IsA country_doctor general_practitioner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "country house is a kind of house", "pln": ["(: cnet_isa_a23958ab84 (IsA country_house house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "country music is a kind of folk music", "pln": ["(: cnet_isa_02775f7c5a (IsA country_music folk_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "country people is a kind of folk", "pln": ["(: cnet_isa_a41abcf3d4 (IsA country_people folk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "country store is a kind of mercantile establishment", "pln": ["(: cnet_isa_96fa335aa8 (IsA country_store mercantile_establishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "countryfolk is a kind of citizenry", "pln": ["(: cnet_isa_50ed83f6e5 (IsA countryfolk citizenry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "countryman is a kind of compatriot", "pln": ["(: cnet_isa_feb0388908 (IsA countryman compatriot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "countryman is a kind of rustic", "pln": ["(: cnet_isa_d70cdecc6e (IsA countryman rustic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "countryseat is a kind of estate", "pln": ["(: cnet_isa_5b3bc7acca (IsA countryseat estate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "countryside is a kind of country", "pln": ["(: cnet_isa_ca31de0c25 (IsA countryside country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "countrywoman is a kind of compatriot", "pln": ["(: cnet_isa_ee0b07e8e7 (IsA countrywoman compatriot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "countrywoman is a kind of rustic", "pln": ["(: cnet_isa_946188eb17 (IsA countrywoman rustic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "county is a kind of administrative district", "pln": ["(: cnet_isa_9e38e8e1d0 (IsA county administrative_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "county is a kind of region", "pln": ["(: cnet_isa_bf81cb538e (IsA county region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "county agent is a kind of adviser", "pln": ["(: cnet_isa_2c850f9adf (IsA county_agent adviser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "county council is a kind of administration", "pln": ["(: cnet_isa_d04f982765 (IsA county_council administration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "county line is a kind of boundary", "pln": ["(: cnet_isa_24c5203bbb (IsA county_line boundary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "county palatine is a kind of administrative district", "pln": ["(: cnet_isa_5e7bc08fa1 (IsA county_palatine administrative_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "county seat is a kind of seat", "pln": ["(: cnet_isa_700aa10a43 (IsA county_seat seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "county town is a kind of seat", "pln": ["(: cnet_isa_854bdf1171 (IsA county_town seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coup is a kind of success", "pln": ["(: cnet_isa_aad57042a1 (IsA coup success) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coup d etat is a kind of group action", "pln": ["(: cnet_isa_7fa9476321 (IsA coup_d_etat group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coup de theatre is a kind of stagecraft", "pln": ["(: cnet_isa_18f9ff0fd2 (IsA coup_de_theatre stagecraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coup de theatre is a kind of theatrical production", "pln": ["(: cnet_isa_ce44dada9c (IsA coup_de_theatre theatrical_production) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coup de theatre is a kind of surprise", "pln": ["(: cnet_isa_6deb62754a (IsA coup_de_theatre surprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coupe is a kind of car", "pln": ["(: cnet_isa_f5dd61c31b (IsA coupe car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "couple is a kind of family", "pln": ["(: cnet_isa_af96a7e287 (IsA couple family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "couple is a kind of pair", "pln": ["(: cnet_isa_2e2da3fada (IsA couple pair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "couple is a kind of unit", "pln": ["(: cnet_isa_6f788f9826 (IsA couple unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "couple is a kind of small indefinite quantity", "pln": ["(: cnet_isa_5f65f8af98 (IsA couple small_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "couplet is a kind of stanza", "pln": ["(: cnet_isa_35ba02f8a9 (IsA couplet stanza) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coupling is a kind of sexual activity", "pln": ["(: cnet_isa_58c0ebc916 (IsA coupling sexual_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coupling is a kind of mechanical device", "pln": ["(: cnet_isa_e5153bdad9 (IsA coupling mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coupon is a kind of sample", "pln": ["(: cnet_isa_fef029bc9e (IsA coupon sample) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coupon is a kind of commercial document", "pln": ["(: cnet_isa_f132448ca1 (IsA coupon commercial_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coupon bond is a kind of bond", "pln": ["(: cnet_isa_a8143d0a48 (IsA coupon_bond bond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "courage is a kind of spirit", "pln": ["(: cnet_isa_e7886ee53f (IsA courage spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "courante is a kind of dancing", "pln": ["(: cnet_isa_394e629ebf (IsA courante dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "courbaril is a kind of locust tree", "pln": ["(: cnet_isa_6c1d1721b0 (IsA courbaril locust_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "courbaril copal is a kind of copal", "pln": ["(: cnet_isa_629dbed9de (IsA courbaril_copal copal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coureur de bois is a kind of trapper", "pln": ["(: cnet_isa_35528b3273 (IsA coureur_de_bois trapper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "courlan is a kind of wading bird", "pln": ["(: cnet_isa_940a3c63c2 (IsA courlan wading_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "course is a kind of action", "pln": ["(: cnet_isa_3da8bb88f4 (IsA course action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "course is a kind of education", "pln": ["(: cnet_isa_01da367fef (IsA course education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "course is a kind of facility", "pln": ["(: cnet_isa_c622ca829d (IsA course facility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "course is a kind of layer", "pln": ["(: cnet_isa_311ef4e645 (IsA course layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "course is a kind of nutriment", "pln": ["(: cnet_isa_7d78c9746e (IsA course nutriment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "course is a kind of sery", "pln": ["(: cnet_isa_9c0e21e423 (IsA course sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "course is a kind of direction", "pln": ["(: cnet_isa_b73a145416 (IsA course direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "course catalog is a kind of catalog", "pln": ["(: cnet_isa_96b30fa145 (IsA course_catalog catalog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "course of lecture is a kind of course", "pln": ["(: cnet_isa_cd6486b8a3 (IsA course_of_lecture course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "course of study is a kind of information", "pln": ["(: cnet_isa_158b933e30 (IsA course_of_study information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "course session is a kind of session", "pln": ["(: cnet_isa_412dd2d58b (IsA course_session session) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "courser is a kind of hunting dog", "pln": ["(: cnet_isa_87469cdbb8 (IsA courser hunting_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "courser is a kind of shorebird", "pln": ["(: cnet_isa_967292b096 (IsA courser shorebird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "courser is a kind of hunter", "pln": ["(: cnet_isa_dc4db8150c (IsA courser hunter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coursework is a kind of work", "pln": ["(: cnet_isa_b31e8cce0a (IsA coursework work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coursing is a kind of hunt", "pln": ["(: cnet_isa_c3ab4f8c23 (IsA coursing hunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "court is a kind of deference", "pln": ["(: cnet_isa_90b31dede1 (IsA court deference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "court is a kind of area", "pln": ["(: cnet_isa_13c3806ccd (IsA court area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "court is a kind of playing field", "pln": ["(: cnet_isa_6b08dac18a (IsA court playing_field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "court is a kind of residence", "pln": ["(: cnet_isa_01da6798b1 (IsA court residence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "court is a kind of assembly", "pln": ["(: cnet_isa_590d0ed643 (IsA court assembly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "court is a kind of cortege", "pln": ["(: cnet_isa_b194814ba6 (IsA court cortege) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "court is a kind of government", "pln": ["(: cnet_isa_e2b179de68 (IsA court government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "court is a kind of room", "pln": ["(: cnet_isa_b317aeede8 (IsA court room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "court game is a kind of athletic game", "pln": ["(: cnet_isa_713d3b4a1d (IsA court_game athletic_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "court martial is a kind of military court", "pln": ["(: cnet_isa_7bdfaca51d (IsA court_martial military_court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "court martial is a kind of trial", "pln": ["(: cnet_isa_75b7c47925 (IsA court_martial trial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "court of saint jame s is a kind of court", "pln": ["(: cnet_isa_d81800c603 (IsA court_of_saint_jame_s court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "court order is a kind of writ", "pln": ["(: cnet_isa_b5dac352f6 (IsA court_order writ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "court plaster is a kind of plaster", "pln": ["(: cnet_isa_4463369f36 (IsA court_plaster plaster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "courtesy is a kind of politeness", "pln": ["(: cnet_isa_728fa1944a (IsA courtesy politeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "courtesy is a kind of manner", "pln": ["(: cnet_isa_1a65ec772a (IsA courtesy manner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "courtesy is a kind of remark", "pln": ["(: cnet_isa_1101639e16 (IsA courtesy remark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "courthouse is a kind of government building", "pln": ["(: cnet_isa_3965068b69 (IsA courthouse government_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "courthouse is a kind of house", "pln": ["(: cnet_isa_af242e8960 (IsA courthouse house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "courtier is a kind of attendant", "pln": ["(: cnet_isa_55649dacfe (IsA courtier attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "courtliness is a kind of elegance", "pln": ["(: cnet_isa_47f6ddad3a (IsA courtliness elegance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "courtly love is a kind of code of conduct", "pln": ["(: cnet_isa_ad1f0b8a80 (IsA courtly_love code_of_conduct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "courtship is a kind of entreaty", "pln": ["(: cnet_isa_7e8911f960 (IsA courtship entreaty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "courtyard is a kind of open space", "pln": ["(: cnet_isa_1093b947e3 (IsA courtyard open_space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "couscous is a kind of dish", "pln": ["(: cnet_isa_64134fe0fd (IsA couscous dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "couscous is a kind of pasta", "pln": ["(: cnet_isa_c76979a3e4 (IsA couscous pasta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cousin is a kind of relative", "pln": ["(: cnet_isa_fc34cb2c49 (IsA cousin relative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "couth is a kind of perfection", "pln": ["(: cnet_isa_8d40bf794a (IsA couth perfection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "couture is a kind of dressmaking", "pln": ["(: cnet_isa_8f1797fcdb (IsA couture dressmaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "couturier is a kind of creator", "pln": ["(: cnet_isa_66f8db358c (IsA couturier creator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "couvade is a kind of custom", "pln": ["(: cnet_isa_d6681e80df (IsA couvade custom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "couverture is a kind of chocolate", "pln": ["(: cnet_isa_bec653e0c2 (IsA couverture chocolate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "covalence is a kind of valence", "pln": ["(: cnet_isa_83a25c2bfc (IsA covalence valence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "covalent bond is a kind of chemical bond", "pln": ["(: cnet_isa_09cbb65d7c (IsA covalent_bond chemical_bond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "covariance is a kind of variance", "pln": ["(: cnet_isa_34c468c89f (IsA covariance variance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "covariation is a kind of variation", "pln": ["(: cnet_isa_156463977a (IsA covariation variation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cove is a kind of cave", "pln": ["(: cnet_isa_58544cc8fa (IsA cove cave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cove is a kind of inlet", "pln": ["(: cnet_isa_c00f79211e (IsA cove inlet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coven is a kind of assembly", "pln": ["(: cnet_isa_908ab19c45 (IsA coven assembly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "covenant is a kind of agreement", "pln": ["(: cnet_isa_e5daf83fa5 (IsA covenant agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "covenant is a kind of written agreement", "pln": ["(: cnet_isa_7a626d8b2f (IsA covenant written_agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cover is a kind of concealment", "pln": ["(: cnet_isa_5ea63bc302 (IsA cover concealment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cover is a kind of fire", "pln": ["(: cnet_isa_4f8c1d8d38 (IsA cover fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cover is a kind of recording", "pln": ["(: cnet_isa_e87e8fe46b (IsA cover recording) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cover charge is a kind of fixed charge", "pln": ["(: cnet_isa_9a4780d005 (IsA cover_charge fixed_charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cover crop is a kind of crop", "pln": ["(: cnet_isa_c5ed96a1ce (IsA cover_crop crop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cover girl is a kind of photographer s model", "pln": ["(: cnet_isa_0f9783316e (IsA cover_girl photographer_s_model) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cover glass is a kind of plate glass", "pln": ["(: cnet_isa_b1a4bff80a (IsA cover_glass plate_glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cover plate is a kind of covering", "pln": ["(: cnet_isa_e636f44daa (IsA cover_plate covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cover up is a kind of concealment", "pln": ["(: cnet_isa_59e3b456c9 (IsA cover_up concealment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coverage is a kind of extent", "pln": ["(: cnet_isa_a42bb4df14 (IsA coverage extent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coverage is a kind of new", "pln": ["(: cnet_isa_9abf5a609a (IsA coverage new) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coverage is a kind of sum", "pln": ["(: cnet_isa_66d1cdbf0e (IsA coverage sum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coverall is a kind of protective garment", "pln": ["(: cnet_isa_bfd94a651f (IsA coverall protective_garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "covered bridge is a kind of bridge", "pln": ["(: cnet_isa_d819261858 (IsA covered_bridge bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "covered couch is a kind of litter", "pln": ["(: cnet_isa_9c2b9b414c (IsA covered_couch litter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "covered option is a kind of option", "pln": ["(: cnet_isa_94cd9a04e7 (IsA covered_option option) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "covered smut is a kind of smut", "pln": ["(: cnet_isa_105d0d76ba (IsA covered_smut smut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "covered wagon is a kind of wagon", "pln": ["(: cnet_isa_35725523cf (IsA covered_wagon wagon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "covering is a kind of protection", "pln": ["(: cnet_isa_97bc352153 (IsA covering protection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "covering is a kind of artifact", "pln": ["(: cnet_isa_663dbdb529 (IsA covering artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "covering is a kind of natural object", "pln": ["(: cnet_isa_7fc7cc1612 (IsA covering natural_object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "covering letter is a kind of letter", "pln": ["(: cnet_isa_2f5b1e48a0 (IsA covering_letter letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "covering material is a kind of building material", "pln": ["(: cnet_isa_c9677300e2 (IsA covering_material building_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coverlet is a kind of bedspread", "pln": ["(: cnet_isa_c554191fca (IsA coverlet bedspread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "covert is a kind of flock", "pln": ["(: cnet_isa_230b587423 (IsA covert flock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "covert operation is a kind of operation", "pln": ["(: cnet_isa_8ab317c9b4 (IsA covert_operation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "covertness is a kind of privacy", "pln": ["(: cnet_isa_17c72b6469 (IsA covertness privacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "covetousness is a kind of envy", "pln": ["(: cnet_isa_5f10890940 (IsA covetousness envy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "covey is a kind of flock", "pln": ["(: cnet_isa_78fb8d8e24 (IsA covey flock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "covey is a kind of gathering", "pln": ["(: cnet_isa_6f66892361 (IsA covey gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cow is a kind of cattle", "pln": ["(: cnet_isa_bdceb589ae (IsA cow cattle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cow is a kind of placental", "pln": ["(: cnet_isa_2906a826ab (IsA cow placental) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cow is a kind of unpleasant woman", "pln": ["(: cnet_isa_fcf881908b (IsA cow unpleasant_woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cow manure is a kind of manure", "pln": ["(: cnet_isa_6b35443358 (IsA cow_manure manure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cow parsley is a kind of herb", "pln": ["(: cnet_isa_bc4417cd79 (IsA cow_parsley herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cow parsnip is a kind of herb", "pln": ["(: cnet_isa_2089f68c19 (IsA cow_parsnip herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cow pasture is a kind of pasture", "pln": ["(: cnet_isa_e3000f919e (IsA cow_pasture pasture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cow pen is a kind of pen", "pln": ["(: cnet_isa_94928d21e0 (IsA cow_pen pen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cow pie is a kind of dropping", "pln": ["(: cnet_isa_43d37367b5 (IsA cow_pie dropping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cow pony is a kind of saddle horse", "pln": ["(: cnet_isa_21972ca837 (IsA cow_pony saddle_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cow shark is a kind of shark", "pln": ["(: cnet_isa_2f7c5cd791 (IsA cow_shark shark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cow town is a kind of town", "pln": ["(: cnet_isa_d5d5298aac (IsA cow_town town) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cowage is a kind of mucuna", "pln": ["(: cnet_isa_0a3e65df08 (IsA cowage mucuna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cowage is a kind of pod", "pln": ["(: cnet_isa_91a5da21c0 (IsA cowage pod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coward is a kind of person", "pln": ["(: cnet_isa_fd059cd541 (IsA coward person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cowardice is a kind of spirit", "pln": ["(: cnet_isa_a3c4fcc5ae (IsA cowardice spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cowbarn is a kind of barn", "pln": ["(: cnet_isa_415566d208 (IsA cowbarn barn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cowbell is a kind of bell", "pln": ["(: cnet_isa_9d4a71e9c2 (IsA cowbell bell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cowberry is a kind of cranberry", "pln": ["(: cnet_isa_c559900fec (IsA cowberry cranberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cowbird is a kind of new world blackbird", "pln": ["(: cnet_isa_b4fd7b8f05 (IsA cowbird new_world_blackbird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cowboy is a kind of adventurer", "pln": ["(: cnet_isa_e65d26f46f (IsA cowboy adventurer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cowboy is a kind of performer", "pln": ["(: cnet_isa_a93fd76724 (IsA cowboy performer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cowboy is a kind of ranch hand", "pln": ["(: cnet_isa_6bacdb5fd6 (IsA cowboy ranch_hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cowboy boot is a kind of boot", "pln": ["(: cnet_isa_fa3ef40484 (IsA cowboy_boot boot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cowboy hat is a kind of hat", "pln": ["(: cnet_isa_e3901814f1 (IsA cowboy_hat hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cowfish is a kind of boxfish", "pln": ["(: cnet_isa_5e36bf8aee (IsA cowfish boxfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cowgirl is a kind of cowboy", "pln": ["(: cnet_isa_a0110fae2b (IsA cowgirl cowboy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cowherb is a kind of flower", "pln": ["(: cnet_isa_f2206c834d (IsA cowherb flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cowhide is a kind of whip", "pln": ["(: cnet_isa_e5bedb0ad6 (IsA cowhide whip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cowhide is a kind of hide", "pln": ["(: cnet_isa_2341b71d9f (IsA cowhide hide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cowhide is a kind of leather", "pln": ["(: cnet_isa_be782d8d17 (IsA cowhide leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cowl is a kind of hood", "pln": ["(: cnet_isa_b20bae9ab2 (IsA cowl hood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cowlick is a kind of hair", "pln": ["(: cnet_isa_a7d7f04176 (IsA cowlick hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cownose ray is a kind of eagle ray", "pln": ["(: cnet_isa_73281abcd1 (IsA cownose_ray eagle_ray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cowpea is a kind of legume", "pln": ["(: cnet_isa_061a98ec94 (IsA cowpea legume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cowpen daisy is a kind of crownbeard", "pln": ["(: cnet_isa_f9a28d6426 (IsA cowpen_daisy crownbeard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cowper s gland is a kind of exocrine gland", "pln": ["(: cnet_isa_58545c0ed5 (IsA cowper_s_gland exocrine_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cowpox is a kind of animal disease", "pln": ["(: cnet_isa_0fc1f86ef2 (IsA cowpox animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cowpox is a kind of pox", "pln": ["(: cnet_isa_99915da637 (IsA cowpox pox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cowrie is a kind of gastropod", "pln": ["(: cnet_isa_34c893688b (IsA cowrie gastropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cow milk is a kind of milk", "pln": ["(: cnet_isa_a468333bea (IsA cow_milk milk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cowslip is a kind of primrose", "pln": ["(: cnet_isa_f74ab5ba92 (IsA cowslip primrose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cox s orange pippin is a kind of pippin", "pln": ["(: cnet_isa_e30139c706 (IsA cox_s_orange_pippin pippin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cox 2 inhibitor is a kind of anti inflammatory", "pln": ["(: cnet_isa_262c62ccbc (IsA cox_2_inhibitor anti_inflammatory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coxcomb is a kind of dandy", "pln": ["(: cnet_isa_536f6b3541 (IsA coxcomb dandy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coxsackievirus is a kind of enterovirus", "pln": ["(: cnet_isa_19fb61ccef (IsA coxsackievirus enterovirus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coxswain is a kind of helmsman", "pln": ["(: cnet_isa_6b40ad3abd (IsA coxswain helmsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coydog is a kind of coyote", "pln": ["(: cnet_isa_b7a982b414 (IsA coydog coyote) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coyness is a kind of affectedness", "pln": ["(: cnet_isa_54de78116e (IsA coyness affectedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coyol is a kind of feather palm", "pln": ["(: cnet_isa_a8236f6c48 (IsA coyol feather_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coyote is a kind of wolf", "pln": ["(: cnet_isa_7c3194653f (IsA coyote wolf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "coyote is a kind of fire warden", "pln": ["(: cnet_isa_57d491a0a5 (IsA coyote fire_warden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coyote is a kind of smuggler", "pln": ["(: cnet_isa_713c3822f0 (IsA coyote smuggler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coyote brush is a kind of shrub", "pln": ["(: cnet_isa_99cfa56bcd (IsA coyote_brush shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coypu is a kind of rodent", "pln": ["(: cnet_isa_b78316e5cb (IsA coypu rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "coziness is a kind of comfort", "pln": ["(: cnet_isa_08348c0cc1 (IsA coziness comfort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cpu board is a kind of circuit board", "pln": ["(: cnet_isa_e7e695450c (IsA cpu_board circuit_board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crab is a kind of animal", "pln": ["(: cnet_isa_d20f04eeb3 (IsA crab animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crab is a kind of crustacean", "pln": ["(: cnet_isa_c8e32ba1e8 (IsA crab crustacean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crab is a kind of rowing", "pln": ["(: cnet_isa_2812822412 (IsA crab rowing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crab is a kind of decapod crustacean", "pln": ["(: cnet_isa_b3f8a49740 (IsA crab decapod_crustacean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crab is a kind of person", "pln": ["(: cnet_isa_4ea3ff36bf (IsA crab person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crab is a kind of shellfish", "pln": ["(: cnet_isa_5cd92c16ba (IsA crab shellfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crab is a kind of grouch", "pln": ["(: cnet_isa_c9e29d8726 (IsA crab grouch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crab apple is a kind of apple", "pln": ["(: cnet_isa_4c0e1cc2e1 (IsA crab_apple apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crab apple is a kind of apple tree", "pln": ["(: cnet_isa_0986b17915 (IsA crab_apple apple_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crab cactus is a kind of cactus", "pln": ["(: cnet_isa_1866f05f89 (IsA crab_cactus cactus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crab cocktail is a kind of cocktail", "pln": ["(: cnet_isa_fc932505db (IsA crab_cocktail cocktail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crab eating dog is a kind of wild dog", "pln": ["(: cnet_isa_19c9e5dd79 (IsA crab_eating_dog wild_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crab eating macaque is a kind of macaque", "pln": ["(: cnet_isa_49c60328c8 (IsA crab_eating_macaque macaque) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crab eating opossum is a kind of opossum", "pln": ["(: cnet_isa_5d3bcfe838 (IsA crab_eating_opossum opossum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crab eating raccoon is a kind of raccoon", "pln": ["(: cnet_isa_2d67e2ac5b (IsA crab_eating_raccoon raccoon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crab leg is a kind of crab", "pln": ["(: cnet_isa_9722f56ec3 (IsA crab_leg crab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crab louis is a kind of salad", "pln": ["(: cnet_isa_8254ca4dbe (IsA crab_louis salad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crab louse is a kind of louse", "pln": ["(: cnet_isa_8bfd4fd79a (IsA crab_louse louse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crabapple jelly is a kind of apple jelly", "pln": ["(: cnet_isa_b3e89d2dc2 (IsA crabapple_jelly apple_jelly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crabbiness is a kind of ill nature", "pln": ["(: cnet_isa_272fa6986c (IsA crabbiness ill_nature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crabeater seal is a kind of seal", "pln": ["(: cnet_isa_83f3d03e15 (IsA crabeater_seal seal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crabgrass is a kind of grass", "pln": ["(: cnet_isa_bdfc995a43 (IsA crabgrass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crab is a kind of seafood", "pln": ["(: cnet_isa_92fcf3e411 (IsA crab seafood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cracidae is a kind of bird family", "pln": ["(: cnet_isa_5eff71a5f7 (IsA cracidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crack is a kind of cocaine", "pln": ["(: cnet_isa_452ff9aa63 (IsA crack cocaine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crack is a kind of attempt", "pln": ["(: cnet_isa_59603dcfab (IsA crack attempt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crack is a kind of blemish", "pln": ["(: cnet_isa_86885f1c80 (IsA crack blemish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crack is a kind of noise", "pln": ["(: cnet_isa_7429b4b7be (IsA crack noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crack is a kind of opening", "pln": ["(: cnet_isa_ed7072303f (IsA crack opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crack addict is a kind of drug addict", "pln": ["(: cnet_isa_fe1a36f137 (IsA crack_addict drug_addict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crack willow is a kind of willow", "pln": ["(: cnet_isa_9203196bcf (IsA crack_willow willow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crackdown is a kind of suppression", "pln": ["(: cnet_isa_19218f2e56 (IsA crackdown suppression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cracked wheat is a kind of wheat", "pln": ["(: cnet_isa_badf910e8d (IsA cracked_wheat wheat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cracked wheat bread is a kind of bread", "pln": ["(: cnet_isa_724717e7a4 (IsA cracked_wheat_bread bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cracker is a kind of party favor", "pln": ["(: cnet_isa_13202cad92 (IsA cracker party_favor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cracker is a kind of bread", "pln": ["(: cnet_isa_e3d7b9658f (IsA cracker bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cracker is a kind of programmer", "pln": ["(: cnet_isa_9796abdcb1 (IsA cracker programmer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cracker crumb is a kind of crumb", "pln": ["(: cnet_isa_2f8f29be46 (IsA cracker_crumb crumb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cracking is a kind of chemical process", "pln": ["(: cnet_isa_a42794fd87 (IsA cracking chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crackle is a kind of china", "pln": ["(: cnet_isa_fb44739859 (IsA crackle china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crackle is a kind of noise", "pln": ["(: cnet_isa_626155b873 (IsA crackle noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crackling is a kind of residue", "pln": ["(: cnet_isa_eadc62329b (IsA crackling residue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crackling is a kind of edible fat", "pln": ["(: cnet_isa_648c0b574e (IsA crackling edible_fat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crackpot is a kind of eccentric", "pln": ["(: cnet_isa_d2597dda38 (IsA crackpot eccentric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cracticidae is a kind of bird family", "pln": ["(: cnet_isa_3a8df3ccc7 (IsA cracticidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cracticus is a kind of bird genus", "pln": ["(: cnet_isa_d43a29ac30 (IsA cracticus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cradle is a kind of baby bed", "pln": ["(: cnet_isa_ec37c8b04a (IsA cradle baby_bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cradle is a kind of birth", "pln": ["(: cnet_isa_71d16a489b (IsA cradle birth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cradle cap is a kind of dermatitis", "pln": ["(: cnet_isa_019157ce26 (IsA cradle_cap dermatitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "craft is a kind of vehicle", "pln": ["(: cnet_isa_b51f9460da (IsA craft vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "craft is a kind of shrewdness", "pln": ["(: cnet_isa_751e5a34c7 (IsA craft shrewdness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "craft is a kind of skill", "pln": ["(: cnet_isa_dd85dd8186 (IsA craft skill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "craft is a kind of class", "pln": ["(: cnet_isa_9986d28b39 (IsA craft class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "craft fair is a kind of bazaar", "pln": ["(: cnet_isa_a189f8f9b6 (IsA craft_fair bazaar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "craft union is a kind of union", "pln": ["(: cnet_isa_a6e08dc602 (IsA craft_union union) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "craftiness is a kind of disingenuousness", "pln": ["(: cnet_isa_bb2c006390 (IsA craftiness disingenuousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "craftsman is a kind of creator", "pln": ["(: cnet_isa_bff10e791b (IsA craftsman creator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "craftsman is a kind of professional", "pln": ["(: cnet_isa_2d246255cd (IsA craftsman professional) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "craftsman is a kind of skilled worker", "pln": ["(: cnet_isa_8e6ae1195f (IsA craftsman skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crag is a kind of cliff", "pln": ["(: cnet_isa_0a66640049 (IsA crag cliff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crake is a kind of rail", "pln": ["(: cnet_isa_5c4cf0cd55 (IsA crake rail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crambe is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_b75256d819 (IsA crambe dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crammer is a kind of textbook", "pln": ["(: cnet_isa_54d3038e5a (IsA crammer textbook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crammer is a kind of school", "pln": ["(: cnet_isa_55b8c5c34f (IsA crammer school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crammer is a kind of coach", "pln": ["(: cnet_isa_6dbd815b96 (IsA crammer coach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crammer is a kind of student", "pln": ["(: cnet_isa_be176638b6 (IsA crammer student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cramp is a kind of clamp", "pln": ["(: cnet_isa_a4868e40d6 (IsA cramp clamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cramp is a kind of strip", "pln": ["(: cnet_isa_a0d41a4c22 (IsA cramp strip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crampon is a kind of grapnel", "pln": ["(: cnet_isa_6f1311135e (IsA crampon grapnel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crampon is a kind of spike", "pln": ["(: cnet_isa_d3bee2a983 (IsA crampon spike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cran is a kind of volume unit", "pln": ["(: cnet_isa_6813d49bd2 (IsA cran volume_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cranberry is a kind of berry", "pln": ["(: cnet_isa_95137a7856 (IsA cranberry berry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cranberry is a kind of shrub", "pln": ["(: cnet_isa_cb9690970a (IsA cranberry shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cranberry bush is a kind of shrub", "pln": ["(: cnet_isa_ae9e9b15b6 (IsA cranberry_bush shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cranberry culture is a kind of culture", "pln": ["(: cnet_isa_307a423430 (IsA cranberry_culture culture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cranberry juice is a kind of fruit juice", "pln": ["(: cnet_isa_f8bafeba9a (IsA cranberry_juice fruit_juice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cranberry sauce is a kind of condiment", "pln": ["(: cnet_isa_2539903767 (IsA cranberry_sauce condiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crane is a kind of wading bird", "pln": ["(: cnet_isa_bb7c751cea (IsA crane wading_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crane is a kind of lifting device", "pln": ["(: cnet_isa_b29db3dada (IsA crane lifting_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crane fly is a kind of dipterous insect", "pln": ["(: cnet_isa_3e68c36145 (IsA crane_fly dipterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cranesbill is a kind of geranium", "pln": ["(: cnet_isa_b13c918585 (IsA cranesbill geranium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crangon is a kind of arthropod genus", "pln": ["(: cnet_isa_44506f38de (IsA crangon arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crangonidae is a kind of arthropod family", "pln": ["(: cnet_isa_df43c780ec (IsA crangonidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cranial cavity is a kind of cavity", "pln": ["(: cnet_isa_23248cce60 (IsA cranial_cavity cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cranial nerve is a kind of nerve", "pln": ["(: cnet_isa_1e21a046cf (IsA cranial_nerve nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "craniology is a kind of life science", "pln": ["(: cnet_isa_c6c5157029 (IsA craniology life_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "craniometer is a kind of measuring instrument", "pln": ["(: cnet_isa_8ca15fd532 (IsA craniometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "craniometric point is a kind of landmark", "pln": ["(: cnet_isa_b69d2dab63 (IsA craniometric_point landmark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "craniometry is a kind of physical anthropology", "pln": ["(: cnet_isa_f4f5c25ba4 (IsA craniometry physical_anthropology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "craniotomy is a kind of operation", "pln": ["(: cnet_isa_25e20a176e (IsA craniotomy operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cranium is a kind of bone", "pln": ["(: cnet_isa_19050b19d5 (IsA cranium bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crank is a kind of hand tool", "pln": ["(: cnet_isa_474b54a290 (IsA crank hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crank call is a kind of call", "pln": ["(: cnet_isa_ef44487296 (IsA crank_call call) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crank handle is a kind of crank", "pln": ["(: cnet_isa_162fe841b1 (IsA crank_handle crank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crank letter is a kind of letter", "pln": ["(: cnet_isa_d182ea199d (IsA crank_letter letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crankcase is a kind of housing", "pln": ["(: cnet_isa_f3375af739 (IsA crankcase housing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crankiness is a kind of ill nature", "pln": ["(: cnet_isa_aa052c8e35 (IsA crankiness ill_nature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crankshaft is a kind of rotating shaft", "pln": ["(: cnet_isa_37a9015230 (IsA crankshaft rotating_shaft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cranny is a kind of hole", "pln": ["(: cnet_isa_1228dbd9f4 (IsA cranny hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crap is a kind of fecal matter", "pln": ["(: cnet_isa_8623bfdf9f (IsA crap fecal_matter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crap shooting is a kind of crap", "pln": ["(: cnet_isa_c64ce4b1e7 (IsA crap_shooting crap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crapaud is a kind of frog", "pln": ["(: cnet_isa_c9892eb7dd (IsA crapaud frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crape is a kind of pancake", "pln": ["(: cnet_isa_f1776ef1fd (IsA crape pancake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crape fern is a kind of fern", "pln": ["(: cnet_isa_15fd2dbd60 (IsA crape_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crape jasmine is a kind of shrub", "pln": ["(: cnet_isa_ee88ded80f (IsA crape_jasmine shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crape myrtle is a kind of shrub", "pln": ["(: cnet_isa_d1584d763c (IsA crape_myrtle shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crappie is a kind of fish", "pln": ["(: cnet_isa_9deb7fb2d3 (IsA crappie fish) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crappie is a kind of sunfish", "pln": ["(: cnet_isa_9c94fbb55a (IsA crappie sunfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crap is a kind of game of chance", "pln": ["(: cnet_isa_f4bed71a32 (IsA crap game_of_chance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crap is a kind of two", "pln": ["(: cnet_isa_12e0a59d5e (IsA crap two) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crapshoot is a kind of risk", "pln": ["(: cnet_isa_869e740b0e (IsA crapshoot risk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crapshooter is a kind of gambler", "pln": ["(: cnet_isa_b419081c34 (IsA crapshooter gambler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crash is a kind of hit", "pln": ["(: cnet_isa_d65ef0a87e (IsA crash hit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crash is a kind of mishap", "pln": ["(: cnet_isa_6e8510a5c6 (IsA crash mishap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crash is a kind of accident", "pln": ["(: cnet_isa_2e3dc6ed8d (IsA crash accident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crash is a kind of happening", "pln": ["(: cnet_isa_013f284f14 (IsA crash happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crash barrier is a kind of barrier", "pln": ["(: cnet_isa_90350d9d69 (IsA crash_barrier barrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crash course is a kind of course of study", "pln": ["(: cnet_isa_09d2a2e119 (IsA crash_course course_of_study) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crash dive is a kind of descent", "pln": ["(: cnet_isa_4caceea620 (IsA crash_dive descent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crash helmet is a kind of helmet", "pln": ["(: cnet_isa_63c65fa6e9 (IsA crash_helmet helmet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crash landing is a kind of forced landing", "pln": ["(: cnet_isa_078069b2b8 (IsA crash_landing forced_landing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "craspedia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_980ded28c7 (IsA craspedia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crassness is a kind of insensitivity", "pln": ["(: cnet_isa_d0363c8356 (IsA crassness insensitivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crassostrea is a kind of mollusk genus", "pln": ["(: cnet_isa_a338173adb (IsA crassostrea mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crassula is a kind of plant genus", "pln": ["(: cnet_isa_73db5c3765 (IsA crassula plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crassulaceae is a kind of plant family", "pln": ["(: cnet_isa_3d06166969 (IsA crassulaceae plant_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crataegus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_3b63546873 (IsA crataegus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crate is a kind of box", "pln": ["(: cnet_isa_52fad2e0e5 (IsA crate box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crate is a kind of containerful", "pln": ["(: cnet_isa_f91db7f5b2 (IsA crate containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crater is a kind of natural depression", "pln": ["(: cnet_isa_10d765275a (IsA crater natural_depression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crateva is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_ea6f61dba0 (IsA crateva dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "craton is a kind of part", "pln": ["(: cnet_isa_93d96013e2 (IsA craton part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cravat is a kind of neckwear", "pln": ["(: cnet_isa_586f046462 (IsA cravat neckwear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cravenness is a kind of cowardice", "pln": ["(: cnet_isa_7c27a93f17 (IsA cravenness cowardice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "craving is a kind of desire", "pln": ["(: cnet_isa_8ca4874886 (IsA craving desire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "craw is a kind of stomach", "pln": ["(: cnet_isa_71dcf87cb0 (IsA craw stomach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crawl is a kind of locomotion", "pln": ["(: cnet_isa_065cb660ce (IsA crawl locomotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crawl is a kind of motion", "pln": ["(: cnet_isa_dfd6b7109d (IsA crawl motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "crayons is a kind of colorful sticks of wax", "pln": ["(: cnet_isa_f7a2f96de3 (IsA crayons colorful_sticks_of_wax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crawl is a kind of swimming stroke", "pln": ["(: cnet_isa_25498f10a8 (IsA crawl swimming_stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crawler is a kind of person", "pln": ["(: cnet_isa_6befe70f05 (IsA crawler person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crawlspace is a kind of space", "pln": ["(: cnet_isa_fb67b27f17 (IsA crawlspace space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crax is a kind of bird genus", "pln": ["(: cnet_isa_f9691ad85c (IsA crax bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crayfish is a kind of decapod crustacean", "pln": ["(: cnet_isa_2c2240bb98 (IsA crayfish decapod_crustacean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crayfish is a kind of shellfish", "pln": ["(: cnet_isa_4bc38edd5e (IsA crayfish shellfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crayon is a kind of writing implement", "pln": ["(: cnet_isa_221c18e837 (IsA crayon writing_implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crayon is a kind of colorful stick of wax", "pln": ["(: cnet_isa_0c86d8bb70 (IsA crayon colorful_stick_of_wax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "craze is a kind of crack", "pln": ["(: cnet_isa_40d8784383 (IsA craze crack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "craze is a kind of mania", "pln": ["(: cnet_isa_4de537600a (IsA craze mania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "craziness is a kind of insanity", "pln": ["(: cnet_isa_93924b3ce9 (IsA craziness insanity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crazy is a kind of lunatic", "pln": ["(: cnet_isa_c5ff541178 (IsA crazy lunatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crazy quilt is a kind of patchwork", "pln": ["(: cnet_isa_212ac10bd0 (IsA crazy_quilt patchwork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creak is a kind of noise", "pln": ["(: cnet_isa_026b11903a (IsA creak noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cream is a kind of toiletry", "pln": ["(: cnet_isa_cf13cd4a7b (IsA cream toiletry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cream is a kind of dairy product", "pln": ["(: cnet_isa_7e356b423c (IsA cream dairy_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cream is a kind of elite", "pln": ["(: cnet_isa_86f166730d (IsA cream elite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "creamcups is a kind of poppy", "pln": ["(: cnet_isa_54216ca3de (IsA creamcups poppy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cream cheese is a kind of cheese", "pln": ["(: cnet_isa_c113e17b62 (IsA cream_cheese cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cream colored courser is a kind of courser", "pln": ["(: cnet_isa_caf77a21b9 (IsA cream_colored_courser courser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cream of tartar is a kind of salt", "pln": ["(: cnet_isa_325ada491a (IsA cream_of_tartar salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cream of tartar tree is a kind of angiospermous tree", "pln": ["(: cnet_isa_0292f311c7 (IsA cream_of_tartar_tree angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cream pitcher is a kind of pitcher", "pln": ["(: cnet_isa_900b167602 (IsA cream_pitcher pitcher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cream puff is a kind of puff", "pln": ["(: cnet_isa_0d2e63219b (IsA cream_puff puff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cream sauce is a kind of white sauce", "pln": ["(: cnet_isa_021fef3723 (IsA cream_sauce white_sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cream soda is a kind of soft drink", "pln": ["(: cnet_isa_059b4cffa6 (IsA cream_soda soft_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creamcup is a kind of poppy", "pln": ["(: cnet_isa_20e0f6820c (IsA creamcup poppy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creamery is a kind of workplace", "pln": ["(: cnet_isa_f6bc106766 (IsA creamery workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creaminess is a kind of thickness", "pln": ["(: cnet_isa_c5c0fb6c51 (IsA creaminess thickness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creatine is a kind of amino acid", "pln": ["(: cnet_isa_f2a8dbb6f3 (IsA creatine amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creating by mental act is a kind of creation", "pln": ["(: cnet_isa_e855d42bc0 (IsA creating_by_mental_act creation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creating by removal is a kind of creation", "pln": ["(: cnet_isa_85e370ebd2 (IsA creating_by_removal creation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creating from raw material is a kind of creation", "pln": ["(: cnet_isa_1444f265ac (IsA creating_from_raw_material creation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creation is a kind of activity", "pln": ["(: cnet_isa_9fc3988ac0 (IsA creation activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creation is a kind of artifact", "pln": ["(: cnet_isa_bc5aaff5f0 (IsA creation artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creation is a kind of beginning", "pln": ["(: cnet_isa_1479bf7364 (IsA creation beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creation science is a kind of creationism", "pln": ["(: cnet_isa_75c4d23509 (IsA creation_science creationism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creationism is a kind of doctrine", "pln": ["(: cnet_isa_85688af45b (IsA creationism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creativity is a kind of ability", "pln": ["(: cnet_isa_ee82595d98 (IsA creativity ability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creator is a kind of person", "pln": ["(: cnet_isa_b00ca3848d (IsA creator person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creature is a kind of created being", "pln": ["(: cnet_isa_e03076c7e9 (IsA creature created_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creature is a kind of living thing", "pln": ["(: cnet_isa_024e3e1fb4 (IsA creature living_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creature is a kind of person", "pln": ["(: cnet_isa_7f447db607 (IsA creature person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creature is a kind of slave", "pln": ["(: cnet_isa_81e2234c44 (IsA creature slave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creche is a kind of hospital", "pln": ["(: cnet_isa_1bc5c536c9 (IsA creche hospital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creche is a kind of representation", "pln": ["(: cnet_isa_e661843bb1 (IsA creche representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "credence is a kind of attitude", "pln": ["(: cnet_isa_f70f3be665 (IsA credence attitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "credits is a kind of list", "pln": ["(: cnet_isa_389f8a8d63 (IsA credits list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "credenza is a kind of buffet", "pln": ["(: cnet_isa_2f7a969d64 (IsA credenza buffet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "credibility is a kind of quality", "pln": ["(: cnet_isa_6d30eaca64 (IsA credibility quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "credit is a kind of accomplishment", "pln": ["(: cnet_isa_e0bff41ae5 (IsA credit accomplishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "credit is a kind of attainment", "pln": ["(: cnet_isa_c99e86e5d0 (IsA credit attainment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "credit is a kind of title", "pln": ["(: cnet_isa_93a06f2f9b (IsA credit title) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "credit is a kind of asset", "pln": ["(: cnet_isa_ab836b8c77 (IsA credit asset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "credit is a kind of entry", "pln": ["(: cnet_isa_70d206f92f (IsA credit entry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "credit is a kind of payment", "pln": ["(: cnet_isa_277f1d90e3 (IsA credit payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "credit account is a kind of open end credit", "pln": ["(: cnet_isa_f345dc26f5 (IsA credit_account open_end_credit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "credit analyst is a kind of analyst", "pln": ["(: cnet_isa_a7cc197c9c (IsA credit_analyst analyst) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "credit application is a kind of application", "pln": ["(: cnet_isa_43a34a89d0 (IsA credit_application application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "credit bureau is a kind of agency", "pln": ["(: cnet_isa_cca4002274 (IsA credit_bureau agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "credit card is a kind of card", "pln": ["(: cnet_isa_b257186882 (IsA credit_card card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "credit card is a kind of open end credit", "pln": ["(: cnet_isa_89c7d3d67a (IsA credit_card open_end_credit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "credit card is a kind of positive identification", "pln": ["(: cnet_isa_0c12ae38ab (IsA credit_card positive_identification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "credit crunch is a kind of financial condition", "pln": ["(: cnet_isa_7021cae77b (IsA credit_crunch financial_condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "credit line is a kind of credit", "pln": ["(: cnet_isa_366306e1b0 (IsA credit_line credit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "credit order is a kind of order", "pln": ["(: cnet_isa_44a7f8cf46 (IsA credit_order order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "credit rating is a kind of estimate", "pln": ["(: cnet_isa_38a8e731d5 (IsA credit_rating estimate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "credit side is a kind of accounting", "pln": ["(: cnet_isa_cee7b2301d (IsA credit_side accounting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "credit system is a kind of system", "pln": ["(: cnet_isa_25e312e1d5 (IsA credit_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "credit union is a kind of depository financial institution", "pln": ["(: cnet_isa_bb2f655765 (IsA credit_union depository_financial_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creditor is a kind of person", "pln": ["(: cnet_isa_674dd653f4 (IsA creditor person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "credit is a kind of acknowledgment", "pln": ["(: cnet_isa_53f5360e77 (IsA credit acknowledgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "credit is a kind of list", "pln": ["(: cnet_isa_e1fad2eaa0 (IsA credit list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creditworthiness is a kind of trustworthiness", "pln": ["(: cnet_isa_7f3be17fe2 (IsA creditworthiness trustworthiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "credulity is a kind of trust", "pln": ["(: cnet_isa_e4e29710b7 (IsA credulity trust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "credulousness is a kind of naivete", "pln": ["(: cnet_isa_9a433b9e1b (IsA credulousness naivete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cree is a kind of algonquian", "pln": ["(: cnet_isa_0700a14b6a (IsA cree algonquian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cree is a kind of algonquin", "pln": ["(: cnet_isa_cb15571d7c (IsA cree algonquin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creed is a kind of doctrine", "pln": ["(: cnet_isa_95c89c3212 (IsA creed doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creek is a kind of small river", "pln": ["(: cnet_isa_b37708c953 (IsA creek small_river) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "creek is a kind of native american", "pln": ["(: cnet_isa_11294b0f29 (IsA creek native_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creek confederacy is a kind of confederation", "pln": ["(: cnet_isa_8a07683ffc (IsA creek_confederacy confederation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creel is a kind of basket", "pln": ["(: cnet_isa_1b0f74930b (IsA creel basket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creep is a kind of pen", "pln": ["(: cnet_isa_851448c5e8 (IsA creep pen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creep is a kind of change of location", "pln": ["(: cnet_isa_9064f93c47 (IsA creep change_of_location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creep is a kind of unpleasant person", "pln": ["(: cnet_isa_b928a1af0e (IsA creep unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creep feed is a kind of feed", "pln": ["(: cnet_isa_12894653d3 (IsA creep_feed feed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creeper is a kind of oscine", "pln": ["(: cnet_isa_66883a432b (IsA creeper oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "creeper is a kind of vascular plant", "pln": ["(: cnet_isa_d0308eecaa (IsA creeper vascular_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creepiness is a kind of touch", "pln": ["(: cnet_isa_cd1cd58cab (IsA creepiness touch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creeping bellflower is a kind of campanula", "pln": ["(: cnet_isa_4f694e3691 (IsA creeping_bellflower campanula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creeping bent is a kind of bent", "pln": ["(: cnet_isa_c3cecb1879 (IsA creeping_bent bent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creeping bugle is a kind of bugle", "pln": ["(: cnet_isa_d3bbc16961 (IsA creeping_bugle bugle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "creeping buttercup is a kind of buttercup", "pln": ["(: cnet_isa_2d975b8874 (IsA creeping_buttercup buttercup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creeping fern is a kind of climbing fern", "pln": ["(: cnet_isa_e8e7b2b1a1 (IsA creeping_fern climbing_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creeping juniper is a kind of juniper", "pln": ["(: cnet_isa_1a1677536e (IsA creeping_juniper juniper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creeping oxalis is a kind of oxalis", "pln": ["(: cnet_isa_c2d3b906ce (IsA creeping_oxalis oxalis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "creeping snowberry is a kind of shrublet", "pln": ["(: cnet_isa_bbcdda72bd (IsA creeping_snowberry shrublet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creeping soft grass is a kind of grass", "pln": ["(: cnet_isa_f7f2074730 (IsA creeping_soft_grass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creeping spike rush is a kind of spike rush", "pln": ["(: cnet_isa_90c781892b (IsA creeping_spike_rush spike_rush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creeping st john s wort is a kind of st john s wort", "pln": ["(: cnet_isa_cc803f500d (IsA creeping_st_john_s_wort st_john_s_wort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "creeping willow is a kind of willow", "pln": ["(: cnet_isa_d4be573693 (IsA creeping_willow willow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "creeps is a kind of fear", "pln": ["(: cnet_isa_e36621118b (IsA creeps fear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creeping zinnia is a kind of herb", "pln": ["(: cnet_isa_8fc52cea64 (IsA creeping_zinnia herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creep is a kind of fear", "pln": ["(: cnet_isa_85bb439a68 (IsA creep fear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creep is a kind of animal disease", "pln": ["(: cnet_isa_742f84770c (IsA creep animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creepy crawly is a kind of dislike", "pln": ["(: cnet_isa_e63e66ffaf (IsA creepy_crawly dislike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creepy crawly is a kind of animal", "pln": ["(: cnet_isa_eec097d4c8 (IsA creepy_crawly animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cremain is a kind of cadaver", "pln": ["(: cnet_isa_9ae682255c (IsA cremain cadaver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cremation is a kind of incineration", "pln": ["(: cnet_isa_51850bd6cb (IsA cremation incineration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crematory is a kind of furnace", "pln": ["(: cnet_isa_84e5db19df (IsA crematory furnace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crematory is a kind of morgue", "pln": ["(: cnet_isa_ed864c0543 (IsA crematory morgue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creme anglais is a kind of custard", "pln": ["(: cnet_isa_994391d187 (IsA creme_anglais custard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creme brulee is a kind of custard", "pln": ["(: cnet_isa_fa28d16b03 (IsA creme_brulee custard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creme caramel is a kind of custard", "pln": ["(: cnet_isa_2617451958 (IsA creme_caramel custard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creme de cacao is a kind of liqueur", "pln": ["(: cnet_isa_0d3b1e7d01 (IsA creme_de_cacao liqueur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creme de fraise is a kind of liqueur", "pln": ["(: cnet_isa_5b7560d598 (IsA creme_de_fraise liqueur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creme de menthe is a kind of liqueur", "pln": ["(: cnet_isa_e7b78d95f9 (IsA creme_de_menthe liqueur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crenate leaf is a kind of leaf", "pln": ["(: cnet_isa_d998055fc2 (IsA crenate_leaf leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crenel is a kind of space", "pln": ["(: cnet_isa_281c6d84ad (IsA crenel space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crenelation is a kind of construction", "pln": ["(: cnet_isa_32df784a71 (IsA crenelation construction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creole is a kind of natural language", "pln": ["(: cnet_isa_964d1804c8 (IsA creole natural_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creole is a kind of american", "pln": ["(: cnet_isa_d8b9d2aebc (IsA creole american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creole fish is a kind of grouper", "pln": ["(: cnet_isa_92e7fd86b2 (IsA creole_fish grouper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creosol is a kind of phenol", "pln": ["(: cnet_isa_2351c65739 (IsA creosol phenol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creosote is a kind of organic compound", "pln": ["(: cnet_isa_039fea2db9 (IsA creosote organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creosote bush is a kind of shrub", "pln": ["(: cnet_isa_d07ba2bd4a (IsA creosote_bush shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crepe is a kind of fabric", "pln": ["(: cnet_isa_a9eaf00d65 (IsA crepe fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crepe is a kind of paper", "pln": ["(: cnet_isa_c45e635605 (IsA crepe paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crepe de chine is a kind of crepe", "pln": ["(: cnet_isa_2a36912cc9 (IsA crepe_de_chine crepe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crepe fern is a kind of fern", "pln": ["(: cnet_isa_7c1c428f04 (IsA crepe_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crepe rubber is a kind of rubber", "pln": ["(: cnet_isa_b04bd2f3d5 (IsA crepe_rubber rubber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crepe suzette is a kind of crape", "pln": ["(: cnet_isa_14282573ab (IsA crepe_suzette crape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crepis is a kind of asterid dicot genus", "pln": ["(: cnet_isa_aee0f1c110 (IsA crepis asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crepitation rale is a kind of rattle", "pln": ["(: cnet_isa_ce621c735b (IsA crepitation_rale rattle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crepitation rale is a kind of symptom", "pln": ["(: cnet_isa_38f4a8a52d (IsA crepitation_rale symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crescendo is a kind of volume", "pln": ["(: cnet_isa_ab12f952cd (IsA crescendo volume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crescent is a kind of curve", "pln": ["(: cnet_isa_187736989b (IsA crescent curve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crescent roll is a kind of bun", "pln": ["(: cnet_isa_bbe1099394 (IsA crescent_roll bun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crescentia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_083e4e64c0 (IsA crescentia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cresol is a kind of phenol", "pln": ["(: cnet_isa_84493078b4 (IsA cresol phenol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cress is a kind of salad green", "pln": ["(: cnet_isa_6676861c4f (IsA cress salad_green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cress is a kind of crucifer", "pln": ["(: cnet_isa_437c1bb489 (IsA cress crucifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crest is a kind of process", "pln": ["(: cnet_isa_693ebcd85a (IsA crest process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crest is a kind of emblem", "pln": ["(: cnet_isa_ba1eb3d46b (IsA crest emblem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crest is a kind of line", "pln": ["(: cnet_isa_352304c851 (IsA crest line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crested cariama is a kind of wading bird", "pln": ["(: cnet_isa_2227ef8fdd (IsA crested_cariama wading_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crested coral root is a kind of orchid", "pln": ["(: cnet_isa_c1f82f379c (IsA crested_coral_root orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crested myna is a kind of myna", "pln": ["(: cnet_isa_66eeab4412 (IsA crested_myna myna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crested screamer is a kind of screamer", "pln": ["(: cnet_isa_5a1cdc3697 (IsA crested_screamer screamer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crested wheatgrass is a kind of wheatgrass", "pln": ["(: cnet_isa_b1ce577c4e (IsA crested_wheatgrass wheatgrass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cretan is a kind of european", "pln": ["(: cnet_isa_8909686846 (IsA cretan european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cretinism is a kind of hypothyroidism", "pln": ["(: cnet_isa_94207664d1 (IsA cretinism hypothyroidism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cretonne is a kind of fabric", "pln": ["(: cnet_isa_595d09ec33 (IsA cretonne fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "creutzfeldt jakob disease is a kind of brain disorder", "pln": ["(: cnet_isa_1b1c20ff0e (IsA creutzfeldt_jakob_disease brain_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crevalle jack is a kind of jack", "pln": ["(: cnet_isa_758aeb55fd (IsA crevalle_jack jack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crevasse is a kind of crack", "pln": ["(: cnet_isa_dbf408bc9e (IsA crevasse crack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crevice is a kind of depression", "pln": ["(: cnet_isa_cdddbd307d (IsA crevice depression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crew is a kind of team", "pln": ["(: cnet_isa_ed0f493914 (IsA crew team) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crew is a kind of unit", "pln": ["(: cnet_isa_a088df0e1c (IsA crew unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crew cut is a kind of haircut", "pln": ["(: cnet_isa_3d0fde8c12 (IsA crew_cut haircut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crew neck is a kind of neckline", "pln": ["(: cnet_isa_e80997a726 (IsA crew_neck neckline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crewelwork is a kind of embroidery", "pln": ["(: cnet_isa_366fd02bf2 (IsA crewelwork embroidery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crewman is a kind of employee", "pln": ["(: cnet_isa_b6fadb0948 (IsA crewman employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crewman is a kind of skilled worker", "pln": ["(: cnet_isa_407a73b6bd (IsA crewman skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crex is a kind of bird genus", "pln": ["(: cnet_isa_c35e822ac3 (IsA crex bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crib is a kind of playing card", "pln": ["(: cnet_isa_4b0a7c7904 (IsA crib playing_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crib is a kind of baby bed", "pln": ["(: cnet_isa_a09c045d6c (IsA crib baby_bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crib is a kind of bin", "pln": ["(: cnet_isa_41447d358c (IsA crib bin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crib is a kind of granary", "pln": ["(: cnet_isa_3b5894ca4d (IsA crib granary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cribbage is a kind of card game", "pln": ["(: cnet_isa_e73ee2824e (IsA cribbage card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cribbage board is a kind of board", "pln": ["(: cnet_isa_7a72bfd285 (IsA cribbage_board board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cricetidae is a kind of mammal family", "pln": ["(: cnet_isa_ce11b18f80 (IsA cricetidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cricetus is a kind of mammal genus", "pln": ["(: cnet_isa_02b0ca0b37 (IsA cricetus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crick is a kind of spasm", "pln": ["(: cnet_isa_cb8f181415 (IsA crick spasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cricket is a kind of game", "pln": ["(: cnet_isa_43234d3520 (IsA cricket game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cricket is a kind of field game", "pln": ["(: cnet_isa_f553d916aa (IsA cricket field_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cricket is a kind of orthopterous insect", "pln": ["(: cnet_isa_f9d54f3937 (IsA cricket orthopterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cricket ball is a kind of ball", "pln": ["(: cnet_isa_b11b0f1b40 (IsA cricket_ball ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cricket ball is a kind of cricket equipment", "pln": ["(: cnet_isa_97db3bdf1a (IsA cricket_ball cricket_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cricket bat is a kind of cricket equipment", "pln": ["(: cnet_isa_68a5f234cd (IsA cricket_bat cricket_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cricket bat willow is a kind of willow", "pln": ["(: cnet_isa_823f2bbe38 (IsA cricket_bat_willow willow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cricket equipment is a kind of sport equipment", "pln": ["(: cnet_isa_b9a00fd74c (IsA cricket_equipment sport_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cricket frog is a kind of tree toad", "pln": ["(: cnet_isa_6ffa0e8eec (IsA cricket_frog tree_toad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cricket match is a kind of match", "pln": ["(: cnet_isa_6a176d70a7 (IsA cricket_match match) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cricketer is a kind of athlete", "pln": ["(: cnet_isa_2f49e82068 (IsA cricketer athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crier is a kind of peddler", "pln": ["(: cnet_isa_562b24e71d (IsA crier peddler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crier is a kind of roarer", "pln": ["(: cnet_isa_8612de4d7b (IsA crier roarer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crime is a kind of activity", "pln": ["(: cnet_isa_5ac3a7afd8 (IsA crime activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crime is a kind of transgression", "pln": ["(: cnet_isa_f6a4cc4bdd (IsA crime transgression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crime is a kind of crime", "pln": ["(: cnet_isa_6e91e58654 (IsA crime crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crime rate is a kind of rate", "pln": ["(: cnet_isa_bf3b230442 (IsA crime_rate rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crime wave is a kind of rise", "pln": ["(: cnet_isa_1cf6514754 (IsA crime_wave rise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crimea congo hemorrhagic fever is a kind of hemorrhagic fever", "pln": ["(: cnet_isa_d256a9bfa2 (IsA crimea_congo_hemorrhagic_fever hemorrhagic_fever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "criminal is a kind of person who commit crime", "pln": ["(: cnet_isa_2d88939812 (IsA criminal person_who_commit_crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "criminal is a kind of principal", "pln": ["(: cnet_isa_d3c2d36513 (IsA criminal principal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "criminal contempt is a kind of contempt of court", "pln": ["(: cnet_isa_9fb99c81bf (IsA criminal_contempt contempt_of_court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "criminal court is a kind of court", "pln": ["(: cnet_isa_2527c8714c (IsA criminal_court court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "criminal intelligence service of canada is a kind of international intelligence agency", "pln": ["(: cnet_isa_7cb9341da7 (IsA criminal_intelligence_service_of_canada international_intelligence_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "criminal investigation command is a kind of law enforcement agency", "pln": ["(: cnet_isa_8eab8335e2 (IsA criminal_investigation_command law_enforcement_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "criminal law is a kind of legal code", "pln": ["(: cnet_isa_2dc9105551 (IsA criminal_law legal_code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "criminal maintenance is a kind of wrongdoing", "pln": ["(: cnet_isa_b224118f8b (IsA criminal_maintenance wrongdoing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "criminal negligence is a kind of negligence", "pln": ["(: cnet_isa_16a07eabac (IsA criminal_negligence negligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "criminal possession is a kind of possession", "pln": ["(: cnet_isa_d76462ecad (IsA criminal_possession possession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "criminal record is a kind of list", "pln": ["(: cnet_isa_589dcb1fa9 (IsA criminal_record list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "criminal suit is a kind of lawsuit", "pln": ["(: cnet_isa_89e0b5f8d1 (IsA criminal_suit lawsuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "criminalism is a kind of guilt", "pln": ["(: cnet_isa_7cc4352ac3 (IsA criminalism guilt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "criminalization is a kind of legislation", "pln": ["(: cnet_isa_39139f125e (IsA criminalization legislation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "criminal is a kind of people", "pln": ["(: cnet_isa_a96046e79f (IsA criminal people) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "criminologist is a kind of specialist", "pln": ["(: cnet_isa_16526f1672 (IsA criminologist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "criminology is a kind of sociology", "pln": ["(: cnet_isa_20de63fe54 (IsA criminology sociology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crimp is a kind of lock", "pln": ["(: cnet_isa_4f32fc25a4 (IsA crimp lock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crimp is a kind of kidnapper", "pln": ["(: cnet_isa_a0986b21a4 (IsA crimp kidnapper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crimson is a kind of red", "pln": ["(: cnet_isa_c3dbbc955f (IsA crimson red) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crimson clover is a kind of clover", "pln": ["(: cnet_isa_23714333cc (IsA crimson_clover clover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cringle is a kind of fastener", "pln": ["(: cnet_isa_9759d56f97 (IsA cringle fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crinkleroot is a kind of bittercress", "pln": ["(: cnet_isa_b82853bc72 (IsA crinkleroot bittercress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crinoid is a kind of echinoderm", "pln": ["(: cnet_isa_2d2db6eea8 (IsA crinoid echinoderm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crinoidea is a kind of class", "pln": ["(: cnet_isa_9057a8116e (IsA crinoidea class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crinoline is a kind of fabric", "pln": ["(: cnet_isa_614bbe5d35 (IsA crinoline fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crinoline is a kind of petticoat", "pln": ["(: cnet_isa_0ec9cf697f (IsA crinoline petticoat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "criollo is a kind of cocoa", "pln": ["(: cnet_isa_d1a5a38e45 (IsA criollo cocoa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "criollo is a kind of hispanic american", "pln": ["(: cnet_isa_1de2d23a78 (IsA criollo hispanic_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cripple is a kind of person", "pln": ["(: cnet_isa_320d2a22d9 (IsA cripple person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crisis is a kind of juncture", "pln": ["(: cnet_isa_170c87c54a (IsA crisis juncture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crisis is a kind of situation", "pln": ["(: cnet_isa_6927651969 (IsA crisis situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crisis intervention is a kind of psychotherapy", "pln": ["(: cnet_isa_402c13eda1 (IsA crisis_intervention psychotherapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crisphead lettuce is a kind of lettuce", "pln": ["(: cnet_isa_cbc48a4500 (IsA crisphead_lettuce lettuce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crispness is a kind of freshness", "pln": ["(: cnet_isa_32c3190baf (IsA crispness freshness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crispness is a kind of terseness", "pln": ["(: cnet_isa_83e0ee17a8 (IsA crispness terseness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crisscross is a kind of marking", "pln": ["(: cnet_isa_78c3003cf6 (IsA crisscross marking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cristobalite is a kind of mineral", "pln": ["(: cnet_isa_e369f8809d (IsA cristobalite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "criterion is a kind of ideal", "pln": ["(: cnet_isa_039443fd62 (IsA criterion ideal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "criterium is a kind of bicycle race", "pln": ["(: cnet_isa_b8a11de2a3 (IsA criterium bicycle_race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crith is a kind of weight unit", "pln": ["(: cnet_isa_6338045876 (IsA crith weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "critic is a kind of evaluator", "pln": ["(: cnet_isa_08aef7e71f (IsA critic evaluator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "critic is a kind of professional", "pln": ["(: cnet_isa_b159703211 (IsA critic professional) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "critic is a kind of unpleasant person", "pln": ["(: cnet_isa_7f95f145e8 (IsA critic unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "critical angle is a kind of angle of incidence", "pln": ["(: cnet_isa_ef1f6fd169 (IsA critical_angle angle_of_incidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "critical appraisal is a kind of appraisal", "pln": ["(: cnet_isa_9798b1dacb (IsA critical_appraisal appraisal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "critical mass is a kind of amount", "pln": ["(: cnet_isa_b3b4e4498c (IsA critical_mass amount) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "critical mass is a kind of mass", "pln": ["(: cnet_isa_f883543ffd (IsA critical_mass mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "criticality is a kind of juncture", "pln": ["(: cnet_isa_22b6a47760 (IsA criticality juncture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "criticality is a kind of urgency", "pln": ["(: cnet_isa_693e1a799d (IsA criticality urgency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "criticism is a kind of critical appraisal", "pln": ["(: cnet_isa_be8a727c92 (IsA criticism critical_appraisal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "criticism is a kind of disapproval", "pln": ["(: cnet_isa_f4f0a913f0 (IsA criticism disapproval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "criticism is a kind of writing", "pln": ["(: cnet_isa_f9a4dfebd9 (IsA criticism writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "critter is a kind of animal", "pln": ["(: cnet_isa_e14862317c (IsA critter animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cro magnon is a kind of homo sapien", "pln": ["(: cnet_isa_60d827d235 (IsA cro_magnon homo_sapien) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "croak is a kind of utterance", "pln": ["(: cnet_isa_1e725d369f (IsA croak utterance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "croaker is a kind of sciaenid fish", "pln": ["(: cnet_isa_75c8055f47 (IsA croaker sciaenid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "croaker is a kind of saltwater fish", "pln": ["(: cnet_isa_0697c3c631 (IsA croaker saltwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "croat is a kind of slav", "pln": ["(: cnet_isa_7cf913d816 (IsA croat slav) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "croatia is a kind of country", "pln": ["(: cnet_isa_c0f7b9c9f6 (IsA croatia country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "croatia is a kind of in europe", "pln": ["(: cnet_isa_16b9ffd546 (IsA croatia in_europe) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crocethia is a kind of bird genus", "pln": ["(: cnet_isa_02805c7212 (IsA crocethia bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crochet is a kind of needlework", "pln": ["(: cnet_isa_8ff13be807 (IsA crochet needlework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crochet needle is a kind of needle", "pln": ["(: cnet_isa_f81fdf98bb (IsA crochet_needle needle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crochet stitch is a kind of stitch", "pln": ["(: cnet_isa_7753288cff (IsA crochet_stitch stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crocheting is a kind of handicraft", "pln": ["(: cnet_isa_ffc377962e (IsA crocheting handicraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crock is a kind of jar", "pln": ["(: cnet_isa_a43bdf5d22 (IsA crock jar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crock is a kind of nonsense", "pln": ["(: cnet_isa_f39e6c2e44 (IsA crock nonsense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crockery is a kind of tableware", "pln": ["(: cnet_isa_4d77c15e70 (IsA crockery tableware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crocket is a kind of architectural ornament", "pln": ["(: cnet_isa_466fa8ad8a (IsA crocket architectural_ornament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crocodile is a kind of reptile", "pln": ["(: cnet_isa_2510f4d42e (IsA crocodile reptile) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crocodile is a kind of crocodilian reptile", "pln": ["(: cnet_isa_767503322c (IsA crocodile crocodilian_reptile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crocodile bird is a kind of courser", "pln": ["(: cnet_isa_d790723759 (IsA crocodile_bird courser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crocodile tear is a kind of hypocrisy", "pln": ["(: cnet_isa_6e79d75467 (IsA crocodile_tear hypocrisy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crocodilian reptile is a kind of diapsid", "pln": ["(: cnet_isa_f832abe16b (IsA crocodilian_reptile diapsid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crocodylia is a kind of animal order", "pln": ["(: cnet_isa_00478cfefe (IsA crocodylia animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crocodylidae is a kind of reptile family", "pln": ["(: cnet_isa_74d0b19009 (IsA crocodylidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crocodylus is a kind of reptile genus", "pln": ["(: cnet_isa_8afbfa5a2c (IsA crocodylus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crocolite is a kind of mineral", "pln": ["(: cnet_isa_b26356d8d1 (IsA crocolite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crocus is a kind of iridaceous plant", "pln": ["(: cnet_isa_8a60480c62 (IsA crocus iridaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crocuta is a kind of mammal genus", "pln": ["(: cnet_isa_af9036453a (IsA crocuta mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "croesus is a kind of rich person", "pln": ["(: cnet_isa_26a344bb36 (IsA croesus rich_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "croft is a kind of farm", "pln": ["(: cnet_isa_157c948990 (IsA croft farm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crofter is a kind of small farmer", "pln": ["(: cnet_isa_746261b130 (IsA crofter small_farmer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "croix de guerre is a kind of decoration", "pln": ["(: cnet_isa_9b8a2e9926 (IsA croix_de_guerre decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cronartium is a kind of fungus genus", "pln": ["(: cnet_isa_0b4598c9b7 (IsA cronartium fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cronyism is a kind of discrimination", "pln": ["(: cnet_isa_5837cb26d1 (IsA cronyism discrimination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crook is a kind of staff", "pln": ["(: cnet_isa_a248a408e1 (IsA crook staff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crooked stemmed aster is a kind of aster", "pln": ["(: cnet_isa_abc2aa9298 (IsA crooked_stemmed_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crookedness is a kind of dishonesty", "pln": ["(: cnet_isa_9c577b106f (IsA crookedness dishonesty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crookedness is a kind of shape", "pln": ["(: cnet_isa_95171fe2b4 (IsA crookedness shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crooke radiometer is a kind of radiometer", "pln": ["(: cnet_isa_45d666f89d (IsA crooke_radiometer radiometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crooke tube is a kind of cathode ray tube", "pln": ["(: cnet_isa_29b7fa70d5 (IsA crooke_tube cathode_ray_tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crookneck is a kind of yellow squash", "pln": ["(: cnet_isa_be83276d8f (IsA crookneck yellow_squash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crooner is a kind of singer", "pln": ["(: cnet_isa_7ea604f8d3 (IsA crooner singer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crooning is a kind of singing", "pln": ["(: cnet_isa_c0d0bceed3 (IsA crooning singing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crop is a kind of end product", "pln": ["(: cnet_isa_ba69b9b151 (IsA crop end_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crop is a kind of handle", "pln": ["(: cnet_isa_7efa2c19d9 (IsA crop handle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crop is a kind of collection", "pln": ["(: cnet_isa_0bc600d0b5 (IsA crop collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crop is a kind of output", "pln": ["(: cnet_isa_da17e141dd (IsA crop output) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crop is a kind of plant", "pln": ["(: cnet_isa_da678656db (IsA crop plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crop dusting is a kind of dispersion", "pln": ["(: cnet_isa_8c6600dde5 (IsA crop_dusting dispersion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crop failure is a kind of failure", "pln": ["(: cnet_isa_32d3e5beac (IsA crop_failure failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "croquet is a kind of outdoor game", "pln": ["(: cnet_isa_bee40308c5 (IsA croquet outdoor_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "croquet ball is a kind of ball", "pln": ["(: cnet_isa_4f2d0e953f (IsA croquet_ball ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "croquet ball is a kind of croquet equipment", "pln": ["(: cnet_isa_f53b754ee4 (IsA croquet_ball croquet_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "croquet equipment is a kind of sport equipment", "pln": ["(: cnet_isa_bd3dc4aa85 (IsA croquet_equipment sport_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "croquet mallet is a kind of croquet equipment", "pln": ["(: cnet_isa_0eb48123cf (IsA croquet_mallet croquet_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "croquet mallet is a kind of mallet", "pln": ["(: cnet_isa_dcf6f470cf (IsA croquet_mallet mallet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "croquette is a kind of dish", "pln": ["(: cnet_isa_aa36378847 (IsA croquette dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crore is a kind of large integer", "pln": ["(: cnet_isa_ca676d0c89 (IsA crore large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crosier is a kind of staff", "pln": ["(: cnet_isa_db97ebde21 (IsA crosier staff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cross is a kind of emblem", "pln": ["(: cnet_isa_509f684b02 (IsA cross emblem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cross is a kind of structure", "pln": ["(: cnet_isa_7cc1f4f2c0 (IsA cross structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cross is a kind of affliction", "pln": ["(: cnet_isa_eae1436782 (IsA cross affliction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cross bit is a kind of bore bit", "pln": ["(: cnet_isa_3988600739 (IsA cross_bit bore_bit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cross bun is a kind of sweet roll", "pln": ["(: cnet_isa_f23502fec9 (IsA cross_bun sweet_roll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cross classification is a kind of classification", "pln": ["(: cnet_isa_4d8cd21796 (IsA cross_classification classification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cross country is a kind of race", "pln": ["(: cnet_isa_5ef6df16c9 (IsA cross_country race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cross country riding is a kind of equestrian sport", "pln": ["(: cnet_isa_c3a9cb9ba8 (IsA cross_country_riding equestrian_sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cross country skiing is a kind of skiing", "pln": ["(: cnet_isa_118bbca08c (IsA cross_country_skiing skiing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cross examination is a kind of interrogation", "pln": ["(: cnet_isa_6efb9acd42 (IsA cross_examination interrogation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cross examiner is a kind of inquirer", "pln": ["(: cnet_isa_d2409b3b3d (IsA cross_examiner inquirer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cross eye is a kind of strabismus", "pln": ["(: cnet_isa_d2379499e6 (IsA cross_eye strabismus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cross fertilization is a kind of interchange", "pln": ["(: cnet_isa_13289af83e (IsA cross_fertilization interchange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cross fertilization is a kind of fertilization", "pln": ["(: cnet_isa_db5ced290a (IsA cross_fertilization fertilization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cross hair is a kind of line", "pln": ["(: cnet_isa_54d545d763 (IsA cross_hair line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cross leaved heath is a kind of erica", "pln": ["(: cnet_isa_9dde1de9d8 (IsA cross_leaved_heath erica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cross link is a kind of chemical bond", "pln": ["(: cnet_isa_af215d97e9 (IsA cross_link chemical_bond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cross pollination is a kind of influence", "pln": ["(: cnet_isa_38611ad9d2 (IsA cross_pollination influence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cross pollination is a kind of pollination", "pln": ["(: cnet_isa_0c8378804c (IsA cross_pollination pollination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cross purpose is a kind of purpose", "pln": ["(: cnet_isa_d1b1efecae (IsA cross_purpose purpose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cross question is a kind of question", "pln": ["(: cnet_isa_d5c8819490 (IsA cross_question question) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cross reference is a kind of citation", "pln": ["(: cnet_isa_f109f58b6b (IsA cross_reference citation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cross section is a kind of section", "pln": ["(: cnet_isa_0c9bf87d83 (IsA cross_section section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cross section is a kind of probability", "pln": ["(: cnet_isa_17922e9b34 (IsA cross_section probability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cross section is a kind of sample", "pln": ["(: cnet_isa_1e8d049a14 (IsA cross_section sample) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cross stitch is a kind of embroidery", "pln": ["(: cnet_isa_1f71ae92cb (IsA cross_stitch embroidery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cross stitch is a kind of embroidery stitch", "pln": ["(: cnet_isa_978f4f5024 (IsA cross_stitch embroidery_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cross street is a kind of street", "pln": ["(: cnet_isa_9d040334b0 (IsA cross_street street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cross vine is a kind of vine", "pln": ["(: cnet_isa_4977dc669d (IsA cross_vine vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crossbar is a kind of bar", "pln": ["(: cnet_isa_02dc9e8ed2 (IsA crossbar bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crossbar is a kind of crosspiece", "pln": ["(: cnet_isa_ed2ad9a25c (IsA crossbar crosspiece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crossbar is a kind of game equipment", "pln": ["(: cnet_isa_c8e4553b3e (IsA crossbar game_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crossbench is a kind of seat", "pln": ["(: cnet_isa_7c775c9c90 (IsA crossbench seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crossbencher is a kind of legislator", "pln": ["(: cnet_isa_ef68481d36 (IsA crossbencher legislator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crossbill is a kind of finch", "pln": ["(: cnet_isa_279f981e55 (IsA crossbill finch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crossbone is a kind of symbol", "pln": ["(: cnet_isa_accea77ae8 (IsA crossbone symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crossbow is a kind of bow", "pln": ["(: cnet_isa_28036b0f5d (IsA crossbow bow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crosscheck is a kind of check", "pln": ["(: cnet_isa_3041b84643 (IsA crosscheck check) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crosscheck is a kind of confirmation", "pln": ["(: cnet_isa_26d0aa8b33 (IsA crosscheck confirmation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crosscut is a kind of path", "pln": ["(: cnet_isa_3c657e6c93 (IsA crosscut path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crosscut saw is a kind of handsaw", "pln": ["(: cnet_isa_d6de91bb7c (IsA crosscut_saw handsaw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crosse is a kind of racket", "pln": ["(: cnet_isa_740f9ecf40 (IsA crosse racket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crossfire is a kind of fire", "pln": ["(: cnet_isa_619370a5a1 (IsA crossfire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crossfire is a kind of conversation", "pln": ["(: cnet_isa_d2aa27536a (IsA crossfire conversation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crosshair is a kind of center", "pln": ["(: cnet_isa_a4aa75d6d8 (IsA crosshair center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crosshead is a kind of block", "pln": ["(: cnet_isa_3b23c131aa (IsA crosshead block) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crossheading is a kind of heading", "pln": ["(: cnet_isa_5f32e9226c (IsA crossheading heading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crossing is a kind of travel", "pln": ["(: cnet_isa_1bc914a2a6 (IsA crossing travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crossing is a kind of voyage", "pln": ["(: cnet_isa_818198ac89 (IsA crossing voyage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crossing is a kind of path", "pln": ["(: cnet_isa_852efb386e (IsA crossing path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crossing is a kind of point", "pln": ["(: cnet_isa_b11280c13a (IsA crossing point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crossing guard is a kind of traffic cop", "pln": ["(: cnet_isa_b84cdaac4b (IsA crossing_guard traffic_cop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crossing over is a kind of organic process", "pln": ["(: cnet_isa_50a4d12661 (IsA crossing_over organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crossjack is a kind of sail", "pln": ["(: cnet_isa_910e3a5267 (IsA crossjack sail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crossopterygian is a kind of bony fish", "pln": ["(: cnet_isa_f8f75cf9ba (IsA crossopterygian bony_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crossopterygii is a kind of class", "pln": ["(: cnet_isa_b4fd56512e (IsA crossopterygii class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crossover is a kind of borrowing", "pln": ["(: cnet_isa_aa3ce94c3a (IsA crossover borrowing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crossover voter is a kind of voter", "pln": ["(: cnet_isa_4793a2de73 (IsA crossover_voter voter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crosspiece is a kind of brace", "pln": ["(: cnet_isa_7d4c5ebcf3 (IsA crosspiece brace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crossroad is a kind of overlap", "pln": ["(: cnet_isa_dee1014d8b (IsA crossroad overlap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crosstalk is a kind of noise", "pln": ["(: cnet_isa_1d8159643c (IsA crosstalk noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crosswind is a kind of wind", "pln": ["(: cnet_isa_9a2b04eb4d (IsA crosswind wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crossword puzzle is a kind of puzzle", "pln": ["(: cnet_isa_8375e10d79 (IsA crossword_puzzle puzzle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crotalaria is a kind of herb", "pln": ["(: cnet_isa_38fc91b1b2 (IsA crotalaria herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crotalidae is a kind of reptile family", "pln": ["(: cnet_isa_4e9d1b3b95 (IsA crotalidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crotalus is a kind of reptile genus", "pln": ["(: cnet_isa_46c73d282b (IsA crotalus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crotaphion is a kind of craniometric point", "pln": ["(: cnet_isa_087de28eed (IsA crotaphion craniometric_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crotaphytus is a kind of reptile genus", "pln": ["(: cnet_isa_8e366b0fb0 (IsA crotaphytus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crotch is a kind of angle", "pln": ["(: cnet_isa_181d5c102a (IsA crotch angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crotch is a kind of branch", "pln": ["(: cnet_isa_f207e2615a (IsA crotch branch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crotchet is a kind of hook", "pln": ["(: cnet_isa_5b0ee7ccdf (IsA crotchet hook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "croton is a kind of shrub", "pln": ["(: cnet_isa_1d141b3f7d (IsA croton shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "croton oil is a kind of oil", "pln": ["(: cnet_isa_3f26387934 (IsA croton_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crotophaga is a kind of bird genus", "pln": ["(: cnet_isa_f4ff9b8143 (IsA crotophaga bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crottle is a kind of lichen", "pln": ["(: cnet_isa_bb601b702f (IsA crottle lichen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crouch is a kind of bending", "pln": ["(: cnet_isa_e9ea667450 (IsA crouch bending) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "croup is a kind of angina", "pln": ["(: cnet_isa_786eb52604 (IsA croup angina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "croupier s rake is a kind of rake", "pln": ["(: cnet_isa_88e9246aef (IsA croupier_s_rake rake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "croupier is a kind of gambler", "pln": ["(: cnet_isa_7def379783 (IsA croupier gambler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crouton is a kind of bread", "pln": ["(: cnet_isa_e4f5300727 (IsA crouton bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crow s foot is a kind of wrinkle", "pln": ["(: cnet_isa_3338b57fda (IsA crow_s_foot wrinkle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crow s nest is a kind of platform", "pln": ["(: cnet_isa_02ab8fd047 (IsA crow_s_nest platform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crow is a kind of bird", "pln": ["(: cnet_isa_ee6daf1ece (IsA crow bird) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crow is a kind of corvine bird", "pln": ["(: cnet_isa_b2bf973a43 (IsA crow corvine_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crow is a kind of siouan", "pln": ["(: cnet_isa_73c33be36a (IsA crow siouan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crow is a kind of cry", "pln": ["(: cnet_isa_6b63525b65 (IsA crow cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crow garlic is a kind of wild onion", "pln": ["(: cnet_isa_47504c6ef5 (IsA crow_garlic wild_onion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crow pheasant is a kind of coucal", "pln": ["(: cnet_isa_0c86bc8be0 (IsA crow_pheasant coucal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crowbait is a kind of saddle horse", "pln": ["(: cnet_isa_50beb8d52d (IsA crowbait saddle_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crowbar is a kind of lever", "pln": ["(: cnet_isa_5c247330ee (IsA crowbar lever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crowberry is a kind of shrub", "pln": ["(: cnet_isa_ef8665733b (IsA crowberry shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "crown of thorns is a kind of crown", "pln": ["(: cnet_isa_eb313bf5c3 (IsA crown_of_thorns crown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crowd is a kind of gathering", "pln": ["(: cnet_isa_c14c4efd1a (IsA crowd gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crowd control is a kind of control", "pln": ["(: cnet_isa_a717d53ff1 (IsA crowd_control control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crowding is a kind of situation", "pln": ["(: cnet_isa_37d1710e79 (IsA crowding situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crown is a kind of crown jewel", "pln": ["(: cnet_isa_988877996e (IsA crown crown_jewel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crown is a kind of jewelled headdress", "pln": ["(: cnet_isa_8ee27fd659 (IsA crown jewelled_headdress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crown is a kind of top", "pln": ["(: cnet_isa_65d42c21de (IsA crown top) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crown is a kind of vertex", "pln": ["(: cnet_isa_85abfdc4b5 (IsA crown vertex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crown is a kind of wreath", "pln": ["(: cnet_isa_fec3e4e571 (IsA crown wreath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crown is a kind of symbol", "pln": ["(: cnet_isa_9c23149c6a (IsA crown symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crown is a kind of coin", "pln": ["(: cnet_isa_9ab2aaeebb (IsA crown coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crown colony is a kind of colony", "pln": ["(: cnet_isa_e1cbd62f8f (IsA crown_colony colony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crown daisy is a kind of chrysanthemum", "pln": ["(: cnet_isa_c4c0599b0a (IsA crown_daisy chrysanthemum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crown fire is a kind of forest fire", "pln": ["(: cnet_isa_0f0f9b1969 (IsA crown_fire forest_fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crown gall is a kind of plant disease", "pln": ["(: cnet_isa_3ad5c849d7 (IsA crown_gall plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crown glass is a kind of glass", "pln": ["(: cnet_isa_47844e0896 (IsA crown_glass glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crown imperial is a kind of fritillary", "pln": ["(: cnet_isa_a4d2b1fb54 (IsA crown_imperial fritillary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crown jewel is a kind of jewel", "pln": ["(: cnet_isa_467cdf05ec (IsA crown_jewel jewel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crown jewel is a kind of asset", "pln": ["(: cnet_isa_3d26360f1d (IsA crown_jewel asset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crown jewel is a kind of regalia", "pln": ["(: cnet_isa_3d36df7c6e (IsA crown_jewel regalia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crown land is a kind of estate", "pln": ["(: cnet_isa_1d21e58a05 (IsA crown_land estate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crown len is a kind of len", "pln": ["(: cnet_isa_c2fc37a984 (IsA crown_len len) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crown of thorn is a kind of crown", "pln": ["(: cnet_isa_567f16dc33 (IsA crown_of_thorn crown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crown of thorn is a kind of spurge", "pln": ["(: cnet_isa_82608a6b07 (IsA crown_of_thorn spurge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crown prince is a kind of prince", "pln": ["(: cnet_isa_ede635234d (IsA crown_prince prince) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crown princess is a kind of princess", "pln": ["(: cnet_isa_8b5f3af15b (IsA crown_princess princess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crown princess is a kind of wife", "pln": ["(: cnet_isa_b915098f62 (IsA crown_princess wife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crown saw is a kind of saw", "pln": ["(: cnet_isa_1c8851e784 (IsA crown_saw saw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crown wart is a kind of plant disease", "pln": ["(: cnet_isa_d366a2c26f (IsA crown_wart plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crownbeard is a kind of composite", "pln": ["(: cnet_isa_0073807c87 (IsA crownbeard composite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crownwork is a kind of dental appliance", "pln": ["(: cnet_isa_beab68fbb4 (IsA crownwork dental_appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crucian carp is a kind of cyprinid", "pln": ["(: cnet_isa_afb2d74d79 (IsA crucian_carp cyprinid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crucible is a kind of vessel", "pln": ["(: cnet_isa_f30248d8d4 (IsA crucible vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crucible steel is a kind of steel", "pln": ["(: cnet_isa_89811ac44b (IsA crucible_steel steel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crucifer is a kind of herb", "pln": ["(: cnet_isa_58ef90d4a6 (IsA crucifer herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cruciferae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_14c4631caf (IsA cruciferae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cruciferous vegetable is a kind of vegetable", "pln": ["(: cnet_isa_ca9dee50e0 (IsA cruciferous_vegetable vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crucifix is a kind of gymnastic exercise", "pln": ["(: cnet_isa_c84bbfd9a4 (IsA crucifix gymnastic_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crucifix is a kind of cross", "pln": ["(: cnet_isa_c548c5b411 (IsA crucifix cross) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crucifix fish is a kind of sea catfish", "pln": ["(: cnet_isa_4bef00cfaa (IsA crucifix_fish sea_catfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crucifixion is a kind of ancient mean of execution", "pln": ["(: cnet_isa_fe6c7ff281 (IsA crucifixion ancient_mean_of_execution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crucifixion is a kind of execution", "pln": ["(: cnet_isa_cb37a3ee46 (IsA crucifixion execution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crucifixion is a kind of torture", "pln": ["(: cnet_isa_48b07c7ba7 (IsA crucifixion torture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crud is a kind of disease", "pln": ["(: cnet_isa_ff82128c9e (IsA crud disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crud is a kind of snow", "pln": ["(: cnet_isa_33ce18d24a (IsA crud snow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crudeness is a kind of impoliteness", "pln": ["(: cnet_isa_0739b27e02 (IsA crudeness impoliteness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crudeness is a kind of inelegance", "pln": ["(: cnet_isa_5a7b937c68 (IsA crudeness inelegance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crudeness is a kind of wild", "pln": ["(: cnet_isa_c95d721ed8 (IsA crudeness wild) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crudite is a kind of appetizer", "pln": ["(: cnet_isa_ceeeac496f (IsA crudite appetizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cruel and unusual punishment is a kind of punishment", "pln": ["(: cnet_isa_70a026bdbb (IsA cruel_and_unusual_punishment punishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cruel plant is a kind of vine", "pln": ["(: cnet_isa_9e8bce49a6 (IsA cruel_plant vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cruelty is a kind of maltreatment", "pln": ["(: cnet_isa_b327df1321 (IsA cruelty maltreatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cruelty is a kind of malevolence", "pln": ["(: cnet_isa_33208a27fb (IsA cruelty malevolence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cruelty is a kind of heartlessness", "pln": ["(: cnet_isa_9c693ab108 (IsA cruelty heartlessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cruet is a kind of bottle", "pln": ["(: cnet_isa_4abe6ca542 (IsA cruet bottle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cruet stand is a kind of rack", "pln": ["(: cnet_isa_19f85bc217 (IsA cruet_stand rack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cruise is a kind of ocean trip", "pln": ["(: cnet_isa_8560c58591 (IsA cruise ocean_trip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cruise control is a kind of control", "pln": ["(: cnet_isa_d125b92956 (IsA cruise_control control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cruise missile is a kind of aircraft", "pln": ["(: cnet_isa_6d7b33ad19 (IsA cruise_missile aircraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cruise missile is a kind of bomb", "pln": ["(: cnet_isa_88e53355e8 (IsA cruise_missile bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cruise ship is a kind of liner", "pln": ["(: cnet_isa_3c15d7182b (IsA cruise_ship liner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cruiser is a kind of car", "pln": ["(: cnet_isa_d310221ac2 (IsA cruiser car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cruiser is a kind of warship", "pln": ["(: cnet_isa_f5f8e28c7b (IsA cruiser warship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cruller is a kind of friedcake", "pln": ["(: cnet_isa_d24e70942f (IsA cruller friedcake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crumb is a kind of morsel", "pln": ["(: cnet_isa_b394acb9bb (IsA crumb morsel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crumb is a kind of small indefinite quantity", "pln": ["(: cnet_isa_803df62dcf (IsA crumb small_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crumb cake is a kind of cake", "pln": ["(: cnet_isa_e9a30dfb41 (IsA crumb_cake cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crumbliness is a kind of breakableness", "pln": ["(: cnet_isa_8417faf2cf (IsA crumbliness breakableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crumpet is a kind of cake", "pln": ["(: cnet_isa_4e1ebda7f0 (IsA crumpet cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crunch is a kind of noise", "pln": ["(: cnet_isa_b8b52455ea (IsA crunch noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crunch is a kind of situation", "pln": ["(: cnet_isa_edaa473c4d (IsA crunch situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crupper is a kind of strap", "pln": ["(: cnet_isa_b396da288a (IsA crupper strap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crus is a kind of limb", "pln": ["(: cnet_isa_9fdb715c2f (IsA crus limb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crusade is a kind of expedition", "pln": ["(: cnet_isa_53b81f632b (IsA crusade expedition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crusader is a kind of warrior", "pln": ["(: cnet_isa_61a45bc192 (IsA crusader warrior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cruse is a kind of jar", "pln": ["(: cnet_isa_9865c6a158 (IsA cruse jar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crush is a kind of compression", "pln": ["(: cnet_isa_cce57bc702 (IsA crush compression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crush is a kind of crowd", "pln": ["(: cnet_isa_c7427b792c (IsA crush crowd) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crushed leather is a kind of leather", "pln": ["(: cnet_isa_8fcd04ee64 (IsA crushed_leather leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crusher is a kind of device", "pln": ["(: cnet_isa_6bbc097529 (IsA crusher device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crust is a kind of discourtesy", "pln": ["(: cnet_isa_de029a4b2d (IsA crust discourtesy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crust is a kind of covering", "pln": ["(: cnet_isa_0990679d2b (IsA crust covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crust is a kind of layer", "pln": ["(: cnet_isa_7ff093e13c (IsA crust layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crustacea is a kind of class", "pln": ["(: cnet_isa_32e75a4a00 (IsA crustacea class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crustacean is a kind of animal", "pln": ["(: cnet_isa_9df7dfaf6f (IsA crustacean animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crustacean is a kind of arthropod", "pln": ["(: cnet_isa_8ad7aca1a1 (IsA crustacean arthropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crustal movement is a kind of movement", "pln": ["(: cnet_isa_e4e7a479ec (IsA crustal_movement movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crustose thallus is a kind of thallus", "pln": ["(: cnet_isa_61113de5fd (IsA crustose_thallus thallus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crusty is a kind of rheum", "pln": ["(: cnet_isa_f12eec3e14 (IsA crusty rheum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crutch is a kind of expedient", "pln": ["(: cnet_isa_75360eefab (IsA crutch expedient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crutch is a kind of staff", "pln": ["(: cnet_isa_55921fbdc9 (IsA crutch staff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crux is a kind of point", "pln": ["(: cnet_isa_a47112750b (IsA crux point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cry is a kind of effusion", "pln": ["(: cnet_isa_70d04746a5 (IsA cry effusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cry is a kind of utterance", "pln": ["(: cnet_isa_c231e4d656 (IsA cry utterance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cry is a kind of sound", "pln": ["(: cnet_isa_40504c3404 (IsA cry sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cryesthesia is a kind of hypersensitivity", "pln": ["(: cnet_isa_190f99eeaa (IsA cryesthesia hypersensitivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crying is a kind of bodily process", "pln": ["(: cnet_isa_ae6c354b57 (IsA crying bodily_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryoanesthesia is a kind of anesthesia", "pln": ["(: cnet_isa_b8bf3958a2 (IsA cryoanesthesia anesthesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryobiology is a kind of biology", "pln": ["(: cnet_isa_bd4aab5a7a (IsA cryobiology biology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cryocautery is a kind of cautery", "pln": ["(: cnet_isa_676d4eb98f (IsA cryocautery cautery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryogen is a kind of refrigerant", "pln": ["(: cnet_isa_2c3e0f8980 (IsA cryogen refrigerant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryogenic is a kind of physic", "pln": ["(: cnet_isa_b2f4fa28f0 (IsA cryogenic physic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryolite is a kind of mineral", "pln": ["(: cnet_isa_363038711d (IsA cryolite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryometer is a kind of thermometer", "pln": ["(: cnet_isa_1586bb6585 (IsA cryometer thermometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryonic is a kind of cryobiology", "pln": ["(: cnet_isa_3bfcf9313a (IsA cryonic cryobiology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryophobia is a kind of simple phobia", "pln": ["(: cnet_isa_3980c77427 (IsA cryophobia simple_phobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cryoscope is a kind of measuring instrument", "pln": ["(: cnet_isa_c1c8983cf1 (IsA cryoscope measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryostat is a kind of thermostat", "pln": ["(: cnet_isa_6be3a0ee2f (IsA cryostat thermostat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryosurgery is a kind of operation", "pln": ["(: cnet_isa_00242511eb (IsA cryosurgery operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crypt is a kind of burial chamber", "pln": ["(: cnet_isa_fb14243cc1 (IsA crypt burial_chamber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryptacanthode is a kind of fish genus", "pln": ["(: cnet_isa_fed4858bf1 (IsA cryptacanthode fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryptanalysis is a kind of science", "pln": ["(: cnet_isa_f043f65980 (IsA cryptanalysis science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryptanalyst is a kind of decoder", "pln": ["(: cnet_isa_c3ebad6eff (IsA cryptanalyst decoder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryptic coloration is a kind of protective coloration", "pln": ["(: cnet_isa_19b1adc976 (IsA cryptic_coloration protective_coloration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryptobiosis is a kind of physiological state", "pln": ["(: cnet_isa_af0c6637b7 (IsA cryptobiosis physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryptobranchidae is a kind of amphibian family", "pln": ["(: cnet_isa_2a30d27fd0 (IsA cryptobranchidae amphibian_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryptobranchus is a kind of amphibian genus", "pln": ["(: cnet_isa_52ec95950b (IsA cryptobranchus amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryptocercidae is a kind of arthropod family", "pln": ["(: cnet_isa_85debed464 (IsA cryptocercidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryptocercus is a kind of arthropod genus", "pln": ["(: cnet_isa_d414b8d9ad (IsA cryptocercus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryptococcosis is a kind of fungal infection", "pln": ["(: cnet_isa_2a4af3b3e0 (IsA cryptococcosis fungal_infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryptocoryne is a kind of aquatic plant", "pln": ["(: cnet_isa_a9fdbae003 (IsA cryptocoryne aquatic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryptogam is a kind of plant", "pln": ["(: cnet_isa_3c8293ee87 (IsA cryptogam plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryptogamia is a kind of division", "pln": ["(: cnet_isa_8a968c8576 (IsA cryptogamia division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryptogram is a kind of writing", "pln": ["(: cnet_isa_34b5a927d1 (IsA cryptogram writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryptogramma is a kind of fern genus", "pln": ["(: cnet_isa_dbf70c44a0 (IsA cryptogramma fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryptogrammataceae is a kind of fern family", "pln": ["(: cnet_isa_228598fa27 (IsA cryptogrammataceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryptograph is a kind of device", "pln": ["(: cnet_isa_2703b940d8 (IsA cryptograph device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryptography is a kind of writing", "pln": ["(: cnet_isa_a68423deeb (IsA cryptography writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryptomeria is a kind of gymnosperm genus", "pln": ["(: cnet_isa_6fe9e28bc3 (IsA cryptomeria gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryptomonad is a kind of alga", "pln": ["(: cnet_isa_dce12524bc (IsA cryptomonad alga) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryptophyceae is a kind of class", "pln": ["(: cnet_isa_e1769e68cb (IsA cryptophyceae class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryptophyta is a kind of phylum", "pln": ["(: cnet_isa_85f4b0f5ff (IsA cryptophyta phylum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryptoprocta is a kind of civet", "pln": ["(: cnet_isa_92ec28b4c5 (IsA cryptoprocta civet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryptorchidy is a kind of abnormality", "pln": ["(: cnet_isa_de2bf25d30 (IsA cryptorchidy abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryptoterme is a kind of arthropod genus", "pln": ["(: cnet_isa_b1deceb017 (IsA cryptoterme arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cryptotis is a kind of mammal genus", "pln": ["(: cnet_isa_a2f4057054 (IsA cryptotis mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crystal is a kind of component", "pln": ["(: cnet_isa_166664e06a (IsA crystal component) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crystal is a kind of glassware", "pln": ["(: cnet_isa_09e04e095d (IsA crystal glassware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crystal is a kind of protective covering", "pln": ["(: cnet_isa_b398e30f3b (IsA crystal protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crystal is a kind of rock", "pln": ["(: cnet_isa_0564c6da85 (IsA crystal rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crystal is a kind of solid", "pln": ["(: cnet_isa_203f1a7fea (IsA crystal solid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crystal ball is a kind of ball", "pln": ["(: cnet_isa_1e0b159431 (IsA crystal_ball ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crystal counter is a kind of counter tube", "pln": ["(: cnet_isa_b1d5cebd47 (IsA crystal_counter counter_tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crystal detector is a kind of detector", "pln": ["(: cnet_isa_5c848d9d2b (IsA crystal_detector detector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crystal gazing is a kind of prophecy", "pln": ["(: cnet_isa_a2e4641491 (IsA crystal_gazing prophecy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crystal microphone is a kind of microphone", "pln": ["(: cnet_isa_ac6958ac26 (IsA crystal_microphone microphone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crystal oscillator is a kind of oscillator", "pln": ["(: cnet_isa_9f2cb59763 (IsA crystal_oscillator oscillator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crystal pickup is a kind of cartridge", "pln": ["(: cnet_isa_8cb3aece60 (IsA crystal_pickup cartridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crystal set is a kind of radio receiver", "pln": ["(: cnet_isa_66c207abfe (IsA crystal_set radio_receiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crystallite is a kind of crystal", "pln": ["(: cnet_isa_e27463a03e (IsA crystallite crystal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crystallization is a kind of construction", "pln": ["(: cnet_isa_af428906da (IsA crystallization construction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "crystallization is a kind of chemical phenomenon", "pln": ["(: cnet_isa_bb866db01f (IsA crystallization chemical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crystallized ginger is a kind of candied fruit", "pln": ["(: cnet_isa_56dbecb978 (IsA crystallized_ginger candied_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crystallographer is a kind of specialist", "pln": ["(: cnet_isa_04116c9bd4 (IsA crystallographer specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "crystallography is a kind of physic", "pln": ["(: cnet_isa_1bdcacc37f (IsA crystallography physic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ctene is a kind of organ", "pln": ["(: cnet_isa_6d2cb86a51 (IsA ctene organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ctenidium is a kind of gill", "pln": ["(: cnet_isa_ab57256fbe (IsA ctenidium gill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ctenizidae is a kind of arthropod family", "pln": ["(: cnet_isa_49f955f704 (IsA ctenizidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ctenocephalide is a kind of arthropod genus", "pln": ["(: cnet_isa_3981e695e5 (IsA ctenocephalide arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ctenocephalus is a kind of ctenocephalide", "pln": ["(: cnet_isa_a347ba0935 (IsA ctenocephalus ctenocephalide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ctenophora is a kind of phylum", "pln": ["(: cnet_isa_b58f348512 (IsA ctenophora phylum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ctenophore is a kind of invertebrate", "pln": ["(: cnet_isa_b449712380 (IsA ctenophore invertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ctenophore family is a kind of family", "pln": ["(: cnet_isa_7b3b5d5759 (IsA ctenophore_family family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ctenophore genus is a kind of genus", "pln": ["(: cnet_isa_5f30843a32 (IsA ctenophore_genus genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cub is a kind of young mammal", "pln": ["(: cnet_isa_be6382a50d (IsA cub young_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cub is a kind of male child", "pln": ["(: cnet_isa_45059d1862 (IsA cub male_child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cub is a kind of novice", "pln": ["(: cnet_isa_50b398ac73 (IsA cub novice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cub scout is a kind of boy scout", "pln": ["(: cnet_isa_d4f9bcbae6 (IsA cub_scout boy_scout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuba is a kind of country", "pln": ["(: cnet_isa_244a87bc5b (IsA cuba country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuban is a kind of west indian", "pln": ["(: cnet_isa_a4c8d07ad6 (IsA cuban west_indian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuban bast is a kind of hibiscus", "pln": ["(: cnet_isa_00c21514cc (IsA cuban_bast hibiscus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuban heel is a kind of heel", "pln": ["(: cnet_isa_0d01543001 (IsA cuban_heel heel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cuban monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_c897279e2e (IsA cuban_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cuban peso is a kind of cuban monetary unit", "pln": ["(: cnet_isa_fc175f9cfc (IsA cuban_peso cuban_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cubbyhole is a kind of room", "pln": ["(: cnet_isa_fb6301f735 (IsA cubbyhole room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cube is a kind of block", "pln": ["(: cnet_isa_4d201b5a72 (IsA cube block) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cube is a kind of subshrub", "pln": ["(: cnet_isa_df678d704b (IsA cube subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cube is a kind of number", "pln": ["(: cnet_isa_9ffab0c0c1 (IsA cube number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cube is a kind of regular polyhedron", "pln": ["(: cnet_isa_29d49a2e80 (IsA cube regular_polyhedron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "cuculiformes is a kind of animal order", "pln": ["(: cnet_isa_476e1c4c84 (IsA cuculiformes animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cube root is a kind of root", "pln": ["(: cnet_isa_6009d7dd27 (IsA cube_root root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cubeb is a kind of cigarette", "pln": ["(: cnet_isa_67730718fc (IsA cubeb cigarette) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cubeb is a kind of fruit", "pln": ["(: cnet_isa_089b6fa0b0 (IsA cubeb fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cubeb is a kind of true pepper", "pln": ["(: cnet_isa_52f527b475 (IsA cubeb true_pepper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cubic foot is a kind of volume unit", "pln": ["(: cnet_isa_193178a352 (IsA cubic_foot volume_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cubic inch is a kind of volume unit", "pln": ["(: cnet_isa_1674569b15 (IsA cubic_inch volume_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cubic kilometer is a kind of metric capacity unit", "pln": ["(: cnet_isa_7fca6b689c (IsA cubic_kilometer metric_capacity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cubic millimeter is a kind of metric capacity unit", "pln": ["(: cnet_isa_0965433812 (IsA cubic_millimeter metric_capacity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cubic yard is a kind of volume unit", "pln": ["(: cnet_isa_03a91b7db3 (IsA cubic_yard volume_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cubicity is a kind of three dimensionality", "pln": ["(: cnet_isa_d08205c776 (IsA cubicity three_dimensionality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cubicle is a kind of alternative to office", "pln": ["(: cnet_isa_24854f09fa (IsA cubicle alternative_to_office) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cubicle is a kind of workspace", "pln": ["(: cnet_isa_a3b134c1a3 (IsA cubicle workspace) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cubism is a kind of artistic movement", "pln": ["(: cnet_isa_32cfd022c9 (IsA cubism artistic_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cubist is a kind of painter", "pln": ["(: cnet_isa_4e9a5c8f47 (IsA cubist painter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cubit is a kind of linear unit", "pln": ["(: cnet_isa_2f044e5694 (IsA cubit linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cubitiere is a kind of armor plate", "pln": ["(: cnet_isa_0dbd465512 (IsA cubitiere armor_plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cubitus is a kind of limb", "pln": ["(: cnet_isa_4ab7b13c6d (IsA cubitus limb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuboid is a kind of parallelepiped", "pln": ["(: cnet_isa_4e1f93602e (IsA cuboid parallelepiped) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuboid bone is a kind of bone", "pln": ["(: cnet_isa_2fd4436619 (IsA cuboid_bone bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuboidal cell is a kind of epithelial cell", "pln": ["(: cnet_isa_cfb9a9c5b1 (IsA cuboidal_cell epithelial_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cucking stool is a kind of instrument of punishment", "pln": ["(: cnet_isa_d19ea2dd95 (IsA cucking_stool instrument_of_punishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuckold is a kind of husband", "pln": ["(: cnet_isa_eed5a3d87c (IsA cuckold husband) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuckoldom is a kind of marriage", "pln": ["(: cnet_isa_cf0d8c8564 (IsA cuckoldom marriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuckoldry is a kind of sexual conquest", "pln": ["(: cnet_isa_984e5e1073 (IsA cuckoldry sexual_conquest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuckoo is a kind of cuculiform bird", "pln": ["(: cnet_isa_ff0e9c6b01 (IsA cuckoo cuculiform_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuckoo bumblebee is a kind of bee", "pln": ["(: cnet_isa_39fefd83ff (IsA cuckoo_bumblebee bee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuckoo clock is a kind of clock", "pln": ["(: cnet_isa_c6ea73d0f3 (IsA cuckoo_clock clock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuckoopint is a kind of arum", "pln": ["(: cnet_isa_644283ee09 (IsA cuckoopint arum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuculidae is a kind of bird family", "pln": ["(: cnet_isa_f2b90b39c6 (IsA cuculidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuculiform bird is a kind of bird", "pln": ["(: cnet_isa_38bf2f2fee (IsA cuculiform_bird bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuculiforme is a kind of animal order", "pln": ["(: cnet_isa_321dc1fde0 (IsA cuculiforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuculus is a kind of bird genus", "pln": ["(: cnet_isa_b2c3547182 (IsA cuculus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cucumber is a kind of vegetable", "pln": ["(: cnet_isa_537829d812 (IsA cucumber vegetable) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cucumber is a kind of melon", "pln": ["(: cnet_isa_8c170b0bdc (IsA cucumber melon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cucumber tree is a kind of magnolia", "pln": ["(: cnet_isa_46406c6a6c (IsA cucumber_tree magnolia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cucumis is a kind of dicot genus", "pln": ["(: cnet_isa_d181f939a9 (IsA cucumis dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cucurbit is a kind of cucurbitaceae", "pln": ["(: cnet_isa_a4ed9d841c (IsA cucurbit cucurbitaceae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cucurbita is a kind of dicot genus", "pln": ["(: cnet_isa_6b1e1ee564 (IsA cucurbita dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cucurbitaceae is a kind of dicot family", "pln": ["(: cnet_isa_2e86f1a0f3 (IsA cucurbitaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cud is a kind of feed", "pln": ["(: cnet_isa_935030d286 (IsA cud feed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuddle is a kind of embrace", "pln": ["(: cnet_isa_f26661d56f (IsA cuddle embrace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuddy is a kind of galley", "pln": ["(: cnet_isa_c101286be8 (IsA cuddy galley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cudgel is a kind of club", "pln": ["(: cnet_isa_015162ab63 (IsA cudgel club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cudweed is a kind of everlasting", "pln": ["(: cnet_isa_bc802bff8a (IsA cudweed everlasting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cue is a kind of sport implement", "pln": ["(: cnet_isa_6eba29c674 (IsA cue sport_implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cue is a kind of actor s line", "pln": ["(: cnet_isa_a096787a9c (IsA cue actor_s_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cue ball is a kind of billiard ball", "pln": ["(: cnet_isa_97e8bb8aee (IsA cue_ball billiard_ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuff is a kind of lap", "pln": ["(: cnet_isa_3c56968f37 (IsA cuff lap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cufflink is a kind of jewelry", "pln": ["(: cnet_isa_d01c0286e1 (IsA cufflink jewelry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuirass is a kind of body armor", "pln": ["(: cnet_isa_e934ebddc6 (IsA cuirass body_armor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuirassier is a kind of cavalryman", "pln": ["(: cnet_isa_2c59599cd9 (IsA cuirassier cavalryman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuisine is a kind of cooking", "pln": ["(: cnet_isa_cd6ae8f02c (IsA cuisine cooking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuisse is a kind of armor plate", "pln": ["(: cnet_isa_d2b5b9cc9d (IsA cuisse armor_plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cul is a kind of passage", "pln": ["(: cnet_isa_f8912528cf (IsA cul passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "culcita is a kind of fern genus", "pln": ["(: cnet_isa_78eca34f75 (IsA culcita fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "culdoscope is a kind of endoscope", "pln": ["(: cnet_isa_b37e1d372c (IsA culdoscope endoscope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "culdoscopy is a kind of endoscopy", "pln": ["(: cnet_isa_44e65e6638 (IsA culdoscopy endoscopy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "culex is a kind of arthropod genus", "pln": ["(: cnet_isa_c621fcfbd0 (IsA culex arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "culex quinquefasciatus is a kind of mosquito", "pln": ["(: cnet_isa_726ea597a5 (IsA culex_quinquefasciatus mosquito) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "culicidae is a kind of arthropod family", "pln": ["(: cnet_isa_5bbcef53e1 (IsA culicidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cull is a kind of decision making", "pln": ["(: cnet_isa_0305361f24 (IsA cull decision_making) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cullis is a kind of gutter", "pln": ["(: cnet_isa_61d3f141db (IsA cullis gutter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "culm is a kind of stalk", "pln": ["(: cnet_isa_4b407e0082 (IsA culm stalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "culmination is a kind of celestial point", "pln": ["(: cnet_isa_7f81ccb4b2 (IsA culmination celestial_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "culotte is a kind of skirt", "pln": ["(: cnet_isa_506e57aff8 (IsA culotte skirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cult is a kind of religion", "pln": ["(: cnet_isa_adee3a2eb5 (IsA cult religion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cult of personality is a kind of fashion", "pln": ["(: cnet_isa_3a4ac0ed27 (IsA cult_of_personality fashion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cultism is a kind of devotion", "pln": ["(: cnet_isa_8d22dc0936 (IsA cultism devotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cultist is a kind of follower", "pln": ["(: cnet_isa_c83ca3218d (IsA cultist follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cultivar is a kind of variety", "pln": ["(: cnet_isa_82ec7bd433 (IsA cultivar variety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cultivar is a kind of vascular plant", "pln": ["(: cnet_isa_948e53a895 (IsA cultivar vascular_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cultivated land is a kind of land", "pln": ["(: cnet_isa_6123e6fc03 (IsA cultivated_land land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cultivated parsnip is a kind of parsnip", "pln": ["(: cnet_isa_e0b4bd9678 (IsA cultivated_parsnip parsnip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cultivated plant is a kind of vascular plant", "pln": ["(: cnet_isa_25d51cd95c (IsA cultivated_plant vascular_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cultivated rice is a kind of rice", "pln": ["(: cnet_isa_2006e9cc6b (IsA cultivated_rice rice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cultivation is a kind of production", "pln": ["(: cnet_isa_6affde1c9b (IsA cultivation production) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cultivation is a kind of socialization", "pln": ["(: cnet_isa_8cc966b2a0 (IsA cultivation socialization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cultivation is a kind of growth", "pln": ["(: cnet_isa_69585e1943 (IsA cultivation growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cultivator is a kind of farm machine", "pln": ["(: cnet_isa_1dc605f661 (IsA cultivator farm_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cultural attache is a kind of attache", "pln": ["(: cnet_isa_9b78eb2d71 (IsA cultural_attache attache) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cultural movement is a kind of movement", "pln": ["(: cnet_isa_9b3e751eb5 (IsA cultural_movement movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cultural revolution is a kind of revolution", "pln": ["(: cnet_isa_45a62c1bd2 (IsA cultural_revolution revolution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "culturati is a kind of intelligentsia", "pln": ["(: cnet_isa_5980fb0a76 (IsA culturati intelligentsia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "culture is a kind of cultivation", "pln": ["(: cnet_isa_5ef1c53c6b (IsA culture cultivation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "culture is a kind of society", "pln": ["(: cnet_isa_7b87347485 (IsA culture society) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "culture is a kind of growth", "pln": ["(: cnet_isa_ad1f6c7226 (IsA culture growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "culture is a kind of attitude", "pln": ["(: cnet_isa_eb49c50013 (IsA culture attitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "culture is a kind of taste", "pln": ["(: cnet_isa_2b9a31755a (IsA culture taste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "culture medium is a kind of food", "pln": ["(: cnet_isa_b176ea60b2 (IsA culture_medium food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "culture shock is a kind of disorientation", "pln": ["(: cnet_isa_6516f3f538 (IsA culture_shock disorientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "culver s root is a kind of asterid dicot genus", "pln": ["(: cnet_isa_ca4aabe21a (IsA culver_s_root asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "culverin is a kind of cannon", "pln": ["(: cnet_isa_82814cc7bb (IsA culverin cannon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "culverin is a kind of musket", "pln": ["(: cnet_isa_a58c32c6b7 (IsA culverin musket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "culvert is a kind of drain", "pln": ["(: cnet_isa_621a7258a3 (IsA culvert drain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cumin is a kind of edible seed", "pln": ["(: cnet_isa_1de48c384e (IsA cumin edible_seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cumin is a kind of herb", "pln": ["(: cnet_isa_d4db24c738 (IsA cumin herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuminum is a kind of rosid dicot genus", "pln": ["(: cnet_isa_724212ffc7 (IsA cuminum rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cummerbund is a kind of girdle", "pln": ["(: cnet_isa_1cac753223 (IsA cummerbund girdle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cumulative preferred is a kind of preferred stock", "pln": ["(: cnet_isa_4428593a32 (IsA cumulative_preferred preferred_stock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cumulative vote is a kind of election", "pln": ["(: cnet_isa_be6691de50 (IsA cumulative_vote election) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cumulonimbus is a kind of cloud", "pln": ["(: cnet_isa_b0e9a84854 (IsA cumulonimbus cloud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cumulus is a kind of cloud", "pln": ["(: cnet_isa_01f1e4e6e1 (IsA cumulus cloud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuneate leaf is a kind of simple leaf", "pln": ["(: cnet_isa_155d981eba (IsA cuneate_leaf simple_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuneiform is a kind of script", "pln": ["(: cnet_isa_565c63ad63 (IsA cuneiform script) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cuniculus is a kind of mammal genus", "pln": ["(: cnet_isa_a84eba8f5c (IsA cuniculus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cunner is a kind of wrasse", "pln": ["(: cnet_isa_2bc56b763d (IsA cunner wrasse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cunnilingus is a kind of oral sex", "pln": ["(: cnet_isa_1940713dfa (IsA cunnilingus oral_sex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cunning is a kind of artfulness", "pln": ["(: cnet_isa_0056721850 (IsA cunning artfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cunoniaceae is a kind of rosid dicot family", "pln": ["(: cnet_isa_16c5f5509b (IsA cunoniaceae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cunt is a kind of female genitalia", "pln": ["(: cnet_isa_455dbd9ac8 (IsA cunt female_genitalia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cunt is a kind of unpleasant person", "pln": ["(: cnet_isa_978cf7d2fa (IsA cunt unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuon is a kind of mammal genus", "pln": ["(: cnet_isa_0b122babb7 (IsA cuon mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cup is a kind of container", "pln": ["(: cnet_isa_34eee35dec (IsA cup container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cup is a kind of crockery", "pln": ["(: cnet_isa_bee5cf6b31 (IsA cup crockery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cup is a kind of hole", "pln": ["(: cnet_isa_2c84b29bb5 (IsA cup hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cup is a kind of trophy", "pln": ["(: cnet_isa_9be5c06ffb (IsA cup trophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cup is a kind of punch", "pln": ["(: cnet_isa_3e44465d71 (IsA cup punch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cup is a kind of plant organ", "pln": ["(: cnet_isa_39f7927cd3 (IsA cup plant_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cup is a kind of containerful", "pln": ["(: cnet_isa_c1292c04b9 (IsA cup containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cup is a kind of united state liquid unit", "pln": ["(: cnet_isa_c92c67226c (IsA cup united_state_liquid_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cup is a kind of concave shape", "pln": ["(: cnet_isa_2a4d6cc647 (IsA cup concave_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cup final is a kind of final", "pln": ["(: cnet_isa_b20775ee4b (IsA cup_final final) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cup hook is a kind of hook", "pln": ["(: cnet_isa_bdd23536e6 (IsA cup_hook hook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cup of tea is a kind of activity", "pln": ["(: cnet_isa_6b09a0ba6e (IsA cup_of_tea activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cup tie is a kind of game", "pln": ["(: cnet_isa_f1c2e3d7c4 (IsA cup_tie game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cupbearer is a kind of attendant", "pln": ["(: cnet_isa_ba2c62db83 (IsA cupbearer attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cupboard is a kind of compound word", "pln": ["(: cnet_isa_d452a0b6c5 (IsA cupboard compound_word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cupboard is a kind of storage space", "pln": ["(: cnet_isa_9d3842297b (IsA cupboard storage_space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cupboard love is a kind of kindness", "pln": ["(: cnet_isa_258df45fe4 (IsA cupboard_love kindness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cupcake is a kind of cake", "pln": ["(: cnet_isa_d37fdf2ef4 (IsA cupcake cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cupflower is a kind of herb", "pln": ["(: cnet_isa_393b5da391 (IsA cupflower herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cupid s bow is a kind of bow", "pln": ["(: cnet_isa_78b7d12da8 (IsA cupid_s_bow bow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cupid s bow is a kind of curve", "pln": ["(: cnet_isa_3dc0720f20 (IsA cupid_s_bow curve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cupid is a kind of emblem", "pln": ["(: cnet_isa_f88c4979cc (IsA cupid emblem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cupola is a kind of dome", "pln": ["(: cnet_isa_8c7745a19d (IsA cupola dome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cupola is a kind of furnace", "pln": ["(: cnet_isa_b28b92686f (IsA cupola furnace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuppa is a kind of tea", "pln": ["(: cnet_isa_b18833794b (IsA cuppa tea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cupping is a kind of bloodletting", "pln": ["(: cnet_isa_259762fa59 (IsA cupping bloodletting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cupressaceae is a kind of gymnosperm family", "pln": ["(: cnet_isa_0917d1abb3 (IsA cupressaceae gymnosperm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cupressus is a kind of gymnosperm genus", "pln": ["(: cnet_isa_7062c2446d (IsA cupressus gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuprite is a kind of mineral", "pln": ["(: cnet_isa_8e00dd6643 (IsA cuprite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cupronickel is a kind of copper base alloy", "pln": ["(: cnet_isa_6287a59a9a (IsA cupronickel copper_base_alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cupule is a kind of sucker", "pln": ["(: cnet_isa_aeba7fda4e (IsA cupule sucker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cupule is a kind of cup", "pln": ["(: cnet_isa_6abbe69e32 (IsA cupule cup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cur is a kind of dog", "pln": ["(: cnet_isa_553c95ed47 (IsA cur dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cur is a kind of coward", "pln": ["(: cnet_isa_d05ec456d7 (IsA cur coward) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curability is a kind of characteristic", "pln": ["(: cnet_isa_61ebfe72d7 (IsA curability characteristic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curacao is a kind of orange liqueur", "pln": ["(: cnet_isa_103bb05f9d (IsA curacao orange_liqueur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curacy is a kind of position", "pln": ["(: cnet_isa_65e5824355 (IsA curacy position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curandera is a kind of therapist", "pln": ["(: cnet_isa_45c35a6476 (IsA curandera therapist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curandero is a kind of therapist", "pln": ["(: cnet_isa_1460dff398 (IsA curandero therapist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curassow is a kind of gallinaceous bird", "pln": ["(: cnet_isa_610bb83f79 (IsA curassow gallinaceous_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curate is a kind of clergyman", "pln": ["(: cnet_isa_0da0ec901d (IsA curate clergyman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curator is a kind of custodian", "pln": ["(: cnet_isa_5ec0699820 (IsA curator custodian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curatorship is a kind of position", "pln": ["(: cnet_isa_12d71ea7e0 (IsA curatorship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curb is a kind of bit", "pln": ["(: cnet_isa_55f7f3e2a8 (IsA curb bit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curb is a kind of edge", "pln": ["(: cnet_isa_e93018f3b1 (IsA curb edge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curb market is a kind of stock exchange", "pln": ["(: cnet_isa_936baf037e (IsA curb_market stock_exchange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "curb roof is a kind of roof", "pln": ["(: cnet_isa_9d676e56ba (IsA curb_roof roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curb service is a kind of service", "pln": ["(: cnet_isa_5fe24bd100 (IsA curb_service service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curbside is a kind of pavement", "pln": ["(: cnet_isa_b0c7e91139 (IsA curbside pavement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curbstone is a kind of paving stone", "pln": ["(: cnet_isa_3afdfb6d3b (IsA curbstone paving_stone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curculionidae is a kind of arthropod family", "pln": ["(: cnet_isa_835fdead47 (IsA curculionidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curcuma is a kind of monocot genus", "pln": ["(: cnet_isa_5108a9c940 (IsA curcuma monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curd is a kind of dairy product", "pln": ["(: cnet_isa_b5873c5a2f (IsA curd dairy_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curd is a kind of foodstuff", "pln": ["(: cnet_isa_5e14068de0 (IsA curd foodstuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curdling is a kind of natural process", "pln": ["(: cnet_isa_f4c0d214b0 (IsA curdling natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curettage is a kind of operation", "pln": ["(: cnet_isa_ba55ae83a1 (IsA curettage operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curette is a kind of surgical instrument", "pln": ["(: cnet_isa_5c2a44601b (IsA curette surgical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curfew is a kind of signal", "pln": ["(: cnet_isa_94efe6edd1 (IsA curfew signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curfew is a kind of decree", "pln": ["(: cnet_isa_4c88d33f46 (IsA curfew decree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curfew is a kind of deadline", "pln": ["(: cnet_isa_ae5bcbe0d6 (IsA curfew deadline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curia is a kind of administration", "pln": ["(: cnet_isa_00787a19ef (IsA curia administration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curie is a kind of radioactivity unit", "pln": ["(: cnet_isa_fe694fd704 (IsA curie radioactivity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curie temperature is a kind of temperature", "pln": ["(: cnet_isa_4de4df9470 (IsA curie_temperature temperature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curio is a kind of object", "pln": ["(: cnet_isa_d10e721ce4 (IsA curio object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curiosa is a kind of book", "pln": ["(: cnet_isa_3ad9afee0c (IsA curiosa book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curiosity is a kind of cognitive state", "pln": ["(: cnet_isa_d0b1e9d705 (IsA curiosity cognitive_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curiousness is a kind of curiosity", "pln": ["(: cnet_isa_d59809abc0 (IsA curiousness curiosity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curium is a kind of metallic element", "pln": ["(: cnet_isa_0c333e73d1 (IsA curium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curler is a kind of mechanical device", "pln": ["(: cnet_isa_198e20fa73 (IsA curler mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curlew is a kind of shorebird", "pln": ["(: cnet_isa_775a7de807 (IsA curlew shorebird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curlew sandpiper is a kind of sandpiper", "pln": ["(: cnet_isa_77bea4c154 (IsA curlew_sandpiper sandpiper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curleyleaf pondweed is a kind of pondweed", "pln": ["(: cnet_isa_22b63f926b (IsA curleyleaf_pondweed pondweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curliness is a kind of curvature", "pln": ["(: cnet_isa_b26b601900 (IsA curliness curvature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curling is a kind of game", "pln": ["(: cnet_isa_cc01bc3a07 (IsA curling game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curling iron is a kind of home appliance", "pln": ["(: cnet_isa_a1ab1a806e (IsA curling_iron home_appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curly coated retriever is a kind of retriever", "pln": ["(: cnet_isa_3d41c13de4 (IsA curly_coated_retriever retriever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "curly grass is a kind of fern", "pln": ["(: cnet_isa_c46da191df (IsA curly_grass fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curly head is a kind of clematis", "pln": ["(: cnet_isa_b9d9fceb4b (IsA curly_head clematis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curlycup gumweed is a kind of gumweed", "pln": ["(: cnet_isa_dd7ea7cdf9 (IsA curlycup_gumweed gumweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curmudgeon is a kind of oldster", "pln": ["(: cnet_isa_93c6f96b2e (IsA curmudgeon oldster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "currant is a kind of berry", "pln": ["(: cnet_isa_0aaef9997d (IsA currant berry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "currant is a kind of raisin", "pln": ["(: cnet_isa_8a10af51b8 (IsA currant raisin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "currant is a kind of shrub", "pln": ["(: cnet_isa_af3674e52b (IsA currant shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "currawong is a kind of australian magpie", "pln": ["(: cnet_isa_8f07277a0f (IsA currawong australian_magpie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "currency is a kind of prevalence", "pln": ["(: cnet_isa_0ab42ec37a (IsA currency prevalence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "currency is a kind of medium of exchange", "pln": ["(: cnet_isa_dc2954e35d (IsA currency medium_of_exchange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "currency is a kind of acceptance", "pln": ["(: cnet_isa_ddffd5b6bb (IsA currency acceptance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "current is a kind of flow", "pln": ["(: cnet_isa_20d540129d (IsA current flow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "current is a kind of electrical phenomenon", "pln": ["(: cnet_isa_c88f57f153 (IsA current electrical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "current account is a kind of accounting", "pln": ["(: cnet_isa_e88ed139f1 (IsA current_account accounting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "current intelligence is a kind of intelligence", "pln": ["(: cnet_isa_8f905ed95e (IsA current_intelligence intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "current unit is a kind of electromagnetic unit", "pln": ["(: cnet_isa_f7f59b6109 (IsA current_unit electromagnetic_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "currentness is a kind of presentness", "pln": ["(: cnet_isa_b8f68a14d3 (IsA currentness presentness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curriculum vitae is a kind of summary", "pln": ["(: cnet_isa_b67f00c8f5 (IsA curriculum_vitae summary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "currier is a kind of craftsman", "pln": ["(: cnet_isa_8d718e438f (IsA currier craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curry is a kind of spice", "pln": ["(: cnet_isa_b3eacff6a5 (IsA curry spice) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curry is a kind of dish", "pln": ["(: cnet_isa_e2d37656d3 (IsA curry dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curry powder is a kind of flavorer", "pln": ["(: cnet_isa_b7f64e8324 (IsA curry_powder flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curry sauce is a kind of sauce", "pln": ["(: cnet_isa_e63bdaada9 (IsA curry_sauce sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "currycomb is a kind of comb", "pln": ["(: cnet_isa_5d7a676c95 (IsA currycomb comb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curse is a kind of profanity", "pln": ["(: cnet_isa_784463894d (IsA curse profanity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curse is a kind of affliction", "pln": ["(: cnet_isa_479b8a77e2 (IsA curse affliction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cursed crowfoot is a kind of buttercup", "pln": ["(: cnet_isa_7b3aacd3de (IsA cursed_crowfoot buttercup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cursor is a kind of indicator", "pln": ["(: cnet_isa_b61ed09a26 (IsA cursor indicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cursorius is a kind of bird genus", "pln": ["(: cnet_isa_133da7b3ef (IsA cursorius bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curtailment is a kind of shortness", "pln": ["(: cnet_isa_5587bb070c (IsA curtailment shortness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curtain is a kind of blind", "pln": ["(: cnet_isa_3057d8b506 (IsA curtain blind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curtain is a kind of furnishing", "pln": ["(: cnet_isa_77c4b804af (IsA curtain furnishing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curtain is a kind of barrier", "pln": ["(: cnet_isa_8fa8ee9b3c (IsA curtain barrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curtain lecture is a kind of lecture", "pln": ["(: cnet_isa_820a9d0490 (IsA curtain_lecture lecture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curtain raiser is a kind of first step", "pln": ["(: cnet_isa_774a418159 (IsA curtain_raiser first_step) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curtain raiser is a kind of play", "pln": ["(: cnet_isa_73dfd002d8 (IsA curtain_raiser play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curtain ring is a kind of hoop", "pln": ["(: cnet_isa_17e9494c64 (IsA curtain_ring hoop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curtate cycloid is a kind of cycloid", "pln": ["(: cnet_isa_e189ccd21a (IsA curtate_cycloid cycloid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curtisia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_14cc03b9ae (IsA curtisia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curtsy is a kind of gesture", "pln": ["(: cnet_isa_e9521ef666 (IsA curtsy gesture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curtsy is a kind of reverence", "pln": ["(: cnet_isa_b686930c11 (IsA curtsy reverence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curvaceousness is a kind of pulchritude", "pln": ["(: cnet_isa_835b1ff3b8 (IsA curvaceousness pulchritude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curvature is a kind of derived function", "pln": ["(: cnet_isa_25dc5f5360 (IsA curvature derived_function) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curvature is a kind of shape", "pln": ["(: cnet_isa_4a95276483 (IsA curvature shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curvature is a kind of condition", "pln": ["(: cnet_isa_e271eab875 (IsA curvature condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curve is a kind of pitch", "pln": ["(: cnet_isa_27d1528879 (IsA curve pitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curve is a kind of line", "pln": ["(: cnet_isa_8e87d6f2c7 (IsA curve line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curvet is a kind of dressage", "pln": ["(: cnet_isa_5e44207c94 (IsA curvet dressage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "curvilinear correlation is a kind of correlation", "pln": ["(: cnet_isa_478ec13bac (IsA curvilinear_correlation correlation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "curvilinear regression is a kind of regression", "pln": ["(: cnet_isa_b0443e5d95 (IsA curvilinear_regression regression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuscus is a kind of phalanger", "pln": ["(: cnet_isa_d04738d8da (IsA cuscus phalanger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuscuta is a kind of dicot genus", "pln": ["(: cnet_isa_87fa59daaf (IsA cuscuta dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cush cush is a kind of yam", "pln": ["(: cnet_isa_61c68980d0 (IsA cush_cush yam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cushaw is a kind of winter squash", "pln": ["(: cnet_isa_3af4ebff71 (IsA cushaw winter_squash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cushing s disease is a kind of glandular disease", "pln": ["(: cnet_isa_9b0864221b (IsA cushing_s_disease glandular_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cushing s syndrome is a kind of glandular disease", "pln": ["(: cnet_isa_35e0d87f85 (IsA cushing_s_syndrome glandular_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cushion is a kind of layer", "pln": ["(: cnet_isa_428853e792 (IsA cushion layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cushion is a kind of padding", "pln": ["(: cnet_isa_945aa9f07e (IsA cushion padding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cushion flower is a kind of shrub", "pln": ["(: cnet_isa_ff9d324055 (IsA cushion_flower shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cushitic is a kind of afroasiatic", "pln": ["(: cnet_isa_68539b9204 (IsA cushitic afroasiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cusk is a kind of gadoid", "pln": ["(: cnet_isa_2bfe4b15c6 (IsA cusk gadoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cusk is a kind of saltwater fish", "pln": ["(: cnet_isa_218383332d (IsA cusk saltwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cusk eel is a kind of percoid fish", "pln": ["(: cnet_isa_aa28bfad60 (IsA cusk_eel percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cusp is a kind of point", "pln": ["(: cnet_isa_4d9e544bb7 (IsA cusp point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cusp is a kind of flap", "pln": ["(: cnet_isa_952f667ca1 (IsA cusp flap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuspidation is a kind of embellishment", "pln": ["(: cnet_isa_39e39884cd (IsA cuspidation embellishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cussedness is a kind of contrariness", "pln": ["(: cnet_isa_1fe5800196 (IsA cussedness contrariness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "custard is a kind of dish", "pln": ["(: cnet_isa_0517597ccf (IsA custard dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "custard apple is a kind of edible fruit", "pln": ["(: cnet_isa_1b4f8d449b (IsA custard_apple edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "custard apple is a kind of fruit tree", "pln": ["(: cnet_isa_74caf54f77 (IsA custard_apple fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "custard pie is a kind of property", "pln": ["(: cnet_isa_f2cb9ad66e (IsA custard_pie property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "custodial account is a kind of cash account", "pln": ["(: cnet_isa_8ed6a65035 (IsA custodial_account cash_account) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "custodian is a kind of defender", "pln": ["(: cnet_isa_696a1fae0d (IsA custodian defender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "custodianship is a kind of position", "pln": ["(: cnet_isa_4a65652a75 (IsA custodianship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "custody is a kind of imprisonment", "pln": ["(: cnet_isa_0ecf534145 (IsA custody imprisonment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "custody battle is a kind of litigation", "pln": ["(: cnet_isa_08a2b04dec (IsA custody_battle litigation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "custody case is a kind of legal action", "pln": ["(: cnet_isa_4d3d2411ba (IsA custody_case legal_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "custom is a kind of practice", "pln": ["(: cnet_isa_305710a33b (IsA custom practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "custom is a kind of survival", "pln": ["(: cnet_isa_dce2c1250f (IsA custom survival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "custom is a kind of trade", "pln": ["(: cnet_isa_f82e435a4d (IsA custom trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "custom built is a kind of item", "pln": ["(: cnet_isa_7685de790f (IsA custom_built item) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "customer is a kind of consumer", "pln": ["(: cnet_isa_095967703d (IsA customer consumer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "customer agent is a kind of buyer", "pln": ["(: cnet_isa_515214d6d1 (IsA customer_agent buyer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "customhouse is a kind of government building", "pln": ["(: cnet_isa_196088e203 (IsA customhouse government_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "custom is a kind of duty", "pln": ["(: cnet_isa_a8c30f6f3c (IsA custom duty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "custom union is a kind of union", "pln": ["(: cnet_isa_eace26df58 (IsA custom_union union) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cut is a kind of absence", "pln": ["(: cnet_isa_71d9f91ad3 (IsA cut absence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cut is a kind of decrease", "pln": ["(: cnet_isa_5104cc39f4 (IsA cut decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cut is a kind of division", "pln": ["(: cnet_isa_297da4e8a6 (IsA cut division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cut is a kind of opening", "pln": ["(: cnet_isa_afbb51742e (IsA cut opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cut is a kind of shortening", "pln": ["(: cnet_isa_7f8978b0ce (IsA cut shortening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cut is a kind of canal", "pln": ["(: cnet_isa_3ae2175610 (IsA cut canal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cut is a kind of furrow", "pln": ["(: cnet_isa_27a199a037 (IsA cut furrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cut is a kind of fashion", "pln": ["(: cnet_isa_f6ff915d2d (IsA cut fashion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cut is a kind of excerpt", "pln": ["(: cnet_isa_dd3f0b2f42 (IsA cut excerpt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cut is a kind of transition", "pln": ["(: cnet_isa_51af9e7b42 (IsA cut transition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cut is a kind of meat", "pln": ["(: cnet_isa_061226c38e (IsA cut meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cut is a kind of share", "pln": ["(: cnet_isa_a25876d667 (IsA cut share) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cut is a kind of gradation", "pln": ["(: cnet_isa_51fbec4f9d (IsA cut gradation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cut is a kind of wound", "pln": ["(: cnet_isa_0a2e6bf4d5 (IsA cut wound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cut is a kind of stroke", "pln": ["(: cnet_isa_bd9de0c099 (IsA cut stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cut glass is a kind of glassware", "pln": ["(: cnet_isa_d5c7e08876 (IsA cut_glass glassware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cut in is a kind of break", "pln": ["(: cnet_isa_8626a478bc (IsA cut_in break) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cut of beef is a kind of cut", "pln": ["(: cnet_isa_143278ced6 (IsA cut_of_beef cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cut of lamb is a kind of cut", "pln": ["(: cnet_isa_5cd11a9377 (IsA cut_of_lamb cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cut of mutton is a kind of cut", "pln": ["(: cnet_isa_6517b63e0a (IsA cut_of_mutton cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cut of pork is a kind of cut", "pln": ["(: cnet_isa_463cadf232 (IsA cut_of_pork cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cut of veal is a kind of cut", "pln": ["(: cnet_isa_285e70ea07 (IsA cut_of_veal cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cutaneous anthrax is a kind of anthrax", "pln": ["(: cnet_isa_5bb8800fd7 (IsA cutaneous_anthrax anthrax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "cutlas is a kind of sword", "pln": ["(: cnet_isa_2e07eb402a (IsA cutlas sword) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutaneous leishmaniasis is a kind of leishmaniasis", "pln": ["(: cnet_isa_5641ae611b (IsA cutaneous_leishmaniasis leishmaniasis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutaneous sensation is a kind of touch", "pln": ["(: cnet_isa_94a1768fdf (IsA cutaneous_sensation touch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutaneous vein is a kind of vein", "pln": ["(: cnet_isa_40a4c43931 (IsA cutaneous_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutaway is a kind of coat", "pln": ["(: cnet_isa_5a4de06edf (IsA cutaway coat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutaway is a kind of representation", "pln": ["(: cnet_isa_8b3e6d931b (IsA cutaway representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutback is a kind of decrease", "pln": ["(: cnet_isa_848cfdc434 (IsA cutback decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutch is a kind of tannin", "pln": ["(: cnet_isa_e87d714e5c (IsA cutch tannin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuterebra is a kind of arthropod genus", "pln": ["(: cnet_isa_d06ef3a9a2 (IsA cuterebra arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuterebridae is a kind of arthropod family", "pln": ["(: cnet_isa_54178a5492 (IsA cuterebridae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuticle is a kind of skin", "pln": ["(: cnet_isa_30354f9c5a (IsA cuticle skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuticula is a kind of carapace", "pln": ["(: cnet_isa_cfe831ce47 (IsA cuticula carapace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutin is a kind of plant material", "pln": ["(: cnet_isa_e326db7de8 (IsA cutin plant_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutla is a kind of sword", "pln": ["(: cnet_isa_67a5e5992b (IsA cutla sword) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutlassfish is a kind of percoid fish", "pln": ["(: cnet_isa_7b4e7c66e5 (IsA cutlassfish percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutleaved coneflower is a kind of coneflower", "pln": ["(: cnet_isa_43548311b5 (IsA cutleaved_coneflower coneflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutler is a kind of trader", "pln": ["(: cnet_isa_633d08422c (IsA cutler trader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutlery is a kind of tableware", "pln": ["(: cnet_isa_956d8e7019 (IsA cutlery tableware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutlet is a kind of piece", "pln": ["(: cnet_isa_a398c7ad58 (IsA cutlet piece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutoff is a kind of device", "pln": ["(: cnet_isa_7249ed7264 (IsA cutoff device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cutoff is a kind of limit", "pln": ["(: cnet_isa_d3b17cccbc (IsA cutoff limit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cutout is a kind of part", "pln": ["(: cnet_isa_c3fe876774 (IsA cutout part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutout is a kind of photographic print", "pln": ["(: cnet_isa_233b4a4f9e (IsA cutout photographic_print) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutout is a kind of switch", "pln": ["(: cnet_isa_8a621eb1de (IsA cutout switch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutter is a kind of cutting implement", "pln": ["(: cnet_isa_a1744b0397 (IsA cutter cutting_implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutter is a kind of sailing vessel", "pln": ["(: cnet_isa_c006f02c6f (IsA cutter sailing_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutter is a kind of diner", "pln": ["(: cnet_isa_4fd1a7a8be (IsA cutter diner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutter is a kind of skilled worker", "pln": ["(: cnet_isa_45cce655bc (IsA cutter skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutthroat is a kind of murderer", "pln": ["(: cnet_isa_cf218de221 (IsA cutthroat murderer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutting is a kind of dilution", "pln": ["(: cnet_isa_46a67f599c (IsA cutting dilution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutting is a kind of part", "pln": ["(: cnet_isa_80c915791a (IsA cutting part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutting is a kind of stalk", "pln": ["(: cnet_isa_b24ced5302 (IsA cutting stalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutting angle is a kind of angle", "pln": ["(: cnet_isa_dfc2dac54c (IsA cutting_angle angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutting implement is a kind of tool", "pln": ["(: cnet_isa_5dd27c9a0c (IsA cutting_implement tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutting room is a kind of room", "pln": ["(: cnet_isa_c5d7de37a9 (IsA cutting_room room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cuttlefish is a kind of decapod", "pln": ["(: cnet_isa_4223cb16d1 (IsA cuttlefish decapod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutty stool is a kind of stool", "pln": ["(: cnet_isa_da26e13511 (IsA cutty_stool stool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutwork is a kind of embroidery", "pln": ["(: cnet_isa_29d6840c15 (IsA cutwork embroidery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cutworm is a kind of caterpillar", "pln": ["(: cnet_isa_ea9b6fc070 (IsA cutworm caterpillar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cy pre is a kind of rule", "pln": ["(: cnet_isa_04482653cd (IsA cy_pre rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyamopsis is a kind of rosid dicot genus", "pln": ["(: cnet_isa_e42167f7b7 (IsA cyamopsis rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyamus is a kind of arthropod genus", "pln": ["(: cnet_isa_9cb13103d8 (IsA cyamus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyan is a kind of colour", "pln": ["(: cnet_isa_5daf2de669 (IsA cyan colour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyan is a kind of bluish green", "pln": ["(: cnet_isa_115031c5f2 (IsA cyan bluish_green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyanamide is a kind of acid", "pln": ["(: cnet_isa_c98a3bfbd8 (IsA cyanamide acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cyanic acid is a kind of acid", "pln": ["(: cnet_isa_62a655078e (IsA cyanic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyanide is a kind of salt", "pln": ["(: cnet_isa_8c730d644c (IsA cyanide salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyanide poisoning is a kind of poisoning", "pln": ["(: cnet_isa_15df059ec2 (IsA cyanide_poisoning poisoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyanide process is a kind of industrial process", "pln": ["(: cnet_isa_d14372e2c8 (IsA cyanide_process industrial_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyanine dye is a kind of dye", "pln": ["(: cnet_isa_dc78bda810 (IsA cyanine_dye dye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyano group is a kind of group", "pln": ["(: cnet_isa_c07a85f2e8 (IsA cyano_group group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyanobacteria is a kind of eubacteria", "pln": ["(: cnet_isa_3f1958377e (IsA cyanobacteria eubacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyanocitta is a kind of bird genus", "pln": ["(: cnet_isa_a7098ba053 (IsA cyanocitta bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyanogen is a kind of gas", "pln": ["(: cnet_isa_1ffa6d3cf2 (IsA cyanogen gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyanohydrin is a kind of organic compound", "pln": ["(: cnet_isa_e2a77b49c5 (IsA cyanohydrin organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cyanophyta is a kind of division", "pln": ["(: cnet_isa_f046c08730 (IsA cyanophyta division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyanosis is a kind of symptom", "pln": ["(: cnet_isa_9a2d5ac980 (IsA cyanosis symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyanuric acid is a kind of acid", "pln": ["(: cnet_isa_df3d66acf1 (IsA cyanuric_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyathea is a kind of fern genus", "pln": ["(: cnet_isa_5a63d8bde2 (IsA cyathea fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyatheaceae is a kind of fern family", "pln": ["(: cnet_isa_6bee4b3630 (IsA cyatheaceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyber terrorism is a kind of terrorism", "pln": ["(: cnet_isa_2a8bf066ee (IsA cyber_terrorism terrorism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyberart is a kind of art", "pln": ["(: cnet_isa_a546d3c96a (IsA cyberart art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cybercafe is a kind of cafe", "pln": ["(: cnet_isa_0704dd87ec (IsA cybercafe cafe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cybercrime is a kind of crime", "pln": ["(: cnet_isa_ad26323ef2 (IsA cybercrime crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyberculture is a kind of culture", "pln": ["(: cnet_isa_0ed24b96ca (IsA cyberculture culture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cybernaut is a kind of computer user", "pln": ["(: cnet_isa_716d3496ce (IsA cybernaut computer_user) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cybernetic is a kind of information science", "pln": ["(: cnet_isa_d0ba93031f (IsA cybernetic information_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyberphobia is a kind of simple phobia", "pln": ["(: cnet_isa_8b91842939 (IsA cyberphobia simple_phobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyberpunk is a kind of science fiction", "pln": ["(: cnet_isa_efcfe94265 (IsA cyberpunk science_fiction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyberpunk is a kind of writer", "pln": ["(: cnet_isa_cdb0dcea99 (IsA cyberpunk writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cybersex is a kind of sexual arousal", "pln": ["(: cnet_isa_db5f87fe1a (IsA cybersex sexual_arousal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyborg is a kind of machine", "pln": ["(: cnet_isa_7f4b7757cd (IsA cyborg machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cycad is a kind of gymnosperm", "pln": ["(: cnet_isa_bf44cb2dd2 (IsA cycad gymnosperm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cycadaceae is a kind of gymnosperm family", "pln": ["(: cnet_isa_99b4d6e942 (IsA cycadaceae gymnosperm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cycadale is a kind of plant order", "pln": ["(: cnet_isa_ee70707201 (IsA cycadale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cycadofilicale is a kind of plant order", "pln": ["(: cnet_isa_3d70924b39 (IsA cycadofilicale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cycadopsida is a kind of class", "pln": ["(: cnet_isa_6e711a85da (IsA cycadopsida class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "cycas is a kind of gymnosperm genus", "pln": ["(: cnet_isa_5af7797515 (IsA cycas gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "cycle is a kind of series", "pln": ["(: cnet_isa_d8fcad82b7 (IsA cycle series) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyca is a kind of gymnosperm genus", "pln": ["(: cnet_isa_af5c8fede2 (IsA cyca gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cycladic civilization is a kind of aegean civilization", "pln": ["(: cnet_isa_f67b22cdc1 (IsA cycladic_civilization aegean_civilization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyclamen is a kind of flower", "pln": ["(: cnet_isa_a3318bf0db (IsA cyclamen flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cycle is a kind of periodic event", "pln": ["(: cnet_isa_9870672fef (IsA cycle periodic_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cycle is a kind of repeat", "pln": ["(: cnet_isa_8578123f2c (IsA cycle repeat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cycle is a kind of sery", "pln": ["(: cnet_isa_6a5a8f2142 (IsA cycle sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cycle is a kind of time interval", "pln": ["(: cnet_isa_d92c1e0f36 (IsA cycle time_interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cycle of rebirth is a kind of reincarnation", "pln": ["(: cnet_isa_83f3df996f (IsA cycle_of_rebirth reincarnation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyclic neutropenia is a kind of neutropenia", "pln": ["(: cnet_isa_1bc736c3b0 (IsA cyclic_neutropenia neutropenia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyclic redundancy check is a kind of error correction code", "pln": ["(: cnet_isa_76bf37f860 (IsA cyclic_redundancy_check error_correction_code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyclicity is a kind of regularity", "pln": ["(: cnet_isa_e4be77f8c8 (IsA cyclicity regularity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cyclin is a kind of cyclin", "pln": ["(: cnet_isa_ab75086134 (IsA cyclin cyclin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyclin molecule is a kind of cyclin", "pln": ["(: cnet_isa_583068ad0d (IsA cyclin_molecule cyclin) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyclin molecule is a kind of cyclin molecule", "pln": ["(: cnet_isa_9f108d2b95 (IsA cyclin_molecule cyclin_molecule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyclin molecule is a kind of molecule", "pln": ["(: cnet_isa_eaebdadc65 (IsA cyclin_molecule molecule) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cycling is a kind of sport", "pln": ["(: cnet_isa_d30362b308 (IsA cycling sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cycliophora is a kind of phylum", "pln": ["(: cnet_isa_6f706172aa (IsA cycliophora phylum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyclist is a kind of pedaler", "pln": ["(: cnet_isa_d0a9c5af7d (IsA cyclist pedaler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyclodestructive surgery is a kind of eye operation", "pln": ["(: cnet_isa_21411c408a (IsA cyclodestructive_surgery eye_operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyclohexanol is a kind of alcohol", "pln": ["(: cnet_isa_73c29777a8 (IsA cyclohexanol alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyclohexanol phthalate is a kind of ester", "pln": ["(: cnet_isa_02d4d8e9b9 (IsA cyclohexanol_phthalate ester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cycloid is a kind of roulette", "pln": ["(: cnet_isa_b6faa55807 (IsA cycloid roulette) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cycloloma is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_f59209c3fd (IsA cycloloma caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyclone is a kind of atmosphere", "pln": ["(: cnet_isa_713de0b819 (IsA cyclone atmosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyclone is a kind of windstorm", "pln": ["(: cnet_isa_22f3fbf9d5 (IsA cyclone windstorm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyclooxygenase is a kind of enzyme", "pln": ["(: cnet_isa_e67bcfe92f (IsA cyclooxygenase enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyclooxygenase 1 is a kind of cyclooxygenase", "pln": ["(: cnet_isa_3aa9bf6d80 (IsA cyclooxygenase_1 cyclooxygenase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyclooxygenase 2 is a kind of cyclooxygenase", "pln": ["(: cnet_isa_f5123c3a18 (IsA cyclooxygenase_2 cyclooxygenase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyclopean masonry is a kind of stonework", "pln": ["(: cnet_isa_aa99d3086d (IsA cyclopean_masonry stonework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyclope is a kind of mammal genus", "pln": ["(: cnet_isa_50f08b388d (IsA cyclope mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyclophorus is a kind of fern genus", "pln": ["(: cnet_isa_d885902986 (IsA cyclophorus fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyclopia is a kind of abnormality", "pln": ["(: cnet_isa_560fd34589 (IsA cyclopia abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyclopropane is a kind of inhalation anesthetic", "pln": ["(: cnet_isa_b20aa3cb65 (IsA cyclopropane inhalation_anesthetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyclop is a kind of copepod", "pln": ["(: cnet_isa_80f54ca2dd (IsA cyclop copepod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyclop is a kind of giant", "pln": ["(: cnet_isa_9aafc49712 (IsA cyclop giant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cyclopteridae is a kind of fish family", "pln": ["(: cnet_isa_95a984dcdb (IsA cyclopteridae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyclopterus is a kind of fish genus", "pln": ["(: cnet_isa_c3f629bce0 (IsA cyclopterus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cycloserine is a kind of antibiotic", "pln": ["(: cnet_isa_e0f0be79b9 (IsA cycloserine antibiotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyclosis is a kind of organic phenomenon", "pln": ["(: cnet_isa_4e8838b142 (IsA cyclosis organic_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyclosorus is a kind of fern genus", "pln": ["(: cnet_isa_211648caf4 (IsA cyclosorus fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyclosporeae is a kind of class", "pln": ["(: cnet_isa_e29ab0e1bd (IsA cyclosporeae class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyclostomata is a kind of animal order", "pln": ["(: cnet_isa_bfd6e97d03 (IsA cyclostomata animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyclostome is a kind of jawless vertebrate", "pln": ["(: cnet_isa_b61debd39e (IsA cyclostome jawless_vertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyclostyle is a kind of writing implement", "pln": ["(: cnet_isa_af9e758ea3 (IsA cyclostyle writing_implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cyclothymia is a kind of bipolar disorder", "pln": ["(: cnet_isa_3c6050ee15 (IsA cyclothymia bipolar_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyclotron is a kind of accelerator", "pln": ["(: cnet_isa_4a7ddf5ffd (IsA cyclotron accelerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cycnoche is a kind of monocot genus", "pln": ["(: cnet_isa_d18a8deb93 (IsA cycnoche monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cydippida is a kind of animal order", "pln": ["(: cnet_isa_ec8afda399 (IsA cydippida animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cydonia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_4dd628ccbd (IsA cydonia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cygnet is a kind of swan", "pln": ["(: cnet_isa_60c0deabe4 (IsA cygnet swan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cygnet is a kind of young bird", "pln": ["(: cnet_isa_671a3851dc (IsA cygnet young_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cygnus is a kind of bird genus", "pln": ["(: cnet_isa_c25d680674 (IsA cygnus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cylinder is a kind of chamber", "pln": ["(: cnet_isa_7465506e19 (IsA cylinder chamber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cylinder is a kind of container", "pln": ["(: cnet_isa_ff2ef7ed7d (IsA cylinder container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cylinder is a kind of round shape", "pln": ["(: cnet_isa_b610d0a0ef (IsA cylinder round_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cylinder is a kind of solid", "pln": ["(: cnet_isa_b32e26d736 (IsA cylinder solid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cylinder head is a kind of plate", "pln": ["(: cnet_isa_97eb73ae62 (IsA cylinder_head plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cylinder lock is a kind of lock", "pln": ["(: cnet_isa_47179dea20 (IsA cylinder_lock lock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cylindricality is a kind of roundness", "pln": ["(: cnet_isa_fa16eb54a6 (IsA cylindricality roundness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyma is a kind of molding", "pln": ["(: cnet_isa_2c29cc6d65 (IsA cyma molding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyma recta is a kind of cyma", "pln": ["(: cnet_isa_656e9e3e0b (IsA cyma_recta cyma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyma reversa is a kind of cyma", "pln": ["(: cnet_isa_d60ac3dcac (IsA cyma_reversa cyma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cymatiidae is a kind of mollusk family", "pln": ["(: cnet_isa_9d1b91cfb5 (IsA cymatiidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cymbal is a kind of percussion instrument", "pln": ["(: cnet_isa_af10ec68f9 (IsA cymbal percussion_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cymbalist is a kind of percussionist", "pln": ["(: cnet_isa_a5654f62fb (IsA cymbalist percussionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cymbid is a kind of orchid", "pln": ["(: cnet_isa_be7dd80ad4 (IsA cymbid orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cyme is a kind of inflorescence", "pln": ["(: cnet_isa_5b3f442b86 (IsA cyme inflorescence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cymene is a kind of hydrocarbon", "pln": ["(: cnet_isa_cef81c3af9 (IsA cymene hydrocarbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cymling is a kind of summer squash", "pln": ["(: cnet_isa_010e0c9828 (IsA cymling summer_squash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cymry is a kind of european", "pln": ["(: cnet_isa_1e8c5e892b (IsA cymry european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cymule is a kind of cyme", "pln": ["(: cnet_isa_266d1f510b (IsA cymule cyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cynancum is a kind of liana", "pln": ["(: cnet_isa_70ae2beaa1 (IsA cynancum liana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cynara is a kind of asterid dicot genus", "pln": ["(: cnet_isa_e3da4c5984 (IsA cynara asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cynic is a kind of philosopher", "pln": ["(: cnet_isa_90676578d2 (IsA cynic philosopher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cynic is a kind of unpleasant person", "pln": ["(: cnet_isa_32e613188b (IsA cynic unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cynicism is a kind of pessimism", "pln": ["(: cnet_isa_108511818a (IsA cynicism pessimism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cynipidae is a kind of arthropod family", "pln": ["(: cnet_isa_2ebde6e6fd (IsA cynipidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cynip is a kind of arthropod genus", "pln": ["(: cnet_isa_964c743a75 (IsA cynip arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cynocephalidae is a kind of mammal family", "pln": ["(: cnet_isa_ff3637e805 (IsA cynocephalidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cynocephalus is a kind of mammal genus", "pln": ["(: cnet_isa_bc6ebee34e (IsA cynocephalus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cynocephalus variegatus is a kind of flying lemur", "pln": ["(: cnet_isa_aadd5fa09e (IsA cynocephalus_variegatus flying_lemur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cynodon is a kind of monocot genus", "pln": ["(: cnet_isa_252b9c38c9 (IsA cynodon monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cynodont is a kind of therapsid", "pln": ["(: cnet_isa_d254e607d4 (IsA cynodont therapsid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cynodontia is a kind of division", "pln": ["(: cnet_isa_fda55aa70a (IsA cynodontia division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cynoglossidae is a kind of fish family", "pln": ["(: cnet_isa_96fc3cfc67 (IsA cynoglossidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "cynomys is a kind of mammal genus", "pln": ["(: cnet_isa_5885c1722b (IsA cynomys mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cynoglossum is a kind of plant genus", "pln": ["(: cnet_isa_d17c22e863 (IsA cynoglossum plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cynomy is a kind of mammal genus", "pln": ["(: cnet_isa_e0d3b6e08e (IsA cynomy mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cynophobia is a kind of zoophobia", "pln": ["(: cnet_isa_763a8956ff (IsA cynophobia zoophobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cynopterus is a kind of mammal genus", "pln": ["(: cnet_isa_c134348550 (IsA cynopterus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cynopterus sphinx is a kind of fruit bat", "pln": ["(: cnet_isa_d2f7bb7130 (IsA cynopterus_sphinx fruit_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cynoscion is a kind of fish genus", "pln": ["(: cnet_isa_ce3669f085 (IsA cynoscion fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cynosure is a kind of center", "pln": ["(: cnet_isa_c543167d34 (IsA cynosure center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cynosure is a kind of guidance", "pln": ["(: cnet_isa_8030792747 (IsA cynosure guidance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cynthia moth is a kind of giant silkworm moth", "pln": ["(: cnet_isa_bd87ccc095 (IsA cynthia_moth giant_silkworm_moth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyperaceae is a kind of monocot family", "pln": ["(: cnet_isa_9837e401d3 (IsA cyperaceae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyperus is a kind of cyperaceae", "pln": ["(: cnet_isa_056c5416ee (IsA cyperus cyperaceae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyperus is a kind of monocot genus", "pln": ["(: cnet_isa_b1fa411a23 (IsA cyperus monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyphomandra is a kind of asterid dicot genus", "pln": ["(: cnet_isa_7d11b397bb (IsA cyphomandra asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cypraea is a kind of mollusk genus", "pln": ["(: cnet_isa_ddce16c13d (IsA cypraea mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cypraeidae is a kind of mollusk family", "pln": ["(: cnet_isa_cd10a860b5 (IsA cypraeidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cypress is a kind of conifer", "pln": ["(: cnet_isa_21ad69f2dd (IsA cypress conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cypress is a kind of wood", "pln": ["(: cnet_isa_5ec18c0f5b (IsA cypress wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cypress pine is a kind of cypress", "pln": ["(: cnet_isa_06f23e702a (IsA cypress_pine cypress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cypress sedge is a kind of sedge", "pln": ["(: cnet_isa_ced4bcbcfd (IsA cypress_sedge sedge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cypress spurge is a kind of spurge", "pln": ["(: cnet_isa_3af24971fd (IsA cypress_spurge spurge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cypress vine is a kind of morning glory", "pln": ["(: cnet_isa_9d2edc0063 (IsA cypress_vine morning_glory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyprinid is a kind of cypriniform fish", "pln": ["(: cnet_isa_cbf086953e (IsA cyprinid cypriniform_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyprinidae is a kind of fish family", "pln": ["(: cnet_isa_8bef651aea (IsA cyprinidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cypriniform fish is a kind of soft finned fish", "pln": ["(: cnet_isa_7016fabe2b (IsA cypriniform_fish soft_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cypriniforme is a kind of animal order", "pln": ["(: cnet_isa_0a27729d73 (IsA cypriniforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyprinodont is a kind of cypriniform fish", "pln": ["(: cnet_isa_15e331d4d2 (IsA cyprinodont cypriniform_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyprinodontidae is a kind of fish family", "pln": ["(: cnet_isa_a8cf0d5672 (IsA cyprinodontidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyprinus is a kind of fish genus", "pln": ["(: cnet_isa_6a7f79a39e (IsA cyprinus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cypriot monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_8d15430aa2 (IsA cypriot_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cypriot pound is a kind of cypriot monetary unit", "pln": ["(: cnet_isa_0f6852a1cd (IsA cypriot_pound cypriot_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cypriote is a kind of european", "pln": ["(: cnet_isa_e4e3fd50b0 (IsA cypriote european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cypripedia is a kind of orchid", "pln": ["(: cnet_isa_58800328c0 (IsA cypripedia orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cypripedium is a kind of monocot genus", "pln": ["(: cnet_isa_3ae7a0de09 (IsA cypripedium monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyrilla is a kind of shrub", "pln": ["(: cnet_isa_91fa7f09c2 (IsA cyrilla shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyrilliaceae is a kind of dicot", "pln": ["(: cnet_isa_78c3b8396a (IsA cyrilliaceae dicot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyrillic alphabet is a kind of alphabet", "pln": ["(: cnet_isa_14f16e8c6b (IsA cyrillic_alphabet alphabet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyrillic alphabet is a kind of bicameral script", "pln": ["(: cnet_isa_ff995825ff (IsA cyrillic_alphabet bicameral_script) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyrtomium is a kind of fern genus", "pln": ["(: cnet_isa_b1dbfcb68e (IsA cyrtomium fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cyst is a kind of pathology", "pln": ["(: cnet_isa_5d1b400ed7 (IsA cyst pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cysteine is a kind of amino acid", "pln": ["(: cnet_isa_be01fbcecf (IsA cysteine amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cystic artery is a kind of artery", "pln": ["(: cnet_isa_b886d52145 (IsA cystic_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cystic fibrosis is a kind of fibrosis", "pln": ["(: cnet_isa_7b9d3946c3 (IsA cystic_fibrosis fibrosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cystic fibrosis is a kind of monogenic disorder", "pln": ["(: cnet_isa_2238d50c98 (IsA cystic_fibrosis monogenic_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cystic fibrosis transport regulator is a kind of mutant gene", "pln": ["(: cnet_isa_3d999275db (IsA cystic_fibrosis_transport_regulator mutant_gene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cystic vein is a kind of vein", "pln": ["(: cnet_isa_32b69394c2 (IsA cystic_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cystine is a kind of amino acid", "pln": ["(: cnet_isa_9729df11e0 (IsA cystine amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cystitis is a kind of urinary tract infection", "pln": ["(: cnet_isa_fa9fa4f3cf (IsA cystitis urinary_tract_infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cystocele is a kind of colpocele", "pln": ["(: cnet_isa_988572e056 (IsA cystocele colpocele) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cystoid macular edema is a kind of edema", "pln": ["(: cnet_isa_736f22aac4 (IsA cystoid_macular_edema edema) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cystoid macular edema is a kind of eye disease", "pln": ["(: cnet_isa_7fd4bffc4f (IsA cystoid_macular_edema eye_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cystophora is a kind of mammal genus", "pln": ["(: cnet_isa_ec7575e8ed (IsA cystophora mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cystoplegia is a kind of paralysis", "pln": ["(: cnet_isa_c4155cefa1 (IsA cystoplegia paralysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cystopteris is a kind of fern genus", "pln": ["(: cnet_isa_7a9d8363b3 (IsA cystopteris fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cytisus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_a45c6994cc (IsA cytisus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cytoarchitecture is a kind of structure", "pln": ["(: cnet_isa_811703b13d (IsA cytoarchitecture structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cytochrome is a kind of hemoprotein", "pln": ["(: cnet_isa_839e800adf (IsA cytochrome hemoprotein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cytochrome c is a kind of cytochrome", "pln": ["(: cnet_isa_8d476de957 (IsA cytochrome_c cytochrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cytogenesis is a kind of growth", "pln": ["(: cnet_isa_63b87f8c18 (IsA cytogenesis growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "cytogeneticist is a kind of geneticist", "pln": ["(: cnet_isa_deb98cda73 (IsA cytogeneticist geneticist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cytogenetic is a kind of cytology", "pln": ["(: cnet_isa_0e78ed31ee (IsA cytogenetic cytology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cytogenetic is a kind of genetic", "pln": ["(: cnet_isa_0360d8afb4 (IsA cytogenetic genetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cytokine is a kind of protein", "pln": ["(: cnet_isa_283f79bc32 (IsA cytokine protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cytokinesis is a kind of organic process", "pln": ["(: cnet_isa_2156122806 (IsA cytokinesis organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cytologic specimen is a kind of specimen", "pln": ["(: cnet_isa_2794d2ec2b (IsA cytologic_specimen specimen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cytologist is a kind of biologist", "pln": ["(: cnet_isa_b77065f380 (IsA cytologist biologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cytology is a kind of biology", "pln": ["(: cnet_isa_3cf0c46fc3 (IsA cytology biology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cytology is a kind of microscopic anatomy", "pln": ["(: cnet_isa_e7c7a97688 (IsA cytology microscopic_anatomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cytolysin is a kind of lysin", "pln": ["(: cnet_isa_1817aec4d1 (IsA cytolysin lysin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cytolysis is a kind of lysis", "pln": ["(: cnet_isa_4dade8d1bd (IsA cytolysis lysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cytomegalovirus is a kind of herpe", "pln": ["(: cnet_isa_fbd577a12d (IsA cytomegalovirus herpe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cytopenia is a kind of blood disease", "pln": ["(: cnet_isa_881acca816 (IsA cytopenia blood_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cytophotometer is a kind of light meter", "pln": ["(: cnet_isa_9aeb741e94 (IsA cytophotometer light_meter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cytophotometry is a kind of photometry", "pln": ["(: cnet_isa_6b991b9620 (IsA cytophotometry photometry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cytoplasm is a kind of protoplasm", "pln": ["(: cnet_isa_5670a0bdfe (IsA cytoplasm protoplasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cytoplast is a kind of cytoplasm", "pln": ["(: cnet_isa_f8da940434 (IsA cytoplast cytoplasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cytosine is a kind of pyrimidine", "pln": ["(: cnet_isa_14e3bfb85f (IsA cytosine pyrimidine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cytoskeleton is a kind of structure", "pln": ["(: cnet_isa_de2af031c6 (IsA cytoskeleton structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cytosol is a kind of cytoplasm", "pln": ["(: cnet_isa_3170a2ce3b (IsA cytosol cytoplasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cytostome is a kind of mouth", "pln": ["(: cnet_isa_be5a6d1c6e (IsA cytostome mouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cytotoxic drug is a kind of medicine", "pln": ["(: cnet_isa_8346fe40b2 (IsA cytotoxic_drug medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cytotoxicity is a kind of toxicity", "pln": ["(: cnet_isa_ef299aef93 (IsA cytotoxicity toxicity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "cytotoxin is a kind of toxin", "pln": ["(: cnet_isa_5d11c72557 (IsA cytotoxin toxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "czar is a kind of sovereign", "pln": ["(: cnet_isa_b6b5c6c5da (IsA czar sovereign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "czar is a kind of tyrant", "pln": ["(: cnet_isa_21c64cdf54 (IsA czar tyrant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "czarina is a kind of female aristocrat", "pln": ["(: cnet_isa_1845abb46d (IsA czarina female_aristocrat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "czech is a kind of slavic", "pln": ["(: cnet_isa_2f3e0eb8cd (IsA czech slavic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "czech is a kind of european", "pln": ["(: cnet_isa_f89922820a (IsA czech european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "czech monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_4789fbae6a (IsA czech_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "czechoslovak is a kind of european", "pln": ["(: cnet_isa_bc2004c1ec (IsA czechoslovak european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "d a is a kind of doctor s degree", "pln": ["(: cnet_isa_a9a31a5a47 (IsA d_a doctor_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "d is a kind of letter", "pln": ["(: cnet_isa_dbff244b0a (IsA d letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "da wah is a kind of mission", "pln": ["(: cnet_isa_ab77a76b23 (IsA da_wah mission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dab is a kind of small indefinite quantity", "pln": ["(: cnet_isa_1cd913b240 (IsA dab small_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daba is a kind of biu mandara", "pln": ["(: cnet_isa_6c3ad97aaf (IsA daba biu_mandara) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dabbler is a kind of amateur", "pln": ["(: cnet_isa_461043e13e (IsA dabbler amateur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dabbling duck is a kind of duck", "pln": ["(: cnet_isa_cd7d12c890 (IsA dabbling_duck duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dabchick is a kind of grebe", "pln": ["(: cnet_isa_58eb7e0bd8 (IsA dabchick grebe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "daboecia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_d961342e95 (IsA daboecia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dace is a kind of cyprinid", "pln": ["(: cnet_isa_6436f203d6 (IsA dace cyprinid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dacelo is a kind of bird genus", "pln": ["(: cnet_isa_978ab8a08b (IsA dacelo bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dacha is a kind of country house", "pln": ["(: cnet_isa_65661c1b4c (IsA dacha country_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dachshund is a kind of hunting dog", "pln": ["(: cnet_isa_c3a6ffbd7b (IsA dachshund hunting_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dacite is a kind of volcanic rock", "pln": ["(: cnet_isa_2087559708 (IsA dacite volcanic_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dacoit is a kind of thief", "pln": ["(: cnet_isa_29687bf060 (IsA dacoit thief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dacoity is a kind of robbery", "pln": ["(: cnet_isa_aca10fec9b (IsA dacoity robbery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dacrycarpus is a kind of gymnosperm genus", "pln": ["(: cnet_isa_94f621f973 (IsA dacrycarpus gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dacrydium is a kind of gymnosperm genus", "pln": ["(: cnet_isa_697b44d9c5 (IsA dacrydium gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dacrymyce is a kind of fungus genus", "pln": ["(: cnet_isa_401dc6ddc9 (IsA dacrymyce fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dacrymycetaceae is a kind of fungus family", "pln": ["(: cnet_isa_983fa5a132 (IsA dacrymycetaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dacryocystitis is a kind of inflammation", "pln": ["(: cnet_isa_8ab4025762 (IsA dacryocystitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dacryon is a kind of craniometric point", "pln": ["(: cnet_isa_e6f7bf174c (IsA dacryon craniometric_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dactyl is a kind of metrical foot", "pln": ["(: cnet_isa_3f9e2f8948 (IsA dactyl metrical_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dactylis is a kind of monocot genus", "pln": ["(: cnet_isa_6cbc303b99 (IsA dactylis monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dactyloctenium is a kind of monocot genus", "pln": ["(: cnet_isa_0a094cc555 (IsA dactyloctenium monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dactylomegaly is a kind of hypertrophy", "pln": ["(: cnet_isa_f377ebf16b (IsA dactylomegaly hypertrophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dactylopiidae is a kind of arthropod family", "pln": ["(: cnet_isa_9894fd305c (IsA dactylopiidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dactylopius is a kind of arthropod genus", "pln": ["(: cnet_isa_ee9078d55a (IsA dactylopius arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dactylopteridae is a kind of fish family", "pln": ["(: cnet_isa_7320bc1384 (IsA dactylopteridae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dactylopterus is a kind of fish genus", "pln": ["(: cnet_isa_3f6d61f24d (IsA dactylopterus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dactylorhiza is a kind of monocot genus", "pln": ["(: cnet_isa_3d0477f520 (IsA dactylorhiza monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dactyloscopidae is a kind of fish family", "pln": ["(: cnet_isa_9c748c0f8b (IsA dactyloscopidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dad is a kind of father", "pln": ["(: cnet_isa_fdf0ffa1f6 (IsA dad father) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dada is a kind of artistic movement", "pln": ["(: cnet_isa_eeb6ae7722 (IsA dada artistic_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dado is a kind of groove", "pln": ["(: cnet_isa_a283aa1f40 (IsA dado groove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dado is a kind of section", "pln": ["(: cnet_isa_562cb18cfa (IsA dado section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dado plane is a kind of openside plane", "pln": ["(: cnet_isa_0fe58c391e (IsA dado_plane openside_plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daemon is a kind of deity", "pln": ["(: cnet_isa_8159d0792b (IsA daemon deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daffodil is a kind of narcissus", "pln": ["(: cnet_isa_f40be47bb9 (IsA daffodil narcissus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daffodil garlic is a kind of alliaceous plant", "pln": ["(: cnet_isa_8b84bb25bf (IsA daffodil_garlic alliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daffodil is a kind of flower", "pln": ["(: cnet_isa_bbcb92a0b8 (IsA daffodil flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dagame is a kind of tree", "pln": ["(: cnet_isa_ad612e59c2 (IsA dagame tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dagestani is a kind of ethnic minority", "pln": ["(: cnet_isa_f5beafd603 (IsA dagestani ethnic_minority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dagga is a kind of herb", "pln": ["(: cnet_isa_008df3ffe1 (IsA dagga herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dagger is a kind of knife", "pln": ["(: cnet_isa_3270623831 (IsA dagger knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dagger is a kind of character", "pln": ["(: cnet_isa_cf8d16fedf (IsA dagger character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "daggerboard is a kind of centerboard", "pln": ["(: cnet_isa_d72ceac669 (IsA daggerboard centerboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daguerreotype is a kind of picture", "pln": ["(: cnet_isa_3a0c8530b6 (IsA daguerreotype picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dahlia is a kind of flower", "pln": ["(: cnet_isa_590d959896 (IsA dahlia flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "daikon is a kind of radish plant", "pln": ["(: cnet_isa_962d02e304 (IsA daikon radish_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dail eireann is a kind of house", "pln": ["(: cnet_isa_090be8a1a5 (IsA dail_eireann house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daily is a kind of newspaper", "pln": ["(: cnet_isa_f735076f40 (IsA daily newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daily double is a kind of bet", "pln": ["(: cnet_isa_7fb09a562b (IsA daily_double bet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daily variation is a kind of variation", "pln": ["(: cnet_isa_04ee47bb2a (IsA daily_variation variation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "daintiness is a kind of elegance", "pln": ["(: cnet_isa_2404d1e8f4 (IsA daintiness elegance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dainty is a kind of nutriment", "pln": ["(: cnet_isa_89632fe8fc (IsA dainty nutriment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daiquiri is a kind of cocktail", "pln": ["(: cnet_isa_c83fa0a442 (IsA daiquiri cocktail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dairy is a kind of farm", "pln": ["(: cnet_isa_7c4d8cf39a (IsA dairy farm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dairy cattle is a kind of cattle", "pln": ["(: cnet_isa_81ca625a67 (IsA dairy_cattle cattle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dairy product is a kind of foodstuff", "pln": ["(: cnet_isa_ea4d6d5af0 (IsA dairy_product foodstuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dairying is a kind of farming", "pln": ["(: cnet_isa_cd5072e2c1 (IsA dairying farming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dairymaid is a kind of farmhand", "pln": ["(: cnet_isa_aede20c455 (IsA dairymaid farmhand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dairyman is a kind of farmer", "pln": ["(: cnet_isa_c7058d0899 (IsA dairyman farmer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dairyman is a kind of farmhand", "pln": ["(: cnet_isa_efe9ce5c87 (IsA dairyman farmhand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dais is a kind of platform", "pln": ["(: cnet_isa_5830b76cc7 (IsA dais platform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "daisy is a kind of flower", "pln": ["(: cnet_isa_de31564f27 (IsA daisy flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "daisy chain is a kind of flower chain", "pln": ["(: cnet_isa_3c85c2dc07 (IsA daisy_chain flower_chain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daisy chain is a kind of chain", "pln": ["(: cnet_isa_a4f10a6650 (IsA daisy_chain chain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daisy cutter is a kind of baseball", "pln": ["(: cnet_isa_b727dc50a3 (IsA daisy_cutter baseball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daisy fleabane is a kind of fleabane", "pln": ["(: cnet_isa_8e14680813 (IsA daisy_fleabane fleabane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daisy print wheel is a kind of wheel", "pln": ["(: cnet_isa_ba80f77dd9 (IsA daisy_print_wheel wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daisybush is a kind of shrub", "pln": ["(: cnet_isa_00a62d7012 (IsA daisybush shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daisyleaf grape fern is a kind of grape fern", "pln": ["(: cnet_isa_c6c86b02d0 (IsA daisyleaf_grape_fern grape_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daisywheel printer is a kind of character printer", "pln": ["(: cnet_isa_44d956657a (IsA daisywheel_printer character_printer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dakota is a kind of siouan", "pln": ["(: cnet_isa_a82171bf4e (IsA dakota siouan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dalasi is a kind of gambian monetary unit", "pln": ["(: cnet_isa_95ba35e9cd (IsA dalasi gambian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dalbergia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_d5ff119571 (IsA dalbergia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dale is a kind of valley", "pln": ["(: cnet_isa_ffb7b8f98f (IsA dale valley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dalea is a kind of rosid dicot genus", "pln": ["(: cnet_isa_f416a0cc32 (IsA dalea rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dalesman is a kind of resident", "pln": ["(: cnet_isa_9ff490652b (IsA dalesman resident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daleth is a kind of letter", "pln": ["(: cnet_isa_f26ec65852 (IsA daleth letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dall sheep is a kind of wild sheep", "pln": ["(: cnet_isa_de95fee39b (IsA dall_sheep wild_sheep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dalla is a kind of city", "pln": ["(: cnet_isa_3cd9c3df09 (IsA dalla city) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dalla is a kind of city in texa", "pln": ["(: cnet_isa_91965d88e2 (IsA dalla city_in_texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dalliance is a kind of delay", "pln": ["(: cnet_isa_d400942d71 (IsA dalliance delay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dallier is a kind of idler", "pln": ["(: cnet_isa_0c1ebcf39e (IsA dallier idler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dallisgrass is a kind of grass", "pln": ["(: cnet_isa_6ba4997577 (IsA dallisgrass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dalmatian is a kind of dog", "pln": ["(: cnet_isa_d72e22a544 (IsA dalmatian dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dalmatian is a kind of european", "pln": ["(: cnet_isa_dac35bbe02 (IsA dalmatian european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dalmatian iris is a kind of bearded iris", "pln": ["(: cnet_isa_451b3b42ba (IsA dalmatian_iris bearded_iris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dalmatian laburnum is a kind of shrub", "pln": ["(: cnet_isa_6e1e14d3dc (IsA dalmatian_laburnum shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dalton s law is a kind of law", "pln": ["(: cnet_isa_58000b768b (IsA dalton_s_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dam is a kind of female", "pln": ["(: cnet_isa_b834672d3c (IsA dam female) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dam is a kind of barrier", "pln": ["(: cnet_isa_446241f463 (IsA dam barrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dama is a kind of mammal genus", "pln": ["(: cnet_isa_34753b9777 (IsA dama mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "damage is a kind of change of integrity", "pln": ["(: cnet_isa_8bb3b67090 (IsA damage change_of_integrity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "damage is a kind of change", "pln": ["(: cnet_isa_bf2e593998 (IsA damage change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "damage is a kind of casualty", "pln": ["(: cnet_isa_16ab193ac1 (IsA damage casualty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "damage control is a kind of control", "pln": ["(: cnet_isa_c00faf1806 (IsA damage_control control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "damage is a kind of compensation", "pln": ["(: cnet_isa_7d467fd467 (IsA damage compensation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "damaliscus is a kind of mammal genus", "pln": ["(: cnet_isa_81963b17b6 (IsA damaliscus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "damaraland mole rat is a kind of fossorial mammal", "pln": ["(: cnet_isa_92f6831142 (IsA damaraland_mole_rat fossorial_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "damascene is a kind of design", "pln": ["(: cnet_isa_54e3a411ba (IsA damascene design) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "damascene is a kind of syrian", "pln": ["(: cnet_isa_6b5772d690 (IsA damascene syrian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "damascus steel is a kind of steel", "pln": ["(: cnet_isa_122863a6d1 (IsA damascus_steel steel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "damask is a kind of fabric", "pln": ["(: cnet_isa_01b1865928 (IsA damask fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "damask is a kind of table linen", "pln": ["(: cnet_isa_97e77c332a (IsA damask table_linen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "damask rose is a kind of rose", "pln": ["(: cnet_isa_334a5cadb8 (IsA damask_rose rose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "damask violet is a kind of flower", "pln": ["(: cnet_isa_d065f6589a (IsA damask_violet flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dame is a kind of girl", "pln": ["(: cnet_isa_da226b6b06 (IsA dame girl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dame is a kind of woman", "pln": ["(: cnet_isa_917d7a0f8a (IsA dame woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dammar is a kind of natural resin", "pln": ["(: cnet_isa_3b6b80f2e9 (IsA dammar natural_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "damn is a kind of worthlessness", "pln": ["(: cnet_isa_49fee86aef (IsA damn worthlessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "damnation is a kind of denunciation", "pln": ["(: cnet_isa_2a29dcd7d4 (IsA damnation denunciation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "damnation is a kind of state", "pln": ["(: cnet_isa_94df1d8971 (IsA damnation state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "damned is a kind of people", "pln": ["(: cnet_isa_84a3992dfc (IsA damned people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "damourite is a kind of muscovite", "pln": ["(: cnet_isa_05b56b67e0 (IsA damourite muscovite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "damp is a kind of wetness", "pln": ["(: cnet_isa_48e9747f9b (IsA damp wetness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "damp proof course is a kind of course", "pln": ["(: cnet_isa_b35f7fd68e (IsA damp_proof_course course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dampener is a kind of device", "pln": ["(: cnet_isa_23a1924480 (IsA dampener device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "damper is a kind of restraint", "pln": ["(: cnet_isa_5f7e71b033 (IsA damper restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "damper is a kind of device", "pln": ["(: cnet_isa_412e531c2f (IsA damper device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "damper is a kind of plate", "pln": ["(: cnet_isa_655c8003fd (IsA damper plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "damper block is a kind of damper", "pln": ["(: cnet_isa_233e3d7bb3 (IsA damper_block damper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "damping off is a kind of plant disease", "pln": ["(: cnet_isa_553e137717 (IsA damping_off plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "damping off fungus is a kind of pythium", "pln": ["(: cnet_isa_64635fcd51 (IsA damping_off_fungus pythium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "damsel is a kind of maid", "pln": ["(: cnet_isa_0067f58f98 (IsA damsel maid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "damselfish is a kind of percoid fish", "pln": ["(: cnet_isa_081a5c7971 (IsA damselfish percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "damselfly is a kind of odonate", "pln": ["(: cnet_isa_5a3f8be227 (IsA damselfly odonate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "damson is a kind of plum", "pln": ["(: cnet_isa_211d71e3e5 (IsA damson plum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "damson plum is a kind of bullace", "pln": ["(: cnet_isa_20dbce36cf (IsA damson_plum bullace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "danaea is a kind of fern genus", "pln": ["(: cnet_isa_afce196461 (IsA danaea fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "danaid is a kind of butterfly", "pln": ["(: cnet_isa_468a73b7ae (IsA danaid butterfly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "danaidae is a kind of arthropod family", "pln": ["(: cnet_isa_fdbdf1fb47 (IsA danaidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "danaus is a kind of arthropod genus", "pln": ["(: cnet_isa_3573f438b0 (IsA danaus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dance is a kind of art", "pln": ["(: cnet_isa_4cd705bd53 (IsA dance art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dance is a kind of party", "pln": ["(: cnet_isa_a2f9f95ea6 (IsA dance party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dance band is a kind of musical organization", "pln": ["(: cnet_isa_4e7942c036 (IsA dance_band musical_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dance floor is a kind of floor", "pln": ["(: cnet_isa_d84abb2b6b (IsA dance_floor floor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dance lesson is a kind of lesson", "pln": ["(: cnet_isa_c03f1a74fa (IsA dance_lesson lesson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dance music is a kind of music", "pln": ["(: cnet_isa_c5c5cc7e6c (IsA dance_music music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dance school is a kind of school", "pln": ["(: cnet_isa_ad2ad54ebe (IsA dance_school school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dance step is a kind of locomotion", "pln": ["(: cnet_isa_fb3ac2bf93 (IsA dance_step locomotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dancer is a kind of performer", "pln": ["(: cnet_isa_477f423d62 (IsA dancer performer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dancer is a kind of person", "pln": ["(: cnet_isa_994e386e6b (IsA dancer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "danceroom music is a kind of popular music", "pln": ["(: cnet_isa_b79fa746cd (IsA danceroom_music popular_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dancing is a kind of great way to relieve tension", "pln": ["(: cnet_isa_ab04c3982b (IsA dancing great_way_to_relieve_tension) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dancing is a kind of diversion", "pln": ["(: cnet_isa_a2a2488221 (IsA dancing diversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dancing is a kind of performing art", "pln": ["(: cnet_isa_34d0734d15 (IsA dancing performing_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dancing master is a kind of dancer", "pln": ["(: cnet_isa_e3c2e3999d (IsA dancing_master dancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dancing master is a kind of teacher", "pln": ["(: cnet_isa_f7c3da1306 (IsA dancing_master teacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dancing partner is a kind of collaborator", "pln": ["(: cnet_isa_a5b8780cc5 (IsA dancing_partner collaborator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dancing partner is a kind of dancer", "pln": ["(: cnet_isa_e209f4eb8b (IsA dancing_partner dancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dancing school is a kind of school", "pln": ["(: cnet_isa_de8fb9c77f (IsA dancing_school school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dandelion is a kind of flower", "pln": ["(: cnet_isa_e7f5980533 (IsA dandelion flower) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dandelion is a kind of herb", "pln": ["(: cnet_isa_b700105a0c (IsA dandelion herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dandelion green is a kind of green", "pln": ["(: cnet_isa_f07ab63747 (IsA dandelion_green green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dandelion green is a kind of leaf", "pln": ["(: cnet_isa_371cec1741 (IsA dandelion_green leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dander is a kind of anger", "pln": ["(: cnet_isa_4cb2c85c9d (IsA dander anger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dander is a kind of scale", "pln": ["(: cnet_isa_f807108e69 (IsA dander scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dandie dinmont is a kind of terrier", "pln": ["(: cnet_isa_7fb2a6b1c8 (IsA dandie_dinmont terrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dandruff is a kind of scale", "pln": ["(: cnet_isa_b7094cb16e (IsA dandruff scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dandruff is a kind of pityriasis", "pln": ["(: cnet_isa_289f2e904f (IsA dandruff pityriasis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dandy is a kind of man", "pln": ["(: cnet_isa_e53adb1048 (IsA dandy man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dane is a kind of european", "pln": ["(: cnet_isa_75d15114af (IsA dane european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "danger is a kind of area", "pln": ["(: cnet_isa_f2f7a5bf6e (IsA danger area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "danger is a kind of causal agent", "pln": ["(: cnet_isa_fcb9ec4bb0 (IsA danger causal_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "danger is a kind of condition", "pln": ["(: cnet_isa_d879e2bc2a (IsA danger condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "danger line is a kind of line", "pln": ["(: cnet_isa_740870c9b1 (IsA danger_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "danger zone is a kind of zone", "pln": ["(: cnet_isa_8b943847ff (IsA danger_zone zone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dangerousness is a kind of characteristic", "pln": ["(: cnet_isa_a373b1ad86 (IsA dangerousness characteristic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dangla is a kind of east chadic", "pln": ["(: cnet_isa_fc16629e5e (IsA dangla east_chadic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dangleberry is a kind of huckleberry", "pln": ["(: cnet_isa_47bf9565c3 (IsA dangleberry huckleberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dangling modifier is a kind of modifier", "pln": ["(: cnet_isa_14de3a5d97 (IsA dangling_modifier modifier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dangling participle is a kind of dangling modifier", "pln": ["(: cnet_isa_df518f2632 (IsA dangling_participle dangling_modifier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daniel is a kind of judge", "pln": ["(: cnet_isa_5fd2d3b7cd (IsA daniel judge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "danish is a kind of scandinavian", "pln": ["(: cnet_isa_d1d2248b9d (IsA danish scandinavian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "danish is a kind of sweet roll", "pln": ["(: cnet_isa_3be241dff9 (IsA danish sweet_roll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "danish blue is a kind of bleu", "pln": ["(: cnet_isa_4da2741720 (IsA danish_blue bleu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "danish krone is a kind of danish monetary unit", "pln": ["(: cnet_isa_bc7915f1b9 (IsA danish_krone danish_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "danish monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_a290e7fc0f (IsA danish_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dankness is a kind of damp", "pln": ["(: cnet_isa_b38d66a0b3 (IsA dankness damp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "danse macabre is a kind of ritual dancing", "pln": ["(: cnet_isa_62b2f21231 (IsA danse_macabre ritual_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "danseur is a kind of ballet dancer", "pln": ["(: cnet_isa_df8fd3475c (IsA danseur ballet_dancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daphne is a kind of nymph", "pln": ["(: cnet_isa_eb8029c0e9 (IsA daphne nymph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daphne is a kind of shrub", "pln": ["(: cnet_isa_ca4bbc1858 (IsA daphne shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daphnia is a kind of branchiopod crustacean", "pln": ["(: cnet_isa_9191b404d7 (IsA daphnia branchiopod_crustacean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dapple gray is a kind of gray", "pln": ["(: cnet_isa_61e63ba962 (IsA dapple_gray gray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dapsone is a kind of antibacterial", "pln": ["(: cnet_isa_0801fc1dba (IsA dapsone antibacterial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dar al harb is a kind of geographical area", "pln": ["(: cnet_isa_8cb043ea3f (IsA dar_al_harb geographical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dar al islam is a kind of geographical area", "pln": ["(: cnet_isa_4b931a65c5 (IsA dar_al_islam geographical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daraf is a kind of elastance unit", "pln": ["(: cnet_isa_0553d42353 (IsA daraf elastance_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dard is a kind of indic", "pln": ["(: cnet_isa_1919990c5c (IsA dard indic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dardanian is a kind of asiatic", "pln": ["(: cnet_isa_4bcd721354 (IsA dardanian asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dare is a kind of challenge", "pln": ["(: cnet_isa_815e306e12 (IsA dare challenge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daredevil is a kind of adventurer", "pln": ["(: cnet_isa_27fb4f5773 (IsA daredevil adventurer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daredevilry is a kind of boldness", "pln": ["(: cnet_isa_ee4133bda2 (IsA daredevilry boldness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dari is a kind of iranian", "pln": ["(: cnet_isa_6449510d8d (IsA dari iranian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "darjeeling is a kind of black tea", "pln": ["(: cnet_isa_2b96772251 (IsA darjeeling black_tea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dark is a kind of unenlightenment", "pln": ["(: cnet_isa_c90d374992 (IsA dark unenlightenment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dark is a kind of illumination", "pln": ["(: cnet_isa_ab4bde3c1c (IsA dark illumination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dark adaptation is a kind of adaptation", "pln": ["(: cnet_isa_b8d4ba2f41 (IsA dark_adaptation adaptation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dark blue is a kind of blue", "pln": ["(: cnet_isa_13e99dacdc (IsA dark_blue blue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dark bread is a kind of bread", "pln": ["(: cnet_isa_228db03117 (IsA dark_bread bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dark comedy is a kind of comedy", "pln": ["(: cnet_isa_d636b02f82 (IsA dark_comedy comedy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dark eyed junco is a kind of junco", "pln": ["(: cnet_isa_f121de0784 (IsA dark_eyed_junco junco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dark green spreader yew is a kind of plant", "pln": ["(: cnet_isa_1784b2b349 (IsA dark_green_spreader_yew plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dark ground illumination is a kind of microscopy", "pln": ["(: cnet_isa_88a945b1e4 (IsA dark_ground_illumination microscopy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dark horse is a kind of racehorse", "pln": ["(: cnet_isa_909c9afce3 (IsA dark_horse racehorse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dark horse is a kind of campaigner", "pln": ["(: cnet_isa_00c971ef5b (IsA dark_horse campaigner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dark lantern is a kind of lantern", "pln": ["(: cnet_isa_ce2d733e7e (IsA dark_lantern lantern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dark matter is a kind of substance", "pln": ["(: cnet_isa_213f041931 (IsA dark_matter substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dark meat is a kind of meat", "pln": ["(: cnet_isa_d4c3c89f17 (IsA dark_meat meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dark red is a kind of red", "pln": ["(: cnet_isa_4df4d1d1e4 (IsA dark_red red) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "darkling beetle is a kind of weevil", "pln": ["(: cnet_isa_fa7675f8a3 (IsA darkling_beetle weevil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "darkness is a kind of complexion", "pln": ["(: cnet_isa_004c390fb9 (IsA darkness complexion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "darkness is a kind of value", "pln": ["(: cnet_isa_79598d81dd (IsA darkness value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "darkness is a kind of scene", "pln": ["(: cnet_isa_227c7cbe68 (IsA darkness scene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "darkroom is a kind of room", "pln": ["(: cnet_isa_39a9dd581e (IsA darkroom room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "darling is a kind of lover", "pln": ["(: cnet_isa_672ecae884 (IsA darling lover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "darling pea is a kind of subshrub", "pln": ["(: cnet_isa_c084338eec (IsA darling_pea subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "darlingtonia is a kind of dicot genus", "pln": ["(: cnet_isa_0cbe5408de (IsA darlingtonia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "darmera is a kind of rosid dicot genus", "pln": ["(: cnet_isa_26fdb02e0d (IsA darmera rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "darmstadtium is a kind of chemical element", "pln": ["(: cnet_isa_a62d0ad8db (IsA darmstadtium chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "darnel is a kind of rye grass", "pln": ["(: cnet_isa_d0f003bc66 (IsA darnel rye_grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "darner is a kind of mender", "pln": ["(: cnet_isa_a694570ea0 (IsA darner mender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "darning is a kind of repair", "pln": ["(: cnet_isa_dd5b01ea6f (IsA darning repair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "darning needle is a kind of sewing needle", "pln": ["(: cnet_isa_3e229e0e01 (IsA darning_needle sewing_needle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "darsana is a kind of hinduism", "pln": ["(: cnet_isa_cddba39a02 (IsA darsana hinduism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dart is a kind of object", "pln": ["(: cnet_isa_6f93d83b55 (IsA dart object) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dart is a kind of projectile", "pln": ["(: cnet_isa_d6fbd4330b (IsA dart projectile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dart is a kind of tuck", "pln": ["(: cnet_isa_ac238fe6a1 (IsA dart tuck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dart player is a kind of player", "pln": ["(: cnet_isa_05c9fba929 (IsA dart_player player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dartboard is a kind of board", "pln": ["(: cnet_isa_8619f4e286 (IsA dartboard board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "darter is a kind of animal", "pln": ["(: cnet_isa_546a095bf9 (IsA darter animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dart is a kind of board game", "pln": ["(: cnet_isa_c5cb04210a (IsA dart board_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "darwin tulip is a kind of tulip", "pln": ["(: cnet_isa_19d5fe1242 (IsA darwin_tulip tulip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "darwinian is a kind of advocate", "pln": ["(: cnet_isa_6528715bc2 (IsA darwinian advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "darwinism is a kind of theory of evolution", "pln": ["(: cnet_isa_25171c9581 (IsA darwinism theory_of_evolution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dash is a kind of haste", "pln": ["(: cnet_isa_54f8993bb0 (IsA dash haste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dash is a kind of run", "pln": ["(: cnet_isa_623d9c01b8 (IsA dash run) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dash is a kind of elegance", "pln": ["(: cnet_isa_9511f134bf (IsA dash elegance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dash is a kind of telegraphic signal", "pln": ["(: cnet_isa_de65fe0c55 (IsA dash telegraphic_signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dash is a kind of track event", "pln": ["(: cnet_isa_b4aaf26dcd (IsA dash track_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dash pot is a kind of damper", "pln": ["(: cnet_isa_342e555e3b (IsA dash_pot damper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dashboard is a kind of control panel", "pln": ["(: cnet_isa_819bbc5abe (IsA dashboard control_panel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dashiki is a kind of shirt", "pln": ["(: cnet_isa_40cc6c8eef (IsA dashiki shirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dastard is a kind of coward", "pln": ["(: cnet_isa_fd8eb9bfb2 (IsA dastard coward) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dastardliness is a kind of cowardice", "pln": ["(: cnet_isa_ad5e9f241e (IsA dastardliness cowardice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dasyatidae is a kind of fish family", "pln": ["(: cnet_isa_20446d03dc (IsA dasyatidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dasyatis is a kind of fish genus", "pln": ["(: cnet_isa_8cd4f4ea80 (IsA dasyatis fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dasymeter is a kind of densimeter", "pln": ["(: cnet_isa_662f5885b7 (IsA dasymeter densimeter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dasypodidae is a kind of mammal family", "pln": ["(: cnet_isa_fbcfd9defd (IsA dasypodidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dasyprocta is a kind of mammal genus", "pln": ["(: cnet_isa_01c07a2353 (IsA dasyprocta mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dasyproctidae is a kind of mammal family", "pln": ["(: cnet_isa_cae807aaed (IsA dasyproctidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dasypus is a kind of mammal genus", "pln": ["(: cnet_isa_7905bf665b (IsA dasypus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dasyure is a kind of dasyurid marsupial", "pln": ["(: cnet_isa_f368941030 (IsA dasyure dasyurid_marsupial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dasyurid marsupial is a kind of marsupial", "pln": ["(: cnet_isa_fb360e5136 (IsA dasyurid_marsupial marsupial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dasyuridae is a kind of mammal family", "pln": ["(: cnet_isa_de51edfd1e (IsA dasyuridae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dasyurus is a kind of mammal genus", "pln": ["(: cnet_isa_79fa5f275b (IsA dasyurus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "data is a kind of information", "pln": ["(: cnet_isa_aea02b8356 (IsA data information) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "data is a kind of collection", "pln": ["(: cnet_isa_7a1ccbc5a1 (IsA data collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "data conversion is a kind of conversion", "pln": ["(: cnet_isa_243ade0b45 (IsA data_conversion conversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "data converter is a kind of converter", "pln": ["(: cnet_isa_25c2e1013e (IsA data_converter converter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "data encryption is a kind of encoding", "pln": ["(: cnet_isa_423a109e70 (IsA data_encryption encoding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "data hierarchy is a kind of hierarchy", "pln": ["(: cnet_isa_bad77b52ad (IsA data_hierarchy hierarchy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "data input accuracy is a kind of problem for computer system", "pln": ["(: cnet_isa_bcfec46b92 (IsA data_input_accuracy problem_for_computer_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "data input device is a kind of peripheral", "pln": ["(: cnet_isa_da185ff82b (IsA data_input_device peripheral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "data mining is a kind of data processing", "pln": ["(: cnet_isa_3464b79372 (IsA data_mining data_processing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "data multiplexer is a kind of multiplexer", "pln": ["(: cnet_isa_fa988105ad (IsA data_multiplexer multiplexer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "data processing is a kind of processing", "pln": ["(: cnet_isa_32b3a79e98 (IsA data_processing processing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "data rate is a kind of rate", "pln": ["(: cnet_isa_79129919ef (IsA data_rate rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "data structure is a kind of arrangement", "pln": ["(: cnet_isa_a0d0e085de (IsA data_structure arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "data system is a kind of system", "pln": ["(: cnet_isa_ddbdf132de (IsA data_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "database is a kind of example of computer software", "pln": ["(: cnet_isa_5f6f160c76 (IsA database example_of_computer_software) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "database is a kind of information", "pln": ["(: cnet_isa_584556d21f (IsA database information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "database management is a kind of management", "pln": ["(: cnet_isa_a59e47c106 (IsA database_management management) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "database management system is a kind of software", "pln": ["(: cnet_isa_8f27778817 (IsA database_management_system software) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "date is a kind of edible fruit", "pln": ["(: cnet_isa_9f946b98ac (IsA date edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "date is a kind of meeting", "pln": ["(: cnet_isa_ecfe8bb1ab (IsA date meeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "date is a kind of companion", "pln": ["(: cnet_isa_dbba9aab57 (IsA date companion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "date is a kind of calendar day", "pln": ["(: cnet_isa_039b781434 (IsA date calendar_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "date is a kind of calendar month", "pln": ["(: cnet_isa_8aafc7dd79 (IsA date calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "date is a kind of calendar year", "pln": ["(: cnet_isa_f6f7c08eb7 (IsA date calendar_year) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "date is a kind of day", "pln": ["(: cnet_isa_a54bc8220d (IsA date day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "date is a kind of present", "pln": ["(: cnet_isa_7196b37aab (IsA date present) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "date bar is a kind of fruit bar", "pln": ["(: cnet_isa_d1fcccdd58 (IsA date_bar fruit_bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "date bread is a kind of quick bread", "pln": ["(: cnet_isa_0ffb1fb107 (IsA date_bread quick_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "date nut bread is a kind of quick bread", "pln": ["(: cnet_isa_c0cb2a044a (IsA date_nut_bread quick_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "date palm is a kind of feather palm", "pln": ["(: cnet_isa_2b04b0b456 (IsA date_palm feather_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "date plum is a kind of persimmon", "pln": ["(: cnet_isa_348f906b98 (IsA date_plum persimmon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "date rape is a kind of rape", "pln": ["(: cnet_isa_031f5d0e04 (IsA date_rape rape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dateline is a kind of line", "pln": ["(: cnet_isa_eeec89c27a (IsA dateline line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dating is a kind of chemical analysis", "pln": ["(: cnet_isa_91deebc1dc (IsA dating chemical_analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dative is a kind of oblique", "pln": ["(: cnet_isa_f16e17080f (IsA dative oblique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "datum is a kind of information", "pln": ["(: cnet_isa_0870115503 (IsA datum information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "datura is a kind of asterid dicot genus", "pln": ["(: cnet_isa_9fef897697 (IsA datura asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daub is a kind of painting", "pln": ["(: cnet_isa_07dc633950 (IsA daub painting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daub is a kind of clay", "pln": ["(: cnet_isa_f86480d832 (IsA daub clay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daubentonia is a kind of mammal genus", "pln": ["(: cnet_isa_266a6d7fa6 (IsA daubentonia mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daubentoniidae is a kind of lemuroidea", "pln": ["(: cnet_isa_af9ed733f8 (IsA daubentoniidae lemuroidea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daubentoniidae is a kind of mammal family", "pln": ["(: cnet_isa_f1c27bf1fd (IsA daubentoniidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dauber is a kind of painter", "pln": ["(: cnet_isa_307b7f3bd7 (IsA dauber painter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daucus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_7c5202402d (IsA daucus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "daughter is a kind of female offspring", "pln": ["(: cnet_isa_d59d29c291 (IsA daughter female_offspring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daughter cell is a kind of cell", "pln": ["(: cnet_isa_675a00fb1c (IsA daughter_cell cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daughter in law is a kind of in law", "pln": ["(: cnet_isa_b247b77208 (IsA daughter_in_law in_law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dauntlessness is a kind of courage", "pln": ["(: cnet_isa_47e0280dd2 (IsA dauntlessness courage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dauphin is a kind of prince", "pln": ["(: cnet_isa_f5f759dfda (IsA dauphin prince) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "davallia is a kind of fern", "pln": ["(: cnet_isa_61b521a87c (IsA davallia fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "davalliaceae is a kind of fern family", "pln": ["(: cnet_isa_068b316bc2 (IsA davalliaceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "davenport is a kind of convertible", "pln": ["(: cnet_isa_a7d93b3918 (IsA davenport convertible) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "davenport is a kind of desk", "pln": ["(: cnet_isa_328934fcc9 (IsA davenport desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "david spade is a kind of not god", "pln": ["(: cnet_isa_a006fe2b87 (IsA david_spade not_god) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "davidson s penstemon is a kind of wildflower", "pln": ["(: cnet_isa_6a01a44fcb (IsA davidson_s_penstemon wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daviesia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_5ef6206987 (IsA daviesia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "davis cup is a kind of cup", "pln": ["(: cnet_isa_6644904455 (IsA davis_cup cup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "davit is a kind of crane", "pln": ["(: cnet_isa_d82005edbe (IsA davit crane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dawdler is a kind of idler", "pln": ["(: cnet_isa_5786c0247f (IsA dawdler idler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dawn is a kind of start", "pln": ["(: cnet_isa_b0ca16399d (IsA dawn start) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dawn is a kind of hour", "pln": ["(: cnet_isa_7fcade598f (IsA dawn hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dawn is a kind of time period", "pln": ["(: cnet_isa_3e8e01a3af (IsA dawn time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "day is a kind of 24 hour long", "pln": ["(: cnet_isa_c63479b73c (IsA day 24_hour_long) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "day is a kind of opportunity", "pln": ["(: cnet_isa_523fb8eb10 (IsA day opportunity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "day is a kind of calendar day", "pln": ["(: cnet_isa_302fcf70bc (IsA day calendar_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "day is a kind of era", "pln": ["(: cnet_isa_7fa05161b8 (IsA day era) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "day is a kind of time", "pln": ["(: cnet_isa_4f1eee7d76 (IsA day time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "day is a kind of time period", "pln": ["(: cnet_isa_b02d25fbe2 (IsA day time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "day is a kind of time unit", "pln": ["(: cnet_isa_cabb7990f3 (IsA day time_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "day is a kind of work time", "pln": ["(: cnet_isa_5daf856ad4 (IsA day work_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "day boarder is a kind of schoolchild", "pln": ["(: cnet_isa_f92fdd9a41 (IsA day_boarder schoolchild) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "day camp is a kind of camp", "pln": ["(: cnet_isa_b2529314b9 (IsA day_camp camp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "day game is a kind of outdoor game", "pln": ["(: cnet_isa_a661b4f234 (IsA day_game outdoor_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "day jessamine is a kind of shrub", "pln": ["(: cnet_isa_56de01bbab (IsA day_jessamine shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "day laborer is a kind of laborer", "pln": ["(: cnet_isa_cb8de22662 (IsA day_laborer laborer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "day lily is a kind of liliaceous plant", "pln": ["(: cnet_isa_037dbfe485 (IsA day_lily liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "day nursery is a kind of nursery", "pln": ["(: cnet_isa_1406dbb9dd (IsA day_nursery nursery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "day of week is a kind of calendar day", "pln": ["(: cnet_isa_b8af7d182c (IsA day_of_week calendar_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "day off is a kind of time off", "pln": ["(: cnet_isa_5ad8e77724 (IsA day_off time_off) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "day return is a kind of round trip ticket", "pln": ["(: cnet_isa_d72882f347 (IsA day_return round_trip_ticket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "day school is a kind of school", "pln": ["(: cnet_isa_f0513a6c24 (IsA day_school school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "day school is a kind of private school", "pln": ["(: cnet_isa_dd71af6b3f (IsA day_school private_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "day shift is a kind of shift", "pln": ["(: cnet_isa_78f69b98db (IsA day_shift shift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "daybed is a kind of sofa", "pln": ["(: cnet_isa_6292a0d68c (IsA daybed sofa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daybook is a kind of journal", "pln": ["(: cnet_isa_895286d65a (IsA daybook journal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daybook is a kind of ledger", "pln": ["(: cnet_isa_1477806d53 (IsA daybook ledger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dayboy is a kind of day boarder", "pln": ["(: cnet_isa_472c44fe87 (IsA dayboy day_boarder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daycare is a kind of childcare", "pln": ["(: cnet_isa_c44792e3cf (IsA daycare childcare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daydreamer is a kind of idler", "pln": ["(: cnet_isa_0d4a869cc1 (IsA daydreamer idler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daygirl is a kind of day boarder", "pln": ["(: cnet_isa_e98894539a (IsA daygirl day_boarder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daylight is a kind of light", "pln": ["(: cnet_isa_cfbf6eddb9 (IsA daylight light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daylight saving time is a kind of time", "pln": ["(: cnet_isa_9c4a6ff17a (IsA daylight_saving_time time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daylight vision is a kind of sight", "pln": ["(: cnet_isa_143f245141 (IsA daylight_vision sight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "day is a kind of life", "pln": ["(: cnet_isa_8a8fb0d7ee (IsA day life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daze is a kind of confusion", "pln": ["(: cnet_isa_ca8cb1ac02 (IsA daze confusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "daze is a kind of stupefaction", "pln": ["(: cnet_isa_c6321db489 (IsA daze stupefaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dazzle is a kind of brightness", "pln": ["(: cnet_isa_a10406b14e (IsA dazzle brightness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dci is a kind of administrator", "pln": ["(: cnet_isa_b0f32ff8b5 (IsA dci administrator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "de escalation is a kind of decrease", "pln": ["(: cnet_isa_bd7bb5d6ed (IsA de_escalation decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "de facto segregation is a kind of segregation", "pln": ["(: cnet_isa_cd011eff20 (IsA de_facto_segregation segregation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "de iodinase is a kind of enzyme", "pln": ["(: cnet_isa_0f22a9f424 (IsA de_iodinase enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "de iodination is a kind of chemical process", "pln": ["(: cnet_isa_be1807f093 (IsA de_iodination chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "de jure segregation is a kind of segregation", "pln": ["(: cnet_isa_d2b44f4791 (IsA de_jure_segregation segregation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deacon is a kind of church officer", "pln": ["(: cnet_isa_f76efc2dea (IsA deacon church_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deacon is a kind of clergyman", "pln": ["(: cnet_isa_6f44d9ddad (IsA deacon clergyman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deacon is a kind of holy order", "pln": ["(: cnet_isa_42e5083fb3 (IsA deacon holy_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deaconess is a kind of deacon", "pln": ["(: cnet_isa_d2f54985b5 (IsA deaconess deacon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deactivation is a kind of termination", "pln": ["(: cnet_isa_21b9b12f6a (IsA deactivation termination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deactivation is a kind of dismissal", "pln": ["(: cnet_isa_0b4e0f6476 (IsA deactivation dismissal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dead is a kind of people", "pln": ["(: cnet_isa_9b17f33db2 (IsA dead people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dead is a kind of time", "pln": ["(: cnet_isa_0925ef90e9 (IsA dead time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dead air is a kind of pause", "pln": ["(: cnet_isa_6b3ef30132 (IsA dead_air pause) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dead air space is a kind of area", "pln": ["(: cnet_isa_f061cba9a0 (IsA dead_air_space area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dead axle is a kind of axle", "pln": ["(: cnet_isa_dbc56e41c0 (IsA dead_axle axle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dead center is a kind of position", "pln": ["(: cnet_isa_b83ccbeec3 (IsA dead_center position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dead drop is a kind of drop", "pln": ["(: cnet_isa_8bf3148aec (IsA dead_drop drop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dead duck is a kind of failure", "pln": ["(: cnet_isa_6781d1d754 (IsA dead_duck failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dead hand is a kind of influence", "pln": ["(: cnet_isa_5250257f10 (IsA dead_hand influence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dead heat is a kind of draw", "pln": ["(: cnet_isa_a4de829150 (IsA dead_heat draw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dead language is a kind of language", "pln": ["(: cnet_isa_b86c6adf88 (IsA dead_language language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dead letter is a kind of letter", "pln": ["(: cnet_isa_9d9d8c801c (IsA dead_letter letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dead letter is a kind of state", "pln": ["(: cnet_isa_1725eaaf26 (IsA dead_letter state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dead load is a kind of load", "pln": ["(: cnet_isa_cbce881951 (IsA dead_load load) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dead man s finger is a kind of fungus", "pln": ["(: cnet_isa_51515040a4 (IsA dead_man_s_finger fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dead man s float is a kind of floating", "pln": ["(: cnet_isa_6fd476b40c (IsA dead_man_s_float floating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dead metaphor is a kind of metaphor", "pln": ["(: cnet_isa_2e6cd585e8 (IsA dead_metaphor metaphor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dead nettle is a kind of herb", "pln": ["(: cnet_isa_9b2bfb4cdc (IsA dead_nettle herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dead person is a kind of person", "pln": ["(: cnet_isa_58ec588dac (IsA dead_person person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dead reckoning is a kind of navigation", "pln": ["(: cnet_isa_0db7c22b62 (IsA dead_reckoning navigation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dead sea is a kind of in israel", "pln": ["(: cnet_isa_7126a493d5 (IsA dead_sea in_israel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dead weight is a kind of weight", "pln": ["(: cnet_isa_e369c77bb2 (IsA dead_weight weight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dead weight is a kind of burden", "pln": ["(: cnet_isa_f3f264f88d (IsA dead_weight burden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deadbeat dad is a kind of defaulter", "pln": ["(: cnet_isa_1a51b1f695 (IsA deadbeat_dad defaulter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deadeye is a kind of marksman", "pln": ["(: cnet_isa_caed263da2 (IsA deadeye marksman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deadeye is a kind of disk", "pln": ["(: cnet_isa_0bacbdfd42 (IsA deadeye disk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deadhead is a kind of public transport", "pln": ["(: cnet_isa_6f7374d08a (IsA deadhead public_transport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deadhead is a kind of nonworker", "pln": ["(: cnet_isa_457ec5f032 (IsA deadhead nonworker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deadlight is a kind of shutter", "pln": ["(: cnet_isa_db3eb5214a (IsA deadlight shutter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deadline is a kind of point", "pln": ["(: cnet_isa_fda9ecaf26 (IsA deadline point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deadliness is a kind of unwholesomeness", "pln": ["(: cnet_isa_0bf2d59a36 (IsA deadliness unwholesomeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deadlock is a kind of situation", "pln": ["(: cnet_isa_79c7852d38 (IsA deadlock situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deadness is a kind of inanimateness", "pln": ["(: cnet_isa_605e896c29 (IsA deadness inanimateness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deadness is a kind of inelasticity", "pln": ["(: cnet_isa_6230672ae5 (IsA deadness inelasticity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deadwood is a kind of branch", "pln": ["(: cnet_isa_2c6e93a1e1 (IsA deadwood branch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deaf is a kind of people", "pln": ["(: cnet_isa_e4d8a28bbe (IsA deaf people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "deaf mutism is a kind of deafness", "pln": ["(: cnet_isa_8185d2ba36 (IsA deaf_mutism deafness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deaf mutism is a kind of mutism", "pln": ["(: cnet_isa_698a0e54e7 (IsA deaf_mutism mutism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deaf people is a kind of people", "pln": ["(: cnet_isa_153695c1bf (IsA deaf_people people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deaf person is a kind of person", "pln": ["(: cnet_isa_e3223adc6f (IsA deaf_person person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deafness is a kind of hearing impairment", "pln": ["(: cnet_isa_89c5b9f305 (IsA deafness hearing_impairment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deal is a kind of allotment", "pln": ["(: cnet_isa_53c4185834 (IsA deal allotment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deal is a kind of transaction", "pln": ["(: cnet_isa_8b544e6a06 (IsA deal transaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deal is a kind of distribution", "pln": ["(: cnet_isa_79cfaf31fe (IsA deal distribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deal is a kind of result", "pln": ["(: cnet_isa_1b26ba475a (IsA deal result) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deal is a kind of board", "pln": ["(: cnet_isa_ec958a084e (IsA deal board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dealer is a kind of firm", "pln": ["(: cnet_isa_0b4076b90e (IsA dealer firm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dealer is a kind of card player", "pln": ["(: cnet_isa_bfe011f9de (IsA dealer card_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dealer is a kind of seller", "pln": ["(: cnet_isa_2a4ecd5ac2 (IsA dealer seller) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dealfish is a kind of ribbonfish", "pln": ["(: cnet_isa_d3b88f0987 (IsA dealfish ribbonfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dealignment is a kind of process", "pln": ["(: cnet_isa_7f6d8f97af (IsA dealignment process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dealing is a kind of treatment", "pln": ["(: cnet_isa_8c83737834 (IsA dealing treatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dealing is a kind of interchange", "pln": ["(: cnet_isa_422c924eb3 (IsA dealing interchange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deamination is a kind of chemical process", "pln": ["(: cnet_isa_67cf53c7d0 (IsA deamination chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dean is a kind of academic administrator", "pln": ["(: cnet_isa_b90592700d (IsA dean academic_administrator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dean is a kind of elder", "pln": ["(: cnet_isa_90707641f8 (IsA dean elder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dean is a kind of cardinal", "pln": ["(: cnet_isa_59740189f7 (IsA dean cardinal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deanery is a kind of residence", "pln": ["(: cnet_isa_e97d1d8735 (IsA deanery residence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "deanship is a kind of position", "pln": ["(: cnet_isa_24671e66cb (IsA deanship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dear is a kind of innocent", "pln": ["(: cnet_isa_c4c1ba90e1 (IsA dear innocent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dearth is a kind of scarcity", "pln": ["(: cnet_isa_0094e01ff2 (IsA dearth scarcity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dearth is a kind of lack", "pln": ["(: cnet_isa_3bf467948c (IsA dearth lack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "death s head is a kind of symbol", "pln": ["(: cnet_isa_85b87fc157 (IsA death_s_head symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "death s head moth is a kind of hawkmoth", "pln": ["(: cnet_isa_0072b6cde6 (IsA death_s_head_moth hawkmoth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "death is a kind of killing", "pln": ["(: cnet_isa_8fcb504f0b (IsA death killing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "death is a kind of change", "pln": ["(: cnet_isa_3e75e4571a (IsA death change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "death is a kind of organic phenomenon", "pln": ["(: cnet_isa_7f3e148058 (IsA death organic_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "death is a kind of state", "pln": ["(: cnet_isa_7aad76ac81 (IsA death state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "death is a kind of end", "pln": ["(: cnet_isa_729162658b (IsA death end) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "death adder is a kind of elapid", "pln": ["(: cnet_isa_5aaa7dd55a (IsA death_adder elapid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "death benefit is a kind of benefit", "pln": ["(: cnet_isa_aec63a5a01 (IsA death_benefit benefit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "death cama is a kind of liliaceous plant", "pln": ["(: cnet_isa_8d0acb1946 (IsA death_cama liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "death camp is a kind of concentration camp", "pln": ["(: cnet_isa_e50c82b8eb (IsA death_camp concentration_camp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "death cap is a kind of agaric", "pln": ["(: cnet_isa_2c65672518 (IsA death_cap agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "death house is a kind of cellblock", "pln": ["(: cnet_isa_6ad5c07ce4 (IsA death_house cellblock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "death instinct is a kind of urge", "pln": ["(: cnet_isa_54962474d3 (IsA death_instinct urge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "death knell is a kind of bell", "pln": ["(: cnet_isa_d4e50dae77 (IsA death_knell bell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "death knell is a kind of omen", "pln": ["(: cnet_isa_af137b885e (IsA death_knell omen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "death mask is a kind of cast", "pln": ["(: cnet_isa_cb724d395b (IsA death_mask cast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "death penalty is a kind of issue", "pln": ["(: cnet_isa_2c3a09a71a (IsA death_penalty issue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "death roll is a kind of roll", "pln": ["(: cnet_isa_1ff745c3b9 (IsA death_roll roll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "death seat is a kind of car seat", "pln": ["(: cnet_isa_f83b7d4244 (IsA death_seat car_seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "death squad is a kind of hit squad", "pln": ["(: cnet_isa_0d4c4d409b (IsA death_squad hit_squad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "death toll is a kind of price", "pln": ["(: cnet_isa_f5c6c2a52a (IsA death_toll price) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "death warrant is a kind of warrant", "pln": ["(: cnet_isa_f114a15965 (IsA death_warrant warrant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deathbed is a kind of bed", "pln": ["(: cnet_isa_c7305549f1 (IsA deathbed bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deathbed is a kind of time of life", "pln": ["(: cnet_isa_17647ec14d (IsA deathbed time_of_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deathblow is a kind of killing", "pln": ["(: cnet_isa_1d4dc4c5f3 (IsA deathblow killing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deathrate is a kind of rate", "pln": ["(: cnet_isa_b8f6d44175 (IsA deathrate rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deathtrap is a kind of structure", "pln": ["(: cnet_isa_6afdbddd50 (IsA deathtrap structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deathwatch beetle is a kind of beetle", "pln": ["(: cnet_isa_e9d96ce930 (IsA deathwatch_beetle beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "debacle is a kind of collapse", "pln": ["(: cnet_isa_ba1fba3f36 (IsA debacle collapse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "debacle is a kind of flood", "pln": ["(: cnet_isa_5e939d5887 (IsA debacle flood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "debarkation is a kind of landing", "pln": ["(: cnet_isa_a75974ee31 (IsA debarkation landing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "debarment is a kind of prevention", "pln": ["(: cnet_isa_f323533d5d (IsA debarment prevention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "debarment is a kind of exclusion", "pln": ["(: cnet_isa_929b143336 (IsA debarment exclusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "debaser is a kind of person", "pln": ["(: cnet_isa_2e5005998c (IsA debaser person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "debate is a kind of public speaking", "pln": ["(: cnet_isa_8306152d09 (IsA debate public_speaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "debater is a kind of disputant", "pln": ["(: cnet_isa_484decf6ca (IsA debater disputant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "debenture is a kind of legal document", "pln": ["(: cnet_isa_9f421f4662 (IsA debenture legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "debian is a kind of operating system", "pln": ["(: cnet_isa_853975a8f8 (IsA debian operating_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "debilitation is a kind of weakening", "pln": ["(: cnet_isa_607c60e887 (IsA debilitation weakening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "debit is a kind of entry", "pln": ["(: cnet_isa_048f3153eb (IsA debit entry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "debit card is a kind of open end credit", "pln": ["(: cnet_isa_ce8ae40049 (IsA debit_card open_end_credit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "debit card is a kind of positive identification", "pln": ["(: cnet_isa_3a997044d4 (IsA debit_card positive_identification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "debit side is a kind of accounting", "pln": ["(: cnet_isa_150927944b (IsA debit_side accounting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "debridement is a kind of operation", "pln": ["(: cnet_isa_2c0e5619c2 (IsA debridement operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "debriefing is a kind of interrogation", "pln": ["(: cnet_isa_98b09b680f (IsA debriefing interrogation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "debriefing is a kind of report", "pln": ["(: cnet_isa_32bdeca1e4 (IsA debriefing report) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "debris is a kind of rubbish", "pln": ["(: cnet_isa_ed3fdb7d80 (IsA debris rubbish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "debris surge is a kind of rush", "pln": ["(: cnet_isa_53c671de42 (IsA debris_surge rush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "debt is a kind of obligation", "pln": ["(: cnet_isa_93209fdced (IsA debt obligation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "debt is a kind of liability", "pln": ["(: cnet_isa_7a8fd37354 (IsA debt liability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "debt is a kind of indebtedness", "pln": ["(: cnet_isa_4fbf6bbe2b (IsA debt indebtedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "debt instrument is a kind of document", "pln": ["(: cnet_isa_fdc9b3649b (IsA debt_instrument document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "debt limit is a kind of debt", "pln": ["(: cnet_isa_ebeee5e3b7 (IsA debt_limit debt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "debtor is a kind of person", "pln": ["(: cnet_isa_f2886c239f (IsA debtor person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "debugger is a kind of program", "pln": ["(: cnet_isa_235eb7ca0e (IsA debugger program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "debut is a kind of presentation", "pln": ["(: cnet_isa_8ff601ed5c (IsA debut presentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "debutante is a kind of woman", "pln": ["(: cnet_isa_39214e59f7 (IsA debutante woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decade is a kind of time period", "pln": ["(: cnet_isa_b362543a41 (IsA decade time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decadent is a kind of bad person", "pln": ["(: cnet_isa_892deef6a6 (IsA decadent bad_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decaffeinated coffee is a kind of coffee", "pln": ["(: cnet_isa_acb5b75b48 (IsA decaffeinated_coffee coffee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decagon is a kind of closed shape with 10 side", "pln": ["(: cnet_isa_963c462ef7 (IsA decagon closed_shape_with_10_side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decagon is a kind of polygon", "pln": ["(: cnet_isa_67509dfd2b (IsA decagon polygon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decahedron is a kind of polyhedron", "pln": ["(: cnet_isa_5690a3a0e6 (IsA decahedron polyhedron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decal is a kind of art", "pln": ["(: cnet_isa_29659d3f8e (IsA decal art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decal is a kind of design", "pln": ["(: cnet_isa_6c12c43aa8 (IsA decal design) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decal is a kind of transfer paper", "pln": ["(: cnet_isa_7fea9f37ae (IsA decal transfer_paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decalcification is a kind of chemical process", "pln": ["(: cnet_isa_99d5ac25d9 (IsA decalcification chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decalescence is a kind of physical phenomenon", "pln": ["(: cnet_isa_1a30cff492 (IsA decalescence physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decameter is a kind of metric linear unit", "pln": ["(: cnet_isa_1e4613b9cd (IsA decameter metric_linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decampment is a kind of withdrawal", "pln": ["(: cnet_isa_3060cab2f1 (IsA decampment withdrawal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decantation is a kind of transfusion", "pln": ["(: cnet_isa_5213394a77 (IsA decantation transfusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decanter is a kind of container", "pln": ["(: cnet_isa_5cb96daa0d (IsA decanter container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decapitation is a kind of execution", "pln": ["(: cnet_isa_49f6106e71 (IsA decapitation execution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decapitation is a kind of killing", "pln": ["(: cnet_isa_041d169693 (IsA decapitation killing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decapod is a kind of cephalopod", "pln": ["(: cnet_isa_0f86acd7a1 (IsA decapod cephalopod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decapod crustacean is a kind of crustacean", "pln": ["(: cnet_isa_5be1cf1b5e (IsA decapod_crustacean crustacean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decapoda is a kind of animal order", "pln": ["(: cnet_isa_7ad1cf0537 (IsA decapoda animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decapterus is a kind of fish genus", "pln": ["(: cnet_isa_818606a5c4 (IsA decapterus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decarboxylase is a kind of enzyme", "pln": ["(: cnet_isa_8ef910b066 (IsA decarboxylase enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decarboxylation is a kind of chemical process", "pln": ["(: cnet_isa_cd522a8992 (IsA decarboxylation chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "decasyllable is a kind of verse", "pln": ["(: cnet_isa_7d6629fff4 (IsA decasyllable verse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decathlon is a kind of athletic contest", "pln": ["(: cnet_isa_df81bff7a6 (IsA decathlon athletic_contest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decay is a kind of organic phenomenon", "pln": ["(: cnet_isa_8d254b958a (IsA decay organic_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decay is a kind of decrease", "pln": ["(: cnet_isa_f509d3aa6e (IsA decay decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decay is a kind of natural process", "pln": ["(: cnet_isa_affc33bac5 (IsA decay natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decay is a kind of nuclear reaction", "pln": ["(: cnet_isa_b464c33146 (IsA decay nuclear_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decay is a kind of unsoundness", "pln": ["(: cnet_isa_343ffe2cbd (IsA decay unsoundness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deceiver is a kind of wrongdoer", "pln": ["(: cnet_isa_1cb79a0b42 (IsA deceiver wrongdoer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deceleration is a kind of speed", "pln": ["(: cnet_isa_ffdc8fbbd2 (IsA deceleration speed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deceleration is a kind of change", "pln": ["(: cnet_isa_903dbeb7f9 (IsA deceleration change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deceleration is a kind of rate", "pln": ["(: cnet_isa_ae1876661e (IsA deceleration rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "december is a kind of month", "pln": ["(: cnet_isa_13d0fdd523 (IsA december month) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "december is a kind of gregorian calendar month", "pln": ["(: cnet_isa_3c018860cb (IsA december gregorian_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decency is a kind of propriety", "pln": ["(: cnet_isa_c375c6b9cd (IsA decency propriety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decency is a kind of respectability", "pln": ["(: cnet_isa_1bc4038682 (IsA decency respectability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decentralization is a kind of spread", "pln": ["(: cnet_isa_aa6b1fb826 (IsA decentralization spread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decentralization is a kind of social process", "pln": ["(: cnet_isa_890ef0094e (IsA decentralization social_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deception is a kind of falsification", "pln": ["(: cnet_isa_bd393693b8 (IsA deception falsification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deceptiveness is a kind of dishonesty", "pln": ["(: cnet_isa_27da666666 (IsA deceptiveness dishonesty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decibel is a kind of sound unit", "pln": ["(: cnet_isa_cccb872441 (IsA decibel sound_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decidua is a kind of epithelium", "pln": ["(: cnet_isa_f04d09d44b (IsA decidua epithelium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "deciduous holly is a kind of holly", "pln": ["(: cnet_isa_52576d88b9 (IsA deciduous_holly holly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deciduous plant is a kind of vascular plant", "pln": ["(: cnet_isa_bdc8d916fd (IsA deciduous_plant vascular_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decigram is a kind of metric weight unit", "pln": ["(: cnet_isa_ea490d1319 (IsA decigram metric_weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decile is a kind of mark", "pln": ["(: cnet_isa_9c6e150ff3 (IsA decile mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "deciliter is a kind of metric capacity unit", "pln": ["(: cnet_isa_1746279c2e (IsA deciliter metric_capacity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decimal is a kind of number", "pln": ["(: cnet_isa_b9bcb45559 (IsA decimal number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decimal digit is a kind of digit", "pln": ["(: cnet_isa_40692fb1fb (IsA decimal_digit digit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decimal fraction is a kind of proper fraction", "pln": ["(: cnet_isa_430835a0da (IsA decimal_fraction proper_fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decimal notation is a kind of mathematical notation", "pln": ["(: cnet_isa_c49805f65f (IsA decimal_notation mathematical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "decimal numeration system is a kind of positional notation", "pln": ["(: cnet_isa_82a59749d8 (IsA decimal_numeration_system positional_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decimal point is a kind of mathematical notation", "pln": ["(: cnet_isa_e77f8e178e (IsA decimal_point mathematical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decimalization is a kind of change", "pln": ["(: cnet_isa_0a0c8d71ca (IsA decimalization change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "decimation is a kind of destruction", "pln": ["(: cnet_isa_0cc8af47c8 (IsA decimation destruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decimeter is a kind of metric linear unit", "pln": ["(: cnet_isa_587038ce28 (IsA decimeter metric_linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decipherer is a kind of reader", "pln": ["(: cnet_isa_368214e3a3 (IsA decipherer reader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decision is a kind of choice", "pln": ["(: cnet_isa_43e918da4e (IsA decision choice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decision is a kind of result", "pln": ["(: cnet_isa_80a01bd73e (IsA decision result) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decision is a kind of judgment", "pln": ["(: cnet_isa_3249de470d (IsA decision judgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decision making is a kind of higher cognitive process", "pln": ["(: cnet_isa_b1dfc4e69c (IsA decision_making higher_cognitive_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decision table is a kind of multidimensional language", "pln": ["(: cnet_isa_a247c8c507 (IsA decision_table multidimensional_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "decisiveness is a kind of resoluteness", "pln": ["(: cnet_isa_cf45de601f (IsA decisiveness resoluteness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deck is a kind of packet", "pln": ["(: cnet_isa_0a2fcf6d6f (IsA deck packet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "deck is a kind of platform", "pln": ["(: cnet_isa_1df27d6759 (IsA deck platform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deck is a kind of porch", "pln": ["(: cnet_isa_7cf7b58f4f (IsA deck porch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deck chair is a kind of folding chair", "pln": ["(: cnet_isa_b04fc87fe5 (IsA deck_chair folding_chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deck house is a kind of superstructure", "pln": ["(: cnet_isa_3f5a35da0f (IsA deck_house superstructure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deck tennis is a kind of court game", "pln": ["(: cnet_isa_d66a78363c (IsA deck_tennis court_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decker is a kind of artifact", "pln": ["(: cnet_isa_dcfb7db764 (IsA decker artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deckhand is a kind of mariner", "pln": ["(: cnet_isa_05521c40c3 (IsA deckhand mariner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "deckle is a kind of framework", "pln": ["(: cnet_isa_fc3eb02ec3 (IsA deckle framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deckle edge is a kind of edge", "pln": ["(: cnet_isa_b206f58668 (IsA deckle_edge edge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "declamation is a kind of oratory", "pln": ["(: cnet_isa_ac4db9b49e (IsA declamation oratory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "declamation is a kind of recitation", "pln": ["(: cnet_isa_33ae6db6e9 (IsA declamation recitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "declaration is a kind of statement", "pln": ["(: cnet_isa_5ef7521fef (IsA declaration statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "declaration is a kind of testimony", "pln": ["(: cnet_isa_80f651560c (IsA declaration testimony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "declaration of estimated tax is a kind of tax return", "pln": ["(: cnet_isa_8170a44bd2 (IsA declaration_of_estimated_tax tax_return) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "declarative sentence is a kind of sentence", "pln": ["(: cnet_isa_990f18a661 (IsA declarative_sentence sentence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "declassification is a kind of decrease", "pln": ["(: cnet_isa_1e9de03e26 (IsA declassification decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "declension is a kind of class", "pln": ["(: cnet_isa_9fda19b421 (IsA declension class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "declension is a kind of inflection", "pln": ["(: cnet_isa_1d0560b1c7 (IsA declension inflection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "declination is a kind of angular distance", "pln": ["(: cnet_isa_9614b998d5 (IsA declination angular_distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "declination is a kind of acknowledgment", "pln": ["(: cnet_isa_9f61069cb0 (IsA declination acknowledgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "declination is a kind of refusal", "pln": ["(: cnet_isa_75dd5afb87 (IsA declination refusal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "decline is a kind of decrease", "pln": ["(: cnet_isa_063556bf7d (IsA decline decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decline is a kind of condition", "pln": ["(: cnet_isa_8e721bae1b (IsA decline condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "declinometer is a kind of measuring instrument", "pln": ["(: cnet_isa_6d3a147fba (IsA declinometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "decoction is a kind of extraction", "pln": ["(: cnet_isa_87f34652aa (IsA decoction extraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decoction process is a kind of boiling", "pln": ["(: cnet_isa_ce95a1d56b (IsA decoction_process boiling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decoder is a kind of machine", "pln": ["(: cnet_isa_0cb9a41527 (IsA decoder machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decoder is a kind of intellectual", "pln": ["(: cnet_isa_4c1d44940a (IsA decoder intellectual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decoding is a kind of cryptography", "pln": ["(: cnet_isa_7aeb179365 (IsA decoding cryptography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decolletage is a kind of neckline", "pln": ["(: cnet_isa_28105fa09e (IsA decolletage neckline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decolonization is a kind of group action", "pln": ["(: cnet_isa_5a3c96e921 (IsA decolonization group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decomposition is a kind of decay", "pln": ["(: cnet_isa_edea33861c (IsA decomposition decay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decomposition is a kind of chemical reaction", "pln": ["(: cnet_isa_16dac290df (IsA decomposition chemical_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decomposition is a kind of vector algebra", "pln": ["(: cnet_isa_7fd213d4ad (IsA decomposition vector_algebra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decompound leaf is a kind of compound leaf", "pln": ["(: cnet_isa_66464fdd9c (IsA decompound_leaf compound_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decompression is a kind of decoding", "pln": ["(: cnet_isa_c2041a28cd (IsA decompression decoding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decompression is a kind of easing", "pln": ["(: cnet_isa_9478d15f46 (IsA decompression easing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decompression sickness is a kind of illness", "pln": ["(: cnet_isa_022991e359 (IsA decompression_sickness illness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decongestant is a kind of medicine", "pln": ["(: cnet_isa_b4ad2d1602 (IsA decongestant medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "deconstruction is a kind of philosophical doctrine", "pln": ["(: cnet_isa_b6d89273f6 (IsA deconstruction philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deconstructivism is a kind of school", "pln": ["(: cnet_isa_4639c0f2d7 (IsA deconstructivism school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decontamination is a kind of removal", "pln": ["(: cnet_isa_5f8496a948 (IsA decontamination removal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decoration is a kind of change of state", "pln": ["(: cnet_isa_a7410435dd (IsA decoration change_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decoration is a kind of artifact", "pln": ["(: cnet_isa_f444663a2d (IsA decoration artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decoration is a kind of award", "pln": ["(: cnet_isa_2ca0153fcf (IsA decoration award) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decorativeness is a kind of appearance", "pln": ["(: cnet_isa_71f0956ee3 (IsA decorativeness appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decorator is a kind of artist", "pln": ["(: cnet_isa_df3c3910e3 (IsA decorator artist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decortication is a kind of operation", "pln": ["(: cnet_isa_d145120bdd (IsA decortication operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decorum is a kind of propriety", "pln": ["(: cnet_isa_23d820799f (IsA decorum propriety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decoupage is a kind of art", "pln": ["(: cnet_isa_d40086e4fa (IsA decoupage art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decoy is a kind of fake duck", "pln": ["(: cnet_isa_906371eabe (IsA decoy fake_duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decoy is a kind of object", "pln": ["(: cnet_isa_c1414c037b (IsA decoy object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decoy is a kind of accomplice", "pln": ["(: cnet_isa_507f59e34b (IsA decoy accomplice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decoy is a kind of deceiver", "pln": ["(: cnet_isa_e41dd15605 (IsA decoy deceiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decrease is a kind of change of magnitude", "pln": ["(: cnet_isa_bbe2198729 (IsA decrease change_of_magnitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decrease is a kind of amount", "pln": ["(: cnet_isa_33c6566a6b (IsA decrease amount) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decrease is a kind of change", "pln": ["(: cnet_isa_4a02d49f58 (IsA decrease change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decrease is a kind of process", "pln": ["(: cnet_isa_ed2d919f5a (IsA decrease process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decree is a kind of act", "pln": ["(: cnet_isa_cd2fe9bae1 (IsA decree act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decree nisi is a kind of decree", "pln": ["(: cnet_isa_9715618e34 (IsA decree_nisi decree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decrepitation is a kind of crackle", "pln": ["(: cnet_isa_4c9b6898f0 (IsA decrepitation crackle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "decrepitude is a kind of deterioration", "pln": ["(: cnet_isa_d97c611d0c (IsA decrepitude deterioration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decrescendo is a kind of softness", "pln": ["(: cnet_isa_7d71f513fd (IsA decrescendo softness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decriminalization is a kind of legislation", "pln": ["(: cnet_isa_6765b191ee (IsA decriminalization legislation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decubitus is a kind of position", "pln": ["(: cnet_isa_17ddfdece2 (IsA decubitus position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decumaria is a kind of rosid dicot genus", "pln": ["(: cnet_isa_418e159290 (IsA decumaria rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "decumary is a kind of hydrangea", "pln": ["(: cnet_isa_4ee091db57 (IsA decumary hydrangea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dedicated file server is a kind of file server", "pln": ["(: cnet_isa_901c48450e (IsA dedicated_file_server file_server) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dedication is a kind of fidelity", "pln": ["(: cnet_isa_8ab60bde8d (IsA dedication fidelity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dedication is a kind of ceremony", "pln": ["(: cnet_isa_7eb5daf4de (IsA dedication ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dedication is a kind of message", "pln": ["(: cnet_isa_1f9adca858 (IsA dedication message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dedifferentiation is a kind of adaptation", "pln": ["(: cnet_isa_59b875519b (IsA dedifferentiation adaptation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deductible is a kind of article", "pln": ["(: cnet_isa_99b1573ad8 (IsA deductible article) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deductible is a kind of sum", "pln": ["(: cnet_isa_f6941b7f22 (IsA deductible sum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deduction is a kind of inference", "pln": ["(: cnet_isa_a8671b679b (IsA deduction inference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deduction is a kind of reasoning", "pln": ["(: cnet_isa_9380fd17b8 (IsA deduction reasoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deduction is a kind of allowance", "pln": ["(: cnet_isa_de78e60ba9 (IsA deduction allowance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deed is a kind of accomplishment", "pln": ["(: cnet_isa_367b7da8ab (IsA deed accomplishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deed is a kind of legal document", "pln": ["(: cnet_isa_cc2551df86 (IsA deed legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "deed poll is a kind of deed", "pln": ["(: cnet_isa_4b99af62ed (IsA deed_poll deed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deep is a kind of ocean", "pln": ["(: cnet_isa_9f2cfcec47 (IsA deep ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deep is a kind of middle", "pln": ["(: cnet_isa_45357c29b5 (IsA deep middle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deep dish pie is a kind of pie", "pln": ["(: cnet_isa_bcf9f13b79 (IsA deep_dish_pie pie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deep fording is a kind of ford", "pln": ["(: cnet_isa_8aabafe052 (IsA deep_fording ford) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "deep freeze is a kind of electric refrigerator", "pln": ["(: cnet_isa_6cddd75899 (IsA deep_freeze electric_refrigerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deep freeze is a kind of inaction", "pln": ["(: cnet_isa_68f118b727 (IsA deep_freeze inaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "deep middle cerebral vein is a kind of middle cerebral vein", "pln": ["(: cnet_isa_efede751bb (IsA deep_middle_cerebral_vein middle_cerebral_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deep pocket is a kind of asset", "pln": ["(: cnet_isa_ab5018440d (IsA deep_pocket asset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deep sea diver is a kind of diver", "pln": ["(: cnet_isa_2c8f9d1fe1 (IsA deep_sea_diver diver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deep space is a kind of region", "pln": ["(: cnet_isa_f7aeec696c (IsA deep_space region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deep supporting fire is a kind of supporting fire", "pln": ["(: cnet_isa_9e8a4644fa (IsA deep_supporting_fire supporting_fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deep temporal vein is a kind of temporal vein", "pln": ["(: cnet_isa_4e29ec2320 (IsA deep_temporal_vein temporal_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "deep water is a kind of trouble", "pln": ["(: cnet_isa_575bb89d1d (IsA deep_water trouble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deepening is a kind of development", "pln": ["(: cnet_isa_db9df2d22b (IsA deepening development) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deepness is a kind of depth", "pln": ["(: cnet_isa_8b3bd3247e (IsA deepness depth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deepness is a kind of low pitch", "pln": ["(: cnet_isa_07925d1f2b (IsA deepness low_pitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deepwater pipefish is a kind of pipefish", "pln": ["(: cnet_isa_cdcfe0552b (IsA deepwater_pipefish pipefish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deepwater squirrelfish is a kind of squirrelfish", "pln": ["(: cnet_isa_2ef63186e7 (IsA deepwater_squirrelfish squirrelfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deer is a kind of animal", "pln": ["(: cnet_isa_54b9c20b25 (IsA deer animal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deer is a kind of ruminant", "pln": ["(: cnet_isa_c16764d4e2 (IsA deer ruminant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deer fern is a kind of hard fern", "pln": ["(: cnet_isa_388f978b49 (IsA deer_fern hard_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deer grass is a kind of subshrub", "pln": ["(: cnet_isa_a8b53943b4 (IsA deer_grass subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deer hunter is a kind of hunter", "pln": ["(: cnet_isa_05e5df7735 (IsA deer_hunter hunter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deer hunting is a kind of hunt", "pln": ["(: cnet_isa_d2b0e16879 (IsA deer_hunting hunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deer mouse is a kind of wood mouse", "pln": ["(: cnet_isa_81bbe8dc93 (IsA deer_mouse wood_mouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "deer mushroom is a kind of agaric", "pln": ["(: cnet_isa_5c0f3ca52f (IsA deer_mushroom agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deer trail is a kind of trail", "pln": ["(: cnet_isa_d178ae4b6f (IsA deer_trail trail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deerberry is a kind of blueberry", "pln": ["(: cnet_isa_9de263e492 (IsA deerberry blueberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deerskin is a kind of leather", "pln": ["(: cnet_isa_9ce839ac06 (IsA deerskin leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deerstalker is a kind of hat", "pln": ["(: cnet_isa_44966dd95f (IsA deerstalker hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deerstalking is a kind of stalk", "pln": ["(: cnet_isa_7c0e576483 (IsA deerstalking stalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defacement is a kind of damage", "pln": ["(: cnet_isa_8daeb83700 (IsA defacement damage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defalcation is a kind of sum", "pln": ["(: cnet_isa_0688eae6d6 (IsA defalcation sum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defamation is a kind of disparagement", "pln": ["(: cnet_isa_bd0ed46d93 (IsA defamation disparagement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defamer is a kind of detractor", "pln": ["(: cnet_isa_9c8870c5df (IsA defamer detractor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "default is a kind of absence", "pln": ["(: cnet_isa_5859ef0fed (IsA default absence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "default is a kind of loss", "pln": ["(: cnet_isa_b0ccc4af83 (IsA default loss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "default is a kind of failure", "pln": ["(: cnet_isa_0ac421dd53 (IsA default failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "default judgment is a kind of judgment", "pln": ["(: cnet_isa_9575f75708 (IsA default_judgment judgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "default option is a kind of option", "pln": ["(: cnet_isa_7ab6224d07 (IsA default_option option) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defaulter is a kind of absentee", "pln": ["(: cnet_isa_b14604e76a (IsA defaulter absentee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defaulter is a kind of contestant", "pln": ["(: cnet_isa_9d11c2be3f (IsA defaulter contestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defaulter is a kind of debtor", "pln": ["(: cnet_isa_e8eef36353 (IsA defaulter debtor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defeat is a kind of ending", "pln": ["(: cnet_isa_93c7989251 (IsA defeat ending) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "defeat is a kind of failure", "pln": ["(: cnet_isa_b2e78bec1f (IsA defeat failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defeated is a kind of people", "pln": ["(: cnet_isa_c583e66d79 (IsA defeated people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defeatism is a kind of resignation", "pln": ["(: cnet_isa_f7d574addf (IsA defeatism resignation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "defeatist is a kind of pessimist", "pln": ["(: cnet_isa_ef402ab5d1 (IsA defeatist pessimist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defecation is a kind of elimination", "pln": ["(: cnet_isa_d391c7dc1d (IsA defecation elimination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defecation reflex is a kind of reflex", "pln": ["(: cnet_isa_3cf77feb35 (IsA defecation_reflex reflex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defecator is a kind of person", "pln": ["(: cnet_isa_15728cdf44 (IsA defecator person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defect is a kind of disadvantage", "pln": ["(: cnet_isa_122795132c (IsA defect disadvantage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defect is a kind of imperfection", "pln": ["(: cnet_isa_24c1a9ec5a (IsA defect imperfection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defective pleading is a kind of pleading", "pln": ["(: cnet_isa_95aabfb946 (IsA defective_pleading pleading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "defectiveness is a kind of imperfection", "pln": ["(: cnet_isa_18d6a7e9e8 (IsA defectiveness imperfection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defence is a kind of protection", "pln": ["(: cnet_isa_4257442969 (IsA defence protection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defendant is a kind of litigant", "pln": ["(: cnet_isa_d0724117bd (IsA defendant litigant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defender is a kind of combatant", "pln": ["(: cnet_isa_c01b27cfa9 (IsA defender combatant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defender is a kind of preserver", "pln": ["(: cnet_isa_4ea44319e8 (IsA defender preserver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defender of faith is a kind of title", "pln": ["(: cnet_isa_4b76163e31 (IsA defender_of_faith title) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defenestration is a kind of ejection", "pln": ["(: cnet_isa_7078edc414 (IsA defenestration ejection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defense is a kind of protection", "pln": ["(: cnet_isa_f2f7c5b700 (IsA defense protection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defense is a kind of justification", "pln": ["(: cnet_isa_63cc8bf2a1 (IsA defense justification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defense is a kind of collection", "pln": ["(: cnet_isa_4b25b51c05 (IsA defense collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defense is a kind of organization", "pln": ["(: cnet_isa_9b29de68fe (IsA defense organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "defense is a kind of due process", "pln": ["(: cnet_isa_669c8cf7ba (IsA defense due_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defense is a kind of military action", "pln": ["(: cnet_isa_1a06dc70c8 (IsA defense military_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defense is a kind of team", "pln": ["(: cnet_isa_dd575e5380 (IsA defense team) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defense advanced research project agency is a kind of agency", "pln": ["(: cnet_isa_5f5828a454 (IsA defense_advanced_research_project_agency agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defense attorney is a kind of lawyer", "pln": ["(: cnet_isa_ee08c0006e (IsA defense_attorney lawyer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defense contractor is a kind of contractor", "pln": ["(: cnet_isa_b1f5349151 (IsA defense_contractor contractor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defense information system agency is a kind of agency", "pln": ["(: cnet_isa_f0dd8b8694 (IsA defense_information_system_agency agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defense intelligence agency is a kind of military intelligence", "pln": ["(: cnet_isa_8299c6bc45 (IsA defense_intelligence_agency military_intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defense intelligence agency is a kind of united state intelligence agency", "pln": ["(: cnet_isa_fde0bf5836 (IsA defense_intelligence_agency united_state_intelligence_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defense laboratory is a kind of lab", "pln": ["(: cnet_isa_565e03b7d1 (IsA defense_laboratory lab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defense logistic agency is a kind of agency", "pln": ["(: cnet_isa_7fe2c9cf4b (IsA defense_logistic_agency agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defense mechanism is a kind of process", "pln": ["(: cnet_isa_2c90e53447 (IsA defense_mechanism process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defense mechanism is a kind of psychoanalytic process", "pln": ["(: cnet_isa_cac4b940be (IsA defense_mechanism psychoanalytic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defense program is a kind of program", "pln": ["(: cnet_isa_8ba9ed7cc3 (IsA defense_program program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defense reutilization and marketing service is a kind of agency", "pln": ["(: cnet_isa_dc3e83dc82 (IsA defense_reutilization_and_marketing_service agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defense secretary is a kind of secretary", "pln": ["(: cnet_isa_5aa6984ff5 (IsA defense_secretary secretary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defense system is a kind of weaponry", "pln": ["(: cnet_isa_fdf05a26f8 (IsA defense_system weaponry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defense technical information center is a kind of agency", "pln": ["(: cnet_isa_582e8161e6 (IsA defense_technical_information_center agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defenselessness is a kind of vulnerability", "pln": ["(: cnet_isa_d54e07bc58 (IsA defenselessness vulnerability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defensibility is a kind of capability", "pln": ["(: cnet_isa_3f87ee1457 (IsA defensibility capability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defensive is a kind of attitude", "pln": ["(: cnet_isa_50e0950ab1 (IsA defensive attitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defensive structure is a kind of structure", "pln": ["(: cnet_isa_92b0ec8e04 (IsA defensive_structure structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defensiveness is a kind of sensitivity", "pln": ["(: cnet_isa_d741f58eb3 (IsA defensiveness sensitivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deference is a kind of politeness", "pln": ["(: cnet_isa_9a079b9aba (IsA deference politeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "deference is a kind of courtesy", "pln": ["(: cnet_isa_40131c9052 (IsA deference courtesy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deferral is a kind of abeyance", "pln": ["(: cnet_isa_9a5982841c (IsA deferral abeyance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defervescence is a kind of suspension", "pln": ["(: cnet_isa_544318d8aa (IsA defervescence suspension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defiance is a kind of resistance", "pln": ["(: cnet_isa_74c71ad1ba (IsA defiance resistance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "defiance is a kind of intractability", "pln": ["(: cnet_isa_42fa0d0e94 (IsA defiance intractability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defiance is a kind of challenge", "pln": ["(: cnet_isa_be987038bd (IsA defiance challenge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "defibrillation is a kind of medical care", "pln": ["(: cnet_isa_90330eff16 (IsA defibrillation medical_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defibrillator is a kind of electronic device", "pln": ["(: cnet_isa_a3571a5bea (IsA defibrillator electronic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deficiency disease is a kind of disease", "pln": ["(: cnet_isa_10d9f1fa17 (IsA deficiency_disease disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deficit is a kind of insufficiency", "pln": ["(: cnet_isa_2d87be9c0d (IsA deficit insufficiency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deficit is a kind of liability", "pln": ["(: cnet_isa_4780f69e67 (IsA deficit liability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deficit is a kind of score", "pln": ["(: cnet_isa_c08258f86f (IsA deficit score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deficit is a kind of lack", "pln": ["(: cnet_isa_6ebe5d57df (IsA deficit lack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deficit spending is a kind of spending", "pln": ["(: cnet_isa_0777f38b38 (IsA deficit_spending spending) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defilade is a kind of fortification", "pln": ["(: cnet_isa_4dd94ff402 (IsA defilade fortification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defile is a kind of pass", "pln": ["(: cnet_isa_0269b5960e (IsA defile pass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "definite article is a kind of article", "pln": ["(: cnet_isa_c3097f4114 (IsA definite_article article) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "definite integral is a kind of integral", "pln": ["(: cnet_isa_555b4bfc27 (IsA definite_integral integral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "definite quantity is a kind of measure", "pln": ["(: cnet_isa_a71285c13c (IsA definite_quantity measure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "definition is a kind of distinctness", "pln": ["(: cnet_isa_6ea346ce95 (IsA definition distinctness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "definition is a kind of explanation", "pln": ["(: cnet_isa_5266cd3d15 (IsA definition explanation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "definitive host is a kind of host", "pln": ["(: cnet_isa_57d817e3a5 (IsA definitive_host host) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deflagration is a kind of combustion", "pln": ["(: cnet_isa_68cd453d1a (IsA deflagration combustion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deflation is a kind of decrease", "pln": ["(: cnet_isa_ca7285fedc (IsA deflation decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "deflation is a kind of erosion", "pln": ["(: cnet_isa_9b4410f426 (IsA deflation erosion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deflation is a kind of economic process", "pln": ["(: cnet_isa_dd5cda3c45 (IsA deflation economic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deflationary spiral is a kind of spiral", "pln": ["(: cnet_isa_d8f486ab6a (IsA deflationary_spiral spiral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deflator is a kind of factor", "pln": ["(: cnet_isa_fafb28276d (IsA deflator factor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deflection is a kind of physical property", "pln": ["(: cnet_isa_81730f9e80 (IsA deflection physical_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deflection is a kind of bending", "pln": ["(: cnet_isa_c729c7f2c2 (IsA deflection bending) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deflection is a kind of movement", "pln": ["(: cnet_isa_63fa1b1f0b (IsA deflection movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deflection is a kind of aberrance", "pln": ["(: cnet_isa_e4d7d18cf0 (IsA deflection aberrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deflector is a kind of device", "pln": ["(: cnet_isa_a0a6ac76ed (IsA deflector device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defloration is a kind of damage", "pln": ["(: cnet_isa_7204066a0e (IsA defloration damage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defloration is a kind of sexual intercourse", "pln": ["(: cnet_isa_90c4169e0c (IsA defloration sexual_intercourse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defoliant is a kind of compound", "pln": ["(: cnet_isa_af764b8d80 (IsA defoliant compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defoliation is a kind of change of state", "pln": ["(: cnet_isa_d185ad1daf (IsA defoliation change_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defoliation is a kind of organic process", "pln": ["(: cnet_isa_c874e69037 (IsA defoliation organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defoliator is a kind of insect", "pln": ["(: cnet_isa_d470a1069a (IsA defoliator insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deforestation is a kind of denudation", "pln": ["(: cnet_isa_06789af2ef (IsA deforestation denudation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deforestation is a kind of environmental condition", "pln": ["(: cnet_isa_f864f0b54f (IsA deforestation environmental_condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deformation is a kind of change", "pln": ["(: cnet_isa_853cc19434 (IsA deformation change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deformity is a kind of affliction", "pln": ["(: cnet_isa_5ddd515ad0 (IsA deformity affliction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "defroster is a kind of heater", "pln": ["(: cnet_isa_0c4450bd21 (IsA defroster heater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "degaussing is a kind of demagnetization", "pln": ["(: cnet_isa_cf9a4fe9bb (IsA degaussing demagnetization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "degeneracy is a kind of abasement", "pln": ["(: cnet_isa_8cc1d7f399 (IsA degeneracy abasement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "degeneration is a kind of transformation", "pln": ["(: cnet_isa_654b63f83f (IsA degeneration transformation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "degeneration is a kind of process", "pln": ["(: cnet_isa_a723259fcb (IsA degeneration process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "degenerative disorder is a kind of disorder", "pln": ["(: cnet_isa_00676bb673 (IsA degenerative_disorder disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "degradation is a kind of change of state", "pln": ["(: cnet_isa_29c2051e43 (IsA degradation change_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "degree is a kind of magnitude", "pln": ["(: cnet_isa_11cfe9dbb0 (IsA degree magnitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "degree is a kind of property", "pln": ["(: cnet_isa_d10b4e8c80 (IsA degree property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "degree is a kind of exponent", "pln": ["(: cnet_isa_fef2cef604 (IsA degree exponent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "degree is a kind of angular unit", "pln": ["(: cnet_isa_a907037127 (IsA degree angular_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "degree is a kind of temperature unit", "pln": ["(: cnet_isa_f02ab6ba87 (IsA degree temperature_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "degree is a kind of state", "pln": ["(: cnet_isa_88e38e4c84 (IsA degree state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "degree centigrade is a kind of degree", "pln": ["(: cnet_isa_ddb904fdeb (IsA degree_centigrade degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "degree day is a kind of temperature unit", "pln": ["(: cnet_isa_aa5d95fe36 (IsA degree_day temperature_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "degree fahrenheit is a kind of degree", "pln": ["(: cnet_isa_08e4e4528b (IsA degree_fahrenheit degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "degree of freedom is a kind of parameter", "pln": ["(: cnet_isa_d16c84f082 (IsA degree_of_freedom parameter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "degree of freedom is a kind of variable", "pln": ["(: cnet_isa_50eb2b667d (IsA degree_of_freedom variable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "degree of polynomial is a kind of degree", "pln": ["(: cnet_isa_52be788536 (IsA degree_of_polynomial degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "degree of term is a kind of degree", "pln": ["(: cnet_isa_acc7f2ccbf (IsA degree_of_term degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "degree program is a kind of course of study", "pln": ["(: cnet_isa_b7c96b073c (IsA degree_program course_of_study) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "degressive tax is a kind of tax", "pln": ["(: cnet_isa_b7fbe25d84 (IsA degressive_tax tax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dehiscence is a kind of organic phenomenon", "pln": ["(: cnet_isa_56d6d2d403 (IsA dehiscence organic_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dehumanization is a kind of degradation", "pln": ["(: cnet_isa_8970007899 (IsA dehumanization degradation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dehumidifier is a kind of appliance", "pln": ["(: cnet_isa_a36fc6bc42 (IsA dehumidifier appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dehydrated food is a kind of foodstuff", "pln": ["(: cnet_isa_4de0a7a162 (IsA dehydrated_food foodstuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dehydration is a kind of extraction", "pln": ["(: cnet_isa_62c64af142 (IsA dehydration extraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dehydration is a kind of dryness", "pln": ["(: cnet_isa_60de345507 (IsA dehydration dryness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dehydration is a kind of thirst", "pln": ["(: cnet_isa_6839679948 (IsA dehydration thirst) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deictic is a kind of word", "pln": ["(: cnet_isa_c8f4982b6b (IsA deictic word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deification is a kind of worship", "pln": ["(: cnet_isa_57c186b5b5 (IsA deification worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deification is a kind of embodiment", "pln": ["(: cnet_isa_b28063826c (IsA deification embodiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deification is a kind of condition", "pln": ["(: cnet_isa_272832e43e (IsA deification condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deinocheirus is a kind of ornithomimid", "pln": ["(: cnet_isa_4a401cb43b (IsA deinocheirus ornithomimid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "deinonychus is a kind of maniraptor", "pln": ["(: cnet_isa_c0120ec285 (IsA deinonychus maniraptor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deipnosophist is a kind of conversationalist", "pln": ["(: cnet_isa_6a7ada13f3 (IsA deipnosophist conversationalist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deism is a kind of rationalism", "pln": ["(: cnet_isa_21db1a5c98 (IsA deism rationalism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "deist is a kind of nonreligious person", "pln": ["(: cnet_isa_e1d82befe4 (IsA deist nonreligious_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deity is a kind of spiritual being", "pln": ["(: cnet_isa_f83f1b8a8e (IsA deity spiritual_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deixis is a kind of semantic", "pln": ["(: cnet_isa_6322b86cc3 (IsA deixis semantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deja vu is a kind of reminder", "pln": ["(: cnet_isa_9a156fbeb6 (IsA deja_vu reminder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dejection is a kind of depression", "pln": ["(: cnet_isa_4804b42aef (IsA dejection depression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dekagram is a kind of metric weight unit", "pln": ["(: cnet_isa_e13d1ca43e (IsA dekagram metric_weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dekaliter is a kind of metric capacity unit", "pln": ["(: cnet_isa_1bba7c6974 (IsA dekaliter metric_capacity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dekko is a kind of look", "pln": ["(: cnet_isa_bc98f63df9 (IsA dekko look) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delairea is a kind of asterid dicot genus", "pln": ["(: cnet_isa_8f55fc88c5 (IsA delairea asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delaware is a kind of state", "pln": ["(: cnet_isa_c0530d1bd6 (IsA delaware state) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delaware is a kind of algonquian", "pln": ["(: cnet_isa_3d6215418d (IsA delaware algonquian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delaware is a kind of algonquin", "pln": ["(: cnet_isa_59f6e3f855 (IsA delaware algonquin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delawarian is a kind of american", "pln": ["(: cnet_isa_c17b47e42c (IsA delawarian american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delay is a kind of inactivity", "pln": ["(: cnet_isa_3e01cde31b (IsA delay inactivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delay is a kind of pause", "pln": ["(: cnet_isa_ebfb25491a (IsA delay pause) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delay line is a kind of circuit", "pln": ["(: cnet_isa_a840a88e47 (IsA delay_line circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delayed action is a kind of mechanism", "pln": ["(: cnet_isa_329f1cab49 (IsA delayed_action mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delayed allergy is a kind of allergy", "pln": ["(: cnet_isa_7d27231dbe (IsA delayed_allergy allergy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delayer is a kind of person", "pln": ["(: cnet_isa_d5429eaa10 (IsA delayer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delectability is a kind of appetizingness", "pln": ["(: cnet_isa_3d8e25709c (IsA delectability appetizingness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delegacy is a kind of appointment", "pln": ["(: cnet_isa_2a3fa5aa32 (IsA delegacy appointment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delegate is a kind of representative", "pln": ["(: cnet_isa_43358d91d1 (IsA delegate representative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delegating is a kind of authorization", "pln": ["(: cnet_isa_80436a7a6d (IsA delegating authorization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deletion is a kind of removal", "pln": ["(: cnet_isa_3b05fa2c23 (IsA deletion removal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deletion is a kind of editing", "pln": ["(: cnet_isa_499556ddb1 (IsA deletion editing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "deletion is a kind of mutation", "pln": ["(: cnet_isa_c96e8aca2d (IsA deletion mutation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delf is a kind of excavation", "pln": ["(: cnet_isa_398c9c8b43 (IsA delf excavation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delft is a kind of earthenware", "pln": ["(: cnet_isa_92e1d1f53a (IsA delft earthenware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deli restaurant is a kind of place to get food quickly", "pln": ["(: cnet_isa_ede835b12e (IsA deli_restaurant place_to_get_food_quickly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deliberate defense is a kind of defense", "pln": ["(: cnet_isa_62b18ea4bb (IsA deliberate_defense defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deliberation is a kind of thoughtfulness", "pln": ["(: cnet_isa_b8ea15bd57 (IsA deliberation thoughtfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deliberation is a kind of consideration", "pln": ["(: cnet_isa_bb61d38a20 (IsA deliberation consideration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deliberation is a kind of discussion", "pln": ["(: cnet_isa_5236ef7c88 (IsA deliberation discussion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deliberative assembly is a kind of assembly", "pln": ["(: cnet_isa_dce2c83bec (IsA deliberative_assembly assembly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delicacy is a kind of smallness", "pln": ["(: cnet_isa_8fc01f0a6b (IsA delicacy smallness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delicacy is a kind of tact", "pln": ["(: cnet_isa_a685de146c (IsA delicacy tact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delicacy is a kind of taste", "pln": ["(: cnet_isa_a00cae8ee2 (IsA delicacy taste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delicatessen is a kind of shop", "pln": ["(: cnet_isa_19cddfc6d6 (IsA delicatessen shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delicatessen is a kind of convenience food", "pln": ["(: cnet_isa_cb905bdb78 (IsA delicatessen convenience_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delichon is a kind of bird genus", "pln": ["(: cnet_isa_11fc7ac251 (IsA delichon bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delicious is a kind of eating apple", "pln": ["(: cnet_isa_b487b74518 (IsA delicious eating_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delight is a kind of pleasure", "pln": ["(: cnet_isa_9cccc71957 (IsA delight pleasure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delineation is a kind of drawing", "pln": ["(: cnet_isa_01c79ab5d4 (IsA delineation drawing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delinquency is a kind of negligence", "pln": ["(: cnet_isa_d306110dc8 (IsA delinquency negligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "delinquency is a kind of misbehavior", "pln": ["(: cnet_isa_07ee0c2d07 (IsA delinquency misbehavior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "delusions of grandeur is a kind of delusion", "pln": ["(: cnet_isa_6c34a26d20 (IsA delusions_of_grandeur delusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delinquency is a kind of nonpayment", "pln": ["(: cnet_isa_dd5968a0a4 (IsA delinquency nonpayment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delinquent is a kind of wrongdoer", "pln": ["(: cnet_isa_d8747c8176 (IsA delinquent wrongdoer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delirium is a kind of mental disorder", "pln": ["(: cnet_isa_5fe916c67f (IsA delirium mental_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delirium tremen is a kind of psychosis", "pln": ["(: cnet_isa_b78ac085f1 (IsA delirium_tremen psychosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deliverable is a kind of product", "pln": ["(: cnet_isa_01103f3c21 (IsA deliverable product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deliverer is a kind of person", "pln": ["(: cnet_isa_44fdf431c9 (IsA deliverer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delivery is a kind of act", "pln": ["(: cnet_isa_41350a06e6 (IsA delivery act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delivery is a kind of conveyance", "pln": ["(: cnet_isa_fe9d122011 (IsA delivery conveyance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delivery is a kind of transportation", "pln": ["(: cnet_isa_503cc536a2 (IsA delivery transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delivery is a kind of birth", "pln": ["(: cnet_isa_a92ca5633a (IsA delivery birth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delivery truck is a kind of van", "pln": ["(: cnet_isa_cf722e57f5 (IsA delivery_truck van) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deliveryman is a kind of employee", "pln": ["(: cnet_isa_3bb5343ab0 (IsA deliveryman employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dell is a kind of hollow", "pln": ["(: cnet_isa_16ca6ddef1 (IsA dell hollow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delmonico steak is a kind of beefsteak", "pln": ["(: cnet_isa_7ac703a637 (IsA delmonico_steak beefsteak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delonix is a kind of rosid dicot genus", "pln": ["(: cnet_isa_cb81b7eeac (IsA delonix rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delphinapterus is a kind of mammal genus", "pln": ["(: cnet_isa_fcb6368853 (IsA delphinapterus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delphinidae is a kind of mammal family", "pln": ["(: cnet_isa_7f2851cd31 (IsA delphinidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delphinium is a kind of flower", "pln": ["(: cnet_isa_82cd9a5887 (IsA delphinium flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delphinus is a kind of mammal genus", "pln": ["(: cnet_isa_3de58475e8 (IsA delphinus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delta is a kind of letter", "pln": ["(: cnet_isa_6a2ec5146f (IsA delta letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delta is a kind of alluvial sediment", "pln": ["(: cnet_isa_c2a8ee64ec (IsA delta alluvial_sediment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delta is a kind of geological formation", "pln": ["(: cnet_isa_96e55d4a3c (IsA delta geological_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delta is a kind of equilateral triangle", "pln": ["(: cnet_isa_5018fd6af3 (IsA delta equilateral_triangle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delta iron is a kind of iron", "pln": ["(: cnet_isa_91db2dcd10 (IsA delta_iron iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delta ray is a kind of electron", "pln": ["(: cnet_isa_a22d28a9cc (IsA delta_ray electron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delta rhythm is a kind of brainwave", "pln": ["(: cnet_isa_66e9174bad (IsA delta_rhythm brainwave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delta wing is a kind of airplane", "pln": ["(: cnet_isa_510acbeccf (IsA delta_wing airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deltoid is a kind of skeletal muscle", "pln": ["(: cnet_isa_cd53615fe5 (IsA deltoid skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deltoid leaf is a kind of simple leaf", "pln": ["(: cnet_isa_28be068218 (IsA deltoid_leaf simple_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deltoid tuberosity is a kind of tuberosity", "pln": ["(: cnet_isa_08a6449386 (IsA deltoid_tuberosity tuberosity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delusion is a kind of deception", "pln": ["(: cnet_isa_c485006306 (IsA delusion deception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delusion is a kind of misconception", "pln": ["(: cnet_isa_950e52753b (IsA delusion misconception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delusion is a kind of psychological state", "pln": ["(: cnet_isa_cd15d1f8d8 (IsA delusion psychological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delusional disorder is a kind of mental disorder", "pln": ["(: cnet_isa_91246d109e (IsA delusional_disorder mental_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delusion of grandeur is a kind of delusion", "pln": ["(: cnet_isa_d1212ca501 (IsA delusion_of_grandeur delusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "delusion of persecution is a kind of delusion", "pln": ["(: cnet_isa_5f1e14ff10 (IsA delusion_of_persecution delusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "demagnetization is a kind of natural process", "pln": ["(: cnet_isa_ae4927964b (IsA demagnetization natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demagogue is a kind of politician", "pln": ["(: cnet_isa_3c1aff613f (IsA demagogue politician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demagoguery is a kind of entreaty", "pln": ["(: cnet_isa_6a83d764c2 (IsA demagoguery entreaty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demand is a kind of activity", "pln": ["(: cnet_isa_49e881893d (IsA demand activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demand is a kind of request", "pln": ["(: cnet_isa_81e722af8c (IsA demand request) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demand is a kind of economic process", "pln": ["(: cnet_isa_8bea160ad5 (IsA demand economic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demand deposit is a kind of deposit", "pln": ["(: cnet_isa_78d5af8179 (IsA demand_deposit deposit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demand feeding is a kind of infant feeding", "pln": ["(: cnet_isa_a998324378 (IsA demand_feeding infant_feeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demand for identification is a kind of challenge", "pln": ["(: cnet_isa_a277e1b5cd (IsA demand_for_identification challenge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demand note is a kind of note", "pln": ["(: cnet_isa_52b7f5ee07 (IsA demand_note note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demand pull inflation is a kind of inflation", "pln": ["(: cnet_isa_74946dde2c (IsA demand_pull_inflation inflation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demander is a kind of person", "pln": ["(: cnet_isa_d065051e1f (IsA demander person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demantoid is a kind of andradite", "pln": ["(: cnet_isa_3e5f64436b (IsA demantoid andradite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demarche is a kind of move", "pln": ["(: cnet_isa_04ebbf6a5a (IsA demarche move) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dematiaceae is a kind of fungus family", "pln": ["(: cnet_isa_c260ea6adb (IsA dematiaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demeanor is a kind of trait", "pln": ["(: cnet_isa_d4c56019c8 (IsA demeanor trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dementia is a kind of insanity", "pln": ["(: cnet_isa_ee816528bc (IsA dementia insanity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demerara is a kind of brown sugar", "pln": ["(: cnet_isa_dfd9740c1f (IsA demerara brown_sugar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demerara is a kind of rum", "pln": ["(: cnet_isa_15746716a8 (IsA demerara rum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demerara is a kind of cane sugar", "pln": ["(: cnet_isa_f3c90958e7 (IsA demerara cane_sugar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demerit is a kind of worth", "pln": ["(: cnet_isa_5b59d237c4 (IsA demerit worth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "demerit is a kind of mark", "pln": ["(: cnet_isa_0e088bffea (IsA demerit mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demiglace is a kind of sauce", "pln": ["(: cnet_isa_286e49caf1 (IsA demiglace sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demigod is a kind of leader", "pln": ["(: cnet_isa_365d383736 (IsA demigod leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demijohn is a kind of bottle", "pln": ["(: cnet_isa_099949a63e (IsA demijohn bottle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "demilitarized zone is a kind of zone", "pln": ["(: cnet_isa_f8bb819f98 (IsA demilitarized_zone zone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demimondaine is a kind of prostitute", "pln": ["(: cnet_isa_3bc2057076 (IsA demimondaine prostitute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demimonde is a kind of class", "pln": ["(: cnet_isa_4df998bb4b (IsA demimonde class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demineralization is a kind of chemical process", "pln": ["(: cnet_isa_9341729cab (IsA demineralization chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demineralization is a kind of pathology", "pln": ["(: cnet_isa_177f8c444a (IsA demineralization pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demister is a kind of heater", "pln": ["(: cnet_isa_378ef619d5 (IsA demister heater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demitasse is a kind of coffee cup", "pln": ["(: cnet_isa_e9bc5bc409 (IsA demitasse coffee_cup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demiurge is a kind of deity", "pln": ["(: cnet_isa_abb0504dd0 (IsA demiurge deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demobilization is a kind of social control", "pln": ["(: cnet_isa_a21a84c855 (IsA demobilization social_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "democracy is a kind of form of government", "pln": ["(: cnet_isa_64e8bac106 (IsA democracy form_of_government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "democracy is a kind of good thing", "pln": ["(: cnet_isa_da087f411d (IsA democracy good_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "democracy is a kind of political orientation", "pln": ["(: cnet_isa_bf6bede44c (IsA democracy political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "democracy is a kind of political system", "pln": ["(: cnet_isa_1f229200ea (IsA democracy political_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "democrat is a kind of advocate", "pln": ["(: cnet_isa_e401f7765e (IsA democrat advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "democrat is a kind of politician", "pln": ["(: cnet_isa_d4828d414e (IsA democrat politician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "democratic party is a kind of party", "pln": ["(: cnet_isa_d515d8aa59 (IsA democratic_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "democratic republican party is a kind of party", "pln": ["(: cnet_isa_29d2e0f56a (IsA democratic_republican_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "democratization is a kind of group action", "pln": ["(: cnet_isa_9d8a00a288 (IsA democratization group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demodulation is a kind of reception", "pln": ["(: cnet_isa_59e7390dc5 (IsA demodulation reception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demographer is a kind of sociologist", "pln": ["(: cnet_isa_bbfc1065b5 (IsA demographer sociologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demographic is a kind of statistic", "pln": ["(: cnet_isa_eceb4edec8 (IsA demographic statistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demography is a kind of sociology", "pln": ["(: cnet_isa_d5c08e9946 (IsA demography sociology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demolition is a kind of destruction", "pln": ["(: cnet_isa_99a7b1762c (IsA demolition destruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demon is a kind of actor", "pln": ["(: cnet_isa_00bb3060a2 (IsA demon actor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demonetization is a kind of termination", "pln": ["(: cnet_isa_81d24f7230 (IsA demonetization termination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demoniac is a kind of monster", "pln": ["(: cnet_isa_160bdb025f (IsA demoniac monster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demonization is a kind of disapprobation", "pln": ["(: cnet_isa_927d67d089 (IsA demonization disapprobation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demonstrability is a kind of indisputability", "pln": ["(: cnet_isa_fb690a122f (IsA demonstrability indisputability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demonstration is a kind of proof", "pln": ["(: cnet_isa_b8fc4cbeac (IsA demonstration proof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demonstration is a kind of visual communication", "pln": ["(: cnet_isa_ba1759c7af (IsA demonstration visual_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demonstration is a kind of show", "pln": ["(: cnet_isa_0af0731986 (IsA demonstration show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demonstration is a kind of protest", "pln": ["(: cnet_isa_43fafe0d00 (IsA demonstration protest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demonstrative pronoun is a kind of pronoun", "pln": ["(: cnet_isa_f0244f36a6 (IsA demonstrative_pronoun pronoun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demonstrativeness is a kind of emotionality", "pln": ["(: cnet_isa_d69ff28b04 (IsA demonstrativeness emotionality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "demonstrator is a kind of reformer", "pln": ["(: cnet_isa_3c589777cf (IsA demonstrator reformer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demonstrator is a kind of salesperson", "pln": ["(: cnet_isa_3456343786 (IsA demonstrator salesperson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demonstrator is a kind of teacher", "pln": ["(: cnet_isa_00c3ffdfdc (IsA demonstrator teacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demoralization is a kind of degradation", "pln": ["(: cnet_isa_9e6289399a (IsA demoralization degradation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demoralization is a kind of depression", "pln": ["(: cnet_isa_3944c60ce9 (IsA demoralization depression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demoralization is a kind of confusion", "pln": ["(: cnet_isa_7352aaa66e (IsA demoralization confusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demotic script is a kind of hieratic", "pln": ["(: cnet_isa_83a7e8a2e8 (IsA demotic_script hieratic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demotion is a kind of change", "pln": ["(: cnet_isa_e953b87b44 (IsA demotion change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demulcent is a kind of medicine", "pln": ["(: cnet_isa_732150e6a2 (IsA demulcent medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demur is a kind of objection", "pln": ["(: cnet_isa_ba1f36fc6a (IsA demur objection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demureness is a kind of modesty", "pln": ["(: cnet_isa_dd945e1c46 (IsA demureness modesty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demurrage is a kind of delay", "pln": ["(: cnet_isa_14f3e71b4a (IsA demurrage delay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demurrage is a kind of charge", "pln": ["(: cnet_isa_127037c848 (IsA demurrage charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demurrer is a kind of pleading", "pln": ["(: cnet_isa_80dafdf94e (IsA demurrer pleading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demyelination is a kind of degenerative disorder", "pln": ["(: cnet_isa_61993c0c69 (IsA demyelination degenerative_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "demythologization is a kind of restatement", "pln": ["(: cnet_isa_e18eeb92f2 (IsA demythologization restatement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "den is a kind of room", "pln": ["(: cnet_isa_5ff67d3cdd (IsA den room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "den is a kind of unit", "pln": ["(: cnet_isa_1cd20d0f71 (IsA den unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "den mother is a kind of chaperon", "pln": ["(: cnet_isa_4c9ff5c907 (IsA den_mother chaperon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "den mother is a kind of supervisor", "pln": ["(: cnet_isa_0885b1e72c (IsA den_mother supervisor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "denationalization is a kind of social control", "pln": ["(: cnet_isa_ae58101b4e (IsA denationalization social_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "denaturant is a kind of substance", "pln": ["(: cnet_isa_63ae54f038 (IsA denaturant substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "denatured alcohol is a kind of ethyl alcohol", "pln": ["(: cnet_isa_9293369e61 (IsA denatured_alcohol ethyl_alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "denazification is a kind of social process", "pln": ["(: cnet_isa_a2697d4649 (IsA denazification social_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dendranthema is a kind of asterid dicot genus", "pln": ["(: cnet_isa_9b7c7fe3eb (IsA dendranthema asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "dendrology is a kind of systematics", "pln": ["(: cnet_isa_ec98e84fcf (IsA dendrology systematics) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dendrite is a kind of nerve fiber", "pln": ["(: cnet_isa_84b351a606 (IsA dendrite nerve_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dendroaspis is a kind of reptile genus", "pln": ["(: cnet_isa_36b0640641 (IsA dendroaspis reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dendrobium is a kind of orchid", "pln": ["(: cnet_isa_5728cc30d2 (IsA dendrobium orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dendrocalamus is a kind of monocot genus", "pln": ["(: cnet_isa_0c1868281e (IsA dendrocalamus monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dendrocolapte is a kind of bird genus", "pln": ["(: cnet_isa_a15c378614 (IsA dendrocolapte bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dendrocolaptidae is a kind of bird family", "pln": ["(: cnet_isa_c3280511ba (IsA dendrocolaptidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dendroctonus is a kind of arthropod genus", "pln": ["(: cnet_isa_7b74aa21c4 (IsA dendroctonus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dendroica is a kind of bird genus", "pln": ["(: cnet_isa_206644496a (IsA dendroica bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dendrolagus is a kind of mammal genus", "pln": ["(: cnet_isa_995c11ee27 (IsA dendrolagus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dendrology is a kind of systematic", "pln": ["(: cnet_isa_0e571c0626 (IsA dendrology systematic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dendromecon is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_f60f137713 (IsA dendromecon dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dengue is a kind of infectious disease", "pln": ["(: cnet_isa_da45be21d8 (IsA dengue infectious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "denial is a kind of assertion", "pln": ["(: cnet_isa_1d839ef054 (IsA denial assertion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "denial is a kind of speech act", "pln": ["(: cnet_isa_ab6603aea0 (IsA denial speech_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "denial is a kind of defense mechanism", "pln": ["(: cnet_isa_b756f32828 (IsA denial defense_mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "denier is a kind of disputant", "pln": ["(: cnet_isa_04fd06a4e9 (IsA denier disputant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "denier is a kind of coin", "pln": ["(: cnet_isa_402167abf9 (IsA denier coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "denier is a kind of unit of measurement", "pln": ["(: cnet_isa_82044f0b4d (IsA denier unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "denigration is a kind of disparagement", "pln": ["(: cnet_isa_d6b267f134 (IsA denigration disparagement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "denim is a kind of fabric", "pln": ["(: cnet_isa_019b10c64f (IsA denim fabric) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "denisonia is a kind of reptile genus", "pln": ["(: cnet_isa_d6e325e5ca (IsA denisonia reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "denizen is a kind of organism", "pln": ["(: cnet_isa_0b9f3e6815 (IsA denizen organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "denmark is a kind of country", "pln": ["(: cnet_isa_7a871298cf (IsA denmark country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dennstaedtia is a kind of fern genus", "pln": ["(: cnet_isa_5cb62d8a26 (IsA dennstaedtia fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dennstaedtiaceae is a kind of fern family", "pln": ["(: cnet_isa_e878453ebe (IsA dennstaedtiaceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "denomination is a kind of class", "pln": ["(: cnet_isa_44c4097e5c (IsA denomination class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "denomination is a kind of nongovernmental organization", "pln": ["(: cnet_isa_321bde2696 (IsA denomination nongovernmental_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "denominationalism is a kind of inclination", "pln": ["(: cnet_isa_46923aa4d9 (IsA denominationalism inclination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "denominator is a kind of divisor", "pln": ["(: cnet_isa_56c59986da (IsA denominator divisor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "denotatum is a kind of referent", "pln": ["(: cnet_isa_9bb58f8265 (IsA denotatum referent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "denouement is a kind of solution", "pln": ["(: cnet_isa_def01ab6be (IsA denouement solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "denouement is a kind of result", "pln": ["(: cnet_isa_956cb306ab (IsA denouement result) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dense blazing star is a kind of blazing star", "pln": ["(: cnet_isa_ef34bf6331 (IsA dense_blazing_star blazing_star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dense leaved elodea is a kind of waterweed", "pln": ["(: cnet_isa_c8c3bc8b39 (IsA dense_leaved_elodea waterweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "denseness is a kind of stupidity", "pln": ["(: cnet_isa_9a12e1747d (IsA denseness stupidity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "densiformis gem yew is a kind of plant", "pln": ["(: cnet_isa_f3844a941b (IsA densiformis_gem_yew plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "densimeter is a kind of measuring instrument", "pln": ["(: cnet_isa_22919c9f30 (IsA densimeter measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "densitometer is a kind of measuring instrument", "pln": ["(: cnet_isa_c8f505acbf (IsA densitometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "densitometry is a kind of measurement", "pln": ["(: cnet_isa_84816f18cb (IsA densitometry measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "density is a kind of spacing", "pln": ["(: cnet_isa_6c5f116274 (IsA density spacing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dent is a kind of blemish", "pln": ["(: cnet_isa_39a11b5687 (IsA dent blemish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dent is a kind of consequence", "pln": ["(: cnet_isa_fdcce8eb2a (IsA dent consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dent corn is a kind of field corn", "pln": ["(: cnet_isa_6b8c5ad7fd (IsA dent_corn field_corn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dental anatomy is a kind of gross anatomy", "pln": ["(: cnet_isa_c38802cb6c (IsA dental_anatomy gross_anatomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dental appliance is a kind of device", "pln": ["(: cnet_isa_2eb81be661 (IsA dental_appliance device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dental assistant is a kind of assistant", "pln": ["(: cnet_isa_7059d1c06d (IsA dental_assistant assistant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dental care is a kind of care", "pln": ["(: cnet_isa_898e032b64 (IsA dental_care care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dental floss is a kind of thread", "pln": ["(: cnet_isa_14fc81c7c2 (IsA dental_floss thread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dental gold is a kind of alloy", "pln": ["(: cnet_isa_2505a402d1 (IsA dental_gold alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dental hygienist is a kind of skilled worker", "pln": ["(: cnet_isa_6399f5fb0b (IsA dental_hygienist skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dental implant is a kind of implant", "pln": ["(: cnet_isa_18f3f7bc3c (IsA dental_implant implant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dental plaque is a kind of plaque", "pln": ["(: cnet_isa_ef415ba882 (IsA dental_plaque plaque) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dental practice is a kind of practice", "pln": ["(: cnet_isa_54b3766b4e (IsA dental_practice practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dental procedure is a kind of medical procedure", "pln": ["(: cnet_isa_2b2a7f350d (IsA dental_procedure medical_procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dental school is a kind of graduate school", "pln": ["(: cnet_isa_a45dfffc33 (IsA dental_school graduate_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dental surgeon is a kind of dentist", "pln": ["(: cnet_isa_009e5bfc01 (IsA dental_surgeon dentist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dental surgery is a kind of dentistry", "pln": ["(: cnet_isa_ea268618df (IsA dental_surgery dentistry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dental technician is a kind of technician", "pln": ["(: cnet_isa_32309328cb (IsA dental_technician technician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dentaria is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_b89ef541ca (IsA dentaria dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dentate leaf is a kind of leaf", "pln": ["(: cnet_isa_77cd089483 (IsA dentate_leaf leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dentate nucleus is a kind of nucleus", "pln": ["(: cnet_isa_333f36e814 (IsA dentate_nucleus nucleus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "denticle is a kind of tooth", "pln": ["(: cnet_isa_9f5e37843e (IsA denticle tooth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "denticulate leaf is a kind of dentate leaf", "pln": ["(: cnet_isa_125d7c1ae7 (IsA denticulate_leaf dentate_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dentifrice is a kind of cleansing agent", "pln": ["(: cnet_isa_3d5e7e555e (IsA dentifrice cleansing_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dentine is a kind of bone", "pln": ["(: cnet_isa_ae3b6af9cd (IsA dentine bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dentine is a kind of animal material", "pln": ["(: cnet_isa_fcb6119af4 (IsA dentine animal_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dentist s drill is a kind of drill", "pln": ["(: cnet_isa_56a08e5416 (IsA dentist_s_drill drill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dentist is a kind of medical practitioner", "pln": ["(: cnet_isa_f5c1e5af8f (IsA dentist medical_practitioner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dentistry is a kind of medicine", "pln": ["(: cnet_isa_8f9139d265 (IsA dentistry medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dentition is a kind of set", "pln": ["(: cnet_isa_05955d7e78 (IsA dentition set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "denture is a kind of dental appliance", "pln": ["(: cnet_isa_a9b75f453b (IsA denture dental_appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "denudation is a kind of removal", "pln": ["(: cnet_isa_cc1f8fcfb9 (IsA denudation removal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "denunciation is a kind of speech act", "pln": ["(: cnet_isa_8889c46794 (IsA denunciation speech_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deodar is a kind of cedar", "pln": ["(: cnet_isa_f5131f1d83 (IsA deodar cedar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deodorant is a kind of toiletry", "pln": ["(: cnet_isa_985aa26e2f (IsA deodorant toiletry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deontic logic is a kind of modal logic", "pln": ["(: cnet_isa_677dcab580 (IsA deontic_logic modal_logic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deossification is a kind of organic process", "pln": ["(: cnet_isa_72eefa6ea5 (IsA deossification organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deoxyadenosine is a kind of nucleoside", "pln": ["(: cnet_isa_0eaead7ea3 (IsA deoxyadenosine nucleoside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deoxyadenosine monophosphate is a kind of nucleotide", "pln": ["(: cnet_isa_3ee0601c20 (IsA deoxyadenosine_monophosphate nucleotide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deoxycytidine is a kind of nucleoside", "pln": ["(: cnet_isa_c214865b3c (IsA deoxycytidine nucleoside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "deoxycytidine monophosphate is a kind of nucleotide", "pln": ["(: cnet_isa_46f7a6d2d8 (IsA deoxycytidine_monophosphate nucleotide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "deoxyguanosine is a kind of nucleoside", "pln": ["(: cnet_isa_d66ed4843a (IsA deoxyguanosine nucleoside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deoxyguanosine monophosphate is a kind of nucleotide", "pln": ["(: cnet_isa_d601087d7f (IsA deoxyguanosine_monophosphate nucleotide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deoxyribonucleic acid is a kind of polymer", "pln": ["(: cnet_isa_53d7cdbca6 (IsA deoxyribonucleic_acid polymer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deoxyribose is a kind of carbohydrate", "pln": ["(: cnet_isa_fe3ac3f416 (IsA deoxyribose carbohydrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deoxythymidine is a kind of nucleoside", "pln": ["(: cnet_isa_02c1fda7cd (IsA deoxythymidine nucleoside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deoxythymidine monophosphate is a kind of nucleotide", "pln": ["(: cnet_isa_6bc8833c52 (IsA deoxythymidine_monophosphate nucleotide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deparia is a kind of fern genus", "pln": ["(: cnet_isa_22d9d5b717 (IsA deparia fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "departer is a kind of migrant", "pln": ["(: cnet_isa_07fcc8b41b (IsA departer migrant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "department is a kind of sector", "pln": ["(: cnet_isa_9afa65b2bf (IsA department sector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "department is a kind of division", "pln": ["(: cnet_isa_35ae7645a0 (IsA department division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "department is a kind of administrative district", "pln": ["(: cnet_isa_233b2df3e8 (IsA department administrative_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "department head is a kind of head", "pln": ["(: cnet_isa_1b8e815415 (IsA department_head head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "department of agriculture is a kind of executive department", "pln": ["(: cnet_isa_b5f9ccc600 (IsA department_of_agriculture executive_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "department of commerce is a kind of executive department", "pln": ["(: cnet_isa_9f6e3c03bd (IsA department_of_commerce executive_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "department of commerce and labor is a kind of executive department", "pln": ["(: cnet_isa_225cc1c0d4 (IsA department_of_commerce_and_labor executive_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "department of computer science is a kind of academic department", "pln": ["(: cnet_isa_1554781130 (IsA department_of_computer_science academic_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "department of health and human services is a kind of executive department", "pln": ["(: cnet_isa_ba43ead6fb (IsA department_of_health_and_human_services executive_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "department of defense is a kind of executive department", "pln": ["(: cnet_isa_78e0679297 (IsA department_of_defense executive_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "department of defense laboratory system is a kind of agency", "pln": ["(: cnet_isa_9936e6eefc (IsA department_of_defense_laboratory_system agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "department of education is a kind of executive department", "pln": ["(: cnet_isa_8eda031319 (IsA department_of_education executive_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "department of energy is a kind of executive department", "pln": ["(: cnet_isa_67bafa6098 (IsA department_of_energy executive_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "department of energy intelligence is a kind of agency", "pln": ["(: cnet_isa_2d5c4d9716 (IsA department_of_energy_intelligence agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "department of health and human service is a kind of executive department", "pln": ["(: cnet_isa_13b8994985 (IsA department_of_health_and_human_service executive_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "department of health education and welfare is a kind of executive department", "pln": ["(: cnet_isa_58748e6183 (IsA department_of_health_education_and_welfare executive_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "department of housing and urban development is a kind of executive department", "pln": ["(: cnet_isa_0c9857bb4e (IsA department_of_housing_and_urban_development executive_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "department of interior is a kind of executive department", "pln": ["(: cnet_isa_cf5cb1c345 (IsA department_of_interior executive_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "department of justice is a kind of executive department", "pln": ["(: cnet_isa_c3f030a826 (IsA department_of_justice executive_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "department of justice canada is a kind of international law enforcement agency", "pln": ["(: cnet_isa_c73f77d7b7 (IsA department_of_justice_canada international_law_enforcement_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "department of labor is a kind of executive department", "pln": ["(: cnet_isa_d83314bc4d (IsA department_of_labor executive_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "department of state is a kind of executive department", "pln": ["(: cnet_isa_56ab673c8b (IsA department_of_state executive_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "department of transportation is a kind of executive department", "pln": ["(: cnet_isa_14b08b458a (IsA department_of_transportation executive_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "department of treasury is a kind of executive department", "pln": ["(: cnet_isa_6dee45c88d (IsA department_of_treasury executive_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "department of veteran affair is a kind of executive department", "pln": ["(: cnet_isa_9776be8b91 (IsA department_of_veteran_affair executive_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "department store is a kind of mercantile establishment", "pln": ["(: cnet_isa_a62b540b47 (IsA department_store mercantile_establishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "departure is a kind of act", "pln": ["(: cnet_isa_519750fc29 (IsA departure act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "departure gate is a kind of gate", "pln": ["(: cnet_isa_4a0f4172ad (IsA departure_gate gate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "departure lounge is a kind of lounge", "pln": ["(: cnet_isa_c1b699f90f (IsA departure_lounge lounge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "departure tax is a kind of tax", "pln": ["(: cnet_isa_4d394f2317 (IsA departure_tax tax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "departure time is a kind of point", "pln": ["(: cnet_isa_bfaa2f76c9 (IsA departure_time point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dependability is a kind of responsibility", "pln": ["(: cnet_isa_23ea347109 (IsA dependability responsibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dependant is a kind of recipient", "pln": ["(: cnet_isa_141ef8a102 (IsA dependant recipient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dependence is a kind of state", "pln": ["(: cnet_isa_27e9b5a5f2 (IsA dependence state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dependent variable is a kind of variable", "pln": ["(: cnet_isa_ed87f02756 (IsA dependent_variable variable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depersonalization is a kind of objectification", "pln": ["(: cnet_isa_93d6aba46c (IsA depersonalization objectification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depersonalization is a kind of psychological state", "pln": ["(: cnet_isa_1c738137fd (IsA depersonalization psychological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depersonalization is a kind of dissociative disorder", "pln": ["(: cnet_isa_f605a96c33 (IsA depersonalization dissociative_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depicting is a kind of representational process", "pln": ["(: cnet_isa_d4ea94d582 (IsA depicting representational_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depiction is a kind of pictorial representation", "pln": ["(: cnet_isa_6c2318dc9e (IsA depiction pictorial_representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depigmentation is a kind of coloration", "pln": ["(: cnet_isa_711dfb9cfd (IsA depigmentation coloration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depilation is a kind of cleaning", "pln": ["(: cnet_isa_283413533d (IsA depilation cleaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depilatory is a kind of cosmetic", "pln": ["(: cnet_isa_c051116055 (IsA depilatory cosmetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depilatory is a kind of compound", "pln": ["(: cnet_isa_7da0ab3aaf (IsA depilatory compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depletion is a kind of decrease", "pln": ["(: cnet_isa_66fc68a962 (IsA depletion decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depletion is a kind of temporary state", "pln": ["(: cnet_isa_b90fb96c05 (IsA depletion temporary_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deployment is a kind of preparation", "pln": ["(: cnet_isa_cb47bf0947 (IsA deployment preparation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depolarization is a kind of change", "pln": ["(: cnet_isa_5a41eef035 (IsA depolarization change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depopulation is a kind of environmental condition", "pln": ["(: cnet_isa_476bcc5dd4 (IsA depopulation environmental_condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deportation is a kind of ejection", "pln": ["(: cnet_isa_76f0ff3065 (IsA deportation ejection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deposit is a kind of buildup", "pln": ["(: cnet_isa_7618ded213 (IsA deposit buildup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deposit is a kind of guarantee", "pln": ["(: cnet_isa_ffa6c13c6f (IsA deposit guarantee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deposit is a kind of geological phenomenon", "pln": ["(: cnet_isa_a6677fd076 (IsA deposit geological_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deposit is a kind of fund", "pln": ["(: cnet_isa_b3cd27334f (IsA deposit fund) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deposit is a kind of security", "pln": ["(: cnet_isa_2690a9371c (IsA deposit security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deposition is a kind of ouster", "pln": ["(: cnet_isa_c41d4321e5 (IsA deposition ouster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deposition is a kind of interrogation", "pln": ["(: cnet_isa_8a1dbbb5a4 (IsA deposition interrogation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deposition is a kind of accretion", "pln": ["(: cnet_isa_8ecbe2d8f0 (IsA deposition accretion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "depositor is a kind of investor", "pln": ["(: cnet_isa_ea47dbdc3b (IsA depositor investor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depository is a kind of facility", "pln": ["(: cnet_isa_5047810eb1 (IsA depository facility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depository financial institution is a kind of financial institution", "pln": ["(: cnet_isa_41068d12aa (IsA depository_financial_institution financial_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depravity is a kind of transgression", "pln": ["(: cnet_isa_a7fb4be0b6 (IsA depravity transgression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deprecation is a kind of disparagement", "pln": ["(: cnet_isa_9ab83a43e5 (IsA deprecation disparagement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deprecation is a kind of prayer", "pln": ["(: cnet_isa_6d96839e53 (IsA deprecation prayer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "depreciation is a kind of decrease", "pln": ["(: cnet_isa_e717126d38 (IsA depreciation decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depreciation is a kind of financial loss", "pln": ["(: cnet_isa_496e65ccdd (IsA depreciation financial_loss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depreciation is a kind of non cash expense", "pln": ["(: cnet_isa_74a48e19cc (IsA depreciation non_cash_expense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depreciation allowance is a kind of allowance", "pln": ["(: cnet_isa_75c0087cb0 (IsA depreciation_allowance allowance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depreciation charge is a kind of charge", "pln": ["(: cnet_isa_9bb342fb51 (IsA depreciation_charge charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depredation is a kind of plundering", "pln": ["(: cnet_isa_6c34b08393 (IsA depredation plundering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depressed fracture is a kind of fracture", "pln": ["(: cnet_isa_04bf33db0d (IsA depressed_fracture fracture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depression is a kind of hell", "pln": ["(: cnet_isa_6cb53b0b9f (IsA depression hell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depression is a kind of push", "pln": ["(: cnet_isa_f5f3179439 (IsA depression push) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depression is a kind of sadness", "pln": ["(: cnet_isa_213e80e712 (IsA depression sadness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depression is a kind of angular position", "pln": ["(: cnet_isa_cd599ea07e (IsA depression angular_position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depression is a kind of concave shape", "pln": ["(: cnet_isa_b64b8d70f0 (IsA depression concave_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depression is a kind of crisis", "pln": ["(: cnet_isa_66e8f840ec (IsA depression crisis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "depression is a kind of economic condition", "pln": ["(: cnet_isa_42b698f64c (IsA depression economic_condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "depression is a kind of psychological state", "pln": ["(: cnet_isa_e6f87e05b5 (IsA depression psychological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depressive is a kind of sick person", "pln": ["(: cnet_isa_6af759bd31 (IsA depressive sick_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depressive disorder is a kind of affective disorder", "pln": ["(: cnet_isa_05ac99e98a (IsA depressive_disorder affective_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depressor is a kind of device", "pln": ["(: cnet_isa_1e1a598798 (IsA depressor device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depressor is a kind of nerve", "pln": ["(: cnet_isa_e57904b47e (IsA depressor nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depressor is a kind of skeletal muscle", "pln": ["(: cnet_isa_5d4caa4322 (IsA depressor skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depth is a kind of attribute", "pln": ["(: cnet_isa_6d38c1ea60 (IsA depth attribute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "depth is a kind of degree", "pln": ["(: cnet_isa_86055285d4 (IsA depth degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depth is a kind of extent", "pln": ["(: cnet_isa_c4d2eed92f (IsA depth extent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depth is a kind of abasement", "pln": ["(: cnet_isa_796c3ee157 (IsA depth abasement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depth charge is a kind of bomb", "pln": ["(: cnet_isa_cf9a5ca115 (IsA depth_charge bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depth finder is a kind of navigational instrument", "pln": ["(: cnet_isa_1f851cb562 (IsA depth_finder navigational_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depth gauge is a kind of gauge", "pln": ["(: cnet_isa_add96528fd (IsA depth_gauge gauge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "depth is a kind of region", "pln": ["(: cnet_isa_3fcce5deed (IsA depth region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deputation is a kind of organization", "pln": ["(: cnet_isa_6d715927b6 (IsA deputation organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "deputy is a kind of agent", "pln": ["(: cnet_isa_da958983f1 (IsA deputy agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deputy is a kind of assistant", "pln": ["(: cnet_isa_d97703d77c (IsA deputy assistant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deputy is a kind of lawman", "pln": ["(: cnet_isa_03f70ab83e (IsA deputy lawman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deputy is a kind of legislator", "pln": ["(: cnet_isa_8b462d7f53 (IsA deputy legislator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "derailment is a kind of mishap", "pln": ["(: cnet_isa_f4e22555c6 (IsA derailment mishap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "derangement is a kind of insanity", "pln": ["(: cnet_isa_187e186c46 (IsA derangement insanity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deregulation is a kind of liberation", "pln": ["(: cnet_isa_c7e4e3ffe6 (IsA deregulation liberation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "derelict is a kind of pauper", "pln": ["(: cnet_isa_b422e76ef4 (IsA derelict pauper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dereliction is a kind of negligence", "pln": ["(: cnet_isa_7aaf5203dc (IsA dereliction negligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dereliction is a kind of wrongdoing", "pln": ["(: cnet_isa_ff0a687fef (IsA dereliction wrongdoing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "derision is a kind of discourtesy", "pln": ["(: cnet_isa_732aee58b1 (IsA derision discourtesy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "derision is a kind of disrespect", "pln": ["(: cnet_isa_67630e41dc (IsA derision disrespect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "derivation is a kind of act", "pln": ["(: cnet_isa_a3471bff2f (IsA derivation act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "derivation is a kind of drawing", "pln": ["(: cnet_isa_50ed3826bd (IsA derivation drawing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "derivation is a kind of inference", "pln": ["(: cnet_isa_5f8c4c11f2 (IsA derivation inference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "derivation is a kind of beginning", "pln": ["(: cnet_isa_b1c2fa5ef0 (IsA derivation beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "derivation is a kind of linguistic process", "pln": ["(: cnet_isa_12226b2e32 (IsA derivation linguistic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "derivational morphology is a kind of morphology", "pln": ["(: cnet_isa_837e775695 (IsA derivational_morphology morphology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "derivative is a kind of word", "pln": ["(: cnet_isa_3c5c43e1c7 (IsA derivative word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "derivative is a kind of compound", "pln": ["(: cnet_isa_a5ae9e587b (IsA derivative compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "derivative instrument is a kind of legal document", "pln": ["(: cnet_isa_ef5263eec4 (IsA derivative_instrument legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "derived function is a kind of calculation", "pln": ["(: cnet_isa_70b98947f9 (IsA derived_function calculation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deriving is a kind of explanation", "pln": ["(: cnet_isa_d9ed52c5ad (IsA deriving explanation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dermabrasion is a kind of removal", "pln": ["(: cnet_isa_2f1673bb98 (IsA dermabrasion removal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dermacentor is a kind of arthropod genus", "pln": ["(: cnet_isa_622e8e99c1 (IsA dermacentor arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dermaptera is a kind of animal order", "pln": ["(: cnet_isa_3d8cfac793 (IsA dermaptera animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dermatitis is a kind of eczema", "pln": ["(: cnet_isa_a57ea1c7df (IsA dermatitis eczema) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dermatobia is a kind of arthropod genus", "pln": ["(: cnet_isa_b1dceba0fe (IsA dermatobia arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dermatoglyphic is a kind of wrinkle", "pln": ["(: cnet_isa_cf2b4606db (IsA dermatoglyphic wrinkle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dermatoglyphic is a kind of life science", "pln": ["(: cnet_isa_79b2ad8225 (IsA dermatoglyphic life_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dermatologist is a kind of specialist", "pln": ["(: cnet_isa_80bf9f44f7 (IsA dermatologist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dermatology is a kind of medicine", "pln": ["(: cnet_isa_07e673c2ae (IsA dermatology medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dermatome is a kind of surgical instrument", "pln": ["(: cnet_isa_7547c0817d (IsA dermatome surgical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dermatomycosis is a kind of fungal infection", "pln": ["(: cnet_isa_0434090f4d (IsA dermatomycosis fungal_infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dermatomyositis is a kind of myositis", "pln": ["(: cnet_isa_76c84040e3 (IsA dermatomyositis myositis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dermatosis is a kind of skin disease", "pln": ["(: cnet_isa_26c7527fb5 (IsA dermatosis skin_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dermestidae is a kind of arthropod family", "pln": ["(: cnet_isa_407e75d197 (IsA dermestidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dermis is a kind of stratum", "pln": ["(: cnet_isa_345134039d (IsA dermis stratum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dermochelyidae is a kind of reptile family", "pln": ["(: cnet_isa_45655801f8 (IsA dermochelyidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dermochely is a kind of reptile genus", "pln": ["(: cnet_isa_bd35bb40ed (IsA dermochely reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dermoid cyst is a kind of cyst", "pln": ["(: cnet_isa_667535c49a (IsA dermoid_cyst cyst) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dermoptera is a kind of animal order", "pln": ["(: cnet_isa_93bcccb1a6 (IsA dermoptera animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "derogation is a kind of abrogation", "pln": ["(: cnet_isa_f4ef309418 (IsA derogation abrogation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "derrick is a kind of crane", "pln": ["(: cnet_isa_dab251befb (IsA derrick crane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "derrick is a kind of framework", "pln": ["(: cnet_isa_a29d15a454 (IsA derrick framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "derring do is a kind of deed", "pln": ["(: cnet_isa_493f3aaaa2 (IsA derring_do deed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "derringer is a kind of pistol", "pln": ["(: cnet_isa_8c8d2d4de7 (IsA derringer pistol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "derris is a kind of shrub", "pln": ["(: cnet_isa_952f2194c0 (IsA derris shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "derris root is a kind of vine", "pln": ["(: cnet_isa_46351bb49f (IsA derris_root vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "derv is a kind of diesel oil", "pln": ["(: cnet_isa_de5efbc994 (IsA derv diesel_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dervish is a kind of fakir", "pln": ["(: cnet_isa_3fbda68104 (IsA dervish fakir) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desalination is a kind of chemical process", "pln": ["(: cnet_isa_6d04b6940a (IsA desalination chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "descant is a kind of accompaniment", "pln": ["(: cnet_isa_3020bd3502 (IsA descant accompaniment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "descendant is a kind of relative", "pln": ["(: cnet_isa_69b01b2852 (IsA descendant relative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "descendant is a kind of biological group", "pln": ["(: cnet_isa_f53540daff (IsA descendant biological_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "descender is a kind of letter", "pln": ["(: cnet_isa_d875453e99 (IsA descender letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "descender is a kind of mover", "pln": ["(: cnet_isa_7b78aadd0f (IsA descender mover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "descender is a kind of line", "pln": ["(: cnet_isa_289771408c (IsA descender line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "descending aorta is a kind of aorta", "pln": ["(: cnet_isa_3e2ff81099 (IsA descending_aorta aorta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "descending colon is a kind of colon", "pln": ["(: cnet_isa_8148d7cb59 (IsA descending_colon colon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "descending node is a kind of node", "pln": ["(: cnet_isa_3846bda74f (IsA descending_node node) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "descent is a kind of motion", "pln": ["(: cnet_isa_445f8524f7 (IsA descent motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "descent is a kind of change of location", "pln": ["(: cnet_isa_bc1c334091 (IsA descent change_of_location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "descent is a kind of kinship", "pln": ["(: cnet_isa_5fb23c7212 (IsA descent kinship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "descent is a kind of slope", "pln": ["(: cnet_isa_1c87e85f5e (IsA descent slope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "description is a kind of kind", "pln": ["(: cnet_isa_a9c8d7d1ab (IsA description kind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "description is a kind of speech act", "pln": ["(: cnet_isa_358edab671 (IsA description speech_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "description is a kind of statement", "pln": ["(: cnet_isa_f99fcffcb5 (IsA description statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "descriptive adjective is a kind of adjective", "pln": ["(: cnet_isa_e2793f9f4e (IsA descriptive_adjective adjective) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "descriptive grammar is a kind of grammar", "pln": ["(: cnet_isa_728d9ca3cb (IsA descriptive_grammar grammar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "descriptivism is a kind of doctrine", "pln": ["(: cnet_isa_30fef48655 (IsA descriptivism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "descriptor is a kind of information", "pln": ["(: cnet_isa_fee6bf5c28 (IsA descriptor information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "descurainia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_9edeb79149 (IsA descurainia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desensitization is a kind of decrease", "pln": ["(: cnet_isa_d6a9d7ce3c (IsA desensitization decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desensitization technique is a kind of behavior therapy", "pln": ["(: cnet_isa_99c6a6d9b1 (IsA desensitization_technique behavior_therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desert is a kind of place", "pln": ["(: cnet_isa_b665b19fef (IsA desert place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "desert is a kind of terrain", "pln": ["(: cnet_isa_6d3713bf8f (IsA desert terrain) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desert is a kind of deservingness", "pln": ["(: cnet_isa_bb15a55bea (IsA desert deservingness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desert is a kind of biome", "pln": ["(: cnet_isa_b96c96ca10 (IsA desert biome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desert is a kind of tract", "pln": ["(: cnet_isa_3072d52e0c (IsA desert tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desert four o clock is a kind of four o clock", "pln": ["(: cnet_isa_f90dcd1cf9 (IsA desert_four_o_clock four_o_clock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desert holly is a kind of saltbush", "pln": ["(: cnet_isa_4cb18ffd7c (IsA desert_holly saltbush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desert iguana is a kind of iguanid", "pln": ["(: cnet_isa_a4289cf248 (IsA desert_iguana iguanid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desert mariposa tulip is a kind of mariposa", "pln": ["(: cnet_isa_7f3d12b0e8 (IsA desert_mariposa_tulip mariposa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desert paintbrush is a kind of indian paintbrush", "pln": ["(: cnet_isa_cb13c17000 (IsA desert_paintbrush indian_paintbrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desert pea is a kind of glory pea", "pln": ["(: cnet_isa_c987320456 (IsA desert_pea glory_pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desert plant is a kind of vascular plant", "pln": ["(: cnet_isa_fe4f40609e (IsA desert_plant vascular_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desert plume is a kind of subshrub", "pln": ["(: cnet_isa_9aa3d17aa3 (IsA desert_plume subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desert sand verbena is a kind of sand verbena", "pln": ["(: cnet_isa_2272b1da67 (IsA desert_sand_verbena sand_verbena) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desert selaginella is a kind of spikemoss", "pln": ["(: cnet_isa_a00f288f46 (IsA desert_selaginella spikemoss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "desert soil is a kind of soil", "pln": ["(: cnet_isa_ca8ed27324 (IsA desert_soil soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desert sunflower is a kind of wildflower", "pln": ["(: cnet_isa_a261aea5bc (IsA desert_sunflower wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desert tortoise is a kind of tortoise", "pln": ["(: cnet_isa_9c5d9921f4 (IsA desert_tortoise tortoise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desert willow is a kind of shrub", "pln": ["(: cnet_isa_a4c7e9731c (IsA desert_willow shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deserter is a kind of wrongdoer", "pln": ["(: cnet_isa_e6f6f34d22 (IsA deserter wrongdoer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deserter is a kind of quitter", "pln": ["(: cnet_isa_c167ba42a4 (IsA deserter quitter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desertification is a kind of geological process", "pln": ["(: cnet_isa_c1d5a70b8a (IsA desertification geological_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desertion is a kind of withdrawal", "pln": ["(: cnet_isa_88195a58fd (IsA desertion withdrawal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desert is a kind of consequence", "pln": ["(: cnet_isa_49b506a7f2 (IsA desert consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "deservingness is a kind of worthiness", "pln": ["(: cnet_isa_c4a74462d8 (IsA deservingness worthiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desiccant is a kind of chemical agent", "pln": ["(: cnet_isa_2235beccfd (IsA desiccant chemical_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desideratum is a kind of necessity", "pln": ["(: cnet_isa_313d8b3e9c (IsA desideratum necessity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "design is a kind of creating by mental act", "pln": ["(: cnet_isa_1e9e074580 (IsA design creating_by_mental_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "design is a kind of decoration", "pln": ["(: cnet_isa_32e18981f6 (IsA design decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "design is a kind of sketch", "pln": ["(: cnet_isa_a8c6f21038 (IsA design sketch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "design is a kind of arrangement", "pln": ["(: cnet_isa_2eeafb9fed (IsA design arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "design criteria is a kind of criterion", "pln": ["(: cnet_isa_e38b2d81cb (IsA design_criteria criterion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "designated driver is a kind of driver", "pln": ["(: cnet_isa_2d13b8593d (IsA designated_driver driver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "designated hitter is a kind of batter", "pln": ["(: cnet_isa_f29243a4d9 (IsA designated_hitter batter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "designation is a kind of determination", "pln": ["(: cnet_isa_6a1654c632 (IsA designation determination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "designatum is a kind of referent", "pln": ["(: cnet_isa_d57bcdac4c (IsA designatum referent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "designer is a kind of planner", "pln": ["(: cnet_isa_2580c135d8 (IsA designer planner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "designer drug is a kind of psychoactive drug", "pln": ["(: cnet_isa_e9b4a6fae8 (IsA designer_drug psychoactive_drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desipramine is a kind of tricyclic", "pln": ["(: cnet_isa_176abbfd65 (IsA desipramine tricyclic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desirability is a kind of good", "pln": ["(: cnet_isa_55310665a7 (IsA desirability good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desire is a kind of tendency", "pln": ["(: cnet_isa_b2b8ae88f6 (IsA desire tendency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desire is a kind of feeling", "pln": ["(: cnet_isa_8030946e59 (IsA desire feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desire is a kind of arousal", "pln": ["(: cnet_isa_13807dd936 (IsA desire arousal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "desire to know is a kind of curiosity", "pln": ["(: cnet_isa_abc485ad97 (IsA desire_to_know curiosity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desk is a kind of furniture", "pln": ["(: cnet_isa_f197ed4b00 (IsA desk furniture) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desk is a kind of table", "pln": ["(: cnet_isa_260aaac3da (IsA desk table) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desk clerk is a kind of clerk", "pln": ["(: cnet_isa_2d76de90cf (IsA desk_clerk clerk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desk dictionary is a kind of dictionary", "pln": ["(: cnet_isa_c614925f10 (IsA desk_dictionary dictionary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desk officer is a kind of military officer", "pln": ["(: cnet_isa_c6613b206d (IsA desk_officer military_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desk phone is a kind of telephone", "pln": ["(: cnet_isa_7723f919ba (IsA desk_phone telephone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desk sergeant is a kind of police sergeant", "pln": ["(: cnet_isa_c4d578fab8 (IsA desk_sergeant police_sergeant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desktop is a kind of top", "pln": ["(: cnet_isa_aeb611e2f8 (IsA desktop top) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desktop computer is a kind of personal computer", "pln": ["(: cnet_isa_0618645018 (IsA desktop_computer personal_computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desktop publishing is a kind of publication", "pln": ["(: cnet_isa_ca03195b3a (IsA desktop_publishing publication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desmanthus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_c9c0819a53 (IsA desmanthus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desmid is a kind of green algae", "pln": ["(: cnet_isa_40798b5a66 (IsA desmid green_algae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desmidiaceae is a kind of protoctist family", "pln": ["(: cnet_isa_b9d02ad02e (IsA desmidiaceae protoctist_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desmidium is a kind of protoctist genus", "pln": ["(: cnet_isa_ebf8610bdf (IsA desmidium protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desmodium is a kind of rosid dicot genus", "pln": ["(: cnet_isa_2b055bc394 (IsA desmodium rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desmodontidae is a kind of mammal family", "pln": ["(: cnet_isa_7bed64b8d7 (IsA desmodontidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desmodus is a kind of mammal genus", "pln": ["(: cnet_isa_f7b69a7616 (IsA desmodus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "desmodus rotundus is a kind of vampire bat", "pln": ["(: cnet_isa_b24e677aa9 (IsA desmodus_rotundus vampire_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desmograthus is a kind of amphibian genus", "pln": ["(: cnet_isa_4c9a67c374 (IsA desmograthus amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desorption is a kind of natural process", "pln": ["(: cnet_isa_659cd62d01 (IsA desorption natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "despair is a kind of feeling", "pln": ["(: cnet_isa_2145da5f8e (IsA despair feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "despair is a kind of condition", "pln": ["(: cnet_isa_68ebb26d43 (IsA despair condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "desperado is a kind of criminal", "pln": ["(: cnet_isa_270c2420f0 (IsA desperado criminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desperate is a kind of unfortunate", "pln": ["(: cnet_isa_d1172d495e (IsA desperate unfortunate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desperate measure is a kind of mean", "pln": ["(: cnet_isa_393a7c961d (IsA desperate_measure mean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desperate strait is a kind of pass", "pln": ["(: cnet_isa_96ba3b5c3a (IsA desperate_strait pass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desperation is a kind of recklessness", "pln": ["(: cnet_isa_335619db63 (IsA desperation recklessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "despisal is a kind of hate", "pln": ["(: cnet_isa_5b31db3612 (IsA despisal hate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "despite is a kind of disregard", "pln": ["(: cnet_isa_eefc8828fe (IsA despite disregard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "despondency is a kind of depression", "pln": ["(: cnet_isa_380f7ede8f (IsA despondency depression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desquamation is a kind of organic phenomenon", "pln": ["(: cnet_isa_958ba608a8 (IsA desquamation organic_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dessert is a kind of course", "pln": ["(: cnet_isa_c39f02ade3 (IsA dessert course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dessert plate is a kind of plate", "pln": ["(: cnet_isa_b8655e8d57 (IsA dessert_plate plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dessert spoon is a kind of spoon", "pln": ["(: cnet_isa_4a0beb7f52 (IsA dessert_spoon spoon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dessert wine is a kind of wine", "pln": ["(: cnet_isa_e9c75ba81b (IsA dessert_wine wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dessertspoon is a kind of containerful", "pln": ["(: cnet_isa_147b73762e (IsA dessertspoon containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dessiatine is a kind of area unit", "pln": ["(: cnet_isa_06ec3ea1ba (IsA dessiatine area_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "destabilization is a kind of change", "pln": ["(: cnet_isa_0e51580655 (IsA destabilization change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "destabilization is a kind of action", "pln": ["(: cnet_isa_6c8f613b98 (IsA destabilization action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "destalinization is a kind of social process", "pln": ["(: cnet_isa_3239fc88f4 (IsA destalinization social_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "destination is a kind of goal", "pln": ["(: cnet_isa_c9a9594b05 (IsA destination goal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "destiny is a kind of happening", "pln": ["(: cnet_isa_288bf8dc49 (IsA destiny happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "destitution is a kind of poverty", "pln": ["(: cnet_isa_c830ee06a8 (IsA destitution poverty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "destroyer is a kind of warship", "pln": ["(: cnet_isa_513051a2b9 (IsA destroyer warship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "destroyer is a kind of bad person", "pln": ["(: cnet_isa_8b2641cdbd (IsA destroyer bad_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "destroyer escort is a kind of warship", "pln": ["(: cnet_isa_c44174c54e (IsA destroyer_escort warship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "destroying angel is a kind of agaric", "pln": ["(: cnet_isa_b52de3544d (IsA destroying_angel agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "destructibility is a kind of vulnerability", "pln": ["(: cnet_isa_339baf3e06 (IsA destructibility vulnerability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "destruction is a kind of termination", "pln": ["(: cnet_isa_302830138d (IsA destruction termination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "destruction is a kind of ending", "pln": ["(: cnet_isa_a0571cc3f3 (IsA destruction ending) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "destruction fire is a kind of fire", "pln": ["(: cnet_isa_5cc257c23b (IsA destruction_fire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "destructive distillation is a kind of fractionation", "pln": ["(: cnet_isa_10323b816c (IsA destructive_distillation fractionation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "destructiveness is a kind of quality", "pln": ["(: cnet_isa_4217b30d32 (IsA destructiveness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "desuetude is a kind of inaction", "pln": ["(: cnet_isa_c9a252bc07 (IsA desuetude inaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detached house is a kind of house", "pln": ["(: cnet_isa_fa757d2cd1 (IsA detached_house house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detachment is a kind of separation", "pln": ["(: cnet_isa_d1a1d8b80f (IsA detachment separation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detachment is a kind of army unit", "pln": ["(: cnet_isa_fb9b1380e6 (IsA detachment army_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detail is a kind of fact", "pln": ["(: cnet_isa_f0032b2b91 (IsA detail fact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detail is a kind of discussion", "pln": ["(: cnet_isa_c5c295ba6c (IsA detail discussion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detail is a kind of gang", "pln": ["(: cnet_isa_43b70e0c50 (IsA detail gang) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detail is a kind of part", "pln": ["(: cnet_isa_53601e1f7d (IsA detail part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detail is a kind of information", "pln": ["(: cnet_isa_a29c958c36 (IsA detail information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detainee is a kind of prisoner", "pln": ["(: cnet_isa_a8322af7d3 (IsA detainee prisoner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detection is a kind of discovery", "pln": ["(: cnet_isa_7c2642b0f5 (IsA detection discovery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detection is a kind of police work", "pln": ["(: cnet_isa_f2cd6027dc (IsA detection police_work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detection is a kind of perception", "pln": ["(: cnet_isa_c2dd61c7ec (IsA detection perception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "detective is a kind of investigator", "pln": ["(: cnet_isa_a98655edd2 (IsA detective investigator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detective is a kind of policeman", "pln": ["(: cnet_isa_378dd76003 (IsA detective policeman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detective agency is a kind of agency", "pln": ["(: cnet_isa_8916bac499 (IsA detective_agency agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detective novel is a kind of novel", "pln": ["(: cnet_isa_cbf2e7df20 (IsA detective_novel novel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detective story is a kind of mystery", "pln": ["(: cnet_isa_6691047fa6 (IsA detective_story mystery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detector is a kind of device", "pln": ["(: cnet_isa_fa9eadd400 (IsA detector device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "detector is a kind of electronic equipment", "pln": ["(: cnet_isa_fbb608c8af (IsA detector electronic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detector is a kind of rectifier", "pln": ["(: cnet_isa_d5ef4e3215 (IsA detector rectifier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detente is a kind of easing", "pln": ["(: cnet_isa_cba61315cd (IsA detente easing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detention is a kind of punishment", "pln": ["(: cnet_isa_7c9d019175 (IsA detention punishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detention is a kind of confinement", "pln": ["(: cnet_isa_b76b9c0e6d (IsA detention confinement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detention basin is a kind of catchment area", "pln": ["(: cnet_isa_dc45a08edb (IsA detention_basin catchment_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detention home is a kind of correctional institution", "pln": ["(: cnet_isa_dbd62c4f72 (IsA detention_home correctional_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detergency is a kind of utility", "pln": ["(: cnet_isa_ed580ec7e0 (IsA detergency utility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detergent is a kind of cleansing agent", "pln": ["(: cnet_isa_c02bffb936 (IsA detergent cleansing_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detergent is a kind of wetting agent", "pln": ["(: cnet_isa_81a16bb8f2 (IsA detergent wetting_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deterioration is a kind of decline", "pln": ["(: cnet_isa_c21578c623 (IsA deterioration decline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deterioration is a kind of decay", "pln": ["(: cnet_isa_2ba5ba61f9 (IsA deterioration decay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "determent is a kind of discouragement", "pln": ["(: cnet_isa_db012f0c2d (IsA determent discouragement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "determinant is a kind of cognitive factor", "pln": ["(: cnet_isa_17427e0d5a (IsA determinant cognitive_factor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "determinant is a kind of square matrix", "pln": ["(: cnet_isa_5c0781e4ff (IsA determinant square_matrix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "determinateness is a kind of predictability", "pln": ["(: cnet_isa_f71493379e (IsA determinateness predictability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "determination is a kind of discovery", "pln": ["(: cnet_isa_e2ff75b2bd (IsA determination discovery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "determination is a kind of resoluteness", "pln": ["(: cnet_isa_9a21fd91ed (IsA determination resoluteness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "determination is a kind of decision making", "pln": ["(: cnet_isa_1571c2e19f (IsA determination decision_making) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "determiner is a kind of function word", "pln": ["(: cnet_isa_0db5654cdc (IsA determiner function_word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "determinism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_af2b8dc8a9 (IsA determinism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deterrence is a kind of hindrance", "pln": ["(: cnet_isa_ddfa8c2dd4 (IsA deterrence hindrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detonating fuse is a kind of fuse", "pln": ["(: cnet_isa_734d5c6dc6 (IsA detonating_fuse fuse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detonation is a kind of explosion", "pln": ["(: cnet_isa_2eacb40c8e (IsA detonation explosion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "detonator is a kind of explosive device", "pln": ["(: cnet_isa_a25f955763 (IsA detonator explosive_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detour is a kind of road", "pln": ["(: cnet_isa_e6302f58c1 (IsA detour road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detox is a kind of ward", "pln": ["(: cnet_isa_771cd7b5c4 (IsA detox ward) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detoxification is a kind of medical care", "pln": ["(: cnet_isa_e1db1060a2 (IsA detoxification medical_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detoxification is a kind of treatment", "pln": ["(: cnet_isa_5927eab1e9 (IsA detoxification treatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detraction is a kind of disparagement", "pln": ["(: cnet_isa_7b3a735645 (IsA detraction disparagement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detractor is a kind of cynic", "pln": ["(: cnet_isa_53aad1c291 (IsA detractor cynic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detribalization is a kind of disunion", "pln": ["(: cnet_isa_400a614ca2 (IsA detribalization disunion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detribalization is a kind of social control", "pln": ["(: cnet_isa_970f6a0d46 (IsA detribalization social_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detriment is a kind of damage", "pln": ["(: cnet_isa_9f9d884934 (IsA detriment damage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detritus is a kind of material", "pln": ["(: cnet_isa_f0aea210e8 (IsA detritus material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "detumescence is a kind of decline", "pln": ["(: cnet_isa_c5a53741a2 (IsA detumescence decline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deuce is a kind of playing card", "pln": ["(: cnet_isa_088f1a5a7d (IsA deuce playing_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deuce is a kind of tie", "pln": ["(: cnet_isa_cc549d05c5 (IsA deuce tie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deus ex machina is a kind of causal agent", "pln": ["(: cnet_isa_c973059078 (IsA deus_ex_machina causal_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deuteranopia is a kind of red green dichromacy", "pln": ["(: cnet_isa_be0a260a06 (IsA deuteranopia red_green_dichromacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deuterium is a kind of hydrogen atom", "pln": ["(: cnet_isa_293fcd8cc3 (IsA deuterium hydrogen_atom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deuterium is a kind of isotope", "pln": ["(: cnet_isa_126357c1be (IsA deuterium isotope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deuteromycete is a kind of class", "pln": ["(: cnet_isa_c7b4ee1b4f (IsA deuteromycete class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deuteromycota is a kind of division", "pln": ["(: cnet_isa_57182ea70f (IsA deuteromycota division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deuteron is a kind of particle", "pln": ["(: cnet_isa_dcc5c6c254 (IsA deuteron particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deutzia is a kind of hydrangea", "pln": ["(: cnet_isa_a3d0c80da9 (IsA deutzia hydrangea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "devaluation is a kind of decrease", "pln": ["(: cnet_isa_c38eb3226e (IsA devaluation decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "devaluation is a kind of regulation", "pln": ["(: cnet_isa_fa6ffdee28 (IsA devaluation regulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "devanagari is a kind of script", "pln": ["(: cnet_isa_66b362f093 (IsA devanagari script) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "devanagari is a kind of syllabary", "pln": ["(: cnet_isa_da58466895 (IsA devanagari syllabary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "devastation is a kind of ruin", "pln": ["(: cnet_isa_9bf931ab86 (IsA devastation ruin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "devastation is a kind of feeling", "pln": ["(: cnet_isa_f4724fb39c (IsA devastation feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "devastation is a kind of deterioration", "pln": ["(: cnet_isa_a2a677aa79 (IsA devastation deterioration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "developer is a kind of programmer", "pln": ["(: cnet_isa_f2abb44e14 (IsA developer programmer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "developer is a kind of photographic equipment", "pln": ["(: cnet_isa_55885360d6 (IsA developer photographic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "developer is a kind of creator", "pln": ["(: cnet_isa_756cce00fd (IsA developer creator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "developing country is a kind of state", "pln": ["(: cnet_isa_86804ca51f (IsA developing_country state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "development is a kind of improvement", "pln": ["(: cnet_isa_0240e7d286 (IsA development improvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "development is a kind of change", "pln": ["(: cnet_isa_c69db777c4 (IsA development change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "development is a kind of district", "pln": ["(: cnet_isa_9bcc829b82 (IsA development district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "development is a kind of section", "pln": ["(: cnet_isa_0ce38113f2 (IsA development section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "development is a kind of process", "pln": ["(: cnet_isa_4688a57465 (IsA development process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "development is a kind of processing", "pln": ["(: cnet_isa_7bda2d6a97 (IsA development processing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "developmental age is a kind of age", "pln": ["(: cnet_isa_9d25ecfe95 (IsA developmental_age age) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "developmental anatomy is a kind of anatomy", "pln": ["(: cnet_isa_c1e7dcbb4b (IsA developmental_anatomy anatomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "developmental learning is a kind of learning", "pln": ["(: cnet_isa_98b7f370e0 (IsA developmental_learning learning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "developmental psychology is a kind of psychology", "pln": ["(: cnet_isa_0fc1c05667 (IsA developmental_psychology psychology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deviated nasal septum is a kind of deviated septum", "pln": ["(: cnet_isa_e9f8d8d024 (IsA deviated_nasal_septum deviated_septum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deviated septum is a kind of abnormality", "pln": ["(: cnet_isa_6379f2091f (IsA deviated_septum abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deviation is a kind of abnormality", "pln": ["(: cnet_isa_25056b8cc8 (IsA deviation abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deviation is a kind of erroneousness", "pln": ["(: cnet_isa_f6affd340b (IsA deviation erroneousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deviation is a kind of variation", "pln": ["(: cnet_isa_e684651782 (IsA deviation variation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deviation is a kind of statistic", "pln": ["(: cnet_isa_0b5ec7273d (IsA deviation statistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "deviationism is a kind of desertion", "pln": ["(: cnet_isa_c47e5a502f (IsA deviationism desertion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deviationist is a kind of deserter", "pln": ["(: cnet_isa_87df98a903 (IsA deviationist deserter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "device is a kind of maneuver", "pln": ["(: cnet_isa_8454633838 (IsA device maneuver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "device is a kind of design", "pln": ["(: cnet_isa_d8e44bf51a (IsA device design) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "device is a kind of instrumentality", "pln": ["(: cnet_isa_f95e45369b (IsA device instrumentality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "device is a kind of expressive style", "pln": ["(: cnet_isa_8620064164 (IsA device expressive_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "device is a kind of emblem", "pln": ["(: cnet_isa_ef9f52603c (IsA device emblem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "device is a kind of inclination", "pln": ["(: cnet_isa_1def00b276 (IsA device inclination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "devil s advocate is a kind of debater", "pln": ["(: cnet_isa_30e1cfc941 (IsA devil_s_advocate debater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "devil s cigar is a kind of sarcosomataceae", "pln": ["(: cnet_isa_a7fbb52929 (IsA devil_s_cigar sarcosomataceae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "devil s food is a kind of chocolate cake", "pln": ["(: cnet_isa_21e351e63f (IsA devil_s_food chocolate_cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "devil s tongue is a kind of arum", "pln": ["(: cnet_isa_aaf300e90a (IsA devil_s_tongue arum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "devil s urn is a kind of sarcosomataceae", "pln": ["(: cnet_isa_0ffd6b0944 (IsA devil_s_urn sarcosomataceae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "devil is a kind of trouble", "pln": ["(: cnet_isa_d5743ce93b (IsA devil trouble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "devil is a kind of exclamation", "pln": ["(: cnet_isa_c3002168b2 (IsA devil exclamation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "devil is a kind of evil spirit", "pln": ["(: cnet_isa_da077ff05a (IsA devil evil_spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "devil ray is a kind of manta", "pln": ["(: cnet_isa_f1d97510bb (IsA devil_ray manta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "devil worshiper is a kind of believer", "pln": ["(: cnet_isa_eb0566deb4 (IsA devil_worshiper believer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "deviled egg is a kind of dish", "pln": ["(: cnet_isa_55ea9375f6 (IsA deviled_egg dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "deviltry is a kind of evil", "pln": ["(: cnet_isa_9c1826b894 (IsA deviltry evil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "devilwood is a kind of tree", "pln": ["(: cnet_isa_8fad0eb017 (IsA devilwood tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "deviousness is a kind of indirectness", "pln": ["(: cnet_isa_1af0f79be9 (IsA deviousness indirectness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "devisal is a kind of invention", "pln": ["(: cnet_isa_1e8cc472de (IsA devisal invention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "devise is a kind of gift", "pln": ["(: cnet_isa_88cebf6a9b (IsA devise gift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "devise is a kind of inheritance", "pln": ["(: cnet_isa_85aa7ae305 (IsA devise inheritance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "devise is a kind of will", "pln": ["(: cnet_isa_e914d3960b (IsA devise will) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "devisee is a kind of beneficiary", "pln": ["(: cnet_isa_958cef895a (IsA devisee beneficiary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "devising is a kind of production", "pln": ["(: cnet_isa_a7cc2aea58 (IsA devising production) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "devisor is a kind of testator", "pln": ["(: cnet_isa_d7ea525cd4 (IsA devisor testator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "devitalization is a kind of decrease", "pln": ["(: cnet_isa_465685274d (IsA devitalization decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "devoir is a kind of politeness", "pln": ["(: cnet_isa_fb5ddbdc56 (IsA devoir politeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "devolution is a kind of delegating", "pln": ["(: cnet_isa_beef3d9fc2 (IsA devolution delegating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "devon is a kind of cattle", "pln": ["(: cnet_isa_b8f6733c7d (IsA devon cattle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "devotion is a kind of commitment", "pln": ["(: cnet_isa_0c5182a22e (IsA devotion commitment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "devotion is a kind of prayer", "pln": ["(: cnet_isa_314d7ebe31 (IsA devotion prayer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "devotion is a kind of love", "pln": ["(: cnet_isa_b7a2779082 (IsA devotion love) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "devotional is a kind of service", "pln": ["(: cnet_isa_5b82554409 (IsA devotional service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "devourer is a kind of eater", "pln": ["(: cnet_isa_d956f45f5a (IsA devourer eater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "devoutness is a kind of piety", "pln": ["(: cnet_isa_b89ce4f7fd (IsA devoutness piety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dew is a kind of condensation", "pln": ["(: cnet_isa_7b6172b8ff (IsA dew condensation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dew point is a kind of saturation point", "pln": ["(: cnet_isa_c42009e24c (IsA dew_point saturation_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dew point is a kind of temperature", "pln": ["(: cnet_isa_85e8d34255 (IsA dew_point temperature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dewar flask is a kind of vacuum flask", "pln": ["(: cnet_isa_e9c47e6d10 (IsA dewar_flask vacuum_flask) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dewberry is a kind of berry", "pln": ["(: cnet_isa_917ab15ffb (IsA dewberry berry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dewberry is a kind of blackberry", "pln": ["(: cnet_isa_d1c952aeb0 (IsA dewberry blackberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dewdrop is a kind of drop", "pln": ["(: cnet_isa_feccefcf27 (IsA dewdrop drop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "diabetes mellitus is a kind of diabetes", "pln": ["(: cnet_isa_b3b36ed52e (IsA diabetes_mellitus diabetes) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dewey decimal classification is a kind of classification system", "pln": ["(: cnet_isa_d14df0e1c2 (IsA dewey_decimal_classification classification_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dewlap is a kind of skin", "pln": ["(: cnet_isa_f48a04795c (IsA dewlap skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dexterity is a kind of adeptness", "pln": ["(: cnet_isa_6c4988fac3 (IsA dexterity adeptness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dextrin is a kind of polysaccharide", "pln": ["(: cnet_isa_795be288a0 (IsA dextrin polysaccharide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dextrocardia is a kind of abnormality", "pln": ["(: cnet_isa_273fb7098c (IsA dextrocardia abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dextrorotation is a kind of rotation", "pln": ["(: cnet_isa_63831021f3 (IsA dextrorotation rotation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dextrose is a kind of glucose", "pln": ["(: cnet_isa_bbaf3b2e3e (IsA dextrose glucose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dhak is a kind of tree", "pln": ["(: cnet_isa_17e6eda20b (IsA dhak tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dharma is a kind of hindu deity", "pln": ["(: cnet_isa_3ac3338376 (IsA dharma hindu_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dhawa is a kind of tree", "pln": ["(: cnet_isa_043f2dfbaa (IsA dhawa tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dhegiha is a kind of siouan", "pln": ["(: cnet_isa_12efd814d5 (IsA dhegiha siouan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dhobi itch is a kind of tinea", "pln": ["(: cnet_isa_325b358086 (IsA dhobi_itch tinea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dhole is a kind of wild dog", "pln": ["(: cnet_isa_3dfe4a3592 (IsA dhole wild_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dhoti is a kind of breechcloth", "pln": ["(: cnet_isa_6f3cd37713 (IsA dhoti breechcloth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dhow is a kind of sailing vessel", "pln": ["(: cnet_isa_e91644f69f (IsA dhow sailing_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dhu l hijja is a kind of islamic calendar month", "pln": ["(: cnet_isa_4568dd7825 (IsA dhu_l_hijja islamic_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dhu l qa dah is a kind of islamic calendar month", "pln": ["(: cnet_isa_351b1e4215 (IsA dhu_l_qa_dah islamic_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "di iodotyrosine is a kind of iodotyrosine", "pln": ["(: cnet_isa_ab0ebaad98 (IsA di_iodotyrosine iodotyrosine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diabete is a kind of disease", "pln": ["(: cnet_isa_e548737507 (IsA diabete disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diabete is a kind of polygenic disorder", "pln": ["(: cnet_isa_916c173d4d (IsA diabete polygenic_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diabete insipidus is a kind of diabete", "pln": ["(: cnet_isa_a4e10faf36 (IsA diabete_insipidus diabete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diabete mellitus is a kind of diabete", "pln": ["(: cnet_isa_3bf347d102 (IsA diabete_mellitus diabete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diabetic is a kind of sick person", "pln": ["(: cnet_isa_1886e54fe4 (IsA diabetic sick_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "diabetic coma is a kind of coma", "pln": ["(: cnet_isa_db9b4b6f92 (IsA diabetic_coma coma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diabetic diet is a kind of diet", "pln": ["(: cnet_isa_8878d562f1 (IsA diabetic_diet diet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diabetic retinopathy is a kind of retinopathy", "pln": ["(: cnet_isa_b0428bca45 (IsA diabetic_retinopathy retinopathy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diabolatry is a kind of worship", "pln": ["(: cnet_isa_f3ab01cfb4 (IsA diabolatry worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diabolism is a kind of sorcery", "pln": ["(: cnet_isa_58b9357d15 (IsA diabolism sorcery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diabolist is a kind of devil worshiper", "pln": ["(: cnet_isa_89d52b603f (IsA diabolist devil_worshiper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diabolist is a kind of disciple", "pln": ["(: cnet_isa_c61ed0eb1a (IsA diabolist disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diacalpa is a kind of fern genus", "pln": ["(: cnet_isa_3e7e6861b9 (IsA diacalpa fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diacritical mark is a kind of mark", "pln": ["(: cnet_isa_baf23bbe2f (IsA diacritical_mark mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diadophis is a kind of reptile genus", "pln": ["(: cnet_isa_1ec3660532 (IsA diadophis reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diagnosis is a kind of designation", "pln": ["(: cnet_isa_d634b64a83 (IsA diagnosis designation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diagnosis of atherosclerosis is a kind of medical diagnosis", "pln": ["(: cnet_isa_5c57e007e3 (IsA diagnosis_of_atherosclerosis medical_diagnosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diagnostic procedure is a kind of procedure", "pln": ["(: cnet_isa_0aa2e6c9de (IsA diagnostic_procedure procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diagnostic program is a kind of utility program", "pln": ["(: cnet_isa_0418809a6a (IsA diagnostic_program utility_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diagnostic test is a kind of assay", "pln": ["(: cnet_isa_86d3107a7f (IsA diagnostic_test assay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diagnostician is a kind of specialist", "pln": ["(: cnet_isa_796bdeb709 (IsA diagnostician specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diagonal is a kind of straight line", "pln": ["(: cnet_isa_14928274a3 (IsA diagonal straight_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diagonal is a kind of line", "pln": ["(: cnet_isa_60908452d2 (IsA diagonal line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diagonal is a kind of set", "pln": ["(: cnet_isa_80dcbcd9e4 (IsA diagonal set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diagonal matrix is a kind of square matrix", "pln": ["(: cnet_isa_2a0810f148 (IsA diagonal_matrix square_matrix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diagonalization is a kind of resolution", "pln": ["(: cnet_isa_05b9dfdfa0 (IsA diagonalization resolution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "diagram is a kind of drawing", "pln": ["(: cnet_isa_ed4c6e90b4 (IsA diagram drawing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diakinesis is a kind of phase", "pln": ["(: cnet_isa_545b4d20a8 (IsA diakinesis phase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dial is a kind of control", "pln": ["(: cnet_isa_947490e30e (IsA dial control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dial is a kind of face", "pln": ["(: cnet_isa_6079a8d067 (IsA dial face) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dial is a kind of indicator", "pln": ["(: cnet_isa_3fabedb783 (IsA dial indicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dial is a kind of selector", "pln": ["(: cnet_isa_04df186040 (IsA dial selector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dial telephone is a kind of telephone", "pln": ["(: cnet_isa_a7ec597dca (IsA dial_telephone telephone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dialect is a kind of non standard speech", "pln": ["(: cnet_isa_916a09b50e (IsA dialect non_standard_speech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dialect atla is a kind of atla", "pln": ["(: cnet_isa_05f95be0cd (IsA dialect_atla atla) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dialect geography is a kind of linguistic", "pln": ["(: cnet_isa_55696de5d9 (IsA dialect_geography linguistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dialectic is a kind of philosophy", "pln": ["(: cnet_isa_b37b1346fa (IsA dialectic philosophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dialectic is a kind of contradiction", "pln": ["(: cnet_isa_3830f3c1fc (IsA dialectic contradiction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dialectical materialism is a kind of materialism", "pln": ["(: cnet_isa_af08525409 (IsA dialectical_materialism materialism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dialectician is a kind of logician", "pln": ["(: cnet_isa_19550328c3 (IsA dialectician logician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dialectic is a kind of rationale", "pln": ["(: cnet_isa_e7a422c3bf (IsA dialectic rationale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dialectology is a kind of linguistic", "pln": ["(: cnet_isa_951117324d (IsA dialectology linguistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dialeurode is a kind of arthropod genus", "pln": ["(: cnet_isa_92f8be5694 (IsA dialeurode arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dialog box is a kind of window", "pln": ["(: cnet_isa_e0f8fa40c3 (IsA dialog_box window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dialogue is a kind of literary composition", "pln": ["(: cnet_isa_e575bf1013 (IsA dialogue literary_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dialogue is a kind of script", "pln": ["(: cnet_isa_7ac9204077 (IsA dialogue script) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dialogue is a kind of talk", "pln": ["(: cnet_isa_ef8b7f2f19 (IsA dialogue talk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dialysis is a kind of chemical analysis", "pln": ["(: cnet_isa_ce9c41a74b (IsA dialysis chemical_analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dialyzer is a kind of medical instrument", "pln": ["(: cnet_isa_e35dc052d1 (IsA dialyzer medical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diamagnet is a kind of material", "pln": ["(: cnet_isa_146e69552e (IsA diamagnet material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diamagnetism is a kind of magnetism", "pln": ["(: cnet_isa_22b4e510ef (IsA diamagnetism magnetism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diamante is a kind of fabric", "pln": ["(: cnet_isa_e50d4d5d6e (IsA diamante fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diameter is a kind of length", "pln": ["(: cnet_isa_23c5959df8 (IsA diameter length) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diameter is a kind of straight line", "pln": ["(: cnet_isa_15447af869 (IsA diameter straight_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diamine is a kind of organic compound", "pln": ["(: cnet_isa_0a75a14605 (IsA diamine organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diamond is a kind of expensive stone", "pln": ["(: cnet_isa_4b3659d260 (IsA diamond expensive_stone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diamond is a kind of forever", "pln": ["(: cnet_isa_a9df0c159f (IsA diamond forever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diamond is a kind of girl s best friend", "pln": ["(: cnet_isa_77df8a51e4 (IsA diamond girl_s_best_friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "diamond is a kind of jewel", "pln": ["(: cnet_isa_944e3c520e (IsA diamond jewel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diamond is a kind of precious stone", "pln": ["(: cnet_isa_937745ef87 (IsA diamond precious_stone) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "diamond is a kind of stone", "pln": ["(: cnet_isa_ed2552365e (IsA diamond stone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diamond is a kind of playing card", "pln": ["(: cnet_isa_13dd7a11a7 (IsA diamond playing_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diamond is a kind of carbon", "pln": ["(: cnet_isa_c7480eeda0 (IsA diamond carbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diamond is a kind of transparent gem", "pln": ["(: cnet_isa_ef8e044dd5 (IsA diamond transparent_gem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diamond jubilee is a kind of jubilee", "pln": ["(: cnet_isa_187380447f (IsA diamond_jubilee jubilee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diamond point is a kind of point", "pln": ["(: cnet_isa_9dd1f777e3 (IsA diamond_point point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diamond wedding anniversary is a kind of wedding anniversary", "pln": ["(: cnet_isa_64f8059448 (IsA diamond_wedding_anniversary wedding_anniversary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diamondback is a kind of rattlesnake", "pln": ["(: cnet_isa_5cf393f318 (IsA diamondback rattlesnake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diamondback terrapin is a kind of terrapin", "pln": ["(: cnet_isa_24bfbc8ca3 (IsA diamondback_terrapin terrapin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dianthus is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_aa55e47180 (IsA dianthus caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "diapason is a kind of organ stop", "pln": ["(: cnet_isa_b42d1f1278 (IsA diapason organ_stop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "diapedesis is a kind of organic phenomenon", "pln": ["(: cnet_isa_5e15597cea (IsA diapedesis organic_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diapensia is a kind of subshrub", "pln": ["(: cnet_isa_760ff60643 (IsA diapensia subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diapensiaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_40cc7e30c3 (IsA diapensiaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diapensiale is a kind of plant order", "pln": ["(: cnet_isa_f25c7f116c (IsA diapensiale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diaper is a kind of fabric", "pln": ["(: cnet_isa_f90f482c36 (IsA diaper fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diaper is a kind of garment", "pln": ["(: cnet_isa_38be929e83 (IsA diaper garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diaper rash is a kind of dermatitis", "pln": ["(: cnet_isa_fab15104c8 (IsA diaper_rash dermatitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "diapheromera is a kind of walking stick", "pln": ["(: cnet_isa_c468c852b2 (IsA diapheromera walking_stick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diaphone is a kind of foghorn", "pln": ["(: cnet_isa_2eca01b9ec (IsA diaphone foghorn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diaphoretic is a kind of medicine", "pln": ["(: cnet_isa_84938bc656 (IsA diaphoretic medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "diaphragm is a kind of membrane", "pln": ["(: cnet_isa_62c9ac8a79 (IsA diaphragm membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diaphragm is a kind of muscular structure", "pln": ["(: cnet_isa_7e6c490bf0 (IsA diaphragm muscular_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diaphragm is a kind of contraceptive", "pln": ["(: cnet_isa_1165c77beb (IsA diaphragm contraceptive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diaphragm is a kind of disk", "pln": ["(: cnet_isa_3d897c918e (IsA diaphragm disk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diaphragm is a kind of mechanical device", "pln": ["(: cnet_isa_f727e2889e (IsA diaphragm mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diaphysis is a kind of long bone", "pln": ["(: cnet_isa_04cd62330e (IsA diaphysis long_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diapir is a kind of geological formation", "pln": ["(: cnet_isa_22ed30a59a (IsA diapir geological_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diapsid is a kind of reptile", "pln": ["(: cnet_isa_d996e58e51 (IsA diapsid reptile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diapsida is a kind of reptile", "pln": ["(: cnet_isa_a7bcdc706f (IsA diapsida reptile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diarchy is a kind of political system", "pln": ["(: cnet_isa_8fdc13c996 (IsA diarchy political_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diarist is a kind of writer", "pln": ["(: cnet_isa_d5efdc7919 (IsA diarist writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diarrhea is a kind of symptom", "pln": ["(: cnet_isa_7307312cca (IsA diarrhea symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diary is a kind of journal", "pln": ["(: cnet_isa_3b561cdfba (IsA diary journal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diary is a kind of writing", "pln": ["(: cnet_isa_724e02f848 (IsA diary writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diaspididae is a kind of arthropod family", "pln": ["(: cnet_isa_cc2d29aefe (IsA diaspididae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diaspora is a kind of distribution", "pln": ["(: cnet_isa_d16b7ba8a2 (IsA diaspora distribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diaspora is a kind of dispersion", "pln": ["(: cnet_isa_3fab5f2585 (IsA diaspora dispersion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diaspora is a kind of body", "pln": ["(: cnet_isa_a0aaa19ec0 (IsA diaspora body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diastasis is a kind of dislocation", "pln": ["(: cnet_isa_bd92528814 (IsA diastasis dislocation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diastema is a kind of opening", "pln": ["(: cnet_isa_7c50d55fb1 (IsA diastema opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diastole is a kind of pulse", "pln": ["(: cnet_isa_bb69ae0224 (IsA diastole pulse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diastolic pressure is a kind of blood pressure", "pln": ["(: cnet_isa_13ce715341 (IsA diastolic_pressure blood_pressure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diastrophism is a kind of geological process", "pln": ["(: cnet_isa_0b44a7bab2 (IsA diastrophism geological_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diathermy is a kind of modality", "pln": ["(: cnet_isa_2c82aad294 (IsA diathermy modality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diathermy machine is a kind of medical instrument", "pln": ["(: cnet_isa_afd7851bb5 (IsA diathermy_machine medical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diathesis is a kind of sensitivity", "pln": ["(: cnet_isa_8251d58647 (IsA diathesis sensitivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diatom is a kind of alga", "pln": ["(: cnet_isa_c769f01d8c (IsA diatom alga) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diatom is a kind of phytoplankton", "pln": ["(: cnet_isa_7d4698e7ea (IsA diatom phytoplankton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "diatomaceous earth is a kind of earth", "pln": ["(: cnet_isa_98854cb10a (IsA diatomaceous_earth earth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "dibs is a kind of claim", "pln": ["(: cnet_isa_44c00ed4c8 (IsA dibs claim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diatomaceous earth is a kind of filter", "pln": ["(: cnet_isa_a0594b1785 (IsA diatomaceous_earth filter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diatonic scale is a kind of scale", "pln": ["(: cnet_isa_a846ed84b7 (IsA diatonic_scale scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diazonium is a kind of cation", "pln": ["(: cnet_isa_293f623ff1 (IsA diazonium cation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dibasic acid is a kind of acid", "pln": ["(: cnet_isa_a38d9068c1 (IsA dibasic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dibasic salt is a kind of salt", "pln": ["(: cnet_isa_4f31264a70 (IsA dibasic_salt salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dibble is a kind of hand tool", "pln": ["(: cnet_isa_0cfda3d462 (IsA dibble hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dibranchiata is a kind of class", "pln": ["(: cnet_isa_3140bcb9cf (IsA dibranchiata class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dibranchiate is a kind of cephalopod", "pln": ["(: cnet_isa_fad3b9c875 (IsA dibranchiate cephalopod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dib is a kind of claim", "pln": ["(: cnet_isa_01d2c106f1 (IsA dib claim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dibucaine is a kind of intravenous anesthetic", "pln": ["(: cnet_isa_82d75403e7 (IsA dibucaine intravenous_anesthetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dicamptodon is a kind of salamander", "pln": ["(: cnet_isa_1beb669aa0 (IsA dicamptodon salamander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dicamptodontidae is a kind of amphibian family", "pln": ["(: cnet_isa_4a0460ee80 (IsA dicamptodontidae amphibian_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dice is a kind of cube", "pln": ["(: cnet_isa_87362408ee (IsA dice cube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dice cup is a kind of container", "pln": ["(: cnet_isa_d6c7de3fa0 (IsA dice_cup container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dicentra is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_6ee6626fc3 (IsA dicentra dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dicer is a kind of mechanical device", "pln": ["(: cnet_isa_a23bd91976 (IsA dicer mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dicero is a kind of mammal genus", "pln": ["(: cnet_isa_bc1fb879df (IsA dicero mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dichloride is a kind of chloride", "pln": ["(: cnet_isa_d851d922c1 (IsA dichloride chloride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dichlorodiphenyltrichloroethane is a kind of insecticide", "pln": ["(: cnet_isa_301ca2fe4f (IsA dichlorodiphenyltrichloroethane insecticide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dichlorodiphenyltrichloroethane is a kind of pollutant", "pln": ["(: cnet_isa_06d8bf6665 (IsA dichlorodiphenyltrichloroethane pollutant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dichondra is a kind of vine", "pln": ["(: cnet_isa_2d8377af1b (IsA dichondra vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dichotomization is a kind of division", "pln": ["(: cnet_isa_fe20899fd7 (IsA dichotomization division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dichotomy is a kind of classification", "pln": ["(: cnet_isa_0d8d260355 (IsA dichotomy classification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dichroism is a kind of pleochroism", "pln": ["(: cnet_isa_6114ad8c44 (IsA dichroism pleochroism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dichromacy is a kind of color blindness", "pln": ["(: cnet_isa_27f4bb6518 (IsA dichromacy color_blindness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dichromat is a kind of color blind person", "pln": ["(: cnet_isa_b3b8e382e2 (IsA dichromat color_blind_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dichromic acid is a kind of acid", "pln": ["(: cnet_isa_62f1717867 (IsA dichromic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dick is a kind of character in children s book", "pln": ["(: cnet_isa_696dcf21a4 (IsA dick character_in_children_s_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dick is a kind of detective", "pln": ["(: cnet_isa_7bab65b60a (IsA dick detective) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dick test is a kind of skin test", "pln": ["(: cnet_isa_fff06ae053 (IsA dick_test skin_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dickey is a kind of backseat", "pln": ["(: cnet_isa_b55249a860 (IsA dickey backseat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dickey is a kind of insert", "pln": ["(: cnet_isa_ca2cab260b (IsA dickey insert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dickeybird is a kind of bird", "pln": ["(: cnet_isa_b41e470515 (IsA dickeybird bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dicksonia is a kind of fern genus", "pln": ["(: cnet_isa_c5726e75fe (IsA dicksonia fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dicksoniaceae is a kind of fern family", "pln": ["(: cnet_isa_fe46b98649 (IsA dicksoniaceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dicot is a kind of angiosperm", "pln": ["(: cnet_isa_ace1de6208 (IsA dicot angiosperm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dicot family is a kind of family", "pln": ["(: cnet_isa_3aa789926d (IsA dicot_family family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dicot genus is a kind of genus", "pln": ["(: cnet_isa_0b5dd89523 (IsA dicot_genus genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dicotyledone is a kind of class", "pln": ["(: cnet_isa_0a8944e371 (IsA dicotyledone class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dicranaceae is a kind of moss family", "pln": ["(: cnet_isa_f7ef1bb93e (IsA dicranaceae moss_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dicranale is a kind of plant order", "pln": ["(: cnet_isa_8df63c5ba3 (IsA dicranale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dicranopteris is a kind of fern genus", "pln": ["(: cnet_isa_2ea4b8733e (IsA dicranopteris fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dicranum is a kind of moss genus", "pln": ["(: cnet_isa_11ed3e8aa6 (IsA dicranum moss_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dicrostonyx is a kind of mammal genus", "pln": ["(: cnet_isa_d1b84c7428 (IsA dicrostonyx mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dictamnus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_b31793fba2 (IsA dictamnus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dictaphone is a kind of tape recorder", "pln": ["(: cnet_isa_891ea5f0c3 (IsA dictaphone tape_recorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dictate is a kind of principle", "pln": ["(: cnet_isa_8dfc07a90c (IsA dictate principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dictate is a kind of rule", "pln": ["(: cnet_isa_e3f5684102 (IsA dictate rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dictation is a kind of matter", "pln": ["(: cnet_isa_83c1a7e726 (IsA dictation matter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dictation is a kind of speech", "pln": ["(: cnet_isa_c0800de619 (IsA dictation speech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dictator is a kind of ruler", "pln": ["(: cnet_isa_2555dc7d47 (IsA dictator ruler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dictator is a kind of speaker", "pln": ["(: cnet_isa_5330b027ca (IsA dictator speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dictatorship is a kind of autocracy", "pln": ["(: cnet_isa_0d2ffd611b (IsA dictatorship autocracy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dictionary is a kind of book", "pln": ["(: cnet_isa_1231bb0c72 (IsA dictionary book) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dictionary is a kind of wordbook", "pln": ["(: cnet_isa_5d1f8bd242 (IsA dictionary wordbook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dictionary definition is a kind of definition", "pln": ["(: cnet_isa_30f84acc28 (IsA dictionary_definition definition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dictostylium is a kind of cellular slime mold", "pln": ["(: cnet_isa_d47f1a7a42 (IsA dictostylium cellular_slime_mold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dictyophera is a kind of fungus genus", "pln": ["(: cnet_isa_72ea73fbd7 (IsA dictyophera fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dictyoptera is a kind of animal order", "pln": ["(: cnet_isa_93452f1782 (IsA dictyoptera animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dictyopterous insect is a kind of insect", "pln": ["(: cnet_isa_b80f6ab94e (IsA dictyopterous_insect insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dicumarol is a kind of anticoagulant", "pln": ["(: cnet_isa_27865001c9 (IsA dicumarol anticoagulant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dicynodont is a kind of therapsid", "pln": ["(: cnet_isa_53664b0825 (IsA dicynodont therapsid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dicynodontia is a kind of division", "pln": ["(: cnet_isa_470c5871b4 (IsA dicynodontia division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "didacticism is a kind of communication", "pln": ["(: cnet_isa_ced8c8b0ce (IsA didacticism communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "didelphidae is a kind of mammal family", "pln": ["(: cnet_isa_f4753a4466 (IsA didelphidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "didelphis is a kind of mammal genus", "pln": ["(: cnet_isa_fb2b14a900 (IsA didelphis mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dideoxycytosine is a kind of antiviral", "pln": ["(: cnet_isa_46cf5438c7 (IsA dideoxycytosine antiviral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dideoxyinosine is a kind of antiviral", "pln": ["(: cnet_isa_30c4e8c96f (IsA dideoxyinosine antiviral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "die is a kind of cutter", "pln": ["(: cnet_isa_b59471f9a9 (IsA die cutter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "die is a kind of shaping tool", "pln": ["(: cnet_isa_4fb9350cbb (IsA die shaping_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dieback is a kind of plant disease", "pln": ["(: cnet_isa_135bc91d13 (IsA dieback plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dieffenbachia is a kind of monocot genus", "pln": ["(: cnet_isa_7fd9c199bf (IsA dieffenbachia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diegueno is a kind of yuman", "pln": ["(: cnet_isa_1e0728738f (IsA diegueno yuman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diegueno is a kind of hoka", "pln": ["(: cnet_isa_1df152d8f0 (IsA diegueno hoka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dielectric heating is a kind of electrical phenomenon", "pln": ["(: cnet_isa_50c9555919 (IsA dielectric_heating electrical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diemaker is a kind of craftsman", "pln": ["(: cnet_isa_a10f350085 (IsA diemaker craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diencephalon is a kind of neural structure", "pln": ["(: cnet_isa_7b0514dc4a (IsA diencephalon neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "diervilla is a kind of asterid dicot genus", "pln": ["(: cnet_isa_b8b785e40f (IsA diervilla asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diesel is a kind of fuel", "pln": ["(: cnet_isa_9aecf33514 (IsA diesel fuel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diesel is a kind of internal combustion engine", "pln": ["(: cnet_isa_f213315082 (IsA diesel internal_combustion_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diesel electric locomotive is a kind of diesel locomotive", "pln": ["(: cnet_isa_25a6eff488 (IsA diesel_electric_locomotive diesel_locomotive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diesel hydraulic locomotive is a kind of diesel locomotive", "pln": ["(: cnet_isa_6c91ee927e (IsA diesel_hydraulic_locomotive diesel_locomotive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diesel locomotive is a kind of locomotive", "pln": ["(: cnet_isa_cf35ff7a9b (IsA diesel_locomotive locomotive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diesel oil is a kind of fuel", "pln": ["(: cnet_isa_d4e53aaa04 (IsA diesel_oil fuel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diestock is a kind of device", "pln": ["(: cnet_isa_d7fd2f51d5 (IsA diestock device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diestrus is a kind of anestrus", "pln": ["(: cnet_isa_e90286a5b8 (IsA diestrus anestrus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diet is a kind of fast", "pln": ["(: cnet_isa_8a86f79fde (IsA diet fast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "diet is a kind of fare", "pln": ["(: cnet_isa_c1bf90604b (IsA diet fare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diet is a kind of legislature", "pln": ["(: cnet_isa_9abca91701 (IsA diet legislature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dietary is a kind of fare", "pln": ["(: cnet_isa_7531a35472 (IsA dietary fare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dietary supplement is a kind of diet", "pln": ["(: cnet_isa_f9146dc38f (IsA dietary_supplement diet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dieter is a kind of person", "pln": ["(: cnet_isa_c218ac08d0 (IsA dieter person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dietetic is a kind of life science", "pln": ["(: cnet_isa_905129e30d (IsA dietetic life_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diethylaminoethyl cellulose is a kind of cellulose", "pln": ["(: cnet_isa_bd4de6f756 (IsA diethylaminoethyl_cellulose cellulose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "diethylstilbesterol is a kind of nonsteroid", "pln": ["(: cnet_isa_953cbeae42 (IsA diethylstilbesterol nonsteroid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diethylstilbestrol is a kind of estrogen", "pln": ["(: cnet_isa_5aa834bca9 (IsA diethylstilbestrol estrogen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dietician is a kind of specialist", "pln": ["(: cnet_isa_4da37a1a8f (IsA dietician specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "difference is a kind of quality", "pln": ["(: cnet_isa_44edf4aec1 (IsA difference quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "difference is a kind of change", "pln": ["(: cnet_isa_d92b9a1e18 (IsA difference change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "difference threshold is a kind of threshold", "pln": ["(: cnet_isa_3436c400ba (IsA difference_threshold threshold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "differentia is a kind of difference", "pln": ["(: cnet_isa_1453790198 (IsA differentia difference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "differential is a kind of difference", "pln": ["(: cnet_isa_4fe40b7664 (IsA differential difference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "differential analyzer is a kind of analog computer", "pln": ["(: cnet_isa_08e3d707d3 (IsA differential_analyzer analog_computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "differential blood count is a kind of blood count", "pln": ["(: cnet_isa_881237cb09 (IsA differential_blood_count blood_count) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "differential calculus is a kind of calculus", "pln": ["(: cnet_isa_ccff0a4f83 (IsA differential_calculus calculus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "differential diagnosis is a kind of medical diagnosis", "pln": ["(: cnet_isa_e1abf180ec (IsA differential_diagnosis medical_diagnosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "differential equation is a kind of equation", "pln": ["(: cnet_isa_ae9aaf99f6 (IsA differential_equation equation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "differential gear is a kind of bevel gear", "pln": ["(: cnet_isa_da5ed64799 (IsA differential_gear bevel_gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "differential psychology is a kind of psychology", "pln": ["(: cnet_isa_b85287fee1 (IsA differential_psychology psychology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "differentiation is a kind of mathematical process", "pln": ["(: cnet_isa_10f87a38d6 (IsA differentiation mathematical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "differentiation is a kind of discrimination", "pln": ["(: cnet_isa_6032ea6e8a (IsA differentiation discrimination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "differentiator is a kind of person", "pln": ["(: cnet_isa_34fd10a347 (IsA differentiator person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "difficulty is a kind of quality", "pln": ["(: cnet_isa_f4987b524d (IsA difficulty quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "difficulty is a kind of cognitive factor", "pln": ["(: cnet_isa_34f95e2ff5 (IsA difficulty cognitive_factor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "difficulty is a kind of condition", "pln": ["(: cnet_isa_da54b2be94 (IsA difficulty condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diffidence is a kind of timidity", "pln": ["(: cnet_isa_bb744daded (IsA diffidence timidity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "difflugia is a kind of protozoan", "pln": ["(: cnet_isa_ca008b4665 (IsA difflugia protozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diffraction is a kind of optical phenomenon", "pln": ["(: cnet_isa_f2574840f6 (IsA diffraction optical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diffraction grating is a kind of optical device", "pln": ["(: cnet_isa_fee7cdd604 (IsA diffraction_grating optical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diffuse nebula is a kind of nebula", "pln": ["(: cnet_isa_900f290487 (IsA diffuse_nebula nebula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diffuseness is a kind of scatter", "pln": ["(: cnet_isa_f183a828da (IsA diffuseness scatter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diffuser is a kind of baffle", "pln": ["(: cnet_isa_a7e7562972 (IsA diffuser baffle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diffuser is a kind of optical device", "pln": ["(: cnet_isa_5a3d85a6b8 (IsA diffuser optical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diffusion is a kind of spread", "pln": ["(: cnet_isa_84a952fc46 (IsA diffusion spread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diffusion is a kind of natural process", "pln": ["(: cnet_isa_38a8968d87 (IsA diffusion natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dig is a kind of touch", "pln": ["(: cnet_isa_8cae046d0f (IsA dig touch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dig is a kind of site", "pln": ["(: cnet_isa_13bbd5580d (IsA dig site) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dig is a kind of dent", "pln": ["(: cnet_isa_905b34a461 (IsA dig dent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digest is a kind of periodical", "pln": ["(: cnet_isa_a56fa9f703 (IsA digest periodical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digester is a kind of autoclave", "pln": ["(: cnet_isa_b2487df26d (IsA digester autoclave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digestibility is a kind of edibility", "pln": ["(: cnet_isa_7242755435 (IsA digestibility edibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digestion is a kind of improved if masticate food", "pln": ["(: cnet_isa_6f445d3047 (IsA digestion improved_if_masticate_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digestion is a kind of learning", "pln": ["(: cnet_isa_9c3d1bee2d (IsA digestion learning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "digestion is a kind of chemical process", "pln": ["(: cnet_isa_a77ccb0517 (IsA digestion chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digestion is a kind of organic process", "pln": ["(: cnet_isa_4db82cff35 (IsA digestion organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digestive is a kind of substance", "pln": ["(: cnet_isa_cfb1f09935 (IsA digestive substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digestive gland is a kind of exocrine gland", "pln": ["(: cnet_isa_c4a075acde (IsA digestive_gland exocrine_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digestive juice is a kind of juice", "pln": ["(: cnet_isa_083155f6a3 (IsA digestive_juice juice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digestive system is a kind of system", "pln": ["(: cnet_isa_5681d6adec (IsA digestive_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digger is a kind of laborer", "pln": ["(: cnet_isa_708c4448cf (IsA digger laborer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digger wasp is a kind of sphecoid wasp", "pln": ["(: cnet_isa_7c5b12d299 (IsA digger_wasp sphecoid_wasp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digging is a kind of living quarter", "pln": ["(: cnet_isa_cc9c0a80f9 (IsA digging living_quarter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digit is a kind of extremity", "pln": ["(: cnet_isa_c590e095fd (IsA digit extremity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digit is a kind of integer", "pln": ["(: cnet_isa_0e6c634554 (IsA digit integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digital analog converter is a kind of data converter", "pln": ["(: cnet_isa_a126f23ad4 (IsA digital_analog_converter data_converter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digital artery is a kind of artery", "pln": ["(: cnet_isa_9812a9c9bb (IsA digital_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "digital audiotape is a kind of audiotape", "pln": ["(: cnet_isa_c093a4cdd9 (IsA digital_audiotape audiotape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "digital camera is a kind of camera", "pln": ["(: cnet_isa_de779a177f (IsA digital_camera camera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digital clock is a kind of clock", "pln": ["(: cnet_isa_697e170169 (IsA digital_clock clock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "digital communication is a kind of electronic communication", "pln": ["(: cnet_isa_381ecb5017 (IsA digital_communication electronic_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digital communication technology is a kind of communication technology", "pln": ["(: cnet_isa_36466066cb (IsA digital_communication_technology communication_technology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "digital computer is a kind of computer", "pln": ["(: cnet_isa_5fb848b649 (IsA digital_computer computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digital display is a kind of display", "pln": ["(: cnet_isa_ef3b3de3f4 (IsA digital_display display) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digital photography is a kind of photography", "pln": ["(: cnet_isa_e8138e7130 (IsA digital_photography photography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digital plethysmograph is a kind of plethysmograph", "pln": ["(: cnet_isa_afffd28553 (IsA digital_plethysmograph plethysmograph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digital subscriber line is a kind of telephone line", "pln": ["(: cnet_isa_86e74ec701 (IsA digital_subscriber_line telephone_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digital vein is a kind of vein", "pln": ["(: cnet_isa_17168c2658 (IsA digital_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digital voltmeter is a kind of electronic voltmeter", "pln": ["(: cnet_isa_d222a4c9df (IsA digital_voltmeter electronic_voltmeter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digital watch is a kind of watch", "pln": ["(: cnet_isa_e7665f09b7 (IsA digital_watch watch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digitalis is a kind of cardiac glycoside", "pln": ["(: cnet_isa_ca7532116f (IsA digitalis cardiac_glycoside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digitalization is a kind of medical care", "pln": ["(: cnet_isa_94b6b8372f (IsA digitalization medical_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "digitaria is a kind of monocot genus", "pln": ["(: cnet_isa_16a0ecdf15 (IsA digitaria monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digitigrade mammal is a kind of placental", "pln": ["(: cnet_isa_ea23608ecf (IsA digitigrade_mammal placental) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digitization is a kind of conversion", "pln": ["(: cnet_isa_db6fb2993e (IsA digitization conversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digitizer is a kind of data converter", "pln": ["(: cnet_isa_d34a4fc0d9 (IsA digitizer data_converter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digitoxin is a kind of digitalis", "pln": ["(: cnet_isa_8c1767e3ab (IsA digitoxin digitalis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dignity is a kind of bearing", "pln": ["(: cnet_isa_c44272876b (IsA dignity bearing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dignity is a kind of pride", "pln": ["(: cnet_isa_ada78a68e0 (IsA dignity pride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dignity is a kind of status", "pln": ["(: cnet_isa_f9d57bd820 (IsA dignity status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digraph is a kind of letter", "pln": ["(: cnet_isa_6fd63bdb05 (IsA digraph letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "digression is a kind of journey", "pln": ["(: cnet_isa_2e8b996dd7 (IsA digression journey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "digression is a kind of message", "pln": ["(: cnet_isa_d3739cd21f (IsA digression message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dig is a kind of excavation", "pln": ["(: cnet_isa_cfeb073868 (IsA dig excavation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dihybrid is a kind of hybrid", "pln": ["(: cnet_isa_52965c34ed (IsA dihybrid hybrid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dihybrid cross is a kind of hybridization", "pln": ["(: cnet_isa_df3dce9964 (IsA dihybrid_cross hybridization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dihydrostreptomycin is a kind of antibiotic", "pln": ["(: cnet_isa_a368f12d8b (IsA dihydrostreptomycin antibiotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dik dik is a kind of antelope", "pln": ["(: cnet_isa_dfdd00e50a (IsA dik_dik antelope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dika bread is a kind of food", "pln": ["(: cnet_isa_403672279f (IsA dika_bread food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dika nut is a kind of edible seed", "pln": ["(: cnet_isa_580ffd8ed6 (IsA dika_nut edible_seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dilapidation is a kind of decay", "pln": ["(: cnet_isa_b4d1109603 (IsA dilapidation decay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dilatation is a kind of physiological state", "pln": ["(: cnet_isa_ca793bbcc6 (IsA dilatation physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dilation is a kind of expansion", "pln": ["(: cnet_isa_bc13d7d96c (IsA dilation expansion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dilation is a kind of discussion", "pln": ["(: cnet_isa_b0811a1648 (IsA dilation discussion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dilation and curettage is a kind of operation", "pln": ["(: cnet_isa_60e81439ec (IsA dilation_and_curettage operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dilator is a kind of drug", "pln": ["(: cnet_isa_759a65e0db (IsA dilator drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dilator is a kind of surgical instrument", "pln": ["(: cnet_isa_d2e42b5580 (IsA dilator surgical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dilator is a kind of body part", "pln": ["(: cnet_isa_6ba9fbb0f1 (IsA dilator body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dilatoriness is a kind of slowness", "pln": ["(: cnet_isa_0e3e19ee54 (IsA dilatoriness slowness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dilatory plea is a kind of plea", "pln": ["(: cnet_isa_5ff3a7664a (IsA dilatory_plea plea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dildo is a kind of vibrator", "pln": ["(: cnet_isa_4a0d24066d (IsA dildo vibrator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dilemma is a kind of perplexity", "pln": ["(: cnet_isa_fc89fab64c (IsA dilemma perplexity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diligence is a kind of conscientiousness", "pln": ["(: cnet_isa_9d10ddd49f (IsA diligence conscientiousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diligence is a kind of determination", "pln": ["(: cnet_isa_b21fd6c6db (IsA diligence determination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dill is a kind of herb", "pln": ["(: cnet_isa_122ca5eeb8 (IsA dill herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dill pickle is a kind of pickle", "pln": ["(: cnet_isa_7f43fbc9fa (IsA dill_pickle pickle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dill seed is a kind of flavorer", "pln": ["(: cnet_isa_7692553fde (IsA dill_seed flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dillenia is a kind of angiospermous tree", "pln": ["(: cnet_isa_f4adfbdfd1 (IsA dillenia angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dilleniaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_230ba38b25 (IsA dilleniaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dilleniid dicot family is a kind of dicot family", "pln": ["(: cnet_isa_ef0b5b1bdd (IsA dilleniid_dicot_family dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dilleniid dicot genus is a kind of dicot genus", "pln": ["(: cnet_isa_2dc8395a75 (IsA dilleniid_dicot_genus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dilleniidae is a kind of class", "pln": ["(: cnet_isa_cf0cf82bb4 (IsA dilleniidae class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dilutant is a kind of agent", "pln": ["(: cnet_isa_0b1b77f662 (IsA dilutant agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dilution is a kind of weakening", "pln": ["(: cnet_isa_010802af75 (IsA dilution weakening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dilution is a kind of solution", "pln": ["(: cnet_isa_1a701f7cce (IsA dilution solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dim sum is a kind of cuisine", "pln": ["(: cnet_isa_63dc541dd8 (IsA dim_sum cuisine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dime is a kind of worth ten cent", "pln": ["(: cnet_isa_08845e13e9 (IsA dime worth_ten_cent) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dime is a kind of coin", "pln": ["(: cnet_isa_70ead5c6cf (IsA dime coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dime bag is a kind of deck", "pln": ["(: cnet_isa_b7bdf10bd6 (IsA dime_bag deck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dime novel is a kind of novel", "pln": ["(: cnet_isa_985ba461f5 (IsA dime_novel novel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dimension is a kind of magnitude", "pln": ["(: cnet_isa_0c5fc4d626 (IsA dimension magnitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dimension is a kind of cartesian coordinate", "pln": ["(: cnet_isa_8881bd3389 (IsA dimension cartesian_coordinate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dimensionality is a kind of spatial property", "pln": ["(: cnet_isa_51decc41e1 (IsA dimensionality spatial_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dimer is a kind of compound", "pln": ["(: cnet_isa_20a1b9676b (IsA dimer compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dimethylglyoxime is a kind of precipitant", "pln": ["(: cnet_isa_c25536fcf3 (IsA dimethylglyoxime precipitant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dimetrodon is a kind of synapsid", "pln": ["(: cnet_isa_2b425c1d69 (IsA dimetrodon synapsid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diminution is a kind of statement", "pln": ["(: cnet_isa_83a0630985 (IsA diminution statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diminutive is a kind of word", "pln": ["(: cnet_isa_e2bf1cd230 (IsA diminutive word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diminutiveness is a kind of smallness", "pln": ["(: cnet_isa_0274acb660 (IsA diminutiveness smallness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dimity is a kind of fabric", "pln": ["(: cnet_isa_5d723466bf (IsA dimity fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dimmer is a kind of rheostat", "pln": ["(: cnet_isa_126d173d3b (IsA dimmer rheostat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dimness is a kind of dullness", "pln": ["(: cnet_isa_914ad408a5 (IsA dimness dullness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dimness is a kind of indistinctness", "pln": ["(: cnet_isa_2b476dea23 (IsA dimness indistinctness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dimness is a kind of semidarkness", "pln": ["(: cnet_isa_1fd10b3d2f (IsA dimness semidarkness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dimocarpus is a kind of dicot genus", "pln": ["(: cnet_isa_ffe8c4e0f6 (IsA dimocarpus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dimorphism is a kind of polymorphism", "pln": ["(: cnet_isa_5bf803d1a6 (IsA dimorphism polymorphism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dimorphotheca is a kind of asterid dicot genus", "pln": ["(: cnet_isa_6ea9470d1e (IsA dimorphotheca asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dimple is a kind of depression", "pln": ["(: cnet_isa_802f61bd1d (IsA dimple depression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dimpled chad is a kind of chad", "pln": ["(: cnet_isa_8ec39e5e08 (IsA dimpled_chad chad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dimwit is a kind of simpleton", "pln": ["(: cnet_isa_bc964b338d (IsA dimwit simpleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diner is a kind of restaurant", "pln": ["(: cnet_isa_61bdb4ece9 (IsA diner restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diner is a kind of eater", "pln": ["(: cnet_isa_9da1ca8e66 (IsA diner eater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dinette is a kind of room", "pln": ["(: cnet_isa_4dae126152 (IsA dinette room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ding is a kind of sound", "pln": ["(: cnet_isa_665a948171 (IsA ding sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ding dong is a kind of noise", "pln": ["(: cnet_isa_1048045403 (IsA ding_dong noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dingbat is a kind of simpleton", "pln": ["(: cnet_isa_c60ac12189 (IsA dingbat simpleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dinghy is a kind of small boat", "pln": ["(: cnet_isa_0c5d8dcb97 (IsA dinghy small_boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dinginess is a kind of dirtiness", "pln": ["(: cnet_isa_cdcd094f4b (IsA dinginess dirtiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dingo is a kind of wild dog", "pln": ["(: cnet_isa_87df0b501d (IsA dingo wild_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dining is a kind of eating", "pln": ["(: cnet_isa_faaadada5e (IsA dining eating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dining area is a kind of area", "pln": ["(: cnet_isa_86fc195617 (IsA dining_area area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dining car is a kind of passenger car", "pln": ["(: cnet_isa_74f6e76162 (IsA dining_car passenger_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dining hall is a kind of dining room", "pln": ["(: cnet_isa_021b19417f (IsA dining_hall dining_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dining room is a kind of place to eat food", "pln": ["(: cnet_isa_5149b44f9c (IsA dining_room place_to_eat_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dining room is a kind of room", "pln": ["(: cnet_isa_4f0e60ea88 (IsA dining_room room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dining room is a kind of room where people eat", "pln": ["(: cnet_isa_6f8b7404e9 (IsA dining_room room_where_people_eat) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dining room attendant is a kind of employee", "pln": ["(: cnet_isa_ee00f06d29 (IsA dining_room_attendant employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dining room furniture is a kind of furniture", "pln": ["(: cnet_isa_a139acfdbc (IsA dining_room_furniture furniture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dining room suite is a kind of suite", "pln": ["(: cnet_isa_cf6d0f8fec (IsA dining_room_suite suite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dining room table is a kind of dining room furniture", "pln": ["(: cnet_isa_3eb0f05d45 (IsA dining_room_table dining_room_furniture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dining room table is a kind of dining table", "pln": ["(: cnet_isa_ded7dbb85e (IsA dining_room_table dining_table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dining table is a kind of table", "pln": ["(: cnet_isa_118bfe07ff (IsA dining_table table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dink is a kind of couple", "pln": ["(: cnet_isa_0695b9ae2b (IsA dink couple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dinka is a kind of nilotic", "pln": ["(: cnet_isa_1c695291d6 (IsA dinka nilotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dinky is a kind of locomotive", "pln": ["(: cnet_isa_4f2c38ed10 (IsA dinky locomotive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dinner is a kind of great time for socialization", "pln": ["(: cnet_isa_6d7fa8cd08 (IsA dinner great_time_for_socialization) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dinner is a kind of meal", "pln": ["(: cnet_isa_950f35319b (IsA dinner meal) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dinner is a kind of party", "pln": ["(: cnet_isa_0ac37324d0 (IsA dinner party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dinner bell is a kind of bell", "pln": ["(: cnet_isa_1532657f71 (IsA dinner_bell bell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dinner dress is a kind of formalwear", "pln": ["(: cnet_isa_b3275ac0dc (IsA dinner_dress formalwear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dinner dress is a kind of gown", "pln": ["(: cnet_isa_f1af50327c (IsA dinner_dress gown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dinner jacket is a kind of formalwear", "pln": ["(: cnet_isa_57f8592dd4 (IsA dinner_jacket formalwear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dinner napkin is a kind of napkin", "pln": ["(: cnet_isa_050af8f1f8 (IsA dinner_napkin napkin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dinner pail is a kind of bucket", "pln": ["(: cnet_isa_bf27fd9fd8 (IsA dinner_pail bucket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dinner plate is a kind of plate", "pln": ["(: cnet_isa_f1f5e76f45 (IsA dinner_plate plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dinner service is a kind of service", "pln": ["(: cnet_isa_0ec6b7caab (IsA dinner_service service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dinner table is a kind of dining table", "pln": ["(: cnet_isa_acc0ffff4c (IsA dinner_table dining_table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dinner theater is a kind of theater", "pln": ["(: cnet_isa_5198c22619 (IsA dinner_theater theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dinnertime is a kind of mealtime", "pln": ["(: cnet_isa_90a2c4bcaf (IsA dinnertime mealtime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dinnerware is a kind of tableware", "pln": ["(: cnet_isa_101bd2d76f (IsA dinnerware tableware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dinocera is a kind of dinocerate", "pln": ["(: cnet_isa_d47ae0862f (IsA dinocera dinocerate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dinocerata is a kind of animal order", "pln": ["(: cnet_isa_acf419bef4 (IsA dinocerata animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dinocerate is a kind of ungulate", "pln": ["(: cnet_isa_ceeb2c41ba (IsA dinocerate ungulate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dinoflagellata is a kind of animal order", "pln": ["(: cnet_isa_c10e375245 (IsA dinoflagellata animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dinoflagellate is a kind of flagellate", "pln": ["(: cnet_isa_23cfb53238 (IsA dinoflagellate flagellate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dinornis is a kind of bird genus", "pln": ["(: cnet_isa_6ca0b77126 (IsA dinornis bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dinornithidae is a kind of bird family", "pln": ["(: cnet_isa_cca5e437c8 (IsA dinornithidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dinornithiforme is a kind of animal order", "pln": ["(: cnet_isa_e32e1f0089 (IsA dinornithiforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dinosaur is a kind of archosaur", "pln": ["(: cnet_isa_fd7510897f (IsA dinosaur archosaur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dint is a kind of mean", "pln": ["(: cnet_isa_93bf71d01c (IsA dint mean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diocesan is a kind of bishop", "pln": ["(: cnet_isa_883c72ebc1 (IsA diocesan bishop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diocese is a kind of jurisdiction", "pln": ["(: cnet_isa_33911e1c2e (IsA diocese jurisdiction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diode is a kind of semiconductor device", "pln": ["(: cnet_isa_596e0a2704 (IsA diode semiconductor_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diode is a kind of tube", "pln": ["(: cnet_isa_61a7780c5b (IsA diode tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diodon is a kind of fish genus", "pln": ["(: cnet_isa_530cab134c (IsA diodon fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diodontidae is a kind of fish family", "pln": ["(: cnet_isa_47122c46ce (IsA diodontidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "diol is a kind of alcohol", "pln": ["(: cnet_isa_97c6ad3de3 (IsA diol alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diomedeidae is a kind of bird family", "pln": ["(: cnet_isa_d12137368a (IsA diomedeidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dionaea is a kind of dicot genus", "pln": ["(: cnet_isa_2d50cde95a (IsA dionaea dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dionysia is a kind of festival", "pln": ["(: cnet_isa_dd01b0f041 (IsA dionysia festival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dioon is a kind of cycad", "pln": ["(: cnet_isa_d160806928 (IsA dioon cycad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diopter is a kind of unit of measurement", "pln": ["(: cnet_isa_27c9c4358f (IsA diopter unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diorite is a kind of igneous rock", "pln": ["(: cnet_isa_d4aabe6f8a (IsA diorite igneous_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dioscorea is a kind of plant genus", "pln": ["(: cnet_isa_48e0eb20d9 (IsA dioscorea plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dioscoreaceae is a kind of plant family", "pln": ["(: cnet_isa_011c08edb4 (IsA dioscoreaceae plant_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diospyro is a kind of dicot genus", "pln": ["(: cnet_isa_ffca352749 (IsA diospyro dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dioxide is a kind of oxide", "pln": ["(: cnet_isa_98466c8dee (IsA dioxide oxide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dioxin is a kind of hydrocarbon", "pln": ["(: cnet_isa_d648206ead (IsA dioxin hydrocarbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dip is a kind of gymnastic exercise", "pln": ["(: cnet_isa_c6a0ad14a4 (IsA dip gymnastic_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dip is a kind of swimming", "pln": ["(: cnet_isa_d32653ec1e (IsA dip swimming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dip is a kind of candle", "pln": ["(: cnet_isa_6cd09ee9f3 (IsA dip candle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dip is a kind of submergence", "pln": ["(: cnet_isa_8dce799dcd (IsA dip submergence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dip is a kind of condiment", "pln": ["(: cnet_isa_41348ebc80 (IsA dip condiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dip is a kind of angle", "pln": ["(: cnet_isa_ad01eabf42 (IsA dip angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dip is a kind of depression", "pln": ["(: cnet_isa_52115a475d (IsA dip depression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dip switch is a kind of toggle switch", "pln": ["(: cnet_isa_9f3d0a33b9 (IsA dip_switch toggle_switch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diphenylbutyl piperidine is a kind of major tranquilizer", "pln": ["(: cnet_isa_c227f41044 (IsA diphenylbutyl_piperidine major_tranquilizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diphtheria is a kind of contagious disease", "pln": ["(: cnet_isa_abe1bf3782 (IsA diphtheria contagious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diphthong is a kind of vowel", "pln": ["(: cnet_isa_79f3c589ab (IsA diphthong vowel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diphylla is a kind of mammal genus", "pln": ["(: cnet_isa_ea82f56014 (IsA diphylla mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diplegia is a kind of paralysis", "pln": ["(: cnet_isa_599a54ca83 (IsA diplegia paralysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diplococcus is a kind of bacteria", "pln": ["(: cnet_isa_f03008ff5f (IsA diplococcus bacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diplodocus is a kind of dinosaur", "pln": ["(: cnet_isa_432a7cf215 (IsA diplodocus dinosaur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diploic vein is a kind of vein", "pln": ["(: cnet_isa_f29ff9cc0f (IsA diploic_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diploid is a kind of organism", "pln": ["(: cnet_isa_a4a1184a9d (IsA diploid organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diploidy is a kind of condition", "pln": ["(: cnet_isa_df076270ed (IsA diploidy condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diploma is a kind of certificate", "pln": ["(: cnet_isa_9b75fcaf5a (IsA diploma certificate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diplomacy is a kind of negotiation", "pln": ["(: cnet_isa_00b8b4275e (IsA diplomacy negotiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diplomat is a kind of mediator", "pln": ["(: cnet_isa_f62847606e (IsA diplomat mediator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diplomat is a kind of official", "pln": ["(: cnet_isa_eeedb37b3b (IsA diplomat official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diplomate is a kind of specialist", "pln": ["(: cnet_isa_86b96acea9 (IsA diplomate specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diplomatic building is a kind of government building", "pln": ["(: cnet_isa_ea6cc3c7c7 (IsA diplomatic_building government_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diplomatic immunity is a kind of exemption", "pln": ["(: cnet_isa_bc4f2f5a78 (IsA diplomatic_immunity exemption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diplomatic mission is a kind of deputation", "pln": ["(: cnet_isa_281f35ab11 (IsA diplomatic_mission deputation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diplomatic pouch is a kind of mailbag", "pln": ["(: cnet_isa_331339ca30 (IsA diplomatic_pouch mailbag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diplomatic service is a kind of corp", "pln": ["(: cnet_isa_3614128b8a (IsA diplomatic_service corp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diplopia is a kind of visual impairment", "pln": ["(: cnet_isa_d8a13ed536 (IsA diplopia visual_impairment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diplopoda is a kind of class", "pln": ["(: cnet_isa_a43c4674dc (IsA diplopoda class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diplopterygium is a kind of fern genus", "pln": ["(: cnet_isa_803ac8e151 (IsA diplopterygium fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diplotaxis is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_1c2694556b (IsA diplotaxis dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diplotene is a kind of phase", "pln": ["(: cnet_isa_1fbe62abe4 (IsA diplotene phase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dipnoi is a kind of class", "pln": ["(: cnet_isa_3ad544497e (IsA dipnoi class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dipodidae is a kind of mammal family", "pln": ["(: cnet_isa_2aafb52981 (IsA dipodidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dipodomy is a kind of mammal genus", "pln": ["(: cnet_isa_d33f021f86 (IsA dipodomy mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dipogon is a kind of rosid dicot genus", "pln": ["(: cnet_isa_0b3130a59b (IsA dipogon rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dipole is a kind of antenna", "pln": ["(: cnet_isa_09c5bf62d0 (IsA dipole antenna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dipole is a kind of couple", "pln": ["(: cnet_isa_ee67dfb690 (IsA dipole couple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dipole molecule is a kind of molecule", "pln": ["(: cnet_isa_12baef9d14 (IsA dipole_molecule molecule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dipole moment is a kind of moment", "pln": ["(: cnet_isa_49c9599654 (IsA dipole_moment moment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dipper is a kind of ladle", "pln": ["(: cnet_isa_d6cccccf11 (IsA dipper ladle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dipsacaceae is a kind of asterid dicot family", "pln": ["(: cnet_isa_d3d42492b1 (IsA dipsacaceae asterid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dipsacus is a kind of asterid dicot genus", "pln": ["(: cnet_isa_537c080bc8 (IsA dipsacus asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dipsomania is a kind of mania", "pln": ["(: cnet_isa_0194572491 (IsA dipsomania mania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dipsosaurus is a kind of reptile genus", "pln": ["(: cnet_isa_002179cdc4 (IsA dipsosaurus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dipstick is a kind of gauge", "pln": ["(: cnet_isa_4286100520 (IsA dipstick gauge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diptera is a kind of animal order", "pln": ["(: cnet_isa_e748570d78 (IsA diptera animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dipterocarp is a kind of tree", "pln": ["(: cnet_isa_e171d69c4e (IsA dipterocarp tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dipterocarpaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_e4a7d198e1 (IsA dipterocarpaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dipteronia is a kind of dicot genus", "pln": ["(: cnet_isa_7859598fef (IsA dipteronia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dipterous insect is a kind of insect", "pln": ["(: cnet_isa_df331235b8 (IsA dipterous_insect insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diptych is a kind of art", "pln": ["(: cnet_isa_3705120c30 (IsA diptych art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dipus is a kind of mammal genus", "pln": ["(: cnet_isa_c7b0b751ab (IsA dipus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dirca is a kind of dicot genus", "pln": ["(: cnet_isa_a8dd45e8bd (IsA dirca dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "direct action is a kind of protest", "pln": ["(: cnet_isa_7368306c93 (IsA direct_action protest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "direct antonym is a kind of antonym", "pln": ["(: cnet_isa_590cb9ed39 (IsA direct_antonym antonym) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "direct current is a kind of electricity", "pln": ["(: cnet_isa_a3c1a9b424 (IsA direct_current electricity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "direct discourse is a kind of report", "pln": ["(: cnet_isa_2f4868bd17 (IsA direct_discourse report) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "direct dye is a kind of dye", "pln": ["(: cnet_isa_0dc4442af9 (IsA direct_dye dye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "direct evidence is a kind of evidence", "pln": ["(: cnet_isa_5b7fce9b5d (IsA direct_evidence evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "direct examination is a kind of interrogation", "pln": ["(: cnet_isa_494ee45e05 (IsA direct_examination interrogation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "direct fire is a kind of fire", "pln": ["(: cnet_isa_16bae3219a (IsA direct_fire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "direct flight is a kind of flight", "pln": ["(: cnet_isa_8eb5555d6f (IsA direct_flight flight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "direct grant school is a kind of school", "pln": ["(: cnet_isa_41bf259b10 (IsA direct_grant_school school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "direct loan is a kind of loan", "pln": ["(: cnet_isa_5a4ca4a93d (IsA direct_loan loan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "direct mail is a kind of ad", "pln": ["(: cnet_isa_045d01de6a (IsA direct_mail ad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "direct mailer is a kind of distributor", "pln": ["(: cnet_isa_3ca044fc5e (IsA direct_mailer distributor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "direct marketing is a kind of marketing", "pln": ["(: cnet_isa_6e8b099bec (IsA direct_marketing marketing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "direct object is a kind of object", "pln": ["(: cnet_isa_648b93383a (IsA direct_object object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "direct primary is a kind of primary", "pln": ["(: cnet_isa_596998416f (IsA direct_primary primary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "direct sum is a kind of union", "pln": ["(: cnet_isa_6c63512b5d (IsA direct_sum union) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "direct support is a kind of mission", "pln": ["(: cnet_isa_3205e418ff (IsA direct_support mission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "direct supporting fire is a kind of supporting fire", "pln": ["(: cnet_isa_df34a341f0 (IsA direct_supporting_fire supporting_fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "direct tax is a kind of tax", "pln": ["(: cnet_isa_0bbd76e58d (IsA direct_tax tax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "direct tide is a kind of high tide", "pln": ["(: cnet_isa_bdf60ece03 (IsA direct_tide high_tide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "direct transmission is a kind of transmission mechanism", "pln": ["(: cnet_isa_3319ca6db1 (IsA direct_transmission transmission_mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "direct trust is a kind of trust", "pln": ["(: cnet_isa_e9e4dffb41 (IsA direct_trust trust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "directed study is a kind of course", "pln": ["(: cnet_isa_f6242f69f8 (IsA directed_study course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "directed verdict is a kind of verdict", "pln": ["(: cnet_isa_5c2b3b07a0 (IsA directed_verdict verdict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "direction is a kind of inclination", "pln": ["(: cnet_isa_8cc82bf3cc (IsA direction inclination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "direction is a kind of message", "pln": ["(: cnet_isa_f1c377bd44 (IsA direction message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "direction is a kind of position", "pln": ["(: cnet_isa_16ee50b46c (IsA direction position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "direction is a kind of path", "pln": ["(: cnet_isa_7d2f0847e7 (IsA direction path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "direction finder is a kind of receiver", "pln": ["(: cnet_isa_1694926b56 (IsA direction_finder receiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "directional antenna is a kind of antenna", "pln": ["(: cnet_isa_65de1e91af (IsA directional_antenna antenna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "directional microphone is a kind of microphone", "pln": ["(: cnet_isa_f3141bc5b6 (IsA directional_microphone microphone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "directionality is a kind of spatial property", "pln": ["(: cnet_isa_238c6eb71c (IsA directionality spatial_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "directive is a kind of pronouncement", "pln": ["(: cnet_isa_686ac6d976 (IsA directive pronouncement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "directiveness is a kind of quality", "pln": ["(: cnet_isa_2da02f8344 (IsA directiveness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "directivity is a kind of radial asymmetry", "pln": ["(: cnet_isa_4598e725a1 (IsA directivity radial_asymmetry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "directness is a kind of characteristic", "pln": ["(: cnet_isa_130a964613 (IsA directness characteristic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "director is a kind of person who direct movie", "pln": ["(: cnet_isa_4184590ed6 (IsA director person_who_direct_movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "director is a kind of administrator", "pln": ["(: cnet_isa_083dfeb624 (IsA director administrator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "director is a kind of committee member", "pln": ["(: cnet_isa_5ab2eb0d9c (IsA director committee_member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "director is a kind of supervisor", "pln": ["(: cnet_isa_a49eb6b68a (IsA director supervisor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "director stockholder relation is a kind of fiduciary relation", "pln": ["(: cnet_isa_f9e34d5e45 (IsA director_stockholder_relation fiduciary_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "directorate is a kind of board", "pln": ["(: cnet_isa_0945804c97 (IsA directorate board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "directorate for inter service intelligence is a kind of international intelligence agency", "pln": ["(: cnet_isa_c54488c5cd (IsA directorate_for_inter_service_intelligence international_intelligence_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "directorship is a kind of position", "pln": ["(: cnet_isa_6cacdf90ac (IsA directorship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "directory is a kind of reference book", "pln": ["(: cnet_isa_a3c9056994 (IsA directory reference_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "directory is a kind of list", "pln": ["(: cnet_isa_8b058544ce (IsA directory list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dirge is a kind of song", "pln": ["(: cnet_isa_875031081c (IsA dirge song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diriment impediment is a kind of hindrance", "pln": ["(: cnet_isa_dd49d01d61 (IsA diriment_impediment hindrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dirk is a kind of dagger", "pln": ["(: cnet_isa_dac8f08804 (IsA dirk dagger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dirndl is a kind of dress", "pln": ["(: cnet_isa_003856c8b9 (IsA dirndl dress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dirndl is a kind of gathered skirt", "pln": ["(: cnet_isa_71e633c84c (IsA dirndl gathered_skirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dirt is a kind of dirtiness", "pln": ["(: cnet_isa_9510d9f234 (IsA dirt dirtiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dirt track is a kind of racetrack", "pln": ["(: cnet_isa_84e21e230d (IsA dirt_track racetrack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dirtiness is a kind of impurity", "pln": ["(: cnet_isa_8411f05060 (IsA dirtiness impurity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dirtiness is a kind of sanitary condition", "pln": ["(: cnet_isa_e4b1f7c61b (IsA dirtiness sanitary_condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dirty bomb is a kind of atom bomb", "pln": ["(: cnet_isa_3bcb383830 (IsA dirty_bomb atom_bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dirty joke is a kind of joke", "pln": ["(: cnet_isa_c815613b24 (IsA dirty_joke joke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dirty linen is a kind of personal business", "pln": ["(: cnet_isa_88e0396f3e (IsA dirty_linen personal_business) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dirty old man is a kind of middle aged man", "pln": ["(: cnet_isa_31c243a75d (IsA dirty_old_man middle_aged_man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dirty pool is a kind of behavior", "pln": ["(: cnet_isa_3893d59154 (IsA dirty_pool behavior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dirty trick is a kind of antic", "pln": ["(: cnet_isa_a37eede0f4 (IsA dirty_trick antic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dirty trick is a kind of behavior", "pln": ["(: cnet_isa_6a2e3d38f6 (IsA dirty_trick behavior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dirty war is a kind of offense", "pln": ["(: cnet_isa_c82d3d50c1 (IsA dirty_war offense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dirty word is a kind of word", "pln": ["(: cnet_isa_0585183664 (IsA dirty_word word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disa is a kind of orchid", "pln": ["(: cnet_isa_ca0f83ae9c (IsA disa orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disability is a kind of unfitness", "pln": ["(: cnet_isa_9c937557b8 (IsA disability unfitness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disability benefit is a kind of benefit", "pln": ["(: cnet_isa_c29d53fe89 (IsA disability_benefit benefit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disability check is a kind of regular payment", "pln": ["(: cnet_isa_73b86250e7 (IsA disability_check regular_payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "disability insurance is a kind of social insurance", "pln": ["(: cnet_isa_73d1353d7d (IsA disability_insurance social_insurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disability of walking is a kind of disability", "pln": ["(: cnet_isa_afbfcb6ea9 (IsA disability_of_walking disability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disabled is a kind of people", "pln": ["(: cnet_isa_67175fdd97 (IsA disabled people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "disaccharidase is a kind of enzyme", "pln": ["(: cnet_isa_c30f5130a0 (IsA disaccharidase enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disaccharide is a kind of oligosaccharide", "pln": ["(: cnet_isa_3ad9538e53 (IsA disaccharide oligosaccharide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disadvantage is a kind of liability", "pln": ["(: cnet_isa_41dafcef39 (IsA disadvantage liability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disaffection is a kind of disloyalty", "pln": ["(: cnet_isa_ae2d87c8ba (IsA disaffection disloyalty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disagreeableness is a kind of disposition", "pln": ["(: cnet_isa_722cdd4787 (IsA disagreeableness disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disagreeableness is a kind of unpleasantness", "pln": ["(: cnet_isa_9c4b5c89e9 (IsA disagreeableness unpleasantness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disagreement is a kind of speech act", "pln": ["(: cnet_isa_aa8b2892a5 (IsA disagreement speech_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disagreement is a kind of conflict", "pln": ["(: cnet_isa_f7e4ebb392 (IsA disagreement conflict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disambiguation is a kind of clarification", "pln": ["(: cnet_isa_1ab6a44b6f (IsA disambiguation clarification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disambiguator is a kind of natural language processor", "pln": ["(: cnet_isa_73f66b273d (IsA disambiguator natural_language_processor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disappearance is a kind of departure", "pln": ["(: cnet_isa_e2d88003b5 (IsA disappearance departure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disappearance is a kind of happening", "pln": ["(: cnet_isa_6038851dde (IsA disappearance happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disappointment is a kind of failure", "pln": ["(: cnet_isa_c90eb7893d (IsA disappointment failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disappointment is a kind of dissatisfaction", "pln": ["(: cnet_isa_0ceda81e18 (IsA disappointment dissatisfaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disapprobation is a kind of disapproval", "pln": ["(: cnet_isa_a38b48725d (IsA disapprobation disapproval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disapproval is a kind of judgment", "pln": ["(: cnet_isa_31d3227b40 (IsA disapproval judgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disapproval is a kind of message", "pln": ["(: cnet_isa_52f7d187d7 (IsA disapproval message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disapproval is a kind of dislike", "pln": ["(: cnet_isa_8302686167 (IsA disapproval dislike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "disarming is a kind of demobilization", "pln": ["(: cnet_isa_7c1ad6a022 (IsA disarming demobilization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disarray is a kind of untidiness", "pln": ["(: cnet_isa_35a8aeb6ab (IsA disarray untidiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disassociation is a kind of separation", "pln": ["(: cnet_isa_dbe306db6b (IsA disassociation separation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disassortative mating is a kind of coupling", "pln": ["(: cnet_isa_8451e2e79a (IsA disassortative_mating coupling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disaster is a kind of destruction", "pln": ["(: cnet_isa_ca02681093 (IsA disaster destruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disaster area is a kind of area", "pln": ["(: cnet_isa_d400037d38 (IsA disaster_area area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "disavowal is a kind of denial", "pln": ["(: cnet_isa_6583c45ab2 (IsA disavowal denial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disbandment is a kind of group action", "pln": ["(: cnet_isa_f9b5e3be51 (IsA disbandment group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "disbarment is a kind of banishment", "pln": ["(: cnet_isa_ee30ea1dcb (IsA disbarment banishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disbeliever is a kind of nonreligious person", "pln": ["(: cnet_isa_0453b9649e (IsA disbeliever nonreligious_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discard is a kind of abandonment", "pln": ["(: cnet_isa_b93c8d9022 (IsA discard abandonment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discard is a kind of object", "pln": ["(: cnet_isa_6fe57e4e1a (IsA discard object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discernability is a kind of distinctness", "pln": ["(: cnet_isa_d99bdd1bd0 (IsA discernability distinctness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discernment is a kind of perception", "pln": ["(: cnet_isa_178b85efb0 (IsA discernment perception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "discharge is a kind of emission", "pln": ["(: cnet_isa_29e993ece0 (IsA discharge emission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discharge is a kind of shooting", "pln": ["(: cnet_isa_84eb75cd93 (IsA discharge shooting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discharge is a kind of flow", "pln": ["(: cnet_isa_a42493c30c (IsA discharge flow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discharge is a kind of happening", "pln": ["(: cnet_isa_f5471563e2 (IsA discharge happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discharge is a kind of electrical conduction", "pln": ["(: cnet_isa_2fe157f51a (IsA discharge electrical_conduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discharge is a kind of bodily process", "pln": ["(: cnet_isa_9830af43a0 (IsA discharge bodily_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discharge is a kind of material", "pln": ["(: cnet_isa_2f36372ed5 (IsA discharge material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discharge lamp is a kind of lamp", "pln": ["(: cnet_isa_9bbf17e424 (IsA discharge_lamp lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discharge pipe is a kind of pipe", "pln": ["(: cnet_isa_06147415e7 (IsA discharge_pipe pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discina is a kind of false morel", "pln": ["(: cnet_isa_5190650e60 (IsA discina false_morel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discina macrospora is a kind of discina", "pln": ["(: cnet_isa_2b73bd5047 (IsA discina_macrospora discina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disciotis venosa is a kind of morel", "pln": ["(: cnet_isa_d80f151683 (IsA disciotis_venosa morel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "disciple is a kind of follower", "pln": ["(: cnet_isa_87abd17088 (IsA disciple follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discipleship is a kind of position", "pln": ["(: cnet_isa_e19bd0e460 (IsA discipleship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discipline is a kind of punishment", "pln": ["(: cnet_isa_ae633a57a8 (IsA discipline punishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discipline is a kind of training", "pln": ["(: cnet_isa_c344bb1f6f (IsA discipline training) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discipline is a kind of trait", "pln": ["(: cnet_isa_8539a1e8e8 (IsA discipline trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discipline is a kind of knowledge domain", "pln": ["(: cnet_isa_33579e55e4 (IsA discipline knowledge_domain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discipline is a kind of system", "pln": ["(: cnet_isa_277e113dd2 (IsA discipline system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disclaimer is a kind of repudiation", "pln": ["(: cnet_isa_32687516e2 (IsA disclaimer repudiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disclosure is a kind of speech act", "pln": ["(: cnet_isa_7920e4c9df (IsA disclosure speech_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disco is a kind of ballroom", "pln": ["(: cnet_isa_7ad9c000c4 (IsA disco ballroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disco music is a kind of popular music", "pln": ["(: cnet_isa_a76f66987d (IsA disco_music popular_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "discocephali is a kind of animal order", "pln": ["(: cnet_isa_ee125ceb9f (IsA discocephali animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discoglossidae is a kind of amphibian family", "pln": ["(: cnet_isa_cc4b39d49c (IsA discoglossidae amphibian_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discography is a kind of catalog", "pln": ["(: cnet_isa_67137db39b (IsA discography catalog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discoid lupus erythematosus is a kind of autoimmune disease", "pln": ["(: cnet_isa_465b8a7074 (IsA discoid_lupus_erythematosus autoimmune_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discoid lupus erythematosus is a kind of lupus", "pln": ["(: cnet_isa_6055f263ec (IsA discoid_lupus_erythematosus lupus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discoloration is a kind of change of color", "pln": ["(: cnet_isa_66463bdfdc (IsA discoloration change_of_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discomfiture is a kind of anxiety", "pln": ["(: cnet_isa_be93f66adc (IsA discomfiture anxiety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discomfiture is a kind of embarrassment", "pln": ["(: cnet_isa_cb600252b7 (IsA discomfiture embarrassment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discomfort is a kind of suffering", "pln": ["(: cnet_isa_114d3e3316 (IsA discomfort suffering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discomfort is a kind of condition", "pln": ["(: cnet_isa_9d9e02f1b0 (IsA discomfort condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discomposure is a kind of disposition", "pln": ["(: cnet_isa_5e9fdb121f (IsA discomposure disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discomycete is a kind of ascomycete", "pln": ["(: cnet_isa_c29acdaba5 (IsA discomycete ascomycete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discomycete is a kind of class", "pln": ["(: cnet_isa_110b914bfa (IsA discomycete class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disconnection is a kind of separation", "pln": ["(: cnet_isa_c175f56080 (IsA disconnection separation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discontentment is a kind of longing", "pln": ["(: cnet_isa_2169b362a9 (IsA discontentment longing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discontinuance is a kind of termination", "pln": ["(: cnet_isa_736aee37fd (IsA discontinuance termination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discontinuity is a kind of separation", "pln": ["(: cnet_isa_a6b42b7e58 (IsA discontinuity separation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discord is a kind of strife", "pln": ["(: cnet_isa_7a7cc00d9d (IsA discord strife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "discord is a kind of disagreement", "pln": ["(: cnet_isa_295bbc61f4 (IsA discord disagreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "discord is a kind of disorder", "pln": ["(: cnet_isa_2c3ed9228a (IsA discord disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "discordance is a kind of dissonance", "pln": ["(: cnet_isa_e621b1cc97 (IsA discordance dissonance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discount is a kind of decrease", "pln": ["(: cnet_isa_1c974fc8e4 (IsA discount decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discount business is a kind of commercial enterprise", "pln": ["(: cnet_isa_7540eb791f (IsA discount_business commercial_enterprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "discount chain is a kind of chain", "pln": ["(: cnet_isa_b6adcdeb7a (IsA discount_chain chain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discount house is a kind of mercantile establishment", "pln": ["(: cnet_isa_b9353a7486 (IsA discount_house mercantile_establishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discount rate is a kind of interest rate", "pln": ["(: cnet_isa_54899044cc (IsA discount_rate interest_rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "discouragement is a kind of deterrence", "pln": ["(: cnet_isa_18988c0c7d (IsA discouragement deterrence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discouragement is a kind of disapproval", "pln": ["(: cnet_isa_8b4fc7e5ed (IsA discouragement disapproval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discouragement is a kind of despair", "pln": ["(: cnet_isa_40b6a5a8d7 (IsA discouragement despair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discourse is a kind of language unit", "pln": ["(: cnet_isa_8e6d8cb086 (IsA discourse language_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discourtesy is a kind of behavior", "pln": ["(: cnet_isa_d21073c047 (IsA discourtesy behavior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discourtesy is a kind of manner", "pln": ["(: cnet_isa_86903aabfe (IsA discourtesy manner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discovered check is a kind of check", "pln": ["(: cnet_isa_8fbdbb1b1f (IsA discovered_check check) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discovery is a kind of act", "pln": ["(: cnet_isa_be5243188d (IsA discovery act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discovery is a kind of insight", "pln": ["(: cnet_isa_13d4eaa771 (IsA discovery insight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discovery is a kind of disclosure", "pln": ["(: cnet_isa_03e52c7edd (IsA discovery disclosure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discrepancy is a kind of difference", "pln": ["(: cnet_isa_c69c551746 (IsA discrepancy difference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discrepancy is a kind of deviation", "pln": ["(: cnet_isa_2f117669a1 (IsA discrepancy deviation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discreteness is a kind of separation", "pln": ["(: cnet_isa_3ff5bc6cf5 (IsA discreteness separation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discretion is a kind of wisdom", "pln": ["(: cnet_isa_ef89a87533 (IsA discretion wisdom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discretion is a kind of sagacity", "pln": ["(: cnet_isa_0ab9f87b8a (IsA discretion sagacity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discretion is a kind of liberty", "pln": ["(: cnet_isa_7ce9bf488f (IsA discretion liberty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discretionary trust is a kind of trust", "pln": ["(: cnet_isa_0c02e187e7 (IsA discretionary_trust trust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discrimination is a kind of social control", "pln": ["(: cnet_isa_3066e6d1ed (IsA discrimination social_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discrimination is a kind of basic cognitive process", "pln": ["(: cnet_isa_a89851d509 (IsA discrimination basic_cognitive_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discriminative stimulus is a kind of stimulation", "pln": ["(: cnet_isa_0afde07fd5 (IsA discriminative_stimulus stimulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discursiveness is a kind of indirectness", "pln": ["(: cnet_isa_033809e1e5 (IsA discursiveness indirectness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discus is a kind of disk", "pln": ["(: cnet_isa_ad7978ba26 (IsA discus disk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discus is a kind of sport equipment", "pln": ["(: cnet_isa_fc362fc34c (IsA discus sport_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discus is a kind of field event", "pln": ["(: cnet_isa_9a7aa6837c (IsA discus field_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discussant is a kind of participant", "pln": ["(: cnet_isa_9da3ce8786 (IsA discussant participant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discussion is a kind of communication", "pln": ["(: cnet_isa_431a6fab68 (IsA discussion communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discussion is a kind of speech", "pln": ["(: cnet_isa_847ffa137b (IsA discussion speech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "discussion section is a kind of class", "pln": ["(: cnet_isa_559cfadf41 (IsA discussion_section class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disease is a kind of illness", "pln": ["(: cnet_isa_34e79f9a06 (IsA disease illness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disease of neuromuscular junction is a kind of disease", "pln": ["(: cnet_isa_bd2343438b (IsA disease_of_neuromuscular_junction disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disembarrassment is a kind of easing", "pln": ["(: cnet_isa_075b51a96d (IsA disembarrassment easing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disembowelment is a kind of removal", "pln": ["(: cnet_isa_6ea81fd671 (IsA disembowelment removal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "disenchantment is a kind of edification", "pln": ["(: cnet_isa_cb45e09cf0 (IsA disenchantment edification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disenfranchisement is a kind of management", "pln": ["(: cnet_isa_119b28ecf2 (IsA disenfranchisement management) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disengagement is a kind of retreat", "pln": ["(: cnet_isa_72b22b880c (IsA disengagement retreat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disentangler is a kind of person", "pln": ["(: cnet_isa_73953a1cf1 (IsA disentangler person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disequilibrium is a kind of situation", "pln": ["(: cnet_isa_82bdefa290 (IsA disequilibrium situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "disestablishment is a kind of group action", "pln": ["(: cnet_isa_fd745edaa3 (IsA disestablishment group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disesteem is a kind of dishonor", "pln": ["(: cnet_isa_3b01eba177 (IsA disesteem dishonor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disfavor is a kind of inclination", "pln": ["(: cnet_isa_8e3b909e3e (IsA disfavor inclination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disfavor is a kind of rejection", "pln": ["(: cnet_isa_65e5bfe110 (IsA disfavor rejection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disfigurement is a kind of appearance", "pln": ["(: cnet_isa_6d387b78cf (IsA disfigurement appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disfluency is a kind of unskillfulness", "pln": ["(: cnet_isa_57a1140588 (IsA disfluency unskillfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disfranchisement is a kind of discontinuance", "pln": ["(: cnet_isa_b4bf479ca9 (IsA disfranchisement discontinuance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disgruntlement is a kind of discontentment", "pln": ["(: cnet_isa_d9a39bf9f8 (IsA disgruntlement discontentment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disguise is a kind of concealment", "pln": ["(: cnet_isa_934fc526c7 (IsA disguise concealment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disguise is a kind of attire", "pln": ["(: cnet_isa_1a1868e2f0 (IsA disguise attire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disguise is a kind of semblance", "pln": ["(: cnet_isa_4be168930c (IsA disguise semblance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disgust is a kind of emotion", "pln": ["(: cnet_isa_cc2216247e (IsA disgust emotion) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disgust is a kind of dislike", "pln": ["(: cnet_isa_43e801f2c9 (IsA disgust dislike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "disgustingness is a kind of unpalatability", "pln": ["(: cnet_isa_657700b989 (IsA disgustingness unpalatability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dish is a kind of plate", "pln": ["(: cnet_isa_68b0e9b678 (IsA dish plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dish is a kind of container", "pln": ["(: cnet_isa_85fea0fdc9 (IsA dish container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dish is a kind of crockery", "pln": ["(: cnet_isa_f1677bc1a4 (IsA dish crockery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dish is a kind of directional antenna", "pln": ["(: cnet_isa_df1fad2eb8 (IsA dish directional_antenna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dish is a kind of nutriment", "pln": ["(: cnet_isa_2e916d3521 (IsA dish nutriment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dish is a kind of containerful", "pln": ["(: cnet_isa_790e6cbbd3 (IsA dish containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dish rack is a kind of rack", "pln": ["(: cnet_isa_003da5947e (IsA dish_rack rack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dish towel is a kind of towel", "pln": ["(: cnet_isa_4e8989da5b (IsA dish_towel towel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dishabille is a kind of condition", "pln": ["(: cnet_isa_da3589a713 (IsA dishabille condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disharmony is a kind of dissonance", "pln": ["(: cnet_isa_181576023a (IsA disharmony dissonance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disheartenment is a kind of discouragement", "pln": ["(: cnet_isa_786ca2958a (IsA disheartenment discouragement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dishonesty is a kind of wrongdoing", "pln": ["(: cnet_isa_99e12c7d7d (IsA dishonesty wrongdoing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dishonesty is a kind of unrighteousness", "pln": ["(: cnet_isa_c5edb6f6b1 (IsA dishonesty unrighteousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dishonor is a kind of unrighteousness", "pln": ["(: cnet_isa_e6ee16ba3a (IsA dishonor unrighteousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dishonor is a kind of standing", "pln": ["(: cnet_isa_584ce1ee88 (IsA dishonor standing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dishonorable discharge is a kind of dismissal", "pln": ["(: cnet_isa_49259e34fc (IsA dishonorable_discharge dismissal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "dishwasher is a kind of white goods", "pln": ["(: cnet_isa_42040e468d (IsA dishwasher white_goods) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dishonorableness is a kind of unrighteousness", "pln": ["(: cnet_isa_7fe4b556e8 (IsA dishonorableness unrighteousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dishpan is a kind of pan", "pln": ["(: cnet_isa_046c843b70 (IsA dishpan pan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dishrag is a kind of piece of cloth", "pln": ["(: cnet_isa_d6b5de46f5 (IsA dishrag piece_of_cloth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dishwasher is a kind of white good", "pln": ["(: cnet_isa_ed2384ecd5 (IsA dishwasher white_good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dishwasher is a kind of laborer", "pln": ["(: cnet_isa_1c496b102b (IsA dishwasher laborer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dishwasher detergent is a kind of detergent", "pln": ["(: cnet_isa_0c0db67d80 (IsA dishwasher_detergent detergent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dishwasher safe is a kind of safe", "pln": ["(: cnet_isa_a27ce5cf1d (IsA dishwasher_safe safe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dishwashing is a kind of wash", "pln": ["(: cnet_isa_f9e5f3a868 (IsA dishwashing wash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dishwater is a kind of water", "pln": ["(: cnet_isa_a16923d847 (IsA dishwater water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disincentive is a kind of rational motive", "pln": ["(: cnet_isa_faa447185d (IsA disincentive rational_motive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disinclination is a kind of dislike", "pln": ["(: cnet_isa_91c8c2db20 (IsA disinclination dislike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disinfectant is a kind of agent", "pln": ["(: cnet_isa_e3038c3a06 (IsA disinfectant agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disinfection is a kind of medical care", "pln": ["(: cnet_isa_221b4ab39e (IsA disinfection medical_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disinfestation is a kind of cleaning", "pln": ["(: cnet_isa_8eb17aa4a9 (IsA disinfestation cleaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disinflation is a kind of economic process", "pln": ["(: cnet_isa_ae77e6af00 (IsA disinflation economic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disinformation is a kind of misinformation", "pln": ["(: cnet_isa_d50b877c85 (IsA disinformation misinformation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disingenuousness is a kind of dishonesty", "pln": ["(: cnet_isa_91749692a5 (IsA disingenuousness dishonesty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disinheritance is a kind of discontinuance", "pln": ["(: cnet_isa_b02e468eba (IsA disinheritance discontinuance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disintegration is a kind of disability", "pln": ["(: cnet_isa_f4cf345340 (IsA disintegration disability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disinterest is a kind of tolerance", "pln": ["(: cnet_isa_67beae80b0 (IsA disinterest tolerance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disinterestedness is a kind of impartiality", "pln": ["(: cnet_isa_2ee7980567 (IsA disinterestedness impartiality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disinvestment is a kind of withdrawal", "pln": ["(: cnet_isa_31bdcf76a9 (IsA disinvestment withdrawal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disjointedness is a kind of incoherence", "pln": ["(: cnet_isa_514c254697 (IsA disjointedness incoherence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disjunction is a kind of separation", "pln": ["(: cnet_isa_42b927d431 (IsA disjunction separation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disjunctive conjunction is a kind of conjunction", "pln": ["(: cnet_isa_6bab9329ed (IsA disjunctive_conjunction conjunction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disk is a kind of circle", "pln": ["(: cnet_isa_e8d9dd5089 (IsA disk circle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disk is a kind of plate", "pln": ["(: cnet_isa_0a43d6a050 (IsA disk plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disk is a kind of round shape", "pln": ["(: cnet_isa_9baec08685 (IsA disk round_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disk access is a kind of access", "pln": ["(: cnet_isa_8744fcb887 (IsA disk_access access) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disk brake is a kind of hydraulic brake", "pln": ["(: cnet_isa_0b3a989e17 (IsA disk_brake hydraulic_brake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disk cache is a kind of cache", "pln": ["(: cnet_isa_ccaba04b8d (IsA disk_cache cache) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disk clutch is a kind of friction clutch", "pln": ["(: cnet_isa_93d3f49a85 (IsA disk_clutch friction_clutch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disk controller is a kind of control", "pln": ["(: cnet_isa_201e2c5d51 (IsA disk_controller control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disk drive is a kind of drive", "pln": ["(: cnet_isa_b0e6fc2755 (IsA disk_drive drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disk error is a kind of hardware error", "pln": ["(: cnet_isa_99ce57880b (IsA disk_error hardware_error) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disk file is a kind of computer file", "pln": ["(: cnet_isa_7a494777fd (IsA disk_file computer_file) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "disk harrow is a kind of harrow", "pln": ["(: cnet_isa_786f2bb2a2 (IsA disk_harrow harrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "disk jockey is a kind of broadcaster", "pln": ["(: cnet_isa_c437b8b336 (IsA disk_jockey broadcaster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disk overhead is a kind of disk space", "pln": ["(: cnet_isa_acb5dd1bb9 (IsA disk_overhead disk_space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "disk pack is a kind of pack", "pln": ["(: cnet_isa_323dfaecd8 (IsA disk_pack pack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disk space is a kind of space", "pln": ["(: cnet_isa_09c9597dc2 (IsA disk_space space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "diskette is a kind of magnetic disk", "pln": ["(: cnet_isa_f339d56105 (IsA diskette magnetic_disk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dislike is a kind of feeling", "pln": ["(: cnet_isa_b4ca3c5525 (IsA dislike feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dislocation is a kind of disruption", "pln": ["(: cnet_isa_80e7ef35fc (IsA dislocation disruption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dislocation is a kind of interruption", "pln": ["(: cnet_isa_0ddf955947 (IsA dislocation interruption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dislocation is a kind of injury", "pln": ["(: cnet_isa_90704c061c (IsA dislocation injury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dislodgment is a kind of removal", "pln": ["(: cnet_isa_9899a34c17 (IsA dislodgment removal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disloyalty is a kind of infidelity", "pln": ["(: cnet_isa_9397cdf695 (IsA disloyalty infidelity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dismantling is a kind of activity", "pln": ["(: cnet_isa_299cb0e762 (IsA dismantling activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dismemberment is a kind of mutilation", "pln": ["(: cnet_isa_5c5cb0c38e (IsA dismemberment mutilation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dismemberment is a kind of torture", "pln": ["(: cnet_isa_18631c602d (IsA dismemberment torture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dismissal is a kind of termination", "pln": ["(: cnet_isa_bdfaef4d2f (IsA dismissal termination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dismissal is a kind of notice", "pln": ["(: cnet_isa_cd5b342649 (IsA dismissal notice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dismissal is a kind of permission", "pln": ["(: cnet_isa_8ec37b6b48 (IsA dismissal permission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dismount is a kind of discontinuance", "pln": ["(: cnet_isa_76259e5e02 (IsA dismount discontinuance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "disobedience is a kind of insubordination", "pln": ["(: cnet_isa_73d9829f48 (IsA disobedience insubordination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disobedience is a kind of intractability", "pln": ["(: cnet_isa_2d1001525a (IsA disobedience intractability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disorder is a kind of physiological state", "pln": ["(: cnet_isa_3db3f43938 (IsA disorder physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disorder is a kind of state", "pln": ["(: cnet_isa_1334096845 (IsA disorder state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disorderliness is a kind of condition", "pln": ["(: cnet_isa_4f92a4c4c7 (IsA disorderliness condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disorderly conduct is a kind of misdemeanor", "pln": ["(: cnet_isa_be16f5af8d (IsA disorderly_conduct misdemeanor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disorganization is a kind of disturbance", "pln": ["(: cnet_isa_431744b329 (IsA disorganization disturbance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disorganization is a kind of disorderliness", "pln": ["(: cnet_isa_eca81bb2b7 (IsA disorganization disorderliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disorientation is a kind of confusion", "pln": ["(: cnet_isa_939c9e5a89 (IsA disorientation confusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disorientation is a kind of delusion", "pln": ["(: cnet_isa_8de3492df0 (IsA disorientation delusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disownment is a kind of repudiation", "pln": ["(: cnet_isa_ee10b6320b (IsA disownment repudiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disparagement is a kind of disapproval", "pln": ["(: cnet_isa_ce253fca10 (IsA disparagement disapproval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "disparagement is a kind of disrespect", "pln": ["(: cnet_isa_e1b214aace (IsA disparagement disrespect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disparateness is a kind of dissimilarity", "pln": ["(: cnet_isa_63ae7e97fe (IsA disparateness dissimilarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disparity is a kind of inequality", "pln": ["(: cnet_isa_59456baf1b (IsA disparity inequality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dispassion is a kind of unemotionality", "pln": ["(: cnet_isa_e0aa1bf4a7 (IsA dispassion unemotionality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dispatch is a kind of departure", "pln": ["(: cnet_isa_9554548cdc (IsA dispatch departure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dispatch is a kind of killing", "pln": ["(: cnet_isa_8fe591afcd (IsA dispatch killing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dispatch is a kind of celerity", "pln": ["(: cnet_isa_c4bcc4ea33 (IsA dispatch celerity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dispatch is a kind of report", "pln": ["(: cnet_isa_499e7f8c5c (IsA dispatch report) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dispatch case is a kind of case", "pln": ["(: cnet_isa_21251e9861 (IsA dispatch_case case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dispatch rider is a kind of messenger", "pln": ["(: cnet_isa_3f8d20ec5d (IsA dispatch_rider messenger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dispatcher is a kind of employee", "pln": ["(: cnet_isa_1a3351ac8c (IsA dispatcher employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dispensability is a kind of inessentiality", "pln": ["(: cnet_isa_de84963dfc (IsA dispensability inessentiality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dispensary is a kind of clinic", "pln": ["(: cnet_isa_2a0d15ece9 (IsA dispensary clinic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dispensation is a kind of distribution", "pln": ["(: cnet_isa_a2bb54753a (IsA dispensation distribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dispensation is a kind of license", "pln": ["(: cnet_isa_0f1ba09964 (IsA dispensation license) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dispensation is a kind of share", "pln": ["(: cnet_isa_6c23f7a78b (IsA dispensation share) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dispenser is a kind of container", "pln": ["(: cnet_isa_406473be6c (IsA dispenser container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dispenser is a kind of supplier", "pln": ["(: cnet_isa_86cf4a3a6a (IsA dispenser supplier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dispersed phase is a kind of phase", "pln": ["(: cnet_isa_37081a8603 (IsA dispersed_phase phase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dispersing phase is a kind of phase", "pln": ["(: cnet_isa_534be0d893 (IsA dispersing_phase phase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dispersion is a kind of spread", "pln": ["(: cnet_isa_79d9aacdd3 (IsA dispersion spread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "displaced fracture is a kind of fracture", "pln": ["(: cnet_isa_e430f57083 (IsA displaced_fracture fracture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "displaced person is a kind of refugee", "pln": ["(: cnet_isa_b30c83f193 (IsA displaced_person refugee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "displacement is a kind of movement", "pln": ["(: cnet_isa_19f2d4c4d1 (IsA displacement movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "displacement is a kind of rejection", "pln": ["(: cnet_isa_bb57d09679 (IsA displacement rejection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "displacement is a kind of chemical reaction", "pln": ["(: cnet_isa_bb853970ed (IsA displacement chemical_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "displacement is a kind of defense mechanism", "pln": ["(: cnet_isa_222dec0f24 (IsA displacement defense_mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "displacement vector is a kind of vector", "pln": ["(: cnet_isa_09717fee80 (IsA displacement_vector vector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "display is a kind of show", "pln": ["(: cnet_isa_3a8bc14196 (IsA display show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "display is a kind of electronic device", "pln": ["(: cnet_isa_dbd5e1925f (IsA display electronic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "display is a kind of representation", "pln": ["(: cnet_isa_77a33e3f6f (IsA display representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "display is a kind of communication", "pln": ["(: cnet_isa_36f8316289 (IsA display communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "display is a kind of demonstration", "pln": ["(: cnet_isa_49bd0bc381 (IsA display demonstration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "display is a kind of disclosure", "pln": ["(: cnet_isa_06c62fd045 (IsA display disclosure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "display adapter is a kind of electronic device", "pln": ["(: cnet_isa_32782f0d01 (IsA display_adapter electronic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "display panel is a kind of display", "pln": ["(: cnet_isa_2d5a151b6f (IsA display_panel display) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "display window is a kind of window", "pln": ["(: cnet_isa_74272fa83c (IsA display_window window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "displeasure is a kind of annoyance", "pln": ["(: cnet_isa_5fdf79708e (IsA displeasure annoyance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "displeasure is a kind of dissatisfaction", "pln": ["(: cnet_isa_110116b7af (IsA displeasure dissatisfaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disposable is a kind of item", "pln": ["(: cnet_isa_afaf9e66c8 (IsA disposable item) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disposable income is a kind of income", "pln": ["(: cnet_isa_889b97640d (IsA disposable_income income) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disposal is a kind of act", "pln": ["(: cnet_isa_c7ee64c7e9 (IsA disposal act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disposal is a kind of kitchen appliance", "pln": ["(: cnet_isa_e5fa72dd61 (IsA disposal kitchen_appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disposal is a kind of power", "pln": ["(: cnet_isa_0e7d242340 (IsA disposal power) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disposition is a kind of nature", "pln": ["(: cnet_isa_696007b858 (IsA disposition nature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disposition is a kind of property", "pln": ["(: cnet_isa_0c36e221e5 (IsA disposition property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disproof is a kind of evidence", "pln": ["(: cnet_isa_60d0243c32 (IsA disproof evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disproportion is a kind of disparity", "pln": ["(: cnet_isa_2897862426 (IsA disproportion disparity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disputant is a kind of person", "pln": ["(: cnet_isa_5fbe4db65b (IsA disputant person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dispute is a kind of resistance", "pln": ["(: cnet_isa_5225bc4633 (IsA dispute resistance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dispute is a kind of disagreement", "pln": ["(: cnet_isa_d2dd7b6348 (IsA dispute disagreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disqualification is a kind of prevention", "pln": ["(: cnet_isa_7a50c535aa (IsA disqualification prevention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disqualification is a kind of unfitness", "pln": ["(: cnet_isa_470e1813e8 (IsA disqualification unfitness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disquiet is a kind of discomposure", "pln": ["(: cnet_isa_b9a9734dc9 (IsA disquiet discomposure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disquisition is a kind of essay", "pln": ["(: cnet_isa_21ae1356be (IsA disquisition essay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disregard is a kind of mistreatment", "pln": ["(: cnet_isa_6c4e9ed32d (IsA disregard mistreatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disregard is a kind of inattention", "pln": ["(: cnet_isa_0858924bc6 (IsA disregard inattention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disrepair is a kind of unsoundness", "pln": ["(: cnet_isa_02dbc9bd02 (IsA disrepair unsoundness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disreputable person is a kind of unwelcome person", "pln": ["(: cnet_isa_b3d8b4fc4a (IsA disreputable_person unwelcome_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disrepute is a kind of dishonor", "pln": ["(: cnet_isa_57660e3252 (IsA disrepute dishonor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disrespect is a kind of attitude", "pln": ["(: cnet_isa_860b8d6a7c (IsA disrespect attitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disrespect is a kind of message", "pln": ["(: cnet_isa_ee02076ae7 (IsA disrespect message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disrupting explosive is a kind of high explosive", "pln": ["(: cnet_isa_0437fd9bdb (IsA disrupting_explosive high_explosive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disruption is a kind of disturbance", "pln": ["(: cnet_isa_23b4e22401 (IsA disruption disturbance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dissatisfaction is a kind of discontentment", "pln": ["(: cnet_isa_26579b8ef9 (IsA dissatisfaction discontentment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dissection is a kind of analysis", "pln": ["(: cnet_isa_6b855bbc17 (IsA dissection analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dissection is a kind of cut", "pln": ["(: cnet_isa_2df3968563 (IsA dissection cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dissemination is a kind of distribution", "pln": ["(: cnet_isa_c14d5d9860 (IsA dissemination distribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dissemination is a kind of transmission", "pln": ["(: cnet_isa_60636acc1e (IsA dissemination transmission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dissent is a kind of disagreement", "pln": ["(: cnet_isa_c1f976b284 (IsA dissent disagreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dissent is a kind of objection", "pln": ["(: cnet_isa_e952113318 (IsA dissent objection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dissenter is a kind of person", "pln": ["(: cnet_isa_f4486a1a69 (IsA dissenter person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dissenting opinion is a kind of opinion", "pln": ["(: cnet_isa_22dabea9ed (IsA dissenting_opinion opinion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dissertation is a kind of treatise", "pln": ["(: cnet_isa_808d394e24 (IsA dissertation treatise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disservice is a kind of injury", "pln": ["(: cnet_isa_b1cf52b959 (IsA disservice injury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dissidence is a kind of disagreement", "pln": ["(: cnet_isa_75518e02ff (IsA dissidence disagreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dissilience is a kind of emergence", "pln": ["(: cnet_isa_016543edd4 (IsA dissilience emergence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dissimilarity is a kind of difference", "pln": ["(: cnet_isa_5894b4fb70 (IsA dissimilarity difference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dissimilation is a kind of linguistic process", "pln": ["(: cnet_isa_165e9ead3e (IsA dissimilation linguistic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dissipation is a kind of dispersion", "pln": ["(: cnet_isa_1d752a43e2 (IsA dissipation dispersion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dissociation is a kind of separation", "pln": ["(: cnet_isa_f31fc74a06 (IsA dissociation separation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dissociation is a kind of chemical process", "pln": ["(: cnet_isa_2526372866 (IsA dissociation chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dissociation is a kind of psychological state", "pln": ["(: cnet_isa_160b37ebc0 (IsA dissociation psychological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dissociation constant is a kind of equilibrium constant", "pln": ["(: cnet_isa_f6d6a27414 (IsA dissociation_constant equilibrium_constant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dissociative disorder is a kind of dissociation", "pln": ["(: cnet_isa_91e83785cd (IsA dissociative_disorder dissociation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dissociative disorder is a kind of mental disorder", "pln": ["(: cnet_isa_5e938dc284 (IsA dissociative_disorder mental_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dissolubility is a kind of physical property", "pln": ["(: cnet_isa_b4e732ad1f (IsA dissolubility physical_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dissoluteness is a kind of indiscipline", "pln": ["(: cnet_isa_f5a4d7afc2 (IsA dissoluteness indiscipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dissolution is a kind of termination", "pln": ["(: cnet_isa_c45083bf0d (IsA dissolution termination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dissolution is a kind of natural process", "pln": ["(: cnet_isa_bcc848c87a (IsA dissolution natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dissolution of marriage is a kind of annulment", "pln": ["(: cnet_isa_3cbd07b3f1 (IsA dissolution_of_marriage annulment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dissolve is a kind of transition", "pln": ["(: cnet_isa_b9b4fe2b5f (IsA dissolve transition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dissolving is a kind of liquefaction", "pln": ["(: cnet_isa_1436b13478 (IsA dissolving liquefaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dissonance is a kind of sound property", "pln": ["(: cnet_isa_a1f3b6e874 (IsA dissonance sound_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dissonance is a kind of sound", "pln": ["(: cnet_isa_4e0e90a5bb (IsA dissonance sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dissuasion is a kind of communication", "pln": ["(: cnet_isa_e40d8702b8 (IsA dissuasion communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dissuasion is a kind of discouragement", "pln": ["(: cnet_isa_67f12ee5ab (IsA dissuasion discouragement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distaff is a kind of staff", "pln": ["(: cnet_isa_9c1cc0eef4 (IsA distaff staff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distaff is a kind of sphere", "pln": ["(: cnet_isa_98c1c5bc49 (IsA distaff sphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distal muscular dystrophy is a kind of muscular dystrophy", "pln": ["(: cnet_isa_e027745990 (IsA distal_muscular_dystrophy muscular_dystrophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distance is a kind of size", "pln": ["(: cnet_isa_75e54cda22 (IsA distance size) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distance is a kind of spacing", "pln": ["(: cnet_isa_a54c9c61c1 (IsA distance spacing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distance is a kind of indifference", "pln": ["(: cnet_isa_fc449242ac (IsA distance indifference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "distance is a kind of region", "pln": ["(: cnet_isa_b805412e1f (IsA distance region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "distance is a kind of point", "pln": ["(: cnet_isa_f5107f8c64 (IsA distance point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distance is a kind of time interval", "pln": ["(: cnet_isa_593eb4a8c4 (IsA distance time_interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distance vision is a kind of sight", "pln": ["(: cnet_isa_a554fbe89b (IsA distance_vision sight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distemper is a kind of painting", "pln": ["(: cnet_isa_176d21dad0 (IsA distemper painting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distemper is a kind of paint", "pln": ["(: cnet_isa_eea89574c2 (IsA distemper paint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distemper is a kind of animal disease", "pln": ["(: cnet_isa_aed938e82f (IsA distemper animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distention is a kind of expansion", "pln": ["(: cnet_isa_877cb79688 (IsA distention expansion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distillate is a kind of liquid", "pln": ["(: cnet_isa_c6c708eb01 (IsA distillate liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distillation is a kind of natural process", "pln": ["(: cnet_isa_47e91aabbc (IsA distillation natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distilled water is a kind of water", "pln": ["(: cnet_isa_cb50adbce6 (IsA distilled_water water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distiller is a kind of manufacturer", "pln": ["(: cnet_isa_273e7f893f (IsA distiller manufacturer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distillery is a kind of factory", "pln": ["(: cnet_isa_fc39c88698 (IsA distillery factory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distillery is a kind of plant", "pln": ["(: cnet_isa_d52f56d00a (IsA distillery plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distinction is a kind of difference", "pln": ["(: cnet_isa_3deb324f9d (IsA distinction difference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distinction is a kind of award", "pln": ["(: cnet_isa_0d16c32bdb (IsA distinction award) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "distinctness is a kind of clearness", "pln": ["(: cnet_isa_e06f7a0bf4 (IsA distinctness clearness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distinguished conduct medal is a kind of decoration", "pln": ["(: cnet_isa_da660fbdd1 (IsA distinguished_conduct_medal decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distinguished flying cross is a kind of decoration", "pln": ["(: cnet_isa_f88c57048e (IsA distinguished_flying_cross decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distinguished service cross is a kind of decoration", "pln": ["(: cnet_isa_6813bc7559 (IsA distinguished_service_cross decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distinguished service medal is a kind of decoration", "pln": ["(: cnet_isa_6d8ff9251b (IsA distinguished_service_medal decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "distinguished service order is a kind of decoration", "pln": ["(: cnet_isa_d52d582acb (IsA distinguished_service_order decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distorted shape is a kind of shape", "pln": ["(: cnet_isa_bb43b4f8cc (IsA distorted_shape shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distortion is a kind of falsification", "pln": ["(: cnet_isa_a02b617eee (IsA distortion falsification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distortion is a kind of mistake", "pln": ["(: cnet_isa_f6d771f96c (IsA distortion mistake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distortion is a kind of damage", "pln": ["(: cnet_isa_057cbc78db (IsA distortion damage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distortion is a kind of acoustic phenomenon", "pln": ["(: cnet_isa_c2f545cfbe (IsA distortion acoustic_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distortion is a kind of electrical phenomenon", "pln": ["(: cnet_isa_36e605b00d (IsA distortion electrical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distortionist is a kind of painter", "pln": ["(: cnet_isa_2d5a9c55e6 (IsA distortionist painter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distraction is a kind of revision", "pln": ["(: cnet_isa_2dafd0321b (IsA distraction revision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distraction is a kind of confusion", "pln": ["(: cnet_isa_93a2083aab (IsA distraction confusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distraction is a kind of inattention", "pln": ["(: cnet_isa_a37aa38f73 (IsA distraction inattention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "distress is a kind of seizure", "pln": ["(: cnet_isa_d82bf0877a (IsA distress seizure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distress is a kind of pain", "pln": ["(: cnet_isa_3977a2846c (IsA distress pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distress is a kind of adversity", "pln": ["(: cnet_isa_d80072f6a3 (IsA distress adversity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distress signal is a kind of signal", "pln": ["(: cnet_isa_5943126aea (IsA distress_signal signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distressingness is a kind of quality", "pln": ["(: cnet_isa_2cfe819168 (IsA distressingness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distributary is a kind of branch", "pln": ["(: cnet_isa_617cdd3f36 (IsA distributary branch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distributed data processing is a kind of data processing", "pln": ["(: cnet_isa_152b0eaf00 (IsA distributed_data_processing data_processing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distributed fire is a kind of fire", "pln": ["(: cnet_isa_95914bbb2e (IsA distributed_fire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distribution is a kind of act", "pln": ["(: cnet_isa_05377e59a3 (IsA distribution act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distribution is a kind of commerce", "pln": ["(: cnet_isa_277c44e5c3 (IsA distribution commerce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distribution is a kind of spacing", "pln": ["(: cnet_isa_f19963bce0 (IsA distribution spacing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "distribution is a kind of arrangement", "pln": ["(: cnet_isa_19743d2cd2 (IsA distribution arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "distribution agreement is a kind of contract", "pln": ["(: cnet_isa_1756c36e90 (IsA distribution_agreement contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distribution channel is a kind of marketing", "pln": ["(: cnet_isa_c76a121ee4 (IsA distribution_channel marketing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distribution cost is a kind of cost", "pln": ["(: cnet_isa_1692ca38d2 (IsA distribution_cost cost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "distribution law is a kind of law", "pln": ["(: cnet_isa_04fe7a7b22 (IsA distribution_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distribution list is a kind of list", "pln": ["(: cnet_isa_40971505f6 (IsA distribution_list list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distributive shock is a kind of shock", "pln": ["(: cnet_isa_a8ed8867e9 (IsA distributive_shock shock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distributor is a kind of electrical device", "pln": ["(: cnet_isa_51cb7987a6 (IsA distributor electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distributor is a kind of company", "pln": ["(: cnet_isa_e385b94fff (IsA distributor company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distributor is a kind of supplier", "pln": ["(: cnet_isa_bca3ba864d (IsA distributor supplier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distributor cam is a kind of cam", "pln": ["(: cnet_isa_9619d4b40c (IsA distributor_cam cam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distributor cap is a kind of cap", "pln": ["(: cnet_isa_3f64b67860 (IsA distributor_cap cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distributor housing is a kind of housing", "pln": ["(: cnet_isa_c2ba022c73 (IsA distributor_housing housing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distributor point is a kind of contact", "pln": ["(: cnet_isa_56f5b635e2 (IsA distributor_point contact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "district is a kind of region", "pln": ["(: cnet_isa_f035ee179f (IsA district region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "district attorney is a kind of prosecutor", "pln": ["(: cnet_isa_3fd4d66a52 (IsA district_attorney prosecutor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "district line is a kind of boundary", "pln": ["(: cnet_isa_69419aca11 (IsA district_line boundary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "district manager is a kind of director", "pln": ["(: cnet_isa_a13cbbcff8 (IsA district_manager director) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "distrust is a kind of trait", "pln": ["(: cnet_isa_a74355bfbe (IsA distrust trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disturbance is a kind of motion", "pln": ["(: cnet_isa_032c89812d (IsA disturbance motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "disturbance is a kind of agitation", "pln": ["(: cnet_isa_39d647081a (IsA disturbance agitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disturbance is a kind of disorder", "pln": ["(: cnet_isa_4b4cd8a619 (IsA disturbance disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disturber is a kind of troublemaker", "pln": ["(: cnet_isa_fb1e3770b5 (IsA disturber troublemaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disunion is a kind of separation", "pln": ["(: cnet_isa_082e93af8d (IsA disunion separation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "disunity is a kind of disagreement", "pln": ["(: cnet_isa_779049f268 (IsA disunity disagreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "disyllable is a kind of word", "pln": ["(: cnet_isa_5d73f9adcd (IsA disyllable word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dita is a kind of tree", "pln": ["(: cnet_isa_c8ab2641e5 (IsA dita tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ditch is a kind of excavation", "pln": ["(: cnet_isa_5fe2814e56 (IsA ditch excavation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ditch is a kind of waterway", "pln": ["(: cnet_isa_3a5b6109c9 (IsA ditch waterway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ditch digger is a kind of digger", "pln": ["(: cnet_isa_c5727d1987 (IsA ditch_digger digger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ditch reed is a kind of reed", "pln": ["(: cnet_isa_71df47a5da (IsA ditch_reed reed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ditch spade is a kind of spade", "pln": ["(: cnet_isa_9b3fd778e9 (IsA ditch_spade spade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dither is a kind of agitation", "pln": ["(: cnet_isa_fca33ae620 (IsA dither agitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dithering is a kind of video digitizing", "pln": ["(: cnet_isa_86e7d748c6 (IsA dithering video_digitizing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dithyramb is a kind of hymn", "pln": ["(: cnet_isa_6c597aea32 (IsA dithyramb hymn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dithyramb is a kind of address", "pln": ["(: cnet_isa_56c1155435 (IsA dithyramb address) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dithyramb is a kind of writing", "pln": ["(: cnet_isa_f630bdbab6 (IsA dithyramb writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dittany of crete is a kind of origanum", "pln": ["(: cnet_isa_f224c53728 (IsA dittany_of_crete origanum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ditto mark is a kind of mark", "pln": ["(: cnet_isa_7cf40cb55f (IsA ditto_mark mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ditty is a kind of song", "pln": ["(: cnet_isa_29ca11af4a (IsA ditty song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ditty bag is a kind of kit", "pln": ["(: cnet_isa_5af2439b51 (IsA ditty_bag kit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diuresis is a kind of symptom", "pln": ["(: cnet_isa_012da1b491 (IsA diuresis symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "diuretic drug is a kind of drug", "pln": ["(: cnet_isa_ec3948c205 (IsA diuretic_drug drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diurnal variation is a kind of variation", "pln": ["(: cnet_isa_5fabb7b9f0 (IsA diurnal_variation variation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "divan is a kind of boardroom", "pln": ["(: cnet_isa_588b2dbeb9 (IsA divan boardroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divan is a kind of chamber", "pln": ["(: cnet_isa_83a70f645a (IsA divan chamber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divan is a kind of sofa", "pln": ["(: cnet_isa_e4eea54f20 (IsA divan sofa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "divan is a kind of anthology", "pln": ["(: cnet_isa_4a6475cce4 (IsA divan anthology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "divan is a kind of privy council", "pln": ["(: cnet_isa_a3858a7bb5 (IsA divan privy_council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divarication is a kind of branching", "pln": ["(: cnet_isa_b11129f2f0 (IsA divarication branching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dive is a kind of descent", "pln": ["(: cnet_isa_2dc8511d67 (IsA dive descent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dive is a kind of swimming", "pln": ["(: cnet_isa_4a2eddd7ff (IsA dive swimming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dive bomber is a kind of bomber", "pln": ["(: cnet_isa_c769902fc3 (IsA dive_bomber bomber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dive bombing is a kind of bombing run", "pln": ["(: cnet_isa_4dbf075012 (IsA dive_bombing bombing_run) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diver is a kind of explorer", "pln": ["(: cnet_isa_28e7d96c19 (IsA diver explorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diver is a kind of swimmer", "pln": ["(: cnet_isa_5e205d89cf (IsA diver swimmer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divergence is a kind of separation", "pln": ["(: cnet_isa_8ad2aa1e2e (IsA divergence separation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divergence is a kind of sery", "pln": ["(: cnet_isa_ab410f64b6 (IsA divergence sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divergent thinker is a kind of thinker", "pln": ["(: cnet_isa_3a6c85b2aa (IsA divergent_thinker thinker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divergent thinking is a kind of thinking", "pln": ["(: cnet_isa_ee0a519484 (IsA divergent_thinking thinking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diverging len is a kind of len", "pln": ["(: cnet_isa_8c6b473fa5 (IsA diverging_len len) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diverseness is a kind of heterogeneity", "pln": ["(: cnet_isa_e4ef039c98 (IsA diverseness heterogeneity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "diversification is a kind of change", "pln": ["(: cnet_isa_e1d024c80d (IsA diversification change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diversification is a kind of condition", "pln": ["(: cnet_isa_1610fc6506 (IsA diversification condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diversion is a kind of activity", "pln": ["(: cnet_isa_1c94ba53b3 (IsA diversion activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diversion is a kind of attack", "pln": ["(: cnet_isa_f6a7c25509 (IsA diversion attack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diversion is a kind of turn", "pln": ["(: cnet_isa_92c751b095 (IsA diversion turn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diversionary landing is a kind of diversion", "pln": ["(: cnet_isa_4e5d3c52f5 (IsA diversionary_landing diversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diversity is a kind of condition", "pln": ["(: cnet_isa_ff0d990120 (IsA diversity condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diverticulitis is a kind of inflammation", "pln": ["(: cnet_isa_682b32deb4 (IsA diverticulitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diverticulosis is a kind of pathology", "pln": ["(: cnet_isa_7106208df6 (IsA diverticulosis pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "diverticulum is a kind of hernia", "pln": ["(: cnet_isa_fb0f4058d3 (IsA diverticulum hernia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divertimento is a kind of musical composition", "pln": ["(: cnet_isa_3726fdb668 (IsA divertimento musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divestiture is a kind of sale", "pln": ["(: cnet_isa_a518e60420 (IsA divestiture sale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divestiture is a kind of court order", "pln": ["(: cnet_isa_03623c8914 (IsA divestiture court_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divi divi is a kind of bean", "pln": ["(: cnet_isa_6ae5e11025 (IsA divi_divi bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divi divi is a kind of tree", "pln": ["(: cnet_isa_dfd628e411 (IsA divi_divi tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divide is a kind of disagreement", "pln": ["(: cnet_isa_c414cbcc4e (IsA divide disagreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "divided highway is a kind of highway", "pln": ["(: cnet_isa_b53af5aca1 (IsA divided_highway highway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dividend is a kind of bonus", "pln": ["(: cnet_isa_454c0c8982 (IsA dividend bonus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dividend is a kind of net income", "pln": ["(: cnet_isa_e907a8da98 (IsA dividend net_income) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dividend is a kind of number", "pln": ["(: cnet_isa_1a153abca4 (IsA dividend number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dividend warrant is a kind of draft", "pln": ["(: cnet_isa_c80130a85a (IsA dividend_warrant draft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divider is a kind of drafting instrument", "pln": ["(: cnet_isa_819eae1a41 (IsA divider drafting_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divider is a kind of person", "pln": ["(: cnet_isa_1ee6e4afa7 (IsA divider person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divination is a kind of prophecy", "pln": ["(: cnet_isa_80d0bb7a45 (IsA divination prophecy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "divination is a kind of guess", "pln": ["(: cnet_isa_34a48f3ea8 (IsA divination guess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divine guidance is a kind of cognitive factor", "pln": ["(: cnet_isa_0efe9cc002 (IsA divine_guidance cognitive_factor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divine law is a kind of law", "pln": ["(: cnet_isa_5801f70cb2 (IsA divine_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divine messenger is a kind of angel", "pln": ["(: cnet_isa_e9d9579571 (IsA divine_messenger angel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divine office is a kind of office", "pln": ["(: cnet_isa_8bd71d90f1 (IsA divine_office office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divine right of king is a kind of doctrine", "pln": ["(: cnet_isa_8c3b1c04a9 (IsA divine_right_of_king doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "diviner is a kind of visionary", "pln": ["(: cnet_isa_20cc7d1101 (IsA diviner visionary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diving is a kind of match", "pln": ["(: cnet_isa_12dfcd5adc (IsA diving match) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diving bell is a kind of submersible", "pln": ["(: cnet_isa_9a6247aaab (IsA diving_bell submersible) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "diving board is a kind of springboard", "pln": ["(: cnet_isa_228f0a000f (IsA diving_board springboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diving duck is a kind of duck", "pln": ["(: cnet_isa_700ad5caf3 (IsA diving_duck duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "diving petrel is a kind of pelagic bird", "pln": ["(: cnet_isa_4ce62a1653 (IsA diving_petrel pelagic_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "diving suit is a kind of protective garment", "pln": ["(: cnet_isa_0ac900be25 (IsA diving_suit protective_garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divining rod is a kind of stick", "pln": ["(: cnet_isa_fb61f04018 (IsA divining_rod stick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divinity is a kind of quality", "pln": ["(: cnet_isa_91beb16d92 (IsA divinity quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divinity is a kind of fudge", "pln": ["(: cnet_isa_b387c57502 (IsA divinity fudge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divisibility is a kind of quality", "pln": ["(: cnet_isa_f1bf9a1ce7 (IsA divisibility quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "division is a kind of operation", "pln": ["(: cnet_isa_da95529c8b (IsA division operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "division is a kind of arithmetic operation", "pln": ["(: cnet_isa_0d1abc8b5b (IsA division arithmetic_operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "division is a kind of separation", "pln": ["(: cnet_isa_e5470eff0f (IsA division separation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "division is a kind of biological group", "pln": ["(: cnet_isa_a014d556cd (IsA division biological_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "division is a kind of phylum", "pln": ["(: cnet_isa_95a5896a2f (IsA division phylum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "division is a kind of discord", "pln": ["(: cnet_isa_9f486f9091 (IsA division discord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "division is a kind of administrative unit", "pln": ["(: cnet_isa_f55c27ac87 (IsA division administrative_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "division is a kind of air unit", "pln": ["(: cnet_isa_4f2a7a3861 (IsA division air_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "division is a kind of army unit", "pln": ["(: cnet_isa_8c31c2a96c (IsA division army_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "division is a kind of naval unit", "pln": ["(: cnet_isa_98143ab339 (IsA division naval_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "division archaebacteria is a kind of division", "pln": ["(: cnet_isa_9d5be083ec (IsA division_archaebacteria division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "division eubacteria is a kind of division", "pln": ["(: cnet_isa_5f10a5dc94 (IsA division_eubacteria division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divisor is a kind of integer", "pln": ["(: cnet_isa_aab1182398 (IsA divisor integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divisor is a kind of number", "pln": ["(: cnet_isa_d580f2210a (IsA divisor number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divorce is a kind of separation", "pln": ["(: cnet_isa_e00f05873f (IsA divorce separation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divorce court is a kind of court", "pln": ["(: cnet_isa_6c5648aecf (IsA divorce_court court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "divorce lawyer is a kind of lawyer", "pln": ["(: cnet_isa_8abe95f825 (IsA divorce_lawyer lawyer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divorcee is a kind of woman", "pln": ["(: cnet_isa_a866500402 (IsA divorcee woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divot is a kind of pit", "pln": ["(: cnet_isa_93aebb0a7d (IsA divot pit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divot is a kind of turf", "pln": ["(: cnet_isa_10d14bd403 (IsA divot turf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divulgence is a kind of disclosure", "pln": ["(: cnet_isa_ab9713cb23 (IsA divulgence disclosure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "divvy is a kind of dividend", "pln": ["(: cnet_isa_a8ec08b141 (IsA divvy dividend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dixie is a kind of pot", "pln": ["(: cnet_isa_86180ec236 (IsA dixie pot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dixie cup is a kind of cup", "pln": ["(: cnet_isa_31ccbc6706 (IsA dixie_cup cup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dizziness is a kind of symptom", "pln": ["(: cnet_isa_8a4c8915c0 (IsA dizziness symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "djibouti franc is a kind of franc", "pln": ["(: cnet_isa_01d8ccc9e4 (IsA djibouti_franc franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "djiboutian is a kind of african", "pln": ["(: cnet_isa_031aa6ea1a (IsA djiboutian african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dna is a kind of complex molecule", "pln": ["(: cnet_isa_9148745126 (IsA dna complex_molecule) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dna is a kind of double stranded molecule", "pln": ["(: cnet_isa_a5d3cd64df (IsA dna double_stranded_molecule) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dna is a kind of molecule", "pln": ["(: cnet_isa_0e77e0c86a (IsA dna molecule) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "dna is a kind of nature s way of programming living creatures", "pln": ["(: cnet_isa_04d87dab20 (IsA dna nature_s_way_of_programming_living_creatures) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dna is a kind of nature s instruction", "pln": ["(: cnet_isa_56bcc88295 (IsA dna nature_s_instruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dna is a kind of nature s way of programming living creature", "pln": ["(: cnet_isa_7dd8a02b08 (IsA dna nature_s_way_of_programming_living_creature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dna fingerprint is a kind of biometric identification", "pln": ["(: cnet_isa_cccda12299 (IsA dna_fingerprint biometric_identification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dna polymerase is a kind of polymerase", "pln": ["(: cnet_isa_02ee5f1b2e (IsA dna_polymerase polymerase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "do is a kind of solfa syllable", "pln": ["(: cnet_isa_0160fbf602 (IsA do solfa_syllable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "do in gym is a kind of gymnastic", "pln": ["(: cnet_isa_00a81ef539 (IsA do_in_gym gymnastic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "do si do is a kind of country dance", "pln": ["(: cnet_isa_11046887fa (IsA do_si_do country_dance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doberman is a kind of pinscher", "pln": ["(: cnet_isa_d4ddcd05bf (IsA doberman pinscher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dobra is a kind of sao thome e principe monetary unit", "pln": ["(: cnet_isa_e4ed4b9816 (IsA dobra sao_thome_e_principe_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dobson is a kind of neuropteron", "pln": ["(: cnet_isa_f012fd4ad1 (IsA dobson neuropteron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "docent is a kind of teacher", "pln": ["(: cnet_isa_74e60a4ab3 (IsA docent teacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "docetism is a kind of heresy", "pln": ["(: cnet_isa_6e83bbcf32 (IsA docetism heresy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "docetism is a kind of theological doctrine", "pln": ["(: cnet_isa_e1fa35a856 (IsA docetism theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "docility is a kind of tractability", "pln": ["(: cnet_isa_2e86a20728 (IsA docility tractability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dock is a kind of body part", "pln": ["(: cnet_isa_4120281a79 (IsA dock body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dock is a kind of landing", "pln": ["(: cnet_isa_67c66281bb (IsA dock landing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dock is a kind of platform", "pln": ["(: cnet_isa_9e1a1aa40f (IsA dock platform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dock is a kind of enclosure", "pln": ["(: cnet_isa_93688deb9e (IsA dock enclosure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dock is a kind of herb", "pln": ["(: cnet_isa_b0379bb721 (IsA dock herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dockage is a kind of fee", "pln": ["(: cnet_isa_d5d6bc068a (IsA dockage fee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "docket is a kind of calendar", "pln": ["(: cnet_isa_4c93f94a22 (IsA docket calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "docking is a kind of arrival", "pln": ["(: cnet_isa_8bea96bc88 (IsA docking arrival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dockside is a kind of side", "pln": ["(: cnet_isa_f568f3a691 (IsA dockside side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dockyard is a kind of waterfront", "pln": ["(: cnet_isa_8f2288259b (IsA dockyard waterfront) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "docosahexaenoic acid is a kind of omega 3 fatty acid", "pln": ["(: cnet_isa_90af61019d (IsA docosahexaenoic_acid omega_3_fatty_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doctor s degree is a kind of academic degree", "pln": ["(: cnet_isa_9882d0de9b (IsA doctor_s_degree academic_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doctor is a kind of man of science", "pln": ["(: cnet_isa_e49b0df8ce (IsA doctor man_of_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doctor is a kind of play", "pln": ["(: cnet_isa_9b1818f3d9 (IsA doctor play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doctor is a kind of medical practitioner", "pln": ["(: cnet_isa_1be4b5bf98 (IsA doctor medical_practitioner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doctor is a kind of scholar", "pln": ["(: cnet_isa_512347fba1 (IsA doctor scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doctor is a kind of theologian", "pln": ["(: cnet_isa_09dcbbf02a (IsA doctor theologian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doctor of art is a kind of honorary degree", "pln": ["(: cnet_isa_4bb0b98f79 (IsA doctor_of_art honorary_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doctor of dental medicine is a kind of doctor s degree", "pln": ["(: cnet_isa_3c93a8db0e (IsA doctor_of_dental_medicine doctor_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "doctor of dental surgery is a kind of doctor s degree", "pln": ["(: cnet_isa_9b3581551d (IsA doctor_of_dental_surgery doctor_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doctor of divinity is a kind of doctor s degree", "pln": ["(: cnet_isa_fbc0dc5051 (IsA doctor_of_divinity doctor_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doctor of education is a kind of doctor s degree", "pln": ["(: cnet_isa_ca579fd542 (IsA doctor_of_education doctor_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doctor of fine art is a kind of honorary degree", "pln": ["(: cnet_isa_7fae04714e (IsA doctor_of_fine_art honorary_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doctor of humane letter is a kind of honorary degree", "pln": ["(: cnet_isa_7ba566dd5d (IsA doctor_of_humane_letter honorary_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doctor of humanity is a kind of honorary degree", "pln": ["(: cnet_isa_c8c44fcb40 (IsA doctor_of_humanity honorary_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doctor of law is a kind of honorary degree", "pln": ["(: cnet_isa_f4e6706609 (IsA doctor_of_law honorary_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doctor of medicine is a kind of doctor s degree", "pln": ["(: cnet_isa_5ffd010292 (IsA doctor_of_medicine doctor_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doctor of music is a kind of doctor s degree", "pln": ["(: cnet_isa_19828f6c88 (IsA doctor_of_music doctor_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doctor of musical art is a kind of doctor s degree", "pln": ["(: cnet_isa_2fb3df2fc4 (IsA doctor_of_musical_art doctor_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doctor of optometry is a kind of doctor s degree", "pln": ["(: cnet_isa_c08cf223be (IsA doctor_of_optometry doctor_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doctor of osteopathy is a kind of doctor s degree", "pln": ["(: cnet_isa_e1a218f0af (IsA doctor_of_osteopathy doctor_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doctor of philosophy is a kind of doctor s degree", "pln": ["(: cnet_isa_a106733695 (IsA doctor_of_philosophy doctor_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doctor of public health is a kind of doctor s degree", "pln": ["(: cnet_isa_af4c1ffb34 (IsA doctor_of_public_health doctor_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "doctor of sacred theology is a kind of doctor s degree", "pln": ["(: cnet_isa_3ac5c43865 (IsA doctor_of_sacred_theology doctor_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doctor of science is a kind of honorary degree", "pln": ["(: cnet_isa_58e7e8ff9b (IsA doctor_of_science honorary_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doctor of theology is a kind of doctor s degree", "pln": ["(: cnet_isa_0c561c23b2 (IsA doctor_of_theology doctor_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "doctor patient relation is a kind of medical relation", "pln": ["(: cnet_isa_510417f14e (IsA doctor_patient_relation medical_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doctorfish is a kind of surgeonfish", "pln": ["(: cnet_isa_3abbaafa7d (IsA doctorfish surgeonfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doctorspeak is a kind of jargon", "pln": ["(: cnet_isa_f1c9d9ec3f (IsA doctorspeak jargon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doctrine is a kind of belief", "pln": ["(: cnet_isa_d97a360651 (IsA doctrine belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doctrine of analogy is a kind of religion", "pln": ["(: cnet_isa_68bf080ed3 (IsA doctrine_of_analogy religion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "document is a kind of representation", "pln": ["(: cnet_isa_b87819c0ca (IsA document representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "document is a kind of writing", "pln": ["(: cnet_isa_e5566b8f1e (IsA document writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "document is a kind of communication", "pln": ["(: cnet_isa_4d19021319 (IsA document communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "documentary is a kind of movie", "pln": ["(: cnet_isa_07bc68aa9d (IsA documentary movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "documentation is a kind of validation", "pln": ["(: cnet_isa_2e98ce2ad5 (IsA documentation validation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "documentation is a kind of confirmation", "pln": ["(: cnet_isa_09f15c769d (IsA documentation confirmation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dodder is a kind of vine", "pln": ["(: cnet_isa_32c3184e28 (IsA dodder vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dodderer is a kind of oldster", "pln": ["(: cnet_isa_8b5ecb90c1 (IsA dodderer oldster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doddle is a kind of cinch", "pln": ["(: cnet_isa_4ec117c885 (IsA doddle cinch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dodecagon is a kind of polygon", "pln": ["(: cnet_isa_3385e5d7d0 (IsA dodecagon polygon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dodecahedron is a kind of polyhedron", "pln": ["(: cnet_isa_8a9324af42 (IsA dodecahedron polyhedron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dodge is a kind of evasion", "pln": ["(: cnet_isa_64a7fdaf19 (IsA dodge evasion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dodge is a kind of falsehood", "pln": ["(: cnet_isa_1c1ec2398f (IsA dodge falsehood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dodger is a kind of deceiver", "pln": ["(: cnet_isa_8ce29314e0 (IsA dodger deceiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dodo is a kind of columbiform bird", "pln": ["(: cnet_isa_c31e408e40 (IsA dodo columbiform_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dodo is a kind of oldster", "pln": ["(: cnet_isa_9e0e976162 (IsA dodo oldster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dodonaea is a kind of dicot genus", "pln": ["(: cnet_isa_bf46df03fe (IsA dodonaea dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doe is a kind of deer", "pln": ["(: cnet_isa_fd7c3dad31 (IsA doe deer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doe is a kind of placental", "pln": ["(: cnet_isa_ad23ad13c9 (IsA doe placental) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doeskin is a kind of fabric", "pln": ["(: cnet_isa_ffebfc3715 (IsA doeskin fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doeskin is a kind of leather", "pln": ["(: cnet_isa_17a2a4ac5f (IsA doeskin leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog s breakfast is a kind of fix", "pln": ["(: cnet_isa_74b99e05b1 (IsA dog_s_breakfast fix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog s mercury is a kind of herb", "pln": ["(: cnet_isa_ab9a155877 (IsA dog_s_mercury herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog is a kind of canine", "pln": ["(: cnet_isa_e7da1540ef (IsA dog canine) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog is a kind of curious observer of mankind", "pln": ["(: cnet_isa_7dd48d0be2 (IsA dog curious_observer_of_mankind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog is a kind of example of pet", "pln": ["(: cnet_isa_dc3567745f (IsA dog example_of_pet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dog is a kind of faithful companion", "pln": ["(: cnet_isa_b41f043ebe (IsA dog faithful_companion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog is a kind of four legged animal", "pln": ["(: cnet_isa_da3522ab42 (IsA dog four_legged_animal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog is a kind of good friend", "pln": ["(: cnet_isa_3c9308d0dc (IsA dog good_friend) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog is a kind of loyal friend", "pln": ["(: cnet_isa_eedde89642 (IsA dog loyal_friend) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog is a kind of mammal", "pln": ["(: cnet_isa_b153506263 (IsA dog mammal) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog is a kind of man best friend", "pln": ["(: cnet_isa_af3b585d62 (IsA dog man_best_friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog is a kind of nice friend", "pln": ["(: cnet_isa_0c15f4aca5 (IsA dog nice_friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog is a kind of pet", "pln": ["(: cnet_isa_16525a214d (IsA dog pet) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog is a kind of domestic animal", "pln": ["(: cnet_isa_74d97cd6b6 (IsA dog domestic_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog is a kind of chap", "pln": ["(: cnet_isa_615e097282 (IsA dog chap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog biscuit is a kind of cookie", "pln": ["(: cnet_isa_5e6a909d9c (IsA dog_biscuit cookie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog bite is a kind of bite", "pln": ["(: cnet_isa_05424acae4 (IsA dog_bite bite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog breeding is a kind of breeding", "pln": ["(: cnet_isa_3ef8998ebf (IsA dog_breeding breeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog catcher is a kind of employee", "pln": ["(: cnet_isa_f48436c97f (IsA dog_catcher employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog collar is a kind of collar", "pln": ["(: cnet_isa_2b4449a3d8 (IsA dog_collar collar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog day cicada is a kind of cicada", "pln": ["(: cnet_isa_ae1e6c9845 (IsA dog_day_cicada cicada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog day is a kind of time period", "pln": ["(: cnet_isa_dcafd48b36 (IsA dog_day time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog ear is a kind of signal", "pln": ["(: cnet_isa_4fc95baf1a (IsA dog_ear signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog fennel is a kind of herb", "pln": ["(: cnet_isa_6ec2585c59 (IsA dog_fennel herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog flea is a kind of flea", "pln": ["(: cnet_isa_b7434d2519 (IsA dog_flea flea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog food is a kind of petfood", "pln": ["(: cnet_isa_db48dddd97 (IsA dog_food petfood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog grass is a kind of wheatgrass", "pln": ["(: cnet_isa_19bfc0c3e9 (IsA dog_grass wheatgrass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dog in manger is a kind of selfish person", "pln": ["(: cnet_isa_e95ef83e1c (IsA dog_in_manger selfish_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog laurel is a kind of shrub", "pln": ["(: cnet_isa_58ff26a599 (IsA dog_laurel shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog paddle is a kind of swimming stroke", "pln": ["(: cnet_isa_415d372d5d (IsA dog_paddle swimming_stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog racing is a kind of race", "pln": ["(: cnet_isa_1af2fd555b (IsA dog_racing race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog rose is a kind of rose", "pln": ["(: cnet_isa_ca945f9537 (IsA dog_rose rose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog shit is a kind of fecal matter", "pln": ["(: cnet_isa_d73e3e81db (IsA dog_shit fecal_matter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog show is a kind of show", "pln": ["(: cnet_isa_8841b1dc30 (IsA dog_show show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog stinkhorn is a kind of stinkhorn", "pln": ["(: cnet_isa_273480960d (IsA dog_stinkhorn stinkhorn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog tag is a kind of tag", "pln": ["(: cnet_isa_89b41127df (IsA dog_tag tag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog violet is a kind of violet", "pln": ["(: cnet_isa_ca6c4f2451 (IsA dog_violet violet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog wrench is a kind of wrench", "pln": ["(: cnet_isa_c4e95bad49 (IsA dog_wrench wrench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dogbane is a kind of poisonous plant", "pln": ["(: cnet_isa_4a046315a7 (IsA dogbane poisonous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dogcart is a kind of cart", "pln": ["(: cnet_isa_8af0c39f2c (IsA dogcart cart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doge is a kind of judge", "pln": ["(: cnet_isa_84185203b5 (IsA doge judge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dogfight is a kind of battle", "pln": ["(: cnet_isa_b4cf17ac7f (IsA dogfight battle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dogfight is a kind of fight", "pln": ["(: cnet_isa_2e0b63cf85 (IsA dogfight fight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dogfight is a kind of contest", "pln": ["(: cnet_isa_e4e52cadb2 (IsA dogfight contest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dogfighter is a kind of fighter pilot", "pln": ["(: cnet_isa_bc48c1346a (IsA dogfighter fighter_pilot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dogfish is a kind of shark", "pln": ["(: cnet_isa_8e736a7a51 (IsA dogfish shark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doggedness is a kind of determination", "pln": ["(: cnet_isa_ecea7f3065 (IsA doggedness determination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "doggerel is a kind of verse", "pln": ["(: cnet_isa_0410c69072 (IsA doggerel verse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doggie bag is a kind of sack", "pln": ["(: cnet_isa_c1aac23ccf (IsA doggie_bag sack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doghouse is a kind of disfavor", "pln": ["(: cnet_isa_45516a6a9b (IsA doghouse disfavor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dogie is a kind of calf", "pln": ["(: cnet_isa_d2f3534cf8 (IsA dogie calf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dogleg is a kind of hole", "pln": ["(: cnet_isa_62c9e8c23b (IsA dogleg hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dogleg is a kind of angle", "pln": ["(: cnet_isa_ed531674d4 (IsA dogleg angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dogma is a kind of doctrine", "pln": ["(: cnet_isa_061c28caae (IsA dogma doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dogma is a kind of religious doctrine", "pln": ["(: cnet_isa_cab5134494 (IsA dogma religious_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "dogs is a kind of dogs", "pln": ["(: cnet_isa_3fe3360af8 (IsA dogs dogs) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dogmatist is a kind of partisan", "pln": ["(: cnet_isa_ad1fb316ca (IsA dogmatist partisan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog is a kind of dog", "pln": ["(: cnet_isa_db30483f09 (IsA dog dog) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog is a kind of great pet", "pln": ["(: cnet_isa_29aa29cba5 (IsA dog great_pet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog is a kind of loyal pet", "pln": ["(: cnet_isa_6f46749baf (IsA dog loyal_pet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog is a kind of n t bird", "pln": ["(: cnet_isa_6e88eed6f0 (IsA dog n_t_bird) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog and bird is a kind of animal", "pln": ["(: cnet_isa_e93c043fc2 (IsA dog_and_bird animal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dog and bird is a kind of both animal", "pln": ["(: cnet_isa_13d6ee9708 (IsA dog_and_bird both_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dogsbody is a kind of proletarian", "pln": ["(: cnet_isa_52cadf8d75 (IsA dogsbody proletarian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dogsled is a kind of sled", "pln": ["(: cnet_isa_8a5879641a (IsA dogsled sled) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dogtooth is a kind of architectural ornament", "pln": ["(: cnet_isa_7b05e7be8f (IsA dogtooth architectural_ornament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dogtooth violet is a kind of liliaceous plant", "pln": ["(: cnet_isa_362a0bc297 (IsA dogtooth_violet liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dogtrot is a kind of jog", "pln": ["(: cnet_isa_78a72ba07f (IsA dogtrot jog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dogwatch is a kind of watch", "pln": ["(: cnet_isa_fdacc56c2a (IsA dogwatch watch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dogwood is a kind of angiospermous tree", "pln": ["(: cnet_isa_af565ab08b (IsA dogwood angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dogwood is a kind of wood", "pln": ["(: cnet_isa_5616c8ab0d (IsA dogwood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dohickey is a kind of whatchamacallit", "pln": ["(: cnet_isa_20a54b9555 (IsA dohickey whatchamacallit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doily is a kind of linen", "pln": ["(: cnet_isa_b10a1ed46e (IsA doily linen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dol is a kind of pain unit", "pln": ["(: cnet_isa_195e66d8b8 (IsA dol pain_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dolce far niente is a kind of idleness", "pln": ["(: cnet_isa_856d09daeb (IsA dolce_far_niente idleness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doldrum is a kind of wind", "pln": ["(: cnet_isa_8416d693fd (IsA doldrum wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dole is a kind of social welfare", "pln": ["(: cnet_isa_7e46fbad6a (IsA dole social_welfare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "dolichos is a kind of rosid dicot genus", "pln": ["(: cnet_isa_7e11dcc515 (IsA dolichos rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dole is a kind of share", "pln": ["(: cnet_isa_5cee845c3a (IsA dole share) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dolefulness is a kind of sadness", "pln": ["(: cnet_isa_b49e1baf2a (IsA dolefulness sadness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dolichocephalic is a kind of adult", "pln": ["(: cnet_isa_2849753474 (IsA dolichocephalic adult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dolichocephalism is a kind of quality", "pln": ["(: cnet_isa_4ca2b0f50e (IsA dolichocephalism quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dolichonyx is a kind of bird genus", "pln": ["(: cnet_isa_f3a3583316 (IsA dolichonyx bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dolicho is a kind of rosid dicot genus", "pln": ["(: cnet_isa_770ed1b7f5 (IsA dolicho rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dolichotis is a kind of mammal genus", "pln": ["(: cnet_isa_18b8f0f987 (IsA dolichotis mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doliolidae is a kind of chordate family", "pln": ["(: cnet_isa_01834b6240 (IsA doliolidae chordate_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doliolum is a kind of tunicate", "pln": ["(: cnet_isa_5e723e8620 (IsA doliolum tunicate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doll is a kind of toy", "pln": ["(: cnet_isa_6d24297ab0 (IsA doll toy) (STV 1.0 0.9770))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doll is a kind of plaything", "pln": ["(: cnet_isa_bf93b37428 (IsA doll plaything) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dollar is a kind of money", "pln": ["(: cnet_isa_f28b14e01e (IsA dollar money) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dollar is a kind of unit of currency", "pln": ["(: cnet_isa_f12898d21d (IsA dollar unit_of_currency) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dollar is a kind of symbol", "pln": ["(: cnet_isa_1da38d7f3e (IsA dollar symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dollar is a kind of bill", "pln": ["(: cnet_isa_647071d2ff (IsA dollar bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dollar is a kind of coin", "pln": ["(: cnet_isa_9ae7a074db (IsA dollar coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dollar is a kind of monetary unit", "pln": ["(: cnet_isa_d358eb838f (IsA dollar monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dollar diplomacy is a kind of diplomacy", "pln": ["(: cnet_isa_f7f8c1b74b (IsA dollar_diplomacy diplomacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dollar mark is a kind of mark", "pln": ["(: cnet_isa_7d0c06f812 (IsA dollar_mark mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dollar volume is a kind of bulk", "pln": ["(: cnet_isa_499a23119a (IsA dollar_volume bulk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dollarfish is a kind of butterfish", "pln": ["(: cnet_isa_335ec5c1f5 (IsA dollarfish butterfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dollhouse is a kind of house", "pln": ["(: cnet_isa_4e6036abdf (IsA dollhouse house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dollhouse is a kind of plaything", "pln": ["(: cnet_isa_934e932ce9 (IsA dollhouse plaything) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dollop is a kind of small indefinite quantity", "pln": ["(: cnet_isa_4fce3eec98 (IsA dollop small_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doll is a kind of ancient artifact", "pln": ["(: cnet_isa_1503166fdb (IsA doll ancient_artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dolly is a kind of conveyance", "pln": ["(: cnet_isa_a4cfaaa595 (IsA dolly conveyance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dolman is a kind of cloak", "pln": ["(: cnet_isa_c15520655a (IsA dolman cloak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dolman is a kind of jacket", "pln": ["(: cnet_isa_0d7f1a7f3c (IsA dolman jacket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dolman sleeve is a kind of sleeve", "pln": ["(: cnet_isa_11ea9efbe1 (IsA dolman_sleeve sleeve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dolma is a kind of dish", "pln": ["(: cnet_isa_d88e12dd20 (IsA dolma dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dolmen is a kind of megalith", "pln": ["(: cnet_isa_4aaadd5699 (IsA dolmen megalith) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dolomite is a kind of mineral", "pln": ["(: cnet_isa_671fe6717b (IsA dolomite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dolomite is a kind of rock", "pln": ["(: cnet_isa_ee8134916a (IsA dolomite rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dolor is a kind of grief", "pln": ["(: cnet_isa_51cad8d359 (IsA dolor grief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dolphin is a kind of animal", "pln": ["(: cnet_isa_ed2cc7da48 (IsA dolphin animal) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dolphin is a kind of toothed whale", "pln": ["(: cnet_isa_4b5d8b7f16 (IsA dolphin toothed_whale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dolphin kick is a kind of swimming kick", "pln": ["(: cnet_isa_925f3d8058 (IsA dolphin_kick swimming_kick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dolphin oil is a kind of animal oil", "pln": ["(: cnet_isa_5e9afa9554 (IsA dolphin_oil animal_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dolphin striker is a kind of spar", "pln": ["(: cnet_isa_84fc242222 (IsA dolphin_striker spar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dolphinfish is a kind of percoid fish", "pln": ["(: cnet_isa_7d3f862f04 (IsA dolphinfish percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dolphinfish is a kind of saltwater fish", "pln": ["(: cnet_isa_99c4c4f4d6 (IsA dolphinfish saltwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dolphin is a kind of mammal", "pln": ["(: cnet_isa_19d5346c84 (IsA dolphin mammal) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dom pedro is a kind of mixed drink", "pln": ["(: cnet_isa_29d7ce0638 (IsA dom_pedro mixed_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "domain is a kind of knowledge domain", "pln": ["(: cnet_isa_3f6fe4d86d (IsA domain knowledge_domain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "domain is a kind of region", "pln": ["(: cnet_isa_4f2c54cc87 (IsA domain region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "domain is a kind of set", "pln": ["(: cnet_isa_7c708a6926 (IsA domain set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "domain name is a kind of name", "pln": ["(: cnet_isa_96abb1e73f (IsA domain_name name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "domatium is a kind of plant part", "pln": ["(: cnet_isa_883955ff6d (IsA domatium plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dombeya is a kind of shrub", "pln": ["(: cnet_isa_28dadb5010 (IsA dombeya shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dome is a kind of roof", "pln": ["(: cnet_isa_99361662ba (IsA dome roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dome is a kind of stadium", "pln": ["(: cnet_isa_964f428d1d (IsA dome stadium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dome is a kind of concave shape", "pln": ["(: cnet_isa_7077246bb5 (IsA dome concave_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "domestic is a kind of servant", "pln": ["(: cnet_isa_fcae799c19 (IsA domestic servant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "domestic animal is a kind of animal", "pln": ["(: cnet_isa_bb455af70e (IsA domestic_animal animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "domestic ass is a kind of ass", "pln": ["(: cnet_isa_c32ed18245 (IsA domestic_ass ass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "domestic carp is a kind of carp", "pln": ["(: cnet_isa_b3db175819 (IsA domestic_carp carp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "domestic cat is a kind of cat", "pln": ["(: cnet_isa_b941db7c47 (IsA domestic_cat cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "domestic cat is a kind of domestic animal", "pln": ["(: cnet_isa_f182c5fc1e (IsA domestic_cat domestic_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "domestic flight is a kind of flight", "pln": ["(: cnet_isa_c711b8b6f7 (IsA domestic_flight flight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "domestic fowl is a kind of gallinaceous bird", "pln": ["(: cnet_isa_fa7901a9de (IsA domestic_fowl gallinaceous_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "domestic goat is a kind of goat", "pln": ["(: cnet_isa_db94051dfe (IsA domestic_goat goat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "domestic llama is a kind of llama", "pln": ["(: cnet_isa_39c14cd7d1 (IsA domestic_llama llama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "domestic partner is a kind of person", "pln": ["(: cnet_isa_4fa10ba90a (IsA domestic_partner person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "domestic pigeon is a kind of pigeon", "pln": ["(: cnet_isa_16698578bd (IsA domestic_pigeon pigeon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "domestic prelate is a kind of priest", "pln": ["(: cnet_isa_82c26c0271 (IsA domestic_prelate priest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "domestic sheep is a kind of sheep", "pln": ["(: cnet_isa_03f920efee (IsA domestic_sheep sheep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "domestic silkworm moth is a kind of bombycid", "pln": ["(: cnet_isa_8b2d619047 (IsA domestic_silkworm_moth bombycid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "domestic terrorism is a kind of terrorism", "pln": ["(: cnet_isa_470047626a (IsA domestic_terrorism terrorism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "domestic violence is a kind of violence", "pln": ["(: cnet_isa_19807c5156 (IsA domestic_violence violence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "domestication is a kind of adjustment", "pln": ["(: cnet_isa_c7a2f5cb84 (IsA domestication adjustment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "domestication is a kind of adaptation", "pln": ["(: cnet_isa_365872cdf8 (IsA domestication adaptation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "domesticity is a kind of activity", "pln": ["(: cnet_isa_ef99b7f132 (IsA domesticity activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "domesticity is a kind of quality", "pln": ["(: cnet_isa_0866cd27c8 (IsA domesticity quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "domicile is a kind of residence", "pln": ["(: cnet_isa_e9f6b5531a (IsA domicile residence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dominance is a kind of organic phenomenon", "pln": ["(: cnet_isa_b28b774e9b (IsA dominance organic_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dominance is a kind of condition", "pln": ["(: cnet_isa_ea2c3393b6 (IsA dominance condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dominant is a kind of note", "pln": ["(: cnet_isa_07a7422319 (IsA dominant note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dominant allele is a kind of allele", "pln": ["(: cnet_isa_f971ce3ca3 (IsA dominant_allele allele) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dominant gene is a kind of gene", "pln": ["(: cnet_isa_9727122eaa (IsA dominant_gene gene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "domination is a kind of social control", "pln": ["(: cnet_isa_26befc806b (IsA domination social_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "domination is a kind of dominance", "pln": ["(: cnet_isa_43c6132ae0 (IsA domination dominance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dominatrix is a kind of woman", "pln": ["(: cnet_isa_7475680358 (IsA dominatrix woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dominican is a kind of west indian", "pln": ["(: cnet_isa_2b034af923 (IsA dominican west_indian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dominican dollar is a kind of dollar", "pln": ["(: cnet_isa_ad58a4596e (IsA dominican_dollar dollar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dominican monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_cec1b123bc (IsA dominican_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dominican order is a kind of order", "pln": ["(: cnet_isa_49b6d44813 (IsA dominican_order order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dominican peso is a kind of dominican monetary unit", "pln": ["(: cnet_isa_5dacdf4338 (IsA dominican_peso dominican_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dominion is a kind of state", "pln": ["(: cnet_isa_003d8aa7d2 (IsA dominion state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dominion is a kind of dominance", "pln": ["(: cnet_isa_2fc565c8b2 (IsA dominion dominance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dominion day is a kind of legal holiday", "pln": ["(: cnet_isa_17cb4a726f (IsA dominion_day legal_holiday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dominique is a kind of chicken", "pln": ["(: cnet_isa_1c23b37ee2 (IsA dominique chicken) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "domino is a kind of block", "pln": ["(: cnet_isa_33bf9bf3bc (IsA domino block) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "domino is a kind of cloak", "pln": ["(: cnet_isa_45047480a2 (IsA domino cloak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "domino is a kind of mask", "pln": ["(: cnet_isa_2c1fc974b9 (IsA domino mask) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "domino effect is a kind of consequence", "pln": ["(: cnet_isa_3054138799 (IsA domino_effect consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "domino theory is a kind of political orientation", "pln": ["(: cnet_isa_9d05365bd2 (IsA domino_theory political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dominoe is a kind of table game", "pln": ["(: cnet_isa_a52fbc8928 (IsA dominoe table_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dominus is a kind of clergyman", "pln": ["(: cnet_isa_0461014643 (IsA dominus clergyman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "domoic acid is a kind of neurotoxin", "pln": ["(: cnet_isa_dbca407d6f (IsA domoic_acid neurotoxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "don is a kind of head", "pln": ["(: cnet_isa_b4419ea7f4 (IsA don head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "don is a kind of gentleman", "pln": ["(: cnet_isa_25b8d4243b (IsA don gentleman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "don is a kind of title", "pln": ["(: cnet_isa_a030cf3962 (IsA don title) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "don juan is a kind of womanizer", "pln": ["(: cnet_isa_bb7ccb3069 (IsA don_juan womanizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "don quixote is a kind of idealist", "pln": ["(: cnet_isa_98cbaa13dd (IsA don_quixote idealist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "don t know is a kind of interviewee", "pln": ["(: cnet_isa_873c69a154 (IsA don_t_know interviewee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dona is a kind of title", "pln": ["(: cnet_isa_23f4531fc1 (IsA dona title) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "donatism is a kind of christianity", "pln": ["(: cnet_isa_3fbc0c1c12 (IsA donatism christianity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "donatist is a kind of disciple", "pln": ["(: cnet_isa_c2180bfb60 (IsA donatist disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dong is a kind of vietnamese monetary unit", "pln": ["(: cnet_isa_6368c9ed1d (IsA dong vietnamese_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dongle is a kind of electronic device", "pln": ["(: cnet_isa_d41a59d0a5 (IsA dongle electronic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "donkey is a kind of emblem", "pln": ["(: cnet_isa_509b56ab9e (IsA donkey emblem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "donkey jacket is a kind of jacket", "pln": ["(: cnet_isa_6dfcbb3fd5 (IsA donkey_jacket jacket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "donna is a kind of woman", "pln": ["(: cnet_isa_0d143b9053 (IsA donna woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "donor is a kind of benefactor", "pln": ["(: cnet_isa_ee257c6ff4 (IsA donor benefactor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "donor card is a kind of card", "pln": ["(: cnet_isa_2185d239dc (IsA donor_card card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doo wop is a kind of gospel", "pln": ["(: cnet_isa_2ce11b1a7b (IsA doo_wop gospel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doodia is a kind of fern", "pln": ["(: cnet_isa_c55b69c99b (IsA doodia fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doodlebug is a kind of larva", "pln": ["(: cnet_isa_2800148713 (IsA doodlebug larva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doodlebug is a kind of motor vehicle", "pln": ["(: cnet_isa_55824caf20 (IsA doodlebug motor_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doom is a kind of destiny", "pln": ["(: cnet_isa_8b3bca579e (IsA doom destiny) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doomed is a kind of people", "pln": ["(: cnet_isa_bfc73c966a (IsA doomed people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "door is a kind of movable barrier", "pln": ["(: cnet_isa_f7b83d6256 (IsA door movable_barrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "door is a kind of room", "pln": ["(: cnet_isa_023d9fb23b (IsA door room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "door is a kind of structure", "pln": ["(: cnet_isa_f06df10a63 (IsA door structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "door is a kind of entree", "pln": ["(: cnet_isa_eb0d3a5c8a (IsA door entree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "door prize is a kind of prize", "pln": ["(: cnet_isa_eeb2766283 (IsA door_prize prize) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doorbell is a kind of push button", "pln": ["(: cnet_isa_b93c469d5d (IsA doorbell push_button) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doorframe is a kind of framework", "pln": ["(: cnet_isa_8ecb84176f (IsA doorframe framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doorjamb is a kind of jamb", "pln": ["(: cnet_isa_5c39b68574 (IsA doorjamb jamb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doorkeeper is a kind of clergyman", "pln": ["(: cnet_isa_ba276275b9 (IsA doorkeeper clergyman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doorkeeper is a kind of guard", "pln": ["(: cnet_isa_d10927905f (IsA doorkeeper guard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doorkeeper is a kind of holy order", "pln": ["(: cnet_isa_5b19318870 (IsA doorkeeper holy_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doorknob is a kind of knob", "pln": ["(: cnet_isa_09ecbcdc4e (IsA doorknob knob) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doorlock is a kind of lock", "pln": ["(: cnet_isa_23d5fb68ad (IsA doorlock lock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doormat is a kind of mat", "pln": ["(: cnet_isa_241eb07707 (IsA doormat mat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doornail is a kind of nail", "pln": ["(: cnet_isa_7c51bc2eab (IsA doornail nail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "doorplate is a kind of nameplate", "pln": ["(: cnet_isa_174d600bed (IsA doorplate nameplate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doorsill is a kind of sill", "pln": ["(: cnet_isa_77f1aeabde (IsA doorsill sill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doorstop is a kind of catch", "pln": ["(: cnet_isa_5bf9fa368b (IsA doorstop catch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doorway is a kind of entrance", "pln": ["(: cnet_isa_7c4e86b3ee (IsA doorway entrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dooryard is a kind of yard", "pln": ["(: cnet_isa_adc53d3d39 (IsA dooryard yard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dopa is a kind of amino acid", "pln": ["(: cnet_isa_f1b93574cd (IsA dopa amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dope is a kind of detail", "pln": ["(: cnet_isa_70be79be34 (IsA dope detail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dope sheet is a kind of tip sheet", "pln": ["(: cnet_isa_4955650a90 (IsA dope_sheet tip_sheet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doppelganger is a kind of legendary creature", "pln": ["(: cnet_isa_5b17fe0c7a (IsA doppelganger legendary_creature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doppler effect is a kind of propagation", "pln": ["(: cnet_isa_736bad3bd2 (IsA doppler_effect propagation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doppler radar is a kind of radar", "pln": ["(: cnet_isa_1102b1ae1c (IsA doppler_radar radar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dorbeetle is a kind of dung beetle", "pln": ["(: cnet_isa_0926e7a5ee (IsA dorbeetle dung_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dorian is a kind of citizenry", "pln": ["(: cnet_isa_881eee3aba (IsA dorian citizenry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dorian is a kind of hellene", "pln": ["(: cnet_isa_9c4709a996 (IsA dorian hellene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doric is a kind of ancient greek", "pln": ["(: cnet_isa_d0e66f7938 (IsA doric ancient_greek) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "doric order is a kind of order", "pln": ["(: cnet_isa_7b7a260923 (IsA doric_order order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dorking is a kind of domestic fowl", "pln": ["(: cnet_isa_5f6ef7c5e4 (IsA dorking domestic_fowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dormancy is a kind of inaction", "pln": ["(: cnet_isa_0b9e1fbb14 (IsA dormancy inaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dormant account is a kind of saving account", "pln": ["(: cnet_isa_b72c57279f (IsA dormant_account saving_account) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dormer is a kind of window", "pln": ["(: cnet_isa_09faf842e4 (IsA dormer window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dormer window is a kind of window", "pln": ["(: cnet_isa_2b40a28f14 (IsA dormer_window window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dormition is a kind of religious holiday", "pln": ["(: cnet_isa_f355a0d866 (IsA dormition religious_holiday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dormitory is a kind of bedroom", "pln": ["(: cnet_isa_a8b3dbf80a (IsA dormitory bedroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dormitory is a kind of building", "pln": ["(: cnet_isa_7f4dc95515 (IsA dormitory building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dormitory is a kind of living quarter", "pln": ["(: cnet_isa_78f8eaeafb (IsA dormitory living_quarter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dormouse is a kind of rodent", "pln": ["(: cnet_isa_39b36689f3 (IsA dormouse rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doronicum is a kind of asterid dicot genus", "pln": ["(: cnet_isa_399ade15cc (IsA doronicum asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dorotheanthus is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_7e33dcd4ac (IsA dorotheanthus caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dorsal fin is a kind of fin", "pln": ["(: cnet_isa_e26cbc718b (IsA dorsal_fin fin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dorsal scapular vein is a kind of vein", "pln": ["(: cnet_isa_0acae058c6 (IsA dorsal_scapular_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dorsiflexion is a kind of flexion", "pln": ["(: cnet_isa_2f32986887 (IsA dorsiflexion flexion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dorsum is a kind of body part", "pln": ["(: cnet_isa_bde6a6f862 (IsA dorsum body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dory is a kind of spiny finned fish", "pln": ["(: cnet_isa_f44ab961db (IsA dory spiny_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dorylinae is a kind of arthropod family", "pln": ["(: cnet_isa_dc871783df (IsA dorylinae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doryopteris is a kind of fern genus", "pln": ["(: cnet_isa_2da680e88e (IsA doryopteris fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dos is a kind of operating system", "pln": ["(: cnet_isa_986d76fa48 (IsA dos operating_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dose is a kind of medicine", "pln": ["(: cnet_isa_44339d9c89 (IsA dose medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dose is a kind of indefinite quantity", "pln": ["(: cnet_isa_4d9175f987 (IsA dose indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dose rate is a kind of rate", "pln": ["(: cnet_isa_9668191274 (IsA dose_rate rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dosemeter is a kind of measuring instrument", "pln": ["(: cnet_isa_83ccf24958 (IsA dosemeter measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dosimetry is a kind of measurement", "pln": ["(: cnet_isa_a0d6c98e50 (IsA dosimetry measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dossal is a kind of hanging", "pln": ["(: cnet_isa_15becb6175 (IsA dossal hanging) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dosser is a kind of tramp", "pln": ["(: cnet_isa_18d8b75942 (IsA dosser tramp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dossier is a kind of written record", "pln": ["(: cnet_isa_f77e09ecc4 (IsA dossier written_record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dot is a kind of telegraphic signal", "pln": ["(: cnet_isa_197c323f1c (IsA dot telegraphic_signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dot com is a kind of company", "pln": ["(: cnet_isa_43acdd9e99 (IsA dot_com company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dot matrix is a kind of matrix", "pln": ["(: cnet_isa_c33f5d244a (IsA dot_matrix matrix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dot matrix printer is a kind of printer", "pln": ["(: cnet_isa_dde4400295 (IsA dot_matrix_printer printer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dotage is a kind of old age", "pln": ["(: cnet_isa_4433408023 (IsA dotage old_age) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dotard is a kind of oldster", "pln": ["(: cnet_isa_391afb13be (IsA dotard oldster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dotted gayfeather is a kind of blazing star", "pln": ["(: cnet_isa_261e379f78 (IsA dotted_gayfeather blazing_star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dotted line is a kind of line", "pln": ["(: cnet_isa_d798568dd6 (IsA dotted_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dotterel is a kind of plover", "pln": ["(: cnet_isa_4893f4499d (IsA dotterel plover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dottle is a kind of residue", "pln": ["(: cnet_isa_c80c6e8916 (IsA dottle residue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double is a kind of base hit", "pln": ["(: cnet_isa_8f83a3bfc2 (IsA double base_hit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "double is a kind of multiple", "pln": ["(: cnet_isa_caf0a20772 (IsA double multiple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double is a kind of person", "pln": ["(: cnet_isa_1f7367934a (IsA double person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double is a kind of stand in", "pln": ["(: cnet_isa_11d510f6ea (IsA double stand_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double agent is a kind of spy", "pln": ["(: cnet_isa_041d3457b1 (IsA double_agent spy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double bar is a kind of bar line", "pln": ["(: cnet_isa_864c68df62 (IsA double_bar bar_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double bed is a kind of bed", "pln": ["(: cnet_isa_9412e5c74e (IsA double_bed bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double bind is a kind of dilemma", "pln": ["(: cnet_isa_c58fb26ae1 (IsA double_bind dilemma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double bitted ax is a kind of ax", "pln": ["(: cnet_isa_9017e4f9dd (IsA double_bitted_ax ax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double blind is a kind of test", "pln": ["(: cnet_isa_7682f1a1b2 (IsA double_blind test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "double blind procedure is a kind of experimental procedure", "pln": ["(: cnet_isa_b9ebd4f3c8 (IsA double_blind_procedure experimental_procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "double damages is a kind of punitive damages", "pln": ["(: cnet_isa_604ebeb072 (IsA double_damages punitive_damages) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double bogey is a kind of score", "pln": ["(: cnet_isa_dae616b43d (IsA double_bogey score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double boiler is a kind of saucepan", "pln": ["(: cnet_isa_19c5f851cd (IsA double_boiler saucepan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double bond is a kind of covalent bond", "pln": ["(: cnet_isa_bddafe8b3e (IsA double_bond covalent_bond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double breasted jacket is a kind of jacket", "pln": ["(: cnet_isa_9d6454bb5c (IsA double_breasted_jacket jacket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double breasted suit is a kind of suit", "pln": ["(: cnet_isa_aad9010af1 (IsA double_breasted_suit suit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double chin is a kind of chin", "pln": ["(: cnet_isa_a90df6f5cd (IsA double_chin chin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double clinch is a kind of clinch", "pln": ["(: cnet_isa_069e41e0b6 (IsA double_clinch clinch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double cream is a kind of cream cheese", "pln": ["(: cnet_isa_e032afafdc (IsA double_cream cream_cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double creme is a kind of cream", "pln": ["(: cnet_isa_cc4a9da262 (IsA double_creme cream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double crochet is a kind of crochet stitch", "pln": ["(: cnet_isa_605d7f0497 (IsA double_crochet crochet_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double cross is a kind of treachery", "pln": ["(: cnet_isa_eef9bda25f (IsA double_cross treachery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double crosser is a kind of deceiver", "pln": ["(: cnet_isa_952b67d1a5 (IsA double_crosser deceiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double dagger is a kind of character", "pln": ["(: cnet_isa_0dc565f726 (IsA double_dagger character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double damage is a kind of punitive damage", "pln": ["(: cnet_isa_830aec80fa (IsA double_damage punitive_damage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double date is a kind of date", "pln": ["(: cnet_isa_108ceb606d (IsA double_date date) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double decomposition is a kind of chemical reaction", "pln": ["(: cnet_isa_d8bb4f3776 (IsA double_decomposition chemical_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double digit is a kind of integer", "pln": ["(: cnet_isa_53b7675354 (IsA double_digit integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double dipper is a kind of earner", "pln": ["(: cnet_isa_876852f197 (IsA double_dipper earner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "double dipping is a kind of income", "pln": ["(: cnet_isa_1f3e767191 (IsA double_dipping income) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "double door is a kind of door", "pln": ["(: cnet_isa_4f5d91244e (IsA double_door door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double dribble is a kind of dribble", "pln": ["(: cnet_isa_93708994cf (IsA double_dribble dribble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "double dutch is a kind of jump rope", "pln": ["(: cnet_isa_f7357484ba (IsA double_dutch jump_rope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double dutch is a kind of gibberish", "pln": ["(: cnet_isa_e8ccee23cf (IsA double_dutch gibberish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double eagle is a kind of score", "pln": ["(: cnet_isa_53ac507ee8 (IsA double_eagle score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double eagle is a kind of coin", "pln": ["(: cnet_isa_f9d000a664 (IsA double_eagle coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double entendre is a kind of ambiguity", "pln": ["(: cnet_isa_ac7f35391e (IsA double_entendre ambiguity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double entry is a kind of bookkeeping", "pln": ["(: cnet_isa_9561d89406 (IsA double_entry bookkeeping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double fault is a kind of fault", "pln": ["(: cnet_isa_b7ae282330 (IsA double_fault fault) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "double first is a kind of first", "pln": ["(: cnet_isa_e30b2eec64 (IsA double_first first) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double flat is a kind of flat", "pln": ["(: cnet_isa_c8394fd6fa (IsA double_flat flat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double glazing is a kind of window", "pln": ["(: cnet_isa_5dc89227f0 (IsA double_glazing window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double gloucester is a kind of cheese", "pln": ["(: cnet_isa_df7293d449 (IsA double_gloucester cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double helix is a kind of helix", "pln": ["(: cnet_isa_813393aa45 (IsA double_helix helix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double hung window is a kind of window", "pln": ["(: cnet_isa_333fe475bf (IsA double_hung_window window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "double indemnity is a kind of article", "pln": ["(: cnet_isa_f8c86cc33c (IsA double_indemnity article) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double jeopardy is a kind of prosecution", "pln": ["(: cnet_isa_35beb177ad (IsA double_jeopardy prosecution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double knit is a kind of knit", "pln": ["(: cnet_isa_b5475c783b (IsA double_knit knit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double leg circle is a kind of gymnastic exercise", "pln": ["(: cnet_isa_95a0b14c29 (IsA double_leg_circle gymnastic_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double negative is a kind of affirmative", "pln": ["(: cnet_isa_bb6aebaa61 (IsA double_negative affirmative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double negative is a kind of negative", "pln": ["(: cnet_isa_47f7bccc1f (IsA double_negative negative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double play is a kind of baseball play", "pln": ["(: cnet_isa_70e0e3723f (IsA double_play baseball_play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double pneumonia is a kind of lobar pneumonia", "pln": ["(: cnet_isa_a1f4f50ab6 (IsA double_pneumonia lobar_pneumonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "double prop is a kind of propeller plane", "pln": ["(: cnet_isa_55a4b7d156 (IsA double_prop propeller_plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double quote is a kind of quotation mark", "pln": ["(: cnet_isa_a729274dde (IsA double_quote quotation_mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double reed is a kind of reed", "pln": ["(: cnet_isa_693f87ec18 (IsA double_reed reed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double reed instrument is a kind of beating reed instrument", "pln": ["(: cnet_isa_7e75f90985 (IsA double_reed_instrument beating_reed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double refraction is a kind of refraction", "pln": ["(: cnet_isa_1e8841bc7b (IsA double_refraction refraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "double replacement reaction is a kind of double decomposition", "pln": ["(: cnet_isa_8a5d6d00d2 (IsA double_replacement_reaction double_decomposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double reverse is a kind of reverse", "pln": ["(: cnet_isa_fdea4ff8b3 (IsA double_reverse reverse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "double rhyme is a kind of rhyme", "pln": ["(: cnet_isa_61ad4249c6 (IsA double_rhyme rhyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double salt is a kind of salt", "pln": ["(: cnet_isa_a2a0e6adb9 (IsA double_salt salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double salt is a kind of solid solution", "pln": ["(: cnet_isa_bbc4efc595 (IsA double_salt solid_solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double sharp is a kind of sharp", "pln": ["(: cnet_isa_3ea863a869 (IsA double_sharp sharp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double spacing is a kind of typing", "pln": ["(: cnet_isa_a250c1f8f5 (IsA double_spacing typing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double standard is a kind of ethic", "pln": ["(: cnet_isa_5093bc165a (IsA double_standard ethic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double standard of sexual behavior is a kind of double standard", "pln": ["(: cnet_isa_d9aa4f4390 (IsA double_standard_of_sexual_behavior double_standard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double stopping is a kind of stopping", "pln": ["(: cnet_isa_9a0bdf6755 (IsA double_stopping stopping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double take is a kind of reaction", "pln": ["(: cnet_isa_e2162196d8 (IsA double_take reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double talk is a kind of gibberish", "pln": ["(: cnet_isa_d94ef53683 (IsA double_talk gibberish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "double time is a kind of wage", "pln": ["(: cnet_isa_cf653fb4de (IsA double_time wage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double time is a kind of pace", "pln": ["(: cnet_isa_f69930dd5c (IsA double_time pace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doubler is a kind of electronic device", "pln": ["(: cnet_isa_fac1979820 (IsA doubler electronic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double is a kind of badminton", "pln": ["(: cnet_isa_35ff92c280 (IsA double badminton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "double is a kind of tennis", "pln": ["(: cnet_isa_566a441322 (IsA double tennis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doublespeak is a kind of evasion", "pln": ["(: cnet_isa_83ae64328f (IsA doublespeak evasion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doublet is a kind of jacket", "pln": ["(: cnet_isa_e0d7975203 (IsA doublet jacket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doublethink is a kind of believing", "pln": ["(: cnet_isa_44a2f3f526 (IsA doublethink believing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "doubleton is a kind of couple", "pln": ["(: cnet_isa_5822746b1b (IsA doubleton couple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "doubletree is a kind of crossbar", "pln": ["(: cnet_isa_2921c4d384 (IsA doubletree crossbar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "doubling is a kind of raise", "pln": ["(: cnet_isa_0e049a714c (IsA doubling raise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doubling is a kind of multiplication", "pln": ["(: cnet_isa_0b19737873 (IsA doubling multiplication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doubloon is a kind of coin", "pln": ["(: cnet_isa_a4f2ec1b26 (IsA doubloon coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doubly transitive verb is a kind of transitive verb", "pln": ["(: cnet_isa_793230cb58 (IsA doubly_transitive_verb transitive_verb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doubt is a kind of uncertainty", "pln": ["(: cnet_isa_ffe9566d49 (IsA doubt uncertainty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doubt is a kind of cognitive state", "pln": ["(: cnet_isa_a47757f09c (IsA doubt cognitive_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doubting thoma is a kind of skeptic", "pln": ["(: cnet_isa_d90a64551b (IsA doubting_thoma skeptic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "douche is a kind of irrigation", "pln": ["(: cnet_isa_155b5efd9a (IsA douche irrigation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "douche is a kind of syringe", "pln": ["(: cnet_isa_382eaf883f (IsA douche syringe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dough is a kind of concoction", "pln": ["(: cnet_isa_c3c549b9d9 (IsA dough concoction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "doughboy is a kind of friedcake", "pln": ["(: cnet_isa_0b9e764693 (IsA doughboy friedcake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doughboy is a kind of infantryman", "pln": ["(: cnet_isa_bec517e8c4 (IsA doughboy infantryman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "doughnut is a kind of friedcake", "pln": ["(: cnet_isa_c08244d730 (IsA doughnut friedcake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dougla fir is a kind of conifer", "pln": ["(: cnet_isa_36232a60ae (IsA dougla_fir conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dougla fir is a kind of fir", "pln": ["(: cnet_isa_b76b4968b4 (IsA dougla_fir fir) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "douroucouli is a kind of new world monkey", "pln": ["(: cnet_isa_7ee857456e (IsA douroucouli new_world_monkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dove s foot geranium is a kind of cranesbill", "pln": ["(: cnet_isa_123d0b6c99 (IsA dove_s_foot_geranium cranesbill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dove is a kind of bird", "pln": ["(: cnet_isa_04ecf02755 (IsA dove bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dove is a kind of pigeon", "pln": ["(: cnet_isa_b7c86eff5d (IsA dove pigeon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dove is a kind of emblem", "pln": ["(: cnet_isa_be1843e6f6 (IsA dove emblem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dove is a kind of pacifist", "pln": ["(: cnet_isa_d8eae8dbdc (IsA dove pacifist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dovecote is a kind of birdhouse", "pln": ["(: cnet_isa_43e2bbe309 (IsA dovecote birdhouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dover s powder is a kind of powder", "pln": ["(: cnet_isa_1e49917a1f (IsA dover_s_powder powder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dovetail is a kind of mortise joint", "pln": ["(: cnet_isa_11005f6c4d (IsA dovetail mortise_joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dovetail plane is a kind of plane", "pln": ["(: cnet_isa_d1e2dce066 (IsA dovetail_plane plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dovishness is a kind of political orientation", "pln": ["(: cnet_isa_cf0a67c9b2 (IsA dovishness political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dovyalis is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_6eb757af08 (IsA dovyalis dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dowager s hump is a kind of osteoporosis", "pln": ["(: cnet_isa_0cd986498e (IsA dowager_s_hump osteoporosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dowager s hump is a kind of spinal curvature", "pln": ["(: cnet_isa_90fccdd379 (IsA dowager_s_hump spinal_curvature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dowager is a kind of widow", "pln": ["(: cnet_isa_13aa69229b (IsA dowager widow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dowdiness is a kind of inelegance", "pln": ["(: cnet_isa_ccd18382aa (IsA dowdiness inelegance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dowdy is a kind of pastry", "pln": ["(: cnet_isa_f0d55f0c1c (IsA dowdy pastry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dowel is a kind of fastener", "pln": ["(: cnet_isa_02ce1f133f (IsA dowel fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doweling is a kind of fastening", "pln": ["(: cnet_isa_996e071fc4 (IsA doweling fastening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dower is a kind of life estate", "pln": ["(: cnet_isa_5150fe1c80 (IsA dower life_estate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dowitcher is a kind of snipe", "pln": ["(: cnet_isa_bf66a19eb1 (IsA dowitcher snipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "down is a kind of direction", "pln": ["(: cnet_isa_c59f178541 (IsA down direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "down is a kind of turn", "pln": ["(: cnet_isa_64861b27e5 (IsA down turn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "down is a kind of feather", "pln": ["(: cnet_isa_873f211e38 (IsA down feather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "down is a kind of hair", "pln": ["(: cnet_isa_84b9954654 (IsA down hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "down is a kind of highland", "pln": ["(: cnet_isa_685b716838 (IsA down highland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "down and out is a kind of poor person", "pln": ["(: cnet_isa_b232386824 (IsA down_and_out poor_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "down bow is a kind of bow", "pln": ["(: cnet_isa_bf3d787af4 (IsA down_bow bow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "down easter is a kind of american", "pln": ["(: cnet_isa_50c6f76cf7 (IsA down_easter american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "down payment is a kind of payment", "pln": ["(: cnet_isa_2f254a6d5c (IsA down_payment payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "down quark is a kind of quark", "pln": ["(: cnet_isa_836d8deb89 (IsA down_quark quark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "downbeat is a kind of rhythm", "pln": ["(: cnet_isa_357ae9f555 (IsA downbeat rhythm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "downcast is a kind of shaft", "pln": ["(: cnet_isa_8032674458 (IsA downcast shaft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "downdraft is a kind of draft", "pln": ["(: cnet_isa_885b5ffcb6 (IsA downdraft draft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "downfall is a kind of failure", "pln": ["(: cnet_isa_f2829f4908 (IsA downfall failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "downgrade is a kind of grade", "pln": ["(: cnet_isa_6485c488f5 (IsA downgrade grade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "downheartedness is a kind of sadness", "pln": ["(: cnet_isa_6ce2f93a33 (IsA downheartedness sadness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "downhill is a kind of ski race", "pln": ["(: cnet_isa_84af49d8e7 (IsA downhill ski_race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "downhill is a kind of descent", "pln": ["(: cnet_isa_b19b9390aa (IsA downhill descent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "downiness is a kind of softness", "pln": ["(: cnet_isa_43449ffc1d (IsA downiness softness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "downing street is a kind of government", "pln": ["(: cnet_isa_ffe618c74a (IsA downing_street government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "downpour is a kind of rain", "pln": ["(: cnet_isa_484810d64f (IsA downpour rain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "downrightness is a kind of directness", "pln": ["(: cnet_isa_6e229b8474 (IsA downrightness directness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "downshift is a kind of change", "pln": ["(: cnet_isa_e7aa348a44 (IsA downshift change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "downside is a kind of side", "pln": ["(: cnet_isa_005813370a (IsA downside side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "downspin is a kind of downturn", "pln": ["(: cnet_isa_622830910f (IsA downspin downturn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "downstage is a kind of stage", "pln": ["(: cnet_isa_4ef66560fe (IsA downstage stage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "downstroke is a kind of stroke", "pln": ["(: cnet_isa_7414760d9e (IsA downstroke stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "downswing is a kind of golf stroke", "pln": ["(: cnet_isa_1054065f7a (IsA downswing golf_stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "downtick is a kind of transaction", "pln": ["(: cnet_isa_46e55f460d (IsA downtick transaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "downtime is a kind of time period", "pln": ["(: cnet_isa_f70c0016b0 (IsA downtime time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "downturn is a kind of worsening", "pln": ["(: cnet_isa_594287f82e (IsA downturn worsening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "downy birch is a kind of birch", "pln": ["(: cnet_isa_c68dd78325 (IsA downy_birch birch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "downy brome is a kind of brome", "pln": ["(: cnet_isa_c1321db513 (IsA downy_brome brome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "downy ground cherry is a kind of ground cherry", "pln": ["(: cnet_isa_a826bc5583 (IsA downy_ground_cherry ground_cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "downy manzanita is a kind of manzanita", "pln": ["(: cnet_isa_b7f76cff92 (IsA downy_manzanita manzanita) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "downy mildew is a kind of mildew", "pln": ["(: cnet_isa_03b3f8ab13 (IsA downy_mildew mildew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "downy wood mint is a kind of wood mint", "pln": ["(: cnet_isa_f89e70e006 (IsA downy_wood_mint wood_mint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "downy woodpecker is a kind of woodpecker", "pln": ["(: cnet_isa_84966a56a9 (IsA downy_woodpecker woodpecker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "downy yellow violet is a kind of violet", "pln": ["(: cnet_isa_6aed4a3793 (IsA downy_yellow_violet violet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dowry is a kind of gift", "pln": ["(: cnet_isa_c89db13c84 (IsA dowry gift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dowse is a kind of divination", "pln": ["(: cnet_isa_207cd3a13d (IsA dowse divination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doxastic logic is a kind of modal logic", "pln": ["(: cnet_isa_d93a8c7f51 (IsA doxastic_logic modal_logic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doxology is a kind of hymn", "pln": ["(: cnet_isa_96b004e99f (IsA doxology hymn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doxorubicin is a kind of antibiotic", "pln": ["(: cnet_isa_ca84f345c2 (IsA doxorubicin antibiotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doyenne is a kind of elder", "pln": ["(: cnet_isa_ce30f51564 (IsA doyenne elder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "doze is a kind of sleeping", "pln": ["(: cnet_isa_e8900e0ee8 (IsA doze sleeping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dphil is a kind of doctor of philosophy", "pln": ["(: cnet_isa_f5937cefa5 (IsA dphil doctor_of_philosophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dpt vaccine is a kind of vaccine", "pln": ["(: cnet_isa_e7efe56b76 (IsA dpt_vaccine vaccine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "draba is a kind of herb", "pln": ["(: cnet_isa_75abac3838 (IsA draba herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dracaena is a kind of agave", "pln": ["(: cnet_isa_f37845a5c8 (IsA dracaena agave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dracenaceae is a kind of liliid monocot family", "pln": ["(: cnet_isa_8f1e125330 (IsA dracenaceae liliid_monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drachma is a kind of greek monetary unit", "pln": ["(: cnet_isa_889a675d1b (IsA drachma greek_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "draco is a kind of reptile genus", "pln": ["(: cnet_isa_9529dc59b0 (IsA draco reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dracocephalum is a kind of asterid dicot genus", "pln": ["(: cnet_isa_9cd9f4ded1 (IsA dracocephalum asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dracontium is a kind of arum", "pln": ["(: cnet_isa_c0850f947e (IsA dracontium arum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dracula is a kind of vampire", "pln": ["(: cnet_isa_eb4c44374f (IsA dracula vampire) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dracula is a kind of monocot genus", "pln": ["(: cnet_isa_af2a043f58 (IsA dracula monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dracunculidae is a kind of worm family", "pln": ["(: cnet_isa_45afc73dfd (IsA dracunculidae worm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dracunculus is a kind of worm genus", "pln": ["(: cnet_isa_0525271a18 (IsA dracunculus worm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dracunculus is a kind of monocot genus", "pln": ["(: cnet_isa_0e3866e4c4 (IsA dracunculus monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "draft is a kind of pull", "pln": ["(: cnet_isa_4524399974 (IsA draft pull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "draft is a kind of dose", "pln": ["(: cnet_isa_06fa14bc39 (IsA draft dose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "draft is a kind of regulator", "pln": ["(: cnet_isa_a63d108829 (IsA draft regulator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "draft is a kind of sketch", "pln": ["(: cnet_isa_edb434aa4d (IsA draft sketch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "draft is a kind of depth", "pln": ["(: cnet_isa_113a972ba8 (IsA draft depth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "draft is a kind of text", "pln": ["(: cnet_isa_d3a9caa0db (IsA draft text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "draft is a kind of drink", "pln": ["(: cnet_isa_050b325832 (IsA draft drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "draft is a kind of wind", "pln": ["(: cnet_isa_02e8c12413 (IsA draft wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "draft is a kind of negotiable instrument", "pln": ["(: cnet_isa_f509f0bf91 (IsA draft negotiable_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "draft animal is a kind of work animal", "pln": ["(: cnet_isa_3b57075523 (IsA draft_animal work_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "draft beer is a kind of beer", "pln": ["(: cnet_isa_bb171d61ff (IsA draft_beer beer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "draft board is a kind of board", "pln": ["(: cnet_isa_f56188e6d4 (IsA draft_board board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "draft dodger is a kind of deserter", "pln": ["(: cnet_isa_9fcd372566 (IsA draft_dodger deserter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "draft horse is a kind of workhorse", "pln": ["(: cnet_isa_cdf9ff0429 (IsA draft_horse workhorse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "draftee is a kind of serviceman", "pln": ["(: cnet_isa_fe0d7cb798 (IsA draftee serviceman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drafter is a kind of writer", "pln": ["(: cnet_isa_dfbc3338ea (IsA drafter writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drafting is a kind of trade", "pln": ["(: cnet_isa_2be440eb41 (IsA drafting trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drafting is a kind of writing", "pln": ["(: cnet_isa_e956308d33 (IsA drafting writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drafting board is a kind of board", "pln": ["(: cnet_isa_bda6d2e50e (IsA drafting_board board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drafting instrument is a kind of instrument", "pln": ["(: cnet_isa_e411a4bcda (IsA drafting_instrument instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drafting table is a kind of worktable", "pln": ["(: cnet_isa_8f2397c9ef (IsA drafting_table worktable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "draftsman is a kind of artist", "pln": ["(: cnet_isa_836d99a4c2 (IsA draftsman artist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "draftsman is a kind of skilled worker", "pln": ["(: cnet_isa_bfe0c31c42 (IsA draftsman skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drag is a kind of pull", "pln": ["(: cnet_isa_84e3dd04f0 (IsA drag pull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drag is a kind of clothing", "pln": ["(: cnet_isa_ffb7584852 (IsA drag clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drag is a kind of tediousness", "pln": ["(: cnet_isa_c65f253851 (IsA drag tediousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "drag is a kind of hindrance", "pln": ["(: cnet_isa_055b8b9518 (IsA drag hindrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drag is a kind of resistance", "pln": ["(: cnet_isa_0af85161a5 (IsA drag resistance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drag coefficient is a kind of coefficient", "pln": ["(: cnet_isa_dbe8a8eb81 (IsA drag_coefficient coefficient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dragee is a kind of pill", "pln": ["(: cnet_isa_5eeffce800 (IsA dragee pill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dragee is a kind of candy", "pln": ["(: cnet_isa_e8c1b2e636 (IsA dragee candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dragnet is a kind of system", "pln": ["(: cnet_isa_d18e62b90f (IsA dragnet system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dragoman is a kind of interpreter", "pln": ["(: cnet_isa_a411d42f80 (IsA dragoman interpreter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dragon s blood is a kind of gum", "pln": ["(: cnet_isa_85f3bf3849 (IsA dragon_s_blood gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dragon is a kind of mystical animal", "pln": ["(: cnet_isa_712ee29e29 (IsA dragon mystical_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dragon is a kind of mythical beast", "pln": ["(: cnet_isa_f6ade418e2 (IsA dragon mythical_beast) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dragon is a kind of mythological creature", "pln": ["(: cnet_isa_869f0983f3 (IsA dragon mythological_creature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dragon is a kind of mythological reptilian monster", "pln": ["(: cnet_isa_83aca9251a (IsA dragon mythological_reptilian_monster) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dragon is a kind of agamid", "pln": ["(: cnet_isa_3f742b7516 (IsA dragon agamid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dragon is a kind of mythical monster", "pln": ["(: cnet_isa_6db191d35f (IsA dragon mythical_monster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dragon is a kind of unpleasant woman", "pln": ["(: cnet_isa_0fff9a6eb9 (IsA dragon unpleasant_woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dragon arum is a kind of arum", "pln": ["(: cnet_isa_1fb0b8d753 (IsA dragon_arum arum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dragon tree is a kind of dracaena", "pln": ["(: cnet_isa_66a91fe2e9 (IsA dragon_tree dracaena) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dragonet is a kind of spiny finned fish", "pln": ["(: cnet_isa_6f60a2cbdf (IsA dragonet spiny_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dragonfly is a kind of insect", "pln": ["(: cnet_isa_ee9e5594d0 (IsA dragonfly insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dragonfly is a kind of odonate", "pln": ["(: cnet_isa_1aa408d6fa (IsA dragonfly odonate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dragonhead is a kind of herb", "pln": ["(: cnet_isa_e8a9e558ae (IsA dragonhead herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dragon is a kind of fictional giant lizard", "pln": ["(: cnet_isa_1d8259313b (IsA dragon fictional_giant_lizard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dragoon is a kind of cavalryman", "pln": ["(: cnet_isa_bc94de39b0 (IsA dragoon cavalryman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dragunov is a kind of sniper rifle", "pln": ["(: cnet_isa_758f6c9de9 (IsA dragunov sniper_rifle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drain is a kind of depletion", "pln": ["(: cnet_isa_40b6af9c14 (IsA drain depletion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drain is a kind of emptying", "pln": ["(: cnet_isa_06127c4edd (IsA drain emptying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drain is a kind of pipe", "pln": ["(: cnet_isa_40babb7b48 (IsA drain pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drain is a kind of tube", "pln": ["(: cnet_isa_3c59a52392 (IsA drain tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drain basket is a kind of filter", "pln": ["(: cnet_isa_17073dee67 (IsA drain_basket filter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drainage ditch is a kind of ditch", "pln": ["(: cnet_isa_9a2ddc8177 (IsA drainage_ditch ditch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drainage system is a kind of system", "pln": ["(: cnet_isa_d67a4106b6 (IsA drainage_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drainboard is a kind of board", "pln": ["(: cnet_isa_4768612c12 (IsA drainboard board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drainplug is a kind of plug", "pln": ["(: cnet_isa_134231fe05 (IsA drainplug plug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drake is a kind of duck", "pln": ["(: cnet_isa_e9716cc002 (IsA drake duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dram is a kind of apothecary unit", "pln": ["(: cnet_isa_09b168a06a (IsA dram apothecary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dram is a kind of armenian monetary unit", "pln": ["(: cnet_isa_4226116685 (IsA dram armenian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dram is a kind of avoirdupois unit", "pln": ["(: cnet_isa_c050262b04 (IsA dram avoirdupois_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drama is a kind of emotionality", "pln": ["(: cnet_isa_cb0c01bcd7 (IsA drama emotionality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drama is a kind of writing style", "pln": ["(: cnet_isa_8e1e52ccb3 (IsA drama writing_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drama is a kind of episode", "pln": ["(: cnet_isa_03f3b41c11 (IsA drama episode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "drama critic is a kind of critic", "pln": ["(: cnet_isa_5c0428ef21 (IsA drama_critic critic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dramatic composition is a kind of writing", "pln": ["(: cnet_isa_17c4592e52 (IsA dramatic_composition writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dramatic irony is a kind of irony", "pln": ["(: cnet_isa_21fa48d8c2 (IsA dramatic_irony irony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dramatic production is a kind of performance", "pln": ["(: cnet_isa_474949c8c7 (IsA dramatic_production performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dramatic is a kind of extracurricular activity", "pln": ["(: cnet_isa_a82d1afd4f (IsA dramatic extracurricular_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dramatist is a kind of writer", "pln": ["(: cnet_isa_13b853119c (IsA dramatist writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dramatization is a kind of representation", "pln": ["(: cnet_isa_898630ccd9 (IsA dramatization representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dramatization is a kind of writing", "pln": ["(: cnet_isa_c7de554431 (IsA dramatization writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dramaturgy is a kind of communication", "pln": ["(: cnet_isa_3617e7f214 (IsA dramaturgy communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drambuie is a kind of liqueur", "pln": ["(: cnet_isa_f320da60ef (IsA drambuie liqueur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drambuie is a kind of scotch", "pln": ["(: cnet_isa_2fc8c714c7 (IsA drambuie scotch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drape is a kind of covering", "pln": ["(: cnet_isa_20ec8d5e04 (IsA drape covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drape is a kind of manner", "pln": ["(: cnet_isa_a1bbf6643b (IsA drape manner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "draper is a kind of trader", "pln": ["(: cnet_isa_6edc2dc806 (IsA draper trader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "drapery is a kind of fabric", "pln": ["(: cnet_isa_c8b4a4b670 (IsA drapery fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dravidian is a kind of natural language", "pln": ["(: cnet_isa_7e642b970f (IsA dravidian natural_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dravidian is a kind of indian", "pln": ["(: cnet_isa_de927a032e (IsA dravidian indian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "draw is a kind of poker", "pln": ["(: cnet_isa_3d6b70baad (IsA draw poker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "draw is a kind of pull", "pln": ["(: cnet_isa_e584e42092 (IsA draw pull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "draw is a kind of run", "pln": ["(: cnet_isa_800b198745 (IsA draw run) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "draw is a kind of object", "pln": ["(: cnet_isa_186e68f75f (IsA draw object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "draw is a kind of playing card", "pln": ["(: cnet_isa_2bdbd714c1 (IsA draw playing_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "draw is a kind of finish", "pln": ["(: cnet_isa_25af675f1a (IsA draw finish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "draw is a kind of gully", "pln": ["(: cnet_isa_3f49dbfc0c (IsA draw gully) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drawback is a kind of disadvantage", "pln": ["(: cnet_isa_ff4633668b (IsA drawback disadvantage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drawbar is a kind of bar", "pln": ["(: cnet_isa_ed49fb0308 (IsA drawbar bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drawbridge is a kind of bridge", "pln": ["(: cnet_isa_73d6d142bd (IsA drawbridge bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drawee is a kind of payer", "pln": ["(: cnet_isa_88b8151f99 (IsA drawee payer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drawer is a kind of container", "pln": ["(: cnet_isa_61f0500129 (IsA drawer container) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drawer is a kind of storage space", "pln": ["(: cnet_isa_0ad6fd6ce8 (IsA drawer storage_space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drawer is a kind of money handler", "pln": ["(: cnet_isa_5b0988ad24 (IsA drawer money_handler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drawer is a kind of underpant", "pln": ["(: cnet_isa_3111a98c14 (IsA drawer underpant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drawing is a kind of art", "pln": ["(: cnet_isa_06259e2555 (IsA drawing art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drawing is a kind of drain", "pln": ["(: cnet_isa_6356f5e3b4 (IsA drawing drain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drawing is a kind of representation", "pln": ["(: cnet_isa_3782b2da23 (IsA drawing representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drawing is a kind of artwork", "pln": ["(: cnet_isa_bbc25d78d1 (IsA drawing artwork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drawing card is a kind of feature", "pln": ["(: cnet_isa_a3c0085e29 (IsA drawing_card feature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drawing card is a kind of entertainer", "pln": ["(: cnet_isa_6f730652ec (IsA drawing_card entertainer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drawing chalk is a kind of chalk", "pln": ["(: cnet_isa_a23b0aabd1 (IsA drawing_chalk chalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drawing paper is a kind of paper", "pln": ["(: cnet_isa_5593c18c0f (IsA drawing_paper paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drawing power is a kind of attraction", "pln": ["(: cnet_isa_eae955ca6f (IsA drawing_power attraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drawing room is a kind of room in home", "pln": ["(: cnet_isa_b31d938eb5 (IsA drawing_room room_in_home) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drawing room is a kind of compartment", "pln": ["(: cnet_isa_83ddbd2917 (IsA drawing_room compartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drawing room is a kind of reception room", "pln": ["(: cnet_isa_bc48fe8cec (IsA drawing_room reception_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drawknife is a kind of knife", "pln": ["(: cnet_isa_455944db25 (IsA drawknife knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drawl is a kind of accent", "pln": ["(: cnet_isa_725691e3d1 (IsA drawl accent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drawler is a kind of speaker", "pln": ["(: cnet_isa_1a15869210 (IsA drawler speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drawnwork is a kind of embroidery", "pln": ["(: cnet_isa_7e052122c4 (IsA drawnwork embroidery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drawstring is a kind of tie", "pln": ["(: cnet_isa_0509beca32 (IsA drawstring tie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drawstring bag is a kind of bag", "pln": ["(: cnet_isa_8af49bc46e (IsA drawstring_bag bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dray is a kind of horse cart", "pln": ["(: cnet_isa_49b65feda4 (IsA dray horse_cart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dreadlock is a kind of lock", "pln": ["(: cnet_isa_069bd18d98 (IsA dreadlock lock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dreadnought is a kind of battleship", "pln": ["(: cnet_isa_731858b2ac (IsA dreadnought battleship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dream is a kind of imagination", "pln": ["(: cnet_isa_3d616a747a (IsA dream imagination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dream is a kind of reverie", "pln": ["(: cnet_isa_7201f07105 (IsA dream reverie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dream is a kind of perfection", "pln": ["(: cnet_isa_37e80f932f (IsA dream perfection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dreamer is a kind of sleeper", "pln": ["(: cnet_isa_80926739ff (IsA dreamer sleeper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dredge is a kind of power shovel", "pln": ["(: cnet_isa_4322bbcc1d (IsA dredge power_shovel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dredger is a kind of barge", "pln": ["(: cnet_isa_8c7b3da850 (IsA dredger barge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dredging bucket is a kind of bucket", "pln": ["(: cnet_isa_a40bebe281 (IsA dredging_bucket bucket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dreg is a kind of small indefinite quantity", "pln": ["(: cnet_isa_cabdf4c0bb (IsA dreg small_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dreg is a kind of sediment", "pln": ["(: cnet_isa_194656a241 (IsA dreg sediment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dreissena is a kind of mollusk genus", "pln": ["(: cnet_isa_bb85a0376a (IsA dreissena mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drenching is a kind of wetting", "pln": ["(: cnet_isa_e02070baa6 (IsA drenching wetting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "drepanididae is a kind of bird family", "pln": ["(: cnet_isa_85de01a5a7 (IsA drepanididae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drepanis is a kind of bird genus", "pln": ["(: cnet_isa_25eb8039e9 (IsA drepanis bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dress is a kind of form of clothing", "pln": ["(: cnet_isa_0c6ee474b3 (IsA dress form_of_clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dress is a kind of woman s clothing", "pln": ["(: cnet_isa_9ed4f1a5ca (IsA dress woman_s_clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dress blue is a kind of dress uniform", "pln": ["(: cnet_isa_fdcc22a0cc (IsA dress_blue dress_uniform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dress code is a kind of code", "pln": ["(: cnet_isa_6eac0aee8f (IsA dress_code code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dress hat is a kind of hat", "pln": ["(: cnet_isa_1cb8d99a92 (IsA dress_hat hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dress hat is a kind of man s clothing", "pln": ["(: cnet_isa_06e62ce4bc (IsA dress_hat man_s_clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dress rack is a kind of rack", "pln": ["(: cnet_isa_3231c02a97 (IsA dress_rack rack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dress rehearsal is a kind of rehearsal", "pln": ["(: cnet_isa_66cba0ecd8 (IsA dress_rehearsal rehearsal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dress shirt is a kind of shirt", "pln": ["(: cnet_isa_93500da15b (IsA dress_shirt shirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dress suit is a kind of formalwear", "pln": ["(: cnet_isa_82e59100db (IsA dress_suit formalwear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dress uniform is a kind of military uniform", "pln": ["(: cnet_isa_877834750d (IsA dress_uniform military_uniform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dressage is a kind of equestrian sport", "pln": ["(: cnet_isa_0332373bf0 (IsA dressage equestrian_sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dressed ore is a kind of ore", "pln": ["(: cnet_isa_7f5f7a2ed1 (IsA dressed_ore ore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dresser is a kind of piece of furniture", "pln": ["(: cnet_isa_82f755e0cc (IsA dresser piece_of_furniture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dresser is a kind of cabinet", "pln": ["(: cnet_isa_7fba9159d1 (IsA dresser cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dresser is a kind of assistant", "pln": ["(: cnet_isa_237e4d9296 (IsA dresser assistant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dresser is a kind of person", "pln": ["(: cnet_isa_d701965958 (IsA dresser person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dressing is a kind of conversion", "pln": ["(: cnet_isa_04e102ac99 (IsA dressing conversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dressing is a kind of covering", "pln": ["(: cnet_isa_88761c311c (IsA dressing covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dressing is a kind of medical care", "pln": ["(: cnet_isa_e414e75c0b (IsA dressing medical_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dressing is a kind of cloth covering", "pln": ["(: cnet_isa_bdde5ef6a5 (IsA dressing cloth_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dressing is a kind of sauce", "pln": ["(: cnet_isa_8524553d00 (IsA dressing sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dressing case is a kind of baggage", "pln": ["(: cnet_isa_0254af245e (IsA dressing_case baggage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dressing gown is a kind of robe", "pln": ["(: cnet_isa_c5c1a3e9bf (IsA dressing_gown robe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dressing room is a kind of room", "pln": ["(: cnet_isa_1c12fcc306 (IsA dressing_room room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dressing sack is a kind of jacket", "pln": ["(: cnet_isa_e3fb1c00c6 (IsA dressing_sack jacket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dressing station is a kind of first aid station", "pln": ["(: cnet_isa_5055d485fd (IsA dressing_station first_aid_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dressing table is a kind of table", "pln": ["(: cnet_isa_431c156d59 (IsA dressing_table table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dressmaker s model is a kind of model", "pln": ["(: cnet_isa_d97cc80422 (IsA dressmaker_s_model model) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dressmaker is a kind of garmentmaker", "pln": ["(: cnet_isa_6339354939 (IsA dressmaker garmentmaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dressmaking is a kind of trade", "pln": ["(: cnet_isa_2cc25d07e0 (IsA dressmaking trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "drey is a kind of nest", "pln": ["(: cnet_isa_d8d6669994 (IsA drey nest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dribble is a kind of propulsion", "pln": ["(: cnet_isa_6d799ed59c (IsA dribble propulsion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dribbler is a kind of basketball player", "pln": ["(: cnet_isa_4b6c0ae586 (IsA dribbler basketball_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dribbler is a kind of person", "pln": ["(: cnet_isa_345ec67e68 (IsA dribbler person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dried apricot is a kind of dried fruit", "pln": ["(: cnet_isa_5c3def26fd (IsA dried_apricot dried_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dried fruit is a kind of edible fruit", "pln": ["(: cnet_isa_642c55c457 (IsA dried_fruit edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drift is a kind of natural process", "pln": ["(: cnet_isa_03fe9557b3 (IsA drift natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drift is a kind of inclination", "pln": ["(: cnet_isa_bb8fc28e9e (IsA drift inclination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drift is a kind of tenor", "pln": ["(: cnet_isa_670e9c2a4a (IsA drift tenor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drift is a kind of passageway", "pln": ["(: cnet_isa_b7ea143114 (IsA drift passageway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drift is a kind of mass", "pln": ["(: cnet_isa_1f5dddd587 (IsA drift mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drift is a kind of force", "pln": ["(: cnet_isa_355d5ccca7 (IsA drift force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drift is a kind of linguistic process", "pln": ["(: cnet_isa_7b68c83abd (IsA drift linguistic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "drift ice is a kind of ice", "pln": ["(: cnet_isa_a1b45d084d (IsA drift_ice ice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drift net is a kind of fishnet", "pln": ["(: cnet_isa_a0c1c8ef8a (IsA drift_net fishnet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "driftage is a kind of deviation", "pln": ["(: cnet_isa_fc43a8b34a (IsA driftage deviation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "driftfish is a kind of butterfish", "pln": ["(: cnet_isa_3bd10fb399 (IsA driftfish butterfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drifting is a kind of wandering", "pln": ["(: cnet_isa_e195242fe6 (IsA drifting wandering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "driftwood is a kind of wood", "pln": ["(: cnet_isa_8110f7f31a (IsA driftwood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "drill is a kind of baboon", "pln": ["(: cnet_isa_d609aaefe1 (IsA drill baboon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drill is a kind of tool", "pln": ["(: cnet_isa_6743948c08 (IsA drill tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drill is a kind of training", "pln": ["(: cnet_isa_3f396bc98d (IsA drill training) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "drill master is a kind of noncommissioned officer", "pln": ["(: cnet_isa_0cb9e4d2b8 (IsA drill_master noncommissioned_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drill press is a kind of machine tool", "pln": ["(: cnet_isa_e3dd7a6844 (IsA drill_press machine_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drill rig is a kind of rig", "pln": ["(: cnet_isa_96a6e7969a (IsA drill_rig rig) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drill site is a kind of workplace", "pln": ["(: cnet_isa_e95897b427 (IsA drill_site workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drill steel is a kind of carbon steel", "pln": ["(: cnet_isa_0a59927b87 (IsA drill_steel carbon_steel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drilling is a kind of creating by removal", "pln": ["(: cnet_isa_f4e3c2966b (IsA drilling creating_by_removal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drilling bit is a kind of bit", "pln": ["(: cnet_isa_675892058f (IsA drilling_bit bit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drilling mud is a kind of lubricant", "pln": ["(: cnet_isa_07af7a8bad (IsA drilling_mud lubricant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drilling pipe is a kind of pipe", "pln": ["(: cnet_isa_31bf687941 (IsA drilling_pipe pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drilling platform is a kind of drill rig", "pln": ["(: cnet_isa_e9a5e8a14a (IsA drilling_platform drill_rig) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drimy is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_7728b7c8d6 (IsA drimy magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drink is a kind of liquid", "pln": ["(: cnet_isa_85ec8350b7 (IsA drink liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drink is a kind of intemperance", "pln": ["(: cnet_isa_d462099bbb (IsA drink intemperance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "drink is a kind of helping", "pln": ["(: cnet_isa_5eadf8a674 (IsA drink helping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "drink is a kind of body of water", "pln": ["(: cnet_isa_24a0a44f62 (IsA drink body_of_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drinker is a kind of consumer", "pln": ["(: cnet_isa_d9a78c16ec (IsA drinker consumer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drinking is a kind of consumption", "pln": ["(: cnet_isa_1ead4a0c8a (IsA drinking consumption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drinking age is a kind of age", "pln": ["(: cnet_isa_cb8d960dd9 (IsA drinking_age age) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drinking bout is a kind of drink", "pln": ["(: cnet_isa_b230bc6ec0 (IsA drinking_bout drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drinking fountain is a kind of fountain", "pln": ["(: cnet_isa_b266fbf0e4 (IsA drinking_fountain fountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drinking song is a kind of song", "pln": ["(: cnet_isa_d57187eb8a (IsA drinking_song song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drinking vessel is a kind of vessel", "pln": ["(: cnet_isa_5c5b0a7db0 (IsA drinking_vessel vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drinking water is a kind of beverage", "pln": ["(: cnet_isa_d9c8d9f0b0 (IsA drinking_water beverage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drinking water is a kind of water", "pln": ["(: cnet_isa_56ab1fc26d (IsA drinking_water water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drip is a kind of projection", "pln": ["(: cnet_isa_c280984c42 (IsA drip projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drip is a kind of flow", "pln": ["(: cnet_isa_6436845cfb (IsA drip flow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drip is a kind of sound", "pln": ["(: cnet_isa_c5b8e300f8 (IsA drip sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drip coffee is a kind of coffee", "pln": ["(: cnet_isa_b5812a3ffd (IsA drip_coffee coffee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drip culture is a kind of hydroponic", "pln": ["(: cnet_isa_32c53406a2 (IsA drip_culture hydroponic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drip feed is a kind of administration", "pln": ["(: cnet_isa_5074c3bc10 (IsA drip_feed administration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drip loop is a kind of loop", "pln": ["(: cnet_isa_7b7b1a7050 (IsA drip_loop loop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drip mat is a kind of mat", "pln": ["(: cnet_isa_b5b8e23675 (IsA drip_mat mat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drip pan is a kind of pan", "pln": ["(: cnet_isa_9f2867b644 (IsA drip_pan pan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drip pot is a kind of coffeepot", "pln": ["(: cnet_isa_1497e6db8f (IsA drip_pot coffeepot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drippiness is a kind of physical property", "pln": ["(: cnet_isa_01db770d95 (IsA drippiness physical_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dripping is a kind of flow", "pln": ["(: cnet_isa_39720f3ad1 (IsA dripping flow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dripping pan is a kind of pan", "pln": ["(: cnet_isa_b3f0487f15 (IsA dripping_pan pan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dripping is a kind of edible fat", "pln": ["(: cnet_isa_4b1cd88624 (IsA dripping edible_fat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dripstone is a kind of drip", "pln": ["(: cnet_isa_3dfe16718c (IsA dripstone drip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dripstone is a kind of calcium carbonate", "pln": ["(: cnet_isa_e18127ded4 (IsA dripstone calcium_carbonate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "drive is a kind of golf stroke", "pln": ["(: cnet_isa_2c56314a45 (IsA drive golf_stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "drive is a kind of journey", "pln": ["(: cnet_isa_8a4e68dbac (IsA drive journey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drive is a kind of propulsion", "pln": ["(: cnet_isa_a2eb01115e (IsA drive propulsion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drive is a kind of transportation", "pln": ["(: cnet_isa_aec52fc073 (IsA drive transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "drive is a kind of mechanism", "pln": ["(: cnet_isa_125f147c7b (IsA drive mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drive is a kind of road", "pln": ["(: cnet_isa_2c4e4bb714 (IsA drive road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drive is a kind of trait", "pln": ["(: cnet_isa_142bf0060c (IsA drive trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drive is a kind of device", "pln": ["(: cnet_isa_5631052d2c (IsA drive device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drive is a kind of return", "pln": ["(: cnet_isa_7f363b291d (IsA drive return) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drive is a kind of physiological state", "pln": ["(: cnet_isa_fa2f5eefae (IsA drive physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "drive by killing is a kind of shooting", "pln": ["(: cnet_isa_346e337fa1 (IsA drive_by_killing shooting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drive by shooting is a kind of shooting", "pln": ["(: cnet_isa_dd269a2cdd (IsA drive_by_shooting shooting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "drive in is a kind of facility", "pln": ["(: cnet_isa_67abb84b0a (IsA drive_in facility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drive line is a kind of mechanism", "pln": ["(: cnet_isa_ddeae31153 (IsA drive_line mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drivel is a kind of message", "pln": ["(: cnet_isa_b2f8059529 (IsA drivel message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "driveller is a kind of speaker", "pln": ["(: cnet_isa_0f4d27ba34 (IsA driveller speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "driven well is a kind of well", "pln": ["(: cnet_isa_066be2a890 (IsA driven_well well) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "driver s license is a kind of license", "pln": ["(: cnet_isa_d4f69402fa (IsA driver_s_license license) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "driver is a kind of wood", "pln": ["(: cnet_isa_a58b74cd33 (IsA driver wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "driver is a kind of utility program", "pln": ["(: cnet_isa_fed48fe29e (IsA driver utility_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "driver is a kind of golfer", "pln": ["(: cnet_isa_33cb5a2a01 (IsA driver golfer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "driver is a kind of operator", "pln": ["(: cnet_isa_3cfc1581e8 (IsA driver operator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "driver is a kind of worker", "pln": ["(: cnet_isa_2fc06695c5 (IsA driver worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "driveshaft is a kind of rotating shaft", "pln": ["(: cnet_isa_ca151c8bd9 (IsA driveshaft rotating_shaft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "driveway is a kind of road", "pln": ["(: cnet_isa_35df02c70e (IsA driveway road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "driving is a kind of steering", "pln": ["(: cnet_isa_c1c0bc64e8 (IsA driving steering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "driving is a kind of travel", "pln": ["(: cnet_isa_e7376ff2b8 (IsA driving travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "driving belt is a kind of belt", "pln": ["(: cnet_isa_97783f7e78 (IsA driving_belt belt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "driving car is a kind of dangerous activity", "pln": ["(: cnet_isa_1c4578ba44 (IsA driving_car dangerous_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "driving iron is a kind of iron", "pln": ["(: cnet_isa_8cc448faba (IsA driving_iron iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "driving school is a kind of school", "pln": ["(: cnet_isa_c9dcd32f2e (IsA driving_school school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "driving wheel is a kind of wheel", "pln": ["(: cnet_isa_704b055045 (IsA driving_wheel wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drizzle is a kind of rain", "pln": ["(: cnet_isa_d5ce7bab2c (IsA drizzle rain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drogue is a kind of parachute", "pln": ["(: cnet_isa_d8710a2218 (IsA drogue parachute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "drogue is a kind of target", "pln": ["(: cnet_isa_a9a2e07101 (IsA drogue target) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drogue parachute is a kind of parachute", "pln": ["(: cnet_isa_0cba8ce464 (IsA drogue_parachute parachute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drollery is a kind of jest", "pln": ["(: cnet_isa_989a552746 (IsA drollery jest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drollery is a kind of fun", "pln": ["(: cnet_isa_4022143d9f (IsA drollery fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dromaeosaur is a kind of maniraptor", "pln": ["(: cnet_isa_eb29eec6b8 (IsA dromaeosaur maniraptor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dromaeosauridae is a kind of reptile family", "pln": ["(: cnet_isa_4a294869e7 (IsA dromaeosauridae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dromaius is a kind of bird genus", "pln": ["(: cnet_isa_136f2dfdef (IsA dromaius bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dronabinol is a kind of psychoactive drug", "pln": ["(: cnet_isa_3363b9bef0 (IsA dronabinol psychoactive_drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "drone is a kind of bee", "pln": ["(: cnet_isa_07437d0f97 (IsA drone bee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drone is a kind of heavier than air craft", "pln": ["(: cnet_isa_bc83c3bdcd (IsA drone heavier_than_air_craft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drone is a kind of pipe", "pln": ["(: cnet_isa_6ac8ea8e39 (IsA drone pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drool is a kind of saliva", "pln": ["(: cnet_isa_991fd0e120 (IsA drool saliva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drop is a kind of descent", "pln": ["(: cnet_isa_7d15621b3e (IsA drop descent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drop is a kind of depository", "pln": ["(: cnet_isa_cb40ca10ff (IsA drop depository) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drop is a kind of decrease", "pln": ["(: cnet_isa_33cf9c0c48 (IsA drop decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drop is a kind of hiding place", "pln": ["(: cnet_isa_6b531ec0cd (IsA drop hiding_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drop is a kind of gravitation", "pln": ["(: cnet_isa_052b412a20 (IsA drop gravitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drop is a kind of small indefinite quantity", "pln": ["(: cnet_isa_36b20e5bff (IsA drop small_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drop is a kind of sphere", "pln": ["(: cnet_isa_26e36b59dd (IsA drop sphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drop arch is a kind of pointed arch", "pln": ["(: cnet_isa_6e0994336a (IsA drop_arch pointed_arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drop biscuit is a kind of biscuit", "pln": ["(: cnet_isa_2b62397f66 (IsA drop_biscuit biscuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drop cloth is a kind of piece of cloth", "pln": ["(: cnet_isa_a0e8d40308 (IsA drop_cloth piece_of_cloth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drop curtain is a kind of curtain", "pln": ["(: cnet_isa_ec50d0fccc (IsA drop_curtain curtain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drop down menu is a kind of menu", "pln": ["(: cnet_isa_98e9476ef0 (IsA drop_down_menu menu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drop forge is a kind of device", "pln": ["(: cnet_isa_88aad3ace6 (IsA drop_forge device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drop leaf is a kind of leaf", "pln": ["(: cnet_isa_09b1f68b01 (IsA drop_leaf leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drop leaf table is a kind of table", "pln": ["(: cnet_isa_9e93d1cf84 (IsA drop_leaf_table table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drop off charge is a kind of fee", "pln": ["(: cnet_isa_85ebb32d5f (IsA drop_off_charge fee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drop scone is a kind of scone", "pln": ["(: cnet_isa_73bf0e87c5 (IsA drop_scone scone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drop shot is a kind of return", "pln": ["(: cnet_isa_3e4851bf32 (IsA drop_shot return) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drop zone is a kind of zone", "pln": ["(: cnet_isa_5b7fe8a017 (IsA drop_zone zone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dropkick is a kind of kick", "pln": ["(: cnet_isa_bf914830cc (IsA dropkick kick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dropkicker is a kind of kicker", "pln": ["(: cnet_isa_b17b1c67a8 (IsA dropkicker kicker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "droplet is a kind of drop", "pln": ["(: cnet_isa_9f24a17f58 (IsA droplet drop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dropline is a kind of headline", "pln": ["(: cnet_isa_218af1e2cc (IsA dropline headline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dropout is a kind of individualist", "pln": ["(: cnet_isa_e4b2819f0e (IsA dropout individualist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dropout is a kind of quitter", "pln": ["(: cnet_isa_5dee30045d (IsA dropout quitter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dropper is a kind of pipet", "pln": ["(: cnet_isa_b29086e53b (IsA dropper pipet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dropping is a kind of fecal matter", "pln": ["(: cnet_isa_1e8093a7cc (IsA dropping fecal_matter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dropseed is a kind of grass", "pln": ["(: cnet_isa_1eb3355e1c (IsA dropseed grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "drosera is a kind of dicot genus", "pln": ["(: cnet_isa_f761f17163 (IsA drosera dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "droseraceae is a kind of dicot family", "pln": ["(: cnet_isa_d48eaa9be7 (IsA droseraceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "droshky is a kind of carriage", "pln": ["(: cnet_isa_242fa86ed1 (IsA droshky carriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drosophila is a kind of fruit fly", "pln": ["(: cnet_isa_3f5edb54b2 (IsA drosophila fruit_fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drosophilidae is a kind of arthropod family", "pln": ["(: cnet_isa_605aff02ac (IsA drosophilidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drosophyllum is a kind of dicot genus", "pln": ["(: cnet_isa_1df416e38b (IsA drosophyllum dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drosophyllum lusitanicum is a kind of carnivorous plant", "pln": ["(: cnet_isa_09f2a9b1ab (IsA drosophyllum_lusitanicum carnivorous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drought is a kind of dryness", "pln": ["(: cnet_isa_0bfd4e3996 (IsA drought dryness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drought is a kind of time period", "pln": ["(: cnet_isa_7c63e8a1f3 (IsA drought time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drove is a kind of chisel", "pln": ["(: cnet_isa_983740d348 (IsA drove chisel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drove is a kind of animal group", "pln": ["(: cnet_isa_7bdb86ac43 (IsA drove animal_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drove is a kind of crowd", "pln": ["(: cnet_isa_3066e1860a (IsA drove crowd) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drudge is a kind of laborer", "pln": ["(: cnet_isa_23a12e9eb4 (IsA drudge laborer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drudgery is a kind of labor", "pln": ["(: cnet_isa_edbf04e569 (IsA drudgery labor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drug is a kind of chemical", "pln": ["(: cnet_isa_907345fef0 (IsA drug chemical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drug is a kind of agent", "pln": ["(: cnet_isa_8e7ef1e57b (IsA drug agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drug addict is a kind of addict", "pln": ["(: cnet_isa_0e6199b281 (IsA drug_addict addict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drug addiction is a kind of addiction", "pln": ["(: cnet_isa_828a51f071 (IsA drug_addiction addiction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drug baron is a kind of boss", "pln": ["(: cnet_isa_f281977ea4 (IsA drug_baron boss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drug bust is a kind of impoundment", "pln": ["(: cnet_isa_7303a63be7 (IsA drug_bust impoundment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drug cartel is a kind of trust", "pln": ["(: cnet_isa_28a2190b7e (IsA drug_cartel trust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drug cocktail is a kind of medicine", "pln": ["(: cnet_isa_43a7bbfb1b (IsA drug_cocktail medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drug company is a kind of company", "pln": ["(: cnet_isa_c62508a943 (IsA drug_company company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drug enforcement administration is a kind of law enforcement agency", "pln": ["(: cnet_isa_de0a704c85 (IsA drug_enforcement_administration law_enforcement_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drug of abuse is a kind of drug", "pln": ["(: cnet_isa_3e8e9b97c0 (IsA drug_of_abuse drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drug traffic is a kind of traffic", "pln": ["(: cnet_isa_712cfee2b9 (IsA drug_traffic traffic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drug use is a kind of problem", "pln": ["(: cnet_isa_fc6efc72e5 (IsA drug_use problem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drug user is a kind of person", "pln": ["(: cnet_isa_1c0847180e (IsA drug_user person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "drug war is a kind of war", "pln": ["(: cnet_isa_8e9387843c (IsA drug_war war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drugget is a kind of rug", "pln": ["(: cnet_isa_97ce4566f8 (IsA drugget rug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drug is a kind of substance", "pln": ["(: cnet_isa_b60e3ce904 (IsA drug substance) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drugstore is a kind of shop", "pln": ["(: cnet_isa_86830eeb98 (IsA drugstore shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "druid is a kind of priest", "pln": ["(: cnet_isa_321a50d442 (IsA druid priest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "druidism is a kind of paganism", "pln": ["(: cnet_isa_583d8f3790 (IsA druidism paganism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drum is a kind of percussion instrument", "pln": ["(: cnet_isa_9f316e1876 (IsA drum percussion_instrument) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drum is a kind of sciaenid fish", "pln": ["(: cnet_isa_96a995d4df (IsA drum sciaenid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drum is a kind of vessel", "pln": ["(: cnet_isa_84710eafb3 (IsA drum vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drum is a kind of sound", "pln": ["(: cnet_isa_f162af85bc (IsA drum sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drum brake is a kind of hydraulic brake", "pln": ["(: cnet_isa_cba5eb9396 (IsA drum_brake hydraulic_brake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "drum major is a kind of conductor", "pln": ["(: cnet_isa_25519c826d (IsA drum_major conductor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drum majorette is a kind of baton twirler", "pln": ["(: cnet_isa_b2c323cbef (IsA drum_majorette baton_twirler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drum majorette is a kind of conductor", "pln": ["(: cnet_isa_fcbc6bd290 (IsA drum_majorette conductor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drum printer is a kind of line printer", "pln": ["(: cnet_isa_2f1f54f291 (IsA drum_printer line_printer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drum sander is a kind of power tool", "pln": ["(: cnet_isa_616c30451a (IsA drum_sander power_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drumbeat is a kind of advocacy", "pln": ["(: cnet_isa_fa5dca1eb0 (IsA drumbeat advocacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drumbeat is a kind of signal", "pln": ["(: cnet_isa_0bb6b61a0b (IsA drumbeat signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drumhead is a kind of membrane", "pln": ["(: cnet_isa_795e27eed8 (IsA drumhead membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "drumhead court martial is a kind of court martial", "pln": ["(: cnet_isa_d81cad9349 (IsA drumhead_court_martial court_martial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drumlin is a kind of drift", "pln": ["(: cnet_isa_02b0a8bf71 (IsA drumlin drift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drummer is a kind of percussionist", "pln": ["(: cnet_isa_d2f88e8b3c (IsA drummer percussionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "drumming is a kind of percussion", "pln": ["(: cnet_isa_a1253cf463 (IsA drumming percussion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drumstick is a kind of stick", "pln": ["(: cnet_isa_1cc7fd5870 (IsA drumstick stick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drumstick is a kind of helping", "pln": ["(: cnet_isa_1de01b8b30 (IsA drumstick helping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drunk is a kind of drinker", "pln": ["(: cnet_isa_5c98605dbc (IsA drunk drinker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drunk and disorderly is a kind of drunk", "pln": ["(: cnet_isa_eed9dddec2 (IsA drunk_and_disorderly drunk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drunkard is a kind of drinker", "pln": ["(: cnet_isa_5c72749c57 (IsA drunkard drinker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drunken reveler is a kind of drinker", "pln": ["(: cnet_isa_b745e51faa (IsA drunken_reveler drinker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drunkenness is a kind of temporary state", "pln": ["(: cnet_isa_b7bb0d87e9 (IsA drunkenness temporary_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drupe is a kind of fruit", "pln": ["(: cnet_isa_b60d79c990 (IsA drupe fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drupelet is a kind of drupe", "pln": ["(: cnet_isa_8588e095bd (IsA drupelet drupe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "druse is a kind of disciple", "pln": ["(: cnet_isa_bccd027269 (IsA druse disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drusen is a kind of eye disease", "pln": ["(: cnet_isa_ec8d02f216 (IsA drusen eye_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dry is a kind of reformer", "pln": ["(: cnet_isa_58b09bee33 (IsA dry reformer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dry battery is a kind of voltaic battery", "pln": ["(: cnet_isa_754dacbab0 (IsA dry_battery voltaic_battery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dry bulb thermometer is a kind of thermometer", "pln": ["(: cnet_isa_e0fb3f0b2a (IsA dry_bulb_thermometer thermometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dry cell is a kind of leclanche cell", "pln": ["(: cnet_isa_4bfb17ce50 (IsA dry_cell leclanche_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dry cleaning is a kind of cleaning", "pln": ["(: cnet_isa_6ebd2dd577 (IsA dry_cleaning cleaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dry dock is a kind of dock", "pln": ["(: cnet_isa_89e311fa6c (IsA dry_dock dock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dry fly is a kind of fly", "pln": ["(: cnet_isa_706618b87f (IsA dry_fly fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dry gangrene is a kind of gangrene", "pln": ["(: cnet_isa_21020f2bab (IsA dry_gangrene gangrene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dry gulching is a kind of ambush", "pln": ["(: cnet_isa_c89f86b1c2 (IsA dry_gulching ambush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dry gulching is a kind of murder", "pln": ["(: cnet_isa_3876988854 (IsA dry_gulching murder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dry ice is a kind of solid", "pln": ["(: cnet_isa_81968a785f (IsA dry_ice solid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dry kiln is a kind of kiln", "pln": ["(: cnet_isa_91c11500d2 (IsA dry_kiln kiln) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dry masonry is a kind of masonry", "pln": ["(: cnet_isa_825a3abb36 (IsA dry_masonry masonry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dry nurse is a kind of nanny", "pln": ["(: cnet_isa_c023ff6286 (IsA dry_nurse nanny) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dry plate process is a kind of photography", "pln": ["(: cnet_isa_3751d13da3 (IsA dry_plate_process photography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dry point is a kind of engraving", "pln": ["(: cnet_isa_dc3edbbae3 (IsA dry_point engraving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dry point is a kind of needle", "pln": ["(: cnet_isa_1b83c2ff40 (IsA dry_point needle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dry rot is a kind of fungus", "pln": ["(: cnet_isa_03e249902a (IsA dry_rot fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dry rot is a kind of plant disease", "pln": ["(: cnet_isa_55e17c06a9 (IsA dry_rot plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dry season is a kind of season", "pln": ["(: cnet_isa_002f6d63a9 (IsA dry_season season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dry unit is a kind of volume unit", "pln": ["(: cnet_isa_d80f8f2b42 (IsA dry_unit volume_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dry vermouth is a kind of vermouth", "pln": ["(: cnet_isa_fab53e0dc5 (IsA dry_vermouth vermouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dry wall is a kind of dry masonry", "pln": ["(: cnet_isa_cec111d8cf (IsA dry_wall dry_masonry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dry wall is a kind of stone wall", "pln": ["(: cnet_isa_788708b4c3 (IsA dry_wall stone_wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dry walling is a kind of construction", "pln": ["(: cnet_isa_c3fdc482c3 (IsA dry_walling construction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dry wood termite is a kind of termite", "pln": ["(: cnet_isa_a4b83ae2f4 (IsA dry_wood_termite termite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dryad is a kind of nymph", "pln": ["(: cnet_isa_9a404acfd9 (IsA dryad nymph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dryadella is a kind of monocot genus", "pln": ["(: cnet_isa_2ecd9e2bac (IsA dryadella monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drya is a kind of rosid dicot genus", "pln": ["(: cnet_isa_c610892b09 (IsA drya rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dryer is a kind of appliance", "pln": ["(: cnet_isa_0658b78544 (IsA dryer appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drygood is a kind of commodity", "pln": ["(: cnet_isa_cece176464 (IsA drygood commodity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drying oil is a kind of animal oil", "pln": ["(: cnet_isa_004b4ae6c4 (IsA drying_oil animal_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drying oil is a kind of vegetable oil", "pln": ["(: cnet_isa_037b977b90 (IsA drying_oil vegetable_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dryland blueberry is a kind of blueberry", "pln": ["(: cnet_isa_f45cd19f24 (IsA dryland_blueberry blueberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drymarchon is a kind of reptile genus", "pln": ["(: cnet_isa_fb803b3b7b (IsA drymarchon reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drymoglossum is a kind of fern genus", "pln": ["(: cnet_isa_a48173488b (IsA drymoglossum fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drynaria is a kind of fern genus", "pln": ["(: cnet_isa_c93d475a49 (IsA drynaria fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dryness is a kind of condition", "pln": ["(: cnet_isa_9784d240cd (IsA dryness condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dryopithecine is a kind of hominid", "pln": ["(: cnet_isa_d192a8ede9 (IsA dryopithecine hominid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dryopithecus is a kind of mammal genus", "pln": ["(: cnet_isa_8e0e27d207 (IsA dryopithecus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dryopteridaceae is a kind of fern family", "pln": ["(: cnet_isa_0e505105a1 (IsA dryopteridaceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dryopteris is a kind of fern genus", "pln": ["(: cnet_isa_bf5dcfabbc (IsA dryopteris fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "drypis is a kind of herb", "pln": ["(: cnet_isa_f996b4cbd0 (IsA drypis herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dscdna is a kind of complementary dna", "pln": ["(: cnet_isa_f29acd4dab (IsA dscdna complementary_dna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dual scan display is a kind of passive matrix display", "pln": ["(: cnet_isa_efda829ca4 (IsA dual_scan_display passive_matrix_display) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dualism is a kind of doctrine", "pln": ["(: cnet_isa_9847f17084 (IsA dualism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dualist is a kind of disciple", "pln": ["(: cnet_isa_6752398fcd (IsA dualist disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duality is a kind of exchangeability", "pln": ["(: cnet_isa_55f87ac875 (IsA duality exchangeability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duality is a kind of property", "pln": ["(: cnet_isa_efba6f3cc1 (IsA duality property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dub is a kind of sound", "pln": ["(: cnet_isa_1784d8e60b (IsA dub sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dubbin is a kind of tallow", "pln": ["(: cnet_isa_4eca26ee7d (IsA dubbin tallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dubbing is a kind of soundtrack", "pln": ["(: cnet_isa_c65e12b934 (IsA dubbing soundtrack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dubliner is a kind of irelander", "pln": ["(: cnet_isa_a73f7a1518 (IsA dubliner irelander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dubonnet is a kind of wine", "pln": ["(: cnet_isa_dfa41b0dcf (IsA dubonnet wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ducat is a kind of coin", "pln": ["(: cnet_isa_4610483675 (IsA ducat coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duce is a kind of leader", "pln": ["(: cnet_isa_353b376d5d (IsA duce leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duchenne s muscular dystrophy is a kind of muscular dystrophy", "pln": ["(: cnet_isa_b2dabe046a (IsA duchenne_s_muscular_dystrophy muscular_dystrophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duchess is a kind of noblewoman", "pln": ["(: cnet_isa_7416c260dd (IsA duchess noblewoman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duchy is a kind of domain", "pln": ["(: cnet_isa_715f20c6a0 (IsA duchy domain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duck is a kind of carbon based life form", "pln": ["(: cnet_isa_d71142ff71 (IsA duck carbon_based_life_form) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duck is a kind of anseriform bird", "pln": ["(: cnet_isa_0026ceed1d (IsA duck anseriform_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duck is a kind of fabric", "pln": ["(: cnet_isa_583837a479 (IsA duck fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duck is a kind of score", "pln": ["(: cnet_isa_d598a560c4 (IsA duck score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duck is a kind of poultry", "pln": ["(: cnet_isa_2c8f5ea5c4 (IsA duck poultry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duck down is a kind of down", "pln": ["(: cnet_isa_406d998b8b (IsA duck_down down) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duck hunter is a kind of hunter", "pln": ["(: cnet_isa_818df4e046 (IsA duck_hunter hunter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duck pate is a kind of pate", "pln": ["(: cnet_isa_0089577917 (IsA duck_pate pate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duck sauce is a kind of condiment", "pln": ["(: cnet_isa_4f711921de (IsA duck_sauce condiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duckboard is a kind of boardwalk", "pln": ["(: cnet_isa_d8ace35bbe (IsA duckboard boardwalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ducking is a kind of hunt", "pln": ["(: cnet_isa_13b6f960ca (IsA ducking hunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duckling is a kind of duck", "pln": ["(: cnet_isa_3021a9c636 (IsA duckling duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duckpin is a kind of bowling pin", "pln": ["(: cnet_isa_87295c3402 (IsA duckpin bowling_pin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duckpin is a kind of bowling", "pln": ["(: cnet_isa_ae5ae1b8e2 (IsA duckpin bowling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duck and drake is a kind of game", "pln": ["(: cnet_isa_23a8f33bf7 (IsA duck_and_drake game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duckweed is a kind of aquatic plant", "pln": ["(: cnet_isa_c5ac40f77a (IsA duckweed aquatic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duct is a kind of conduit", "pln": ["(: cnet_isa_46c4da3efe (IsA duct conduit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duct is a kind of passage", "pln": ["(: cnet_isa_5e5d4d7d0e (IsA duct passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duct is a kind of plant part", "pln": ["(: cnet_isa_6b1954a77f (IsA duct plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duct tape is a kind of adhesive tape", "pln": ["(: cnet_isa_ebdbfdbb16 (IsA duct_tape adhesive_tape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ductility is a kind of malleability", "pln": ["(: cnet_isa_46b6ce03bf (IsA ductility malleability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ductule is a kind of duct", "pln": ["(: cnet_isa_8c313602a3 (IsA ductule duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ductus arteriosus is a kind of blood vessel", "pln": ["(: cnet_isa_077c40d0fd (IsA ductus_arteriosus blood_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dude ranch is a kind of resort", "pln": ["(: cnet_isa_f00e512c5b (IsA dude_ranch resort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dudeen is a kind of clay pipe", "pln": ["(: cnet_isa_8aa38b4667 (IsA dudeen clay_pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dudgeon is a kind of indignation", "pln": ["(: cnet_isa_2e9120628e (IsA dudgeon indignation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "due is a kind of right", "pln": ["(: cnet_isa_e42e41a0c4 (IsA due right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "due is a kind of fixed charge", "pln": ["(: cnet_isa_ec0ece4c49 (IsA due fixed_charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "due care is a kind of care", "pln": ["(: cnet_isa_b55940c301 (IsA due_care care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "due process is a kind of group action", "pln": ["(: cnet_isa_d738002ff5 (IsA due_process group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duel is a kind of fight", "pln": ["(: cnet_isa_6032ca7baa (IsA duel fight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duel is a kind of struggle", "pln": ["(: cnet_isa_fe67311c4e (IsA duel struggle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dueler is a kind of adversary", "pln": ["(: cnet_isa_ec28384b0f (IsA dueler adversary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duenna is a kind of chaperon", "pln": ["(: cnet_isa_dba42e0232 (IsA duenna chaperon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duet is a kind of musical composition", "pln": ["(: cnet_isa_2fba866a30 (IsA duet musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duet is a kind of musical organization", "pln": ["(: cnet_isa_1c2385bebf (IsA duet musical_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "duff is a kind of pudding", "pln": ["(: cnet_isa_f0c272dbb2 (IsA duff pudding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duffel is a kind of fabric", "pln": ["(: cnet_isa_d361644c04 (IsA duffel fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duffel bag is a kind of drawstring bag", "pln": ["(: cnet_isa_f679ae05c7 (IsA duffel_bag drawstring_bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duffel coat is a kind of coat", "pln": ["(: cnet_isa_c930488f28 (IsA duffel_coat coat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duffer is a kind of clumsy person", "pln": ["(: cnet_isa_cd34e94e4e (IsA duffer clumsy_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dug is a kind of mammary gland", "pln": ["(: cnet_isa_df5dc82c82 (IsA dug mammary_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dugong is a kind of sea cow", "pln": ["(: cnet_isa_80e42e5077 (IsA dugong sea_cow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dugongidae is a kind of mammal family", "pln": ["(: cnet_isa_37dccb5473 (IsA dugongidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dugout is a kind of shelter", "pln": ["(: cnet_isa_550b432e31 (IsA dugout shelter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dugout canoe is a kind of canoe", "pln": ["(: cnet_isa_7d25ebe943 (IsA dugout_canoe canoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "duke is a kind of nobleman", "pln": ["(: cnet_isa_537d42df6c (IsA duke nobleman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duke is a kind of peer", "pln": ["(: cnet_isa_372d28d909 (IsA duke peer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dukedom is a kind of rank", "pln": ["(: cnet_isa_a86c2ab098 (IsA dukedom rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dulciana is a kind of organ stop", "pln": ["(: cnet_isa_655907b794 (IsA dulciana organ_stop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dulcimer is a kind of stringed instrument", "pln": ["(: cnet_isa_9a9d3179be (IsA dulcimer stringed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dulcimer is a kind of zither", "pln": ["(: cnet_isa_08ce13f00e (IsA dulcimer zither) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dullness is a kind of shape", "pln": ["(: cnet_isa_c5cb8fa570 (IsA dullness shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dullness is a kind of unfeelingness", "pln": ["(: cnet_isa_b0e490aafc (IsA dullness unfeelingness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dullness is a kind of uninterestingness", "pln": ["(: cnet_isa_475d871430 (IsA dullness uninterestingness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dullness is a kind of visual property", "pln": ["(: cnet_isa_55531d1051 (IsA dullness visual_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dullness is a kind of stupidity", "pln": ["(: cnet_isa_09da0677dc (IsA dullness stupidity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dulse is a kind of red algae", "pln": ["(: cnet_isa_95af4b8659 (IsA dulse red_algae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duma is a kind of legislature", "pln": ["(: cnet_isa_6d25c5d869 (IsA duma legislature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dumb bomb is a kind of bomb", "pln": ["(: cnet_isa_5a20549ed8 (IsA dumb_bomb bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dumb cane is a kind of arum", "pln": ["(: cnet_isa_7503595acc (IsA dumb_cane arum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dumbbell is a kind of item", "pln": ["(: cnet_isa_92e2742622 (IsA dumbbell item) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dumbbell is a kind of weight", "pln": ["(: cnet_isa_ce5e69080a (IsA dumbbell weight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dumbbell is a kind of simpleton", "pln": ["(: cnet_isa_65039aeb3e (IsA dumbbell simpleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dumbwaiter is a kind of elevator", "pln": ["(: cnet_isa_04855089ee (IsA dumbwaiter elevator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dumdum is a kind of bullet", "pln": ["(: cnet_isa_b347bbaf70 (IsA dumdum bullet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dumetella is a kind of bird genus", "pln": ["(: cnet_isa_78b3efe154 (IsA dumetella bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dummy is a kind of figure", "pln": ["(: cnet_isa_91a3880815 (IsA dummy figure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dummy is a kind of mute", "pln": ["(: cnet_isa_2fa6af5791 (IsA dummy mute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dummy whist is a kind of whist", "pln": ["(: cnet_isa_a73de5b2ff (IsA dummy_whist whist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dump is a kind of storehouse", "pln": ["(: cnet_isa_057f5ad14e (IsA dump storehouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dump is a kind of copy", "pln": ["(: cnet_isa_85fb8b4d09 (IsA dump copy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dump is a kind of site", "pln": ["(: cnet_isa_a04d6eadc0 (IsA dump site) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dump routine is a kind of utility routine", "pln": ["(: cnet_isa_ea231a9b93 (IsA dump_routine utility_routine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dump truck is a kind of truck", "pln": ["(: cnet_isa_305ec06dc1 (IsA dump_truck truck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dumpcart is a kind of cart", "pln": ["(: cnet_isa_a63672843e (IsA dumpcart cart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dumpiness is a kind of physique", "pln": ["(: cnet_isa_062ec8bb61 (IsA dumpiness physique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dumping is a kind of selling", "pln": ["(: cnet_isa_87b5480c24 (IsA dumping selling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dumpling is a kind of dessert", "pln": ["(: cnet_isa_872204c2f0 (IsA dumpling dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dumpling is a kind of pasta", "pln": ["(: cnet_isa_514dc130bd (IsA dumpling pasta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dump is a kind of low spirit", "pln": ["(: cnet_isa_b45bebf492 (IsA dump low_spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dumpy level is a kind of surveyor s level", "pln": ["(: cnet_isa_e18b352277 (IsA dumpy_level surveyor_s_level) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dun is a kind of saddle horse", "pln": ["(: cnet_isa_5697cefc0b (IsA dun saddle_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dun is a kind of light brown", "pln": ["(: cnet_isa_33f7ad0668 (IsA dun light_brown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dunce is a kind of stupid", "pln": ["(: cnet_isa_86c4c478f9 (IsA dunce stupid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dunce cap is a kind of hat", "pln": ["(: cnet_isa_e0bf970e44 (IsA dunce_cap hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dundathu pine is a kind of kauri pine", "pln": ["(: cnet_isa_3baf6919e4 (IsA dundathu_pine kauri_pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dune is a kind of ridge", "pln": ["(: cnet_isa_c317965fee (IsA dune ridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dune buggy is a kind of recreational vehicle", "pln": ["(: cnet_isa_0d4750e9cd (IsA dune_buggy recreational_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dune cycling is a kind of cycling", "pln": ["(: cnet_isa_5c201799ad (IsA dune_cycling cycling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dung beetle is a kind of scarabaeid beetle", "pln": ["(: cnet_isa_5221842603 (IsA dung_beetle scarabaeid_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dungeness crab is a kind of crab", "pln": ["(: cnet_isa_a8ca9839fe (IsA dungeness_crab crab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dungeon is a kind of cell", "pln": ["(: cnet_isa_895ff0955f (IsA dungeon cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dunghill is a kind of pile", "pln": ["(: cnet_isa_1bab5d8e8c (IsA dunghill pile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dunghill is a kind of unsanitariness", "pln": ["(: cnet_isa_2b90dbf30f (IsA dunghill unsanitariness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dunk is a kind of basketball shot", "pln": ["(: cnet_isa_974c51de1a (IsA dunk basketball_shot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dunkard is a kind of baptist", "pln": ["(: cnet_isa_c50d4ff7c1 (IsA dunkard baptist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dunker is a kind of basketball player", "pln": ["(: cnet_isa_a879dd85e6 (IsA dunker basketball_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dunker is a kind of eater", "pln": ["(: cnet_isa_524b355866 (IsA dunker eater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dunkirk is a kind of crisis", "pln": ["(: cnet_isa_fe5c8663b2 (IsA dunkirk crisis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duodecimal digit is a kind of digit", "pln": ["(: cnet_isa_0fd052b02b (IsA duodecimal_digit digit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duodecimal notation is a kind of mathematical notation", "pln": ["(: cnet_isa_ab296c2806 (IsA duodecimal_notation mathematical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duodecimal number system is a kind of positional notation", "pln": ["(: cnet_isa_e96d21332a (IsA duodecimal_number_system positional_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duodenal ulcer is a kind of peptic ulcer", "pln": ["(: cnet_isa_7d19852bf6 (IsA duodenal_ulcer peptic_ulcer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duodenum is a kind of small intestine", "pln": ["(: cnet_isa_c41ed32dc1 (IsA duodenum small_intestine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duologue is a kind of dialogue", "pln": ["(: cnet_isa_cfd4bcddf6 (IsA duologue dialogue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duple time is a kind of musical time", "pln": ["(: cnet_isa_146012f96d (IsA duple_time musical_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duplex is a kind of apartment building", "pln": ["(: cnet_isa_f6f549e0cb (IsA duplex apartment_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duplex is a kind of building", "pln": ["(: cnet_isa_2a521e8c8e (IsA duplex building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duplex is a kind of housing", "pln": ["(: cnet_isa_30a633cd63 (IsA duplex housing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duplex apartment is a kind of apartment", "pln": ["(: cnet_isa_71a6227f19 (IsA duplex_apartment apartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duplex house is a kind of house", "pln": ["(: cnet_isa_0e338bec82 (IsA duplex_house house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duplicate is a kind of copy", "pln": ["(: cnet_isa_b86279c7b5 (IsA duplicate copy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "duplication is a kind of copying", "pln": ["(: cnet_isa_fd8a375986 (IsA duplication copying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duplicator is a kind of apparatus", "pln": ["(: cnet_isa_2a8349f1b8 (IsA duplicator apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duplicidentata is a kind of lagomorph", "pln": ["(: cnet_isa_bec667024d (IsA duplicidentata lagomorph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "duplicity is a kind of deception", "pln": ["(: cnet_isa_27c3d45879 (IsA duplicity deception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dura mater is a kind of meninx", "pln": ["(: cnet_isa_4a9d3ba973 (IsA dura_mater meninx) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "durable is a kind of consumer good", "pln": ["(: cnet_isa_b4f569a7d1 (IsA durable consumer_good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "durance is a kind of captivity", "pln": ["(: cnet_isa_9821d7cad7 (IsA durance captivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duration is a kind of temporal property", "pln": ["(: cnet_isa_d5c10bd792 (IsA duration temporal_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duration is a kind of time", "pln": ["(: cnet_isa_137d304e62 (IsA duration time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duration is a kind of time period", "pln": ["(: cnet_isa_7cd845789c (IsA duration time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "durative is a kind of aspect", "pln": ["(: cnet_isa_90bc006c63 (IsA durative aspect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "durbar is a kind of room", "pln": ["(: cnet_isa_cc26f93a71 (IsA durbar room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "duress is a kind of force", "pln": ["(: cnet_isa_c040501ede (IsA duress force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "durham is a kind of beef", "pln": ["(: cnet_isa_0fe58654cc (IsA durham beef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "durian is a kind of edible fruit", "pln": ["(: cnet_isa_1a8b8b1fb0 (IsA durian edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "durian is a kind of fruit tree", "pln": ["(: cnet_isa_1eea0860fa (IsA durian fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "durio is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_b02e256450 (IsA durio dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "durmast is a kind of white oak", "pln": ["(: cnet_isa_705776986c (IsA durmast white_oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "durra is a kind of grain sorghum", "pln": ["(: cnet_isa_f572b17702 (IsA durra grain_sorghum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "durum is a kind of wheat", "pln": ["(: cnet_isa_3d55d104c1 (IsA durum wheat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dusicyon is a kind of mammal genus", "pln": ["(: cnet_isa_a8d149054e (IsA dusicyon mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dusky footed wood rat is a kind of wood rat", "pln": ["(: cnet_isa_2e9928e707 (IsA dusky_footed_wood_rat wood_rat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dusky footed woodrat is a kind of packrat", "pln": ["(: cnet_isa_8a46065dd5 (IsA dusky_footed_woodrat packrat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dusky salamander is a kind of salamander", "pln": ["(: cnet_isa_262b7d773a (IsA dusky_salamander salamander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dusky shark is a kind of requiem shark", "pln": ["(: cnet_isa_7e1ac14e7f (IsA dusky_shark requiem_shark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dust is a kind of material", "pln": ["(: cnet_isa_5b004e7b30 (IsA dust material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dust is a kind of particulate", "pln": ["(: cnet_isa_8a8a5747e7 (IsA dust particulate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dust bag is a kind of bag", "pln": ["(: cnet_isa_61be518f8e (IsA dust_bag bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dust bowl is a kind of geographical area", "pln": ["(: cnet_isa_4b38499484 (IsA dust_bowl geographical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dust cloud is a kind of cloud", "pln": ["(: cnet_isa_2e12ed5207 (IsA dust_cloud cloud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dust contamination is a kind of contamination", "pln": ["(: cnet_isa_a9afc192f6 (IsA dust_contamination contamination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dust cover is a kind of piece of cloth", "pln": ["(: cnet_isa_742d8490c9 (IsA dust_cover piece_of_cloth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dust cover is a kind of protective covering", "pln": ["(: cnet_isa_9e2f456bc2 (IsA dust_cover protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dust devil is a kind of whirlwind", "pln": ["(: cnet_isa_62e298242f (IsA dust_devil whirlwind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dust storm is a kind of windstorm", "pln": ["(: cnet_isa_dc6928e9ef (IsA dust_storm windstorm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dustcloth is a kind of piece of cloth", "pln": ["(: cnet_isa_29e5ca85c3 (IsA dustcloth piece_of_cloth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duster is a kind of pitch", "pln": ["(: cnet_isa_478f1141df (IsA duster pitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duster is a kind of coverall", "pln": ["(: cnet_isa_52f74dbb66 (IsA duster coverall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dustiness is a kind of dirtiness", "pln": ["(: cnet_isa_04514a1d24 (IsA dustiness dirtiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dustmop is a kind of swab", "pln": ["(: cnet_isa_6e17b39f3d (IsA dustmop swab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dustpan is a kind of receptacle", "pln": ["(: cnet_isa_8746252e0b (IsA dustpan receptacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dustpan is a kind of containerful", "pln": ["(: cnet_isa_db903458fc (IsA dustpan containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dusty miller is a kind of centaury", "pln": ["(: cnet_isa_178cdf9b96 (IsA dusty_miller centaury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dusty miller is a kind of composite", "pln": ["(: cnet_isa_7694d7d26c (IsA dusty_miller composite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dusty miller is a kind of shrub", "pln": ["(: cnet_isa_44883ac314 (IsA dusty_miller shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dusty miller is a kind of wormwood", "pln": ["(: cnet_isa_e9b29b18d4 (IsA dusty_miller wormwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dutch is a kind of west germanic", "pln": ["(: cnet_isa_f251bcf20d (IsA dutch west_germanic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dutch auction is a kind of selling", "pln": ["(: cnet_isa_8eeaf4814a (IsA dutch_auction selling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dutch courage is a kind of courage", "pln": ["(: cnet_isa_5614951caf (IsA dutch_courage courage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dutch door is a kind of exterior door", "pln": ["(: cnet_isa_ec4581072b (IsA dutch_door exterior_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dutch elm is a kind of elm", "pln": ["(: cnet_isa_6831686421 (IsA dutch_elm elm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dutch elm beetle is a kind of bark beetle", "pln": ["(: cnet_isa_807e1fe05a (IsA dutch_elm_beetle bark_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dutch elm disease is a kind of plant disease", "pln": ["(: cnet_isa_f40ea7593f (IsA dutch_elm_disease plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dutch elm fungus is a kind of fungus", "pln": ["(: cnet_isa_210c0cb548 (IsA dutch_elm_fungus fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dutch iris is a kind of beardless iris", "pln": ["(: cnet_isa_9b602d8f9e (IsA dutch_iris beardless_iris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dutch monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_a28a850f5f (IsA dutch_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dutch oven is a kind of oven", "pln": ["(: cnet_isa_0f8eb7ebdd (IsA dutch_oven oven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dutch oven is a kind of pot", "pln": ["(: cnet_isa_9c45a5065a (IsA dutch_oven pot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dutch people is a kind of nation", "pln": ["(: cnet_isa_a5d29cf787 (IsA dutch_people nation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dutch processed cocoa is a kind of cocoa powder", "pln": ["(: cnet_isa_12f9d50409 (IsA dutch_processed_cocoa cocoa_powder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dutch treat is a kind of dining", "pln": ["(: cnet_isa_a98e734133 (IsA dutch_treat dining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dutch uncle is a kind of counselor", "pln": ["(: cnet_isa_d622b43d43 (IsA dutch_uncle counselor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dutchman s breeche is a kind of herb", "pln": ["(: cnet_isa_0dba90a47c (IsA dutchman_s_breeche herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dutchman s pipe is a kind of birthwort", "pln": ["(: cnet_isa_11c2cf55d0 (IsA dutchman_s_pipe birthwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dutifulness is a kind of piety", "pln": ["(: cnet_isa_8ab4104e4f (IsA dutifulness piety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duty is a kind of social control", "pln": ["(: cnet_isa_0361db2516 (IsA duty social_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duty is a kind of work", "pln": ["(: cnet_isa_a9d943384f (IsA duty work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "duty is a kind of indirect tax", "pln": ["(: cnet_isa_32a3d280b6 (IsA duty indirect_tax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dvd is a kind of optical disk", "pln": ["(: cnet_isa_9fa6f7a4da (IsA dvd optical_disk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dwarf is a kind of organism", "pln": ["(: cnet_isa_577a9fbf88 (IsA dwarf organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dwarf is a kind of small person", "pln": ["(: cnet_isa_fbe7e60973 (IsA dwarf small_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dwarf astilbe is a kind of astilbe", "pln": ["(: cnet_isa_2c97cc1c71 (IsA dwarf_astilbe astilbe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dwarf banana is a kind of banana", "pln": ["(: cnet_isa_4ba5db7072 (IsA dwarf_banana banana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dwarf bilberry is a kind of blueberry", "pln": ["(: cnet_isa_529306c645 (IsA dwarf_bilberry blueberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dwarf buckeye is a kind of horse chestnut", "pln": ["(: cnet_isa_48abe954a8 (IsA dwarf_buckeye horse_chestnut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dwarf chinkapin oak is a kind of chestnut oak", "pln": ["(: cnet_isa_99fe592a6e (IsA dwarf_chinkapin_oak chestnut_oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dwarf dandelion is a kind of krigia", "pln": ["(: cnet_isa_6e2d451e6d (IsA dwarf_dandelion krigia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dwarf elder is a kind of elder", "pln": ["(: cnet_isa_c75fe30f00 (IsA dwarf_elder elder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dwarf flowering almond is a kind of almond tree", "pln": ["(: cnet_isa_4a5e3b91a2 (IsA dwarf_flowering_almond almond_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dwarf golden chinkapin is a kind of shrub", "pln": ["(: cnet_isa_32198f9047 (IsA dwarf_golden_chinkapin shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dwarf gray willow is a kind of willow", "pln": ["(: cnet_isa_097a835a9f (IsA dwarf_gray_willow willow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dwarf hulsea is a kind of wildflower", "pln": ["(: cnet_isa_499610787b (IsA dwarf_hulsea wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dwarf iris is a kind of iris", "pln": ["(: cnet_isa_20fac1168e (IsA dwarf_iris iris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dwarf juniper is a kind of juniper", "pln": ["(: cnet_isa_18e432a535 (IsA dwarf_juniper juniper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dwarf maple is a kind of maple", "pln": ["(: cnet_isa_1ff0d0d6c5 (IsA dwarf_maple maple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dwarf pipefish is a kind of pipefish", "pln": ["(: cnet_isa_bb35037d3a (IsA dwarf_pipefish pipefish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dwarf sperm whale is a kind of toothed whale", "pln": ["(: cnet_isa_16eb0b83e7 (IsA dwarf_sperm_whale toothed_whale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dwarf spurge is a kind of spurge", "pln": ["(: cnet_isa_d6be07fe51 (IsA dwarf_spurge spurge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dwarf sumac is a kind of sumac", "pln": ["(: cnet_isa_7fee51a17c (IsA dwarf_sumac sumac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dwarf tulip is a kind of tulip", "pln": ["(: cnet_isa_c4dc763c18 (IsA dwarf_tulip tulip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dwarf white trillium is a kind of trillium", "pln": ["(: cnet_isa_4078e2a53f (IsA dwarf_white_trillium trillium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dwarf willow is a kind of willow", "pln": ["(: cnet_isa_c3118d2210 (IsA dwarf_willow willow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dwarfishness is a kind of smallness", "pln": ["(: cnet_isa_a676d292d6 (IsA dwarfishness smallness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dwarfism is a kind of genetic disease", "pln": ["(: cnet_isa_6a3dac1d7f (IsA dwarfism genetic_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dwelling is a kind of housing", "pln": ["(: cnet_isa_a08f143557 (IsA dwelling housing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dwindling is a kind of decrease", "pln": ["(: cnet_isa_1026a40787 (IsA dwindling decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dyadic operation is a kind of operation", "pln": ["(: cnet_isa_7b7eed8466 (IsA dyadic_operation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dybbuk is a kind of devil", "pln": ["(: cnet_isa_9505eb32a3 (IsA dybbuk devil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dye is a kind of coloring material", "pln": ["(: cnet_isa_477c4696da (IsA dye coloring_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dye work is a kind of workshop", "pln": ["(: cnet_isa_02fc4fbfed (IsA dye_work workshop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dyeing is a kind of coloring", "pln": ["(: cnet_isa_687bddf981 (IsA dyeing coloring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dyer s rocket is a kind of reseda", "pln": ["(: cnet_isa_30a6501c07 (IsA dyer_s_rocket reseda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dyer s weed is a kind of goldenrod", "pln": ["(: cnet_isa_48bdaadc04 (IsA dyer_s_weed goldenrod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dyer s woad is a kind of woad", "pln": ["(: cnet_isa_39612b2214 (IsA dyer_s_woad woad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dyer s woodruff is a kind of woodruff", "pln": ["(: cnet_isa_7702016a6b (IsA dyer_s_woodruff woodruff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dyer is a kind of skilled worker", "pln": ["(: cnet_isa_186de6d707 (IsA dyer skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dyewood is a kind of wood", "pln": ["(: cnet_isa_3360b38195 (IsA dyewood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dyirbal is a kind of australian", "pln": ["(: cnet_isa_01aa3c2259 (IsA dyirbal australian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dynamic balance is a kind of equilibrium", "pln": ["(: cnet_isa_3b70bbef76 (IsA dynamic_balance equilibrium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dynamic electricity is a kind of electricity", "pln": ["(: cnet_isa_61ad706579 (IsA dynamic_electricity electricity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dynamical system is a kind of phase space", "pln": ["(: cnet_isa_7192b8c95a (IsA dynamical_system phase_space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dynamic is a kind of mechanic", "pln": ["(: cnet_isa_4c8509d8fb (IsA dynamic mechanic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dynamism is a kind of activeness", "pln": ["(: cnet_isa_f6279692a5 (IsA dynamism activeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dynamism is a kind of doctrine", "pln": ["(: cnet_isa_813993b344 (IsA dynamism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dynamite is a kind of explosive", "pln": ["(: cnet_isa_787a4662cd (IsA dynamite explosive) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dynamite is a kind of explosive compound", "pln": ["(: cnet_isa_be8919fc82 (IsA dynamite explosive_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dynamiter is a kind of revolutionist", "pln": ["(: cnet_isa_2363a00914 (IsA dynamiter revolutionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dynamo is a kind of generator", "pln": ["(: cnet_isa_cbccd88690 (IsA dynamo generator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dynamometer is a kind of measuring instrument", "pln": ["(: cnet_isa_dc547eafa1 (IsA dynamometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dynast is a kind of ruler", "pln": ["(: cnet_isa_bd4543664a (IsA dynast ruler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dynasty is a kind of family", "pln": ["(: cnet_isa_5008be2705 (IsA dynasty family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dyne is a kind of force unit", "pln": ["(: cnet_isa_356ffc3e01 (IsA dyne force_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dysaphia is a kind of disorder", "pln": ["(: cnet_isa_ad29a0bb84 (IsA dysaphia disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dysarthria is a kind of speech disorder", "pln": ["(: cnet_isa_d39bcfa4b0 (IsA dysarthria speech_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dyscalculia is a kind of learning disorder", "pln": ["(: cnet_isa_5a9cd3b5c5 (IsA dyscalculia learning_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dyschezia is a kind of constipation", "pln": ["(: cnet_isa_1f54d3f0d5 (IsA dyschezia constipation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dyscrasia is a kind of ill health", "pln": ["(: cnet_isa_93264cc741 (IsA dyscrasia ill_health) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dysdercus is a kind of arthropod genus", "pln": ["(: cnet_isa_4621d9876e (IsA dysdercus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dysentery is a kind of infectious disease", "pln": ["(: cnet_isa_c0e4f8a828 (IsA dysentery infectious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dysfunction is a kind of pathology", "pln": ["(: cnet_isa_835dfd9bff (IsA dysfunction pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dysgenesis is a kind of sterility", "pln": ["(: cnet_isa_3a11c25579 (IsA dysgenesis sterility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dysgenic is a kind of life science", "pln": ["(: cnet_isa_59350ec6b1 (IsA dysgenic life_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dysgraphia is a kind of learning disorder", "pln": ["(: cnet_isa_969b08ce58 (IsA dysgraphia learning_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dyskinesia is a kind of nervous disorder", "pln": ["(: cnet_isa_8de1564d49 (IsA dyskinesia nervous_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dyslectic is a kind of person", "pln": ["(: cnet_isa_23d235d388 (IsA dyslectic person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dyslexia is a kind of learning disorder", "pln": ["(: cnet_isa_ead48bb4b3 (IsA dyslexia learning_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dyslogia is a kind of speech disorder", "pln": ["(: cnet_isa_39a9231d47 (IsA dyslogia speech_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dysmenorrhea is a kind of pain", "pln": ["(: cnet_isa_bb6d368b00 (IsA dysmenorrhea pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dysomia is a kind of disability", "pln": ["(: cnet_isa_1cdd85e7a1 (IsA dysomia disability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dysosmia is a kind of disorder", "pln": ["(: cnet_isa_1ae9bbf14b (IsA dysosmia disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dyspeptic is a kind of sick person", "pln": ["(: cnet_isa_d4fe132fec (IsA dyspeptic sick_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dysphagia is a kind of disorder", "pln": ["(: cnet_isa_da7a91c5ae (IsA dysphagia disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dysphasia is a kind of disability", "pln": ["(: cnet_isa_b79d310fa0 (IsA dysphasia disability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dysphemism is a kind of saying", "pln": ["(: cnet_isa_081b557c39 (IsA dysphemism saying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dysphonia is a kind of speech disorder", "pln": ["(: cnet_isa_378b339168 (IsA dysphonia speech_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dysphoria is a kind of depression", "pln": ["(: cnet_isa_be0b0b9a2c (IsA dysphoria depression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dysphoria is a kind of discontentment", "pln": ["(: cnet_isa_f43748ec67 (IsA dysphoria discontentment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dysplasia is a kind of abnormality", "pln": ["(: cnet_isa_7bc928cfd9 (IsA dysplasia abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dyspnea is a kind of symptom", "pln": ["(: cnet_isa_0ddeb7de8e (IsA dyspnea symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dysprosium is a kind of metallic element", "pln": ["(: cnet_isa_bb21e09693 (IsA dysprosium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dysthymia is a kind of depressive disorder", "pln": ["(: cnet_isa_7947a0177e (IsA dysthymia depressive_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dystopia is a kind of fiction", "pln": ["(: cnet_isa_569a872a37 (IsA dystopia fiction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dystopia is a kind of state", "pln": ["(: cnet_isa_2c117bb089 (IsA dystopia state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "dystrophy is a kind of degenerative disorder", "pln": ["(: cnet_isa_3c591edb23 (IsA dystrophy degenerative_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dysuria is a kind of disorder", "pln": ["(: cnet_isa_c41672caea (IsA dysuria disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "dytiscidae is a kind of arthropod family", "pln": ["(: cnet_isa_e815deae22 (IsA dytiscidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "e is a kind of letter", "pln": ["(: cnet_isa_510daaba7c (IsA e letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "e is a kind of transcendental number", "pln": ["(: cnet_isa_eb3be1fab5 (IsA e transcendental_number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "e commerce is a kind of commerce", "pln": ["(: cnet_isa_9e0f3f167b (IsA e_commerce commerce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "e mail is a kind of example of asynchronous communication", "pln": ["(: cnet_isa_b1403a4488 (IsA e_mail example_of_asynchronous_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eacle is a kind of arthropod genus", "pln": ["(: cnet_isa_64ebb05725 (IsA eacle arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eager beaver is a kind of actor", "pln": ["(: cnet_isa_1c13a93e46 (IsA eager_beaver actor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eagerness is a kind of enthusiasm", "pln": ["(: cnet_isa_8d7e51b98d (IsA eagerness enthusiasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eagle is a kind of bird of prey", "pln": ["(: cnet_isa_74853fc8f7 (IsA eagle bird_of_prey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eagle is a kind of emblem", "pln": ["(: cnet_isa_7f8c926ca3 (IsA eagle emblem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eagle is a kind of score", "pln": ["(: cnet_isa_5b89f39916 (IsA eagle score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eagle is a kind of coin", "pln": ["(: cnet_isa_0fdc5b4988 (IsA eagle coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eagle ray is a kind of ray", "pln": ["(: cnet_isa_105dd0421b (IsA eagle_ray ray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eagle scout is a kind of boy scout", "pln": ["(: cnet_isa_6f81c3c9c3 (IsA eagle_scout boy_scout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eaglet is a kind of eagle", "pln": ["(: cnet_isa_a664a853a7 (IsA eaglet eagle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eaglet is a kind of young bird", "pln": ["(: cnet_isa_cf3b1f2ff7 (IsA eaglet young_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eame chair is a kind of chair", "pln": ["(: cnet_isa_63358a1d7e (IsA eame_chair chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ear is a kind of part of body", "pln": ["(: cnet_isa_5f6a21ebe4 (IsA ear part_of_body) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ear is a kind of sense organ", "pln": ["(: cnet_isa_02fd7971b7 (IsA ear sense_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ear is a kind of attention", "pln": ["(: cnet_isa_51291a6ffb (IsA ear attention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ear is a kind of hearing", "pln": ["(: cnet_isa_cd721c4c5f (IsA ear hearing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ear is a kind of fruit", "pln": ["(: cnet_isa_615525b708 (IsA ear fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ear doctor is a kind of specialist", "pln": ["(: cnet_isa_cac59a1460 (IsA ear_doctor specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ear hole is a kind of hole", "pln": ["(: cnet_isa_ff3ad0ae07 (IsA ear_hole hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ear nose and throat doctor is a kind of specialist", "pln": ["(: cnet_isa_c4213598af (IsA ear_nose_and_throat_doctor specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earache is a kind of ache", "pln": ["(: cnet_isa_ff7f460e88 (IsA earache ache) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eardrum is a kind of membrane", "pln": ["(: cnet_isa_8442cf3e9d (IsA eardrum membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eared seal is a kind of seal", "pln": ["(: cnet_isa_a8ac5cbb1a (IsA eared_seal seal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "earflap is a kind of flap", "pln": ["(: cnet_isa_79c7e98e18 (IsA earflap flap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earful is a kind of gossip", "pln": ["(: cnet_isa_da392b555a (IsA earful gossip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earl is a kind of peer", "pln": ["(: cnet_isa_ea3f769cfa (IsA earl peer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earl marshal is a kind of peer", "pln": ["(: cnet_isa_e296f9bd3b (IsA earl_marshal peer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earldom is a kind of domain", "pln": ["(: cnet_isa_ded8796f68 (IsA earldom domain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earldom is a kind of rank", "pln": ["(: cnet_isa_e941745137 (IsA earldom rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "earleaved umbrella tree is a kind of magnolia", "pln": ["(: cnet_isa_89a47bf1d6 (IsA earleaved_umbrella_tree magnolia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earless lizard is a kind of iguanid", "pln": ["(: cnet_isa_203ffdb61f (IsA earless_lizard iguanid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "earless seal is a kind of seal", "pln": ["(: cnet_isa_8b4ff16e66 (IsA earless_seal seal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earliness is a kind of timing", "pln": ["(: cnet_isa_070e4b8dd2 (IsA earliness timing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earlobe is a kind of lobe", "pln": ["(: cnet_isa_5fbfed8591 (IsA earlobe lobe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "early bird is a kind of arrival", "pln": ["(: cnet_isa_af0104e16e (IsA early_bird arrival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "early bird is a kind of riser", "pln": ["(: cnet_isa_06312f8dae (IsA early_bird riser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "early coral root is a kind of coral root", "pln": ["(: cnet_isa_c80a07c6a7 (IsA early_coral_root coral_root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "early morning hour is a kind of hour", "pln": ["(: cnet_isa_98d4f1542e (IsA early_morning_hour hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "early spider orchid is a kind of spider orchid", "pln": ["(: cnet_isa_2476793d46 (IsA early_spider_orchid spider_orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "early warning radar is a kind of radar", "pln": ["(: cnet_isa_a8c414fece (IsA early_warning_radar radar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "early warning system is a kind of network", "pln": ["(: cnet_isa_324c2fad44 (IsA early_warning_system network) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earmark is a kind of marker", "pln": ["(: cnet_isa_09d68627b0 (IsA earmark marker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earmuff is a kind of covering", "pln": ["(: cnet_isa_33589ad213 (IsA earmuff covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earned run is a kind of run", "pln": ["(: cnet_isa_2b18952d9b (IsA earned_run run) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earned run average is a kind of standard", "pln": ["(: cnet_isa_e8a354434a (IsA earned_run_average standard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earner is a kind of jobholder", "pln": ["(: cnet_isa_4d6ac800af (IsA earner jobholder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earnest is a kind of security", "pln": ["(: cnet_isa_b1d3e23b82 (IsA earnest security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earnest money is a kind of earnest", "pln": ["(: cnet_isa_36007233e1 (IsA earnest_money earnest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earnestness is a kind of gravity", "pln": ["(: cnet_isa_84decf664f (IsA earnestness gravity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earning per share is a kind of net income", "pln": ["(: cnet_isa_6a4a64e6c4 (IsA earning_per_share net_income) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earphone is a kind of electro acoustic transducer", "pln": ["(: cnet_isa_fe41282411 (IsA earphone electro_acoustic_transducer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earplug is a kind of earphone", "pln": ["(: cnet_isa_23b8f8ded0 (IsA earplug earphone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earplug is a kind of plug", "pln": ["(: cnet_isa_99b03edd12 (IsA earplug plug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earring is a kind of piece of jewlery", "pln": ["(: cnet_isa_f8e25b64a6 (IsA earring piece_of_jewlery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earring is a kind of jewelry", "pln": ["(: cnet_isa_3c64977ae1 (IsA earring jewelry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earshot is a kind of range", "pln": ["(: cnet_isa_8c129a5b36 (IsA earshot range) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earth is a kind of 4 5 billion year old", "pln": ["(: cnet_isa_5cfb4d55f5 (IsA earth 4_5_billion_year_old) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earth is a kind of bigger than moon", "pln": ["(: cnet_isa_a5c4af9e93 (IsA earth bigger_than_moon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earth is a kind of globe", "pln": ["(: cnet_isa_2dd47ab811 (IsA earth globe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earth is a kind of natural building material", "pln": ["(: cnet_isa_7286fdb385 (IsA earth natural_building_material) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earth is a kind of oblate sphere", "pln": ["(: cnet_isa_ebf67a029b (IsA earth oblate_sphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earth is a kind of oblate sphereoid", "pln": ["(: cnet_isa_0ad0ec346c (IsA earth oblate_sphereoid) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "earth is a kind of oblate spheroid", "pln": ["(: cnet_isa_83d2386a11 (IsA earth oblate_spheroid) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earth is a kind of one astronomical unit from sun", "pln": ["(: cnet_isa_b44f090a1e (IsA earth one_astronomical_unit_from_sun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earth is a kind of partially molten planet", "pln": ["(: cnet_isa_2a3db20a0a (IsA earth partially_molten_planet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earth is a kind of place name", "pln": ["(: cnet_isa_94127ac642 (IsA earth place_name) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earth is a kind of planet in solar system", "pln": ["(: cnet_isa_d3d91dfad1 (IsA earth planet_in_solar_system) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "earth is a kind of word", "pln": ["(: cnet_isa_f8e6ad4326 (IsA earth word) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earth is a kind of location", "pln": ["(: cnet_isa_47a79d443f (IsA earth location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "earth is a kind of element", "pln": ["(: cnet_isa_d415a66e73 (IsA earth element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earth is a kind of material", "pln": ["(: cnet_isa_262301443a (IsA earth material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earth color is a kind of mineral", "pln": ["(: cnet_isa_3ef2246a7c (IsA earth_color mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earth color is a kind of pigment", "pln": ["(: cnet_isa_67030b524b (IsA earth_color pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earth god is a kind of deity", "pln": ["(: cnet_isa_32316acb0c (IsA earth_god deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earth goddess is a kind of goddess", "pln": ["(: cnet_isa_3dfcf009f0 (IsA earth_goddess goddess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earth mother is a kind of earth goddess", "pln": ["(: cnet_isa_619d29dbc7 (IsA earth_mother earth_goddess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earth received time is a kind of coordinated universal time", "pln": ["(: cnet_isa_9ba2dc22c2 (IsA earth_received_time coordinated_universal_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earth science is a kind of natural science", "pln": ["(: cnet_isa_499366cdab (IsA earth_science natural_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earthball is a kind of fungus", "pln": ["(: cnet_isa_14a6b22549 (IsA earthball fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earthenware is a kind of ceramic ware", "pln": ["(: cnet_isa_1ac5302e35 (IsA earthenware ceramic_ware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earthnut is a kind of herb", "pln": ["(: cnet_isa_e11c88b4a4 (IsA earthnut herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "earthquake is a kind of natural disaster", "pln": ["(: cnet_isa_fb6229a070 (IsA earthquake natural_disaster) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earthquake is a kind of geological phenomenon", "pln": ["(: cnet_isa_79f4313006 (IsA earthquake geological_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earthquake is a kind of disturbance", "pln": ["(: cnet_isa_2a96e9b314 (IsA earthquake disturbance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earthstar is a kind of fungus", "pln": ["(: cnet_isa_f605ceaaba (IsA earthstar fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earthtongue is a kind of fungus", "pln": ["(: cnet_isa_28fd1c7fa6 (IsA earthtongue fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earthwork is a kind of rampart", "pln": ["(: cnet_isa_81b7dfb67e (IsA earthwork rampart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "earthworm is a kind of oligochaete", "pln": ["(: cnet_isa_f913929429 (IsA earthworm oligochaete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "earwig is a kind of insect", "pln": ["(: cnet_isa_1617d3edd3 (IsA earwig insect) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ease is a kind of naturalness", "pln": ["(: cnet_isa_c0428f71fc (IsA ease naturalness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ease is a kind of quality", "pln": ["(: cnet_isa_ad36030ea2 (IsA ease quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ease is a kind of affluence", "pln": ["(: cnet_isa_d97c9ab6b9 (IsA ease affluence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "easel is a kind of tripod", "pln": ["(: cnet_isa_6f86537ba1 (IsA easel tripod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "easement is a kind of prerogative", "pln": ["(: cnet_isa_bebf0aa7a1 (IsA easement prerogative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "easiness is a kind of behavior", "pln": ["(: cnet_isa_2d27cbca4e (IsA easiness behavior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "easiness is a kind of tranquillity", "pln": ["(: cnet_isa_bf710d9bcb (IsA easiness tranquillity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "easing is a kind of decrease", "pln": ["(: cnet_isa_dce323e1f8 (IsA easing decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "easing is a kind of change", "pln": ["(: cnet_isa_3d5b0a9cee (IsA easing change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "east is a kind of cardinal compass point", "pln": ["(: cnet_isa_cab3b0e80a (IsA east cardinal_compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "east is a kind of direction", "pln": ["(: cnet_isa_b5bf4a3dc0 (IsA east direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "east is a kind of location", "pln": ["(: cnet_isa_691892a170 (IsA east location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "east african cedar is a kind of pencil cedar", "pln": ["(: cnet_isa_05327af444 (IsA east_african_cedar pencil_cedar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "east by north is a kind of compass point", "pln": ["(: cnet_isa_41b400ef59 (IsA east_by_north compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "east by south is a kind of compass point", "pln": ["(: cnet_isa_d02cbccdc6 (IsA east_by_south compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "east chadic is a kind of chad", "pln": ["(: cnet_isa_1f632e25b2 (IsA east_chadic chad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "east german is a kind of german", "pln": ["(: cnet_isa_2b8cc6f513 (IsA east_german german) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "east germanic is a kind of germanic", "pln": ["(: cnet_isa_ff65f8963e (IsA east_germanic germanic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "east india company is a kind of company", "pln": ["(: cnet_isa_bb3f0a4ab3 (IsA east_india_company company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "east india kino is a kind of resin", "pln": ["(: cnet_isa_2b668353dc (IsA east_india_kino resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "east indian is a kind of asiatic", "pln": ["(: cnet_isa_731843d085 (IsA east_indian asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "east midland is a kind of middle english", "pln": ["(: cnet_isa_3755b3bc98 (IsA east_midland middle_english) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "east northeast is a kind of compass point", "pln": ["(: cnet_isa_d14b49fc0f (IsA east_northeast compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "east side is a kind of side", "pln": ["(: cnet_isa_faee7ccde5 (IsA east_side side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "east sider is a kind of new yorker", "pln": ["(: cnet_isa_16e175c63c (IsA east_sider new_yorker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "east southeast is a kind of compass point", "pln": ["(: cnet_isa_6b699ca0bc (IsA east_southeast compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "east west direction is a kind of direction", "pln": ["(: cnet_isa_f08ddf7bf4 (IsA east_west_direction direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "east wind is a kind of wind", "pln": ["(: cnet_isa_b4941a18a5 (IsA east_wind wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "easter is a kind of movable feast", "pln": ["(: cnet_isa_bff95f68f0 (IsA easter movable_feast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "easter cactus is a kind of cactus", "pln": ["(: cnet_isa_9695f5934d (IsA easter_cactus cactus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "easter card is a kind of greeting card", "pln": ["(: cnet_isa_aa430e59c8 (IsA easter_card greeting_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "easter daisy is a kind of flower", "pln": ["(: cnet_isa_31375bfb6a (IsA easter_daisy flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "easter egg is a kind of candy", "pln": ["(: cnet_isa_e5c93d7517 (IsA easter_egg candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "easter egg is a kind of hard boiled egg", "pln": ["(: cnet_isa_da821cbf63 (IsA easter_egg hard_boiled_egg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "easter lily is a kind of lily", "pln": ["(: cnet_isa_e6c4bf64a7 (IsA easter_lily lily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "easter sunday is a kind of christian holy day", "pln": ["(: cnet_isa_8e5202f649 (IsA easter_sunday christian_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eastern catholicism is a kind of catholicism", "pln": ["(: cnet_isa_1c32672fbc (IsA eastern_catholicism catholicism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eastern chimpanzee is a kind of chimpanzee", "pln": ["(: cnet_isa_a76c309f77 (IsA eastern_chimpanzee chimpanzee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eastern chipmunk is a kind of squirrel", "pln": ["(: cnet_isa_a4196fd335 (IsA eastern_chipmunk squirrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eastern church is a kind of catholic church", "pln": ["(: cnet_isa_2dcabc727b (IsA eastern_church catholic_church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eastern coral snake is a kind of coral snake", "pln": ["(: cnet_isa_2c5efeb492 (IsA eastern_coral_snake coral_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eastern cottontail is a kind of wood rabbit", "pln": ["(: cnet_isa_f80fe82e48 (IsA eastern_cottontail wood_rabbit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eastern cottonwood is a kind of cottonwood", "pln": ["(: cnet_isa_38442aa858 (IsA eastern_cottonwood cottonwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eastern cricket frog is a kind of cricket frog", "pln": ["(: cnet_isa_d03e797900 (IsA eastern_cricket_frog cricket_frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eastern dasyure is a kind of dasyure", "pln": ["(: cnet_isa_843d2ae14d (IsA eastern_dasyure dasyure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eastern fence lizard is a kind of fence lizard", "pln": ["(: cnet_isa_2827ff1739 (IsA eastern_fence_lizard fence_lizard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eastern gray squirrel is a kind of tree squirrel", "pln": ["(: cnet_isa_fdde20b8cc (IsA eastern_gray_squirrel tree_squirrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eastern ground snake is a kind of colubrid snake", "pln": ["(: cnet_isa_9c977ab11b (IsA eastern_ground_snake colubrid_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eastern hemisphere is a kind of hemisphere", "pln": ["(: cnet_isa_9b736c4d65 (IsA eastern_hemisphere hemisphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eastern hemlock is a kind of hemlock", "pln": ["(: cnet_isa_d7a22b79d6 (IsA eastern_hemlock hemlock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eastern hop hornbeam is a kind of hop hornbeam", "pln": ["(: cnet_isa_8847cebd22 (IsA eastern_hop_hornbeam hop_hornbeam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eastern indigo snake is a kind of indigo snake", "pln": ["(: cnet_isa_b8727a9af9 (IsA eastern_indigo_snake indigo_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eastern kingbird is a kind of kingbird", "pln": ["(: cnet_isa_02d000a87d (IsA eastern_kingbird kingbird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eastern lowland gorilla is a kind of gorilla", "pln": ["(: cnet_isa_1cbab4552c (IsA eastern_lowland_gorilla gorilla) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eastern meadowlark is a kind of meadowlark", "pln": ["(: cnet_isa_127adef38a (IsA eastern_meadowlark meadowlark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eastern narrow mouthed toad is a kind of frog", "pln": ["(: cnet_isa_8124d02320 (IsA eastern_narrow_mouthed_toad frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eastern pipistrel is a kind of vespertilian bat", "pln": ["(: cnet_isa_c17960f43b (IsA eastern_pipistrel vespertilian_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eastern poison oak is a kind of poisonous plant", "pln": ["(: cnet_isa_0cf84f9b82 (IsA eastern_poison_oak poisonous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eastern red backed salamander is a kind of salamander", "pln": ["(: cnet_isa_8db43bf519 (IsA eastern_red_backed_salamander salamander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eastern red cedar is a kind of pencil cedar", "pln": ["(: cnet_isa_b1a7e208db (IsA eastern_red_cedar pencil_cedar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eastern silvery aster is a kind of aster", "pln": ["(: cnet_isa_190ac4ef30 (IsA eastern_silvery_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eastern sioux is a kind of siouan", "pln": ["(: cnet_isa_0b9fcf07f6 (IsA eastern_sioux siouan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eastern time is a kind of civil time", "pln": ["(: cnet_isa_e84ce6d088 (IsA eastern_time civil_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eastern woodrat is a kind of wood rat", "pln": ["(: cnet_isa_f95e4a643f (IsA eastern_woodrat wood_rat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "easterner is a kind of inhabitant", "pln": ["(: cnet_isa_b6a31f65b0 (IsA easterner inhabitant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eastertide is a kind of season", "pln": ["(: cnet_isa_9b8e030bcd (IsA eastertide season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "easy chair is a kind of armchair", "pln": ["(: cnet_isa_9223dba9bb (IsA easy_chair armchair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "easy money is a kind of financial condition", "pln": ["(: cnet_isa_d202b5e1f4 (IsA easy_money financial_condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "easy money is a kind of income", "pln": ["(: cnet_isa_be2d27a71c (IsA easy_money income) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "easy street is a kind of security", "pln": ["(: cnet_isa_39349eb533 (IsA easy_street security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "easygoingness is a kind of good nature", "pln": ["(: cnet_isa_7321f7b4ac (IsA easygoingness good_nature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eatage is a kind of fodder", "pln": ["(: cnet_isa_db81c696ab (IsA eatage fodder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eater is a kind of produce", "pln": ["(: cnet_isa_31eb118452 (IsA eater produce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eater is a kind of consumer", "pln": ["(: cnet_isa_b9bec49911 (IsA eater consumer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eatery is a kind of restaurant", "pln": ["(: cnet_isa_a4016ecf62 (IsA eatery restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eating is a kind of social activity", "pln": ["(: cnet_isa_eb48d7f287 (IsA eating social_activity) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eating is a kind of social event", "pln": ["(: cnet_isa_cd82d299fd (IsA eating social_event) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eating is a kind of way", "pln": ["(: cnet_isa_65cf884ef3 (IsA eating way) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eating is a kind of consumption", "pln": ["(: cnet_isa_c600b6915e (IsA eating consumption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eating apple is a kind of apple", "pln": ["(: cnet_isa_119e6cd00a (IsA eating_apple apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eating at captain s table is a kind of honor", "pln": ["(: cnet_isa_d08cb97cdf (IsA eating_at_captain_s_table honor) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eating children is a kind of cannibalism", "pln": ["(: cnet_isa_0d554bb67c (IsA eating_children cannibalism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eating disorder is a kind of disorder", "pln": ["(: cnet_isa_09982de4e3 (IsA eating_disorder disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eating meal together is a kind of social activity", "pln": ["(: cnet_isa_071b0b5795 (IsA eating_meal_together social_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eau de vie is a kind of brandy", "pln": ["(: cnet_isa_950e6b615b (IsA eau_de_vie brandy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eave is a kind of overhang", "pln": ["(: cnet_isa_583fc5a94f (IsA eave overhang) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eavesdropper is a kind of hearer", "pln": ["(: cnet_isa_413bebc90e (IsA eavesdropper hearer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eavesdropper is a kind of snoop", "pln": ["(: cnet_isa_650339caf2 (IsA eavesdropper snoop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ebb is a kind of flow", "pln": ["(: cnet_isa_37acf96aad (IsA ebb flow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ebb is a kind of decline", "pln": ["(: cnet_isa_aa225835d5 (IsA ebb decline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ebbtide is a kind of tide", "pln": ["(: cnet_isa_2389f70750 (IsA ebbtide tide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ebenaceae is a kind of dicot family", "pln": ["(: cnet_isa_f1eecfe4dd (IsA ebenaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ebenale is a kind of plant order", "pln": ["(: cnet_isa_704bcbc344 (IsA ebenale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ebionite is a kind of religionist", "pln": ["(: cnet_isa_c9332ca84b (IsA ebionite religionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ebitda is a kind of income", "pln": ["(: cnet_isa_05599e799e (IsA ebitda income) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eblis is a kind of genie", "pln": ["(: cnet_isa_42da59292c (IsA eblis genie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ebola is a kind of lethal virus", "pln": ["(: cnet_isa_166d95116d (IsA ebola lethal_virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ebola hemorrhagic fever is a kind of hemorrhagic fever", "pln": ["(: cnet_isa_53ac2013e5 (IsA ebola_hemorrhagic_fever hemorrhagic_fever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ebola virus is a kind of filovirus", "pln": ["(: cnet_isa_c153ada0f3 (IsA ebola_virus filovirus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ebony is a kind of tree", "pln": ["(: cnet_isa_4bab9f5574 (IsA ebony tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ebony is a kind of wood", "pln": ["(: cnet_isa_32c6245de4 (IsA ebony wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ebony spleenwort is a kind of spleenwort", "pln": ["(: cnet_isa_44b2d3f522 (IsA ebony_spleenwort spleenwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eburnation is a kind of organic process", "pln": ["(: cnet_isa_40408a66af (IsA eburnation organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eburophyton is a kind of monocot genus", "pln": ["(: cnet_isa_80357107a7 (IsA eburophyton monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ecarte is a kind of card game", "pln": ["(: cnet_isa_563c8bdb83 (IsA ecarte card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ecballium is a kind of dicot genus", "pln": ["(: cnet_isa_44bdbffe30 (IsA ecballium dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ecce homo is a kind of representation", "pln": ["(: cnet_isa_eef1111345 (IsA ecce_homo representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eccentric is a kind of person", "pln": ["(: cnet_isa_0f54c7446f (IsA eccentric person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eccentricity is a kind of circularity", "pln": ["(: cnet_isa_52e469d543 (IsA eccentricity circularity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eccentricity is a kind of unfamiliarity", "pln": ["(: cnet_isa_61af646b6b (IsA eccentricity unfamiliarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eccentricity is a kind of ratio", "pln": ["(: cnet_isa_9854a34162 (IsA eccentricity ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ecchymosis is a kind of organic process", "pln": ["(: cnet_isa_cf2559cbaf (IsA ecchymosis organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ecchymosis is a kind of bruise", "pln": ["(: cnet_isa_d596969bc6 (IsA ecchymosis bruise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eccle cake is a kind of cake", "pln": ["(: cnet_isa_925b12b603 (IsA eccle_cake cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ecclesiastical attire is a kind of attire", "pln": ["(: cnet_isa_f52b64f3ef (IsA ecclesiastical_attire attire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ecclesiastical mode is a kind of mode", "pln": ["(: cnet_isa_c979e94ae8 (IsA ecclesiastical_mode mode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ecclesiastical province is a kind of province", "pln": ["(: cnet_isa_247bc533a2 (IsA ecclesiastical_province province) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ecclesiasticism is a kind of attachment", "pln": ["(: cnet_isa_db2ca4d3bd (IsA ecclesiasticism attachment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ecclesiasticism is a kind of religion", "pln": ["(: cnet_isa_5937f329a7 (IsA ecclesiasticism religion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ecclesiology is a kind of theology", "pln": ["(: cnet_isa_da36d00d74 (IsA ecclesiology theology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eccrine gland is a kind of sweat gland", "pln": ["(: cnet_isa_dd612f33fa (IsA eccrine_gland sweat_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echelon is a kind of diffraction grating", "pln": ["(: cnet_isa_f53ea2e195 (IsA echelon diffraction_grating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echelon is a kind of military unit", "pln": ["(: cnet_isa_1f593835c2 (IsA echelon military_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echelon is a kind of status", "pln": ["(: cnet_isa_4233e4c17c (IsA echelon status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echeneididae is a kind of fish family", "pln": ["(: cnet_isa_da42e9d8c8 (IsA echeneididae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echeneis is a kind of fish genus", "pln": ["(: cnet_isa_1191e920d5 (IsA echeneis fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echidna is a kind of monotreme", "pln": ["(: cnet_isa_6fd6ab65c0 (IsA echidna monotreme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echidnophaga is a kind of arthropod genus", "pln": ["(: cnet_isa_c24ae3ce39 (IsA echidnophaga arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echinacea is a kind of asterid dicot genus", "pln": ["(: cnet_isa_fa63bb2f62 (IsA echinacea asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echinocactus is a kind of cactus", "pln": ["(: cnet_isa_39d5d80568 (IsA echinocactus cactus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echinocereus is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_2f185afcb7 (IsA echinocereus caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echinochloa is a kind of monocot genus", "pln": ["(: cnet_isa_1263e1b3c6 (IsA echinochloa monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "echinococcosis is a kind of infestation", "pln": ["(: cnet_isa_c464e23f70 (IsA echinococcosis infestation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echinococcus is a kind of tapeworm", "pln": ["(: cnet_isa_f037d1a264 (IsA echinococcus tapeworm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "echinoderm is a kind of invertebrate", "pln": ["(: cnet_isa_1134356b7a (IsA echinoderm invertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echinoderm family is a kind of family", "pln": ["(: cnet_isa_e6f40969a0 (IsA echinoderm_family family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echinoderm genus is a kind of genus", "pln": ["(: cnet_isa_ead1bb7ca5 (IsA echinoderm_genus genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echinodermata is a kind of phylum", "pln": ["(: cnet_isa_185210bc9b (IsA echinodermata phylum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echinoidea is a kind of class", "pln": ["(: cnet_isa_93940a4ce1 (IsA echinoidea class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echinop is a kind of asterid dicot genus", "pln": ["(: cnet_isa_572824100c (IsA echinop asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echinus is a kind of ovolo", "pln": ["(: cnet_isa_f97a52fa2e (IsA echinus ovolo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echium is a kind of plant genus", "pln": ["(: cnet_isa_3ee80168ff (IsA echium plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echo is a kind of imitation", "pln": ["(: cnet_isa_96b6273887 (IsA echo imitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echo is a kind of analogue", "pln": ["(: cnet_isa_92dbac0929 (IsA echo analogue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "echo is a kind of reflection", "pln": ["(: cnet_isa_55bdbd6ebc (IsA echo reflection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "echo is a kind of reply", "pln": ["(: cnet_isa_7b34c04724 (IsA echo reply) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echo is a kind of nymph", "pln": ["(: cnet_isa_07489081e5 (IsA echo nymph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echo chamber is a kind of enclosure", "pln": ["(: cnet_isa_024098be56 (IsA echo_chamber enclosure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "echocardiogram is a kind of graph", "pln": ["(: cnet_isa_96931725ed (IsA echocardiogram graph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echocardiograph is a kind of sonograph", "pln": ["(: cnet_isa_a8d85af1f5 (IsA echocardiograph sonograph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echocardiography is a kind of diagnostic procedure", "pln": ["(: cnet_isa_18e3b5eba3 (IsA echocardiography diagnostic_procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echoencephalogram is a kind of graph", "pln": ["(: cnet_isa_289a01da26 (IsA echoencephalogram graph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echoencephalograph is a kind of sonograph", "pln": ["(: cnet_isa_e253b9efd2 (IsA echoencephalograph sonograph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echoencephalography is a kind of diagnostic procedure", "pln": ["(: cnet_isa_17b7161d74 (IsA echoencephalography diagnostic_procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echolalia is a kind of echo", "pln": ["(: cnet_isa_ca41c5105c (IsA echolalia echo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echolalia is a kind of repetition", "pln": ["(: cnet_isa_b4bdd319bd (IsA echolalia repetition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echolocation is a kind of localization", "pln": ["(: cnet_isa_7e383b1f03 (IsA echolocation localization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "echovirus is a kind of enterovirus", "pln": ["(: cnet_isa_bf33f783dd (IsA echovirus enterovirus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eclair is a kind of cream puff", "pln": ["(: cnet_isa_d48fb3ed58 (IsA eclair cream_puff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eclampsia is a kind of toxemia of pregnancy", "pln": ["(: cnet_isa_721f98d8dc (IsA eclampsia toxemia_of_pregnancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eclat is a kind of magnificence", "pln": ["(: cnet_isa_d0545f797f (IsA eclat magnificence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eclectic is a kind of philosopher", "pln": ["(: cnet_isa_508b9a2ad7 (IsA eclectic philosopher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eclecticism is a kind of decision making", "pln": ["(: cnet_isa_ccd3f1e1d4 (IsA eclecticism decision_making) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eclipse is a kind of interruption", "pln": ["(: cnet_isa_6d0cd23a57 (IsA eclipse interruption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ecliptic is a kind of great circle", "pln": ["(: cnet_isa_745f2319d6 (IsA ecliptic great_circle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eclogue is a kind of pastoral", "pln": ["(: cnet_isa_7bbca36974 (IsA eclogue pastoral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ecobabble is a kind of jargon", "pln": ["(: cnet_isa_e72f4aba01 (IsA ecobabble jargon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ecologist is a kind of biologist", "pln": ["(: cnet_isa_12a7d42172 (IsA ecologist biologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ecology is a kind of biology", "pln": ["(: cnet_isa_a7a7a2f8e0 (IsA ecology biology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ecology is a kind of environment", "pln": ["(: cnet_isa_d1a83dacd2 (IsA ecology environment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "econometrician is a kind of economist", "pln": ["(: cnet_isa_894e5602df (IsA econometrician economist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "econometric is a kind of economic", "pln": ["(: cnet_isa_f6e93beb30 (IsA econometric economic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "economic and social council is a kind of council", "pln": ["(: cnet_isa_c28fb00d9c (IsA economic_and_social_council council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "economic and social council commission is a kind of committee", "pln": ["(: cnet_isa_3543f80eea (IsA economic_and_social_council_commission committee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "economic commission for africa is a kind of economic and social council commission", "pln": ["(: cnet_isa_f8720e2944 (IsA economic_commission_for_africa economic_and_social_council_commission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "economic commission for asia and far east is a kind of economic and social council commission", "pln": ["(: cnet_isa_e9d5230ea2 (IsA economic_commission_for_asia_and_far_east economic_and_social_council_commission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "economic commission for europe is a kind of economic and social council commission", "pln": ["(: cnet_isa_f0c8359b2e (IsA economic_commission_for_europe economic_and_social_council_commission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "economic commission for latin america is a kind of economic and social council commission", "pln": ["(: cnet_isa_f853db7498 (IsA economic_commission_for_latin_america economic_and_social_council_commission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "economic condition is a kind of condition", "pln": ["(: cnet_isa_8ddfe207ef (IsA economic_condition condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "economic geography is a kind of geography", "pln": ["(: cnet_isa_4e64b7dd98 (IsA economic_geography geography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "economic geology is a kind of geology", "pln": ["(: cnet_isa_0797e8d049 (IsA economic_geology geology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "economic growth is a kind of economic process", "pln": ["(: cnet_isa_93202cb827 (IsA economic_growth economic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "economic libertarian is a kind of libertarian", "pln": ["(: cnet_isa_4d6bd950ac (IsA economic_libertarian libertarian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "economic mobilization is a kind of mobilization", "pln": ["(: cnet_isa_8d95718b16 (IsA economic_mobilization mobilization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "economic policy is a kind of policy", "pln": ["(: cnet_isa_5a79cdcc4e (IsA economic_policy policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "economic process is a kind of process", "pln": ["(: cnet_isa_9710542ef2 (IsA economic_process process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "economic rent is a kind of return", "pln": ["(: cnet_isa_5c2c23007b (IsA economic_rent return) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "economic strangulation is a kind of punishment", "pln": ["(: cnet_isa_08cb6f5ef5 (IsA economic_strangulation punishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "economic theory is a kind of theory", "pln": ["(: cnet_isa_2eb86e91b6 (IsA economic_theory theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "economic is a kind of social science", "pln": ["(: cnet_isa_12b1c4a8ed (IsA economic social_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "economic department is a kind of academic department", "pln": ["(: cnet_isa_195ba6e782 (IsA economic_department academic_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "economic profession is a kind of profession", "pln": ["(: cnet_isa_6ead50eee0 (IsA economic_profession profession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "economist is a kind of social scientist", "pln": ["(: cnet_isa_0d5137f071 (IsA economist social_scientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "economizer is a kind of saver", "pln": ["(: cnet_isa_7acde4f4a0 (IsA economizer saver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "economy is a kind of action", "pln": ["(: cnet_isa_aece0e8f27 (IsA economy action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "economy is a kind of frugality", "pln": ["(: cnet_isa_2cb6d87f95 (IsA economy frugality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "economy is a kind of efficiency", "pln": ["(: cnet_isa_05fc067f2a (IsA economy efficiency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "economy is a kind of system", "pln": ["(: cnet_isa_a99196663c (IsA economy system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "economy of scale is a kind of economy", "pln": ["(: cnet_isa_6154289e39 (IsA economy_of_scale economy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ecosystem is a kind of system", "pln": ["(: cnet_isa_3d0711d16c (IsA ecosystem system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ecoterrorism is a kind of terrorism", "pln": ["(: cnet_isa_7be67f94ac (IsA ecoterrorism terrorism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ecotourism is a kind of tourism", "pln": ["(: cnet_isa_a8aff30f3c (IsA ecotourism tourism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ecphonesis is a kind of rhetorical device", "pln": ["(: cnet_isa_05c87a3592 (IsA ecphonesis rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ecstasy is a kind of drug", "pln": ["(: cnet_isa_ce5ba2fe92 (IsA ecstasy drug) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ecstasy is a kind of emotion", "pln": ["(: cnet_isa_e49b04c370 (IsA ecstasy emotion) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ecstasy is a kind of mdma", "pln": ["(: cnet_isa_d477bd93fb (IsA ecstasy mdma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ecstasy is a kind of bliss", "pln": ["(: cnet_isa_541d7a55a8 (IsA ecstasy bliss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ecstasy is a kind of emotional state", "pln": ["(: cnet_isa_5540bc6758 (IsA ecstasy emotional_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ectasia is a kind of dilatation", "pln": ["(: cnet_isa_d4b14b56cc (IsA ectasia dilatation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ectoderm is a kind of germ layer", "pln": ["(: cnet_isa_9d50fb0f45 (IsA ectoderm germ_layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ectomorph is a kind of person", "pln": ["(: cnet_isa_11f8ba47c9 (IsA ectomorph person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "ectopistes is a kind of bird genus", "pln": ["(: cnet_isa_8492ca4dad (IsA ectopistes bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ectoparasite is a kind of parasite", "pln": ["(: cnet_isa_d755d393d2 (IsA ectoparasite parasite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ectopia is a kind of position", "pln": ["(: cnet_isa_2029e28052 (IsA ectopia position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ectopic pregnancy is a kind of pregnancy", "pln": ["(: cnet_isa_995d45921e (IsA ectopic_pregnancy pregnancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ectopiste is a kind of bird genus", "pln": ["(: cnet_isa_f57096f84d (IsA ectopiste bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ectoplasm is a kind of cytoplasm", "pln": ["(: cnet_isa_3e45d76dd4 (IsA ectoplasm cytoplasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ectoplasm is a kind of emanation", "pln": ["(: cnet_isa_52d05542c2 (IsA ectoplasm emanation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ectoproct is a kind of invertebrate", "pln": ["(: cnet_isa_51c9561e85 (IsA ectoproct invertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ectoprocta is a kind of phylum", "pln": ["(: cnet_isa_936cff7fcd (IsA ectoprocta phylum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ectrodactyly is a kind of abnormality", "pln": ["(: cnet_isa_753456fcbb (IsA ectrodactyly abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ecuadoran is a kind of south american", "pln": ["(: cnet_isa_835d5ce2f6 (IsA ecuadoran south_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ecuadoran monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_ab70c1e6ca (IsA ecuadoran_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ecumenical council is a kind of council", "pln": ["(: cnet_isa_9869282f66 (IsA ecumenical_council council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ecumenical movement is a kind of religious movement", "pln": ["(: cnet_isa_70142c9e33 (IsA ecumenical_movement religious_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ecumenism is a kind of religious doctrine", "pln": ["(: cnet_isa_e6d4839571 (IsA ecumenism religious_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eczema is a kind of skin disease", "pln": ["(: cnet_isa_1c83b02cff (IsA eczema skin_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eczema herpeticum is a kind of eczema", "pln": ["(: cnet_isa_1143c13452 (IsA eczema_herpeticum eczema) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eczema vaccinatum is a kind of eczema", "pln": ["(: cnet_isa_f545fc71bd (IsA eczema_vaccinatum eczema) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eczema vaccinatum is a kind of eruption", "pln": ["(: cnet_isa_0856acd9f5 (IsA eczema_vaccinatum eruption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edacity is a kind of gluttony", "pln": ["(: cnet_isa_a83f913806 (IsA edacity gluttony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edacity is a kind of hunger", "pln": ["(: cnet_isa_3c19916d6d (IsA edacity hunger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "edam is a kind of cheese", "pln": ["(: cnet_isa_b10a9d1868 (IsA edam cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edaphosauridae is a kind of reptile family", "pln": ["(: cnet_isa_53466bc887 (IsA edaphosauridae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edaphosaurus is a kind of synapsid", "pln": ["(: cnet_isa_1f2d1ec426 (IsA edaphosaurus synapsid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edda is a kind of ballad", "pln": ["(: cnet_isa_ea42655a23 (IsA edda ballad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eddy is a kind of current", "pln": ["(: cnet_isa_75775c0a75 (IsA eddy current) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "edelweiss is a kind of wildflower", "pln": ["(: cnet_isa_7ef6be31ab (IsA edelweiss wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edema is a kind of swelling", "pln": ["(: cnet_isa_0472aed3e1 (IsA edema swelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eden is a kind of heaven", "pln": ["(: cnet_isa_35f297ec16 (IsA eden heaven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eden is a kind of region", "pln": ["(: cnet_isa_d62d1cf2ab (IsA eden region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "edentata is a kind of animal order", "pln": ["(: cnet_isa_18cccac61e (IsA edentata animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edentate is a kind of placental", "pln": ["(: cnet_isa_558c6081b6 (IsA edentate placental) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edge is a kind of limit", "pln": ["(: cnet_isa_b0f0149911 (IsA edge limit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edge is a kind of side", "pln": ["(: cnet_isa_9037584e2a (IsA edge side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edge is a kind of superiority", "pln": ["(: cnet_isa_9929882403 (IsA edge superiority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edge is a kind of urgency", "pln": ["(: cnet_isa_2f8a0b1d8c (IsA edge urgency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edge is a kind of boundary", "pln": ["(: cnet_isa_ec2be4ecb6 (IsA edge boundary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edge tool is a kind of cutter", "pln": ["(: cnet_isa_53d12c7411 (IsA edge_tool cutter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edger is a kind of garden tool", "pln": ["(: cnet_isa_cb0c0f2dae (IsA edger garden_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edger is a kind of needleworker", "pln": ["(: cnet_isa_78ee464e3d (IsA edger needleworker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edgeworth kuiper belt is a kind of region", "pln": ["(: cnet_isa_560d3b857f (IsA edgeworth_kuiper_belt region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edginess is a kind of anxiety", "pln": ["(: cnet_isa_5056b638b2 (IsA edginess anxiety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edging is a kind of border", "pln": ["(: cnet_isa_585932ea9a (IsA edging border) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edibility is a kind of property", "pln": ["(: cnet_isa_e2a61e9c28 (IsA edibility property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "edible banana is a kind of banana", "pln": ["(: cnet_isa_f679d9dd47 (IsA edible_banana banana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edible cockle is a kind of cockle", "pln": ["(: cnet_isa_7bccb7da2d (IsA edible_cockle cockle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edible fat is a kind of fat", "pln": ["(: cnet_isa_22e4e5d922 (IsA edible_fat fat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edible fruit is a kind of fruit", "pln": ["(: cnet_isa_711dc1d976 (IsA edible_fruit fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edible fruit is a kind of produce", "pln": ["(: cnet_isa_527b2a8ff3 (IsA edible_fruit produce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edible mussel is a kind of marine mussel", "pln": ["(: cnet_isa_d95e25216d (IsA edible_mussel marine_mussel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edible nut is a kind of nut", "pln": ["(: cnet_isa_acf66c7672 (IsA edible_nut nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edible pod pea is a kind of pea", "pln": ["(: cnet_isa_ae2b766bda (IsA edible_pod_pea pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edible sea urchin is a kind of sea urchin", "pln": ["(: cnet_isa_f25387e376 (IsA edible_sea_urchin sea_urchin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edible seed is a kind of seed", "pln": ["(: cnet_isa_519c9e9205 (IsA edible_seed seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edible snail is a kind of snail", "pln": ["(: cnet_isa_21cdbff12f (IsA edible_snail snail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edict is a kind of announcement", "pln": ["(: cnet_isa_ef2b764b53 (IsA edict announcement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edification is a kind of enlightenment", "pln": ["(: cnet_isa_1cd1ca9828 (IsA edification enlightenment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "editing is a kind of writing", "pln": ["(: cnet_isa_fe2d0a5093 (IsA editing writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "edition is a kind of impression", "pln": ["(: cnet_isa_32e7bf492a (IsA edition impression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "edition is a kind of issue", "pln": ["(: cnet_isa_687d24d3fd (IsA edition issue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edition is a kind of group", "pln": ["(: cnet_isa_d2658aa081 (IsA edition group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "editor is a kind of skilled worker", "pln": ["(: cnet_isa_31aabc4410 (IsA editor skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "editor program is a kind of application", "pln": ["(: cnet_isa_fd1d169298 (IsA editor_program application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "editorial department is a kind of business department", "pln": ["(: cnet_isa_a8ff584c77 (IsA editorial_department business_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "editorship is a kind of position", "pln": ["(: cnet_isa_1f1542345d (IsA editorship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edmonton is a kind of city of one million", "pln": ["(: cnet_isa_467bf5813f (IsA edmonton city_of_one_million) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edmontonia is a kind of ankylosaur", "pln": ["(: cnet_isa_05ac222598 (IsA edmontonia ankylosaur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edmontosaurus is a kind of hadrosaur", "pln": ["(: cnet_isa_837437fa90 (IsA edmontosaurus hadrosaur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "edo is a kind of nigerian", "pln": ["(: cnet_isa_2f22666d31 (IsA edo nigerian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "education is a kind of acquisition of knowledge and understanding", "pln": ["(: cnet_isa_0d0c012438 (IsA education acquisition_of_knowledge_and_understanding) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "education is a kind of activity", "pln": ["(: cnet_isa_39b7a6d8a1 (IsA education activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "education is a kind of upbringing", "pln": ["(: cnet_isa_3370ec9466 (IsA education upbringing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "education is a kind of content", "pln": ["(: cnet_isa_75d5985089 (IsA education content) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "education is a kind of learning", "pln": ["(: cnet_isa_0340db06b7 (IsA education learning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "education is a kind of profession", "pln": ["(: cnet_isa_33a8726b83 (IsA education profession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "education secretary is a kind of secretary", "pln": ["(: cnet_isa_3b9c293ca5 (IsA education_secretary secretary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "educational institution is a kind of institution", "pln": ["(: cnet_isa_2565ce6554 (IsA educational_institution institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "educational program is a kind of program", "pln": ["(: cnet_isa_fd3a21ab57 (IsA educational_program program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "educationist is a kind of specialist", "pln": ["(: cnet_isa_24b8efa7f7 (IsA educationist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "educator is a kind of professional", "pln": ["(: cnet_isa_80c45315ba (IsA educator professional) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edutainment is a kind of entertainment", "pln": ["(: cnet_isa_5f521d3f47 (IsA edutainment entertainment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "edwardian is a kind of sporting man", "pln": ["(: cnet_isa_c67e2b6dce (IsA edwardian sporting_man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eel is a kind of soft finned fish", "pln": ["(: cnet_isa_3267782dbe (IsA eel soft_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eel is a kind of fish", "pln": ["(: cnet_isa_48530f9937 (IsA eel fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eelblenny is a kind of prickleback", "pln": ["(: cnet_isa_49a3bcebda (IsA eelblenny prickleback) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eelgrass is a kind of aquatic plant", "pln": ["(: cnet_isa_cbbb6a4fce (IsA eelgrass aquatic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eelpout is a kind of blennioid fish", "pln": ["(: cnet_isa_c7382358b7 (IsA eelpout blennioid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eelworm is a kind of nematode", "pln": ["(: cnet_isa_55e0202ce4 (IsA eelworm nematode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eeriness is a kind of unfamiliarity", "pln": ["(: cnet_isa_e468785465 (IsA eeriness unfamiliarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "effacement is a kind of withdrawal", "pln": ["(: cnet_isa_8b1ca08b9d (IsA effacement withdrawal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "effacement is a kind of organic process", "pln": ["(: cnet_isa_a63ff45377 (IsA effacement organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "effect is a kind of impression", "pln": ["(: cnet_isa_262ac4a363 (IsA effect impression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "effect is a kind of meaning", "pln": ["(: cnet_isa_cf6762ef63 (IsA effect meaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "effect is a kind of validity", "pln": ["(: cnet_isa_86e411758a (IsA effect validity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "effect is a kind of symptom", "pln": ["(: cnet_isa_b7707fe4e6 (IsA effect symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "effecter is a kind of person", "pln": ["(: cnet_isa_ea6c2c1214 (IsA effecter person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "effectiveness is a kind of power", "pln": ["(: cnet_isa_c3741aec20 (IsA effectiveness power) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "effector is a kind of nerve fiber", "pln": ["(: cnet_isa_8ea5d4eb5c (IsA effector nerve_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "effector is a kind of organ", "pln": ["(: cnet_isa_1edbf3ad65 (IsA effector organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "effect is a kind of personal property", "pln": ["(: cnet_isa_c2dc59b3cb (IsA effect personal_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "effeminacy is a kind of femininity", "pln": ["(: cnet_isa_84b91adc5f (IsA effeminacy femininity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "effendi is a kind of turk", "pln": ["(: cnet_isa_bc56181a20 (IsA effendi turk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "efferent fiber is a kind of nerve fiber", "pln": ["(: cnet_isa_8e4586b2d7 (IsA efferent_fiber nerve_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "effervescence is a kind of natural process", "pln": ["(: cnet_isa_482f47f927 (IsA effervescence natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "efficacy is a kind of effectiveness", "pln": ["(: cnet_isa_a737993f9e (IsA efficacy effectiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "efficiency is a kind of skillfulness", "pln": ["(: cnet_isa_e88c42b3f7 (IsA efficiency skillfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "efficiency is a kind of ratio", "pln": ["(: cnet_isa_1939a8abab (IsA efficiency ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "efficiency apartment is a kind of apartment", "pln": ["(: cnet_isa_252fe7cb91 (IsA efficiency_apartment apartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "efficiency expert is a kind of expert", "pln": ["(: cnet_isa_9b40164483 (IsA efficiency_expert expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "effiel tower is a kind of in paris", "pln": ["(: cnet_isa_f260602910 (IsA effiel_tower in_paris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "effigy is a kind of representation", "pln": ["(: cnet_isa_64563fbed4 (IsA effigy representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "effleurage is a kind of massage", "pln": ["(: cnet_isa_0a57a2b414 (IsA effleurage massage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "efflorescence is a kind of crystallization", "pln": ["(: cnet_isa_c3ac25bd4b (IsA efflorescence crystallization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "effluent is a kind of waste", "pln": ["(: cnet_isa_79256d5c34 (IsA effluent waste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "effluvium is a kind of discharge", "pln": ["(: cnet_isa_c262dce847 (IsA effluvium discharge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "effort is a kind of labor", "pln": ["(: cnet_isa_98144476f8 (IsA effort labor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "effortfulness is a kind of difficulty", "pln": ["(: cnet_isa_7862206f86 (IsA effortfulness difficulty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "effortlessness is a kind of ease", "pln": ["(: cnet_isa_fda9dcbd3e (IsA effortlessness ease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "effusion is a kind of flood", "pln": ["(: cnet_isa_1a2efb909c (IsA effusion flood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "effusion is a kind of expression", "pln": ["(: cnet_isa_41b18a8faf (IsA effusion expression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "effusiveness is a kind of communicativeness", "pln": ["(: cnet_isa_1fa8395f6e (IsA effusiveness communicativeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eft is a kind of newt", "pln": ["(: cnet_isa_8cece4b241 (IsA eft newt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egalitarian is a kind of moralist", "pln": ["(: cnet_isa_78e9225b8b (IsA egalitarian moralist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egalitarianism is a kind of doctrine", "pln": ["(: cnet_isa_babbd6b051 (IsA egalitarianism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egalite is a kind of equality", "pln": ["(: cnet_isa_8596b9f528 (IsA egalite equality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egeria is a kind of monocot genus", "pln": ["(: cnet_isa_efcbae6202 (IsA egeria monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egg is a kind of ovum", "pln": ["(: cnet_isa_bfcc9a8a4b (IsA egg ovum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "egg is a kind of foodstuff", "pln": ["(: cnet_isa_43327d898f (IsA egg foodstuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egg and dart is a kind of molding", "pln": ["(: cnet_isa_0fd5fb636b (IsA egg_and_dart molding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egg cream is a kind of soft drink", "pln": ["(: cnet_isa_ed4530ec12 (IsA egg_cream soft_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egg foo yong is a kind of omelet", "pln": ["(: cnet_isa_d6746cfc42 (IsA egg_foo_yong omelet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egg noodle is a kind of noodle", "pln": ["(: cnet_isa_7c1c91fd91 (IsA egg_noodle noodle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egg roll is a kind of dish", "pln": ["(: cnet_isa_caff6d0d9a (IsA egg_roll dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egg timer is a kind of sandglass", "pln": ["(: cnet_isa_0da1be4154 (IsA egg_timer sandglass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egg white is a kind of ingredient", "pln": ["(: cnet_isa_bbea3bb46b (IsA egg_white ingredient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egg yolk is a kind of ingredient", "pln": ["(: cnet_isa_389cf31d4c (IsA egg_yolk ingredient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eggar is a kind of lasiocampid", "pln": ["(: cnet_isa_7fdfea2a70 (IsA eggar lasiocampid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eggbeater is a kind of beater", "pln": ["(: cnet_isa_0753c27842 (IsA eggbeater beater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eggbeater is a kind of mixer", "pln": ["(: cnet_isa_cebf621310 (IsA eggbeater mixer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eggcup is a kind of crockery", "pln": ["(: cnet_isa_4c03a3f88a (IsA eggcup crockery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eggdrop soup is a kind of soup", "pln": ["(: cnet_isa_d7de053296 (IsA eggdrop_soup soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egghead is a kind of intellectual", "pln": ["(: cnet_isa_b9438de6b6 (IsA egghead intellectual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eggnog is a kind of punch", "pln": ["(: cnet_isa_f5f8f45898 (IsA eggnog punch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eggplant is a kind of vegetable", "pln": ["(: cnet_isa_c3224127a2 (IsA eggplant vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eggplant is a kind of solanaceous vegetable", "pln": ["(: cnet_isa_76819818aa (IsA eggplant solanaceous_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eggplant is a kind of herb", "pln": ["(: cnet_isa_dc735982d7 (IsA eggplant herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egg is a kind of food", "pln": ["(: cnet_isa_ed0be57260 (IsA egg food) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egg benedict is a kind of dish", "pln": ["(: cnet_isa_2cdd9a8ec8 (IsA egg_benedict dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eggshake is a kind of milkshake", "pln": ["(: cnet_isa_0d0d058ff2 (IsA eggshake milkshake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ego is a kind of pride", "pln": ["(: cnet_isa_941e18d112 (IsA ego pride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ego is a kind of mind", "pln": ["(: cnet_isa_daaf3fac62 (IsA ego mind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ego ideal is a kind of ideal", "pln": ["(: cnet_isa_f0290857c0 (IsA ego_ideal ideal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "egocentric is a kind of selfish person", "pln": ["(: cnet_isa_959c3d9b4d (IsA egocentric selfish_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egoism is a kind of trait", "pln": ["(: cnet_isa_4190e9b535 (IsA egoism trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egoism is a kind of theory", "pln": ["(: cnet_isa_3c3fb75619 (IsA egoism theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egomania is a kind of mania", "pln": ["(: cnet_isa_4ca0019e12 (IsA egomania mania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egomaniac is a kind of egotist", "pln": ["(: cnet_isa_78779b8dea (IsA egomaniac egotist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "egotism is a kind of conceit", "pln": ["(: cnet_isa_76c8ab8e43 (IsA egotism conceit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egotist is a kind of unpleasant person", "pln": ["(: cnet_isa_245263a1c8 (IsA egotist unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "egress is a kind of act", "pln": ["(: cnet_isa_dac928eba4 (IsA egress act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egress is a kind of reappearance", "pln": ["(: cnet_isa_3e043da02f (IsA egress reappearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egret is a kind of heron", "pln": ["(: cnet_isa_b4e0323002 (IsA egret heron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egretta is a kind of bird genus", "pln": ["(: cnet_isa_6cd575ec66 (IsA egretta bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egypt is a kind of country", "pln": ["(: cnet_isa_a78fbec023 (IsA egypt country) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egypt is a kind of country in africa", "pln": ["(: cnet_isa_3a8213b71b (IsA egypt country_in_africa) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egyptian is a kind of afroasiatic", "pln": ["(: cnet_isa_c7782954c0 (IsA egyptian afroasiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "egyptian is a kind of african", "pln": ["(: cnet_isa_218a40fdaf (IsA egyptian african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egyptian cat is a kind of domestic cat", "pln": ["(: cnet_isa_ce94aee36d (IsA egyptian_cat domestic_cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egyptian cotton is a kind of cotton", "pln": ["(: cnet_isa_7c38bffdb1 (IsA egyptian_cotton cotton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "egyptian deity is a kind of deity", "pln": ["(: cnet_isa_b45d05fa3b (IsA egyptian_deity deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "egyptian grass is a kind of crabgrass", "pln": ["(: cnet_isa_1568d649c5 (IsA egyptian_grass crabgrass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "eidos is a kind of attribute", "pln": ["(: cnet_isa_10ad4f9955 (IsA eidos attribute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egyptian henbane is a kind of herb", "pln": ["(: cnet_isa_64902b1335 (IsA egyptian_henbane herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egyptian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_6cae1ed47a (IsA egyptian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egyptian pound is a kind of egyptian monetary unit", "pln": ["(: cnet_isa_d523a8e292 (IsA egyptian_pound egyptian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egyptian vulture is a kind of old world vulture", "pln": ["(: cnet_isa_fec1f0f779 (IsA egyptian_vulture old_world_vulture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egyptologist is a kind of archeologist", "pln": ["(: cnet_isa_55005d41dc (IsA egyptologist archeologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "egyptology is a kind of archeology", "pln": ["(: cnet_isa_ed18b0b93b (IsA egyptology archeology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eichhornia is a kind of monocot genus", "pln": ["(: cnet_isa_a46c49e04c (IsA eichhornia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eicosapentaenoic acid is a kind of omega 3 fatty acid", "pln": ["(: cnet_isa_48323bd2d3 (IsA eicosapentaenoic_acid omega_3_fatty_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eider is a kind of sea duck", "pln": ["(: cnet_isa_70243d17f7 (IsA eider sea_duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eiderdown is a kind of duck down", "pln": ["(: cnet_isa_e82d9fce27 (IsA eiderdown duck_down) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eiderdown is a kind of quilt", "pln": ["(: cnet_isa_95749dc28a (IsA eiderdown quilt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eido is a kind of attribute", "pln": ["(: cnet_isa_ae231b7730 (IsA eido attribute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eiffel tower is a kind of in france", "pln": ["(: cnet_isa_aa7cd63130 (IsA eiffel_tower in_france) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eiffel tower is a kind of in paris", "pln": ["(: cnet_isa_ad55d1e50c (IsA eiffel_tower in_paris) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eiffel tower is a kind of in paris france", "pln": ["(: cnet_isa_639e52ece7 (IsA eiffel_tower in_paris_france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eiffel tower in paris is a kind of in france", "pln": ["(: cnet_isa_1e5d9abca5 (IsA eiffel_tower_in_paris in_france) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eight is a kind of digit", "pln": ["(: cnet_isa_13786be207 (IsA eight digit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eight ball is a kind of pool ball", "pln": ["(: cnet_isa_ab4f362147 (IsA eight_ball pool_ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eight spot is a kind of spot", "pln": ["(: cnet_isa_455b4a9404 (IsA eight_spot spot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eighteen is a kind of large integer", "pln": ["(: cnet_isa_83ed8b0b3b (IsA eighteen large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eighteenth is a kind of rank", "pln": ["(: cnet_isa_fb0f1a2936 (IsA eighteenth rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "eighties is a kind of time of life", "pln": ["(: cnet_isa_cc8940d46d (IsA eighties time_of_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "elaidic acid is a kind of trans fatty acid", "pln": ["(: cnet_isa_260a4ad9c9 (IsA elaidic_acid trans_fatty_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eighth is a kind of rank", "pln": ["(: cnet_isa_b276704c63 (IsA eighth rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eighth note is a kind of note", "pln": ["(: cnet_isa_b34a33fb98 (IsA eighth_note note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eighty is a kind of decade", "pln": ["(: cnet_isa_e0c8f000c6 (IsA eighty decade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eighty is a kind of time of life", "pln": ["(: cnet_isa_317f705f49 (IsA eighty time_of_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eightieth is a kind of rank", "pln": ["(: cnet_isa_58b289bb2a (IsA eightieth rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eightpence is a kind of coin", "pln": ["(: cnet_isa_29f7b460d0 (IsA eightpence coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eightpenny nail is a kind of nail", "pln": ["(: cnet_isa_2265b87276 (IsA eightpenny_nail nail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eightsome is a kind of reel", "pln": ["(: cnet_isa_18eae325dd (IsA eightsome reel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eighty is a kind of large integer", "pln": ["(: cnet_isa_bcbafe9249 (IsA eighty large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eimeriidae is a kind of protoctist family", "pln": ["(: cnet_isa_c9ddbd7b9d (IsA eimeriidae protoctist_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "einsteinium is a kind of metallic element", "pln": ["(: cnet_isa_8c2091f89e (IsA einsteinium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eira is a kind of mammal genus", "pln": ["(: cnet_isa_d044a6f961 (IsA eira mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eisegesis is a kind of interpretation", "pln": ["(: cnet_isa_fa67aa6a44 (IsA eisegesis interpretation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eisteddfod is a kind of festival", "pln": ["(: cnet_isa_1477b2f80b (IsA eisteddfod festival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eitchen midden is a kind of dump", "pln": ["(: cnet_isa_59a459ca64 (IsA eitchen_midden dump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ejaculation is a kind of exclamation", "pln": ["(: cnet_isa_85d075b653 (IsA ejaculation exclamation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ejaculation is a kind of discharge", "pln": ["(: cnet_isa_92cab5d577 (IsA ejaculation discharge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ejaculator is a kind of man", "pln": ["(: cnet_isa_806feec212 (IsA ejaculator man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ejaculator is a kind of speaker", "pln": ["(: cnet_isa_3150c96e3e (IsA ejaculator speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ejaculatory duct is a kind of duct", "pln": ["(: cnet_isa_653b70553b (IsA ejaculatory_duct duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ejection is a kind of banishment", "pln": ["(: cnet_isa_a3a86a5f3b (IsA ejection banishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ejection seat is a kind of seat", "pln": ["(: cnet_isa_5ca3533cb7 (IsA ejection_seat seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "el dorado is a kind of imaginary place", "pln": ["(: cnet_isa_6482c7bc43 (IsA el_dorado imaginary_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "el nino is a kind of ocean current", "pln": ["(: cnet_isa_cd746db1fe (IsA el_nino ocean_current) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "el nino southern oscillation is a kind of el nino", "pln": ["(: cnet_isa_fbaf63896f (IsA el_nino_southern_oscillation el_nino) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "el salvadoran monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_6157dacb49 (IsA el_salvadoran_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elaborateness is a kind of complexity", "pln": ["(: cnet_isa_efc340050e (IsA elaborateness complexity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elaboration is a kind of development", "pln": ["(: cnet_isa_46e78d23ec (IsA elaboration development) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elaeagnaceae is a kind of dicot family", "pln": ["(: cnet_isa_e4c9aefb9a (IsA elaeagnaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elaeagnus is a kind of dicot genus", "pln": ["(: cnet_isa_3be7b4649a (IsA elaeagnus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elaeis is a kind of monocot genus", "pln": ["(: cnet_isa_cc91ca04dd (IsA elaeis monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elaeocarpaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_7b86110202 (IsA elaeocarpaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elaeocarpus is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_b0945626a6 (IsA elaeocarpus dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elagatis is a kind of fish genus", "pln": ["(: cnet_isa_cf6cd98cab (IsA elagatis fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elaidic acid is a kind of monounsaturated fatty acid", "pln": ["(: cnet_isa_679d338050 (IsA elaidic_acid monounsaturated_fatty_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elaidic acid is a kind of tran fatty acid", "pln": ["(: cnet_isa_83bec22323 (IsA elaidic_acid tran_fatty_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elamite is a kind of white person", "pln": ["(: cnet_isa_70deeca982 (IsA elamite white_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "elamitic is a kind of natural language", "pln": ["(: cnet_isa_dd24ac7817 (IsA elamitic natural_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "elan is a kind of liveliness", "pln": ["(: cnet_isa_79deff3bde (IsA elan liveliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eland is a kind of antelope", "pln": ["(: cnet_isa_ed9c8d9c06 (IsA eland antelope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elanoide is a kind of bird genus", "pln": ["(: cnet_isa_8b999980d0 (IsA elanoide bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elanus is a kind of bird genus", "pln": ["(: cnet_isa_2eed8aafac (IsA elanus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elaphe is a kind of reptile genus", "pln": ["(: cnet_isa_791e57729b (IsA elaphe reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elaphurus is a kind of mammal genus", "pln": ["(: cnet_isa_773321c565 (IsA elaphurus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elapid is a kind of snake", "pln": ["(: cnet_isa_0c9bd457ec (IsA elapid snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elapidae is a kind of reptile family", "pln": ["(: cnet_isa_547e84094c (IsA elapidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elapsed time is a kind of time period", "pln": ["(: cnet_isa_23c236376c (IsA elapsed_time time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elasmobranch is a kind of cartilaginous fish", "pln": ["(: cnet_isa_4211ed87db (IsA elasmobranch cartilaginous_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elasmobranchii is a kind of class", "pln": ["(: cnet_isa_64e1bc4877 (IsA elasmobranchii class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "elastance is a kind of electrical phenomenon", "pln": ["(: cnet_isa_85063e63ac (IsA elastance electrical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elastance unit is a kind of electromagnetic unit", "pln": ["(: cnet_isa_37d2e1c3d4 (IsA elastance_unit electromagnetic_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elastase is a kind of enzyme", "pln": ["(: cnet_isa_6fa71756c5 (IsA elastase enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elastic is a kind of fabric", "pln": ["(: cnet_isa_31af67f4f3 (IsA elastic fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elastic bandage is a kind of bandage", "pln": ["(: cnet_isa_954ab4af42 (IsA elastic_bandage bandage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elastic device is a kind of device", "pln": ["(: cnet_isa_ef49158a0d (IsA elastic_device device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elastic energy is a kind of potential energy", "pln": ["(: cnet_isa_daceaa346a (IsA elastic_energy potential_energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elastic tissue is a kind of connective tissue", "pln": ["(: cnet_isa_791a75afa8 (IsA elastic_tissue connective_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elasticity is a kind of physical property", "pln": ["(: cnet_isa_e8eb6dee91 (IsA elasticity physical_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elasticity of shear is a kind of elasticity", "pln": ["(: cnet_isa_bb767c0acc (IsA elasticity_of_shear elasticity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elastin is a kind of scleroprotein", "pln": ["(: cnet_isa_db76372cd2 (IsA elastin scleroprotein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elastomer is a kind of material", "pln": ["(: cnet_isa_bf6f1b4a1b (IsA elastomer material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elastosis is a kind of physiological state", "pln": ["(: cnet_isa_382154b8bb (IsA elastosis physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elaterid beetle is a kind of beetle", "pln": ["(: cnet_isa_ab17f12e44 (IsA elaterid_beetle beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elateridae is a kind of arthropod family", "pln": ["(: cnet_isa_2808dbe829 (IsA elateridae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "elation is a kind of joy", "pln": ["(: cnet_isa_6eb91fa303 (IsA elation joy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elation is a kind of psychological state", "pln": ["(: cnet_isa_a074a131b0 (IsA elation psychological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "elbow is a kind of joint", "pln": ["(: cnet_isa_754749fbd7 (IsA elbow joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elbow is a kind of bend", "pln": ["(: cnet_isa_f8b56ecdc2 (IsA elbow bend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elbow is a kind of cloth covering", "pln": ["(: cnet_isa_76d02f32c2 (IsA elbow cloth_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elbow is a kind of pipe", "pln": ["(: cnet_isa_cef267ba22 (IsA elbow pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elbow is a kind of hinge joint", "pln": ["(: cnet_isa_4ca469b0ed (IsA elbow hinge_joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elbow pad is a kind of protective garment", "pln": ["(: cnet_isa_aab4ffc6be (IsA elbow_pad protective_garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elbowing is a kind of jostle", "pln": ["(: cnet_isa_14ded1b033 (IsA elbowing jostle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elder is a kind of adult", "pln": ["(: cnet_isa_2eb18ff1b9 (IsA elder adult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elder is a kind of church officer", "pln": ["(: cnet_isa_e1f146e1c1 (IsA elder church_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elder is a kind of shrub", "pln": ["(: cnet_isa_ec30c3ddf1 (IsA elder shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elder statesman is a kind of important person", "pln": ["(: cnet_isa_2df2e16f66 (IsA elder_statesman important_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elder statesman is a kind of statesman", "pln": ["(: cnet_isa_1d450c601a (IsA elder_statesman statesman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elderberry is a kind of drupe", "pln": ["(: cnet_isa_8d40600ca4 (IsA elderberry drupe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elderberry is a kind of edible fruit", "pln": ["(: cnet_isa_4a51ffb7f2 (IsA elderberry edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eldership is a kind of position", "pln": ["(: cnet_isa_6965a81a1a (IsA eldership position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eldest hand is a kind of card player", "pln": ["(: cnet_isa_e75dfba12d (IsA eldest_hand card_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elecampane is a kind of inula", "pln": ["(: cnet_isa_7b21562f09 (IsA elecampane inula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "elected official is a kind of official", "pln": ["(: cnet_isa_019cdb3656 (IsA elected_official official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "election is a kind of choice", "pln": ["(: cnet_isa_c4ea0f84ab (IsA election choice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "election is a kind of vote", "pln": ["(: cnet_isa_6464f61896 (IsA election vote) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "election is a kind of predestination", "pln": ["(: cnet_isa_3d6f3834d0 (IsA election predestination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "election is a kind of status", "pln": ["(: cnet_isa_a2109cee8a (IsA election status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "election commission is a kind of committee", "pln": ["(: cnet_isa_f892860da6 (IsA election_commission committee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "election fraud is a kind of fraud", "pln": ["(: cnet_isa_1b945457d6 (IsA election_fraud fraud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "electioneering is a kind of persuasion", "pln": ["(: cnet_isa_2abd7a73a9 (IsA electioneering persuasion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "election is a kind of event", "pln": ["(: cnet_isa_e8e3c7d3b9 (IsA election event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elective course is a kind of course", "pln": ["(: cnet_isa_ed557adb0b (IsA elective_course course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elector is a kind of prince", "pln": ["(: cnet_isa_44783f03f8 (IsA elector prince) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electoral college is a kind of body", "pln": ["(: cnet_isa_1db548e13d (IsA electoral_college body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electorate is a kind of citizenry", "pln": ["(: cnet_isa_7b7b0ae8ca (IsA electorate citizenry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electra complex is a kind of complex", "pln": ["(: cnet_isa_796386a1bf (IsA electra_complex complex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric is a kind of car", "pln": ["(: cnet_isa_d9ff04eab5 (IsA electric car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric bell is a kind of bell", "pln": ["(: cnet_isa_3e245e5abd (IsA electric_bell bell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric bill is a kind of bill", "pln": ["(: cnet_isa_b6ddaa78c7 (IsA electric_bill bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric blanket is a kind of blanket", "pln": ["(: cnet_isa_e211333cb1 (IsA electric_blanket blanket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric burn is a kind of burn", "pln": ["(: cnet_isa_1bdbab8fd0 (IsA electric_burn burn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric catfish is a kind of silurid", "pln": ["(: cnet_isa_568130e83a (IsA electric_catfish silurid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric chair is a kind of instrument of execution", "pln": ["(: cnet_isa_b2fae58ac5 (IsA electric_chair instrument_of_execution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric clock is a kind of clock", "pln": ["(: cnet_isa_5670b1237e (IsA electric_clock clock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric dipole is a kind of dipole", "pln": ["(: cnet_isa_2b60679d00 (IsA electric_dipole dipole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric dipole moment is a kind of dipole moment", "pln": ["(: cnet_isa_26b90ed64d (IsA electric_dipole_moment dipole_moment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric discharge lamp is a kind of electric lamp", "pln": ["(: cnet_isa_3c479ae9e5 (IsA electric_discharge_lamp electric_lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric drill is a kind of power drill", "pln": ["(: cnet_isa_efc6a3b3fa (IsA electric_drill power_drill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric eel is a kind of fish", "pln": ["(: cnet_isa_be774e39b4 (IsA electric_eel fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric eel is a kind of cypriniform fish", "pln": ["(: cnet_isa_16c4c723fa (IsA electric_eel cypriniform_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric fan is a kind of fan", "pln": ["(: cnet_isa_0236cd19ad (IsA electric_fan fan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric field is a kind of field", "pln": ["(: cnet_isa_c8df0e356e (IsA electric_field field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "electric frying pan is a kind of frying pan", "pln": ["(: cnet_isa_25358d1cba (IsA electric_frying_pan frying_pan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "electric furnace is a kind of furnace", "pln": ["(: cnet_isa_9028edde36 (IsA electric_furnace furnace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "electric range is a kind of white goods", "pln": ["(: cnet_isa_2c7b7c0067 (IsA electric_range white_goods) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric guitar is a kind of guitar", "pln": ["(: cnet_isa_92883e8bed (IsA electric_guitar guitar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric hammer is a kind of hammer", "pln": ["(: cnet_isa_7e07b635f2 (IsA electric_hammer hammer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric heater is a kind of space heater", "pln": ["(: cnet_isa_59221c8907 (IsA electric_heater space_heater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric lamp is a kind of lamp", "pln": ["(: cnet_isa_893c629d3e (IsA electric_lamp lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric locomotive is a kind of locomotive", "pln": ["(: cnet_isa_9ea17c23d4 (IsA electric_locomotive locomotive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric main is a kind of main", "pln": ["(: cnet_isa_553f9934b5 (IsA electric_main main) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric meter is a kind of meter", "pln": ["(: cnet_isa_8ecbf2b887 (IsA electric_meter meter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric mixer is a kind of mixer", "pln": ["(: cnet_isa_239e30f619 (IsA electric_mixer mixer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric motor is a kind of motor", "pln": ["(: cnet_isa_795720da8d (IsA electric_motor motor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric organ is a kind of electronic instrument", "pln": ["(: cnet_isa_3b5a46ec3d (IsA electric_organ electronic_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric potential is a kind of electrical phenomenon", "pln": ["(: cnet_isa_49fbe6b257 (IsA electric_potential electrical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric range is a kind of stove", "pln": ["(: cnet_isa_ea13bd8112 (IsA electric_range stove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric range is a kind of white good", "pln": ["(: cnet_isa_df90ca7871 (IsA electric_range white_good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric ray is a kind of ray", "pln": ["(: cnet_isa_1a1ae593b4 (IsA electric_ray ray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "electric refrigerator is a kind of refrigerator", "pln": ["(: cnet_isa_5223d630ce (IsA electric_refrigerator refrigerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric resistance is a kind of electrical phenomenon", "pln": ["(: cnet_isa_2b3ca8e29e (IsA electric_resistance electrical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric shock is a kind of corporal punishment", "pln": ["(: cnet_isa_3fa88d967d (IsA electric_shock corporal_punishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric shock is a kind of reflex", "pln": ["(: cnet_isa_94a8a45c28 (IsA electric_shock reflex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric shock is a kind of torture", "pln": ["(: cnet_isa_7844258a69 (IsA electric_shock torture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric shock is a kind of injury", "pln": ["(: cnet_isa_e8200e63db (IsA electric_shock injury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric socket is a kind of socket", "pln": ["(: cnet_isa_d3e3016b93 (IsA electric_socket socket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric toothbrush is a kind of toothbrush", "pln": ["(: cnet_isa_ba822e64b8 (IsA electric_toothbrush toothbrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric typewriter is a kind of typewriter", "pln": ["(: cnet_isa_93620aa9bf (IsA electric_typewriter typewriter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electric vehicle is a kind of vehicle", "pln": ["(: cnet_isa_6aba6e3cbd (IsA electric_vehicle vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrical cable is a kind of cable", "pln": ["(: cnet_isa_02fba009c1 (IsA electrical_cable cable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrical conduction is a kind of conduction", "pln": ["(: cnet_isa_af983da280 (IsA electrical_conduction conduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "electrical contact is a kind of contact", "pln": ["(: cnet_isa_b7ca074245 (IsA electrical_contact contact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrical converter is a kind of converter", "pln": ["(: cnet_isa_2710703efb (IsA electrical_converter converter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrical device is a kind of device", "pln": ["(: cnet_isa_1021de0224 (IsA electrical_device device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrical discharge is a kind of discharge", "pln": ["(: cnet_isa_6384ae1955 (IsA electrical_discharge discharge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrical disturbance is a kind of electrical phenomenon", "pln": ["(: cnet_isa_4c3deadc0f (IsA electrical_disturbance electrical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrical engineer is a kind of engineer", "pln": ["(: cnet_isa_cf164cc097 (IsA electrical_engineer engineer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "electrical engineering is a kind of engineering", "pln": ["(: cnet_isa_cfb17ab858 (IsA electrical_engineering engineering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrical line of force is a kind of line of force", "pln": ["(: cnet_isa_76667a4d00 (IsA electrical_line_of_force line_of_force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrical phenomenon is a kind of physical phenomenon", "pln": ["(: cnet_isa_872d9a337e (IsA electrical_phenomenon physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrical power is a kind of power", "pln": ["(: cnet_isa_b7ef4dafc7 (IsA electrical_power power) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrical system is a kind of equipment", "pln": ["(: cnet_isa_1618d21243 (IsA electrical_system equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrical system is a kind of utility", "pln": ["(: cnet_isa_1fe15ec392 (IsA electrical_system utility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrical work is a kind of trade", "pln": ["(: cnet_isa_5d705ddc7b (IsA electrical_work trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrician is a kind of skilled worker", "pln": ["(: cnet_isa_c283a8a3d3 (IsA electrician skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electricity is a kind of stir", "pln": ["(: cnet_isa_63dc07e765 (IsA electricity stir) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electricity is a kind of energy", "pln": ["(: cnet_isa_6e51542693 (IsA electricity energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electricity is a kind of physical phenomenon", "pln": ["(: cnet_isa_5718a791e4 (IsA electricity physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrification is a kind of energizing", "pln": ["(: cnet_isa_6b01a0d815 (IsA electrification energizing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrification is a kind of exploitation", "pln": ["(: cnet_isa_e62f332774 (IsA electrification exploitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electro acoustic transducer is a kind of transducer", "pln": ["(: cnet_isa_2921e16b7b (IsA electro_acoustic_transducer transducer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrocardiogram is a kind of graph", "pln": ["(: cnet_isa_3b85555034 (IsA electrocardiogram graph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "electrocautery is a kind of thermocautery", "pln": ["(: cnet_isa_0fe574d19c (IsA electrocautery thermocautery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrochemistry is a kind of chemistry", "pln": ["(: cnet_isa_d61f4578aa (IsA electrochemistry chemistry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "electroconvulsive therapy is a kind of galvanism", "pln": ["(: cnet_isa_694319d67b (IsA electroconvulsive_therapy galvanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electroconvulsive therapy is a kind of shock therapy", "pln": ["(: cnet_isa_579344b168 (IsA electroconvulsive_therapy shock_therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrocution is a kind of execution", "pln": ["(: cnet_isa_189c390be8 (IsA electrocution execution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrocution is a kind of killing", "pln": ["(: cnet_isa_8f5c7a769a (IsA electrocution killing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "electrocutioner is a kind of executioner", "pln": ["(: cnet_isa_e658b5ecfc (IsA electrocutioner executioner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrode is a kind of conductor", "pln": ["(: cnet_isa_eab778f459 (IsA electrode conductor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrodeposition is a kind of deposition", "pln": ["(: cnet_isa_d7c43a36a7 (IsA electrodeposition deposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrodynamometer is a kind of measuring instrument", "pln": ["(: cnet_isa_666c6d7196 (IsA electrodynamometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electroencephalogram is a kind of graph", "pln": ["(: cnet_isa_e91c53cd1b (IsA electroencephalogram graph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electroencephalograph is a kind of medical instrument", "pln": ["(: cnet_isa_7d3ad92cc8 (IsA electroencephalograph medical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrograph is a kind of apparatus", "pln": ["(: cnet_isa_f931cf214e (IsA electrograph apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrograph is a kind of electrical device", "pln": ["(: cnet_isa_ac040600b2 (IsA electrograph electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrologist is a kind of health professional", "pln": ["(: cnet_isa_6828eef8a1 (IsA electrologist health_professional) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrolysis is a kind of depilation", "pln": ["(: cnet_isa_ba374663e3 (IsA electrolysis depilation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrolysis is a kind of decomposition", "pln": ["(: cnet_isa_cedf6f675a (IsA electrolysis decomposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrolyte is a kind of solution", "pln": ["(: cnet_isa_f5f409c284 (IsA electrolyte solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrolyte balance is a kind of balance", "pln": ["(: cnet_isa_1a7e7d8ad5 (IsA electrolyte_balance balance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrolytic is a kind of capacitor", "pln": ["(: cnet_isa_0a87e05daa (IsA electrolytic capacitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrolytic cell is a kind of cell", "pln": ["(: cnet_isa_69936c1d86 (IsA electrolytic_cell cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electromagnet is a kind of magnet", "pln": ["(: cnet_isa_b9437ae306 (IsA electromagnet magnet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "electromagnetic delay line is a kind of delay line", "pln": ["(: cnet_isa_7114266415 (IsA electromagnetic_delay_line delay_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electromagnetic interaction is a kind of interaction", "pln": ["(: cnet_isa_6b22917727 (IsA electromagnetic_interaction interaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electromagnetic intrusion is a kind of electronic warfare", "pln": ["(: cnet_isa_35b831fd35 (IsA electromagnetic_intrusion electronic_warfare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "electromagnetic radiation is a kind of radiation", "pln": ["(: cnet_isa_ac2f6a92e7 (IsA electromagnetic_radiation radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "electromagnetism is a kind of physics", "pln": ["(: cnet_isa_23d8ea60de (IsA electromagnetism physics) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electromagnetic spectrum is a kind of spectrum", "pln": ["(: cnet_isa_8c020ec0b0 (IsA electromagnetic_spectrum spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electromagnetic unit is a kind of unit of measurement", "pln": ["(: cnet_isa_b4ec0c1fbc (IsA electromagnetic_unit unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electromagnetism is a kind of physic", "pln": ["(: cnet_isa_55d9374dc4 (IsA electromagnetism physic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electromagnetism is a kind of magnetism", "pln": ["(: cnet_isa_0db568d9d9 (IsA electromagnetism magnetism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electromechanical device is a kind of mechanical device", "pln": ["(: cnet_isa_2809a3a7ca (IsA electromechanical_device mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrometer is a kind of meter", "pln": ["(: cnet_isa_baaa1debce (IsA electrometer meter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electromotive sery is a kind of sery", "pln": ["(: cnet_isa_1ef940eb11 (IsA electromotive_sery sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electromyogram is a kind of myogram", "pln": ["(: cnet_isa_390224264f (IsA electromyogram myogram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "electromyograph is a kind of medical instrument", "pln": ["(: cnet_isa_8e6500cefc (IsA electromyograph medical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "electron optics is a kind of electronics", "pln": ["(: cnet_isa_b438e038ce (IsA electron_optics electronics) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electromyography is a kind of diagnostic procedure", "pln": ["(: cnet_isa_721254d7ce (IsA electromyography diagnostic_procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electron is a kind of elementary particle", "pln": ["(: cnet_isa_b7e746c1c5 (IsA electron elementary_particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electron is a kind of lepton", "pln": ["(: cnet_isa_6b19c0e05e (IsA electron lepton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electron accelerator is a kind of collider", "pln": ["(: cnet_isa_521190b09e (IsA electron_accelerator collider) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electron gun is a kind of electrode", "pln": ["(: cnet_isa_6ff5e6c6e2 (IsA electron_gun electrode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electron microscope is a kind of microscope", "pln": ["(: cnet_isa_9ab797fc0c (IsA electron_microscope microscope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electron microscopy is a kind of microscopy", "pln": ["(: cnet_isa_4bff0eefd1 (IsA electron_microscopy microscopy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electron multiplier is a kind of tube", "pln": ["(: cnet_isa_79548c38d4 (IsA electron_multiplier tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electron optic is a kind of electronic", "pln": ["(: cnet_isa_6c9462b839 (IsA electron_optic electronic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electron shell is a kind of group", "pln": ["(: cnet_isa_7cf5f8bf38 (IsA electron_shell group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "electron spin resonance is a kind of microwave spectroscopy", "pln": ["(: cnet_isa_33f9986d1d (IsA electron_spin_resonance microwave_spectroscopy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electron volt is a kind of work unit", "pln": ["(: cnet_isa_10c46efb65 (IsA electron_volt work_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electronegativity is a kind of tendency", "pln": ["(: cnet_isa_dad73966f1 (IsA electronegativity tendency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "electronic balance is a kind of balance", "pln": ["(: cnet_isa_cafa6ab066 (IsA electronic_balance balance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "electronic counter countermeasures is a kind of electronic warfare", "pln": ["(: cnet_isa_575c6e7e66 (IsA electronic_counter_countermeasures electronic_warfare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electronic communication is a kind of transmission", "pln": ["(: cnet_isa_c4a724d030 (IsA electronic_communication transmission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electronic converter is a kind of converter", "pln": ["(: cnet_isa_b4144654f5 (IsA electronic_converter converter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electronic counter countermeasure is a kind of electronic warfare", "pln": ["(: cnet_isa_de92d6a6d0 (IsA electronic_counter_countermeasure electronic_warfare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electronic countermeasure is a kind of electronic warfare", "pln": ["(: cnet_isa_2f5b64cddc (IsA electronic_countermeasure electronic_warfare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electronic data processing is a kind of automatic data processing", "pln": ["(: cnet_isa_b6df444808 (IsA electronic_data_processing automatic_data_processing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electronic database is a kind of database", "pln": ["(: cnet_isa_8298dd39aa (IsA electronic_database database) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electronic deception is a kind of electronic countermeasure", "pln": ["(: cnet_isa_efc2b8eb5f (IsA electronic_deception electronic_countermeasure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electronic device is a kind of device", "pln": ["(: cnet_isa_7d994f602c (IsA electronic_device device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electronic equipment is a kind of equipment", "pln": ["(: cnet_isa_8aa284be34 (IsA electronic_equipment equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electronic fetal monitor is a kind of monitor", "pln": ["(: cnet_isa_f1da6a0894 (IsA electronic_fetal_monitor monitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electronic instrument is a kind of musical instrument", "pln": ["(: cnet_isa_e22b9a271c (IsA electronic_instrument musical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electronic mail is a kind of electronic communication", "pln": ["(: cnet_isa_cb3c2f8e92 (IsA electronic_mail electronic_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electronic reconnaissance is a kind of reconnaissance", "pln": ["(: cnet_isa_262fa88c8f (IsA electronic_reconnaissance reconnaissance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electronic signal is a kind of signal", "pln": ["(: cnet_isa_5b94a60281 (IsA electronic_signal signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "electronic surveillance is a kind of surveillance", "pln": ["(: cnet_isa_3fe5ba0be5 (IsA electronic_surveillance surveillance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electronic text is a kind of text", "pln": ["(: cnet_isa_438b745231 (IsA electronic_text text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electronic voltmeter is a kind of voltmeter", "pln": ["(: cnet_isa_014b561a4f (IsA electronic_voltmeter voltmeter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electronic warfare is a kind of military action", "pln": ["(: cnet_isa_7205dcf461 (IsA electronic_warfare military_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electronic warfare support measure is a kind of electronic warfare", "pln": ["(: cnet_isa_e456566c85 (IsA electronic_warfare_support_measure electronic_warfare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electronic is a kind of physic", "pln": ["(: cnet_isa_95812711c5 (IsA electronic physic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electronic company is a kind of company", "pln": ["(: cnet_isa_b3bea8cf92 (IsA electronic_company company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electronic industry is a kind of industry", "pln": ["(: cnet_isa_71d99c1cc9 (IsA electronic_industry industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electronic intelligence is a kind of signal intelligence", "pln": ["(: cnet_isa_236acbc5f5 (IsA electronic_intelligence signal_intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "electrophoresis is a kind of natural process", "pln": ["(: cnet_isa_550c519c29 (IsA electrophoresis natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "electrophoridae is a kind of fish family", "pln": ["(: cnet_isa_2a450304d6 (IsA electrophoridae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "electrostatics is a kind of physics", "pln": ["(: cnet_isa_7ac555f211 (IsA electrostatics physics) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrophorus is a kind of fish genus", "pln": ["(: cnet_isa_354016a9ba (IsA electrophorus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrophorus is a kind of electrostatic generator", "pln": ["(: cnet_isa_0a2b304b15 (IsA electrophorus electrostatic_generator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electroplate is a kind of artifact", "pln": ["(: cnet_isa_0c198fa1f5 (IsA electroplate artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electroplater is a kind of plater", "pln": ["(: cnet_isa_51387d19de (IsA electroplater plater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electroretinogram is a kind of graph", "pln": ["(: cnet_isa_28a06c0df0 (IsA electroretinogram graph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electroscope is a kind of measuring instrument", "pln": ["(: cnet_isa_0d7d168817 (IsA electroscope measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrosleep is a kind of unconsciousness", "pln": ["(: cnet_isa_89cecf06ff (IsA electrosleep unconsciousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrostatic charge is a kind of charge", "pln": ["(: cnet_isa_c467610329 (IsA electrostatic_charge charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrostatic field is a kind of electric field", "pln": ["(: cnet_isa_228a41d463 (IsA electrostatic_field electric_field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrostatic generator is a kind of electrical device", "pln": ["(: cnet_isa_ced0e8c5ee (IsA electrostatic_generator electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrostatic precipitation is a kind of industrial process", "pln": ["(: cnet_isa_ff9e7af14e (IsA electrostatic_precipitation industrial_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrostatic printer is a kind of printer", "pln": ["(: cnet_isa_3354420913 (IsA electrostatic_printer printer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrostatic unit is a kind of unit of measurement", "pln": ["(: cnet_isa_1d083d8f9a (IsA electrostatic_unit unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrostatic is a kind of physic", "pln": ["(: cnet_isa_418ddd2722 (IsA electrostatic physic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrosurgery is a kind of operation", "pln": ["(: cnet_isa_5eb8bccba9 (IsA electrosurgery operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrotherapist is a kind of therapist", "pln": ["(: cnet_isa_3641cb0c7c (IsA electrotherapist therapist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "electrum is a kind of alloy", "pln": ["(: cnet_isa_6e8579c06e (IsA electrum alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elegance is a kind of quality", "pln": ["(: cnet_isa_38ff57c23b (IsA elegance quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elegant brodiaea is a kind of brodiaea", "pln": ["(: cnet_isa_84cb1b752e (IsA elegant_brodiaea brodiaea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elegant habenaria is a kind of rein orchid", "pln": ["(: cnet_isa_0008050e35 (IsA elegant_habenaria rein_orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elegiac stanza is a kind of quatrain", "pln": ["(: cnet_isa_0f7fb55553 (IsA elegiac_stanza quatrain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elegist is a kind of poet", "pln": ["(: cnet_isa_d97be86661 (IsA elegist poet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elegy is a kind of poem", "pln": ["(: cnet_isa_2d6beb27e9 (IsA elegy poem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "element is a kind of environment", "pln": ["(: cnet_isa_59a016bfdd (IsA element environment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "element is a kind of straight line", "pln": ["(: cnet_isa_ba7190e700 (IsA element straight_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "element is a kind of situation", "pln": ["(: cnet_isa_09d8a479f3 (IsA element situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "element is a kind of substance", "pln": ["(: cnet_isa_4503660dc3 (IsA element substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "element of cone is a kind of element", "pln": ["(: cnet_isa_3acc512a01 (IsA element_of_cone element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "element of cylinder is a kind of element", "pln": ["(: cnet_isa_49454675f7 (IsA element_of_cylinder element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elementary education is a kind of education", "pln": ["(: cnet_isa_a2c78db871 (IsA elementary_education education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elementary geometry is a kind of geometry", "pln": ["(: cnet_isa_f01ad96ac4 (IsA elementary_geometry geometry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elementary particle is a kind of particle", "pln": ["(: cnet_isa_b10c7b6ce9 (IsA elementary_particle particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elementary school is a kind of school", "pln": ["(: cnet_isa_d5935c50c2 (IsA elementary_school school) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "element is a kind of weather", "pln": ["(: cnet_isa_6f688008f1 (IsA element weather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elemi is a kind of gum resin", "pln": ["(: cnet_isa_274d8f6358 (IsA elemi gum_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eleocharis is a kind of monocot genus", "pln": ["(: cnet_isa_69ae0ad5c3 (IsA eleocharis monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "elephas is a kind of mammal genus", "pln": ["(: cnet_isa_8bd226678f (IsA elephas mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eleostearic acid is a kind of unsaturated fatty acid", "pln": ["(: cnet_isa_e9b3b93a7f (IsA eleostearic_acid unsaturated_fatty_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eleotridae is a kind of fish family", "pln": ["(: cnet_isa_1a19688ea0 (IsA eleotridae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elephant s foot is a kind of herb", "pln": ["(: cnet_isa_ba5dd25059 (IsA elephant_s_foot herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elephant s foot is a kind of vine", "pln": ["(: cnet_isa_9a16726a6f (IsA elephant_s_foot vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elephant is a kind of pachiderm", "pln": ["(: cnet_isa_55749bed79 (IsA elephant pachiderm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elephant is a kind of pachyderm", "pln": ["(: cnet_isa_51594b2d19 (IsA elephant pachyderm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elephant is a kind of proboscidean", "pln": ["(: cnet_isa_33178029c8 (IsA elephant proboscidean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elephant is a kind of emblem", "pln": ["(: cnet_isa_f10da56d78 (IsA elephant emblem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elephant bird is a kind of ratite", "pln": ["(: cnet_isa_45663fe50e (IsA elephant_bird ratite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elephant seal is a kind of earless seal", "pln": ["(: cnet_isa_7cb8de71dd (IsA elephant_seal earless_seal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elephant tree is a kind of incense tree", "pln": ["(: cnet_isa_383f2aa490 (IsA elephant_tree incense_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elephantiasis is a kind of hypertrophy", "pln": ["(: cnet_isa_8f37a477b3 (IsA elephantiasis hypertrophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elephantiasis neuromatosa is a kind of elephantiasis", "pln": ["(: cnet_isa_40250380e3 (IsA elephantiasis_neuromatosa elephantiasis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elephantiasis scroti is a kind of elephantiasis", "pln": ["(: cnet_isa_afe2399680 (IsA elephantiasis_scroti elephantiasis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elephantidae is a kind of mammal family", "pln": ["(: cnet_isa_084cb512fb (IsA elephantidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elephantopus is a kind of asterid dicot genus", "pln": ["(: cnet_isa_31248d4575 (IsA elephantopus asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elepha is a kind of mammal genus", "pln": ["(: cnet_isa_7451138e80 (IsA elepha mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elettaria is a kind of monocot genus", "pln": ["(: cnet_isa_f1bd27ae71 (IsA elettaria monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eleusine is a kind of monocot genus", "pln": ["(: cnet_isa_78b3e9ff41 (IsA eleusine monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eleutherodactylus is a kind of amphibian genus", "pln": ["(: cnet_isa_63c3b50276 (IsA eleutherodactylus amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elevated railway is a kind of railway", "pln": ["(: cnet_isa_71876184ad (IsA elevated_railway railway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elevation is a kind of plan", "pln": ["(: cnet_isa_ba2219446b (IsA elevation plan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elevation is a kind of distance", "pln": ["(: cnet_isa_f27b6dfff4 (IsA elevation distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "elevation is a kind of leap", "pln": ["(: cnet_isa_5a7225c9f2 (IsA elevation leap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elevation is a kind of rise", "pln": ["(: cnet_isa_d6e43e77a7 (IsA elevation rise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elevation is a kind of angular position", "pln": ["(: cnet_isa_a3b42f2cd6 (IsA elevation angular_position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elevator is a kind of airfoil", "pln": ["(: cnet_isa_836182c20a (IsA elevator airfoil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elevator is a kind of lifting device", "pln": ["(: cnet_isa_8064b008c7 (IsA elevator lifting_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elevator girl is a kind of elevator operator", "pln": ["(: cnet_isa_c31339b27f (IsA elevator_girl elevator_operator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "elevator man is a kind of elevator operator", "pln": ["(: cnet_isa_e810f64ec3 (IsA elevator_man elevator_operator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elevator operator is a kind of operator", "pln": ["(: cnet_isa_6f904eef90 (IsA elevator_operator operator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elevator shaft is a kind of shaft", "pln": ["(: cnet_isa_58f8a10fa1 (IsA elevator_shaft shaft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eleven is a kind of large integer", "pln": ["(: cnet_isa_f06d3ce271 (IsA eleven large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eleven plus is a kind of examination", "pln": ["(: cnet_isa_8cc557e65b (IsA eleven_plus examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eleventh is a kind of rank", "pln": ["(: cnet_isa_1614345415 (IsA eleventh rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eleventh hour is a kind of moment", "pln": ["(: cnet_isa_6fe619048d (IsA eleventh_hour moment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eleventh month of year is a kind of november", "pln": ["(: cnet_isa_7022b84965 (IsA eleventh_month_of_year november) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elf is a kind of fairy", "pln": ["(: cnet_isa_3f346e88b6 (IsA elf fairy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elf cup is a kind of apothecium", "pln": ["(: cnet_isa_0cb2ba06e9 (IsA elf_cup apothecium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elgin marble is a kind of statuary", "pln": ["(: cnet_isa_22e0242ad5 (IsA elgin_marble statuary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eligibility is a kind of qualification", "pln": ["(: cnet_isa_f4e39d56b3 (IsA eligibility qualification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elimination is a kind of murder", "pln": ["(: cnet_isa_cbc03bd834 (IsA elimination murder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "elimination is a kind of removal", "pln": ["(: cnet_isa_704010b166 (IsA elimination removal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elimination is a kind of analysis", "pln": ["(: cnet_isa_13e4c94693 (IsA elimination analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elimination is a kind of discharge", "pln": ["(: cnet_isa_3489df272b (IsA elimination discharge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elimination reaction is a kind of chemical reaction", "pln": ["(: cnet_isa_5d9575ca47 (IsA elimination_reaction chemical_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elimination tournament is a kind of tournament", "pln": ["(: cnet_isa_5e641b170c (IsA elimination_tournament tournament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eliminator is a kind of agent", "pln": ["(: cnet_isa_dc1bd4cb64 (IsA eliminator agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eliomy is a kind of mammal genus", "pln": ["(: cnet_isa_8959ed9432 (IsA eliomy mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elision is a kind of omission", "pln": ["(: cnet_isa_e5d622a544 (IsA elision omission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elite is a kind of upper class", "pln": ["(: cnet_isa_7ff6a23d52 (IsA elite upper_class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elitism is a kind of political orientation", "pln": ["(: cnet_isa_4bd38eafe8 (IsA elitism political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elitist is a kind of moralist", "pln": ["(: cnet_isa_82c10485f3 (IsA elitist moralist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elixir is a kind of panacea", "pln": ["(: cnet_isa_612cd45ed6 (IsA elixir panacea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elixir is a kind of potion", "pln": ["(: cnet_isa_f3d77c8f22 (IsA elixir potion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elixir is a kind of liquid", "pln": ["(: cnet_isa_7f67f89b92 (IsA elixir liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elixir of life is a kind of elixir", "pln": ["(: cnet_isa_9facb14e7d (IsA elixir_of_life elixir) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elizabeth is a kind of woman s name", "pln": ["(: cnet_isa_97f1f70359 (IsA elizabeth woman_s_name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elizabethan is a kind of person", "pln": ["(: cnet_isa_b9eed59c2e (IsA elizabethan person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "elk is a kind of deer", "pln": ["(: cnet_isa_eb5aab7183 (IsA elk deer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ell is a kind of annex", "pln": ["(: cnet_isa_91d8e7185b (IsA ell annex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elliott s goldenrod is a kind of goldenrod", "pln": ["(: cnet_isa_6b00b70b6a (IsA elliott_s_goldenrod goldenrod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ellipse is a kind of conic section", "pln": ["(: cnet_isa_65e5b64863 (IsA ellipse conic_section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ellipsis is a kind of omission", "pln": ["(: cnet_isa_af62f9f2ad (IsA ellipsis omission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ellipsoid is a kind of plane figure", "pln": ["(: cnet_isa_6fec428b21 (IsA ellipsoid plane_figure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elliptic geometry is a kind of non euclidean geometry", "pln": ["(: cnet_isa_54ba71350f (IsA elliptic_geometry non_euclidean_geometry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elliptic leaf is a kind of simple leaf", "pln": ["(: cnet_isa_e5b862c641 (IsA elliptic_leaf simple_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elm is a kind of tree", "pln": ["(: cnet_isa_b2ed1b107c (IsA elm tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elm is a kind of wood", "pln": ["(: cnet_isa_0dec67a2ed (IsA elm wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elocution is a kind of manner of speaking", "pln": ["(: cnet_isa_f67859c6ab (IsA elocution manner_of_speaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elocutionist is a kind of orator", "pln": ["(: cnet_isa_a2543866be (IsA elocutionist orator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elodea is a kind of monocot genus", "pln": ["(: cnet_isa_dda2f2d815 (IsA elodea monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elongation is a kind of change of shape", "pln": ["(: cnet_isa_40c9439c10 (IsA elongation change_of_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elongation is a kind of addition", "pln": ["(: cnet_isa_efa6b43cc9 (IsA elongation addition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elongation is a kind of longness", "pln": ["(: cnet_isa_9f3b7e6d94 (IsA elongation longness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elopement is a kind of running away", "pln": ["(: cnet_isa_3873e92fa8 (IsA elopement running_away) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elopidae is a kind of fish family", "pln": ["(: cnet_isa_450b5c5bb5 (IsA elopidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elop is a kind of fish genus", "pln": ["(: cnet_isa_92ee27474e (IsA elop fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eloquence is a kind of expressive style", "pln": ["(: cnet_isa_98e13aa5c2 (IsA eloquence expressive_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elsholtzia is a kind of herb", "pln": ["(: cnet_isa_1016cac0f1 (IsA elsholtzia herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eluate is a kind of solution", "pln": ["(: cnet_isa_2e35dadb3f (IsA eluate solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elucidation is a kind of explanation", "pln": ["(: cnet_isa_8b823d535c (IsA elucidation explanation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elul is a kind of jewish calendar month", "pln": ["(: cnet_isa_d33e767ded (IsA elul jewish_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "elusiveness is a kind of unclearness", "pln": ["(: cnet_isa_6b31a9f95b (IsA elusiveness unclearness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elution is a kind of extraction", "pln": ["(: cnet_isa_8b4793e7a1 (IsA elution extraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elver is a kind of eel", "pln": ["(: cnet_isa_c1947dabb6 (IsA elver eel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elve is a kind of atmospheric electricity", "pln": ["(: cnet_isa_a2b029b3d9 (IsA elve atmospheric_electricity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "elvis is a kind of famous singer", "pln": ["(: cnet_isa_462cbbbdf7 (IsA elvis famous_singer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elymus is a kind of monocot genus", "pln": ["(: cnet_isa_eb52f548e5 (IsA elymus monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "elysium is a kind of imaginary place", "pln": ["(: cnet_isa_fae158c961 (IsA elysium imaginary_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "elysium is a kind of heaven", "pln": ["(: cnet_isa_39c69a3eaa (IsA elysium heaven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "em is a kind of area unit", "pln": ["(: cnet_isa_b6fd3fe6bd (IsA em area_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "em is a kind of linear unit", "pln": ["(: cnet_isa_ad95ce9f2c (IsA em linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emac is a kind of text editor", "pln": ["(: cnet_isa_fe120fa8d1 (IsA emac text_editor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "email is a kind of electronic mail", "pln": ["(: cnet_isa_2d58a7958f (IsA email electronic_mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emanation is a kind of substance", "pln": ["(: cnet_isa_25055c5201 (IsA emanation substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emanation is a kind of origin", "pln": ["(: cnet_isa_cedd52894b (IsA emanation origin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emancipation is a kind of liberation", "pln": ["(: cnet_isa_700e1a3a71 (IsA emancipation liberation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emancipator is a kind of liberator", "pln": ["(: cnet_isa_3df2a0cf00 (IsA emancipator liberator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emarginate leaf is a kind of leaf", "pln": ["(: cnet_isa_d767c4b260 (IsA emarginate_leaf leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emarld beauty arborvitae is a kind of plant", "pln": ["(: cnet_isa_73b7157982 (IsA emarld_beauty_arborvitae plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emasculation is a kind of effeminacy", "pln": ["(: cnet_isa_c7cd6f6e3a (IsA emasculation effeminacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embalmer is a kind of mortician", "pln": ["(: cnet_isa_ec4952c235 (IsA embalmer mortician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embalmment is a kind of preservation", "pln": ["(: cnet_isa_be49bfe540 (IsA embalmment preservation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embankment is a kind of mound", "pln": ["(: cnet_isa_6d8b3446dc (IsA embankment mound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embargo is a kind of trade barrier", "pln": ["(: cnet_isa_adb530fcd5 (IsA embargo trade_barrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embarrassment is a kind of trouble", "pln": ["(: cnet_isa_01ce6249be (IsA embarrassment trouble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embarrassment is a kind of shame", "pln": ["(: cnet_isa_95f386c3bb (IsA embarrassment shame) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embarrassment is a kind of emotional state", "pln": ["(: cnet_isa_da903d323a (IsA embarrassment emotional_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "embassy is a kind of diplomatic building", "pln": ["(: cnet_isa_9248626e37 (IsA embassy diplomatic_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embassy is a kind of deputation", "pln": ["(: cnet_isa_228585d5cb (IsA embassy deputation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embellishment is a kind of decoration", "pln": ["(: cnet_isa_249257e078 (IsA embellishment decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embellishment is a kind of expansion", "pln": ["(: cnet_isa_0197a08858 (IsA embellishment expansion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ember is a kind of fragment", "pln": ["(: cnet_isa_429eadc8e6 (IsA ember fragment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ember day is a kind of christian holy day", "pln": ["(: cnet_isa_733d4206a1 (IsA ember_day christian_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emberiza is a kind of bird genus", "pln": ["(: cnet_isa_dc189a1bdf (IsA emberiza bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emberizidae is a kind of bird family", "pln": ["(: cnet_isa_6c69c4f02c (IsA emberizidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embezzlement is a kind of larceny", "pln": ["(: cnet_isa_3fe8712511 (IsA embezzlement larceny) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embezzler is a kind of deceiver", "pln": ["(: cnet_isa_2ca9f67b44 (IsA embezzler deceiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embezzler is a kind of thief", "pln": ["(: cnet_isa_f01baee206 (IsA embezzler thief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embioptera is a kind of animal order", "pln": ["(: cnet_isa_2a333b01f4 (IsA embioptera animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embiotocidae is a kind of fish family", "pln": ["(: cnet_isa_31c91ea59f (IsA embiotocidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embitterment is a kind of unhappiness", "pln": ["(: cnet_isa_7e99211ff8 (IsA embitterment unhappiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emblem is a kind of design", "pln": ["(: cnet_isa_50e594b52d (IsA emblem design) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emblem is a kind of symbol", "pln": ["(: cnet_isa_18f5c1923e (IsA emblem symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embodiment is a kind of objectification", "pln": ["(: cnet_isa_797a63beb6 (IsA embodiment objectification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embodiment is a kind of personification", "pln": ["(: cnet_isa_cdabe6ca7d (IsA embodiment personification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embolectomy is a kind of ablation", "pln": ["(: cnet_isa_38b1b00e0b (IsA embolectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embolism is a kind of occlusion", "pln": ["(: cnet_isa_d632ecfab0 (IsA embolism occlusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embolism is a kind of time interval", "pln": ["(: cnet_isa_47e7cb332a (IsA embolism time_interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "embolus is a kind of clot", "pln": ["(: cnet_isa_b323eda3ee (IsA embolus clot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embothrium is a kind of dicot genus", "pln": ["(: cnet_isa_0bd0e6a940 (IsA embothrium dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embrace is a kind of adoption", "pln": ["(: cnet_isa_ffa078c903 (IsA embrace adoption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embrace is a kind of clasp", "pln": ["(: cnet_isa_b0189429da (IsA embrace clasp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embrace is a kind of inclusion", "pln": ["(: cnet_isa_e360315fae (IsA embrace inclusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "embroiderer is a kind of needleworker", "pln": ["(: cnet_isa_2cdc96bc53 (IsA embroiderer needleworker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "embroideress is a kind of embroiderer", "pln": ["(: cnet_isa_4cd172c31a (IsA embroideress embroiderer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embroidery is a kind of needlework", "pln": ["(: cnet_isa_24d109d301 (IsA embroidery needlework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embroidery stitch is a kind of stitch", "pln": ["(: cnet_isa_4ce0503a64 (IsA embroidery_stitch stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embryo is a kind of animal", "pln": ["(: cnet_isa_58443c9085 (IsA embryo animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embryo is a kind of plant", "pln": ["(: cnet_isa_9063d00b6d (IsA embryo plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embryologist is a kind of specialist", "pln": ["(: cnet_isa_883447b6bc (IsA embryologist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embryology is a kind of biology", "pln": ["(: cnet_isa_ee90041c1b (IsA embryology biology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embryonal carcinoma is a kind of carcinoma", "pln": ["(: cnet_isa_de8bdc8d40 (IsA embryonal_carcinoma carcinoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embryonal rhabdomyosarcoma is a kind of rhabdomyosarcoma", "pln": ["(: cnet_isa_bcdb8686c0 (IsA embryonal_rhabdomyosarcoma rhabdomyosarcoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embryonic cell is a kind of cell", "pln": ["(: cnet_isa_40d7824847 (IsA embryonic_cell cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embryonic stem cell research is a kind of stem cell research", "pln": ["(: cnet_isa_5c10e0090c (IsA embryonic_stem_cell_research stem_cell_research) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "embryonic tissue is a kind of animal tissue", "pln": ["(: cnet_isa_37ff1ff72e (IsA embryonic_tissue animal_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emendation is a kind of correction", "pln": ["(: cnet_isa_8123c924d3 (IsA emendation correction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emerald is a kind of precious stone", "pln": ["(: cnet_isa_da1d4c22be (IsA emerald precious_stone) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emerald is a kind of jewel", "pln": ["(: cnet_isa_a0d664d916 (IsA emerald jewel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emerald is a kind of beryl", "pln": ["(: cnet_isa_ae2ac74d35 (IsA emerald beryl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emerald is a kind of transparent gem", "pln": ["(: cnet_isa_5efa7f8690 (IsA emerald transparent_gem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emerald shiner is a kind of shiner", "pln": ["(: cnet_isa_fff10fef0e (IsA emerald_shiner shiner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emerald is a kind of stone", "pln": ["(: cnet_isa_d0abb1f04f (IsA emerald stone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emergence is a kind of appearance", "pln": ["(: cnet_isa_07caf2fa41 (IsA emergence appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emergence is a kind of beginning", "pln": ["(: cnet_isa_578157d1c7 (IsA emergence beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emergency is a kind of crisis", "pln": ["(: cnet_isa_283c31c86d (IsA emergency crisis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emergency is a kind of temporary state", "pln": ["(: cnet_isa_f13c4c2c23 (IsA emergency temporary_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emergency medicine is a kind of medicine", "pln": ["(: cnet_isa_fcc6b32c83 (IsA emergency_medicine medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emergency procedure is a kind of procedure", "pln": ["(: cnet_isa_e3e2d4f15a (IsA emergency_procedure procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emergency room is a kind of hospital room", "pln": ["(: cnet_isa_6cc30a1ca6 (IsA emergency_room hospital_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emergent evolution is a kind of evolution", "pln": ["(: cnet_isa_ff9044451b (IsA emergent_evolution evolution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emeritus is a kind of retiree", "pln": ["(: cnet_isa_eef5dbda65 (IsA emeritus retiree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emery is a kind of mineral", "pln": ["(: cnet_isa_c6ea2198d2 (IsA emery mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emery cloth is a kind of abrasive", "pln": ["(: cnet_isa_2d84f36ce8 (IsA emery_cloth abrasive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emery paper is a kind of abrasive", "pln": ["(: cnet_isa_1b7b579fe0 (IsA emery_paper abrasive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emery stone is a kind of rock", "pln": ["(: cnet_isa_7baf5b89cf (IsA emery_stone rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emesis basin is a kind of basin", "pln": ["(: cnet_isa_72bc1c9bcb (IsA emesis_basin basin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "emetic is a kind of remedy", "pln": ["(: cnet_isa_aa2d747fae (IsA emetic remedy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emigrant is a kind of migrant", "pln": ["(: cnet_isa_b271f3fa08 (IsA emigrant migrant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emigration is a kind of migration", "pln": ["(: cnet_isa_b7cee39e09 (IsA emigration migration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emile coue is a kind of psychotherapist", "pln": ["(: cnet_isa_9d64ffe613 (IsA emile_coue psychotherapist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emilia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_dcbdf53adf (IsA emilia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eminence is a kind of high status", "pln": ["(: cnet_isa_dfec0eb35f (IsA eminence high_status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eminence grise is a kind of important person", "pln": ["(: cnet_isa_e3bde7900e (IsA eminence_grise important_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eminent domain is a kind of legal right", "pln": ["(: cnet_isa_08b285d70a (IsA eminent_domain legal_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "emir is a kind of ruler", "pln": ["(: cnet_isa_fabfbb97a1 (IsA emir ruler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emirate is a kind of position", "pln": ["(: cnet_isa_7f25063cc0 (IsA emirate position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emirate is a kind of domain", "pln": ["(: cnet_isa_291afb28c7 (IsA emirate domain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emissary is a kind of representative", "pln": ["(: cnet_isa_eae116c060 (IsA emissary representative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emissary vein is a kind of vein", "pln": ["(: cnet_isa_010420f697 (IsA emissary_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emission is a kind of egress", "pln": ["(: cnet_isa_2877b78e4a (IsA emission egress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emission is a kind of flow", "pln": ["(: cnet_isa_1841fa1fc9 (IsA emission flow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emission is a kind of release", "pln": ["(: cnet_isa_c0ad3bc2c5 (IsA emission release) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "emission spectrum is a kind of spectrum", "pln": ["(: cnet_isa_5b2a8f8219 (IsA emission_spectrum spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emitter is a kind of electrode", "pln": ["(: cnet_isa_398d6606c7 (IsA emitter electrode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emmanthe is a kind of asterid dicot genus", "pln": ["(: cnet_isa_aaef2420de (IsA emmanthe asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emmenagogue is a kind of agent", "pln": ["(: cnet_isa_945c0e7d29 (IsA emmenagogue agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emmenthal is a kind of swiss cheese", "pln": ["(: cnet_isa_cb5d07b1ba (IsA emmenthal swiss_cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emmer is a kind of wheat", "pln": ["(: cnet_isa_e19d2a28e4 (IsA emmer wheat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emmetropia is a kind of physiological state", "pln": ["(: cnet_isa_7baa3b7a20 (IsA emmetropia physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emmy is a kind of award", "pln": ["(: cnet_isa_21197efab7 (IsA emmy award) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emolument is a kind of compensation", "pln": ["(: cnet_isa_1d7e2d4719 (IsA emolument compensation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emoticon is a kind of facial expression", "pln": ["(: cnet_isa_48eb7d5d57 (IsA emoticon facial_expression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "emotion is a kind of feeling", "pln": ["(: cnet_isa_f3d4ed03ee (IsA emotion feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emotional arousal is a kind of arousal", "pln": ["(: cnet_isa_e24dc7b97a (IsA emotional_arousal arousal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emotional person is a kind of person", "pln": ["(: cnet_isa_b1b2d04126 (IsA emotional_person person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emotional state is a kind of emotion", "pln": ["(: cnet_isa_6bd1cd778d (IsA emotional_state emotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emotionality is a kind of trait", "pln": ["(: cnet_isa_0b7941afba (IsA emotionality trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emotionlessness is a kind of apathy", "pln": ["(: cnet_isa_38f41fd24d (IsA emotionlessness apathy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "empathy is a kind of sympathy", "pln": ["(: cnet_isa_bd52e7f599 (IsA empathy sympathy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emperor is a kind of monarch", "pln": ["(: cnet_isa_b777f451f6 (IsA emperor monarch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emperor is a kind of saturniid", "pln": ["(: cnet_isa_e309ca38fa (IsA emperor saturniid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emperor is a kind of vinifera grape", "pln": ["(: cnet_isa_b0277ce628 (IsA emperor vinifera_grape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emperor is a kind of sovereign", "pln": ["(: cnet_isa_575ef986b1 (IsA emperor sovereign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emperor butterfly is a kind of nymphalid", "pln": ["(: cnet_isa_3bda82150a (IsA emperor_butterfly nymphalid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emperor of rome is a kind of emperor", "pln": ["(: cnet_isa_dbb555a3d4 (IsA emperor_of_rome emperor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emperor penguin is a kind of penguin", "pln": ["(: cnet_isa_412acc57c5 (IsA emperor_penguin penguin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "empetraceae is a kind of dicot family", "pln": ["(: cnet_isa_3f78c95796 (IsA empetraceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "empetrum is a kind of dicot genus", "pln": ["(: cnet_isa_30a766ee51 (IsA empetrum dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emphasis is a kind of rhetorical device", "pln": ["(: cnet_isa_8e86f014ea (IsA emphasis rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emphasis is a kind of importance", "pln": ["(: cnet_isa_39b4ac8762 (IsA emphasis importance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "emphasizing is a kind of action", "pln": ["(: cnet_isa_863170d3b8 (IsA emphasizing action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emphysema is a kind of respiratory disease", "pln": ["(: cnet_isa_911a651d7f (IsA emphysema respiratory_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "empire is a kind of eating apple", "pln": ["(: cnet_isa_07bf05b560 (IsA empire eating_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "empire is a kind of government", "pln": ["(: cnet_isa_999928ba66 (IsA empire government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "empire is a kind of monarchy", "pln": ["(: cnet_isa_635c506f4d (IsA empire monarchy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "empire is a kind of domain", "pln": ["(: cnet_isa_a1b9d5bd48 (IsA empire domain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "empire state building is a kind of in new york", "pln": ["(: cnet_isa_ba0d4e597e (IsA empire_state_building in_new_york) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "empirical formula is a kind of formula", "pln": ["(: cnet_isa_5d4c9488fa (IsA empirical_formula formula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "empirical research is a kind of inquiry", "pln": ["(: cnet_isa_aa533c2225 (IsA empirical_research inquiry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "empiricism is a kind of investigation", "pln": ["(: cnet_isa_e69cf0c365 (IsA empiricism investigation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "empiricism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_04c00639f6 (IsA empiricism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "empiricist is a kind of philosopher", "pln": ["(: cnet_isa_a07456d15d (IsA empiricist philosopher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "emplacement is a kind of military installation", "pln": ["(: cnet_isa_81b450cead (IsA emplacement military_installation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "employable is a kind of worker", "pln": ["(: cnet_isa_175cf43993 (IsA employable worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "employee is a kind of worker", "pln": ["(: cnet_isa_a806edf539 (IsA employee worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "employee owned enterprise is a kind of commercial enterprise", "pln": ["(: cnet_isa_c6329d4b8d (IsA employee_owned_enterprise commercial_enterprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "employee ownership is a kind of ownership", "pln": ["(: cnet_isa_7d523830e2 (IsA employee_ownership ownership) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "employee saving plan is a kind of plan", "pln": ["(: cnet_isa_d26a1876e8 (IsA employee_saving_plan plan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "employee stock ownership plan is a kind of stock purchase plan", "pln": ["(: cnet_isa_571797dff1 (IsA employee_stock_ownership_plan stock_purchase_plan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "employee turnover is a kind of ratio", "pln": ["(: cnet_isa_670fd778ef (IsA employee_turnover ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "employer is a kind of leader", "pln": ["(: cnet_isa_123efa5180 (IsA employer leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "employment is a kind of action", "pln": ["(: cnet_isa_1bd9b3b89a (IsA employment action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "employment is a kind of occupation", "pln": ["(: cnet_isa_c8340d6323 (IsA employment occupation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "employment is a kind of state", "pln": ["(: cnet_isa_1fa2099399 (IsA employment state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "employment agency is a kind of agency", "pln": ["(: cnet_isa_68523cf0e5 (IsA employment_agency agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "employment agent is a kind of agent", "pln": ["(: cnet_isa_db6e9ccfed (IsA employment_agent agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "employment contract is a kind of contract", "pln": ["(: cnet_isa_cfda1b2efc (IsA employment_contract contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "empress is a kind of emperor", "pln": ["(: cnet_isa_596d1ba329 (IsA empress emperor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emptiness is a kind of condition", "pln": ["(: cnet_isa_c313f6a0d0 (IsA emptiness condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emptiness is a kind of hunger", "pln": ["(: cnet_isa_9f458079b2 (IsA emptiness hunger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "empty is a kind of container", "pln": ["(: cnet_isa_dd90400547 (IsA empty container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "empty nester is a kind of parent", "pln": ["(: cnet_isa_033232030c (IsA empty_nester parent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emptying is a kind of removal", "pln": ["(: cnet_isa_b031366f08 (IsA emptying removal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "empyema is a kind of inflammatory disease", "pln": ["(: cnet_isa_70e2436225 (IsA empyema inflammatory_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emu is a kind of flightless bird", "pln": ["(: cnet_isa_97bb3ee002 (IsA emu flightless_bird) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emu is a kind of ratite", "pln": ["(: cnet_isa_0ec3e1e0f7 (IsA emu ratite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emulation is a kind of imitation", "pln": ["(: cnet_isa_82af984849 (IsA emulation imitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emulation is a kind of technique", "pln": ["(: cnet_isa_88be07c3c7 (IsA emulation technique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emulation is a kind of ambition", "pln": ["(: cnet_isa_f59f8b08e1 (IsA emulation ambition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emulsifier is a kind of wetting agent", "pln": ["(: cnet_isa_38c3c6274e (IsA emulsifier wetting_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emulsion is a kind of coating", "pln": ["(: cnet_isa_9ca98e191f (IsA emulsion coating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emulsion is a kind of colloid", "pln": ["(: cnet_isa_9877795620 (IsA emulsion colloid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "emydidae is a kind of reptile family", "pln": ["(: cnet_isa_d4a8dcf4d5 (IsA emydidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "en is a kind of linear unit", "pln": ["(: cnet_isa_a6c21ecdb9 (IsA en linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "en passant is a kind of capture", "pln": ["(: cnet_isa_419129fc15 (IsA en_passant capture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "enabling act is a kind of legislative act", "pln": ["(: cnet_isa_1c9e43a850 (IsA enabling_act legislative_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "enabling legislation is a kind of legislation", "pln": ["(: cnet_isa_c1d7c4aef9 (IsA enabling_legislation legislation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enactment is a kind of legislation", "pln": ["(: cnet_isa_24c831859b (IsA enactment legislation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enallage is a kind of rhetorical device", "pln": ["(: cnet_isa_12bcb28087 (IsA enallage rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enamel is a kind of coating", "pln": ["(: cnet_isa_a0a9993bd1 (IsA enamel coating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enamel is a kind of paint", "pln": ["(: cnet_isa_acc3920ff3 (IsA enamel paint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enamel is a kind of solid body substance", "pln": ["(: cnet_isa_99ada80c60 (IsA enamel solid_body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enamel is a kind of compound", "pln": ["(: cnet_isa_361bc202b3 (IsA enamel compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enamelware is a kind of cooking utensil", "pln": ["(: cnet_isa_90a12eabca (IsA enamelware cooking_utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "enamine is a kind of amine", "pln": ["(: cnet_isa_9a1e5b01f4 (IsA enamine amine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "enanthem is a kind of eruption", "pln": ["(: cnet_isa_e129638cdf (IsA enanthem eruption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enantiomorph is a kind of compound", "pln": ["(: cnet_isa_af880bd47b (IsA enantiomorph compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enantiomorphism is a kind of opposition", "pln": ["(: cnet_isa_be8d6cee15 (IsA enantiomorphism opposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enate is a kind of relative", "pln": ["(: cnet_isa_7e7bbf211b (IsA enate relative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "encapsulation is a kind of process", "pln": ["(: cnet_isa_eb5ffb9fe4 (IsA encapsulation process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "encapsulation is a kind of condition", "pln": ["(: cnet_isa_7f547ea52f (IsA encapsulation condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "encasement is a kind of enclosure", "pln": ["(: cnet_isa_450a9440a4 (IsA encasement enclosure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "encaustic is a kind of paint", "pln": ["(: cnet_isa_a415c7fb70 (IsA encaustic paint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "encelia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_7e48a096ce (IsA encelia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enceliopsis is a kind of asterid dicot genus", "pln": ["(: cnet_isa_1b701051db (IsA enceliopsis asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "encephalarto is a kind of cycad", "pln": ["(: cnet_isa_289d3620b2 (IsA encephalarto cycad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "encephalitis is a kind of inflammation", "pln": ["(: cnet_isa_690369f549 (IsA encephalitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "encephalocele is a kind of birth defect", "pln": ["(: cnet_isa_3bdf11cbd8 (IsA encephalocele birth_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "encephalogram is a kind of roentgenogram", "pln": ["(: cnet_isa_1b60b14519 (IsA encephalogram roentgenogram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "encephalography is a kind of roentgenography", "pln": ["(: cnet_isa_9d006ca4bf (IsA encephalography roentgenography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "encephalomyelitis is a kind of inflammation", "pln": ["(: cnet_isa_cc7a35c111 (IsA encephalomyelitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enchanter s nightshade is a kind of evening primrose", "pln": ["(: cnet_isa_e31aa0e71f (IsA enchanter_s_nightshade evening_primrose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enchanter is a kind of sorcerer", "pln": ["(: cnet_isa_ba70bcfa32 (IsA enchanter sorcerer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enchantment is a kind of sorcery", "pln": ["(: cnet_isa_0cb1a95605 (IsA enchantment sorcery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enchantment is a kind of psychological state", "pln": ["(: cnet_isa_2a79f3fc88 (IsA enchantment psychological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enchantress is a kind of occultist", "pln": ["(: cnet_isa_80018b4a49 (IsA enchantress occultist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enchantress is a kind of woman", "pln": ["(: cnet_isa_ee6b750a70 (IsA enchantress woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enchilada is a kind of dish", "pln": ["(: cnet_isa_9a2c250e95 (IsA enchilada dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "enchondroma is a kind of benign tumor", "pln": ["(: cnet_isa_268e2940a4 (IsA enchondroma benign_tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "enclave is a kind of district", "pln": ["(: cnet_isa_6874c5deb1 (IsA enclave district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enclitic is a kind of clitic", "pln": ["(: cnet_isa_0bb68e8e34 (IsA enclitic clitic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enclosure is a kind of insertion", "pln": ["(: cnet_isa_46f4243d20 (IsA enclosure insertion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enclosure is a kind of area", "pln": ["(: cnet_isa_74a5832625 (IsA enclosure area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enclosure is a kind of document", "pln": ["(: cnet_isa_382daada3a (IsA enclosure document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enclosure is a kind of space", "pln": ["(: cnet_isa_7daac9a4af (IsA enclosure space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "encoding is a kind of cryptography", "pln": ["(: cnet_isa_dba45c3855 (IsA encoding cryptography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "encolure is a kind of mane", "pln": ["(: cnet_isa_6a4c9235d0 (IsA encolure mane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "encomium is a kind of praise", "pln": ["(: cnet_isa_250a49952e (IsA encomium praise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "encompassment is a kind of inclusion", "pln": ["(: cnet_isa_5b76e0221c (IsA encompassment inclusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "encopresis is a kind of mental disorder", "pln": ["(: cnet_isa_a4e74d843b (IsA encopresis mental_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "encore is a kind of performance", "pln": ["(: cnet_isa_068b19ded4 (IsA encore performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "encounter is a kind of joining", "pln": ["(: cnet_isa_c8a924542f (IsA encounter joining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "encounter group is a kind of psychotherapy group", "pln": ["(: cnet_isa_0f68d5c920 (IsA encounter_group psychotherapy_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "encouragement is a kind of approval", "pln": ["(: cnet_isa_5ba13fd966 (IsA encouragement approval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "encouragement is a kind of hope", "pln": ["(: cnet_isa_4e5767d20f (IsA encouragement hope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "encumbrance is a kind of charge", "pln": ["(: cnet_isa_35f8aca150 (IsA encumbrance charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "encyclia is a kind of monocot genus", "pln": ["(: cnet_isa_13cb02e8a9 (IsA encyclia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "encyclical is a kind of letter", "pln": ["(: cnet_isa_1962807df1 (IsA encyclical letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "encyclopaedist is a kind of encyclopedist", "pln": ["(: cnet_isa_71c6aa5353 (IsA encyclopaedist encyclopedist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "encyclopedia is a kind of reference book", "pln": ["(: cnet_isa_6988e86397 (IsA encyclopedia reference_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "encyclopedist is a kind of writer", "pln": ["(: cnet_isa_8270f000e7 (IsA encyclopedist writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "end is a kind of contribution", "pln": ["(: cnet_isa_e68ca78685 (IsA end contribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "end is a kind of lineman", "pln": ["(: cnet_isa_8b0cc682c1 (IsA end lineman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "end is a kind of piece of cloth", "pln": ["(: cnet_isa_95e9ffef3e (IsA end piece_of_cloth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "end is a kind of part", "pln": ["(: cnet_isa_c9e962eb62 (IsA end part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "end is a kind of ending", "pln": ["(: cnet_isa_ee063777b6 (IsA end ending) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "end is a kind of boundary", "pln": ["(: cnet_isa_e18f39cef4 (IsA end boundary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "end is a kind of extremity", "pln": ["(: cnet_isa_e817059e59 (IsA end extremity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "end is a kind of surface", "pln": ["(: cnet_isa_24315bb1b1 (IsA end surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "end is a kind of topographic point", "pln": ["(: cnet_isa_7a55ca8a7c (IsA end topographic_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "end is a kind of state", "pln": ["(: cnet_isa_06ad2268e8 (IsA end state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "end is a kind of point", "pln": ["(: cnet_isa_98b27f224a (IsA end point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "end all is a kind of goal", "pln": ["(: cnet_isa_77dbc5edda (IsA end_all goal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "end man is a kind of acquaintance", "pln": ["(: cnet_isa_2b2aa509e6 (IsA end_man acquaintance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "end man is a kind of minstrel", "pln": ["(: cnet_isa_e6a5ab3a67 (IsA end_man minstrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "end organ is a kind of organ", "pln": ["(: cnet_isa_cadd7a2472 (IsA end_organ organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "end plate is a kind of end organ", "pln": ["(: cnet_isa_ca9893362f (IsA end_plate end_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "end point is a kind of end", "pln": ["(: cnet_isa_a96d93f864 (IsA end_point end) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "end product is a kind of product", "pln": ["(: cnet_isa_c8332fa101 (IsA end_product product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "end run is a kind of run", "pln": ["(: cnet_isa_c7fb4c0e00 (IsA end_run run) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "end user is a kind of user", "pln": ["(: cnet_isa_b49580e13d (IsA end_user user) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endameba is a kind of ameba", "pln": ["(: cnet_isa_1772156160 (IsA endameba ameba) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endamoeba is a kind of protoctist genus", "pln": ["(: cnet_isa_988e144d7b (IsA endamoeba protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endamoeba histolytica is a kind of endameba", "pln": ["(: cnet_isa_e5563acd1e (IsA endamoeba_histolytica endameba) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endamoebidae is a kind of family", "pln": ["(: cnet_isa_b35d13fa0d (IsA endamoebidae family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endangered specy is a kind of specy", "pln": ["(: cnet_isa_031f861a5e (IsA endangered_specy specy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endarterectomy is a kind of ablation", "pln": ["(: cnet_isa_8c8b8ced44 (IsA endarterectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endarteritis is a kind of inflammation", "pln": ["(: cnet_isa_2ecc55e660 (IsA endarteritis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endearment is a kind of kindness", "pln": ["(: cnet_isa_75c3fe3f5d (IsA endearment kindness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endemic is a kind of plant", "pln": ["(: cnet_isa_46af7edfc2 (IsA endemic plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endemic is a kind of disease", "pln": ["(: cnet_isa_1cb91c2c94 (IsA endemic disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endgame is a kind of end", "pln": ["(: cnet_isa_172ecb845b (IsA endgame end) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ending is a kind of morpheme", "pln": ["(: cnet_isa_81a72e3e26 (IsA ending morpheme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ending is a kind of happening", "pln": ["(: cnet_isa_5ebb66ab32 (IsA ending happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endive is a kind of herb", "pln": ["(: cnet_isa_71bcd81bad (IsA endive herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endlessness is a kind of duration", "pln": ["(: cnet_isa_e1e7dd440d (IsA endlessness duration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "endocarditis is a kind of carditis", "pln": ["(: cnet_isa_89afe076a5 (IsA endocarditis carditis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endocardium is a kind of serous membrane", "pln": ["(: cnet_isa_7e225973d8 (IsA endocardium serous_membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endocervicitis is a kind of inflammation", "pln": ["(: cnet_isa_cce58f6ef2 (IsA endocervicitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endocranium is a kind of membrane", "pln": ["(: cnet_isa_666eba8280 (IsA endocranium membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "endocrine gland is a kind of gland", "pln": ["(: cnet_isa_3c0a0d1193 (IsA endocrine_gland gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endocrine system is a kind of system", "pln": ["(: cnet_isa_591634ddc5 (IsA endocrine_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endocrinologist is a kind of specialist", "pln": ["(: cnet_isa_a7774649ad (IsA endocrinologist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endocrinology is a kind of medicine", "pln": ["(: cnet_isa_3ddd20b21a (IsA endocrinology medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endoderm is a kind of germ layer", "pln": ["(: cnet_isa_a7d76828e8 (IsA endoderm germ_layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endodontic is a kind of dentistry", "pln": ["(: cnet_isa_254997911d (IsA endodontic dentistry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endodontist is a kind of dentist", "pln": ["(: cnet_isa_837841b175 (IsA endodontist dentist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endoergic reaction is a kind of nuclear reaction", "pln": ["(: cnet_isa_4b84f5137e (IsA endoergic_reaction nuclear_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endogamy is a kind of marriage", "pln": ["(: cnet_isa_82b766b0e3 (IsA endogamy marriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endogenous depression is a kind of depressive disorder", "pln": ["(: cnet_isa_62d699385d (IsA endogenous_depression depressive_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endogeny is a kind of geological phenomenon", "pln": ["(: cnet_isa_789b663351 (IsA endogeny geological_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endolymph is a kind of liquid body substance", "pln": ["(: cnet_isa_ccbab3fd5d (IsA endolymph liquid_body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endometrial carcinoma is a kind of carcinoma", "pln": ["(: cnet_isa_6c8977ea41 (IsA endometrial_carcinoma carcinoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endometriosis is a kind of pathology", "pln": ["(: cnet_isa_c255d016c6 (IsA endometriosis pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endometrium is a kind of mucous membrane", "pln": ["(: cnet_isa_875e40ae9e (IsA endometrium mucous_membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "endomorph is a kind of person", "pln": ["(: cnet_isa_44df6d121d (IsA endomorph person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endomorphy is a kind of body type", "pln": ["(: cnet_isa_5175aabb77 (IsA endomorphy body_type) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endomycetale is a kind of fungus order", "pln": ["(: cnet_isa_eefc9169d2 (IsA endomycetale fungus_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endoneurium is a kind of connective tissue", "pln": ["(: cnet_isa_9511c63741 (IsA endoneurium connective_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endonuclease is a kind of nuclease", "pln": ["(: cnet_isa_0ef35ea61e (IsA endonuclease nuclease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endoparasite is a kind of parasite", "pln": ["(: cnet_isa_9629c142dc (IsA endoparasite parasite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endoplasm is a kind of cytoplasm", "pln": ["(: cnet_isa_e67c5da250 (IsA endoplasm cytoplasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endorphin is a kind of neurochemical", "pln": ["(: cnet_isa_a74ab65c92 (IsA endorphin neurochemical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "endorphin is a kind of peptide", "pln": ["(: cnet_isa_a59d02a0e6 (IsA endorphin peptide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endorsement is a kind of support", "pln": ["(: cnet_isa_681e7e7872 (IsA endorsement support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endorsement is a kind of promotion", "pln": ["(: cnet_isa_ddd16b9255 (IsA endorsement promotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endorsement is a kind of signature", "pln": ["(: cnet_isa_1238a34f28 (IsA endorsement signature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endorser is a kind of signer", "pln": ["(: cnet_isa_0fe5610114 (IsA endorser signer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endoscope is a kind of medical instrument", "pln": ["(: cnet_isa_5e828c3440 (IsA endoscope medical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endoscopy is a kind of examination", "pln": ["(: cnet_isa_b375a5637c (IsA endoscopy examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endoskeleton is a kind of skeletal system", "pln": ["(: cnet_isa_bf14da6f02 (IsA endoskeleton skeletal_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endosperm is a kind of reproductive structure", "pln": ["(: cnet_isa_a41cd143b2 (IsA endosperm reproductive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endospore is a kind of spore", "pln": ["(: cnet_isa_5e9ce23bd5 (IsA endospore spore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endospore forming bacteria is a kind of eubacteria", "pln": ["(: cnet_isa_12123b8309 (IsA endospore_forming_bacteria eubacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endosteum is a kind of membrane", "pln": ["(: cnet_isa_a6bff6a7ab (IsA endosteum membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endothelium is a kind of epithelium", "pln": ["(: cnet_isa_0692bfcbaf (IsA endothelium epithelium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endothermic reaction is a kind of chemical reaction", "pln": ["(: cnet_isa_25ace49801 (IsA endothermic_reaction chemical_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endotoxin is a kind of toxin", "pln": ["(: cnet_isa_6164ab24bc (IsA endotoxin toxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endotracheal tube is a kind of catheter", "pln": ["(: cnet_isa_42f7c9a792 (IsA endotracheal_tube catheter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "endowment is a kind of giving", "pln": ["(: cnet_isa_20b64edd61 (IsA endowment giving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endowment is a kind of natural ability", "pln": ["(: cnet_isa_d35e78c449 (IsA endowment natural_ability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endowment is a kind of capital", "pln": ["(: cnet_isa_4b5a016f75 (IsA endowment capital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endowment insurance is a kind of life insurance", "pln": ["(: cnet_isa_2e0c3b5dbe (IsA endowment_insurance life_insurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endurance is a kind of strength", "pln": ["(: cnet_isa_5d08cd8adc (IsA endurance strength) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "endurance riding is a kind of riding", "pln": ["(: cnet_isa_9d115ffb19 (IsA endurance_riding riding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enema is a kind of irrigation", "pln": ["(: cnet_isa_37af5c3f81 (IsA enema irrigation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "enemy is a kind of people", "pln": ["(: cnet_isa_fb5223c165 (IsA enemy people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enemy is a kind of military unit", "pln": ["(: cnet_isa_063432833a (IsA enemy military_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enemy is a kind of adversary", "pln": ["(: cnet_isa_ab074116f1 (IsA enemy adversary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "energid is a kind of body part", "pln": ["(: cnet_isa_1e6de07677 (IsA energid body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "energizer is a kind of device", "pln": ["(: cnet_isa_00e36679c3 (IsA energizer device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "energizer is a kind of actor", "pln": ["(: cnet_isa_97146626da (IsA energizer actor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "energizing is a kind of activity", "pln": ["(: cnet_isa_e2090eb547 (IsA energizing activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "energy is a kind of drive", "pln": ["(: cnet_isa_0983fdbd7c (IsA energy drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "energy is a kind of force", "pln": ["(: cnet_isa_4ec95491ca (IsA energy force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "energy is a kind of liveliness", "pln": ["(: cnet_isa_d3415bb753 (IsA energy liveliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "energy is a kind of physical phenomenon", "pln": ["(: cnet_isa_77c88a2346 (IsA energy physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "energy is a kind of good health", "pln": ["(: cnet_isa_5081bfd253 (IsA energy good_health) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "energy level is a kind of energy", "pln": ["(: cnet_isa_b21917b108 (IsA energy_level energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "energy secretary is a kind of secretary", "pln": ["(: cnet_isa_741c6abd97 (IsA energy_secretary secretary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enervation is a kind of ablation", "pln": ["(: cnet_isa_576a26fb4a (IsA enervation ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enervation is a kind of weakness", "pln": ["(: cnet_isa_51ac767ba7 (IsA enervation weakness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enet is a kind of samoyedic", "pln": ["(: cnet_isa_1129c9a011 (IsA enet samoyedic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "enfant terrible is a kind of nonconformist", "pln": ["(: cnet_isa_6a7d22f9a4 (IsA enfant_terrible nonconformist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enfeoffment is a kind of deed", "pln": ["(: cnet_isa_97d172e5e4 (IsA enfeoffment deed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enfilade is a kind of gunfire", "pln": ["(: cnet_isa_e7c5cc7de1 (IsA enfilade gunfire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enforcement is a kind of social control", "pln": ["(: cnet_isa_73b512c3e0 (IsA enforcement social_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enfranchisement is a kind of freedom", "pln": ["(: cnet_isa_29b96f36e5 (IsA enfranchisement freedom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "engagement is a kind of employment", "pln": ["(: cnet_isa_266191a567 (IsA engagement employment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "engagement is a kind of group action", "pln": ["(: cnet_isa_6721ca4f5c (IsA engagement group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "engagement is a kind of contact", "pln": ["(: cnet_isa_2ad1a3dd1e (IsA engagement contact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "engagement ring is a kind of ring", "pln": ["(: cnet_isa_8e9acb424f (IsA engagement_ring ring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "engelmann spruce is a kind of spruce", "pln": ["(: cnet_isa_ef9ee151c5 (IsA engelmann_spruce spruce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "engelmannia is a kind of wildflower", "pln": ["(: cnet_isa_92c7b12354 (IsA engelmannia wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "engine is a kind of instrument", "pln": ["(: cnet_isa_31cf444787 (IsA engine instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "engine is a kind of motor", "pln": ["(: cnet_isa_8df7160c04 (IsA engine motor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "engine is a kind of causal agent", "pln": ["(: cnet_isa_a5ff73ed59 (IsA engine causal_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "engine block is a kind of cast", "pln": ["(: cnet_isa_c814746497 (IsA engine_block cast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "engine failure is a kind of breakdown", "pln": ["(: cnet_isa_cdfdb0e476 (IsA engine_failure breakdown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "engineer s chain is a kind of chain", "pln": ["(: cnet_isa_a3c683535e (IsA engineer_s_chain chain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "engineer is a kind of operator", "pln": ["(: cnet_isa_5b2c1f52a3 (IsA engineer operator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "engineer is a kind of person", "pln": ["(: cnet_isa_bbf798b24e (IsA engineer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "engineering is a kind of discipline", "pln": ["(: cnet_isa_e85de7b1a2 (IsA engineering discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "engineering is a kind of room", "pln": ["(: cnet_isa_a54c0037e9 (IsA engineering room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enginery is a kind of machinery", "pln": ["(: cnet_isa_a543288c6e (IsA enginery machinery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "england is a kind of country", "pln": ["(: cnet_isa_314deb497d (IsA england country) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "england is a kind of place name", "pln": ["(: cnet_isa_a2ed1e6bcf (IsA england place_name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "english is a kind of human language", "pln": ["(: cnet_isa_ace2783a87 (IsA english human_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "english is a kind of language", "pln": ["(: cnet_isa_5d6891f825 (IsA english language) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "english is a kind of humanistic discipline", "pln": ["(: cnet_isa_aefbf0f00c (IsA english humanistic_discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "english is a kind of west germanic", "pln": ["(: cnet_isa_6bfa54540f (IsA english west_germanic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "english is a kind of spin", "pln": ["(: cnet_isa_afd79cf64f (IsA english spin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "english concertina is a kind of concertina", "pln": ["(: cnet_isa_2bb2caf9d2 (IsA english_concertina concertina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "english department is a kind of academic department", "pln": ["(: cnet_isa_3f2137d0b9 (IsA english_department academic_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "english elm is a kind of elm", "pln": ["(: cnet_isa_1ee7c5309b (IsA english_elm elm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "english foxhound is a kind of foxhound", "pln": ["(: cnet_isa_394e60f1fd (IsA english_foxhound foxhound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "english hawthorn is a kind of hawthorn", "pln": ["(: cnet_isa_900e9f04f8 (IsA english_hawthorn hawthorn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "english horn is a kind of double reed instrument", "pln": ["(: cnet_isa_4ab8a6ca69 (IsA english_horn double_reed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "english iris is a kind of iris", "pln": ["(: cnet_isa_f98edec74d (IsA english_iris iris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "english lady crab is a kind of swimming crab", "pln": ["(: cnet_isa_0489d17e89 (IsA english_lady_crab swimming_crab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "english lavender is a kind of lavender", "pln": ["(: cnet_isa_79666663bd (IsA english_lavender lavender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "english muffin is a kind of bread", "pln": ["(: cnet_isa_cc95530787 (IsA english_muffin bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "english people is a kind of nation", "pln": ["(: cnet_isa_549c13ca77 (IsA english_people nation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "english person is a kind of brit", "pln": ["(: cnet_isa_a6aa3a0d5b (IsA english_person brit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "english plantain is a kind of plantain", "pln": ["(: cnet_isa_8346817c1f (IsA english_plantain plantain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "english primrose is a kind of primrose", "pln": ["(: cnet_isa_1f5163d933 (IsA english_primrose primrose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "english professor is a kind of teacher", "pln": ["(: cnet_isa_b533200f0b (IsA english_professor teacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "english saddle is a kind of saddle", "pln": ["(: cnet_isa_41e6568143 (IsA english_saddle saddle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "english setter is a kind of setter", "pln": ["(: cnet_isa_2f3040c403 (IsA english_setter setter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "english sole is a kind of sole", "pln": ["(: cnet_isa_b245334d86 (IsA english_sole sole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "english sparrow is a kind of sparrow", "pln": ["(: cnet_isa_bd9acc2645 (IsA english_sparrow sparrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "english springer is a kind of springer spaniel", "pln": ["(: cnet_isa_613db176e3 (IsA english_springer springer_spaniel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "english toy spaniel is a kind of toy spaniel", "pln": ["(: cnet_isa_df525655ce (IsA english_toy_spaniel toy_spaniel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "english walnut is a kind of walnut", "pln": ["(: cnet_isa_56b142a7f4 (IsA english_walnut walnut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "englishman is a kind of english person", "pln": ["(: cnet_isa_de7203b1b6 (IsA englishman english_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "englishwoman is a kind of english person", "pln": ["(: cnet_isa_0faeb7168e (IsA englishwoman english_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "engorgement is a kind of eating", "pln": ["(: cnet_isa_da1d8aca90 (IsA engorgement eating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "engorgement is a kind of hyperemia", "pln": ["(: cnet_isa_d7158d9e03 (IsA engorgement hyperemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "engram is a kind of memory", "pln": ["(: cnet_isa_d53329c7b9 (IsA engram memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "engraulidae is a kind of fish family", "pln": ["(: cnet_isa_c576e24b2f (IsA engraulidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "engraulis is a kind of fish genus", "pln": ["(: cnet_isa_5f1843d73e (IsA engraulis fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "engraver is a kind of printmaker", "pln": ["(: cnet_isa_fbebce12cc (IsA engraver printmaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "engraver is a kind of skilled worker", "pln": ["(: cnet_isa_0d114a17b1 (IsA engraver skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "engraving is a kind of printmaking", "pln": ["(: cnet_isa_6cda96b985 (IsA engraving printmaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "engraving is a kind of plate", "pln": ["(: cnet_isa_6e39b6b548 (IsA engraving plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "engraving is a kind of print", "pln": ["(: cnet_isa_04eba66906 (IsA engraving print) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enhancement is a kind of improvement", "pln": ["(: cnet_isa_81c322a94f (IsA enhancement improvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "enhydra is a kind of mammal genus", "pln": ["(: cnet_isa_c736cdcd3b (IsA enhydra mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enigma canon is a kind of canon", "pln": ["(: cnet_isa_517c143f02 (IsA enigma_canon canon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enjambment is a kind of prosody", "pln": ["(: cnet_isa_f299fd72af (IsA enjambment prosody) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enjoyableness is a kind of pleasantness", "pln": ["(: cnet_isa_32055f1f0d (IsA enjoyableness pleasantness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "enjoyer is a kind of person", "pln": ["(: cnet_isa_8fecf3c12b (IsA enjoyer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enjoyment is a kind of activity", "pln": ["(: cnet_isa_414991d8af (IsA enjoyment activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enjoyment is a kind of pleasure", "pln": ["(: cnet_isa_77f01e9918 (IsA enjoyment pleasure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enkephalin is a kind of endorphin", "pln": ["(: cnet_isa_caca852671 (IsA enkephalin endorphin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enlargement is a kind of picture", "pln": ["(: cnet_isa_b241299212 (IsA enlargement picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enlargement is a kind of state", "pln": ["(: cnet_isa_729c8bbdd2 (IsA enlargement state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enlarger is a kind of photographic equipment", "pln": ["(: cnet_isa_ffe5885ab1 (IsA enlarger photographic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "enlightenment is a kind of education", "pln": ["(: cnet_isa_68b6032369 (IsA enlightenment education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enlightenment is a kind of reform movement", "pln": ["(: cnet_isa_1050ce95f9 (IsA enlightenment reform_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enlisted man is a kind of enlisted person", "pln": ["(: cnet_isa_69ea4d2c9d (IsA enlisted_man enlisted_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enlisted person is a kind of serviceman", "pln": ["(: cnet_isa_769cd7c048 (IsA enlisted_person serviceman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enlisted woman is a kind of enlisted person", "pln": ["(: cnet_isa_9d0ac93601 (IsA enlisted_woman enlisted_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enlistment is a kind of commitment", "pln": ["(: cnet_isa_498ea38587 (IsA enlistment commitment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enlistment is a kind of time period", "pln": ["(: cnet_isa_ff70c0f869 (IsA enlistment time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ennoblement is a kind of promotion", "pln": ["(: cnet_isa_f39f38d2d1 (IsA ennoblement promotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ennoblement is a kind of condition", "pln": ["(: cnet_isa_2e5d9d523c (IsA ennoblement condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ennui is a kind of boredom", "pln": ["(: cnet_isa_5820055ee4 (IsA ennui boredom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enol is a kind of organic compound", "pln": ["(: cnet_isa_433aa0ea0c (IsA enol organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enologist is a kind of specialist", "pln": ["(: cnet_isa_c3ef0dc29b (IsA enologist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enology is a kind of art", "pln": ["(: cnet_isa_f0f980aa83 (IsA enology art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enophile is a kind of appreciator", "pln": ["(: cnet_isa_990c88f898 (IsA enophile appreciator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enormity is a kind of atrocity", "pln": ["(: cnet_isa_3820bb94fa (IsA enormity atrocity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enormity is a kind of enormousness", "pln": ["(: cnet_isa_f21b526d48 (IsA enormity enormousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enormity is a kind of nefariousness", "pln": ["(: cnet_isa_105511d59b (IsA enormity nefariousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enormousness is a kind of largeness", "pln": ["(: cnet_isa_6fa9a2d9e3 (IsA enormousness largeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enosis is a kind of union", "pln": ["(: cnet_isa_7a05af8254 (IsA enosis union) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enough is a kind of relative quantity", "pln": ["(: cnet_isa_0b081e0308 (IsA enough relative_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enrichment is a kind of improvement", "pln": ["(: cnet_isa_1cc2f1693c (IsA enrichment improvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enrichment is a kind of gift", "pln": ["(: cnet_isa_398fdd8b70 (IsA enrichment gift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enrollee is a kind of person", "pln": ["(: cnet_isa_5ca4864711 (IsA enrollee person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ensemble is a kind of collection", "pln": ["(: cnet_isa_14ad623164 (IsA ensemble collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ensemble is a kind of outfit", "pln": ["(: cnet_isa_1ccde2f6c9 (IsA ensemble outfit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ensemble is a kind of cast", "pln": ["(: cnet_isa_e4c08d84cc (IsA ensemble cast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ensemble is a kind of musical organization", "pln": ["(: cnet_isa_e57371e5c9 (IsA ensemble musical_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ensete is a kind of monocot genus", "pln": ["(: cnet_isa_6880b50b95 (IsA ensete monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ensiform leaf is a kind of simple leaf", "pln": ["(: cnet_isa_17d99075f3 (IsA ensiform_leaf simple_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ensign is a kind of color", "pln": ["(: cnet_isa_9ee8a398bd (IsA ensign color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ensign is a kind of commissioned naval officer", "pln": ["(: cnet_isa_1ad2d0c0a1 (IsA ensign commissioned_naval_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ensis is a kind of mollusk genus", "pln": ["(: cnet_isa_70810f26cd (IsA ensis mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enslavement is a kind of capture", "pln": ["(: cnet_isa_bdb04f87ac (IsA enslavement capture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "enslavement is a kind of subjugation", "pln": ["(: cnet_isa_bb7af99015 (IsA enslavement subjugation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entablature is a kind of structure", "pln": ["(: cnet_isa_8440d46b5f (IsA entablature structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entail is a kind of change", "pln": ["(: cnet_isa_96efc0f34d (IsA entail change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "entail is a kind of estate", "pln": ["(: cnet_isa_a946a010be (IsA entail estate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entandrophragma is a kind of rosid dicot genus", "pln": ["(: cnet_isa_75197ad61c (IsA entandrophragma rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entasis is a kind of convex shape", "pln": ["(: cnet_isa_6a83398c63 (IsA entasis convex_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "entelea is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_939568192b (IsA entelea dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entelechy is a kind of actuality", "pln": ["(: cnet_isa_dfa201be40 (IsA entelechy actuality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entellus is a kind of langur", "pln": ["(: cnet_isa_0b57a3da2d (IsA entellus langur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entente is a kind of agreement", "pln": ["(: cnet_isa_feb81ff64a (IsA entente agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entente is a kind of alliance", "pln": ["(: cnet_isa_28aa3c4edb (IsA entente alliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enteric bacteria is a kind of eubacteria", "pln": ["(: cnet_isa_22f014fdda (IsA enteric_bacteria eubacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enteric coated aspirin is a kind of aspirin", "pln": ["(: cnet_isa_a2d9da4126 (IsA enteric_coated_aspirin aspirin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enteritis is a kind of inflammation", "pln": ["(: cnet_isa_9a8fd0ee82 (IsA enteritis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enterobacteriaceae is a kind of bacteria family", "pln": ["(: cnet_isa_7054e830d0 (IsA enterobacteriaceae bacteria_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "enterobiasis is a kind of infection", "pln": ["(: cnet_isa_736d36bac9 (IsA enterobiasis infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enterobiasis is a kind of infestation", "pln": ["(: cnet_isa_23f18f4afc (IsA enterobiasis infestation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enterobius is a kind of worm genus", "pln": ["(: cnet_isa_a661bb50fe (IsA enterobius worm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enterokinase is a kind of enzyme", "pln": ["(: cnet_isa_a425a2a343 (IsA enterokinase enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enterolith is a kind of calculus", "pln": ["(: cnet_isa_52017c6ed0 (IsA enterolith calculus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enterolithiasis is a kind of lithiasis", "pln": ["(: cnet_isa_179a8ff6f1 (IsA enterolithiasis lithiasis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enterolobium is a kind of rosid dicot genus", "pln": ["(: cnet_isa_dfaebdbcf6 (IsA enterolobium rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enteron is a kind of alimentary canal", "pln": ["(: cnet_isa_1c674230ee (IsA enteron alimentary_canal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enteropathy is a kind of disease", "pln": ["(: cnet_isa_04716fb500 (IsA enteropathy disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enteroptosis is a kind of prolapse", "pln": ["(: cnet_isa_a9e62b17d3 (IsA enteroptosis prolapse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enterostenosis is a kind of stenosis", "pln": ["(: cnet_isa_91f2c89525 (IsA enterostenosis stenosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enterostomy is a kind of operation", "pln": ["(: cnet_isa_bcc156e619 (IsA enterostomy operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enterotoxemia is a kind of animal disease", "pln": ["(: cnet_isa_ac4ed09ddf (IsA enterotoxemia animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enterotoxin is a kind of cytotoxin", "pln": ["(: cnet_isa_b3649c89ef (IsA enterotoxin cytotoxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enterovirus is a kind of picornavirus", "pln": ["(: cnet_isa_060e6e5177 (IsA enterovirus picornavirus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enterprise is a kind of undertaking", "pln": ["(: cnet_isa_689147b6a4 (IsA enterprise undertaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enterprise is a kind of drive", "pln": ["(: cnet_isa_eb79910156 (IsA enterprise drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enterprise is a kind of organization", "pln": ["(: cnet_isa_81bc4aa758 (IsA enterprise organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enterprise zone is a kind of city district", "pln": ["(: cnet_isa_1ff5b96f87 (IsA enterprise_zone city_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "entertainer is a kind of person", "pln": ["(: cnet_isa_921e1479b1 (IsA entertainer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entertainment is a kind of diversion", "pln": ["(: cnet_isa_61e5141d1c (IsA entertainment diversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entertainment center is a kind of wall unit", "pln": ["(: cnet_isa_04a6f3984a (IsA entertainment_center wall_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "entertainment deduction is a kind of business deduction", "pln": ["(: cnet_isa_a07a78f3db (IsA entertainment_deduction business_deduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entertainment industry is a kind of industry", "pln": ["(: cnet_isa_131ad3f1d9 (IsA entertainment_industry industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enthusiasm is a kind of interest", "pln": ["(: cnet_isa_41cf789efc (IsA enthusiasm interest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enthusiasm is a kind of feeling", "pln": ["(: cnet_isa_25b3ad6a96 (IsA enthusiasm feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enthusiast is a kind of supporter", "pln": ["(: cnet_isa_192ad02b14 (IsA enthusiast supporter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enticement is a kind of influence", "pln": ["(: cnet_isa_4ad49c7aa1 (IsA enticement influence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entire leaf is a kind of leaf", "pln": ["(: cnet_isa_e1fd2fcbf6 (IsA entire_leaf leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entirety is a kind of completeness", "pln": ["(: cnet_isa_0506247347 (IsA entirety completeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entitlement is a kind of title", "pln": ["(: cnet_isa_8789d3a28b (IsA entitlement title) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entlebucher sennenhund is a kind of sennenhund", "pln": ["(: cnet_isa_3756be998f (IsA entlebucher_sennenhund sennenhund) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entoloma is a kind of fungus genus", "pln": ["(: cnet_isa_ab7375bb8d (IsA entoloma fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entoloma aprile is a kind of agaric", "pln": ["(: cnet_isa_f7305d9729 (IsA entoloma_aprile agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entoloma lividum is a kind of agaric", "pln": ["(: cnet_isa_80e766792d (IsA entoloma_lividum agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entolomataceae is a kind of fungus family", "pln": ["(: cnet_isa_075b167f79 (IsA entolomataceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entomion is a kind of craniometric point", "pln": ["(: cnet_isa_2d8f48b04d (IsA entomion craniometric_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entomologist is a kind of zoologist", "pln": ["(: cnet_isa_86de1d5d28 (IsA entomologist zoologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entomology is a kind of zoology", "pln": ["(: cnet_isa_46b3560e8f (IsA entomology zoology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entomophobia is a kind of zoophobia", "pln": ["(: cnet_isa_6d87ace3ec (IsA entomophobia zoophobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entomophthora is a kind of fungus genus", "pln": ["(: cnet_isa_1e3441d2ed (IsA entomophthora fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entomophthoraceae is a kind of fungus family", "pln": ["(: cnet_isa_344d722466 (IsA entomophthoraceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entomophthorale is a kind of fungus order", "pln": ["(: cnet_isa_7c9504f331 (IsA entomophthorale fungus_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entomostraca is a kind of class", "pln": ["(: cnet_isa_6b010b0145 (IsA entomostraca class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entopic pregnancy is a kind of pregnancy", "pln": ["(: cnet_isa_0ab350c847 (IsA entopic_pregnancy pregnancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entoproct is a kind of invertebrate", "pln": ["(: cnet_isa_bcafe1abf1 (IsA entoproct invertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entoprocta is a kind of phylum", "pln": ["(: cnet_isa_14a18be82c (IsA entoprocta phylum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entr acte is a kind of interlude", "pln": ["(: cnet_isa_c977993dc8 (IsA entr_acte interlude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entrance is a kind of arrival", "pln": ["(: cnet_isa_1459e2cbf2 (IsA entrance arrival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entrance is a kind of access", "pln": ["(: cnet_isa_6ff2f01358 (IsA entrance access) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entrance is a kind of change of location", "pln": ["(: cnet_isa_d1b2e66566 (IsA entrance change_of_location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entrance examination is a kind of examination", "pln": ["(: cnet_isa_f3dfa8c5c1 (IsA entrance_examination examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entrance fee is a kind of fee", "pln": ["(: cnet_isa_1786bb839e (IsA entrance_fee fee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entrancement is a kind of delight", "pln": ["(: cnet_isa_3b73a8eca3 (IsA entrancement delight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entranceway is a kind of location", "pln": ["(: cnet_isa_6ed26cfc86 (IsA entranceway location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entrant is a kind of commodity", "pln": ["(: cnet_isa_98a671bde7 (IsA entrant commodity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entrant is a kind of contestant", "pln": ["(: cnet_isa_d68b6693f7 (IsA entrant contestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entrant is a kind of traveler", "pln": ["(: cnet_isa_dd3654c041 (IsA entrant traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entrapment is a kind of defense", "pln": ["(: cnet_isa_39744e541c (IsA entrapment defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entreaty is a kind of request", "pln": ["(: cnet_isa_35092fd6d9 (IsA entreaty request) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entrecote is a kind of cut", "pln": ["(: cnet_isa_3393dbabef (IsA entrecote cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entree is a kind of entrance", "pln": ["(: cnet_isa_381cd65c6c (IsA entree entrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entree is a kind of right", "pln": ["(: cnet_isa_94e450eecb (IsA entree right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entree is a kind of course", "pln": ["(: cnet_isa_2d8851a95b (IsA entree course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entrenching tool is a kind of hand shovel", "pln": ["(: cnet_isa_204fe0c0ee (IsA entrenching_tool hand_shovel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entrenchment is a kind of fortification", "pln": ["(: cnet_isa_4ae8ea61d4 (IsA entrenchment fortification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entrepot is a kind of port", "pln": ["(: cnet_isa_51411f1154 (IsA entrepot port) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entrepreneur is a kind of businessperson", "pln": ["(: cnet_isa_344748acda (IsA entrepreneur businessperson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entry is a kind of written record", "pln": ["(: cnet_isa_50c9e3ecf8 (IsA entry written_record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "entry is a kind of accounting", "pln": ["(: cnet_isa_bf789942d5 (IsA entry accounting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "enucleation is a kind of operation", "pln": ["(: cnet_isa_e6135368f8 (IsA enucleation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enuki is a kind of semitic deity", "pln": ["(: cnet_isa_b49a3d1236 (IsA enuki semitic_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enumeration is a kind of list", "pln": ["(: cnet_isa_4c3c7fe8d7 (IsA enumeration list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enunciation is a kind of articulation", "pln": ["(: cnet_isa_513fcde977 (IsA enunciation articulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enuresis is a kind of incontinence", "pln": ["(: cnet_isa_469062b0ab (IsA enuresis incontinence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "envelope is a kind of bag", "pln": ["(: cnet_isa_d3e58dbe91 (IsA envelope bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "envelope is a kind of container", "pln": ["(: cnet_isa_3728a39621 (IsA envelope container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "envelope is a kind of wrapping", "pln": ["(: cnet_isa_fda38e586d (IsA envelope wrapping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "envelope is a kind of operating capability", "pln": ["(: cnet_isa_8ff83e2204 (IsA envelope operating_capability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "envelope is a kind of covering", "pln": ["(: cnet_isa_b855cb17d7 (IsA envelope covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "envelope is a kind of curve", "pln": ["(: cnet_isa_534075584d (IsA envelope curve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "environment is a kind of geographical area", "pln": ["(: cnet_isa_3f4f63da2d (IsA environment geographical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "environment is a kind of situation", "pln": ["(: cnet_isa_f8fa05c485 (IsA environment situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "environmental condition is a kind of condition", "pln": ["(: cnet_isa_375c5986c5 (IsA environmental_condition condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "environmental protection agency is a kind of independent agency", "pln": ["(: cnet_isa_b3f072d58b (IsA environmental_protection_agency independent_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "environmentalism is a kind of preservation", "pln": ["(: cnet_isa_a72615f257 (IsA environmentalism preservation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "environmentalism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_a853e0a6e4 (IsA environmentalism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "environmentalist is a kind of reformer", "pln": ["(: cnet_isa_6b946c6b6b (IsA environmentalist reformer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "environ is a kind of geographical area", "pln": ["(: cnet_isa_3143e61bd5 (IsA environ geographical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "envoy is a kind of stanza", "pln": ["(: cnet_isa_7d29d1fd9a (IsA envoy stanza) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "envoy is a kind of diplomat", "pln": ["(: cnet_isa_23ca514428 (IsA envoy diplomat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "envy is a kind of mortal sin", "pln": ["(: cnet_isa_2a4374aaa9 (IsA envy mortal_sin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "envy is a kind of resentment", "pln": ["(: cnet_isa_a5499d31df (IsA envy resentment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enzyme is a kind of catalyst", "pln": ["(: cnet_isa_f142219c04 (IsA enzyme catalyst) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "enzyme is a kind of protein", "pln": ["(: cnet_isa_cf14cc7600 (IsA enzyme protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enzyme linked immunosorbent serologic assay is a kind of assay", "pln": ["(: cnet_isa_369b4a69a6 (IsA enzyme_linked_immunosorbent_serologic_assay assay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enzymologist is a kind of biochemist", "pln": ["(: cnet_isa_2cde987cbe (IsA enzymologist biochemist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "enzymology is a kind of biochemistry", "pln": ["(: cnet_isa_416e0e20c3 (IsA enzymology biochemistry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eohippus is a kind of horse", "pln": ["(: cnet_isa_3fe50729df (IsA eohippus horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eolian is a kind of hellene", "pln": ["(: cnet_isa_2a33bf24a8 (IsA eolian hellene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eolith is a kind of tool", "pln": ["(: cnet_isa_fc6803e3e1 (IsA eolith tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eon is a kind of spiritual being", "pln": ["(: cnet_isa_125f90b838 (IsA eon spiritual_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eon is a kind of geological time", "pln": ["(: cnet_isa_5fc3c6486c (IsA eon geological_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eon is a kind of long time", "pln": ["(: cnet_isa_a897844f0e (IsA eon long_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eoraptor is a kind of theropod", "pln": ["(: cnet_isa_0f367c12be (IsA eoraptor theropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eosin is a kind of fluorescein", "pln": ["(: cnet_isa_b753e25d4f (IsA eosin fluorescein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eosinopenia is a kind of symptom", "pln": ["(: cnet_isa_a2a51dbb6a (IsA eosinopenia symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eosinophil is a kind of leukocyte", "pln": ["(: cnet_isa_920ff7ec25 (IsA eosinophil leukocyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eosinophilia is a kind of symptom", "pln": ["(: cnet_isa_207a8c4ba1 (IsA eosinophilia symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epacridaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_d371532081 (IsA epacridaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epacris is a kind of australian heath", "pln": ["(: cnet_isa_5f8ab5bfe4 (IsA epacris australian_heath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epanalepsis is a kind of repetition", "pln": ["(: cnet_isa_6a76a3477f (IsA epanalepsis repetition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epanaphora is a kind of repetition", "pln": ["(: cnet_isa_7a04a13cef (IsA epanaphora repetition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epanodo is a kind of recapitulation", "pln": ["(: cnet_isa_36e4493485 (IsA epanodo recapitulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epanodo is a kind of repetition", "pln": ["(: cnet_isa_6031444181 (IsA epanodo repetition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epanorthosis is a kind of rhetorical device", "pln": ["(: cnet_isa_894758eb85 (IsA epanorthosis rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eparch is a kind of bishop", "pln": ["(: cnet_isa_8ddd69ef77 (IsA eparch bishop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eparch is a kind of governor", "pln": ["(: cnet_isa_28ab4624fa (IsA eparch governor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eparchy is a kind of diocese", "pln": ["(: cnet_isa_50fe53c1ce (IsA eparchy diocese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eparchy is a kind of state", "pln": ["(: cnet_isa_a641904ff8 (IsA eparchy state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epaulet is a kind of adornment", "pln": ["(: cnet_isa_4b55817b3b (IsA epaulet adornment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "epauliere is a kind of armor plate", "pln": ["(: cnet_isa_abfa915fb1 (IsA epauliere armor_plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epee is a kind of fencing sword", "pln": ["(: cnet_isa_911e8edba3 (IsA epee fencing_sword) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ependyma is a kind of membrane", "pln": ["(: cnet_isa_8d2aeb80b7 (IsA ependyma membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "epenthesis is a kind of articulation", "pln": ["(: cnet_isa_552b769385 (IsA epenthesis articulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epergne is a kind of centerpiece", "pln": ["(: cnet_isa_7ee3a50d50 (IsA epergne centerpiece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ephah is a kind of dry unit", "pln": ["(: cnet_isa_8a19031a21 (IsA ephah dry_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ephedra is a kind of shrub", "pln": ["(: cnet_isa_28454a9b62 (IsA ephedra shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ephedraceae is a kind of gymnosperm family", "pln": ["(: cnet_isa_da132b43f0 (IsA ephedraceae gymnosperm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ephedrine is a kind of alkaloid", "pln": ["(: cnet_isa_e4c074b9d4 (IsA ephedrine alkaloid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ephedrine is a kind of bronchodilator", "pln": ["(: cnet_isa_6b1d089a7e (IsA ephedrine bronchodilator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ephemera is a kind of insect", "pln": ["(: cnet_isa_a180ab2538 (IsA ephemera insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ephemera is a kind of time", "pln": ["(: cnet_isa_f83ef10f22 (IsA ephemera time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ephemerality is a kind of transience", "pln": ["(: cnet_isa_12cc9d40ef (IsA ephemerality transience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ephemerid is a kind of insect", "pln": ["(: cnet_isa_af7d8850dd (IsA ephemerid insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ephemeridae is a kind of arthropod family", "pln": ["(: cnet_isa_8dc595a5f5 (IsA ephemeridae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ephemeris is a kind of annual", "pln": ["(: cnet_isa_94be3ff883 (IsA ephemeris annual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ephemeroptera is a kind of animal order", "pln": ["(: cnet_isa_c7f0fe7573 (IsA ephemeroptera animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ephesian is a kind of hellene", "pln": ["(: cnet_isa_f96f6cf565 (IsA ephesian hellene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ephestia is a kind of arthropod genus", "pln": ["(: cnet_isa_d5462eb47e (IsA ephestia arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ephippidae is a kind of fish family", "pln": ["(: cnet_isa_b8334b9899 (IsA ephippidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ephippiorhynchus is a kind of bird genus", "pln": ["(: cnet_isa_5f70904a82 (IsA ephippiorhynchus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epic poem is a kind of poem", "pln": ["(: cnet_isa_b89f1268c7 (IsA epic_poem poem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epicalyx is a kind of bract", "pln": ["(: cnet_isa_8af6e76c34 (IsA epicalyx bract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epicanthus is a kind of fold", "pln": ["(: cnet_isa_ad716b423f (IsA epicanthus fold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epicardia is a kind of passage", "pln": ["(: cnet_isa_4beb7f43a4 (IsA epicardia passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "epicardium is a kind of serous membrane", "pln": ["(: cnet_isa_9742ee473f (IsA epicardium serous_membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epicarp is a kind of pericarp", "pln": ["(: cnet_isa_71991ef78c (IsA epicarp pericarp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epicenter is a kind of geographic point", "pln": ["(: cnet_isa_075970ad85 (IsA epicenter geographic_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epicondyle is a kind of process", "pln": ["(: cnet_isa_ea0cb596c3 (IsA epicondyle process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epicondylitis is a kind of inflammation", "pln": ["(: cnet_isa_c05f66284e (IsA epicondylitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epicranium is a kind of body covering", "pln": ["(: cnet_isa_d5bc350928 (IsA epicranium body_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epicure is a kind of sensualist", "pln": ["(: cnet_isa_aacd77e038 (IsA epicure sensualist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "epicureanism is a kind of doctrine", "pln": ["(: cnet_isa_a03cce5e5d (IsA epicureanism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "epicurism is a kind of disposition", "pln": ["(: cnet_isa_1eb4426357 (IsA epicurism disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epicycle is a kind of circle", "pln": ["(: cnet_isa_f8eb6f6a30 (IsA epicycle circle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epicyclic train is a kind of gearing", "pln": ["(: cnet_isa_23a6598720 (IsA epicyclic_train gearing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epicycloid is a kind of roulette", "pln": ["(: cnet_isa_4ca4097f47 (IsA epicycloid roulette) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epideictic oratory is a kind of oratory", "pln": ["(: cnet_isa_79336fa7f5 (IsA epideictic_oratory oratory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epidemic is a kind of outbreak", "pln": ["(: cnet_isa_6fb6efa5fe (IsA epidemic outbreak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epidemic disease is a kind of infectious disease", "pln": ["(: cnet_isa_5412ac88b5 (IsA epidemic_disease infectious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epidemic pleurodynia is a kind of epidemic disease", "pln": ["(: cnet_isa_f1189c0b74 (IsA epidemic_pleurodynia epidemic_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epidemiologist is a kind of medical scientist", "pln": ["(: cnet_isa_9ce365e886 (IsA epidemiologist medical_scientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epidemiology is a kind of medicine", "pln": ["(: cnet_isa_761077b7de (IsA epidemiology medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epidendron is a kind of orchid", "pln": ["(: cnet_isa_2d4befb4b4 (IsA epidendron orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epidendrum is a kind of monocot genus", "pln": ["(: cnet_isa_1ebd7956e7 (IsA epidendrum monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "epidermal cell is a kind of skin cell", "pln": ["(: cnet_isa_6d071323b2 (IsA epidermal_cell skin_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epidermis is a kind of stratum", "pln": ["(: cnet_isa_605d610e74 (IsA epidermis stratum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epidiascope is a kind of projector", "pln": ["(: cnet_isa_41901d2d28 (IsA epidiascope projector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epididymis is a kind of duct", "pln": ["(: cnet_isa_1e7202bc49 (IsA epididymis duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epididymitis is a kind of inflammation", "pln": ["(: cnet_isa_8d8c19f6b6 (IsA epididymitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epidural anesthesia is a kind of regional anesthesia", "pln": ["(: cnet_isa_21ae0197c3 (IsA epidural_anesthesia regional_anesthesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epidural injection is a kind of injection", "pln": ["(: cnet_isa_cf94c16985 (IsA epidural_injection injection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epigaea is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_76634061fc (IsA epigaea dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epigastric artery is a kind of artery", "pln": ["(: cnet_isa_a97c7ca9ea (IsA epigastric_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "epigastric vein is a kind of vein", "pln": ["(: cnet_isa_d60291b9dd (IsA epigastric_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epigastrium is a kind of area", "pln": ["(: cnet_isa_fc2ebe9573 (IsA epigastrium area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epigenesis is a kind of metamorphism", "pln": ["(: cnet_isa_9b20ed8ebd (IsA epigenesis metamorphism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epiglottis is a kind of cartilaginous structure", "pln": ["(: cnet_isa_416d0e44c1 (IsA epiglottis cartilaginous_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epiglottitis is a kind of inflammation", "pln": ["(: cnet_isa_89a1817994 (IsA epiglottitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epigone is a kind of copycat", "pln": ["(: cnet_isa_e5f0631a3d (IsA epigone copycat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epigram is a kind of saying", "pln": ["(: cnet_isa_e0e0c9d1d5 (IsA epigram saying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epigraph is a kind of inscription", "pln": ["(: cnet_isa_7c9bb50f94 (IsA epigraph inscription) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epigraph is a kind of quotation", "pln": ["(: cnet_isa_9cbffcadd4 (IsA epigraph quotation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epigraphy is a kind of paleography", "pln": ["(: cnet_isa_c7407dbc43 (IsA epigraphy paleography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epikeratophakia is a kind of keratoplasty", "pln": ["(: cnet_isa_4fbe69d307 (IsA epikeratophakia keratoplasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epilachna is a kind of arthropod genus", "pln": ["(: cnet_isa_fb9faaa7cf (IsA epilachna arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epilating wax is a kind of depilatory", "pln": ["(: cnet_isa_fc1170211b (IsA epilating_wax depilatory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epilation is a kind of loss", "pln": ["(: cnet_isa_8f5c11dd46 (IsA epilation loss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epilepsia minor is a kind of epilepsy", "pln": ["(: cnet_isa_fe034632f7 (IsA epilepsia_minor epilepsy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epilepsy is a kind of brain disorder", "pln": ["(: cnet_isa_f880575ee7 (IsA epilepsy brain_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epileptic is a kind of sick person", "pln": ["(: cnet_isa_6c0baefd7b (IsA epileptic sick_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "epileptic seizure is a kind of convulsion", "pln": ["(: cnet_isa_d17bbbc55a (IsA epileptic_seizure convulsion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epilobium is a kind of rosid dicot genus", "pln": ["(: cnet_isa_056feb301a (IsA epilobium rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epilogue is a kind of conclusion", "pln": ["(: cnet_isa_c6f5b45347 (IsA epilogue conclusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epimedium is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_33db46d93e (IsA epimedium magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epimetheus is a kind of titan", "pln": ["(: cnet_isa_e76e87f6e9 (IsA epimetheus titan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epinephelus is a kind of fish genus", "pln": ["(: cnet_isa_4331df36ad (IsA epinephelus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epinephrine is a kind of catecholamine", "pln": ["(: cnet_isa_e569167695 (IsA epinephrine catecholamine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epinephrine is a kind of hormone", "pln": ["(: cnet_isa_e4c672e764 (IsA epinephrine hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epinephrine is a kind of neurotransmitter", "pln": ["(: cnet_isa_eb4347993d (IsA epinephrine neurotransmitter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epinephrine is a kind of vasoconstrictor", "pln": ["(: cnet_isa_db0b81492f (IsA epinephrine vasoconstrictor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epipactis is a kind of monocot genus", "pln": ["(: cnet_isa_e757a05c41 (IsA epipactis monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epipactis helleborine is a kind of helleborine", "pln": ["(: cnet_isa_b72a958da4 (IsA epipactis_helleborine helleborine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epiphany is a kind of manifestation", "pln": ["(: cnet_isa_18929a3419 (IsA epiphany manifestation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epiphany is a kind of christian holy day", "pln": ["(: cnet_isa_7e363ee07a (IsA epiphany christian_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epiphenomenon is a kind of by product", "pln": ["(: cnet_isa_da5cfe07ed (IsA epiphenomenon by_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epiphora is a kind of repetition", "pln": ["(: cnet_isa_1d2079e9b5 (IsA epiphora repetition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epiphyllum is a kind of cactus", "pln": ["(: cnet_isa_e9be733e5a (IsA epiphyllum cactus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epiphysis is a kind of long bone", "pln": ["(: cnet_isa_7b3934fc82 (IsA epiphysis long_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "epiplexis is a kind of rhetorical device", "pln": ["(: cnet_isa_f3da15d89c (IsA epiplexis rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "epipremnum is a kind of monocot genus", "pln": ["(: cnet_isa_09a6475cf0 (IsA epipremnum monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "episcia is a kind of houseplant", "pln": ["(: cnet_isa_63c9886f3f (IsA episcia houseplant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "episcleral vein is a kind of venule", "pln": ["(: cnet_isa_803fd1011d (IsA episcleral_vein venule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "episcleritis is a kind of inflammation", "pln": ["(: cnet_isa_d81cf43bc8 (IsA episcleritis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "episcopacy is a kind of people", "pln": ["(: cnet_isa_4f51ada758 (IsA episcopacy people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "episcopal church is a kind of anglican church", "pln": ["(: cnet_isa_93100a6a25 (IsA episcopal_church anglican_church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "episcopalian is a kind of protestant", "pln": ["(: cnet_isa_72a59279ac (IsA episcopalian protestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "episcopalianism is a kind of theological doctrine", "pln": ["(: cnet_isa_69ae9e5f7a (IsA episcopalianism theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "episcopate is a kind of tenure", "pln": ["(: cnet_isa_19df81dd21 (IsA episcopate tenure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "episiotomy is a kind of perineotomy", "pln": ["(: cnet_isa_3dad3b01ec (IsA episiotomy perineotomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "episode is a kind of broadcast", "pln": ["(: cnet_isa_f39dafda23 (IsA episode broadcast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "episode is a kind of section", "pln": ["(: cnet_isa_3aa1e2837a (IsA episode section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "episode is a kind of happening", "pln": ["(: cnet_isa_d11f016543 (IsA episode happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "episodic memory is a kind of long term memory", "pln": ["(: cnet_isa_63ed333893 (IsA episodic_memory long_term_memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "episome is a kind of deoxyribonucleic acid", "pln": ["(: cnet_isa_a090b81a57 (IsA episome deoxyribonucleic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epispadia is a kind of birth defect", "pln": ["(: cnet_isa_3bc03f9b62 (IsA epispadia birth_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "episteme is a kind of cognition", "pln": ["(: cnet_isa_f2571a8720 (IsA episteme cognition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epistemic logic is a kind of modal logic", "pln": ["(: cnet_isa_f6ea4281b9 (IsA epistemic_logic modal_logic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epistemologist is a kind of philosopher", "pln": ["(: cnet_isa_c77c6f9459 (IsA epistemologist philosopher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epistemology is a kind of philosophy", "pln": ["(: cnet_isa_1ed8fed29c (IsA epistemology philosophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "epistle is a kind of book", "pln": ["(: cnet_isa_e93585d45e (IsA epistle book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "epistle is a kind of letter", "pln": ["(: cnet_isa_cf263927eb (IsA epistle letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epitaph is a kind of inscription", "pln": ["(: cnet_isa_75a333291f (IsA epitaph inscription) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epitaph is a kind of memorial", "pln": ["(: cnet_isa_55e2560af2 (IsA epitaph memorial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "epitaxy is a kind of growing", "pln": ["(: cnet_isa_426c794682 (IsA epitaxy growing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epithalamium is a kind of ode", "pln": ["(: cnet_isa_28cd718a7a (IsA epithalamium ode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epithelial cell is a kind of somatic cell", "pln": ["(: cnet_isa_d19af93125 (IsA epithelial_cell somatic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epithelioma is a kind of skin cancer", "pln": ["(: cnet_isa_e4b5457925 (IsA epithelioma skin_cancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epithelium is a kind of animal tissue", "pln": ["(: cnet_isa_c8116a8692 (IsA epithelium animal_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epithet is a kind of word picture", "pln": ["(: cnet_isa_9f8259054e (IsA epithet word_picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epitome is a kind of outline", "pln": ["(: cnet_isa_58154143f5 (IsA epitome outline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epoch is a kind of date", "pln": ["(: cnet_isa_3af380840f (IsA epoch date) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epoch is a kind of geological time", "pln": ["(: cnet_isa_730dc84538 (IsA epoch geological_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eponym is a kind of name", "pln": ["(: cnet_isa_1402742ffb (IsA eponym name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eponymy is a kind of derivation", "pln": ["(: cnet_isa_1ecc2d7986 (IsA eponymy derivation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epo is a kind of poetry", "pln": ["(: cnet_isa_d4d58a777f (IsA epo poetry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epoxy is a kind of glue", "pln": ["(: cnet_isa_c37d44df86 (IsA epoxy glue) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epoxy is a kind of synthetic resin", "pln": ["(: cnet_isa_5826a6294a (IsA epoxy synthetic_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epsilon is a kind of letter", "pln": ["(: cnet_isa_5f621e861a (IsA epsilon letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epsilon toxin is a kind of bacterial toxin", "pln": ["(: cnet_isa_35c383f653 (IsA epsilon_toxin bacterial_toxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epsom salt is a kind of purgative", "pln": ["(: cnet_isa_f84caa4896 (IsA epsom_salt purgative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epsom salt is a kind of magnesium sulfate", "pln": ["(: cnet_isa_89f915b5b6 (IsA epsom_salt magnesium_sulfate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "epstein barr virus is a kind of herpe", "pln": ["(: cnet_isa_f8e3bf4373 (IsA epstein_barr_virus herpe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eptatretus is a kind of hagfish", "pln": ["(: cnet_isa_8334c7166d (IsA eptatretus hagfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eptesicus is a kind of mammal genus", "pln": ["(: cnet_isa_ec2a4533be (IsA eptesicus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equal area projection is a kind of map projection", "pln": ["(: cnet_isa_9e2de9191d (IsA equal_area_projection map_projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equal opportunity is a kind of civil right", "pln": ["(: cnet_isa_0ca92b37ea (IsA equal_opportunity civil_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equal protection of law is a kind of civil right", "pln": ["(: cnet_isa_e1f636720b (IsA equal_protection_of_law civil_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equal sign is a kind of sign", "pln": ["(: cnet_isa_88c2ac93fb (IsA equal_sign sign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equal temperament is a kind of temperament", "pln": ["(: cnet_isa_8247203bf8 (IsA equal_temperament temperament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equality is a kind of sameness", "pln": ["(: cnet_isa_a4c0c7566c (IsA equality sameness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equality is a kind of status", "pln": ["(: cnet_isa_ae5e84383e (IsA equality status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "equality before law is a kind of human right", "pln": ["(: cnet_isa_98a3f593a4 (IsA equality_before_law human_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equality for everyone is a kind of ideal", "pln": ["(: cnet_isa_7b7997f141 (IsA equality_for_everyone ideal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equalization is a kind of act", "pln": ["(: cnet_isa_24c0ea1ff5 (IsA equalization act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equalizer is a kind of score", "pln": ["(: cnet_isa_52ce6d836a (IsA equalizer score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equalizer is a kind of electronic equipment", "pln": ["(: cnet_isa_d24734c588 (IsA equalizer electronic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equalizing dividend is a kind of dividend", "pln": ["(: cnet_isa_f26bf547d4 (IsA equalizing_dividend dividend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equatability is a kind of equality", "pln": ["(: cnet_isa_f377123d56 (IsA equatability equality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equation is a kind of mathematical statement", "pln": ["(: cnet_isa_53647dce7d (IsA equation mathematical_statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equation is a kind of equalization", "pln": ["(: cnet_isa_80bdd0134f (IsA equation equalization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equator is a kind of great circle", "pln": ["(: cnet_isa_7a7e302d4f (IsA equator great_circle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equator is a kind of circle", "pln": ["(: cnet_isa_7e3f5c39ad (IsA equator circle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equatorial is a kind of telescope", "pln": ["(: cnet_isa_11227c180f (IsA equatorial telescope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equatorial current is a kind of ocean current", "pln": ["(: cnet_isa_7a0be4863a (IsA equatorial_current ocean_current) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equerry is a kind of attendant", "pln": ["(: cnet_isa_12b573f8b5 (IsA equerry attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equerry is a kind of official", "pln": ["(: cnet_isa_abc01c3ca0 (IsA equerry official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equestrian is a kind of sport", "pln": ["(: cnet_isa_0207fca3ce (IsA equestrian sport) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equestrian sport is a kind of riding", "pln": ["(: cnet_isa_7828e275c8 (IsA equestrian_sport riding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equetus is a kind of fish genus", "pln": ["(: cnet_isa_5cecebf7e0 (IsA equetus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equidae is a kind of mammal family", "pln": ["(: cnet_isa_d9215d03d5 (IsA equidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equidistribution is a kind of distribution", "pln": ["(: cnet_isa_111e598412 (IsA equidistribution distribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equilateral is a kind of figure", "pln": ["(: cnet_isa_2bf2ecb6a3 (IsA equilateral figure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equilateral triangle is a kind of regular polygon", "pln": ["(: cnet_isa_ff20d8e752 (IsA equilateral_triangle regular_polygon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equilateral triangle is a kind of triangle", "pln": ["(: cnet_isa_d88edc8302 (IsA equilateral_triangle triangle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equilibration is a kind of stabilization", "pln": ["(: cnet_isa_cd59cc34ce (IsA equilibration stabilization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equilibrium is a kind of proprioception", "pln": ["(: cnet_isa_5b51fc6b7a (IsA equilibrium proprioception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equilibrium is a kind of situation", "pln": ["(: cnet_isa_560a8fe0b1 (IsA equilibrium situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equilibrium constant is a kind of constant", "pln": ["(: cnet_isa_6bca48a9ba (IsA equilibrium_constant constant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equilibrium law is a kind of law", "pln": ["(: cnet_isa_2c815d23ac (IsA equilibrium_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equine is a kind of odd toed ungulate", "pln": ["(: cnet_isa_ad46e8ca30 (IsA equine odd_toed_ungulate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equine distemper is a kind of distemper", "pln": ["(: cnet_isa_0abe4dfee0 (IsA equine_distemper distemper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equine encephalitis is a kind of encephalitis", "pln": ["(: cnet_isa_ab6f908c9b (IsA equine_encephalitis encephalitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equinoctial point is a kind of celestial point", "pln": ["(: cnet_isa_e6228a7dea (IsA equinoctial_point celestial_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equinox is a kind of cosmic time", "pln": ["(: cnet_isa_95ec1e95e0 (IsA equinox cosmic_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equipment is a kind of instrumentality", "pln": ["(: cnet_isa_4ec24df3c0 (IsA equipment instrumentality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "equisetaceae is a kind of fern family", "pln": ["(: cnet_isa_d2a54a1ee9 (IsA equisetaceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equisetale is a kind of plant order", "pln": ["(: cnet_isa_1ee7024b2f (IsA equisetale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equisetum is a kind of fern genus", "pln": ["(: cnet_isa_9bb601f174 (IsA equisetum fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equity is a kind of asset", "pln": ["(: cnet_isa_910673dfd5 (IsA equity asset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equity is a kind of interest", "pln": ["(: cnet_isa_76ab6381e6 (IsA equity interest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equivalence is a kind of equality", "pln": ["(: cnet_isa_75bdb250c3 (IsA equivalence equality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equivalent is a kind of atomic mass", "pln": ["(: cnet_isa_44380df774 (IsA equivalent atomic_mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equivalent is a kind of cognition", "pln": ["(: cnet_isa_ea48ee9e22 (IsA equivalent cognition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equivalent binary digit factor is a kind of divisor", "pln": ["(: cnet_isa_9b08f115a1 (IsA equivalent_binary_digit_factor divisor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "equivocation is a kind of falsification", "pln": ["(: cnet_isa_2090565fa3 (IsA equivocation falsification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equivocation is a kind of ambiguity", "pln": ["(: cnet_isa_e23cac8ee1 (IsA equivocation ambiguity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equivocation is a kind of untruthfulness", "pln": ["(: cnet_isa_f53e0f76ec (IsA equivocation untruthfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "equus is a kind of mammal genus", "pln": ["(: cnet_isa_a7139b21b2 (IsA equus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "era is a kind of geological time", "pln": ["(: cnet_isa_85e43d45ad (IsA era geological_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "era is a kind of time period", "pln": ["(: cnet_isa_e290a4572e (IsA era time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eradication is a kind of destruction", "pln": ["(: cnet_isa_a65dcdf597 (IsA eradication destruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eragrostis is a kind of monocot genus", "pln": ["(: cnet_isa_dafab71bab (IsA eragrostis monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eranthis is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_359f36ee36 (IsA eranthis magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "erasable programmable read only memory is a kind of read only memory", "pln": ["(: cnet_isa_6946e1759f (IsA erasable_programmable_read_only_memory read_only_memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eraser is a kind of implement", "pln": ["(: cnet_isa_6634f03c43 (IsA eraser implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erastianism is a kind of theological doctrine", "pln": ["(: cnet_isa_f9cc4d9cc4 (IsA erastianism theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erasure is a kind of area", "pln": ["(: cnet_isa_d190819c95 (IsA erasure area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erasure is a kind of correction", "pln": ["(: cnet_isa_70ad68c26f (IsA erasure correction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erb s palsy is a kind of paralysis", "pln": ["(: cnet_isa_2fdbb4bda3 (IsA erb_s_palsy paralysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erbium is a kind of metallic element", "pln": ["(: cnet_isa_694c1ad564 (IsA erbium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ercilla is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_0964a81f0d (IsA ercilla caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "erect bugle is a kind of bugle", "pln": ["(: cnet_isa_ec1e1cdbc9 (IsA erect_bugle bugle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erectile dysfunction is a kind of dysfunction", "pln": ["(: cnet_isa_95657e7c51 (IsA erectile_dysfunction dysfunction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erectile dysfunction is a kind of impotence", "pln": ["(: cnet_isa_ef0a959dd7 (IsA erectile_dysfunction impotence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erectile organ is a kind of organ", "pln": ["(: cnet_isa_d139443c37 (IsA erectile_organ organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erectile tissue is a kind of animal tissue", "pln": ["(: cnet_isa_316a1db27e (IsA erectile_tissue animal_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erecting is a kind of construction", "pln": ["(: cnet_isa_80d816b95d (IsA erecting construction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erecting prism is a kind of prism", "pln": ["(: cnet_isa_bfa8974120 (IsA erecting_prism prism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erection is a kind of structure", "pln": ["(: cnet_isa_f59c5a4487 (IsA erection structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erection is a kind of sexual arousal", "pln": ["(: cnet_isa_273f45eeef (IsA erection sexual_arousal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erectness is a kind of stance", "pln": ["(: cnet_isa_3342b09b88 (IsA erectness stance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eremite is a kind of religious", "pln": ["(: cnet_isa_592907b10e (IsA eremite religious) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eremitism is a kind of monasticism", "pln": ["(: cnet_isa_91068b8afe (IsA eremitism monasticism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erethism is a kind of abnormality", "pln": ["(: cnet_isa_f67a599af5 (IsA erethism abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erethizon is a kind of mammal genus", "pln": ["(: cnet_isa_da14b14283 (IsA erethizon mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "erethizontidae is a kind of mammal family", "pln": ["(: cnet_isa_1d5ef7d336 (IsA erethizontidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eretmochely is a kind of reptile genus", "pln": ["(: cnet_isa_e52abe422c (IsA eretmochely reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erg is a kind of work unit", "pln": ["(: cnet_isa_be721e7f44 (IsA erg work_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ergodicity is a kind of randomness", "pln": ["(: cnet_isa_d60403f46d (IsA ergodicity randomness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ergosterol is a kind of sterol", "pln": ["(: cnet_isa_f4aa96efa3 (IsA ergosterol sterol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ergot is a kind of fungus", "pln": ["(: cnet_isa_692d93e5b1 (IsA ergot fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ergot is a kind of plant disease", "pln": ["(: cnet_isa_7ad44848b9 (IsA ergot plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ergotamine is a kind of alkaloid", "pln": ["(: cnet_isa_06314f2fdf (IsA ergotamine alkaloid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ergotism is a kind of poisoning", "pln": ["(: cnet_isa_c9cc6090d4 (IsA ergotism poisoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ergotropism is a kind of tropism", "pln": ["(: cnet_isa_1c5451d572 (IsA ergotropism tropism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erianthus is a kind of monocot genus", "pln": ["(: cnet_isa_2849ceea1e (IsA erianthus monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erica is a kind of heath", "pln": ["(: cnet_isa_5a0c1d86fc (IsA erica heath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ericaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_0753c20a22 (IsA ericaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ericaceae is a kind of ericale", "pln": ["(: cnet_isa_0e58251e5f (IsA ericaceae ericale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ericale is a kind of plant order", "pln": ["(: cnet_isa_6a00509322 (IsA ericale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erie is a kind of iroquois", "pln": ["(: cnet_isa_6d2f4530bf (IsA erie iroquois) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erigeron is a kind of asterid dicot genus", "pln": ["(: cnet_isa_a733c32be4 (IsA erigeron asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erignathus is a kind of mammal genus", "pln": ["(: cnet_isa_f96f10a450 (IsA erignathus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "erinaceidae is a kind of mammal family", "pln": ["(: cnet_isa_fa395b0ddb (IsA erinaceidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erinaceus is a kind of mammal genus", "pln": ["(: cnet_isa_b352550bfe (IsA erinaceus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eriobotrya is a kind of rosid dicot genus", "pln": ["(: cnet_isa_25ee63b89a (IsA eriobotrya rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eriocaulaceae is a kind of monocot family", "pln": ["(: cnet_isa_965413427b (IsA eriocaulaceae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eriocaulon is a kind of monocot genus", "pln": ["(: cnet_isa_76b06e8fe9 (IsA eriocaulon monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eriodictyon is a kind of asterid dicot genus", "pln": ["(: cnet_isa_dff2439123 (IsA eriodictyon asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eriogonum is a kind of subshrub", "pln": ["(: cnet_isa_13c770efc7 (IsA eriogonum subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eriophorum is a kind of monocot genus", "pln": ["(: cnet_isa_5b52cc70c2 (IsA eriophorum monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eriophyllum is a kind of asterid dicot genus", "pln": ["(: cnet_isa_0b6fc7c327 (IsA eriophyllum asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eriosoma is a kind of arthropod genus", "pln": ["(: cnet_isa_94e1be7309 (IsA eriosoma arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eristic is a kind of art", "pln": ["(: cnet_isa_11c08a1e7b (IsA eristic art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erithacus is a kind of bird genus", "pln": ["(: cnet_isa_f37e47276d (IsA erithacus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eritrean is a kind of ethiopian", "pln": ["(: cnet_isa_a435597d9d (IsA eritrean ethiopian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erlang is a kind of telephone unit", "pln": ["(: cnet_isa_0eb58aa65c (IsA erlang telephone_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erlenmeyer flask is a kind of flask", "pln": ["(: cnet_isa_2d0bb64b0d (IsA erlenmeyer_flask flask) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ermine is a kind of weasel", "pln": ["(: cnet_isa_ac5b87727f (IsA ermine weasel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ermine is a kind of fur", "pln": ["(: cnet_isa_7883c886a4 (IsA ermine fur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ern is a kind of sea eagle", "pln": ["(: cnet_isa_4b34cf3260 (IsA ern sea_eagle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erodium is a kind of rosid dicot genus", "pln": ["(: cnet_isa_7365fd0abf (IsA erodium rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erogenous zone is a kind of area", "pln": ["(: cnet_isa_3e2d2b16e0 (IsA erogenous_zone area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erolia is a kind of bird genus", "pln": ["(: cnet_isa_596f24829b (IsA erolia bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erose leaf is a kind of leaf", "pln": ["(: cnet_isa_a2c01e2109 (IsA erose_leaf leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erosion is a kind of geological process", "pln": ["(: cnet_isa_64ec750954 (IsA erosion geological_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erosion is a kind of decline", "pln": ["(: cnet_isa_1fc0894592 (IsA erosion decline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erosion is a kind of environmental condition", "pln": ["(: cnet_isa_f75353c3b0 (IsA erosion environmental_condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erotic is a kind of sensualist", "pln": ["(: cnet_isa_e9794e52f3 (IsA erotic sensualist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eroticism is a kind of sexual arousal", "pln": ["(: cnet_isa_4ae71dc50b (IsA eroticism sexual_arousal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "errancy is a kind of fallibility", "pln": ["(: cnet_isa_e314a43ccb (IsA errancy fallibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "errancy is a kind of unacceptability", "pln": ["(: cnet_isa_046b643136 (IsA errancy unacceptability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "errand is a kind of trip", "pln": ["(: cnet_isa_390986aa49 (IsA errand trip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erroneousness is a kind of incorrectness", "pln": ["(: cnet_isa_9869be00c9 (IsA erroneousness incorrectness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "error is a kind of evil", "pln": ["(: cnet_isa_38e6f10489 (IsA error evil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "error is a kind of failure", "pln": ["(: cnet_isa_be81d8bc37 (IsA error failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "error is a kind of misconception", "pln": ["(: cnet_isa_4b168d85ed (IsA error misconception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "error is a kind of misstatement", "pln": ["(: cnet_isa_e6f3097888 (IsA error misstatement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "error is a kind of happening", "pln": ["(: cnet_isa_b66090385f (IsA error happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "error correction code is a kind of code", "pln": ["(: cnet_isa_0efa8eb2b6 (IsA error_correction_code code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ersatz is a kind of substitute", "pln": ["(: cnet_isa_4b512d1d52 (IsA ersatz substitute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eruca is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_30ce1c4bca (IsA eruca dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eruditeness is a kind of education", "pln": ["(: cnet_isa_89304f7809 (IsA eruditeness education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eruption is a kind of emergence", "pln": ["(: cnet_isa_0a7429f6ad (IsA eruption emergence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eruption is a kind of symptom", "pln": ["(: cnet_isa_ed899e9630 (IsA eruption symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eruption is a kind of action", "pln": ["(: cnet_isa_8a3dfe59a3 (IsA eruption action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erwinia is a kind of enteric bacteria", "pln": ["(: cnet_isa_84c1303858 (IsA erwinia enteric_bacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eryngium is a kind of rosid dicot genus", "pln": ["(: cnet_isa_dda8e8f29f (IsA eryngium rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eryngo is a kind of subshrub", "pln": ["(: cnet_isa_753371a602 (IsA eryngo subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erysimum is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_8ce40cd2d2 (IsA erysimum dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erysipela is a kind of saint anthony s fire", "pln": ["(: cnet_isa_800b04176b (IsA erysipela saint_anthony_s_fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erysiphaceae is a kind of fungus family", "pln": ["(: cnet_isa_79e3f28015 (IsA erysiphaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erysiphale is a kind of fungus order", "pln": ["(: cnet_isa_9fb4f3dfd0 (IsA erysiphale fungus_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erysiphe is a kind of fungus genus", "pln": ["(: cnet_isa_e39024c8fe (IsA erysiphe fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erythema is a kind of erythroderma", "pln": ["(: cnet_isa_4fe647a9a4 (IsA erythema erythroderma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erythema multiforme is a kind of erythema", "pln": ["(: cnet_isa_4dfff896d4 (IsA erythema_multiforme erythema) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "erythema nodosum is a kind of erythema", "pln": ["(: cnet_isa_7891729c9a (IsA erythema_nodosum erythema) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erythema nodosum leprosum is a kind of erythema nodosum", "pln": ["(: cnet_isa_b31a8f56f8 (IsA erythema_nodosum_leprosum erythema_nodosum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "erythrite is a kind of mineral", "pln": ["(: cnet_isa_afaaedcdce (IsA erythrite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erythroblast is a kind of embryonic cell", "pln": ["(: cnet_isa_54de122a25 (IsA erythroblast embryonic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erythroblastosis is a kind of blood disease", "pln": ["(: cnet_isa_df2bd0ecc3 (IsA erythroblastosis blood_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "erythroblastosis fetalis is a kind of anemia", "pln": ["(: cnet_isa_1929a2bc64 (IsA erythroblastosis_fetalis anemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erythrocebus is a kind of mammal genus", "pln": ["(: cnet_isa_cbbed873fd (IsA erythrocebus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erythrocyte sedimentation rate is a kind of rate", "pln": ["(: cnet_isa_f10c7abdec (IsA erythrocyte_sedimentation_rate rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erythroderma is a kind of skin disease", "pln": ["(: cnet_isa_648114e891 (IsA erythroderma skin_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erythronium is a kind of liliid monocot genus", "pln": ["(: cnet_isa_cca827a68e (IsA erythronium liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erythropoiesis is a kind of organic process", "pln": ["(: cnet_isa_a9baf47c92 (IsA erythropoiesis organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erythropoietin is a kind of glycoprotein", "pln": ["(: cnet_isa_6419b9df26 (IsA erythropoietin glycoprotein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erythroxylaceae is a kind of plant family", "pln": ["(: cnet_isa_37533e3caa (IsA erythroxylaceae plant_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erythroxylon is a kind of plant genus", "pln": ["(: cnet_isa_c488b558c0 (IsA erythroxylon plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erythroxylon coca is a kind of shrub", "pln": ["(: cnet_isa_24171f574e (IsA erythroxylon_coca shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "erythroxylon truxiuense is a kind of shrub", "pln": ["(: cnet_isa_6f432e678b (IsA erythroxylon_truxiuense shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "escadrille is a kind of squadron", "pln": ["(: cnet_isa_124ef24c2b (IsA escadrille squadron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "escalade is a kind of scaling", "pln": ["(: cnet_isa_cb793b062a (IsA escalade scaling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "escalader is a kind of climber", "pln": ["(: cnet_isa_b3926f116c (IsA escalader climber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "escalation is a kind of increase", "pln": ["(: cnet_isa_dacd101b71 (IsA escalation increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "escalator is a kind of stairway", "pln": ["(: cnet_isa_67e90709c3 (IsA escalator stairway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "escalator clause is a kind of article", "pln": ["(: cnet_isa_9e8d87d20d (IsA escalator_clause article) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "escalope de veau orloff is a kind of dish", "pln": ["(: cnet_isa_889c79f272 (IsA escalope_de_veau_orloff dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "escapade is a kind of diversion", "pln": ["(: cnet_isa_985090dbb9 (IsA escapade diversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "escape is a kind of avoidance", "pln": ["(: cnet_isa_4ca65e7398 (IsA escape avoidance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "escape is a kind of diversion", "pln": ["(: cnet_isa_08a32932bb (IsA escape diversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "escape is a kind of mean", "pln": ["(: cnet_isa_ed2ca99a42 (IsA escape mean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "escape is a kind of running away", "pln": ["(: cnet_isa_8637723b67 (IsA escape running_away) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "escape is a kind of discharge", "pln": ["(: cnet_isa_afcda7e6b6 (IsA escape discharge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "escape is a kind of plant", "pln": ["(: cnet_isa_962df722dd (IsA escape plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "escape hatch is a kind of hatchway", "pln": ["(: cnet_isa_3e7ced13b1 (IsA escape_hatch hatchway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "escape mechanism is a kind of evasion", "pln": ["(: cnet_isa_ab4ef84f2a (IsA escape_mechanism evasion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "escape velocity is a kind of speed", "pln": ["(: cnet_isa_ba59b43796 (IsA escape_velocity speed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "escape wheel is a kind of gear", "pln": ["(: cnet_isa_f26bb4c7e6 (IsA escape_wheel gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "escapee is a kind of fugitive", "pln": ["(: cnet_isa_fcd1b30bf2 (IsA escapee fugitive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "escapement is a kind of mechanical device", "pln": ["(: cnet_isa_872e2b8dc6 (IsA escapement mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "escapist is a kind of daydreamer", "pln": ["(: cnet_isa_5174a6844c (IsA escapist daydreamer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "escapologist is a kind of magician", "pln": ["(: cnet_isa_83d134393d (IsA escapologist magician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "escapology is a kind of discipline", "pln": ["(: cnet_isa_81a690c437 (IsA escapology discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "escargot is a kind of meat", "pln": ["(: cnet_isa_82507bbfd8 (IsA escargot meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "escarpment is a kind of fortification", "pln": ["(: cnet_isa_7f57337181 (IsA escarpment fortification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "escarpment is a kind of slope", "pln": ["(: cnet_isa_e5120749c5 (IsA escarpment slope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eschar is a kind of scab", "pln": ["(: cnet_isa_2fb89b5e84 (IsA eschar scab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eschatologist is a kind of theologian", "pln": ["(: cnet_isa_b38d8799c2 (IsA eschatologist theologian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eschatology is a kind of theology", "pln": ["(: cnet_isa_ac47fc435d (IsA eschatology theology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "escheat is a kind of reversion", "pln": ["(: cnet_isa_b54b8c6198 (IsA escheat reversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "escheat is a kind of transferred property", "pln": ["(: cnet_isa_db15cec058 (IsA escheat transferred_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "escherichia is a kind of enteric bacteria", "pln": ["(: cnet_isa_f097842d0f (IsA escherichia enteric_bacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "escherichia coli is a kind of escherichia", "pln": ["(: cnet_isa_e033fd721f (IsA escherichia_coli escherichia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eschrichtiidae is a kind of mammal family", "pln": ["(: cnet_isa_17a5785211 (IsA eschrichtiidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eschrichtius is a kind of mammal genus", "pln": ["(: cnet_isa_cded9d113e (IsA eschrichtius mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eschscholtzia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_697f62210f (IsA eschscholtzia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "escolar is a kind of gempylid", "pln": ["(: cnet_isa_0d3e7fd7b2 (IsA escolar gempylid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "escort is a kind of protection", "pln": ["(: cnet_isa_0cc0476033 (IsA escort protection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "escort is a kind of attendant", "pln": ["(: cnet_isa_6d767aa752 (IsA escort attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "escrow is a kind of written agreement", "pln": ["(: cnet_isa_656109456e (IsA escrow written_agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "escrow fund is a kind of fund", "pln": ["(: cnet_isa_5df1683ba0 (IsA escrow_fund fund) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "escutcheon is a kind of shield", "pln": ["(: cnet_isa_b3c953bd0c (IsA escutcheon shield) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "escutcheon is a kind of plate", "pln": ["(: cnet_isa_df7496af6a (IsA escutcheon plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "esker is a kind of ridge", "pln": ["(: cnet_isa_ba4c5fa764 (IsA esker ridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eskimo is a kind of eskimo aleut", "pln": ["(: cnet_isa_898a377f7d (IsA eskimo eskimo_aleut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eskimo aleut is a kind of natural language", "pln": ["(: cnet_isa_ef7d4efc09 (IsA eskimo_aleut natural_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eskimo curlew is a kind of curlew", "pln": ["(: cnet_isa_a0500151a0 (IsA eskimo_curlew curlew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eskimo dog is a kind of working dog", "pln": ["(: cnet_isa_064da5cd95 (IsA eskimo_dog working_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "esocidae is a kind of fish family", "pln": ["(: cnet_isa_3f0e73ce09 (IsA esocidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "esophageal smear is a kind of alimentary tract smear", "pln": ["(: cnet_isa_76aff883a0 (IsA esophageal_smear alimentary_tract_smear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "esophageal vein is a kind of vein", "pln": ["(: cnet_isa_b70704d31d (IsA esophageal_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "esophagitis is a kind of inflammation", "pln": ["(: cnet_isa_700ae4e230 (IsA esophagitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "esophagogastric junction is a kind of articulation", "pln": ["(: cnet_isa_1d20ba68ba (IsA esophagogastric_junction articulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "esophagoscope is a kind of optical instrument", "pln": ["(: cnet_isa_0c49147562 (IsA esophagoscope optical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "esophagus is a kind of muscular structure", "pln": ["(: cnet_isa_2872a53241 (IsA esophagus muscular_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "esophagus is a kind of passage", "pln": ["(: cnet_isa_b21ba32c6c (IsA esophagus passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "esoterica is a kind of secret", "pln": ["(: cnet_isa_0143be2317 (IsA esoterica secret) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "esox is a kind of fish genus", "pln": ["(: cnet_isa_4912300254 (IsA esox fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "espadrille is a kind of sandal", "pln": ["(: cnet_isa_6826bb9014 (IsA espadrille sandal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "espalier is a kind of trellis", "pln": ["(: cnet_isa_8249c62df7 (IsA espalier trellis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "esperantido is a kind of artificial language", "pln": ["(: cnet_isa_68f974dfdf (IsA esperantido artificial_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "esperanto is a kind of artificial language", "pln": ["(: cnet_isa_7c9e8118fa (IsA esperanto artificial_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "espionage is a kind of spying", "pln": ["(: cnet_isa_ba3e6e5797 (IsA espionage spying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "espionage agent is a kind of spy", "pln": ["(: cnet_isa_5d9239bb8c (IsA espionage_agent spy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "espionage network is a kind of network", "pln": ["(: cnet_isa_934dbce30d (IsA espionage_network network) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "esplanade is a kind of promenade", "pln": ["(: cnet_isa_6629d79b24 (IsA esplanade promenade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "espoo is a kind of in finland", "pln": ["(: cnet_isa_c0537b248a (IsA espoo in_finland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "espresso is a kind of coffee", "pln": ["(: cnet_isa_98aa56c4b4 (IsA espresso coffee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "espresso maker is a kind of coffee maker", "pln": ["(: cnet_isa_5c407fcba5 (IsA espresso_maker coffee_maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "espresso shop is a kind of cafe", "pln": ["(: cnet_isa_65ddc60a83 (IsA espresso_shop cafe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "esprit is a kind of liveliness", "pln": ["(: cnet_isa_b2190422fa (IsA esprit liveliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "esprit de corp is a kind of disposition", "pln": ["(: cnet_isa_2bda00b52c (IsA esprit_de_corp disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "esprit de l escalier is a kind of wit", "pln": ["(: cnet_isa_85cbb7b249 (IsA esprit_de_l_escalier wit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "esq is a kind of man", "pln": ["(: cnet_isa_9607e71971 (IsA esq man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "esquimau is a kind of native american", "pln": ["(: cnet_isa_27eaed47da (IsA esquimau native_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "esquire is a kind of attendant", "pln": ["(: cnet_isa_3a5cf6186b (IsA esquire attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "essay is a kind of attempt", "pln": ["(: cnet_isa_a88c97c72f (IsA essay attempt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "essay is a kind of writing", "pln": ["(: cnet_isa_c9b3185c04 (IsA essay writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "essayist is a kind of writer", "pln": ["(: cnet_isa_1395693a6a (IsA essayist writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "esselen is a kind of hokan", "pln": ["(: cnet_isa_25e9c06400 (IsA esselen hokan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "esselen is a kind of hoka", "pln": ["(: cnet_isa_24983fd883 (IsA esselen hoka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "essence is a kind of substance", "pln": ["(: cnet_isa_98e116fb32 (IsA essence substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "essene is a kind of israelite", "pln": ["(: cnet_isa_b357aca23d (IsA essene israelite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "essential amino acid is a kind of amino acid", "pln": ["(: cnet_isa_16ca7239e9 (IsA essential_amino_acid amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "essential condition is a kind of prerequisite", "pln": ["(: cnet_isa_9c9e461350 (IsA essential_condition prerequisite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "essential hypertension is a kind of high blood pressure", "pln": ["(: cnet_isa_e38e6f871c (IsA essential_hypertension high_blood_pressure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "essential oil is a kind of oil", "pln": ["(: cnet_isa_8ba14ab111 (IsA essential_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "essential thrombocytopenia is a kind of thrombocytopenia", "pln": ["(: cnet_isa_e65ae62e20 (IsA essential_thrombocytopenia thrombocytopenia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "essential tremor is a kind of tremor", "pln": ["(: cnet_isa_aa6b33c9ae (IsA essential_tremor tremor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "essentiality is a kind of importance", "pln": ["(: cnet_isa_1803b68a69 (IsA essentiality importance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "established church is a kind of religion", "pln": ["(: cnet_isa_364886d83a (IsA established_church religion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "establishment is a kind of proof", "pln": ["(: cnet_isa_fba27aa6b3 (IsA establishment proof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "establishment is a kind of structure", "pln": ["(: cnet_isa_1b80121bbd (IsA establishment structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "establishment is a kind of natural process", "pln": ["(: cnet_isa_2d4d6de043 (IsA establishment natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "establishment is a kind of organization", "pln": ["(: cnet_isa_f673de3125 (IsA establishment organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "establishmentarianism is a kind of doctrine", "pln": ["(: cnet_isa_6fa93c1d9d (IsA establishmentarianism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "estaminet is a kind of cafe", "pln": ["(: cnet_isa_1c6f2611d5 (IsA estaminet cafe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "estate is a kind of class", "pln": ["(: cnet_isa_67e1b517a4 (IsA estate class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "estate is a kind of property", "pln": ["(: cnet_isa_6256561c2a (IsA estate property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "estate is a kind of real property", "pln": ["(: cnet_isa_cbab6ea8b6 (IsA estate real_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "estate general is a kind of state general", "pln": ["(: cnet_isa_0c941d83da (IsA estate_general state_general) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "esteem is a kind of honor", "pln": ["(: cnet_isa_a0abe31388 (IsA esteem honor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ester is a kind of organic compound", "pln": ["(: cnet_isa_ad64f13141 (IsA ester organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "esterification is a kind of chemical reaction", "pln": ["(: cnet_isa_c4e4fe6e47 (IsA esterification chemical_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "esthete is a kind of connoisseur", "pln": ["(: cnet_isa_f91671feda (IsA esthete connoisseur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "esthetician is a kind of philosopher", "pln": ["(: cnet_isa_fc383e8680 (IsA esthetician philosopher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "esthetician is a kind of skilled worker", "pln": ["(: cnet_isa_d37ec7618d (IsA esthetician skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "estimate is a kind of judgment", "pln": ["(: cnet_isa_71fa2597b1 (IsA estimate judgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "estimate is a kind of calculation", "pln": ["(: cnet_isa_ea051777c5 (IsA estimate calculation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "estimate is a kind of respect", "pln": ["(: cnet_isa_03fe4be04f (IsA estimate respect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "estimate is a kind of statement", "pln": ["(: cnet_isa_115f96e678 (IsA estimate statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "estimated tax is a kind of income tax", "pln": ["(: cnet_isa_3f354e265b (IsA estimated_tax income_tax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "estivation is a kind of arrangement", "pln": ["(: cnet_isa_5d757866fe (IsA estivation arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "estivation is a kind of dormancy", "pln": ["(: cnet_isa_2dc3e9e7b3 (IsA estivation dormancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "estonian is a kind of baltic finnic", "pln": ["(: cnet_isa_6cc9fca6fe (IsA estonian baltic_finnic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "estonian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_b0cd849a7c (IsA estonian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "estoppel is a kind of rule of evidence", "pln": ["(: cnet_isa_9d59dbb428 (IsA estoppel rule_of_evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "estradiol patch is a kind of transdermal patch", "pln": ["(: cnet_isa_f455a44276 (IsA estradiol_patch transdermal_patch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "estrilda is a kind of bird genus", "pln": ["(: cnet_isa_d1ecb77bb5 (IsA estrilda bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "estriol is a kind of estrogen", "pln": ["(: cnet_isa_e63f4edc0d (IsA estriol estrogen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "estrogen is a kind of steroid hormone", "pln": ["(: cnet_isa_eb4338ad25 (IsA estrogen steroid_hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "estrogen antagonist is a kind of antagonist", "pln": ["(: cnet_isa_44630f2c1b (IsA estrogen_antagonist antagonist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "estrone is a kind of estrogen", "pln": ["(: cnet_isa_b57f6c8a89 (IsA estrone estrogen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "estrone is a kind of ketosteroid", "pln": ["(: cnet_isa_746cc7f270 (IsA estrone ketosteroid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "estrus is a kind of physiological state", "pln": ["(: cnet_isa_b0383211a9 (IsA estrus physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "estuary is a kind of body of water", "pln": ["(: cnet_isa_3be198145b (IsA estuary body_of_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eta is a kind of letter", "pln": ["(: cnet_isa_6a7a7bddd0 (IsA eta letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "etagere is a kind of furniture", "pln": ["(: cnet_isa_d8070a0f38 (IsA etagere furniture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "etamine is a kind of fabric", "pln": ["(: cnet_isa_91684ec286 (IsA etamine fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "etcetera is a kind of whatchamacallit", "pln": ["(: cnet_isa_456e3fd1a5 (IsA etcetera whatchamacallit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "etcher is a kind of artist", "pln": ["(: cnet_isa_34a0c3b4ef (IsA etcher artist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "etching is a kind of engraving", "pln": ["(: cnet_isa_a4468d582a (IsA etching engraving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eternal life is a kind of animation", "pln": ["(: cnet_isa_12de6cfd21 (IsA eternal_life animation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eternity is a kind of being", "pln": ["(: cnet_isa_e9ac5a7543 (IsA eternity being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eternity is a kind of time", "pln": ["(: cnet_isa_cdfab34578 (IsA eternity time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eternity is a kind of time interval", "pln": ["(: cnet_isa_65ef4492af (IsA eternity time_interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethane is a kind of alkane", "pln": ["(: cnet_isa_7e763888fa (IsA ethane alkane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethane is a kind of hydrocarbon", "pln": ["(: cnet_isa_e941d2ba2c (IsA ethane hydrocarbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethane is a kind of methane sery", "pln": ["(: cnet_isa_05ab61992a (IsA ethane methane_sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethanol is a kind of alcohol", "pln": ["(: cnet_isa_b9cc0ae7d7 (IsA ethanol alcohol) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ether is a kind of inhalation anesthetic", "pln": ["(: cnet_isa_bb082a7536 (IsA ether inhalation_anesthetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ether is a kind of medium", "pln": ["(: cnet_isa_9277adf21e (IsA ether medium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ether is a kind of organic compound", "pln": ["(: cnet_isa_fa13e4e701 (IsA ether organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethernet is a kind of local area network", "pln": ["(: cnet_isa_ab3ca91058 (IsA ethernet local_area_network) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethernet cable is a kind of coaxial cable", "pln": ["(: cnet_isa_af52e07538 (IsA ethernet_cable coaxial_cable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethic is a kind of principle", "pln": ["(: cnet_isa_b44db8cc95 (IsA ethic principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethic is a kind of system", "pln": ["(: cnet_isa_e4b05e5dc8 (IsA ethic system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethical motive is a kind of motivation", "pln": ["(: cnet_isa_3d99fa5fad (IsA ethical_motive motivation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethicism is a kind of doctrine", "pln": ["(: cnet_isa_ceb7944f3b (IsA ethicism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethicist is a kind of philosopher", "pln": ["(: cnet_isa_ded51bd20e (IsA ethicist philosopher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethic is a kind of philosophy", "pln": ["(: cnet_isa_cec3eee06b (IsA ethic philosophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethic committee is a kind of committee", "pln": ["(: cnet_isa_0a057fab7b (IsA ethic_committee committee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethiopia is a kind of country", "pln": ["(: cnet_isa_80c676cc6f (IsA ethiopia country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ethiopian is a kind of african", "pln": ["(: cnet_isa_1437904cc6 (IsA ethiopian african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ethiopian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_3550dcfc7c (IsA ethiopian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethmoid is a kind of bone", "pln": ["(: cnet_isa_42326626af (IsA ethmoid bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ethmoid sinus is a kind of sinus", "pln": ["(: cnet_isa_9ccc9a27fc (IsA ethmoid_sinus sinus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethmoidal artery is a kind of artery", "pln": ["(: cnet_isa_1b1b06cc3d (IsA ethmoidal_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethmoidal vein is a kind of vein", "pln": ["(: cnet_isa_6c30ee22a0 (IsA ethmoidal_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethnarch is a kind of ruler", "pln": ["(: cnet_isa_7e6b345890 (IsA ethnarch ruler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethnic is a kind of person", "pln": ["(: cnet_isa_f6158ce570 (IsA ethnic person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ethnic cleansing is a kind of group action", "pln": ["(: cnet_isa_3d63eb8132 (IsA ethnic_cleansing group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethnic group is a kind of group", "pln": ["(: cnet_isa_fcf5e27bef (IsA ethnic_group group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethnic joke is a kind of joke", "pln": ["(: cnet_isa_53b85c3035 (IsA ethnic_joke joke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethnic minority is a kind of ethnic group", "pln": ["(: cnet_isa_3e2d6f7770 (IsA ethnic_minority ethnic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethnic slur is a kind of aspersion", "pln": ["(: cnet_isa_442817ce67 (IsA ethnic_slur aspersion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethnicity is a kind of quality", "pln": ["(: cnet_isa_0c89f83ef3 (IsA ethnicity quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethnocentrism is a kind of partiality", "pln": ["(: cnet_isa_e4152c8441 (IsA ethnocentrism partiality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethnographer is a kind of anthropologist", "pln": ["(: cnet_isa_0fb31433f7 (IsA ethnographer anthropologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethnography is a kind of anthropology", "pln": ["(: cnet_isa_37cc2d40fc (IsA ethnography anthropology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ethnologist is a kind of anthropologist", "pln": ["(: cnet_isa_0fbe879872 (IsA ethnologist anthropologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethnology is a kind of anthropology", "pln": ["(: cnet_isa_cfd83572c3 (IsA ethnology anthropology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethologist is a kind of zoologist", "pln": ["(: cnet_isa_bfe8d94542 (IsA ethologist zoologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethology is a kind of zoology", "pln": ["(: cnet_isa_20892e168a (IsA ethology zoology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "etho is a kind of attribute", "pln": ["(: cnet_isa_d7c288f6dd (IsA etho attribute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethyl is a kind of alkyl", "pln": ["(: cnet_isa_de5f089874 (IsA ethyl alkyl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethyl acetate is a kind of ester", "pln": ["(: cnet_isa_574fd77480 (IsA ethyl_acetate ester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethyl alcohol is a kind of alcohol", "pln": ["(: cnet_isa_78cc512a6b (IsA ethyl_alcohol alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethyl alcohol is a kind of plant product", "pln": ["(: cnet_isa_b48522fbf7 (IsA ethyl_alcohol plant_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethyl chloride is a kind of local anesthetic", "pln": ["(: cnet_isa_bfea420584 (IsA ethyl_chloride local_anesthetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethylene is a kind of alkene", "pln": ["(: cnet_isa_6ff19e66d5 (IsA ethylene alkene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethylene is a kind of gas", "pln": ["(: cnet_isa_e23e017e79 (IsA ethylene gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethylene glycol is a kind of antifreeze", "pln": ["(: cnet_isa_6dc8e74e16 (IsA ethylene_glycol antifreeze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ethylenediaminetetraacetic acid is a kind of molecule", "pln": ["(: cnet_isa_1f7bf4aafe (IsA ethylenediaminetetraacetic_acid molecule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "etiolation is a kind of weakening", "pln": ["(: cnet_isa_4ff0d1aad9 (IsA etiolation weakening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "etiolation is a kind of appearance", "pln": ["(: cnet_isa_0fe3679b22 (IsA etiolation appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "etiolation is a kind of bleach", "pln": ["(: cnet_isa_8e8e291894 (IsA etiolation bleach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "etiologist is a kind of diagnostician", "pln": ["(: cnet_isa_fba238d6e3 (IsA etiologist diagnostician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "etiology is a kind of philosophy", "pln": ["(: cnet_isa_daf9722f7a (IsA etiology philosophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "etiology is a kind of cause", "pln": ["(: cnet_isa_6262d3fe75 (IsA etiology cause) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "etiquette is a kind of rule", "pln": ["(: cnet_isa_7f37cd2ec6 (IsA etiquette rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eton collar is a kind of collar", "pln": ["(: cnet_isa_87a1226c8e (IsA eton_collar collar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eton college is a kind of public school", "pln": ["(: cnet_isa_7a4bbba618 (IsA eton_college public_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eton jacket is a kind of jacket", "pln": ["(: cnet_isa_1d6731f7cc (IsA eton_jacket jacket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "etonian is a kind of student", "pln": ["(: cnet_isa_c5e5decbd4 (IsA etonian student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "etropus is a kind of fish genus", "pln": ["(: cnet_isa_90145c9685 (IsA etropus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "etruscan is a kind of italian", "pln": ["(: cnet_isa_c2d5198c30 (IsA etruscan italian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "etude is a kind of musical composition", "pln": ["(: cnet_isa_c6902220e7 (IsA etude musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "etui is a kind of bag", "pln": ["(: cnet_isa_30fefa7c6d (IsA etui bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "etymological dictionary is a kind of dictionary", "pln": ["(: cnet_isa_f6c9b504d4 (IsA etymological_dictionary dictionary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "etymology is a kind of linguistics", "pln": ["(: cnet_isa_e87831f002 (IsA etymology linguistics) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "euascomycetes is a kind of class", "pln": ["(: cnet_isa_da57dcc9d9 (IsA euascomycetes class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "etymologist is a kind of lexicographer", "pln": ["(: cnet_isa_15bc24d49a (IsA etymologist lexicographer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "etymology is a kind of linguistic", "pln": ["(: cnet_isa_fb133b3dc3 (IsA etymology linguistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "etymology is a kind of history", "pln": ["(: cnet_isa_df588131f6 (IsA etymology history) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "etymon is a kind of form", "pln": ["(: cnet_isa_f6c73e4052 (IsA etymon form) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euarcto is a kind of mammal genus", "pln": ["(: cnet_isa_ee97cd4bab (IsA euarcto mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euascomycete is a kind of class", "pln": ["(: cnet_isa_a79ad30776 (IsA euascomycete class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eubacteria is a kind of bacteria", "pln": ["(: cnet_isa_0dd45a3b12 (IsA eubacteria bacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eubacteria is a kind of moneran", "pln": ["(: cnet_isa_4ce74c80b4 (IsA eubacteria moneran) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eubacteriale is a kind of animal order", "pln": ["(: cnet_isa_ed26499153 (IsA eubacteriale animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eubryale is a kind of plant order", "pln": ["(: cnet_isa_035ad0b05d (IsA eubryale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eucalyptus is a kind of gum tree", "pln": ["(: cnet_isa_49dc8e7c57 (IsA eucalyptus gum_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eucalyptus is a kind of wood", "pln": ["(: cnet_isa_5d0c977fc8 (IsA eucalyptus wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eucalyptus gum is a kind of gum", "pln": ["(: cnet_isa_129c2759c7 (IsA eucalyptus_gum gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eucalyptus oil is a kind of essential oil", "pln": ["(: cnet_isa_caa6aba72d (IsA eucalyptus_oil essential_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eucarya is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_7c3103622e (IsA eucarya dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euchre is a kind of card game", "pln": ["(: cnet_isa_c77a4a180a (IsA euchre card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eucinostomus is a kind of fish genus", "pln": ["(: cnet_isa_486d8572a9 (IsA eucinostomus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "euclid s first axiom is a kind of euclid s postulate", "pln": ["(: cnet_isa_a709c1bc38 (IsA euclid_s_first_axiom euclid_s_postulate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euclid s fourth axiom is a kind of euclid s postulate", "pln": ["(: cnet_isa_b7e87970dc (IsA euclid_s_fourth_axiom euclid_s_postulate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euclid s postulate is a kind of axiom", "pln": ["(: cnet_isa_a8190d42b5 (IsA euclid_s_postulate axiom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euclid s second axiom is a kind of euclid s postulate", "pln": ["(: cnet_isa_0959781d23 (IsA euclid_s_second_axiom euclid_s_postulate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euclid s third axiom is a kind of euclid s postulate", "pln": ["(: cnet_isa_a003975dc6 (IsA euclid_s_third_axiom euclid_s_postulate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euclidean space is a kind of metric space", "pln": ["(: cnet_isa_54adc6ea84 (IsA euclidean_space metric_space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eudemon is a kind of guardian spirit", "pln": ["(: cnet_isa_1921d7e7e7 (IsA eudemon guardian_spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eudemonism is a kind of ethic", "pln": ["(: cnet_isa_9e027a5ed1 (IsA eudemonism ethic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euderma is a kind of mammal genus", "pln": ["(: cnet_isa_64e3eba0e8 (IsA euderma mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eudiometer is a kind of measuring instrument", "pln": ["(: cnet_isa_77e93ec037 (IsA eudiometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eudypte is a kind of bird genus", "pln": ["(: cnet_isa_3ab36184f8 (IsA eudypte bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eugenia is a kind of dicot genus", "pln": ["(: cnet_isa_a98720cd96 (IsA eugenia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eugenic is a kind of life science", "pln": ["(: cnet_isa_13993c1560 (IsA eugenic life_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "euglena is a kind of protozoan", "pln": ["(: cnet_isa_4852df3c40 (IsA euglena protozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euglenaceae is a kind of protoctist family", "pln": ["(: cnet_isa_e4f692a59e (IsA euglenaceae protoctist_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "euglenoid is a kind of alga", "pln": ["(: cnet_isa_68eaa15649 (IsA euglenoid alga) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "euglenophyceae is a kind of class", "pln": ["(: cnet_isa_4059e4d384 (IsA euglenophyceae class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euglenophyta is a kind of division", "pln": ["(: cnet_isa_4340ca09f7 (IsA euglenophyta division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eukaryote is a kind of organism", "pln": ["(: cnet_isa_1ce45780ce (IsA eukaryote organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eukaryoyte is a kind of organism", "pln": ["(: cnet_isa_28fd2f07bb (IsA eukaryoyte organism) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "eumeces is a kind of reptile genus", "pln": ["(: cnet_isa_de331586e5 (IsA eumeces reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eulogist is a kind of orator", "pln": ["(: cnet_isa_4e28d525d9 (IsA eulogist orator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eulogium is a kind of praise", "pln": ["(: cnet_isa_9edbcccfcf (IsA eulogium praise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eumece is a kind of reptile genus", "pln": ["(: cnet_isa_d40d5a3a36 (IsA eumece reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eumene is a kind of arthropod genus", "pln": ["(: cnet_isa_7ef0f7957b (IsA eumene arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eumetopia is a kind of mammal genus", "pln": ["(: cnet_isa_a636a8193d (IsA eumetopia mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eumop is a kind of mammal genus", "pln": ["(: cnet_isa_dd66d81d07 (IsA eumop mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eumycete is a kind of class", "pln": ["(: cnet_isa_8677528718 (IsA eumycete class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eumycota is a kind of division", "pln": ["(: cnet_isa_64b756e078 (IsA eumycota division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eunecte is a kind of reptile genus", "pln": ["(: cnet_isa_afda96b2bb (IsA eunecte reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eunuch is a kind of man", "pln": ["(: cnet_isa_c4297e172c (IsA eunuch man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euonymus is a kind of plant", "pln": ["(: cnet_isa_26a9510734 (IsA euonymus plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euonymus is a kind of dicot genus", "pln": ["(: cnet_isa_d364f41488 (IsA euonymus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euopean hoopoe is a kind of hoopoe", "pln": ["(: cnet_isa_81a2d2a59b (IsA euopean_hoopoe hoopoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eupatorium is a kind of asterid dicot genus", "pln": ["(: cnet_isa_4c9914954d (IsA eupatorium asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euphagus is a kind of bird genus", "pln": ["(: cnet_isa_3847951911 (IsA euphagus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euphausia pacifica is a kind of krill", "pln": ["(: cnet_isa_d132abfb1f (IsA euphausia_pacifica krill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euphausiacea is a kind of animal order", "pln": ["(: cnet_isa_7a0443fc7e (IsA euphausiacea animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "euphemism is a kind of saying", "pln": ["(: cnet_isa_dd9bbf74d5 (IsA euphemism saying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euphonium is a kind of bass horn", "pln": ["(: cnet_isa_874f4eaba4 (IsA euphonium bass_horn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euphorbia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_be54a1fb6c (IsA euphorbia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euphorbiaceae is a kind of rosid dicot family", "pln": ["(: cnet_isa_2c89cb3b29 (IsA euphorbiaceae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euphorbium is a kind of gum", "pln": ["(: cnet_isa_b8e92da41c (IsA euphorbium gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euphoria is a kind of elation", "pln": ["(: cnet_isa_b6db26e806 (IsA euphoria elation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euphoriant is a kind of psychoactive drug", "pln": ["(: cnet_isa_591a090563 (IsA euphoriant psychoactive_drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euphractus is a kind of mammal genus", "pln": ["(: cnet_isa_b4d9d81a40 (IsA euphractus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euphrosyne is a kind of grace", "pln": ["(: cnet_isa_30497d5781 (IsA euphrosyne grace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euphuism is a kind of expressive style", "pln": ["(: cnet_isa_c1733da683 (IsA euphuism expressive_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euphuism is a kind of prose", "pln": ["(: cnet_isa_866568e7fa (IsA euphuism prose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euplectella is a kind of sponge genus", "pln": ["(: cnet_isa_f751e812b9 (IsA euplectella sponge_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eupnea is a kind of breathing", "pln": ["(: cnet_isa_c076d058fa (IsA eupnea breathing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euproctis is a kind of arthropod genus", "pln": ["(: cnet_isa_d234b0fe8f (IsA euproctis arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eurafrican is a kind of african", "pln": ["(: cnet_isa_a29060af79 (IsA eurafrican african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eurafrican is a kind of european", "pln": ["(: cnet_isa_851c459ace (IsA eurafrican european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eurasian is a kind of asiatic", "pln": ["(: cnet_isa_4327bcdb7f (IsA eurasian asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eurasian is a kind of european", "pln": ["(: cnet_isa_1d2b9c85d6 (IsA eurasian european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eurasian badger is a kind of badger", "pln": ["(: cnet_isa_03385df85d (IsA eurasian_badger badger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eurasian green toad is a kind of true toad", "pln": ["(: cnet_isa_5e031dcc00 (IsA eurasian_green_toad true_toad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eurasian hamster is a kind of hamster", "pln": ["(: cnet_isa_0422e12751 (IsA eurasian_hamster hamster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eurasian kingfisher is a kind of kingfisher", "pln": ["(: cnet_isa_46508c30da (IsA eurasian_kingfisher kingfisher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eurasian otter is a kind of otter", "pln": ["(: cnet_isa_028fb979fc (IsA eurasian_otter otter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eurasian woodcock is a kind of woodcock", "pln": ["(: cnet_isa_2fb97be193 (IsA eurasian_woodcock woodcock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euro is a kind of monetary unit", "pln": ["(: cnet_isa_013287d6fe (IsA euro monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eurobabble is a kind of jargon", "pln": ["(: cnet_isa_f5c7a10ac9 (IsA eurobabble jargon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eurocentrism is a kind of partiality", "pln": ["(: cnet_isa_9ac7cbd2d3 (IsA eurocentrism partiality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eurocurrency is a kind of currency", "pln": ["(: cnet_isa_04f42debf9 (IsA eurocurrency currency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eurodollar is a kind of eurocurrency", "pln": ["(: cnet_isa_d910d4e701 (IsA eurodollar eurocurrency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eurodollar is a kind of united state dollar", "pln": ["(: cnet_isa_7c962416f5 (IsA eurodollar united_state_dollar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euronithopoda is a kind of animal order", "pln": ["(: cnet_isa_4eb62cd9ac (IsA euronithopoda animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "europa is a kind of moon of jupiter", "pln": ["(: cnet_isa_3e1690e894 (IsA europa moon_of_jupiter) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "europan is a kind of artificial language", "pln": ["(: cnet_isa_729f02d3ec (IsA europan artificial_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "europe is a kind of continent", "pln": ["(: cnet_isa_31b5b6c4dc (IsA europe continent) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "europe is a kind of collection", "pln": ["(: cnet_isa_90511089ff (IsA europe collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european is a kind of inhabitant", "pln": ["(: cnet_isa_c89b47f9f0 (IsA european inhabitant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european ash is a kind of ash", "pln": ["(: cnet_isa_a0d6c3212a (IsA european_ash ash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european beggar tick is a kind of bur marigold", "pln": ["(: cnet_isa_d176db9ad7 (IsA european_beggar_tick bur_marigold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european bittern is a kind of bittern", "pln": ["(: cnet_isa_1242e1c727 (IsA european_bittern bittern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european black grouse is a kind of black grouse", "pln": ["(: cnet_isa_32eef02a70 (IsA european_black_grouse black_grouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european bog asphodel is a kind of bog asphodel", "pln": ["(: cnet_isa_6bb8098993 (IsA european_bog_asphodel bog_asphodel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european bream is a kind of freshwater bream", "pln": ["(: cnet_isa_b1de112a47 (IsA european_bream freshwater_bream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european catfish is a kind of silurid", "pln": ["(: cnet_isa_7a7fb90a01 (IsA european_catfish silurid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european central bank is a kind of central bank", "pln": ["(: cnet_isa_bcfa57a470 (IsA european_central_bank central_bank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european chestnut is a kind of chestnut", "pln": ["(: cnet_isa_7c3ffeb996 (IsA european_chestnut chestnut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european country is a kind of country", "pln": ["(: cnet_isa_b6b69ca78a (IsA european_country country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european cranberry is a kind of cranberry", "pln": ["(: cnet_isa_789c702cbf (IsA european_cranberry cranberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european creeper is a kind of creeper", "pln": ["(: cnet_isa_ed717b6f31 (IsA european_creeper creeper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "european cuckoo is a kind of cuckoo", "pln": ["(: cnet_isa_f564059703 (IsA european_cuckoo cuckoo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european curlew is a kind of curlew", "pln": ["(: cnet_isa_7308923758 (IsA european_curlew curlew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european dewberry is a kind of dewberry", "pln": ["(: cnet_isa_84f86b8d9a (IsA european_dewberry dewberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european dogtooth is a kind of dogtooth violet", "pln": ["(: cnet_isa_b80e6470bf (IsA european_dogtooth dogtooth_violet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european fire salamander is a kind of salamander", "pln": ["(: cnet_isa_0cf37aff1b (IsA european_fire_salamander salamander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european flatfish is a kind of righteye flounder", "pln": ["(: cnet_isa_3d23bd1c9f (IsA european_flatfish righteye_flounder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european fly honeysuckle is a kind of honeysuckle", "pln": ["(: cnet_isa_157d0c0fd1 (IsA european_fly_honeysuckle honeysuckle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european gallinule is a kind of purple gallinule", "pln": ["(: cnet_isa_abaf42e4e8 (IsA european_gallinule purple_gallinule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european goatsucker is a kind of goatsucker", "pln": ["(: cnet_isa_db21344495 (IsA european_goatsucker goatsucker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european hackberry is a kind of hackberry", "pln": ["(: cnet_isa_0a14ba7106 (IsA european_hackberry hackberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european hare is a kind of hare", "pln": ["(: cnet_isa_4db0a60b1a (IsA european_hare hare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european hornbeam is a kind of hornbeam", "pln": ["(: cnet_isa_e01a3ac74b (IsA european_hornbeam hornbeam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european house cricket is a kind of cricket", "pln": ["(: cnet_isa_1be6911894 (IsA european_house_cricket cricket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european lady tress is a kind of lady tress", "pln": ["(: cnet_isa_1eb22decd2 (IsA european_lady_tress lady_tress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european larch is a kind of larch", "pln": ["(: cnet_isa_6dd9ce7687 (IsA european_larch larch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european lemming is a kind of lemming", "pln": ["(: cnet_isa_8d3f96c920 (IsA european_lemming lemming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european lobster is a kind of true lobster", "pln": ["(: cnet_isa_852464b43e (IsA european_lobster true_lobster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european lobster is a kind of lobster", "pln": ["(: cnet_isa_af3a76f9cd (IsA european_lobster lobster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european magpie is a kind of magpie", "pln": ["(: cnet_isa_74588af578 (IsA european_magpie magpie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european nuthatch is a kind of nuthatch", "pln": ["(: cnet_isa_8930dcc0ba (IsA european_nuthatch nuthatch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european parsley fern is a kind of rock brake", "pln": ["(: cnet_isa_3571acf313 (IsA european_parsley_fern rock_brake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european pasqueflower is a kind of pasqueflower", "pln": ["(: cnet_isa_7460d8f357 (IsA european_pasqueflower pasqueflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european perch is a kind of perch", "pln": ["(: cnet_isa_959c562b11 (IsA european_perch perch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european plan is a kind of hotel plan", "pln": ["(: cnet_isa_e9c41cf29a (IsA european_plan hotel_plan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european rabbit is a kind of rabbit", "pln": ["(: cnet_isa_7bd3252525 (IsA european_rabbit rabbit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european red elder is a kind of elder", "pln": ["(: cnet_isa_a04f7a2c31 (IsA european_red_elder elder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european roller is a kind of roller", "pln": ["(: cnet_isa_9a15392206 (IsA european_roller roller) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "european sandpiper is a kind of sandpiper", "pln": ["(: cnet_isa_6bea720b6c (IsA european_sandpiper sandpiper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european sanicle is a kind of sanicle", "pln": ["(: cnet_isa_1ce93feebb (IsA european_sanicle sanicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european sea bream is a kind of sea bream", "pln": ["(: cnet_isa_130edad379 (IsA european_sea_bream sea_bream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european shrike is a kind of butcherbird", "pln": ["(: cnet_isa_75e3eafd31 (IsA european_shrike butcherbird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "european silver fir is a kind of silver fir", "pln": ["(: cnet_isa_6e3aee0011 (IsA european_silver_fir silver_fir) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "european smelt is a kind of smelt", "pln": ["(: cnet_isa_0c98c52ed5 (IsA european_smelt smelt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european sole is a kind of sole", "pln": ["(: cnet_isa_c9e18d3ad6 (IsA european_sole sole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european spider crab is a kind of spider crab", "pln": ["(: cnet_isa_1e24d1a65f (IsA european_spider_crab spider_crab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european swift is a kind of swift", "pln": ["(: cnet_isa_b04e6de196 (IsA european_swift swift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european toad is a kind of true toad", "pln": ["(: cnet_isa_75c9e992c5 (IsA european_toad true_toad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european tortoise is a kind of tortoise", "pln": ["(: cnet_isa_94fddcb722 (IsA european_tortoise tortoise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european turkey oak is a kind of oak", "pln": ["(: cnet_isa_63f4a9424b (IsA european_turkey_oak oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european union is a kind of world organization", "pln": ["(: cnet_isa_87ab247b11 (IsA european_union world_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "european water ouzel is a kind of water ouzel", "pln": ["(: cnet_isa_0d8b3c6c15 (IsA european_water_ouzel water_ouzel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european water shrew is a kind of water shrew", "pln": ["(: cnet_isa_16d6277d80 (IsA european_water_shrew water_shrew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european white lily is a kind of water lily", "pln": ["(: cnet_isa_9f3e7bde5d (IsA european_white_lily water_lily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european wildcat is a kind of wildcat", "pln": ["(: cnet_isa_d029df205b (IsA european_wildcat wildcat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "european wolf spider is a kind of wolf spider", "pln": ["(: cnet_isa_994d9bea4a (IsA european_wolf_spider wolf_spider) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "european wood mouse is a kind of field mouse", "pln": ["(: cnet_isa_cc03085f89 (IsA european_wood_mouse field_mouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "european woolly thistle is a kind of woolly thistle", "pln": ["(: cnet_isa_10b89fbf96 (IsA european_woolly_thistle woolly_thistle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "europeanization is a kind of assimilation", "pln": ["(: cnet_isa_1ddaedb40f (IsA europeanization assimilation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "europium is a kind of metallic element", "pln": ["(: cnet_isa_03bb897d33 (IsA europium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "europol is a kind of police", "pln": ["(: cnet_isa_7d59eaa132 (IsA europol police) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eurotiale is a kind of fungus order", "pln": ["(: cnet_isa_479f11c9db (IsA eurotiale fungus_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eurotium is a kind of fungus genus", "pln": ["(: cnet_isa_5e5d52f7f0 (IsA eurotium fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euryale is a kind of echinoderm genus", "pln": ["(: cnet_isa_5975e54ff1 (IsA euryale echinoderm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euryale is a kind of gorgon", "pln": ["(: cnet_isa_237f4e409d (IsA euryale gorgon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euryalida is a kind of class", "pln": ["(: cnet_isa_7be036db42 (IsA euryalida class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eurylaimi is a kind of animal order", "pln": ["(: cnet_isa_7c6fca8418 (IsA eurylaimi animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eurylaimidae is a kind of bird family", "pln": ["(: cnet_isa_0f25ba48e3 (IsA eurylaimidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eurypterid is a kind of arthropod", "pln": ["(: cnet_isa_bebbcd9393 (IsA eurypterid arthropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eurypterida is a kind of animal order", "pln": ["(: cnet_isa_0a6574caa9 (IsA eurypterida animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eurythmy is a kind of diversion", "pln": ["(: cnet_isa_02af94cb3c (IsA eurythmy diversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eurythmy is a kind of motion", "pln": ["(: cnet_isa_8c3a025d3e (IsA eurythmy motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eusporangium is a kind of sporangium", "pln": ["(: cnet_isa_7a6f0ce202 (IsA eusporangium sporangium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eustachian tube is a kind of salpinx", "pln": ["(: cnet_isa_955c48e095 (IsA eustachian_tube salpinx) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eustoma is a kind of dicot genus", "pln": ["(: cnet_isa_3c934cabec (IsA eustoma dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eutamia is a kind of mammal genus", "pln": ["(: cnet_isa_67dfa25288 (IsA eutamia mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eutectic is a kind of mixture", "pln": ["(: cnet_isa_1aea419188 (IsA eutectic mixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eutectoid steel is a kind of carbon steel", "pln": ["(: cnet_isa_93826352c6 (IsA eutectoid_steel carbon_steel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euterpe is a kind of monocot genus", "pln": ["(: cnet_isa_08190d2100 (IsA euterpe monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euthanasia is a kind of killing", "pln": ["(: cnet_isa_f262ea375c (IsA euthanasia killing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euthenic is a kind of life science", "pln": ["(: cnet_isa_294c9fe2e9 (IsA euthenic life_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eutheria is a kind of class", "pln": ["(: cnet_isa_07f19781f5 (IsA eutheria class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "euthynnus is a kind of fish genus", "pln": ["(: cnet_isa_2c6ed533b4 (IsA euthynnus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eutrophication is a kind of organic process", "pln": ["(: cnet_isa_4201227c6c (IsA eutrophication organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "evacuation is a kind of withdrawal", "pln": ["(: cnet_isa_6387cee198 (IsA evacuation withdrawal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "evacuee is a kind of migrant", "pln": ["(: cnet_isa_a352a514e6 (IsA evacuee migrant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evaluation is a kind of judgment", "pln": ["(: cnet_isa_af31307efe (IsA evaluation judgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evaluation is a kind of appraisal", "pln": ["(: cnet_isa_d337c5397e (IsA evaluation appraisal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evaluator is a kind of authority", "pln": ["(: cnet_isa_8e30e174de (IsA evaluator authority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evanescence is a kind of disappearance", "pln": ["(: cnet_isa_d51b7ece4a (IsA evanescence disappearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evangelical and reformed church is a kind of protestant denomination", "pln": ["(: cnet_isa_e3fe421184 (IsA evangelical_and_reformed_church protestant_denomination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evangelical united brethren church is a kind of methodist denomination", "pln": ["(: cnet_isa_408422f02d (IsA evangelical_united_brethren_church methodist_denomination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "evangelicalism is a kind of protestantism", "pln": ["(: cnet_isa_be27967a22 (IsA evangelicalism protestantism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evangelism is a kind of sermon", "pln": ["(: cnet_isa_3271648aa5 (IsA evangelism sermon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evangelist is a kind of preacher", "pln": ["(: cnet_isa_c16ae15a95 (IsA evangelist preacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "evangelist is a kind of spiritual leader", "pln": ["(: cnet_isa_f5a8c267e8 (IsA evangelist spiritual_leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evaporated milk is a kind of concentrate", "pln": ["(: cnet_isa_705e0e428c (IsA evaporated_milk concentrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evaporated milk is a kind of milk", "pln": ["(: cnet_isa_22519bbe33 (IsA evaporated_milk milk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evaporative cooler is a kind of cooling system", "pln": ["(: cnet_isa_d865d1ce76 (IsA evaporative_cooler cooling_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evaporite is a kind of sediment", "pln": ["(: cnet_isa_55d4695bcd (IsA evaporite sediment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evasion is a kind of commerce", "pln": ["(: cnet_isa_dd883af5ca (IsA evasion commerce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evasion is a kind of escape", "pln": ["(: cnet_isa_b94aadb915 (IsA evasion escape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evasion is a kind of negligence", "pln": ["(: cnet_isa_8a37c0b72b (IsA evasion negligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evasion is a kind of misrepresentation", "pln": ["(: cnet_isa_dd875c10c9 (IsA evasion misrepresentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evasive answer is a kind of answer", "pln": ["(: cnet_isa_919c081f8e (IsA evasive_answer answer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eve is a kind of day", "pln": ["(: cnet_isa_c94fb9c78e (IsA eve day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eve is a kind of time period", "pln": ["(: cnet_isa_955bd54f5b (IsA eve time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "even pinnate leaf is a kind of pinnate leaf", "pln": ["(: cnet_isa_43a414779d (IsA even_pinnate_leaf pinnate_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "even spacing is a kind of regularity", "pln": ["(: cnet_isa_a935cea196 (IsA even_spacing regularity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "even toed ungulate is a kind of ungulate", "pln": ["(: cnet_isa_bc3db626be (IsA even_toed_ungulate ungulate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "evening is a kind of day", "pln": ["(: cnet_isa_8468f0af0a (IsA evening day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evening is a kind of time period", "pln": ["(: cnet_isa_23a86589dd (IsA evening time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evening bag is a kind of bag", "pln": ["(: cnet_isa_28da71f83f (IsA evening_bag bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evening grosbeak is a kind of grosbeak", "pln": ["(: cnet_isa_92970bda00 (IsA evening_grosbeak grosbeak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evening primrose is a kind of herb", "pln": ["(: cnet_isa_6306e84fdf (IsA evening_primrose herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evening shift is a kind of shift", "pln": ["(: cnet_isa_5b7cca1983 (IsA evening_shift shift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evening snow is a kind of phlox", "pln": ["(: cnet_isa_0e695548ca (IsA evening_snow phlox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evenk is a kind of tungusic", "pln": ["(: cnet_isa_110b69e336 (IsA evenk tungusic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evenness is a kind of equality", "pln": ["(: cnet_isa_dd25796508 (IsA evenness equality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evenness is a kind of regularity", "pln": ["(: cnet_isa_57ea1d523e (IsA evenness regularity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "evenness is a kind of parity", "pln": ["(: cnet_isa_543a614355 (IsA evenness parity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "event is a kind of psychological feature", "pln": ["(: cnet_isa_0e27f48499 (IsA event psychological_feature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "event is a kind of physical phenomenon", "pln": ["(: cnet_isa_a377ead64f (IsA event physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "event is a kind of circumstance", "pln": ["(: cnet_isa_53474034d0 (IsA event circumstance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "event planner is a kind of assistant", "pln": ["(: cnet_isa_6e1613b948 (IsA event_planner assistant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eventration is a kind of hernia", "pln": ["(: cnet_isa_9b49a4ad6f (IsA eventration hernia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eventuality is a kind of happening", "pln": ["(: cnet_isa_7483d0aade (IsA eventuality happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evergreen is a kind of vascular plant", "pln": ["(: cnet_isa_33e006421f (IsA evergreen vascular_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evergreen bittersweet is a kind of vine", "pln": ["(: cnet_isa_2dc049cd9e (IsA evergreen_bittersweet vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evergreen blueberry is a kind of blueberry", "pln": ["(: cnet_isa_06f55d8001 (IsA evergreen_blueberry blueberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evergreen huckleberry is a kind of blueberry", "pln": ["(: cnet_isa_a1cde60085 (IsA evergreen_huckleberry blueberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "evergreen thorn is a kind of hawthorn", "pln": ["(: cnet_isa_420d235113 (IsA evergreen_thorn hawthorn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "everybody is a kind of always younger than father", "pln": ["(: cnet_isa_f9ef378c4b (IsA everybody always_younger_than_father) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "everlasting is a kind of composite", "pln": ["(: cnet_isa_30d12591ca (IsA everlasting composite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "everlasting pea is a kind of vine", "pln": ["(: cnet_isa_5d40dc2582 (IsA everlasting_pea vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "everlastingness is a kind of lastingness", "pln": ["(: cnet_isa_e0dc9ec319 (IsA everlastingness lastingness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evernia is a kind of fungus genus", "pln": ["(: cnet_isa_21a26e760d (IsA evernia fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eversion is a kind of position", "pln": ["(: cnet_isa_30aaab0ab0 (IsA eversion position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "everybody is a kind of alway younger than father", "pln": ["(: cnet_isa_c05ad5d631 (IsA everybody alway_younger_than_father) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "everyman is a kind of commoner", "pln": ["(: cnet_isa_b541945db8 (IsA everyman commoner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eviction is a kind of compulsion", "pln": ["(: cnet_isa_b20e1dd629 (IsA eviction compulsion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eviction is a kind of due process", "pln": ["(: cnet_isa_6d43cec7ed (IsA eviction due_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evidence is a kind of information", "pln": ["(: cnet_isa_93cbd17cd0 (IsA evidence information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evidence is a kind of indication", "pln": ["(: cnet_isa_0247085e48 (IsA evidence indication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evil is a kind of transgression", "pln": ["(: cnet_isa_efc9bdc916 (IsA evil transgression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evil is a kind of immorality", "pln": ["(: cnet_isa_3c24021b99 (IsA evil immorality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evil eye is a kind of look", "pln": ["(: cnet_isa_d1109082ec (IsA evil_eye look) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evil spirit is a kind of spirit", "pln": ["(: cnet_isa_67e40ac9f7 (IsA evil_spirit spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evisceration is a kind of devaluation", "pln": ["(: cnet_isa_fb66e5bbbb (IsA evisceration devaluation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evisceration is a kind of operation", "pln": ["(: cnet_isa_aa0d9b0cc8 (IsA evisceration operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evocation is a kind of conjuring", "pln": ["(: cnet_isa_528890a728 (IsA evocation conjuring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evocation is a kind of imagination", "pln": ["(: cnet_isa_b1bbcac215 (IsA evocation imagination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evocation is a kind of stimulation", "pln": ["(: cnet_isa_90431587be (IsA evocation stimulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evoked potential is a kind of electric potential", "pln": ["(: cnet_isa_6adedaaeb1 (IsA evoked_potential electric_potential) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evolution is a kind of organic process", "pln": ["(: cnet_isa_f6c1b7704c (IsA evolution organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "evolutionary trend is a kind of drift", "pln": ["(: cnet_isa_8aac41e6fa (IsA evolutionary_trend drift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "evolutionist is a kind of believer", "pln": ["(: cnet_isa_2573bf8ff1 (IsA evolutionist believer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ewe is a kind of sheep", "pln": ["(: cnet_isa_94ce267e5d (IsA ewe sheep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ewe is a kind of kwa", "pln": ["(: cnet_isa_6fbc14d162 (IsA ewe kwa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ewe is a kind of african", "pln": ["(: cnet_isa_d75f69099f (IsA ewe african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ewenki is a kind of asiatic", "pln": ["(: cnet_isa_13f69267b7 (IsA ewenki asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ewing s sarcoma is a kind of sarcoma", "pln": ["(: cnet_isa_5e9b420b48 (IsA ewing_s_sarcoma sarcoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ex boyfriend is a kind of man", "pln": ["(: cnet_isa_86db6a8c08 (IsA ex_boyfriend man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ex gambler is a kind of gambler", "pln": ["(: cnet_isa_5afc2b34f9 (IsA ex_gambler gambler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ex husband is a kind of man", "pln": ["(: cnet_isa_bafefe3225 (IsA ex_husband man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ex mayor is a kind of mayor", "pln": ["(: cnet_isa_ea1924e7e5 (IsA ex_mayor mayor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ex president is a kind of president", "pln": ["(: cnet_isa_69fb75da50 (IsA ex_president president) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ex spouse is a kind of adult", "pln": ["(: cnet_isa_dbee5ae14e (IsA ex_spouse adult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exabit is a kind of computer memory unit", "pln": ["(: cnet_isa_17153a8d60 (IsA exabit computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exabyte is a kind of computer memory unit", "pln": ["(: cnet_isa_8dae133c18 (IsA exabyte computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exacerbation is a kind of exasperation", "pln": ["(: cnet_isa_02e1785de0 (IsA exacerbation exasperation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exacta is a kind of bet", "pln": ["(: cnet_isa_47f8bc1c91 (IsA exacta bet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exaction is a kind of demand", "pln": ["(: cnet_isa_1147fb6865 (IsA exaction demand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exactness is a kind of accuracy", "pln": ["(: cnet_isa_d536318e36 (IsA exactness accuracy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exacum is a kind of dicot genus", "pln": ["(: cnet_isa_2c527180a2 (IsA exacum dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exaeretodon is a kind of reptile genus", "pln": ["(: cnet_isa_75ae57a62d (IsA exaeretodon reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exaggeration is a kind of increase", "pln": ["(: cnet_isa_71534b450e (IsA exaggeration increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exaggeration is a kind of misrepresentation", "pln": ["(: cnet_isa_15dafa4f54 (IsA exaggeration misrepresentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exaltation is a kind of flock", "pln": ["(: cnet_isa_729c2eff17 (IsA exaltation flock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exaltation is a kind of celestial point", "pln": ["(: cnet_isa_1a39f3f499 (IsA exaltation celestial_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exam table is a kind of table where person examed", "pln": ["(: cnet_isa_2c5439494b (IsA exam_table table_where_person_examed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "examen is a kind of criticism", "pln": ["(: cnet_isa_6973c79b50 (IsA examen criticism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "examen is a kind of introspection", "pln": ["(: cnet_isa_c6c755e480 (IsA examen introspection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "examination is a kind of investigation", "pln": ["(: cnet_isa_e6c2e8a4a6 (IsA examination investigation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "examination is a kind of communication", "pln": ["(: cnet_isa_5a501fdca2 (IsA examination communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "examiner is a kind of inquirer", "pln": ["(: cnet_isa_3c5ef00871 (IsA examiner inquirer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "examiner is a kind of investigator", "pln": ["(: cnet_isa_8814a4c76e (IsA examiner investigator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "example is a kind of information", "pln": ["(: cnet_isa_22370c3b4f (IsA example information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "example is a kind of admonition", "pln": ["(: cnet_isa_c44c970fdf (IsA example admonition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exanthem is a kind of eruption", "pln": ["(: cnet_isa_20f3338706 (IsA exanthem eruption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exanthema subitum is a kind of disease", "pln": ["(: cnet_isa_990102658d (IsA exanthema_subitum disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exarch is a kind of bishop", "pln": ["(: cnet_isa_942faf348c (IsA exarch bishop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exarch is a kind of viceroy", "pln": ["(: cnet_isa_9b0b6d24ee (IsA exarch viceroy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "exasperation is a kind of annoyance", "pln": ["(: cnet_isa_ecd984b0a1 (IsA exasperation annoyance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exbibit is a kind of computer memory unit", "pln": ["(: cnet_isa_719813ab21 (IsA exbibit computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exbibyte is a kind of computer memory unit", "pln": ["(: cnet_isa_3c487a4eb3 (IsA exbibyte computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "excavation is a kind of creating by removal", "pln": ["(: cnet_isa_a246cf9066 (IsA excavation creating_by_removal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "excavation is a kind of artifact", "pln": ["(: cnet_isa_15de5a3cf4 (IsA excavation artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "excavator is a kind of workman", "pln": ["(: cnet_isa_f31166f2e8 (IsA excavator workman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exceedance is a kind of probability", "pln": ["(: cnet_isa_f202899866 (IsA exceedance probability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "excellence is a kind of quality", "pln": ["(: cnet_isa_de42791fb7 (IsA excellence quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "excellence is a kind of feature", "pln": ["(: cnet_isa_aa6a5106c6 (IsA excellence feature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "excellency is a kind of important person", "pln": ["(: cnet_isa_8f997b571b (IsA excellency important_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "excelsior is a kind of packing material", "pln": ["(: cnet_isa_20fe1ebe05 (IsA excelsior packing_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exception is a kind of example", "pln": ["(: cnet_isa_3d4b8cd641 (IsA exception example) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exception is a kind of omission", "pln": ["(: cnet_isa_449d44f4cf (IsA exception omission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exception is a kind of objection", "pln": ["(: cnet_isa_a44acbd523 (IsA exception objection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "excercise is a kind of physical activity", "pln": ["(: cnet_isa_b8549583bd (IsA excercise physical_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "excerpt is a kind of passage", "pln": ["(: cnet_isa_9c1a3fc7d1 (IsA excerpt passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "excess is a kind of immoderation", "pln": ["(: cnet_isa_b6f43d2dff (IsA excess immoderation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "excess is a kind of overabundance", "pln": ["(: cnet_isa_df42852fed (IsA excess overabundance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "exchange is a kind of commerce", "pln": ["(: cnet_isa_0c296e4ece (IsA exchange commerce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "exchange is a kind of group action", "pln": ["(: cnet_isa_30422b5316 (IsA exchange group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exchange is a kind of transaction", "pln": ["(: cnet_isa_e63ba06132 (IsA exchange transaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exchange is a kind of workplace", "pln": ["(: cnet_isa_42a28745a5 (IsA exchange workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exchange is a kind of capture", "pln": ["(: cnet_isa_9894e036dc (IsA exchange capture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "exchange is a kind of conversation", "pln": ["(: cnet_isa_a19ee1fd4b (IsA exchange conversation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exchange is a kind of chemical phenomenon", "pln": ["(: cnet_isa_15e77012f7 (IsA exchange chemical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exchange traded fund is a kind of mutual fund", "pln": ["(: cnet_isa_a6a1c831e9 (IsA exchange_traded_fund mutual_fund) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "exchange transfusion is a kind of transfusion", "pln": ["(: cnet_isa_7d566f6bed (IsA exchange_transfusion transfusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exchangeability is a kind of changeableness", "pln": ["(: cnet_isa_60ad6d358d (IsA exchangeability changeableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exchanger is a kind of money handler", "pln": ["(: cnet_isa_089fd0cf19 (IsA exchanger money_handler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "excise is a kind of indirect tax", "pln": ["(: cnet_isa_e3c04229d0 (IsA excise indirect_tax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "excitability is a kind of emotionality", "pln": ["(: cnet_isa_5dc2393a31 (IsA excitability emotionality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "excitability is a kind of responsiveness", "pln": ["(: cnet_isa_2073e3d63e (IsA excitability responsiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "excitation is a kind of arousal", "pln": ["(: cnet_isa_f5db3dfee0 (IsA excitation arousal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "excitement is a kind of emotional arousal", "pln": ["(: cnet_isa_a7c7a37b2b (IsA excitement emotional_arousal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exclamation is a kind of complaint", "pln": ["(: cnet_isa_244787d851 (IsA exclamation complaint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exclamation is a kind of utterance", "pln": ["(: cnet_isa_101b93759d (IsA exclamation utterance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exclamation mark is a kind of punctuation", "pln": ["(: cnet_isa_cac8a55ec8 (IsA exclamation_mark punctuation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exclusion is a kind of situation", "pln": ["(: cnet_isa_fb7af90a27 (IsA exclusion situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "exclusionary rule is a kind of rule of evidence", "pln": ["(: cnet_isa_c7eb547729 (IsA exclusionary_rule rule_of_evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exclusive is a kind of report", "pln": ["(: cnet_isa_de163df197 (IsA exclusive report) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "excogitation is a kind of thinking", "pln": ["(: cnet_isa_167dabe1ef (IsA excogitation thinking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "excogitator is a kind of thinker", "pln": ["(: cnet_isa_5b480efbfc (IsA excogitator thinker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "excommunication is a kind of banishment", "pln": ["(: cnet_isa_f978db3f01 (IsA excommunication banishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "excommunication is a kind of rejection", "pln": ["(: cnet_isa_e062955ca9 (IsA excommunication rejection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "excoriation is a kind of denunciation", "pln": ["(: cnet_isa_50c4dde3d2 (IsA excoriation denunciation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "excrescence is a kind of growth", "pln": ["(: cnet_isa_409a6606c9 (IsA excrescence growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "excrescence is a kind of process", "pln": ["(: cnet_isa_5a1ae58884 (IsA excrescence process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "excretory organ is a kind of internal organ", "pln": ["(: cnet_isa_9ceb1f5db1 (IsA excretory_organ internal_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exculpation is a kind of forgiveness", "pln": ["(: cnet_isa_e417c04d91 (IsA exculpation forgiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "excursion is a kind of journey", "pln": ["(: cnet_isa_47f4716d56 (IsA excursion journey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "excursion rate is a kind of rate", "pln": ["(: cnet_isa_4d445f82a4 (IsA excursion_rate rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "excuse is a kind of defense", "pln": ["(: cnet_isa_cbdbbdae33 (IsA excuse defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "excuse is a kind of note", "pln": ["(: cnet_isa_992e7b25ee (IsA excuse note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "execration is a kind of object", "pln": ["(: cnet_isa_ee9d01cdd4 (IsA execration object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "execration is a kind of denunciation", "pln": ["(: cnet_isa_2cdee0bd50 (IsA execration denunciation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "executability is a kind of capability", "pln": ["(: cnet_isa_3595dc1f6b (IsA executability capability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "executant is a kind of performer", "pln": ["(: cnet_isa_821d69e614 (IsA executant performer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "execute is a kind of form of punishment", "pln": ["(: cnet_isa_e4765c07d9 (IsA execute form_of_punishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "execution is a kind of corporal punishment", "pln": ["(: cnet_isa_facc8e6d8d (IsA execution corporal_punishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "execution is a kind of enforcement", "pln": ["(: cnet_isa_3b47e27be9 (IsA execution enforcement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "execution is a kind of process", "pln": ["(: cnet_isa_54956d1b69 (IsA execution process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "execution is a kind of court order", "pln": ["(: cnet_isa_82769e6063 (IsA execution court_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "execution is a kind of subscription", "pln": ["(: cnet_isa_649b4b6407 (IsA execution subscription) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "execution speed is a kind of speed", "pln": ["(: cnet_isa_3572c8dc9f (IsA execution_speed speed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "executioner is a kind of killer", "pln": ["(: cnet_isa_5b104af899 (IsA executioner killer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "executive is a kind of administration", "pln": ["(: cnet_isa_b607f3661e (IsA executive administration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "executive is a kind of administrator", "pln": ["(: cnet_isa_a28e64248b (IsA executive administrator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "executive agency is a kind of agency", "pln": ["(: cnet_isa_f49a3a04d0 (IsA executive_agency agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "executive branch is a kind of branch", "pln": ["(: cnet_isa_7d3faaa510 (IsA executive_branch branch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "executive clemency is a kind of office", "pln": ["(: cnet_isa_35d200487a (IsA executive_clemency office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "executive council is a kind of council", "pln": ["(: cnet_isa_eb36db6d16 (IsA executive_council council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "executive department is a kind of federal department", "pln": ["(: cnet_isa_cf0dda6cb8 (IsA executive_department federal_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "executive officer is a kind of military officer", "pln": ["(: cnet_isa_6af0341a4f (IsA executive_officer military_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "executive secretary is a kind of secretary", "pln": ["(: cnet_isa_879bcf1650 (IsA executive_secretary secretary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "executive session is a kind of session", "pln": ["(: cnet_isa_fb645747cf (IsA executive_session session) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "executive vice president is a kind of vice president", "pln": ["(: cnet_isa_dbcc4faac4 (IsA executive_vice_president vice_president) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "executor is a kind of fiduciary", "pln": ["(: cnet_isa_ac9246561f (IsA executor fiduciary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "executor heir relation is a kind of fiduciary relation", "pln": ["(: cnet_isa_1037d7372f (IsA executor_heir_relation fiduciary_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "executrix is a kind of executor", "pln": ["(: cnet_isa_87b5aff231 (IsA executrix executor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exegesis is a kind of interpretation", "pln": ["(: cnet_isa_7ba7d283a5 (IsA exegesis interpretation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exegete is a kind of expert", "pln": ["(: cnet_isa_0a1e586f94 (IsA exegete expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exemplar is a kind of ideal", "pln": ["(: cnet_isa_52ae5ed6d5 (IsA exemplar ideal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exemplification is a kind of demonstration", "pln": ["(: cnet_isa_ed8b11b57a (IsA exemplification demonstration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exemption is a kind of release", "pln": ["(: cnet_isa_f4536d7ebd (IsA exemption release) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exemption is a kind of tax write off", "pln": ["(: cnet_isa_a064dd55e2 (IsA exemption tax_write_off) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exemption is a kind of unsusceptibility", "pln": ["(: cnet_isa_09cd9a54ea (IsA exemption unsusceptibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exenteration is a kind of operation", "pln": ["(: cnet_isa_9ba527fb2d (IsA exenteration operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exercise is a kind of event", "pln": ["(: cnet_isa_c050120e2f (IsA exercise event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exercise is a kind of way of coping with stress", "pln": ["(: cnet_isa_500f0c6b52 (IsA exercise way_of_coping_with_stress) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exercise is a kind of action", "pln": ["(: cnet_isa_4f606d649f (IsA exercise action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exercise is a kind of effort", "pln": ["(: cnet_isa_a8e646be8b (IsA exercise effort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "exercise is a kind of lesson", "pln": ["(: cnet_isa_cee91db174 (IsA exercise lesson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exercise is a kind of training", "pln": ["(: cnet_isa_caed65b159 (IsA exercise training) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exercise is a kind of ceremony", "pln": ["(: cnet_isa_ad789b6062 (IsA exercise ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exercise bike is a kind of exercise device", "pln": ["(: cnet_isa_538cf8919f (IsA exercise_bike exercise_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exercise device is a kind of device", "pln": ["(: cnet_isa_5d6432ac7e (IsA exercise_device device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exfiltration operation is a kind of clandestine operation", "pln": ["(: cnet_isa_5d4d15017f (IsA exfiltration_operation clandestine_operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exfoliation is a kind of organic phenomenon", "pln": ["(: cnet_isa_abeb05c9c0 (IsA exfoliation organic_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exhalation is a kind of breath", "pln": ["(: cnet_isa_87fbaad556 (IsA exhalation breath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exhaust is a kind of system", "pln": ["(: cnet_isa_b418dfdbd4 (IsA exhaust system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exhaust is a kind of gas", "pln": ["(: cnet_isa_4ce1d02581 (IsA exhaust gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exhaust is a kind of waste", "pln": ["(: cnet_isa_73fccb0745 (IsA exhaust waste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exhaust fan is a kind of fan", "pln": ["(: cnet_isa_a2922ca0fc (IsA exhaust_fan fan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "exhaust manifold is a kind of manifold", "pln": ["(: cnet_isa_c61376d765 (IsA exhaust_manifold manifold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exhaust pipe is a kind of pipe", "pln": ["(: cnet_isa_f95df4b79b (IsA exhaust_pipe pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exhaust valve is a kind of valve", "pln": ["(: cnet_isa_18a865f457 (IsA exhaust_valve valve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exhaustion is a kind of depletion", "pln": ["(: cnet_isa_932e72dc1e (IsA exhaustion depletion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exhaustion is a kind of fatigue", "pln": ["(: cnet_isa_649fb5f76e (IsA exhaustion fatigue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exhibit is a kind of evidence", "pln": ["(: cnet_isa_b1f5ce5bdf (IsA exhibit evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exhibition is a kind of presentation", "pln": ["(: cnet_isa_980833470f (IsA exhibition presentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exhibition is a kind of collection", "pln": ["(: cnet_isa_3ef6c28519 (IsA exhibition collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exhibition game is a kind of game", "pln": ["(: cnet_isa_3c20d119a1 (IsA exhibition_game game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "exhibition hall is a kind of hall", "pln": ["(: cnet_isa_4da1a020db (IsA exhibition_hall hall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exhibition season is a kind of season", "pln": ["(: cnet_isa_744f6baf40 (IsA exhibition_season season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exhibitionism is a kind of paraphilia", "pln": ["(: cnet_isa_c741c865aa (IsA exhibitionism paraphilia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exhibitionism is a kind of ostentation", "pln": ["(: cnet_isa_65dde414eb (IsA exhibitionism ostentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exhibitionist is a kind of compulsive", "pln": ["(: cnet_isa_ef1ea0d48e (IsA exhibitionist compulsive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exhibitionist is a kind of egotist", "pln": ["(: cnet_isa_27987e43a3 (IsA exhibitionist egotist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exhibitor is a kind of showman", "pln": ["(: cnet_isa_c0aa7252b1 (IsA exhibitor showman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exhilaration is a kind of joy", "pln": ["(: cnet_isa_70b93127db (IsA exhilaration joy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exhortation is a kind of communication", "pln": ["(: cnet_isa_d99315ab04 (IsA exhortation communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exhortation is a kind of persuasion", "pln": ["(: cnet_isa_42f7774d56 (IsA exhortation persuasion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exhumation is a kind of act", "pln": ["(: cnet_isa_ba2528aee8 (IsA exhumation act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "exigency is a kind of crisis", "pln": ["(: cnet_isa_3bf08fb1e8 (IsA exigency crisis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exile is a kind of banishment", "pln": ["(: cnet_isa_647618d36c (IsA exile banishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exile is a kind of absentee", "pln": ["(: cnet_isa_a34e99eeb2 (IsA exile absentee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exile is a kind of foreigner", "pln": ["(: cnet_isa_f2c228ac9d (IsA exile foreigner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "existential quantifier is a kind of quantifier", "pln": ["(: cnet_isa_7b71c43893 (IsA existential_quantifier quantifier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "existentialism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_1c048a7f91 (IsA existentialism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "existentialist is a kind of philosopher", "pln": ["(: cnet_isa_1b10225697 (IsA existentialist philosopher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exit is a kind of departure", "pln": ["(: cnet_isa_31ce10026e (IsA exit departure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exit is a kind of opening", "pln": ["(: cnet_isa_f447a10a06 (IsA exit opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exit poll is a kind of poll", "pln": ["(: cnet_isa_b71abc37ae (IsA exit_poll poll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exmoor is a kind of domestic sheep", "pln": ["(: cnet_isa_9145564b00 (IsA exmoor domestic_sheep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exmoor is a kind of pony", "pln": ["(: cnet_isa_73c9b6e1b2 (IsA exmoor pony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exobiology is a kind of biology", "pln": ["(: cnet_isa_e557cfd98f (IsA exobiology biology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exocet is a kind of guided missile", "pln": ["(: cnet_isa_f4aae9bca7 (IsA exocet guided_missile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exocoetidae is a kind of fish family", "pln": ["(: cnet_isa_8325e2c839 (IsA exocoetidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exocrine gland is a kind of gland", "pln": ["(: cnet_isa_3ad4118a81 (IsA exocrine_gland gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "exocycloida is a kind of animal order", "pln": ["(: cnet_isa_5af5d9b257 (IsA exocycloida animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exode is a kind of afterpiece", "pln": ["(: cnet_isa_b7013b6434 (IsA exode afterpiece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exodontic is a kind of dental surgery", "pln": ["(: cnet_isa_4bb0ea3b3c (IsA exodontic dental_surgery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exodontist is a kind of dentist", "pln": ["(: cnet_isa_5a58f6e1fc (IsA exodontist dentist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exodus is a kind of escape", "pln": ["(: cnet_isa_400d2bad54 (IsA exodus escape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "exoergic reaction is a kind of nuclear reaction", "pln": ["(: cnet_isa_adac0a7798 (IsA exoergic_reaction nuclear_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exogamy is a kind of marriage", "pln": ["(: cnet_isa_d15fb151e1 (IsA exogamy marriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exogenous depression is a kind of depressive disorder", "pln": ["(: cnet_isa_bd3a6f326c (IsA exogenous_depression depressive_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exogenous obesity is a kind of fleshiness", "pln": ["(: cnet_isa_28e0a02e9c (IsA exogenous_obesity fleshiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exomphalo is a kind of hernia", "pln": ["(: cnet_isa_7660792d66 (IsA exomphalo hernia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exon is a kind of deoxyribonucleic acid", "pln": ["(: cnet_isa_4572e64a03 (IsA exon deoxyribonucleic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exoneration is a kind of condition", "pln": ["(: cnet_isa_cb0a400cf7 (IsA exoneration condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exonuclease is a kind of nuclease", "pln": ["(: cnet_isa_bba89af27a (IsA exonuclease nuclease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exophthalmo is a kind of symptom", "pln": ["(: cnet_isa_9c61b568cf (IsA exophthalmo symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exopterygota is a kind of class", "pln": ["(: cnet_isa_1d1b040be2 (IsA exopterygota class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exorbitance is a kind of excess", "pln": ["(: cnet_isa_99a1132dad (IsA exorbitance excess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exorcism is a kind of supernaturalism", "pln": ["(: cnet_isa_b301b84cab (IsA exorcism supernaturalism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exorcist is a kind of holy order", "pln": ["(: cnet_isa_4fccd1dda7 (IsA exorcist holy_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exorcist is a kind of sorcerer", "pln": ["(: cnet_isa_b36c63de63 (IsA exorcist sorcerer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "exordium is a kind of introduction", "pln": ["(: cnet_isa_559d26a43c (IsA exordium introduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "exoskeleton is a kind of body covering", "pln": ["(: cnet_isa_d10e709cc5 (IsA exoskeleton body_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exoskeleton is a kind of skeletal system", "pln": ["(: cnet_isa_8a87a743fc (IsA exoskeleton skeletal_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exosphere is a kind of layer", "pln": ["(: cnet_isa_0f33b32245 (IsA exosphere layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exostosis is a kind of growth", "pln": ["(: cnet_isa_d723cd80ac (IsA exostosis growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exotherm is a kind of compound", "pln": ["(: cnet_isa_a9ca0fdc29 (IsA exotherm compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exothermic reaction is a kind of chemical reaction", "pln": ["(: cnet_isa_4049ed8620 (IsA exothermic_reaction chemical_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "exoticism is a kind of foreignness", "pln": ["(: cnet_isa_9efb92ac4e (IsA exoticism foreignness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exotoxin is a kind of toxin", "pln": ["(: cnet_isa_599c0e1dfb (IsA exotoxin toxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expanse is a kind of space", "pln": ["(: cnet_isa_4acd630b43 (IsA expanse space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expansion is a kind of increase", "pln": ["(: cnet_isa_70679291fc (IsA expansion increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expansion is a kind of discussion", "pln": ["(: cnet_isa_43fc224d67 (IsA expansion discussion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expansion is a kind of mapping", "pln": ["(: cnet_isa_b04f7c7f58 (IsA expansion mapping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expansion bit is a kind of bit", "pln": ["(: cnet_isa_eac8f70363 (IsA expansion_bit bit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "expansion bolt is a kind of bolt", "pln": ["(: cnet_isa_947ab371a2 (IsA expansion_bolt bolt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expansionism is a kind of doctrine", "pln": ["(: cnet_isa_020aed98be (IsA expansionism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expansiveness is a kind of impressiveness", "pln": ["(: cnet_isa_3c2a270e39 (IsA expansiveness impressiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expatiation is a kind of expansion", "pln": ["(: cnet_isa_af5b6d1cdc (IsA expatiation expansion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expectation is a kind of belief", "pln": ["(: cnet_isa_49f93bd3d6 (IsA expectation belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expectation is a kind of feeling", "pln": ["(: cnet_isa_0a9587ffed (IsA expectation feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expectedness is a kind of ordinariness", "pln": ["(: cnet_isa_c627abbcde (IsA expectedness ordinariness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expectorant is a kind of medicine", "pln": ["(: cnet_isa_67d72410c3 (IsA expectorant medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expectoration is a kind of bodily process", "pln": ["(: cnet_isa_82b457286f (IsA expectoration bodily_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expedience is a kind of advantage", "pln": ["(: cnet_isa_e6517a2966 (IsA expedience advantage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expedient is a kind of mean", "pln": ["(: cnet_isa_048f464dad (IsA expedient mean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expedition is a kind of journey", "pln": ["(: cnet_isa_3ff18a3960 (IsA expedition journey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "expedition is a kind of working group", "pln": ["(: cnet_isa_ddb62f385f (IsA expedition working_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "expedition is a kind of campaign", "pln": ["(: cnet_isa_bde004d2a6 (IsA expedition campaign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expending is a kind of spending", "pln": ["(: cnet_isa_b127d001e2 (IsA expending spending) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expense is a kind of detriment", "pln": ["(: cnet_isa_357c5ae9a2 (IsA expense detriment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expense is a kind of cost", "pln": ["(: cnet_isa_5dc41466ab (IsA expense cost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expense is a kind of outgo", "pln": ["(: cnet_isa_b5e0d54199 (IsA expense outgo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expense account is a kind of account", "pln": ["(: cnet_isa_39393f2fec (IsA expense_account account) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expense record is a kind of record", "pln": ["(: cnet_isa_c130b1c9f6 (IsA expense_record record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expensiveness is a kind of monetary value", "pln": ["(: cnet_isa_9af79502fc (IsA expensiveness monetary_value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "experience is a kind of content", "pln": ["(: cnet_isa_109a61a5f7 (IsA experience content) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "experience is a kind of education", "pln": ["(: cnet_isa_35febd57bf (IsA experience education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "experience is a kind of happening", "pln": ["(: cnet_isa_9ed176e1cb (IsA experience happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "experiment is a kind of scientific research", "pln": ["(: cnet_isa_6fc0726c38 (IsA experiment scientific_research) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "experiment is a kind of venture", "pln": ["(: cnet_isa_9047421c9b (IsA experiment venture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "experiment is a kind of inquiry", "pln": ["(: cnet_isa_43bddd38df (IsA experiment inquiry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "experimental method is a kind of scientific method", "pln": ["(: cnet_isa_3737838629 (IsA experimental_method scientific_method) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "experimental procedure is a kind of procedure", "pln": ["(: cnet_isa_f242064849 (IsA experimental_procedure procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "experimental psychology is a kind of psychology", "pln": ["(: cnet_isa_caae0bd62b (IsA experimental_psychology psychology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "experimentalism is a kind of empiricism", "pln": ["(: cnet_isa_a071461036 (IsA experimentalism empiricism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "experimentalism is a kind of orientation", "pln": ["(: cnet_isa_cf13265f39 (IsA experimentalism orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "experimenter is a kind of person", "pln": ["(: cnet_isa_7f93256ea3 (IsA experimenter person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "experimenter is a kind of research worker", "pln": ["(: cnet_isa_0f842b0e46 (IsA experimenter research_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "experimenter bia is a kind of bia", "pln": ["(: cnet_isa_94b98ec4c3 (IsA experimenter_bia bia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expert is a kind of person", "pln": ["(: cnet_isa_7ef57b4853 (IsA expert person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expert witness is a kind of witness", "pln": ["(: cnet_isa_bdd8fb8a3b (IsA expert_witness witness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expertness is a kind of skillfulness", "pln": ["(: cnet_isa_03bdf7c129 (IsA expertness skillfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expiation is a kind of redemption", "pln": ["(: cnet_isa_84aa42f101 (IsA expiation redemption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "explanan is a kind of statement", "pln": ["(: cnet_isa_bbe500e595 (IsA explanan statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "explanation is a kind of thinking", "pln": ["(: cnet_isa_430c65af3d (IsA explanation thinking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "explanation is a kind of speech act", "pln": ["(: cnet_isa_30ab170c0c (IsA explanation speech_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "explanation is a kind of statement", "pln": ["(: cnet_isa_0607561aa2 (IsA explanation statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expletive is a kind of utterance", "pln": ["(: cnet_isa_44a91b76f2 (IsA expletive utterance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "explicandum is a kind of statement", "pln": ["(: cnet_isa_5831bebe20 (IsA explicandum statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "explication is a kind of explanation", "pln": ["(: cnet_isa_db68696799 (IsA explication explanation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "explication de texte is a kind of criticism", "pln": ["(: cnet_isa_6cf53ffb83 (IsA explication_de_texte criticism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "explicit definition is a kind of definition", "pln": ["(: cnet_isa_ffa386b486 (IsA explicit_definition definition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "explicitness is a kind of clarity", "pln": ["(: cnet_isa_e0c3e342db (IsA explicitness clarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "exploitation is a kind of mistreatment", "pln": ["(: cnet_isa_40acc0c9a4 (IsA exploitation mistreatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exploitation is a kind of use", "pln": ["(: cnet_isa_1f23bbdeef (IsA exploitation use) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exploiter is a kind of selfish person", "pln": ["(: cnet_isa_5d3de8084f (IsA exploiter selfish_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exploration is a kind of expedition", "pln": ["(: cnet_isa_87a18dfcab (IsA exploration expedition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exploration is a kind of search", "pln": ["(: cnet_isa_3a3a7064a2 (IsA exploration search) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exploration is a kind of consideration", "pln": ["(: cnet_isa_6a636404e0 (IsA exploration consideration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "explorer s gentian is a kind of gentian", "pln": ["(: cnet_isa_263e0d0077 (IsA explorer_s_gentian gentian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "explorer is a kind of person", "pln": ["(: cnet_isa_51098be073 (IsA explorer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "explosion is a kind of change of integrity", "pln": ["(: cnet_isa_6967a481ca (IsA explosion change_of_integrity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "explosion is a kind of golf stroke", "pln": ["(: cnet_isa_998e6d2a6b (IsA explosion golf_stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "explosion is a kind of effusion", "pln": ["(: cnet_isa_2649e1ef20 (IsA explosion effusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "explosion is a kind of discharge", "pln": ["(: cnet_isa_abffb19f08 (IsA explosion discharge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "explosion is a kind of increase", "pln": ["(: cnet_isa_cbaafdd7bd (IsA explosion increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "explosion is a kind of noise", "pln": ["(: cnet_isa_dfe4215b76 (IsA explosion noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "explosive is a kind of chemical", "pln": ["(: cnet_isa_70d16f1920 (IsA explosive chemical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "explosive compound is a kind of explosive", "pln": ["(: cnet_isa_475c13a99e (IsA explosive_compound explosive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "explosive detection system is a kind of system", "pln": ["(: cnet_isa_6e1d7cead9 (IsA explosive_detection_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "explosive device is a kind of device", "pln": ["(: cnet_isa_2d5e6938e9 (IsA explosive_device device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "explosive mixture is a kind of explosive", "pln": ["(: cnet_isa_f9376de3c6 (IsA explosive_mixture explosive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "explosive trace detection is a kind of system", "pln": ["(: cnet_isa_787d930012 (IsA explosive_trace_detection system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "explosive unit is a kind of unit of measurement", "pln": ["(: cnet_isa_0ee804e1a9 (IsA explosive_unit unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "exponent is a kind of mathematical notation", "pln": ["(: cnet_isa_9ab44aab97 (IsA exponent mathematical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exponent is a kind of intellectual", "pln": ["(: cnet_isa_413e38452f (IsA exponent intellectual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "exponential is a kind of mapping", "pln": ["(: cnet_isa_7e3c71c0b0 (IsA exponential mapping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exponential curve is a kind of graph", "pln": ["(: cnet_isa_f01aec3ee6 (IsA exponential_curve graph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "exponential decay is a kind of decay", "pln": ["(: cnet_isa_bae38740fd (IsA exponential_decay decay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exponential equation is a kind of equation", "pln": ["(: cnet_isa_51b53cf562 (IsA exponential_equation equation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exponential expression is a kind of formula", "pln": ["(: cnet_isa_5891c2fcb3 (IsA exponential_expression formula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exponential sery is a kind of sery", "pln": ["(: cnet_isa_0f4a80383a (IsA exponential_sery sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exponentiation is a kind of mathematical process", "pln": ["(: cnet_isa_1f1adde25b (IsA exponentiation mathematical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "export is a kind of commodity", "pln": ["(: cnet_isa_cef4d8bdce (IsA export commodity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "export credit is a kind of credit", "pln": ["(: cnet_isa_4709af50fc (IsA export_credit credit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "export duty is a kind of duty", "pln": ["(: cnet_isa_efc9e2182a (IsA export_duty duty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exporter is a kind of businessperson", "pln": ["(: cnet_isa_50d167b83a (IsA exporter businessperson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exporting is a kind of commerce", "pln": ["(: cnet_isa_a76f83fc20 (IsA exporting commerce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expose is a kind of exposure", "pln": ["(: cnet_isa_008a8ff6b7 (IsA expose exposure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exposition is a kind of explanation", "pln": ["(: cnet_isa_9a617398cb (IsA exposition explanation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exposition is a kind of interpretation", "pln": ["(: cnet_isa_b7412d4fc3 (IsA exposition interpretation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exposition is a kind of section", "pln": ["(: cnet_isa_4a226d4949 (IsA exposition section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expositor is a kind of intellectual", "pln": ["(: cnet_isa_82fa0694fd (IsA expositor intellectual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expostulation is a kind of communication", "pln": ["(: cnet_isa_0e8d5031cf (IsA expostulation communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "expostulation is a kind of exclamation", "pln": ["(: cnet_isa_c217843b5c (IsA expostulation exclamation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exposure is a kind of abandonment", "pln": ["(: cnet_isa_4f3621ac30 (IsA exposure abandonment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exposure is a kind of influence", "pln": ["(: cnet_isa_3720f0e7fd (IsA exposure influence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exposure is a kind of photography", "pln": ["(: cnet_isa_ec4e037a7a (IsA exposure photography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exposure is a kind of presentation", "pln": ["(: cnet_isa_e8fa80e94f (IsA exposure presentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exposure is a kind of vulnerability", "pln": ["(: cnet_isa_626fb0a17c (IsA exposure vulnerability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "exposure is a kind of view", "pln": ["(: cnet_isa_87b42b7b1b (IsA exposure view) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exposure is a kind of disclosure", "pln": ["(: cnet_isa_3442252dce (IsA exposure disclosure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exposure is a kind of light unit", "pln": ["(: cnet_isa_5089ee07d5 (IsA exposure light_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exposure therapy is a kind of desensitization technique", "pln": ["(: cnet_isa_9c6dab5258 (IsA exposure_therapy desensitization_technique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "express is a kind of transportation", "pln": ["(: cnet_isa_8350517e8d (IsA express transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "express is a kind of public transport", "pln": ["(: cnet_isa_6f95f2707c (IsA express public_transport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "express is a kind of mail", "pln": ["(: cnet_isa_f80aa4a985 (IsA express mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expression is a kind of squeeze", "pln": ["(: cnet_isa_c49bcf9f89 (IsA expression squeeze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expression is a kind of countenance", "pln": ["(: cnet_isa_9921763b6f (IsA expression countenance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expression is a kind of communication", "pln": ["(: cnet_isa_b723b6d423 (IsA expression communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expression is a kind of demonstration", "pln": ["(: cnet_isa_ea140ef21c (IsA expression demonstration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expression is a kind of organic process", "pln": ["(: cnet_isa_fe0bfa1cdc (IsA expression organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expressionism is a kind of artistic movement", "pln": ["(: cnet_isa_44d327e90b (IsA expressionism artistic_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expressionist is a kind of artist", "pln": ["(: cnet_isa_371d94890b (IsA expressionist artist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expressive style is a kind of communication", "pln": ["(: cnet_isa_12d4ecbe0f (IsA expressive_style communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expressiveness is a kind of quality", "pln": ["(: cnet_isa_12ac58b0a9 (IsA expressiveness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expressway is a kind of highway", "pln": ["(: cnet_isa_9077ab6f9c (IsA expressway highway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expressway is a kind of main road", "pln": ["(: cnet_isa_7e249362f2 (IsA expressway main_road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expropriation is a kind of confiscation", "pln": ["(: cnet_isa_2f0bebc671 (IsA expropriation confiscation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "expulsion is a kind of propulsion", "pln": ["(: cnet_isa_b8f569c319 (IsA expulsion propulsion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expunction is a kind of deletion", "pln": ["(: cnet_isa_a011759669 (IsA expunction deletion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "expurgation is a kind of deletion", "pln": ["(: cnet_isa_c3df5cfaa1 (IsA expurgation deletion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exquisiteness is a kind of beauty", "pln": ["(: cnet_isa_f93583fcff (IsA exquisiteness beauty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "extemporization is a kind of performance", "pln": ["(: cnet_isa_ce144111c1 (IsA extemporization performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extended care facility is a kind of medical institution", "pln": ["(: cnet_isa_6929ab6261 (IsA extended_care_facility medical_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extended family is a kind of family", "pln": ["(: cnet_isa_4290e61c7e (IsA extended_family family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extended order is a kind of military formation", "pln": ["(: cnet_isa_b6e750c40c (IsA extended_order military_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "extended time scale is a kind of time scale", "pln": ["(: cnet_isa_e40fedd935 (IsA extended_time_scale time_scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extension is a kind of education", "pln": ["(: cnet_isa_057e35fd99 (IsA extension education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extension is a kind of expansion", "pln": ["(: cnet_isa_5c5407ea91 (IsA extension expansion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extension is a kind of stretching", "pln": ["(: cnet_isa_726c748499 (IsA extension stretching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "extension is a kind of telephone", "pln": ["(: cnet_isa_20b87ed2c4 (IsA extension telephone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extension is a kind of dance", "pln": ["(: cnet_isa_f4795ff5ec (IsA extension dance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extension is a kind of longness", "pln": ["(: cnet_isa_a8f3f8a057 (IsA extension longness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extension is a kind of property", "pln": ["(: cnet_isa_d6184499fc (IsA extension property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extension is a kind of string", "pln": ["(: cnet_isa_be8d28fec5 (IsA extension string) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extension is a kind of delay", "pln": ["(: cnet_isa_ab8353569f (IsA extension delay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extension cord is a kind of cord", "pln": ["(: cnet_isa_c7c31e8162 (IsA extension_cord cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extension course is a kind of course", "pln": ["(: cnet_isa_2484015163 (IsA extension_course course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extension ladder is a kind of ladder", "pln": ["(: cnet_isa_429bde9889 (IsA extension_ladder ladder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extensiveness is a kind of magnitude", "pln": ["(: cnet_isa_e4188eefed (IsA extensiveness magnitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extensor muscle is a kind of skeletal muscle", "pln": ["(: cnet_isa_91100d1e2f (IsA extensor_muscle skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extent is a kind of magnitude", "pln": ["(: cnet_isa_c5248f79a9 (IsA extent magnitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extent is a kind of degree", "pln": ["(: cnet_isa_6a0ef6664d (IsA extent degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extenuation is a kind of decrease", "pln": ["(: cnet_isa_825f9ef53d (IsA extenuation decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extenuation is a kind of excuse", "pln": ["(: cnet_isa_78f6e87297 (IsA extenuation excuse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exterior angle is a kind of angle", "pln": ["(: cnet_isa_70a12b5f1b (IsA exterior_angle angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exterior door is a kind of doorway", "pln": ["(: cnet_isa_bf724ce54e (IsA exterior_door doorway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extermination is a kind of destruction", "pln": ["(: cnet_isa_abebf42ce9 (IsA extermination destruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exterminator is a kind of killer", "pln": ["(: cnet_isa_cbb712e837 (IsA exterminator killer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "extern is a kind of doctor", "pln": ["(: cnet_isa_7cdc0cb142 (IsA extern doctor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "external is a kind of feature", "pln": ["(: cnet_isa_45082b99f3 (IsA external feature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "external body part is a kind of body part", "pln": ["(: cnet_isa_016bb0a4ac (IsA external_body_part body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "external carotid artery is a kind of carotid artery", "pln": ["(: cnet_isa_af6cc5d9e2 (IsA external_carotid_artery carotid_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "external combustion engine is a kind of heat engine", "pln": ["(: cnet_isa_67f218a1ed (IsA external_combustion_engine heat_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "external drive is a kind of drive", "pln": ["(: cnet_isa_162600008f (IsA external_drive drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "external ear is a kind of external organ", "pln": ["(: cnet_isa_3c9d9b86f4 (IsA external_ear external_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "external gill is a kind of gill", "pln": ["(: cnet_isa_19e9f65fa1 (IsA external_gill gill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "external iliac artery is a kind of iliac artery", "pln": ["(: cnet_isa_8e406d8124 (IsA external_iliac_artery iliac_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "external iliac vein is a kind of iliac vein", "pln": ["(: cnet_isa_7243e19d5e (IsA external_iliac_vein iliac_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "external jugular vein is a kind of jugular vein", "pln": ["(: cnet_isa_eef611f32d (IsA external_jugular_vein jugular_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "external nasal vein is a kind of vein", "pln": ["(: cnet_isa_3a7b2e0340 (IsA external_nasal_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "external oblique muscle is a kind of abdominal", "pln": ["(: cnet_isa_3373860735 (IsA external_oblique_muscle abdominal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "external organ is a kind of organ", "pln": ["(: cnet_isa_fbcf3f6d9d (IsA external_organ organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "externalization is a kind of objectification", "pln": ["(: cnet_isa_2d10240ff7 (IsA externalization objectification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "externalization is a kind of attribution", "pln": ["(: cnet_isa_9e2b7cec96 (IsA externalization attribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exteroception is a kind of sensitivity", "pln": ["(: cnet_isa_14eafaaa7b (IsA exteroception sensitivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exteroceptor is a kind of sense organ", "pln": ["(: cnet_isa_81e003b343 (IsA exteroceptor sense_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extinction is a kind of termination", "pln": ["(: cnet_isa_b21f56b4ce (IsA extinction termination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extinction is a kind of conditioning", "pln": ["(: cnet_isa_ab9ac07269 (IsA extinction conditioning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extinction is a kind of annihilation", "pln": ["(: cnet_isa_9a702d4db8 (IsA extinction annihilation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extinction is a kind of natural process", "pln": ["(: cnet_isa_3187f99dc5 (IsA extinction natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extinction is a kind of death", "pln": ["(: cnet_isa_8c4d60336d (IsA extinction death) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extinction is a kind of inaction", "pln": ["(: cnet_isa_0a3c8537ba (IsA extinction inaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extirpation is a kind of pull", "pln": ["(: cnet_isa_1d3a4587c3 (IsA extirpation pull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extortion is a kind of exaction", "pln": ["(: cnet_isa_cb9976d791 (IsA extortion exaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extortion is a kind of felony", "pln": ["(: cnet_isa_bf44abf525 (IsA extortion felony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extortion is a kind of overcharge", "pln": ["(: cnet_isa_b13584f1cc (IsA extortion overcharge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extra is a kind of artifact", "pln": ["(: cnet_isa_1363411f51 (IsA extra artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "extra is a kind of edition", "pln": ["(: cnet_isa_d54629acf4 (IsA extra edition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extra dividend is a kind of dividend", "pln": ["(: cnet_isa_3b331b11a6 (IsA extra_dividend dividend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extra inning is a kind of overtime", "pln": ["(: cnet_isa_1ec5dfc3d2 (IsA extra_inning overtime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extra large is a kind of size", "pln": ["(: cnet_isa_225a66abe0 (IsA extra_large size) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extracapsular surgery is a kind of cataract surgery", "pln": ["(: cnet_isa_35da8c3cdb (IsA extracapsular_surgery cataract_surgery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extracellular fluid is a kind of liquid body substance", "pln": ["(: cnet_isa_3aed686c68 (IsA extracellular_fluid liquid_body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extraction is a kind of removal", "pln": ["(: cnet_isa_47efafc8f3 (IsA extraction removal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extraction is a kind of natural process", "pln": ["(: cnet_isa_59a26afdb6 (IsA extraction natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extractor is a kind of instrument", "pln": ["(: cnet_isa_7568d13b68 (IsA extractor instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extracurricular activity is a kind of education", "pln": ["(: cnet_isa_043ffd4cbf (IsA extracurricular_activity education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extradition is a kind of surrender", "pln": ["(: cnet_isa_1efd556568 (IsA extradition surrender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extrado is a kind of curve", "pln": ["(: cnet_isa_0c46848755 (IsA extrado curve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extramarital sex is a kind of unlawful carnal knowledge", "pln": ["(: cnet_isa_8319744bc5 (IsA extramarital_sex unlawful_carnal_knowledge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "extraneousness is a kind of unrelatedness", "pln": ["(: cnet_isa_ccc83521d6 (IsA extraneousness unrelatedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "extraordinariness is a kind of quality", "pln": ["(: cnet_isa_64877b2b03 (IsA extraordinariness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extrapolation is a kind of inference", "pln": ["(: cnet_isa_911c7f816c (IsA extrapolation inference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extrapolation is a kind of calculation", "pln": ["(: cnet_isa_ec7e7423ca (IsA extrapolation calculation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extrasystole is a kind of systole", "pln": ["(: cnet_isa_7b9426f21e (IsA extrasystole systole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extraterrestrial being is a kind of hypothetical creature", "pln": ["(: cnet_isa_6577ede071 (IsA extraterrestrial_being hypothetical_creature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extraterrestrial object is a kind of natural object", "pln": ["(: cnet_isa_bc9182d45a (IsA extraterrestrial_object natural_object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extravagance is a kind of waste", "pln": ["(: cnet_isa_e7f08536bc (IsA extravagance waste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extravagance is a kind of excess", "pln": ["(: cnet_isa_da8661f726 (IsA extravagance excess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extravagance is a kind of improvidence", "pln": ["(: cnet_isa_8aa807599d (IsA extravagance improvidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extravaganza is a kind of entertainment", "pln": ["(: cnet_isa_758083853a (IsA extravaganza entertainment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extravasation is a kind of organic process", "pln": ["(: cnet_isa_2935d90747 (IsA extravasation organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extravasation is a kind of liquid", "pln": ["(: cnet_isa_e900e34386 (IsA extravasation liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extraversion is a kind of sociability", "pln": ["(: cnet_isa_a60a7cb074 (IsA extraversion sociability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extreme is a kind of degree", "pln": ["(: cnet_isa_ab0ee4bc55 (IsA extreme degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extreme point is a kind of extremity", "pln": ["(: cnet_isa_b0db6f6551 (IsA extreme_point extremity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extremely high frequency is a kind of radio frequency", "pln": ["(: cnet_isa_1e337154de (IsA extremely_high_frequency radio_frequency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extremely low frequency is a kind of radio frequency", "pln": ["(: cnet_isa_a3341ec264 (IsA extremely_low_frequency radio_frequency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extremeness is a kind of quality", "pln": ["(: cnet_isa_95ea7030cc (IsA extremeness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extremism is a kind of political orientation", "pln": ["(: cnet_isa_edc389546b (IsA extremism political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extremist is a kind of radical", "pln": ["(: cnet_isa_2bd50b1950 (IsA extremist radical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "extremity is a kind of external body part", "pln": ["(: cnet_isa_285f77bd17 (IsA extremity external_body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extremity is a kind of region", "pln": ["(: cnet_isa_7e642d8bd4 (IsA extremity region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extremity is a kind of adversity", "pln": ["(: cnet_isa_fbfc395dc5 (IsA extremity adversity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extremity is a kind of ultimacy", "pln": ["(: cnet_isa_c4705ddcc9 (IsA extremity ultimacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extremum is a kind of limit", "pln": ["(: cnet_isa_0b9031027e (IsA extremum limit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "extrinsic fraud is a kind of fraud", "pln": ["(: cnet_isa_e1329739b2 (IsA extrinsic_fraud fraud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extropy is a kind of prediction", "pln": ["(: cnet_isa_749c26ce53 (IsA extropy prediction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extrovert is a kind of person", "pln": ["(: cnet_isa_7873e64d6c (IsA extrovert person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "extrusion is a kind of squeeze", "pln": ["(: cnet_isa_e171f2f0a5 (IsA extrusion squeeze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exuberance is a kind of liveliness", "pln": ["(: cnet_isa_a93e6ff928 (IsA exuberance liveliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exuberance is a kind of enthusiasm", "pln": ["(: cnet_isa_e215b01c4a (IsA exuberance enthusiasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exuberance is a kind of joy", "pln": ["(: cnet_isa_6fd090a8c9 (IsA exuberance joy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exudate is a kind of discharge", "pln": ["(: cnet_isa_3beee21fbd (IsA exudate discharge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exudation is a kind of seepage", "pln": ["(: cnet_isa_5efea19a69 (IsA exudation seepage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exultation is a kind of utterance", "pln": ["(: cnet_isa_38786c37fb (IsA exultation utterance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exultation is a kind of joy", "pln": ["(: cnet_isa_16d04f3304 (IsA exultation joy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exurbia is a kind of residential district", "pln": ["(: cnet_isa_cf1b21fdf9 (IsA exurbia residential_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exuviae is a kind of body covering", "pln": ["(: cnet_isa_bc53285596 (IsA exuviae body_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "exwife is a kind of woman", "pln": ["(: cnet_isa_3ecb71ec3c (IsA exwife woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eya is a kind of hawk", "pln": ["(: cnet_isa_56e976a999 (IsA eya hawk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eye is a kind of biological organ", "pln": ["(: cnet_isa_be167f862e (IsA eye biological_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eye is a kind of complex organ", "pln": ["(: cnet_isa_6851ddc37f (IsA eye complex_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eye is a kind of optical sensor for living being", "pln": ["(: cnet_isa_481e738ed6 (IsA eye optical_sensor_for_living_being) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eye is a kind of hole", "pln": ["(: cnet_isa_5735a27749 (IsA eye hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eye is a kind of sense organ", "pln": ["(: cnet_isa_7f1d959fbe (IsA eye sense_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eye is a kind of attention", "pln": ["(: cnet_isa_86396faa9b (IsA eye attention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eye is a kind of sagacity", "pln": ["(: cnet_isa_9eb7fa938a (IsA eye sagacity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eye bank is a kind of bank", "pln": ["(: cnet_isa_3257ed5968 (IsA eye_bank bank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eye beaming is a kind of glance", "pln": ["(: cnet_isa_46b7322826 (IsA eye_beaming glance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eye candy is a kind of visual percept", "pln": ["(: cnet_isa_2716a3d3c4 (IsA eye_candy visual_percept) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eye catcher is a kind of center", "pln": ["(: cnet_isa_9987fce8f7 (IsA eye_catcher center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eye chart is a kind of chart", "pln": ["(: cnet_isa_7785caf26b (IsA eye_chart chart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eye clinic is a kind of clinic", "pln": ["(: cnet_isa_a8627536f8 (IsA eye_clinic clinic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eye condition is a kind of condition", "pln": ["(: cnet_isa_ff1fcf4f74 (IsA eye_condition condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eye contact is a kind of contact", "pln": ["(: cnet_isa_94ce7c61f2 (IsA eye_contact contact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eye contact is a kind of visual communication", "pln": ["(: cnet_isa_3f1776e803 (IsA eye_contact visual_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eye dialect is a kind of dialect", "pln": ["(: cnet_isa_bba375e578 (IsA eye_dialect dialect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eye disease is a kind of disease", "pln": ["(: cnet_isa_c79cfed2a8 (IsA eye_disease disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eye drop is a kind of irrigation", "pln": ["(: cnet_isa_8e964c6faa (IsA eye_drop irrigation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eye lotion is a kind of lotion", "pln": ["(: cnet_isa_67f412bda7 (IsA eye_lotion lotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eye movement is a kind of motion", "pln": ["(: cnet_isa_9c69bd40d4 (IsA eye_movement motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eye opener is a kind of surprise", "pln": ["(: cnet_isa_d71cb77849 (IsA eye_opener surprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eye opener is a kind of drink", "pln": ["(: cnet_isa_b3279b05d3 (IsA eye_opener drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eye operation is a kind of operation", "pln": ["(: cnet_isa_7660e0e1d6 (IsA eye_operation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eye rhyme is a kind of rhyme", "pln": ["(: cnet_isa_f72b4dbe50 (IsA eye_rhyme rhyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eye socket is a kind of cavity", "pln": ["(: cnet_isa_139406e366 (IsA eye_socket cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eyeball is a kind of capsule", "pln": ["(: cnet_isa_54383753bb (IsA eyeball capsule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eyebrow is a kind of hair", "pln": ["(: cnet_isa_88b4569a84 (IsA eyebrow hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eyebrow pencil is a kind of makeup", "pln": ["(: cnet_isa_533bd98d9e (IsA eyebrow_pencil makeup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eyecup is a kind of vessel", "pln": ["(: cnet_isa_2e6c6653be (IsA eyecup vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eyedness is a kind of asymmetry", "pln": ["(: cnet_isa_fa49460b71 (IsA eyedness asymmetry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eyedrop is a kind of drop", "pln": ["(: cnet_isa_3f6143b28a (IsA eyedrop drop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "eyeful is a kind of view", "pln": ["(: cnet_isa_e889cd8e19 (IsA eyeful view) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eyeful is a kind of woman", "pln": ["(: cnet_isa_f2ff62cdf6 (IsA eyeful woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eyeglass wearer is a kind of perceiver", "pln": ["(: cnet_isa_cd7771b9d2 (IsA eyeglass_wearer perceiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eyeish is a kind of caddo", "pln": ["(: cnet_isa_1e3a78d9bb (IsA eyeish caddo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eyelash is a kind of hair", "pln": ["(: cnet_isa_9958b45d5e (IsA eyelash hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eyelessness is a kind of blindness", "pln": ["(: cnet_isa_23751b2d3f (IsA eyelessness blindness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eyelet is a kind of hole", "pln": ["(: cnet_isa_ba1547c1d9 (IsA eyelet hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eyelid is a kind of protective fold", "pln": ["(: cnet_isa_3a0918e00c (IsA eyelid protective_fold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eyeliner is a kind of makeup", "pln": ["(: cnet_isa_6dd866d4a3 (IsA eyeliner makeup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eyepatch is a kind of cloth covering", "pln": ["(: cnet_isa_51f665022b (IsA eyepatch cloth_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eyepiece is a kind of len", "pln": ["(: cnet_isa_625ba49432 (IsA eyepiece len) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eye is a kind of opinion", "pln": ["(: cnet_isa_29168de339 (IsA eye opinion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eyeshadow is a kind of makeup", "pln": ["(: cnet_isa_4ed41d954b (IsA eyeshadow makeup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eyesight is a kind of sight", "pln": ["(: cnet_isa_000be3fe75 (IsA eyesight sight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eyesore is a kind of ugliness", "pln": ["(: cnet_isa_91a4ea11d6 (IsA eyesore ugliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eyespot is a kind of marking", "pln": ["(: cnet_isa_fbbda081ea (IsA eyespot marking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eyestrain is a kind of fatigue", "pln": ["(: cnet_isa_2fccceaf07 (IsA eyestrain fatigue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eyewitness is a kind of spectator", "pln": ["(: cnet_isa_bf325d5e89 (IsA eyewitness spectator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eyore is a kind of fictional character", "pln": ["(: cnet_isa_74ddf2bb6d (IsA eyore fictional_character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "eysenck personality inventory is a kind of self report personality inventory", "pln": ["(: cnet_isa_09263876e5 (IsA eysenck_personality_inventory self_report_personality_inventory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "f is a kind of letter", "pln": ["(: cnet_isa_597177ff18 (IsA f letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fa is a kind of solfa syllable", "pln": ["(: cnet_isa_918a427ed7 (IsA fa solfa_syllable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fa la is a kind of nonsense", "pln": ["(: cnet_isa_01c787d76e (IsA fa_la nonsense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fabian is a kind of socialist", "pln": ["(: cnet_isa_ab9f11d951 (IsA fabian socialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fabian society is a kind of association", "pln": ["(: cnet_isa_0180f89676 (IsA fabian_society association) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fabiana is a kind of asterid dicot genus", "pln": ["(: cnet_isa_d2a4834cac (IsA fabiana asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fabianism is a kind of socialism", "pln": ["(: cnet_isa_eeeda54106 (IsA fabianism socialism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fable is a kind of story", "pln": ["(: cnet_isa_219a6ffc3e (IsA fable story) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fabric is a kind of artifact", "pln": ["(: cnet_isa_5efe78b93f (IsA fabric artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fabrication is a kind of construction", "pln": ["(: cnet_isa_c7093c4d94 (IsA fabrication construction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fabrication is a kind of creating from raw material", "pln": ["(: cnet_isa_83801ae139 (IsA fabrication creating_from_raw_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fabrication is a kind of writing", "pln": ["(: cnet_isa_aa663c7484 (IsA fabrication writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fabrication is a kind of falsehood", "pln": ["(: cnet_isa_c90055f0d8 (IsA fabrication falsehood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fabulist is a kind of narrator", "pln": ["(: cnet_isa_11a9c5f0e2 (IsA fabulist narrator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "facade is a kind of front", "pln": ["(: cnet_isa_1718887083 (IsA facade front) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "facade is a kind of misrepresentation", "pln": ["(: cnet_isa_74b124f4be (IsA facade misrepresentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "face is a kind of front", "pln": ["(: cnet_isa_2577477f50 (IsA face front) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "face is a kind of surface", "pln": ["(: cnet_isa_b067cab45a (IsA face surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "face is a kind of vertical surface", "pln": ["(: cnet_isa_5c9ba7c176 (IsA face vertical_surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "face is a kind of appearance", "pln": ["(: cnet_isa_eeaa0f95a2 (IsA face appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "face is a kind of status", "pln": ["(: cnet_isa_16bb46cc55 (IsA face status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "face is a kind of external body part", "pln": ["(: cnet_isa_23f32d6e38 (IsA face external_body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "face is a kind of person", "pln": ["(: cnet_isa_ce5baa925c (IsA face person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "face amount certificate company is a kind of investment company", "pln": ["(: cnet_isa_78cff18eb0 (IsA face_amount_certificate_company investment_company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "face angle is a kind of angle", "pln": ["(: cnet_isa_4c3ac6769a (IsA face_angle angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "face card is a kind of playing card", "pln": ["(: cnet_isa_ecf9ba88a5 (IsA face_card playing_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "face guard is a kind of face mask", "pln": ["(: cnet_isa_ea7bbcd9e5 (IsA face_guard face_mask) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "face lift is a kind of plastic surgery", "pln": ["(: cnet_isa_b31d6dcbee (IsA face_lift plastic_surgery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "face lift is a kind of renovation", "pln": ["(: cnet_isa_f7309c36cd (IsA face_lift renovation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "face mask is a kind of mask", "pln": ["(: cnet_isa_289a61907d (IsA face_mask mask) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "face off is a kind of beginning", "pln": ["(: cnet_isa_c552c9efb3 (IsA face_off beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "face powder is a kind of makeup", "pln": ["(: cnet_isa_96ef419eb2 (IsA face_powder makeup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "face powder is a kind of powder", "pln": ["(: cnet_isa_80094b3e2b (IsA face_powder powder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "face recognition is a kind of visual perception", "pln": ["(: cnet_isa_37715a5f9d (IsA face_recognition visual_perception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "face recognition is a kind of biometric identification", "pln": ["(: cnet_isa_4fb7556e36 (IsA face_recognition biometric_identification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "face saver is a kind of accomplishment", "pln": ["(: cnet_isa_6108beb3e8 (IsA face_saver accomplishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "face time is a kind of work time", "pln": ["(: cnet_isa_791f1b4db2 (IsA face_time work_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "face value is a kind of semblance", "pln": ["(: cnet_isa_bc2cfff68d (IsA face_value semblance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "face veil is a kind of head covering", "pln": ["(: cnet_isa_218c7d8e4e (IsA face_veil head_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "faceplate is a kind of protective covering", "pln": ["(: cnet_isa_e6998bde83 (IsA faceplate protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "facer is a kind of difficulty", "pln": ["(: cnet_isa_9630373f57 (IsA facer difficulty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "facet is a kind of subfigure", "pln": ["(: cnet_isa_5526ee052e (IsA facet subfigure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "facet plane is a kind of plane", "pln": ["(: cnet_isa_eb68e9f4e3 (IsA facet_plane plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "facetiousness is a kind of playfulness", "pln": ["(: cnet_isa_53d1d6d05e (IsA facetiousness playfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "facial is a kind of beauty treatment", "pln": ["(: cnet_isa_109488cdd5 (IsA facial beauty_treatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "facial is a kind of skin care", "pln": ["(: cnet_isa_e4f2d711a4 (IsA facial skin_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "facial is a kind of cranial nerve", "pln": ["(: cnet_isa_617d9a2b1c (IsA facial cranial_nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "facial artery is a kind of maxillary artery", "pln": ["(: cnet_isa_a50b67c2b6 (IsA facial_artery maxillary_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "facial expression is a kind of gesture", "pln": ["(: cnet_isa_f7fb15e793 (IsA facial_expression gesture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "facial hair is a kind of hair", "pln": ["(: cnet_isa_5064a1c5d5 (IsA facial_hair hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "facial index is a kind of ratio", "pln": ["(: cnet_isa_f92da4e7fe (IsA facial_index ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "facial muscle is a kind of skeletal muscle", "pln": ["(: cnet_isa_eb0ba84c0f (IsA facial_muscle skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "facial profiling is a kind of identification", "pln": ["(: cnet_isa_3e58d68066 (IsA facial_profiling identification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "facial tissue is a kind of tissue", "pln": ["(: cnet_isa_45bff73ae3 (IsA facial_tissue tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "facial vein is a kind of vein", "pln": ["(: cnet_isa_7a4650619a (IsA facial_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "facilitation is a kind of aid", "pln": ["(: cnet_isa_d49b6de615 (IsA facilitation aid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "facilitation is a kind of organic phenomenon", "pln": ["(: cnet_isa_49641979ce (IsA facilitation organic_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "facilitation is a kind of condition", "pln": ["(: cnet_isa_bb20f1639f (IsA facilitation condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "facilitator is a kind of assistant", "pln": ["(: cnet_isa_c490e10d9c (IsA facilitator assistant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "facility is a kind of artifact", "pln": ["(: cnet_isa_bb6829f524 (IsA facility artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "facility is a kind of service", "pln": ["(: cnet_isa_097318b6d6 (IsA facility service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "facility is a kind of effortlessness", "pln": ["(: cnet_isa_efc0e518a9 (IsA facility effortlessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "facing is a kind of coating", "pln": ["(: cnet_isa_b2ada64cb9 (IsA facing coating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "facing is a kind of lining", "pln": ["(: cnet_isa_466fad94c8 (IsA facing lining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "facing is a kind of protective covering", "pln": ["(: cnet_isa_fdfe4f6ff7 (IsA facing protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "facism is a kind of political ideology", "pln": ["(: cnet_isa_f05e767dd1 (IsA facism political_ideology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "facsimile is a kind of copy", "pln": ["(: cnet_isa_36d2471041 (IsA facsimile copy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "facsimile is a kind of duplicator", "pln": ["(: cnet_isa_5b14a453c0 (IsA facsimile duplicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fact is a kind of 4 letter word", "pln": ["(: cnet_isa_0e2d0b3690 (IsA fact 4_letter_word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fact is a kind of actuality real", "pln": ["(: cnet_isa_9f63337e8f (IsA fact actuality_real) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fact is a kind of piece of information", "pln": ["(: cnet_isa_6f9097c652 (IsA fact piece_of_information) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fact is a kind of undisputable piece of information", "pln": ["(: cnet_isa_ec7c2d7b41 (IsA fact undisputable_piece_of_information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fact is a kind of concept", "pln": ["(: cnet_isa_efcd77cc55 (IsA fact concept) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fact is a kind of information", "pln": ["(: cnet_isa_f6aa05999a (IsA fact information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fact is a kind of reality", "pln": ["(: cnet_isa_3faf3258f4 (IsA fact reality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "faction is a kind of clique", "pln": ["(: cnet_isa_b2d5e80b4d (IsA faction clique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "factoid is a kind of information", "pln": ["(: cnet_isa_59d9e19352 (IsA factoid information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "factoid is a kind of new item", "pln": ["(: cnet_isa_883038aa4a (IsA factoid new_item) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "factor is a kind of independent variable", "pln": ["(: cnet_isa_b1790c5c51 (IsA factor independent_variable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "factor is a kind of cause", "pln": ["(: cnet_isa_98d3027ee4 (IsA factor cause) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "factor is a kind of number", "pln": ["(: cnet_isa_9dd771a675 (IsA factor number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "factor analysis is a kind of correlational analysis", "pln": ["(: cnet_isa_0d42b07297 (IsA factor_analysis correlational_analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "factor of proportionality is a kind of constant", "pln": ["(: cnet_isa_1a12dc4851 (IsA factor_of_proportionality constant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "factor of proportionality is a kind of factor", "pln": ["(: cnet_isa_882effae9f (IsA factor_of_proportionality factor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "factorial is a kind of product", "pln": ["(: cnet_isa_1d5258b94d (IsA factorial product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "factorization is a kind of resolution", "pln": ["(: cnet_isa_82b95978bb (IsA factorization resolution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "factory is a kind of plant", "pln": ["(: cnet_isa_14824637ed (IsA factory plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "factory price is a kind of price", "pln": ["(: cnet_isa_0dd3890354 (IsA factory_price price) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "factory ship is a kind of whaler", "pln": ["(: cnet_isa_27bc91d4fd (IsA factory_ship whaler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "factory whistle is a kind of whistle", "pln": ["(: cnet_isa_ae03d0259f (IsA factory_whistle whistle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "factotum is a kind of servant", "pln": ["(: cnet_isa_f8becb2acd (IsA factotum servant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "factuality is a kind of quality", "pln": ["(: cnet_isa_1691d95a6f (IsA factuality quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "facula is a kind of spot", "pln": ["(: cnet_isa_75e79ad7b1 (IsA facula spot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "faculty is a kind of ability", "pln": ["(: cnet_isa_6a8c0c4583 (IsA faculty ability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fad is a kind of fashion", "pln": ["(: cnet_isa_b1efb4e99a (IsA fad fashion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fad diet is a kind of reducing diet", "pln": ["(: cnet_isa_ff8249a817 (IsA fad_diet reducing_diet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "faddist is a kind of person", "pln": ["(: cnet_isa_9dc550384e (IsA faddist person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fade is a kind of termination", "pln": ["(: cnet_isa_1b3b5f4b44 (IsA fade termination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fadeout is a kind of noise", "pln": ["(: cnet_isa_2cdc5764c1 (IsA fadeout noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fading away is a kind of dwindling", "pln": ["(: cnet_isa_1182ecac2a (IsA fading_away dwindling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fado is a kind of folk song", "pln": ["(: cnet_isa_e934c2c7f0 (IsA fado folk_song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fag end is a kind of end", "pln": ["(: cnet_isa_443af0a89d (IsA fag_end end) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fagaceae is a kind of hamamelid dicot family", "pln": ["(: cnet_isa_57001acf38 (IsA fagaceae hamamelid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fagale is a kind of plant order", "pln": ["(: cnet_isa_0f649cc58e (IsA fagale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "faggot stitch is a kind of embroidery stitch", "pln": ["(: cnet_isa_7a26b3bb86 (IsA faggot_stitch embroidery_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "faggoting is a kind of embroidery", "pln": ["(: cnet_isa_bb1f427fbe (IsA faggoting embroidery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fagopyrum is a kind of dicot genus", "pln": ["(: cnet_isa_d930c7bb44 (IsA fagopyrum dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fagot is a kind of bundle", "pln": ["(: cnet_isa_6d5a32549e (IsA fagot bundle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fagot is a kind of homosexual", "pln": ["(: cnet_isa_761b9710aa (IsA fagot homosexual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fagus is a kind of hamamelid dicot genus", "pln": ["(: cnet_isa_b57b56fde9 (IsA fagus hamamelid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fahrenheit scale is a kind of temperature scale", "pln": ["(: cnet_isa_fd2c4f8c1f (IsA fahrenheit_scale temperature_scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fahrenheit thermometer is a kind of thermometer", "pln": ["(: cnet_isa_e8176da431 (IsA fahrenheit_thermometer thermometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "faience is a kind of earthenware", "pln": ["(: cnet_isa_9b941cf46c (IsA faience earthenware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fail safe is a kind of mechanism", "pln": ["(: cnet_isa_821556a998 (IsA fail_safe mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "failing is a kind of failure", "pln": ["(: cnet_isa_3fe799f927 (IsA failing failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "failing is a kind of imperfection", "pln": ["(: cnet_isa_eb941c8183 (IsA failing imperfection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "faille is a kind of fabric", "pln": ["(: cnet_isa_02671a2e2a (IsA faille fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "failure is a kind of nonaccomplishment", "pln": ["(: cnet_isa_fb20116c9b (IsA failure nonaccomplishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "failure is a kind of omission", "pln": ["(: cnet_isa_6c2eb289ec (IsA failure omission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "failure is a kind of happening", "pln": ["(: cnet_isa_61b2a794a9 (IsA failure happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "failure is a kind of unfortunate", "pln": ["(: cnet_isa_f2c6af88f5 (IsA failure unfortunate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "failure is a kind of disorder", "pln": ["(: cnet_isa_a51f357c97 (IsA failure disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "failure is a kind of fortune", "pln": ["(: cnet_isa_6063045268 (IsA failure fortune) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "faineance is a kind of indolence", "pln": ["(: cnet_isa_e1dadc526a (IsA faineance indolence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "faint is a kind of loss of consciousness", "pln": ["(: cnet_isa_84c3cac2f0 (IsA faint loss_of_consciousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "faintheartedness is a kind of timidity", "pln": ["(: cnet_isa_0b1ff04354 (IsA faintheartedness timidity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "faintness is a kind of softness", "pln": ["(: cnet_isa_deaab1ff42 (IsA faintness softness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "faintness is a kind of weakness", "pln": ["(: cnet_isa_8738d46f4b (IsA faintness weakness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "faintness is a kind of feeling", "pln": ["(: cnet_isa_732077cb2c (IsA faintness feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fair is a kind of exhibition", "pln": ["(: cnet_isa_62999dc6bb (IsA fair exhibition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fair is a kind of gathering", "pln": ["(: cnet_isa_0dbe210db6 (IsA fair gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fair ball is a kind of contact", "pln": ["(: cnet_isa_4be56c1a7c (IsA fair_ball contact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fair catch is a kind of catch", "pln": ["(: cnet_isa_5e37548e2a (IsA fair_catch catch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fair chance is a kind of probability", "pln": ["(: cnet_isa_8b1a9dde21 (IsA fair_chance probability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fair copy is a kind of copy", "pln": ["(: cnet_isa_277626f14d (IsA fair_copy copy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fair deal is a kind of deal", "pln": ["(: cnet_isa_5193c539cd (IsA fair_deal deal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fair hearing is a kind of hearing", "pln": ["(: cnet_isa_331a921335 (IsA fair_hearing hearing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fair trade is a kind of trade", "pln": ["(: cnet_isa_08a127f465 (IsA fair_trade trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fair trade act is a kind of legislative act", "pln": ["(: cnet_isa_ecb6817ee1 (IsA fair_trade_act legislative_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fair trade agreement is a kind of agreement", "pln": ["(: cnet_isa_0377729bf5 (IsA fair_trade_agreement agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fair use is a kind of use", "pln": ["(: cnet_isa_a8f7e375e3 (IsA fair_use use) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fair weather is a kind of weather", "pln": ["(: cnet_isa_50c984f613 (IsA fair_weather weather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fairground is a kind of tract", "pln": ["(: cnet_isa_0b1c2a92f5 (IsA fairground tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fairlead is a kind of pulley", "pln": ["(: cnet_isa_22b2f4eea0 (IsA fairlead pulley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fairness is a kind of justice", "pln": ["(: cnet_isa_266c466cee (IsA fairness justice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fairness is a kind of impartiality", "pln": ["(: cnet_isa_704e274256 (IsA fairness impartiality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fairness commission is a kind of committee", "pln": ["(: cnet_isa_ffe5b26e8d (IsA fairness_commission committee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fairway is a kind of path", "pln": ["(: cnet_isa_34cf6df6e3 (IsA fairway path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fairway is a kind of site", "pln": ["(: cnet_isa_1511c0ff04 (IsA fairway site) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fairway is a kind of tract", "pln": ["(: cnet_isa_6f5b20075a (IsA fairway tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fairy is a kind of spiritual being", "pln": ["(: cnet_isa_6f7a1c701b (IsA fairy spiritual_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fairy bluebird is a kind of oscine", "pln": ["(: cnet_isa_6d43e9351b (IsA fairy_bluebird oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fairy cup is a kind of miterwort", "pln": ["(: cnet_isa_dde10662ed (IsA fairy_cup miterwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fairy godmother is a kind of benefactor", "pln": ["(: cnet_isa_5bcc225ae0 (IsA fairy_godmother benefactor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fairy godmother is a kind of fairy", "pln": ["(: cnet_isa_f3f0990f40 (IsA fairy_godmother fairy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fairy light is a kind of light", "pln": ["(: cnet_isa_cc36558bbf (IsA fairy_light light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fairy ring is a kind of ring", "pln": ["(: cnet_isa_7b14ca31dc (IsA fairy_ring ring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fairy ring mushroom is a kind of agaric", "pln": ["(: cnet_isa_7a38fb48ea (IsA fairy_ring_mushroom agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fairy shrimp is a kind of branchiopod crustacean", "pln": ["(: cnet_isa_f697857253 (IsA fairy_shrimp branchiopod_crustacean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fairy swallow is a kind of domestic pigeon", "pln": ["(: cnet_isa_5058f1513d (IsA fairy_swallow domestic_pigeon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fairyland is a kind of imaginary place", "pln": ["(: cnet_isa_7176fbc93d (IsA fairyland imaginary_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fairytale is a kind of fib", "pln": ["(: cnet_isa_9750deb7ea (IsA fairytale fib) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fairytale is a kind of narrative", "pln": ["(: cnet_isa_cdf760cdbf (IsA fairytale narrative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fait accompli is a kind of accomplishment", "pln": ["(: cnet_isa_9faae47279 (IsA fait_accompli accomplishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "faith is a kind of trust", "pln": ["(: cnet_isa_6f3b26f08a (IsA faith trust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "faith is a kind of commitment", "pln": ["(: cnet_isa_3f3b713ec0 (IsA faith commitment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "faith is a kind of belief", "pln": ["(: cnet_isa_dd35d02f23 (IsA faith belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "faith healing is a kind of care", "pln": ["(: cnet_isa_c7cd93a9ee (IsA faith_healing care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "faithful is a kind of following", "pln": ["(: cnet_isa_66f67233da (IsA faithful following) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "faithlessness is a kind of infidelity", "pln": ["(: cnet_isa_5934ea687c (IsA faithlessness infidelity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fake is a kind of imitation", "pln": ["(: cnet_isa_52e18d6879 (IsA fake imitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fake book is a kind of fake", "pln": ["(: cnet_isa_e975714e37 (IsA fake_book fake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fakery is a kind of deception", "pln": ["(: cnet_isa_c4cfe8343f (IsA fakery deception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fakir is a kind of moslem", "pln": ["(: cnet_isa_d6585b0041 (IsA fakir moslem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fakir is a kind of saint", "pln": ["(: cnet_isa_76dc45797f (IsA fakir saint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "falafel is a kind of dish", "pln": ["(: cnet_isa_a1644922fc (IsA falafel dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "falanga is a kind of torture", "pln": ["(: cnet_isa_bb8b65254a (IsA falanga torture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "falange is a kind of nazism", "pln": ["(: cnet_isa_3b81b46758 (IsA falange nazism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "falcatifolium is a kind of gymnosperm genus", "pln": ["(: cnet_isa_59c51187a9 (IsA falcatifolium gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "falchion is a kind of sword", "pln": ["(: cnet_isa_86898838ff (IsA falchion sword) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "falciform ligament is a kind of ligament", "pln": ["(: cnet_isa_f2b84a1e11 (IsA falciform_ligament ligament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "falco is a kind of bird genus", "pln": ["(: cnet_isa_2ad0356522 (IsA falco bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "falcon is a kind of bird", "pln": ["(: cnet_isa_092c00a47d (IsA falcon bird) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "falcon is a kind of hawk", "pln": ["(: cnet_isa_7602d4cc19 (IsA falcon hawk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "falcon gentle is a kind of peregrine", "pln": ["(: cnet_isa_cdb777fb6e (IsA falcon_gentle peregrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "falconer is a kind of hunter", "pln": ["(: cnet_isa_5b76de6849 (IsA falconer hunter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "falconidae is a kind of bird family", "pln": ["(: cnet_isa_f0d6cd29a7 (IsA falconidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "falconiforme is a kind of animal order", "pln": ["(: cnet_isa_dd09f6e913 (IsA falconiforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "falconry is a kind of art", "pln": ["(: cnet_isa_ff385971b4 (IsA falconry art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "falderal is a kind of decoration", "pln": ["(: cnet_isa_dfb69f2d3f (IsA falderal decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fall is a kind of season", "pln": ["(: cnet_isa_91fd792df0 (IsA fall season) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fall is a kind of sin", "pln": ["(: cnet_isa_431b72d205 (IsA fall sin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fall is a kind of change of location", "pln": ["(: cnet_isa_7fcc2012ee (IsA fall change_of_location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fall is a kind of victory", "pln": ["(: cnet_isa_381e27070a (IsA fall victory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fall is a kind of weakening", "pln": ["(: cnet_isa_97971ad623 (IsA fall weakening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fall armyworm is a kind of caterpillar", "pln": ["(: cnet_isa_9be8e24e83 (IsA fall_armyworm caterpillar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fall blooming hydrangea is a kind of hydrangea", "pln": ["(: cnet_isa_9d3b87e538 (IsA fall_blooming_hydrangea hydrangea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fall board is a kind of protective covering", "pln": ["(: cnet_isa_8333952812 (IsA fall_board protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fall cankerworm is a kind of cankerworm", "pln": ["(: cnet_isa_f0bfd4e30d (IsA fall_cankerworm cankerworm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fall dandelion is a kind of hawkbit", "pln": ["(: cnet_isa_02e6082e37 (IsA fall_dandelion hawkbit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fall of man is a kind of landmark", "pln": ["(: cnet_isa_aae9ecc481 (IsA fall_of_man landmark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fall webworm is a kind of webworm", "pln": ["(: cnet_isa_d49c072f57 (IsA fall_webworm webworm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fallaciousness is a kind of invalidity", "pln": ["(: cnet_isa_1179f472da (IsA fallaciousness invalidity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fallacy is a kind of misconception", "pln": ["(: cnet_isa_cf1aaee503 (IsA fallacy misconception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "faller is a kind of person", "pln": ["(: cnet_isa_83f554114d (IsA faller person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fallibility is a kind of undependability", "pln": ["(: cnet_isa_424a4d172e (IsA fallibility undependability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "falling in love is a kind of wonderful feeling", "pln": ["(: cnet_isa_3d34c77c6d (IsA falling_in_love wonderful_feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "falling star is a kind of meteor", "pln": ["(: cnet_isa_73d79a2f20 (IsA falling_star meteor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fallopian tube is a kind of female internal reproductive organ", "pln": ["(: cnet_isa_3a54faff02 (IsA fallopian_tube female_internal_reproductive_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fallopian tube is a kind of salpinx", "pln": ["(: cnet_isa_030523696d (IsA fallopian_tube salpinx) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fallout is a kind of dust", "pln": ["(: cnet_isa_f2439153f6 (IsA fallout dust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fallout shelter is a kind of shelter", "pln": ["(: cnet_isa_18b004de36 (IsA fallout_shelter shelter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fallow is a kind of cultivated land", "pln": ["(: cnet_isa_cf5ea5f1eb (IsA fallow cultivated_land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fallow deer is a kind of deer", "pln": ["(: cnet_isa_61167c68fa (IsA fallow_deer deer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fall is a kind of perianth", "pln": ["(: cnet_isa_7f8c6c88dc (IsA fall perianth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false alarm is a kind of warning", "pln": ["(: cnet_isa_09310ea482 (IsA false_alarm warning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false alumroot is a kind of wildflower", "pln": ["(: cnet_isa_1259edac24 (IsA false_alumroot wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false asphodel is a kind of liliaceous plant", "pln": ["(: cnet_isa_6182a5fd03 (IsA false_asphodel liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false azalea is a kind of shrub", "pln": ["(: cnet_isa_7f0445b06d (IsA false_azalea shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false bottom is a kind of structure", "pln": ["(: cnet_isa_c89f0ba246 (IsA false_bottom structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false bracken is a kind of fern", "pln": ["(: cnet_isa_8f641d76df (IsA false_bracken fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false buckthorn is a kind of buckthorn", "pln": ["(: cnet_isa_61ec69fd32 (IsA false_buckthorn buckthorn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false bugbane is a kind of herb", "pln": ["(: cnet_isa_2d9dff0e0b (IsA false_bugbane herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "false chamomile is a kind of wildflower", "pln": ["(: cnet_isa_2aa4430c5e (IsA false_chamomile wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false deathcap is a kind of agaric", "pln": ["(: cnet_isa_00de194cae (IsA false_deathcap agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false dragonhead is a kind of physostegia", "pln": ["(: cnet_isa_5431268006 (IsA false_dragonhead physostegia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false face is a kind of mask", "pln": ["(: cnet_isa_6611e0a29a (IsA false_face mask) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "false foxglove is a kind of herb", "pln": ["(: cnet_isa_a4700b2351 (IsA false_foxglove herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "false gavial is a kind of crocodilian reptile", "pln": ["(: cnet_isa_dc8fbe98d5 (IsA false_gavial crocodilian_reptile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false goatsbeard is a kind of astilbe", "pln": ["(: cnet_isa_bdcfaa1c3f (IsA false_goatsbeard astilbe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false gromwell is a kind of herb", "pln": ["(: cnet_isa_41e821d7bb (IsA false_gromwell herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false heather is a kind of subshrub", "pln": ["(: cnet_isa_204960b061 (IsA false_heather subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false imprisonment is a kind of imprisonment", "pln": ["(: cnet_isa_f5d27467d9 (IsA false_imprisonment imprisonment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "false indigo is a kind of amorpha", "pln": ["(: cnet_isa_f3fd66a85f (IsA false_indigo amorpha) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false lily of valley is a kind of liliaceous plant", "pln": ["(: cnet_isa_c79c71e3de (IsA false_lily_of_valley liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false lupine is a kind of bush pea", "pln": ["(: cnet_isa_dd4660cb1d (IsA false_lupine bush_pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false mallow is a kind of mallow", "pln": ["(: cnet_isa_8f6c6950eb (IsA false_mallow mallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false miterwort is a kind of wildflower", "pln": ["(: cnet_isa_48bde5c717 (IsA false_miterwort wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false morel is a kind of fungus", "pln": ["(: cnet_isa_9b4416a1a9 (IsA false_morel fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false nettle is a kind of herb", "pln": ["(: cnet_isa_b34408e335 (IsA false_nettle herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false pregnancy is a kind of physiological state", "pln": ["(: cnet_isa_088ab23445 (IsA false_pregnancy physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false pretense is a kind of misdemeanor", "pln": ["(: cnet_isa_5252b251f9 (IsA false_pretense misdemeanor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false return is a kind of tax return", "pln": ["(: cnet_isa_cf343d8463 (IsA false_return tax_return) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "false rue anemone is a kind of herb", "pln": ["(: cnet_isa_0664f6707b (IsA false_rue_anemone herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false saber toothed tiger is a kind of saber toothed tiger", "pln": ["(: cnet_isa_033cd86d5f (IsA false_saber_toothed_tiger saber_toothed_tiger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false sago is a kind of sago palm", "pln": ["(: cnet_isa_e294e18863 (IsA false_sago sago_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false scorpion is a kind of arachnid", "pln": ["(: cnet_isa_006ab32b6e (IsA false_scorpion arachnid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false tamarisk is a kind of shrub", "pln": ["(: cnet_isa_b8006623f9 (IsA false_tamarisk shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "false teeth is a kind of denture", "pln": ["(: cnet_isa_25866df444 (IsA false_teeth denture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false truffle is a kind of fungus", "pln": ["(: cnet_isa_8c1c6fe3ae (IsA false_truffle fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false vampire is a kind of leafnose bat", "pln": ["(: cnet_isa_b2fae1d4fc (IsA false_vampire leafnose_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false verdict is a kind of verdict", "pln": ["(: cnet_isa_62bf087b42 (IsA false_verdict verdict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false vocal cord is a kind of vocal cord", "pln": ["(: cnet_isa_b7f78b7bad (IsA false_vocal_cord vocal_cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "false wintergreen is a kind of wintergreen", "pln": ["(: cnet_isa_0554a389fe (IsA false_wintergreen wintergreen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "falsehood is a kind of statement", "pln": ["(: cnet_isa_9ec5bdace3 (IsA falsehood statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "falsetto is a kind of head register", "pln": ["(: cnet_isa_52cb7ce33a (IsA falsetto head_register) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "falsie is a kind of padding", "pln": ["(: cnet_isa_84f3847ffc (IsA falsie padding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "falsification is a kind of determination", "pln": ["(: cnet_isa_8cac8c4539 (IsA falsification determination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "falsification is a kind of dishonesty", "pln": ["(: cnet_isa_f8788f80b4 (IsA falsification dishonesty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "falsification is a kind of wrongdoing", "pln": ["(: cnet_isa_d98c0ff5d7 (IsA falsification wrongdoing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "falsifier is a kind of deceiver", "pln": ["(: cnet_isa_5564341963 (IsA falsifier deceiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "falsity is a kind of unreality", "pln": ["(: cnet_isa_a3a8747be8 (IsA falsity unreality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "falun gong is a kind of movement", "pln": ["(: cnet_isa_a007226f0a (IsA falun_gong movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fame is a kind of honor", "pln": ["(: cnet_isa_4b695a03ae (IsA fame honor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fame is a kind of repute", "pln": ["(: cnet_isa_b49588b913 (IsA fame repute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "familial hypercholesterolemia is a kind of hypercholesterolemia", "pln": ["(: cnet_isa_60bb2ec332 (IsA familial_hypercholesterolemia hypercholesterolemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "familial hypercholesterolemia is a kind of monogenic disorder", "pln": ["(: cnet_isa_b634c10082 (IsA familial_hypercholesterolemia monogenic_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "familiar is a kind of servant", "pln": ["(: cnet_isa_8615ad6cb3 (IsA familiar servant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "familiar is a kind of spirit", "pln": ["(: cnet_isa_7138ca4018 (IsA familiar spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "familiarity is a kind of misbehavior", "pln": ["(: cnet_isa_c1123cd4a8 (IsA familiarity misbehavior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "familiarity is a kind of friendliness", "pln": ["(: cnet_isa_2e319664fe (IsA familiarity friendliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "familiarity is a kind of usualness", "pln": ["(: cnet_isa_0c067aada7 (IsA familiarity usualness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "familiarization is a kind of experience", "pln": ["(: cnet_isa_8c57e01b1e (IsA familiarization experience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "family is a kind of good thing to have", "pln": ["(: cnet_isa_1915929231 (IsA family good_thing_to_have) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "family is a kind of group of related people", "pln": ["(: cnet_isa_999c98edf7 (IsA family group_of_related_people) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "family is a kind of taxonomic group", "pln": ["(: cnet_isa_9ea2f3dbd5 (IsA family taxonomic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "family is a kind of association", "pln": ["(: cnet_isa_c4c3be7d6c (IsA family association) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "family is a kind of kin", "pln": ["(: cnet_isa_39db221870 (IsA family kin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "family is a kind of lineage", "pln": ["(: cnet_isa_358d9892d3 (IsA family lineage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "family is a kind of unit", "pln": ["(: cnet_isa_7bfac1f82a (IsA family unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "family bible is a kind of bible", "pln": ["(: cnet_isa_e6511f6228 (IsA family_bible bible) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "family business is a kind of closed corporation", "pln": ["(: cnet_isa_17fb1908fb (IsA family_business closed_corporation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "family court is a kind of court", "pln": ["(: cnet_isa_ce5171719f (IsA family_court court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "family doctor is a kind of general practitioner", "pln": ["(: cnet_isa_5fbc672972 (IsA family_doctor general_practitioner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "family history is a kind of case history", "pln": ["(: cnet_isa_23cd5418b4 (IsA family_history case_history) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "family man is a kind of husband", "pln": ["(: cnet_isa_18135565cc (IsA family_man husband) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "family osteoglossidae is a kind of fish family", "pln": ["(: cnet_isa_1e6714d9e8 (IsA family_osteoglossidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "family practice is a kind of medical practice", "pln": ["(: cnet_isa_5fb40bf56b (IsA family_practice medical_practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "family room is a kind of recreation room", "pln": ["(: cnet_isa_c7c19061b4 (IsA family_room recreation_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "family therapy is a kind of group therapy", "pln": ["(: cnet_isa_989ef7e7ea (IsA family_therapy group_therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "family tree is a kind of tree", "pln": ["(: cnet_isa_92b69d683f (IsA family_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "famine is a kind of calamity", "pln": ["(: cnet_isa_819c119b83 (IsA famine calamity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "famliy room is a kind of room in house", "pln": ["(: cnet_isa_c99cb1b1c0 (IsA famliy_room room_in_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "famulus is a kind of attendant", "pln": ["(: cnet_isa_ab39a146d6 (IsA famulus attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fan is a kind of device", "pln": ["(: cnet_isa_a4fe7a206d (IsA fan device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fan is a kind of follower", "pln": ["(: cnet_isa_5484ff48dd (IsA fan follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fan belt is a kind of belt", "pln": ["(: cnet_isa_70fb26754a (IsA fan_belt belt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fan blade is a kind of blade", "pln": ["(: cnet_isa_9103117721 (IsA fan_blade blade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fan dance is a kind of nude dancing", "pln": ["(: cnet_isa_9d6f6579e1 (IsA fan_dance nude_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fan letter is a kind of letter", "pln": ["(: cnet_isa_0657d5bfbf (IsA fan_letter letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fan mail is a kind of mail", "pln": ["(: cnet_isa_204050eb4d (IsA fan_mail mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fan palm is a kind of palm", "pln": ["(: cnet_isa_f67a244c2e (IsA fan_palm palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fan tracery is a kind of tracery", "pln": ["(: cnet_isa_ced6e7558b (IsA fan_tracery tracery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fan vaulting is a kind of vaulting", "pln": ["(: cnet_isa_e8a762ea91 (IsA fan_vaulting vaulting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fanaloka is a kind of civet", "pln": ["(: cnet_isa_3ce8882569 (IsA fanaloka civet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fanatic is a kind of person", "pln": ["(: cnet_isa_6cb013f9d2 (IsA fanatic person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fanatic is a kind of enthusiast", "pln": ["(: cnet_isa_d9f3b895f9 (IsA fanatic enthusiast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fanaticism is a kind of intolerance", "pln": ["(: cnet_isa_00446f7b90 (IsA fanaticism intolerance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fancier is a kind of admirer", "pln": ["(: cnet_isa_841cced2fc (IsA fancier admirer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fanconi s anemia is a kind of anemia", "pln": ["(: cnet_isa_d78d4cb148 (IsA fanconi_s_anemia anemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fanconi s anemia is a kind of genetic disease", "pln": ["(: cnet_isa_bfc854caa9 (IsA fanconi_s_anemia genetic_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fancy is a kind of imagination", "pln": ["(: cnet_isa_514dba0fd0 (IsA fancy imagination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fancy dress is a kind of costume", "pln": ["(: cnet_isa_e3e11ac931 (IsA fancy_dress costume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fancy dress is a kind of disguise", "pln": ["(: cnet_isa_87d07db383 (IsA fancy_dress disguise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fancy good is a kind of commodity", "pln": ["(: cnet_isa_88bb65c93e (IsA fancy_good commodity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fancy man is a kind of lover", "pln": ["(: cnet_isa_20e5306236 (IsA fancy_man lover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fandango is a kind of social dancing", "pln": ["(: cnet_isa_ab4078b2b5 (IsA fandango social_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fandom is a kind of following", "pln": ["(: cnet_isa_146f98160e (IsA fandom following) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fang is a kind of canine", "pln": ["(: cnet_isa_e3e508d792 (IsA fang canine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fang is a kind of extremity", "pln": ["(: cnet_isa_9f4e2dd7e7 (IsA fang extremity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fang is a kind of tooth", "pln": ["(: cnet_isa_2cf147b371 (IsA fang tooth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fang is a kind of bantu", "pln": ["(: cnet_isa_30df053694 (IsA fang bantu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fanion is a kind of flag", "pln": ["(: cnet_isa_28869e048c (IsA fanion flag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fanlight is a kind of window", "pln": ["(: cnet_isa_3aff5cbe76 (IsA fanlight window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fanny adam is a kind of canned meat", "pln": ["(: cnet_isa_14fccb646a (IsA fanny_adam canned_meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fanny pack is a kind of waist pack", "pln": ["(: cnet_isa_9203aaa6ba (IsA fanny_pack waist_pack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fantail is a kind of overhang", "pln": ["(: cnet_isa_39e1e8377f (IsA fantail overhang) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fantan is a kind of card game", "pln": ["(: cnet_isa_7bdcdb8978 (IsA fantan card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fantan is a kind of game of chance", "pln": ["(: cnet_isa_ff6cbffc66 (IsA fantan game_of_chance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fantasia is a kind of musical composition", "pln": ["(: cnet_isa_ed12a214a9 (IsA fantasia musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fantasist is a kind of creator", "pln": ["(: cnet_isa_86d6631497 (IsA fantasist creator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fantast is a kind of visionary", "pln": ["(: cnet_isa_ba1828f87b (IsA fantast visionary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fantasy is a kind of imagination", "pln": ["(: cnet_isa_8fc7138f68 (IsA fantasy imagination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fantasy is a kind of fiction", "pln": ["(: cnet_isa_97fc2b96cc (IsA fantasy fiction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fantasy life is a kind of fantasy", "pln": ["(: cnet_isa_aa736b306c (IsA fantasy_life fantasy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fantasy world is a kind of fantasy", "pln": ["(: cnet_isa_ace7c842fa (IsA fantasy_world fantasy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fantod is a kind of disorder", "pln": ["(: cnet_isa_648fde94f4 (IsA fantod disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "faq is a kind of list", "pln": ["(: cnet_isa_771c307d8f (IsA faq list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "far cry is a kind of disparity", "pln": ["(: cnet_isa_2d0455c1b0 (IsA far_cry disparity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "far cry is a kind of farness", "pln": ["(: cnet_isa_e5dc367198 (IsA far_cry farness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farad is a kind of capacitance unit", "pln": ["(: cnet_isa_18008232b4 (IsA farad capacitance_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "farandole is a kind of folk dancing", "pln": ["(: cnet_isa_ac931b7942 (IsA farandole folk_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farce is a kind of comedy", "pln": ["(: cnet_isa_5b2c144ac4 (IsA farce comedy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fardel is a kind of burden", "pln": ["(: cnet_isa_9013639ebd (IsA fardel burden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fare is a kind of food", "pln": ["(: cnet_isa_afb4d8825d (IsA fare food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fare is a kind of passenger", "pln": ["(: cnet_isa_2f5cba3c79 (IsA fare passenger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fare is a kind of charge", "pln": ["(: cnet_isa_03160173d8 (IsA fare charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fare increase is a kind of increase", "pln": ["(: cnet_isa_30aaa89483 (IsA fare_increase increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fare stage is a kind of stage", "pln": ["(: cnet_isa_d86b9a9939 (IsA fare_stage stage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fare thee well is a kind of perfection", "pln": ["(: cnet_isa_dfeb1cbeaf (IsA fare_thee_well perfection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farewell is a kind of departure", "pln": ["(: cnet_isa_d730979b1e (IsA farewell departure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farewell is a kind of acknowledgment", "pln": ["(: cnet_isa_ef35fc1d23 (IsA farewell acknowledgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farina is a kind of meal", "pln": ["(: cnet_isa_2134489ac5 (IsA farina meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farkleberry is a kind of blueberry", "pln": ["(: cnet_isa_36170d4a29 (IsA farkleberry blueberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farley maidenhair is a kind of brittle maidenhair", "pln": ["(: cnet_isa_a56e18fb5a (IsA farley_maidenhair brittle_maidenhair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farm is a kind of workplace", "pln": ["(: cnet_isa_a43320f988 (IsA farm workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farm animal is a kind of animal", "pln": ["(: cnet_isa_f8c043c69f (IsA farm_animal animal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farm bill is a kind of bill", "pln": ["(: cnet_isa_4a33af09e5 (IsA farm_bill bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farm boy is a kind of male child", "pln": ["(: cnet_isa_c34420699d (IsA farm_boy male_child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farm building is a kind of building", "pln": ["(: cnet_isa_620ae916a5 (IsA farm_building building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farm credit system is a kind of banking industry", "pln": ["(: cnet_isa_7a43fca017 (IsA farm_credit_system banking_industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farm girl is a kind of female child", "pln": ["(: cnet_isa_2ff2da10fa (IsA farm_girl female_child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farm horse is a kind of workhorse", "pln": ["(: cnet_isa_eb48206fcb (IsA farm_horse workhorse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farm machine is a kind of machine", "pln": ["(: cnet_isa_b00f962437 (IsA farm_machine machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "farm team is a kind of minor league team", "pln": ["(: cnet_isa_4f009349ac (IsA farm_team minor_league_team) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farmer s lung is a kind of alveolitis", "pln": ["(: cnet_isa_cb7a4e5bee (IsA farmer_s_lung alveolitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farmer s market is a kind of open air market", "pln": ["(: cnet_isa_f242b7605f (IsA farmer_s_market open_air_market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farmer is a kind of creator", "pln": ["(: cnet_isa_05aaca2592 (IsA farmer creator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farmer labor party is a kind of party", "pln": ["(: cnet_isa_665b87ab45 (IsA farmer_labor_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farmerette is a kind of farmhand", "pln": ["(: cnet_isa_7f7c411a89 (IsA farmerette farmhand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "farmhand is a kind of hired hand", "pln": ["(: cnet_isa_3430fb318d (IsA farmhand hired_hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farmhouse is a kind of house at farm", "pln": ["(: cnet_isa_ed6ce3a5d9 (IsA farmhouse house_at_farm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farmhouse is a kind of house", "pln": ["(: cnet_isa_bc728a5009 (IsA farmhouse house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farming is a kind of cultivation", "pln": ["(: cnet_isa_4973467868 (IsA farming cultivation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farming is a kind of occupation", "pln": ["(: cnet_isa_2b55c44de4 (IsA farming occupation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farmland is a kind of country", "pln": ["(: cnet_isa_991c55878a (IsA farmland country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farmplace is a kind of farm", "pln": ["(: cnet_isa_6ea89fad1f (IsA farmplace farm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farmstead is a kind of land", "pln": ["(: cnet_isa_c0701b3ece (IsA farmstead land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farmyard is a kind of yard", "pln": ["(: cnet_isa_80610007c8 (IsA farmyard yard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farness is a kind of distance", "pln": ["(: cnet_isa_3bc26e937f (IsA farness distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "faro is a kind of card game", "pln": ["(: cnet_isa_e3dc780a7f (IsA faro card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "faroese is a kind of scandinavian", "pln": ["(: cnet_isa_06b2ab1caf (IsA faroese scandinavian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farrier is a kind of blacksmith", "pln": ["(: cnet_isa_e4df9ae37d (IsA farrier blacksmith) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farrow is a kind of parturition", "pln": ["(: cnet_isa_ad1f07cf36 (IsA farrow parturition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farsi is a kind of iranian", "pln": ["(: cnet_isa_4479c39f9d (IsA farsi iranian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fart is a kind of reflex", "pln": ["(: cnet_isa_921e8b5017 (IsA fart reflex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farthing is a kind of coin", "pln": ["(: cnet_isa_06c06e9236 (IsA farthing coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "farthingale is a kind of hoop", "pln": ["(: cnet_isa_563021feaa (IsA farthingale hoop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fartlek is a kind of athletic training", "pln": ["(: cnet_isa_9d723c7d8e (IsA fartlek athletic_training) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fasce is a kind of emblem", "pln": ["(: cnet_isa_1a77c1f237 (IsA fasce emblem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fascia is a kind of connective tissue", "pln": ["(: cnet_isa_4b484d0413 (IsA fascia connective_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fascicle is a kind of installment", "pln": ["(: cnet_isa_f95b44e4f8 (IsA fascicle installment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fasciculation is a kind of twitch", "pln": ["(: cnet_isa_04a39e053e (IsA fasciculation twitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fascination is a kind of attraction", "pln": ["(: cnet_isa_12c45c69ab (IsA fascination attraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fascination is a kind of enchantment", "pln": ["(: cnet_isa_0b8d7192e5 (IsA fascination enchantment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fasciola is a kind of worm genus", "pln": ["(: cnet_isa_791fc0f39c (IsA fasciola worm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fascioliasis is a kind of infestation", "pln": ["(: cnet_isa_34c39e3046 (IsA fascioliasis infestation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fasciolidae is a kind of worm family", "pln": ["(: cnet_isa_ee9cc1f06e (IsA fasciolidae worm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fasciolopsiasis is a kind of infestation", "pln": ["(: cnet_isa_c607d2c46e (IsA fasciolopsiasis infestation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fasciolopsis is a kind of worm genus", "pln": ["(: cnet_isa_10d9b958d7 (IsA fasciolopsis worm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fasciolopsis buski is a kind of fluke", "pln": ["(: cnet_isa_3136adc9d6 (IsA fasciolopsis_buski fluke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fascism is a kind of political orientation", "pln": ["(: cnet_isa_20413f5166 (IsA fascism political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fascist is a kind of adult", "pln": ["(: cnet_isa_05183bf5a8 (IsA fascist adult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fascista is a kind of fascist", "pln": ["(: cnet_isa_6cae329c67 (IsA fascista fascist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fashion is a kind of practice", "pln": ["(: cnet_isa_1a161b361e (IsA fashion practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fashion is a kind of consumer good", "pln": ["(: cnet_isa_491ec6f74a (IsA fashion consumer_good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fashion is a kind of vogue", "pln": ["(: cnet_isa_aa1134e6cc (IsA fashion vogue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fashion consultant is a kind of adviser", "pln": ["(: cnet_isa_ecf4c873f0 (IsA fashion_consultant adviser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fashion plate is a kind of plate", "pln": ["(: cnet_isa_7bb467d792 (IsA fashion_plate plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fast is a kind of abstinence", "pln": ["(: cnet_isa_ed925e8098 (IsA fast abstinence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fast break is a kind of break", "pln": ["(: cnet_isa_ad8cb345d4 (IsA fast_break break) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fast buck is a kind of net income", "pln": ["(: cnet_isa_19ae771d18 (IsA fast_buck net_income) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fast day is a kind of religious holiday", "pln": ["(: cnet_isa_e0e27ccc45 (IsA fast_day religious_holiday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fast food is a kind of nutriment", "pln": ["(: cnet_isa_3a8dc35655 (IsA fast_food nutriment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fast food resturant is a kind of resturant", "pln": ["(: cnet_isa_bfea37e503 (IsA fast_food_resturant resturant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fast lane is a kind of traffic lane", "pln": ["(: cnet_isa_8a67390c66 (IsA fast_lane traffic_lane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fast lane is a kind of life style", "pln": ["(: cnet_isa_4abc75fb30 (IsA fast_lane life_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fast of esther is a kind of minor fast day", "pln": ["(: cnet_isa_d7876fe3be (IsA fast_of_esther minor_fast_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fast of firstborn is a kind of minor fast day", "pln": ["(: cnet_isa_6b7ed39555 (IsA fast_of_firstborn minor_fast_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fast of gedaliah is a kind of minor fast day", "pln": ["(: cnet_isa_529e567fec (IsA fast_of_gedaliah minor_fast_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fast of tammuz is a kind of minor fast day", "pln": ["(: cnet_isa_b4ea81460a (IsA fast_of_tammuz minor_fast_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fast of tevet is a kind of minor fast day", "pln": ["(: cnet_isa_9028814a07 (IsA fast_of_tevet minor_fast_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fast reactor is a kind of nuclear reactor", "pln": ["(: cnet_isa_52b1ba2634 (IsA fast_reactor nuclear_reactor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fast time scale is a kind of time scale", "pln": ["(: cnet_isa_afdc32d687 (IsA fast_time_scale time_scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fast track is a kind of mean", "pln": ["(: cnet_isa_eab85deb7d (IsA fast_track mean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fastball is a kind of pitch", "pln": ["(: cnet_isa_5e974869de (IsA fastball pitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fastener is a kind of restraint", "pln": ["(: cnet_isa_13fea24a87 (IsA fastener restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fastener is a kind of person", "pln": ["(: cnet_isa_b3c5be943e (IsA fastener person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fastening is a kind of joining", "pln": ["(: cnet_isa_790739d456 (IsA fastening joining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fastidiousness is a kind of cleanliness", "pln": ["(: cnet_isa_c46a293dd3 (IsA fastidiousness cleanliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fastnacht is a kind of raised doughnut", "pln": ["(: cnet_isa_dcb975a263 (IsA fastnacht raised_doughnut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fastness is a kind of immovability", "pln": ["(: cnet_isa_ec62c797b8 (IsA fastness immovability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fat is a kind of lipid", "pln": ["(: cnet_isa_8fbeff2ff7 (IsA fat lipid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fat cat is a kind of rich person", "pln": ["(: cnet_isa_64dc7d1bb3 (IsA fat_cat rich_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fat cell is a kind of somatic cell", "pln": ["(: cnet_isa_b228f2ea7d (IsA fat_cell somatic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fat chance is a kind of probability", "pln": ["(: cnet_isa_a861d041f8 (IsA fat_chance probability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fat embolism is a kind of embolism", "pln": ["(: cnet_isa_34d63be4b7 (IsA fat_embolism embolism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fat farm is a kind of health spa", "pln": ["(: cnet_isa_00fce32e98 (IsA fat_farm health_spa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fat metabolism is a kind of metabolism", "pln": ["(: cnet_isa_06b92afdf4 (IsA fat_metabolism metabolism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fat soluble vitamin is a kind of vitamin", "pln": ["(: cnet_isa_cdfbaab045 (IsA fat_soluble_vitamin vitamin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fata morgana is a kind of mirage", "pln": ["(: cnet_isa_7bf804f17f (IsA fata_morgana mirage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fatal accident is a kind of accident", "pln": ["(: cnet_isa_6582e9a4c6 (IsA fatal_accident accident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fatal accident is a kind of fatality", "pln": ["(: cnet_isa_8b23009540 (IsA fatal_accident fatality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fatalism is a kind of credence", "pln": ["(: cnet_isa_8dbc29a459 (IsA fatalism credence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fatalism is a kind of determinism", "pln": ["(: cnet_isa_d06775f61f (IsA fatalism determinism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fatalist is a kind of necessitarian", "pln": ["(: cnet_isa_5bc0905248 (IsA fatalist necessitarian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fatality is a kind of deadliness", "pln": ["(: cnet_isa_ce6cbec020 (IsA fatality deadliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fatality is a kind of death", "pln": ["(: cnet_isa_9beb383cfc (IsA fatality death) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fatback is a kind of salt pork", "pln": ["(: cnet_isa_31c7253552 (IsA fatback salt_pork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fate is a kind of causal agent", "pln": ["(: cnet_isa_71d00aaa27 (IsA fate causal_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "fatigue is a kind of deadly problem on australian roads", "pln": ["(: cnet_isa_581c8fb4f3 (IsA fatigue deadly_problem_on_australian_roads) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fathead is a kind of fool", "pln": ["(: cnet_isa_6d60ba51bf (IsA fathead fool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "father s day is a kind of day", "pln": ["(: cnet_isa_52d3ee346c (IsA father_s_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "father is a kind of parent", "pln": ["(: cnet_isa_e400f9af4c (IsA father parent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "father is a kind of leader", "pln": ["(: cnet_isa_030d833b8d (IsA father leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "father figure is a kind of man", "pln": ["(: cnet_isa_d3e8e3ea98 (IsA father_figure man) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "father in law is a kind of father", "pln": ["(: cnet_isa_71055fa203 (IsA father_in_law father) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "father in law is a kind of in law", "pln": ["(: cnet_isa_a7ebb77a54 (IsA father_in_law in_law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "father of church is a kind of theologian", "pln": ["(: cnet_isa_4174ec2d79 (IsA father_of_church theologian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fatherhood is a kind of position", "pln": ["(: cnet_isa_0284099dbe (IsA fatherhood position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fatherhood is a kind of kinship", "pln": ["(: cnet_isa_bb0a5af385 (IsA fatherhood kinship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fatherland is a kind of country", "pln": ["(: cnet_isa_f467997953 (IsA fatherland country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fatherliness is a kind of parental quality", "pln": ["(: cnet_isa_0aeef95a83 (IsA fatherliness parental_quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fathom is a kind of volume unit", "pln": ["(: cnet_isa_b6d587dbd6 (IsA fathom volume_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fathom is a kind of linear unit", "pln": ["(: cnet_isa_8dbd9f73b0 (IsA fathom linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fatigability is a kind of weakness", "pln": ["(: cnet_isa_561beeae79 (IsA fatigability weakness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fatigue is a kind of deadly problem on australian road", "pln": ["(: cnet_isa_66c90ddf1a (IsA fatigue deadly_problem_on_australian_road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fatigue is a kind of boredom", "pln": ["(: cnet_isa_f72b0067a3 (IsA fatigue boredom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fatigue is a kind of failing", "pln": ["(: cnet_isa_2fa848ae7f (IsA fatigue failing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fatigue is a kind of temporary state", "pln": ["(: cnet_isa_d8caa84591 (IsA fatigue temporary_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fatigue crack is a kind of crack", "pln": ["(: cnet_isa_4ad511a672 (IsA fatigue_crack crack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fatigue duty is a kind of assignment", "pln": ["(: cnet_isa_b53f3be932 (IsA fatigue_duty assignment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fatigue fracture is a kind of fracture", "pln": ["(: cnet_isa_42e7cec22b (IsA fatigue_fracture fracture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fatigue party is a kind of party", "pln": ["(: cnet_isa_e284f16904 (IsA fatigue_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fatigue is a kind of military uniform", "pln": ["(: cnet_isa_07a29917be (IsA fatigue military_uniform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fatness is a kind of bodily property", "pln": ["(: cnet_isa_04306a0f49 (IsA fatness bodily_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fatso is a kind of large person", "pln": ["(: cnet_isa_2aef130e96 (IsA fatso large_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fattism is a kind of discrimination", "pln": ["(: cnet_isa_7bc48f0bcc (IsA fattism discrimination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fatty acid is a kind of carboxylic acid", "pln": ["(: cnet_isa_6945bd299f (IsA fatty_acid carboxylic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fatty liver is a kind of liver disease", "pln": ["(: cnet_isa_9e7341b6d2 (IsA fatty_liver liver_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fatwa is a kind of opinion", "pln": ["(: cnet_isa_4874402132 (IsA fatwa opinion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fatwah is a kind of opinion", "pln": ["(: cnet_isa_a029219b7c (IsA fatwah opinion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "faubourg is a kind of suburb", "pln": ["(: cnet_isa_4f2854e613 (IsA faubourg suburb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fauce is a kind of passage", "pln": ["(: cnet_isa_4e83e63bfa (IsA fauce passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "faucet is a kind of regulator", "pln": ["(: cnet_isa_8ddb68ffae (IsA faucet regulator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fauld is a kind of armor plate", "pln": ["(: cnet_isa_53fff3281b (IsA fauld armor_plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fault is a kind of responsibility", "pln": ["(: cnet_isa_b9c2245693 (IsA fault responsibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fault is a kind of breakdown", "pln": ["(: cnet_isa_b41d08fa65 (IsA fault breakdown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fault is a kind of crack", "pln": ["(: cnet_isa_1dbfb65c08 (IsA fault crack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fault is a kind of serve", "pln": ["(: cnet_isa_c99273700c (IsA fault serve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fault line is a kind of line", "pln": ["(: cnet_isa_8628b990ff (IsA fault_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "faultfinding is a kind of criticism", "pln": ["(: cnet_isa_50678ca782 (IsA faultfinding criticism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "faultlessness is a kind of correctness", "pln": ["(: cnet_isa_86cea6bdb2 (IsA faultlessness correctness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "faun is a kind of roman deity", "pln": ["(: cnet_isa_c98e3397c1 (IsA faun roman_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fauna is a kind of collection", "pln": ["(: cnet_isa_c129f3fd41 (IsA fauna collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fauteuil is a kind of armchair", "pln": ["(: cnet_isa_48768afa13 (IsA fauteuil armchair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fauvism is a kind of artistic movement", "pln": ["(: cnet_isa_dc0f4e42a9 (IsA fauvism artistic_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fauvist is a kind of painter", "pln": ["(: cnet_isa_99066c96be (IsA fauvist painter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "faux pas is a kind of blunder", "pln": ["(: cnet_isa_90a5a669ae (IsA faux_pas blunder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fava bean is a kind of shell bean", "pln": ["(: cnet_isa_071445eed1 (IsA fava_bean shell_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "favism is a kind of anemia", "pln": ["(: cnet_isa_efe7c89077 (IsA favism anemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "favor is a kind of kindness", "pln": ["(: cnet_isa_00cc1e3bb2 (IsA favor kindness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "favor is a kind of advantage", "pln": ["(: cnet_isa_c7979943b5 (IsA favor advantage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "favor is a kind of inclination", "pln": ["(: cnet_isa_4a6e4990d4 (IsA favor inclination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "favor is a kind of approval", "pln": ["(: cnet_isa_0a6aa4a293 (IsA favor approval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "favorableness is a kind of advantage", "pln": ["(: cnet_isa_1ab8a81874 (IsA favorableness advantage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "favorite is a kind of choice", "pln": ["(: cnet_isa_d932c477f2 (IsA favorite choice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "favorite son is a kind of campaigner", "pln": ["(: cnet_isa_03aa9aaa1e (IsA favorite_son campaigner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "favoritism is a kind of inclination", "pln": ["(: cnet_isa_51a7c66f2f (IsA favoritism inclination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "favus is a kind of fungal infection", "pln": ["(: cnet_isa_7278afd05a (IsA favus fungal_infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fawn is a kind of deer", "pln": ["(: cnet_isa_bb8fb87a3e (IsA fawn deer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fawn is a kind of young mammal", "pln": ["(: cnet_isa_62ce981c3b (IsA fawn young_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fawn lily is a kind of dogtooth violet", "pln": ["(: cnet_isa_4ee05bcec6 (IsA fawn_lily dogtooth_violet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fear is a kind of emotion", "pln": ["(: cnet_isa_a31b923858 (IsA fear emotion) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fearfulness is a kind of cowardice", "pln": ["(: cnet_isa_1d9b5bc5ee (IsA fearfulness cowardice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fearlessness is a kind of courage", "pln": ["(: cnet_isa_eaef289e85 (IsA fearlessness courage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fearlessness is a kind of feeling", "pln": ["(: cnet_isa_6df8d3c119 (IsA fearlessness feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feasibility is a kind of practicability", "pln": ["(: cnet_isa_ac84d3f6c2 (IsA feasibility practicability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feast is a kind of thing", "pln": ["(: cnet_isa_f5015944a0 (IsA feast thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feast day is a kind of holiday", "pln": ["(: cnet_isa_3e3de9508a (IsA feast_day holiday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feasting is a kind of eating", "pln": ["(: cnet_isa_cd399fb7d8 (IsA feasting eating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feather is a kind of rotation", "pln": ["(: cnet_isa_3942e22d79 (IsA feather rotation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feather is a kind of animal material", "pln": ["(: cnet_isa_7cd64878f2 (IsA feather animal_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "feather is a kind of body covering", "pln": ["(: cnet_isa_424d5a890c (IsA feather body_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "feather ball is a kind of cactus", "pln": ["(: cnet_isa_c70f762511 (IsA feather_ball cactus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feather bed is a kind of mattress", "pln": ["(: cnet_isa_45e7fc5176 (IsA feather_bed mattress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feather boa is a kind of scarf", "pln": ["(: cnet_isa_a233fa6283 (IsA feather_boa scarf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feather palm is a kind of palm", "pln": ["(: cnet_isa_8e544a0820 (IsA feather_palm palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feather reed grass is a kind of reed grass", "pln": ["(: cnet_isa_52ca4f5178 (IsA feather_reed_grass reed_grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feather star is a kind of crinoid", "pln": ["(: cnet_isa_e204947b05 (IsA feather_star crinoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "featherbedding is a kind of practice", "pln": ["(: cnet_isa_550ba917cc (IsA featherbedding practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "featheredge is a kind of edge", "pln": ["(: cnet_isa_5b580af769 (IsA featheredge edge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "featherfoil is a kind of aquatic plant", "pln": ["(: cnet_isa_c3f27f2390 (IsA featherfoil aquatic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feathertop is a kind of grass", "pln": ["(: cnet_isa_0de49de9ae (IsA feathertop grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "featherweight is a kind of boxer", "pln": ["(: cnet_isa_e8a3c65183 (IsA featherweight boxer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "featherweight is a kind of prizefighter", "pln": ["(: cnet_isa_a4954160a0 (IsA featherweight prizefighter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "featherweight is a kind of wrestler", "pln": ["(: cnet_isa_f1672eb507 (IsA featherweight wrestler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feature is a kind of merchandise", "pln": ["(: cnet_isa_b851c4b9b7 (IsA feature merchandise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feature is a kind of body part", "pln": ["(: cnet_isa_cc93a7daeb (IsA feature body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feature is a kind of property", "pln": ["(: cnet_isa_f9f23d69a4 (IsA feature property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feature is a kind of article", "pln": ["(: cnet_isa_20c05539e0 (IsA feature article) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feature is a kind of movie", "pln": ["(: cnet_isa_8ccc19b2e7 (IsA feature movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feature of speech is a kind of property", "pln": ["(: cnet_isa_c59f0a37fa (IsA feature_of_speech property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "february is a kind of gregorian calendar month", "pln": ["(: cnet_isa_40adc11820 (IsA february gregorian_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fecal impaction is a kind of constipation", "pln": ["(: cnet_isa_d9f22d47b1 (IsA fecal_impaction constipation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fecal matter is a kind of body waste", "pln": ["(: cnet_isa_38d2724d50 (IsA fecal_matter body_waste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fecal occult test is a kind of diagnostic test", "pln": ["(: cnet_isa_7e2b8ea6e8 (IsA fecal_occult_test diagnostic_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fechner s law is a kind of law", "pln": ["(: cnet_isa_14c778daa3 (IsA fechner_s_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fecklessness is a kind of worthlessness", "pln": ["(: cnet_isa_4862092403 (IsA fecklessness worthlessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fecula is a kind of body waste", "pln": ["(: cnet_isa_b4053ab324 (IsA fecula body_waste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feculence is a kind of dirtiness", "pln": ["(: cnet_isa_85d5c43f06 (IsA feculence dirtiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fecundity is a kind of creativity", "pln": ["(: cnet_isa_755822a9e2 (IsA fecundity creativity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fedayeen is a kind of paramilitary", "pln": ["(: cnet_isa_84f9a17dfd (IsA fedayeen paramilitary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fedayeen saddam is a kind of paramilitary", "pln": ["(: cnet_isa_b251700528 (IsA fedayeen_saddam paramilitary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fedelline is a kind of pasta", "pln": ["(: cnet_isa_f14c33a4e5 (IsA fedelline pasta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "federal aviation agency is a kind of agency", "pln": ["(: cnet_isa_31dcd9f45d (IsA federal_aviation_agency agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federal bureau of investigation is a kind of law enforcement agency", "pln": ["(: cnet_isa_82e6be57e6 (IsA federal_bureau_of_investigation law_enforcement_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federal bureau of prison is a kind of law enforcement agency", "pln": ["(: cnet_isa_2dc5ba9c66 (IsA federal_bureau_of_prison law_enforcement_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federal communication commission is a kind of independent agency", "pln": ["(: cnet_isa_7e44d84f1d (IsA federal_communication_commission independent_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federal court is a kind of court", "pln": ["(: cnet_isa_cfcf6ba24f (IsA federal_court court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federal deficit is a kind of budget deficit", "pln": ["(: cnet_isa_661f75d8d8 (IsA federal_deficit budget_deficit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federal department is a kind of government department", "pln": ["(: cnet_isa_98d4516c1a (IsA federal_department government_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "federal deposit insurance corporation is a kind of corporation", "pln": ["(: cnet_isa_49a3441907 (IsA federal_deposit_insurance_corporation corporation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federal district is a kind of administrative district", "pln": ["(: cnet_isa_1e95431d52 (IsA federal_district administrative_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federal emergency management agency is a kind of independent agency", "pln": ["(: cnet_isa_c840c03d2c (IsA federal_emergency_management_agency independent_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federal government is a kind of government", "pln": ["(: cnet_isa_6f70318924 (IsA federal_government government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federal home loan bank system is a kind of financial institution", "pln": ["(: cnet_isa_9863b7b0f3 (IsA federal_home_loan_bank_system financial_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federal home loan mortgage corporation is a kind of corporation", "pln": ["(: cnet_isa_f4f63a9de7 (IsA federal_home_loan_mortgage_corporation corporation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federal housing administration is a kind of agency", "pln": ["(: cnet_isa_628b6d43e2 (IsA federal_housing_administration agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federal judiciary is a kind of judiciary", "pln": ["(: cnet_isa_1ccd34dd76 (IsA federal_judiciary judiciary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federal judiciary is a kind of law enforcement agency", "pln": ["(: cnet_isa_ecc5436021 (IsA federal_judiciary law_enforcement_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federal law enforcement training center is a kind of law enforcement agency", "pln": ["(: cnet_isa_e9885237c4 (IsA federal_law_enforcement_training_center law_enforcement_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federal national mortgage association is a kind of corporation", "pln": ["(: cnet_isa_83d3545ae5 (IsA federal_national_mortgage_association corporation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federal official is a kind of agent", "pln": ["(: cnet_isa_aea9db35ff (IsA federal_official agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federal protective service is a kind of independent agency", "pln": ["(: cnet_isa_82ffa24af2 (IsA federal_protective_service independent_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federal reserve bank is a kind of depository financial institution", "pln": ["(: cnet_isa_353087280c (IsA federal_reserve_bank depository_financial_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "federal reserve board is a kind of board", "pln": ["(: cnet_isa_2621cfc600 (IsA federal_reserve_board board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federal reserve system is a kind of central bank", "pln": ["(: cnet_isa_6afd204b0a (IsA federal_reserve_system central_bank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federal saving bank is a kind of saving bank", "pln": ["(: cnet_isa_0be4071495 (IsA federal_saving_bank saving_bank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "federal security bureau is a kind of russian agency", "pln": ["(: cnet_isa_a58cddac4a (IsA federal_security_bureau russian_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federal soldier is a kind of yank", "pln": ["(: cnet_isa_28c5fdfc2c (IsA federal_soldier yank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federal tax lien is a kind of tax lien", "pln": ["(: cnet_isa_f6bf72170e (IsA federal_tax_lien tax_lien) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federal trade commission is a kind of independent agency", "pln": ["(: cnet_isa_c818e3489d (IsA federal_trade_commission independent_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federalism is a kind of political orientation", "pln": ["(: cnet_isa_fde8e3d402 (IsA federalism political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federalist is a kind of advocate", "pln": ["(: cnet_isa_fc2d0920d8 (IsA federalist advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federalist is a kind of politician", "pln": ["(: cnet_isa_f9ac391cf8 (IsA federalist politician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federalist party is a kind of party", "pln": ["(: cnet_isa_630a94aa55 (IsA federalist_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federalization is a kind of control", "pln": ["(: cnet_isa_d093b4aef1 (IsA federalization control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federalization is a kind of coalition", "pln": ["(: cnet_isa_4d4be439e8 (IsA federalization coalition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federation is a kind of constitution", "pln": ["(: cnet_isa_08476dc476 (IsA federation constitution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "federation is a kind of organization", "pln": ["(: cnet_isa_bc2a21623a (IsA federation organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fedora is a kind of hat", "pln": ["(: cnet_isa_bf0d782add (IsA fedora hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fee is a kind of fixed charge", "pln": ["(: cnet_isa_04ba4fe54c (IsA fee fixed_charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fee is a kind of interest", "pln": ["(: cnet_isa_f9bba2a283 (IsA fee interest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fee simple is a kind of fee", "pln": ["(: cnet_isa_40234bf7ad (IsA fee_simple fee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fee splitting is a kind of payment", "pln": ["(: cnet_isa_483af81c98 (IsA fee_splitting payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fee tail is a kind of fee", "pln": ["(: cnet_isa_009938dd20 (IsA fee_tail fee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feeblemindedness is a kind of abnormality", "pln": ["(: cnet_isa_4e484ee7b6 (IsA feeblemindedness abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feebleness is a kind of weakness", "pln": ["(: cnet_isa_69cd8f1879 (IsA feebleness weakness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "feed is a kind of food", "pln": ["(: cnet_isa_83a2aa847c (IsA feed food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feed grain is a kind of feed", "pln": ["(: cnet_isa_07461fb4a9 (IsA feed_grain feed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feedback is a kind of answer", "pln": ["(: cnet_isa_7c2140f5b6 (IsA feedback answer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feedback is a kind of natural process", "pln": ["(: cnet_isa_2e75edb378 (IsA feedback natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feedback circuit is a kind of circuit", "pln": ["(: cnet_isa_2faaddfaaa (IsA feedback_circuit circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feeder is a kind of animal", "pln": ["(: cnet_isa_9d0d4a287a (IsA feeder animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feeder is a kind of domestic animal", "pln": ["(: cnet_isa_21a2586f08 (IsA feeder domestic_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feeder is a kind of branch", "pln": ["(: cnet_isa_088649776f (IsA feeder branch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feeder line is a kind of path", "pln": ["(: cnet_isa_b099b06ba4 (IsA feeder_line path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feeding is a kind of provision", "pln": ["(: cnet_isa_9f558a6132 (IsA feeding provision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feedlot is a kind of building", "pln": ["(: cnet_isa_b59aa048ce (IsA feedlot building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feedstock is a kind of raw material", "pln": ["(: cnet_isa_9221ec89e1 (IsA feedstock raw_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feel is a kind of foreplay", "pln": ["(: cnet_isa_7928abf440 (IsA feel foreplay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feel is a kind of awareness", "pln": ["(: cnet_isa_af00df1228 (IsA feel awareness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feeling is a kind of state", "pln": ["(: cnet_isa_8523b9dbf7 (IsA feeling state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feeling is a kind of intuition", "pln": ["(: cnet_isa_49675cfa5b (IsA feeling intuition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feeling is a kind of somesthesia", "pln": ["(: cnet_isa_4446029b34 (IsA feeling somesthesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feeling dominated is a kind of threat control override symptom", "pln": ["(: cnet_isa_129028bc5a (IsA feeling_dominated threat_control_override_symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feeling is a kind of not", "pln": ["(: cnet_isa_42781580b1 (IsA feeling not) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feeling is a kind of not fact", "pln": ["(: cnet_isa_77cc3a763e (IsA feeling not_fact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feeling is a kind of sensitivity", "pln": ["(: cnet_isa_5cda5296e4 (IsA feeling sensitivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fehling s solution is a kind of solution", "pln": ["(: cnet_isa_a9fa5391ad (IsA fehling_s_solution solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feijoa is a kind of edible fruit", "pln": ["(: cnet_isa_0db91d31a9 (IsA feijoa edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feijoa is a kind of shrub", "pln": ["(: cnet_isa_72abb7d794 (IsA feijoa shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feint is a kind of maneuver", "pln": ["(: cnet_isa_8129a47081 (IsA feint maneuver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feist is a kind of cur", "pln": ["(: cnet_isa_55f67e6eef (IsA feist cur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feldspar is a kind of spar", "pln": ["(: cnet_isa_121745066c (IsA feldspar spar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "felicia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_86c15beed8 (IsA felicia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "felicity is a kind of appropriateness", "pln": ["(: cnet_isa_95f7fcd3a8 (IsA felicity appropriateness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "felidae is a kind of mammal family", "pln": ["(: cnet_isa_c4249cfb2f (IsA felidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feline is a kind of carnivore", "pln": ["(: cnet_isa_d562e056c9 (IsA feline carnivore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "felis is a kind of mammal genus", "pln": ["(: cnet_isa_cabd49ae8d (IsA felis mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fell is a kind of killing", "pln": ["(: cnet_isa_4d34c4085a (IsA fell killing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fell is a kind of seam", "pln": ["(: cnet_isa_00ef363bfc (IsA fell seam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fellah is a kind of peasant", "pln": ["(: cnet_isa_3e0dd3114a (IsA fellah peasant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fellata is a kind of african", "pln": ["(: cnet_isa_1cb50739ed (IsA fellata african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fellatio is a kind of oral sex", "pln": ["(: cnet_isa_723d0d7027 (IsA fellatio oral_sex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "felloe is a kind of rim", "pln": ["(: cnet_isa_d2b6c4af82 (IsA felloe rim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fellow is a kind of man", "pln": ["(: cnet_isa_fe2e1cc867 (IsA fellow man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fellow is a kind of member", "pln": ["(: cnet_isa_f9c7c806cc (IsA fellow member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fellow is a kind of singleton", "pln": ["(: cnet_isa_5771d08d0e (IsA fellow singleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fellow traveler is a kind of sympathizer", "pln": ["(: cnet_isa_f5c0f8defd (IsA fellow_traveler sympathizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fellowship is a kind of financial aid", "pln": ["(: cnet_isa_dd9e17689c (IsA fellowship financial_aid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fellowship is a kind of prize", "pln": ["(: cnet_isa_a1a97b88c3 (IsA fellowship prize) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "felo de se is a kind of suicide", "pln": ["(: cnet_isa_e5a679b66d (IsA felo_de_se suicide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "felon is a kind of infection", "pln": ["(: cnet_isa_0a3c65b7f2 (IsA felon infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "felony is a kind of crime", "pln": ["(: cnet_isa_87a18b107d (IsA felony crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "felt is a kind of very soft kind of fabric", "pln": ["(: cnet_isa_ea7d4a095f (IsA felt very_soft_kind_of_fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "felt is a kind of fabric", "pln": ["(: cnet_isa_5685182c85 (IsA felt fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "felt fern is a kind of fern", "pln": ["(: cnet_isa_d4d00d1b55 (IsA felt_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "felt fungus is a kind of fungus", "pln": ["(: cnet_isa_9343446b0e (IsA felt_fungus fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "felt tip pen is a kind of pen", "pln": ["(: cnet_isa_9960f83224 (IsA felt_tip_pen pen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "felucca is a kind of sailing vessel", "pln": ["(: cnet_isa_e0f6954322 (IsA felucca sailing_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "felwort is a kind of gentian", "pln": ["(: cnet_isa_1fb8d3fe2c (IsA felwort gentian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "female is a kind of animal", "pln": ["(: cnet_isa_174eb42c35 (IsA female animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "female is a kind of person", "pln": ["(: cnet_isa_1bc0364b33 (IsA female person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "female aristocrat is a kind of aristocrat", "pln": ["(: cnet_isa_d78b7a93a6 (IsA female_aristocrat aristocrat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "female body is a kind of human body", "pln": ["(: cnet_isa_2020ab7f25 (IsA female_body human_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "female bonding is a kind of bonding", "pln": ["(: cnet_isa_ca7264a8c6 (IsA female_bonding bonding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "female chest is a kind of thorax", "pln": ["(: cnet_isa_a0307a99f9 (IsA female_chest thorax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "female child is a kind of female", "pln": ["(: cnet_isa_3211501e0b (IsA female_child female) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "female genitalia is a kind of genitalia", "pln": ["(: cnet_isa_0eeaac729f (IsA female_genitalia genitalia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "female internal reproductive organ is a kind of reproductive organ", "pln": ["(: cnet_isa_096d8610b8 (IsA female_internal_reproductive_organ reproductive_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "female mammal is a kind of female", "pln": ["(: cnet_isa_5780ceb3c1 (IsA female_mammal female) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "female mammal is a kind of mammal", "pln": ["(: cnet_isa_2331ae230d (IsA female_mammal mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "female offspring is a kind of child", "pln": ["(: cnet_isa_ba5ac41823 (IsA female_offspring child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "female offspring is a kind of female", "pln": ["(: cnet_isa_5d12f5936d (IsA female_offspring female) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "female reproductive system is a kind of reproductive system", "pln": ["(: cnet_isa_fadb211b3a (IsA female_reproductive_system reproductive_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "female sibling is a kind of kinswoman", "pln": ["(: cnet_isa_a1253f0098 (IsA female_sibling kinswoman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "femaleness is a kind of sex", "pln": ["(: cnet_isa_21744b0860 (IsA femaleness sex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feminine is a kind of gender", "pln": ["(: cnet_isa_38f173ce69 (IsA feminine gender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "femininity is a kind of trait", "pln": ["(: cnet_isa_69d1692cff (IsA femininity trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feminism is a kind of political ideology", "pln": ["(: cnet_isa_0c57451015 (IsA feminism political_ideology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feminism is a kind of doctrine", "pln": ["(: cnet_isa_38a8e1bd05 (IsA feminism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feminist is a kind of reformer", "pln": ["(: cnet_isa_38f19a7b5e (IsA feminist reformer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feminist movement is a kind of campaign", "pln": ["(: cnet_isa_7994560685 (IsA feminist_movement campaign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feminization is a kind of pathologic process", "pln": ["(: cnet_isa_5a7588f771 (IsA feminization pathologic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "femoral artery is a kind of artery", "pln": ["(: cnet_isa_4cef80d65e (IsA femoral_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "femoral nerve is a kind of spinal nerve", "pln": ["(: cnet_isa_5931ca4aa0 (IsA femoral_nerve spinal_nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "femoral pulse is a kind of pulse", "pln": ["(: cnet_isa_c7199163a6 (IsA femoral_pulse pulse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "femoral vein is a kind of vein", "pln": ["(: cnet_isa_0bd614ab65 (IsA femoral_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "femtochemistry is a kind of chemistry", "pln": ["(: cnet_isa_e59fbe17e8 (IsA femtochemistry chemistry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "femtometer is a kind of metric linear unit", "pln": ["(: cnet_isa_4d532d5c24 (IsA femtometer metric_linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "femtosecond is a kind of time unit", "pln": ["(: cnet_isa_ab8af16a60 (IsA femtosecond time_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "femtovolt is a kind of potential unit", "pln": ["(: cnet_isa_b0990ea143 (IsA femtovolt potential_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "femur is a kind of leg bone", "pln": ["(: cnet_isa_39ebf0e6b3 (IsA femur leg_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fen is a kind of chinese monetary unit", "pln": ["(: cnet_isa_3b4ee29783 (IsA fen chinese_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fen orchid is a kind of orchid", "pln": ["(: cnet_isa_2e9b20234b (IsA fen_orchid orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fence is a kind of barrier", "pln": ["(: cnet_isa_22e0537e83 (IsA fence barrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fence is a kind of trader", "pln": ["(: cnet_isa_beef5f87cb (IsA fence trader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fence line is a kind of boundary line", "pln": ["(: cnet_isa_d20a6a3ec4 (IsA fence_line boundary_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fence lizard is a kind of spiny lizard", "pln": ["(: cnet_isa_f51cfbcd11 (IsA fence_lizard spiny_lizard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fence mending is a kind of social action", "pln": ["(: cnet_isa_e0ba13179f (IsA fence_mending social_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fence sitter is a kind of neutral", "pln": ["(: cnet_isa_ed4cbd9ae5 (IsA fence_sitter neutral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fencer is a kind of combatant", "pln": ["(: cnet_isa_4487955323 (IsA fencer combatant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fencing is a kind of olympic sport", "pln": ["(: cnet_isa_4c851270ee (IsA fencing olympic_sport) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fencing is a kind of fight", "pln": ["(: cnet_isa_14474d8308 (IsA fencing fight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fencing is a kind of play", "pln": ["(: cnet_isa_4f525437ef (IsA fencing play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fencing mask is a kind of face mask", "pln": ["(: cnet_isa_4ea51950d5 (IsA fencing_mask face_mask) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fencing material is a kind of building material", "pln": ["(: cnet_isa_315b424422 (IsA fencing_material building_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fencing sword is a kind of sword", "pln": ["(: cnet_isa_b6140539bb (IsA fencing_sword sword) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fender is a kind of barrier", "pln": ["(: cnet_isa_0eb06275a8 (IsA fender barrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fender is a kind of framework", "pln": ["(: cnet_isa_cf8812e528 (IsA fender framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fender is a kind of guard", "pln": ["(: cnet_isa_4625e046e6 (IsA fender guard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fender bender is a kind of collision", "pln": ["(: cnet_isa_8104507a3d (IsA fender_bender collision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fenestra is a kind of orifice", "pln": ["(: cnet_isa_339cd2c31a (IsA fenestra orifice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fenestra ovalis is a kind of fenestra", "pln": ["(: cnet_isa_885c2ff9bd (IsA fenestra_ovalis fenestra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fenestra rotunda is a kind of fenestra", "pln": ["(: cnet_isa_1bdcef13d4 (IsA fenestra_rotunda fenestra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fenestration is a kind of placement", "pln": ["(: cnet_isa_1b252f7c07 (IsA fenestration placement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fenestration is a kind of operation", "pln": ["(: cnet_isa_c209a98659 (IsA fenestration operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feng shui is a kind of principle", "pln": ["(: cnet_isa_69a7195eab (IsA feng_shui principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fennel is a kind of herb", "pln": ["(: cnet_isa_497e160cf7 (IsA fennel herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fennel is a kind of spice", "pln": ["(: cnet_isa_a84f7f89d1 (IsA fennel spice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fennel is a kind of vegetable", "pln": ["(: cnet_isa_e599ce32a2 (IsA fennel vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fennel flower is a kind of nigella", "pln": ["(: cnet_isa_380cc8fd07 (IsA fennel_flower nigella) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fennel seed is a kind of flavorer", "pln": ["(: cnet_isa_92be7de401 (IsA fennel_seed flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fennic is a kind of finno ugric", "pln": ["(: cnet_isa_10f2106a74 (IsA fennic finno_ugric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fenugreek is a kind of flavorer", "pln": ["(: cnet_isa_6bf68dd692 (IsA fenugreek flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fenugreek is a kind of herb", "pln": ["(: cnet_isa_576fed2e9b (IsA fenugreek herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fenusa is a kind of arthropod genus", "pln": ["(: cnet_isa_3c4b0de03b (IsA fenusa arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fer de lance is a kind of pit viper", "pln": ["(: cnet_isa_ef264329df (IsA fer_de_lance pit_viper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fergusonite is a kind of mineral", "pln": ["(: cnet_isa_7326cf5302 (IsA fergusonite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feria is a kind of celebration", "pln": ["(: cnet_isa_51122478fe (IsA feria celebration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "feria is a kind of weekday", "pln": ["(: cnet_isa_df16ae4f54 (IsA feria weekday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fermata is a kind of musical notation", "pln": ["(: cnet_isa_3b04ec0ec5 (IsA fermata musical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fermata is a kind of lengthiness", "pln": ["(: cnet_isa_d57272791a (IsA fermata lengthiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ferment is a kind of substance", "pln": ["(: cnet_isa_4b9b74712d (IsA ferment substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ferment grape juice is a kind of ferment juice", "pln": ["(: cnet_isa_4dc92b5102 (IsA ferment_grape_juice ferment_juice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fermi dirac statistic is a kind of law", "pln": ["(: cnet_isa_e96266b557 (IsA fermi_dirac_statistic law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fermion is a kind of particle", "pln": ["(: cnet_isa_a4f54d8d58 (IsA fermion particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fermium is a kind of metallic element", "pln": ["(: cnet_isa_231358babd (IsA fermium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fern is a kind of pteridophyte", "pln": ["(: cnet_isa_7f477d8224 (IsA fern pteridophyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fern ally is a kind of pteridophyte", "pln": ["(: cnet_isa_6fbf8e2e26 (IsA fern_ally pteridophyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fern family is a kind of family", "pln": ["(: cnet_isa_230494a88a (IsA fern_family family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fern genus is a kind of genus", "pln": ["(: cnet_isa_232cb61648 (IsA fern_genus genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fern seed is a kind of spore", "pln": ["(: cnet_isa_656d80077c (IsA fern_seed spore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ferocactus is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_de4cc8bda8 (IsA ferocactus caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ferociousness is a kind of cruelty", "pln": ["(: cnet_isa_4a0b3b96f8 (IsA ferociousness cruelty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ferocity is a kind of intensity", "pln": ["(: cnet_isa_65ca1446fd (IsA ferocity intensity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ferret is a kind of animal", "pln": ["(: cnet_isa_0410755826 (IsA ferret animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ferret is a kind of wild animal", "pln": ["(: cnet_isa_5e3d8b78a7 (IsA ferret wild_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ferret is a kind of polecat", "pln": ["(: cnet_isa_a6aa984017 (IsA ferret polecat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ferret badger is a kind of badger", "pln": ["(: cnet_isa_ac0dde8e45 (IsA ferret_badger badger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ferric oxide is a kind of oxide", "pln": ["(: cnet_isa_d1aed91563 (IsA ferric_oxide oxide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ferricyanic acid is a kind of acid", "pln": ["(: cnet_isa_1a96585546 (IsA ferricyanic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ferricyanide is a kind of salt", "pln": ["(: cnet_isa_8837139db4 (IsA ferricyanide salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ferrimagnetism is a kind of antiferromagnetism", "pln": ["(: cnet_isa_2a93759844 (IsA ferrimagnetism antiferromagnetism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ferris wheel is a kind of ride", "pln": ["(: cnet_isa_c68d16642a (IsA ferris_wheel ride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ferris wheel is a kind of rotating mechanism", "pln": ["(: cnet_isa_eef494b7e5 (IsA ferris_wheel rotating_mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ferrite is a kind of solid solution", "pln": ["(: cnet_isa_829b994d2d (IsA ferrite solid_solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ferritin is a kind of protein", "pln": ["(: cnet_isa_90aa79fe01 (IsA ferritin protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ferrocerium is a kind of pyrophoric alloy", "pln": ["(: cnet_isa_d6d39e8870 (IsA ferrocerium pyrophoric_alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ferrocyanic acid is a kind of acid", "pln": ["(: cnet_isa_fc7b66bcbc (IsA ferrocyanic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ferrocyanide is a kind of salt", "pln": ["(: cnet_isa_d9ab554ead (IsA ferrocyanide salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ferromagnetism is a kind of magnetism", "pln": ["(: cnet_isa_d0dd3d7979 (IsA ferromagnetism magnetism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ferrule is a kind of cap", "pln": ["(: cnet_isa_e3322caeee (IsA ferrule cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ferry is a kind of transportation", "pln": ["(: cnet_isa_149587baed (IsA ferry transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ferry is a kind of boat", "pln": ["(: cnet_isa_cb8a7c1c05 (IsA ferry boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ferryman is a kind of boatman", "pln": ["(: cnet_isa_2c746a59b7 (IsA ferryman boatman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fertile period is a kind of phase", "pln": ["(: cnet_isa_76209d6b67 (IsA fertile_period phase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fertility is a kind of physiological state", "pln": ["(: cnet_isa_d3c07bb4e3 (IsA fertility physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fertility drug is a kind of drug", "pln": ["(: cnet_isa_23b297da96 (IsA fertility_drug drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fertilization is a kind of creation", "pln": ["(: cnet_isa_f83905f157 (IsA fertilization creation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fertilization is a kind of enrichment", "pln": ["(: cnet_isa_99e274bca4 (IsA fertilization enrichment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fertilization membrane is a kind of membrane", "pln": ["(: cnet_isa_4b247bf13d (IsA fertilization_membrane membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fertilizer is a kind of chemical", "pln": ["(: cnet_isa_fa377e1ba6 (IsA fertilizer chemical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ferule is a kind of switch", "pln": ["(: cnet_isa_a96d83849b (IsA ferule switch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fescue is a kind of grass", "pln": ["(: cnet_isa_5adf6c59f8 (IsA fescue grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fesse is a kind of ordinary", "pln": ["(: cnet_isa_768620d363 (IsA fesse ordinary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fester is a kind of sore", "pln": ["(: cnet_isa_c7f074b55c (IsA fester sore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "festering is a kind of bodily process", "pln": ["(: cnet_isa_4586643704 (IsA festering bodily_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "festination is a kind of symptom", "pln": ["(: cnet_isa_56e1a11262 (IsA festination symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "festival is a kind of celebration", "pln": ["(: cnet_isa_3f72941a37 (IsA festival celebration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "festival is a kind of time period", "pln": ["(: cnet_isa_b26e0ecb3f (IsA festival time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "festoon is a kind of curtain", "pln": ["(: cnet_isa_c07996c544 (IsA festoon curtain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "festoon is a kind of embellishment", "pln": ["(: cnet_isa_dc05da30e1 (IsA festoon embellishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "festoon is a kind of flower chain", "pln": ["(: cnet_isa_19d150890c (IsA festoon flower_chain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "festschrift is a kind of memorial", "pln": ["(: cnet_isa_e99ae904ca (IsA festschrift memorial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "festuca is a kind of monocot genus", "pln": ["(: cnet_isa_34c6852796 (IsA festuca monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fetal age is a kind of age", "pln": ["(: cnet_isa_24247cf972 (IsA fetal_age age) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fetal alcohol syndrome is a kind of syndrome", "pln": ["(: cnet_isa_1510139898 (IsA fetal_alcohol_syndrome syndrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fetal circulation is a kind of circulatory system", "pln": ["(: cnet_isa_f6760d3aeb (IsA fetal_circulation circulatory_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fetal distress is a kind of abnormality", "pln": ["(: cnet_isa_8be6ec983d (IsA fetal_distress abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fetal membrane is a kind of membrane", "pln": ["(: cnet_isa_6102348d2f (IsA fetal_membrane membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fetal movement is a kind of motion", "pln": ["(: cnet_isa_32afda35a4 (IsA fetal_movement motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fetch is a kind of action", "pln": ["(: cnet_isa_f6655e330b (IsA fetch action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fete is a kind of party", "pln": ["(: cnet_isa_ac802528dd (IsA fete party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feterita is a kind of grain sorghum", "pln": ["(: cnet_isa_8efa47f7f0 (IsA feterita grain_sorghum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fetid bugbane is a kind of bugbane", "pln": ["(: cnet_isa_eb15f66cf0 (IsA fetid_bugbane bugbane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fetish is a kind of devotion", "pln": ["(: cnet_isa_e5566f0089 (IsA fetish devotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fetish is a kind of sexual desire", "pln": ["(: cnet_isa_3e85426580 (IsA fetish sexual_desire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fetishism is a kind of paraphilia", "pln": ["(: cnet_isa_0ce6eb8bc2 (IsA fetishism paraphilia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fetishism is a kind of belief", "pln": ["(: cnet_isa_d0445b566f (IsA fetishism belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fetishist is a kind of pervert", "pln": ["(: cnet_isa_5a6d19c82c (IsA fetishist pervert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fetlock is a kind of joint", "pln": ["(: cnet_isa_a86e52ba17 (IsA fetlock joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fetlock is a kind of process", "pln": ["(: cnet_isa_6262afc7a1 (IsA fetlock process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fetology is a kind of obstetric", "pln": ["(: cnet_isa_a029f73270 (IsA fetology obstetric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fetometry is a kind of measurement", "pln": ["(: cnet_isa_85914c2d69 (IsA fetometry measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fetoprotein is a kind of antigen", "pln": ["(: cnet_isa_6f99c9663e (IsA fetoprotein antigen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fetoscope is a kind of stethoscope", "pln": ["(: cnet_isa_3677d8d11e (IsA fetoscope stethoscope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fetoscopy is a kind of prenatal diagnosis", "pln": ["(: cnet_isa_7c7e070467 (IsA fetoscopy prenatal_diagnosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fetter is a kind of shackle", "pln": ["(: cnet_isa_a7e793b082 (IsA fetter shackle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fetterbush is a kind of shrub", "pln": ["(: cnet_isa_8434541abd (IsA fetterbush shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fettle is a kind of fitness", "pln": ["(: cnet_isa_c601b18720 (IsA fettle fitness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fettuccine is a kind of pasta", "pln": ["(: cnet_isa_185408fa66 (IsA fettuccine pasta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fettuccine alfredo is a kind of fettuccine", "pln": ["(: cnet_isa_ef13ba2aa8 (IsA fettuccine_alfredo fettuccine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fetus is a kind of vertebrate", "pln": ["(: cnet_isa_e8a24d1614 (IsA fetus vertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feud is a kind of conflict", "pln": ["(: cnet_isa_0e3d8d5c37 (IsA feud conflict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feudal lord is a kind of overlord", "pln": ["(: cnet_isa_f9d12b692c (IsA feudal_lord overlord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feudal lordship is a kind of position", "pln": ["(: cnet_isa_8330ef1194 (IsA feudal_lordship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "feudalism is a kind of social organization", "pln": ["(: cnet_isa_70005ebd59 (IsA feudalism social_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fever is a kind of symptom of many illness", "pln": ["(: cnet_isa_7e9a0944b8 (IsA fever symptom_of_many_illness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fever is a kind of anticipation", "pln": ["(: cnet_isa_43f7c8a5bf (IsA fever anticipation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fever is a kind of symptom", "pln": ["(: cnet_isa_313ada450d (IsA fever symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fever pitch is a kind of excitement", "pln": ["(: cnet_isa_b022b96455 (IsA fever_pitch excitement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fever tree is a kind of acacia", "pln": ["(: cnet_isa_8a2151d5cb (IsA fever_tree acacia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fever tree is a kind of shrub", "pln": ["(: cnet_isa_4974807687 (IsA fever_tree shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fever tree is a kind of tree", "pln": ["(: cnet_isa_27dae63de8 (IsA fever_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feverfew is a kind of herb", "pln": ["(: cnet_isa_6364c1a2bb (IsA feverfew herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "feverroot is a kind of herb", "pln": ["(: cnet_isa_385e36391a (IsA feverroot herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "few is a kind of elite", "pln": ["(: cnet_isa_ef5c40eb92 (IsA few elite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "few flowered leek is a kind of alliaceous plant", "pln": ["(: cnet_isa_73a2d91793 (IsA few_flowered_leek alliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "few women is a kind of mayor", "pln": ["(: cnet_isa_8ab7f192c7 (IsA few_women mayor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fewness is a kind of number", "pln": ["(: cnet_isa_ef25221e8e (IsA fewness number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fez is a kind of cap", "pln": ["(: cnet_isa_61201a43cc (IsA fez cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fiance is a kind of betrothed", "pln": ["(: cnet_isa_1efaf126ea (IsA fiance betrothed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fiancee is a kind of betrothed", "pln": ["(: cnet_isa_89d2c76c10 (IsA fiancee betrothed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fiat money is a kind of paper money", "pln": ["(: cnet_isa_84fab6fa4a (IsA fiat_money paper_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fib is a kind of lie", "pln": ["(: cnet_isa_86344084a9 (IsA fib lie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fibbing is a kind of lying", "pln": ["(: cnet_isa_28c50c3e00 (IsA fibbing lying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fiber is a kind of fabric", "pln": ["(: cnet_isa_dbd8f713e1 (IsA fiber fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fiber is a kind of material", "pln": ["(: cnet_isa_c7a9c3b8cc (IsA fiber material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fiber bundle is a kind of nervous tissue", "pln": ["(: cnet_isa_3843c52074 (IsA fiber_bundle nervous_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fiber optic cable is a kind of cable", "pln": ["(: cnet_isa_4444b8d9e3 (IsA fiber_optic_cable cable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fiber optic transmission system is a kind of communication system", "pln": ["(: cnet_isa_9ebef0b570 (IsA fiber_optic_transmission_system communication_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fiber optic is a kind of transmission", "pln": ["(: cnet_isa_1013dac0e7 (IsA fiber_optic transmission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fiberboard is a kind of wallboard", "pln": ["(: cnet_isa_69d455af23 (IsA fiberboard wallboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fiberglass is a kind of covering material", "pln": ["(: cnet_isa_efdab5e642 (IsA fiberglass covering_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fiberscope is a kind of medical instrument", "pln": ["(: cnet_isa_d6614795c1 (IsA fiberscope medical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fibia is a kind of bone in arm", "pln": ["(: cnet_isa_24adee2f2a (IsA fibia bone_in_arm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fibonacci number is a kind of number", "pln": ["(: cnet_isa_c759330e28 (IsA fibonacci_number number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fibonacci sequence is a kind of sequence", "pln": ["(: cnet_isa_24855d3c25 (IsA fibonacci_sequence sequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fibre is a kind of cell", "pln": ["(: cnet_isa_5afcff4543 (IsA fibre cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fibril is a kind of fiber", "pln": ["(: cnet_isa_109ea4000a (IsA fibril fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fibrillation is a kind of branching", "pln": ["(: cnet_isa_bf3bc12b4a (IsA fibrillation branching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fibrillation is a kind of twitch", "pln": ["(: cnet_isa_80fde4743a (IsA fibrillation twitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fibrin is a kind of protein", "pln": ["(: cnet_isa_c04d76c90a (IsA fibrin protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fibrinase is a kind of coagulation factor", "pln": ["(: cnet_isa_db09d77587 (IsA fibrinase coagulation_factor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fibrinogen is a kind of coagulation factor", "pln": ["(: cnet_isa_008f552c16 (IsA fibrinogen coagulation_factor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fibrinolysis is a kind of dissolution", "pln": ["(: cnet_isa_ad381aa03f (IsA fibrinolysis dissolution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fibrinopeptide is a kind of peptide", "pln": ["(: cnet_isa_3eb6d0b937 (IsA fibrinopeptide peptide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fibroadenoma is a kind of adenoma", "pln": ["(: cnet_isa_532d7ae057 (IsA fibroadenoma adenoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fibroblast is a kind of embryonic cell", "pln": ["(: cnet_isa_b0b4075a85 (IsA fibroblast embryonic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fibrocartilage is a kind of cartilage", "pln": ["(: cnet_isa_568ab452ac (IsA fibrocartilage cartilage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fibrocystic breast disease is a kind of disease", "pln": ["(: cnet_isa_706236d2c2 (IsA fibrocystic_breast_disease disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fibroid tumor is a kind of fibroma", "pln": ["(: cnet_isa_a705cd3d95 (IsA fibroid_tumor fibroma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fibroma is a kind of benign tumor", "pln": ["(: cnet_isa_5744a01f10 (IsA fibroma benign_tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fibromyositis is a kind of inflammation", "pln": ["(: cnet_isa_b391acaef2 (IsA fibromyositis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fibrosis is a kind of pathology", "pln": ["(: cnet_isa_430ca3657d (IsA fibrosis pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fibrositis is a kind of inflammation", "pln": ["(: cnet_isa_bed5b942f4 (IsA fibrositis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fibrous astrocyte is a kind of astrocyte", "pln": ["(: cnet_isa_92ec24f018 (IsA fibrous_astrocyte astrocyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fibrous dysplasia of bone is a kind of dysplasia", "pln": ["(: cnet_isa_01616f32a7 (IsA fibrous_dysplasia_of_bone dysplasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fibrous rooted begonia is a kind of begonia", "pln": ["(: cnet_isa_6ad6cff743 (IsA fibrous_rooted_begonia begonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fibrous tissue is a kind of animal tissue", "pln": ["(: cnet_isa_02871b742e (IsA fibrous_tissue animal_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fibrous tissue is a kind of plant tissue", "pln": ["(: cnet_isa_d49e5689e6 (IsA fibrous_tissue plant_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fibrousness is a kind of quality", "pln": ["(: cnet_isa_aa74828114 (IsA fibrousness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fibula is a kind of leg bone", "pln": ["(: cnet_isa_a3f72762d8 (IsA fibula leg_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fica is a kind of income tax", "pln": ["(: cnet_isa_d731e7d2e6 (IsA fica income_tax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fichu is a kind of scarf", "pln": ["(: cnet_isa_3f98217ec6 (IsA fichu scarf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fiction is a kind of literary composition", "pln": ["(: cnet_isa_c6079cbb89 (IsA fiction literary_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fictional animal is a kind of animal", "pln": ["(: cnet_isa_79d4033f86 (IsA fictional_animal animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fictional character is a kind of imaginary being", "pln": ["(: cnet_isa_e903483e73 (IsA fictional_character imaginary_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fictionalization is a kind of literary composition", "pln": ["(: cnet_isa_ae9b910819 (IsA fictionalization literary_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fictitious name is a kind of name", "pln": ["(: cnet_isa_83edad0d4e (IsA fictitious_name name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ficus is a kind of dicot genus", "pln": ["(: cnet_isa_7ff1e772a6 (IsA ficus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fiddle is a kind of another name for violin", "pln": ["(: cnet_isa_5af32981d9 (IsA fiddle another_name_for_violin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fiddleneck is a kind of scorpionweed", "pln": ["(: cnet_isa_1b82819d45 (IsA fiddleneck scorpionweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fiddler crab is a kind of crab", "pln": ["(: cnet_isa_9fc9260788 (IsA fiddler_crab crab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fiddlestick is a kind of bow", "pln": ["(: cnet_isa_700a924da6 (IsA fiddlestick bow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fidelity is a kind of accuracy", "pln": ["(: cnet_isa_02e5454c06 (IsA fidelity accuracy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fidelity is a kind of quality", "pln": ["(: cnet_isa_f699943697 (IsA fidelity quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fidget is a kind of agitation", "pln": ["(: cnet_isa_00e893e5d0 (IsA fidget agitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fiduciary is a kind of person", "pln": ["(: cnet_isa_88e1dd8893 (IsA fiduciary person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fiduciary duty is a kind of legal duty", "pln": ["(: cnet_isa_c70a4730dc (IsA fiduciary_duty legal_duty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fiduciary relation is a kind of legal relation", "pln": ["(: cnet_isa_2a567aa348 (IsA fiduciary_relation legal_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fief is a kind of estate", "pln": ["(: cnet_isa_bdeb98408a (IsA fief estate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fiefdom is a kind of organization", "pln": ["(: cnet_isa_e952e722b8 (IsA fiefdom organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fiefdom is a kind of domain", "pln": ["(: cnet_isa_f998f42f1b (IsA fiefdom domain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field is a kind of commercial enterprise", "pln": ["(: cnet_isa_0ca87ccbeb (IsA field commercial_enterprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "field is a kind of visual percept", "pln": ["(: cnet_isa_0e90147255 (IsA field visual_percept) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field is a kind of set", "pln": ["(: cnet_isa_3c88e93d27 (IsA field set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field is a kind of geographical area", "pln": ["(: cnet_isa_f24ff81295 (IsA field geographical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field is a kind of region", "pln": ["(: cnet_isa_6122604a34 (IsA field region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field is a kind of tract", "pln": ["(: cnet_isa_b7943c216a (IsA field tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field is a kind of physical phenomenon", "pln": ["(: cnet_isa_f95380b8f0 (IsA field physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field artillery is a kind of artillery", "pln": ["(: cnet_isa_1d51eaeb1c (IsA field_artillery artillery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field bindweed is a kind of bindweed", "pln": ["(: cnet_isa_ffb0dc1aeb (IsA field_bindweed bindweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field brome is a kind of brome", "pln": ["(: cnet_isa_cdc9c0bafc (IsA field_brome brome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field capacity is a kind of volume unit", "pln": ["(: cnet_isa_70037abbcb (IsA field_capacity volume_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "field chickweed is a kind of mouse ear chickweed", "pln": ["(: cnet_isa_4b98cb0350 (IsA field_chickweed mouse_ear_chickweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field coil is a kind of coil", "pln": ["(: cnet_isa_67da4315cd (IsA field_coil coil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field corn is a kind of corn", "pln": ["(: cnet_isa_44bd476c29 (IsA field_corn corn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field corn is a kind of field crop", "pln": ["(: cnet_isa_21ebb5395a (IsA field_corn field_crop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field cricket is a kind of cricket", "pln": ["(: cnet_isa_864c81e85e (IsA field_cricket cricket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field crop is a kind of crop", "pln": ["(: cnet_isa_6b59c197f1 (IsA field_crop crop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field day is a kind of day", "pln": ["(: cnet_isa_2a15a186d9 (IsA field_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field day is a kind of time period", "pln": ["(: cnet_isa_d1a8ec13e1 (IsA field_day time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "field day is a kind of vacation", "pln": ["(: cnet_isa_02286ead3a (IsA field_day vacation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "field effect transistor is a kind of transistor", "pln": ["(: cnet_isa_606fddb6fd (IsA field_effect_transistor transistor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field emission is a kind of emission", "pln": ["(: cnet_isa_75e92f2e8e (IsA field_emission emission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field emission microscope is a kind of electron microscope", "pln": ["(: cnet_isa_db3d6567d7 (IsA field_emission_microscope electron_microscope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field event is a kind of match", "pln": ["(: cnet_isa_aa80ed2276 (IsA field_event match) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field game is a kind of outdoor game", "pln": ["(: cnet_isa_1309a33a0d (IsA field_game outdoor_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field glass is a kind of refracting telescope", "pln": ["(: cnet_isa_630f87bc6b (IsA field_glass refracting_telescope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field goal is a kind of score", "pln": ["(: cnet_isa_777ea7a625 (IsA field_goal score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field grade officer is a kind of commissioned military officer", "pln": ["(: cnet_isa_a06de8f45d (IsA field_grade_officer commissioned_military_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field guide is a kind of guidebook", "pln": ["(: cnet_isa_c28a55bd7e (IsA field_guide guidebook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field hockey is a kind of field game", "pln": ["(: cnet_isa_fd6ed0ed32 (IsA field_hockey field_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field hockey ball is a kind of ball", "pln": ["(: cnet_isa_d98a459e45 (IsA field_hockey_ball ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field hospital is a kind of military hospital", "pln": ["(: cnet_isa_132fcaeec4 (IsA field_hospital military_hospital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field house is a kind of athletic facility", "pln": ["(: cnet_isa_406c809e54 (IsA field_house athletic_facility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field house is a kind of house", "pln": ["(: cnet_isa_13b7100ec5 (IsA field_house house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "field judge is a kind of football official", "pln": ["(: cnet_isa_51e38dbc29 (IsA field_judge football_official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field len is a kind of len", "pln": ["(: cnet_isa_aedc669e14 (IsA field_len len) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field magnet is a kind of magnet", "pln": ["(: cnet_isa_e97e39b1ef (IsA field_magnet magnet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field marshal is a kind of marshall", "pln": ["(: cnet_isa_0d094d3b7c (IsA field_marshal marshall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field mouse is a kind of mouse", "pln": ["(: cnet_isa_792955ecd0 (IsA field_mouse mouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field mustard is a kind of mustard", "pln": ["(: cnet_isa_ccf23dfa22 (IsA field_mustard mustard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field of fire is a kind of tract", "pln": ["(: cnet_isa_5ef36b466a (IsA field_of_fire tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field of honor is a kind of scene", "pln": ["(: cnet_isa_e41f7d38a6 (IsA field_of_honor scene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field pansy is a kind of viola", "pln": ["(: cnet_isa_804488ef8b (IsA field_pansy viola) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "field pea is a kind of pea", "pln": ["(: cnet_isa_9163876eb6 (IsA field_pea pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "field pea is a kind of legume", "pln": ["(: cnet_isa_79b80963d3 (IsA field_pea legume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field pennycress is a kind of pennycress", "pln": ["(: cnet_isa_76bb5d129b (IsA field_pennycress pennycress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "field press censorship is a kind of military censorship", "pln": ["(: cnet_isa_200b4164ce (IsA field_press_censorship military_censorship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field pussytoe is a kind of cat s foot", "pln": ["(: cnet_isa_54fa988400 (IsA field_pussytoe cat_s_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field ration is a kind of ration", "pln": ["(: cnet_isa_41ffe75773 (IsA field_ration ration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field scabious is a kind of scabious", "pln": ["(: cnet_isa_1bc92e809f (IsA field_scabious scabious) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field sequential color television is a kind of color television", "pln": ["(: cnet_isa_437a32e2d7 (IsA field_sequential_color_television color_television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field soybean is a kind of soy", "pln": ["(: cnet_isa_740630c201 (IsA field_soybean soy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field spaniel is a kind of spaniel", "pln": ["(: cnet_isa_a4b6d0dc71 (IsA field_spaniel spaniel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field sparrow is a kind of new world sparrow", "pln": ["(: cnet_isa_e386d326ec (IsA field_sparrow new_world_sparrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field speedwell is a kind of veronica", "pln": ["(: cnet_isa_8f328c8d61 (IsA field_speedwell veronica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field strength is a kind of intensity", "pln": ["(: cnet_isa_39bfc26492 (IsA field_strength intensity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field strength unit is a kind of electromagnetic unit", "pln": ["(: cnet_isa_5a9f2c9202 (IsA field_strength_unit electromagnetic_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field tent is a kind of canva tent", "pln": ["(: cnet_isa_823c7a43ee (IsA field_tent canva_tent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field theory is a kind of theory", "pln": ["(: cnet_isa_65ed66bf8e (IsA field_theory theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field thistle is a kind of thistle", "pln": ["(: cnet_isa_0a115ee6c8 (IsA field_thistle thistle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field trial is a kind of test", "pln": ["(: cnet_isa_b4759d5b48 (IsA field_trial test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field trial is a kind of trial", "pln": ["(: cnet_isa_05c003638c (IsA field_trial trial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field trial is a kind of contest", "pln": ["(: cnet_isa_b901ee76c7 (IsA field_trial contest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field trip is a kind of excursion", "pln": ["(: cnet_isa_8074e1f87b (IsA field_trip excursion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field work is a kind of research", "pln": ["(: cnet_isa_e91469b9c6 (IsA field_work research) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "field wormwood is a kind of wormwood", "pln": ["(: cnet_isa_9fe2f06363 (IsA field_wormwood wormwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fielder s choice is a kind of putout", "pln": ["(: cnet_isa_a0630dc63e (IsA fielder_s_choice putout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fielder is a kind of ballplayer", "pln": ["(: cnet_isa_fe806801a9 (IsA fielder ballplayer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fielder is a kind of cricketer", "pln": ["(: cnet_isa_8bb72c1cd6 (IsA fielder cricketer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fieldfare is a kind of thrush", "pln": ["(: cnet_isa_cb3e3b98a6 (IsA fieldfare thrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fielding is a kind of handling", "pln": ["(: cnet_isa_27e45f2f55 (IsA fielding handling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fielding average is a kind of average", "pln": ["(: cnet_isa_b783ae4de3 (IsA fielding_average average) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fieldstone is a kind of rock", "pln": ["(: cnet_isa_4033d84b5c (IsA fieldstone rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fieldwork is a kind of fortification", "pln": ["(: cnet_isa_02d7ee9309 (IsA fieldwork fortification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fieldworker is a kind of research worker", "pln": ["(: cnet_isa_46dcf51a37 (IsA fieldworker research_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fieri facia is a kind of writ", "pln": ["(: cnet_isa_2af955de6e (IsA fieri_facia writ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fieriness is a kind of heat", "pln": ["(: cnet_isa_c94580cfd1 (IsA fieriness heat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fieriness is a kind of hotness", "pln": ["(: cnet_isa_66e815f984 (IsA fieriness hotness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fiesta flower is a kind of herb", "pln": ["(: cnet_isa_1d5667dd76 (IsA fiesta_flower herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fife is a kind of flute", "pln": ["(: cnet_isa_114dba489a (IsA fife flute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fife rail is a kind of railing", "pln": ["(: cnet_isa_441178efd2 (IsA fife_rail railing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fifteen is a kind of large integer", "pln": ["(: cnet_isa_68bc83493f (IsA fifteen large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fifteenth is a kind of rank", "pln": ["(: cnet_isa_2bdd7a0e23 (IsA fifteenth rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fifth is a kind of interval", "pln": ["(: cnet_isa_672ccbd38c (IsA fifth interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fifth is a kind of rank", "pln": ["(: cnet_isa_43cefecc09 (IsA fifth rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fifth is a kind of united state liquid unit", "pln": ["(: cnet_isa_a62c28a4fb (IsA fifth united_state_liquid_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fifth column is a kind of unit", "pln": ["(: cnet_isa_1f9aa4294d (IsA fifth_column unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fifth columnist is a kind of traitor", "pln": ["(: cnet_isa_7b8c1d586d (IsA fifth_columnist traitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fifth lateran council is a kind of lateran council", "pln": ["(: cnet_isa_2c3cb0d236 (IsA fifth_lateran_council lateran_council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fifth wheel is a kind of bearing", "pln": ["(: cnet_isa_e37ee28988 (IsA fifth_wheel bearing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fifth wheel is a kind of car wheel", "pln": ["(: cnet_isa_5bf899c0b3 (IsA fifth_wheel car_wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fifth wheel is a kind of redundancy", "pln": ["(: cnet_isa_628f107343 (IsA fifth_wheel redundancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fifty is a kind of decade", "pln": ["(: cnet_isa_58c67e9dd4 (IsA fifty decade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fifty is a kind of time of life", "pln": ["(: cnet_isa_28725ebf4f (IsA fifty time_of_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fiftieth is a kind of rank", "pln": ["(: cnet_isa_6321958c2c (IsA fiftieth rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fifty is a kind of large integer", "pln": ["(: cnet_isa_49ca5dd86c (IsA fifty large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fifty dollar bill is a kind of bill", "pln": ["(: cnet_isa_4f1629e3dd (IsA fifty_dollar_bill bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fifty percent is a kind of one half", "pln": ["(: cnet_isa_77dd246571 (IsA fifty_percent one_half) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fig is a kind of fruit", "pln": ["(: cnet_isa_23a0bb9d4a (IsA fig fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fig is a kind of edible fruit", "pln": ["(: cnet_isa_cce6c10354 (IsA fig edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fig is a kind of fig tree", "pln": ["(: cnet_isa_060a34791e (IsA fig fig_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fig bird is a kind of old world oriole", "pln": ["(: cnet_isa_b07e5f53f3 (IsA fig_bird old_world_oriole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fig leaf is a kind of covering", "pln": ["(: cnet_isa_4e1ca7c6ea (IsA fig_leaf covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fig leaf is a kind of leaf", "pln": ["(: cnet_isa_6e6cf6d5b0 (IsA fig_leaf leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fig marigold is a kind of flower", "pln": ["(: cnet_isa_be30200eb8 (IsA fig_marigold flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fig tree is a kind of tree", "pln": ["(: cnet_isa_1f240d8613 (IsA fig_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fight is a kind of boxing", "pln": ["(: cnet_isa_c5724f7468 (IsA fight boxing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fight is a kind of conflict", "pln": ["(: cnet_isa_d4c51e880f (IsA fight conflict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fight is a kind of controversy", "pln": ["(: cnet_isa_ad4c4c3c7b (IsA fight controversy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fighter is a kind of airplane", "pln": ["(: cnet_isa_de6ff16414 (IsA fighter airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fighter is a kind of warplane", "pln": ["(: cnet_isa_f714186e79 (IsA fighter warplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fighter pilot is a kind of combat pilot", "pln": ["(: cnet_isa_f6d8ffd41c (IsA fighter_pilot combat_pilot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fighting chair is a kind of chair", "pln": ["(: cnet_isa_0ff999aff5 (IsA fighting_chair chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "figment is a kind of idea", "pln": ["(: cnet_isa_7401931ec6 (IsA figment idea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "figural blindness is a kind of blindness", "pln": ["(: cnet_isa_0785f7efb2 (IsA figural_blindness blindness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "figuration is a kind of decoration", "pln": ["(: cnet_isa_58d1a4da61 (IsA figuration decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "figuration is a kind of representation", "pln": ["(: cnet_isa_b512522c4d (IsA figuration representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "figure is a kind of maneuver", "pln": ["(: cnet_isa_c7fd1769a6 (IsA figure maneuver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "figure is a kind of model", "pln": ["(: cnet_isa_dbcb00e66a (IsA figure model) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "figure is a kind of impression", "pln": ["(: cnet_isa_1e913bb82e (IsA figure impression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "figure is a kind of percept", "pln": ["(: cnet_isa_4864366edb (IsA figure percept) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "figure is a kind of illustration", "pln": ["(: cnet_isa_35e14c98f0 (IsA figure illustration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "figure is a kind of sum", "pln": ["(: cnet_isa_5359798f72 (IsA figure sum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "figure is a kind of shape", "pln": ["(: cnet_isa_51b2623826 (IsA figure shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "figure eight is a kind of figure", "pln": ["(: cnet_isa_a301154a50 (IsA figure_eight figure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "figure eight is a kind of knot", "pln": ["(: cnet_isa_aaef661c08 (IsA figure_eight knot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "figure loom is a kind of loom", "pln": ["(: cnet_isa_f6e80885f1 (IsA figure_loom loom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "figure of eight is a kind of plane figure", "pln": ["(: cnet_isa_bec2fd9650 (IsA figure_of_eight plane_figure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "figure of merit is a kind of efficiency", "pln": ["(: cnet_isa_1b5dc9c056 (IsA figure_of_merit efficiency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "figure skate is a kind of ice skate", "pln": ["(: cnet_isa_44cb8d16e0 (IsA figure_skate ice_skate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "figure skating is a kind of ice skating", "pln": ["(: cnet_isa_b0c29962fd (IsA figure_skating ice_skating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "figured bass is a kind of bass", "pln": ["(: cnet_isa_4fe5cf97e8 (IsA figured_bass bass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "figurehead is a kind of figure", "pln": ["(: cnet_isa_756904a518 (IsA figurehead figure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "figurine is a kind of figure", "pln": ["(: cnet_isa_68e17e77b4 (IsA figurine figure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "figwort is a kind of woody plant", "pln": ["(: cnet_isa_65d0ac9dd5 (IsA figwort woody_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fiji dollar is a kind of dollar", "pln": ["(: cnet_isa_cc4b914d1f (IsA fiji_dollar dollar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fijian is a kind of oceanic", "pln": ["(: cnet_isa_4dc34e65dd (IsA fijian oceanic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fijian is a kind of polynesian", "pln": ["(: cnet_isa_ff547aed57 (IsA fijian polynesian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filaggrin is a kind of protein", "pln": ["(: cnet_isa_06c6e21d91 (IsA filaggrin protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filament is a kind of wire", "pln": ["(: cnet_isa_a420a59e8e (IsA filament wire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filament is a kind of structure", "pln": ["(: cnet_isa_0e62205fb1 (IsA filament structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filament is a kind of stalk", "pln": ["(: cnet_isa_0ed1234526 (IsA filament stalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filaria is a kind of nematode", "pln": ["(: cnet_isa_2be58f2918 (IsA filaria nematode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filariasis is a kind of disease", "pln": ["(: cnet_isa_19ab7bfb88 (IsA filariasis disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filariidae is a kind of worm family", "pln": ["(: cnet_isa_a431e91605 (IsA filariidae worm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filature is a kind of bobbin", "pln": ["(: cnet_isa_af7a26b6ce (IsA filature bobbin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filbert is a kind of nut", "pln": ["(: cnet_isa_b9ed211d9b (IsA filbert nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "file is a kind of collection", "pln": ["(: cnet_isa_197362270e (IsA file collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "file is a kind of hand tool", "pln": ["(: cnet_isa_3da099c80b (IsA file hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "file is a kind of office furniture", "pln": ["(: cnet_isa_74446a6ef8 (IsA file office_furniture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "file is a kind of record", "pln": ["(: cnet_isa_ec54998242 (IsA file record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "file is a kind of line", "pln": ["(: cnet_isa_2ae10d98b7 (IsA file line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "file allocation table is a kind of table", "pln": ["(: cnet_isa_f7b4b30842 (IsA file_allocation_table table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "file clerk is a kind of clerk", "pln": ["(: cnet_isa_df29d5a04f (IsA file_clerk clerk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "file folder is a kind of folder", "pln": ["(: cnet_isa_f142a611eb (IsA file_folder folder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "file server is a kind of digital computer", "pln": ["(: cnet_isa_2bd930d2d1 (IsA file_server digital_computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "file system is a kind of classification system", "pln": ["(: cnet_isa_8a1761cc3a (IsA file_system classification_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "file transfer protocol is a kind of protocol", "pln": ["(: cnet_isa_0c69414436 (IsA file_transfer_protocol protocol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filefish is a kind of plectognath", "pln": ["(: cnet_isa_75be45ec6a (IsA filefish plectognath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filename is a kind of name", "pln": ["(: cnet_isa_b78fc436b3 (IsA filename name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filer is a kind of litigant", "pln": ["(: cnet_isa_28ffea0423 (IsA filer litigant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filet is a kind of lace", "pln": ["(: cnet_isa_e00845e419 (IsA filet lace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filet mignon is a kind of fillet", "pln": ["(: cnet_isa_b7b225a76b (IsA filet_mignon fillet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filial duty is a kind of duty", "pln": ["(: cnet_isa_4182a9583a (IsA filial_duty duty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filial love is a kind of love", "pln": ["(: cnet_isa_cc3fbaba01 (IsA filial_love love) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filibuster is a kind of delay", "pln": ["(: cnet_isa_36d2fce1cf (IsA filibuster delay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filibuster is a kind of delayer", "pln": ["(: cnet_isa_520f6efa41 (IsA filibuster delayer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filibuster is a kind of legislator", "pln": ["(: cnet_isa_c232ed7379 (IsA filibuster legislator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filicale is a kind of plant order", "pln": ["(: cnet_isa_bb4fa6ae89 (IsA filicale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filicide is a kind of murder", "pln": ["(: cnet_isa_06d7bc2db0 (IsA filicide murder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filicide is a kind of parent", "pln": ["(: cnet_isa_fc1ccb734d (IsA filicide parent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filicopsida is a kind of class", "pln": ["(: cnet_isa_7c640ee834 (IsA filicopsida class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filigree is a kind of embellishment", "pln": ["(: cnet_isa_662bb023b1 (IsA filigree embellishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filing is a kind of formation", "pln": ["(: cnet_isa_5a77d44a56 (IsA filing formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filing is a kind of storage", "pln": ["(: cnet_isa_052a3cca45 (IsA filing storage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filing is a kind of submission", "pln": ["(: cnet_isa_80e3236b71 (IsA filing submission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filing is a kind of fragment", "pln": ["(: cnet_isa_2565d1c5ac (IsA filing fragment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filipino is a kind of aborigine", "pln": ["(: cnet_isa_f1eb5fb2ed (IsA filipino aborigine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fill is a kind of enough", "pln": ["(: cnet_isa_8c3b934feb (IsA fill enough) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filler is a kind of tobacco", "pln": ["(: cnet_isa_4c14639d24 (IsA filler tobacco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filler is a kind of copy", "pln": ["(: cnet_isa_bb73217f7e (IsA filler copy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filler is a kind of hungarian monetary unit", "pln": ["(: cnet_isa_f8d5c4708c (IsA filler hungarian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filler is a kind of sealing material", "pln": ["(: cnet_isa_8204bd6524 (IsA filler sealing_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fillet is a kind of fastener", "pln": ["(: cnet_isa_45e7a35c08 (IsA fillet fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fillet is a kind of beefsteak", "pln": ["(: cnet_isa_2ed5877d94 (IsA fillet beefsteak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fillet is a kind of piece", "pln": ["(: cnet_isa_7199d2fba2 (IsA fillet piece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "filling is a kind of change of integrity", "pln": ["(: cnet_isa_fd511249b2 (IsA filling change_of_integrity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filling is a kind of dental appliance", "pln": ["(: cnet_isa_f03419b67f (IsA filling dental_appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filling is a kind of concoction", "pln": ["(: cnet_isa_8d1242c966 (IsA filling concoction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filling is a kind of flow", "pln": ["(: cnet_isa_ad73fc77e7 (IsA filling flow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filling is a kind of material", "pln": ["(: cnet_isa_1b88e975ad (IsA filling material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "filly is a kind of young female horse", "pln": ["(: cnet_isa_a66259639d (IsA filly young_female_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filly is a kind of female", "pln": ["(: cnet_isa_bb8ddc56a8 (IsA filly female) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filly is a kind of foal", "pln": ["(: cnet_isa_a7fa6b06d9 (IsA filly foal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "film is a kind of artistic expression", "pln": ["(: cnet_isa_154cfb1c58 (IsA film artistic_expression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "film is a kind of medium", "pln": ["(: cnet_isa_87c608827f (IsA film medium) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "film is a kind of object", "pln": ["(: cnet_isa_3be8bdc1f9 (IsA film object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "film is a kind of photographic paper", "pln": ["(: cnet_isa_f4e3cf6053 (IsA film photographic_paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "film is a kind of sheet", "pln": ["(: cnet_isa_2826eb5817 (IsA film sheet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "film is a kind of wrapping", "pln": ["(: cnet_isa_a1267e30a9 (IsA film wrapping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "film advance is a kind of mechanism", "pln": ["(: cnet_isa_e8ed7897ea (IsA film_advance mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "film clip is a kind of film", "pln": ["(: cnet_isa_4dfe798e5e (IsA film_clip film) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "film company is a kind of company", "pln": ["(: cnet_isa_81d2e40341 (IsA film_company company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "film director is a kind of film maker", "pln": ["(: cnet_isa_ae7cce1fed (IsA film_director film_maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "film editing is a kind of creating by removal", "pln": ["(: cnet_isa_0ffc20117d (IsA film_editing creating_by_removal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "film festival is a kind of festival", "pln": ["(: cnet_isa_7442278db6 (IsA film_festival festival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "film industry is a kind of industry", "pln": ["(: cnet_isa_d39cba20bb (IsA film_industry industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "film maker is a kind of producer", "pln": ["(: cnet_isa_576b58623e (IsA film_maker producer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "film noir is a kind of movie", "pln": ["(: cnet_isa_8747a8d87c (IsA film_noir movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "film star is a kind of screen actor", "pln": ["(: cnet_isa_2896d8225c (IsA film_star screen_actor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "film star is a kind of star", "pln": ["(: cnet_isa_536f8ca7b8 (IsA film_star star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filming is a kind of photography", "pln": ["(: cnet_isa_f4e6c725b7 (IsA filming photography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filmy fern is a kind of fern", "pln": ["(: cnet_isa_fbbf86e17b (IsA filmy_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filoviridae is a kind of family", "pln": ["(: cnet_isa_3f68a8451a (IsA filoviridae family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filovirus is a kind of animal virus", "pln": ["(: cnet_isa_7cfe351e8b (IsA filovirus animal_virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fil is a kind of fractional monetary unit", "pln": ["(: cnet_isa_df9972fa93 (IsA fil fractional_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filter is a kind of device", "pln": ["(: cnet_isa_2a395c6a97 (IsA filter device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filter is a kind of electrical device", "pln": ["(: cnet_isa_d6ceb56d7f (IsA filter electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filter bed is a kind of filter", "pln": ["(: cnet_isa_2442ef0809 (IsA filter_bed filter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filter paper is a kind of paper", "pln": ["(: cnet_isa_4c2b86cbd7 (IsA filter_paper paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filter tip is a kind of air filter", "pln": ["(: cnet_isa_7a410e13e7 (IsA filter_tip air_filter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filter tipped cigarette is a kind of cigarette", "pln": ["(: cnet_isa_8365f98ef2 (IsA filter_tipped_cigarette cigarette) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filth is a kind of unsanitariness", "pln": ["(: cnet_isa_4ab11822cf (IsA filth unsanitariness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filth is a kind of waste", "pln": ["(: cnet_isa_04437a63aa (IsA filth waste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filthiness is a kind of nefariousness", "pln": ["(: cnet_isa_be61be908f (IsA filthiness nefariousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filthy lucre is a kind of net income", "pln": ["(: cnet_isa_dc7d391057 (IsA filthy_lucre net_income) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filtrate is a kind of fluid", "pln": ["(: cnet_isa_2f0fb87ce0 (IsA filtrate fluid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filtrate is a kind of product", "pln": ["(: cnet_isa_66def8d0c5 (IsA filtrate product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filtration is a kind of change", "pln": ["(: cnet_isa_58e65cf53e (IsA filtration change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filtration is a kind of natural process", "pln": ["(: cnet_isa_ee4369fbe2 (IsA filtration natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "filtration surgery is a kind of eye operation", "pln": ["(: cnet_isa_5cb688bf05 (IsA filtration_surgery eye_operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fimbria is a kind of process", "pln": ["(: cnet_isa_2086199364 (IsA fimbria process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fin is a kind of extremity", "pln": ["(: cnet_isa_cecc81b8a0 (IsA fin extremity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fin is a kind of stabilizer", "pln": ["(: cnet_isa_3b577f3eb9 (IsA fin stabilizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fin de siecle is a kind of end", "pln": ["(: cnet_isa_927cbc8890 (IsA fin_de_siecle end) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fin keel is a kind of plate", "pln": ["(: cnet_isa_b0ff50b4a9 (IsA fin_keel plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finagler is a kind of deceiver", "pln": ["(: cnet_isa_8e177b0eb7 (IsA finagler deceiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "final is a kind of match", "pln": ["(: cnet_isa_a4eea6d3fa (IsA final match) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "final cause is a kind of purpose", "pln": ["(: cnet_isa_6bbfd8d5cf (IsA final_cause purpose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "final cut is a kind of movie", "pln": ["(: cnet_isa_a1a109bd73 (IsA final_cut movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "final examination is a kind of examination", "pln": ["(: cnet_isa_cf1f3921b3 (IsA final_examination examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "final judgment is a kind of judgment", "pln": ["(: cnet_isa_8b36da475c (IsA final_judgment judgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "final period is a kind of part", "pln": ["(: cnet_isa_5f5a746ac7 (IsA final_period part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finale is a kind of finish", "pln": ["(: cnet_isa_2ae9e1c202 (IsA finale finish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finale is a kind of conclusion", "pln": ["(: cnet_isa_fc4fcde77d (IsA finale conclusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finalist is a kind of rival", "pln": ["(: cnet_isa_51684d91c5 (IsA finalist rival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finality is a kind of determinateness", "pln": ["(: cnet_isa_3fac691e30 (IsA finality determinateness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finalization is a kind of completion", "pln": ["(: cnet_isa_2cf8e56b30 (IsA finalization completion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finance is a kind of commercial enterprise", "pln": ["(: cnet_isa_0a3f4883cd (IsA finance commercial_enterprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finance is a kind of economic", "pln": ["(: cnet_isa_417737616c (IsA finance economic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finance is a kind of management", "pln": ["(: cnet_isa_178cd8be6d (IsA finance management) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finance committee is a kind of committee", "pln": ["(: cnet_isa_eccf1ae0e2 (IsA finance_committee committee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "finance company is a kind of nondepository financial institution", "pln": ["(: cnet_isa_c0413bddca (IsA finance_company nondepository_financial_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finance minister is a kind of minister", "pln": ["(: cnet_isa_f3f979e7a0 (IsA finance_minister minister) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "financial aid is a kind of gift", "pln": ["(: cnet_isa_c6320e9f67 (IsA financial_aid gift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "financial analyst is a kind of analyst", "pln": ["(: cnet_isa_2ab09a7432 (IsA financial_analyst analyst) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "financial audit is a kind of attestation service", "pln": ["(: cnet_isa_6eb8cbf783 (IsA financial_audit attestation_service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "financial audit is a kind of audited account", "pln": ["(: cnet_isa_6a2153ea95 (IsA financial_audit audited_account) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "financial center is a kind of center", "pln": ["(: cnet_isa_3405ff4a68 (IsA financial_center center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "financial condition is a kind of condition", "pln": ["(: cnet_isa_7988def2b2 (IsA financial_condition condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "financial crime enforcement network is a kind of law enforcement agency", "pln": ["(: cnet_isa_8f4e4e9244 (IsA financial_crime_enforcement_network law_enforcement_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "financial forecast is a kind of prognosis", "pln": ["(: cnet_isa_32d0e737e9 (IsA financial_forecast prognosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "financial gain is a kind of gain", "pln": ["(: cnet_isa_322c926e37 (IsA financial_gain gain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "financial institution is a kind of institution", "pln": ["(: cnet_isa_70c54fca72 (IsA financial_institution institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "financial loss is a kind of loss", "pln": ["(: cnet_isa_31897637ec (IsA financial_loss loss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "financial management service is a kind of agency", "pln": ["(: cnet_isa_13764c7982 (IsA financial_management_service agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "financier is a kind of capitalist", "pln": ["(: cnet_isa_dd54d472e1 (IsA financier capitalist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "financing is a kind of finance", "pln": ["(: cnet_isa_369301a8b2 (IsA financing finance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finback is a kind of rorqual", "pln": ["(: cnet_isa_572c7f710e (IsA finback rorqual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finch is a kind of bird", "pln": ["(: cnet_isa_2f9d82cbed (IsA finch bird) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finch is a kind of oscine", "pln": ["(: cnet_isa_dca5ab74a1 (IsA finch oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finche is a kind of animal", "pln": ["(: cnet_isa_2599c7a695 (IsA finche animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find book is a kind of idea", "pln": ["(: cnet_isa_b5c5295df1 (IsA find_book idea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find downstair is a kind of basement", "pln": ["(: cnet_isa_d66cf67e4b (IsA find_downstair basement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find downstair is a kind of water heater", "pln": ["(: cnet_isa_aeb8dea08d (IsA find_downstair water_heater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find downtown is a kind of building", "pln": ["(: cnet_isa_314d408cc6 (IsA find_downtown building) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find downtown is a kind of coffee shop", "pln": ["(: cnet_isa_9ed067a2c9 (IsA find_downtown coffee_shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find downtown is a kind of office", "pln": ["(: cnet_isa_730666d5c0 (IsA find_downtown office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find downtown is a kind of skyscraper", "pln": ["(: cnet_isa_175e8193ce (IsA find_downtown skyscraper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find downtown is a kind of taxi", "pln": ["(: cnet_isa_aa1b389e61 (IsA find_downtown taxi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find downtown is a kind of traffic", "pln": ["(: cnet_isa_778d48899e (IsA find_downtown traffic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find inside is a kind of bed", "pln": ["(: cnet_isa_89a0e8bb64 (IsA find_inside bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find inside is a kind of bedroom", "pln": ["(: cnet_isa_0144403d8e (IsA find_inside bedroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find inside is a kind of carpet", "pln": ["(: cnet_isa_f4f215fd92 (IsA find_inside carpet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find inside is a kind of furniture", "pln": ["(: cnet_isa_bc9b402c74 (IsA find_inside furniture) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find jar is a kind of vegemite", "pln": ["(: cnet_isa_4da36599c2 (IsA find_jar vegemite) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find outside is a kind of grass", "pln": ["(: cnet_isa_4babf6363f (IsA find_outside grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "find outside is a kind of rain", "pln": ["(: cnet_isa_5ef26441f9 (IsA find_outside rain) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find outside is a kind of road", "pln": ["(: cnet_isa_b19501b3f0 (IsA find_outside road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "find outside is a kind of tree", "pln": ["(: cnet_isa_ade096ed19 (IsA find_outside tree) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "find underground is a kind of worms", "pln": ["(: cnet_isa_a92ca3f5b2 (IsA find_underground worms) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "fine arts is a kind of humanistic discipline", "pln": ["(: cnet_isa_aa64bf2d2c (IsA fine_arts humanistic_discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find underground is a kind of carrot", "pln": ["(: cnet_isa_a01c22461a (IsA find_underground carrot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find underground is a kind of earthworm", "pln": ["(: cnet_isa_9edca3dc37 (IsA find_underground earthworm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find underground is a kind of metro", "pln": ["(: cnet_isa_34f5979ff5 (IsA find_underground metro) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find underground is a kind of root", "pln": ["(: cnet_isa_b56406a016 (IsA find_underground root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find underground is a kind of worm", "pln": ["(: cnet_isa_bf460ef1e9 (IsA find_underground worm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find underwater is a kind of aquatic plant", "pln": ["(: cnet_isa_9aa7992827 (IsA find_underwater aquatic_plant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find underwater is a kind of blowfish", "pln": ["(: cnet_isa_a65f8b1326 (IsA find_underwater blowfish) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find underwater is a kind of coral reef", "pln": ["(: cnet_isa_299c08c02e (IsA find_underwater coral_reef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find underwater is a kind of fish", "pln": ["(: cnet_isa_620fe9e43b (IsA find_underwater fish) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find underwater is a kind of marine life", "pln": ["(: cnet_isa_b280573a9f (IsA find_underwater marine_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find underwater is a kind of seaweed", "pln": ["(: cnet_isa_73cb81a569 (IsA find_underwater seaweed) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find underwater is a kind of whale", "pln": ["(: cnet_isa_35390e792c (IsA find_underwater whale) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find upstair is a kind of attic", "pln": ["(: cnet_isa_e67cb78c99 (IsA find_upstair attic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find upstair is a kind of bathroom", "pln": ["(: cnet_isa_4b382c1ed3 (IsA find_upstair bathroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find upstair is a kind of bedroom", "pln": ["(: cnet_isa_2b8dbadffb (IsA find_upstair bedroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "find upstair is a kind of room", "pln": ["(: cnet_isa_dd1c03fa19 (IsA find_upstair room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finder s fee is a kind of fee", "pln": ["(: cnet_isa_be5e02cfa8 (IsA finder_s_fee fee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finder is a kind of optical device", "pln": ["(: cnet_isa_8ba82e2af0 (IsA finder optical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finder is a kind of perceiver", "pln": ["(: cnet_isa_106f1b1d23 (IsA finder perceiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finder is a kind of seeker", "pln": ["(: cnet_isa_783314797f (IsA finder seeker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finding is a kind of judgment", "pln": ["(: cnet_isa_eabeccf938 (IsA finding judgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finding is a kind of object", "pln": ["(: cnet_isa_127043d279 (IsA finding object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finding of law is a kind of finding", "pln": ["(: cnet_isa_8052b2d46c (IsA finding_of_law finding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finding thing is a kind of important activity", "pln": ["(: cnet_isa_daffb6607c (IsA finding_thing important_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finding is a kind of collection", "pln": ["(: cnet_isa_64edce1eb2 (IsA finding collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fine is a kind of penalty", "pln": ["(: cnet_isa_d0731f745c (IsA fine penalty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fine art is a kind of humanistic discipline", "pln": ["(: cnet_isa_f0cad87b06 (IsA fine_art humanistic_discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fine print is a kind of reservation", "pln": ["(: cnet_isa_7cf44cce12 (IsA fine_print reservation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fine spray is a kind of precipitation", "pln": ["(: cnet_isa_46855996f9 (IsA fine_spray precipitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fine structure is a kind of spectrum line", "pln": ["(: cnet_isa_b99529913e (IsA fine_structure spectrum_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fine tooth comb is a kind of examination", "pln": ["(: cnet_isa_e97904bbb5 (IsA fine_tooth_comb examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fine tooth comb is a kind of comb", "pln": ["(: cnet_isa_80fe793d86 (IsA fine_tooth_comb comb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fineness is a kind of narrowness", "pln": ["(: cnet_isa_f2d2fa26c9 (IsA fineness narrowness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fineness is a kind of smoothness", "pln": ["(: cnet_isa_64f3922794 (IsA fineness smoothness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fineness is a kind of superiority", "pln": ["(: cnet_isa_a90f4f8906 (IsA fineness superiority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finery is a kind of attire", "pln": ["(: cnet_isa_e73a7a9fe4 (IsA finery attire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fine herbe is a kind of herb", "pln": ["(: cnet_isa_50eae9de7a (IsA fine_herbe herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finger is a kind of digit", "pln": ["(: cnet_isa_5babdd7fdc (IsA finger digit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finger is a kind of covering", "pln": ["(: cnet_isa_029f7e211a (IsA finger covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finger is a kind of extremity", "pln": ["(: cnet_isa_909dbdd0a9 (IsA finger extremity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finger is a kind of linear unit", "pln": ["(: cnet_isa_3a4c416aad (IsA finger linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finger bowl is a kind of bowl", "pln": ["(: cnet_isa_7063c4e3b9 (IsA finger_bowl bowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finger food is a kind of nutriment", "pln": ["(: cnet_isa_b54fb77cfa (IsA finger_food nutriment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finger grass is a kind of grass", "pln": ["(: cnet_isa_6af63d0124 (IsA finger_grass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finger hole is a kind of hole", "pln": ["(: cnet_isa_14e71ba0d0 (IsA finger_hole hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finger millet is a kind of millet", "pln": ["(: cnet_isa_d8e90041aa (IsA finger_millet millet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "finger paint is a kind of paint", "pln": ["(: cnet_isa_5e86cb1840 (IsA finger_paint paint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finger painting is a kind of painting", "pln": ["(: cnet_isa_5451135b89 (IsA finger_painting painting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finger plate is a kind of protective covering", "pln": ["(: cnet_isa_8d3d08b84d (IsA finger_plate protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finger pointing is a kind of imputation", "pln": ["(: cnet_isa_f8399ec33b (IsA finger_pointing imputation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finger roll is a kind of basketball shot", "pln": ["(: cnet_isa_4c2af5cdd1 (IsA finger_roll basketball_shot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finger scan is a kind of biometric identification", "pln": ["(: cnet_isa_d212bb1244 (IsA finger_scan biometric_identification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finger spelling is a kind of sign language", "pln": ["(: cnet_isa_d13a24c13f (IsA finger_spelling sign_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finger wave is a kind of wave", "pln": ["(: cnet_isa_6909c7febe (IsA finger_wave wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fingerboard is a kind of strip", "pln": ["(: cnet_isa_d51f4e59dc (IsA fingerboard strip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fingering is a kind of placement", "pln": ["(: cnet_isa_d653b92156 (IsA fingering placement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fingering is a kind of touch", "pln": ["(: cnet_isa_9ff0445fe9 (IsA fingering touch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fingerling is a kind of fish", "pln": ["(: cnet_isa_a1df7ce613 (IsA fingerling fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fingermark is a kind of smudge", "pln": ["(: cnet_isa_742b651ab4 (IsA fingermark smudge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fingernail is a kind of nail", "pln": ["(: cnet_isa_de988ecde5 (IsA fingernail nail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fingerpainting is a kind of very messy activity", "pln": ["(: cnet_isa_5e672a619d (IsA fingerpainting very_messy_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fingerpost is a kind of signpost", "pln": ["(: cnet_isa_facca0f552 (IsA fingerpost signpost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fingerprint is a kind of biometric identification", "pln": ["(: cnet_isa_390ec7ea42 (IsA fingerprint biometric_identification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "fingerprints is a kind of unique identification", "pln": ["(: cnet_isa_a7290a12ca (IsA fingerprints unique_identification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fingerprint is a kind of identification", "pln": ["(: cnet_isa_cadc437f57 (IsA fingerprint identification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fingerprint is a kind of mark", "pln": ["(: cnet_isa_6496caadd7 (IsA fingerprint mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fingerprint expert is a kind of specialist", "pln": ["(: cnet_isa_480f14d5fe (IsA fingerprint_expert specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fingerprinting is a kind of procedure", "pln": ["(: cnet_isa_9be9ab1fbf (IsA fingerprinting procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fingerprint is a kind of unique identification", "pln": ["(: cnet_isa_6ee51afae6 (IsA fingerprint unique_identification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fingerstall is a kind of sheath", "pln": ["(: cnet_isa_2ec1f4ffae (IsA fingerstall sheath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fingertip is a kind of tip", "pln": ["(: cnet_isa_2d918b2c6c (IsA fingertip tip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finial is a kind of decoration", "pln": ["(: cnet_isa_d7acd0f7ed (IsA finial decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finish is a kind of completion", "pln": ["(: cnet_isa_43ea04b2d7 (IsA finish completion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finish is a kind of downfall", "pln": ["(: cnet_isa_b6da6239ac (IsA finish downfall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finish is a kind of happening", "pln": ["(: cnet_isa_982e8a6845 (IsA finish happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "finish is a kind of end", "pln": ["(: cnet_isa_b848652ac4 (IsA finish end) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finish is a kind of taste", "pln": ["(: cnet_isa_d8961b246a (IsA finish taste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finish coat is a kind of coating", "pln": ["(: cnet_isa_5cbccf1d31 (IsA finish_coat coating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finish coat is a kind of plaster", "pln": ["(: cnet_isa_f4ada361ae (IsA finish_coat plaster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finisher is a kind of racer", "pln": ["(: cnet_isa_544ec9a43b (IsA finisher racer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finisher is a kind of painter", "pln": ["(: cnet_isa_9900d1dfec (IsA finisher painter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finisher is a kind of worker", "pln": ["(: cnet_isa_6150813dd7 (IsA finisher worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finishing line is a kind of finish", "pln": ["(: cnet_isa_a427de7811 (IsA finishing_line finish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finishing line is a kind of line", "pln": ["(: cnet_isa_a77ae48b09 (IsA finishing_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finishing school is a kind of school", "pln": ["(: cnet_isa_93ee01b7c1 (IsA finishing_school school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finishing touch is a kind of touch", "pln": ["(: cnet_isa_1b39cba747 (IsA finishing_touch touch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "finiteness is a kind of quality", "pln": ["(: cnet_isa_a22791f499 (IsA finiteness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fink is a kind of informer", "pln": ["(: cnet_isa_25d04b98f8 (IsA fink informer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finland is a kind of country", "pln": ["(: cnet_isa_92236b7f07 (IsA finland country) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finn is a kind of european", "pln": ["(: cnet_isa_dc74c9fd07 (IsA finn european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "finnan haddie is a kind of haddock", "pln": ["(: cnet_isa_58f09361a0 (IsA finnan_haddie haddock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "finnish is a kind of baltic finnic", "pln": ["(: cnet_isa_5e0a2c83b3 (IsA finnish baltic_finnic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finnish monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_a4f21b57f4 (IsA finnish_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "finno ugric is a kind of uralic", "pln": ["(: cnet_isa_30f56e2c93 (IsA finno_ugric uralic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fipple is a kind of plug", "pln": ["(: cnet_isa_a846ffc80c (IsA fipple plug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fipple flute is a kind of pipe", "pln": ["(: cnet_isa_f7c1e3ae74 (IsA fipple_flute pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fir is a kind of conifer", "pln": ["(: cnet_isa_f7a3f39bfa (IsA fir conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fir is a kind of wood", "pln": ["(: cnet_isa_6989ab6301 (IsA fir wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fir clubmoss is a kind of club moss", "pln": ["(: cnet_isa_ae0e90a3a4 (IsA fir_clubmoss club_moss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fir cone is a kind of cone", "pln": ["(: cnet_isa_50e773cddb (IsA fir_cone cone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire is a kind of combustion", "pln": ["(: cnet_isa_fb5d564e53 (IsA fire combustion) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire is a kind of attack", "pln": ["(: cnet_isa_aebc13003f (IsA fire attack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire is a kind of fireplace", "pln": ["(: cnet_isa_b8083221af (IsA fire fireplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire is a kind of criticism", "pln": ["(: cnet_isa_2123d18a6b (IsA fire criticism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fire is a kind of happening", "pln": ["(: cnet_isa_4ddefce6ff (IsA fire happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire is a kind of trial", "pln": ["(: cnet_isa_f0ddb1f7d5 (IsA fire trial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire is a kind of element", "pln": ["(: cnet_isa_69e911b58d (IsA fire element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire is a kind of fuel", "pln": ["(: cnet_isa_54b9e2a705 (IsA fire fuel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire alarm is a kind of alarm", "pln": ["(: cnet_isa_3c9f01c5c9 (IsA fire_alarm alarm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fire and brimstone is a kind of damnation", "pln": ["(: cnet_isa_9848a5ce99 (IsA fire_and_brimstone damnation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire ant is a kind of ant", "pln": ["(: cnet_isa_75959092b3 (IsA fire_ant ant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire bell is a kind of bell", "pln": ["(: cnet_isa_4b53543e50 (IsA fire_bell bell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fire bellied toad is a kind of frog", "pln": ["(: cnet_isa_6f21e75786 (IsA fire_bellied_toad frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire blight is a kind of leaf blight", "pln": ["(: cnet_isa_19e067a069 (IsA fire_blight leaf_blight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fire brigade is a kind of fire department", "pln": ["(: cnet_isa_644b05d53e (IsA fire_brigade fire_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fire brigade is a kind of organization", "pln": ["(: cnet_isa_e1db63100d (IsA fire_brigade organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire chief is a kind of fireman", "pln": ["(: cnet_isa_86c168610b (IsA fire_chief fireman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire code is a kind of code", "pln": ["(: cnet_isa_3ef97e0945 (IsA fire_code code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire control is a kind of preparation", "pln": ["(: cnet_isa_1945f280cb (IsA fire_control preparation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire control radar is a kind of naval radar", "pln": ["(: cnet_isa_b2a76d620b (IsA fire_control_radar naval_radar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire control system is a kind of naval weaponry", "pln": ["(: cnet_isa_b983d2aae0 (IsA fire_control_system naval_weaponry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire department is a kind of local department", "pln": ["(: cnet_isa_5fadb773bc (IsA fire_department local_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire door is a kind of door", "pln": ["(: cnet_isa_a020df1f54 (IsA fire_door door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire drill is a kind of exercise", "pln": ["(: cnet_isa_126356bb82 (IsA fire_drill exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire eater is a kind of grouch", "pln": ["(: cnet_isa_0b6a9caaed (IsA fire_eater grouch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire eater is a kind of performer", "pln": ["(: cnet_isa_bf00c472a4 (IsA fire_eater performer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire engine is a kind of truck", "pln": ["(: cnet_isa_d48de36b28 (IsA fire_engine truck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire escape is a kind of stairway", "pln": ["(: cnet_isa_47c2548cde (IsA fire_escape stairway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire extinguisher is a kind of device", "pln": ["(: cnet_isa_07fa2cc6a5 (IsA fire_extinguisher device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire hose is a kind of hose", "pln": ["(: cnet_isa_10de0dc3b8 (IsA fire_hose hose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fire insurance is a kind of insurance", "pln": ["(: cnet_isa_4e6a8a7d65 (IsA fire_insurance insurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire iron is a kind of implement", "pln": ["(: cnet_isa_bc797d2e32 (IsA fire_iron implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire marshall is a kind of official", "pln": ["(: cnet_isa_4964405fb4 (IsA fire_marshall official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire on mountain is a kind of spurge", "pln": ["(: cnet_isa_afc9ffa1fb (IsA fire_on_mountain spurge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire opal is a kind of opal", "pln": ["(: cnet_isa_fd9723e3f2 (IsA fire_opal opal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire pink is a kind of silene", "pln": ["(: cnet_isa_7dcf3e261d (IsA fire_pink silene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire pit is a kind of pit", "pln": ["(: cnet_isa_9789293ae8 (IsA fire_pit pit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire sale is a kind of sale", "pln": ["(: cnet_isa_784828c9ea (IsA fire_sale sale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire screen is a kind of screen", "pln": ["(: cnet_isa_8d7d54582d (IsA fire_screen screen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire ship is a kind of weapon", "pln": ["(: cnet_isa_d69bc573a9 (IsA fire_ship weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire station is a kind of station", "pln": ["(: cnet_isa_40849143fa (IsA fire_station station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire tong is a kind of fire iron", "pln": ["(: cnet_isa_9cdeb5fa8b (IsA fire_tong fire_iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire tong is a kind of tong", "pln": ["(: cnet_isa_b18d3cdee0 (IsA fire_tong tong) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire tower is a kind of watchtower", "pln": ["(: cnet_isa_cec569c77c (IsA fire_tower watchtower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire trench is a kind of trench", "pln": ["(: cnet_isa_ca3f0a4ce7 (IsA fire_trench trench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire walker is a kind of performer", "pln": ["(: cnet_isa_fc7cf9672e (IsA fire_walker performer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire walking is a kind of ceremony", "pln": ["(: cnet_isa_730f768e7d (IsA fire_walking ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire warden is a kind of fireman", "pln": ["(: cnet_isa_9e61dff64e (IsA fire_warden fireman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire warden is a kind of official", "pln": ["(: cnet_isa_785d29061c (IsA fire_warden official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire watcher is a kind of watchman", "pln": ["(: cnet_isa_0f74ba8038 (IsA fire_watcher watchman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fire watching is a kind of civil defense", "pln": ["(: cnet_isa_e94e3b834b (IsA fire_watching civil_defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firearm is a kind of gun", "pln": ["(: cnet_isa_51d31f4063 (IsA firearm gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fireball is a kind of ball", "pln": ["(: cnet_isa_2e8cd4b7f2 (IsA fireball ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firebase is a kind of base", "pln": ["(: cnet_isa_0c8845e193 (IsA firebase base) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fireboat is a kind of boat", "pln": ["(: cnet_isa_e6753e4387 (IsA fireboat boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firebox is a kind of furnace", "pln": ["(: cnet_isa_5f5ab35f5c (IsA firebox furnace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firebrat is a kind of bristletail", "pln": ["(: cnet_isa_4e9cf8a0a5 (IsA firebrat bristletail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firebreak is a kind of field", "pln": ["(: cnet_isa_0b76cec11a (IsA firebreak field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firebrick is a kind of brick", "pln": ["(: cnet_isa_5569ae9ecc (IsA firebrick brick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firebug is a kind of heteropterous insect", "pln": ["(: cnet_isa_342c4287e0 (IsA firebug heteropterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fireclay is a kind of clay", "pln": ["(: cnet_isa_2cd9c903cd (IsA fireclay clay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firecracker is a kind of firework", "pln": ["(: cnet_isa_5ba31b6b32 (IsA firecracker firework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firedamp is a kind of gas", "pln": ["(: cnet_isa_856e668f3a (IsA firedamp gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firefly is a kind of insect", "pln": ["(: cnet_isa_5487053d0a (IsA firefly insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firefly is a kind of beetle", "pln": ["(: cnet_isa_92e6cc7958 (IsA firefly beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firefly is a kind of elaterid beetle", "pln": ["(: cnet_isa_86dfd2736d (IsA firefly elaterid_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "firefox is a kind of web browser", "pln": ["(: cnet_isa_a6b9410572 (IsA firefox web_browser) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firelight is a kind of light", "pln": ["(: cnet_isa_f89dc4ebce (IsA firelight light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firelighter is a kind of igniter", "pln": ["(: cnet_isa_0392bd121f (IsA firelighter igniter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fireman s ax is a kind of ax", "pln": ["(: cnet_isa_6dcea4a0b1 (IsA fireman_s_ax ax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fireman s carry is a kind of carry", "pln": ["(: cnet_isa_8f688464b0 (IsA fireman_s_carry carry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fireman is a kind of firefighter", "pln": ["(: cnet_isa_9a69718a05 (IsA fireman firefighter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fireman is a kind of play", "pln": ["(: cnet_isa_0e0f325ba7 (IsA fireman play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fireman is a kind of defender", "pln": ["(: cnet_isa_feb954efbc (IsA fireman defender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fireplace is a kind of recess", "pln": ["(: cnet_isa_b33df3002d (IsA fireplace recess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fireplug is a kind of hydrant", "pln": ["(: cnet_isa_21af9450cd (IsA fireplug hydrant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firepower is a kind of military capability", "pln": ["(: cnet_isa_ac99816700 (IsA firepower military_capability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "firestone is a kind of sandstone", "pln": ["(: cnet_isa_de7d862885 (IsA firestone sandstone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firestone is a kind of flint", "pln": ["(: cnet_isa_07b7fa9b3f (IsA firestone flint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firestorm is a kind of controversy", "pln": ["(: cnet_isa_1557597c5b (IsA firestorm controversy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firestorm is a kind of storm", "pln": ["(: cnet_isa_20e3f0667c (IsA firestorm storm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firetrap is a kind of building", "pln": ["(: cnet_isa_633aa98033 (IsA firetrap building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firewall is a kind of drive", "pln": ["(: cnet_isa_c5b13a8fd1 (IsA firewall drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firewall is a kind of wall", "pln": ["(: cnet_isa_020ff96813 (IsA firewall wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firewall is a kind of security system", "pln": ["(: cnet_isa_41173923a8 (IsA firewall security_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firewater is a kind of liquor", "pln": ["(: cnet_isa_d000fdbb6e (IsA firewater liquor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fireweed is a kind of weed", "pln": ["(: cnet_isa_d7dd534e23 (IsA fireweed weed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fireweed is a kind of willowherb", "pln": ["(: cnet_isa_70437c320e (IsA fireweed willowherb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firewoman is a kind of firefighter", "pln": ["(: cnet_isa_73d0db027d (IsA firewoman firefighter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firewood is a kind of fuel", "pln": ["(: cnet_isa_918473061c (IsA firewood fuel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firework is a kind of low explosive", "pln": ["(: cnet_isa_eeb73d8ef2 (IsA firework low_explosive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firework is a kind of explosive", "pln": ["(: cnet_isa_26afdaa21e (IsA firework explosive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firing chamber is a kind of chamber", "pln": ["(: cnet_isa_809d991595 (IsA firing_chamber chamber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firing line is a kind of class", "pln": ["(: cnet_isa_ab6e33e25a (IsA firing_line class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firing line is a kind of line", "pln": ["(: cnet_isa_e3c31c78dc (IsA firing_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firing pin is a kind of striker", "pln": ["(: cnet_isa_306c17000a (IsA firing_pin striker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "firing range is a kind of practice range", "pln": ["(: cnet_isa_1e7aefb07e (IsA firing_range practice_range) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firing squad is a kind of squad", "pln": ["(: cnet_isa_8ad05c1bfb (IsA firing_squad squad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firkin is a kind of keg", "pln": ["(: cnet_isa_43f11a937b (IsA firkin keg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firkin is a kind of british capacity unit", "pln": ["(: cnet_isa_6686a57ff2 (IsA firkin british_capacity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firm is a kind of business", "pln": ["(: cnet_isa_2f28f0409c (IsA firm business) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firm omelet is a kind of omelet", "pln": ["(: cnet_isa_b2b00a756c (IsA firm_omelet omelet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firmer chisel is a kind of chisel", "pln": ["(: cnet_isa_ab5ba9ebf4 (IsA firmer_chisel chisel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firmiana is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_df39ed4146 (IsA firmiana dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "firmness is a kind of hardness", "pln": ["(: cnet_isa_7045db96b0 (IsA firmness hardness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firmness is a kind of strength", "pln": ["(: cnet_isa_b27453ec24 (IsA firmness strength) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firmware is a kind of code", "pln": ["(: cnet_isa_6d48ca1c58 (IsA firmware code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first is a kind of honour", "pln": ["(: cnet_isa_9eddc5e859 (IsA first honour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first is a kind of rank", "pln": ["(: cnet_isa_480d9c946c (IsA first rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "first is a kind of ordinal number", "pln": ["(: cnet_isa_767ff0e391 (IsA first ordinal_number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first aid is a kind of care", "pln": ["(: cnet_isa_07c30c6144 (IsA first_aid care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first aid kit is a kind of kit", "pln": ["(: cnet_isa_b72ea4991d (IsA first_aid_kit kit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "first aid station is a kind of station", "pln": ["(: cnet_isa_dfc2ef64f3 (IsA first_aid_station station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first base is a kind of first step", "pln": ["(: cnet_isa_209ef307c8 (IsA first_base first_step) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first base is a kind of position", "pln": ["(: cnet_isa_c417a2e126 (IsA first_base position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first base is a kind of base", "pln": ["(: cnet_isa_0d5de5c95c (IsA first_base base) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first baseman is a kind of infielder", "pln": ["(: cnet_isa_68aa6774ac (IsA first_baseman infielder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first blush is a kind of impression", "pln": ["(: cnet_isa_0056719d6f (IsA first_blush impression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first cause is a kind of causal agent", "pln": ["(: cnet_isa_19ffd465f1 (IsA first_cause causal_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first class is a kind of accommodation", "pln": ["(: cnet_isa_0489a18738 (IsA first_class accommodation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first class is a kind of superiority", "pln": ["(: cnet_isa_0ede77fa8e (IsA first_class superiority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first class is a kind of mail", "pln": ["(: cnet_isa_9fbed346d2 (IsA first_class mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first council of constantinople is a kind of ecumenical council", "pln": ["(: cnet_isa_52b8e8cd69 (IsA first_council_of_constantinople ecumenical_council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first council of lyon is a kind of council", "pln": ["(: cnet_isa_06cd4626f7 (IsA first_council_of_lyon council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first council of nicaea is a kind of ecumenical council", "pln": ["(: cnet_isa_29793bdab1 (IsA first_council_of_nicaea ecumenical_council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "first day of week is a kind of monday", "pln": ["(: cnet_isa_9e0d8bea1e (IsA first_day_of_week monday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first day of week is a kind of sunday", "pln": ["(: cnet_isa_f09207caa3 (IsA first_day_of_week sunday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first degree is a kind of degree", "pln": ["(: cnet_isa_4a8b7e0a6c (IsA first_degree degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first degree burn is a kind of burn", "pln": ["(: cnet_isa_603d94aff0 (IsA first_degree_burn burn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first estate is a kind of estate", "pln": ["(: cnet_isa_e6b7a7373d (IsA first_estate estate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first gear is a kind of gear", "pln": ["(: cnet_isa_24f1fdc9c6 (IsA first_gear gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first half is a kind of half", "pln": ["(: cnet_isa_2f2150e086 (IsA first_half half) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first in first out is a kind of inventory accounting", "pln": ["(: cnet_isa_1459873e32 (IsA first_in_first_out inventory_accounting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first lady is a kind of achiever", "pln": ["(: cnet_isa_94c7a9d7a8 (IsA first_lady achiever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first lady is a kind of wife", "pln": ["(: cnet_isa_b65003b502 (IsA first_lady wife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first lateran council is a kind of lateran council", "pln": ["(: cnet_isa_10323a2f75 (IsA first_lateran_council lateran_council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "first law of motion is a kind of newton s law of motion", "pln": ["(: cnet_isa_44edeaa0d0 (IsA first_law_of_motion newton_s_law_of_motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "first lieutenant is a kind of lieutenant", "pln": ["(: cnet_isa_01ebc94013 (IsA first_lieutenant lieutenant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first lord of treasury is a kind of cabinet minister", "pln": ["(: cnet_isa_98ebfae622 (IsA first_lord_of_treasury cabinet_minister) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first month of year is a kind of january", "pln": ["(: cnet_isa_3d12e379d1 (IsA first_month_of_year january) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first mortgage is a kind of mortgage", "pln": ["(: cnet_isa_ef02c24566 (IsA first_mortgage mortgage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first name is a kind of name", "pln": ["(: cnet_isa_e73420edbe (IsA first_name name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first nighter is a kind of playgoer", "pln": ["(: cnet_isa_c88083eb4c (IsA first_nighter playgoer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first offender is a kind of convict", "pln": ["(: cnet_isa_bbbde478e1 (IsA first_offender convict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first order correlation is a kind of partial correlation", "pln": ["(: cnet_isa_c71b60d6c0 (IsA first_order_correlation partial_correlation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "first period is a kind of part", "pln": ["(: cnet_isa_0158324790 (IsA first_period part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first person is a kind of person", "pln": ["(: cnet_isa_0ee2fad144 (IsA first_person person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first place finish is a kind of win", "pln": ["(: cnet_isa_7fe5ec9dc4 (IsA first_place_finish win) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first quarter is a kind of half moon", "pln": ["(: cnet_isa_ed5112303e (IsA first_quarter half_moon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "first rater is a kind of person", "pln": ["(: cnet_isa_0a059cd7be (IsA first_rater person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first reading is a kind of presentation", "pln": ["(: cnet_isa_b286375f7f (IsA first_reading presentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "first sergeant is a kind of sergeant", "pln": ["(: cnet_isa_be74cfe7e9 (IsA first_sergeant sergeant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first step is a kind of beginning", "pln": ["(: cnet_isa_153a028f12 (IsA first_step beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first strike is a kind of strike", "pln": ["(: cnet_isa_6af20261f7 (IsA first_strike strike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first three dimension is a kind of space", "pln": ["(: cnet_isa_ec6ea4d855 (IsA first_three_dimension space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first trimester is a kind of trimester", "pln": ["(: cnet_isa_0dcc724a97 (IsA first_trimester trimester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first vatican council is a kind of vatican council", "pln": ["(: cnet_isa_30196b72fd (IsA first_vatican_council vatican_council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "first visual area is a kind of cortical area", "pln": ["(: cnet_isa_8a8bbcd017 (IsA first_visual_area cortical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "first water is a kind of superiority", "pln": ["(: cnet_isa_87f03aec75 (IsA first_water superiority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "firstborn is a kind of offspring", "pln": ["(: cnet_isa_1dd2dd7027 (IsA firstborn offspring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "firth is a kind of estuary", "pln": ["(: cnet_isa_2f37ba3ad3 (IsA firth estuary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fisc is a kind of treasury", "pln": ["(: cnet_isa_beea1531c4 (IsA fisc treasury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fiscal policy is a kind of economic policy", "pln": ["(: cnet_isa_b0cabbd3a7 (IsA fiscal_policy economic_policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fiscal year is a kind of year", "pln": ["(: cnet_isa_3a601093ba (IsA fiscal_year year) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fischer s slime mushroom is a kind of slime mushroom", "pln": ["(: cnet_isa_efb6a3fccb (IsA fischer_s_slime_mushroom slime_mushroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fish is a kind of animal", "pln": ["(: cnet_isa_b44beaddbb (IsA fish animal) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fish is a kind of aquatic vertebrate", "pln": ["(: cnet_isa_1a9580b2f7 (IsA fish aquatic_vertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fish is a kind of person", "pln": ["(: cnet_isa_308ee92c1c (IsA fish person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fish is a kind of food", "pln": ["(: cnet_isa_b801cf62f0 (IsA fish food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fish and chip is a kind of dish", "pln": ["(: cnet_isa_54b8916a05 (IsA fish_and_chip dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fish cake is a kind of patty", "pln": ["(: cnet_isa_387b613035 (IsA fish_cake patty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fish chowder is a kind of chowder", "pln": ["(: cnet_isa_6e7016acac (IsA fish_chowder chowder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fish doctor is a kind of eelpout", "pln": ["(: cnet_isa_ca15f6089a (IsA fish_doctor eelpout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fish family is a kind of family", "pln": ["(: cnet_isa_48713d7456 (IsA fish_family family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fish farm is a kind of workplace", "pln": ["(: cnet_isa_437446f918 (IsA fish_farm workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fish fly is a kind of neuropteron", "pln": ["(: cnet_isa_0faa305337 (IsA fish_fly neuropteron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fish fry is a kind of cookout", "pln": ["(: cnet_isa_c4f28322e3 (IsA fish_fry cookout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fish genus is a kind of genus", "pln": ["(: cnet_isa_f6538aec00 (IsA fish_genus genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fish geranium is a kind of geranium", "pln": ["(: cnet_isa_9787262080 (IsA fish_geranium geranium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fish glue is a kind of animal product", "pln": ["(: cnet_isa_00d94075e3 (IsA fish_glue animal_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fish glue is a kind of glue", "pln": ["(: cnet_isa_12c707af6d (IsA fish_glue glue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fish house punch is a kind of punch", "pln": ["(: cnet_isa_de57441852 (IsA fish_house_punch punch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fish joint is a kind of butt joint", "pln": ["(: cnet_isa_3b24ff6ed7 (IsA fish_joint butt_joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fish knife is a kind of table knife", "pln": ["(: cnet_isa_027f85a7cd (IsA fish_knife table_knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fish ladder is a kind of passage", "pln": ["(: cnet_isa_879006f8e4 (IsA fish_ladder passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fish loaf is a kind of meat loaf", "pln": ["(: cnet_isa_b8b2bf2d91 (IsA fish_loaf meat_loaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fish louse is a kind of copepod", "pln": ["(: cnet_isa_be53a8d5d2 (IsA fish_louse copepod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fish meal is a kind of feed", "pln": ["(: cnet_isa_e904b3cd62 (IsA fish_meal feed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fish meal is a kind of organic", "pln": ["(: cnet_isa_a4cf2562b5 (IsA fish_meal organic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fish mousse is a kind of mousse", "pln": ["(: cnet_isa_cea6a3c17d (IsA fish_mousse mousse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fish oil is a kind of animal oil", "pln": ["(: cnet_isa_d92d0211d8 (IsA fish_oil animal_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fish scale is a kind of scale", "pln": ["(: cnet_isa_4be2228f1c (IsA fish_scale scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fish slice is a kind of turner", "pln": ["(: cnet_isa_a09ef8fbf3 (IsA fish_slice turner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fish specy is a kind of specy", "pln": ["(: cnet_isa_6dba774e32 (IsA fish_specy specy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fish steak is a kind of steak", "pln": ["(: cnet_isa_fe6217a721 (IsA fish_steak steak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fish stew is a kind of stew", "pln": ["(: cnet_isa_6de9362633 (IsA fish_stew stew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fish stick is a kind of dish", "pln": ["(: cnet_isa_2d4925c970 (IsA fish_stick dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fishbone is a kind of bone", "pln": ["(: cnet_isa_cd2308ad37 (IsA fishbone bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fishbowl is a kind of aquarium", "pln": ["(: cnet_isa_681cfbaf3b (IsA fishbowl aquarium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fishbowl is a kind of bowl", "pln": ["(: cnet_isa_35fe5a8136 (IsA fishbowl bowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fisher is a kind of marten", "pln": ["(: cnet_isa_c48d878192 (IsA fisher marten) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fisherman s bend is a kind of knot", "pln": ["(: cnet_isa_a3135f15a1 (IsA fisherman_s_bend knot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fisherman s knot is a kind of knot", "pln": ["(: cnet_isa_9cdd9c3233 (IsA fisherman_s_knot knot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fisherman s lure is a kind of bait", "pln": ["(: cnet_isa_c0b3c2477f (IsA fisherman_s_lure bait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fisherman is a kind of skilled worker", "pln": ["(: cnet_isa_c6196b4aee (IsA fisherman skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fishery is a kind of workplace", "pln": ["(: cnet_isa_ed44e2e88a (IsA fishery workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fishhook is a kind of hook", "pln": ["(: cnet_isa_dd02dbfe63 (IsA fishhook hook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fishing is a kind of sport", "pln": ["(: cnet_isa_5534be7a79 (IsA fishing sport) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fishing is a kind of commercial enterprise", "pln": ["(: cnet_isa_8d5177a087 (IsA fishing commercial_enterprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fishing is a kind of outdoor sport", "pln": ["(: cnet_isa_29f08d9ead (IsA fishing outdoor_sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fishing boat is a kind of vessel", "pln": ["(: cnet_isa_eb87abc7fe (IsA fishing_boat vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fishing eagle is a kind of sea eagle", "pln": ["(: cnet_isa_d561c1433d (IsA fishing_eagle sea_eagle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fishing expedition is a kind of probe", "pln": ["(: cnet_isa_3ae93f0cde (IsA fishing_expedition probe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fishing gear is a kind of gear", "pln": ["(: cnet_isa_3a2283da74 (IsA fishing_gear gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fishing license is a kind of license", "pln": ["(: cnet_isa_d3d2c044af (IsA fishing_license license) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fishing line is a kind of cord", "pln": ["(: cnet_isa_937830df67 (IsA fishing_line cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fishing rod is a kind of rod", "pln": ["(: cnet_isa_7e94a0ed72 (IsA fishing_rod rod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fishing season is a kind of season", "pln": ["(: cnet_isa_e28d81c32d (IsA fishing_season season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fishmonger is a kind of trader", "pln": ["(: cnet_isa_bcb1420f3f (IsA fishmonger trader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fishnet is a kind of net", "pln": ["(: cnet_isa_56314348d9 (IsA fishnet net) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fishpaste is a kind of spread", "pln": ["(: cnet_isa_60c62bd9cf (IsA fishpaste spread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fishplate is a kind of plate", "pln": ["(: cnet_isa_19db3d5716 (IsA fishplate plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fishpole bamboo is a kind of bamboo", "pln": ["(: cnet_isa_38879d05ac (IsA fishpole_bamboo bamboo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fishpond is a kind of pond", "pln": ["(: cnet_isa_f2c09dcf22 (IsA fishpond pond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fishtail bit is a kind of drilling bit", "pln": ["(: cnet_isa_52e27ef23c (IsA fishtail_bit drilling_bit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fishtail palm is a kind of palm", "pln": ["(: cnet_isa_e430bfccdb (IsA fishtail_palm palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fission is a kind of asexual reproduction", "pln": ["(: cnet_isa_77322a00fa (IsA fission asexual_reproduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fission is a kind of nuclear reaction", "pln": ["(: cnet_isa_900155b214 (IsA fission nuclear_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fissiparity is a kind of divisibility", "pln": ["(: cnet_isa_04ea290d79 (IsA fissiparity divisibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fissiparity is a kind of asexual reproduction", "pln": ["(: cnet_isa_52205160c8 (IsA fissiparity asexual_reproduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fissiped mammal is a kind of carnivore", "pln": ["(: cnet_isa_f33acde14b (IsA fissiped_mammal carnivore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fissipedia is a kind of placental", "pln": ["(: cnet_isa_6b36f2c292 (IsA fissipedia placental) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fissure is a kind of groove", "pln": ["(: cnet_isa_febd1ba68f (IsA fissure groove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fissure of rolando is a kind of sulcus", "pln": ["(: cnet_isa_f00de64a1c (IsA fissure_of_rolando sulcus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fissure of sylvius is a kind of sulcus", "pln": ["(: cnet_isa_5e0c4c3e0e (IsA fissure_of_sylvius sulcus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fissurella is a kind of mollusk genus", "pln": ["(: cnet_isa_e21082cc84 (IsA fissurella mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fissurellidae is a kind of mollusk family", "pln": ["(: cnet_isa_67e6fbd996 (IsA fissurellidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fist is a kind of hand", "pln": ["(: cnet_isa_963e19a325 (IsA fist hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fistfight is a kind of fight", "pln": ["(: cnet_isa_cb96b94641 (IsA fistfight fight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fistmele is a kind of linear unit", "pln": ["(: cnet_isa_0d5eac4b52 (IsA fistmele linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fistula is a kind of passage", "pln": ["(: cnet_isa_5685fcd103 (IsA fistula passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fistularia is a kind of fish genus", "pln": ["(: cnet_isa_70154d97ee (IsA fistularia fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fistulariidae is a kind of fish family", "pln": ["(: cnet_isa_531a5560b2 (IsA fistulariidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fistulina is a kind of fungus genus", "pln": ["(: cnet_isa_0e94adb0c8 (IsA fistulina fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fistulinaceae is a kind of fungus family", "pln": ["(: cnet_isa_5e49ed6148 (IsA fistulinaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fistulous wither is a kind of animal disease", "pln": ["(: cnet_isa_46342702d4 (IsA fistulous_wither animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fit is a kind of manner", "pln": ["(: cnet_isa_d4bf45270c (IsA fit manner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fit is a kind of bad temper", "pln": ["(: cnet_isa_3737159a55 (IsA fit bad_temper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fitfulness is a kind of irregularity", "pln": ["(: cnet_isa_9d09ffe092 (IsA fitfulness irregularity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fitment is a kind of furniture", "pln": ["(: cnet_isa_7d3f3f4338 (IsA fitment furniture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fitness is a kind of competence", "pln": ["(: cnet_isa_7ee41a199b (IsA fitness competence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fitness is a kind of suitability", "pln": ["(: cnet_isa_f94d5ec6fa (IsA fitness suitability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fitness is a kind of condition", "pln": ["(: cnet_isa_d9ed7cdaed (IsA fitness condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fit and start is a kind of burst", "pln": ["(: cnet_isa_9d4ee37ef8 (IsA fit_and_start burst) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fitted sheet is a kind of sheet", "pln": ["(: cnet_isa_bee23195e9 (IsA fitted_sheet sheet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fitter is a kind of tailor", "pln": ["(: cnet_isa_d766eb2eb4 (IsA fitter tailor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fitting is a kind of test", "pln": ["(: cnet_isa_20bf9a1122 (IsA fitting test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fitting is a kind of accessory", "pln": ["(: cnet_isa_2f297738b6 (IsA fitting accessory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "five is a kind of digit", "pln": ["(: cnet_isa_8b3936063f (IsA five digit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "five and four is a kind of number", "pln": ["(: cnet_isa_b50609d9b3 (IsA five_and_four number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "five hitter is a kind of baseball", "pln": ["(: cnet_isa_cc9df58526 (IsA five_hitter baseball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "five hundred is a kind of large integer", "pln": ["(: cnet_isa_f5ba6af3e7 (IsA five_hundred large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "five point bishop s cap is a kind of miterwort", "pln": ["(: cnet_isa_e5362f7fb8 (IsA five_point_bishop_s_cap miterwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "five spice powder is a kind of spice", "pln": ["(: cnet_isa_07cf42f4d2 (IsA five_spice_powder spice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "five spot is a kind of dice", "pln": ["(: cnet_isa_a90d2b3296 (IsA five_spot dice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "five spot is a kind of domino", "pln": ["(: cnet_isa_09bf626de5 (IsA five_spot domino) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "five spot is a kind of spot", "pln": ["(: cnet_isa_a7b4bb0945 (IsA five_spot spot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "five spot is a kind of nemophila", "pln": ["(: cnet_isa_25e30b9718 (IsA five_spot nemophila) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fivepence is a kind of coin", "pln": ["(: cnet_isa_a7b302ecaa (IsA fivepence coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fiver is a kind of bill", "pln": ["(: cnet_isa_f72f6ac6be (IsA fiver bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "five is a kind of court game", "pln": ["(: cnet_isa_1e6e303cfa (IsA five court_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fix is a kind of exemption", "pln": ["(: cnet_isa_b6bfb56c8c (IsA fix exemption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fix is a kind of intravenous injection", "pln": ["(: cnet_isa_7078e86794 (IsA fix intravenous_injection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fix is a kind of difficulty", "pln": ["(: cnet_isa_dc921e67c4 (IsA fix difficulty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fixation is a kind of fastening", "pln": ["(: cnet_isa_cb38b69293 (IsA fixation fastening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fixation is a kind of preservation", "pln": ["(: cnet_isa_4770e220e1 (IsA fixation preservation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fixative is a kind of varnish", "pln": ["(: cnet_isa_ebfe812ec4 (IsA fixative varnish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fixative is a kind of fixing agent", "pln": ["(: cnet_isa_35ab50b557 (IsA fixative fixing_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fixed charge is a kind of charge", "pln": ["(: cnet_isa_13db88fe3c (IsA fixed_charge charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fixed combination drug is a kind of medicine", "pln": ["(: cnet_isa_5abab675b2 (IsA fixed_combination_drug medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fixed cycle operation is a kind of operation", "pln": ["(: cnet_isa_32162a5a34 (IsA fixed_cycle_operation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fixed intonation is a kind of intonation", "pln": ["(: cnet_isa_653f192588 (IsA fixed_intonation intonation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fixed oil is a kind of oil", "pln": ["(: cnet_isa_bfa8c0759d (IsA fixed_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fixed phagocyte is a kind of phagocyte", "pln": ["(: cnet_isa_d5fdfe70d0 (IsA fixed_phagocyte phagocyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fixed point notation is a kind of mathematical notation", "pln": ["(: cnet_isa_e6f3833196 (IsA fixed_point_notation mathematical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fixed point number is a kind of number", "pln": ["(: cnet_isa_ec88cc256a (IsA fixed_point_number number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fixed star is a kind of star", "pln": ["(: cnet_isa_87017e1c16 (IsA fixed_star star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fixedness is a kind of changelessness", "pln": ["(: cnet_isa_ae5b55d8f1 (IsA fixedness changelessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fixer is a kind of important person", "pln": ["(: cnet_isa_31c46959c7 (IsA fixer important_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fixer upper is a kind of dwelling", "pln": ["(: cnet_isa_fe03021f23 (IsA fixer_upper dwelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fixing agent is a kind of compound", "pln": ["(: cnet_isa_e6064e6435 (IsA fixing_agent compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fixing is a kind of accessory", "pln": ["(: cnet_isa_afb9db7e2d (IsA fixing accessory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fixture is a kind of artifact", "pln": ["(: cnet_isa_c633fcb3d8 (IsA fixture artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fizgig is a kind of firework", "pln": ["(: cnet_isa_6f041fbe7e (IsA fizgig firework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fizz is a kind of beverage", "pln": ["(: cnet_isa_cb73ffa53d (IsA fizz beverage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fjord is a kind of inlet", "pln": ["(: cnet_isa_a8d0348611 (IsA fjord inlet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flab is a kind of adipose tissue", "pln": ["(: cnet_isa_e946ec7dfa (IsA flab adipose_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flabbiness is a kind of softness", "pln": ["(: cnet_isa_c14fdcb122 (IsA flabbiness softness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flaccid bladder is a kind of bladder disorder", "pln": ["(: cnet_isa_7c84ce2687 (IsA flaccid_bladder bladder_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flaccid paralysis is a kind of nervous disorder", "pln": ["(: cnet_isa_cbc36e1bfd (IsA flaccid_paralysis nervous_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flacourtia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_9f2aeda85b (IsA flacourtia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flacourtiaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_cbe249440d (IsA flacourtiaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flag is a kind of tail", "pln": ["(: cnet_isa_91f61b356f (IsA flag tail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flag is a kind of emblem", "pln": ["(: cnet_isa_1411efac71 (IsA flag emblem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flag is a kind of paving stone", "pln": ["(: cnet_isa_2ad52ee16f (IsA flag paving_stone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flag is a kind of visual signal", "pln": ["(: cnet_isa_29a41654d8 (IsA flag visual_signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flag captain is a kind of captain", "pln": ["(: cnet_isa_939586556b (IsA flag_captain captain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flag day is a kind of day", "pln": ["(: cnet_isa_3320df06ad (IsA flag_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flag officer is a kind of commissioned naval officer", "pln": ["(: cnet_isa_442cf37be9 (IsA flag_officer commissioned_naval_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flag rank is a kind of military rank", "pln": ["(: cnet_isa_1ffcd97800 (IsA flag_rank military_rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flag smut is a kind of smut", "pln": ["(: cnet_isa_5279eb9f25 (IsA flag_smut smut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flag smut fungus is a kind of smut", "pln": ["(: cnet_isa_09de2eaaf3 (IsA flag_smut_fungus smut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flag waving is a kind of demagoguery", "pln": ["(: cnet_isa_dbfcaa51d6 (IsA flag_waving demagoguery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flagellant is a kind of masochist", "pln": ["(: cnet_isa_dad4e903e2 (IsA flagellant masochist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flagellant is a kind of penitent", "pln": ["(: cnet_isa_14c8e2cd88 (IsA flagellant penitent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flagellate is a kind of protozoan", "pln": ["(: cnet_isa_6f7c863ce8 (IsA flagellate protozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flagellated cell is a kind of cell", "pln": ["(: cnet_isa_ca15a7816f (IsA flagellated_cell cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flagellation is a kind of beating", "pln": ["(: cnet_isa_3cab9fba32 (IsA flagellation beating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flagellum is a kind of process", "pln": ["(: cnet_isa_f0f31f950e (IsA flagellum process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flageolet is a kind of fipple flute", "pln": ["(: cnet_isa_d6c53dad2d (IsA flageolet fipple_flute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flageolet is a kind of common bean", "pln": ["(: cnet_isa_cc475249f4 (IsA flageolet common_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flagfish is a kind of killifish", "pln": ["(: cnet_isa_c53fdbf5ae (IsA flagfish killifish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flagging is a kind of walk", "pln": ["(: cnet_isa_6cf093f3ed (IsA flagging walk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flagging is a kind of collection", "pln": ["(: cnet_isa_a92ab3c85a (IsA flagging collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flagon is a kind of vessel", "pln": ["(: cnet_isa_d7d534a063 (IsA flagon vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flagpole is a kind of staff", "pln": ["(: cnet_isa_076c104597 (IsA flagpole staff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flagship is a kind of ship", "pln": ["(: cnet_isa_d159c4e53d (IsA flagship ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flagship is a kind of thing", "pln": ["(: cnet_isa_a76459a7ee (IsA flagship thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flail is a kind of implement", "pln": ["(: cnet_isa_7c8c6ea26b (IsA flail implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flair is a kind of endowment", "pln": ["(: cnet_isa_562a2e217b (IsA flair endowment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flak catcher is a kind of spokesperson", "pln": ["(: cnet_isa_b84f6092d8 (IsA flak_catcher spokesperson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flakiness is a kind of brittleness", "pln": ["(: cnet_isa_8bfcefeb05 (IsA flakiness brittleness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flambeau is a kind of torch", "pln": ["(: cnet_isa_d0ae9ae422 (IsA flambeau torch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flamboyance is a kind of ornateness", "pln": ["(: cnet_isa_824b3f6c0d (IsA flamboyance ornateness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flame cell is a kind of excretory organ", "pln": ["(: cnet_isa_80babe7ea3 (IsA flame_cell excretory_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flame fish is a kind of cardinalfish", "pln": ["(: cnet_isa_d786f5c683 (IsA flame_fish cardinalfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flame flower is a kind of wildflower", "pln": ["(: cnet_isa_a44ebc37f6 (IsA flame_flower wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flame out is a kind of failure", "pln": ["(: cnet_isa_ec7f870c09 (IsA flame_out failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flame out is a kind of power outage", "pln": ["(: cnet_isa_2dc9c028bc (IsA flame_out power_outage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flame pea is a kind of shrub", "pln": ["(: cnet_isa_a646336939 (IsA flame_pea shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flame tokay is a kind of tokay", "pln": ["(: cnet_isa_3b1f1235e7 (IsA flame_tokay tokay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flame tree is a kind of bottle tree", "pln": ["(: cnet_isa_128f5dbfe7 (IsA flame_tree bottle_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flame tree is a kind of parasitic plant", "pln": ["(: cnet_isa_775dab5835 (IsA flame_tree parasitic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flamen is a kind of priest", "pln": ["(: cnet_isa_135e039dfb (IsA flamen priest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flamenco is a kind of social dancing", "pln": ["(: cnet_isa_f6b683a80e (IsA flamenco social_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flamenco is a kind of dance music", "pln": ["(: cnet_isa_38505d4044 (IsA flamenco dance_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flamethrower is a kind of weapon", "pln": ["(: cnet_isa_a881a26426 (IsA flamethrower weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flamingo is a kind of bird", "pln": ["(: cnet_isa_1cb5dac1de (IsA flamingo bird) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flamingo is a kind of wading bird", "pln": ["(: cnet_isa_e03e5ef47d (IsA flamingo wading_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flamingo flower is a kind of anthurium", "pln": ["(: cnet_isa_6b472aba64 (IsA flamingo_flower anthurium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flammulina is a kind of fungus genus", "pln": ["(: cnet_isa_e333c9e2b4 (IsA flammulina fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flan is a kind of dessert", "pln": ["(: cnet_isa_9d719cf4c2 (IsA flan dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flange is a kind of projection", "pln": ["(: cnet_isa_116c9e78cb (IsA flange projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flank is a kind of body part", "pln": ["(: cnet_isa_8666e39687 (IsA flank body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flank is a kind of cut of beef", "pln": ["(: cnet_isa_f88de41bdc (IsA flank cut_of_beef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flank is a kind of formation", "pln": ["(: cnet_isa_3f1ec710dd (IsA flank formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flank is a kind of subfigure", "pln": ["(: cnet_isa_fa4c0730b0 (IsA flank subfigure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flank steak is a kind of beefsteak", "pln": ["(: cnet_isa_f293c06a7b (IsA flank_steak beefsteak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flanker is a kind of soldier", "pln": ["(: cnet_isa_c6a6073e7c (IsA flanker soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flanker back is a kind of back", "pln": ["(: cnet_isa_101ef4f91f (IsA flanker_back back) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flannel is a kind of fabric", "pln": ["(: cnet_isa_fff2c7c7e2 (IsA flannel fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flannel is a kind of pair of trouser", "pln": ["(: cnet_isa_5b869de56b (IsA flannel pair_of_trouser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flannelbush is a kind of shrub", "pln": ["(: cnet_isa_883965ce15 (IsA flannelbush shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flannelette is a kind of fabric", "pln": ["(: cnet_isa_1775db8219 (IsA flannelette fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flap is a kind of airfoil", "pln": ["(: cnet_isa_acc6d51e3b (IsA flap airfoil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flap is a kind of covering", "pln": ["(: cnet_isa_b99a6ce133 (IsA flap covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flap is a kind of animal tissue", "pln": ["(: cnet_isa_cb851e31e4 (IsA flap animal_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flap is a kind of wave", "pln": ["(: cnet_isa_6b77a5cf5f (IsA flap wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flapper is a kind of girl", "pln": ["(: cnet_isa_e20e93e979 (IsA flapper girl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flare is a kind of device", "pln": ["(: cnet_isa_b976dce838 (IsA flare device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flare is a kind of fly", "pln": ["(: cnet_isa_8e96905550 (IsA flare fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flare is a kind of effusion", "pln": ["(: cnet_isa_6b4ea59497 (IsA flare effusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flare is a kind of visual signal", "pln": ["(: cnet_isa_ccf6b57bec (IsA flare visual_signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flare is a kind of reflection", "pln": ["(: cnet_isa_03a6c3484b (IsA flare reflection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flare is a kind of fire", "pln": ["(: cnet_isa_01803f8575 (IsA flare fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flare is a kind of shape", "pln": ["(: cnet_isa_301b9020cb (IsA flare shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flare is a kind of attack", "pln": ["(: cnet_isa_b52859deb5 (IsA flare attack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flare is a kind of erythroderma", "pln": ["(: cnet_isa_d5dcb03f99 (IsA flare erythroderma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flare pass is a kind of forward pass", "pln": ["(: cnet_isa_e76af065d9 (IsA flare_pass forward_pass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flare path is a kind of airstrip", "pln": ["(: cnet_isa_69a6c927b1 (IsA flare_path airstrip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flare star is a kind of red dwarf", "pln": ["(: cnet_isa_1eead279ce (IsA flare_star red_dwarf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flash is a kind of lamp", "pln": ["(: cnet_isa_43cc9640b9 (IsA flash lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flash is a kind of patch", "pln": ["(: cnet_isa_5ef14bf634 (IsA flash patch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flash is a kind of photographic equipment", "pln": ["(: cnet_isa_2a825cfafa (IsA flash photographic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flash is a kind of brightness", "pln": ["(: cnet_isa_0ebcc0ef1b (IsA flash brightness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flash is a kind of insight", "pln": ["(: cnet_isa_a21f9dbf34 (IsA flash insight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flash is a kind of experience", "pln": ["(: cnet_isa_568a5cb0ef (IsA flash experience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flash is a kind of happening", "pln": ["(: cnet_isa_cd5999df39 (IsA flash happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flash camera is a kind of camera", "pln": ["(: cnet_isa_1b7ce724bc (IsA flash_camera camera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flash card is a kind of poster", "pln": ["(: cnet_isa_1df678c24c (IsA flash_card poster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flash flood is a kind of flood", "pln": ["(: cnet_isa_35a8852eaa (IsA flash_flood flood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flash forward is a kind of transition", "pln": ["(: cnet_isa_3620cea3fb (IsA flash_forward transition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flash in pan is a kind of failure", "pln": ["(: cnet_isa_8d9af24e6c (IsA flash_in_pan failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flash memory is a kind of non volatile storage", "pln": ["(: cnet_isa_50b4cc5ec8 (IsA flash_memory non_volatile_storage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flash point is a kind of temperature", "pln": ["(: cnet_isa_52fe237073 (IsA flash_point temperature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flash point is a kind of criticality", "pln": ["(: cnet_isa_6f86d08bc6 (IsA flash_point criticality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flash welding is a kind of butt welding", "pln": ["(: cnet_isa_f02285ed92 (IsA flash_welding butt_welding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flashback is a kind of recurrence", "pln": ["(: cnet_isa_1c8b2025ee (IsA flashback recurrence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flashback is a kind of transition", "pln": ["(: cnet_isa_29ef2db5da (IsA flashback transition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flashboard is a kind of boarding", "pln": ["(: cnet_isa_2b965d7163 (IsA flashboard boarding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flasher is a kind of electrical device", "pln": ["(: cnet_isa_7363c0d2c9 (IsA flasher electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flashiness is a kind of tastelessness", "pln": ["(: cnet_isa_4ae57f82c8 (IsA flashiness tastelessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flashing is a kind of sheet metal", "pln": ["(: cnet_isa_df4643202e (IsA flashing sheet_metal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flashlight is a kind of electric lamp", "pln": ["(: cnet_isa_c7ebe6e172 (IsA flashlight electric_lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flashlight battery is a kind of dry battery", "pln": ["(: cnet_isa_4ec54ec9ee (IsA flashlight_battery dry_battery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flashlight fish is a kind of spiny finned fish", "pln": ["(: cnet_isa_fe8d950796 (IsA flashlight_fish spiny_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flashover is a kind of discharge", "pln": ["(: cnet_isa_46eef9c9a2 (IsA flashover discharge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flask is a kind of container", "pln": ["(: cnet_isa_94a1c3fce1 (IsA flask container) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flask is a kind of bottle", "pln": ["(: cnet_isa_5568cfb988 (IsA flask bottle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flask is a kind of containerful", "pln": ["(: cnet_isa_7e594b514c (IsA flask containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flat is a kind of box", "pln": ["(: cnet_isa_82ebc183a7 (IsA flat box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flat is a kind of pneumatic tire", "pln": ["(: cnet_isa_b88544930b (IsA flat pneumatic_tire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flat is a kind of scenery", "pln": ["(: cnet_isa_17f0cee5e6 (IsA flat scenery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flat is a kind of musical notation", "pln": ["(: cnet_isa_102bd2bc10 (IsA flat musical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flat is a kind of plain", "pln": ["(: cnet_isa_c2935ed0c4 (IsA flat plain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flat arch is a kind of arch", "pln": ["(: cnet_isa_35734c7e78 (IsA flat_arch arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flat bench is a kind of bench", "pln": ["(: cnet_isa_e9acb22835 (IsA flat_bench bench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flat bone is a kind of cut of beef", "pln": ["(: cnet_isa_9a1b235455 (IsA flat_bone cut_of_beef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flat coat is a kind of coat of paint", "pln": ["(: cnet_isa_815676b4be (IsA flat_coat coat_of_paint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flat coated retriever is a kind of retriever", "pln": ["(: cnet_isa_37b56a3b75 (IsA flat_coated_retriever retriever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flat file is a kind of file", "pln": ["(: cnet_isa_2eb923ab69 (IsA flat_file file) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flat panel display is a kind of display", "pln": ["(: cnet_isa_7e6c84c260 (IsA flat_panel_display display) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flat pea is a kind of everlasting pea", "pln": ["(: cnet_isa_e83b98a338 (IsA flat_pea everlasting_pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flat pea is a kind of shrub", "pln": ["(: cnet_isa_b84b355c6e (IsA flat_pea shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flat tip screwdriver is a kind of screwdriver", "pln": ["(: cnet_isa_6750b3af4c (IsA flat_tip_screwdriver screwdriver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flat topped white aster is a kind of aster", "pln": ["(: cnet_isa_e803e73922 (IsA flat_topped_white_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flatbed is a kind of truck bed", "pln": ["(: cnet_isa_a83e240565 (IsA flatbed truck_bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flatbed press is a kind of press", "pln": ["(: cnet_isa_2b9c1667f1 (IsA flatbed_press press) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flatbread is a kind of bread", "pln": ["(: cnet_isa_2e568bb07f (IsA flatbread bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flatbrod is a kind of flatbread", "pln": ["(: cnet_isa_fc675793a4 (IsA flatbrod flatbread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flatcar is a kind of freight car", "pln": ["(: cnet_isa_5676756654 (IsA flatcar freight_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flatfish is a kind of spiny finned fish", "pln": ["(: cnet_isa_d02ab9104d (IsA flatfish spiny_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flatfish is a kind of saltwater fish", "pln": ["(: cnet_isa_67c8b54b72 (IsA flatfish saltwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flatfoot is a kind of foot", "pln": ["(: cnet_isa_3d4411fca0 (IsA flatfoot foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flatfoot is a kind of lawman", "pln": ["(: cnet_isa_bbab52d17c (IsA flatfoot lawman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flathead is a kind of percoid fish", "pln": ["(: cnet_isa_5143020229 (IsA flathead percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flathead is a kind of scorpaenoid", "pln": ["(: cnet_isa_f1bf1f76f5 (IsA flathead scorpaenoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flathead catfish is a kind of catfish", "pln": ["(: cnet_isa_fd76f15e2d (IsA flathead_catfish catfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flatiron is a kind of iron", "pln": ["(: cnet_isa_4d8f31931c (IsA flatiron iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flatlet is a kind of apartment", "pln": ["(: cnet_isa_acb83643d7 (IsA flatlet apartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flatliner is a kind of movie", "pln": ["(: cnet_isa_b37cfbd4cb (IsA flatliner movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flatmate is a kind of friend", "pln": ["(: cnet_isa_8bf084218f (IsA flatmate friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flatness is a kind of dullness", "pln": ["(: cnet_isa_4aaaba284b (IsA flatness dullness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flatness is a kind of taste", "pln": ["(: cnet_isa_ee8a2bb0f6 (IsA flatness taste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flatness is a kind of expressive style", "pln": ["(: cnet_isa_aacadcb08b (IsA flatness expressive_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flat is a kind of footwear", "pln": ["(: cnet_isa_39afb3f867 (IsA flat footwear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flatterer is a kind of follower", "pln": ["(: cnet_isa_a2e7328a37 (IsA flatterer follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flattery is a kind of compliment", "pln": ["(: cnet_isa_9458aff78a (IsA flattery compliment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flatulence is a kind of physiological state", "pln": ["(: cnet_isa_fc5a0538e5 (IsA flatulence physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flatware is a kind of silverware", "pln": ["(: cnet_isa_2796e8892f (IsA flatware silverware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flatware is a kind of tableware", "pln": ["(: cnet_isa_5d2b5490d1 (IsA flatware tableware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flatwork is a kind of ironing", "pln": ["(: cnet_isa_9d91360415 (IsA flatwork ironing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flatworm is a kind of worm", "pln": ["(: cnet_isa_2783f5e905 (IsA flatworm worm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flaunt is a kind of display", "pln": ["(: cnet_isa_cfbc21bdf4 (IsA flaunt display) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flavian dynasty is a kind of dynasty", "pln": ["(: cnet_isa_830155257b (IsA flavian_dynasty dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flavin is a kind of ketone", "pln": ["(: cnet_isa_6890e20947 (IsA flavin ketone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flaviviridae is a kind of arbovirus", "pln": ["(: cnet_isa_1016fba038 (IsA flaviviridae arbovirus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flavivirus is a kind of animal virus", "pln": ["(: cnet_isa_5f89b77a9a (IsA flavivirus animal_virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flavone is a kind of compound", "pln": ["(: cnet_isa_417349ae88 (IsA flavone compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flavonoid is a kind of phytochemical", "pln": ["(: cnet_isa_addd09ad41 (IsA flavonoid phytochemical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flavonoid is a kind of pigment", "pln": ["(: cnet_isa_ab7171756b (IsA flavonoid pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flavor is a kind of kind", "pln": ["(: cnet_isa_2eaedf08b3 (IsA flavor kind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flavored coffee is a kind of recent popular luxury", "pln": ["(: cnet_isa_ccb3bc82e5 (IsA flavored_coffee recent_popular_luxury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flavorer is a kind of ingredient", "pln": ["(: cnet_isa_874ed067db (IsA flavorer ingredient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flavorlessness is a kind of unappetizingness", "pln": ["(: cnet_isa_80a4593f9b (IsA flavorlessness unappetizingness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flavorsomeness is a kind of appetizingness", "pln": ["(: cnet_isa_4ca2001d84 (IsA flavorsomeness appetizingness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flaw is a kind of failing", "pln": ["(: cnet_isa_7cb55906f5 (IsA flaw failing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flaw is a kind of imperfection", "pln": ["(: cnet_isa_9772b4f8a7 (IsA flaw imperfection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flax is a kind of herb", "pln": ["(: cnet_isa_bc0405548b (IsA flax herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flax is a kind of plant fiber", "pln": ["(: cnet_isa_c2b2cbc101 (IsA flax plant_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flax rust is a kind of rust", "pln": ["(: cnet_isa_65ab9ad559 (IsA flax_rust rust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flea is a kind of ectoparasite", "pln": ["(: cnet_isa_b895645fff (IsA flea ectoparasite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flea is a kind of insect", "pln": ["(: cnet_isa_3aec783572 (IsA flea insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flea beetle is a kind of leaf beetle", "pln": ["(: cnet_isa_22675e0cdb (IsA flea_beetle leaf_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flea bite is a kind of troublesomeness", "pln": ["(: cnet_isa_850ff2b684 (IsA flea_bite troublesomeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flea bite is a kind of sting", "pln": ["(: cnet_isa_07e64c8e8b (IsA flea_bite sting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flea market is a kind of open air market", "pln": ["(: cnet_isa_1a2c44763a (IsA flea_market open_air_market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fleabag is a kind of hotel", "pln": ["(: cnet_isa_1d0951a03f (IsA fleabag hotel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fleabane is a kind of herb", "pln": ["(: cnet_isa_b709dae6f9 (IsA fleabane herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fleabane is a kind of wildflower", "pln": ["(: cnet_isa_7e4266a64e (IsA fleabane wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fleapit is a kind of cinema", "pln": ["(: cnet_isa_6ebd3d3cfd (IsA fleapit cinema) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fleawort is a kind of plantain", "pln": ["(: cnet_isa_aae5caf5af (IsA fleawort plantain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fledgling is a kind of young bird", "pln": ["(: cnet_isa_1c26eca92c (IsA fledgling young_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fleece is a kind of fabric", "pln": ["(: cnet_isa_a818319eb2 (IsA fleece fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fleece is a kind of wool", "pln": ["(: cnet_isa_0ee2e2ff67 (IsA fleece wool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fleer is a kind of contempt", "pln": ["(: cnet_isa_772b22f62d (IsA fleer contempt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fleet is a kind of collection", "pln": ["(: cnet_isa_230f51ffac (IsA fleet collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fleet is a kind of steamship company", "pln": ["(: cnet_isa_a213d9598d (IsA fleet steamship_company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fleet admiral is a kind of flag officer", "pln": ["(: cnet_isa_cd7d39eb90 (IsA fleet_admiral flag_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fleet ballistic missile submarine is a kind of submarine", "pln": ["(: cnet_isa_b6902948b6 (IsA fleet_ballistic_missile_submarine submarine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fleet street is a kind of journalism", "pln": ["(: cnet_isa_482f953e29 (IsA fleet_street journalism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fleetness is a kind of celerity", "pln": ["(: cnet_isa_7e228342ca (IsA fleetness celerity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fleming is a kind of belgian", "pln": ["(: cnet_isa_8caa5a43d4 (IsA fleming belgian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flemish is a kind of dutch", "pln": ["(: cnet_isa_33849c2041 (IsA flemish dutch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flemish is a kind of ethnic group", "pln": ["(: cnet_isa_1704368978 (IsA flemish ethnic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flesh is a kind of color", "pln": ["(: cnet_isa_09437d81c9 (IsA flesh color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flesh is a kind of animal tissue", "pln": ["(: cnet_isa_63588eadee (IsA flesh animal_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flesh fly is a kind of fly", "pln": ["(: cnet_isa_c1a2b59d2a (IsA flesh_fly fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flesh wound is a kind of wound", "pln": ["(: cnet_isa_f4817470f2 (IsA flesh_wound wound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fleshiness is a kind of fatness", "pln": ["(: cnet_isa_55f6fb1162 (IsA fleshiness fatness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fleur de lis is a kind of charge", "pln": ["(: cnet_isa_20e8a68d05 (IsA fleur_de_lis charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flex is a kind of flexion", "pln": ["(: cnet_isa_19cb7f4e40 (IsA flex flexion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flexibility is a kind of adaptability", "pln": ["(: cnet_isa_43fedd3cb9 (IsA flexibility adaptability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flexibility is a kind of malleability", "pln": ["(: cnet_isa_309b0bbd23 (IsA flexibility malleability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flexion is a kind of bending", "pln": ["(: cnet_isa_b36741ab7e (IsA flexion bending) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flexor muscle is a kind of skeletal muscle", "pln": ["(: cnet_isa_7d1982a992 (IsA flexor_muscle skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flexure is a kind of physiological state", "pln": ["(: cnet_isa_a0772e1425 (IsA flexure physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flibbertigibbet is a kind of fool", "pln": ["(: cnet_isa_c8f566a4fa (IsA flibbertigibbet fool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flick is a kind of stroke", "pln": ["(: cnet_isa_76e3e26b3f (IsA flick stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flick is a kind of contact", "pln": ["(: cnet_isa_4568ed81ba (IsA flick contact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flicker is a kind of woodpecker", "pln": ["(: cnet_isa_e1b6627297 (IsA flicker woodpecker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flicker is a kind of flash", "pln": ["(: cnet_isa_76960da057 (IsA flicker flash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flickertail is a kind of ground squirrel", "pln": ["(: cnet_isa_5af919801f (IsA flickertail ground_squirrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flier is a kind of traveler", "pln": ["(: cnet_isa_286390b830 (IsA flier traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fly is a kind of insect", "pln": ["(: cnet_isa_dea0294d38 (IsA fly insect) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fly is a kind of space", "pln": ["(: cnet_isa_a5b62c3f8c (IsA fly space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flight is a kind of air travel", "pln": ["(: cnet_isa_e315603969 (IsA flight air_travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flight is a kind of trip", "pln": ["(: cnet_isa_137ac1947c (IsA flight trip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flight is a kind of stairway", "pln": ["(: cnet_isa_9a3625560b (IsA flight stairway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flight is a kind of creativity", "pln": ["(: cnet_isa_7dec8cc42a (IsA flight creativity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flight is a kind of air unit", "pln": ["(: cnet_isa_424c8d2fe4 (IsA flight air_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flight is a kind of flock", "pln": ["(: cnet_isa_bd13f6996c (IsA flight flock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flight is a kind of formation", "pln": ["(: cnet_isa_5d5afa3a77 (IsA flight formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flight control is a kind of control", "pln": ["(: cnet_isa_b99c3c6fa0 (IsA flight_control control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flight deck is a kind of deck", "pln": ["(: cnet_isa_b91339c68b (IsA flight_deck deck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flight engineer is a kind of aircrewman", "pln": ["(: cnet_isa_ea5bd154fa (IsA flight_engineer aircrewman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flight feather is a kind of feather", "pln": ["(: cnet_isa_212185a00e (IsA flight_feather feather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flight line is a kind of line", "pln": ["(: cnet_isa_eeae84842e (IsA flight_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flight maneuver is a kind of maneuver", "pln": ["(: cnet_isa_6fd85043b3 (IsA flight_maneuver maneuver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flight path is a kind of path", "pln": ["(: cnet_isa_081b7c9121 (IsA flight_path path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flight simulator is a kind of simulator", "pln": ["(: cnet_isa_aabc4c8590 (IsA flight_simulator simulator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flight surgeon is a kind of medical officer", "pln": ["(: cnet_isa_2d77c003ca (IsA flight_surgeon medical_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flightiness is a kind of irresponsibility", "pln": ["(: cnet_isa_d106ecca63 (IsA flightiness irresponsibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flimsiness is a kind of weakness", "pln": ["(: cnet_isa_99aedb2fe0 (IsA flimsiness weakness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flinder is a kind of collection", "pln": ["(: cnet_isa_1f30a302bc (IsA flinder collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flindersia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_7baa58695c (IsA flindersia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fling is a kind of throw", "pln": ["(: cnet_isa_cecbf7b144 (IsA fling throw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flint is a kind of silica", "pln": ["(: cnet_isa_8c3df5c924 (IsA flint silica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flint corn is a kind of field corn", "pln": ["(: cnet_isa_1c015a19c4 (IsA flint_corn field_corn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flintlock is a kind of gunlock", "pln": ["(: cnet_isa_e630020412 (IsA flintlock gunlock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flintlock is a kind of muzzle loader", "pln": ["(: cnet_isa_f123dcc4e7 (IsA flintlock muzzle_loader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flintstone is a kind of flint", "pln": ["(: cnet_isa_1f686fcbee (IsA flintstone flint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flip is a kind of dive", "pln": ["(: cnet_isa_cd2964bb60 (IsA flip dive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flip is a kind of throw", "pln": ["(: cnet_isa_733d3aeaf5 (IsA flip throw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flip is a kind of mixed drink", "pln": ["(: cnet_isa_07305e3264 (IsA flip mixed_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flip chart is a kind of chart", "pln": ["(: cnet_isa_d4040746c1 (IsA flip_chart chart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flip flop is a kind of somersault", "pln": ["(: cnet_isa_259b20f608 (IsA flip_flop somersault) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flip flop is a kind of circuit", "pln": ["(: cnet_isa_97ba94da99 (IsA flip_flop circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flip flop is a kind of sandal", "pln": ["(: cnet_isa_112a49811f (IsA flip_flop sandal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flip side is a kind of opposition", "pln": ["(: cnet_isa_a7779c7098 (IsA flip_side opposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flippancy is a kind of levity", "pln": ["(: cnet_isa_382b0aa290 (IsA flippancy levity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flipper is a kind of limb", "pln": ["(: cnet_isa_3037c83615 (IsA flipper limb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flipper is a kind of shoe", "pln": ["(: cnet_isa_9ba2283aac (IsA flipper shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flirt is a kind of play", "pln": ["(: cnet_isa_214a0fa14a (IsA flirt play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flit is a kind of motion", "pln": ["(: cnet_isa_fa673cdd36 (IsA flit motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flit is a kind of move", "pln": ["(: cnet_isa_035083bc49 (IsA flit move) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flitch is a kind of bacon", "pln": ["(: cnet_isa_a9b7a62fa7 (IsA flitch bacon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flitch is a kind of fish steak", "pln": ["(: cnet_isa_15691c8c22 (IsA flitch fish_steak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "float is a kind of artifact", "pln": ["(: cnet_isa_fb186ea55d (IsA float artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "float is a kind of display", "pln": ["(: cnet_isa_bcba058780 (IsA float display) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "float is a kind of hand tool", "pln": ["(: cnet_isa_74b3c1bf16 (IsA float hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "float is a kind of stock", "pln": ["(: cnet_isa_db27780f25 (IsA float stock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "float is a kind of time interval", "pln": ["(: cnet_isa_2a38f93465 (IsA float time_interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floater is a kind of policy", "pln": ["(: cnet_isa_c0c9c747f9 (IsA floater policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floater is a kind of object", "pln": ["(: cnet_isa_9142c08761 (IsA floater object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floater is a kind of employee", "pln": ["(: cnet_isa_a87272c4f4 (IsA floater employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "floater is a kind of swimmer", "pln": ["(: cnet_isa_a8da732819 (IsA floater swimmer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floater is a kind of voter", "pln": ["(: cnet_isa_3d68c41d9c (IsA floater voter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floater is a kind of debt instrument", "pln": ["(: cnet_isa_ec71753c00 (IsA floater debt_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floating is a kind of swimming", "pln": ["(: cnet_isa_23b236ec75 (IsA floating swimming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floating dock is a kind of dry dock", "pln": ["(: cnet_isa_8f04f564e8 (IsA floating_dock dry_dock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floating fern is a kind of aquatic fern", "pln": ["(: cnet_isa_79e280f53d (IsA floating_fern aquatic_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floating mine is a kind of mine", "pln": ["(: cnet_isa_b654f15d48 (IsA floating_mine mine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floating moss is a kind of aquatic fern", "pln": ["(: cnet_isa_f37f951b9f (IsA floating_moss aquatic_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "floating point notation is a kind of mathematical notation", "pln": ["(: cnet_isa_89d0ad92e5 (IsA floating_point_notation mathematical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floating point number is a kind of number", "pln": ["(: cnet_isa_e9f5139154 (IsA floating_point_number number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floating point operation is a kind of computer operation", "pln": ["(: cnet_isa_386f2bcc1a (IsA floating_point_operation computer_operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floatplane is a kind of seaplane", "pln": ["(: cnet_isa_534ebe8cb9 (IsA floatplane seaplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floccose chanterelle is a kind of agaric", "pln": ["(: cnet_isa_8fd12c9b3f (IsA floccose_chanterelle agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flocculation is a kind of natural process", "pln": ["(: cnet_isa_572a46ee41 (IsA flocculation natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floccule is a kind of material", "pln": ["(: cnet_isa_958ca353a4 (IsA floccule material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flock is a kind of animal group", "pln": ["(: cnet_isa_a1d48691e2 (IsA flock animal_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flock is a kind of congregation", "pln": ["(: cnet_isa_e865452e57 (IsA flock congregation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flogger is a kind of torturer", "pln": ["(: cnet_isa_fab2fab4ff (IsA flogger torturer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flood is a kind of filling", "pln": ["(: cnet_isa_c6685e63b9 (IsA flood filling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flood is a kind of flow", "pln": ["(: cnet_isa_3a8d88fe91 (IsA flood flow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flood is a kind of light", "pln": ["(: cnet_isa_5e2e0c2d77 (IsA flood light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flood is a kind of geological phenomenon", "pln": ["(: cnet_isa_919d55ffec (IsA flood geological_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flood is a kind of batch", "pln": ["(: cnet_isa_71a443e0c1 (IsA flood batch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flood control is a kind of control", "pln": ["(: cnet_isa_d0a1ff387d (IsA flood_control control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flood tide is a kind of tide", "pln": ["(: cnet_isa_56d12587d4 (IsA flood_tide tide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flooded gum is a kind of eucalyptus", "pln": ["(: cnet_isa_61cd78e525 (IsA flooded_gum eucalyptus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floodgate is a kind of restraint", "pln": ["(: cnet_isa_a874f05cf0 (IsA floodgate restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floodhead is a kind of flash flood", "pln": ["(: cnet_isa_b24c7e48c1 (IsA floodhead flash_flood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floodplain is a kind of plain", "pln": ["(: cnet_isa_8df598f9f5 (IsA floodplain plain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floor is a kind of hall", "pln": ["(: cnet_isa_0309c256cc (IsA floor hall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floor is a kind of horizontal surface", "pln": ["(: cnet_isa_4e76084630 (IsA floor horizontal_surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floor is a kind of room", "pln": ["(: cnet_isa_66a6232d42 (IsA floor room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floor is a kind of structure", "pln": ["(: cnet_isa_fee82e9c0c (IsA floor structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floor is a kind of right", "pln": ["(: cnet_isa_6a6071cb66 (IsA floor right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floor is a kind of control", "pln": ["(: cnet_isa_790ec289c8 (IsA floor control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floor is a kind of gathering", "pln": ["(: cnet_isa_43ea7a0e0d (IsA floor gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floor is a kind of land", "pln": ["(: cnet_isa_a8917ed00e (IsA floor land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floor is a kind of surface", "pln": ["(: cnet_isa_88d791a947 (IsA floor surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floor cover is a kind of covering", "pln": ["(: cnet_isa_e3e942c976 (IsA floor_cover covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floor joist is a kind of joist", "pln": ["(: cnet_isa_3fa677c165 (IsA floor_joist joist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floor lamp is a kind of lamp", "pln": ["(: cnet_isa_c06934d7e2 (IsA floor_lamp lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "floor leader is a kind of legislator", "pln": ["(: cnet_isa_ae8a8dc2ac (IsA floor_leader legislator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floor plan is a kind of plan", "pln": ["(: cnet_isa_956042ca58 (IsA floor_plan plan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floor wax is a kind of wax", "pln": ["(: cnet_isa_0901319a1b (IsA floor_wax wax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floorboard is a kind of board", "pln": ["(: cnet_isa_7ab510bfed (IsA floorboard board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floorboard is a kind of floor", "pln": ["(: cnet_isa_3564b6ce9c (IsA floorboard floor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flooring is a kind of building material", "pln": ["(: cnet_isa_927880151f (IsA flooring building_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floorwalker is a kind of employee", "pln": ["(: cnet_isa_22ec99e354 (IsA floorwalker employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flop is a kind of descent", "pln": ["(: cnet_isa_2a1f085bba (IsA flop descent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flop is a kind of failure", "pln": ["(: cnet_isa_d63b6d6c8e (IsA flop failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flophouse is a kind of lodging house", "pln": ["(: cnet_isa_62beda8e4f (IsA flophouse lodging_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floral leaf is a kind of leaf", "pln": ["(: cnet_isa_173f036c0f (IsA floral_leaf leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floreal is a kind of revolutionary calendar month", "pln": ["(: cnet_isa_495bcdd806 (IsA floreal revolutionary_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "florence fennel is a kind of fennel", "pln": ["(: cnet_isa_491aa5308c (IsA florence_fennel fennel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "florentine is a kind of italian", "pln": ["(: cnet_isa_758daf9155 (IsA florentine italian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "florentine iris is a kind of bearded iris", "pln": ["(: cnet_isa_49f79396fc (IsA florentine_iris bearded_iris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "florest s cineraria is a kind of flower", "pln": ["(: cnet_isa_9fe31f009c (IsA florest_s_cineraria flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floret is a kind of flower", "pln": ["(: cnet_isa_16b19babb6 (IsA floret flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "florida is a kind of state", "pln": ["(: cnet_isa_635c50f8ee (IsA florida state) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "florida gallinule is a kind of gallinule", "pln": ["(: cnet_isa_a1db5b9e57 (IsA florida_gallinule gallinule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "florida pompano is a kind of pompano", "pln": ["(: cnet_isa_dc0f7e67bd (IsA florida_pompano pompano) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "florida selaginella is a kind of spikemoss", "pln": ["(: cnet_isa_a49859f3c2 (IsA florida_selaginella spikemoss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "florida smoothhound is a kind of smooth dogfish", "pln": ["(: cnet_isa_be6a816a83 (IsA florida_smoothhound smooth_dogfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "florida strap fern is a kind of strap fern", "pln": ["(: cnet_isa_2eafaaf7f8 (IsA florida_strap_fern strap_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "florida yew is a kind of yew", "pln": ["(: cnet_isa_19fcb04d61 (IsA florida_yew yew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floridian is a kind of american", "pln": ["(: cnet_isa_48f923136c (IsA floridian american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "florilegium is a kind of anthology", "pln": ["(: cnet_isa_572f6b6ff6 (IsA florilegium anthology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "florist s chrysanthemum is a kind of chrysanthemum", "pln": ["(: cnet_isa_c36c587d83 (IsA florist_s_chrysanthemum chrysanthemum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "florist s gloxinia is a kind of gloxinia", "pln": ["(: cnet_isa_976c10fc57 (IsA florist_s_gloxinia gloxinia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "florist is a kind of shop", "pln": ["(: cnet_isa_449b27041c (IsA florist shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "florist is a kind of shopkeeper", "pln": ["(: cnet_isa_cb1cbc8979 (IsA florist shopkeeper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "floss is a kind of thread", "pln": ["(: cnet_isa_b7487f6859 (IsA floss thread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flotation is a kind of finance", "pln": ["(: cnet_isa_fc406ebfaa (IsA flotation finance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flotation is a kind of physical phenomenon", "pln": ["(: cnet_isa_7a86646b3b (IsA flotation physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flotilla is a kind of fleet", "pln": ["(: cnet_isa_02897fe8cc (IsA flotilla fleet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flotsam is a kind of wreckage", "pln": ["(: cnet_isa_46755fe430 (IsA flotsam wreckage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flounce is a kind of gait", "pln": ["(: cnet_isa_e21f74b35e (IsA flounce gait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flounder is a kind of fish", "pln": ["(: cnet_isa_09a157b005 (IsA flounder fish) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flounder is a kind of flatfish", "pln": ["(: cnet_isa_f4fe4d2c12 (IsA flounder flatfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flour is a kind of foodstuff", "pln": ["(: cnet_isa_4c8a44f2b4 (IsA flour foodstuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flour beetle is a kind of darkling beetle", "pln": ["(: cnet_isa_dbda7701bb (IsA flour_beetle darkling_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flour bin is a kind of bin", "pln": ["(: cnet_isa_7bf0be779f (IsA flour_bin bin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flour mill is a kind of mill", "pln": ["(: cnet_isa_625af51dae (IsA flour_mill mill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flourish is a kind of embellishment", "pln": ["(: cnet_isa_3e78fef2a0 (IsA flourish embellishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flourish is a kind of gesture", "pln": ["(: cnet_isa_fcce0530d1 (IsA flourish gesture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flourish is a kind of grandiosity", "pln": ["(: cnet_isa_a4d37e0fd9 (IsA flourish grandiosity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flourish is a kind of wave", "pln": ["(: cnet_isa_7f5295de87 (IsA flourish wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flourish is a kind of tune", "pln": ["(: cnet_isa_b575dafbeb (IsA flourish tune) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flow is a kind of motion", "pln": ["(: cnet_isa_af0d570afd (IsA flow motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flow is a kind of change of location", "pln": ["(: cnet_isa_04ee20b6e0 (IsA flow change_of_location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flow is a kind of natural process", "pln": ["(: cnet_isa_34fdabffb9 (IsA flow natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flow is a kind of rate", "pln": ["(: cnet_isa_c2453f1a85 (IsA flow rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flow chart is a kind of multidimensional language", "pln": ["(: cnet_isa_ce768b4cbc (IsA flow_chart multidimensional_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flowage is a kind of body of water", "pln": ["(: cnet_isa_013adf0ae9 (IsA flowage body_of_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flowage is a kind of flow", "pln": ["(: cnet_isa_1e373fd718 (IsA flowage flow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flower is a kind of part of plant", "pln": ["(: cnet_isa_3d89f1e6d6 (IsA flower part_of_plant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flower is a kind of angiosperm", "pln": ["(: cnet_isa_8b7b7e4ff6 (IsA flower angiosperm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flower is a kind of reproductive structure", "pln": ["(: cnet_isa_205f5a5a25 (IsA flower reproductive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flower is a kind of time period", "pln": ["(: cnet_isa_d40971bf15 (IsA flower time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flower arrangement is a kind of arrangement", "pln": ["(: cnet_isa_fd57665b60 (IsA flower_arrangement arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flower arrangement is a kind of decoration", "pln": ["(: cnet_isa_42ab306fb1 (IsA flower_arrangement decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flower bud is a kind of bud", "pln": ["(: cnet_isa_32adecb46a (IsA flower_bud bud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flower chain is a kind of flower arrangement", "pln": ["(: cnet_isa_635b31391a (IsA flower_chain flower_arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flower cluster is a kind of inflorescence", "pln": ["(: cnet_isa_082bee3f42 (IsA flower_cluster inflorescence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flower garden is a kind of garden", "pln": ["(: cnet_isa_076ec65e39 (IsA flower_garden garden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flower gardening is a kind of gardening", "pln": ["(: cnet_isa_b208465304 (IsA flower_gardening gardening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flower girl is a kind of child", "pln": ["(: cnet_isa_137fbcae47 (IsA flower_girl child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flower girl is a kind of assistant", "pln": ["(: cnet_isa_782d792e5c (IsA flower_girl assistant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flower girl is a kind of female child", "pln": ["(: cnet_isa_6abcf29920 (IsA flower_girl female_child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flower girl is a kind of seller", "pln": ["(: cnet_isa_de09bb4b07 (IsA flower_girl seller) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flower head is a kind of inflorescence", "pln": ["(: cnet_isa_85f69e1b95 (IsA flower_head inflorescence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flower of hour is a kind of hibiscus", "pln": ["(: cnet_isa_8e91c2096a (IsA flower_of_hour hibiscus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flower people is a kind of youth subculture", "pln": ["(: cnet_isa_8965f1ca3a (IsA flower_people youth_subculture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flower power is a kind of counterculture", "pln": ["(: cnet_isa_1249f8588a (IsA flower_power counterculture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flowerbed is a kind of bed", "pln": ["(: cnet_isa_72cfc62b67 (IsA flowerbed bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flowering almond is a kind of almond tree", "pln": ["(: cnet_isa_90740b5e76 (IsA flowering_almond almond_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flowering ash is a kind of ash", "pln": ["(: cnet_isa_bcb1dec8b8 (IsA flowering_ash ash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flowering cherry is a kind of cherry", "pln": ["(: cnet_isa_9072670b9f (IsA flowering_cherry cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flowering fern is a kind of fern", "pln": ["(: cnet_isa_3615fb598a (IsA flowering_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flowering maple is a kind of ornamental", "pln": ["(: cnet_isa_cd192eca28 (IsA flowering_maple ornamental) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flowering quince is a kind of shrub", "pln": ["(: cnet_isa_4499e182ae (IsA flowering_quince shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flowering raspberry is a kind of raspberry", "pln": ["(: cnet_isa_526b91857d (IsA flowering_raspberry raspberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flowering shrub is a kind of shrub", "pln": ["(: cnet_isa_947badc9a7 (IsA flowering_shrub shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flowering tobacco is a kind of tobacco", "pln": ["(: cnet_isa_aa3ad2f305 (IsA flowering_tobacco tobacco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flowering wintergreen is a kind of milkwort", "pln": ["(: cnet_isa_fd47d34027 (IsA flowering_wintergreen milkwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flower is a kind of perennial", "pln": ["(: cnet_isa_d99cc49b0c (IsA flower perennial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "floxuridine is a kind of antineoplastic", "pln": ["(: cnet_isa_d7140a9145 (IsA floxuridine antineoplastic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flu is a kind of virus", "pln": ["(: cnet_isa_0aad49cebd (IsA flu virus) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluctuation is a kind of irregularity", "pln": ["(: cnet_isa_0a7e0d7ba5 (IsA fluctuation irregularity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluctuation is a kind of wave", "pln": ["(: cnet_isa_ce5d0e3dec (IsA fluctuation wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flue is a kind of conduit", "pln": ["(: cnet_isa_cf553699b3 (IsA flue conduit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flue pipe is a kind of organ pipe", "pln": ["(: cnet_isa_fb6fa66447 (IsA flue_pipe organ_pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flue stop is a kind of organ stop", "pln": ["(: cnet_isa_17ad03b691 (IsA flue_stop organ_stop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluency is a kind of communicativeness", "pln": ["(: cnet_isa_6643cf774a (IsA fluency communicativeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluency is a kind of skillfulness", "pln": ["(: cnet_isa_5b05f8bdb1 (IsA fluency skillfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluff is a kind of blunder", "pln": ["(: cnet_isa_07c413a936 (IsA fluff blunder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluff is a kind of material", "pln": ["(: cnet_isa_5eada245f5 (IsA fluff material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluffy omelet is a kind of omelet", "pln": ["(: cnet_isa_c2e680de1a (IsA fluffy_omelet omelet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flugelhorn is a kind of brass", "pln": ["(: cnet_isa_fed842ad5e (IsA flugelhorn brass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluid is a kind of substance", "pln": ["(: cnet_isa_4bd79cbf36 (IsA fluid substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluid drive is a kind of coupling", "pln": ["(: cnet_isa_baa5d70eba (IsA fluid_drive coupling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluid flywheel is a kind of flywheel", "pln": ["(: cnet_isa_b676ce1251 (IsA fluid_flywheel flywheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluid mechanic is a kind of mechanic", "pln": ["(: cnet_isa_ecdd44f932 (IsA fluid_mechanic mechanic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluidity is a kind of thinness", "pln": ["(: cnet_isa_d51ef92d06 (IsA fluidity thinness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fluidness is a kind of changeableness", "pln": ["(: cnet_isa_3d51999825 (IsA fluidness changeableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluidounce is a kind of british capacity unit", "pln": ["(: cnet_isa_c23691d63c (IsA fluidounce british_capacity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluidounce is a kind of united state liquid unit", "pln": ["(: cnet_isa_d119bdeff1 (IsA fluidounce united_state_liquid_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluidram is a kind of british capacity unit", "pln": ["(: cnet_isa_6f09a4cbf0 (IsA fluidram british_capacity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluidram is a kind of united state liquid unit", "pln": ["(: cnet_isa_b6dc304884 (IsA fluidram united_state_liquid_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluke is a kind of flatworm", "pln": ["(: cnet_isa_50b07e2b0d (IsA fluke flatworm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluke is a kind of tail", "pln": ["(: cnet_isa_8454dd95c8 (IsA fluke tail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fluke is a kind of barb", "pln": ["(: cnet_isa_70f54d3e5e (IsA fluke barb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluke is a kind of projection", "pln": ["(: cnet_isa_09b8042f30 (IsA fluke projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flume is a kind of watercourse", "pln": ["(: cnet_isa_2cfa3ebfe7 (IsA flume watercourse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flummery is a kind of pudding", "pln": ["(: cnet_isa_6673f4afd2 (IsA flummery pudding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flunky is a kind of follower", "pln": ["(: cnet_isa_d1b1c0d325 (IsA flunky follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluorapatite is a kind of apatite", "pln": ["(: cnet_isa_d68a540d28 (IsA fluorapatite apatite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluorescein is a kind of absorption indicator", "pln": ["(: cnet_isa_529be3291e (IsA fluorescein absorption_indicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluorescein is a kind of dye", "pln": ["(: cnet_isa_3290e2b27a (IsA fluorescein dye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluorescein isothiocyanate is a kind of fluorochrome", "pln": ["(: cnet_isa_1d8d83c406 (IsA fluorescein_isothiocyanate fluorochrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluorescence is a kind of light", "pln": ["(: cnet_isa_d0210ac987 (IsA fluorescence light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluorescence microscopy is a kind of microscopy", "pln": ["(: cnet_isa_035a691860 (IsA fluorescence_microscopy microscopy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluorescent fixture is a kind of lighting fixture", "pln": ["(: cnet_isa_c5a50e6648 (IsA fluorescent_fixture lighting_fixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluorescent lamp is a kind of lamp", "pln": ["(: cnet_isa_7ff5e85215 (IsA fluorescent_lamp lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluoridation is a kind of addition", "pln": ["(: cnet_isa_bd12f0d527 (IsA fluoridation addition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluoride is a kind of element", "pln": ["(: cnet_isa_e488d71d93 (IsA fluoride element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluoride is a kind of halide", "pln": ["(: cnet_isa_91d1564cec (IsA fluoride halide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluorine is a kind of chemical element", "pln": ["(: cnet_isa_4093c8e336 (IsA fluorine chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluorine is a kind of gas", "pln": ["(: cnet_isa_fb3cbc6dc0 (IsA fluorine gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluorine is a kind of halogen", "pln": ["(: cnet_isa_3176620a67 (IsA fluorine halogen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluorite is a kind of mineral", "pln": ["(: cnet_isa_94f7100459 (IsA fluorite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluoroboric acid is a kind of acid", "pln": ["(: cnet_isa_d4b72f19ba (IsA fluoroboric_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fluoroboride is a kind of salt", "pln": ["(: cnet_isa_2fb77b6779 (IsA fluoroboride salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluorocarbon is a kind of halocarbon", "pln": ["(: cnet_isa_df1ae0dcbc (IsA fluorocarbon halocarbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluorocarbon plastic is a kind of plastic", "pln": ["(: cnet_isa_8b2458c415 (IsA fluorocarbon_plastic plastic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fluorochrome is a kind of dye", "pln": ["(: cnet_isa_fed9e9578f (IsA fluorochrome dye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluoroform is a kind of haloform", "pln": ["(: cnet_isa_d61ab6927e (IsA fluoroform haloform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluoroscope is a kind of x ray machine", "pln": ["(: cnet_isa_a11fb35de1 (IsA fluoroscope x_ray_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluoroscopy is a kind of radioscopy", "pln": ["(: cnet_isa_9f2d662383 (IsA fluoroscopy radioscopy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluorosis is a kind of pathology", "pln": ["(: cnet_isa_bd8fb5de47 (IsA fluorosis pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fluorouracil is a kind of antimetabolite", "pln": ["(: cnet_isa_088ba6fd90 (IsA fluorouracil antimetabolite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluosilicate is a kind of salt", "pln": ["(: cnet_isa_6537167ea0 (IsA fluosilicate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluosilicic acid is a kind of acid", "pln": ["(: cnet_isa_2b012ded74 (IsA fluosilicic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fluoxetine is a kind of ssri", "pln": ["(: cnet_isa_961cf50ac7 (IsA fluoxetine ssri) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluphenazine is a kind of major tranquilizer", "pln": ["(: cnet_isa_6bb9ea7760 (IsA fluphenazine major_tranquilizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flurry is a kind of snow", "pln": ["(: cnet_isa_892dc9a75e (IsA flurry snow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flush is a kind of flow", "pln": ["(: cnet_isa_45fe81b576 (IsA flush flow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flush is a kind of poker hand", "pln": ["(: cnet_isa_5fd738a081 (IsA flush poker_hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flush toilet is a kind of toilet", "pln": ["(: cnet_isa_c760a3335e (IsA flush_toilet toilet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flushless toilet is a kind of toilet", "pln": ["(: cnet_isa_2525777a59 (IsA flushless_toilet toilet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flute is a kind of instrument", "pln": ["(: cnet_isa_9403066b78 (IsA flute instrument) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flute is a kind of wind instrument", "pln": ["(: cnet_isa_664cf6f26c (IsA flute wind_instrument) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flute is a kind of groove", "pln": ["(: cnet_isa_5861a5ac43 (IsA flute groove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flute is a kind of wineglass", "pln": ["(: cnet_isa_8e9fe28921 (IsA flute wineglass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flute is a kind of woodwind", "pln": ["(: cnet_isa_acf302ba33 (IsA flute woodwind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flutist is a kind of musician", "pln": ["(: cnet_isa_9c082ded66 (IsA flutist musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flutter is a kind of cardiac arrhythmia", "pln": ["(: cnet_isa_8aa063e4ea (IsA flutter cardiac_arrhythmia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flutter kick is a kind of swimming kick", "pln": ["(: cnet_isa_95298a303b (IsA flutter_kick swimming_kick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flux is a kind of change", "pln": ["(: cnet_isa_d4f8201890 (IsA flux change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flux is a kind of flow", "pln": ["(: cnet_isa_e6a7588d25 (IsA flux flow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flux is a kind of pathology", "pln": ["(: cnet_isa_8f2974e151 (IsA flux pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flux is a kind of state", "pln": ["(: cnet_isa_f8cfddac11 (IsA flux state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flux is a kind of chemical", "pln": ["(: cnet_isa_ac14efd9b7 (IsA flux chemical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flux is a kind of rate", "pln": ["(: cnet_isa_edaeedd8ff (IsA flux rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flux applicator is a kind of applicator", "pln": ["(: cnet_isa_13ccebcfc6 (IsA flux_applicator applicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flux density is a kind of concentration", "pln": ["(: cnet_isa_7890776f7b (IsA flux_density concentration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flux density unit is a kind of electromagnetic unit", "pln": ["(: cnet_isa_c7811a0e3d (IsA flux_density_unit electromagnetic_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flux unit is a kind of magnetic flux", "pln": ["(: cnet_isa_f9f94b1f92 (IsA flux_unit magnetic_flux) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fluxmeter is a kind of meter", "pln": ["(: cnet_isa_bf7e330d19 (IsA fluxmeter meter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fly is a kind of dipterous insect", "pln": ["(: cnet_isa_1159c0978d (IsA fly dipterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fly is a kind of fisherman s lure", "pln": ["(: cnet_isa_2a217ff1e8 (IsA fly fisherman_s_lure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fly is a kind of opening", "pln": ["(: cnet_isa_087a73e16c (IsA fly opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fly is a kind of hit", "pln": ["(: cnet_isa_2ca0f60489 (IsA fly hit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fly agaric is a kind of agaric", "pln": ["(: cnet_isa_50faf85f16 (IsA fly_agaric agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fly ash is a kind of ash", "pln": ["(: cnet_isa_98053aa222 (IsA fly_ash ash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fly by night is a kind of debtor", "pln": ["(: cnet_isa_4353ea897e (IsA fly_by_night debtor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fly casting is a kind of casting", "pln": ["(: cnet_isa_d02bba655e (IsA fly_casting casting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fly fishing is a kind of angling", "pln": ["(: cnet_isa_62d6602e29 (IsA fly_fishing angling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fly gallery is a kind of platform", "pln": ["(: cnet_isa_fb1ec0c95c (IsA fly_gallery platform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fly in ointment is a kind of troublesomeness", "pln": ["(: cnet_isa_c88a2c1030 (IsA fly_in_ointment troublesomeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fly orchid is a kind of orchid", "pln": ["(: cnet_isa_9c36fab194 (IsA fly_orchid orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fly poison is a kind of liliaceous plant", "pln": ["(: cnet_isa_70131ed044 (IsA fly_poison liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fly rod is a kind of fishing rod", "pln": ["(: cnet_isa_17f2ff2d91 (IsA fly_rod fishing_rod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fly tent is a kind of tent", "pln": ["(: cnet_isa_4e5a5bb4c6 (IsA fly_tent tent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flycatching warbler is a kind of new world warbler", "pln": ["(: cnet_isa_21baaf5371 (IsA flycatching_warbler new_world_warbler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flying boat is a kind of seaplane", "pln": ["(: cnet_isa_e86ec1ca77 (IsA flying_boat seaplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flying bridge is a kind of bridge", "pln": ["(: cnet_isa_c81fadb8d7 (IsA flying_bridge bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flying buttress is a kind of buttress", "pln": ["(: cnet_isa_f171d318cf (IsA flying_buttress buttress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flying carpet is a kind of rug", "pln": ["(: cnet_isa_e19fe7f3dd (IsA flying_carpet rug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flying color is a kind of success", "pln": ["(: cnet_isa_d6b9e19838 (IsA flying_color success) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flying dutchman is a kind of apparition", "pln": ["(: cnet_isa_e0bfdc5a75 (IsA flying_dutchman apparition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flying fish is a kind of teleost fish", "pln": ["(: cnet_isa_6471870dcc (IsA flying_fish teleost_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flying fox is a kind of fruit bat", "pln": ["(: cnet_isa_b9e5863b0d (IsA flying_fox fruit_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flying gecko is a kind of gecko", "pln": ["(: cnet_isa_cb539539a6 (IsA flying_gecko gecko) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flying gurnard is a kind of scorpaenoid", "pln": ["(: cnet_isa_2a757862cc (IsA flying_gurnard scorpaenoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flying jib is a kind of jib", "pln": ["(: cnet_isa_686efba44a (IsA flying_jib jib) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flying lemur is a kind of placental", "pln": ["(: cnet_isa_8edd841f97 (IsA flying_lemur placental) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flying mare is a kind of wrestling", "pln": ["(: cnet_isa_b0d6bd39e6 (IsA flying_mare wrestling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flying mouse is a kind of flying phalanger", "pln": ["(: cnet_isa_e44829844b (IsA flying_mouse flying_phalanger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flying phalanger is a kind of phalanger", "pln": ["(: cnet_isa_5ee92af837 (IsA flying_phalanger phalanger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flying school is a kind of school", "pln": ["(: cnet_isa_2335b6bdc2 (IsA flying_school school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flying squad is a kind of team", "pln": ["(: cnet_isa_69275f500e (IsA flying_squad team) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flying start is a kind of racing start", "pln": ["(: cnet_isa_a705c4d392 (IsA flying_start racing_start) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flying start is a kind of start", "pln": ["(: cnet_isa_422784868d (IsA flying_start start) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flying visit is a kind of visit", "pln": ["(: cnet_isa_32763c9764 (IsA flying_visit visit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flyleaf is a kind of leaf", "pln": ["(: cnet_isa_52bf5cde8f (IsA flyleaf leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flyover is a kind of flight", "pln": ["(: cnet_isa_47c507c2df (IsA flyover flight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flypaper is a kind of paper", "pln": ["(: cnet_isa_92822a5511 (IsA flypaper paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flyspeck is a kind of atom", "pln": ["(: cnet_isa_9f05c7d4dd (IsA flyspeck atom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "flytrap is a kind of trap", "pln": ["(: cnet_isa_8f03463f8f (IsA flytrap trap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flyweight is a kind of boxer", "pln": ["(: cnet_isa_4fc15709d6 (IsA flyweight boxer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flyweight is a kind of wrestler", "pln": ["(: cnet_isa_b6064b267f (IsA flyweight wrestler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "flywheel is a kind of governor", "pln": ["(: cnet_isa_27661ff764 (IsA flywheel governor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foal is a kind of young mammal", "pln": ["(: cnet_isa_f9ff5f2250 (IsA foal young_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foam is a kind of bubble", "pln": ["(: cnet_isa_41e84497f9 (IsA foam bubble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foam is a kind of material", "pln": ["(: cnet_isa_c09ebde4c9 (IsA foam material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foam rubber is a kind of foam", "pln": ["(: cnet_isa_222de7bd0b (IsA foam_rubber foam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "foam rubber is a kind of rubber", "pln": ["(: cnet_isa_9c60ae27dd (IsA foam_rubber rubber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foamflower is a kind of herb", "pln": ["(: cnet_isa_6a6493f9a6 (IsA foamflower herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foaminess is a kind of gaseousness", "pln": ["(: cnet_isa_8b92f17bb0 (IsA foaminess gaseousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fob is a kind of adornment", "pln": ["(: cnet_isa_d1281e682d (IsA fob adornment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fob is a kind of chain", "pln": ["(: cnet_isa_6600a0df28 (IsA fob chain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fob is a kind of vest pocket", "pln": ["(: cnet_isa_35644bc657 (IsA fob vest_pocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "focal distance is a kind of distance", "pln": ["(: cnet_isa_33d11726b1 (IsA focal_distance distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "focal infection is a kind of infection", "pln": ["(: cnet_isa_0717567deb (IsA focal_infection infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "focal ratio is a kind of ratio", "pln": ["(: cnet_isa_5fc9cba22f (IsA focal_ratio ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "focal seizure is a kind of seizure", "pln": ["(: cnet_isa_18578c792d (IsA focal_seizure seizure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "focalization is a kind of intensification", "pln": ["(: cnet_isa_9ac4bef98f (IsA focalization intensification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "focalization is a kind of pathogenesis", "pln": ["(: cnet_isa_7b41bdde1b (IsA focalization pathogenesis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "focus is a kind of clarity", "pln": ["(: cnet_isa_3ef0108956 (IsA focus clarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "focus is a kind of distinctness", "pln": ["(: cnet_isa_878ddda952 (IsA focus distinctness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "focus is a kind of concentration", "pln": ["(: cnet_isa_8cde25e814 (IsA focus concentration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "focus is a kind of point", "pln": ["(: cnet_isa_e7b4cc6541 (IsA focus point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fodder is a kind of feed", "pln": ["(: cnet_isa_0895a34dbf (IsA fodder feed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "foe is a kind of rival", "pln": ["(: cnet_isa_db9ba5682a (IsA foe rival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foeniculum is a kind of rosid dicot genus", "pln": ["(: cnet_isa_0427bd8082 (IsA foeniculum rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fog is a kind of aerosol", "pln": ["(: cnet_isa_7236f1dddb (IsA fog aerosol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fog is a kind of atmosphere", "pln": ["(: cnet_isa_ab43a82433 (IsA fog atmosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fogbank is a kind of fog", "pln": ["(: cnet_isa_9be478355a (IsA fogbank fog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foggy bottom is a kind of department of state", "pln": ["(: cnet_isa_e17d543f4a (IsA foggy_bottom department_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "foghorn is a kind of horn", "pln": ["(: cnet_isa_3c1c5e6a47 (IsA foghorn horn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foghorn is a kind of signaling device", "pln": ["(: cnet_isa_4c4a06af81 (IsA foghorn signaling_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foghorn is a kind of alarm", "pln": ["(: cnet_isa_b37f3076c0 (IsA foghorn alarm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foglamp is a kind of headlight", "pln": ["(: cnet_isa_b6e3f0abda (IsA foglamp headlight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fohn is a kind of wind", "pln": ["(: cnet_isa_fc94171dbf (IsA fohn wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foible is a kind of part", "pln": ["(: cnet_isa_1958e1a415 (IsA foible part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foie gra is a kind of pate", "pln": ["(: cnet_isa_53bee9acd5 (IsA foie_gra pate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foil is a kind of ikon", "pln": ["(: cnet_isa_625306b995 (IsA foil ikon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foil is a kind of sheet metal", "pln": ["(: cnet_isa_7be70632aa (IsA foil sheet_metal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foil is a kind of attention", "pln": ["(: cnet_isa_e33f6a31f4 (IsA foil attention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "foil is a kind of fencing sword", "pln": ["(: cnet_isa_16a8931762 (IsA foil fencing_sword) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fold is a kind of change of shape", "pln": ["(: cnet_isa_cfe2f71541 (IsA fold change_of_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fold is a kind of pen", "pln": ["(: cnet_isa_f25d54a8a7 (IsA fold pen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fold is a kind of structure", "pln": ["(: cnet_isa_3dfb05c551 (IsA fold structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fold is a kind of group", "pln": ["(: cnet_isa_f15847a977 (IsA fold group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fold is a kind of angular shape", "pln": ["(: cnet_isa_027d537399 (IsA fold angular_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "folder is a kind of covering", "pln": ["(: cnet_isa_94a00fea42 (IsA folder covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "folderol is a kind of drivel", "pln": ["(: cnet_isa_51bb099dfe (IsA folderol drivel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "folding is a kind of geological process", "pln": ["(: cnet_isa_23aed3a93c (IsA folding geological_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "folding chair is a kind of chair", "pln": ["(: cnet_isa_ce21ce5297 (IsA folding_chair chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "folding door is a kind of interior door", "pln": ["(: cnet_isa_ef4d270605 (IsA folding_door interior_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "folding saw is a kind of saw", "pln": ["(: cnet_isa_825779e8d4 (IsA folding_saw saw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foldout is a kind of page", "pln": ["(: cnet_isa_3f934a7de3 (IsA foldout page) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "foliation is a kind of application", "pln": ["(: cnet_isa_fe81bcfcea (IsA foliation application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foliation is a kind of production", "pln": ["(: cnet_isa_ef616cd941 (IsA foliation production) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foliation is a kind of architectural ornament", "pln": ["(: cnet_isa_342b5ef681 (IsA foliation architectural_ornament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "foliation is a kind of growth", "pln": ["(: cnet_isa_14b3fca9d4 (IsA foliation growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foliation is a kind of stratification", "pln": ["(: cnet_isa_9812349e38 (IsA foliation stratification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "folie deux is a kind of mental disorder", "pln": ["(: cnet_isa_ec7c562e0d (IsA folie_deux mental_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "folio is a kind of book", "pln": ["(: cnet_isa_f951498b86 (IsA folio book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "folium is a kind of geological formation", "pln": ["(: cnet_isa_1b9c1214b4 (IsA folium geological_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "folk is a kind of people", "pln": ["(: cnet_isa_2f9d5d9ff5 (IsA folk people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "folk art is a kind of genre", "pln": ["(: cnet_isa_20e964c2cc (IsA folk_art genre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "folk dancer is a kind of dancer", "pln": ["(: cnet_isa_c262780530 (IsA folk_dancer dancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "folk dancing is a kind of social dancing", "pln": ["(: cnet_isa_09a542941d (IsA folk_dancing social_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "folk etymology is a kind of etymology", "pln": ["(: cnet_isa_9706722cc2 (IsA folk_etymology etymology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "folk music is a kind of popular music", "pln": ["(: cnet_isa_360056cd9c (IsA folk_music popular_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "folk poet is a kind of folk writer", "pln": ["(: cnet_isa_ad521d3d27 (IsA folk_poet folk_writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "folk singer is a kind of singer", "pln": ["(: cnet_isa_4017f7b563 (IsA folk_singer singer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "folk song is a kind of folk music", "pln": ["(: cnet_isa_b28e73c04c (IsA folk_song folk_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "folk song is a kind of song", "pln": ["(: cnet_isa_9273c9b190 (IsA folk_song song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "folk writer is a kind of writer", "pln": ["(: cnet_isa_2737ab5c2b (IsA folk_writer writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "folklore is a kind of lore", "pln": ["(: cnet_isa_09230b1174 (IsA folklore lore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "folk is a kind of kin", "pln": ["(: cnet_isa_4f33390688 (IsA folk kin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "folktale is a kind of narrative", "pln": ["(: cnet_isa_38ff6e10bf (IsA folktale narrative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "follicle is a kind of vesicle", "pln": ["(: cnet_isa_41aca9660a (IsA follicle vesicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "follicle stimulating hormone is a kind of gonadotropin", "pln": ["(: cnet_isa_50d7e52c48 (IsA follicle_stimulating_hormone gonadotropin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "folliculitis is a kind of inflammation", "pln": ["(: cnet_isa_ef4d953c29 (IsA folliculitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "folly is a kind of revue", "pln": ["(: cnet_isa_536b02bd8b (IsA folly revue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "follow on is a kind of inning", "pln": ["(: cnet_isa_132691cde5 (IsA follow_on inning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "follow through is a kind of completion", "pln": ["(: cnet_isa_4251ed6a52 (IsA follow_through completion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "follow up is a kind of activity", "pln": ["(: cnet_isa_4c2e49a808 (IsA follow_up activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "follow up is a kind of examination", "pln": ["(: cnet_isa_8a8068c3a8 (IsA follow_up examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "follow up is a kind of work", "pln": ["(: cnet_isa_c1f51bda1c (IsA follow_up work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "follower is a kind of person", "pln": ["(: cnet_isa_493c587357 (IsA follower person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "fomes is a kind of fungus genus", "pln": ["(: cnet_isa_717167a898 (IsA fomes fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "food and agriculture organization is a kind of united nations agency", "pln": ["(: cnet_isa_afba603568 (IsA food_and_agriculture_organization united_nations_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "follower is a kind of traveler", "pln": ["(: cnet_isa_d3d092f66f (IsA follower traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "following is a kind of multitude", "pln": ["(: cnet_isa_b9cdedc683 (IsA following multitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "folly is a kind of play", "pln": ["(: cnet_isa_d2057a1d6b (IsA folly play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "folly is a kind of trait", "pln": ["(: cnet_isa_08ad7ab2dd (IsA folly trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "folly is a kind of stupidity", "pln": ["(: cnet_isa_d3cc7b0ba6 (IsA folly stupidity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "folsom culture is a kind of paleo american culture", "pln": ["(: cnet_isa_b01e070ed0 (IsA folsom_culture paleo_american_culture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fomentation is a kind of treatment", "pln": ["(: cnet_isa_ba9137cf42 (IsA fomentation treatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fomentation is a kind of trigger", "pln": ["(: cnet_isa_e07f9cbd04 (IsA fomentation trigger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fomentation is a kind of substance", "pln": ["(: cnet_isa_4768b4518f (IsA fomentation substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fome is a kind of fungus genus", "pln": ["(: cnet_isa_432061fdd7 (IsA fome fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fomite is a kind of object", "pln": ["(: cnet_isa_bd56da5ab3 (IsA fomite object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fomorian is a kind of celtic deity", "pln": ["(: cnet_isa_f83320984c (IsA fomorian celtic_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fondant is a kind of candy", "pln": ["(: cnet_isa_2b8834ef3f (IsA fondant candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fondler is a kind of molester", "pln": ["(: cnet_isa_96a237b394 (IsA fondler molester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fondness is a kind of liking", "pln": ["(: cnet_isa_633ad516b2 (IsA fondness liking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fondue is a kind of dish", "pln": ["(: cnet_isa_56b6da698c (IsA fondue dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "font is a kind of type", "pln": ["(: cnet_isa_1962efe09e (IsA font type) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "font cartridge is a kind of font", "pln": ["(: cnet_isa_0ff2f8fc55 (IsA font_cartridge font) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fontanelle is a kind of orifice", "pln": ["(: cnet_isa_1d93a9f1d2 (IsA fontanelle orifice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "food is a kind of substance", "pln": ["(: cnet_isa_58f4129a58 (IsA food substance) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "food is a kind of content", "pln": ["(: cnet_isa_42ce325724 (IsA food content) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "food is a kind of solid", "pln": ["(: cnet_isa_f5d44ea99d (IsA food solid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "food additive is a kind of additive", "pln": ["(: cnet_isa_6a2fabf4f6 (IsA food_additive additive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "food allergy is a kind of allergy", "pln": ["(: cnet_isa_1af10dabed (IsA food_allergy allergy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "food and agriculture organization is a kind of united nation agency", "pln": ["(: cnet_isa_22edbb34a5 (IsA food_and_agriculture_organization united_nation_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "food and drug administration is a kind of agency", "pln": ["(: cnet_isa_c630cb7830 (IsA food_and_drug_administration agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "food bank is a kind of bank", "pln": ["(: cnet_isa_815fcffef4 (IsA food_bank bank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "food cache is a kind of commissariat", "pln": ["(: cnet_isa_0ea07e6348 (IsA food_cache commissariat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "food chain is a kind of organic phenomenon", "pln": ["(: cnet_isa_e89909ca74 (IsA food_chain organic_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "food company is a kind of company", "pln": ["(: cnet_isa_dc13a1504f (IsA food_company company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "food court is a kind of court", "pln": ["(: cnet_isa_29ab916d79 (IsA food_court court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "food faddist is a kind of faddist", "pln": ["(: cnet_isa_440214477d (IsA food_faddist faddist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "food fish is a kind of fish", "pln": ["(: cnet_isa_9030b8b605 (IsA food_fish fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "food hamper is a kind of hamper", "pln": ["(: cnet_isa_c9afb0e7bb (IsA food_hamper hamper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "food manufacturer is a kind of manufacturer", "pln": ["(: cnet_isa_2ce2f96b8b (IsA food_manufacturer manufacturer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "food poisoning is a kind of illness", "pln": ["(: cnet_isa_5baf782adb (IsA food_poisoning illness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "food processor is a kind of kitchen appliance", "pln": ["(: cnet_isa_49688a8fdc (IsA food_processor kitchen_appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "food pyramid is a kind of organic phenomenon", "pln": ["(: cnet_isa_664be66847 (IsA food_pyramid organic_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "food stamp is a kind of tender", "pln": ["(: cnet_isa_58500561e0 (IsA food_stamp tender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "food store is a kind of place to buy food", "pln": ["(: cnet_isa_7e6cfb3c26 (IsA food_store place_to_buy_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "food web is a kind of organic phenomenon", "pln": ["(: cnet_isa_3eeb3d0335 (IsA food_web organic_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foodstuff is a kind of food", "pln": ["(: cnet_isa_6709cc5627 (IsA foodstuff food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fool s errand is a kind of mission", "pln": ["(: cnet_isa_dae4b5b63c (IsA fool_s_errand mission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fool s paradise is a kind of wellbeing", "pln": ["(: cnet_isa_19e15472c7 (IsA fool_s_paradise wellbeing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fool s parsley is a kind of poisonous plant", "pln": ["(: cnet_isa_5c548893d1 (IsA fool_s_parsley poisonous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fool is a kind of simpleton", "pln": ["(: cnet_isa_0be2fa10f4 (IsA fool simpleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foolscap is a kind of sheet", "pln": ["(: cnet_isa_964ef8004d (IsA foolscap sheet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foot is a kind of measurement", "pln": ["(: cnet_isa_b670c2444e (IsA foot measurement) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foot is a kind of unit of measurement", "pln": ["(: cnet_isa_ca828684c8 (IsA foot unit_of_measurement) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foot is a kind of walk", "pln": ["(: cnet_isa_007b582a3c (IsA foot walk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foot is a kind of organ", "pln": ["(: cnet_isa_26b8ceef8e (IsA foot organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foot is a kind of support", "pln": ["(: cnet_isa_706fd2de88 (IsA foot support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foot is a kind of vertebrate foot", "pln": ["(: cnet_isa_ad73509478 (IsA foot vertebrate_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foot is a kind of bottom", "pln": ["(: cnet_isa_2cc96d9ccb (IsA foot bottom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foot is a kind of secret agent", "pln": ["(: cnet_isa_5c70ed8835 (IsA foot secret_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foot is a kind of linear unit", "pln": ["(: cnet_isa_24712a0904 (IsA foot linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foot and mouth disease is a kind of animal disease", "pln": ["(: cnet_isa_d45e364b61 (IsA foot_and_mouth_disease animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foot brake is a kind of hydraulic brake", "pln": ["(: cnet_isa_e976d7aceb (IsA foot_brake hydraulic_brake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foot lambert is a kind of luminance unit", "pln": ["(: cnet_isa_b91d060295 (IsA foot_lambert luminance_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foot pound is a kind of work unit", "pln": ["(: cnet_isa_631b6a6522 (IsA foot_pound work_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "foot poundal is a kind of work unit", "pln": ["(: cnet_isa_b9326149bf (IsA foot_poundal work_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foot rot is a kind of animal disease", "pln": ["(: cnet_isa_7ad140be49 (IsA foot_rot animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foot rot is a kind of plant disease", "pln": ["(: cnet_isa_8589ea78bd (IsA foot_rot plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foot rule is a kind of rule", "pln": ["(: cnet_isa_81c8a10989 (IsA foot_rule rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foot ton is a kind of work unit", "pln": ["(: cnet_isa_e579bd8508 (IsA foot_ton work_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footage is a kind of film", "pln": ["(: cnet_isa_2517f7b288 (IsA footage film) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footage is a kind of rate", "pln": ["(: cnet_isa_4105799b41 (IsA footage rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "football is a kind of game", "pln": ["(: cnet_isa_ad4559a64f (IsA football game) (STV 1.0 0.9786))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "football is a kind of human recreational activity", "pln": ["(: cnet_isa_426c83251e (IsA football human_recreational_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "football is a kind of one type of game", "pln": ["(: cnet_isa_2c60900999 (IsA football one_type_of_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "football is a kind of physical activity", "pln": ["(: cnet_isa_80dd560094 (IsA football physical_activity) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "football is a kind of sport", "pln": ["(: cnet_isa_7b5fd03459 (IsA football sport) (STV 1.0 0.9756))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "football is a kind of sport people play", "pln": ["(: cnet_isa_216a58b927 (IsA football sport_people_play) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "football is a kind of contact sport", "pln": ["(: cnet_isa_76c241fbbb (IsA football contact_sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "football is a kind of field game", "pln": ["(: cnet_isa_f1b2ca80d3 (IsA football field_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "football is a kind of ball", "pln": ["(: cnet_isa_dbf64c6960 (IsA football ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "football and basketball is a kind of both sport", "pln": ["(: cnet_isa_106c78c112 (IsA football_and_basketball both_sport) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "football coach is a kind of coach", "pln": ["(: cnet_isa_07e99eb755 (IsA football_coach coach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "football field is a kind of one hundred yard long", "pln": ["(: cnet_isa_405d543de2 (IsA football_field one_hundred_yard_long) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "football field is a kind of playing field", "pln": ["(: cnet_isa_fe14b5a178 (IsA football_field playing_field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "football helmet is a kind of helmet", "pln": ["(: cnet_isa_6fbf93fef2 (IsA football_helmet helmet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "football hero is a kind of football player", "pln": ["(: cnet_isa_cf2454a890 (IsA football_hero football_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "football league is a kind of league", "pln": ["(: cnet_isa_7a94be1d6d (IsA football_league league) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "football official is a kind of official", "pln": ["(: cnet_isa_bb3ff71391 (IsA football_official official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "football play is a kind of play", "pln": ["(: cnet_isa_beb6c2c693 (IsA football_play play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "football player is a kind of athlete", "pln": ["(: cnet_isa_ba51f0445d (IsA football_player athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "football player is a kind of player", "pln": ["(: cnet_isa_45690bf403 (IsA football_player player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "football score is a kind of score", "pln": ["(: cnet_isa_26c935cc8f (IsA football_score score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "football season is a kind of season", "pln": ["(: cnet_isa_f4f31a9ddb (IsA football_season season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "football stadium is a kind of athletic facility", "pln": ["(: cnet_isa_2713cb207a (IsA football_stadium athletic_facility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "football stadium is a kind of stadium", "pln": ["(: cnet_isa_d5cdd8ee9d (IsA football_stadium stadium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "football team is a kind of team", "pln": ["(: cnet_isa_33ae06387c (IsA football_team team) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footbath is a kind of bathtub", "pln": ["(: cnet_isa_58dc5621ec (IsA footbath bathtub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footboard is a kind of panel", "pln": ["(: cnet_isa_f29966feaa (IsA footboard panel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footboard is a kind of platform", "pln": ["(: cnet_isa_094794d64e (IsA footboard platform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footbridge is a kind of bridge", "pln": ["(: cnet_isa_f6514fc0c9 (IsA footbridge bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footcandle is a kind of illumination unit", "pln": ["(: cnet_isa_c53533d6fa (IsA footcandle illumination_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footedness is a kind of asymmetry", "pln": ["(: cnet_isa_3b706570bd (IsA footedness asymmetry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footer is a kind of linear unit", "pln": ["(: cnet_isa_775a2a5c60 (IsA footer linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footfall is a kind of sound", "pln": ["(: cnet_isa_bc8a59bff8 (IsA footfall sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footfault is a kind of fault", "pln": ["(: cnet_isa_38efc12295 (IsA footfault fault) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foothill is a kind of hill", "pln": ["(: cnet_isa_354de24850 (IsA foothill hill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foothold is a kind of support", "pln": ["(: cnet_isa_8fdd0a8d8f (IsA foothold support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footing is a kind of foundation", "pln": ["(: cnet_isa_2f0d472cdd (IsA footing foundation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footing is a kind of status", "pln": ["(: cnet_isa_de7c4ebd14 (IsA footing status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footlight is a kind of theater light", "pln": ["(: cnet_isa_22ce612662 (IsA footlight theater_light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footlocker is a kind of trunk", "pln": ["(: cnet_isa_7a05008926 (IsA footlocker trunk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footman is a kind of manservant", "pln": ["(: cnet_isa_0341e7cac9 (IsA footman manservant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footnote is a kind of note", "pln": ["(: cnet_isa_f6de4b8f09 (IsA footnote note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footpad is a kind of highjacker", "pln": ["(: cnet_isa_0735d1a74a (IsA footpad highjacker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footplate is a kind of platform", "pln": ["(: cnet_isa_e521f586a2 (IsA footplate platform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footprint is a kind of area", "pln": ["(: cnet_isa_3cd65401ab (IsA footprint area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footprint is a kind of mark", "pln": ["(: cnet_isa_1ddfffa178 (IsA footprint mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footprint is a kind of trace", "pln": ["(: cnet_isa_0c5bacae55 (IsA footprint trace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footprint evidence is a kind of evidence", "pln": ["(: cnet_isa_f1449eade8 (IsA footprint_evidence evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footprint evidence is a kind of footprint", "pln": ["(: cnet_isa_df91b7bf70 (IsA footprint_evidence footprint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footrace is a kind of race", "pln": ["(: cnet_isa_569eb35aa5 (IsA footrace race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footstep is a kind of step", "pln": ["(: cnet_isa_2cf62901d9 (IsA footstep step) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footstep is a kind of indefinite quantity", "pln": ["(: cnet_isa_4b440868a1 (IsA footstep indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footstep of spring is a kind of sanicle", "pln": ["(: cnet_isa_98085baa92 (IsA footstep_of_spring sanicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footstool is a kind of stool", "pln": ["(: cnet_isa_eb91b2f777 (IsA footstool stool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footwall is a kind of wall", "pln": ["(: cnet_isa_1dd8d71d2d (IsA footwall wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footwear is a kind of clothing", "pln": ["(: cnet_isa_6ac379f00b (IsA footwear clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footwear is a kind of covering", "pln": ["(: cnet_isa_077065d4dc (IsA footwear covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "footwork is a kind of maneuver", "pln": ["(: cnet_isa_ba507eb128 (IsA footwork maneuver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foppishness is a kind of manner", "pln": ["(: cnet_isa_7a2d72ad72 (IsA foppishness manner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forager is a kind of hunter", "pln": ["(: cnet_isa_eccc213965 (IsA forager hunter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "foraging is a kind of search", "pln": ["(: cnet_isa_8a14af2a83 (IsA foraging search) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foram is a kind of rhizopod", "pln": ["(: cnet_isa_70d8fde51c (IsA foram rhizopod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foramen is a kind of opening", "pln": ["(: cnet_isa_aff89e9519 (IsA foramen opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foramen magnum is a kind of foramen", "pln": ["(: cnet_isa_466f1389df (IsA foramen_magnum foramen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foraminifera is a kind of animal order", "pln": ["(: cnet_isa_6b3adfe9c6 (IsA foraminifera animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foray is a kind of attempt", "pln": ["(: cnet_isa_d51931399a (IsA foray attempt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foray is a kind of penetration", "pln": ["(: cnet_isa_da40e26036 (IsA foray penetration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forbearance is a kind of delay", "pln": ["(: cnet_isa_7ec217f7e6 (IsA forbearance delay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forbidden fruit is a kind of temptation", "pln": ["(: cnet_isa_97261d876a (IsA forbidden_fruit temptation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "force is a kind of influence", "pln": ["(: cnet_isa_80004feb8e (IsA force influence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "force is a kind of intensity", "pln": ["(: cnet_isa_82d4e1ca96 (IsA force intensity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "force is a kind of organization", "pln": ["(: cnet_isa_83280b4f8d (IsA force organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "force is a kind of social group", "pln": ["(: cnet_isa_121a2bca2f (IsA force social_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "force is a kind of physical phenomenon", "pln": ["(: cnet_isa_0bed82e3bd (IsA force physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "force play is a kind of putout", "pln": ["(: cnet_isa_3d44aa088a (IsA force_play putout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "force pump is a kind of pump", "pln": ["(: cnet_isa_6c804f4689 (IsA force_pump pump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "force unit is a kind of unit of measurement", "pln": ["(: cnet_isa_a07ede26cf (IsA force_unit unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forced feeding is a kind of feeding", "pln": ["(: cnet_isa_9f3ed4459c (IsA forced_feeding feeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "forced landing is a kind of aircraft landing", "pln": ["(: cnet_isa_fbe31450e8 (IsA forced_landing aircraft_landing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forcemeat is a kind of stuffing", "pln": ["(: cnet_isa_fc8549b377 (IsA forcemeat stuffing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forcep is a kind of extractor", "pln": ["(: cnet_isa_7f268215cf (IsA forcep extractor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forcep delivery is a kind of delivery", "pln": ["(: cnet_isa_88dd39fa74 (IsA forcep_delivery delivery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ford is a kind of brand of car", "pln": ["(: cnet_isa_986b363f7a (IsA ford brand_of_car) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ford is a kind of company", "pln": ["(: cnet_isa_ac73dfff4e (IsA ford company) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ford is a kind of crossing", "pln": ["(: cnet_isa_56caab044d (IsA ford crossing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "fordhooks is a kind of lima bean", "pln": ["(: cnet_isa_17a11890d5 (IsA fordhooks lima_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ford is a kind of body of water", "pln": ["(: cnet_isa_aceb957897 (IsA ford body_of_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fordhook is a kind of lima bean", "pln": ["(: cnet_isa_ac91c9738f (IsA fordhook lima_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fore and aft rig is a kind of rig", "pln": ["(: cnet_isa_88408543ca (IsA fore_and_aft_rig rig) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fore and aft sail is a kind of sail", "pln": ["(: cnet_isa_12102ae28e (IsA fore_and_aft_sail sail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fore and after is a kind of sailing vessel", "pln": ["(: cnet_isa_d1384d4704 (IsA fore_and_after sailing_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fore edge is a kind of part", "pln": ["(: cnet_isa_8485d839dc (IsA fore_edge part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fore plane is a kind of plane", "pln": ["(: cnet_isa_57eebdf6eb (IsA fore_plane plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fore topmast is a kind of topmast", "pln": ["(: cnet_isa_8bbf12dda7 (IsA fore_topmast topmast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fore topsail is a kind of topsail", "pln": ["(: cnet_isa_20e1fb001e (IsA fore_topsail topsail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forearm is a kind of limb", "pln": ["(: cnet_isa_f774f4a482 (IsA forearm limb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "forebear is a kind of ancestor", "pln": ["(: cnet_isa_449e37817f (IsA forebear ancestor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "forecastle is a kind of living quarters", "pln": ["(: cnet_isa_419a3bbfd2 (IsA forecastle living_quarters) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreboding is a kind of omen", "pln": ["(: cnet_isa_71eb35fdb7 (IsA foreboding omen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreboding is a kind of apprehension", "pln": ["(: cnet_isa_1946f089fd (IsA foreboding apprehension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forebrain is a kind of neural structure", "pln": ["(: cnet_isa_cd4649bbed (IsA forebrain neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forecaster is a kind of visionary", "pln": ["(: cnet_isa_fdb265e025 (IsA forecaster visionary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forecastle is a kind of living quarter", "pln": ["(: cnet_isa_364a911b29 (IsA forecastle living_quarter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreclosure is a kind of proceeding", "pln": ["(: cnet_isa_23e7632f6a (IsA foreclosure proceeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forecourt is a kind of court", "pln": ["(: cnet_isa_fed83430d9 (IsA forecourt court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foredeck is a kind of deck", "pln": ["(: cnet_isa_a4ee9d9650 (IsA foredeck deck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forefather is a kind of ancestor", "pln": ["(: cnet_isa_e629d0bf87 (IsA forefather ancestor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forefather is a kind of predecessor", "pln": ["(: cnet_isa_9be5ebba03 (IsA forefather predecessor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forefoot is a kind of animal foot", "pln": ["(: cnet_isa_92e2c855e6 (IsA forefoot animal_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "forefront is a kind of front", "pln": ["(: cnet_isa_ea69a00bed (IsA forefront front) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foregone conclusion is a kind of ending", "pln": ["(: cnet_isa_143b9449f5 (IsA foregone_conclusion ending) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreground is a kind of view", "pln": ["(: cnet_isa_69963f5122 (IsA foreground view) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreground is a kind of window", "pln": ["(: cnet_isa_14c8301572 (IsA foreground window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreground processing is a kind of priority processing", "pln": ["(: cnet_isa_5ce28a9da8 (IsA foreground_processing priority_processing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forehand is a kind of return", "pln": ["(: cnet_isa_f5029063b6 (IsA forehand return) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forehand drive is a kind of drive", "pln": ["(: cnet_isa_944271df0c (IsA forehand_drive drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreign agent is a kind of spy", "pln": ["(: cnet_isa_4dc1cab6da (IsA foreign_agent spy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreign aid is a kind of financial aid", "pln": ["(: cnet_isa_bfdff14db2 (IsA foreign_aid financial_aid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreign bill is a kind of draft", "pln": ["(: cnet_isa_5bc5586eb5 (IsA foreign_bill draft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "foreign correspondent is a kind of correspondent", "pln": ["(: cnet_isa_02f33a0d65 (IsA foreign_correspondent correspondent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreign country is a kind of state", "pln": ["(: cnet_isa_09b30d5f04 (IsA foreign_country state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreign direct investment is a kind of investing", "pln": ["(: cnet_isa_a32092d19b (IsA foreign_direct_investment investing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "foreign direct investment is a kind of joint venture", "pln": ["(: cnet_isa_178ebba95a (IsA foreign_direct_investment joint_venture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreign exchange is a kind of exchange", "pln": ["(: cnet_isa_e3ccc94bbb (IsA foreign_exchange exchange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreign intelligence service is a kind of international intelligence agency", "pln": ["(: cnet_isa_26dc17eb5b (IsA foreign_intelligence_service international_intelligence_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreign intelligence surveillance act is a kind of legislative act", "pln": ["(: cnet_isa_347c768f34 (IsA foreign_intelligence_surveillance_act legislative_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreign intelligence surveillance court is a kind of court", "pln": ["(: cnet_isa_b3a9ffec09 (IsA foreign_intelligence_surveillance_court court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreign legion is a kind of legion", "pln": ["(: cnet_isa_48486cd4fa (IsA foreign_legion legion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreign minister is a kind of minister", "pln": ["(: cnet_isa_16694a0687 (IsA foreign_minister minister) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreign office is a kind of ministry", "pln": ["(: cnet_isa_d9fbab470a (IsA foreign_office ministry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreign policy is a kind of policy", "pln": ["(: cnet_isa_4bf650857d (IsA foreign_policy policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreign service is a kind of agency", "pln": ["(: cnet_isa_05b9b772b0 (IsA foreign_service agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "foreigner is a kind of stranger", "pln": ["(: cnet_isa_fa803d8d83 (IsA foreigner stranger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreigner is a kind of traveler", "pln": ["(: cnet_isa_6c44d4684e (IsA foreigner traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreignness is a kind of quality", "pln": ["(: cnet_isa_bfc1030b5c (IsA foreignness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreland is a kind of land", "pln": ["(: cnet_isa_3f2123a326 (IsA foreland land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreleg is a kind of forelimb", "pln": ["(: cnet_isa_ce4e626347 (IsA foreleg forelimb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forelimb is a kind of limb", "pln": ["(: cnet_isa_e582c807f4 (IsA forelimb limb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forelock is a kind of hair", "pln": ["(: cnet_isa_2e59a4d55e (IsA forelock hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forelock is a kind of lock", "pln": ["(: cnet_isa_6d92bbe2a3 (IsA forelock lock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreman is a kind of foreperson", "pln": ["(: cnet_isa_a2bb9ea3a0 (IsA foreman foreperson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreman is a kind of supervisor", "pln": ["(: cnet_isa_06dabebc9a (IsA foreman supervisor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foremanship is a kind of position", "pln": ["(: cnet_isa_f38c070c00 (IsA foremanship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foremast is a kind of mast", "pln": ["(: cnet_isa_5865a330d0 (IsA foremast mast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foremother is a kind of ancestor", "pln": ["(: cnet_isa_c23ea664e8 (IsA foremother ancestor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forensic medicine is a kind of medicine", "pln": ["(: cnet_isa_0a8cf6a128 (IsA forensic_medicine medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forensic is a kind of police work", "pln": ["(: cnet_isa_3a22c0130e (IsA forensic police_work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forepaw is a kind of paw", "pln": ["(: cnet_isa_d37ca86573 (IsA forepaw paw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreperson is a kind of juror", "pln": ["(: cnet_isa_38036e075f (IsA foreperson juror) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreplay is a kind of sexual activity", "pln": ["(: cnet_isa_0706130db5 (IsA foreplay sexual_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forequarter is a kind of cut", "pln": ["(: cnet_isa_7a058c7d9c (IsA forequarter cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "foresail is a kind of sail", "pln": ["(: cnet_isa_28f6936f09 (IsA foresail sail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreshank is a kind of shank", "pln": ["(: cnet_isa_0fb17150bc (IsA foreshank shank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreshock is a kind of tremor", "pln": ["(: cnet_isa_bc1a0ce300 (IsA foreshock tremor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreshore is a kind of geological formation", "pln": ["(: cnet_isa_46a91d206c (IsA foreshore geological_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foresight is a kind of providence", "pln": ["(: cnet_isa_819d5c8567 (IsA foresight providence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forest is a kind of group of tree", "pln": ["(: cnet_isa_91a35e6ff0 (IsA forest group_of_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forest is a kind of natural growth area", "pln": ["(: cnet_isa_fd3c5196ad (IsA forest natural_growth_area) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forest is a kind of vegetation", "pln": ["(: cnet_isa_ed8c8c98b3 (IsA forest vegetation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forest is a kind of biome", "pln": ["(: cnet_isa_0fc977e0e0 (IsA forest biome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "forest is a kind of land", "pln": ["(: cnet_isa_707fd3ca07 (IsA forest land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forest fire is a kind of fire", "pln": ["(: cnet_isa_54cf2d0583 (IsA forest_fire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forest goat is a kind of bovid", "pln": ["(: cnet_isa_79fc9f50ed (IsA forest_goat bovid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forest red gum is a kind of flooded gum", "pln": ["(: cnet_isa_f351eae3c3 (IsA forest_red_gum flooded_gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forest tent caterpillar is a kind of tent caterpillar", "pln": ["(: cnet_isa_e29776df45 (IsA forest_tent_caterpillar tent_caterpillar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forestay is a kind of stay", "pln": ["(: cnet_isa_7d4847ac07 (IsA forestay stay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forester is a kind of farmer", "pln": ["(: cnet_isa_8edc9bd954 (IsA forester farmer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forestiera is a kind of shrub", "pln": ["(: cnet_isa_c9cd19ff32 (IsA forestiera shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forestry is a kind of biology", "pln": ["(: cnet_isa_bdb67c0dfc (IsA forestry biology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foretaste is a kind of expectation", "pln": ["(: cnet_isa_81ca29fbf1 (IsA foretaste expectation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foretop is a kind of platform", "pln": ["(: cnet_isa_879a673c54 (IsA foretop platform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forewarning is a kind of warning", "pln": ["(: cnet_isa_36b0f53c26 (IsA forewarning warning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forewing is a kind of wing", "pln": ["(: cnet_isa_00db1b49a9 (IsA forewing wing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forewoman is a kind of foreperson", "pln": ["(: cnet_isa_c4ec43dd30 (IsA forewoman foreperson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forewoman is a kind of supervisor", "pln": ["(: cnet_isa_b912c53957 (IsA forewoman supervisor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foreword is a kind of introduction", "pln": ["(: cnet_isa_e4ce41e6ae (IsA foreword introduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forfeit is a kind of act", "pln": ["(: cnet_isa_e83f102651 (IsA forfeit act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forfeit is a kind of loss", "pln": ["(: cnet_isa_f7d2cdb895 (IsA forfeit loss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forfeit is a kind of penalty", "pln": ["(: cnet_isa_ec53878a0e (IsA forfeit penalty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forficula is a kind of arthropod genus", "pln": ["(: cnet_isa_e89936fb84 (IsA forficula arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forficulidae is a kind of arthropod family", "pln": ["(: cnet_isa_17319dafaf (IsA forficulidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forge is a kind of furnace", "pln": ["(: cnet_isa_e692f08e94 (IsA forge furnace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forge is a kind of workplace", "pln": ["(: cnet_isa_1df1d89e90 (IsA forge workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forger is a kind of deceiver", "pln": ["(: cnet_isa_e282c4cd94 (IsA forger deceiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forger is a kind of smith", "pln": ["(: cnet_isa_383629884d (IsA forger smith) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forgery is a kind of crime", "pln": ["(: cnet_isa_7c8f8dfa16 (IsA forgery crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forgery is a kind of falsification", "pln": ["(: cnet_isa_1b74e9c343 (IsA forgery falsification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "forget me not is a kind of herb", "pln": ["(: cnet_isa_8d37e7d3c4 (IsA forget_me_not herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "forgetfulness is a kind of amnesia", "pln": ["(: cnet_isa_5c94c75f9b (IsA forgetfulness amnesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forgetfulness is a kind of unknowingness", "pln": ["(: cnet_isa_75eb02f327 (IsA forgetfulness unknowingness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forging is a kind of formation", "pln": ["(: cnet_isa_382a134f45 (IsA forging formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forgiveness is a kind of kindness", "pln": ["(: cnet_isa_a77d498a85 (IsA forgiveness kindness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forgiveness is a kind of mercifulness", "pln": ["(: cnet_isa_8930ba643a (IsA forgiveness mercifulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forgivingness is a kind of mercifulness", "pln": ["(: cnet_isa_b814dcbecc (IsA forgivingness mercifulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forint is a kind of hungarian monetary unit", "pln": ["(: cnet_isa_4bd1347f17 (IsA forint hungarian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fork is a kind of eating utensil", "pln": ["(: cnet_isa_69eb01fe02 (IsA fork eating_utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fork is a kind of cutlery", "pln": ["(: cnet_isa_960c634607 (IsA fork cutlery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fork is a kind of tool", "pln": ["(: cnet_isa_0b77df77ea (IsA fork tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forked lightning is a kind of lightning", "pln": ["(: cnet_isa_b9863189e0 (IsA forked_lightning lightning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "forklift is a kind of self propelled vehicle", "pln": ["(: cnet_isa_1da4c750d1 (IsA forklift self_propelled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forlorn hope is a kind of enterprise", "pln": ["(: cnet_isa_82bc1e1569 (IsA forlorn_hope enterprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forlornness is a kind of sadness", "pln": ["(: cnet_isa_2af2a3705f (IsA forlornness sadness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "form is a kind of mold", "pln": ["(: cnet_isa_5f296485c9 (IsA form mold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "form is a kind of ability", "pln": ["(: cnet_isa_f658774bc1 (IsA form ability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "form is a kind of appearance", "pln": ["(: cnet_isa_15f97e831c (IsA form appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "form is a kind of manner", "pln": ["(: cnet_isa_b9b4d2625f (IsA form manner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "form is a kind of taxonomic group", "pln": ["(: cnet_isa_ab68846388 (IsA form taxonomic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "form is a kind of structure", "pln": ["(: cnet_isa_f0954d68d0 (IsA form structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "form is a kind of document", "pln": ["(: cnet_isa_54c30d9d32 (IsA form document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "form is a kind of writing style", "pln": ["(: cnet_isa_4b95dda5a3 (IsA form writing_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "form is a kind of word", "pln": ["(: cnet_isa_b1c146b296 (IsA form word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "form division is a kind of division", "pln": ["(: cnet_isa_530cdfbbb1 (IsA form_division division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "form family is a kind of family", "pln": ["(: cnet_isa_4d86e3021b (IsA form_family family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "form genus is a kind of genus", "pln": ["(: cnet_isa_ccfdf04a9e (IsA form_genus genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "form letter is a kind of letter", "pln": ["(: cnet_isa_85b8615d15 (IsA form_letter letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formal garden is a kind of garden", "pln": ["(: cnet_isa_a59a880212 (IsA formal_garden garden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formal logic is a kind of logic", "pln": ["(: cnet_isa_b7a44f0d08 (IsA formal_logic logic) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formal semantic is a kind of semantic", "pln": ["(: cnet_isa_32037f49f6 (IsA formal_semantic semantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formaldehyde is a kind of aldehyde", "pln": ["(: cnet_isa_040468c1c1 (IsA formaldehyde aldehyde) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formaldehyde is a kind of gas", "pln": ["(: cnet_isa_da2918b64b (IsA formaldehyde gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formalin is a kind of solution", "pln": ["(: cnet_isa_99246f3dc0 (IsA formalin solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formalism is a kind of practice", "pln": ["(: cnet_isa_0d004058c5 (IsA formalism practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formalism is a kind of doctrine", "pln": ["(: cnet_isa_4180d4abe7 (IsA formalism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formalism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_d3fafa9fef (IsA formalism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formality is a kind of conformity", "pln": ["(: cnet_isa_2f56ebe13d (IsA formality conformity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formality is a kind of manner", "pln": ["(: cnet_isa_cfc0374328 (IsA formality manner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formality is a kind of ceremony", "pln": ["(: cnet_isa_c5b126ffe8 (IsA formality ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formalization is a kind of systematization", "pln": ["(: cnet_isa_cdee56023a (IsA formalization systematization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formalwear is a kind of attire", "pln": ["(: cnet_isa_5c03bf88a7 (IsA formalwear attire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "format is a kind of appearance", "pln": ["(: cnet_isa_2ef0b2d7ce (IsA format appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "format is a kind of information", "pln": ["(: cnet_isa_60e732b742 (IsA format information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formation is a kind of creating by mental act", "pln": ["(: cnet_isa_31181fee34 (IsA formation creating_by_mental_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "formation is a kind of fabrication", "pln": ["(: cnet_isa_3f3909ea00 (IsA formation fabrication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formation is a kind of placement", "pln": ["(: cnet_isa_c4145d63b8 (IsA formation placement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formation is a kind of arrangement", "pln": ["(: cnet_isa_7ef8cd01b2 (IsA formation arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formation is a kind of natural process", "pln": ["(: cnet_isa_cf35102dc6 (IsA formation natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formative is a kind of language unit", "pln": ["(: cnet_isa_7e02971705 (IsA formative language_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formatted capacity is a kind of capacity", "pln": ["(: cnet_isa_05a463d2a1 (IsA formatted_capacity capacity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "former is a kind of first", "pln": ["(: cnet_isa_fd746c36d8 (IsA former first) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formic acid is a kind of acid", "pln": ["(: cnet_isa_2deb3e8b5c (IsA formic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formica is a kind of arthropod genus", "pln": ["(: cnet_isa_7fb8b51340 (IsA formica arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formica fusca is a kind of slave ant", "pln": ["(: cnet_isa_a8c3016a6d (IsA formica_fusca slave_ant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formicariidae is a kind of bird family", "pln": ["(: cnet_isa_da99af7467 (IsA formicariidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formicarius is a kind of bird genus", "pln": ["(: cnet_isa_34902b2b85 (IsA formicarius bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formication is a kind of paresthesia", "pln": ["(: cnet_isa_604ec8f33c (IsA formication paresthesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formicidae is a kind of arthropod family", "pln": ["(: cnet_isa_5bfa9eb2e9 (IsA formicidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formidability is a kind of difficulty", "pln": ["(: cnet_isa_0e11be7f09 (IsA formidability difficulty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formosan is a kind of austronesian", "pln": ["(: cnet_isa_cdb8fc5c7e (IsA formosan austronesian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formula is a kind of statement", "pln": ["(: cnet_isa_23b15d0b21 (IsA formula statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formula is a kind of milk", "pln": ["(: cnet_isa_10440e7a69 (IsA formula milk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formula is a kind of mathematical statement", "pln": ["(: cnet_isa_eb911f232e (IsA formula mathematical_statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formulary is a kind of book", "pln": ["(: cnet_isa_4d3cdd2d25 (IsA formulary book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formulation is a kind of expressive style", "pln": ["(: cnet_isa_4021b36984 (IsA formulation expressive_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "formulation is a kind of compound", "pln": ["(: cnet_isa_917c034dea (IsA formulation compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fornication is a kind of extramarital sex", "pln": ["(: cnet_isa_a7c95331f5 (IsA fornication extramarital_sex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fornix is a kind of body part", "pln": ["(: cnet_isa_18ab201d37 (IsA fornix body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fornix is a kind of fiber bundle", "pln": ["(: cnet_isa_e39917e0b4 (IsA fornix fiber_bundle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forsaking is a kind of renunciation", "pln": ["(: cnet_isa_d7375c3115 (IsA forsaking renunciation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "forsythia is a kind of shrub", "pln": ["(: cnet_isa_ac1ed9d5a2 (IsA forsythia shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "forte is a kind of part", "pln": ["(: cnet_isa_8f0265cdec (IsA forte part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forte is a kind of asset", "pln": ["(: cnet_isa_002ac8cdd2 (IsA forte asset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forte is a kind of passage", "pln": ["(: cnet_isa_a26d954d2f (IsA forte passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forty is a kind of decade", "pln": ["(: cnet_isa_99ebf99c28 (IsA forty decade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forty is a kind of time of life", "pln": ["(: cnet_isa_f46dbe38ac (IsA forty time_of_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fortieth is a kind of rank", "pln": ["(: cnet_isa_cb02dcfe50 (IsA fortieth rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fortification is a kind of enrichment", "pln": ["(: cnet_isa_98a2c6f256 (IsA fortification enrichment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fortification is a kind of defensive structure", "pln": ["(: cnet_isa_dd87b129d1 (IsA fortification defensive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fortification is a kind of art", "pln": ["(: cnet_isa_76a6fa1f17 (IsA fortification art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fortified wine is a kind of wine", "pln": ["(: cnet_isa_7e3dc8d558 (IsA fortified_wine wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fortissimo is a kind of passage", "pln": ["(: cnet_isa_17250a1426 (IsA fortissimo passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fortitude is a kind of courage", "pln": ["(: cnet_isa_3f55438954 (IsA fortitude courage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fortitude is a kind of natural virtue", "pln": ["(: cnet_isa_e71854b569 (IsA fortitude natural_virtue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fortnight is a kind of time period", "pln": ["(: cnet_isa_bb8a45320b (IsA fortnight time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fortran is a kind of programming language", "pln": ["(: cnet_isa_3284b34183 (IsA fortran programming_language) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fortran is a kind of algebraic language", "pln": ["(: cnet_isa_b41a6d10b4 (IsA fortran algebraic_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fortran compiler is a kind of compiler", "pln": ["(: cnet_isa_c97b195dd4 (IsA fortran_compiler compiler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fortran program is a kind of program", "pln": ["(: cnet_isa_96bc2c332b (IsA fortran_program program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fortress is a kind of defensive structure", "pln": ["(: cnet_isa_5026a589d6 (IsA fortress defensive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fortuitousness is a kind of uncertainty", "pln": ["(: cnet_isa_6d013f47bc (IsA fortuitousness uncertainty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fortune is a kind of lot of money", "pln": ["(: cnet_isa_8eb56a95d2 (IsA fortune lot_of_money) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fortune is a kind of prediction about future", "pln": ["(: cnet_isa_f6b7851d24 (IsA fortune prediction_about_future) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fortune is a kind of treasure", "pln": ["(: cnet_isa_baffe0bb5c (IsA fortune treasure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fortune is a kind of condition", "pln": ["(: cnet_isa_092751f88e (IsA fortune condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fortune cookie is a kind of cookie", "pln": ["(: cnet_isa_05263d50a7 (IsA fortune_cookie cookie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fortune hunter is a kind of deceiver", "pln": ["(: cnet_isa_1b47a6ea38 (IsA fortune_hunter deceiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fortunella is a kind of rosid dicot genus", "pln": ["(: cnet_isa_fed0ba3983 (IsA fortunella rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fortuneteller is a kind of forecaster", "pln": ["(: cnet_isa_3a5f4aef7d (IsA fortuneteller forecaster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fortunetelling is a kind of prediction", "pln": ["(: cnet_isa_44e5b0eb51 (IsA fortunetelling prediction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forty is a kind of large integer", "pln": ["(: cnet_isa_a21af377f9 (IsA forty large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forty five is a kind of pistol", "pln": ["(: cnet_isa_05fe20f7a6 (IsA forty_five pistol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forty niner is a kind of gold miner", "pln": ["(: cnet_isa_8184563f11 (IsA forty_niner gold_miner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forum is a kind of facility", "pln": ["(: cnet_isa_212824c0e9 (IsA forum facility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forum is a kind of meeting", "pln": ["(: cnet_isa_271d984c6d (IsA forum meeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forward is a kind of position", "pln": ["(: cnet_isa_efb9cd5f5c (IsA forward position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forward is a kind of basketball player", "pln": ["(: cnet_isa_da7eef67b7 (IsA forward basketball_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forward pass is a kind of pass", "pln": ["(: cnet_isa_c97420a4dc (IsA forward_pass pass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forwarding is a kind of advancement", "pln": ["(: cnet_isa_d4bb4b71ac (IsA forwarding advancement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forwarding is a kind of transmission", "pln": ["(: cnet_isa_aa9a591816 (IsA forwarding transmission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "forwardness is a kind of earliness", "pln": ["(: cnet_isa_aee7caaa47 (IsA forwardness earliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foryml is a kind of acyl", "pln": ["(: cnet_isa_89aa0c6139 (IsA foryml acyl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fosbury flop is a kind of high jump", "pln": ["(: cnet_isa_4853aac39a (IsA fosbury_flop high_jump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fossa is a kind of mammal genus", "pln": ["(: cnet_isa_96a7b99e2e (IsA fossa mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fossa is a kind of viverrine", "pln": ["(: cnet_isa_6234e2af5b (IsA fossa viverrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fossil is a kind of remain", "pln": ["(: cnet_isa_839a217d86 (IsA fossil remain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fossil fuel is a kind of fuel", "pln": ["(: cnet_isa_8cfacd0b36 (IsA fossil_fuel fuel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fossilization is a kind of passage", "pln": ["(: cnet_isa_59c7d92541 (IsA fossilization passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fossilization is a kind of natural process", "pln": ["(: cnet_isa_d858196c06 (IsA fossilization natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fossorial foot is a kind of animal foot", "pln": ["(: cnet_isa_cca21d92bc (IsA fossorial_foot animal_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fossorial mammal is a kind of mammal", "pln": ["(: cnet_isa_e05e29e448 (IsA fossorial_mammal mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foster brother is a kind of male", "pln": ["(: cnet_isa_672e0e7943 (IsA foster_brother male) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foster care is a kind of care", "pln": ["(: cnet_isa_f04cdb2674 (IsA foster_care care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foster child is a kind of child", "pln": ["(: cnet_isa_81ba9154db (IsA foster_child child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foster daughter is a kind of foster child", "pln": ["(: cnet_isa_585d59943c (IsA foster_daughter foster_child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foster family is a kind of family", "pln": ["(: cnet_isa_64fa932f11 (IsA foster_family family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foster father is a kind of father figure", "pln": ["(: cnet_isa_dcbf4af4db (IsA foster_father father_figure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foster father is a kind of foster parent", "pln": ["(: cnet_isa_403a4709df (IsA foster_father foster_parent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foster home is a kind of family", "pln": ["(: cnet_isa_283814d55b (IsA foster_home family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foster mother is a kind of foster parent", "pln": ["(: cnet_isa_87c32cf2be (IsA foster_mother foster_parent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foster nurse is a kind of nurse", "pln": ["(: cnet_isa_db5de32fa9 (IsA foster_nurse nurse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foster parent is a kind of defender", "pln": ["(: cnet_isa_ec230bd12d (IsA foster_parent defender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foster sister is a kind of female", "pln": ["(: cnet_isa_0a5eeb96d6 (IsA foster_sister female) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foster son is a kind of foster child", "pln": ["(: cnet_isa_a3caaf30cf (IsA foster_son foster_child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fostering is a kind of encouragement", "pln": ["(: cnet_isa_19e75d9362 (IsA fostering encouragement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fothergilla is a kind of shrub", "pln": ["(: cnet_isa_3eb87920d3 (IsA fothergilla shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foucault pendulum is a kind of pendulum", "pln": ["(: cnet_isa_5ec71fdb98 (IsA foucault_pendulum pendulum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foul is a kind of violation", "pln": ["(: cnet_isa_8fcaee9b66 (IsA foul violation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foul ball is a kind of foul", "pln": ["(: cnet_isa_50626a5ac8 (IsA foul_ball foul) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foul line is a kind of line", "pln": ["(: cnet_isa_7521fa2087 (IsA foul_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foul play is a kind of evil", "pln": ["(: cnet_isa_3e4ae2751f (IsA foul_play evil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foul shot is a kind of basketball shot", "pln": ["(: cnet_isa_7e3377438f (IsA foul_shot basketball_shot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foul weather gear is a kind of protective garment", "pln": ["(: cnet_isa_6904b67a24 (IsA foul_weather_gear protective_garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foulard is a kind of fabric", "pln": ["(: cnet_isa_c9901d1703 (IsA foulard fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "foulness is a kind of iniquity", "pln": ["(: cnet_isa_084ae4a8cd (IsA foulness iniquity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "found is a kind of wage", "pln": ["(: cnet_isa_fb2d902cff (IsA found wage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foundation is a kind of support", "pln": ["(: cnet_isa_6d8f3cfa91 (IsA foundation support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foundation is a kind of education", "pln": ["(: cnet_isa_2fb81f2ca9 (IsA foundation education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foundation is a kind of financial institution", "pln": ["(: cnet_isa_0b9ecc03ca (IsA foundation financial_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foundation is a kind of relation", "pln": ["(: cnet_isa_349e3a83f9 (IsA foundation relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foundation garment is a kind of undergarment", "pln": ["(: cnet_isa_25364a8eae (IsA foundation_garment undergarment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foundation stone is a kind of stone", "pln": ["(: cnet_isa_39597bf9f7 (IsA foundation_stone stone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "founder is a kind of originator", "pln": ["(: cnet_isa_185d992b3e (IsA founder originator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "founder is a kind of skilled worker", "pln": ["(: cnet_isa_8a390f016b (IsA founder skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "foundering is a kind of sinking", "pln": ["(: cnet_isa_e230206c04 (IsA foundering sinking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "founding father is a kind of statesman", "pln": ["(: cnet_isa_77dc9802cf (IsA founding_father statesman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "foundling is a kind of baby", "pln": ["(: cnet_isa_08addb2d10 (IsA foundling baby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foundress is a kind of founder", "pln": ["(: cnet_isa_d6c481061b (IsA foundress founder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foundry is a kind of factory", "pln": ["(: cnet_isa_09663ea843 (IsA foundry factory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foundry proof is a kind of proof", "pln": ["(: cnet_isa_7b224132d2 (IsA foundry_proof proof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fountain is a kind of flow", "pln": ["(: cnet_isa_d0f03c9c7c (IsA fountain flow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fountain is a kind of plumbing fixture", "pln": ["(: cnet_isa_75fcb2b522 (IsA fountain plumbing_fixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fountain is a kind of structure", "pln": ["(: cnet_isa_6733f9971b (IsA fountain structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fountain grass is a kind of grass", "pln": ["(: cnet_isa_1180a89923 (IsA fountain_grass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fountain of youth is a kind of spring", "pln": ["(: cnet_isa_4a0a9b694f (IsA fountain_of_youth spring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fountain pen is a kind of pen", "pln": ["(: cnet_isa_a8221b8c61 (IsA fountain_pen pen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fountainhead is a kind of beginning", "pln": ["(: cnet_isa_d3626ac7f5 (IsA fountainhead beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fouquieria is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_dda0d90aba (IsA fouquieria dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fouquieriaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_a690a059d4 (IsA fouquieriaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "four is a kind of digit", "pln": ["(: cnet_isa_8917bb5acd (IsA four digit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "four hitter is a kind of baseball", "pln": ["(: cnet_isa_0207ee6b00 (IsA four_hitter baseball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "four horsemen is a kind of evil", "pln": ["(: cnet_isa_a56cdb59da (IsA four_horsemen evil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "four hundred is a kind of set", "pln": ["(: cnet_isa_aa6ce7d17f (IsA four_hundred set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "four in hand is a kind of necktie", "pln": ["(: cnet_isa_2467ad5d3f (IsA four_in_hand necktie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "four letter word is a kind of word", "pln": ["(: cnet_isa_2b3826f0a0 (IsA four_letter_word word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "four lined plant bug is a kind of mirid bug", "pln": ["(: cnet_isa_f09dd3139c (IsA four_lined_plant_bug mirid_bug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "four main direction is a kind of north south east and west", "pln": ["(: cnet_isa_7ec66dff90 (IsA four_main_direction north_south_east_and_west) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "four minute man is a kind of miler", "pln": ["(: cnet_isa_7e12a008e1 (IsA four_minute_man miler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "four o clock is a kind of flower", "pln": ["(: cnet_isa_f3f2733ef9 (IsA four_o_clock flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "four part harmony is a kind of harmony", "pln": ["(: cnet_isa_19f8f9a770 (IsA four_part_harmony harmony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "four poster is a kind of bed", "pln": ["(: cnet_isa_0356de0f54 (IsA four_poster bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "four pounder is a kind of artillery", "pln": ["(: cnet_isa_cfcf7f3fa4 (IsA four_pounder artillery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "four spot is a kind of dice", "pln": ["(: cnet_isa_30abd38c6b (IsA four_spot dice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "four spot is a kind of domino", "pln": ["(: cnet_isa_505854aa3c (IsA four_spot domino) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "four spot is a kind of spot", "pln": ["(: cnet_isa_29af0fe35b (IsA four_spot spot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "four stroke engine is a kind of internal combustion engine", "pln": ["(: cnet_isa_e85902067c (IsA four_stroke_engine internal_combustion_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "four tailed bandage is a kind of bandage", "pln": ["(: cnet_isa_7bb4a89865 (IsA four_tailed_bandage bandage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "four wheel drive is a kind of motor vehicle", "pln": ["(: cnet_isa_d240fb9c4a (IsA four_wheel_drive motor_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "four wheel drive is a kind of transmission", "pln": ["(: cnet_isa_6d76097003 (IsA four_wheel_drive transmission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "four wheeler is a kind of hackney", "pln": ["(: cnet_isa_6f66963f27 (IsA four_wheeler hackney) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fourier analysis is a kind of analysis", "pln": ["(: cnet_isa_4e72038472 (IsA fourier_analysis analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fourier sery is a kind of sery", "pln": ["(: cnet_isa_8c4b95f644 (IsA fourier_sery sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fourpence is a kind of coin", "pln": ["(: cnet_isa_e62d0b89bf (IsA fourpence coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fourpenny nail is a kind of nail", "pln": ["(: cnet_isa_c64c4c49be (IsA fourpenny_nail nail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fourteen is a kind of large integer", "pln": ["(: cnet_isa_7d95b9e9fb (IsA fourteen large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fourteenth is a kind of rank", "pln": ["(: cnet_isa_8ba5b1dd78 (IsA fourteenth rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fourth is a kind of interval", "pln": ["(: cnet_isa_cb390d6075 (IsA fourth interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fourth is a kind of rank", "pln": ["(: cnet_isa_06c7a34aef (IsA fourth rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fourth council of constantinople is a kind of council", "pln": ["(: cnet_isa_72cdf49efc (IsA fourth_council_of_constantinople council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fourth day of week is a kind of wednesday", "pln": ["(: cnet_isa_b33c8d88d5 (IsA fourth_day_of_week wednesday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fourth dimension is a kind of time", "pln": ["(: cnet_isa_0e95c24725 (IsA fourth_dimension time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fourth dimension is a kind of dimension", "pln": ["(: cnet_isa_13ff52b710 (IsA fourth_dimension dimension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fourth lateran council is a kind of lateran council", "pln": ["(: cnet_isa_bb7b621103 (IsA fourth_lateran_council lateran_council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fourth ventricle is a kind of ventricle", "pln": ["(: cnet_isa_82119180ff (IsA fourth_ventricle ventricle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fovea is a kind of area", "pln": ["(: cnet_isa_2a2ff57bf6 (IsA fovea area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foveal vision is a kind of daylight vision", "pln": ["(: cnet_isa_1f9a93fe25 (IsA foveal_vision daylight_vision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fowl cholera is a kind of animal disease", "pln": ["(: cnet_isa_029e9ca2f4 (IsA fowl_cholera animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fowl cholera is a kind of blood poisoning", "pln": ["(: cnet_isa_75fdc9c73e (IsA fowl_cholera blood_poisoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fowl pest is a kind of animal disease", "pln": ["(: cnet_isa_0b5521e39d (IsA fowl_pest animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fowler is a kind of hunter", "pln": ["(: cnet_isa_93a446788e (IsA fowler hunter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fowling piece is a kind of shotgun", "pln": ["(: cnet_isa_9f71225482 (IsA fowling_piece shotgun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fox is a kind of animal", "pln": ["(: cnet_isa_8104f10400 (IsA fox animal) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fox is a kind of canine", "pln": ["(: cnet_isa_b689065bea (IsA fox canine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fox is a kind of algonquian", "pln": ["(: cnet_isa_2fff7e2dc6 (IsA fox algonquian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fox is a kind of algonquin", "pln": ["(: cnet_isa_2a1604b55b (IsA fox algonquin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fox is a kind of fur", "pln": ["(: cnet_isa_e9ef8b3342 (IsA fox fur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fox grape is a kind of slipskin grape", "pln": ["(: cnet_isa_53b7812c55 (IsA fox_grape slipskin_grape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fox grape is a kind of grape", "pln": ["(: cnet_isa_42d9c04687 (IsA fox_grape grape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fox hunter is a kind of horseman", "pln": ["(: cnet_isa_e1476b4aae (IsA fox_hunter horseman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fox hunting is a kind of hunt", "pln": ["(: cnet_isa_990eec962e (IsA fox_hunting hunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fox squirrel is a kind of tree squirrel", "pln": ["(: cnet_isa_2ab6218213 (IsA fox_squirrel tree_squirrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fox terrier is a kind of terrier", "pln": ["(: cnet_isa_2fcfad98a8 (IsA fox_terrier terrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fox trot is a kind of ballroom dancing", "pln": ["(: cnet_isa_0c87e0c7a1 (IsA fox_trot ballroom_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foxe is a kind of canine", "pln": ["(: cnet_isa_efa75e5bcb (IsA foxe canine) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "foxglove is a kind of herb", "pln": ["(: cnet_isa_3b06e1c464 (IsA foxglove herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foxhole is a kind of bunker", "pln": ["(: cnet_isa_e06da3156e (IsA foxhole bunker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foxhound is a kind of hound", "pln": ["(: cnet_isa_a7e0cb086c (IsA foxhound hound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foxtail is a kind of meadowgrass", "pln": ["(: cnet_isa_04510b8f9f (IsA foxtail meadowgrass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foxtail grass is a kind of ground pine", "pln": ["(: cnet_isa_03bdddfd73 (IsA foxtail_grass ground_pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "foxtail millet is a kind of foxtail", "pln": ["(: cnet_isa_33675a1ca2 (IsA foxtail_millet foxtail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "foxtail orchid is a kind of orchid", "pln": ["(: cnet_isa_ad7c32f43c (IsA foxtail_orchid orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fractal is a kind of form", "pln": ["(: cnet_isa_f5f7147fee (IsA fractal form) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fractal geometry is a kind of geometry", "pln": ["(: cnet_isa_b29787ca63 (IsA fractal_geometry geometry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fraction is a kind of part", "pln": ["(: cnet_isa_91ab451ce8 (IsA fraction part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fraction is a kind of rational number", "pln": ["(: cnet_isa_8aa9f4cc18 (IsA fraction rational_number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fraction is a kind of chemical", "pln": ["(: cnet_isa_52a0ce70be (IsA fraction chemical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fractional currency is a kind of paper money", "pln": ["(: cnet_isa_ec5475dbc4 (IsA fractional_currency paper_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fractional distillation is a kind of fractionation", "pln": ["(: cnet_isa_1d5bcc3898 (IsA fractional_distillation fractionation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fractional monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_ef1ab52df4 (IsA fractional_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fractionation is a kind of division", "pln": ["(: cnet_isa_9e6d48cffe (IsA fractionation division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fractionation is a kind of industrial process", "pln": ["(: cnet_isa_4bc46f949e (IsA fractionation industrial_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fracture is a kind of breakage", "pln": ["(: cnet_isa_b4bc5a22e9 (IsA fracture breakage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fracture is a kind of injury", "pln": ["(: cnet_isa_094774abb7 (IsA fracture injury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fragaria is a kind of rosid dicot genus", "pln": ["(: cnet_isa_60a2d1e54a (IsA fragaria rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fragility is a kind of vulnerability", "pln": ["(: cnet_isa_80dbd580c7 (IsA fragility vulnerability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fragility is a kind of weakness", "pln": ["(: cnet_isa_b890e35182 (IsA fragility weakness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fragment is a kind of piece", "pln": ["(: cnet_isa_25188dc8b8 (IsA fragment piece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fragment is a kind of part", "pln": ["(: cnet_isa_71829359c7 (IsA fragment part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fragmentation is a kind of storage", "pln": ["(: cnet_isa_4f887a3c03 (IsA fragmentation storage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fragmentation is a kind of explosion", "pln": ["(: cnet_isa_56ad60535b (IsA fragmentation explosion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fragmentation is a kind of decomposition", "pln": ["(: cnet_isa_205bff8bc7 (IsA fragmentation decomposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fragmentation bomb is a kind of bomb", "pln": ["(: cnet_isa_2e2ff179f8 (IsA fragmentation_bomb bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fragrant agrimony is a kind of agrimonia", "pln": ["(: cnet_isa_8a20d46f15 (IsA fragrant_agrimony agrimonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fragrant cliff fern is a kind of wood fern", "pln": ["(: cnet_isa_bc5b86ce44 (IsA fragrant_cliff_fern wood_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fragrant orchid is a kind of orchid", "pln": ["(: cnet_isa_cd6bc3b6be (IsA fragrant_orchid orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fragrant sumac is a kind of sumac", "pln": ["(: cnet_isa_22fa845eb8 (IsA fragrant_sumac sumac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frail is a kind of basket", "pln": ["(: cnet_isa_66c1625a0f (IsA frail basket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frail is a kind of weight unit", "pln": ["(: cnet_isa_1d081e7d58 (IsA frail weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frailty is a kind of evil", "pln": ["(: cnet_isa_3e09aef98f (IsA frailty evil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fraise is a kind of choker", "pln": ["(: cnet_isa_89b004b4d6 (IsA fraise choker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fraise is a kind of rampart", "pln": ["(: cnet_isa_5f9c171f6b (IsA fraise rampart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frame is a kind of part", "pln": ["(: cnet_isa_5e4998d3a9 (IsA frame part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frame is a kind of framework", "pln": ["(: cnet_isa_db5f0ba04f (IsA frame framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frame is a kind of picture", "pln": ["(: cnet_isa_1cf1dbf1bc (IsA frame picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frame is a kind of application", "pln": ["(: cnet_isa_587c7fc5b9 (IsA frame application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "frame is a kind of drawing", "pln": ["(: cnet_isa_b537e49689 (IsA frame drawing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frame buffer is a kind of buffer", "pln": ["(: cnet_isa_bc14ddef7a (IsA frame_buffer buffer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frame of reference is a kind of system", "pln": ["(: cnet_isa_234d522a01 (IsA frame_of_reference system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frame up is a kind of falsification", "pln": ["(: cnet_isa_483fefd562 (IsA frame_up falsification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "framer is a kind of skilled worker", "pln": ["(: cnet_isa_45767b00f0 (IsA framer skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "framer is a kind of writer", "pln": ["(: cnet_isa_cc5d6e14d7 (IsA framer writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "framework is a kind of supporting structure", "pln": ["(: cnet_isa_8ec98f6fbd (IsA framework supporting_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "framework is a kind of structure", "pln": ["(: cnet_isa_e1a7839073 (IsA framework structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "framing is a kind of conceptualization", "pln": ["(: cnet_isa_cbacca4a3c (IsA framing conceptualization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "framing is a kind of framework", "pln": ["(: cnet_isa_7d0d851de3 (IsA framing framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "franc is a kind of monetary unit", "pln": ["(: cnet_isa_4268c570f5 (IsA franc monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "franc tireur is a kind of marksman", "pln": ["(: cnet_isa_e119f51483 (IsA franc_tireur marksman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "france is a kind of country", "pln": ["(: cnet_isa_b067c4bd8d (IsA france country) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "france is a kind of country in europe", "pln": ["(: cnet_isa_2817295d45 (IsA france country_in_europe) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "franchise is a kind of concession", "pln": ["(: cnet_isa_dd41c8849c (IsA franchise concession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "franchise is a kind of business", "pln": ["(: cnet_isa_5669d9fc88 (IsA franchise business) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "franchise is a kind of legal right", "pln": ["(: cnet_isa_370201e7c7 (IsA franchise legal_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "franchise tax is a kind of tax", "pln": ["(: cnet_isa_f16e6aaf90 (IsA franchise_tax tax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "francis turbine is a kind of hydroelectric turbine", "pln": ["(: cnet_isa_a49634604f (IsA francis_turbine hydroelectric_turbine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "franciscan order is a kind of order", "pln": ["(: cnet_isa_5fec2a0c3c (IsA franciscan_order order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "francisella is a kind of bacteria", "pln": ["(: cnet_isa_5e8acd0341 (IsA francisella bacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "francisella tularensis is a kind of bacteria specy", "pln": ["(: cnet_isa_744b171893 (IsA francisella_tularensis bacteria_specy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "francium is a kind of metallic element", "pln": ["(: cnet_isa_61e7083ae6 (IsA francium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "franco american is a kind of american", "pln": ["(: cnet_isa_fb219e67da (IsA franco_american american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "francoa is a kind of rosid dicot genus", "pln": ["(: cnet_isa_cc231d17ae (IsA francoa rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "francophil is a kind of supporter", "pln": ["(: cnet_isa_bdb37ab3a4 (IsA francophil supporter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "francophobe is a kind of hater", "pln": ["(: cnet_isa_eafd00ee25 (IsA francophobe hater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frangipane is a kind of pastry", "pln": ["(: cnet_isa_d8f8087664 (IsA frangipane pastry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frangipani is a kind of shrub", "pln": ["(: cnet_isa_eef23d7cc1 (IsA frangipani shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frank is a kind of sausage", "pln": ["(: cnet_isa_2091b46cbc (IsA frank sausage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frank is a kind of european", "pln": ["(: cnet_isa_34b61bcb22 (IsA frank european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frank breech is a kind of breech delivery", "pln": ["(: cnet_isa_f6645e0525 (IsA frank_breech breech_delivery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "frankenstein is a kind of agency", "pln": ["(: cnet_isa_468f781b16 (IsA frankenstein agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frankfurter bun is a kind of bun", "pln": ["(: cnet_isa_1628b3ac3d (IsA frankfurter_bun bun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frankincense is a kind of gum", "pln": ["(: cnet_isa_f4b987e2de (IsA frankincense gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "franking machine is a kind of machine", "pln": ["(: cnet_isa_eb3ea7f208 (IsA franking_machine machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "franklin is a kind of landowner", "pln": ["(: cnet_isa_e348840f30 (IsA franklin landowner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frankliniella is a kind of arthropod genus", "pln": ["(: cnet_isa_4f598a6c96 (IsA frankliniella arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frankness is a kind of communicativeness", "pln": ["(: cnet_isa_ec960ec1ee (IsA frankness communicativeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frappe is a kind of drink", "pln": ["(: cnet_isa_cd3c4e2f37 (IsA frappe drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frappe is a kind of milkshake", "pln": ["(: cnet_isa_982f88f621 (IsA frappe milkshake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fraser fir is a kind of silver fir", "pln": ["(: cnet_isa_17f6d1542c (IsA fraser_fir silver_fir) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frasera is a kind of dicot genus", "pln": ["(: cnet_isa_c4286c8fb2 (IsA frasera dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fratercula is a kind of bird genus", "pln": ["(: cnet_isa_4540caf1ae (IsA fratercula bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fraternal twin is a kind of twin", "pln": ["(: cnet_isa_b7de7ef741 (IsA fraternal_twin twin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fraternity is a kind of club", "pln": ["(: cnet_isa_2a7a642988 (IsA fraternity club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fraternization is a kind of association", "pln": ["(: cnet_isa_49e614563f (IsA fraternization association) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fratricide is a kind of murder", "pln": ["(: cnet_isa_d03bab074e (IsA fratricide murder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fratricide is a kind of murderer", "pln": ["(: cnet_isa_b7e2225ad8 (IsA fratricide murderer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frau is a kind of title", "pln": ["(: cnet_isa_8ce3466cd2 (IsA frau title) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fraud is a kind of deception", "pln": ["(: cnet_isa_42258c59a3 (IsA fraud deception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fraud is a kind of crime", "pln": ["(: cnet_isa_ba6963a251 (IsA fraud crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fraud is a kind of trickery", "pln": ["(: cnet_isa_861b2304f9 (IsA fraud trickery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fraud in fact is a kind of fraud", "pln": ["(: cnet_isa_c1028bb0ea (IsA fraud_in_fact fraud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fraud in factum is a kind of fraud", "pln": ["(: cnet_isa_5c3e930cee (IsA fraud_in_factum fraud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fraud in inducement is a kind of fraud", "pln": ["(: cnet_isa_92101bdd85 (IsA fraud_in_inducement fraud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fraud in law is a kind of constructive fraud", "pln": ["(: cnet_isa_0964710c34 (IsA fraud_in_law constructive_fraud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fraudulence is a kind of dishonesty", "pln": ["(: cnet_isa_7f5f912213 (IsA fraudulence dishonesty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fraudulence is a kind of misrepresentation", "pln": ["(: cnet_isa_0ad5718474 (IsA fraudulence misrepresentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fraulein is a kind of title", "pln": ["(: cnet_isa_79928bdea4 (IsA fraulein title) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fraxinella is a kind of herb", "pln": ["(: cnet_isa_4af4793783 (IsA fraxinella herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fraxinus is a kind of dicot genus", "pln": ["(: cnet_isa_41e548ef67 (IsA fraxinus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frazzle is a kind of exhaustion", "pln": ["(: cnet_isa_efa5ee9c22 (IsA frazzle exhaustion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freak is a kind of mutant", "pln": ["(: cnet_isa_fd2c3f6481 (IsA freak mutant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freckle is a kind of macule", "pln": ["(: cnet_isa_dc10314f44 (IsA freckle macule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "free is a kind of people", "pln": ["(: cnet_isa_53955cf386 (IsA free people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "free agency is a kind of representation", "pln": ["(: cnet_isa_2e754e2fb2 (IsA free_agency representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "free agent is a kind of person", "pln": ["(: cnet_isa_b51396cf7b (IsA free_agent person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "free agent is a kind of professional", "pln": ["(: cnet_isa_bf33e55825 (IsA free_agent professional) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "free association is a kind of thinking", "pln": ["(: cnet_isa_aa75cc1478 (IsA free_association thinking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "free central placentation is a kind of placentation", "pln": ["(: cnet_isa_d913c42725 (IsA free_central_placentation placentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "free electron is a kind of electron", "pln": ["(: cnet_isa_731b3c0ff9 (IsA free_electron electron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "free fall is a kind of drop", "pln": ["(: cnet_isa_80a8ecb1b8 (IsA free_fall drop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "free french is a kind of movement", "pln": ["(: cnet_isa_0afdf849a3 (IsA free_french movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "free hand is a kind of freedom", "pln": ["(: cnet_isa_6c6f297620 (IsA free_hand freedom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "free house is a kind of public house", "pln": ["(: cnet_isa_a9fc705e62 (IsA free_house public_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "free kick is a kind of place kick", "pln": ["(: cnet_isa_aac823d998 (IsA free_kick place_kick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "free list is a kind of list", "pln": ["(: cnet_isa_d1ea870293 (IsA free_list list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "free liver is a kind of free agent", "pln": ["(: cnet_isa_89ed25fc09 (IsA free_liver free_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "free living is a kind of life style", "pln": ["(: cnet_isa_b4a1f30858 (IsA free_living life_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "free lunch is a kind of gift", "pln": ["(: cnet_isa_afd101d11a (IsA free_lunch gift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "free morpheme is a kind of morpheme", "pln": ["(: cnet_isa_346d78052a (IsA free_morpheme morpheme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "free nerve ending is a kind of nerve ending", "pln": ["(: cnet_isa_d3a06d93f7 (IsA free_nerve_ending nerve_ending) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "free phagocyte is a kind of phagocyte", "pln": ["(: cnet_isa_f95872bbbc (IsA free_phagocyte phagocyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "free port is a kind of area", "pln": ["(: cnet_isa_fa49f1d881 (IsA free_port area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "free port is a kind of port", "pln": ["(: cnet_isa_139d287c8d (IsA free_port port) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "free press is a kind of press", "pln": ["(: cnet_isa_94e75add64 (IsA free_press press) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "free radical is a kind of atom", "pln": ["(: cnet_isa_91fe589047 (IsA free_radical atom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "free reed is a kind of beating reed instrument", "pln": ["(: cnet_isa_0435b46305 (IsA free_reed beating_reed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "free reed instrument is a kind of wind instrument", "pln": ["(: cnet_isa_fc6dcbc057 (IsA free_reed_instrument wind_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "free rein is a kind of freedom", "pln": ["(: cnet_isa_39a0c6b4ac (IsA free_rein freedom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "free soil party is a kind of party", "pln": ["(: cnet_isa_aa42625697 (IsA free_soil_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "free state is a kind of american state", "pln": ["(: cnet_isa_b2d133b399 (IsA free_state american_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "free throw lane is a kind of lane", "pln": ["(: cnet_isa_9026a03cb4 (IsA free_throw_lane lane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "free time is a kind of leisure", "pln": ["(: cnet_isa_367bf32e2d (IsA free_time leisure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "free trade is a kind of trade", "pln": ["(: cnet_isa_c330d9e954 (IsA free_trade trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "free trader is a kind of supporter", "pln": ["(: cnet_isa_88b06f4dd9 (IsA free_trader supporter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "free verse is a kind of poem", "pln": ["(: cnet_isa_fb612b7afc (IsA free_verse poem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "free will is a kind of power", "pln": ["(: cnet_isa_9306ac1911 (IsA free_will power) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "free world is a kind of collection", "pln": ["(: cnet_isa_6801d4a7cd (IsA free_world collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freebie is a kind of gift", "pln": ["(: cnet_isa_e3f9f7f1fa (IsA freebie gift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freeboard deck is a kind of upper deck", "pln": ["(: cnet_isa_ee606e634d (IsA freeboard_deck upper_deck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freebsd is a kind of operating system", "pln": ["(: cnet_isa_5749e66396 (IsA freebsd operating_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freedman is a kind of freeman", "pln": ["(: cnet_isa_ee2d41cd63 (IsA freedman freeman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freedom is a kind of abstract concept", "pln": ["(: cnet_isa_93c8311c97 (IsA freedom abstract_concept) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freedom is a kind of belief", "pln": ["(: cnet_isa_2a24742d34 (IsA freedom belief) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freedom is a kind of state of mind", "pln": ["(: cnet_isa_0127e7abf6 (IsA freedom state_of_mind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freedom is a kind of universal right", "pln": ["(: cnet_isa_3b963dae32 (IsA freedom universal_right) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freedom is a kind of state", "pln": ["(: cnet_isa_e19c39c394 (IsA freedom state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freedom from cruel and unusual punishment is a kind of civil right", "pln": ["(: cnet_isa_a034803bb4 (IsA freedom_from_cruel_and_unusual_punishment civil_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freedom from discrimination is a kind of civil right", "pln": ["(: cnet_isa_5ce29fb537 (IsA freedom_from_discrimination civil_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freedom from double jeopardy is a kind of civil right", "pln": ["(: cnet_isa_65ae4571ed (IsA freedom_from_double_jeopardy civil_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freedom from involuntary servitude is a kind of civil right", "pln": ["(: cnet_isa_205c6f3fba (IsA freedom_from_involuntary_servitude civil_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freedom from search and seizure is a kind of civil right", "pln": ["(: cnet_isa_03c249b5a0 (IsA freedom_from_search_and_seizure civil_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freedom from self incrimination is a kind of civil right", "pln": ["(: cnet_isa_8f9a5c8867 (IsA freedom_from_self_incrimination civil_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freedom of assembly is a kind of civil right", "pln": ["(: cnet_isa_b1e1aa0149 (IsA freedom_of_assembly civil_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freedom of press is a kind of civil right", "pln": ["(: cnet_isa_48f10d58bd (IsA freedom_of_press civil_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freedom of religion is a kind of civil right", "pln": ["(: cnet_isa_1279075ed1 (IsA freedom_of_religion civil_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freedom of sea is a kind of freedom", "pln": ["(: cnet_isa_02112675ba (IsA freedom_of_sea freedom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freedom of speech is a kind of civil right", "pln": ["(: cnet_isa_4a52cc065b (IsA freedom_of_speech civil_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freedom of thought is a kind of human right", "pln": ["(: cnet_isa_0c54356a08 (IsA freedom_of_thought human_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freedom rider is a kind of civil right leader", "pln": ["(: cnet_isa_3d16825106 (IsA freedom_rider civil_right_leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freedom to bear arm is a kind of civil right", "pln": ["(: cnet_isa_75ebd1be4e (IsA freedom_to_bear_arm civil_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freehold is a kind of estate", "pln": ["(: cnet_isa_245f64f19d (IsA freehold estate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freehold is a kind of tenure", "pln": ["(: cnet_isa_9e5d769655 (IsA freehold tenure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freeholder is a kind of landowner", "pln": ["(: cnet_isa_bf71861ef6 (IsA freeholder landowner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "freelance is a kind of worker", "pln": ["(: cnet_isa_594a3243ac (IsA freelance worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freeloader is a kind of borrower", "pln": ["(: cnet_isa_6a2bd1373c (IsA freeloader borrower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freemail is a kind of electronic mail", "pln": ["(: cnet_isa_49883f10b3 (IsA freemail electronic_mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freeman is a kind of citizen", "pln": ["(: cnet_isa_abad6c8f4d (IsA freeman citizen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freemason is a kind of brother", "pln": ["(: cnet_isa_388168cd96 (IsA freemason brother) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freemasonry is a kind of secret society", "pln": ["(: cnet_isa_0613a1e6b7 (IsA freemasonry secret_society) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freemasonry is a kind of company", "pln": ["(: cnet_isa_963889baeb (IsA freemasonry company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freesia is a kind of iridaceous plant", "pln": ["(: cnet_isa_3da678ef78 (IsA freesia iridaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freestone is a kind of edible fruit", "pln": ["(: cnet_isa_fe45183687 (IsA freestone edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "freestyle is a kind of race", "pln": ["(: cnet_isa_fb4c9f3f7f (IsA freestyle race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freetail is a kind of carnivorous bat", "pln": ["(: cnet_isa_bae0ccb9aa (IsA freetail carnivorous_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freeware is a kind of software", "pln": ["(: cnet_isa_245449516c (IsA freeware software) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "freeway is a kind of road", "pln": ["(: cnet_isa_16ff1727dd (IsA freeway road) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freewheel is a kind of clutch", "pln": ["(: cnet_isa_61a813e623 (IsA freewheel clutch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freeze is a kind of limitation", "pln": ["(: cnet_isa_fc77e56e39 (IsA freeze limitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freeze is a kind of pause", "pln": ["(: cnet_isa_f0e0bb557e (IsA freeze pause) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freeze is a kind of cold weather", "pln": ["(: cnet_isa_0da8f16fbd (IsA freeze cold_weather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freeze is a kind of cooling", "pln": ["(: cnet_isa_0059a9f521 (IsA freeze cooling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freeze is a kind of phase change", "pln": ["(: cnet_isa_1458f284b8 (IsA freeze phase_change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freeze drying is a kind of dehydration", "pln": ["(: cnet_isa_0ac0814b28 (IsA freeze_drying dehydration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freeze drying is a kind of freeze", "pln": ["(: cnet_isa_4b4911f442 (IsA freeze_drying freeze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freezing mixture is a kind of mixture", "pln": ["(: cnet_isa_957ccf8523 (IsA freezing_mixture mixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freezing point is a kind of temperature", "pln": ["(: cnet_isa_1ab0dcf51d (IsA freezing_point temperature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fregata is a kind of bird genus", "pln": ["(: cnet_isa_e25aa33e38 (IsA fregata bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fregatidae is a kind of bird family", "pln": ["(: cnet_isa_f4772b680b (IsA fregatidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freight is a kind of transportation", "pln": ["(: cnet_isa_7d31c950f7 (IsA freight transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freight is a kind of rate", "pln": ["(: cnet_isa_400f356c87 (IsA freight rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freight agent is a kind of agent", "pln": ["(: cnet_isa_ef15390023 (IsA freight_agent agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "freight car is a kind of car", "pln": ["(: cnet_isa_5451380057 (IsA freight_car car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freight elevator is a kind of elevator", "pln": ["(: cnet_isa_3104848ba9 (IsA freight_elevator elevator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freight liner is a kind of freight train", "pln": ["(: cnet_isa_8be4291e2e (IsA freight_liner freight_train) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freight train is a kind of train", "pln": ["(: cnet_isa_64ecea86cf (IsA freight_train train) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fremontodendron is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_2d9038dfe7 (IsA fremontodendron dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french is a kind of human language", "pln": ["(: cnet_isa_0897b4f80f (IsA french human_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "french is a kind of language", "pln": ["(: cnet_isa_d36fe03af6 (IsA french language) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french is a kind of romance", "pln": ["(: cnet_isa_78242e70dc (IsA french romance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french academy is a kind of academy", "pln": ["(: cnet_isa_b48fd76d7c (IsA french_academy academy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french blue is a kind of ultramarine", "pln": ["(: cnet_isa_fba6bafc0f (IsA french_blue ultramarine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french bread is a kind of white bread", "pln": ["(: cnet_isa_951a7148f6 (IsA french_bread white_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french bulldog is a kind of bulldog", "pln": ["(: cnet_isa_86670b05db (IsA french_bulldog bulldog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french canadian is a kind of canadian", "pln": ["(: cnet_isa_87e2afb52c (IsA french_canadian canadian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french chalk is a kind of talc", "pln": ["(: cnet_isa_217815d680 (IsA french_chalk talc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french door is a kind of door", "pln": ["(: cnet_isa_6c323a62d3 (IsA french_door door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french dressing is a kind of dressing", "pln": ["(: cnet_isa_3b769988ce (IsA french_dressing dressing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french foreign legion is a kind of foreign legion", "pln": ["(: cnet_isa_a7b7456b7b (IsA french_foreign_legion foreign_legion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french foreign office is a kind of foreign office", "pln": ["(: cnet_isa_7e470e767e (IsA french_foreign_office foreign_office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french franc is a kind of franc", "pln": ["(: cnet_isa_12ae5a6795 (IsA french_franc franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french fry is a kind of potato", "pln": ["(: cnet_isa_12577a7295 (IsA french_fry potato) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french fritter is a kind of friedcake", "pln": ["(: cnet_isa_4888bb4fef (IsA french_fritter friedcake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french heel is a kind of heel", "pln": ["(: cnet_isa_1ade18a250 (IsA french_heel heel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french honeysuckle is a kind of subshrub", "pln": ["(: cnet_isa_fef44e26a5 (IsA french_honeysuckle subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french horn is a kind of musical instrument", "pln": ["(: cnet_isa_428b077144 (IsA french_horn musical_instrument) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french horn is a kind of brass", "pln": ["(: cnet_isa_c37cbc2ddd (IsA french_horn brass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french knot is a kind of embroidery stitch", "pln": ["(: cnet_isa_545b71c684 (IsA french_knot embroidery_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "french lavender is a kind of lavender", "pln": ["(: cnet_isa_3cd586d5a3 (IsA french_lavender lavender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french leave is a kind of departure", "pln": ["(: cnet_isa_7ef2c6b831 (IsA french_leave departure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french lesson is a kind of language lesson", "pln": ["(: cnet_isa_7aa8232737 (IsA french_lesson language_lesson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french loaf is a kind of loaf of bread", "pln": ["(: cnet_isa_8f9f4c933f (IsA french_loaf loaf_of_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "french marigold is a kind of marigold", "pln": ["(: cnet_isa_9a4592956c (IsA french_marigold marigold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french omelet is a kind of firm omelet", "pln": ["(: cnet_isa_278651fdfb (IsA french_omelet firm_omelet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french pastry is a kind of pastry", "pln": ["(: cnet_isa_04fcf7a5a1 (IsA french_pastry pastry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french people is a kind of nation", "pln": ["(: cnet_isa_5f127fba24 (IsA french_people nation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french person is a kind of european", "pln": ["(: cnet_isa_2ac94fa46f (IsA french_person european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french polish is a kind of shellac", "pln": ["(: cnet_isa_c0936780db (IsA french_polish shellac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french polish is a kind of polish", "pln": ["(: cnet_isa_a928863ee4 (IsA french_polish polish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french region is a kind of geographical area", "pln": ["(: cnet_isa_84f9c33396 (IsA french_region geographical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french restaurant is a kind of restaurant", "pln": ["(: cnet_isa_9da5e6bd13 (IsA french_restaurant restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french roof is a kind of mansard", "pln": ["(: cnet_isa_80dd20e9e7 (IsA french_roof mansard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french sorrel is a kind of green", "pln": ["(: cnet_isa_51dd82e50d (IsA french_sorrel green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french sorrel is a kind of dock", "pln": ["(: cnet_isa_b575ce1cef (IsA french_sorrel dock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french teacher is a kind of teacher", "pln": ["(: cnet_isa_d13ba3fe3a (IsA french_teacher teacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french toast is a kind of dish", "pln": ["(: cnet_isa_b0f4b56bf1 (IsA french_toast dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "french window is a kind of french door", "pln": ["(: cnet_isa_6c11defdbd (IsA french_window french_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frequency is a kind of ratio", "pln": ["(: cnet_isa_56c455a9c5 (IsA frequency ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frequency is a kind of cardinal number", "pln": ["(: cnet_isa_57fbc15e92 (IsA frequency cardinal_number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frequency is a kind of rate", "pln": ["(: cnet_isa_71c5df3124 (IsA frequency rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frequency band is a kind of band", "pln": ["(: cnet_isa_f9a4bcabf0 (IsA frequency_band band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frequency distribution is a kind of distribution", "pln": ["(: cnet_isa_1a71cd7bee (IsA frequency_distribution distribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frequency modulation is a kind of modulation", "pln": ["(: cnet_isa_652871d71b (IsA frequency_modulation modulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frequency response is a kind of sensitivity", "pln": ["(: cnet_isa_f719e6c657 (IsA frequency_response sensitivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frequency response curve is a kind of characteristic curve", "pln": ["(: cnet_isa_334ce3f9ea (IsA frequency_response_curve characteristic_curve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frequentative is a kind of verb", "pln": ["(: cnet_isa_f4fa098801 (IsA frequentative verb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fresco is a kind of painting", "pln": ["(: cnet_isa_396386542a (IsA fresco painting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fresco is a kind of mural", "pln": ["(: cnet_isa_67e694fc93 (IsA fresco mural) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fresh bean is a kind of common bean", "pln": ["(: cnet_isa_df025fad3c (IsA fresh_bean common_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fresh breeze is a kind of breeze", "pln": ["(: cnet_isa_abe8d363db (IsA fresh_breeze breeze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fresh food is a kind of food", "pln": ["(: cnet_isa_2a62050883 (IsA fresh_food food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fresh gale is a kind of gale", "pln": ["(: cnet_isa_4b7576e002 (IsA fresh_gale gale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fresh start is a kind of opportunity", "pln": ["(: cnet_isa_fe24a2ef1b (IsA fresh_start opportunity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fresh water is a kind of water", "pln": ["(: cnet_isa_76ed89ae1f (IsA fresh_water water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freshener is a kind of thing", "pln": ["(: cnet_isa_93797a93ab (IsA freshener thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freshet is a kind of flow", "pln": ["(: cnet_isa_4774812b2f (IsA freshet flow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freshman is a kind of lowerclassman", "pln": ["(: cnet_isa_4f616a289d (IsA freshman lowerclassman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freshman class is a kind of class", "pln": ["(: cnet_isa_55fc932b6f (IsA freshman_class class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freshness is a kind of newness", "pln": ["(: cnet_isa_80b47c6e5a (IsA freshness newness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freshness is a kind of originality", "pln": ["(: cnet_isa_a47c1a22f9 (IsA freshness originality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freshness is a kind of good health", "pln": ["(: cnet_isa_a24f178015 (IsA freshness good_health) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freshwater bass is a kind of bass", "pln": ["(: cnet_isa_c6ff0edf9e (IsA freshwater_bass bass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freshwater bass is a kind of freshwater fish", "pln": ["(: cnet_isa_fec248eea3 (IsA freshwater_bass freshwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freshwater bream is a kind of sunfish", "pln": ["(: cnet_isa_a514a37254 (IsA freshwater_bream sunfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freshwater fish is a kind of seafood", "pln": ["(: cnet_isa_0c6c64486f (IsA freshwater_fish seafood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freshwater mussel is a kind of mussel", "pln": ["(: cnet_isa_318ad87a57 (IsA freshwater_mussel mussel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fresnel len is a kind of len", "pln": ["(: cnet_isa_cf63af065d (IsA fresnel_len len) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fret is a kind of architectural ornament", "pln": ["(: cnet_isa_724ccf3d37 (IsA fret architectural_ornament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fret is a kind of bar", "pln": ["(: cnet_isa_b4364efadc (IsA fret bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fret is a kind of agitation", "pln": ["(: cnet_isa_eed8e52e0d (IsA fret agitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freudian is a kind of follower", "pln": ["(: cnet_isa_9da9863481 (IsA freudian follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freudian psychology is a kind of psychotherapy", "pln": ["(: cnet_isa_6217865fd3 (IsA freudian_psychology psychotherapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "freudian slip is a kind of slip", "pln": ["(: cnet_isa_24e211be10 (IsA freudian_slip slip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "friar s cowl is a kind of arum", "pln": ["(: cnet_isa_ff8e4ad5f8 (IsA friar_s_cowl arum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "friar s lantern is a kind of light", "pln": ["(: cnet_isa_43e7ac019b (IsA friar_s_lantern light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "friar is a kind of religious", "pln": ["(: cnet_isa_e821442a35 (IsA friar religious) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "friar preacher is a kind of friar", "pln": ["(: cnet_isa_4fbfaaaa00 (IsA friar_preacher friar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "friary is a kind of monastery", "pln": ["(: cnet_isa_25c30b200c (IsA friary monastery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fricandeau is a kind of veal roast", "pln": ["(: cnet_isa_169e261a9a (IsA fricandeau veal_roast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fricassee is a kind of stew", "pln": ["(: cnet_isa_e1848ae4e7 (IsA fricassee stew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fricative consonant is a kind of continuant consonant", "pln": ["(: cnet_isa_6fb355c98e (IsA fricative_consonant continuant_consonant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "friction is a kind of effort", "pln": ["(: cnet_isa_81f8c02c36 (IsA friction effort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "friction is a kind of resistance", "pln": ["(: cnet_isa_638288ffb0 (IsA friction resistance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "friction clutch is a kind of clutch", "pln": ["(: cnet_isa_c0476549f4 (IsA friction_clutch clutch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "friction tape is a kind of adhesive tape", "pln": ["(: cnet_isa_9fc9bb7bbd (IsA friction_tape adhesive_tape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "friday is a kind of weekday", "pln": ["(: cnet_isa_f5693232c5 (IsA friday weekday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fried egg is a kind of dish", "pln": ["(: cnet_isa_101bc99107 (IsA fried_egg dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fried rice is a kind of dish", "pln": ["(: cnet_isa_eba9513ff3 (IsA fried_rice dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "friedcake is a kind of cake", "pln": ["(: cnet_isa_4f8ea9b425 (IsA friedcake cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "friedman test is a kind of pregnancy test", "pln": ["(: cnet_isa_087527e473 (IsA friedman_test pregnancy_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "friedreich s ataxia is a kind of ataxia", "pln": ["(: cnet_isa_2f7d568800 (IsA friedreich_s_ataxia ataxia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "friend is a kind of person", "pln": ["(: cnet_isa_5733c7f171 (IsA friend person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "friendlessness is a kind of aloneness", "pln": ["(: cnet_isa_f93a30f76c (IsA friendlessness aloneness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "friendliness is a kind of disposition", "pln": ["(: cnet_isa_cd2d278f33 (IsA friendliness disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "friendliness is a kind of liking", "pln": ["(: cnet_isa_ec9d97f8b8 (IsA friendliness liking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "friendly is a kind of military personnel", "pln": ["(: cnet_isa_0a5dfe838b (IsA friendly military_personnel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "friendly fire is a kind of fire", "pln": ["(: cnet_isa_cf113d2d11 (IsA friendly_fire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "friendly takeover is a kind of takeover", "pln": ["(: cnet_isa_df512a2de0 (IsA friendly_takeover takeover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "friend is a kind of people whom", "pln": ["(: cnet_isa_4e18f23a4b (IsA friend people_whom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "friendship is a kind of relationship", "pln": ["(: cnet_isa_9df4beeba7 (IsA friendship relationship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "friendship plant is a kind of nettle", "pln": ["(: cnet_isa_742d573f7a (IsA friendship_plant nettle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "friesian is a kind of dairy cattle", "pln": ["(: cnet_isa_002a00db29 (IsA friesian dairy_cattle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frieze is a kind of architectural ornament", "pln": ["(: cnet_isa_acb9a52191 (IsA frieze architectural_ornament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frieze is a kind of fabric", "pln": ["(: cnet_isa_d66e4a5862 (IsA frieze fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frigate is a kind of warship", "pln": ["(: cnet_isa_dd3072f645 (IsA frigate warship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frigate bird is a kind of pelecaniform seabird", "pln": ["(: cnet_isa_933d01682f (IsA frigate_bird pelecaniform_seabird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frightfulness is a kind of awfulness", "pln": ["(: cnet_isa_dd972cc430 (IsA frightfulness awfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frigid zone is a kind of climatic zone", "pln": ["(: cnet_isa_eeb23b644a (IsA frigid_zone climatic_zone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frigidity is a kind of unresponsiveness", "pln": ["(: cnet_isa_a234fcb0a7 (IsA frigidity unresponsiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frijole is a kind of common bean", "pln": ["(: cnet_isa_de9e5f435d (IsA frijole common_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frill is a kind of adornment", "pln": ["(: cnet_isa_80d2527137 (IsA frill adornment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "frill is a kind of external body part", "pln": ["(: cnet_isa_7c18425431 (IsA frill external_body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frill is a kind of plate", "pln": ["(: cnet_isa_54dd6331b9 (IsA frill plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frilled lizard is a kind of agamid", "pln": ["(: cnet_isa_2f2fc82c75 (IsA frilled_lizard agamid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frimaire is a kind of revolutionary calendar month", "pln": ["(: cnet_isa_0aa80aaf0e (IsA frimaire revolutionary_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fringe is a kind of edging", "pln": ["(: cnet_isa_16f7c6a615 (IsA fringe edging) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fringe is a kind of social group", "pln": ["(: cnet_isa_81c2a03f35 (IsA fringe social_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fringe benefit is a kind of benefit", "pln": ["(: cnet_isa_98da07fad3 (IsA fringe_benefit benefit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fringe bush is a kind of fringe tree", "pln": ["(: cnet_isa_fc0eaf28ae (IsA fringe_bush fringe_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fringe toed lizard is a kind of iguanid", "pln": ["(: cnet_isa_11a6a55011 (IsA fringe_toed_lizard iguanid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fringe tree is a kind of tree", "pln": ["(: cnet_isa_8f366c5400 (IsA fringe_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fringed gentian is a kind of gentian", "pln": ["(: cnet_isa_46dda7ce12 (IsA fringed_gentian gentian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fringed grass of parnassus is a kind of wildflower", "pln": ["(: cnet_isa_16d5786447 (IsA fringed_grass_of_parnassus wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fringed loosestrife is a kind of loosestrife", "pln": ["(: cnet_isa_af0ba546e9 (IsA fringed_loosestrife loosestrife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fringed orchis is a kind of orchid", "pln": ["(: cnet_isa_77575b0ecb (IsA fringed_orchis orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fringed pink is a kind of pink", "pln": ["(: cnet_isa_1407e17418 (IsA fringed_pink pink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fringed poppy mallow is a kind of poppy mallow", "pln": ["(: cnet_isa_33ff2435fa (IsA fringed_poppy_mallow poppy_mallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fringepod is a kind of herb", "pln": ["(: cnet_isa_aea88c5ca1 (IsA fringepod herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fringilla is a kind of bird genus", "pln": ["(: cnet_isa_c50a9aa237 (IsA fringilla bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fringillidae is a kind of bird family", "pln": ["(: cnet_isa_59b46d0fc9 (IsA fringillidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "frisbee is a kind of aerodynamic toy disc", "pln": ["(: cnet_isa_4c4ecddfd4 (IsA frisbee aerodynamic_toy_disc) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frisbee is a kind of fun sport", "pln": ["(: cnet_isa_17dbb1cd73 (IsA frisbee fun_sport) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frisbee is a kind of round flying disc", "pln": ["(: cnet_isa_f2bd6669db (IsA frisbee round_flying_disc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frisian is a kind of west germanic", "pln": ["(: cnet_isa_5acc779841 (IsA frisian west_germanic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "frisian is a kind of dutch people", "pln": ["(: cnet_isa_81f519a1b2 (IsA frisian dutch_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frisk is a kind of search", "pln": ["(: cnet_isa_358c8339a0 (IsA frisk search) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "friskiness is a kind of playfulness", "pln": ["(: cnet_isa_239c81a851 (IsA friskiness playfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frisson is a kind of fear", "pln": ["(: cnet_isa_d9e5cda368 (IsA frisson fear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fritillaria is a kind of liliid monocot genus", "pln": ["(: cnet_isa_6da9ae72e6 (IsA fritillaria liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fritillary is a kind of nymphalid", "pln": ["(: cnet_isa_abcc33dc3f (IsA fritillary nymphalid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fritillary is a kind of bulbous plant", "pln": ["(: cnet_isa_7f5276d422 (IsA fritillary bulbous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frittata is a kind of dish", "pln": ["(: cnet_isa_8455befaf2 (IsA frittata dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fritter is a kind of friedcake", "pln": ["(: cnet_isa_cc76406504 (IsA fritter friedcake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fritter batter is a kind of batter", "pln": ["(: cnet_isa_f491545555 (IsA fritter_batter batter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "friulian is a kind of rhaeto romance", "pln": ["(: cnet_isa_371ed5bc94 (IsA friulian rhaeto_romance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frivolity is a kind of trait", "pln": ["(: cnet_isa_9b8f8da61e (IsA frivolity trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frizz is a kind of condition", "pln": ["(: cnet_isa_776fbeb361 (IsA frizz condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frock is a kind of habit", "pln": ["(: cnet_isa_467a2cca09 (IsA frock habit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frock is a kind of overgarment", "pln": ["(: cnet_isa_df2b813a1c (IsA frock overgarment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frock coat is a kind of coat", "pln": ["(: cnet_isa_210f0e0f20 (IsA frock_coat coat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "froelichia is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_9d41899001 (IsA froelichia caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frog s lettuce is a kind of pondweed", "pln": ["(: cnet_isa_5d2c4af3cd (IsA frog_s_lettuce pondweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frog is a kind of amphibian", "pln": ["(: cnet_isa_d8240e9507 (IsA frog amphibian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frog is a kind of adornment", "pln": ["(: cnet_isa_0fcdc9847c (IsA frog adornment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frog is a kind of french person", "pln": ["(: cnet_isa_6d96a230c4 (IsA frog french_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frog kick is a kind of swimming kick", "pln": ["(: cnet_isa_d064e8ee64 (IsA frog_kick swimming_kick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frog leg is a kind of dish", "pln": ["(: cnet_isa_80d03fe364 (IsA frog_leg dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frog orchid is a kind of orchid", "pln": ["(: cnet_isa_db135ece57 (IsA frog_orchid orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frogbit is a kind of aquatic plant", "pln": ["(: cnet_isa_2cf6fcc2e5 (IsA frogbit aquatic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frogfish is a kind of spiny finned fish", "pln": ["(: cnet_isa_8a31df8ba8 (IsA frogfish spiny_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "froghopper is a kind of spittle insect", "pln": ["(: cnet_isa_af50348ca6 (IsA froghopper spittle_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frogmouth is a kind of caprimulgiform bird", "pln": ["(: cnet_isa_5f42b5cba0 (IsA frogmouth caprimulgiform_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frog is a kind of animal", "pln": ["(: cnet_isa_714210fd28 (IsA frog animal) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frond is a kind of leaf", "pln": ["(: cnet_isa_d03dab938c (IsA frond leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "front is a kind of side", "pln": ["(: cnet_isa_329dcf5bc0 (IsA front side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "front is a kind of appearance", "pln": ["(: cnet_isa_390038d63a (IsA front appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "front is a kind of position", "pln": ["(: cnet_isa_98598e1a47 (IsA front position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "front is a kind of atmospheric phenomenon", "pln": ["(: cnet_isa_e1dac6fb97 (IsA front atmospheric_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "front is a kind of sphere", "pln": ["(: cnet_isa_b5291a9663 (IsA front sphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "front bench is a kind of seat", "pln": ["(: cnet_isa_5afc14c6cb (IsA front_bench seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "front burner is a kind of precedence", "pln": ["(: cnet_isa_edbe0e1b6f (IsA front_burner precedence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "front door is a kind of exterior door", "pln": ["(: cnet_isa_ef27e67c3f (IsA front_door exterior_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "front man is a kind of deceiver", "pln": ["(: cnet_isa_72e4fc3096 (IsA front_man deceiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "front matter is a kind of matter", "pln": ["(: cnet_isa_fe0302a4aa (IsA front_matter matter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "front porch is a kind of porch", "pln": ["(: cnet_isa_e40dbc1950 (IsA front_porch porch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "front porch campaigning is a kind of campaigning", "pln": ["(: cnet_isa_5b384f5ace (IsA front_porch_campaigning campaigning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "front projector is a kind of projector", "pln": ["(: cnet_isa_c4bcb8487b (IsA front_projector projector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "front runner is a kind of rival", "pln": ["(: cnet_isa_3c6066ed0c (IsA front_runner rival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "front tooth is a kind of tooth", "pln": ["(: cnet_isa_15708b08fc (IsA front_tooth tooth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "front yard is a kind of yard", "pln": ["(: cnet_isa_b2b5816341 (IsA front_yard yard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "frontage is a kind of direction", "pln": ["(: cnet_isa_20938495cc (IsA frontage direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frontage is a kind of extent", "pln": ["(: cnet_isa_8f49cc0de2 (IsA frontage extent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frontage road is a kind of local road", "pln": ["(: cnet_isa_d1053b6287 (IsA frontage_road local_road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frontal is a kind of curtain", "pln": ["(: cnet_isa_cf93e52ca0 (IsA frontal curtain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frontal area is a kind of lobe", "pln": ["(: cnet_isa_eade6cf579 (IsA frontal_area lobe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frontal bone is a kind of membrane bone", "pln": ["(: cnet_isa_ec5f6d4e2c (IsA frontal_bone membrane_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frontal eminence is a kind of bulge", "pln": ["(: cnet_isa_919cd6494d (IsA frontal_eminence bulge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frontal gyrus is a kind of gyrus", "pln": ["(: cnet_isa_82db4f9106 (IsA frontal_gyrus gyrus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frontal sinus is a kind of sinus", "pln": ["(: cnet_isa_e215f4318c (IsA frontal_sinus sinus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frontal suture is a kind of suture", "pln": ["(: cnet_isa_79bb2f5ea7 (IsA frontal_suture suture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frontbencher is a kind of legislator", "pln": ["(: cnet_isa_9f0dc069b1 (IsA frontbencher legislator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frontier is a kind of discipline", "pln": ["(: cnet_isa_dedda11dda (IsA frontier discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frontier is a kind of boundary", "pln": ["(: cnet_isa_87c1cd0a30 (IsA frontier boundary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frontier is a kind of wilderness", "pln": ["(: cnet_isa_abe777d7f6 (IsA frontier wilderness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frontier settlement is a kind of colony", "pln": ["(: cnet_isa_033b0f0509 (IsA frontier_settlement colony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frontiersman is a kind of pioneer", "pln": ["(: cnet_isa_78101238c9 (IsA frontiersman pioneer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frontierswoman is a kind of pioneer", "pln": ["(: cnet_isa_11eb3d247a (IsA frontierswoman pioneer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frontispiece is a kind of facade", "pln": ["(: cnet_isa_de8e6a6b52 (IsA frontispiece facade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frontispiece is a kind of front", "pln": ["(: cnet_isa_a2cfe79d37 (IsA frontispiece front) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frontlet is a kind of adornment", "pln": ["(: cnet_isa_08b356de14 (IsA frontlet adornment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frost s bolete is a kind of bolete", "pln": ["(: cnet_isa_35b347ed2a (IsA frost_s_bolete bolete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frost is a kind of freeze", "pln": ["(: cnet_isa_5d8e245d84 (IsA frost freeze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "frost is a kind of ice", "pln": ["(: cnet_isa_3c72cec7a6 (IsA frost ice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frost heave is a kind of geological phenomenon", "pln": ["(: cnet_isa_094e409ad1 (IsA frost_heave geological_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frostbite is a kind of injury", "pln": ["(: cnet_isa_14f44ee54c (IsA frostbite injury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frosted bat is a kind of vespertilian bat", "pln": ["(: cnet_isa_e47c184c59 (IsA frosted_bat vespertilian_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frostiness is a kind of coldness", "pln": ["(: cnet_isa_ae8ffc3895 (IsA frostiness coldness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frostiness is a kind of white", "pln": ["(: cnet_isa_73bd9a848c (IsA frostiness white) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frosting is a kind of topping", "pln": ["(: cnet_isa_96aad22c67 (IsA frosting topping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frostweed is a kind of helianthemum", "pln": ["(: cnet_isa_1ff11e392a (IsA frostweed helianthemum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frottage is a kind of masturbation", "pln": ["(: cnet_isa_cc30428863 (IsA frottage masturbation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frotteur is a kind of masturbator", "pln": ["(: cnet_isa_4f4221fba4 (IsA frotteur masturbator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frown is a kind of facial expression", "pln": ["(: cnet_isa_13a6b5a631 (IsA frown facial_expression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frown line is a kind of wrinkle", "pln": ["(: cnet_isa_8ec1dedbd8 (IsA frown_line wrinkle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frozen custard is a kind of frozen dessert", "pln": ["(: cnet_isa_f4a9abab2c (IsA frozen_custard frozen_dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frozen dessert is a kind of dessert", "pln": ["(: cnet_isa_f5d9a4279b (IsA frozen_dessert dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frozen food is a kind of foodstuff", "pln": ["(: cnet_isa_55df5730bc (IsA frozen_food foodstuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frozen orange juice is a kind of concentrate", "pln": ["(: cnet_isa_17ab3b3574 (IsA frozen_orange_juice concentrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frozen orange juice is a kind of orange juice", "pln": ["(: cnet_isa_36332270ec (IsA frozen_orange_juice orange_juice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frozen pudding is a kind of frozen dessert", "pln": ["(: cnet_isa_384f165660 (IsA frozen_pudding frozen_dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frozen yogurt is a kind of frozen dessert", "pln": ["(: cnet_isa_5f1ccd44e1 (IsA frozen_yogurt frozen_dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frozen yogurt is a kind of yogurt", "pln": ["(: cnet_isa_a758d0f22e (IsA frozen_yogurt yogurt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fructidor is a kind of revolutionary calendar month", "pln": ["(: cnet_isa_0963a69acb (IsA fructidor revolutionary_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fructification is a kind of reproductive structure", "pln": ["(: cnet_isa_9ead5fc788 (IsA fructification reproductive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fructification is a kind of growth", "pln": ["(: cnet_isa_3d37726dca (IsA fructification growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fructose is a kind of ketohexose", "pln": ["(: cnet_isa_a325ea7c2f (IsA fructose ketohexose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fructosuria is a kind of glycosuria", "pln": ["(: cnet_isa_1afe18d342 (IsA fructosuria glycosuria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frugality is a kind of prudence", "pln": ["(: cnet_isa_0d66a71245 (IsA frugality prudence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruit is a kind of another name for homosexual", "pln": ["(: cnet_isa_c7601d2b43 (IsA fruit another_name_for_homosexual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruit is a kind of better snack than candy", "pln": ["(: cnet_isa_65caf551eb (IsA fruit better_snack_than_candy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruit is a kind of good snack", "pln": ["(: cnet_isa_ca43420252 (IsA fruit good_snack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruit is a kind of good source of vitamin", "pln": ["(: cnet_isa_42a7264c28 (IsA fruit good_source_of_vitamin) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fruit is a kind of important food group", "pln": ["(: cnet_isa_53d639648b (IsA fruit important_food_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruit is a kind of important food source", "pln": ["(: cnet_isa_f507867809 (IsA fruit important_food_source) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruit is a kind of source of vitamin c", "pln": ["(: cnet_isa_e697737fe0 (IsA fruit source_of_vitamin_c) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruit is a kind of consequence", "pln": ["(: cnet_isa_7f363c132d (IsA fruit consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruit is a kind of reproductive structure", "pln": ["(: cnet_isa_183427f047 (IsA fruit reproductive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruit bar is a kind of cookie", "pln": ["(: cnet_isa_2fa496a93f (IsA fruit_bar cookie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruit bat is a kind of bat", "pln": ["(: cnet_isa_50fff1e401 (IsA fruit_bat bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruit cocktail is a kind of cocktail", "pln": ["(: cnet_isa_5087cb7fe9 (IsA fruit_cocktail cocktail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruit custard is a kind of custard", "pln": ["(: cnet_isa_1af9b9b252 (IsA fruit_custard custard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruit drink is a kind of beverage", "pln": ["(: cnet_isa_db16cb1d39 (IsA fruit_drink beverage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruit fly is a kind of dipterous insect", "pln": ["(: cnet_isa_33b5a7617a (IsA fruit_fly dipterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruit grower is a kind of agriculturist", "pln": ["(: cnet_isa_ee25c11078 (IsA fruit_grower agriculturist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruit juice is a kind of beverage", "pln": ["(: cnet_isa_9e8e584945 (IsA fruit_juice beverage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruit machine is a kind of slot", "pln": ["(: cnet_isa_48f26e20d6 (IsA fruit_machine slot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruit of poisonous tree is a kind of rule of evidence", "pln": ["(: cnet_isa_875d0a458d (IsA fruit_of_poisonous_tree rule_of_evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruit punch is a kind of drink", "pln": ["(: cnet_isa_2d6e149c56 (IsA fruit_punch drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruit punch is a kind of punch", "pln": ["(: cnet_isa_9033ff92da (IsA fruit_punch punch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruit salad is a kind of salad", "pln": ["(: cnet_isa_cb287bdfdd (IsA fruit_salad salad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruit tree is a kind of angiospermous tree", "pln": ["(: cnet_isa_5d9c6e8ad8 (IsA fruit_tree angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruitage is a kind of crop", "pln": ["(: cnet_isa_60eb5bd486 (IsA fruitage crop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruitcake is a kind of cake", "pln": ["(: cnet_isa_50e6961f07 (IsA fruitcake cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruiterer is a kind of seller", "pln": ["(: cnet_isa_973eb3164b (IsA fruiterer seller) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruitfulness is a kind of quality", "pln": ["(: cnet_isa_4f7f5487b8 (IsA fruitfulness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruiting body is a kind of plant organ", "pln": ["(: cnet_isa_d27b9488cd (IsA fruiting_body plant_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruition is a kind of use", "pln": ["(: cnet_isa_560e3d65e1 (IsA fruition use) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruition is a kind of condition", "pln": ["(: cnet_isa_fa9023926c (IsA fruition condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruitlessness is a kind of quality", "pln": ["(: cnet_isa_e79aa52784 (IsA fruitlessness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruitlessness is a kind of uncreativeness", "pln": ["(: cnet_isa_3dfdc05a8c (IsA fruitlessness uncreativeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fruitlet is a kind of fruit", "pln": ["(: cnet_isa_c4d95b9074 (IsA fruitlet fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fruitwood is a kind of wood", "pln": ["(: cnet_isa_26a4c4fc2b (IsA fruitwood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frumenty is a kind of hot cereal", "pln": ["(: cnet_isa_cdda9fbd8d (IsA frumenty hot_cereal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frump is a kind of unpleasant woman", "pln": ["(: cnet_isa_f07937592c (IsA frump unpleasant_woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frustration is a kind of emotion", "pln": ["(: cnet_isa_15bf36d608 (IsA frustration emotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frustration is a kind of hindrance", "pln": ["(: cnet_isa_52c50451a3 (IsA frustration hindrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frustration is a kind of annoyance", "pln": ["(: cnet_isa_b2f415716e (IsA frustration annoyance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frustration is a kind of disappointment", "pln": ["(: cnet_isa_8479897478 (IsA frustration disappointment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frustum is a kind of solid", "pln": ["(: cnet_isa_377e1d4330 (IsA frustum solid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fry cook is a kind of cook", "pln": ["(: cnet_isa_30eb624f5f (IsA fry_cook cook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fryer is a kind of chicken", "pln": ["(: cnet_isa_56e20132c7 (IsA fryer chicken) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frying is a kind of cooking", "pln": ["(: cnet_isa_63696c99c9 (IsA frying cooking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "frying pan is a kind of pan", "pln": ["(: cnet_isa_7ccde5dc17 (IsA frying_pan pan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fucaceae is a kind of protoctist family", "pln": ["(: cnet_isa_f2d2dc2824 (IsA fucaceae protoctist_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fucale is a kind of animal order", "pln": ["(: cnet_isa_1ca7829f39 (IsA fucale animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fuchsia is a kind of purplish red", "pln": ["(: cnet_isa_f65019dd65 (IsA fuchsia purplish_red) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fuchsia is a kind of shrub", "pln": ["(: cnet_isa_a237a7dbd7 (IsA fuchsia shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fuck is a kind of sexual intercourse", "pln": ["(: cnet_isa_9b046a6146 (IsA fuck sexual_intercourse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fucker is a kind of fool", "pln": ["(: cnet_isa_d9048c3351 (IsA fucker fool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fucoid is a kind of brown algae", "pln": ["(: cnet_isa_23bfa48665 (IsA fucoid brown_algae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fucoid is a kind of fossil", "pln": ["(: cnet_isa_57449758c6 (IsA fucoid fossil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fucus is a kind of rockweed", "pln": ["(: cnet_isa_9b4b4a4f1f (IsA fucus rockweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fuddy duddy is a kind of bore", "pln": ["(: cnet_isa_aa3706b052 (IsA fuddy_duddy bore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fuddy duddy is a kind of conservative", "pln": ["(: cnet_isa_812792c125 (IsA fuddy_duddy conservative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fudge is a kind of candy", "pln": ["(: cnet_isa_507c740b24 (IsA fudge candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fuel is a kind of substance", "pln": ["(: cnet_isa_6d1fe5294b (IsA fuel substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fuel air explosive is a kind of explosive device", "pln": ["(: cnet_isa_bc9538bfb2 (IsA fuel_air_explosive explosive_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fuel cell is a kind of cell", "pln": ["(: cnet_isa_a9dd2dd790 (IsA fuel_cell cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fuel filter is a kind of filter", "pln": ["(: cnet_isa_21bf88c6a9 (IsA fuel_filter filter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fuel gauge is a kind of indicator", "pln": ["(: cnet_isa_ba1445668c (IsA fuel_gauge indicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fuel injection is a kind of mechanical system", "pln": ["(: cnet_isa_15bae86bf0 (IsA fuel_injection mechanical_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fuel level is a kind of reserve", "pln": ["(: cnet_isa_763ad1d1aa (IsA fuel_level reserve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fuel line is a kind of pipe", "pln": ["(: cnet_isa_0289f848b8 (IsA fuel_line pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fuel oil is a kind of fuel", "pln": ["(: cnet_isa_4116c257d9 (IsA fuel_oil fuel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fuel oil is a kind of oil", "pln": ["(: cnet_isa_c4d46eeef2 (IsA fuel_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fuel system is a kind of equipment", "pln": ["(: cnet_isa_edb1b043a9 (IsA fuel_system equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fueling is a kind of provision", "pln": ["(: cnet_isa_bd1158140d (IsA fueling provision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fug is a kind of fog", "pln": ["(: cnet_isa_f84f452647 (IsA fug fog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fugacity is a kind of physical property", "pln": ["(: cnet_isa_f7d5d37666 (IsA fugacity physical_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fugacity is a kind of transience", "pln": ["(: cnet_isa_d617fa38ea (IsA fugacity transience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fugitive is a kind of criminal", "pln": ["(: cnet_isa_aaec3f21c5 (IsA fugitive criminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fugitive is a kind of person", "pln": ["(: cnet_isa_eab6eaebd6 (IsA fugitive person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fugleman is a kind of leader", "pln": ["(: cnet_isa_2e0db07b0b (IsA fugleman leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fugu is a kind of blowfish", "pln": ["(: cnet_isa_0d7da5a1f9 (IsA fugu blowfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fugue is a kind of classical music", "pln": ["(: cnet_isa_7080513cd7 (IsA fugue classical_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fugue is a kind of dissociative disorder", "pln": ["(: cnet_isa_e10cf88430 (IsA fugue dissociative_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fugue is a kind of psychological state", "pln": ["(: cnet_isa_9ef98e71db (IsA fugue psychological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fuji is a kind of flowering cherry", "pln": ["(: cnet_isa_f8ebfccced (IsA fuji flowering_cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fula is a kind of west african", "pln": ["(: cnet_isa_e8640fb12e (IsA fula west_african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fulcrum is a kind of pivot", "pln": ["(: cnet_isa_fe16403fa8 (IsA fulcrum pivot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fulfillment is a kind of consummation", "pln": ["(: cnet_isa_8a83ba4cba (IsA fulfillment consummation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fulfillment is a kind of satisfaction", "pln": ["(: cnet_isa_900e0a8afe (IsA fulfillment satisfaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fulgoridae is a kind of arthropod family", "pln": ["(: cnet_isa_2bd0731f7c (IsA fulgoridae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fulica is a kind of bird genus", "pln": ["(: cnet_isa_6dc77dc330 (IsA fulica bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "full blood is a kind of origin", "pln": ["(: cnet_isa_44f58690ae (IsA full_blood origin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "full dress uniform is a kind of military uniform", "pln": ["(: cnet_isa_49a020db47 (IsA full_dress_uniform military_uniform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "full employment is a kind of economic condition", "pln": ["(: cnet_isa_f640fafc5b (IsA full_employment economic_condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "full faith and credit is a kind of guarantee", "pln": ["(: cnet_isa_3cefa610e6 (IsA full_faith_and_credit guarantee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "full house is a kind of poker hand", "pln": ["(: cnet_isa_f9574f590f (IsA full_house poker_hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "full metal jacket is a kind of bullet", "pln": ["(: cnet_isa_b1cb295409 (IsA full_metal_jacket bullet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "full moon is a kind of phase of moon", "pln": ["(: cnet_isa_9c44fd9953 (IsA full_moon phase_of_moon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "full nelson is a kind of nelson", "pln": ["(: cnet_isa_7443c0a9a1 (IsA full_nelson nelson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "full page is a kind of page", "pln": ["(: cnet_isa_c2c0dca1d0 (IsA full_page page) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "full professor is a kind of professor", "pln": ["(: cnet_isa_e7d123ecd1 (IsA full_professor professor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "full skirt is a kind of skirt", "pln": ["(: cnet_isa_4fcade7c8f (IsA full_skirt skirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "full wave rectifier is a kind of rectifier", "pln": ["(: cnet_isa_6f747cc53d (IsA full_wave_rectifier rectifier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fullback is a kind of back", "pln": ["(: cnet_isa_689c5115f8 (IsA fullback back) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fullback is a kind of running back", "pln": ["(: cnet_isa_9a45854cb2 (IsA fullback running_back) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fuller s earth is a kind of soil", "pln": ["(: cnet_isa_2e2360c82f (IsA fuller_s_earth soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fuller s teasel is a kind of teasel", "pln": ["(: cnet_isa_7bad0b71bf (IsA fuller_s_teasel teasel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fuller is a kind of workman", "pln": ["(: cnet_isa_86676d754f (IsA fuller workman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fullerene is a kind of carbon", "pln": ["(: cnet_isa_da39dd3fac (IsA fullerene carbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fullness is a kind of largeness", "pln": ["(: cnet_isa_171be380f9 (IsA fullness largeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fullness is a kind of property", "pln": ["(: cnet_isa_94eb89a6d0 (IsA fullness property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fullness is a kind of condition", "pln": ["(: cnet_isa_500b85beb6 (IsA fullness condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fulmar is a kind of petrel", "pln": ["(: cnet_isa_676a07cb3c (IsA fulmar petrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fulmarus is a kind of bird genus", "pln": ["(: cnet_isa_ba0a404079 (IsA fulmarus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fulminate is a kind of salt", "pln": ["(: cnet_isa_84f554a421 (IsA fulminate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fulmination is a kind of explosion", "pln": ["(: cnet_isa_ee9fcf65eb (IsA fulmination explosion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fulmination is a kind of denunciation", "pln": ["(: cnet_isa_fcfeb805b1 (IsA fulmination denunciation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fulminic acid is a kind of acid", "pln": ["(: cnet_isa_99a6d3a0c5 (IsA fulminic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fulsomeness is a kind of hypocrisy", "pln": ["(: cnet_isa_abab7788f2 (IsA fulsomeness hypocrisy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fulvic acid is a kind of humic substance", "pln": ["(: cnet_isa_89e462044d (IsA fulvic_acid humic_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fumaria is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_7f4476dcd0 (IsA fumaria dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fumariaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_0dd3d94702 (IsA fumariaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fumaric acid is a kind of acid", "pln": ["(: cnet_isa_8135f18eb2 (IsA fumaric_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fumble is a kind of blunder", "pln": ["(: cnet_isa_9b2e89945f (IsA fumble blunder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fumed oak is a kind of oak", "pln": ["(: cnet_isa_6b1337a1c4 (IsA fumed_oak oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fumewort is a kind of corydalis", "pln": ["(: cnet_isa_5be78663a8 (IsA fumewort corydalis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fumigant is a kind of chemical", "pln": ["(: cnet_isa_1e3e11f4ec (IsA fumigant chemical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fumigation is a kind of application", "pln": ["(: cnet_isa_41208f6804 (IsA fumigation application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fumigator is a kind of device", "pln": ["(: cnet_isa_f8a139c38d (IsA fumigator device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fumigator is a kind of skilled worker", "pln": ["(: cnet_isa_80036ac380 (IsA fumigator skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fumitory is a kind of herb", "pln": ["(: cnet_isa_5d169e43c9 (IsA fumitory herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fun is a kind of activity", "pln": ["(: cnet_isa_941cf5316b (IsA fun activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fun is a kind of diversion", "pln": ["(: cnet_isa_7c4452d764 (IsA fun diversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fun is a kind of wit", "pln": ["(: cnet_isa_6cbcfa358e (IsA fun wit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "funambulist is a kind of acrobat", "pln": ["(: cnet_isa_3c38e28f2b (IsA funambulist acrobat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "function is a kind of duty", "pln": ["(: cnet_isa_320270e5b8 (IsA function duty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "function is a kind of utility", "pln": ["(: cnet_isa_fa0adcb4d4 (IsA function utility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "function is a kind of social gathering", "pln": ["(: cnet_isa_4fc17e662f (IsA function social_gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "function is a kind of relation", "pln": ["(: cnet_isa_22001b6ad2 (IsA function relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "function call is a kind of call", "pln": ["(: cnet_isa_1ad15cf15a (IsA function_call call) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "function word is a kind of word", "pln": ["(: cnet_isa_6b1cb0c41d (IsA function_word word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "functional anatomy is a kind of anatomy", "pln": ["(: cnet_isa_11b2b77eb5 (IsA functional_anatomy anatomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "functional disorder is a kind of disorder", "pln": ["(: cnet_isa_3aa5bbafe8 (IsA functional_disorder disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "functional genomic is a kind of genomic", "pln": ["(: cnet_isa_a5dc77cce7 (IsA functional_genomic genomic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "functional illiterate is a kind of illiterate", "pln": ["(: cnet_isa_0b90b84a9b (IsA functional_illiterate illiterate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "functional magnetic resonance imaging is a kind of magnetic resonance imaging", "pln": ["(: cnet_isa_7e47f7123b (IsA functional_magnetic_resonance_imaging magnetic_resonance_imaging) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "functionalism is a kind of doctrine", "pln": ["(: cnet_isa_49029710a8 (IsA functionalism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "functionalism is a kind of scientific theory", "pln": ["(: cnet_isa_052cd45331 (IsA functionalism scientific_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "functionalist is a kind of supporter", "pln": ["(: cnet_isa_511f61e8c2 (IsA functionalist supporter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "functionality is a kind of practicality", "pln": ["(: cnet_isa_01cdaf527b (IsA functionality practicality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fund is a kind of money", "pln": ["(: cnet_isa_98cfd6c52d (IsA fund money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fund raising campaign is a kind of campaign", "pln": ["(: cnet_isa_81cf609663 (IsA fund_raising_campaign campaign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fundamental is a kind of harmonic", "pln": ["(: cnet_isa_83ae18c193 (IsA fundamental harmonic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fundamental is a kind of factor", "pln": ["(: cnet_isa_048e56fb8c (IsA fundamental factor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fundamental law is a kind of law", "pln": ["(: cnet_isa_2f5cadd097 (IsA fundamental_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fundamental quantity is a kind of measure", "pln": ["(: cnet_isa_0528954875 (IsA fundamental_quantity measure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fundamentalism is a kind of political orientation", "pln": ["(: cnet_isa_260032ef7a (IsA fundamentalism political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fundamentalism is a kind of protestantism", "pln": ["(: cnet_isa_abcf01c556 (IsA fundamentalism protestantism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fundamentalist is a kind of disciple", "pln": ["(: cnet_isa_fec3953f80 (IsA fundamentalist disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fundamentalist is a kind of protestant", "pln": ["(: cnet_isa_0105cac64b (IsA fundamentalist protestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "fundamentals analysis is a kind of analysis", "pln": ["(: cnet_isa_6a25862fe2 (IsA fundamentals_analysis analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fundamental is a kind of principle", "pln": ["(: cnet_isa_4b2a018225 (IsA fundamental principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fundamental analysis is a kind of analysis", "pln": ["(: cnet_isa_6566cf2f4a (IsA fundamental_analysis analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fundraiser is a kind of affair", "pln": ["(: cnet_isa_79d3248dc4 (IsA fundraiser affair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fundraiser is a kind of solicitor", "pln": ["(: cnet_isa_2e035f55c5 (IsA fundraiser solicitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fund is a kind of asset", "pln": ["(: cnet_isa_c71616afa8 (IsA fund asset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fundulus is a kind of fish genus", "pln": ["(: cnet_isa_071a6e4768 (IsA fundulus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fundus is a kind of structure", "pln": ["(: cnet_isa_c810c03953 (IsA fundus structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "funeral is a kind of ceremony", "pln": ["(: cnet_isa_2e3e11e20e (IsA funeral ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "funeral home is a kind of morgue", "pln": ["(: cnet_isa_38883fbb7f (IsA funeral_home morgue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "funeral march is a kind of processional march", "pln": ["(: cnet_isa_735d23552f (IsA funeral_march processional_march) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fungal infection is a kind of zymosis", "pln": ["(: cnet_isa_5f2b257251 (IsA fungal_infection zymosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fungi is a kind of not plant", "pln": ["(: cnet_isa_409d2a0a8a (IsA fungi not_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fungi is a kind of kingdom", "pln": ["(: cnet_isa_433ebe37e4 (IsA fungi kingdom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fungia is a kind of coelenterate genus", "pln": ["(: cnet_isa_76a4e46ccb (IsA fungia coelenterate_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fungible is a kind of commodity", "pln": ["(: cnet_isa_13d478b7af (IsA fungible commodity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fungus is a kind of organism", "pln": ["(: cnet_isa_1351da9435 (IsA fungus organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fungus family is a kind of family", "pln": ["(: cnet_isa_663a7886cd (IsA fungus_family family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fungus genus is a kind of genus", "pln": ["(: cnet_isa_bababa202f (IsA fungus_genus genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fungus gnat is a kind of dipterous insect", "pln": ["(: cnet_isa_d5e0f0e48d (IsA fungus_gnat dipterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fungus order is a kind of order", "pln": ["(: cnet_isa_e2bff248e8 (IsA fungus_order order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "funicle is a kind of stalk", "pln": ["(: cnet_isa_a5bb6a91ad (IsA funicle stalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "funiculitis is a kind of inflammation", "pln": ["(: cnet_isa_893714f50e (IsA funiculitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "funiculus is a kind of structure", "pln": ["(: cnet_isa_2dec2186d5 (IsA funiculus structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "funk is a kind of jazz", "pln": ["(: cnet_isa_d7cf5d85ac (IsA funk jazz) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "funk is a kind of depression", "pln": ["(: cnet_isa_533d68c2e1 (IsA funk depression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "funk hole is a kind of bunker", "pln": ["(: cnet_isa_7bced54e3d (IsA funk_hole bunker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "funnel is a kind of utensil", "pln": ["(: cnet_isa_204e5f1f15 (IsA funnel utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "funnel is a kind of cone", "pln": ["(: cnet_isa_0792f488af (IsA funnel cone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "funnel is a kind of smokestack", "pln": ["(: cnet_isa_550bc46a8c (IsA funnel smokestack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "funnel web is a kind of spider web", "pln": ["(: cnet_isa_bfe27e93fc (IsA funnel_web spider_web) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "funny bone is a kind of ulnar nerve", "pln": ["(: cnet_isa_bd44e89186 (IsA funny_bone ulnar_nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "funny story is a kind of joke", "pln": ["(: cnet_isa_2c16a244ef (IsA funny_story joke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "funny wagon is a kind of ambulance", "pln": ["(: cnet_isa_4608d95467 (IsA funny_wagon ambulance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "funrun is a kind of footrace", "pln": ["(: cnet_isa_d88c0086a5 (IsA funrun footrace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fur is a kind of coat", "pln": ["(: cnet_isa_dd5ff5e2e0 (IsA fur coat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fur is a kind of garment", "pln": ["(: cnet_isa_2c568eb9a1 (IsA fur garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fur is a kind of animal skin", "pln": ["(: cnet_isa_59aef19f03 (IsA fur animal_skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fur coat is a kind of coat", "pln": ["(: cnet_isa_05a93f7acb (IsA fur_coat coat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fur hat is a kind of hat", "pln": ["(: cnet_isa_5f01f86856 (IsA fur_hat hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fur piece is a kind of neckpiece", "pln": ["(: cnet_isa_c2f7396a69 (IsA fur_piece neckpiece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fur seal is a kind of eared seal", "pln": ["(: cnet_isa_5bf22cb50e (IsA fur_seal eared_seal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "furan is a kind of organic compound", "pln": ["(: cnet_isa_b6174ddde4 (IsA furan organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "furcation is a kind of angular shape", "pln": ["(: cnet_isa_439f60cdb2 (IsA furcation angular_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "furcula is a kind of bone", "pln": ["(: cnet_isa_99162699ba (IsA furcula bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "furfural is a kind of aldehyde", "pln": ["(: cnet_isa_c8613a1dc1 (IsA furfural aldehyde) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "furfural is a kind of plant product", "pln": ["(: cnet_isa_28d917c1d7 (IsA furfural plant_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "furlong is a kind of linear unit", "pln": ["(: cnet_isa_686ed644ff (IsA furlong linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "furlough is a kind of leave", "pln": ["(: cnet_isa_719427ef55 (IsA furlough leave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "furnace is a kind of chamber", "pln": ["(: cnet_isa_fc84593cad (IsA furnace chamber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "furnace lining is a kind of lining", "pln": ["(: cnet_isa_0092c65319 (IsA furnace_lining lining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "furnace room is a kind of room", "pln": ["(: cnet_isa_fb2f903f26 (IsA furnace_room room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "furnariidae is a kind of bird family", "pln": ["(: cnet_isa_a170c21b91 (IsA furnariidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "furnarius is a kind of bird genus", "pln": ["(: cnet_isa_3fd964577f (IsA furnarius bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "furnishing is a kind of interior decoration", "pln": ["(: cnet_isa_cc5e960ca4 (IsA furnishing interior_decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "furnishing is a kind of accessory", "pln": ["(: cnet_isa_3604a979e2 (IsA furnishing accessory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "furnishing is a kind of instrumentality", "pln": ["(: cnet_isa_8adbb78299 (IsA furnishing instrumentality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "furniture is a kind of furnishing", "pln": ["(: cnet_isa_6b725a03ea (IsA furniture furnishing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "furniture company is a kind of company", "pln": ["(: cnet_isa_5924425b59 (IsA furniture_company company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "furniture secretary is a kind of desk", "pln": ["(: cnet_isa_5aac15b150 (IsA furniture_secretary desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "furor is a kind of disturbance", "pln": ["(: cnet_isa_d22a134899 (IsA furor disturbance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "furring is a kind of symptom", "pln": ["(: cnet_isa_f8c2289bf3 (IsA furring symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "furring strip is a kind of strip", "pln": ["(: cnet_isa_1c6e4daf51 (IsA furring_strip strip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "furrow is a kind of trench", "pln": ["(: cnet_isa_d14d673451 (IsA furrow trench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "furtiveness is a kind of closeness", "pln": ["(: cnet_isa_bfd556e275 (IsA furtiveness closeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "furunculosis is a kind of skin disease", "pln": ["(: cnet_isa_f0263c7983 (IsA furunculosis skin_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fury is a kind of anger", "pln": ["(: cnet_isa_10d14a5d6b (IsA fury anger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fusarium wilt is a kind of wilt", "pln": ["(: cnet_isa_458f88d3c6 (IsA fusarium_wilt wilt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fuschia is a kind of purplish red", "pln": ["(: cnet_isa_5b02dee297 (IsA fuschia purplish_red) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fuscoboletinus is a kind of fungus genus", "pln": ["(: cnet_isa_7fcbdc7468 (IsA fuscoboletinus fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fuscoboletinus paluster is a kind of bolete", "pln": ["(: cnet_isa_066824104f (IsA fuscoboletinus_paluster bolete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fuscoboletinus serotinus is a kind of bolete", "pln": ["(: cnet_isa_5b9d9a390b (IsA fuscoboletinus_serotinus bolete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fuse is a kind of electrical device", "pln": ["(: cnet_isa_a0b3c4417a (IsA fuse electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fuse is a kind of lighter", "pln": ["(: cnet_isa_05298e39c3 (IsA fuse lighter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fusee is a kind of flare", "pln": ["(: cnet_isa_1a8ee7936a (IsA fusee flare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fusee is a kind of match", "pln": ["(: cnet_isa_82ac0b5a91 (IsA fusee match) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fusee drive is a kind of drive", "pln": ["(: cnet_isa_4462965e2a (IsA fusee_drive drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fusel oil is a kind of oil", "pln": ["(: cnet_isa_1e8d4345f5 (IsA fusel_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fuselage is a kind of body", "pln": ["(: cnet_isa_b9bd8fae27 (IsA fuselage body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fusible metal is a kind of alloy", "pln": ["(: cnet_isa_433a582e38 (IsA fusible_metal alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fusil is a kind of musket", "pln": ["(: cnet_isa_6660bc09d1 (IsA fusil musket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fusilier is a kind of infantryman", "pln": ["(: cnet_isa_daf5aa67d1 (IsA fusilier infantryman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fusillade is a kind of fire", "pln": ["(: cnet_isa_c6241e315f (IsA fusillade fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fusion is a kind of combination", "pln": ["(: cnet_isa_17622adafd (IsA fusion combination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fusion is a kind of correction", "pln": ["(: cnet_isa_8167246bc8 (IsA fusion correction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fusion is a kind of visual perception", "pln": ["(: cnet_isa_454850b5d6 (IsA fusion visual_perception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fusion is a kind of union", "pln": ["(: cnet_isa_8b208fb6cc (IsA fusion union) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fusion is a kind of linguistic process", "pln": ["(: cnet_isa_b8d754aae2 (IsA fusion linguistic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fusion is a kind of nuclear reaction", "pln": ["(: cnet_isa_ffdb6bc33d (IsA fusion nuclear_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fusion cooking is a kind of cooking", "pln": ["(: cnet_isa_34eb93a883 (IsA fusion_cooking cooking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fuss is a kind of perturbation", "pln": ["(: cnet_isa_4842279ac2 (IsA fuss perturbation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fussiness is a kind of ornateness", "pln": ["(: cnet_isa_dc3bbbe6c7 (IsA fussiness ornateness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fustian is a kind of fabric", "pln": ["(: cnet_isa_e87fd5930d (IsA fustian fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "futility is a kind of inutility", "pln": ["(: cnet_isa_255f21b44f (IsA futility inutility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "futon is a kind of mattress", "pln": ["(: cnet_isa_2018b89004 (IsA futon mattress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "futtock shroud is a kind of sheet", "pln": ["(: cnet_isa_767c067650 (IsA futtock_shroud sheet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "future is a kind of commodity", "pln": ["(: cnet_isa_dc4eb672f0 (IsA future commodity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "future is a kind of tense", "pln": ["(: cnet_isa_5eb432b4e4 (IsA future tense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "future is a kind of time", "pln": ["(: cnet_isa_c4ffc72594 (IsA future time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "future date is a kind of date", "pln": ["(: cnet_isa_89a25ec03a (IsA future_date date) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "future perfect is a kind of perfective", "pln": ["(: cnet_isa_a562974554 (IsA future_perfect perfective) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "futures contract is a kind of derivative instrument", "pln": ["(: cnet_isa_afd4b69742 (IsA futures_contract derivative_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "future progressive is a kind of progressive", "pln": ["(: cnet_isa_5e39fcd4f0 (IsA future_progressive progressive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "future contract is a kind of derivative instrument", "pln": ["(: cnet_isa_e0045226f4 (IsA future_contract derivative_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "future exchange is a kind of commodity exchange", "pln": ["(: cnet_isa_2356a565fa (IsA future_exchange commodity_exchange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "futurism is a kind of position", "pln": ["(: cnet_isa_de50ae9405 (IsA futurism position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "futurism is a kind of artistic movement", "pln": ["(: cnet_isa_67542ce60c (IsA futurism artistic_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "futurist is a kind of theologian", "pln": ["(: cnet_isa_6b0514880f (IsA futurist theologian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "futurity is a kind of timing", "pln": ["(: cnet_isa_d0dc5fa8fb (IsA futurity timing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "futurology is a kind of discipline", "pln": ["(: cnet_isa_b5c04b2bb2 (IsA futurology discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "fuzz is a kind of beard", "pln": ["(: cnet_isa_089a97a603 (IsA fuzz beard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fuzzy logic is a kind of artificial intelligence", "pln": ["(: cnet_isa_11de2afc6e (IsA fuzzy_logic artificial_intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "fuzzy logic is a kind of symbolic logic", "pln": ["(: cnet_isa_d83fbc9a98 (IsA fuzzy_logic symbolic_logic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "g is a kind of letter", "pln": ["(: cnet_isa_6bd8b3c9ce (IsA g letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "g is a kind of force unit", "pln": ["(: cnet_isa_74c3a51838 (IsA g force_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "g string is a kind of woman s clothing", "pln": ["(: cnet_isa_d7cf759ee2 (IsA g_string woman_s_clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gabardine is a kind of fabric", "pln": ["(: cnet_isa_8e0abca8a0 (IsA gabardine fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gabbro is a kind of igneous rock", "pln": ["(: cnet_isa_9a2397bc74 (IsA gabbro igneous_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gable is a kind of wall", "pln": ["(: cnet_isa_2c37bcfada (IsA gable wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gable roof is a kind of roof", "pln": ["(: cnet_isa_8a28dc83a8 (IsA gable_roof roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gabon franc is a kind of franc", "pln": ["(: cnet_isa_1fe8bdcafa (IsA gabon_franc franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gabonese is a kind of african", "pln": ["(: cnet_isa_6a9405616d (IsA gabonese african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gaboon viper is a kind of viper", "pln": ["(: cnet_isa_762a93922d (IsA gaboon_viper viper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gabriel is a kind of archangel", "pln": ["(: cnet_isa_921e9a3996 (IsA gabriel archangel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gadaba is a kind of central dravidian", "pln": ["(: cnet_isa_0115560fd1 (IsA gadaba central_dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gadaba is a kind of dravidian", "pln": ["(: cnet_isa_5f2beaf77d (IsA gadaba dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gadabout is a kind of seeker", "pln": ["(: cnet_isa_3e4608461c (IsA gadabout seeker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gaddi is a kind of cushion", "pln": ["(: cnet_isa_e22eeb2e60 (IsA gaddi cushion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gadfly is a kind of fly", "pln": ["(: cnet_isa_3930392d68 (IsA gadfly fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gadgeteer is a kind of enthusiast", "pln": ["(: cnet_isa_6bde7c00a0 (IsA gadgeteer enthusiast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gadgetry is a kind of appliance", "pln": ["(: cnet_isa_968cc022e7 (IsA gadgetry appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gadidae is a kind of fish family", "pln": ["(: cnet_isa_8f9cba60aa (IsA gadidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gadiforme is a kind of animal order", "pln": ["(: cnet_isa_7b7e79aa1a (IsA gadiforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gadoid is a kind of soft finned fish", "pln": ["(: cnet_isa_75154d5559 (IsA gadoid soft_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gadolinite is a kind of mineral", "pln": ["(: cnet_isa_e6c3189438 (IsA gadolinite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gadolinium is a kind of metallic element", "pln": ["(: cnet_isa_cd44d8c00f (IsA gadolinium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gadus is a kind of fish genus", "pln": ["(: cnet_isa_d8240e98cd (IsA gadus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gael is a kind of kelt", "pln": ["(: cnet_isa_3e9fb3a76d (IsA gael kelt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gaelic is a kind of celtic", "pln": ["(: cnet_isa_ad7eae5f24 (IsA gaelic celtic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gaff is a kind of hook", "pln": ["(: cnet_isa_87741f72a4 (IsA gaff hook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gaff is a kind of spar", "pln": ["(: cnet_isa_16db85dfc1 (IsA gaff spar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gaff is a kind of spike", "pln": ["(: cnet_isa_784614c6a9 (IsA gaff spike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gaff topsail is a kind of fore and aft sail", "pln": ["(: cnet_isa_2e1f1f199a (IsA gaff_topsail fore_and_aft_sail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gaffer is a kind of electrician", "pln": ["(: cnet_isa_359d52804d (IsA gaffer electrician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gaffsail is a kind of fore and aft sail", "pln": ["(: cnet_isa_1fa147fd09 (IsA gaffsail fore_and_aft_sail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gag is a kind of restraint", "pln": ["(: cnet_isa_b040352904 (IsA gag restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gag law is a kind of law", "pln": ["(: cnet_isa_8af4b13b85 (IsA gag_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gag order is a kind of court order", "pln": ["(: cnet_isa_f62d7d8ab1 (IsA gag_order court_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gaggle is a kind of flock", "pln": ["(: cnet_isa_1beb2fe381 (IsA gaggle flock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gagman is a kind of comedian", "pln": ["(: cnet_isa_2005fb0f04 (IsA gagman comedian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gagman is a kind of writer", "pln": ["(: cnet_isa_aec64bdfca (IsA gagman writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gaiety is a kind of happiness", "pln": ["(: cnet_isa_b8282749d2 (IsA gaiety happiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gaiety is a kind of levity", "pln": ["(: cnet_isa_c13ae02096 (IsA gaiety levity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gaillardia is a kind of wildflower", "pln": ["(: cnet_isa_245fbb9765 (IsA gaillardia wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gain is a kind of sum", "pln": ["(: cnet_isa_01a724a418 (IsA gain sum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gainer is a kind of dive", "pln": ["(: cnet_isa_99f8cd6a76 (IsA gainer dive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gainer is a kind of person", "pln": ["(: cnet_isa_f873dab62e (IsA gainer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gait is a kind of locomotion", "pln": ["(: cnet_isa_a06dddc0d3 (IsA gait locomotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gait is a kind of walk", "pln": ["(: cnet_isa_aa661673a4 (IsA gait walk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gaiter is a kind of legging", "pln": ["(: cnet_isa_1c5498f090 (IsA gaiter legging) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gaiter is a kind of shoe", "pln": ["(: cnet_isa_bb872ccb4a (IsA gaiter shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gal is a kind of girl", "pln": ["(: cnet_isa_b7d0c04e24 (IsA gal girl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gal is a kind of acceleration unit", "pln": ["(: cnet_isa_83d2379781 (IsA gal acceleration_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gala is a kind of celebration", "pln": ["(: cnet_isa_e65c29e1a5 (IsA gala celebration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galactagogue is a kind of agent", "pln": ["(: cnet_isa_951c6be34e (IsA galactagogue agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galactocele is a kind of cyst", "pln": ["(: cnet_isa_ba8e6c95e1 (IsA galactocele cyst) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galactose is a kind of sucrose", "pln": ["(: cnet_isa_87a7b239c7 (IsA galactose sucrose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galactosemia is a kind of inborn error of metabolism", "pln": ["(: cnet_isa_ef3bb98cef (IsA galactosemia inborn_error_of_metabolism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "galactosis is a kind of secretion", "pln": ["(: cnet_isa_6b04301371 (IsA galactosis secretion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "galago is a kind of lemur", "pln": ["(: cnet_isa_4d266eff98 (IsA galago lemur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galangal is a kind of ginger", "pln": ["(: cnet_isa_b68005131b (IsA galangal ginger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "galantine is a kind of dish", "pln": ["(: cnet_isa_f27ae69664 (IsA galantine dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galanty show is a kind of show", "pln": ["(: cnet_isa_2e7989c525 (IsA galanty_show show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galatian is a kind of gaul", "pln": ["(: cnet_isa_e1550caede (IsA galatian gaul) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galax is a kind of herb", "pln": ["(: cnet_isa_22eb6e99c4 (IsA galax herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galaxy is a kind of enormous group of star", "pln": ["(: cnet_isa_4ab0858950 (IsA galaxy enormous_group_of_star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galaxy is a kind of group of star", "pln": ["(: cnet_isa_8156eed436 (IsA galaxy group_of_star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galaxy is a kind of collection", "pln": ["(: cnet_isa_f2dcdea558 (IsA galaxy collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galbanum is a kind of gum", "pln": ["(: cnet_isa_ee2e088b64 (IsA galbanum gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galbulidae is a kind of bird family", "pln": ["(: cnet_isa_b81f4cfe80 (IsA galbulidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galbulus is a kind of cone", "pln": ["(: cnet_isa_99e7810c86 (IsA galbulus cone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gale is a kind of wind", "pln": ["(: cnet_isa_788e3eeb86 (IsA gale wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galea is a kind of plant organ", "pln": ["(: cnet_isa_cae34893d5 (IsA galea plant_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galega is a kind of rosid dicot genus", "pln": ["(: cnet_isa_1ca9ff6b4d (IsA galega rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galena is a kind of mineral", "pln": ["(: cnet_isa_434477cb23 (IsA galena mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galeocerdo is a kind of fish genus", "pln": ["(: cnet_isa_40b1030eea (IsA galeocerdo fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galeopsis is a kind of asterid dicot genus", "pln": ["(: cnet_isa_bf453e03f0 (IsA galeopsis asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galeorhinus is a kind of fish genus", "pln": ["(: cnet_isa_f3b30ecd46 (IsA galeorhinus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "galere is a kind of clique", "pln": ["(: cnet_isa_33ad161791 (IsA galere clique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galician is a kind of romance", "pln": ["(: cnet_isa_6e4152bf33 (IsA galician romance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galiella rufa is a kind of discomycete", "pln": ["(: cnet_isa_f2383326d7 (IsA galiella_rufa discomycete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galilaean is a kind of inhabitant", "pln": ["(: cnet_isa_3867b5b7e1 (IsA galilaean inhabitant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galilean satellite is a kind of satellite", "pln": ["(: cnet_isa_70be8bf5f1 (IsA galilean_satellite satellite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galilean telescope is a kind of refracting telescope", "pln": ["(: cnet_isa_91506d62ca (IsA galilean_telescope refracting_telescope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galingale is a kind of sedge", "pln": ["(: cnet_isa_b4603789c2 (IsA galingale sedge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galium is a kind of asterid dicot genus", "pln": ["(: cnet_isa_c88e7374c7 (IsA galium asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gall is a kind of plant tissue", "pln": ["(: cnet_isa_0a87d855c1 (IsA gall plant_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gall is a kind of sore", "pln": ["(: cnet_isa_d6af394c28 (IsA gall sore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gall midge is a kind of dipterous insect", "pln": ["(: cnet_isa_4c84ef5617 (IsA gall_midge dipterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gall wasp is a kind of wasp", "pln": ["(: cnet_isa_01ce35787e (IsA gall_wasp wasp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gallantry is a kind of courtesy", "pln": ["(: cnet_isa_5065b0dfb3 (IsA gallantry courtesy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gallbladder is a kind of bladder", "pln": ["(: cnet_isa_945b786a21 (IsA gallbladder bladder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galleon is a kind of sailing vessel", "pln": ["(: cnet_isa_036203c2de (IsA galleon sailing_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galleria is a kind of arthropod genus", "pln": ["(: cnet_isa_29bf2d45b5 (IsA galleria arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gallery is a kind of balcony", "pln": ["(: cnet_isa_221375fe65 (IsA gallery balcony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gallery is a kind of corridor", "pln": ["(: cnet_isa_ec9a2ed80e (IsA gallery corridor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gallery is a kind of room", "pln": ["(: cnet_isa_1e8210ddaa (IsA gallery room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gallery is a kind of audience", "pln": ["(: cnet_isa_1037167cab (IsA gallery audience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galley is a kind of vessel", "pln": ["(: cnet_isa_d69787ecf3 (IsA galley vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galley is a kind of kitchen", "pln": ["(: cnet_isa_fa605bef5c (IsA galley kitchen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galley proof is a kind of proof", "pln": ["(: cnet_isa_40ce9c4c9d (IsA galley_proof proof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galley slave is a kind of slave", "pln": ["(: cnet_isa_fb05b88ef9 (IsA galley_slave slave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gallfly is a kind of insect", "pln": ["(: cnet_isa_a114dd5ab5 (IsA gallfly insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galliano is a kind of liqueur", "pln": ["(: cnet_isa_1ec9f3c2b7 (IsA galliano liqueur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gallic acid is a kind of acid", "pln": ["(: cnet_isa_d08ae0a2d2 (IsA gallic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gallicanism is a kind of religious movement", "pln": ["(: cnet_isa_73cf989e1c (IsA gallicanism religious_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gallicism is a kind of loanword", "pln": ["(: cnet_isa_a2ddc17a19 (IsA gallicism loanword) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galliforme is a kind of animal order", "pln": ["(: cnet_isa_4c003a31ca (IsA galliforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gallinaceous bird is a kind of bird", "pln": ["(: cnet_isa_cf1ff75708 (IsA gallinaceous_bird bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gallinago is a kind of bird genus", "pln": ["(: cnet_isa_1f071af140 (IsA gallinago bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gallinula is a kind of bird genus", "pln": ["(: cnet_isa_a20670e196 (IsA gallinula bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gallinule is a kind of aquatic bird", "pln": ["(: cnet_isa_a496089112 (IsA gallinule aquatic_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gallirallus is a kind of bird genus", "pln": ["(: cnet_isa_20ba24a29c (IsA gallirallus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "gallows is a kind of instrument of execution", "pln": ["(: cnet_isa_1150b7ada4 (IsA gallows instrument_of_execution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gallium is a kind of metallic element", "pln": ["(: cnet_isa_5833b9def4 (IsA gallium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gallon is a kind of british capacity unit", "pln": ["(: cnet_isa_e85b1cd288 (IsA gallon british_capacity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gallon is a kind of united state liquid unit", "pln": ["(: cnet_isa_e636eb63cd (IsA gallon united_state_liquid_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gallop is a kind of gait", "pln": ["(: cnet_isa_503e74533a (IsA gallop gait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gallop rhythm is a kind of cardiac arrhythmia", "pln": ["(: cnet_isa_e91f190ba7 (IsA gallop_rhythm cardiac_arrhythmia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galloway is a kind of beef", "pln": ["(: cnet_isa_5615b307c4 (IsA galloway beef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gallow is a kind of instrument of execution", "pln": ["(: cnet_isa_37dcb3e7a9 (IsA gallow instrument_of_execution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gallow bird is a kind of villain", "pln": ["(: cnet_isa_adc39eee50 (IsA gallow_bird villain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gallow tree is a kind of gallow", "pln": ["(: cnet_isa_57a1c920f6 (IsA gallow_tree gallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gallstone is a kind of calculus", "pln": ["(: cnet_isa_7a53aa3860 (IsA gallstone calculus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gallus is a kind of bird genus", "pln": ["(: cnet_isa_fe4ba77712 (IsA gallus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galois theory is a kind of group theory", "pln": ["(: cnet_isa_ade3709972 (IsA galois_theory group_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galoot is a kind of man", "pln": ["(: cnet_isa_3c967f3d60 (IsA galoot man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galvanic skin response is a kind of reaction", "pln": ["(: cnet_isa_a83b202812 (IsA galvanic_skin_response reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galvanism is a kind of therapy", "pln": ["(: cnet_isa_39d3c9e90b (IsA galvanism therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "galvanism is a kind of electricity", "pln": ["(: cnet_isa_8012550677 (IsA galvanism electricity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galvanization is a kind of application", "pln": ["(: cnet_isa_d2a380cb52 (IsA galvanization application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galvanization is a kind of stimulation", "pln": ["(: cnet_isa_ae2ead6290 (IsA galvanization stimulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galvanized iron is a kind of iron", "pln": ["(: cnet_isa_fd8427224f (IsA galvanized_iron iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "galvanizer is a kind of leader", "pln": ["(: cnet_isa_6dd1226e20 (IsA galvanizer leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galvanizer is a kind of skilled worker", "pln": ["(: cnet_isa_fce9ba74e4 (IsA galvanizer skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "galvanometer is a kind of meter", "pln": ["(: cnet_isa_e26f9b5d18 (IsA galvanometer meter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gam is a kind of herd", "pln": ["(: cnet_isa_837f13d50a (IsA gam herd) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gambelia is a kind of reptile genus", "pln": ["(: cnet_isa_39b5f1bec0 (IsA gambelia reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gambian is a kind of african", "pln": ["(: cnet_isa_96127cb86a (IsA gambian african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gambian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_4407781552 (IsA gambian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gambist is a kind of musician", "pln": ["(: cnet_isa_d317d262ed (IsA gambist musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gambit is a kind of chess move", "pln": ["(: cnet_isa_aaaad9a237 (IsA gambit chess_move) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gambit is a kind of remark", "pln": ["(: cnet_isa_6dc2f14df6 (IsA gambit remark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gamble is a kind of risk", "pln": ["(: cnet_isa_b610085b19 (IsA gamble risk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gamble is a kind of speculation", "pln": ["(: cnet_isa_7801f3f32b (IsA gamble speculation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gambler is a kind of adventurer", "pln": ["(: cnet_isa_1e1a4f7e52 (IsA gambler adventurer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gambler is a kind of person", "pln": ["(: cnet_isa_a0a598ff6e (IsA gambler person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gambling is a kind of diversion", "pln": ["(: cnet_isa_ff8c49d6c0 (IsA gambling diversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gambling is a kind of vice", "pln": ["(: cnet_isa_22130440ba (IsA gambling vice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gambling contract is a kind of contract", "pln": ["(: cnet_isa_01701fe3a1 (IsA gambling_contract contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gambling house is a kind of building", "pln": ["(: cnet_isa_7fef0a0d0c (IsA gambling_house building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gambling house is a kind of place of business", "pln": ["(: cnet_isa_e4aebddb34 (IsA gambling_house place_of_business) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gambling system is a kind of system", "pln": ["(: cnet_isa_6481c97805 (IsA gambling_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gamboge is a kind of yellow", "pln": ["(: cnet_isa_91fc7f4008 (IsA gamboge yellow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gamboge is a kind of gum resin", "pln": ["(: cnet_isa_de114d9aa3 (IsA gamboge gum_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gamboge tree is a kind of angiospermous tree", "pln": ["(: cnet_isa_619fc546e4 (IsA gamboge_tree angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gambrel is a kind of gable roof", "pln": ["(: cnet_isa_b7696cbcdd (IsA gambrel gable_roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gambusia is a kind of fish genus", "pln": ["(: cnet_isa_4e3d4b0291 (IsA gambusia fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "game is a kind of activity", "pln": ["(: cnet_isa_823ebed3bf (IsA game activity) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "game is a kind of diversion", "pln": ["(: cnet_isa_658492c107 (IsA game diversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "game is a kind of occupation", "pln": ["(: cnet_isa_da6b2f7132 (IsA game occupation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "game is a kind of play", "pln": ["(: cnet_isa_30b8cfcc1d (IsA game play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "game is a kind of animal", "pln": ["(: cnet_isa_7f8034c593 (IsA game animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "game is a kind of meat", "pln": ["(: cnet_isa_af7e413e10 (IsA game meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "game is a kind of contest", "pln": ["(: cnet_isa_f9655cb148 (IsA game contest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "game is a kind of game equipment", "pln": ["(: cnet_isa_875cef1f3f (IsA game game_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "game is a kind of score", "pln": ["(: cnet_isa_a98cbaf885 (IsA game score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "game is a kind of part", "pln": ["(: cnet_isa_016618882a (IsA game part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "game bird is a kind of gallinaceous bird", "pln": ["(: cnet_isa_e772c848e4 (IsA game_bird gallinaceous_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "game bird is a kind of game", "pln": ["(: cnet_isa_8f2924e0be (IsA game_bird game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "game equipment is a kind of equipment", "pln": ["(: cnet_isa_5c4d362998 (IsA game_equipment equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "game fish is a kind of fish", "pln": ["(: cnet_isa_19e1f6af63 (IsA game_fish fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "game fowl is a kind of domestic fowl", "pln": ["(: cnet_isa_dd15d0fb3f (IsA game_fowl domestic_fowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "game law is a kind of regulation", "pln": ["(: cnet_isa_f4e66eb8f7 (IsA game_law regulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "game misconduct is a kind of penalty", "pln": ["(: cnet_isa_941bfdc752 (IsA game_misconduct penalty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "game of chance is a kind of gambling", "pln": ["(: cnet_isa_7677a30ea2 (IsA game_of_chance gambling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "game of chance is a kind of game", "pln": ["(: cnet_isa_dc6aa6d27f (IsA game_of_chance game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "game plan is a kind of scheme", "pln": ["(: cnet_isa_65ff58ca67 (IsA game_plan scheme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "game show is a kind of broadcast", "pln": ["(: cnet_isa_c4eff2bfd7 (IsA game_show broadcast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "game theory is a kind of scientific theory", "pln": ["(: cnet_isa_66b1022027 (IsA game_theory scientific_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gamebag is a kind of bag", "pln": ["(: cnet_isa_94a1830f5d (IsA gamebag bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gamecock is a kind of cock", "pln": ["(: cnet_isa_f7481649f4 (IsA gamecock cock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gamekeeper is a kind of custodian", "pln": ["(: cnet_isa_6d5741b893 (IsA gamekeeper custodian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gamelan is a kind of ensemble", "pln": ["(: cnet_isa_97e8913aca (IsA gamelan ensemble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "game is a kind of entertainment in themselve", "pln": ["(: cnet_isa_6b27c2658d (IsA game entertainment_in_themselve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "game master is a kind of schoolteacher", "pln": ["(: cnet_isa_f00ff3c596 (IsA game_master schoolteacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gamesmanship is a kind of unfairness", "pln": ["(: cnet_isa_85afde2021 (IsA gamesmanship unfairness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gametangium is a kind of reproductive structure", "pln": ["(: cnet_isa_f80c5f6262 (IsA gametangium reproductive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gamete is a kind of reproductive cell", "pln": ["(: cnet_isa_48f5a6828e (IsA gamete reproductive_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gametocyte is a kind of cell", "pln": ["(: cnet_isa_0f43ad4b6c (IsA gametocyte cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gametoecium is a kind of reproductive structure", "pln": ["(: cnet_isa_fc47df08cf (IsA gametoecium reproductive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gametogenesis is a kind of growth", "pln": ["(: cnet_isa_3144247183 (IsA gametogenesis growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gametophore is a kind of reproductive structure", "pln": ["(: cnet_isa_2ef9fc92aa (IsA gametophore reproductive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gametophyte is a kind of plant", "pln": ["(: cnet_isa_77892e0df2 (IsA gametophyte plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gamine is a kind of girl", "pln": ["(: cnet_isa_b41d69abf3 (IsA gamine girl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gamine is a kind of street urchin", "pln": ["(: cnet_isa_1dcd9f9565 (IsA gamine street_urchin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gaminess is a kind of indelicacy", "pln": ["(: cnet_isa_b01385953a (IsA gaminess indelicacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gaming card is a kind of playing card", "pln": ["(: cnet_isa_bbb5f3dbb3 (IsA gaming_card playing_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gaming table is a kind of table", "pln": ["(: cnet_isa_6ee5befac8 (IsA gaming_table table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gamma is a kind of letter", "pln": ["(: cnet_isa_79ddcfe97a (IsA gamma letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gamma is a kind of field strength unit", "pln": ["(: cnet_isa_e5e2ed3fb4 (IsA gamma field_strength_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gamma acid is a kind of acid", "pln": ["(: cnet_isa_939256aa06 (IsA gamma_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gamma aminobutyric acid is a kind of amino acid", "pln": ["(: cnet_isa_842feb7624 (IsA gamma_aminobutyric_acid amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gamma aminobutyric acid is a kind of neurotransmitter", "pln": ["(: cnet_isa_c1d5c04220 (IsA gamma_aminobutyric_acid neurotransmitter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gamma globulin is a kind of globulin", "pln": ["(: cnet_isa_cf5fd88f84 (IsA gamma_globulin globulin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gamma globulin is a kind of plasma protein", "pln": ["(: cnet_isa_63b78c7f52 (IsA gamma_globulin plasma_protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gamma hydroxybutyrate is a kind of club drug", "pln": ["(: cnet_isa_6c9629b524 (IsA gamma_hydroxybutyrate club_drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gamma interferon is a kind of interferon", "pln": ["(: cnet_isa_c66af47b47 (IsA gamma_interferon interferon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gamma iron is a kind of iron", "pln": ["(: cnet_isa_9337756a3f (IsA gamma_iron iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gamma radiation is a kind of electromagnetic radiation", "pln": ["(: cnet_isa_0f47934ee5 (IsA gamma_radiation electromagnetic_radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gammon is a kind of bacon", "pln": ["(: cnet_isa_66011595b9 (IsA gammon bacon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gammopathy is a kind of pathology", "pln": ["(: cnet_isa_7af2f3fc8d (IsA gammopathy pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gamp is a kind of umbrella", "pln": ["(: cnet_isa_e3dfb9cd98 (IsA gamp umbrella) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gamut is a kind of scope", "pln": ["(: cnet_isa_e33f307630 (IsA gamut scope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gamut is a kind of scale", "pln": ["(: cnet_isa_dd983ccff3 (IsA gamut scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gander is a kind of goose", "pln": ["(: cnet_isa_31dad2c2a6 (IsA gander goose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gandy dancer is a kind of laborer", "pln": ["(: cnet_isa_f7ecfaa9e4 (IsA gandy_dancer laborer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gang is a kind of tool", "pln": ["(: cnet_isa_9d7079ff0f (IsA gang tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gang is a kind of association", "pln": ["(: cnet_isa_c76062d483 (IsA gang association) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gang is a kind of unit", "pln": ["(: cnet_isa_3d69b63b28 (IsA gang unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ganger is a kind of foreman", "pln": ["(: cnet_isa_bf46794cda (IsA ganger foreman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ganglion is a kind of neural structure", "pln": ["(: cnet_isa_988d9cad93 (IsA ganglion neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ganglion cell is a kind of nerve cell", "pln": ["(: cnet_isa_e0ea1acaea (IsA ganglion_cell nerve_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gangplank is a kind of footbridge", "pln": ["(: cnet_isa_1038fac5ec (IsA gangplank footbridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gangrene is a kind of pathology", "pln": ["(: cnet_isa_8211f167c6 (IsA gangrene pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gangsaw is a kind of power saw", "pln": ["(: cnet_isa_4456148fb9 (IsA gangsaw power_saw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gangsta is a kind of peer", "pln": ["(: cnet_isa_4af8c32305 (IsA gangsta peer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gangster is a kind of criminal", "pln": ["(: cnet_isa_5f833ad845 (IsA gangster criminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gangway is a kind of passageway", "pln": ["(: cnet_isa_36f774f34d (IsA gangway passageway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gannet is a kind of pelecaniform seabird", "pln": ["(: cnet_isa_29c8ee2c92 (IsA gannet pelecaniform_seabird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ganoid is a kind of teleost fish", "pln": ["(: cnet_isa_4962e8ca0a (IsA ganoid teleost_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ganoidei is a kind of animal order", "pln": ["(: cnet_isa_1835a59ed7 (IsA ganoidei animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ganoin is a kind of secretion", "pln": ["(: cnet_isa_03fad654cc (IsA ganoin secretion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gantlet is a kind of railroad track", "pln": ["(: cnet_isa_7977ec1258 (IsA gantlet railroad_track) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gantry is a kind of framework", "pln": ["(: cnet_isa_10546d6ab9 (IsA gantry framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gap is a kind of opening", "pln": ["(: cnet_isa_195a23b2c8 (IsA gap opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gap is a kind of disparity", "pln": ["(: cnet_isa_830f593290 (IsA gap disparity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gap is a kind of dispute", "pln": ["(: cnet_isa_b2de293e3a (IsA gap dispute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gape is a kind of stare", "pln": ["(: cnet_isa_72ab26c153 (IsA gape stare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gape is a kind of facial expression", "pln": ["(: cnet_isa_f667105442 (IsA gape facial_expression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gapped scale is a kind of scale", "pln": ["(: cnet_isa_80e82db0fc (IsA gapped_scale scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gar is a kind of ganoid", "pln": ["(: cnet_isa_5b324bf666 (IsA gar ganoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garage is a kind of outbuilding", "pln": ["(: cnet_isa_e30ceb3273 (IsA garage outbuilding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garage is a kind of repair shop", "pln": ["(: cnet_isa_f2a76ca021 (IsA garage repair_shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garage sale is a kind of sale", "pln": ["(: cnet_isa_9e3708dc26 (IsA garage_sale sale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garageman s lien is a kind of mechanic s lien", "pln": ["(: cnet_isa_fd85a62a4b (IsA garageman_s_lien mechanic_s_lien) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garage is a kind of source of many home fire", "pln": ["(: cnet_isa_1ac09102bf (IsA garage source_of_many_home_fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "garambulla is a kind of edible fruit", "pln": ["(: cnet_isa_3d810d448d (IsA garambulla edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "garambulla is a kind of cactus", "pln": ["(: cnet_isa_d069f6b9d2 (IsA garambulla cactus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garand rifle is a kind of rifle", "pln": ["(: cnet_isa_cf012d663f (IsA garand_rifle rifle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garand rifle is a kind of semiautomatic firearm", "pln": ["(: cnet_isa_7fd7a7c59f (IsA garand_rifle semiautomatic_firearm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garbage is a kind of waste material", "pln": ["(: cnet_isa_01b07b16b0 (IsA garbage waste_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garbage is a kind of receptacle", "pln": ["(: cnet_isa_6c841b42e7 (IsA garbage receptacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garbage is a kind of waste", "pln": ["(: cnet_isa_51f3826bf1 (IsA garbage waste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garbage collection is a kind of pickup", "pln": ["(: cnet_isa_569e77e92d (IsA garbage_collection pickup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garbage heap is a kind of dump", "pln": ["(: cnet_isa_dc67188fe1 (IsA garbage_heap dump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garbage man is a kind of hauler", "pln": ["(: cnet_isa_070094729e (IsA garbage_man hauler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garbage truck is a kind of truck", "pln": ["(: cnet_isa_4c6bbfe388 (IsA garbage_truck truck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garbage waste is a kind of bad thing", "pln": ["(: cnet_isa_869e5cf42e (IsA garbage_waste bad_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garboard is a kind of wale", "pln": ["(: cnet_isa_d1d29ebcfb (IsA garboard wale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garbology is a kind of social anthropology", "pln": ["(: cnet_isa_4baa80b9b6 (IsA garbology social_anthropology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garcinia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_2fceed2ded (IsA garcinia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garden is a kind of place with plant", "pln": ["(: cnet_isa_91e13656d6 (IsA garden place_with_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garden is a kind of plot", "pln": ["(: cnet_isa_a0c36d3a9b (IsA garden plot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garden is a kind of yard", "pln": ["(: cnet_isa_cc5ceebc12 (IsA garden yard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garden is a kind of vegetation", "pln": ["(: cnet_isa_b542c990b5 (IsA garden vegetation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garden angelica is a kind of angelica", "pln": ["(: cnet_isa_ce2b306480 (IsA garden_angelica angelica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garden centipede is a kind of arthropod", "pln": ["(: cnet_isa_7581706ad0 (IsA garden_centipede arthropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garden cress is a kind of cress", "pln": ["(: cnet_isa_6b1134b289 (IsA garden_cress cress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garden forget me not is a kind of herb", "pln": ["(: cnet_isa_5e42e6f010 (IsA garden_forget_me_not herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garden hose is a kind of long tube", "pln": ["(: cnet_isa_0c521e5a3e (IsA garden_hose long_tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garden hose is a kind of hose", "pln": ["(: cnet_isa_096298523e (IsA garden_hose hose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garden huckleberry is a kind of black nightshade", "pln": ["(: cnet_isa_984365cf07 (IsA garden_huckleberry black_nightshade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garden lettuce is a kind of lettuce", "pln": ["(: cnet_isa_b4d83f40b9 (IsA garden_lettuce lettuce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garden nasturtium is a kind of nasturtium", "pln": ["(: cnet_isa_741cfc79cc (IsA garden_nasturtium nasturtium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garden orache is a kind of orach", "pln": ["(: cnet_isa_82165ac468 (IsA garden_orache orach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garden party is a kind of party", "pln": ["(: cnet_isa_63517e120f (IsA garden_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garden pea is a kind of pea", "pln": ["(: cnet_isa_d9da2ae2a3 (IsA garden_pea pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garden plant is a kind of plant", "pln": ["(: cnet_isa_159882cd50 (IsA garden_plant plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garden rake is a kind of rake", "pln": ["(: cnet_isa_1a70536ef4 (IsA garden_rake rake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garden roller is a kind of roller", "pln": ["(: cnet_isa_cf9c8e2902 (IsA garden_roller roller) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garden snail is a kind of snail", "pln": ["(: cnet_isa_2f265288ec (IsA garden_snail snail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garden spade is a kind of spade", "pln": ["(: cnet_isa_85e43c8538 (IsA garden_spade spade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garden spider is a kind of spider", "pln": ["(: cnet_isa_e1e4ff645c (IsA garden_spider spider) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garden stater is a kind of american", "pln": ["(: cnet_isa_3f2a9d86a7 (IsA garden_stater american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garden strawberry is a kind of strawberry", "pln": ["(: cnet_isa_5ead9233ad (IsA garden_strawberry strawberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garden tool is a kind of tool", "pln": ["(: cnet_isa_f264a28390 (IsA garden_tool tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garden trowel is a kind of trowel", "pln": ["(: cnet_isa_059778f7b6 (IsA garden_trowel trowel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garden webworm is a kind of webworm", "pln": ["(: cnet_isa_edec096e7d (IsA garden_webworm webworm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gardener is a kind of employee", "pln": ["(: cnet_isa_b4b39d76de (IsA gardener employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gardener is a kind of horticulturist", "pln": ["(: cnet_isa_3ea8d157d3 (IsA gardener horticulturist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gardenia is a kind of shrub", "pln": ["(: cnet_isa_9b018b55fd (IsA gardenia shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gardening is a kind of hobby", "pln": ["(: cnet_isa_f1c3119f78 (IsA gardening hobby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gardening is a kind of necessary activity to grow tomatoe", "pln": ["(: cnet_isa_8f1f16aee3 (IsA gardening necessary_activity_to_grow_tomatoe) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gardening is a kind of farming", "pln": ["(: cnet_isa_7ab1b15610 (IsA gardening farming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garganey is a kind of teal", "pln": ["(: cnet_isa_caffe60886 (IsA garganey teal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gargle is a kind of sound", "pln": ["(: cnet_isa_c73a0d9304 (IsA gargle sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gargle is a kind of solution", "pln": ["(: cnet_isa_213d512621 (IsA gargle solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gargoyle is a kind of decoration", "pln": ["(: cnet_isa_b253d5bdaf (IsA gargoyle decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gargoyle is a kind of spout", "pln": ["(: cnet_isa_5c7afebf93 (IsA gargoyle spout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garibaldi is a kind of blouse", "pln": ["(: cnet_isa_64d60c5808 (IsA garibaldi blouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garishness is a kind of ugliness", "pln": ["(: cnet_isa_579562e417 (IsA garishness ugliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garland flower is a kind of daphne", "pln": ["(: cnet_isa_51eaf1a602 (IsA garland_flower daphne) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garlic is a kind of herb often", "pln": ["(: cnet_isa_7eebd6786e (IsA garlic herb_often) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "garlic is a kind of ingredient", "pln": ["(: cnet_isa_d5fc1abbf9 (IsA garlic ingredient) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garlic is a kind of popular ingredient", "pln": ["(: cnet_isa_cc259c3fc4 (IsA garlic popular_ingredient) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garlic is a kind of flavorer", "pln": ["(: cnet_isa_529f3c1b1a (IsA garlic flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garlic is a kind of alliaceous plant", "pln": ["(: cnet_isa_133da9828f (IsA garlic alliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garlic bread is a kind of bread", "pln": ["(: cnet_isa_e0c368cce4 (IsA garlic_bread bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garlic butter is a kind of spread", "pln": ["(: cnet_isa_4f329d46c9 (IsA garlic_butter spread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garlic chive is a kind of flavorer", "pln": ["(: cnet_isa_ece5b4ad68 (IsA garlic_chive flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "garlic chive is a kind of alliaceous plant", "pln": ["(: cnet_isa_99252f2a84 (IsA garlic_chive alliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garlic mustard is a kind of crucifer", "pln": ["(: cnet_isa_912cecfaa2 (IsA garlic_mustard crucifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garlic press is a kind of press", "pln": ["(: cnet_isa_8cad410e0a (IsA garlic_press press) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "garlic salt is a kind of flavorer", "pln": ["(: cnet_isa_b2e2bfdec1 (IsA garlic_salt flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garment is a kind of clothing", "pln": ["(: cnet_isa_dd9bdf4d8d (IsA garment clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garment bag is a kind of bag", "pln": ["(: cnet_isa_498ef296d8 (IsA garment_bag bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garment cutter is a kind of cutter", "pln": ["(: cnet_isa_b08136c0b4 (IsA garment_cutter cutter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garmentmaker is a kind of needleworker", "pln": ["(: cnet_isa_f6300d423f (IsA garmentmaker needleworker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garnet is a kind of stone", "pln": ["(: cnet_isa_49091228d1 (IsA garnet stone) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garnet is a kind of mineral", "pln": ["(: cnet_isa_4853b71a1a (IsA garnet mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garnet is a kind of transparent gem", "pln": ["(: cnet_isa_b706aef045 (IsA garnet transparent_gem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garnet lac is a kind of lac", "pln": ["(: cnet_isa_a43e07974c (IsA garnet_lac lac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garnierite is a kind of mineral", "pln": ["(: cnet_isa_83387b3c08 (IsA garnierite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "garnish is a kind of decoration", "pln": ["(: cnet_isa_63a6fa24c9 (IsA garnish decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garnishee is a kind of earner", "pln": ["(: cnet_isa_005d8a41a9 (IsA garnishee earner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garnishment is a kind of court order", "pln": ["(: cnet_isa_280d39715c (IsA garnishment court_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garrison is a kind of military personnel", "pln": ["(: cnet_isa_5c7cc919f2 (IsA garrison military_personnel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garrison is a kind of military post", "pln": ["(: cnet_isa_0bc033b6e0 (IsA garrison military_post) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garrison cap is a kind of cap", "pln": ["(: cnet_isa_df947a168f (IsA garrison_cap cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "garrote is a kind of instrument of execution", "pln": ["(: cnet_isa_63e8ffe4e4 (IsA garrote instrument_of_execution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garroter is a kind of killer", "pln": ["(: cnet_isa_6cb4881f91 (IsA garroter killer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garrulinae is a kind of bird family", "pln": ["(: cnet_isa_391f21e605 (IsA garrulinae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garrulity is a kind of communicativeness", "pln": ["(: cnet_isa_e6f4bb10bb (IsA garrulity communicativeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garrulus is a kind of bird genus", "pln": ["(: cnet_isa_b67c72d5cc (IsA garrulus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garter is a kind of band", "pln": ["(: cnet_isa_1ad10b6151 (IsA garter band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garter belt is a kind of undergarment", "pln": ["(: cnet_isa_d2140d4c2d (IsA garter_belt undergarment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garter snake is a kind of colubrid snake", "pln": ["(: cnet_isa_e4d605f8c2 (IsA garter_snake colubrid_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garter stitch is a kind of knitting stitch", "pln": ["(: cnet_isa_448295c52a (IsA garter_stitch knitting_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "garuda is a kind of hindu deity", "pln": ["(: cnet_isa_f7f439ebb5 (IsA garuda hindu_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas is a kind of state of matter", "pln": ["(: cnet_isa_dccf697f86 (IsA gas state_of_matter) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas is a kind of term for gasoline", "pln": ["(: cnet_isa_796a78c7e5 (IsA gas term_for_gasoline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas is a kind of fluid", "pln": ["(: cnet_isa_6cfadb32ce (IsA gas fluid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas bracket is a kind of burner", "pln": ["(: cnet_isa_71ecee82bb (IsA gas_bracket burner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas burner is a kind of burner", "pln": ["(: cnet_isa_a97b0fb355 (IsA gas_burner burner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas chamber is a kind of instrument of execution", "pln": ["(: cnet_isa_7558d31d68 (IsA gas_chamber instrument_of_execution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas company is a kind of utility", "pln": ["(: cnet_isa_a30c40ab3e (IsA gas_company utility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas constant is a kind of constant", "pln": ["(: cnet_isa_f706dca896 (IsA gas_constant constant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas cooled reactor is a kind of nuclear reactor", "pln": ["(: cnet_isa_f0bb68978e (IsA gas_cooled_reactor nuclear_reactor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas discharge tube is a kind of tube", "pln": ["(: cnet_isa_c7587b356c (IsA gas_discharge_tube tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas engine is a kind of internal combustion engine", "pln": ["(: cnet_isa_8c99635ff6 (IsA gas_engine internal_combustion_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas fitter is a kind of workman", "pln": ["(: cnet_isa_d7237162f2 (IsA gas_fitter workman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gas fitting is a kind of fitting", "pln": ["(: cnet_isa_d5c5d6468d (IsA gas_fitting fitting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas fixture is a kind of device", "pln": ["(: cnet_isa_6c31aff769 (IsA gas_fixture device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas furnace is a kind of furnace", "pln": ["(: cnet_isa_940be51e0c (IsA gas_furnace furnace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas gangrene is a kind of gangrene", "pln": ["(: cnet_isa_0873364cbd (IsA gas_gangrene gangrene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas gun is a kind of gun", "pln": ["(: cnet_isa_596374dd10 (IsA gas_gun gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas guzzler is a kind of car", "pln": ["(: cnet_isa_140399de5e (IsA gas_guzzler car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas heat is a kind of heating system", "pln": ["(: cnet_isa_b77e020c61 (IsA gas_heat heating_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas heater is a kind of heater", "pln": ["(: cnet_isa_10a55a13cd (IsA gas_heater heater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas holder is a kind of tank", "pln": ["(: cnet_isa_80e85d1f62 (IsA gas_holder tank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas lamp is a kind of lamp", "pln": ["(: cnet_isa_fdb3a75082 (IsA gas_lamp lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gas line is a kind of pipeline", "pln": ["(: cnet_isa_da255c6323 (IsA gas_line pipeline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas line is a kind of queue", "pln": ["(: cnet_isa_69ebac9ea4 (IsA gas_line queue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas main is a kind of main", "pln": ["(: cnet_isa_49bd88eb55 (IsA gas_main main) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gas maser is a kind of maser", "pln": ["(: cnet_isa_7a3e603bd0 (IsA gas_maser maser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas meter is a kind of meter", "pln": ["(: cnet_isa_d07332157c (IsA gas_meter meter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas oil is a kind of fuel oil", "pln": ["(: cnet_isa_5959993ad4 (IsA gas_oil fuel_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas oil is a kind of hydrocarbon", "pln": ["(: cnet_isa_3e1b9bf22f (IsA gas_oil hydrocarbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas oven is a kind of crematory", "pln": ["(: cnet_isa_4ac7dd65a5 (IsA gas_oven crematory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas oven is a kind of oven", "pln": ["(: cnet_isa_66bb9612d1 (IsA gas_oven oven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas pressure is a kind of pressure", "pln": ["(: cnet_isa_d902bdd4e2 (IsA gas_pressure pressure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas pump is a kind of pump", "pln": ["(: cnet_isa_c843b23344 (IsA gas_pump pump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas range is a kind of stove", "pln": ["(: cnet_isa_f30e65244f (IsA gas_range stove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas ring is a kind of gas burner", "pln": ["(: cnet_isa_85c3ee1125 (IsA gas_ring gas_burner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas shell is a kind of bomb", "pln": ["(: cnet_isa_14bbde2a6b (IsA gas_shell bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas system is a kind of facility", "pln": ["(: cnet_isa_da2472879f (IsA gas_system facility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas tank is a kind of tank", "pln": ["(: cnet_isa_abca42c4db (IsA gas_tank tank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas thermometer is a kind of thermometer", "pln": ["(: cnet_isa_77cac7b0d4 (IsA gas_thermometer thermometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas turbine is a kind of turbine", "pln": ["(: cnet_isa_7afdd3d46c (IsA gas_turbine turbine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas turbine ship is a kind of ship", "pln": ["(: cnet_isa_24aa9f3198 (IsA gas_turbine_ship ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gas well is a kind of well", "pln": ["(: cnet_isa_8baad14507 (IsA gas_well well) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gasbag is a kind of bore", "pln": ["(: cnet_isa_2c4388d7de (IsA gasbag bore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gaseousness is a kind of consistency", "pln": ["(: cnet_isa_79dbc8a8eb (IsA gaseousness consistency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gasfield is a kind of field", "pln": ["(: cnet_isa_191bca46f2 (IsA gasfield field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gasification is a kind of chemical process", "pln": ["(: cnet_isa_dc5ea24e6f (IsA gasification chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gasket is a kind of seal", "pln": ["(: cnet_isa_94f36d9dd1 (IsA gasket seal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gaskin is a kind of body part", "pln": ["(: cnet_isa_ed3bca5de4 (IsA gaskin body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gaslight is a kind of light", "pln": ["(: cnet_isa_448d05a290 (IsA gaslight light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gasman is a kind of employee", "pln": ["(: cnet_isa_53749c9eb7 (IsA gasman employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gasmask is a kind of mask", "pln": ["(: cnet_isa_77015c1a06 (IsA gasmask mask) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gasohol is a kind of fuel", "pln": ["(: cnet_isa_3f8ee06551 (IsA gasohol fuel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gasohol is a kind of hydrocarbon", "pln": ["(: cnet_isa_0b53475fce (IsA gasohol hydrocarbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gasoline is a kind of fuel", "pln": ["(: cnet_isa_4845900e20 (IsA gasoline fuel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gasoline is a kind of liquid", "pln": ["(: cnet_isa_20f65495b3 (IsA gasoline liquid) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gasoline is a kind of hydrocarbon", "pln": ["(: cnet_isa_5772bd4c61 (IsA gasoline hydrocarbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gasoline engine is a kind of internal combustion engine", "pln": ["(: cnet_isa_e065939329 (IsA gasoline_engine internal_combustion_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gasoline gauge is a kind of gauge", "pln": ["(: cnet_isa_29e23d7774 (IsA gasoline_gauge gauge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gasoline station is a kind of service station", "pln": ["(: cnet_isa_8723448239 (IsA gasoline_station service_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gasoline tax is a kind of excise", "pln": ["(: cnet_isa_6c57df2a6c (IsA gasoline_tax excise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gasp is a kind of inhalation", "pln": ["(: cnet_isa_3725339127 (IsA gasp inhalation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gassing is a kind of poisoning", "pln": ["(: cnet_isa_7677170816 (IsA gassing poisoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gassing is a kind of chemical process", "pln": ["(: cnet_isa_dee034711d (IsA gassing chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gasteromycete is a kind of fungus", "pln": ["(: cnet_isa_463ad52172 (IsA gasteromycete fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gasteromycete is a kind of class", "pln": ["(: cnet_isa_2ef6313e6d (IsA gasteromycete class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gasterophilidae is a kind of arthropod family", "pln": ["(: cnet_isa_3791ffbf10 (IsA gasterophilidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gasterophilus is a kind of arthropod genus", "pln": ["(: cnet_isa_ea2d03cfc9 (IsA gasterophilus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gasterosteidae is a kind of fish family", "pln": ["(: cnet_isa_daee20975f (IsA gasterosteidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gasterosteus is a kind of fish genus", "pln": ["(: cnet_isa_1ddd7be168 (IsA gasterosteus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gastrectomy is a kind of operation", "pln": ["(: cnet_isa_778d93d71b (IsA gastrectomy operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gastric artery is a kind of artery", "pln": ["(: cnet_isa_46684f2267 (IsA gastric_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gastric digestion is a kind of digestion", "pln": ["(: cnet_isa_fa26a645c7 (IsA gastric_digestion digestion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gastric juice is a kind of digestive juice", "pln": ["(: cnet_isa_92b9aa055f (IsA gastric_juice digestive_juice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gastric lavage is a kind of lavage", "pln": ["(: cnet_isa_ddf987d296 (IsA gastric_lavage lavage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gastric smear is a kind of alimentary tract smear", "pln": ["(: cnet_isa_fe2a3636ad (IsA gastric_smear alimentary_tract_smear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gastric ulcer is a kind of peptic ulcer", "pln": ["(: cnet_isa_f3d53a338f (IsA gastric_ulcer peptic_ulcer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gastric vein is a kind of vein", "pln": ["(: cnet_isa_0530915234 (IsA gastric_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gastrin is a kind of gastrointestinal hormone", "pln": ["(: cnet_isa_98f93526e1 (IsA gastrin gastrointestinal_hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gastritis is a kind of inflammation", "pln": ["(: cnet_isa_f6e690b092 (IsA gastritis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gastroboletus is a kind of fungus genus", "pln": ["(: cnet_isa_90c30c3530 (IsA gastroboletus fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gastroboletus scabrosus is a kind of fungus", "pln": ["(: cnet_isa_92ac6342a6 (IsA gastroboletus_scabrosus fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gastroboletus turbinatus is a kind of fungus", "pln": ["(: cnet_isa_afc89ff97e (IsA gastroboletus_turbinatus fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gastrocnemius is a kind of skeletal muscle", "pln": ["(: cnet_isa_4d28c47710 (IsA gastrocnemius skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gastrocybe is a kind of fungus genus", "pln": ["(: cnet_isa_5b75fe1594 (IsA gastrocybe fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gastrocybe lateritia is a kind of fungus", "pln": ["(: cnet_isa_31c67cdea7 (IsA gastrocybe_lateritia fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gastroenteritis is a kind of inflammatory disease", "pln": ["(: cnet_isa_e6c39cc937 (IsA gastroenteritis inflammatory_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gastroenterologist is a kind of doctor", "pln": ["(: cnet_isa_42fca136bd (IsA gastroenterologist doctor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gastroenterology is a kind of medicine", "pln": ["(: cnet_isa_75e4694b88 (IsA gastroenterology medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gastroenterostomy is a kind of operation", "pln": ["(: cnet_isa_65566cd5b8 (IsA gastroenterostomy operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gastroesophageal reflux is a kind of reflux", "pln": ["(: cnet_isa_bbe3c93858 (IsA gastroesophageal_reflux reflux) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gastrogavage is a kind of forced feeding", "pln": ["(: cnet_isa_f652dc2485 (IsA gastrogavage forced_feeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gastrointestinal hormone is a kind of hormone", "pln": ["(: cnet_isa_48c22b4377 (IsA gastrointestinal_hormone hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gastromy is a kind of incision", "pln": ["(: cnet_isa_28cd0d30e7 (IsA gastromy incision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gastronomy is a kind of art", "pln": ["(: cnet_isa_f97bf25cfd (IsA gastronomy art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gastronomy is a kind of cuisine", "pln": ["(: cnet_isa_4de8e701b7 (IsA gastronomy cuisine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gastroomental vein is a kind of vein", "pln": ["(: cnet_isa_ec12c2d7fd (IsA gastroomental_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gastrophryne is a kind of amphibian genus", "pln": ["(: cnet_isa_526059e5a1 (IsA gastrophryne amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gastropod is a kind of mollusk", "pln": ["(: cnet_isa_76a5f11bbf (IsA gastropod mollusk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gastropoda is a kind of class", "pln": ["(: cnet_isa_b08aa41770 (IsA gastropoda class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gastroscope is a kind of endoscope", "pln": ["(: cnet_isa_481bad5a5a (IsA gastroscope endoscope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gastroscopy is a kind of endoscopy", "pln": ["(: cnet_isa_1bf8bfb839 (IsA gastroscopy endoscopy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gastrostomy is a kind of operation", "pln": ["(: cnet_isa_09bac993a1 (IsA gastrostomy operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gastrula is a kind of embryo", "pln": ["(: cnet_isa_fdcd625db7 (IsA gastrula embryo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gastrulation is a kind of organic process", "pln": ["(: cnet_isa_81cb621b2e (IsA gastrulation organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gaswork is a kind of workplace", "pln": ["(: cnet_isa_7046dbfd4e (IsA gaswork workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gat is a kind of pistol", "pln": ["(: cnet_isa_5395c0e704 (IsA gat pistol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gate is a kind of computer circuit", "pln": ["(: cnet_isa_deb7397f23 (IsA gate computer_circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gate is a kind of movable barrier", "pln": ["(: cnet_isa_6832ea0cbb (IsA gate movable_barrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gate is a kind of passageway", "pln": ["(: cnet_isa_46bc9f432f (IsA gate passageway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gate is a kind of gross", "pln": ["(: cnet_isa_ede52e77aa (IsA gate gross) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gateau is a kind of cake", "pln": ["(: cnet_isa_4f1531a227 (IsA gateau cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gatecrasher is a kind of intruder", "pln": ["(: cnet_isa_9731fda004 (IsA gatecrasher intruder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gatehouse is a kind of house", "pln": ["(: cnet_isa_8489d83c6a (IsA gatehouse house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gatekeeper is a kind of person", "pln": ["(: cnet_isa_45281cf9d6 (IsA gatekeeper person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gateleg table is a kind of drop leaf table", "pln": ["(: cnet_isa_10a4a94212 (IsA gateleg_table drop_leaf_table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gatepost is a kind of post", "pln": ["(: cnet_isa_a7d8020f22 (IsA gatepost post) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gateway is a kind of entrance", "pln": ["(: cnet_isa_cfa7f74009 (IsA gateway entrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gateway drug is a kind of drug of abuse", "pln": ["(: cnet_isa_1717375068 (IsA gateway_drug drug_of_abuse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gather is a kind of collection", "pln": ["(: cnet_isa_c0539944be (IsA gather collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gather is a kind of sewing", "pln": ["(: cnet_isa_76a67c6d7d (IsA gather sewing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gathered skirt is a kind of skirt", "pln": ["(: cnet_isa_b2de2935e6 (IsA gathered_skirt skirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gatherer is a kind of person", "pln": ["(: cnet_isa_1cf083c21d (IsA gatherer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gathering is a kind of social group", "pln": ["(: cnet_isa_00375f6bbb (IsA gathering social_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gathering place is a kind of haunt", "pln": ["(: cnet_isa_9003738355 (IsA gathering_place haunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gathic is a kind of iranian", "pln": ["(: cnet_isa_cf79c0a2de (IsA gathic iranian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gatling gun is a kind of machine gun", "pln": ["(: cnet_isa_24786853af (IsA gatling_gun machine_gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gaucher s disease is a kind of lipidosis", "pln": ["(: cnet_isa_38af8947ec (IsA gaucher_s_disease lipidosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gaucher s disease is a kind of monogenic disorder", "pln": ["(: cnet_isa_55a0342fae (IsA gaucher_s_disease monogenic_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gaucho is a kind of cowboy", "pln": ["(: cnet_isa_6cf41af27b (IsA gaucho cowboy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gaudery is a kind of display", "pln": ["(: cnet_isa_f5b2595d16 (IsA gaudery display) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gaudy is a kind of banquet", "pln": ["(: cnet_isa_32bae75846 (IsA gaudy banquet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gauge is a kind of measuring instrument", "pln": ["(: cnet_isa_3245a48e57 (IsA gauge measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gauge is a kind of distance", "pln": ["(: cnet_isa_8734230640 (IsA gauge distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gauge is a kind of thickness", "pln": ["(: cnet_isa_54afb43aa5 (IsA gauge thickness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gauge is a kind of standard", "pln": ["(: cnet_isa_d07247ed0c (IsA gauge standard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gauge boson is a kind of boson", "pln": ["(: cnet_isa_7b6b17bcd3 (IsA gauge_boson boson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gaul is a kind of kelt", "pln": ["(: cnet_isa_99b0a3a9e7 (IsA gaul kelt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gaultheria is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_d31aad6d33 (IsA gaultheria dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gauntlet is a kind of corporal punishment", "pln": ["(: cnet_isa_54292e3f95 (IsA gauntlet corporal_punishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gauntlet is a kind of glove", "pln": ["(: cnet_isa_d0b44dac58 (IsA gauntlet glove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gauntlet is a kind of challenge", "pln": ["(: cnet_isa_d25f250af0 (IsA gauntlet challenge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gaur is a kind of asian wild ox", "pln": ["(: cnet_isa_cfe6fdfb8d (IsA gaur asian_wild_ox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gauss is a kind of flux density unit", "pln": ["(: cnet_isa_61b24e8c98 (IsA gauss flux_density_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gauze is a kind of net", "pln": ["(: cnet_isa_a3557d05b1 (IsA gauze net) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gauze is a kind of cotton", "pln": ["(: cnet_isa_fa365f6ab8 (IsA gauze cotton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gavel is a kind of mallet", "pln": ["(: cnet_isa_c167fd7d3c (IsA gavel mallet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gavia is a kind of bird genus", "pln": ["(: cnet_isa_7d4819fa99 (IsA gavia bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gavial is a kind of crocodilian reptile", "pln": ["(: cnet_isa_63ffb08530 (IsA gavial crocodilian_reptile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gavialidae is a kind of reptile family", "pln": ["(: cnet_isa_b31b89b8d6 (IsA gavialidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gavialis is a kind of reptile genus", "pln": ["(: cnet_isa_e7480a6008 (IsA gavialis reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gavidae is a kind of bird family", "pln": ["(: cnet_isa_f66afff4ba (IsA gavidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gaviiform seabird is a kind of seabird", "pln": ["(: cnet_isa_8183333625 (IsA gaviiform_seabird seabird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gaviiforme is a kind of animal order", "pln": ["(: cnet_isa_c56b77e8f9 (IsA gaviiforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gavotte is a kind of social dancing", "pln": ["(: cnet_isa_a43437403e (IsA gavotte social_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gavotte is a kind of dance music", "pln": ["(: cnet_isa_151951abe0 (IsA gavotte dance_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gawker is a kind of spectator", "pln": ["(: cnet_isa_1a2a691de5 (IsA gawker spectator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gawkiness is a kind of awkwardness", "pln": ["(: cnet_isa_b4cac5ebf9 (IsA gawkiness awkwardness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gay is a kind of slang term for homosexual", "pln": ["(: cnet_isa_154adb7543 (IsA gay slang_term_for_homosexual) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gay liberation movement is a kind of campaign", "pln": ["(: cnet_isa_02b3864b69 (IsA gay_liberation_movement campaign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gay lussac s law is a kind of law", "pln": ["(: cnet_isa_e25fc946c1 (IsA gay_lussac_s_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gayal is a kind of asian wild ox", "pln": ["(: cnet_isa_a721518d32 (IsA gayal asian_wild_ox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gaylussacia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_6407c3bd43 (IsA gaylussacia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gazania is a kind of flower", "pln": ["(: cnet_isa_923bf1bee6 (IsA gazania flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gaze is a kind of stare", "pln": ["(: cnet_isa_17428dd64a (IsA gaze stare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gazebo is a kind of building", "pln": ["(: cnet_isa_53c00736d4 (IsA gazebo building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gazella is a kind of mammal genus", "pln": ["(: cnet_isa_ec7a2d408b (IsA gazella mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gazella subgutturosa is a kind of gazelle", "pln": ["(: cnet_isa_afb8b62b7f (IsA gazella_subgutturosa gazelle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gazelle is a kind of antelope", "pln": ["(: cnet_isa_e20f1c15dd (IsA gazelle antelope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gazette is a kind of newspaper", "pln": ["(: cnet_isa_24c6d93163 (IsA gazette newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gazetteer is a kind of dictionary", "pln": ["(: cnet_isa_07313cb42e (IsA gazetteer dictionary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gazetteer is a kind of journalist", "pln": ["(: cnet_isa_b53d638417 (IsA gazetteer journalist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gazpacho is a kind of soup", "pln": ["(: cnet_isa_1675309d40 (IsA gazpacho soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gb is a kind of computer memory unit", "pln": ["(: cnet_isa_87c40d6bfa (IsA gb computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gean is a kind of sweet cherry", "pln": ["(: cnet_isa_afb4acad5b (IsA gean sweet_cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gear is a kind of equipment", "pln": ["(: cnet_isa_b724bdbb0c (IsA gear equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gear is a kind of mechanism", "pln": ["(: cnet_isa_7a2e12fb76 (IsA gear mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gear is a kind of wheel", "pln": ["(: cnet_isa_12e9f4741d (IsA gear wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gearbox is a kind of shell", "pln": ["(: cnet_isa_86c6f7262a (IsA gearbox shell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gearing is a kind of wheelwork", "pln": ["(: cnet_isa_d7d678150f (IsA gearing wheelwork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gearset is a kind of gear", "pln": ["(: cnet_isa_7e7a7ccce7 (IsA gearset gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gearshift is a kind of mechanical device", "pln": ["(: cnet_isa_a03b835b87 (IsA gearshift mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geastraceae is a kind of fungus family", "pln": ["(: cnet_isa_c16b878067 (IsA geastraceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geastrum is a kind of fungus genus", "pln": ["(: cnet_isa_8c25520e06 (IsA geastrum fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "geastrum coronatum is a kind of earthstar", "pln": ["(: cnet_isa_9029e55e0e (IsA geastrum_coronatum earthstar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gebang palm is a kind of fan palm", "pln": ["(: cnet_isa_76315ceb7d (IsA gebang_palm fan_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gebhard leberecht von blucher is a kind of general", "pln": ["(: cnet_isa_8a7bafc7ca (IsA gebhard_leberecht_von_blucher general) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gecko is a kind of reptile", "pln": ["(: cnet_isa_34e71f5457 (IsA gecko reptile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gecko is a kind of lizard", "pln": ["(: cnet_isa_d15182aa0d (IsA gecko lizard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gee gee is a kind of horse", "pln": ["(: cnet_isa_d6c8680c87 (IsA gee_gee horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "geebung is a kind of shrub", "pln": ["(: cnet_isa_1e459bed26 (IsA geebung shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geek is a kind of performer", "pln": ["(: cnet_isa_97dcad4be2 (IsA geek performer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geen is a kind of primary colour", "pln": ["(: cnet_isa_087e536f86 (IsA geen primary_colour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geezer is a kind of man", "pln": ["(: cnet_isa_a5ac9e5d4c (IsA geezer man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gefilte fish is a kind of dish", "pln": ["(: cnet_isa_6006dee0b0 (IsA gefilte_fish dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geglossaceae is a kind of ascomycete", "pln": ["(: cnet_isa_ffb77bc224 (IsA geglossaceae ascomycete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gehenna is a kind of hell", "pln": ["(: cnet_isa_0a7738dfa1 (IsA gehenna hell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geiger counter is a kind of counter tube", "pln": ["(: cnet_isa_03d858c1b3 (IsA geiger_counter counter_tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geiger tube is a kind of ionization chamber", "pln": ["(: cnet_isa_9919e64f38 (IsA geiger_tube ionization_chamber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geisha is a kind of nipponese", "pln": ["(: cnet_isa_aea4f32c05 (IsA geisha nipponese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geisha is a kind of woman", "pln": ["(: cnet_isa_b58173ca4b (IsA geisha woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gekkonidae is a kind of reptile family", "pln": ["(: cnet_isa_c16f55285b (IsA gekkonidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gel is a kind of colloid", "pln": ["(: cnet_isa_e4641d66a3 (IsA gel colloid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gelatin is a kind of membrane", "pln": ["(: cnet_isa_d9cc6d5459 (IsA gelatin membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gelatin is a kind of dainty", "pln": ["(: cnet_isa_46c4f6fde2 (IsA gelatin dainty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gelatin is a kind of scleroprotein", "pln": ["(: cnet_isa_158d4c1b3a (IsA gelatin scleroprotein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gelatin dessert is a kind of gelatin", "pln": ["(: cnet_isa_af9154eb35 (IsA gelatin_dessert gelatin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gelatinousness is a kind of viscosity", "pln": ["(: cnet_isa_5a524d96d0 (IsA gelatinousness viscosity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gelding is a kind of male horse", "pln": ["(: cnet_isa_5273dcba30 (IsA gelding male_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gelechia is a kind of arthropod genus", "pln": ["(: cnet_isa_642be774fd (IsA gelechia arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gelechia gossypiella is a kind of gelechiid", "pln": ["(: cnet_isa_72f4dcde71 (IsA gelechia_gossypiella gelechiid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gelechiid is a kind of moth", "pln": ["(: cnet_isa_107929ec81 (IsA gelechiid moth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gelechiidae is a kind of arthropod family", "pln": ["(: cnet_isa_a270bc171c (IsA gelechiidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gelignite is a kind of dynamite", "pln": ["(: cnet_isa_c8d6b94918 (IsA gelignite dynamite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gelsemium is a kind of dicot genus", "pln": ["(: cnet_isa_366eec1a2e (IsA gelsemium dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gem is a kind of art", "pln": ["(: cnet_isa_2c8ef3fb19 (IsA gem art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gem is a kind of crystal", "pln": ["(: cnet_isa_cb54d75165 (IsA gem crystal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gem cutter is a kind of cutter", "pln": ["(: cnet_isa_8d19c5b51d (IsA gem_cutter cutter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "geminate is a kind of consonant", "pln": ["(: cnet_isa_bc55a2e2e8 (IsA geminate consonant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gemination is a kind of repetition", "pln": ["(: cnet_isa_5db9520c4e (IsA gemination repetition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gemini is a kind of person", "pln": ["(: cnet_isa_a18fdacaca (IsA gemini person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gemma is a kind of reproductive structure", "pln": ["(: cnet_isa_5ee1e57f3d (IsA gemma reproductive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gemmule is a kind of hypothesis", "pln": ["(: cnet_isa_1142de84bc (IsA gemmule hypothesis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gempylid is a kind of percoid fish", "pln": ["(: cnet_isa_37d6e635ab (IsA gempylid percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gempylidae is a kind of fish family", "pln": ["(: cnet_isa_02c1d1463f (IsA gempylidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gempylus is a kind of fish genus", "pln": ["(: cnet_isa_282a89767b (IsA gempylus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gemsbok is a kind of oryx", "pln": ["(: cnet_isa_e9b9086e97 (IsA gemsbok oryx) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gen is a kind of information", "pln": ["(: cnet_isa_26c9094c24 (IsA gen information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gendarme is a kind of policeman", "pln": ["(: cnet_isa_c65698e519 (IsA gendarme policeman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gendarmerie is a kind of police", "pln": ["(: cnet_isa_ec20687a97 (IsA gendarmerie police) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gender is a kind of grammatical category", "pln": ["(: cnet_isa_ca15bfec24 (IsA gender grammatical_category) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gender agreement is a kind of agreement", "pln": ["(: cnet_isa_d3d6b541d2 (IsA gender_agreement agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gender identity is a kind of identity", "pln": ["(: cnet_isa_53432ed1e3 (IsA gender_identity identity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gender role is a kind of role", "pln": ["(: cnet_isa_bf3dc43c65 (IsA gender_role role) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gene is a kind of sequence", "pln": ["(: cnet_isa_2b4ee14183 (IsA gene sequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gene chip is a kind of chip", "pln": ["(: cnet_isa_9f7e23cf1e (IsA gene_chip chip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gene expression is a kind of organic phenomenon", "pln": ["(: cnet_isa_315d8e873b (IsA gene_expression organic_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genealogist is a kind of expert", "pln": ["(: cnet_isa_be2252e978 (IsA genealogist expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genealogy is a kind of discipline", "pln": ["(: cnet_isa_cc4432fb4f (IsA genealogy discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genealogy is a kind of kin", "pln": ["(: cnet_isa_db2ec53dd6 (IsA genealogy kin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "general is a kind of high rank", "pln": ["(: cnet_isa_304a83eed3 (IsA general high_rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "general is a kind of fact", "pln": ["(: cnet_isa_5af629276b (IsA general fact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "general is a kind of general officer", "pln": ["(: cnet_isa_5651e5d191 (IsA general general_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "general is a kind of head", "pln": ["(: cnet_isa_f3479755f2 (IsA general head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "general agreement on tariff and trade is a kind of united nation agency", "pln": ["(: cnet_isa_7909e0b821 (IsA general_agreement_on_tariff_and_trade united_nation_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "general anesthesia is a kind of anesthesia", "pln": ["(: cnet_isa_207ef00ad6 (IsA general_anesthesia anesthesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "general anesthetic is a kind of anesthetic", "pln": ["(: cnet_isa_c1c9b226a1 (IsA general_anesthetic anesthetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "general assembly is a kind of deliberative assembly", "pln": ["(: cnet_isa_ea6b653ee3 (IsA general_assembly deliberative_assembly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "general delivery is a kind of unit", "pln": ["(: cnet_isa_59c810dc87 (IsA general_delivery unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "general election is a kind of election", "pln": ["(: cnet_isa_6880f7821a (IsA general_election election) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "general ledger is a kind of ledger", "pln": ["(: cnet_isa_797fd3928f (IsA general_ledger ledger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "general lien is a kind of lien", "pln": ["(: cnet_isa_339a00e5ac (IsA general_lien lien) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "general manager is a kind of head", "pln": ["(: cnet_isa_ca165e1b55 (IsA general_manager head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "general officer is a kind of commissioned military officer", "pln": ["(: cnet_isa_6b18237ac8 (IsA general_officer commissioned_military_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "general practitioner is a kind of doctor", "pln": ["(: cnet_isa_7744c5b093 (IsA general_practitioner doctor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "general purpose bomb is a kind of bomb", "pln": ["(: cnet_isa_29aa882692 (IsA general_purpose_bomb bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "general relativity is a kind of relativity", "pln": ["(: cnet_isa_d0f0f1813d (IsA general_relativity relativity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "general service administration is a kind of independent agency", "pln": ["(: cnet_isa_f7bcda841e (IsA general_service_administration independent_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "general staff is a kind of staff", "pln": ["(: cnet_isa_9639b7816f (IsA general_staff staff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "general verdict is a kind of verdict", "pln": ["(: cnet_isa_dc336f6937 (IsA general_verdict verdict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "generalist is a kind of scholar", "pln": ["(: cnet_isa_32a1c2e34c (IsA generalist scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "generality is a kind of quality", "pln": ["(: cnet_isa_b295a19752 (IsA generality quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "generalization is a kind of colligation", "pln": ["(: cnet_isa_bd35454116 (IsA generalization colligation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "generalization is a kind of idea", "pln": ["(: cnet_isa_c60b4b730d (IsA generalization idea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "generalization is a kind of transfer", "pln": ["(: cnet_isa_09481aa874 (IsA generalization transfer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "generalized anxiety disorder is a kind of anxiety disorder", "pln": ["(: cnet_isa_5c24005d17 (IsA generalized_anxiety_disorder anxiety_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "generally accepted accounting practice is a kind of collection", "pln": ["(: cnet_isa_5cfdce8b2a (IsA generally_accepted_accounting_practice collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "generalship is a kind of position", "pln": ["(: cnet_isa_4953ab61a9 (IsA generalship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "generalship is a kind of leadership", "pln": ["(: cnet_isa_5636e02ff5 (IsA generalship leadership) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "generation is a kind of production", "pln": ["(: cnet_isa_a81624b116 (IsA generation production) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "generation is a kind of reproduction", "pln": ["(: cnet_isa_dcab693dc0 (IsA generation reproduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "generation is a kind of biological group", "pln": ["(: cnet_isa_51049e7161 (IsA generation biological_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "generation is a kind of phase", "pln": ["(: cnet_isa_9af79492dd (IsA generation phase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "generation is a kind of time period", "pln": ["(: cnet_isa_f04cb49d8f (IsA generation time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "generation gap is a kind of gap", "pln": ["(: cnet_isa_f867fd8cb5 (IsA generation_gap gap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "generation x is a kind of generation", "pln": ["(: cnet_isa_b566e165cf (IsA generation_x generation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "generative grammar is a kind of syntax", "pln": ["(: cnet_isa_f355589fcf (IsA generative_grammar syntax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "generator is a kind of apparatus", "pln": ["(: cnet_isa_c1eebe5941 (IsA generator apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "generator is a kind of electronic device", "pln": ["(: cnet_isa_53db35b851 (IsA generator electronic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "generator is a kind of engine", "pln": ["(: cnet_isa_e8a3f301b9 (IsA generator engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "generator is a kind of maker", "pln": ["(: cnet_isa_b4e085fca4 (IsA generator maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "generic is a kind of merchandise", "pln": ["(: cnet_isa_00fbb673bd (IsA generic merchandise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "generic drug is a kind of drug", "pln": ["(: cnet_isa_1b4e1e2513 (IsA generic_drug drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "generic drug is a kind of generic", "pln": ["(: cnet_isa_bf32002048 (IsA generic_drug generic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "generic noun is a kind of noun", "pln": ["(: cnet_isa_2784faf8ff (IsA generic_noun noun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "generic wine is a kind of wine", "pln": ["(: cnet_isa_6aeb259d57 (IsA generic_wine wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "generosity is a kind of sharing", "pln": ["(: cnet_isa_67d60e64c2 (IsA generosity sharing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "generosity is a kind of kindness", "pln": ["(: cnet_isa_b9adbdf1c4 (IsA generosity kindness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genesis is a kind of beginning", "pln": ["(: cnet_isa_23c72ebd7e (IsA genesis beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genet is a kind of viverrine", "pln": ["(: cnet_isa_32870d8184 (IsA genet viverrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genetic code is a kind of ordering", "pln": ["(: cnet_isa_162394851b (IsA genetic_code ordering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genetic counseling is a kind of guidance", "pln": ["(: cnet_isa_d23227bf23 (IsA genetic_counseling guidance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genetic disease is a kind of disease", "pln": ["(: cnet_isa_87448eefae (IsA genetic_disease disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genetic engineering is a kind of biotechnology", "pln": ["(: cnet_isa_2aa654ae05 (IsA genetic_engineering biotechnology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genetic map is a kind of arrangement", "pln": ["(: cnet_isa_b657148bcf (IsA genetic_map arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genetic marker is a kind of gene", "pln": ["(: cnet_isa_2fca8046a8 (IsA genetic_marker gene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genetic profiling is a kind of procedure", "pln": ["(: cnet_isa_ee732cf59f (IsA genetic_profiling procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genetic screening is a kind of screening", "pln": ["(: cnet_isa_a75b5b9cbc (IsA genetic_screening screening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geneticism is a kind of belief", "pln": ["(: cnet_isa_c9c7cb5f1a (IsA geneticism belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geneticist is a kind of biologist", "pln": ["(: cnet_isa_571d6eb49d (IsA geneticist biologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genetic is a kind of biology", "pln": ["(: cnet_isa_9d72ac34fb (IsA genetic biology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genetta is a kind of mammal genus", "pln": ["(: cnet_isa_6c1cf310dc (IsA genetta mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geneva is a kind of gin", "pln": ["(: cnet_isa_7689549ce0 (IsA geneva gin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geneva gown is a kind of academic gown", "pln": ["(: cnet_isa_cded63765a (IsA geneva_gown academic_gown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genevan is a kind of necessitarian", "pln": ["(: cnet_isa_53d2561e83 (IsA genevan necessitarian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genevan is a kind of swiss people", "pln": ["(: cnet_isa_fff1512dfe (IsA genevan swiss_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genicular vein is a kind of vein", "pln": ["(: cnet_isa_f214a91b7f (IsA genicular_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geniculate body is a kind of neural structure", "pln": ["(: cnet_isa_b0692ec0a3 (IsA geniculate_body neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genie is a kind of spirit", "pln": ["(: cnet_isa_7cc06327b6 (IsA genie spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genip is a kind of edible fruit", "pln": ["(: cnet_isa_8a45bf141a (IsA genip edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genipa is a kind of fruit tree", "pln": ["(: cnet_isa_6e6a7604c6 (IsA genipa fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genipap is a kind of edible fruit", "pln": ["(: cnet_isa_08a36bf496 (IsA genipap edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genipap fruit is a kind of genipa", "pln": ["(: cnet_isa_4b19ca423e (IsA genipap_fruit genipa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genista is a kind of rosid dicot genus", "pln": ["(: cnet_isa_7073d465af (IsA genista rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genital herpe is a kind of herpe simplex", "pln": ["(: cnet_isa_606f45f680 (IsA genital_herpe herpe_simplex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genital herpe is a kind of venereal disease", "pln": ["(: cnet_isa_1ccc66f555 (IsA genital_herpe venereal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genital personality is a kind of personality", "pln": ["(: cnet_isa_996e801ef5 (IsA genital_personality personality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genital stage is a kind of phase", "pln": ["(: cnet_isa_7eca3b7f71 (IsA genital_stage phase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genital torture is a kind of torture", "pln": ["(: cnet_isa_6365ee996f (IsA genital_torture torture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genital wart is a kind of wart", "pln": ["(: cnet_isa_690f6da305 (IsA genital_wart wart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genitalia is a kind of reproductive organ", "pln": ["(: cnet_isa_de0146d326 (IsA genitalia reproductive_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genitive is a kind of oblique", "pln": ["(: cnet_isa_9fb153a3a9 (IsA genitive oblique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genitor is a kind of progenitor", "pln": ["(: cnet_isa_6c93854195 (IsA genitor progenitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genius is a kind of creativity", "pln": ["(: cnet_isa_5179aebbad (IsA genius creativity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genius is a kind of intellectual", "pln": ["(: cnet_isa_267a71b657 (IsA genius intellectual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genius loci is a kind of guardian spirit", "pln": ["(: cnet_isa_07dce861ef (IsA genius_loci guardian_spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genius loci is a kind of atmosphere", "pln": ["(: cnet_isa_d91ab02d4b (IsA genius_loci atmosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genlisea is a kind of carnivorous plant", "pln": ["(: cnet_isa_f0f19e4f1f (IsA genlisea carnivorous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genocide is a kind of crime", "pln": ["(: cnet_isa_3e62c87e38 (IsA genocide crime) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genocide is a kind of killing", "pln": ["(: cnet_isa_08205c5b44 (IsA genocide killing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genoese is a kind of italian", "pln": ["(: cnet_isa_c3cb02925c (IsA genoese italian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genoise is a kind of cake", "pln": ["(: cnet_isa_28267a6c9f (IsA genoise cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genome is a kind of ordering", "pln": ["(: cnet_isa_c0b5992f8e (IsA genome ordering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genomic is a kind of genetic", "pln": ["(: cnet_isa_4ba18401af (IsA genomic genetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genotype is a kind of constitution", "pln": ["(: cnet_isa_a1a81d7ce4 (IsA genotype constitution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genotype is a kind of biological group", "pln": ["(: cnet_isa_389f8a3247 (IsA genotype biological_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genre is a kind of art", "pln": ["(: cnet_isa_c03a97cacb (IsA genre art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genre is a kind of kind", "pln": ["(: cnet_isa_59bfcae15d (IsA genre kind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genre painter is a kind of painter", "pln": ["(: cnet_isa_8522b52041 (IsA genre_painter painter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genre painting is a kind of genre", "pln": ["(: cnet_isa_9a79a46241 (IsA genre_painting genre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gent is a kind of gentleman", "pln": ["(: cnet_isa_4d40776e0e (IsA gent gentleman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gentian is a kind of flower", "pln": ["(: cnet_isa_5e9da19e4b (IsA gentian flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gentian violet is a kind of antibacterial", "pln": ["(: cnet_isa_c09d92c67c (IsA gentian_violet antibacterial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gentian violet is a kind of antifungal", "pln": ["(: cnet_isa_3469361e8c (IsA gentian_violet antifungal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gentian violet is a kind of stain", "pln": ["(: cnet_isa_cca228031c (IsA gentian_violet stain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gentian violet is a kind of vermifuge", "pln": ["(: cnet_isa_fba01ed281 (IsA gentian_violet vermifuge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gentiana is a kind of dicot genus", "pln": ["(: cnet_isa_24056b110b (IsA gentiana dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gentianaceae is a kind of dicot family", "pln": ["(: cnet_isa_53d8ebef9a (IsA gentianaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gentianale is a kind of plant order", "pln": ["(: cnet_isa_698da32ff1 (IsA gentianale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gentianella is a kind of dicot genus", "pln": ["(: cnet_isa_d01dabefa7 (IsA gentianella dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gentianella is a kind of gentian", "pln": ["(: cnet_isa_adc181e2ba (IsA gentianella gentian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gentianopsid procera is a kind of fringed gentian", "pln": ["(: cnet_isa_0649c2f786 (IsA gentianopsid_procera fringed_gentian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gentianopsis is a kind of dicot genus", "pln": ["(: cnet_isa_951286632f (IsA gentianopsis dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gentianopsis crinita is a kind of fringed gentian", "pln": ["(: cnet_isa_b67740ff96 (IsA gentianopsis_crinita fringed_gentian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gentianopsis detonsa is a kind of fringed gentian", "pln": ["(: cnet_isa_0cadbf2f28 (IsA gentianopsis_detonsa fringed_gentian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gentianopsis thermalis is a kind of fringed gentian", "pln": ["(: cnet_isa_198d42ee1b (IsA gentianopsis_thermalis fringed_gentian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gentile is a kind of christian", "pln": ["(: cnet_isa_a37ba9aff1 (IsA gentile christian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gentile is a kind of person", "pln": ["(: cnet_isa_2c93b9ce08 (IsA gentile person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gentle breeze is a kind of breeze", "pln": ["(: cnet_isa_212ef4725d (IsA gentle_breeze breeze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gentlefolk is a kind of folk", "pln": ["(: cnet_isa_f0336337ee (IsA gentlefolk folk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gentleman is a kind of man", "pln": ["(: cnet_isa_12e47d7f6e (IsA gentleman man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gentleman at arm is a kind of gentleman", "pln": ["(: cnet_isa_29da8325b9 (IsA gentleman_at_arm gentleman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gentlemen s agreement is a kind of agreement", "pln": ["(: cnet_isa_3808045247 (IsA gentlemen_s_agreement agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gentleness is a kind of manner", "pln": ["(: cnet_isa_fc86fe3a00 (IsA gentleness manner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gentrification is a kind of restoration", "pln": ["(: cnet_isa_0c30d5dfe8 (IsA gentrification restoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gentry is a kind of upper class", "pln": ["(: cnet_isa_0e661b4508 (IsA gentry upper_class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genuflection is a kind of bow", "pln": ["(: cnet_isa_8225068b27 (IsA genuflection bow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genuineness is a kind of actuality", "pln": ["(: cnet_isa_38a7e4f216 (IsA genuineness actuality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus is a kind of taxonomic group", "pln": ["(: cnet_isa_5eed6431c9 (IsA genus taxonomic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus is a kind of kind", "pln": ["(: cnet_isa_1a5eee19d8 (IsA genus kind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus abelia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_77f232b36f (IsA genus_abelia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus acacia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_86f82348eb (IsA genus_acacia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus acanthus is a kind of asterid dicot genus", "pln": ["(: cnet_isa_d72fcb43a6 (IsA genus_acanthus asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus achillea is a kind of asterid dicot genus", "pln": ["(: cnet_isa_a64738b338 (IsA genus_achillea asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus achimene is a kind of asterid dicot genus", "pln": ["(: cnet_isa_d5639ccc7a (IsA genus_achimene asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus actinomyce is a kind of bacteria genus", "pln": ["(: cnet_isa_4f9abfaf96 (IsA genus_actinomyce bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus addax is a kind of mammal genus", "pln": ["(: cnet_isa_b0e81c0fd5 (IsA genus_addax mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus aegyptopithecus is a kind of mammal genus", "pln": ["(: cnet_isa_0f8e37490f (IsA genus_aegyptopithecus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus aepyornis is a kind of bird genus", "pln": ["(: cnet_isa_8b8bc0a7db (IsA genus_aepyornis bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus aeride is a kind of monocot genus", "pln": ["(: cnet_isa_d27d18e07a (IsA genus_aeride monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus aeschynanthus is a kind of asterid dicot genus", "pln": ["(: cnet_isa_ddcf28c8a3 (IsA genus_aeschynanthus asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus afropavo is a kind of bird genus", "pln": ["(: cnet_isa_46004da262 (IsA genus_afropavo bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus agama is a kind of reptile genus", "pln": ["(: cnet_isa_2e8256967d (IsA genus_agama reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus agapanthus is a kind of liliid monocot genus", "pln": ["(: cnet_isa_182d1c5021 (IsA genus_agapanthus liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus agave is a kind of liliid monocot genus", "pln": ["(: cnet_isa_1e67221ae5 (IsA genus_agave liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus ageratum is a kind of asterid dicot genus", "pln": ["(: cnet_isa_21e02e02d7 (IsA genus_ageratum asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus agrimonia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_0fd67e5cbf (IsA genus_agrimonia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus ailanthus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_1c636c4caf (IsA genus_ailanthus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus albizia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_f061c14b3a (IsA genus_albizia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus albuca is a kind of liliid monocot genus", "pln": ["(: cnet_isa_9c2e71343c (IsA genus_albuca liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus allamanda is a kind of dicot genus", "pln": ["(: cnet_isa_bee4e7b099 (IsA genus_allamanda dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus alligator is a kind of reptile genus", "pln": ["(: cnet_isa_2d2f9deede (IsA genus_alligator reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus allosaurus is a kind of reptile genus", "pln": ["(: cnet_isa_44d31a7baa (IsA genus_allosaurus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus alocasia is a kind of monocot genus", "pln": ["(: cnet_isa_a4c7a29ae1 (IsA genus_alocasia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus aloe is a kind of liliid monocot genus", "pln": ["(: cnet_isa_6add64edd0 (IsA genus_aloe liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus alstroemeria is a kind of liliid monocot genus", "pln": ["(: cnet_isa_91a6181efe (IsA genus_alstroemeria liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus althaea is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_65ad0cb352 (IsA genus_althaea dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus amaryllis is a kind of liliid monocot genus", "pln": ["(: cnet_isa_8e790027fb (IsA genus_amaryllis liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus ambrosia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_fb00425ba9 (IsA genus_ambrosia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus ammobium is a kind of asterid dicot genus", "pln": ["(: cnet_isa_f16faa1082 (IsA genus_ammobium asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus amoeba is a kind of protoctist genus", "pln": ["(: cnet_isa_42d366e6d0 (IsA genus_amoeba protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus amorpha is a kind of rosid dicot genus", "pln": ["(: cnet_isa_3ba2cf029c (IsA genus_amorpha rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus amorphophallus is a kind of monocot genus", "pln": ["(: cnet_isa_e8623b01e7 (IsA genus_amorphophallus monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus amphioxus is a kind of chordate genus", "pln": ["(: cnet_isa_94cecd1bd9 (IsA genus_amphioxus chordate_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus amphiuma is a kind of amphibian genus", "pln": ["(: cnet_isa_c2985c3c5e (IsA genus_amphiuma amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus anatotitan is a kind of reptile genus", "pln": ["(: cnet_isa_62bc999a48 (IsA genus_anatotitan reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus anchusa is a kind of plant genus", "pln": ["(: cnet_isa_d45fda8fa9 (IsA genus_anchusa plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus andrena is a kind of arthropod genus", "pln": ["(: cnet_isa_d539e5bd16 (IsA genus_andrena arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus andromeda is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_24559fc9bf (IsA genus_andromeda dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus andryala is a kind of asterid dicot genus", "pln": ["(: cnet_isa_21d9edbb7e (IsA genus_andryala asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus anemone is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_9643b3893e (IsA genus_anemone magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus angelica is a kind of rosid dicot genus", "pln": ["(: cnet_isa_c82a43f84f (IsA genus_angelica rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus angelica is a kind of umbelliferae", "pln": ["(: cnet_isa_b73dfe0be6 (IsA genus_angelica umbelliferae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus angiopteris is a kind of fern genus", "pln": ["(: cnet_isa_c72d48a73f (IsA genus_angiopteris fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus angrecum is a kind of monocot genus", "pln": ["(: cnet_isa_c2b7f0b7c8 (IsA genus_angrecum monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus anhinga is a kind of bird genus", "pln": ["(: cnet_isa_35d80ac3a1 (IsA genus_anhinga bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus ankylosaurus is a kind of reptile genus", "pln": ["(: cnet_isa_7d14c73e67 (IsA genus_ankylosaurus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus anoa is a kind of mammal genus", "pln": ["(: cnet_isa_1fa5afac5a (IsA genus_anoa mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus anomalop is a kind of fish genus", "pln": ["(: cnet_isa_6aea32c053 (IsA genus_anomalop fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus anomalopteryx is a kind of bird genus", "pln": ["(: cnet_isa_d961ac8918 (IsA genus_anomalopteryx bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus anthurium is a kind of monocot genus", "pln": ["(: cnet_isa_8994bddea9 (IsA genus_anthurium monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus apatosaurus is a kind of reptile genus", "pln": ["(: cnet_isa_83b6c394a8 (IsA genus_apatosaurus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus appendicularia is a kind of chordate genus", "pln": ["(: cnet_isa_f228527f37 (IsA genus_appendicularia chordate_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus apteryx is a kind of bird genus", "pln": ["(: cnet_isa_b8a55456f5 (IsA genus_apteryx bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus aquilegia is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_bba962a54f (IsA genus_aquilegia magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus aralia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_735aa6ef99 (IsA genus_aralia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus araucaria is a kind of gymnosperm genus", "pln": ["(: cnet_isa_6ea6415453 (IsA genus_araucaria gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus arbutus is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_78803650c2 (IsA genus_arbutus dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus arcella is a kind of protoctist genus", "pln": ["(: cnet_isa_b9134dc70f (IsA genus_arcella protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus archaeopteryx is a kind of bird genus", "pln": ["(: cnet_isa_5ce960f59b (IsA genus_archaeopteryx bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus archaeornis is a kind of bird genus", "pln": ["(: cnet_isa_a54f2251ed (IsA genus_archaeornis bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus architeuthis is a kind of arthropod genus", "pln": ["(: cnet_isa_9445ebc060 (IsA genus_architeuthis arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus areca is a kind of monocot genus", "pln": ["(: cnet_isa_751e56e128 (IsA genus_areca monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus arethusa is a kind of monocot genus", "pln": ["(: cnet_isa_3b49040009 (IsA genus_arethusa monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus argemone is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_3bf33e206c (IsA genus_argemone dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus argentinosaurus is a kind of titanosaur", "pln": ["(: cnet_isa_ff4d9b45fb (IsA genus_argentinosaurus titanosaur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus arnica is a kind of asterid dicot genus", "pln": ["(: cnet_isa_24a531eeee (IsA genus_arnica asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus artemisia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_c0688c8f94 (IsA genus_artemisia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus arum is a kind of monocot genus", "pln": ["(: cnet_isa_5005fc2125 (IsA genus_arum monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus asparagus is a kind of liliid monocot genus", "pln": ["(: cnet_isa_fe7386b8c1 (IsA genus_asparagus liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus aspidistra is a kind of liliid monocot genus", "pln": ["(: cnet_isa_0a52369f02 (IsA genus_aspidistra liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus aster is a kind of asterid dicot genus", "pln": ["(: cnet_isa_22d3ea5f8d (IsA genus_aster asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus astilbe is a kind of rosid dicot genus", "pln": ["(: cnet_isa_e5a2eed9b7 (IsA genus_astilbe rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus astrantia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_2a95eb49c5 (IsA genus_astrantia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus australopithecus is a kind of mammal genus", "pln": ["(: cnet_isa_053f9ff02a (IsA genus_australopithecus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus ayapana is a kind of rosid dicot genus", "pln": ["(: cnet_isa_e87fd1af8c (IsA genus_ayapana rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus babesia is a kind of protoctist genus", "pln": ["(: cnet_isa_a567fd27a2 (IsA genus_babesia protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus bacillus is a kind of bacteria genus", "pln": ["(: cnet_isa_722e96b131 (IsA genus_bacillus bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus banksia is a kind of dicot genus", "pln": ["(: cnet_isa_1ff4f7b055 (IsA genus_banksia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus barosaurus is a kind of reptile genus", "pln": ["(: cnet_isa_aa6277f177 (IsA genus_barosaurus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus begonia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_ce901237c0 (IsA genus_begonia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus bergenia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_2ea356bfbb (IsA genus_bergenia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus beroe is a kind of ctenophore genus", "pln": ["(: cnet_isa_36fad86841 (IsA genus_beroe ctenophore_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus bison is a kind of mammal genus", "pln": ["(: cnet_isa_90fb399e47 (IsA genus_bison mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus bletia is a kind of monocot genus", "pln": ["(: cnet_isa_96eba151b9 (IsA genus_bletia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus bocconia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_bffc7ca207 (IsA genus_bocconia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus borrelia is a kind of bacteria genus", "pln": ["(: cnet_isa_b9018f7b48 (IsA genus_borrelia bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus bougainvillea is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_3f2359a6ca (IsA genus_bougainvillea caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus brassavola is a kind of monocot genus", "pln": ["(: cnet_isa_3746dade00 (IsA genus_brassavola monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus brodiaea is a kind of liliid monocot genus", "pln": ["(: cnet_isa_f3d53c7e28 (IsA genus_brodiaea liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus browallia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_f3ece111a5 (IsA genus_browallia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus bryanthus is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_79eb9f6256 (IsA genus_bryanthus dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus bryonia is a kind of dicot genus", "pln": ["(: cnet_isa_9490aa9246 (IsA genus_bryonia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus buckleya is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_b19fe3da86 (IsA genus_buckleya dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus buddleia is a kind of dicot genus", "pln": ["(: cnet_isa_68f8b10258 (IsA genus_buddleia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus bufo is a kind of amphibian genus", "pln": ["(: cnet_isa_36a90015e7 (IsA genus_bufo amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus cabassous is a kind of mammal genus", "pln": ["(: cnet_isa_e89ab67c60 (IsA genus_cabassous mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus caiman is a kind of reptile genus", "pln": ["(: cnet_isa_daaec91f10 (IsA genus_caiman reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus caladenia is a kind of monocot genus", "pln": ["(: cnet_isa_27ab436aa5 (IsA genus_caladenia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus caladium is a kind of monocot genus", "pln": ["(: cnet_isa_fcc0fb609e (IsA genus_caladium monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus calamus is a kind of monocot genus", "pln": ["(: cnet_isa_4a916a0a28 (IsA genus_calamus monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus calanthe is a kind of monocot genus", "pln": ["(: cnet_isa_8ceddd9ff4 (IsA genus_calanthe monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus calceolaria is a kind of asterid dicot genus", "pln": ["(: cnet_isa_ef718b2021 (IsA genus_calceolaria asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus calendula is a kind of asterid dicot genus", "pln": ["(: cnet_isa_c4ff1292bc (IsA genus_calendula asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus calliandra is a kind of rosid dicot genus", "pln": ["(: cnet_isa_943114a5ba (IsA genus_calliandra rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus calosoma is a kind of arthropod genus", "pln": ["(: cnet_isa_fa274a45a4 (IsA genus_calosoma arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus calypso is a kind of monocot genus", "pln": ["(: cnet_isa_f0f052b1ef (IsA genus_calypso monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus camellia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_f2815012d8 (IsA genus_camellia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus campanula is a kind of plant genus", "pln": ["(: cnet_isa_3951994b6f (IsA genus_campanula plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus candida is a kind of fungus genus", "pln": ["(: cnet_isa_c572a933ca (IsA genus_candida fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus canella is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_a8041dd3bd (IsA genus_canella dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus canna is a kind of monocot genus", "pln": ["(: cnet_isa_ba3d8b7637 (IsA genus_canna monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus cannabis is a kind of dicot genus", "pln": ["(: cnet_isa_83a6d19e48 (IsA genus_cannabis dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus capsicum is a kind of asterid dicot genus", "pln": ["(: cnet_isa_a7b81cb6a1 (IsA genus_capsicum asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus caragana is a kind of rosid dicot genus", "pln": ["(: cnet_isa_f2abe832a7 (IsA genus_caragana rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus carissa is a kind of dicot genus", "pln": ["(: cnet_isa_d3c704d6ee (IsA genus_carissa dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus carpenteria is a kind of rosid dicot genus", "pln": ["(: cnet_isa_23ab7c0b8b (IsA genus_carpenteria rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus cassia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_24226ccd5a (IsA genus_cassia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus casuarina is a kind of dicot genus", "pln": ["(: cnet_isa_7aeaf4b28a (IsA genus_casuarina dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus catalpa is a kind of asterid dicot genus", "pln": ["(: cnet_isa_342ba0aa27 (IsA genus_catalpa asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus catananche is a kind of asterid dicot genus", "pln": ["(: cnet_isa_f59b8933d7 (IsA genus_catananche asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus cathaya is a kind of gymnosperm genus", "pln": ["(: cnet_isa_7386fb72fd (IsA genus_cathaya gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus cattleya is a kind of monocot genus", "pln": ["(: cnet_isa_1b05d6742b (IsA genus_cattleya monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus ceraste is a kind of reptile genus", "pln": ["(: cnet_isa_2611563108 (IsA genus_ceraste reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus ceratodus is a kind of fish genus", "pln": ["(: cnet_isa_a6cdb58d70 (IsA genus_ceratodus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus ceratosaurus is a kind of reptile genus", "pln": ["(: cnet_isa_2e6d1536bb (IsA genus_ceratosaurus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus ceratozamia is a kind of gymnosperm genus", "pln": ["(: cnet_isa_c70e21ccb5 (IsA genus_ceratozamia gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus chaenactis is a kind of asterid dicot genus", "pln": ["(: cnet_isa_51204b7ef2 (IsA genus_chaenactis asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus chaetodon is a kind of fish genus", "pln": ["(: cnet_isa_2298da145d (IsA genus_chaetodon fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus chimaera is a kind of fish genus", "pln": ["(: cnet_isa_ec46999c38 (IsA genus_chimaera fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus chinchilla is a kind of mammal genus", "pln": ["(: cnet_isa_2c02bed974 (IsA genus_chinchilla mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus chiton is a kind of mollusk genus", "pln": ["(: cnet_isa_58f374b348 (IsA genus_chiton mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus chlamydia is a kind of bacteria genus", "pln": ["(: cnet_isa_5ed713fcba (IsA genus_chlamydia bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus chlorella is a kind of protoctist genus", "pln": ["(: cnet_isa_c2518debe0 (IsA genus_chlorella protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus chlorophyllum is a kind of fungus genus", "pln": ["(: cnet_isa_afffc861b3 (IsA genus_chlorophyllum fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus christella is a kind of fern genus", "pln": ["(: cnet_isa_cbce38349b (IsA genus_christella fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus chrysanthemum is a kind of asterid dicot genus", "pln": ["(: cnet_isa_1e9553777d (IsA genus_chrysanthemum asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus chunga is a kind of bird genus", "pln": ["(: cnet_isa_b393194855 (IsA genus_chunga bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus cicada is a kind of arthropod genus", "pln": ["(: cnet_isa_e52b729e01 (IsA genus_cicada arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus cinchona is a kind of asterid dicot genus", "pln": ["(: cnet_isa_c9725cdba5 (IsA genus_cinchona asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus citrus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_16b9366259 (IsA genus_citrus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus clematis is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_3dbcbffdcf (IsA genus_clematis magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus cleome is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_5eb36de6f4 (IsA genus_cleome dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus clianthus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_ade128cec2 (IsA genus_clianthus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus clintonia is a kind of liliid monocot genus", "pln": ["(: cnet_isa_20ab450e75 (IsA genus_clintonia liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus clostridium is a kind of bacteria genus", "pln": ["(: cnet_isa_7092aaf0ba (IsA genus_clostridium bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus clusia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_16f0812ba3 (IsA genus_clusia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus coccus is a kind of arthropod genus", "pln": ["(: cnet_isa_e563b643cb (IsA genus_coccus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus coelogyne is a kind of monocot genus", "pln": ["(: cnet_isa_ce5931fbde (IsA genus_coelogyne monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus coelophysis is a kind of reptile genus", "pln": ["(: cnet_isa_29ee585390 (IsA genus_coelophysis reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus coleus is a kind of asterid dicot genus", "pln": ["(: cnet_isa_3e0578fb79 (IsA genus_coleus asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus colobus is a kind of mammal genus", "pln": ["(: cnet_isa_dc9d7b6bee (IsA genus_colobus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus columnea is a kind of asterid dicot genus", "pln": ["(: cnet_isa_9e09787d75 (IsA genus_columnea asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus combretum is a kind of dicot genus", "pln": ["(: cnet_isa_01f4e59991 (IsA genus_combretum dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus commelina is a kind of monocot genus", "pln": ["(: cnet_isa_ba6f12cb39 (IsA genus_commelina monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus compsognathus is a kind of reptile genus", "pln": ["(: cnet_isa_193709ead9 (IsA genus_compsognathus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus convolvulus is a kind of dicot genus", "pln": ["(: cnet_isa_4588eefe47 (IsA genus_convolvulus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus coreopsis is a kind of asterid dicot genus", "pln": ["(: cnet_isa_5126e6668f (IsA genus_coreopsis asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus coronilla is a kind of rosid dicot genus", "pln": ["(: cnet_isa_a972d26465 (IsA genus_coronilla rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus corozo is a kind of monocot genus", "pln": ["(: cnet_isa_671a8de25f (IsA genus_corozo monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus corynebacterium is a kind of bacteria genus", "pln": ["(: cnet_isa_43ea67a3ae (IsA genus_corynebacterium bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus coryphantha is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_06952d1a3c (IsA genus_coryphantha caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus corythosaurus is a kind of reptile genus", "pln": ["(: cnet_isa_86b2504a7c (IsA genus_corythosaurus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus coscoroba is a kind of bird genus", "pln": ["(: cnet_isa_b60d331b11 (IsA genus_coscoroba bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus cosmo is a kind of asterid dicot genus", "pln": ["(: cnet_isa_2174288ea4 (IsA genus_cosmo asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus costia is a kind of protoctist genus", "pln": ["(: cnet_isa_b83f314a99 (IsA genus_costia protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus cotinga is a kind of bird genus", "pln": ["(: cnet_isa_64b7941349 (IsA genus_cotinga bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus cotoneaster is a kind of rosid dicot genus", "pln": ["(: cnet_isa_d05352e334 (IsA genus_cotoneaster rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus crocus is a kind of liliid monocot genus", "pln": ["(: cnet_isa_4624c8c21e (IsA genus_crocus liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus crotalaria is a kind of rosid dicot genus", "pln": ["(: cnet_isa_8104828f90 (IsA genus_crotalaria rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus croton is a kind of rosid dicot genus", "pln": ["(: cnet_isa_75c24252a3 (IsA genus_croton rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus cryptocoryne is a kind of monocot genus", "pln": ["(: cnet_isa_d1f1d6f4f3 (IsA genus_cryptocoryne monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus cyclamen is a kind of dicot genus", "pln": ["(: cnet_isa_58ab7f7e06 (IsA genus_cyclamen dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus cyclop is a kind of arthropod genus", "pln": ["(: cnet_isa_c921c44b5d (IsA genus_cyclop arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus cymbidium is a kind of monocot genus", "pln": ["(: cnet_isa_fa3155a203 (IsA genus_cymbidium monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus cynancum is a kind of dicot genus", "pln": ["(: cnet_isa_b680f4eaa3 (IsA genus_cynancum dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus cyrilla is a kind of dicot genus", "pln": ["(: cnet_isa_d86773b13f (IsA genus_cyrilla dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus dahlia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_088e1342a6 (IsA genus_dahlia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus daphne is a kind of dicot genus", "pln": ["(: cnet_isa_36be2badf2 (IsA genus_daphne dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus daphnia is a kind of arthropod genus", "pln": ["(: cnet_isa_52209cff2c (IsA genus_daphnia arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus davallia is a kind of fern genus", "pln": ["(: cnet_isa_85552208ae (IsA genus_davallia fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus deinocheirus is a kind of reptile genus", "pln": ["(: cnet_isa_8cae75a36e (IsA genus_deinocheirus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus deinonychus is a kind of reptile genus", "pln": ["(: cnet_isa_8b74149734 (IsA genus_deinonychus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus delphinium is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_b56741785e (IsA genus_delphinium magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus dendrobium is a kind of monocot genus", "pln": ["(: cnet_isa_e4838029b5 (IsA genus_dendrobium monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus derris is a kind of rosid dicot genus", "pln": ["(: cnet_isa_e079b79926 (IsA genus_derris rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus deutzia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_6faf938faa (IsA genus_deutzia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus diapensia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_b0ca584cac (IsA genus_diapensia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus diapheromera is a kind of arthropod genus", "pln": ["(: cnet_isa_16e40f2a84 (IsA genus_diapheromera arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus dicamptodon is a kind of amphibian genus", "pln": ["(: cnet_isa_38aee4c13e (IsA genus_dicamptodon amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus dichondra is a kind of dicot genus", "pln": ["(: cnet_isa_4a734d052f (IsA genus_dichondra dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus dictostylium is a kind of fungus genus", "pln": ["(: cnet_isa_9d4bf13110 (IsA genus_dictostylium fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus difflugia is a kind of protoctist genus", "pln": ["(: cnet_isa_9bab3d1a7d (IsA genus_difflugia protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus digitalis is a kind of asterid dicot genus", "pln": ["(: cnet_isa_e0e3907e74 (IsA genus_digitalis asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus dillenia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_0b31c5080c (IsA genus_dillenia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus dimetrodon is a kind of reptile genus", "pln": ["(: cnet_isa_30e8917816 (IsA genus_dimetrodon reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus diomedea is a kind of bird genus", "pln": ["(: cnet_isa_f6dbb771b4 (IsA genus_diomedea bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus dioon is a kind of gymnosperm genus", "pln": ["(: cnet_isa_3768f5cdb9 (IsA genus_dioon gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus diplococcus is a kind of bacteria genus", "pln": ["(: cnet_isa_bcf9e8ca06 (IsA genus_diplococcus bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus diplodocus is a kind of reptile genus", "pln": ["(: cnet_isa_fa03ea4cd6 (IsA genus_diplodocus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus disa is a kind of monocot genus", "pln": ["(: cnet_isa_4b2bba73dc (IsA genus_disa monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus discina is a kind of fungus genus", "pln": ["(: cnet_isa_75fa9db190 (IsA genus_discina fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus doliolum is a kind of chordate genus", "pln": ["(: cnet_isa_b1eee74f45 (IsA genus_doliolum chordate_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus dombeya is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_95558d9b31 (IsA genus_dombeya dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus doodia is a kind of fern genus", "pln": ["(: cnet_isa_98ef0d8d33 (IsA genus_doodia fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus draba is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_68080ca8ea (IsA genus_draba dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus dracaena is a kind of liliid monocot genus", "pln": ["(: cnet_isa_844e80dcb8 (IsA genus_dracaena liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus dracontium is a kind of monocot genus", "pln": ["(: cnet_isa_8ffbcae059 (IsA genus_dracontium monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus drosophila is a kind of arthropod genus", "pln": ["(: cnet_isa_62fedd9c60 (IsA genus_drosophila arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus drypis is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_e0593e865d (IsA genus_drypis caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus dugong is a kind of mammal genus", "pln": ["(: cnet_isa_3b6ecf1b51 (IsA genus_dugong mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus echinocactus is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_614581c5e1 (IsA genus_echinocactus caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus echinococcus is a kind of worm genus", "pln": ["(: cnet_isa_c200560a85 (IsA genus_echinococcus worm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus edaphosaurus is a kind of reptile genus", "pln": ["(: cnet_isa_6b0f71126a (IsA genus_edaphosaurus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus edmontosaurus is a kind of reptile genus", "pln": ["(: cnet_isa_517021eb45 (IsA genus_edmontosaurus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus eimeria is a kind of protoctist genus", "pln": ["(: cnet_isa_653d68bc96 (IsA genus_eimeria protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus elsholtzia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_0f693f723f (IsA genus_elsholtzia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus encephalarto is a kind of gymnosperm genus", "pln": ["(: cnet_isa_6060fbfa3c (IsA genus_encephalarto gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus engelmannia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_e0ed324add (IsA genus_engelmannia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus eoraptor is a kind of reptile genus", "pln": ["(: cnet_isa_9f4ddef2b3 (IsA genus_eoraptor reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus epacris is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_3a90f5b4bc (IsA genus_epacris dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus ephedra is a kind of gymnosperm genus", "pln": ["(: cnet_isa_78523ccec1 (IsA genus_ephedra gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus epiphyllum is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_485398abd1 (IsA genus_epiphyllum caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus episcia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_076452bb63 (IsA genus_episcia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus eptatretus is a kind of fish genus", "pln": ["(: cnet_isa_5d43a0f22e (IsA genus_eptatretus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus erechtite is a kind of asterid dicot genus", "pln": ["(: cnet_isa_59be4721bd (IsA genus_erechtite asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus erica is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_3d3b1264a4 (IsA genus_erica dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus eriogonum is a kind of dicot genus", "pln": ["(: cnet_isa_96a4c5fd9b (IsA genus_eriogonum dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus erwinia is a kind of bacteria genus", "pln": ["(: cnet_isa_dd56d9ffd4 (IsA genus_erwinia bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus erythrina is a kind of rosid dicot genus", "pln": ["(: cnet_isa_1f07bd1a3f (IsA genus_erythrina rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus escherichia is a kind of bacteria genus", "pln": ["(: cnet_isa_1ba184f056 (IsA genus_escherichia bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus eucalyptus is a kind of dicot genus", "pln": ["(: cnet_isa_849de1aeae (IsA genus_eucalyptus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus euglena is a kind of protoctist genus", "pln": ["(: cnet_isa_fa3466e61b (IsA genus_euglena protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus feijoa is a kind of dicot genus", "pln": ["(: cnet_isa_42b80b0749 (IsA genus_feijoa dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus filago is a kind of asterid dicot genus", "pln": ["(: cnet_isa_cc8cb2dc95 (IsA genus_filago asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus forestiera is a kind of dicot genus", "pln": ["(: cnet_isa_b2dad16205 (IsA genus_forestiera dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus forsythia is a kind of dicot genus", "pln": ["(: cnet_isa_c2a2e2515a (IsA genus_forsythia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus fothergilla is a kind of plant genus", "pln": ["(: cnet_isa_8c3dd9b9de (IsA genus_fothergilla plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus freesia is a kind of liliid monocot genus", "pln": ["(: cnet_isa_a77ee65595 (IsA genus_freesia liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus fuchsia is a kind of dicot genus", "pln": ["(: cnet_isa_1e1a80b2af (IsA genus_fuchsia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus fucus is a kind of protoctist genus", "pln": ["(: cnet_isa_fbc866cbbd (IsA genus_fucus protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus fusarium is a kind of fungus genus", "pln": ["(: cnet_isa_1e7d4bde24 (IsA genus_fusarium fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus gaillardia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_14c1bd75ab (IsA genus_gaillardia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus galago is a kind of mammal genus", "pln": ["(: cnet_isa_cad042fffc (IsA genus_galago mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus galax is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_075bdb4f10 (IsA genus_galax dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus galictis is a kind of mammal genus", "pln": ["(: cnet_isa_3bcdb78ea9 (IsA genus_galictis mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus gardenia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_5a52a05357 (IsA genus_gardenia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus gastrolobium is a kind of rosid dicot genus", "pln": ["(: cnet_isa_650ad2c8c3 (IsA genus_gastrolobium rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus gazania is a kind of asterid dicot genus", "pln": ["(: cnet_isa_496d08d16a (IsA genus_gazania asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus genipa is a kind of asterid dicot genus", "pln": ["(: cnet_isa_8d9f48c46a (IsA genus_genipa asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus genlisea is a kind of plant genus", "pln": ["(: cnet_isa_5991700b5f (IsA genus_genlisea plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus geranium is a kind of plant genus", "pln": ["(: cnet_isa_53c163520b (IsA genus_geranium plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus gerardia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_75d141e963 (IsA genus_gerardia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus gesneria is a kind of asterid dicot genus", "pln": ["(: cnet_isa_042d3e4ef3 (IsA genus_gesneria asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus giardia is a kind of protoctist genus", "pln": ["(: cnet_isa_77c4002170 (IsA genus_giardia protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus ginkgo is a kind of gymnosperm genus", "pln": ["(: cnet_isa_a46281b4d2 (IsA genus_ginkgo gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus gladiolus is a kind of liliid monocot genus", "pln": ["(: cnet_isa_608c5f5a36 (IsA genus_gladiolus liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus gliricidia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_f53bb97571 (IsA genus_gliricidia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus globigerina is a kind of protoctist genus", "pln": ["(: cnet_isa_89541b37ef (IsA genus_globigerina protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus gloriosa is a kind of liliid monocot genus", "pln": ["(: cnet_isa_dc2bb23d0f (IsA genus_gloriosa liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus glossina is a kind of arthropod genus", "pln": ["(: cnet_isa_00436fda5d (IsA genus_glossina arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus gloxinia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_436ed54873 (IsA genus_gloxinia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus gnetum is a kind of gymnosperm genus", "pln": ["(: cnet_isa_6a5c32802b (IsA genus_gnetum gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus gorilla is a kind of mammal genus", "pln": ["(: cnet_isa_7647c21b55 (IsA genus_gorilla mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus grampus is a kind of mammal genus", "pln": ["(: cnet_isa_4fed3d6d5f (IsA genus_grampus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus grevillea is a kind of dicot genus", "pln": ["(: cnet_isa_a6bd29966c (IsA genus_grevillea dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus grison is a kind of mammal genus", "pln": ["(: cnet_isa_a50495a86d (IsA genus_grison mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus gyromitra is a kind of fungus genus", "pln": ["(: cnet_isa_78388c77ee (IsA genus_gyromitra fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus halogeton is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_1e987eef8a (IsA genus_halogeton caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus hamelia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_4006196f9e (IsA genus_hamelia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus harpullia is a kind of dicot genus", "pln": ["(: cnet_isa_fb9f58cb89 (IsA genus_harpullia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus helianthemum is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_cfc9d20b49 (IsA genus_helianthemum dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus helianthus is a kind of asterid dicot genus", "pln": ["(: cnet_isa_b65a142a12 (IsA genus_helianthus asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus heliophila is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_64d13a698a (IsA genus_heliophila dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus heliopsis is a kind of asterid dicot genus", "pln": ["(: cnet_isa_e92fa09a5f (IsA genus_heliopsis asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus helvella is a kind of fungus genus", "pln": ["(: cnet_isa_0c8fd61c76 (IsA genus_helvella fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus hepatica is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_0d6e04b561 (IsA genus_hepatica magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus herrerasaurus is a kind of reptile genus", "pln": ["(: cnet_isa_f95a67611e (IsA genus_herrerasaurus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus hibiscus is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_5a8ef4f68a (IsA genus_hibiscus dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus hippeastrum is a kind of liliid monocot genus", "pln": ["(: cnet_isa_da342b4116 (IsA genus_hippeastrum liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus hippopotamus is a kind of mammal genus", "pln": ["(: cnet_isa_4f37a0d388 (IsA genus_hippopotamus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus homo is a kind of mammal genus", "pln": ["(: cnet_isa_f55f9a45d6 (IsA genus_homo mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus hovea is a kind of rosid dicot genus", "pln": ["(: cnet_isa_7ceb285bab (IsA genus_hovea rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus hoya is a kind of dicot genus", "pln": ["(: cnet_isa_1f32370900 (IsA genus_hoya dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus hyacinthus is a kind of liliid monocot genus", "pln": ["(: cnet_isa_cf5b8178a0 (IsA genus_hyacinthus liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus hyaena is a kind of mammal genus", "pln": ["(: cnet_isa_16d723f64a (IsA genus_hyaena mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus hydra is a kind of coelenterate genus", "pln": ["(: cnet_isa_049cfe2364 (IsA genus_hydra coelenterate_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus hydrangea is a kind of rosid dicot genus", "pln": ["(: cnet_isa_3951972a44 (IsA genus_hydrangea rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus hydrilla is a kind of monocot genus", "pln": ["(: cnet_isa_aee5693939 (IsA genus_hydrilla monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus ibero mesornis is a kind of bird genus", "pln": ["(: cnet_isa_342cd091f4 (IsA genus_ibero_mesornis bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus ibis is a kind of bird genus", "pln": ["(: cnet_isa_5d0ed79a57 (IsA genus_ibis bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus ichthyosaurus is a kind of reptile genus", "pln": ["(: cnet_isa_d26324d331 (IsA genus_ichthyosaurus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus ichthyostega is a kind of amphibian genus", "pln": ["(: cnet_isa_9ba038626f (IsA genus_ichthyostega amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus idesia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_62bdcabe8a (IsA genus_idesia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus iguana is a kind of reptile genus", "pln": ["(: cnet_isa_b345a31117 (IsA genus_iguana reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus iguanodon is a kind of reptile genus", "pln": ["(: cnet_isa_acd888cea9 (IsA genus_iguanodon reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus impatien is a kind of rosid dicot genus", "pln": ["(: cnet_isa_55b226c458 (IsA genus_impatien rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus indri is a kind of mammal genus", "pln": ["(: cnet_isa_24e609fbd4 (IsA genus_indri mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus inga is a kind of rosid dicot genus", "pln": ["(: cnet_isa_2f83871cb9 (IsA genus_inga rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus inula is a kind of asterid dicot genus", "pln": ["(: cnet_isa_902f6d7aa2 (IsA genus_inula asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus iris is a kind of iridaceae", "pln": ["(: cnet_isa_494013319c (IsA genus_iris iridaceae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus iris is a kind of liliid monocot genus", "pln": ["(: cnet_isa_6a7f78ae3e (IsA genus_iris liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus iva is a kind of asterid dicot genus", "pln": ["(: cnet_isa_5bc5695702 (IsA genus_iva asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus jabiru is a kind of bird genus", "pln": ["(: cnet_isa_5f71f344f8 (IsA genus_jabiru bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus junco is a kind of bird genus", "pln": ["(: cnet_isa_a8b279888f (IsA genus_junco bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus kalmia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_701383fb92 (IsA genus_kalmia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus keteleeria is a kind of gymnosperm genus", "pln": ["(: cnet_isa_db6e1f53d7 (IsA genus_keteleeria gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus klebsiella is a kind of bacteria genus", "pln": ["(: cnet_isa_c27cc9390c (IsA genus_klebsiella bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus kniphofia is a kind of liliid monocot genus", "pln": ["(: cnet_isa_6a4ac07d2d (IsA genus_kniphofia liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus kohleria is a kind of asterid dicot genus", "pln": ["(: cnet_isa_53e527e36c (IsA genus_kohleria asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus krigia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_6ca90f672d (IsA genus_krigia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus lactobacillus is a kind of bacteria genus", "pln": ["(: cnet_isa_ea3571f1bf (IsA genus_lactobacillus bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus laelia is a kind of monocot genus", "pln": ["(: cnet_isa_8497a9d892 (IsA genus_laelia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus lansium is a kind of rosid dicot genus", "pln": ["(: cnet_isa_696ed69472 (IsA genus_lansium rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus late is a kind of fish genus", "pln": ["(: cnet_isa_27b456f4c3 (IsA genus_late fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus lecanopteris is a kind of fern genus", "pln": ["(: cnet_isa_4fea5f60e7 (IsA genus_lecanopteris fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus lecanora is a kind of fungus genus", "pln": ["(: cnet_isa_b8de020eda (IsA genus_lecanora fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus leipoa is a kind of bird genus", "pln": ["(: cnet_isa_175e9421a4 (IsA genus_leipoa bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus lemur is a kind of mammal genus", "pln": ["(: cnet_isa_6f18bcfc7d (IsA genus_lemur mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus lepidobotry is a kind of rosid dicot genus", "pln": ["(: cnet_isa_378a2b5c7a (IsA genus_lepidobotry rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus lepiota is a kind of fungus genus", "pln": ["(: cnet_isa_806aa70114 (IsA genus_lepiota fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus leptospira is a kind of bacteria genus", "pln": ["(: cnet_isa_7c5fa0ee76 (IsA genus_leptospira bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus lespedeza is a kind of rosid dicot genus", "pln": ["(: cnet_isa_597396775c (IsA genus_lespedeza rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus leucocytozoon is a kind of protoctist genus", "pln": ["(: cnet_isa_725f0661bd (IsA genus_leucocytozoon protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus leucothoe is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_54ffc6eba9 (IsA genus_leucothoe dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus liparis is a kind of monocot genus", "pln": ["(: cnet_isa_d7699c60e6 (IsA genus_liparis monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus liquidambar is a kind of plant genus", "pln": ["(: cnet_isa_84dcd1f1d6 (IsA genus_liquidambar plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus listeria is a kind of bacteria genus", "pln": ["(: cnet_isa_aa972c81f6 (IsA genus_listeria bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus litchi is a kind of dicot genus", "pln": ["(: cnet_isa_d24a1a1b1b (IsA genus_litchi dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus lithop is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_aaf55851e5 (IsA genus_lithop caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus loasa is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_7a7667fa46 (IsA genus_loasa dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus lobelia is a kind of dicot genus", "pln": ["(: cnet_isa_1505d18f98 (IsA genus_lobelia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus loligo is a kind of mollusk genus", "pln": ["(: cnet_isa_66b033b691 (IsA genus_loligo mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus lomatia is a kind of dicot genus", "pln": ["(: cnet_isa_8fe71157e6 (IsA genus_lomatia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus loris is a kind of mammal genus", "pln": ["(: cnet_isa_f181b956a7 (IsA genus_loris mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus luffa is a kind of dicot genus", "pln": ["(: cnet_isa_22ca900892 (IsA genus_luffa dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus lychnis is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_2298459b27 (IsA genus_lychnis caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus lynx is a kind of mammal genus", "pln": ["(: cnet_isa_4a92be32c9 (IsA genus_lynx mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus macadamia is a kind of dicot genus", "pln": ["(: cnet_isa_b70336c747 (IsA genus_macadamia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus macrotus is a kind of mammal genus", "pln": ["(: cnet_isa_2ca09289a9 (IsA genus_macrotus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus macrozamia is a kind of gymnosperm genus", "pln": ["(: cnet_isa_e9634c1df1 (IsA genus_macrozamia gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus magnolia is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_badb25e0fc (IsA genus_magnolia magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus malope is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_652f4510ce (IsA genus_malope dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus mammillaria is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_11415d544e (IsA genus_mammillaria caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus manta is a kind of fish genus", "pln": ["(: cnet_isa_5f4cd150ec (IsA genus_manta fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus mantis is a kind of arthropod genus", "pln": ["(: cnet_isa_a4f6f248d5 (IsA genus_mantis arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus maranta is a kind of monocot genus", "pln": ["(: cnet_isa_8bd9851479 (IsA genus_maranta monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus martynia is a kind of plant genus", "pln": ["(: cnet_isa_7795b98fb7 (IsA genus_martynia plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus masdevallia is a kind of monocot genus", "pln": ["(: cnet_isa_377ee4fb56 (IsA genus_masdevallia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus maxillaria is a kind of monocot genus", "pln": ["(: cnet_isa_e559692758 (IsA genus_maxillaria monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus megalosaurus is a kind of reptile genus", "pln": ["(: cnet_isa_049d571280 (IsA genus_megalosaurus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus melilotus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_66643aacc2 (IsA genus_melilotus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus mesohippus is a kind of mammal genus", "pln": ["(: cnet_isa_d52500080a (IsA genus_mesohippus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus metasequoia is a kind of gymnosperm genus", "pln": ["(: cnet_isa_9984f31c3d (IsA genus_metasequoia gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus millettia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_b8cb8436a5 (IsA genus_millettia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus mimosa is a kind of rosid dicot genus", "pln": ["(: cnet_isa_7f12b01a65 (IsA genus_mimosa rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus mola is a kind of fish genus", "pln": ["(: cnet_isa_7264e87a1f (IsA genus_mola fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus moloch is a kind of reptile genus", "pln": ["(: cnet_isa_496e51fdaa (IsA genus_moloch reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus monarda is a kind of asterid dicot genus", "pln": ["(: cnet_isa_1e0059adc6 (IsA genus_monarda asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus monilia is a kind of fungus genus", "pln": ["(: cnet_isa_eef8c979cd (IsA genus_monilia fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus mononychus is a kind of reptile genus", "pln": ["(: cnet_isa_134ba76060 (IsA genus_mononychus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus monstera is a kind of monocot genus", "pln": ["(: cnet_isa_6870c95305 (IsA genus_monstera monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus montezuma is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_ff07219f22 (IsA genus_montezuma dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus mucor is a kind of fungus genus", "pln": ["(: cnet_isa_adbaade6d8 (IsA genus_mucor fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus mucuna is a kind of rosid dicot genus", "pln": ["(: cnet_isa_bd801bd81d (IsA genus_mucuna rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus mutisia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_e6ef33222f (IsA genus_mutisia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus mycobacterium is a kind of bacteria genus", "pln": ["(: cnet_isa_a3fd85484a (IsA genus_mycobacterium bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus mycoplasma is a kind of bacteria genus", "pln": ["(: cnet_isa_3b9a377e94 (IsA genus_mycoplasma bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus mylodon is a kind of mammal genus", "pln": ["(: cnet_isa_03452b5d44 (IsA genus_mylodon mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus nanomia is a kind of coelenterate genus", "pln": ["(: cnet_isa_7d4922093c (IsA genus_nanomia coelenterate_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus narcissus is a kind of liliid monocot genus", "pln": ["(: cnet_isa_432cafcfe5 (IsA genus_narcissus liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus nautilus is a kind of mollusk genus", "pln": ["(: cnet_isa_3849af007a (IsA genus_nautilus mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus nemophila is a kind of asterid dicot genus", "pln": ["(: cnet_isa_64b63429d3 (IsA genus_nemophila asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus nephthytis is a kind of monocot genus", "pln": ["(: cnet_isa_b1d1dca8f6 (IsA genus_nephthytis monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus nerita is a kind of mollusk genus", "pln": ["(: cnet_isa_854865d275 (IsA genus_nerita mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus neritina is a kind of mollusk genus", "pln": ["(: cnet_isa_60e1319ecc (IsA genus_neritina mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus nierembergia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_d8fbb28eda (IsA genus_nierembergia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus nigella is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_d432f86c2b (IsA genus_nigella magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus noctiluca is a kind of protoctist genus", "pln": ["(: cnet_isa_c32d5e06e3 (IsA genus_noctiluca protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus nostoc is a kind of bacteria genus", "pln": ["(: cnet_isa_4da0285151 (IsA genus_nostoc bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus nothosaurus is a kind of reptile genus", "pln": ["(: cnet_isa_ad829cf50b (IsA genus_nothosaurus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus notornis is a kind of bird genus", "pln": ["(: cnet_isa_03ba493492 (IsA genus_notornis bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus octopus is a kind of mollusk genus", "pln": ["(: cnet_isa_2a4ce020da (IsA genus_octopus mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus odontoglossum is a kind of monocot genus", "pln": ["(: cnet_isa_37b96ef0b0 (IsA genus_odontoglossum monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus ommastrephe is a kind of mollusk genus", "pln": ["(: cnet_isa_fd55e90da4 (IsA genus_ommastrephe mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus oncidium is a kind of monocot genus", "pln": ["(: cnet_isa_52087e3031 (IsA genus_oncidium monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus oncorhynchus is a kind of fish genus", "pln": ["(: cnet_isa_a3e63fb9a8 (IsA genus_oncorhynchus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus orchis is a kind of monocot genus", "pln": ["(: cnet_isa_1ddc8eade1 (IsA genus_orchis monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus origanum is a kind of asterid dicot genus", "pln": ["(: cnet_isa_ec8d79bb37 (IsA genus_origanum asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus oryx is a kind of mammal genus", "pln": ["(: cnet_isa_54eda0203c (IsA genus_oryx mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus osmunda is a kind of fern genus", "pln": ["(: cnet_isa_bcdb629d47 (IsA genus_osmunda fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus othonna is a kind of asterid dicot genus", "pln": ["(: cnet_isa_9669305162 (IsA genus_othonna asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus oxalis is a kind of rosid dicot genus", "pln": ["(: cnet_isa_dee23570f5 (IsA genus_oxalis rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus pachysandra is a kind of dicot genus", "pln": ["(: cnet_isa_8c011037e5 (IsA genus_pachysandra dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus palometa is a kind of fish genus", "pln": ["(: cnet_isa_1f03c0e0d6 (IsA genus_palometa fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus pandanus is a kind of monocot genus", "pln": ["(: cnet_isa_0cf7c30687 (IsA genus_pandanus monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus paramecium is a kind of protoctist genus", "pln": ["(: cnet_isa_f944dbeb4c (IsA genus_paramecium protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus parnassia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_920a806103 (IsA genus_parnassia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus paspalum is a kind of monocot genus", "pln": ["(: cnet_isa_cb62853e3b (IsA genus_paspalum monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus pavonia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_02dc35730c (IsA genus_pavonia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus pecopteris is a kind of fern genus", "pln": ["(: cnet_isa_84e34c0169 (IsA genus_pecopteris fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus pecten is a kind of mollusk genus", "pln": ["(: cnet_isa_40b7918af6 (IsA genus_pecten mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus peperomia is a kind of dicot genus", "pln": ["(: cnet_isa_f8553d6739 (IsA genus_peperomia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus peripatus is a kind of arthropod genus", "pln": ["(: cnet_isa_3c8f07a092 (IsA genus_peripatus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus petunia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_ede466e8d1 (IsA genus_petunia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus phacelia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_e6f2b37f18 (IsA genus_phacelia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus phaius is a kind of monocot genus", "pln": ["(: cnet_isa_3902ce1177 (IsA genus_phaius monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus phalanger is a kind of mammal genus", "pln": ["(: cnet_isa_1cdd1f716b (IsA genus_phalanger mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus phenacomy is a kind of mammal genus", "pln": ["(: cnet_isa_c651881b55 (IsA genus_phenacomy mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus philadelphus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_9f10e80249 (IsA genus_philadelphus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus philodendron is a kind of monocot genus", "pln": ["(: cnet_isa_07a0d7f28b (IsA genus_philodendron monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus phlomis is a kind of asterid dicot genus", "pln": ["(: cnet_isa_10f06faf0c (IsA genus_phlomis asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus phlox is a kind of plant genus", "pln": ["(: cnet_isa_65e1d38230 (IsA genus_phlox plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus phocoena is a kind of mammal genus", "pln": ["(: cnet_isa_2cf6305147 (IsA genus_phocoena mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus physa is a kind of mollusk genus", "pln": ["(: cnet_isa_c5ecab38fc (IsA genus_physa mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus physostegia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_5a2015b02b (IsA genus_physostegia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus pisanosaurus is a kind of reptile genus", "pln": ["(: cnet_isa_a6fd62e824 (IsA genus_pisanosaurus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus pistia is a kind of monocot genus", "pln": ["(: cnet_isa_53a0726db6 (IsA genus_pistia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus pitta is a kind of bird genus", "pln": ["(: cnet_isa_c2a100b59d (IsA genus_pitta bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus plasmodium is a kind of protoctist genus", "pln": ["(: cnet_isa_99952c3b8e (IsA genus_plasmodium protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus plectranthus is a kind of asterid dicot genus", "pln": ["(: cnet_isa_2e2dc382e5 (IsA genus_plectranthus asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus plesiosaurus is a kind of reptile genus", "pln": ["(: cnet_isa_1634b48587 (IsA genus_plesiosaurus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus pleurothallis is a kind of monocot genus", "pln": ["(: cnet_isa_3b12bedd62 (IsA genus_pleurothallis monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus plumbago is a kind of dicot genus", "pln": ["(: cnet_isa_7235493d3b (IsA genus_plumbago dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus pogonia is a kind of monocot genus", "pln": ["(: cnet_isa_fb69fac37c (IsA genus_pogonia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus polemonium is a kind of asterid dicot genus", "pln": ["(: cnet_isa_d022fa8e25 (IsA genus_polemonium asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus portulaca is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_dbc465c8a7 (IsA genus_portulaca caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus potamogale is a kind of mammal genus", "pln": ["(: cnet_isa_c11d1f4504 (IsA genus_potamogale mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus primula is a kind of dicot genus", "pln": ["(: cnet_isa_da2a9acfb2 (IsA genus_primula dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus proconsul is a kind of mammal genus", "pln": ["(: cnet_isa_1f9a9d4e06 (IsA genus_proconsul mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus protea is a kind of dicot genus", "pln": ["(: cnet_isa_67004064ca (IsA genus_protea dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus protoavis is a kind of bird genus", "pln": ["(: cnet_isa_3c8b77651a (IsA genus_protoavis bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus protoceratop is a kind of reptile genus", "pln": ["(: cnet_isa_65d0b08e5c (IsA genus_protoceratop reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus protohippus is a kind of mammal genus", "pln": ["(: cnet_isa_d3d9bd4601 (IsA genus_protohippus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus psilophyton is a kind of fern genus", "pln": ["(: cnet_isa_df5b1b6ace (IsA genus_psilophyton fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus psittacosaurus is a kind of reptile genus", "pln": ["(: cnet_isa_4dca0a19e8 (IsA genus_psittacosaurus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus pteropogon is a kind of asterid dicot genus", "pln": ["(: cnet_isa_716d6da21e (IsA genus_pteropogon asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus pyracantha is a kind of rosid dicot genus", "pln": ["(: cnet_isa_9e5b86ec82 (IsA genus_pyracantha rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus pyrola is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_983f3389d5 (IsA genus_pyrola dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus pyrrhuloxia is a kind of bird genus", "pln": ["(: cnet_isa_6fb9b1b925 (IsA genus_pyrrhuloxia bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus pythium is a kind of fungus genus", "pln": ["(: cnet_isa_903125a820 (IsA genus_pythium fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus python is a kind of reptile genus", "pln": ["(: cnet_isa_f9f1f3fc01 (IsA genus_python reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus quassia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_5227e56c18 (IsA genus_quassia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "genus rhinoceros is a kind of mammal genus", "pln": ["(: cnet_isa_abe73a2f1d (IsA genus_rhinoceros mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus rauwolfia is a kind of dicot genus", "pln": ["(: cnet_isa_d237f4a0c2 (IsA genus_rauwolfia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus ravenala is a kind of monocot genus", "pln": ["(: cnet_isa_0150b2fa88 (IsA genus_ravenala monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus regnellidium is a kind of fern genus", "pln": ["(: cnet_isa_b55bbf9a13 (IsA genus_regnellidium fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus reseda is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_c07a00fca7 (IsA genus_reseda dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus rhea is a kind of bird genus", "pln": ["(: cnet_isa_80c422b4a4 (IsA genus_rhea bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus rhinocero is a kind of mammal genus", "pln": ["(: cnet_isa_7138175b20 (IsA genus_rhinocero mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus rhizoctinia is a kind of fungus genus", "pln": ["(: cnet_isa_b0a51eb828 (IsA genus_rhizoctinia fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus rhizopus is a kind of fungus genus", "pln": ["(: cnet_isa_bf6d50a8e4 (IsA genus_rhizopus fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus rhodanthe is a kind of asterid dicot genus", "pln": ["(: cnet_isa_8e8b292b8e (IsA genus_rhodanthe asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus rhododendron is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_2e7c1cdd2e (IsA genus_rhododendron dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus rickettsia is a kind of bacteria genus", "pln": ["(: cnet_isa_108dcf527f (IsA genus_rickettsia bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus rivulus is a kind of fish genus", "pln": ["(: cnet_isa_976e5bd3ab (IsA genus_rivulus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus roccella is a kind of fungus genus", "pln": ["(: cnet_isa_8b206a69ea (IsA genus_roccella fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus roridula is a kind of dicot genus", "pln": ["(: cnet_isa_7856326a90 (IsA genus_roridula dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus sabbatia is a kind of dicot genus", "pln": ["(: cnet_isa_3abe083618 (IsA genus_sabbatia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus sagitta is a kind of worm genus", "pln": ["(: cnet_isa_9f35129be4 (IsA genus_sagitta worm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus saiga is a kind of mammal genus", "pln": ["(: cnet_isa_c441294a2a (IsA genus_saiga mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus salmonella is a kind of bacteria genus", "pln": ["(: cnet_isa_115827f78d (IsA genus_salmonella bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus salpa is a kind of chordate genus", "pln": ["(: cnet_isa_0ef691fa36 (IsA genus_salpa chordate_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus salpiglossis is a kind of asterid dicot genus", "pln": ["(: cnet_isa_bc5eab4d81 (IsA genus_salpiglossis asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus salvia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_9d95802a84 (IsA genus_salvia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus sansevieria is a kind of liliid monocot genus", "pln": ["(: cnet_isa_93c9217649 (IsA genus_sansevieria liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus sargassum is a kind of protoctist genus", "pln": ["(: cnet_isa_ab1168dca1 (IsA genus_sargassum protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus sassafra is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_3ea7d4517e (IsA genus_sassafra magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus scabiosa is a kind of asterid dicot genus", "pln": ["(: cnet_isa_6d01cf5fc6 (IsA genus_scabiosa asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus scarabaeus is a kind of arthropod genus", "pln": ["(: cnet_isa_2d7ae9d136 (IsA genus_scarabaeus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus schizanthus is a kind of asterid dicot genus", "pln": ["(: cnet_isa_450ed9fba4 (IsA genus_schizanthus asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus schizopetalon is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_1a9343a8e6 (IsA genus_schizopetalon dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus sciara is a kind of arthropod genus", "pln": ["(: cnet_isa_84aced5b59 (IsA genus_sciara arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus scilla is a kind of liliid monocot genus", "pln": ["(: cnet_isa_4e4a28f867 (IsA genus_scilla liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus scleropage is a kind of fish genus", "pln": ["(: cnet_isa_7d7c5b087a (IsA genus_scleropage fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus sclerotinia is a kind of fungus genus", "pln": ["(: cnet_isa_cdb3ecf4a6 (IsA genus_sclerotinia fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus scorzonera is a kind of asterid dicot genus", "pln": ["(: cnet_isa_bde3d2495e (IsA genus_scorzonera asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus sedum is a kind of plant genus", "pln": ["(: cnet_isa_20d371dd74 (IsA genus_sedum plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus senna is a kind of rosid dicot genus", "pln": ["(: cnet_isa_cfdf005c66 (IsA genus_senna rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus sequoia is a kind of gymnosperm genus", "pln": ["(: cnet_isa_7c1f327d25 (IsA genus_sequoia gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus serratia is a kind of bacteria genus", "pln": ["(: cnet_isa_d966392fd3 (IsA genus_serratia bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus sesbania is a kind of rosid dicot genus", "pln": ["(: cnet_isa_62935e296d (IsA genus_sesbania rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus shigella is a kind of bacteria genus", "pln": ["(: cnet_isa_20fd9fef6b (IsA genus_shigella bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus shortia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_1cf1d85687 (IsA genus_shortia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus silene is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_fb643469c1 (IsA genus_silene caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus sinornis is a kind of bird genus", "pln": ["(: cnet_isa_3ba58580cc (IsA genus_sinornis bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus siren is a kind of amphibian genus", "pln": ["(: cnet_isa_82aedf3183 (IsA genus_siren amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus sisymbrium is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_50c36cc8e5 (IsA genus_sisymbrium dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus sivapithecus is a kind of mammal genus", "pln": ["(: cnet_isa_90051bec8a (IsA genus_sivapithecus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus sobralia is a kind of monocot genus", "pln": ["(: cnet_isa_74b32b997c (IsA genus_sobralia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus sorghum is a kind of monocot genus", "pln": ["(: cnet_isa_7f5e30f624 (IsA genus_sorghum monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus spadella is a kind of worm genus", "pln": ["(: cnet_isa_62c8e112c2 (IsA genus_spadella worm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus spathiphyllum is a kind of monocot genus", "pln": ["(: cnet_isa_2db9d53c8d (IsA genus_spathiphyllum monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus sphagnum is a kind of moss genus", "pln": ["(: cnet_isa_c69f8c9386 (IsA genus_sphagnum moss_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus spirillum is a kind of bacteria genus", "pln": ["(: cnet_isa_e5a42266dd (IsA genus_spirillum bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus spirogyra is a kind of protoctist genus", "pln": ["(: cnet_isa_b19ac1eb3a (IsA genus_spirogyra protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus spirula is a kind of mollusk genus", "pln": ["(: cnet_isa_1a54d8072d (IsA genus_spirula mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus squilla is a kind of arthropod genus", "pln": ["(: cnet_isa_3ca3a4eaf3 (IsA genus_squilla arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus stanhopea is a kind of monocot genus", "pln": ["(: cnet_isa_4d79311eb5 (IsA genus_stanhopea monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus stapelia is a kind of dicot genus", "pln": ["(: cnet_isa_13f19fac5f (IsA genus_stapelia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus staphylococcus is a kind of bacteria genus", "pln": ["(: cnet_isa_45f810c303 (IsA genus_staphylococcus bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus staurikosaurus is a kind of reptile genus", "pln": ["(: cnet_isa_269946b422 (IsA genus_staurikosaurus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus stegosaurus is a kind of reptile genus", "pln": ["(: cnet_isa_ae5e2c46fd (IsA genus_stegosaurus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus stelis is a kind of monocot genus", "pln": ["(: cnet_isa_efaf9305fb (IsA genus_stelis monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus stenopterygius is a kind of reptile genus", "pln": ["(: cnet_isa_269115ee93 (IsA genus_stenopterygius reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus stentor is a kind of protoctist genus", "pln": ["(: cnet_isa_58543b5689 (IsA genus_stentor protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus stephanotis is a kind of dicot genus", "pln": ["(: cnet_isa_f1a49efd5e (IsA genus_stephanotis dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus sterculia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_e09bd08d8a (IsA genus_sterculia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus stevia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_853586f1e5 (IsA genus_stevia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus streptocarpus is a kind of asterid dicot genus", "pln": ["(: cnet_isa_c78b361e38 (IsA genus_streptocarpus asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus streptococcus is a kind of bacteria genus", "pln": ["(: cnet_isa_0efd329d4e (IsA genus_streptococcus bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus streptomyce is a kind of bacteria genus", "pln": ["(: cnet_isa_23db121e01 (IsA genus_streptomyce bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus strophanthus is a kind of dicot genus", "pln": ["(: cnet_isa_16608568a1 (IsA genus_strophanthus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus struthiomimus is a kind of reptile genus", "pln": ["(: cnet_isa_0dd7823dfe (IsA genus_struthiomimus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus styracosaurus is a kind of reptile genus", "pln": ["(: cnet_isa_6c2297b12c (IsA genus_styracosaurus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus styrax is a kind of dicot genus", "pln": ["(: cnet_isa_abdbbae676 (IsA genus_styrax dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus suksdorfia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_fac850db68 (IsA genus_suksdorfia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus taenia is a kind of worm genus", "pln": ["(: cnet_isa_3bff1979d7 (IsA genus_taenia worm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus tamandua is a kind of mammal genus", "pln": ["(: cnet_isa_08e5de787a (IsA genus_tamandua mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus tarpon is a kind of fish genus", "pln": ["(: cnet_isa_f5a80c44c3 (IsA genus_tarpon fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus tenrec is a kind of mammal genus", "pln": ["(: cnet_isa_2f5ff938fb (IsA genus_tenrec mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus teredo is a kind of mollusk genus", "pln": ["(: cnet_isa_4d87f47e8b (IsA genus_teredo mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus tetrahymena is a kind of protoctist genus", "pln": ["(: cnet_isa_4ffa8f7505 (IsA genus_tetrahymena protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus thiobacillus is a kind of bacteria genus", "pln": ["(: cnet_isa_640a5c7d07 (IsA genus_thiobacillus bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus thrip is a kind of arthropod genus", "pln": ["(: cnet_isa_a9afae6a07 (IsA genus_thrip arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus thyrsopteris is a kind of fern genus", "pln": ["(: cnet_isa_a89b7b258a (IsA genus_thyrsopteris fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus tithonia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_555456c07a (IsA genus_tithonia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus tortrix is a kind of arthropod genus", "pln": ["(: cnet_isa_226c1691e8 (IsA genus_tortrix arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus trachodon is a kind of reptile genus", "pln": ["(: cnet_isa_3a92d9b8c3 (IsA genus_trachodon reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus tragopan is a kind of bird genus", "pln": ["(: cnet_isa_040da0741f (IsA genus_tragopan bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus treponema is a kind of bacteria genus", "pln": ["(: cnet_isa_7029979ae5 (IsA genus_treponema bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus triceratop is a kind of reptile genus", "pln": ["(: cnet_isa_b76bcb0519 (IsA genus_triceratop reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus trichodesmium is a kind of bacteria genus", "pln": ["(: cnet_isa_525cc82054 (IsA genus_trichodesmium bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus trichomona is a kind of protoctist genus", "pln": ["(: cnet_isa_dfaefa577e (IsA genus_trichomona protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus trillium is a kind of liliid monocot genus", "pln": ["(: cnet_isa_bb805cb877 (IsA genus_trillium liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus trogon is a kind of bird genus", "pln": ["(: cnet_isa_ebd0d8c319 (IsA genus_trogon bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus turreae is a kind of rosid dicot genus", "pln": ["(: cnet_isa_01130dde76 (IsA genus_turreae rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus tyrannosaurus is a kind of reptile genus", "pln": ["(: cnet_isa_9732cb7e5e (IsA genus_tyrannosaurus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus ursinia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_839cf3ae43 (IsA genus_ursinia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus utahraptor is a kind of reptile genus", "pln": ["(: cnet_isa_d6896e43af (IsA genus_utahraptor reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus vanda is a kind of monocot genus", "pln": ["(: cnet_isa_55c25c96a9 (IsA genus_vanda monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus vanilla is a kind of monocot genus", "pln": ["(: cnet_isa_8494ef40d5 (IsA genus_vanilla monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus velociraptor is a kind of reptile genus", "pln": ["(: cnet_isa_3eb8a098cb (IsA genus_velociraptor reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus verbena is a kind of asterid dicot genus", "pln": ["(: cnet_isa_4a456e7c3c (IsA genus_verbena asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus vernonia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_6400902835 (IsA genus_vernonia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus veronica is a kind of asterid dicot genus", "pln": ["(: cnet_isa_f6a7e51bb9 (IsA genus_veronica asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus verticillium is a kind of fungus genus", "pln": ["(: cnet_isa_a11db6342c (IsA genus_verticillium fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus vibrio is a kind of bacteria genus", "pln": ["(: cnet_isa_b447acdbde (IsA genus_vibrio bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus vireo is a kind of bird genus", "pln": ["(: cnet_isa_d66213e531 (IsA genus_vireo bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus vorticella is a kind of protoctist genus", "pln": ["(: cnet_isa_1a2fc732a7 (IsA genus_vorticella protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus weigela is a kind of asterid dicot genus", "pln": ["(: cnet_isa_9bdf563035 (IsA genus_weigela asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus welwitschia is a kind of gymnosperm genus", "pln": ["(: cnet_isa_c428ed373c (IsA genus_welwitschia gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus wisteria is a kind of rosid dicot genus", "pln": ["(: cnet_isa_d355839a0a (IsA genus_wisteria rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus woodsia is a kind of fern genus", "pln": ["(: cnet_isa_aa7e51dcdb (IsA genus_woodsia fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus wyethia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_665b380825 (IsA genus_wyethia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus xeranthemum is a kind of asterid dicot genus", "pln": ["(: cnet_isa_0473a876f5 (IsA genus_xeranthemum asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus xylosma is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_243599b9e2 (IsA genus_xylosma dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus yucca is a kind of liliid monocot genus", "pln": ["(: cnet_isa_d4adaa5354 (IsA genus_yucca liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus zamia is a kind of gymnosperm genus", "pln": ["(: cnet_isa_f10af12a67 (IsA genus_zamia gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "genus zinnia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_6e2caa2a16 (IsA genus_zinnia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genus zoysia is a kind of monocot genus", "pln": ["(: cnet_isa_d238722ee9 (IsA genus_zoysia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "genyonemus is a kind of fish genus", "pln": ["(: cnet_isa_f33be65329 (IsA genyonemus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geocentric parallax is a kind of parallax", "pln": ["(: cnet_isa_f0bda3b2a2 (IsA geocentric_parallax parallax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geochelone is a kind of reptile genus", "pln": ["(: cnet_isa_ba69f57f30 (IsA geochelone reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geochemistry is a kind of chemistry", "pln": ["(: cnet_isa_e347d6621d (IsA geochemistry chemistry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geococcyx is a kind of bird genus", "pln": ["(: cnet_isa_18ed9d58c4 (IsA geococcyx bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geode is a kind of nodule", "pln": ["(: cnet_isa_08a3d9491e (IsA geode nodule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geodesic is a kind of line", "pln": ["(: cnet_isa_1279aa2191 (IsA geodesic line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geodesic dome is a kind of dome", "pln": ["(: cnet_isa_6fc54b2a93 (IsA geodesic_dome dome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geodesy is a kind of geophysic", "pln": ["(: cnet_isa_b646ab816f (IsA geodesy geophysic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geoduck is a kind of clam", "pln": ["(: cnet_isa_53c79b0af7 (IsA geoduck clam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geoffroea is a kind of rosid dicot genus", "pln": ["(: cnet_isa_369fdde85f (IsA geoffroea rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geogia holly is a kind of holly", "pln": ["(: cnet_isa_dad260751b (IsA geogia_holly holly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geoglossaceae is a kind of fungus family", "pln": ["(: cnet_isa_acd6d4d565 (IsA geoglossaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geoglossum is a kind of fungus genus", "pln": ["(: cnet_isa_febf192c0b (IsA geoglossum fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geographer is a kind of expert", "pln": ["(: cnet_isa_b6748bfe25 (IsA geographer expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geographic point is a kind of point", "pln": ["(: cnet_isa_c00f9484df (IsA geographic_point point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geographical area is a kind of region", "pln": ["(: cnet_isa_a7f2603c1e (IsA geographical_area region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "geographical indication is a kind of name", "pln": ["(: cnet_isa_c38be60e91 (IsA geographical_indication name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geography is a kind of earth science", "pln": ["(: cnet_isa_08ee210d43 (IsA geography earth_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geological formation is a kind of object", "pln": ["(: cnet_isa_6b8e4ca88a (IsA geological_formation object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geological horizon is a kind of horizon", "pln": ["(: cnet_isa_838b321894 (IsA geological_horizon horizon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geological phenomenon is a kind of natural phenomenon", "pln": ["(: cnet_isa_602fd84cd9 (IsA geological_phenomenon natural_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geological process is a kind of natural process", "pln": ["(: cnet_isa_c6d81ee09b (IsA geological_process natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geological time is a kind of time", "pln": ["(: cnet_isa_8ab87cf665 (IsA geological_time time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geologist is a kind of scientist", "pln": ["(: cnet_isa_4a698faa05 (IsA geologist scientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geology is a kind of science", "pln": ["(: cnet_isa_330998a663 (IsA geology science) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geology is a kind of earth science", "pln": ["(: cnet_isa_789c3ee18a (IsA geology earth_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geomagnetic storm is a kind of natural hazard", "pln": ["(: cnet_isa_ee8f278b7c (IsA geomagnetic_storm natural_hazard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geomancer is a kind of diviner", "pln": ["(: cnet_isa_1e4cba8f68 (IsA geomancer diviner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geomancy is a kind of divination", "pln": ["(: cnet_isa_3e5cc2caf8 (IsA geomancy divination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geometer is a kind of mathematician", "pln": ["(: cnet_isa_b2ae4fed3d (IsA geometer mathematician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geometric mean is a kind of mean", "pln": ["(: cnet_isa_a172d81e22 (IsA geometric_mean mean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geometric pace is a kind of linear unit", "pln": ["(: cnet_isa_1b87de287c (IsA geometric_pace linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geometric progression is a kind of progression", "pln": ["(: cnet_isa_49a279fc52 (IsA geometric_progression progression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geometric sery is a kind of sery", "pln": ["(: cnet_isa_466080ec8e (IsA geometric_sery sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geometrid is a kind of moth", "pln": ["(: cnet_isa_9eed0bf878 (IsA geometrid moth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geometridae is a kind of arthropod family", "pln": ["(: cnet_isa_381c81900f (IsA geometridae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geometry is a kind of branch of mathematic", "pln": ["(: cnet_isa_34bc21da0e (IsA geometry branch_of_mathematic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geometry is a kind of math", "pln": ["(: cnet_isa_74dcdf4a63 (IsA geometry math) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geometry is a kind of mathematic", "pln": ["(: cnet_isa_d737500c6d (IsA geometry mathematic) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "geometry is a kind of subject", "pln": ["(: cnet_isa_606ef7c8b5 (IsA geometry subject) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geometry is a kind of pure mathematic", "pln": ["(: cnet_isa_0aca2c8c70 (IsA geometry pure_mathematic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geometry teacher is a kind of math teacher", "pln": ["(: cnet_isa_9a00360888 (IsA geometry_teacher math_teacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geomyidae is a kind of mammal family", "pln": ["(: cnet_isa_57981a6ab8 (IsA geomyidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geomy is a kind of mammal genus", "pln": ["(: cnet_isa_c38ce60b54 (IsA geomy mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geophagy is a kind of pica", "pln": ["(: cnet_isa_0d6cd91232 (IsA geophagy pica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geophilidae is a kind of arthropod family", "pln": ["(: cnet_isa_6f00009a69 (IsA geophilidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geophilomorpha is a kind of animal order", "pln": ["(: cnet_isa_007993e540 (IsA geophilomorpha animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geophilus is a kind of arthropod genus", "pln": ["(: cnet_isa_1fd234e5b5 (IsA geophilus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geophysicist is a kind of geologist", "pln": ["(: cnet_isa_a723203905 (IsA geophysicist geologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geophysic is a kind of geology", "pln": ["(: cnet_isa_8ad139adc0 (IsA geophysic geology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geophyte is a kind of vascular plant", "pln": ["(: cnet_isa_422b77cb2a (IsA geophyte vascular_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geopolitic is a kind of politic", "pln": ["(: cnet_isa_c5d467f8d4 (IsA geopolitic politic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geordie is a kind of english", "pln": ["(: cnet_isa_e8191efd9c (IsA geordie english) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geordie is a kind of english person", "pln": ["(: cnet_isa_caf275f8cb (IsA geordie english_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "george bush is a kind of murder", "pln": ["(: cnet_isa_6cdacc94ea (IsA george_bush murder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "george bush is a kind of president", "pln": ["(: cnet_isa_7aeac27b7d (IsA george_bush president) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "george bush is a kind of right wing president", "pln": ["(: cnet_isa_5e7af42808 (IsA george_bush right_wing_president) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "george frost kennan is a kind of diplomat", "pln": ["(: cnet_isa_0e69c144d0 (IsA george_frost_kennan diplomat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "george washington is a kind of president", "pln": ["(: cnet_isa_1a86a539a9 (IsA george_washington president) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "georgette is a kind of fabric", "pln": ["(: cnet_isa_aa6c3f7025 (IsA georgette fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "georgia is a kind of state", "pln": ["(: cnet_isa_9544b57725 (IsA georgia state) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "georgia is a kind of state with coastline", "pln": ["(: cnet_isa_9ba0905219 (IsA georgia state_with_coastline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "georgian is a kind of caucasian", "pln": ["(: cnet_isa_c6c8570881 (IsA georgian caucasian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "georgian is a kind of american", "pln": ["(: cnet_isa_103543b081 (IsA georgian american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "georgian is a kind of russian", "pln": ["(: cnet_isa_b0a5737cfa (IsA georgian russian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "georgian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_ae95e57fe6 (IsA georgian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geostationary orbit is a kind of geosynchronous orbit", "pln": ["(: cnet_isa_11f3379931 (IsA geostationary_orbit geosynchronous_orbit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geostrategy is a kind of geopolitic", "pln": ["(: cnet_isa_c84fbe74c0 (IsA geostrategy geopolitic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geosynchronous orbit is a kind of orbit", "pln": ["(: cnet_isa_404e1f5c73 (IsA geosynchronous_orbit orbit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geothermal energy is a kind of heat", "pln": ["(: cnet_isa_bbf0740f62 (IsA geothermal_energy heat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geothlypis is a kind of bird genus", "pln": ["(: cnet_isa_6801003424 (IsA geothlypis bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geotropism is a kind of tropism", "pln": ["(: cnet_isa_d4483e76f1 (IsA geotropism tropism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geraniaceae is a kind of rosid dicot family", "pln": ["(: cnet_isa_a8c7da5afb (IsA geraniaceae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geraniale is a kind of plant order", "pln": ["(: cnet_isa_0f46e20a15 (IsA geraniale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geranium is a kind of annual plant", "pln": ["(: cnet_isa_48adacaa23 (IsA geranium annual_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geranium is a kind of herb", "pln": ["(: cnet_isa_53fff86d9e (IsA geranium herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gerardia is a kind of flower", "pln": ["(: cnet_isa_4df996c433 (IsA gerardia flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gerbera is a kind of asterid dicot genus", "pln": ["(: cnet_isa_e2c6b5db6e (IsA gerbera asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gerbil is a kind of rodent", "pln": ["(: cnet_isa_b3bcddf07c (IsA gerbil rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gerbillinae is a kind of mammal family", "pln": ["(: cnet_isa_1d58d39ee3 (IsA gerbillinae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gerbillus is a kind of mammal genus", "pln": ["(: cnet_isa_78661a6840 (IsA gerbillus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gerea is a kind of asterid dicot genus", "pln": ["(: cnet_isa_ce91fccffa (IsA gerea asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gerenuk is a kind of antelope", "pln": ["(: cnet_isa_11932a1ab8 (IsA gerenuk antelope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geriatric is a kind of medicine", "pln": ["(: cnet_isa_85d7a6c628 (IsA geriatric medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "germ is a kind of microorganism", "pln": ["(: cnet_isa_27e81f4880 (IsA germ microorganism) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "germ is a kind of structure", "pln": ["(: cnet_isa_f79c9befc7 (IsA germ structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "germ layer is a kind of embryonic tissue", "pln": ["(: cnet_isa_9d4e5aa48d (IsA germ_layer embryonic_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "germ plasm is a kind of protoplasm", "pln": ["(: cnet_isa_5dac4529dd (IsA germ_plasm protoplasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "germ pore is a kind of stoma", "pln": ["(: cnet_isa_e83e33babf (IsA germ_pore stoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "germ theory is a kind of scientific theory", "pln": ["(: cnet_isa_bcdf26ccc0 (IsA germ_theory scientific_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "germ tube is a kind of plant part", "pln": ["(: cnet_isa_e628851ca0 (IsA germ_tube plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "germ warfare is a kind of biological warfare", "pln": ["(: cnet_isa_ada1e14ff9 (IsA germ_warfare biological_warfare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "german is a kind of human language", "pln": ["(: cnet_isa_e56bbec905 (IsA german human_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "german is a kind of language", "pln": ["(: cnet_isa_c411a544b9 (IsA german language) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "german is a kind of west germanic", "pln": ["(: cnet_isa_8143f0b945 (IsA german west_germanic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "german is a kind of european", "pln": ["(: cnet_isa_afad2122d7 (IsA german european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "german american is a kind of american", "pln": ["(: cnet_isa_0a2e741971 (IsA german_american american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "german cockroach is a kind of cockroach", "pln": ["(: cnet_isa_7cc5dc4669 (IsA german_cockroach cockroach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "german iris is a kind of bearded iris", "pln": ["(: cnet_isa_862bfda22f (IsA german_iris bearded_iris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "german ivy is a kind of vine", "pln": ["(: cnet_isa_d3cdec1ae5 (IsA german_ivy vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "german lesson is a kind of language lesson", "pln": ["(: cnet_isa_b57429d597 (IsA german_lesson language_lesson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "german measle is a kind of measle", "pln": ["(: cnet_isa_4efb23d592 (IsA german_measle measle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "german millet is a kind of foxtail millet", "pln": ["(: cnet_isa_0b4ea37c02 (IsA german_millet foxtail_millet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "german monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_1fd85e405b (IsA german_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "german nazi is a kind of fascist", "pln": ["(: cnet_isa_c05f5c7be0 (IsA german_nazi fascist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "german shepherd is a kind of shepherd dog", "pln": ["(: cnet_isa_dac9f8177f (IsA german_shepherd shepherd_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "german short haired pointer is a kind of pointer", "pln": ["(: cnet_isa_36359208f7 (IsA german_short_haired_pointer pointer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "germander is a kind of subshrub", "pln": ["(: cnet_isa_adcf0e81f4 (IsA germander subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "germander speedwell is a kind of veronica", "pln": ["(: cnet_isa_5b30446912 (IsA germander_speedwell veronica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "germaneness is a kind of applicability", "pln": ["(: cnet_isa_45ebed1273 (IsA germaneness applicability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "germanic is a kind of indo european", "pln": ["(: cnet_isa_69058fb709 (IsA germanic indo_european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "germanism is a kind of custom", "pln": ["(: cnet_isa_482bf61312 (IsA germanism custom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "germanist is a kind of specialist", "pln": ["(: cnet_isa_27ba70fecd (IsA germanist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "germanite is a kind of mineral", "pln": ["(: cnet_isa_cd6b6d3922 (IsA germanite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "germanium is a kind of chemical element", "pln": ["(: cnet_isa_dc25b77f6e (IsA germanium chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "germanium is a kind of semiconductor", "pln": ["(: cnet_isa_4df59cae37 (IsA germanium semiconductor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "germany is a kind of country", "pln": ["(: cnet_isa_7589792890 (IsA germany country) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "germany is a kind of country of europe", "pln": ["(: cnet_isa_43adec5d7d (IsA germany country_of_europe) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "germany is a kind of european country", "pln": ["(: cnet_isa_5d178ce58a (IsA germany european_country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "germany is a kind of in europe", "pln": ["(: cnet_isa_470dfd567c (IsA germany in_europe) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "germany is a kind of member of european union", "pln": ["(: cnet_isa_b1a84262f3 (IsA germany member_of_european_union) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "germinal is a kind of revolutionary calendar month", "pln": ["(: cnet_isa_deafd7aa51 (IsA germinal revolutionary_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "germination is a kind of origin", "pln": ["(: cnet_isa_f5726c1be6 (IsA germination origin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "germination is a kind of growth", "pln": ["(: cnet_isa_681eb67af0 (IsA germination growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gerontocracy is a kind of political system", "pln": ["(: cnet_isa_1ddaac56df (IsA gerontocracy political_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gerontologist is a kind of specialist", "pln": ["(: cnet_isa_6b0c2a01da (IsA gerontologist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gerreidae is a kind of fish family", "pln": ["(: cnet_isa_8877309c3a (IsA gerreidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gerre is a kind of fish genus", "pln": ["(: cnet_isa_2ff92ccabb (IsA gerre fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gerrhonotus is a kind of reptile genus", "pln": ["(: cnet_isa_eae87daea0 (IsA gerrhonotus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gerrididae is a kind of arthropod family", "pln": ["(: cnet_isa_915df5d68e (IsA gerrididae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gerris is a kind of arthropod genus", "pln": ["(: cnet_isa_e07f6b67fc (IsA gerris arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gerrymander is a kind of cheat", "pln": ["(: cnet_isa_4aaaaee98d (IsA gerrymander cheat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gerund is a kind of verbal noun", "pln": ["(: cnet_isa_834e4fd51d (IsA gerund verbal_noun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geryon is a kind of mythical monster", "pln": ["(: cnet_isa_e6033ccc14 (IsA geryon mythical_monster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gesneria is a kind of herb", "pln": ["(: cnet_isa_25f8ee8307 (IsA gesneria herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gesneriaceae is a kind of asterid dicot family", "pln": ["(: cnet_isa_8690b2f602 (IsA gesneriaceae asterid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gesneriad is a kind of woody plant", "pln": ["(: cnet_isa_372e773ba2 (IsA gesneriad woody_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gesso is a kind of gypsum", "pln": ["(: cnet_isa_758a8b1303 (IsA gesso gypsum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gesso is a kind of plaster of paris", "pln": ["(: cnet_isa_559849219c (IsA gesso plaster_of_paris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gestalt is a kind of form", "pln": ["(: cnet_isa_8e948e22e9 (IsA gestalt form) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gestalt law of organization is a kind of principle", "pln": ["(: cnet_isa_b149afbd6c (IsA gestalt_law_of_organization principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gestalt psychology is a kind of scientific theory", "pln": ["(: cnet_isa_b877443a65 (IsA gestalt_psychology scientific_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gestapo is a kind of secret police", "pln": ["(: cnet_isa_a4b7cbee4a (IsA gestapo secret_police) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gestation is a kind of construction", "pln": ["(: cnet_isa_e0520f7c41 (IsA gestation construction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gestation is a kind of biological time", "pln": ["(: cnet_isa_577f5ae6fb (IsA gestation biological_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gesticulation is a kind of gesture", "pln": ["(: cnet_isa_70a931f5d6 (IsA gesticulation gesture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gesture is a kind of indication", "pln": ["(: cnet_isa_20e1e68915 (IsA gesture indication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gesture is a kind of motion", "pln": ["(: cnet_isa_9ebbff907a (IsA gesture motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gesture is a kind of visual communication", "pln": ["(: cnet_isa_5de7fd05b4 (IsA gesture visual_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "get is a kind of return", "pln": ["(: cnet_isa_e3792767d3 (IsA get return) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "get well card is a kind of card", "pln": ["(: cnet_isa_6c4267bd86 (IsA get_well_card card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "getaway is a kind of escape", "pln": ["(: cnet_isa_407bbb682a (IsA getaway escape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "geum is a kind of rosid dicot genus", "pln": ["(: cnet_isa_fad3f4305e (IsA geum rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "geyser is a kind of spring", "pln": ["(: cnet_isa_751779eb72 (IsA geyser spring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ghanian is a kind of african", "pln": ["(: cnet_isa_478108e058 (IsA ghanian african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ghanian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_ef92f562df (IsA ghanian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gharry is a kind of carriage", "pln": ["(: cnet_isa_890e018829 (IsA gharry carriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ghastliness is a kind of frightfulness", "pln": ["(: cnet_isa_b9c2514000 (IsA ghastliness frightfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ghat is a kind of stairway", "pln": ["(: cnet_isa_b320c91845 (IsA ghat stairway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ghatti is a kind of gum", "pln": ["(: cnet_isa_c12e5db3c2 (IsA ghatti gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ghedda wax is a kind of beeswax", "pln": ["(: cnet_isa_4c0bb395d9 (IsA ghedda_wax beeswax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ghee is a kind of clarified butter", "pln": ["(: cnet_isa_e2d4e5ee24 (IsA ghee clarified_butter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gheg is a kind of albanian", "pln": ["(: cnet_isa_46638f704a (IsA gheg albanian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gherkin is a kind of cucumber", "pln": ["(: cnet_isa_9ac55b6b56 (IsA gherkin cucumber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gherkin is a kind of pickle", "pln": ["(: cnet_isa_d3c9fe3307 (IsA gherkin pickle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ghetto is a kind of city district", "pln": ["(: cnet_isa_8e0416b6db (IsA ghetto city_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ghetto is a kind of quarter", "pln": ["(: cnet_isa_da2dbe5e53 (IsA ghetto quarter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ghetto is a kind of life", "pln": ["(: cnet_isa_3a69a22d29 (IsA ghetto life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ghetto blaster is a kind of stereo", "pln": ["(: cnet_isa_6e140235c0 (IsA ghetto_blaster stereo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ghillie is a kind of shoe", "pln": ["(: cnet_isa_f6d1f7dfcf (IsA ghillie shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ghost is a kind of disembodied spirit", "pln": ["(: cnet_isa_d4b6c6d09b (IsA ghost disembodied_spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ghost is a kind of apparition", "pln": ["(: cnet_isa_62ce1245ec (IsA ghost apparition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ghost is a kind of soul", "pln": ["(: cnet_isa_05b12a5939 (IsA ghost soul) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ghost dance is a kind of ritual dancing", "pln": ["(: cnet_isa_1718caf485 (IsA ghost_dance ritual_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ghost town is a kind of town", "pln": ["(: cnet_isa_af5104611b (IsA ghost_town town) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ghost word is a kind of form", "pln": ["(: cnet_isa_86d99f29a4 (IsA ghost_word form) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ghostwriter is a kind of writer", "pln": ["(: cnet_isa_d43ab3e8f3 (IsA ghostwriter writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ghoul is a kind of evil spirit", "pln": ["(: cnet_isa_958c023239 (IsA ghoul evil_spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ghrelin is a kind of gastrointestinal hormone", "pln": ["(: cnet_isa_73d5bf1f4c (IsA ghrelin gastrointestinal_hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "gi series is a kind of diagnostic test", "pln": ["(: cnet_isa_a92c544ed2 (IsA gi_series diagnostic_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gi sery is a kind of diagnostic test", "pln": ["(: cnet_isa_6999ad665a (IsA gi_sery diagnostic_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant is a kind of animal", "pln": ["(: cnet_isa_835bfa43a8 (IsA giant animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant is a kind of enterprise", "pln": ["(: cnet_isa_b47dd48e0d (IsA giant enterprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant is a kind of imaginary being", "pln": ["(: cnet_isa_034e9bd9a9 (IsA giant imaginary_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant is a kind of large person", "pln": ["(: cnet_isa_b86772a094 (IsA giant large_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant armadillo is a kind of armadillo", "pln": ["(: cnet_isa_b2b756263d (IsA giant_armadillo armadillo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant bamboo is a kind of bamboo", "pln": ["(: cnet_isa_6e2d4ca67f (IsA giant_bamboo bamboo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant buttercup is a kind of herb", "pln": ["(: cnet_isa_5ccb123169 (IsA giant_buttercup herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant cane is a kind of bamboo", "pln": ["(: cnet_isa_7b0449ad9f (IsA giant_cane bamboo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "giant chinkapin is a kind of tree", "pln": ["(: cnet_isa_743700a02d (IsA giant_chinkapin tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant clam is a kind of clam", "pln": ["(: cnet_isa_0cfa0d9e54 (IsA giant_clam clam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant cockroach is a kind of cockroach", "pln": ["(: cnet_isa_b017892db3 (IsA giant_cockroach cockroach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant conch is a kind of conch", "pln": ["(: cnet_isa_b0b5dbb210 (IsA giant_conch conch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant coreopsis is a kind of coreopsis", "pln": ["(: cnet_isa_fb5f715451 (IsA giant_coreopsis coreopsis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant crab is a kind of spider crab", "pln": ["(: cnet_isa_1578f38441 (IsA giant_crab spider_crab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant eland is a kind of eland", "pln": ["(: cnet_isa_f7d202762d (IsA giant_eland eland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant foxtail is a kind of foxtail", "pln": ["(: cnet_isa_571ff20243 (IsA giant_foxtail foxtail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant hornet is a kind of hornet", "pln": ["(: cnet_isa_079f49fbcf (IsA giant_hornet hornet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant hyssop is a kind of herb", "pln": ["(: cnet_isa_c1d885aa06 (IsA giant_hyssop herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant kangaroo is a kind of kangaroo", "pln": ["(: cnet_isa_349dec7825 (IsA giant_kangaroo kangaroo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant moa is a kind of moa", "pln": ["(: cnet_isa_c7a59bd4a0 (IsA giant_moa moa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "giant northwest shipworm is a kind of shipworm", "pln": ["(: cnet_isa_e8601b0b47 (IsA giant_northwest_shipworm shipworm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant panda is a kind of procyonid", "pln": ["(: cnet_isa_4f2a2f0fda (IsA giant_panda procyonid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant petrel is a kind of petrel", "pln": ["(: cnet_isa_9ce56c3979 (IsA giant_petrel petrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "giant puffball is a kind of puffball", "pln": ["(: cnet_isa_254b21f788 (IsA giant_puffball puffball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant red paintbrush is a kind of indian paintbrush", "pln": ["(: cnet_isa_24af0fe7c4 (IsA giant_red_paintbrush indian_paintbrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant reed is a kind of reed", "pln": ["(: cnet_isa_477cff7933 (IsA giant_reed reed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant ryegrass is a kind of lyme grass", "pln": ["(: cnet_isa_727a584712 (IsA giant_ryegrass lyme_grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant salamander is a kind of salamander", "pln": ["(: cnet_isa_f35d23c8bd (IsA giant_salamander salamander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "giant schnauzer is a kind of schnauzer", "pln": ["(: cnet_isa_251cca4c13 (IsA giant_schnauzer schnauzer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "giant scrambling fern is a kind of fern", "pln": ["(: cnet_isa_6b4ecb750a (IsA giant_scrambling_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant seaperch is a kind of fish specy", "pln": ["(: cnet_isa_b788f533e4 (IsA giant_seaperch fish_specy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant sequoia is a kind of sequoia", "pln": ["(: cnet_isa_764cd5bf32 (IsA giant_sequoia sequoia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant silkworm moth is a kind of saturniid", "pln": ["(: cnet_isa_0ee5d16e10 (IsA giant_silkworm_moth saturniid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant star is a kind of star", "pln": ["(: cnet_isa_c50f1d1d8a (IsA giant_star star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant star grass is a kind of grass", "pln": ["(: cnet_isa_590f585e03 (IsA giant_star_grass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant sunflower is a kind of sunflower", "pln": ["(: cnet_isa_4914e61db1 (IsA giant_sunflower sunflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant taro is a kind of alocasia", "pln": ["(: cnet_isa_f8f100df9b (IsA giant_taro alocasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant timber bamboo is a kind of bamboo", "pln": ["(: cnet_isa_926f3e55ff (IsA giant_timber_bamboo bamboo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant tortoise is a kind of tortoise", "pln": ["(: cnet_isa_04f9e21f28 (IsA giant_tortoise tortoise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "giant water bug is a kind of water bug", "pln": ["(: cnet_isa_26e6d09baa (IsA giant_water_bug water_bug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giantess is a kind of giant", "pln": ["(: cnet_isa_9b6652add2 (IsA giantess giant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giantism is a kind of hypertrophy", "pln": ["(: cnet_isa_ee862183d6 (IsA giantism hypertrophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giant is a kind of sport team", "pln": ["(: cnet_isa_b8569c6882 (IsA giant sport_team) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giardia is a kind of flagellate", "pln": ["(: cnet_isa_99e91fbfd2 (IsA giardia flagellate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giardiasis is a kind of protozoal infection", "pln": ["(: cnet_isa_ef4ebf1707 (IsA giardiasis protozoal_infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gib is a kind of tom", "pln": ["(: cnet_isa_d4d73a477b (IsA gib tom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gibberellic acid is a kind of gibberellin", "pln": ["(: cnet_isa_2a0d953084 (IsA gibberellic_acid gibberellin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gibberellin is a kind of phytohormone", "pln": ["(: cnet_isa_1e87779b6b (IsA gibberellin phytohormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gibberish is a kind of nonsense", "pln": ["(: cnet_isa_8166823413 (IsA gibberish nonsense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gibbon is a kind of lesser ape", "pln": ["(: cnet_isa_7b06d1288f (IsA gibbon lesser_ape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gibbsite is a kind of mineral", "pln": ["(: cnet_isa_c19165ffe5 (IsA gibbsite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gibibit is a kind of computer memory unit", "pln": ["(: cnet_isa_adcb54bc06 (IsA gibibit computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giblet is a kind of variety meat", "pln": ["(: cnet_isa_db01633de3 (IsA giblet variety_meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gibraltarian is a kind of european", "pln": ["(: cnet_isa_dad0f1f66e (IsA gibraltarian european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gibson girl is a kind of girl", "pln": ["(: cnet_isa_57ccdce1fb (IsA gibson_girl girl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gidar is a kind of biu mandara", "pln": ["(: cnet_isa_ce4fd8582e (IsA gidar biu_mandara) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giddiness is a kind of frivolity", "pln": ["(: cnet_isa_fcc6468560 (IsA giddiness frivolity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gidgee is a kind of wattle", "pln": ["(: cnet_isa_60de871360 (IsA gidgee wattle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gift is a kind of acquisition", "pln": ["(: cnet_isa_386a06d54d (IsA gift acquisition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gift horse is a kind of gift", "pln": ["(: cnet_isa_c72fa2851d (IsA gift_horse gift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gift shop is a kind of shop", "pln": ["(: cnet_isa_5de34e0bc6 (IsA gift_shop shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gift tax is a kind of tax", "pln": ["(: cnet_isa_368b51e632 (IsA gift_tax tax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gift wrap is a kind of wrapping paper", "pln": ["(: cnet_isa_ce648bf321 (IsA gift_wrap wrapping_paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gift wrapping is a kind of wrapping", "pln": ["(: cnet_isa_3f76206fa1 (IsA gift_wrapping wrapping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gig is a kind of engagement", "pln": ["(: cnet_isa_d847bde7d6 (IsA gig engagement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gig is a kind of carriage", "pln": ["(: cnet_isa_335fcd7ff5 (IsA gig carriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gig is a kind of hook", "pln": ["(: cnet_isa_1b9c51c0e9 (IsA gig hook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gig is a kind of small boat", "pln": ["(: cnet_isa_1beb2ca79e (IsA gig small_boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gig is a kind of tender", "pln": ["(: cnet_isa_5aaf9650ae (IsA gig tender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gigabit is a kind of computer memory unit", "pln": ["(: cnet_isa_b33f86ecf5 (IsA gigabit computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gigabyte is a kind of computer memory unit", "pln": ["(: cnet_isa_ccd9ea3a91 (IsA gigabyte computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gigahertz is a kind of rate", "pln": ["(: cnet_isa_4bf5fda197 (IsA gigahertz rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gigantism is a kind of largeness", "pln": ["(: cnet_isa_6c3ff4b564 (IsA gigantism largeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gigartinaceae is a kind of protoctist family", "pln": ["(: cnet_isa_bc66785bf5 (IsA gigartinaceae protoctist_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giggle is a kind of laugh", "pln": ["(: cnet_isa_1ec1fe44be (IsA giggle laugh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gigo is a kind of rule", "pln": ["(: cnet_isa_ed973c990c (IsA gigo rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gigolo is a kind of libertine", "pln": ["(: cnet_isa_e0c6638592 (IsA gigolo libertine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gikuyu is a kind of bantu", "pln": ["(: cnet_isa_01cc61dc6f (IsA gikuyu bantu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gila monster is a kind of venomous lizard", "pln": ["(: cnet_isa_fd66bcdf63 (IsA gila_monster venomous_lizard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gilbert is a kind of magnetomotive force unit", "pln": ["(: cnet_isa_e96217a23b (IsA gilbert magnetomotive_force_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gilbert and sullivan is a kind of music", "pln": ["(: cnet_isa_04a5d6c2b6 (IsA gilbert_and_sullivan music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gilded flicker is a kind of flicker", "pln": ["(: cnet_isa_c49457b19c (IsA gilded_flicker flicker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gilder is a kind of skilled worker", "pln": ["(: cnet_isa_e47a4b18e1 (IsA gilder skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gildhall is a kind of guildhall", "pln": ["(: cnet_isa_0c589bde03 (IsA gildhall guildhall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gilding metal is a kind of brass", "pln": ["(: cnet_isa_37eb648569 (IsA gilding_metal brass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gilgai soil is a kind of soil", "pln": ["(: cnet_isa_9d55cf6184 (IsA gilgai_soil soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gill is a kind of respiratory organ", "pln": ["(: cnet_isa_9d63a90c26 (IsA gill respiratory_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gill is a kind of plant organ", "pln": ["(: cnet_isa_15041c0452 (IsA gill plant_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gill is a kind of british capacity unit", "pln": ["(: cnet_isa_7be91f6f5c (IsA gill british_capacity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gill is a kind of united state liquid unit", "pln": ["(: cnet_isa_ff2a1db7cc (IsA gill united_state_liquid_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gill arch is a kind of structure", "pln": ["(: cnet_isa_a0fce248ba (IsA gill_arch structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gill fungus is a kind of basidiomycete", "pln": ["(: cnet_isa_59c9578fe8 (IsA gill_fungus basidiomycete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gill net is a kind of fishnet", "pln": ["(: cnet_isa_04e071cf64 (IsA gill_net fishnet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gill slit is a kind of structure", "pln": ["(: cnet_isa_a784f30369 (IsA gill_slit structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gillie is a kind of attendant", "pln": ["(: cnet_isa_931db779ca (IsA gillie attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gilt is a kind of coating", "pln": ["(: cnet_isa_0a394ce37e (IsA gilt coating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gimbal is a kind of appliance", "pln": ["(: cnet_isa_d029bd313c (IsA gimbal appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gimel is a kind of letter", "pln": ["(: cnet_isa_41c6ff20e3 (IsA gimel letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gimlet is a kind of cocktail", "pln": ["(: cnet_isa_53abd53ba2 (IsA gimlet cocktail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gimmickry is a kind of collection", "pln": ["(: cnet_isa_89e47a18ab (IsA gimmickry collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gin is a kind of alcohol", "pln": ["(: cnet_isa_2950b26e68 (IsA gin alcohol) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gin is a kind of rummy", "pln": ["(: cnet_isa_8d78375746 (IsA gin rummy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gin is a kind of liquor", "pln": ["(: cnet_isa_56049c215b (IsA gin liquor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gin and it is a kind of cocktail", "pln": ["(: cnet_isa_ef8690045c (IsA gin_and_it cocktail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gin and tonic is a kind of highball", "pln": ["(: cnet_isa_859ee2ab4a (IsA gin_and_tonic highball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gin rickey is a kind of rickey", "pln": ["(: cnet_isa_0c2f899df9 (IsA gin_rickey rickey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gin sling is a kind of sling", "pln": ["(: cnet_isa_496ac0e857 (IsA gin_sling sling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ginger is a kind of flavorer", "pln": ["(: cnet_isa_c3e0708553 (IsA ginger flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ginger is a kind of spice", "pln": ["(: cnet_isa_f4ba545a26 (IsA ginger spice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ginger is a kind of herb", "pln": ["(: cnet_isa_40de495012 (IsA ginger herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ginger ale is a kind of soft drink", "pln": ["(: cnet_isa_771485b1ee (IsA ginger_ale soft_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ginger beer is a kind of beverage", "pln": ["(: cnet_isa_c8938ab452 (IsA ginger_beer beverage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gingerbread is a kind of cake", "pln": ["(: cnet_isa_995c4fca21 (IsA gingerbread cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gingerbread man is a kind of cookie", "pln": ["(: cnet_isa_ca020fe21b (IsA gingerbread_man cookie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gingerol is a kind of chemical irritant", "pln": ["(: cnet_isa_3beb1b9a74 (IsA gingerol chemical_irritant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gingersnap is a kind of cookie", "pln": ["(: cnet_isa_ba5f547743 (IsA gingersnap cookie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gingham is a kind of fabric", "pln": ["(: cnet_isa_f444120b7f (IsA gingham fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gingiva is a kind of animal tissue", "pln": ["(: cnet_isa_e2f042a277 (IsA gingiva animal_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gingivitis is a kind of periodontal disease", "pln": ["(: cnet_isa_2327a9658f (IsA gingivitis periodontal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ginglymostoma is a kind of fish genus", "pln": ["(: cnet_isa_9728c1d8a0 (IsA ginglymostoma fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ginkgo is a kind of gymnospermous tree", "pln": ["(: cnet_isa_b15340b6be (IsA ginkgo gymnospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ginkgoaceae is a kind of gymnosperm family", "pln": ["(: cnet_isa_ccd8c0550e (IsA ginkgoaceae gymnosperm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ginkgoale is a kind of plant order", "pln": ["(: cnet_isa_1d9b379163 (IsA ginkgoale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ginkgopsida is a kind of class", "pln": ["(: cnet_isa_027f3a4330 (IsA ginkgopsida class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ginseng is a kind of herb", "pln": ["(: cnet_isa_c49c58e96f (IsA ginseng herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ginseng is a kind of root", "pln": ["(: cnet_isa_834a26846d (IsA ginseng root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gipsy is a kind of person", "pln": ["(: cnet_isa_6eda2168d8 (IsA gipsy person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gipsywort is a kind of herb", "pln": ["(: cnet_isa_607ccf93ec (IsA gipsywort herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giraffa is a kind of mammal genus", "pln": ["(: cnet_isa_f56104bcf8 (IsA giraffa mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giraffe is a kind of ruminant", "pln": ["(: cnet_isa_1e044d8162 (IsA giraffe ruminant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giraffidae is a kind of mammal family", "pln": ["(: cnet_isa_f21d5a35e0 (IsA giraffidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "girandole is a kind of candlestick", "pln": ["(: cnet_isa_65c61ce492 (IsA girandole candlestick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "girder is a kind of beam", "pln": ["(: cnet_isa_39de444766 (IsA girder beam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "girdle is a kind of band", "pln": ["(: cnet_isa_328905a089 (IsA girdle band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "girdle is a kind of skeletal structure", "pln": ["(: cnet_isa_a1fb1acb51 (IsA girdle skeletal_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giriama is a kind of bantu", "pln": ["(: cnet_isa_b8087d234c (IsA giriama bantu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "girl is a kind of woman", "pln": ["(: cnet_isa_451ef91656 (IsA girl woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "girl friday is a kind of assistant", "pln": ["(: cnet_isa_3dd0793d15 (IsA girl_friday assistant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "girl scout is a kind of scout", "pln": ["(: cnet_isa_6702329fc4 (IsA girl_scout scout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "girl scout is a kind of organization", "pln": ["(: cnet_isa_d4ffb37de6 (IsA girl_scout organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "girl wonder is a kind of female", "pln": ["(: cnet_isa_f24b1e6953 (IsA girl_wonder female) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "girl wonder is a kind of prodigy", "pln": ["(: cnet_isa_0b0f7a5787 (IsA girl_wonder prodigy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "girlfriend is a kind of friend", "pln": ["(: cnet_isa_a83222e94e (IsA girlfriend friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "girlfriend is a kind of lover", "pln": ["(: cnet_isa_c83325fc45 (IsA girlfriend lover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "girlfriend is a kind of woman", "pln": ["(: cnet_isa_d796ca78c8 (IsA girlfriend woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "girlhood is a kind of childhood", "pln": ["(: cnet_isa_0f085583a6 (IsA girlhood childhood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "girlishness is a kind of femininity", "pln": ["(: cnet_isa_d854409142 (IsA girlishness femininity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giro is a kind of financial institution", "pln": ["(: cnet_isa_db1cbe807b (IsA giro financial_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giro is a kind of check", "pln": ["(: cnet_isa_330c6584fa (IsA giro check) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giro account is a kind of bank account", "pln": ["(: cnet_isa_e07444b34c (IsA giro_account bank_account) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gironde is a kind of party", "pln": ["(: cnet_isa_7c68907274 (IsA gironde party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "girondin is a kind of revolutionist", "pln": ["(: cnet_isa_1139cfc2b7 (IsA girondin revolutionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "girondism is a kind of doctrine", "pln": ["(: cnet_isa_d9fc11e08f (IsA girondism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "girth is a kind of circumference", "pln": ["(: cnet_isa_3dc0336a3f (IsA girth circumference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gitana is a kind of rommany", "pln": ["(: cnet_isa_05f8c844f9 (IsA gitana rommany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gitano is a kind of rommany", "pln": ["(: cnet_isa_656e51e5d0 (IsA gitano rommany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "give is a kind of elasticity", "pln": ["(: cnet_isa_bec53ccd24 (IsA give elasticity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "give and go is a kind of basketball play", "pln": ["(: cnet_isa_502951b4d3 (IsA give_and_go basketball_play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giveaway is a kind of disclosure", "pln": ["(: cnet_isa_c097c06703 (IsA giveaway disclosure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giveaway is a kind of gift", "pln": ["(: cnet_isa_e8ea563d59 (IsA giveaway gift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "given is a kind of assumption", "pln": ["(: cnet_isa_022c21cd64 (IsA given assumption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "givenness is a kind of indisputability", "pln": ["(: cnet_isa_d38d9e42d6 (IsA givenness indisputability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "giver is a kind of good person", "pln": ["(: cnet_isa_a41eb1c10e (IsA giver good_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giving is a kind of disposal", "pln": ["(: cnet_isa_e41a0aa0da (IsA giving disposal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giving is a kind of sharing", "pln": ["(: cnet_isa_87df5970ca (IsA giving sharing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giving is a kind of conveyance", "pln": ["(: cnet_isa_cb4fcbc546 (IsA giving conveyance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "giving up is a kind of relinquishment", "pln": ["(: cnet_isa_260636a83b (IsA giving_up relinquishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gizzard is a kind of pouch", "pln": ["(: cnet_isa_398e9a821e (IsA gizzard pouch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "glabella is a kind of craniometric point", "pln": ["(: cnet_isa_7ec84d4391 (IsA glabella craniometric_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glacial boulder is a kind of boulder", "pln": ["(: cnet_isa_8bc0575ffa (IsA glacial_boulder boulder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glaciation is a kind of geological process", "pln": ["(: cnet_isa_9f12bd06c1 (IsA glaciation geological_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "glaciation is a kind of environmental condition", "pln": ["(: cnet_isa_7a7be8427e (IsA glaciation environmental_condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glacier is a kind of slowly moving river of ice", "pln": ["(: cnet_isa_2edd61d07f (IsA glacier slowly_moving_river_of_ice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glacier is a kind of ice mass", "pln": ["(: cnet_isa_7389f66a86 (IsA glacier ice_mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glacier lily is a kind of dogtooth violet", "pln": ["(: cnet_isa_23ee79c6ab (IsA glacier_lily dogtooth_violet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glacier mill is a kind of chute", "pln": ["(: cnet_isa_6f489ed86c (IsA glacier_mill chute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glad hand is a kind of welcome", "pln": ["(: cnet_isa_4fb3042e2d (IsA glad_hand welcome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glade mallow is a kind of mallow", "pln": ["(: cnet_isa_2f69dcc09b (IsA glade_mallow mallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gladiator is a kind of combatant", "pln": ["(: cnet_isa_e3a75c6440 (IsA gladiator combatant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gladiolus is a kind of bone", "pln": ["(: cnet_isa_cef873899a (IsA gladiolus bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gladiolus is a kind of iridaceous plant", "pln": ["(: cnet_isa_b0c4290893 (IsA gladiolus iridaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gladness is a kind of happiness", "pln": ["(: cnet_isa_6f635db0ae (IsA gladness happiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glamor is a kind of beauty", "pln": ["(: cnet_isa_a334883080 (IsA glamor beauty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glamorization is a kind of beautification", "pln": ["(: cnet_isa_f9abd594da (IsA glamorization beautification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glance is a kind of look", "pln": ["(: cnet_isa_f00b23e2a5 (IsA glance look) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gland is a kind of organ", "pln": ["(: cnet_isa_2791e3390d (IsA gland organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glander is a kind of zoonosis", "pln": ["(: cnet_isa_0f07f37597 (IsA glander zoonosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glandular disease is a kind of disorder", "pln": ["(: cnet_isa_43e3936bad (IsA glandular_disease disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glan is a kind of structure", "pln": ["(: cnet_isa_204cdd7909 (IsA glan structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glan clitoridis is a kind of glan", "pln": ["(: cnet_isa_f65ad5ca59 (IsA glan_clitoridis glan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glan penis is a kind of glan", "pln": ["(: cnet_isa_5f72dfc95a (IsA glan_penis glan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glare is a kind of stare", "pln": ["(: cnet_isa_75e4818e41 (IsA glare stare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glare is a kind of brightness", "pln": ["(: cnet_isa_5b62adf09b (IsA glare brightness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glareola is a kind of bird genus", "pln": ["(: cnet_isa_44e48826e7 (IsA glareola bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "glareolidae is a kind of bird family", "pln": ["(: cnet_isa_e233b46699 (IsA glareolidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glasnost is a kind of social policy", "pln": ["(: cnet_isa_31c4bc560a (IsA glasnost social_policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glass is a kind of solid", "pln": ["(: cnet_isa_61dddbbb6f (IsA glass solid) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glass is a kind of container", "pln": ["(: cnet_isa_a30b82dff3 (IsA glass container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glass is a kind of glassware", "pln": ["(: cnet_isa_e44ba083ab (IsA glass glassware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glass is a kind of containerful", "pln": ["(: cnet_isa_dc4ece3be9 (IsA glass containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glass ceiling is a kind of ceiling", "pln": ["(: cnet_isa_82afd40d85 (IsA glass_ceiling ceiling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glass cutter is a kind of cutter", "pln": ["(: cnet_isa_584e10ee95 (IsA glass_cutter cutter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glass cutter is a kind of craftsman", "pln": ["(: cnet_isa_e13cd9a5b2 (IsA glass_cutter craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glass eye is a kind of prosthesis", "pln": ["(: cnet_isa_b0098be08a (IsA glass_eye prosthesis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glass lizard is a kind of anguid lizard", "pln": ["(: cnet_isa_5a8e7d5dca (IsA glass_lizard anguid_lizard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glass sponge is a kind of sponge", "pln": ["(: cnet_isa_1f56305569 (IsA glass_sponge sponge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glass wool is a kind of filter", "pln": ["(: cnet_isa_b019c17430 (IsA glass_wool filter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glass wool is a kind of insulator", "pln": ["(: cnet_isa_c015640ec5 (IsA glass_wool insulator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glassblower is a kind of craftsman", "pln": ["(: cnet_isa_bfb2360514 (IsA glassblower craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glass case is a kind of case", "pln": ["(: cnet_isa_466b34dee2 (IsA glass_case case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glassmaker is a kind of maker", "pln": ["(: cnet_isa_1737aa1fe2 (IsA glassmaker maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glassware is a kind of tableware", "pln": ["(: cnet_isa_62ae9acdbc (IsA glassware tableware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glasswork is a kind of workplace", "pln": ["(: cnet_isa_d5a656cc1d (IsA glasswork workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glasswort is a kind of herb", "pln": ["(: cnet_isa_55d2468c8a (IsA glasswort herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glaswegian is a kind of scotchman", "pln": ["(: cnet_isa_06a3530b1a (IsA glaswegian scotchman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glauber s salt is a kind of salt", "pln": ["(: cnet_isa_132c83050f (IsA glauber_s_salt salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glaucium is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_714935c648 (IsA glaucium dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glaucoma is a kind of eye disease", "pln": ["(: cnet_isa_532373558b (IsA glaucoma eye_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glaucomy is a kind of mammal genus", "pln": ["(: cnet_isa_0d35a1d0c5 (IsA glaucomy mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glauconite is a kind of mineral", "pln": ["(: cnet_isa_8d381cae66 (IsA glauconite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glaux is a kind of dicot genus", "pln": ["(: cnet_isa_8810c44f3d (IsA glaux dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "glaze is a kind of coating", "pln": ["(: cnet_isa_05f706308d (IsA glaze coating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glaze is a kind of polish", "pln": ["(: cnet_isa_e28d3de1f2 (IsA glaze polish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glaze is a kind of topping", "pln": ["(: cnet_isa_9bc1adc1ef (IsA glaze topping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gleam is a kind of radiance", "pln": ["(: cnet_isa_7bf0aabbd3 (IsA gleam radiance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gleam is a kind of flash", "pln": ["(: cnet_isa_9bcafdfd69 (IsA gleam flash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gleaner is a kind of collector", "pln": ["(: cnet_isa_72126cba02 (IsA gleaner collector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gleaner is a kind of farmhand", "pln": ["(: cnet_isa_7da832f40b (IsA gleaner farmhand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gleba is a kind of reproductive structure", "pln": ["(: cnet_isa_7314d87fcc (IsA gleba reproductive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glebe is a kind of estate", "pln": ["(: cnet_isa_2d0f43c04b (IsA glebe estate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glebe house is a kind of parsonage", "pln": ["(: cnet_isa_182cd36133 (IsA glebe_house parsonage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glechoma is a kind of asterid dicot genus", "pln": ["(: cnet_isa_bca3e382b3 (IsA glechoma asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gleditsia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_0191dcf015 (IsA gleditsia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glee club is a kind of club", "pln": ["(: cnet_isa_195568dacc (IsA glee_club club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gleet is a kind of pus", "pln": ["(: cnet_isa_b470b24c6d (IsA gleet pus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gleichenia is a kind of fern genus", "pln": ["(: cnet_isa_568ca32267 (IsA gleichenia fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gleicheniaceae is a kind of fern family", "pln": ["(: cnet_isa_cf5def9786 (IsA gleicheniaceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glen is a kind of valley", "pln": ["(: cnet_isa_a5580ce35b (IsA glen valley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "glengarry is a kind of cap", "pln": ["(: cnet_isa_b1455ebcf8 (IsA glengarry cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "glenoid fossa is a kind of pit", "pln": ["(: cnet_isa_2234b92d29 (IsA glenoid_fossa pit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glibness is a kind of superficiality", "pln": ["(: cnet_isa_b1ed23c806 (IsA glibness superficiality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glide is a kind of flight", "pln": ["(: cnet_isa_1552aa59f1 (IsA glide flight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "glider is a kind of heavier than air craft", "pln": ["(: cnet_isa_de8d55f18d (IsA glider heavier_than_air_craft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gliding joint is a kind of synovial joint", "pln": ["(: cnet_isa_86c53a56d8 (IsA gliding_joint synovial_joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glimpse is a kind of view", "pln": ["(: cnet_isa_a15c50e7dd (IsA glimpse view) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glimpse is a kind of indication", "pln": ["(: cnet_isa_c3ae87dc91 (IsA glimpse indication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glint is a kind of brightness", "pln": ["(: cnet_isa_cc0cf147ce (IsA glint brightness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glioblastoma is a kind of brain tumor", "pln": ["(: cnet_isa_11ce3fb4fb (IsA glioblastoma brain_tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glioma is a kind of brain tumor", "pln": ["(: cnet_isa_b757c360f5 (IsA glioma brain_tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gliricidia is a kind of tree", "pln": ["(: cnet_isa_8f46c33179 (IsA gliricidia tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gliridae is a kind of mammal family", "pln": ["(: cnet_isa_aa906fdcf6 (IsA gliridae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glis is a kind of mammal genus", "pln": ["(: cnet_isa_14e7500354 (IsA glis mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glissade is a kind of dance step", "pln": ["(: cnet_isa_6460b26ed9 (IsA glissade dance_step) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glissando is a kind of tune", "pln": ["(: cnet_isa_7aeb6f5078 (IsA glissando tune) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glitter is a kind of brightness", "pln": ["(: cnet_isa_a291d683d2 (IsA glitter brightness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glitter is a kind of flash", "pln": ["(: cnet_isa_9ed383be6f (IsA glitter flash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gloat is a kind of satisfaction", "pln": ["(: cnet_isa_8b908c0261 (IsA gloat satisfaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "global aphasia is a kind of aphasia", "pln": ["(: cnet_isa_ce4964b870 (IsA global_aphasia aphasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "global positioning system is a kind of navigational system", "pln": ["(: cnet_isa_bc58c2f3c2 (IsA global_positioning_system navigational_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "global warming is a kind of heating", "pln": ["(: cnet_isa_9f08246159 (IsA global_warming heating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "globalization is a kind of economic process", "pln": ["(: cnet_isa_6c015c0f8b (IsA globalization economic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "globe is a kind of ball", "pln": ["(: cnet_isa_ac583d21f1 (IsA globe ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "globe is a kind of map", "pln": ["(: cnet_isa_e8fadc7f7d (IsA globe map) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "globe is a kind of spherical map of earth", "pln": ["(: cnet_isa_322782e5de (IsA globe spherical_map_of_earth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "globe is a kind of three dimensional map of world", "pln": ["(: cnet_isa_6bbf18acbf (IsA globe three_dimensional_map_of_world) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "globe is a kind of model", "pln": ["(: cnet_isa_985943071f (IsA globe model) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "globe is a kind of sphere", "pln": ["(: cnet_isa_638a222459 (IsA globe sphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "globe amaranth is a kind of flower", "pln": ["(: cnet_isa_90118bf39b (IsA globe_amaranth flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "globe lily is a kind of liliaceous plant", "pln": ["(: cnet_isa_b78f2f6f4d (IsA globe_lily liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "globe mallow is a kind of mallow", "pln": ["(: cnet_isa_13b800d719 (IsA globe_mallow mallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "globe pepper is a kind of sweet pepper", "pln": ["(: cnet_isa_3d07e47c6a (IsA globe_pepper sweet_pepper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "globe thistle is a kind of herb", "pln": ["(: cnet_isa_c5b152aa2a (IsA globe_thistle herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "globeflower is a kind of herb", "pln": ["(: cnet_isa_b5ab7dd9c7 (IsA globeflower herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "globetrotter is a kind of cosmopolitan", "pln": ["(: cnet_isa_e261b42feb (IsA globetrotter cosmopolitan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "globicephala is a kind of mammal genus", "pln": ["(: cnet_isa_d56a30dd53 (IsA globicephala mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "globigerina is a kind of foram", "pln": ["(: cnet_isa_9039062321 (IsA globigerina foram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "globigerinidae is a kind of protoctist family", "pln": ["(: cnet_isa_5f9f699670 (IsA globigerinidae protoctist_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "globin is a kind of simple protein", "pln": ["(: cnet_isa_3ab399e68c (IsA globin simple_protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "globule is a kind of ball", "pln": ["(: cnet_isa_06180893e6 (IsA globule ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "globulin is a kind of simple protein", "pln": ["(: cnet_isa_65aa3c0d80 (IsA globulin simple_protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glochidium is a kind of spine", "pln": ["(: cnet_isa_44012d733f (IsA glochidium spine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glock is a kind of gun", "pln": ["(: cnet_isa_7f8bf0fa0d (IsA glock gun) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glock is a kind of gun manufacturer", "pln": ["(: cnet_isa_e3db73841d (IsA glock gun_manufacturer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glockenspiel is a kind of percussion instrument", "pln": ["(: cnet_isa_3595514914 (IsA glockenspiel percussion_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glogg is a kind of punch", "pln": ["(: cnet_isa_82dd70c17d (IsA glogg punch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glomerule is a kind of cyme", "pln": ["(: cnet_isa_01a334f4c7 (IsA glomerule cyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glomerulonephritis is a kind of nephritis", "pln": ["(: cnet_isa_de405e2d11 (IsA glomerulonephritis nephritis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glomerulus is a kind of capillary", "pln": ["(: cnet_isa_9201da57a6 (IsA glomerulus capillary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gloom is a kind of apprehension", "pln": ["(: cnet_isa_96e1ca8cf3 (IsA gloom apprehension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gloom is a kind of melancholy", "pln": ["(: cnet_isa_72bd820987 (IsA gloom melancholy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gloom is a kind of atmosphere", "pln": ["(: cnet_isa_c5f4156457 (IsA gloom atmosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gloom is a kind of semidarkness", "pln": ["(: cnet_isa_cc5288b00c (IsA gloom semidarkness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gloominess is a kind of uncheerfulness", "pln": ["(: cnet_isa_515977bf49 (IsA gloominess uncheerfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glop is a kind of substance", "pln": ["(: cnet_isa_ed2e075d62 (IsA glop substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glorification is a kind of adoration", "pln": ["(: cnet_isa_1a29486606 (IsA glorification adoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gloriosa is a kind of poisonous plant", "pln": ["(: cnet_isa_4827d9c01d (IsA gloriosa poisonous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glory is a kind of beauty", "pln": ["(: cnet_isa_8a110205f4 (IsA glory beauty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glory is a kind of honor", "pln": ["(: cnet_isa_b8b53a2e95 (IsA glory honor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glory hole is a kind of cabinet", "pln": ["(: cnet_isa_2bde3112b9 (IsA glory_hole cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glory pea is a kind of shrub", "pln": ["(: cnet_isa_20acc7c143 (IsA glory_pea shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gloss is a kind of explanation", "pln": ["(: cnet_isa_799b56a2f2 (IsA gloss explanation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glossalgia is a kind of pain", "pln": ["(: cnet_isa_9d4aa1412a (IsA glossalgia pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "glossarist is a kind of scholiast", "pln": ["(: cnet_isa_f0f4040e5f (IsA glossarist scholiast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glossary is a kind of wordbook", "pln": ["(: cnet_isa_925238ccae (IsA glossary wordbook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glossinidae is a kind of arthropod family", "pln": ["(: cnet_isa_cdb101df36 (IsA glossinidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glossitis is a kind of inflammation", "pln": ["(: cnet_isa_1f64863ba6 (IsA glossitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glossodia is a kind of monocot genus", "pln": ["(: cnet_isa_508f2c4fa1 (IsA glossodia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glossolalia is a kind of pathology", "pln": ["(: cnet_isa_ca75593cf4 (IsA glossolalia pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glossopharyngeal nerve is a kind of cranial nerve", "pln": ["(: cnet_isa_a44ea8e8d3 (IsA glossopharyngeal_nerve cranial_nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "glossopsitta is a kind of bird genus", "pln": ["(: cnet_isa_90bb3e59f6 (IsA glossopsitta bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glossoptosis is a kind of prolapse", "pln": ["(: cnet_isa_861f88858d (IsA glossoptosis prolapse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "glossy is a kind of picture", "pln": ["(: cnet_isa_24f99084d1 (IsA glossy picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "glossy snake is a kind of colubrid snake", "pln": ["(: cnet_isa_5d05bf036a (IsA glossy_snake colubrid_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glottal stop is a kind of stop consonant", "pln": ["(: cnet_isa_ca838b8df4 (IsA glottal_stop stop_consonant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glottis is a kind of speech organ", "pln": ["(: cnet_isa_ce6fed90af (IsA glottis speech_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glottochronology is a kind of chronology", "pln": ["(: cnet_isa_402fc43db5 (IsA glottochronology chronology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glove is a kind of handwear", "pln": ["(: cnet_isa_9cef2cfd22 (IsA glove handwear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glove anesthesia is a kind of conversion disorder", "pln": ["(: cnet_isa_f162e89247 (IsA glove_anesthesia conversion_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glove compartment is a kind of compartment", "pln": ["(: cnet_isa_f0414c5aa9 (IsA glove_compartment compartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glove leather is a kind of leather", "pln": ["(: cnet_isa_099bbdc53b (IsA glove_leather leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glow is a kind of feeling", "pln": ["(: cnet_isa_6d2bf67c71 (IsA glow feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glow is a kind of light", "pln": ["(: cnet_isa_6ca7a57dc2 (IsA glow light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glow lamp is a kind of gas discharge tube", "pln": ["(: cnet_isa_bd0255e793 (IsA glow_lamp gas_discharge_tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glowworm is a kind of firefly", "pln": ["(: cnet_isa_46ed7eadf7 (IsA glowworm firefly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gloxinia is a kind of houseplant", "pln": ["(: cnet_isa_1b854e2202 (IsA gloxinia houseplant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "glucagon is a kind of hormone", "pln": ["(: cnet_isa_8babfbcb89 (IsA glucagon hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glucocorticoid is a kind of corticosteroid", "pln": ["(: cnet_isa_9949b6187d (IsA glucocorticoid corticosteroid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glucocorticoid is a kind of hormone", "pln": ["(: cnet_isa_c161cb440a (IsA glucocorticoid hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glucosamine is a kind of amino", "pln": ["(: cnet_isa_a95102c49c (IsA glucosamine amino) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glucosamine is a kind of glucose", "pln": ["(: cnet_isa_16b6b0a977 (IsA glucosamine glucose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glucose is a kind of sugar", "pln": ["(: cnet_isa_ab2d1ad582 (IsA glucose sugar) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glucose is a kind of aldohexose", "pln": ["(: cnet_isa_6765dd05b9 (IsA glucose aldohexose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glucose tolerance test is a kind of diagnostic test", "pln": ["(: cnet_isa_e3c0bb4651 (IsA glucose_tolerance_test diagnostic_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glucoside is a kind of glycoside", "pln": ["(: cnet_isa_c1d1dd7e2a (IsA glucoside glycoside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glucosuria is a kind of glycosuria", "pln": ["(: cnet_isa_8e0cad4374 (IsA glucosuria glycosuria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glue is a kind of adhesive", "pln": ["(: cnet_isa_133bc90a7e (IsA glue adhesive) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glue is a kind of substance", "pln": ["(: cnet_isa_66407a0abf (IsA glue substance) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glue is a kind of cement", "pln": ["(: cnet_isa_611e415e2d (IsA glue cement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glume is a kind of bract", "pln": ["(: cnet_isa_37ce2088b8 (IsA glume bract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gluon is a kind of boson", "pln": ["(: cnet_isa_b7eea700b6 (IsA gluon boson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gluon is a kind of gauge boson", "pln": ["(: cnet_isa_707aecbcee (IsA gluon gauge_boson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glut is a kind of overabundance", "pln": ["(: cnet_isa_4dc51b1fce (IsA glut overabundance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glutamate is a kind of salt", "pln": ["(: cnet_isa_404e53f859 (IsA glutamate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glutamic acid is a kind of amino acid", "pln": ["(: cnet_isa_4c57518e7e (IsA glutamic_acid amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glutamic oxalacetic transaminase is a kind of transaminase", "pln": ["(: cnet_isa_46ba0da00e (IsA glutamic_oxalacetic_transaminase transaminase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glutamine is a kind of amino acid", "pln": ["(: cnet_isa_819bc3d6ac (IsA glutamine amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glutathione peroxidase is a kind of antioxidant", "pln": ["(: cnet_isa_fe4347a7a5 (IsA glutathione_peroxidase antioxidant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "glutathione peroxidase is a kind of peroxidase", "pln": ["(: cnet_isa_82b682d2fe (IsA glutathione_peroxidase peroxidase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gluteal artery is a kind of artery", "pln": ["(: cnet_isa_90acf89094 (IsA gluteal_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gluteal vein is a kind of vein", "pln": ["(: cnet_isa_4efed0b712 (IsA gluteal_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glutelin is a kind of simple protein", "pln": ["(: cnet_isa_2dacaad944 (IsA glutelin simple_protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gluten is a kind of protein", "pln": ["(: cnet_isa_25ec54b005 (IsA gluten protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gluten bread is a kind of bread", "pln": ["(: cnet_isa_8c81992e18 (IsA gluten_bread bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gluten free diet is a kind of diet", "pln": ["(: cnet_isa_7fe702f01e (IsA gluten_free_diet diet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gluteus is a kind of skeletal muscle", "pln": ["(: cnet_isa_7bf00bf95a (IsA gluteus skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gluteus maximus is a kind of gluteus", "pln": ["(: cnet_isa_2ee6171013 (IsA gluteus_maximus gluteus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gluteus medius is a kind of gluteus", "pln": ["(: cnet_isa_d0a44b4cb0 (IsA gluteus_medius gluteus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gluteus minimus is a kind of gluteus", "pln": ["(: cnet_isa_669fe21634 (IsA gluteus_minimus gluteus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "glutton is a kind of musteline mammal", "pln": ["(: cnet_isa_3f47009135 (IsA glutton musteline_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glutton is a kind of eater", "pln": ["(: cnet_isa_50d3935d72 (IsA glutton eater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gluttony is a kind of mortal sin", "pln": ["(: cnet_isa_158ff3accb (IsA gluttony mortal_sin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gluttony is a kind of intemperance", "pln": ["(: cnet_isa_d6f85b498d (IsA gluttony intemperance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glyceraldehyde is a kind of aldehyde", "pln": ["(: cnet_isa_fea458a14b (IsA glyceraldehyde aldehyde) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glyceria is a kind of monocot genus", "pln": ["(: cnet_isa_eb5e53745a (IsA glyceria monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glyceric acid is a kind of acid", "pln": ["(: cnet_isa_f7381265fd (IsA glyceric_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glyceride is a kind of animal oil", "pln": ["(: cnet_isa_6415cfc903 (IsA glyceride animal_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glyceride is a kind of glyceryl ester", "pln": ["(: cnet_isa_ad485f8267 (IsA glyceride glyceryl_ester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glycerin jelly is a kind of glyceryl ester", "pln": ["(: cnet_isa_60cb8cd140 (IsA glycerin_jelly glyceryl_ester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glycerinated gelatin is a kind of formulation", "pln": ["(: cnet_isa_7f1cf7eeda (IsA glycerinated_gelatin formulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glycerite is a kind of glyceryl ester", "pln": ["(: cnet_isa_841805f608 (IsA glycerite glyceryl_ester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glycerogelatin is a kind of glyceryl ester", "pln": ["(: cnet_isa_e8cdc1b084 (IsA glycerogelatin glyceryl_ester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "glycerol is a kind of alcohol", "pln": ["(: cnet_isa_e8ffcde3db (IsA glycerol alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glyceryl is a kind of group", "pln": ["(: cnet_isa_7b89aa27da (IsA glyceryl group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "glyceryl ester is a kind of ester", "pln": ["(: cnet_isa_3b017fff27 (IsA glyceryl_ester ester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glycine is a kind of rosid dicot genus", "pln": ["(: cnet_isa_64b84aaf86 (IsA glycine rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glycine is a kind of amino acid", "pln": ["(: cnet_isa_b11558b06f (IsA glycine amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glycogen is a kind of polysaccharide", "pln": ["(: cnet_isa_9ab33ea2b5 (IsA glycogen polysaccharide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "glycogenesis is a kind of conversion", "pln": ["(: cnet_isa_a6cdd24e06 (IsA glycogenesis conversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glycogenesis is a kind of organic process", "pln": ["(: cnet_isa_a43c6ee5a5 (IsA glycogenesis organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glycolic acid is a kind of acid", "pln": ["(: cnet_isa_0e0c821360 (IsA glycolic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glycolysis is a kind of metabolism", "pln": ["(: cnet_isa_b6b6b34457 (IsA glycolysis metabolism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glycoprotein is a kind of conjugated protein", "pln": ["(: cnet_isa_5270df71fd (IsA glycoprotein conjugated_protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glycoside is a kind of organic compound", "pln": ["(: cnet_isa_496818e207 (IsA glycoside organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "glycosuria is a kind of symptom", "pln": ["(: cnet_isa_cb537448dc (IsA glycosuria symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "glycyrrhiza is a kind of rosid dicot genus", "pln": ["(: cnet_isa_93f6483245 (IsA glycyrrhiza rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glyph is a kind of glyptic art", "pln": ["(: cnet_isa_59dab49049 (IsA glyph glyptic_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glyptic art is a kind of carving", "pln": ["(: cnet_isa_802497529f (IsA glyptic_art carving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "glyptic is a kind of glyptic art", "pln": ["(: cnet_isa_e4f42dd442 (IsA glyptic glyptic_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "glyptography is a kind of art", "pln": ["(: cnet_isa_1b05833f41 (IsA glyptography art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gnaphalium is a kind of asterid dicot genus", "pln": ["(: cnet_isa_1613c19967 (IsA gnaphalium asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gnat is a kind of dipterous insect", "pln": ["(: cnet_isa_05f74196dd (IsA gnat dipterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gnat is a kind of mosquito", "pln": ["(: cnet_isa_1bc99d4764 (IsA gnat mosquito) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gnatcatcher is a kind of warbler", "pln": ["(: cnet_isa_de50e919c2 (IsA gnatcatcher warbler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gnathion is a kind of craniometric point", "pln": ["(: cnet_isa_ccacdad993 (IsA gnathion craniometric_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gnathostomata is a kind of class", "pln": ["(: cnet_isa_62d635c76f (IsA gnathostomata class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gnathostome is a kind of vertebrate", "pln": ["(: cnet_isa_a34c716bb6 (IsA gnathostome vertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gneiss is a kind of metamorphic rock", "pln": ["(: cnet_isa_a9cc268f4a (IsA gneiss metamorphic_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gnetaceae is a kind of gymnosperm family", "pln": ["(: cnet_isa_38d656dea0 (IsA gnetaceae gymnosperm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gnetale is a kind of plant order", "pln": ["(: cnet_isa_ed583be873 (IsA gnetale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gnetopsida is a kind of class", "pln": ["(: cnet_isa_424057b642 (IsA gnetopsida class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gnetum is a kind of gymnospermous tree", "pln": ["(: cnet_isa_bbac036045 (IsA gnetum gymnospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gnocchi is a kind of food", "pln": ["(: cnet_isa_c6c024dc15 (IsA gnocchi food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gnocchi is a kind of pasta", "pln": ["(: cnet_isa_9e5232b52b (IsA gnocchi pasta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gnocchi is a kind of dumpling", "pln": ["(: cnet_isa_f82db49ab0 (IsA gnocchi dumpling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gnome is a kind of maxim", "pln": ["(: cnet_isa_c13815264a (IsA gnome maxim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gnome is a kind of fairy", "pln": ["(: cnet_isa_c6188a080a (IsA gnome fairy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gnomon is a kind of indicator", "pln": ["(: cnet_isa_d5f8b99e26 (IsA gnomon indicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gnosis is a kind of intuition", "pln": ["(: cnet_isa_f521e75089 (IsA gnosis intuition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gnostic is a kind of advocate", "pln": ["(: cnet_isa_db528f47fe (IsA gnostic advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gnosticism is a kind of heresy", "pln": ["(: cnet_isa_ca1b275e31 (IsA gnosticism heresy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gnosticism is a kind of theological doctrine", "pln": ["(: cnet_isa_f377ad569c (IsA gnosticism theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gnu is a kind of antelope", "pln": ["(: cnet_isa_330128f8dc (IsA gnu antelope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "go is a kind of board game", "pln": ["(: cnet_isa_5dcf1a4a84 (IsA go board_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "go is a kind of shift", "pln": ["(: cnet_isa_e56e02ffa2 (IsA go shift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "go board is a kind of board", "pln": ["(: cnet_isa_e114548ffe (IsA go_board board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "go fish is a kind of card game", "pln": ["(: cnet_isa_457c2cd090 (IsA go_fish card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "go getter is a kind of actor", "pln": ["(: cnet_isa_300a7d0196 (IsA go_getter actor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "go kart is a kind of motor vehicle", "pln": ["(: cnet_isa_da7099eabc (IsA go_kart motor_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "go slow is a kind of job action", "pln": ["(: cnet_isa_a1b64ebe5b (IsA go_slow job_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goa bean is a kind of bean", "pln": ["(: cnet_isa_b52baf8ec1 (IsA goa_bean bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goad is a kind of encouragement", "pln": ["(: cnet_isa_8955ec8b32 (IsA goad encouragement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goal is a kind of score", "pln": ["(: cnet_isa_0d37b2db13 (IsA goal score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goal is a kind of game equipment", "pln": ["(: cnet_isa_d8322c5787 (IsA goal game_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goal is a kind of content", "pln": ["(: cnet_isa_0fc09969c0 (IsA goal content) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goal kick is a kind of kick", "pln": ["(: cnet_isa_5669b7222a (IsA goal_kick kick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goal line is a kind of line", "pln": ["(: cnet_isa_601ff386cc (IsA goal_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goalkeeper is a kind of position", "pln": ["(: cnet_isa_980f4c8794 (IsA goalkeeper position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goalkeeper is a kind of hockey player", "pln": ["(: cnet_isa_98c351a1b6 (IsA goalkeeper hockey_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goalkeeper is a kind of soccer player", "pln": ["(: cnet_isa_b3f96e98e8 (IsA goalkeeper soccer_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goalmouth is a kind of area", "pln": ["(: cnet_isa_7e25b0bac4 (IsA goalmouth area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goalpost is a kind of post", "pln": ["(: cnet_isa_b879cc445f (IsA goalpost post) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goat s rue is a kind of herb", "pln": ["(: cnet_isa_62d8160142 (IsA goat_s_rue herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goat is a kind of bovid", "pln": ["(: cnet_isa_18dfe763b8 (IsA goat bovid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goat is a kind of person", "pln": ["(: cnet_isa_5b51245480 (IsA goat person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goat antelope is a kind of bovid", "pln": ["(: cnet_isa_2522fd95db (IsA goat_antelope bovid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goat cheese is a kind of cheese", "pln": ["(: cnet_isa_77d06ec63b (IsA goat_cheese cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goat grass is a kind of grass", "pln": ["(: cnet_isa_d0b527baa0 (IsA goat_grass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goat herder is a kind of herder", "pln": ["(: cnet_isa_9762638811 (IsA goat_herder herder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goat willow is a kind of sallow", "pln": ["(: cnet_isa_d2a4099ecb (IsA goat_willow sallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goatee is a kind of beard", "pln": ["(: cnet_isa_468bee0559 (IsA goatee beard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goatfish is a kind of mullet", "pln": ["(: cnet_isa_51242f4db7 (IsA goatfish mullet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goat milk is a kind of milk", "pln": ["(: cnet_isa_b8b34e5de2 (IsA goat_milk milk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goatsfoot is a kind of oxalis", "pln": ["(: cnet_isa_865ff46c5e (IsA goatsfoot oxalis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goatskin is a kind of hide", "pln": ["(: cnet_isa_8a0b8f2d8b (IsA goatskin hide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goatsucker is a kind of caprimulgiform bird", "pln": ["(: cnet_isa_42a7a9e2f5 (IsA goatsucker caprimulgiform_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gob is a kind of ball", "pln": ["(: cnet_isa_b0a0229fc0 (IsA gob ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gobbet is a kind of raw meat", "pln": ["(: cnet_isa_3cd9060e8a (IsA gobbet raw_meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gobble is a kind of cry", "pln": ["(: cnet_isa_86d5d758aa (IsA gobble cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gobbledygook is a kind of jargon", "pln": ["(: cnet_isa_10b77e37bf (IsA gobbledygook jargon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gobbler is a kind of eater", "pln": ["(: cnet_isa_6400d43db0 (IsA gobbler eater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gobiesocidae is a kind of fish family", "pln": ["(: cnet_isa_5079a1f374 (IsA gobiesocidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gobiesox is a kind of fish genus", "pln": ["(: cnet_isa_c709d6979e (IsA gobiesox fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gobiidae is a kind of fish family", "pln": ["(: cnet_isa_b1689c1940 (IsA gobiidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gobio is a kind of fish genus", "pln": ["(: cnet_isa_bea918b886 (IsA gobio fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goblet is a kind of glass", "pln": ["(: cnet_isa_c485dd4d91 (IsA goblet glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goblet cell is a kind of epithelial cell", "pln": ["(: cnet_isa_e7174abd1c (IsA goblet_cell epithelial_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goblin is a kind of evil spirit", "pln": ["(: cnet_isa_29940f2fef (IsA goblin evil_spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goby is a kind of percoid fish", "pln": ["(: cnet_isa_2d56f3dca0 (IsA goby percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "god s will is a kind of omnipotence", "pln": ["(: cnet_isa_3f100506cb (IsA god_s_will omnipotence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "god s wisdom is a kind of omniscience", "pln": ["(: cnet_isa_295b6e9328 (IsA god_s_wisdom omniscience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "god is a kind of abstract creation of humanity", "pln": ["(: cnet_isa_25f490c242 (IsA god abstract_creation_of_humanity) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "god is a kind of concept", "pln": ["(: cnet_isa_4103590c22 (IsA god concept) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "god is a kind of creator", "pln": ["(: cnet_isa_6c02efe7db (IsA god creator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "god is a kind of fairy tale for adult", "pln": ["(: cnet_isa_31451bd208 (IsA god fairy_tale_for_adult) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "god is a kind of imaginary friend for grown ups", "pln": ["(: cnet_isa_ec446d83e1 (IsA god imaginary_friend_for_grown_ups) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "god is a kind of love", "pln": ["(: cnet_isa_b9b728e47a (IsA god love) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "god is a kind of omnipotent", "pln": ["(: cnet_isa_a8664456b0 (IsA god omnipotent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "god is a kind of superior", "pln": ["(: cnet_isa_9393642446 (IsA god superior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "godchild is a kind of baby", "pln": ["(: cnet_isa_f7a1ac8459 (IsA godchild baby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goddaughter is a kind of godchild", "pln": ["(: cnet_isa_c9ab4a310a (IsA goddaughter godchild) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goddess is a kind of deity", "pln": ["(: cnet_isa_879e1a3993 (IsA goddess deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "godfather is a kind of godparent", "pln": ["(: cnet_isa_245f73b2e1 (IsA godfather godparent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "godfather is a kind of patron", "pln": ["(: cnet_isa_84eae2cd9c (IsA godfather patron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "godliness is a kind of piety", "pln": ["(: cnet_isa_466e37ca8f (IsA godliness piety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "godmother is a kind of godparent", "pln": ["(: cnet_isa_bcde7c3e18 (IsA godmother godparent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "godown is a kind of warehouse", "pln": ["(: cnet_isa_fda29d091c (IsA godown warehouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "godparent is a kind of patron", "pln": ["(: cnet_isa_33187dacde (IsA godparent patron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "godson is a kind of godchild", "pln": ["(: cnet_isa_de5cbb7b55 (IsA godson godchild) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "godspeed is a kind of success", "pln": ["(: cnet_isa_b7c7f0b838 (IsA godspeed success) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "godwit is a kind of shorebird", "pln": ["(: cnet_isa_c760ca4bb6 (IsA godwit shorebird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goethite is a kind of iron ore", "pln": ["(: cnet_isa_f676e857d1 (IsA goethite iron_ore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gofer is a kind of employee", "pln": ["(: cnet_isa_9c9a6f4ffa (IsA gofer employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goffer is a kind of frill", "pln": ["(: cnet_isa_abe72590f8 (IsA goffer frill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goffer is a kind of iron", "pln": ["(: cnet_isa_94c2a64e75 (IsA goffer iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goffer is a kind of eager beaver", "pln": ["(: cnet_isa_1378cad866 (IsA goffer eager_beaver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gog and magog is a kind of mythical being", "pln": ["(: cnet_isa_76ad4b1c4e (IsA gog_and_magog mythical_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goggle is a kind of spectacle", "pln": ["(: cnet_isa_299a470329 (IsA goggle spectacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "going is a kind of accomplishment", "pln": ["(: cnet_isa_b7a62e4fed (IsA going accomplishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "going ashore is a kind of debarkation", "pln": ["(: cnet_isa_e18033d64f (IsA going_ashore debarkation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "going on cuise is a kind of good way to relax", "pln": ["(: cnet_isa_3fd7295061 (IsA going_on_cuise good_way_to_relax) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "going out of business sale is a kind of sale", "pln": ["(: cnet_isa_b7f7ee0ca4 (IsA going_out_of_business_sale sale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "going over is a kind of examination", "pln": ["(: cnet_isa_b7685b7696 (IsA going_over examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "going to doctor is a kind of often about diseas", "pln": ["(: cnet_isa_eccd0425df (IsA going_to_doctor often_about_diseas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "going to doctor is a kind of smart thing to do", "pln": ["(: cnet_isa_2dd78e8cfe (IsA going_to_doctor smart_thing_to_do) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "goiter is a kind of disease", "pln": ["(: cnet_isa_4c81b56636 (IsA goiter disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goitrogen is a kind of compound", "pln": ["(: cnet_isa_fbd6413dca (IsA goitrogen compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golconda is a kind of source", "pln": ["(: cnet_isa_13c9fe6f1d (IsA golconda source) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gold is a kind of metal", "pln": ["(: cnet_isa_ca83b3599a (IsA gold metal) (STV 1.0 0.9853))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gold is a kind of precious metal", "pln": ["(: cnet_isa_886d7654db (IsA gold precious_metal) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gold is a kind of soft metal", "pln": ["(: cnet_isa_495094b613 (IsA gold soft_metal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gold is a kind of invaluableness", "pln": ["(: cnet_isa_fbdb3d88d6 (IsA gold invaluableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gold is a kind of wealth", "pln": ["(: cnet_isa_536fdc7413 (IsA gold wealth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gold is a kind of noble metal", "pln": ["(: cnet_isa_01039adce0 (IsA gold noble_metal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gold coast is a kind of vicinity", "pln": ["(: cnet_isa_ff1730ff7f (IsA gold_coast vicinity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gold crowned kinglet is a kind of kinglet", "pln": ["(: cnet_isa_9f7497e926 (IsA gold_crowned_kinglet kinglet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gold digger is a kind of woman", "pln": ["(: cnet_isa_ae8e1f20f0 (IsA gold_digger woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gold dust is a kind of gold", "pln": ["(: cnet_isa_b3082ca6c6 (IsA gold_dust gold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gold fern is a kind of fern", "pln": ["(: cnet_isa_f73a4499e4 (IsA gold_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gold fever is a kind of fever", "pln": ["(: cnet_isa_2015039a88 (IsA gold_fever fever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gold foil is a kind of foil", "pln": ["(: cnet_isa_388b3caa19 (IsA gold_foil foil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gold leaf is a kind of gold foil", "pln": ["(: cnet_isa_1bf81a2606 (IsA gold_leaf gold_foil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gold medal is a kind of trophy", "pln": ["(: cnet_isa_2042f216aa (IsA gold_medal trophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gold miner is a kind of miner", "pln": ["(: cnet_isa_4f315aeac3 (IsA gold_miner miner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gold of pleasure is a kind of crucifer", "pln": ["(: cnet_isa_971a5eeb3e (IsA gold_of_pleasure crucifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gold plate is a kind of plating", "pln": ["(: cnet_isa_3a37e15c1b (IsA gold_plate plating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gold plate is a kind of tableware", "pln": ["(: cnet_isa_6204e5c665 (IsA gold_plate tableware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gold rush is a kind of migration", "pln": ["(: cnet_isa_ded89e3acf (IsA gold_rush migration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gold standard is a kind of paragon", "pln": ["(: cnet_isa_267fb1fa27 (IsA gold_standard paragon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gold standard is a kind of standard", "pln": ["(: cnet_isa_3211b59f86 (IsA gold_standard standard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gold tail moth is a kind of lymantriid", "pln": ["(: cnet_isa_193c6c9d90 (IsA gold_tail_moth lymantriid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gold thread falsecypress is a kind of plant", "pln": ["(: cnet_isa_73ea538f96 (IsA gold_thread_falsecypress plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goldbeater is a kind of craftsman", "pln": ["(: cnet_isa_927112f4d4 (IsA goldbeater craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goldbrick is a kind of fraud", "pln": ["(: cnet_isa_15a22dde2f (IsA goldbrick fraud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goldbrick is a kind of block", "pln": ["(: cnet_isa_ca4a65810e (IsA goldbrick block) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goldbrick is a kind of idler", "pln": ["(: cnet_isa_6315efd0dd (IsA goldbrick idler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goldbrick is a kind of slacker", "pln": ["(: cnet_isa_414b7d96ae (IsA goldbrick slacker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "goldbrick is a kind of soldier", "pln": ["(: cnet_isa_d84a4d79e0 (IsA goldbrick soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goldcrest is a kind of kinglet", "pln": ["(: cnet_isa_7ebc7495e6 (IsA goldcrest kinglet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "golden age is a kind of time period", "pln": ["(: cnet_isa_8bf1662506 (IsA golden_age time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden age is a kind of flower", "pln": ["(: cnet_isa_2610059c1e (IsA golden_age flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden age is a kind of period", "pln": ["(: cnet_isa_be16c19a18 (IsA golden_age period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden algae is a kind of alga", "pln": ["(: cnet_isa_a69bf6851a (IsA golden_algae alga) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden and labrador retriever is a kind of type of dog", "pln": ["(: cnet_isa_ca729d2bf2 (IsA golden_and_labrador_retriever type_of_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden aster is a kind of wildflower", "pln": ["(: cnet_isa_97e5b34933 (IsA golden_aster wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden barrel cactus is a kind of echinocactus", "pln": ["(: cnet_isa_ab5ecbf2d5 (IsA golden_barrel_cactus echinocactus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden beard penstemon is a kind of wildflower", "pln": ["(: cnet_isa_8f12c2161f (IsA golden_beard_penstemon wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden calf is a kind of idol", "pln": ["(: cnet_isa_9208f91d5e (IsA golden_calf idol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden calla is a kind of calla lily", "pln": ["(: cnet_isa_a0871e7ae8 (IsA golden_calla calla_lily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden clematis is a kind of clematis", "pln": ["(: cnet_isa_ddcc81f05e (IsA golden_clematis clematis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden club is a kind of aquatic plant", "pln": ["(: cnet_isa_7135901ac0 (IsA golden_club aquatic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden cup is a kind of poppy", "pln": ["(: cnet_isa_b75145ad53 (IsA golden_cup poppy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden delicious is a kind of delicious", "pln": ["(: cnet_isa_990d5bc7b1 (IsA golden_delicious delicious) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden eagle is a kind of eagle", "pln": ["(: cnet_isa_279bca7053 (IsA golden_eagle eagle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden fern is a kind of fern", "pln": ["(: cnet_isa_a853718a5f (IsA golden_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden fig is a kind of fig tree", "pln": ["(: cnet_isa_962b1670e9 (IsA golden_fig fig_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden fleece is a kind of sheepskin", "pln": ["(: cnet_isa_bd39e0a2e3 (IsA golden_fleece sheepskin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden gate bridge is a kind of near san francisco", "pln": ["(: cnet_isa_79bd384f37 (IsA golden_gate_bridge near_san_francisco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden glow is a kind of cutleaved coneflower", "pln": ["(: cnet_isa_5496a353bb (IsA golden_glow cutleaved_coneflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "golden gram is a kind of bean", "pln": ["(: cnet_isa_95fb0eddb9 (IsA golden_gram bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden groundsel is a kind of herb", "pln": ["(: cnet_isa_7b47aec3e7 (IsA golden_groundsel herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden hamster is a kind of hamster", "pln": ["(: cnet_isa_2219efa14c (IsA golden_hamster hamster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden handshake is a kind of severance agreement", "pln": ["(: cnet_isa_0d4708e3a8 (IsA golden_handshake severance_agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "golden horde is a kind of horde", "pln": ["(: cnet_isa_be474d0f8c (IsA golden_horde horde) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "golden larch is a kind of conifer", "pln": ["(: cnet_isa_5d5ee13870 (IsA golden_larch conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "goldilocks is a kind of aster", "pln": ["(: cnet_isa_2b22d72e74 (IsA goldilocks aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden mean is a kind of moderation", "pln": ["(: cnet_isa_3f7e7612d5 (IsA golden_mean moderation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden mole is a kind of mole", "pln": ["(: cnet_isa_e4922a9077 (IsA golden_mole mole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden oriole is a kind of old world oriole", "pln": ["(: cnet_isa_9b7db97885 (IsA golden_oriole old_world_oriole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden parachute is a kind of shark repellent", "pln": ["(: cnet_isa_de7c5a479d (IsA golden_parachute shark_repellent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden pheasant is a kind of pheasant", "pln": ["(: cnet_isa_864cc2c9a8 (IsA golden_pheasant pheasant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden plover is a kind of plover", "pln": ["(: cnet_isa_5b0951ef15 (IsA golden_plover plover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden polypody is a kind of fern", "pln": ["(: cnet_isa_f1e6a23839 (IsA golden_polypody fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden potho is a kind of liana", "pln": ["(: cnet_isa_8558859ff3 (IsA golden_potho liana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden retriever is a kind of dog", "pln": ["(: cnet_isa_6aa4ab8d53 (IsA golden_retriever dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden retriever is a kind of retriever", "pln": ["(: cnet_isa_83ec335157 (IsA golden_retriever retriever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden retriever is a kind of breed of dog", "pln": ["(: cnet_isa_fa3af4e577 (IsA golden_retriever breed_of_dog) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden retriever is a kind of type of dog", "pln": ["(: cnet_isa_a7ee852899 (IsA golden_retriever type_of_dog) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden rule is a kind of teaching", "pln": ["(: cnet_isa_87d37fe4dd (IsA golden_rule teaching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden rule is a kind of rule", "pln": ["(: cnet_isa_2ae42667f6 (IsA golden_rule rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden saxifrage is a kind of aquatic plant", "pln": ["(: cnet_isa_23d83444f2 (IsA golden_saxifrage aquatic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden section is a kind of proportion", "pln": ["(: cnet_isa_0078eaf482 (IsA golden_section proportion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden shiner is a kind of shiner", "pln": ["(: cnet_isa_3b8632d68c (IsA golden_shiner shiner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden shower tree is a kind of cassia", "pln": ["(: cnet_isa_5fa6392e9f (IsA golden_shower_tree cassia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden star is a kind of liliaceous plant", "pln": ["(: cnet_isa_5760436335 (IsA golden_star liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden thistle is a kind of thistle", "pln": ["(: cnet_isa_9ef277ce24 (IsA golden_thistle thistle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden wattle is a kind of wattle", "pln": ["(: cnet_isa_e3a7283c7c (IsA golden_wattle wattle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden wedding anniversary is a kind of wedding anniversary", "pln": ["(: cnet_isa_07969a4f93 (IsA golden_wedding_anniversary wedding_anniversary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden willow is a kind of osier", "pln": ["(: cnet_isa_a91d2aa8a5 (IsA golden_willow osier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden yarrow is a kind of woolly sunflower", "pln": ["(: cnet_isa_f8605ec42c (IsA golden_yarrow woolly_sunflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golden year is a kind of time of life", "pln": ["(: cnet_isa_f561892233 (IsA golden_year time_of_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goldenbush is a kind of shrub", "pln": ["(: cnet_isa_783027c1fd (IsA goldenbush shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goldenbush is a kind of wildflower", "pln": ["(: cnet_isa_2949e68226 (IsA goldenbush wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goldeneye is a kind of duck", "pln": ["(: cnet_isa_8fdee18475 (IsA goldeneye duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goldeneye is a kind of green lacewing", "pln": ["(: cnet_isa_f5882718f9 (IsA goldeneye green_lacewing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goldenrod is a kind of wildflower", "pln": ["(: cnet_isa_b1fc73e00b (IsA goldenrod wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goldenseal is a kind of herb", "pln": ["(: cnet_isa_7fbf084b2b (IsA goldenseal herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goldfield is a kind of district", "pln": ["(: cnet_isa_8b98b49e08 (IsA goldfield district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goldfield is a kind of wildflower", "pln": ["(: cnet_isa_b07c0e34e2 (IsA goldfield wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goldfinch is a kind of finch", "pln": ["(: cnet_isa_22e23dbca6 (IsA goldfinch finch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goldfish is a kind of carp", "pln": ["(: cnet_isa_774e9ea54a (IsA goldfish carp) (STV 1.0 0.9756))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goldfish is a kind of fish", "pln": ["(: cnet_isa_d93117fb1e (IsA goldfish fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goldfish is a kind of cyprinid", "pln": ["(: cnet_isa_03280e433f (IsA goldfish cyprinid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goldfish bowl is a kind of situation", "pln": ["(: cnet_isa_1ff8367795 (IsA goldfish_bowl situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goldie s fern is a kind of shield fern", "pln": ["(: cnet_isa_7134de7a7e (IsA goldie_s_fern shield_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goldilock is a kind of aster", "pln": ["(: cnet_isa_db0fdfca6b (IsA goldilock aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goldmine is a kind of mine", "pln": ["(: cnet_isa_0860dd0063 (IsA goldmine mine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goldmine is a kind of source", "pln": ["(: cnet_isa_276e1adeac (IsA goldmine source) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goldsmith is a kind of jewelry maker", "pln": ["(: cnet_isa_bab512c5c0 (IsA goldsmith jewelry_maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goldstone is a kind of sunstone", "pln": ["(: cnet_isa_acb5ddd3ce (IsA goldstone sunstone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goldthread is a kind of herb", "pln": ["(: cnet_isa_c55eddcc3f (IsA goldthread herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golem is a kind of mythical being", "pln": ["(: cnet_isa_69f341874f (IsA golem mythical_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golf is a kind of boring sport", "pln": ["(: cnet_isa_6062ed8bb9 (IsA golf boring_sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golf is a kind of elitist sport", "pln": ["(: cnet_isa_183b4a1c74 (IsA golf elitist_sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golf is a kind of expensive hobby", "pln": ["(: cnet_isa_e06fc15a5d (IsA golf expensive_hobby) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golf is a kind of healthy pastime", "pln": ["(: cnet_isa_849b5972e9 (IsA golf healthy_pastime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golf is a kind of sport", "pln": ["(: cnet_isa_69eeebe57f (IsA golf sport) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golf is a kind of outdoor game", "pln": ["(: cnet_isa_e94b27771c (IsA golf outdoor_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golf bag is a kind of bag", "pln": ["(: cnet_isa_abd3cbf519 (IsA golf_bag bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golf bag is a kind of golf equipment", "pln": ["(: cnet_isa_f8e2c955dd (IsA golf_bag golf_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golf ball is a kind of ball", "pln": ["(: cnet_isa_c9e6efe5c9 (IsA golf_ball ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golf ball is a kind of golf equipment", "pln": ["(: cnet_isa_db554b7014 (IsA golf_ball golf_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golf club is a kind of golf equipment", "pln": ["(: cnet_isa_a926e6f647 (IsA golf_club golf_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "golf club is a kind of club", "pln": ["(: cnet_isa_8f12408964 (IsA golf_club club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golf club head is a kind of head", "pln": ["(: cnet_isa_3e06ce373f (IsA golf_club_head head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golf course is a kind of course", "pln": ["(: cnet_isa_079e94bf35 (IsA golf_course course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golf equipment is a kind of sport equipment", "pln": ["(: cnet_isa_7db1d914af (IsA golf_equipment sport_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golf glove is a kind of glove", "pln": ["(: cnet_isa_a3e8c1242c (IsA golf_glove glove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golf glove is a kind of golf equipment", "pln": ["(: cnet_isa_a9374850f9 (IsA golf_glove golf_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golf lesson is a kind of lesson", "pln": ["(: cnet_isa_a97c75587a (IsA golf_lesson lesson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golf link is a kind of golf course", "pln": ["(: cnet_isa_f0407b5c8a (IsA golf_link golf_course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golf pro is a kind of golfer", "pln": ["(: cnet_isa_a9dbfc8930 (IsA golf_pro golfer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golf range is a kind of practice range", "pln": ["(: cnet_isa_e4ae072b1c (IsA golf_range practice_range) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "golf stroke is a kind of stroke", "pln": ["(: cnet_isa_05e1852def (IsA golf_stroke stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golf widow is a kind of wife", "pln": ["(: cnet_isa_ed5a866286 (IsA golf_widow wife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golfcart is a kind of golf equipment", "pln": ["(: cnet_isa_a6061b208e (IsA golfcart golf_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golfcart is a kind of motor vehicle", "pln": ["(: cnet_isa_97c76dc179 (IsA golfcart motor_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golfer is a kind of player", "pln": ["(: cnet_isa_440e7af214 (IsA golfer player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "golfing is a kind of playing", "pln": ["(: cnet_isa_7d2896ea29 (IsA golfing playing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golgi s cell is a kind of brain cell", "pln": ["(: cnet_isa_c5bd6fde13 (IsA golgi_s_cell brain_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golgi body is a kind of vesicle", "pln": ["(: cnet_isa_c5801667bd (IsA golgi_body vesicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goliard is a kind of scholar", "pln": ["(: cnet_isa_b2afb569be (IsA goliard scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goliath frog is a kind of true frog", "pln": ["(: cnet_isa_c266684e4b (IsA goliath_frog true_frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "golliwog is a kind of doll", "pln": ["(: cnet_isa_902a4bbe53 (IsA golliwog doll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gomphothere is a kind of elephant", "pln": ["(: cnet_isa_830c72d59c (IsA gomphothere elephant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gomphotheriidae is a kind of mammal family", "pln": ["(: cnet_isa_25e0aad968 (IsA gomphotheriidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gomphotherium is a kind of mammal genus", "pln": ["(: cnet_isa_6d21b34f3e (IsA gomphotherium mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gomphrena is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_de2f65d76f (IsA gomphrena caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gonad is a kind of endocrine gland", "pln": ["(: cnet_isa_7e28ced51e (IsA gonad endocrine_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gonadotropin is a kind of hormone", "pln": ["(: cnet_isa_59e34440e7 (IsA gonadotropin hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goncalo alve is a kind of zebrawood", "pln": ["(: cnet_isa_7538f366da (IsA goncalo_alve zebrawood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gond is a kind of dravidian", "pln": ["(: cnet_isa_cc97611b05 (IsA gond dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gondang wax is a kind of wax", "pln": ["(: cnet_isa_b075bba5d8 (IsA gondang_wax wax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gondi is a kind of south central dravidian", "pln": ["(: cnet_isa_0d9fa213bc (IsA gondi south_central_dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gondola is a kind of boat", "pln": ["(: cnet_isa_4759f263ef (IsA gondola boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gondola car is a kind of freight car", "pln": ["(: cnet_isa_5396531e4d (IsA gondola_car freight_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gondolier is a kind of boatman", "pln": ["(: cnet_isa_eeed5b464a (IsA gondolier boatman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goner is a kind of desperate", "pln": ["(: cnet_isa_8b70a02f76 (IsA goner desperate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gong is a kind of percussion instrument", "pln": ["(: cnet_isa_863d48451b (IsA gong percussion_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gongorism is a kind of euphuism", "pln": ["(: cnet_isa_3308ac26ef (IsA gongorism euphuism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gongorist is a kind of practitioner", "pln": ["(: cnet_isa_ad68dcd5f1 (IsA gongorist practitioner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gonif is a kind of wrongdoer", "pln": ["(: cnet_isa_2d4793a7ff (IsA gonif wrongdoer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goniometer is a kind of direction finder", "pln": ["(: cnet_isa_6a4b0daedd (IsA goniometer direction_finder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gonion is a kind of craniometric point", "pln": ["(: cnet_isa_489d149bd8 (IsA gonion craniometric_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goniopteris is a kind of fern genus", "pln": ["(: cnet_isa_a8eb8cd4ac (IsA goniopteris fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gonioscopy is a kind of examination", "pln": ["(: cnet_isa_9d7efd2576 (IsA gonioscopy examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gonococcus is a kind of bacteria", "pln": ["(: cnet_isa_546fac7dc8 (IsA gonococcus bacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gonorhynchidae is a kind of fish family", "pln": ["(: cnet_isa_981a5fa748 (IsA gonorhynchidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gonorhynchus is a kind of fish genus", "pln": ["(: cnet_isa_48d1e93a08 (IsA gonorhynchus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gonorrhea is a kind of venereal disease", "pln": ["(: cnet_isa_8744ef75db (IsA gonorrhea venereal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good is a kind of advantage", "pln": ["(: cnet_isa_a78e7f000c (IsA good advantage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good is a kind of morality", "pln": ["(: cnet_isa_937b3fadf6 (IsA good morality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good is a kind of quality", "pln": ["(: cnet_isa_963835de2c (IsA good quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good afternoon is a kind of farewell", "pln": ["(: cnet_isa_6cf2cc9356 (IsA good_afternoon farewell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good afternoon is a kind of greeting", "pln": ["(: cnet_isa_0095fd1ba6 (IsA good_afternoon greeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "good assertion is a kind of statement", "pln": ["(: cnet_isa_e110a8a892 (IsA good_assertion statement) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good authority is a kind of testimony", "pln": ["(: cnet_isa_271e507ff5 (IsA good_authority testimony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good continuation is a kind of gestalt law of organization", "pln": ["(: cnet_isa_b079e95738 (IsA good_continuation gestalt_law_of_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good doctor is a kind of doctor", "pln": ["(: cnet_isa_7326495687 (IsA good_doctor doctor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good egg is a kind of good person", "pln": ["(: cnet_isa_b75520f580 (IsA good_egg good_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good faith is a kind of honesty", "pln": ["(: cnet_isa_b562c6b33b (IsA good_faith honesty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good form is a kind of propriety", "pln": ["(: cnet_isa_91583bd0b6 (IsA good_form propriety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good fortune is a kind of fortune", "pln": ["(: cnet_isa_150ed0e210 (IsA good_fortune fortune) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good friday is a kind of christian holy day", "pln": ["(: cnet_isa_a871f1b83e (IsA good_friday christian_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good guy is a kind of person", "pln": ["(: cnet_isa_a8fe2962c2 (IsA good_guy person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good health is a kind of physiological state", "pln": ["(: cnet_isa_399f49dba3 (IsA good_health physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good humor is a kind of temper", "pln": ["(: cnet_isa_ce9bebe5df (IsA good_humor temper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good king henry is a kind of goosefoot", "pln": ["(: cnet_isa_787c11f372 (IsA good_king_henry goosefoot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good luck is a kind of luck", "pln": ["(: cnet_isa_bd2c9e591c (IsA good_luck luck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good manner is a kind of important part of good behavior", "pln": ["(: cnet_isa_40c1f92011 (IsA good_manner important_part_of_good_behavior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good morning is a kind of farewell", "pln": ["(: cnet_isa_7525b43c6c (IsA good_morning farewell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good morning is a kind of greeting", "pln": ["(: cnet_isa_ec20718900 (IsA good_morning greeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good nature is a kind of disposition", "pln": ["(: cnet_isa_c559073ff5 (IsA good_nature disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good night is a kind of farewell", "pln": ["(: cnet_isa_28ca7ebd87 (IsA good_night farewell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good old boy is a kind of southerner", "pln": ["(: cnet_isa_7e09bc126b (IsA good_old_boy southerner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good old boy is a kind of white man", "pln": ["(: cnet_isa_7325c09ad3 (IsA good_old_boy white_man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good part is a kind of strength", "pln": ["(: cnet_isa_a4c0d11d31 (IsA good_part strength) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good person is a kind of person", "pln": ["(: cnet_isa_e24dc2e28a (IsA good_person person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good samaritan is a kind of benefactor", "pln": ["(: cnet_isa_4ed0a999e6 (IsA good_samaritan benefactor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good temperedness is a kind of cheerfulness", "pln": ["(: cnet_isa_ef9c5dd29a (IsA good_temperedness cheerfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good time is a kind of experience", "pln": ["(: cnet_isa_9e92eeff0b (IsA good_time experience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "good weather is a kind of weather", "pln": ["(: cnet_isa_0b51068a89 (IsA good_weather weather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good will is a kind of intangible", "pln": ["(: cnet_isa_cb0974a52f (IsA good_will intangible) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "good will is a kind of friendliness", "pln": ["(: cnet_isa_8ae56f330e (IsA good_will friendliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "good word is a kind of new", "pln": ["(: cnet_isa_d811392ce8 (IsA good_word new) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goodenia is a kind of dicot genus", "pln": ["(: cnet_isa_31d0248cec (IsA goodenia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goodeniaceae is a kind of dicot family", "pln": ["(: cnet_isa_7dd63e7d8d (IsA goodeniaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goody goody is a kind of sycophant", "pln": ["(: cnet_isa_359921f6cc (IsA goody_goody sycophant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goodyera is a kind of monocot genus", "pln": ["(: cnet_isa_dcf82fda9e (IsA goodyera monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "google is a kind of search engine", "pln": ["(: cnet_isa_2a2785d232 (IsA google search_engine) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "googly is a kind of bowling", "pln": ["(: cnet_isa_322c04572f (IsA googly bowling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "googol is a kind of cardinal number", "pln": ["(: cnet_isa_adcc697bbc (IsA googol cardinal_number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "googolplex is a kind of cardinal number", "pln": ["(: cnet_isa_296ee44914 (IsA googolplex cardinal_number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goosander is a kind of merganser", "pln": ["(: cnet_isa_0f4ac5e011 (IsA goosander merganser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goose is a kind of bird", "pln": ["(: cnet_isa_4e764dffa2 (IsA goose bird) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goose is a kind of anseriform bird", "pln": ["(: cnet_isa_2c63aa642d (IsA goose anseriform_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goose is a kind of poultry", "pln": ["(: cnet_isa_fc170c0604 (IsA goose poultry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goose barnacle is a kind of barnacle", "pln": ["(: cnet_isa_8108ee6a97 (IsA goose_barnacle barnacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goose down is a kind of down", "pln": ["(: cnet_isa_14c7062404 (IsA goose_down down) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goose grass is a kind of panic grass", "pln": ["(: cnet_isa_80e35a65c8 (IsA goose_grass panic_grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goose grease is a kind of animal oil", "pln": ["(: cnet_isa_a94aa793f2 (IsA goose_grease animal_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goose liver is a kind of liver", "pln": ["(: cnet_isa_e485dd0bd5 (IsA goose_liver liver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goose step is a kind of march", "pln": ["(: cnet_isa_bae78e62c2 (IsA goose_step march) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gooseberry is a kind of currant", "pln": ["(: cnet_isa_288b568918 (IsA gooseberry currant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gooseberry is a kind of shrub", "pln": ["(: cnet_isa_47efcacd1d (IsA gooseberry shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goosefish is a kind of spiny finned fish", "pln": ["(: cnet_isa_f78ab9eee5 (IsA goosefish spiny_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goosefoot is a kind of herb", "pln": ["(: cnet_isa_410edcbada (IsA goosefoot herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gooseneck is a kind of curve", "pln": ["(: cnet_isa_aba0a2b939 (IsA gooseneck curve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gooseneck loosestrife is a kind of loosestrife", "pln": ["(: cnet_isa_014df6b2c4 (IsA gooseneck_loosestrife loosestrife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gopher is a kind of pocket rat", "pln": ["(: cnet_isa_bacac0df40 (IsA gopher pocket_rat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gopher is a kind of american", "pln": ["(: cnet_isa_6b3b6628f0 (IsA gopher american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gopher hole is a kind of hole", "pln": ["(: cnet_isa_389945e8bf (IsA gopher_hole hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gopher snake is a kind of bull snake", "pln": ["(: cnet_isa_18130b5aff (IsA gopher_snake bull_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gopher tortoise is a kind of tortoise", "pln": ["(: cnet_isa_656b506026 (IsA gopher_tortoise tortoise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gopherus is a kind of reptile genus", "pln": ["(: cnet_isa_d4fe103bc4 (IsA gopherus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goral is a kind of goat antelope", "pln": ["(: cnet_isa_51cf28a951 (IsA goral goat_antelope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gordian knot is a kind of knot", "pln": ["(: cnet_isa_c21ba79dd5 (IsA gordian_knot knot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gordian knot is a kind of problem", "pln": ["(: cnet_isa_30171eef99 (IsA gordian_knot problem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gordon setter is a kind of setter", "pln": ["(: cnet_isa_eb45a0b16d (IsA gordon_setter setter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gore is a kind of piece of cloth", "pln": ["(: cnet_isa_b2d9165728 (IsA gore piece_of_cloth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gore is a kind of blood", "pln": ["(: cnet_isa_49f3e2f7d0 (IsA gore blood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gorge is a kind of ravine", "pln": ["(: cnet_isa_6566fa2d6b (IsA gorge ravine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gorgerin is a kind of molding", "pln": ["(: cnet_isa_165a84fc76 (IsA gorgerin molding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gorget is a kind of armor plate", "pln": ["(: cnet_isa_669c56dcaf (IsA gorget armor_plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gorgon is a kind of mythical monster", "pln": ["(: cnet_isa_b4d83ac2e4 (IsA gorgon mythical_monster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gorgonacea is a kind of animal order", "pln": ["(: cnet_isa_e69f1f910c (IsA gorgonacea animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gorgonian is a kind of coral", "pln": ["(: cnet_isa_60ae2c529c (IsA gorgonian coral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gorgonocephalus is a kind of echinoderm genus", "pln": ["(: cnet_isa_6d1f50ba55 (IsA gorgonocephalus echinoderm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gorgonzola is a kind of bleu", "pln": ["(: cnet_isa_d87f39617b (IsA gorgonzola bleu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gorilla is a kind of ape", "pln": ["(: cnet_isa_2abddb592a (IsA gorilla ape) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gorilla is a kind of great ape", "pln": ["(: cnet_isa_d2558955b3 (IsA gorilla great_ape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gorse is a kind of shrub", "pln": ["(: cnet_isa_085d1b1c80 (IsA gorse shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goshawk is a kind of hawk", "pln": ["(: cnet_isa_450e432b4e (IsA goshawk hawk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gosling is a kind of goose", "pln": ["(: cnet_isa_ac1a3102c0 (IsA gosling goose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gospel is a kind of folk music", "pln": ["(: cnet_isa_404aa6a042 (IsA gospel folk_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gospel is a kind of doctrine", "pln": ["(: cnet_isa_1f5b3d16b2 (IsA gospel doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gospel is a kind of sacred text", "pln": ["(: cnet_isa_dc34868f9f (IsA gospel sacred_text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gospel is a kind of truth", "pln": ["(: cnet_isa_0dcd50a206 (IsA gospel truth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gossamer is a kind of gauze", "pln": ["(: cnet_isa_e7f1ed63f4 (IsA gossamer gauze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gossip is a kind of report", "pln": ["(: cnet_isa_f46e10b262 (IsA gossip report) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gossip is a kind of communicator", "pln": ["(: cnet_isa_77ea18c4a8 (IsA gossip communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gossip columnist is a kind of newspaper columnist", "pln": ["(: cnet_isa_94a082c053 (IsA gossip_columnist newspaper_columnist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gossiping is a kind of conversation", "pln": ["(: cnet_isa_2ca3f5d925 (IsA gossiping conversation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gossypium is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_ce2868795e (IsA gossypium dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goth is a kind of teuton", "pln": ["(: cnet_isa_20651d1ce7 (IsA goth teuton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gothic is a kind of architectural style", "pln": ["(: cnet_isa_d04e018349 (IsA gothic architectural_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gothic is a kind of east germanic", "pln": ["(: cnet_isa_dcde649ddd (IsA gothic east_germanic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gothic is a kind of font", "pln": ["(: cnet_isa_d7b6d6962a (IsA gothic font) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gothic arch is a kind of pointed arch", "pln": ["(: cnet_isa_07c962b6a7 (IsA gothic_arch pointed_arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gothic romance is a kind of romance", "pln": ["(: cnet_isa_94ad6d0caa (IsA gothic_romance romance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gothic romancer is a kind of writer", "pln": ["(: cnet_isa_d5f0bf0da8 (IsA gothic_romancer writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gotterdammerung is a kind of myth", "pln": ["(: cnet_isa_d9b89fdbed (IsA gotterdammerung myth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gouache is a kind of watercolor", "pln": ["(: cnet_isa_db213782bd (IsA gouache watercolor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gouda is a kind of cheese", "pln": ["(: cnet_isa_5c3b15bc71 (IsA gouda cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gouge is a kind of creating by removal", "pln": ["(: cnet_isa_b447ecbd71 (IsA gouge creating_by_removal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gouge is a kind of edge tool", "pln": ["(: cnet_isa_2d0bc7b09a (IsA gouge edge_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gouger is a kind of combatant", "pln": ["(: cnet_isa_7b1bf03b5c (IsA gouger combatant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "goulash is a kind of stew", "pln": ["(: cnet_isa_58553a8eba (IsA goulash stew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gourd is a kind of bottle", "pln": ["(: cnet_isa_66c75a5ec6 (IsA gourd bottle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gourd is a kind of fruit", "pln": ["(: cnet_isa_aa6a05a353 (IsA gourd fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gourd is a kind of vine", "pln": ["(: cnet_isa_09b36830e9 (IsA gourd vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gourde is a kind of haitian monetary unit", "pln": ["(: cnet_isa_f8286115e0 (IsA gourde haitian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gourmandism is a kind of disposition", "pln": ["(: cnet_isa_709eb4c4fc (IsA gourmandism disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gout is a kind of arthritis", "pln": ["(: cnet_isa_407a3ab051 (IsA gout arthritis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "governed is a kind of citizenry", "pln": ["(: cnet_isa_f9a0c14142 (IsA governed citizenry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "governess is a kind of teacher", "pln": ["(: cnet_isa_3f3b43e3eb (IsA governess teacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "governing board is a kind of board", "pln": ["(: cnet_isa_6a128bbc61 (IsA governing_board board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "government is a kind of organization", "pln": ["(: cnet_isa_dc43ddfc5e (IsA government organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "government is a kind of social control", "pln": ["(: cnet_isa_a4509e4201 (IsA government social_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "government is a kind of polity", "pln": ["(: cnet_isa_7a9bc3a4f6 (IsA government polity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "government is a kind of system", "pln": ["(: cnet_isa_d704cf19c8 (IsA government system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "government accounting office is a kind of agency", "pln": ["(: cnet_isa_810b9e0e8e (IsA government_accounting_office agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "government agent is a kind of agent", "pln": ["(: cnet_isa_643ee53c63 (IsA government_agent agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "government bond is a kind of bond", "pln": ["(: cnet_isa_ee545a8fae (IsA government_bond bond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "government building is a kind of building", "pln": ["(: cnet_isa_01dd214885 (IsA government_building building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "government department is a kind of department", "pln": ["(: cnet_isa_b3ed476b28 (IsA government_department department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "government in exile is a kind of government", "pln": ["(: cnet_isa_9b580680fd (IsA government_in_exile government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "government income is a kind of income", "pln": ["(: cnet_isa_17afcff5b4 (IsA government_income income) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "government man is a kind of government agent", "pln": ["(: cnet_isa_f120d9dd6e (IsA government_man government_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "government office is a kind of office", "pln": ["(: cnet_isa_bc2a2396ae (IsA government_office office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "government official is a kind of administration", "pln": ["(: cnet_isa_66e25d40ae (IsA government_official administration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "government security is a kind of security", "pln": ["(: cnet_isa_5c0e3756a8 (IsA government_security security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "governor s plum is a kind of shrub", "pln": ["(: cnet_isa_79a3c7a28f (IsA governor_s_plum shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "governor s race is a kind of political campaign", "pln": ["(: cnet_isa_c6cb0db10a (IsA governor_s_race political_campaign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "governor is a kind of control", "pln": ["(: cnet_isa_4f8dac90d5 (IsA governor control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "governor is a kind of politician", "pln": ["(: cnet_isa_09bdda368d (IsA governor politician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "governor general is a kind of governor", "pln": ["(: cnet_isa_ba190e5b70 (IsA governor_general governor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "governorship is a kind of position", "pln": ["(: cnet_isa_3defd0d860 (IsA governorship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gowen cypress is a kind of cypress", "pln": ["(: cnet_isa_adef6bacc5 (IsA gowen_cypress cypress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gown is a kind of dress", "pln": ["(: cnet_isa_bc1fc96c16 (IsA gown dress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gown is a kind of garment", "pln": ["(: cnet_isa_15b30edb58 (IsA gown garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gown is a kind of outerwear", "pln": ["(: cnet_isa_23ec6ae7d0 (IsA gown outerwear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gown is a kind of university", "pln": ["(: cnet_isa_a440606a39 (IsA gown university) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "goy is a kind of christian", "pln": ["(: cnet_isa_26c9ee4052 (IsA goy christian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graafian follicle is a kind of follicle", "pln": ["(: cnet_isa_83aec94413 (IsA graafian_follicle follicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grab is a kind of mechanical device", "pln": ["(: cnet_isa_d42166f2bf (IsA grab mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grab bag is a kind of container", "pln": ["(: cnet_isa_646dfc4750 (IsA grab_bag container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grab bag is a kind of assortment", "pln": ["(: cnet_isa_dab0acba76 (IsA grab_bag assortment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grab bar is a kind of bar", "pln": ["(: cnet_isa_a318308078 (IsA grab_bar bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grab sample is a kind of sample", "pln": ["(: cnet_isa_58a0049efc (IsA grab_sample sample) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grabber is a kind of unpleasant person", "pln": ["(: cnet_isa_5b425802e9 (IsA grabber unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grace is a kind of good nature", "pln": ["(: cnet_isa_8bf87d3a95 (IsA grace good_nature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grace is a kind of gracefulness", "pln": ["(: cnet_isa_53dc7d6889 (IsA grace gracefulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grace is a kind of beneficence", "pln": ["(: cnet_isa_bdb152761c (IsA grace beneficence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grace is a kind of state", "pln": ["(: cnet_isa_71b19e170e (IsA grace state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grace is a kind of prayer", "pln": ["(: cnet_isa_1fa1e1f9e1 (IsA grace prayer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grace is a kind of greek deity", "pln": ["(: cnet_isa_b3bd1d291d (IsA grace greek_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grace cup is a kind of cup", "pln": ["(: cnet_isa_5771bdf69e (IsA grace_cup cup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grace note is a kind of note", "pln": ["(: cnet_isa_97d23b9a4c (IsA grace_note note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grace period is a kind of time period", "pln": ["(: cnet_isa_0fc33db4db (IsA grace_period time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gracefulness is a kind of carriage", "pln": ["(: cnet_isa_43a8e69cbb (IsA gracefulness carriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gracelessness is a kind of awkwardness", "pln": ["(: cnet_isa_ae68272ceb (IsA gracelessness awkwardness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gracilariid is a kind of tineoid", "pln": ["(: cnet_isa_23bd2a521e (IsA gracilariid tineoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gracilariidae is a kind of arthropod family", "pln": ["(: cnet_isa_82554aed2b (IsA gracilariidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graciousness is a kind of courtesy", "pln": ["(: cnet_isa_6a6d178200 (IsA graciousness courtesy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grackle is a kind of new world blackbird", "pln": ["(: cnet_isa_1c2c6f559f (IsA grackle new_world_blackbird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gracula is a kind of bird genus", "pln": ["(: cnet_isa_15d2c437f9 (IsA gracula bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grad is a kind of angular unit", "pln": ["(: cnet_isa_f1a8345380 (IsA grad angular_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gradable opposition is a kind of opposition", "pln": ["(: cnet_isa_a0f3cc8955 (IsA gradable_opposition opposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gradation is a kind of quantification", "pln": ["(: cnet_isa_614ee4b3cb (IsA gradation quantification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gradation is a kind of rank", "pln": ["(: cnet_isa_6bc789c49b (IsA gradation rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grade is a kind of cattle", "pln": ["(: cnet_isa_1005ce8137 (IsA grade cattle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "grade is a kind of elevation", "pln": ["(: cnet_isa_a4f16ee98d (IsA grade elevation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grade is a kind of gradient", "pln": ["(: cnet_isa_ae97d7cd53 (IsA grade gradient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "grade is a kind of ablaut", "pln": ["(: cnet_isa_c1ee5dd6c7 (IsA grade ablaut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grade is a kind of rank", "pln": ["(: cnet_isa_860420b98c (IsA grade rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grade point is a kind of mark", "pln": ["(: cnet_isa_ad7e8cec26 (IsA grade_point mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "grade point average is a kind of standard", "pln": ["(: cnet_isa_ada7aa29db (IsA grade_point_average standard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grade school is a kind of school", "pln": ["(: cnet_isa_751ade8169 (IsA grade_school school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grade separation is a kind of crossing", "pln": ["(: cnet_isa_c4d031839e (IsA grade_separation crossing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grader is a kind of critic", "pln": ["(: cnet_isa_66e5c8a430 (IsA grader critic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gradient is a kind of position", "pln": ["(: cnet_isa_30bd61f6b5 (IsA gradient position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gradient is a kind of change", "pln": ["(: cnet_isa_307fd97300 (IsA gradient change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gradient vector is a kind of vector", "pln": ["(: cnet_isa_1ea9cf688c (IsA gradient_vector vector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grading is a kind of construction", "pln": ["(: cnet_isa_9e0c385438 (IsA grading construction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gradual is a kind of antiphon", "pln": ["(: cnet_isa_22d2f85f85 (IsA gradual antiphon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graduality is a kind of speed", "pln": ["(: cnet_isa_228b657e9c (IsA graduality speed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gradualness is a kind of gradient", "pln": ["(: cnet_isa_d7077d74c7 (IsA gradualness gradient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graduate is a kind of measuring instrument", "pln": ["(: cnet_isa_f9c649070b (IsA graduate measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graduate nurse is a kind of nurse", "pln": ["(: cnet_isa_c0b8959260 (IsA graduate_nurse nurse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graduate school is a kind of school", "pln": ["(: cnet_isa_65f84ab635 (IsA graduate_school school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graduate student is a kind of collegian", "pln": ["(: cnet_isa_7c816b2507 (IsA graduate_student collegian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graduated cylinder is a kind of graduate", "pln": ["(: cnet_isa_8aa534b34f (IsA graduated_cylinder graduate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graduating class is a kind of class", "pln": ["(: cnet_isa_1a9d0752cf (IsA graduating_class class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graduation is a kind of completion", "pln": ["(: cnet_isa_f5c6fc40a4 (IsA graduation completion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graduation is a kind of line", "pln": ["(: cnet_isa_2f47e8350b (IsA graduation line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graeco roman deity is a kind of deity", "pln": ["(: cnet_isa_8505152053 (IsA graeco_roman_deity deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graffito is a kind of decoration", "pln": ["(: cnet_isa_580caa5e2c (IsA graffito decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graft is a kind of attachment", "pln": ["(: cnet_isa_f01d1201c4 (IsA graft attachment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graft is a kind of animal tissue", "pln": ["(: cnet_isa_bd7065f297 (IsA graft animal_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graham bread is a kind of dark bread", "pln": ["(: cnet_isa_c5358f0402 (IsA graham_bread dark_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graham cracker is a kind of cracker", "pln": ["(: cnet_isa_3c255cfc67 (IsA graham_cracker cracker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grail is a kind of aim", "pln": ["(: cnet_isa_5b0f5690ee (IsA grail aim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grain is a kind of smallness", "pln": ["(: cnet_isa_70163ea791 (IsA grain smallness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grain is a kind of texture", "pln": ["(: cnet_isa_01bd6863bc (IsA grain texture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grain is a kind of foodstuff", "pln": ["(: cnet_isa_c920c2e53a (IsA grain foodstuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grain is a kind of atom", "pln": ["(: cnet_isa_3485c31470 (IsA grain atom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grain is a kind of cereal", "pln": ["(: cnet_isa_8759c477c8 (IsA grain cereal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grain is a kind of seed", "pln": ["(: cnet_isa_00228ef899 (IsA grain seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grain is a kind of apothecary unit", "pln": ["(: cnet_isa_b19407ed53 (IsA grain apothecary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "grain is a kind of avoirdupois unit", "pln": ["(: cnet_isa_d6b03d4d37 (IsA grain avoirdupois_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grain is a kind of metric weight unit", "pln": ["(: cnet_isa_e8f3717b6d (IsA grain metric_weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grain is a kind of troy unit", "pln": ["(: cnet_isa_ca9a9ebd09 (IsA grain troy_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grain is a kind of leather", "pln": ["(: cnet_isa_d79d37086f (IsA grain leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grain merchant is a kind of merchant", "pln": ["(: cnet_isa_ef634296c7 (IsA grain_merchant merchant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grain moth is a kind of gelechiid", "pln": ["(: cnet_isa_fc046bd20a (IsA grain_moth gelechiid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grain sorghum is a kind of sorghum", "pln": ["(: cnet_isa_69b6c0c255 (IsA grain_sorghum sorghum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grainfield is a kind of field", "pln": ["(: cnet_isa_47af851f09 (IsA grainfield field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graining is a kind of grain", "pln": ["(: cnet_isa_3164432ff3 (IsA graining grain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grain of paradise is a kind of herb", "pln": ["(: cnet_isa_50d9a42d59 (IsA grain_of_paradise herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grainy club is a kind of clavicipitaceae", "pln": ["(: cnet_isa_52fbe17651 (IsA grainy_club clavicipitaceae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gram s method is a kind of staining", "pln": ["(: cnet_isa_7fe7f0d617 (IsA gram_s_method staining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gram s solution is a kind of solution", "pln": ["(: cnet_isa_793c57a7c8 (IsA gram_s_solution solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gram is a kind of metric weight unit", "pln": ["(: cnet_isa_7a435d22e2 (IsA gram metric_weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gram atom is a kind of metric weight unit", "pln": ["(: cnet_isa_09e62ed56c (IsA gram_atom metric_weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gram molecule is a kind of metric weight unit", "pln": ["(: cnet_isa_53ae758343 (IsA gram_molecule metric_weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grama is a kind of grass", "pln": ["(: cnet_isa_d4433d2f97 (IsA grama grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gramicidin is a kind of antibiotic", "pln": ["(: cnet_isa_5a88366445 (IsA gramicidin antibiotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gramicidin is a kind of antiseptic", "pln": ["(: cnet_isa_f43bab37b5 (IsA gramicidin antiseptic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graminale is a kind of plant order", "pln": ["(: cnet_isa_7e0aa50f64 (IsA graminale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gramineae is a kind of monocot family", "pln": ["(: cnet_isa_909789384d (IsA gramineae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gramineous plant is a kind of herb", "pln": ["(: cnet_isa_79d3bbf001 (IsA gramineous_plant herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grammar is a kind of synchronic linguistic", "pln": ["(: cnet_isa_b50ce58107 (IsA grammar synchronic_linguistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grammar school is a kind of secondary school", "pln": ["(: cnet_isa_b697f4736b (IsA grammar_school secondary_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grammarian is a kind of linguist", "pln": ["(: cnet_isa_12d5d1d961 (IsA grammarian linguist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grammatical category is a kind of class", "pln": ["(: cnet_isa_6af6fce80e (IsA grammatical_category class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grammatical meaning is a kind of meaning", "pln": ["(: cnet_isa_d650d327e8 (IsA grammatical_meaning meaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grammatical relation is a kind of linguistic relation", "pln": ["(: cnet_isa_798e76ca9c (IsA grammatical_relation linguistic_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grammatical rule is a kind of rule", "pln": ["(: cnet_isa_4c43ae5188 (IsA grammatical_rule rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grammatophyllum is a kind of monocot genus", "pln": ["(: cnet_isa_0844391e7c (IsA grammatophyllum monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gramophone is a kind of record player", "pln": ["(: cnet_isa_51e90c1f3f (IsA gramophone record_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grampus is a kind of dolphin", "pln": ["(: cnet_isa_fa06d32f11 (IsA grampus dolphin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "granadilla is a kind of passion fruit", "pln": ["(: cnet_isa_e386ba8ef1 (IsA granadilla passion_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "granadilla is a kind of passionflower", "pln": ["(: cnet_isa_e6363b24c3 (IsA granadilla passionflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "granadilla tree is a kind of tree", "pln": ["(: cnet_isa_d2f44d9474 (IsA granadilla_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "granadilla wood is a kind of wood", "pln": ["(: cnet_isa_7bc0d0bf0f (IsA granadilla_wood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "granary is a kind of storehouse", "pln": ["(: cnet_isa_1475a350fe (IsA granary storehouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grand circle is a kind of gymnastic exercise", "pln": ["(: cnet_isa_0a51652c86 (IsA grand_circle gymnastic_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grand dragon is a kind of head", "pln": ["(: cnet_isa_c950179023 (IsA grand_dragon head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grand duchess is a kind of duchess", "pln": ["(: cnet_isa_8824e1599b (IsA grand_duchess duchess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grand duchy is a kind of domain", "pln": ["(: cnet_isa_29d1c7d4a5 (IsA grand_duchy domain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grand duke is a kind of prince", "pln": ["(: cnet_isa_f9621db8fd (IsA grand_duke prince) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "grand guignol is a kind of play", "pln": ["(: cnet_isa_355adc4604 (IsA grand_guignol play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grand inquisitor is a kind of inquisitor", "pln": ["(: cnet_isa_e53117d78e (IsA grand_inquisitor inquisitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grand jury is a kind of jury", "pln": ["(: cnet_isa_8937f74751 (IsA grand_jury jury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grand lama is a kind of lama", "pln": ["(: cnet_isa_20b476ac6b (IsA grand_lama lama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "grand larceny is a kind of larceny", "pln": ["(: cnet_isa_f8f07c7d97 (IsA grand_larceny larceny) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grand mal is a kind of epileptic seizure", "pln": ["(: cnet_isa_1634d5f90a (IsA grand_mal epileptic_seizure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grand mal epilepsy is a kind of epilepsy", "pln": ["(: cnet_isa_d49ffe677b (IsA grand_mal_epilepsy epilepsy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grand marnier is a kind of orange liqueur", "pln": ["(: cnet_isa_10beed2360 (IsA grand_marnier orange_liqueur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grand mufti is a kind of mufti", "pln": ["(: cnet_isa_f5211ae10d (IsA grand_mufti mufti) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grand national is a kind of steeplechase", "pln": ["(: cnet_isa_da5005924e (IsA grand_national steeplechase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grand opera is a kind of opera", "pln": ["(: cnet_isa_90020e54f0 (IsA grand_opera opera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grand piano is a kind of piano", "pln": ["(: cnet_isa_6e3c446c57 (IsA grand_piano piano) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grand prix is a kind of automobile race", "pln": ["(: cnet_isa_40bf7b07eb (IsA grand_prix automobile_race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grand slam is a kind of slam", "pln": ["(: cnet_isa_f787b5878b (IsA grand_slam slam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grand total is a kind of sum", "pln": ["(: cnet_isa_1ee7d3d940 (IsA grand_total sum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grand tour is a kind of tour", "pln": ["(: cnet_isa_61c168ac90 (IsA grand_tour tour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grandchild is a kind of offspring", "pln": ["(: cnet_isa_03f62c7461 (IsA grandchild offspring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "granddaughter is a kind of grandchild", "pln": ["(: cnet_isa_4a9ffc2874 (IsA granddaughter grandchild) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "grande dame is a kind of dame", "pln": ["(: cnet_isa_fa1d357481 (IsA grande_dame dame) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grandee is a kind of nobleman", "pln": ["(: cnet_isa_b381a3badc (IsA grandee nobleman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "grandfather is a kind of male", "pln": ["(: cnet_isa_943e532be0 (IsA grandfather male) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grandfather is a kind of grandparent", "pln": ["(: cnet_isa_123a94a529 (IsA grandfather grandparent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grandfather clause is a kind of exemption", "pln": ["(: cnet_isa_38b8b69093 (IsA grandfather_clause exemption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grandfather clock is a kind of pendulum clock", "pln": ["(: cnet_isa_ce0a1be393 (IsA grandfather_clock pendulum_clock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grandiosity is a kind of expressive style", "pln": ["(: cnet_isa_cbdeeff503 (IsA grandiosity expressive_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grandma is a kind of grandparent", "pln": ["(: cnet_isa_df32602304 (IsA grandma grandparent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "grandmaster is a kind of player", "pln": ["(: cnet_isa_e6a2fecd5e (IsA grandmaster player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grandmother is a kind of grandparent", "pln": ["(: cnet_isa_7d78f8ba04 (IsA grandmother grandparent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grandparent is a kind of forebear", "pln": ["(: cnet_isa_4a00ad1d4b (IsA grandparent forebear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grandparent is a kind of parent s parent", "pln": ["(: cnet_isa_afc4218d88 (IsA grandparent parent_s_parent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grandson is a kind of grandchild", "pln": ["(: cnet_isa_d82e46475d (IsA grandson grandchild) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grandstand is a kind of stand", "pln": ["(: cnet_isa_20b506f40a (IsA grandstand stand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grandstand is a kind of audience", "pln": ["(: cnet_isa_20c532ff0f (IsA grandstand audience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grandstander is a kind of exhibitionist", "pln": ["(: cnet_isa_0268e2d669 (IsA grandstander exhibitionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grange is a kind of farm", "pln": ["(: cnet_isa_ac707fe69b (IsA grange farm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "granite is a kind of stone", "pln": ["(: cnet_isa_edf040727f (IsA granite stone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "granite is a kind of very hard type of rock", "pln": ["(: cnet_isa_343209ae92 (IsA granite very_hard_type_of_rock) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "granite is a kind of steadiness", "pln": ["(: cnet_isa_ceac811e8e (IsA granite steadiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "granite is a kind of batholith", "pln": ["(: cnet_isa_0dc203cc16 (IsA granite batholith) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "granite stater is a kind of american", "pln": ["(: cnet_isa_d19cf89f8c (IsA granite_stater american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graniteware is a kind of enamelware", "pln": ["(: cnet_isa_456e094c6b (IsA graniteware enamelware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "granny s bonnet is a kind of columbine", "pln": ["(: cnet_isa_0966ea8592 (IsA granny_s_bonnet columbine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "granny is a kind of old woman", "pln": ["(: cnet_isa_0104b03af2 (IsA granny old_woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "granny knot is a kind of reef knot", "pln": ["(: cnet_isa_abcd18f119 (IsA granny_knot reef_knot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "granny smith is a kind of eating apple", "pln": ["(: cnet_isa_4df156f5bd (IsA granny_smith eating_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "granola is a kind of cold cereal", "pln": ["(: cnet_isa_b2aec77c38 (IsA granola cold_cereal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "granola bar is a kind of cookie", "pln": ["(: cnet_isa_e5228c9f4c (IsA granola_bar cookie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "grant is a kind of allotment", "pln": ["(: cnet_isa_0f32b7a2e7 (IsA grant allotment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grant is a kind of right", "pln": ["(: cnet_isa_0ce2af2acf (IsA grant right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grant is a kind of transferred property", "pln": ["(: cnet_isa_6d31a7db0e (IsA grant transferred_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grant is a kind of financial aid", "pln": ["(: cnet_isa_a5931230f5 (IsA grant financial_aid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "grant in aid is a kind of grant", "pln": ["(: cnet_isa_d1e96229c5 (IsA grant_in_aid grant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grant in aid is a kind of financial aid", "pln": ["(: cnet_isa_86e5d0f1e3 (IsA grant_in_aid financial_aid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grantee is a kind of recipient", "pln": ["(: cnet_isa_c6f86bae3c (IsA grantee recipient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "granter is a kind of person", "pln": ["(: cnet_isa_ae52729fa4 (IsA granter person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grantor is a kind of granter", "pln": ["(: cnet_isa_fec2e5cc42 (IsA grantor granter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "granular pearlite is a kind of pearlite", "pln": ["(: cnet_isa_63d243be0c (IsA granular_pearlite pearlite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "granulated sugar is a kind of sugar", "pln": ["(: cnet_isa_72a39929a9 (IsA granulated_sugar sugar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "granulation is a kind of formation", "pln": ["(: cnet_isa_941f34c966 (IsA granulation formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "granulation is a kind of connective tissue", "pln": ["(: cnet_isa_00e8708792 (IsA granulation connective_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "granule is a kind of grain", "pln": ["(: cnet_isa_bf485a9848 (IsA granule grain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "granulocyte is a kind of leukocyte", "pln": ["(: cnet_isa_57c224f363 (IsA granulocyte leukocyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "granuloma is a kind of tumor", "pln": ["(: cnet_isa_2f6488bdfb (IsA granuloma tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "granuloma inguinale is a kind of venereal disease", "pln": ["(: cnet_isa_6815ffd2c4 (IsA granuloma_inguinale venereal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "granville wilt is a kind of wilt", "pln": ["(: cnet_isa_8a3d4e9e8b (IsA granville_wilt wilt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grape is a kind of edible fruit", "pln": ["(: cnet_isa_e30bf9561a (IsA grape edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grape is a kind of vine", "pln": ["(: cnet_isa_8c24a40aab (IsA grape vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grape arbor is a kind of arbor", "pln": ["(: cnet_isa_30b92da4b4 (IsA grape_arbor arbor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grape fern is a kind of fern", "pln": ["(: cnet_isa_b33d38f071 (IsA grape_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grape hyacinth is a kind of liliaceous plant", "pln": ["(: cnet_isa_3b94e0b06f (IsA grape_hyacinth liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grape jelly is a kind of jelly", "pln": ["(: cnet_isa_ec40289210 (IsA grape_jelly jelly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grape juice is a kind of fruit juice", "pln": ["(: cnet_isa_bd2c1ef5de (IsA grape_juice fruit_juice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grape leaf begonia is a kind of begonia", "pln": ["(: cnet_isa_75f8777036 (IsA grape_leaf_begonia begonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "grape louse is a kind of plant louse", "pln": ["(: cnet_isa_9ec6bf0a27 (IsA grape_louse plant_louse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grapefruit is a kind of citrus", "pln": ["(: cnet_isa_f5a9606dd8 (IsA grapefruit citrus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grapefruit juice is a kind of fruit juice", "pln": ["(: cnet_isa_349b1c8fbe (IsA grapefruit_juice fruit_juice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grapefruit peel is a kind of candied citrus peel", "pln": ["(: cnet_isa_f90b632ee7 (IsA grapefruit_peel candied_citrus_peel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grapeshot is a kind of shot", "pln": ["(: cnet_isa_fc425afe63 (IsA grapeshot shot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grapevine is a kind of gossip", "pln": ["(: cnet_isa_c40332f61b (IsA grapevine gossip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graph is a kind of diagram", "pln": ["(: cnet_isa_efac04386f (IsA graph diagram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graph is a kind of visual communication", "pln": ["(: cnet_isa_95013f5691 (IsA graph visual_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graph paper is a kind of paper", "pln": ["(: cnet_isa_e328fd9a1c (IsA graph_paper paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graphic art is a kind of art", "pln": ["(: cnet_isa_591c4555fe (IsA graphic_art art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graphic design is a kind of visual communication", "pln": ["(: cnet_isa_7b3b4e7dcd (IsA graphic_design visual_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graphic designer is a kind of specialist", "pln": ["(: cnet_isa_1172eecdc2 (IsA graphic_designer specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "graphical user interface is a kind of interface", "pln": ["(: cnet_isa_614c681a6a (IsA graphical_user_interface interface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graphic is a kind of graphic art", "pln": ["(: cnet_isa_159862776e (IsA graphic graphic_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graphite is a kind of carbon", "pln": ["(: cnet_isa_fe7579fc40 (IsA graphite carbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graphologist is a kind of specialist", "pln": ["(: cnet_isa_e4f71482ca (IsA graphologist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graphology is a kind of discipline", "pln": ["(: cnet_isa_2670620c1e (IsA graphology discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grapnel is a kind of anchor", "pln": ["(: cnet_isa_d88134e41d (IsA grapnel anchor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grapnel is a kind of tool", "pln": ["(: cnet_isa_c03c5554c7 (IsA grapnel tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grappa is a kind of brandy", "pln": ["(: cnet_isa_c3b6209eb7 (IsA grappa brandy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graptophyllum is a kind of asterid dicot genus", "pln": ["(: cnet_isa_e858092667 (IsA graptophyllum asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grasping is a kind of control", "pln": ["(: cnet_isa_b13bc4403a (IsA grasping control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grasping is a kind of understanding", "pln": ["(: cnet_isa_36a467c156 (IsA grasping understanding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grass is a kind of around hous", "pln": ["(: cnet_isa_63b9f04a76 (IsA grass around_hous) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grass is a kind of plant", "pln": ["(: cnet_isa_59ec8f0cb9 (IsA grass plant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grass is a kind of gramineous plant", "pln": ["(: cnet_isa_788804ac90 (IsA grass gramineous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grass fern is a kind of fern", "pln": ["(: cnet_isa_c57e881e89 (IsA grass_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grass frog is a kind of true frog", "pln": ["(: cnet_isa_12d7320892 (IsA grass_frog true_frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grass leaved golden aster is a kind of golden aster", "pln": ["(: cnet_isa_357d204849 (IsA grass_leaved_golden_aster golden_aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "grass pea is a kind of vetchling", "pln": ["(: cnet_isa_5f719bf825 (IsA grass_pea vetchling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grass pink is a kind of orchid", "pln": ["(: cnet_isa_6cf42c9529 (IsA grass_pink orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grass poly is a kind of loosestrife", "pln": ["(: cnet_isa_f44b846cba (IsA grass_poly loosestrife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grass root is a kind of folk", "pln": ["(: cnet_isa_532a590caf (IsA grass_root folk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grass root is a kind of foundation", "pln": ["(: cnet_isa_2217c3cbdc (IsA grass_root foundation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grass skirt is a kind of skirt", "pln": ["(: cnet_isa_1f9280d211 (IsA grass_skirt skirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "grass snake is a kind of water snake", "pln": ["(: cnet_isa_852cc58aa6 (IsA grass_snake water_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grass tree is a kind of arborescent plant", "pln": ["(: cnet_isa_318851b9ac (IsA grass_tree arborescent_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grass vetch is a kind of vetchling", "pln": ["(: cnet_isa_15d73c41fb (IsA grass_vetch vetchling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "grass widower is a kind of man", "pln": ["(: cnet_isa_3d4cca957a (IsA grass_widower man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grassfinch is a kind of weaver", "pln": ["(: cnet_isa_ef4a1b59a8 (IsA grassfinch weaver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grassfire is a kind of fire", "pln": ["(: cnet_isa_9e21f6ab37 (IsA grassfire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grasshopper is a kind of orthopterous insect", "pln": ["(: cnet_isa_78ec7b7a2c (IsA grasshopper orthopterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grasshopper is a kind of cocktail", "pln": ["(: cnet_isa_d1d450899c (IsA grasshopper cocktail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grasshopper mouse is a kind of vole", "pln": ["(: cnet_isa_0e7d3876e2 (IsA grasshopper_mouse vole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grasshopper is a kind of insect", "pln": ["(: cnet_isa_17bb254f47 (IsA grasshopper insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grassland is a kind of biome", "pln": ["(: cnet_isa_69a1282664 (IsA grassland biome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grassland is a kind of tract", "pln": ["(: cnet_isa_88b0f32f4c (IsA grassland tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grassy death cama is a kind of death cama", "pln": ["(: cnet_isa_2c44d3c79a (IsA grassy_death_cama death_cama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grate is a kind of barrier", "pln": ["(: cnet_isa_663e3ab7bd (IsA grate barrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grate is a kind of framework", "pln": ["(: cnet_isa_093de1a471 (IsA grate framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "grate is a kind of noise", "pln": ["(: cnet_isa_7f4c23e5d3 (IsA grate noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grated cheese is a kind of cheese", "pln": ["(: cnet_isa_6a6bcf8c8c (IsA grated_cheese cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gratefulness is a kind of gratitude", "pln": ["(: cnet_isa_4fd195b3e1 (IsA gratefulness gratitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grater is a kind of kitchen utensil", "pln": ["(: cnet_isa_721adcde2a (IsA grater kitchen_utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gratification is a kind of satisfaction", "pln": ["(: cnet_isa_c294b11155 (IsA gratification satisfaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gratification is a kind of emotional state", "pln": ["(: cnet_isa_cff304c451 (IsA gratification emotional_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gratitude is a kind of feeling", "pln": ["(: cnet_isa_0e5a87f452 (IsA gratitude feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gratuity is a kind of fringe benefit", "pln": ["(: cnet_isa_f3f774138f (IsA gratuity fringe_benefit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gratuity is a kind of prize", "pln": ["(: cnet_isa_de6e81db18 (IsA gratuity prize) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grave is a kind of topographic point", "pln": ["(: cnet_isa_ea680f25a1 (IsA grave topographic_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grave is a kind of death", "pln": ["(: cnet_isa_6f1be14d9f (IsA grave death) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grave accent is a kind of accent", "pln": ["(: cnet_isa_350c1686ec (IsA grave_accent accent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gravedigger is a kind of laborer", "pln": ["(: cnet_isa_b2d2e80145 (IsA gravedigger laborer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gravel is a kind of rock", "pln": ["(: cnet_isa_2be9ee3821 (IsA gravel rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gravel pit is a kind of pit", "pln": ["(: cnet_isa_de85f0b4d8 (IsA gravel_pit pit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gravelweed is a kind of crownbeard", "pln": ["(: cnet_isa_a08445dbf3 (IsA gravelweed crownbeard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graveness is a kind of seriousness", "pln": ["(: cnet_isa_df1c8e0c5f (IsA graveness seriousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graver is a kind of hand tool", "pln": ["(: cnet_isa_bca34660fa (IsA graver hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graverobber is a kind of thief", "pln": ["(: cnet_isa_e11f88a17e (IsA graverobber thief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grave disease is a kind of autoimmune disease", "pln": ["(: cnet_isa_016693f1e9 (IsA grave_disease autoimmune_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grave disease is a kind of exophthalmo", "pln": ["(: cnet_isa_42e8fdbb9f (IsA grave_disease exophthalmo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grave disease is a kind of hyperthyroidism", "pln": ["(: cnet_isa_0be3b0b64c (IsA grave_disease hyperthyroidism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gravestone is a kind of memorial", "pln": ["(: cnet_isa_dd795588c6 (IsA gravestone memorial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gravestone is a kind of stone", "pln": ["(: cnet_isa_9c3f56d570 (IsA gravestone stone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graveyard watch is a kind of watch", "pln": ["(: cnet_isa_31fdeb64e9 (IsA graveyard_watch watch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gravida is a kind of woman", "pln": ["(: cnet_isa_8e7d0351b5 (IsA gravida woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gravida is a kind of pregnancy", "pln": ["(: cnet_isa_dd31c89069 (IsA gravida pregnancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gravidity is a kind of pregnancy", "pln": ["(: cnet_isa_8518ee775b (IsA gravidity pregnancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gravimeter is a kind of measuring instrument", "pln": ["(: cnet_isa_0acbc7c0bf (IsA gravimeter measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gravimetric analysis is a kind of quantitative analysis", "pln": ["(: cnet_isa_0fefc4e657 (IsA gravimetric_analysis quantitative_analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gravitation is a kind of drift", "pln": ["(: cnet_isa_10f379d1fc (IsA gravitation drift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gravitation is a kind of change of location", "pln": ["(: cnet_isa_b32b2f7327 (IsA gravitation change_of_location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gravitational collapse is a kind of implosion", "pln": ["(: cnet_isa_17d79faf05 (IsA gravitational_collapse implosion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gravitational constant is a kind of constant", "pln": ["(: cnet_isa_1500d686c2 (IsA gravitational_constant constant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gravitational field is a kind of field", "pln": ["(: cnet_isa_756e21619b (IsA gravitational_field field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gravitational interaction is a kind of interaction", "pln": ["(: cnet_isa_fd451a8298 (IsA gravitational_interaction interaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gravitational mass is a kind of mass", "pln": ["(: cnet_isa_0391128486 (IsA gravitational_mass mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graviton is a kind of gauge boson", "pln": ["(: cnet_isa_4e259ba09d (IsA graviton gauge_boson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gravity is a kind of force", "pln": ["(: cnet_isa_455b74da1c (IsA gravity force) (STV 1.0 0.9756))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gravity is a kind of force of nature", "pln": ["(: cnet_isa_47ce6c4d7e (IsA gravity force_of_nature) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gravity is a kind of property of matter", "pln": ["(: cnet_isa_d659466a96 (IsA gravity property_of_matter) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gravity is a kind of feeling", "pln": ["(: cnet_isa_07eb81d1c1 (IsA gravity feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gravity is a kind of attraction", "pln": ["(: cnet_isa_2d67db1cad (IsA gravity attraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gravity assist is a kind of trajectory", "pln": ["(: cnet_isa_ba705b010b (IsA gravity_assist trajectory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gravity gradient is a kind of gradient", "pln": ["(: cnet_isa_ec8e7bb3e0 (IsA gravity_gradient gradient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gravity wave is a kind of wave", "pln": ["(: cnet_isa_fae200a0dd (IsA gravity_wave wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gravure is a kind of printing", "pln": ["(: cnet_isa_936487a6b4 (IsA gravure printing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gravure is a kind of engraving", "pln": ["(: cnet_isa_78a3947800 (IsA gravure engraving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gravure is a kind of print", "pln": ["(: cnet_isa_4ba9856c0f (IsA gravure print) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gravy is a kind of sauce", "pln": ["(: cnet_isa_8f029922c0 (IsA gravy sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gravy boat is a kind of dish", "pln": ["(: cnet_isa_7872701585 (IsA gravy_boat dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gray is a kind of saddle horse", "pln": ["(: cnet_isa_b53fefd3a0 (IsA gray saddle_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gray is a kind of clothing", "pln": ["(: cnet_isa_d442ce15ee (IsA gray clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gray is a kind of achromatic color", "pln": ["(: cnet_isa_113a035e54 (IsA gray achromatic_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gray is a kind of organization", "pln": ["(: cnet_isa_b8a3ec324d (IsA gray organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gray alder is a kind of alder", "pln": ["(: cnet_isa_6f35efe8c2 (IsA gray_alder alder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gray area is a kind of area", "pln": ["(: cnet_isa_3817f69a5e (IsA gray_area area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gray birch is a kind of birch", "pln": ["(: cnet_isa_658895d060 (IsA gray_birch birch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gray flounder is a kind of lefteye flounder", "pln": ["(: cnet_isa_0e0325566b (IsA gray_flounder lefteye_flounder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gray fox is a kind of fox", "pln": ["(: cnet_isa_e49d6762a5 (IsA gray_fox fox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gray goldenrod is a kind of goldenrod", "pln": ["(: cnet_isa_258e2f40c3 (IsA gray_goldenrod goldenrod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gray kingbird is a kind of kingbird", "pln": ["(: cnet_isa_d41007302d (IsA gray_kingbird kingbird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gray lemming is a kind of lemming", "pln": ["(: cnet_isa_6dab3d736f (IsA gray_lemming lemming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gray market is a kind of market", "pln": ["(: cnet_isa_10372adbf9 (IsA gray_market market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gray polypody is a kind of polypody", "pln": ["(: cnet_isa_c4cba74f4b (IsA gray_polypody polypody) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gray poplar is a kind of poplar", "pln": ["(: cnet_isa_3203afbd39 (IsA gray_poplar poplar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gray skate is a kind of skate", "pln": ["(: cnet_isa_9d4833474d (IsA gray_skate skate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gray snapper is a kind of snapper", "pln": ["(: cnet_isa_20fb1d4651 (IsA gray_snapper snapper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gray sole is a kind of sole", "pln": ["(: cnet_isa_97aae966d8 (IsA gray_sole sole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gray whale is a kind of baleen whale", "pln": ["(: cnet_isa_4bfc98fa67 (IsA gray_whale baleen_whale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gray willow is a kind of willow", "pln": ["(: cnet_isa_a594e88b33 (IsA gray_willow willow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grayback is a kind of dowitcher", "pln": ["(: cnet_isa_08e9cb8ec4 (IsA grayback dowitcher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grayhen is a kind of black grouse", "pln": ["(: cnet_isa_82fad0c8bf (IsA grayhen black_grouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graylag is a kind of goose", "pln": ["(: cnet_isa_f983ebeb63 (IsA graylag goose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graze is a kind of eating", "pln": ["(: cnet_isa_73b651c72c (IsA graze eating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "graze is a kind of abrasion", "pln": ["(: cnet_isa_421be43e42 (IsA graze abrasion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grazier is a kind of rancher", "pln": ["(: cnet_isa_b19989e06f (IsA grazier rancher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grazing is a kind of touch", "pln": ["(: cnet_isa_eba0ba0e70 (IsA grazing touch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grazing fire is a kind of fire", "pln": ["(: cnet_isa_c5f38ac483 (IsA grazing_fire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grease is a kind of oil", "pln": ["(: cnet_isa_359e9f865d (IsA grease oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grease gun is a kind of pump", "pln": ["(: cnet_isa_d2f9623138 (IsA grease_gun pump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greasepaint is a kind of makeup", "pln": ["(: cnet_isa_e7c1b3297e (IsA greasepaint makeup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greaseproof paper is a kind of paper", "pln": ["(: cnet_isa_aa92f425c4 (IsA greaseproof_paper paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greaser is a kind of mexican", "pln": ["(: cnet_isa_eda681f4d7 (IsA greaser mexican) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greasewood is a kind of shrub", "pln": ["(: cnet_isa_2e82b7ea49 (IsA greasewood shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greasiness is a kind of fatness", "pln": ["(: cnet_isa_a9c757897a (IsA greasiness fatness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greasy spoon is a kind of restaurant", "pln": ["(: cnet_isa_07e8f40a2f (IsA greasy_spoon restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "great is a kind of achiever", "pln": ["(: cnet_isa_8af155ea40 (IsA great achiever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "great ape is a kind of anthropoid ape", "pln": ["(: cnet_isa_1d70839731 (IsA great_ape anthropoid_ape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great attractor is a kind of galaxy", "pln": ["(: cnet_isa_c74e87fc71 (IsA great_attractor galaxy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great auk is a kind of auk", "pln": ["(: cnet_isa_9de3eb3878 (IsA great_auk auk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great aunt is a kind of aunt", "pln": ["(: cnet_isa_9aeec0f6f5 (IsA great_aunt aunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great barracuda is a kind of barracuda", "pln": ["(: cnet_isa_3f60475bb8 (IsA great_barracuda barracuda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great barrier reef is a kind of world heritage area", "pln": ["(: cnet_isa_00fed1d0cb (IsA great_barrier_reef world_heritage_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "great blue heron is a kind of heron", "pln": ["(: cnet_isa_cce0b1a3b2 (IsA great_blue_heron heron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great bowerbird is a kind of bowerbird", "pln": ["(: cnet_isa_2f939f9d83 (IsA great_bowerbird bowerbird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great britain is a kind of country in europe", "pln": ["(: cnet_isa_2b928d7aa5 (IsA great_britain country_in_europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great burdock is a kind of burdock", "pln": ["(: cnet_isa_ab94d7bd40 (IsA great_burdock burdock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great bustard is a kind of bustard", "pln": ["(: cnet_isa_ef08f015e8 (IsA great_bustard bustard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great care is a kind of care", "pln": ["(: cnet_isa_054b48e06f (IsA great_care care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great cerebral vein is a kind of cerebral vein", "pln": ["(: cnet_isa_4299b081e9 (IsA great_cerebral_vein cerebral_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great circle is a kind of line", "pln": ["(: cnet_isa_1425511907 (IsA great_circle line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great crested grebe is a kind of grebe", "pln": ["(: cnet_isa_5890ab3b9e (IsA great_crested_grebe grebe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great dane is a kind of dog", "pln": ["(: cnet_isa_e398e75100 (IsA great_dane dog) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great dane is a kind of very large dog", "pln": ["(: cnet_isa_e35d12f47e (IsA great_dane very_large_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great dane is a kind of working dog", "pln": ["(: cnet_isa_c7fa330235 (IsA great_dane working_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great duckweed is a kind of duckweed", "pln": ["(: cnet_isa_9f268083d3 (IsA great_duckweed duckweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great grandchild is a kind of grandchild", "pln": ["(: cnet_isa_635c01cb85 (IsA great_grandchild grandchild) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "great granddaughter is a kind of great grandchild", "pln": ["(: cnet_isa_297f7ea55f (IsA great_granddaughter great_grandchild) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great grandfather is a kind of great grandparent", "pln": ["(: cnet_isa_322dec8f0a (IsA great_grandfather great_grandparent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great grandmother is a kind of great grandparent", "pln": ["(: cnet_isa_e1fceb15ef (IsA great_grandmother great_grandparent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great grandparent is a kind of forebear", "pln": ["(: cnet_isa_2d075677f9 (IsA great_grandparent forebear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great grandson is a kind of great grandchild", "pln": ["(: cnet_isa_f24ff7963e (IsA great_grandson great_grandchild) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great gray owl is a kind of owl", "pln": ["(: cnet_isa_f2a148398e (IsA great_gray_owl owl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great gross is a kind of large integer", "pln": ["(: cnet_isa_03aca08df0 (IsA great_gross large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great hall is a kind of hall", "pln": ["(: cnet_isa_86cdd790cc (IsA great_hall hall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great horned owl is a kind of horned owl", "pln": ["(: cnet_isa_fd8d3a98a4 (IsA great_horned_owl horned_owl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great knapweed is a kind of knapweed", "pln": ["(: cnet_isa_bf312350b9 (IsA great_knapweed knapweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great lake is a kind of fresh water", "pln": ["(: cnet_isa_7c4705a47b (IsA great_lake fresh_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great lobelia is a kind of lobelia", "pln": ["(: cnet_isa_d50e81b070 (IsA great_lobelia lobelia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great millet is a kind of sorghum", "pln": ["(: cnet_isa_2c23361cc3 (IsA great_millet sorghum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "great nephew is a kind of nephew", "pln": ["(: cnet_isa_f2be8398a6 (IsA great_nephew nephew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "great plains paintbrush is a kind of indian paintbrush", "pln": ["(: cnet_isa_3717f3596d (IsA great_plains_paintbrush indian_paintbrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great niece is a kind of niece", "pln": ["(: cnet_isa_c07147f866 (IsA great_niece niece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great plain paintbrush is a kind of indian paintbrush", "pln": ["(: cnet_isa_fbe8cbed92 (IsA great_plain_paintbrush indian_paintbrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great pumkin is a kind of fictional holiday deity", "pln": ["(: cnet_isa_5b62258c58 (IsA great_pumkin fictional_holiday_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great pyrenee is a kind of dog", "pln": ["(: cnet_isa_af2fd402ec (IsA great_pyrenee dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great ragweed is a kind of ragweed", "pln": ["(: cnet_isa_11052c1328 (IsA great_ragweed ragweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great russian is a kind of russian", "pln": ["(: cnet_isa_a8b122ea80 (IsA great_russian russian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great seal is a kind of seal", "pln": ["(: cnet_isa_4a88544cc6 (IsA great_seal seal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great skua is a kind of skua", "pln": ["(: cnet_isa_9ee89c8da3 (IsA great_skua skua) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great snipe is a kind of snipe", "pln": ["(: cnet_isa_461ded84d9 (IsA great_snipe snipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great solomon s seal is a kind of solomon s seal", "pln": ["(: cnet_isa_a7c762cb34 (IsA great_solomon_s_seal solomon_s_seal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great st john s wort is a kind of st john s wort", "pln": ["(: cnet_isa_66698d0921 (IsA great_st_john_s_wort st_john_s_wort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "great uncle is a kind of uncle", "pln": ["(: cnet_isa_4c2032529a (IsA great_uncle uncle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great white heron is a kind of egret", "pln": ["(: cnet_isa_b8ce69b5bb (IsA great_white_heron egret) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great white heron is a kind of heron", "pln": ["(: cnet_isa_1e9feb2ced (IsA great_white_heron heron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great white shark is a kind of shark", "pln": ["(: cnet_isa_bd4b61fa67 (IsA great_white_shark shark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great white shark is a kind of mackerel shark", "pln": ["(: cnet_isa_0e705f8b7c (IsA great_white_shark mackerel_shark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great year is a kind of time period", "pln": ["(: cnet_isa_dc72829ce4 (IsA great_year time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great yellow gentian is a kind of gentian", "pln": ["(: cnet_isa_4b99fc3f35 (IsA great_yellow_gentian gentian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "great yellowcress is a kind of watercress", "pln": ["(: cnet_isa_5235e97c92 (IsA great_yellowcress watercress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "greatcoat is a kind of coat", "pln": ["(: cnet_isa_9c73cc257a (IsA greatcoat coat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greater butterfly orchid is a kind of orchid", "pln": ["(: cnet_isa_e42a835694 (IsA greater_butterfly_orchid orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greater kudu is a kind of kudu", "pln": ["(: cnet_isa_aa9c9554f7 (IsA greater_kudu kudu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greater masterwort is a kind of astrantia", "pln": ["(: cnet_isa_97fda54440 (IsA greater_masterwort astrantia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greater omentum is a kind of omentum", "pln": ["(: cnet_isa_f6cb60d317 (IsA greater_omentum omentum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greater pichiciego is a kind of armadillo", "pln": ["(: cnet_isa_238b7a621f (IsA greater_pichiciego armadillo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greater prairie chicken is a kind of prairie chicken", "pln": ["(: cnet_isa_15fac7fc68 (IsA greater_prairie_chicken prairie_chicken) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greater scaup is a kind of scaup", "pln": ["(: cnet_isa_19241dcee6 (IsA greater_scaup scaup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greater spearwort is a kind of marsh plant", "pln": ["(: cnet_isa_95b1b78277 (IsA greater_spearwort marsh_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greater swiss mountain dog is a kind of sennenhund", "pln": ["(: cnet_isa_352453e413 (IsA greater_swiss_mountain_dog sennenhund) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greater water parsnip is a kind of marsh plant", "pln": ["(: cnet_isa_42c66ceb43 (IsA greater_water_parsnip marsh_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greater whitethroat is a kind of warbler", "pln": ["(: cnet_isa_551e988df5 (IsA greater_whitethroat warbler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greater yellowleg is a kind of yellowleg", "pln": ["(: cnet_isa_d97a9f4398 (IsA greater_yellowleg yellowleg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greatest common divisor is a kind of common divisor", "pln": ["(: cnet_isa_91087bcda7 (IsA greatest_common_divisor common_divisor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greatness is a kind of importance", "pln": ["(: cnet_isa_d99d1362c2 (IsA greatness importance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greave is a kind of armor plate", "pln": ["(: cnet_isa_0de843c885 (IsA greave armor_plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grebe is a kind of podicipitiform seabird", "pln": ["(: cnet_isa_e49be789c4 (IsA grebe podicipitiform_seabird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grecian is a kind of european", "pln": ["(: cnet_isa_17939c73d5 (IsA grecian european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greco roman wrestling is a kind of wrestling", "pln": ["(: cnet_isa_f8e2af7464 (IsA greco_roman_wrestling wrestling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greece is a kind of balkan country", "pln": ["(: cnet_isa_4dc8435d1b (IsA greece balkan_country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greed is a kind of desire", "pln": ["(: cnet_isa_2d5316b6da (IsA greed desire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greediness is a kind of gluttony", "pln": ["(: cnet_isa_003ea58afc (IsA greediness gluttony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greediness is a kind of selfishness", "pln": ["(: cnet_isa_930d25ac7e (IsA greediness selfishness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greek is a kind of human language", "pln": ["(: cnet_isa_1225720b70 (IsA greek human_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greek is a kind of indo european", "pln": ["(: cnet_isa_05ed51743a (IsA greek indo_european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greek alphabet is a kind of alphabet", "pln": ["(: cnet_isa_06f3d852b0 (IsA greek_alphabet alphabet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greek architecture is a kind of classical architecture", "pln": ["(: cnet_isa_4309d9dc2a (IsA greek_architecture classical_architecture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greek catholic is a kind of catholic", "pln": ["(: cnet_isa_c2159cb4a3 (IsA greek_catholic catholic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greek cross is a kind of cross", "pln": ["(: cnet_isa_b7e5ec460e (IsA greek_cross cross) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greek deity is a kind of deity", "pln": ["(: cnet_isa_58b13395ad (IsA greek_deity deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greek fire is a kind of mixture", "pln": ["(: cnet_isa_cfab8665fe (IsA greek_fire mixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greek fire is a kind of weapon", "pln": ["(: cnet_isa_553d863b05 (IsA greek_fire weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greek mode is a kind of mode", "pln": ["(: cnet_isa_e8c82a4e29 (IsA greek_mode mode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greek monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_ff97401c37 (IsA greek_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greek mythology is a kind of classical mythology", "pln": ["(: cnet_isa_ea8e7581b0 (IsA greek_mythology classical_mythology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greek orthodox church is a kind of orthodox church", "pln": ["(: cnet_isa_29099f56a8 (IsA greek_orthodox_church orthodox_church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greek partridge is a kind of partridge", "pln": ["(: cnet_isa_6b78baf0a2 (IsA greek_partridge partridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greek valerian is a kind of polemonium", "pln": ["(: cnet_isa_c5cc0695e2 (IsA greek_valerian polemonium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green is a kind of color", "pln": ["(: cnet_isa_25404a702f (IsA green color) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green is a kind of colour", "pln": ["(: cnet_isa_acf995984c (IsA green colour) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green is a kind of chromatic color", "pln": ["(: cnet_isa_35b97c2009 (IsA green chromatic_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "green is a kind of site", "pln": ["(: cnet_isa_e39aebaa5e (IsA green site) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green is a kind of environmentalist", "pln": ["(: cnet_isa_9a4f403bfc (IsA green environmentalist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green adder s mouth is a kind of orchid", "pln": ["(: cnet_isa_9e8fcc6297 (IsA green_adder_s_mouth orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green alder is a kind of alder", "pln": ["(: cnet_isa_aa31ef89b9 (IsA green_alder alder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green algae is a kind of alga", "pln": ["(: cnet_isa_795134c8d8 (IsA green_algae alga) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green arrow arum is a kind of arrow arum", "pln": ["(: cnet_isa_33a48b2fcb (IsA green_arrow_arum arrow_arum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green ash is a kind of red ash", "pln": ["(: cnet_isa_df6e6ef7c5 (IsA green_ash red_ash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green bean is a kind of fresh bean", "pln": ["(: cnet_isa_5ab74e257e (IsA green_bean fresh_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green bean is a kind of common bean", "pln": ["(: cnet_isa_65c9f6a640 (IsA green_bean common_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green beret is a kind of soldier", "pln": ["(: cnet_isa_bba4cdfea3 (IsA green_beret soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green bristlegrass is a kind of foxtail", "pln": ["(: cnet_isa_5c663f3f45 (IsA green_bristlegrass foxtail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "green card is a kind of positive identification", "pln": ["(: cnet_isa_3ffa5e53c3 (IsA green_card positive_identification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green dougla fir is a kind of dougla fir", "pln": ["(: cnet_isa_4465f21ec0 (IsA green_dougla_fir dougla_fir) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green dragon is a kind of arum", "pln": ["(: cnet_isa_89b89e6c1e (IsA green_dragon arum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green frog is a kind of true frog", "pln": ["(: cnet_isa_7563976577 (IsA green_frog true_frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green gentian is a kind of herb", "pln": ["(: cnet_isa_0769526557 (IsA green_gentian herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green gland is a kind of gland", "pln": ["(: cnet_isa_e132d03dc7 (IsA green_gland gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green gold is a kind of gold", "pln": ["(: cnet_isa_c40f503f39 (IsA green_gold gold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green hellebore is a kind of hellebore", "pln": ["(: cnet_isa_68af976c5e (IsA green_hellebore hellebore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green june beetle is a kind of june beetle", "pln": ["(: cnet_isa_29857e5ffc (IsA green_june_beetle june_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green lacewing is a kind of lacewing", "pln": ["(: cnet_isa_54f69895ae (IsA green_lacewing lacewing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green light is a kind of permission", "pln": ["(: cnet_isa_e701df97f5 (IsA green_light permission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green light is a kind of traffic light", "pln": ["(: cnet_isa_8abb798111 (IsA green_light traffic_light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green lizard is a kind of lacertid lizard", "pln": ["(: cnet_isa_962e99cbc9 (IsA green_lizard lacertid_lizard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "green mamba is a kind of black mamba", "pln": ["(: cnet_isa_02eaec5725 (IsA green_mamba black_mamba) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green manure is a kind of manure", "pln": ["(: cnet_isa_4c788d5cb8 (IsA green_manure manure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green mayonnaise is a kind of mayonnaise", "pln": ["(: cnet_isa_545ddb829f (IsA green_mayonnaise mayonnaise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green monkey is a kind of guenon", "pln": ["(: cnet_isa_cd673b010e (IsA green_monkey guenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green monster is a kind of slang name for jealousy", "pln": ["(: cnet_isa_03c2028d22 (IsA green_monster slang_name_for_jealousy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green mushroom pimple is a kind of mushroom pimple", "pln": ["(: cnet_isa_217b4c3aa8 (IsA green_mushroom_pimple mushroom_pimple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green olive is a kind of olive", "pln": ["(: cnet_isa_846eab7f36 (IsA green_olive olive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green onion is a kind of onion", "pln": ["(: cnet_isa_92f6c40cda (IsA green_onion onion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green paper is a kind of report", "pln": ["(: cnet_isa_9e56d84c85 (IsA green_paper report) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green party is a kind of party", "pln": ["(: cnet_isa_8dff17f200 (IsA green_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green pea is a kind of pea", "pln": ["(: cnet_isa_791b5465ba (IsA green_pea pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green pea soup is a kind of soup", "pln": ["(: cnet_isa_844aa4944f (IsA green_pea_soup soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green peach aphid is a kind of greenfly", "pln": ["(: cnet_isa_317033b8ad (IsA green_peach_aphid greenfly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green peafowl is a kind of peafowl", "pln": ["(: cnet_isa_1e525fe247 (IsA green_peafowl peafowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green pepper is a kind of sweet pepper", "pln": ["(: cnet_isa_a23d85024f (IsA green_pepper sweet_pepper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green revolution is a kind of revolution", "pln": ["(: cnet_isa_f5784ea642 (IsA green_revolution revolution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "green salad is a kind of tossed salad", "pln": ["(: cnet_isa_072ee76816 (IsA green_salad tossed_salad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green smut is a kind of smut", "pln": ["(: cnet_isa_f52379ff5a (IsA green_smut smut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green smut fungus is a kind of fungus", "pln": ["(: cnet_isa_ddab12ffa7 (IsA green_smut_fungus fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green snake is a kind of colubrid snake", "pln": ["(: cnet_isa_f595a1e4cc (IsA green_snake colubrid_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green soybean is a kind of shell bean", "pln": ["(: cnet_isa_f4d5c52796 (IsA green_soybean shell_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green spleenwort is a kind of spleenwort", "pln": ["(: cnet_isa_b75de716f5 (IsA green_spleenwort spleenwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green tailed towhee is a kind of towhee", "pln": ["(: cnet_isa_074feb8d07 (IsA green_tailed_towhee towhee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green tea is a kind of tea", "pln": ["(: cnet_isa_a3337dac3a (IsA green_tea tea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green thumb is a kind of forte", "pln": ["(: cnet_isa_ff685b7b55 (IsA green_thumb forte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green turtle is a kind of sea turtle", "pln": ["(: cnet_isa_06a825d2a8 (IsA green_turtle sea_turtle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green woodpecker is a kind of woodpecker", "pln": ["(: cnet_isa_e40ed48e12 (IsA green_woodpecker woodpecker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greenback party is a kind of party", "pln": ["(: cnet_isa_aa79a42107 (IsA greenback_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greenbelt is a kind of belt", "pln": ["(: cnet_isa_268aed136f (IsA greenbelt belt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greenbottle is a kind of blowfly", "pln": ["(: cnet_isa_7cd6458aa0 (IsA greenbottle blowfly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greenery is a kind of leaf", "pln": ["(: cnet_isa_5c310ba654 (IsA greenery leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greeneye is a kind of soft finned fish", "pln": ["(: cnet_isa_f962a37853 (IsA greeneye soft_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greenfly is a kind of aphid", "pln": ["(: cnet_isa_b5eb3fdf1c (IsA greenfly aphid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greengage is a kind of plum", "pln": ["(: cnet_isa_74b3d7e105 (IsA greengage plum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greengrocer is a kind of grocer", "pln": ["(: cnet_isa_476bc47493 (IsA greengrocer grocer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greengrocery is a kind of grocery", "pln": ["(: cnet_isa_e13a655c68 (IsA greengrocery grocery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greengrocery is a kind of grocery store", "pln": ["(: cnet_isa_3db08fb549 (IsA greengrocery grocery_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greenhouse is a kind of building", "pln": ["(: cnet_isa_5b20f10992 (IsA greenhouse building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greenhouse effect is a kind of atmospheric phenomenon", "pln": ["(: cnet_isa_4be67c7427 (IsA greenhouse_effect atmospheric_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greenhouse gas is a kind of gas", "pln": ["(: cnet_isa_cc77cf5e5c (IsA greenhouse_gas gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greenhouse gas is a kind of causing world s temperature to rise", "pln": ["(: cnet_isa_0b4737fcbd (IsA greenhouse_gas causing_world_s_temperature_to_rise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greenhouse whitefly is a kind of whitefly", "pln": ["(: cnet_isa_58b05a3d14 (IsA greenhouse_whitefly whitefly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greenish blue is a kind of blue", "pln": ["(: cnet_isa_cb05f1717e (IsA greenish_blue blue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greenish yellow is a kind of yellow", "pln": ["(: cnet_isa_9423046abc (IsA greenish_yellow yellow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greenishness is a kind of green", "pln": ["(: cnet_isa_893da86025 (IsA greenishness green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greenling is a kind of scorpaenoid", "pln": ["(: cnet_isa_4059db9c80 (IsA greenling scorpaenoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greenmail is a kind of shark repellent", "pln": ["(: cnet_isa_651d80e867 (IsA greenmail shark_repellent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greenness is a kind of profusion", "pln": ["(: cnet_isa_f11652c5c6 (IsA greenness profusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greenness is a kind of immaturity", "pln": ["(: cnet_isa_2359cb506f (IsA greenness immaturity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greenockite is a kind of mineral", "pln": ["(: cnet_isa_9fb8aff9e3 (IsA greenockite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greenroom is a kind of room", "pln": ["(: cnet_isa_9331c20727 (IsA greenroom room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "green is a kind of vegetable", "pln": ["(: cnet_isa_c2647a07bb (IsA green vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greensand is a kind of sandstone", "pln": ["(: cnet_isa_08bf80b9f0 (IsA greensand sandstone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greenshank is a kind of sandpiper", "pln": ["(: cnet_isa_5752a7175a (IsA greenshank sandpiper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "greenskeeper is a kind of custodian", "pln": ["(: cnet_isa_49639dd97f (IsA greenskeeper custodian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greenstick fracture is a kind of incomplete fracture", "pln": ["(: cnet_isa_19da2d90cc (IsA greenstick_fracture incomplete_fracture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greenwich mean time is a kind of time", "pln": ["(: cnet_isa_fce23a563a (IsA greenwich_mean_time time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greenwing is a kind of teal", "pln": ["(: cnet_isa_75494b7036 (IsA greenwing teal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "greenwood is a kind of forest", "pln": ["(: cnet_isa_b0eb4ad858 (IsA greenwood forest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greeter is a kind of person", "pln": ["(: cnet_isa_b915e84c31 (IsA greeter person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greeting is a kind of acknowledgment", "pln": ["(: cnet_isa_770913b91e (IsA greeting acknowledgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greeting card is a kind of card", "pln": ["(: cnet_isa_d2b18d0dad (IsA greeting_card card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gregarine is a kind of sporozoan", "pln": ["(: cnet_isa_6fecfce348 (IsA gregarine sporozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gregarinida is a kind of animal order", "pln": ["(: cnet_isa_ea7796fb7c (IsA gregarinida animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gregariousness is a kind of sociability", "pln": ["(: cnet_isa_e0436028a5 (IsA gregariousness sociability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gregorian calendar is a kind of solar calendar", "pln": ["(: cnet_isa_77907335d5 (IsA gregorian_calendar solar_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gregorian calendar month is a kind of calendar month", "pln": ["(: cnet_isa_7906a0d488 (IsA gregorian_calendar_month calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greisen is a kind of rock", "pln": ["(: cnet_isa_e70536a9a0 (IsA greisen rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grenada dollar is a kind of dollar", "pln": ["(: cnet_isa_dec2e695f5 (IsA grenada_dollar dollar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "grenade is a kind of bomb", "pln": ["(: cnet_isa_0955431e95 (IsA grenade bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grenadian is a kind of west indian", "pln": ["(: cnet_isa_8b23f66919 (IsA grenadian west_indian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grenadier is a kind of gadoid", "pln": ["(: cnet_isa_d99f6fcdbc (IsA grenadier gadoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "grenadier is a kind of infantryman", "pln": ["(: cnet_isa_2c29088776 (IsA grenadier infantryman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grenadine is a kind of syrup", "pln": ["(: cnet_isa_97297d71bf (IsA grenadine syrup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gresham s law is a kind of principle", "pln": ["(: cnet_isa_9fa85d7bb8 (IsA gresham_s_law principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grevillea is a kind of shrub", "pln": ["(: cnet_isa_320d41d83f (IsA grevillea shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "grevy s zebra is a kind of zebra", "pln": ["(: cnet_isa_86e799765f (IsA grevy_s_zebra zebra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grewia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_32be283791 (IsA grewia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grey friar is a kind of friar", "pln": ["(: cnet_isa_7001d01da6 (IsA grey_friar friar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grey matter is a kind of nervous tissue", "pln": ["(: cnet_isa_6285d139f7 (IsA grey_matter nervous_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greyback is a kind of confederate soldier", "pln": ["(: cnet_isa_dc3912f5c1 (IsA greyback confederate_soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greyhound is a kind of hound", "pln": ["(: cnet_isa_db97c00345 (IsA greyhound hound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greyhound is a kind of racer", "pln": ["(: cnet_isa_a0a68f2d6b (IsA greyhound racer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "greyhound racing is a kind of racing", "pln": ["(: cnet_isa_e1188c83fb (IsA greyhound_racing racing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gria is a kind of dicot genus", "pln": ["(: cnet_isa_6d70a1ed00 (IsA gria dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grid is a kind of cooking utensil", "pln": ["(: cnet_isa_1a5039994b (IsA grid cooking_utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grid is a kind of electrode", "pln": ["(: cnet_isa_a17ab17384 (IsA grid electrode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grid is a kind of facility", "pln": ["(: cnet_isa_23303c8143 (IsA grid facility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grid is a kind of form", "pln": ["(: cnet_isa_1da3a7a310 (IsA grid form) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grid metal is a kind of hard lead", "pln": ["(: cnet_isa_b387ed9d23 (IsA grid_metal hard_lead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "griddle is a kind of cooking utensil", "pln": ["(: cnet_isa_729a012f10 (IsA griddle cooking_utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gridlock is a kind of traffic jam", "pln": ["(: cnet_isa_757bca3062 (IsA gridlock traffic_jam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grief is a kind of negative stimulus", "pln": ["(: cnet_isa_6d75b02481 (IsA grief negative_stimulus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grief is a kind of sorrow", "pln": ["(: cnet_isa_d19bee0439 (IsA grief sorrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "grievance is a kind of allegation", "pln": ["(: cnet_isa_ad1ae29e92 (IsA grievance allegation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "grievance is a kind of complaint", "pln": ["(: cnet_isa_f12443feec (IsA grievance complaint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "griffon is a kind of dog", "pln": ["(: cnet_isa_e6f7aff68e (IsA griffon dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "griffon is a kind of sporting dog", "pln": ["(: cnet_isa_e10e092c0e (IsA griffon sporting_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "griffon vulture is a kind of old world vulture", "pln": ["(: cnet_isa_bbd58e4354 (IsA griffon_vulture old_world_vulture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grigori aleksandrovich potemkin is a kind of military officer", "pln": ["(: cnet_isa_7ea3dfb4db (IsA grigori_aleksandrovich_potemkin military_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grigori aleksandrovich potemkin is a kind of politician", "pln": ["(: cnet_isa_0c24dad930 (IsA grigori_aleksandrovich_potemkin politician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grigri is a kind of amulet", "pln": ["(: cnet_isa_9706735c69 (IsA grigri amulet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grill is a kind of framework", "pln": ["(: cnet_isa_ed844d2ae2 (IsA grill framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "grille is a kind of grate", "pln": ["(: cnet_isa_94ccf5a2f8 (IsA grille grate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grilling is a kind of cooking", "pln": ["(: cnet_isa_d64e2c4b11 (IsA grilling cooking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grilling is a kind of good way too cook", "pln": ["(: cnet_isa_7f616b99f7 (IsA grilling good_way_too_cook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grillroom is a kind of restaurant", "pln": ["(: cnet_isa_5f37636c84 (IsA grillroom restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "grimace is a kind of facial expression", "pln": ["(: cnet_isa_e45ecbf9b0 (IsA grimace facial_expression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grime golden is a kind of eating apple", "pln": ["(: cnet_isa_849edb579d (IsA grime_golden eating_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "griminess is a kind of dirtiness", "pln": ["(: cnet_isa_0de51450a5 (IsA griminess dirtiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "grimm s law is a kind of sound law", "pln": ["(: cnet_isa_80a141b794 (IsA grimm_s_law sound_law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grimoire is a kind of manual", "pln": ["(: cnet_isa_97dd398331 (IsA grimoire manual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grin is a kind of smile", "pln": ["(: cnet_isa_ae726f53cd (IsA grin smile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "grind is a kind of crush", "pln": ["(: cnet_isa_f34f7e0fe9 (IsA grind crush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grind is a kind of degree", "pln": ["(: cnet_isa_e5b9980f4c (IsA grind degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grindelia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_bc8c7af2ef (IsA grindelia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "grindelia robusta is a kind of gumweed", "pln": ["(: cnet_isa_46816b28af (IsA grindelia_robusta gumweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grinder is a kind of machine tool", "pln": ["(: cnet_isa_2f6bf03e5b (IsA grinder machine_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grinding is a kind of noise", "pln": ["(: cnet_isa_97a90c1352 (IsA grinding noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grinding is a kind of atom", "pln": ["(: cnet_isa_83c42a99d2 (IsA grinding atom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grinding is a kind of friction", "pln": ["(: cnet_isa_8ad2dd7b35 (IsA grinding friction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grinding wheel is a kind of wheel", "pln": ["(: cnet_isa_5807c9bf01 (IsA grinding_wheel wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grindstone is a kind of sharpener", "pln": ["(: cnet_isa_eb6e5544fb (IsA grindstone sharpener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grindstone is a kind of stone", "pln": ["(: cnet_isa_4f52f9b98d (IsA grindstone stone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gringo is a kind of foreigner", "pln": ["(: cnet_isa_223cf76205 (IsA gringo foreigner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grinner is a kind of person", "pln": ["(: cnet_isa_b4d3173128 (IsA grinner person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "griot is a kind of narrator", "pln": ["(: cnet_isa_9a9ef19502 (IsA griot narrator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grip is a kind of influence", "pln": ["(: cnet_isa_28e9ec95de (IsA grip influence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grip is a kind of friction", "pln": ["(: cnet_isa_751ec8d72d (IsA grip friction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grip is a kind of skilled worker", "pln": ["(: cnet_isa_50bd191fd7 (IsA grip skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gripe is a kind of objection", "pln": ["(: cnet_isa_42ced4880e (IsA gripe objection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gripsack is a kind of bag", "pln": ["(: cnet_isa_73cc43fd6f (IsA gripsack bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grisaille is a kind of chiaroscuro", "pln": ["(: cnet_isa_a0675a08a5 (IsA grisaille chiaroscuro) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "griselinia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_431dd1bf5a (IsA griselinia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grison is a kind of musteline mammal", "pln": ["(: cnet_isa_5f9aeae9b6 (IsA grison musteline_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grissino is a kind of breadstick", "pln": ["(: cnet_isa_01acf6bdc9 (IsA grissino breadstick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grist is a kind of grain", "pln": ["(: cnet_isa_1fc86b8af6 (IsA grist grain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gristmill is a kind of mill", "pln": ["(: cnet_isa_4d70563321 (IsA gristmill mill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grit is a kind of sandstone", "pln": ["(: cnet_isa_edf4c92a03 (IsA grit sandstone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grit is a kind of hot cereal", "pln": ["(: cnet_isa_8a58a52512 (IsA grit hot_cereal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grivet is a kind of guenon", "pln": ["(: cnet_isa_729a627bec (IsA grivet guenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grizzle is a kind of wig", "pln": ["(: cnet_isa_83fedfcd91 (IsA grizzle wig) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grizzly is a kind of bear", "pln": ["(: cnet_isa_1230224466 (IsA grizzly bear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grizzly is a kind of brown bear", "pln": ["(: cnet_isa_a2d9dbe94e (IsA grizzly brown_bear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grizzly bear is a kind of bear", "pln": ["(: cnet_isa_c167716e11 (IsA grizzly_bear bear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groan is a kind of utterance", "pln": ["(: cnet_isa_b4b2b3e9b9 (IsA groan utterance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groaner is a kind of person", "pln": ["(: cnet_isa_157dddfed9 (IsA groaner person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groat is a kind of grain", "pln": ["(: cnet_isa_7acc709944 (IsA groat grain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grocer is a kind of merchant", "pln": ["(: cnet_isa_e90f144d68 (IsA grocer merchant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grocery is a kind of consumer good", "pln": ["(: cnet_isa_3f894348be (IsA grocery consumer_good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grocery bag is a kind of sack", "pln": ["(: cnet_isa_c74771e619 (IsA grocery_bag sack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grocery boy is a kind of deliveryman", "pln": ["(: cnet_isa_b8eadb7dea (IsA grocery_boy deliveryman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grocery list is a kind of list", "pln": ["(: cnet_isa_f88ad61a5d (IsA grocery_list list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grocery list is a kind of shopping list", "pln": ["(: cnet_isa_571e139153 (IsA grocery_list shopping_list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grocery store is a kind of marketplace", "pln": ["(: cnet_isa_4836fd6daa (IsA grocery_store marketplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groenendael is a kind of belgian sheepdog", "pln": ["(: cnet_isa_ccabda4c50 (IsA groenendael belgian_sheepdog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "groenlandia is a kind of monocot genus", "pln": ["(: cnet_isa_73c207e428 (IsA groenlandia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grog is a kind of rum", "pln": ["(: cnet_isa_8be40fcdc1 (IsA grog rum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grogginess is a kind of unconsciousness", "pln": ["(: cnet_isa_7fad6d3a96 (IsA grogginess unconsciousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grogginess is a kind of drunkenness", "pln": ["(: cnet_isa_00830d3bd3 (IsA grogginess drunkenness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grogginess is a kind of fatigue", "pln": ["(: cnet_isa_75057c7f73 (IsA grogginess fatigue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grogram is a kind of fabric", "pln": ["(: cnet_isa_5a374e0f37 (IsA grogram fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groin is a kind of edge", "pln": ["(: cnet_isa_b8416679c5 (IsA groin edge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groin is a kind of area", "pln": ["(: cnet_isa_cd5fbe49f9 (IsA groin area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groined vault is a kind of vault", "pln": ["(: cnet_isa_9222cd111c (IsA groined_vault vault) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gromwell is a kind of herb", "pln": ["(: cnet_isa_6eeffcc021 (IsA gromwell herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groom is a kind of newlywed", "pln": ["(: cnet_isa_f85606b7de (IsA groom newlywed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groom is a kind of participant", "pln": ["(: cnet_isa_9162abf525 (IsA groom participant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groomsman is a kind of attendant", "pln": ["(: cnet_isa_e863da3437 (IsA groomsman attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groove is a kind of body part", "pln": ["(: cnet_isa_c1e9bc4683 (IsA groove body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "groove is a kind of depression", "pln": ["(: cnet_isa_702a486557 (IsA groove depression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groover is a kind of device", "pln": ["(: cnet_isa_49a83c30a1 (IsA groover device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grooving is a kind of formation", "pln": ["(: cnet_isa_e7da4cde2e (IsA grooving formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "grope is a kind of touch", "pln": ["(: cnet_isa_3e5482738c (IsA grope touch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "gros point is a kind of embroidery stitch", "pln": ["(: cnet_isa_cc121c0e42 (IsA gros_point embroidery_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gro point is a kind of embroidery stitch", "pln": ["(: cnet_isa_4d98e02354 (IsA gro_point embroidery_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gro point is a kind of needlepoint", "pln": ["(: cnet_isa_e2df0789fc (IsA gro_point needlepoint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gro ventre is a kind of siouan", "pln": ["(: cnet_isa_2500b62e70 (IsA gro_ventre siouan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "grosbeak is a kind of finch", "pln": ["(: cnet_isa_a3214f7636 (IsA grosbeak finch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groschen is a kind of austrian monetary unit", "pln": ["(: cnet_isa_064e2858cb (IsA groschen austrian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grosgrain is a kind of fabric", "pln": ["(: cnet_isa_9980ef7696 (IsA grosgrain fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gross is a kind of sum", "pln": ["(: cnet_isa_08afe27b3e (IsA gross sum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gross is a kind of large integer", "pln": ["(: cnet_isa_d8f3811a44 (IsA gross large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gross anatomy is a kind of anatomy", "pln": ["(: cnet_isa_097bd0689d (IsA gross_anatomy anatomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gross domestic product is a kind of value", "pln": ["(: cnet_isa_82eeedddf3 (IsA gross_domestic_product value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gross estate is a kind of estate", "pln": ["(: cnet_isa_c6f81c9eeb (IsA gross_estate estate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gross national product is a kind of value", "pln": ["(: cnet_isa_83d2e9b30b (IsA gross_national_product value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gross profit is a kind of net income", "pln": ["(: cnet_isa_738940c314 (IsA gross_profit net_income) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gross sale is a kind of income", "pln": ["(: cnet_isa_d44f8bdb1d (IsA gross_sale income) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grossulariaceae is a kind of plant family", "pln": ["(: cnet_isa_f6fb4b16a5 (IsA grossulariaceae plant_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grosz is a kind of polish monetary unit", "pln": ["(: cnet_isa_6c282a2c5b (IsA grosz polish_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grotesque is a kind of art", "pln": ["(: cnet_isa_7596be88c2 (IsA grotesque art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grotesqueness is a kind of ugliness", "pln": ["(: cnet_isa_b09de54f20 (IsA grotesqueness ugliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grotto is a kind of cave", "pln": ["(: cnet_isa_1043dcae6c (IsA grotto cave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grouch is a kind of unpleasant person", "pln": ["(: cnet_isa_bba3b58292 (IsA grouch unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groucho marx is a kind of famous comedian", "pln": ["(: cnet_isa_c63478aefc (IsA groucho_marx famous_comedian) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground is a kind of surface", "pln": ["(: cnet_isa_3704db5394 (IsA ground surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground is a kind of percept", "pln": ["(: cnet_isa_38e32ac041 (IsA ground percept) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground is a kind of connection", "pln": ["(: cnet_isa_e80ecbdbfc (IsA ground connection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground is a kind of military position", "pln": ["(: cnet_isa_f39c981869 (IsA ground military_position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground attack is a kind of attack", "pln": ["(: cnet_isa_adf9d92e5d (IsA ground_attack attack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground bait is a kind of bait", "pln": ["(: cnet_isa_d2a9da5e01 (IsA ground_bait bait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground bass is a kind of bass", "pln": ["(: cnet_isa_340e7c1d42 (IsA ground_bass bass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground bass is a kind of ostinato", "pln": ["(: cnet_isa_0226faf3db (IsA ground_bass ostinato) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground beef is a kind of beef", "pln": ["(: cnet_isa_ea139417ec (IsA ground_beef beef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground beetle is a kind of beetle", "pln": ["(: cnet_isa_3ce2bc5af3 (IsA ground_beetle beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground cable is a kind of cable", "pln": ["(: cnet_isa_ad0f2f442f (IsA ground_cable cable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ground cedar is a kind of ground pine", "pln": ["(: cnet_isa_d3c34e0670 (IsA ground_cedar ground_pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground cedar is a kind of juniper", "pln": ["(: cnet_isa_5335c92892 (IsA ground_cedar juniper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground cherry is a kind of herb", "pln": ["(: cnet_isa_043004b612 (IsA ground_cherry herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground control is a kind of communication system", "pln": ["(: cnet_isa_d9895904b1 (IsA ground_control communication_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ground controlled approach is a kind of aircraft landing", "pln": ["(: cnet_isa_6dfa7d2e29 (IsA ground_controlled_approach aircraft_landing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground crew is a kind of gang", "pln": ["(: cnet_isa_7e6f9d84fb (IsA ground_crew gang) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground effect is a kind of aerodynamic lift", "pln": ["(: cnet_isa_b22cf1322b (IsA ground_effect aerodynamic_lift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground fir is a kind of ground pine", "pln": ["(: cnet_isa_c65ebeddad (IsA ground_fir ground_pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground fire is a kind of forest fire", "pln": ["(: cnet_isa_d58a5a53c5 (IsA ground_fire forest_fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground floor is a kind of level of building", "pln": ["(: cnet_isa_03112883ca (IsA ground_floor level_of_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ground floor is a kind of floor", "pln": ["(: cnet_isa_c24234fce1 (IsA ground_floor floor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground floor is a kind of beginning", "pln": ["(: cnet_isa_940dd94810 (IsA ground_floor beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground glass is a kind of glass", "pln": ["(: cnet_isa_375eeb7db7 (IsA ground_glass glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground ivy is a kind of vine", "pln": ["(: cnet_isa_a6f3b54135 (IsA ground_ivy vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground loop is a kind of mishap", "pln": ["(: cnet_isa_7b3ba08184 (IsA ground_loop mishap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ground pine is a kind of bugle", "pln": ["(: cnet_isa_2e7170a843 (IsA ground_pine bugle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground pine is a kind of club moss", "pln": ["(: cnet_isa_39a29a6be8 (IsA ground_pine club_moss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground pink is a kind of phlox", "pln": ["(: cnet_isa_31120362e2 (IsA ground_pink phlox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground plan is a kind of floor plan", "pln": ["(: cnet_isa_178eb0f7ed (IsA ground_plan floor_plan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground rattler is a kind of rattlesnake", "pln": ["(: cnet_isa_9e85640518 (IsA ground_rattler rattlesnake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground rent is a kind of rent", "pln": ["(: cnet_isa_34f37730d8 (IsA ground_rent rent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground roller is a kind of roller", "pln": ["(: cnet_isa_f842a91ab4 (IsA ground_roller roller) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ground rose is a kind of rose", "pln": ["(: cnet_isa_e71f6b5134 (IsA ground_rose rose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground rule is a kind of rule", "pln": ["(: cnet_isa_4a71dfc858 (IsA ground_rule rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground shaker is a kind of dinosaur", "pln": ["(: cnet_isa_d3b2e13eec (IsA ground_shaker dinosaur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground sloth is a kind of megatherian", "pln": ["(: cnet_isa_69e9cedbbc (IsA ground_sloth megatherian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground snake is a kind of colubrid snake", "pln": ["(: cnet_isa_5f0529fc0e (IsA ground_snake colubrid_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground squirrel is a kind of squirrel", "pln": ["(: cnet_isa_e10eff2bfb (IsA ground_squirrel squirrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ground state is a kind of state", "pln": ["(: cnet_isa_7cd9be16df (IsA ground_state state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground stroke is a kind of return", "pln": ["(: cnet_isa_7b8c6e09ab (IsA ground_stroke return) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ground swell is a kind of swell", "pln": ["(: cnet_isa_46b890bd0a (IsA ground_swell swell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground swell is a kind of transition", "pln": ["(: cnet_isa_9416d85ec6 (IsA ground_swell transition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground water is a kind of water", "pln": ["(: cnet_isa_38273ce0e0 (IsA ground_water water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground wave is a kind of radio wave", "pln": ["(: cnet_isa_39dfe0bf19 (IsA ground_wave radio_wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground zero is a kind of point", "pln": ["(: cnet_isa_6b8b0ab49e (IsA ground_zero point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground zero is a kind of target", "pln": ["(: cnet_isa_5de57c6ce9 (IsA ground_zero target) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groundbreaking is a kind of beginning", "pln": ["(: cnet_isa_3e2275a8c7 (IsA groundbreaking beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groundbreaking is a kind of ceremony", "pln": ["(: cnet_isa_8789806c17 (IsA groundbreaking ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groundcover is a kind of underbrush", "pln": ["(: cnet_isa_87a17879c0 (IsA groundcover underbrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groundcover is a kind of vegetation", "pln": ["(: cnet_isa_8734e01273 (IsA groundcover vegetation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grounder is a kind of hit", "pln": ["(: cnet_isa_51d83ddeb8 (IsA grounder hit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "groundfish is a kind of food fish", "pln": ["(: cnet_isa_ada59f5630 (IsA groundfish food_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groundhog is a kind of marmot", "pln": ["(: cnet_isa_4bb1e2b89b (IsA groundhog marmot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groundhog day is a kind of day", "pln": ["(: cnet_isa_89be425c53 (IsA groundhog_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groundhog is a kind of animal", "pln": ["(: cnet_isa_12d6cbfd74 (IsA groundhog animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grounding is a kind of fastening", "pln": ["(: cnet_isa_68654e3e70 (IsA grounding fastening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "groundlessness is a kind of worthlessness", "pln": ["(: cnet_isa_c7d56b3f92 (IsA groundlessness worthlessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groundling is a kind of playgoer", "pln": ["(: cnet_isa_5799c872dd (IsA groundling playgoer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groundmass is a kind of igneous rock", "pln": ["(: cnet_isa_6807cf52b4 (IsA groundmass igneous_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groundnut is a kind of tuber", "pln": ["(: cnet_isa_5a4c4bcf16 (IsA groundnut tuber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "groundnut is a kind of vine", "pln": ["(: cnet_isa_9091e27e26 (IsA groundnut vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground is a kind of tract", "pln": ["(: cnet_isa_8bc2cf83d8 (IsA ground tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ground is a kind of dreg", "pln": ["(: cnet_isa_05239fad4e (IsA ground dreg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "groundsel is a kind of weed", "pln": ["(: cnet_isa_44ebab1ed1 (IsA groundsel weed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groundsel tree is a kind of shrub", "pln": ["(: cnet_isa_efd12dbcfe (IsA groundsel_tree shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groundsheet is a kind of piece of cloth", "pln": ["(: cnet_isa_0094a29c56 (IsA groundsheet piece_of_cloth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groundsman is a kind of gardener", "pln": ["(: cnet_isa_fb1fe75078 (IsA groundsman gardener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "groundspeed is a kind of speed", "pln": ["(: cnet_isa_c9ea0cf90e (IsA groundspeed speed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groundwork is a kind of preparation", "pln": ["(: cnet_isa_d2dae075ed (IsA groundwork preparation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "group s operation is a kind of associative", "pln": ["(: cnet_isa_a71ffdc912 (IsA group_s_operation associative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "group is a kind of set", "pln": ["(: cnet_isa_02699851e0 (IsA group set) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "group is a kind of abstraction", "pln": ["(: cnet_isa_75b4f128ae (IsA group abstraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "group is a kind of unit", "pln": ["(: cnet_isa_7a915b838a (IsA group unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "group action is a kind of act", "pln": ["(: cnet_isa_4279db3f26 (IsA group_action act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "group action is a kind of event", "pln": ["(: cnet_isa_a59e083cc9 (IsA group_action event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "group captain is a kind of captain", "pln": ["(: cnet_isa_ea633bc17c (IsA group_captain captain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "group dynamic is a kind of psychodynamic", "pln": ["(: cnet_isa_d044b0e742 (IsA group_dynamic psychodynamic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "group insurance is a kind of insurance", "pln": ["(: cnet_isa_765dc1c28c (IsA group_insurance insurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "group of gorilla is a kind of troop", "pln": ["(: cnet_isa_a45d8f049d (IsA group_of_gorilla troop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "group participation is a kind of engagement", "pln": ["(: cnet_isa_0d0b740445 (IsA group_participation engagement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "group practice is a kind of medical practice", "pln": ["(: cnet_isa_a621849cb4 (IsA group_practice medical_practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "group theory is a kind of pure mathematic", "pln": ["(: cnet_isa_7fd64f12e9 (IsA group_theory pure_mathematic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "group therapy is a kind of psychotherapy", "pln": ["(: cnet_isa_02ffaf416f (IsA group_therapy psychotherapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grouper is a kind of fish", "pln": ["(: cnet_isa_d1e0dcf84f (IsA grouper fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grouper is a kind of sea bass", "pln": ["(: cnet_isa_ea2bc2442f (IsA grouper sea_bass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "grouper is a kind of saltwater fish", "pln": ["(: cnet_isa_d3fe19fa3c (IsA grouper saltwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "growing pains is a kind of trouble", "pln": ["(: cnet_isa_d49936c753 (IsA growing_pains trouble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groupie is a kind of fan", "pln": ["(: cnet_isa_a8bc24038d (IsA groupie fan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grouping is a kind of activity", "pln": ["(: cnet_isa_440e895367 (IsA grouping activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grouping is a kind of classification system", "pln": ["(: cnet_isa_4a45e2909e (IsA grouping classification_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groupthink is a kind of decision making", "pln": ["(: cnet_isa_c59ee7d1ef (IsA groupthink decision_making) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "groupware is a kind of software", "pln": ["(: cnet_isa_e499ba108e (IsA groupware software) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grouse is a kind of game bird", "pln": ["(: cnet_isa_c7df8245b8 (IsA grouse game_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grouse is a kind of wildfowl", "pln": ["(: cnet_isa_10c6d62cd6 (IsA grouse wildfowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grouseberry is a kind of blueberry", "pln": ["(: cnet_isa_217df3e4f4 (IsA grouseberry blueberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grout is a kind of plaster", "pln": ["(: cnet_isa_b45c24cf5b (IsA grout plaster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grove is a kind of garden", "pln": ["(: cnet_isa_411725b10d (IsA grove garden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grove is a kind of forest", "pln": ["(: cnet_isa_14130af19d (IsA grove forest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "growing is a kind of production", "pln": ["(: cnet_isa_4db83dbd1f (IsA growing production) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "growing pain is a kind of trouble", "pln": ["(: cnet_isa_5cb6db46ea (IsA growing_pain trouble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "growing pain is a kind of pain", "pln": ["(: cnet_isa_2419dcaf58 (IsA growing_pain pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "growing season is a kind of season", "pln": ["(: cnet_isa_2ead051e1b (IsA growing_season season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "growl is a kind of cry", "pln": ["(: cnet_isa_a65d32b146 (IsA growl cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "growler is a kind of iceberg", "pln": ["(: cnet_isa_673553b196 (IsA growler iceberg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "growler is a kind of speaker", "pln": ["(: cnet_isa_4e24918b82 (IsA growler speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "growling is a kind of utterance", "pln": ["(: cnet_isa_d131a1974f (IsA growling utterance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "growth is a kind of organic process", "pln": ["(: cnet_isa_46bb4c68be (IsA growth organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "growth is a kind of vegetation", "pln": ["(: cnet_isa_1df649df21 (IsA growth vegetation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "growth is a kind of object", "pln": ["(: cnet_isa_ca5abbd1c1 (IsA growth object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "growth is a kind of illness", "pln": ["(: cnet_isa_2766f80d52 (IsA growth illness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "growth is a kind of development", "pln": ["(: cnet_isa_8705be1931 (IsA growth development) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "growth factor is a kind of protein", "pln": ["(: cnet_isa_dfe422fa16 (IsA growth_factor protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "growth hormone releasing factor is a kind of releasing factor", "pln": ["(: cnet_isa_9a26391224 (IsA growth_hormone_releasing_factor releasing_factor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "growth industry is a kind of industry", "pln": ["(: cnet_isa_e908fdbc67 (IsA growth_industry industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "growth rate is a kind of rate", "pln": ["(: cnet_isa_0d432ab4d2 (IsA growth_rate rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "growth stock is a kind of stock", "pln": ["(: cnet_isa_9ccb342681 (IsA growth_stock stock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grub is a kind of larva", "pln": ["(: cnet_isa_18128eb51a (IsA grub larva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grub street is a kind of world", "pln": ["(: cnet_isa_f32ff860aa (IsA grub_street world) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grubby is a kind of sculpin", "pln": ["(: cnet_isa_26cd5789e7 (IsA grubby sculpin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grubstake is a kind of interest", "pln": ["(: cnet_isa_b02f5938e2 (IsA grubstake interest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grudge is a kind of resentment", "pln": ["(: cnet_isa_68f9d4b4be (IsA grudge resentment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gruel is a kind of porridge", "pln": ["(: cnet_isa_f5c4d084dc (IsA gruel porridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gruffness is a kind of harshness", "pln": ["(: cnet_isa_0c73d42ffc (IsA gruffness harshness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grugru is a kind of feather palm", "pln": ["(: cnet_isa_2005283aad (IsA grugru feather_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "grugru nut is a kind of edible nut", "pln": ["(: cnet_isa_ef8f591d44 (IsA grugru_nut edible_nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gruidae is a kind of bird family", "pln": ["(: cnet_isa_c1fe0b64d7 (IsA gruidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gruiforme is a kind of animal order", "pln": ["(: cnet_isa_a9b0dfee77 (IsA gruiforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grumble is a kind of complaint", "pln": ["(: cnet_isa_9f39e00759 (IsA grumble complaint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grume is a kind of liquid", "pln": ["(: cnet_isa_67893ff0fc (IsA grume liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grunt is a kind of percoid fish", "pln": ["(: cnet_isa_7d8be1e922 (IsA grunt percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grunt is a kind of noise", "pln": ["(: cnet_isa_3e55fa4d0a (IsA grunt noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grunt is a kind of unskilled person", "pln": ["(: cnet_isa_4d09b4bd3f (IsA grunt unskilled_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grunter is a kind of person", "pln": ["(: cnet_isa_72b4dc227e (IsA grunter person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "grus is a kind of bird genus", "pln": ["(: cnet_isa_683132a814 (IsA grus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gruyere is a kind of swiss cheese", "pln": ["(: cnet_isa_5f39260680 (IsA gruyere swiss_cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gryllidae is a kind of arthropod family", "pln": ["(: cnet_isa_ed6c58cc98 (IsA gryllidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gryphon is a kind of mythical monster", "pln": ["(: cnet_isa_c28a5c08a5 (IsA gryphon mythical_monster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guacamole is a kind of dip", "pln": ["(: cnet_isa_e288f4f2cf (IsA guacamole dip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guadalupe cypress is a kind of cypress", "pln": ["(: cnet_isa_ba7af780a8 (IsA guadalupe_cypress cypress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guadalupe fur seal is a kind of fur seal", "pln": ["(: cnet_isa_7cc7d728ad (IsA guadalupe_fur_seal fur_seal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guaiac wood is a kind of wood", "pln": ["(: cnet_isa_7702c4c8a5 (IsA guaiac_wood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guaiacum is a kind of natural resin", "pln": ["(: cnet_isa_890fb5be7f (IsA guaiacum natural_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guaiacum is a kind of rosid dicot genus", "pln": ["(: cnet_isa_5c73429e07 (IsA guaiacum rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guama is a kind of tree", "pln": ["(: cnet_isa_272f35c008 (IsA guama tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guan is a kind of gallinaceous bird", "pln": ["(: cnet_isa_6880685df4 (IsA guan gallinaceous_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guanaco is a kind of llama", "pln": ["(: cnet_isa_17a75c42e8 (IsA guanaco llama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guangzhou is a kind of administrative district", "pln": ["(: cnet_isa_a67d7663e5 (IsA guangzhou administrative_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guanine is a kind of purine", "pln": ["(: cnet_isa_2e21893470 (IsA guanine purine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guano is a kind of body waste", "pln": ["(: cnet_isa_b2d47afef4 (IsA guano body_waste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guano is a kind of organic", "pln": ["(: cnet_isa_953a3189d6 (IsA guano organic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guano bat is a kind of freetail", "pln": ["(: cnet_isa_f5376ae7d4 (IsA guano_bat freetail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "guantanamo bay is a kind of bay", "pln": ["(: cnet_isa_9c2eef8696 (IsA guantanamo_bay bay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guar is a kind of legume", "pln": ["(: cnet_isa_cb1211c98e (IsA guar legume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guar gum is a kind of gum", "pln": ["(: cnet_isa_fe5e664941 (IsA guar_gum gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guarani is a kind of tupi guarani", "pln": ["(: cnet_isa_f8e9d9f0e4 (IsA guarani tupi_guarani) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guarani is a kind of south american", "pln": ["(: cnet_isa_affe1c660f (IsA guarani south_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guarani is a kind of paraguayan monetary unit", "pln": ["(: cnet_isa_9c1561d965 (IsA guarani paraguayan_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guarantee is a kind of assurance", "pln": ["(: cnet_isa_9e8843f8bb (IsA guarantee assurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guarantee is a kind of collateral", "pln": ["(: cnet_isa_6b899e92f6 (IsA guarantee collateral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guarantor is a kind of patron", "pln": ["(: cnet_isa_7ec9961c6f (IsA guarantor patron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guard s van is a kind of car", "pln": ["(: cnet_isa_2dec4be6b8 (IsA guard_s_van car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guard is a kind of lineman", "pln": ["(: cnet_isa_95ee2805a0 (IsA guard lineman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guard is a kind of position", "pln": ["(: cnet_isa_1a66bb2af8 (IsA guard position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guard is a kind of device", "pln": ["(: cnet_isa_2305a76529 (IsA guard device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guard is a kind of detachment", "pln": ["(: cnet_isa_b6c58e60b7 (IsA guard detachment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guard is a kind of guard", "pln": ["(: cnet_isa_4c5df7bb56 (IsA guard guard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guard is a kind of military unit", "pln": ["(: cnet_isa_2ab980b6df (IsA guard military_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guard is a kind of basketball player", "pln": ["(: cnet_isa_30bee186bf (IsA guard basketball_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guard is a kind of defender", "pln": ["(: cnet_isa_e08a9bbc02 (IsA guard defender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guard boat is a kind of boat", "pln": ["(: cnet_isa_6ae07850ea (IsA guard_boat boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guard duty is a kind of assignment", "pln": ["(: cnet_isa_4567488fd4 (IsA guard_duty assignment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guard hair is a kind of hair", "pln": ["(: cnet_isa_b8692bcffc (IsA guard_hair hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guard ship is a kind of warship", "pln": ["(: cnet_isa_b77ce08986 (IsA guard_ship warship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guardhouse is a kind of headquarter", "pln": ["(: cnet_isa_9217d36113 (IsA guardhouse headquarter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guardian spirit is a kind of angel", "pln": ["(: cnet_isa_52b07255d9 (IsA guardian_spirit angel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guardianship is a kind of duty", "pln": ["(: cnet_isa_a3a0b2394a (IsA guardianship duty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guardroom is a kind of cell", "pln": ["(: cnet_isa_6ca40e2619 (IsA guardroom cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guardroom is a kind of room", "pln": ["(: cnet_isa_3887ffe8ad (IsA guardroom room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "guardsman is a kind of soldier", "pln": ["(: cnet_isa_db40480213 (IsA guardsman soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guarnerius is a kind of violin", "pln": ["(: cnet_isa_9fadfc055e (IsA guarnerius violin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guatemalan is a kind of central american", "pln": ["(: cnet_isa_04d80ee7a9 (IsA guatemalan central_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guatemalan monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_58fd7ad194 (IsA guatemalan_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guava is a kind of edible fruit", "pln": ["(: cnet_isa_8688e1a10f (IsA guava edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guava is a kind of fruit tree", "pln": ["(: cnet_isa_2b3bce4f35 (IsA guava fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guayule is a kind of subshrub", "pln": ["(: cnet_isa_71a668752e (IsA guayule subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gudgeon is a kind of cyprinid", "pln": ["(: cnet_isa_56c25f4270 (IsA gudgeon cyprinid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guelder rose is a kind of shrub", "pln": ["(: cnet_isa_96429504ea (IsA guelder_rose shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guenon is a kind of old world monkey", "pln": ["(: cnet_isa_491a686e9d (IsA guenon old_world_monkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guerdon is a kind of reward", "pln": ["(: cnet_isa_aa80e22e07 (IsA guerdon reward) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guereza is a kind of colobus", "pln": ["(: cnet_isa_d1e34af2fa (IsA guereza colobus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gueridon is a kind of table", "pln": ["(: cnet_isa_1d252d2142 (IsA gueridon table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guernsey is a kind of dairy cattle", "pln": ["(: cnet_isa_1a0675df7f (IsA guernsey dairy_cattle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guerrilla is a kind of warrior", "pln": ["(: cnet_isa_1fffcb4b92 (IsA guerrilla warrior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guerrilla force is a kind of force", "pln": ["(: cnet_isa_bbf147473a (IsA guerrilla_force force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guerrilla theater is a kind of dramatization", "pln": ["(: cnet_isa_5332160916 (IsA guerrilla_theater dramatization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "guess is a kind of estimate", "pln": ["(: cnet_isa_4e7c9be0d3 (IsA guess estimate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guess is a kind of opinion", "pln": ["(: cnet_isa_51cb97407f (IsA guess opinion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guesser is a kind of person", "pln": ["(: cnet_isa_759c44f590 (IsA guesser person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guessing game is a kind of game", "pln": ["(: cnet_isa_4121a9e9b2 (IsA guessing_game game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guesstimate is a kind of estimate", "pln": ["(: cnet_isa_0ac18ba461 (IsA guesstimate estimate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "guest is a kind of customer", "pln": ["(: cnet_isa_54fc151eca (IsA guest customer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guest is a kind of visitor", "pln": ["(: cnet_isa_49d88e07d0 (IsA guest visitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "guest night is a kind of evening", "pln": ["(: cnet_isa_8862477ef1 (IsA guest_night evening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guest of honor is a kind of guest", "pln": ["(: cnet_isa_a7b5a9f96f (IsA guest_of_honor guest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guest worker is a kind of workman", "pln": ["(: cnet_isa_4a7689a66f (IsA guest_worker workman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guesthouse is a kind of house", "pln": ["(: cnet_isa_09cc5e2883 (IsA guesthouse house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guestroom is a kind of bedroom", "pln": ["(: cnet_isa_49b891592a (IsA guestroom bedroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guevina is a kind of dicot genus", "pln": ["(: cnet_isa_618de381e0 (IsA guevina dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guffaw is a kind of laugh", "pln": ["(: cnet_isa_2a1f6c0a0b (IsA guffaw laugh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guidance is a kind of management", "pln": ["(: cnet_isa_25b6327c4a (IsA guidance management) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guidance is a kind of message", "pln": ["(: cnet_isa_3e75bce11a (IsA guidance message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guidance system is a kind of system", "pln": ["(: cnet_isa_adf5785349 (IsA guidance_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guide is a kind of structure", "pln": ["(: cnet_isa_930a907454 (IsA guide structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guide is a kind of leader", "pln": ["(: cnet_isa_18631417d5 (IsA guide leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guide dog is a kind of working dog", "pln": ["(: cnet_isa_d2014ad1a0 (IsA guide_dog working_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guide rope is a kind of rope", "pln": ["(: cnet_isa_fe0903a4f3 (IsA guide_rope rope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guide word is a kind of word", "pln": ["(: cnet_isa_e863efa190 (IsA guide_word word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guidebook is a kind of handbook", "pln": ["(: cnet_isa_b7b770de4a (IsA guidebook handbook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "guided missile is a kind of missile", "pln": ["(: cnet_isa_e4dd6d5c38 (IsA guided_missile missile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "guided missile cruiser is a kind of cruiser", "pln": ["(: cnet_isa_8731dcc655 (IsA guided_missile_cruiser cruiser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guided missile frigate is a kind of frigate", "pln": ["(: cnet_isa_b44eaf4219 (IsA guided_missile_frigate frigate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guideline is a kind of line", "pln": ["(: cnet_isa_bd5deb4ffe (IsA guideline line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guidepost is a kind of rule", "pln": ["(: cnet_isa_d872b6db63 (IsA guidepost rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guild socialism is a kind of socialism", "pln": ["(: cnet_isa_a26a1e3d29 (IsA guild_socialism socialism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guilder is a kind of dutch monetary unit", "pln": ["(: cnet_isa_bce94f4e37 (IsA guilder dutch_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guilder is a kind of surinamese monetary unit", "pln": ["(: cnet_isa_6dd706e1c6 (IsA guilder surinamese_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guildhall is a kind of hall", "pln": ["(: cnet_isa_797bcfa43a (IsA guildhall hall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guillain barre syndrome is a kind of polyneuritis", "pln": ["(: cnet_isa_f6e9dc38a0 (IsA guillain_barre_syndrome polyneuritis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guillemot is a kind of auk", "pln": ["(: cnet_isa_65239811aa (IsA guillemot auk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guilloche is a kind of architectural ornament", "pln": ["(: cnet_isa_55036e277a (IsA guilloche architectural_ornament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guillotine is a kind of instrument of execution", "pln": ["(: cnet_isa_45f8058f60 (IsA guillotine instrument_of_execution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guilt is a kind of compunction", "pln": ["(: cnet_isa_833cb78e08 (IsA guilt compunction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guilt is a kind of condition", "pln": ["(: cnet_isa_de39704f75 (IsA guilt condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guilt by association is a kind of guilt", "pln": ["(: cnet_isa_54eee4dc63 (IsA guilt_by_association guilt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guilt pang is a kind of pang", "pln": ["(: cnet_isa_fa0e75c813 (IsA guilt_pang pang) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guimpe is a kind of blouse", "pln": ["(: cnet_isa_5a5240071c (IsA guimpe blouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guimpe is a kind of piece of cloth", "pln": ["(: cnet_isa_9e0203205c (IsA guimpe piece_of_cloth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guinea is a kind of coin", "pln": ["(: cnet_isa_a0936d31e7 (IsA guinea coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "guinea bissau monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_3e0dce6f98 (IsA guinea_bissau_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guinea bissau peso is a kind of guinea bissau monetary unit", "pln": ["(: cnet_isa_12b8316d46 (IsA guinea_bissau_peso guinea_bissau_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guinea fowl is a kind of domestic fowl", "pln": ["(: cnet_isa_e635950c84 (IsA guinea_fowl domestic_fowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guinea gold is a kind of gold", "pln": ["(: cnet_isa_ff34763647 (IsA guinea_gold gold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guinea gold vine is a kind of shrub", "pln": ["(: cnet_isa_baceac41f7 (IsA guinea_gold_vine shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guinea hen is a kind of guinea fowl", "pln": ["(: cnet_isa_e7b89b28a1 (IsA guinea_hen guinea_fowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guinea hen is a kind of poultry", "pln": ["(: cnet_isa_ee71221241 (IsA guinea_hen poultry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guinea pepper is a kind of tree", "pln": ["(: cnet_isa_c206bd7ab2 (IsA guinea_pepper tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guinea pig is a kind of cavy", "pln": ["(: cnet_isa_c28f12afaf (IsA guinea_pig cavy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guinea worm is a kind of nematode", "pln": ["(: cnet_isa_30e4dfe3c7 (IsA guinea_worm nematode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guinea worm disease is a kind of infestation", "pln": ["(: cnet_isa_684e7fe6ce (IsA guinea_worm_disease infestation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "guinean is a kind of african", "pln": ["(: cnet_isa_ae43678ac7 (IsA guinean african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guinean franc is a kind of franc", "pln": ["(: cnet_isa_5a56ae1087 (IsA guinean_franc franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guinean monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_4e915ba232 (IsA guinean_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guinness is a kind of stout", "pln": ["(: cnet_isa_c046b97316 (IsA guinness stout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guise is a kind of semblance", "pln": ["(: cnet_isa_43f8aca1f3 (IsA guise semblance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guitar is a kind of instrument", "pln": ["(: cnet_isa_349abbb0ac (IsA guitar instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "guitar is a kind of string instrument", "pln": ["(: cnet_isa_3512c2cc3c (IsA guitar string_instrument) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guitar is a kind of stringed instrument", "pln": ["(: cnet_isa_63268c5a13 (IsA guitar stringed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guitar pick is a kind of pick", "pln": ["(: cnet_isa_db939ae7b7 (IsA guitar_pick pick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guitare is a kind of instrument", "pln": ["(: cnet_isa_e45905204d (IsA guitare instrument) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guitarfish is a kind of ray", "pln": ["(: cnet_isa_7f7560e4cb (IsA guitarfish ray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guitarist is a kind of musician", "pln": ["(: cnet_isa_af4bf98dcb (IsA guitarist musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gujarati is a kind of sanskrit", "pln": ["(: cnet_isa_6cbee90564 (IsA gujarati sanskrit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gujerati is a kind of indian", "pln": ["(: cnet_isa_bfcf60f69e (IsA gujerati indian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gulag is a kind of prison camp", "pln": ["(: cnet_isa_bfe9221501 (IsA gulag prison_camp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gulch is a kind of gorge", "pln": ["(: cnet_isa_809256e777 (IsA gulch gorge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gulf is a kind of disparity", "pln": ["(: cnet_isa_692786d80b (IsA gulf disparity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gulf is a kind of body of water", "pln": ["(: cnet_isa_89a1241e12 (IsA gulf body_of_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gulf is a kind of chasm", "pln": ["(: cnet_isa_529b3ccaf5 (IsA gulf chasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gulf of carpenteria is a kind of hydrangea", "pln": ["(: cnet_isa_18f38ff6db (IsA gulf_of_carpenteria hydrangea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gulf stream is a kind of ocean current", "pln": ["(: cnet_isa_1dc34ba1d5 (IsA gulf_stream ocean_current) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gulf war syndrome is a kind of syndrome", "pln": ["(: cnet_isa_1d373e25a0 (IsA gulf_war_syndrome syndrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gulfweed is a kind of brown algae", "pln": ["(: cnet_isa_c97a3beda6 (IsA gulfweed brown_algae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gull is a kind of bird", "pln": ["(: cnet_isa_c45187f1ed (IsA gull bird) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gull is a kind of seabird", "pln": ["(: cnet_isa_e959f87183 (IsA gull seabird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gull is a kind of larid", "pln": ["(: cnet_isa_cf391d8ba8 (IsA gull larid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gully is a kind of valley", "pln": ["(: cnet_isa_b95f09dc5f (IsA gully valley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gulo is a kind of mammal genus", "pln": ["(: cnet_isa_ee750ff94d (IsA gulo mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gulp is a kind of reflex", "pln": ["(: cnet_isa_e270236a29 (IsA gulp reflex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gulp is a kind of swallow", "pln": ["(: cnet_isa_cc8170e5be (IsA gulp swallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gulper is a kind of drinker", "pln": ["(: cnet_isa_0b31828190 (IsA gulper drinker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gulping is a kind of drinking", "pln": ["(: cnet_isa_e93b8d3868 (IsA gulping drinking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gum is a kind of exudate", "pln": ["(: cnet_isa_13f5a9d6bb (IsA gum exudate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gum arabic is a kind of gum", "pln": ["(: cnet_isa_3443b28e23 (IsA gum_arabic gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gum ball is a kind of chewing gum", "pln": ["(: cnet_isa_45638e7111 (IsA gum_ball chewing_gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gum butea is a kind of gum", "pln": ["(: cnet_isa_37a4572bf3 (IsA gum_butea gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gum lac is a kind of lac", "pln": ["(: cnet_isa_6a1fc50940 (IsA gum_lac lac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gum resin is a kind of natural resin", "pln": ["(: cnet_isa_5388515776 (IsA gum_resin natural_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gum tree is a kind of tree", "pln": ["(: cnet_isa_7e5dba82e8 (IsA gum_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gumbo is a kind of soup", "pln": ["(: cnet_isa_860f41eef8 (IsA gumbo soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gumbo is a kind of vegetable", "pln": ["(: cnet_isa_835c7f62ee (IsA gumbo vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gumbo is a kind of soil", "pln": ["(: cnet_isa_b11063013b (IsA gumbo soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gumbo limbo is a kind of incense tree", "pln": ["(: cnet_isa_665b672b21 (IsA gumbo_limbo incense_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gumboil is a kind of boil", "pln": ["(: cnet_isa_77011ef88a (IsA gumboil boil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gumdrop is a kind of candy", "pln": ["(: cnet_isa_2bbb185dc3 (IsA gumdrop candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gumma is a kind of granuloma", "pln": ["(: cnet_isa_80238e4945 (IsA gumma granuloma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gummed label is a kind of label", "pln": ["(: cnet_isa_af196abe80 (IsA gummed_label label) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gummite is a kind of mixture", "pln": ["(: cnet_isa_85447f8327 (IsA gummite mixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gummosis is a kind of plant disease", "pln": ["(: cnet_isa_d0bf2923b8 (IsA gummosis plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gumweed is a kind of herb", "pln": ["(: cnet_isa_a4060c41b2 (IsA gumweed herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gumwood is a kind of wood", "pln": ["(: cnet_isa_1f6a083a0f (IsA gumwood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gun s purpose is a kind of kill", "pln": ["(: cnet_isa_a1081def0e (IsA gun_s_purpose kill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gun s purpose is a kind of kill thing", "pln": ["(: cnet_isa_8e3763de6d (IsA gun_s_purpose kill_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gun is a kind of firearm shoot bullet", "pln": ["(: cnet_isa_8485b230df (IsA gun firearm_shoot_bullet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gun is a kind of weapon", "pln": ["(: cnet_isa_55b411bf25 (IsA gun weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gun is a kind of discharge", "pln": ["(: cnet_isa_a8d8ce38b2 (IsA gun discharge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gun carriage is a kind of framework", "pln": ["(: cnet_isa_6f55bd43a3 (IsA gun_carriage framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gun case is a kind of case", "pln": ["(: cnet_isa_5270806e8c (IsA gun_case case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gun control is a kind of regulation", "pln": ["(: cnet_isa_0eee3921ce (IsA gun_control regulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gun deck is a kind of deck", "pln": ["(: cnet_isa_6b8a5814b6 (IsA gun_deck deck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gun emplacement is a kind of emplacement", "pln": ["(: cnet_isa_fc78690fb6 (IsA gun_emplacement emplacement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gun enclosure is a kind of platform", "pln": ["(: cnet_isa_38fac2f2a5 (IsA gun_enclosure platform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gun muzzle is a kind of opening", "pln": ["(: cnet_isa_04b8b960ab (IsA gun_muzzle opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gun pendulum is a kind of ballistic pendulum", "pln": ["(: cnet_isa_984e90b171 (IsA gun_pendulum ballistic_pendulum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gun room is a kind of military quarter", "pln": ["(: cnet_isa_c8f53409ee (IsA gun_room military_quarter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gun smoke is a kind of smoke", "pln": ["(: cnet_isa_8032889c62 (IsA gun_smoke smoke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gun trigger is a kind of lever", "pln": ["(: cnet_isa_072aec9bb3 (IsA gun_trigger lever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gunboat is a kind of boat", "pln": ["(: cnet_isa_99467d166c (IsA gunboat boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gunfight is a kind of fight", "pln": ["(: cnet_isa_05f94b3354 (IsA gunfight fight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gunfire is a kind of shooting", "pln": ["(: cnet_isa_085fcb845e (IsA gunfire shooting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gunflint is a kind of flint", "pln": ["(: cnet_isa_004731c1ac (IsA gunflint flint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gunite is a kind of building material", "pln": ["(: cnet_isa_2cdf00a719 (IsA gunite building_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gunlock is a kind of action", "pln": ["(: cnet_isa_fe1f7091c2 (IsA gunlock action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gunman is a kind of murderer", "pln": ["(: cnet_isa_cb15f87f41 (IsA gunman murderer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gunman is a kind of shot", "pln": ["(: cnet_isa_ec75e1f83c (IsA gunman shot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gunmetal is a kind of bronze", "pln": ["(: cnet_isa_d6982dbc94 (IsA gunmetal bronze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gunnel is a kind of blennioid fish", "pln": ["(: cnet_isa_2501213fae (IsA gunnel blennioid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gunnery is a kind of weaponry", "pln": ["(: cnet_isa_c128960697 (IsA gunnery weaponry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gunnery sergeant is a kind of sergeant", "pln": ["(: cnet_isa_e2ced5b65e (IsA gunnery_sergeant sergeant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gunnysack is a kind of bag", "pln": ["(: cnet_isa_7e8d2beac6 (IsA gunnysack bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gunpowder is a kind of explosive", "pln": ["(: cnet_isa_3275702a42 (IsA gunpowder explosive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gunpowder plot is a kind of conspiracy", "pln": ["(: cnet_isa_ae4db2475e (IsA gunpowder_plot conspiracy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gunrunner is a kind of smuggler", "pln": ["(: cnet_isa_1d32d14c91 (IsA gunrunner smuggler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gunrunning is a kind of smuggling", "pln": ["(: cnet_isa_9063da35a7 (IsA gunrunning smuggling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gun is a kind of type of weapon", "pln": ["(: cnet_isa_9e94ffb4f3 (IsA gun type_of_weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gunsight is a kind of sight", "pln": ["(: cnet_isa_38f8ac12c9 (IsA gunsight sight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gunsmith is a kind of smith", "pln": ["(: cnet_isa_f9c4e841b7 (IsA gunsmith smith) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gunter s chain is a kind of chain", "pln": ["(: cnet_isa_b24ddc26e2 (IsA gunter_s_chain chain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gunwale is a kind of wale", "pln": ["(: cnet_isa_c6f12d058f (IsA gunwale wale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guppy is a kind of cyprinodont", "pln": ["(: cnet_isa_9320d1216e (IsA guppy cyprinodont) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gur is a kind of niger congo", "pln": ["(: cnet_isa_491f398b27 (IsA gur niger_congo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gurgle is a kind of sound", "pln": ["(: cnet_isa_92f38ee788 (IsA gurgle sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gurkha is a kind of nepalese", "pln": ["(: cnet_isa_b045fb8a35 (IsA gurkha nepalese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gurkha is a kind of soldier", "pln": ["(: cnet_isa_dad98da693 (IsA gurkha soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gurnard is a kind of scorpaenoid", "pln": ["(: cnet_isa_fd04c59500 (IsA gurnard scorpaenoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gurney is a kind of stretcher", "pln": ["(: cnet_isa_da94351ae2 (IsA gurney stretcher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guru is a kind of religious leader", "pln": ["(: cnet_isa_92a864fca9 (IsA guru religious_leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guru is a kind of leader", "pln": ["(: cnet_isa_3baf618a62 (IsA guru leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gusher is a kind of oil well", "pln": ["(: cnet_isa_cf9ae0350c (IsA gusher oil_well) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gusset is a kind of brace", "pln": ["(: cnet_isa_726946ed67 (IsA gusset brace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gusset is a kind of piece of cloth", "pln": ["(: cnet_isa_45d4865534 (IsA gusset piece_of_cloth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gusset is a kind of plate", "pln": ["(: cnet_isa_6baff0510e (IsA gusset plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gust is a kind of wind", "pln": ["(: cnet_isa_ef429d746b (IsA gust wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gusto is a kind of enjoyment", "pln": ["(: cnet_isa_3013b3245d (IsA gusto enjoyment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gusto is a kind of enthusiasm", "pln": ["(: cnet_isa_d244641259 (IsA gusto enthusiasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gut is a kind of channel", "pln": ["(: cnet_isa_795d135ee9 (IsA gut channel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gutierrezia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_9e6db62bba (IsA gutierrezia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gutlessness is a kind of fearfulness", "pln": ["(: cnet_isa_f18c369a37 (IsA gutlessness fearfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gutsiness is a kind of fearlessness", "pln": ["(: cnet_isa_cd6a930ba9 (IsA gutsiness fearlessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gutta percha is a kind of gum", "pln": ["(: cnet_isa_d0fd1375ea (IsA gutta_percha gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gutta percha tree is a kind of tree", "pln": ["(: cnet_isa_ff87a3b1cb (IsA gutta_percha_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gutter is a kind of channel", "pln": ["(: cnet_isa_fb0b7d3407 (IsA gutter channel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gutter is a kind of hand tool", "pln": ["(: cnet_isa_cbdeabc4a2 (IsA gutter hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gutter is a kind of worker", "pln": ["(: cnet_isa_32f016473d (IsA gutter worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gutter is a kind of misfortune", "pln": ["(: cnet_isa_2383f7d6d0 (IsA gutter misfortune) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gutter press is a kind of free press", "pln": ["(: cnet_isa_ee57417564 (IsA gutter_press free_press) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guttiferae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_5d785da31d (IsA guttiferae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guttiferale is a kind of plant order", "pln": ["(: cnet_isa_3cc6fb880e (IsA guttiferale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guttural is a kind of consonant", "pln": ["(: cnet_isa_b255367462 (IsA guttural consonant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guvnor is a kind of boss", "pln": ["(: cnet_isa_b638dc0dff (IsA guvnor boss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guy is a kind of brace", "pln": ["(: cnet_isa_d4c4795bc2 (IsA guy brace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guy is a kind of effigy", "pln": ["(: cnet_isa_40778a6eba (IsA guy effigy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guy is a kind of man", "pln": ["(: cnet_isa_3453656ad9 (IsA guy man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guy fawke day is a kind of november 5", "pln": ["(: cnet_isa_41c894ec45 (IsA guy_fawke_day november_5) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guyana dollar is a kind of dollar", "pln": ["(: cnet_isa_b766d10734 (IsA guyana_dollar dollar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "guyanese is a kind of south american", "pln": ["(: cnet_isa_b805540400 (IsA guyanese south_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "gymnastics is a kind of sport", "pln": ["(: cnet_isa_74a762355e (IsA gymnastics sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "gymnopilus validipes is a kind of agaric", "pln": ["(: cnet_isa_645c9bc5b8 (IsA gymnopilus_validipes agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guyot is a kind of seamount", "pln": ["(: cnet_isa_e39220d41a (IsA guyot seamount) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "guzzler is a kind of drinker", "pln": ["(: cnet_isa_5e84c142f1 (IsA guzzler drinker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gy is a kind of radioactivity unit", "pln": ["(: cnet_isa_e415e2a669 (IsA gy radioactivity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gym is a kind of enclosed area for getting fit", "pln": ["(: cnet_isa_23c509e594 (IsA gym enclosed_area_for_getting_fit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gym is a kind of place", "pln": ["(: cnet_isa_38894af665 (IsA gym place) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gym rat is a kind of addict", "pln": ["(: cnet_isa_05bbf3e4ff (IsA gym_rat addict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gym shoe is a kind of shoe", "pln": ["(: cnet_isa_5a5a915fb4 (IsA gym_shoe shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gym suit is a kind of sportswear", "pln": ["(: cnet_isa_c5912e4a84 (IsA gym_suit sportswear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gymkhana is a kind of meet", "pln": ["(: cnet_isa_b4e8e40852 (IsA gymkhana meet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gymnadenia is a kind of monocot genus", "pln": ["(: cnet_isa_e97657ece1 (IsA gymnadenia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gymnadeniopsis is a kind of monocot genus", "pln": ["(: cnet_isa_55a54b0c00 (IsA gymnadeniopsis monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gymnasium is a kind of room", "pln": ["(: cnet_isa_5f232e5f56 (IsA gymnasium room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gymnasium is a kind of athletic facility", "pln": ["(: cnet_isa_2263be11fb (IsA gymnasium athletic_facility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gymnast is a kind of athlete", "pln": ["(: cnet_isa_547f07cd0e (IsA gymnast athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gymnastic apparatus is a kind of sport equipment", "pln": ["(: cnet_isa_e7f58291e6 (IsA gymnastic_apparatus sport_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gymnastic exercise is a kind of exercise", "pln": ["(: cnet_isa_4219fd2428 (IsA gymnastic_exercise exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gymnastic is a kind of sport", "pln": ["(: cnet_isa_066ad797da (IsA gymnastic sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gymnelis is a kind of fish genus", "pln": ["(: cnet_isa_f9875fb159 (IsA gymnelis fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gymnocalycium is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_346e6becbf (IsA gymnocalycium caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gymnocarpium is a kind of fern genus", "pln": ["(: cnet_isa_53240315fb (IsA gymnocarpium fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gymnocladus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_cea631bb30 (IsA gymnocladus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gymnogyp is a kind of bird genus", "pln": ["(: cnet_isa_61871912c8 (IsA gymnogyp bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gymnophiona is a kind of animal order", "pln": ["(: cnet_isa_b942acb42f (IsA gymnophiona animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gymnopilus is a kind of fungus genus", "pln": ["(: cnet_isa_4f50463686 (IsA gymnopilus fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gymnopilus spectabilis is a kind of agaric", "pln": ["(: cnet_isa_11e59b341c (IsA gymnopilus_spectabilis agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gymnopilus validipe is a kind of agaric", "pln": ["(: cnet_isa_5fd677e00c (IsA gymnopilus_validipe agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gymnopilus ventricosus is a kind of agaric", "pln": ["(: cnet_isa_21a2d91a26 (IsA gymnopilus_ventricosus agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gymnorhina is a kind of bird genus", "pln": ["(: cnet_isa_ebbb4e0ed6 (IsA gymnorhina bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gymnosophist is a kind of philosopher", "pln": ["(: cnet_isa_a7445d2b22 (IsA gymnosophist philosopher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gymnosophy is a kind of doctrine", "pln": ["(: cnet_isa_db94bcf7a0 (IsA gymnosophy doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gymnosperm is a kind of spermatophyte", "pln": ["(: cnet_isa_6eb5f71b30 (IsA gymnosperm spermatophyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gymnosperm family is a kind of plant family", "pln": ["(: cnet_isa_837a37bb98 (IsA gymnosperm_family plant_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gymnosperm genus is a kind of genus", "pln": ["(: cnet_isa_78ce2ffc7c (IsA gymnosperm_genus genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gymnospermae is a kind of class", "pln": ["(: cnet_isa_cb607da22b (IsA gymnospermae class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gymnospermous tree is a kind of tree", "pln": ["(: cnet_isa_f206d927c2 (IsA gymnospermous_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gymnospermous yellowwood is a kind of yellowwood", "pln": ["(: cnet_isa_e3e47f3461 (IsA gymnospermous_yellowwood yellowwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gymnosporangium is a kind of fungus genus", "pln": ["(: cnet_isa_57873223f8 (IsA gymnosporangium fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gymnura is a kind of fish genus", "pln": ["(: cnet_isa_284e2503fb (IsA gymnura fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gymslip is a kind of tunic", "pln": ["(: cnet_isa_72f5d7f8f7 (IsA gymslip tunic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gynecocracy is a kind of political system", "pln": ["(: cnet_isa_f5f8f3e785 (IsA gynecocracy political_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gynecologist is a kind of specialist", "pln": ["(: cnet_isa_77a6c854c1 (IsA gynecologist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gynecology is a kind of medicine", "pln": ["(: cnet_isa_1d42210bdd (IsA gynecology medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gynecomastia is a kind of abnormality", "pln": ["(: cnet_isa_c6bda315e6 (IsA gynecomastia abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gyneolatry is a kind of worship", "pln": ["(: cnet_isa_0a916e8ea6 (IsA gyneolatry worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gynobase is a kind of receptacle", "pln": ["(: cnet_isa_2dc1aed352 (IsA gynobase receptacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gynoecium is a kind of gametoecium", "pln": ["(: cnet_isa_d6b55cef74 (IsA gynoecium gametoecium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gynogenesis is a kind of parthenogenesis", "pln": ["(: cnet_isa_3502c6f0da (IsA gynogenesis parthenogenesis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gynophobia is a kind of social phobia", "pln": ["(: cnet_isa_a5fb3a5cff (IsA gynophobia social_phobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gynophore is a kind of stalk", "pln": ["(: cnet_isa_4d5d8d869f (IsA gynophore stalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gynostegium is a kind of plant part", "pln": ["(: cnet_isa_aed33564a8 (IsA gynostegium plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gynura is a kind of asterid dicot genus", "pln": ["(: cnet_isa_d7ca3e4aa9 (IsA gynura asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gypaetus is a kind of bird genus", "pln": ["(: cnet_isa_b9797e5d6b (IsA gypaetus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gyp is a kind of bird genus", "pln": ["(: cnet_isa_63198b5930 (IsA gyp bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gypsophila is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_9bd82d4fa0 (IsA gypsophila caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gypsum is a kind of calcium sulphate", "pln": ["(: cnet_isa_4ffe0f209f (IsA gypsum calcium_sulphate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gypsum is a kind of mineral", "pln": ["(: cnet_isa_63ee812757 (IsA gypsum mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gypsy cab is a kind of cab", "pln": ["(: cnet_isa_992d28d064 (IsA gypsy_cab cab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gypsy moth is a kind of lymantriid", "pln": ["(: cnet_isa_769d339b42 (IsA gypsy_moth lymantriid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gyration is a kind of rotation", "pln": ["(: cnet_isa_cd8d71ea07 (IsA gyration rotation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gyrfalcon is a kind of falcon", "pln": ["(: cnet_isa_50270b35bb (IsA gyrfalcon falcon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gyrinidae is a kind of arthropod family", "pln": ["(: cnet_isa_7134ff058f (IsA gyrinidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gyro is a kind of sandwich", "pln": ["(: cnet_isa_9f0e9ae3d3 (IsA gyro sandwich) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gyrocompass is a kind of compass", "pln": ["(: cnet_isa_5d90bdbd4b (IsA gyrocompass compass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gyromitra is a kind of fungus", "pln": ["(: cnet_isa_e4499060ec (IsA gyromitra fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gyromitra californica is a kind of gyromitra", "pln": ["(: cnet_isa_499e714ea4 (IsA gyromitra_californica gyromitra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gyromitra esculenta is a kind of gyromitra", "pln": ["(: cnet_isa_9666a68b8d (IsA gyromitra_esculenta gyromitra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "gyromitra fastigiata is a kind of lorchel", "pln": ["(: cnet_isa_276afbc7da (IsA gyromitra_fastigiata lorchel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gyromitra giga is a kind of gyromitra", "pln": ["(: cnet_isa_1e0978cbf6 (IsA gyromitra_giga gyromitra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gyromitra infula is a kind of gyromitra", "pln": ["(: cnet_isa_83bb3c550d (IsA gyromitra_infula gyromitra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gyromitra sphaerospora is a kind of gyromitra", "pln": ["(: cnet_isa_1c6b44de6a (IsA gyromitra_sphaerospora gyromitra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gyroscope is a kind of rotating mechanism", "pln": ["(: cnet_isa_5c58bfcbdf (IsA gyroscope rotating_mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gyrostabilizer is a kind of stabilizer", "pln": ["(: cnet_isa_1909ea6db5 (IsA gyrostabilizer stabilizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gyrovector is a kind of vector", "pln": ["(: cnet_isa_0357f050e8 (IsA gyrovector vector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "gyrus is a kind of structure", "pln": ["(: cnet_isa_5ab91fd6bc (IsA gyrus structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "h is a kind of inorganic substance", "pln": ["(: cnet_isa_c6ec768c20 (IsA h inorganic_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "h is a kind of letter", "pln": ["(: cnet_isa_ebd15a1065 (IsA h letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haastia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_6181644726 (IsA haastia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "habanera is a kind of social dancing", "pln": ["(: cnet_isa_69b979715f (IsA habanera social_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "habanera is a kind of dance music", "pln": ["(: cnet_isa_2138ac4909 (IsA habanera dance_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "habea corpus is a kind of civil right", "pln": ["(: cnet_isa_88f8244e1d (IsA habea_corpus civil_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "habea corpus is a kind of writ", "pln": ["(: cnet_isa_e93c64d31a (IsA habea_corpus writ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "habenaria is a kind of monocot genus", "pln": ["(: cnet_isa_8ef39c7933 (IsA habenaria monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haber process is a kind of industrial process", "pln": ["(: cnet_isa_104635b2cc (IsA haber_process industrial_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haberdashery is a kind of drygood", "pln": ["(: cnet_isa_8d7c12579c (IsA haberdashery drygood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "habergeon is a kind of chain mail", "pln": ["(: cnet_isa_e06e0eea95 (IsA habergeon chain_mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "habit is a kind of custom", "pln": ["(: cnet_isa_282889d516 (IsA habit custom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "habit is a kind of growth", "pln": ["(: cnet_isa_838719b8c9 (IsA habit growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "habit is a kind of attire", "pln": ["(: cnet_isa_6123001f69 (IsA habit attire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "habitableness is a kind of fitness", "pln": ["(: cnet_isa_cc25611a2d (IsA habitableness fitness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "habitat is a kind of environment", "pln": ["(: cnet_isa_1dd97a596c (IsA habitat environment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "habitation is a kind of habitat", "pln": ["(: cnet_isa_59f2372a62 (IsA habitation habitat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "habitual abortion is a kind of spontaneous abortion", "pln": ["(: cnet_isa_473e5f8bd6 (IsA habitual_abortion spontaneous_abortion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "habituation is a kind of adjustment", "pln": ["(: cnet_isa_2b6d3b8289 (IsA habituation adjustment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "habitude is a kind of practice", "pln": ["(: cnet_isa_930f62ff18 (IsA habitude practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "habitus is a kind of sensitivity", "pln": ["(: cnet_isa_e440b4f1a1 (IsA habitus sensitivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "habsburg is a kind of dynasty", "pln": ["(: cnet_isa_c3e7485089 (IsA habsburg dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "habsburg is a kind of royalty", "pln": ["(: cnet_isa_4a2a897cd6 (IsA habsburg royalty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hacek is a kind of diacritical mark", "pln": ["(: cnet_isa_4670bba520 (IsA hacek diacritical_mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hacienda is a kind of house", "pln": ["(: cnet_isa_4e5a1cc974 (IsA hacienda house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hacienda is a kind of estate", "pln": ["(: cnet_isa_7f32d8ce3b (IsA hacienda estate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hack is a kind of horse", "pln": ["(: cnet_isa_5a2c0ab5fd (IsA hack horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hack is a kind of saddle horse", "pln": ["(: cnet_isa_55984c0c99 (IsA hack saddle_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hack is a kind of tool", "pln": ["(: cnet_isa_e2edbbb5fe (IsA hack tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hack is a kind of unskilled person", "pln": ["(: cnet_isa_97c392818d (IsA hack unskilled_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hack is a kind of writer", "pln": ["(: cnet_isa_9ad19f247d (IsA hack writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hackberry is a kind of tree", "pln": ["(: cnet_isa_a15d6caa4b (IsA hackberry tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hackelia is a kind of plant genus", "pln": ["(: cnet_isa_6731dd27c1 (IsA hackelia plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hacker is a kind of programmer", "pln": ["(: cnet_isa_0d7920d4e8 (IsA hacker programmer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hacker is a kind of golfer", "pln": ["(: cnet_isa_ba920971f4 (IsA hacker golfer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hacker is a kind of terrorist", "pln": ["(: cnet_isa_abfab85c9b (IsA hacker terrorist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hacking is a kind of cybercrime activity", "pln": ["(: cnet_isa_6dabd15163 (IsA hacking cybercrime_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hackle is a kind of feather", "pln": ["(: cnet_isa_52257a1b2e (IsA hackle feather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hackney is a kind of harness horse", "pln": ["(: cnet_isa_4d1567dbd7 (IsA hackney harness_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hackney is a kind of carriage", "pln": ["(: cnet_isa_8b6ec823cf (IsA hackney carriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hacksaw is a kind of saw", "pln": ["(: cnet_isa_9a87d39b08 (IsA hacksaw saw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hackwork is a kind of labor", "pln": ["(: cnet_isa_e952c19a7a (IsA hackwork labor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "had crime is a kind of crime", "pln": ["(: cnet_isa_16a2c0532c (IsA had_crime crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haddock is a kind of gadoid", "pln": ["(: cnet_isa_4b8f143f0e (IsA haddock gadoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haddock is a kind of fish", "pln": ["(: cnet_isa_9b7b7c597d (IsA haddock fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hadith is a kind of custom", "pln": ["(: cnet_isa_3f81200b3c (IsA hadith custom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hadron is a kind of elementary particle", "pln": ["(: cnet_isa_cd2741400a (IsA hadron elementary_particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hadrosaur is a kind of ornithischian", "pln": ["(: cnet_isa_284f65ce3b (IsA hadrosaur ornithischian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hadrosauridae is a kind of reptile family", "pln": ["(: cnet_isa_c64ad9ff90 (IsA hadrosauridae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haemanthus is a kind of liliid monocot genus", "pln": ["(: cnet_isa_4f67127bb7 (IsA haemanthus liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "haematobia is a kind of arthropod genus", "pln": ["(: cnet_isa_37b10876bd (IsA haematobia arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haematopodidae is a kind of bird family", "pln": ["(: cnet_isa_a2c1ea22d9 (IsA haematopodidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haematopus is a kind of bird genus", "pln": ["(: cnet_isa_416a224a7f (IsA haematopus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haematoxylum is a kind of rosid dicot genus", "pln": ["(: cnet_isa_8f60858148 (IsA haematoxylum rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haemodoraceae is a kind of monocot family", "pln": ["(: cnet_isa_c3902298bb (IsA haemodoraceae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "haemodorum is a kind of monocot genus", "pln": ["(: cnet_isa_973e4038b5 (IsA haemodorum monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haemopis is a kind of worm genus", "pln": ["(: cnet_isa_c3206f168d (IsA haemopis worm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haemoproteid is a kind of sporozoan", "pln": ["(: cnet_isa_767d5a6635 (IsA haemoproteid sporozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "haemoproteidae is a kind of protoctist family", "pln": ["(: cnet_isa_d9fb222a1b (IsA haemoproteidae protoctist_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haemoproteus is a kind of protoctist genus", "pln": ["(: cnet_isa_e6dc4b30fd (IsA haemoproteus protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haemosporidia is a kind of animal order", "pln": ["(: cnet_isa_b5c0348af8 (IsA haemosporidia animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haemosporidian is a kind of sporozoan", "pln": ["(: cnet_isa_798fa5d573 (IsA haemosporidian sporozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haemulidae is a kind of fish family", "pln": ["(: cnet_isa_79cfec2487 (IsA haemulidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haemulon is a kind of fish genus", "pln": ["(: cnet_isa_1a31d94850 (IsA haemulon fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hafnium is a kind of metallic element", "pln": ["(: cnet_isa_69a4875b4b (IsA hafnium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haft is a kind of handle", "pln": ["(: cnet_isa_c13638c3fb (IsA haft handle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hag is a kind of old woman", "pln": ["(: cnet_isa_428e8b6d87 (IsA hag old_woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haganah is a kind of military unit", "pln": ["(: cnet_isa_77ce75dedf (IsA haganah military_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hagberry is a kind of fruit", "pln": ["(: cnet_isa_8265b478ee (IsA hagberry fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hagberry tree is a kind of bird cherry", "pln": ["(: cnet_isa_dab4ff7daa (IsA hagberry_tree bird_cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hageman factor is a kind of coagulation factor", "pln": ["(: cnet_isa_b7bdee4cb3 (IsA hageman_factor coagulation_factor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hagfish is a kind of jawless vertebrate", "pln": ["(: cnet_isa_baceea6801 (IsA hagfish jawless_vertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haggadah is a kind of talmudic literature", "pln": ["(: cnet_isa_fb7b19e80a (IsA haggadah talmudic_literature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haggis is a kind of dish", "pln": ["(: cnet_isa_64522d7a72 (IsA haggis dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haggle is a kind of bargaining", "pln": ["(: cnet_isa_c090d7b353 (IsA haggle bargaining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haggler is a kind of bargainer", "pln": ["(: cnet_isa_37397e0fc4 (IsA haggler bargainer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hagiographer is a kind of biographer", "pln": ["(: cnet_isa_a1de4d91cd (IsA hagiographer biographer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hagiography is a kind of biography", "pln": ["(: cnet_isa_c68dabd273 (IsA hagiography biography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hagiolatry is a kind of worship", "pln": ["(: cnet_isa_2a7210e608 (IsA hagiolatry worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hagiology is a kind of literary composition", "pln": ["(: cnet_isa_5328bd7d12 (IsA hagiology literary_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haida is a kind of na dene", "pln": ["(: cnet_isa_5c01a2c503 (IsA haida na_dene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haida is a kind of native american", "pln": ["(: cnet_isa_440198f2cb (IsA haida native_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haik is a kind of garment", "pln": ["(: cnet_isa_75db11acb6 (IsA haik garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haiku is a kind of poem", "pln": ["(: cnet_isa_c4ff501659 (IsA haiku poem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hail is a kind of greeting", "pln": ["(: cnet_isa_d8eb2034c1 (IsA hail greeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hail is a kind of object", "pln": ["(: cnet_isa_fc4688ce5e (IsA hail object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hail is a kind of precipitation", "pln": ["(: cnet_isa_4090f09198 (IsA hail precipitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hailstone is a kind of ice", "pln": ["(: cnet_isa_bc636a73aa (IsA hailstone ice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hailstorm is a kind of storm", "pln": ["(: cnet_isa_ef1d12dc44 (IsA hailstorm storm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hair s breadth is a kind of small indefinite quantity", "pln": ["(: cnet_isa_d97accdab3 (IsA hair_s_breadth small_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hair is a kind of strand", "pln": ["(: cnet_isa_d7df3343a4 (IsA hair strand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hair is a kind of process", "pln": ["(: cnet_isa_8bf5c34cf4 (IsA hair process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hair is a kind of body covering", "pln": ["(: cnet_isa_d7ec01679a (IsA hair body_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hair is a kind of filament", "pln": ["(: cnet_isa_dd4d096f81 (IsA hair filament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hair is a kind of plant process", "pln": ["(: cnet_isa_535efd2dfc (IsA hair plant_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hair care is a kind of care", "pln": ["(: cnet_isa_7cc5c5021a (IsA hair_care care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hair cell is a kind of epithelial cell", "pln": ["(: cnet_isa_f86ba3fcf5 (IsA hair_cell epithelial_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hair coloring is a kind of coloring", "pln": ["(: cnet_isa_20d349423f (IsA hair_coloring coloring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hair coloring is a kind of coloration", "pln": ["(: cnet_isa_11480d9ed5 (IsA hair_coloring coloration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hair dye is a kind of dye", "pln": ["(: cnet_isa_82d72d0a85 (IsA hair_dye dye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hair follicle is a kind of follicle", "pln": ["(: cnet_isa_9ecb3d84c3 (IsA hair_follicle follicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hair of dog is a kind of drink", "pln": ["(: cnet_isa_2455d3171b (IsA hair_of_dog drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hair raiser is a kind of excitation", "pln": ["(: cnet_isa_25c8732487 (IsA hair_raiser excitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hair shirt is a kind of shirt", "pln": ["(: cnet_isa_19dd57be3b (IsA hair_shirt shirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hair slide is a kind of clip", "pln": ["(: cnet_isa_78ffa66b02 (IsA hair_slide clip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hair space is a kind of quad", "pln": ["(: cnet_isa_9121c9ca29 (IsA hair_space quad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hair spray is a kind of toiletry", "pln": ["(: cnet_isa_8cc28266c2 (IsA hair_spray toiletry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hair stroke is a kind of hairline", "pln": ["(: cnet_isa_b9c46f1b30 (IsA hair_stroke hairline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hair trigger is a kind of gun trigger", "pln": ["(: cnet_isa_c00bfb6ec2 (IsA hair_trigger gun_trigger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hairball is a kind of tangle", "pln": ["(: cnet_isa_00d942ef9e (IsA hairball tangle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hairbrush is a kind of brush", "pln": ["(: cnet_isa_09869cfcf0 (IsA hairbrush brush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "haircloth is a kind of fabric", "pln": ["(: cnet_isa_40836f20a6 (IsA haircloth fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haircut is a kind of cut", "pln": ["(: cnet_isa_f896ce45af (IsA haircut cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haircut is a kind of hairdo", "pln": ["(: cnet_isa_25fe555377 (IsA haircut hairdo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hairdo is a kind of hair", "pln": ["(: cnet_isa_7bdbdf2f5e (IsA hairdo hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hairdresser is a kind of craftsman", "pln": ["(: cnet_isa_fd43f6f958 (IsA hairdresser craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hairdressing is a kind of toiletry", "pln": ["(: cnet_isa_39e897f963 (IsA hairdressing toiletry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hairiness is a kind of appearance", "pln": ["(: cnet_isa_58b7c494df (IsA hairiness appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hairlessness is a kind of appearance", "pln": ["(: cnet_isa_eca1e755c7 (IsA hairlessness appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hairlessness is a kind of condition", "pln": ["(: cnet_isa_c598f77309 (IsA hairlessness condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hairline is a kind of boundary", "pln": ["(: cnet_isa_8d55ca9db9 (IsA hairline boundary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hairline is a kind of line", "pln": ["(: cnet_isa_df7f7537e9 (IsA hairline line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hairline fracture is a kind of fracture", "pln": ["(: cnet_isa_8e0dd462af (IsA hairline_fracture fracture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hairnet is a kind of net", "pln": ["(: cnet_isa_23e9d13852 (IsA hairnet net) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hairpiece is a kind of attire", "pln": ["(: cnet_isa_4c6a26b2e0 (IsA hairpiece attire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hairpin is a kind of pin", "pln": ["(: cnet_isa_42a3cb05fb (IsA hairpin pin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hairpin bend is a kind of bend", "pln": ["(: cnet_isa_331aafbb45 (IsA hairpin_bend bend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hairsplitter is a kind of disputant", "pln": ["(: cnet_isa_ed503a4fe3 (IsA hairsplitter disputant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hairsplitting is a kind of differentiation", "pln": ["(: cnet_isa_db8440bd6d (IsA hairsplitting differentiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hairspring is a kind of spiral spring", "pln": ["(: cnet_isa_a9ae47ea31 (IsA hairspring spiral_spring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hairstreak is a kind of lycaenid", "pln": ["(: cnet_isa_ae22a041c5 (IsA hairstreak lycaenid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hairweaving is a kind of hair care", "pln": ["(: cnet_isa_b3675f0d07 (IsA hairweaving hair_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hairy darling pea is a kind of darling pea", "pln": ["(: cnet_isa_9e0fa2b8ca (IsA hairy_darling_pea darling_pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hairy golden aster is a kind of wildflower", "pln": ["(: cnet_isa_1b51373428 (IsA hairy_golden_aster wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hairy honeysuckle is a kind of honeysuckle", "pln": ["(: cnet_isa_dba821a5c7 (IsA hairy_honeysuckle honeysuckle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hairy legged vampire bat is a kind of vampire bat", "pln": ["(: cnet_isa_57d1abff3a (IsA hairy_legged_vampire_bat vampire_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hairy root is a kind of crown gall", "pln": ["(: cnet_isa_05c3b555b0 (IsA hairy_root crown_gall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hairy spurge is a kind of spurge", "pln": ["(: cnet_isa_4632982658 (IsA hairy_spurge spurge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hairy tongue is a kind of side effect", "pln": ["(: cnet_isa_255fd0678e (IsA hairy_tongue side_effect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hairy vetch is a kind of tare", "pln": ["(: cnet_isa_e446c37c56 (IsA hairy_vetch tare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hairy willowherb is a kind of willowherb", "pln": ["(: cnet_isa_96a69dd07c (IsA hairy_willowherb willowherb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hairy wood mint is a kind of wood mint", "pln": ["(: cnet_isa_72ce0ee0ed (IsA hairy_wood_mint wood_mint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haitian is a kind of west indian", "pln": ["(: cnet_isa_3da6862371 (IsA haitian west_indian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haitian centime is a kind of centime", "pln": ["(: cnet_isa_21aae4cabd (IsA haitian_centime centime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haitian creole is a kind of creole", "pln": ["(: cnet_isa_3b2cca5264 (IsA haitian_creole creole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "haitian creole is a kind of romance", "pln": ["(: cnet_isa_e6b91053f4 (IsA haitian_creole romance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haitian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_f060aa8754 (IsA haitian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hajj is a kind of pilgrimage", "pln": ["(: cnet_isa_cff4bc1c38 (IsA hajj pilgrimage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hajj is a kind of pillar of islam", "pln": ["(: cnet_isa_b83be70d9a (IsA hajj pillar_of_islam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hajji is a kind of iraki", "pln": ["(: cnet_isa_14c649248c (IsA hajji iraki) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hajji is a kind of pilgrim", "pln": ["(: cnet_isa_14a7070a3b (IsA hajji pilgrim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hake is a kind of gadoid", "pln": ["(: cnet_isa_17705b0aa6 (IsA hake gadoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hake is a kind of fish", "pln": ["(: cnet_isa_a1f0e668b5 (IsA hake fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hakea is a kind of dicot genus", "pln": ["(: cnet_isa_5431514a76 (IsA hakea dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hakham is a kind of sage", "pln": ["(: cnet_isa_a4cdf49345 (IsA hakham sage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hakham is a kind of title", "pln": ["(: cnet_isa_f0ff168878 (IsA hakham title) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hakim is a kind of doctor", "pln": ["(: cnet_isa_0992cf5db9 (IsA hakim doctor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hakim is a kind of moslem", "pln": ["(: cnet_isa_fdade0048e (IsA hakim moslem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hakim is a kind of ruler", "pln": ["(: cnet_isa_d2648ec2f3 (IsA hakim ruler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hakka is a kind of chinese", "pln": ["(: cnet_isa_bbc891de3d (IsA hakka chinese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hal is a kind of intelligent computer", "pln": ["(: cnet_isa_44f571c31f (IsA hal intelligent_computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halakah is a kind of talmudic literature", "pln": ["(: cnet_isa_59bc51092c (IsA halakah talmudic_literature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halal is a kind of meat", "pln": ["(: cnet_isa_da2c37af43 (IsA halal meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halberd is a kind of pike", "pln": ["(: cnet_isa_b7590692fc (IsA halberd pike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halberdier is a kind of guard", "pln": ["(: cnet_isa_ff6c19822b (IsA halberdier guard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halchidhoma is a kind of hoka", "pln": ["(: cnet_isa_2d1a511cee (IsA halchidhoma hoka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halcyon is a kind of bird genus", "pln": ["(: cnet_isa_c21bb7d472 (IsA halcyon bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haldea is a kind of reptile genus", "pln": ["(: cnet_isa_dc385b3987 (IsA haldea reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halenia is a kind of dicot genus", "pln": ["(: cnet_isa_dea7760fd8 (IsA halenia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haler is a kind of czech monetary unit", "pln": ["(: cnet_isa_ccc56256d8 (IsA haler czech_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haler is a kind of slovakian monetary unit", "pln": ["(: cnet_isa_c354f8bb18 (IsA haler slovakian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halesia is a kind of dicot genus", "pln": ["(: cnet_isa_49d617814e (IsA halesia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "half is a kind of part", "pln": ["(: cnet_isa_7c058f4874 (IsA half part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half and half is a kind of dairy product", "pln": ["(: cnet_isa_369ae79ba6 (IsA half_and_half dairy_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half and half dressing is a kind of dressing", "pln": ["(: cnet_isa_3deded32ad (IsA half_and_half_dressing dressing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half binding is a kind of binding", "pln": ["(: cnet_isa_b5f7331deb (IsA half_binding binding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half blood is a kind of sibling", "pln": ["(: cnet_isa_ad6553e346 (IsA half_blood sibling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half breed is a kind of half caste", "pln": ["(: cnet_isa_c64d21636a (IsA half_breed half_caste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "half caste is a kind of mixed blood", "pln": ["(: cnet_isa_ebe77a2ba9 (IsA half_caste mixed_blood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half century is a kind of time period", "pln": ["(: cnet_isa_0f0cebf8dd (IsA half_century time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half cock is a kind of confusion", "pln": ["(: cnet_isa_09b1e7205f (IsA half_cock confusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half cross stitch is a kind of cross stitch", "pln": ["(: cnet_isa_b70ee15121 (IsA half_cross_stitch cross_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half crown is a kind of coin", "pln": ["(: cnet_isa_61d6433d04 (IsA half_crown coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half dollar is a kind of coin", "pln": ["(: cnet_isa_9de4263107 (IsA half_dollar coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "half eagle is a kind of coin", "pln": ["(: cnet_isa_8959ba7136 (IsA half_eagle coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half gainer is a kind of dive", "pln": ["(: cnet_isa_bd01015867 (IsA half_gainer dive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half hatchet is a kind of hatchet", "pln": ["(: cnet_isa_9ccbfc49e3 (IsA half_hatchet hatchet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half hitch is a kind of knot", "pln": ["(: cnet_isa_edc9d23dda (IsA half_hitch knot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "half holiday is a kind of holiday", "pln": ["(: cnet_isa_c5207087bc (IsA half_holiday holiday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half hour is a kind of time unit", "pln": ["(: cnet_isa_73218ffd5d (IsA half_hour time_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half intensity is a kind of intensity", "pln": ["(: cnet_isa_61966f53d4 (IsA half_intensity intensity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half length is a kind of portrait", "pln": ["(: cnet_isa_3d5288d35c (IsA half_length portrait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half life is a kind of time period", "pln": ["(: cnet_isa_1ac9372237 (IsA half_life time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half light is a kind of light", "pln": ["(: cnet_isa_0a3a0bc984 (IsA half_light light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half mast is a kind of position", "pln": ["(: cnet_isa_c991844e10 (IsA half_mast position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "half mile is a kind of linear unit", "pln": ["(: cnet_isa_9c53e1de59 (IsA half_mile linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half moon is a kind of area", "pln": ["(: cnet_isa_913084a9eb (IsA half_moon area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half moon is a kind of phase of moon", "pln": ["(: cnet_isa_b540f56b7b (IsA half_moon phase_of_moon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "half nelson is a kind of nelson", "pln": ["(: cnet_isa_3e64652ebb (IsA half_nelson nelson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half note is a kind of note", "pln": ["(: cnet_isa_9d57585392 (IsA half_note note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half page is a kind of page", "pln": ["(: cnet_isa_5f2b35a173 (IsA half_page page) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half pay is a kind of wage", "pln": ["(: cnet_isa_6a62dd7e51 (IsA half_pay wage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "half pound is a kind of avoirdupois unit", "pln": ["(: cnet_isa_3164b2f9c4 (IsA half_pound avoirdupois_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "half rest is a kind of rest", "pln": ["(: cnet_isa_20071b70b4 (IsA half_rest rest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half sister is a kind of sister", "pln": ["(: cnet_isa_4fb0d36631 (IsA half_sister sister) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half sole is a kind of sole", "pln": ["(: cnet_isa_49b462b6dc (IsA half_sole sole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half term is a kind of vacation", "pln": ["(: cnet_isa_66a3b9173b (IsA half_term vacation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half title is a kind of page", "pln": ["(: cnet_isa_5d71ee4c01 (IsA half_title page) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half track is a kind of track", "pln": ["(: cnet_isa_cc425e69d0 (IsA half_track track) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half track is a kind of military vehicle", "pln": ["(: cnet_isa_d3aa2c3f8b (IsA half_track military_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half track is a kind of tracked vehicle", "pln": ["(: cnet_isa_75f1853a96 (IsA half_track tracked_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half truth is a kind of misrepresentation", "pln": ["(: cnet_isa_953da0d352 (IsA half_truth misrepresentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "half volley is a kind of return", "pln": ["(: cnet_isa_43e05b44bd (IsA half_volley return) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halfback is a kind of back", "pln": ["(: cnet_isa_0beca352be (IsA halfback back) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halfback is a kind of running back", "pln": ["(: cnet_isa_6da93cc0f4 (IsA halfback running_back) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halfbeak is a kind of teleost fish", "pln": ["(: cnet_isa_b22809b675 (IsA halfbeak teleost_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halfpenny is a kind of coin", "pln": ["(: cnet_isa_5c3dee4448 (IsA halfpenny coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halfpennyworth is a kind of worth", "pln": ["(: cnet_isa_fdffac0b30 (IsA halfpennyworth worth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halftime is a kind of pause", "pln": ["(: cnet_isa_c0549c47a2 (IsA halftime pause) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halftone is a kind of engraving", "pln": ["(: cnet_isa_14ab86ce07 (IsA halftone engraving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "haliaeetus is a kind of bird genus", "pln": ["(: cnet_isa_b9bab36660 (IsA haliaeetus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halibut is a kind of flatfish", "pln": ["(: cnet_isa_47d80449f4 (IsA halibut flatfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halibut liver oil is a kind of animal oil", "pln": ["(: cnet_isa_07c7c0423c (IsA halibut_liver_oil animal_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halicoere is a kind of fish genus", "pln": ["(: cnet_isa_4e9724ee0b (IsA halicoere fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halictidae is a kind of arthropod family", "pln": ["(: cnet_isa_797a2c0126 (IsA halictidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halide is a kind of salt", "pln": ["(: cnet_isa_b698c3a0c4 (IsA halide salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halimodendron is a kind of rosid dicot genus", "pln": ["(: cnet_isa_09c8ea4ea4 (IsA halimodendron rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haliotidae is a kind of mollusk family", "pln": ["(: cnet_isa_1530a23098 (IsA haliotidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haliotis is a kind of mollusk genus", "pln": ["(: cnet_isa_7024c4e0ff (IsA haliotis mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halite is a kind of mineral", "pln": ["(: cnet_isa_76c25a09af (IsA halite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "halite is a kind of sodium chloride", "pln": ["(: cnet_isa_115ac6125c (IsA halite sodium_chloride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halitosis is a kind of halitus", "pln": ["(: cnet_isa_2c081fb6a6 (IsA halitosis halitus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halitus is a kind of breath", "pln": ["(: cnet_isa_7d3daf9b50 (IsA halitus breath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hall s honeysuckle is a kind of honeysuckle", "pln": ["(: cnet_isa_f7f5592d10 (IsA hall_s_honeysuckle honeysuckle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hall is a kind of passage way", "pln": ["(: cnet_isa_1455273303 (IsA hall passage_way) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hall is a kind of building", "pln": ["(: cnet_isa_0b713d4892 (IsA hall building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hall is a kind of room", "pln": ["(: cnet_isa_6d6ac8ef75 (IsA hall room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hall of fame is a kind of building", "pln": ["(: cnet_isa_179ecc2fe2 (IsA hall_of_fame building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hall of residence is a kind of dormitory", "pln": ["(: cnet_isa_9b5aeddd15 (IsA hall_of_residence dormitory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hall pass is a kind of pass", "pln": ["(: cnet_isa_532c53eefb (IsA hall_pass pass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hallelujah is a kind of praise", "pln": ["(: cnet_isa_0c9863761a (IsA hallelujah praise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hallmark is a kind of characteristic", "pln": ["(: cnet_isa_5f52dd5894 (IsA hallmark characteristic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halloo is a kind of cry", "pln": ["(: cnet_isa_2e05453598 (IsA halloo cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halloween is a kind of day", "pln": ["(: cnet_isa_3b9713f8d8 (IsA halloween day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hallstand is a kind of furniture", "pln": ["(: cnet_isa_e8aa97f8ed (IsA hallstand furniture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hallucination is a kind of object", "pln": ["(: cnet_isa_96603354f7 (IsA hallucination object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hallucination is a kind of delusion", "pln": ["(: cnet_isa_dfc6c13a0e (IsA hallucination delusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hallucinogen is a kind of psychoactive drug", "pln": ["(: cnet_isa_1f2bbb517e (IsA hallucinogen psychoactive_drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hallucinosis is a kind of psychological state", "pln": ["(: cnet_isa_bb230153fb (IsA hallucinosis psychological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hallway is a kind of corridor", "pln": ["(: cnet_isa_9d9067d8d8 (IsA hallway corridor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halma is a kind of board game", "pln": ["(: cnet_isa_5c74e25387 (IsA halma board_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halo is a kind of atmospheric phenomenon", "pln": ["(: cnet_isa_167c078937 (IsA halo atmospheric_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halo blight is a kind of blight", "pln": ["(: cnet_isa_4171cbca7a (IsA halo_blight blight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halobacteria is a kind of halophile", "pln": ["(: cnet_isa_1749706709 (IsA halobacteria halophile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halocarbon is a kind of organic compound", "pln": ["(: cnet_isa_24ff2c7af2 (IsA halocarbon organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halocarpus is a kind of gymnosperm genus", "pln": ["(: cnet_isa_33fc3d5d84 (IsA halocarpus gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haloform is a kind of alkyl halide", "pln": ["(: cnet_isa_f5768949ea (IsA haloform alkyl_halide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halogen is a kind of group", "pln": ["(: cnet_isa_5a0c333075 (IsA halogen group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halogeton is a kind of herb", "pln": ["(: cnet_isa_b072c53730 (IsA halogeton herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halon is a kind of organic compound", "pln": ["(: cnet_isa_ab3693d379 (IsA halon organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "halon is a kind of pollutant", "pln": ["(: cnet_isa_0474d7d0af (IsA halon pollutant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halophile is a kind of archaebacteria", "pln": ["(: cnet_isa_9c378f1b29 (IsA halophile archaebacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halophyte is a kind of vascular plant", "pln": ["(: cnet_isa_4ec49ad4fa (IsA halophyte vascular_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haloragidaceae is a kind of dicot family", "pln": ["(: cnet_isa_d63f434f00 (IsA haloragidaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halothane is a kind of inhalation anesthetic", "pln": ["(: cnet_isa_fc51f7395b (IsA halothane inhalation_anesthetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halt is a kind of disabled", "pln": ["(: cnet_isa_5e2779cda0 (IsA halt disabled) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halter is a kind of wing", "pln": ["(: cnet_isa_dbb617d528 (IsA halter wing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halter is a kind of headgear", "pln": ["(: cnet_isa_865407c033 (IsA halter headgear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halter is a kind of top", "pln": ["(: cnet_isa_200d3835b8 (IsA halter top) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "halyard is a kind of rope", "pln": ["(: cnet_isa_5e526d0b8e (IsA halyard rope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ham is a kind of food", "pln": ["(: cnet_isa_b283102a24 (IsA ham food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ham is a kind of cut of pork", "pln": ["(: cnet_isa_b43bb27d30 (IsA ham cut_of_pork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ham is a kind of actor", "pln": ["(: cnet_isa_f9b3dd7d9b (IsA ham actor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ham is a kind of radio operator", "pln": ["(: cnet_isa_b49699bae7 (IsA ham radio_operator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ham and egg is a kind of dish", "pln": ["(: cnet_isa_a274b2d261 (IsA ham_and_egg dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ham hock is a kind of leg", "pln": ["(: cnet_isa_251ad14047 (IsA ham_hock leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ham sandwich is a kind of sandwich", "pln": ["(: cnet_isa_8d59eb8142 (IsA ham_sandwich sandwich) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hamadryad is a kind of cobra", "pln": ["(: cnet_isa_557d0002a7 (IsA hamadryad cobra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hamadryad is a kind of dryad", "pln": ["(: cnet_isa_f2dc3cb302 (IsA hamadryad dryad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hamamelid dicot family is a kind of dicot family", "pln": ["(: cnet_isa_f11cdc98dd (IsA hamamelid_dicot_family dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hamamelid dicot genus is a kind of dicot genus", "pln": ["(: cnet_isa_0357302ad8 (IsA hamamelid_dicot_genus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hamamelidaceae is a kind of hamamelid dicot family", "pln": ["(: cnet_isa_0e65765677 (IsA hamamelidaceae hamamelid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hamamelidae is a kind of class", "pln": ["(: cnet_isa_9444cea1ff (IsA hamamelidae class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hamamelidanthum is a kind of dicot genus", "pln": ["(: cnet_isa_c96f452e65 (IsA hamamelidanthum dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hamamelidoxylon is a kind of dicot genus", "pln": ["(: cnet_isa_34e3dbccf2 (IsA hamamelidoxylon dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hamamelis is a kind of plant genus", "pln": ["(: cnet_isa_85e72a9e01 (IsA hamamelis plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hamamelite is a kind of dicot genus", "pln": ["(: cnet_isa_fd1a98e286 (IsA hamamelite dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hamartoma is a kind of growth", "pln": ["(: cnet_isa_3382dce334 (IsA hamartoma growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hamate is a kind of carpal bone", "pln": ["(: cnet_isa_c10aa4f8b6 (IsA hamate carpal_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hamburg parsley is a kind of parsley", "pln": ["(: cnet_isa_35d022cec9 (IsA hamburg_parsley parsley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hamburger is a kind of food", "pln": ["(: cnet_isa_98dceb809a (IsA hamburger food) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hamburger is a kind of sandwich", "pln": ["(: cnet_isa_5a4d1b3a7f (IsA hamburger sandwich) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hamburger bun is a kind of bun", "pln": ["(: cnet_isa_d14d079518 (IsA hamburger_bun bun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hamburger is a kind of meat", "pln": ["(: cnet_isa_38da927dec (IsA hamburger meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hame is a kind of stable gear", "pln": ["(: cnet_isa_2510f9f909 (IsA hame stable_gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hamelia is a kind of shrub", "pln": ["(: cnet_isa_8670c57c62 (IsA hamelia shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haminoea is a kind of mollusk genus", "pln": ["(: cnet_isa_84072344d5 (IsA haminoea mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hamitic is a kind of afroasiatic", "pln": ["(: cnet_isa_f943a80be2 (IsA hamitic afroasiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hamlet is a kind of community", "pln": ["(: cnet_isa_3f6c7b7e1e (IsA hamlet community) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hammer is a kind of blow", "pln": ["(: cnet_isa_098d3f7071 (IsA hammer blow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hammer is a kind of hand tool", "pln": ["(: cnet_isa_9ad38c02a3 (IsA hammer hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hammer is a kind of power tool", "pln": ["(: cnet_isa_2c7a8a5604 (IsA hammer power_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hammer is a kind of sport equipment", "pln": ["(: cnet_isa_705ce5c8d3 (IsA hammer sport_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hammer is a kind of striker", "pln": ["(: cnet_isa_656dfbaede (IsA hammer striker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hammer is a kind of field event", "pln": ["(: cnet_isa_081651b162 (IsA hammer field_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hammer and sickle is a kind of emblem", "pln": ["(: cnet_isa_f95af45faf (IsA hammer_and_sickle emblem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hammer head shark is a kind of shark", "pln": ["(: cnet_isa_5c0003db50 (IsA hammer_head_shark shark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hammerhead is a kind of shark", "pln": ["(: cnet_isa_7f0699811d (IsA hammerhead shark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hammerhead is a kind of head", "pln": ["(: cnet_isa_b31bdf663c (IsA hammerhead head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hammerlock is a kind of lock", "pln": ["(: cnet_isa_f2bbcaaffa (IsA hammerlock lock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hammertoe is a kind of toe", "pln": ["(: cnet_isa_4f8dfe01a8 (IsA hammertoe toe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hamming is a kind of acting", "pln": ["(: cnet_isa_8eb43f3019 (IsA hamming acting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hammock is a kind of bed", "pln": ["(: cnet_isa_7a1ad315c7 (IsA hammock bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hamper is a kind of basket", "pln": ["(: cnet_isa_98326482c0 (IsA hamper basket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hampshire is a kind of domestic sheep", "pln": ["(: cnet_isa_219ed97554 (IsA hampshire domestic_sheep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hamster is a kind of rodent", "pln": ["(: cnet_isa_7c8bf37c51 (IsA hamster rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hamstring is a kind of tendon", "pln": ["(: cnet_isa_da47076094 (IsA hamstring tendon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "han is a kind of dynasty", "pln": ["(: cnet_isa_708661a4b0 (IsA han dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand is a kind of aid", "pln": ["(: cnet_isa_c50eb8c86d (IsA hand aid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand is a kind of forepaw", "pln": ["(: cnet_isa_ab79657b50 (IsA hand forepaw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand is a kind of pointer", "pln": ["(: cnet_isa_8ed1246cdb (IsA hand pointer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand is a kind of extremity", "pln": ["(: cnet_isa_c2073b9cdc (IsA hand extremity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand is a kind of ability", "pln": ["(: cnet_isa_1c1081c121 (IsA hand ability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand is a kind of side", "pln": ["(: cnet_isa_c57f2e43bb (IsA hand side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand is a kind of applause", "pln": ["(: cnet_isa_c0a6067b56 (IsA hand applause) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand is a kind of collection", "pln": ["(: cnet_isa_da759b2773 (IsA hand collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand is a kind of sailor", "pln": ["(: cnet_isa_ce00781b10 (IsA hand sailor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand is a kind of handbreadth", "pln": ["(: cnet_isa_1793a59036 (IsA hand handbreadth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand ax is a kind of edge tool", "pln": ["(: cnet_isa_24eba84e19 (IsA hand_ax edge_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hand blower is a kind of blower", "pln": ["(: cnet_isa_dfba02001b (IsA hand_blower blower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand blower is a kind of dryer", "pln": ["(: cnet_isa_4c52b56fe1 (IsA hand_blower dryer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand brake is a kind of brake", "pln": ["(: cnet_isa_ca33723b82 (IsA hand_brake brake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand calculator is a kind of calculator", "pln": ["(: cnet_isa_0d196a294f (IsA hand_calculator calculator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand cheese is a kind of cheese", "pln": ["(: cnet_isa_2d4f7056b0 (IsA hand_cheese cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand cream is a kind of cream", "pln": ["(: cnet_isa_6aca93f3a0 (IsA hand_cream cream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand drill is a kind of drill", "pln": ["(: cnet_isa_4d3d571cfb (IsA hand_drill drill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand fern is a kind of fern", "pln": ["(: cnet_isa_c1a68b24bc (IsA hand_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand glass is a kind of light microscope", "pln": ["(: cnet_isa_3c25165333 (IsA hand_glass light_microscope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand glass is a kind of mirror", "pln": ["(: cnet_isa_566671349b (IsA hand_glass mirror) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand grenade is a kind of grenade", "pln": ["(: cnet_isa_985f72aec0 (IsA hand_grenade grenade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand held computer is a kind of portable computer", "pln": ["(: cnet_isa_9e69cb1dd8 (IsA hand_held_computer portable_computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand lotion is a kind of lotion", "pln": ["(: cnet_isa_c0b37f7dae (IsA hand_lotion lotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand luggage is a kind of baggage", "pln": ["(: cnet_isa_36ae614db1 (IsA hand_luggage baggage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand me down is a kind of garment", "pln": ["(: cnet_isa_92d0d8033d (IsA hand_me_down garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand mower is a kind of lawn mower", "pln": ["(: cnet_isa_07ea819e5a (IsA hand_mower lawn_mower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand pump is a kind of pump", "pln": ["(: cnet_isa_8d7a4c777b (IsA hand_pump pump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand puppet is a kind of puppet", "pln": ["(: cnet_isa_11febdcca7 (IsA hand_puppet puppet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand schuller christian disease is a kind of histiocytosis", "pln": ["(: cnet_isa_06ade103d8 (IsA hand_schuller_christian_disease histiocytosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand shovel is a kind of hand tool", "pln": ["(: cnet_isa_76415e0a22 (IsA hand_shovel hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand shovel is a kind of shovel", "pln": ["(: cnet_isa_22267c2e9c (IsA hand_shovel shovel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand throttle is a kind of lever", "pln": ["(: cnet_isa_be7b4ee5f7 (IsA hand_throttle lever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand tool is a kind of tool", "pln": ["(: cnet_isa_7c2027882a (IsA hand_tool tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand towel is a kind of towel", "pln": ["(: cnet_isa_fad86350c4 (IsA hand_towel towel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand truck is a kind of handcart", "pln": ["(: cnet_isa_db41b860ee (IsA hand_truck handcart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handball is a kind of court game", "pln": ["(: cnet_isa_d72ad03d9a (IsA handball court_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handball is a kind of ball", "pln": ["(: cnet_isa_a5b7edbdcd (IsA handball ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handball court is a kind of court", "pln": ["(: cnet_isa_3137082ba6 (IsA handball_court court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handbarrow is a kind of framework", "pln": ["(: cnet_isa_be2f2ed1ae (IsA handbarrow framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handbell is a kind of chime", "pln": ["(: cnet_isa_034d2f861c (IsA handbell chime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handbook is a kind of reference book", "pln": ["(: cnet_isa_34672c1b1a (IsA handbook reference_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handbow is a kind of bow", "pln": ["(: cnet_isa_a4c54d25c7 (IsA handbow bow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handbreadth is a kind of linear unit", "pln": ["(: cnet_isa_699ab16803 (IsA handbreadth linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handcar is a kind of car", "pln": ["(: cnet_isa_b87c21c8af (IsA handcar car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handcart is a kind of wheeled vehicle", "pln": ["(: cnet_isa_dfd7891d5e (IsA handcart wheeled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handclap is a kind of applause", "pln": ["(: cnet_isa_b0476c9852 (IsA handclap applause) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handcuff is a kind of shackle", "pln": ["(: cnet_isa_ab1cbff3a4 (IsA handcuff shackle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handedness is a kind of asymmetry", "pln": ["(: cnet_isa_092c4eb7ef (IsA handedness asymmetry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handel is a kind of music", "pln": ["(: cnet_isa_e0133c94bf (IsA handel music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handful is a kind of containerful", "pln": ["(: cnet_isa_8b81e3fda6 (IsA handful containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "handful is a kind of small indefinite quantity", "pln": ["(: cnet_isa_2a21ecfc7f (IsA handful small_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handgun is a kind of dangerous weapon", "pln": ["(: cnet_isa_aac39ce356 (IsA handgun dangerous_weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handgun is a kind of weapon", "pln": ["(: cnet_isa_23066e613c (IsA handgun weapon) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handgun and rifle is a kind of firearm", "pln": ["(: cnet_isa_ea353e250d (IsA handgun_and_rifle firearm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handgun and rifle is a kind of kind of gun", "pln": ["(: cnet_isa_ee5baf966e (IsA handgun_and_rifle kind_of_gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "handhold is a kind of appendage", "pln": ["(: cnet_isa_b1d110471b (IsA handhold appendage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "handicraft is a kind of arts and crafts", "pln": ["(: cnet_isa_c83585fc89 (IsA handicraft arts_and_crafts) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handicap is a kind of advantage", "pln": ["(: cnet_isa_fb07fdd45e (IsA handicap advantage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handicapped person is a kind of person", "pln": ["(: cnet_isa_5efdc630a1 (IsA handicapped_person person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handicraft is a kind of art and craft", "pln": ["(: cnet_isa_dcd27bdde7 (IsA handicraft art_and_craft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handicraft is a kind of trade", "pln": ["(: cnet_isa_157c96ba77 (IsA handicraft trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handicraft is a kind of work", "pln": ["(: cnet_isa_1d4bba358a (IsA handicraft work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handiness is a kind of convenience", "pln": ["(: cnet_isa_194fc8011d (IsA handiness convenience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handiness is a kind of skillfulness", "pln": ["(: cnet_isa_21713be549 (IsA handiness skillfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handkerchief is a kind of piece of cloth", "pln": ["(: cnet_isa_64aa908a61 (IsA handkerchief piece_of_cloth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handle is a kind of appendage", "pln": ["(: cnet_isa_641b5c5ee9 (IsA handle appendage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handlebar is a kind of bar", "pln": ["(: cnet_isa_0d601537fe (IsA handlebar bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "handler is a kind of agent", "pln": ["(: cnet_isa_50e2e3d031 (IsA handler agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handline is a kind of fishing line", "pln": ["(: cnet_isa_29a0ce3831 (IsA handline fishing_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handling is a kind of manual labor", "pln": ["(: cnet_isa_db7a213edc (IsA handling manual_labor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handling is a kind of touch", "pln": ["(: cnet_isa_c2570a1c9f (IsA handling touch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "handling cost is a kind of cost", "pln": ["(: cnet_isa_b4b248729b (IsA handling_cost cost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handloom is a kind of loom", "pln": ["(: cnet_isa_7afd8f7d24 (IsA handloom loom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handmaid is a kind of maid", "pln": ["(: cnet_isa_ffddd555f9 (IsA handmaid maid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handmaid is a kind of subordinateness", "pln": ["(: cnet_isa_0b1820505c (IsA handmaid subordinateness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handoff is a kind of football play", "pln": ["(: cnet_isa_3f325b7077 (IsA handoff football_play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handout is a kind of charity", "pln": ["(: cnet_isa_e56c87bf6e (IsA handout charity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handout is a kind of announcement", "pln": ["(: cnet_isa_f201024c77 (IsA handout announcement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handover is a kind of relinquishment", "pln": ["(: cnet_isa_53e72235d8 (IsA handover relinquishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handrest is a kind of support", "pln": ["(: cnet_isa_6772a2efa5 (IsA handrest support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand is a kind of body part", "pln": ["(: cnet_isa_27219fda28 (IsA hand body_part) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hand is a kind of guardianship", "pln": ["(: cnet_isa_e81c156c90 (IsA hand guardianship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handsaw is a kind of saw", "pln": ["(: cnet_isa_4e19752608 (IsA handsaw saw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handsaw fish is a kind of soft finned fish", "pln": ["(: cnet_isa_ca0cf60e2b (IsA handsaw_fish soft_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handset is a kind of telephone", "pln": ["(: cnet_isa_234cab122e (IsA handset telephone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handshake is a kind of acknowledgment", "pln": ["(: cnet_isa_46d92b2277 (IsA handshake acknowledgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handsomeness is a kind of beauty", "pln": ["(: cnet_isa_688793ca7c (IsA handsomeness beauty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handspike is a kind of bar", "pln": ["(: cnet_isa_697413bebf (IsA handspike bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handspring is a kind of acrobatic stunt", "pln": ["(: cnet_isa_31de7db225 (IsA handspring acrobatic_stunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handstamp is a kind of seal", "pln": ["(: cnet_isa_031226e5d5 (IsA handstamp seal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handstand is a kind of gymnastic exercise", "pln": ["(: cnet_isa_262b928aed (IsA handstand gymnastic_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "handwear is a kind of clothing", "pln": ["(: cnet_isa_9a33d81339 (IsA handwear clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handwheel is a kind of control", "pln": ["(: cnet_isa_acac83dab7 (IsA handwheel control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handwheel is a kind of wheel", "pln": ["(: cnet_isa_1195e65186 (IsA handwheel wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "handwriting is a kind of writing", "pln": ["(: cnet_isa_855fcd76ed (IsA handwriting writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "handyman is a kind of maintenance man", "pln": ["(: cnet_isa_17dbe15fbc (IsA handyman maintenance_man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hang is a kind of gymnastic exercise", "pln": ["(: cnet_isa_889c5be5f3 (IsA hang gymnastic_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hang is a kind of fit", "pln": ["(: cnet_isa_93414823e4 (IsA hang fit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hang glider is a kind of glider", "pln": ["(: cnet_isa_8056c15b3c (IsA hang_glider glider) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hang glider is a kind of rider", "pln": ["(: cnet_isa_e093792895 (IsA hang_glider rider) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hang gliding is a kind of glide", "pln": ["(: cnet_isa_b3ffc503ab (IsA hang_gliding glide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hang up is a kind of obstacle", "pln": ["(: cnet_isa_9b6595ffb7 (IsA hang_up obstacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hang up is a kind of preoccupation", "pln": ["(: cnet_isa_90c09f2d7c (IsA hang_up preoccupation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hangar queen is a kind of airplane", "pln": ["(: cnet_isa_42988dc03f (IsA hangar_queen airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hanger is a kind of support", "pln": ["(: cnet_isa_924fa9467c (IsA hanger support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hanger is a kind of worker", "pln": ["(: cnet_isa_fe3755a4be (IsA hanger worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hanging is a kind of execution", "pln": ["(: cnet_isa_47a14f7557 (IsA hanging execution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hanging is a kind of decoration", "pln": ["(: cnet_isa_94eb35e0d7 (IsA hanging decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hanging chad is a kind of chad", "pln": ["(: cnet_isa_42dbdc98d4 (IsA hanging_chad chad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hanging fly is a kind of mecopteran", "pln": ["(: cnet_isa_15d6a56ec8 (IsA hanging_fly mecopteran) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hanging wall is a kind of wall", "pln": ["(: cnet_isa_06c9795115 (IsA hanging_wall wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hangman s rope is a kind of rope", "pln": ["(: cnet_isa_6738dbbea3 (IsA hangman_s_rope rope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hangman is a kind of executioner", "pln": ["(: cnet_isa_c75ce074d3 (IsA hangman executioner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hangnail is a kind of skin", "pln": ["(: cnet_isa_73d0c2bbfa (IsA hangnail skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hangover is a kind of survival", "pln": ["(: cnet_isa_e724c833e5 (IsA hangover survival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hangover is a kind of discomfort", "pln": ["(: cnet_isa_3be7e587b2 (IsA hangover discomfort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hani is a kind of loloish", "pln": ["(: cnet_isa_c7642dec76 (IsA hani loloish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hank is a kind of coil", "pln": ["(: cnet_isa_241cf55377 (IsA hank coil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hank panky is a kind of sexual intercourse", "pln": ["(: cnet_isa_9d6771214d (IsA hank_panky sexual_intercourse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hankering is a kind of longing", "pln": ["(: cnet_isa_a0e825eaeb (IsA hankering longing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hanover is a kind of dynasty", "pln": ["(: cnet_isa_41675c7541 (IsA hanover dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hanover is a kind of royalty", "pln": ["(: cnet_isa_bb8ce0e280 (IsA hanover royalty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hanoverian is a kind of english person", "pln": ["(: cnet_isa_afe890ed33 (IsA hanoverian english_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hanoverian is a kind of ruler", "pln": ["(: cnet_isa_279d802b62 (IsA hanoverian ruler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "hansard is a kind of minutes", "pln": ["(: cnet_isa_7b8de80e3d (IsA hansard minutes) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hansard is a kind of minute", "pln": ["(: cnet_isa_2fd3c5cae7 (IsA hansard minute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hanseatic league is a kind of confederation", "pln": ["(: cnet_isa_4be5f84feb (IsA hanseatic_league confederation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hansom is a kind of carriage", "pln": ["(: cnet_isa_643d72480e (IsA hansom carriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hanukkah is a kind of jewish holy day", "pln": ["(: cnet_isa_9550f29575 (IsA hanukkah jewish_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hao is a kind of vietnamese monetary unit", "pln": ["(: cnet_isa_df53c5e66b (IsA hao vietnamese_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hap is a kind of accident", "pln": ["(: cnet_isa_4aef5d6082 (IsA hap accident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haploid is a kind of organism", "pln": ["(: cnet_isa_aa19c27cac (IsA haploid organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haploidy is a kind of condition", "pln": ["(: cnet_isa_9f529f7824 (IsA haploidy condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haplopappus is a kind of asterid dicot genus", "pln": ["(: cnet_isa_492e5a97c2 (IsA haplopappus asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haplosporidia is a kind of animal order", "pln": ["(: cnet_isa_e9a698f0f4 (IsA haplosporidia animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haplosporidian is a kind of sporozoan", "pln": ["(: cnet_isa_59e20cc51e (IsA haplosporidian sporozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haplotype is a kind of combination", "pln": ["(: cnet_isa_e1de480deb (IsA haplotype combination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "happening is a kind of event", "pln": ["(: cnet_isa_3d0d1eca6b (IsA happening event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "happiness is a kind of bliss", "pln": ["(: cnet_isa_181a527ccd (IsA happiness bliss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "happiness is a kind of emotion", "pln": ["(: cnet_isa_0aa6883756 (IsA happiness emotion) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "happiness is a kind of state of mind", "pln": ["(: cnet_isa_73b3a45d87 (IsA happiness state_of_mind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "happiness is a kind of feeling", "pln": ["(: cnet_isa_e06c0ef526 (IsA happiness feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "happiness is a kind of emotional state", "pln": ["(: cnet_isa_838fa89b3a (IsA happiness emotional_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "happy hour is a kind of hour", "pln": ["(: cnet_isa_eb9b34f015 (IsA happy_hour hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haptoglobin is a kind of protein", "pln": ["(: cnet_isa_30724b8ede (IsA haptoglobin protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harakiri is a kind of suicide", "pln": ["(: cnet_isa_9ffa9449f9 (IsA harakiri suicide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harangue is a kind of declamation", "pln": ["(: cnet_isa_0aeb20dac4 (IsA harangue declamation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haranguer is a kind of orator", "pln": ["(: cnet_isa_d95efc9247 (IsA haranguer orator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harasser is a kind of attacker", "pln": ["(: cnet_isa_2c2908f432 (IsA harasser attacker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harasser is a kind of tormentor", "pln": ["(: cnet_isa_8a21b95930 (IsA harasser tormentor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harassing fire is a kind of fire", "pln": ["(: cnet_isa_50213fc3e6 (IsA harassing_fire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "harassment is a kind of mistreatment", "pln": ["(: cnet_isa_7216a358d5 (IsA harassment mistreatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harassment is a kind of annoyance", "pln": ["(: cnet_isa_dfd999b5fa (IsA harassment annoyance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harbinger is a kind of indication", "pln": ["(: cnet_isa_855e1b2749 (IsA harbinger indication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harbor is a kind of refuge", "pln": ["(: cnet_isa_2b312d3870 (IsA harbor refuge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harbor patrol is a kind of patrol", "pln": ["(: cnet_isa_1bec48a277 (IsA harbor_patrol patrol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harbor porpoise is a kind of porpoise", "pln": ["(: cnet_isa_1a57aa7957 (IsA harbor_porpoise porpoise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harbor seal is a kind of earless seal", "pln": ["(: cnet_isa_a7459b288b (IsA harbor_seal earless_seal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harborage is a kind of safety", "pln": ["(: cnet_isa_d1d5816d1e (IsA harborage safety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard beech is a kind of southern beech", "pln": ["(: cnet_isa_4fc1eecb6f (IsA hard_beech southern_beech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard boiled egg is a kind of boiled egg", "pln": ["(: cnet_isa_ba80d18561 (IsA hard_boiled_egg boiled_egg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard candy is a kind of candy", "pln": ["(: cnet_isa_f12dd59636 (IsA hard_candy candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard cheese is a kind of misfortune", "pln": ["(: cnet_isa_5a825843a7 (IsA hard_cheese misfortune) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard cider is a kind of alcohol", "pln": ["(: cnet_isa_cb87e6a2a0 (IsA hard_cider alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard cider is a kind of cider", "pln": ["(: cnet_isa_5e4bddecb8 (IsA hard_cider cider) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard copy is a kind of matter", "pln": ["(: cnet_isa_3319ff1408 (IsA hard_copy matter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard core is a kind of clique", "pln": ["(: cnet_isa_f248c3b0d3 (IsA hard_core clique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard currency is a kind of currency", "pln": ["(: cnet_isa_d8c3e4e81a (IsA hard_currency currency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard disc is a kind of magnetic disk", "pln": ["(: cnet_isa_2ed6797dbe (IsA hard_disc magnetic_disk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard drug is a kind of controlled substance", "pln": ["(: cnet_isa_5919e3d385 (IsA hard_drug controlled_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard drug is a kind of narcotic", "pln": ["(: cnet_isa_2911243520 (IsA hard_drug narcotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard fern is a kind of fern", "pln": ["(: cnet_isa_9684ed66dc (IsA hard_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard hat is a kind of helmet", "pln": ["(: cnet_isa_47b118c5fc (IsA hard_hat helmet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard lead is a kind of lead", "pln": ["(: cnet_isa_aa13258be1 (IsA hard_lead lead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard line is a kind of position", "pln": ["(: cnet_isa_9e50822c0f (IsA hard_line position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard new is a kind of new", "pln": ["(: cnet_isa_efb2307279 (IsA hard_new new) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard palate is a kind of surface", "pln": ["(: cnet_isa_9769a8d0c0 (IsA hard_palate surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard right is a kind of right", "pln": ["(: cnet_isa_2218def634 (IsA hard_right right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard roll is a kind of bun", "pln": ["(: cnet_isa_84e5b8fb4d (IsA hard_roll bun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard rubber is a kind of rubber", "pln": ["(: cnet_isa_00c73cbb66 (IsA hard_rubber rubber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard rush is a kind of rush", "pln": ["(: cnet_isa_ede7278521 (IsA hard_rush rush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard sauce is a kind of sauce", "pln": ["(: cnet_isa_8c3d7b2564 (IsA hard_sauce sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard sell is a kind of advertising", "pln": ["(: cnet_isa_314ad625b8 (IsA hard_sell advertising) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard shell crab is a kind of crab", "pln": ["(: cnet_isa_b82163a5f2 (IsA hard_shell_crab crab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard shoulder is a kind of shoulder", "pln": ["(: cnet_isa_3aaf0435d9 (IsA hard_shoulder shoulder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard solder is a kind of solder", "pln": ["(: cnet_isa_89f12e447c (IsA hard_solder solder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard steel is a kind of steel", "pln": ["(: cnet_isa_a27c315cf2 (IsA hard_steel steel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard tick is a kind of tick", "pln": ["(: cnet_isa_d4ace4eee7 (IsA hard_tick tick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard time is a kind of difficulty", "pln": ["(: cnet_isa_61205d103d (IsA hard_time difficulty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard time is a kind of prison term", "pln": ["(: cnet_isa_47b85d6ef3 (IsA hard_time prison_term) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard time is a kind of time", "pln": ["(: cnet_isa_e922d8fb0a (IsA hard_time time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hard water is a kind of water", "pln": ["(: cnet_isa_b1df517bf2 (IsA hard_water water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hardback is a kind of book", "pln": ["(: cnet_isa_f2b349f3fc (IsA hardback book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hardbake is a kind of sweet", "pln": ["(: cnet_isa_6c071a6218 (IsA hardbake sweet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hardball is a kind of baseball", "pln": ["(: cnet_isa_fe8f1473fa (IsA hardball baseball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hardball is a kind of attitude", "pln": ["(: cnet_isa_d74c0d74ab (IsA hardball attitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hardenbergia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_e412d3c9db (IsA hardenbergia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hardening is a kind of change of integrity", "pln": ["(: cnet_isa_6c4e44a487 (IsA hardening change_of_integrity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hardening is a kind of natural process", "pln": ["(: cnet_isa_4b984cfea1 (IsA hardening natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hardening is a kind of symptom", "pln": ["(: cnet_isa_5b82b853fd (IsA hardening symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hardinggrass is a kind of grass", "pln": ["(: cnet_isa_d6d51d7c51 (IsA hardinggrass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hardliner is a kind of conservative", "pln": ["(: cnet_isa_0c69b22945 (IsA hardliner conservative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hardness is a kind of mechanical property", "pln": ["(: cnet_isa_d254b118b8 (IsA hardness mechanical_property) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hardness is a kind of consistency", "pln": ["(: cnet_isa_273de1b2e4 (IsA hardness consistency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hardness is a kind of difficulty", "pln": ["(: cnet_isa_a132f4222f (IsA hardness difficulty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hardness is a kind of quality", "pln": ["(: cnet_isa_92575f1ec5 (IsA hardness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hardship is a kind of misfortune", "pln": ["(: cnet_isa_7be64114ff (IsA hardship misfortune) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hardstem bulrush is a kind of sedge", "pln": ["(: cnet_isa_7f7bd59441 (IsA hardstem_bulrush sedge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hardtack is a kind of biscuit", "pln": ["(: cnet_isa_3b1987bcb9 (IsA hardtack biscuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hardtack is a kind of mahogany", "pln": ["(: cnet_isa_3ddbfdb235 (IsA hardtack mahogany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hardtop is a kind of car", "pln": ["(: cnet_isa_6acb5b80a4 (IsA hardtop car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hardware is a kind of instrumentality", "pln": ["(: cnet_isa_6a04486117 (IsA hardware instrumentality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hardware is a kind of component", "pln": ["(: cnet_isa_e41767fd5d (IsA hardware component) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hardware is a kind of weaponry", "pln": ["(: cnet_isa_4d6526b669 (IsA hardware weaponry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hardware error is a kind of error", "pln": ["(: cnet_isa_da496dd01a (IsA hardware_error error) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hardware store is a kind of shop", "pln": ["(: cnet_isa_49fa74b087 (IsA hardware_store shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hardwood is a kind of wood", "pln": ["(: cnet_isa_520af9073b (IsA hardwood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hare s foot bristle fern is a kind of bristle fern", "pln": ["(: cnet_isa_c83e19a27b (IsA hare_s_foot_bristle_fern bristle_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hare s foot fern is a kind of davallia", "pln": ["(: cnet_isa_f5bdcbd723 (IsA hare_s_foot_fern davallia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hare is a kind of leporid", "pln": ["(: cnet_isa_00f41b7c41 (IsA hare leporid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hare krishna is a kind of sect", "pln": ["(: cnet_isa_e3a1528a25 (IsA hare_krishna sect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hare krishna is a kind of hindoo", "pln": ["(: cnet_isa_736feaa6b0 (IsA hare_krishna hindoo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hare wallaby is a kind of wallaby", "pln": ["(: cnet_isa_7f63d3b9bd (IsA hare_wallaby wallaby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harebell is a kind of campanula", "pln": ["(: cnet_isa_6a8cefbaba (IsA harebell campanula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haredi is a kind of sect", "pln": ["(: cnet_isa_00e67a6ef3 (IsA haredi sect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harem is a kind of living quarter", "pln": ["(: cnet_isa_215914ad6c (IsA harem living_quarter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hare is a kind of mammal", "pln": ["(: cnet_isa_65fd8cb23e (IsA hare mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "haricot is a kind of green bean", "pln": ["(: cnet_isa_6caf3309a3 (IsA haricot green_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haricot vert is a kind of green bean", "pln": ["(: cnet_isa_90408ddd81 (IsA haricot_vert green_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harlequin is a kind of clown", "pln": ["(: cnet_isa_dc5cefa7d4 (IsA harlequin clown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harlequin opal is a kind of opal", "pln": ["(: cnet_isa_bca27fd9d6 (IsA harlequin_opal opal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harmattan is a kind of wind", "pln": ["(: cnet_isa_ab11d9b704 (IsA harmattan wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harmfulness is a kind of destructiveness", "pln": ["(: cnet_isa_e80b43b8d8 (IsA harmfulness destructiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harmfulness is a kind of unwholesomeness", "pln": ["(: cnet_isa_3455eb34ef (IsA harmfulness unwholesomeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harmonic is a kind of timbre", "pln": ["(: cnet_isa_7097fcac6b (IsA harmonic timbre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harmonic is a kind of tone", "pln": ["(: cnet_isa_32180ea11a (IsA harmonic tone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harmonic mean is a kind of mean", "pln": ["(: cnet_isa_2465403421 (IsA harmonic_mean mean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harmonic motion is a kind of periodic motion", "pln": ["(: cnet_isa_6a560f344d (IsA harmonic_motion periodic_motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harmonic progression is a kind of progression", "pln": ["(: cnet_isa_93ef34c051 (IsA harmonic_progression progression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harmonica is a kind of instrument", "pln": ["(: cnet_isa_5d24c27e54 (IsA harmonica instrument) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harmonica is a kind of musical instrument", "pln": ["(: cnet_isa_a6273b9050 (IsA harmonica musical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harmonica is a kind of free reed instrument", "pln": ["(: cnet_isa_129de0f35a (IsA harmonica free_reed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harmonic is a kind of acoustic", "pln": ["(: cnet_isa_2160e254e4 (IsA harmonic acoustic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harmonium is a kind of instrument", "pln": ["(: cnet_isa_d8e6bd11f8 (IsA harmonium instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harmonization is a kind of singing", "pln": ["(: cnet_isa_5bbd35d0a9 (IsA harmonization singing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harmonization is a kind of harmony", "pln": ["(: cnet_isa_5b29c2bd0a (IsA harmonization harmony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harmonizer is a kind of mediator", "pln": ["(: cnet_isa_d38a3aee3d (IsA harmonizer mediator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harmonizer is a kind of musician", "pln": ["(: cnet_isa_6267f490d8 (IsA harmonizer musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harmony is a kind of compatibility", "pln": ["(: cnet_isa_793fcaf7bc (IsA harmony compatibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harmony is a kind of sound property", "pln": ["(: cnet_isa_5631305bcb (IsA harmony sound_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harmony is a kind of agreement", "pln": ["(: cnet_isa_1a196c6728 (IsA harmony agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harmony is a kind of music", "pln": ["(: cnet_isa_b732f55e3d (IsA harmony music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harmony is a kind of order", "pln": ["(: cnet_isa_a660cbc33c (IsA harmony order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harness is a kind of stable gear", "pln": ["(: cnet_isa_03193145ab (IsA harness stable_gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harness is a kind of support", "pln": ["(: cnet_isa_212a5c6710 (IsA harness support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harness horse is a kind of horse", "pln": ["(: cnet_isa_d638ae80f3 (IsA harness_horse horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harness race is a kind of horse race", "pln": ["(: cnet_isa_939c0e4900 (IsA harness_race horse_race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harnessed antelope is a kind of antelope", "pln": ["(: cnet_isa_b8ee2fe5e3 (IsA harnessed_antelope antelope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "harp is a kind of instrument", "pln": ["(: cnet_isa_254e468dfb (IsA harp instrument) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harp is a kind of chordophone", "pln": ["(: cnet_isa_7fc737740f (IsA harp chordophone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harp is a kind of support", "pln": ["(: cnet_isa_ce9966e5ae (IsA harp support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harp seal is a kind of earless seal", "pln": ["(: cnet_isa_d135011826 (IsA harp_seal earless_seal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harpia is a kind of bird genus", "pln": ["(: cnet_isa_c08d800009 (IsA harpia bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harpist is a kind of musician", "pln": ["(: cnet_isa_8985cc35a8 (IsA harpist musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "harpoon is a kind of spear", "pln": ["(: cnet_isa_e29326359e (IsA harpoon spear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harpoon gun is a kind of cannon", "pln": ["(: cnet_isa_e8fe51de09 (IsA harpoon_gun cannon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harpoon line is a kind of rope", "pln": ["(: cnet_isa_5b5d79b3df (IsA harpoon_line rope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harpoon log is a kind of log", "pln": ["(: cnet_isa_4040ff6cbc (IsA harpoon_log log) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harpooner is a kind of skilled worker", "pln": ["(: cnet_isa_313304cfc6 (IsA harpooner skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harpsichord is a kind of musical instrument", "pln": ["(: cnet_isa_76c0b5af67 (IsA harpsichord musical_instrument) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harpsichord is a kind of clavier", "pln": ["(: cnet_isa_63abd903e0 (IsA harpsichord clavier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harpsichordist is a kind of musician", "pln": ["(: cnet_isa_3c25dc755c (IsA harpsichordist musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harpulla is a kind of harpullia", "pln": ["(: cnet_isa_adbc17ad2f (IsA harpulla harpullia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harpullia is a kind of tulipwood tree", "pln": ["(: cnet_isa_f55196e692 (IsA harpullia tulipwood_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "harpy is a kind of eagle", "pln": ["(: cnet_isa_66f413a7cf (IsA harpy eagle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harpy is a kind of fruit bat", "pln": ["(: cnet_isa_a7f196752d (IsA harpy fruit_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harpy is a kind of mythical monster", "pln": ["(: cnet_isa_4378f9a13d (IsA harpy mythical_monster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harridan is a kind of scold", "pln": ["(: cnet_isa_03d187cefe (IsA harridan scold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harrier is a kind of hawk", "pln": ["(: cnet_isa_6985631bfc (IsA harrier hawk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harrier is a kind of hound", "pln": ["(: cnet_isa_9e134dedf9 (IsA harrier hound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harrier eagle is a kind of hawk", "pln": ["(: cnet_isa_b2b6c807bc (IsA harrier_eagle hawk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harrisia is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_a0dd6a71f5 (IsA harrisia caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harrow is a kind of cultivator", "pln": ["(: cnet_isa_63bc397f50 (IsA harrow cultivator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harry potter is a kind of boy who cast spell", "pln": ["(: cnet_isa_52e07d0ad3 (IsA harry_potter boy_who_cast_spell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harry potter is a kind of character in novel", "pln": ["(: cnet_isa_1e266539b3 (IsA harry_potter character_in_novel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harshness is a kind of roughness", "pln": ["(: cnet_isa_865e7595f1 (IsA harshness roughness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harshness is a kind of unpleasantness", "pln": ["(: cnet_isa_17e23bbe93 (IsA harshness unpleasantness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hart s tongue is a kind of fern", "pln": ["(: cnet_isa_4017031a10 (IsA hart_s_tongue fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hart is a kind of red deer", "pln": ["(: cnet_isa_45dbea8c74 (IsA hart red_deer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hartebeest is a kind of antelope", "pln": ["(: cnet_isa_637651fbe2 (IsA hartebeest antelope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harvest is a kind of gather", "pln": ["(: cnet_isa_20e176dfad (IsA harvest gather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "harvest is a kind of season", "pln": ["(: cnet_isa_5bba610c7a (IsA harvest season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "harvest is a kind of consequence", "pln": ["(: cnet_isa_efe017984b (IsA harvest consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harvest lice is a kind of agrimonia", "pln": ["(: cnet_isa_01f3ec5ca6 (IsA harvest_lice agrimonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harvest mite is a kind of trombiculid", "pln": ["(: cnet_isa_3bb3a7f8cc (IsA harvest_mite trombiculid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harvest moon is a kind of full moon", "pln": ["(: cnet_isa_5d3b1b25a7 (IsA harvest_moon full_moon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harvest mouse is a kind of mouse", "pln": ["(: cnet_isa_8ab93d59f8 (IsA harvest_mouse mouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harvester is a kind of farm machine", "pln": ["(: cnet_isa_9da5a3af9d (IsA harvester farm_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harvester is a kind of farmhand", "pln": ["(: cnet_isa_d219516eca (IsA harvester farmhand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harvestfish is a kind of butterfish", "pln": ["(: cnet_isa_2b2b27cabb (IsA harvestfish butterfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harvestman is a kind of arachnid", "pln": ["(: cnet_isa_e2e00b7d1c (IsA harvestman arachnid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "harvey wallbanger is a kind of cocktail", "pln": ["(: cnet_isa_e6b9f03058 (IsA harvey_wallbanger cocktail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "has been is a kind of oldster", "pln": ["(: cnet_isa_fc17b2f7d4 (IsA has_been oldster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hash is a kind of dish", "pln": ["(: cnet_isa_df5a4eaac0 (IsA hash dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hash head is a kind of head", "pln": ["(: cnet_isa_d25731fb41 (IsA hash_head head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hash house is a kind of restaurant", "pln": ["(: cnet_isa_1ca59743fe (IsA hash_house restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hashimoto s disease is a kind of autoimmune disease", "pln": ["(: cnet_isa_d56d4fe780 (IsA hashimoto_s_disease autoimmune_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hashish is a kind of soft drug", "pln": ["(: cnet_isa_90113fcdd3 (IsA hashish soft_drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hasidim is a kind of orthodox judaism", "pln": ["(: cnet_isa_b9000da5fe (IsA hasidim orthodox_judaism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hasidism is a kind of orthodox judaism", "pln": ["(: cnet_isa_91781b1f09 (IsA hasidism orthodox_judaism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haslet is a kind of loaf", "pln": ["(: cnet_isa_99ea0d1549 (IsA haslet loaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haslet is a kind of variety meat", "pln": ["(: cnet_isa_e2a7476e56 (IsA haslet variety_meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hasp is a kind of catch", "pln": ["(: cnet_isa_e20eed26d3 (IsA hasp catch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hassium is a kind of chemical element", "pln": ["(: cnet_isa_d27450b128 (IsA hassium chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hassle is a kind of fight", "pln": ["(: cnet_isa_bcf29c47e0 (IsA hassle fight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hassock is a kind of cushion", "pln": ["(: cnet_isa_7a22d583d1 (IsA hassock cushion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hastate leaf is a kind of simple leaf", "pln": ["(: cnet_isa_f245d6b722 (IsA hastate_leaf simple_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haste is a kind of motion", "pln": ["(: cnet_isa_46119748d5 (IsA haste motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haste is a kind of speed", "pln": ["(: cnet_isa_bba9d18fc3 (IsA haste speed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hastinapura is a kind of sanskrit literature", "pln": ["(: cnet_isa_f67ccfd2fa (IsA hastinapura sanskrit_literature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hastiness is a kind of impulsiveness", "pln": ["(: cnet_isa_ce389ea4a9 (IsA hastiness impulsiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hasty defense is a kind of defense", "pln": ["(: cnet_isa_a40ce72467 (IsA hasty_defense defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hasty pudding is a kind of mush", "pln": ["(: cnet_isa_d5392de9b0 (IsA hasty_pudding mush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hasty pudding is a kind of porridge", "pln": ["(: cnet_isa_ff19d9095e (IsA hasty_pudding porridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hat is a kind of form of clothing", "pln": ["(: cnet_isa_db03aab674 (IsA hat form_of_clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hat is a kind of function", "pln": ["(: cnet_isa_ba997f4ce1 (IsA hat function) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hat is a kind of headdress", "pln": ["(: cnet_isa_a6bc4cca87 (IsA hat headdress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hat box is a kind of special kind of box", "pln": ["(: cnet_isa_39c45b7ffd (IsA hat_box special_kind_of_box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hat trick is a kind of score", "pln": ["(: cnet_isa_9162116e07 (IsA hat_trick score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hatband is a kind of band", "pln": ["(: cnet_isa_d38748cd59 (IsA hatband band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hatbox is a kind of baggage", "pln": ["(: cnet_isa_20288c82b6 (IsA hatbox baggage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hatch is a kind of movable barrier", "pln": ["(: cnet_isa_8959cf2c03 (IsA hatch movable_barrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hatch is a kind of shading", "pln": ["(: cnet_isa_dc774a58d1 (IsA hatch shading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hatch is a kind of parturition", "pln": ["(: cnet_isa_4b8bc6cb6b (IsA hatch parturition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hatchback is a kind of car", "pln": ["(: cnet_isa_403121963d (IsA hatchback car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hatchback is a kind of car door", "pln": ["(: cnet_isa_88b5cb223a (IsA hatchback car_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hatchel is a kind of comb", "pln": ["(: cnet_isa_6a9849bb59 (IsA hatchel comb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hatchery is a kind of place", "pln": ["(: cnet_isa_c5847ef503 (IsA hatchery place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hatchet is a kind of ax", "pln": ["(: cnet_isa_ec182eaad9 (IsA hatchet ax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hatchet man is a kind of assistant", "pln": ["(: cnet_isa_a2b67861a7 (IsA hatchet_man assistant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hatchet man is a kind of murderer", "pln": ["(: cnet_isa_f81ab15f5b (IsA hatchet_man murderer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hatchling is a kind of young", "pln": ["(: cnet_isa_004ba9b355 (IsA hatchling young) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hatchway is a kind of entrance", "pln": ["(: cnet_isa_f2119766b0 (IsA hatchway entrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hate is a kind of emotion", "pln": ["(: cnet_isa_eeeae67d21 (IsA hate emotion) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hate is a kind of human emotion", "pln": ["(: cnet_isa_cf50180081 (IsA hate human_emotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hate is a kind of strong emotion", "pln": ["(: cnet_isa_598329c444 (IsA hate strong_emotion) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hate is a kind of very strong emotion", "pln": ["(: cnet_isa_0b88522e24 (IsA hate very_strong_emotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hate mail is a kind of mail", "pln": ["(: cnet_isa_33ca1663be (IsA hate_mail mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hatefulness is a kind of offensiveness", "pln": ["(: cnet_isa_d018760665 (IsA hatefulness offensiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hatemonger is a kind of detractor", "pln": ["(: cnet_isa_8850ccabc9 (IsA hatemonger detractor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "haunch is a kind of hindquarters", "pln": ["(: cnet_isa_33fd70d983 (IsA haunch hindquarters) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hater is a kind of person", "pln": ["(: cnet_isa_c34276d9c1 (IsA hater person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hatful is a kind of containerful", "pln": ["(: cnet_isa_c274dba00a (IsA hatful containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hatha yoga is a kind of yoga", "pln": ["(: cnet_isa_ba24282f43 (IsA hatha_yoga yoga) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hatiora is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_c42fdd005b (IsA hatiora caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hatpin is a kind of pin", "pln": ["(: cnet_isa_0d651f8b8a (IsA hatpin pin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hauberk is a kind of chain mail", "pln": ["(: cnet_isa_5d82e34f80 (IsA hauberk chain_mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hauler is a kind of contractor", "pln": ["(: cnet_isa_e31451c8c9 (IsA hauler contractor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hauling is a kind of transportation", "pln": ["(: cnet_isa_dac71c201d (IsA hauling transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haulm is a kind of stalk", "pln": ["(: cnet_isa_643a26d894 (IsA haulm stalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haunch is a kind of hindquarter", "pln": ["(: cnet_isa_fa184d6db9 (IsA haunch hindquarter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haunch is a kind of body part", "pln": ["(: cnet_isa_dd05c95cbb (IsA haunch body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haunt is a kind of area", "pln": ["(: cnet_isa_6d86b2a11e (IsA haunt area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hausa is a kind of west chadic", "pln": ["(: cnet_isa_f9b616c89e (IsA hausa west_chadic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hausmannite is a kind of mineral", "pln": ["(: cnet_isa_4e9768c659 (IsA hausmannite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haussa is a kind of nigerian", "pln": ["(: cnet_isa_13d04edd7a (IsA haussa nigerian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haustorium is a kind of plant process", "pln": ["(: cnet_isa_711b494ade (IsA haustorium plant_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haute couture is a kind of fashion", "pln": ["(: cnet_isa_41d407903a (IsA haute_couture fashion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haute cuisine is a kind of cuisine", "pln": ["(: cnet_isa_9e06392025 (IsA haute_cuisine cuisine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "havasupai is a kind of yuman", "pln": ["(: cnet_isa_e01c66609e (IsA havasupai yuman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "havasupai is a kind of hoka", "pln": ["(: cnet_isa_b4a3abb3fc (IsA havasupai hoka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "havelock is a kind of cloth covering", "pln": ["(: cnet_isa_51133f6a43 (IsA havelock cloth_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haven is a kind of shelter", "pln": ["(: cnet_isa_4f6f1f1787 (IsA haven shelter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haverhill fever is a kind of ratbite fever", "pln": ["(: cnet_isa_87a221b071 (IsA haverhill_fever ratbite_fever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haversian canal is a kind of duct", "pln": ["(: cnet_isa_c03a4fdbc8 (IsA haversian_canal duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "having ball is a kind of having very good time", "pln": ["(: cnet_isa_5febc9b0e2 (IsA having_ball having_very_good_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "having daughter is a kind of wonderful experience", "pln": ["(: cnet_isa_48f209356c (IsA having_daughter wonderful_experience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "having sex is a kind of having fun", "pln": ["(: cnet_isa_88fda3691b (IsA having_sex having_fun) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "havoc is a kind of disturbance", "pln": ["(: cnet_isa_8b29e94cae (IsA havoc disturbance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haw is a kind of nictitating membrane", "pln": ["(: cnet_isa_d43e0df631 (IsA haw nictitating_membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hawaii is a kind of place", "pln": ["(: cnet_isa_8a3e213887 (IsA hawaii place) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hawaii is a kind of state", "pln": ["(: cnet_isa_2b72e695c5 (IsA hawaii state) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hawaii time is a kind of civil time", "pln": ["(: cnet_isa_f4661e4fdb (IsA hawaii_time civil_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hawaiian is a kind of human language", "pln": ["(: cnet_isa_59d7745c8f (IsA hawaiian human_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hawaiian is a kind of oceanic", "pln": ["(: cnet_isa_a403211466 (IsA hawaiian oceanic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hawaiian is a kind of american", "pln": ["(: cnet_isa_5aeeeeff51 (IsA hawaiian american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hawaiian guitar is a kind of guitar", "pln": ["(: cnet_isa_5cd9acab6d (IsA hawaiian_guitar guitar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hawala is a kind of banking industry", "pln": ["(: cnet_isa_1528eab35e (IsA hawala banking_industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hawfinch is a kind of grosbeak", "pln": ["(: cnet_isa_8b1475de2e (IsA hawfinch grosbeak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hawk s beard is a kind of wildflower", "pln": ["(: cnet_isa_26b6ce3744 (IsA hawk_s_beard wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hawk is a kind of bird", "pln": ["(: cnet_isa_3e4e328083 (IsA hawk bird) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hawk is a kind of bird of prey", "pln": ["(: cnet_isa_ca4647d65d (IsA hawk bird_of_prey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hawk is a kind of militarist", "pln": ["(: cnet_isa_9984729300 (IsA hawk militarist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hawk nose is a kind of nose", "pln": ["(: cnet_isa_21bccdb7fa (IsA hawk_nose nose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hawk owl is a kind of owl", "pln": ["(: cnet_isa_8b99db5a7f (IsA hawk_owl owl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hawkbit is a kind of wildflower", "pln": ["(: cnet_isa_9c0559b26c (IsA hawkbit wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hawkishness is a kind of political orientation", "pln": ["(: cnet_isa_a80dad6baa (IsA hawkishness political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hawkmoth is a kind of moth", "pln": ["(: cnet_isa_51a1060c8e (IsA hawkmoth moth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hawksbill turtle is a kind of sea turtle", "pln": ["(: cnet_isa_5f0fb95725 (IsA hawksbill_turtle sea_turtle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hawkweed is a kind of herb", "pln": ["(: cnet_isa_eae7e42702 (IsA hawkweed herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hawse is a kind of hole", "pln": ["(: cnet_isa_7b1d8173d4 (IsA hawse hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hawser is a kind of rope", "pln": ["(: cnet_isa_a8eb71a3da (IsA hawser rope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hawser bend is a kind of knot", "pln": ["(: cnet_isa_d2ad77158e (IsA hawser_bend knot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hawthorn is a kind of shrub", "pln": ["(: cnet_isa_4b6aabe2e9 (IsA hawthorn shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hay is a kind of fodder", "pln": ["(: cnet_isa_9712005557 (IsA hay fodder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hay bale is a kind of bale", "pln": ["(: cnet_isa_4de82d3fd9 (IsA hay_bale bale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hay fever is a kind of allergic rhinitis", "pln": ["(: cnet_isa_28217aeb7b (IsA hay_fever allergic_rhinitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hay scented is a kind of fern", "pln": ["(: cnet_isa_a4a159d54e (IsA hay_scented fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haycock is a kind of haystack", "pln": ["(: cnet_isa_13af2caee9 (IsA haycock haystack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haydn is a kind of music", "pln": ["(: cnet_isa_5a58b272f3 (IsA haydn music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hayfield is a kind of grassland", "pln": ["(: cnet_isa_49f931a36c (IsA hayfield grassland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hayfork is a kind of fork", "pln": ["(: cnet_isa_c7c83e358a (IsA hayfork fork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haying is a kind of harvest", "pln": ["(: cnet_isa_cebefa51e4 (IsA haying harvest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haying is a kind of season", "pln": ["(: cnet_isa_0836f52877 (IsA haying season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hayloft is a kind of loft", "pln": ["(: cnet_isa_7f0c8fb927 (IsA hayloft loft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "haymaker is a kind of punch", "pln": ["(: cnet_isa_cd83b7ba8e (IsA haymaker punch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haymaker is a kind of farm machine", "pln": ["(: cnet_isa_b89015a58a (IsA haymaker farm_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haymaking is a kind of accomplishment", "pln": ["(: cnet_isa_2f1a31a7ef (IsA haymaking accomplishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haymaking is a kind of labor", "pln": ["(: cnet_isa_9e5906b5f3 (IsA haymaking labor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haymow is a kind of batch", "pln": ["(: cnet_isa_ea1213ed57 (IsA haymow batch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hayrack is a kind of framework", "pln": ["(: cnet_isa_761c50a7b0 (IsA hayrack framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hayrack is a kind of rack", "pln": ["(: cnet_isa_1c143279cc (IsA hayrack rack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haystack is a kind of stack", "pln": ["(: cnet_isa_00c24b34bf (IsA haystack stack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haywire is a kind of wire", "pln": ["(: cnet_isa_bf2d90af44 (IsA haywire wire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hazard is a kind of obstacle", "pln": ["(: cnet_isa_c23ef2e3d1 (IsA hazard obstacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hazard is a kind of danger", "pln": ["(: cnet_isa_a17491feac (IsA hazard danger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hazard insurance is a kind of insurance", "pln": ["(: cnet_isa_1353aff75c (IsA hazard_insurance insurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hazardia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_9ab4653437 (IsA hazardia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hazardousness is a kind of danger", "pln": ["(: cnet_isa_fd5f140148 (IsA hazardousness danger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haze is a kind of aerosol", "pln": ["(: cnet_isa_0e18278f2f (IsA haze aerosol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hazel is a kind of brown", "pln": ["(: cnet_isa_8727ce8868 (IsA hazel brown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hazel is a kind of tree", "pln": ["(: cnet_isa_e7ce3ec022 (IsA hazel tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hazel is a kind of wood", "pln": ["(: cnet_isa_b7a14b6c92 (IsA hazel wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hazel mouse is a kind of dormouse", "pln": ["(: cnet_isa_6308931530 (IsA hazel_mouse dormouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hazelnut is a kind of edible nut", "pln": ["(: cnet_isa_5a66d0f266 (IsA hazelnut edible_nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hazelnut is a kind of nut tree", "pln": ["(: cnet_isa_1d24c8ec78 (IsA hazelnut nut_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "haziness is a kind of cloudiness", "pln": ["(: cnet_isa_bf0d0402f8 (IsA haziness cloudiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "haziness is a kind of vagueness", "pln": ["(: cnet_isa_989dd6b061 (IsA haziness vagueness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hazmat is a kind of material", "pln": ["(: cnet_isa_71a08f6087 (IsA hazmat material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hdl cholesterol is a kind of cholesterol", "pln": ["(: cnet_isa_875b2b4128 (IsA hdl_cholesterol cholesterol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "he is a kind of letter", "pln": ["(: cnet_isa_a2ca8a1758 (IsA he letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head is a kind of domestic animal", "pln": ["(: cnet_isa_b3f2253f6d (IsA head domestic_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head is a kind of obverse", "pln": ["(: cnet_isa_aa7383e2ed (IsA head obverse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head is a kind of projection", "pln": ["(: cnet_isa_f16909fdf4 (IsA head projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head is a kind of striker", "pln": ["(: cnet_isa_91961de29c (IsA head striker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head is a kind of toilet", "pln": ["(: cnet_isa_4fc794c43e (IsA head toilet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head is a kind of external body part", "pln": ["(: cnet_isa_7fc58bcd70 (IsA head external_body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head is a kind of structure", "pln": ["(: cnet_isa_697fe79120 (IsA head structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head is a kind of word", "pln": ["(: cnet_isa_7f4f1a7125 (IsA head word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head is a kind of top", "pln": ["(: cnet_isa_dcbcfd6c93 (IsA head top) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head is a kind of formation", "pln": ["(: cnet_isa_a3a9e53df7 (IsA head formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head is a kind of foam", "pln": ["(: cnet_isa_502f2c275d (IsA head foam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head is a kind of object", "pln": ["(: cnet_isa_301ebca337 (IsA head object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head is a kind of drug user", "pln": ["(: cnet_isa_9ab5598a8d (IsA head drug_user) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "head is a kind of individual", "pln": ["(: cnet_isa_63ae954413 (IsA head individual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head is a kind of leader", "pln": ["(: cnet_isa_cfc4f15927 (IsA head leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head is a kind of pressure", "pln": ["(: cnet_isa_9c64fde4d5 (IsA head pressure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head is a kind of linear unit", "pln": ["(: cnet_isa_fb8584f9d4 (IsA head linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head is a kind of point", "pln": ["(: cnet_isa_0cdeaba61f (IsA head point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head blight is a kind of blight", "pln": ["(: cnet_isa_b913c959f3 (IsA head_blight blight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head cabbage is a kind of cabbage", "pln": ["(: cnet_isa_47c280b1f6 (IsA head_cabbage cabbage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head cold is a kind of cold", "pln": ["(: cnet_isa_72b7aa1eec (IsA head_cold cold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head count is a kind of count", "pln": ["(: cnet_isa_199e1e904f (IsA head_count count) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head covering is a kind of garment", "pln": ["(: cnet_isa_e57471e82f (IsA head_covering garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head crash is a kind of crash", "pln": ["(: cnet_isa_20d6f8ced6 (IsA head_crash crash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head gasket is a kind of gasket", "pln": ["(: cnet_isa_e7cf3011cb (IsA head_gasket gasket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head gate is a kind of gate", "pln": ["(: cnet_isa_c9c55f892a (IsA head_gate gate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head lettuce is a kind of lettuce", "pln": ["(: cnet_isa_0940ba82a0 (IsA head_lettuce lettuce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "head linesman is a kind of football official", "pln": ["(: cnet_isa_340479b7f1 (IsA head_linesman football_official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head louse is a kind of louse", "pln": ["(: cnet_isa_13af8f9b3d (IsA head_louse louse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "head nurse is a kind of nurse", "pln": ["(: cnet_isa_1575ae3789 (IsA head_nurse nurse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head of household is a kind of head", "pln": ["(: cnet_isa_51bbe3075d (IsA head_of_household head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head of state is a kind of representative", "pln": ["(: cnet_isa_e6b52ce470 (IsA head_of_state representative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head register is a kind of register", "pln": ["(: cnet_isa_dd6d21f774 (IsA head_register register) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "head sea is a kind of sea", "pln": ["(: cnet_isa_f34c81df5b (IsA head_sea sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head shop is a kind of shop", "pln": ["(: cnet_isa_c350df3914 (IsA head_shop shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head smut is a kind of smut", "pln": ["(: cnet_isa_c308705798 (IsA head_smut smut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headache is a kind of ache", "pln": ["(: cnet_isa_92dbe4675b (IsA headache ache) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headband is a kind of band", "pln": ["(: cnet_isa_a0c2e2a19c (IsA headband band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headboard is a kind of panel", "pln": ["(: cnet_isa_b76f090618 (IsA headboard panel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headcheese is a kind of loaf", "pln": ["(: cnet_isa_2f997dba7a (IsA headcheese loaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headcheese is a kind of sausage", "pln": ["(: cnet_isa_3704c3a100 (IsA headcheese sausage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headdress is a kind of clothing", "pln": ["(: cnet_isa_d90d1b7930 (IsA headdress clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "header is a kind of jump", "pln": ["(: cnet_isa_c9bd0c4cfa (IsA header jump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "header is a kind of beam", "pln": ["(: cnet_isa_49d718f2de (IsA header beam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "header is a kind of brick", "pln": ["(: cnet_isa_23c0a3f63e (IsA header brick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "header is a kind of harvester", "pln": ["(: cnet_isa_e8dffe59f4 (IsA header harvester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "header is a kind of hit", "pln": ["(: cnet_isa_d27256c193 (IsA header hit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headfast is a kind of mooring", "pln": ["(: cnet_isa_7a64216d75 (IsA headfast mooring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headful is a kind of body covering", "pln": ["(: cnet_isa_157879fc51 (IsA headful body_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headful is a kind of containerful", "pln": ["(: cnet_isa_04bb740fac (IsA headful containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headgear is a kind of hoist", "pln": ["(: cnet_isa_9287029ff2 (IsA headgear hoist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "headgear is a kind of stable gear", "pln": ["(: cnet_isa_06e439bc7b (IsA headgear stable_gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headhunter is a kind of recruiter", "pln": ["(: cnet_isa_10040e2c9a (IsA headhunter recruiter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headhunter is a kind of savage", "pln": ["(: cnet_isa_dd559fbe6d (IsA headhunter savage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heading is a kind of line", "pln": ["(: cnet_isa_45296bb999 (IsA heading line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headlight is a kind of light", "pln": ["(: cnet_isa_0a802abb34 (IsA headlight light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headline is a kind of heading", "pln": ["(: cnet_isa_27d6f43f8d (IsA headline heading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "headliner is a kind of performer", "pln": ["(: cnet_isa_a934fdacff (IsA headliner performer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headlinese is a kind of expressive style", "pln": ["(: cnet_isa_09e5ceb020 (IsA headlinese expressive_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headlock is a kind of lock", "pln": ["(: cnet_isa_1324286741 (IsA headlock lock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headman is a kind of leader", "pln": ["(: cnet_isa_a1dc9a6de0 (IsA headman leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headmaster is a kind of principal", "pln": ["(: cnet_isa_30150af5c9 (IsA headmaster principal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headmastership is a kind of headship", "pln": ["(: cnet_isa_9ec78ba0bb (IsA headmastership headship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headmistress is a kind of principal", "pln": ["(: cnet_isa_d8feae2853 (IsA headmistress principal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "headmistressship is a kind of headship", "pln": ["(: cnet_isa_0109cb2eaf (IsA headmistressship headship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headpiece is a kind of helmet", "pln": ["(: cnet_isa_92a613eace (IsA headpiece helmet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headpin is a kind of bowling pin", "pln": ["(: cnet_isa_94c6fe6138 (IsA headpin bowling_pin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headquarter is a kind of office", "pln": ["(: cnet_isa_acad629406 (IsA headquarter office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headquarter is a kind of military installation", "pln": ["(: cnet_isa_9a5afccb7b (IsA headquarter military_installation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headquarter is a kind of military unit", "pln": ["(: cnet_isa_57ae405b70 (IsA headquarter military_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headquarter staff is a kind of staff", "pln": ["(: cnet_isa_eddceeb847 (IsA headquarter_staff staff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headrace is a kind of watercourse", "pln": ["(: cnet_isa_7e3bb63c1f (IsA headrace watercourse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headrest is a kind of cushion", "pln": ["(: cnet_isa_17dbb024c9 (IsA headrest cushion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headrest is a kind of rest", "pln": ["(: cnet_isa_0c0d2dcb12 (IsA headrest rest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "headroom is a kind of high fidelity", "pln": ["(: cnet_isa_07d408a6ed (IsA headroom high_fidelity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headroom is a kind of room", "pln": ["(: cnet_isa_fb2d07b82b (IsA headroom room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "head up is a kind of warning", "pln": ["(: cnet_isa_8629d09ccd (IsA head_up warning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headsail is a kind of sail", "pln": ["(: cnet_isa_81c246354f (IsA headsail sail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headscarf is a kind of kerchief", "pln": ["(: cnet_isa_c19f5ebfc0 (IsA headscarf kerchief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headset is a kind of telephone receiver", "pln": ["(: cnet_isa_666c55e4ad (IsA headset telephone_receiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headshake is a kind of motion", "pln": ["(: cnet_isa_ffedd29348 (IsA headshake motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "headship is a kind of position", "pln": ["(: cnet_isa_b1d42b177b (IsA headship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headshot is a kind of shooting", "pln": ["(: cnet_isa_7706f6d960 (IsA headshot shooting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headshot is a kind of shot", "pln": ["(: cnet_isa_475f18ed19 (IsA headshot shot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headshot is a kind of picture", "pln": ["(: cnet_isa_6d597a86e4 (IsA headshot picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headsman is a kind of executioner", "pln": ["(: cnet_isa_1dc404ed83 (IsA headsman executioner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headspace is a kind of indefinite quantity", "pln": ["(: cnet_isa_e6dfb7f9bf (IsA headspace indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headstall is a kind of band", "pln": ["(: cnet_isa_b5b1770a21 (IsA headstall band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headstand is a kind of acrobatic stunt", "pln": ["(: cnet_isa_e4e0735b7f (IsA headstand acrobatic_stunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headstock is a kind of support", "pln": ["(: cnet_isa_409010d761 (IsA headstock support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headstream is a kind of stream", "pln": ["(: cnet_isa_e33aba94bf (IsA headstream stream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headwater is a kind of beginning", "pln": ["(: cnet_isa_4e2e81f6ea (IsA headwater beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headway is a kind of progress", "pln": ["(: cnet_isa_c670459408 (IsA headway progress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headwind is a kind of wind", "pln": ["(: cnet_isa_aa6ff942de (IsA headwind wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headword is a kind of content word", "pln": ["(: cnet_isa_a2658b6c99 (IsA headword content_word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "headword is a kind of word", "pln": ["(: cnet_isa_257ae63ebb (IsA headword word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "healing is a kind of bodily process", "pln": ["(: cnet_isa_288db8ca39 (IsA healing bodily_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "health is a kind of condition", "pln": ["(: cnet_isa_b4a6957dd6 (IsA health condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "health is a kind of wellbeing", "pln": ["(: cnet_isa_1d5f7c8cae (IsA health wellbeing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "health care is a kind of social insurance", "pln": ["(: cnet_isa_2751c4a46c (IsA health_care social_insurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "health food is a kind of food", "pln": ["(: cnet_isa_2fe8b40e72 (IsA health_food food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "health hazard is a kind of hazard", "pln": ["(: cnet_isa_303fae91ee (IsA health_hazard hazard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "health insurance is a kind of insurance", "pln": ["(: cnet_isa_7d80cd5401 (IsA health_insurance insurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "health maintenance organization is a kind of health insurance", "pln": ["(: cnet_isa_e9f04f50bd (IsA health_maintenance_organization health_insurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "health profession is a kind of profession", "pln": ["(: cnet_isa_c112111937 (IsA health_profession profession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "health professional is a kind of professional", "pln": ["(: cnet_isa_11b0ad0d13 (IsA health_professional professional) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "health spa is a kind of place of business", "pln": ["(: cnet_isa_373ea051f5 (IsA health_spa place_of_business) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "healthcare is a kind of care", "pln": ["(: cnet_isa_a5a51aa144 (IsA healthcare care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "healthcare delivery is a kind of provision", "pln": ["(: cnet_isa_3cde3f648a (IsA healthcare_delivery provision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "healthfulness is a kind of wholesomeness", "pln": ["(: cnet_isa_aeb6260be1 (IsA healthfulness wholesomeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hearer is a kind of perceiver", "pln": ["(: cnet_isa_86b285104c (IsA hearer perceiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hearing is a kind of exteroception", "pln": ["(: cnet_isa_14f0ae8e12 (IsA hearing exteroception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hearing is a kind of modality", "pln": ["(: cnet_isa_10fc3ae544 (IsA hearing modality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hearing is a kind of session", "pln": ["(: cnet_isa_bd50e4e428 (IsA hearing session) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hearing is a kind of proceeding", "pln": ["(: cnet_isa_fb250de6f3 (IsA hearing proceeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hearing is a kind of opportunity", "pln": ["(: cnet_isa_758067ace5 (IsA hearing opportunity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hearing aid is a kind of acoustic device", "pln": ["(: cnet_isa_275d731b58 (IsA hearing_aid acoustic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hearing aid is a kind of electronic device", "pln": ["(: cnet_isa_675c3462d3 (IsA hearing_aid electronic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hearing dog is a kind of working dog", "pln": ["(: cnet_isa_5d8b3e49d3 (IsA hearing_dog working_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hearing examiner is a kind of official", "pln": ["(: cnet_isa_84190aa0fe (IsA hearing_examiner official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hearing impairment is a kind of disability", "pln": ["(: cnet_isa_c11eb919d9 (IsA hearing_impairment disability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hearsay evidence is a kind of evidence", "pln": ["(: cnet_isa_3f4a13eebd (IsA hearsay_evidence evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hearsay rule is a kind of rule of evidence", "pln": ["(: cnet_isa_bb0e389611 (IsA hearsay_rule rule_of_evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hearse is a kind of motor vehicle", "pln": ["(: cnet_isa_c1c2779b98 (IsA hearse motor_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heart is a kind of beating", "pln": ["(: cnet_isa_21e8a643f3 (IsA heart beating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heart is a kind of essential organ", "pln": ["(: cnet_isa_4a73ca312f (IsA heart essential_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heart is a kind of muscle", "pln": ["(: cnet_isa_02f89fd78f (IsA heart muscle) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heart is a kind of pump for blood", "pln": ["(: cnet_isa_3be0932484 (IsA heart pump_for_blood) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heart is a kind of shape", "pln": ["(: cnet_isa_45ad763ef2 (IsA heart shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "heart is a kind of playing card", "pln": ["(: cnet_isa_fca6ef752a (IsA heart playing_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heart is a kind of courage", "pln": ["(: cnet_isa_e03f354ea8 (IsA heart courage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heart is a kind of disposition", "pln": ["(: cnet_isa_359e159bd5 (IsA heart disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heart is a kind of internal organ", "pln": ["(: cnet_isa_5bbc9169b1 (IsA heart internal_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heart is a kind of intuition", "pln": ["(: cnet_isa_ea40549842 (IsA heart intuition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heart is a kind of variety meat", "pln": ["(: cnet_isa_a20eb7b39f (IsA heart variety_meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heart is a kind of plane figure", "pln": ["(: cnet_isa_b86e5c0940 (IsA heart plane_figure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heart attack is a kind of attack", "pln": ["(: cnet_isa_7d1e7f9f18 (IsA heart_attack attack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heart attack is a kind of heart failure", "pln": ["(: cnet_isa_4dcee20429 (IsA heart_attack heart_failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heart block is a kind of cardiac arrhythmia", "pln": ["(: cnet_isa_407534988d (IsA heart_block cardiac_arrhythmia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heart cherry is a kind of sweet cherry", "pln": ["(: cnet_isa_9853e28f71 (IsA heart_cherry sweet_cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heart disease is a kind of cardiovascular disease", "pln": ["(: cnet_isa_8ca6fafe2d (IsA heart_disease cardiovascular_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heart failure is a kind of failure", "pln": ["(: cnet_isa_871602be40 (IsA heart_failure failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heart failure is a kind of heart disease", "pln": ["(: cnet_isa_1612a1b9c6 (IsA heart_failure heart_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heart leaved aster is a kind of wood aster", "pln": ["(: cnet_isa_1efa23fa0f (IsA heart_leaved_aster wood_aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heart lung machine is a kind of pump", "pln": ["(: cnet_isa_1915c8d80c (IsA heart_lung_machine pump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heart murmur is a kind of symptom", "pln": ["(: cnet_isa_23861c0d0f (IsA heart_murmur symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heart surgery is a kind of operation", "pln": ["(: cnet_isa_a24b33b846 (IsA heart_surgery operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heart to heart is a kind of talk", "pln": ["(: cnet_isa_09885e2369 (IsA heart_to_heart talk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heart urchin is a kind of sea urchin", "pln": ["(: cnet_isa_7230285247 (IsA heart_urchin sea_urchin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "heart valve is a kind of implant", "pln": ["(: cnet_isa_c6f4c024f8 (IsA heart_valve implant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heart valve is a kind of valve", "pln": ["(: cnet_isa_bf8a213e56 (IsA heart_valve valve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heartbeat is a kind of force", "pln": ["(: cnet_isa_04a36fa65d (IsA heartbeat force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heartbreaker is a kind of defeat", "pln": ["(: cnet_isa_adc87845f7 (IsA heartbreaker defeat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heartbreaker is a kind of charmer", "pln": ["(: cnet_isa_f6bc84beae (IsA heartbreaker charmer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heartburn is a kind of symptom", "pln": ["(: cnet_isa_134595a9e5 (IsA heartburn symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heartburning is a kind of resentment", "pln": ["(: cnet_isa_fb7e135bb6 (IsA heartburning resentment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hearth is a kind of dwelling", "pln": ["(: cnet_isa_ea78d9549e (IsA hearth dwelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hearth is a kind of area", "pln": ["(: cnet_isa_70568bfff0 (IsA hearth area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hearth money is a kind of offering", "pln": ["(: cnet_isa_bd27ed85e1 (IsA hearth_money offering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hearthrug is a kind of rug", "pln": ["(: cnet_isa_bf33046c64 (IsA hearthrug rug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hearthstone is a kind of stone", "pln": ["(: cnet_isa_5f311785a6 (IsA hearthstone stone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "heartiness is a kind of sincerity", "pln": ["(: cnet_isa_54a4fdec62 (IsA heartiness sincerity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "heartstrings is a kind of compassion", "pln": ["(: cnet_isa_b32e048463 (IsA heartstrings compassion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heartland is a kind of region", "pln": ["(: cnet_isa_b67192a0a2 (IsA heartland region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heartleaf is a kind of herb", "pln": ["(: cnet_isa_68f4ac59b9 (IsA heartleaf herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heartleaf is a kind of wild ginger", "pln": ["(: cnet_isa_0b8dbdc874 (IsA heartleaf wild_ginger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heartleaf arnica is a kind of wildflower", "pln": ["(: cnet_isa_f6832bc426 (IsA heartleaf_arnica wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heartleaf manzanita is a kind of manzanita", "pln": ["(: cnet_isa_6fe4bbe26c (IsA heartleaf_manzanita manzanita) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heartlessness is a kind of unconcern", "pln": ["(: cnet_isa_ddc950de87 (IsA heartlessness unconcern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heartrot is a kind of plant disease", "pln": ["(: cnet_isa_ae70a3064e (IsA heartrot plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heart is a kind of whist", "pln": ["(: cnet_isa_ad44151eaa (IsA heart whist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heartseed is a kind of soapberry vine", "pln": ["(: cnet_isa_cf54359534 (IsA heartseed soapberry_vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heartstring is a kind of compassion", "pln": ["(: cnet_isa_9a6faa755f (IsA heartstring compassion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heartstring is a kind of love", "pln": ["(: cnet_isa_a14916b7a7 (IsA heartstring love) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heartthrob is a kind of idol", "pln": ["(: cnet_isa_957468ac50 (IsA heartthrob idol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heartwood is a kind of wood", "pln": ["(: cnet_isa_a8c2203bb8 (IsA heartwood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "heat is a kind of energy", "pln": ["(: cnet_isa_6d813046df (IsA heat energy) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heat is a kind of form of energy", "pln": ["(: cnet_isa_6c036d227f (IsA heat form_of_energy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heat is a kind of emotionality", "pln": ["(: cnet_isa_5b01c2645a (IsA heat emotionality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heat is a kind of temperature", "pln": ["(: cnet_isa_96486015cb (IsA heat temperature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heat is a kind of race", "pln": ["(: cnet_isa_82a469f078 (IsA heat race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heat content is a kind of physical property", "pln": ["(: cnet_isa_dbcf91e55a (IsA heat_content physical_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "heat dissipation is a kind of cooling", "pln": ["(: cnet_isa_11e555097d (IsA heat_dissipation cooling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "heat engine is a kind of engine", "pln": ["(: cnet_isa_712fb0db35 (IsA heat_engine engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heat exchanger is a kind of device", "pln": ["(: cnet_isa_b89a65832a (IsA heat_exchanger device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heat exhaustion is a kind of heatstroke", "pln": ["(: cnet_isa_17018be5cb (IsA heat_exhaustion heatstroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heat flash is a kind of flash", "pln": ["(: cnet_isa_6965a0f713 (IsA heat_flash flash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heat lamp is a kind of electric heater", "pln": ["(: cnet_isa_cadb69b875 (IsA heat_lamp electric_heater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heat lightning is a kind of lightning", "pln": ["(: cnet_isa_16bcbca48b (IsA heat_lightning lightning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heat of condensation is a kind of latent heat", "pln": ["(: cnet_isa_746b74a2ce (IsA heat_of_condensation latent_heat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heat of dissociation is a kind of heat", "pln": ["(: cnet_isa_984228fc34 (IsA heat_of_dissociation heat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heat of formation is a kind of heat", "pln": ["(: cnet_isa_024d9beeae (IsA heat_of_formation heat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "heat of fusion is a kind of latent heat", "pln": ["(: cnet_isa_342e597a5c (IsA heat_of_fusion latent_heat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heat of solidification is a kind of latent heat", "pln": ["(: cnet_isa_259f5153e9 (IsA heat_of_solidification latent_heat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heat of solution is a kind of heat", "pln": ["(: cnet_isa_05dfda9951 (IsA heat_of_solution heat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heat of sublimation is a kind of latent heat", "pln": ["(: cnet_isa_35e79d8912 (IsA heat_of_sublimation latent_heat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heat of vaporization is a kind of latent heat", "pln": ["(: cnet_isa_78bc553084 (IsA heat_of_vaporization latent_heat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heat pump is a kind of apparatus", "pln": ["(: cnet_isa_2b5672a05f (IsA heat_pump apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heat ray is a kind of beam", "pln": ["(: cnet_isa_91f49790b3 (IsA heat_ray beam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heat seeking missile is a kind of missile", "pln": ["(: cnet_isa_dd53a1669c (IsA heat_seeking_missile missile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heat shield is a kind of protective covering", "pln": ["(: cnet_isa_e9c3d9b786 (IsA heat_shield protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heat sink is a kind of conductor", "pln": ["(: cnet_isa_ec7cb34707 (IsA heat_sink conductor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heat sink is a kind of sink", "pln": ["(: cnet_isa_fdf3a626c9 (IsA heat_sink sink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heat wave is a kind of wave", "pln": ["(: cnet_isa_5cf4b77e7f (IsA heat_wave wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heater is a kind of device", "pln": ["(: cnet_isa_d20085ef6a (IsA heater device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heath is a kind of barren", "pln": ["(: cnet_isa_25e59479be (IsA heath barren) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heath is a kind of shrub", "pln": ["(: cnet_isa_bef112dd23 (IsA heath shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heath aster is a kind of aster", "pln": ["(: cnet_isa_d3b3444ef4 (IsA heath_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heath hen is a kind of prairie chicken", "pln": ["(: cnet_isa_aa02aa0424 (IsA heath_hen prairie_chicken) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heath pea is a kind of vine", "pln": ["(: cnet_isa_ed30c20c0c (IsA heath_pea vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heathen is a kind of nonreligious person", "pln": ["(: cnet_isa_5b37db71a4 (IsA heathen nonreligious_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heather is a kind of heath", "pln": ["(: cnet_isa_11b6dcce11 (IsA heather heath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "heather mixture is a kind of color", "pln": ["(: cnet_isa_dcb5445bc8 (IsA heather_mixture color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heating is a kind of temperature change", "pln": ["(: cnet_isa_a1a7d5e20e (IsA heating temperature_change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heating element is a kind of component", "pln": ["(: cnet_isa_b1c706bd7e (IsA heating_element component) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heating pad is a kind of heater", "pln": ["(: cnet_isa_76246dbf7e (IsA heating_pad heater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heating system is a kind of utility", "pln": ["(: cnet_isa_34ce2536b9 (IsA heating_system utility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heatstroke is a kind of collapse", "pln": ["(: cnet_isa_54a8a30e42 (IsA heatstroke collapse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heaume is a kind of helmet", "pln": ["(: cnet_isa_0e7c84e9d2 (IsA heaume helmet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heave is a kind of rise", "pln": ["(: cnet_isa_97efccf140 (IsA heave rise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heave is a kind of spasm", "pln": ["(: cnet_isa_0a99c3fda3 (IsA heave spasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heave is a kind of throw", "pln": ["(: cnet_isa_f40057a279 (IsA heave throw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heave is a kind of movement", "pln": ["(: cnet_isa_f3efcf8ff6 (IsA heave movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heaven is a kind of thing", "pln": ["(: cnet_isa_a926ac41ae (IsA heaven thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heaven is a kind of imaginary place", "pln": ["(: cnet_isa_785fee4711 (IsA heaven imaginary_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heaver is a kind of bar", "pln": ["(: cnet_isa_f3ef674b30 (IsA heaver bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heaver is a kind of workman", "pln": ["(: cnet_isa_bc70305f4d (IsA heaver workman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heave is a kind of animal disease", "pln": ["(: cnet_isa_68524f1d20 (IsA heave animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heavier than air craft is a kind of aircraft", "pln": ["(: cnet_isa_13d4c62941 (IsA heavier_than_air_craft aircraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heaviness is a kind of weight", "pln": ["(: cnet_isa_a7164ec7d2 (IsA heaviness weight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heaviness is a kind of sadness", "pln": ["(: cnet_isa_47d6e185bc (IsA heaviness sadness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heavy is a kind of character", "pln": ["(: cnet_isa_f49d679fcb (IsA heavy character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heavy is a kind of actor", "pln": ["(: cnet_isa_e3df88bafb (IsA heavy actor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heavy cream is a kind of cream", "pln": ["(: cnet_isa_b08927403d (IsA heavy_cream cream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heavy hitter is a kind of important person", "pln": ["(: cnet_isa_f860f449a3 (IsA heavy_hitter important_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heavy lifting is a kind of work", "pln": ["(: cnet_isa_934c668b82 (IsA heavy_lifting work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heavy metal is a kind of metal", "pln": ["(: cnet_isa_a72d64ebf0 (IsA heavy_metal metal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heavy metal is a kind of rock n roll", "pln": ["(: cnet_isa_3349d21f9e (IsA heavy_metal rock_n_roll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heavy metal is a kind of alloy", "pln": ["(: cnet_isa_a52912fa62 (IsA heavy_metal alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heavy metal is a kind of metallic element", "pln": ["(: cnet_isa_4b70af7179 (IsA heavy_metal metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heavy spar is a kind of mineral", "pln": ["(: cnet_isa_a1d4ee995c (IsA heavy_spar mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heavy water is a kind of moderator", "pln": ["(: cnet_isa_d248e3ab8c (IsA heavy_water moderator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heavyheartedness is a kind of melancholy", "pln": ["(: cnet_isa_0d67799b3c (IsA heavyheartedness melancholy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heavyweight is a kind of boxer", "pln": ["(: cnet_isa_3397f67474 (IsA heavyweight boxer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heavyweight is a kind of prizefighter", "pln": ["(: cnet_isa_d1cd184ee1 (IsA heavyweight prizefighter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heavyweight is a kind of wrestler", "pln": ["(: cnet_isa_d7185c09b5 (IsA heavyweight wrestler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hebephrenia is a kind of schizophrenia", "pln": ["(: cnet_isa_4f5135577e (IsA hebephrenia schizophrenia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hebetude is a kind of lethargy", "pln": ["(: cnet_isa_0c4acea5f0 (IsA hebetude lethargy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hebraist is a kind of linguist", "pln": ["(: cnet_isa_c15c5c542a (IsA hebraist linguist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hebrew is a kind of human language", "pln": ["(: cnet_isa_69ad014c7b (IsA hebrew human_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hebrew is a kind of canaanitic", "pln": ["(: cnet_isa_a73db20310 (IsA hebrew canaanitic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hebrew alphabet is a kind of alphabet", "pln": ["(: cnet_isa_ef44daa551 (IsA hebrew_alphabet alphabet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hebrew alphabet is a kind of unicameral script", "pln": ["(: cnet_isa_f03fc98ab1 (IsA hebrew_alphabet unicameral_script) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hebrew lesson is a kind of language lesson", "pln": ["(: cnet_isa_4fe833ec52 (IsA hebrew_lesson language_lesson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hebrew is a kind of chosen people", "pln": ["(: cnet_isa_96e0dda6db (IsA hebrew chosen_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hebrew is a kind of ethnic group", "pln": ["(: cnet_isa_ccd4a51dda (IsA hebrew ethnic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hecatomb is a kind of sacrifice", "pln": ["(: cnet_isa_66059b7845 (IsA hecatomb sacrifice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heckelphone is a kind of oboe", "pln": ["(: cnet_isa_15c8e84ebb (IsA heckelphone oboe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heckler is a kind of troublemaker", "pln": ["(: cnet_isa_ae749713e1 (IsA heckler troublemaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "heckling is a kind of break", "pln": ["(: cnet_isa_0d3727b825 (IsA heckling break) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hectare is a kind of area unit", "pln": ["(: cnet_isa_14cb33690f (IsA hectare area_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hectogram is a kind of metric weight unit", "pln": ["(: cnet_isa_6735a14802 (IsA hectogram metric_weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hectograph is a kind of collotype", "pln": ["(: cnet_isa_68d14fd764 (IsA hectograph collotype) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hectograph is a kind of duplicator", "pln": ["(: cnet_isa_71fcbcc33d (IsA hectograph duplicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hectoliter is a kind of metric capacity unit", "pln": ["(: cnet_isa_55d826d877 (IsA hectoliter metric_capacity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hectometer is a kind of metric linear unit", "pln": ["(: cnet_isa_cb4804b5d4 (IsA hectometer metric_linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hedeoma is a kind of asterid dicot genus", "pln": ["(: cnet_isa_c5468a712d (IsA hedeoma asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hedera is a kind of rosid dicot genus", "pln": ["(: cnet_isa_0ed60778a3 (IsA hedera rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hedge is a kind of fence", "pln": ["(: cnet_isa_4ffe34945e (IsA hedge fence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hedge is a kind of evasion", "pln": ["(: cnet_isa_6fea7f69b4 (IsA hedge evasion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hedge is a kind of security", "pln": ["(: cnet_isa_83267462e7 (IsA hedge security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hedge bindweed is a kind of bindweed", "pln": ["(: cnet_isa_dd27beb1a4 (IsA hedge_bindweed bindweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hedge fund is a kind of investment company", "pln": ["(: cnet_isa_0236105a08 (IsA hedge_fund investment_company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hedge maple is a kind of maple", "pln": ["(: cnet_isa_ac463d1308 (IsA hedge_maple maple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hedge mustard is a kind of herb", "pln": ["(: cnet_isa_6de73ada9c (IsA hedge_mustard herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hedge nettle is a kind of herb", "pln": ["(: cnet_isa_4deb599b5e (IsA hedge_nettle herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hedge sparrow is a kind of accentor", "pln": ["(: cnet_isa_be6bc0e2be (IsA hedge_sparrow accentor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hedge thorn is a kind of carissa", "pln": ["(: cnet_isa_89b47aada9 (IsA hedge_thorn carissa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hedge trimmer is a kind of garden tool", "pln": ["(: cnet_isa_9f432275e2 (IsA hedge_trimmer garden_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hedge violet is a kind of violet", "pln": ["(: cnet_isa_6a56e7ffee (IsA hedge_violet violet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hedgehog is a kind of insectivore", "pln": ["(: cnet_isa_605dd26d04 (IsA hedgehog insectivore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hedgehog cactus is a kind of echinocactus", "pln": ["(: cnet_isa_3313ca774e (IsA hedgehog_cactus echinocactus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hedgehog cereus is a kind of cactus", "pln": ["(: cnet_isa_1483c51b00 (IsA hedgehog_cereus cactus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hedger is a kind of gardener", "pln": ["(: cnet_isa_b9490b0bae (IsA hedger gardener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hedger is a kind of respondent", "pln": ["(: cnet_isa_d62e7d8537 (IsA hedger respondent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hedger is a kind of speculator", "pln": ["(: cnet_isa_094ec844fb (IsA hedger speculator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hedonism is a kind of ethic", "pln": ["(: cnet_isa_4346efb723 (IsA hedonism ethic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hedonism is a kind of ethical motive", "pln": ["(: cnet_isa_ca2f63332a (IsA hedonism ethical_motive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hedonist is a kind of sensualist", "pln": ["(: cnet_isa_1eb0884f01 (IsA hedonist sensualist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hedysarum is a kind of rosid dicot genus", "pln": ["(: cnet_isa_665d33ca1b (IsA hedysarum rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hee haw is a kind of laugh", "pln": ["(: cnet_isa_bce67d93c4 (IsA hee_haw laugh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heedlessness is a kind of imprudence", "pln": ["(: cnet_isa_401f853745 (IsA heedlessness imprudence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heel is a kind of bottom", "pln": ["(: cnet_isa_a46231787a (IsA heel bottom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heel is a kind of end", "pln": ["(: cnet_isa_625b998d84 (IsA heel end) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heel is a kind of skeletal structure", "pln": ["(: cnet_isa_07017a802a (IsA heel skeletal_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heel is a kind of part", "pln": ["(: cnet_isa_f9e9d8662c (IsA heel part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heelbone is a kind of bone", "pln": ["(: cnet_isa_525027d7de (IsA heelbone bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "heft is a kind of heaviness", "pln": ["(: cnet_isa_3955e43d30 (IsA heft heaviness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hegari is a kind of grain sorghum", "pln": ["(: cnet_isa_1c01c6aae0 (IsA hegari grain_sorghum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hegelian is a kind of follower", "pln": ["(: cnet_isa_9b86510b15 (IsA hegelian follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hegemon is a kind of world power", "pln": ["(: cnet_isa_532e5b9b4d (IsA hegemon world_power) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hegemony is a kind of political system", "pln": ["(: cnet_isa_1ee3c16e55 (IsA hegemony political_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heifer is a kind of cow", "pln": ["(: cnet_isa_605a3ca785 (IsA heifer cow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heifer is a kind of young mammal", "pln": ["(: cnet_isa_9f6c13a152 (IsA heifer young_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "height is a kind of dimension", "pln": ["(: cnet_isa_526667a5a8 (IsA height dimension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heimlich maneuver is a kind of emergency procedure", "pln": ["(: cnet_isa_c9593f1789 (IsA heimlich_maneuver emergency_procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heir is a kind of recipient", "pln": ["(: cnet_isa_ad33738942 (IsA heir recipient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heir apparent is a kind of heir", "pln": ["(: cnet_isa_bd2b394492 (IsA heir_apparent heir) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heir at law is a kind of heir", "pln": ["(: cnet_isa_baa4e7d849 (IsA heir_at_law heir) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heir presumptive is a kind of heir", "pln": ["(: cnet_isa_da54439339 (IsA heir_presumptive heir) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heiress is a kind of heir", "pln": ["(: cnet_isa_7206767b94 (IsA heiress heir) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heirloom is a kind of property", "pln": ["(: cnet_isa_99b00a23d6 (IsA heirloom property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heirloom is a kind of inheritance", "pln": ["(: cnet_isa_c8863c69e2 (IsA heirloom inheritance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heist is a kind of robbery", "pln": ["(: cnet_isa_0c4b930f78 (IsA heist robbery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hel is a kind of imaginary place", "pln": ["(: cnet_isa_8da728f11c (IsA hel imaginary_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "helenium is a kind of asterid dicot genus", "pln": ["(: cnet_isa_6b000f396a (IsA helenium asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heliamphora is a kind of dicot genus", "pln": ["(: cnet_isa_7874ea3566 (IsA heliamphora dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helianthemum is a kind of shrub", "pln": ["(: cnet_isa_80f9e42061 (IsA helianthemum shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helichrysum is a kind of asterid dicot genus", "pln": ["(: cnet_isa_1b1add6e8d (IsA helichrysum asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helicidae is a kind of mollusk family", "pln": ["(: cnet_isa_deb4c4b07b (IsA helicidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helicon is a kind of bass horn", "pln": ["(: cnet_isa_2f1c46be79 (IsA helicon bass_horn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helicopter is a kind of heavier than air craft", "pln": ["(: cnet_isa_0de1a59f90 (IsA helicopter heavier_than_air_craft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helictere is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_c3238f1c5a (IsA helictere dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heliobacter is a kind of bacteria genus", "pln": ["(: cnet_isa_eb17bdde20 (IsA heliobacter bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heliobacter pylori is a kind of bacteria specy", "pln": ["(: cnet_isa_2fd388f70c (IsA heliobacter_pylori bacteria_specy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heliocentric parallax is a kind of parallax", "pln": ["(: cnet_isa_32ece67373 (IsA heliocentric_parallax parallax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heliogram is a kind of message", "pln": ["(: cnet_isa_acb86f5adb (IsA heliogram message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heliograph is a kind of apparatus", "pln": ["(: cnet_isa_588710c799 (IsA heliograph apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heliolatry is a kind of worship", "pln": ["(: cnet_isa_418dc227c6 (IsA heliolatry worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heliometer is a kind of measuring instrument", "pln": ["(: cnet_isa_3b7f18f3a7 (IsA heliometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heliopause is a kind of boundary", "pln": ["(: cnet_isa_cc15a79680 (IsA heliopause boundary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heliophila is a kind of flower", "pln": ["(: cnet_isa_7250e54ef5 (IsA heliophila flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heliopsis is a kind of wildflower", "pln": ["(: cnet_isa_fc310c94cd (IsA heliopsis wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "heliosphere is a kind of region", "pln": ["(: cnet_isa_2a2955d99e (IsA heliosphere region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heliotherapy is a kind of therapy", "pln": ["(: cnet_isa_f4d57e625a (IsA heliotherapy therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heliothis is a kind of arthropod genus", "pln": ["(: cnet_isa_623e233685 (IsA heliothis arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heliothis moth is a kind of noctuid moth", "pln": ["(: cnet_isa_12ffa72617 (IsA heliothis_moth noctuid_moth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heliotropism is a kind of tropism", "pln": ["(: cnet_isa_ad9306e3a2 (IsA heliotropism tropism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heliozoa is a kind of animal order", "pln": ["(: cnet_isa_df96411a4f (IsA heliozoa animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heliozoan is a kind of actinopod", "pln": ["(: cnet_isa_a660ec9a08 (IsA heliozoan actinopod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heliport is a kind of airport", "pln": ["(: cnet_isa_2b8377af6b (IsA heliport airport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helipterum is a kind of asterid dicot genus", "pln": ["(: cnet_isa_0abc83f9ae (IsA helipterum asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helium is a kind of element", "pln": ["(: cnet_isa_ca75001d3e (IsA helium element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helium is a kind of gas", "pln": ["(: cnet_isa_89ecad1323 (IsA helium gas) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helium is a kind of lighter than air", "pln": ["(: cnet_isa_d36c0094d6 (IsA helium lighter_than_air) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helium is a kind of noble gas", "pln": ["(: cnet_isa_3c557113a0 (IsA helium noble_gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helium is a kind of chemical element", "pln": ["(: cnet_isa_555f5f5822 (IsA helium chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helium group is a kind of sery", "pln": ["(: cnet_isa_7b087ae903 (IsA helium_group sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helix is a kind of mollusk genus", "pln": ["(: cnet_isa_b864db608e (IsA helix mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helix is a kind of curve", "pln": ["(: cnet_isa_3b70abae67 (IsA helix curve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helix angle is a kind of angle", "pln": ["(: cnet_isa_50c53c5037 (IsA helix_angle angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helix hortensis is a kind of garden snail", "pln": ["(: cnet_isa_358535f86f (IsA helix_hortensis garden_snail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hell is a kind of bad place", "pln": ["(: cnet_isa_0391a0c99b (IsA hell bad_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hell is a kind of mischief", "pln": ["(: cnet_isa_0a47a6253d (IsA hell mischief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hell is a kind of imaginary place", "pln": ["(: cnet_isa_7dd5d27240 (IsA hell imaginary_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hell is a kind of trouble", "pln": ["(: cnet_isa_19e67b14fa (IsA hell trouble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hell is a kind of region", "pln": ["(: cnet_isa_2f83f372d7 (IsA hell region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hell kite is a kind of combatant", "pln": ["(: cnet_isa_331c1828b8 (IsA hell_kite combatant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hell to pay is a kind of consequence", "pln": ["(: cnet_isa_e6b3817f4e (IsA hell_to_pay consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "helladic civilization is a kind of culture", "pln": ["(: cnet_isa_c778f878f2 (IsA helladic_civilization culture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hellbender is a kind of salamander", "pln": ["(: cnet_isa_09cac000b4 (IsA hellbender salamander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hellebore is a kind of liliaceous plant", "pln": ["(: cnet_isa_8707f1fd69 (IsA hellebore liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hellebore is a kind of poisonous plant", "pln": ["(: cnet_isa_ce61b046fd (IsA hellebore poisonous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helleborine is a kind of orchid", "pln": ["(: cnet_isa_5e149f88b5 (IsA helleborine orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helleborus is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_529e74e506 (IsA helleborus magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hellene is a kind of european", "pln": ["(: cnet_isa_2abeabc9b2 (IsA hellene european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hellenism is a kind of principle", "pln": ["(: cnet_isa_6738915354 (IsA hellenism principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hellfire is a kind of hell", "pln": ["(: cnet_isa_b937c8f519 (IsA hellfire hell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hellgrammiate is a kind of larva", "pln": ["(: cnet_isa_c8e60a8ed0 (IsA hellgrammiate larva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hellhound is a kind of mythical monster", "pln": ["(: cnet_isa_68e748728c (IsA hellhound mythical_monster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hellhound is a kind of troublemaker", "pln": ["(: cnet_isa_53c4c10cb7 (IsA hellhound troublemaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hellion is a kind of troublemaker", "pln": ["(: cnet_isa_0658401ded (IsA hellion troublemaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hello is a kind of greeting", "pln": ["(: cnet_isa_1ac1e4ac79 (IsA hello greeting) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helm is a kind of leadership", "pln": ["(: cnet_isa_cf8ffc5bc7 (IsA helm leadership) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helm is a kind of steering system", "pln": ["(: cnet_isa_c9e6111e9d (IsA helm steering_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helmet is a kind of hat", "pln": ["(: cnet_isa_7cdb001b3f (IsA helmet hat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helmet is a kind of armor plate", "pln": ["(: cnet_isa_c01a4f0967 (IsA helmet armor_plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helmet is a kind of headdress", "pln": ["(: cnet_isa_c202f2308d (IsA helmet headdress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helmet orchid is a kind of orchid", "pln": ["(: cnet_isa_3c3ca8c683 (IsA helmet_orchid orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helmetflower is a kind of herb", "pln": ["(: cnet_isa_0984a8daae (IsA helmetflower herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helmetflower is a kind of orchid", "pln": ["(: cnet_isa_730c189589 (IsA helmetflower orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helminth is a kind of worm", "pln": ["(: cnet_isa_691b61eedd (IsA helminth worm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helminthiasis is a kind of infestation", "pln": ["(: cnet_isa_1df4b79284 (IsA helminthiasis infestation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helminthostachy is a kind of fern genus", "pln": ["(: cnet_isa_73728916fe (IsA helminthostachy fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helmsman is a kind of mariner", "pln": ["(: cnet_isa_bc5ab4967a (IsA helmsman mariner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heloderma is a kind of reptile genus", "pln": ["(: cnet_isa_5a7a66a444 (IsA heloderma reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helodermatidae is a kind of reptile family", "pln": ["(: cnet_isa_a2ac624dad (IsA helodermatidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helotiaceae is a kind of fungus family", "pln": ["(: cnet_isa_77eaf42ccd (IsA helotiaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helotiale is a kind of fungus order", "pln": ["(: cnet_isa_5c7ac667da (IsA helotiale fungus_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helotium is a kind of fungus genus", "pln": ["(: cnet_isa_24cd3d8a20 (IsA helotium fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "help desk is a kind of service", "pln": ["(: cnet_isa_e3f55dcc07 (IsA help_desk service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helper t cell is a kind of t cell", "pln": ["(: cnet_isa_ad556ba517 (IsA helper_t_cell t_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helpfulness is a kind of utility", "pln": ["(: cnet_isa_aa9b25d3de (IsA helpfulness utility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helping is a kind of small indefinite quantity", "pln": ["(: cnet_isa_186c6491f4 (IsA helping small_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helplessness is a kind of powerlessness", "pln": ["(: cnet_isa_94af478a04 (IsA helplessness powerlessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helplessness is a kind of depression", "pln": ["(: cnet_isa_d63809386f (IsA helplessness depression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helplessness is a kind of dependence", "pln": ["(: cnet_isa_ea2b655a47 (IsA helplessness dependence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helpmate is a kind of spouse", "pln": ["(: cnet_isa_90166f97dc (IsA helpmate spouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helvella is a kind of false morel", "pln": ["(: cnet_isa_6f8091243c (IsA helvella false_morel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helvella acetabulum is a kind of helvella", "pln": ["(: cnet_isa_b35cb03929 (IsA helvella_acetabulum helvella) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helvella crispa is a kind of helvella", "pln": ["(: cnet_isa_919926ce83 (IsA helvella_crispa helvella) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helvella sulcata is a kind of helvella", "pln": ["(: cnet_isa_14422b9e5e (IsA helvella_sulcata helvella) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helvellaceae is a kind of fungus family", "pln": ["(: cnet_isa_b8d3c3f4f2 (IsA helvellaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helvetian is a kind of swiss people", "pln": ["(: cnet_isa_03d6b6b3e7 (IsA helvetian swiss_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "helwingia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_a115ce7a41 (IsA helwingia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "helxine is a kind of dicot genus", "pln": ["(: cnet_isa_705dd6c3a9 (IsA helxine dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hem is a kind of edge", "pln": ["(: cnet_isa_65ba6fe681 (IsA hem edge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemachatus is a kind of reptile genus", "pln": ["(: cnet_isa_c98b3c9e99 (IsA hemachatus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemagglutination is a kind of agglutination", "pln": ["(: cnet_isa_9ce07c4610 (IsA hemagglutination agglutination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemal arch is a kind of arch", "pln": ["(: cnet_isa_dd9b7d98b4 (IsA hemal_arch arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemangioma is a kind of angioma", "pln": ["(: cnet_isa_3753801837 (IsA hemangioma angioma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hematemesis is a kind of vomit", "pln": ["(: cnet_isa_bac3b402c0 (IsA hematemesis vomit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hematinic is a kind of medicine", "pln": ["(: cnet_isa_a1544ac2cd (IsA hematinic medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hematite is a kind of iron ore", "pln": ["(: cnet_isa_d796b497f1 (IsA hematite iron_ore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hematocele is a kind of swelling", "pln": ["(: cnet_isa_a61222330a (IsA hematocele swelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hematochezia is a kind of defecation", "pln": ["(: cnet_isa_80757e10cc (IsA hematochezia defecation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hematochrome is a kind of coloring material", "pln": ["(: cnet_isa_77fed2d5f1 (IsA hematochrome coloring_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hematocolpometra is a kind of disorder", "pln": ["(: cnet_isa_982e0e1986 (IsA hematocolpometra disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hematocolpo is a kind of disorder", "pln": ["(: cnet_isa_c28b76cdfc (IsA hematocolpo disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hematocrit is a kind of centrifuge", "pln": ["(: cnet_isa_a00952ccab (IsA hematocrit centrifuge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hematocrit is a kind of measuring instrument", "pln": ["(: cnet_isa_e3c23b94c0 (IsA hematocrit measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hematocrit is a kind of ratio", "pln": ["(: cnet_isa_4e1f8b7d9e (IsA hematocrit ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hematocytopenia is a kind of cytopenia", "pln": ["(: cnet_isa_4ed1c52a77 (IsA hematocytopenia cytopenia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hematocyturia is a kind of hematuria", "pln": ["(: cnet_isa_70e5aeb07c (IsA hematocyturia hematuria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hematologist is a kind of specialist", "pln": ["(: cnet_isa_3b516a6ab5 (IsA hematologist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hematology is a kind of medicine", "pln": ["(: cnet_isa_122cbefd62 (IsA hematology medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hematoma is a kind of intumescence", "pln": ["(: cnet_isa_a4a06ce303 (IsA hematoma intumescence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hematopoeitic stem cell is a kind of stem cell", "pln": ["(: cnet_isa_753bd4fde4 (IsA hematopoeitic_stem_cell stem_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hematopoiesis is a kind of organic process", "pln": ["(: cnet_isa_a8587bcd8e (IsA hematopoiesis organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hematuria is a kind of symptom", "pln": ["(: cnet_isa_c1c1ce7f7b (IsA hematuria symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heme is a kind of pigment", "pln": ["(: cnet_isa_da585228d2 (IsA heme pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemeralopia is a kind of visual impairment", "pln": ["(: cnet_isa_0918511665 (IsA hemeralopia visual_impairment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemerobiidae is a kind of arthropod family", "pln": ["(: cnet_isa_6eb8490505 (IsA hemerobiidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemerocallidaceae is a kind of liliid monocot family", "pln": ["(: cnet_isa_aaaf9f1d67 (IsA hemerocallidaceae liliid_monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemerocallis is a kind of liliid monocot genus", "pln": ["(: cnet_isa_82fccd0dc6 (IsA hemerocallis liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemiacetal is a kind of organic compound", "pln": ["(: cnet_isa_096168e06c (IsA hemiacetal organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemianopia is a kind of visual impairment", "pln": ["(: cnet_isa_1018657904 (IsA hemianopia visual_impairment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemianopic scotoma is a kind of scotoma", "pln": ["(: cnet_isa_983282c140 (IsA hemianopic_scotoma scotoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemiascomycete is a kind of class", "pln": ["(: cnet_isa_1382bc994d (IsA hemiascomycete class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hemiepiphyte is a kind of air plant", "pln": ["(: cnet_isa_7eeebead43 (IsA hemiepiphyte air_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemigalus is a kind of mammal genus", "pln": ["(: cnet_isa_515b004ad8 (IsA hemigalus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemigrammus is a kind of fish genus", "pln": ["(: cnet_isa_c6d938d432 (IsA hemigrammus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemimetamorphosis is a kind of metamorphosis", "pln": ["(: cnet_isa_ef73774b94 (IsA hemimetamorphosis metamorphosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemimorphite is a kind of mineral", "pln": ["(: cnet_isa_f80c60d2f1 (IsA hemimorphite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemin is a kind of chloride", "pln": ["(: cnet_isa_d2a30aff90 (IsA hemin chloride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemiparasite is a kind of parasitic plant", "pln": ["(: cnet_isa_243e1cf55e (IsA hemiparasite parasitic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemiplegia is a kind of paralysis", "pln": ["(: cnet_isa_47167e9863 (IsA hemiplegia paralysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemiplegic is a kind of handicapped person", "pln": ["(: cnet_isa_4f54cd4194 (IsA hemiplegic handicapped_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemiprocnidae is a kind of bird family", "pln": ["(: cnet_isa_863ec15723 (IsA hemiprocnidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemiptera is a kind of animal order", "pln": ["(: cnet_isa_e0e3f08cd4 (IsA hemiptera animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemipteronatus is a kind of fish genus", "pln": ["(: cnet_isa_847d1cbda6 (IsA hemipteronatus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemipterous insect is a kind of insect", "pln": ["(: cnet_isa_5ba19acc30 (IsA hemipterous_insect insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemiramphidae is a kind of fish family", "pln": ["(: cnet_isa_11051d4473 (IsA hemiramphidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemisphere is a kind of neural structure", "pln": ["(: cnet_isa_0009ca6d28 (IsA hemisphere neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemisphere is a kind of geographical area", "pln": ["(: cnet_isa_97312444d0 (IsA hemisphere geographical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemisphere is a kind of subfigure", "pln": ["(: cnet_isa_a202cad039 (IsA hemisphere subfigure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemitripterus is a kind of fish genus", "pln": ["(: cnet_isa_7f9009bfc9 (IsA hemitripterus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemizygo vein is a kind of vein", "pln": ["(: cnet_isa_ec8502e377 (IsA hemizygo_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemline is a kind of line", "pln": ["(: cnet_isa_a010229505 (IsA hemline line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemlock is a kind of conifer", "pln": ["(: cnet_isa_b68a7af70a (IsA hemlock conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemlock is a kind of poisonous plant", "pln": ["(: cnet_isa_6411c31195 (IsA hemlock poisonous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemlock is a kind of wood", "pln": ["(: cnet_isa_5a175e1863 (IsA hemlock wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemlock is a kind of plant toxin", "pln": ["(: cnet_isa_00edc103c3 (IsA hemlock plant_toxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemming stitch is a kind of embroidery stitch", "pln": ["(: cnet_isa_8db91c13cc (IsA hemming_stitch embroidery_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemochromatosis is a kind of pathology", "pln": ["(: cnet_isa_8cce3db897 (IsA hemochromatosis pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemodialysis is a kind of dialysis", "pln": ["(: cnet_isa_b4085c003b (IsA hemodialysis dialysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemodynamic is a kind of physiology", "pln": ["(: cnet_isa_4f9a16a9ed (IsA hemodynamic physiology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemoglobin is a kind of chemical", "pln": ["(: cnet_isa_fc3ef49ab7 (IsA hemoglobin chemical) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemoglobin is a kind of complex molecule", "pln": ["(: cnet_isa_8ea932381f (IsA hemoglobin complex_molecule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemoglobin is a kind of organic chemical", "pln": ["(: cnet_isa_c12cd0b76f (IsA hemoglobin organic_chemical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemoglobin is a kind of pigment", "pln": ["(: cnet_isa_712093889d (IsA hemoglobin pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemoglobin is a kind of hemoprotein", "pln": ["(: cnet_isa_60efafa991 (IsA hemoglobin hemoprotein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemoglobinemia is a kind of symptom", "pln": ["(: cnet_isa_00513d4f75 (IsA hemoglobinemia symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemoglobinopathy is a kind of blood disease", "pln": ["(: cnet_isa_a4a4df0128 (IsA hemoglobinopathy blood_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemoglobinuria is a kind of symptom", "pln": ["(: cnet_isa_8505355b1c (IsA hemoglobinuria symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemolysin is a kind of organic compound", "pln": ["(: cnet_isa_1406e5eca4 (IsA hemolysin organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hemolysis is a kind of lysis", "pln": ["(: cnet_isa_cd99e1098e (IsA hemolysis lysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemolytic anemia is a kind of anemia", "pln": ["(: cnet_isa_00ac88193d (IsA hemolytic_anemia anemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemophilia is a kind of blood disease", "pln": ["(: cnet_isa_378d07b991 (IsA hemophilia blood_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemophilia is a kind of hemophilia", "pln": ["(: cnet_isa_daa838af34 (IsA hemophilia hemophilia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemophilia is a kind of sex linked disorder", "pln": ["(: cnet_isa_d8ea973349 (IsA hemophilia sex_linked_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemophilia b is a kind of hemophilia", "pln": ["(: cnet_isa_1d0f0840d0 (IsA hemophilia_b hemophilia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemophiliac is a kind of sick person", "pln": ["(: cnet_isa_7830ed78a2 (IsA hemophiliac sick_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemoprotein is a kind of conjugated protein", "pln": ["(: cnet_isa_d57c8e2ce6 (IsA hemoprotein conjugated_protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemoptysis is a kind of symptom", "pln": ["(: cnet_isa_f608b94990 (IsA hemoptysis symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hemorrhagic cyst is a kind of cyst", "pln": ["(: cnet_isa_000e74ba1e (IsA hemorrhagic_cyst cyst) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemorrhagic fever is a kind of viral infection", "pln": ["(: cnet_isa_2b420d3889 (IsA hemorrhagic_fever viral_infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemorrhagic septicemia is a kind of animal disease", "pln": ["(: cnet_isa_f3eff5fbeb (IsA hemorrhagic_septicemia animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemorrhagic stroke is a kind of bleeding", "pln": ["(: cnet_isa_5042c57b94 (IsA hemorrhagic_stroke bleeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemorrhagic stroke is a kind of stroke", "pln": ["(: cnet_isa_5a5957d8f0 (IsA hemorrhagic_stroke stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemorrhoid is a kind of symptom", "pln": ["(: cnet_isa_a3d2756ec0 (IsA hemorrhoid symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemorrhoidal vein is a kind of vein", "pln": ["(: cnet_isa_a766f2a188 (IsA hemorrhoidal_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemorrhoidectomy is a kind of operation", "pln": ["(: cnet_isa_89c9c08072 (IsA hemorrhoidectomy operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemosiderin is a kind of pigment", "pln": ["(: cnet_isa_d1826d85ea (IsA hemosiderin pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hemosiderosis is a kind of symptom", "pln": ["(: cnet_isa_7b290640a5 (IsA hemosiderosis symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemostasis is a kind of stop", "pln": ["(: cnet_isa_f01a55d79c (IsA hemostasis stop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemostat is a kind of surgical instrument", "pln": ["(: cnet_isa_83b059d4cf (IsA hemostat surgical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hemothorax is a kind of congestion", "pln": ["(: cnet_isa_4b42fdb3ce (IsA hemothorax congestion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemp is a kind of plant fiber", "pln": ["(: cnet_isa_6b96c66168 (IsA hemp plant_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemp agrimony is a kind of herb", "pln": ["(: cnet_isa_e407ee2d3b (IsA hemp_agrimony herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemp nettle is a kind of herb", "pln": ["(: cnet_isa_b499d6cd74 (IsA hemp_nettle herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemstitch is a kind of embroidery", "pln": ["(: cnet_isa_c8ea4729c4 (IsA hemstitch embroidery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hemstitch is a kind of embroidery stitch", "pln": ["(: cnet_isa_2d355d599b (IsA hemstitch embroidery_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hen is a kind of chicken", "pln": ["(: cnet_isa_99affcc349 (IsA hen chicken) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hen is a kind of bird", "pln": ["(: cnet_isa_610003e96d (IsA hen bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hen is a kind of female", "pln": ["(: cnet_isa_bd93b1ffdb (IsA hen female) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hen of wood is a kind of fungus", "pln": ["(: cnet_isa_cbceb74378 (IsA hen_of_wood fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hen party is a kind of party", "pln": ["(: cnet_isa_0bc270e4e9 (IsA hen_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "henbane is a kind of herb", "pln": ["(: cnet_isa_b9660a026c (IsA henbane herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "henbit is a kind of dead nettle", "pln": ["(: cnet_isa_e8d9055bc2 (IsA henbit dead_nettle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hendiady is a kind of rhetorical device", "pln": ["(: cnet_isa_4ada0076c7 (IsA hendiady rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "henna is a kind of hair dye", "pln": ["(: cnet_isa_7d5fac1ad4 (IsA henna hair_dye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "henroost is a kind of roost", "pln": ["(: cnet_isa_5815f4f800 (IsA henroost roost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "henry s law is a kind of law", "pln": ["(: cnet_isa_41331c632d (IsA henry_s_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "henry is a kind of inductance unit", "pln": ["(: cnet_isa_a830170133 (IsA henry inductance_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hepadnavirus is a kind of animal virus", "pln": ["(: cnet_isa_e0dbc76a08 (IsA hepadnavirus animal_virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hepatic artery is a kind of artery", "pln": ["(: cnet_isa_02a9a3a266 (IsA hepatic_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hepatic coma is a kind of coma", "pln": ["(: cnet_isa_254fedf0e6 (IsA hepatic_coma coma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hepatic duct is a kind of duct", "pln": ["(: cnet_isa_5fd4983579 (IsA hepatic_duct duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hepatic lobe is a kind of lobe", "pln": ["(: cnet_isa_df20353e5b (IsA hepatic_lobe lobe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hepatic tanager is a kind of tanager", "pln": ["(: cnet_isa_3a263470b2 (IsA hepatic_tanager tanager) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hepatic vein is a kind of vein", "pln": ["(: cnet_isa_d1d912e663 (IsA hepatic_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hepatica is a kind of herb", "pln": ["(: cnet_isa_a48d2b959f (IsA hepatica herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hepatica is a kind of liverwort", "pln": ["(: cnet_isa_c980263ff5 (IsA hepatica liverwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hepaticopsida is a kind of class", "pln": ["(: cnet_isa_7d35763d91 (IsA hepaticopsida class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hepatitis is a kind of infectious disease", "pln": ["(: cnet_isa_3a6d2ea328 (IsA hepatitis infectious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hepatitis is a kind of liver disease", "pln": ["(: cnet_isa_a657af7697 (IsA hepatitis liver_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hepatitis is a kind of viral hepatitis", "pln": ["(: cnet_isa_e087d35649 (IsA hepatitis viral_hepatitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hepatitis b is a kind of viral hepatitis", "pln": ["(: cnet_isa_a72f7c5e8a (IsA hepatitis_b viral_hepatitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hepatitis c is a kind of viral hepatitis", "pln": ["(: cnet_isa_722b339e32 (IsA hepatitis_c viral_hepatitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hepatitis delta is a kind of hepatitis", "pln": ["(: cnet_isa_c09ff0e38a (IsA hepatitis_delta hepatitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hepatitis virus is a kind of enterovirus", "pln": ["(: cnet_isa_c06cc0b66d (IsA hepatitis_virus enterovirus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hepatojugular reflux is a kind of reflux", "pln": ["(: cnet_isa_96747bf692 (IsA hepatojugular_reflux reflux) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hepatolenticular degeneration is a kind of genetic disease", "pln": ["(: cnet_isa_038cefd442 (IsA hepatolenticular_degeneration genetic_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hepatoma is a kind of carcinoma", "pln": ["(: cnet_isa_64b7b68768 (IsA hepatoma carcinoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hepatomegaly is a kind of abnormality", "pln": ["(: cnet_isa_e08d0073a8 (IsA hepatomegaly abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hepatotoxin is a kind of toxin", "pln": ["(: cnet_isa_e010862236 (IsA hepatotoxin toxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heptagon is a kind of closed shape with seven side", "pln": ["(: cnet_isa_526ec0e57e (IsA heptagon closed_shape_with_seven_side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "heptagon is a kind of polygon", "pln": ["(: cnet_isa_27aedacec1 (IsA heptagon polygon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "heptane is a kind of methane series", "pln": ["(: cnet_isa_62c4dd0a68 (IsA heptane methane_series) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heptane is a kind of methane sery", "pln": ["(: cnet_isa_c9c27a77f7 (IsA heptane methane_sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heracleum is a kind of rosid dicot genus", "pln": ["(: cnet_isa_10e871ea73 (IsA heracleum rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herald is a kind of messenger", "pln": ["(: cnet_isa_10f26b1c67 (IsA herald messenger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heraldry is a kind of emblem", "pln": ["(: cnet_isa_4ac494ac0d (IsA heraldry emblem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "heraldry is a kind of inquiry", "pln": ["(: cnet_isa_5fe7f4a8c8 (IsA heraldry inquiry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herb is a kind of flavorer", "pln": ["(: cnet_isa_f1103d0680 (IsA herb flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "herb is a kind of vascular plant", "pln": ["(: cnet_isa_c41d865d9f (IsA herb vascular_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herb bennet is a kind of aven", "pln": ["(: cnet_isa_26afbed5ab (IsA herb_bennet aven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herb garden is a kind of garden", "pln": ["(: cnet_isa_2e435f2a85 (IsA herb_garden garden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herb mercury is a kind of herb", "pln": ["(: cnet_isa_bbb0cb0f3a (IsA herb_mercury herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herb paris is a kind of herb", "pln": ["(: cnet_isa_2cba68f3a7 (IsA herb_paris herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herb robert is a kind of cranesbill", "pln": ["(: cnet_isa_7c8a60dcbb (IsA herb_robert cranesbill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herb tea is a kind of tea", "pln": ["(: cnet_isa_d8bb2d9fe0 (IsA herb_tea tea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herba impia is a kind of cotton rose", "pln": ["(: cnet_isa_3462a25da3 (IsA herba_impia cotton_rose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herbage is a kind of herb", "pln": ["(: cnet_isa_2294be625f (IsA herbage herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herbal medicine is a kind of alternative medicine", "pln": ["(: cnet_isa_0069753086 (IsA herbal_medicine alternative_medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herbal medicine is a kind of medicine", "pln": ["(: cnet_isa_898756a526 (IsA herbal_medicine medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herbalist is a kind of therapist", "pln": ["(: cnet_isa_131125ac25 (IsA herbalist therapist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herbarium is a kind of collection", "pln": ["(: cnet_isa_bfc93ef6d6 (IsA herbarium collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herbicide is a kind of chemical", "pln": ["(: cnet_isa_e5fbf5626d (IsA herbicide chemical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herbivore is a kind of animal", "pln": ["(: cnet_isa_511351fd66 (IsA herbivore animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herb is a kind of plant", "pln": ["(: cnet_isa_cd6fe99ac7 (IsA herb plant) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hercule club is a kind of prickly ash", "pln": ["(: cnet_isa_508a85486e (IsA hercule_club prickly_ash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herd is a kind of animal group", "pln": ["(: cnet_isa_804e5a50cc (IsA herd animal_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herder is a kind of hired hand", "pln": ["(: cnet_isa_ec9587c509 (IsA herder hired_hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "here is a kind of location", "pln": ["(: cnet_isa_9df448d6f9 (IsA here location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "here and now is a kind of present", "pln": ["(: cnet_isa_00a442f09e (IsA here_and_now present) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hereditament is a kind of property", "pln": ["(: cnet_isa_1738eeae77 (IsA hereditament property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hereditarianism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_997edf8ada (IsA hereditarianism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hereditary cerebellar ataxia is a kind of ataxia", "pln": ["(: cnet_isa_ba93788d69 (IsA hereditary_cerebellar_ataxia ataxia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heredity is a kind of property", "pln": ["(: cnet_isa_9a0ee7f90e (IsA heredity property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heredity is a kind of organic process", "pln": ["(: cnet_isa_dac2018923 (IsA heredity organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hereford is a kind of beef", "pln": ["(: cnet_isa_63fce222cb (IsA hereford beef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hereness is a kind of presence", "pln": ["(: cnet_isa_bed1d6b4f6 (IsA hereness presence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herero is a kind of bantu", "pln": ["(: cnet_isa_2c30e07d17 (IsA herero bantu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heresy is a kind of content", "pln": ["(: cnet_isa_62faa43e49 (IsA heresy content) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heretic is a kind of nonconformist", "pln": ["(: cnet_isa_ae0f653175 (IsA heretic nonconformist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heretic is a kind of outcast", "pln": ["(: cnet_isa_9ed390f724 (IsA heretic outcast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "heritage is a kind of practice", "pln": ["(: cnet_isa_0bc8c58928 (IsA heritage practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heritiera is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_fdfdbff3f4 (IsA heritiera dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herm is a kind of statue", "pln": ["(: cnet_isa_87326dae15 (IsA herm statue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hermannia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_aa9ea369d6 (IsA hermannia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hermaphrodite is a kind of bisexual", "pln": ["(: cnet_isa_18f6a1445a (IsA hermaphrodite bisexual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hermaphroditism is a kind of birth defect", "pln": ["(: cnet_isa_4238323c53 (IsA hermaphroditism birth_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hermeneutic is a kind of theology", "pln": ["(: cnet_isa_3660f90c05 (IsA hermeneutic theology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hermissenda is a kind of mollusk genus", "pln": ["(: cnet_isa_622962c4e9 (IsA hermissenda mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hermissenda crassicornis is a kind of sea slug", "pln": ["(: cnet_isa_c23e7a8576 (IsA hermissenda_crassicornis sea_slug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hermit is a kind of loner", "pln": ["(: cnet_isa_43c7ebab88 (IsA hermit loner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hermit crab is a kind of decapod crustacean", "pln": ["(: cnet_isa_22981a9fe6 (IsA hermit_crab decapod_crustacean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hermit thrush is a kind of thrush", "pln": ["(: cnet_isa_abcf974ef7 (IsA hermit_thrush thrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hermitage is a kind of dwelling", "pln": ["(: cnet_isa_e5b4ccad06 (IsA hermitage dwelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hernaria is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_a0585fe2fa (IsA hernaria caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hernia is a kind of rupture", "pln": ["(: cnet_isa_0decfb09e8 (IsA hernia rupture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herniated disc is a kind of rupture", "pln": ["(: cnet_isa_f634da94e7 (IsA herniated_disc rupture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hero is a kind of mythical being", "pln": ["(: cnet_isa_f84ec558e1 (IsA hero mythical_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hero is a kind of character", "pln": ["(: cnet_isa_49899eef31 (IsA hero character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hero is a kind of leader", "pln": ["(: cnet_isa_c14487c589 (IsA hero leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hero worship is a kind of admiration", "pln": ["(: cnet_isa_256e4c8714 (IsA hero_worship admiration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hero worshiper is a kind of worshiper", "pln": ["(: cnet_isa_dcd0f385c3 (IsA hero_worshiper worshiper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heroic couplet is a kind of couplet", "pln": ["(: cnet_isa_c4975b38a8 (IsA heroic_couplet couplet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heroic poetry is a kind of poetry", "pln": ["(: cnet_isa_987062483d (IsA heroic_poetry poetry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heroic stanza is a kind of quatrain", "pln": ["(: cnet_isa_9d1f263132 (IsA heroic_stanza quatrain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "heroic verse is a kind of epic poem", "pln": ["(: cnet_isa_1deaad79b7 (IsA heroic_verse epic_poem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "herpes simplex is a kind of herpes", "pln": ["(: cnet_isa_ebfa899a0e (IsA herpes_simplex herpes) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "herpes simplex 2 is a kind of herpes simplex", "pln": ["(: cnet_isa_accd380672 (IsA herpes_simplex_2 herpes_simplex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heroic is a kind of acting", "pln": ["(: cnet_isa_c58984392f (IsA heroic acting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heroin is a kind of drug", "pln": ["(: cnet_isa_e3cf05b21c (IsA heroin drug) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heroin is a kind of illegal drug", "pln": ["(: cnet_isa_53538d19e4 (IsA heroin illegal_drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heroin is a kind of hard drug", "pln": ["(: cnet_isa_d0d1153e2f (IsA heroin hard_drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heroin is a kind of opiate", "pln": ["(: cnet_isa_dca4ac522d (IsA heroin opiate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heroin addict is a kind of drug addict", "pln": ["(: cnet_isa_407b27dfd9 (IsA heroin_addict drug_addict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heroin addiction is a kind of drug addiction", "pln": ["(: cnet_isa_6ba482cbea (IsA heroin_addiction drug_addiction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heroine is a kind of character", "pln": ["(: cnet_isa_6331a7ff71 (IsA heroine character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heroine is a kind of woman", "pln": ["(: cnet_isa_fe5e12a0f2 (IsA heroine woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heroism is a kind of courage", "pln": ["(: cnet_isa_63e3fe72ca (IsA heroism courage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heron is a kind of wading bird", "pln": ["(: cnet_isa_f9e2cff7e3 (IsA heron wading_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heronry is a kind of rookery", "pln": ["(: cnet_isa_4afcc62ae4 (IsA heronry rookery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herpangia is a kind of viral infection", "pln": ["(: cnet_isa_19582f2a25 (IsA herpangia viral_infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herpe is a kind of disease", "pln": ["(: cnet_isa_0f8abf7ba8 (IsA herpe disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herpe is a kind of animal virus", "pln": ["(: cnet_isa_a8cff75bc4 (IsA herpe animal_virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herpe is a kind of infectious disease", "pln": ["(: cnet_isa_4c18d431ac (IsA herpe infectious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herpe simplex is a kind of herpe", "pln": ["(: cnet_isa_cd9758b35c (IsA herpe_simplex herpe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herpe simplex 1 is a kind of herpe simplex", "pln": ["(: cnet_isa_faa7fdde28 (IsA herpe_simplex_1 herpe_simplex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herpe simplex 2 is a kind of herpe simplex", "pln": ["(: cnet_isa_4ca90fc62f (IsA herpe_simplex_2 herpe_simplex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herpe simplex encephalitis is a kind of encephalitis", "pln": ["(: cnet_isa_4d4a7adfa6 (IsA herpe_simplex_encephalitis encephalitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herpe varicella zoster is a kind of herpe zoster", "pln": ["(: cnet_isa_edbd430012 (IsA herpe_varicella_zoster herpe_zoster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herpe zoster is a kind of herpe", "pln": ["(: cnet_isa_d249981a16 (IsA herpe_zoster herpe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herpeste is a kind of mammal genus", "pln": ["(: cnet_isa_ea5dfa425b (IsA herpeste mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herpetologist is a kind of zoologist", "pln": ["(: cnet_isa_2034d4dd48 (IsA herpetologist zoologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herpetology is a kind of zoology", "pln": ["(: cnet_isa_19c9e357e5 (IsA herpetology zoology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herr is a kind of title", "pln": ["(: cnet_isa_aa4b4ebc7d (IsA herr title) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herr is a kind of man", "pln": ["(: cnet_isa_96b6b6df14 (IsA herr man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herrerasaur is a kind of theropod", "pln": ["(: cnet_isa_facc53c62d (IsA herrerasaur theropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herring is a kind of clupeid fish", "pln": ["(: cnet_isa_37a70c0c06 (IsA herring clupeid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herring is a kind of food fish", "pln": ["(: cnet_isa_d351c78cae (IsA herring food_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herring is a kind of saltwater fish", "pln": ["(: cnet_isa_e711eabfce (IsA herring saltwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herring gull is a kind of gull", "pln": ["(: cnet_isa_d765522de3 (IsA herring_gull gull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "herring salad is a kind of salad", "pln": ["(: cnet_isa_3bf471c390 (IsA herring_salad salad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "herringbone is a kind of fabric", "pln": ["(: cnet_isa_5e6c944b23 (IsA herringbone fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herringbone pattern is a kind of design", "pln": ["(: cnet_isa_8cf4c578fc (IsA herringbone_pattern design) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "herschelian telescope is a kind of reflecting telescope", "pln": ["(: cnet_isa_3350b279a6 (IsA herschelian_telescope reflecting_telescope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hershey bar is a kind of chocolate bar", "pln": ["(: cnet_isa_db9bac2049 (IsA hershey_bar chocolate_bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hertz is a kind of rate", "pln": ["(: cnet_isa_9371d5e741 (IsA hertz rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hertzian wave is a kind of radio wave", "pln": ["(: cnet_isa_240f80686e (IsA hertzian_wave radio_wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heshvan is a kind of jewish calendar month", "pln": ["(: cnet_isa_347a452f37 (IsA heshvan jewish_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hesitance is a kind of diffidence", "pln": ["(: cnet_isa_951adb33be (IsA hesitance diffidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hesitation is a kind of pause", "pln": ["(: cnet_isa_b721f321cb (IsA hesitation pause) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hesitation is a kind of indecision", "pln": ["(: cnet_isa_e9c6d23b53 (IsA hesitation indecision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hesperiphona is a kind of bird genus", "pln": ["(: cnet_isa_e6b2685f35 (IsA hesperiphona bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hesperis is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_a522578ab6 (IsA hesperis dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hessian boot is a kind of boot", "pln": ["(: cnet_isa_bef691e59e (IsA hessian_boot boot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hessian fly is a kind of gall midge", "pln": ["(: cnet_isa_0fe886803e (IsA hessian_fly gall_midge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heteranthera is a kind of monocot genus", "pln": ["(: cnet_isa_2974d64482 (IsA heteranthera monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heterobasidiomycete is a kind of class", "pln": ["(: cnet_isa_7c589c0a69 (IsA heterobasidiomycete class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heterocephalus is a kind of mammal genus", "pln": ["(: cnet_isa_b356f8c4d7 (IsA heterocephalus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heterocercal fin is a kind of tail fin", "pln": ["(: cnet_isa_16ae25960c (IsA heterocercal_fin tail_fin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heterocyclic compound is a kind of compound", "pln": ["(: cnet_isa_cb5425f447 (IsA heterocyclic_compound compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heterocyclic ring is a kind of closed chain", "pln": ["(: cnet_isa_bba64b6f16 (IsA heterocyclic_ring closed_chain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heterodactyl foot is a kind of bird s foot", "pln": ["(: cnet_isa_13dea2c0d4 (IsA heterodactyl_foot bird_s_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heterodon is a kind of reptile genus", "pln": ["(: cnet_isa_b626cecc6f (IsA heterodon reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heterodyne receiver is a kind of radio receiver", "pln": ["(: cnet_isa_f19e05b332 (IsA heterodyne_receiver radio_receiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heterogeneity is a kind of nonuniformity", "pln": ["(: cnet_isa_9e5fe64e2e (IsA heterogeneity nonuniformity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heterograft is a kind of graft", "pln": ["(: cnet_isa_e9a869eb3f (IsA heterograft graft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heterokontophyta is a kind of division", "pln": ["(: cnet_isa_1bdc8429c3 (IsA heterokontophyta division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heterology is a kind of dissimilarity", "pln": ["(: cnet_isa_4ce1a1d189 (IsA heterology dissimilarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heteromele is a kind of rosid dicot genus", "pln": ["(: cnet_isa_b260b03217 (IsA heteromele rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heterometabolism is a kind of metamorphosis", "pln": ["(: cnet_isa_82ff9776d2 (IsA heterometabolism metamorphosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heteromyidae is a kind of mammal family", "pln": ["(: cnet_isa_f0fc48bf8a (IsA heteromyidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heteronym is a kind of word", "pln": ["(: cnet_isa_e5a5f275ab (IsA heteronym word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "heterophil antibody is a kind of antibody", "pln": ["(: cnet_isa_643d3d9141 (IsA heterophil_antibody antibody) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heterophil test is a kind of agglutination test", "pln": ["(: cnet_isa_e0b78687e9 (IsA heterophil_test agglutination_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heteroploid is a kind of organism", "pln": ["(: cnet_isa_23d0c14401 (IsA heteroploid organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "heteroploidy is a kind of condition", "pln": ["(: cnet_isa_2a758f6ff6 (IsA heteroploidy condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heteroptera is a kind of animal order", "pln": ["(: cnet_isa_6bd9592a44 (IsA heteroptera animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heteropterous insect is a kind of insect", "pln": ["(: cnet_isa_ff869787bc (IsA heteropterous_insect insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heteroscelus is a kind of bird genus", "pln": ["(: cnet_isa_605ff98fc5 (IsA heteroscelus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heterosexism is a kind of discrimination", "pln": ["(: cnet_isa_92afcb60ca (IsA heterosexism discrimination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heterosexual is a kind of person", "pln": ["(: cnet_isa_621360d6e7 (IsA heterosexual person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heterosexuality is a kind of sexual activity", "pln": ["(: cnet_isa_e2aee29461 (IsA heterosexuality sexual_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heterosomata is a kind of animal order", "pln": ["(: cnet_isa_0c5c31bc84 (IsA heterosomata animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heterospory is a kind of monogenesis", "pln": ["(: cnet_isa_58eed7ab5c (IsA heterospory monogenesis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heterostracan is a kind of jawless vertebrate", "pln": ["(: cnet_isa_ebee88f7e0 (IsA heterostracan jawless_vertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "heterostraci is a kind of animal order", "pln": ["(: cnet_isa_551caf5e97 (IsA heterostraci animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heterotheca is a kind of asterid dicot genus", "pln": ["(: cnet_isa_194170f689 (IsA heterotheca asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heterotrichale is a kind of protoctist order", "pln": ["(: cnet_isa_fc3b36b1a6 (IsA heterotrichale protoctist_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heterotroph is a kind of organism", "pln": ["(: cnet_isa_c4bfe8f524 (IsA heterotroph organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heterozygosity is a kind of state", "pln": ["(: cnet_isa_cf1515d761 (IsA heterozygosity state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heterozygote is a kind of zygote", "pln": ["(: cnet_isa_9d62d26402 (IsA heterozygote zygote) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heth is a kind of letter", "pln": ["(: cnet_isa_6202958964 (IsA heth letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hetz midget arborvitae is a kind of plant", "pln": ["(: cnet_isa_b1d0fc1bdd (IsA hetz_midget_arborvitae plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heuchera is a kind of rosid dicot genus", "pln": ["(: cnet_isa_c773a5112a (IsA heuchera rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heulandite is a kind of zeolite", "pln": ["(: cnet_isa_23cff8d517 (IsA heulandite zeolite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "heuristic is a kind of rule", "pln": ["(: cnet_isa_d25e6d8d42 (IsA heuristic rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hevea is a kind of rosid dicot genus", "pln": ["(: cnet_isa_beef1bcc4b (IsA hevea rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hewer is a kind of laborer", "pln": ["(: cnet_isa_8f0d7ff9cb (IsA hewer laborer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hex is a kind of spell", "pln": ["(: cnet_isa_2c61aadb54 (IsA hex spell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hex nut is a kind of nut", "pln": ["(: cnet_isa_05935e7631 (IsA hex_nut nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hexachlorophene is a kind of antibacterial", "pln": ["(: cnet_isa_a02ed615c5 (IsA hexachlorophene antibacterial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hexadecimal digit is a kind of digit", "pln": ["(: cnet_isa_5bf29a92c3 (IsA hexadecimal_digit digit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hexadecimal notation is a kind of mathematical notation", "pln": ["(: cnet_isa_25a1a87835 (IsA hexadecimal_notation mathematical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hexadecimal number system is a kind of positional notation", "pln": ["(: cnet_isa_5a805f863b (IsA hexadecimal_number_system positional_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hexagon is a kind of closed shape with six side", "pln": ["(: cnet_isa_bd2c3ca07d (IsA hexagon closed_shape_with_six_side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hexagon is a kind of polygon", "pln": ["(: cnet_isa_272ab2e040 (IsA hexagon polygon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hexagram is a kind of star", "pln": ["(: cnet_isa_adc3173570 (IsA hexagram star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hexagrammidae is a kind of fish family", "pln": ["(: cnet_isa_d597a87593 (IsA hexagrammidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hexagrammo is a kind of fish genus", "pln": ["(: cnet_isa_79e34e5eea (IsA hexagrammo fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hexahedron is a kind of polyhedron", "pln": ["(: cnet_isa_cd152d0906 (IsA hexahedron polyhedron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hexalectris is a kind of monocot genus", "pln": ["(: cnet_isa_615c7f4ccc (IsA hexalectris monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hexameter is a kind of verse", "pln": ["(: cnet_isa_ddf2755097 (IsA hexameter verse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hexamita is a kind of protoctist genus", "pln": ["(: cnet_isa_f0ebeb12fc (IsA hexamita protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hexanchidae is a kind of fish family", "pln": ["(: cnet_isa_e3747f52e3 (IsA hexanchidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hexanchus is a kind of fish genus", "pln": ["(: cnet_isa_d9f933d05d (IsA hexanchus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hexane is a kind of methane sery", "pln": ["(: cnet_isa_819385d5e9 (IsA hexane methane_sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hexane is a kind of solvent", "pln": ["(: cnet_isa_34d5dc4c6d (IsA hexane solvent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hexanedioic acid is a kind of carboxylic acid", "pln": ["(: cnet_isa_8c08283eb8 (IsA hexanedioic_acid carboxylic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hexapod is a kind of animal", "pln": ["(: cnet_isa_33d48bf88b (IsA hexapod animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hexestrol is a kind of estrogen", "pln": ["(: cnet_isa_f288998901 (IsA hexestrol estrogen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hexose is a kind of monosaccharide", "pln": ["(: cnet_isa_7c9b42ca9d (IsA hexose monosaccharide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hi fi is a kind of reproducer", "pln": ["(: cnet_isa_d420dfddd6 (IsA hi_fi reproducer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hiatus is a kind of piece", "pln": ["(: cnet_isa_fc6a646dbb (IsA hiatus piece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hiatus hernia is a kind of hernia", "pln": ["(: cnet_isa_a6b5dc37eb (IsA hiatus_hernia hernia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hiba arborvitae is a kind of arborvitae", "pln": ["(: cnet_isa_32cbf25e71 (IsA hiba_arborvitae arborvitae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hibachi is a kind of brazier", "pln": ["(: cnet_isa_454e52e655 (IsA hibachi brazier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hibbertia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_16cda8bb87 (IsA hibbertia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hibernation is a kind of retirement", "pln": ["(: cnet_isa_eb09816d18 (IsA hibernation retirement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hibernation is a kind of dormancy", "pln": ["(: cnet_isa_02c78ab8e4 (IsA hibernation dormancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hibernation is a kind of torpor", "pln": ["(: cnet_isa_86fb669ffd (IsA hibernation torpor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hibiscus is a kind of flower", "pln": ["(: cnet_isa_e1e8bc91a5 (IsA hibiscus flower) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hibiscus is a kind of mallow", "pln": ["(: cnet_isa_250d3c7dd6 (IsA hibiscus mallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hiccup is a kind of reflex", "pln": ["(: cnet_isa_792884de36 (IsA hiccup reflex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hiccup is a kind of symptom", "pln": ["(: cnet_isa_32384337e8 (IsA hiccup symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hiccup nut is a kind of shrub", "pln": ["(: cnet_isa_a6cf5491b1 (IsA hiccup_nut shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hickey is a kind of erythema", "pln": ["(: cnet_isa_0afce0bf78 (IsA hickey erythema) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hickory is a kind of tree", "pln": ["(: cnet_isa_7ffd9415a7 (IsA hickory tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hickory is a kind of nut tree", "pln": ["(: cnet_isa_afc8d501b7 (IsA hickory nut_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hickory is a kind of wood", "pln": ["(: cnet_isa_c72e833326 (IsA hickory wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hickory nut is a kind of edible nut", "pln": ["(: cnet_isa_7902d86afc (IsA hickory_nut edible_nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hidatsa is a kind of siouan", "pln": ["(: cnet_isa_3beb371fec (IsA hidatsa siouan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hidden reserve is a kind of reserve account", "pln": ["(: cnet_isa_4dcd069123 (IsA hidden_reserve reserve_account) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hidden tax is a kind of indirect tax", "pln": ["(: cnet_isa_2cc9b3f830 (IsA hidden_tax indirect_tax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hiddenite is a kind of spodumene", "pln": ["(: cnet_isa_e8eab34679 (IsA hiddenite spodumene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hiddenite is a kind of transparent gem", "pln": ["(: cnet_isa_bc06dbdcc4 (IsA hiddenite transparent_gem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hide is a kind of animal skin", "pln": ["(: cnet_isa_714c4cb0ed (IsA hide animal_skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hide and seek is a kind of child s game", "pln": ["(: cnet_isa_a4934c0e8d (IsA hide_and_seek child_s_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hideaway is a kind of area", "pln": ["(: cnet_isa_741f3fda2d (IsA hideaway area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hideousness is a kind of ugliness", "pln": ["(: cnet_isa_6687b754a7 (IsA hideousness ugliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hideout is a kind of hiding place", "pln": ["(: cnet_isa_2ee9248b67 (IsA hideout hiding_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hiding is a kind of privacy", "pln": ["(: cnet_isa_269b2b3677 (IsA hiding privacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hiding place is a kind of topographic point", "pln": ["(: cnet_isa_698997f84e (IsA hiding_place topographic_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hieracium is a kind of asterid dicot genus", "pln": ["(: cnet_isa_c542ee8ac2 (IsA hieracium asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hierarch is a kind of important person", "pln": ["(: cnet_isa_a0ceb56112 (IsA hierarch important_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hierarchical classification system is a kind of classification system", "pln": ["(: cnet_isa_4e7094efe1 (IsA hierarchical_classification_system classification_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hierarchical menu is a kind of menu", "pln": ["(: cnet_isa_d88f001406 (IsA hierarchical_menu menu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hierarchical structure is a kind of data structure", "pln": ["(: cnet_isa_7bda263755 (IsA hierarchical_structure data_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hierarchy is a kind of organization", "pln": ["(: cnet_isa_91c1b9c43b (IsA hierarchy organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hierarchy is a kind of sery", "pln": ["(: cnet_isa_d237d9ea90 (IsA hierarchy sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hieratic is a kind of hieroglyph", "pln": ["(: cnet_isa_ca094576e7 (IsA hieratic hieroglyph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hierocracy is a kind of theocracy", "pln": ["(: cnet_isa_f898408fb9 (IsA hierocracy theocracy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hieroglyph is a kind of orthography", "pln": ["(: cnet_isa_cef494b0b6 (IsA hieroglyph orthography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hieroglyph is a kind of writing", "pln": ["(: cnet_isa_c8611b7b89 (IsA hieroglyph writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high is a kind of degree", "pln": ["(: cnet_isa_38025c3785 (IsA high degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high is a kind of topographic point", "pln": ["(: cnet_isa_415f859040 (IsA high topographic_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high is a kind of air mass", "pln": ["(: cnet_isa_6904cb2da7 (IsA high air_mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high is a kind of elation", "pln": ["(: cnet_isa_47ecdb5bd4 (IsA high elation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high altar is a kind of altar", "pln": ["(: cnet_isa_93cd8294ae (IsA high_altar altar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high angle fire is a kind of artillery fire", "pln": ["(: cnet_isa_3ddc8f5938 (IsA high_angle_fire artillery_fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high angle gun is a kind of cannon", "pln": ["(: cnet_isa_ae357cb96c (IsA high_angle_gun cannon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "high beam is a kind of beam", "pln": ["(: cnet_isa_c71522bcde (IsA high_beam beam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high bit is a kind of bit", "pln": ["(: cnet_isa_09647dfd6b (IsA high_bit bit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "high blood pressure is a kind of cardiovascular disease", "pln": ["(: cnet_isa_6b325de39b (IsA high_blood_pressure cardiovascular_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high brass is a kind of brass", "pln": ["(: cnet_isa_f07e9c32fb (IsA high_brass brass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high bush blueberry is a kind of blueberry", "pln": ["(: cnet_isa_cff74a1cb4 (IsA high_bush_blueberry blueberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high church is a kind of sect", "pln": ["(: cnet_isa_655038fa34 (IsA high_church sect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high comedy is a kind of comedy", "pln": ["(: cnet_isa_4cedb5a7a7 (IsA high_comedy comedy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high command is a kind of leadership", "pln": ["(: cnet_isa_6e43d4c6df (IsA high_command leadership) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high commission is a kind of embassy", "pln": ["(: cnet_isa_0c38202ff4 (IsA high_commission embassy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high commissioner is a kind of diplomat", "pln": ["(: cnet_isa_e2417d1e4e (IsA high_commissioner diplomat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high country is a kind of area", "pln": ["(: cnet_isa_ec648b54d4 (IsA high_country area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high definition television is a kind of television", "pln": ["(: cnet_isa_29bdd0145c (IsA high_definition_television television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high density lipoprotein is a kind of lipoprotein", "pln": ["(: cnet_isa_fd08c058d8 (IsA high_density_lipoprotein lipoprotein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high explosive is a kind of explosive", "pln": ["(: cnet_isa_986d1fe6f2 (IsA high_explosive explosive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high explosive is a kind of weapon of mass destruction", "pln": ["(: cnet_isa_989b789a10 (IsA high_explosive weapon_of_mass_destruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high fidelity is a kind of sound reproduction", "pln": ["(: cnet_isa_0faacd76f9 (IsA high_fidelity sound_reproduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high finance is a kind of finance", "pln": ["(: cnet_isa_73d8194eab (IsA high_finance finance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high five is a kind of gesture", "pln": ["(: cnet_isa_c74b60587a (IsA high_five gesture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "high frequency is a kind of radio frequency", "pln": ["(: cnet_isa_363cad99ae (IsA high_frequency radio_frequency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high gear is a kind of gear", "pln": ["(: cnet_isa_29a8068932 (IsA high_gear gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high ground is a kind of status", "pln": ["(: cnet_isa_5453b17f2a (IsA high_ground status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high hat cymbal is a kind of cymbal", "pln": ["(: cnet_isa_28821d9278 (IsA high_hat_cymbal cymbal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high holy day is a kind of jewish holy day", "pln": ["(: cnet_isa_f4e6ad1db9 (IsA high_holy_day jewish_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high horse is a kind of attitude", "pln": ["(: cnet_isa_528c30b509 (IsA high_horse attitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high jump is a kind of jumping", "pln": ["(: cnet_isa_6dbf96f75e (IsA high_jump jumping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high jump is a kind of field event", "pln": ["(: cnet_isa_0b59a3f4eb (IsA high_jump field_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high level formatting is a kind of format", "pln": ["(: cnet_isa_f9b007908d (IsA high_level_formatting format) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high level language is a kind of application oriented language", "pln": ["(: cnet_isa_b9306d24da (IsA high_level_language application_oriented_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high level radioactive waste is a kind of radioactive waste", "pln": ["(: cnet_isa_7c169d6f57 (IsA high_level_radioactive_waste radioactive_waste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high low is a kind of poker", "pln": ["(: cnet_isa_62f7ce0e37 (IsA high_low poker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high mass is a kind of mass", "pln": ["(: cnet_isa_bca7fd9fb4 (IsA high_mass mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "high mindedness is a kind of nobility", "pln": ["(: cnet_isa_95c84de0c2 (IsA high_mindedness nobility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high muck muck is a kind of important person", "pln": ["(: cnet_isa_1cd6b9aece (IsA high_muck_muck important_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high pass filter is a kind of filter", "pln": ["(: cnet_isa_e1db956f21 (IsA high_pass_filter filter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high pitch is a kind of pitch", "pln": ["(: cnet_isa_48d543fe27 (IsA high_pitch pitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high point is a kind of part", "pln": ["(: cnet_isa_1346cfdc79 (IsA high_point part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high priest is a kind of authority", "pln": ["(: cnet_isa_9da0a2a2ac (IsA high_priest authority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high profile is a kind of status", "pln": ["(: cnet_isa_7128226b62 (IsA high_profile status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "high protein diet is a kind of diet", "pln": ["(: cnet_isa_052c568f3f (IsA high_protein_diet diet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high renaissance is a kind of artistic style", "pln": ["(: cnet_isa_819dd2dd15 (IsA high_renaissance artistic_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high rise is a kind of building", "pln": ["(: cnet_isa_8b74a51fd1 (IsA high_rise building) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high rise is a kind of tower", "pln": ["(: cnet_isa_0fef6ff175 (IsA high_rise tower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high roller is a kind of gambler", "pln": ["(: cnet_isa_721c09c5d9 (IsA high_roller gambler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high sea is a kind of body of water", "pln": ["(: cnet_isa_4fded1b666 (IsA high_sea body_of_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high season is a kind of season", "pln": ["(: cnet_isa_eec95bd1b8 (IsA high_season season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high sign is a kind of signal", "pln": ["(: cnet_isa_af7cba5896 (IsA high_sign signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high speed steel is a kind of tool steel", "pln": ["(: cnet_isa_947b8cf9cf (IsA high_speed_steel tool_steel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high spiritedness is a kind of liveliness", "pln": ["(: cnet_isa_9cfa97e31c (IsA high_spiritedness liveliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high status is a kind of status", "pln": ["(: cnet_isa_70e1d8c59f (IsA high_status status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high table is a kind of dining table", "pln": ["(: cnet_isa_69327668d4 (IsA high_table dining_table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high tea is a kind of dinner", "pln": ["(: cnet_isa_6c7f0c5208 (IsA high_tea dinner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high technology is a kind of technology", "pln": ["(: cnet_isa_04f54883e9 (IsA high_technology technology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high tide is a kind of tide", "pln": ["(: cnet_isa_b0c44dfb2f (IsA high_tide tide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high time is a kind of time", "pln": ["(: cnet_isa_e53683b12c (IsA high_time time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high vitamin diet is a kind of diet", "pln": ["(: cnet_isa_cf6703ff45 (IsA high_vitamin_diet diet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high warp loom is a kind of handloom", "pln": ["(: cnet_isa_166d13aaf0 (IsA high_warp_loom handloom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "high water mark is a kind of water line", "pln": ["(: cnet_isa_04c996b20d (IsA high_water_mark water_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high wind is a kind of wind", "pln": ["(: cnet_isa_2c736c127a (IsA high_wind wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "high wire is a kind of tightrope", "pln": ["(: cnet_isa_01461a49f5 (IsA high_wire tightrope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "highball is a kind of mixed drink", "pln": ["(: cnet_isa_1899d73c0e (IsA highball mixed_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "highball glass is a kind of glass", "pln": ["(: cnet_isa_28745bdb31 (IsA highball_glass glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "highbinder is a kind of criminal", "pln": ["(: cnet_isa_c46f4e3077 (IsA highbinder criminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "highboard is a kind of diving board", "pln": ["(: cnet_isa_125ef962cd (IsA highboard diving_board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "highboy is a kind of chest of drawer", "pln": ["(: cnet_isa_f90c0dd37d (IsA highboy chest_of_drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "highbrow is a kind of intellectual", "pln": ["(: cnet_isa_c5f05ede14 (IsA highbrow intellectual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "highchair is a kind of chair", "pln": ["(: cnet_isa_ebe5286583 (IsA highchair chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "higher cognitive process is a kind of process", "pln": ["(: cnet_isa_b90c6ebff1 (IsA higher_cognitive_process process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "higher criticism is a kind of textual criticism", "pln": ["(: cnet_isa_b9fd881f01 (IsA higher_criticism textual_criticism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "higher education is a kind of education", "pln": ["(: cnet_isa_5e738b7d0e (IsA higher_education education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "higher law is a kind of principle", "pln": ["(: cnet_isa_e1c2a5e6f8 (IsA higher_law principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "higher national diploma is a kind of diploma", "pln": ["(: cnet_isa_9b390a986e (IsA higher_national_diploma diploma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "highflier is a kind of achiever", "pln": ["(: cnet_isa_0130e693a2 (IsA highflier achiever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "highjacker is a kind of criminal", "pln": ["(: cnet_isa_39c8ff7d4c (IsA highjacker criminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "highjacker is a kind of holdup man", "pln": ["(: cnet_isa_ea6e13c61b (IsA highjacker holdup_man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "highjacking is a kind of robbery", "pln": ["(: cnet_isa_ebbd6e3a12 (IsA highjacking robbery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "highland is a kind of natural elevation", "pln": ["(: cnet_isa_a20f2b92df (IsA highland natural_elevation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "highland fling is a kind of reel", "pln": ["(: cnet_isa_15a2cdab1c (IsA highland_fling reel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "highlander is a kind of soldier", "pln": ["(: cnet_isa_aa864776a5 (IsA highlander soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "highlight is a kind of light", "pln": ["(: cnet_isa_40307f4053 (IsA highlight light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "highlight is a kind of detail", "pln": ["(: cnet_isa_d2fc2d8caa (IsA highlight detail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "highlighter is a kind of cosmetic", "pln": ["(: cnet_isa_1bf43f9723 (IsA highlighter cosmetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "highlighter is a kind of marker", "pln": ["(: cnet_isa_823af471d4 (IsA highlighter marker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "highness is a kind of degree", "pln": ["(: cnet_isa_2e7327f394 (IsA highness degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "highness is a kind of height", "pln": ["(: cnet_isa_068098ae42 (IsA highness height) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "highness is a kind of aristocrat", "pln": ["(: cnet_isa_df20ede2f4 (IsA highness aristocrat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "highroad is a kind of highway", "pln": ["(: cnet_isa_cc6c32b63a (IsA highroad highway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "highway is a kind of australian freeway", "pln": ["(: cnet_isa_98447e6c1a (IsA highway australian_freeway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "highway is a kind of road", "pln": ["(: cnet_isa_6dc965ee94 (IsA highway road) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "highway code is a kind of code", "pln": ["(: cnet_isa_8f189a5ef8 (IsA highway_code code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "highway engineer is a kind of civil engineer", "pln": ["(: cnet_isa_bd81513aa6 (IsA highway_engineer civil_engineer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "highway robbery is a kind of robbery", "pln": ["(: cnet_isa_4b1eefdf89 (IsA highway_robbery robbery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "highway robbery is a kind of price", "pln": ["(: cnet_isa_5fa2575ed0 (IsA highway_robbery price) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "highway system is a kind of transportation system", "pln": ["(: cnet_isa_a2d67de5d6 (IsA highway_system transportation_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "higi is a kind of biu mandara", "pln": ["(: cnet_isa_47c214f1dd (IsA higi biu_mandara) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hijab is a kind of custom", "pln": ["(: cnet_isa_bbcf8b6dc0 (IsA hijab custom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hijab is a kind of headscarf", "pln": ["(: cnet_isa_21a0a5bec9 (IsA hijab headscarf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hijack is a kind of crime", "pln": ["(: cnet_isa_f65606d538 (IsA hijack crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hike is a kind of walk", "pln": ["(: cnet_isa_7955f27d7b (IsA hike walk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hiker is a kind of pedestrian", "pln": ["(: cnet_isa_3431685cf9 (IsA hiker pedestrian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hiking is a kind of exercise too", "pln": ["(: cnet_isa_b9979cc5c8 (IsA hiking exercise_too) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hilarity is a kind of gaiety", "pln": ["(: cnet_isa_9624b6a6c5 (IsA hilarity gaiety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hilbert space is a kind of metric space", "pln": ["(: cnet_isa_6af6cee5a2 (IsA hilbert_space metric_space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hill is a kind of mound of earth", "pln": ["(: cnet_isa_5140acd335 (IsA hill mound_of_earth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hill is a kind of natural elevation", "pln": ["(: cnet_isa_fbfb00167d (IsA hill natural_elevation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hill myna is a kind of myna", "pln": ["(: cnet_isa_569ccb27ad (IsA hill_myna myna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hillbilly is a kind of rustic", "pln": ["(: cnet_isa_964b954d0e (IsA hillbilly rustic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hillbilly music is a kind of country music", "pln": ["(: cnet_isa_ca3da377a1 (IsA hillbilly_music country_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hilliness is a kind of ruggedness", "pln": ["(: cnet_isa_ae4124bf32 (IsA hilliness ruggedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hillside is a kind of slope", "pln": ["(: cnet_isa_453ba3fa12 (IsA hillside slope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hilltop is a kind of peak", "pln": ["(: cnet_isa_1603ba552b (IsA hilltop peak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hilt is a kind of handle", "pln": ["(: cnet_isa_c1d689004a (IsA hilt handle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hilum is a kind of point", "pln": ["(: cnet_isa_4b63cf7a8e (IsA hilum point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hilus is a kind of fissure", "pln": ["(: cnet_isa_4b24b40ab1 (IsA hilus fissure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "himalaya honeysuckle is a kind of shrub", "pln": ["(: cnet_isa_de340eb19e (IsA himalaya_honeysuckle shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "himalayan lilac is a kind of lilac", "pln": ["(: cnet_isa_e33236cfbc (IsA himalayan_lilac lilac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "himalayan rhubarb is a kind of rhubarb", "pln": ["(: cnet_isa_f259d29aa7 (IsA himalayan_rhubarb rhubarb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "himalayish is a kind of tibeto burman", "pln": ["(: cnet_isa_1f702e1320 (IsA himalayish tibeto_burman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "himantoglossum is a kind of monocot genus", "pln": ["(: cnet_isa_8d3d3b28c5 (IsA himantoglossum monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "himantopus is a kind of bird genus", "pln": ["(: cnet_isa_bc9e1fbe8b (IsA himantopus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hin is a kind of volume unit", "pln": ["(: cnet_isa_35fe4c6583 (IsA hin volume_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hinayana is a kind of theravada", "pln": ["(: cnet_isa_29b50f574c (IsA hinayana theravada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hinayana is a kind of buddhism", "pln": ["(: cnet_isa_4272cc97c1 (IsA hinayana buddhism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hinayanism is a kind of theological doctrine", "pln": ["(: cnet_isa_45d848861c (IsA hinayanism theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hinayanist is a kind of disciple", "pln": ["(: cnet_isa_5fd0ba58ad (IsA hinayanist disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hind is a kind of grouper", "pln": ["(: cnet_isa_134198eb7c (IsA hind grouper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hind is a kind of red deer", "pln": ["(: cnet_isa_07be640f18 (IsA hind red_deer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hind leg is a kind of hind limb", "pln": ["(: cnet_isa_10d96b82bc (IsA hind_leg hind_limb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hind limb is a kind of limb", "pln": ["(: cnet_isa_ded4244276 (IsA hind_limb limb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hindbrain is a kind of neural structure", "pln": ["(: cnet_isa_ec4f87b1d6 (IsA hindbrain neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hindfoot is a kind of animal foot", "pln": ["(: cnet_isa_778cdc67b8 (IsA hindfoot animal_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hindgut is a kind of internal organ", "pln": ["(: cnet_isa_36a21b0191 (IsA hindgut internal_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hindi is a kind of sanskrit", "pln": ["(: cnet_isa_234f87f438 (IsA hindi sanskrit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hindoo is a kind of religionist", "pln": ["(: cnet_isa_5a97a25948 (IsA hindoo religionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hindquarter is a kind of cut", "pln": ["(: cnet_isa_03213b48e7 (IsA hindquarter cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hindquarter is a kind of body part", "pln": ["(: cnet_isa_650f719b2b (IsA hindquarter body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hindrance is a kind of act", "pln": ["(: cnet_isa_a3689e2153 (IsA hindrance act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hindrance is a kind of obstruction", "pln": ["(: cnet_isa_c7db0afd3d (IsA hindrance obstruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hindrance is a kind of difficulty", "pln": ["(: cnet_isa_7b2671339e (IsA hindrance difficulty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hindshank is a kind of shank", "pln": ["(: cnet_isa_395c69d1a4 (IsA hindshank shank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hindsight is a kind of understanding", "pln": ["(: cnet_isa_ad7f2c4891 (IsA hindsight understanding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hindu calendar is a kind of lunisolar calendar", "pln": ["(: cnet_isa_909a691ce2 (IsA hindu_calendar lunisolar_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hindu calendar month is a kind of calendar month", "pln": ["(: cnet_isa_99ab4341fc (IsA hindu_calendar_month calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hindu deity is a kind of deity", "pln": ["(: cnet_isa_b5dacd8589 (IsA hindu_deity deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hinduism is a kind of religion", "pln": ["(: cnet_isa_813720a029 (IsA hinduism religion) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hindustani is a kind of hindi", "pln": ["(: cnet_isa_8239239fd9 (IsA hindustani hindi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hindustani is a kind of asiatic", "pln": ["(: cnet_isa_7914ffb1a2 (IsA hindustani asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hinge is a kind of joint", "pln": ["(: cnet_isa_f80f117bcc (IsA hinge joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hinge is a kind of circumstance", "pln": ["(: cnet_isa_a6a1594a2f (IsA hinge circumstance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hinge joint is a kind of synovial joint", "pln": ["(: cnet_isa_aad942e1a4 (IsA hinge_joint synovial_joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hinging post is a kind of gatepost", "pln": ["(: cnet_isa_977054835e (IsA hinging_post gatepost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hinny is a kind of equine", "pln": ["(: cnet_isa_de24b040f4 (IsA hinny equine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hint is a kind of indication", "pln": ["(: cnet_isa_960a9887c6 (IsA hint indication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hint is a kind of suggestion", "pln": ["(: cnet_isa_12e9e12f63 (IsA hint suggestion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hip is a kind of exterior angle", "pln": ["(: cnet_isa_b63c6f431b (IsA hip exterior_angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hip is a kind of ball and socket joint", "pln": ["(: cnet_isa_ceed434f43 (IsA hip ball_and_socket_joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hip is a kind of body part", "pln": ["(: cnet_isa_36d4ca016d (IsA hip body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hip is a kind of fruit", "pln": ["(: cnet_isa_a29614daf0 (IsA hip fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hip boot is a kind of boot", "pln": ["(: cnet_isa_b3b1dbc1b8 (IsA hip_boot boot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hip hop is a kind of youth culture", "pln": ["(: cnet_isa_a393c6fa2a (IsA hip_hop youth_culture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hip pad is a kind of protective garment", "pln": ["(: cnet_isa_78745b65b9 (IsA hip_pad protective_garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hip pocket is a kind of pocket", "pln": ["(: cnet_isa_9317fb1f71 (IsA hip_pocket pocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hip roof is a kind of roof", "pln": ["(: cnet_isa_97049b42df (IsA hip_roof roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hip socket is a kind of socket", "pln": ["(: cnet_isa_62bcf1b3fc (IsA hip_socket socket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hip tile is a kind of tile", "pln": ["(: cnet_isa_d72b9d3671 (IsA hip_tile tile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hipbone is a kind of bone", "pln": ["(: cnet_isa_39510faabf (IsA hipbone bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hipflask is a kind of flask", "pln": ["(: cnet_isa_ea07c4cd2f (IsA hipflask flask) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hipline is a kind of line", "pln": ["(: cnet_isa_b130938d04 (IsA hipline line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hippeastrum is a kind of amaryllis", "pln": ["(: cnet_isa_e82bf2336b (IsA hippeastrum amaryllis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hippie is a kind of reformer", "pln": ["(: cnet_isa_c11c2f46ed (IsA hippie reformer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hippobosca is a kind of arthropod genus", "pln": ["(: cnet_isa_3209c043af (IsA hippobosca arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hippoboscidae is a kind of arthropod family", "pln": ["(: cnet_isa_5288b883ed (IsA hippoboscidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hippocampus is a kind of fish genus", "pln": ["(: cnet_isa_2d8940a232 (IsA hippocampus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hippocampus is a kind of neural structure", "pln": ["(: cnet_isa_a3d2b5e2d3 (IsA hippocampus neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hippocampus ca1 pyramidal cell is a kind of diploid cell", "pln": ["(: cnet_isa_2953be8ce1 (IsA hippocampus_ca1_pyramidal_cell diploid_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hippocastanaceae is a kind of dicot family", "pln": ["(: cnet_isa_98120e8cb0 (IsA hippocastanaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hippocrepis is a kind of rosid dicot genus", "pln": ["(: cnet_isa_1219d52c62 (IsA hippocrepis rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hippodamia is a kind of arthropod genus", "pln": ["(: cnet_isa_95ab7ab110 (IsA hippodamia arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hippodamia convergen is a kind of ladybug", "pln": ["(: cnet_isa_efc1a504fc (IsA hippodamia_convergen ladybug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hippodrome is a kind of stadium", "pln": ["(: cnet_isa_e0a9491706 (IsA hippodrome stadium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "hipposideros is a kind of mammal genus", "pln": ["(: cnet_isa_f4c722cd90 (IsA hipposideros mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hippoglossoide is a kind of fish genus", "pln": ["(: cnet_isa_aa33cc5a69 (IsA hippoglossoide fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hippoglossus is a kind of fish genus", "pln": ["(: cnet_isa_f137540914 (IsA hippoglossus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hippopotamidae is a kind of mammal family", "pln": ["(: cnet_isa_2f867d1138 (IsA hippopotamidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hippopotamus is a kind of even toed ungulate", "pln": ["(: cnet_isa_3cb50f6c6e (IsA hippopotamus even_toed_ungulate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hipposideridae is a kind of mammal family", "pln": ["(: cnet_isa_33892d5246 (IsA hipposideridae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hipposidero is a kind of mammal genus", "pln": ["(: cnet_isa_74fdb41ad1 (IsA hipposidero mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hippotragus is a kind of mammal genus", "pln": ["(: cnet_isa_53845536ff (IsA hippotragus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hipsurus is a kind of fish genus", "pln": ["(: cnet_isa_0a46b36a63 (IsA hipsurus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hire is a kind of act", "pln": ["(: cnet_isa_d931b4e1d3 (IsA hire act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hire is a kind of employee", "pln": ["(: cnet_isa_5edcbdad66 (IsA hire employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hire purchase is a kind of installment plan", "pln": ["(: cnet_isa_77b2d2310d (IsA hire_purchase installment_plan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hired hand is a kind of laborer", "pln": ["(: cnet_isa_cca61fdfab (IsA hired_hand laborer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hired help is a kind of employee", "pln": ["(: cnet_isa_0d61b9c457 (IsA hired_help employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hireling is a kind of employee", "pln": ["(: cnet_isa_4658166ef7 (IsA hireling employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hiring freeze is a kind of freeze", "pln": ["(: cnet_isa_75570e541a (IsA hiring_freeze freeze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hiring hall is a kind of placement office", "pln": ["(: cnet_isa_8a75faa17f (IsA hiring_hall placement_office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hirschsprung s disease is a kind of genetic disease", "pln": ["(: cnet_isa_84c46b8f7e (IsA hirschsprung_s_disease genetic_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hirsuteness is a kind of hairiness", "pln": ["(: cnet_isa_c7657eff1a (IsA hirsuteness hairiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hirudinea is a kind of class", "pln": ["(: cnet_isa_a39617cb18 (IsA hirudinea class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hirudinidae is a kind of worm family", "pln": ["(: cnet_isa_aa98ba7c3f (IsA hirudinidae worm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hirudo is a kind of worm genus", "pln": ["(: cnet_isa_64ba061d18 (IsA hirudo worm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hirundinidae is a kind of bird family", "pln": ["(: cnet_isa_e623a7e49e (IsA hirundinidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hirundo is a kind of bird genus", "pln": ["(: cnet_isa_7e8c41d567 (IsA hirundo bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hispanic american is a kind of american", "pln": ["(: cnet_isa_faaf8fdbf3 (IsA hispanic_american american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hispid pocket mouse is a kind of pocket mouse", "pln": ["(: cnet_isa_09abf24fa5 (IsA hispid_pocket_mouse pocket_mouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hiss is a kind of noise", "pln": ["(: cnet_isa_ddb8959398 (IsA hiss noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hisser is a kind of communicator", "pln": ["(: cnet_isa_a476834eda (IsA hisser communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "histaminase is a kind of enzyme", "pln": ["(: cnet_isa_9240c3257a (IsA histaminase enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "histamine is a kind of amine", "pln": ["(: cnet_isa_15c0a27669 (IsA histamine amine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "histamine blocker is a kind of medicine", "pln": ["(: cnet_isa_f0c6a46ced (IsA histamine_blocker medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "histamine headache is a kind of headache", "pln": ["(: cnet_isa_1437fca2fd (IsA histamine_headache headache) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "histidine is a kind of essential amino acid", "pln": ["(: cnet_isa_03c299eac8 (IsA histidine essential_amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "histiocyte is a kind of macrophage", "pln": ["(: cnet_isa_70c7736efa (IsA histiocyte macrophage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "histiocytosis is a kind of blood disease", "pln": ["(: cnet_isa_731cc9bf02 (IsA histiocytosis blood_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "histocompatibility is a kind of organic phenomenon", "pln": ["(: cnet_isa_5fa43587b7 (IsA histocompatibility organic_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "histocompatibility complex is a kind of class", "pln": ["(: cnet_isa_0968ad9745 (IsA histocompatibility_complex class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "histogram is a kind of bar chart", "pln": ["(: cnet_isa_31b41da7a8 (IsA histogram bar_chart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "histoincompatibility is a kind of incompatibility", "pln": ["(: cnet_isa_c9b29b7eba (IsA histoincompatibility incompatibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "histologist is a kind of anatomist", "pln": ["(: cnet_isa_6738d20922 (IsA histologist anatomist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "histology is a kind of microscopic anatomy", "pln": ["(: cnet_isa_3128ed5f69 (IsA histology microscopic_anatomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "histone is a kind of simple protein", "pln": ["(: cnet_isa_175455a520 (IsA histone simple_protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "historian is a kind of scholar", "pln": ["(: cnet_isa_0b2da2dfba (IsA historian scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "historical document is a kind of history", "pln": ["(: cnet_isa_8758e4a9ff (IsA historical_document history) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "historical linguistic is a kind of linguistic", "pln": ["(: cnet_isa_dcf88df277 (IsA historical_linguistic linguistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "historical present is a kind of present", "pln": ["(: cnet_isa_c3af3557a4 (IsA historical_present present) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "historical school is a kind of school", "pln": ["(: cnet_isa_9c4e7a1401 (IsA historical_school school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "historicalness is a kind of significance", "pln": ["(: cnet_isa_21a83358b3 (IsA historicalness significance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "historicalness is a kind of reality", "pln": ["(: cnet_isa_8c6147ed6d (IsA historicalness reality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "historicism is a kind of hypothesis", "pln": ["(: cnet_isa_26c5c042b4 (IsA historicism hypothesis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "historiography is a kind of writing", "pln": ["(: cnet_isa_da355569e3 (IsA historiography writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "historiography is a kind of literature", "pln": ["(: cnet_isa_71bda73e66 (IsA historiography literature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "history is a kind of cognition", "pln": ["(: cnet_isa_a72a2e005c (IsA history cognition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "history is a kind of humanistic discipline", "pln": ["(: cnet_isa_2b481f0f44 (IsA history humanistic_discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "history is a kind of record", "pln": ["(: cnet_isa_f3d7073db0 (IsA history record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "history is a kind of continuum", "pln": ["(: cnet_isa_54db35d073 (IsA history continuum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "history is a kind of past", "pln": ["(: cnet_isa_f1998e8a18 (IsA history past) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "history department is a kind of academic department", "pln": ["(: cnet_isa_a33fa9cd26 (IsA history_department academic_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "history lesson is a kind of lesson", "pln": ["(: cnet_isa_074124a297 (IsA history_lesson lesson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "histrionic is a kind of display", "pln": ["(: cnet_isa_cf0fbfb6d7 (IsA histrionic display) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hit is a kind of joining", "pln": ["(: cnet_isa_67c0bd85d4 (IsA hit joining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hit is a kind of murder", "pln": ["(: cnet_isa_ec85c0d9c5 (IsA hit murder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hit is a kind of success", "pln": ["(: cnet_isa_091ffe1fc9 (IsA hit success) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hit is a kind of touch", "pln": ["(: cnet_isa_1194cd53e5 (IsA hit touch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hit is a kind of dose", "pln": ["(: cnet_isa_7bdd7c7dda (IsA hit dose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hit is a kind of deed", "pln": ["(: cnet_isa_4cd84fc7a7 (IsA hit deed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hit and run is a kind of crime", "pln": ["(: cnet_isa_de771f7f2d (IsA hit_and_run crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hit list is a kind of list", "pln": ["(: cnet_isa_28d8758d62 (IsA hit_list list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hit parade is a kind of list", "pln": ["(: cnet_isa_47dff32fa1 (IsA hit_parade list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hit parade is a kind of collection", "pln": ["(: cnet_isa_73896628f9 (IsA hit_parade collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hit squad is a kind of team", "pln": ["(: cnet_isa_3b56facf03 (IsA hit_squad team) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hitch is a kind of gait", "pln": ["(: cnet_isa_a7a01ff8f4 (IsA hitch gait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hitch is a kind of connection", "pln": ["(: cnet_isa_c75f681409 (IsA hitch connection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hitch is a kind of knot", "pln": ["(: cnet_isa_662bb382de (IsA hitch knot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hitchhiker is a kind of passenger", "pln": ["(: cnet_isa_2ee8b2dd9d (IsA hitchhiker passenger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hitching post is a kind of post", "pln": ["(: cnet_isa_21b617ced7 (IsA hitching_post post) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hitchiti is a kind of muskhogean", "pln": ["(: cnet_isa_368e92fab1 (IsA hitchiti muskhogean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hitchiti is a kind of muskogean", "pln": ["(: cnet_isa_eae9dffbef (IsA hitchiti muskogean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hitchrack is a kind of rail", "pln": ["(: cnet_isa_3942b2cee8 (IsA hitchrack rail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hitler is a kind of antisemite", "pln": ["(: cnet_isa_93c05e3d21 (IsA hitler antisemite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hitter is a kind of mover", "pln": ["(: cnet_isa_76e532ea95 (IsA hitter mover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hitting average is a kind of average", "pln": ["(: cnet_isa_59030308b6 (IsA hitting_average average) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hittite is a kind of anatolian", "pln": ["(: cnet_isa_7ac570485b (IsA hittite anatolian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hittite is a kind of inhabitant", "pln": ["(: cnet_isa_ba2185da9a (IsA hittite inhabitant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hiv is a kind of viral infection", "pln": ["(: cnet_isa_e42558c0c6 (IsA hiv viral_infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hive is a kind of multitude", "pln": ["(: cnet_isa_baa5c9eba4 (IsA hive multitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hmg coa reductase is a kind of reductase", "pln": ["(: cnet_isa_a30826f362 (IsA hmg_coa_reductase reductase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hmong is a kind of asiatic", "pln": ["(: cnet_isa_3c3a6d76e9 (IsA hmong asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hmong language is a kind of natural language", "pln": ["(: cnet_isa_b41a0080a6 (IsA hmong_language natural_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoard is a kind of store", "pln": ["(: cnet_isa_115a40a081 (IsA hoard store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoarder is a kind of saver", "pln": ["(: cnet_isa_8097aab346 (IsA hoarder saver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoariness is a kind of oldness", "pln": ["(: cnet_isa_2afb2f1680 (IsA hoariness oldness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoary alison is a kind of herb", "pln": ["(: cnet_isa_63558f3b74 (IsA hoary_alison herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoary golden bush is a kind of shrub", "pln": ["(: cnet_isa_c0c8d2ad0e (IsA hoary_golden_bush shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoary marmot is a kind of marmot", "pln": ["(: cnet_isa_9404d8707f (IsA hoary_marmot marmot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoary pea is a kind of subshrub", "pln": ["(: cnet_isa_0f1994f42e (IsA hoary_pea subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hoary plantain is a kind of plantain", "pln": ["(: cnet_isa_5f1afc1529 (IsA hoary_plantain plantain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoary puccoon is a kind of herb", "pln": ["(: cnet_isa_32b2b9662f (IsA hoary_puccoon herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoary willow is a kind of willow", "pln": ["(: cnet_isa_f420ee31b6 (IsA hoary_willow willow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoatzin is a kind of gallinaceous bird", "pln": ["(: cnet_isa_6ee5b6b866 (IsA hoatzin gallinaceous_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hob is a kind of edge tool", "pln": ["(: cnet_isa_939d780430 (IsA hob edge_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hob is a kind of shelf", "pln": ["(: cnet_isa_20782af5e4 (IsA hob shelf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hobbit is a kind of imaginary being", "pln": ["(: cnet_isa_c2d8e00e5c (IsA hobbit imaginary_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hobble skirt is a kind of skirt", "pln": ["(: cnet_isa_2013142d39 (IsA hobble_skirt skirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hobbledehoy is a kind of young person", "pln": ["(: cnet_isa_20943960f3 (IsA hobbledehoy young_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hobbler is a kind of pedestrian", "pln": ["(: cnet_isa_2d5a48de3a (IsA hobbler pedestrian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hobby is a kind of falcon", "pln": ["(: cnet_isa_4a847ab66c (IsA hobby falcon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hobby is a kind of plaything", "pln": ["(: cnet_isa_9a149dea47 (IsA hobby plaything) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hobbyhorse is a kind of preoccupation", "pln": ["(: cnet_isa_e40793493a (IsA hobbyhorse preoccupation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hobbyism is a kind of devotion", "pln": ["(: cnet_isa_a8b808e239 (IsA hobbyism devotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hobbyist is a kind of amateur", "pln": ["(: cnet_isa_d01c5ac3bd (IsA hobbyist amateur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hobnail is a kind of nail", "pln": ["(: cnet_isa_d3e8c5cdf9 (IsA hobnail nail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hobo camp is a kind of camp", "pln": ["(: cnet_isa_aadf4c2ca1 (IsA hobo_camp camp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hobson s choice is a kind of option", "pln": ["(: cnet_isa_b2c52ca27b (IsA hobson_s_choice option) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hock is a kind of joint", "pln": ["(: cnet_isa_aafea00f4b (IsA hock joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hockey is a kind of game", "pln": ["(: cnet_isa_730fb0e7df (IsA hockey game) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hockey is a kind of great sport", "pln": ["(: cnet_isa_86b92b6431 (IsA hockey great_sport) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hockey is a kind of popular sport in canada", "pln": ["(: cnet_isa_c4286373b3 (IsA hockey popular_sport_in_canada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hockey is a kind of sport", "pln": ["(: cnet_isa_e5e6cc775d (IsA hockey sport) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hockey is a kind of sport of skill and precision", "pln": ["(: cnet_isa_a16d774de9 (IsA hockey sport_of_skill_and_precision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hockey is a kind of team sport", "pln": ["(: cnet_isa_6e3de6e7ae (IsA hockey team_sport) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hockey is a kind of violent sport", "pln": ["(: cnet_isa_57b48c3de8 (IsA hockey violent_sport) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hockey is a kind of winter game", "pln": ["(: cnet_isa_694dd56a24 (IsA hockey winter_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hockey clinic is a kind of clinic", "pln": ["(: cnet_isa_e40e052962 (IsA hockey_clinic clinic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hockey coach is a kind of coach", "pln": ["(: cnet_isa_27a4440884 (IsA hockey_coach coach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hockey league is a kind of league", "pln": ["(: cnet_isa_d5966a5352 (IsA hockey_league league) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hockey player is a kind of athlete", "pln": ["(: cnet_isa_9804c820fb (IsA hockey_player athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hockey player is a kind of player", "pln": ["(: cnet_isa_4bf2433dc8 (IsA hockey_player player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hockey season is a kind of season", "pln": ["(: cnet_isa_277d94f884 (IsA hockey_season season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hockey skate is a kind of ice skate", "pln": ["(: cnet_isa_fbf58dfd4e (IsA hockey_skate ice_skate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hockey stick is a kind of stick", "pln": ["(: cnet_isa_8a03b943be (IsA hockey_stick stick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hockey team is a kind of team", "pln": ["(: cnet_isa_dd9a4acfa3 (IsA hockey_team team) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hod is a kind of box", "pln": ["(: cnet_isa_ae9c6dacb3 (IsA hod box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hod carrier is a kind of laborer", "pln": ["(: cnet_isa_f52a34645d (IsA hod_carrier laborer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hodgkin s disease is a kind of lymphoma", "pln": ["(: cnet_isa_995157dab5 (IsA hodgkin_s_disease lymphoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hodoscope is a kind of scientific instrument", "pln": ["(: cnet_isa_86e758542d (IsA hodoscope scientific_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoe is a kind of tool", "pln": ["(: cnet_isa_b62e5663d2 (IsA hoe tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hoe handle is a kind of handle", "pln": ["(: cnet_isa_75265174d6 (IsA hoe_handle handle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hoecake is a kind of johnnycake", "pln": ["(: cnet_isa_58d90a577a (IsA hoecake johnnycake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hog is a kind of lamb", "pln": ["(: cnet_isa_7fd7930765 (IsA hog lamb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hog is a kind of swine", "pln": ["(: cnet_isa_6b8f7d7e4d (IsA hog swine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hog is a kind of selfish person", "pln": ["(: cnet_isa_9029edfb41 (IsA hog selfish_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hog badger is a kind of badger", "pln": ["(: cnet_isa_baeadf04b3 (IsA hog_badger badger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hog cholera is a kind of animal disease", "pln": ["(: cnet_isa_f2cfbfca4a (IsA hog_cholera animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hog nosed skunk is a kind of skunk", "pln": ["(: cnet_isa_5072b2b649 (IsA hog_nosed_skunk skunk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hog peanut is a kind of vine", "pln": ["(: cnet_isa_0cf86f4ee8 (IsA hog_peanut vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hog plum is a kind of edible fruit", "pln": ["(: cnet_isa_cbcbc93b4b (IsA hog_plum edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hog plum is a kind of fruit tree", "pln": ["(: cnet_isa_396eee69d6 (IsA hog_plum fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hog sucker is a kind of sucker", "pln": ["(: cnet_isa_574904e7d3 (IsA hog_sucker sucker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hogan is a kind of lodge", "pln": ["(: cnet_isa_5f27c147d7 (IsA hogan lodge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hogback is a kind of ridge", "pln": ["(: cnet_isa_f1479e8fe5 (IsA hogback ridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hogchoker is a kind of sole", "pln": ["(: cnet_isa_b27afb7d24 (IsA hogchoker sole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hogfish is a kind of wrasse", "pln": ["(: cnet_isa_f7eb74198e (IsA hogfish wrasse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hogmanay is a kind of new year s eve", "pln": ["(: cnet_isa_61082e6bce (IsA hogmanay new_year_s_eve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hognose bat is a kind of leafnose bat", "pln": ["(: cnet_isa_431b7325bb (IsA hognose_bat leafnose_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hognose snake is a kind of colubrid snake", "pln": ["(: cnet_isa_a438d0ff0c (IsA hognose_snake colubrid_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hogshead is a kind of barrel", "pln": ["(: cnet_isa_ecca7c285b (IsA hogshead barrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hogshead is a kind of british capacity unit", "pln": ["(: cnet_isa_8ed027c496 (IsA hogshead british_capacity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hohenzollern is a kind of dynasty", "pln": ["(: cnet_isa_290b69294a (IsA hohenzollern dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hohenzollern is a kind of royalty", "pln": ["(: cnet_isa_817763d16d (IsA hohenzollern royalty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hohenzollern empire is a kind of reich", "pln": ["(: cnet_isa_04816109ab (IsA hohenzollern_empire reich) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoheria is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_6a50e45500 (IsA hoheria dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoist is a kind of lifting device", "pln": ["(: cnet_isa_8e2e9181e7 (IsA hoist lifting_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hoister is a kind of operator", "pln": ["(: cnet_isa_f7f725e685 (IsA hoister operator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hoka is a kind of native american", "pln": ["(: cnet_isa_36730a591a (IsA hoka native_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hokan is a kind of amerind", "pln": ["(: cnet_isa_d8284f8e6a (IsA hokan amerind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holarrhena is a kind of dicot genus", "pln": ["(: cnet_isa_b07bc2eb7c (IsA holarrhena dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holbrookia is a kind of reptile genus", "pln": ["(: cnet_isa_f2dd1db04c (IsA holbrookia reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holcus is a kind of monocot genus", "pln": ["(: cnet_isa_f192d46eb5 (IsA holcus monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hold is a kind of cell", "pln": ["(: cnet_isa_46a477b6a0 (IsA hold cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hold is a kind of stronghold", "pln": ["(: cnet_isa_dc22b2e8e6 (IsA hold stronghold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hold is a kind of control", "pln": ["(: cnet_isa_1c99e3b4be (IsA hold control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hold down is a kind of limitation", "pln": ["(: cnet_isa_af6c279036 (IsA hold_down limitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holder is a kind of holding device", "pln": ["(: cnet_isa_9f145351e9 (IsA holder holding_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holder is a kind of owner", "pln": ["(: cnet_isa_8e0dd74c99 (IsA holder owner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holding cell is a kind of jail", "pln": ["(: cnet_isa_56886c171e (IsA holding_cell jail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holding company is a kind of company", "pln": ["(: cnet_isa_72ce466c6f (IsA holding_company company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holding device is a kind of device", "pln": ["(: cnet_isa_84eab2c3c3 (IsA holding_device device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "holding paddock is a kind of pen", "pln": ["(: cnet_isa_06169f9e7f (IsA holding_paddock pen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holding pattern is a kind of air lane", "pln": ["(: cnet_isa_a4d7e9c678 (IsA holding_pattern air_lane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holding pattern is a kind of inaction", "pln": ["(: cnet_isa_800a8d887f (IsA holding_pattern inaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holdout is a kind of swindle", "pln": ["(: cnet_isa_e13feb8602 (IsA holdout swindle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holdout is a kind of bargaining", "pln": ["(: cnet_isa_4c9b8dbcd1 (IsA holdout bargaining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holdout is a kind of negotiator", "pln": ["(: cnet_isa_23edee1841 (IsA holdout negotiator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holdover is a kind of official", "pln": ["(: cnet_isa_9b59ce25fa (IsA holdover official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holdup man is a kind of thief", "pln": ["(: cnet_isa_d1909cd5c6 (IsA holdup_man thief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hole is a kind of opening", "pln": ["(: cnet_isa_4679841e2a (IsA hole opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hole is a kind of playing period", "pln": ["(: cnet_isa_e2ff25e9fd (IsA hole playing_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hole is a kind of natural depression", "pln": ["(: cnet_isa_d3d66e7b19 (IsA hole natural_depression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hole is a kind of space", "pln": ["(: cnet_isa_4909499e9f (IsA hole space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hole is a kind of defect", "pln": ["(: cnet_isa_c41b5df011 (IsA hole defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hole card is a kind of asset", "pln": ["(: cnet_isa_a74e3e46b7 (IsA hole_card asset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hole card is a kind of playing card", "pln": ["(: cnet_isa_4b9e02a835 (IsA hole_card playing_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hole in wall is a kind of topographic point", "pln": ["(: cnet_isa_e4f3b1bef4 (IsA hole_in_wall topographic_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holiday is a kind of special day", "pln": ["(: cnet_isa_0c8f33438e (IsA holiday special_day) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holiday is a kind of day", "pln": ["(: cnet_isa_c0c8825185 (IsA holiday day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holiday season is a kind of season", "pln": ["(: cnet_isa_db41e2184c (IsA holiday_season season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holiness is a kind of quality", "pln": ["(: cnet_isa_7ef3253004 (IsA holiness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holism is a kind of theory", "pln": ["(: cnet_isa_6dfe6e6b74 (IsA holism theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holistic medicine is a kind of medical care", "pln": ["(: cnet_isa_06572d2776 (IsA holistic_medicine medical_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holland is a kind of country", "pln": ["(: cnet_isa_ff0ae77109 (IsA holland country) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holland is a kind of country in europe", "pln": ["(: cnet_isa_0690070740 (IsA holland country_in_europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hollandaise is a kind of sauce", "pln": ["(: cnet_isa_d81bd5f9c8 (IsA hollandaise sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hollander is a kind of european", "pln": ["(: cnet_isa_9a29b33b57 (IsA hollander european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hollow is a kind of valley", "pln": ["(: cnet_isa_667c2034ed (IsA hollow valley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hollow is a kind of cavity", "pln": ["(: cnet_isa_1f38c36707 (IsA hollow cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hollowness is a kind of concavity", "pln": ["(: cnet_isa_9835c7b9ab (IsA hollowness concavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hollowness is a kind of emptiness", "pln": ["(: cnet_isa_4dc17a5fa8 (IsA hollowness emptiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hollowware is a kind of silverware", "pln": ["(: cnet_isa_c2ec3e61af (IsA hollowware silverware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "holly is a kind of tree", "pln": ["(: cnet_isa_7448fecc9d (IsA holly tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holly is a kind of angiospermous tree", "pln": ["(: cnet_isa_4abf900d33 (IsA holly angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "holly fern is a kind of fern", "pln": ["(: cnet_isa_56f2579ef6 (IsA holly_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holly leaved cherry is a kind of wild plum", "pln": ["(: cnet_isa_b3f0c503f5 (IsA holly_leaved_cherry wild_plum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hollyhock is a kind of mallow", "pln": ["(: cnet_isa_41e1963269 (IsA hollyhock mallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hollywood is a kind of film industry", "pln": ["(: cnet_isa_0935ebdb08 (IsA hollywood film_industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hollywood is a kind of spirit", "pln": ["(: cnet_isa_f141b0a5cd (IsA hollywood spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hollywood bowl is a kind of famous bowl", "pln": ["(: cnet_isa_db61132853 (IsA hollywood_bowl famous_bowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holm oak is a kind of oak", "pln": ["(: cnet_isa_e878349db8 (IsA holm_oak oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holmium is a kind of metallic element", "pln": ["(: cnet_isa_3621fcd9d7 (IsA holmium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holocaust is a kind of destruction", "pln": ["(: cnet_isa_1ce15761cb (IsA holocaust destruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holocentridae is a kind of fish family", "pln": ["(: cnet_isa_15acb16e9f (IsA holocentridae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holocentrus is a kind of fish genus", "pln": ["(: cnet_isa_68a5dd814e (IsA holocentrus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holocentrus ascensionis is a kind of squirrelfish", "pln": ["(: cnet_isa_8012ac7b83 (IsA holocentrus_ascensionis squirrelfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holocephalan is a kind of cartilaginous fish", "pln": ["(: cnet_isa_f15579f6be (IsA holocephalan cartilaginous_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holocephali is a kind of class", "pln": ["(: cnet_isa_0157c51c4b (IsA holocephali class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hologram is a kind of picture", "pln": ["(: cnet_isa_da4b739cc2 (IsA hologram picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holography is a kind of optic", "pln": ["(: cnet_isa_b9acc6a5bd (IsA holography optic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holometabola is a kind of insect", "pln": ["(: cnet_isa_a26df5547a (IsA holometabola insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holometabolism is a kind of metamorphosis", "pln": ["(: cnet_isa_3e6b6c7ecd (IsA holometabolism metamorphosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "holonym is a kind of word", "pln": ["(: cnet_isa_8ff58b102f (IsA holonym word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "holy innocents day is a kind of christian holy day", "pln": ["(: cnet_isa_7225609846 (IsA holy_innocents_day christian_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holonymy is a kind of semantic relation", "pln": ["(: cnet_isa_1359252f42 (IsA holonymy semantic_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holophyte is a kind of plant", "pln": ["(: cnet_isa_dae2313d17 (IsA holophyte plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holothuria is a kind of echinoderm genus", "pln": ["(: cnet_isa_1243a4006b (IsA holothuria echinoderm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holothuridae is a kind of echinoderm family", "pln": ["(: cnet_isa_54bb234afa (IsA holothuridae echinoderm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holothuroidea is a kind of class", "pln": ["(: cnet_isa_bd4afdfac9 (IsA holothuroidea class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holster is a kind of belt", "pln": ["(: cnet_isa_ce377d1b64 (IsA holster belt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holster is a kind of sheath", "pln": ["(: cnet_isa_f69135537a (IsA holster sheath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holy day of obligation is a kind of christian holy day", "pln": ["(: cnet_isa_01bf94a72c (IsA holy_day_of_obligation christian_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holy eucharist is a kind of sacrament", "pln": ["(: cnet_isa_fb127f913f (IsA holy_eucharist sacrament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holy innocent day is a kind of christian holy day", "pln": ["(: cnet_isa_f53063ee5e (IsA holy_innocent_day christian_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holy of holy is a kind of sacredness", "pln": ["(: cnet_isa_ad7044a784 (IsA holy_of_holy sacredness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holy of holy is a kind of sanctuary", "pln": ["(: cnet_isa_328fedbcd0 (IsA holy_of_holy sanctuary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holy order is a kind of sacrament", "pln": ["(: cnet_isa_4a5e1acbee (IsA holy_order sacrament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holy order is a kind of status", "pln": ["(: cnet_isa_bde72caafb (IsA holy_order status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "holy place is a kind of topographic point", "pln": ["(: cnet_isa_a4965c0d0b (IsA holy_place topographic_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holy roller is a kind of churchgoer", "pln": ["(: cnet_isa_48dffdb8b8 (IsA holy_roller churchgoer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holy roman emperor is a kind of emperor", "pln": ["(: cnet_isa_a84314708c (IsA holy_roman_emperor emperor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holy roman empire is a kind of political unit", "pln": ["(: cnet_isa_fe6f760cb5 (IsA holy_roman_empire political_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holy saturday is a kind of christian holy day", "pln": ["(: cnet_isa_bfee5a263c (IsA holy_saturday christian_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holy water is a kind of water", "pln": ["(: cnet_isa_a21ddded48 (IsA holy_water water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holy week is a kind of week", "pln": ["(: cnet_isa_b486abaee8 (IsA holy_week week) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holy year is a kind of year", "pln": ["(: cnet_isa_03daac5b08 (IsA holy_year year) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "holystone is a kind of sandstone", "pln": ["(: cnet_isa_914864ca88 (IsA holystone sandstone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homaridae is a kind of arthropod family", "pln": ["(: cnet_isa_f4a40b9b17 (IsA homaridae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homarus is a kind of arthropod genus", "pln": ["(: cnet_isa_b6e586002b (IsA homarus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home is a kind of place where one live", "pln": ["(: cnet_isa_769d00dff4 (IsA home place_where_one_live) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home is a kind of where heart", "pln": ["(: cnet_isa_149dd9fd8a (IsA home where_heart) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "home is a kind of where live", "pln": ["(: cnet_isa_298e1ef339 (IsA home where_live) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home is a kind of where people live", "pln": ["(: cnet_isa_498775f75a (IsA home where_people_live) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home is a kind of institution", "pln": ["(: cnet_isa_4e023b3690 (IsA home institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "home is a kind of beginning", "pln": ["(: cnet_isa_642fb51020 (IsA home beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home is a kind of location", "pln": ["(: cnet_isa_8184e3782c (IsA home location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home is a kind of residence", "pln": ["(: cnet_isa_a5fffe14df (IsA home residence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home is a kind of environment", "pln": ["(: cnet_isa_14bf84dabd (IsA home environment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home appliance is a kind of appliance", "pln": ["(: cnet_isa_6c4fb44df0 (IsA home_appliance appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home away from home is a kind of home", "pln": ["(: cnet_isa_aa23ab3f7e (IsA home_away_from_home home) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home banking is a kind of banking", "pln": ["(: cnet_isa_3069d3545b (IsA home_banking banking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home brew is a kind of alcohol", "pln": ["(: cnet_isa_8ffdcab8d9 (IsA home_brew alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home buyer is a kind of buyer", "pln": ["(: cnet_isa_e5df73a731 (IsA home_buyer buyer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "home computer is a kind of computer", "pln": ["(: cnet_isa_50057f5326 (IsA home_computer computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home court is a kind of basketball court", "pln": ["(: cnet_isa_12c5f726c5 (IsA home_court basketball_court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home economic is a kind of social science", "pln": ["(: cnet_isa_801da71b97 (IsA home_economic social_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "home farm is a kind of farm", "pln": ["(: cnet_isa_70e3b00087 (IsA home_farm farm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home folk is a kind of folk", "pln": ["(: cnet_isa_1314f97060 (IsA home_folk folk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home fry is a kind of potato", "pln": ["(: cnet_isa_2c170286c1 (IsA home_fry potato) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home front is a kind of population", "pln": ["(: cnet_isa_9f9fbc57eb (IsA home_front population) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home game is a kind of game", "pln": ["(: cnet_isa_94cefea61d (IsA home_game game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home guard is a kind of guard", "pln": ["(: cnet_isa_f5770da2df (IsA home_guard guard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home help is a kind of domestic", "pln": ["(: cnet_isa_2e2ae2b0d3 (IsA home_help domestic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home invasion is a kind of housebreaking", "pln": ["(: cnet_isa_1e8eca966c (IsA home_invasion housebreaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home loan is a kind of consumer credit", "pln": ["(: cnet_isa_98740861af (IsA home_loan consumer_credit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home loan is a kind of loan", "pln": ["(: cnet_isa_a3f848bd21 (IsA home_loan loan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "home loan bank is a kind of depository financial institution", "pln": ["(: cnet_isa_7b8698eacd (IsA home_loan_bank depository_financial_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home movie is a kind of movie", "pln": ["(: cnet_isa_d961bd3066 (IsA home_movie movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home office is a kind of ministry", "pln": ["(: cnet_isa_e25c8eec16 (IsA home_office ministry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home page is a kind of web page", "pln": ["(: cnet_isa_020519781b (IsA home_page web_page) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home plate is a kind of base", "pln": ["(: cnet_isa_76da0f3cea (IsA home_plate base) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "home port is a kind of port", "pln": ["(: cnet_isa_559edd0eaf (IsA home_port port) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home range is a kind of range", "pln": ["(: cnet_isa_e5174ff3e3 (IsA home_range range) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home room is a kind of classroom", "pln": ["(: cnet_isa_1201bf5d4e (IsA home_room classroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home rule is a kind of self government", "pln": ["(: cnet_isa_4de44b87d4 (IsA home_rule self_government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home stand is a kind of sery", "pln": ["(: cnet_isa_21119f5f9f (IsA home_stand sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home study is a kind of course", "pln": ["(: cnet_isa_c08af8fca4 (IsA home_study course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home theater is a kind of theater", "pln": ["(: cnet_isa_6eab564b71 (IsA home_theater theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "home truth is a kind of truth", "pln": ["(: cnet_isa_ee8259162b (IsA home_truth truth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homebound is a kind of people", "pln": ["(: cnet_isa_164d65afcc (IsA homebound people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homeboy is a kind of acquaintance", "pln": ["(: cnet_isa_d4a399d6c8 (IsA homeboy acquaintance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homeboy is a kind of member", "pln": ["(: cnet_isa_267bb0c7ab (IsA homeboy member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homebuilder is a kind of builder", "pln": ["(: cnet_isa_0a20216ac5 (IsA homebuilder builder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homecoming is a kind of reunion", "pln": ["(: cnet_isa_759e7a3912 (IsA homecoming reunion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homecourt advantage is a kind of advantage", "pln": ["(: cnet_isa_776953b731 (IsA homecourt_advantage advantage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homefolk is a kind of family", "pln": ["(: cnet_isa_f74622588f (IsA homefolk family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homegirl is a kind of member", "pln": ["(: cnet_isa_9209906280 (IsA homegirl member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homeland security is a kind of executive department", "pln": ["(: cnet_isa_ac747c6b61 (IsA homeland_security executive_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homeless is a kind of poor people", "pln": ["(: cnet_isa_6b1d7a10b3 (IsA homeless poor_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homeless is a kind of unfortunate", "pln": ["(: cnet_isa_fa1b18a77b (IsA homeless unfortunate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homelessness is a kind of social and economic problem", "pln": ["(: cnet_isa_d61650cc25 (IsA homelessness social_and_economic_problem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "homelessness is a kind of condition", "pln": ["(: cnet_isa_b3dee2a1dc (IsA homelessness condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homeliness is a kind of appearance", "pln": ["(: cnet_isa_033fdde144 (IsA homeliness appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homemaking is a kind of management", "pln": ["(: cnet_isa_f0dcf5330d (IsA homemaking management) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homeobox is a kind of homeotic gene", "pln": ["(: cnet_isa_f6d1e49505 (IsA homeobox homeotic_gene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homeopath is a kind of practitioner", "pln": ["(: cnet_isa_dbb603cec1 (IsA homeopath practitioner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homeopathy is a kind of medical care", "pln": ["(: cnet_isa_b47d85542e (IsA homeopathy medical_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homeostasis is a kind of equilibrium", "pln": ["(: cnet_isa_8de2015463 (IsA homeostasis equilibrium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homeotic gene is a kind of gene", "pln": ["(: cnet_isa_f5629e885d (IsA homeotic_gene gene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homeowner is a kind of owner", "pln": ["(: cnet_isa_78450fdd76 (IsA homeowner owner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homer is a kind of base hit", "pln": ["(: cnet_isa_954ca9e6bc (IsA homer base_hit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homer is a kind of volume unit", "pln": ["(: cnet_isa_e2d6ab89d3 (IsA homer volume_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homeschooling is a kind of education", "pln": ["(: cnet_isa_f822e69ca9 (IsA homeschooling education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homesickness is a kind of nostalgia", "pln": ["(: cnet_isa_6f5d55d3e0 (IsA homesickness nostalgia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homespun is a kind of fabric", "pln": ["(: cnet_isa_f9202ae8c1 (IsA homespun fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homestead is a kind of dwelling", "pln": ["(: cnet_isa_a567763afd (IsA homestead dwelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homestead is a kind of estate", "pln": ["(: cnet_isa_0110a08180 (IsA homestead estate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homestead is a kind of land", "pln": ["(: cnet_isa_b6707b1db8 (IsA homestead land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homestead law is a kind of law", "pln": ["(: cnet_isa_ed0394bf82 (IsA homestead_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homestretch is a kind of stretch", "pln": ["(: cnet_isa_b2017b542b (IsA homestretch stretch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homestretch is a kind of end", "pln": ["(: cnet_isa_8cccacc12d (IsA homestretch end) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hometown is a kind of town", "pln": ["(: cnet_isa_3dfe309f19 (IsA hometown town) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "homework is a kind of school assignment", "pln": ["(: cnet_isa_009ccbe74d (IsA homework school_assignment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "homiletics is a kind of theology", "pln": ["(: cnet_isa_c28539ca0c (IsA homiletics theology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homework problem is a kind of problem", "pln": ["(: cnet_isa_6afa56b0d3 (IsA homework_problem problem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homicide is a kind of killing", "pln": ["(: cnet_isa_3a700e8ca1 (IsA homicide killing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homiletic is a kind of art", "pln": ["(: cnet_isa_bdbb3f89a4 (IsA homiletic art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homiletic is a kind of theology", "pln": ["(: cnet_isa_5a64a51a8a (IsA homiletic theology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homily is a kind of sermon", "pln": ["(: cnet_isa_0259af729d (IsA homily sermon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homing device is a kind of mechanism", "pln": ["(: cnet_isa_3832bb9eb8 (IsA homing_device mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "homing pigeon is a kind of domestic pigeon", "pln": ["(: cnet_isa_bc0775d2e0 (IsA homing_pigeon domestic_pigeon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homing torpedo is a kind of torpedo", "pln": ["(: cnet_isa_89533771bb (IsA homing_torpedo torpedo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hominid is a kind of primate", "pln": ["(: cnet_isa_70bb8e3534 (IsA hominid primate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hominidae is a kind of mammal family", "pln": ["(: cnet_isa_d44775f559 (IsA hominidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hominoid is a kind of primate", "pln": ["(: cnet_isa_17a4f18351 (IsA hominoid primate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hominoidea is a kind of class", "pln": ["(: cnet_isa_767e495b5d (IsA hominoidea class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hominy is a kind of corn", "pln": ["(: cnet_isa_fe55ea10e5 (IsA hominy corn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "homo is a kind of hominid", "pln": ["(: cnet_isa_2cc618f9b8 (IsA homo hominid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homo erectus is a kind of homo", "pln": ["(: cnet_isa_ab66452744 (IsA homo_erectus homo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homo habilis is a kind of homo", "pln": ["(: cnet_isa_7ee680ab4d (IsA homo_habilis homo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homo heidelbergensis is a kind of primitive", "pln": ["(: cnet_isa_454b73a381 (IsA homo_heidelbergensis primitive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homo rhodesiensis is a kind of homo", "pln": ["(: cnet_isa_a3611e7699 (IsA homo_rhodesiensis homo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homo sapien is a kind of homo", "pln": ["(: cnet_isa_49ac8c8898 (IsA homo_sapien homo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homo sapien sapien is a kind of homo sapien", "pln": ["(: cnet_isa_51fefceee8 (IsA homo_sapien_sapien homo_sapien) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homo soloensis is a kind of homo", "pln": ["(: cnet_isa_6dd3db9ed0 (IsA homo_soloensis homo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homobasidiomycete is a kind of class", "pln": ["(: cnet_isa_489319ba08 (IsA homobasidiomycete class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homocaust is a kind of holocaust", "pln": ["(: cnet_isa_b0b1bcf442 (IsA homocaust holocaust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homocercal fin is a kind of tail fin", "pln": ["(: cnet_isa_40250f5a7b (IsA homocercal_fin tail_fin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homogenate is a kind of material", "pln": ["(: cnet_isa_fb26b21ef8 (IsA homogenate material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homogeneity is a kind of uniformity", "pln": ["(: cnet_isa_e885b52c5d (IsA homogeneity uniformity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "homogeneous polynomial is a kind of polynomial", "pln": ["(: cnet_isa_3a9ff5cf4f (IsA homogeneous_polynomial polynomial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homogenization is a kind of blend", "pln": ["(: cnet_isa_0f2d6f9e54 (IsA homogenization blend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homogenized milk is a kind of milk", "pln": ["(: cnet_isa_0b91aa14c1 (IsA homogenized_milk milk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homogeny is a kind of similarity", "pln": ["(: cnet_isa_a71a6c93e9 (IsA homogeny similarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homograft is a kind of graft", "pln": ["(: cnet_isa_cb97301852 (IsA homograft graft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homograph is a kind of homonym", "pln": ["(: cnet_isa_1d2319021c (IsA homograph homonym) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homogyne is a kind of asterid dicot genus", "pln": ["(: cnet_isa_a4e098afc7 (IsA homogyne asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homoiotherm is a kind of animal", "pln": ["(: cnet_isa_7f20627dc8 (IsA homoiotherm animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homology is a kind of similarity", "pln": ["(: cnet_isa_ea1e1a1a66 (IsA homology similarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homolosine projection is a kind of equal area projection", "pln": ["(: cnet_isa_4a3554c512 (IsA homolosine_projection equal_area_projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homomorphism is a kind of similarity", "pln": ["(: cnet_isa_e443b74c24 (IsA homomorphism similarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homona is a kind of arthropod genus", "pln": ["(: cnet_isa_5cdd13e70d (IsA homona arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homonym is a kind of word", "pln": ["(: cnet_isa_582e666901 (IsA homonym word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homonymy is a kind of linguistic relation", "pln": ["(: cnet_isa_95fd37f833 (IsA homonymy linguistic_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homophobe is a kind of bigot", "pln": ["(: cnet_isa_5673306ba7 (IsA homophobe bigot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homophobia is a kind of bia", "pln": ["(: cnet_isa_58bf276d7e (IsA homophobia bia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homophone is a kind of homonym", "pln": ["(: cnet_isa_02e2ae9cfb (IsA homophone homonym) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homophony is a kind of part music", "pln": ["(: cnet_isa_cc3f51e435 (IsA homophony part_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homophony is a kind of pronunciation", "pln": ["(: cnet_isa_9e2401fca2 (IsA homophony pronunciation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homoptera is a kind of animal order", "pln": ["(: cnet_isa_8fe5fbce92 (IsA homoptera animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "homopterous insect is a kind of insect", "pln": ["(: cnet_isa_c292560e00 (IsA homopterous_insect insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "honduras rosewood is a kind of rosewood", "pln": ["(: cnet_isa_241b1c2170 (IsA honduras_rosewood rosewood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homosexual is a kind of person", "pln": ["(: cnet_isa_ec127eea8c (IsA homosexual person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homosexuality is a kind of sexual orientation", "pln": ["(: cnet_isa_578e84f58e (IsA homosexuality sexual_orientation) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homosexuality is a kind of sexual activity", "pln": ["(: cnet_isa_a1a9393be1 (IsA homosexuality sexual_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homospory is a kind of monogenesis", "pln": ["(: cnet_isa_de066d2eab (IsA homospory monogenesis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homozygosity is a kind of state", "pln": ["(: cnet_isa_9e6a38786c (IsA homozygosity state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homozygote is a kind of zygote", "pln": ["(: cnet_isa_0228204823 (IsA homozygote zygote) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "homunculus is a kind of person", "pln": ["(: cnet_isa_0220ce4041 (IsA homunculus person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honda is a kind of car", "pln": ["(: cnet_isa_212b44bbeb (IsA honda car) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honduran is a kind of central american", "pln": ["(: cnet_isa_6ee9b00744 (IsA honduran central_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honduran monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_26877d08b4 (IsA honduran_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hondura mahogany is a kind of mahogany", "pln": ["(: cnet_isa_efb1c870c5 (IsA hondura_mahogany mahogany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hondura rosewood is a kind of rosewood", "pln": ["(: cnet_isa_4db66c276f (IsA hondura_rosewood rosewood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hone is a kind of whetstone", "pln": ["(: cnet_isa_a6c3f81ed8 (IsA hone whetstone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honest woman is a kind of wife", "pln": ["(: cnet_isa_2b67747f72 (IsA honest_woman wife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honesty is a kind of positive trait", "pln": ["(: cnet_isa_a355a3287f (IsA honesty positive_trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "honesty is a kind of virtue", "pln": ["(: cnet_isa_b03dae9dec (IsA honesty virtue) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honesty is a kind of righteousness", "pln": ["(: cnet_isa_21085eb363 (IsA honesty righteousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honesty is a kind of herb", "pln": ["(: cnet_isa_c287a66096 (IsA honesty herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honey is a kind of thick liquid", "pln": ["(: cnet_isa_1474d0344d (IsA honey thick_liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honey is a kind of sweetening", "pln": ["(: cnet_isa_394764c3d1 (IsA honey sweetening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honey bell is a kind of shrub", "pln": ["(: cnet_isa_a0be0db25c (IsA honey_bell shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honey bun is a kind of sweet roll", "pln": ["(: cnet_isa_4a98b37c08 (IsA honey_bun sweet_roll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honey buzzard is a kind of hawk", "pln": ["(: cnet_isa_e630274e28 (IsA honey_buzzard hawk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honey cake is a kind of cake", "pln": ["(: cnet_isa_355d0f5353 (IsA honey_cake cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honey crisp is a kind of candy", "pln": ["(: cnet_isa_81c055e215 (IsA honey_crisp candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honey eater is a kind of oscine", "pln": ["(: cnet_isa_e9da4b59f9 (IsA honey_eater oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honey guide is a kind of piciform bird", "pln": ["(: cnet_isa_554ecd2c60 (IsA honey_guide piciform_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honey locust is a kind of locust tree", "pln": ["(: cnet_isa_b0a043276e (IsA honey_locust locust_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honey mesquite is a kind of mesquite", "pln": ["(: cnet_isa_de3ab64ae7 (IsA honey_mesquite mesquite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honey mushroom is a kind of agaric", "pln": ["(: cnet_isa_38e3e3585e (IsA honey_mushroom agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honey plant is a kind of hoya", "pln": ["(: cnet_isa_7e1a0f945c (IsA honey_plant hoya) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honeybee is a kind of bee", "pln": ["(: cnet_isa_e5cc299b1b (IsA honeybee bee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honeycomb is a kind of framework", "pln": ["(: cnet_isa_0971ccb92e (IsA honeycomb framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "honeycomb is a kind of structure", "pln": ["(: cnet_isa_265012c288 (IsA honeycomb structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honeycomb tripe is a kind of tripe", "pln": ["(: cnet_isa_faf05f5fdf (IsA honeycomb_tripe tripe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honeycreeper is a kind of finch", "pln": ["(: cnet_isa_9b517372cf (IsA honeycreeper finch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honeycreeper is a kind of oscine", "pln": ["(: cnet_isa_9994a9b635 (IsA honeycreeper oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honeydew is a kind of winter melon", "pln": ["(: cnet_isa_18481a3e1c (IsA honeydew winter_melon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honeyflower is a kind of protea", "pln": ["(: cnet_isa_e49ec8f632 (IsA honeyflower protea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honeyflower is a kind of shrub", "pln": ["(: cnet_isa_d5b2745d81 (IsA honeyflower shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honeymoon is a kind of time period", "pln": ["(: cnet_isa_b3a2a6a836 (IsA honeymoon time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honeymoon is a kind of vacation", "pln": ["(: cnet_isa_8f7b555579 (IsA honeymoon vacation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honeymoon resort is a kind of resort", "pln": ["(: cnet_isa_9f590945c3 (IsA honeymoon_resort resort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honeypot is a kind of protea", "pln": ["(: cnet_isa_7781c2b15e (IsA honeypot protea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honeysuckle is a kind of banksia", "pln": ["(: cnet_isa_651a8f9633 (IsA honeysuckle banksia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honeysuckle is a kind of shrub", "pln": ["(: cnet_isa_bc2aa024a0 (IsA honeysuckle shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hong kong dollar is a kind of dollar", "pln": ["(: cnet_isa_1689ffce30 (IsA hong_kong_dollar dollar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hongkong is a kind of in china", "pln": ["(: cnet_isa_d3f49d0dcc (IsA hongkong in_china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honk is a kind of cry", "pln": ["(: cnet_isa_6807f17ac7 (IsA honk cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honker is a kind of goose", "pln": ["(: cnet_isa_ee962819d3 (IsA honker goose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honker is a kind of driver", "pln": ["(: cnet_isa_d76b0142aa (IsA honker driver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honkytonk is a kind of cabaret", "pln": ["(: cnet_isa_b0c90dc66b (IsA honkytonk cabaret) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "honor is a kind of virtue", "pln": ["(: cnet_isa_fd6dd23905 (IsA honor virtue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honor is a kind of righteousness", "pln": ["(: cnet_isa_24f2c3efd1 (IsA honor righteousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "honor is a kind of standing", "pln": ["(: cnet_isa_780d2cff70 (IsA honor standing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honor guard is a kind of escort", "pln": ["(: cnet_isa_80e3a1828f (IsA honor_guard escort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honor killing is a kind of homicide", "pln": ["(: cnet_isa_1fb49c1d28 (IsA honor_killing homicide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "honor system is a kind of system", "pln": ["(: cnet_isa_f1b9442e3d (IsA honor_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honorable discharge is a kind of dismissal", "pln": ["(: cnet_isa_1c578724e6 (IsA honorable_discharge dismissal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honorableness is a kind of righteousness", "pln": ["(: cnet_isa_5a402226e8 (IsA honorableness righteousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honorarium is a kind of reward", "pln": ["(: cnet_isa_2209ff83a2 (IsA honorarium reward) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honorary degree is a kind of academic degree", "pln": ["(: cnet_isa_bbce6ce9ad (IsA honorary_degree academic_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honoree is a kind of recipient", "pln": ["(: cnet_isa_ae68b6a7d2 (IsA honoree recipient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honorific is a kind of formulation", "pln": ["(: cnet_isa_defdb7670e (IsA honorific formulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honoring is a kind of conformity", "pln": ["(: cnet_isa_ad4b1a18b9 (IsA honoring conformity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "honour is a kind of academic degree", "pln": ["(: cnet_isa_298c631a0e (IsA honour academic_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hooch is a kind of alcohol", "pln": ["(: cnet_isa_6d7a3d08d6 (IsA hooch alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hood is a kind of covering", "pln": ["(: cnet_isa_fa1b6d3b4d (IsA hood covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hood is a kind of headdress", "pln": ["(: cnet_isa_f2c3e04058 (IsA hood headdress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hood is a kind of protective covering", "pln": ["(: cnet_isa_f39b3f98d5 (IsA hood protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hood is a kind of roof", "pln": ["(: cnet_isa_81fe8ef8b1 (IsA hood roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hood is a kind of neighborhood", "pln": ["(: cnet_isa_341de6b4c4 (IsA hood neighborhood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hood is a kind of vicinity", "pln": ["(: cnet_isa_52c64948ae (IsA hood vicinity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hood is a kind of criminal", "pln": ["(: cnet_isa_ecd1cb5d7f (IsA hood criminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hood is a kind of external body part", "pln": ["(: cnet_isa_f57203fd29 (IsA hood external_body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hood latch is a kind of catch", "pln": ["(: cnet_isa_7d901e513f (IsA hood_latch catch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hood ornament is a kind of decoration", "pln": ["(: cnet_isa_2e651ec9c2 (IsA hood_ornament decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hooded lady tress is a kind of lady tress", "pln": ["(: cnet_isa_d625cd4fbd (IsA hooded_lady_tress lady_tress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hooded merganser is a kind of merganser", "pln": ["(: cnet_isa_f1feb921a1 (IsA hooded_merganser merganser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hooded pitcher plant is a kind of pitcher plant", "pln": ["(: cnet_isa_255de8f325 (IsA hooded_pitcher_plant pitcher_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hooded seal is a kind of earless seal", "pln": ["(: cnet_isa_23e5a02364 (IsA hooded_seal earless_seal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hooded skunk is a kind of skunk", "pln": ["(: cnet_isa_68fa0d5f26 (IsA hooded_skunk skunk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoodoo is a kind of object", "pln": ["(: cnet_isa_11aeab6568 (IsA hoodoo object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoodoo is a kind of column", "pln": ["(: cnet_isa_27e77423a6 (IsA hoodoo column) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoodoo is a kind of priest", "pln": ["(: cnet_isa_01e3ffae65 (IsA hoodoo priest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoodoo is a kind of voodoo", "pln": ["(: cnet_isa_fc288f1aa7 (IsA hoodoo voodoo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoof is a kind of animal foot", "pln": ["(: cnet_isa_761201bb37 (IsA hoof animal_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoof is a kind of horny structure", "pln": ["(: cnet_isa_b81305dc35 (IsA hoof horny_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoofer is a kind of dancer", "pln": ["(: cnet_isa_94f1e67d3b (IsA hoofer dancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoofprint is a kind of mark", "pln": ["(: cnet_isa_595331be47 (IsA hoofprint mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hook is a kind of golf stroke", "pln": ["(: cnet_isa_9700861586 (IsA hook golf_stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hook is a kind of punch", "pln": ["(: cnet_isa_5592215fad (IsA hook punch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hook is a kind of catch", "pln": ["(: cnet_isa_13b3145d69 (IsA hook catch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hook is a kind of implement", "pln": ["(: cnet_isa_6833b409d4 (IsA hook implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hook is a kind of mechanical device", "pln": ["(: cnet_isa_3b0fee4bf0 (IsA hook mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hook is a kind of curve", "pln": ["(: cnet_isa_e6af616fe8 (IsA hook curve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hook and eye is a kind of fastener", "pln": ["(: cnet_isa_8da14a0e91 (IsA hook_and_eye fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hook shot is a kind of basketball shot", "pln": ["(: cnet_isa_6306fdebfe (IsA hook_shot basketball_shot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hook wrench is a kind of wrench", "pln": ["(: cnet_isa_1fb6c3a097 (IsA hook_wrench wrench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hookah is a kind of pipe", "pln": ["(: cnet_isa_6e7efc217d (IsA hookah pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hooke s law is a kind of law", "pln": ["(: cnet_isa_b04992f3c6 (IsA hooke_s_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hooker s green is a kind of pigment", "pln": ["(: cnet_isa_061caf1e61 (IsA hooker_s_green pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hooker s onion is a kind of wild onion", "pln": ["(: cnet_isa_5d0375a096 (IsA hooker_s_onion wild_onion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hooker s orchid is a kind of fringed orchis", "pln": ["(: cnet_isa_e0ce433336 (IsA hooker_s_orchid fringed_orchis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hooker is a kind of golfer", "pln": ["(: cnet_isa_3fdc4028fc (IsA hooker golfer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hooker is a kind of athlete", "pln": ["(: cnet_isa_0d757b03ef (IsA hooker athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hook is a kind of hand", "pln": ["(: cnet_isa_a62f2291ca (IsA hook hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hookup is a kind of connection", "pln": ["(: cnet_isa_72dcf4bcfe (IsA hookup connection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hookup is a kind of system", "pln": ["(: cnet_isa_c7ef0970b4 (IsA hookup system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hookworm is a kind of nematode", "pln": ["(: cnet_isa_2f6a371e8b (IsA hookworm nematode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hookworm is a kind of helminthiasis", "pln": ["(: cnet_isa_899affce29 (IsA hookworm helminthiasis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoop is a kind of band", "pln": ["(: cnet_isa_699325bfc9 (IsA hoop band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoop is a kind of skeleton", "pln": ["(: cnet_isa_0a93062ab7 (IsA hoop skeleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoop pine is a kind of araucaria", "pln": ["(: cnet_isa_15d321e27b (IsA hoop_pine araucaria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoop snake is a kind of colubrid snake", "pln": ["(: cnet_isa_4ea16502a3 (IsA hoop_snake colubrid_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hoopoe is a kind of coraciiform bird", "pln": ["(: cnet_isa_54fc8cb96a (IsA hoopoe coraciiform_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoopskirt is a kind of skirt", "pln": ["(: cnet_isa_269399067d (IsA hoopskirt skirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hooray henry is a kind of man", "pln": ["(: cnet_isa_423fbba078 (IsA hooray_henry man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoosegow is a kind of jail", "pln": ["(: cnet_isa_daf8338bac (IsA hoosegow jail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoosier is a kind of american", "pln": ["(: cnet_isa_152c4ff200 (IsA hoosier american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hoot is a kind of cry", "pln": ["(: cnet_isa_a4d07fa045 (IsA hoot cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoot owl is a kind of owl", "pln": ["(: cnet_isa_19f608731d (IsA hoot_owl owl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hop is a kind of jump", "pln": ["(: cnet_isa_9e42602501 (IsA hop jump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hop is a kind of dance", "pln": ["(: cnet_isa_99be87a5f1 (IsA hop dance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hop is a kind of vine", "pln": ["(: cnet_isa_67f66e7409 (IsA hop vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hop clover is a kind of clover", "pln": ["(: cnet_isa_fcc99b4056 (IsA hop_clover clover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hop garden is a kind of garden", "pln": ["(: cnet_isa_61be2f1225 (IsA hop_garden garden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hop hornbeam is a kind of tree", "pln": ["(: cnet_isa_9e4f2846b4 (IsA hop_hornbeam tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hop picker is a kind of machine", "pln": ["(: cnet_isa_0cc68d3ca7 (IsA hop_picker machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hop pole is a kind of post", "pln": ["(: cnet_isa_8f5ad38e1d (IsA hop_pole post) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hope is a kind of feeling", "pln": ["(: cnet_isa_588df1ca26 (IsA hope feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hope is a kind of theological virtue", "pln": ["(: cnet_isa_2c26c54ffb (IsA hope theological_virtue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hope is a kind of anticipation", "pln": ["(: cnet_isa_8e824ece71 (IsA hope anticipation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hope is a kind of person", "pln": ["(: cnet_isa_6abb38b5e7 (IsA hope person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hope chest is a kind of chest", "pln": ["(: cnet_isa_ef7a963473 (IsA hope_chest chest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hopefulness is a kind of hope", "pln": ["(: cnet_isa_10edd77917 (IsA hopefulness hope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hopefulness is a kind of condition", "pln": ["(: cnet_isa_9d7b5bd266 (IsA hopefulness condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hopelessness is a kind of despair", "pln": ["(: cnet_isa_b24c220da1 (IsA hopelessness despair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoper is a kind of person", "pln": ["(: cnet_isa_6a59439e67 (IsA hoper person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hopi is a kind of tribe of native american", "pln": ["(: cnet_isa_343f8ac11f (IsA hopi tribe_of_native_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hopi is a kind of shoshonean", "pln": ["(: cnet_isa_33e4079410 (IsA hopi shoshonean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hopi is a kind of pueblo", "pln": ["(: cnet_isa_1b5f632928 (IsA hopi pueblo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hopi is a kind of shoshoni", "pln": ["(: cnet_isa_12653e6a59 (IsA hopi shoshoni) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hopper is a kind of receptacle", "pln": ["(: cnet_isa_505c999255 (IsA hopper receptacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hopper is a kind of bounder", "pln": ["(: cnet_isa_d9c3cafaa2 (IsA hopper bounder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hopsacking is a kind of fabric", "pln": ["(: cnet_isa_4542aaaa95 (IsA hopsacking fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hopscotch is a kind of child s game", "pln": ["(: cnet_isa_d7df4ca518 (IsA hopscotch child_s_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horatian ode is a kind of ode", "pln": ["(: cnet_isa_f295e46095 (IsA horatian_ode ode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horde is a kind of community", "pln": ["(: cnet_isa_bc91480184 (IsA horde community) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horde is a kind of multitude", "pln": ["(: cnet_isa_c2d4aa74df (IsA horde multitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hordeum is a kind of monocot genus", "pln": ["(: cnet_isa_dfa30e8727 (IsA hordeum monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horehound is a kind of candy", "pln": ["(: cnet_isa_db0be10351 (IsA horehound candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "horehound is a kind of herb", "pln": ["(: cnet_isa_ae32affeff (IsA horehound herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horizon is a kind of scope", "pln": ["(: cnet_isa_d87ff1c3e5 (IsA horizon scope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horizon is a kind of great circle", "pln": ["(: cnet_isa_afff662fb1 (IsA horizon great_circle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horizon is a kind of line", "pln": ["(: cnet_isa_11d7ff0d93 (IsA horizon line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horizon is a kind of stratum", "pln": ["(: cnet_isa_f29727ede4 (IsA horizon stratum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horizontal is a kind of orientation", "pln": ["(: cnet_isa_87df020e3d (IsA horizontal orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horizontal bar is a kind of gymnastic apparatus", "pln": ["(: cnet_isa_89f5b6415e (IsA horizontal_bar gymnastic_apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horizontal integration is a kind of consolidation", "pln": ["(: cnet_isa_74e2944805 (IsA horizontal_integration consolidation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horizontal parallax is a kind of geocentric parallax", "pln": ["(: cnet_isa_6116b76b85 (IsA horizontal_parallax geocentric_parallax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "horizontal section is a kind of mechanical drawing", "pln": ["(: cnet_isa_09aa13753a (IsA horizontal_section mechanical_drawing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horizontal stabilizer is a kind of airfoil", "pln": ["(: cnet_isa_9b7e5bcabe (IsA horizontal_stabilizer airfoil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horizontal surface is a kind of surface", "pln": ["(: cnet_isa_6ec10d0186 (IsA horizontal_surface surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horizontal tail is a kind of stabilizer", "pln": ["(: cnet_isa_d02fd1d1b6 (IsA horizontal_tail stabilizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horizontality is a kind of position", "pln": ["(: cnet_isa_bfd82a2ab8 (IsA horizontality position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hormone is a kind of secretion", "pln": ["(: cnet_isa_44629d75c0 (IsA hormone secretion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hormone replacement therapy is a kind of therapy", "pln": ["(: cnet_isa_097b2dc320 (IsA hormone_replacement_therapy therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horn is a kind of musical instrument", "pln": ["(: cnet_isa_aff9c5dcce (IsA horn musical_instrument) (STV 1.0 0.9748))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horn is a kind of process", "pln": ["(: cnet_isa_5775cf6335 (IsA horn process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horn is a kind of alarm", "pln": ["(: cnet_isa_d07d1bca90 (IsA horn alarm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horn is a kind of device", "pln": ["(: cnet_isa_90046e9e86 (IsA horn device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horn is a kind of pommel", "pln": ["(: cnet_isa_04f9a24333 (IsA horn pommel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horn is a kind of noisemaker", "pln": ["(: cnet_isa_295ea695cf (IsA horn noisemaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horn is a kind of animal material", "pln": ["(: cnet_isa_ffcc0558cb (IsA horn animal_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horn button is a kind of push button", "pln": ["(: cnet_isa_226cc88c29 (IsA horn_button push_button) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "horn fly is a kind of fly", "pln": ["(: cnet_isa_d1a71d12ed (IsA horn_fly fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horn of plenty is a kind of symbol", "pln": ["(: cnet_isa_beb2c47381 (IsA horn_of_plenty symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "horn poppy is a kind of flower", "pln": ["(: cnet_isa_2f74941661 (IsA horn_poppy flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hornbeam is a kind of tree", "pln": ["(: cnet_isa_b121143ce2 (IsA hornbeam tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hornbill is a kind of coraciiform bird", "pln": ["(: cnet_isa_9aeaf010b0 (IsA hornbill coraciiform_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hornblende is a kind of amphibole", "pln": ["(: cnet_isa_1d2c8fc5fc (IsA hornblende amphibole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hornbook is a kind of primer", "pln": ["(: cnet_isa_f2e87d43f6 (IsA hornbook primer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horned chameleon is a kind of chameleon", "pln": ["(: cnet_isa_515eaed282 (IsA horned_chameleon chameleon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horned lizard is a kind of iguanid", "pln": ["(: cnet_isa_f0508754ca (IsA horned_lizard iguanid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horned owl is a kind of owl", "pln": ["(: cnet_isa_9d41b3b9fb (IsA horned_owl owl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "horned pondweed is a kind of pondweed", "pln": ["(: cnet_isa_38face7f58 (IsA horned_pondweed pondweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horned pout is a kind of bullhead", "pln": ["(: cnet_isa_89aaf7dc44 (IsA horned_pout bullhead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horned puffin is a kind of puffin", "pln": ["(: cnet_isa_d2fed18ccd (IsA horned_puffin puffin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horned screamer is a kind of screamer", "pln": ["(: cnet_isa_3564963eff (IsA horned_screamer screamer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horned violet is a kind of viola", "pln": ["(: cnet_isa_070e22cb1c (IsA horned_violet viola) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horned viper is a kind of viper", "pln": ["(: cnet_isa_996d7b84fa (IsA horned_viper viper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "horned whiff is a kind of whiff", "pln": ["(: cnet_isa_359ed7cff4 (IsA horned_whiff whiff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horneophyton is a kind of fern genus", "pln": ["(: cnet_isa_3badcf6b61 (IsA horneophyton fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horner s syndrome is a kind of syndrome", "pln": ["(: cnet_isa_8e0e62a643 (IsA horner_s_syndrome syndrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hornet s nest is a kind of situation", "pln": ["(: cnet_isa_a49c7b3c87 (IsA hornet_s_nest situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hornet is a kind of vespid", "pln": ["(: cnet_isa_56182c7d9c (IsA hornet vespid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hornfel is a kind of metamorphic rock", "pln": ["(: cnet_isa_5782b4382d (IsA hornfel metamorphic_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horniness is a kind of sexual arousal", "pln": ["(: cnet_isa_8edff7279c (IsA horniness sexual_arousal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hornist is a kind of musician", "pln": ["(: cnet_isa_1a22820d98 (IsA hornist musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hornpipe is a kind of folk dancing", "pln": ["(: cnet_isa_d1175d87a6 (IsA hornpipe folk_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hornpipe is a kind of single reed instrument", "pln": ["(: cnet_isa_fedfadbd97 (IsA hornpipe single_reed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hornpipe is a kind of dance music", "pln": ["(: cnet_isa_bede0815c4 (IsA hornpipe dance_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hornwort is a kind of aquatic plant", "pln": ["(: cnet_isa_16b0f087e6 (IsA hornwort aquatic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hornwort is a kind of liverwort", "pln": ["(: cnet_isa_e6e89ce403 (IsA hornwort liverwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horny structure is a kind of structure", "pln": ["(: cnet_isa_51f43e7127 (IsA horny_structure structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horology is a kind of art", "pln": ["(: cnet_isa_f8acd55425 (IsA horology art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horoscope is a kind of diagram", "pln": ["(: cnet_isa_fdc5c6e20a (IsA horoscope diagram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horoscope is a kind of prediction", "pln": ["(: cnet_isa_3fb5e7bb57 (IsA horoscope prediction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horoscopy is a kind of astrology", "pln": ["(: cnet_isa_f6f74a5a78 (IsA horoscopy astrology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horror is a kind of thing", "pln": ["(: cnet_isa_12ab96cfe6 (IsA horror thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horror is a kind of fear", "pln": ["(: cnet_isa_18725dbd7b (IsA horror fear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hor d oeuvre is a kind of appetizer", "pln": ["(: cnet_isa_a9f39c8d33 (IsA hor_d_oeuvre appetizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horse s foot is a kind of hoof", "pln": ["(: cnet_isa_2600c0d83a (IsA horse_s_foot hoof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horse is a kind of equine", "pln": ["(: cnet_isa_639c4da65c (IsA horse equine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horse is a kind of gymnastic apparatus", "pln": ["(: cnet_isa_63907a43dc (IsA horse gymnastic_apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horse balm is a kind of herb", "pln": ["(: cnet_isa_cec588fb0a (IsA horse_balm herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "horse botfly is a kind of botfly", "pln": ["(: cnet_isa_15b8ae0671 (IsA horse_botfly botfly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horse breeding is a kind of breeding", "pln": ["(: cnet_isa_e666cc9272 (IsA horse_breeding breeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horse cart is a kind of cart", "pln": ["(: cnet_isa_313c5555fc (IsA horse_cart cart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horse cassia is a kind of cassia", "pln": ["(: cnet_isa_88e40bb376 (IsA horse_cassia cassia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horse cavalry is a kind of cavalry", "pln": ["(: cnet_isa_635251df9d (IsA horse_cavalry cavalry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horse chestnut is a kind of angiospermous tree", "pln": ["(: cnet_isa_a961f85104 (IsA horse_chestnut angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horse doctor is a kind of veterinarian", "pln": ["(: cnet_isa_70e298a223 (IsA horse_doctor veterinarian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horse drawn vehicle is a kind of wheeled vehicle", "pln": ["(: cnet_isa_ca2bd2a9d3 (IsA horse_drawn_vehicle wheeled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horse gram is a kind of legume", "pln": ["(: cnet_isa_6edc998b66 (IsA horse_gram legume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "horse jumping is a kind of olympic sport", "pln": ["(: cnet_isa_2a9e8b4bc2 (IsA horse_jumping olympic_sport) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horse latitude is a kind of latitude", "pln": ["(: cnet_isa_1fbb444e7e (IsA horse_latitude latitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horse mackerel is a kind of scad", "pln": ["(: cnet_isa_21f7deb6bf (IsA horse_mackerel scad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horse manure is a kind of manure", "pln": ["(: cnet_isa_4a276be518 (IsA horse_manure manure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "horse mushroom is a kind of agaric", "pln": ["(: cnet_isa_4bbbbc5427 (IsA horse_mushroom agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horse nettle is a kind of nightshade", "pln": ["(: cnet_isa_a7e251d9b9 (IsA horse_nettle nightshade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horse pistol is a kind of pistol", "pln": ["(: cnet_isa_71893ff247 (IsA horse_pistol pistol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horse race is a kind of race", "pln": ["(: cnet_isa_ef6973d674 (IsA horse_race race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horse racing is a kind of racing", "pln": ["(: cnet_isa_7bcc5433a4 (IsA horse_racing racing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horse riding is a kind of olympic sport", "pln": ["(: cnet_isa_3e16abbe34 (IsA horse_riding olympic_sport) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horse tick is a kind of louse fly", "pln": ["(: cnet_isa_f50288b8b4 (IsA horse_tick louse_fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horse trade is a kind of barter", "pln": ["(: cnet_isa_105eeb9550 (IsA horse_trade barter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horse trader is a kind of trader", "pln": ["(: cnet_isa_5b6aac1d7b (IsA horse_trader trader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horse trading is a kind of negotiation", "pln": ["(: cnet_isa_b928051b34 (IsA horse_trading negotiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horse trail is a kind of trail", "pln": ["(: cnet_isa_d4a77a70c8 (IsA horse_trail trail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horse wrangler is a kind of cowboy", "pln": ["(: cnet_isa_1ca839e0da (IsA horse_wrangler cowboy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horseback is a kind of body part", "pln": ["(: cnet_isa_3bd16b25d0 (IsA horseback body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horseback riding is a kind of good way to enjoy nature", "pln": ["(: cnet_isa_50d51585da (IsA horseback_riding good_way_to_enjoy_nature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horsebox is a kind of conveyance", "pln": ["(: cnet_isa_5196c0f4d4 (IsA horsebox conveyance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horsecar is a kind of streetcar", "pln": ["(: cnet_isa_70c24429cc (IsA horsecar streetcar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horsecloth is a kind of caparison", "pln": ["(: cnet_isa_7750947e58 (IsA horsecloth caparison) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "horsefly is a kind of gadfly", "pln": ["(: cnet_isa_bf26e06b1d (IsA horsefly gadfly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "horses is a kind of not humans", "pln": ["(: cnet_isa_95958c74e4 (IsA horses not_humans) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horsehair is a kind of fabric", "pln": ["(: cnet_isa_b759ca130f (IsA horsehair fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horsehair is a kind of animal fiber", "pln": ["(: cnet_isa_36ebb363f7 (IsA horsehair animal_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horsehair lichen is a kind of lichen", "pln": ["(: cnet_isa_0ed323da41 (IsA horsehair_lichen lichen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horsehair wig is a kind of wig", "pln": ["(: cnet_isa_75f6000129 (IsA horsehair_wig wig) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horsehide is a kind of leather", "pln": ["(: cnet_isa_cbd9aa3081 (IsA horsehide leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horseleech is a kind of leech", "pln": ["(: cnet_isa_553a8738b7 (IsA horseleech leech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horseless carriage is a kind of car", "pln": ["(: cnet_isa_267a2a9334 (IsA horseless_carriage car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horseman is a kind of animal fancier", "pln": ["(: cnet_isa_0977b4463c (IsA horseman animal_fancier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horseman is a kind of rider", "pln": ["(: cnet_isa_987928ba55 (IsA horseman rider) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horsemanship is a kind of skill", "pln": ["(: cnet_isa_63d0a7e10c (IsA horsemanship skill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horsemeat is a kind of meat", "pln": ["(: cnet_isa_7264b07ae0 (IsA horsemeat meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horsemint is a kind of mint", "pln": ["(: cnet_isa_8f442e23e0 (IsA horsemint mint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horsemint is a kind of monarda", "pln": ["(: cnet_isa_65fc0b5bfa (IsA horsemint monarda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horseplay is a kind of play", "pln": ["(: cnet_isa_637815da05 (IsA horseplay play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horsepond is a kind of pond", "pln": ["(: cnet_isa_1033d2b538 (IsA horsepond pond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horsepower is a kind of power unit", "pln": ["(: cnet_isa_83876d8477 (IsA horsepower power_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horsepower hour is a kind of work unit", "pln": ["(: cnet_isa_f10827916a (IsA horsepower_hour work_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horseradish is a kind of condiment", "pln": ["(: cnet_isa_4702c3e0a2 (IsA horseradish condiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horseradish is a kind of herb", "pln": ["(: cnet_isa_5743c083c3 (IsA horseradish herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horseradish is a kind of root", "pln": ["(: cnet_isa_d4838709e8 (IsA horseradish root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horseradish peroxidase is a kind of peroxidase", "pln": ["(: cnet_isa_b919f64442 (IsA horseradish_peroxidase peroxidase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horseradish sauce is a kind of sauce", "pln": ["(: cnet_isa_1190a7d66a (IsA horseradish_sauce sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hors is a kind of domesticated animal", "pln": ["(: cnet_isa_3b3771e0a7 (IsA hors domesticated_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hors is a kind of expensive pet", "pln": ["(: cnet_isa_0f6efefa59 (IsA hors expensive_pet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hors is a kind of not human", "pln": ["(: cnet_isa_e906a14ce1 (IsA hors not_human) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horseshoe is a kind of game equipment", "pln": ["(: cnet_isa_333cb96583 (IsA horseshoe game_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horseshoe is a kind of plate", "pln": ["(: cnet_isa_7ad4bb08d0 (IsA horseshoe plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "horseshoe bat is a kind of leafnose bat", "pln": ["(: cnet_isa_f6d6fbcc51 (IsA horseshoe_bat leafnose_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horseshoe crab is a kind of arthropod", "pln": ["(: cnet_isa_ffaedcb55f (IsA horseshoe_crab arthropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "horseshoe vetch is a kind of subshrub", "pln": ["(: cnet_isa_fa5ebfac5d (IsA horseshoe_vetch subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horseshoe whipsnake is a kind of racer", "pln": ["(: cnet_isa_8cf97c9b18 (IsA horseshoe_whipsnake racer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horseshow is a kind of show", "pln": ["(: cnet_isa_11858c47e7 (IsA horseshow show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "horsetail is a kind of fern ally", "pln": ["(: cnet_isa_aaaad21f7e (IsA horsetail fern_ally) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horseweed is a kind of weed", "pln": ["(: cnet_isa_0ac71eb7e6 (IsA horseweed weed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "horsewhip is a kind of whip", "pln": ["(: cnet_isa_ed33637188 (IsA horsewhip whip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horsewhipping is a kind of whipping", "pln": ["(: cnet_isa_b0d7b999af (IsA horsewhipping whipping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "horsewoman is a kind of horseman", "pln": ["(: cnet_isa_56b1c7c22e (IsA horsewoman horseman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "horst is a kind of crust", "pln": ["(: cnet_isa_9c50a23a18 (IsA horst crust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horsy set is a kind of set", "pln": ["(: cnet_isa_c18992a3a4 (IsA horsy_set set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hortensia is a kind of hydrangea", "pln": ["(: cnet_isa_813e96f9e8 (IsA hortensia hydrangea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "horticulturist is a kind of expert", "pln": ["(: cnet_isa_0f48e9a02e (IsA horticulturist expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hosanna is a kind of cry", "pln": ["(: cnet_isa_5f4a897594 (IsA hosanna cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hose is a kind of garment", "pln": ["(: cnet_isa_124b7c5677 (IsA hose garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hose is a kind of tube", "pln": ["(: cnet_isa_a51c7463d6 (IsA hose tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hosier is a kind of shopkeeper", "pln": ["(: cnet_isa_38edeadb1f (IsA hosier shopkeeper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hosiery is a kind of footwear", "pln": ["(: cnet_isa_2777f603ff (IsA hosiery footwear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hospice is a kind of medical care", "pln": ["(: cnet_isa_30876b2da7 (IsA hospice medical_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hospice is a kind of housing", "pln": ["(: cnet_isa_b09590febd (IsA hospice housing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hospitableness is a kind of friendliness", "pln": ["(: cnet_isa_41de2a0d09 (IsA hospitableness friendliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hospital is a kind of medical building", "pln": ["(: cnet_isa_0838634481 (IsA hospital medical_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hospital is a kind of medical institution", "pln": ["(: cnet_isa_7cf1353cc8 (IsA hospital medical_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hospital bed is a kind of single bed", "pln": ["(: cnet_isa_af5703fc4f (IsA hospital_bed single_bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hospital chaplain is a kind of chaplain", "pln": ["(: cnet_isa_386df7a6b4 (IsA hospital_chaplain chaplain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hospital occupancy is a kind of occupancy rate", "pln": ["(: cnet_isa_e3e4e8d9f6 (IsA hospital_occupancy occupancy_rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hospital room is a kind of room", "pln": ["(: cnet_isa_cf22bd0cc6 (IsA hospital_room room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hospital ship is a kind of ship", "pln": ["(: cnet_isa_3a4ffd51a3 (IsA hospital_ship ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hospital train is a kind of train", "pln": ["(: cnet_isa_b15501d07b (IsA hospital_train train) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hospitalization is a kind of medical care", "pln": ["(: cnet_isa_9aff2edf7a (IsA hospitalization medical_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hospitalization is a kind of condition", "pln": ["(: cnet_isa_f64d087eaf (IsA hospitalization condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hospitalization is a kind of time period", "pln": ["(: cnet_isa_4d5f90df59 (IsA hospitalization time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hospitalization insurance is a kind of health insurance", "pln": ["(: cnet_isa_add2927c65 (IsA hospitalization_insurance health_insurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "host is a kind of organism", "pln": ["(: cnet_isa_242621a60c (IsA host organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "host is a kind of bread", "pln": ["(: cnet_isa_243f5652c7 (IsA host bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "host is a kind of army", "pln": ["(: cnet_isa_0f15997712 (IsA host army) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "host is a kind of organization", "pln": ["(: cnet_isa_2a1fb8ef35 (IsA host organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "host is a kind of recipient", "pln": ["(: cnet_isa_a7460d1113 (IsA host recipient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "host is a kind of adult", "pln": ["(: cnet_isa_3b5e001197 (IsA host adult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "host is a kind of patron", "pln": ["(: cnet_isa_bc66b5bde8 (IsA host patron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hosta is a kind of liliid monocot genus", "pln": ["(: cnet_isa_ad01ed6b2a (IsA hosta liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hostaceae is a kind of liliid monocot family", "pln": ["(: cnet_isa_78c59e2260 (IsA hostaceae liliid_monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hostage is a kind of prisoner", "pln": ["(: cnet_isa_28ac669123 (IsA hostage prisoner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hostel is a kind of hotel", "pln": ["(: cnet_isa_1f5bc31839 (IsA hostel hotel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hostel is a kind of housing", "pln": ["(: cnet_isa_b738039cdc (IsA hostel housing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hosteller is a kind of traveler", "pln": ["(: cnet_isa_693171a0b2 (IsA hosteller traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hostess is a kind of host", "pln": ["(: cnet_isa_431679142b (IsA hostess host) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hostile is a kind of military personnel", "pln": ["(: cnet_isa_ae3a484c2c (IsA hostile military_personnel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hostile fire is a kind of fire", "pln": ["(: cnet_isa_25f58a4810 (IsA hostile_fire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hostile takeover is a kind of takeover", "pln": ["(: cnet_isa_60097a5ca2 (IsA hostile_takeover takeover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hostility is a kind of combat", "pln": ["(: cnet_isa_0fd5139c77 (IsA hostility combat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hostility is a kind of unfriendliness", "pln": ["(: cnet_isa_b405ca8758 (IsA hostility unfriendliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hostility is a kind of hate", "pln": ["(: cnet_isa_60ed3eb245 (IsA hostility hate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hostility is a kind of state", "pln": ["(: cnet_isa_c47306ad1b (IsA hostility state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot air is a kind of lighter than cold air", "pln": ["(: cnet_isa_67a6f0e31e (IsA hot_air lighter_than_cold_air) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot air is a kind of lighter than cool air", "pln": ["(: cnet_isa_731b584f59 (IsA hot_air lighter_than_cool_air) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot air is a kind of air", "pln": ["(: cnet_isa_10c8b50b3e (IsA hot_air air) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot air balloon is a kind of balloon", "pln": ["(: cnet_isa_b196b8e670 (IsA hot_air_balloon balloon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot and cold is a kind of opposite", "pln": ["(: cnet_isa_3bb05ed464 (IsA hot_and_cold opposite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot button issue is a kind of issue", "pln": ["(: cnet_isa_e5b3a88ac2 (IsA hot_button_issue issue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot cereal is a kind of cereal", "pln": ["(: cnet_isa_c3e7cee0f2 (IsA hot_cereal cereal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hot flash is a kind of symptom", "pln": ["(: cnet_isa_28cd0b5dee (IsA hot_flash symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot fudge sauce is a kind of chocolate sauce", "pln": ["(: cnet_isa_22b828b7e1 (IsA hot_fudge_sauce chocolate_sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot jazz is a kind of jazz", "pln": ["(: cnet_isa_6b7b3260e3 (IsA hot_jazz jazz) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot line is a kind of telephone line", "pln": ["(: cnet_isa_7c4e54e875 (IsA hot_line telephone_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot medium is a kind of medium", "pln": ["(: cnet_isa_cc823474fb (IsA hot_medium medium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot pant is a kind of short pant", "pln": ["(: cnet_isa_11034ddd86 (IsA hot_pant short_pant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot pepper is a kind of pepper", "pln": ["(: cnet_isa_6622bc0045 (IsA hot_pepper pepper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot plate is a kind of kitchen appliance", "pln": ["(: cnet_isa_67820e5189 (IsA hot_plate kitchen_appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot pot is a kind of stew", "pln": ["(: cnet_isa_05ff6c1d5a (IsA hot_pot stew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot potato is a kind of situation", "pln": ["(: cnet_isa_99157d2c2b (IsA hot_potato situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot rock penstemon is a kind of wildflower", "pln": ["(: cnet_isa_6dd2b68eef (IsA hot_rock_penstemon wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot rod is a kind of car", "pln": ["(: cnet_isa_4270919e34 (IsA hot_rod car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot sauce is a kind of sauce", "pln": ["(: cnet_isa_6b4912e41d (IsA hot_sauce sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot seat is a kind of position", "pln": ["(: cnet_isa_91517ba363 (IsA hot_seat position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot spell is a kind of while", "pln": ["(: cnet_isa_528133e025 (IsA hot_spell while) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hot spot is a kind of spot", "pln": ["(: cnet_isa_4242a20b39 (IsA hot_spot spot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hot spot is a kind of geographical area", "pln": ["(: cnet_isa_dea203f80c (IsA hot_spot geographical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot spot is a kind of point", "pln": ["(: cnet_isa_fc5faf0210 (IsA hot_spot point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot spring is a kind of spring", "pln": ["(: cnet_isa_7b64175954 (IsA hot_spring spring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot stock is a kind of stock", "pln": ["(: cnet_isa_64470585e3 (IsA hot_stock stock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hot stuff is a kind of popularity", "pln": ["(: cnet_isa_29f013f2d3 (IsA hot_stuff popularity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot stuff is a kind of quality", "pln": ["(: cnet_isa_82cd06298e (IsA hot_stuff quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot toddy is a kind of mixed drink", "pln": ["(: cnet_isa_7f69b59456 (IsA hot_toddy mixed_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot tub is a kind of bathtub", "pln": ["(: cnet_isa_0c543e9cb4 (IsA hot_tub bathtub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot war is a kind of war", "pln": ["(: cnet_isa_bd6c10f2c4 (IsA hot_war war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot water is a kind of predicament", "pln": ["(: cnet_isa_0cb7497361 (IsA hot_water predicament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot water bottle is a kind of receptacle", "pln": ["(: cnet_isa_27a7797a80 (IsA hot_water_bottle receptacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot weather is a kind of weather", "pln": ["(: cnet_isa_442fcb85a5 (IsA hot_weather weather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hotbed is a kind of bed", "pln": ["(: cnet_isa_7fc2f674bd (IsA hotbed bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hotbed is a kind of situation", "pln": ["(: cnet_isa_0526066c6a (IsA hotbed situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hotbox is a kind of journal bearing", "pln": ["(: cnet_isa_8b729c9741 (IsA hotbox journal_bearing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hotchpotch is a kind of stew", "pln": ["(: cnet_isa_c2c208800f (IsA hotchpotch stew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hotdog is a kind of sandwich", "pln": ["(: cnet_isa_55908e203d (IsA hotdog sandwich) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hotdog is a kind of exhibitionist", "pln": ["(: cnet_isa_6172fa4791 (IsA hotdog exhibitionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hotel is a kind of building", "pln": ["(: cnet_isa_3c8542dea8 (IsA hotel building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hotel bill is a kind of bill", "pln": ["(: cnet_isa_bc082a327f (IsA hotel_bill bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hotel casino is a kind of building", "pln": ["(: cnet_isa_72c3a5a02c (IsA hotel_casino building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hotel casino is a kind of place of business", "pln": ["(: cnet_isa_ac8759e2d7 (IsA hotel_casino place_of_business) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hotel detective is a kind of private detective", "pln": ["(: cnet_isa_32f4aceab7 (IsA hotel_detective private_detective) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hotel occupancy is a kind of occupancy rate", "pln": ["(: cnet_isa_086ebbf665 (IsA hotel_occupancy occupancy_rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hotel plan is a kind of design", "pln": ["(: cnet_isa_526395440a (IsA hotel_plan design) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hotel room is a kind of bedroom", "pln": ["(: cnet_isa_7aca293693 (IsA hotel_room bedroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hotelier is a kind of administrator", "pln": ["(: cnet_isa_8a1f8c7fd3 (IsA hotelier administrator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hotfoot is a kind of practical joke", "pln": ["(: cnet_isa_b5a5b12966 (IsA hotfoot practical_joke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hotness is a kind of spiciness", "pln": ["(: cnet_isa_10e4182dc9 (IsA hotness spiciness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hotness is a kind of temperature", "pln": ["(: cnet_isa_7248435a24 (IsA hotness temperature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hot is a kind of sexual desire", "pln": ["(: cnet_isa_557963e7b3 (IsA hot sexual_desire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hotspur is a kind of adventurer", "pln": ["(: cnet_isa_be841cf61d (IsA hotspur adventurer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hottentot bread is a kind of root", "pln": ["(: cnet_isa_e542bc44da (IsA hottentot_bread root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hottentot fig is a kind of succulent", "pln": ["(: cnet_isa_d04bd806f3 (IsA hottentot_fig succulent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hottonia is a kind of dicot genus", "pln": ["(: cnet_isa_f8d7265af4 (IsA hottonia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hound s tongue is a kind of herb", "pln": ["(: cnet_isa_7a7ded3205 (IsA hound_s_tongue herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hound is a kind of hunting dog", "pln": ["(: cnet_isa_5fe17d0d0d (IsA hound hunting_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "houndstooth check is a kind of check", "pln": ["(: cnet_isa_1ff2efa38f (IsA houndstooth_check check) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hour is a kind of distance", "pln": ["(: cnet_isa_b154d2c703 (IsA hour distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hour is a kind of clock time", "pln": ["(: cnet_isa_d8ba7f776c (IsA hour clock_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hour is a kind of time period", "pln": ["(: cnet_isa_cefd7ad1e3 (IsA hour time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hour is a kind of time unit", "pln": ["(: cnet_isa_6e5299442f (IsA hour time_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hour angle is a kind of angular distance", "pln": ["(: cnet_isa_f77b11f447 (IsA hour_angle angular_distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hour angle is a kind of distance", "pln": ["(: cnet_isa_e1da20b5a1 (IsA hour_angle distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hour circle is a kind of great circle", "pln": ["(: cnet_isa_1159dc560f (IsA hour_circle great_circle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hour hand is a kind of hand", "pln": ["(: cnet_isa_c7adc9fe0d (IsA hour_hand hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hourglass is a kind of old way of telling time", "pln": ["(: cnet_isa_efa1e155bb (IsA hourglass old_way_of_telling_time) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hourglass is a kind of way to measure time", "pln": ["(: cnet_isa_a26e47b9e0 (IsA hourglass way_to_measure_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hourglass is a kind of sandglass", "pln": ["(: cnet_isa_f91bbcd784 (IsA hourglass sandglass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "houri is a kind of mythical being", "pln": ["(: cnet_isa_87a6b09331 (IsA houri mythical_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hour is a kind of work time", "pln": ["(: cnet_isa_e0cc7bdce6 (IsA hour work_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house is a kind of place and thing", "pln": ["(: cnet_isa_9061a01641 (IsA house place_and_thing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house is a kind of shelter", "pln": ["(: cnet_isa_47d0c81739 (IsA house shelter) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house is a kind of thing", "pln": ["(: cnet_isa_ee6a63508c (IsA house thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house is a kind of tv show", "pln": ["(: cnet_isa_23917b92b4 (IsA house tv_show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house is a kind of play", "pln": ["(: cnet_isa_4d7d7639c1 (IsA house play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house is a kind of building", "pln": ["(: cnet_isa_72ca15d060 (IsA house building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house is a kind of dwelling", "pln": ["(: cnet_isa_85ae61acc0 (IsA house dwelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house is a kind of audience", "pln": ["(: cnet_isa_edb3e4a72b (IsA house audience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house is a kind of community", "pln": ["(: cnet_isa_3d22c44605 (IsA house community) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house is a kind of family", "pln": ["(: cnet_isa_f25d374387 (IsA house family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house is a kind of legislature", "pln": ["(: cnet_isa_3404119c95 (IsA house legislature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house is a kind of management", "pln": ["(: cnet_isa_5c4c3dd798 (IsA house management) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house arrest is a kind of confinement", "pln": ["(: cnet_isa_94d6cfcd64 (IsA house_arrest confinement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house centipede is a kind of centipede", "pln": ["(: cnet_isa_cad8b9ae09 (IsA house_centipede centipede) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "house finch is a kind of finch", "pln": ["(: cnet_isa_7cd1e52436 (IsA house_finch finch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house guest is a kind of guest", "pln": ["(: cnet_isa_e805ccc0aa (IsA house_guest guest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house hold oil is a kind of lubricant", "pln": ["(: cnet_isa_3de2abd334 (IsA house_hold_oil lubricant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house hold oil is a kind of oil", "pln": ["(: cnet_isa_a5bf470586 (IsA house_hold_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house husband is a kind of husband", "pln": ["(: cnet_isa_f0dcb3b8dc (IsA house_husband husband) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house keeper is a kind of servant", "pln": ["(: cnet_isa_342a813a32 (IsA house_keeper servant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house martin is a kind of martin", "pln": ["(: cnet_isa_2688db93b4 (IsA house_martin martin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house mouse is a kind of mouse", "pln": ["(: cnet_isa_1a804c6168 (IsA house_mouse mouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house of burgess is a kind of house", "pln": ["(: cnet_isa_c1281fcd54 (IsA house_of_burgess house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house of card is a kind of structure", "pln": ["(: cnet_isa_139d28dc4d (IsA house_of_card structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house of card is a kind of scheme", "pln": ["(: cnet_isa_df10d7f639 (IsA house_of_card scheme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house of common is a kind of house", "pln": ["(: cnet_isa_a6c2245707 (IsA house_of_common house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house of correction is a kind of jail", "pln": ["(: cnet_isa_37feb4eca9 (IsA house_of_correction jail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house of lord is a kind of house", "pln": ["(: cnet_isa_b49bb6e3f7 (IsA house_of_lord house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house organ is a kind of organ", "pln": ["(: cnet_isa_9e9a914e19 (IsA house_organ organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house paint is a kind of paint", "pln": ["(: cnet_isa_d9568ccde2 (IsA house_paint paint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house painter is a kind of painter", "pln": ["(: cnet_isa_1d374833dd (IsA house_painter painter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house party is a kind of party", "pln": ["(: cnet_isa_2a87d1367a (IsA house_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house physician is a kind of doctor", "pln": ["(: cnet_isa_a948b22398 (IsA house_physician doctor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house plant is a kind of flower", "pln": ["(: cnet_isa_4a72327019 (IsA house_plant flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house raising is a kind of construction", "pln": ["(: cnet_isa_44e278923b (IsA house_raising construction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house sitter is a kind of custodian", "pln": ["(: cnet_isa_efceeabb26 (IsA house_sitter custodian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "house wren is a kind of wren", "pln": ["(: cnet_isa_b3c7ffd1df (IsA house_wren wren) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "houseboat is a kind of barge", "pln": ["(: cnet_isa_4a73b9a834 (IsA houseboat barge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "housebreaker is a kind of burglar", "pln": ["(: cnet_isa_c9bcdd1a3b (IsA housebreaker burglar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "housebreaking is a kind of burglary", "pln": ["(: cnet_isa_9a77d6e13a (IsA housebreaking burglary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "housecleaning is a kind of cleaning", "pln": ["(: cnet_isa_fbbf53fef5 (IsA housecleaning cleaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "housecleaning is a kind of reform", "pln": ["(: cnet_isa_270aa5aacc (IsA housecleaning reform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "housecraft is a kind of craft", "pln": ["(: cnet_isa_a6fa72ca8d (IsA housecraft craft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "housedog is a kind of watchdog", "pln": ["(: cnet_isa_ead62edb8a (IsA housedog watchdog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "housefather is a kind of man", "pln": ["(: cnet_isa_9a0631dba4 (IsA housefather man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "housefly is a kind of fly", "pln": ["(: cnet_isa_16c460614c (IsA housefly fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "houseful is a kind of containerful", "pln": ["(: cnet_isa_1d2d3192e7 (IsA houseful containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "housekeeper is a kind of domestic", "pln": ["(: cnet_isa_64bca3f6c0 (IsA housekeeper domestic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "houselight is a kind of light", "pln": ["(: cnet_isa_3eab9f0a6e (IsA houselight light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "housemaid s knee is a kind of bursitis", "pln": ["(: cnet_isa_1d1c4248f1 (IsA housemaid_s_knee bursitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "housemaster is a kind of headmaster", "pln": ["(: cnet_isa_53e4cbb97a (IsA housemaster headmaster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "housemate is a kind of resident", "pln": ["(: cnet_isa_79e7b00ff9 (IsA housemate resident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "housemother is a kind of chaperon", "pln": ["(: cnet_isa_756d0a9d47 (IsA housemother chaperon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "houseplant is a kind of plant", "pln": ["(: cnet_isa_67ef2413f3 (IsA houseplant plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "houseroom is a kind of room", "pln": ["(: cnet_isa_9d72bff28a (IsA houseroom room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "housetop is a kind of roof", "pln": ["(: cnet_isa_48f8cb8fce (IsA housetop roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "housewarming is a kind of party", "pln": ["(: cnet_isa_77babf2375 (IsA housewarming party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "housewife is a kind of homemaker", "pln": ["(: cnet_isa_1b27130381 (IsA housewife homemaker) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "housewife is a kind of wife", "pln": ["(: cnet_isa_6e15f62695 (IsA housewife wife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "housewifery is a kind of work", "pln": ["(: cnet_isa_3ee95a7c8a (IsA housewifery work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "housework is a kind of work", "pln": ["(: cnet_isa_fef8d4d4e3 (IsA housework work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "housewrecker is a kind of wrecker", "pln": ["(: cnet_isa_1831545c25 (IsA housewrecker wrecker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "housing is a kind of protective covering", "pln": ["(: cnet_isa_89178702dd (IsA housing protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "housing is a kind of structure", "pln": ["(: cnet_isa_b9f69302e9 (IsA housing structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "housing commissioner is a kind of commissioner", "pln": ["(: cnet_isa_43ba520c26 (IsA housing_commissioner commissioner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "housing development is a kind of development", "pln": ["(: cnet_isa_01540c42c7 (IsA housing_development development) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "housing estate is a kind of development", "pln": ["(: cnet_isa_e295b80ecb (IsA housing_estate development) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "housing project is a kind of housing development", "pln": ["(: cnet_isa_63d6692b42 (IsA housing_project housing_development) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "housing start is a kind of beginning", "pln": ["(: cnet_isa_af66eec05c (IsA housing_start beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "houttuynia is a kind of dicot genus", "pln": ["(: cnet_isa_c9691fcd6e (IsA houttuynia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "houyhnhnms is a kind of imaginary place", "pln": ["(: cnet_isa_03fc4d8d88 (IsA houyhnhnms imaginary_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "houyhnhnm is a kind of imaginary place", "pln": ["(: cnet_isa_2eb7a71379 (IsA houyhnhnm imaginary_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hovea is a kind of shrub", "pln": ["(: cnet_isa_620c053d66 (IsA hovea shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hovel is a kind of shelter", "pln": ["(: cnet_isa_3c2d4e0622 (IsA hovel shelter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hovercraft is a kind of craft", "pln": ["(: cnet_isa_2d34a8ed51 (IsA hovercraft craft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "how do you do is a kind of situation", "pln": ["(: cnet_isa_f47b17bb53 (IsA how_do_you_do situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "howdah is a kind of seat", "pln": ["(: cnet_isa_24a86205ee (IsA howdah seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "howl is a kind of utterance", "pln": ["(: cnet_isa_9c95cc25fa (IsA howl utterance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "howl is a kind of cry", "pln": ["(: cnet_isa_5faa92242e (IsA howl cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "howl is a kind of noise", "pln": ["(: cnet_isa_ca66a391dc (IsA howl noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "howler is a kind of blunder", "pln": ["(: cnet_isa_00ce31ab37 (IsA howler blunder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "howler monkey is a kind of new world monkey", "pln": ["(: cnet_isa_813f5a012e (IsA howler_monkey new_world_monkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoya is a kind of vine", "pln": ["(: cnet_isa_1c913c20e1 (IsA hoya vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hoydenism is a kind of masculinity", "pln": ["(: cnet_isa_3dd97fd3c7 (IsA hoydenism masculinity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hryvnia is a kind of ukranian monetary unit", "pln": ["(: cnet_isa_337341e288 (IsA hryvnia ukranian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hualapai is a kind of hoka", "pln": ["(: cnet_isa_9546237503 (IsA hualapai hoka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "huarache is a kind of sandal", "pln": ["(: cnet_isa_6bf7dd5ed0 (IsA huarache sandal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "huayna capac is a kind of inca", "pln": ["(: cnet_isa_073794c5d4 (IsA huayna_capac inca) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hub is a kind of part", "pln": ["(: cnet_isa_dc042c04e5 (IsA hub part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hub is a kind of center", "pln": ["(: cnet_isa_80625d8244 (IsA hub center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hub and spoke is a kind of air transportation system", "pln": ["(: cnet_isa_83b7dec3f5 (IsA hub_and_spoke air_transportation_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hubbard squash is a kind of winter squash", "pln": ["(: cnet_isa_ac14b2aad7 (IsA hubbard_squash winter_squash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hubble s constant is a kind of constant", "pln": ["(: cnet_isa_f492078746 (IsA hubble_s_constant constant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hubble s law is a kind of law", "pln": ["(: cnet_isa_505c29ce17 (IsA hubble_s_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hubbub is a kind of noise", "pln": ["(: cnet_isa_4c80e17526 (IsA hubbub noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hubcap is a kind of cap", "pln": ["(: cnet_isa_5296cfd644 (IsA hubcap cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hubris is a kind of arrogance", "pln": ["(: cnet_isa_1224ca85e4 (IsA hubris arrogance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "huck is a kind of toweling", "pln": ["(: cnet_isa_8c7624d387 (IsA huck toweling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "huckleberry is a kind of berry", "pln": ["(: cnet_isa_047d834fbb (IsA huckleberry berry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "huckleberry is a kind of blueberry", "pln": ["(: cnet_isa_3bc503b238 (IsA huckleberry blueberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "huckleberry is a kind of shrub", "pln": ["(: cnet_isa_00e6a0590f (IsA huckleberry shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "huckleberry oak is a kind of shrub", "pln": ["(: cnet_isa_69c28a274b (IsA huckleberry_oak shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "huckster is a kind of advertiser", "pln": ["(: cnet_isa_d070b778d0 (IsA huckster advertiser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "huckster is a kind of seller", "pln": ["(: cnet_isa_f4ae7ff60f (IsA huckster seller) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "huddersfield is a kind of town", "pln": ["(: cnet_isa_3215c23602 (IsA huddersfield town) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "huddle is a kind of conference", "pln": ["(: cnet_isa_1f176218a2 (IsA huddle conference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "huddle is a kind of crowd", "pln": ["(: cnet_isa_718be2e8d0 (IsA huddle crowd) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "huddler is a kind of member", "pln": ["(: cnet_isa_8644fd5723 (IsA huddler member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "huddler is a kind of person", "pln": ["(: cnet_isa_332247ac2a (IsA huddler person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hudson bay collared lemming is a kind of pied lemming", "pln": ["(: cnet_isa_a654b02cfa (IsA hudson_bay_collared_lemming pied_lemming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hudson river school is a kind of artistic movement", "pln": ["(: cnet_isa_3f0d79f816 (IsA hudson_river_school artistic_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hudson seal is a kind of muskrat", "pln": ["(: cnet_isa_8afc24cfd0 (IsA hudson_seal muskrat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hudsonia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_6a74279173 (IsA hudsonia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hudsonian godwit is a kind of godwit", "pln": ["(: cnet_isa_2ad0e9bafd (IsA hudsonian_godwit godwit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hudud is a kind of shariah", "pln": ["(: cnet_isa_74e78684da (IsA hudud shariah) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hue is a kind of color property", "pln": ["(: cnet_isa_4f90644854 (IsA hue color_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "huff is a kind of irritation", "pln": ["(: cnet_isa_923583ab17 (IsA huff irritation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "huffiness is a kind of anger", "pln": ["(: cnet_isa_b77adec645 (IsA huffiness anger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hug is a kind of embrace", "pln": ["(: cnet_isa_0c38ced4b2 (IsA hug embrace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hug me tight is a kind of jacket", "pln": ["(: cnet_isa_587894029b (IsA hug_me_tight jacket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hugger is a kind of person", "pln": ["(: cnet_isa_2ac96141b9 (IsA hugger person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hugger mugger is a kind of confusion", "pln": ["(: cnet_isa_a158ffdf8b (IsA hugger_mugger confusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hugueninia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_657202caac (IsA hugueninia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "huguenot is a kind of genevan", "pln": ["(: cnet_isa_d4b1dc1378 (IsA huguenot genevan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "huisache is a kind of acacia", "pln": ["(: cnet_isa_fddce58cf7 (IsA huisache acacia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "huitre is a kind of shellfish", "pln": ["(: cnet_isa_82c2cd05fe (IsA huitre shellfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hula is a kind of rain dance", "pln": ["(: cnet_isa_b96d075776 (IsA hula rain_dance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hula hoop is a kind of plaything", "pln": ["(: cnet_isa_bce477b120 (IsA hula_hoop plaything) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hulk is a kind of ship", "pln": ["(: cnet_isa_defc1a33de (IsA hulk ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hull is a kind of structure", "pln": ["(: cnet_isa_f86307cb0c (IsA hull structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hull is a kind of calyx", "pln": ["(: cnet_isa_f14b5210f9 (IsA hull calyx) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hull is a kind of husk", "pln": ["(: cnet_isa_0a33a9f34b (IsA hull husk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hulsea is a kind of asterid dicot genus", "pln": ["(: cnet_isa_e572675184 (IsA hulsea asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hum is a kind of noise", "pln": ["(: cnet_isa_f3bca6ef5e (IsA hum noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "human is a kind of biped", "pln": ["(: cnet_isa_14c91b32fe (IsA human biped) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "human is a kind of primate", "pln": ["(: cnet_isa_899d5fe146 (IsA human primate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "human is a kind of synonym for person", "pln": ["(: cnet_isa_6191ecae17 (IsA human synonym_for_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "human being is a kind of another name for person", "pln": ["(: cnet_isa_ac5fc4a989 (IsA human_being another_name_for_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "human body is a kind of body", "pln": ["(: cnet_isa_4483ea3e83 (IsA human_body body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "human botfly is a kind of botfly", "pln": ["(: cnet_isa_366de1a249 (IsA human_botfly botfly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "human chorionic gonadotropin is a kind of gonadotropin", "pln": ["(: cnet_isa_4fd2e53c32 (IsA human_chorionic_gonadotropin gonadotropin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "human head is a kind of head", "pln": ["(: cnet_isa_a4bbd9651a (IsA human_head head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "human immunodeficiency virus is a kind of retrovirus", "pln": ["(: cnet_isa_4b63fbee2d (IsA human_immunodeficiency_virus retrovirus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "human jumping is a kind of jumping", "pln": ["(: cnet_isa_f68d713eb5 (IsA human_jumping jumping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "human male is a kind of sexually", "pln": ["(: cnet_isa_a54e3f7f5d (IsA human_male sexually) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "human nature is a kind of attribute", "pln": ["(: cnet_isa_1b549c8801 (IsA human_nature attribute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "human papilloma virus is a kind of papovavirus", "pln": ["(: cnet_isa_95201f7d1c (IsA human_papilloma_virus papovavirus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "human process is a kind of process", "pln": ["(: cnet_isa_29dc02835b (IsA human_process process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "human reproductive cloning is a kind of reproductive cloning", "pln": ["(: cnet_isa_8807192da6 (IsA human_reproductive_cloning reproductive_cloning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "human right is a kind of right", "pln": ["(: cnet_isa_7038dadb2c (IsA human_right right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "human running is a kind of running", "pln": ["(: cnet_isa_d06ca655cb (IsA human_running running) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "human t cell leukemia virus 1 is a kind of retrovirus", "pln": ["(: cnet_isa_7454ac1073 (IsA human_t_cell_leukemia_virus_1 retrovirus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "human waste is a kind of body waste", "pln": ["(: cnet_isa_cf579f1377 (IsA human_waste body_waste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humaneness is a kind of quality", "pln": ["(: cnet_isa_07fb63d9d7 (IsA humaneness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humanism is a kind of doctrine", "pln": ["(: cnet_isa_b51e00cb46 (IsA humanism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "humanism is a kind of cultural movement", "pln": ["(: cnet_isa_a00fd90e83 (IsA humanism cultural_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humanist is a kind of advocate", "pln": ["(: cnet_isa_2b59666611 (IsA humanist advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humanist is a kind of scholar", "pln": ["(: cnet_isa_a24bd09e93 (IsA humanist scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humanistic discipline is a kind of discipline", "pln": ["(: cnet_isa_fe46160467 (IsA humanistic_discipline discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humanitarian is a kind of benefactor", "pln": ["(: cnet_isa_1e8403dfc9 (IsA humanitarian benefactor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humanitarian aid worker is a kind of worker", "pln": ["(: cnet_isa_269d8955ca (IsA humanitarian_aid_worker worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humanitarianism is a kind of doctrine", "pln": ["(: cnet_isa_37bf8b877f (IsA humanitarianism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humanity is a kind of humaneness", "pln": ["(: cnet_isa_aaadc9881b (IsA humanity humaneness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humanization is a kind of improvement", "pln": ["(: cnet_isa_6e6f242ca3 (IsA humanization improvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humanness is a kind of quality", "pln": ["(: cnet_isa_208eded45d (IsA humanness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "human is a kind of bipedal", "pln": ["(: cnet_isa_b4681a3030 (IsA human bipedal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "human is a kind of higher animal", "pln": ["(: cnet_isa_1c4c493e57 (IsA human higher_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "human is a kind of omnivore", "pln": ["(: cnet_isa_34227b336c (IsA human omnivore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "human is a kind of omnivor", "pln": ["(: cnet_isa_b0750a2f41 (IsA human omnivor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humate is a kind of material", "pln": ["(: cnet_isa_6cb077f542 (IsA humate material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "humbleness is a kind of obscurity", "pln": ["(: cnet_isa_2e805443f1 (IsA humbleness obscurity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humbug is a kind of misrepresentation", "pln": ["(: cnet_isa_baaa865188 (IsA humbug misrepresentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "humdinger is a kind of ideal", "pln": ["(: cnet_isa_cb21b83c8a (IsA humdinger ideal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humectant is a kind of substance", "pln": ["(: cnet_isa_387c22a54b (IsA humectant substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humeral veil is a kind of vestment", "pln": ["(: cnet_isa_a1b7819638 (IsA humeral_veil vestment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humerus is a kind of arm bone", "pln": ["(: cnet_isa_97e19d53c1 (IsA humerus arm_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humic acid is a kind of humic substance", "pln": ["(: cnet_isa_9d3fd2aa81 (IsA humic_acid humic_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humic shale is a kind of humate", "pln": ["(: cnet_isa_65bfad8983 (IsA humic_shale humate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humic shale is a kind of shale", "pln": ["(: cnet_isa_88b7d8a3fd (IsA humic_shale shale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humic substance is a kind of organic compound", "pln": ["(: cnet_isa_bc5c180d68 (IsA humic_substance organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humidifier is a kind of appliance", "pln": ["(: cnet_isa_7a3f717509 (IsA humidifier appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humidity is a kind of wetness", "pln": ["(: cnet_isa_2e2d9a9502 (IsA humidity wetness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humification is a kind of organic process", "pln": ["(: cnet_isa_e202626f78 (IsA humification organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "humiliation is a kind of degradation", "pln": ["(: cnet_isa_3b018d98e0 (IsA humiliation degradation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humiliation is a kind of case", "pln": ["(: cnet_isa_b4890886ba (IsA humiliation case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humiliation is a kind of shame", "pln": ["(: cnet_isa_67ff33b140 (IsA humiliation shame) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "humility is a kind of trait", "pln": ["(: cnet_isa_88584c7b04 (IsA humility trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humility is a kind of feeling", "pln": ["(: cnet_isa_a2b8d1b020 (IsA humility feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humin is a kind of humic substance", "pln": ["(: cnet_isa_31d5235f99 (IsA humin humic_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hummer is a kind of singer", "pln": ["(: cnet_isa_6da538a884 (IsA hummer singer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humming is a kind of singing", "pln": ["(: cnet_isa_8f570cba42 (IsA humming singing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humming top is a kind of top", "pln": ["(: cnet_isa_bb07fb8108 (IsA humming_top top) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hummingbird is a kind of bird", "pln": ["(: cnet_isa_12475b5588 (IsA hummingbird bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hummingbird is a kind of apodiform bird", "pln": ["(: cnet_isa_31543d9757 (IsA hummingbird apodiform_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hummus is a kind of spread", "pln": ["(: cnet_isa_697d4192da (IsA hummus spread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humor is a kind of body substance", "pln": ["(: cnet_isa_a437476a78 (IsA humor body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humor is a kind of playfulness", "pln": ["(: cnet_isa_01462329fc (IsA humor playfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humor is a kind of quality", "pln": ["(: cnet_isa_391b9f94ee (IsA humor quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humoral immune response is a kind of immune response", "pln": ["(: cnet_isa_48ceafcfe6 (IsA humoral_immune_response immune_response) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humorist is a kind of entertainer", "pln": ["(: cnet_isa_f45fcadcbf (IsA humorist entertainer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humpback is a kind of baleen whale", "pln": ["(: cnet_isa_2ec7320bfb (IsA humpback baleen_whale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "humpback is a kind of cripple", "pln": ["(: cnet_isa_d0d870311d (IsA humpback cripple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humpty dumpty is a kind of egg", "pln": ["(: cnet_isa_2db9d610db (IsA humpty_dumpty egg) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "humpty dumpty is a kind of egg in fairy tale", "pln": ["(: cnet_isa_1767425f74 (IsA humpty_dumpty egg_in_fairy_tale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humulus is a kind of dicot genus", "pln": ["(: cnet_isa_7aec23a8e0 (IsA humulus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "humus is a kind of soil", "pln": ["(: cnet_isa_ea566497d8 (IsA humus soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hun is a kind of nomad", "pln": ["(: cnet_isa_6c9c230adc (IsA hun nomad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunch is a kind of bending", "pln": ["(: cnet_isa_ddbc243a1d (IsA hunch bending) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hundred is a kind of large integer", "pln": ["(: cnet_isa_6924bf5eec (IsA hundred large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hundred dollar bill is a kind of bill", "pln": ["(: cnet_isa_4a872f01f7 (IsA hundred_dollar_bill bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hundred thousand is a kind of large integer", "pln": ["(: cnet_isa_b98f831f94 (IsA hundred_thousand large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hundredth is a kind of rank", "pln": ["(: cnet_isa_5c5444801c (IsA hundredth rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hundredweight is a kind of avoirdupois unit", "pln": ["(: cnet_isa_c08a6243e3 (IsA hundredweight avoirdupois_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hundredweight is a kind of metric weight unit", "pln": ["(: cnet_isa_59f3b57b87 (IsA hundredweight metric_weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hung jury is a kind of jury", "pln": ["(: cnet_isa_a1b22b481e (IsA hung_jury jury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hungarian is a kind of ugric", "pln": ["(: cnet_isa_a229609cc4 (IsA hungarian ugric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hungarian lilac is a kind of lilac", "pln": ["(: cnet_isa_b8d4e06b28 (IsA hungarian_lilac lilac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hungarian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_f1c8cd56fc (IsA hungarian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hungarian partridge is a kind of partridge", "pln": ["(: cnet_isa_abeb2a1dd1 (IsA hungarian_partridge partridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hungarian sauce is a kind of sauce", "pln": ["(: cnet_isa_009990186f (IsA hungarian_sauce sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunger is a kind of feeling", "pln": ["(: cnet_isa_023987b7ea (IsA hunger feeling) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunger is a kind of sensation", "pln": ["(: cnet_isa_184c5445f8 (IsA hunger sensation) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunger is a kind of desire", "pln": ["(: cnet_isa_b1c1bfb8bb (IsA hunger desire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunger is a kind of drive", "pln": ["(: cnet_isa_b3d4d26a65 (IsA hunger drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunger march is a kind of march", "pln": ["(: cnet_isa_909eb38594 (IsA hunger_march march) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunger marcher is a kind of unemployed person", "pln": ["(: cnet_isa_74e70c9cb0 (IsA hunger_marcher unemployed_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunger strike is a kind of fast", "pln": ["(: cnet_isa_5e8b04e0cc (IsA hunger_strike fast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunger strike is a kind of passive resistance", "pln": ["(: cnet_isa_5a4c4e0768 (IsA hunger_strike passive_resistance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunk is a kind of part", "pln": ["(: cnet_isa_b793b4108c (IsA hunk part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunk is a kind of man", "pln": ["(: cnet_isa_f048f3fa67 (IsA hunk man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunkpapa is a kind of siouan", "pln": ["(: cnet_isa_d6f5e3558b (IsA hunkpapa siouan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunkpapa is a kind of teton dakota", "pln": ["(: cnet_isa_1c1f072396 (IsA hunkpapa teton_dakota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunnemannia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_d9f7936413 (IsA hunnemannia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunt is a kind of blood sport", "pln": ["(: cnet_isa_6d676049a3 (IsA hunt blood_sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunt is a kind of labor", "pln": ["(: cnet_isa_e4f305230d (IsA hunt labor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunt is a kind of outdoor sport", "pln": ["(: cnet_isa_f8c4c75dff (IsA hunt outdoor_sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunt is a kind of search", "pln": ["(: cnet_isa_19fb959499 (IsA hunt search) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunt is a kind of club", "pln": ["(: cnet_isa_a733e933de (IsA hunt club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunted person is a kind of victim", "pln": ["(: cnet_isa_5c6526c89a (IsA hunted_person victim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunter s sauce is a kind of sauce", "pln": ["(: cnet_isa_bfc018b47d (IsA hunter_s_sauce sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunter is a kind of watch", "pln": ["(: cnet_isa_34dc7d1ff1 (IsA hunter watch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunter is a kind of seeker", "pln": ["(: cnet_isa_7cda14d906 (IsA hunter seeker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunter is a kind of skilled worker", "pln": ["(: cnet_isa_9f91341e31 (IsA hunter skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunter gatherer is a kind of savage", "pln": ["(: cnet_isa_b4a57e5408 (IsA hunter_gatherer savage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunting and gathering tribe is a kind of tribal society", "pln": ["(: cnet_isa_a1a7a18174 (IsA hunting_and_gathering_tribe tribal_society) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunting dog is a kind of dog", "pln": ["(: cnet_isa_4bfb870520 (IsA hunting_dog dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunting ground is a kind of area", "pln": ["(: cnet_isa_c07c83f278 (IsA hunting_ground area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hunting ground is a kind of opportunity", "pln": ["(: cnet_isa_49e743e739 (IsA hunting_ground opportunity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "hurdles is a kind of track event", "pln": ["(: cnet_isa_f0b18ac46d (IsA hurdles track_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunting guide is a kind of scout", "pln": ["(: cnet_isa_3730ff78ee (IsA hunting_guide scout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunting knife is a kind of knife", "pln": ["(: cnet_isa_af5ec73056 (IsA hunting_knife knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunting license is a kind of license", "pln": ["(: cnet_isa_d1bb3de4e4 (IsA hunting_license license) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hunting season is a kind of season", "pln": ["(: cnet_isa_d6e55e01c4 (IsA hunting_season season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "huntingdon elm is a kind of elm", "pln": ["(: cnet_isa_9913c8e9ba (IsA huntingdon_elm elm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "huntington s chorea is a kind of autosomal dominant disease", "pln": ["(: cnet_isa_fb0a9d1413 (IsA huntington_s_chorea autosomal_dominant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "huntington s chorea is a kind of chorea", "pln": ["(: cnet_isa_111ac84393 (IsA huntington_s_chorea chorea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "huntington s chorea is a kind of monogenic disorder", "pln": ["(: cnet_isa_79706a323b (IsA huntington_s_chorea monogenic_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "huntress is a kind of hunter", "pln": ["(: cnet_isa_48a37065b0 (IsA huntress hunter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "huntsman s horn is a kind of pitcher plant", "pln": ["(: cnet_isa_f112defe69 (IsA huntsman_s_horn pitcher_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "huon pine is a kind of conifer", "pln": ["(: cnet_isa_902e9f7909 (IsA huon_pine conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hupa is a kind of athapaskan", "pln": ["(: cnet_isa_d538038fa8 (IsA hupa athapaskan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hupa is a kind of athabascan", "pln": ["(: cnet_isa_a2b729fd52 (IsA hupa athabascan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hurdle is a kind of barrier", "pln": ["(: cnet_isa_87c8bb8578 (IsA hurdle barrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hurdle is a kind of obstacle", "pln": ["(: cnet_isa_7a76fb1b53 (IsA hurdle obstacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hurdler is a kind of athlete", "pln": ["(: cnet_isa_91328deaa8 (IsA hurdler athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hurdle is a kind of track event", "pln": ["(: cnet_isa_f55e9b41d9 (IsA hurdle track_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hurl is a kind of throw", "pln": ["(: cnet_isa_8bed7e7496 (IsA hurl throw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hurler s syndrome is a kind of monogenic disorder", "pln": ["(: cnet_isa_f90eb2684b (IsA hurler_s_syndrome monogenic_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hurler s syndrome is a kind of mucopolysaccharidosis", "pln": ["(: cnet_isa_041af71bee (IsA hurler_s_syndrome mucopolysaccharidosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hurling is a kind of field game", "pln": ["(: cnet_isa_b389638c53 (IsA hurling field_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hurrah is a kind of cheer", "pln": ["(: cnet_isa_05da0cd055 (IsA hurrah cheer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hurricane is a kind of storm", "pln": ["(: cnet_isa_b2142c1ade (IsA hurricane storm) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hurricane is a kind of cyclone", "pln": ["(: cnet_isa_03616bfa5a (IsA hurricane cyclone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hurricane deck is a kind of deck", "pln": ["(: cnet_isa_e018cea56e (IsA hurricane_deck deck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hurricane lamp is a kind of lamp", "pln": ["(: cnet_isa_23a961434e (IsA hurricane_lamp lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hurry is a kind of urgency", "pln": ["(: cnet_isa_bd83a1ed85 (IsA hurry urgency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "husband is a kind of spouse", "pln": ["(: cnet_isa_5807b53427 (IsA husband spouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hush is a kind of silence", "pln": ["(: cnet_isa_812294bea1 (IsA hush silence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hush money is a kind of bribe", "pln": ["(: cnet_isa_80213ac5c3 (IsA hush_money bribe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hush puppy is a kind of cornbread", "pln": ["(: cnet_isa_14b4add425 (IsA hush_puppy cornbread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "husk is a kind of sheath", "pln": ["(: cnet_isa_a29014b017 (IsA husk sheath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "huskiness is a kind of strength", "pln": ["(: cnet_isa_03f4d8213b (IsA huskiness strength) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "husking bee is a kind of bee", "pln": ["(: cnet_isa_2c4613d982 (IsA husking_bee bee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hussar is a kind of cavalryman", "pln": ["(: cnet_isa_5b509d166f (IsA hussar cavalryman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hussite is a kind of disciple", "pln": ["(: cnet_isa_185c880142 (IsA hussite disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "husting is a kind of campaigning", "pln": ["(: cnet_isa_df0469b41a (IsA husting campaigning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hustler is a kind of opportunist", "pln": ["(: cnet_isa_a7eb2a3fdb (IsA hustler opportunist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hut is a kind of shelter", "pln": ["(: cnet_isa_64987306f6 (IsA hut shelter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hutch is a kind of cage", "pln": ["(: cnet_isa_1ced0ca181 (IsA hutch cage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hutment is a kind of camp", "pln": ["(: cnet_isa_b1aa2c866f (IsA hutment camp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hutu is a kind of bantu", "pln": ["(: cnet_isa_5eaa55b766 (IsA hutu bantu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyacinth is a kind of liliaceous plant", "pln": ["(: cnet_isa_9baa570451 (IsA hyacinth liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyacinth is a kind of zircon", "pln": ["(: cnet_isa_584e77c95e (IsA hyacinth zircon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyacinth bean is a kind of vine", "pln": ["(: cnet_isa_ac8c2058e6 (IsA hyacinth_bean vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyacinthaceae is a kind of liliid monocot family", "pln": ["(: cnet_isa_91b57a3a5d (IsA hyacinthaceae liliid_monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyacinthoide is a kind of liliid monocot genus", "pln": ["(: cnet_isa_1f863e698c (IsA hyacinthoide liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyade is a kind of nymph", "pln": ["(: cnet_isa_0a7eada18a (IsA hyade nymph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyaenidae is a kind of mammal family", "pln": ["(: cnet_isa_2f58f16793 (IsA hyaenidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyaline is a kind of transparent substance", "pln": ["(: cnet_isa_012f5e6a78 (IsA hyaline transparent_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyaline cartilage is a kind of cartilage", "pln": ["(: cnet_isa_64f0739da7 (IsA hyaline_cartilage cartilage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyalinization is a kind of condition", "pln": ["(: cnet_isa_3a3d01925f (IsA hyalinization condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyaloid membrane is a kind of membrane", "pln": ["(: cnet_isa_3c2ad3a7c8 (IsA hyaloid_membrane membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyalophora is a kind of arthropod genus", "pln": ["(: cnet_isa_aee066c356 (IsA hyalophora arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyaloplasm is a kind of cytoplasm", "pln": ["(: cnet_isa_c4fd873bdf (IsA hyaloplasm cytoplasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyalosperma is a kind of asterid dicot genus", "pln": ["(: cnet_isa_0dd66b78d8 (IsA hyalosperma asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hyalospongiae is a kind of class", "pln": ["(: cnet_isa_25d54357d5 (IsA hyalospongiae class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hyaluronic acid is a kind of mucopolysaccharide", "pln": ["(: cnet_isa_917f99be1a (IsA hyaluronic_acid mucopolysaccharide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hybanthus is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_a6db2412c4 (IsA hybanthus dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hybrid is a kind of complex", "pln": ["(: cnet_isa_963ca35984 (IsA hybrid complex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hybrid is a kind of organism", "pln": ["(: cnet_isa_3a2f1174ec (IsA hybrid organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hybrid petunia is a kind of petunia", "pln": ["(: cnet_isa_46597d0133 (IsA hybrid_petunia petunia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hybrid tuberous begonia is a kind of tuberous begonia", "pln": ["(: cnet_isa_a7da991a81 (IsA hybrid_tuberous_begonia tuberous_begonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hybrid vigor is a kind of tendency", "pln": ["(: cnet_isa_ef5a54c467 (IsA hybrid_vigor tendency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hybridization is a kind of coupling", "pln": ["(: cnet_isa_2394f1e710 (IsA hybridization coupling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hybridoma is a kind of somatic cell", "pln": ["(: cnet_isa_c420f70f67 (IsA hybridoma somatic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hydantoin is a kind of anticonvulsant", "pln": ["(: cnet_isa_f9188071cb (IsA hydantoin anticonvulsant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydathode is a kind of stoma", "pln": ["(: cnet_isa_540244a286 (IsA hydathode stoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydatid is a kind of cyst", "pln": ["(: cnet_isa_bef87cb4fb (IsA hydatid cyst) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hydatid mole is a kind of abnormality", "pln": ["(: cnet_isa_f333baa1f1 (IsA hydatid_mole abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydnaceae is a kind of fungus family", "pln": ["(: cnet_isa_c880de90c7 (IsA hydnaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydnocarpus is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_9b5981f3f3 (IsA hydnocarpus dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hydnocarpus laurifolia is a kind of tree", "pln": ["(: cnet_isa_a14198408e (IsA hydnocarpus_laurifolia tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hydnocarpus oil is a kind of oil", "pln": ["(: cnet_isa_68e18ac29a (IsA hydnocarpus_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hydnoraceae is a kind of dicot family", "pln": ["(: cnet_isa_be627108c3 (IsA hydnoraceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydnum is a kind of fungus genus", "pln": ["(: cnet_isa_35e0f71fb0 (IsA hydnum fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydra is a kind of hydrozoan", "pln": ["(: cnet_isa_e32961a91e (IsA hydra hydrozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydra is a kind of object", "pln": ["(: cnet_isa_f5083a8e28 (IsA hydra object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hydra is a kind of trouble", "pln": ["(: cnet_isa_cedf3cbeb4 (IsA hydra trouble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydra is a kind of mythical monster", "pln": ["(: cnet_isa_17101506b3 (IsA hydra mythical_monster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydramnio is a kind of abnormality", "pln": ["(: cnet_isa_5c6fc729df (IsA hydramnio abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hydrangea is a kind of shrub", "pln": ["(: cnet_isa_0c6ee6a593 (IsA hydrangea shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrangeaceae is a kind of rosid dicot family", "pln": ["(: cnet_isa_c927194ef7 (IsA hydrangeaceae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrant is a kind of discharge pipe", "pln": ["(: cnet_isa_79e93f590f (IsA hydrant discharge_pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrarthrosis is a kind of inflammation", "pln": ["(: cnet_isa_f9fca62d01 (IsA hydrarthrosis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrastis is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_66becfedad (IsA hydrastis magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrate is a kind of compound", "pln": ["(: cnet_isa_17064d28e3 (IsA hydrate compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydration is a kind of association", "pln": ["(: cnet_isa_9ea0512a7a (IsA hydration association) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydraulic brake is a kind of brake system", "pln": ["(: cnet_isa_26b0a673ad (IsA hydraulic_brake brake_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydraulic cement is a kind of cement", "pln": ["(: cnet_isa_8c700b43e4 (IsA hydraulic_cement cement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydraulic engineering is a kind of civil engineering", "pln": ["(: cnet_isa_7cdc726df2 (IsA hydraulic_engineering civil_engineering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydraulic press is a kind of press", "pln": ["(: cnet_isa_c33ca97194 (IsA hydraulic_press press) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydraulic pump is a kind of pump", "pln": ["(: cnet_isa_6b015c3ec4 (IsA hydraulic_pump pump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydraulic system is a kind of mechanism", "pln": ["(: cnet_isa_485a3682bd (IsA hydraulic_system mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydraulic transmission is a kind of hydraulic system", "pln": ["(: cnet_isa_39cdb4f405 (IsA hydraulic_transmission hydraulic_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hydraulic transmission is a kind of transmission", "pln": ["(: cnet_isa_bba1712094 (IsA hydraulic_transmission transmission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrazine is a kind of reducing agent", "pln": ["(: cnet_isa_215fbc44bd (IsA hydrazine reducing_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrazo group is a kind of group", "pln": ["(: cnet_isa_c7bf97f26a (IsA hydrazo_group group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrazoic acid is a kind of explosive", "pln": ["(: cnet_isa_51aeaedbaa (IsA hydrazoic_acid explosive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrazoic acid is a kind of hydride", "pln": ["(: cnet_isa_f05ad79168 (IsA hydrazoic_acid hydride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrazoite is a kind of azide", "pln": ["(: cnet_isa_fa4fba6c23 (IsA hydrazoite azide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydremia is a kind of blood disease", "pln": ["(: cnet_isa_7c3a38a8d4 (IsA hydremia blood_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydride is a kind of binary compound", "pln": ["(: cnet_isa_c24af92f4a (IsA hydride binary_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrilla is a kind of aquatic plant", "pln": ["(: cnet_isa_90e9d32107 (IsA hydrilla aquatic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hydriodic acid is a kind of acid", "pln": ["(: cnet_isa_a0070d98a3 (IsA hydriodic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrobate is a kind of bird genus", "pln": ["(: cnet_isa_c071d50ecc (IsA hydrobate bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrobatidae is a kind of bird family", "pln": ["(: cnet_isa_1df31a799b (IsA hydrobatidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrobromic acid is a kind of acid", "pln": ["(: cnet_isa_d660a16217 (IsA hydrobromic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrocarbon is a kind of organic compound", "pln": ["(: cnet_isa_e109b06960 (IsA hydrocarbon organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrocele is a kind of disorder", "pln": ["(: cnet_isa_407acafad7 (IsA hydrocele disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrocephalus is a kind of abnormality", "pln": ["(: cnet_isa_7eafa0e721 (IsA hydrocephalus abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrocharis is a kind of monocot genus", "pln": ["(: cnet_isa_8220b68143 (IsA hydrocharis monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hydrocharitaceae is a kind of monocot family", "pln": ["(: cnet_isa_19eb122e8e (IsA hydrocharitaceae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrochloric acid is a kind of acid", "pln": ["(: cnet_isa_df0dbba5ef (IsA hydrochloric_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrochloride is a kind of complex", "pln": ["(: cnet_isa_d81af7ab38 (IsA hydrochloride complex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrochlorofluorocarbon is a kind of chlorofluorocarbon", "pln": ["(: cnet_isa_b73bea3312 (IsA hydrochlorofluorocarbon chlorofluorocarbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrochoeridae is a kind of mammal family", "pln": ["(: cnet_isa_a4fc330182 (IsA hydrochoeridae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrochoerus is a kind of mammal genus", "pln": ["(: cnet_isa_9e6cb8426a (IsA hydrochoerus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrocolloid is a kind of substance", "pln": ["(: cnet_isa_ed4eff218b (IsA hydrocolloid substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrocortisone is a kind of corticosteroid", "pln": ["(: cnet_isa_dd9a0fe772 (IsA hydrocortisone corticosteroid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrocracking is a kind of cracking", "pln": ["(: cnet_isa_414190e51f (IsA hydrocracking cracking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrocyanic acid is a kind of acid", "pln": ["(: cnet_isa_c2757544b4 (IsA hydrocyanic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrodamalis is a kind of mammal genus", "pln": ["(: cnet_isa_774dbf2f59 (IsA hydrodamalis mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrodynamic is a kind of fluid mechanic", "pln": ["(: cnet_isa_746ead3f8d (IsA hydrodynamic fluid_mechanic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydroelectric turbine is a kind of turbine", "pln": ["(: cnet_isa_73b2cab3a5 (IsA hydroelectric_turbine turbine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydroelectricity is a kind of electricity", "pln": ["(: cnet_isa_9bfc70450d (IsA hydroelectricity electricity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydroflumethiazide is a kind of thiazide", "pln": ["(: cnet_isa_ede15d2844 (IsA hydroflumethiazide thiazide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrofluoric acid is a kind of acid", "pln": ["(: cnet_isa_0c1bd979d6 (IsA hydrofluoric_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hydrofluorocarbon is a kind of fluorocarbon", "pln": ["(: cnet_isa_733ca681ac (IsA hydrofluorocarbon fluorocarbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrofluorocarbon is a kind of greenhouse gas", "pln": ["(: cnet_isa_affdc289af (IsA hydrofluorocarbon greenhouse_gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrofoil is a kind of device", "pln": ["(: cnet_isa_68f506b213 (IsA hydrofoil device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrofoil is a kind of speedboat", "pln": ["(: cnet_isa_4467800d57 (IsA hydrofoil speedboat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrogel is a kind of gel", "pln": ["(: cnet_isa_dca29371cd (IsA hydrogel gel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrogen s chemical symbol is a kind of h", "pln": ["(: cnet_isa_29aec06a66 (IsA hydrogen_s_chemical_symbol h) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrogen is a kind of element", "pln": ["(: cnet_isa_4a11e663f3 (IsA hydrogen element) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hydrogen is a kind of gas", "pln": ["(: cnet_isa_4550d0b930 (IsA hydrogen gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrogen is a kind of piece of water molecule", "pln": ["(: cnet_isa_bffc089476 (IsA hydrogen piece_of_water_molecule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrogen is a kind of very reactive", "pln": ["(: cnet_isa_93dadc6eeb (IsA hydrogen very_reactive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrogen is a kind of chemical element", "pln": ["(: cnet_isa_927945565e (IsA hydrogen chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrogen atom is a kind of atom", "pln": ["(: cnet_isa_b33756e55e (IsA hydrogen_atom atom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrogen bomb is a kind of weapon", "pln": ["(: cnet_isa_3e46c2d6ea (IsA hydrogen_bomb weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrogen bomb is a kind of bomb", "pln": ["(: cnet_isa_95ca1e3546 (IsA hydrogen_bomb bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrogen bomb is a kind of nuclear weapon", "pln": ["(: cnet_isa_e12752e54f (IsA hydrogen_bomb nuclear_weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrogen bond is a kind of chemical bond", "pln": ["(: cnet_isa_2f5b4a6c22 (IsA hydrogen_bond chemical_bond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrogen bromide is a kind of bromide", "pln": ["(: cnet_isa_c47c3d40e9 (IsA hydrogen_bromide bromide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrogen chloride is a kind of acid", "pln": ["(: cnet_isa_055b0b98dc (IsA hydrogen_chloride acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrogen cyanide is a kind of compound", "pln": ["(: cnet_isa_453565a043 (IsA hydrogen_cyanide compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrogen fluoride is a kind of fluoride", "pln": ["(: cnet_isa_dc860b419d (IsA hydrogen_fluoride fluoride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrogen iodide is a kind of iodide", "pln": ["(: cnet_isa_e562185a1d (IsA hydrogen_iodide iodide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrogen ion is a kind of cation", "pln": ["(: cnet_isa_377580e623 (IsA hydrogen_ion cation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrogen ion is a kind of proton", "pln": ["(: cnet_isa_3523c8b748 (IsA hydrogen_ion proton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrogen ion concentration is a kind of concentration", "pln": ["(: cnet_isa_f7192ff612 (IsA hydrogen_ion_concentration concentration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrogen peroxide is a kind of oxidant", "pln": ["(: cnet_isa_084503e730 (IsA hydrogen_peroxide oxidant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrogen sulfide is a kind of sulfide", "pln": ["(: cnet_isa_17d57ce06c (IsA hydrogen_sulfide sulfide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrogenation is a kind of chemical process", "pln": ["(: cnet_isa_82293fcc15 (IsA hydrogenation chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrography is a kind of oceanography", "pln": ["(: cnet_isa_88646cb59c (IsA hydrography oceanography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydroiodic acid is a kind of acid", "pln": ["(: cnet_isa_b5769c9fa2 (IsA hydroiodic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrologist is a kind of geologist", "pln": ["(: cnet_isa_9d6c23387b (IsA hydrologist geologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrology is a kind of geophysic", "pln": ["(: cnet_isa_5caba29d97 (IsA hydrology geophysic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrolysate is a kind of product", "pln": ["(: cnet_isa_cea7b6551e (IsA hydrolysate product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrolysis is a kind of chemical reaction", "pln": ["(: cnet_isa_9256e6563f (IsA hydrolysis chemical_reaction) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydromancer is a kind of diviner", "pln": ["(: cnet_isa_a736d83297 (IsA hydromancer diviner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydromancy is a kind of divination", "pln": ["(: cnet_isa_02618ace77 (IsA hydromancy divination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydromante is a kind of amphibian genus", "pln": ["(: cnet_isa_fae3164b39 (IsA hydromante amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydromel is a kind of beverage", "pln": ["(: cnet_isa_bbb9541c64 (IsA hydromel beverage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrometer is a kind of measuring instrument", "pln": ["(: cnet_isa_f9b8cf5fea (IsA hydrometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrometry is a kind of measurement", "pln": ["(: cnet_isa_f2fbbdd1e0 (IsA hydrometry measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydromyinae is a kind of mammal family", "pln": ["(: cnet_isa_34434fadc7 (IsA hydromyinae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydromy is a kind of mammal genus", "pln": ["(: cnet_isa_1e5815d0bb (IsA hydromy mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydronephrosis is a kind of pathology", "pln": ["(: cnet_isa_dfd50e3263 (IsA hydronephrosis pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydropathy is a kind of treatment", "pln": ["(: cnet_isa_f5f64a1215 (IsA hydropathy treatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrophidae is a kind of reptile family", "pln": ["(: cnet_isa_9d159d3905 (IsA hydrophidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrophobia is a kind of simple phobia", "pln": ["(: cnet_isa_008dc36ae3 (IsA hydrophobia simple_phobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrophobia is a kind of symptom", "pln": ["(: cnet_isa_6d63667ff9 (IsA hydrophobia symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrophobicity is a kind of property", "pln": ["(: cnet_isa_4b4072831d (IsA hydrophobicity property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrophyllaceae is a kind of asterid dicot family", "pln": ["(: cnet_isa_b2cd4e64f2 (IsA hydrophyllaceae asterid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hydrophyllum is a kind of asterid dicot genus", "pln": ["(: cnet_isa_842f4aa7e0 (IsA hydrophyllum asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hydroplane racing is a kind of boat racing", "pln": ["(: cnet_isa_8e339841b1 (IsA hydroplane_racing boat_racing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydroponic is a kind of farming", "pln": ["(: cnet_isa_c45bfbdb9b (IsA hydroponic farming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hydrosphere is a kind of layer", "pln": ["(: cnet_isa_bbb9f0b2d7 (IsA hydrosphere layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrostatic head is a kind of pressure", "pln": ["(: cnet_isa_23146f434c (IsA hydrostatic_head pressure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrostatic is a kind of fluid mechanic", "pln": ["(: cnet_isa_3a062b7aa3 (IsA hydrostatic fluid_mechanic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrothorax is a kind of congestion", "pln": ["(: cnet_isa_f88b4c5db9 (IsA hydrothorax congestion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydroxide is a kind of compound", "pln": ["(: cnet_isa_8138abf208 (IsA hydroxide compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydroxide ion is a kind of anion", "pln": ["(: cnet_isa_80058db974 (IsA hydroxide_ion anion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydroxy acid is a kind of acid", "pln": ["(: cnet_isa_a9ce5c8d9b (IsA hydroxy_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hydroxybenzoic acid is a kind of hydroxy acid", "pln": ["(: cnet_isa_19f46d7ace (IsA hydroxybenzoic_acid hydroxy_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydroxybutyric acid is a kind of butyric acid", "pln": ["(: cnet_isa_8d54abeb75 (IsA hydroxybutyric_acid butyric_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hydroxyl is a kind of group", "pln": ["(: cnet_isa_0482ccf1d0 (IsA hydroxyl group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydroxymethyl is a kind of methyl", "pln": ["(: cnet_isa_501ce85d99 (IsA hydroxymethyl methyl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydroxyproline is a kind of amino acid", "pln": ["(: cnet_isa_e0f3c9b220 (IsA hydroxyproline amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrozoa is a kind of class", "pln": ["(: cnet_isa_303293072b (IsA hydrozoa class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hydrozoan is a kind of coelenterate", "pln": ["(: cnet_isa_0c4bdc8623 (IsA hydrozoan coelenterate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyemoschus is a kind of mammal genus", "pln": ["(: cnet_isa_f0655bf995 (IsA hyemoschus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyena is a kind of canine", "pln": ["(: cnet_isa_80e6deef1b (IsA hyena canine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hygiene is a kind of medicine", "pln": ["(: cnet_isa_b4de1c53e8 (IsA hygiene medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hygiene is a kind of sanitariness", "pln": ["(: cnet_isa_6b68686525 (IsA hygiene sanitariness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hygienist is a kind of specialist", "pln": ["(: cnet_isa_7177979398 (IsA hygienist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hygrocybe is a kind of fungus genus", "pln": ["(: cnet_isa_b8e98a00f1 (IsA hygrocybe fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hygrocybe acutoconica is a kind of waxycap", "pln": ["(: cnet_isa_016e252b7e (IsA hygrocybe_acutoconica waxycap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hygrodeik is a kind of hygrometer", "pln": ["(: cnet_isa_b04de18a93 (IsA hygrodeik hygrometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hygrometer is a kind of measuring instrument", "pln": ["(: cnet_isa_04f27044a8 (IsA hygrometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hygrophoraceae is a kind of fungus family", "pln": ["(: cnet_isa_5cf6ff9438 (IsA hygrophoraceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hygrophorus is a kind of fungus genus", "pln": ["(: cnet_isa_4bda80e655 (IsA hygrophorus fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hygrophorus borealis is a kind of waxycap", "pln": ["(: cnet_isa_41e6a93689 (IsA hygrophorus_borealis waxycap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hygrophorus caeruleus is a kind of waxycap", "pln": ["(: cnet_isa_e7dab0b1dd (IsA hygrophorus_caeruleus waxycap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hygrophorus inocybiformis is a kind of waxycap", "pln": ["(: cnet_isa_c670d69ac6 (IsA hygrophorus_inocybiformis waxycap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hygrophorus kauffmanii is a kind of waxycap", "pln": ["(: cnet_isa_6144a827a9 (IsA hygrophorus_kauffmanii waxycap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hygrophorus marzuolus is a kind of waxycap", "pln": ["(: cnet_isa_4a07ac6ff1 (IsA hygrophorus_marzuolus waxycap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hygrophorus purpurascen is a kind of waxycap", "pln": ["(: cnet_isa_d96700ea8b (IsA hygrophorus_purpurascen waxycap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hygrophorus russula is a kind of waxycap", "pln": ["(: cnet_isa_00573d5470 (IsA hygrophorus_russula waxycap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hygrophorus sordidus is a kind of waxycap", "pln": ["(: cnet_isa_e441e2f206 (IsA hygrophorus_sordidus waxycap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hygrophorus tennesseensis is a kind of waxycap", "pln": ["(: cnet_isa_8dbf0c8569 (IsA hygrophorus_tennesseensis waxycap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hygrophorus turundus is a kind of waxycap", "pln": ["(: cnet_isa_de97e25f7b (IsA hygrophorus_turundus waxycap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hygrophyte is a kind of plant", "pln": ["(: cnet_isa_0a5aa4d580 (IsA hygrophyte plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hygroscope is a kind of hygrometer", "pln": ["(: cnet_isa_d047161a1f (IsA hygroscope hygrometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hygrotrama is a kind of fungus genus", "pln": ["(: cnet_isa_9abd34aabd (IsA hygrotrama fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hygrotrama foeten is a kind of waxycap", "pln": ["(: cnet_isa_9b27f7a1d7 (IsA hygrotrama_foeten waxycap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyla is a kind of amphibian genus", "pln": ["(: cnet_isa_7a157439fb (IsA hyla amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hylactophryne is a kind of amphibian genus", "pln": ["(: cnet_isa_0a25e54ef4 (IsA hylactophryne amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hylidae is a kind of amphibian family", "pln": ["(: cnet_isa_9f20bea880 (IsA hylidae amphibian_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hylobate is a kind of mammal genus", "pln": ["(: cnet_isa_ba0123e764 (IsA hylobate mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hylobatidae is a kind of mammal family", "pln": ["(: cnet_isa_0bb7801fbf (IsA hylobatidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hylocereus is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_449a7214e7 (IsA hylocereus caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hylocichla is a kind of bird genus", "pln": ["(: cnet_isa_0db85178ec (IsA hylocichla bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hylophylax is a kind of bird genus", "pln": ["(: cnet_isa_343d3cf285 (IsA hylophylax bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hymen is a kind of mucous membrane", "pln": ["(: cnet_isa_81e5d849d7 (IsA hymen mucous_membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "hymenomycetes is a kind of class", "pln": ["(: cnet_isa_549bfb541c (IsA hymenomycetes class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hymenaea is a kind of rosid dicot genus", "pln": ["(: cnet_isa_890fe19682 (IsA hymenaea rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hymenanthera is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_9abc957d00 (IsA hymenanthera dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hymeneal is a kind of hymn", "pln": ["(: cnet_isa_3e7f049e89 (IsA hymeneal hymn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hymenium is a kind of reproductive structure", "pln": ["(: cnet_isa_915574dacd (IsA hymenium reproductive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hymenogastrale is a kind of fungus order", "pln": ["(: cnet_isa_915b2d7e92 (IsA hymenogastrale fungus_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hymenomycete is a kind of class", "pln": ["(: cnet_isa_44259f2faa (IsA hymenomycete class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hymenophyllaceae is a kind of fern family", "pln": ["(: cnet_isa_8968fc6970 (IsA hymenophyllaceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hymenophyllum is a kind of fern genus", "pln": ["(: cnet_isa_cd1337f8c1 (IsA hymenophyllum fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hymenoptera is a kind of animal order", "pln": ["(: cnet_isa_3194376279 (IsA hymenoptera animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hymenopterous insect is a kind of insect", "pln": ["(: cnet_isa_9169725991 (IsA hymenopterous_insect insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hymn is a kind of religious song", "pln": ["(: cnet_isa_e5d6a44282 (IsA hymn religious_song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hymnal is a kind of songbook", "pln": ["(: cnet_isa_eb9f69f5ea (IsA hymnal songbook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hynerpeton is a kind of amphibian genus", "pln": ["(: cnet_isa_4c003cabf2 (IsA hynerpeton amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hynerpeton bassetti is a kind of amphibian", "pln": ["(: cnet_isa_530b0df69c (IsA hynerpeton_bassetti amphibian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyoid is a kind of bone", "pln": ["(: cnet_isa_a34f60684e (IsA hyoid bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyoscyamine is a kind of alkaloid", "pln": ["(: cnet_isa_dcb5de1d6e (IsA hyoscyamine alkaloid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyoscyamine is a kind of poison", "pln": ["(: cnet_isa_6d6f0b0043 (IsA hyoscyamine poison) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyoscyamus is a kind of asterid dicot genus", "pln": ["(: cnet_isa_65667b5c99 (IsA hyoscyamus asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypallage is a kind of rhetorical device", "pln": ["(: cnet_isa_82e3722110 (IsA hypallage rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypanthium is a kind of plant organ", "pln": ["(: cnet_isa_49f3fb2df3 (IsA hypanthium plant_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypentelium is a kind of fish genus", "pln": ["(: cnet_isa_8e61723545 (IsA hypentelium fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyper eutectoid steel is a kind of carbon steel", "pln": ["(: cnet_isa_d47b40b90c (IsA hyper_eutectoid_steel carbon_steel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperacidity is a kind of acidity", "pln": ["(: cnet_isa_95f380528e (IsA hyperacidity acidity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperactivity is a kind of disorder", "pln": ["(: cnet_isa_632d380917 (IsA hyperactivity disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperacusis is a kind of hearing impairment", "pln": ["(: cnet_isa_58059fb6b0 (IsA hyperacusis hearing_impairment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperbaric chamber is a kind of chamber", "pln": ["(: cnet_isa_52414c7459 (IsA hyperbaric_chamber chamber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperbaton is a kind of rhetorical device", "pln": ["(: cnet_isa_8b9bc9fdd7 (IsA hyperbaton rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperbetalipoproteinemia is a kind of genetic disease", "pln": ["(: cnet_isa_e0bc8b2176 (IsA hyperbetalipoproteinemia genetic_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperbetalipoproteinemia is a kind of hyperlipoproteinemia", "pln": ["(: cnet_isa_d0b80afe08 (IsA hyperbetalipoproteinemia hyperlipoproteinemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperbilirubinemia is a kind of pathology", "pln": ["(: cnet_isa_3cbd8248d5 (IsA hyperbilirubinemia pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperbilirubinemia of newborn is a kind of hyperbilirubinemia", "pln": ["(: cnet_isa_d1f859775d (IsA hyperbilirubinemia_of_newborn hyperbilirubinemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperbola is a kind of conic section", "pln": ["(: cnet_isa_110f58c0b5 (IsA hyperbola conic_section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperbole is a kind of trope", "pln": ["(: cnet_isa_c61a6619c5 (IsA hyperbole trope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperbolic geometry is a kind of non euclidean geometry", "pln": ["(: cnet_isa_4a4f162e15 (IsA hyperbolic_geometry non_euclidean_geometry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperboloid is a kind of quadric", "pln": ["(: cnet_isa_1c7c5c8c3c (IsA hyperboloid quadric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypercalcemia is a kind of symptom", "pln": ["(: cnet_isa_467619f2cd (IsA hypercalcemia symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypercalciuria is a kind of symptom", "pln": ["(: cnet_isa_34079d1c7e (IsA hypercalciuria symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypercapnia is a kind of physiological state", "pln": ["(: cnet_isa_94c0675d52 (IsA hypercapnia physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypercatalectic is a kind of line of poetry", "pln": ["(: cnet_isa_69ce2f1efd (IsA hypercatalectic line_of_poetry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hypercellularity is a kind of cellularity", "pln": ["(: cnet_isa_0d3c6607b0 (IsA hypercellularity cellularity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypercholesterolemia is a kind of symptom", "pln": ["(: cnet_isa_b2fdd63fc0 (IsA hypercholesterolemia symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperchromic anemia is a kind of anemia", "pln": ["(: cnet_isa_92d1b960e6 (IsA hyperchromic_anemia anemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypercoaster is a kind of roller coaster", "pln": ["(: cnet_isa_e4eb82b721 (IsA hypercoaster roller_coaster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperemesis is a kind of vomit", "pln": ["(: cnet_isa_e1b0fa027d (IsA hyperemesis vomit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperemesis gravidarum is a kind of hyperemesis", "pln": ["(: cnet_isa_eafddde01b (IsA hyperemesis_gravidarum hyperemesis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperemia is a kind of congestion", "pln": ["(: cnet_isa_be001f1a27 (IsA hyperemia congestion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperextension is a kind of extension", "pln": ["(: cnet_isa_ff90aa3987 (IsA hyperextension extension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperfocal distance is a kind of distance", "pln": ["(: cnet_isa_73f5bcea4e (IsA hyperfocal_distance distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperglycemia is a kind of symptom", "pln": ["(: cnet_isa_860ce2fdc7 (IsA hyperglycemia symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperhidrosis is a kind of perspiration", "pln": ["(: cnet_isa_6e940c662a (IsA hyperhidrosis perspiration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypericaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_08c9757143 (IsA hypericaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypericism is a kind of dermatitis", "pln": ["(: cnet_isa_cf7f3b04a3 (IsA hypericism dermatitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypericum is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_225705eb0c (IsA hypericum dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperkalemia is a kind of symptom", "pln": ["(: cnet_isa_1903fb4057 (IsA hyperkalemia symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperlink is a kind of link", "pln": ["(: cnet_isa_dc8e81cd41 (IsA hyperlink link) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperlipoproteinemia is a kind of metabolic disorder", "pln": ["(: cnet_isa_0f67266c26 (IsA hyperlipoproteinemia metabolic_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypermarket is a kind of supermarket", "pln": ["(: cnet_isa_431d720173 (IsA hypermarket supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypermastigina is a kind of animal order", "pln": ["(: cnet_isa_ad94b39e59 (IsA hypermastigina animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypermastigote is a kind of flagellate", "pln": ["(: cnet_isa_373c85f988 (IsA hypermastigote flagellate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hypermedia is a kind of multimedia", "pln": ["(: cnet_isa_85cff8d168 (IsA hypermedia multimedia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypermotility is a kind of illness", "pln": ["(: cnet_isa_52a458afd9 (IsA hypermotility illness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypernatremia is a kind of symptom", "pln": ["(: cnet_isa_f5482b21a8 (IsA hypernatremia symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypernym is a kind of word", "pln": ["(: cnet_isa_6175212e4a (IsA hypernym word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypernymy is a kind of semantic relation", "pln": ["(: cnet_isa_53d6f72d48 (IsA hypernymy semantic_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperoglyphe is a kind of fish genus", "pln": ["(: cnet_isa_7b88c3c173 (IsA hyperoglyphe fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperon is a kind of baryon", "pln": ["(: cnet_isa_23fa392c41 (IsA hyperon baryon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperoodon is a kind of mammal genus", "pln": ["(: cnet_isa_affa33f6a0 (IsA hyperoodon mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperope is a kind of visually impaired person", "pln": ["(: cnet_isa_fb6b0af677 (IsA hyperope visually_impaired_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperopia is a kind of ametropia", "pln": ["(: cnet_isa_c55c1f93dd (IsA hyperopia ametropia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hyperparathyroidism is a kind of glandular disease", "pln": ["(: cnet_isa_c8f85eece9 (IsA hyperparathyroidism glandular_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperpigmentation is a kind of physiological state", "pln": ["(: cnet_isa_6b0fef0c5d (IsA hyperpigmentation physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperpituitarism is a kind of glandular disease", "pln": ["(: cnet_isa_642d251359 (IsA hyperpituitarism glandular_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hyperplasia is a kind of dysplasia", "pln": ["(: cnet_isa_84510e60db (IsA hyperplasia dysplasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperpnea is a kind of breathing", "pln": ["(: cnet_isa_8b4cb60a1f (IsA hyperpnea breathing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperpyrexia is a kind of fever", "pln": ["(: cnet_isa_15d8d2ccc0 (IsA hyperpyrexia fever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperpyrexia is a kind of hyperthermia", "pln": ["(: cnet_isa_33bfabaad2 (IsA hyperpyrexia hyperthermia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypersecretion is a kind of secretion", "pln": ["(: cnet_isa_5666de14ad (IsA hypersecretion secretion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypersensitivity is a kind of sensitivity", "pln": ["(: cnet_isa_2ba4aa3b8f (IsA hypersensitivity sensitivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypersensitivity reaction is a kind of hypersensitivity", "pln": ["(: cnet_isa_92f1c0a769 (IsA hypersensitivity_reaction hypersensitivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypersomnia is a kind of sleep disorder", "pln": ["(: cnet_isa_ae48016f56 (IsA hypersomnia sleep_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypersplenism is a kind of symptom", "pln": ["(: cnet_isa_495114f3b7 (IsA hypersplenism symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypertensive is a kind of patient", "pln": ["(: cnet_isa_4c214383f1 (IsA hypertensive patient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypertext is a kind of machine readable text", "pln": ["(: cnet_isa_ce412a482f (IsA hypertext machine_readable_text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypertext markup language is a kind of markup language", "pln": ["(: cnet_isa_f8d17378d0 (IsA hypertext_markup_language markup_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypertext system is a kind of object oriented database management system", "pln": ["(: cnet_isa_7f72a7e185 (IsA hypertext_system object_oriented_database_management_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypertext transfer protocol is a kind of protocol", "pln": ["(: cnet_isa_174ab2b904 (IsA hypertext_transfer_protocol protocol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperthermia is a kind of physiological state", "pln": ["(: cnet_isa_5fe139bd80 (IsA hyperthermia physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperthyroidism is a kind of glandular disease", "pln": ["(: cnet_isa_95256fedf2 (IsA hyperthyroidism glandular_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypertonia is a kind of tonicity", "pln": ["(: cnet_isa_9a721985c2 (IsA hypertonia tonicity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypertonicity is a kind of osmotic pressure", "pln": ["(: cnet_isa_d1e8168f08 (IsA hypertonicity osmotic_pressure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypertrophic cardiomyopathy is a kind of cardiomyopathy", "pln": ["(: cnet_isa_684d266a30 (IsA hypertrophic_cardiomyopathy cardiomyopathy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypertrophy is a kind of dysplasia", "pln": ["(: cnet_isa_e7102dd30e (IsA hypertrophy dysplasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypervelocity is a kind of speed", "pln": ["(: cnet_isa_c6844c91c2 (IsA hypervelocity speed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyperventilation is a kind of breathing", "pln": ["(: cnet_isa_1a5ca0296a (IsA hyperventilation breathing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypervitaminosis is a kind of abnormality", "pln": ["(: cnet_isa_ba92f501af (IsA hypervitaminosis abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypervolemia is a kind of blood disease", "pln": ["(: cnet_isa_fc4f1057a7 (IsA hypervolemia blood_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypha is a kind of fibril", "pln": ["(: cnet_isa_c82a621ea8 (IsA hypha fibril) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyphantria is a kind of arthropod genus", "pln": ["(: cnet_isa_8ddedb86ae (IsA hyphantria arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyphantria cunea is a kind of webworm moth", "pln": ["(: cnet_isa_22910e5a5e (IsA hyphantria_cunea webworm_moth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyphema is a kind of bleeding", "pln": ["(: cnet_isa_df5cc6c443 (IsA hyphema bleeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyphen is a kind of punctuation", "pln": ["(: cnet_isa_7f4d4e03f0 (IsA hyphen punctuation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyphenation is a kind of punctuation", "pln": ["(: cnet_isa_ee8b013c0d (IsA hyphenation punctuation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypnagogue is a kind of agent", "pln": ["(: cnet_isa_c7d07b5d17 (IsA hypnagogue agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypnoanalysis is a kind of psychoanalysis", "pln": ["(: cnet_isa_b6e978949e (IsA hypnoanalysis psychoanalysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypnogenesis is a kind of induction", "pln": ["(: cnet_isa_e91769fe31 (IsA hypnogenesis induction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypnophobia is a kind of simple phobia", "pln": ["(: cnet_isa_eb6ed9f8a7 (IsA hypnophobia simple_phobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypnosis is a kind of psychological state", "pln": ["(: cnet_isa_8252b25ca0 (IsA hypnosis psychological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypnotherapy is a kind of psychotherapy", "pln": ["(: cnet_isa_5b4eaa2981 (IsA hypnotherapy psychotherapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypnotic trance is a kind of trance", "pln": ["(: cnet_isa_ca19e14197 (IsA hypnotic_trance trance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypnotism is a kind of influence", "pln": ["(: cnet_isa_7c6bd81658 (IsA hypnotism influence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypnotist is a kind of psychologist", "pln": ["(: cnet_isa_97c4f2a775 (IsA hypnotist psychologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypo is a kind of fixing agent", "pln": ["(: cnet_isa_27025cc0b1 (IsA hypo fixing_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypo eutectoid steel is a kind of carbon steel", "pln": ["(: cnet_isa_2e7e28ff61 (IsA hypo_eutectoid_steel carbon_steel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypobasidium is a kind of plant organ", "pln": ["(: cnet_isa_6b22ebc97a (IsA hypobasidium plant_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypobetalipoproteinemia is a kind of hypolipoproteinemia", "pln": ["(: cnet_isa_10e62c0b8f (IsA hypobetalipoproteinemia hypolipoproteinemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypocalcemia is a kind of symptom", "pln": ["(: cnet_isa_3bc2ac9c73 (IsA hypocalcemia symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hypocapnia is a kind of physiological state", "pln": ["(: cnet_isa_6cc908dcee (IsA hypocapnia physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypocellularity is a kind of cellularity", "pln": ["(: cnet_isa_6067e127da (IsA hypocellularity cellularity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hypochaeris is a kind of asterid dicot genus", "pln": ["(: cnet_isa_682cb09ed7 (IsA hypochaeris asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypochlorite is a kind of salt", "pln": ["(: cnet_isa_afebd4e1e3 (IsA hypochlorite salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hypochlorous acid is a kind of acid", "pln": ["(: cnet_isa_35e319e615 (IsA hypochlorous_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypochondria is a kind of anxiety", "pln": ["(: cnet_isa_c3679e023f (IsA hypochondria anxiety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypochondriac is a kind of patient", "pln": ["(: cnet_isa_a8b0bb203e (IsA hypochondriac patient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypochondrium is a kind of area", "pln": ["(: cnet_isa_6736c50ae0 (IsA hypochondrium area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypochromic anemia is a kind of anemia", "pln": ["(: cnet_isa_f8b6441976 (IsA hypochromic_anemia anemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypocreaceae is a kind of fungus family", "pln": ["(: cnet_isa_9ffe23233c (IsA hypocreaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypocreale is a kind of fungus order", "pln": ["(: cnet_isa_b522bdf441 (IsA hypocreale fungus_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypocrisy is a kind of insincerity", "pln": ["(: cnet_isa_ced1e801c5 (IsA hypocrisy insincerity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypocrisy is a kind of pretense", "pln": ["(: cnet_isa_882ec7c25b (IsA hypocrisy pretense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypocrite is a kind of deceiver", "pln": ["(: cnet_isa_9e75aca318 (IsA hypocrite deceiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypocycloid is a kind of roulette", "pln": ["(: cnet_isa_74edaeb953 (IsA hypocycloid roulette) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypoderma is a kind of arthropod genus", "pln": ["(: cnet_isa_4999bd7eea (IsA hypoderma arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypodermic needle is a kind of needle", "pln": ["(: cnet_isa_aa6d5c6d19 (IsA hypodermic_needle needle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypodermic syringe is a kind of syringe", "pln": ["(: cnet_isa_7ad17a93b5 (IsA hypodermic_syringe syringe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypodermis is a kind of layer", "pln": ["(: cnet_isa_70fdb360c3 (IsA hypodermis layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypoesthesia is a kind of disability", "pln": ["(: cnet_isa_928e819db0 (IsA hypoesthesia disability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hypogammaglobulinemia is a kind of immunodeficiency", "pln": ["(: cnet_isa_ef86f73449 (IsA hypogammaglobulinemia immunodeficiency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypogastric plexus is a kind of nerve plexus", "pln": ["(: cnet_isa_87c3c54ff8 (IsA hypogastric_plexus nerve_plexus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypogastric vein is a kind of iliac vein", "pln": ["(: cnet_isa_a9c88663c9 (IsA hypogastric_vein iliac_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypoglossal is a kind of cranial nerve", "pln": ["(: cnet_isa_2765c882c7 (IsA hypoglossal cranial_nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypoglycemia is a kind of symptom", "pln": ["(: cnet_isa_18d3f6b6fe (IsA hypoglycemia symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypoglycemic agent is a kind of agent", "pln": ["(: cnet_isa_51eacdfcdf (IsA hypoglycemic_agent agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypogonadism is a kind of incompetence", "pln": ["(: cnet_isa_d4771410e9 (IsA hypogonadism incompetence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypokalemia is a kind of symptom", "pln": ["(: cnet_isa_a05acccadc (IsA hypokalemia symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypolipoproteinemia is a kind of metabolic disorder", "pln": ["(: cnet_isa_71a15667bc (IsA hypolipoproteinemia metabolic_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyponatremia is a kind of symptom", "pln": ["(: cnet_isa_6eb033d5a1 (IsA hyponatremia symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hyponitrous acid is a kind of acid", "pln": ["(: cnet_isa_28c96fd7e4 (IsA hyponitrous_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyponym is a kind of word", "pln": ["(: cnet_isa_35ce9b8cbd (IsA hyponym word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyponymy is a kind of semantic relation", "pln": ["(: cnet_isa_d1a3b2f893 (IsA hyponymy semantic_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hypopachus is a kind of amphibian genus", "pln": ["(: cnet_isa_279bcba527 (IsA hypopachus amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypoparathyroidism is a kind of glandular disease", "pln": ["(: cnet_isa_53fe067df4 (IsA hypoparathyroidism glandular_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hypophosphoric acid is a kind of oxyacid", "pln": ["(: cnet_isa_714e3a2538 (IsA hypophosphoric_acid oxyacid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypophosphorous acid is a kind of oxyacid", "pln": ["(: cnet_isa_76c861b9ed (IsA hypophosphorous_acid oxyacid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypophyseal stalk is a kind of infundibulum", "pln": ["(: cnet_isa_a216f8a723 (IsA hypophyseal_stalk infundibulum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypophysectomy is a kind of ablation", "pln": ["(: cnet_isa_34fccc0d5f (IsA hypophysectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypophysial dwarf is a kind of dwarf", "pln": ["(: cnet_isa_9592cdc6dc (IsA hypophysial_dwarf dwarf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypopigmentation is a kind of physiological state", "pln": ["(: cnet_isa_c7ce085b32 (IsA hypopigmentation physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypopity is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_72172707ba (IsA hypopity dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypoplasia is a kind of dysplasia", "pln": ["(: cnet_isa_844bc4a3aa (IsA hypoplasia dysplasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypoplastic anemia is a kind of anemia", "pln": ["(: cnet_isa_e367ea47eb (IsA hypoplastic_anemia anemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypopnea is a kind of breathing", "pln": ["(: cnet_isa_6ae3563d3b (IsA hypopnea breathing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypoproteinemia is a kind of symptom", "pln": ["(: cnet_isa_247d4199e3 (IsA hypoproteinemia symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyposmia is a kind of dysomia", "pln": ["(: cnet_isa_da681cc58a (IsA hyposmia dysomia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypospadia is a kind of abnormality", "pln": ["(: cnet_isa_b8c63ee5f4 (IsA hypospadia abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypostasis is a kind of kernel", "pln": ["(: cnet_isa_22ddeac972 (IsA hypostasis kernel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypostasis is a kind of god almighty", "pln": ["(: cnet_isa_39366523fe (IsA hypostasis god_almighty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypostasis is a kind of bodily process", "pln": ["(: cnet_isa_b85605beb6 (IsA hypostasis bodily_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hypostasis is a kind of organic process", "pln": ["(: cnet_isa_0f53621fe7 (IsA hypostasis organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypostatization is a kind of objectification", "pln": ["(: cnet_isa_fcde79449d (IsA hypostatization objectification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypotension is a kind of cardiovascular disease", "pln": ["(: cnet_isa_74c3380bab (IsA hypotension cardiovascular_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypotensive is a kind of patient", "pln": ["(: cnet_isa_4672c7a116 (IsA hypotensive patient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypotenuse is a kind of flank", "pln": ["(: cnet_isa_a77b12bb5d (IsA hypotenuse flank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypothalamus is a kind of neural structure", "pln": ["(: cnet_isa_d137d3b346 (IsA hypothalamus neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypothermia is a kind of physiological state", "pln": ["(: cnet_isa_2e2030680a (IsA hypothermia physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypothesis is a kind of concept", "pln": ["(: cnet_isa_1a1af605c9 (IsA hypothesis concept) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypothesis is a kind of proposal", "pln": ["(: cnet_isa_e4b0cff2dd (IsA hypothesis proposal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypothetical is a kind of hypothesis", "pln": ["(: cnet_isa_4fedb71842 (IsA hypothetical hypothesis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypothetical creature is a kind of imaginary being", "pln": ["(: cnet_isa_5cdfe0fe90 (IsA hypothetical_creature imaginary_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hypothetical imperative is a kind of principle", "pln": ["(: cnet_isa_342ae56255 (IsA hypothetical_imperative principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypothrombinemia is a kind of blood disease", "pln": ["(: cnet_isa_2f85c4ae31 (IsA hypothrombinemia blood_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypothyroidism is a kind of glandular disease", "pln": ["(: cnet_isa_8514ef828e (IsA hypothyroidism glandular_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypotonia is a kind of tonicity", "pln": ["(: cnet_isa_84b8bb257b (IsA hypotonia tonicity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypotonicity is a kind of osmotic pressure", "pln": ["(: cnet_isa_df5d2566ab (IsA hypotonicity osmotic_pressure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypovolemia is a kind of blood disease", "pln": ["(: cnet_isa_00f3e4706b (IsA hypovolemia blood_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypovolemic shock is a kind of shock", "pln": ["(: cnet_isa_de6f154237 (IsA hypovolemic_shock shock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypoxia is a kind of drive", "pln": ["(: cnet_isa_1be14e6aa6 (IsA hypoxia drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypoxic hypoxia is a kind of hypoxia", "pln": ["(: cnet_isa_7116dad819 (IsA hypoxic_hypoxia hypoxia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypoxidaceae is a kind of liliid monocot family", "pln": ["(: cnet_isa_bc41671850 (IsA hypoxidaceae liliid_monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypoxis is a kind of liliid monocot genus", "pln": ["(: cnet_isa_0e085a5940 (IsA hypoxis liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypozeugma is a kind of rhetorical device", "pln": ["(: cnet_isa_b5151e403f (IsA hypozeugma rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypozeuxis is a kind of rhetorical device", "pln": ["(: cnet_isa_27903b855a (IsA hypozeuxis rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypsiglena is a kind of reptile genus", "pln": ["(: cnet_isa_e7702a7bd3 (IsA hypsiglena reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypsiprymnodon is a kind of mammal genus", "pln": ["(: cnet_isa_aad743c677 (IsA hypsiprymnodon mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypsography is a kind of geology", "pln": ["(: cnet_isa_4de543bdac (IsA hypsography geology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hypsometer is a kind of altimeter", "pln": ["(: cnet_isa_e3378d89af (IsA hypsometer altimeter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hypsometry is a kind of measurement", "pln": ["(: cnet_isa_17f91ec91e (IsA hypsometry measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyracoidea is a kind of animal order", "pln": ["(: cnet_isa_d5b7bbcafc (IsA hyracoidea animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyracotherium is a kind of mammal genus", "pln": ["(: cnet_isa_b29e70cdb9 (IsA hyracotherium mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyrax is a kind of placental", "pln": ["(: cnet_isa_ac980086c1 (IsA hyrax placental) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyson is a kind of green tea", "pln": ["(: cnet_isa_520cdc9d49 (IsA hyson green_tea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hyssop is a kind of herb", "pln": ["(: cnet_isa_0919def8df (IsA hyssop herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyssop oil is a kind of oil", "pln": ["(: cnet_isa_7cc0c2ed72 (IsA hyssop_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hyssopus is a kind of asterid dicot genus", "pln": ["(: cnet_isa_b000049775 (IsA hyssopus asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hysterectomy is a kind of ablation", "pln": ["(: cnet_isa_9545d21dbb (IsA hysterectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hysteresis is a kind of physical phenomenon", "pln": ["(: cnet_isa_0034ec672c (IsA hysteresis physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hysteria is a kind of fear", "pln": ["(: cnet_isa_b6b41cbd6c (IsA hysteria fear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hysteria is a kind of neurosis", "pln": ["(: cnet_isa_6b98008592 (IsA hysteria neurosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hysteric is a kind of neurotic", "pln": ["(: cnet_isa_1976ea95b8 (IsA hysteric neurotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hysteric is a kind of attack", "pln": ["(: cnet_isa_fe3d41f819 (IsA hysteric attack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hysterocatalepsy is a kind of hysteria", "pln": ["(: cnet_isa_edc8f4c834 (IsA hysterocatalepsy hysteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hysteron proteron is a kind of logical fallacy", "pln": ["(: cnet_isa_508a8fa09e (IsA hysteron_proteron logical_fallacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "hysteron proteron is a kind of rhetorical device", "pln": ["(: cnet_isa_35ccd9a1d2 (IsA hysteron_proteron rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hysterosalpingogram is a kind of roentgenogram", "pln": ["(: cnet_isa_38957d205c (IsA hysterosalpingogram roentgenogram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hysteroscopy is a kind of endoscopy", "pln": ["(: cnet_isa_c9c670ac7f (IsA hysteroscopy endoscopy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hysterotomy is a kind of operation", "pln": ["(: cnet_isa_a09b93a3ed (IsA hysterotomy operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hystricidae is a kind of mammal family", "pln": ["(: cnet_isa_97cf7109c2 (IsA hystricidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "hystricomorpha is a kind of animal order", "pln": ["(: cnet_isa_aa66aa4181 (IsA hystricomorpha animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "i is a kind of letter", "pln": ["(: cnet_isa_de9c181194 (IsA i letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "i beam is a kind of girder", "pln": ["(: cnet_isa_e576745746 (IsA i_beam girder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iamb is a kind of metrical foot", "pln": ["(: cnet_isa_d5c016962b (IsA iamb metrical_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "iambic is a kind of verse", "pln": ["(: cnet_isa_65a44ccccc (IsA iambic verse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iberian is a kind of asiatic", "pln": ["(: cnet_isa_15bcad1bc0 (IsA iberian asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iberian is a kind of european", "pln": ["(: cnet_isa_af244d5c53 (IsA iberian european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iberis is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_6e1cbb0d63 (IsA iberis dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ibero mesornis is a kind of bird", "pln": ["(: cnet_isa_46f5777bbc (IsA ibero_mesornis bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ibex is a kind of wild goat", "pln": ["(: cnet_isa_a2adc11f2b (IsA ibex wild_goat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ibis is a kind of wading bird", "pln": ["(: cnet_isa_0f063b8a29 (IsA ibis wading_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ibizan hound is a kind of hound", "pln": ["(: cnet_isa_335562b2e6 (IsA ibizan_hound hound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ibm is a kind of company", "pln": ["(: cnet_isa_f0b4f43474 (IsA ibm company) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ibm is a kind of computer", "pln": ["(: cnet_isa_6366f8b68c (IsA ibm computer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ibm is a kind of computer manufacturer", "pln": ["(: cnet_isa_8b677dcae1 (IsA ibm computer_manufacturer) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ibm is a kind of manufacturer of information processing device", "pln": ["(: cnet_isa_889442f6b9 (IsA ibm manufacturer_of_information_processing_device) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ibm is a kind of specific brand of pc", "pln": ["(: cnet_isa_5c64eeed14 (IsA ibm specific_brand_of_pc) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ibolium privet is a kind of privet", "pln": ["(: cnet_isa_c16c6c962f (IsA ibolium_privet privet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ice is a kind of frozen water", "pln": ["(: cnet_isa_5d310d1ba3 (IsA ice frozen_water) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice is a kind of material", "pln": ["(: cnet_isa_34b71dff18 (IsA ice material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice is a kind of near frictionless surface", "pln": ["(: cnet_isa_7bef21e6cb (IsA ice near_frictionless_surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice is a kind of frozen dessert", "pln": ["(: cnet_isa_5c44d88579 (IsA ice frozen_dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice is a kind of object", "pln": ["(: cnet_isa_5f28237fb7 (IsA ice object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice is a kind of diamond", "pln": ["(: cnet_isa_798a02be18 (IsA ice diamond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice is a kind of crystal", "pln": ["(: cnet_isa_3b205d281b (IsA ice crystal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice age is a kind of period", "pln": ["(: cnet_isa_20012f7d39 (IsA ice_age period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice ax is a kind of ax", "pln": ["(: cnet_isa_6cb94ab081 (IsA ice_ax ax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice bear is a kind of bear", "pln": ["(: cnet_isa_d3e93d830c (IsA ice_bear bear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice cream is a kind of dessert", "pln": ["(: cnet_isa_58e053b31c (IsA ice_cream dessert) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice cream is a kind of frozen dairy treat", "pln": ["(: cnet_isa_6ed83406f4 (IsA ice_cream frozen_dairy_treat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice cream is a kind of good dessert item", "pln": ["(: cnet_isa_f27122a115 (IsA ice_cream good_dessert_item) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice cream is a kind of tasty treat", "pln": ["(: cnet_isa_9d0d738761 (IsA ice_cream tasty_treat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice cream is a kind of frozen dessert", "pln": ["(: cnet_isa_9b022a1736 (IsA ice_cream frozen_dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice cream bean is a kind of tree", "pln": ["(: cnet_isa_36ecd569f0 (IsA ice_cream_bean tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice cream cake is a kind of frozen dessert", "pln": ["(: cnet_isa_1596ffc2d9 (IsA ice_cream_cake frozen_dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice cream cone is a kind of frozen dessert", "pln": ["(: cnet_isa_f64b953dcc (IsA ice_cream_cone frozen_dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ice cream float is a kind of ice cream soda", "pln": ["(: cnet_isa_249410188a (IsA ice_cream_float ice_cream_soda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice cream soda is a kind of drink", "pln": ["(: cnet_isa_15fb78d116 (IsA ice_cream_soda drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice cream sundae is a kind of frozen dessert", "pln": ["(: cnet_isa_bb4818f479 (IsA ice_cream_sundae frozen_dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice crystal is a kind of crystal", "pln": ["(: cnet_isa_4f18a8af09 (IsA ice_crystal crystal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice cube is a kind of cube", "pln": ["(: cnet_isa_b4e5f12e5d (IsA ice_cube cube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice field is a kind of ice mass", "pln": ["(: cnet_isa_43007a73b3 (IsA ice_field ice_mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice floe is a kind of ice mass", "pln": ["(: cnet_isa_4c3cb74f29 (IsA ice_floe ice_mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice fog is a kind of fog", "pln": ["(: cnet_isa_50052b1abe (IsA ice_fog fog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ice hockey is a kind of dangerous sport", "pln": ["(: cnet_isa_66dc350269 (IsA ice_hockey dangerous_sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice hockey is a kind of violent game", "pln": ["(: cnet_isa_ddfd4f1dd4 (IsA ice_hockey violent_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice hockey is a kind of athletic game", "pln": ["(: cnet_isa_caf2247210 (IsA ice_hockey athletic_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice hockey is a kind of contact sport", "pln": ["(: cnet_isa_0fd6b53e14 (IsA ice_hockey contact_sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice hockey rink is a kind of ice rink", "pln": ["(: cnet_isa_464c01851c (IsA ice_hockey_rink ice_rink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice lolly is a kind of frozen dessert", "pln": ["(: cnet_isa_60ed9fd8c7 (IsA ice_lolly frozen_dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice machine is a kind of electric refrigerator", "pln": ["(: cnet_isa_6ea15e0476 (IsA ice_machine electric_refrigerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice maker is a kind of kitchen appliance", "pln": ["(: cnet_isa_5ca8b9af95 (IsA ice_maker kitchen_appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice mass is a kind of geological formation", "pln": ["(: cnet_isa_d319e60131 (IsA ice_mass geological_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice milk is a kind of frozen dessert", "pln": ["(: cnet_isa_08bb303a4a (IsA ice_milk frozen_dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice pack is a kind of bag", "pln": ["(: cnet_isa_35ffa1d96b (IsA ice_pack bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice plant is a kind of fig marigold", "pln": ["(: cnet_isa_802467eb8a (IsA ice_plant fig_marigold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice rink is a kind of rink", "pln": ["(: cnet_isa_0b3294f034 (IsA ice_rink rink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice show is a kind of show", "pln": ["(: cnet_isa_bbda414b80 (IsA ice_show show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice skate is a kind of skate", "pln": ["(: cnet_isa_00456a2015 (IsA ice_skate skate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice skater is a kind of skater", "pln": ["(: cnet_isa_ce9d99b35c (IsA ice_skater skater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice skating is a kind of skating", "pln": ["(: cnet_isa_32b2814494 (IsA ice_skating skating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice storm is a kind of storm", "pln": ["(: cnet_isa_e9b1125dd8 (IsA ice_storm storm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice tea is a kind of tea", "pln": ["(: cnet_isa_1b59bfe861 (IsA ice_tea tea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice tong is a kind of tong", "pln": ["(: cnet_isa_f42b7ba855 (IsA ice_tong tong) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ice wagon is a kind of wagon", "pln": ["(: cnet_isa_ac1a344b77 (IsA ice_wagon wagon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ice water is a kind of drinking water", "pln": ["(: cnet_isa_8f897bb319 (IsA ice_water drinking_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iceberg is a kind of floater", "pln": ["(: cnet_isa_4d353b02ec (IsA iceberg floater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iceberg is a kind of ice mass", "pln": ["(: cnet_isa_613aa3744f (IsA iceberg ice_mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iceboat is a kind of vessel", "pln": ["(: cnet_isa_0e662f65ef (IsA iceboat vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "icebreaker is a kind of beginning", "pln": ["(: cnet_isa_599bfed957 (IsA icebreaker beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "icebreaker is a kind of ship", "pln": ["(: cnet_isa_973a01cba0 (IsA icebreaker ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "icecap is a kind of ice mass", "pln": ["(: cnet_isa_89367fe840 (IsA icecap ice_mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iced coffee is a kind of coffee", "pln": ["(: cnet_isa_31dbee4936 (IsA iced_coffee coffee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iced tea spoon is a kind of teaspoon", "pln": ["(: cnet_isa_3ffc11c8fe (IsA iced_tea_spoon teaspoon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "icefall is a kind of ice", "pln": ["(: cnet_isa_a5969b61ba (IsA icefall ice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "icehouse is a kind of house", "pln": ["(: cnet_isa_da69677353 (IsA icehouse house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iceland is a kind of country", "pln": ["(: cnet_isa_4d3af463a7 (IsA iceland country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iceland is a kind of island", "pln": ["(: cnet_isa_888f5a2f02 (IsA iceland island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iceland moss is a kind of lichen", "pln": ["(: cnet_isa_315bb3e888 (IsA iceland_moss lichen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iceland poppy is a kind of poppy", "pln": ["(: cnet_isa_242b7bf07a (IsA iceland_poppy poppy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iceland spar is a kind of calcite", "pln": ["(: cnet_isa_1ca86da728 (IsA iceland_spar calcite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "icelander is a kind of european", "pln": ["(: cnet_isa_356748109a (IsA icelander european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "icelandic is a kind of scandinavian", "pln": ["(: cnet_isa_d55a0b6920 (IsA icelandic scandinavian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "icelandic krona is a kind of icelandic monetary unit", "pln": ["(: cnet_isa_9fac0fba22 (IsA icelandic_krona icelandic_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "icelandic monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_008b1e9572 (IsA icelandic_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iceman is a kind of deliveryman", "pln": ["(: cnet_isa_b428e09f25 (IsA iceman deliveryman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "icepick is a kind of pick", "pln": ["(: cnet_isa_308d76728b (IsA icepick pick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "icetray is a kind of tray", "pln": ["(: cnet_isa_f59d3584f8 (IsA icetray tray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ichneumon is a kind of mongoose", "pln": ["(: cnet_isa_34e9e9fe5f (IsA ichneumon mongoose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ichneumon fly is a kind of hymenopterous insect", "pln": ["(: cnet_isa_f7476f8fbc (IsA ichneumon_fly hymenopterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ichneumonidae is a kind of arthropod family", "pln": ["(: cnet_isa_2c885bb46d (IsA ichneumonidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ichor is a kind of fluid", "pln": ["(: cnet_isa_a0c878d756 (IsA ichor fluid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ichthyolatry is a kind of zoolatry", "pln": ["(: cnet_isa_8a1acc285c (IsA ichthyolatry zoolatry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ichthyologist is a kind of zoologist", "pln": ["(: cnet_isa_eb19e2f9a4 (IsA ichthyologist zoologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ichthyology is a kind of zoology", "pln": ["(: cnet_isa_eefc9909e2 (IsA ichthyology zoology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ichthyosaur is a kind of archosaur", "pln": ["(: cnet_isa_29bc2384cc (IsA ichthyosaur archosaur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ichthyosauria is a kind of animal order", "pln": ["(: cnet_isa_5adbd3427f (IsA ichthyosauria animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ichthyosauridae is a kind of reptile family", "pln": ["(: cnet_isa_0ee4093a15 (IsA ichthyosauridae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ichthyosaurus is a kind of ichthyosaur", "pln": ["(: cnet_isa_b2f839442d (IsA ichthyosaurus ichthyosaur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ichthyosis is a kind of genetic disease", "pln": ["(: cnet_isa_d893a82054 (IsA ichthyosis genetic_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ichyostega is a kind of amphibian", "pln": ["(: cnet_isa_67709c1389 (IsA ichyostega amphibian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "icicle is a kind of ice", "pln": ["(: cnet_isa_bccc15fd43 (IsA icicle ice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "icing is a kind of maneuver", "pln": ["(: cnet_isa_801f9955b8 (IsA icing maneuver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "icing sugar is a kind of powdered sugar", "pln": ["(: cnet_isa_27e6b9e519 (IsA icing_sugar powdered_sugar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "icon is a kind of painting", "pln": ["(: cnet_isa_90e3077676 (IsA icon painting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "icon is a kind of symbol", "pln": ["(: cnet_isa_426a365fd4 (IsA icon symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iconoclasm is a kind of unorthodoxy", "pln": ["(: cnet_isa_662d97d495 (IsA iconoclasm unorthodoxy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iconoclast is a kind of attacker", "pln": ["(: cnet_isa_053d4157c7 (IsA iconoclast attacker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "iconoclast is a kind of destroyer", "pln": ["(: cnet_isa_e1f62a6887 (IsA iconoclast destroyer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "iconography is a kind of ikon", "pln": ["(: cnet_isa_34a15af67b (IsA iconography ikon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iconolatry is a kind of idolatry", "pln": ["(: cnet_isa_91cec5d937 (IsA iconolatry idolatry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iconology is a kind of art history", "pln": ["(: cnet_isa_e6c60b37c2 (IsA iconology art_history) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iconoscope is a kind of television camera tube", "pln": ["(: cnet_isa_08395da786 (IsA iconoscope television_camera_tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "icosahedron is a kind of polyhedron", "pln": ["(: cnet_isa_f71637d841 (IsA icosahedron polyhedron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ictalurus is a kind of fish genus", "pln": ["(: cnet_isa_716080afdc (IsA ictalurus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "icteria is a kind of bird genus", "pln": ["(: cnet_isa_cd5a9b88ab (IsA icteria bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "icteridae is a kind of bird family", "pln": ["(: cnet_isa_c9623611d8 (IsA icteridae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "icterus is a kind of bird genus", "pln": ["(: cnet_isa_d8daac1c2c (IsA icterus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ictiobus is a kind of fish genus", "pln": ["(: cnet_isa_0a9dc80716 (IsA ictiobus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ictodosaur is a kind of synapsid", "pln": ["(: cnet_isa_53f779dd75 (IsA ictodosaur synapsid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ictodosauria is a kind of animal order", "pln": ["(: cnet_isa_23c698b643 (IsA ictodosauria animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ictonyx is a kind of mammal genus", "pln": ["(: cnet_isa_8e68e66d27 (IsA ictonyx mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "id is a kind of badge", "pln": ["(: cnet_isa_0f8be15ef0 (IsA id badge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "id is a kind of positive identification", "pln": ["(: cnet_isa_a50e8d4a83 (IsA id positive_identification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "id is a kind of instinct", "pln": ["(: cnet_isa_6bb18ea96a (IsA id instinct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "id al adha is a kind of feast day", "pln": ["(: cnet_isa_171ad0f5a9 (IsA id_al_adha feast_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "id al fitr is a kind of feast day", "pln": ["(: cnet_isa_c7e21421e7 (IsA id_al_fitr feast_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idaho is a kind of state", "pln": ["(: cnet_isa_af2a50cdc8 (IsA idaho state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "idahoan is a kind of american", "pln": ["(: cnet_isa_ea5a6d1df6 (IsA idahoan american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idea is a kind of central meaning purpose or concept", "pln": ["(: cnet_isa_b8d86a2492 (IsA idea central_meaning_purpose_or_concept) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idea is a kind of content", "pln": ["(: cnet_isa_8eab710fbc (IsA idea content) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idea is a kind of opinion", "pln": ["(: cnet_isa_bb749479a0 (IsA idea opinion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ideal is a kind of idea", "pln": ["(: cnet_isa_052379ddc2 (IsA ideal idea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ideal is a kind of model", "pln": ["(: cnet_isa_3ac5aa8edf (IsA ideal model) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ideal gas is a kind of gas", "pln": ["(: cnet_isa_f841c63f98 (IsA ideal_gas gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idealism is a kind of impracticality", "pln": ["(: cnet_isa_bd91b456c7 (IsA idealism impracticality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idealism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_d687fbe518 (IsA idealism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idealist is a kind of visionary", "pln": ["(: cnet_isa_a9d122dca5 (IsA idealist visionary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ideality is a kind of quality", "pln": ["(: cnet_isa_fc494c38b6 (IsA ideality quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idealization is a kind of admiration", "pln": ["(: cnet_isa_2af8d5add8 (IsA idealization admiration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idealization is a kind of idea", "pln": ["(: cnet_isa_e8a1597f54 (IsA idealization idea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idealization is a kind of defense mechanism", "pln": ["(: cnet_isa_363569ff31 (IsA idealization defense_mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idea is a kind of not object", "pln": ["(: cnet_isa_404295280e (IsA idea not_object) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ideation is a kind of thinking", "pln": ["(: cnet_isa_48067b93a8 (IsA ideation thinking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "identical twin is a kind of twin", "pln": ["(: cnet_isa_c1db5dbc96 (IsA identical_twin twin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "identification is a kind of identity", "pln": ["(: cnet_isa_b17defed82 (IsA identification identity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "identification is a kind of evidence", "pln": ["(: cnet_isa_77f073b660 (IsA identification evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "identification is a kind of condition", "pln": ["(: cnet_isa_ecb8963a97 (IsA identification condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "identification particle is a kind of atom", "pln": ["(: cnet_isa_cd6397c76c (IsA identification_particle atom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "identifier is a kind of symbol", "pln": ["(: cnet_isa_f51751c071 (IsA identifier symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "identity is a kind of personality", "pln": ["(: cnet_isa_34253e2eb3 (IsA identity personality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "identity is a kind of sameness", "pln": ["(: cnet_isa_05f0249788 (IsA identity sameness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "identity is a kind of recognition", "pln": ["(: cnet_isa_bec54cbc30 (IsA identity recognition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "identity is a kind of operator", "pln": ["(: cnet_isa_cc7e6df83a (IsA identity operator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "identity crisis is a kind of psychological state", "pln": ["(: cnet_isa_c64801679c (IsA identity_crisis psychological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "identity matrix is a kind of scalar matrix", "pln": ["(: cnet_isa_4ee482164d (IsA identity_matrix scalar_matrix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "identity theft is a kind of fraud", "pln": ["(: cnet_isa_f73c63ff72 (IsA identity_theft fraud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ideogram is a kind of character", "pln": ["(: cnet_isa_a11bf73f55 (IsA ideogram character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ideography is a kind of orthography", "pln": ["(: cnet_isa_83a0d218b8 (IsA ideography orthography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ideological barrier is a kind of barrier", "pln": ["(: cnet_isa_ad9a9c83ce (IsA ideological_barrier barrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ideologist is a kind of advocate", "pln": ["(: cnet_isa_5af671cc23 (IsA ideologist advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ideology is a kind of theorization", "pln": ["(: cnet_isa_ea89ceab67 (IsA ideology theorization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ide is a kind of day", "pln": ["(: cnet_isa_36808b6182 (IsA ide day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idesia is a kind of tree", "pln": ["(: cnet_isa_2f27dcccb6 (IsA idesia tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "idiocy is a kind of retardation", "pln": ["(: cnet_isa_bf21b46ed1 (IsA idiocy retardation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idiolatry is a kind of worship", "pln": ["(: cnet_isa_80bba0b6fa (IsA idiolatry worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idiolect is a kind of speech", "pln": ["(: cnet_isa_da99dc9ac7 (IsA idiolect speech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idiom is a kind of saying", "pln": ["(: cnet_isa_5810dd70e2 (IsA idiom saying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idiom neutral is a kind of artificial language", "pln": ["(: cnet_isa_5b38049650 (IsA idiom_neutral artificial_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idiopathic disease is a kind of disorder", "pln": ["(: cnet_isa_5d24d78d45 (IsA idiopathic_disease disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idiosyncrasy is a kind of peculiarity", "pln": ["(: cnet_isa_60ff4fd863 (IsA idiosyncrasy peculiarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idiot is a kind of simpleton", "pln": ["(: cnet_isa_3248295eb9 (IsA idiot simpleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idiot light is a kind of red light", "pln": ["(: cnet_isa_403e7c9ca9 (IsA idiot_light red_light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idiot savant is a kind of simpleton", "pln": ["(: cnet_isa_5c17d73eda (IsA idiot_savant simpleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iditarod is a kind of cross country", "pln": ["(: cnet_isa_37f70fc9e1 (IsA iditarod cross_country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idle is a kind of operation", "pln": ["(: cnet_isa_34e1461a8d (IsA idle operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idle pulley is a kind of pulley", "pln": ["(: cnet_isa_01534bb6fa (IsA idle_pulley pulley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idleness is a kind of inactivity", "pln": ["(: cnet_isa_71dcb5a423 (IsA idleness inactivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idler is a kind of nonworker", "pln": ["(: cnet_isa_4c95e2d420 (IsA idler nonworker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ido is a kind of artificial language", "pln": ["(: cnet_isa_8fb6eda6dd (IsA ido artificial_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idol is a kind of effigy", "pln": ["(: cnet_isa_2c58fa493d (IsA idol effigy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idol is a kind of star", "pln": ["(: cnet_isa_3fa29895b6 (IsA idol star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idolater is a kind of heathen", "pln": ["(: cnet_isa_0de483274e (IsA idolater heathen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idolatress is a kind of idolater", "pln": ["(: cnet_isa_b48c470774 (IsA idolatress idolater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idolatry is a kind of worship", "pln": ["(: cnet_isa_fcb2ca7d6e (IsA idolatry worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idolization is a kind of worship", "pln": ["(: cnet_isa_77da8e0d04 (IsA idolization worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idolizer is a kind of lover", "pln": ["(: cnet_isa_e0e98f36d3 (IsA idolizer lover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "idyll is a kind of episode", "pln": ["(: cnet_isa_26f0502c24 (IsA idyll episode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "igbo is a kind of ethnic group", "pln": ["(: cnet_isa_a73c380926 (IsA igbo ethnic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "igbo is a kind of nigerian", "pln": ["(: cnet_isa_d76fbf0149 (IsA igbo nigerian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "igloo is a kind of house", "pln": ["(: cnet_isa_fb0248accc (IsA igloo house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "igloo is a kind of hovel", "pln": ["(: cnet_isa_eb2f259065 (IsA igloo hovel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "igneous rock is a kind of rock", "pln": ["(: cnet_isa_06f1cf9874 (IsA igneous_rock rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "igniter is a kind of fuel", "pln": ["(: cnet_isa_6a4d12f515 (IsA igniter fuel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ignition is a kind of burning", "pln": ["(: cnet_isa_5cef9713d3 (IsA ignition burning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ignition is a kind of mechanism", "pln": ["(: cnet_isa_984be69f7c (IsA ignition mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ignition is a kind of fire", "pln": ["(: cnet_isa_a0d068d682 (IsA ignition fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ignition coil is a kind of induction coil", "pln": ["(: cnet_isa_52f045cdfc (IsA ignition_coil induction_coil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ignition interlock is a kind of device", "pln": ["(: cnet_isa_db8b052a9b (IsA ignition_interlock device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ignition key is a kind of key", "pln": ["(: cnet_isa_04c1af716e (IsA ignition_key key) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ignition switch is a kind of switch", "pln": ["(: cnet_isa_3c0c4ba173 (IsA ignition_switch switch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ignobleness is a kind of dishonorableness", "pln": ["(: cnet_isa_61df4f81e6 (IsA ignobleness dishonorableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ignoramus is a kind of unskilled person", "pln": ["(: cnet_isa_ae5c9368a3 (IsA ignoramus unskilled_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ignorance is a kind of bliss", "pln": ["(: cnet_isa_311200f525 (IsA ignorance bliss) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ignorance is a kind of content", "pln": ["(: cnet_isa_696af500a6 (IsA ignorance content) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ignorantness is a kind of ignorance", "pln": ["(: cnet_isa_9def3ba030 (IsA ignorantness ignorance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ignoratio elenchi is a kind of logical fallacy", "pln": ["(: cnet_isa_182cb38dce (IsA ignoratio_elenchi logical_fallacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iguanid is a kind of lizard", "pln": ["(: cnet_isa_ca60370bc1 (IsA iguanid lizard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iguanidae is a kind of reptile family", "pln": ["(: cnet_isa_7158f4f2e5 (IsA iguanidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iguanodon is a kind of dinosaur", "pln": ["(: cnet_isa_2c3afd9a80 (IsA iguanodon dinosaur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iguanodontidae is a kind of reptile family", "pln": ["(: cnet_isa_cd7dd7a109 (IsA iguanodontidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ijtihad is a kind of interpretation", "pln": ["(: cnet_isa_1d4bc1cb34 (IsA ijtihad interpretation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ikon is a kind of representation", "pln": ["(: cnet_isa_982f706b50 (IsA ikon representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ilama is a kind of custard apple", "pln": ["(: cnet_isa_251927e577 (IsA ilama custard_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ilang ilang is a kind of angiospermous tree", "pln": ["(: cnet_isa_e9438d002d (IsA ilang_ilang angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ilang ilang is a kind of essential oil", "pln": ["(: cnet_isa_647c825b88 (IsA ilang_ilang essential_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ileal artery is a kind of artery", "pln": ["(: cnet_isa_0675b05520 (IsA ileal_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ileitis is a kind of inflammation", "pln": ["(: cnet_isa_8b3cbbaaa8 (IsA ileitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ileocecal valve is a kind of valve", "pln": ["(: cnet_isa_314e56e485 (IsA ileocecal_valve valve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ileocolic artery is a kind of artery", "pln": ["(: cnet_isa_e067e9f42c (IsA ileocolic_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ileocolic vein is a kind of vein", "pln": ["(: cnet_isa_3f0fe45f94 (IsA ileocolic_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ileostomy is a kind of ostomy", "pln": ["(: cnet_isa_baaa4e6864 (IsA ileostomy ostomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ileum is a kind of small intestine", "pln": ["(: cnet_isa_e327a62fbe (IsA ileum small_intestine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ilex is a kind of dicot genus", "pln": ["(: cnet_isa_57c8675735 (IsA ilex dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iliac artery is a kind of artery", "pln": ["(: cnet_isa_f9926bd85c (IsA iliac_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iliac vein is a kind of vein", "pln": ["(: cnet_isa_54a2a93736 (IsA iliac_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iliamna is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_04fa0e9c61 (IsA iliamna dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iliolumbar artery is a kind of artery", "pln": ["(: cnet_isa_2552b02619 (IsA iliolumbar_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iliolumbar vein is a kind of vein", "pln": ["(: cnet_isa_f7112088e2 (IsA iliolumbar_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ilium is a kind of bone", "pln": ["(: cnet_isa_e56d864621 (IsA ilium bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ilk is a kind of kind", "pln": ["(: cnet_isa_41c019ba19 (IsA ilk kind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ill being is a kind of adversity", "pln": ["(: cnet_isa_3c7ca31767 (IsA ill_being adversity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ill health is a kind of pathological state", "pln": ["(: cnet_isa_91f16f9f31 (IsA ill_health pathological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ill humor is a kind of temper", "pln": ["(: cnet_isa_714b23ab9b (IsA ill_humor temper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ill nature is a kind of disposition", "pln": ["(: cnet_isa_33c7b149c1 (IsA ill_nature disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "illecebrum is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_2b6fd87a1c (IsA illecebrum caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "illegal alien is a kind of person", "pln": ["(: cnet_isa_ef1824135c (IsA illegal_alien person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "illegal possession is a kind of criminal possession", "pln": ["(: cnet_isa_a1485f7f64 (IsA illegal_possession criminal_possession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "illegality is a kind of unlawfulness", "pln": ["(: cnet_isa_3972178f03 (IsA illegality unlawfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "illegibility is a kind of incomprehensibility", "pln": ["(: cnet_isa_7aa4fb43a0 (IsA illegibility incomprehensibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "illegitimacy is a kind of unlawfulness", "pln": ["(: cnet_isa_2efc76eb31 (IsA illegitimacy unlawfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "illiberality is a kind of stinginess", "pln": ["(: cnet_isa_85e5f42666 (IsA illiberality stinginess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "illicitness is a kind of unlawfulness", "pln": ["(: cnet_isa_15be96ab6a (IsA illicitness unlawfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "illicium is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_0482417bb9 (IsA illicium magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "illinois is a kind of state", "pln": ["(: cnet_isa_9a17026916 (IsA illinois state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "illinois is a kind of algonquian", "pln": ["(: cnet_isa_afff8d12d8 (IsA illinois algonquian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "illinois is a kind of algonquin", "pln": ["(: cnet_isa_bc37b26543 (IsA illinois algonquin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "illinoisan is a kind of american", "pln": ["(: cnet_isa_6d577240f2 (IsA illinoisan american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "illiteracy is a kind of ignorance", "pln": ["(: cnet_isa_b92274d88b (IsA illiteracy ignorance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "illiteracy is a kind of inability", "pln": ["(: cnet_isa_a70c350319 (IsA illiteracy inability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "illiterate is a kind of ignoramus", "pln": ["(: cnet_isa_164fcf30a5 (IsA illiterate ignoramus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "illness is a kind of ill health", "pln": ["(: cnet_isa_e6ab956c2c (IsA illness ill_health) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "illogicality is a kind of quality", "pln": ["(: cnet_isa_b7e71e8d78 (IsA illogicality quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "illuminance is a kind of luminosity", "pln": ["(: cnet_isa_f33c6807ee (IsA illuminance luminosity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "illuminant is a kind of fuel", "pln": ["(: cnet_isa_2db29232f9 (IsA illuminant fuel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "illumination is a kind of state", "pln": ["(: cnet_isa_c04e28febb (IsA illumination state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "illumination unit is a kind of light unit", "pln": ["(: cnet_isa_d4759d97ae (IsA illumination_unit light_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "illusion is a kind of appearance", "pln": ["(: cnet_isa_245ec5f3ce (IsA illusion appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "illusion is a kind of misconception", "pln": ["(: cnet_isa_7c8e6c45a3 (IsA illusion misconception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "illustration is a kind of representation", "pln": ["(: cnet_isa_46a4ba9f13 (IsA illustration representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "illustration is a kind of artwork", "pln": ["(: cnet_isa_5ef072f3be (IsA illustration artwork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "illustrator is a kind of artist", "pln": ["(: cnet_isa_9d0a8eadd0 (IsA illustrator artist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "illyrian is a kind of indo european", "pln": ["(: cnet_isa_683655ad23 (IsA illyrian indo_european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ilmenite is a kind of mineral", "pln": ["(: cnet_isa_2e125a5aec (IsA ilmenite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imac is a kind of computer", "pln": ["(: cnet_isa_1a38c4276f (IsA imac computer) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "image is a kind of impression", "pln": ["(: cnet_isa_649ae50c52 (IsA image impression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "image is a kind of representation", "pln": ["(: cnet_isa_f3497ed79a (IsA image representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "image compression is a kind of compression", "pln": ["(: cnet_isa_2b0b181904 (IsA image_compression compression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imaginary being is a kind of imagination", "pln": ["(: cnet_isa_50a2693242 (IsA imaginary_being imagination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imaginary number is a kind of complex number", "pln": ["(: cnet_isa_a7f71984ce (IsA imaginary_number complex_number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imaginary part is a kind of pure imaginary number", "pln": ["(: cnet_isa_c91ce396ff (IsA imaginary_part pure_imaginary_number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "imaginary place is a kind of imagination", "pln": ["(: cnet_isa_902b005636 (IsA imaginary_place imagination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imagination is a kind of creativity", "pln": ["(: cnet_isa_c2b821984b (IsA imagination creativity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "imagination is a kind of representational process", "pln": ["(: cnet_isa_129af11f61 (IsA imagination representational_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "imagination image is a kind of image", "pln": ["(: cnet_isa_e53f94328a (IsA imagination_image image) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "imaginative comparison is a kind of comparison", "pln": ["(: cnet_isa_145730cea6 (IsA imaginative_comparison comparison) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imaging is a kind of pictorial representation", "pln": ["(: cnet_isa_ba675d9f86 (IsA imaging pictorial_representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imagism is a kind of artistic movement", "pln": ["(: cnet_isa_cbafc0d3eb (IsA imagism artistic_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imago is a kind of insect", "pln": ["(: cnet_isa_597ca63362 (IsA imago insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imago is a kind of prototype", "pln": ["(: cnet_isa_8b069611fb (IsA imago prototype) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imam is a kind of leader", "pln": ["(: cnet_isa_3948f389d3 (IsA imam leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "imam is a kind of moslem", "pln": ["(: cnet_isa_d39860e2ea (IsA imam moslem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imaret is a kind of hostel", "pln": ["(: cnet_isa_f70530fe83 (IsA imaret hostel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imbalance is a kind of disequilibrium", "pln": ["(: cnet_isa_1fd07396bf (IsA imbalance disequilibrium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "imbecility is a kind of retardation", "pln": ["(: cnet_isa_702d1c3d99 (IsA imbecility retardation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imbibition is a kind of absorption", "pln": ["(: cnet_isa_c60fb7cec8 (IsA imbibition absorption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imbrication is a kind of covering", "pln": ["(: cnet_isa_69dbfc6e49 (IsA imbrication covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imbroglio is a kind of misinterpretation", "pln": ["(: cnet_isa_a2a40861c8 (IsA imbroglio misinterpretation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imbroglio is a kind of situation", "pln": ["(: cnet_isa_3400d6b5e4 (IsA imbroglio situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imidazole is a kind of base", "pln": ["(: cnet_isa_0bfde9d73b (IsA imidazole base) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imide is a kind of organic compound", "pln": ["(: cnet_isa_f1ca675ecd (IsA imide organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imitation is a kind of copying", "pln": ["(: cnet_isa_2d7b0f8eb5 (IsA imitation copying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imitation is a kind of copy", "pln": ["(: cnet_isa_678ef31b8f (IsA imitation copy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imitation is a kind of doctrine", "pln": ["(: cnet_isa_c0e3759100 (IsA imitation doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imitative electronic deception is a kind of electronic deception", "pln": ["(: cnet_isa_cdc4fc85f7 (IsA imitative_electronic_deception electronic_deception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "immaculate conception is a kind of religious doctrine", "pln": ["(: cnet_isa_d08ffdac60 (IsA immaculate_conception religious_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immaculate conception is a kind of holy day of obligation", "pln": ["(: cnet_isa_307724877b (IsA immaculate_conception holy_day_of_obligation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immanence is a kind of presence", "pln": ["(: cnet_isa_d6f73bd63b (IsA immanence presence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immateriality is a kind of quality", "pln": ["(: cnet_isa_4dd60cc707 (IsA immateriality quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immateriality is a kind of irrelevance", "pln": ["(: cnet_isa_c903c9e048 (IsA immateriality irrelevance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immaturity is a kind of state", "pln": ["(: cnet_isa_ae796f9e65 (IsA immaturity state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immediacy is a kind of celerity", "pln": ["(: cnet_isa_ad1a6ea616 (IsA immediacy celerity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immediacy is a kind of directness", "pln": ["(: cnet_isa_b7d41cc7da (IsA immediacy directness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immediacy is a kind of intuition", "pln": ["(: cnet_isa_9370d11407 (IsA immediacy intuition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immediate allergy is a kind of allergy", "pln": ["(: cnet_isa_0535fff79b (IsA immediate_allergy allergy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immediate constituent is a kind of constituent", "pln": ["(: cnet_isa_6b7dc83515 (IsA immediate_constituent constituent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immersion is a kind of baptism", "pln": ["(: cnet_isa_43abce4c45 (IsA immersion baptism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immersion heater is a kind of heating element", "pln": ["(: cnet_isa_13198fb293 (IsA immersion_heater heating_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immigrant is a kind of migrant", "pln": ["(: cnet_isa_65dae12834 (IsA immigrant migrant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immigrant class is a kind of class", "pln": ["(: cnet_isa_0dee17eeff (IsA immigrant_class class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immigration is a kind of migration", "pln": ["(: cnet_isa_31d0078d8b (IsA immigration migration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "immigration is a kind of body", "pln": ["(: cnet_isa_b1897492ce (IsA immigration body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immigration and naturalization service is a kind of agency", "pln": ["(: cnet_isa_7042439edf (IsA immigration_and_naturalization_service agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imminence is a kind of state", "pln": ["(: cnet_isa_6e840c8769 (IsA imminence state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imminent abortion is a kind of spontaneous abortion", "pln": ["(: cnet_isa_24de45c0ad (IsA imminent_abortion spontaneous_abortion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immobility is a kind of quality", "pln": ["(: cnet_isa_11dd742b01 (IsA immobility quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immobilization is a kind of preservation", "pln": ["(: cnet_isa_cf15debf49 (IsA immobilization preservation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immobilization is a kind of restraint", "pln": ["(: cnet_isa_d79be84898 (IsA immobilization restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "immoderation is a kind of degree", "pln": ["(: cnet_isa_f7f60191db (IsA immoderation degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immodesty is a kind of indecency", "pln": ["(: cnet_isa_e84233af07 (IsA immodesty indecency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immolation is a kind of sacrifice", "pln": ["(: cnet_isa_2c82ec71da (IsA immolation sacrifice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immorality is a kind of quality", "pln": ["(: cnet_isa_c55457a626 (IsA immorality quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "immortal is a kind of celebrity", "pln": ["(: cnet_isa_cb35b2edf5 (IsA immortal celebrity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immortality is a kind of permanence", "pln": ["(: cnet_isa_73bfc2c648 (IsA immortality permanence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immortality is a kind of afterlife", "pln": ["(: cnet_isa_108820ae73 (IsA immortality afterlife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immortelle is a kind of everlasting", "pln": ["(: cnet_isa_673e8142ef (IsA immortelle everlasting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immotility is a kind of immobility", "pln": ["(: cnet_isa_2c5e0d74ba (IsA immotility immobility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immovability is a kind of immobility", "pln": ["(: cnet_isa_9121a4211b (IsA immovability immobility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immovable bandage is a kind of bandage", "pln": ["(: cnet_isa_124fc278d5 (IsA immovable_bandage bandage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immune is a kind of person", "pln": ["(: cnet_isa_8cb8b503ac (IsA immune person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "immune response is a kind of reaction", "pln": ["(: cnet_isa_126e7ff8ed (IsA immune_response reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immune system is a kind of system", "pln": ["(: cnet_isa_ee880d0970 (IsA immune_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immunity is a kind of invulnerability", "pln": ["(: cnet_isa_5578e0c209 (IsA immunity invulnerability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immunity is a kind of condition", "pln": ["(: cnet_isa_c4d084bf31 (IsA immunity condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immunization is a kind of protection", "pln": ["(: cnet_isa_c1e7d06848 (IsA immunization protection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immunoassay is a kind of bioassay", "pln": ["(: cnet_isa_defe0442c5 (IsA immunoassay bioassay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "immunochemistry is a kind of chemistry", "pln": ["(: cnet_isa_3ec9abc11c (IsA immunochemistry chemistry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "immunochemistry is a kind of immunology", "pln": ["(: cnet_isa_3cc7ce1de9 (IsA immunochemistry immunology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immunocompetence is a kind of ability", "pln": ["(: cnet_isa_1a65ac8aa3 (IsA immunocompetence ability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immunodeficiency is a kind of immunological disorder", "pln": ["(: cnet_isa_d845922837 (IsA immunodeficiency immunological_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immunoelectrophoresis is a kind of electrophoresis", "pln": ["(: cnet_isa_25181bd28f (IsA immunoelectrophoresis electrophoresis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "immunofluorescence is a kind of technique", "pln": ["(: cnet_isa_8a8cbff997 (IsA immunofluorescence technique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immunogen is a kind of antigen", "pln": ["(: cnet_isa_7e808fe92d (IsA immunogen antigen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immunogenicity is a kind of immunity", "pln": ["(: cnet_isa_b24fe8ca37 (IsA immunogenicity immunity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immunoglobulin is a kind of antibody", "pln": ["(: cnet_isa_2fc5a01e88 (IsA immunoglobulin antibody) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immunoglobulin is a kind of gamma globulin", "pln": ["(: cnet_isa_4464cf5893 (IsA immunoglobulin gamma_globulin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immunoglobulin is a kind of immunoglobulin", "pln": ["(: cnet_isa_5314eee10c (IsA immunoglobulin immunoglobulin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immunoglobulin d is a kind of immunoglobulin", "pln": ["(: cnet_isa_d0b8f1aeb5 (IsA immunoglobulin_d immunoglobulin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immunoglobulin e is a kind of immunoglobulin", "pln": ["(: cnet_isa_75f5e8989a (IsA immunoglobulin_e immunoglobulin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immunoglobulin g is a kind of immunoglobulin", "pln": ["(: cnet_isa_8120f789de (IsA immunoglobulin_g immunoglobulin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immunoglobulin m is a kind of immunoglobulin", "pln": ["(: cnet_isa_39d889d6e9 (IsA immunoglobulin_m immunoglobulin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immunohistochemistry is a kind of assay", "pln": ["(: cnet_isa_5539f03b85 (IsA immunohistochemistry assay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immunological disorder is a kind of disorder", "pln": ["(: cnet_isa_563172a537 (IsA immunological_disorder disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "immunologist is a kind of medical scientist", "pln": ["(: cnet_isa_6bfac83e4f (IsA immunologist medical_scientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immunology is a kind of medicine", "pln": ["(: cnet_isa_161325ca03 (IsA immunology medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immunopathology is a kind of immunology", "pln": ["(: cnet_isa_53af165c4c (IsA immunopathology immunology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immunosuppressant is a kind of medicine", "pln": ["(: cnet_isa_5db78a852c (IsA immunosuppressant medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "immunosuppression is a kind of immunological disorder", "pln": ["(: cnet_isa_1d998e27e3 (IsA immunosuppression immunological_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immunotherapy is a kind of therapy", "pln": ["(: cnet_isa_2154fe6bc6 (IsA immunotherapy therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "immutability is a kind of changelessness", "pln": ["(: cnet_isa_b293ebf1ec (IsA immutability changelessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imp is a kind of child", "pln": ["(: cnet_isa_dca96a78ca (IsA imp child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impact is a kind of contact", "pln": ["(: cnet_isa_e0be19a5ed (IsA impact contact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impact is a kind of consequence", "pln": ["(: cnet_isa_120347d4b3 (IsA impact consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impact printer is a kind of printer", "pln": ["(: cnet_isa_cab860e1a5 (IsA impact_printer printer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impacted fracture is a kind of fracture", "pln": ["(: cnet_isa_de03bcac4f (IsA impacted_fracture fracture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impaction is a kind of condition", "pln": ["(: cnet_isa_628ff4d37c (IsA impaction condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impaction is a kind of disorder", "pln": ["(: cnet_isa_bf94568e59 (IsA impaction disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impairer is a kind of agent", "pln": ["(: cnet_isa_adfca5a5f4 (IsA impairer agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impairment is a kind of damage", "pln": ["(: cnet_isa_f7a4c1013f (IsA impairment damage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impala is a kind of antelope", "pln": ["(: cnet_isa_fedbed6328 (IsA impala antelope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impala lily is a kind of shrub", "pln": ["(: cnet_isa_5d3e68ec2d (IsA impala_lily shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impalement is a kind of cruelty", "pln": ["(: cnet_isa_faa055ca10 (IsA impalement cruelty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impartiality is a kind of inclination", "pln": ["(: cnet_isa_4a042950e2 (IsA impartiality inclination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impasto is a kind of painting", "pln": ["(: cnet_isa_4b6a5d328a (IsA impasto painting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "impatience is a kind of ill nature", "pln": ["(: cnet_isa_0e9b085e21 (IsA impatience ill_nature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impatience is a kind of fidget", "pln": ["(: cnet_isa_dd4fe32326 (IsA impatience fidget) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impeachability is a kind of guilt", "pln": ["(: cnet_isa_30eaf8a8e2 (IsA impeachability guilt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impeachment is a kind of legal document", "pln": ["(: cnet_isa_f5cbe6bcd2 (IsA impeachment legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "impeccability is a kind of righteousness", "pln": ["(: cnet_isa_4ff0859bf7 (IsA impeccability righteousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impecuniousness is a kind of poverty", "pln": ["(: cnet_isa_a3ac20f581 (IsA impecuniousness poverty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impedimenta is a kind of baggage", "pln": ["(: cnet_isa_c7a4a7c836 (IsA impedimenta baggage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impeller is a kind of blade", "pln": ["(: cnet_isa_a19e4a74af (IsA impeller blade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impenetrability is a kind of incomprehensibility", "pln": ["(: cnet_isa_cd342b9989 (IsA impenetrability incomprehensibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impenetrability is a kind of quality", "pln": ["(: cnet_isa_2c7768f47b (IsA impenetrability quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impenitence is a kind of stubbornness", "pln": ["(: cnet_isa_d3bee3b931 (IsA impenitence stubbornness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imperative is a kind of duty", "pln": ["(: cnet_isa_629be49fae (IsA imperative duty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "imperative mood is a kind of mood", "pln": ["(: cnet_isa_b300d51c63 (IsA imperative_mood mood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imperativeness is a kind of urgency", "pln": ["(: cnet_isa_7aadbe9a66 (IsA imperativeness urgency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "imperceptibility is a kind of physical property", "pln": ["(: cnet_isa_6a1c4ba27a (IsA imperceptibility physical_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imperfectibility is a kind of capability", "pln": ["(: cnet_isa_00627d07a9 (IsA imperfectibility capability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imperfection is a kind of state", "pln": ["(: cnet_isa_d2f31c09d2 (IsA imperfection state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imperfective is a kind of durative", "pln": ["(: cnet_isa_45e08db66e (IsA imperfective durative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imperforate anus is a kind of anus", "pln": ["(: cnet_isa_9ec3858daf (IsA imperforate_anus anus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "imperforate hymen is a kind of hymen", "pln": ["(: cnet_isa_c781644c66 (IsA imperforate_hymen hymen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imperial is a kind of baggage", "pln": ["(: cnet_isa_bed9e19bf0 (IsA imperial baggage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imperial is a kind of beard", "pln": ["(: cnet_isa_cffba454a6 (IsA imperial beard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imperial decree is a kind of decree", "pln": ["(: cnet_isa_d78be3402e (IsA imperial_decree decree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imperial japanese morning glory is a kind of morning glory", "pln": ["(: cnet_isa_b60c1e3b07 (IsA imperial_japanese_morning_glory morning_glory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imperial mammoth is a kind of mammoth", "pln": ["(: cnet_isa_ac6bde6916 (IsA imperial_mammoth mammoth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imperial moth is a kind of saturniid", "pln": ["(: cnet_isa_109e5820bd (IsA imperial_moth saturniid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imperialism is a kind of control", "pln": ["(: cnet_isa_2bfeac1226 (IsA imperialism control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imperialism is a kind of political orientation", "pln": ["(: cnet_isa_c760348e2b (IsA imperialism political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "imperialism is a kind of foreign policy", "pln": ["(: cnet_isa_cc9c9719c6 (IsA imperialism foreign_policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imperialist is a kind of believer", "pln": ["(: cnet_isa_18ce4f1a29 (IsA imperialist believer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "imperiousness is a kind of arrogance", "pln": ["(: cnet_isa_102ef1cf38 (IsA imperiousness arrogance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "imperishability is a kind of permanence", "pln": ["(: cnet_isa_d98892468a (IsA imperishability permanence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imperium is a kind of authority", "pln": ["(: cnet_isa_44a404d84c (IsA imperium authority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impermanence is a kind of duration", "pln": ["(: cnet_isa_daa5b19662 (IsA impermanence duration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impermeability is a kind of solidity", "pln": ["(: cnet_isa_eface1e895 (IsA impermeability solidity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impermissibility is a kind of inadmissibility", "pln": ["(: cnet_isa_24b3268e37 (IsA impermissibility inadmissibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impersonation is a kind of acting", "pln": ["(: cnet_isa_a4c5b000be (IsA impersonation acting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impersonator is a kind of deceiver", "pln": ["(: cnet_isa_2be97a31af (IsA impersonator deceiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impertinence is a kind of playfulness", "pln": ["(: cnet_isa_ef177a44ec (IsA impertinence playfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impetigo is a kind of skin disease", "pln": ["(: cnet_isa_aa0cf47805 (IsA impetigo skin_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impetuousness is a kind of impulsiveness", "pln": ["(: cnet_isa_02aa782fdf (IsA impetuousness impulsiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impiety is a kind of unrighteousness", "pln": ["(: cnet_isa_2e2cb66946 (IsA impiety unrighteousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impingement is a kind of crash", "pln": ["(: cnet_isa_ff6d9ebdcc (IsA impingement crash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impingement is a kind of influence", "pln": ["(: cnet_isa_3069f6c446 (IsA impingement influence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impishness is a kind of playfulness", "pln": ["(: cnet_isa_877dfebf46 (IsA impishness playfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "implant is a kind of prosthesis", "pln": ["(: cnet_isa_e0db8a80b2 (IsA implant prosthesis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "implantation is a kind of operation", "pln": ["(: cnet_isa_8f022d3d41 (IsA implantation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "implantation is a kind of placement", "pln": ["(: cnet_isa_42dee9852e (IsA implantation placement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "implantation is a kind of organic process", "pln": ["(: cnet_isa_e0a6b2702e (IsA implantation organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "implausibility is a kind of incredibility", "pln": ["(: cnet_isa_4649dac1a3 (IsA implausibility incredibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "implement is a kind of instrumentality", "pln": ["(: cnet_isa_4e32652696 (IsA implement instrumentality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "implementation is a kind of act", "pln": ["(: cnet_isa_0c57dbbabe (IsA implementation act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "implication is a kind of accusation", "pln": ["(: cnet_isa_f2ddc09b0e (IsA implication accusation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "implication is a kind of involvement", "pln": ["(: cnet_isa_772547a614 (IsA implication involvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "implication is a kind of logical relation", "pln": ["(: cnet_isa_fab40f9a10 (IsA implication logical_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "implicitness is a kind of inexplicitness", "pln": ["(: cnet_isa_127392bbfc (IsA implicitness inexplicitness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "implied trust is a kind of trust", "pln": ["(: cnet_isa_f716e6df3b (IsA implied_trust trust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "implosion is a kind of blockage", "pln": ["(: cnet_isa_71e124a758 (IsA implosion blockage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "implosion is a kind of collapse", "pln": ["(: cnet_isa_c89da161c6 (IsA implosion collapse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "implosion therapy is a kind of behavior therapy", "pln": ["(: cnet_isa_d8729d651e (IsA implosion_therapy behavior_therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "impoliteness is a kind of discourtesy", "pln": ["(: cnet_isa_3a2ae07dcf (IsA impoliteness discourtesy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imponderable is a kind of influence", "pln": ["(: cnet_isa_a88ea6539e (IsA imponderable influence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "import is a kind of commodity", "pln": ["(: cnet_isa_cd2da977f9 (IsA import commodity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "import is a kind of foreigner", "pln": ["(: cnet_isa_119c0c5a81 (IsA import foreigner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "import credit is a kind of credit", "pln": ["(: cnet_isa_ab466f5391 (IsA import_credit credit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "import duty is a kind of duty", "pln": ["(: cnet_isa_803023f547 (IsA import_duty duty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "importance is a kind of value", "pln": ["(: cnet_isa_ed3365472e (IsA importance value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "importance is a kind of standing", "pln": ["(: cnet_isa_520f54f103 (IsA importance standing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "important person is a kind of adult", "pln": ["(: cnet_isa_b678bf6b6f (IsA important_person adult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "importer is a kind of businessperson", "pln": ["(: cnet_isa_5c407cb04d (IsA importer businessperson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "importing is a kind of commerce", "pln": ["(: cnet_isa_d501cfccde (IsA importing commerce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "importunity is a kind of solicitation", "pln": ["(: cnet_isa_b734dadf82 (IsA importunity solicitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imposition is a kind of burden", "pln": ["(: cnet_isa_5ad60c0d1a (IsA imposition burden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imposition is a kind of enforcement", "pln": ["(: cnet_isa_417cc654fd (IsA imposition enforcement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impossibility is a kind of option", "pln": ["(: cnet_isa_070f024292 (IsA impossibility option) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "impossibility is a kind of nonexistence", "pln": ["(: cnet_isa_4721ae9fc1 (IsA impossibility nonexistence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impossible is a kind of impossibility", "pln": ["(: cnet_isa_afb1f330f9 (IsA impossible impossibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imposter is a kind of deceiver", "pln": ["(: cnet_isa_5a5dd52709 (IsA imposter deceiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imposture is a kind of deception", "pln": ["(: cnet_isa_f39bf301cb (IsA imposture deception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impotence is a kind of sterility", "pln": ["(: cnet_isa_9cc961b823 (IsA impotence sterility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "impoundment is a kind of seizure", "pln": ["(: cnet_isa_c9e334087e (IsA impoundment seizure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impracticability is a kind of inutility", "pln": ["(: cnet_isa_57d04d9589 (IsA impracticability inutility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impracticality is a kind of inutility", "pln": ["(: cnet_isa_89d869fc40 (IsA impracticality inutility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imprecation is a kind of accusation", "pln": ["(: cnet_isa_77de703168 (IsA imprecation accusation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imprecation is a kind of execration", "pln": ["(: cnet_isa_03bd64b840 (IsA imprecation execration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impreciseness is a kind of inexactness", "pln": ["(: cnet_isa_f52efce833 (IsA impreciseness inexactness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impregnation is a kind of permeation", "pln": ["(: cnet_isa_ab5d0cdacc (IsA impregnation permeation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impregnation is a kind of material", "pln": ["(: cnet_isa_3cd5adc63d (IsA impregnation material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impress is a kind of seizure", "pln": ["(: cnet_isa_256c87f263 (IsA impress seizure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impression is a kind of portrayal", "pln": ["(: cnet_isa_0f35217293 (IsA impression portrayal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impression is a kind of press", "pln": ["(: cnet_isa_ba55673a3d (IsA impression press) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impression is a kind of appearance", "pln": ["(: cnet_isa_02c0b20b8f (IsA impression appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impression is a kind of idea", "pln": ["(: cnet_isa_fc62c71721 (IsA impression idea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impression is a kind of imprint", "pln": ["(: cnet_isa_282f2e9407 (IsA impression imprint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impression is a kind of publication", "pln": ["(: cnet_isa_15ecb62f73 (IsA impression publication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impressionism is a kind of artistic movement", "pln": ["(: cnet_isa_82971a2719 (IsA impressionism artistic_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impressionist is a kind of painter", "pln": ["(: cnet_isa_e95ba053aa (IsA impressionist painter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impressiveness is a kind of excellence", "pln": ["(: cnet_isa_4c874da42a (IsA impressiveness excellence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impressiveness is a kind of quality", "pln": ["(: cnet_isa_b9be41b2db (IsA impressiveness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imprint is a kind of device", "pln": ["(: cnet_isa_fca027479d (IsA imprint device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imprint is a kind of influence", "pln": ["(: cnet_isa_b7fbb6ca16 (IsA imprint influence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imprint is a kind of identification", "pln": ["(: cnet_isa_0860da120c (IsA imprint identification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "imprint is a kind of stamp", "pln": ["(: cnet_isa_fab18e602f (IsA imprint stamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imprinting is a kind of learning", "pln": ["(: cnet_isa_f5e79d9024 (IsA imprinting learning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imprisonment is a kind of confinement", "pln": ["(: cnet_isa_865785f816 (IsA imprisonment confinement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imprisonment is a kind of punishment", "pln": ["(: cnet_isa_efb0a3d2fb (IsA imprisonment punishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "improbability is a kind of uncertainty", "pln": ["(: cnet_isa_b8c39f0b97 (IsA improbability uncertainty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impromptu is a kind of address", "pln": ["(: cnet_isa_468abb18e7 (IsA impromptu address) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impromptu is a kind of passage", "pln": ["(: cnet_isa_652343ac4a (IsA impromptu passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "improper fraction is a kind of fraction", "pln": ["(: cnet_isa_cad71c34ec (IsA improper_fraction fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impropriety is a kind of demeanor", "pln": ["(: cnet_isa_c239d05a41 (IsA impropriety demeanor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impropriety is a kind of condition", "pln": ["(: cnet_isa_986ecd04d6 (IsA impropriety condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "improvement is a kind of change of state", "pln": ["(: cnet_isa_65620ab0f9 (IsA improvement change_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "improvement is a kind of transformation", "pln": ["(: cnet_isa_14c78fa1ac (IsA improvement transformation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "improvement is a kind of condition", "pln": ["(: cnet_isa_17079c4870 (IsA improvement condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "improvidence is a kind of imprudence", "pln": ["(: cnet_isa_265ceb2f9c (IsA improvidence imprudence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "improvisation is a kind of expedient", "pln": ["(: cnet_isa_d461a690d6 (IsA improvisation expedient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "improvisation is a kind of creation", "pln": ["(: cnet_isa_9cf791b74f (IsA improvisation creation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "improvised explosive device is a kind of explosive device", "pln": ["(: cnet_isa_941acdd7ab (IsA improvised_explosive_device explosive_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imprudence is a kind of incaution", "pln": ["(: cnet_isa_b93bad04af (IsA imprudence incaution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impudence is a kind of disrespect", "pln": ["(: cnet_isa_3da3267e1e (IsA impudence disrespect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impulse is a kind of drive", "pln": ["(: cnet_isa_bb292f6f5b (IsA impulse drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "impulse turbine is a kind of turbine", "pln": ["(: cnet_isa_f14be0d68c (IsA impulse_turbine turbine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "impulsiveness is a kind of unthoughtfulness", "pln": ["(: cnet_isa_72d94aa0f5 (IsA impulsiveness unthoughtfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impunity is a kind of exemption", "pln": ["(: cnet_isa_1a87ae1ad9 (IsA impunity exemption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impurity is a kind of condition", "pln": ["(: cnet_isa_7e082f8c4b (IsA impurity condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "impurity is a kind of waste", "pln": ["(: cnet_isa_5bb8ef7e51 (IsA impurity waste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imputation is a kind of attribution", "pln": ["(: cnet_isa_16f68aae44 (IsA imputation attribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "imputation is a kind of accusation", "pln": ["(: cnet_isa_d8f0a855f1 (IsA imputation accusation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "in basket is a kind of receptacle", "pln": ["(: cnet_isa_324f6375ef (IsA in_basket receptacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "in fighting is a kind of boxing", "pln": ["(: cnet_isa_810c210da8 (IsA in_fighting boxing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "in fighting is a kind of fight", "pln": ["(: cnet_isa_f079978b6c (IsA in_fighting fight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "in joke is a kind of joke", "pln": ["(: cnet_isa_766404c89a (IsA in_joke joke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "in law is a kind of relative", "pln": ["(: cnet_isa_434d7c7bc0 (IsA in_law relative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "in time is a kind of musical time", "pln": ["(: cnet_isa_44330cdcc6 (IsA in_time musical_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inability is a kind of quality", "pln": ["(: cnet_isa_d972fd9ea5 (IsA inability quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inability is a kind of cognition", "pln": ["(: cnet_isa_4e1eb7b83a (IsA inability cognition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inaccessibility is a kind of inconvenience", "pln": ["(: cnet_isa_ffa2539eef (IsA inaccessibility inconvenience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inaccuracy is a kind of quality", "pln": ["(: cnet_isa_e6d31855f0 (IsA inaccuracy quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inachis is a kind of arthropod genus", "pln": ["(: cnet_isa_bf64fa8d26 (IsA inachis arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inaction is a kind of state", "pln": ["(: cnet_isa_1643e623ef (IsA inaction state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inactivation is a kind of natural process", "pln": ["(: cnet_isa_9d44995651 (IsA inactivation natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inactiveness is a kind of trait", "pln": ["(: cnet_isa_99f924c171 (IsA inactiveness trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inactivity is a kind of act", "pln": ["(: cnet_isa_f517d5096a (IsA inactivity act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inadequacy is a kind of unsatisfactoriness", "pln": ["(: cnet_isa_106e7ab1c9 (IsA inadequacy unsatisfactoriness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inadmissibility is a kind of unacceptability", "pln": ["(: cnet_isa_b29ea88cf9 (IsA inadmissibility unacceptability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inadvisability is a kind of bad", "pln": ["(: cnet_isa_917b1620b5 (IsA inadvisability bad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inamorata is a kind of lover", "pln": ["(: cnet_isa_7116ac9d4a (IsA inamorata lover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inamorata is a kind of woman", "pln": ["(: cnet_isa_36c36d1520 (IsA inamorata woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inamorato is a kind of lover", "pln": ["(: cnet_isa_8587e815b1 (IsA inamorato lover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inamorato is a kind of man", "pln": ["(: cnet_isa_02fcde1b98 (IsA inamorato man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inanimateness is a kind of physiological property", "pln": ["(: cnet_isa_be623b4fab (IsA inanimateness physiological_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inanition is a kind of exhaustion", "pln": ["(: cnet_isa_8363da76b4 (IsA inanition exhaustion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inanition is a kind of weakness", "pln": ["(: cnet_isa_9b9f2283e0 (IsA inanition weakness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inanity is a kind of meaninglessness", "pln": ["(: cnet_isa_a25acb1e52 (IsA inanity meaninglessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inapplicability is a kind of irrelevance", "pln": ["(: cnet_isa_ad2d7aff44 (IsA inapplicability irrelevance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inappropriateness is a kind of impropriety", "pln": ["(: cnet_isa_950e6c950d (IsA inappropriateness impropriety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inappropriateness is a kind of unsuitability", "pln": ["(: cnet_isa_25ed8cb579 (IsA inappropriateness unsuitability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inaptitude is a kind of inability", "pln": ["(: cnet_isa_ca5bf2611f (IsA inaptitude inability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inaptness is a kind of inappropriateness", "pln": ["(: cnet_isa_56911c59a9 (IsA inaptness inappropriateness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inattention is a kind of basic cognitive process", "pln": ["(: cnet_isa_6041ce4dab (IsA inattention basic_cognitive_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "inattentiveness is a kind of trait", "pln": ["(: cnet_isa_108087b80c (IsA inattentiveness trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inattentiveness is a kind of inattention", "pln": ["(: cnet_isa_627dbc10dc (IsA inattentiveness inattention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inaudibility is a kind of physical property", "pln": ["(: cnet_isa_1f9e3c4692 (IsA inaudibility physical_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "inaugural address is a kind of address", "pln": ["(: cnet_isa_e15a058867 (IsA inaugural_address address) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inauguration is a kind of beginning", "pln": ["(: cnet_isa_360c829f32 (IsA inauguration beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inauguration is a kind of initiation", "pln": ["(: cnet_isa_3016971fd4 (IsA inauguration initiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "inauguration day is a kind of day", "pln": ["(: cnet_isa_dc05783575 (IsA inauguration_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inauspiciousness is a kind of unfavorableness", "pln": ["(: cnet_isa_0d7065606a (IsA inauspiciousness unfavorableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "inborn error of metabolism is a kind of genetic disease", "pln": ["(: cnet_isa_79cb0a2ffc (IsA inborn_error_of_metabolism genetic_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inborn error of metabolism is a kind of metabolic disorder", "pln": ["(: cnet_isa_a5300ebe39 (IsA inborn_error_of_metabolism metabolic_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inbreeding is a kind of coupling", "pln": ["(: cnet_isa_8cec47f8d2 (IsA inbreeding coupling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inca is a kind of ruler", "pln": ["(: cnet_isa_11e7555f67 (IsA inca ruler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incan is a kind of quechua", "pln": ["(: cnet_isa_5850f78ac4 (IsA incan quechua) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incandescence is a kind of luminosity", "pln": ["(: cnet_isa_5f88ac93a7 (IsA incandescence luminosity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incandescence is a kind of light", "pln": ["(: cnet_isa_41e3b0427f (IsA incandescence light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incantation is a kind of spell", "pln": ["(: cnet_isa_72ca25a010 (IsA incantation spell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incapability is a kind of inability", "pln": ["(: cnet_isa_f55dfedc9e (IsA incapability inability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incapability is a kind of inaptitude", "pln": ["(: cnet_isa_68404360f0 (IsA incapability inaptitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incapacity is a kind of incapability", "pln": ["(: cnet_isa_1e75ff09f7 (IsA incapacity incapability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incapacity is a kind of inability", "pln": ["(: cnet_isa_7c3c9cffe6 (IsA incapacity inability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incarnation is a kind of religious doctrine", "pln": ["(: cnet_isa_154e4acd38 (IsA incarnation religious_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incarnation is a kind of time", "pln": ["(: cnet_isa_0b9b72f8f9 (IsA incarnation time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incaution is a kind of carelessness", "pln": ["(: cnet_isa_a3c55a4959 (IsA incaution carelessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incendiary bomb is a kind of bomb", "pln": ["(: cnet_isa_1ad70732a7 (IsA incendiary_bomb bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incendiary bomb large vehicle is a kind of attack", "pln": ["(: cnet_isa_1df2d54998 (IsA incendiary_bomb_large_vehicle attack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incense is a kind of aroma", "pln": ["(: cnet_isa_1b1eaa8674 (IsA incense aroma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incense is a kind of compound", "pln": ["(: cnet_isa_a8f2d14af6 (IsA incense compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incense cedar is a kind of cedar", "pln": ["(: cnet_isa_5fd25b6a45 (IsA incense_cedar cedar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incense tree is a kind of tree", "pln": ["(: cnet_isa_a179529a34 (IsA incense_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incense wood is a kind of wood", "pln": ["(: cnet_isa_63a356cdb4 (IsA incense_wood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incentive is a kind of rational motive", "pln": ["(: cnet_isa_73f8f59378 (IsA incentive rational_motive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incentive option is a kind of option", "pln": ["(: cnet_isa_93a1340b77 (IsA incentive_option option) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "incentive program is a kind of scheme", "pln": ["(: cnet_isa_99321eed86 (IsA incentive_program scheme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incest is a kind of unlawful carnal knowledge", "pln": ["(: cnet_isa_815aa0e66d (IsA incest unlawful_carnal_knowledge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inch is a kind of linear unit", "pln": ["(: cnet_isa_3699bf4a90 (IsA inch linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inchoative aspect is a kind of aspect", "pln": ["(: cnet_isa_163c8da8f8 (IsA inchoative_aspect aspect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incidence is a kind of frequency", "pln": ["(: cnet_isa_91941522d0 (IsA incidence frequency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incidence is a kind of optical phenomenon", "pln": ["(: cnet_isa_326f9195fd (IsA incidence optical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incident is a kind of happening", "pln": ["(: cnet_isa_68a23654c3 (IsA incident happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incident is a kind of disturbance", "pln": ["(: cnet_isa_1323c59048 (IsA incident disturbance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incidental is a kind of item", "pln": ["(: cnet_isa_a338f7ec03 (IsA incidental item) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "incidental expense is a kind of expense", "pln": ["(: cnet_isa_30a10d868b (IsA incidental_expense expense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incidental music is a kind of musical composition", "pln": ["(: cnet_isa_6120b0e932 (IsA incidental_music musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incineration is a kind of burning", "pln": ["(: cnet_isa_5e6c99207f (IsA incineration burning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incinerator is a kind of furnace", "pln": ["(: cnet_isa_db25f08a0b (IsA incinerator furnace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incipiency is a kind of beginning", "pln": ["(: cnet_isa_bd184b41c0 (IsA incipiency beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incision is a kind of cut", "pln": ["(: cnet_isa_5d93f8b393 (IsA incision cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incision is a kind of depression", "pln": ["(: cnet_isa_4dcc639dee (IsA incision depression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incisiveness is a kind of effectiveness", "pln": ["(: cnet_isa_a7b3abd98a (IsA incisiveness effectiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incisor is a kind of tooth", "pln": ["(: cnet_isa_f9270833e1 (IsA incisor tooth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incisure is a kind of notch", "pln": ["(: cnet_isa_bab4e8f6c4 (IsA incisure notch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incitation is a kind of arousal", "pln": ["(: cnet_isa_c499a02e89 (IsA incitation arousal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incitement is a kind of psychic energy", "pln": ["(: cnet_isa_85df4a53f8 (IsA incitement psychic_energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incivility is a kind of discourtesy", "pln": ["(: cnet_isa_34d225968e (IsA incivility discourtesy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inclination is a kind of motion", "pln": ["(: cnet_isa_27691be407 (IsA inclination motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inclination is a kind of angle", "pln": ["(: cnet_isa_fa33d68350 (IsA inclination angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inclination is a kind of attitude", "pln": ["(: cnet_isa_e7a88a4e6c (IsA inclination attitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "inclination is a kind of liking", "pln": ["(: cnet_isa_1edcd1511a (IsA inclination liking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incline bench press is a kind of bench press", "pln": ["(: cnet_isa_0f34845a68 (IsA incline_bench_press bench_press) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inclined fault is a kind of fault", "pln": ["(: cnet_isa_fb45059098 (IsA inclined_fault fault) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inclined plane is a kind of machine", "pln": ["(: cnet_isa_2e3ff0e6ee (IsA inclined_plane machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inclinometer is a kind of measuring instrument", "pln": ["(: cnet_isa_2fde1057ec (IsA inclinometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inclinometer is a kind of navigational instrument", "pln": ["(: cnet_isa_f3a661ce6b (IsA inclinometer navigational_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inclusion is a kind of increase", "pln": ["(: cnet_isa_6c8e12608f (IsA inclusion increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "inclusion is a kind of involvement", "pln": ["(: cnet_isa_138293373a (IsA inclusion involvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inclusion is a kind of situation", "pln": ["(: cnet_isa_ea41efbcd6 (IsA inclusion situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inclusion body is a kind of body", "pln": ["(: cnet_isa_c6a2e1abb5 (IsA inclusion_body body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inclusion body myositis is a kind of myositis", "pln": ["(: cnet_isa_bdd5a54f23 (IsA inclusion_body_myositis myositis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incognizance is a kind of knowing", "pln": ["(: cnet_isa_5c912185a0 (IsA incognizance knowing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incoherence is a kind of nonsense", "pln": ["(: cnet_isa_628c7af6dc (IsA incoherence nonsense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incoherence is a kind of disjunction", "pln": ["(: cnet_isa_f1a3b0071a (IsA incoherence disjunction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "income is a kind of financial gain", "pln": ["(: cnet_isa_489cd4d960 (IsA income financial_gain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "income bracket is a kind of bracket", "pln": ["(: cnet_isa_7f51022b23 (IsA income_bracket bracket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "income statement is a kind of statement", "pln": ["(: cnet_isa_d9f403e9a5 (IsA income_statement statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "income tax is a kind of tax", "pln": ["(: cnet_isa_2f7416c2f9 (IsA income_tax tax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incommutability is a kind of unexchangeability", "pln": ["(: cnet_isa_d6e0a96357 (IsA incommutability unexchangeability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incompatibility is a kind of characteristic", "pln": ["(: cnet_isa_d22b94644d (IsA incompatibility characteristic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incompatibility is a kind of physiological state", "pln": ["(: cnet_isa_e0a2db13be (IsA incompatibility physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incompatibility is a kind of contradictoriness", "pln": ["(: cnet_isa_00e4ab95ea (IsA incompatibility contradictoriness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incompetence is a kind of inability", "pln": ["(: cnet_isa_0ad679636a (IsA incompetence inability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incompetence is a kind of disease", "pln": ["(: cnet_isa_3a8f2a6e1d (IsA incompetence disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incompetent is a kind of unskilled person", "pln": ["(: cnet_isa_8d047ba18b (IsA incompetent unskilled_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incompetent cervix is a kind of cervix", "pln": ["(: cnet_isa_f650fb865c (IsA incompetent_cervix cervix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incomplete abortion is a kind of spontaneous abortion", "pln": ["(: cnet_isa_8ab2c65048 (IsA incomplete_abortion spontaneous_abortion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incomplete fracture is a kind of fracture", "pln": ["(: cnet_isa_776c923892 (IsA incomplete_fracture fracture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incompleteness is a kind of integrity", "pln": ["(: cnet_isa_2c0d37b619 (IsA incompleteness integrity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incomprehensibility is a kind of quality", "pln": ["(: cnet_isa_10f735765b (IsA incomprehensibility quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incomprehension is a kind of inability", "pln": ["(: cnet_isa_b400cfbe09 (IsA incomprehension inability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incompressibility is a kind of hardness", "pln": ["(: cnet_isa_aa67d0bf19 (IsA incompressibility hardness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inconceivability is a kind of impossibility", "pln": ["(: cnet_isa_9be2e63de5 (IsA inconceivability impossibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inconclusiveness is a kind of indefiniteness", "pln": ["(: cnet_isa_d0c4fead71 (IsA inconclusiveness indefiniteness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incongruity is a kind of incompatibility", "pln": ["(: cnet_isa_2b76331209 (IsA incongruity incompatibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inconsequence is a kind of insignificance", "pln": ["(: cnet_isa_597247d305 (IsA inconsequence insignificance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inconsideration is a kind of unkindness", "pln": ["(: cnet_isa_34d6f978e0 (IsA inconsideration unkindness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inconsistency is a kind of nonuniformity", "pln": ["(: cnet_isa_1af9cae835 (IsA inconsistency nonuniformity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inconspicuousness is a kind of invisibility", "pln": ["(: cnet_isa_eb783e07c2 (IsA inconspicuousness invisibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inconstancy is a kind of changeableness", "pln": ["(: cnet_isa_957ce5d5f1 (IsA inconstancy changeableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incontinence is a kind of elimination", "pln": ["(: cnet_isa_00d97c0b27 (IsA incontinence elimination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incontrovertibility is a kind of indisputability", "pln": ["(: cnet_isa_0a53dbc204 (IsA incontrovertibility indisputability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "inconvenience is a kind of unsuitability", "pln": ["(: cnet_isa_a3e02be174 (IsA inconvenience unsuitability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inconvenience is a kind of discomfort", "pln": ["(: cnet_isa_89931c9b81 (IsA inconvenience discomfort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "inconvertibility is a kind of exchangeability", "pln": ["(: cnet_isa_cb4726862e (IsA inconvertibility exchangeability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incoordination is a kind of unskillfulness", "pln": ["(: cnet_isa_0ab2d77684 (IsA incoordination unskillfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incorporation is a kind of consolidation", "pln": ["(: cnet_isa_871b3e5d75 (IsA incorporation consolidation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incorporation is a kind of inclusion", "pln": ["(: cnet_isa_9e7dd09726 (IsA incorporation inclusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incorrectness is a kind of impropriety", "pln": ["(: cnet_isa_824cb6a941 (IsA incorrectness impropriety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incorrectness is a kind of quality", "pln": ["(: cnet_isa_ed735966d4 (IsA incorrectness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incorruptibility is a kind of honesty", "pln": ["(: cnet_isa_ebf775c40f (IsA incorruptibility honesty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "incorruptness is a kind of honesty", "pln": ["(: cnet_isa_0f66bae875 (IsA incorruptness honesty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "increase is a kind of change of magnitude", "pln": ["(: cnet_isa_d8a5fbc848 (IsA increase change_of_magnitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "increase is a kind of amount", "pln": ["(: cnet_isa_bae01833fb (IsA increase amount) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "increase is a kind of change", "pln": ["(: cnet_isa_16f4f7360e (IsA increase change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "increase is a kind of process", "pln": ["(: cnet_isa_30afa55412 (IsA increase process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "increased taxe is a kind of issue", "pln": ["(: cnet_isa_dc6adc972b (IsA increased_taxe issue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incredibility is a kind of quality", "pln": ["(: cnet_isa_d3ac2ea7aa (IsA incredibility quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "incredulity is a kind of doubt", "pln": ["(: cnet_isa_5d9f0076c6 (IsA incredulity doubt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incrimination is a kind of accusation", "pln": ["(: cnet_isa_150f3dc743 (IsA incrimination accusation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incrustation is a kind of decoration", "pln": ["(: cnet_isa_69f8f58d4c (IsA incrustation decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incrustation is a kind of formation", "pln": ["(: cnet_isa_bffe334945 (IsA incrustation formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incubation is a kind of care", "pln": ["(: cnet_isa_3b26b4eeda (IsA incubation care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incubation is a kind of phase", "pln": ["(: cnet_isa_f5d7f7a088 (IsA incubation phase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incubation period is a kind of time period", "pln": ["(: cnet_isa_f3d106cf45 (IsA incubation_period time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incubator is a kind of apparatus", "pln": ["(: cnet_isa_dfc005bcb6 (IsA incubator apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incubus is a kind of devil", "pln": ["(: cnet_isa_29cebe6a24 (IsA incubus devil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incubus is a kind of unpleasant person", "pln": ["(: cnet_isa_d423a9ff77 (IsA incubus unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "inculcation is a kind of indoctrination", "pln": ["(: cnet_isa_d38c7b5c76 (IsA inculcation indoctrination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incumbency is a kind of duty", "pln": ["(: cnet_isa_2e3edbe762 (IsA incumbency duty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incumbency is a kind of position", "pln": ["(: cnet_isa_cd5965b0c1 (IsA incumbency position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incumbent is a kind of holder", "pln": ["(: cnet_isa_c978f328ff (IsA incumbent holder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incumbent is a kind of official", "pln": ["(: cnet_isa_dfc4cd795c (IsA incumbent official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incurability is a kind of characteristic", "pln": ["(: cnet_isa_00c69fd99d (IsA incurability characteristic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incurability is a kind of unalterability", "pln": ["(: cnet_isa_fedd4a5b0e (IsA incurability unalterability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incurable is a kind of sick person", "pln": ["(: cnet_isa_38ed69eb04 (IsA incurable sick_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "incurrence is a kind of commitment", "pln": ["(: cnet_isa_7da42d1636 (IsA incurrence commitment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incurring is a kind of acquisition", "pln": ["(: cnet_isa_24797d5df6 (IsA incurring acquisition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incursion is a kind of entrance", "pln": ["(: cnet_isa_754ef5dc89 (IsA incursion entrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incursion is a kind of mistake", "pln": ["(: cnet_isa_13aad6834a (IsA incursion mistake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incurvation is a kind of bending", "pln": ["(: cnet_isa_7af12a6252 (IsA incurvation bending) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "incus is a kind of auditory ossicle", "pln": ["(: cnet_isa_1562f2ff53 (IsA incus auditory_ossicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indaba is a kind of council", "pln": ["(: cnet_isa_9c5ac3efdf (IsA indaba council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indebtedness is a kind of obligation", "pln": ["(: cnet_isa_c8d6d5e970 (IsA indebtedness obligation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indecency is a kind of misbehavior", "pln": ["(: cnet_isa_a9c389f06a (IsA indecency misbehavior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indecency is a kind of impropriety", "pln": ["(: cnet_isa_73487e3c7c (IsA indecency impropriety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indecent exposure is a kind of misdemeanor", "pln": ["(: cnet_isa_23a12244ff (IsA indecent_exposure misdemeanor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indecision is a kind of doubt", "pln": ["(: cnet_isa_677afdf389 (IsA indecision doubt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indecisiveness is a kind of irresoluteness", "pln": ["(: cnet_isa_044485229e (IsA indecisiveness irresoluteness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indecorum is a kind of impropriety", "pln": ["(: cnet_isa_c3fc0f36b7 (IsA indecorum impropriety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indefatigability is a kind of determination", "pln": ["(: cnet_isa_80e3c73094 (IsA indefatigability determination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indefinite article is a kind of article", "pln": ["(: cnet_isa_d9728451a8 (IsA indefinite_article article) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indefinite integral is a kind of integral", "pln": ["(: cnet_isa_21d79042f8 (IsA indefinite_integral integral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indefinite quantity is a kind of measure", "pln": ["(: cnet_isa_db92be853f (IsA indefinite_quantity measure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indefiniteness is a kind of uncertainty", "pln": ["(: cnet_isa_75d9e246ef (IsA indefiniteness uncertainty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indelible ink is a kind of ink", "pln": ["(: cnet_isa_41de322cf3 (IsA indelible_ink ink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indelicacy is a kind of discourtesy", "pln": ["(: cnet_isa_f3c88b1b1b (IsA indelicacy discourtesy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indelicacy is a kind of impropriety", "pln": ["(: cnet_isa_b3bd4aaeb2 (IsA indelicacy impropriety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indemnification is a kind of recompense", "pln": ["(: cnet_isa_4cb2c0dda0 (IsA indemnification recompense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indemnity is a kind of exemption", "pln": ["(: cnet_isa_63ee2b8548 (IsA indemnity exemption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indemnity is a kind of protection", "pln": ["(: cnet_isa_58ba46da21 (IsA indemnity protection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indene is a kind of hydrocarbon", "pln": ["(: cnet_isa_e1b36dddd8 (IsA indene hydrocarbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indent is a kind of order", "pln": ["(: cnet_isa_83a92096f8 (IsA indent order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indentation is a kind of change of shape", "pln": ["(: cnet_isa_1cad8ce54f (IsA indentation change_of_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indentation is a kind of space", "pln": ["(: cnet_isa_06d7399569 (IsA indentation space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indentation is a kind of concave shape", "pln": ["(: cnet_isa_efb355d5b4 (IsA indentation concave_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indenture is a kind of contract", "pln": ["(: cnet_isa_aa592a3a6c (IsA indenture contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indenture is a kind of written agreement", "pln": ["(: cnet_isa_de3478929b (IsA indenture written_agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "independence is a kind of victory", "pln": ["(: cnet_isa_61e71e0a2b (IsA independence victory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "independence is a kind of freedom", "pln": ["(: cnet_isa_63d86e7cfe (IsA independence freedom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "independence day is a kind of legal holiday", "pln": ["(: cnet_isa_e1fbfdf146 (IsA independence_day legal_holiday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "independent agency is a kind of agency", "pln": ["(: cnet_isa_7931be8930 (IsA independent_agency agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "independent variable is a kind of variable", "pln": ["(: cnet_isa_36e8a09aca (IsA independent_variable variable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indestructibility is a kind of lastingness", "pln": ["(: cnet_isa_ef9587e18c (IsA indestructibility lastingness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "index is a kind of finger", "pln": ["(: cnet_isa_1db0847d3a (IsA index finger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "index is a kind of fact", "pln": ["(: cnet_isa_0af7e103a1 (IsA index fact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "index is a kind of list", "pln": ["(: cnet_isa_e6ca5b9c0c (IsA index list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "index is a kind of scale", "pln": ["(: cnet_isa_da771854ea (IsA index scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "index card is a kind of small piece of lightweight card", "pln": ["(: cnet_isa_34bc6cddf6 (IsA index_card small_piece_of_lightweight_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "index case is a kind of patient", "pln": ["(: cnet_isa_e2e07e5d61 (IsA index_case patient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "index finger is a kind of finger", "pln": ["(: cnet_isa_3a93a788b5 (IsA index_finger finger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "index fossil is a kind of fossil", "pln": ["(: cnet_isa_9935126b63 (IsA index_fossil fossil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "index fund is a kind of mutual fund", "pln": ["(: cnet_isa_b228424bfc (IsA index_fund mutual_fund) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "index register is a kind of register", "pln": ["(: cnet_isa_059ec58836 (IsA index_register register) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indexation is a kind of regulation", "pln": ["(: cnet_isa_f44f5359bd (IsA indexation regulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indexer is a kind of skilled worker", "pln": ["(: cnet_isa_a87be9d06d (IsA indexer skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "indexing is a kind of categorization", "pln": ["(: cnet_isa_0e04ea8b21 (IsA indexing categorization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "india is a kind of asian country", "pln": ["(: cnet_isa_a96128145e (IsA india asian_country) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "india is a kind of country", "pln": ["(: cnet_isa_0874de3e91 (IsA india country) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "india is a kind of country in asia", "pln": ["(: cnet_isa_2804fd4d83 (IsA india country_in_asia) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "india is a kind of very populous country", "pln": ["(: cnet_isa_15e0291df4 (IsA india very_populous_country) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "india ink is a kind of ink", "pln": ["(: cnet_isa_a53056a7dc (IsA india_ink ink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "india paper is a kind of paper", "pln": ["(: cnet_isa_8383fe7e7b (IsA india_paper paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "india rubber tree is a kind of fig tree", "pln": ["(: cnet_isa_029147bd34 (IsA india_rubber_tree fig_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "indiaman is a kind of sailing vessel", "pln": ["(: cnet_isa_49fac2c8d5 (IsA indiaman sailing_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian is a kind of asiatic", "pln": ["(: cnet_isa_45fd173e65 (IsA indian asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "indian agent is a kind of agent", "pln": ["(: cnet_isa_937ff2ece3 (IsA indian_agent agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian beech is a kind of tree", "pln": ["(: cnet_isa_20f6d3945d (IsA indian_beech tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "indian blackwood is a kind of rosewood", "pln": ["(: cnet_isa_fbce0b56eb (IsA indian_blackwood rosewood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian buffalo is a kind of water buffalo", "pln": ["(: cnet_isa_e5d81fca68 (IsA indian_buffalo water_buffalo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian button fern is a kind of fern", "pln": ["(: cnet_isa_79a9b9a451 (IsA indian_button_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian chieftain is a kind of headman", "pln": ["(: cnet_isa_1a2cca4134 (IsA indian_chieftain headman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian club is a kind of club", "pln": ["(: cnet_isa_ef7d6127a1 (IsA indian_club club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian cobra is a kind of cobra", "pln": ["(: cnet_isa_5865a1c27b (IsA indian_cobra cobra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian coral tree is a kind of coral tree", "pln": ["(: cnet_isa_c17f7d618a (IsA indian_coral_tree coral_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian crocus is a kind of orchid", "pln": ["(: cnet_isa_dc032d5d8d (IsA indian_crocus orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian elephant is a kind of elephant", "pln": ["(: cnet_isa_6342231563 (IsA indian_elephant elephant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian giver is a kind of donor", "pln": ["(: cnet_isa_e60997b923 (IsA indian_giver donor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian hemp is a kind of cannabis", "pln": ["(: cnet_isa_afecab6d68 (IsA indian_hemp cannabis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian hemp is a kind of dogbane", "pln": ["(: cnet_isa_be47df57d9 (IsA indian_hemp dogbane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian lettuce is a kind of herb", "pln": ["(: cnet_isa_7b3ff842ca (IsA indian_lettuce herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian madder is a kind of madderwort", "pln": ["(: cnet_isa_ce96356e8d (IsA indian_madder madderwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian mallow is a kind of mallow", "pln": ["(: cnet_isa_a116da5a2c (IsA indian_mallow mallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_9f1ec699ad (IsA indian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian mongoose is a kind of mongoose", "pln": ["(: cnet_isa_ab295b07c5 (IsA indian_mongoose mongoose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian paintbrush is a kind of wildflower", "pln": ["(: cnet_isa_f36399d78b (IsA indian_paintbrush wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian pipe is a kind of wildflower", "pln": ["(: cnet_isa_643eeef890 (IsA indian_pipe wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian plantain is a kind of herb", "pln": ["(: cnet_isa_edcf776b7e (IsA indian_plantain herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian poke is a kind of pokeweed", "pln": ["(: cnet_isa_2869e6589b (IsA indian_poke pokeweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian python is a kind of python", "pln": ["(: cnet_isa_1921290877 (IsA indian_python python) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian rat snake is a kind of rat snake", "pln": ["(: cnet_isa_1b522e06aa (IsA indian_rat_snake rat_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian rattlebox is a kind of crotalaria", "pln": ["(: cnet_isa_3a0daaf769 (IsA indian_rattlebox crotalaria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian red is a kind of reddish brown", "pln": ["(: cnet_isa_5fed6a361f (IsA indian_red reddish_brown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian red is a kind of pigment", "pln": ["(: cnet_isa_6da3ee2eea (IsA indian_red pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian red is a kind of soil", "pln": ["(: cnet_isa_db2c9509ec (IsA indian_red soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian reservation is a kind of reservation", "pln": ["(: cnet_isa_4bf10e0382 (IsA indian_reservation reservation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian rhinocero is a kind of rhinocero", "pln": ["(: cnet_isa_0ca1c0a66f (IsA indian_rhinocero rhinocero) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian rhododendron is a kind of shrub", "pln": ["(: cnet_isa_255fe7e7f6 (IsA indian_rhododendron shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian rupee is a kind of indian monetary unit", "pln": ["(: cnet_isa_d8d720a2ae (IsA indian_rupee indian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian summer is a kind of time period", "pln": ["(: cnet_isa_c56baf8c75 (IsA indian_summer time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indian tobacco is a kind of lobelia", "pln": ["(: cnet_isa_b68e50fa08 (IsA indian_tobacco lobelia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "indian trail is a kind of trail", "pln": ["(: cnet_isa_af2a1b939a (IsA indian_trail trail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indiana jone is a kind of fictional character", "pln": ["(: cnet_isa_66534bf468 (IsA indiana_jone fictional_character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indic is a kind of indo iranian", "pln": ["(: cnet_isa_a1ec1ccd5c (IsA indic indo_iranian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indica is a kind of marijuana", "pln": ["(: cnet_isa_667a405241 (IsA indica marijuana) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indica is a kind of marijuanna", "pln": ["(: cnet_isa_dc7999683e (IsA indica marijuanna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indication is a kind of advice", "pln": ["(: cnet_isa_77334ae4dd (IsA indication advice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indication is a kind of communication", "pln": ["(: cnet_isa_366a686c82 (IsA indication communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "indication is a kind of naming", "pln": ["(: cnet_isa_bff1186ce6 (IsA indication naming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indication is a kind of reason", "pln": ["(: cnet_isa_5c6708ed63 (IsA indication reason) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "indicative mood is a kind of mood", "pln": ["(: cnet_isa_23d3424a8c (IsA indicative_mood mood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "indicator is a kind of device", "pln": ["(: cnet_isa_fe30b97068 (IsA indicator device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indicator is a kind of coloring material", "pln": ["(: cnet_isa_eacf86e1be (IsA indicator coloring_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indicator is a kind of signal", "pln": ["(: cnet_isa_053d16f326 (IsA indicator signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indicatoridae is a kind of bird family", "pln": ["(: cnet_isa_35a0457402 (IsA indicatoridae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indiction is a kind of time period", "pln": ["(: cnet_isa_e731c1b0b8 (IsA indiction time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indictment is a kind of accusation", "pln": ["(: cnet_isa_441183aaa9 (IsA indictment accusation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indictment is a kind of legal document", "pln": ["(: cnet_isa_266263150d (IsA indictment legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indie is a kind of film company", "pln": ["(: cnet_isa_462fd41b13 (IsA indie film_company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indie is a kind of pop group", "pln": ["(: cnet_isa_74d865c2ef (IsA indie pop_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indifference is a kind of unconcern", "pln": ["(: cnet_isa_e1e2f39e27 (IsA indifference unconcern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "indigence is a kind of poverty", "pln": ["(: cnet_isa_3f3a83b8be (IsA indigence poverty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indigenous language is a kind of language", "pln": ["(: cnet_isa_90b8505597 (IsA indigenous_language language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indigenousness is a kind of nativeness", "pln": ["(: cnet_isa_759e5a32b8 (IsA indigenousness nativeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indigestibility is a kind of edibility", "pln": ["(: cnet_isa_28a79149dd (IsA indigestibility edibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indigestion is a kind of symptom", "pln": ["(: cnet_isa_73a218dfae (IsA indigestion symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "indignation is a kind of anger", "pln": ["(: cnet_isa_ffec36e875 (IsA indignation anger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indignity is a kind of insult", "pln": ["(: cnet_isa_c639d157f9 (IsA indignity insult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indigo is a kind of violet", "pln": ["(: cnet_isa_15517ee929 (IsA indigo violet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indigo is a kind of shrub", "pln": ["(: cnet_isa_719ba30679 (IsA indigo shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indigo broom is a kind of wild indigo", "pln": ["(: cnet_isa_a5e8a5a907 (IsA indigo_broom wild_indigo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indigo bunting is a kind of bunting", "pln": ["(: cnet_isa_d01a91e5c3 (IsA indigo_bunting bunting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indigo snake is a kind of colubrid snake", "pln": ["(: cnet_isa_27590b9e97 (IsA indigo_snake colubrid_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indigofera is a kind of rosid dicot genus", "pln": ["(: cnet_isa_250f7c845f (IsA indigofera rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indirect antonym is a kind of antonym", "pln": ["(: cnet_isa_8b9c7f42f9 (IsA indirect_antonym antonym) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indirect discourse is a kind of report", "pln": ["(: cnet_isa_d2f11d8c99 (IsA indirect_discourse report) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indirect fire is a kind of fire", "pln": ["(: cnet_isa_b77334bc5b (IsA indirect_fire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indirect immunofluorescence is a kind of fluorescence microscopy", "pln": ["(: cnet_isa_a35c28e3d3 (IsA indirect_immunofluorescence fluorescence_microscopy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indirect lighting is a kind of lighting fixture", "pln": ["(: cnet_isa_d70793d805 (IsA indirect_lighting lighting_fixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indirect object is a kind of object", "pln": ["(: cnet_isa_85fefd7336 (IsA indirect_object object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indirect tax is a kind of tax", "pln": ["(: cnet_isa_6758bc432e (IsA indirect_tax tax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indirect transmission is a kind of transmission mechanism", "pln": ["(: cnet_isa_4d91976360 (IsA indirect_transmission transmission_mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indirection is a kind of deception", "pln": ["(: cnet_isa_2731db9f72 (IsA indirection deception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indirection is a kind of procedure", "pln": ["(: cnet_isa_7ea8d60b91 (IsA indirection procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indirectness is a kind of characteristic", "pln": ["(: cnet_isa_d128f3f7d5 (IsA indirectness characteristic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indiscipline is a kind of trait", "pln": ["(: cnet_isa_69ac9ed66f (IsA indiscipline trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "indiscretion is a kind of misbehavior", "pln": ["(: cnet_isa_0b3f566470 (IsA indiscretion misbehavior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indiscretion is a kind of folly", "pln": ["(: cnet_isa_04df4f717f (IsA indiscretion folly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indispensability is a kind of essentiality", "pln": ["(: cnet_isa_143e432964 (IsA indispensability essentiality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indisposition is a kind of illness", "pln": ["(: cnet_isa_c62ef98b22 (IsA indisposition illness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indisputability is a kind of certainty", "pln": ["(: cnet_isa_4932888ecb (IsA indisputability certainty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indistinctness is a kind of opacity", "pln": ["(: cnet_isa_82356f5334 (IsA indistinctness opacity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indium is a kind of metallic element", "pln": ["(: cnet_isa_fffffa40eb (IsA indium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "individual is a kind of organism", "pln": ["(: cnet_isa_c5a17d0630 (IsA individual organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "individual retirement account is a kind of pension plan", "pln": ["(: cnet_isa_14393fd61d (IsA individual_retirement_account pension_plan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "individualism is a kind of belief", "pln": ["(: cnet_isa_0f0b944299 (IsA individualism belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "individualism is a kind of doctrine", "pln": ["(: cnet_isa_ea13f784f4 (IsA individualism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "individualist is a kind of person", "pln": ["(: cnet_isa_a4959f8946 (IsA individualist person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "individuality is a kind of trait", "pln": ["(: cnet_isa_3cb860b9ea (IsA individuality trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "individualization is a kind of discrimination", "pln": ["(: cnet_isa_d6d5149f69 (IsA individualization discrimination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indo european is a kind of natural language", "pln": ["(: cnet_isa_aa8308aff2 (IsA indo_european natural_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indo european is a kind of primitive", "pln": ["(: cnet_isa_9cb800b3fb (IsA indo_european primitive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indo iranian is a kind of indo european", "pln": ["(: cnet_isa_d82b2a40ac (IsA indo_iranian indo_european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indoctrination is a kind of teaching", "pln": ["(: cnet_isa_5b8a6fc664 (IsA indoctrination teaching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indoleacetic acid is a kind of auxin", "pln": ["(: cnet_isa_b2108111f0 (IsA indoleacetic_acid auxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indolebutyric acid is a kind of auxin", "pln": ["(: cnet_isa_7c5fb54ceb (IsA indolebutyric_acid auxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indolence is a kind of inactiveness", "pln": ["(: cnet_isa_dd12ac2623 (IsA indolence inactiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indomitability is a kind of strength", "pln": ["(: cnet_isa_e1eafe8446 (IsA indomitability strength) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indonesia is a kind of archipelago", "pln": ["(: cnet_isa_5ea7695c80 (IsA indonesia archipelago) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indonesian is a kind of malay", "pln": ["(: cnet_isa_ae681a2a1b (IsA indonesian malay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indonesian is a kind of asiatic", "pln": ["(: cnet_isa_7763ef086d (IsA indonesian asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indonesian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_59099da7b6 (IsA indonesian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indri is a kind of lemur", "pln": ["(: cnet_isa_38addb6969 (IsA indri lemur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indriidae is a kind of mammal family", "pln": ["(: cnet_isa_b3dcbd4c01 (IsA indriidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "induced abortion is a kind of abortion", "pln": ["(: cnet_isa_338cb90102 (IsA induced_abortion abortion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inducement is a kind of causing", "pln": ["(: cnet_isa_f0bfcef2db (IsA inducement causing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inducer is a kind of agent", "pln": ["(: cnet_isa_168287962e (IsA inducer agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "inductance unit is a kind of electromagnetic unit", "pln": ["(: cnet_isa_3a6948c0af (IsA inductance_unit electromagnetic_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inductee is a kind of member", "pln": ["(: cnet_isa_cd81a640e1 (IsA inductee member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "induction is a kind of introduction", "pln": ["(: cnet_isa_e0b0d95ce3 (IsA induction introduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "induction is a kind of electrical phenomenon", "pln": ["(: cnet_isa_eb05bc764a (IsA induction electrical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "induction coil is a kind of coil", "pln": ["(: cnet_isa_b266df2b9c (IsA induction_coil coil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "induction heating is a kind of heating", "pln": ["(: cnet_isa_66a908c43e (IsA induction_heating heating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "induction of labor is a kind of induction", "pln": ["(: cnet_isa_4665cd2963 (IsA induction_of_labor induction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inductor is a kind of electrical device", "pln": ["(: cnet_isa_31f5e4a568 (IsA inductor electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indulgence is a kind of gratification", "pln": ["(: cnet_isa_f305d49377 (IsA indulgence gratification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "indulgence is a kind of indiscipline", "pln": ["(: cnet_isa_41e702c4f9 (IsA indulgence indiscipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indulgence is a kind of permissiveness", "pln": ["(: cnet_isa_4a7ce62154 (IsA indulgence permissiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indulgence is a kind of absolution", "pln": ["(: cnet_isa_23522858bc (IsA indulgence absolution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "indumentum is a kind of covering", "pln": ["(: cnet_isa_057e4a14df (IsA indumentum covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indurated clay is a kind of soil", "pln": ["(: cnet_isa_a6bdbd3d87 (IsA indurated_clay soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indus civilization is a kind of culture", "pln": ["(: cnet_isa_0a774b8c71 (IsA indus_civilization culture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indusium is a kind of covering", "pln": ["(: cnet_isa_58bc501afe (IsA indusium covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "industrial air pollution is a kind of air pollution", "pln": ["(: cnet_isa_998f2ebffa (IsA industrial_air_pollution air_pollution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "industrial art is a kind of course", "pln": ["(: cnet_isa_1e86c9ead4 (IsA industrial_art course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "industrial bank is a kind of consumer finance company", "pln": ["(: cnet_isa_9278665dda (IsA industrial_bank consumer_finance_company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "industrial engineering is a kind of engineering", "pln": ["(: cnet_isa_717fe9a9bc (IsA industrial_engineering engineering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "industrial park is a kind of tract", "pln": ["(: cnet_isa_4122baa72a (IsA industrial_park tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "industrial process is a kind of process", "pln": ["(: cnet_isa_5d7f212531 (IsA industrial_process process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "industrial union is a kind of union", "pln": ["(: cnet_isa_4cbdba8822 (IsA industrial_union union) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "industrial watercourse is a kind of canal", "pln": ["(: cnet_isa_38f6eaa638 (IsA industrial_watercourse canal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "industrial worker of world is a kind of labor movement", "pln": ["(: cnet_isa_625f32b24f (IsA industrial_worker_of_world labor_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "industrial worker of world is a kind of union", "pln": ["(: cnet_isa_d5c365bfae (IsA industrial_worker_of_world union) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "industrialism is a kind of economy", "pln": ["(: cnet_isa_b1133b0794 (IsA industrialism economy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "industrialist is a kind of businessman", "pln": ["(: cnet_isa_79fe9bb226 (IsA industrialist businessman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "industrialization is a kind of industry", "pln": ["(: cnet_isa_0850009601 (IsA industrialization industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "industry is a kind of commercial enterprise", "pln": ["(: cnet_isa_a75d2badd6 (IsA industry commercial_enterprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "industry analyst is a kind of analyst", "pln": ["(: cnet_isa_1cf294ac1b (IsA industry_analyst analyst) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "indweller is a kind of activation", "pln": ["(: cnet_isa_f6de377033 (IsA indweller activation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inebriated is a kind of another word for drunk", "pln": ["(: cnet_isa_6a90a8f67f (IsA inebriated another_word_for_drunk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ineffectiveness is a kind of powerlessness", "pln": ["(: cnet_isa_4d87004353 (IsA ineffectiveness powerlessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inefficacy is a kind of ineffectiveness", "pln": ["(: cnet_isa_a42c629818 (IsA inefficacy ineffectiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inefficiency is a kind of unskillfulness", "pln": ["(: cnet_isa_eb6b8d1c60 (IsA inefficiency unskillfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inelasticity is a kind of physical property", "pln": ["(: cnet_isa_a11597db42 (IsA inelasticity physical_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inelegance is a kind of quality", "pln": ["(: cnet_isa_e23753291c (IsA inelegance quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ineligibility is a kind of qualification", "pln": ["(: cnet_isa_c6afad02bb (IsA ineligibility qualification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ineluctability is a kind of certainty", "pln": ["(: cnet_isa_6eac1bb1e7 (IsA ineluctability certainty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inequality is a kind of difference", "pln": ["(: cnet_isa_f9672a65db (IsA inequality difference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inerrancy is a kind of infallibility", "pln": ["(: cnet_isa_8bd7a3af90 (IsA inerrancy infallibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inertia is a kind of mechanical phenomenon", "pln": ["(: cnet_isa_e6899512ee (IsA inertia mechanical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inertial guidance is a kind of steering", "pln": ["(: cnet_isa_e52866fca3 (IsA inertial_guidance steering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inertial guidance system is a kind of system", "pln": ["(: cnet_isa_b4f8e92c20 (IsA inertial_guidance_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "inertial mass is a kind of mass", "pln": ["(: cnet_isa_cc76900368 (IsA inertial_mass mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inertial reference frame is a kind of coordinate system", "pln": ["(: cnet_isa_4de19da9a7 (IsA inertial_reference_frame coordinate_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inertness is a kind of immobility", "pln": ["(: cnet_isa_61541730e9 (IsA inertness immobility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inessential is a kind of thing", "pln": ["(: cnet_isa_fd3cbb19af (IsA inessential thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "inessentiality is a kind of unimportance", "pln": ["(: cnet_isa_db5118753b (IsA inessentiality unimportance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inevitability is a kind of certainty", "pln": ["(: cnet_isa_71b426c6ca (IsA inevitability certainty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inevitable is a kind of destiny", "pln": ["(: cnet_isa_4461030991 (IsA inevitable destiny) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inexactness is a kind of inaccuracy", "pln": ["(: cnet_isa_c810ed5134 (IsA inexactness inaccuracy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inexpedience is a kind of disadvantage", "pln": ["(: cnet_isa_3ba0693870 (IsA inexpedience disadvantage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inexpensiveness is a kind of monetary value", "pln": ["(: cnet_isa_10f79c69e3 (IsA inexpensiveness monetary_value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inexperience is a kind of ignorance", "pln": ["(: cnet_isa_3fc5e26139 (IsA inexperience ignorance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inexplicitness is a kind of unclearness", "pln": ["(: cnet_isa_b4984c1143 (IsA inexplicitness unclearness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infallibility is a kind of dependability", "pln": ["(: cnet_isa_51e7dabef0 (IsA infallibility dependability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infamy is a kind of dishonor", "pln": ["(: cnet_isa_7439dbf706 (IsA infamy dishonor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infamy is a kind of disrepute", "pln": ["(: cnet_isa_10b8a01785 (IsA infamy disrepute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infancy is a kind of immaturity", "pln": ["(: cnet_isa_857ec4fd3b (IsA infancy immaturity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infancy is a kind of time of life", "pln": ["(: cnet_isa_6a7e439ef2 (IsA infancy time_of_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infant deathrate is a kind of deathrate", "pln": ["(: cnet_isa_41990cfeab (IsA infant_deathrate deathrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infant feeding is a kind of feeding", "pln": ["(: cnet_isa_971f0b70a9 (IsA infant_feeding feeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "infant school is a kind of grade school", "pln": ["(: cnet_isa_6aebb9d385 (IsA infant_school grade_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infanticide is a kind of murder", "pln": ["(: cnet_isa_9e508cf94d (IsA infanticide murder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "infanticide is a kind of murderer", "pln": ["(: cnet_isa_5fcd845c21 (IsA infanticide murderer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infantile autism is a kind of autism", "pln": ["(: cnet_isa_f26ed8f3de (IsA infantile_autism autism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infantilism is a kind of misbehavior", "pln": ["(: cnet_isa_207e5362c3 (IsA infantilism misbehavior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infantilism is a kind of abnormality", "pln": ["(: cnet_isa_cad72c944f (IsA infantilism abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infantry is a kind of army unit", "pln": ["(: cnet_isa_ba4933f676 (IsA infantry army_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infantryman is a kind of soldier", "pln": ["(: cnet_isa_d3bda2f105 (IsA infantryman soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infarct is a kind of pathology", "pln": ["(: cnet_isa_1c7130941e (IsA infarct pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infatuation is a kind of object", "pln": ["(: cnet_isa_c0f0d914eb (IsA infatuation object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infatuation is a kind of passion", "pln": ["(: cnet_isa_27c82c3db4 (IsA infatuation passion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infeasibility is a kind of impracticability", "pln": ["(: cnet_isa_81640f1d9e (IsA infeasibility impracticability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infection is a kind of corruptness", "pln": ["(: cnet_isa_868a889b5e (IsA infection corruptness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infection is a kind of incident", "pln": ["(: cnet_isa_0fd5616699 (IsA infection incident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infection is a kind of illegality", "pln": ["(: cnet_isa_9f6e6e844f (IsA infection illegality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infection is a kind of pathologic process", "pln": ["(: cnet_isa_f088c0eeda (IsA infection pathologic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infection is a kind of linguistic process", "pln": ["(: cnet_isa_9f595ad3fe (IsA infection linguistic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infection is a kind of ill health", "pln": ["(: cnet_isa_b625f7a902 (IsA infection ill_health) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infectious agent is a kind of agent", "pln": ["(: cnet_isa_86e89f7cda (IsA infectious_agent agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infectious disease is a kind of communicable disease", "pln": ["(: cnet_isa_88967148b0 (IsA infectious_disease communicable_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infectious mononucleosis is a kind of infectious disease", "pln": ["(: cnet_isa_ac8c40ab97 (IsA infectious_mononucleosis infectious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infelicity is a kind of inappropriateness", "pln": ["(: cnet_isa_b2d2c0f0b0 (IsA infelicity inappropriateness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inference is a kind of reasoning", "pln": ["(: cnet_isa_39506071fa (IsA inference reasoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inferior is a kind of follower", "pln": ["(: cnet_isa_b0f41956f3 (IsA inferior follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inferior alveolar artery is a kind of alveolar artery", "pln": ["(: cnet_isa_5251efd009 (IsA inferior_alveolar_artery alveolar_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inferior cerebellar artery is a kind of cerebellar artery", "pln": ["(: cnet_isa_27bdd6b8ab (IsA inferior_cerebellar_artery cerebellar_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inferior cerebral vein is a kind of cerebral vein", "pln": ["(: cnet_isa_c7e607027e (IsA inferior_cerebral_vein cerebral_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inferior colliculus is a kind of center", "pln": ["(: cnet_isa_5cf03adfe6 (IsA inferior_colliculus center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inferior conjunction is a kind of conjunction", "pln": ["(: cnet_isa_14fa5e772a (IsA inferior_conjunction conjunction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inferior court is a kind of court", "pln": ["(: cnet_isa_f586afcbe2 (IsA inferior_court court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inferior epigastric vein is a kind of epigastric vein", "pln": ["(: cnet_isa_bf7afa65c9 (IsA inferior_epigastric_vein epigastric_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inferior labial artery is a kind of labial artery", "pln": ["(: cnet_isa_1b84e4f7e5 (IsA inferior_labial_artery labial_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inferior labial vein is a kind of labial vein", "pln": ["(: cnet_isa_043854c797 (IsA inferior_labial_vein labial_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inferior mesenteric artery is a kind of mesenteric artery", "pln": ["(: cnet_isa_ba44e8967b (IsA inferior_mesenteric_artery mesenteric_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "inferior ophthalmic vein is a kind of ophthalmic vein", "pln": ["(: cnet_isa_a9f8f5dfc0 (IsA inferior_ophthalmic_vein ophthalmic_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inferior planet is a kind of planet", "pln": ["(: cnet_isa_cdaef1c0e1 (IsA inferior_planet planet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "inferior pulmonary vein is a kind of pulmonary vein", "pln": ["(: cnet_isa_2573d71d7e (IsA inferior_pulmonary_vein pulmonary_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inferior rectus muscle is a kind of ocular muscle", "pln": ["(: cnet_isa_b417088a9e (IsA inferior_rectus_muscle ocular_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inferior thalamostriate vein is a kind of thalamostriate vein", "pln": ["(: cnet_isa_3c70bafad5 (IsA inferior_thalamostriate_vein thalamostriate_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inferior thyroid vein is a kind of thyroid vein", "pln": ["(: cnet_isa_72712ee498 (IsA inferior_thyroid_vein thyroid_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inferior vena cava is a kind of vena cava", "pln": ["(: cnet_isa_032f7009f0 (IsA inferior_vena_cava vena_cava) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inferiority is a kind of disadvantage", "pln": ["(: cnet_isa_d255b816bc (IsA inferiority disadvantage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inferiority is a kind of quality", "pln": ["(: cnet_isa_6f7b6d9b58 (IsA inferiority quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inferiority is a kind of low status", "pln": ["(: cnet_isa_7ee47cad67 (IsA inferiority low_status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "inferiority complex is a kind of complex", "pln": ["(: cnet_isa_6c1e4aa94c (IsA inferiority_complex complex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infernal is a kind of dead person", "pln": ["(: cnet_isa_b21df39357 (IsA infernal dead_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "infestation is a kind of swarm", "pln": ["(: cnet_isa_b2909542d3 (IsA infestation swarm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infestation is a kind of fullness", "pln": ["(: cnet_isa_96f7c85b37 (IsA infestation fullness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infidelity is a kind of quality", "pln": ["(: cnet_isa_da260584a1 (IsA infidelity quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infielder is a kind of fielder", "pln": ["(: cnet_isa_cb94ce5f21 (IsA infielder fielder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infiltration is a kind of penetration", "pln": ["(: cnet_isa_322f2a3a98 (IsA infiltration penetration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "infiltrator is a kind of intruder", "pln": ["(: cnet_isa_cdd10762c3 (IsA infiltrator intruder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infiltrator is a kind of spy", "pln": ["(: cnet_isa_e282ebd7c3 (IsA infiltrator spy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infiniteness is a kind of quality", "pln": ["(: cnet_isa_80844a619b (IsA infiniteness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "infinitesimal is a kind of variable", "pln": ["(: cnet_isa_de46589c9b (IsA infinitesimal variable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infinitive is a kind of verb", "pln": ["(: cnet_isa_b6f9b2ad74 (IsA infinitive verb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infinitude is a kind of large indefinite quantity", "pln": ["(: cnet_isa_40c00bf7b8 (IsA infinitude large_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infirmity is a kind of unfitness", "pln": ["(: cnet_isa_41ca6085eb (IsA infirmity unfitness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infix is a kind of affix", "pln": ["(: cnet_isa_3c49902739 (IsA infix affix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infix notation is a kind of mathematical notation", "pln": ["(: cnet_isa_9c42c1c2e6 (IsA infix_notation mathematical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inflammability is a kind of combustibleness", "pln": ["(: cnet_isa_9de264a518 (IsA inflammability combustibleness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inflammation is a kind of arousal", "pln": ["(: cnet_isa_f078d59c2f (IsA inflammation arousal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inflammation is a kind of symptom", "pln": ["(: cnet_isa_83a43753e4 (IsA inflammation symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inflammatory disease is a kind of disease", "pln": ["(: cnet_isa_c85af33ee7 (IsA inflammatory_disease disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inflater is a kind of air pump", "pln": ["(: cnet_isa_5c1b2361d6 (IsA inflater air_pump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inflation is a kind of expansion", "pln": ["(: cnet_isa_f4101fd8c5 (IsA inflation expansion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inflation is a kind of explosion", "pln": ["(: cnet_isa_b76c290946 (IsA inflation explosion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inflation is a kind of economic process", "pln": ["(: cnet_isa_e99a0fb3bc (IsA inflation economic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "inflation rate is a kind of rate", "pln": ["(: cnet_isa_1792aebd0d (IsA inflation_rate rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inflation therapy is a kind of therapy", "pln": ["(: cnet_isa_3862a97ec3 (IsA inflation_therapy therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inflationary spiral is a kind of spiral", "pln": ["(: cnet_isa_3e208386ef (IsA inflationary_spiral spiral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inflection is a kind of deviation", "pln": ["(: cnet_isa_948e5dbc82 (IsA inflection deviation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inflection is a kind of grammatical relation", "pln": ["(: cnet_isa_3e612810f7 (IsA inflection grammatical_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inflectional ending is a kind of ending", "pln": ["(: cnet_isa_88597331c4 (IsA inflectional_ending ending) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inflectional morphology is a kind of morphology", "pln": ["(: cnet_isa_c8a289592d (IsA inflectional_morphology morphology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inflexibility is a kind of rigidity", "pln": ["(: cnet_isa_918404b854 (IsA inflexibility rigidity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inflexibility is a kind of unadaptability", "pln": ["(: cnet_isa_ed7a742dae (IsA inflexibility unadaptability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infliction is a kind of wrongdoing", "pln": ["(: cnet_isa_3d59eadccb (IsA infliction wrongdoing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "inflorescence is a kind of flower", "pln": ["(: cnet_isa_c850d266e0 (IsA inflorescence flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inflow is a kind of flow", "pln": ["(: cnet_isa_1b5d34d826 (IsA inflow flow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "influence is a kind of causing", "pln": ["(: cnet_isa_c227133954 (IsA influence causing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "influence is a kind of power", "pln": ["(: cnet_isa_85ddf9a95e (IsA influence power) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "influence is a kind of determinant", "pln": ["(: cnet_isa_06bd68c9cd (IsA influence determinant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "influence is a kind of consequence", "pln": ["(: cnet_isa_69a3a78289 (IsA influence consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "influenza is a kind of contagious disease", "pln": ["(: cnet_isa_5b5eb464dd (IsA influenza contagious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "influenza is a kind of respiratory disease", "pln": ["(: cnet_isa_be7affeab8 (IsA influenza respiratory_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infomercial is a kind of commercial", "pln": ["(: cnet_isa_6291fb54b4 (IsA infomercial commercial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "informal logic is a kind of logic", "pln": ["(: cnet_isa_2d8ead0fa1 (IsA informal_logic logic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "informality is a kind of manner", "pln": ["(: cnet_isa_5e62f85679 (IsA informality manner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "informant is a kind of communicator", "pln": ["(: cnet_isa_84ed5e42b0 (IsA informant communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "information is a kind of abstraction", "pln": ["(: cnet_isa_6ad83ae731 (IsA information abstraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "information is a kind of data", "pln": ["(: cnet_isa_51fdb4d139 (IsA information data) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "information is a kind of cognition", "pln": ["(: cnet_isa_e2ab5bdcea (IsA information cognition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "information is a kind of accusation", "pln": ["(: cnet_isa_90b99fca27 (IsA information accusation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "information is a kind of message", "pln": ["(: cnet_isa_58ab89236d (IsA information message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "information is a kind of information measure", "pln": ["(: cnet_isa_dad87223b6 (IsA information information_measure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "information age is a kind of modern era", "pln": ["(: cnet_isa_feebdd59f1 (IsA information_age modern_era) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "information bulletin is a kind of bulletin", "pln": ["(: cnet_isa_039a0c4888 (IsA information_bulletin bulletin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "information gathering is a kind of operation", "pln": ["(: cnet_isa_8965b31c52 (IsA information_gathering operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "information measure is a kind of system of measurement", "pln": ["(: cnet_isa_df441decfd (IsA information_measure system_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "information return is a kind of tax return", "pln": ["(: cnet_isa_848285278f (IsA information_return tax_return) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "information science is a kind of science", "pln": ["(: cnet_isa_40ca678036 (IsA information_science science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "information technology is a kind of engineering", "pln": ["(: cnet_isa_f589f90d9e (IsA information_technology engineering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "information theory is a kind of scientific theory", "pln": ["(: cnet_isa_831628b38b (IsA information_theory scientific_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "information warfare is a kind of war", "pln": ["(: cnet_isa_d21af2d13b (IsA information_warfare war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "informed consent is a kind of consent", "pln": ["(: cnet_isa_1d34d9d4c1 (IsA informed_consent consent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "informer s privilege is a kind of privilege", "pln": ["(: cnet_isa_63bef2299d (IsA informer_s_privilege privilege) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "informer is a kind of informant", "pln": ["(: cnet_isa_73b6d24a85 (IsA informer informant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "informing is a kind of disclosure", "pln": ["(: cnet_isa_322907bf46 (IsA informing disclosure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "informing is a kind of speech act", "pln": ["(: cnet_isa_2f5a18a984 (IsA informing speech_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infraorbital artery is a kind of artery", "pln": ["(: cnet_isa_bbc28d4583 (IsA infraorbital_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infrared is a kind of frequency", "pln": ["(: cnet_isa_d9a0682d5f (IsA infrared frequency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infrared is a kind of actinic radiation", "pln": ["(: cnet_isa_92c23bedf2 (IsA infrared actinic_radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infrared ray is a kind of heat ray", "pln": ["(: cnet_isa_91fa06f230 (IsA infrared_ray heat_ray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infrared spectrum is a kind of spectrum", "pln": ["(: cnet_isa_0b21f06e48 (IsA infrared_spectrum spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infrared therapy is a kind of therapy", "pln": ["(: cnet_isa_b7b5e35384 (IsA infrared_therapy therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infrastructure is a kind of store", "pln": ["(: cnet_isa_6160bfca4c (IsA infrastructure store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infrastructure is a kind of structure", "pln": ["(: cnet_isa_1a73fa9a95 (IsA infrastructure structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infructescence is a kind of growth", "pln": ["(: cnet_isa_c86a3bcdb1 (IsA infructescence growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infundibulum is a kind of structure", "pln": ["(: cnet_isa_3a5382e08c (IsA infundibulum structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infuriation is a kind of anger", "pln": ["(: cnet_isa_805537e192 (IsA infuriation anger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infusion is a kind of change of state", "pln": ["(: cnet_isa_598fd6373d (IsA infusion change_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infusion is a kind of instillation", "pln": ["(: cnet_isa_0b93fc745b (IsA infusion instillation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infusion is a kind of extraction", "pln": ["(: cnet_isa_e4d0537f10 (IsA infusion extraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infusion is a kind of solution", "pln": ["(: cnet_isa_b31416675a (IsA infusion solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infusoria is a kind of class", "pln": ["(: cnet_isa_64c3eb8c51 (IsA infusoria class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "infusorian is a kind of ciliate", "pln": ["(: cnet_isa_96a8567290 (IsA infusorian ciliate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "inga is a kind of tree", "pln": ["(: cnet_isa_ce5e37e1a0 (IsA inga tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ingenue is a kind of character", "pln": ["(: cnet_isa_a78ce79d6c (IsA ingenue character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ingenue is a kind of actor", "pln": ["(: cnet_isa_1ac5da733d (IsA ingenue actor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ingenue is a kind of juvenile", "pln": ["(: cnet_isa_2052fdd79d (IsA ingenue juvenile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ingenuity is a kind of superiority", "pln": ["(: cnet_isa_f9a9285772 (IsA ingenuity superiority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ingenuousness is a kind of candor", "pln": ["(: cnet_isa_2aa83f4bac (IsA ingenuousness candor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ingerman is a kind of russian", "pln": ["(: cnet_isa_712d3c6256 (IsA ingerman russian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ingesta is a kind of nutriment", "pln": ["(: cnet_isa_734fcb47cb (IsA ingesta nutriment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ingot is a kind of block", "pln": ["(: cnet_isa_f6ef9210d8 (IsA ingot block) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ingot iron is a kind of iron", "pln": ["(: cnet_isa_06e0a94ec2 (IsA ingot_iron iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ingrate is a kind of unwelcome person", "pln": ["(: cnet_isa_0f070dd501 (IsA ingrate unwelcome_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ingratiation is a kind of blandishment", "pln": ["(: cnet_isa_607ed3b00a (IsA ingratiation blandishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ingratitude is a kind of feeling", "pln": ["(: cnet_isa_f4b975beff (IsA ingratitude feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ingredient is a kind of component", "pln": ["(: cnet_isa_bccaac2aec (IsA ingredient component) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ingredient is a kind of foodstuff", "pln": ["(: cnet_isa_cacb4035a3 (IsA ingredient foodstuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ingress is a kind of disappearance", "pln": ["(: cnet_isa_aecd62f570 (IsA ingress disappearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ingrian is a kind of baltic finnic", "pln": ["(: cnet_isa_ca0c40428c (IsA ingrian baltic_finnic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ingrown hair is a kind of hair", "pln": ["(: cnet_isa_dcca061104 (IsA ingrown_hair hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ingrown toenail is a kind of toenail", "pln": ["(: cnet_isa_941225f43d (IsA ingrown_toenail toenail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ingrowth is a kind of growth", "pln": ["(: cnet_isa_49bef3f7bb (IsA ingrowth growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inguinal canal is a kind of duct", "pln": ["(: cnet_isa_a7c3a69f89 (IsA inguinal_canal duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "inguinal hernia is a kind of hernia", "pln": ["(: cnet_isa_701b884ff7 (IsA inguinal_hernia hernia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inhabitancy is a kind of occupancy", "pln": ["(: cnet_isa_a260ed5b61 (IsA inhabitancy occupancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inhabitant is a kind of person", "pln": ["(: cnet_isa_c73cc2c3bd (IsA inhabitant person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inhalant is a kind of medicine", "pln": ["(: cnet_isa_ad81435d95 (IsA inhalant medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inhalant is a kind of gas", "pln": ["(: cnet_isa_45b05aa92f (IsA inhalant gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inhalation is a kind of breath", "pln": ["(: cnet_isa_29e9039afd (IsA inhalation breath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inhalation anesthesia is a kind of general anesthesia", "pln": ["(: cnet_isa_ed63cbffb7 (IsA inhalation_anesthesia general_anesthesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inhalation anesthetic is a kind of general anesthetic", "pln": ["(: cnet_isa_1b04772a98 (IsA inhalation_anesthetic general_anesthetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inhaler is a kind of dispenser", "pln": ["(: cnet_isa_194265c0e5 (IsA inhaler dispenser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inherence is a kind of presence", "pln": ["(: cnet_isa_5e65afb2c5 (IsA inherence presence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inheritance is a kind of acquisition", "pln": ["(: cnet_isa_879166cdc8 (IsA inheritance acquisition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "inheritance is a kind of attribute", "pln": ["(: cnet_isa_4cbdf298a2 (IsA inheritance attribute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inheritance is a kind of heredity", "pln": ["(: cnet_isa_0ec37e20c9 (IsA inheritance heredity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inheritance is a kind of transferred property", "pln": ["(: cnet_isa_14f3da7de5 (IsA inheritance transferred_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inheritance tax is a kind of transfer tax", "pln": ["(: cnet_isa_4d8e39ebcd (IsA inheritance_tax transfer_tax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inherited wealth is a kind of wealth", "pln": ["(: cnet_isa_5000df43f4 (IsA inherited_wealth wealth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inhibition is a kind of restraint", "pln": ["(: cnet_isa_06902806ab (IsA inhibition restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inhibition is a kind of organic process", "pln": ["(: cnet_isa_530f89ae5a (IsA inhibition organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inhibition is a kind of abstinence", "pln": ["(: cnet_isa_23372888ed (IsA inhibition abstinence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inhibitor is a kind of substance", "pln": ["(: cnet_isa_ee569a1e62 (IsA inhibitor substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inhomogeneity is a kind of irregularity", "pln": ["(: cnet_isa_bbd7e5b8ff (IsA inhomogeneity irregularity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inhospitableness is a kind of unfriendliness", "pln": ["(: cnet_isa_044273d426 (IsA inhospitableness unfriendliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inhospitableness is a kind of environmental condition", "pln": ["(: cnet_isa_412d2ad3e0 (IsA inhospitableness environmental_condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inhospitality is a kind of welcome", "pln": ["(: cnet_isa_4a572fe84a (IsA inhospitality welcome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inhumaneness is a kind of quality", "pln": ["(: cnet_isa_ab92f86dd8 (IsA inhumaneness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inion is a kind of craniometric point", "pln": ["(: cnet_isa_a93f2fa93c (IsA inion craniometric_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iniquity is a kind of condition", "pln": ["(: cnet_isa_d90944b7c3 (IsA iniquity condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "initial is a kind of letter", "pln": ["(: cnet_isa_0b4b4e5ab8 (IsA initial letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "initial public offering is a kind of commerce", "pln": ["(: cnet_isa_d4fd3bb732 (IsA initial_public_offering commerce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "initialism is a kind of abbreviation", "pln": ["(: cnet_isa_8ba41893de (IsA initialism abbreviation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "initiate is a kind of people", "pln": ["(: cnet_isa_30f72fa80f (IsA initiate people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "initiate is a kind of scholar", "pln": ["(: cnet_isa_9d2f979d5b (IsA initiate scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "initiation is a kind of beginning", "pln": ["(: cnet_isa_c911c93dd5 (IsA initiation beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "initiation is a kind of ceremony", "pln": ["(: cnet_isa_0b76b1be9c (IsA initiation ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "injection is a kind of insertion", "pln": ["(: cnet_isa_ce8284a3fe (IsA injection insertion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "injection is a kind of medical care", "pln": ["(: cnet_isa_0b48b1a8f9 (IsA injection medical_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "injection is a kind of solution", "pln": ["(: cnet_isa_a4d06c23fa (IsA injection solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "injector is a kind of appliance", "pln": ["(: cnet_isa_4e4a349a18 (IsA injector appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "injudiciousness is a kind of sagacity", "pln": ["(: cnet_isa_b2a64ade84 (IsA injudiciousness sagacity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "injunction is a kind of command", "pln": ["(: cnet_isa_5ba7be6d6c (IsA injunction command) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "injunction is a kind of prohibition", "pln": ["(: cnet_isa_a3ada2701d (IsA injunction prohibition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "injury is a kind of wrongdoing", "pln": ["(: cnet_isa_4bca3bed2f (IsA injury wrongdoing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "injury is a kind of accident", "pln": ["(: cnet_isa_b83898fedf (IsA injury accident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "injury is a kind of ill health", "pln": ["(: cnet_isa_3375fdbea0 (IsA injury ill_health) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "injustice is a kind of wrongdoing", "pln": ["(: cnet_isa_1298ae4fc9 (IsA injustice wrongdoing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "injustice is a kind of unrighteousness", "pln": ["(: cnet_isa_fe9dc73df9 (IsA injustice unrighteousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ink is a kind of liquid", "pln": ["(: cnet_isa_71cc06d86f (IsA ink liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ink is a kind of liquid body substance", "pln": ["(: cnet_isa_62dcbd7548 (IsA ink liquid_body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ink bottle is a kind of bottle", "pln": ["(: cnet_isa_3ad97c5f67 (IsA ink_bottle bottle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ink cartridge is a kind of cartridge", "pln": ["(: cnet_isa_d99e9c94cc (IsA ink_cartridge cartridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ink eraser is a kind of eraser", "pln": ["(: cnet_isa_cc662e3ca2 (IsA ink_eraser eraser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ink jet printer is a kind of dot matrix printer", "pln": ["(: cnet_isa_d4862aa605 (IsA ink_jet_printer dot_matrix_printer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inkberry is a kind of holly", "pln": ["(: cnet_isa_f529131c50 (IsA inkberry holly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inkblot is a kind of smudge", "pln": ["(: cnet_isa_1ce0494d91 (IsA inkblot smudge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inkle is a kind of tape", "pln": ["(: cnet_isa_d8d7676395 (IsA inkle tape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inkling is a kind of suggestion", "pln": ["(: cnet_isa_d057d47691 (IsA inkling suggestion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inkstand is a kind of tray", "pln": ["(: cnet_isa_8fd3b77360 (IsA inkstand tray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inkwell is a kind of well", "pln": ["(: cnet_isa_f5ac65b640 (IsA inkwell well) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inky cap is a kind of agaric", "pln": ["(: cnet_isa_1ea5a25102 (IsA inky_cap agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inland bill is a kind of draft", "pln": ["(: cnet_isa_71d8c59687 (IsA inland_bill draft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inland revenue is a kind of administrative unit", "pln": ["(: cnet_isa_8ea267a0da (IsA inland_revenue administrative_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inlay is a kind of decoration", "pln": ["(: cnet_isa_5713d7ea86 (IsA inlay decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inlay is a kind of filling", "pln": ["(: cnet_isa_d4432f94ad (IsA inlay filling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inlet is a kind of body of water", "pln": ["(: cnet_isa_37f3554cc0 (IsA inlet body_of_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inlet manifold is a kind of manifold", "pln": ["(: cnet_isa_adfdf41827 (IsA inlet_manifold manifold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inmate is a kind of resident", "pln": ["(: cnet_isa_c825164294 (IsA inmate resident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "innateness is a kind of changelessness", "pln": ["(: cnet_isa_ce60a4655b (IsA innateness changelessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inner city is a kind of center", "pln": ["(: cnet_isa_b8eedecd2a (IsA inner_city center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inner ear is a kind of sense organ", "pln": ["(: cnet_isa_e651022c84 (IsA inner_ear sense_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "inner light is a kind of ethical motive", "pln": ["(: cnet_isa_9c459d4612 (IsA inner_light ethical_motive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "inner resources is a kind of resource", "pln": ["(: cnet_isa_9030f2d102 (IsA inner_resources resource) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inner resource is a kind of resource", "pln": ["(: cnet_isa_272838da3f (IsA inner_resource resource) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "inner tube is a kind of tube", "pln": ["(: cnet_isa_5100008b1b (IsA inner_tube tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "innervation is a kind of distribution", "pln": ["(: cnet_isa_dfbaa35476 (IsA innervation distribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inning is a kind of part", "pln": ["(: cnet_isa_2907e4310b (IsA inning part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inning is a kind of turn", "pln": ["(: cnet_isa_1ea992efdb (IsA inning turn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "innocence is a kind of condition", "pln": ["(: cnet_isa_d8cbba3b7d (IsA innocence condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "innocency is a kind of artlessness", "pln": ["(: cnet_isa_0d3d97b370 (IsA innocency artlessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "innocent is a kind of person", "pln": ["(: cnet_isa_705a50860b (IsA innocent person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "innominate artery is a kind of artery", "pln": ["(: cnet_isa_8623a05188 (IsA innominate_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "innovativeness is a kind of originality", "pln": ["(: cnet_isa_64a40944bc (IsA innovativeness originality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "innumerableness is a kind of number", "pln": ["(: cnet_isa_ef0ddfe038 (IsA innumerableness number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inoculant is a kind of substance", "pln": ["(: cnet_isa_a804f05c32 (IsA inoculant substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inoculating is a kind of protection", "pln": ["(: cnet_isa_512450bba6 (IsA inoculating protection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inoculation is a kind of immunization", "pln": ["(: cnet_isa_353b3831e6 (IsA inoculation immunization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inoculator is a kind of medical practitioner", "pln": ["(: cnet_isa_7752fc816e (IsA inoculator medical_practitioner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inopportuneness is a kind of inconvenience", "pln": ["(: cnet_isa_870cfc02f8 (IsA inopportuneness inconvenience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inorganic chemistry is a kind of chemistry", "pln": ["(: cnet_isa_aa11265ad4 (IsA inorganic_chemistry chemistry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inorganic compound is a kind of compound", "pln": ["(: cnet_isa_473daa2452 (IsA inorganic_compound compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inosine is a kind of nucleoside", "pln": ["(: cnet_isa_dfbcda2bac (IsA inosine nucleoside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inositol is a kind of b complex vitamin", "pln": ["(: cnet_isa_01a265d327 (IsA inositol b_complex_vitamin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inpatient is a kind of patient", "pln": ["(: cnet_isa_16dece77f8 (IsA inpatient patient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inpouring is a kind of inflow", "pln": ["(: cnet_isa_617ae75024 (IsA inpouring inflow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "input is a kind of component", "pln": ["(: cnet_isa_8d61cac53e (IsA input component) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "input file is a kind of computer file", "pln": ["(: cnet_isa_d39af342eb (IsA input_file computer_file) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "input program is a kind of utility program", "pln": ["(: cnet_isa_f7fa6fe315 (IsA input_program utility_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "input routine is a kind of utility routine", "pln": ["(: cnet_isa_e2b64cfec5 (IsA input_routine utility_routine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "input signal is a kind of signal", "pln": ["(: cnet_isa_4d8d0db21a (IsA input_signal signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inquest is a kind of inquiry", "pln": ["(: cnet_isa_9deb8414df (IsA inquest inquiry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inquirer is a kind of speaker", "pln": ["(: cnet_isa_d03d3181ba (IsA inquirer speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inquiry is a kind of investigation", "pln": ["(: cnet_isa_d7805de4df (IsA inquiry investigation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inquiry is a kind of problem solving", "pln": ["(: cnet_isa_2d25f983d9 (IsA inquiry problem_solving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inquiry agent is a kind of private detective", "pln": ["(: cnet_isa_86c7a0732f (IsA inquiry_agent private_detective) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inquisition is a kind of interrogation", "pln": ["(: cnet_isa_a42ddd635d (IsA inquisition interrogation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inquisition is a kind of court", "pln": ["(: cnet_isa_030cbc3319 (IsA inquisition court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "inquisitor is a kind of inquirer", "pln": ["(: cnet_isa_8ff6399838 (IsA inquisitor inquirer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inquisitor is a kind of official", "pln": ["(: cnet_isa_1b2955dfb3 (IsA inquisitor official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inroad is a kind of invasion", "pln": ["(: cnet_isa_90f21d153c (IsA inroad invasion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inroad is a kind of trespass", "pln": ["(: cnet_isa_c28d41c2fa (IsA inroad trespass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insalubrity is a kind of unhealthfulness", "pln": ["(: cnet_isa_5c86e9e6ee (IsA insalubrity unhealthfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insanity is a kind of mental illness", "pln": ["(: cnet_isa_b1bf3ca092 (IsA insanity mental_illness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insanity plea is a kind of plea", "pln": ["(: cnet_isa_ce20b00c03 (IsA insanity_plea plea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inscription is a kind of writing", "pln": ["(: cnet_isa_9e4fbc652a (IsA inscription writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inscrutability is a kind of incomprehensibility", "pln": ["(: cnet_isa_1407d5cece (IsA inscrutability incomprehensibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insect is a kind of arthropod", "pln": ["(: cnet_isa_c369aa6285 (IsA insect arthropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insecta is a kind of class", "pln": ["(: cnet_isa_4fe81e7813 (IsA insecta class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insecticide is a kind of pesticide", "pln": ["(: cnet_isa_4adb34a86a (IsA insecticide pesticide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insectifuge is a kind of repellent", "pln": ["(: cnet_isa_80ed4a350b (IsA insectifuge repellent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insectivora is a kind of animal order", "pln": ["(: cnet_isa_552b0e75c7 (IsA insectivora animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insectivore is a kind of animal", "pln": ["(: cnet_isa_623d76c304 (IsA insectivore animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insectivore is a kind of placental", "pln": ["(: cnet_isa_165f4cf794 (IsA insectivore placental) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insect is a kind of animal", "pln": ["(: cnet_isa_86d0bf4dd7 (IsA insect animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insecureness is a kind of insecurity", "pln": ["(: cnet_isa_ece570ed2b (IsA insecureness insecurity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insecurity is a kind of anxiety", "pln": ["(: cnet_isa_be2feb3de9 (IsA insecurity anxiety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insecurity is a kind of danger", "pln": ["(: cnet_isa_d4286b0675 (IsA insecurity danger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insemination is a kind of bodily process", "pln": ["(: cnet_isa_737b7b525a (IsA insemination bodily_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insemination is a kind of planting", "pln": ["(: cnet_isa_93a8dd6af4 (IsA insemination planting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insensibility is a kind of unconsciousness", "pln": ["(: cnet_isa_dbba664668 (IsA insensibility unconsciousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insensitivity is a kind of inability", "pln": ["(: cnet_isa_144ca242aa (IsA insensitivity inability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "insentience is a kind of inanimateness", "pln": ["(: cnet_isa_5118c424ed (IsA insentience inanimateness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insert is a kind of artifact", "pln": ["(: cnet_isa_da330e7ad6 (IsA insert artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insert is a kind of section", "pln": ["(: cnet_isa_2f2b9e3292 (IsA insert section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "insertion is a kind of movement", "pln": ["(: cnet_isa_469b68750e (IsA insertion movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insertional mutagenesis is a kind of mutagenesis", "pln": ["(: cnet_isa_485224accf (IsA insertional_mutagenesis mutagenesis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insessore is a kind of animal order", "pln": ["(: cnet_isa_d170fe913a (IsA insessore animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inset is a kind of ikon", "pln": ["(: cnet_isa_1ac6c1602d (IsA inset ikon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inside is a kind of region", "pln": ["(: cnet_isa_38f89dbb9a (IsA inside region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inside is a kind of surface", "pln": ["(: cnet_isa_5d8b4bb34d (IsA inside surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inside caliper is a kind of caliper", "pln": ["(: cnet_isa_a5ece6a240 (IsA inside_caliper caliper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inside clinch is a kind of clinch", "pln": ["(: cnet_isa_4f8e08b243 (IsA inside_clinch clinch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "inside job is a kind of transgression", "pln": ["(: cnet_isa_64447f5989 (IsA inside_job transgression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inside loop is a kind of loop", "pln": ["(: cnet_isa_40cd974158 (IsA inside_loop loop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inside track is a kind of superiority", "pln": ["(: cnet_isa_1b681632f9 (IsA inside_track superiority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "inside track is a kind of path", "pln": ["(: cnet_isa_78ce491876 (IsA inside_track path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insider is a kind of corporate executive", "pln": ["(: cnet_isa_4fa890b801 (IsA insider corporate_executive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insider information is a kind of information", "pln": ["(: cnet_isa_d259840f9d (IsA insider_information information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insider trading is a kind of trading", "pln": ["(: cnet_isa_e97e8ea37d (IsA insider_trading trading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insidiousness is a kind of harmfulness", "pln": ["(: cnet_isa_c3f0587638 (IsA insidiousness harmfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insidiousness is a kind of perfidy", "pln": ["(: cnet_isa_849f14f0b3 (IsA insidiousness perfidy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "insight is a kind of intuition", "pln": ["(: cnet_isa_1339adcd74 (IsA insight intuition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insight is a kind of understanding", "pln": ["(: cnet_isa_7eed46513f (IsA insight understanding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insight is a kind of sensibility", "pln": ["(: cnet_isa_e095505963 (IsA insight sensibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insightfulness is a kind of shrewdness", "pln": ["(: cnet_isa_36c7f7f28d (IsA insightfulness shrewdness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insignia is a kind of badge", "pln": ["(: cnet_isa_a9d46605ee (IsA insignia badge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insignia of rank is a kind of insignia", "pln": ["(: cnet_isa_dd65c3cabb (IsA insignia_of_rank insignia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "insignificance is a kind of unimportance", "pln": ["(: cnet_isa_01344b6194 (IsA insignificance unimportance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insincerity is a kind of untruthfulness", "pln": ["(: cnet_isa_468c868592 (IsA insincerity untruthfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insinuation is a kind of implication", "pln": ["(: cnet_isa_5e3f431dee (IsA insinuation implication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insistence is a kind of demand", "pln": ["(: cnet_isa_d5e8f99a4d (IsA insistence demand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insistency is a kind of advocacy", "pln": ["(: cnet_isa_30568b1c9d (IsA insistency advocacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insolation is a kind of solar radiation", "pln": ["(: cnet_isa_66afe3f905 (IsA insolation solar_radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insole is a kind of sole", "pln": ["(: cnet_isa_074c8741fb (IsA insole sole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insolence is a kind of discourtesy", "pln": ["(: cnet_isa_5906736287 (IsA insolence discourtesy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insolubility is a kind of quality", "pln": ["(: cnet_isa_6b9d264b4a (IsA insolubility quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insolvency is a kind of financial condition", "pln": ["(: cnet_isa_933abf6249 (IsA insolvency financial_condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insomnia is a kind of sleep disorder", "pln": ["(: cnet_isa_e148fd5438 (IsA insomnia sleep_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insomniac is a kind of sick person", "pln": ["(: cnet_isa_d53c7a036c (IsA insomniac sick_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inspection is a kind of examination", "pln": ["(: cnet_isa_6f4f3af587 (IsA inspection examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inspector is a kind of policeman", "pln": ["(: cnet_isa_f02f5b08aa (IsA inspector policeman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "inspector general is a kind of military officer", "pln": ["(: cnet_isa_e95ca49998 (IsA inspector_general military_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inspectorate is a kind of body", "pln": ["(: cnet_isa_b2787a88de (IsA inspectorate body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inspectorship is a kind of position", "pln": ["(: cnet_isa_d76e6e7023 (IsA inspectorship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inspiration is a kind of arousal", "pln": ["(: cnet_isa_1d2f3d8f01 (IsA inspiration arousal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inspiration is a kind of product", "pln": ["(: cnet_isa_b434d28989 (IsA inspiration product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inspiration is a kind of idea", "pln": ["(: cnet_isa_6ca1f6131f (IsA inspiration idea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inspiration is a kind of intuition", "pln": ["(: cnet_isa_9fd0a45493 (IsA inspiration intuition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inspissation is a kind of dehydration", "pln": ["(: cnet_isa_e79fd85947 (IsA inspissation dehydration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "instability is a kind of undependability", "pln": ["(: cnet_isa_43bc66d5dd (IsA instability undependability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "instability is a kind of unsteadiness", "pln": ["(: cnet_isa_f69f97fc52 (IsA instability unsteadiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instability is a kind of disorder", "pln": ["(: cnet_isa_c7f5a3ed73 (IsA instability disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "installation is a kind of beginning", "pln": ["(: cnet_isa_74a732ebff (IsA installation beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "installation charge is a kind of charge", "pln": ["(: cnet_isa_30bec8a6a8 (IsA installation_charge charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "installment is a kind of text", "pln": ["(: cnet_isa_246561fe30 (IsA installment text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "installment is a kind of payment", "pln": ["(: cnet_isa_57bb1355bf (IsA installment payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "installment credit is a kind of consumer credit", "pln": ["(: cnet_isa_c859854ee4 (IsA installment_credit consumer_credit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "installment credit is a kind of loan", "pln": ["(: cnet_isa_e13efc86f5 (IsA installment_credit loan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "installment debt is a kind of debt", "pln": ["(: cnet_isa_1555567158 (IsA installment_debt debt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "installment plan is a kind of regular payment", "pln": ["(: cnet_isa_9878b88686 (IsA installment_plan regular_payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "instant coffee is a kind of coffee", "pln": ["(: cnet_isa_c740dd916b (IsA instant_coffee coffee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instantiation is a kind of representation", "pln": ["(: cnet_isa_d5d1c9bfee (IsA instantiation representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instar is a kind of arthropod", "pln": ["(: cnet_isa_681916765b (IsA instar arthropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instep is a kind of covering", "pln": ["(: cnet_isa_56964be02a (IsA instep covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instep is a kind of arch", "pln": ["(: cnet_isa_b65d83d299 (IsA instep arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instigator is a kind of leader", "pln": ["(: cnet_isa_d4cc4925c5 (IsA instigator leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instigator is a kind of troublemaker", "pln": ["(: cnet_isa_937dc7083a (IsA instigator troublemaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instillation is a kind of insertion", "pln": ["(: cnet_isa_d9f6bfcb41 (IsA instillation insertion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instillation is a kind of liquid", "pln": ["(: cnet_isa_2cdc44ac9c (IsA instillation liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instillator is a kind of apparatus", "pln": ["(: cnet_isa_6da5dfda14 (IsA instillator apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instinct is a kind of aptitude", "pln": ["(: cnet_isa_5462734274 (IsA instinct aptitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "institute is a kind of association", "pln": ["(: cnet_isa_8387f7b36f (IsA institute association) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "institution is a kind of establishment", "pln": ["(: cnet_isa_512d2c3069 (IsA institution establishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "institution is a kind of custom", "pln": ["(: cnet_isa_416a830721 (IsA institution custom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "institution is a kind of organization", "pln": ["(: cnet_isa_632d40edbb (IsA institution organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instroke is a kind of throw", "pln": ["(: cnet_isa_16b79a0b6d (IsA instroke throw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instruction is a kind of code", "pln": ["(: cnet_isa_d706e26abd (IsA instruction code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instruction book is a kind of reference book", "pln": ["(: cnet_isa_2b5cb4b039 (IsA instruction_book reference_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instruction manual is a kind of manual", "pln": ["(: cnet_isa_fc69d8067c (IsA instruction_manual manual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instructorship is a kind of position", "pln": ["(: cnet_isa_038ed24ee4 (IsA instructorship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instructress is a kind of teacher", "pln": ["(: cnet_isa_ff2b82815d (IsA instructress teacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instrument is a kind of mean", "pln": ["(: cnet_isa_038362ef6e (IsA instrument mean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instrument is a kind of device", "pln": ["(: cnet_isa_64a0e435a7 (IsA instrument device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "instrument is a kind of assistant", "pln": ["(: cnet_isa_b9206f06a7 (IsA instrument assistant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instrument flying is a kind of navigation", "pln": ["(: cnet_isa_00326bcae6 (IsA instrument_flying navigation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instrument landing is a kind of aircraft landing", "pln": ["(: cnet_isa_31ef87d153 (IsA instrument_landing aircraft_landing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instrument of execution is a kind of instrument", "pln": ["(: cnet_isa_887d30e897 (IsA instrument_of_execution instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instrument of punishment is a kind of instrument", "pln": ["(: cnet_isa_23e1a8af04 (IsA instrument_of_punishment instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instrument of torture is a kind of instrument of punishment", "pln": ["(: cnet_isa_a0e696cb3c (IsA instrument_of_torture instrument_of_punishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instrumental conditioning is a kind of operant conditioning", "pln": ["(: cnet_isa_43be46cbe8 (IsA instrumental_conditioning operant_conditioning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instrumental music is a kind of music", "pln": ["(: cnet_isa_3448efb6c1 (IsA instrumental_music music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instrumental role is a kind of semantic role", "pln": ["(: cnet_isa_efbcdd9e56 (IsA instrumental_role semantic_role) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instrumentalism is a kind of pragmatism", "pln": ["(: cnet_isa_10d04d37c3 (IsA instrumentalism pragmatism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instrumentality is a kind of artifact", "pln": ["(: cnet_isa_fe8335bd29 (IsA instrumentality artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instrumentality is a kind of utility", "pln": ["(: cnet_isa_bf8464efcc (IsA instrumentality utility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instrumentality is a kind of unit", "pln": ["(: cnet_isa_cc4f4ebe85 (IsA instrumentality unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instrumentation is a kind of implementation", "pln": ["(: cnet_isa_6fa1e3cf74 (IsA instrumentation implementation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "instrumentation is a kind of musical arrangement", "pln": ["(: cnet_isa_74b963358c (IsA instrumentation musical_arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "insubordination is a kind of resistance", "pln": ["(: cnet_isa_3c16488328 (IsA insubordination resistance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insubordination is a kind of defiance", "pln": ["(: cnet_isa_7cffe9517d (IsA insubordination defiance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "insubstantiality is a kind of immateriality", "pln": ["(: cnet_isa_b9ceed484e (IsA insubstantiality immateriality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insubstantiality is a kind of weakness", "pln": ["(: cnet_isa_4e274cf82e (IsA insubstantiality weakness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insufficiency is a kind of amount", "pln": ["(: cnet_isa_06a01035a7 (IsA insufficiency amount) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insufficiency is a kind of inability", "pln": ["(: cnet_isa_9ab6861b8a (IsA insufficiency inability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insufficiency is a kind of failing", "pln": ["(: cnet_isa_ea10197e99 (IsA insufficiency failing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insufflation is a kind of blow", "pln": ["(: cnet_isa_183fa26cac (IsA insufflation blow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insufflation is a kind of blowing", "pln": ["(: cnet_isa_a16d430cf6 (IsA insufflation blowing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insulating material is a kind of building material", "pln": ["(: cnet_isa_6b6dd14854 (IsA insulating_material building_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insulation is a kind of protection", "pln": ["(: cnet_isa_2d751dfbb5 (IsA insulation protection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insulation is a kind of isolation", "pln": ["(: cnet_isa_793ea40d5a (IsA insulation isolation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insulator is a kind of material", "pln": ["(: cnet_isa_b2616eae80 (IsA insulator material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insulin is a kind of hormone", "pln": ["(: cnet_isa_7861f8b15a (IsA insulin hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insulin is a kind of hypoglycemic agent", "pln": ["(: cnet_isa_f5c2eb65b1 (IsA insulin hypoglycemic_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insulin shock is a kind of shock therapy", "pln": ["(: cnet_isa_a5d7a2cb7a (IsA insulin_shock shock_therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "insulin shock is a kind of shock", "pln": ["(: cnet_isa_9e4700d749 (IsA insulin_shock shock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insult is a kind of discourtesy", "pln": ["(: cnet_isa_78c211505b (IsA insult discourtesy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insurability is a kind of eligibility", "pln": ["(: cnet_isa_5a34b6eb90 (IsA insurability eligibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insurable interest is a kind of interest", "pln": ["(: cnet_isa_10449698bb (IsA insurable_interest interest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insurance is a kind of contract", "pln": ["(: cnet_isa_2b43385b9f (IsA insurance contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insurance is a kind of security", "pln": ["(: cnet_isa_02db9fb5a9 (IsA insurance security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insurance broker is a kind of agent", "pln": ["(: cnet_isa_fb9eb97de0 (IsA insurance_broker agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insurance claim is a kind of claim", "pln": ["(: cnet_isa_7319ce2420 (IsA insurance_claim claim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insurance company is a kind of nondepository financial institution", "pln": ["(: cnet_isa_1e5ab505fb (IsA insurance_company nondepository_financial_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insured is a kind of person", "pln": ["(: cnet_isa_0ab174e4c0 (IsA insured person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insurgency is a kind of rebellion", "pln": ["(: cnet_isa_c0512f393c (IsA insurgency rebellion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insurgent is a kind of reformer", "pln": ["(: cnet_isa_55665b6e05 (IsA insurgent reformer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "insurgent is a kind of revolutionist", "pln": ["(: cnet_isa_5350b854de (IsA insurgent revolutionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "insurrectionism is a kind of principle", "pln": ["(: cnet_isa_2e600a41a8 (IsA insurrectionism principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intactness is a kind of perfection", "pln": ["(: cnet_isa_4487552cb3 (IsA intactness perfection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "intaglio is a kind of glyptic art", "pln": ["(: cnet_isa_9c3e944ee6 (IsA intaglio glyptic_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intaglio printing is a kind of printing", "pln": ["(: cnet_isa_7304a64bfe (IsA intaglio_printing printing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intake is a kind of opening", "pln": ["(: cnet_isa_ec5b29febc (IsA intake opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intake manifold is a kind of manifold", "pln": ["(: cnet_isa_7611b5c1fe (IsA intake_manifold manifold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intake valve is a kind of valve", "pln": ["(: cnet_isa_806bc4b662 (IsA intake_valve valve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intangibility is a kind of immateriality", "pln": ["(: cnet_isa_2add603044 (IsA intangibility immateriality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intangible is a kind of asset", "pln": ["(: cnet_isa_8c097b99fc (IsA intangible asset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "integer is a kind of number", "pln": ["(: cnet_isa_b11091eef9 (IsA integer number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "integral is a kind of calculation", "pln": ["(: cnet_isa_24641f838c (IsA integral calculation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "integral calculus is a kind of calculus", "pln": ["(: cnet_isa_43623252f7 (IsA integral_calculus calculus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "integrated circuit is a kind of computer circuit", "pln": ["(: cnet_isa_1be72f649d (IsA integrated_circuit computer_circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "integrated data processing is a kind of automatic data processing", "pln": ["(: cnet_isa_2896d2f0ee (IsA integrated_data_processing automatic_data_processing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "integrated logistic support is a kind of logistic support", "pln": ["(: cnet_isa_b827a70f15 (IsA integrated_logistic_support logistic_support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "integration is a kind of group action", "pln": ["(: cnet_isa_3a032ba396 (IsA integration group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "integration is a kind of mathematical process", "pln": ["(: cnet_isa_3e85bd7306 (IsA integration mathematical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "integrator is a kind of measuring instrument", "pln": ["(: cnet_isa_b00b910ff8 (IsA integrator measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "integrity is a kind of honesty", "pln": ["(: cnet_isa_0cfa9f98d2 (IsA integrity honesty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "integrity is a kind of state", "pln": ["(: cnet_isa_f1bf26e2b6 (IsA integrity state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "integument is a kind of covering", "pln": ["(: cnet_isa_e8820c689a (IsA integument covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "integumentary system is a kind of system", "pln": ["(: cnet_isa_15a135feda (IsA integumentary_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intel is a kind of company", "pln": ["(: cnet_isa_2d99f0ead7 (IsA intel company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intellectual is a kind of person", "pln": ["(: cnet_isa_4cd63995d1 (IsA intellectual person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intellectual property is a kind of property", "pln": ["(: cnet_isa_28ecbe5f67 (IsA intellectual_property property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intellectualization is a kind of defense mechanism", "pln": ["(: cnet_isa_d4b6be8679 (IsA intellectualization defense_mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intelligence is a kind of information gathering", "pln": ["(: cnet_isa_4967c9c69b (IsA intelligence information_gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intelligence is a kind of ability", "pln": ["(: cnet_isa_9c25bcb8b6 (IsA intelligence ability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intelligence is a kind of information", "pln": ["(: cnet_isa_78de73aea7 (IsA intelligence information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intelligence is a kind of administrative unit", "pln": ["(: cnet_isa_21945528da (IsA intelligence administrative_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intelligence analyst is a kind of analyst", "pln": ["(: cnet_isa_77309b115f (IsA intelligence_analyst analyst) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "intelligence cell is a kind of terrorist cell", "pln": ["(: cnet_isa_b0b2c9bc0d (IsA intelligence_cell terrorist_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intelligence community is a kind of intelligence", "pln": ["(: cnet_isa_9d2561154d (IsA intelligence_community intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intelligence quotient is a kind of ratio", "pln": ["(: cnet_isa_d33d2571f3 (IsA intelligence_quotient ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "intelligence test is a kind of test", "pln": ["(: cnet_isa_f87c17f51e (IsA intelligence_test test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intelligentsia is a kind of elite", "pln": ["(: cnet_isa_ef71aef365 (IsA intelligentsia elite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "intelligibility is a kind of comprehensibility", "pln": ["(: cnet_isa_93628dca0f (IsA intelligibility comprehensibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intelnet is a kind of computer network", "pln": ["(: cnet_isa_35904d0978 (IsA intelnet computer_network) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intemperance is a kind of indulgence", "pln": ["(: cnet_isa_4c9e2119f3 (IsA intemperance indulgence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intemperance is a kind of vice", "pln": ["(: cnet_isa_533fc337e6 (IsA intemperance vice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intemperance is a kind of unrestraint", "pln": ["(: cnet_isa_f2d9eaa58b (IsA intemperance unrestraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intensification is a kind of increase", "pln": ["(: cnet_isa_d6b90ecc2b (IsA intensification increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intensifier is a kind of modifier", "pln": ["(: cnet_isa_8bde043f2f (IsA intensifier modifier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intension is a kind of meaning", "pln": ["(: cnet_isa_f96475d1a7 (IsA intension meaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intensity is a kind of degree", "pln": ["(: cnet_isa_acd5dcbfe1 (IsA intensity degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intensity is a kind of magnitude", "pln": ["(: cnet_isa_0e01390a8f (IsA intensity magnitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intensive care is a kind of medical care", "pln": ["(: cnet_isa_55ee99328f (IsA intensive_care medical_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intensive care unit is a kind of unit", "pln": ["(: cnet_isa_870f1cb82a (IsA intensive_care_unit unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "intent is a kind of meaning", "pln": ["(: cnet_isa_3c9b1e5349 (IsA intent meaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intention is a kind of volition", "pln": ["(: cnet_isa_93175ebdc0 (IsA intention volition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intention is a kind of goal", "pln": ["(: cnet_isa_713e429234 (IsA intention goal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intentionality is a kind of deliberation", "pln": ["(: cnet_isa_1ffba55bed (IsA intentionality deliberation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intentness is a kind of assiduity", "pln": ["(: cnet_isa_4cb92d295a (IsA intentness assiduity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "inter service support is a kind of logistic support", "pln": ["(: cnet_isa_d104804dae (IsA inter_service_support logistic_support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interaction is a kind of action", "pln": ["(: cnet_isa_974985b909 (IsA interaction action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interaction is a kind of physical phenomenon", "pln": ["(: cnet_isa_fcd5dc0c88 (IsA interaction physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interbank loan is a kind of bank loan", "pln": ["(: cnet_isa_43d68615ce (IsA interbank_loan bank_loan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intercapitular vein is a kind of vein", "pln": ["(: cnet_isa_169920801e (IsA intercapitular_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intercept is a kind of point", "pln": ["(: cnet_isa_2c91df700c (IsA intercept point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interception is a kind of prevention", "pln": ["(: cnet_isa_178d646c77 (IsA interception prevention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interception is a kind of catch", "pln": ["(: cnet_isa_9293369bfc (IsA interception catch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interceptor is a kind of fighter", "pln": ["(: cnet_isa_402d5f3ae0 (IsA interceptor fighter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intercession is a kind of prayer", "pln": ["(: cnet_isa_8a6af7a0df (IsA intercession prayer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interchange is a kind of interaction", "pln": ["(: cnet_isa_6fe9553db1 (IsA interchange interaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interchange is a kind of junction", "pln": ["(: cnet_isa_3474a7cbf7 (IsA interchange junction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intercommunication is a kind of communication", "pln": ["(: cnet_isa_de78625c4d (IsA intercommunication communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intercommunication system is a kind of communication system", "pln": ["(: cnet_isa_75243fe68d (IsA intercommunication_system communication_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intercommunion is a kind of communion", "pln": ["(: cnet_isa_a09d40c9f9 (IsA intercommunion communion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interconnection is a kind of joining", "pln": ["(: cnet_isa_6fedcf7429 (IsA interconnection joining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interconnection is a kind of connection", "pln": ["(: cnet_isa_f6a174560f (IsA interconnection connection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intercontinental ballistic missile is a kind of ballistic missile", "pln": ["(: cnet_isa_8ed362a92a (IsA intercontinental_ballistic_missile ballistic_missile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "intercostal is a kind of skeletal muscle", "pln": ["(: cnet_isa_90dccc633b (IsA intercostal skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intercostal artery is a kind of artery", "pln": ["(: cnet_isa_8d3b6dcaf4 (IsA intercostal_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intercostal vein is a kind of vein", "pln": ["(: cnet_isa_c6e8ff18c5 (IsA intercostal_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intercourse is a kind of intercommunication", "pln": ["(: cnet_isa_d54245037c (IsA intercourse intercommunication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interdepartmental support is a kind of logistic support", "pln": ["(: cnet_isa_7b0e880284 (IsA interdepartmental_support logistic_support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interdict is a kind of censure", "pln": ["(: cnet_isa_dbe2e700b4 (IsA interdict censure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interdict is a kind of court order", "pln": ["(: cnet_isa_21b2c66746 (IsA interdict court_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interdict is a kind of prohibition", "pln": ["(: cnet_isa_2c1730125e (IsA interdict prohibition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interdiction is a kind of prohibition", "pln": ["(: cnet_isa_dc32ab8703 (IsA interdiction prohibition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interdiction fire is a kind of fire", "pln": ["(: cnet_isa_ea8ca7dac9 (IsA interdiction_fire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interest is a kind of power", "pln": ["(: cnet_isa_4882660b9d (IsA interest power) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interest is a kind of curiosity", "pln": ["(: cnet_isa_7069c3d8d8 (IsA interest curiosity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interest is a kind of social group", "pln": ["(: cnet_isa_1411644f60 (IsA interest social_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interest is a kind of share", "pln": ["(: cnet_isa_ba0cd66451 (IsA interest share) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interest is a kind of fixed charge", "pln": ["(: cnet_isa_d24a2e45b2 (IsA interest fixed_charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interest expense is a kind of expense", "pln": ["(: cnet_isa_1ca3f8c8c5 (IsA interest_expense expense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interest rate is a kind of rate", "pln": ["(: cnet_isa_c719224aa2 (IsA interest_rate rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "interestedness is a kind of cognitive state", "pln": ["(: cnet_isa_e63f74decc (IsA interestedness cognitive_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interface is a kind of overlap", "pln": ["(: cnet_isa_7ac05e887d (IsA interface overlap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interface is a kind of computer circuit", "pln": ["(: cnet_isa_c95c6bcd29 (IsA interface computer_circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interface is a kind of program", "pln": ["(: cnet_isa_b7cc0ea2c5 (IsA interface program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interface is a kind of surface", "pln": ["(: cnet_isa_6f0a5b5e8a (IsA interface surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interfacial tension is a kind of surface tension", "pln": ["(: cnet_isa_fd7f0a953a (IsA interfacial_tension surface_tension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interference is a kind of blocking", "pln": ["(: cnet_isa_59c315d678 (IsA interference blocking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interference fringe is a kind of optical phenomenon", "pln": ["(: cnet_isa_d592861ddc (IsA interference_fringe optical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interferometer is a kind of measuring instrument", "pln": ["(: cnet_isa_f5f06b4220 (IsA interferometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interferon is a kind of antiviral", "pln": ["(: cnet_isa_cbc20d0114 (IsA interferon antiviral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intergalactic space is a kind of region", "pln": ["(: cnet_isa_7e80011ccc (IsA intergalactic_space region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "interim is a kind of time interval", "pln": ["(: cnet_isa_705c38875e (IsA interim time_interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interim overhaul is a kind of overhaul", "pln": ["(: cnet_isa_901514e3df (IsA interim_overhaul overhaul) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interior angle is a kind of angle", "pln": ["(: cnet_isa_a6e87bb12c (IsA interior_angle angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interior decoration is a kind of trade", "pln": ["(: cnet_isa_2d0c195067 (IsA interior_decoration trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interior decoration is a kind of decoration", "pln": ["(: cnet_isa_6399320d1b (IsA interior_decoration decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interior design is a kind of humanistic discipline", "pln": ["(: cnet_isa_99ea04a0f1 (IsA interior_design humanistic_discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interior designer is a kind of specialist", "pln": ["(: cnet_isa_82e5af0dae (IsA interior_designer specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interior door is a kind of door", "pln": ["(: cnet_isa_68161050f6 (IsA interior_door door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interior live oak is a kind of live oak", "pln": ["(: cnet_isa_3d6d6f38b0 (IsA interior_live_oak live_oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interior monologue is a kind of prose", "pln": ["(: cnet_isa_0dae04a599 (IsA interior_monologue prose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interior secretary is a kind of secretary", "pln": ["(: cnet_isa_110c1a71ac (IsA interior_secretary secretary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interjection is a kind of break", "pln": ["(: cnet_isa_269e7dcaec (IsA interjection break) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interlayer is a kind of layer", "pln": ["(: cnet_isa_39368caf48 (IsA interlayer layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interleaf is a kind of leaf", "pln": ["(: cnet_isa_9eea763fe9 (IsA interleaf leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interleukin is a kind of lymphokine", "pln": ["(: cnet_isa_e286b1dee0 (IsA interleukin lymphokine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interlingua is a kind of artificial language", "pln": ["(: cnet_isa_9cad02f71a (IsA interlingua artificial_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interlocutor is a kind of conversationalist", "pln": ["(: cnet_isa_8662a04134 (IsA interlocutor conversationalist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interlocutor is a kind of minstrel", "pln": ["(: cnet_isa_a7cf98115a (IsA interlocutor minstrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interlude is a kind of show", "pln": ["(: cnet_isa_7fc065cb42 (IsA interlude show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interlude is a kind of time interval", "pln": ["(: cnet_isa_cfc2764e09 (IsA interlude time_interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intermaxillary suture is a kind of suture", "pln": ["(: cnet_isa_05868c899a (IsA intermaxillary_suture suture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intermediate is a kind of chemical", "pln": ["(: cnet_isa_1861a20442 (IsA intermediate chemical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intermediate host is a kind of host", "pln": ["(: cnet_isa_1de8edad3d (IsA intermediate_host host) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intermediate temporal artery is a kind of temporal artery", "pln": ["(: cnet_isa_3bd94821cc (IsA intermediate_temporal_artery temporal_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intermediate vector boson is a kind of gauge boson", "pln": ["(: cnet_isa_c29b20d565 (IsA intermediate_vector_boson gauge_boson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intermediate wheatgrass is a kind of wheatgrass", "pln": ["(: cnet_isa_24361beb03 (IsA intermediate_wheatgrass wheatgrass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intermezzo is a kind of movement", "pln": ["(: cnet_isa_d6fb73df14 (IsA intermezzo movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intermezzo is a kind of musical composition", "pln": ["(: cnet_isa_e3f790d880 (IsA intermezzo musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intermission is a kind of pause", "pln": ["(: cnet_isa_5b8287b258 (IsA intermission pause) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intermittence is a kind of irregularity", "pln": ["(: cnet_isa_6511ca5de4 (IsA intermittence irregularity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intermittent claudication is a kind of lameness", "pln": ["(: cnet_isa_29218c5560 (IsA intermittent_claudication lameness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intern is a kind of doctor", "pln": ["(: cnet_isa_461cb63295 (IsA intern doctor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internal auditor is a kind of auditor", "pln": ["(: cnet_isa_244902537b (IsA internal_auditor auditor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internal carotid artery is a kind of carotid artery", "pln": ["(: cnet_isa_9ea144e92b (IsA internal_carotid_artery carotid_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "internal cerebral vein is a kind of cerebral vein", "pln": ["(: cnet_isa_28b9450226 (IsA internal_cerebral_vein cerebral_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internal combustion is a kind of combustion", "pln": ["(: cnet_isa_e60e92e75f (IsA internal_combustion combustion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internal combustion engine is a kind of heat engine", "pln": ["(: cnet_isa_b27f9f1789 (IsA internal_combustion_engine heat_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internal control is a kind of control", "pln": ["(: cnet_isa_87db9ee827 (IsA internal_control control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internal drive is a kind of drive", "pln": ["(: cnet_isa_5464c857c5 (IsA internal_drive drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internal iliac artery is a kind of iliac artery", "pln": ["(: cnet_isa_6950082fbc (IsA internal_iliac_artery iliac_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internal jugular vein is a kind of jugular vein", "pln": ["(: cnet_isa_77689599f1 (IsA internal_jugular_vein jugular_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "internal maxillary artery is a kind of maxillary artery", "pln": ["(: cnet_isa_363387dbea (IsA internal_maxillary_artery maxillary_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internal medicine is a kind of medicine", "pln": ["(: cnet_isa_524358ed1c (IsA internal_medicine medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internal organ is a kind of organ", "pln": ["(: cnet_isa_1e224d1a30 (IsA internal_organ organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internal revenue is a kind of tax income", "pln": ["(: cnet_isa_2def258d80 (IsA internal_revenue tax_income) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internal revenue service is a kind of agency", "pln": ["(: cnet_isa_ff7c86b31b (IsA internal_revenue_service agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internal rhyme is a kind of rhyme", "pln": ["(: cnet_isa_14041c89f4 (IsA internal_rhyme rhyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internalization is a kind of learning", "pln": ["(: cnet_isa_ffaad24a73 (IsA internalization learning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internasal suture is a kind of suture", "pln": ["(: cnet_isa_9198a5d351 (IsA internasal_suture suture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "international is a kind of socialism", "pln": ["(: cnet_isa_3684acbb67 (IsA international socialism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "international atomic energy agency is a kind of united nation agency", "pln": ["(: cnet_isa_43f209f32b (IsA international_atomic_energy_agency united_nation_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "international bank for reconstruction and development is a kind of united nation agency", "pln": ["(: cnet_isa_66054587fc (IsA international_bank_for_reconstruction_and_development united_nation_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "international candle is a kind of luminous intensity unit", "pln": ["(: cnet_isa_dcba78f749 (IsA international_candle luminous_intensity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "international finance corporation is a kind of united nations agency", "pln": ["(: cnet_isa_7efe5bd829 (IsA international_finance_corporation united_nations_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "international civil aviation organization is a kind of united nation agency", "pln": ["(: cnet_isa_b261a0039b (IsA international_civil_aviation_organization united_nation_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "international court of justice is a kind of court", "pln": ["(: cnet_isa_fc908ea1de (IsA international_court_of_justice court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "international development association is a kind of united nation agency", "pln": ["(: cnet_isa_1cf5e3ac35 (IsA international_development_association united_nation_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "international finance corporation is a kind of united nation agency", "pln": ["(: cnet_isa_e93f896eb2 (IsA international_finance_corporation united_nation_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "international flight is a kind of flight", "pln": ["(: cnet_isa_300c1b4d49 (IsA international_flight flight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "international grandmaster is a kind of grandmaster", "pln": ["(: cnet_isa_e54023dfbd (IsA international_grandmaster grandmaster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "international intelligence agency is a kind of intelligence", "pln": ["(: cnet_isa_37e8042e88 (IsA international_intelligence_agency intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "international labor organization is a kind of united nation agency", "pln": ["(: cnet_isa_b1fdb94598 (IsA international_labor_organization united_nation_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "international law is a kind of law", "pln": ["(: cnet_isa_45f2ac705c (IsA international_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "international law enforcement agency is a kind of administrative unit", "pln": ["(: cnet_isa_acc6951895 (IsA international_law_enforcement_agency administrative_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "international maritime organization is a kind of united nation agency", "pln": ["(: cnet_isa_fb7c83ccfb (IsA international_maritime_organization united_nation_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "international monetary fund is a kind of united nation agency", "pln": ["(: cnet_isa_b67a9fce05 (IsA international_monetary_fund united_nation_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "international olympic committee is a kind of organization", "pln": ["(: cnet_isa_c0b7766705 (IsA international_olympic_committee organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "international relation and security network is a kind of international intelligence agency", "pln": ["(: cnet_isa_88772aa4ba (IsA international_relation_and_security_network international_intelligence_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "international terrorism is a kind of terrorism", "pln": ["(: cnet_isa_fd6a4d715b (IsA international_terrorism terrorism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "international wanted notice is a kind of wanted notice", "pln": ["(: cnet_isa_c509f6c131 (IsA international_wanted_notice wanted_notice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internationalism is a kind of doctrine", "pln": ["(: cnet_isa_242a9e0f84 (IsA internationalism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internationalist is a kind of advocate", "pln": ["(: cnet_isa_0f95359865 (IsA internationalist advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internationalist is a kind of socialist", "pln": ["(: cnet_isa_d66c0c24ef (IsA internationalist socialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internationality is a kind of scope", "pln": ["(: cnet_isa_b645a28fe8 (IsA internationality scope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internationalization is a kind of group action", "pln": ["(: cnet_isa_2370846ee2 (IsA internationalization group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "internee is a kind of prisoner", "pln": ["(: cnet_isa_0e8c2a8a5a (IsA internee prisoner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internet is a kind of amazing research tool", "pln": ["(: cnet_isa_cc45e0c095 (IsA internet amazing_research_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internet is a kind of big set of computer", "pln": ["(: cnet_isa_fd1cd1728e (IsA internet big_set_of_computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internet is a kind of collection of connected computer", "pln": ["(: cnet_isa_c318e11d7d (IsA internet collection_of_connected_computer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internet is a kind of group of connected computer", "pln": ["(: cnet_isa_e6d5380cbd (IsA internet group_of_connected_computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internet is a kind of net", "pln": ["(: cnet_isa_0538bedb97 (IsA internet net) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internet is a kind of network of communicating computer", "pln": ["(: cnet_isa_74e95fe9dd (IsA internet network_of_communicating_computer) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internet is a kind of non local", "pln": ["(: cnet_isa_b69d00f576 (IsA internet non_local) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internet is a kind of rich online source of information", "pln": ["(: cnet_isa_14dc82f19b (IsA internet rich_online_source_of_information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internet is a kind of computer network", "pln": ["(: cnet_isa_5b3b9252c1 (IsA internet computer_network) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internist is a kind of specialist", "pln": ["(: cnet_isa_c979424022 (IsA internist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internment is a kind of captivity", "pln": ["(: cnet_isa_d8dfb5f563 (IsA internment captivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internode is a kind of segment", "pln": ["(: cnet_isa_f6cbc9e147 (IsA internode segment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "internship is a kind of position", "pln": ["(: cnet_isa_ff7de69aab (IsA internship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "internuncio is a kind of diplomat", "pln": ["(: cnet_isa_8baf35f54b (IsA internuncio diplomat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interobserver is a kind of observer", "pln": ["(: cnet_isa_884c5558d3 (IsA interobserver observer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interoception is a kind of sensitivity", "pln": ["(: cnet_isa_49040b2674 (IsA interoception sensitivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interoceptor is a kind of sense organ", "pln": ["(: cnet_isa_f7608dc66b (IsA interoceptor sense_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interoperability is a kind of ability", "pln": ["(: cnet_isa_04e4f61f62 (IsA interoperability ability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interpellation is a kind of order", "pln": ["(: cnet_isa_fd45413a71 (IsA interpellation order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interpenetration is a kind of penetration", "pln": ["(: cnet_isa_ac6b8e7ff7 (IsA interpenetration penetration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interphalangeal joint is a kind of hinge joint", "pln": ["(: cnet_isa_e468ed4859 (IsA interphalangeal_joint hinge_joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interphone is a kind of intercommunication system", "pln": ["(: cnet_isa_08d05ea11e (IsA interphone intercommunication_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interplanetary dust is a kind of dust", "pln": ["(: cnet_isa_22cbb25e0d (IsA interplanetary_dust dust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "interplanetary gas is a kind of plasma", "pln": ["(: cnet_isa_095746203b (IsA interplanetary_gas plasma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interplanetary medium is a kind of interplanetary space", "pln": ["(: cnet_isa_a2018a9ffb (IsA interplanetary_medium interplanetary_space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interplanetary space is a kind of region", "pln": ["(: cnet_isa_9f73447480 (IsA interplanetary_space region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interplay is a kind of interaction", "pln": ["(: cnet_isa_a4f02f3577 (IsA interplay interaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interpol is a kind of international law enforcement agency", "pln": ["(: cnet_isa_956eb9950c (IsA interpol international_law_enforcement_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "interpolation is a kind of message", "pln": ["(: cnet_isa_9abfc32fb5 (IsA interpolation message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interpolation is a kind of calculation", "pln": ["(: cnet_isa_3e26769613 (IsA interpolation calculation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interposition is a kind of placement", "pln": ["(: cnet_isa_1ede3348a3 (IsA interposition placement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "interpretation is a kind of explanation", "pln": ["(: cnet_isa_ce5d3901c5 (IsA interpretation explanation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "interpretation is a kind of representation", "pln": ["(: cnet_isa_290b0824c6 (IsA interpretation representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interpreter is a kind of computer program", "pln": ["(: cnet_isa_5c4b6dac0d (IsA interpreter computer_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interpreter is a kind of program", "pln": ["(: cnet_isa_5f2dcd446b (IsA interpreter program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interpreter is a kind of mediator", "pln": ["(: cnet_isa_548b3eaee6 (IsA interpreter mediator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "interpreter is a kind of person", "pln": ["(: cnet_isa_74019190fe (IsA interpreter person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interpretive dance is a kind of modern dance", "pln": ["(: cnet_isa_96841c71aa (IsA interpretive_dance modern_dance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interreflection is a kind of reflection", "pln": ["(: cnet_isa_680a7851ff (IsA interreflection reflection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interregnum is a kind of interim", "pln": ["(: cnet_isa_fd330b95a1 (IsA interregnum interim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interrelation is a kind of relation", "pln": ["(: cnet_isa_481c4d31c6 (IsA interrelation relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interrogation is a kind of questioning", "pln": ["(: cnet_isa_5ba1345d91 (IsA interrogation questioning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interrogation is a kind of transmission", "pln": ["(: cnet_isa_7b15f2d62e (IsA interrogation transmission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interrogative mood is a kind of mood", "pln": ["(: cnet_isa_c25ab84ace (IsA interrogative_mood mood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interrupt is a kind of signal", "pln": ["(: cnet_isa_804adcef96 (IsA interrupt signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interrupted fern is a kind of flowering fern", "pln": ["(: cnet_isa_8891a7312f (IsA interrupted_fern flowering_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interrupter is a kind of device", "pln": ["(: cnet_isa_d90cb2fb9c (IsA interrupter device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interruption is a kind of happening", "pln": ["(: cnet_isa_ecd3643c53 (IsA interruption happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intersection is a kind of where two road meet", "pln": ["(: cnet_isa_f558c9f4a5 (IsA intersection where_two_road_meet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intersection is a kind of joining", "pln": ["(: cnet_isa_27df98cd81 (IsA intersection joining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intersection is a kind of junction", "pln": ["(: cnet_isa_0afb2e51f6 (IsA intersection junction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intersection is a kind of point", "pln": ["(: cnet_isa_b55845e476 (IsA intersection point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intersection is a kind of set", "pln": ["(: cnet_isa_9db6addf72 (IsA intersection set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interspersion is a kind of combination", "pln": ["(: cnet_isa_9ff4972b42 (IsA interspersion combination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interstate commerce commission is a kind of independent agency", "pln": ["(: cnet_isa_6909ded4a9 (IsA interstate_commerce_commission independent_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interstate highway is a kind of highway", "pln": ["(: cnet_isa_98e8f361ec (IsA interstate_highway highway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interstellar medium is a kind of interstellar space", "pln": ["(: cnet_isa_734e15c9d0 (IsA interstellar_medium interstellar_space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interstellar space is a kind of region", "pln": ["(: cnet_isa_4141c7528f (IsA interstellar_space region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "interstice is a kind of opening", "pln": ["(: cnet_isa_f37fb04dc2 (IsA interstice opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interstice is a kind of structure", "pln": ["(: cnet_isa_cd95972123 (IsA interstice structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "interstitial fluid is a kind of extracellular fluid", "pln": ["(: cnet_isa_62f2088bb3 (IsA interstitial_fluid extracellular_fluid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "interstitial pneumonia is a kind of respiratory disease", "pln": ["(: cnet_isa_f59438ecba (IsA interstitial_pneumonia respiratory_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interstitial tissue is a kind of animal tissue", "pln": ["(: cnet_isa_6509c54c4d (IsA interstitial_tissue animal_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "interstitial tissue is a kind of plant tissue", "pln": ["(: cnet_isa_b1808ed208 (IsA interstitial_tissue plant_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "intertrigo is a kind of chafing", "pln": ["(: cnet_isa_5f63dbba03 (IsA intertrigo chafing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interval is a kind of distance", "pln": ["(: cnet_isa_59ba84234e (IsA interval distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interval is a kind of set", "pln": ["(: cnet_isa_7997628f4d (IsA interval set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interval is a kind of musical notation", "pln": ["(: cnet_isa_6697d08d33 (IsA interval musical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intervenor is a kind of party", "pln": ["(: cnet_isa_214d4fc008 (IsA intervenor party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intervention is a kind of engagement", "pln": ["(: cnet_isa_afb829f9ba (IsA intervention engagement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intervention is a kind of foreign policy", "pln": ["(: cnet_isa_8e08e72f11 (IsA intervention foreign_policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intervention is a kind of proceeding", "pln": ["(: cnet_isa_05bb9dc35f (IsA intervention proceeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interventricular foramen is a kind of foramen", "pln": ["(: cnet_isa_f6a8cf5324 (IsA interventricular_foramen foramen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intervertebral disc is a kind of disk", "pln": ["(: cnet_isa_95846765d3 (IsA intervertebral_disc disk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intervertebral vein is a kind of vein", "pln": ["(: cnet_isa_869715e498 (IsA intervertebral_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interview is a kind of interrogation", "pln": ["(: cnet_isa_b82d871fbc (IsA interview interrogation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interviewee is a kind of respondent", "pln": ["(: cnet_isa_eea9f02694 (IsA interviewee respondent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "interviewer is a kind of inquirer", "pln": ["(: cnet_isa_a3739f112b (IsA interviewer inquirer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intestacy is a kind of situation", "pln": ["(: cnet_isa_b48117fdbe (IsA intestacy situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intestinal bypass is a kind of operation", "pln": ["(: cnet_isa_47f60affc7 (IsA intestinal_bypass operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intestinal flora is a kind of microorganism", "pln": ["(: cnet_isa_78ff59f70c (IsA intestinal_flora microorganism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intestinal juice is a kind of secretion", "pln": ["(: cnet_isa_3eac0dae06 (IsA intestinal_juice secretion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intestinal obstruction is a kind of enteropathy", "pln": ["(: cnet_isa_012d99f6d2 (IsA intestinal_obstruction enteropathy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intestinal obstruction is a kind of obstruction", "pln": ["(: cnet_isa_c84d8ec202 (IsA intestinal_obstruction obstruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intestine is a kind of internal organ", "pln": ["(: cnet_isa_eb4b53128c (IsA intestine internal_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inti is a kind of peruvian monetary unit", "pln": ["(: cnet_isa_282abaa43a (IsA inti peruvian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intifada is a kind of rebellion", "pln": ["(: cnet_isa_6b96ad0104 (IsA intifada rebellion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intima is a kind of membrane", "pln": ["(: cnet_isa_b791b7b806 (IsA intima membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intimidation is a kind of discouragement", "pln": ["(: cnet_isa_e72857e691 (IsA intimidation discouragement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intimidation is a kind of fear", "pln": ["(: cnet_isa_ff191a4dfc (IsA intimidation fear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intolerance is a kind of impatience", "pln": ["(: cnet_isa_24433a4e71 (IsA intolerance impatience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intolerance is a kind of attitude", "pln": ["(: cnet_isa_c379d21449 (IsA intolerance attitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intonation is a kind of music", "pln": ["(: cnet_isa_3042c4a30c (IsA intonation music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intonation is a kind of singing", "pln": ["(: cnet_isa_ba4dfe6cdd (IsA intonation singing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intonation is a kind of prosody", "pln": ["(: cnet_isa_f462e5ada2 (IsA intonation prosody) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "intonation pattern is a kind of intonation", "pln": ["(: cnet_isa_91a5154501 (IsA intonation_pattern intonation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intoxicant is a kind of drug", "pln": ["(: cnet_isa_028ff3ad6c (IsA intoxicant drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intoxication is a kind of exhilaration", "pln": ["(: cnet_isa_9a5afe49a9 (IsA intoxication exhilaration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intracapsular surgery is a kind of cataract surgery", "pln": ["(: cnet_isa_e6c929d4b6 (IsA intracapsular_surgery cataract_surgery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intracellular fluid is a kind of liquid body substance", "pln": ["(: cnet_isa_45752d8184 (IsA intracellular_fluid liquid_body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intracranial aneurysm is a kind of aneurysm", "pln": ["(: cnet_isa_1f9bd0f84e (IsA intracranial_aneurysm aneurysm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intractability is a kind of trait", "pln": ["(: cnet_isa_26a88b139d (IsA intractability trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "intradermal injection is a kind of injection", "pln": ["(: cnet_isa_57e81f8696 (IsA intradermal_injection injection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "intraocular lens is a kind of lens", "pln": ["(: cnet_isa_521d6e0dc0 (IsA intraocular_lens lens) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intradermal test is a kind of skin test", "pln": ["(: cnet_isa_51b02eb935 (IsA intradermal_test skin_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intrado is a kind of curve", "pln": ["(: cnet_isa_c969925990 (IsA intrado curve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intramuscular injection is a kind of injection", "pln": ["(: cnet_isa_26905a2c39 (IsA intramuscular_injection injection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intranet is a kind of computer network", "pln": ["(: cnet_isa_aed7ab5121 (IsA intranet computer_network) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intransigency is a kind of stubbornness", "pln": ["(: cnet_isa_b7c05e7d6b (IsA intransigency stubbornness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intransitive verb is a kind of verb", "pln": ["(: cnet_isa_1fba08d6e9 (IsA intransitive_verb verb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intransitivity is a kind of grammatical relation", "pln": ["(: cnet_isa_3c1b5c704e (IsA intransitivity grammatical_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intraocular len is a kind of len", "pln": ["(: cnet_isa_8b97ead5bc (IsA intraocular_len len) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intraocular pressure is a kind of pressure", "pln": ["(: cnet_isa_ed16e2123e (IsA intraocular_pressure pressure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intrauterine device is a kind of contraceptive", "pln": ["(: cnet_isa_3490ec79f8 (IsA intrauterine_device contraceptive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intravasation is a kind of injury", "pln": ["(: cnet_isa_968ec42bb5 (IsA intravasation injury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intravenous anesthetic is a kind of anesthetic", "pln": ["(: cnet_isa_40bc666bee (IsA intravenous_anesthetic anesthetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intravenous drip is a kind of drip", "pln": ["(: cnet_isa_6c39d87c5c (IsA intravenous_drip drip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intravenous feeding is a kind of feeding", "pln": ["(: cnet_isa_4bcc94073f (IsA intravenous_feeding feeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intravenous injection is a kind of injection", "pln": ["(: cnet_isa_52b1f23b02 (IsA intravenous_injection injection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "intravenous pyelogram is a kind of pyelogram", "pln": ["(: cnet_isa_705815b4c7 (IsA intravenous_pyelogram pyelogram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intravenous pyelography is a kind of pyelography", "pln": ["(: cnet_isa_7d408099ef (IsA intravenous_pyelography pyelography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intrigue is a kind of plot", "pln": ["(: cnet_isa_c2f218f6a5 (IsA intrigue plot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intrigue is a kind of love affair", "pln": ["(: cnet_isa_5056f75194 (IsA intrigue love_affair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intrinsic factor is a kind of factor", "pln": ["(: cnet_isa_588005e6e4 (IsA intrinsic_factor factor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intrinsic fraud is a kind of fraud", "pln": ["(: cnet_isa_a24325f1b4 (IsA intrinsic_fraud fraud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intro is a kind of passage", "pln": ["(: cnet_isa_18b08453b2 (IsA intro passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "introduction is a kind of beginning", "pln": ["(: cnet_isa_da195ca80c (IsA introduction beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "introduction is a kind of proposal", "pln": ["(: cnet_isa_1ce6730303 (IsA introduction proposal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "introduction is a kind of section", "pln": ["(: cnet_isa_84ff727f55 (IsA introduction section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "introduction is a kind of textbook", "pln": ["(: cnet_isa_d728d7ee98 (IsA introduction textbook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "introit is a kind of musical composition", "pln": ["(: cnet_isa_6baeeb1132 (IsA introit musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "introitus is a kind of orifice", "pln": ["(: cnet_isa_27b378a1a1 (IsA introitus orifice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "introject is a kind of value", "pln": ["(: cnet_isa_d678a56a5e (IsA introject value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "introjection is a kind of internalization", "pln": ["(: cnet_isa_ff39d003f9 (IsA introjection internalization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intron is a kind of deoxyribonucleic acid", "pln": ["(: cnet_isa_a37c8a16e3 (IsA intron deoxyribonucleic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "introspection is a kind of contemplation", "pln": ["(: cnet_isa_291532cc9d (IsA introspection contemplation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "introspectiveness is a kind of thoughtfulness", "pln": ["(: cnet_isa_ebbd50e04a (IsA introspectiveness thoughtfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "introversion is a kind of unsociability", "pln": ["(: cnet_isa_014e440901 (IsA introversion unsociability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "introvert is a kind of person", "pln": ["(: cnet_isa_0c7fd09643 (IsA introvert person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "intruder is a kind of entrant", "pln": ["(: cnet_isa_9fa89d6ba0 (IsA intruder entrant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intruder is a kind of unwelcome person", "pln": ["(: cnet_isa_6d126c7056 (IsA intruder unwelcome_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intrusion is a kind of entrance", "pln": ["(: cnet_isa_0fdbc45654 (IsA intrusion entrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intrusion is a kind of rock", "pln": ["(: cnet_isa_74c1bec749 (IsA intrusion rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intrusion is a kind of geological process", "pln": ["(: cnet_isa_8611bdadfd (IsA intrusion geological_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "intrusiveness is a kind of aggressiveness", "pln": ["(: cnet_isa_c810c1948a (IsA intrusiveness aggressiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intuition is a kind of basic cognitive process", "pln": ["(: cnet_isa_7870ff2f87 (IsA intuition basic_cognitive_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intuition is a kind of impression", "pln": ["(: cnet_isa_b4948902e1 (IsA intuition impression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "intuitionism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_4cab1e426b (IsA intuitionism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intumescence is a kind of chemical process", "pln": ["(: cnet_isa_9ab620d41a (IsA intumescence chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intumescence is a kind of swelling", "pln": ["(: cnet_isa_58ce92d63c (IsA intumescence swelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "intussusception is a kind of growth", "pln": ["(: cnet_isa_21861ea312 (IsA intussusception growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inula is a kind of herb", "pln": ["(: cnet_isa_126a87187e (IsA inula herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inulin is a kind of polysaccharide", "pln": ["(: cnet_isa_eb4950995b (IsA inulin polysaccharide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inutility is a kind of quality", "pln": ["(: cnet_isa_834ef8be60 (IsA inutility quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invader is a kind of intruder", "pln": ["(: cnet_isa_9a671ce199 (IsA invader intruder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invagination is a kind of organic process", "pln": ["(: cnet_isa_7851777081 (IsA invagination organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invagination is a kind of condition", "pln": ["(: cnet_isa_b69414182f (IsA invagination condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invalid is a kind of sick person", "pln": ["(: cnet_isa_9959d5ba44 (IsA invalid sick_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invalidator is a kind of official", "pln": ["(: cnet_isa_6475e40eff (IsA invalidator official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invalidism is a kind of ill health", "pln": ["(: cnet_isa_22e28796f2 (IsA invalidism ill_health) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invalidity is a kind of illogicality", "pln": ["(: cnet_isa_7e732cb615 (IsA invalidity illogicality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invaluableness is a kind of value", "pln": ["(: cnet_isa_1e81ff1b5b (IsA invaluableness value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invariability is a kind of changelessness", "pln": ["(: cnet_isa_f4edecc203 (IsA invariability changelessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invariance is a kind of constancy", "pln": ["(: cnet_isa_b29bf6863f (IsA invariance constancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invariant is a kind of feature", "pln": ["(: cnet_isa_611fb883c2 (IsA invariant feature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invasion is a kind of penetration", "pln": ["(: cnet_isa_33ae23ab61 (IsA invasion penetration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invasion is a kind of entrance", "pln": ["(: cnet_isa_e58189dfdf (IsA invasion entrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invasion is a kind of spread", "pln": ["(: cnet_isa_10bbf5bda7 (IsA invasion spread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invasion of privacy is a kind of tort", "pln": ["(: cnet_isa_ec0fc69047 (IsA invasion_of_privacy tort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invention is a kind of creating by mental act", "pln": ["(: cnet_isa_ae75068afc (IsA invention creating_by_mental_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invention is a kind of creation", "pln": ["(: cnet_isa_05e9fb4370 (IsA invention creation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "invention is a kind of creativity", "pln": ["(: cnet_isa_773d78bd31 (IsA invention creativity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "inventiveness is a kind of creativity", "pln": ["(: cnet_isa_887933cf63 (IsA inventiveness creativity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inventor is a kind of creator", "pln": ["(: cnet_isa_f6dd4cc754 (IsA inventor creator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inventory is a kind of register", "pln": ["(: cnet_isa_0b2339b368 (IsA inventory register) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inventory is a kind of listing", "pln": ["(: cnet_isa_95ead0793f (IsA inventory listing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "inventory is a kind of list", "pln": ["(: cnet_isa_9f105c030d (IsA inventory list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inventory accounting is a kind of accountancy", "pln": ["(: cnet_isa_e23af8f332 (IsA inventory_accounting accountancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inventory control is a kind of internal control", "pln": ["(: cnet_isa_8ce5421b2d (IsA inventory_control internal_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inventory item is a kind of item", "pln": ["(: cnet_isa_e4155f061a (IsA inventory_item item) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inverse is a kind of opposition", "pln": ["(: cnet_isa_126b8b3cae (IsA inverse opposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inverse cosecant is a kind of trigonometric function", "pln": ["(: cnet_isa_860c3df485 (IsA inverse_cosecant trigonometric_function) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inverse cosine is a kind of trigonometric function", "pln": ["(: cnet_isa_1084bf77fb (IsA inverse_cosine trigonometric_function) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inverse cotangent is a kind of trigonometric function", "pln": ["(: cnet_isa_3667b621d3 (IsA inverse_cotangent trigonometric_function) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inverse function is a kind of mapping", "pln": ["(: cnet_isa_31da7b2a9e (IsA inverse_function mapping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inverse secant is a kind of trigonometric function", "pln": ["(: cnet_isa_a017c66dda (IsA inverse_secant trigonometric_function) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inverse sine is a kind of trigonometric function", "pln": ["(: cnet_isa_f791302563 (IsA inverse_sine trigonometric_function) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inverse tangent is a kind of trigonometric function", "pln": ["(: cnet_isa_abe889e074 (IsA inverse_tangent trigonometric_function) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inversion is a kind of homosexuality", "pln": ["(: cnet_isa_16ed5a2aeb (IsA inversion homosexuality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inversion is a kind of motion", "pln": ["(: cnet_isa_e82b37579e (IsA inversion motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inversion is a kind of variation", "pln": ["(: cnet_isa_f5d2e56df3 (IsA inversion variation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inversion is a kind of mutation", "pln": ["(: cnet_isa_d0f322ce84 (IsA inversion mutation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inversion is a kind of atmospheric phenomenon", "pln": ["(: cnet_isa_3591919de5 (IsA inversion atmospheric_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inversion is a kind of chemical process", "pln": ["(: cnet_isa_99dc796608 (IsA inversion chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inversion is a kind of abnormality", "pln": ["(: cnet_isa_8f4a92ec1f (IsA inversion abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invert sugar is a kind of carbohydrate", "pln": ["(: cnet_isa_7f5c2fcd7c (IsA invert_sugar carbohydrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invertase is a kind of disaccharidase", "pln": ["(: cnet_isa_1f0c2e2a4d (IsA invertase disaccharidase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invertebrate is a kind of animal", "pln": ["(: cnet_isa_10b4ece2e2 (IsA invertebrate animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inverted hang is a kind of hang", "pln": ["(: cnet_isa_039687150d (IsA inverted_hang hang) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inverted pleat is a kind of pleat", "pln": ["(: cnet_isa_ba8e936fa5 (IsA inverted_pleat pleat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inverter is a kind of electrical converter", "pln": ["(: cnet_isa_5b9cdd7e31 (IsA inverter electrical_converter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "investigation is a kind of work", "pln": ["(: cnet_isa_f9433723ed (IsA investigation work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "investigator is a kind of expert", "pln": ["(: cnet_isa_be7657d0ee (IsA investigator expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "investing is a kind of finance", "pln": ["(: cnet_isa_3c8cbd56a7 (IsA investing finance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "investment is a kind of dressing", "pln": ["(: cnet_isa_85fc9ed8c1 (IsA investment dressing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "investment is a kind of promotion", "pln": ["(: cnet_isa_1bbbcbd5ca (IsA investment promotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "investment is a kind of skin", "pln": ["(: cnet_isa_5b62cce06f (IsA investment skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "investment is a kind of committedness", "pln": ["(: cnet_isa_d47023e763 (IsA investment committedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "investment is a kind of asset", "pln": ["(: cnet_isa_a09bb6367a (IsA investment asset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "investment adviser is a kind of adviser", "pln": ["(: cnet_isa_3a04f05cdc (IsA investment_adviser adviser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "investment banker is a kind of agent", "pln": ["(: cnet_isa_0559cff8e2 (IsA investment_banker agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "investment company is a kind of nondepository financial institution", "pln": ["(: cnet_isa_e904e075a7 (IsA investment_company nondepository_financial_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "investment letter is a kind of letter of intent", "pln": ["(: cnet_isa_c729b2c055 (IsA investment_letter letter_of_intent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "investor is a kind of capitalist", "pln": ["(: cnet_isa_21df1af610 (IsA investor capitalist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "investor club is a kind of club", "pln": ["(: cnet_isa_9e64b088b0 (IsA investor_club club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invigilation is a kind of supervision", "pln": ["(: cnet_isa_de4a09a659 (IsA invigilation supervision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invigilator is a kind of proctor", "pln": ["(: cnet_isa_13538f00ec (IsA invigilator proctor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invisibility is a kind of physical property", "pln": ["(: cnet_isa_e70432acd5 (IsA invisibility physical_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invisible balance is a kind of balance", "pln": ["(: cnet_isa_3a3ab3fd39 (IsA invisible_balance balance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invitation is a kind of allure", "pln": ["(: cnet_isa_26b5cde2c1 (IsA invitation allure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invitation is a kind of letter", "pln": ["(: cnet_isa_2fedb24805 (IsA invitation letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invitation is a kind of request", "pln": ["(: cnet_isa_e99c2996c6 (IsA invitation request) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invite is a kind of invitation", "pln": ["(: cnet_isa_971ce76e85 (IsA invite invitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invocation is a kind of implementation", "pln": ["(: cnet_isa_908e055287 (IsA invocation implementation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invocation is a kind of incantation", "pln": ["(: cnet_isa_325118e756 (IsA invocation incantation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invocation is a kind of prayer", "pln": ["(: cnet_isa_d5e7c8ab58 (IsA invocation prayer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "involucre is a kind of bract", "pln": ["(: cnet_isa_b85ca9e27e (IsA involucre bract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "involution is a kind of change of shape", "pln": ["(: cnet_isa_4ab72f4538 (IsA involution change_of_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "involution is a kind of construction", "pln": ["(: cnet_isa_64aab7880f (IsA involution construction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "involution is a kind of organic process", "pln": ["(: cnet_isa_585e8bebbf (IsA involution organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "involutional depression is a kind of major depressive episode", "pln": ["(: cnet_isa_143681ed22 (IsA involutional_depression major_depressive_episode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "involvement is a kind of connection", "pln": ["(: cnet_isa_703cf30dec (IsA involvement connection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invulnerability is a kind of strength", "pln": ["(: cnet_isa_a0995473e9 (IsA invulnerability strength) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "invulnerability is a kind of safety", "pln": ["(: cnet_isa_b32e858f94 (IsA invulnerability safety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inwardness is a kind of introversion", "pln": ["(: cnet_isa_f4d7066b4c (IsA inwardness introversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inwardness is a kind of position", "pln": ["(: cnet_isa_a01095705c (IsA inwardness position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "inwardness is a kind of cognitive state", "pln": ["(: cnet_isa_69b484bed8 (IsA inwardness cognitive_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "io moth is a kind of saturniid", "pln": ["(: cnet_isa_7dec499863 (IsA io_moth saturniid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iodic acid is a kind of acid", "pln": ["(: cnet_isa_2b885385e3 (IsA iodic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iodide is a kind of halide", "pln": ["(: cnet_isa_82c61aef98 (IsA iodide halide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iodination is a kind of chemical process", "pln": ["(: cnet_isa_fa89ed3e85 (IsA iodination chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iodine is a kind of bluish black lustrous solid", "pln": ["(: cnet_isa_026be2be3c (IsA iodine bluish_black_lustrous_solid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "iodine is a kind of chemical element", "pln": ["(: cnet_isa_f85fa65d53 (IsA iodine chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "iodine is a kind of halogen", "pln": ["(: cnet_isa_e1fce37139 (IsA iodine halogen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "iodine 125 is a kind of iodine", "pln": ["(: cnet_isa_522e89c81a (IsA iodine_125 iodine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iodine 125 is a kind of radioisotope", "pln": ["(: cnet_isa_84072201e1 (IsA iodine_125 radioisotope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iodine 131 is a kind of iodine", "pln": ["(: cnet_isa_b11444c1c2 (IsA iodine_131 iodine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iodine 131 is a kind of radioisotope", "pln": ["(: cnet_isa_d44e014b67 (IsA iodine_131 radioisotope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iodoamino acid is a kind of amino acid", "pln": ["(: cnet_isa_1420683be2 (IsA iodoamino_acid amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iodochlorhydroxyquin is a kind of antifungal", "pln": ["(: cnet_isa_91f656c5e2 (IsA iodochlorhydroxyquin antifungal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iodocompound is a kind of compound", "pln": ["(: cnet_isa_195b688cd1 (IsA iodocompound compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iodoform is a kind of antiseptic", "pln": ["(: cnet_isa_60655d6f82 (IsA iodoform antiseptic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iodoform is a kind of haloform", "pln": ["(: cnet_isa_f97509743a (IsA iodoform haloform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iodoprotein is a kind of protein", "pln": ["(: cnet_isa_0f44a121d1 (IsA iodoprotein protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iodopsin is a kind of photopigment", "pln": ["(: cnet_isa_f89517cfff (IsA iodopsin photopigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "iodothyronine is a kind of iodoamino acid", "pln": ["(: cnet_isa_5d8174af7e (IsA iodothyronine iodoamino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iodotyrosine is a kind of iodoamino acid", "pln": ["(: cnet_isa_7b0befd1eb (IsA iodotyrosine iodoamino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ion is a kind of particle", "pln": ["(: cnet_isa_4ea7c8db67 (IsA ion particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ion beam is a kind of particle beam", "pln": ["(: cnet_isa_d2ae2bd066 (IsA ion_beam particle_beam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ion engine is a kind of reaction propulsion engine", "pln": ["(: cnet_isa_92d0d80d1d (IsA ion_engine reaction_propulsion_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ion exchange is a kind of natural process", "pln": ["(: cnet_isa_5b11fda328 (IsA ion_exchange natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ion pump is a kind of air pump", "pln": ["(: cnet_isa_01f9653194 (IsA ion_pump air_pump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ionian is a kind of citizenry", "pln": ["(: cnet_isa_022c73f1b9 (IsA ionian citizenry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ionian is a kind of hellene", "pln": ["(: cnet_isa_6cce75b3cf (IsA ionian hellene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ionic is a kind of ancient greek", "pln": ["(: cnet_isa_dbe1eba07e (IsA ionic ancient_greek) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ionic bond is a kind of chemical bond", "pln": ["(: cnet_isa_f452484542 (IsA ionic_bond chemical_bond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ionic charge is a kind of constant", "pln": ["(: cnet_isa_1dc5eff759 (IsA ionic_charge constant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ionic order is a kind of order", "pln": ["(: cnet_isa_657105e534 (IsA ionic_order order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ionization is a kind of natural process", "pln": ["(: cnet_isa_2aba6606ce (IsA ionization natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ionization is a kind of condition", "pln": ["(: cnet_isa_578c74b7d9 (IsA ionization condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ionization chamber is a kind of measuring instrument", "pln": ["(: cnet_isa_6c31bf73e5 (IsA ionization_chamber measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ionizing radiation is a kind of radiation", "pln": ["(: cnet_isa_dd5bba834b (IsA ionizing_radiation radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ionosphere is a kind of region", "pln": ["(: cnet_isa_18fa01fd02 (IsA ionosphere region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ionospheric wave is a kind of sky wave", "pln": ["(: cnet_isa_b49fb4a37b (IsA ionospheric_wave sky_wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iontophoresis is a kind of therapy", "pln": ["(: cnet_isa_7f969aa4ca (IsA iontophoresis therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iota is a kind of letter", "pln": ["(: cnet_isa_73d56422b2 (IsA iota letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iou is a kind of note", "pln": ["(: cnet_isa_207c6eba54 (IsA iou note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iowa is a kind of chiwere", "pln": ["(: cnet_isa_c765a98fc0 (IsA iowa chiwere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iowa crab is a kind of wild apple", "pln": ["(: cnet_isa_3933656b1d (IsA iowa_crab wild_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iowan is a kind of american", "pln": ["(: cnet_isa_5b4dcd8267 (IsA iowan american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ioway is a kind of siouan", "pln": ["(: cnet_isa_6c3503ebbe (IsA ioway siouan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ip is a kind of protocol", "pln": ["(: cnet_isa_5776829092 (IsA ip protocol) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ipecac is a kind of emetic", "pln": ["(: cnet_isa_6fa647dcf3 (IsA ipecac emetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ipod is a kind of mp3 player", "pln": ["(: cnet_isa_c5d93073b5 (IsA ipod mp3_player) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ipod is a kind of stereo", "pln": ["(: cnet_isa_eb0009a573 (IsA ipod stereo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ipomoea is a kind of dicot genus", "pln": ["(: cnet_isa_e497dec2f9 (IsA ipomoea dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iproclozide is a kind of monoamine oxidase inhibitor", "pln": ["(: cnet_isa_c785787d86 (IsA iproclozide monoamine_oxidase_inhibitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ipse dixit is a kind of assertion", "pln": ["(: cnet_isa_84158f9009 (IsA ipse_dixit assertion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iraki is a kind of asiatic", "pln": ["(: cnet_isa_62fbc23ab0 (IsA iraki asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iranian is a kind of indo iranian", "pln": ["(: cnet_isa_e161b4d811 (IsA iranian indo_iranian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iranian is a kind of asiatic", "pln": ["(: cnet_isa_fc6f2a6cb5 (IsA iranian asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iranian dinar is a kind of iranian monetary unit", "pln": ["(: cnet_isa_fa3f15f5cc (IsA iranian_dinar iranian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iranian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_a1411f84d1 (IsA iranian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iranian rial is a kind of iranian monetary unit", "pln": ["(: cnet_isa_cd1eb562d8 (IsA iranian_rial iranian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iraq is a kind of country", "pln": ["(: cnet_isa_d1be9f0fa3 (IsA iraq country) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iraq is a kind of country in middle east", "pln": ["(: cnet_isa_936c1cba9c (IsA iraq country_in_middle_east) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iraq is a kind of middle east country", "pln": ["(: cnet_isa_c3ec769659 (IsA iraq middle_east_country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iraqi dinar is a kind of iraqi monetary unit", "pln": ["(: cnet_isa_5cce4d14e3 (IsA iraqi_dinar iraqi_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iraqi extremist is a kind of agent non geographical", "pln": ["(: cnet_isa_c7b56ddf41 (IsA iraqi_extremist agent_non_geographical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iraqi extremist is a kind of organization", "pln": ["(: cnet_isa_10992a9a14 (IsA iraqi_extremist organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iraqi intelligence service is a kind of international intelligence agency", "pln": ["(: cnet_isa_febafbbc4e (IsA iraqi_intelligence_service international_intelligence_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iraqi monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_05f900ff0d (IsA iraqi_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iraqi national congress is a kind of opposition", "pln": ["(: cnet_isa_06dcadcd7b (IsA iraqi_national_congress opposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irascibility is a kind of bad temper", "pln": ["(: cnet_isa_080f6be781 (IsA irascibility bad_temper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ireland is a kind of country", "pln": ["(: cnet_isa_b1922a881f (IsA ireland country) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ireland is a kind of island", "pln": ["(: cnet_isa_13a2d74674 (IsA ireland island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irelander is a kind of european", "pln": ["(: cnet_isa_271e5fd289 (IsA irelander european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irena is a kind of bird genus", "pln": ["(: cnet_isa_c7466782dc (IsA irena bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irenidae is a kind of bird family", "pln": ["(: cnet_isa_12e3baa787 (IsA irenidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iresine is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_e05c2a787a (IsA iresine caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iridaceae is a kind of liliid monocot family", "pln": ["(: cnet_isa_daaf265829 (IsA iridaceae liliid_monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iridaceous plant is a kind of bulbous plant", "pln": ["(: cnet_isa_8d96871858 (IsA iridaceous_plant bulbous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iridectomy is a kind of eye operation", "pln": ["(: cnet_isa_e51367d2c6 (IsA iridectomy eye_operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iridium is a kind of metallic element", "pln": ["(: cnet_isa_2c0645329e (IsA iridium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "iridium 192 is a kind of solid", "pln": ["(: cnet_isa_c373669d80 (IsA iridium_192 solid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iridocyclitis is a kind of inflammation", "pln": ["(: cnet_isa_6e7070c7dd (IsA iridocyclitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iridokeratitis is a kind of inflammation", "pln": ["(: cnet_isa_264e3bdf7e (IsA iridokeratitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iridoncus is a kind of swelling", "pln": ["(: cnet_isa_1e46b82b8e (IsA iridoncus swelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iridoprocne is a kind of bird genus", "pln": ["(: cnet_isa_f3f2c31f97 (IsA iridoprocne bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iridotomy is a kind of eye operation", "pln": ["(: cnet_isa_aaddac618a (IsA iridotomy eye_operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iris is a kind of flower", "pln": ["(: cnet_isa_3c30d6b5ab (IsA iris flower) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iris is a kind of flower and flower bloom", "pln": ["(: cnet_isa_b1cce20e62 (IsA iris flower_and_flower_bloom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "iris is a kind of diaphragm", "pln": ["(: cnet_isa_018872b25d (IsA iris diaphragm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iris is a kind of membrane", "pln": ["(: cnet_isa_3d7ca0b701 (IsA iris membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iris is a kind of iridaceous plant", "pln": ["(: cnet_isa_9bf0524440 (IsA iris iridaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iris scanning is a kind of biometric identification", "pln": ["(: cnet_isa_ef46d1773a (IsA iris_scanning biometric_identification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irish is a kind of gaelic", "pln": ["(: cnet_isa_4cebd6d7b8 (IsA irish gaelic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irish is a kind of whiskey", "pln": ["(: cnet_isa_850ff70654 (IsA irish whiskey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irish breakfast is a kind of tea", "pln": ["(: cnet_isa_d4224a9af6 (IsA irish_breakfast tea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irish coffee is a kind of coffee", "pln": ["(: cnet_isa_8fa6c402e7 (IsA irish_coffee coffee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irish famine is a kind of famine", "pln": ["(: cnet_isa_3f0dea35fa (IsA irish_famine famine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irish monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_c8e27642b3 (IsA irish_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irish moss is a kind of red algae", "pln": ["(: cnet_isa_63cbb96bb8 (IsA irish_moss red_algae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irish people is a kind of nation", "pln": ["(: cnet_isa_a61a6d392e (IsA irish_people nation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irish pound is a kind of irish monetary unit", "pln": ["(: cnet_isa_44a431229e (IsA irish_pound irish_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irish setter is a kind of dog", "pln": ["(: cnet_isa_19ce287b4d (IsA irish_setter dog) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irish setter is a kind of setter", "pln": ["(: cnet_isa_634e30431d (IsA irish_setter setter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irish soda bread is a kind of quick bread", "pln": ["(: cnet_isa_d574c6cb34 (IsA irish_soda_bread quick_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irish stew is a kind of stew", "pln": ["(: cnet_isa_f19bb89b0d (IsA irish_stew stew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irish terrier is a kind of terrier", "pln": ["(: cnet_isa_6f66b46a0d (IsA irish_terrier terrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irish water spaniel is a kind of water spaniel", "pln": ["(: cnet_isa_240ce1e5a1 (IsA irish_water_spaniel water_spaniel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irish wolfhound is a kind of wolfhound", "pln": ["(: cnet_isa_632408ffd9 (IsA irish_wolfhound wolfhound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irishman is a kind of irelander", "pln": ["(: cnet_isa_5e18492954 (IsA irishman irelander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "irishwoman is a kind of irelander", "pln": ["(: cnet_isa_3fae0f64bc (IsA irishwoman irelander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iritis is a kind of inflammation", "pln": ["(: cnet_isa_60618eb56c (IsA iritis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iron is a kind of element", "pln": ["(: cnet_isa_8f6c86c5c4 (IsA iron element) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iron is a kind of metal", "pln": ["(: cnet_isa_dd9acdd727 (IsA iron metal) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iron is a kind of golf club", "pln": ["(: cnet_isa_2c29cd1dc6 (IsA iron golf_club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iron is a kind of home appliance", "pln": ["(: cnet_isa_b6d335e1da (IsA iron home_appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iron is a kind of implement", "pln": ["(: cnet_isa_d4ad2d5d04 (IsA iron implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iron is a kind of shackle", "pln": ["(: cnet_isa_a17087b744 (IsA iron shackle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iron is a kind of metallic element", "pln": ["(: cnet_isa_38e0011d89 (IsA iron metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iron age is a kind of time period", "pln": ["(: cnet_isa_2c6bd6843a (IsA iron_age time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iron blue is a kind of gray", "pln": ["(: cnet_isa_e7eb29e8a4 (IsA iron_blue gray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iron blue is a kind of pigment", "pln": ["(: cnet_isa_d105c3b6aa (IsA iron_blue pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iron cage is a kind of cage", "pln": ["(: cnet_isa_f191ce28d0 (IsA iron_cage cage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "iron curtain is a kind of ideological barrier", "pln": ["(: cnet_isa_176789dbef (IsA iron_curtain ideological_barrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iron deficiency anemia is a kind of anemia", "pln": ["(: cnet_isa_392c060764 (IsA iron_deficiency_anemia anemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "iron disulfide is a kind of sulfide", "pln": ["(: cnet_isa_9ca22a56be (IsA iron_disulfide sulfide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iron filing is a kind of metal filing", "pln": ["(: cnet_isa_88a8d31d62 (IsA iron_filing metal_filing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iron fist is a kind of control", "pln": ["(: cnet_isa_bbe9363f69 (IsA iron_fist control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iron foundry is a kind of foundry", "pln": ["(: cnet_isa_a111df23da (IsA iron_foundry foundry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iron gray is a kind of gray", "pln": ["(: cnet_isa_209c890e3f (IsA iron_gray gray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iron horse is a kind of locomotive", "pln": ["(: cnet_isa_0aa8eaa36d (IsA iron_horse locomotive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iron lung is a kind of respirator", "pln": ["(: cnet_isa_c3d1f6aaf8 (IsA iron_lung respirator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iron maiden is a kind of instrument of torture", "pln": ["(: cnet_isa_4aa249e61a (IsA iron_maiden instrument_of_torture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iron man is a kind of man", "pln": ["(: cnet_isa_57c14c8a3f (IsA iron_man man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iron mold is a kind of stain", "pln": ["(: cnet_isa_b487b6d49f (IsA iron_mold stain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iron ore is a kind of ore", "pln": ["(: cnet_isa_dd876965e9 (IsA iron_ore ore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iron perchloride is a kind of perchloride", "pln": ["(: cnet_isa_501451cd8e (IsA iron_perchloride perchloride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iron putty is a kind of cement", "pln": ["(: cnet_isa_de08f4560d (IsA iron_putty cement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iron trap is a kind of trap", "pln": ["(: cnet_isa_54165a53ef (IsA iron_trap trap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iron tree is a kind of angiospermous tree", "pln": ["(: cnet_isa_ca852666f0 (IsA iron_tree angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ironclad is a kind of warship", "pln": ["(: cnet_isa_2eca7f9ecb (IsA ironclad warship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ironing is a kind of work", "pln": ["(: cnet_isa_d421fe7674 (IsA ironing work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ironing is a kind of garment", "pln": ["(: cnet_isa_273934113f (IsA ironing garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ironing is a kind of white good", "pln": ["(: cnet_isa_8a4fd29698 (IsA ironing white_good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ironing board is a kind of board", "pln": ["(: cnet_isa_682a58ff3e (IsA ironing_board board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ironmonger is a kind of trader", "pln": ["(: cnet_isa_b801b2d285 (IsA ironmonger trader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ironmongery is a kind of merchandise", "pln": ["(: cnet_isa_9a1df1bbae (IsA ironmongery merchandise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ironside is a kind of man", "pln": ["(: cnet_isa_86e223aa40 (IsA ironside man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ironweed is a kind of herb", "pln": ["(: cnet_isa_c35449e049 (IsA ironweed herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ironwood is a kind of wood", "pln": ["(: cnet_isa_18e9e27bd7 (IsA ironwood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ironwork is a kind of work", "pln": ["(: cnet_isa_1c4d3b6b05 (IsA ironwork work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ironworker is a kind of maker", "pln": ["(: cnet_isa_28c5875504 (IsA ironworker maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ironwork is a kind of workplace", "pln": ["(: cnet_isa_db2ce53544 (IsA ironwork workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irony is a kind of incongruity", "pln": ["(: cnet_isa_d11336e5e9 (IsA irony incongruity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irony is a kind of trope", "pln": ["(: cnet_isa_0e5006ec34 (IsA irony trope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iroquoian is a kind of amerind", "pln": ["(: cnet_isa_17535b9a59 (IsA iroquoian amerind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iroquois is a kind of native american", "pln": ["(: cnet_isa_89ef287f87 (IsA iroquois native_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iroquois league is a kind of league", "pln": ["(: cnet_isa_49b85d7c17 (IsA iroquois_league league) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irradiation is a kind of generalization", "pln": ["(: cnet_isa_be7e756568 (IsA irradiation generalization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "irradiation is a kind of illusion", "pln": ["(: cnet_isa_f1e4b1d1c1 (IsA irradiation illusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irradiation is a kind of spread", "pln": ["(: cnet_isa_cefb3901f9 (IsA irradiation spread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irradiation is a kind of condition", "pln": ["(: cnet_isa_8dc94b6ee5 (IsA irradiation condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irrational hostility is a kind of bia", "pln": ["(: cnet_isa_46d8768931 (IsA irrational_hostility bia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irrational impulse is a kind of irrational motive", "pln": ["(: cnet_isa_146d0384be (IsA irrational_impulse irrational_motive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irrational motive is a kind of motivation", "pln": ["(: cnet_isa_b08d40b4c0 (IsA irrational_motive motivation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "irrational number is a kind of real number", "pln": ["(: cnet_isa_19bc4da42b (IsA irrational_number real_number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irrationality is a kind of insanity", "pln": ["(: cnet_isa_48dab53dcb (IsA irrationality insanity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irredenta is a kind of region", "pln": ["(: cnet_isa_7d6ce670b5 (IsA irredenta region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irredentism is a kind of doctrine", "pln": ["(: cnet_isa_229bcd8e66 (IsA irredentism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irredentist is a kind of advocate", "pln": ["(: cnet_isa_50e1daf6b6 (IsA irredentist advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "irregular is a kind of merchandise", "pln": ["(: cnet_isa_0701760947 (IsA irregular merchandise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irregularity is a kind of asymmetry", "pln": ["(: cnet_isa_2471d2016c (IsA irregularity asymmetry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irregularity is a kind of quality", "pln": ["(: cnet_isa_772eb66e1d (IsA irregularity quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irrelevance is a kind of unconnectedness", "pln": ["(: cnet_isa_1767c8fae6 (IsA irrelevance unconnectedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irreligionist is a kind of disbeliever", "pln": ["(: cnet_isa_8bda988eb7 (IsA irreligionist disbeliever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irreligiousness is a kind of impiety", "pln": ["(: cnet_isa_be30d53a1c (IsA irreligiousness impiety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irreplaceableness is a kind of unexchangeability", "pln": ["(: cnet_isa_50263a3d37 (IsA irreplaceableness unexchangeability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irrepressibility is a kind of liveliness", "pln": ["(: cnet_isa_f3e1c1125a (IsA irrepressibility liveliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irreproducibility is a kind of undependability", "pln": ["(: cnet_isa_6da2ba2052 (IsA irreproducibility undependability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irresistibility is a kind of power", "pln": ["(: cnet_isa_418e4f352e (IsA irresistibility power) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irresoluteness is a kind of trait", "pln": ["(: cnet_isa_e31ffe9854 (IsA irresoluteness trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irresponsibility is a kind of untrustworthiness", "pln": ["(: cnet_isa_1e4501ef3c (IsA irresponsibility untrustworthiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irreverence is a kind of evil", "pln": ["(: cnet_isa_d8559bb088 (IsA irreverence evil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irreverence is a kind of attitude", "pln": ["(: cnet_isa_834e5db7cf (IsA irreverence attitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irreversibility is a kind of changelessness", "pln": ["(: cnet_isa_1b633fd168 (IsA irreversibility changelessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irreversible process is a kind of process", "pln": ["(: cnet_isa_aab317b665 (IsA irreversible_process process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irrigation is a kind of provision", "pln": ["(: cnet_isa_e53015dbda (IsA irrigation provision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irrigation is a kind of medical care", "pln": ["(: cnet_isa_0ccd8f0b2e (IsA irrigation medical_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irrigation ditch is a kind of ditch", "pln": ["(: cnet_isa_e26e5c8098 (IsA irrigation_ditch ditch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irritability is a kind of ill humor", "pln": ["(: cnet_isa_820dbd0273 (IsA irritability ill_humor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irritable bowel syndrome is a kind of colitis", "pln": ["(: cnet_isa_90892de47c (IsA irritable_bowel_syndrome colitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "irritant is a kind of annoyance", "pln": ["(: cnet_isa_72f33485b2 (IsA irritant annoyance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irritation is a kind of abnormality", "pln": ["(: cnet_isa_99efa3fc5b (IsA irritation abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irritation is a kind of sensitization", "pln": ["(: cnet_isa_693276da65 (IsA irritation sensitization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irritation is a kind of psychological state", "pln": ["(: cnet_isa_b0dbe48a58 (IsA irritation psychological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irruption is a kind of entrance", "pln": ["(: cnet_isa_f9e0b1e04f (IsA irruption entrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irruption is a kind of population growth", "pln": ["(: cnet_isa_33262022c3 (IsA irruption population_growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irula is a kind of south dravidian", "pln": ["(: cnet_isa_d024d4905b (IsA irula south_dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "irvingia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_5b07903323 (IsA irvingia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isa is a kind of relation", "pln": ["(: cnet_isa_2f28a0a4f9 (IsA isa relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isatis is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_bdc433d9b1 (IsA isatis dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ischemia is a kind of anemia", "pln": ["(: cnet_isa_22bd0ab55b (IsA ischemia anemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ischemic anoxia is a kind of anoxia", "pln": ["(: cnet_isa_6fa70cecb8 (IsA ischemic_anoxia anoxia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ischemic hypoxia is a kind of hypoxia", "pln": ["(: cnet_isa_a85cd554f6 (IsA ischemic_hypoxia hypoxia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ischemic stroke is a kind of ischemia", "pln": ["(: cnet_isa_0d055db063 (IsA ischemic_stroke ischemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ischemic stroke is a kind of stroke", "pln": ["(: cnet_isa_03c83cc5f1 (IsA ischemic_stroke stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ischigualastia is a kind of reptile genus", "pln": ["(: cnet_isa_500c5c0b7a (IsA ischigualastia reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ischium is a kind of bone", "pln": ["(: cnet_isa_081e1f8a6f (IsA ischium bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "islam is a kind of religion", "pln": ["(: cnet_isa_444fb49461 (IsA islam religion) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "islam is a kind of monotheism", "pln": ["(: cnet_isa_0cc3dd177b (IsA islam monotheism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "islam is a kind of civilization", "pln": ["(: cnet_isa_f86282e04d (IsA islam civilization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "islamic calendar is a kind of lunar calendar", "pln": ["(: cnet_isa_d193d4e3d8 (IsA islamic_calendar lunar_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "islamic calendar month is a kind of calendar month", "pln": ["(: cnet_isa_ac27d59aed (IsA islamic_calendar_month calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "islamism is a kind of religious movement", "pln": ["(: cnet_isa_675c38c959 (IsA islamism religious_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "islamist is a kind of moslem", "pln": ["(: cnet_isa_030b0c511a (IsA islamist moslem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "islamist is a kind of scholar", "pln": ["(: cnet_isa_30baf33508 (IsA islamist scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "islamophobia is a kind of bia", "pln": ["(: cnet_isa_34099d67ac (IsA islamophobia bia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "island is a kind of body of land", "pln": ["(: cnet_isa_54190b5328 (IsA island body_of_land) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "island is a kind of completely", "pln": ["(: cnet_isa_801df94192 (IsA island completely) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "island is a kind of land", "pln": ["(: cnet_isa_9d8d443e5f (IsA island land) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "island is a kind of land mass", "pln": ["(: cnet_isa_14fdb3684a (IsA island land_mass) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "island is a kind of piece of land", "pln": ["(: cnet_isa_546dd05e17 (IsA island piece_of_land) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "island is a kind of small body of land", "pln": ["(: cnet_isa_e69e7e7ddb (IsA island small_body_of_land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "island is a kind of small land mass", "pln": ["(: cnet_isa_4f8c2a80ee (IsA island small_land_mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "island is a kind of zone", "pln": ["(: cnet_isa_9fb8b73401 (IsA island zone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "island of guernsey is a kind of channel island", "pln": ["(: cnet_isa_6414f53582 (IsA island_of_guernsey channel_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "island of jersey is a kind of channel island", "pln": ["(: cnet_isa_74f5c5eebb (IsA island_of_jersey channel_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "islander is a kind of inhabitant", "pln": ["(: cnet_isa_dea24e7a1d (IsA islander inhabitant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "island of langerhan is a kind of endocrine gland", "pln": ["(: cnet_isa_ff6e4d4f7d (IsA island_of_langerhan endocrine_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ismailian is a kind of disciple", "pln": ["(: cnet_isa_097d3a14aa (IsA ismailian disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ismailism is a kind of shiism", "pln": ["(: cnet_isa_a3016976ef (IsA ismailism shiism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isoagglutination is a kind of agglutination", "pln": ["(: cnet_isa_987b78914f (IsA isoagglutination agglutination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isoagglutinin is a kind of agglutinin", "pln": ["(: cnet_isa_a9a8cd8aa2 (IsA isoagglutinin agglutinin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isoagglutinogen is a kind of agglutinogen", "pln": ["(: cnet_isa_22741ff3f7 (IsA isoagglutinogen agglutinogen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isoantibody is a kind of antibody", "pln": ["(: cnet_isa_d5f50a1333 (IsA isoantibody antibody) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isobar is a kind of isogram", "pln": ["(: cnet_isa_a3ef32477a (IsA isobar isogram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isobutylene is a kind of butylene", "pln": ["(: cnet_isa_ccdfe15e9b (IsA isobutylene butylene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isochrone is a kind of isogram", "pln": ["(: cnet_isa_318913eefb (IsA isochrone isogram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "isoclinic line is a kind of isogram", "pln": ["(: cnet_isa_30a1e4abd3 (IsA isoclinic_line isogram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isocyanate is a kind of salt", "pln": ["(: cnet_isa_33b60ca746 (IsA isocyanate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "isocyanic acid is a kind of acid", "pln": ["(: cnet_isa_ad63724c43 (IsA isocyanic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isoetaceae is a kind of fern family", "pln": ["(: cnet_isa_02c8cd1aa3 (IsA isoetaceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isoetale is a kind of plant order", "pln": ["(: cnet_isa_8c4b5de942 (IsA isoetale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isoete is a kind of fern genus", "pln": ["(: cnet_isa_7c245950bd (IsA isoete fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isoflurane is a kind of inhalation anesthetic", "pln": ["(: cnet_isa_ff25b59efe (IsA isoflurane inhalation_anesthetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isogamete is a kind of gamete", "pln": ["(: cnet_isa_ea0c397db1 (IsA isogamete gamete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isogamy is a kind of sexual reproduction", "pln": ["(: cnet_isa_abd63f49ed (IsA isogamy sexual_reproduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isogon is a kind of polygon", "pln": ["(: cnet_isa_085f8306b5 (IsA isogon polygon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isogonic line is a kind of line", "pln": ["(: cnet_isa_42a4810801 (IsA isogonic_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isogram is a kind of line", "pln": ["(: cnet_isa_5859288937 (IsA isogram line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isohel is a kind of isogram", "pln": ["(: cnet_isa_0fbcd8c152 (IsA isohel isogram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isolation is a kind of non engagement", "pln": ["(: cnet_isa_34cfc95bbc (IsA isolation non_engagement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isolation is a kind of separation", "pln": ["(: cnet_isa_98e969f523 (IsA isolation separation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isolation is a kind of alienation", "pln": ["(: cnet_isa_f6a4a434b2 (IsA isolation alienation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isolation is a kind of defense mechanism", "pln": ["(: cnet_isa_7be86cea86 (IsA isolation defense_mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isolationism is a kind of foreign policy", "pln": ["(: cnet_isa_6c1f06e7ae (IsA isolationism foreign_policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isolationist is a kind of advocate", "pln": ["(: cnet_isa_0247437902 (IsA isolationist advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isoleucine is a kind of essential amino acid", "pln": ["(: cnet_isa_187c669ad2 (IsA isoleucine essential_amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isomer is a kind of compound", "pln": ["(: cnet_isa_1a024253fd (IsA isomer compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isomerase is a kind of enzyme", "pln": ["(: cnet_isa_9a8619eaad (IsA isomerase enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isomerism is a kind of state", "pln": ["(: cnet_isa_ad679144b0 (IsA isomerism state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isomerization is a kind of conversion", "pln": ["(: cnet_isa_a2f5cd83b4 (IsA isomerization conversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isometric line is a kind of line", "pln": ["(: cnet_isa_1a6bd6e148 (IsA isometric_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isometric is a kind of exercise", "pln": ["(: cnet_isa_13787ec7e6 (IsA isometric exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isometropia is a kind of eye condition", "pln": ["(: cnet_isa_5f9cb8b5d4 (IsA isometropia eye_condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isometry is a kind of elevation", "pln": ["(: cnet_isa_e69a77bca4 (IsA isometry elevation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isometry is a kind of equality", "pln": ["(: cnet_isa_b9b05cfe75 (IsA isometry equality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isometry is a kind of growth rate", "pln": ["(: cnet_isa_1cd21214cf (IsA isometry growth_rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "isometry is a kind of mapping", "pln": ["(: cnet_isa_0e5991e814 (IsA isometry mapping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isomorphism is a kind of similarity", "pln": ["(: cnet_isa_0845daed0f (IsA isomorphism similarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "isopod is a kind of malacostracan crustacean", "pln": ["(: cnet_isa_fd832d4579 (IsA isopod malacostracan_crustacean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isopoda is a kind of animal order", "pln": ["(: cnet_isa_32f1c87d9b (IsA isopoda animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isopropyl alcohol is a kind of alcohol", "pln": ["(: cnet_isa_459ae004de (IsA isopropyl_alcohol alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "isoptera is a kind of animal order", "pln": ["(: cnet_isa_c370eca98d (IsA isoptera animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isopyrum is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_2c52b333ab (IsA isopyrum magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isoscele triangle is a kind of triangle", "pln": ["(: cnet_isa_9363b18662 (IsA isoscele_triangle triangle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isospondyli is a kind of animal order", "pln": ["(: cnet_isa_f091d8106b (IsA isospondyli animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isostasy is a kind of equilibrium", "pln": ["(: cnet_isa_8f36d619ac (IsA isostasy equilibrium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "isotherm is a kind of isogram", "pln": ["(: cnet_isa_ff56e4da4c (IsA isotherm isogram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isothiocyanate is a kind of chemical irritant", "pln": ["(: cnet_isa_cbe2c423c7 (IsA isothiocyanate chemical_irritant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isotonic exercise is a kind of exercise", "pln": ["(: cnet_isa_e909a8261e (IsA isotonic_exercise exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isotonic solution is a kind of solution", "pln": ["(: cnet_isa_94530abf53 (IsA isotonic_solution solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isotope is a kind of atom", "pln": ["(: cnet_isa_3a36beab42 (IsA isotope atom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isotropy is a kind of property", "pln": ["(: cnet_isa_b026fdf7f0 (IsA isotropy property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "israel is a kind of country", "pln": ["(: cnet_isa_61f55f4860 (IsA israel country) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "israel is a kind of democracy", "pln": ["(: cnet_isa_f7d37a5241 (IsA israel democracy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "israeli is a kind of asiatic", "pln": ["(: cnet_isa_dad8acb8d5 (IsA israeli asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "israeli defense force is a kind of military unit", "pln": ["(: cnet_isa_ce7e5f948f (IsA israeli_defense_force military_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "israeli monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_b1f7a15ef6 (IsA israeli_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "israelite is a kind of asiatic", "pln": ["(: cnet_isa_2da5872b94 (IsA israelite asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "israelite is a kind of person", "pln": ["(: cnet_isa_8b2996b0fb (IsA israelite person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "issue is a kind of printing", "pln": ["(: cnet_isa_c3c4818949 (IsA issue printing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "issue is a kind of provision", "pln": ["(: cnet_isa_8e1507238c (IsA issue provision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "issue is a kind of content", "pln": ["(: cnet_isa_4cb4d43d94 (IsA issue content) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "issue is a kind of periodical", "pln": ["(: cnet_isa_0fb541957c (IsA issue periodical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "issue is a kind of store", "pln": ["(: cnet_isa_f0ed770598 (IsA issue store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "issuer is a kind of institution", "pln": ["(: cnet_isa_706e67ce2e (IsA issuer institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isthmian game is a kind of agon", "pln": ["(: cnet_isa_506dc38ccc (IsA isthmian_game agon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isthmus is a kind of tissue", "pln": ["(: cnet_isa_d21723b2db (IsA isthmus tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isthmus is a kind of land", "pln": ["(: cnet_isa_37e4b432b6 (IsA isthmus land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "istiophoridae is a kind of fish family", "pln": ["(: cnet_isa_4593fc9bca (IsA istiophoridae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "istiophorus is a kind of fish genus", "pln": ["(: cnet_isa_83f438429b (IsA istiophorus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "isuridae is a kind of fish family", "pln": ["(: cnet_isa_f949081b3a (IsA isuridae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "isurus is a kind of fish genus", "pln": ["(: cnet_isa_13712cfdea (IsA isurus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "itaconic acid is a kind of acid", "pln": ["(: cnet_isa_869712ebb2 (IsA itaconic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "italian is a kind of romance", "pln": ["(: cnet_isa_803abb9d70 (IsA italian romance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "italian is a kind of european", "pln": ["(: cnet_isa_259cf071f6 (IsA italian european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "italian bee is a kind of honeybee", "pln": ["(: cnet_isa_69bdab577e (IsA italian_bee honeybee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "italian bread is a kind of white bread", "pln": ["(: cnet_isa_06163b99e4 (IsA italian_bread white_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "italian cypress is a kind of cypress", "pln": ["(: cnet_isa_7e47ae1def (IsA italian_cypress cypress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "italian dressing is a kind of dressing", "pln": ["(: cnet_isa_6bf43b0253 (IsA italian_dressing dressing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "italian greyhound is a kind of greyhound", "pln": ["(: cnet_isa_243473b342 (IsA italian_greyhound greyhound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "italian honeysuckle is a kind of honeysuckle", "pln": ["(: cnet_isa_5fad110c83 (IsA italian_honeysuckle honeysuckle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "italian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_e37e0d5722 (IsA italian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "italian parsley is a kind of parsley", "pln": ["(: cnet_isa_eac9386c9f (IsA italian_parsley parsley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "italian region is a kind of state", "pln": ["(: cnet_isa_43336a1034 (IsA italian_region state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "italian ryegrass is a kind of rye grass", "pln": ["(: cnet_isa_e23afaa08c (IsA italian_ryegrass rye_grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "italic is a kind of font", "pln": ["(: cnet_isa_09c26a4159 (IsA italic font) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "italic is a kind of indo european", "pln": ["(: cnet_isa_daa03d156f (IsA italic indo_european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "italic is a kind of longhand", "pln": ["(: cnet_isa_1053c82b1f (IsA italic longhand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "italy is a kind of country", "pln": ["(: cnet_isa_b0f0f3d3b7 (IsA italy country) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "italy is a kind of country in europe", "pln": ["(: cnet_isa_cb5445a876 (IsA italy country_in_europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "itch is a kind of cutaneous sensation", "pln": ["(: cnet_isa_98b6936204 (IsA itch cutaneous_sensation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "itch mite is a kind of mite", "pln": ["(: cnet_isa_8ab0df2a9e (IsA itch_mite mite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "item is a kind of whole", "pln": ["(: cnet_isa_2e898ee3e0 (IsA item whole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "item is a kind of part", "pln": ["(: cnet_isa_a0323516dd (IsA item part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iteration is a kind of repetition", "pln": ["(: cnet_isa_0438d37432 (IsA iteration repetition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "iteration is a kind of process", "pln": ["(: cnet_isa_7e4b0e84ad (IsA iteration process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iterative aspect is a kind of aspect", "pln": ["(: cnet_isa_f93a84c993 (IsA iterative_aspect aspect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ithiel town is a kind of architect", "pln": ["(: cnet_isa_d7daa1deee (IsA ithiel_town architect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "itinerant is a kind of laborer", "pln": ["(: cnet_isa_16680f4b99 (IsA itinerant laborer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "itineration is a kind of tour", "pln": ["(: cnet_isa_fe79506ea7 (IsA itineration tour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ivory is a kind of dentine", "pln": ["(: cnet_isa_e159cdebb9 (IsA ivory dentine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ivory black is a kind of pigment", "pln": ["(: cnet_isa_52286d6c23 (IsA ivory_black pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ivory coast franc is a kind of franc", "pln": ["(: cnet_isa_92a5775e01 (IsA ivory_coast_franc franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ivory gull is a kind of gull", "pln": ["(: cnet_isa_fc529b2d69 (IsA ivory_gull gull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ivory nut is a kind of seed", "pln": ["(: cnet_isa_47a072ea48 (IsA ivory_nut seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ivory palm is a kind of feather palm", "pln": ["(: cnet_isa_213d3dc1a5 (IsA ivory_palm feather_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ivory tower is a kind of cognitive state", "pln": ["(: cnet_isa_37baa4093a (IsA ivory_tower cognitive_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ivory tree is a kind of tree", "pln": ["(: cnet_isa_fa9c02a0fc (IsA ivory_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ivorybill is a kind of woodpecker", "pln": ["(: cnet_isa_9afcd52cf5 (IsA ivorybill woodpecker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ivy is a kind of vine", "pln": ["(: cnet_isa_f57c431fb7 (IsA ivy vine) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ivy geranium is a kind of geranium", "pln": ["(: cnet_isa_cf6e6a8722 (IsA ivy_geranium geranium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ivy league is a kind of league", "pln": ["(: cnet_isa_69b95f0d26 (IsA ivy_league league) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ivy leaguer is a kind of alumnus", "pln": ["(: cnet_isa_1adac5d512 (IsA ivy_leaguer alumnus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ivy leaguer is a kind of student", "pln": ["(: cnet_isa_396cec2855 (IsA ivy_leaguer student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ixia is a kind of liliid monocot genus", "pln": ["(: cnet_isa_1148ef6dd8 (IsA ixia liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ixobrychus is a kind of bird genus", "pln": ["(: cnet_isa_4ac843c0d2 (IsA ixobrychus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ixode is a kind of arthropod genus", "pln": ["(: cnet_isa_4b72cd5f8f (IsA ixode arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ixode dammini is a kind of hard tick", "pln": ["(: cnet_isa_b512a476eb (IsA ixode_dammini hard_tick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ixode dentatus is a kind of hard tick", "pln": ["(: cnet_isa_6f830c13a0 (IsA ixode_dentatus hard_tick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ixode neotomae is a kind of hard tick", "pln": ["(: cnet_isa_fe4e68d244 (IsA ixode_neotomae hard_tick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ixode pacificus is a kind of hard tick", "pln": ["(: cnet_isa_d47dda04a7 (IsA ixode_pacificus hard_tick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ixode persulcatus is a kind of hard tick", "pln": ["(: cnet_isa_729a68c2ad (IsA ixode_persulcatus hard_tick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ixode scapularis is a kind of hard tick", "pln": ["(: cnet_isa_04c06c9814 (IsA ixode_scapularis hard_tick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ixode spinipalpis is a kind of hard tick", "pln": ["(: cnet_isa_98833a3041 (IsA ixode_spinipalpis hard_tick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ixodidae is a kind of arthropod family", "pln": ["(: cnet_isa_3d6f0c07c5 (IsA ixodidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "iyar is a kind of jewish calendar month", "pln": ["(: cnet_isa_5cf7d6ed28 (IsA iyar jewish_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "izar is a kind of overgarment", "pln": ["(: cnet_isa_bba94bcd0d (IsA izar overgarment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "j is a kind of letter", "pln": ["(: cnet_isa_30724a8055 (IsA j letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "j particle is a kind of meson", "pln": ["(: cnet_isa_32123ff2c3 (IsA j_particle meson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jab is a kind of gesture", "pln": ["(: cnet_isa_2f71accff1 (IsA jab gesture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jab is a kind of punch", "pln": ["(: cnet_isa_d51fa28ba6 (IsA jab punch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jabber is a kind of gibberish", "pln": ["(: cnet_isa_768790b712 (IsA jabber gibberish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jabberwocky is a kind of nonsense", "pln": ["(: cnet_isa_c02d6e7362 (IsA jabberwocky nonsense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jabiru is a kind of stork", "pln": ["(: cnet_isa_661d543f80 (IsA jabiru stork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jabot is a kind of frill", "pln": ["(: cnet_isa_0d9eb32e9f (IsA jabot frill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jaboticaba is a kind of edible fruit", "pln": ["(: cnet_isa_93ec1a812f (IsA jaboticaba edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jaboticaba is a kind of fruit tree", "pln": ["(: cnet_isa_17bd1be5b2 (IsA jaboticaba fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jacamar is a kind of piciform bird", "pln": ["(: cnet_isa_8a4b78363c (IsA jacamar piciform_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jack is a kind of boy s name", "pln": ["(: cnet_isa_68f1f3592d (IsA jack boy_s_name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jack is a kind of lifting device", "pln": ["(: cnet_isa_302b30e045 (IsA jack lifting_device) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jack is a kind of nickname for john", "pln": ["(: cnet_isa_fc49ef06ce (IsA jack nickname_for_john) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jack is a kind of ass", "pln": ["(: cnet_isa_1f613b2699 (IsA jack ass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jack is a kind of carangid fish", "pln": ["(: cnet_isa_c72b4f8cd8 (IsA jack carangid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jack is a kind of ball", "pln": ["(: cnet_isa_fb96511421 (IsA jack ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jack is a kind of electrical device", "pln": ["(: cnet_isa_34193c88de (IsA jack electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jack is a kind of face card", "pln": ["(: cnet_isa_1651ada688 (IsA jack face_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jack is a kind of flag", "pln": ["(: cnet_isa_42849ea59d (IsA jack flag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jack is a kind of tool", "pln": ["(: cnet_isa_173a2c99cb (IsA jack tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jack is a kind of small indefinite quantity", "pln": ["(: cnet_isa_ede5a6ff6e (IsA jack small_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jack bean is a kind of vine", "pln": ["(: cnet_isa_1ec165d60d (IsA jack_bean vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jack in box is a kind of plaything", "pln": ["(: cnet_isa_2db3829852 (IsA jack_in_box plaything) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jack in pulpit is a kind of arum", "pln": ["(: cnet_isa_ee8effef9a (IsA jack_in_pulpit arum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jack o lantern is a kind of lantern", "pln": ["(: cnet_isa_1dba53142a (IsA jack_o_lantern lantern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jack o lantern fungus is a kind of agaric", "pln": ["(: cnet_isa_cd7b9a2bb0 (IsA jack_o_lantern_fungus agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jack oak is a kind of oak", "pln": ["(: cnet_isa_3d3a7b77a7 (IsA jack_oak oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jack of all trade is a kind of adult", "pln": ["(: cnet_isa_c0e47e18a8 (IsA jack_of_all_trade adult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jack pine is a kind of pine", "pln": ["(: cnet_isa_54c4c8b6f9 (IsA jack_pine pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jack plane is a kind of plane", "pln": ["(: cnet_isa_81136c6080 (IsA jack_plane plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jackal is a kind of canine", "pln": ["(: cnet_isa_0f46137b68 (IsA jackal canine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jackass bat is a kind of vespertilian bat", "pln": ["(: cnet_isa_c5a9d6315f (IsA jackass_bat vespertilian_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jackass penguin is a kind of penguin", "pln": ["(: cnet_isa_d54c074a66 (IsA jackass_penguin penguin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jackdaw is a kind of corvine bird", "pln": ["(: cnet_isa_eacef43f2e (IsA jackdaw corvine_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jacket is a kind of coat", "pln": ["(: cnet_isa_9640a0f13b (IsA jacket coat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jacket is a kind of shell", "pln": ["(: cnet_isa_b0b5b7ec6b (IsA jacket shell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jacket is a kind of wrapping", "pln": ["(: cnet_isa_3c2e8474a6 (IsA jacket wrapping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jacket is a kind of peel", "pln": ["(: cnet_isa_134900cf69 (IsA jacket peel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jacket potato is a kind of baked potato", "pln": ["(: cnet_isa_c95f99ee20 (IsA jacket_potato baked_potato) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jackfruit is a kind of edible fruit", "pln": ["(: cnet_isa_9afd9aa9fc (IsA jackfruit edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jackfruit is a kind of fruit tree", "pln": ["(: cnet_isa_e63474b775 (IsA jackfruit fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "jacks is a kind of child s game", "pln": ["(: cnet_isa_d3aad30276 (IsA jacks child_s_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "jacks is a kind of game equipment", "pln": ["(: cnet_isa_b3009b7aec (IsA jacks game_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jacking off is a kind of masturbation", "pln": ["(: cnet_isa_4dbfd65cea (IsA jacking_off masturbation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jackknife is a kind of dive", "pln": ["(: cnet_isa_bf1a53b366 (IsA jackknife dive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jackknife fish is a kind of drum", "pln": ["(: cnet_isa_59ff04f75c (IsA jackknife_fish drum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jacklight is a kind of light", "pln": ["(: cnet_isa_30364c85bf (IsA jacklight light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jackpot is a kind of prize", "pln": ["(: cnet_isa_7037b21c09 (IsA jackpot prize) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jackrabbit is a kind of hare", "pln": ["(: cnet_isa_0fd50573dc (IsA jackrabbit hare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jack is a kind of traditional children s game", "pln": ["(: cnet_isa_f6a462e792 (IsA jack traditional_children_s_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jack is a kind of child s game", "pln": ["(: cnet_isa_3946989935 (IsA jack child_s_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jack is a kind of game equipment", "pln": ["(: cnet_isa_c06b074266 (IsA jack game_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jackscrew is a kind of jack", "pln": ["(: cnet_isa_71615b6cfe (IsA jackscrew jack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jacksmelt is a kind of silverside", "pln": ["(: cnet_isa_4228613b4f (IsA jacksmelt silverside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jacksnipe is a kind of snipe", "pln": ["(: cnet_isa_01933149ba (IsA jacksnipe snipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jacksonia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_c378d8ad9e (IsA jacksonia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jacksonian is a kind of follower", "pln": ["(: cnet_isa_5bed491c02 (IsA jacksonian follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jacksonian epilepsy is a kind of cortical epilepsy", "pln": ["(: cnet_isa_50ea5efa48 (IsA jacksonian_epilepsy cortical_epilepsy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jackstraw is a kind of strip", "pln": ["(: cnet_isa_6ba0d49bf5 (IsA jackstraw strip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jackstraw is a kind of child s game", "pln": ["(: cnet_isa_5c39ab085d (IsA jackstraw child_s_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jacob s ladder is a kind of polemonium", "pln": ["(: cnet_isa_33fb7d6aae (IsA jacob_s_ladder polemonium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jacob s ladder is a kind of ladder", "pln": ["(: cnet_isa_c2f3b131aa (IsA jacob_s_ladder ladder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jacob s rod is a kind of asphodel", "pln": ["(: cnet_isa_cc7831bb8b (IsA jacob_s_rod asphodel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jacob is a kind of patriarch", "pln": ["(: cnet_isa_6ff17f7be7 (IsA jacob patriarch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jacobean is a kind of englishman", "pln": ["(: cnet_isa_4cee25cad2 (IsA jacobean englishman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jacobean lily is a kind of amaryllis", "pln": ["(: cnet_isa_37e44cf9d7 (IsA jacobean_lily amaryllis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jacobin is a kind of terrorist", "pln": ["(: cnet_isa_4ea58a19e1 (IsA jacobin terrorist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jacobinism is a kind of radicalism", "pln": ["(: cnet_isa_3dbb3b7072 (IsA jacobinism radicalism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jacobite is a kind of supporter", "pln": ["(: cnet_isa_a5da011f54 (IsA jacobite supporter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jaconet is a kind of fabric", "pln": ["(: cnet_isa_adbe6a1681 (IsA jaconet fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jacquard is a kind of fabric", "pln": ["(: cnet_isa_3540e32b34 (IsA jacquard fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jacquard loom is a kind of loom", "pln": ["(: cnet_isa_b0b4747353 (IsA jacquard_loom loom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jacquemier s sign is a kind of symptom", "pln": ["(: cnet_isa_bd18857519 (IsA jacquemier_s_sign symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jacquinia is a kind of dicot genus", "pln": ["(: cnet_isa_c84dc8cdfc (IsA jacquinia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jactitation is a kind of lie", "pln": ["(: cnet_isa_50865a2fca (IsA jactitation lie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jactitation is a kind of restlessness", "pln": ["(: cnet_isa_c3bfdaba7e (IsA jactitation restlessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jaculus is a kind of mammal genus", "pln": ["(: cnet_isa_a3bfc95155 (IsA jaculus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jaculus jaculus is a kind of jerboa", "pln": ["(: cnet_isa_9ac1df908d (IsA jaculus_jaculus jerboa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jade is a kind of opaque gem", "pln": ["(: cnet_isa_8719d36d6a (IsA jade opaque_gem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jade green is a kind of green", "pln": ["(: cnet_isa_aeb8904f96 (IsA jade_green green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jade vine is a kind of liana", "pln": ["(: cnet_isa_f0731e9544 (IsA jade_vine liana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jadeite is a kind of mineral", "pln": ["(: cnet_isa_6f2f31f8b7 (IsA jadeite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jaeger is a kind of coastal diving bird", "pln": ["(: cnet_isa_e8343a1752 (IsA jaeger coastal_diving_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jaffa orange is a kind of sweet orange", "pln": ["(: cnet_isa_d85512430c (IsA jaffa_orange sweet_orange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jafnea semitosta is a kind of discomycete", "pln": ["(: cnet_isa_83b5d5a389 (IsA jafnea_semitosta discomycete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jag is a kind of intemperance", "pln": ["(: cnet_isa_fcfed70a2b (IsA jag intemperance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jag is a kind of flap", "pln": ["(: cnet_isa_eee2567d11 (IsA jag flap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jag is a kind of slit", "pln": ["(: cnet_isa_9513cb3eec (IsA jag slit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jag is a kind of projection", "pln": ["(: cnet_isa_7ffedee3a0 (IsA jag projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jaggedness is a kind of unevenness", "pln": ["(: cnet_isa_56e82ac8e3 (IsA jaggedness unevenness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jaggery is a kind of carbohydrate", "pln": ["(: cnet_isa_0fca0bdb51 (IsA jaggery carbohydrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jaguar is a kind of big cat", "pln": ["(: cnet_isa_9f2efde651 (IsA jaguar big_cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jaguarundi is a kind of wildcat", "pln": ["(: cnet_isa_df77859341 (IsA jaguarundi wildcat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jai alai is a kind of court game", "pln": ["(: cnet_isa_2312660c3f (IsA jai_alai court_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jail is a kind of correctional institution", "pln": ["(: cnet_isa_2dd312111a (IsA jail correctional_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jail bird is a kind of criminal", "pln": ["(: cnet_isa_c74f639d41 (IsA jail_bird criminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jail delivery is a kind of liberation", "pln": ["(: cnet_isa_4a1e5d613a (IsA jail_delivery liberation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jainism is a kind of religion", "pln": ["(: cnet_isa_732786c7bf (IsA jainism religion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jainism is a kind of sect", "pln": ["(: cnet_isa_4df4e2658c (IsA jainism sect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jainist is a kind of disciple", "pln": ["(: cnet_isa_bdac4141f7 (IsA jainist disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jalapeno is a kind of chili", "pln": ["(: cnet_isa_8e914760d1 (IsA jalapeno chili) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "jambos is a kind of dicot genus", "pln": ["(: cnet_isa_52cbcdacad (IsA jambos dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jalousie is a kind of shutter", "pln": ["(: cnet_isa_0f319e4bc6 (IsA jalousie shutter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jam is a kind of spread", "pln": ["(: cnet_isa_ffa042551f (IsA jam spread) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jam is a kind of conserve", "pln": ["(: cnet_isa_17669adeb3 (IsA jam conserve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jam session is a kind of musical performance", "pln": ["(: cnet_isa_496886a826 (IsA jam_session musical_performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jamaica dogwood is a kind of tree", "pln": ["(: cnet_isa_4f3125e054 (IsA jamaica_dogwood tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jamaica honeysuckle is a kind of passionflower", "pln": ["(: cnet_isa_d9cde82edf (IsA jamaica_honeysuckle passionflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jamaica quassia is a kind of bitterwood tree", "pln": ["(: cnet_isa_48fef1d0c1 (IsA jamaica_quassia bitterwood_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jamaica quassia is a kind of quassia", "pln": ["(: cnet_isa_8b8d6232e5 (IsA jamaica_quassia quassia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jamaica rum is a kind of rum", "pln": ["(: cnet_isa_c70974bf96 (IsA jamaica_rum rum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jamaican is a kind of west indian", "pln": ["(: cnet_isa_4ebd4d3635 (IsA jamaican west_indian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jamaican cherry is a kind of tree", "pln": ["(: cnet_isa_f64597c15d (IsA jamaican_cherry tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jamaican dollar is a kind of dollar", "pln": ["(: cnet_isa_7410b5993a (IsA jamaican_dollar dollar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jamais vu is a kind of confusion", "pln": ["(: cnet_isa_0bc80096ac (IsA jamais_vu confusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jamb is a kind of upright", "pln": ["(: cnet_isa_d01fc0cfd2 (IsA jamb upright) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jambalaya is a kind of dish", "pln": ["(: cnet_isa_a6b4f41c12 (IsA jambalaya dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jambo is a kind of dicot genus", "pln": ["(: cnet_isa_7de984ea72 (IsA jambo dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jame bond is a kind of fictional spy", "pln": ["(: cnet_isa_e98138a0a2 (IsA jame_bond fictional_spy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jame bond is a kind of spy", "pln": ["(: cnet_isa_5c0a0d40b4 (IsA jame_bond spy) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jamesonia is a kind of fern genus", "pln": ["(: cnet_isa_878dd62ff1 (IsA jamesonia fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jammer is a kind of transmitter", "pln": ["(: cnet_isa_21be7c797d (IsA jammer transmitter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jamming is a kind of electronic countermeasure", "pln": ["(: cnet_isa_a4981b2c17 (IsA jamming electronic_countermeasure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jampan is a kind of sedan", "pln": ["(: cnet_isa_6661b8af5e (IsA jampan sedan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jampot is a kind of jar", "pln": ["(: cnet_isa_be1e07048d (IsA jampot jar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jane doe is a kind of party", "pln": ["(: cnet_isa_5f4c1485d0 (IsA jane_doe party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "janissary is a kind of follower", "pln": ["(: cnet_isa_54b15c01cf (IsA janissary follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "janissary is a kind of soldier", "pln": ["(: cnet_isa_5bc220cc31 (IsA janissary soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "janitor is a kind of custodian", "pln": ["(: cnet_isa_483bf2dcdb (IsA janitor custodian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jansenism is a kind of theological doctrine", "pln": ["(: cnet_isa_5284c89460 (IsA jansenism theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jansenist is a kind of advocate", "pln": ["(: cnet_isa_a45a732fcb (IsA jansenist advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "january is a kind of gregorian calendar month", "pln": ["(: cnet_isa_5d4eb02c04 (IsA january gregorian_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japan is a kind of country", "pln": ["(: cnet_isa_af744802c1 (IsA japan country) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japan is a kind of island", "pln": ["(: cnet_isa_27457e36dd (IsA japan island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japan is a kind of lacquer", "pln": ["(: cnet_isa_8a5e456823 (IsA japan lacquer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "japan is a kind of lacquerware", "pln": ["(: cnet_isa_300347e2ec (IsA japan lacquerware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japan allspice is a kind of shrub", "pln": ["(: cnet_isa_a2d3ef2e8b (IsA japan_allspice shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japan current is a kind of ocean current", "pln": ["(: cnet_isa_e5052f46d0 (IsA japan_current ocean_current) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japan wax is a kind of wax", "pln": ["(: cnet_isa_e75a505cfb (IsA japan_wax wax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese is a kind of human language", "pln": ["(: cnet_isa_8bb30a3687 (IsA japanese human_language) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese is a kind of altaic", "pln": ["(: cnet_isa_881a80a7b8 (IsA japanese altaic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese angelica tree is a kind of shrub", "pln": ["(: cnet_isa_9bc9ccce61 (IsA japanese_angelica_tree shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese apricot is a kind of apricot", "pln": ["(: cnet_isa_7e60a452f6 (IsA japanese_apricot apricot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese banana is a kind of banana", "pln": ["(: cnet_isa_b39f46b980 (IsA japanese_banana banana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese barberry is a kind of barberry", "pln": ["(: cnet_isa_fef81717f2 (IsA japanese_barberry barberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese beech is a kind of beech", "pln": ["(: cnet_isa_43fc6e2a81 (IsA japanese_beech beech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese beetle is a kind of scarabaeid beetle", "pln": ["(: cnet_isa_0ba685265c (IsA japanese_beetle scarabaeid_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "japanese bittersweet is a kind of vine", "pln": ["(: cnet_isa_3cdad0eeac (IsA japanese_bittersweet vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese black pine is a kind of pine", "pln": ["(: cnet_isa_27c2bf0e16 (IsA japanese_black_pine pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese brome is a kind of brome", "pln": ["(: cnet_isa_b1a3eedb5c (IsA japanese_brome brome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese cedar is a kind of cedar", "pln": ["(: cnet_isa_330e04a86e (IsA japanese_cedar cedar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese chestnut is a kind of chestnut", "pln": ["(: cnet_isa_1958fa6211 (IsA japanese_chestnut chestnut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese clover is a kind of bush clover", "pln": ["(: cnet_isa_3fff849b22 (IsA japanese_clover bush_clover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese crab is a kind of crab", "pln": ["(: cnet_isa_2c3bc88f9d (IsA japanese_crab crab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese deer is a kind of deer", "pln": ["(: cnet_isa_685cc50127 (IsA japanese_deer deer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese deity is a kind of deity", "pln": ["(: cnet_isa_9c911e6e8c (IsA japanese_deity deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese flowering cherry is a kind of flowering cherry", "pln": ["(: cnet_isa_d2649208d0 (IsA japanese_flowering_cherry flowering_cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese honeysuckle is a kind of honeysuckle", "pln": ["(: cnet_isa_62f42d3b98 (IsA japanese_honeysuckle honeysuckle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese hop is a kind of hop", "pln": ["(: cnet_isa_71e7ece662 (IsA japanese_hop hop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese iris is a kind of beardless iris", "pln": ["(: cnet_isa_03f6c02756 (IsA japanese_iris beardless_iris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese lilac is a kind of lilac", "pln": ["(: cnet_isa_dcfa7b2892 (IsA japanese_lilac lilac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese linden is a kind of linden", "pln": ["(: cnet_isa_dc3f24b7b8 (IsA japanese_linden linden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese maple is a kind of maple", "pln": ["(: cnet_isa_97e5a960a0 (IsA japanese_maple maple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese millet is a kind of millet", "pln": ["(: cnet_isa_b92cba6522 (IsA japanese_millet millet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_a5e7b8287c (IsA japanese_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese morning glory is a kind of morning glory", "pln": ["(: cnet_isa_3334d4ff11 (IsA japanese_morning_glory morning_glory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese oak is a kind of oak", "pln": ["(: cnet_isa_368c922cad (IsA japanese_oak oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese oak is a kind of tanbark oak", "pln": ["(: cnet_isa_a6e9b7616a (IsA japanese_oak tanbark_oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese oyster is a kind of oyster", "pln": ["(: cnet_isa_2e94248858 (IsA japanese_oyster oyster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese pagoda tree is a kind of tree", "pln": ["(: cnet_isa_031d5cbf4b (IsA japanese_pagoda_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese persimmon is a kind of persimmon", "pln": ["(: cnet_isa_0cf56029f9 (IsA japanese_persimmon persimmon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese pink is a kind of china pink", "pln": ["(: cnet_isa_e9a35b40ab (IsA japanese_pink china_pink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese plum is a kind of plum", "pln": ["(: cnet_isa_4ecf29f609 (IsA japanese_plum plum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese poinsettia is a kind of spurge", "pln": ["(: cnet_isa_488a532931 (IsA japanese_poinsettia spurge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese privet is a kind of privet", "pln": ["(: cnet_isa_45dd4b7dee (IsA japanese_privet privet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese quince is a kind of flowering quince", "pln": ["(: cnet_isa_03c3a87ac9 (IsA japanese_quince flowering_quince) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese red pine is a kind of pine", "pln": ["(: cnet_isa_9d1cbc1d8d (IsA japanese_red_pine pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese snowbell is a kind of styrax", "pln": ["(: cnet_isa_8f7acb362b (IsA japanese_snowbell styrax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese spaniel is a kind of toy dog", "pln": ["(: cnet_isa_4cc2cd5c11 (IsA japanese_spaniel toy_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese spurge is a kind of pachysandra", "pln": ["(: cnet_isa_631aaf2e8c (IsA japanese_spurge pachysandra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "japanese stranglehold is a kind of wrestling hold", "pln": ["(: cnet_isa_4a9476dde0 (IsA japanese_stranglehold wrestling_hold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese tree lilac is a kind of lilac", "pln": ["(: cnet_isa_065b8c3696 (IsA japanese_tree_lilac lilac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese umbrella pine is a kind of conifer", "pln": ["(: cnet_isa_332805548d (IsA japanese_umbrella_pine conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese wistaria is a kind of wisteria", "pln": ["(: cnet_isa_c4b00ae960 (IsA japanese_wistaria wisteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japanese yew is a kind of yew", "pln": ["(: cnet_isa_32566041a0 (IsA japanese_yew yew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japonica is a kind of camellia", "pln": ["(: cnet_isa_0411088227 (IsA japonica camellia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "japonica is a kind of flowering quince", "pln": ["(: cnet_isa_2252058ac5 (IsA japonica flowering_quince) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jar is a kind of container", "pln": ["(: cnet_isa_e12da9baec (IsA jar container) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jar is a kind of vessel", "pln": ["(: cnet_isa_8f2975e69f (IsA jar vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jar is a kind of containerful", "pln": ["(: cnet_isa_e2f2d3e766 (IsA jar containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jargon is a kind of expressive style", "pln": ["(: cnet_isa_107bbba75c (IsA jargon expressive_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jargoon is a kind of zircon", "pln": ["(: cnet_isa_bd387b5986 (IsA jargoon zircon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jarvik heart is a kind of artificial heart", "pln": ["(: cnet_isa_297b1805cf (IsA jarvik_heart artificial_heart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jasmine is a kind of shrub", "pln": ["(: cnet_isa_9f240bdb4a (IsA jasmine shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jasminum is a kind of dicot genus", "pln": ["(: cnet_isa_0aae5847ff (IsA jasminum dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jasper is a kind of opaque gem", "pln": ["(: cnet_isa_248e84ed18 (IsA jasper opaque_gem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jassid is a kind of leafhopper", "pln": ["(: cnet_isa_b4c0392940 (IsA jassid leafhopper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jassidae is a kind of arthropod family", "pln": ["(: cnet_isa_c3e66663e3 (IsA jassidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jat is a kind of person", "pln": ["(: cnet_isa_c81e2876ee (IsA jat person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jati is a kind of caste", "pln": ["(: cnet_isa_41578e13cc (IsA jati caste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jatropha is a kind of rosid dicot genus", "pln": ["(: cnet_isa_fea96099ac (IsA jatropha rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jaundice is a kind of symptom", "pln": ["(: cnet_isa_e063cd2611 (IsA jaundice symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jaundice of newborn is a kind of jaundice", "pln": ["(: cnet_isa_de91b1ebf8 (IsA jaundice_of_newborn jaundice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jauntiness is a kind of chic", "pln": ["(: cnet_isa_fb25c05a55 (IsA jauntiness chic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jaunting car is a kind of cart", "pln": ["(: cnet_isa_49d767d65a (IsA jaunting_car cart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "java is a kind of computer programming language", "pln": ["(: cnet_isa_aeb81bd6e1 (IsA java computer_programming_language) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "java is a kind of in indonesia", "pln": ["(: cnet_isa_ddc2f1a70c (IsA java in_indonesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "java is a kind of island", "pln": ["(: cnet_isa_45b364fa08 (IsA java island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "java is a kind of object oriented programming language", "pln": ["(: cnet_isa_06f49a0d10 (IsA java object_oriented_programming_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "java is a kind of programming language", "pln": ["(: cnet_isa_8fc171beaf (IsA java programming_language) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "java man is a kind of homo erectus", "pln": ["(: cnet_isa_041751ad38 (IsA java_man homo_erectus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "java sparrow is a kind of weaver", "pln": ["(: cnet_isa_f9f4f9408b (IsA java_sparrow weaver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "javan is a kind of indonesian", "pln": ["(: cnet_isa_ac2906d907 (IsA javan indonesian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "javanese is a kind of indonesian", "pln": ["(: cnet_isa_035e646323 (IsA javanese indonesian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "javanthropus is a kind of hominid", "pln": ["(: cnet_isa_41bf7f140b (IsA javanthropus hominid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "javascript is a kind of programming language", "pln": ["(: cnet_isa_0c2d95e259 (IsA javascript programming_language) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "javelin is a kind of spear", "pln": ["(: cnet_isa_21f4b32016 (IsA javelin spear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "javelin is a kind of sports equipment", "pln": ["(: cnet_isa_715353d855 (IsA javelin sports_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "javelin is a kind of sport equipment", "pln": ["(: cnet_isa_196f11df5a (IsA javelin sport_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "javelin is a kind of field event", "pln": ["(: cnet_isa_ba27fe3184 (IsA javelin field_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "javelle water is a kind of sodium hypochlorite", "pln": ["(: cnet_isa_8ef9bc6126 (IsA javelle_water sodium_hypochlorite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jaw is a kind of holding device", "pln": ["(: cnet_isa_9e2278f873 (IsA jaw holding_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jaw is a kind of bone", "pln": ["(: cnet_isa_74b322a911 (IsA jaw bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jaw is a kind of feature", "pln": ["(: cnet_isa_7939c3f902 (IsA jaw feature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jawan is a kind of indian", "pln": ["(: cnet_isa_ea73967e7a (IsA jawan indian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jawan is a kind of soldier", "pln": ["(: cnet_isa_d0cf431edb (IsA jawan soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jawbreaker is a kind of polysyllable", "pln": ["(: cnet_isa_0ff54ff1ff (IsA jawbreaker polysyllable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jawbreaker is a kind of hard candy", "pln": ["(: cnet_isa_2c0eb53744 (IsA jawbreaker hard_candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jawfish is a kind of percoid fish", "pln": ["(: cnet_isa_75b9e6610f (IsA jawfish percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jawless vertebrate is a kind of aquatic vertebrate", "pln": ["(: cnet_isa_ae27c53e70 (IsA jawless_vertebrate aquatic_vertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jax is a kind of game", "pln": ["(: cnet_isa_356d4b7eac (IsA jax game) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jax is a kind of old game", "pln": ["(: cnet_isa_27d1914f53 (IsA jax old_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jay is a kind of corvine bird", "pln": ["(: cnet_isa_a6d7385e19 (IsA jay corvine_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jaywalker is a kind of pedestrian", "pln": ["(: cnet_isa_d10557a751 (IsA jaywalker pedestrian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jazz is a kind of music", "pln": ["(: cnet_isa_13a9d1fbaf (IsA jazz music) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jazz is a kind of popular music", "pln": ["(: cnet_isa_2cad34cc07 (IsA jazz popular_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jazz is a kind of dance music", "pln": ["(: cnet_isa_a5063ec395 (IsA jazz dance_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jazz age is a kind of period", "pln": ["(: cnet_isa_113ffb70ea (IsA jazz_age period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jazz band is a kind of dance band", "pln": ["(: cnet_isa_a932cbc338 (IsA jazz_band dance_band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jazz festival is a kind of festival", "pln": ["(: cnet_isa_8743a97cee (IsA jazz_festival festival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jazz musician is a kind of musician", "pln": ["(: cnet_isa_b98481ed91 (IsA jazz_musician musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jazzercise is a kind of aerobic exercise", "pln": ["(: cnet_isa_55756ad1ed (IsA jazzercise aerobic_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "je ne sais quois is a kind of object", "pln": ["(: cnet_isa_6203ad9b29 (IsA je_ne_sais_quois object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jealousy is a kind of emotion", "pln": ["(: cnet_isa_30b09181a0 (IsA jealousy emotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jealousy is a kind of watchfulness", "pln": ["(: cnet_isa_4478adde49 (IsA jealousy watchfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "jean is a kind of pair of trousers", "pln": ["(: cnet_isa_2cbf129429 (IsA jean pair_of_trousers) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "jeans is a kind of trousers", "pln": ["(: cnet_isa_75787b3839 (IsA jeans trousers) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jealousy is a kind of envy", "pln": ["(: cnet_isa_eac9436ff8 (IsA jealousy envy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jean is a kind of pair of trouser", "pln": ["(: cnet_isa_f800761ace (IsA jean pair_of_trouser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jean is a kind of workwear", "pln": ["(: cnet_isa_99e7aad53f (IsA jean workwear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jean is a kind of trouser", "pln": ["(: cnet_isa_47a0bc96b1 (IsA jean trouser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jeep is a kind of four wheeled vehicle", "pln": ["(: cnet_isa_ee308c7317 (IsA jeep four_wheeled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jeep is a kind of off road vehicle", "pln": ["(: cnet_isa_00a3b79879 (IsA jeep off_road_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jeep is a kind of car", "pln": ["(: cnet_isa_0db2f01bcf (IsA jeep car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jeer is a kind of derision", "pln": ["(: cnet_isa_0ce75e9643 (IsA jeer derision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jefferson davis birthday is a kind of day", "pln": ["(: cnet_isa_196a339ba3 (IsA jefferson_davis_birthday day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jeffersonian is a kind of follower", "pln": ["(: cnet_isa_c0c7d40ac5 (IsA jeffersonian follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jeffrey pine is a kind of pine", "pln": ["(: cnet_isa_94dfcb2412 (IsA jeffrey_pine pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jehovah s witness is a kind of protestant", "pln": ["(: cnet_isa_12fd923395 (IsA jehovah_s_witness protestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jehovah s witness is a kind of protestant denomination", "pln": ["(: cnet_isa_db5fea7f48 (IsA jehovah_s_witness protestant_denomination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jejunal artery is a kind of artery", "pln": ["(: cnet_isa_62bd1481ff (IsA jejunal_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jejunitis is a kind of inflammation", "pln": ["(: cnet_isa_2511513aa9 (IsA jejunitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jejunity is a kind of dullness", "pln": ["(: cnet_isa_f10c4c2060 (IsA jejunity dullness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jejunity is a kind of inadequacy", "pln": ["(: cnet_isa_116373c949 (IsA jejunity inadequacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jejunoileitis is a kind of inflammation", "pln": ["(: cnet_isa_39e030521d (IsA jejunoileitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jejunostomy is a kind of operation", "pln": ["(: cnet_isa_db5bb40b6c (IsA jejunostomy operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jejunum is a kind of small intestine", "pln": ["(: cnet_isa_7910725968 (IsA jejunum small_intestine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jekyll and hyde is a kind of anomaly", "pln": ["(: cnet_isa_d7a90b4a0b (IsA jekyll_and_hyde anomaly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jellaba is a kind of cloak", "pln": ["(: cnet_isa_c34adf45de (IsA jellaba cloak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jello is a kind of gelatin dessert", "pln": ["(: cnet_isa_c42ccc0247 (IsA jello gelatin_dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jello is a kind of hydrocolloid", "pln": ["(: cnet_isa_a0cc558282 (IsA jello hydrocolloid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jelly is a kind of spread", "pln": ["(: cnet_isa_f964e061f9 (IsA jelly spread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jelly is a kind of conserve", "pln": ["(: cnet_isa_1a5f1fbc2e (IsA jelly conserve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jelly is a kind of substance", "pln": ["(: cnet_isa_da7d88f35f (IsA jelly substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jelly bean is a kind of candy", "pln": ["(: cnet_isa_d758644903 (IsA jelly_bean candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jelly fungus is a kind of fungus", "pln": ["(: cnet_isa_5fcfd0c343 (IsA jelly_fungus fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jellyfish is a kind of coelenterate", "pln": ["(: cnet_isa_274f870b42 (IsA jellyfish coelenterate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jellyroll is a kind of sponge cake", "pln": ["(: cnet_isa_ffa82b515e (IsA jellyroll sponge_cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jennet is a kind of ass", "pln": ["(: cnet_isa_93768a9d03 (IsA jennet ass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jerboa is a kind of rodent", "pln": ["(: cnet_isa_316a39b6d9 (IsA jerboa rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jerboa kangaroo is a kind of rat kangaroo", "pln": ["(: cnet_isa_e11a4850b7 (IsA jerboa_kangaroo rat_kangaroo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jerboa rat is a kind of rat", "pln": ["(: cnet_isa_32a2f3ac24 (IsA jerboa_rat rat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jeremiad is a kind of complaint", "pln": ["(: cnet_isa_71e1da3f96 (IsA jeremiad complaint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jerk is a kind of motion", "pln": ["(: cnet_isa_4ac1cd445e (IsA jerk motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jerk is a kind of weightlifting", "pln": ["(: cnet_isa_4e799ae933 (IsA jerk weightlifting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jerk is a kind of rate", "pln": ["(: cnet_isa_c6f9e51c6b (IsA jerk rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jerk is a kind of misfit", "pln": ["(: cnet_isa_9bb1fe1ced (IsA jerk misfit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jerkin is a kind of jacket", "pln": ["(: cnet_isa_3abd7c2683 (IsA jerkin jacket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jerky is a kind of meat", "pln": ["(: cnet_isa_7e22dabf91 (IsA jerky meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jeroboam is a kind of wine bottle", "pln": ["(: cnet_isa_c47af7c934 (IsA jeroboam wine_bottle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jerry builder is a kind of builder", "pln": ["(: cnet_isa_47d1d7dd22 (IsA jerry_builder builder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jerry building is a kind of construction", "pln": ["(: cnet_isa_2312c82e2f (IsA jerry_building construction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jersey is a kind of dairy cattle", "pln": ["(: cnet_isa_885c862307 (IsA jersey dairy_cattle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jersey is a kind of knit", "pln": ["(: cnet_isa_d5cb2c3ce9 (IsA jersey knit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jersey is a kind of shirt", "pln": ["(: cnet_isa_837aa15961 (IsA jersey shirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jersey elm is a kind of elm", "pln": ["(: cnet_isa_6256e98617 (IsA jersey_elm elm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jersey knapweed is a kind of knapweed", "pln": ["(: cnet_isa_f42c2265d8 (IsA jersey_knapweed knapweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jerusalem artichoke is a kind of root vegetable", "pln": ["(: cnet_isa_f551f6be57 (IsA jerusalem_artichoke root_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jerusalem artichoke is a kind of sunflower", "pln": ["(: cnet_isa_74826d927f (IsA jerusalem_artichoke sunflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jerusalem artichoke is a kind of tuber", "pln": ["(: cnet_isa_391357d340 (IsA jerusalem_artichoke tuber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jerusalem cherry is a kind of nightshade", "pln": ["(: cnet_isa_83f313de1c (IsA jerusalem_cherry nightshade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jerusalem cross is a kind of cross", "pln": ["(: cnet_isa_5538ad0dcf (IsA jerusalem_cross cross) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jerusalem oak is a kind of goosefoot", "pln": ["(: cnet_isa_ac7e8085d1 (IsA jerusalem_oak goosefoot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jerusalem sage is a kind of subshrub", "pln": ["(: cnet_isa_e9ef8b38e9 (IsA jerusalem_sage subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jerusalem thorn is a kind of shrub", "pln": ["(: cnet_isa_8afc5319dc (IsA jerusalem_thorn shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jest is a kind of diversion", "pln": ["(: cnet_isa_d6d13e5094 (IsA jest diversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jester is a kind of clown", "pln": ["(: cnet_isa_8536f361f9 (IsA jester clown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jesuit is a kind of religious", "pln": ["(: cnet_isa_3a38df54d8 (IsA jesuit religious) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jesuit order is a kind of order", "pln": ["(: cnet_isa_800750567e (IsA jesuit_order order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jesuitism is a kind of christian theology", "pln": ["(: cnet_isa_9ba7bd28ac (IsA jesuitism christian_theology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jesus is a kind of good man", "pln": ["(: cnet_isa_e215d7f89b (IsA jesus good_man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jesus is a kind of good teacher", "pln": ["(: cnet_isa_92a396db72 (IsA jesus good_teacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jesus is a kind of human being", "pln": ["(: cnet_isa_d567ae5cf2 (IsA jesus human_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jesus is a kind of itinerant preacher long ago", "pln": ["(: cnet_isa_c895d96f0e (IsA jesus itinerant_preacher_long_ago) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jesus is a kind of jew", "pln": ["(: cnet_isa_967b0aa5f6 (IsA jesus jew) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jesus is a kind of king and shepard", "pln": ["(: cnet_isa_21b4324c0f (IsA jesus king_and_shepard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jesus is a kind of middle eastern dissident", "pln": ["(: cnet_isa_3179cdefb8 (IsA jesus middle_eastern_dissident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jesus is a kind of mythological hero", "pln": ["(: cnet_isa_59ff38adee (IsA jesus mythological_hero) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jesus is a kind of person", "pln": ["(: cnet_isa_e48ac05f70 (IsA jesus person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jesus is a kind of religious radical 2000 year ago", "pln": ["(: cnet_isa_fb7799c98a (IsA jesus religious_radical_2000_year_ago) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jesus christ is a kind of lord and saviour", "pln": ["(: cnet_isa_33c7fb2f4c (IsA jesus_christ lord_and_saviour) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jet is a kind of airplane", "pln": ["(: cnet_isa_32f1cd58f1 (IsA jet airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jet is a kind of discharge", "pln": ["(: cnet_isa_4c7fdebe02 (IsA jet discharge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jet is a kind of lignite", "pln": ["(: cnet_isa_568eec03a4 (IsA jet lignite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jet bridge is a kind of footbridge", "pln": ["(: cnet_isa_22d9d50300 (IsA jet_bridge footbridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jet engine is a kind of reaction propulsion engine", "pln": ["(: cnet_isa_f521e11f2b (IsA jet_engine reaction_propulsion_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jet lag is a kind of fatigue", "pln": ["(: cnet_isa_1f43a0b82b (IsA jet_lag fatigue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jet propulsion is a kind of reaction propulsion", "pln": ["(: cnet_isa_91c53cbbe6 (IsA jet_propulsion reaction_propulsion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jet set is a kind of set", "pln": ["(: cnet_isa_7f3f38458d (IsA jet_set set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jet stream is a kind of airstream", "pln": ["(: cnet_isa_1686eef1fa (IsA jet_stream airstream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jeth is a kind of hindu calendar month", "pln": ["(: cnet_isa_730020862d (IsA jeth hindu_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jetliner is a kind of jet", "pln": ["(: cnet_isa_151919fb13 (IsA jetliner jet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "jewels of opar is a kind of flame flower", "pln": ["(: cnet_isa_77ce72f6fe (IsA jewels_of_opar flame_flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jet is a kind of atmospheric electricity", "pln": ["(: cnet_isa_3fc8298d3c (IsA jet atmospheric_electricity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jet and giant is a kind of both ny football team", "pln": ["(: cnet_isa_6ad680faa9 (IsA jet_and_giant both_ny_football_team) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jetsam is a kind of part", "pln": ["(: cnet_isa_444137686a (IsA jetsam part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jeu d esprit is a kind of wit", "pln": ["(: cnet_isa_30359bda49 (IsA jeu_d_esprit wit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jew s ear is a kind of jelly fungus", "pln": ["(: cnet_isa_ba75dbefdb (IsA jew_s_ear jelly_fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jew s harp is a kind of musical instrument", "pln": ["(: cnet_isa_54b348d21e (IsA jew_s_harp musical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jew is a kind of ethnic group", "pln": ["(: cnet_isa_86493e984c (IsA jew ethnic_group) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jewbush is a kind of slipper spurge", "pln": ["(: cnet_isa_7b1273b173 (IsA jewbush slipper_spurge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jewel is a kind of jewelry", "pln": ["(: cnet_isa_3475beec49 (IsA jewel jewelry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jewel is a kind of person", "pln": ["(: cnet_isa_3c5ba1668e (IsA jewel person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jewel orchid is a kind of orchid", "pln": ["(: cnet_isa_95602840f3 (IsA jewel_orchid orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jeweler s glass is a kind of optical instrument", "pln": ["(: cnet_isa_351d6cc074 (IsA jeweler_s_glass optical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jeweler is a kind of merchant", "pln": ["(: cnet_isa_5b4c8c8355 (IsA jeweler merchant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jewelled headdress is a kind of headdress", "pln": ["(: cnet_isa_88445841b3 (IsA jewelled_headdress headdress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jewelry is a kind of adornment", "pln": ["(: cnet_isa_c82db3cd3c (IsA jewelry adornment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jewelry dealer is a kind of dealer", "pln": ["(: cnet_isa_ce51fce35b (IsA jewelry_dealer dealer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jewelry maker is a kind of maker", "pln": ["(: cnet_isa_336aa1b7b0 (IsA jewelry_maker maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jewel of opar is a kind of flame flower", "pln": ["(: cnet_isa_94294e0677 (IsA jewel_of_opar flame_flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jewelweed is a kind of herb", "pln": ["(: cnet_isa_e50646b6f8 (IsA jewelweed herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jewess is a kind of israelite", "pln": ["(: cnet_isa_e0997a46d6 (IsA jewess israelite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jewfish is a kind of grouper", "pln": ["(: cnet_isa_59aa9a312b (IsA jewfish grouper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jewish calendar is a kind of lunisolar calendar", "pln": ["(: cnet_isa_9933912b17 (IsA jewish_calendar lunisolar_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jewish calendar month is a kind of calendar month", "pln": ["(: cnet_isa_4e5a8dca42 (IsA jewish_calendar_month calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jewish holy day is a kind of religious holiday", "pln": ["(: cnet_isa_92bbbd8f0f (IsA jewish_holy_day religious_holiday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jewish rye bread is a kind of rye bread", "pln": ["(: cnet_isa_bf5f6779b4 (IsA jewish_rye_bread rye_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jewry is a kind of social group", "pln": ["(: cnet_isa_4ad2a9623d (IsA jewry social_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jezebel is a kind of woman", "pln": ["(: cnet_isa_27e321ac0c (IsA jezebel woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jiao is a kind of chinese monetary unit", "pln": ["(: cnet_isa_508fc7c3b9 (IsA jiao chinese_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jib is a kind of fore and aft sail", "pln": ["(: cnet_isa_bb244c69af (IsA jib fore_and_aft_sail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jibboom is a kind of spar", "pln": ["(: cnet_isa_a7b07d843a (IsA jibboom spar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jig is a kind of folk dancing", "pln": ["(: cnet_isa_5567f8c1de (IsA jig folk_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jig is a kind of device", "pln": ["(: cnet_isa_6213de823f (IsA jig device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jig is a kind of fisherman s lure", "pln": ["(: cnet_isa_6801139e0d (IsA jig fisherman_s_lure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jig is a kind of dance music", "pln": ["(: cnet_isa_9e642bf158 (IsA jig dance_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jiggermast is a kind of mast", "pln": ["(: cnet_isa_344661132a (IsA jiggermast mast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jigsaw is a kind of power saw", "pln": ["(: cnet_isa_08aca2b129 (IsA jigsaw power_saw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jigsaw puzzle is a kind of puzzle", "pln": ["(: cnet_isa_8178d5e393 (IsA jigsaw_puzzle puzzle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jihad is a kind of holy war", "pln": ["(: cnet_isa_2e3806e4c1 (IsA jihad holy_war) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jihad is a kind of striving", "pln": ["(: cnet_isa_f09cb984fd (IsA jihad striving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jihadist is a kind of moslem", "pln": ["(: cnet_isa_04bbe3bddc (IsA jihadist moslem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jilt is a kind of woman", "pln": ["(: cnet_isa_b1b93f899d (IsA jilt woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jim is a kind of hamburger eater", "pln": ["(: cnet_isa_6fde2bd53f (IsA jim hamburger_eater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jim crow is a kind of crowbar", "pln": ["(: cnet_isa_5c245ce993 (IsA jim_crow crowbar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jimdandy is a kind of thing", "pln": ["(: cnet_isa_8ec3aa7065 (IsA jimdandy thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jimdandy is a kind of ideal", "pln": ["(: cnet_isa_d56bae7047 (IsA jimdandy ideal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jimmy is a kind of chocolate candy", "pln": ["(: cnet_isa_ae94d7ef1f (IsA jimmy chocolate_candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jimmy is a kind of crowbar", "pln": ["(: cnet_isa_356d468e42 (IsA jimmy crowbar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jimsonweed is a kind of thorn apple", "pln": ["(: cnet_isa_0b2fd9d082 (IsA jimsonweed thorn_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jinghpo is a kind of kachin", "pln": ["(: cnet_isa_1db08da61e (IsA jinghpo kachin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jingle is a kind of sound", "pln": ["(: cnet_isa_578e528690 (IsA jingle sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jink is a kind of merrymaking", "pln": ["(: cnet_isa_ba325c27da (IsA jink merrymaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jinrikisha is a kind of cart", "pln": ["(: cnet_isa_36ae7194a4 (IsA jinrikisha cart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jiqui is a kind of dicot", "pln": ["(: cnet_isa_00fee598e1 (IsA jiqui dicot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jird is a kind of gerbil", "pln": ["(: cnet_isa_c7eb3a0f19 (IsA jird gerbil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jirga is a kind of council", "pln": ["(: cnet_isa_753fdc47d0 (IsA jirga council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jitter is a kind of movement", "pln": ["(: cnet_isa_05e85e31c4 (IsA jitter movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jitter is a kind of noise", "pln": ["(: cnet_isa_b7e5d365e2 (IsA jitter noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jitterbug is a kind of social dancing", "pln": ["(: cnet_isa_2035651af4 (IsA jitterbug social_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jitteriness is a kind of anxiety", "pln": ["(: cnet_isa_eb1bb3147d (IsA jitteriness anxiety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jitter is a kind of nervousness", "pln": ["(: cnet_isa_c7456efc6a (IsA jitter nervousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jnr is a kind of son", "pln": ["(: cnet_isa_3447621965 (IsA jnr son) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "job s comforter is a kind of sympathizer", "pln": ["(: cnet_isa_d6d0dac1c9 (IsA job_s_comforter sympathizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "job s tear is a kind of seed", "pln": ["(: cnet_isa_6f62a01b3c (IsA job_s_tear seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "job is a kind of duty", "pln": ["(: cnet_isa_d9edf68615 (IsA job duty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "job is a kind of work", "pln": ["(: cnet_isa_156dae4f79 (IsA job work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "job is a kind of product", "pln": ["(: cnet_isa_4091b3546e (IsA job product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "job is a kind of workplace", "pln": ["(: cnet_isa_8d350d1cfc (IsA job workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "job is a kind of application", "pln": ["(: cnet_isa_d89189b996 (IsA job application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "job is a kind of unfortunate", "pln": ["(: cnet_isa_e5b6c28200 (IsA job unfortunate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "job action is a kind of direct action", "pln": ["(: cnet_isa_bf96b3a2f2 (IsA job_action direct_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "job application is a kind of application", "pln": ["(: cnet_isa_cc6805ec36 (IsA job_application application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "job candidate is a kind of applicant", "pln": ["(: cnet_isa_eab2c0c4c5 (IsA job_candidate applicant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "job control is a kind of program", "pln": ["(: cnet_isa_47d4cf8ceb (IsA job_control program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "job control language is a kind of application oriented language", "pln": ["(: cnet_isa_44190b9f3e (IsA job_control_language application_oriented_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "job description is a kind of description", "pln": ["(: cnet_isa_dcdd7d096b (IsA job_description description) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "job interview is a kind of interview", "pln": ["(: cnet_isa_89bc3fe53a (IsA job_interview interview) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "job lot is a kind of collection", "pln": ["(: cnet_isa_051ecba46a (IsA job_lot collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "job oriented terminal is a kind of terminal", "pln": ["(: cnet_isa_b12244c4de (IsA job_oriented_terminal terminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jobber is a kind of distributor", "pln": ["(: cnet_isa_c50f78ff29 (IsA jobber distributor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "john is a kind of boys name", "pln": ["(: cnet_isa_cfe6e03919 (IsA john boys_name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jobbery is a kind of corruptness", "pln": ["(: cnet_isa_7954e0cf3f (IsA jobbery corruptness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jobcentre is a kind of government office", "pln": ["(: cnet_isa_1840954ca8 (IsA jobcentre government_office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jobholder is a kind of employee", "pln": ["(: cnet_isa_26add12e13 (IsA jobholder employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jobholder is a kind of holder", "pln": ["(: cnet_isa_377d62aa00 (IsA jobholder holder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jockey is a kind of horseman", "pln": ["(: cnet_isa_b092620914 (IsA jockey horseman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jockey is a kind of operator", "pln": ["(: cnet_isa_6e2735d93a (IsA jockey operator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jockey club is a kind of club", "pln": ["(: cnet_isa_62cf6215dd (IsA jockey_club club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jocoseness is a kind of levity", "pln": ["(: cnet_isa_18de6831ae (IsA jocoseness levity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jocosity is a kind of fun", "pln": ["(: cnet_isa_49ed8e1752 (IsA jocosity fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jocundity is a kind of gaiety", "pln": ["(: cnet_isa_0648aa8319 (IsA jocundity gaiety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jodhpur is a kind of pair of trouser", "pln": ["(: cnet_isa_83274a2d24 (IsA jodhpur pair_of_trouser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jodhpur is a kind of riding boot", "pln": ["(: cnet_isa_e166cd6e64 (IsA jodhpur riding_boot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joe pye weed is a kind of herb", "pln": ["(: cnet_isa_40651601d9 (IsA joe_pye_weed herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jog is a kind of locomotion", "pln": ["(: cnet_isa_4188a050fd (IsA jog locomotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jog is a kind of angular shape", "pln": ["(: cnet_isa_1e8924f41c (IsA jog angular_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jog trot is a kind of gait", "pln": ["(: cnet_isa_f60441a76e (IsA jog_trot gait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jogger is a kind of runner", "pln": ["(: cnet_isa_d3675fa631 (IsA jogger runner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jogging is a kind of exercise", "pln": ["(: cnet_isa_27bfe25e93 (IsA jogging exercise) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jogging is a kind of cardiopulmonary exercise", "pln": ["(: cnet_isa_f83b4f8c4c (IsA jogging cardiopulmonary_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joggle is a kind of shaking", "pln": ["(: cnet_isa_c6a48aafe4 (IsA joggle shaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "john is a kind of boy name", "pln": ["(: cnet_isa_9cb560dbaa (IsA john boy_name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "john is a kind of crying", "pln": ["(: cnet_isa_5936b95e22 (IsA john crying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "john is a kind of hunter", "pln": ["(: cnet_isa_266836a99b (IsA john hunter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "john doe is a kind of party", "pln": ["(: cnet_isa_2506bd81d0 (IsA john_doe party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "john dory is a kind of dory", "pln": ["(: cnet_isa_0909d6df19 (IsA john_dory dory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "john mccain is a kind of republican", "pln": ["(: cnet_isa_1f19b89a77 (IsA john_mccain republican) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "john safran is a kind of provocateur", "pln": ["(: cnet_isa_6b7d5e81d8 (IsA john_safran provocateur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "john woo is a kind of film director", "pln": ["(: cnet_isa_670369c577 (IsA john_woo film_director) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "johnnycake is a kind of cornbread", "pln": ["(: cnet_isa_4f4bcdff37 (IsA johnnycake cornbread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "johnson grass is a kind of sorghum", "pln": ["(: cnet_isa_441e777824 (IsA johnson_grass sorghum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joie de vivre is a kind of enjoyment", "pln": ["(: cnet_isa_ae09d2f403 (IsA joie_de_vivre enjoyment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "joiner is a kind of member", "pln": ["(: cnet_isa_1d447b9b3c (IsA joiner member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joiner is a kind of woodworker", "pln": ["(: cnet_isa_64d9bf319d (IsA joiner woodworker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joinery is a kind of woodwork", "pln": ["(: cnet_isa_7865576f3b (IsA joinery woodwork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joining is a kind of change of integrity", "pln": ["(: cnet_isa_ff7efdf8c6 (IsA joining change_of_integrity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joint is a kind of body part", "pln": ["(: cnet_isa_a52768285a (IsA joint body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joint is a kind of cigarette", "pln": ["(: cnet_isa_3755684045 (IsA joint cigarette) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joint is a kind of junction", "pln": ["(: cnet_isa_fbfe50f224 (IsA joint junction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joint is a kind of spot", "pln": ["(: cnet_isa_aa2c4feb9d (IsA joint spot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joint chief of staff is a kind of executive agency", "pln": ["(: cnet_isa_511c69f035 (IsA joint_chief_of_staff executive_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joint direct attack munition is a kind of guidance system", "pln": ["(: cnet_isa_7972e4e5c2 (IsA joint_direct_attack_munition guidance_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joint probability is a kind of probability", "pln": ["(: cnet_isa_b69f679628 (IsA joint_probability probability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joint resolution is a kind of resolution", "pln": ["(: cnet_isa_dcb6559a17 (IsA joint_resolution resolution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joint return is a kind of tax return", "pln": ["(: cnet_isa_498ea36365 (IsA joint_return tax_return) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joint stock company is a kind of company", "pln": ["(: cnet_isa_a647cc627e (IsA joint_stock_company company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joint venture is a kind of venture", "pln": ["(: cnet_isa_38088e20e7 (IsA joint_venture venture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jointed charlock is a kind of weed", "pln": ["(: cnet_isa_53a39cd7ec (IsA jointed_charlock weed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jointed rush is a kind of rush", "pln": ["(: cnet_isa_f5910815b2 (IsA jointed_rush rush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jointer is a kind of plane", "pln": ["(: cnet_isa_2735f76745 (IsA jointer plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jointure is a kind of estate", "pln": ["(: cnet_isa_3663b38416 (IsA jointure estate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joist is a kind of beam", "pln": ["(: cnet_isa_6d76289834 (IsA joist beam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joke is a kind of pettiness", "pln": ["(: cnet_isa_52a2b654e7 (IsA joke pettiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joke is a kind of wit", "pln": ["(: cnet_isa_70db2845e4 (IsA joke wit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joker is a kind of playing card", "pln": ["(: cnet_isa_41320af848 (IsA joker playing_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joker is a kind of article", "pln": ["(: cnet_isa_d90d93dc2f (IsA joker article) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joker is a kind of comedian", "pln": ["(: cnet_isa_edc6663910 (IsA joker comedian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joker is a kind of unpleasant person", "pln": ["(: cnet_isa_c08b20512a (IsA joker unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jollity is a kind of gaiety", "pln": ["(: cnet_isa_ebb2d1478b (IsA jollity gaiety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jollity is a kind of good humor", "pln": ["(: cnet_isa_186df21b78 (IsA jollity good_humor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jolly is a kind of party", "pln": ["(: cnet_isa_b9300b8f98 (IsA jolly party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jolly boat is a kind of yawl", "pln": ["(: cnet_isa_62d5604b47 (IsA jolly_boat yawl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jolt is a kind of bump", "pln": ["(: cnet_isa_ceaef02978 (IsA jolt bump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jonah is a kind of unfortunate", "pln": ["(: cnet_isa_5c881cfe3a (IsA jonah unfortunate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jonah crab is a kind of crab", "pln": ["(: cnet_isa_0a99f2431b (IsA jonah_crab crab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jonathan is a kind of eating apple", "pln": ["(: cnet_isa_38680bb2b8 (IsA jonathan eating_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jone penstemon is a kind of wildflower", "pln": ["(: cnet_isa_3af68654dc (IsA jone_penstemon wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jonquil is a kind of daffodil", "pln": ["(: cnet_isa_d2768344d1 (IsA jonquil daffodil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jonquil is a kind of narcissus", "pln": ["(: cnet_isa_2830bd96ac (IsA jonquil narcissus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jordan almond is a kind of almond", "pln": ["(: cnet_isa_c94dd7793f (IsA jordan_almond almond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jordanella is a kind of fish genus", "pln": ["(: cnet_isa_aea11dd30d (IsA jordanella fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jordanian is a kind of asiatic", "pln": ["(: cnet_isa_bbe08284b5 (IsA jordanian asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jordanian dinar is a kind of jordanian monetary unit", "pln": ["(: cnet_isa_24ed16a1af (IsA jordanian_dinar jordanian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jordanian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_8b4ec248d1 (IsA jordanian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jorum is a kind of bowl", "pln": ["(: cnet_isa_31279d59e9 (IsA jorum bowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joshua tree is a kind of yucca", "pln": ["(: cnet_isa_5a2c3b515a (IsA joshua_tree yucca) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "joss is a kind of idol", "pln": ["(: cnet_isa_c9e5127345 (IsA joss idol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "joss house is a kind of temple", "pln": ["(: cnet_isa_4f3030061e (IsA joss_house temple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joss stick is a kind of incense", "pln": ["(: cnet_isa_39131e0a85 (IsA joss_stick incense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jostle is a kind of shove", "pln": ["(: cnet_isa_2aa33519f8 (IsA jostle shove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jotter is a kind of notebook", "pln": ["(: cnet_isa_3c7076f679 (IsA jotter notebook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jotting is a kind of note", "pln": ["(: cnet_isa_bd70c66361 (IsA jotting note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jotunn is a kind of giant", "pln": ["(: cnet_isa_2bf3ef6b73 (IsA jotunn giant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "joule is a kind of work unit", "pln": ["(: cnet_isa_b9a490daf0 (IsA joule work_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "journal is a kind of axle", "pln": ["(: cnet_isa_c24b57db01 (IsA journal axle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "journal is a kind of book", "pln": ["(: cnet_isa_fbb4b6553e (IsA journal book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "journal is a kind of periodical", "pln": ["(: cnet_isa_142153a4d6 (IsA journal periodical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "journal bearing is a kind of bearing", "pln": ["(: cnet_isa_7d4ebf3e01 (IsA journal_bearing bearing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "journal box is a kind of housing", "pln": ["(: cnet_isa_f73d0e124f (IsA journal_box housing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "journalese is a kind of expressive style", "pln": ["(: cnet_isa_4844cf61be (IsA journalese expressive_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "journalism is a kind of profession", "pln": ["(: cnet_isa_6ddc587acb (IsA journalism profession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "journalism is a kind of print media", "pln": ["(: cnet_isa_e343ac07ec (IsA journalism print_media) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "journalist s privilege is a kind of privilege", "pln": ["(: cnet_isa_9238e6706b (IsA journalist_s_privilege privilege) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "journalist is a kind of writer", "pln": ["(: cnet_isa_b2805f65ca (IsA journalist writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "journey is a kind of travel", "pln": ["(: cnet_isa_cc2352032c (IsA journey travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joust is a kind of struggle", "pln": ["(: cnet_isa_179230073c (IsA joust struggle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jovian planet is a kind of planet", "pln": ["(: cnet_isa_39b74a842c (IsA jovian_planet planet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jowl is a kind of feature", "pln": ["(: cnet_isa_992075afef (IsA jowl feature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joy is a kind of dog", "pln": ["(: cnet_isa_a92cfc54db (IsA joy dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joy is a kind of emotion", "pln": ["(: cnet_isa_5124ba9c1b (IsA joy emotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joy is a kind of positive stimulus", "pln": ["(: cnet_isa_0c2048b5b2 (IsA joy positive_stimulus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joylessness is a kind of cheerlessness", "pln": ["(: cnet_isa_430ed6bf2b (IsA joylessness cheerlessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joyride is a kind of drive", "pln": ["(: cnet_isa_abcb13b9ae (IsA joyride drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joystick is a kind of control", "pln": ["(: cnet_isa_3f42b7180c (IsA joystick control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "joystick is a kind of data input device", "pln": ["(: cnet_isa_9645bc1f52 (IsA joystick data_input_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juan ponce de leon is a kind of navigator", "pln": ["(: cnet_isa_1582cd5b57 (IsA juan_ponce_de_leon navigator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jubilee is a kind of anniversary", "pln": ["(: cnet_isa_cb2b89b845 (IsA jubilee anniversary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "judaica is a kind of collection", "pln": ["(: cnet_isa_59caa79705 (IsA judaica collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "judaism is a kind of religion", "pln": ["(: cnet_isa_5ee5bcd719 (IsA judaism religion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "judaism is a kind of monotheism", "pln": ["(: cnet_isa_8390518ccf (IsA judaism monotheism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juda is a kind of peephole", "pln": ["(: cnet_isa_96e070ce97 (IsA juda peephole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juda is a kind of double crosser", "pln": ["(: cnet_isa_ece4aeb06b (IsA juda double_crosser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juda tree is a kind of angiospermous tree", "pln": ["(: cnet_isa_dcce33d802 (IsA juda_tree angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "judeo spanish is a kind of spanish", "pln": ["(: cnet_isa_6b5ff2e4cc (IsA judeo_spanish spanish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "judge is a kind of adjudicator", "pln": ["(: cnet_isa_23b42f8752 (IsA judge adjudicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "judge is a kind of official", "pln": ["(: cnet_isa_35390d2723 (IsA judge official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "judge advocate is a kind of commissioned officer", "pln": ["(: cnet_isa_01260016ac (IsA judge_advocate commissioned_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "judge advocate is a kind of staff officer", "pln": ["(: cnet_isa_3cf744340c (IsA judge_advocate staff_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "judge advocate general is a kind of commissioned officer", "pln": ["(: cnet_isa_f8d1dcee64 (IsA judge_advocate_general commissioned_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "judgment is a kind of act", "pln": ["(: cnet_isa_cdebd4f40c (IsA judgment act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "judgment is a kind of trait", "pln": ["(: cnet_isa_dcf59ed5cc (IsA judgment trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "judgment is a kind of decision making", "pln": ["(: cnet_isa_45ba076cf4 (IsA judgment decision_making) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "judgment is a kind of opinion", "pln": ["(: cnet_isa_ebecb35f02 (IsA judgment opinion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "judgment is a kind of due process", "pln": ["(: cnet_isa_046d4b6a12 (IsA judgment due_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "judgment day is a kind of day", "pln": ["(: cnet_isa_13f43a2199 (IsA judgment_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "judgment in personam is a kind of judgment", "pln": ["(: cnet_isa_8e9ae5a956 (IsA judgment_in_personam judgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "judgment in rem is a kind of judgment", "pln": ["(: cnet_isa_cb199f084c (IsA judgment_in_rem judgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "judgment lien is a kind of lien", "pln": ["(: cnet_isa_0c5225d25c (IsA judgment_lien lien) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "judgment of dismissal is a kind of judgment", "pln": ["(: cnet_isa_fcd767a736 (IsA judgment_of_dismissal judgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "judgment on merit is a kind of judgment", "pln": ["(: cnet_isa_5823ee6afb (IsA judgment_on_merit judgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "judgship is a kind of position", "pln": ["(: cnet_isa_34f9af8c5a (IsA judgship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "judicature is a kind of justice", "pln": ["(: cnet_isa_a7c81f58bf (IsA judicature justice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "judicial branch is a kind of branch", "pln": ["(: cnet_isa_b034630c12 (IsA judicial_branch branch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "judicial review is a kind of review", "pln": ["(: cnet_isa_14d3c464be (IsA judicial_review review) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "judicial torture is a kind of torture", "pln": ["(: cnet_isa_2bedd6fd2a (IsA judicial_torture torture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "judiciary is a kind of administration", "pln": ["(: cnet_isa_71ce3e1a53 (IsA judiciary administration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "judiciary is a kind of system", "pln": ["(: cnet_isa_9e2935c240 (IsA judiciary system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "judiciousness is a kind of wisdom", "pln": ["(: cnet_isa_a00d9cfd5f (IsA judiciousness wisdom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "judiciousness is a kind of sagacity", "pln": ["(: cnet_isa_10c2afd87b (IsA judiciousness sagacity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "judo is a kind of martial art", "pln": ["(: cnet_isa_63600a2128 (IsA judo martial_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "judo is a kind of sport", "pln": ["(: cnet_isa_ebddc566fe (IsA judo sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jug is a kind of container", "pln": ["(: cnet_isa_3b9017f9a9 (IsA jug container) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jug is a kind of bottle", "pln": ["(: cnet_isa_06777f6e87 (IsA jug bottle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jug is a kind of containerful", "pln": ["(: cnet_isa_bd1aad4151 (IsA jug containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jug band is a kind of ensemble", "pln": ["(: cnet_isa_dee4ec68cd (IsA jug_band ensemble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jug wine is a kind of wine", "pln": ["(: cnet_isa_8d9d9393a7 (IsA jug_wine wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jugale is a kind of craniometric point", "pln": ["(: cnet_isa_bd5a839bde (IsA jugale craniometric_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juggernaut is a kind of idol", "pln": ["(: cnet_isa_e5714133ab (IsA juggernaut idol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juggernaut is a kind of power", "pln": ["(: cnet_isa_bc88af99ae (IsA juggernaut power) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juggle is a kind of performance", "pln": ["(: cnet_isa_2f5f3e022f (IsA juggle performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juggle is a kind of rearrangement", "pln": ["(: cnet_isa_5688b1753b (IsA juggle rearrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juggler is a kind of performer", "pln": ["(: cnet_isa_fa2fdf85de (IsA juggler performer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jugglery is a kind of maneuver", "pln": ["(: cnet_isa_7c20d8daf4 (IsA jugglery maneuver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jugglery is a kind of trickery", "pln": ["(: cnet_isa_4330d5a6fa (IsA jugglery trickery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "juglandaceae is a kind of dicot family", "pln": ["(: cnet_isa_cc779a8420 (IsA juglandaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juglandale is a kind of plant order", "pln": ["(: cnet_isa_c92b990237 (IsA juglandale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juglan is a kind of dicot genus", "pln": ["(: cnet_isa_ade9e6ecb6 (IsA juglan dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jugoslavian is a kind of european", "pln": ["(: cnet_isa_fb14c29b66 (IsA jugoslavian european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jugular is a kind of weak part", "pln": ["(: cnet_isa_4f93de010a (IsA jugular weak_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jugular vein is a kind of vein", "pln": ["(: cnet_isa_4df32b377b (IsA jugular_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juice is a kind of liquid body substance", "pln": ["(: cnet_isa_b211680763 (IsA juice liquid_body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juice is a kind of foodstuff", "pln": ["(: cnet_isa_925108024e (IsA juice foodstuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "juice is a kind of current", "pln": ["(: cnet_isa_9b0d5e4185 (IsA juice current) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juice is a kind of energy", "pln": ["(: cnet_isa_8d3818794a (IsA juice energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juju is a kind of charm", "pln": ["(: cnet_isa_22421207c7 (IsA juju charm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "juju is a kind of magic", "pln": ["(: cnet_isa_a5f0e917fa (IsA juju magic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jujube is a kind of drupe", "pln": ["(: cnet_isa_0b2566fa61 (IsA jujube drupe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jujube is a kind of edible fruit", "pln": ["(: cnet_isa_59a235d070 (IsA jujube edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jujube is a kind of gumdrop", "pln": ["(: cnet_isa_40601ac4ca (IsA jujube gumdrop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jujube is a kind of shrub", "pln": ["(: cnet_isa_42b6358869 (IsA jujube shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jujutsu is a kind of martial art", "pln": ["(: cnet_isa_3e704d8556 (IsA jujutsu martial_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juke is a kind of joint", "pln": ["(: cnet_isa_ff2889dbd0 (IsA juke joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juke is a kind of feint", "pln": ["(: cnet_isa_7192bef25e (IsA juke feint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jukebox is a kind of record player", "pln": ["(: cnet_isa_dda3316d7d (IsA jukebox record_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "julep is a kind of highball", "pln": ["(: cnet_isa_8d8554232b (IsA julep highball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "julian calendar is a kind of solar calendar", "pln": ["(: cnet_isa_291870ed95 (IsA julian_calendar solar_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "julienne is a kind of soup", "pln": ["(: cnet_isa_cbbc2251b2 (IsA julienne soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "julienne vegetable is a kind of vegetable", "pln": ["(: cnet_isa_338ccac1d1 (IsA julienne_vegetable vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "july is a kind of gregorian calendar month", "pln": ["(: cnet_isa_a22c273d2f (IsA july gregorian_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jumada i is a kind of islamic calendar month", "pln": ["(: cnet_isa_eddac98421 (IsA jumada_i islamic_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jumada ii is a kind of islamic calendar month", "pln": ["(: cnet_isa_dc42390056 (IsA jumada_ii islamic_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jumble is a kind of cake", "pln": ["(: cnet_isa_e4e54758bf (IsA jumble cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jumbojet is a kind of jet", "pln": ["(: cnet_isa_be01778483 (IsA jumbojet jet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jumby bead is a kind of necklace tree", "pln": ["(: cnet_isa_355ccc4baf (IsA jumby_bead necklace_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jump is a kind of descent", "pln": ["(: cnet_isa_2076576715 (IsA jump descent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jump is a kind of propulsion", "pln": ["(: cnet_isa_261eb56887 (IsA jump propulsion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jump is a kind of transition", "pln": ["(: cnet_isa_a21a18044c (IsA jump transition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jump is a kind of increase", "pln": ["(: cnet_isa_df5032cd4f (IsA jump increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jump ball is a kind of beginning", "pln": ["(: cnet_isa_74325f9525 (IsA jump_ball beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jump cut is a kind of cut", "pln": ["(: cnet_isa_8a63866d42 (IsA jump_cut cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jump rope is a kind of cardiopulmonary exercise", "pln": ["(: cnet_isa_e7a07b852c (IsA jump_rope cardiopulmonary_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jump rope is a kind of child s game", "pln": ["(: cnet_isa_1fd881cec6 (IsA jump_rope child_s_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jump rope is a kind of rope", "pln": ["(: cnet_isa_a586de1df6 (IsA jump_rope rope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jump seat is a kind of seat", "pln": ["(: cnet_isa_0ddc358950 (IsA jump_seat seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jump start is a kind of action", "pln": ["(: cnet_isa_dbad75f5df (IsA jump_start action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jump suit is a kind of garment", "pln": ["(: cnet_isa_366bb8e2f2 (IsA jump_suit garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jump suit is a kind of uniform", "pln": ["(: cnet_isa_48fed821b8 (IsA jump_suit uniform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jumper is a kind of connection", "pln": ["(: cnet_isa_057e29bbd2 (IsA jumper connection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jumper is a kind of coverall", "pln": ["(: cnet_isa_1443d7b3b9 (IsA jumper coverall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jumper is a kind of dress", "pln": ["(: cnet_isa_0f6cffcb5f (IsA jumper dress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jumper is a kind of jacket", "pln": ["(: cnet_isa_5b81778d9b (IsA jumper jacket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jumper is a kind of basketball shot", "pln": ["(: cnet_isa_96dcd0152a (IsA jumper basketball_shot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jumper is a kind of person", "pln": ["(: cnet_isa_48afcb5f5a (IsA jumper person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jumper cable is a kind of jumper", "pln": ["(: cnet_isa_e1b39b7f54 (IsA jumper_cable jumper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jumper cable is a kind of wire", "pln": ["(: cnet_isa_1c81e71b7b (IsA jumper_cable wire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jumping is a kind of activity", "pln": ["(: cnet_isa_d567b0c757 (IsA jumping activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jumping is a kind of track and field", "pln": ["(: cnet_isa_0925cf13ef (IsA jumping track_and_field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jumping at chance is a kind of idiom", "pln": ["(: cnet_isa_f562e49dda (IsA jumping_at_chance idiom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jumping bean is a kind of seed", "pln": ["(: cnet_isa_091c6b61c4 (IsA jumping_bean seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jumping bristletail is a kind of thysanuran insect", "pln": ["(: cnet_isa_e91e051c6b (IsA jumping_bristletail thysanuran_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jumping jack is a kind of plaything", "pln": ["(: cnet_isa_d406f1d478 (IsA jumping_jack plaything) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jumping mouse is a kind of rodent", "pln": ["(: cnet_isa_303da6cb28 (IsA jumping_mouse rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jumping off place is a kind of beginning", "pln": ["(: cnet_isa_1b18d7caa2 (IsA jumping_off_place beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jumping orchid is a kind of orchid", "pln": ["(: cnet_isa_9b93cc577f (IsA jumping_orchid orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jumping plant louse is a kind of plant louse", "pln": ["(: cnet_isa_416387071d (IsA jumping_plant_louse plant_louse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jumping up and down is a kind of jump", "pln": ["(: cnet_isa_d7ca76c10e (IsA jumping_up_and_down jump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juncaceae is a kind of monocot family", "pln": ["(: cnet_isa_a0e9ea759f (IsA juncaceae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "junco is a kind of finch", "pln": ["(: cnet_isa_4e6b54d592 (IsA junco finch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "junction is a kind of joining", "pln": ["(: cnet_isa_9a1958e657 (IsA junction joining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "junction is a kind of connection", "pln": ["(: cnet_isa_8e11406fd1 (IsA junction connection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "junction is a kind of topographic point", "pln": ["(: cnet_isa_4b10efb6b7 (IsA junction topographic_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "junction is a kind of union", "pln": ["(: cnet_isa_77eb104ea1 (IsA junction union) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "junction barrier is a kind of junction", "pln": ["(: cnet_isa_78540e5431 (IsA junction_barrier junction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juncture is a kind of happening", "pln": ["(: cnet_isa_6d98a83fd2 (IsA juncture happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juncture is a kind of crisis", "pln": ["(: cnet_isa_bd82c976a5 (IsA juncture crisis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juncus is a kind of monocot genus", "pln": ["(: cnet_isa_0f786918cd (IsA juncus monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "june is a kind of gregorian calendar month", "pln": ["(: cnet_isa_1829f1a9fd (IsA june gregorian_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "june beetle is a kind of scarabaeid beetle", "pln": ["(: cnet_isa_063b20a300 (IsA june_beetle scarabaeid_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juneberry is a kind of shrub", "pln": ["(: cnet_isa_96d37c64ec (IsA juneberry shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juneberry holly is a kind of holly", "pln": ["(: cnet_isa_9bd2eb1cc6 (IsA juneberry_holly holly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jungermanniaceae is a kind of moss family", "pln": ["(: cnet_isa_67f0a80ad6 (IsA jungermanniaceae moss_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jungermanniale is a kind of plant order", "pln": ["(: cnet_isa_2fdf91ede7 (IsA jungermanniale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jungian is a kind of follower", "pln": ["(: cnet_isa_b53cbc2e9f (IsA jungian follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jungian psychology is a kind of psychotherapy", "pln": ["(: cnet_isa_3fd881dbdb (IsA jungian_psychology psychotherapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jungle is a kind of forest", "pln": ["(: cnet_isa_9fae5a0428 (IsA jungle forest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jungle is a kind of location", "pln": ["(: cnet_isa_aa795d94ae (IsA jungle location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jungle cat is a kind of wildcat", "pln": ["(: cnet_isa_1bffeb62dc (IsA jungle_cat wildcat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jungle cock is a kind of jungle fowl", "pln": ["(: cnet_isa_93bd9d325e (IsA jungle_cock jungle_fowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jungle fever is a kind of malaria", "pln": ["(: cnet_isa_29b28995b1 (IsA jungle_fever malaria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jungle fowl is a kind of gallinaceous bird", "pln": ["(: cnet_isa_f0547451aa (IsA jungle_fowl gallinaceous_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jungle gym is a kind of plaything", "pln": ["(: cnet_isa_c263de8cc3 (IsA jungle_gym plaything) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jungle gym is a kind of structure", "pln": ["(: cnet_isa_df58de4e43 (IsA jungle_gym structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jungle hen is a kind of jungle fowl", "pln": ["(: cnet_isa_0e930da849 (IsA jungle_hen jungle_fowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jungle rot is a kind of skin disease", "pln": ["(: cnet_isa_05c883f192 (IsA jungle_rot skin_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "junin virus is a kind of arenavirus", "pln": ["(: cnet_isa_83272863be (IsA junin_virus arenavirus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "junior is a kind of lowerclassman", "pln": ["(: cnet_isa_d3b00cc5d5 (IsA junior lowerclassman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "junior is a kind of person", "pln": ["(: cnet_isa_33dfabe0f3 (IsA junior person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "junior is a kind of upstart", "pln": ["(: cnet_isa_f722c51dc2 (IsA junior upstart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "junior class is a kind of class", "pln": ["(: cnet_isa_35db31945a (IsA junior_class class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "junior college is a kind of college", "pln": ["(: cnet_isa_9d7b5f314c (IsA junior_college college) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "junior featherweight is a kind of boxer", "pln": ["(: cnet_isa_07dc7622ef (IsA junior_featherweight boxer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "junior high school is a kind of secondary school", "pln": ["(: cnet_isa_db7e35dcc2 (IsA junior_high_school secondary_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "junior lightweight is a kind of boxer", "pln": ["(: cnet_isa_5e09eca215 (IsA junior_lightweight boxer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "junior middleweight is a kind of boxer", "pln": ["(: cnet_isa_a8cf68c821 (IsA junior_middleweight boxer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "junior school is a kind of grade school", "pln": ["(: cnet_isa_2f27bfdbe0 (IsA junior_school grade_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "junior status is a kind of subordinateness", "pln": ["(: cnet_isa_0a6c9b30e8 (IsA junior_status subordinateness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "junior varsity is a kind of team", "pln": ["(: cnet_isa_f42cf955ab (IsA junior_varsity team) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "junior welterweight is a kind of boxer", "pln": ["(: cnet_isa_cc72076beb (IsA junior_welterweight boxer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juniper is a kind of cypress", "pln": ["(: cnet_isa_44ee94366b (IsA juniper cypress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juniper berry is a kind of flavorer", "pln": ["(: cnet_isa_429c4bbc54 (IsA juniper_berry flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juniper berry is a kind of fruit", "pln": ["(: cnet_isa_175a696f41 (IsA juniper_berry fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juniperic acid is a kind of hydroxy acid", "pln": ["(: cnet_isa_fe469a4f54 (IsA juniperic_acid hydroxy_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juniperus is a kind of gymnosperm genus", "pln": ["(: cnet_isa_e37e6e4255 (IsA juniperus gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "junk is a kind of boat", "pln": ["(: cnet_isa_57fa57126b (IsA junk boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "junk bond is a kind of bond", "pln": ["(: cnet_isa_bf86df4845 (IsA junk_bond bond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "junk dna is a kind of deoxyribonucleic acid", "pln": ["(: cnet_isa_9f3d2bb7bd (IsA junk_dna deoxyribonucleic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "junk food is a kind of food", "pln": ["(: cnet_isa_8f5ce778f2 (IsA junk_food food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "junk mail is a kind of third class mail", "pln": ["(: cnet_isa_5cd5844f56 (IsA junk_mail third_class_mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "junk shop is a kind of shop", "pln": ["(: cnet_isa_901e86b205 (IsA junk_shop shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "junker is a kind of prussian", "pln": ["(: cnet_isa_331baf0786 (IsA junker prussian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "junket is a kind of trip", "pln": ["(: cnet_isa_8ad6237e31 (IsA junket trip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "junket is a kind of dessert", "pln": ["(: cnet_isa_349bae6410 (IsA junket dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "junketing is a kind of travel", "pln": ["(: cnet_isa_7872e894c2 (IsA junketing travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "junkyard is a kind of yard", "pln": ["(: cnet_isa_36ea6a167e (IsA junkyard yard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jupati is a kind of raffia palm", "pln": ["(: cnet_isa_8312f02a11 (IsA jupati raffia_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jupiter s beard is a kind of shrub", "pln": ["(: cnet_isa_8efb7583f5 (IsA jupiter_s_beard shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jupiter is a kind of gas planet", "pln": ["(: cnet_isa_8174891151 (IsA jupiter gas_planet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jupiter is a kind of much larger than earth", "pln": ["(: cnet_isa_393dc71045 (IsA jupiter much_larger_than_earth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jupiter is a kind of planet", "pln": ["(: cnet_isa_bb60372e0d (IsA jupiter planet) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "jurisdiction is a kind of district", "pln": ["(: cnet_isa_8458cd2cbd (IsA jurisdiction district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jurisprudence is a kind of philosophy", "pln": ["(: cnet_isa_268541f8a2 (IsA jurisprudence philosophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jurist is a kind of expert", "pln": ["(: cnet_isa_b35d3a7286 (IsA jurist expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juror is a kind of panelist", "pln": ["(: cnet_isa_e1d6b13d36 (IsA juror panelist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jury is a kind of body", "pln": ["(: cnet_isa_ae64a91509 (IsA jury body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jury is a kind of committee", "pln": ["(: cnet_isa_453d122db8 (IsA jury committee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jury box is a kind of box", "pln": ["(: cnet_isa_94fca9ca0d (IsA jury_box box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jury duty is a kind of civic duty", "pln": ["(: cnet_isa_abd7e48edf (IsA jury_duty civic_duty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jury mast is a kind of mast", "pln": ["(: cnet_isa_7e7dc6c321 (IsA jury_mast mast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jury system is a kind of legal system", "pln": ["(: cnet_isa_5fad027825 (IsA jury_system legal_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jus sanguinis is a kind of legal principle", "pln": ["(: cnet_isa_71c9e4f22e (IsA jus_sanguinis legal_principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jus soli is a kind of legal principle", "pln": ["(: cnet_isa_b4cf5d48c0 (IsA jus_soli legal_principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "just noticeable difference is a kind of difference threshold", "pln": ["(: cnet_isa_014886020b (IsA just_noticeable_difference difference_threshold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "justice is a kind of judgment", "pln": ["(: cnet_isa_4e0d7d0f5a (IsA justice judgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "justice is a kind of natural virtue", "pln": ["(: cnet_isa_7d5b948160 (IsA justice natural_virtue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "justice is a kind of righteousness", "pln": ["(: cnet_isa_5c178f12a2 (IsA justice righteousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "justice of peace is a kind of magistrate", "pln": ["(: cnet_isa_0f63eabad0 (IsA justice_of_peace magistrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "justiciar is a kind of judge", "pln": ["(: cnet_isa_d68699f691 (IsA justiciar judge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "justiciary is a kind of jurisdiction", "pln": ["(: cnet_isa_c1362cf23b (IsA justiciary jurisdiction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "justification is a kind of vindication", "pln": ["(: cnet_isa_f1149874c7 (IsA justification vindication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "justification is a kind of circumstance", "pln": ["(: cnet_isa_0717b4a4a6 (IsA justification circumstance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "justification is a kind of explanation", "pln": ["(: cnet_isa_a12f423c6b (IsA justification explanation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "justness is a kind of conformity", "pln": ["(: cnet_isa_ebdeb19b70 (IsA justness conformity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jute is a kind of european", "pln": ["(: cnet_isa_aacf8c95fc (IsA jute european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jute is a kind of plant fiber", "pln": ["(: cnet_isa_95949097be (IsA jute plant_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juvenescence is a kind of growth", "pln": ["(: cnet_isa_efac0fdfc9 (IsA juvenescence growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juvenile is a kind of person", "pln": ["(: cnet_isa_5fdff907cb (IsA juvenile person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juvenile body is a kind of human body", "pln": ["(: cnet_isa_be6dc1499b (IsA juvenile_body human_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juvenile court is a kind of court", "pln": ["(: cnet_isa_1d2f136952 (IsA juvenile_court court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juvenile wart is a kind of wart", "pln": ["(: cnet_isa_fef88da4ae (IsA juvenile_wart wart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juxtaposition is a kind of placement", "pln": ["(: cnet_isa_6a63c96e31 (IsA juxtaposition placement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "juxtaposition is a kind of position", "pln": ["(: cnet_isa_84fd74887b (IsA juxtaposition position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "jynx is a kind of bird genus", "pln": ["(: cnet_isa_cad241cc41 (IsA jynx bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "k is a kind of ketamine", "pln": ["(: cnet_isa_0b868a638a (IsA k ketamine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "k is a kind of letter", "pln": ["(: cnet_isa_e736460add (IsA k letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "k ration is a kind of field ration", "pln": ["(: cnet_isa_08377ab1b6 (IsA k_ration field_ration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ka ba is a kind of place of worship", "pln": ["(: cnet_isa_f7b190ea56 (IsA ka_ba place_of_worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kabbalah is a kind of theosophy", "pln": ["(: cnet_isa_6f2db02243 (IsA kabbalah theosophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kabbalism is a kind of attachment", "pln": ["(: cnet_isa_3219d9aee7 (IsA kabbalism attachment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kabbalism is a kind of doctrine", "pln": ["(: cnet_isa_71983871a6 (IsA kabbalism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kabbalist is a kind of scholar", "pln": ["(: cnet_isa_571ad8880c (IsA kabbalist scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kabob is a kind of dish", "pln": ["(: cnet_isa_570e042f5b (IsA kabob dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kachin is a kind of tibeto burman", "pln": ["(: cnet_isa_08d00e41e2 (IsA kachin tibeto_burman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kachina is a kind of doll", "pln": ["(: cnet_isa_c5c4b8162c (IsA kachina doll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kachina is a kind of dancer", "pln": ["(: cnet_isa_301520623b (IsA kachina dancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kachina is a kind of spirit", "pln": ["(: cnet_isa_d2b5727a81 (IsA kachina spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kadai is a kind of sino tibetan", "pln": ["(: cnet_isa_e86d72e503 (IsA kadai sino_tibetan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kaffir is a kind of black african", "pln": ["(: cnet_isa_7c3019deac (IsA kaffir black_african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kaffir boom is a kind of coral tree", "pln": ["(: cnet_isa_267923d490 (IsA kaffir_boom coral_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kaffir bread is a kind of cycad", "pln": ["(: cnet_isa_f4e409e899 (IsA kaffir_bread cycad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kaffir cat is a kind of wildcat", "pln": ["(: cnet_isa_851ac42acc (IsA kaffir_cat wildcat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kaffiyeh is a kind of headdress", "pln": ["(: cnet_isa_7c009ab053 (IsA kaffiyeh headdress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kafir is a kind of afghanistani", "pln": ["(: cnet_isa_0cf7256e11 (IsA kafir afghanistani) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kafiri is a kind of dard", "pln": ["(: cnet_isa_9bcdde9d32 (IsA kafiri dard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kahikatea is a kind of conifer", "pln": ["(: cnet_isa_86694396c7 (IsA kahikatea conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kahlua is a kind of coffee liqueur", "pln": ["(: cnet_isa_1d7fc0fc85 (IsA kahlua coffee_liqueur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kai apple is a kind of edible fruit", "pln": ["(: cnet_isa_cd5a2f4d7d (IsA kai_apple edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kainite is a kind of mineral", "pln": ["(: cnet_isa_7987ebf91f (IsA kainite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kaiser is a kind of emperor", "pln": ["(: cnet_isa_7ee075590f (IsA kaiser emperor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kaiser roll is a kind of bun", "pln": ["(: cnet_isa_1e87210302 (IsA kaiser_roll bun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kakatoe is a kind of bird genus", "pln": ["(: cnet_isa_df9127b4e4 (IsA kakatoe bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kakemono is a kind of hanging", "pln": ["(: cnet_isa_62b0707256 (IsA kakemono hanging) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kaki is a kind of stilt", "pln": ["(: cnet_isa_ec27675d8c (IsA kaki stilt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kakke disease is a kind of beriberi", "pln": ["(: cnet_isa_fa23c16167 (IsA kakke_disease beriberi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kalansuwa is a kind of cap", "pln": ["(: cnet_isa_b77cde218e (IsA kalansuwa cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kalapooian is a kind of penutian", "pln": ["(: cnet_isa_ca3914953f (IsA kalapooian penutian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kalashnikov is a kind of submachine gun", "pln": ["(: cnet_isa_5c8709b2cb (IsA kalashnikov submachine_gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kalashnikov culture is a kind of culture", "pln": ["(: cnet_isa_83e2a782a7 (IsA kalashnikov_culture culture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kale is a kind of cabbage", "pln": ["(: cnet_isa_1144878320 (IsA kale cabbage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kale is a kind of crucifer", "pln": ["(: cnet_isa_e7f398a8f7 (IsA kale crucifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kaleidoscope is a kind of plaything", "pln": ["(: cnet_isa_16e7952b6e (IsA kaleidoscope plaything) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kaleidoscope is a kind of form", "pln": ["(: cnet_isa_11ff522b79 (IsA kaleidoscope form) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kalemia is a kind of state", "pln": ["(: cnet_isa_5f33a50fad (IsA kalemia state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kaliuresis is a kind of symptom", "pln": ["(: cnet_isa_c5f08dc713 (IsA kaliuresis symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kallay s juniper is a kind of plant", "pln": ["(: cnet_isa_a3f9cf4a38 (IsA kallay_s_juniper plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kallman s syndrome is a kind of hypogonadism", "pln": ["(: cnet_isa_5c5ed395bc (IsA kallman_s_syndrome hypogonadism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kalmia is a kind of shrub", "pln": ["(: cnet_isa_ca8b1707ee (IsA kalmia shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kalon tripa is a kind of president", "pln": ["(: cnet_isa_7ae673c35e (IsA kalon_tripa president) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kaloterme is a kind of arthropod genus", "pln": ["(: cnet_isa_718d7cf147 (IsA kaloterme arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kalotermitidae is a kind of arthropod family", "pln": ["(: cnet_isa_bfa15d3f74 (IsA kalotermitidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kalumpang is a kind of sterculia", "pln": ["(: cnet_isa_d12c46f9c4 (IsA kalumpang sterculia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kam sui is a kind of kadai", "pln": ["(: cnet_isa_67d2ee2787 (IsA kam_sui kadai) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kamarupan is a kind of tibeto burman", "pln": ["(: cnet_isa_98650025d5 (IsA kamarupan tibeto_burman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kamba is a kind of bantu", "pln": ["(: cnet_isa_f8d6ea8dac (IsA kamba bantu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kamchatkan sea eagle is a kind of sea eagle", "pln": ["(: cnet_isa_0faa462c83 (IsA kamchatkan_sea_eagle sea_eagle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kameez is a kind of tunic", "pln": ["(: cnet_isa_2fe36a7023 (IsA kameez tunic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kamia is a kind of yuman", "pln": ["(: cnet_isa_56623a7afc (IsA kamia yuman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kamia is a kind of hoka", "pln": ["(: cnet_isa_ff7a982426 (IsA kamia hoka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kamikaze is a kind of fighter", "pln": ["(: cnet_isa_fce689211c (IsA kamikaze fighter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kamikaze is a kind of pilot", "pln": ["(: cnet_isa_5a3dc9d0f5 (IsA kamikaze pilot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kamikaze is a kind of suicide bomber", "pln": ["(: cnet_isa_e640260d5a (IsA kamikaze suicide_bomber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kampong is a kind of village", "pln": ["(: cnet_isa_7576268572 (IsA kampong village) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kampuchean is a kind of asiatic", "pln": ["(: cnet_isa_f9888154fb (IsA kampuchean asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kanchil is a kind of chevrotain", "pln": ["(: cnet_isa_c136db0fb7 (IsA kanchil chevrotain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kangaroo is a kind of marsupial", "pln": ["(: cnet_isa_be3de3b70a (IsA kangaroo marsupial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kangaroo apple is a kind of nightshade", "pln": ["(: cnet_isa_8dc47039ea (IsA kangaroo_apple nightshade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kangaroo court is a kind of court", "pln": ["(: cnet_isa_6f7f2dc463 (IsA kangaroo_court court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kangaroo mouse is a kind of jerboa rat", "pln": ["(: cnet_isa_0bfdc6a7de (IsA kangaroo_mouse jerboa_rat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kangaroo mouse is a kind of pocket rat", "pln": ["(: cnet_isa_1753107450 (IsA kangaroo_mouse pocket_rat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kangaroo paw is a kind of herb", "pln": ["(: cnet_isa_08dd8e2980 (IsA kangaroo_paw herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kangaroo rat is a kind of pocket rat", "pln": ["(: cnet_isa_5bb9398df5 (IsA kangaroo_rat pocket_rat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kannada is a kind of south dravidian", "pln": ["(: cnet_isa_9109c24011 (IsA kannada south_dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kansa is a kind of dhegiha", "pln": ["(: cnet_isa_b77e3c4256 (IsA kansa dhegiha) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kansan is a kind of american", "pln": ["(: cnet_isa_9cf9c66826 (IsA kansan american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kanzu is a kind of garment", "pln": ["(: cnet_isa_9cc080a356 (IsA kanzu garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kaoliang is a kind of grain sorghum", "pln": ["(: cnet_isa_2fa6a06a0c (IsA kaoliang grain_sorghum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kaolinite is a kind of mineral", "pln": ["(: cnet_isa_04aa87ef83 (IsA kaolinite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kaon is a kind of elementary particle", "pln": ["(: cnet_isa_fcea124a15 (IsA kaon elementary_particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kaon is a kind of meson", "pln": ["(: cnet_isa_6ddd5d2092 (IsA kaon meson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kapeika is a kind of belarusian monetary unit", "pln": ["(: cnet_isa_bc3f104038 (IsA kapeika belarusian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kaph is a kind of letter", "pln": ["(: cnet_isa_3366d47685 (IsA kaph letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kapok is a kind of angiospermous tree", "pln": ["(: cnet_isa_26632f9b46 (IsA kapok angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kapok is a kind of plant fiber", "pln": ["(: cnet_isa_3098cba08a (IsA kapok plant_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kaposi s sarcoma is a kind of sarcoma", "pln": ["(: cnet_isa_0dea920747 (IsA kaposi_s_sarcoma sarcoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kappa is a kind of letter", "pln": ["(: cnet_isa_36b966a96d (IsA kappa letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kapuka is a kind of shrub", "pln": ["(: cnet_isa_50fd30d9cf (IsA kapuka shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "karaite is a kind of sect", "pln": ["(: cnet_isa_2bed668717 (IsA karaite sect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "karakalpak is a kind of turki", "pln": ["(: cnet_isa_f002cb0f21 (IsA karakalpak turki) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "karaoke is a kind of leisure activity", "pln": ["(: cnet_isa_5aa1bf495c (IsA karaoke leisure_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "karaoke is a kind of singing", "pln": ["(: cnet_isa_fae59ab371 (IsA karaoke singing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "karat is a kind of unit of measurement", "pln": ["(: cnet_isa_f85130f3b1 (IsA karat unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "karate is a kind of martial art", "pln": ["(: cnet_isa_365f24cd08 (IsA karate martial_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "karelian is a kind of baltic finnic", "pln": ["(: cnet_isa_bf348aea29 (IsA karelian baltic_finnic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "karen is a kind of tibeto burman", "pln": ["(: cnet_isa_af2a8c111d (IsA karen tibeto_burman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "karma is a kind of destiny", "pln": ["(: cnet_isa_c94a8ed17f (IsA karma destiny) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "karok is a kind of quoratean", "pln": ["(: cnet_isa_6475e0e741 (IsA karok quoratean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "karok is a kind of hoka", "pln": ["(: cnet_isa_1818dfd55a (IsA karok hoka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kartik is a kind of hindu calendar month", "pln": ["(: cnet_isa_d07039a0d0 (IsA kartik hindu_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "karyokinesis is a kind of organic process", "pln": ["(: cnet_isa_af1f709e43 (IsA karyokinesis organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "karyolymph is a kind of liquid body substance", "pln": ["(: cnet_isa_f03c3047ce (IsA karyolymph liquid_body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "karyolysis is a kind of lysis", "pln": ["(: cnet_isa_7e6cf794cc (IsA karyolysis lysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "karyotype is a kind of constitution", "pln": ["(: cnet_isa_6b8682c7f6 (IsA karyotype constitution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kasbah is a kind of quarter", "pln": ["(: cnet_isa_7c113d7126 (IsA kasbah quarter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kasha is a kind of hot cereal", "pln": ["(: cnet_isa_51c93dbfb7 (IsA kasha hot_cereal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kashag is a kind of advisory board", "pln": ["(: cnet_isa_95f0ec1a44 (IsA kashag advisory_board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kashmiri is a kind of dard", "pln": ["(: cnet_isa_e449f0ce58 (IsA kashmiri dard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kashmiri is a kind of indian", "pln": ["(: cnet_isa_6ad76e0440 (IsA kashmiri indian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kassite is a kind of natural language", "pln": ["(: cnet_isa_7a742e4bf3 (IsA kassite natural_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kat is a kind of stimulant", "pln": ["(: cnet_isa_e1343ce110 (IsA kat stimulant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "katabatic wind is a kind of wind", "pln": ["(: cnet_isa_37ffb4f899 (IsA katabatic_wind wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "katamorphism is a kind of metamorphism", "pln": ["(: cnet_isa_40d3aba8fc (IsA katamorphism metamorphism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "katari is a kind of arabian", "pln": ["(: cnet_isa_bf15ac7a2e (IsA katari arabian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "katharevusa is a kind of modern greek", "pln": ["(: cnet_isa_15c1445382 (IsA katharevusa modern_greek) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "katharobe is a kind of organism", "pln": ["(: cnet_isa_224004979a (IsA katharobe organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "katharometer is a kind of measuring instrument", "pln": ["(: cnet_isa_520a34af7a (IsA katharometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "katsura tree is a kind of angiospermous tree", "pln": ["(: cnet_isa_29f531c3c3 (IsA katsura_tree angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "katsuwonidae is a kind of fish family", "pln": ["(: cnet_isa_89df3e13f9 (IsA katsuwonidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "katsuwonus is a kind of fish genus", "pln": ["(: cnet_isa_b5be66ff99 (IsA katsuwonus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "katydid is a kind of long horned grasshopper", "pln": ["(: cnet_isa_824c24d18e (IsA katydid long_horned_grasshopper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kauri is a kind of kauri pine", "pln": ["(: cnet_isa_f7aa5c33dc (IsA kauri kauri_pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kauri is a kind of wood", "pln": ["(: cnet_isa_3c1d3dda0b (IsA kauri wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kauri is a kind of copal", "pln": ["(: cnet_isa_ca1aa29a62 (IsA kauri copal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kauri pine is a kind of conifer", "pln": ["(: cnet_isa_62177ac6ed (IsA kauri_pine conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kava is a kind of alcohol", "pln": ["(: cnet_isa_03349a357b (IsA kava alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kawaka is a kind of cedar", "pln": ["(: cnet_isa_a2410a73ac (IsA kawaka cedar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kawasaki disease is a kind of disease", "pln": ["(: cnet_isa_9457df4273 (IsA kawasaki_disease disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kayak is a kind of canoe", "pln": ["(: cnet_isa_d2f608f148 (IsA kayak canoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kayser fleischer ring is a kind of symptom", "pln": ["(: cnet_isa_f74ebb4f6c (IsA kayser_fleischer_ring symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kazak is a kind of turki", "pln": ["(: cnet_isa_1b741bbc9c (IsA kazak turki) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kazakh is a kind of turki", "pln": ["(: cnet_isa_779893cefd (IsA kazakh turki) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kazakhstani is a kind of asiatic", "pln": ["(: cnet_isa_133f7acb5f (IsA kazakhstani asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kazakhstani monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_269e36f0fb (IsA kazakhstani_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kazoo is a kind of wind instrument", "pln": ["(: cnet_isa_7939a404e9 (IsA kazoo wind_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kb is a kind of computer memory unit", "pln": ["(: cnet_isa_4d21680a8c (IsA kb computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kea is a kind of parrot", "pln": ["(: cnet_isa_2b4095923f (IsA kea parrot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kedgeree is a kind of dish", "pln": ["(: cnet_isa_c8fd8fac76 (IsA kedgeree dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keel is a kind of beam", "pln": ["(: cnet_isa_45cb60fb3c (IsA keel beam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keel is a kind of carina", "pln": ["(: cnet_isa_395f8d9636 (IsA keel carina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keel is a kind of projection", "pln": ["(: cnet_isa_19406e8b87 (IsA keel projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keelboat is a kind of river boat", "pln": ["(: cnet_isa_5a5ef34cb4 (IsA keelboat river_boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keeled garlic is a kind of alliaceous plant", "pln": ["(: cnet_isa_133bea4d87 (IsA keeled_garlic alliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keelson is a kind of beam", "pln": ["(: cnet_isa_16df6ce0ed (IsA keelson beam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keen is a kind of dirge", "pln": ["(: cnet_isa_bc9542319a (IsA keen dirge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keep is a kind of stronghold", "pln": ["(: cnet_isa_ed3959d920 (IsA keep stronghold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keeper is a kind of defender", "pln": ["(: cnet_isa_797827da06 (IsA keeper defender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keeping is a kind of conformity", "pln": ["(: cnet_isa_0f7d29955a (IsA keeping conformity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keepsake is a kind of object", "pln": ["(: cnet_isa_6ba2c0e028 (IsA keepsake object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keeshond is a kind of spitz", "pln": ["(: cnet_isa_9f43e20851 (IsA keeshond spitz) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "keg is a kind of barrel", "pln": ["(: cnet_isa_cab05c5400 (IsA keg barrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keg is a kind of containerful", "pln": ["(: cnet_isa_f3e3911ff0 (IsA keg containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kegel exercis is a kind of exercise", "pln": ["(: cnet_isa_667113e7df (IsA kegel_exercis exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kei apple is a kind of shrub", "pln": ["(: cnet_isa_58bfe15d69 (IsA kei_apple shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kekchi is a kind of maya", "pln": ["(: cnet_isa_a45a69ebad (IsA kekchi maya) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kekchi is a kind of mayan", "pln": ["(: cnet_isa_f0b130993c (IsA kekchi mayan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "keloid is a kind of scar", "pln": ["(: cnet_isa_c4e0c8d977 (IsA keloid scar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kelp is a kind of brown algae", "pln": ["(: cnet_isa_dfcda203e9 (IsA kelp brown_algae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kelp greenling is a kind of greenling", "pln": ["(: cnet_isa_c064295244 (IsA kelp_greenling greenling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kelpie is a kind of shepherd dog", "pln": ["(: cnet_isa_b7789ea827 (IsA kelpie shepherd_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kelpy is a kind of evil spirit", "pln": ["(: cnet_isa_ef4d3fbc0a (IsA kelpy evil_spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kelt is a kind of european", "pln": ["(: cnet_isa_4eaa30c623 (IsA kelt european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kelvin is a kind of temperature unit", "pln": ["(: cnet_isa_3e38ae31d9 (IsA kelvin temperature_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kelvin scale is a kind of temperature scale", "pln": ["(: cnet_isa_ed2d6304ff (IsA kelvin_scale temperature_scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kenaf is a kind of hemp", "pln": ["(: cnet_isa_d30550b301 (IsA kenaf hemp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kenaf is a kind of hibiscus", "pln": ["(: cnet_isa_e4507b4ccd (IsA kenaf hibiscus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kendal green is a kind of dye", "pln": ["(: cnet_isa_fdcab98397 (IsA kendal_green dye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kendall partial rank correlation is a kind of kendall test", "pln": ["(: cnet_isa_290af95663 (IsA kendall_partial_rank_correlation kendall_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kendall test is a kind of nonparametric statistic", "pln": ["(: cnet_isa_59ca6545f8 (IsA kendall_test nonparametric_statistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kennedia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_f199b4ee9a (IsA kennedia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kennel is a kind of outbuilding", "pln": ["(: cnet_isa_115f0bc6b9 (IsA kennel outbuilding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kennel is a kind of shelter", "pln": ["(: cnet_isa_4c1de74a97 (IsA kennel shelter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kenning is a kind of trope", "pln": ["(: cnet_isa_9c47756e2e (IsA kenning trope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kenosis is a kind of content", "pln": ["(: cnet_isa_fed28fe850 (IsA kenosis content) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kentish is a kind of middle english", "pln": ["(: cnet_isa_9afa0af45b (IsA kentish middle_english) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kentish is a kind of old english", "pln": ["(: cnet_isa_d2e8e2356e (IsA kentish old_english) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kentucky black bass is a kind of black bass", "pln": ["(: cnet_isa_6a74fcbe56 (IsA kentucky_black_bass black_bass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kentucky bluegrass is a kind of bluegrass", "pln": ["(: cnet_isa_ee2eda56c6 (IsA kentucky_bluegrass bluegrass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kentucky coffee tree is a kind of tree", "pln": ["(: cnet_isa_641e691583 (IsA kentucky_coffee_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kentucky derby is a kind of horse race", "pln": ["(: cnet_isa_d76bd16735 (IsA kentucky_derby horse_race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kentucky derby is a kind of thoroughbred race", "pln": ["(: cnet_isa_6116ea1a12 (IsA kentucky_derby thoroughbred_race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kentucky wonder is a kind of green bean", "pln": ["(: cnet_isa_cf88b97447 (IsA kentucky_wonder green_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kentucky yellowwood is a kind of angiospermous yellowwood", "pln": ["(: cnet_isa_ddf8d310df (IsA kentucky_yellowwood angiospermous_yellowwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kenyan is a kind of african", "pln": ["(: cnet_isa_67c5c5eae2 (IsA kenyan african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kenyan monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_5f3447560f (IsA kenyan_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kenyan shilling is a kind of kenyan monetary unit", "pln": ["(: cnet_isa_8fe5dd38bd (IsA kenyan_shilling kenyan_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kenyapithecus is a kind of mammal genus", "pln": ["(: cnet_isa_ec78616bda (IsA kenyapithecus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keogh plan is a kind of pension plan", "pln": ["(: cnet_isa_b23789408b (IsA keogh_plan pension_plan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kepi is a kind of cap", "pln": ["(: cnet_isa_e2e6874c7a (IsA kepi cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kepler s first law is a kind of kepler s law", "pln": ["(: cnet_isa_c12f651ff0 (IsA kepler_s_first_law kepler_s_law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kepler s law is a kind of law", "pln": ["(: cnet_isa_3c403586ab (IsA kepler_s_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kepler s second law is a kind of kepler s law", "pln": ["(: cnet_isa_16ea7f713a (IsA kepler_s_second_law kepler_s_law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kepler s third law is a kind of kepler s law", "pln": ["(: cnet_isa_ddc33e6bce (IsA kepler_s_third_law kepler_s_law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kera is a kind of east chadic", "pln": ["(: cnet_isa_1efdcd7450 (IsA kera east_chadic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keratalgia is a kind of pain", "pln": ["(: cnet_isa_a058bc41f9 (IsA keratalgia pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keratectasia is a kind of astigmatism", "pln": ["(: cnet_isa_b180302a5d (IsA keratectasia astigmatism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keratin is a kind of scleroprotein", "pln": ["(: cnet_isa_2e5a15225c (IsA keratin scleroprotein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "keratinization is a kind of organic process", "pln": ["(: cnet_isa_3872462874 (IsA keratinization organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keratitis is a kind of inflammation", "pln": ["(: cnet_isa_7bd79662ea (IsA keratitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keratoacanthoma is a kind of acanthoma", "pln": ["(: cnet_isa_cba3a7aed7 (IsA keratoacanthoma acanthoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keratocele is a kind of hernia", "pln": ["(: cnet_isa_112be860c7 (IsA keratocele hernia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keratoconjunctivitis is a kind of inflammation", "pln": ["(: cnet_isa_1a1e7887b1 (IsA keratoconjunctivitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "keratoconus is a kind of astigmatism", "pln": ["(: cnet_isa_4c7cd580b0 (IsA keratoconus astigmatism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keratoderma is a kind of skin disease", "pln": ["(: cnet_isa_a72e8d38b7 (IsA keratoderma skin_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keratohyalin is a kind of hyaline", "pln": ["(: cnet_isa_454cb0029f (IsA keratohyalin hyaline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keratoiritis is a kind of inflammation", "pln": ["(: cnet_isa_8cb0367367 (IsA keratoiritis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keratomalacia is a kind of symptom", "pln": ["(: cnet_isa_f7ca25ba41 (IsA keratomalacia symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keratomycosis is a kind of fungal infection", "pln": ["(: cnet_isa_364c1481e0 (IsA keratomycosis fungal_infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keratonosis is a kind of skin disease", "pln": ["(: cnet_isa_cfeaa7f24e (IsA keratonosis skin_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keratonosus is a kind of eye disease", "pln": ["(: cnet_isa_a04f772813 (IsA keratonosus eye_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keratoplasty is a kind of plastic surgery", "pln": ["(: cnet_isa_d81c1c4cb6 (IsA keratoplasty plastic_surgery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keratoplasty is a kind of transplant", "pln": ["(: cnet_isa_1ba28494c6 (IsA keratoplasty transplant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keratoscleritis is a kind of inflammation", "pln": ["(: cnet_isa_c75dbb445e (IsA keratoscleritis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keratoscope is a kind of medical instrument", "pln": ["(: cnet_isa_beb788be95 (IsA keratoscope medical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keratoscopy is a kind of examination", "pln": ["(: cnet_isa_6805ee04ab (IsA keratoscopy examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keratosis is a kind of skin disease", "pln": ["(: cnet_isa_1709d2c7c8 (IsA keratosis skin_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keratosis blennorrhagica is a kind of keratosis", "pln": ["(: cnet_isa_6e82d22f4e (IsA keratosis_blennorrhagica keratosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keratosis follicularis is a kind of keratosis", "pln": ["(: cnet_isa_0d1d7957c8 (IsA keratosis_follicularis keratosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keratosis pilaris is a kind of keratosis", "pln": ["(: cnet_isa_489ee2fe21 (IsA keratosis_pilaris keratosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keratotomy is a kind of eye operation", "pln": ["(: cnet_isa_b993b05efe (IsA keratotomy eye_operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kerb crawler is a kind of driver", "pln": ["(: cnet_isa_016b01378e (IsA kerb_crawler driver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kerchief is a kind of scarf", "pln": ["(: cnet_isa_ff74cf3a51 (IsA kerchief scarf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kerion is a kind of tinea", "pln": ["(: cnet_isa_c68379744a (IsA kerion tinea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kern is a kind of type", "pln": ["(: cnet_isa_ed6a4fca69 (IsA kern type) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kernel is a kind of content", "pln": ["(: cnet_isa_04ce49db45 (IsA kernel content) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kernel is a kind of grain", "pln": ["(: cnet_isa_878b81de4b (IsA kernel grain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kernel is a kind of plant part", "pln": ["(: cnet_isa_1197492833 (IsA kernel plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kernicterus is a kind of jaundice", "pln": ["(: cnet_isa_860c3d35e5 (IsA kernicterus jaundice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kernig s sign is a kind of symptom", "pln": ["(: cnet_isa_648a0b4934 (IsA kernig_s_sign symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kerning is a kind of important part of typography", "pln": ["(: cnet_isa_c9d837964d (IsA kerning important_part_of_typography) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kernite is a kind of mineral", "pln": ["(: cnet_isa_b5a23c0a73 (IsA kernite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kerosene is a kind of fuel", "pln": ["(: cnet_isa_7f942fddb5 (IsA kerosene fuel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kerosene is a kind of hydrocarbon", "pln": ["(: cnet_isa_eb6acf38a1 (IsA kerosene hydrocarbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kerr cell is a kind of optical device", "pln": ["(: cnet_isa_8b6f9437b1 (IsA kerr_cell optical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kerry blue terrier is a kind of terrier", "pln": ["(: cnet_isa_3178bf057a (IsA kerry_blue_terrier terrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kerygma is a kind of sermon", "pln": ["(: cnet_isa_3d40b8fc4d (IsA kerygma sermon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kestrel is a kind of falcon", "pln": ["(: cnet_isa_0ab4f0dd4d (IsA kestrel falcon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ketamine is a kind of club drug", "pln": ["(: cnet_isa_d4fde48458 (IsA ketamine club_drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ketamine is a kind of general anesthetic", "pln": ["(: cnet_isa_974443e350 (IsA ketamine general_anesthetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ketch is a kind of sailing vessel", "pln": ["(: cnet_isa_9094972665 (IsA ketch sailing_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ketchup is a kind of condiment", "pln": ["(: cnet_isa_5299f044df (IsA ketchup condiment) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keteleeria is a kind of conifer", "pln": ["(: cnet_isa_0bdd0ceab9 (IsA keteleeria conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ketembilla is a kind of edible fruit", "pln": ["(: cnet_isa_bcc6f91b29 (IsA ketembilla edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ketembilla is a kind of tree", "pln": ["(: cnet_isa_8f3abbbc36 (IsA ketembilla tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ketoacidosis is a kind of acidosis", "pln": ["(: cnet_isa_accfb5367d (IsA ketoacidosis acidosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ketohexose is a kind of hexose", "pln": ["(: cnet_isa_4c4dac4147 (IsA ketohexose hexose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ketohexose is a kind of ketose", "pln": ["(: cnet_isa_95056877eb (IsA ketohexose ketose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ketone is a kind of organic compound", "pln": ["(: cnet_isa_37d3aa0c58 (IsA ketone organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ketone body is a kind of ketone", "pln": ["(: cnet_isa_d2e1543601 (IsA ketone_body ketone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ketone group is a kind of group", "pln": ["(: cnet_isa_8e80c189bd (IsA ketone_group group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ketonemia is a kind of symptom", "pln": ["(: cnet_isa_38206ddac5 (IsA ketonemia symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ketonuria is a kind of symptom", "pln": ["(: cnet_isa_17bd544c48 (IsA ketonuria symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ketose is a kind of monosaccharide", "pln": ["(: cnet_isa_1046f91a89 (IsA ketose monosaccharide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ketosteroid is a kind of steroid", "pln": ["(: cnet_isa_15ce23c68a (IsA ketosteroid steroid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kettle is a kind of percussion instrument", "pln": ["(: cnet_isa_939a21e4d5 (IsA kettle percussion_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kettle is a kind of pot", "pln": ["(: cnet_isa_a07a2b0746 (IsA kettle pot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kettle is a kind of containerful", "pln": ["(: cnet_isa_9d7e067e0a (IsA kettle containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kettle hole is a kind of hole", "pln": ["(: cnet_isa_d1c4cae72f (IsA kettle_hole hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keurboom is a kind of tree", "pln": ["(: cnet_isa_158183fc34 (IsA keurboom tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "key is a kind of device", "pln": ["(: cnet_isa_774af890d6 (IsA key device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "key is a kind of lever", "pln": ["(: cnet_isa_2dede94b2f (IsA key lever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "key is a kind of pitch", "pln": ["(: cnet_isa_c1f157354b (IsA key pitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "key is a kind of space", "pln": ["(: cnet_isa_533a2556b6 (IsA key space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "key is a kind of explanation", "pln": ["(: cnet_isa_1b03a886a1 (IsA key explanation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "key is a kind of list", "pln": ["(: cnet_isa_0fc4d99283 (IsA key list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "key is a kind of musical notation", "pln": ["(: cnet_isa_4f962debe5 (IsA key musical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "key is a kind of positive identification", "pln": ["(: cnet_isa_6c0f4bbdfe (IsA key positive_identification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "key is a kind of coral reef", "pln": ["(: cnet_isa_7dc31ca2f0 (IsA key coral_reef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "key is a kind of kilogram", "pln": ["(: cnet_isa_aa6e79825d (IsA key kilogram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "key lime is a kind of lime", "pln": ["(: cnet_isa_eb6cd08ac1 (IsA key_lime lime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "key palm is a kind of fan palm", "pln": ["(: cnet_isa_e569221b4b (IsA key_palm fan_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "key ring is a kind of hoop", "pln": ["(: cnet_isa_3c5b1edbc8 (IsA key_ring hoop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "key signature is a kind of musical notation", "pln": ["(: cnet_isa_197225dd04 (IsA key_signature musical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "key stroke is a kind of stroke", "pln": ["(: cnet_isa_9dcd2d8814 (IsA key_stroke stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "key word is a kind of key", "pln": ["(: cnet_isa_66038c5dd7 (IsA key_word key) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "key word is a kind of word", "pln": ["(: cnet_isa_d205fb8c29 (IsA key_word word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keyboard is a kind of device", "pln": ["(: cnet_isa_53c837ad29 (IsA keyboard device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keyboard is a kind of holder", "pln": ["(: cnet_isa_6e9fe7da86 (IsA keyboard holder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keyboard buffer is a kind of buffer", "pln": ["(: cnet_isa_fa9cb1d3dd (IsA keyboard_buffer buffer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keyboard instrument is a kind of musical instrument", "pln": ["(: cnet_isa_89b27fbb4f (IsA keyboard_instrument musical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keyboardist is a kind of musician", "pln": ["(: cnet_isa_2e4aa4f314 (IsA keyboardist musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keycard is a kind of card", "pln": ["(: cnet_isa_d43554de09 (IsA keycard card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keyhole is a kind of hole", "pln": ["(: cnet_isa_48d44569dc (IsA keyhole hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keyhole limpet is a kind of limpet", "pln": ["(: cnet_isa_cf8362030d (IsA keyhole_limpet limpet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keyhole saw is a kind of handsaw", "pln": ["(: cnet_isa_68dfb29e0b (IsA keyhole_saw handsaw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keynesian is a kind of follower", "pln": ["(: cnet_isa_6d061c23f9 (IsA keynesian follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "keynesianism is a kind of economic theory", "pln": ["(: cnet_isa_897f023f53 (IsA keynesianism economic_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keynote is a kind of idea", "pln": ["(: cnet_isa_c79a5ca794 (IsA keynote idea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keynote is a kind of subject", "pln": ["(: cnet_isa_81bac2ff08 (IsA keynote subject) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "keynote speech is a kind of oratory", "pln": ["(: cnet_isa_e1b2831a1c (IsA keynote_speech oratory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keystone is a kind of building block", "pln": ["(: cnet_isa_713ca7ffa5 (IsA keystone building_block) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "keystone stater is a kind of american", "pln": ["(: cnet_isa_6d7fba6e6c (IsA keystone_stater american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "khadi is a kind of fabric", "pln": ["(: cnet_isa_d9bc59b459 (IsA khadi fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "khaki is a kind of fabric", "pln": ["(: cnet_isa_a87dfaa13c (IsA khaki fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "khakis is a kind of military uniform", "pln": ["(: cnet_isa_82696670f7 (IsA khakis military_uniform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "khalka is a kind of mongolian", "pln": ["(: cnet_isa_d3b2730e0e (IsA khalka mongolian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "khalkha is a kind of mongolian", "pln": ["(: cnet_isa_cebc7d6aa7 (IsA khalkha mongolian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "khalsa is a kind of religion", "pln": ["(: cnet_isa_e01489593e (IsA khalsa religion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "khamsin is a kind of wind", "pln": ["(: cnet_isa_09ebb6d0a5 (IsA khamsin wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "khamti is a kind of tai", "pln": ["(: cnet_isa_e0003c0fcd (IsA khamti tai) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "khan is a kind of ruler", "pln": ["(: cnet_isa_fa19a40778 (IsA khan ruler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "khanate is a kind of position", "pln": ["(: cnet_isa_403618f514 (IsA khanate position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "khanate is a kind of domain", "pln": ["(: cnet_isa_89f5107d2d (IsA khanate domain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "khanty is a kind of ugric", "pln": ["(: cnet_isa_b782ff7e21 (IsA khanty ugric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "khanty is a kind of russian", "pln": ["(: cnet_isa_a6947b8191 (IsA khanty russian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "khaya is a kind of rosid dicot genus", "pln": ["(: cnet_isa_a2da1443e1 (IsA khaya rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "khedive is a kind of viceroy", "pln": ["(: cnet_isa_5a66ef3f6b (IsA khedive viceroy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "khimar is a kind of headscarf", "pln": ["(: cnet_isa_e56f1ea925 (IsA khimar headscarf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "khirghiz is a kind of turki", "pln": ["(: cnet_isa_c36e1738dd (IsA khirghiz turki) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "khmer is a kind of mon khmer", "pln": ["(: cnet_isa_97d5855a5d (IsA khmer mon_khmer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "khmer is a kind of kampuchean", "pln": ["(: cnet_isa_2fbeca3535 (IsA khmer kampuchean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "khoikhoin is a kind of khoisan", "pln": ["(: cnet_isa_d235ac58ec (IsA khoikhoin khoisan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "khoisan is a kind of natural language", "pln": ["(: cnet_isa_3a33f023c0 (IsA khoisan natural_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "khoum is a kind of mauritanian monetary unit", "pln": ["(: cnet_isa_040558bc21 (IsA khoum mauritanian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "khowar is a kind of dard", "pln": ["(: cnet_isa_749a543f7e (IsA khowar dard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "khuen is a kind of tai", "pln": ["(: cnet_isa_b29996593e (IsA khuen tai) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "khukuri is a kind of knife", "pln": ["(: cnet_isa_fc1ddad0f7 (IsA khukuri knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kia quen is a kind of torture", "pln": ["(: cnet_isa_f687a563ad (IsA kia_quen torture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kiang is a kind of wild ass", "pln": ["(: cnet_isa_58425189d0 (IsA kiang wild_ass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kibble is a kind of bucket", "pln": ["(: cnet_isa_f02820456d (IsA kibble bucket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kibble is a kind of meal", "pln": ["(: cnet_isa_01a96dd500 (IsA kibble meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kibbutz is a kind of collective farm", "pln": ["(: cnet_isa_7197c725c6 (IsA kibbutz collective_farm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kibbutznik is a kind of member", "pln": ["(: cnet_isa_59685105b4 (IsA kibbutznik member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kibe is a kind of chilblain", "pln": ["(: cnet_isa_4fc1a304df (IsA kibe chilblain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kibibit is a kind of computer memory unit", "pln": ["(: cnet_isa_d71f944077 (IsA kibibit computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kibitzer is a kind of meddler", "pln": ["(: cnet_isa_eec6205344 (IsA kibitzer meddler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kichaga is a kind of bantu", "pln": ["(: cnet_isa_2ca1e3c803 (IsA kichaga bantu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kichai is a kind of caddo", "pln": ["(: cnet_isa_ec88ba2947 (IsA kichai caddo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kick is a kind of blow", "pln": ["(: cnet_isa_8660876c60 (IsA kick blow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kick is a kind of motion", "pln": ["(: cnet_isa_7d0a179123 (IsA kick motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kick is a kind of stimulation", "pln": ["(: cnet_isa_62300f2b67 (IsA kick stimulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kick in butt is a kind of corporal punishment", "pln": ["(: cnet_isa_8c17bb9fa0 (IsA kick_in_butt corporal_punishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kick pleat is a kind of pleat", "pln": ["(: cnet_isa_768be495e4 (IsA kick_pleat pleat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kick starter is a kind of starter", "pln": ["(: cnet_isa_85715fc900 (IsA kick_starter starter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kick turn is a kind of turn", "pln": ["(: cnet_isa_1e81d1d42b (IsA kick_turn turn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kick up is a kind of exercise", "pln": ["(: cnet_isa_dd0898133b (IsA kick_up exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kickapoo is a kind of algonquian", "pln": ["(: cnet_isa_cd4426d536 (IsA kickapoo algonquian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kickapoo is a kind of algonquin", "pln": ["(: cnet_isa_2242a38057 (IsA kickapoo algonquin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kickback is a kind of bribe", "pln": ["(: cnet_isa_6ccc77494e (IsA kickback bribe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kicker is a kind of football player", "pln": ["(: cnet_isa_681ab670d9 (IsA kicker football_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kickoff is a kind of start", "pln": ["(: cnet_isa_65f602d974 (IsA kickoff start) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kickoff is a kind of beginning", "pln": ["(: cnet_isa_51f05456dc (IsA kickoff beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kickoff is a kind of place kick", "pln": ["(: cnet_isa_5130b8b884 (IsA kickoff place_kick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kicksorter is a kind of scientific instrument", "pln": ["(: cnet_isa_687ee523f7 (IsA kicksorter scientific_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kickstand is a kind of rod", "pln": ["(: cnet_isa_6b66894f0a (IsA kickstand rod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kid is a kind of goat", "pln": ["(: cnet_isa_6c40fd0faf (IsA kid goat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kid is a kind of leather", "pln": ["(: cnet_isa_876bce44ee (IsA kid leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kid glove is a kind of glove", "pln": ["(: cnet_isa_98cb5c95f5 (IsA kid_glove glove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kiddy is a kind of child", "pln": ["(: cnet_isa_6b20f327c5 (IsA kiddy child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kidnapper is a kind of captor", "pln": ["(: cnet_isa_92524ebfc2 (IsA kidnapper captor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kidnapper is a kind of criminal", "pln": ["(: cnet_isa_0e110c3549 (IsA kidnapper criminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kidnapping is a kind of capture", "pln": ["(: cnet_isa_2c10785f51 (IsA kidnapping capture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kidney is a kind of excretory organ", "pln": ["(: cnet_isa_6bc39bce92 (IsA kidney excretory_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kidney bean is a kind of common bean", "pln": ["(: cnet_isa_fd7dd9eb07 (IsA kidney_bean common_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kidney disease is a kind of uropathy", "pln": ["(: cnet_isa_728d337bf9 (IsA kidney_disease uropathy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kidney fern is a kind of bristle fern", "pln": ["(: cnet_isa_3342040e9a (IsA kidney_fern bristle_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kidney pie is a kind of meat pie", "pln": ["(: cnet_isa_e989e450be (IsA kidney_pie meat_pie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kidney stone is a kind of calculus", "pln": ["(: cnet_isa_a9ded75cbb (IsA kidney_stone calculus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kidney vetch is a kind of herb", "pln": ["(: cnet_isa_47bd376237 (IsA kidney_vetch herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kidney is a kind of organ in body", "pln": ["(: cnet_isa_6317245171 (IsA kidney organ_in_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kieserite is a kind of mineral", "pln": ["(: cnet_isa_c6561ca803 (IsA kieserite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kiggelaria is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_2cb2eec997 (IsA kiggelaria dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kike is a kind of israelite", "pln": ["(: cnet_isa_a69acb590b (IsA kike israelite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kilderkin is a kind of british capacity unit", "pln": ["(: cnet_isa_4939176529 (IsA kilderkin british_capacity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kiliwa is a kind of yuman", "pln": ["(: cnet_isa_2724966917 (IsA kiliwa yuman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kiliwi is a kind of hoka", "pln": ["(: cnet_isa_9559ab125f (IsA kiliwi hoka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kill is a kind of crime", "pln": ["(: cnet_isa_cb2e9e1f91 (IsA kill crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kill is a kind of destruction", "pln": ["(: cnet_isa_2337d2b30c (IsA kill destruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kill is a kind of body", "pln": ["(: cnet_isa_563cb92e7d (IsA kill body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kill zone is a kind of zone", "pln": ["(: cnet_isa_97e71f3052 (IsA kill_zone zone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "killarney fern is a kind of bristle fern", "pln": ["(: cnet_isa_2e18e40476 (IsA killarney_fern bristle_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "killdeer is a kind of plover", "pln": ["(: cnet_isa_6d43ff5024 (IsA killdeer plover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "killer is a kind of difficulty", "pln": ["(: cnet_isa_a486f5700e (IsA killer difficulty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "killer is a kind of person", "pln": ["(: cnet_isa_06710f4b7c (IsA killer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "killer bee is a kind of investment banker", "pln": ["(: cnet_isa_dba50a4f25 (IsA killer_bee investment_banker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "killer t cell is a kind of t cell", "pln": ["(: cnet_isa_999b81b502 (IsA killer_t_cell t_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "killer whale is a kind of dolphin", "pln": ["(: cnet_isa_d6adf9d1da (IsA killer_whale dolphin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "killifish is a kind of cyprinodont", "pln": ["(: cnet_isa_2e8abe321b (IsA killifish cyprinodont) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "killing is a kind of termination", "pln": ["(: cnet_isa_7ed2da2c6b (IsA killing termination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "killing is a kind of fatality", "pln": ["(: cnet_isa_9588fe5ade (IsA killing fatality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "killing is a kind of net income", "pln": ["(: cnet_isa_f112ccbbb8 (IsA killing net_income) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "killing field is a kind of geographical area", "pln": ["(: cnet_isa_50fde055c7 (IsA killing_field geographical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kiln is a kind of furnace", "pln": ["(: cnet_isa_62219e2890 (IsA kiln furnace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kilobit is a kind of computer memory unit", "pln": ["(: cnet_isa_fe121c156b (IsA kilobit computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kilobyte is a kind of computer memory unit", "pln": ["(: cnet_isa_01f60afa8a (IsA kilobyte computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "kilometers per hour is a kind of rate", "pln": ["(: cnet_isa_587b97d924 (IsA kilometers_per_hour rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kilogram is a kind of measure of weight", "pln": ["(: cnet_isa_c0d9ce0aae (IsA kilogram measure_of_weight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kilogram is a kind of metric weight unit", "pln": ["(: cnet_isa_f11ba9281b (IsA kilogram metric_weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kilogram meter is a kind of work unit", "pln": ["(: cnet_isa_29ca5c75c9 (IsA kilogram_meter work_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kilohertz is a kind of rate", "pln": ["(: cnet_isa_3992318de2 (IsA kilohertz rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kiloliter is a kind of metric capacity unit", "pln": ["(: cnet_isa_92780738ed (IsA kiloliter metric_capacity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kilometer is a kind of metric linear unit", "pln": ["(: cnet_isa_0539e9af72 (IsA kilometer metric_linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kilometer per hour is a kind of rate", "pln": ["(: cnet_isa_ef61e68835 (IsA kilometer_per_hour rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kiloton is a kind of avoirdupois unit", "pln": ["(: cnet_isa_42872619d5 (IsA kiloton avoirdupois_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kiloton is a kind of explosive unit", "pln": ["(: cnet_isa_84e5e41a58 (IsA kiloton explosive_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kilovolt is a kind of potential unit", "pln": ["(: cnet_isa_50d99cd5b9 (IsA kilovolt potential_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kilovolt ampere is a kind of power unit", "pln": ["(: cnet_isa_370e80d0be (IsA kilovolt_ampere power_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kilowatt is a kind of power unit", "pln": ["(: cnet_isa_38f5405969 (IsA kilowatt power_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kilowatt hour is a kind of work unit", "pln": ["(: cnet_isa_abe410d987 (IsA kilowatt_hour work_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kilt is a kind of skirt", "pln": ["(: cnet_isa_693a6ebe88 (IsA kilt skirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kilter is a kind of orderliness", "pln": ["(: cnet_isa_bcf2672a1e (IsA kilter orderliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kimberlite is a kind of peridotite", "pln": ["(: cnet_isa_73a61df3c4 (IsA kimberlite peridotite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kimono is a kind of robe", "pln": ["(: cnet_isa_5ffa829a6b (IsA kimono robe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kin is a kind of social group", "pln": ["(: cnet_isa_251f76e37f (IsA kin social_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kin is a kind of relative", "pln": ["(: cnet_isa_8a686a0ec3 (IsA kin relative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kina is a kind of papuan monetary unit", "pln": ["(: cnet_isa_f88fcd8df1 (IsA kina papuan_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kinanesthesia is a kind of proprioception", "pln": ["(: cnet_isa_d99fb159fe (IsA kinanesthesia proprioception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kinase is a kind of enzyme", "pln": ["(: cnet_isa_e694be161a (IsA kinase enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kind is a kind of category", "pln": ["(: cnet_isa_d15d0876be (IsA kind category) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kindergarten is a kind of preschool", "pln": ["(: cnet_isa_f51fa46872 (IsA kindergarten preschool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kindheartedness is a kind of sympathy", "pln": ["(: cnet_isa_693dd42ee7 (IsA kindheartedness sympathy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kindliness is a kind of friendliness", "pln": ["(: cnet_isa_be4b3c5d08 (IsA kindliness friendliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kindling is a kind of igniter", "pln": ["(: cnet_isa_4e788a940c (IsA kindling igniter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kindness is a kind of human virtue", "pln": ["(: cnet_isa_c112dbd094 (IsA kindness human_virtue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kindness is a kind of action", "pln": ["(: cnet_isa_10bb86bad5 (IsA kindness action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "kinematics is a kind of mechanics", "pln": ["(: cnet_isa_cc1f17e9db (IsA kinematics mechanics) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kindness is a kind of good", "pln": ["(: cnet_isa_db8e6a31db (IsA kindness good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kinematic is a kind of mechanic", "pln": ["(: cnet_isa_69b84a9e5a (IsA kinematic mechanic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kinescope is a kind of cathode ray tube", "pln": ["(: cnet_isa_b3f19c8197 (IsA kinescope cathode_ray_tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kinesiology is a kind of physiology", "pln": ["(: cnet_isa_d9cafeb7de (IsA kinesiology physiology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kinesis is a kind of reaction", "pln": ["(: cnet_isa_c4386b5dcb (IsA kinesis reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kinesthesia is a kind of somatosense", "pln": ["(: cnet_isa_bebeed475a (IsA kinesthesia somatosense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kinesthesia is a kind of somesthesia", "pln": ["(: cnet_isa_43ccc19670 (IsA kinesthesia somesthesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kinesthesis is a kind of proprioception", "pln": ["(: cnet_isa_8ec500e590 (IsA kinesthesis proprioception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kinetic energy is a kind of mechanical energy", "pln": ["(: cnet_isa_3118463864 (IsA kinetic_energy mechanical_energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kinetic theory is a kind of scientific theory", "pln": ["(: cnet_isa_a02ffdabf0 (IsA kinetic_theory scientific_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kinetic theory of heat is a kind of kinetic theory", "pln": ["(: cnet_isa_b6c0ead995 (IsA kinetic_theory_of_heat kinetic_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "king s counsel is a kind of counsel to crown", "pln": ["(: cnet_isa_98dd85a330 (IsA king_s_counsel counsel_to_crown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "king s english is a kind of english", "pln": ["(: cnet_isa_9f78e6a761 (IsA king_s_english english) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "king s ransom is a kind of treasure", "pln": ["(: cnet_isa_d37a8cbb23 (IsA king_s_ransom treasure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "king s spear is a kind of asphodel", "pln": ["(: cnet_isa_b7b2ecafa5 (IsA king_s_spear asphodel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "king is a kind of chess piece", "pln": ["(: cnet_isa_afb1ad1d9e (IsA king chess_piece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "king is a kind of royalty", "pln": ["(: cnet_isa_104c1a33f8 (IsA king royalty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "king is a kind of ruler of country", "pln": ["(: cnet_isa_e2acac32da (IsA king ruler_of_country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "king is a kind of face card", "pln": ["(: cnet_isa_46d19cabe8 (IsA king face_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "king is a kind of checker", "pln": ["(: cnet_isa_e3f4343048 (IsA king checker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "king is a kind of chessman", "pln": ["(: cnet_isa_308f5b985c (IsA king chessman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "king is a kind of sovereign", "pln": ["(: cnet_isa_dc061adf80 (IsA king sovereign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "king is a kind of eminence", "pln": ["(: cnet_isa_278164390f (IsA king eminence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "king charle spaniel is a kind of toy spaniel", "pln": ["(: cnet_isa_66f7fd046e (IsA king_charle_spaniel toy_spaniel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "king crab is a kind of crab", "pln": ["(: cnet_isa_ae61d351cb (IsA king_crab crab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "king devil is a kind of weed", "pln": ["(: cnet_isa_47a8d0ec67 (IsA king_devil weed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "king mackerel is a kind of spanish mackerel", "pln": ["(: cnet_isa_07f21d583d (IsA king_mackerel spanish_mackerel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "king of france is a kind of king", "pln": ["(: cnet_isa_e01b00bf0e (IsA king_of_france king) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "king of german is a kind of king", "pln": ["(: cnet_isa_b6272a8842 (IsA king_of_german king) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "king of great britain is a kind of king", "pln": ["(: cnet_isa_5be6537abd (IsA king_of_great_britain king) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "king penguin is a kind of penguin", "pln": ["(: cnet_isa_60adaed90b (IsA king_penguin penguin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "king post is a kind of post", "pln": ["(: cnet_isa_3034ddb7b9 (IsA king_post post) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "king snake is a kind of colubrid snake", "pln": ["(: cnet_isa_0519d6a8c0 (IsA king_snake colubrid_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "king vulture is a kind of new world vulture", "pln": ["(: cnet_isa_d6fe03180a (IsA king_vulture new_world_vulture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "king whiting is a kind of whiting", "pln": ["(: cnet_isa_98cf178325 (IsA king_whiting whiting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "king william pine is a kind of conifer", "pln": ["(: cnet_isa_a934b0faac (IsA king_william_pine conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kingbird is a kind of new world flycatcher", "pln": ["(: cnet_isa_f554aef673 (IsA kingbird new_world_flycatcher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kingbolt is a kind of bolt", "pln": ["(: cnet_isa_ab9c90a2b2 (IsA kingbolt bolt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kingdom is a kind of group", "pln": ["(: cnet_isa_9c152cfa3d (IsA kingdom group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kingdom is a kind of monarchy", "pln": ["(: cnet_isa_51d4b231e3 (IsA kingdom monarchy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kingdom is a kind of taxonomic group", "pln": ["(: cnet_isa_ce84764cc4 (IsA kingdom taxonomic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kingdom is a kind of country", "pln": ["(: cnet_isa_d011a449c7 (IsA kingdom country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kingdom is a kind of domain", "pln": ["(: cnet_isa_643c6e510d (IsA kingdom domain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kingdom is a kind of sphere", "pln": ["(: cnet_isa_539b7f5021 (IsA kingdom sphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kingdom come is a kind of afterlife", "pln": ["(: cnet_isa_33f5be4d6f (IsA kingdom_come afterlife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kingdom come is a kind of future", "pln": ["(: cnet_isa_2a33f8775b (IsA kingdom_come future) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kingdom of god is a kind of spiritual world", "pln": ["(: cnet_isa_b8c2a10879 (IsA kingdom_of_god spiritual_world) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kingfish is a kind of jack", "pln": ["(: cnet_isa_7dcbc7b778 (IsA kingfish jack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kingfish is a kind of whiting", "pln": ["(: cnet_isa_7e809f5f33 (IsA kingfish whiting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kingfish is a kind of saltwater fish", "pln": ["(: cnet_isa_79e6976652 (IsA kingfish saltwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kingfisher is a kind of bird", "pln": ["(: cnet_isa_619bf1761b (IsA kingfisher bird) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kingfisher is a kind of coraciiform bird", "pln": ["(: cnet_isa_f1fbee5553 (IsA kingfisher coraciiform_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kingfisher daisy is a kind of flower", "pln": ["(: cnet_isa_f3166447f5 (IsA kingfisher_daisy flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kinglet is a kind of warbler", "pln": ["(: cnet_isa_d6b6923aff (IsA kinglet warbler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kingmaker is a kind of important person", "pln": ["(: cnet_isa_d76baf0e5e (IsA kingmaker important_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kingpin is a kind of important person", "pln": ["(: cnet_isa_0a65f6e99c (IsA kingpin important_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kingship is a kind of rank", "pln": ["(: cnet_isa_152de6cfad (IsA kingship rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kingwood is a kind of tree", "pln": ["(: cnet_isa_8b4b5d37de (IsA kingwood tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kingwood is a kind of wood", "pln": ["(: cnet_isa_be18c6b88d (IsA kingwood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kinin is a kind of phytohormone", "pln": ["(: cnet_isa_fe15aa8e73 (IsA kinin phytohormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kink is a kind of difficulty", "pln": ["(: cnet_isa_7203deaca6 (IsA kink difficulty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kink is a kind of idea", "pln": ["(: cnet_isa_540759330b (IsA kink idea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kink is a kind of person", "pln": ["(: cnet_isa_f02a987b06 (IsA kink person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kink is a kind of fold", "pln": ["(: cnet_isa_cba79ff9c8 (IsA kink fold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kinkajou is a kind of procyonid", "pln": ["(: cnet_isa_b5fbf279ae (IsA kinkajou procyonid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kino is a kind of tree", "pln": ["(: cnet_isa_906a4c369b (IsA kino tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kino is a kind of gum", "pln": ["(: cnet_isa_76a2662b45 (IsA kino gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kinosternidae is a kind of reptile family", "pln": ["(: cnet_isa_e7e107edff (IsA kinosternidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kinosternon is a kind of reptile genus", "pln": ["(: cnet_isa_70a82a10b5 (IsA kinosternon reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kinship is a kind of relation", "pln": ["(: cnet_isa_5a21d92621 (IsA kinship relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kinship system is a kind of arrangement", "pln": ["(: cnet_isa_6cd7f2288d (IsA kinship_system arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kinsman is a kind of relative", "pln": ["(: cnet_isa_a3358d4e4f (IsA kinsman relative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kinswoman is a kind of relative", "pln": ["(: cnet_isa_7e32953742 (IsA kinswoman relative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kinyarwanda is a kind of bantu", "pln": ["(: cnet_isa_75f4e83509 (IsA kinyarwanda bantu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kiowa is a kind of tanoan", "pln": ["(: cnet_isa_f7e4138061 (IsA kiowa tanoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kiowa is a kind of buffalo indian", "pln": ["(: cnet_isa_d6a4d7ace3 (IsA kiowa buffalo_indian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kip is a kind of gymnastic exercise", "pln": ["(: cnet_isa_e2587ae9d3 (IsA kip gymnastic_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kip is a kind of laotian monetary unit", "pln": ["(: cnet_isa_e31e9f30c2 (IsA kip laotian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kip is a kind of sleep", "pln": ["(: cnet_isa_9c5d71387d (IsA kip sleep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kipp s apparatus is a kind of apparatus", "pln": ["(: cnet_isa_2ed0086bf0 (IsA kipp_s_apparatus apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kipper is a kind of herring", "pln": ["(: cnet_isa_209036c878 (IsA kipper herring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kippered salmon is a kind of salmon", "pln": ["(: cnet_isa_2044a467dd (IsA kippered_salmon salmon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kirchhoff s law is a kind of law", "pln": ["(: cnet_isa_e0c2508285 (IsA kirchhoff_s_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kirghiz is a kind of turki", "pln": ["(: cnet_isa_82a8d30a45 (IsA kirghiz turki) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kiribati dollar is a kind of dollar", "pln": ["(: cnet_isa_27631f4726 (IsA kiribati_dollar dollar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kirk is a kind of church", "pln": ["(: cnet_isa_44ae4cdf97 (IsA kirk church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kirkia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_b1ce1c7b5e (IsA kirkia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kirpan is a kind of dagger", "pln": ["(: cnet_isa_e190a648a4 (IsA kirpan dagger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kirsch is a kind of brandy", "pln": ["(: cnet_isa_48c6f3e6c8 (IsA kirsch brandy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kirtle is a kind of dress", "pln": ["(: cnet_isa_cf8e925a33 (IsA kirtle dress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kirtle is a kind of tunic", "pln": ["(: cnet_isa_d7bce2bfb7 (IsA kirtle tunic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kishke is a kind of dish", "pln": ["(: cnet_isa_b53c748d20 (IsA kishke dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kislev is a kind of jewish calendar month", "pln": ["(: cnet_isa_c7ee75946e (IsA kislev jewish_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kismet is a kind of destiny", "pln": ["(: cnet_isa_b2eb404bb5 (IsA kismet destiny) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kiss is a kind of touch", "pln": ["(: cnet_isa_2d1d30613e (IsA kiss touch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kiss is a kind of candy", "pln": ["(: cnet_isa_612d2c2987 (IsA kiss candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kiss is a kind of cookie", "pln": ["(: cnet_isa_6a293a1525 (IsA kiss cookie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kiss of death is a kind of calamity", "pln": ["(: cnet_isa_16d95850ae (IsA kiss_of_death calamity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kisser is a kind of lover", "pln": ["(: cnet_isa_76fb46daf5 (IsA kisser lover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kissing is a kind of sign of affection", "pln": ["(: cnet_isa_8a7929117c (IsA kissing sign_of_affection) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kissing is a kind of sign of love", "pln": ["(: cnet_isa_ba3a8f48a0 (IsA kissing sign_of_love) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kissing is a kind of way of", "pln": ["(: cnet_isa_476ea41070 (IsA kissing way_of) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kissing is a kind of way to show affection", "pln": ["(: cnet_isa_7564ac4268 (IsA kissing way_to_show_affection) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kissing cousin is a kind of relative", "pln": ["(: cnet_isa_82a70f3150 (IsA kissing_cousin relative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kiswahili is a kind of bantu", "pln": ["(: cnet_isa_f6d8bd3251 (IsA kiswahili bantu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kit is a kind of young mammal", "pln": ["(: cnet_isa_21fc581f09 (IsA kit young_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kit is a kind of case", "pln": ["(: cnet_isa_1960e2a643 (IsA kit case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kit is a kind of gear", "pln": ["(: cnet_isa_25b1cfd99b (IsA kit gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kit fox is a kind of fox", "pln": ["(: cnet_isa_3b60d684b4 (IsA kit_fox fox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kitbag is a kind of backpack", "pln": ["(: cnet_isa_a75ada59a1 (IsA kitbag backpack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kitchen is a kind of place for food preparation", "pln": ["(: cnet_isa_a1fd30409a (IsA kitchen place_for_food_preparation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kitchen is a kind of room in house", "pln": ["(: cnet_isa_53fdf1011a (IsA kitchen room_in_house) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kitchen is a kind of room", "pln": ["(: cnet_isa_9c844172e5 (IsA kitchen room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kitchen appliance is a kind of home appliance", "pln": ["(: cnet_isa_f4fc1b0af3 (IsA kitchen_appliance home_appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kitchen cabinet is a kind of clique", "pln": ["(: cnet_isa_30e13e0e13 (IsA kitchen_cabinet clique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kitchen garden is a kind of garden", "pln": ["(: cnet_isa_67fe248665 (IsA kitchen_garden garden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kitchen help is a kind of hired help", "pln": ["(: cnet_isa_7c470ebd1a (IsA kitchen_help hired_help) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kitchen island is a kind of island", "pln": ["(: cnet_isa_84b1b8d85c (IsA kitchen_island island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kitchen match is a kind of match", "pln": ["(: cnet_isa_5a11d52bf7 (IsA kitchen_match match) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kitchen police is a kind of enlisted person", "pln": ["(: cnet_isa_1347f49dbc (IsA kitchen_police enlisted_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kitchen sink is a kind of sink", "pln": ["(: cnet_isa_840a150b10 (IsA kitchen_sink sink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kitchen table is a kind of table", "pln": ["(: cnet_isa_3fb004564f (IsA kitchen_table table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kitchen utensil is a kind of utensil", "pln": ["(: cnet_isa_c7d1e3dfce (IsA kitchen_utensil utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kitchenette is a kind of kitchen", "pln": ["(: cnet_isa_4cd6b4b19a (IsA kitchenette kitchen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kitchenware is a kind of kitchen utensil", "pln": ["(: cnet_isa_446c682833 (IsA kitchenware kitchen_utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kite is a kind of hawk", "pln": ["(: cnet_isa_5dcb289a20 (IsA kite hawk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kite is a kind of plaything", "pln": ["(: cnet_isa_20a1d1f24d (IsA kite plaything) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kite is a kind of check", "pln": ["(: cnet_isa_d4b97cfc9a (IsA kite check) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kite balloon is a kind of barrage balloon", "pln": ["(: cnet_isa_3bc7d34c34 (IsA kite_balloon barrage_balloon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kite tail is a kind of bob", "pln": ["(: cnet_isa_e3493874e8 (IsA kite_tail bob) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kith is a kind of social group", "pln": ["(: cnet_isa_12afdcc9f9 (IsA kith social_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kitsch is a kind of art", "pln": ["(: cnet_isa_f14038b49c (IsA kitsch art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kittee is a kind of torture", "pln": ["(: cnet_isa_ddbc8fd9ef (IsA kittee torture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kitten is a kind of cat", "pln": ["(: cnet_isa_85a9d50a9e (IsA kitten cat) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kitten is a kind of fragile animal", "pln": ["(: cnet_isa_65c1b26887 (IsA kitten fragile_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kitten is a kind of young mammal", "pln": ["(: cnet_isa_b6cb57b8cb (IsA kitten young_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kitten tail is a kind of wildflower", "pln": ["(: cnet_isa_340fe28906 (IsA kitten_tail wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kittiwake is a kind of gull", "pln": ["(: cnet_isa_d214562723 (IsA kittiwake gull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kitty is a kind of domestic cat", "pln": ["(: cnet_isa_904e546a8c (IsA kitty domestic_cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kiwi is a kind of fruit", "pln": ["(: cnet_isa_3a26a0e678 (IsA kiwi fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kiwi is a kind of ratite", "pln": ["(: cnet_isa_7ade9e1d67 (IsA kiwi ratite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kiwi is a kind of edible fruit", "pln": ["(: cnet_isa_ee46b46039 (IsA kiwi edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kiwi is a kind of inhabitant", "pln": ["(: cnet_isa_07a1f7691d (IsA kiwi inhabitant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "klammath weed is a kind of st john s wort", "pln": ["(: cnet_isa_3852361f99 (IsA klammath_weed st_john_s_wort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "klavern is a kind of unit", "pln": ["(: cnet_isa_f7cc5ec55e (IsA klavern unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "klaxon is a kind of horn", "pln": ["(: cnet_isa_12924d47d4 (IsA klaxon horn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "klebsiella is a kind of enteric bacteria", "pln": ["(: cnet_isa_7a09715cf0 (IsA klebsiella enteric_bacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "klein bottle is a kind of surface", "pln": ["(: cnet_isa_fa26d047f7 (IsA klein_bottle surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kleptomania is a kind of mania", "pln": ["(: cnet_isa_29a969e4e1 (IsA kleptomania mania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kleptomaniac is a kind of appropriator", "pln": ["(: cnet_isa_ee2f7c3fc8 (IsA kleptomaniac appropriator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "klieg light is a kind of carbon arc lamp", "pln": ["(: cnet_isa_9108b79952 (IsA klieg_light carbon_arc_lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "klinefelter s syndrome is a kind of syndrome", "pln": ["(: cnet_isa_f0f5f9d660 (IsA klinefelter_s_syndrome syndrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "klondike is a kind of solitaire", "pln": ["(: cnet_isa_bb71db02de (IsA klondike solitaire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kludge is a kind of collection", "pln": ["(: cnet_isa_6f53d08b2f (IsA kludge collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "klutz is a kind of stupid", "pln": ["(: cnet_isa_eb141eef43 (IsA klutz stupid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "klystron is a kind of tube", "pln": ["(: cnet_isa_22044995e5 (IsA klystron tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "knacker is a kind of butcher", "pln": ["(: cnet_isa_df33463292 (IsA knacker butcher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "knacker is a kind of wrecker", "pln": ["(: cnet_isa_a999ae6f1b (IsA knacker wrecker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "knackwurst is a kind of sausage", "pln": ["(: cnet_isa_cf8822ee98 (IsA knackwurst sausage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "knapweed is a kind of centaury", "pln": ["(: cnet_isa_a766beadd7 (IsA knapweed centaury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knawel is a kind of weed", "pln": ["(: cnet_isa_000996fd0a (IsA knawel weed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knee is a kind of cloth covering", "pln": ["(: cnet_isa_4c74ae636c (IsA knee cloth_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knee is a kind of hinge joint", "pln": ["(: cnet_isa_55fefa2444 (IsA knee hinge_joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knee bend is a kind of leg exercise", "pln": ["(: cnet_isa_5559258201 (IsA knee_bend leg_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knee brace is a kind of brace", "pln": ["(: cnet_isa_dbdc0b96ca (IsA knee_brace brace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knee high is a kind of sock", "pln": ["(: cnet_isa_3293f229a7 (IsA knee_high sock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knee high is a kind of stocking", "pln": ["(: cnet_isa_92099a0bb5 (IsA knee_high stocking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "knee jerk is a kind of reflex", "pln": ["(: cnet_isa_d55c3a39f0 (IsA knee_jerk reflex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knee pad is a kind of protective garment", "pln": ["(: cnet_isa_e55ff89334 (IsA knee_pad protective_garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knee piece is a kind of armor plate", "pln": ["(: cnet_isa_bc77ddfa75 (IsA knee_piece armor_plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kneel is a kind of motion", "pln": ["(: cnet_isa_10c797d4cf (IsA kneel motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kneeler is a kind of board", "pln": ["(: cnet_isa_745822dbaa (IsA kneeler board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kneeler is a kind of person", "pln": ["(: cnet_isa_1d680f5648 (IsA kneeler person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knell is a kind of bell", "pln": ["(: cnet_isa_1bc5249862 (IsA knell bell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knesset is a kind of parliament", "pln": ["(: cnet_isa_5649f0d4e9 (IsA knesset parliament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knickknack is a kind of article", "pln": ["(: cnet_isa_b04c5c4dd0 (IsA knickknack article) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knife is a kind of tool", "pln": ["(: cnet_isa_d4f0037c46 (IsA knife tool) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knife is a kind of edge tool", "pln": ["(: cnet_isa_38f6336ae7 (IsA knife edge_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knife is a kind of weapon", "pln": ["(: cnet_isa_2fa61a775d (IsA knife weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knife blade is a kind of blade", "pln": ["(: cnet_isa_6b76db19a1 (IsA knife_blade blade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knife edge is a kind of edge", "pln": ["(: cnet_isa_8f3a7ea8d9 (IsA knife_edge edge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knife edge is a kind of limit", "pln": ["(: cnet_isa_129364063a (IsA knife_edge limit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knife fight is a kind of fight", "pln": ["(: cnet_isa_f28ef8764d (IsA knife_fight fight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knife pleat is a kind of pleat", "pln": ["(: cnet_isa_6b1087ea9e (IsA knife_pleat pleat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "knight s service is a kind of service", "pln": ["(: cnet_isa_93ebe92cb7 (IsA knight_s_service service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knight is a kind of armored soldier", "pln": ["(: cnet_isa_b376463514 (IsA knight armored_soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "knight is a kind of chess piece", "pln": ["(: cnet_isa_f8d13bb6d6 (IsA knight chess_piece) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knight is a kind of chessman", "pln": ["(: cnet_isa_175b0c1aa8 (IsA knight chessman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knight is a kind of male aristocrat", "pln": ["(: cnet_isa_277a152239 (IsA knight male_aristocrat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knight bachelor is a kind of knight", "pln": ["(: cnet_isa_3ee279b791 (IsA knight_bachelor knight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knight banneret is a kind of knight", "pln": ["(: cnet_isa_d1b689b4d2 (IsA knight_banneret knight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "knight errant is a kind of knight", "pln": ["(: cnet_isa_aec851e48b (IsA knight_errant knight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knight errantry is a kind of idealism", "pln": ["(: cnet_isa_29bebfb40d (IsA knight_errantry idealism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knight errantry is a kind of code of conduct", "pln": ["(: cnet_isa_c89925af72 (IsA knight_errantry code_of_conduct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knight of round table is a kind of knight", "pln": ["(: cnet_isa_d8e8ffcd76 (IsA knight_of_round_table knight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knight templar is a kind of freemason", "pln": ["(: cnet_isa_dc8391baa3 (IsA knight_templar freemason) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knighthood is a kind of nobility", "pln": ["(: cnet_isa_5927865214 (IsA knighthood nobility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knightia is a kind of dicot genus", "pln": ["(: cnet_isa_756fb944c2 (IsA knightia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kniphofia is a kind of herb", "pln": ["(: cnet_isa_452919fa4d (IsA kniphofia herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knish is a kind of turnover", "pln": ["(: cnet_isa_204f89c797 (IsA knish turnover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knit is a kind of fabric", "pln": ["(: cnet_isa_b3e5d51fb9 (IsA knit fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knit is a kind of knitting stitch", "pln": ["(: cnet_isa_9ab845fbf7 (IsA knit knitting_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knit is a kind of needlework", "pln": ["(: cnet_isa_f0e7d6e316 (IsA knit needlework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knitter is a kind of needleworker", "pln": ["(: cnet_isa_a37ac74741 (IsA knitter needleworker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knitting is a kind of handicraft", "pln": ["(: cnet_isa_0ce47df484 (IsA knitting handicraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knitting machine is a kind of textile machine", "pln": ["(: cnet_isa_c8c7279a29 (IsA knitting_machine textile_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knitting needle is a kind of needle", "pln": ["(: cnet_isa_30254bb427 (IsA knitting_needle needle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knitting stitch is a kind of stitch", "pln": ["(: cnet_isa_2f622adbab (IsA knitting_stitch stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knitwear is a kind of clothing", "pln": ["(: cnet_isa_c8f4758a85 (IsA knitwear clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knob is a kind of decoration", "pln": ["(: cnet_isa_6cc80b268f (IsA knob decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knob is a kind of handle", "pln": ["(: cnet_isa_2f09d2c8f6 (IsA knob handle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knob is a kind of projection", "pln": ["(: cnet_isa_43f84db2d7 (IsA knob projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knobble is a kind of knob", "pln": ["(: cnet_isa_6aba72d59b (IsA knobble knob) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knobcone pine is a kind of pine", "pln": ["(: cnet_isa_6fea2a1faf (IsA knobcone_pine pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "knobkerrie is a kind of club", "pln": ["(: cnet_isa_4bfe516236 (IsA knobkerrie club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knock is a kind of blow", "pln": ["(: cnet_isa_15da7b4ecf (IsA knock blow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knock is a kind of criticism", "pln": ["(: cnet_isa_398a2fdc8f (IsA knock criticism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knock is a kind of bump", "pln": ["(: cnet_isa_0b66ebd9ae (IsA knock bump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knock is a kind of misfortune", "pln": ["(: cnet_isa_92c9733497 (IsA knock misfortune) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knock is a kind of sound", "pln": ["(: cnet_isa_fd0d4603ea (IsA knock sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knock knee is a kind of disability", "pln": ["(: cnet_isa_7cc01cfbf6 (IsA knock_knee disability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knock on is a kind of play", "pln": ["(: cnet_isa_6e36c04ac1 (IsA knock_on play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knock on effect is a kind of consequence", "pln": ["(: cnet_isa_df2d36cdbc (IsA knock_on_effect consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "knockabout is a kind of sloop", "pln": ["(: cnet_isa_b0f1b77a64 (IsA knockabout sloop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knockdown is a kind of blow", "pln": ["(: cnet_isa_1c2fb8a938 (IsA knockdown blow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knocker is a kind of device", "pln": ["(: cnet_isa_67460383cf (IsA knocker device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knocker is a kind of person", "pln": ["(: cnet_isa_76be50c1cf (IsA knocker person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knocker is a kind of big shot", "pln": ["(: cnet_isa_44486a3c00 (IsA knocker big_shot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "knockoff is a kind of copy", "pln": ["(: cnet_isa_9151cb2984 (IsA knockoff copy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "knockout drops is a kind of chloral hydrate", "pln": ["(: cnet_isa_c3a4d75851 (IsA knockout_drops chloral_hydrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knockout is a kind of blow", "pln": ["(: cnet_isa_e10aef4aec (IsA knockout blow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knockout drop is a kind of chloral hydrate", "pln": ["(: cnet_isa_766554eb13 (IsA knockout_drop chloral_hydrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knoll is a kind of hill", "pln": ["(: cnet_isa_06ae9169e5 (IsA knoll hill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knot is a kind of sandpiper", "pln": ["(: cnet_isa_a74c5f4512 (IsA knot sandpiper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knot is a kind of fastener", "pln": ["(: cnet_isa_4d954bd0f2 (IsA knot fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knot is a kind of bunch", "pln": ["(: cnet_isa_ea4ca6c2be (IsA knot bunch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knot is a kind of distorted shape", "pln": ["(: cnet_isa_8ed1ec0886 (IsA knot distorted_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knot is a kind of wood", "pln": ["(: cnet_isa_a18aba017c (IsA knot wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knot is a kind of rate", "pln": ["(: cnet_isa_19b00fcc58 (IsA knot rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knotgrass is a kind of grass", "pln": ["(: cnet_isa_feed84e8f4 (IsA knotgrass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "knothole is a kind of hole", "pln": ["(: cnet_isa_963611843c (IsA knothole hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knotty pine is a kind of pine", "pln": ["(: cnet_isa_74c12a04f0 (IsA knotty_pine pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knout is a kind of whip", "pln": ["(: cnet_isa_df159f29f8 (IsA knout whip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "know is a kind of knowing", "pln": ["(: cnet_isa_4e1626addd (IsA know knowing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "know how is a kind of ability", "pln": ["(: cnet_isa_cfcab88428 (IsA know_how ability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "know it all is a kind of egotist", "pln": ["(: cnet_isa_a77cc1f246 (IsA know_it_all egotist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knower is a kind of person", "pln": ["(: cnet_isa_2ebfaef9bd (IsA knower person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knowing is a kind of higher cognitive process", "pln": ["(: cnet_isa_4253e06c1b (IsA knowing higher_cognitive_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knowingness is a kind of shrewdness", "pln": ["(: cnet_isa_5f437e95de (IsA knowingness shrewdness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knowledge is a kind of applied information", "pln": ["(: cnet_isa_c9bad68336 (IsA knowledge applied_information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knowledge is a kind of good thing", "pln": ["(: cnet_isa_2ab8534891 (IsA knowledge good_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knowledge is a kind of information", "pln": ["(: cnet_isa_82bdb26785 (IsA knowledge information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knowledge is a kind of power", "pln": ["(: cnet_isa_8b3ba64570 (IsA knowledge power) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knowledge is a kind of powerful thing", "pln": ["(: cnet_isa_610389c6b3 (IsA knowledge powerful_thing) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knowledge domain is a kind of content", "pln": ["(: cnet_isa_931ac64cfa (IsA knowledge_domain content) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knowledgeability is a kind of wisdom", "pln": ["(: cnet_isa_bbb59b59da (IsA knowledgeability wisdom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knowlton s cactus is a kind of cactus", "pln": ["(: cnet_isa_fd2f769b6c (IsA knowlton_s_cactus cactus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knuckle is a kind of synovial joint", "pln": ["(: cnet_isa_9f32793275 (IsA knuckle synovial_joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knuckle joint is a kind of joint", "pln": ["(: cnet_isa_7e06fe07fa (IsA knuckle_joint joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "knuckleball is a kind of pitch", "pln": ["(: cnet_isa_ac589cc03c (IsA knuckleball pitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "koala is a kind of phalanger", "pln": ["(: cnet_isa_3d2a039cd9 (IsA koala phalanger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "koala bear is a kind of marsupial", "pln": ["(: cnet_isa_5f3d324fb4 (IsA koala_bear marsupial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "koan is a kind of problem", "pln": ["(: cnet_isa_3298261832 (IsA koan problem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "koasati is a kind of muskhogean", "pln": ["(: cnet_isa_72dfc117ed (IsA koasati muskhogean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "koasati is a kind of muskogean", "pln": ["(: cnet_isa_adf4390716 (IsA koasati muskogean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kob is a kind of waterbuck", "pln": ["(: cnet_isa_dd4b53bff4 (IsA kob waterbuck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kobo is a kind of nigerian monetary unit", "pln": ["(: cnet_isa_b52d8ba632 (IsA kobo nigerian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kobus is a kind of mammal genus", "pln": ["(: cnet_isa_dd5e3f54c8 (IsA kobus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kogia is a kind of mammal genus", "pln": ["(: cnet_isa_8fca1555d8 (IsA kogia mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kohl is a kind of makeup", "pln": ["(: cnet_isa_0e3c36a204 (IsA kohl makeup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kohleria is a kind of houseplant", "pln": ["(: cnet_isa_42363de085 (IsA kohleria houseplant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kohlrabi is a kind of cruciferous vegetable", "pln": ["(: cnet_isa_ce6f51ce37 (IsA kohlrabi cruciferous_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kohlrabi is a kind of crucifer", "pln": ["(: cnet_isa_cace1b873a (IsA kohlrabi crucifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "koine is a kind of greek", "pln": ["(: cnet_isa_6134ab8330 (IsA koine greek) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "koinonia is a kind of family", "pln": ["(: cnet_isa_7f1e48b474 (IsA koinonia family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kokka shinto is a kind of sect", "pln": ["(: cnet_isa_455f5e01ac (IsA kokka_shinto sect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kokoi venom is a kind of neurotoxin", "pln": ["(: cnet_isa_d9f685ad28 (IsA kokoi_venom neurotoxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kokoi venom is a kind of venom", "pln": ["(: cnet_isa_a3d273a1d6 (IsA kokoi_venom venom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kola is a kind of nut tree", "pln": ["(: cnet_isa_1f84e2e1d9 (IsA kola nut_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kola nut is a kind of nut", "pln": ["(: cnet_isa_9ab68003d0 (IsA kola_nut nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kolam is a kind of dravidian", "pln": ["(: cnet_isa_759cdafd9f (IsA kolam dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kolami is a kind of central dravidian", "pln": ["(: cnet_isa_a241913b48 (IsA kolami central_dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kolkhoz is a kind of collective farm", "pln": ["(: cnet_isa_9a70a23677 (IsA kolkhoz collective_farm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kolkhoznik is a kind of member", "pln": ["(: cnet_isa_33ac7075de (IsA kolkhoznik member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kolkwitzia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_31c5bc7211 (IsA kolkwitzia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "komi is a kind of permic", "pln": ["(: cnet_isa_75cdc0e206 (IsA komi permic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "komi is a kind of russian", "pln": ["(: cnet_isa_016f954cb5 (IsA komi russian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "komodo dragon is a kind of monitor", "pln": ["(: cnet_isa_0c614839fc (IsA komodo_dragon monitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "komodo dragon is a kind of reptile", "pln": ["(: cnet_isa_5db500900c (IsA komodo_dragon reptile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "komondor is a kind of shepherd dog", "pln": ["(: cnet_isa_ef6a4b92c7 (IsA komondor shepherd_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kongo is a kind of bantu", "pln": ["(: cnet_isa_37877c8dc4 (IsA kongo bantu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "konini is a kind of fuchsia", "pln": ["(: cnet_isa_d37e664b74 (IsA konini fuchsia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kook is a kind of person", "pln": ["(: cnet_isa_a68b79db8a (IsA kook person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kookaburra is a kind of kingfisher", "pln": ["(: cnet_isa_aa5522450a (IsA kookaburra kingfisher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kopek is a kind of russian monetary unit", "pln": ["(: cnet_isa_e6ea200ad0 (IsA kopek russian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kopiyka is a kind of ukranian monetary unit", "pln": ["(: cnet_isa_08a5df247f (IsA kopiyka ukranian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kopje is a kind of knoll", "pln": ["(: cnet_isa_aa77d6d56f (IsA kopje knoll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "koplik s spot is a kind of symptom", "pln": ["(: cnet_isa_60d430e7b7 (IsA koplik_s_spot symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kordofanian is a kind of niger kordofanian", "pln": ["(: cnet_isa_7217cc969a (IsA kordofanian niger_kordofanian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "korea is a kind of country", "pln": ["(: cnet_isa_7795e5688e (IsA korea country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "korean is a kind of altaic", "pln": ["(: cnet_isa_1684d5e2d3 (IsA korean altaic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "korean is a kind of asiatic", "pln": ["(: cnet_isa_d0b661056e (IsA korean asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "korean lawn grass is a kind of zoysia", "pln": ["(: cnet_isa_5830b93151 (IsA korean_lawn_grass zoysia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "korean lespedeza is a kind of bush clover", "pln": ["(: cnet_isa_0af292fe9f (IsA korean_lespedeza bush_clover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "koruna is a kind of czech monetary unit", "pln": ["(: cnet_isa_8b24a425ce (IsA koruna czech_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "koruna is a kind of slovakian monetary unit", "pln": ["(: cnet_isa_6fadf761ef (IsA koruna slovakian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kos is a kind of linear unit", "pln": ["(: cnet_isa_78715d0f53 (IsA kos linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kosher is a kind of nutriment", "pln": ["(: cnet_isa_0922c3821f (IsA kosher nutriment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kosteletzya is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_5ab3773b66 (IsA kosteletzya dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kota is a kind of south dravidian", "pln": ["(: cnet_isa_839455ebe4 (IsA kota south_dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kotar is a kind of dravidian", "pln": ["(: cnet_isa_61af3ee71f (IsA kotar dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "koto is a kind of stringed instrument", "pln": ["(: cnet_isa_d6b60059c5 (IsA koto stringed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "koto player is a kind of musician", "pln": ["(: cnet_isa_4e798a4da9 (IsA koto_player musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kotoko is a kind of biu mandara", "pln": ["(: cnet_isa_badf071a5a (IsA kotoko biu_mandara) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "koumiss is a kind of alcohol", "pln": ["(: cnet_isa_edeb57aacb (IsA koumiss alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kowhai is a kind of tree", "pln": ["(: cnet_isa_e0db7b0ee8 (IsA kowhai tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kowtow is a kind of bow", "pln": ["(: cnet_isa_6e02d08624 (IsA kowtow bow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kraal is a kind of pen", "pln": ["(: cnet_isa_f43c4eb5e0 (IsA kraal pen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kraal is a kind of village", "pln": ["(: cnet_isa_ee2b3be5cc (IsA kraal village) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kraft is a kind of wrapping paper", "pln": ["(: cnet_isa_7fd7a4958f (IsA kraft wrapping_paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "krait is a kind of elapid", "pln": ["(: cnet_isa_4a2ae807b1 (IsA krait elapid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "krak w is a kind of city", "pln": ["(: cnet_isa_8f98f05a28 (IsA krak_w city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kraurosis is a kind of atrophy", "pln": ["(: cnet_isa_5288a0bd67 (IsA kraurosis atrophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kraurosis vulvae is a kind of kraurosis", "pln": ["(: cnet_isa_cad665729e (IsA kraurosis_vulvae kraurosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "krauthead is a kind of german", "pln": ["(: cnet_isa_713366ee45 (IsA krauthead german) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kreb cycle is a kind of organic process", "pln": ["(: cnet_isa_7939c330a3 (IsA kreb_cycle organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kremlin is a kind of bastion", "pln": ["(: cnet_isa_cc7fa3af6f (IsA kremlin bastion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "krigia is a kind of herb", "pln": ["(: cnet_isa_576821a76a (IsA krigia herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "krill is a kind of malacostracan crustacean", "pln": ["(: cnet_isa_f449a24c08 (IsA krill malacostracan_crustacean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kris is a kind of dagger", "pln": ["(: cnet_isa_29f9c9579e (IsA kris dagger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "krishnaism is a kind of hinduism", "pln": ["(: cnet_isa_ff1d97bfc1 (IsA krishnaism hinduism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kronecker delta is a kind of mapping", "pln": ["(: cnet_isa_2a5c585306 (IsA kronecker_delta mapping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kroon is a kind of estonian monetary unit", "pln": ["(: cnet_isa_79c328862e (IsA kroon estonian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "krubi is a kind of arum", "pln": ["(: cnet_isa_f2cfc49ba0 (IsA krubi arum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "krummhorn is a kind of double reed instrument", "pln": ["(: cnet_isa_b6891930c4 (IsA krummhorn double_reed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "krypterophaneron is a kind of fish genus", "pln": ["(: cnet_isa_395e880f18 (IsA krypterophaneron fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "krypton is a kind of chemical element", "pln": ["(: cnet_isa_880e05b1d4 (IsA krypton chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "krypton is a kind of noble gas", "pln": ["(: cnet_isa_27b5a8a9af (IsA krypton noble_gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kshatriya is a kind of hindustani", "pln": ["(: cnet_isa_b37d78c5e1 (IsA kshatriya hindustani) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ku kluxer is a kind of white supremacist", "pln": ["(: cnet_isa_0484c11039 (IsA ku_kluxer white_supremacist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kuchean is a kind of tocharian", "pln": ["(: cnet_isa_92fa02dc46 (IsA kuchean tocharian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kudu is a kind of antelope", "pln": ["(: cnet_isa_deefd8b34d (IsA kudu antelope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kudzu is a kind of vine", "pln": ["(: cnet_isa_6f8858c389 (IsA kudzu vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kui is a kind of south central dravidian", "pln": ["(: cnet_isa_c80fdb6f92 (IsA kui south_central_dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kui is a kind of dravidian", "pln": ["(: cnet_isa_4b6740a95a (IsA kui dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kuiper belt is a kind of asteroid belt", "pln": ["(: cnet_isa_45e086e457 (IsA kuiper_belt asteroid_belt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kuiper belt object is a kind of asteroid", "pln": ["(: cnet_isa_64bd0dc8c8 (IsA kuiper_belt_object asteroid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kuki is a kind of kamarupan", "pln": ["(: cnet_isa_abcd084f5d (IsA kuki kamarupan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kulanapan is a kind of hokan", "pln": ["(: cnet_isa_c992477758 (IsA kulanapan hokan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kummel is a kind of liqueur", "pln": ["(: cnet_isa_c0d7f18419 (IsA kummel liqueur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kumquat is a kind of citrus", "pln": ["(: cnet_isa_d0d9ad49b7 (IsA kumquat citrus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kundt s tube is a kind of measuring instrument", "pln": ["(: cnet_isa_c26c6569ca (IsA kundt_s_tube measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kung fu is a kind of martial art", "pln": ["(: cnet_isa_8552092552 (IsA kung_fu martial_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kunzite is a kind of spodumene", "pln": ["(: cnet_isa_aed9133141 (IsA kunzite spodumene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kunzite is a kind of transparent gem", "pln": ["(: cnet_isa_ef330f8bfd (IsA kunzite transparent_gem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kuomintang is a kind of party", "pln": ["(: cnet_isa_833a20bb81 (IsA kuomintang party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kupffer s cell is a kind of cell", "pln": ["(: cnet_isa_0686bf6fbd (IsA kupffer_s_cell cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kurd is a kind of asiatic", "pln": ["(: cnet_isa_ae5ad29361 (IsA kurd asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kurd is a kind of ethnic group", "pln": ["(: cnet_isa_9cb0ee88a5 (IsA kurd ethnic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kurdish is a kind of iranian", "pln": ["(: cnet_isa_4cae5b2518 (IsA kurdish iranian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kurdistan is a kind of rug", "pln": ["(: cnet_isa_3f8d793445 (IsA kurdistan rug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kurrajong is a kind of bottle tree", "pln": ["(: cnet_isa_aebdee153f (IsA kurrajong bottle_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kurta is a kind of shirt", "pln": ["(: cnet_isa_687f2fbd85 (IsA kurta shirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kuru is a kind of turkish monetary unit", "pln": ["(: cnet_isa_88001045c9 (IsA kuru turkish_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kuru is a kind of nervous disorder", "pln": ["(: cnet_isa_d928ed757a (IsA kuru nervous_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kurux is a kind of north dravidian", "pln": ["(: cnet_isa_0459c8e60c (IsA kurux north_dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kusan is a kind of penutian", "pln": ["(: cnet_isa_d486189fea (IsA kusan penutian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "kuvasz is a kind of watchdog", "pln": ["(: cnet_isa_f4ca3bf60d (IsA kuvasz watchdog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kuvi is a kind of south central dravidian", "pln": ["(: cnet_isa_9f8ca2932e (IsA kuvi south_central_dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kuwaiti is a kind of asiatic", "pln": ["(: cnet_isa_8ca490df05 (IsA kuwaiti asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kuwaiti dinar is a kind of kuwaiti monetary unit", "pln": ["(: cnet_isa_58133d732c (IsA kuwaiti_dinar kuwaiti_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kuwaiti dirham is a kind of kuwaiti monetary unit", "pln": ["(: cnet_isa_679afa3df6 (IsA kuwaiti_dirham kuwaiti_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kuwaiti monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_00ffa9f3a2 (IsA kuwaiti_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kvass is a kind of brew", "pln": ["(: cnet_isa_e645886c45 (IsA kvass brew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kvetch is a kind of complaint", "pln": ["(: cnet_isa_88a08b9667 (IsA kvetch complaint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kvetch is a kind of whiner", "pln": ["(: cnet_isa_b7c6379267 (IsA kvetch whiner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kwa is a kind of niger congo", "pln": ["(: cnet_isa_1ee96c592a (IsA kwa niger_congo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kwakiutl is a kind of wakashan", "pln": ["(: cnet_isa_780edf70ee (IsA kwakiutl wakashan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kwanza is a kind of angolan monetary unit", "pln": ["(: cnet_isa_33eb78bd4f (IsA kwanza angolan_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kwanzaa is a kind of festival", "pln": ["(: cnet_isa_63b7c7814e (IsA kwanzaa festival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kwashiorkor is a kind of malnutrition", "pln": ["(: cnet_isa_c410e19c86 (IsA kwashiorkor malnutrition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kwela is a kind of dance music", "pln": ["(: cnet_isa_cd608924b7 (IsA kwela dance_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kyanite is a kind of mineral", "pln": ["(: cnet_isa_76325403a4 (IsA kyanite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kyat is a kind of myanmar monetary unit", "pln": ["(: cnet_isa_9d4f947c13 (IsA kyat myanmar_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kylie is a kind of boomerang", "pln": ["(: cnet_isa_71c9a91242 (IsA kylie boomerang) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kylix is a kind of cup", "pln": ["(: cnet_isa_1b07e45d53 (IsA kylix cup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kymograph is a kind of scientific instrument", "pln": ["(: cnet_isa_601189d02c (IsA kymograph scientific_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kyphosidae is a kind of fish family", "pln": ["(: cnet_isa_2e53784b01 (IsA kyphosidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kyphosis is a kind of spinal curvature", "pln": ["(: cnet_isa_645e2ce81a (IsA kyphosis spinal_curvature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kyphosus is a kind of fish genus", "pln": ["(: cnet_isa_f79fc3042e (IsA kyphosus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "kyrgyzstani monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_271d9b1889 (IsA kyrgyzstani_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "l is a kind of letter", "pln": ["(: cnet_isa_24f0c53281 (IsA l letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "l plate is a kind of plate", "pln": ["(: cnet_isa_51f74918c4 (IsA l_plate plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "la is a kind of solfa syllable", "pln": ["(: cnet_isa_d80ae80e37 (IsA la solfa_syllable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "la carte is a kind of menu", "pln": ["(: cnet_isa_05f62abd6f (IsA la_carte menu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laager is a kind of camp", "pln": ["(: cnet_isa_e049b7babf (IsA laager camp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lab is a kind of workplace", "pln": ["(: cnet_isa_52c3f93221 (IsA lab workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lab bench is a kind of workbench", "pln": ["(: cnet_isa_3ffc75054a (IsA lab_bench workbench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lab coat is a kind of coat", "pln": ["(: cnet_isa_7c684cb0e2 (IsA lab_coat coat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labanotation is a kind of choreography", "pln": ["(: cnet_isa_00eb47546b (IsA labanotation choreography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labdanum is a kind of oleoresin", "pln": ["(: cnet_isa_b62a0f1eb2 (IsA labdanum oleoresin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "label is a kind of description", "pln": ["(: cnet_isa_7e9a72e3a9 (IsA label description) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "label is a kind of marker", "pln": ["(: cnet_isa_7ae2e89ef9 (IsA label marker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "label is a kind of trade name", "pln": ["(: cnet_isa_973db57321 (IsA label trade_name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "label is a kind of radioisotope", "pln": ["(: cnet_isa_d8beb1a33d (IsA label radioisotope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labia majora is a kind of labium", "pln": ["(: cnet_isa_d4be5d67c5 (IsA labia_majora labium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "labia minora is a kind of labium", "pln": ["(: cnet_isa_70d7cffec5 (IsA labia_minora labium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labial artery is a kind of artery", "pln": ["(: cnet_isa_0321ce83be (IsA labial_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labial consonant is a kind of consonant", "pln": ["(: cnet_isa_e74d9b36d9 (IsA labial_consonant consonant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labial stop is a kind of labial consonant", "pln": ["(: cnet_isa_b33b9dce56 (IsA labial_stop labial_consonant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labial stop is a kind of stop consonant", "pln": ["(: cnet_isa_412d574a6c (IsA labial_stop stop_consonant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labial vein is a kind of vein", "pln": ["(: cnet_isa_338dfdd896 (IsA labial_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labiatae is a kind of asterid dicot family", "pln": ["(: cnet_isa_de75a02e9a (IsA labiatae asterid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "labiodental consonant is a kind of consonant", "pln": ["(: cnet_isa_5f399a9af5 (IsA labiodental_consonant consonant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labium is a kind of external body part", "pln": ["(: cnet_isa_aaeef6c216 (IsA labium external_body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lablab is a kind of rosid dicot genus", "pln": ["(: cnet_isa_b83a51e683 (IsA lablab rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labor is a kind of work", "pln": ["(: cnet_isa_8414929abb (IsA labor work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labor is a kind of class", "pln": ["(: cnet_isa_1db8d7a748 (IsA labor class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "labor coach is a kind of assistant", "pln": ["(: cnet_isa_35d1bc339d (IsA labor_coach assistant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labor contract is a kind of contract", "pln": ["(: cnet_isa_604a852a70 (IsA labor_contract contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labor day is a kind of legal holiday", "pln": ["(: cnet_isa_46d6dbf369 (IsA labor_day legal_holiday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labor force is a kind of labor", "pln": ["(: cnet_isa_8d7e6b3052 (IsA labor_force labor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labor leader is a kind of leader", "pln": ["(: cnet_isa_054f5ea95b (IsA labor_leader leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labor market is a kind of market", "pln": ["(: cnet_isa_3ba0322859 (IsA labor_market market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labor movement is a kind of reform movement", "pln": ["(: cnet_isa_0b4dff8b63 (IsA labor_movement reform_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labor of love is a kind of undertaking", "pln": ["(: cnet_isa_5664fc054e (IsA labor_of_love undertaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labor pain is a kind of pain", "pln": ["(: cnet_isa_3135d9f828 (IsA labor_pain pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labor resource is a kind of resource", "pln": ["(: cnet_isa_93b58d5769 (IsA labor_resource resource) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labor secretary is a kind of secretary", "pln": ["(: cnet_isa_bf438e0ce9 (IsA labor_secretary secretary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laborer is a kind of workman", "pln": ["(: cnet_isa_1c5b8bef64 (IsA laborer workman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "laboriousness is a kind of effortfulness", "pln": ["(: cnet_isa_62cf759090 (IsA laboriousness effortfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labour camp is a kind of camp", "pln": ["(: cnet_isa_25601edd84 (IsA labour_camp camp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labour party is a kind of labour party", "pln": ["(: cnet_isa_2a2d6961b2 (IsA labour_party labour_party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labour party is a kind of party", "pln": ["(: cnet_isa_7eaae5091a (IsA labour_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labourite is a kind of politician", "pln": ["(: cnet_isa_81256096a3 (IsA labourite politician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labrador retriever is a kind of dog", "pln": ["(: cnet_isa_222923a428 (IsA labrador_retriever dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labrador retriever is a kind of retriever", "pln": ["(: cnet_isa_ca3a97ec94 (IsA labrador_retriever retriever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labrador tea is a kind of shrub", "pln": ["(: cnet_isa_4705c1ec00 (IsA labrador_tea shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labridae is a kind of fish family", "pln": ["(: cnet_isa_65ea015cf8 (IsA labridae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laburnum is a kind of rosid dicot genus", "pln": ["(: cnet_isa_d543fe2133 (IsA laburnum rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labyrinthine artery is a kind of artery", "pln": ["(: cnet_isa_7906ea2615 (IsA labyrinthine_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labyrinthine vein is a kind of vein", "pln": ["(: cnet_isa_e23d2a403f (IsA labyrinthine_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labyrinthitis is a kind of otitis", "pln": ["(: cnet_isa_eab0df73cd (IsA labyrinthitis otitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labyrinthodont is a kind of amphibian", "pln": ["(: cnet_isa_7c38f7db05 (IsA labyrinthodont amphibian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "labyrinthodontia is a kind of animal order", "pln": ["(: cnet_isa_ab5178e29c (IsA labyrinthodontia animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lac is a kind of animal product", "pln": ["(: cnet_isa_713c445627 (IsA lac animal_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lac dye is a kind of dye", "pln": ["(: cnet_isa_05e9157448 (IsA lac_dye dye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "laccopetalum is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_611ef271c7 (IsA laccopetalum magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lace is a kind of cord", "pln": ["(: cnet_isa_d50e219657 (IsA lace cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lace is a kind of fabric", "pln": ["(: cnet_isa_12fcbdc138 (IsA lace fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lace bug is a kind of leaf bug", "pln": ["(: cnet_isa_a8571e02fc (IsA lace_bug leaf_bug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lace fern is a kind of fern", "pln": ["(: cnet_isa_5c8522f8c6 (IsA lace_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lace flower vine is a kind of flower", "pln": ["(: cnet_isa_de3b785129 (IsA lace_flower_vine flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lace making is a kind of handicraft", "pln": ["(: cnet_isa_999ad0b436 (IsA lace_making handicraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lacebark is a kind of tree", "pln": ["(: cnet_isa_3b89d5f288 (IsA lacebark tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lacer is a kind of workman", "pln": ["(: cnet_isa_fc3cad3c72 (IsA lacer workman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laceration is a kind of tear", "pln": ["(: cnet_isa_375afcc1bc (IsA laceration tear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laceration is a kind of wound", "pln": ["(: cnet_isa_d1f08da80f (IsA laceration wound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lacerta is a kind of reptile genus", "pln": ["(: cnet_isa_211d3f223f (IsA lacerta reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lacertid lizard is a kind of lizard", "pln": ["(: cnet_isa_84769271e1 (IsA lacertid_lizard lizard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lacertidae is a kind of reptile family", "pln": ["(: cnet_isa_9cce907791 (IsA lacertidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lacewing is a kind of neuropteron", "pln": ["(: cnet_isa_70a5050dc8 (IsA lacewing neuropteron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lacework is a kind of work", "pln": ["(: cnet_isa_734df7d9ff (IsA lacework work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lachnolaimus is a kind of fish genus", "pln": ["(: cnet_isa_3cc03a2ad2 (IsA lachnolaimus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lacing is a kind of liquor", "pln": ["(: cnet_isa_260907abf1 (IsA lacing liquor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lack is a kind of need", "pln": ["(: cnet_isa_d2cc9f8776 (IsA lack need) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lackey is a kind of servant", "pln": ["(: cnet_isa_87db9c8dca (IsA lackey servant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laconian is a kind of hellene", "pln": ["(: cnet_isa_8f29e5c8da (IsA laconian hellene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laconism is a kind of terseness", "pln": ["(: cnet_isa_edff53f444 (IsA laconism terseness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lacquer is a kind of coating", "pln": ["(: cnet_isa_7b6deda3de (IsA lacquer coating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lacquer is a kind of gum", "pln": ["(: cnet_isa_155d89c716 (IsA lacquer gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lacquerware is a kind of work", "pln": ["(: cnet_isa_cbb9d8ddde (IsA lacquerware work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lacrimal apparatus is a kind of structure", "pln": ["(: cnet_isa_b6ad3d8484 (IsA lacrimal_apparatus structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lacrimal artery is a kind of artery", "pln": ["(: cnet_isa_d529e49ca9 (IsA lacrimal_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lacrimal bone is a kind of bone", "pln": ["(: cnet_isa_7952026189 (IsA lacrimal_bone bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lacrimal duct is a kind of duct", "pln": ["(: cnet_isa_76a5ab8465 (IsA lacrimal_duct duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lacrimal gland is a kind of exocrine gland", "pln": ["(: cnet_isa_e962c97246 (IsA lacrimal_gland exocrine_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lacrimal sac is a kind of vesicle", "pln": ["(: cnet_isa_1b669d1865 (IsA lacrimal_sac vesicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lacrimal secretion is a kind of secretion", "pln": ["(: cnet_isa_8b19936bc8 (IsA lacrimal_secretion secretion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lacrimal vein is a kind of vein", "pln": ["(: cnet_isa_c2369d6d0b (IsA lacrimal_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lacrimation is a kind of bodily process", "pln": ["(: cnet_isa_4edf87c8a9 (IsA lacrimation bodily_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lacrosse is a kind of sport", "pln": ["(: cnet_isa_1175647e6e (IsA lacrosse sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lacrosse is a kind of field game", "pln": ["(: cnet_isa_b8473ec33a (IsA lacrosse field_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lacrosse ball is a kind of ball", "pln": ["(: cnet_isa_e7d8860d84 (IsA lacrosse_ball ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lacrosse player is a kind of athlete", "pln": ["(: cnet_isa_ab6d932030 (IsA lacrosse_player athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lacrosse player is a kind of player", "pln": ["(: cnet_isa_cd50e5528c (IsA lacrosse_player player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lactalbumin is a kind of albumin", "pln": ["(: cnet_isa_789e77aa41 (IsA lactalbumin albumin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lactarius is a kind of fungus genus", "pln": ["(: cnet_isa_a734418d72 (IsA lactarius fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lactase is a kind of disaccharidase", "pln": ["(: cnet_isa_327264f115 (IsA lactase disaccharidase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lactate is a kind of ester", "pln": ["(: cnet_isa_04f972e290 (IsA lactate ester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lactate is a kind of salt", "pln": ["(: cnet_isa_2d65be410c (IsA lactate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lactation is a kind of bodily process", "pln": ["(: cnet_isa_b5a47ab70c (IsA lactation bodily_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lactation is a kind of time period", "pln": ["(: cnet_isa_e25cbe2a9a (IsA lactation time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lacteal is a kind of lymph vessel", "pln": ["(: cnet_isa_4dac8c04fa (IsA lacteal lymph_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lactic acid is a kind of carboxylic acid", "pln": ["(: cnet_isa_c8b304ced6 (IsA lactic_acid carboxylic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lactiferous duct is a kind of duct", "pln": ["(: cnet_isa_3c6a306dc3 (IsA lactiferous_duct duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lactifuge is a kind of agent", "pln": ["(: cnet_isa_8db05d56cb (IsA lactifuge agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lactobacillaceae is a kind of bacteria family", "pln": ["(: cnet_isa_45f099c8e5 (IsA lactobacillaceae bacteria_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lactobacillus is a kind of eubacteria", "pln": ["(: cnet_isa_ab1fa03d6e (IsA lactobacillus eubacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lactogen is a kind of agent", "pln": ["(: cnet_isa_c715507620 (IsA lactogen agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lactophry is a kind of fish genus", "pln": ["(: cnet_isa_ba564f726d (IsA lactophry fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lactose is a kind of disaccharide", "pln": ["(: cnet_isa_45e0701d6a (IsA lactose disaccharide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lactose intolerance is a kind of genetic disease", "pln": ["(: cnet_isa_5f5d8e1101 (IsA lactose_intolerance genetic_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lactosuria is a kind of condition", "pln": ["(: cnet_isa_deb0da4d5d (IsA lactosuria condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lactuca is a kind of asterid dicot genus", "pln": ["(: cnet_isa_9a1aeeadec (IsA lactuca asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "ladies tresses is a kind of orchid", "pln": ["(: cnet_isa_6e8ed1d251 (IsA ladies_tresses orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "lagorchestes is a kind of mammal genus", "pln": ["(: cnet_isa_1d1bab2625 (IsA lagorchestes mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lacuna is a kind of gap", "pln": ["(: cnet_isa_eff4bb029a (IsA lacuna gap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ladder is a kind of stair", "pln": ["(: cnet_isa_a43788e3bf (IsA ladder stair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ladder is a kind of degree", "pln": ["(: cnet_isa_989ec3abc3 (IsA ladder degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ladder back is a kind of back", "pln": ["(: cnet_isa_d4ccaa2e9f (IsA ladder_back back) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ladder back is a kind of chair", "pln": ["(: cnet_isa_a12260825d (IsA ladder_back chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ladder truck is a kind of fire engine", "pln": ["(: cnet_isa_ffc5115317 (IsA ladder_truck fire_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lady room is a kind of public toilet", "pln": ["(: cnet_isa_1123fbf560 (IsA lady_room public_toilet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lady tobacco is a kind of herb", "pln": ["(: cnet_isa_c14273c484 (IsA lady_tobacco herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lady tress is a kind of orchid", "pln": ["(: cnet_isa_e17780642a (IsA lady_tress orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ladin is a kind of rhaeto romance", "pln": ["(: cnet_isa_7a5cec32d6 (IsA ladin rhaeto_romance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ladle is a kind of vessel", "pln": ["(: cnet_isa_c2717767c5 (IsA ladle vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lady s eardrop is a kind of fuchsia", "pln": ["(: cnet_isa_22489480b3 (IsA lady_s_eardrop fuchsia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lady s maid is a kind of maid", "pln": ["(: cnet_isa_c6967fc401 (IsA lady_s_maid maid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lady s slipper is a kind of orchid", "pln": ["(: cnet_isa_76e07b9244 (IsA lady_s_slipper orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lady s smock is a kind of bittercress", "pln": ["(: cnet_isa_fdbf1141c5 (IsA lady_s_smock bittercress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lady is a kind of woman", "pln": ["(: cnet_isa_dcd7f30212 (IsA lady woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lady chapel is a kind of chapel", "pln": ["(: cnet_isa_2a8c1c1852 (IsA lady_chapel chapel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lady fern is a kind of fern", "pln": ["(: cnet_isa_54607cdd7f (IsA lady_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lady in waiting is a kind of noblewoman", "pln": ["(: cnet_isa_277ec46a5d (IsA lady_in_waiting noblewoman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lady of night is a kind of shrub", "pln": ["(: cnet_isa_cf6a7dab00 (IsA lady_of_night shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lady palm is a kind of palm", "pln": ["(: cnet_isa_4ba217d34b (IsA lady_palm palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lady tulip is a kind of tulip", "pln": ["(: cnet_isa_8a292b32e2 (IsA lady_tulip tulip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ladybug is a kind of beetle", "pln": ["(: cnet_isa_d3d4ba5b2f (IsA ladybug beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ladyfinger is a kind of cookie", "pln": ["(: cnet_isa_cfb58b1a59 (IsA ladyfinger cookie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ladyfish is a kind of tarpon", "pln": ["(: cnet_isa_80ae31173d (IsA ladyfish tarpon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ladylikeness is a kind of femininity", "pln": ["(: cnet_isa_7945b52250 (IsA ladylikeness femininity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ladylove is a kind of sweetheart", "pln": ["(: cnet_isa_af1fc7cac0 (IsA ladylove sweetheart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ladyship is a kind of title", "pln": ["(: cnet_isa_dd6eefee08 (IsA ladyship title) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laelia is a kind of orchid", "pln": ["(: cnet_isa_8b96f2c79f (IsA laelia orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laetrile is a kind of amygdalin", "pln": ["(: cnet_isa_62c2475a26 (IsA laetrile amygdalin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laffer curve is a kind of graph", "pln": ["(: cnet_isa_fe6d42f431 (IsA laffer_curve graph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lag b omer is a kind of jewish holy day", "pln": ["(: cnet_isa_ec1629f3b6 (IsA lag_b_omer jewish_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lag screw is a kind of woodscrew", "pln": ["(: cnet_isa_8e9a040590 (IsA lag_screw woodscrew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lagan is a kind of wreckage", "pln": ["(: cnet_isa_ed08a20e83 (IsA lagan wreckage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lagarostrobus is a kind of gymnosperm genus", "pln": ["(: cnet_isa_a7b4fb03af (IsA lagarostrobus gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lagenaria is a kind of dicot genus", "pln": ["(: cnet_isa_3b2158c081 (IsA lagenaria dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lagenophera is a kind of asterid dicot genus", "pln": ["(: cnet_isa_a2cd06db38 (IsA lagenophera asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lager is a kind of light beer", "pln": ["(: cnet_isa_36edcb19f5 (IsA lager light_beer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lager is a kind of beer", "pln": ["(: cnet_isa_203adeac91 (IsA lager beer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lagerphone is a kind of percussion instrument", "pln": ["(: cnet_isa_a40f58e5e0 (IsA lagerphone percussion_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lagerstroemia is a kind of plant genus", "pln": ["(: cnet_isa_a230362adc (IsA lagerstroemia plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lagging is a kind of insulating material", "pln": ["(: cnet_isa_f5c4dc335a (IsA lagging insulating_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lagidium is a kind of mammal genus", "pln": ["(: cnet_isa_e163ba5f75 (IsA lagidium mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lagniappe is a kind of gift", "pln": ["(: cnet_isa_acf3fd7265 (IsA lagniappe gift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lagodon is a kind of fish genus", "pln": ["(: cnet_isa_3288cc9f4d (IsA lagodon fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lagomorph is a kind of placental", "pln": ["(: cnet_isa_9946a1b8d9 (IsA lagomorph placental) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lagomorpha is a kind of animal order", "pln": ["(: cnet_isa_4ec5b1cbfe (IsA lagomorpha animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lagoon is a kind of lake", "pln": ["(: cnet_isa_3a1aa109ba (IsA lagoon lake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lagophthalmo is a kind of abnormality", "pln": ["(: cnet_isa_17c7cdd309 (IsA lagophthalmo abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lagopus is a kind of bird genus", "pln": ["(: cnet_isa_ae9242e437 (IsA lagopus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lagorcheste is a kind of mammal genus", "pln": ["(: cnet_isa_c250c20b7d (IsA lagorcheste mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lagostomus is a kind of mammal genus", "pln": ["(: cnet_isa_96c8987748 (IsA lagostomus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lagothrix is a kind of mammal genus", "pln": ["(: cnet_isa_f0070a8ece (IsA lagothrix mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "laguncularia is a kind of plant genus", "pln": ["(: cnet_isa_38ac6755a9 (IsA laguncularia plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lahar is a kind of avalanche", "pln": ["(: cnet_isa_8712ffeac0 (IsA lahar avalanche) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lahu is a kind of loloish", "pln": ["(: cnet_isa_eeb92966c0 (IsA lahu loloish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laid paper is a kind of writing paper", "pln": ["(: cnet_isa_95421f7302 (IsA laid_paper writing_paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lair is a kind of habitation", "pln": ["(: cnet_isa_cbb6049dfb (IsA lair habitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laird is a kind of landowner", "pln": ["(: cnet_isa_d0eab341d5 (IsA laird landowner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laity is a kind of multitude", "pln": ["(: cnet_isa_46296ab9d2 (IsA laity multitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lake is a kind of body of water", "pln": ["(: cnet_isa_078eeefcb7 (IsA lake body_of_water) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lake is a kind of large pond", "pln": ["(: cnet_isa_179f975931 (IsA lake large_pond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lake is a kind of pigment", "pln": ["(: cnet_isa_e9e2ea660a (IsA lake pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lake bed is a kind of bed", "pln": ["(: cnet_isa_c1874ecb7e (IsA lake_bed bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lake dwelling is a kind of dwelling", "pln": ["(: cnet_isa_e485e5d655 (IsA lake_dwelling dwelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lake herring is a kind of whitefish", "pln": ["(: cnet_isa_c67da7dd2b (IsA lake_herring whitefish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lake poet is a kind of artistic movement", "pln": ["(: cnet_isa_d9ffa12ff3 (IsA lake_poet artistic_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lake poet is a kind of school", "pln": ["(: cnet_isa_d8999e87b1 (IsA lake_poet school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lake trout is a kind of trout", "pln": ["(: cnet_isa_2e1f52a18d (IsA lake_trout trout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lake trout is a kind of freshwater fish", "pln": ["(: cnet_isa_656942ee36 (IsA lake_trout freshwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lake whitefish is a kind of whitefish", "pln": ["(: cnet_isa_2e0975ac3e (IsA lake_whitefish whitefish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lakefront is a kind of geological formation", "pln": ["(: cnet_isa_06dc6ee452 (IsA lakefront geological_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lakeland terrier is a kind of wirehair", "pln": ["(: cnet_isa_f3b74b5e8a (IsA lakeland_terrier wirehair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lakeside is a kind of shore", "pln": ["(: cnet_isa_4efad422bd (IsA lakeside shore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lallan is a kind of scottish", "pln": ["(: cnet_isa_5f6e696f64 (IsA lallan scottish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lallation is a kind of speech disorder", "pln": ["(: cnet_isa_38e25df3cf (IsA lallation speech_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lally is a kind of support column", "pln": ["(: cnet_isa_c02a5d0ba9 (IsA lally support_column) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lama is a kind of mammal genus", "pln": ["(: cnet_isa_b6f1575781 (IsA lama mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lama is a kind of priest", "pln": ["(: cnet_isa_68dee34c55 (IsA lama priest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamaism is a kind of buddhism", "pln": ["(: cnet_isa_7c0841725e (IsA lamaism buddhism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamaist is a kind of disciple", "pln": ["(: cnet_isa_b2d7cf9e03 (IsA lamaist disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamarckian is a kind of follower", "pln": ["(: cnet_isa_39f4f1e45d (IsA lamarckian follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamarckism is a kind of theory of evolution", "pln": ["(: cnet_isa_73ce651209 (IsA lamarckism theory_of_evolution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lamasery is a kind of monastery", "pln": ["(: cnet_isa_99b08876c8 (IsA lamasery monastery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamaze method of childbirth is a kind of natural childbirth", "pln": ["(: cnet_isa_3ddfe1e7e6 (IsA lamaze_method_of_childbirth natural_childbirth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamb s quarter is a kind of green", "pln": ["(: cnet_isa_7ec892aa38 (IsA lamb_s_quarter green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamb s quarter is a kind of goosefoot", "pln": ["(: cnet_isa_71bf3ade8b (IsA lamb_s_quarter goosefoot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamb is a kind of meat", "pln": ["(: cnet_isa_31b6903ab3 (IsA lamb meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lamb is a kind of young mammal", "pln": ["(: cnet_isa_f24c5cd1a2 (IsA lamb young_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamb is a kind of victim", "pln": ["(: cnet_isa_adae4801fa (IsA lamb victim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamb chop is a kind of chop", "pln": ["(: cnet_isa_fa275c40e1 (IsA lamb_chop chop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamb curry is a kind of curry", "pln": ["(: cnet_isa_67e6e56069 (IsA lamb_curry curry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamb roast is a kind of roast", "pln": ["(: cnet_isa_4c1f16fb7a (IsA lamb_roast roast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamb succory is a kind of herb", "pln": ["(: cnet_isa_05c5cf7ec1 (IsA lamb_succory herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lambda is a kind of craniometric point", "pln": ["(: cnet_isa_b6f7d81a5c (IsA lambda craniometric_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lambda is a kind of letter", "pln": ["(: cnet_isa_26080395dd (IsA lambda letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lambda particle is a kind of hyperon", "pln": ["(: cnet_isa_776330c931 (IsA lambda_particle hyperon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lambdacism is a kind of speech disorder", "pln": ["(: cnet_isa_a167ac2835 (IsA lambdacism speech_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lambert is a kind of illumination unit", "pln": ["(: cnet_isa_e8c468aab4 (IsA lambert illumination_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lambert eaton syndrome is a kind of disease of neuromuscular junction", "pln": ["(: cnet_isa_4cbbedc62f (IsA lambert_eaton_syndrome disease_of_neuromuscular_junction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lambertia is a kind of dicot genus", "pln": ["(: cnet_isa_1d92ed1627 (IsA lambertia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lambis is a kind of mollusk genus", "pln": ["(: cnet_isa_7753fbb72c (IsA lambis mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lambkin is a kind of lamb", "pln": ["(: cnet_isa_566c34e6c8 (IsA lambkin lamb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamboid suture is a kind of suture", "pln": ["(: cnet_isa_1aa8c5a283 (IsA lamboid_suture suture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lambrequin is a kind of hanging", "pln": ["(: cnet_isa_91da41e771 (IsA lambrequin hanging) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lambrequin is a kind of scarf", "pln": ["(: cnet_isa_ea852a5ea2 (IsA lambrequin scarf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lambskin is a kind of fur", "pln": ["(: cnet_isa_e1d206b82e (IsA lambskin fur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lame is a kind of fabric", "pln": ["(: cnet_isa_e389e8fd56 (IsA lame fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lame duck is a kind of elected official", "pln": ["(: cnet_isa_9fbb956ca2 (IsA lame_duck elected_official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamedh is a kind of letter", "pln": ["(: cnet_isa_bab5900954 (IsA lamedh letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamella is a kind of plate", "pln": ["(: cnet_isa_f870ad64fb (IsA lamella plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamella is a kind of membrane", "pln": ["(: cnet_isa_4d2591b89b (IsA lamella membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamellar mixture is a kind of mixture", "pln": ["(: cnet_isa_10ca3d485d (IsA lamellar_mixture mixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lamellate placentation is a kind of placentation", "pln": ["(: cnet_isa_9efae4451f (IsA lamellate_placentation placentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamellicorn beetle is a kind of beetle", "pln": ["(: cnet_isa_a174d1ebcd (IsA lamellicorn_beetle beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lamellicornia is a kind of arthropod family", "pln": ["(: cnet_isa_58e0cd66de (IsA lamellicornia arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lameness is a kind of defectiveness", "pln": ["(: cnet_isa_3f25741760 (IsA lameness defectiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lameness is a kind of disability of walking", "pln": ["(: cnet_isa_f3a54127f6 (IsA lameness disability_of_walking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lament is a kind of complaint", "pln": ["(: cnet_isa_4eadfaf196 (IsA lament complaint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamentation is a kind of activity", "pln": ["(: cnet_isa_b7ff292e3e (IsA lamentation activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamentation is a kind of expression", "pln": ["(: cnet_isa_bfff2ee072 (IsA lamentation expression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamina is a kind of plate", "pln": ["(: cnet_isa_631e803172 (IsA lamina plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamina arcus vertebrae is a kind of lamina", "pln": ["(: cnet_isa_d9aed228eb (IsA lamina_arcus_vertebrae lamina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laminar flow is a kind of streamline flow", "pln": ["(: cnet_isa_91edfb0c4d (IsA laminar_flow streamline_flow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laminar flow clean room is a kind of clean room", "pln": ["(: cnet_isa_f98496707f (IsA laminar_flow_clean_room clean_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laminaria is a kind of protoctist genus", "pln": ["(: cnet_isa_d4c41da7d6 (IsA laminaria protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laminariaceae is a kind of protoctist family", "pln": ["(: cnet_isa_f8922472b2 (IsA laminariaceae protoctist_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laminariale is a kind of protoctist order", "pln": ["(: cnet_isa_419bc152a2 (IsA laminariale protoctist_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laminate is a kind of lamination", "pln": ["(: cnet_isa_6fa7e21424 (IsA laminate lamination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "laminate is a kind of sheet", "pln": ["(: cnet_isa_9115a39150 (IsA laminate sheet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamination is a kind of creating from raw material", "pln": ["(: cnet_isa_a15c3dd3f9 (IsA lamination creating_from_raw_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamination is a kind of structure", "pln": ["(: cnet_isa_8406effd11 (IsA lamination structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laminator is a kind of skilled worker", "pln": ["(: cnet_isa_e610658aa1 (IsA laminator skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laminectomy is a kind of ablation", "pln": ["(: cnet_isa_f3406d6f24 (IsA laminectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laminitis is a kind of inflammation", "pln": ["(: cnet_isa_a6e0b2871a (IsA laminitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamium is a kind of asterid dicot genus", "pln": ["(: cnet_isa_c9b4c0e2ce (IsA lamium asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamivudine is a kind of nucleoside reverse transcriptase inhibitor", "pln": ["(: cnet_isa_94711b24f9 (IsA lamivudine nucleoside_reverse_transcriptase_inhibitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamma is a kind of quarter day", "pln": ["(: cnet_isa_25b7a23779 (IsA lamma quarter_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lammastide is a kind of season", "pln": ["(: cnet_isa_4e9636e6c8 (IsA lammastide season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamna is a kind of fish genus", "pln": ["(: cnet_isa_27ee2fc2c9 (IsA lamna fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamnidae is a kind of fish family", "pln": ["(: cnet_isa_923a5f7642 (IsA lamnidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamp is a kind of furniture", "pln": ["(: cnet_isa_47b4059517 (IsA lamp furniture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamp is a kind of source of illumination", "pln": ["(: cnet_isa_fef68c8144 (IsA lamp source_of_illumination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamp chimney is a kind of flue", "pln": ["(: cnet_isa_d57732ce5a (IsA lamp_chimney flue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamp house is a kind of housing", "pln": ["(: cnet_isa_d38082dfc5 (IsA lamp_house housing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamplight is a kind of light", "pln": ["(: cnet_isa_02b9d95206 (IsA lamplight light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamplighter is a kind of worker", "pln": ["(: cnet_isa_b7e47a4809 (IsA lamplighter worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lampoon artist is a kind of cartoonist", "pln": ["(: cnet_isa_8a9b27f8a5 (IsA lampoon_artist cartoonist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamppost is a kind of post", "pln": ["(: cnet_isa_0a0433e1c8 (IsA lamppost post) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lamprey is a kind of jawless vertebrate", "pln": ["(: cnet_isa_981cf83a81 (IsA lamprey jawless_vertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lampridae is a kind of fish family", "pln": ["(: cnet_isa_50a8d3b08d (IsA lampridae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lampris is a kind of fish genus", "pln": ["(: cnet_isa_69028931e1 (IsA lampris fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lampropeltis is a kind of reptile genus", "pln": ["(: cnet_isa_c6cc0fe4ad (IsA lampropeltis reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lampshade is a kind of protective covering", "pln": ["(: cnet_isa_73a63dd97e (IsA lampshade protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lampyridae is a kind of arthropod family", "pln": ["(: cnet_isa_db99234d44 (IsA lampyridae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lanai is a kind of veranda", "pln": ["(: cnet_isa_3f77b28a60 (IsA lanai veranda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lancaster is a kind of dynasty", "pln": ["(: cnet_isa_26dafa203e (IsA lancaster dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lancaster is a kind of royalty", "pln": ["(: cnet_isa_88bb97f3e9 (IsA lancaster royalty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lancastrian is a kind of english person", "pln": ["(: cnet_isa_90dcc848e5 (IsA lancastrian english_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lance corporal is a kind of noncommissioned officer", "pln": ["(: cnet_isa_ffe7eee543 (IsA lance_corporal noncommissioned_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lancelet is a kind of cephalochordate", "pln": ["(: cnet_isa_875682cdb9 (IsA lancelet cephalochordate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lanceolate leaf is a kind of simple leaf", "pln": ["(: cnet_isa_18299d6d7d (IsA lanceolate_leaf simple_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lanceolate spleenwort is a kind of spleenwort", "pln": ["(: cnet_isa_680cda10d3 (IsA lanceolate_spleenwort spleenwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lancer is a kind of cavalryman", "pln": ["(: cnet_isa_933b5d69a3 (IsA lancer cavalryman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lancer is a kind of quadrille", "pln": ["(: cnet_isa_42ee8821fa (IsA lancer quadrille) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lancet is a kind of surgical knife", "pln": ["(: cnet_isa_6b639769ee (IsA lancet surgical_knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lancet arch is a kind of gothic arch", "pln": ["(: cnet_isa_d2b4480d73 (IsA lancet_arch gothic_arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lancet window is a kind of window", "pln": ["(: cnet_isa_fec2602404 (IsA lancet_window window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lancetfish is a kind of soft finned fish", "pln": ["(: cnet_isa_bb19371cc0 (IsA lancetfish soft_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lancewood is a kind of tree", "pln": ["(: cnet_isa_b801bc90f7 (IsA lancewood tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lancewood is a kind of wood", "pln": ["(: cnet_isa_86f2c8bc5a (IsA lancewood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "land is a kind of object", "pln": ["(: cnet_isa_415d05d26e (IsA land object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "land is a kind of real property", "pln": ["(: cnet_isa_894649705b (IsA land real_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "landing skids is a kind of landing gear", "pln": ["(: cnet_isa_92bf91b8ca (IsA landing_skids landing_gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "land agent is a kind of administrator", "pln": ["(: cnet_isa_24a904edec (IsA land_agent administrator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "land development is a kind of exploitation", "pln": ["(: cnet_isa_7929985b5c (IsA land_development exploitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "land grant is a kind of grant", "pln": ["(: cnet_isa_5e62a420fa (IsA land_grant grant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "land line is a kind of telephone line", "pln": ["(: cnet_isa_2e063c26e6 (IsA land_line telephone_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "land mine is a kind of mine", "pln": ["(: cnet_isa_f4359dc207 (IsA land_mine mine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "land office is a kind of government office", "pln": ["(: cnet_isa_36af98c8e2 (IsA land_office government_office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "land office business is a kind of business", "pln": ["(: cnet_isa_8dff824d3a (IsA land_office_business business) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "land reform is a kind of reform", "pln": ["(: cnet_isa_48f202cf7f (IsA land_reform reform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "land resource is a kind of natural resource", "pln": ["(: cnet_isa_5a2182745b (IsA land_resource natural_resource) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landau is a kind of carriage", "pln": ["(: cnet_isa_7435d3976d (IsA landau carriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landed gentry is a kind of gentry", "pln": ["(: cnet_isa_caf0bdfbd4 (IsA landed_gentry gentry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lander is a kind of spacecraft", "pln": ["(: cnet_isa_92e38397f9 (IsA lander spacecraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landfall is a kind of sighting", "pln": ["(: cnet_isa_a4cfcd619f (IsA landfall sighting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landfall is a kind of seashore", "pln": ["(: cnet_isa_920c87a1f5 (IsA landfall seashore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landfill is a kind of place for trash", "pln": ["(: cnet_isa_41fdb81dc8 (IsA landfill place_for_trash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landfill is a kind of lowland", "pln": ["(: cnet_isa_09f4065175 (IsA landfill lowland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landgrave is a kind of count", "pln": ["(: cnet_isa_929d4d90f3 (IsA landgrave count) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landholding is a kind of ownership", "pln": ["(: cnet_isa_773d8910b3 (IsA landholding ownership) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landholding is a kind of property", "pln": ["(: cnet_isa_1ff9ea2f5f (IsA landholding property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landing is a kind of arrival", "pln": ["(: cnet_isa_beba5ad1d9 (IsA landing arrival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landing is a kind of platform", "pln": ["(: cnet_isa_b32b19df5a (IsA landing platform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landing is a kind of structure", "pln": ["(: cnet_isa_3f90d5bda9 (IsA landing structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landing approach is a kind of approach", "pln": ["(: cnet_isa_f361498580 (IsA landing_approach approach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landing craft is a kind of craft", "pln": ["(: cnet_isa_f8dd40a119 (IsA landing_craft craft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landing flap is a kind of flap", "pln": ["(: cnet_isa_8dc898538f (IsA landing_flap flap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landing gear is a kind of undercarriage", "pln": ["(: cnet_isa_1a522ec7a7 (IsA landing_gear undercarriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landing net is a kind of fishnet", "pln": ["(: cnet_isa_4a57704148 (IsA landing_net fishnet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landing party is a kind of party", "pln": ["(: cnet_isa_a480eeee5d (IsA landing_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landing skid is a kind of landing gear", "pln": ["(: cnet_isa_dfe05c1e4b (IsA landing_skid landing_gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landing stage is a kind of platform", "pln": ["(: cnet_isa_a12500aac1 (IsA landing_stage platform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landlady is a kind of landlord", "pln": ["(: cnet_isa_43c19f038f (IsA landlady landlord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "landler is a kind of country dance", "pln": ["(: cnet_isa_7d8221fdda (IsA landler country_dance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landler is a kind of dance music", "pln": ["(: cnet_isa_29a095f424 (IsA landler dance_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landlocked salmon is a kind of atlantic salmon", "pln": ["(: cnet_isa_74577681bf (IsA landlocked_salmon atlantic_salmon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landlord s lien is a kind of lien", "pln": ["(: cnet_isa_b3b80d25db (IsA landlord_s_lien lien) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landlord is a kind of landowner", "pln": ["(: cnet_isa_cd768abd2f (IsA landlord landowner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landlubber is a kind of inhabitant", "pln": ["(: cnet_isa_d8d0037165 (IsA landlubber inhabitant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landlubber is a kind of novice", "pln": ["(: cnet_isa_82ba7a386d (IsA landlubber novice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landmark is a kind of connection to history", "pln": ["(: cnet_isa_d1f11f070f (IsA landmark connection_to_history) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landmark is a kind of reference point", "pln": ["(: cnet_isa_f1d28c8138 (IsA landmark reference_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landmark is a kind of juncture", "pln": ["(: cnet_isa_6f5f3bbe13 (IsA landmark juncture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landmark is a kind of position", "pln": ["(: cnet_isa_42dba29317 (IsA landmark position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landmark is a kind of structure", "pln": ["(: cnet_isa_484cc2ed5b (IsA landmark structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landmass is a kind of land", "pln": ["(: cnet_isa_c2e6604640 (IsA landmass land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landowner is a kind of holder", "pln": ["(: cnet_isa_f1a122708b (IsA landowner holder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landscape is a kind of genre", "pln": ["(: cnet_isa_f3bf5c0755 (IsA landscape genre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landscape is a kind of painting", "pln": ["(: cnet_isa_571595cb75 (IsA landscape painting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landscape is a kind of point of view", "pln": ["(: cnet_isa_4e400f01b5 (IsA landscape point_of_view) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landscape is a kind of scenery", "pln": ["(: cnet_isa_9a05e74ab9 (IsA landscape scenery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landscape architect is a kind of architect", "pln": ["(: cnet_isa_a10f73ac64 (IsA landscape_architect architect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "landscape architecture is a kind of discipline", "pln": ["(: cnet_isa_fb6ac797dd (IsA landscape_architecture discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landscape architecture is a kind of fine art", "pln": ["(: cnet_isa_275b63ffbd (IsA landscape_architecture fine_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landscaping is a kind of gardening", "pln": ["(: cnet_isa_f87d77b5ea (IsA landscaping gardening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landscaping is a kind of garden", "pln": ["(: cnet_isa_96b9e2eb94 (IsA landscaping garden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landscapist is a kind of painter", "pln": ["(: cnet_isa_6adc6c7156 (IsA landscapist painter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landside is a kind of component", "pln": ["(: cnet_isa_9ceedde9fb (IsA landside component) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landslide is a kind of slide", "pln": ["(: cnet_isa_d9b3330991 (IsA landslide slide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "landslide is a kind of victory", "pln": ["(: cnet_isa_371790de09 (IsA landslide victory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lane s prince albert is a kind of cooking apple", "pln": ["(: cnet_isa_9289608312 (IsA lane_s_prince_albert cooking_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lane is a kind of small road", "pln": ["(: cnet_isa_9660cc6ee8 (IsA lane small_road) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lane is a kind of path", "pln": ["(: cnet_isa_db6178abf6 (IsA lane path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lane is a kind of way", "pln": ["(: cnet_isa_726fb672e0 (IsA lane way) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "langbeinite is a kind of mineral", "pln": ["(: cnet_isa_0739812ed8 (IsA langbeinite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "langlaufer is a kind of skier", "pln": ["(: cnet_isa_f3dda77126 (IsA langlaufer skier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "langley is a kind of unit of measurement", "pln": ["(: cnet_isa_0949d685ee (IsA langley unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "langobard is a kind of european", "pln": ["(: cnet_isa_cbe7e5c0bb (IsA langobard european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "language is a kind of faculty", "pln": ["(: cnet_isa_f4933f3759 (IsA language faculty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "language is a kind of communication", "pln": ["(: cnet_isa_52f7ab5aef (IsA language communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "language area is a kind of cortical area", "pln": ["(: cnet_isa_770097e685 (IsA language_area cortical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "language barrier is a kind of barrier", "pln": ["(: cnet_isa_55d633ff36 (IsA language_barrier barrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "language learning is a kind of learning", "pln": ["(: cnet_isa_5d0b460d56 (IsA language_learning learning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "language lesson is a kind of lesson", "pln": ["(: cnet_isa_265e1e37d2 (IsA language_lesson lesson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "language requirement is a kind of academic requirement", "pln": ["(: cnet_isa_727908f850 (IsA language_requirement academic_requirement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "language school is a kind of school", "pln": ["(: cnet_isa_bbc536b0ee (IsA language_school school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "language system is a kind of system", "pln": ["(: cnet_isa_156c029a9a (IsA language_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "language teaching is a kind of teaching", "pln": ["(: cnet_isa_c6ff25aba2 (IsA language_teaching teaching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "language unit is a kind of part", "pln": ["(: cnet_isa_d9a0967e48 (IsA language_unit part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "langue d oc is a kind of french", "pln": ["(: cnet_isa_3aa72d0f89 (IsA langue_d_oc french) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "langue d oil is a kind of french", "pln": ["(: cnet_isa_651df24951 (IsA langue_d_oil french) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "languisher is a kind of unfortunate", "pln": ["(: cnet_isa_1337828a73 (IsA languisher unfortunate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "languor is a kind of inactiveness", "pln": ["(: cnet_isa_e553d3af0a (IsA languor inactiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "languor is a kind of apathy", "pln": ["(: cnet_isa_9764db88fa (IsA languor apathy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "languor is a kind of easiness", "pln": ["(: cnet_isa_380c8595c5 (IsA languor easiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "languor is a kind of wind", "pln": ["(: cnet_isa_99c68fdd0d (IsA languor wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "langur is a kind of old world monkey", "pln": ["(: cnet_isa_4a88274daa (IsA langur old_world_monkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laniidae is a kind of bird family", "pln": ["(: cnet_isa_80f341ecd2 (IsA laniidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lanius is a kind of bird genus", "pln": ["(: cnet_isa_63818cbf09 (IsA lanius bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lankiness is a kind of physique", "pln": ["(: cnet_isa_6400d8cc14 (IsA lankiness physique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lanolin is a kind of cream", "pln": ["(: cnet_isa_8cccfc293e (IsA lanolin cream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lanolin is a kind of animal oil", "pln": ["(: cnet_isa_fbc9037d46 (IsA lanolin animal_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lanseh is a kind of edible fruit", "pln": ["(: cnet_isa_5145bbf244 (IsA lanseh edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lanseh tree is a kind of tree", "pln": ["(: cnet_isa_0438c9b939 (IsA lanseh_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lantana is a kind of poisonous plant", "pln": ["(: cnet_isa_1cc4268c7d (IsA lantana poisonous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lantern is a kind of lamp", "pln": ["(: cnet_isa_e7fd00f286 (IsA lantern lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lantern fly is a kind of plant hopper", "pln": ["(: cnet_isa_98db542f67 (IsA lantern_fly plant_hopper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lantern jaw is a kind of lower jaw", "pln": ["(: cnet_isa_495a208d7c (IsA lantern_jaw lower_jaw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lantern pinion is a kind of pinion", "pln": ["(: cnet_isa_3fd0de7c56 (IsA lantern_pinion pinion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lanternfish is a kind of soft finned fish", "pln": ["(: cnet_isa_99536d2c69 (IsA lanternfish soft_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lanthanide sery is a kind of sery", "pln": ["(: cnet_isa_69bec305cc (IsA lanthanide_sery sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lanthanotidae is a kind of reptile family", "pln": ["(: cnet_isa_381a7a5caf (IsA lanthanotidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lanthanotus is a kind of reptile genus", "pln": ["(: cnet_isa_09038bef14 (IsA lanthanotus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lanthanotus borneensis is a kind of lizard", "pln": ["(: cnet_isa_3eaab0f5e3 (IsA lanthanotus_borneensis lizard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lanthanum is a kind of metallic element", "pln": ["(: cnet_isa_c86c1890cd (IsA lanthanum metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lanugo is a kind of down", "pln": ["(: cnet_isa_ae32b98213 (IsA lanugo down) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lanyard is a kind of cord", "pln": ["(: cnet_isa_56b18df3d4 (IsA lanyard cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lanyard is a kind of line", "pln": ["(: cnet_isa_8fa7736518 (IsA lanyard line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lao is a kind of tai", "pln": ["(: cnet_isa_1b2fb20ae9 (IsA lao tai) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laotian is a kind of asiatic", "pln": ["(: cnet_isa_07196919e3 (IsA laotian asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "laotian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_e005114a90 (IsA laotian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lap is a kind of locomotion", "pln": ["(: cnet_isa_e5d2840bbf (IsA lap locomotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lap is a kind of cloth covering", "pln": ["(: cnet_isa_817c1a83df (IsA lap cloth_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lap is a kind of flap", "pln": ["(: cnet_isa_5fc308c99f (IsA lap flap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lap is a kind of thigh", "pln": ["(: cnet_isa_961c7afb8c (IsA lap thigh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lap is a kind of sphere", "pln": ["(: cnet_isa_e9a944c083 (IsA lap sphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lap joint is a kind of joint", "pln": ["(: cnet_isa_b242611f5b (IsA lap_joint joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lap of god is a kind of lap", "pln": ["(: cnet_isa_77e40c1436 (IsA lap_of_god lap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lap of luxury is a kind of ease", "pln": ["(: cnet_isa_02cbcc3633 (IsA lap_of_luxury ease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laparocele is a kind of hernia", "pln": ["(: cnet_isa_79d712a3d4 (IsA laparocele hernia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laparoscope is a kind of endoscope", "pln": ["(: cnet_isa_539937982b (IsA laparoscope endoscope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "laparoscopic cholecystectomy is a kind of cholecystectomy", "pln": ["(: cnet_isa_526cf0da3f (IsA laparoscopic_cholecystectomy cholecystectomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laparoscopy is a kind of laparotomy", "pln": ["(: cnet_isa_020cb80b42 (IsA laparoscopy laparotomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laparotomy is a kind of incision", "pln": ["(: cnet_isa_6815ccb8d4 (IsA laparotomy incision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lapboard is a kind of writing board", "pln": ["(: cnet_isa_27320b34c1 (IsA lapboard writing_board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lapdog is a kind of dog", "pln": ["(: cnet_isa_7bad095864 (IsA lapdog dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lapel is a kind of lap", "pln": ["(: cnet_isa_106ca1197e (IsA lapel lap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lapful is a kind of containerful", "pln": ["(: cnet_isa_459345de64 (IsA lapful containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lapidary is a kind of engraver", "pln": ["(: cnet_isa_674e5fb1d2 (IsA lapidary engraver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lapidary is a kind of expert", "pln": ["(: cnet_isa_dd69ea766b (IsA lapidary expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lapin is a kind of rabbit", "pln": ["(: cnet_isa_2731787d4a (IsA lapin rabbit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lapin is a kind of fur", "pln": ["(: cnet_isa_fb7d66d6e4 (IsA lapin fur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lapis lazuli is a kind of opaque gem", "pln": ["(: cnet_isa_e509f18fe9 (IsA lapis_lazuli opaque_gem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laportea is a kind of dicot genus", "pln": ["(: cnet_isa_8fd4dbed13 (IsA laportea dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lapp is a kind of lappic", "pln": ["(: cnet_isa_cc97ad5280 (IsA lapp lappic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lappet is a kind of lasiocampid", "pln": ["(: cnet_isa_538c04b55a (IsA lappet lasiocampid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lappet is a kind of lap", "pln": ["(: cnet_isa_76abe7170f (IsA lappet lap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lappet caterpillar is a kind of caterpillar", "pln": ["(: cnet_isa_ec7e0ebd99 (IsA lappet_caterpillar caterpillar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lappic is a kind of uralic", "pln": ["(: cnet_isa_267e610835 (IsA lappic uralic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lapplander is a kind of european", "pln": ["(: cnet_isa_33be5a9309 (IsA lapplander european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lapse is a kind of pause", "pln": ["(: cnet_isa_a67edd16d5 (IsA lapse pause) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laptop is a kind of portable computer", "pln": ["(: cnet_isa_39d1c07cbb (IsA laptop portable_computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laputa is a kind of imaginary place", "pln": ["(: cnet_isa_c9cd57c68d (IsA laputa imaginary_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lapwing is a kind of plover", "pln": ["(: cnet_isa_59f94ddd0b (IsA lapwing plover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "larboard is a kind of side", "pln": ["(: cnet_isa_afdd9e3d88 (IsA larboard side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "larcenist is a kind of thief", "pln": ["(: cnet_isa_fb93610902 (IsA larcenist thief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "larceny is a kind of felony", "pln": ["(: cnet_isa_aa4353ca6f (IsA larceny felony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "larch is a kind of conifer", "pln": ["(: cnet_isa_947a70b479 (IsA larch conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "larch is a kind of wood", "pln": ["(: cnet_isa_bf02b1544d (IsA larch wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lard is a kind of edible fat", "pln": ["(: cnet_isa_f5ef87b9f0 (IsA lard edible_fat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lard oil is a kind of animal oil", "pln": ["(: cnet_isa_59bdd313ad (IsA lard_oil animal_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "larder is a kind of commissariat", "pln": ["(: cnet_isa_ae2b47ba73 (IsA larder commissariat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lardizabala is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_89694b0366 (IsA lardizabala magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lardizabalaceae is a kind of magnoliid dicot family", "pln": ["(: cnet_isa_17ae71715d (IsA lardizabalaceae magnoliid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "large is a kind of size", "pln": ["(: cnet_isa_508cd156e4 (IsA large size) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "large cap is a kind of corporation", "pln": ["(: cnet_isa_41798be5d9 (IsA large_cap corporation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "large civet is a kind of civet", "pln": ["(: cnet_isa_83c6597699 (IsA large_civet civet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "large container is a kind of bigger than small container", "pln": ["(: cnet_isa_d3cd18a76a (IsA large_container bigger_than_small_container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "large crabgrass is a kind of crabgrass", "pln": ["(: cnet_isa_3265191025 (IsA large_crabgrass crabgrass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "large flowered calamint is a kind of calamint", "pln": ["(: cnet_isa_40d0c7eb64 (IsA large_flowered_calamint calamint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "large flowered fiddleneck is a kind of herb", "pln": ["(: cnet_isa_55a95d3c10 (IsA large_flowered_fiddleneck herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "large indefinite quantity is a kind of indefinite quantity", "pln": ["(: cnet_isa_2847c5a2ba (IsA large_indefinite_quantity indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "large integer is a kind of integer", "pln": ["(: cnet_isa_5c91acf7bb (IsA large_integer integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "large intestine is a kind of intestine", "pln": ["(: cnet_isa_e6fd49fcb6 (IsA large_intestine intestine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "large leaved aster is a kind of wood aster", "pln": ["(: cnet_isa_af77b63f53 (IsA large_leaved_aster wood_aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "large leaved magnolia is a kind of magnolia", "pln": ["(: cnet_isa_b1ad0c9d34 (IsA large_leaved_magnolia magnolia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "large magellanic cloud is a kind of magellanic cloud", "pln": ["(: cnet_isa_6f984d003c (IsA large_magellanic_cloud magellanic_cloud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "large periwinkle is a kind of periwinkle", "pln": ["(: cnet_isa_bc8b38338d (IsA large_periwinkle periwinkle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "large person is a kind of person", "pln": ["(: cnet_isa_2629622e78 (IsA large_person person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "large poodle is a kind of poodle", "pln": ["(: cnet_isa_93a629049f (IsA large_poodle poodle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "large white is a kind of cabbage butterfly", "pln": ["(: cnet_isa_254d394326 (IsA large_white cabbage_butterfly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "large white petunia is a kind of petunia", "pln": ["(: cnet_isa_be9a44565a (IsA large_white_petunia petunia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "large yellow lady s slipper is a kind of yellow lady s slipper", "pln": ["(: cnet_isa_cbfcfb8a19 (IsA large_yellow_lady_s_slipper yellow_lady_s_slipper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "largeleaf holly is a kind of holly", "pln": ["(: cnet_isa_66dac9bf1f (IsA largeleaf_holly holly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "largemouth is a kind of black bass", "pln": ["(: cnet_isa_b67863eb20 (IsA largemouth black_bass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "largemouth bass is a kind of freshwater bass", "pln": ["(: cnet_isa_995a5b19ca (IsA largemouth_bass freshwater_bass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "largeness is a kind of size", "pln": ["(: cnet_isa_90af03a494 (IsA largeness size) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "largess is a kind of gift", "pln": ["(: cnet_isa_eaa1e87ab9 (IsA largess gift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "larghetto is a kind of musical composition", "pln": ["(: cnet_isa_a981c31544 (IsA larghetto musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "largo is a kind of musical composition", "pln": ["(: cnet_isa_141c565e6c (IsA largo musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "largo is a kind of passage", "pln": ["(: cnet_isa_4d368292bc (IsA largo passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lari is a kind of animal order", "pln": ["(: cnet_isa_567d2d9cd8 (IsA lari animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lari is a kind of georgian monetary unit", "pln": ["(: cnet_isa_dca3a5c698 (IsA lari georgian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laricariidae is a kind of fish family", "pln": ["(: cnet_isa_c092d3d178 (IsA laricariidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "larid is a kind of coastal diving bird", "pln": ["(: cnet_isa_d6c917e8ca (IsA larid coastal_diving_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laridae is a kind of bird family", "pln": ["(: cnet_isa_02d93ce762 (IsA laridae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "larix is a kind of gymnosperm genus", "pln": ["(: cnet_isa_c0920dcfb3 (IsA larix gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lark is a kind of bird", "pln": ["(: cnet_isa_f58dab4ecf (IsA lark bird) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lark is a kind of oscine", "pln": ["(: cnet_isa_725a183380 (IsA lark oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "larkspur is a kind of delphinium", "pln": ["(: cnet_isa_6981d71e4a (IsA larkspur delphinium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "larrea is a kind of rosid dicot genus", "pln": ["(: cnet_isa_c450491680 (IsA larrea rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "larsony is a kind of crime", "pln": ["(: cnet_isa_5facd18b86 (IsA larsony crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "larus is a kind of bird genus", "pln": ["(: cnet_isa_0a3a252db6 (IsA larus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "larva is a kind of animal", "pln": ["(: cnet_isa_473de8b198 (IsA larva animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "larvacea is a kind of class", "pln": ["(: cnet_isa_7110798bcd (IsA larvacea class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "larvacean is a kind of tunicate", "pln": ["(: cnet_isa_c9bf7678b9 (IsA larvacean tunicate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "larvacide is a kind of insecticide", "pln": ["(: cnet_isa_4cad573551 (IsA larvacide insecticide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "larvicide is a kind of chemical", "pln": ["(: cnet_isa_80d7b32c8e (IsA larvicide chemical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laryngeal artery is a kind of artery", "pln": ["(: cnet_isa_7e271ee18f (IsA laryngeal_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laryngeal vein is a kind of vein", "pln": ["(: cnet_isa_207ded4534 (IsA laryngeal_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laryngectomy is a kind of ablation", "pln": ["(: cnet_isa_dcad2471d6 (IsA laryngectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laryngismus is a kind of spasm", "pln": ["(: cnet_isa_c2f6398b4f (IsA laryngismus spasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laryngitis is a kind of inflammation", "pln": ["(: cnet_isa_e46d0181fe (IsA laryngitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laryngopharyngitis is a kind of inflammation", "pln": ["(: cnet_isa_1e2eeceead (IsA laryngopharyngitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laryngopharynx is a kind of cavity", "pln": ["(: cnet_isa_fe5b8a197f (IsA laryngopharynx cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laryngoscope is a kind of medical instrument", "pln": ["(: cnet_isa_daf5324432 (IsA laryngoscope medical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laryngospasm is a kind of occlusion", "pln": ["(: cnet_isa_276f3d2405 (IsA laryngospasm occlusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laryngostenosis is a kind of stenosis", "pln": ["(: cnet_isa_f6d10d0ba1 (IsA laryngostenosis stenosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laryngotracheobronchitis is a kind of inflammation", "pln": ["(: cnet_isa_099c08c9db (IsA laryngotracheobronchitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "larynx is a kind of cartilaginous structure", "pln": ["(: cnet_isa_cb325c235a (IsA larynx cartilaginous_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "larynx is a kind of speech organ", "pln": ["(: cnet_isa_c9ef9d5bc7 (IsA larynx speech_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lasagna is a kind of form of pasta", "pln": ["(: cnet_isa_91a15d906f (IsA lasagna form_of_pasta) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lasagna is a kind of pasta", "pln": ["(: cnet_isa_1aabcde39d (IsA lasagna pasta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lascar is a kind of sailor", "pln": ["(: cnet_isa_2a3144abf9 (IsA lascar sailor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laser is a kind of light", "pln": ["(: cnet_isa_51b3ce4600 (IsA laser light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laser is a kind of optical device", "pln": ["(: cnet_isa_0aed9dbc64 (IsA laser optical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laser assisted in situ keratomileusis is a kind of eye operation", "pln": ["(: cnet_isa_25b002d3d0 (IsA laser_assisted_in_situ_keratomileusis eye_operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laser assisted subepithelial keratomileusis is a kind of eye operation", "pln": ["(: cnet_isa_b81f0da573 (IsA laser_assisted_subepithelial_keratomileusis eye_operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laser beam is a kind of beam", "pln": ["(: cnet_isa_9e6a4cc5a8 (IsA laser_beam beam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laser guided bomb is a kind of smart bomb", "pln": ["(: cnet_isa_2725a98b01 (IsA laser_guided_bomb smart_bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laser printer is a kind of electrostatic printer", "pln": ["(: cnet_isa_03ce940cc7 (IsA laser_printer electrostatic_printer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "laser trabecular surgery is a kind of eye operation", "pln": ["(: cnet_isa_61f51c55c3 (IsA laser_trabecular_surgery eye_operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lash is a kind of leather strip", "pln": ["(: cnet_isa_f5ae9663ea (IsA lash leather_strip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lash up is a kind of arrangement", "pln": ["(: cnet_isa_88aaec649f (IsA lash_up arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lasher is a kind of driver", "pln": ["(: cnet_isa_f35d6347b5 (IsA lasher driver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lashing is a kind of fastener", "pln": ["(: cnet_isa_a6267ac7aa (IsA lashing fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lashing is a kind of rope", "pln": ["(: cnet_isa_a9ae303988 (IsA lashing rope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lasiocampa is a kind of arthropod genus", "pln": ["(: cnet_isa_4ebf6884b0 (IsA lasiocampa arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lasiocampid is a kind of moth", "pln": ["(: cnet_isa_a9a69e9d74 (IsA lasiocampid moth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lasiocampidae is a kind of arthropod family", "pln": ["(: cnet_isa_73100abff9 (IsA lasiocampidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lasiurus is a kind of mammal genus", "pln": ["(: cnet_isa_f0e38239d6 (IsA lasiurus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lass is a kind of girl", "pln": ["(: cnet_isa_80f9e73d18 (IsA lass girl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lassa fever is a kind of hemorrhagic fever", "pln": ["(: cnet_isa_d8a311e8c5 (IsA lassa_fever hemorrhagic_fever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lassa virus is a kind of arenavirus", "pln": ["(: cnet_isa_f78c5d8de4 (IsA lassa_virus arenavirus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lasso is a kind of rope", "pln": ["(: cnet_isa_9bb95a7b1d (IsA lasso rope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "last is a kind of activity", "pln": ["(: cnet_isa_45adf0d13a (IsA last activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "last is a kind of holding device", "pln": ["(: cnet_isa_2d7ec65f7a (IsA last holding_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "last is a kind of rank", "pln": ["(: cnet_isa_e244e65cb3 (IsA last rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "last is a kind of volume unit", "pln": ["(: cnet_isa_8ca73fa7ea (IsA last volume_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "last is a kind of weight unit", "pln": ["(: cnet_isa_93a555da61 (IsA last weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "last gasp is a kind of end", "pln": ["(: cnet_isa_c0da6c5d3c (IsA last_gasp end) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "last in first out is a kind of inventory accounting", "pln": ["(: cnet_isa_4cf9576827 (IsA last_in_first_out inventory_accounting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "last laugh is a kind of victory", "pln": ["(: cnet_isa_4bf66d4a2f (IsA last_laugh victory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "last mile is a kind of walk", "pln": ["(: cnet_isa_9c72b21ab7 (IsA last_mile walk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "last quarter is a kind of half moon", "pln": ["(: cnet_isa_782bc11b8c (IsA last_quarter half_moon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "last respect is a kind of deference", "pln": ["(: cnet_isa_6637cba253 (IsA last_respect deference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "last rite is a kind of rite", "pln": ["(: cnet_isa_f3d26a4b8b (IsA last_rite rite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "last straw is a kind of aggravation", "pln": ["(: cnet_isa_f506969a60 (IsA last_straw aggravation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "last supper is a kind of seder", "pln": ["(: cnet_isa_21389e1ec0 (IsA last_supper seder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "last word is a kind of argument", "pln": ["(: cnet_isa_e953026bae (IsA last_word argument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "last word is a kind of authority", "pln": ["(: cnet_isa_6b904ddc61 (IsA last_word authority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lasthenia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_3c1e4870c2 (IsA lasthenia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lastingness is a kind of permanence", "pln": ["(: cnet_isa_a768828a49 (IsA lastingness permanence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lastreopsis is a kind of fern genus", "pln": ["(: cnet_isa_e11ef7eef5 (IsA lastreopsis fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latakia is a kind of turkish tobacco", "pln": ["(: cnet_isa_b58470d517 (IsA latakia turkish_tobacco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latanier is a kind of fan palm", "pln": ["(: cnet_isa_6a2ee989a0 (IsA latanier fan_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latch is a kind of catch", "pln": ["(: cnet_isa_15e7e57893 (IsA latch catch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latch is a kind of lock", "pln": ["(: cnet_isa_2bcd192417 (IsA latch lock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "latchet is a kind of strap", "pln": ["(: cnet_isa_2f731f7eb4 (IsA latchet strap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latchkey is a kind of key", "pln": ["(: cnet_isa_dbf06325e5 (IsA latchkey key) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latchkey child is a kind of schoolchild", "pln": ["(: cnet_isa_05c1c7ea06 (IsA latchkey_child schoolchild) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latchstring is a kind of opener", "pln": ["(: cnet_isa_63047aa981 (IsA latchstring opener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "late blight is a kind of blight", "pln": ["(: cnet_isa_92832aff74 (IsA late_blight blight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "late greek is a kind of greek", "pln": ["(: cnet_isa_18bd68483a (IsA late_greek greek) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "late latin is a kind of latin", "pln": ["(: cnet_isa_928ca83df3 (IsA late_latin latin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "late night hour is a kind of hour", "pln": ["(: cnet_isa_22f534f4ba (IsA late_night_hour hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "late purple aster is a kind of aster", "pln": ["(: cnet_isa_df4f33b89a (IsA late_purple_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latecomer is a kind of arrival", "pln": ["(: cnet_isa_60d95c2337 (IsA latecomer arrival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lateen is a kind of fore and aft sail", "pln": ["(: cnet_isa_bf3bc83a1f (IsA lateen fore_and_aft_sail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lateen rig is a kind of rig", "pln": ["(: cnet_isa_dc717f19dc (IsA lateen_rig rig) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latency is a kind of potential", "pln": ["(: cnet_isa_de4f1255de (IsA latency potential) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latency stage is a kind of phase", "pln": ["(: cnet_isa_72f1667718 (IsA latency_stage phase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lateness is a kind of timing", "pln": ["(: cnet_isa_3d04284025 (IsA lateness timing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latent content is a kind of message", "pln": ["(: cnet_isa_cb2c22f7bd (IsA latent_content message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latent diabete is a kind of diabete mellitus", "pln": ["(: cnet_isa_e6937fe602 (IsA latent_diabete diabete_mellitus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latent heat is a kind of heat", "pln": ["(: cnet_isa_991ac12545 (IsA latent_heat heat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latent hostility is a kind of hostility", "pln": ["(: cnet_isa_63a7c78665 (IsA latent_hostility hostility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latent period is a kind of time interval", "pln": ["(: cnet_isa_87c0889ce7 (IsA latent_period time_interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lateral condyle is a kind of condyle", "pln": ["(: cnet_isa_7e54a7c736 (IsA lateral_condyle condyle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lateral epicondyle is a kind of epicondyle", "pln": ["(: cnet_isa_4e38d0479a (IsA lateral_epicondyle epicondyle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lateral geniculate body is a kind of geniculate body", "pln": ["(: cnet_isa_bd139ffed8 (IsA lateral_geniculate_body geniculate_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lateral line is a kind of sense organ", "pln": ["(: cnet_isa_488a76ccea (IsA lateral_line sense_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lateral pass is a kind of pass", "pln": ["(: cnet_isa_212f237444 (IsA lateral_pass pass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lateral thinking is a kind of heuristic", "pln": ["(: cnet_isa_51b363260f (IsA lateral_thinking heuristic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lateral ventricle is a kind of ventricle", "pln": ["(: cnet_isa_f20f5fe813 (IsA lateral_ventricle ventricle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laterality is a kind of bodily property", "pln": ["(: cnet_isa_f731de5658 (IsA laterality bodily_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lateralization is a kind of localization of function", "pln": ["(: cnet_isa_1ae712a0df (IsA lateralization localization_of_function) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lateran council is a kind of council", "pln": ["(: cnet_isa_ee85a7eef7 (IsA lateran_council council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laterite is a kind of soil", "pln": ["(: cnet_isa_6864814a4b (IsA laterite soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latest is a kind of new", "pln": ["(: cnet_isa_ce1747891e (IsA latest new) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latex is a kind of exudate", "pln": ["(: cnet_isa_cebc083d5e (IsA latex exudate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latex paint is a kind of water base paint", "pln": ["(: cnet_isa_01fe710d3b (IsA latex_paint water_base_paint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lath is a kind of slat", "pln": ["(: cnet_isa_8838dedc26 (IsA lath slat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lath and plaster is a kind of building material", "pln": ["(: cnet_isa_55d626847f (IsA lath_and_plaster building_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lathe is a kind of shaper", "pln": ["(: cnet_isa_89ea6dc29d (IsA lathe shaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lather is a kind of foam", "pln": ["(: cnet_isa_4b24be6147 (IsA lather foam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lather is a kind of workman", "pln": ["(: cnet_isa_3f897d0ce2 (IsA lather workman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lathi is a kind of club", "pln": ["(: cnet_isa_e24cfbca6d (IsA lathi club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lathyrus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_614fd90831 (IsA lathyrus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laticifer is a kind of duct", "pln": ["(: cnet_isa_f67883f481 (IsA laticifer duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latimeria is a kind of fish genus", "pln": ["(: cnet_isa_b0b412f3a0 (IsA latimeria fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latimeridae is a kind of fish family", "pln": ["(: cnet_isa_f56782f1c5 (IsA latimeridae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latin is a kind of human language", "pln": ["(: cnet_isa_a1133ab2f7 (IsA latin human_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latin is a kind of italic", "pln": ["(: cnet_isa_d821be6710 (IsA latin italic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "latin is a kind of inhabitant", "pln": ["(: cnet_isa_ac922e6fff (IsA latin inhabitant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latin is a kind of person", "pln": ["(: cnet_isa_0fedbfb2b2 (IsA latin person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latin cross is a kind of cross", "pln": ["(: cnet_isa_6b51d159d0 (IsA latin_cross cross) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latin square is a kind of square matrix", "pln": ["(: cnet_isa_72408f3c94 (IsA latin_square square_matrix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latinae is a kind of subfamily", "pln": ["(: cnet_isa_062a8e59f8 (IsA latinae subfamily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latinesce is a kind of artificial language", "pln": ["(: cnet_isa_d3176d3bef (IsA latinesce artificial_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latinism is a kind of loanword", "pln": ["(: cnet_isa_26bf4d5410 (IsA latinism loanword) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latinist is a kind of classicist", "pln": ["(: cnet_isa_12743a4551 (IsA latinist classicist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "latino is a kind of american", "pln": ["(: cnet_isa_df00e905f1 (IsA latino american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latisimus dorsi is a kind of skeletal muscle", "pln": ["(: cnet_isa_0d7e9b2bb4 (IsA latisimus_dorsi skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latitude is a kind of scope", "pln": ["(: cnet_isa_a2ca9cd5ea (IsA latitude scope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latitude is a kind of angular distance", "pln": ["(: cnet_isa_f860d660c7 (IsA latitude angular_distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "latitude is a kind of line", "pln": ["(: cnet_isa_d38836a692 (IsA latitude line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "lats is a kind of latvian monetary unit", "pln": ["(: cnet_isa_36206f4e6b (IsA lats latvian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latitude is a kind of liberty", "pln": ["(: cnet_isa_ee42e548f6 (IsA latitude liberty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latitudinarian is a kind of liberal", "pln": ["(: cnet_isa_4c35f5763c (IsA latitudinarian liberal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latona is a kind of graeco roman deity", "pln": ["(: cnet_isa_22d15b57be (IsA latona graeco_roman_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latrine is a kind of public toilet", "pln": ["(: cnet_isa_e8406ebfba (IsA latrine public_toilet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latrodectus is a kind of arthropod genus", "pln": ["(: cnet_isa_954c394182 (IsA latrodectus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lat is a kind of latvian monetary unit", "pln": ["(: cnet_isa_be1dce9bea (IsA lat latvian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latten is a kind of brass", "pln": ["(: cnet_isa_23bc170d2c (IsA latten brass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latter is a kind of second", "pln": ["(: cnet_isa_761d585ff6 (IsA latter second) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latter day saint is a kind of protestant", "pln": ["(: cnet_isa_ff2cedac49 (IsA latter_day_saint protestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lattice is a kind of framework", "pln": ["(: cnet_isa_f51cbcefc1 (IsA lattice framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lattice is a kind of arrangement", "pln": ["(: cnet_isa_d347b87859 (IsA lattice arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "latvian is a kind of baltic", "pln": ["(: cnet_isa_ecab04eab0 (IsA latvian baltic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latvian is a kind of european", "pln": ["(: cnet_isa_34f0861342 (IsA latvian european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "latvian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_6127433b0f (IsA latvian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laudanum is a kind of opiate", "pln": ["(: cnet_isa_1cecc36e45 (IsA laudanum opiate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "laudator is a kind of communicator", "pln": ["(: cnet_isa_133c1a960e (IsA laudator communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "laundry is a kind of white goods", "pln": ["(: cnet_isa_ef8cb36d88 (IsA laundry white_goods) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laugh is a kind of facial expression", "pln": ["(: cnet_isa_1cb2c3bb6d (IsA laugh facial_expression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laugh is a kind of utterance", "pln": ["(: cnet_isa_8f5cdfd7cc (IsA laugh utterance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laugh track is a kind of soundtrack", "pln": ["(: cnet_isa_83122bf213 (IsA laugh_track soundtrack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laugher is a kind of person", "pln": ["(: cnet_isa_c1af834fac (IsA laugher person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laughing gull is a kind of gull", "pln": ["(: cnet_isa_298d37a805 (IsA laughing_gull gull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laughing owl is a kind of owl", "pln": ["(: cnet_isa_caf8e48167 (IsA laughing_owl owl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laughter is a kind of expression of humor", "pln": ["(: cnet_isa_46ddae320d (IsA laughter expression_of_humor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laughter is a kind of very special homosapien trait", "pln": ["(: cnet_isa_f882484a43 (IsA laughter very_special_homosapien_trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laughter is a kind of activity", "pln": ["(: cnet_isa_14ad05abba (IsA laughter activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "launch is a kind of motorboat", "pln": ["(: cnet_isa_ef3b553b2b (IsA launch motorboat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "launcher is a kind of armament", "pln": ["(: cnet_isa_2b6edcbdda (IsA launcher armament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "launching is a kind of propulsion", "pln": ["(: cnet_isa_1a07cbcc8d (IsA launching propulsion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "launching pad is a kind of platform", "pln": ["(: cnet_isa_ecfd0eed98 (IsA launching_pad platform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "launching site is a kind of site", "pln": ["(: cnet_isa_56297f95bd (IsA launching_site site) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "launderette is a kind of laundry", "pln": ["(: cnet_isa_380963abfc (IsA launderette laundry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laundering is a kind of wash", "pln": ["(: cnet_isa_9d1f926f43 (IsA laundering wash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laundry is a kind of garment", "pln": ["(: cnet_isa_5ab28bc587 (IsA laundry garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laundry is a kind of white good", "pln": ["(: cnet_isa_883b52b0ca (IsA laundry white_good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laundry is a kind of workplace", "pln": ["(: cnet_isa_92069e29d2 (IsA laundry workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laundry cart is a kind of handcart", "pln": ["(: cnet_isa_2a02be7f14 (IsA laundry_cart handcart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laundry detergent is a kind of detergent", "pln": ["(: cnet_isa_1d419f9d33 (IsA laundry_detergent detergent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laundry truck is a kind of van", "pln": ["(: cnet_isa_830a06f2f5 (IsA laundry_truck van) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lauraceae is a kind of magnoliid dicot family", "pln": ["(: cnet_isa_0c77a3243d (IsA lauraceae magnoliid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laureate is a kind of honoree", "pln": ["(: cnet_isa_1d973768de (IsA laureate honoree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laurel is a kind of angiospermous tree", "pln": ["(: cnet_isa_75506adcf1 (IsA laurel angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laurel oak is a kind of oak", "pln": ["(: cnet_isa_927accad3b (IsA laurel_oak oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laurel sumac is a kind of shrub", "pln": ["(: cnet_isa_faed9a680e (IsA laurel_sumac shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "laurel tree is a kind of laurel", "pln": ["(: cnet_isa_59970480f4 (IsA laurel_tree laurel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laurel is a kind of wreath", "pln": ["(: cnet_isa_afe41b48ee (IsA laurel wreath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laurelwood is a kind of tree", "pln": ["(: cnet_isa_52dd456e28 (IsA laurelwood tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lauric acid is a kind of saturated fatty acid", "pln": ["(: cnet_isa_092ac749b1 (IsA lauric_acid saturated_fatty_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laurus is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_1cc1c35004 (IsA laurus magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lauryl alcohol is a kind of alcohol", "pln": ["(: cnet_isa_a2c74880e7 (IsA lauryl_alcohol alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lava is a kind of volcanic rock", "pln": ["(: cnet_isa_befd1aa45b (IsA lava volcanic_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lavage is a kind of irrigation", "pln": ["(: cnet_isa_fdb49da1c7 (IsA lavage irrigation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lavalava is a kind of skirt", "pln": ["(: cnet_isa_b510baa632 (IsA lavalava skirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lavaliere is a kind of pendant", "pln": ["(: cnet_isa_ee8901c17b (IsA lavaliere pendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lavandula is a kind of asterid dicot genus", "pln": ["(: cnet_isa_e3d4372ecd (IsA lavandula asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lavatera is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_4454eb4f4a (IsA lavatera dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lavender is a kind of purple", "pln": ["(: cnet_isa_87c7363d6c (IsA lavender purple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lavender is a kind of shrub", "pln": ["(: cnet_isa_be42d699f2 (IsA lavender shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lavender cotton is a kind of shrub", "pln": ["(: cnet_isa_66c1d8d621 (IsA lavender_cotton shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laver is a kind of basin", "pln": ["(: cnet_isa_ab2bcc94c6 (IsA laver basin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lavishness is a kind of expensiveness", "pln": ["(: cnet_isa_793929e71d (IsA lavishness expensiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "law is a kind of obligatory rule of conduct", "pln": ["(: cnet_isa_7c7e78ca34 (IsA law obligatory_rule_of_conduct) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "law is a kind of concept", "pln": ["(: cnet_isa_0bfc6474f6 (IsA law concept) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "law is a kind of collection", "pln": ["(: cnet_isa_b048f23084 (IsA law collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "law is a kind of learned profession", "pln": ["(: cnet_isa_7d7daf963c (IsA law learned_profession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "law is a kind of legal document", "pln": ["(: cnet_isa_81eaa04bf7 (IsA law legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "law agent is a kind of solicitor", "pln": ["(: cnet_isa_3d80e9a165 (IsA law_agent solicitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "law degree is a kind of academic degree", "pln": ["(: cnet_isa_dc4dcb25f3 (IsA law_degree academic_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "law enforcement is a kind of enforcement", "pln": ["(: cnet_isa_6d1d3d0deb (IsA law_enforcement enforcement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "law enforcement agency is a kind of agency", "pln": ["(: cnet_isa_473fe7d2c9 (IsA law_enforcement_agency agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "law firm is a kind of firm", "pln": ["(: cnet_isa_c1de94bc0d (IsA law_firm firm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "law of average is a kind of law", "pln": ["(: cnet_isa_4bee30d078 (IsA law_of_average law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "law of constant proportion is a kind of law", "pln": ["(: cnet_isa_94cd36d18e (IsA law_of_constant_proportion law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "law of diminishing return is a kind of law", "pln": ["(: cnet_isa_05fdc1fb5d (IsA law_of_diminishing_return law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "law of effect is a kind of law", "pln": ["(: cnet_isa_b6f010fe93 (IsA law_of_effect law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "law of equivalent proportion is a kind of law", "pln": ["(: cnet_isa_d563033a47 (IsA law_of_equivalent_proportion law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "law of gravitation is a kind of law", "pln": ["(: cnet_isa_c72a4b5944 (IsA law_of_gravitation law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "law of independent assortment is a kind of mendel s law", "pln": ["(: cnet_isa_871748ff4a (IsA law_of_independent_assortment mendel_s_law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "law of land is a kind of law", "pln": ["(: cnet_isa_5aa86deb96 (IsA law_of_land law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "law of mass action is a kind of law", "pln": ["(: cnet_isa_b8c8d1eb3d (IsA law_of_mass_action law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "law of multiple proportion is a kind of law", "pln": ["(: cnet_isa_9e0d6a9029 (IsA law_of_multiple_proportion law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "law of segregation is a kind of mendel s law", "pln": ["(: cnet_isa_f5bbb5ea59 (IsA law_of_segregation mendel_s_law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "law of thermodynamic is a kind of law", "pln": ["(: cnet_isa_4da632fae4 (IsA law_of_thermodynamic law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "law practice is a kind of practice", "pln": ["(: cnet_isa_d43d384a17 (IsA law_practice practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "law school is a kind of graduate school", "pln": ["(: cnet_isa_adc77bb1c6 (IsA law_school graduate_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "law student is a kind of student", "pln": ["(: cnet_isa_89376a355c (IsA law_student student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lawcourt is a kind of court", "pln": ["(: cnet_isa_d6142beef0 (IsA lawcourt court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lawfulness is a kind of quality", "pln": ["(: cnet_isa_905e5e2cd5 (IsA lawfulness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lawgiver is a kind of leader", "pln": ["(: cnet_isa_6b3507d3d3 (IsA lawgiver leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lawlessness is a kind of illegality", "pln": ["(: cnet_isa_19b274fb9c (IsA lawlessness illegality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lawman is a kind of defender", "pln": ["(: cnet_isa_265b1fc068 (IsA lawman defender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lawn is a kind of area of grass", "pln": ["(: cnet_isa_75c30edc60 (IsA lawn area_of_grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lawn is a kind of grass", "pln": ["(: cnet_isa_e5819c7ab0 (IsA lawn grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lawn is a kind of field", "pln": ["(: cnet_isa_2da69ef5a4 (IsA lawn field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lawn bowling is a kind of bowling", "pln": ["(: cnet_isa_7998dffddc (IsA lawn_bowling bowling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lawn chair is a kind of chair", "pln": ["(: cnet_isa_822ac9bc6b (IsA lawn_chair chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lawn furniture is a kind of furniture", "pln": ["(: cnet_isa_e09b3b65a5 (IsA lawn_furniture furniture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lawn mower is a kind of garden tool", "pln": ["(: cnet_isa_708c69aaaf (IsA lawn_mower garden_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lawrencium is a kind of chemical element", "pln": ["(: cnet_isa_1a1cd0b52a (IsA lawrencium chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "law is a kind of rule", "pln": ["(: cnet_isa_d5a5bed135 (IsA law rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "law is a kind of rule for conduct", "pln": ["(: cnet_isa_ad8da97fce (IsA law rule_for_conduct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lawsuit is a kind of proceeding", "pln": ["(: cnet_isa_acce362af7 (IsA lawsuit proceeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lawyer is a kind of professional", "pln": ["(: cnet_isa_315dda9553 (IsA lawyer professional) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lawyer cane is a kind of calamus", "pln": ["(: cnet_isa_ea8ea12c99 (IsA lawyer_cane calamus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lawyer client relation is a kind of fiduciary relation", "pln": ["(: cnet_isa_e9bbf33102 (IsA lawyer_client_relation fiduciary_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lawyerbush is a kind of bramble bush", "pln": ["(: cnet_isa_ba98c2fa44 (IsA lawyerbush bramble_bush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lawyer is a kind of expert in contract", "pln": ["(: cnet_isa_b992421266 (IsA lawyer expert_in_contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laxative is a kind of purgative", "pln": ["(: cnet_isa_16d7ff2a00 (IsA laxative purgative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laxity is a kind of condition", "pln": ["(: cnet_isa_100580244b (IsA laxity condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laxness is a kind of negligence", "pln": ["(: cnet_isa_99f28cece3 (IsA laxness negligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lay figure is a kind of dummy", "pln": ["(: cnet_isa_31cacdbbc0 (IsA lay_figure dummy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lay reader is a kind of layman", "pln": ["(: cnet_isa_7bad065b9f (IsA lay_reader layman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lay up is a kind of basketball shot", "pln": ["(: cnet_isa_01c874dad1 (IsA lay_up basketball_shot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lay witness is a kind of witness", "pln": ["(: cnet_isa_048676dee6 (IsA lay_witness witness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "layby is a kind of area", "pln": ["(: cnet_isa_b3beb9ee37 (IsA layby area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "layer is a kind of hen", "pln": ["(: cnet_isa_a2ae9db24a (IsA layer hen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "layer is a kind of structure", "pln": ["(: cnet_isa_33fbb1b035 (IsA layer structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "layer is a kind of artifact", "pln": ["(: cnet_isa_10a6eee310 (IsA layer artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "layer is a kind of region", "pln": ["(: cnet_isa_ede5ba79e2 (IsA layer region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "layer cake is a kind of cake", "pln": ["(: cnet_isa_18c8e95abe (IsA layer_cake cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "layette is a kind of kit", "pln": ["(: cnet_isa_9d2d0e646b (IsA layette kit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "layia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_942eb950cb (IsA layia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laying is a kind of parturition", "pln": ["(: cnet_isa_778126b551 (IsA laying parturition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laying on is a kind of contact", "pln": ["(: cnet_isa_7df15594a1 (IsA laying_on contact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laying on of hand is a kind of faith healing", "pln": ["(: cnet_isa_80e5106d3c (IsA laying_on_of_hand faith_healing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laying on of hand is a kind of ordination", "pln": ["(: cnet_isa_c86d395969 (IsA laying_on_of_hand ordination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "laying waste is a kind of destruction", "pln": ["(: cnet_isa_f4e28dbd23 (IsA laying_waste destruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "layman is a kind of commoner", "pln": ["(: cnet_isa_4df744a272 (IsA layman commoner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "layoff is a kind of closure", "pln": ["(: cnet_isa_f09ab1a8b2 (IsA layoff closure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "layout is a kind of order", "pln": ["(: cnet_isa_07672012e2 (IsA layout order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "layout is a kind of design", "pln": ["(: cnet_isa_89532abaf3 (IsA layout design) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lazaretto is a kind of hospital", "pln": ["(: cnet_isa_38709d241d (IsA lazaretto hospital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "laziness is a kind of rest", "pln": ["(: cnet_isa_b0385e9349 (IsA laziness rest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lazy daisy stitch is a kind of chain stitch", "pln": ["(: cnet_isa_cf444de96d (IsA lazy_daisy_stitch chain_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lazybone is a kind of idler", "pln": ["(: cnet_isa_ea3321a10a (IsA lazybone idler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ldl cholesterol is a kind of cholesterol", "pln": ["(: cnet_isa_0ea6eada4d (IsA ldl_cholesterol cholesterol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "le chatelier s principle is a kind of principle", "pln": ["(: cnet_isa_53e74717c5 (IsA le_chatelier_s_principle principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lea is a kind of linear unit", "pln": ["(: cnet_isa_6f919b6be0 (IsA lea linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leach is a kind of natural process", "pln": ["(: cnet_isa_dbde9fe3f0 (IsA leach natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lead is a kind of bluish white lustrous metal", "pln": ["(: cnet_isa_66a916561c (IsA lead bluish_white_lustrous_metal) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lead is a kind of heavy metal", "pln": ["(: cnet_isa_a6603c3314 (IsA lead heavy_metal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lead is a kind of very dense material", "pln": ["(: cnet_isa_3e2bc5a182 (IsA lead very_dense_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lead is a kind of leadership", "pln": ["(: cnet_isa_74fe80b158 (IsA lead leadership) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lead is a kind of turn", "pln": ["(: cnet_isa_0ab5d6c3a4 (IsA lead turn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lead is a kind of graphite", "pln": ["(: cnet_isa_9dad4804c7 (IsA lead graphite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lead is a kind of strip", "pln": ["(: cnet_isa_f058f49b0f (IsA lead strip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lead is a kind of advantage", "pln": ["(: cnet_isa_55a705f48f (IsA lead advantage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lead is a kind of position", "pln": ["(: cnet_isa_d49f6247bb (IsA lead position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lead is a kind of evidence", "pln": ["(: cnet_isa_f76bc99c94 (IsA lead evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lead is a kind of new article", "pln": ["(: cnet_isa_7bba023ffd (IsA lead new_article) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lead is a kind of section", "pln": ["(: cnet_isa_0f9d753faf (IsA lead section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lead is a kind of angle", "pln": ["(: cnet_isa_86ff01288e (IsA lead angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lead is a kind of score", "pln": ["(: cnet_isa_787125f6ae (IsA lead score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lead is a kind of metallic element", "pln": ["(: cnet_isa_12a6a592fb (IsA lead metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lead acetate is a kind of acetate", "pln": ["(: cnet_isa_5cc2c61bb8 (IsA lead_acetate acetate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lead acetate is a kind of dye", "pln": ["(: cnet_isa_f2b6d99573 (IsA lead_acetate dye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lead acid battery is a kind of storage battery", "pln": ["(: cnet_isa_78a644f7d2 (IsA lead_acid_battery storage_battery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lead arsenate is a kind of insecticide", "pln": ["(: cnet_isa_0e714049ce (IsA lead_arsenate insecticide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lead bank is a kind of depository financial institution", "pln": ["(: cnet_isa_84fd412a39 (IsA lead_bank depository_financial_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lead chromate is a kind of chromate", "pln": ["(: cnet_isa_c5a09afa91 (IsA lead_chromate chromate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lead colic is a kind of colic", "pln": ["(: cnet_isa_1e4f85e456 (IsA lead_colic colic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lead glass is a kind of glass", "pln": ["(: cnet_isa_338a318fe1 (IsA lead_glass glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lead in is a kind of wire", "pln": ["(: cnet_isa_b2115b4275 (IsA lead_in wire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lead line is a kind of plumb line", "pln": ["(: cnet_isa_4d4eb81559 (IsA lead_line plumb_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lead ore is a kind of ore", "pln": ["(: cnet_isa_78a7a3aab6 (IsA lead_ore ore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lead pencil is a kind of pencil", "pln": ["(: cnet_isa_054ff43763 (IsA lead_pencil pencil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lead poisoning is a kind of illness", "pln": ["(: cnet_isa_4c80e43d8c (IsA lead_poisoning illness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lead sheet is a kind of sheet music", "pln": ["(: cnet_isa_379b55dd69 (IsA lead_sheet sheet_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lead time is a kind of time interval", "pln": ["(: cnet_isa_1e3059a428 (IsA lead_time time_interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lead tree is a kind of tree", "pln": ["(: cnet_isa_e96bfb356f (IsA lead_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaded bronze is a kind of bronze", "pln": ["(: cnet_isa_c820e3e3b2 (IsA leaded_bronze bronze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaded gasoline is a kind of gasoline", "pln": ["(: cnet_isa_e1824a29d9 (IsA leaded_gasoline gasoline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "leader is a kind of person", "pln": ["(: cnet_isa_a00eda0380 (IsA leader person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leadership is a kind of activity", "pln": ["(: cnet_isa_670b753f2f (IsA leadership activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leadership is a kind of ability", "pln": ["(: cnet_isa_f65a85ded1 (IsA leadership ability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leadership is a kind of body", "pln": ["(: cnet_isa_b4fa3acd3a (IsA leadership body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leadership is a kind of status", "pln": ["(: cnet_isa_33457640f7 (IsA leadership status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leading astray is a kind of enticement", "pln": ["(: cnet_isa_1e00bc9347 (IsA leading_astray enticement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leading edge is a kind of edge", "pln": ["(: cnet_isa_d51a1ec212 (IsA leading_edge edge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leading indicator is a kind of index", "pln": ["(: cnet_isa_38d61401a8 (IsA leading_indicator index) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leading lady is a kind of actress", "pln": ["(: cnet_isa_85cf333173 (IsA leading_lady actress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leading man is a kind of actor", "pln": ["(: cnet_isa_83a502630a (IsA leading_man actor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leading question is a kind of question", "pln": ["(: cnet_isa_f32355243b (IsA leading_question question) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "leading rein is a kind of rein", "pln": ["(: cnet_isa_b4e82d7458 (IsA leading_rein rein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leadplant is a kind of amorpha", "pln": ["(: cnet_isa_1c3c0c3a3c (IsA leadplant amorpha) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leadwort is a kind of shrub", "pln": ["(: cnet_isa_5c7ff7a5d9 (IsA leadwort shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaf is a kind of section", "pln": ["(: cnet_isa_eda961ca78 (IsA leaf section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaf is a kind of sheet", "pln": ["(: cnet_isa_b2e87adbad (IsA leaf sheet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaf is a kind of plant organ", "pln": ["(: cnet_isa_32530fffa1 (IsA leaf plant_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaf beetle is a kind of beetle", "pln": ["(: cnet_isa_5e810090d0 (IsA leaf_beetle beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaf blight is a kind of blight", "pln": ["(: cnet_isa_8c6f99676d (IsA leaf_blight blight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaf bud is a kind of bud", "pln": ["(: cnet_isa_872fc83d0f (IsA leaf_bud bud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaf bug is a kind of hemipterous insect", "pln": ["(: cnet_isa_6bbc9504f5 (IsA leaf_bug hemipterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaf cutting bee is a kind of bee", "pln": ["(: cnet_isa_60f77f6c9a (IsA leaf_cutting_bee bee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaf disease is a kind of plant disease", "pln": ["(: cnet_isa_e33ff71634 (IsA leaf_disease plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaf fat is a kind of fat", "pln": ["(: cnet_isa_d3b331bb29 (IsA leaf_fat fat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaf footed bug is a kind of coreid bug", "pln": ["(: cnet_isa_a301721602 (IsA leaf_footed_bug coreid_bug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaf lettuce is a kind of lettuce", "pln": ["(: cnet_isa_36acf96710 (IsA leaf_lettuce lettuce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaf miner is a kind of insect", "pln": ["(: cnet_isa_366a8aaf71 (IsA leaf_miner insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaf mold is a kind of mold", "pln": ["(: cnet_isa_5fd80a8118 (IsA leaf_mold mold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaf node is a kind of plant process", "pln": ["(: cnet_isa_1fdf1bd42f (IsA leaf_node plant_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaf nosed snake is a kind of colubrid snake", "pln": ["(: cnet_isa_01359ccaf9 (IsA leaf_nosed_snake colubrid_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "leaf roller is a kind of tortricid", "pln": ["(: cnet_isa_2f4cdfd7e2 (IsA leaf_roller tortricid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaf scorch is a kind of scorch", "pln": ["(: cnet_isa_63e18a1eb1 (IsA leaf_scorch scorch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaf shape is a kind of natural shape", "pln": ["(: cnet_isa_e81a7112f3 (IsA leaf_shape natural_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaf spring is a kind of spring", "pln": ["(: cnet_isa_fcdc4bdda3 (IsA leaf_spring spring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "leafhopper is a kind of homopterous insect", "pln": ["(: cnet_isa_208d8557dc (IsA leafhopper homopterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaflet is a kind of leaf", "pln": ["(: cnet_isa_b5c1011b63 (IsA leaflet leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leafnose bat is a kind of carnivorous bat", "pln": ["(: cnet_isa_a08eff9244 (IsA leafnose_bat carnivorous_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "leafy liverwort is a kind of liverwort", "pln": ["(: cnet_isa_0abd1ec3e6 (IsA leafy_liverwort liverwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leafy spurge is a kind of spurge", "pln": ["(: cnet_isa_0aa0524d59 (IsA leafy_spurge spurge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "league is a kind of association", "pln": ["(: cnet_isa_8455bf223c (IsA league association) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "league is a kind of union", "pln": ["(: cnet_isa_636a1f84df (IsA league union) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "league is a kind of linear unit", "pln": ["(: cnet_isa_c76a6d3d39 (IsA league linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "league of nation is a kind of world organization", "pln": ["(: cnet_isa_eae27e1171 (IsA league_of_nation world_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leak is a kind of disclosure", "pln": ["(: cnet_isa_8fc9cf84a1 (IsA leak disclosure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leak is a kind of hole", "pln": ["(: cnet_isa_d378560e88 (IsA leak hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leak is a kind of micturition", "pln": ["(: cnet_isa_1b47ba388f (IsA leak micturition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "leak is a kind of soft rot", "pln": ["(: cnet_isa_cf74453295 (IsA leak soft_rot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leak fungus is a kind of rhizoid", "pln": ["(: cnet_isa_f35e9cef14 (IsA leak_fungus rhizoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaker is a kind of informant", "pln": ["(: cnet_isa_37ee054eb4 (IsA leaker informant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leakiness is a kind of condition", "pln": ["(: cnet_isa_4ad8201064 (IsA leakiness condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lean to is a kind of shelter", "pln": ["(: cnet_isa_92aab26541 (IsA lean_to shelter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lean to tent is a kind of tent", "pln": ["(: cnet_isa_eba3e40cd5 (IsA lean_to_tent tent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaner is a kind of throw", "pln": ["(: cnet_isa_58647cf8e6 (IsA leaner throw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaning is a kind of act", "pln": ["(: cnet_isa_2aa2a6f7cc (IsA leaning act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaning is a kind of inclination", "pln": ["(: cnet_isa_3070f9b343 (IsA leaning inclination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "leanness is a kind of bodily property", "pln": ["(: cnet_isa_1c4d7a978b (IsA leanness bodily_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "leap is a kind of jump", "pln": ["(: cnet_isa_1428d12889 (IsA leap jump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leap is a kind of distance", "pln": ["(: cnet_isa_2c88dfa6bf (IsA leap distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leap is a kind of transition", "pln": ["(: cnet_isa_f9a25b4577 (IsA leap transition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leap day is a kind of day", "pln": ["(: cnet_isa_9f37976ceb (IsA leap_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leap second is a kind of quirk of modern timekeeping", "pln": ["(: cnet_isa_08bbb9897d (IsA leap_second quirk_of_modern_timekeeping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leap second is a kind of second", "pln": ["(: cnet_isa_ac4c9c7ecb (IsA leap_second second) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leap year is a kind of year", "pln": ["(: cnet_isa_7cec10e9c7 (IsA leap_year year) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaper is a kind of bounder", "pln": ["(: cnet_isa_eb5d26ca00 (IsA leaper bounder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leapfrog is a kind of child s game", "pln": ["(: cnet_isa_e1dadcc463 (IsA leapfrog child_s_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leapfrog is a kind of progress", "pln": ["(: cnet_isa_b40a33f3f1 (IsA leapfrog progress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "learned profession is a kind of profession", "pln": ["(: cnet_isa_752056ac39 (IsA learned_profession profession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "learned reaction is a kind of reaction", "pln": ["(: cnet_isa_3f77b68268 (IsA learned_reaction reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "learner s dictionary is a kind of dictionary", "pln": ["(: cnet_isa_7d11d75682 (IsA learner_s_dictionary dictionary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "learner s permit is a kind of license", "pln": ["(: cnet_isa_a8a1bf912c (IsA learner_s_permit license) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "learner is a kind of person", "pln": ["(: cnet_isa_afafdb92c5 (IsA learner person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "learning is a kind of activity", "pln": ["(: cnet_isa_4e3bd3bb8d (IsA learning activity) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "learning is a kind of basic cognitive process", "pln": ["(: cnet_isa_31cf5f2d95 (IsA learning basic_cognitive_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "learning curve is a kind of graph", "pln": ["(: cnet_isa_30d92e8336 (IsA learning_curve graph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "learning disorder is a kind of disorder", "pln": ["(: cnet_isa_803e4957a1 (IsA learning_disorder disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lease is a kind of contract", "pln": ["(: cnet_isa_15d3baa121 (IsA lease contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lease is a kind of property", "pln": ["(: cnet_isa_6814dab406 (IsA lease property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lease is a kind of time period", "pln": ["(: cnet_isa_c71c3e7be7 (IsA lease time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leasehold is a kind of estate", "pln": ["(: cnet_isa_e7c8abf8ec (IsA leasehold estate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaseholder is a kind of holder", "pln": ["(: cnet_isa_fe4505b09f (IsA leaseholder holder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaseholder is a kind of tenant", "pln": ["(: cnet_isa_5c5b0d2182 (IsA leaseholder tenant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leash is a kind of restraint", "pln": ["(: cnet_isa_755ccb9570 (IsA leash restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "least is a kind of matter", "pln": ["(: cnet_isa_b9d56d18a5 (IsA least matter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "least bittern is a kind of bittern", "pln": ["(: cnet_isa_9d24f7ce02 (IsA least_bittern bittern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "least effort is a kind of effort", "pln": ["(: cnet_isa_95dc7e0dd9 (IsA least_effort effort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "least sandpiper is a kind of sandpiper", "pln": ["(: cnet_isa_b3886c6cb5 (IsA least_sandpiper sandpiper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "least shrew is a kind of shrew", "pln": ["(: cnet_isa_bd369ce901 (IsA least_shrew shrew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "least square is a kind of statistical method", "pln": ["(: cnet_isa_a29dc4a6d0 (IsA least_square statistical_method) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leather is a kind of animal skin", "pln": ["(: cnet_isa_6b3c98bda2 (IsA leather animal_skin) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leather is a kind of durable material", "pln": ["(: cnet_isa_fe4e983de1 (IsA leather durable_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leather is a kind of material", "pln": ["(: cnet_isa_b2dd4d2220 (IsA leather material) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leather is a kind of tanned animal skin", "pln": ["(: cnet_isa_4b71227d49 (IsA leather tanned_animal_skin) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leather carp is a kind of domestic carp", "pln": ["(: cnet_isa_747a012b77 (IsA leather_carp domestic_carp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leather fern is a kind of fern", "pln": ["(: cnet_isa_8d2cef57eb (IsA leather_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leather flower is a kind of clematis", "pln": ["(: cnet_isa_d6ff409bce (IsA leather_flower clematis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leather strip is a kind of implement", "pln": ["(: cnet_isa_7344cc00a6 (IsA leather_strip implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leatherback turtle is a kind of sea turtle", "pln": ["(: cnet_isa_64331e562a (IsA leatherback_turtle sea_turtle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leatherette is a kind of fabric", "pln": ["(: cnet_isa_faf4073efa (IsA leatherette fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leatherjacket is a kind of filefish", "pln": ["(: cnet_isa_fb608e8e73 (IsA leatherjacket filefish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leatherjacket is a kind of grub", "pln": ["(: cnet_isa_8a89342359 (IsA leatherjacket grub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leatherjacket is a kind of jack", "pln": ["(: cnet_isa_f562771f78 (IsA leatherjacket jack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leatherleaf is a kind of polypody", "pln": ["(: cnet_isa_71815376d1 (IsA leatherleaf polypody) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leatherleaf is a kind of shrub", "pln": ["(: cnet_isa_ea5e4c9091 (IsA leatherleaf shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leatherleaf saxifrage is a kind of wildflower", "pln": ["(: cnet_isa_6c2957f2f3 (IsA leatherleaf_saxifrage wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leatherwood is a kind of shrub", "pln": ["(: cnet_isa_ca0218521d (IsA leatherwood shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "leatherwork is a kind of work", "pln": ["(: cnet_isa_ea1d7d4793 (IsA leatherwork work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leathery grape fern is a kind of grape fern", "pln": ["(: cnet_isa_259224cb63 (IsA leathery_grape_fern grape_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leave is a kind of permission", "pln": ["(: cnet_isa_5c0109543c (IsA leave permission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leave is a kind of time off", "pln": ["(: cnet_isa_626140a7c6 (IsA leave time_off) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaven is a kind of imponderable", "pln": ["(: cnet_isa_d3d036be8d (IsA leaven imponderable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leaven is a kind of substance", "pln": ["(: cnet_isa_fd8d35bee6 (IsA leaven substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lebanese is a kind of asiatic", "pln": ["(: cnet_isa_d892e4f0e2 (IsA lebanese asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lebanese monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_f6a0367177 (IsA lebanese_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lebanese pound is a kind of lebanese monetary unit", "pln": ["(: cnet_isa_78e8357d8d (IsA lebanese_pound lebanese_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lebiste is a kind of fish genus", "pln": ["(: cnet_isa_2ba4d777d5 (IsA lebiste fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leboyer method of childbirth is a kind of natural childbirth", "pln": ["(: cnet_isa_7da805aa8b (IsA leboyer_method_of_childbirth natural_childbirth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lecanopteris is a kind of fern", "pln": ["(: cnet_isa_6d0cb8d25b (IsA lecanopteris fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lecanora is a kind of lichen", "pln": ["(: cnet_isa_986efa984c (IsA lecanora lichen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lecanoraceae is a kind of fungus family", "pln": ["(: cnet_isa_e457d9c946 (IsA lecanoraceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "lees is a kind of sediment", "pln": ["(: cnet_isa_011d530815 (IsA lees sediment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leccinum is a kind of fungus genus", "pln": ["(: cnet_isa_fd9d7dec7b (IsA leccinum fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leccinum fibrillosum is a kind of bolete", "pln": ["(: cnet_isa_d466195e83 (IsA leccinum_fibrillosum bolete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lechanorale is a kind of fungus order", "pln": ["(: cnet_isa_25fe0cf8d8 (IsA lechanorale fungus_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lecherousness is a kind of sexual desire", "pln": ["(: cnet_isa_e67a8d8976 (IsA lecherousness sexual_desire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lechery is a kind of sexual activity", "pln": ["(: cnet_isa_2ff3003123 (IsA lechery sexual_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lechwe is a kind of waterbuck", "pln": ["(: cnet_isa_c71d468036 (IsA lechwe waterbuck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lecithin is a kind of emulsifier", "pln": ["(: cnet_isa_974084b92b (IsA lecithin emulsifier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lecithin is a kind of phospholipid", "pln": ["(: cnet_isa_4b7904f820 (IsA lecithin phospholipid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leclanche cell is a kind of voltaic cell", "pln": ["(: cnet_isa_e46c7320be (IsA leclanche_cell voltaic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lectern is a kind of stand", "pln": ["(: cnet_isa_220265c077 (IsA lectern stand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lectin is a kind of glycoprotein", "pln": ["(: cnet_isa_38927c37da (IsA lectin glycoprotein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lector is a kind of clergyman", "pln": ["(: cnet_isa_3ef3220c21 (IsA lector clergyman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lector is a kind of educator", "pln": ["(: cnet_isa_6bc1876285 (IsA lector educator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lector is a kind of holy order", "pln": ["(: cnet_isa_485eed9028 (IsA lector holy_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lecture is a kind of teaching", "pln": ["(: cnet_isa_8441f1d9a2 (IsA lecture teaching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lecture is a kind of address", "pln": ["(: cnet_isa_786f68b7a4 (IsA lecture address) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lecture is a kind of rebuke", "pln": ["(: cnet_isa_f985fe65fe (IsA lecture rebuke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lecture demonstration is a kind of presentation", "pln": ["(: cnet_isa_968e0480bf (IsA lecture_demonstration presentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lecture room is a kind of classroom", "pln": ["(: cnet_isa_b78e8254c9 (IsA lecture_room classroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lecturer is a kind of speaker", "pln": ["(: cnet_isa_68bc5fca33 (IsA lecturer speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lectureship is a kind of position", "pln": ["(: cnet_isa_93794fe009 (IsA lectureship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lecythidaceae is a kind of dicot family", "pln": ["(: cnet_isa_84179528fb (IsA lecythidaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lederhosen is a kind of short pant", "pln": ["(: cnet_isa_7914b5f51b (IsA lederhosen short_pant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ledge is a kind of ridge", "pln": ["(: cnet_isa_71f7db5f49 (IsA ledge ridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ledger is a kind of book", "pln": ["(: cnet_isa_d9660a660b (IsA ledger book) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ledger is a kind of record", "pln": ["(: cnet_isa_8499315ee3 (IsA ledger record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ledger board is a kind of rail", "pln": ["(: cnet_isa_f06c3a7163 (IsA ledger_board rail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ledger line is a kind of line", "pln": ["(: cnet_isa_3baa3eb698 (IsA ledger_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ledger paper is a kind of writing paper", "pln": ["(: cnet_isa_2d0846b8ec (IsA ledger_paper writing_paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ledum is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_8e2d6d8245 (IsA ledum dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lee is a kind of side", "pln": ["(: cnet_isa_9bdad65cd8 (IsA lee side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leech is a kind of annelid", "pln": ["(: cnet_isa_c21facf997 (IsA leech annelid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leech is a kind of follower", "pln": ["(: cnet_isa_9a742e6f34 (IsA leech follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leek is a kind of vegetable", "pln": ["(: cnet_isa_a8fd46aa4f (IsA leek vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leek is a kind of alliaceous plant", "pln": ["(: cnet_isa_1c0ac084c8 (IsA leek alliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leer is a kind of expression", "pln": ["(: cnet_isa_c835a103bd (IsA leer expression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lee is a kind of sediment", "pln": ["(: cnet_isa_94c649455e (IsA lee sediment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leeward is a kind of direction", "pln": ["(: cnet_isa_199ac205d0 (IsA leeward direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leeward is a kind of leeward", "pln": ["(: cnet_isa_5e787a95d0 (IsA leeward leeward) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "leeward tide is a kind of tide", "pln": ["(: cnet_isa_33fb91c533 (IsA leeward_tide tide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "leeway is a kind of drift", "pln": ["(: cnet_isa_f5bea8f9b4 (IsA leeway drift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "left is a kind of turn", "pln": ["(: cnet_isa_023e4fb33e (IsA left turn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "left is a kind of hand", "pln": ["(: cnet_isa_d28b763930 (IsA left hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "left is a kind of faction", "pln": ["(: cnet_isa_25529122fd (IsA left faction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "left is a kind of position", "pln": ["(: cnet_isa_a983e6e790 (IsA left position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "left atrium is a kind of atrium cordis", "pln": ["(: cnet_isa_2a8a6ec558 (IsA left_atrium atrium_cordis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "left coronary artery is a kind of coronary artery", "pln": ["(: cnet_isa_671946c2a4 (IsA left_coronary_artery coronary_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "left ear is a kind of ear", "pln": ["(: cnet_isa_d6143ddc72 (IsA left_ear ear) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "left field is a kind of position", "pln": ["(: cnet_isa_e6c40ae865 (IsA left_field position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "left field is a kind of tract", "pln": ["(: cnet_isa_a7d6e2f85a (IsA left_field tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "left fielder is a kind of outfielder", "pln": ["(: cnet_isa_b8f4b4a47f (IsA left_fielder outfielder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "left gastric artery is a kind of gastric artery", "pln": ["(: cnet_isa_a9d57bbfc9 (IsA left_gastric_artery gastric_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "left gastric vein is a kind of gastric vein", "pln": ["(: cnet_isa_b8d751dcfa (IsA left_gastric_vein gastric_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "left handed pitcher is a kind of pitcher", "pln": ["(: cnet_isa_cbdccf4d0a (IsA left_handed_pitcher pitcher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "left handedness is a kind of handedness", "pln": ["(: cnet_isa_7b40249c33 (IsA left_handedness handedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "left handedness is a kind of status", "pln": ["(: cnet_isa_36e9afdf2d (IsA left_handedness status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "left hander is a kind of person", "pln": ["(: cnet_isa_bb9ff28d4a (IsA left_hander person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "left hemisphere is a kind of hemisphere", "pln": ["(: cnet_isa_d23cdf0dae (IsA left_hemisphere hemisphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "left leg is a kind of leg", "pln": ["(: cnet_isa_d1ff610771 (IsA left_leg leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "left ventricle is a kind of ventricle", "pln": ["(: cnet_isa_1b4de1d045 (IsA left_ventricle ventricle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lefteye flounder is a kind of flatfish", "pln": ["(: cnet_isa_e414f7d23b (IsA lefteye_flounder flatfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leftism is a kind of political orientation", "pln": ["(: cnet_isa_50d6b40653 (IsA leftism political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leftover is a kind of remainder", "pln": ["(: cnet_isa_79bf85b87b (IsA leftover remainder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leftover is a kind of food", "pln": ["(: cnet_isa_b7c09661c5 (IsA leftover food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leg is a kind of cloth covering", "pln": ["(: cnet_isa_9014c29939 (IsA leg cloth_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leg is a kind of support", "pln": ["(: cnet_isa_a99e4f691e (IsA leg support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leg is a kind of limb", "pln": ["(: cnet_isa_7ea80638f3 (IsA leg limb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "leg is a kind of cut", "pln": ["(: cnet_isa_574cfac318 (IsA leg cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leg is a kind of distance", "pln": ["(: cnet_isa_7a55484e39 (IsA leg distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leg bone is a kind of long bone", "pln": ["(: cnet_isa_0381461a97 (IsA leg_bone long_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "leg curl is a kind of leg exercise", "pln": ["(: cnet_isa_f278ea5c83 (IsA leg_curl leg_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "leg exercise is a kind of exercise", "pln": ["(: cnet_isa_1189818b0b (IsA leg_exercise exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leg extensor is a kind of leg exercise", "pln": ["(: cnet_isa_0a8ed3dc56 (IsA leg_extensor leg_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leg of lamb is a kind of lamb roast", "pln": ["(: cnet_isa_cc37f4a7b5 (IsA leg_of_lamb lamb_roast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leg of lamb is a kind of leg", "pln": ["(: cnet_isa_959d5a5442 (IsA leg_of_lamb leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leg pull is a kind of jest", "pln": ["(: cnet_isa_b4429cd28b (IsA leg_pull jest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legal action is a kind of proceeding", "pln": ["(: cnet_isa_0ff0c37b82 (IsA legal_action proceeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legal blindness is a kind of blindness", "pln": ["(: cnet_isa_da3cf679c0 (IsA legal_blindness blindness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legal code is a kind of code", "pln": ["(: cnet_isa_9822b38fec (IsA legal_code code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legal document is a kind of document", "pln": ["(: cnet_isa_1795a7f134 (IsA legal_document document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "legal duty is a kind of duty", "pln": ["(: cnet_isa_320eb86990 (IsA legal_duty duty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legal fee is a kind of fee", "pln": ["(: cnet_isa_f941161dea (IsA legal_fee fee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legal holiday is a kind of holiday", "pln": ["(: cnet_isa_28309786e2 (IsA legal_holiday holiday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "legal power is a kind of power", "pln": ["(: cnet_isa_aa669cd87d (IsA legal_power power) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legal principle is a kind of principle", "pln": ["(: cnet_isa_fc6721a7a3 (IsA legal_principle principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legal profession is a kind of profession", "pln": ["(: cnet_isa_ba49742d75 (IsA legal_profession profession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legal relation is a kind of professional relation", "pln": ["(: cnet_isa_de013bf7ba (IsA legal_relation professional_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legal representation is a kind of representation", "pln": ["(: cnet_isa_227261c233 (IsA legal_representation representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legal representative is a kind of personal representative", "pln": ["(: cnet_isa_c93f47a713 (IsA legal_representative personal_representative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legal right is a kind of right", "pln": ["(: cnet_isa_deec7b7dc6 (IsA legal_right right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legal separation is a kind of cessation", "pln": ["(: cnet_isa_8c3ed49bf5 (IsA legal_separation cessation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legal separation is a kind of decree", "pln": ["(: cnet_isa_a092d067d5 (IsA legal_separation decree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legal status is a kind of status", "pln": ["(: cnet_isa_e9699d4e20 (IsA legal_status status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "legal system is a kind of system", "pln": ["(: cnet_isa_85b3e17280 (IsA legal_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legalese is a kind of expressive style", "pln": ["(: cnet_isa_aa9bb1e6d7 (IsA legalese expressive_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legalism is a kind of conformity", "pln": ["(: cnet_isa_fa42c053d9 (IsA legalism conformity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "legality is a kind of lawfulness", "pln": ["(: cnet_isa_4d45d0c49f (IsA legality lawfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legalization is a kind of group action", "pln": ["(: cnet_isa_2b3677bcb9 (IsA legalization group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legate is a kind of emissary", "pln": ["(: cnet_isa_2d8edf54a0 (IsA legate emissary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legatee is a kind of beneficiary", "pln": ["(: cnet_isa_b5b0206115 (IsA legatee beneficiary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legation is a kind of position", "pln": ["(: cnet_isa_dd67bd2b1e (IsA legation position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legation is a kind of diplomatic mission", "pln": ["(: cnet_isa_44386048f6 (IsA legation diplomatic_mission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legend is a kind of story", "pln": ["(: cnet_isa_c7164c5513 (IsA legend story) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legendary creature is a kind of mythical monster", "pln": ["(: cnet_isa_aea9546f6d (IsA legendary_creature mythical_monster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legging is a kind of garment", "pln": ["(: cnet_isa_68af0b4239 (IsA legging garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legibility is a kind of comprehensibility", "pln": ["(: cnet_isa_34c13dc9d2 (IsA legibility comprehensibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legion is a kind of association", "pln": ["(: cnet_isa_85b1755291 (IsA legion association) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "legion is a kind of military unit", "pln": ["(: cnet_isa_e782a08653 (IsA legion military_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "legionella pneumophilia is a kind of bacteria", "pln": ["(: cnet_isa_1695a3a8a2 (IsA legionella_pneumophilia bacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legionnaire is a kind of soldier", "pln": ["(: cnet_isa_09f93ef95a (IsA legionnaire soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legionnaire is a kind of veteran", "pln": ["(: cnet_isa_d69b8739be (IsA legionnaire veteran) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legionnaire disease is a kind of lobar pneumonia", "pln": ["(: cnet_isa_d0dd24a567 (IsA legionnaire_disease lobar_pneumonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legislation is a kind of civil law", "pln": ["(: cnet_isa_57c2391311 (IsA legislation civil_law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legislation is a kind of government", "pln": ["(: cnet_isa_cc2a5350ee (IsA legislation government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legislative act is a kind of act", "pln": ["(: cnet_isa_73b663e767 (IsA legislative_act act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legislative branch is a kind of branch", "pln": ["(: cnet_isa_229c151de0 (IsA legislative_branch branch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legislative council is a kind of legislature", "pln": ["(: cnet_isa_dbf0f4a5ea (IsA legislative_council legislature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "legislator is a kind of lawgiver", "pln": ["(: cnet_isa_5a7f65f897 (IsA legislator lawgiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legislator is a kind of politician", "pln": ["(: cnet_isa_a3854a7eb7 (IsA legislator politician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legislatorship is a kind of position", "pln": ["(: cnet_isa_6d15c2a1a2 (IsA legislatorship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legislature is a kind of assembly", "pln": ["(: cnet_isa_9bda728c46 (IsA legislature assembly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legitimacy is a kind of lawfulness", "pln": ["(: cnet_isa_37a5f17685 (IsA legitimacy lawfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legitimation is a kind of act", "pln": ["(: cnet_isa_6393c53e34 (IsA legitimation act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legless lizard is a kind of lizard", "pln": ["(: cnet_isa_7921abc002 (IsA legless_lizard lizard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lego is a kind of good toy for children", "pln": ["(: cnet_isa_a95e4ce9da (IsA lego good_toy_for_children) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leg is a kind of stamina", "pln": ["(: cnet_isa_bef9725cfc (IsA leg stamina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legume is a kind of vegetable", "pln": ["(: cnet_isa_b4a51014fd (IsA legume vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legume is a kind of climber", "pln": ["(: cnet_isa_59310f6149 (IsA legume climber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legume is a kind of herb", "pln": ["(: cnet_isa_2f12fc9d69 (IsA legume herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "legume is a kind of pod", "pln": ["(: cnet_isa_af9bea7622 (IsA legume pod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leguminosae is a kind of rosid dicot family", "pln": ["(: cnet_isa_b74b2b52ee (IsA leguminosae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leichtlin s cama is a kind of cama", "pln": ["(: cnet_isa_06c57e31ee (IsA leichtlin_s_cama cama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leiden jar is a kind of capacitor", "pln": ["(: cnet_isa_b9e3a0f66d (IsA leiden_jar capacitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leiomyoma is a kind of myoma", "pln": ["(: cnet_isa_20bb847738 (IsA leiomyoma myoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leiomyosarcoma is a kind of sarcoma", "pln": ["(: cnet_isa_11f21d1fcb (IsA leiomyosarcoma sarcoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "leiopelma is a kind of amphibian genus", "pln": ["(: cnet_isa_0e249e9d47 (IsA leiopelma amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leiopelmatidae is a kind of amphibian family", "pln": ["(: cnet_isa_c319ee1431 (IsA leiopelmatidae amphibian_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leiophyllum is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_6362f6b374 (IsA leiophyllum dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leishmania is a kind of flagellate", "pln": ["(: cnet_isa_02bdb9173c (IsA leishmania flagellate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leishmaniasis is a kind of protozoal infection", "pln": ["(: cnet_isa_7936ba5cc3 (IsA leishmaniasis protozoal_infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leister is a kind of spear", "pln": ["(: cnet_isa_192f42302b (IsA leister spear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leisure is a kind of rest", "pln": ["(: cnet_isa_d627862b89 (IsA leisure rest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leisure is a kind of time off", "pln": ["(: cnet_isa_fb30b4f20b (IsA leisure time_off) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leisure wear is a kind of clothing", "pln": ["(: cnet_isa_89aead791b (IsA leisure_wear clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leisureliness is a kind of slowness", "pln": ["(: cnet_isa_00a9f2fda7 (IsA leisureliness slowness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leitmotiv is a kind of tune", "pln": ["(: cnet_isa_c798e6b525 (IsA leitmotiv tune) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leitneria is a kind of dicot genus", "pln": ["(: cnet_isa_94e8caf47d (IsA leitneria dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leitneriaceae is a kind of dicot family", "pln": ["(: cnet_isa_68cf1bc5d7 (IsA leitneriaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lek is a kind of albanian monetary unit", "pln": ["(: cnet_isa_f085a7f078 (IsA lek albanian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lekvar is a kind of filling", "pln": ["(: cnet_isa_84a6a16ef9 (IsA lekvar filling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemaireocereus is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_5068d7e91f (IsA lemaireocereus caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemma is a kind of heading", "pln": ["(: cnet_isa_0458246ff5 (IsA lemma heading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemma is a kind of proposition", "pln": ["(: cnet_isa_e81e717761 (IsA lemma proposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemma is a kind of glume", "pln": ["(: cnet_isa_31f6584ae4 (IsA lemma glume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lemming is a kind of rodent", "pln": ["(: cnet_isa_8d9b33f183 (IsA lemming rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemmus is a kind of mammal genus", "pln": ["(: cnet_isa_3d69ee0127 (IsA lemmus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemna is a kind of monocot genus", "pln": ["(: cnet_isa_b8a41debd7 (IsA lemna monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemnaceae is a kind of monocot family", "pln": ["(: cnet_isa_f305850e05 (IsA lemnaceae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemniscate is a kind of curve", "pln": ["(: cnet_isa_b726518313 (IsA lemniscate curve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemniscus is a kind of sensory nerve", "pln": ["(: cnet_isa_2c4354d82a (IsA lemniscus sensory_nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemon is a kind of artifact", "pln": ["(: cnet_isa_4ad5d0755f (IsA lemon artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemon is a kind of relish", "pln": ["(: cnet_isa_20b9a169b4 (IsA lemon relish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemon is a kind of citrus", "pln": ["(: cnet_isa_b29ff8b838 (IsA lemon citrus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemon balm is a kind of herb", "pln": ["(: cnet_isa_7d69a3e02d (IsA lemon_balm herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemon curd is a kind of conserve", "pln": ["(: cnet_isa_19ac1bb2fa (IsA lemon_curd conserve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemon drop is a kind of hard candy", "pln": ["(: cnet_isa_97f89357b4 (IsA lemon_drop hard_candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemon extract is a kind of flavorer", "pln": ["(: cnet_isa_62b8e79eb7 (IsA lemon_extract flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemon geranium is a kind of geranium", "pln": ["(: cnet_isa_30acb3509a (IsA lemon_geranium geranium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemon grass is a kind of grass", "pln": ["(: cnet_isa_3469385c71 (IsA lemon_grass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemon grove is a kind of grove", "pln": ["(: cnet_isa_0b146a7dfb (IsA lemon_grove grove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemon juice is a kind of juice", "pln": ["(: cnet_isa_2fced8e40c (IsA lemon_juice juice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lemon lily is a kind of day lily", "pln": ["(: cnet_isa_c477db716a (IsA lemon_lily day_lily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemon meringue pie is a kind of pie", "pln": ["(: cnet_isa_5cfdf1e6a5 (IsA lemon_meringue_pie pie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemon mint is a kind of monarda", "pln": ["(: cnet_isa_b9b3fd9b50 (IsA lemon_mint monarda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemon oil is a kind of flavorer", "pln": ["(: cnet_isa_bde70c0498 (IsA lemon_oil flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemon peel is a kind of candied citrus peel", "pln": ["(: cnet_isa_4dfb79468e (IsA lemon_peel candied_citrus_peel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemon peel is a kind of peel", "pln": ["(: cnet_isa_60433020b5 (IsA lemon_peel peel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemon scented gum is a kind of eucalyptus", "pln": ["(: cnet_isa_269872dc12 (IsA lemon_scented_gum eucalyptus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemon shark is a kind of requiem shark", "pln": ["(: cnet_isa_75c2a91b09 (IsA lemon_shark requiem_shark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemon sole is a kind of righteye flounder", "pln": ["(: cnet_isa_d7723593d4 (IsA lemon_sole righteye_flounder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemon sole is a kind of sole", "pln": ["(: cnet_isa_7c50d17d1b (IsA lemon_sole sole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemon sole is a kind of flounder", "pln": ["(: cnet_isa_a932b93720 (IsA lemon_sole flounder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemon zest is a kind of lemon peel", "pln": ["(: cnet_isa_1ff2af2d43 (IsA lemon_zest lemon_peel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemonade is a kind of drink", "pln": ["(: cnet_isa_d1dfaad548 (IsA lemonade drink) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemonade is a kind of fruit drink", "pln": ["(: cnet_isa_2e19f759c0 (IsA lemonade fruit_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemonade mix is a kind of ready mix", "pln": ["(: cnet_isa_2597d509f0 (IsA lemonade_mix ready_mix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemongrass oil is a kind of oil", "pln": ["(: cnet_isa_a36c871000 (IsA lemongrass_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemonwood is a kind of tree", "pln": ["(: cnet_isa_b8652adac1 (IsA lemonwood tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemonwood is a kind of wood", "pln": ["(: cnet_isa_4867cc8309 (IsA lemonwood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lempira is a kind of honduran monetary unit", "pln": ["(: cnet_isa_4348e7ce38 (IsA lempira honduran_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemur is a kind of primate", "pln": ["(: cnet_isa_519f6c8f60 (IsA lemur primate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemuridae is a kind of mammal family", "pln": ["(: cnet_isa_e6f3c9537c (IsA lemuridae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lemuroidea is a kind of animal order", "pln": ["(: cnet_isa_37d59e3846 (IsA lemuroidea animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lemur is a kind of from madagascar", "pln": ["(: cnet_isa_71476e2dc5 (IsA lemur from_madagascar) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lend lease is a kind of transfer", "pln": ["(: cnet_isa_fbd2ffeb51 (IsA lend_lease transfer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lender is a kind of investor", "pln": ["(: cnet_isa_d6d3ee9f44 (IsA lender investor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lending is a kind of disposal", "pln": ["(: cnet_isa_78b5ea0cd1 (IsA lending disposal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lending institution is a kind of financial institution", "pln": ["(: cnet_isa_24f2ac616a (IsA lending_institution financial_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lending library is a kind of library", "pln": ["(: cnet_isa_d610de6dae (IsA lending_library library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "length is a kind of section", "pln": ["(: cnet_isa_b8614622c8 (IsA length section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "length is a kind of dimension", "pln": ["(: cnet_isa_9af76653e7 (IsA length dimension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "length is a kind of extent", "pln": ["(: cnet_isa_3280dec93b (IsA length extent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "length is a kind of fundamental quantity", "pln": ["(: cnet_isa_5f62627b30 (IsA length fundamental_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "length is a kind of physical property", "pln": ["(: cnet_isa_c6db2484f6 (IsA length physical_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "lens is a kind of electronic equipment", "pln": ["(: cnet_isa_7b723f2f1b (IsA lens electronic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "lens is a kind of organ", "pln": ["(: cnet_isa_02098f991f (IsA lens organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "lens cortex is a kind of animal tissue", "pln": ["(: cnet_isa_99c5d6c9c8 (IsA lens_cortex animal_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lengthiness is a kind of duration", "pln": ["(: cnet_isa_129632aa5c (IsA lengthiness duration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lenience is a kind of tolerance", "pln": ["(: cnet_isa_03a6136113 (IsA lenience tolerance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lenience is a kind of mercifulness", "pln": ["(: cnet_isa_b400b24baf (IsA lenience mercifulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leninism is a kind of communism", "pln": ["(: cnet_isa_09c1dad530 (IsA leninism communism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lenitive is a kind of remedy", "pln": ["(: cnet_isa_54770d591b (IsA lenitive remedy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lennoaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_82f0ff8093 (IsA lennoaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "len is a kind of electronic equipment", "pln": ["(: cnet_isa_1a443bc611 (IsA len electronic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "len is a kind of optical device", "pln": ["(: cnet_isa_703d17541e (IsA len optical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "len is a kind of organ", "pln": ["(: cnet_isa_243701d28d (IsA len organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "len is a kind of channel", "pln": ["(: cnet_isa_a3924e6760 (IsA len channel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "len is a kind of rosid dicot genus", "pln": ["(: cnet_isa_651c356e04 (IsA len rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "len cap is a kind of cap", "pln": ["(: cnet_isa_258131c193 (IsA len_cap cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "len capsule is a kind of capsule", "pln": ["(: cnet_isa_ef05b80c2e (IsA len_capsule capsule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "len cortex is a kind of animal tissue", "pln": ["(: cnet_isa_3b8e244858 (IsA len_cortex animal_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "len hood is a kind of attachment", "pln": ["(: cnet_isa_2b8aee5d67 (IsA len_hood attachment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "len implant is a kind of implant", "pln": ["(: cnet_isa_1be222bf51 (IsA len_implant implant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "len nucleus is a kind of structure", "pln": ["(: cnet_isa_b0710405d9 (IsA len_nucleus structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lent is a kind of season", "pln": ["(: cnet_isa_0c1f467e61 (IsA lent season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lente insulin is a kind of insulin", "pln": ["(: cnet_isa_4ecc32d36f (IsA lente_insulin insulin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lenten rose is a kind of hellebore", "pln": ["(: cnet_isa_cc5606223c (IsA lenten_rose hellebore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lentibulariaceae is a kind of plant family", "pln": ["(: cnet_isa_b2688a037c (IsA lentibulariaceae plant_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lenticel is a kind of stoma", "pln": ["(: cnet_isa_f43a9e1963 (IsA lenticel stoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lenticular nucleus is a kind of basal ganglion", "pln": ["(: cnet_isa_ce3328d2c3 (IsA lenticular_nucleus basal_ganglion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lentil is a kind of legume", "pln": ["(: cnet_isa_5b2b83dbda (IsA lentil legume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lentil soup is a kind of soup", "pln": ["(: cnet_isa_76382f8f0e (IsA lentil_soup soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lentinus is a kind of fungus genus", "pln": ["(: cnet_isa_c405ffcf82 (IsA lentinus fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "leonardo di caprio is a kind of actor", "pln": ["(: cnet_isa_4530eef40c (IsA leonardo_di_caprio actor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leonberg is a kind of dog", "pln": ["(: cnet_isa_494e0d830c (IsA leonberg dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "leone is a kind of sierra leone monetary unit", "pln": ["(: cnet_isa_2a79c2d28c (IsA leone sierra_leone_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "lepas is a kind of arthropod genus", "pln": ["(: cnet_isa_2c059330bf (IsA lepas arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leonotis is a kind of asterid dicot genus", "pln": ["(: cnet_isa_a847c6032d (IsA leonotis asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leontocebus is a kind of mammal genus", "pln": ["(: cnet_isa_043331c782 (IsA leontocebus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leontodon is a kind of asterid dicot genus", "pln": ["(: cnet_isa_2dc31c5d39 (IsA leontodon asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leontopodium is a kind of asterid dicot genus", "pln": ["(: cnet_isa_a79a16aaa2 (IsA leontopodium asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leonurus is a kind of asterid dicot genus", "pln": ["(: cnet_isa_3afdace2df (IsA leonurus asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leopard s bane is a kind of herb", "pln": ["(: cnet_isa_bc9fd3bb94 (IsA leopard_s_bane herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leopard is a kind of operating system", "pln": ["(: cnet_isa_f5aef53c71 (IsA leopard operating_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leopard is a kind of big cat", "pln": ["(: cnet_isa_b3cebf6de0 (IsA leopard big_cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leopard is a kind of fur", "pln": ["(: cnet_isa_388aa5c8ed (IsA leopard fur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leopard cat is a kind of wildcat", "pln": ["(: cnet_isa_01cf60db74 (IsA leopard_cat wildcat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leopard frog is a kind of true frog", "pln": ["(: cnet_isa_f006191b80 (IsA leopard_frog true_frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leopard lily is a kind of lily", "pln": ["(: cnet_isa_b1bf8e4a43 (IsA leopard_lily lily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leopard lizard is a kind of iguanid", "pln": ["(: cnet_isa_39775df728 (IsA leopard_lizard iguanid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leopard plant is a kind of herb", "pln": ["(: cnet_isa_bf34c58592 (IsA leopard_plant herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leopardess is a kind of leopard", "pln": ["(: cnet_isa_8e71cd2d2b (IsA leopardess leopard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leotard is a kind of garment", "pln": ["(: cnet_isa_ee9963b812 (IsA leotard garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leotia lubrica is a kind of discomycete", "pln": ["(: cnet_isa_3ce9cffcff (IsA leotia_lubrica discomycete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepadidae is a kind of arthropod family", "pln": ["(: cnet_isa_3ec3a3c179 (IsA lepadidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepa is a kind of arthropod genus", "pln": ["(: cnet_isa_454d9339ce (IsA lepa arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepechinia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_0dc0c29326 (IsA lepechinia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leper is a kind of outcast", "pln": ["(: cnet_isa_1d1b0cb201 (IsA leper outcast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "leper is a kind of sick person", "pln": ["(: cnet_isa_0567c8d969 (IsA leper sick_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepidium is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_9afc413b07 (IsA lepidium dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepidobotryaceae is a kind of rosid dicot family", "pln": ["(: cnet_isa_45ef05fd3a (IsA lepidobotryaceae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepidobotry is a kind of tree", "pln": ["(: cnet_isa_2f5af57910 (IsA lepidobotry tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepidochely is a kind of reptile genus", "pln": ["(: cnet_isa_11fc89df5f (IsA lepidochely reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepidocrocite is a kind of iron ore", "pln": ["(: cnet_isa_c748b0bf7c (IsA lepidocrocite iron_ore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lepidocybium is a kind of fish genus", "pln": ["(: cnet_isa_01a9a45a5a (IsA lepidocybium fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lepidodendraceae is a kind of fern family", "pln": ["(: cnet_isa_33d2439a87 (IsA lepidodendraceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepidodendrale is a kind of plant order", "pln": ["(: cnet_isa_92d84da9d0 (IsA lepidodendrale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepidolite is a kind of mica", "pln": ["(: cnet_isa_0ca548082c (IsA lepidolite mica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepidomelane is a kind of biotite", "pln": ["(: cnet_isa_72bcd58e44 (IsA lepidomelane biotite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepidophobia is a kind of zoophobia", "pln": ["(: cnet_isa_b7e09a46bb (IsA lepidophobia zoophobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepidoptera is a kind of animal order", "pln": ["(: cnet_isa_bb27253959 (IsA lepidoptera animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepidopterist is a kind of entomologist", "pln": ["(: cnet_isa_fcdc020e63 (IsA lepidopterist entomologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepidopterology is a kind of entomology", "pln": ["(: cnet_isa_5282fdf375 (IsA lepidopterology entomology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepidopterous insect is a kind of insect", "pln": ["(: cnet_isa_641e78bfd9 (IsA lepidopterous_insect insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepidosauria is a kind of class", "pln": ["(: cnet_isa_357bb83823 (IsA lepidosauria class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepidothamnus is a kind of gymnosperm genus", "pln": ["(: cnet_isa_a591be82bc (IsA lepidothamnus gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepiota is a kind of agaric", "pln": ["(: cnet_isa_f232a6ec28 (IsA lepiota agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepiota clypeolaria is a kind of lepiota", "pln": ["(: cnet_isa_057446c49d (IsA lepiota_clypeolaria lepiota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lepiota naucina is a kind of lepiota", "pln": ["(: cnet_isa_7f53900187 (IsA lepiota_naucina lepiota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepiota rhacode is a kind of lepiota", "pln": ["(: cnet_isa_3fa1d5ee9e (IsA lepiota_rhacode lepiota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepiota rubrotincta is a kind of lepiota", "pln": ["(: cnet_isa_7248f2e4f3 (IsA lepiota_rubrotincta lepiota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepiotaceae is a kind of fungus family", "pln": ["(: cnet_isa_317fbe4395 (IsA lepiotaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepisma is a kind of arthropod genus", "pln": ["(: cnet_isa_86fc058bc1 (IsA lepisma arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepismatidae is a kind of arthropod family", "pln": ["(: cnet_isa_3b465129ab (IsA lepismatidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepisosteidae is a kind of fish family", "pln": ["(: cnet_isa_2da360a94f (IsA lepisosteidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepisosteus is a kind of fish genus", "pln": ["(: cnet_isa_b7431e48a5 (IsA lepisosteus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepomis is a kind of fish genus", "pln": ["(: cnet_isa_4fa01de2ff (IsA lepomis fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leporid is a kind of lagomorph", "pln": ["(: cnet_isa_ff9f07ce7e (IsA leporid lagomorph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leporidae is a kind of mammal family", "pln": ["(: cnet_isa_3fb82b4915 (IsA leporidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leprechaun is a kind of elf", "pln": ["(: cnet_isa_79f9e6c737 (IsA leprechaun elf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepromatous leprosy is a kind of leprosy", "pln": ["(: cnet_isa_e127f7db49 (IsA lepromatous_leprosy leprosy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leprosy is a kind of infectious disease", "pln": ["(: cnet_isa_1e0c50f13e (IsA leprosy infectious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "leprosy bacillus is a kind of mycobacteria", "pln": ["(: cnet_isa_b0dc97d582 (IsA leprosy_bacillus mycobacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leptarrhena is a kind of rosid dicot genus", "pln": ["(: cnet_isa_9390579c5c (IsA leptarrhena rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leptinotarsa is a kind of arthropod genus", "pln": ["(: cnet_isa_a9ceba522e (IsA leptinotarsa arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leptocephalus is a kind of larva", "pln": ["(: cnet_isa_7d4ba88414 (IsA leptocephalus larva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leptodactylid frog is a kind of frog", "pln": ["(: cnet_isa_0bed6a6909 (IsA leptodactylid_frog frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "leptodactylidae is a kind of amphibian family", "pln": ["(: cnet_isa_2e50d8260a (IsA leptodactylidae amphibian_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leptodactylus is a kind of amphibian genus", "pln": ["(: cnet_isa_8946683a12 (IsA leptodactylus amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leptoglossus is a kind of arthropod genus", "pln": ["(: cnet_isa_fbbcbba7e9 (IsA leptoglossus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leptomeninge is a kind of meninx", "pln": ["(: cnet_isa_c3b15d30f9 (IsA leptomeninge meninx) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "leptomeningitis is a kind of meningitis", "pln": ["(: cnet_isa_8706677f6f (IsA leptomeningitis meningitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepton is a kind of elementary particle", "pln": ["(: cnet_isa_ad790e2718 (IsA lepton elementary_particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lepton is a kind of fermion", "pln": ["(: cnet_isa_fcfa076ee5 (IsA lepton fermion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "leptotyphlops is a kind of reptile genus", "pln": ["(: cnet_isa_b023d1b279 (IsA leptotyphlops reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepton is a kind of greek monetary unit", "pln": ["(: cnet_isa_d3ee26e5fb (IsA lepton greek_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leptopteris is a kind of fern genus", "pln": ["(: cnet_isa_b68b7b22f7 (IsA leptopteris fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leptoptilus is a kind of bird genus", "pln": ["(: cnet_isa_137f8ce010 (IsA leptoptilus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leptospira is a kind of spirochete", "pln": ["(: cnet_isa_5e20e4fe9f (IsA leptospira spirochete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leptosporangium is a kind of sporangium", "pln": ["(: cnet_isa_2880a7853b (IsA leptosporangium sporangium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leptotene is a kind of phase", "pln": ["(: cnet_isa_9ae5f6eeee (IsA leptotene phase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leptotyphlopidae is a kind of reptile family", "pln": ["(: cnet_isa_28a1a08004 (IsA leptotyphlopidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leptotyphlop is a kind of reptile genus", "pln": ["(: cnet_isa_5775584e9a (IsA leptotyphlop reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lepus is a kind of mammal genus", "pln": ["(: cnet_isa_f0da8850bc (IsA lepus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ler is a kind of celtic deity", "pln": ["(: cnet_isa_eae662a31d (IsA ler celtic_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leresis is a kind of garrulity", "pln": ["(: cnet_isa_71562d7ef4 (IsA leresis garrulity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lerot is a kind of dormouse", "pln": ["(: cnet_isa_ed4ac0b91f (IsA lerot dormouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lesbian is a kind of hellene", "pln": ["(: cnet_isa_0baa2986de (IsA lesbian hellene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lesbian is a kind of homosexual", "pln": ["(: cnet_isa_fa8f3054c8 (IsA lesbian homosexual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lesbianism is a kind of homosexuality", "pln": ["(: cnet_isa_24fe2ac00b (IsA lesbianism homosexuality) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lesbianism is a kind of sexual orientation", "pln": ["(: cnet_isa_ae9cb3217e (IsA lesbianism sexual_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lesion is a kind of pathology", "pln": ["(: cnet_isa_754062f85e (IsA lesion pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lesotho monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_1782e830f4 (IsA lesotho_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lesquerella is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_c091ad758b (IsA lesquerella dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lesser ape is a kind of anthropoid ape", "pln": ["(: cnet_isa_c9c8da76a1 (IsA lesser_ape anthropoid_ape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lesser bullrush is a kind of cattail", "pln": ["(: cnet_isa_176d39bbd3 (IsA lesser_bullrush cattail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lesser butterfly orchid is a kind of orchid", "pln": ["(: cnet_isa_e6cc866718 (IsA lesser_butterfly_orchid orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lesser calamint is a kind of calamint", "pln": ["(: cnet_isa_855c984024 (IsA lesser_calamint calamint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lesser celandine is a kind of flower", "pln": ["(: cnet_isa_209c53e183 (IsA lesser_celandine flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lesser centaury is a kind of centaury", "pln": ["(: cnet_isa_9643da5569 (IsA lesser_centaury centaury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lesser galangal is a kind of ginger", "pln": ["(: cnet_isa_7ada0fb1db (IsA lesser_galangal ginger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lesser knapweed is a kind of knapweed", "pln": ["(: cnet_isa_2bcb65caf6 (IsA lesser_knapweed knapweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lesser kudu is a kind of kudu", "pln": ["(: cnet_isa_b2e46f086a (IsA lesser_kudu kudu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lesser omentum is a kind of omentum", "pln": ["(: cnet_isa_ae3ff8f860 (IsA lesser_omentum omentum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lesser panda is a kind of procyonid", "pln": ["(: cnet_isa_b112c0778b (IsA lesser_panda procyonid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lesser prairie chicken is a kind of prairie chicken", "pln": ["(: cnet_isa_68a873121c (IsA lesser_prairie_chicken prairie_chicken) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lesser rorqual is a kind of rorqual", "pln": ["(: cnet_isa_cf2aab872c (IsA lesser_rorqual rorqual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lesser scaup is a kind of scaup", "pln": ["(: cnet_isa_b360cb912e (IsA lesser_scaup scaup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lesser spearwort is a kind of marsh plant", "pln": ["(: cnet_isa_16c800078f (IsA lesser_spearwort marsh_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lesser twayblade is a kind of orchid", "pln": ["(: cnet_isa_518a8da90c (IsA lesser_twayblade orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lesser whitethroat is a kind of warbler", "pln": ["(: cnet_isa_e3acf404ba (IsA lesser_whitethroat warbler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lesser wintergreen is a kind of wintergreen", "pln": ["(: cnet_isa_7226dc889d (IsA lesser_wintergreen wintergreen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lesser yellowleg is a kind of yellowleg", "pln": ["(: cnet_isa_d7ea0f2b44 (IsA lesser_yellowleg yellowleg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lesson is a kind of school assignment", "pln": ["(: cnet_isa_65ee60dc83 (IsA lesson school_assignment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lesson is a kind of teaching", "pln": ["(: cnet_isa_c7e849b178 (IsA lesson teaching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lessor is a kind of owner", "pln": ["(: cnet_isa_dc140cfb8f (IsA lessor owner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "let is a kind of serve", "pln": ["(: cnet_isa_7f80ec2df5 (IsA let serve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lethal agent is a kind of agent", "pln": ["(: cnet_isa_1dc4078cf8 (IsA lethal_agent agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lethal dose is a kind of dose", "pln": ["(: cnet_isa_ea938ea96c (IsA lethal_dose dose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lethal gene is a kind of gene", "pln": ["(: cnet_isa_34b0f3fa23 (IsA lethal_gene gene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lethargy is a kind of torpor", "pln": ["(: cnet_isa_703590901b (IsA lethargy torpor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "letter is a kind of symbol", "pln": ["(: cnet_isa_cff2daf4b0 (IsA letter symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "letter is a kind of award", "pln": ["(: cnet_isa_154aa69eac (IsA letter award) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "letter is a kind of character", "pln": ["(: cnet_isa_a77aec682e (IsA letter character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "letter is a kind of document", "pln": ["(: cnet_isa_11ce36ae28 (IsA letter document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "letter is a kind of literal interpretation", "pln": ["(: cnet_isa_d7617ed0f3 (IsA letter literal_interpretation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "letter is a kind of text", "pln": ["(: cnet_isa_8393b93bdd (IsA letter text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "letter is a kind of owner", "pln": ["(: cnet_isa_2f2f3d1ce7 (IsA letter owner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "letter bomb is a kind of bomb", "pln": ["(: cnet_isa_694c06ed1f (IsA letter_bomb bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "letter bond is a kind of letter security", "pln": ["(: cnet_isa_292a904335 (IsA letter_bond letter_security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "letter case is a kind of case", "pln": ["(: cnet_isa_7e77562d35 (IsA letter_case case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "letter of credit is a kind of credit", "pln": ["(: cnet_isa_7733b23c03 (IsA letter_of_credit credit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "letter of credit is a kind of document", "pln": ["(: cnet_isa_7f6c93afcc (IsA letter_of_credit document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "letter of intent is a kind of letter", "pln": ["(: cnet_isa_73c0d3a39c (IsA letter_of_intent letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "letter of marque is a kind of license", "pln": ["(: cnet_isa_55ebb0b924 (IsA letter_of_marque license) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "letter opener is a kind of knife", "pln": ["(: cnet_isa_bd84d95f1b (IsA letter_opener knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "letter paper is a kind of writing paper", "pln": ["(: cnet_isa_5f70894c0f (IsA letter_paper writing_paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "letter security is a kind of security", "pln": ["(: cnet_isa_194d650de9 (IsA letter_security security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "letter stock is a kind of letter security", "pln": ["(: cnet_isa_d79d9796b0 (IsA letter_stock letter_security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "letter telegram is a kind of telegram", "pln": ["(: cnet_isa_9ff8d289fb (IsA letter_telegram telegram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lettercard is a kind of postcard", "pln": ["(: cnet_isa_39b5dfd8cd (IsA lettercard postcard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "letterer is a kind of painter", "pln": ["(: cnet_isa_6fe6476f13 (IsA letterer painter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "letterhead is a kind of stationery", "pln": ["(: cnet_isa_5b92820b69 (IsA letterhead stationery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "letterman is a kind of athlete", "pln": ["(: cnet_isa_666bbe09c4 (IsA letterman athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "letter is a kind of culture", "pln": ["(: cnet_isa_e249a05756 (IsA letter culture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "letter is a kind of eruditeness", "pln": ["(: cnet_isa_b6e8e0dfa3 (IsA letter eruditeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "letter of administration is a kind of legal document", "pln": ["(: cnet_isa_22720055e9 (IsA letter_of_administration legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "letter testamentary is a kind of legal document", "pln": ["(: cnet_isa_986e07807a (IsA letter_testamentary legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "letterset printing is a kind of offset", "pln": ["(: cnet_isa_ff843e10c2 (IsA letterset_printing offset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lettuce is a kind of leafy vegetable", "pln": ["(: cnet_isa_987b94de1c (IsA lettuce leafy_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lettuce is a kind of vegetable", "pln": ["(: cnet_isa_673e1b077f (IsA lettuce vegetable) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lettuce is a kind of salad green", "pln": ["(: cnet_isa_38b16d7b03 (IsA lettuce salad_green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lettuce is a kind of herb", "pln": ["(: cnet_isa_8bddf5748b (IsA lettuce herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "letup is a kind of pause", "pln": ["(: cnet_isa_7d319fb4e4 (IsA letup pause) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leu is a kind of moldovan monetary unit", "pln": ["(: cnet_isa_2a55c3418d (IsA leu moldovan_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "leu is a kind of romanian monetary unit", "pln": ["(: cnet_isa_9aff7a28ef (IsA leu romanian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "leucadendron is a kind of dicot genus", "pln": ["(: cnet_isa_8dd0bcdb17 (IsA leucadendron dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leucaena is a kind of rosid dicot genus", "pln": ["(: cnet_isa_bf35ebbce2 (IsA leucaena rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leucanthemum is a kind of asterid dicot genus", "pln": ["(: cnet_isa_229c45521f (IsA leucanthemum asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leucine is a kind of essential amino acid", "pln": ["(: cnet_isa_5a58fac5ab (IsA leucine essential_amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leuciscus is a kind of fish genus", "pln": ["(: cnet_isa_31573ddb53 (IsA leuciscus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leucocytozoan is a kind of sporozoan", "pln": ["(: cnet_isa_6cc1303625 (IsA leucocytozoan sporozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leucogene is a kind of asterid dicot genus", "pln": ["(: cnet_isa_5c0f74578e (IsA leucogene asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leucothoe is a kind of shrub", "pln": ["(: cnet_isa_50478d7131 (IsA leucothoe shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leukemia is a kind of cancer", "pln": ["(: cnet_isa_e65e3f1884 (IsA leukemia cancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leukocyte is a kind of blood cell", "pln": ["(: cnet_isa_e22ebe5736 (IsA leukocyte blood_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leukocyte is a kind of free phagocyte", "pln": ["(: cnet_isa_d7bb436cb8 (IsA leukocyte free_phagocyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leukocytosis is a kind of blood disease", "pln": ["(: cnet_isa_b252c3d26f (IsA leukocytosis blood_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leukoderma is a kind of skin disease", "pln": ["(: cnet_isa_f3ee7e14ac (IsA leukoderma skin_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leukoencephalitis is a kind of encephalitis", "pln": ["(: cnet_isa_fc4049616f (IsA leukoencephalitis encephalitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leukoma is a kind of eye disease", "pln": ["(: cnet_isa_4e4cd03079 (IsA leukoma eye_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leukopenia is a kind of blood disease", "pln": ["(: cnet_isa_ac72ef00fd (IsA leukopenia blood_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leukorrhea is a kind of mucus", "pln": ["(: cnet_isa_58d1952d37 (IsA leukorrhea mucus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lev is a kind of bulgarian monetary unit", "pln": ["(: cnet_isa_262c10de87 (IsA lev bulgarian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "levant is a kind of morocco", "pln": ["(: cnet_isa_928c04fbde (IsA levant morocco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "levant cotton is a kind of cotton", "pln": ["(: cnet_isa_9d29e60438 (IsA levant_cotton cotton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "levanter is a kind of east wind", "pln": ["(: cnet_isa_702621a81f (IsA levanter east_wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "levantine is a kind of aborigine", "pln": ["(: cnet_isa_bc09b22487 (IsA levantine aborigine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "levator is a kind of muscle", "pln": ["(: cnet_isa_4397b98b3e (IsA levator muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "levee is a kind of embankment", "pln": ["(: cnet_isa_6c2efb1639 (IsA levee embankment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "levee is a kind of pier", "pln": ["(: cnet_isa_8f990f88ea (IsA levee pier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "levee is a kind of reception", "pln": ["(: cnet_isa_22c96e1fb5 (IsA levee reception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "level is a kind of tool", "pln": ["(: cnet_isa_797fdd3178 (IsA level tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "level is a kind of indicator", "pln": ["(: cnet_isa_c0c41ca34d (IsA level indicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "level is a kind of altitude", "pln": ["(: cnet_isa_5a4d4c8833 (IsA level altitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "level is a kind of place", "pln": ["(: cnet_isa_337416a511 (IsA level place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "level is a kind of grade", "pln": ["(: cnet_isa_e06402a19c (IsA level grade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "level crossing is a kind of intersection", "pln": ["(: cnet_isa_5150528a0c (IsA level_crossing intersection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leveler is a kind of radical", "pln": ["(: cnet_isa_7a43bac832 (IsA leveler radical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lever is a kind of bar", "pln": ["(: cnet_isa_7d98f15c83 (IsA lever bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lever is a kind of machine", "pln": ["(: cnet_isa_01db4a541a (IsA lever machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lever is a kind of tumbler", "pln": ["(: cnet_isa_906109cc9d (IsA lever tumbler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lever hang is a kind of hang", "pln": ["(: cnet_isa_47cf694ba5 (IsA lever_hang hang) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lever lock is a kind of lock", "pln": ["(: cnet_isa_5a4bdfdb29 (IsA lever_lock lock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leverage is a kind of investing", "pln": ["(: cnet_isa_5633d04c11 (IsA leverage investing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leverage is a kind of advantage", "pln": ["(: cnet_isa_ae0fcbe810 (IsA leverage advantage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leverage is a kind of mechanical phenomenon", "pln": ["(: cnet_isa_25380890b9 (IsA leverage mechanical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leveraged buyout is a kind of buyout", "pln": ["(: cnet_isa_e1b21c6ed7 (IsA leveraged_buyout buyout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leveret is a kind of hare", "pln": ["(: cnet_isa_8c205e202a (IsA leveret hare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "leviathan is a kind of freak", "pln": ["(: cnet_isa_29b51b9643 (IsA leviathan freak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leviathan is a kind of mythical monster", "pln": ["(: cnet_isa_35189b377a (IsA leviathan mythical_monster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "levirate is a kind of institution", "pln": ["(: cnet_isa_a8e2b08634 (IsA levirate institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "levisticum is a kind of rosid dicot genus", "pln": ["(: cnet_isa_c6cf6cb419 (IsA levisticum rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "levitation is a kind of rise", "pln": ["(: cnet_isa_0cef342c8b (IsA levitation rise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "levitation is a kind of change of location", "pln": ["(: cnet_isa_98697e239a (IsA levitation change_of_location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "levitation is a kind of phenomenon", "pln": ["(: cnet_isa_d9d00ecaa1 (IsA levitation phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "levite is a kind of israelite", "pln": ["(: cnet_isa_f1ae4eb799 (IsA levite israelite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "levity is a kind of frivolity", "pln": ["(: cnet_isa_888ef2304f (IsA levity frivolity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "levity is a kind of feeling", "pln": ["(: cnet_isa_222082ac87 (IsA levity feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "levorotation is a kind of rotation", "pln": ["(: cnet_isa_2f98fcb6b8 (IsA levorotation rotation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "levy is a kind of conscription", "pln": ["(: cnet_isa_db54450b59 (IsA levy conscription) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "levy is a kind of charge", "pln": ["(: cnet_isa_a70a114587 (IsA levy charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lewisia is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_692b939b1d (IsA lewisia caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lexeme is a kind of language unit", "pln": ["(: cnet_isa_d452fa0105 (IsA lexeme language_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lexical database is a kind of electronic database", "pln": ["(: cnet_isa_1cff260a12 (IsA lexical_database electronic_database) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lexical disambiguation is a kind of disambiguation", "pln": ["(: cnet_isa_82544965f4 (IsA lexical_disambiguation disambiguation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lexical entry is a kind of entry", "pln": ["(: cnet_isa_52638ba4a6 (IsA lexical_entry entry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lexical meaning is a kind of meaning", "pln": ["(: cnet_isa_7b92e70161 (IsA lexical_meaning meaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lexical semantic is a kind of semantic", "pln": ["(: cnet_isa_b2bee7e0f1 (IsA lexical_semantic semantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lexicalization is a kind of linguistic process", "pln": ["(: cnet_isa_820163093b (IsA lexicalization linguistic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lexicalized concept is a kind of concept", "pln": ["(: cnet_isa_4273406282 (IsA lexicalized_concept concept) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lexicographer is a kind of encyclopedist", "pln": ["(: cnet_isa_6cd1e0c76d (IsA lexicographer encyclopedist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lexicographer is a kind of linguist", "pln": ["(: cnet_isa_5b32afa2e3 (IsA lexicographer linguist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lexicography is a kind of writing", "pln": ["(: cnet_isa_156f737f1f (IsA lexicography writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lexicology is a kind of linguistic", "pln": ["(: cnet_isa_bf7ca85d3e (IsA lexicology linguistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lexicostatistic is a kind of etymology", "pln": ["(: cnet_isa_4db138a015 (IsA lexicostatistic etymology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lexis is a kind of cognition", "pln": ["(: cnet_isa_f260919b19 (IsA lexis cognition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lexus is a kind of brand of car", "pln": ["(: cnet_isa_d07867fee8 (IsA lexus brand_of_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leycesteria is a kind of asterid dicot genus", "pln": ["(: cnet_isa_49503c8516 (IsA leycesteria asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "leydig cell is a kind of cell", "pln": ["(: cnet_isa_59d2e486e5 (IsA leydig_cell cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "leymus is a kind of monocot genus", "pln": ["(: cnet_isa_82d17c68d2 (IsA leymus monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lhasa is a kind of terrier", "pln": ["(: cnet_isa_ebde95c26e (IsA lhasa terrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "li is a kind of linear unit", "pln": ["(: cnet_isa_9b7ddb7489 (IsA li linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liability is a kind of possession", "pln": ["(: cnet_isa_3adca77d07 (IsA liability possession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liability is a kind of bad", "pln": ["(: cnet_isa_9acc9cbe86 (IsA liability bad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liability is a kind of susceptibility", "pln": ["(: cnet_isa_cf591ab5ed (IsA liability susceptibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liability insurance is a kind of insurance", "pln": ["(: cnet_isa_3daa442b97 (IsA liability_insurance insurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liaison is a kind of channel", "pln": ["(: cnet_isa_b5155ea8b5 (IsA liaison channel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "liana is a kind of vine", "pln": ["(: cnet_isa_3794320668 (IsA liana vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liao is a kind of dynasty", "pln": ["(: cnet_isa_8b141904b0 (IsA liao dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liar is a kind of person who lie", "pln": ["(: cnet_isa_bcb8513454 (IsA liar person_who_lie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liar is a kind of deceiver", "pln": ["(: cnet_isa_0689fdaa5a (IsA liar deceiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liatris is a kind of asterid dicot genus", "pln": ["(: cnet_isa_691ea911f7 (IsA liatris asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "libation is a kind of religious ceremony", "pln": ["(: cnet_isa_ffcb36cb06 (IsA libation religious_ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "libation is a kind of drink", "pln": ["(: cnet_isa_ce078704f9 (IsA libation drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "libation is a kind of helping", "pln": ["(: cnet_isa_8839a49404 (IsA libation helping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "libel is a kind of complaint", "pln": ["(: cnet_isa_cb28fab214 (IsA libel complaint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "libel is a kind of defamation", "pln": ["(: cnet_isa_bb7981d0cc (IsA libel defamation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liberal is a kind of adult", "pln": ["(: cnet_isa_da88592788 (IsA liberal adult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "liberal democrat party is a kind of party", "pln": ["(: cnet_isa_490ba730fa (IsA liberal_democrat_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liberal party is a kind of party", "pln": ["(: cnet_isa_a7a3b70b26 (IsA liberal_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liberalism is a kind of political ideology", "pln": ["(: cnet_isa_5be5475efa (IsA liberalism political_ideology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liberalism is a kind of economic theory", "pln": ["(: cnet_isa_8f7d130c8c (IsA liberalism economic_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liberalism is a kind of political orientation", "pln": ["(: cnet_isa_e3c3af4382 (IsA liberalism political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liberality is a kind of generosity", "pln": ["(: cnet_isa_db268df86c (IsA liberality generosity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liberality is a kind of tolerance", "pln": ["(: cnet_isa_6dac08f1ba (IsA liberality tolerance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liberalization is a kind of easing", "pln": ["(: cnet_isa_57923d107b (IsA liberalization easing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "liberation is a kind of accomplishment", "pln": ["(: cnet_isa_486fa11b1a (IsA liberation accomplishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liberation is a kind of attempt", "pln": ["(: cnet_isa_5f4978c0cd (IsA liberation attempt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liberation theology is a kind of theology", "pln": ["(: cnet_isa_4d0f9dc0d3 (IsA liberation_theology theology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liberator is a kind of benefactor", "pln": ["(: cnet_isa_b19b26c38a (IsA liberator benefactor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liberian is a kind of african", "pln": ["(: cnet_isa_97c51e1bcf (IsA liberian african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liberian coffee is a kind of coffee", "pln": ["(: cnet_isa_67ffcd0a7e (IsA liberian_coffee coffee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liberian dollar is a kind of dollar", "pln": ["(: cnet_isa_1b87a830d3 (IsA liberian_dollar dollar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "libertarian is a kind of individualist", "pln": ["(: cnet_isa_cf60e8ed12 (IsA libertarian individualist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "libertarian is a kind of advocate", "pln": ["(: cnet_isa_dae99ca838 (IsA libertarian advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "libertarian is a kind of philosopher", "pln": ["(: cnet_isa_4945f7e2d3 (IsA libertarian philosopher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "libertarianism is a kind of political ideology", "pln": ["(: cnet_isa_ef4b1d97b2 (IsA libertarianism political_ideology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "libertarianism is a kind of political orientation", "pln": ["(: cnet_isa_79f894f9a8 (IsA libertarianism political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "libertine is a kind of bad person", "pln": ["(: cnet_isa_b35ffd5bfa (IsA libertine bad_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liberty is a kind of freedom", "pln": ["(: cnet_isa_d39e9aeba8 (IsA liberty freedom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liberty cap is a kind of cap", "pln": ["(: cnet_isa_59293c9191 (IsA liberty_cap cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liberty party is a kind of party", "pln": ["(: cnet_isa_1268f1d0b9 (IsA liberty_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "liberty ship is a kind of cargo ship", "pln": ["(: cnet_isa_e940792d69 (IsA liberty_ship cargo_ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "libidinal energy is a kind of psychic energy", "pln": ["(: cnet_isa_32d2b84120 (IsA libidinal_energy psychic_energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "libido is a kind of sexual desire", "pln": ["(: cnet_isa_8d30634c2b (IsA libido sexual_desire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "libocedrus is a kind of gymnosperm genus", "pln": ["(: cnet_isa_2ab20bf9ca (IsA libocedrus gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "librarian is a kind of professional", "pln": ["(: cnet_isa_3d4bfd566f (IsA librarian professional) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "librarianship is a kind of position", "pln": ["(: cnet_isa_86c9df7e2f (IsA librarianship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "library is a kind of building", "pln": ["(: cnet_isa_8de2684aec (IsA library building) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "library is a kind of place", "pln": ["(: cnet_isa_6276e46efa (IsA library place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "library is a kind of place of wonder", "pln": ["(: cnet_isa_4b0522618c (IsA library place_of_wonder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "library is a kind of depository", "pln": ["(: cnet_isa_30d3df915b (IsA library depository) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "library is a kind of room", "pln": ["(: cnet_isa_1031fe434f (IsA library room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "library is a kind of collection", "pln": ["(: cnet_isa_a3059011d8 (IsA library collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "library card is a kind of card", "pln": ["(: cnet_isa_0f75c1e7ef (IsA library_card card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "library catalog is a kind of catalog", "pln": ["(: cnet_isa_eda35e61ef (IsA library_catalog catalog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "library fine is a kind of fine", "pln": ["(: cnet_isa_6e0707343d (IsA library_fine fine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "library program is a kind of program", "pln": ["(: cnet_isa_6ded1079e0 (IsA library_program program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "library routine is a kind of routine", "pln": ["(: cnet_isa_d4a58a1e21 (IsA library_routine routine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "library science is a kind of humanistic discipline", "pln": ["(: cnet_isa_06037b91eb (IsA library_science humanistic_discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "libration is a kind of oscillation", "pln": ["(: cnet_isa_46a5ad79ad (IsA libration oscillation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "libration is a kind of variation", "pln": ["(: cnet_isa_800a2a777b (IsA libration variation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "librettist is a kind of writer", "pln": ["(: cnet_isa_e06b4946f4 (IsA librettist writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "libretto is a kind of script", "pln": ["(: cnet_isa_8e09ce2941 (IsA libretto script) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "libyan is a kind of african", "pln": ["(: cnet_isa_7c81972b3c (IsA libyan african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "libyan dinar is a kind of libyan monetary unit", "pln": ["(: cnet_isa_292e687b5b (IsA libyan_dinar libyan_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "libyan dirham is a kind of libyan monetary unit", "pln": ["(: cnet_isa_62955805db (IsA libyan_dirham libyan_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "libyan monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_2a280d1c63 (IsA libyan_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "license is a kind of authorization", "pln": ["(: cnet_isa_83fc2cd1a3 (IsA license authorization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "license is a kind of legal document", "pln": ["(: cnet_isa_8d8dc534c6 (IsA license legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "license is a kind of liberty", "pln": ["(: cnet_isa_727b16d137 (IsA license liberty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "license number is a kind of number", "pln": ["(: cnet_isa_ceb8a577c1 (IsA license_number number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "license plate is a kind of plate", "pln": ["(: cnet_isa_850345eb5b (IsA license_plate plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "licensed practical nurse is a kind of nurse", "pln": ["(: cnet_isa_7c8b17aa47 (IsA licensed_practical_nurse nurse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "licensee is a kind of retailer", "pln": ["(: cnet_isa_64449d13ab (IsA licensee retailer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "licenser is a kind of official", "pln": ["(: cnet_isa_d29fba9eb4 (IsA licenser official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "licensing agreement is a kind of contract", "pln": ["(: cnet_isa_caccfddde0 (IsA licensing_agreement contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "licensing fee is a kind of fee", "pln": ["(: cnet_isa_cd30d82a71 (IsA licensing_fee fee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "licentiate is a kind of scholar", "pln": ["(: cnet_isa_509bfe3b7d (IsA licentiate scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "licentiousness is a kind of immorality", "pln": ["(: cnet_isa_2ce68adce4 (IsA licentiousness immorality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lichanura is a kind of reptile genus", "pln": ["(: cnet_isa_5a967e6b2e (IsA lichanura reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lichen is a kind of fungus", "pln": ["(: cnet_isa_0abbea8d27 (IsA lichen fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lichen is a kind of skin disease", "pln": ["(: cnet_isa_fe60b72037 (IsA lichen skin_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lichen planus is a kind of lichen", "pln": ["(: cnet_isa_a504f02b6b (IsA lichen_planus lichen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lichenale is a kind of fungus order", "pln": ["(: cnet_isa_96bbb95753 (IsA lichenale fungus_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lichene is a kind of division", "pln": ["(: cnet_isa_ad7348433d (IsA lichene division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lichtenoid eczema is a kind of eczema", "pln": ["(: cnet_isa_4d0bb45b28 (IsA lichtenoid_eczema eczema) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "licitness is a kind of lawfulness", "pln": ["(: cnet_isa_8adf7c6a69 (IsA licitness lawfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lick is a kind of touch", "pln": ["(: cnet_isa_66beea669a (IsA lick touch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "licorice is a kind of candy", "pln": ["(: cnet_isa_b526c92af6 (IsA licorice candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "licorice is a kind of herb", "pln": ["(: cnet_isa_eedc46a10c (IsA licorice herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "licorice fern is a kind of polypody", "pln": ["(: cnet_isa_91aab6707f (IsA licorice_fern polypody) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "licorice root is a kind of root", "pln": ["(: cnet_isa_287f75b105 (IsA licorice_root root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lid is a kind of top", "pln": ["(: cnet_isa_4a163ba9ab (IsA lid top) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lidar is a kind of measuring instrument", "pln": ["(: cnet_isa_e91b1623cd (IsA lidar measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lido is a kind of recreational facility", "pln": ["(: cnet_isa_7d23d447b5 (IsA lido recreational_facility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lido deck is a kind of deck", "pln": ["(: cnet_isa_b80df24b4f (IsA lido_deck deck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lie is a kind of deception", "pln": ["(: cnet_isa_2b04e68895 (IsA lie deception) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lie is a kind of false statement", "pln": ["(: cnet_isa_67c0bef8df (IsA lie false_statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lie is a kind of falsehood", "pln": ["(: cnet_isa_b6010683f9 (IsA lie falsehood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lie is a kind of position", "pln": ["(: cnet_isa_e15e608a97 (IsA lie position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lie abed is a kind of idler", "pln": ["(: cnet_isa_13df53cfe9 (IsA lie_abed idler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lie detector is a kind of polygraph", "pln": ["(: cnet_isa_ab93dece38 (IsA lie_detector polygraph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lie in is a kind of rest", "pln": ["(: cnet_isa_23a561dc33 (IsA lie_in rest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liebfraumilch is a kind of rhine wine", "pln": ["(: cnet_isa_68a3659bfd (IsA liebfraumilch rhine_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liebig condenser is a kind of condenser", "pln": ["(: cnet_isa_b526dcc8a4 (IsA liebig_condenser condenser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liechtensteiner is a kind of european", "pln": ["(: cnet_isa_e9e831962f (IsA liechtensteiner european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lied is a kind of song", "pln": ["(: cnet_isa_e6d9c6a8b9 (IsA lied song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lieder singer is a kind of singer", "pln": ["(: cnet_isa_0512eb3ade (IsA lieder_singer singer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liederkranz is a kind of cheese", "pln": ["(: cnet_isa_55aaae2af6 (IsA liederkranz cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liege lord is a kind of feudal lord", "pln": ["(: cnet_isa_023950537f (IsA liege_lord feudal_lord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lien is a kind of security interest", "pln": ["(: cnet_isa_506ffbdcc8 (IsA lien security_interest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lienal artery is a kind of artery", "pln": ["(: cnet_isa_08082e25c3 (IsA lienal_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lie is a kind of unreliable information", "pln": ["(: cnet_isa_d063c7e8ef (IsA lie unreliable_information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lieutenancy is a kind of position", "pln": ["(: cnet_isa_68ec50af79 (IsA lieutenancy position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lieutenant is a kind of commissioned military officer", "pln": ["(: cnet_isa_86fe8eb93a (IsA lieutenant commissioned_military_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lieutenant is a kind of commissioned naval officer", "pln": ["(: cnet_isa_eee377917b (IsA lieutenant commissioned_naval_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lieutenant is a kind of lawman", "pln": ["(: cnet_isa_938ff85510 (IsA lieutenant lawman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lieutenant colonel is a kind of colonel", "pln": ["(: cnet_isa_c604f51734 (IsA lieutenant_colonel colonel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lieutenant commander is a kind of commissioned naval officer", "pln": ["(: cnet_isa_3a40112a33 (IsA lieutenant_commander commissioned_naval_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lieutenant general is a kind of general officer", "pln": ["(: cnet_isa_10d554f53a (IsA lieutenant_general general_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lieutenant governor is a kind of elected official", "pln": ["(: cnet_isa_d54361d529 (IsA lieutenant_governor elected_official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lieutenant junior grade is a kind of commissioned naval officer", "pln": ["(: cnet_isa_50f7f336c4 (IsA lieutenant_junior_grade commissioned_naval_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "life is a kind of living thing", "pln": ["(: cnet_isa_096a887068 (IsA life living_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "life is a kind of experience", "pln": ["(: cnet_isa_32b390e70a (IsA life experience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "life is a kind of motivation", "pln": ["(: cnet_isa_07597c3aac (IsA life motivation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "life is a kind of person", "pln": ["(: cnet_isa_d763ba7be2 (IsA life person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "life is a kind of organic phenomenon", "pln": ["(: cnet_isa_4073ed01fd (IsA life organic_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "life is a kind of being", "pln": ["(: cnet_isa_db5f9a73f0 (IsA life being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "life is a kind of time period", "pln": ["(: cnet_isa_b84f7e006a (IsA life time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "life buoy is a kind of life preserver", "pln": ["(: cnet_isa_e92729720a (IsA life_buoy life_preserver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "life class is a kind of art class", "pln": ["(: cnet_isa_c8fc1b6588 (IsA life_class art_class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "life cycle is a kind of organic phenomenon", "pln": ["(: cnet_isa_e4ab48e732 (IsA life_cycle organic_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "life cycle is a kind of growth", "pln": ["(: cnet_isa_c792e7f544 (IsA life_cycle growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "life estate is a kind of estate", "pln": ["(: cnet_isa_eef252561f (IsA life_estate estate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "life expectancy is a kind of anticipation", "pln": ["(: cnet_isa_234b390717 (IsA life_expectancy anticipation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "life force is a kind of force", "pln": ["(: cnet_isa_460acf40a5 (IsA life_force force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "life form is a kind of body", "pln": ["(: cnet_isa_b1ff6d7c5b (IsA life_form body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "life imprisonment is a kind of captivity", "pln": ["(: cnet_isa_2b5fc12038 (IsA life_imprisonment captivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "life insurance is a kind of insurance", "pln": ["(: cnet_isa_4957b8fa2c (IsA life_insurance insurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "life jacket is a kind of life preserver", "pln": ["(: cnet_isa_98fbc60708 (IsA life_jacket life_preserver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "life mask is a kind of cast", "pln": ["(: cnet_isa_34ba1902b2 (IsA life_mask cast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "life office is a kind of office", "pln": ["(: cnet_isa_1c3162335f (IsA life_office office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "life peer is a kind of peer", "pln": ["(: cnet_isa_b260780320 (IsA life_peer peer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "life preserver is a kind of float", "pln": ["(: cnet_isa_e866110cc7 (IsA life_preserver float) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "life preserver is a kind of rescue equipment", "pln": ["(: cnet_isa_10e82eaa51 (IsA life_preserver rescue_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "life raft is a kind of raft", "pln": ["(: cnet_isa_67b8c7be73 (IsA life_raft raft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "life saver is a kind of candy", "pln": ["(: cnet_isa_223ad18016 (IsA life_saver candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "life science is a kind of natural science", "pln": ["(: cnet_isa_b84db5c71e (IsA life_science natural_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "life sentence is a kind of prison term", "pln": ["(: cnet_isa_e984354ac2 (IsA life_sentence prison_term) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "life style is a kind of manner", "pln": ["(: cnet_isa_7b99c30e36 (IsA life_style manner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "life support system is a kind of equipment", "pln": ["(: cnet_isa_c17447f1da (IsA life_support_system equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "life tenant is a kind of tenant", "pln": ["(: cnet_isa_811f35b077 (IsA life_tenant tenant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lifeblood is a kind of force", "pln": ["(: cnet_isa_4c16a625ad (IsA lifeblood force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lifeblood is a kind of blood", "pln": ["(: cnet_isa_f1340c1eb4 (IsA lifeblood blood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lifeboat is a kind of sea boat", "pln": ["(: cnet_isa_2e8b72f40f (IsA lifeboat sea_boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lifeguard is a kind of attendant", "pln": ["(: cnet_isa_bbbdebf345 (IsA lifeguard attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lifeline is a kind of line", "pln": ["(: cnet_isa_2155b04186 (IsA lifeline line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lifeline is a kind of support", "pln": ["(: cnet_isa_0d6a672e07 (IsA lifeline support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lifer is a kind of convict", "pln": ["(: cnet_isa_9a61e720cc (IsA lifer convict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lifesaving is a kind of rescue", "pln": ["(: cnet_isa_97143d308f (IsA lifesaving rescue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lifework is a kind of career", "pln": ["(: cnet_isa_f1f65ecd46 (IsA lifework career) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lift is a kind of aid", "pln": ["(: cnet_isa_fe551358b9 (IsA lift aid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lift is a kind of drive", "pln": ["(: cnet_isa_d18404f5b3 (IsA lift drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lift is a kind of propulsion", "pln": ["(: cnet_isa_c7347e78e5 (IsA lift propulsion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lift is a kind of device", "pln": ["(: cnet_isa_d91d4949cd (IsA lift device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lift is a kind of layer", "pln": ["(: cnet_isa_2fff63dc6a (IsA lift layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lift is a kind of wave", "pln": ["(: cnet_isa_1052fb8d67 (IsA lift wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lift pump is a kind of pump", "pln": ["(: cnet_isa_cf40f1da85 (IsA lift_pump pump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lifting device is a kind of device", "pln": ["(: cnet_isa_73f49bff4c (IsA lifting_device device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lifting weight is a kind of exercise", "pln": ["(: cnet_isa_79dc0b90af (IsA lifting_weight exercise) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liftoff is a kind of rise", "pln": ["(: cnet_isa_046e350a24 (IsA liftoff rise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ligament is a kind of attachment", "pln": ["(: cnet_isa_512bb4a348 (IsA ligament attachment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ligament is a kind of connective tissue", "pln": ["(: cnet_isa_814c4965d0 (IsA ligament connective_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ligand is a kind of substance", "pln": ["(: cnet_isa_9fe1f2a36d (IsA ligand substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ligation is a kind of tying", "pln": ["(: cnet_isa_2e63985885 (IsA ligation tying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ligature is a kind of band", "pln": ["(: cnet_isa_802e68e631 (IsA ligature band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ligature is a kind of thread", "pln": ["(: cnet_isa_6e3b289897 (IsA ligature thread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ligature is a kind of character", "pln": ["(: cnet_isa_65b159a60c (IsA ligature character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ligature is a kind of phrase", "pln": ["(: cnet_isa_4dc57c686c (IsA ligature phrase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liger is a kind of big cat", "pln": ["(: cnet_isa_299ee11364 (IsA liger big_cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light is a kind of electromagnetic radiation", "pln": ["(: cnet_isa_002e60fb78 (IsA light electromagnetic_radiation) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "light is a kind of energy", "pln": ["(: cnet_isa_aa567afd9f (IsA light energy) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light is a kind of particle", "pln": ["(: cnet_isa_5478b4d02d (IsA light particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light is a kind of source of illumination", "pln": ["(: cnet_isa_37498f43be (IsA light source_of_illumination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light is a kind of visual property", "pln": ["(: cnet_isa_7e061449c8 (IsA light visual_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light is a kind of insight", "pln": ["(: cnet_isa_452398a2ea (IsA light insight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light is a kind of position", "pln": ["(: cnet_isa_d651427589 (IsA light position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light is a kind of public knowledge", "pln": ["(: cnet_isa_d073772fce (IsA light public_knowledge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light is a kind of visual signal", "pln": ["(: cnet_isa_61b5e655e0 (IsA light visual_signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light is a kind of scene", "pln": ["(: cnet_isa_601df0fcbe (IsA light scene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light is a kind of friend", "pln": ["(: cnet_isa_dd8b9f2819 (IsA light friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light is a kind of actinic radiation", "pln": ["(: cnet_isa_19da3f5217 (IsA light actinic_radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light is a kind of condition", "pln": ["(: cnet_isa_683c8913ab (IsA light condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light is a kind of illumination", "pln": ["(: cnet_isa_7ab94c0c82 (IsA light illumination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light adaptation is a kind of adaptation", "pln": ["(: cnet_isa_6633754afb (IsA light_adaptation adaptation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light air is a kind of breeze", "pln": ["(: cnet_isa_54a34658db (IsA light_air breeze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light arm is a kind of weapon", "pln": ["(: cnet_isa_fca5690ca3 (IsA light_arm weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light beer is a kind of lager", "pln": ["(: cnet_isa_56e3d5cca5 (IsA light_beer lager) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light breeze is a kind of breeze", "pln": ["(: cnet_isa_7c1313c057 (IsA light_breeze breeze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light brown is a kind of brown", "pln": ["(: cnet_isa_1b21ed072f (IsA light_brown brown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light bulb is a kind of light source", "pln": ["(: cnet_isa_cdb38e328f (IsA light_bulb light_source) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light bulb is a kind of electric lamp", "pln": ["(: cnet_isa_0fdf69b84c (IsA light_bulb electric_lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light circuit is a kind of wiring", "pln": ["(: cnet_isa_dec4522adb (IsA light_circuit wiring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light cream is a kind of cream", "pln": ["(: cnet_isa_431cc12c43 (IsA light_cream cream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light diet is a kind of diet", "pln": ["(: cnet_isa_cc706bcbd0 (IsA light_diet diet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light emitting diode is a kind of diode", "pln": ["(: cnet_isa_6ffd92401d (IsA light_emitting_diode diode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light filter is a kind of filter", "pln": ["(: cnet_isa_7f9747f14d (IsA light_filter filter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light flyweight is a kind of boxer", "pln": ["(: cnet_isa_50b3285ce2 (IsA light_flyweight boxer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light heavyweight is a kind of boxer", "pln": ["(: cnet_isa_d223c5bd13 (IsA light_heavyweight boxer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light heavyweight is a kind of prizefighter", "pln": ["(: cnet_isa_4c801a8ac0 (IsA light_heavyweight prizefighter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light heavyweight is a kind of wrestler", "pln": ["(: cnet_isa_b56ff43881 (IsA light_heavyweight wrestler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light hour is a kind of astronomy unit", "pln": ["(: cnet_isa_0e9e65acad (IsA light_hour astronomy_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light machine gun is a kind of submachine gun", "pln": ["(: cnet_isa_535c05a4af (IsA light_machine_gun submachine_gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "light meter is a kind of photographic equipment", "pln": ["(: cnet_isa_7a1e783fe9 (IsA light_meter photographic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light microscope is a kind of microscope", "pln": ["(: cnet_isa_d4a0fa6d06 (IsA light_microscope microscope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light middleweight is a kind of boxer", "pln": ["(: cnet_isa_a8474929c3 (IsA light_middleweight boxer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light minute is a kind of astronomy unit", "pln": ["(: cnet_isa_824c7c3374 (IsA light_minute astronomy_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light o love is a kind of wanton", "pln": ["(: cnet_isa_446a8088fd (IsA light_o_love wanton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light pen is a kind of pointer", "pln": ["(: cnet_isa_6e6cc2a4b3 (IsA light_pen pointer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light reaction is a kind of photochemical reaction", "pln": ["(: cnet_isa_d0d98ce878 (IsA light_reaction photochemical_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light reflex is a kind of reflex", "pln": ["(: cnet_isa_fe1ee274df (IsA light_reflex reflex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light second is a kind of astronomy unit", "pln": ["(: cnet_isa_33fc078a75 (IsA light_second astronomy_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light show is a kind of display", "pln": ["(: cnet_isa_65bbc68d1d (IsA light_show display) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light time is a kind of distance", "pln": ["(: cnet_isa_4c62d687b3 (IsA light_time distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light unit is a kind of electromagnetic unit", "pln": ["(: cnet_isa_90dee47070 (IsA light_unit electromagnetic_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light welterweight is a kind of boxer", "pln": ["(: cnet_isa_b25c66a3c1 (IsA light_welterweight boxer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light year is a kind of astronomy unit", "pln": ["(: cnet_isa_2a83b09e69 (IsA light_year astronomy_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lightening is a kind of electricity", "pln": ["(: cnet_isa_d1cb105517 (IsA lightening electricity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lightening is a kind of descent", "pln": ["(: cnet_isa_8c1188693d (IsA lightening descent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lighter is a kind of tool", "pln": ["(: cnet_isa_37ea6eadbc (IsA lighter tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lighter is a kind of device", "pln": ["(: cnet_isa_d42a7ded48 (IsA lighter device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lighter than air craft is a kind of aircraft", "pln": ["(: cnet_isa_62398997fc (IsA lighter_than_air_craft aircraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lighterage is a kind of transportation", "pln": ["(: cnet_isa_dc9ca9d3d1 (IsA lighterage transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lighterage is a kind of fee", "pln": ["(: cnet_isa_7f1edcba8d (IsA lighterage fee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lighterman is a kind of mariner", "pln": ["(: cnet_isa_6495023028 (IsA lighterman mariner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lightheadedness is a kind of heedlessness", "pln": ["(: cnet_isa_861ea536ef (IsA lightheadedness heedlessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lighthouse keeper is a kind of custodian", "pln": ["(: cnet_isa_ebb0880ba4 (IsA lighthouse_keeper custodian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lighting is a kind of interior decoration", "pln": ["(: cnet_isa_4f3c4c39df (IsA lighting interior_decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lighting is a kind of apparatus", "pln": ["(: cnet_isa_fa4b01eaf0 (IsA lighting apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lighting fixture is a kind of fixture", "pln": ["(: cnet_isa_427f7e9d95 (IsA lighting_fixture fixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lighting industry is a kind of industry", "pln": ["(: cnet_isa_545bb52136 (IsA lighting_industry industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lightness is a kind of value", "pln": ["(: cnet_isa_ca767a4b5b (IsA lightness value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lightness is a kind of weight", "pln": ["(: cnet_isa_de566e3346 (IsA lightness weight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lightning is a kind of electrical discharge", "pln": ["(: cnet_isa_3028411459 (IsA lightning electrical_discharge) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lightning is a kind of electricity", "pln": ["(: cnet_isa_731c9855c0 (IsA lightning electricity) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lightning is a kind of flash", "pln": ["(: cnet_isa_a653bd43f5 (IsA lightning flash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lightning is a kind of atmospheric electricity", "pln": ["(: cnet_isa_d554b2d8c0 (IsA lightning atmospheric_electricity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lightning rod is a kind of conductor", "pln": ["(: cnet_isa_6e281c728e (IsA lightning_rod conductor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lightning rod is a kind of person", "pln": ["(: cnet_isa_8e4ff64fb2 (IsA lightning_rod person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "light out is a kind of bedtime", "pln": ["(: cnet_isa_86c5b8dfbc (IsA light_out bedtime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lightship is a kind of ship", "pln": ["(: cnet_isa_cbd8611826 (IsA lightship ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lightsomeness is a kind of giddiness", "pln": ["(: cnet_isa_ed864f4a4d (IsA lightsomeness giddiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lightweight is a kind of boxer", "pln": ["(: cnet_isa_800d3b04fd (IsA lightweight boxer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lightweight is a kind of prizefighter", "pln": ["(: cnet_isa_b28a62b322 (IsA lightweight prizefighter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lightweight is a kind of wrestler", "pln": ["(: cnet_isa_333431ae6e (IsA lightweight wrestler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lightwood is a kind of blackwood", "pln": ["(: cnet_isa_e565834f88 (IsA lightwood blackwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ligne is a kind of linear unit", "pln": ["(: cnet_isa_b20a827a56 (IsA ligne linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lignin is a kind of polymer", "pln": ["(: cnet_isa_d1cb9c2ed4 (IsA lignin polymer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lignite is a kind of coal", "pln": ["(: cnet_isa_e2ed0147ab (IsA lignite coal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lignite is a kind of humate", "pln": ["(: cnet_isa_d0462e80d7 (IsA lignite humate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lignosae is a kind of woody plant", "pln": ["(: cnet_isa_fde3ebb5ad (IsA lignosae woody_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lignum is a kind of plant tissue", "pln": ["(: cnet_isa_da4a0a86be (IsA lignum plant_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lignum vitae is a kind of angiospermous tree", "pln": ["(: cnet_isa_0700d99d89 (IsA lignum_vitae angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lignum vitae is a kind of wood", "pln": ["(: cnet_isa_ffc8bee9e4 (IsA lignum_vitae wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ligularia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_ef5ee31e5e (IsA ligularia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ligule is a kind of plant part", "pln": ["(: cnet_isa_3fd20e5235 (IsA ligule plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ligustrum is a kind of dicot genus", "pln": ["(: cnet_isa_9b6d887324 (IsA ligustrum dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ligustrum obtusifolium is a kind of privet", "pln": ["(: cnet_isa_8050d37d76 (IsA ligustrum_obtusifolium privet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "like is a kind of kind", "pln": ["(: cnet_isa_e7fd626c62 (IsA like kind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "likelihood is a kind of probability", "pln": ["(: cnet_isa_0777a72899 (IsA likelihood probability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "likeness is a kind of ikon", "pln": ["(: cnet_isa_e041b60d1b (IsA likeness ikon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "likeness is a kind of similarity", "pln": ["(: cnet_isa_c754b09134 (IsA likeness similarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "likening is a kind of comparison", "pln": ["(: cnet_isa_07fd69872f (IsA likening comparison) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "liking is a kind of feeling", "pln": ["(: cnet_isa_a4e242776c (IsA liking feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "likuta is a kind of zairese monetary unit", "pln": ["(: cnet_isa_3e65afdd12 (IsA likuta zairese_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lilac is a kind of shrub", "pln": ["(: cnet_isa_c2ef89830b (IsA lilac shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lilangeni is a kind of swaziland monetary unit", "pln": ["(: cnet_isa_db63bed720 (IsA lilangeni swaziland_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liliaceae is a kind of liliid monocot family", "pln": ["(: cnet_isa_cea67b58b5 (IsA liliaceae liliid_monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liliaceous plant is a kind of bulbous plant", "pln": ["(: cnet_isa_1dd1d4959b (IsA liliaceous_plant bulbous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liliale is a kind of plant order", "pln": ["(: cnet_isa_40e06a718d (IsA liliale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liliid monocot family is a kind of monocot family", "pln": ["(: cnet_isa_356b14ce30 (IsA liliid_monocot_family monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liliid monocot genus is a kind of monocot genus", "pln": ["(: cnet_isa_144c792c03 (IsA liliid_monocot_genus monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liliidae is a kind of class", "pln": ["(: cnet_isa_8792a6e227 (IsA liliidae class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lilith is a kind of semitic deity", "pln": ["(: cnet_isa_1481090aa6 (IsA lilith semitic_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lilium is a kind of liliid monocot genus", "pln": ["(: cnet_isa_19b35528bc (IsA lilium liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lilliput is a kind of imaginary place", "pln": ["(: cnet_isa_ac138187c4 (IsA lilliput imaginary_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lilliputian is a kind of small person", "pln": ["(: cnet_isa_5c328ef6e0 (IsA lilliputian small_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lilt is a kind of rhythmicity", "pln": ["(: cnet_isa_241b1be61d (IsA lilt rhythmicity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lily is a kind of flower", "pln": ["(: cnet_isa_e7b3ec1cb6 (IsA lily flower) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lily is a kind of liliaceous plant", "pln": ["(: cnet_isa_eb49e5f2f2 (IsA lily liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lily of valley is a kind of liliaceous plant", "pln": ["(: cnet_isa_a64137341c (IsA lily_of_valley liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lily pad is a kind of pad", "pln": ["(: cnet_isa_ca17e947d2 (IsA lily_pad pad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lilyturf is a kind of liliaceous plant", "pln": ["(: cnet_isa_22f93fc2ff (IsA lilyturf liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lima bean is a kind of shell bean", "pln": ["(: cnet_isa_3d97367060 (IsA lima_bean shell_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limacidae is a kind of mollusk family", "pln": ["(: cnet_isa_1f841c947e (IsA limacidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liman is a kind of lagoon", "pln": ["(: cnet_isa_4a6af06b1d (IsA liman lagoon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limanda is a kind of fish genus", "pln": ["(: cnet_isa_01e0ccbb3e (IsA limanda fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limax is a kind of mollusk genus", "pln": ["(: cnet_isa_bef6f8528e (IsA limax mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limb is a kind of arc", "pln": ["(: cnet_isa_84342a7ca8 (IsA limb arc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limb is a kind of part", "pln": ["(: cnet_isa_d4ac26ab79 (IsA limb part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limb is a kind of edge", "pln": ["(: cnet_isa_4858b192ce (IsA limb edge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limb is a kind of extremity", "pln": ["(: cnet_isa_c7777db880 (IsA limb extremity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limb is a kind of branch", "pln": ["(: cnet_isa_15411e10ae (IsA limb branch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limb girdle muscular dystrophy is a kind of autosomal recessive disease", "pln": ["(: cnet_isa_869039f820 (IsA limb_girdle_muscular_dystrophy autosomal_recessive_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limb girdle muscular dystrophy is a kind of muscular dystrophy", "pln": ["(: cnet_isa_2580c9df59 (IsA limb_girdle_muscular_dystrophy muscular_dystrophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limber is a kind of horse drawn vehicle", "pln": ["(: cnet_isa_b5e461397f (IsA limber horse_drawn_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limber pine is a kind of white pine", "pln": ["(: cnet_isa_eff79c2f08 (IsA limber_pine white_pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limber is a kind of channel", "pln": ["(: cnet_isa_d7e0e4ff22 (IsA limber channel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limbic system is a kind of neural structure", "pln": ["(: cnet_isa_a45aa06a91 (IsA limbic_system neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limbo is a kind of imaginary place", "pln": ["(: cnet_isa_943108efa3 (IsA limbo imaginary_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limburger is a kind of cheese", "pln": ["(: cnet_isa_f5c50c9c04 (IsA limburger cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limbus is a kind of structure", "pln": ["(: cnet_isa_0c71f27324 (IsA limbus structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lime is a kind of citrus", "pln": ["(: cnet_isa_f1d8b46498 (IsA lime citrus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lime juice is a kind of juice", "pln": ["(: cnet_isa_ffcf63e54d (IsA lime_juice juice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limeade is a kind of fruit drink", "pln": ["(: cnet_isa_2a836b1230 (IsA limeade fruit_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limekiln is a kind of kiln", "pln": ["(: cnet_isa_57ea4e7f12 (IsA limekiln kiln) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limelight is a kind of lamp", "pln": ["(: cnet_isa_4c33dfaf7a (IsA limelight lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limelight is a kind of prominence", "pln": ["(: cnet_isa_d00df042ad (IsA limelight prominence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limenitis is a kind of arthropod genus", "pln": ["(: cnet_isa_9ec9b5c7fe (IsA limenitis arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limerick is a kind of verse", "pln": ["(: cnet_isa_c73470d628 (IsA limerick verse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "limestone is a kind of rock", "pln": ["(: cnet_isa_5fffdd7f6d (IsA limestone rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limestone is a kind of sedimentary rock", "pln": ["(: cnet_isa_218f67c59e (IsA limestone sedimentary_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limestone fern is a kind of fern", "pln": ["(: cnet_isa_4ea1f216d2 (IsA limestone_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limestone salamander is a kind of web toed salamander", "pln": ["(: cnet_isa_bd80c6b757 (IsA limestone_salamander web_toed_salamander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limewater is a kind of water", "pln": ["(: cnet_isa_4269780d83 (IsA limewater water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "limey is a kind of englishman", "pln": ["(: cnet_isa_88b96b01b0 (IsA limey englishman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limicolae is a kind of animal order", "pln": ["(: cnet_isa_486e239d96 (IsA limicolae animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limit is a kind of extent", "pln": ["(: cnet_isa_972d8ae71f (IsA limit extent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limit is a kind of boundary", "pln": ["(: cnet_isa_b4eb7fd295 (IsA limit boundary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limit is a kind of extremity", "pln": ["(: cnet_isa_d9400ed716 (IsA limit extremity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limit is a kind of indefinite quantity", "pln": ["(: cnet_isa_2d9f0179cd (IsA limit indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limitation is a kind of regulation", "pln": ["(: cnet_isa_9f1594e345 (IsA limitation regulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limitation is a kind of disadvantage", "pln": ["(: cnet_isa_f6f0399f93 (IsA limitation disadvantage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limitation is a kind of time limit", "pln": ["(: cnet_isa_14e168c39b (IsA limitation time_limit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limited audit is a kind of audited account", "pln": ["(: cnet_isa_1832412fa7 (IsA limited_audit audited_account) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "limited company is a kind of company", "pln": ["(: cnet_isa_9bdd73dae6 (IsA limited_company company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "limited edition is a kind of edition", "pln": ["(: cnet_isa_b85c6a0c54 (IsA limited_edition edition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "limnocryptes is a kind of bird genus", "pln": ["(: cnet_isa_abbadf895a (IsA limnocryptes bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limited liability is a kind of indebtedness", "pln": ["(: cnet_isa_b83e17de16 (IsA limited_liability indebtedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limited war is a kind of war", "pln": ["(: cnet_isa_a6fb6427b8 (IsA limited_war war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limiter is a kind of circuit", "pln": ["(: cnet_isa_477ed06e3e (IsA limiter circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limnobium is a kind of monocot genus", "pln": ["(: cnet_isa_1e29a0f4a3 (IsA limnobium monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limnocrypte is a kind of bird genus", "pln": ["(: cnet_isa_8e19c5c2d8 (IsA limnocrypte bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limnodromus is a kind of bird genus", "pln": ["(: cnet_isa_6c8db6d4b1 (IsA limnodromus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limnologist is a kind of specialist", "pln": ["(: cnet_isa_f9e93794db (IsA limnologist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limnology is a kind of earth science", "pln": ["(: cnet_isa_19c9f5f10e (IsA limnology earth_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limonene is a kind of terpene", "pln": ["(: cnet_isa_7f746d4166 (IsA limonene terpene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limonite is a kind of iron ore", "pln": ["(: cnet_isa_e3d0a39c9f (IsA limonite iron_ore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limonium is a kind of dicot genus", "pln": ["(: cnet_isa_b36094b5e5 (IsA limonium dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limosa is a kind of bird genus", "pln": ["(: cnet_isa_7007cac57a (IsA limosa bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limousine is a kind of automobile", "pln": ["(: cnet_isa_b29e105a35 (IsA limousine automobile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limousine is a kind of car", "pln": ["(: cnet_isa_71b1db1ab0 (IsA limousine car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limpa is a kind of rye bread", "pln": ["(: cnet_isa_0c98b6dcf3 (IsA limpa rye_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limpet is a kind of seasnail", "pln": ["(: cnet_isa_39da619c4b (IsA limpet seasnail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limpet is a kind of shellfish", "pln": ["(: cnet_isa_f8594637b6 (IsA limpet shellfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "limpkin is a kind of wading bird", "pln": ["(: cnet_isa_42d21d32c9 (IsA limpkin wading_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limulidae is a kind of arthropod family", "pln": ["(: cnet_isa_ab2556b960 (IsA limulidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "limulus is a kind of arthropod genus", "pln": ["(: cnet_isa_184ad7f6c6 (IsA limulus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linaceae is a kind of dicot family", "pln": ["(: cnet_isa_e6e815f784 (IsA linaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linage is a kind of rate", "pln": ["(: cnet_isa_1363dc0aec (IsA linage rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linage is a kind of number", "pln": ["(: cnet_isa_68b8190d20 (IsA linage number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linalool is a kind of essential oil", "pln": ["(: cnet_isa_de470ba71c (IsA linalool essential_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linanthus is a kind of plant genus", "pln": ["(: cnet_isa_190016e6e4 (IsA linanthus plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "linaria is a kind of asterid dicot genus", "pln": ["(: cnet_isa_08b2e2263b (IsA linaria asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linchpin is a kind of pin", "pln": ["(: cnet_isa_5b84ac831f (IsA linchpin pin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lincoln s birthday is a kind of day", "pln": ["(: cnet_isa_7cab99f942 (IsA lincoln_s_birthday day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lincoln is a kind of domestic sheep", "pln": ["(: cnet_isa_43881e3eaf (IsA lincoln domestic_sheep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lindane is a kind of insecticide", "pln": ["(: cnet_isa_339fcfa2ce (IsA lindane insecticide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linden is a kind of tree", "pln": ["(: cnet_isa_dd9ca8e3e9 (IsA linden tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lindera is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_eed10f3945 (IsA lindera magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lindheimera is a kind of asterid dicot genus", "pln": ["(: cnet_isa_1f1ecebe65 (IsA lindheimera asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lindy is a kind of social dancing", "pln": ["(: cnet_isa_7d06d7b662 (IsA lindy social_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line is a kind of imaginary connection between two point", "pln": ["(: cnet_isa_c9c1c57935 (IsA line imaginary_connection_between_two_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line is a kind of conformity", "pln": ["(: cnet_isa_c70ab9072b (IsA line conformity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line is a kind of artifact", "pln": ["(: cnet_isa_dd2a2d5b98 (IsA line artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line is a kind of carrier", "pln": ["(: cnet_isa_722a729e72 (IsA line carrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "line is a kind of merchandise", "pln": ["(: cnet_isa_558079865c (IsA line merchandise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line is a kind of road", "pln": ["(: cnet_isa_0e54bcff6f (IsA line road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line is a kind of woman s clothing", "pln": ["(: cnet_isa_9336f7cb3d (IsA line woman_s_clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line is a kind of differentiation", "pln": ["(: cnet_isa_5217113a78 (IsA line differentiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "line is a kind of mark", "pln": ["(: cnet_isa_45091abd7c (IsA line mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line is a kind of persuasion", "pln": ["(: cnet_isa_2928625a31 (IsA line persuasion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line is a kind of text", "pln": ["(: cnet_isa_175be567e7 (IsA line text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line is a kind of formation", "pln": ["(: cnet_isa_8c3acafb0e (IsA line formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line is a kind of location", "pln": ["(: cnet_isa_bfa02f47b2 (IsA line location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line is a kind of military position", "pln": ["(: cnet_isa_969d887be9 (IsA line military_position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line is a kind of electromagnetic radiation", "pln": ["(: cnet_isa_b31875608b (IsA line electromagnetic_radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line is a kind of shape", "pln": ["(: cnet_isa_30915ea51c (IsA line shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line coach is a kind of football coach", "pln": ["(: cnet_isa_05b2d91274 (IsA line_coach football_coach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line drive double is a kind of double", "pln": ["(: cnet_isa_90742b4c8e (IsA line_drive_double double) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line drive single is a kind of single", "pln": ["(: cnet_isa_a20e5c158b (IsA line_drive_single single) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line drive triple is a kind of triple", "pln": ["(: cnet_isa_44f5cc5b3f (IsA line_drive_triple triple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line feed is a kind of printing operation", "pln": ["(: cnet_isa_0cf1056c66 (IsA line_feed printing_operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line item is a kind of item", "pln": ["(: cnet_isa_403e18c6f0 (IsA line_item item) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line judge is a kind of football official", "pln": ["(: cnet_isa_c5f0f278a0 (IsA line_judge football_official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line management is a kind of administration", "pln": ["(: cnet_isa_4362af515c (IsA line_management administration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line of battle is a kind of line", "pln": ["(: cnet_isa_5744e998f4 (IsA line_of_battle line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line of defense is a kind of defensive structure", "pln": ["(: cnet_isa_0471304a5f (IsA line_of_defense defensive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "line of defense is a kind of organization", "pln": ["(: cnet_isa_0c6d4f7ddb (IsA line_of_defense organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "line of duty is a kind of duty", "pln": ["(: cnet_isa_23cd4f3d17 (IsA line_of_duty duty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line of fate is a kind of wrinkle", "pln": ["(: cnet_isa_f3cab9cb93 (IsA line_of_fate wrinkle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line of fire is a kind of path", "pln": ["(: cnet_isa_3a50359509 (IsA line_of_fire path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line of flight is a kind of path", "pln": ["(: cnet_isa_9e248f0716 (IsA line_of_flight path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line of force is a kind of line", "pln": ["(: cnet_isa_30dace1367 (IsA line_of_force line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line of heart is a kind of wrinkle", "pln": ["(: cnet_isa_6b1d2b213b (IsA line_of_heart wrinkle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line of inquiry is a kind of argumentation", "pln": ["(: cnet_isa_be64541157 (IsA line_of_inquiry argumentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "line of least resistance is a kind of fashion", "pln": ["(: cnet_isa_d2fee1b900 (IsA line_of_least_resistance fashion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line of life is a kind of wrinkle", "pln": ["(: cnet_isa_5433df9b0c (IsA line_of_life wrinkle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "line of march is a kind of line", "pln": ["(: cnet_isa_59d8821251 (IsA line_of_march line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line of march is a kind of path", "pln": ["(: cnet_isa_783e2f4116 (IsA line_of_march path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line of poetry is a kind of line", "pln": ["(: cnet_isa_6a7ca5934e (IsA line_of_poetry line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line of sight is a kind of line", "pln": ["(: cnet_isa_2fce0b4744 (IsA line_of_sight line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line of succession is a kind of line", "pln": ["(: cnet_isa_924b868850 (IsA line_of_succession line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line of thought is a kind of thinking", "pln": ["(: cnet_isa_33315ca225 (IsA line_of_thought thinking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line officer is a kind of commissioned officer", "pln": ["(: cnet_isa_c6b75b457a (IsA line_officer commissioned_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line organization is a kind of organization", "pln": ["(: cnet_isa_6544e39d1c (IsA line_organization organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line personnel is a kind of force", "pln": ["(: cnet_isa_1703e641b9 (IsA line_personnel force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line printer is a kind of printer", "pln": ["(: cnet_isa_5747c385bd (IsA line_printer printer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line score is a kind of summary", "pln": ["(: cnet_isa_28a3de69c8 (IsA line_score summary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line spectrum is a kind of spectrum", "pln": ["(: cnet_isa_1dafa57226 (IsA line_spectrum spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line squall is a kind of squall", "pln": ["(: cnet_isa_6ca99cdcd4 (IsA line_squall squall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line storm is a kind of rainstorm", "pln": ["(: cnet_isa_f59fcd2cab (IsA line_storm rainstorm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "line worker is a kind of employee", "pln": ["(: cnet_isa_134cb84391 (IsA line_worker employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lineage is a kind of genealogy", "pln": ["(: cnet_isa_dce4151f12 (IsA lineage genealogy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linear accelerator is a kind of accelerator", "pln": ["(: cnet_isa_9c1df597e0 (IsA linear_accelerator accelerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linear algebra is a kind of algebra", "pln": ["(: cnet_isa_dcb5ea84c2 (IsA linear_algebra algebra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "linear equation is a kind of equation", "pln": ["(: cnet_isa_4336042567 (IsA linear_equation equation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linear leaf is a kind of simple leaf", "pln": ["(: cnet_isa_7149ee0dd6 (IsA linear_leaf simple_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linear operator is a kind of operator", "pln": ["(: cnet_isa_7f80291835 (IsA linear_operator operator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linear programming is a kind of applied mathematic", "pln": ["(: cnet_isa_7902eb17fc (IsA linear_programming applied_mathematic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "linear regression is a kind of regression", "pln": ["(: cnet_isa_0edbe3e194 (IsA linear_regression regression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linear unit is a kind of unit of measurement", "pln": ["(: cnet_isa_45e63e6053 (IsA linear_unit unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lineation is a kind of marking", "pln": ["(: cnet_isa_3dff519566 (IsA lineation marking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linebacker is a kind of back", "pln": ["(: cnet_isa_26b2deb5ac (IsA linebacker back) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "linebacker is a kind of football player", "pln": ["(: cnet_isa_286ddb2ea7 (IsA linebacker football_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linecut is a kind of engraving", "pln": ["(: cnet_isa_afc368f26f (IsA linecut engraving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lined snake is a kind of colubrid snake", "pln": ["(: cnet_isa_2bbd627bb7 (IsA lined_snake colubrid_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lineman is a kind of position", "pln": ["(: cnet_isa_1fa08b7901 (IsA lineman position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lineman is a kind of football player", "pln": ["(: cnet_isa_ddb92c0274 (IsA lineman football_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lineman is a kind of surveyor", "pln": ["(: cnet_isa_6cc9af3586 (IsA lineman surveyor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linemen is a kind of line", "pln": ["(: cnet_isa_43be620706 (IsA linemen line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linen is a kind of cloth", "pln": ["(: cnet_isa_4d2cfa21e0 (IsA linen cloth) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linen is a kind of fabric", "pln": ["(: cnet_isa_5a95a33181 (IsA linen fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linen is a kind of white good", "pln": ["(: cnet_isa_3626dbdd08 (IsA linen white_good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linen is a kind of paper", "pln": ["(: cnet_isa_746b43418d (IsA linen paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linendraper is a kind of draper", "pln": ["(: cnet_isa_e74d422f52 (IsA linendraper draper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liner is a kind of passenger ship", "pln": ["(: cnet_isa_b09a262cc5 (IsA liner passenger_ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liner is a kind of piece of cloth", "pln": ["(: cnet_isa_9ef6b1184a (IsA liner piece_of_cloth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liner is a kind of fly", "pln": ["(: cnet_isa_5edb622a1c (IsA liner fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linesman is a kind of official", "pln": ["(: cnet_isa_a170d064ba (IsA linesman official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lineup is a kind of network programming", "pln": ["(: cnet_isa_165e439aa8 (IsA lineup network_programming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lineup is a kind of line", "pln": ["(: cnet_isa_7afbe7c95f (IsA lineup line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ling is a kind of gadoid", "pln": ["(: cnet_isa_e2d40c702b (IsA ling gadoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ling is a kind of hake", "pln": ["(: cnet_isa_04fc94acab (IsA ling hake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ling is a kind of water chestnut", "pln": ["(: cnet_isa_c714d23263 (IsA ling water_chestnut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lingam is a kind of symbol", "pln": ["(: cnet_isa_5618cebfb9 (IsA lingam symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lingcod is a kind of scorpaenoid", "pln": ["(: cnet_isa_7413d140c4 (IsA lingcod scorpaenoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lingcod is a kind of saltwater fish", "pln": ["(: cnet_isa_73f4b255a6 (IsA lingcod saltwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lingerie is a kind of underwear", "pln": ["(: cnet_isa_f4ba1b7d84 (IsA lingerie underwear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lingonberry is a kind of berry", "pln": ["(: cnet_isa_32e679f16d (IsA lingonberry berry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lingua franca is a kind of language", "pln": ["(: cnet_isa_3b890b35e7 (IsA lingua_franca language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lingual is a kind of consonant", "pln": ["(: cnet_isa_bc0a365ad9 (IsA lingual consonant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lingual artery is a kind of artery", "pln": ["(: cnet_isa_0d7ffd4cc4 (IsA lingual_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lingual vein is a kind of vein", "pln": ["(: cnet_isa_015a4d555c (IsA lingual_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lingualumina is a kind of artificial language", "pln": ["(: cnet_isa_edfc3ac945 (IsA lingualumina artificial_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linguica is a kind of pork sausage", "pln": ["(: cnet_isa_d2bd2e0224 (IsA linguica pork_sausage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linguine is a kind of pasta", "pln": ["(: cnet_isa_fe6a45bfd0 (IsA linguine pasta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linguist is a kind of person", "pln": ["(: cnet_isa_b2c7c6a267 (IsA linguist person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linguist is a kind of scientist", "pln": ["(: cnet_isa_7f766446a4 (IsA linguist scientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linguistic competence is a kind of competence", "pln": ["(: cnet_isa_e51703761d (IsA linguistic_competence competence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linguistic performance is a kind of performance", "pln": ["(: cnet_isa_9404ecf7f0 (IsA linguistic_performance performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linguistic process is a kind of higher cognitive process", "pln": ["(: cnet_isa_e3cc4405d7 (IsA linguistic_process higher_cognitive_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linguistic process is a kind of human process", "pln": ["(: cnet_isa_9e14cd2116 (IsA linguistic_process human_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linguistic profiling is a kind of identification", "pln": ["(: cnet_isa_cc993a31a6 (IsA linguistic_profiling identification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linguistic relation is a kind of relation", "pln": ["(: cnet_isa_7993fa3978 (IsA linguistic_relation relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linguistic universal is a kind of rule", "pln": ["(: cnet_isa_235b869a01 (IsA linguistic_universal rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linguistic is a kind of humanistic discipline", "pln": ["(: cnet_isa_7281997713 (IsA linguistic humanistic_discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linguistic is a kind of science", "pln": ["(: cnet_isa_3fb158bc6a (IsA linguistic science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linguistic department is a kind of academic department", "pln": ["(: cnet_isa_793b687932 (IsA linguistic_department academic_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lingvo kosmopolita is a kind of artificial language", "pln": ["(: cnet_isa_f1a765149b (IsA lingvo_kosmopolita artificial_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liniment is a kind of lotion", "pln": ["(: cnet_isa_09bc1a0689 (IsA liniment lotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linin is a kind of body substance", "pln": ["(: cnet_isa_5db5b48715 (IsA linin body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lining is a kind of application", "pln": ["(: cnet_isa_c6e9e5c169 (IsA lining application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lining is a kind of insulation", "pln": ["(: cnet_isa_c867056469 (IsA lining insulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lining is a kind of protective covering", "pln": ["(: cnet_isa_1668063a03 (IsA lining protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "link is a kind of circuit", "pln": ["(: cnet_isa_a5da9df860 (IsA link circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "link is a kind of fastener", "pln": ["(: cnet_isa_5f87900efd (IsA link fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "link is a kind of linkage", "pln": ["(: cnet_isa_325bff46ba (IsA link linkage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "link is a kind of instruction", "pln": ["(: cnet_isa_5f15d152b0 (IsA link instruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "link is a kind of linear unit", "pln": ["(: cnet_isa_648a8ed309 (IsA link linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linkage is a kind of fastening", "pln": ["(: cnet_isa_98e5ac3cb7 (IsA linkage fastening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linkage is a kind of mechanical system", "pln": ["(: cnet_isa_7fef47d750 (IsA linkage mechanical_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linkage is a kind of inheritance", "pln": ["(: cnet_isa_26eeda3169 (IsA linkage inheritance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linkage is a kind of connection", "pln": ["(: cnet_isa_88793db177 (IsA linkage connection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linkage editor is a kind of editor program", "pln": ["(: cnet_isa_f9306d6c8d (IsA linkage_editor editor_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linkage group is a kind of gene", "pln": ["(: cnet_isa_295ac427a1 (IsA linkage_group gene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "linkboy is a kind of attendant", "pln": ["(: cnet_isa_576d4592d6 (IsA linkboy attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linnaea is a kind of asterid dicot genus", "pln": ["(: cnet_isa_cd7a7ed759 (IsA linnaea asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linnet is a kind of finch", "pln": ["(: cnet_isa_8956993287 (IsA linnet finch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linocut is a kind of design", "pln": ["(: cnet_isa_e04c12bcf8 (IsA linocut design) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linocut is a kind of print", "pln": ["(: cnet_isa_acada0b550 (IsA linocut print) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "linoleic acid is a kind of polyunsaturated fatty acid", "pln": ["(: cnet_isa_6d71865ba0 (IsA linoleic_acid polyunsaturated_fatty_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linolenic acid is a kind of omega 6 fatty acid", "pln": ["(: cnet_isa_68bfeb8649 (IsA linolenic_acid omega_6_fatty_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linoleum is a kind of covering material", "pln": ["(: cnet_isa_5e91d40825 (IsA linoleum covering_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linoleum knife is a kind of knife", "pln": ["(: cnet_isa_fbc07e0288 (IsA linoleum_knife knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linseed is a kind of oilseed", "pln": ["(: cnet_isa_f880769fdd (IsA linseed oilseed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linseed oil is a kind of oil", "pln": ["(: cnet_isa_53132ebf92 (IsA linseed_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linsey woolsey is a kind of fabric", "pln": ["(: cnet_isa_fe1f4c1dc8 (IsA linsey_woolsey fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linstock is a kind of stick", "pln": ["(: cnet_isa_9d3339110b (IsA linstock stick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lint is a kind of fabric", "pln": ["(: cnet_isa_d23104517e (IsA lint fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lint is a kind of fiber", "pln": ["(: cnet_isa_8042d94300 (IsA lint fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linum is a kind of plant genus", "pln": ["(: cnet_isa_96a357e0e4 (IsA linum plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linuron is a kind of herbicide", "pln": ["(: cnet_isa_ae17deea60 (IsA linuron herbicide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linux is a kind of open source operating system", "pln": ["(: cnet_isa_7905e295d9 (IsA linux open_source_operating_system) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linux is a kind of operating system", "pln": ["(: cnet_isa_240db6b9be (IsA linux operating_system) (STV 1.0 0.9844))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "linux journal is a kind of magazine", "pln": ["(: cnet_isa_58815bcd91 (IsA linux_journal magazine) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liomy is a kind of mammal genus", "pln": ["(: cnet_isa_555c4fe742 (IsA liomy mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lion s ear is a kind of herb", "pln": ["(: cnet_isa_df3e8c82b8 (IsA lion_s_ear herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lion s foot is a kind of herb", "pln": ["(: cnet_isa_b6d2dc750a (IsA lion_s_foot herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lion is a kind of animal", "pln": ["(: cnet_isa_26f34213bd (IsA lion animal) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lion is a kind of carnivore", "pln": ["(: cnet_isa_69abe6be6c (IsA lion carnivore) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lion is a kind of big cat", "pln": ["(: cnet_isa_c34dbd2909 (IsA lion big_cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lion is a kind of person", "pln": ["(: cnet_isa_1efa23e902 (IsA lion person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lion is a kind of celebrity", "pln": ["(: cnet_isa_5539b406ca (IsA lion celebrity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lion cub is a kind of cub", "pln": ["(: cnet_isa_eceda827b0 (IsA lion_cub cub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lion cub is a kind of lion", "pln": ["(: cnet_isa_cdd237bbab (IsA lion_cub lion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lion hunter is a kind of hunter", "pln": ["(: cnet_isa_9cc2ce81aa (IsA lion_hunter hunter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lion hunter is a kind of social climber", "pln": ["(: cnet_isa_b7b286b4fe (IsA lion_hunter social_climber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "lions club is a kind of service club", "pln": ["(: cnet_isa_417f4b44bc (IsA lions_club service_club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lion jaw forcep is a kind of forcep", "pln": ["(: cnet_isa_bada650a10 (IsA lion_jaw_forcep forcep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lioness is a kind of lion", "pln": ["(: cnet_isa_fe0ad117ad (IsA lioness lion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lionet is a kind of lion", "pln": ["(: cnet_isa_cd1ebd101e (IsA lionet lion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lionfish is a kind of scorpaenid", "pln": ["(: cnet_isa_a22b11d7e5 (IsA lionfish scorpaenid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lion is a kind of wild animal", "pln": ["(: cnet_isa_07b17ddd17 (IsA lion wild_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lion club is a kind of service club", "pln": ["(: cnet_isa_347d7fbf60 (IsA lion_club service_club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liopelma hamiltoni is a kind of frog", "pln": ["(: cnet_isa_afb6296ce2 (IsA liopelma_hamiltoni frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lip is a kind of margin", "pln": ["(: cnet_isa_9df2c17389 (IsA lip margin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lip is a kind of articulator", "pln": ["(: cnet_isa_0db3b90c57 (IsA lip articulator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lip is a kind of external body part", "pln": ["(: cnet_isa_d00eeae681 (IsA lip external_body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lip is a kind of plant part", "pln": ["(: cnet_isa_56b61f07c8 (IsA lip plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lip balm is a kind of ointment", "pln": ["(: cnet_isa_d736777377 (IsA lip_balm ointment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lip fern is a kind of fern", "pln": ["(: cnet_isa_27af8d5749 (IsA lip_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lip gloss is a kind of makeup", "pln": ["(: cnet_isa_3eeeec7aa3 (IsA lip_gloss makeup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lip reader is a kind of deaf person", "pln": ["(: cnet_isa_891965ecd6 (IsA lip_reader deaf_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lip synchronization is a kind of recording", "pln": ["(: cnet_isa_3406f9a23c (IsA lip_synchronization recording) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "liparididae is a kind of fish family", "pln": ["(: cnet_isa_e7e841258d (IsA liparididae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liparis is a kind of fish genus", "pln": ["(: cnet_isa_d4492e6e9d (IsA liparis fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liparis is a kind of orchid", "pln": ["(: cnet_isa_d5e5ef6cda (IsA liparis orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lipase is a kind of enzyme", "pln": ["(: cnet_isa_5d36373e74 (IsA lipase enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lipectomy is a kind of plastic surgery", "pln": ["(: cnet_isa_0a65e66591 (IsA lipectomy plastic_surgery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lipemia is a kind of symptom", "pln": ["(: cnet_isa_27b1527ecc (IsA lipemia symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lipid is a kind of macromolecule", "pln": ["(: cnet_isa_4adcca4f5e (IsA lipid macromolecule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lipid lowering medicine is a kind of medicine", "pln": ["(: cnet_isa_cb4da5bfff (IsA lipid_lowering_medicine medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lipidosis is a kind of metabolic disorder", "pln": ["(: cnet_isa_fd18d8049d (IsA lipidosis metabolic_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lipogram is a kind of text", "pln": ["(: cnet_isa_f80716d540 (IsA lipogram text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lipoma is a kind of tumor", "pln": ["(: cnet_isa_b7089b3d4b (IsA lipoma tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lipomatosis is a kind of pathology", "pln": ["(: cnet_isa_0411c14266 (IsA lipomatosis pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lipoprotein is a kind of conjugated protein", "pln": ["(: cnet_isa_268f17c133 (IsA lipoprotein conjugated_protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "liposarcoma is a kind of sarcoma", "pln": ["(: cnet_isa_7f2489d20e (IsA liposarcoma sarcoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liposcelis is a kind of arthropod genus", "pln": ["(: cnet_isa_1911d5ecc8 (IsA liposcelis arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liposomal delivery vector is a kind of transducing vector", "pln": ["(: cnet_isa_3cc5460959 (IsA liposomal_delivery_vector transducing_vector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liposome is a kind of vesicle", "pln": ["(: cnet_isa_ef755ebeb8 (IsA liposome vesicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lipotyphla is a kind of animal order", "pln": ["(: cnet_isa_eaeaaee364 (IsA lipotyphla animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lippizan is a kind of saddle horse", "pln": ["(: cnet_isa_1f767af632 (IsA lippizan saddle_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lipreading is a kind of sensing", "pln": ["(: cnet_isa_78c22d1039 (IsA lipreading sensing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lip is a kind of important part of mouth", "pln": ["(: cnet_isa_74d98efc76 (IsA lip important_part_of_mouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lipstick is a kind of makeup", "pln": ["(: cnet_isa_4e45ef357d (IsA lipstick makeup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lipstick plant is a kind of aeschynanthus", "pln": ["(: cnet_isa_1071155d90 (IsA lipstick_plant aeschynanthus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liquefaction is a kind of phase change", "pln": ["(: cnet_isa_5ea86effc0 (IsA liquefaction phase_change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liquefied petroleum gas is a kind of gas", "pln": ["(: cnet_isa_5ebf732eee (IsA liquefied_petroleum_gas gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liquefied petroleum gas is a kind of hydrocarbon", "pln": ["(: cnet_isa_402b11c2a8 (IsA liquefied_petroleum_gas hydrocarbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liqueur is a kind of alcohol", "pln": ["(: cnet_isa_e985334837 (IsA liqueur alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liqueur glass is a kind of glass", "pln": ["(: cnet_isa_81f54bf215 (IsA liqueur_glass glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liquid is a kind of state of matter", "pln": ["(: cnet_isa_46b24e8d22 (IsA liquid state_of_matter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liquid is a kind of substance", "pln": ["(: cnet_isa_36a2d59888 (IsA liquid substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liquid is a kind of consonant", "pln": ["(: cnet_isa_ffed7b0e2e (IsA liquid consonant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liquid is a kind of fluid", "pln": ["(: cnet_isa_f923a4a110 (IsA liquid fluid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liquid air is a kind of air", "pln": ["(: cnet_isa_f63beefcf9 (IsA liquid_air air) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liquid air is a kind of cryogen", "pln": ["(: cnet_isa_bbe50eb173 (IsA liquid_air cryogen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liquid asset is a kind of asset", "pln": ["(: cnet_isa_a96ac99329 (IsA liquid_asset asset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liquid bleach is a kind of solution", "pln": ["(: cnet_isa_e64eac964e (IsA liquid_bleach solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liquid body substance is a kind of body substance", "pln": ["(: cnet_isa_e24bac872b (IsA liquid_body_substance body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liquid crystal is a kind of liquid", "pln": ["(: cnet_isa_096712ac38 (IsA liquid_crystal liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liquid crystal display is a kind of digital display", "pln": ["(: cnet_isa_94a43b3d5c (IsA liquid_crystal_display digital_display) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liquid detergent is a kind of detergent", "pln": ["(: cnet_isa_0fe33d6448 (IsA liquid_detergent detergent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liquid diet is a kind of diet", "pln": ["(: cnet_isa_d245ab8231 (IsA liquid_diet diet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liquid metal reactor is a kind of nuclear reactor", "pln": ["(: cnet_isa_db6bd8b16f (IsA liquid_metal_reactor nuclear_reactor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "liquid nitrogen is a kind of cryogen", "pln": ["(: cnet_isa_9382cf4b12 (IsA liquid_nitrogen cryogen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liquid nitrogen is a kind of nitrogen", "pln": ["(: cnet_isa_265fa1473b (IsA liquid_nitrogen nitrogen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liquid oxygen is a kind of oxygen", "pln": ["(: cnet_isa_c2aa814b67 (IsA liquid_oxygen oxygen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liquid soap is a kind of soap", "pln": ["(: cnet_isa_89001fa481 (IsA liquid_soap soap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liquid unit is a kind of volume unit", "pln": ["(: cnet_isa_90e73807f7 (IsA liquid_unit volume_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liquidambar is a kind of gum tree", "pln": ["(: cnet_isa_74f9d2446c (IsA liquidambar gum_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liquidation is a kind of termination", "pln": ["(: cnet_isa_9769d42760 (IsA liquidation termination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liquidator is a kind of fiduciary", "pln": ["(: cnet_isa_dfa4ebb370 (IsA liquidator fiduciary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liquidity is a kind of exchangeability", "pln": ["(: cnet_isa_a786e86c79 (IsA liquidity exchangeability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liquor is a kind of alcohol", "pln": ["(: cnet_isa_a33b59852d (IsA liquor alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liquor is a kind of broth", "pln": ["(: cnet_isa_520470ca25 (IsA liquor broth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liquor is a kind of liquid", "pln": ["(: cnet_isa_77435a23f1 (IsA liquor liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liquor license is a kind of license", "pln": ["(: cnet_isa_141d580cf8 (IsA liquor_license license) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lira is a kind of italian monetary unit", "pln": ["(: cnet_isa_a5896d7b84 (IsA lira italian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lira is a kind of maltese monetary unit", "pln": ["(: cnet_isa_d3342bd0bc (IsA lira maltese_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lira is a kind of turkish monetary unit", "pln": ["(: cnet_isa_1ddd65ff36 (IsA lira turkish_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liriodendron is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_73e8afbfda (IsA liriodendron magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liriope is a kind of liliid monocot genus", "pln": ["(: cnet_isa_c9cd7db466 (IsA liriope liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lis penden is a kind of legal action", "pln": ["(: cnet_isa_0c53b3461f (IsA lis_penden legal_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lisa is a kind of girl name", "pln": ["(: cnet_isa_66258b2188 (IsA lisa girl_name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lisle is a kind of cotton", "pln": ["(: cnet_isa_caf7ae28de (IsA lisle cotton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lisle is a kind of fabric", "pln": ["(: cnet_isa_47e5b2f907 (IsA lisle fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lisp is a kind of functional programming language", "pln": ["(: cnet_isa_58f20644a6 (IsA lisp functional_programming_language) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lisp is a kind of programming language", "pln": ["(: cnet_isa_af8d066ad5 (IsA lisp programming_language) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lisp is a kind of speech disorder", "pln": ["(: cnet_isa_cda047b45a (IsA lisp speech_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lisp compiler is a kind of compiler", "pln": ["(: cnet_isa_4cfcdbdb56 (IsA lisp_compiler compiler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lisp program is a kind of program", "pln": ["(: cnet_isa_f5ea46035c (IsA lisp_program program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lisper is a kind of speaker", "pln": ["(: cnet_isa_4944571858 (IsA lisper speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lissomeness is a kind of gracefulness", "pln": ["(: cnet_isa_e264fb8922 (IsA lissomeness gracefulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "list is a kind of database", "pln": ["(: cnet_isa_5de087a141 (IsA list database) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "list is a kind of list", "pln": ["(: cnet_isa_f82fba2b5e (IsA list list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "list price is a kind of asking price", "pln": ["(: cnet_isa_d6f6524588 (IsA list_price asking_price) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "list processing is a kind of data processing", "pln": ["(: cnet_isa_92190780e6 (IsA list_processing data_processing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "list system is a kind of voting system", "pln": ["(: cnet_isa_1d0dfb260c (IsA list_system voting_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "listed security is a kind of security", "pln": ["(: cnet_isa_fa6cf50cd8 (IsA listed_security security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "listening is a kind of activity", "pln": ["(: cnet_isa_e700c8344c (IsA listening activity) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "listening is a kind of sensing", "pln": ["(: cnet_isa_58713a0ca0 (IsA listening sensing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "listening watch is a kind of watch", "pln": ["(: cnet_isa_459e9e97ef (IsA listening_watch watch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lister is a kind of moldboard plow", "pln": ["(: cnet_isa_5549089cf8 (IsA lister moldboard_plow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lister is a kind of tax assessor", "pln": ["(: cnet_isa_1d6742d3ad (IsA lister tax_assessor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "listera is a kind of monocot genus", "pln": ["(: cnet_isa_9beaab0856 (IsA listera monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "listeria is a kind of eubacteria", "pln": ["(: cnet_isa_3dfed4002e (IsA listeria eubacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "listeria monocytogene is a kind of listeria", "pln": ["(: cnet_isa_1cc28afcb5 (IsA listeria_monocytogene listeria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "listeriosis is a kind of infectious disease", "pln": ["(: cnet_isa_b5d90055fb (IsA listeriosis infectious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "listing is a kind of organization", "pln": ["(: cnet_isa_5ee02be831 (IsA listing organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "listlessness is a kind of passivity", "pln": ["(: cnet_isa_8423db7108 (IsA listlessness passivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lisu is a kind of loloish", "pln": ["(: cnet_isa_b93eab5404 (IsA lisu loloish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "litany is a kind of address", "pln": ["(: cnet_isa_88efd7f097 (IsA litany address) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lita is a kind of lithuanian monetary unit", "pln": ["(: cnet_isa_462b3b34cf (IsA lita lithuanian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "litchi is a kind of edible fruit", "pln": ["(: cnet_isa_81cd6904cb (IsA litchi edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "litchi is a kind of fruit tree", "pln": ["(: cnet_isa_d3bd8b5813 (IsA litchi fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liter is a kind of metric measurement", "pln": ["(: cnet_isa_2cf5174c4e (IsA liter metric_measurement) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "liter is a kind of metric capacity unit", "pln": ["(: cnet_isa_4fd9923260 (IsA liter metric_capacity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "literacy is a kind of skill", "pln": ["(: cnet_isa_06e49774ba (IsA literacy skill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "literal interpretation is a kind of interpretation", "pln": ["(: cnet_isa_44e8c8db16 (IsA literal_interpretation interpretation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "literalism is a kind of doctrine", "pln": ["(: cnet_isa_95caddd03c (IsA literalism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "literalism is a kind of inclination", "pln": ["(: cnet_isa_e729173c2b (IsA literalism inclination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "literalness is a kind of concreteness", "pln": ["(: cnet_isa_1bab82f0c6 (IsA literalness concreteness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "literary agent is a kind of agent", "pln": ["(: cnet_isa_14ec4c3187 (IsA literary_agent agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "literary composition is a kind of writing", "pln": ["(: cnet_isa_0a5b8cf036 (IsA literary_composition writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "literary critic is a kind of critic", "pln": ["(: cnet_isa_2d7fee834f (IsA literary_critic critic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "literary criticism is a kind of literary study", "pln": ["(: cnet_isa_aa4a915706 (IsA literary_criticism literary_study) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "literary review is a kind of review", "pln": ["(: cnet_isa_01e992e0f7 (IsA literary_review review) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "literary study is a kind of humanistic discipline", "pln": ["(: cnet_isa_6681a04202 (IsA literary_study humanistic_discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "literate is a kind of person", "pln": ["(: cnet_isa_989b7848d6 (IsA literate person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "literati is a kind of intelligentsia", "pln": ["(: cnet_isa_bf57a5b90a (IsA literati intelligentsia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "literature is a kind of written text", "pln": ["(: cnet_isa_369c8d2be0 (IsA literature written_text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "literature is a kind of writing", "pln": ["(: cnet_isa_e756345e5f (IsA literature writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "literature is a kind of literary study", "pln": ["(: cnet_isa_837b79e931 (IsA literature literary_study) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "literature is a kind of profession", "pln": ["(: cnet_isa_01ba9d887b (IsA literature profession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lithia water is a kind of mineral water", "pln": ["(: cnet_isa_2c869c0e54 (IsA lithia_water mineral_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lithiasis is a kind of pathology", "pln": ["(: cnet_isa_e742c79529 (IsA lithiasis pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lithium is a kind of metallic element", "pln": ["(: cnet_isa_619d0e5087 (IsA lithium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lithium carbonate is a kind of carbonate", "pln": ["(: cnet_isa_759c1d514a (IsA lithium_carbonate carbonate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lithium carbonate is a kind of major tranquilizer", "pln": ["(: cnet_isa_5c6b0597f1 (IsA lithium_carbonate major_tranquilizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lithocarpus is a kind of hamamelid dicot genus", "pln": ["(: cnet_isa_169c5f6173 (IsA lithocarpus hamamelid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lithodidae is a kind of arthropod family", "pln": ["(: cnet_isa_3ae11ac277 (IsA lithodidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lithograph is a kind of duplicator", "pln": ["(: cnet_isa_c433f7db35 (IsA lithograph duplicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lithograph is a kind of print", "pln": ["(: cnet_isa_63dcbd701d (IsA lithograph print) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lithographer is a kind of printmaker", "pln": ["(: cnet_isa_d90edfd684 (IsA lithographer printmaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lithography is a kind of printmaking", "pln": ["(: cnet_isa_eb342554b2 (IsA lithography printmaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lithography is a kind of planographic printing", "pln": ["(: cnet_isa_3abb1f4398 (IsA lithography planographic_printing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lithomancer is a kind of diviner", "pln": ["(: cnet_isa_f4f75201c8 (IsA lithomancer diviner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lithomancy is a kind of divination", "pln": ["(: cnet_isa_5cf3743519 (IsA lithomancy divination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lithophragma is a kind of rosid dicot genus", "pln": ["(: cnet_isa_8b778b3bfe (IsA lithophragma rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lithophyte is a kind of rock plant", "pln": ["(: cnet_isa_b1ded2a44b (IsA lithophyte rock_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lithop is a kind of succulent", "pln": ["(: cnet_isa_a8551b8f12 (IsA lithop succulent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lithospermum is a kind of plant genus", "pln": ["(: cnet_isa_31326bc72b (IsA lithospermum plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lithosphere is a kind of layer", "pln": ["(: cnet_isa_02267fc0a8 (IsA lithosphere layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lithotomy is a kind of ablation", "pln": ["(: cnet_isa_d149b4afba (IsA lithotomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lithotomy position is a kind of position", "pln": ["(: cnet_isa_babca8a032 (IsA lithotomy_position position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lithuanian is a kind of baltic", "pln": ["(: cnet_isa_f952abd199 (IsA lithuanian baltic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lithuanian is a kind of european", "pln": ["(: cnet_isa_c599a06926 (IsA lithuanian european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lithuanian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_7c07b883e0 (IsA lithuanian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lithuresis is a kind of micturition", "pln": ["(: cnet_isa_0f840eef41 (IsA lithuresis micturition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "litigant is a kind of party", "pln": ["(: cnet_isa_e681aeddb2 (IsA litigant party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "litigation is a kind of proceeding", "pln": ["(: cnet_isa_8c1b8db4fe (IsA litigation proceeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "litigiousness is a kind of contentiousness", "pln": ["(: cnet_isa_750018236c (IsA litigiousness contentiousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "litmus is a kind of acid base indicator", "pln": ["(: cnet_isa_39cbf95b97 (IsA litmus acid_base_indicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "litmus paper is a kind of paper", "pln": ["(: cnet_isa_75b6705478 (IsA litmus_paper paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "litmus test is a kind of examination", "pln": ["(: cnet_isa_c24d2eb3a1 (IsA litmus_test examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "litocranius is a kind of mammal genus", "pln": ["(: cnet_isa_4dafb68202 (IsA litocranius mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "litote is a kind of rhetorical device", "pln": ["(: cnet_isa_fd1e0317fe (IsA litote rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "litote is a kind of understatement", "pln": ["(: cnet_isa_7103fd1cbe (IsA litote understatement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "litter is a kind of conveyance", "pln": ["(: cnet_isa_4835398b9c (IsA litter conveyance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "litter is a kind of animal group", "pln": ["(: cnet_isa_096f23afeb (IsA litter animal_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "litter is a kind of rubbish", "pln": ["(: cnet_isa_77807aa162 (IsA litter rubbish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "litterbin is a kind of bin", "pln": ["(: cnet_isa_9d9f6eeb7a (IsA litterbin bin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "litterer is a kind of slob", "pln": ["(: cnet_isa_30fb5f0c8c (IsA litterer slob) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "little is a kind of small indefinite quantity", "pln": ["(: cnet_isa_cd73b44366 (IsA little small_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "little auk is a kind of auk", "pln": ["(: cnet_isa_f7430ccd1a (IsA little_auk auk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "little barley is a kind of barley", "pln": ["(: cnet_isa_155f8121af (IsA little_barley barley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "little black ant is a kind of ant", "pln": ["(: cnet_isa_d1c89da689 (IsA little_black_ant ant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "little blue heron is a kind of heron", "pln": ["(: cnet_isa_1eb54065ce (IsA little_blue_heron heron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "little brother is a kind of brother", "pln": ["(: cnet_isa_9b80e4f0f5 (IsA little_brother brother) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "little brown bat is a kind of vespertilian bat", "pln": ["(: cnet_isa_1b696bb155 (IsA little_brown_bat vespertilian_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "little chief hare is a kind of pika", "pln": ["(: cnet_isa_75594bf09d (IsA little_chief_hare pika) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "little egret is a kind of egret", "pln": ["(: cnet_isa_d5ea4dd68e (IsA little_egret egret) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "little gem arborvitae is a kind of plant", "pln": ["(: cnet_isa_59acef6386 (IsA little_gem_arborvitae plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "little golden zinnia is a kind of zinnia", "pln": ["(: cnet_isa_7d6de06288 (IsA little_golden_zinnia zinnia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "little head snakeweed is a kind of matchweed", "pln": ["(: cnet_isa_1e6e64b06a (IsA little_head_snakeweed matchweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "little league is a kind of baseball league", "pln": ["(: cnet_isa_48690c8064 (IsA little_league baseball_league) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "little league team is a kind of team", "pln": ["(: cnet_isa_af5138be3d (IsA little_league_team team) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "little leaguer is a kind of ballplayer", "pln": ["(: cnet_isa_6de2eef5b5 (IsA little_leaguer ballplayer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "little lord fauntleroy is a kind of male child", "pln": ["(: cnet_isa_fcf645ea3f (IsA little_lord_fauntleroy male_child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "little office is a kind of office", "pln": ["(: cnet_isa_85650185f2 (IsA little_office office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "little owl is a kind of owl", "pln": ["(: cnet_isa_b2f36eaa54 (IsA little_owl owl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "little potato is a kind of rhizoctinia disease", "pln": ["(: cnet_isa_6a29832dd4 (IsA little_potato rhizoctinia_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "little sister is a kind of sister", "pln": ["(: cnet_isa_51d536fe94 (IsA little_sister sister) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "little skate is a kind of skate", "pln": ["(: cnet_isa_37a20316f1 (IsA little_skate skate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "little slam is a kind of slam", "pln": ["(: cnet_isa_c714d482af (IsA little_slam slam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "little theater is a kind of theater", "pln": ["(: cnet_isa_7e3cb04c7f (IsA little_theater theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "little toe is a kind of minimus", "pln": ["(: cnet_isa_38bdf10610 (IsA little_toe minimus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "little toe is a kind of toe", "pln": ["(: cnet_isa_9d0cdd1cb0 (IsA little_toe toe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "littleneck is a kind of quahog", "pln": ["(: cnet_isa_fc89f65454 (IsA littleneck quahog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "littleneck is a kind of quahaug", "pln": ["(: cnet_isa_786b352c49 (IsA littleneck quahaug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "littleness is a kind of weakness", "pln": ["(: cnet_isa_ed6320fcfd (IsA littleness weakness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "littoral is a kind of seashore", "pln": ["(: cnet_isa_156859d1ee (IsA littoral seashore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "littorina is a kind of mollusk genus", "pln": ["(: cnet_isa_e8f4c87e89 (IsA littorina mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "littorinidae is a kind of mollusk family", "pln": ["(: cnet_isa_85274b139d (IsA littorinidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liturgic is a kind of theology", "pln": ["(: cnet_isa_9a2522906a (IsA liturgic theology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liturgist is a kind of authority", "pln": ["(: cnet_isa_77b8c2e106 (IsA liturgist authority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liturgy is a kind of rite", "pln": ["(: cnet_isa_c3d8c5d3bb (IsA liturgy rite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "live axle is a kind of axle", "pln": ["(: cnet_isa_79acd92107 (IsA live_axle axle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "live birth is a kind of birth", "pln": ["(: cnet_isa_15e4ed1471 (IsA live_birth birth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "live body is a kind of body", "pln": ["(: cnet_isa_9214f47de9 (IsA live_body body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "live load is a kind of load", "pln": ["(: cnet_isa_17b2482acd (IsA live_load load) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "live oak is a kind of oak", "pln": ["(: cnet_isa_1f7374c766 (IsA live_oak oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "live steam is a kind of steam", "pln": ["(: cnet_isa_88b2120f76 (IsA live_steam steam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liveborn infant is a kind of neonate", "pln": ["(: cnet_isa_6553523dec (IsA liveborn_infant neonate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "livedo is a kind of skin disease", "pln": ["(: cnet_isa_02a884f58d (IsA livedo skin_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liveliness is a kind of activity", "pln": ["(: cnet_isa_f6cb514a8c (IsA liveliness activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liveliness is a kind of animation", "pln": ["(: cnet_isa_eb6b0c8b90 (IsA liveliness animation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liver is a kind of organ in body", "pln": ["(: cnet_isa_f2ab13c707 (IsA liver organ_in_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liver is a kind of internal organ", "pln": ["(: cnet_isa_f3b20344d5 (IsA liver internal_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liver is a kind of variety meat", "pln": ["(: cnet_isa_f8356bbd62 (IsA liver variety_meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liver is a kind of inhabitant", "pln": ["(: cnet_isa_31296867c9 (IsA liver inhabitant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liver is a kind of person", "pln": ["(: cnet_isa_91dddc65d7 (IsA liver person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liver cancer is a kind of carcinoma", "pln": ["(: cnet_isa_fa9a1de277 (IsA liver_cancer carcinoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liver cancer is a kind of liver disease", "pln": ["(: cnet_isa_4c297ff408 (IsA liver_cancer liver_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "liver chestnut is a kind of horse", "pln": ["(: cnet_isa_0311276c16 (IsA liver_chestnut horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liver disease is a kind of disease", "pln": ["(: cnet_isa_0920a8cd7d (IsA liver_disease disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liver fluke is a kind of fluke", "pln": ["(: cnet_isa_fb0a767d02 (IsA liver_fluke fluke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liver pudding is a kind of sausage", "pln": ["(: cnet_isa_37d721a409 (IsA liver_pudding sausage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liver spot is a kind of macule", "pln": ["(: cnet_isa_8fffd8b017 (IsA liver_spot macule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liver spotted dalmatian is a kind of dalmatian", "pln": ["(: cnet_isa_00d2895199 (IsA liver_spotted_dalmatian dalmatian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liverwort is a kind of bryophyte", "pln": ["(: cnet_isa_27c3a360eb (IsA liverwort bryophyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "livery is a kind of care", "pln": ["(: cnet_isa_68b016ccbc (IsA livery care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "livery is a kind of uniform", "pln": ["(: cnet_isa_c2da389bcb (IsA livery uniform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "livery company is a kind of company", "pln": ["(: cnet_isa_e34d773661 (IsA livery_company company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "livery stable is a kind of stall", "pln": ["(: cnet_isa_b540b8a8ff (IsA livery_stable stall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liveryman is a kind of employee", "pln": ["(: cnet_isa_b93adf9bbf (IsA liveryman employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "livestock is a kind of placental", "pln": ["(: cnet_isa_5af2e88bb5 (IsA livestock placental) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lividity is a kind of fury", "pln": ["(: cnet_isa_93f12314d5 (IsA lividity fury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lividness is a kind of complexion", "pln": ["(: cnet_isa_0102380c6e (IsA lividness complexion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "living is a kind of people", "pln": ["(: cnet_isa_2d62f47bab (IsA living people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "living arrangement is a kind of arrangement", "pln": ["(: cnet_isa_9e88145416 (IsA living_arrangement arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "living death is a kind of misery", "pln": ["(: cnet_isa_27991a5ec9 (IsA living_death misery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "living granite is a kind of succulent", "pln": ["(: cnet_isa_a7a43ebcc0 (IsA living_granite succulent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "living quarter is a kind of housing", "pln": ["(: cnet_isa_236eea780f (IsA living_quarter housing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "living rock is a kind of cactus", "pln": ["(: cnet_isa_4e8ebaeee1 (IsA living_rock cactus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "living room is a kind of place", "pln": ["(: cnet_isa_58f31ff7b1 (IsA living_room place) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "living room is a kind of space in house", "pln": ["(: cnet_isa_f214a80c66 (IsA living_room space_in_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "living room is a kind of room", "pln": ["(: cnet_isa_4d1f591374 (IsA living_room room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "living space is a kind of room", "pln": ["(: cnet_isa_bac025f57d (IsA living_space room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "living thing is a kind of whole", "pln": ["(: cnet_isa_adcd956461 (IsA living_thing whole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "living trust is a kind of trust", "pln": ["(: cnet_isa_ed8f3791cb (IsA living_trust trust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "living wage is a kind of wage", "pln": ["(: cnet_isa_680a7e8a73 (IsA living_wage wage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "living will is a kind of legal document", "pln": ["(: cnet_isa_3d9d93cdac (IsA living_will legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "livingroom is a kind of place to relax", "pln": ["(: cnet_isa_fd1af403e9 (IsA livingroom place_to_relax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "livingroom suite is a kind of suite", "pln": ["(: cnet_isa_fa5d0c8fd6 (IsA livingroom_suite suite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "livingstone daisy is a kind of succulent", "pln": ["(: cnet_isa_57dd71a023 (IsA livingstone_daisy succulent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "livistona is a kind of plant genus", "pln": ["(: cnet_isa_287fe3e482 (IsA livistona plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "llew llaw gyffes is a kind of celtic deity", "pln": ["(: cnet_isa_1c5d2cc023 (IsA llew_llaw_gyffes celtic_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "livonian is a kind of baltic finnic", "pln": ["(: cnet_isa_25d9fe7c80 (IsA livonian baltic_finnic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "livonian is a kind of latvian", "pln": ["(: cnet_isa_c0503d6d8b (IsA livonian latvian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "liza is a kind of mullet", "pln": ["(: cnet_isa_7a8ce3a712 (IsA liza mullet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lizard s tail is a kind of marsh plant", "pln": ["(: cnet_isa_af53d61258 (IsA lizard_s_tail marsh_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lizard is a kind of saurian", "pln": ["(: cnet_isa_59d7324ce9 (IsA lizard saurian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lizard orchid is a kind of orchid", "pln": ["(: cnet_isa_1bd4704087 (IsA lizard_orchid orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lizardfish is a kind of soft finned fish", "pln": ["(: cnet_isa_d4bb3cb640 (IsA lizardfish soft_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "llama is a kind of even toed ungulate", "pln": ["(: cnet_isa_4dd301b761 (IsA llama even_toed_ungulate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "llano is a kind of plain", "pln": ["(: cnet_isa_7a764f29e1 (IsA llano plain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "llew llaw gyffe is a kind of celtic deity", "pln": ["(: cnet_isa_51db574262 (IsA llew_llaw_gyffe celtic_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loach is a kind of cypriniform fish", "pln": ["(: cnet_isa_f663e254b6 (IsA loach cypriniform_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "load is a kind of electrical device", "pln": ["(: cnet_isa_f00c75e1f4 (IsA load electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "load is a kind of weight", "pln": ["(: cnet_isa_4b075d615e (IsA load weight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "load is a kind of electrical power", "pln": ["(: cnet_isa_21c032e71c (IsA load electrical_power) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "load is a kind of indefinite quantity", "pln": ["(: cnet_isa_532b590e0a (IsA load indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "load factor is a kind of ratio", "pln": ["(: cnet_isa_0592b53acd (IsA load_factor ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "load line is a kind of waterline", "pln": ["(: cnet_isa_1e86af2b6d (IsA load_line waterline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "load shedding is a kind of limitation", "pln": ["(: cnet_isa_cce485099b (IsA load_shedding limitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loader is a kind of attendant", "pln": ["(: cnet_isa_1bf0a85091 (IsA loader attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loading is a kind of handling", "pln": ["(: cnet_isa_abb692b371 (IsA loading handling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loading is a kind of ratio", "pln": ["(: cnet_isa_237cd85e70 (IsA loading ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loading zone is a kind of stop", "pln": ["(: cnet_isa_c310f37902 (IsA loading_zone stop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loaf is a kind of food", "pln": ["(: cnet_isa_6d51d49565 (IsA loaf food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loaf of bread is a kind of bread", "pln": ["(: cnet_isa_943b72ebfe (IsA loaf_of_bread bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loam is a kind of soil", "pln": ["(: cnet_isa_bd1f59c8d8 (IsA loam soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "loan is a kind of debt", "pln": ["(: cnet_isa_915df780ee (IsA loan debt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loan application is a kind of application", "pln": ["(: cnet_isa_c27abee160 (IsA loan_application application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loan approval is a kind of authorization", "pln": ["(: cnet_isa_cab31c7a3c (IsA loan_approval authorization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loan collection is a kind of art collection", "pln": ["(: cnet_isa_df1f7117a9 (IsA loan_collection art_collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loan office is a kind of office", "pln": ["(: cnet_isa_4d51113076 (IsA loan_office office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loanblend is a kind of word", "pln": ["(: cnet_isa_1c1d38c595 (IsA loanblend word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loaner is a kind of car", "pln": ["(: cnet_isa_366e4dc062 (IsA loaner car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loanword is a kind of word", "pln": ["(: cnet_isa_f0703abbbc (IsA loanword word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loasa is a kind of herb", "pln": ["(: cnet_isa_1e0db7ec9d (IsA loasa herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loasaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_f1a5e065d4 (IsA loasaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loathsomeness is a kind of offensiveness", "pln": ["(: cnet_isa_9fa5645b0a (IsA loathsomeness offensiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lob is a kind of propulsion", "pln": ["(: cnet_isa_cb3af80210 (IsA lob propulsion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lob is a kind of return", "pln": ["(: cnet_isa_fdcee84a3e (IsA lob return) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobar pneumonia is a kind of pneumonia", "pln": ["(: cnet_isa_8d5efdaca3 (IsA lobar_pneumonia pneumonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobata is a kind of animal order", "pln": ["(: cnet_isa_f9b0d493b9 (IsA lobata animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lobate foot is a kind of bird s foot", "pln": ["(: cnet_isa_7c72263a65 (IsA lobate_foot bird_s_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobby is a kind of people", "pln": ["(: cnet_isa_9be5c37a03 (IsA lobby people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobbying expense is a kind of expense", "pln": ["(: cnet_isa_8897a186e3 (IsA lobbying_expense expense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobbyism is a kind of practice", "pln": ["(: cnet_isa_1b2865aa6d (IsA lobbyism practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobbyist is a kind of persuader", "pln": ["(: cnet_isa_43155d5ff0 (IsA lobbyist persuader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobe is a kind of body part", "pln": ["(: cnet_isa_a252256e0b (IsA lobe body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobe is a kind of projection", "pln": ["(: cnet_isa_5825034762 (IsA lobe projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobe is a kind of plant part", "pln": ["(: cnet_isa_ce6fc46996 (IsA lobe plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobe is a kind of loop", "pln": ["(: cnet_isa_7ed5397e32 (IsA lobe loop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobe of lung is a kind of lobe", "pln": ["(: cnet_isa_18b6141d5f (IsA lobe_of_lung lobe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobectomy is a kind of ablation", "pln": ["(: cnet_isa_b19e4552db (IsA lobectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobed leaf is a kind of leaf", "pln": ["(: cnet_isa_1611dc9532 (IsA lobed_leaf leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobed spleenwort is a kind of spleenwort", "pln": ["(: cnet_isa_372d9652e6 (IsA lobed_spleenwort spleenwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobelia is a kind of herb", "pln": ["(: cnet_isa_5deb221224 (IsA lobelia herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobeliaceae is a kind of dicot family", "pln": ["(: cnet_isa_bb04e6876e (IsA lobeliaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobipe is a kind of bird genus", "pln": ["(: cnet_isa_1180b50d30 (IsA lobipe bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loblolly is a kind of gruel", "pln": ["(: cnet_isa_38d20a69c0 (IsA loblolly gruel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loblolly pine is a kind of pine", "pln": ["(: cnet_isa_633acee297 (IsA loblolly_pine pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobote is a kind of fish genus", "pln": ["(: cnet_isa_75236e638f (IsA lobote fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobotidae is a kind of fish family", "pln": ["(: cnet_isa_0dd4eb5cc5 (IsA lobotidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobotomy is a kind of psychosurgery", "pln": ["(: cnet_isa_e192677561 (IsA lobotomy psychosurgery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobscouse is a kind of stew", "pln": ["(: cnet_isa_97b8fc1d09 (IsA lobscouse stew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobster is a kind of decapod crustacean", "pln": ["(: cnet_isa_4381071c35 (IsA lobster decapod_crustacean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobster is a kind of shellfish", "pln": ["(: cnet_isa_5428654ef8 (IsA lobster shellfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobster butter is a kind of spread", "pln": ["(: cnet_isa_8cb727cf0e (IsA lobster_butter spread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobster newburg is a kind of seafood newburg", "pln": ["(: cnet_isa_2ef7de6399 (IsA lobster_newburg seafood_newburg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobster pot is a kind of trap", "pln": ["(: cnet_isa_c3ca4c6621 (IsA lobster_pot trap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobster stew is a kind of stew", "pln": ["(: cnet_isa_5a71bafd3d (IsA lobster_stew stew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobster tail is a kind of lobster", "pln": ["(: cnet_isa_7aeec76b41 (IsA lobster_tail lobster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lobster tart is a kind of tart", "pln": ["(: cnet_isa_3be13f3eed (IsA lobster_tart tart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobster thermidor is a kind of dish", "pln": ["(: cnet_isa_f996067674 (IsA lobster_thermidor dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobsterman is a kind of skilled worker", "pln": ["(: cnet_isa_2510e29545 (IsA lobsterman skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobularia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_cadf89d113 (IsA lobularia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobularity is a kind of shape", "pln": ["(: cnet_isa_b3051b632c (IsA lobularity shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lobule is a kind of lobe", "pln": ["(: cnet_isa_b8781b26c8 (IsA lobule lobe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "local is a kind of public transport", "pln": ["(: cnet_isa_b994749166 (IsA local public_transport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "local anesthesia is a kind of anesthesia", "pln": ["(: cnet_isa_979ac95df7 (IsA local_anesthesia anesthesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "local anesthetic is a kind of anesthetic", "pln": ["(: cnet_isa_2f19f3c88d (IsA local_anesthetic anesthetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "local area network is a kind of computer network", "pln": ["(: cnet_isa_1a320acb3b (IsA local_area_network computer_network) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "local authority is a kind of agency", "pln": ["(: cnet_isa_76b43eb1fd (IsA local_authority agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "local call is a kind of call", "pln": ["(: cnet_isa_f25e60d272 (IsA local_call call) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "local department is a kind of government department", "pln": ["(: cnet_isa_de6168162d (IsA local_department government_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "local government is a kind of government", "pln": ["(: cnet_isa_eb6157d8e6 (IsA local_government government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "local option is a kind of self government", "pln": ["(: cnet_isa_d4f8ff48ba (IsA local_option self_government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "local oscillator is a kind of oscillator", "pln": ["(: cnet_isa_8a9e4dbccc (IsA local_oscillator oscillator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "local road is a kind of street", "pln": ["(: cnet_isa_6f8b6acfa2 (IsA local_road street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "localism is a kind of non standard speech", "pln": ["(: cnet_isa_fc79587bd3 (IsA localism non_standard_speech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "localization is a kind of determination", "pln": ["(: cnet_isa_940a3944a4 (IsA localization determination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "localization of function is a kind of principle", "pln": ["(: cnet_isa_e4b43c5a4a (IsA localization_of_function principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "location is a kind of object", "pln": ["(: cnet_isa_0bde91bb12 (IsA location object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "location is a kind of workplace", "pln": ["(: cnet_isa_cb5b9f17b4 (IsA location workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "locative role is a kind of semantic role", "pln": ["(: cnet_isa_b9b5a2bf43 (IsA locative_role semantic_role) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "locator is a kind of surveyor", "pln": ["(: cnet_isa_f84cd62c83 (IsA locator surveyor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loch is a kind of inlet", "pln": ["(: cnet_isa_77a71b556b (IsA loch inlet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loch is a kind of lake", "pln": ["(: cnet_isa_c8412c5fd4 (IsA loch lake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lochaber ax is a kind of battle ax", "pln": ["(: cnet_isa_d15331af53 (IsA lochaber_ax battle_ax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lochia is a kind of liquid body substance", "pln": ["(: cnet_isa_c7d5d4157e (IsA lochia liquid_body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lock is a kind of wrestling hold", "pln": ["(: cnet_isa_cfae15c951 (IsA lock wrestling_hold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lock is a kind of enclosure", "pln": ["(: cnet_isa_095dae554e (IsA lock enclosure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lock is a kind of fastener", "pln": ["(: cnet_isa_d4b54e7575 (IsA lock fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lock is a kind of mechanism", "pln": ["(: cnet_isa_6ddf8aca1f (IsA lock mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lock is a kind of restraint", "pln": ["(: cnet_isa_74a0b6542e (IsA lock restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "locking pliers is a kind of pliers", "pln": ["(: cnet_isa_85539ee8ae (IsA locking_pliers pliers) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lock is a kind of hair", "pln": ["(: cnet_isa_59dd9f8cc3 (IsA lock hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lock gate is a kind of gate", "pln": ["(: cnet_isa_0f7ea9be06 (IsA lock_gate gate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lock up option is a kind of option", "pln": ["(: cnet_isa_675f7a163a (IsA lock_up_option option) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lockage is a kind of passage", "pln": ["(: cnet_isa_97965d3eb5 (IsA lockage passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lockage is a kind of system", "pln": ["(: cnet_isa_13ae0843ee (IsA lockage system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lockage is a kind of fee", "pln": ["(: cnet_isa_5fa1c3515d (IsA lockage fee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lockdown is a kind of imprisonment", "pln": ["(: cnet_isa_892795aaf9 (IsA lockdown imprisonment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "locker is a kind of fastener", "pln": ["(: cnet_isa_99e90f1a1b (IsA locker fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "locker room is a kind of room", "pln": ["(: cnet_isa_c32fbf87a0 (IsA locker_room room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "locket is a kind of case", "pln": ["(: cnet_isa_b654bf0d35 (IsA locket case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "locking is a kind of protection", "pln": ["(: cnet_isa_1023292b36 (IsA locking protection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "locking plier is a kind of plier", "pln": ["(: cnet_isa_6f70e5d231 (IsA locking_plier plier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lockmaster is a kind of skilled worker", "pln": ["(: cnet_isa_3974b748ed (IsA lockmaster skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "locknut is a kind of nut", "pln": ["(: cnet_isa_6732871a1b (IsA locknut nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lockout is a kind of resistance", "pln": ["(: cnet_isa_a9ecfa930a (IsA lockout resistance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lockring is a kind of washer", "pln": ["(: cnet_isa_2d9a264525 (IsA lockring washer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "locksmith is a kind of smith", "pln": ["(: cnet_isa_9e92200e45 (IsA locksmith smith) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lockstep is a kind of march", "pln": ["(: cnet_isa_e474246c25 (IsA lockstep march) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lockstep is a kind of standing operating procedure", "pln": ["(: cnet_isa_62fd13c755 (IsA lockstep standing_operating_procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lockstitch is a kind of machine stitch", "pln": ["(: cnet_isa_6e0c8f3aac (IsA lockstitch machine_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lockup is a kind of jail", "pln": ["(: cnet_isa_13271af529 (IsA lockup jail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "loco disease is a kind of animal disease", "pln": ["(: cnet_isa_15369745bf (IsA loco_disease animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "locomotion is a kind of motion", "pln": ["(: cnet_isa_9f99ad0f25 (IsA locomotion motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "locomotion is a kind of mobility", "pln": ["(: cnet_isa_0bc129491a (IsA locomotion mobility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "locomotive is a kind of self propelled vehicle", "pln": ["(: cnet_isa_3e3a223fd3 (IsA locomotive self_propelled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "locoweed is a kind of legume", "pln": ["(: cnet_isa_4921274c63 (IsA locoweed legume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "locule is a kind of cavity", "pln": ["(: cnet_isa_8adb62b3e3 (IsA locule cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "locum tenen is a kind of stand in", "pln": ["(: cnet_isa_2c6da7eb50 (IsA locum_tenen stand_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "locus is a kind of set", "pln": ["(: cnet_isa_2e73bcbcaa (IsA locus set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "locus is a kind of site", "pln": ["(: cnet_isa_9eabbc47e1 (IsA locus site) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "locus classicus is a kind of passage", "pln": ["(: cnet_isa_5a9d1728a8 (IsA locus_classicus passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "locus of infection is a kind of site", "pln": ["(: cnet_isa_a55c862b33 (IsA locus_of_infection site) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "locust is a kind of short horned grasshopper", "pln": ["(: cnet_isa_b3da8833e4 (IsA locust short_horned_grasshopper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "locust is a kind of wood", "pln": ["(: cnet_isa_41e25df798 (IsA locust wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "locust tree is a kind of tree", "pln": ["(: cnet_isa_0f6ffca213 (IsA locust_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "locusta is a kind of arthropod genus", "pln": ["(: cnet_isa_a4df0108e9 (IsA locusta arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loddon pondweed is a kind of pondweed", "pln": ["(: cnet_isa_232d83794a (IsA loddon_pondweed pondweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lode is a kind of deposit", "pln": ["(: cnet_isa_d5feb1e0f1 (IsA lode deposit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lodestar is a kind of model", "pln": ["(: cnet_isa_8cf60d3e75 (IsA lodestar model) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lodestar is a kind of star", "pln": ["(: cnet_isa_1ee44c504d (IsA lodestar star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lodestone is a kind of permanent magnet", "pln": ["(: cnet_isa_b5ae431f96 (IsA lodestone permanent_magnet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lodge is a kind of dwelling", "pln": ["(: cnet_isa_214d3d558c (IsA lodge dwelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lodge is a kind of gatehouse", "pln": ["(: cnet_isa_6f2b71a4f1 (IsA lodge gatehouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lodge is a kind of house", "pln": ["(: cnet_isa_27e527e9ee (IsA lodge house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lodger is a kind of tenant", "pln": ["(: cnet_isa_d432226375 (IsA lodger tenant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lodging is a kind of residency", "pln": ["(: cnet_isa_cdf6f92810 (IsA lodging residency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lodging house is a kind of accommodation", "pln": ["(: cnet_isa_ace812a585 (IsA lodging_house accommodation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lodging house is a kind of house", "pln": ["(: cnet_isa_911e1e3bc0 (IsA lodging_house house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lodgment is a kind of fastness", "pln": ["(: cnet_isa_8032e59399 (IsA lodgment fastness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lodgment is a kind of allegation", "pln": ["(: cnet_isa_8a41927105 (IsA lodgment allegation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loess is a kind of soil", "pln": ["(: cnet_isa_a5fd206858 (IsA loess soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lofortyx is a kind of bird genus", "pln": ["(: cnet_isa_644552034b (IsA lofortyx bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loft is a kind of floor", "pln": ["(: cnet_isa_beb5f400f8 (IsA loft floor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loft is a kind of shelter", "pln": ["(: cnet_isa_6feeb89333 (IsA loft shelter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "loft is a kind of pitch", "pln": ["(: cnet_isa_7b5234e9d7 (IsA loft pitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loft bombing is a kind of bombing run", "pln": ["(: cnet_isa_17a6aa50b5 (IsA loft_bombing bombing_run) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "log is a kind of measuring instrument", "pln": ["(: cnet_isa_b820fd386b (IsA log measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "log is a kind of written record", "pln": ["(: cnet_isa_d6884709f6 (IsA log written_record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "log is a kind of wood", "pln": ["(: cnet_isa_3ad6043729 (IsA log wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "log cabin is a kind of cabin", "pln": ["(: cnet_isa_1344dcfad2 (IsA log_cabin cabin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "log line is a kind of cord", "pln": ["(: cnet_isa_04e2892165 (IsA log_line cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loganberry is a kind of berry", "pln": ["(: cnet_isa_67497d9553 (IsA loganberry berry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loganberry is a kind of western blackberry", "pln": ["(: cnet_isa_fdf7733017 (IsA loganberry western_blackberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "logania is a kind of dicot genus", "pln": ["(: cnet_isa_7cc6dc05d1 (IsA logania dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loganiaceae is a kind of dicot family", "pln": ["(: cnet_isa_aa553e0665 (IsA loganiaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logarithm is a kind of exponent", "pln": ["(: cnet_isa_5b81b8e0c2 (IsA logarithm exponent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logarithmic scale is a kind of scale", "pln": ["(: cnet_isa_2e9615bbe7 (IsA logarithmic_scale scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logbook is a kind of record", "pln": ["(: cnet_isa_37f0e1ed5b (IsA logbook record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loge is a kind of balcony", "pln": ["(: cnet_isa_45f148cb21 (IsA loge balcony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loggerhead is a kind of sea turtle", "pln": ["(: cnet_isa_d6e0b375d3 (IsA loggerhead sea_turtle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loggerhead shrike is a kind of shrike", "pln": ["(: cnet_isa_215d54a309 (IsA loggerhead_shrike shrike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loggia is a kind of arcade", "pln": ["(: cnet_isa_553239e8ec (IsA loggia arcade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logging is a kind of work", "pln": ["(: cnet_isa_8cd8ebc3db (IsA logging work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logic is a kind of science", "pln": ["(: cnet_isa_54bf6ca958 (IsA logic science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logic is a kind of system of evaluating argument", "pln": ["(: cnet_isa_1c4a205e67 (IsA logic system_of_evaluating_argument) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logic is a kind of system of reasoning", "pln": ["(: cnet_isa_875c3c55b9 (IsA logic system_of_reasoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logic is a kind of way of thinking", "pln": ["(: cnet_isa_c5f8b28857 (IsA logic way_of_thinking) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logic is a kind of common sense", "pln": ["(: cnet_isa_2f62338389 (IsA logic common_sense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logic is a kind of philosophy", "pln": ["(: cnet_isa_fc62ce8d92 (IsA logic philosophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logic is a kind of principle", "pln": ["(: cnet_isa_9233b24d76 (IsA logic principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logic is a kind of system", "pln": ["(: cnet_isa_5131c05bdf (IsA logic system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logic bomb is a kind of malevolent program", "pln": ["(: cnet_isa_c69690a1f8 (IsA logic_bomb malevolent_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logic diagram is a kind of multidimensional language", "pln": ["(: cnet_isa_e613ec1bca (IsA logic_diagram multidimensional_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logic element is a kind of electronic device", "pln": ["(: cnet_isa_e2e4195584 (IsA logic_element electronic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logic operation is a kind of operation", "pln": ["(: cnet_isa_ef479f245a (IsA logic_operation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logic programming is a kind of programming", "pln": ["(: cnet_isa_9cca27fe6e (IsA logic_programming programming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logical fallacy is a kind of fallacy", "pln": ["(: cnet_isa_fa4a5b6f3a (IsA logical_fallacy fallacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logical positivist is a kind of positivist", "pln": ["(: cnet_isa_42070a8c71 (IsA logical_positivist positivist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logical proof is a kind of proof", "pln": ["(: cnet_isa_5f3982193a (IsA logical_proof proof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logical relation is a kind of relation", "pln": ["(: cnet_isa_c5d39b70b7 (IsA logical_relation relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logical topology is a kind of topology", "pln": ["(: cnet_isa_24eb3f61df (IsA logical_topology topology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logicality is a kind of quality", "pln": ["(: cnet_isa_4346adffa1 (IsA logicality quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logician is a kind of expert", "pln": ["(: cnet_isa_54bd87213c (IsA logician expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logicism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_322e503eb9 (IsA logicism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loginess is a kind of fatigue", "pln": ["(: cnet_isa_058c8a2fdd (IsA loginess fatigue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logion is a kind of saying", "pln": ["(: cnet_isa_3e24c4afa6 (IsA logion saying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logistic assessment is a kind of judgment", "pln": ["(: cnet_isa_dd41b23c18 (IsA logistic_assessment judgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logistic support is a kind of support", "pln": ["(: cnet_isa_a025d22942 (IsA logistic_support support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logistic is a kind of provision", "pln": ["(: cnet_isa_6305aefdd6 (IsA logistic provision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logjam is a kind of mass", "pln": ["(: cnet_isa_fd25be2061 (IsA logjam mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logjam is a kind of arrest", "pln": ["(: cnet_isa_1cd5265263 (IsA logjam arrest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logo is a kind of trademark", "pln": ["(: cnet_isa_33006a0dde (IsA logo trademark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logogram is a kind of ideogram", "pln": ["(: cnet_isa_2673d9b7f2 (IsA logogram ideogram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "logomach is a kind of disputant", "pln": ["(: cnet_isa_8ada8b67d6 (IsA logomach disputant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logomachy is a kind of argument", "pln": ["(: cnet_isa_e6193ba9d6 (IsA logomachy argument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logorrhea is a kind of mania", "pln": ["(: cnet_isa_ce9e6da54d (IsA logorrhea mania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logrolling is a kind of exchange", "pln": ["(: cnet_isa_ad3082e772 (IsA logrolling exchange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logrono is a kind of spain", "pln": ["(: cnet_isa_b516a3d081 (IsA logrono spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logwood is a kind of blackwood", "pln": ["(: cnet_isa_784edd2428 (IsA logwood blackwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "logwood is a kind of wood", "pln": ["(: cnet_isa_e12a8a9c81 (IsA logwood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loin is a kind of body part", "pln": ["(: cnet_isa_8dcada8072 (IsA loin body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loin is a kind of cut", "pln": ["(: cnet_isa_f9a741022d (IsA loin cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loin of lamb is a kind of cut of lamb", "pln": ["(: cnet_isa_a7daee8901 (IsA loin_of_lamb cut_of_lamb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "loir is a kind of dormouse", "pln": ["(: cnet_isa_399e006262 (IsA loir dormouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loiseleuria is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_4d6cebe24d (IsA loiseleuria dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loiterer is a kind of dawdler", "pln": ["(: cnet_isa_783e30f051 (IsA loiterer dawdler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loligo is a kind of squid", "pln": ["(: cnet_isa_795b7b86c8 (IsA loligo squid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lolita is a kind of lass", "pln": ["(: cnet_isa_dfedaa3a03 (IsA lolita lass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lolium is a kind of monocot genus", "pln": ["(: cnet_isa_4f5d1707d3 (IsA lolium monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lollipop is a kind of candy", "pln": ["(: cnet_isa_cd9e7fe6fc (IsA lollipop candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lollipop lady is a kind of crossing guard", "pln": ["(: cnet_isa_c0712c1242 (IsA lollipop_lady crossing_guard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lolo is a kind of loloish", "pln": ["(: cnet_isa_3574dff2c2 (IsA lolo loloish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lolo burmese is a kind of tibeto burman", "pln": ["(: cnet_isa_90f91ce078 (IsA lolo_burmese tibeto_burman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loloish is a kind of lolo burmese", "pln": ["(: cnet_isa_18911c8963 (IsA loloish lolo_burmese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lomariopsidaceae is a kind of fern family", "pln": ["(: cnet_isa_f167fbd7ec (IsA lomariopsidaceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lomatia is a kind of shrub", "pln": ["(: cnet_isa_26f93d6a91 (IsA lomatia shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lombardy poplar is a kind of black poplar", "pln": ["(: cnet_isa_004f3185d4 (IsA lombardy_poplar black_poplar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loment is a kind of pod", "pln": ["(: cnet_isa_9a28d5dcf2 (IsA loment pod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lomogramma is a kind of fern genus", "pln": ["(: cnet_isa_6420566863 (IsA lomogramma fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lomustine is a kind of antineoplastic", "pln": ["(: cnet_isa_273141f30b (IsA lomustine antineoplastic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lona is a kind of asterid dicot genus", "pln": ["(: cnet_isa_8b11c7a3ee (IsA lona asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lonchocarpus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_ad716b55dc (IsA lonchocarpus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "london is a kind of city", "pln": ["(: cnet_isa_43afe3d07b (IsA london city) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "london is a kind of city in england", "pln": ["(: cnet_isa_e8797e2fe1 (IsA london city_in_england) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "london is a kind of place name", "pln": ["(: cnet_isa_d18e3ddcb6 (IsA london place_name) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "london plane is a kind of plane tree", "pln": ["(: cnet_isa_26dff2ed46 (IsA london_plane plane_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "londoner is a kind of english person", "pln": ["(: cnet_isa_c3cd00dcad (IsA londoner english_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loneliness is a kind of isolation", "pln": ["(: cnet_isa_98fa21171d (IsA loneliness isolation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loner is a kind of individualist", "pln": ["(: cnet_isa_a72ae72c08 (IsA loner individualist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long beech fern is a kind of beech fern", "pln": ["(: cnet_isa_f6788c50cb (IsA long_beech_fern beech_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long billed marsh wren is a kind of marsh wren", "pln": ["(: cnet_isa_3a7b0087d4 (IsA long_billed_marsh_wren marsh_wren) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long bone is a kind of bone", "pln": ["(: cnet_isa_01fcbc94ed (IsA long_bone bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long chain molecule is a kind of chain", "pln": ["(: cnet_isa_a8fad2ee4d (IsA long_chain_molecule chain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long clawed prawn is a kind of prawn", "pln": ["(: cnet_isa_7926e26d70 (IsA long_clawed_prawn prawn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long distance is a kind of call", "pln": ["(: cnet_isa_1511b46770 (IsA long_distance call) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long division is a kind of division", "pln": ["(: cnet_isa_48efcf44b4 (IsA long_division division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long eared bat is a kind of vespertilian bat", "pln": ["(: cnet_isa_a22f65dd15 (IsA long_eared_bat vespertilian_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long eared owl is a kind of owl", "pln": ["(: cnet_isa_7e0ecff583 (IsA long_eared_owl owl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long fly is a kind of gymnastic exercise", "pln": ["(: cnet_isa_91e585b3e7 (IsA long_fly gymnastic_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long haul is a kind of journey", "pln": ["(: cnet_isa_1ff139f077 (IsA long_haul journey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long head coneflower is a kind of coneflower", "pln": ["(: cnet_isa_038dffad9d (IsA long_head_coneflower coneflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long horned beetle is a kind of beetle", "pln": ["(: cnet_isa_4624008a33 (IsA long_horned_beetle beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long horned grasshopper is a kind of grasshopper", "pln": ["(: cnet_isa_5fadb7e700 (IsA long_horned_grasshopper grasshopper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long hundred is a kind of large integer", "pln": ["(: cnet_isa_d70385c6be (IsA long_hundred large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long iron is a kind of iron", "pln": ["(: cnet_isa_75133b9934 (IsA long_iron iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long john is a kind of underwear", "pln": ["(: cnet_isa_31402e5b0c (IsA long_john underwear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long jump is a kind of field event", "pln": ["(: cnet_isa_b3e0c290d9 (IsA long_jump field_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long measure is a kind of linear unit", "pln": ["(: cnet_isa_682bc56585 (IsA long_measure linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long pepper is a kind of true pepper", "pln": ["(: cnet_isa_a4511c81db (IsA long_pepper true_pepper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long run is a kind of time period", "pln": ["(: cnet_isa_580c97a004 (IsA long_run time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long saphenous vein is a kind of saphenous vein", "pln": ["(: cnet_isa_f3bf389e25 (IsA long_saphenous_vein saphenous_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long shot is a kind of gamble", "pln": ["(: cnet_isa_63460f6654 (IsA long_shot gamble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long shot is a kind of contestant", "pln": ["(: cnet_isa_c2c3106ab2 (IsA long_shot contestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long sleeve is a kind of sleeve", "pln": ["(: cnet_isa_0447d3983f (IsA long_sleeve sleeve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long spurred violet is a kind of violet", "pln": ["(: cnet_isa_2f63a8dc8d (IsA long_spurred_violet violet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "long staple cotton is a kind of cotton", "pln": ["(: cnet_isa_35b54476a2 (IsA long_staple_cotton cotton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long sufferance is a kind of endurance", "pln": ["(: cnet_isa_839e3d6c06 (IsA long_sufferance endurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long suit is a kind of collection", "pln": ["(: cnet_isa_f8f78e098f (IsA long_suit collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long tailed porcupine is a kind of old world porcupine", "pln": ["(: cnet_isa_d3f6b5c62d (IsA long_tailed_porcupine old_world_porcupine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long term memory is a kind of memory", "pln": ["(: cnet_isa_bf36806b2e (IsA long_term_memory memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long time is a kind of time period", "pln": ["(: cnet_isa_5abed382d4 (IsA long_time time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long tom is a kind of cannon", "pln": ["(: cnet_isa_fd380e774b (IsA long_tom cannon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long ton is a kind of avoirdupois unit", "pln": ["(: cnet_isa_bb774797b8 (IsA long_ton avoirdupois_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long trouser is a kind of pair of trouser", "pln": ["(: cnet_isa_0c843332f9 (IsA long_trouser pair_of_trouser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long underwear is a kind of undergarment", "pln": ["(: cnet_isa_c651553d38 (IsA long_underwear undergarment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "long wave is a kind of radio wave", "pln": ["(: cnet_isa_56089997bb (IsA long_wave radio_wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "longan is a kind of fruit tree", "pln": ["(: cnet_isa_f44f6e3b06 (IsA longan fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "longanberry is a kind of edible fruit", "pln": ["(: cnet_isa_ef514324ad (IsA longanberry edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "longboat is a kind of boat", "pln": ["(: cnet_isa_a2f48d0712 (IsA longboat boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "longbow is a kind of bow", "pln": ["(: cnet_isa_87587d658d (IsA longbow bow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "longbowman is a kind of archer", "pln": ["(: cnet_isa_7490eb5073 (IsA longbowman archer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "longer is a kind of person", "pln": ["(: cnet_isa_e6ed3d5357 (IsA longer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "longevity is a kind of longness", "pln": ["(: cnet_isa_275b5c3550 (IsA longevity longness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "longevity is a kind of oldness", "pln": ["(: cnet_isa_6bec4f88b2 (IsA longevity oldness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "longfin mako is a kind of mako", "pln": ["(: cnet_isa_47d8f01209 (IsA longfin_mako mako) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "longhand is a kind of handwriting", "pln": ["(: cnet_isa_056fe0293c (IsA longhand handwriting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "longheaded thimbleweed is a kind of thimbleweed", "pln": ["(: cnet_isa_c88c6e7179 (IsA longheaded_thimbleweed thimbleweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "longhorn is a kind of beef", "pln": ["(: cnet_isa_cc1fbbd4a2 (IsA longhorn beef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "longing is a kind of desire", "pln": ["(: cnet_isa_ad508845ad (IsA longing desire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "longitude is a kind of angular distance", "pln": ["(: cnet_isa_db9a64ddc4 (IsA longitude angular_distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "longleaf pine is a kind of yellow pine", "pln": ["(: cnet_isa_f1ed89d81c (IsA longleaf_pine yellow_pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "longness is a kind of duration", "pln": ["(: cnet_isa_d595bd756e (IsA longness duration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "longness is a kind of length", "pln": ["(: cnet_isa_abcc9e79c7 (IsA longness length) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "longshot is a kind of picture", "pln": ["(: cnet_isa_c6d5236fa2 (IsA longshot picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "longtail weasel is a kind of weasel", "pln": ["(: cnet_isa_99f0bfc75c (IsA longtail_weasel weasel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "longueur is a kind of duration", "pln": ["(: cnet_isa_55b1338ef5 (IsA longueur duration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "longway is a kind of country dance", "pln": ["(: cnet_isa_0162434f56 (IsA longway country_dance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "longwool is a kind of domestic sheep", "pln": ["(: cnet_isa_91b26c74dd (IsA longwool domestic_sheep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lonicera is a kind of asterid dicot genus", "pln": ["(: cnet_isa_b9e3cf9691 (IsA lonicera asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loofa is a kind of fiber", "pln": ["(: cnet_isa_befe695622 (IsA loofa fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loofah is a kind of luffa", "pln": ["(: cnet_isa_4409076d80 (IsA loofah luffa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "look is a kind of sensing", "pln": ["(: cnet_isa_541b53a505 (IsA look sensing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "look is a kind of appearance", "pln": ["(: cnet_isa_97665e60d3 (IsA look appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lookahead is a kind of lookaround", "pln": ["(: cnet_isa_62750f5832 (IsA lookahead lookaround) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lookbehind is a kind of lookaround", "pln": ["(: cnet_isa_d7f559ba20 (IsA lookbehind lookaround) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lookdown is a kind of moonfish", "pln": ["(: cnet_isa_261e651005 (IsA lookdown moonfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "looking is a kind of search", "pln": ["(: cnet_isa_18eca966b7 (IsA looking search) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "looking glass is a kind of mirror", "pln": ["(: cnet_isa_255afb7eef (IsA looking_glass mirror) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "looking glass plant is a kind of angiospermous tree", "pln": ["(: cnet_isa_aadc0080f1 (IsA looking_glass_plant angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "looking glass tree is a kind of angiospermous tree", "pln": ["(: cnet_isa_a0fd8faab3 (IsA looking_glass_tree angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lookout is a kind of look", "pln": ["(: cnet_isa_6e36b6f00f (IsA lookout look) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lookout is a kind of structure", "pln": ["(: cnet_isa_d9662ff48a (IsA lookout structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lookout is a kind of post", "pln": ["(: cnet_isa_41f17f71c2 (IsA lookout post) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lookout is a kind of watchman", "pln": ["(: cnet_isa_0aa0c7cc37 (IsA lookout watchman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loom is a kind of textile machine", "pln": ["(: cnet_isa_b68b8746ca (IsA loom textile_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loon is a kind of gaviiform seabird", "pln": ["(: cnet_isa_684fd1922a (IsA loon gaviiform_seabird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loon is a kind of idler", "pln": ["(: cnet_isa_ec427e6c22 (IsA loon idler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loop is a kind of flight maneuver", "pln": ["(: cnet_isa_6624e13ee4 (IsA loop flight_maneuver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loop is a kind of intrauterine device", "pln": ["(: cnet_isa_1e6edaea10 (IsA loop intrauterine_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loop is a kind of fingerprint", "pln": ["(: cnet_isa_329d018421 (IsA loop fingerprint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loop is a kind of program", "pln": ["(: cnet_isa_e522d7181e (IsA loop program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loop is a kind of clique", "pln": ["(: cnet_isa_08cea19fc4 (IsA loop clique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loop is a kind of simple closed curve", "pln": ["(: cnet_isa_d2f1b3c7eb (IsA loop simple_closed_curve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loop gain is a kind of amplification", "pln": ["(: cnet_isa_7ce34a5b90 (IsA loop_gain amplification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "loop knot is a kind of knot", "pln": ["(: cnet_isa_5f81e7b366 (IsA loop_knot knot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "loop line is a kind of branch line", "pln": ["(: cnet_isa_64abf38f53 (IsA loop_line branch_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loop topology is a kind of topology", "pln": ["(: cnet_isa_4b2b20936d (IsA loop_topology topology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loophole is a kind of hole", "pln": ["(: cnet_isa_0ef2870743 (IsA loophole hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "loophole is a kind of ambiguity", "pln": ["(: cnet_isa_4c32449761 (IsA loophole ambiguity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "looping ill is a kind of animal disease", "pln": ["(: cnet_isa_5054590c08 (IsA looping_ill animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loose cannon is a kind of person", "pln": ["(: cnet_isa_f03d67060b (IsA loose_cannon person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loose end is a kind of work", "pln": ["(: cnet_isa_b851a7395c (IsA loose_end work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loose sentence is a kind of complex sentence", "pln": ["(: cnet_isa_5633ec4caa (IsA loose_sentence complex_sentence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "loose smut is a kind of smut", "pln": ["(: cnet_isa_d05f4c91cf (IsA loose_smut smut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "looseness is a kind of inaccuracy", "pln": ["(: cnet_isa_2471e6f87f (IsA looseness inaccuracy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "looseness is a kind of movability", "pln": ["(: cnet_isa_75fa2e5d6d (IsA looseness movability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "looseness is a kind of unrestraint", "pln": ["(: cnet_isa_064a68552b (IsA looseness unrestraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loosening is a kind of alteration", "pln": ["(: cnet_isa_4134925a93 (IsA loosening alteration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loosestrife is a kind of herb", "pln": ["(: cnet_isa_3bb74ca2eb (IsA loosestrife herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loosestrife is a kind of subshrub", "pln": ["(: cnet_isa_ddac684911 (IsA loosestrife subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loot is a kind of stolen property", "pln": ["(: cnet_isa_987c8230cb (IsA loot stolen_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "looting is a kind of plundering", "pln": ["(: cnet_isa_77f968902f (IsA looting plundering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lophiidae is a kind of fish family", "pln": ["(: cnet_isa_2c1af47111 (IsA lophiidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lophius is a kind of fish genus", "pln": ["(: cnet_isa_b8000875a8 (IsA lophius fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lophodyte is a kind of bird genus", "pln": ["(: cnet_isa_628956c0e2 (IsA lophodyte bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lopholatilus is a kind of fish genus", "pln": ["(: cnet_isa_a5318e5eb1 (IsA lopholatilus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lophophora is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_eea84ec919 (IsA lophophora caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lophophorus is a kind of bird genus", "pln": ["(: cnet_isa_1bb2eab756 (IsA lophophorus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lophosoria is a kind of fern genus", "pln": ["(: cnet_isa_2173c42765 (IsA lophosoria fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lophosoriaceae is a kind of fern family", "pln": ["(: cnet_isa_62bf9963ee (IsA lophosoriaceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lopsidedness is a kind of asymmetry", "pln": ["(: cnet_isa_ce180945fd (IsA lopsidedness asymmetry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loquat is a kind of edible fruit", "pln": ["(: cnet_isa_62146cffe0 (IsA loquat edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loquat is a kind of fruit tree", "pln": ["(: cnet_isa_28852e4bbf (IsA loquat fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loranthaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_a64062ff43 (IsA loranthaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loranthaceae is a kind of parasitic plant", "pln": ["(: cnet_isa_1d2642c15e (IsA loranthaceae parasitic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loranthus is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_09a752ec2c (IsA loranthus dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lorchel is a kind of fungus", "pln": ["(: cnet_isa_9e237a1fc5 (IsA lorchel fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lord high chancellor is a kind of cabinet minister", "pln": ["(: cnet_isa_b283b9640d (IsA lord_high_chancellor cabinet_minister) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lord of misrule is a kind of master of ceremony", "pln": ["(: cnet_isa_d3c44a3222 (IsA lord_of_misrule master_of_ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lord privy seal is a kind of cabinet minister", "pln": ["(: cnet_isa_655fc773ce (IsA lord_privy_seal cabinet_minister) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lordolatry is a kind of worship", "pln": ["(: cnet_isa_bc1001b543 (IsA lordolatry worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lordosis is a kind of spinal curvature", "pln": ["(: cnet_isa_09ad30ead2 (IsA lordosis spinal_curvature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lordship is a kind of authority", "pln": ["(: cnet_isa_5d09d44f6a (IsA lordship authority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lordship is a kind of title", "pln": ["(: cnet_isa_04f41866e2 (IsA lordship title) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lore is a kind of content", "pln": ["(: cnet_isa_bc70eff1af (IsA lore content) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lorentz force is a kind of force", "pln": ["(: cnet_isa_3748599737 (IsA lorentz_force force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lorenzo dressing is a kind of dressing", "pln": ["(: cnet_isa_4ed3149512 (IsA lorenzo_dressing dressing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lorgnette is a kind of spectacle", "pln": ["(: cnet_isa_523fcfa8f4 (IsA lorgnette spectacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lorica is a kind of sheath", "pln": ["(: cnet_isa_96a212689e (IsA lorica sheath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loricata is a kind of animal order", "pln": ["(: cnet_isa_8d91811633 (IsA loricata animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loriinae is a kind of bird family", "pln": ["(: cnet_isa_e4eaf92ffb (IsA loriinae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lorikeet is a kind of lory", "pln": ["(: cnet_isa_cf311551a3 (IsA lorikeet lory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lorisidae is a kind of mammal family", "pln": ["(: cnet_isa_c57402d38c (IsA lorisidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lorraine cross is a kind of cross", "pln": ["(: cnet_isa_8de2781063 (IsA lorraine_cross cross) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lorry is a kind of truck", "pln": ["(: cnet_isa_6872b9d40b (IsA lorry truck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lorry is a kind of wagon", "pln": ["(: cnet_isa_f77cf26426 (IsA lorry wagon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lory is a kind of parrot", "pln": ["(: cnet_isa_5ff8c003e2 (IsA lory parrot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "loser is a kind of contestant", "pln": ["(: cnet_isa_08e53eebc3 (IsA loser contestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loser is a kind of gambler", "pln": ["(: cnet_isa_e91cd5f46a (IsA loser gambler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "losing streak is a kind of streak", "pln": ["(: cnet_isa_eebb2a7ca5 (IsA losing_streak streak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "losing is a kind of financial loss", "pln": ["(: cnet_isa_7c27ee94a4 (IsA losing financial_loss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loss is a kind of failure", "pln": ["(: cnet_isa_41f3cc269a (IsA loss failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loss is a kind of disadvantage", "pln": ["(: cnet_isa_048d6ac27e (IsA loss disadvantage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loss is a kind of experience", "pln": ["(: cnet_isa_6c444dac8f (IsA loss experience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loss is a kind of sum", "pln": ["(: cnet_isa_ae5051a5a9 (IsA loss sum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loss is a kind of transferred property", "pln": ["(: cnet_isa_347a041140 (IsA loss transferred_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loss is a kind of decline", "pln": ["(: cnet_isa_df786dc441 (IsA loss decline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loss of consciousness is a kind of change", "pln": ["(: cnet_isa_2c286c45fc (IsA loss_of_consciousness change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loss ratio is a kind of ratio", "pln": ["(: cnet_isa_da98bbd7b6 (IsA loss_ratio ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lost and found is a kind of depository", "pln": ["(: cnet_isa_373988a4f3 (IsA lost_and_found depository) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lost cause is a kind of campaign", "pln": ["(: cnet_isa_2809a3830f (IsA lost_cause campaign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lost tribe is a kind of tribe of israel", "pln": ["(: cnet_isa_8bf4dabf82 (IsA lost_tribe tribe_of_israel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lot is a kind of tract", "pln": ["(: cnet_isa_f636c66dcb (IsA lot tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lota is a kind of fish genus", "pln": ["(: cnet_isa_f828ab5ed7 (IsA lota fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lota is a kind of water bottle", "pln": ["(: cnet_isa_b94d8ba615 (IsA lota water_bottle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lothario is a kind of womanizer", "pln": ["(: cnet_isa_e1a6449576 (IsA lothario womanizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "loti is a kind of lesotho monetary unit", "pln": ["(: cnet_isa_eac4fc49d3 (IsA loti lesotho_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lotion is a kind of remedy", "pln": ["(: cnet_isa_fccb5f43b9 (IsA lotion remedy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lotion is a kind of toiletry", "pln": ["(: cnet_isa_3e32dec795 (IsA lotion toiletry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lottery is a kind of game of chance", "pln": ["(: cnet_isa_98b4445bf6 (IsA lottery game_of_chance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lottery is a kind of accident", "pln": ["(: cnet_isa_09fa2d3d69 (IsA lottery accident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lotto is a kind of board game", "pln": ["(: cnet_isa_491a084d94 (IsA lotto board_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lotus is a kind of flower", "pln": ["(: cnet_isa_5a31c8eb72 (IsA lotus flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lotus is a kind of instance of company", "pln": ["(: cnet_isa_887d0e788f (IsA lotus instance_of_company) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lotus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_f526e9f0ec (IsA lotus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lotus is a kind of water lily", "pln": ["(: cnet_isa_437c8881c5 (IsA lotus water_lily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lotus eater is a kind of daydreamer", "pln": ["(: cnet_isa_8a78b40ef5 (IsA lotus_eater daydreamer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lotus position is a kind of position", "pln": ["(: cnet_isa_8751dfb272 (IsA lotus_position position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lotus tree is a kind of shrub", "pln": ["(: cnet_isa_4d610587eb (IsA lotus_tree shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lotusland is a kind of kingdom", "pln": ["(: cnet_isa_9b2a8d8995 (IsA lotusland kingdom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loudmouth is a kind of troublemaker", "pln": ["(: cnet_isa_fa891834bc (IsA loudmouth troublemaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loudspeaker is a kind of electro acoustic transducer", "pln": ["(: cnet_isa_b729e4b9e3 (IsA loudspeaker electro_acoustic_transducer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lough is a kind of cove", "pln": ["(: cnet_isa_130d867a52 (IsA lough cove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lough is a kind of lake", "pln": ["(: cnet_isa_67faedb3c5 (IsA lough lake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "louis d or is a kind of coin", "pln": ["(: cnet_isa_af44b37e41 (IsA louis_d_or coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "louis harold gray is a kind of radiobiologist", "pln": ["(: cnet_isa_bd3a8fef6d (IsA louis_harold_gray radiobiologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "louise erdrich s first novel is a kind of love medicine", "pln": ["(: cnet_isa_aac067adf8 (IsA louise_erdrich_s_first_novel love_medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "louisianian is a kind of american", "pln": ["(: cnet_isa_188cd3e5d7 (IsA louisianian american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lounge is a kind of room", "pln": ["(: cnet_isa_6f756dbdaa (IsA lounge room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lounge lizard is a kind of gigolo", "pln": ["(: cnet_isa_2f2517d9ce (IsA lounge_lizard gigolo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lounger is a kind of loungewear", "pln": ["(: cnet_isa_67f57471f8 (IsA lounger loungewear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loungewear is a kind of clothing", "pln": ["(: cnet_isa_6ddd1be4b3 (IsA loungewear clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lounging jacket is a kind of loungewear", "pln": ["(: cnet_isa_cc24d7b1f5 (IsA lounging_jacket loungewear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lounging pajama is a kind of loungewear", "pln": ["(: cnet_isa_7a5dee230b (IsA lounging_pajama loungewear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "loupe is a kind of hand glass", "pln": ["(: cnet_isa_63a981c17e (IsA loupe hand_glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "louse is a kind of insect", "pln": ["(: cnet_isa_196f0c1f23 (IsA louse insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "louse fly is a kind of dipterous insect", "pln": ["(: cnet_isa_377bbede28 (IsA louse_fly dipterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lout is a kind of clumsy person", "pln": ["(: cnet_isa_3f6bc962fe (IsA lout clumsy_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "louvar is a kind of scombroid", "pln": ["(: cnet_isa_2e7685c63b (IsA louvar scombroid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "louver is a kind of slat", "pln": ["(: cnet_isa_ce173dd3cb (IsA louver slat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "louvered window is a kind of window", "pln": ["(: cnet_isa_6f959bfe6e (IsA louvered_window window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lovage is a kind of herb", "pln": ["(: cnet_isa_6d2dbea1cb (IsA lovage herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "love is a kind of aphrodisiac", "pln": ["(: cnet_isa_54b4d6e4e4 (IsA love aphrodisiac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "love is a kind of emotion", "pln": ["(: cnet_isa_6315f374b2 (IsA love emotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "love is a kind of emotion between people", "pln": ["(: cnet_isa_6aa1b90e1e (IsA love emotion_between_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "love is a kind of feeling", "pln": ["(: cnet_isa_6bcc28b5e4 (IsA love feeling) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "love is a kind of powerful emotion", "pln": ["(: cnet_isa_d918cf2e08 (IsA love powerful_emotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "love is a kind of strong emotion", "pln": ["(: cnet_isa_5ffe4745c8 (IsA love strong_emotion) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "love is a kind of wonderful emotion", "pln": ["(: cnet_isa_891a2576a1 (IsA love wonderful_emotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "love is a kind of wonderful feeling", "pln": ["(: cnet_isa_ec94c30eac (IsA love wonderful_feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "love is a kind of object", "pln": ["(: cnet_isa_7af72eaf10 (IsA love object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "love is a kind of sexual desire", "pln": ["(: cnet_isa_81ecf71790 (IsA love sexual_desire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "love is a kind of score", "pln": ["(: cnet_isa_9c4c90cce3 (IsA love score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "love affair is a kind of relationship", "pln": ["(: cnet_isa_3ea60dd7dd (IsA love_affair relationship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "love feast is a kind of social gathering", "pln": ["(: cnet_isa_b347d36855 (IsA love_feast social_gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "love grass is a kind of grass", "pln": ["(: cnet_isa_10cc7f22b1 (IsA love_grass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "love in mist is a kind of nigella", "pln": ["(: cnet_isa_fb7aa72736 (IsA love_in_mist nigella) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "love in mist is a kind of passionflower", "pln": ["(: cnet_isa_4cedbe832a (IsA love_in_mist passionflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "love in winter is a kind of pipsissewa", "pln": ["(: cnet_isa_cd722c615c (IsA love_in_winter pipsissewa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "love knot is a kind of knot", "pln": ["(: cnet_isa_ed853b0e17 (IsA love_knot knot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "love letter is a kind of personal letter", "pln": ["(: cnet_isa_889f039d34 (IsA love_letter personal_letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "love lie bleeding is a kind of amaranth", "pln": ["(: cnet_isa_0f143f12e0 (IsA love_lie_bleeding amaranth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "love lyric is a kind of lyric", "pln": ["(: cnet_isa_05a36defac (IsA love_lyric lyric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "love match is a kind of marriage", "pln": ["(: cnet_isa_dee550e30e (IsA love_match marriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "love seat is a kind of sofa", "pln": ["(: cnet_isa_f09e220870 (IsA love_seat sofa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "love song is a kind of song", "pln": ["(: cnet_isa_e26fe97ac6 (IsA love_song song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "love story is a kind of story", "pln": ["(: cnet_isa_6a1ead6016 (IsA love_story story) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "love token is a kind of keepsake", "pln": ["(: cnet_isa_4d306f7412 (IsA love_token keepsake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "love vine is a kind of dodder", "pln": ["(: cnet_isa_74829976dc (IsA love_vine dodder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lovebird is a kind of parrot", "pln": ["(: cnet_isa_c70a07e1dd (IsA lovebird parrot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "loved one is a kind of person", "pln": ["(: cnet_isa_e217351233 (IsA loved_one person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lover is a kind of domestic partner", "pln": ["(: cnet_isa_11044d4101 (IsA lover domestic_partner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lover is a kind of person", "pln": ["(: cnet_isa_b54031160f (IsA lover person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lovesickness is a kind of pining", "pln": ["(: cnet_isa_a25ff59010 (IsA lovesickness pining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loving cup is a kind of drinking vessel", "pln": ["(: cnet_isa_03de161e79 (IsA loving_cup drinking_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loving kindness is a kind of kindness", "pln": ["(: cnet_isa_fd3d94e5db (IsA loving_kindness kindness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lovingness is a kind of love", "pln": ["(: cnet_isa_902dfd91b2 (IsA lovingness love) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lovoa is a kind of rosid dicot genus", "pln": ["(: cnet_isa_62cefb0b78 (IsA lovoa rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "low is a kind of degree", "pln": ["(: cnet_isa_2ae31bb953 (IsA low degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "low is a kind of air mass", "pln": ["(: cnet_isa_584da4a819 (IsA low air_mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "low beam is a kind of beam", "pln": ["(: cnet_isa_0c23d1dd56 (IsA low_beam beam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "low birth weight baby is a kind of neonate", "pln": ["(: cnet_isa_e08ace7d5c (IsA low_birth_weight_baby neonate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "low blow is a kind of abuse", "pln": ["(: cnet_isa_c598e01827 (IsA low_blow abuse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "low brass is a kind of brass", "pln": ["(: cnet_isa_7826230db2 (IsA low_brass brass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "low bush blueberry is a kind of blueberry", "pln": ["(: cnet_isa_27d5c1f201 (IsA low_bush_blueberry blueberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "low calorie diet is a kind of reducing diet", "pln": ["(: cnet_isa_73efc1a4f0 (IsA low_calorie_diet reducing_diet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "low comedy is a kind of comedy", "pln": ["(: cnet_isa_ccd36b3b5b (IsA low_comedy comedy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "low density lipoprotein is a kind of lipoprotein", "pln": ["(: cnet_isa_9135da350c (IsA low_density_lipoprotein lipoprotein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "low explosive is a kind of explosive", "pln": ["(: cnet_isa_e7a75bb437 (IsA low_explosive explosive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "low fat diet is a kind of diet", "pln": ["(: cnet_isa_0e1c47774e (IsA low_fat_diet diet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "low fat milk is a kind of milk", "pln": ["(: cnet_isa_b6478b0576 (IsA low_fat_milk milk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "low frequency is a kind of radio frequency", "pln": ["(: cnet_isa_311bf6bec1 (IsA low_frequency radio_frequency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "low gallberry holly is a kind of holly", "pln": ["(: cnet_isa_13a9cf1f11 (IsA low_gallberry_holly holly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "low german is a kind of west germanic", "pln": ["(: cnet_isa_023a85e638 (IsA low_german west_germanic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "low latin is a kind of latin", "pln": ["(: cnet_isa_4dc2d48087 (IsA low_latin latin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "low level formatting is a kind of format", "pln": ["(: cnet_isa_2154b4cc04 (IsA low_level_formatting format) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "low level radioactive waste is a kind of radioactive waste", "pln": ["(: cnet_isa_c2cc28a4dd (IsA low_level_radioactive_waste radioactive_waste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "low mass is a kind of mass", "pln": ["(: cnet_isa_bf304b1969 (IsA low_mass mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "low pass filter is a kind of filter", "pln": ["(: cnet_isa_2bf9c86d01 (IsA low_pass_filter filter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "low pitch is a kind of pitch", "pln": ["(: cnet_isa_ac26dc2060 (IsA low_pitch pitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "low profile is a kind of visibility", "pln": ["(: cnet_isa_4919dda37c (IsA low_profile visibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "low sodium diet is a kind of diet", "pln": ["(: cnet_isa_298d926944 (IsA low_sodium_diet diet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "low spirit is a kind of depression", "pln": ["(: cnet_isa_9819623a95 (IsA low_spirit depression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "low st andrew s cross is a kind of st john s wort", "pln": ["(: cnet_isa_72a6179523 (IsA low_st_andrew_s_cross st_john_s_wort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "low status is a kind of status", "pln": ["(: cnet_isa_17c3c84861 (IsA low_status status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "low sunday is a kind of christian holy day", "pln": ["(: cnet_isa_de367a0a33 (IsA low_sunday christian_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "low tide is a kind of tide", "pln": ["(: cnet_isa_ccab0704c4 (IsA low_tide tide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "low warp loom is a kind of handloom", "pln": ["(: cnet_isa_40f97db713 (IsA low_warp_loom handloom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "low water mark is a kind of water line", "pln": ["(: cnet_isa_4f598735bf (IsA low_water_mark water_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lowboy is a kind of chest of drawer", "pln": ["(: cnet_isa_6912e4f08b (IsA lowboy chest_of_drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lower berth is a kind of berth", "pln": ["(: cnet_isa_27ef8b999f (IsA lower_berth berth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lower bound is a kind of boundary", "pln": ["(: cnet_isa_ec4e853f4e (IsA lower_bound boundary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lower class is a kind of class", "pln": ["(: cnet_isa_2879d42ade (IsA lower_class class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lower criticism is a kind of textual criticism", "pln": ["(: cnet_isa_7847f91dc5 (IsA lower_criticism textual_criticism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lower deck is a kind of deck", "pln": ["(: cnet_isa_c756d18da0 (IsA lower_deck deck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lower jaw is a kind of articulator", "pln": ["(: cnet_isa_c1a4eaab14 (IsA lower_jaw articulator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lower jaw is a kind of jaw", "pln": ["(: cnet_isa_76bc32b6d8 (IsA lower_jaw jaw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lower limit is a kind of limit", "pln": ["(: cnet_isa_d214b07881 (IsA lower_limit limit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lower mantle is a kind of layer", "pln": ["(: cnet_isa_357ec43bef (IsA lower_mantle layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lower respiratory infection is a kind of respiratory tract infection", "pln": ["(: cnet_isa_27451d7888 (IsA lower_respiratory_infection respiratory_tract_infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lower respiratory tract is a kind of respiratory tract", "pln": ["(: cnet_isa_fabf2b9cdb (IsA lower_respiratory_tract respiratory_tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lower respiratory tract smear is a kind of smear", "pln": ["(: cnet_isa_a698c4e61b (IsA lower_respiratory_tract_smear smear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lowerclassman is a kind of undergraduate", "pln": ["(: cnet_isa_56ae3be6d2 (IsA lowerclassman undergraduate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lowering is a kind of decrease", "pln": ["(: cnet_isa_9492494993 (IsA lowering decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lowering is a kind of movement", "pln": ["(: cnet_isa_395d69caeb (IsA lowering movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lowest common multiple is a kind of multiple", "pln": ["(: cnet_isa_919f6862ad (IsA lowest_common_multiple multiple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lowland is a kind of natural depression", "pln": ["(: cnet_isa_b43f37dc3b (IsA lowland natural_depression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lowland burrowing treefrog is a kind of tree toad", "pln": ["(: cnet_isa_14867c9db8 (IsA lowland_burrowing_treefrog tree_toad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lowland fir is a kind of silver fir", "pln": ["(: cnet_isa_35815b5d8c (IsA lowland_fir silver_fir) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lowness is a kind of degree", "pln": ["(: cnet_isa_fafa67f87e (IsA lowness degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lowness is a kind of height", "pln": ["(: cnet_isa_49f9a28186 (IsA lowness height) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lox is a kind of smoked salmon", "pln": ["(: cnet_isa_1ca315bc2f (IsA lox smoked_salmon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loxia is a kind of bird genus", "pln": ["(: cnet_isa_1418110761 (IsA loxia bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loxodonta is a kind of mammal genus", "pln": ["(: cnet_isa_c5ab121396 (IsA loxodonta mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loxoma is a kind of fern genus", "pln": ["(: cnet_isa_6b49448651 (IsA loxoma fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loxomataceae is a kind of fern family", "pln": ["(: cnet_isa_05a20ab5d2 (IsA loxomataceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loxostege is a kind of arthropod genus", "pln": ["(: cnet_isa_a3c3d496b4 (IsA loxostege arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loxostege similalis is a kind of webworm moth", "pln": ["(: cnet_isa_c90e8fc884 (IsA loxostege_similalis webworm_moth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loya jirga is a kind of jirga", "pln": ["(: cnet_isa_336390355c (IsA loya_jirga jirga) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loyalist is a kind of supporter", "pln": ["(: cnet_isa_e77abef28f (IsA loyalist supporter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loyalty is a kind of virtue", "pln": ["(: cnet_isa_5880dc635c (IsA loyalty virtue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loyalty is a kind of fidelity", "pln": ["(: cnet_isa_affd219925 (IsA loyalty fidelity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "loyalty is a kind of love", "pln": ["(: cnet_isa_c9cce2c27c (IsA loyalty love) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lozenge is a kind of candy", "pln": ["(: cnet_isa_7c6b24e9e2 (IsA lozenge candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lp is a kind of phonograph record", "pln": ["(: cnet_isa_8af889b8f4 (IsA lp phonograph_record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lsd is a kind of drug", "pln": ["(: cnet_isa_a5f5926f03 (IsA lsd drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luau is a kind of fete", "pln": ["(: cnet_isa_b8792eabe4 (IsA luau fete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "luba is a kind of bantu", "pln": ["(: cnet_isa_cfe542aeba (IsA luba bantu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lubavitch is a kind of religious movement", "pln": ["(: cnet_isa_64a37ccf11 (IsA lubavitch religious_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lubavitcher is a kind of orthodox jew", "pln": ["(: cnet_isa_4266deaaa8 (IsA lubavitcher orthodox_jew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lubber s hole is a kind of hole", "pln": ["(: cnet_isa_692a2c1478 (IsA lubber_s_hole hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lubber s line is a kind of reference point", "pln": ["(: cnet_isa_912785338b (IsA lubber_s_line reference_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lubricant is a kind of substance", "pln": ["(: cnet_isa_177e46bc8c (IsA lubricant substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lubricating system is a kind of mechanical system", "pln": ["(: cnet_isa_63e23f8255 (IsA lubricating_system mechanical_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lubrication is a kind of application", "pln": ["(: cnet_isa_5f3b305223 (IsA lubrication application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lubrication is a kind of condition", "pln": ["(: cnet_isa_dda5e8ee1f (IsA lubrication condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lucanidae is a kind of arthropod family", "pln": ["(: cnet_isa_c1018562e3 (IsA lucanidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lucidity is a kind of sanity", "pln": ["(: cnet_isa_85befa7e4e (IsA lucidity sanity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luciferin is a kind of animal pigment", "pln": ["(: cnet_isa_a16fc9bdb1 (IsA luciferin animal_pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lucilia is a kind of arthropod genus", "pln": ["(: cnet_isa_f81f4830d6 (IsA lucilia arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luck is a kind of phenomenon", "pln": ["(: cnet_isa_c985010657 (IsA luck phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lucky dip is a kind of lottery", "pln": ["(: cnet_isa_209601528e (IsA lucky_dip lottery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lucky dip is a kind of random sampling", "pln": ["(: cnet_isa_d6ca5448e0 (IsA lucky_dip random_sampling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lucubration is a kind of cogitation", "pln": ["(: cnet_isa_1f2d1b04cc (IsA lucubration cogitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lucubration is a kind of literary composition", "pln": ["(: cnet_isa_61934e4639 (IsA lucubration literary_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luddite is a kind of adversary", "pln": ["(: cnet_isa_645f132dbf (IsA luddite adversary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luddite is a kind of workman", "pln": ["(: cnet_isa_60ce057e07 (IsA luddite workman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ludi saeculare is a kind of celebration", "pln": ["(: cnet_isa_7a75109cfa (IsA ludi_saeculare celebration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ludian is a kind of baltic finnic", "pln": ["(: cnet_isa_9080624f46 (IsA ludian baltic_finnic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ludo is a kind of board game", "pln": ["(: cnet_isa_6ea777bcbb (IsA ludo board_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lufengpithecus is a kind of mammal genus", "pln": ["(: cnet_isa_261f00a059 (IsA lufengpithecus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luff is a kind of sailing", "pln": ["(: cnet_isa_a76fb3fcd7 (IsA luff sailing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luff is a kind of edge", "pln": ["(: cnet_isa_423e2f1ae4 (IsA luff edge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luffa is a kind of vine", "pln": ["(: cnet_isa_4c7ec7ae52 (IsA luffa vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luftwaffe is a kind of air force", "pln": ["(: cnet_isa_d9c378898b (IsA luftwaffe air_force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lug is a kind of projection", "pln": ["(: cnet_isa_c2fa255d8f (IsA lug projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lug wrench is a kind of wrench", "pln": ["(: cnet_isa_2f0cc77cc4 (IsA lug_wrench wrench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luganda is a kind of bantu", "pln": ["(: cnet_isa_45491a44d5 (IsA luganda bantu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luge is a kind of sled", "pln": ["(: cnet_isa_1ae99a664a (IsA luge sled) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luger is a kind of sledder", "pln": ["(: cnet_isa_0a56d5c6f6 (IsA luger sledder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luggage carrier is a kind of carrier", "pln": ["(: cnet_isa_b37499f746 (IsA luggage_carrier carrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luggage rack is a kind of carrier", "pln": ["(: cnet_isa_002534457b (IsA luggage_rack carrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lugger is a kind of boat", "pln": ["(: cnet_isa_1f8a841716 (IsA lugger boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luging is a kind of tobogganing", "pln": ["(: cnet_isa_a6b3eb16c2 (IsA luging tobogganing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lugsail is a kind of fore and aft sail", "pln": ["(: cnet_isa_959cc19869 (IsA lugsail fore_and_aft_sail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lugworm is a kind of polychaete", "pln": ["(: cnet_isa_5ee1554838 (IsA lugworm polychaete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lukewarmness is a kind of warmth", "pln": ["(: cnet_isa_c9a5851ab2 (IsA lukewarmness warmth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lull is a kind of calmness", "pln": ["(: cnet_isa_bac75cecab (IsA lull calmness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lullaby is a kind of song", "pln": ["(: cnet_isa_d5a7874bae (IsA lullaby song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lumbago is a kind of backache", "pln": ["(: cnet_isa_528adba8b4 (IsA lumbago backache) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lumbar artery is a kind of artery", "pln": ["(: cnet_isa_3204970752 (IsA lumbar_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lumbar nerve is a kind of spinal nerve", "pln": ["(: cnet_isa_406066336b (IsA lumbar_nerve spinal_nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lumbar plexus is a kind of nerve plexus", "pln": ["(: cnet_isa_54754cbf1d (IsA lumbar_plexus nerve_plexus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lumbar plexus is a kind of plexus", "pln": ["(: cnet_isa_659a4b70e3 (IsA lumbar_plexus plexus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lumbar puncture is a kind of centesis", "pln": ["(: cnet_isa_b81ae8ddc4 (IsA lumbar_puncture centesis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lumbar vein is a kind of vein", "pln": ["(: cnet_isa_99972960fe (IsA lumbar_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lumbar vertebra is a kind of vertebra", "pln": ["(: cnet_isa_c26762b993 (IsA lumbar_vertebra vertebra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lumber is a kind of building material", "pln": ["(: cnet_isa_2e4cd47c44 (IsA lumber building_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lumber room is a kind of storeroom", "pln": ["(: cnet_isa_c7a55e4140 (IsA lumber_room storeroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lumbering is a kind of trade", "pln": ["(: cnet_isa_39589fead0 (IsA lumbering trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lumberjack is a kind of jacket", "pln": ["(: cnet_isa_e381a029ed (IsA lumberjack jacket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lumberman is a kind of laborer", "pln": ["(: cnet_isa_2aa02547c9 (IsA lumberman laborer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lumbermill is a kind of factory", "pln": ["(: cnet_isa_2c35d252d7 (IsA lumbermill factory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lumberyard is a kind of workplace", "pln": ["(: cnet_isa_fe152e83b4 (IsA lumberyard workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lumbosacral plexus is a kind of nerve plexus", "pln": ["(: cnet_isa_682018b8c7 (IsA lumbosacral_plexus nerve_plexus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lumen is a kind of cavity", "pln": ["(: cnet_isa_48296393e8 (IsA lumen cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lumen is a kind of luminous flux unit", "pln": ["(: cnet_isa_83d244d5cb (IsA lumen luminous_flux_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luminance unit is a kind of light unit", "pln": ["(: cnet_isa_f7d2b39acf (IsA luminance_unit light_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "luminary is a kind of celebrity", "pln": ["(: cnet_isa_f62ddbc6eb (IsA luminary celebrity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luminescence is a kind of luminosity", "pln": ["(: cnet_isa_89b3e3f9fe (IsA luminescence luminosity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luminescence is a kind of light", "pln": ["(: cnet_isa_8f00f866c3 (IsA luminescence light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luminism is a kind of artistic movement", "pln": ["(: cnet_isa_378b6a65fa (IsA luminism artistic_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luminosity is a kind of physical property", "pln": ["(: cnet_isa_c346ae642e (IsA luminosity physical_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luminous energy is a kind of radiant energy", "pln": ["(: cnet_isa_02e92a1c29 (IsA luminous_energy radiant_energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luminous flux is a kind of radiant flux", "pln": ["(: cnet_isa_bc76048263 (IsA luminous_flux radiant_flux) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luminous flux unit is a kind of light unit", "pln": ["(: cnet_isa_353e786c4f (IsA luminous_flux_unit light_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luminous intensity unit is a kind of light unit", "pln": ["(: cnet_isa_a8c72bcd04 (IsA luminous_intensity_unit light_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lumma is a kind of armenian monetary unit", "pln": ["(: cnet_isa_d81d67acc6 (IsA lumma armenian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lump sugar is a kind of sugar", "pln": ["(: cnet_isa_85b14afb5f (IsA lump_sugar sugar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lump sum is a kind of payment", "pln": ["(: cnet_isa_9d3da0ba92 (IsA lump_sum payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lumpectomy is a kind of ablation", "pln": ["(: cnet_isa_f710379f71 (IsA lumpectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lumpenproletariat is a kind of labor", "pln": ["(: cnet_isa_617ef74d0b (IsA lumpenproletariat labor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lumpenus is a kind of fish genus", "pln": ["(: cnet_isa_062642fbb7 (IsA lumpenus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lumper is a kind of taxonomist", "pln": ["(: cnet_isa_703703b581 (IsA lumper taxonomist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lumpfish is a kind of scorpaenoid", "pln": ["(: cnet_isa_d2bcc9a076 (IsA lumpfish scorpaenoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lumpsucker is a kind of lumpfish", "pln": ["(: cnet_isa_6368868f5b (IsA lumpsucker lumpfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luna moth is a kind of saturniid", "pln": ["(: cnet_isa_6aaf641ebf (IsA luna_moth saturniid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lunacy is a kind of insanity", "pln": ["(: cnet_isa_8312124af4 (IsA lunacy insanity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lunar calendar is a kind of calendar", "pln": ["(: cnet_isa_cacfc9e8db (IsA lunar_calendar calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lunar caustic is a kind of silver nitrate", "pln": ["(: cnet_isa_4297aee60e (IsA lunar_caustic silver_nitrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lunar crater is a kind of crater", "pln": ["(: cnet_isa_444e86352e (IsA lunar_crater crater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lunar day is a kind of day", "pln": ["(: cnet_isa_d2d7ab91b3 (IsA lunar_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lunar eclipse is a kind of eclipse", "pln": ["(: cnet_isa_2c4ad2ff9e (IsA lunar_eclipse eclipse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lunar excursion module is a kind of spacecraft", "pln": ["(: cnet_isa_880c9f9a85 (IsA lunar_excursion_module spacecraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lunar latitude is a kind of line", "pln": ["(: cnet_isa_ff2d506cba (IsA lunar_latitude line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lunar month is a kind of month", "pln": ["(: cnet_isa_b79904696c (IsA lunar_month month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lunar year is a kind of year", "pln": ["(: cnet_isa_b34f7ff018 (IsA lunar_year year) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lunaria is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_ea020d2963 (IsA lunaria dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lunate bone is a kind of carpal bone", "pln": ["(: cnet_isa_9a71e67295 (IsA lunate_bone carpal_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lunatic is a kind of sick person", "pln": ["(: cnet_isa_e4a6a1d151 (IsA lunatic sick_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lunatic fringe is a kind of political unit", "pln": ["(: cnet_isa_0f94057068 (IsA lunatic_fringe political_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lunch is a kind of meal", "pln": ["(: cnet_isa_d3aa66e411 (IsA lunch meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lunch meat is a kind of cold cut", "pln": ["(: cnet_isa_e559607abc (IsA lunch_meat cold_cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lunch meat is a kind of loaf", "pln": ["(: cnet_isa_060e92015e (IsA lunch_meat loaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luncheon meeting is a kind of meeting", "pln": ["(: cnet_isa_16420bcf0d (IsA luncheon_meeting meeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luncher is a kind of eater", "pln": ["(: cnet_isa_898e34cbe3 (IsA luncher eater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lunching is a kind of eating", "pln": ["(: cnet_isa_404de76eb6 (IsA lunching eating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lunchroom is a kind of restaurant", "pln": ["(: cnet_isa_42e72202e1 (IsA lunchroom restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lunchtime is a kind of mealtime", "pln": ["(: cnet_isa_d54a019e89 (IsA lunchtime mealtime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lunda is a kind of bird genus", "pln": ["(: cnet_isa_d93c5ed1ff (IsA lunda bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lunette is a kind of fortification", "pln": ["(: cnet_isa_b5777386b6 (IsA lunette fortification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lunette is a kind of opening", "pln": ["(: cnet_isa_310401863b (IsA lunette opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lung is a kind of respiratory organ", "pln": ["(: cnet_isa_9feed9d41f (IsA lung respiratory_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lung cancer is a kind of carcinoma", "pln": ["(: cnet_isa_87e47da9a6 (IsA lung_cancer carcinoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lung power is a kind of voice", "pln": ["(: cnet_isa_a21758f9d1 (IsA lung_power voice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lunger is a kind of mover", "pln": ["(: cnet_isa_4d7e4d53ce (IsA lunger mover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lungfish is a kind of bony fish", "pln": ["(: cnet_isa_26f0eb2092 (IsA lungfish bony_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lungi is a kind of piece of cloth", "pln": ["(: cnet_isa_5634a00553 (IsA lungi piece_of_cloth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lungless salamander is a kind of salamander", "pln": ["(: cnet_isa_b873bba930 (IsA lungless_salamander salamander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lunisolar calendar is a kind of calendar", "pln": ["(: cnet_isa_41c613759a (IsA lunisolar_calendar calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lunitidal interval is a kind of time interval", "pln": ["(: cnet_isa_7c334fe49e (IsA lunitidal_interval time_interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lunula is a kind of decoration", "pln": ["(: cnet_isa_af554665b6 (IsA lunula decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luo is a kind of nilotic", "pln": ["(: cnet_isa_771e1d092a (IsA luo nilotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lupine is a kind of woody plant", "pln": ["(: cnet_isa_2db470f0c9 (IsA lupine woody_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lupinus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_4b33868bbb (IsA lupinus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lupus is a kind of skin disease", "pln": ["(: cnet_isa_7fe82bb195 (IsA lupus skin_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lupus erythematosus is a kind of autoimmune disease", "pln": ["(: cnet_isa_05c7c04a40 (IsA lupus_erythematosus autoimmune_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lupus erythematosus is a kind of lupus", "pln": ["(: cnet_isa_16ed04decd (IsA lupus_erythematosus lupus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lupus vulgaris is a kind of lupus", "pln": ["(: cnet_isa_ad6826de62 (IsA lupus_vulgaris lupus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lupus vulgaris is a kind of tuberculosis", "pln": ["(: cnet_isa_889d05c853 (IsA lupus_vulgaris tuberculosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lurch is a kind of gait", "pln": ["(: cnet_isa_8d1a39173e (IsA lurch gait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lurch is a kind of motion", "pln": ["(: cnet_isa_32417564eb (IsA lurch motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lurch is a kind of defeat", "pln": ["(: cnet_isa_9fc4381949 (IsA lurch defeat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lure is a kind of attraction", "pln": ["(: cnet_isa_11f7773939 (IsA lure attraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lurker is a kind of waiter", "pln": ["(: cnet_isa_7add672781 (IsA lurker waiter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lurking place is a kind of hiding place", "pln": ["(: cnet_isa_1873c8b71e (IsA lurking_place hiding_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luscinia is a kind of bird genus", "pln": ["(: cnet_isa_39a4a4920f (IsA luscinia bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lust is a kind of mortal sin", "pln": ["(: cnet_isa_17f9714bfd (IsA lust mortal_sin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luster is a kind of brightness", "pln": ["(: cnet_isa_955fb9739f (IsA luster brightness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "luster is a kind of glaze", "pln": ["(: cnet_isa_1cf9805a63 (IsA luster glaze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lusterware is a kind of pottery", "pln": ["(: cnet_isa_bc627315e3 (IsA lusterware pottery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lustrum is a kind of ceremony", "pln": ["(: cnet_isa_3c7e40ff50 (IsA lustrum ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lustrum is a kind of time period", "pln": ["(: cnet_isa_25722e20e6 (IsA lustrum time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lute is a kind of chordophone", "pln": ["(: cnet_isa_ff400ec397 (IsA lute chordophone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lute is a kind of sealing material", "pln": ["(: cnet_isa_bcbf1bf0f2 (IsA lute sealing_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lutefisk is a kind of dish", "pln": ["(: cnet_isa_352edcc7c1 (IsA lutefisk dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luteinizing hormone is a kind of gonadotropin", "pln": ["(: cnet_isa_ea465e2895 (IsA luteinizing_hormone gonadotropin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lutetium is a kind of metallic element", "pln": ["(: cnet_isa_5428ed5535 (IsA lutetium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lutheran is a kind of disciple", "pln": ["(: cnet_isa_5b98fc034a (IsA lutheran disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lutheran church is a kind of protestant denomination", "pln": ["(: cnet_isa_964b78ac9c (IsA lutheran_church protestant_denomination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lutheranism is a kind of protestantism", "pln": ["(: cnet_isa_27b5ebfcc8 (IsA lutheranism protestantism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luthier is a kind of craftsman", "pln": ["(: cnet_isa_f698dd8791 (IsA luthier craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lutist is a kind of musician", "pln": ["(: cnet_isa_52755a4179 (IsA lutist musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lutjanidae is a kind of fish family", "pln": ["(: cnet_isa_f67bf3b56c (IsA lutjanidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lutjanus is a kind of fish genus", "pln": ["(: cnet_isa_f4064228ff (IsA lutjanus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lutra is a kind of mammal genus", "pln": ["(: cnet_isa_cb66a37783 (IsA lutra mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lutrinae is a kind of mammal family", "pln": ["(: cnet_isa_35e393aa34 (IsA lutrinae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "luvaridae is a kind of fish family", "pln": ["(: cnet_isa_5db4c2096f (IsA luvaridae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luvarus is a kind of fish genus", "pln": ["(: cnet_isa_2940524657 (IsA luvarus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luwian is a kind of anatolian", "pln": ["(: cnet_isa_aee3f500ae (IsA luwian anatolian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lux is a kind of illumination unit", "pln": ["(: cnet_isa_23593c3d45 (IsA lux illumination_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luxation is a kind of shift", "pln": ["(: cnet_isa_ee3de4326f (IsA luxation shift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luxembourg franc is a kind of franc", "pln": ["(: cnet_isa_2de43856a7 (IsA luxembourg_franc franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "luxembourger is a kind of european", "pln": ["(: cnet_isa_e1fd9481a9 (IsA luxembourger european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luxuriance is a kind of abundance", "pln": ["(: cnet_isa_5d81879bb9 (IsA luxuriance abundance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luxuriation is a kind of pleasure", "pln": ["(: cnet_isa_382011f85c (IsA luxuriation pleasure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luxury is a kind of indulgence", "pln": ["(: cnet_isa_5729590681 (IsA luxury indulgence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luxury is a kind of wealth", "pln": ["(: cnet_isa_b26280d102 (IsA luxury wealth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luxury liner is a kind of liner", "pln": ["(: cnet_isa_5f2a52f2ca (IsA luxury_liner liner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "luyia is a kind of bantu", "pln": ["(: cnet_isa_4f7c5bd4bd (IsA luyia bantu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lwei is a kind of angolan monetary unit", "pln": ["(: cnet_isa_6607f6ebf2 (IsA lwei angolan_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lycaena is a kind of arthropod genus", "pln": ["(: cnet_isa_277ee36443 (IsA lycaena arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lycaenid is a kind of butterfly", "pln": ["(: cnet_isa_03f13822ba (IsA lycaenid butterfly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lycaenidae is a kind of arthropod family", "pln": ["(: cnet_isa_ebcfbf83a5 (IsA lycaenidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lycaeon is a kind of mammal genus", "pln": ["(: cnet_isa_a0ddd66596 (IsA lycaeon mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lycanthropy is a kind of magical ability", "pln": ["(: cnet_isa_b71b12a75d (IsA lycanthropy magical_ability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lyceum is a kind of hall", "pln": ["(: cnet_isa_6f48b0c46f (IsA lyceum hall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lychgate is a kind of gate", "pln": ["(: cnet_isa_a632f7e27a (IsA lychgate gate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lychnis is a kind of flower", "pln": ["(: cnet_isa_a5d1266399 (IsA lychnis flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lycian is a kind of anatolian", "pln": ["(: cnet_isa_d27fc9990a (IsA lycian anatolian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lycium is a kind of asterid dicot genus", "pln": ["(: cnet_isa_04e11176f5 (IsA lycium asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lycopene is a kind of carotenoid", "pln": ["(: cnet_isa_4558925673 (IsA lycopene carotenoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lycoperdaceae is a kind of fungus family", "pln": ["(: cnet_isa_c7af268ff6 (IsA lycoperdaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lycoperdale is a kind of fungus order", "pln": ["(: cnet_isa_0840281a13 (IsA lycoperdale fungus_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lycoperdon is a kind of fungus genus", "pln": ["(: cnet_isa_a72356701f (IsA lycoperdon fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lycopersicon is a kind of asterid dicot genus", "pln": ["(: cnet_isa_7fb0ea8a11 (IsA lycopersicon asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lycophyta is a kind of division", "pln": ["(: cnet_isa_61d32d479c (IsA lycophyta division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lycopodiaceae is a kind of fern family", "pln": ["(: cnet_isa_2f19d4c892 (IsA lycopodiaceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lycopodiale is a kind of plant order", "pln": ["(: cnet_isa_0843db2891 (IsA lycopodiale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lycopodineae is a kind of class", "pln": ["(: cnet_isa_3f11b0794c (IsA lycopodineae class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lycopodium is a kind of fern genus", "pln": ["(: cnet_isa_503bcf2f22 (IsA lycopodium fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lycopsida is a kind of class", "pln": ["(: cnet_isa_d722d23b7e (IsA lycopsida class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lycopus is a kind of asterid dicot genus", "pln": ["(: cnet_isa_f9b7f6ea41 (IsA lycopus asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lycosa is a kind of arthropod genus", "pln": ["(: cnet_isa_3799ec2b12 (IsA lycosa arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lycosidae is a kind of arthropod family", "pln": ["(: cnet_isa_9eee9cf43f (IsA lycosidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lydian is a kind of anatolian", "pln": ["(: cnet_isa_e0fd538d0b (IsA lydian anatolian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lye is a kind of caustic", "pln": ["(: cnet_isa_bf6b090173 (IsA lye caustic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lye hominy is a kind of hominy", "pln": ["(: cnet_isa_671e72368a (IsA lye_hominy hominy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lygaeid is a kind of hemipterous insect", "pln": ["(: cnet_isa_949d2a36b8 (IsA lygaeid hemipterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lygaeidae is a kind of arthropod family", "pln": ["(: cnet_isa_6184485fc5 (IsA lygaeidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lyginopteris is a kind of gymnosperm genus", "pln": ["(: cnet_isa_0c33e4073a (IsA lyginopteris gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lygodium is a kind of fern genus", "pln": ["(: cnet_isa_e33b04d457 (IsA lygodium fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lygus is a kind of arthropod genus", "pln": ["(: cnet_isa_93bbf21d2a (IsA lygus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lygus bug is a kind of mirid bug", "pln": ["(: cnet_isa_e40d7ffce4 (IsA lygus_bug mirid_bug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lying is a kind of falsification", "pln": ["(: cnet_isa_06d6dfe7e8 (IsA lying falsification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lymantria is a kind of arthropod genus", "pln": ["(: cnet_isa_dcac42a965 (IsA lymantria arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lymantriid is a kind of moth", "pln": ["(: cnet_isa_eb08a667ec (IsA lymantriid moth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lymantriidae is a kind of arthropod family", "pln": ["(: cnet_isa_1afcc68568 (IsA lymantriidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lyme disease is a kind of zoonosis", "pln": ["(: cnet_isa_95adf3f88c (IsA lyme_disease zoonosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lyme grass is a kind of grass", "pln": ["(: cnet_isa_3730e0f3ca (IsA lyme_grass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lymph is a kind of liquid body substance", "pln": ["(: cnet_isa_2d13713482 (IsA lymph liquid_body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lymph node is a kind of lymphatic tissue", "pln": ["(: cnet_isa_48f63c0d68 (IsA lymph_node lymphatic_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lymph vessel is a kind of duct", "pln": ["(: cnet_isa_48cc39ecee (IsA lymph_vessel duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lymphadenitis is a kind of inflammation", "pln": ["(: cnet_isa_84e3559c51 (IsA lymphadenitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lymphadenoma is a kind of adenoma", "pln": ["(: cnet_isa_15c682e215 (IsA lymphadenoma adenoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lymphadenopathy is a kind of pathology", "pln": ["(: cnet_isa_368c1649b0 (IsA lymphadenopathy pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lymphangiectasia is a kind of ectasia", "pln": ["(: cnet_isa_5d9c1c2f3f (IsA lymphangiectasia ectasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lymphangiogram is a kind of angiogram", "pln": ["(: cnet_isa_8cb592dd5e (IsA lymphangiogram angiogram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lymphangiography is a kind of angiography", "pln": ["(: cnet_isa_0a396320e1 (IsA lymphangiography angiography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lymphangioma is a kind of angioma", "pln": ["(: cnet_isa_45eb8cfc96 (IsA lymphangioma angioma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lymphangitis is a kind of inflammation", "pln": ["(: cnet_isa_f689f9e2a9 (IsA lymphangitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lymphatic system is a kind of vascular system", "pln": ["(: cnet_isa_5c616267f9 (IsA lymphatic_system vascular_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lymphatic tissue is a kind of animal tissue", "pln": ["(: cnet_isa_42bb579bf4 (IsA lymphatic_tissue animal_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lymphedema is a kind of edema", "pln": ["(: cnet_isa_465e681cb9 (IsA lymphedema edema) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lymphoblast is a kind of lymphocyte", "pln": ["(: cnet_isa_a05eb534a1 (IsA lymphoblast lymphocyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lymphoblastic leukemia is a kind of lymphocytic leukemia", "pln": ["(: cnet_isa_219adf62d5 (IsA lymphoblastic_leukemia lymphocytic_leukemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lymphocyte is a kind of leukocyte", "pln": ["(: cnet_isa_d171f8493d (IsA lymphocyte leukocyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lymphocytic choriomeningitis is a kind of choriomeningitis", "pln": ["(: cnet_isa_f2a9d056d9 (IsA lymphocytic_choriomeningitis choriomeningitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lymphocytic choriomeningitis virus is a kind of arenavirus", "pln": ["(: cnet_isa_140c2154f1 (IsA lymphocytic_choriomeningitis_virus arenavirus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lymphocytic leukemia is a kind of leukemia", "pln": ["(: cnet_isa_32b63b8b0f (IsA lymphocytic_leukemia leukemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lymphocytopenia is a kind of blood disease", "pln": ["(: cnet_isa_cbd45a39d4 (IsA lymphocytopenia blood_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lymphocytosis is a kind of blood disease", "pln": ["(: cnet_isa_3072593c10 (IsA lymphocytosis blood_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lymphogranuloma is a kind of swelling", "pln": ["(: cnet_isa_09c09f1083 (IsA lymphogranuloma swelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lymphogranuloma venereum is a kind of venereal disease", "pln": ["(: cnet_isa_98fe7ae09b (IsA lymphogranuloma_venereum venereal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lymphokine is a kind of cytokine", "pln": ["(: cnet_isa_211a6d4fdd (IsA lymphokine cytokine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lymphoma is a kind of cancer", "pln": ["(: cnet_isa_90a1001a5f (IsA lymphoma cancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lymphopoiesis is a kind of organic process", "pln": ["(: cnet_isa_f9540bba9f (IsA lymphopoiesis organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lymphuria is a kind of symptom", "pln": ["(: cnet_isa_b80f42471d (IsA lymphuria symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lynch law is a kind of practice", "pln": ["(: cnet_isa_5eaeeeff55 (IsA lynch_law practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lynch mob is a kind of mob", "pln": ["(: cnet_isa_01dfdf5242 (IsA lynch_mob mob) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lynching is a kind of murder", "pln": ["(: cnet_isa_9ed9c558ef (IsA lynching murder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lynx is a kind of cat", "pln": ["(: cnet_isa_9719b7afe6 (IsA lynx cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lynx is a kind of wildcat", "pln": ["(: cnet_isa_6fcccb689f (IsA lynx wildcat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lyonia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_074a75dd7a (IsA lyonia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lyonnaise sauce is a kind of sauce", "pln": ["(: cnet_isa_4618547324 (IsA lyonnaise_sauce sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lypressin is a kind of antidiuretic", "pln": ["(: cnet_isa_94e41c65a0 (IsA lypressin antidiuretic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lypressin is a kind of vasoconstrictor", "pln": ["(: cnet_isa_54f18ef424 (IsA lypressin vasoconstrictor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lyrate leaf is a kind of simple leaf", "pln": ["(: cnet_isa_28f54d512f (IsA lyrate_leaf simple_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lyre is a kind of instrument", "pln": ["(: cnet_isa_3c7598a8ab (IsA lyre instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lyre is a kind of harp", "pln": ["(: cnet_isa_fbff0462e8 (IsA lyre harp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lyre snake is a kind of colubrid snake", "pln": ["(: cnet_isa_99698be487 (IsA lyre_snake colubrid_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lyrebird is a kind of passerine", "pln": ["(: cnet_isa_294aa3b543 (IsA lyrebird passerine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lyric is a kind of poem", "pln": ["(: cnet_isa_dd693f2c8f (IsA lyric poem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lyric is a kind of text", "pln": ["(: cnet_isa_d16fa91370 (IsA lyric text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lyricality is a kind of musicality", "pln": ["(: cnet_isa_096ba3526c (IsA lyricality musicality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lyricism is a kind of exuberance", "pln": ["(: cnet_isa_507854098d (IsA lyricism exuberance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lyricist is a kind of writer", "pln": ["(: cnet_isa_f81553e166 (IsA lyricist writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lyrurus is a kind of bird genus", "pln": ["(: cnet_isa_6bc817479a (IsA lyrurus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lysergic acid is a kind of acid", "pln": ["(: cnet_isa_a9660b3373 (IsA lysergic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lysergic acid diethylamide is a kind of controlled substance", "pln": ["(: cnet_isa_71c86fd373 (IsA lysergic_acid_diethylamide controlled_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lysergic acid diethylamide is a kind of drug of abuse", "pln": ["(: cnet_isa_665852ce16 (IsA lysergic_acid_diethylamide drug_of_abuse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lysergic acid diethylamide is a kind of hallucinogen", "pln": ["(: cnet_isa_e85895d8ad (IsA lysergic_acid_diethylamide hallucinogen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lysichiton is a kind of monocot genus", "pln": ["(: cnet_isa_133dbd0a5b (IsA lysichiton monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lysiloma is a kind of rosid dicot genus", "pln": ["(: cnet_isa_36ea0ae895 (IsA lysiloma rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lysimachia is a kind of dicot genus", "pln": ["(: cnet_isa_12b055b21d (IsA lysimachia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lysin is a kind of substance", "pln": ["(: cnet_isa_6add2c9142 (IsA lysin substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lysine is a kind of essential amino acid", "pln": ["(: cnet_isa_29c95f9ff3 (IsA lysine essential_amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lysine intolerance is a kind of metabolic disorder", "pln": ["(: cnet_isa_37dfc62f36 (IsA lysine_intolerance metabolic_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "lysinemia is a kind of inborn error of metabolism", "pln": ["(: cnet_isa_b24d238a7b (IsA lysinemia inborn_error_of_metabolism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lysis is a kind of dissolution", "pln": ["(: cnet_isa_caea66ea6b (IsA lysis dissolution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lysis is a kind of convalescence", "pln": ["(: cnet_isa_0697169b9a (IsA lysis convalescence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lysogenization is a kind of organic process", "pln": ["(: cnet_isa_dbd6dc4bbb (IsA lysogenization organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lysogeny is a kind of condition", "pln": ["(: cnet_isa_3cd9705989 (IsA lysogeny condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lysol is a kind of cresol", "pln": ["(: cnet_isa_df1414bb07 (IsA lysol cresol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lysosome is a kind of organelle", "pln": ["(: cnet_isa_cc62e1550c (IsA lysosome organelle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lysozyme is a kind of enzyme", "pln": ["(: cnet_isa_8a3764035e (IsA lysozyme enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lyssavirus is a kind of animal virus", "pln": ["(: cnet_isa_0c20783dcf (IsA lyssavirus animal_virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lythraceae is a kind of dicot family", "pln": ["(: cnet_isa_e17a081cdb (IsA lythraceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "lythrum is a kind of dicot genus", "pln": ["(: cnet_isa_7d1e1ea703 (IsA lythrum dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "m is a kind of letter", "pln": ["(: cnet_isa_6f64799091 (IsA m letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "m1 is a kind of money supply", "pln": ["(: cnet_isa_4178208a36 (IsA m1 money_supply) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "m2 is a kind of money supply", "pln": ["(: cnet_isa_24877ca730 (IsA m2 money_supply) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "m24 is a kind of dedicated military sniper rifle", "pln": ["(: cnet_isa_2082f02cdd (IsA m24 dedicated_military_sniper_rifle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "m3 is a kind of money supply", "pln": ["(: cnet_isa_82fb28ad1f (IsA m3 money_supply) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "m4 is a kind of motorway in england", "pln": ["(: cnet_isa_f68b1bd643 (IsA m4 motorway_in_england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "m 16 is a kind of rifle", "pln": ["(: cnet_isa_24e2c2fe10 (IsA m_16 rifle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "m theory is a kind of model", "pln": ["(: cnet_isa_c18cd354a0 (IsA m_theory model) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ma is a kind of mother", "pln": ["(: cnet_isa_b4902e4ac9 (IsA ma mother) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "maar is a kind of volcanic crater", "pln": ["(: cnet_isa_a1b55259ff (IsA maar volcanic_crater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mac is a kind of computer", "pln": ["(: cnet_isa_49e0d68357 (IsA mac computer) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macaca is a kind of mammal genus", "pln": ["(: cnet_isa_986dd1e61a (IsA macaca mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macadam is a kind of paving material", "pln": ["(: cnet_isa_2b3c5d5012 (IsA macadam paving_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macadamia is a kind of nut tree", "pln": ["(: cnet_isa_fb44e81d51 (IsA macadamia nut_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macadamia integrifolia is a kind of macadamia", "pln": ["(: cnet_isa_efca1f66c4 (IsA macadamia_integrifolia macadamia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macadamia nut is a kind of edible nut", "pln": ["(: cnet_isa_596b23efc3 (IsA macadamia_nut edible_nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "macadamia nut is a kind of macadamia", "pln": ["(: cnet_isa_edfedbe369 (IsA macadamia_nut macadamia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macao monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_76ab4eb76a (IsA macao_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macaque is a kind of old world monkey", "pln": ["(: cnet_isa_22e3f2c69e (IsA macaque old_world_monkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macaroni is a kind of pasta", "pln": ["(: cnet_isa_e8468fc62a (IsA macaroni pasta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macaroni is a kind of dandy", "pln": ["(: cnet_isa_260c82620a (IsA macaroni dandy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macaroni and cheese is a kind of pasta", "pln": ["(: cnet_isa_cb5abca027 (IsA macaroni_and_cheese pasta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macaroni salad is a kind of pasta salad", "pln": ["(: cnet_isa_4f1b1e940f (IsA macaroni_salad pasta_salad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macaroon is a kind of cookie", "pln": ["(: cnet_isa_3d69d89b56 (IsA macaroon cookie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macaw is a kind of parrot", "pln": ["(: cnet_isa_8e95890286 (IsA macaw parrot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mace is a kind of staff", "pln": ["(: cnet_isa_b6ae124151 (IsA mace staff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mace is a kind of spice", "pln": ["(: cnet_isa_ca2847cd1f (IsA mace spice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macebearer is a kind of official", "pln": ["(: cnet_isa_85d30fdb0e (IsA macebearer official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macedoine is a kind of dish", "pln": ["(: cnet_isa_e9617eb4e0 (IsA macedoine dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macedonian is a kind of slavic", "pln": ["(: cnet_isa_d3444949e2 (IsA macedonian slavic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macedonian is a kind of european", "pln": ["(: cnet_isa_296f102223 (IsA macedonian european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maceration is a kind of softening", "pln": ["(: cnet_isa_20334be5fc (IsA maceration softening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macguffin is a kind of plot element", "pln": ["(: cnet_isa_4958e392e7 (IsA macguffin plot_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mach number is a kind of ratio", "pln": ["(: cnet_isa_fd6c5d1607 (IsA mach_number ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machaeranthera is a kind of asterid dicot genus", "pln": ["(: cnet_isa_a1b98f3c4f (IsA machaeranthera asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machete is a kind of knife", "pln": ["(: cnet_isa_aa20cb2d0f (IsA machete knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machiavellian is a kind of follower", "pln": ["(: cnet_isa_fd12d0991d (IsA machiavellian follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machiavellianism is a kind of autocracy", "pln": ["(: cnet_isa_0e63f9b15d (IsA machiavellianism autocracy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machicolation is a kind of parapet", "pln": ["(: cnet_isa_f4ca566274 (IsA machicolation parapet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machilidae is a kind of arthropod family", "pln": ["(: cnet_isa_cfc0cf303c (IsA machilidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machine is a kind of complex tool", "pln": ["(: cnet_isa_4474a34672 (IsA machine complex_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machine is a kind of device", "pln": ["(: cnet_isa_1fa7f16d1b (IsA machine device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machine is a kind of mechanical device", "pln": ["(: cnet_isa_d948f4bcad (IsA machine mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machine is a kind of organization", "pln": ["(: cnet_isa_32eba7e4e8 (IsA machine organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machine is a kind of person", "pln": ["(: cnet_isa_4ed6eac715 (IsA machine person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machine bolt is a kind of bolt", "pln": ["(: cnet_isa_686fd2cd16 (IsA machine_bolt bolt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machine code is a kind of code", "pln": ["(: cnet_isa_04ef39e9d5 (IsA machine_code code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machine displayable text is a kind of electronic text", "pln": ["(: cnet_isa_fca4d9ec89 (IsA machine_displayable_text electronic_text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machine gun is a kind of automatic firearm", "pln": ["(: cnet_isa_e7f47a9074 (IsA machine_gun automatic_firearm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machine politician is a kind of politician", "pln": ["(: cnet_isa_245766ae5b (IsA machine_politician politician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machine readable dictionary is a kind of lexical database", "pln": ["(: cnet_isa_e7f29e68c8 (IsA machine_readable_dictionary lexical_database) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machine readable text is a kind of electronic text", "pln": ["(: cnet_isa_817e987453 (IsA machine_readable_text electronic_text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machine screw is a kind of screw", "pln": ["(: cnet_isa_d9aae4b404 (IsA machine_screw screw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machine shop is a kind of workshop", "pln": ["(: cnet_isa_aa70147d6c (IsA machine_shop workshop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machine stitch is a kind of embroidery stitch", "pln": ["(: cnet_isa_046793f3c0 (IsA machine_stitch embroidery_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machine tool is a kind of machine", "pln": ["(: cnet_isa_82e7c320c1 (IsA machine_tool machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machine translation is a kind of artificial intelligence", "pln": ["(: cnet_isa_317fe26a5f (IsA machine_translation artificial_intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machine translation is a kind of computational linguistic", "pln": ["(: cnet_isa_6995f0fd07 (IsA machine_translation computational_linguistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machinery is a kind of machine", "pln": ["(: cnet_isa_b1dac055da (IsA machinery machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machinery is a kind of system", "pln": ["(: cnet_isa_c6a51bc42c (IsA machinery system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machinist s vise is a kind of vise", "pln": ["(: cnet_isa_cb70972c45 (IsA machinist_s_vise vise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machinist is a kind of craftsman", "pln": ["(: cnet_isa_0f73a685a9 (IsA machinist craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machismo is a kind of masculinity", "pln": ["(: cnet_isa_5ed8c13d2d (IsA machismo masculinity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machmeter is a kind of speedometer", "pln": ["(: cnet_isa_755769e724 (IsA machmeter speedometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macho is a kind of male", "pln": ["(: cnet_isa_37bf8d4bc7 (IsA macho male) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "machupo virus is a kind of arenavirus", "pln": ["(: cnet_isa_a8280abf11 (IsA machupo_virus arenavirus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macintosh is a kind of computer", "pln": ["(: cnet_isa_2250562082 (IsA macintosh computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "macintosh is a kind of raincoat", "pln": ["(: cnet_isa_2c4383e7f7 (IsA macintosh raincoat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mackem is a kind of english person", "pln": ["(: cnet_isa_fb68bf2391 (IsA mackem english_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mackerel is a kind of scombroid", "pln": ["(: cnet_isa_2d5d640404 (IsA mackerel scombroid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mackerel is a kind of saltwater fish", "pln": ["(: cnet_isa_fe0bebe5f6 (IsA mackerel saltwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mackerel scad is a kind of scad", "pln": ["(: cnet_isa_457a5ca3b0 (IsA mackerel_scad scad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mackerel shark is a kind of shark", "pln": ["(: cnet_isa_dc96b34f00 (IsA mackerel_shark shark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mackerel sky is a kind of sky", "pln": ["(: cnet_isa_dcf8ac17f3 (IsA mackerel_sky sky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mackinaw is a kind of blanket", "pln": ["(: cnet_isa_3748485294 (IsA mackinaw blanket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mackinaw is a kind of boat", "pln": ["(: cnet_isa_895c2aea6f (IsA mackinaw boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mackinaw is a kind of coat", "pln": ["(: cnet_isa_db1c3e689e (IsA mackinaw coat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mackinaw is a kind of fabric", "pln": ["(: cnet_isa_635ea0584a (IsA mackinaw fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mackintosh is a kind of fabric", "pln": ["(: cnet_isa_dff494fb7f (IsA mackintosh fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mackle is a kind of impression", "pln": ["(: cnet_isa_f75785654a (IsA mackle impression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macleaya is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_504dcfdc33 (IsA macleaya dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maclura is a kind of dicot genus", "pln": ["(: cnet_isa_1e1997f106 (IsA maclura dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macon is a kind of wine", "pln": ["(: cnet_isa_2ec3cc31aa (IsA macon wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "macoun is a kind of mcintosh", "pln": ["(: cnet_isa_d2a46c88f7 (IsA macoun mcintosh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macowanite is a kind of fungus genus", "pln": ["(: cnet_isa_dd93e9b856 (IsA macowanite fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macowanite americanus is a kind of fungus", "pln": ["(: cnet_isa_1f9bc462a5 (IsA macowanite_americanus fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macrame is a kind of lace", "pln": ["(: cnet_isa_7e88b74a08 (IsA macrame lace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macrencephaly is a kind of abnormality", "pln": ["(: cnet_isa_80aa05d9ee (IsA macrencephaly abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macro is a kind of instruction", "pln": ["(: cnet_isa_27e1c69e1e (IsA macro instruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macrobiotic diet is a kind of vegetarianism", "pln": ["(: cnet_isa_5cb689a032 (IsA macrobiotic_diet vegetarianism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macrobiotic is a kind of dietetic", "pln": ["(: cnet_isa_1918b83529 (IsA macrobiotic dietetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "macrocephalon is a kind of bird genus", "pln": ["(: cnet_isa_533a520c41 (IsA macrocephalon bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "macrocephaly is a kind of abnormality", "pln": ["(: cnet_isa_5dfeb4c04c (IsA macrocephaly abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macrocheira is a kind of arthropod genus", "pln": ["(: cnet_isa_b4af56bf5f (IsA macrocheira arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macroclemy is a kind of reptile genus", "pln": ["(: cnet_isa_628c25e9ce (IsA macroclemy reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macrocytic anemia is a kind of anemia", "pln": ["(: cnet_isa_f24a2e2851 (IsA macrocytic_anemia anemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macrocytosis is a kind of pathology", "pln": ["(: cnet_isa_32111b65bf (IsA macrocytosis pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macrodactylus is a kind of arthropod genus", "pln": ["(: cnet_isa_0a19454c66 (IsA macrodactylus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macroeconomic is a kind of economic", "pln": ["(: cnet_isa_0b0e34df5e (IsA macroeconomic economic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macroeconomist is a kind of economist", "pln": ["(: cnet_isa_c2e4ea9e6b (IsA macroeconomist economist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macroevolution is a kind of evolution", "pln": ["(: cnet_isa_257d95f989 (IsA macroevolution evolution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macroglossia is a kind of birth defect", "pln": ["(: cnet_isa_a48cf6c803 (IsA macroglossia birth_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "macromolecule is a kind of molecule", "pln": ["(: cnet_isa_2d6962f37f (IsA macromolecule molecule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macromolecule is a kind of organic compound", "pln": ["(: cnet_isa_5cd8c3f43d (IsA macromolecule organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macron is a kind of diacritical mark", "pln": ["(: cnet_isa_4266cb2938 (IsA macron diacritical_mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macronecte is a kind of bird genus", "pln": ["(: cnet_isa_d103bb2ba5 (IsA macronecte bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macrophage is a kind of phagocyte", "pln": ["(: cnet_isa_eacd3d6eb7 (IsA macrophage phagocyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macropodidae is a kind of mammal family", "pln": ["(: cnet_isa_ed66134961 (IsA macropodidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macropus is a kind of mammal genus", "pln": ["(: cnet_isa_e588eba795 (IsA macropus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macrorhamphosidae is a kind of fish family", "pln": ["(: cnet_isa_84884d035c (IsA macrorhamphosidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macrothelypteris is a kind of fern genus", "pln": ["(: cnet_isa_2213e6773f (IsA macrothelypteris fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macrotis is a kind of mammal genus", "pln": ["(: cnet_isa_baa7603723 (IsA macrotis mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macrotus is a kind of leafnose bat", "pln": ["(: cnet_isa_0cdb8638e6 (IsA macrotus leafnose_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macrotyloma is a kind of rosid dicot genus", "pln": ["(: cnet_isa_ad59c105a8 (IsA macrotyloma rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macrouridae is a kind of fish family", "pln": ["(: cnet_isa_ab3188333b (IsA macrouridae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "macrozamia is a kind of cycad", "pln": ["(: cnet_isa_ddfc7e392e (IsA macrozamia cycad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macrozoarce is a kind of fish genus", "pln": ["(: cnet_isa_365a2b8446 (IsA macrozoarce fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macula is a kind of area", "pln": ["(: cnet_isa_f8fa434956 (IsA macula area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "macular degeneration is a kind of degeneration", "pln": ["(: cnet_isa_b329952258 (IsA macular_degeneration degeneration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macular degeneration is a kind of eye disease", "pln": ["(: cnet_isa_dc14be5d16 (IsA macular_degeneration eye_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macular edema is a kind of eye disease", "pln": ["(: cnet_isa_c7d14ed519 (IsA macular_edema eye_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macule is a kind of spot", "pln": ["(: cnet_isa_86d402adcd (IsA macule spot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "macumba is a kind of cult", "pln": ["(: cnet_isa_f1109840ac (IsA macumba cult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macumba is a kind of popular music", "pln": ["(: cnet_isa_981dbcf1be (IsA macumba popular_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "macushla is a kind of darling", "pln": ["(: cnet_isa_c208c970ff (IsA macushla darling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mad scientist is a kind of person", "pln": ["(: cnet_isa_42860aef45 (IsA mad_scientist person) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "madagascan is a kind of african", "pln": ["(: cnet_isa_59d378f8c3 (IsA madagascan african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "madagascar cat is a kind of lemur", "pln": ["(: cnet_isa_d5b6578280 (IsA madagascar_cat lemur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "madagascar franc is a kind of franc", "pln": ["(: cnet_isa_cbff260ca9 (IsA madagascar_franc franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "madagascar jasmine is a kind of stephanotis", "pln": ["(: cnet_isa_bd182b92d0 (IsA madagascar_jasmine stephanotis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "madam is a kind of businesswoman", "pln": ["(: cnet_isa_e65c037fe2 (IsA madam businesswoman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "madame is a kind of dame", "pln": ["(: cnet_isa_dd4bc3cce7 (IsA madame dame) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "madder is a kind of madderwort", "pln": ["(: cnet_isa_d7f8d36a00 (IsA madder madderwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "madderwort is a kind of angiosperm", "pln": ["(: cnet_isa_960d9c35c1 (IsA madderwort angiosperm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "madeira is a kind of fortified wine", "pln": ["(: cnet_isa_45ad536ea5 (IsA madeira fortified_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "madeira cake is a kind of sponge cake", "pln": ["(: cnet_isa_bc001ac062 (IsA madeira_cake sponge_cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "madia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_232ec1e19d (IsA madia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "madia oil is a kind of vegetable oil", "pln": ["(: cnet_isa_7cfab2d466 (IsA madia_oil vegetable_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "madonna is a kind of songwriter", "pln": ["(: cnet_isa_9a1d028bc6 (IsA madonna songwriter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "madonna lily is a kind of lily", "pln": ["(: cnet_isa_8434101a65 (IsA madonna_lily lily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "madoqua is a kind of mammal genus", "pln": ["(: cnet_isa_e763bcaf77 (IsA madoqua mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "madra is a kind of fabric", "pln": ["(: cnet_isa_7d1913fa2d (IsA madra fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "madrasa is a kind of religious school", "pln": ["(: cnet_isa_ebfca3b923 (IsA madrasa religious_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "madreporaria is a kind of animal order", "pln": ["(: cnet_isa_3682c7197e (IsA madreporaria animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "madrigal is a kind of partsong", "pln": ["(: cnet_isa_2905490f2c (IsA madrigal partsong) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "madrigalist is a kind of singer", "pln": ["(: cnet_isa_33defb389f (IsA madrigalist singer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "madrilene is a kind of consomme", "pln": ["(: cnet_isa_6bdf55d9c9 (IsA madrilene consomme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "madrona is a kind of arbutus", "pln": ["(: cnet_isa_554641eabf (IsA madrona arbutus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "madwoman is a kind of lunatic", "pln": ["(: cnet_isa_9d18e6e241 (IsA madwoman lunatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mae west is a kind of life jacket", "pln": ["(: cnet_isa_ac7d5c37e7 (IsA mae_west life_jacket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maeandra is a kind of coelenterate genus", "pln": ["(: cnet_isa_a4f9ce2709 (IsA maeandra coelenterate_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maenad is a kind of woman", "pln": ["(: cnet_isa_8b118b031b (IsA maenad woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maestro is a kind of artist", "pln": ["(: cnet_isa_5f03228872 (IsA maestro artist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mafia is a kind of clique", "pln": ["(: cnet_isa_3e559ea84a (IsA mafia clique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mafia is a kind of syndicate", "pln": ["(: cnet_isa_a902b14c7e (IsA mafia syndicate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mafia is a kind of organized crime", "pln": ["(: cnet_isa_ab6faee6d3 (IsA mafia organized_crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mafioso is a kind of criminal", "pln": ["(: cnet_isa_77cde63f91 (IsA mafioso criminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mafioso is a kind of sicilian", "pln": ["(: cnet_isa_e5fb74a040 (IsA mafioso sicilian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magadhan is a kind of sanskrit", "pln": ["(: cnet_isa_877221b3a4 (IsA magadhan sanskrit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magazine is a kind of book", "pln": ["(: cnet_isa_fda53749da (IsA magazine book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magazine is a kind of product", "pln": ["(: cnet_isa_054b5ded86 (IsA magazine product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magazine is a kind of storehouse", "pln": ["(: cnet_isa_773c4475e5 (IsA magazine storehouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magazine is a kind of supply chamber", "pln": ["(: cnet_isa_d34308b0bd (IsA magazine supply_chamber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magazine is a kind of press", "pln": ["(: cnet_isa_d4d9c9ed4b (IsA magazine press) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magazine is a kind of publication", "pln": ["(: cnet_isa_921f236871 (IsA magazine publication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magazine is a kind of publisher", "pln": ["(: cnet_isa_5b4e986169 (IsA magazine publisher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magazine article is a kind of article", "pln": ["(: cnet_isa_317a222ba7 (IsA magazine_article article) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magazine rack is a kind of rack", "pln": ["(: cnet_isa_d2b087f118 (IsA magazine_rack rack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magazine is a kind of about boat", "pln": ["(: cnet_isa_6d3d54072f (IsA magazine about_boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magdalen is a kind of sinner", "pln": ["(: cnet_isa_cb3ba169d9 (IsA magdalen sinner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magenta is a kind of colour", "pln": ["(: cnet_isa_efbe1a037d (IsA magenta colour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maggot is a kind of grub", "pln": ["(: cnet_isa_8f1ec5ac74 (IsA maggot grub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magh is a kind of hindu calendar month", "pln": ["(: cnet_isa_d994a52f24 (IsA magh hindu_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magic is a kind of illusion", "pln": ["(: cnet_isa_9b83c7cc0a (IsA magic illusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magic is a kind of supernaturalism", "pln": ["(: cnet_isa_4f509fd5b8 (IsA magic supernaturalism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magic bullet is a kind of remedy", "pln": ["(: cnet_isa_2d5033e62b (IsA magic_bullet remedy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magic lantern is a kind of slide projector", "pln": ["(: cnet_isa_0f8849265e (IsA magic_lantern slide_projector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magic number is a kind of atomic number", "pln": ["(: cnet_isa_ec9ec3bf08 (IsA magic_number atomic_number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magic realism is a kind of genre", "pln": ["(: cnet_isa_c59640397e (IsA magic_realism genre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magic square is a kind of square matrix", "pln": ["(: cnet_isa_0d7f00ebbe (IsA magic_square square_matrix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magic trick is a kind of performance", "pln": ["(: cnet_isa_2dcd34330e (IsA magic_trick performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "magical ability is a kind of ability", "pln": ["(: cnet_isa_e9315e7ec8 (IsA magical_ability ability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magician is a kind of performer", "pln": ["(: cnet_isa_14da9fbfd6 (IsA magician performer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magicicada is a kind of arthropod genus", "pln": ["(: cnet_isa_70886eb4fc (IsA magicicada arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "magistracy is a kind of position", "pln": ["(: cnet_isa_6937599ffd (IsA magistracy position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magistrate is a kind of judge", "pln": ["(: cnet_isa_d54de8ba71 (IsA magistrate judge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magma is a kind of rock", "pln": ["(: cnet_isa_b98d1f6747 (IsA magma rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnesite is a kind of mineral", "pln": ["(: cnet_isa_f624b38ac7 (IsA magnesite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnesium is a kind of metallic element", "pln": ["(: cnet_isa_ea6d641c9e (IsA magnesium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnesium bicarbonate is a kind of bicarbonate", "pln": ["(: cnet_isa_eaac26b30f (IsA magnesium_bicarbonate bicarbonate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnesium carbonate is a kind of carbonate", "pln": ["(: cnet_isa_4c8b3629d2 (IsA magnesium_carbonate carbonate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnesium hydroxide is a kind of hydroxide", "pln": ["(: cnet_isa_edb9db03e9 (IsA magnesium_hydroxide hydroxide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnesium nitride is a kind of nitride", "pln": ["(: cnet_isa_e1225e6943 (IsA magnesium_nitride nitride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnesium sulfate is a kind of sulfate", "pln": ["(: cnet_isa_99dc1b6312 (IsA magnesium_sulfate sulfate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnet is a kind of device", "pln": ["(: cnet_isa_5d5eaa771e (IsA magnet device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetic bottle is a kind of container", "pln": ["(: cnet_isa_4810d4945d (IsA magnetic_bottle container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetic bubble memory is a kind of non volatile storage", "pln": ["(: cnet_isa_14b8a7b322 (IsA magnetic_bubble_memory non_volatile_storage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetic compass is a kind of compass", "pln": ["(: cnet_isa_b4cbc1c4db (IsA magnetic_compass compass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetic core is a kind of torus", "pln": ["(: cnet_isa_c82b624a3c (IsA magnetic_core torus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetic core memory is a kind of random access memory", "pln": ["(: cnet_isa_c45db37d9e (IsA magnetic_core_memory random_access_memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetic declination is a kind of angle", "pln": ["(: cnet_isa_6f214b3e76 (IsA magnetic_declination angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetic dipole is a kind of dipole", "pln": ["(: cnet_isa_4c02a7edb5 (IsA magnetic_dipole dipole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetic dipole moment is a kind of dipole moment", "pln": ["(: cnet_isa_f1bfb5f16b (IsA magnetic_dipole_moment dipole_moment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetic disk is a kind of memory device", "pln": ["(: cnet_isa_160bef3885 (IsA magnetic_disk memory_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "magnetic field is a kind of field", "pln": ["(: cnet_isa_cd95cb3f0a (IsA magnetic_field field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetic field strength is a kind of field strength", "pln": ["(: cnet_isa_06ecec2f31 (IsA magnetic_field_strength field_strength) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetic flux is a kind of magnetization", "pln": ["(: cnet_isa_26802cb344 (IsA magnetic_flux magnetization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetic head is a kind of electromagnet", "pln": ["(: cnet_isa_fd3a2280fb (IsA magnetic_head electromagnet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetic ink is a kind of ink", "pln": ["(: cnet_isa_3783636343 (IsA magnetic_ink ink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetic levitation is a kind of rail technology", "pln": ["(: cnet_isa_4131f8c149 (IsA magnetic_levitation rail_technology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetic line of force is a kind of line of force", "pln": ["(: cnet_isa_4459df6e35 (IsA magnetic_line_of_force line_of_force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetic meridian is a kind of meridian", "pln": ["(: cnet_isa_0496403ade (IsA magnetic_meridian meridian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetic mine is a kind of floating mine", "pln": ["(: cnet_isa_2c4a2a2862 (IsA magnetic_mine floating_mine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetic moment is a kind of torsion", "pln": ["(: cnet_isa_49c0c9b4ed (IsA magnetic_moment torsion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetic monopole is a kind of particle", "pln": ["(: cnet_isa_b5f24e45e8 (IsA magnetic_monopole particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetic needle is a kind of magnet", "pln": ["(: cnet_isa_cff804b885 (IsA magnetic_needle magnet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetic pole is a kind of geographic point", "pln": ["(: cnet_isa_24a0c457c0 (IsA magnetic_pole geographic_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetic recorder is a kind of recorder", "pln": ["(: cnet_isa_fc78420bb4 (IsA magnetic_recorder recorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "magnetic resonance is a kind of resonance", "pln": ["(: cnet_isa_1941cb0d46 (IsA magnetic_resonance resonance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "magnetic resonance imaging is a kind of imaging", "pln": ["(: cnet_isa_b012d32425 (IsA magnetic_resonance_imaging imaging) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetic storage medium is a kind of storage medium", "pln": ["(: cnet_isa_e4477c5b77 (IsA magnetic_storage_medium storage_medium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetic storm is a kind of perturbation", "pln": ["(: cnet_isa_02e3fa3546 (IsA magnetic_storm perturbation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetic stripe is a kind of magnetic tape", "pln": ["(: cnet_isa_8109241e6d (IsA magnetic_stripe magnetic_tape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetic tape is a kind of memory device", "pln": ["(: cnet_isa_a2e98d749d (IsA magnetic_tape memory_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetism is a kind of geophysic", "pln": ["(: cnet_isa_d15c271520 (IsA magnetism geophysic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetism is a kind of attraction", "pln": ["(: cnet_isa_dd445795f7 (IsA magnetism attraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetite is a kind of iron ore", "pln": ["(: cnet_isa_96e1eec635 (IsA magnetite iron_ore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetization is a kind of physical property", "pln": ["(: cnet_isa_6741d50fe3 (IsA magnetization physical_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetization is a kind of natural process", "pln": ["(: cnet_isa_704c18a1e3 (IsA magnetization natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetization is a kind of measure", "pln": ["(: cnet_isa_eda05b5477 (IsA magnetization measure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magneto is a kind of generator", "pln": ["(: cnet_isa_ef3a5a932c (IsA magneto generator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetograph is a kind of scientific instrument", "pln": ["(: cnet_isa_9413c6ec84 (IsA magnetograph scientific_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetohydrodynamic is a kind of hydrodynamic", "pln": ["(: cnet_isa_6505d5b450 (IsA magnetohydrodynamic hydrodynamic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetometer is a kind of meter", "pln": ["(: cnet_isa_accaea0371 (IsA magnetometer meter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetomotive force is a kind of force", "pln": ["(: cnet_isa_1f39e766c9 (IsA magnetomotive_force force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetomotive force unit is a kind of electromagnetic unit", "pln": ["(: cnet_isa_17ca345d4f (IsA magnetomotive_force_unit electromagnetic_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magneton is a kind of magnetomotive force unit", "pln": ["(: cnet_isa_35a33cc4b9 (IsA magneton magnetomotive_force_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetosphere is a kind of magnetic field", "pln": ["(: cnet_isa_af65d76423 (IsA magnetosphere magnetic_field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnetron is a kind of tube", "pln": ["(: cnet_isa_b51753ad83 (IsA magnetron tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnification is a kind of expansion", "pln": ["(: cnet_isa_7114dc1283 (IsA magnification expansion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnification is a kind of ratio", "pln": ["(: cnet_isa_1aab61a896 (IsA magnification ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnificence is a kind of elegance", "pln": ["(: cnet_isa_333420b70d (IsA magnificence elegance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnifico is a kind of important person", "pln": ["(: cnet_isa_e34a6b3400 (IsA magnifico important_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnifier is a kind of scientific instrument", "pln": ["(: cnet_isa_3fb025af3d (IsA magnifier scientific_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnitude is a kind of importance", "pln": ["(: cnet_isa_9203b0c568 (IsA magnitude importance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnitude is a kind of property", "pln": ["(: cnet_isa_52416eff6f (IsA magnitude property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnitude relation is a kind of relation", "pln": ["(: cnet_isa_cd2ed24c0f (IsA magnitude_relation relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnolia is a kind of angiospermous tree", "pln": ["(: cnet_isa_4ba17c24c2 (IsA magnolia angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnolia is a kind of bark", "pln": ["(: cnet_isa_dfdebd49b4 (IsA magnolia bark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnoliaceae is a kind of magnoliid dicot family", "pln": ["(: cnet_isa_c46d012463 (IsA magnoliaceae magnoliid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnoliid dicot family is a kind of dicot family", "pln": ["(: cnet_isa_7529603e50 (IsA magnoliid_dicot_family dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnoliid dicot genus is a kind of dicot genus", "pln": ["(: cnet_isa_ba30c12315 (IsA magnoliid_dicot_genus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnoliidae is a kind of class", "pln": ["(: cnet_isa_d0a0308db1 (IsA magnoliidae class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnum is a kind of wine bottle", "pln": ["(: cnet_isa_6c33913b9a (IsA magnum wine_bottle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnum opus is a kind of work of art", "pln": ["(: cnet_isa_6cb93f9d7d (IsA magnum_opus work_of_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magnus hitch is a kind of rolling hitch", "pln": ["(: cnet_isa_1ecd2fa08c (IsA magnus_hitch rolling_hitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magpie is a kind of corvine bird", "pln": ["(: cnet_isa_d05dba2227 (IsA magpie corvine_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magpie is a kind of hoarder", "pln": ["(: cnet_isa_91a1e99396 (IsA magpie hoarder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maguey is a kind of agave", "pln": ["(: cnet_isa_f7a9c1c256 (IsA maguey agave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magus is a kind of priest", "pln": ["(: cnet_isa_6e923a83fe (IsA magus priest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magus is a kind of sorcerer", "pln": ["(: cnet_isa_dd2f573d46 (IsA magus sorcerer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "magyar is a kind of european", "pln": ["(: cnet_isa_172bdec846 (IsA magyar european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mah jongg is a kind of board game", "pln": ["(: cnet_isa_0351270d0b (IsA mah_jongg board_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maha is a kind of dhegiha", "pln": ["(: cnet_isa_4ef39bb656 (IsA maha dhegiha) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maharaja is a kind of prince", "pln": ["(: cnet_isa_f83ad01aff (IsA maharaja prince) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maharani is a kind of princess", "pln": ["(: cnet_isa_2cfa054c79 (IsA maharani princess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mahatma is a kind of sage", "pln": ["(: cnet_isa_d42452d029 (IsA mahatma sage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mahayana is a kind of buddhism", "pln": ["(: cnet_isa_0923771403 (IsA mahayana buddhism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mahayanism is a kind of theological doctrine", "pln": ["(: cnet_isa_af9f2995a8 (IsA mahayanism theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mahayanist is a kind of disciple", "pln": ["(: cnet_isa_73c03ddf99 (IsA mahayanist disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mahdism is a kind of islam", "pln": ["(: cnet_isa_3eb7a6e0b7 (IsA mahdism islam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mahdist is a kind of disciple", "pln": ["(: cnet_isa_40f255efca (IsA mahdist disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mahican is a kind of algonquin", "pln": ["(: cnet_isa_95546fdc15 (IsA mahican algonquin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mahoe is a kind of hibiscus", "pln": ["(: cnet_isa_e369863db2 (IsA mahoe hibiscus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mahogany is a kind of wood", "pln": ["(: cnet_isa_15d17f4203 (IsA mahogany wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mahogany is a kind of tree", "pln": ["(: cnet_isa_ab3c77c54a (IsA mahogany tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mahonia is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_4b4fc42121 (IsA mahonia magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mahout is a kind of driver", "pln": ["(: cnet_isa_2a11ccc584 (IsA mahout driver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mahratta is a kind of indian", "pln": ["(: cnet_isa_baae4e7831 (IsA mahratta indian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mahuang is a kind of ephedra", "pln": ["(: cnet_isa_58a6d39eda (IsA mahuang ephedra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maianthemum is a kind of liliid monocot genus", "pln": ["(: cnet_isa_45cacd8e27 (IsA maianthemum liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maid is a kind of servant", "pln": ["(: cnet_isa_e54390d9c4 (IsA maid servant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maid is a kind of domestic", "pln": ["(: cnet_isa_e1a6e8e988 (IsA maid domestic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maid is a kind of girl", "pln": ["(: cnet_isa_a50f0c7ee5 (IsA maid girl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maiden aunt is a kind of aunt", "pln": ["(: cnet_isa_3231553c0e (IsA maiden_aunt aunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maiden blue eyed mary is a kind of wildflower", "pln": ["(: cnet_isa_f6254d0118 (IsA maiden_blue_eyed_mary wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maiden flight is a kind of flight", "pln": ["(: cnet_isa_c93f45c26a (IsA maiden_flight flight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maiden name is a kind of surname", "pln": ["(: cnet_isa_1537d06a4c (IsA maiden_name surname) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maiden over is a kind of over", "pln": ["(: cnet_isa_c156fb4e50 (IsA maiden_over over) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maiden pink is a kind of pink", "pln": ["(: cnet_isa_7073c4e6c8 (IsA maiden_pink pink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maiden voyage is a kind of ocean trip", "pln": ["(: cnet_isa_0d5b51ef53 (IsA maiden_voyage ocean_trip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maidenhair is a kind of fern", "pln": ["(: cnet_isa_c50c335b88 (IsA maidenhair fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maidenhair spleenwort is a kind of spleenwort", "pln": ["(: cnet_isa_97e7c93dba (IsA maidenhair_spleenwort spleenwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maidenliness is a kind of femininity", "pln": ["(: cnet_isa_ed90b2f13c (IsA maidenliness femininity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "maidu is a kind of penutian", "pln": ["(: cnet_isa_95270090b6 (IsA maidu penutian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maigre is a kind of sciaenid fish", "pln": ["(: cnet_isa_ac52abd2b0 (IsA maigre sciaenid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mail is a kind of communication", "pln": ["(: cnet_isa_016b66dd42 (IsA mail communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mail is a kind of conveyance", "pln": ["(: cnet_isa_8b15fe0686 (IsA mail conveyance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mail is a kind of message", "pln": ["(: cnet_isa_c1b85f9708 (IsA mail message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mail is a kind of collection", "pln": ["(: cnet_isa_714813b184 (IsA mail collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mail call is a kind of roll call", "pln": ["(: cnet_isa_2aab0b6a68 (IsA mail_call roll_call) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mail car is a kind of car", "pln": ["(: cnet_isa_a69fc2bf09 (IsA mail_car car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mail fraud is a kind of fraud", "pln": ["(: cnet_isa_d16332486c (IsA mail_fraud fraud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mail order is a kind of order", "pln": ["(: cnet_isa_07ff7c7e2a (IsA mail_order order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mail order buying is a kind of buying", "pln": ["(: cnet_isa_1a7d0eb104 (IsA mail_order_buying buying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mail slot is a kind of slot", "pln": ["(: cnet_isa_70c3d47e3b (IsA mail_slot slot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mail train is a kind of train", "pln": ["(: cnet_isa_674ebf18ed (IsA mail_train train) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mailbag is a kind of bag", "pln": ["(: cnet_isa_bdef1b7c45 (IsA mailbag bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mailbag is a kind of pouch", "pln": ["(: cnet_isa_5be200f3d1 (IsA mailbag pouch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mailboat is a kind of boat", "pln": ["(: cnet_isa_4dfeb471fb (IsA mailboat boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mailbox is a kind of container for letter", "pln": ["(: cnet_isa_b9c6ea3bb3 (IsA mailbox container_for_letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mailbox is a kind of box", "pln": ["(: cnet_isa_0ead25e5d5 (IsA mailbox box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maildrop is a kind of drop", "pln": ["(: cnet_isa_ee23a09075 (IsA maildrop drop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mailer is a kind of container", "pln": ["(: cnet_isa_2bd8bc7e18 (IsA mailer container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mailer is a kind of ad", "pln": ["(: cnet_isa_c6a45e7c36 (IsA mailer ad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mailer is a kind of person", "pln": ["(: cnet_isa_f61cf939b3 (IsA mailer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mailing is a kind of transmission", "pln": ["(: cnet_isa_95c6ca1527 (IsA mailing transmission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mailing is a kind of mail", "pln": ["(: cnet_isa_000c94bca2 (IsA mailing mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mailing address is a kind of address", "pln": ["(: cnet_isa_7f824b19f0 (IsA mailing_address address) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mailing list is a kind of list", "pln": ["(: cnet_isa_9713568132 (IsA mailing_list list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maillot is a kind of swimsuit", "pln": ["(: cnet_isa_369a085366 (IsA maillot swimsuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maillot is a kind of tight", "pln": ["(: cnet_isa_8cd8e45499 (IsA maillot tight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mailman is a kind of deliveryman", "pln": ["(: cnet_isa_21e3e85035 (IsA mailman deliveryman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mailsorter is a kind of sorter", "pln": ["(: cnet_isa_8d72f1e96e (IsA mailsorter sorter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "main is a kind of pipe", "pln": ["(: cnet_isa_b3808a74c2 (IsA main pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "main is a kind of body of water", "pln": ["(: cnet_isa_62ee4c69f2 (IsA main body_of_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "main clause is a kind of clause", "pln": ["(: cnet_isa_0823c4796e (IsA main_clause clause) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "main course is a kind of mainsail", "pln": ["(: cnet_isa_1ec3e5840e (IsA main_course mainsail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "main deck is a kind of deck", "pln": ["(: cnet_isa_b3b70aaab3 (IsA main_deck deck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "main diagonal is a kind of diagonal", "pln": ["(: cnet_isa_114212303d (IsA main_diagonal diagonal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "main drag is a kind of main street", "pln": ["(: cnet_isa_004ebd1c71 (IsA main_drag main_street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "main line is a kind of path", "pln": ["(: cnet_isa_195ea3ebb2 (IsA main_line path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "main rotor is a kind of rotor", "pln": ["(: cnet_isa_d43b601a19 (IsA main_rotor rotor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "main street is a kind of street", "pln": ["(: cnet_isa_860577107e (IsA main_street street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "main street is a kind of town", "pln": ["(: cnet_isa_daad3202f5 (IsA main_street town) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "main topmast is a kind of topmast", "pln": ["(: cnet_isa_6ee8187d11 (IsA main_topmast topmast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "main topsail is a kind of sail", "pln": ["(: cnet_isa_cdb3f8652a (IsA main_topsail sail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "main yard is a kind of yard", "pln": ["(: cnet_isa_e599fd369c (IsA main_yard yard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maine is a kind of state", "pln": ["(: cnet_isa_f5f787dedc (IsA maine state) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mainframe is a kind of digital computer", "pln": ["(: cnet_isa_bb7ed7cabb (IsA mainframe digital_computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mainland is a kind of land", "pln": ["(: cnet_isa_1d628483a9 (IsA mainland land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mainmast is a kind of mast", "pln": ["(: cnet_isa_653914bfbb (IsA mainmast mast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mainsail is a kind of sail", "pln": ["(: cnet_isa_4ff0caa029 (IsA mainsail sail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mainspring is a kind of spring", "pln": ["(: cnet_isa_487afafa3e (IsA mainspring spring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mainstay is a kind of forestay", "pln": ["(: cnet_isa_384f18133a (IsA mainstay forestay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mainstream is a kind of thought", "pln": ["(: cnet_isa_9f6860afa6 (IsA mainstream thought) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maintenance is a kind of support", "pln": ["(: cnet_isa_a6fa699303 (IsA maintenance support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maintenance man is a kind of mender", "pln": ["(: cnet_isa_228d9af393 (IsA maintenance_man mender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maisonette is a kind of apartment", "pln": ["(: cnet_isa_2540b06da3 (IsA maisonette apartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maisonette is a kind of house", "pln": ["(: cnet_isa_36c8f5f244 (IsA maisonette house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maja is a kind of arthropod genus", "pln": ["(: cnet_isa_7353ab098f (IsA maja arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "majidae is a kind of arthropod family", "pln": ["(: cnet_isa_5b9f5b972a (IsA majidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "majolica is a kind of earthenware", "pln": ["(: cnet_isa_3a2382b4df (IsA majolica earthenware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "major is a kind of discipline", "pln": ["(: cnet_isa_394031121a (IsA major discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "major is a kind of commissioned military officer", "pln": ["(: cnet_isa_119cf2681a (IsA major commissioned_military_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "major is a kind of student", "pln": ["(: cnet_isa_3e1cdd185e (IsA major student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "major axis is a kind of axis", "pln": ["(: cnet_isa_50f84f2644 (IsA major_axis axis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "major depressive episode is a kind of depressive disorder", "pln": ["(: cnet_isa_2ff300717b (IsA major_depressive_episode depressive_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "major domo is a kind of servant", "pln": ["(: cnet_isa_0f6ba63e1b (IsA major_domo servant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "major fast day is a kind of fast day", "pln": ["(: cnet_isa_81ff4a2c10 (IsA major_fast_day fast_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "major form class is a kind of part of speech", "pln": ["(: cnet_isa_ef73cdb846 (IsA major_form_class part_of_speech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "major general is a kind of general officer", "pln": ["(: cnet_isa_0c914dccd8 (IsA major_general general_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "major key is a kind of key", "pln": ["(: cnet_isa_e543f4213c (IsA major_key key) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "major league is a kind of league", "pln": ["(: cnet_isa_ef41152a34 (IsA major_league league) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "major league team is a kind of team", "pln": ["(: cnet_isa_1c8b4c3a08 (IsA major_league_team team) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "major leaguer is a kind of ballplayer", "pln": ["(: cnet_isa_0f1b43c7f8 (IsA major_leaguer ballplayer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "major lobe is a kind of lobe", "pln": ["(: cnet_isa_fd167ae53d (IsA major_lobe lobe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "major premise is a kind of premise", "pln": ["(: cnet_isa_c625414ea1 (IsA major_premise premise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "major scale is a kind of mode", "pln": ["(: cnet_isa_23d6364bca (IsA major_scale mode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "major suit is a kind of suit", "pln": ["(: cnet_isa_dc612c632e (IsA major_suit suit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "major surgery is a kind of operation", "pln": ["(: cnet_isa_749b45d40e (IsA major_surgery operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "major term is a kind of term", "pln": ["(: cnet_isa_4cd59bede5 (IsA major_term term) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "major tranquilizer is a kind of tranquilizer", "pln": ["(: cnet_isa_41afc5b39a (IsA major_tranquilizer tranquilizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "majorana is a kind of asterid dicot genus", "pln": ["(: cnet_isa_79122643c1 (IsA majorana asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "majority is a kind of number", "pln": ["(: cnet_isa_8209eb511e (IsA majority number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "majority is a kind of relative quantity", "pln": ["(: cnet_isa_90e7657227 (IsA majority relative_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "majority is a kind of age", "pln": ["(: cnet_isa_edcc23bd83 (IsA majority age) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "majority leader is a kind of legislator", "pln": ["(: cnet_isa_c3eb7e8770 (IsA majority_leader legislator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "majority operation is a kind of threshold operation", "pln": ["(: cnet_isa_4aa9869edd (IsA majority_operation threshold_operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "majority opinion is a kind of opinion", "pln": ["(: cnet_isa_c3ae1740e1 (IsA majority_opinion opinion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "majority rule is a kind of doctrine", "pln": ["(: cnet_isa_95a195cce9 (IsA majority_rule doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "makaira is a kind of fish genus", "pln": ["(: cnet_isa_9ff865df29 (IsA makaira fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "make believe is a kind of pretense", "pln": ["(: cnet_isa_3ea9a4a86e (IsA make_believe pretense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "makeover is a kind of beauty treatment", "pln": ["(: cnet_isa_71899255f2 (IsA makeover beauty_treatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "makeover is a kind of reconstruction", "pln": ["(: cnet_isa_66f5771bc3 (IsA makeover reconstruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maker is a kind of creator", "pln": ["(: cnet_isa_88bfb579d9 (IsA maker creator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "makeready is a kind of preparation", "pln": ["(: cnet_isa_84145b612d (IsA makeready preparation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "makeshift is a kind of expedient", "pln": ["(: cnet_isa_ef1c83354d (IsA makeshift expedient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "makeup is a kind of cosmetic", "pln": ["(: cnet_isa_be1da498cd (IsA makeup cosmetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "makeup is a kind of event", "pln": ["(: cnet_isa_00b26069d9 (IsA makeup event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "makeweight is a kind of object", "pln": ["(: cnet_isa_12e79bc377 (IsA makeweight object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "makeweight is a kind of weight", "pln": ["(: cnet_isa_5017a61237 (IsA makeweight weight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "making is a kind of component", "pln": ["(: cnet_isa_1e3cd91374 (IsA making component) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "making love is a kind of valued human activity", "pln": ["(: cnet_isa_caa890d4c6 (IsA making_love valued_human_activity) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mako is a kind of mackerel shark", "pln": ["(: cnet_isa_3c493d9224 (IsA mako mackerel_shark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "makomako is a kind of shrub", "pln": ["(: cnet_isa_4e0d82f818 (IsA makomako shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maksutov telescope is a kind of reflecting telescope", "pln": ["(: cnet_isa_c1cefc843a (IsA maksutov_telescope reflecting_telescope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malabsorption is a kind of assimilation", "pln": ["(: cnet_isa_3b14cce0bc (IsA malabsorption assimilation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malabsorption syndrome is a kind of syndrome", "pln": ["(: cnet_isa_03fba49cda (IsA malabsorption_syndrome syndrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malacanthidae is a kind of fish family", "pln": ["(: cnet_isa_69b25b3ce9 (IsA malacanthidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malacca is a kind of cane", "pln": ["(: cnet_isa_870f5dc9f8 (IsA malacca cane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malachite is a kind of mineral", "pln": ["(: cnet_isa_dae34462ff (IsA malachite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malacia is a kind of pathology", "pln": ["(: cnet_isa_436fbdb6d0 (IsA malacia pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malaclemy is a kind of reptile genus", "pln": ["(: cnet_isa_c019a037a2 (IsA malaclemy reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malacologist is a kind of zoologist", "pln": ["(: cnet_isa_16ccf00bdc (IsA malacologist zoologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malacology is a kind of zoology", "pln": ["(: cnet_isa_f642acce29 (IsA malacology zoology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "malaconotinae is a kind of bird family", "pln": ["(: cnet_isa_01c48f0b91 (IsA malaconotinae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malacopterygii is a kind of animal order", "pln": ["(: cnet_isa_4c5059982e (IsA malacopterygii animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malacosoma is a kind of arthropod genus", "pln": ["(: cnet_isa_305300dc3f (IsA malacosoma arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malacostraca is a kind of class", "pln": ["(: cnet_isa_457d2b485d (IsA malacostraca class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malacostracan crustacean is a kind of crustacean", "pln": ["(: cnet_isa_244c2463c0 (IsA malacostracan_crustacean crustacean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malacothamnus is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_303e4978e0 (IsA malacothamnus dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maladjustment is a kind of personality disorder", "pln": ["(: cnet_isa_ffe899011d (IsA maladjustment personality_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malady is a kind of condition", "pln": ["(: cnet_isa_60a9b14f8f (IsA malady condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malahini is a kind of newcomer", "pln": ["(: cnet_isa_929faf6932 (IsA malahini newcomer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malaise is a kind of discomfort", "pln": ["(: cnet_isa_73a0956961 (IsA malaise discomfort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malamute is a kind of sled dog", "pln": ["(: cnet_isa_4d0d830d31 (IsA malamute sled_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malapropism is a kind of misstatement", "pln": ["(: cnet_isa_630da59389 (IsA malapropism misstatement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malaria is a kind of disease", "pln": ["(: cnet_isa_32a3778e04 (IsA malaria disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malaria is a kind of protozoal infection", "pln": ["(: cnet_isa_3b41f76e45 (IsA malaria protozoal_infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "malarial mosquito is a kind of mosquito", "pln": ["(: cnet_isa_cbb5e05d77 (IsA malarial_mosquito mosquito) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malathion poisoning is a kind of pesticide poisoning", "pln": ["(: cnet_isa_35450f3987 (IsA malathion_poisoning pesticide_poisoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malawi kwacha is a kind of malawian monetary unit", "pln": ["(: cnet_isa_fdf4c4d7c4 (IsA malawi_kwacha malawian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malawian is a kind of african", "pln": ["(: cnet_isa_52d7dbc4e4 (IsA malawian african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malawian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_ee421e90f2 (IsA malawian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malaxis is a kind of monocot genus", "pln": ["(: cnet_isa_b192fd845b (IsA malaxis monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malay is a kind of western malayo polynesian", "pln": ["(: cnet_isa_793bb0f6ce (IsA malay western_malayo_polynesian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malayalam is a kind of south dravidian", "pln": ["(: cnet_isa_8747c6c402 (IsA malayalam south_dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malayan is a kind of asiatic", "pln": ["(: cnet_isa_38907f5397 (IsA malayan asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malayan tapir is a kind of tapir", "pln": ["(: cnet_isa_2719be750f (IsA malayan_tapir tapir) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malayo polynesian is a kind of austronesian", "pln": ["(: cnet_isa_9b88687260 (IsA malayo_polynesian austronesian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malaysian is a kind of malay", "pln": ["(: cnet_isa_aa0bea388b (IsA malaysian malay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malaysian is a kind of asiatic", "pln": ["(: cnet_isa_054ab1825e (IsA malaysian asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malaysian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_b6932850a5 (IsA malaysian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malaysian state is a kind of state", "pln": ["(: cnet_isa_3e7938b49d (IsA malaysian_state state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malcolm stock is a kind of flower", "pln": ["(: cnet_isa_fb34d3cd96 (IsA malcolm_stock flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malcolmia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_ad5284d8ed (IsA malcolmia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malcontent is a kind of person", "pln": ["(: cnet_isa_9ab3621fd1 (IsA malcontent person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maldivan is a kind of asiatic", "pln": ["(: cnet_isa_5d4e4e8b3e (IsA maldivan asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "male is a kind of animal", "pln": ["(: cnet_isa_d3d53f872b (IsA male animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "male is a kind of person", "pln": ["(: cnet_isa_cdc039ba9a (IsA male person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "male aristocrat is a kind of aristocrat", "pln": ["(: cnet_isa_7adc482f67 (IsA male_aristocrat aristocrat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "male body is a kind of human body", "pln": ["(: cnet_isa_c9ed5244c7 (IsA male_body human_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "male bonding is a kind of bonding", "pln": ["(: cnet_isa_be0872ebc8 (IsA male_bonding bonding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "male chauvinism is a kind of sexism", "pln": ["(: cnet_isa_7510cf3952 (IsA male_chauvinism sexism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "male chauvinist is a kind of antifeminist", "pln": ["(: cnet_isa_007fbcbb2c (IsA male_chauvinist antifeminist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "male chest is a kind of thorax", "pln": ["(: cnet_isa_3c53f68547 (IsA male_chest thorax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "male child is a kind of male", "pln": ["(: cnet_isa_4c3e802500 (IsA male_child male) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "male fern is a kind of wood fern", "pln": ["(: cnet_isa_b5f685fc38 (IsA male_fern wood_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "male genitalia is a kind of penis", "pln": ["(: cnet_isa_8cf7122690 (IsA male_genitalia penis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "male genitalia is a kind of genitalia", "pln": ["(: cnet_isa_4d68bb6060 (IsA male_genitalia genitalia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "male horse is a kind of horse", "pln": ["(: cnet_isa_9fa3581ba7 (IsA male_horse horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "male horse is a kind of male", "pln": ["(: cnet_isa_c65d7fc77a (IsA male_horse male) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "male hypogonadism is a kind of hypogonadism", "pln": ["(: cnet_isa_ecaca3c294 (IsA male_hypogonadism hypogonadism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "male internal reproductive organ is a kind of reproductive organ", "pln": ["(: cnet_isa_3bfb1c9be3 (IsA male_internal_reproductive_organ reproductive_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "male offspring is a kind of child", "pln": ["(: cnet_isa_8a3dfe94f8 (IsA male_offspring child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "male offspring is a kind of male", "pln": ["(: cnet_isa_c522ed5271 (IsA male_offspring male) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "male orchis is a kind of orchis", "pln": ["(: cnet_isa_3118a7d517 (IsA male_orchis orchis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "male orgasm is a kind of orgasm", "pln": ["(: cnet_isa_e584e01c9f (IsA male_orgasm orgasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "male patterned baldness is a kind of baldness", "pln": ["(: cnet_isa_4b3a88d719 (IsA male_patterned_baldness baldness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "male reproductive gland is a kind of reproductive organ", "pln": ["(: cnet_isa_521d06b3de (IsA male_reproductive_gland reproductive_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "male reproductive system is a kind of reproductive system", "pln": ["(: cnet_isa_28930c88c9 (IsA male_reproductive_system reproductive_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "male sibling is a kind of kinsman", "pln": ["(: cnet_isa_57e16ba678 (IsA male_sibling kinsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maleate is a kind of antidepressant", "pln": ["(: cnet_isa_a25680ea96 (IsA maleate antidepressant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maleate is a kind of ester", "pln": ["(: cnet_isa_a618024a3b (IsA maleate ester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maleberry is a kind of shrub", "pln": ["(: cnet_isa_1b77d00f72 (IsA maleberry shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malecite is a kind of algonquian", "pln": ["(: cnet_isa_eb73591a46 (IsA malecite algonquian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malecite is a kind of algonquin", "pln": ["(: cnet_isa_03fcf1e9df (IsA malecite algonquin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maleficence is a kind of evil", "pln": ["(: cnet_isa_d94620c0df (IsA maleficence evil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maleficence is a kind of malevolence", "pln": ["(: cnet_isa_7e01ca3870 (IsA maleficence malevolence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maleic acid is a kind of acid", "pln": ["(: cnet_isa_5c53edbba3 (IsA maleic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maleness is a kind of sex", "pln": ["(: cnet_isa_4a0bce4fc0 (IsA maleness sex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maleo is a kind of megapode", "pln": ["(: cnet_isa_629a98e28d (IsA maleo megapode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "malevolence is a kind of evil", "pln": ["(: cnet_isa_2a1a8a496e (IsA malevolence evil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malevolence is a kind of hate", "pln": ["(: cnet_isa_30028ac283 (IsA malevolence hate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malevolent program is a kind of program", "pln": ["(: cnet_isa_20d948a1c3 (IsA malevolent_program program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malfeasance is a kind of wrongdoing", "pln": ["(: cnet_isa_fdb8fdd5ef (IsA malfeasance wrongdoing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malfeasant is a kind of wrongdoer", "pln": ["(: cnet_isa_2a98ccf5da (IsA malfeasant wrongdoer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malformation is a kind of failure", "pln": ["(: cnet_isa_794bf14baa (IsA malformation failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malfunction is a kind of failure", "pln": ["(: cnet_isa_ae62c39d92 (IsA malfunction failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malheur wire lettuce is a kind of crucifer", "pln": ["(: cnet_isa_86532d1a7a (IsA malheur_wire_lettuce crucifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mali franc is a kind of franc", "pln": ["(: cnet_isa_ee531d92cb (IsA mali_franc franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malian is a kind of african", "pln": ["(: cnet_isa_474dec810e (IsA malian african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malice is a kind of malevolence", "pln": ["(: cnet_isa_d056f11e2c (IsA malice malevolence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malignancy is a kind of disease", "pln": ["(: cnet_isa_1ce6958f69 (IsA malignancy disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malignant hypertension is a kind of high blood pressure", "pln": ["(: cnet_isa_9906c15fb6 (IsA malignant_hypertension high_blood_pressure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malignant hyperthermia is a kind of autosomal dominant disease", "pln": ["(: cnet_isa_5d177a0e70 (IsA malignant_hyperthermia autosomal_dominant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "malignant tumor is a kind of malignancy", "pln": ["(: cnet_isa_946678bc6f (IsA malignant_tumor malignancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "malignant tumor is a kind of tumor", "pln": ["(: cnet_isa_b5238f8fce (IsA malignant_tumor tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malignity is a kind of evil", "pln": ["(: cnet_isa_723b95dbe6 (IsA malignity evil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malik is a kind of leader", "pln": ["(: cnet_isa_b0b01cbb02 (IsA malik leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malingerer is a kind of slacker", "pln": ["(: cnet_isa_e735d3eb09 (IsA malingerer slacker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malingering is a kind of evasion", "pln": ["(: cnet_isa_cadb4a9a5b (IsA malingering evasion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malinois is a kind of belgian sheepdog", "pln": ["(: cnet_isa_d446062aae (IsA malinois belgian_sheepdog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mallard is a kind of duck", "pln": ["(: cnet_isa_c76d2f90b3 (IsA mallard duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malleability is a kind of physical property", "pln": ["(: cnet_isa_2c04828e2d (IsA malleability physical_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mallee is a kind of eucalyptus", "pln": ["(: cnet_isa_23db1a84f2 (IsA mallee eucalyptus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mallee fowl is a kind of megapode", "pln": ["(: cnet_isa_a7a31074c5 (IsA mallee_fowl megapode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mallee hen is a kind of mallee fowl", "pln": ["(: cnet_isa_b0f7939b55 (IsA mallee_hen mallee_fowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mallet is a kind of drumstick", "pln": ["(: cnet_isa_203c0dc1e4 (IsA mallet drumstick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mallet is a kind of hammer", "pln": ["(: cnet_isa_9e6b84455b (IsA mallet hammer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mallet is a kind of sport implement", "pln": ["(: cnet_isa_c53374bfed (IsA mallet sport_implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "malleus is a kind of auditory ossicle", "pln": ["(: cnet_isa_f970e9172a (IsA malleus auditory_ossicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mallophaga is a kind of animal order", "pln": ["(: cnet_isa_1261f93ee3 (IsA mallophaga animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mallotus is a kind of fish genus", "pln": ["(: cnet_isa_b1f1f86f4b (IsA mallotus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mallow is a kind of shrub", "pln": ["(: cnet_isa_83b4a1ed0c (IsA mallow shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malmsey is a kind of madeira", "pln": ["(: cnet_isa_ca1f4cbfc9 (IsA malmsey madeira) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malnutrition is a kind of deficiency disease", "pln": ["(: cnet_isa_07d6017a27 (IsA malnutrition deficiency_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malocclusion is a kind of disorder", "pln": ["(: cnet_isa_ef0394d5e3 (IsA malocclusion disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malodor is a kind of smell", "pln": ["(: cnet_isa_2d7d095251 (IsA malodor smell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malodorousness is a kind of olfactory property", "pln": ["(: cnet_isa_fdfdd4eb60 (IsA malodorousness olfactory_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malope is a kind of mallow", "pln": ["(: cnet_isa_720c5ef4b1 (IsA malope mallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malopterurus is a kind of fish genus", "pln": ["(: cnet_isa_fa4bd55be9 (IsA malopterurus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malosma is a kind of dicot genus", "pln": ["(: cnet_isa_6235a73b4f (IsA malosma dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malpighia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_991c770ae5 (IsA malpighia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "malpighiaceae is a kind of rosid dicot family", "pln": ["(: cnet_isa_b901a35230 (IsA malpighiaceae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malpighian body is a kind of capsule", "pln": ["(: cnet_isa_d39f08030f (IsA malpighian_body capsule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malposed tooth is a kind of tooth", "pln": ["(: cnet_isa_64e9f16266 (IsA malposed_tooth tooth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "malposition is a kind of position", "pln": ["(: cnet_isa_c3e22402a6 (IsA malposition position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "malpractice is a kind of wrongdoing", "pln": ["(: cnet_isa_e996766e6a (IsA malpractice wrongdoing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malpractice insurance is a kind of insurance", "pln": ["(: cnet_isa_d69b2740ac (IsA malpractice_insurance insurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "malt is a kind of grain", "pln": ["(: cnet_isa_c0932bebab (IsA malt grain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malt is a kind of lager", "pln": ["(: cnet_isa_da9ceb7935 (IsA malt lager) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malted is a kind of milkshake", "pln": ["(: cnet_isa_0a8272f2ef (IsA malted milkshake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "malted milk is a kind of ingredient", "pln": ["(: cnet_isa_10617e0128 (IsA malted_milk ingredient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maltese is a kind of european", "pln": ["(: cnet_isa_3816de36af (IsA maltese european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maltese cat is a kind of domestic cat", "pln": ["(: cnet_isa_090f45bb55 (IsA maltese_cat domestic_cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maltese cross is a kind of cross", "pln": ["(: cnet_isa_e559c4b837 (IsA maltese_cross cross) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maltese dog is a kind of toy dog", "pln": ["(: cnet_isa_a7599c7f79 (IsA maltese_dog toy_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maltese language is a kind of semitic", "pln": ["(: cnet_isa_66864ada0d (IsA maltese_language semitic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maltese monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_7257cc0ce8 (IsA maltese_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maltha is a kind of mineral", "pln": ["(: cnet_isa_7a0d1f27d1 (IsA maltha mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malthusian is a kind of believer", "pln": ["(: cnet_isa_35ba13f48f (IsA malthusian believer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malthusianism is a kind of economic theory", "pln": ["(: cnet_isa_f85f56cf60 (IsA malthusianism economic_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malto is a kind of north dravidian", "pln": ["(: cnet_isa_a3d347d9fd (IsA malto north_dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malto is a kind of dravidian", "pln": ["(: cnet_isa_51bd42e10e (IsA malto dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maltose is a kind of disaccharide", "pln": ["(: cnet_isa_3a033f2b6c (IsA maltose disaccharide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maltreatment is a kind of mistreatment", "pln": ["(: cnet_isa_fbff7be928 (IsA maltreatment mistreatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maltster is a kind of maker", "pln": ["(: cnet_isa_ba99e44fca (IsA maltster maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "malus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_d5689f5a5a (IsA malus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malva is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_2e9b024660 (IsA malva dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malvaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_f14523ac2e (IsA malvaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malvale is a kind of plant order", "pln": ["(: cnet_isa_12ec253b4b (IsA malvale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malvasia is a kind of vinifera", "pln": ["(: cnet_isa_4873d4c9af (IsA malvasia vinifera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malvastrum is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_cddd6a3afe (IsA malvastrum dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malvaviscus is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_b750b2ec78 (IsA malvaviscus dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malversation is a kind of wrongdoing", "pln": ["(: cnet_isa_7e7f60cdc2 (IsA malversation wrongdoing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "malware is a kind of software", "pln": ["(: cnet_isa_59d5aadb49 (IsA malware software) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mam is a kind of maya", "pln": ["(: cnet_isa_2ea99a3fd7 (IsA mam maya) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mam is a kind of mayan", "pln": ["(: cnet_isa_acf3dc511a (IsA mam mayan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mamba is a kind of elapid", "pln": ["(: cnet_isa_def264b7f8 (IsA mamba elapid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mambo is a kind of dancing", "pln": ["(: cnet_isa_d2aa5dc3bb (IsA mambo dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mamey is a kind of edible fruit", "pln": ["(: cnet_isa_11d0455755 (IsA mamey edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mamillary body is a kind of neural structure", "pln": ["(: cnet_isa_45df743de4 (IsA mamillary_body neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mammal is a kind of vertebrate", "pln": ["(: cnet_isa_b731e919fd (IsA mammal vertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mammal family is a kind of family", "pln": ["(: cnet_isa_a03c6dd981 (IsA mammal_family family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mammal genus is a kind of genus", "pln": ["(: cnet_isa_2a46c6c6f2 (IsA mammal_genus genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mammalia is a kind of class", "pln": ["(: cnet_isa_040a014d93 (IsA mammalia class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mammalogist is a kind of zoologist", "pln": ["(: cnet_isa_54bb05061b (IsA mammalogist zoologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mammalogy is a kind of zoology", "pln": ["(: cnet_isa_484394b146 (IsA mammalogy zoology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mammary gland is a kind of exocrine gland", "pln": ["(: cnet_isa_e49524bae7 (IsA mammary_gland exocrine_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mammea is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_d30bdc5b24 (IsA mammea dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mammee apple is a kind of fruit tree", "pln": ["(: cnet_isa_32011cbb3e (IsA mammee_apple fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mammillaria is a kind of cactus", "pln": ["(: cnet_isa_f8318e4e8d (IsA mammillaria cactus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mammogram is a kind of roentgenogram", "pln": ["(: cnet_isa_60acba4156 (IsA mammogram roentgenogram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mammography is a kind of diagnostic procedure", "pln": ["(: cnet_isa_d1ebff9e25 (IsA mammography diagnostic_procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mammon is a kind of wealth", "pln": ["(: cnet_isa_a261774089 (IsA mammon wealth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mammoth is a kind of extinct animal", "pln": ["(: cnet_isa_672af02f9e (IsA mammoth extinct_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mammoth is a kind of elephant", "pln": ["(: cnet_isa_d812a962a7 (IsA mammoth elephant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mammothermography is a kind of thermography", "pln": ["(: cnet_isa_3c95c8ea6d (IsA mammothermography thermography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mammut is a kind of mammal genus", "pln": ["(: cnet_isa_a83475289b (IsA mammut mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mammuthus is a kind of mammal genus", "pln": ["(: cnet_isa_fce28ade9d (IsA mammuthus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mammutidae is a kind of mammal family", "pln": ["(: cnet_isa_901f9e003a (IsA mammutidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mammy is a kind of nanny", "pln": ["(: cnet_isa_b0d3bbf148 (IsA mammy nanny) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mamo is a kind of honeycreeper", "pln": ["(: cnet_isa_2cbc19939e (IsA mamo honeycreeper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "man s clothing is a kind of clothing", "pln": ["(: cnet_isa_6bf7721470 (IsA man_s_clothing clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "man is a kind of game equipment", "pln": ["(: cnet_isa_7fb12bf9e5 (IsA man game_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "man is a kind of international intelligence agency", "pln": ["(: cnet_isa_a15c17339a (IsA man international_intelligence_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "man is a kind of adult", "pln": ["(: cnet_isa_66d7eee1a4 (IsA man adult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "man is a kind of lover", "pln": ["(: cnet_isa_d243195695 (IsA man lover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "man is a kind of male", "pln": ["(: cnet_isa_dd16d81222 (IsA man male) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "man is a kind of person", "pln": ["(: cnet_isa_35755b769b (IsA man person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "man is a kind of subordinate", "pln": ["(: cnet_isa_62c1d5d99b (IsA man subordinate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "man at arm is a kind of soldier", "pln": ["(: cnet_isa_189e7cc745 (IsA man_at_arm soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "man hour is a kind of hour", "pln": ["(: cnet_isa_378d235983 (IsA man_hour hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "man in street is a kind of commoner", "pln": ["(: cnet_isa_ab2e5a74b6 (IsA man_in_street commoner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "man in tailored suit is a kind of good thing", "pln": ["(: cnet_isa_b0178aa990 (IsA man_in_tailored_suit good_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "man jack is a kind of person", "pln": ["(: cnet_isa_37e80513e4 (IsA man_jack person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "man made fiber is a kind of fiber", "pln": ["(: cnet_isa_241c7363ea (IsA man_made_fiber fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "man of action is a kind of actor", "pln": ["(: cnet_isa_bb96caa870 (IsA man_of_action actor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "man of earth is a kind of morning glory", "pln": ["(: cnet_isa_95ceef02a6 (IsA man_of_earth morning_glory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "man of letter is a kind of humanist", "pln": ["(: cnet_isa_bcf30e9013 (IsA man_of_letter humanist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "man of mean is a kind of rich person", "pln": ["(: cnet_isa_70ae6e7ccc (IsA man_of_mean rich_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "man of war is a kind of warship", "pln": ["(: cnet_isa_51ca0a7b1b (IsA man_of_war warship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "man on horse is a kind of agaric", "pln": ["(: cnet_isa_41ccbcf575 (IsA man_on_horse agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manageability is a kind of tractability", "pln": ["(: cnet_isa_ce9624ca80 (IsA manageability tractability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "managed economy is a kind of non market economy", "pln": ["(: cnet_isa_7f3952415a (IsA managed_economy non_market_economy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "management is a kind of social control", "pln": ["(: cnet_isa_a5c8e5ea36 (IsA management social_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "management is a kind of administration", "pln": ["(: cnet_isa_b8b58b1d56 (IsA management administration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "management consultant is a kind of adviser", "pln": ["(: cnet_isa_83b0d55c64 (IsA management_consultant adviser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "management consulting is a kind of service industry", "pln": ["(: cnet_isa_87eaa9eba6 (IsA management_consulting service_industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "management control is a kind of internal control", "pln": ["(: cnet_isa_27412f01e6 (IsA management_control internal_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "management personnel is a kind of force", "pln": ["(: cnet_isa_fd359b7ba1 (IsA management_personnel force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manageress is a kind of director", "pln": ["(: cnet_isa_e5ea6e383a (IsA manageress director) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "managership is a kind of position", "pln": ["(: cnet_isa_93a96a99e5 (IsA managership position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "managing editor is a kind of editor", "pln": ["(: cnet_isa_6e3922afba (IsA managing_editor editor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manakin is a kind of tyrannid", "pln": ["(: cnet_isa_9265f846e5 (IsA manakin tyrannid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manana is a kind of future", "pln": ["(: cnet_isa_00eb12a4eb (IsA manana future) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manat is a kind of azerbaijani monetary unit", "pln": ["(: cnet_isa_9c7b2c82b5 (IsA manat azerbaijani_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manat is a kind of turkmen monetary unit", "pln": ["(: cnet_isa_42093c9fa4 (IsA manat turkmen_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manatee is a kind of sea cow", "pln": ["(: cnet_isa_4f0d83c5b5 (IsA manatee sea_cow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manchester terrier is a kind of rat terrier", "pln": ["(: cnet_isa_46d165bbc5 (IsA manchester_terrier rat_terrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manchu is a kind of tungusic", "pln": ["(: cnet_isa_23a1c35164 (IsA manchu tungusic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mancunian is a kind of english person", "pln": ["(: cnet_isa_8a8b8b414b (IsA mancunian english_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manda is a kind of south central dravidian", "pln": ["(: cnet_isa_3289f144f6 (IsA manda south_central_dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mandaean is a kind of aramaic", "pln": ["(: cnet_isa_981b8348f3 (IsA mandaean aramaic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mandaeanism is a kind of gnosticism", "pln": ["(: cnet_isa_b347d1a2b1 (IsA mandaeanism gnosticism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mandala is a kind of design", "pln": ["(: cnet_isa_aef5537cb4 (IsA mandala design) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mandamus is a kind of writ", "pln": ["(: cnet_isa_dd850063fa (IsA mandamus writ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mandara is a kind of biu mandara", "pln": ["(: cnet_isa_46385793d7 (IsA mandara biu_mandara) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mandarin is a kind of chinese", "pln": ["(: cnet_isa_69808f4e0c (IsA mandarin chinese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mandarin is a kind of citrus", "pln": ["(: cnet_isa_467a3bc7c0 (IsA mandarin citrus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mandarin is a kind of elitist", "pln": ["(: cnet_isa_ba08d248c3 (IsA mandarin elitist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mandarin is a kind of official", "pln": ["(: cnet_isa_22eb3f21b1 (IsA mandarin official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mandarin duck is a kind of duck", "pln": ["(: cnet_isa_84f0d3d4b0 (IsA mandarin_duck duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mandatary is a kind of recipient", "pln": ["(: cnet_isa_5700235e72 (IsA mandatary recipient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mandate is a kind of legal document", "pln": ["(: cnet_isa_957a2bfb03 (IsA mandate legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mandate is a kind of district", "pln": ["(: cnet_isa_6822c0141a (IsA mandate district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mandate is a kind of commission", "pln": ["(: cnet_isa_605e68ad31 (IsA mandate commission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mandator is a kind of authority", "pln": ["(: cnet_isa_84c08d7aad (IsA mandator authority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mandatory injunction is a kind of injunction", "pln": ["(: cnet_isa_1b7f8f068a (IsA mandatory_injunction injunction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mande is a kind of niger congo", "pln": ["(: cnet_isa_e41118aa7b (IsA mande niger_congo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mandean is a kind of religionist", "pln": ["(: cnet_isa_195d2382da (IsA mandean religionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mandelbrot set is a kind of set", "pln": ["(: cnet_isa_b0e90abf75 (IsA mandelbrot_set set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mandevilla is a kind of dicot genus", "pln": ["(: cnet_isa_9e06724784 (IsA mandevilla dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mandibular joint is a kind of synovial joint", "pln": ["(: cnet_isa_f194ffdc26 (IsA mandibular_joint synovial_joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mandibular notch is a kind of incisure", "pln": ["(: cnet_isa_70cc228dae (IsA mandibular_notch incisure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mandola is a kind of mandolin", "pln": ["(: cnet_isa_f2974a6c99 (IsA mandola mandolin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mandolin is a kind of instrument", "pln": ["(: cnet_isa_4ba4d1ddb5 (IsA mandolin instrument) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mandolin is a kind of musical instrument", "pln": ["(: cnet_isa_a1e5c04247 (IsA mandolin musical_instrument) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mandolin is a kind of stringed musical instrument", "pln": ["(: cnet_isa_23d7d0cf0a (IsA mandolin stringed_musical_instrument) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mandolin is a kind of chordophone", "pln": ["(: cnet_isa_00affaed60 (IsA mandolin chordophone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mandragora is a kind of asterid dicot genus", "pln": ["(: cnet_isa_621505eb63 (IsA mandragora asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mandrake is a kind of herb", "pln": ["(: cnet_isa_c167203151 (IsA mandrake herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mandrake root is a kind of root", "pln": ["(: cnet_isa_49e423b4a0 (IsA mandrake_root root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mandrill is a kind of baboon", "pln": ["(: cnet_isa_ec4ddb70b3 (IsA mandrill baboon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mandrillus is a kind of mammal genus", "pln": ["(: cnet_isa_b6c48185cd (IsA mandrillus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manduca is a kind of arthropod genus", "pln": ["(: cnet_isa_c0090d1cc2 (IsA manduca arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manduca quinquemaculata is a kind of hawkmoth", "pln": ["(: cnet_isa_fe637fa420 (IsA manduca_quinquemaculata hawkmoth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manduca sexta is a kind of hawkmoth", "pln": ["(: cnet_isa_7b98392e2c (IsA manduca_sexta hawkmoth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mane is a kind of hair", "pln": ["(: cnet_isa_17873732ad (IsA mane hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maneuver is a kind of evasion", "pln": ["(: cnet_isa_a019de2e3d (IsA maneuver evasion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maneuver is a kind of motion", "pln": ["(: cnet_isa_bc287c3806 (IsA maneuver motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maneuver is a kind of move", "pln": ["(: cnet_isa_7851d68ad4 (IsA maneuver move) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maneuver is a kind of operation", "pln": ["(: cnet_isa_3a9e8aadad (IsA maneuver operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maneuverability is a kind of mobility", "pln": ["(: cnet_isa_c0a0d39633 (IsA maneuverability mobility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maneuverer is a kind of planner", "pln": ["(: cnet_isa_19e55ce1cc (IsA maneuverer planner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manfulness is a kind of masculinity", "pln": ["(: cnet_isa_c771ac2c0d (IsA manfulness masculinity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manga is a kind of novel", "pln": ["(: cnet_isa_f2468596d8 (IsA manga novel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mangabey is a kind of old world monkey", "pln": ["(: cnet_isa_a1222dfa81 (IsA mangabey old_world_monkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manganate is a kind of salt", "pln": ["(: cnet_isa_7a03b2dd05 (IsA manganate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manganese is a kind of metallic element", "pln": ["(: cnet_isa_87673c0c0c (IsA manganese metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manganese bronze is a kind of alpha beta brass", "pln": ["(: cnet_isa_a9f99f6f63 (IsA manganese_bronze alpha_beta_brass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manganese steel is a kind of alloy steel", "pln": ["(: cnet_isa_230b9cbefb (IsA manganese_steel alloy_steel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manganese tetroxide is a kind of compound", "pln": ["(: cnet_isa_609044e022 (IsA manganese_tetroxide compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manganic acid is a kind of acid", "pln": ["(: cnet_isa_cce692fcfc (IsA manganic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manganite is a kind of mineral", "pln": ["(: cnet_isa_70e1d3a564 (IsA manganite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mange is a kind of animal disease", "pln": ["(: cnet_isa_e2a0ed04a2 (IsA mange animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mangel wurzel is a kind of beet", "pln": ["(: cnet_isa_afae4d271e (IsA mangel_wurzel beet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manger is a kind of container", "pln": ["(: cnet_isa_f91776f8f3 (IsA manger container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mangifera is a kind of dicot genus", "pln": ["(: cnet_isa_9e08c3d271 (IsA mangifera dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mangle is a kind of clothe dryer", "pln": ["(: cnet_isa_daec83bfe9 (IsA mangle clothe_dryer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manglietia is a kind of angiospermous tree", "pln": ["(: cnet_isa_280a9ef201 (IsA manglietia angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mango is a kind of fruit", "pln": ["(: cnet_isa_c5f009c9b3 (IsA mango fruit) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mango is a kind of edible fruit", "pln": ["(: cnet_isa_9cda5dd5fa (IsA mango edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mango is a kind of fruit tree", "pln": ["(: cnet_isa_a05991a907 (IsA mango fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mangosteen is a kind of edible fruit", "pln": ["(: cnet_isa_f51b2a5581 (IsA mangosteen edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mangosteen is a kind of fruit tree", "pln": ["(: cnet_isa_a6adadfda4 (IsA mangosteen fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mangrove is a kind of angiospermous tree", "pln": ["(: cnet_isa_dee516226d (IsA mangrove angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manhattan is a kind of cocktail", "pln": ["(: cnet_isa_2612bb69e5 (IsA manhattan cocktail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manhattan clam chowder is a kind of clam chowder", "pln": ["(: cnet_isa_8f34fc2bbc (IsA manhattan_clam_chowder clam_chowder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manhattan project is a kind of executive agency", "pln": ["(: cnet_isa_28595e5a97 (IsA manhattan_project executive_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manhole is a kind of hole", "pln": ["(: cnet_isa_412c247943 (IsA manhole hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manhole cover is a kind of top", "pln": ["(: cnet_isa_35a95d0d42 (IsA manhole_cover top) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manhood is a kind of position", "pln": ["(: cnet_isa_fa2995e1fa (IsA manhood position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manhood is a kind of adulthood", "pln": ["(: cnet_isa_d14a7bd03a (IsA manhood adulthood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manhunt is a kind of search", "pln": ["(: cnet_isa_95ecad318f (IsA manhunt search) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mania is a kind of irrational motive", "pln": ["(: cnet_isa_c34c56b7aa (IsA mania irrational_motive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mania is a kind of affective disorder", "pln": ["(: cnet_isa_d9b74ed940 (IsA mania affective_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maniac is a kind of fancier", "pln": ["(: cnet_isa_4a1ce9394a (IsA maniac fancier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manic depression is a kind of mental illness", "pln": ["(: cnet_isa_673a922475 (IsA manic_depression mental_illness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manic depressive is a kind of sick person", "pln": ["(: cnet_isa_d7798e34bc (IsA manic_depressive sick_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manichaeism is a kind of religion", "pln": ["(: cnet_isa_6eee041ea4 (IsA manichaeism religion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manichean is a kind of disciple", "pln": ["(: cnet_isa_8e559d26cc (IsA manichean disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "manicotti is a kind of pasta", "pln": ["(: cnet_isa_a87b343650 (IsA manicotti pasta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manicure is a kind of beauty treatment", "pln": ["(: cnet_isa_565115a939 (IsA manicure beauty_treatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manicure is a kind of care", "pln": ["(: cnet_isa_fb76b3515f (IsA manicure care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manicure set is a kind of set", "pln": ["(: cnet_isa_904c678964 (IsA manicure_set set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manicurist is a kind of beautician", "pln": ["(: cnet_isa_66d34b8e7c (IsA manicurist beautician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manidae is a kind of mammal family", "pln": ["(: cnet_isa_94c85fbd06 (IsA manidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manifest is a kind of legal document", "pln": ["(: cnet_isa_a510971304 (IsA manifest legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manifest destiny is a kind of imperialism", "pln": ["(: cnet_isa_0bf9e7c1ce (IsA manifest_destiny imperialism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manifestation is a kind of indication", "pln": ["(: cnet_isa_4f5b412232 (IsA manifestation indication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manifestation is a kind of appearance", "pln": ["(: cnet_isa_8f4a7bf2cf (IsA manifestation appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manifesto is a kind of declaration", "pln": ["(: cnet_isa_0def5be200 (IsA manifesto declaration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manifold is a kind of pipe", "pln": ["(: cnet_isa_4c774b86d1 (IsA manifold pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manifold is a kind of mathematical space", "pln": ["(: cnet_isa_c44d870dcb (IsA manifold mathematical_space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manifold paper is a kind of paper", "pln": ["(: cnet_isa_3066eebd3b (IsA manifold_paper paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manihot is a kind of rosid dicot genus", "pln": ["(: cnet_isa_5c17884e44 (IsA manihot rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manikin is a kind of small person", "pln": ["(: cnet_isa_d88b135283 (IsA manikin small_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manila is a kind of paper", "pln": ["(: cnet_isa_216b352a58 (IsA manila paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manila grass is a kind of zoysia", "pln": ["(: cnet_isa_3fd3b08aa0 (IsA manila_grass zoysia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manila hemp is a kind of hemp", "pln": ["(: cnet_isa_4d11c818e2 (IsA manila_hemp hemp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manila tamarind is a kind of tree", "pln": ["(: cnet_isa_44633b7f86 (IsA manila_tamarind tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manilkara is a kind of dicot genus", "pln": ["(: cnet_isa_26098e0b7f (IsA manilkara dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manipulability is a kind of mobility", "pln": ["(: cnet_isa_260a7c868a (IsA manipulability mobility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manipulation is a kind of influence", "pln": ["(: cnet_isa_f984c84ad9 (IsA manipulation influence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manipulative electronic deception is a kind of electronic deception", "pln": ["(: cnet_isa_c4209462f1 (IsA manipulative_electronic_deception electronic_deception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manipulator is a kind of person", "pln": ["(: cnet_isa_c59be25f35 (IsA manipulator person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manipur chief minister is a kind of worker", "pln": ["(: cnet_isa_c55f825b27 (IsA manipur_chief_minister worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maniraptor is a kind of theropod", "pln": ["(: cnet_isa_60c01cbb6d (IsA maniraptor theropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maniraptora is a kind of animal order", "pln": ["(: cnet_isa_be1a727bbb (IsA maniraptora animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manis is a kind of mammal genus", "pln": ["(: cnet_isa_ff88493c26 (IsA manis mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mankind is a kind of one single nation", "pln": ["(: cnet_isa_c9dfe17f63 (IsA mankind one_single_nation) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manna is a kind of sap", "pln": ["(: cnet_isa_926f857546 (IsA manna sap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manna ash is a kind of ash", "pln": ["(: cnet_isa_593304a35d (IsA manna_ash ash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manna grass is a kind of meadowgrass", "pln": ["(: cnet_isa_735fc010a7 (IsA manna_grass meadowgrass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manna gum is a kind of eucalyptus", "pln": ["(: cnet_isa_f8ce25ea70 (IsA manna_gum eucalyptus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manna lichen is a kind of lecanora", "pln": ["(: cnet_isa_d6718bd681 (IsA manna_lichen lecanora) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mannequin is a kind of dummy", "pln": ["(: cnet_isa_de9a11ebb5 (IsA mannequin dummy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mannequin is a kind of assistant", "pln": ["(: cnet_isa_127bbbc8dc (IsA mannequin assistant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manner is a kind of demeanor", "pln": ["(: cnet_isa_0b826d75b5 (IsA manner demeanor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manner is a kind of property", "pln": ["(: cnet_isa_f37ac71af7 (IsA manner property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manner is a kind of kind", "pln": ["(: cnet_isa_9d9a1cc33e (IsA manner kind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manner of speaking is a kind of expressive style", "pln": ["(: cnet_isa_a783899937 (IsA manner_of_speaking expressive_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manometer is a kind of pressure gauge", "pln": ["(: cnet_isa_a6d7fe7a75 (IsA manometer pressure_gauge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manor is a kind of mansion", "pln": ["(: cnet_isa_8ab95423f5 (IsA manor mansion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manor is a kind of estate", "pln": ["(: cnet_isa_14e03d63f2 (IsA manor estate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manor hall is a kind of room", "pln": ["(: cnet_isa_5eabe3a69e (IsA manor_hall room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manpad is a kind of surface to air missile", "pln": ["(: cnet_isa_03f6c826e6 (IsA manpad surface_to_air_missile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mansard is a kind of curb roof", "pln": ["(: cnet_isa_1c48d33166 (IsA mansard curb_roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "manse is a kind of residence", "pln": ["(: cnet_isa_67b49cda41 (IsA manse residence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manservant is a kind of servant", "pln": ["(: cnet_isa_d0e62b9477 (IsA manservant servant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mansi is a kind of ugric", "pln": ["(: cnet_isa_f805dfc1b5 (IsA mansi ugric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mansi is a kind of russian", "pln": ["(: cnet_isa_a46756ad1c (IsA mansi russian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mansion is a kind of house", "pln": ["(: cnet_isa_73fada03ff (IsA mansion house) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manslaughter is a kind of homicide", "pln": ["(: cnet_isa_386ec286e5 (IsA manslaughter homicide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manta is a kind of ray", "pln": ["(: cnet_isa_9f1a88599d (IsA manta ray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "manta is a kind of blanket", "pln": ["(: cnet_isa_d5377082cf (IsA manta blanket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mantel is a kind of shelf", "pln": ["(: cnet_isa_0a2369e99b (IsA mantel shelf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mantelet is a kind of cape", "pln": ["(: cnet_isa_c785fe9bcf (IsA mantelet cape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mantelet is a kind of shelter", "pln": ["(: cnet_isa_a1db3aff29 (IsA mantelet shelter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manteodea is a kind of animal order", "pln": ["(: cnet_isa_22ac729f0a (IsA manteodea animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manticore is a kind of mythical monster", "pln": ["(: cnet_isa_d793a49ce5 (IsA manticore mythical_monster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mantidae is a kind of arthropod family", "pln": ["(: cnet_isa_9d9b640f80 (IsA mantidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mantilla is a kind of scarf", "pln": ["(: cnet_isa_831744e82a (IsA mantilla scarf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mantis is a kind of dictyopterous insect", "pln": ["(: cnet_isa_9ef85a896c (IsA mantis dictyopterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mantis shrimp is a kind of stomatopod", "pln": ["(: cnet_isa_8075747325 (IsA mantis_shrimp stomatopod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mantispid is a kind of neuropteron", "pln": ["(: cnet_isa_f9de91c8a8 (IsA mantispid neuropteron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mantispidae is a kind of arthropod family", "pln": ["(: cnet_isa_dbc435a4c5 (IsA mantispidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mantissa is a kind of fraction", "pln": ["(: cnet_isa_80cf108d1a (IsA mantissa fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mantle is a kind of symbol", "pln": ["(: cnet_isa_75419f3f2c (IsA mantle symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mantle is a kind of layer", "pln": ["(: cnet_isa_6517beead7 (IsA mantle layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mantle is a kind of epidermis", "pln": ["(: cnet_isa_219ff358a1 (IsA mantle epidermis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mantled ground squirrel is a kind of ground squirrel", "pln": ["(: cnet_isa_c232ef5a5c (IsA mantled_ground_squirrel ground_squirrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mantophasmatodea is a kind of animal order", "pln": ["(: cnet_isa_db989842d3 (IsA mantophasmatodea animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mantoux test is a kind of tuberculin test", "pln": ["(: cnet_isa_986e791be1 (IsA mantoux_test tuberculin_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mantra is a kind of sacred text", "pln": ["(: cnet_isa_a81e130f82 (IsA mantra sacred_text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mantra is a kind of motto", "pln": ["(: cnet_isa_be5754490a (IsA mantra motto) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mantrap is a kind of trap", "pln": ["(: cnet_isa_c3a7c8c914 (IsA mantrap trap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "manual of arms is a kind of exercise", "pln": ["(: cnet_isa_d717c17d36 (IsA manual_of_arms exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mantua is a kind of gown", "pln": ["(: cnet_isa_cab363d32d (IsA mantua gown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manual is a kind of handbook", "pln": ["(: cnet_isa_43b3f09872 (IsA manual handbook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manual alphabet is a kind of alphabet", "pln": ["(: cnet_isa_2fe684fdb6 (IsA manual_alphabet alphabet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manual labor is a kind of labor", "pln": ["(: cnet_isa_ec5f840353 (IsA manual_labor labor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manual of arm is a kind of exercise", "pln": ["(: cnet_isa_06a997a3b2 (IsA manual_of_arm exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manubrium is a kind of bone", "pln": ["(: cnet_isa_89fe9b132d (IsA manubrium bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manufacturer is a kind of business", "pln": ["(: cnet_isa_047a0d9918 (IsA manufacturer business) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manufacturer is a kind of maker", "pln": ["(: cnet_isa_4e72a7ec21 (IsA manufacturer maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manul is a kind of wildcat", "pln": ["(: cnet_isa_12747ec5ce (IsA manul wildcat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manumission is a kind of liberation", "pln": ["(: cnet_isa_8b7dfc6a74 (IsA manumission liberation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manure is a kind of waste product of cow", "pln": ["(: cnet_isa_205464c481 (IsA manure waste_product_of_cow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manure is a kind of organic", "pln": ["(: cnet_isa_61ab3e2abf (IsA manure organic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "manuscript is a kind of autograph", "pln": ["(: cnet_isa_a43ccd9bda (IsA manuscript autograph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manuscript is a kind of writing", "pln": ["(: cnet_isa_94d5536b39 (IsA manuscript writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manx is a kind of gaelic", "pln": ["(: cnet_isa_5e37dd43ea (IsA manx gaelic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manx cat is a kind of domestic cat", "pln": ["(: cnet_isa_3ae154ba97 (IsA manx_cat domestic_cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manx shearwater is a kind of shearwater", "pln": ["(: cnet_isa_bfaa10bf11 (IsA manx_shearwater shearwater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "many pet is a kind of domestic animal", "pln": ["(: cnet_isa_086f9e4b2e (IsA many_pet domestic_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manzanilla is a kind of sherry", "pln": ["(: cnet_isa_c7fb160023 (IsA manzanilla sherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "manzanita is a kind of shrub", "pln": ["(: cnet_isa_2ed3ad8f77 (IsA manzanita shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mao jacket is a kind of jacket", "pln": ["(: cnet_isa_392f9aa260 (IsA mao_jacket jacket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maoism is a kind of communism", "pln": ["(: cnet_isa_c812418e9a (IsA maoism communism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maoist is a kind of advocate", "pln": ["(: cnet_isa_277ac06e8c (IsA maoist advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maori is a kind of oceanic", "pln": ["(: cnet_isa_6261677b01 (IsA maori oceanic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maori is a kind of ethnic minority", "pln": ["(: cnet_isa_cbc0e260fe (IsA maori ethnic_minority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "map is a kind of symbolic representation", "pln": ["(: cnet_isa_82b4f0024f (IsA map symbolic_representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "map is a kind of representation", "pln": ["(: cnet_isa_5461c4e7f9 (IsA map representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "map projection is a kind of projection", "pln": ["(: cnet_isa_a413fd504e (IsA map_projection projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "map reader is a kind of reader", "pln": ["(: cnet_isa_7184cf4eb4 (IsA map_reader reader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mapinguari is a kind of mylodontid", "pln": ["(: cnet_isa_0a9aa4ab9e (IsA mapinguari mylodontid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maple is a kind of wood", "pln": ["(: cnet_isa_50971c8341 (IsA maple wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maple is a kind of angiospermous tree", "pln": ["(: cnet_isa_82c0c0ec87 (IsA maple angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maple leaf is a kind of emblem", "pln": ["(: cnet_isa_19321f2908 (IsA maple_leaf emblem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maple sugar is a kind of carbohydrate", "pln": ["(: cnet_isa_a06e589d4f (IsA maple_sugar carbohydrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maple syrup is a kind of syrup", "pln": ["(: cnet_isa_387dc6eb4f (IsA maple_syrup syrup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maple syrup urine disease is a kind of genetic disease", "pln": ["(: cnet_isa_08a2c63732 (IsA maple_syrup_urine_disease genetic_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maple syrup urine disease is a kind of ketonuria", "pln": ["(: cnet_isa_a75adbcde7 (IsA maple_syrup_urine_disease ketonuria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mapmaking is a kind of devising", "pln": ["(: cnet_isa_dcc799e50d (IsA mapmaking devising) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mapping is a kind of procedure", "pln": ["(: cnet_isa_7e68f2b94f (IsA mapping procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mapping is a kind of mathematical relation", "pln": ["(: cnet_isa_020faa2a85 (IsA mapping mathematical_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maquiladora is a kind of assembly plant", "pln": ["(: cnet_isa_c671cd2277 (IsA maquiladora assembly_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maquis is a kind of underground", "pln": ["(: cnet_isa_6b1440100f (IsA maquis underground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maquisard is a kind of guerrilla", "pln": ["(: cnet_isa_bbe7c5dacb (IsA maquisard guerrilla) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mara is a kind of rodent", "pln": ["(: cnet_isa_f6d960fa38 (IsA mara rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "marabou is a kind of feather", "pln": ["(: cnet_isa_859b981c06 (IsA marabou feather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "marabou is a kind of stork", "pln": ["(: cnet_isa_c92d748363 (IsA marabou stork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "marathons is a kind of 26 2 miles long", "pln": ["(: cnet_isa_1bc6e208e8 (IsA marathons 26_2_miles_long) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maraca is a kind of percussion instrument", "pln": ["(: cnet_isa_81b24765bc (IsA maraca percussion_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maraco is a kind of amerind", "pln": ["(: cnet_isa_69fc9d145c (IsA maraco amerind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maraco is a kind of south american", "pln": ["(: cnet_isa_a542ea6d1d (IsA maraco south_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marang is a kind of edible fruit", "pln": ["(: cnet_isa_8d976c5210 (IsA marang edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marang is a kind of fruit tree", "pln": ["(: cnet_isa_d66fc608bf (IsA marang fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maranta is a kind of herb", "pln": ["(: cnet_isa_23e89bba59 (IsA maranta herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marantaceae is a kind of monocot family", "pln": ["(: cnet_isa_232bc58131 (IsA marantaceae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marasca is a kind of fruit", "pln": ["(: cnet_isa_feb8789312 (IsA marasca fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marasca is a kind of sour cherry", "pln": ["(: cnet_isa_f0992410ba (IsA marasca sour_cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maraschino is a kind of liqueur", "pln": ["(: cnet_isa_222f63c5b6 (IsA maraschino liqueur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maraschino is a kind of sweet", "pln": ["(: cnet_isa_ced6275f1a (IsA maraschino sweet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marasmius is a kind of fungus genus", "pln": ["(: cnet_isa_64327cf745 (IsA marasmius fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marasmus is a kind of malnutrition", "pln": ["(: cnet_isa_9cbc887e96 (IsA marasmus malnutrition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marathi is a kind of sanskrit", "pln": ["(: cnet_isa_22cc0b0220 (IsA marathi sanskrit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marathon is a kind of great distance", "pln": ["(: cnet_isa_18079f8e86 (IsA marathon great_distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marathon is a kind of undertaking", "pln": ["(: cnet_isa_2a6eb9299e (IsA marathon undertaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marathon is a kind of footrace", "pln": ["(: cnet_isa_29d70c6a38 (IsA marathon footrace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marathoner is a kind of runner", "pln": ["(: cnet_isa_fe7873c3ff (IsA marathoner runner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marathon is a kind of 26 2 mile long", "pln": ["(: cnet_isa_56141bebf1 (IsA marathon 26_2_mile_long) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marattia is a kind of fern genus", "pln": ["(: cnet_isa_cf7fbb75d0 (IsA marattia fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marattiaceae is a kind of fern family", "pln": ["(: cnet_isa_c43fd827ca (IsA marattiaceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marattiale is a kind of plant order", "pln": ["(: cnet_isa_61ada3ac6c (IsA marattiale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marauder is a kind of attacker", "pln": ["(: cnet_isa_87f26f130f (IsA marauder attacker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marble is a kind of easier to stain than granite", "pln": ["(: cnet_isa_18dc1cc47c (IsA marble easier_to_stain_than_granite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marble is a kind of rock", "pln": ["(: cnet_isa_1b5c6ac4a4 (IsA marble rock) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marble is a kind of stone", "pln": ["(: cnet_isa_3eb8599768 (IsA marble stone) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marble is a kind of useful metamorphic rock", "pln": ["(: cnet_isa_46601773a5 (IsA marble useful_metamorphic_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marble is a kind of ball", "pln": ["(: cnet_isa_2032175dc3 (IsA marble ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marble is a kind of sculpture", "pln": ["(: cnet_isa_2335599507 (IsA marble sculpture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marble cake is a kind of cake", "pln": ["(: cnet_isa_27de032c2e (IsA marble_cake cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marbleization is a kind of texture", "pln": ["(: cnet_isa_745a058f6f (IsA marbleization texture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marble is a kind of sphere", "pln": ["(: cnet_isa_1b30e78131 (IsA marble sphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marble is a kind of child s game", "pln": ["(: cnet_isa_fb23ad23e6 (IsA marble child_s_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marblewood is a kind of tree", "pln": ["(: cnet_isa_420308f4fb (IsA marblewood tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marblewood is a kind of zebrawood", "pln": ["(: cnet_isa_2fc1a2c50a (IsA marblewood zebrawood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marbling is a kind of edible fat", "pln": ["(: cnet_isa_7e735cd5c4 (IsA marbling edible_fat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marburg disease is a kind of hemorrhagic fever", "pln": ["(: cnet_isa_7401096533 (IsA marburg_disease hemorrhagic_fever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marburg virus is a kind of filovirus", "pln": ["(: cnet_isa_ba6d3b545f (IsA marburg_virus filovirus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marc is a kind of brandy", "pln": ["(: cnet_isa_afa64e135e (IsA marc brandy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marcel is a kind of hairdo", "pln": ["(: cnet_isa_0e8ebfa255 (IsA marcel hairdo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "march is a kind of progress", "pln": ["(: cnet_isa_90325dab91 (IsA march progress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "march is a kind of walk", "pln": ["(: cnet_isa_bed9353308 (IsA march walk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "march is a kind of procession", "pln": ["(: cnet_isa_fbcaa36a6e (IsA march procession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "march is a kind of gregorian calendar month", "pln": ["(: cnet_isa_dbf3fc9498 (IsA march gregorian_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marchand de vin is a kind of sauce", "pln": ["(: cnet_isa_e550b4eee5 (IsA marchand_de_vin sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marchantia is a kind of moss genus", "pln": ["(: cnet_isa_840a5f88a8 (IsA marchantia moss_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "marchantiaceae is a kind of moss family", "pln": ["(: cnet_isa_54ce636cc2 (IsA marchantiaceae moss_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marchantiale is a kind of plant order", "pln": ["(: cnet_isa_e590b02b2f (IsA marchantiale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marcher is a kind of inhabitant", "pln": ["(: cnet_isa_fdd4c8b535 (IsA marcher inhabitant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marcher is a kind of pedestrian", "pln": ["(: cnet_isa_33f62ebad9 (IsA marcher pedestrian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marching band is a kind of band", "pln": ["(: cnet_isa_f0c48342d7 (IsA marching_band band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marching music is a kind of music genre", "pln": ["(: cnet_isa_d87ebbbde0 (IsA marching_music music_genre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marching order is a kind of materiel", "pln": ["(: cnet_isa_f08d7f728c (IsA marching_order materiel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marching order is a kind of order", "pln": ["(: cnet_isa_6f6b7231d8 (IsA marching_order order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marchioness is a kind of noblewoman", "pln": ["(: cnet_isa_c67b52503e (IsA marchioness noblewoman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marchioness is a kind of wife", "pln": ["(: cnet_isa_ac7263cff0 (IsA marchioness wife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marcionism is a kind of heresy", "pln": ["(: cnet_isa_789efee25f (IsA marcionism heresy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marcionism is a kind of theological doctrine", "pln": ["(: cnet_isa_9a1b3fb020 (IsA marcionism theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marco polo sheep is a kind of wild sheep", "pln": ["(: cnet_isa_8f5de236a7 (IsA marco_polo_sheep wild_sheep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mardi gra is a kind of carnival", "pln": ["(: cnet_isa_3f13062f13 (IsA mardi_gra carnival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mardi gra is a kind of christian holy day", "pln": ["(: cnet_isa_e23ee7b5fa (IsA mardi_gra christian_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mare s tail is a kind of cirrus", "pln": ["(: cnet_isa_154c0b4e61 (IsA mare_s_tail cirrus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mare is a kind of horse", "pln": ["(: cnet_isa_a3fb8538ea (IsA mare horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mare is a kind of region", "pln": ["(: cnet_isa_c3ca779b58 (IsA mare region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mare clausum is a kind of waterway", "pln": ["(: cnet_isa_f8499a426c (IsA mare_clausum waterway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mare liberum is a kind of waterway", "pln": ["(: cnet_isa_421f173ccf (IsA mare_liberum waterway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mare nostrum is a kind of mediterranean", "pln": ["(: cnet_isa_039f716aa2 (IsA mare_nostrum mediterranean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "marfan s syndrome is a kind of autosomal dominant disease", "pln": ["(: cnet_isa_9c3b69bf98 (IsA marfan_s_syndrome autosomal_dominant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "margaric acid is a kind of saturated fatty acid", "pln": ["(: cnet_isa_80661ca704 (IsA margaric_acid saturated_fatty_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "margarin is a kind of glyceryl ester", "pln": ["(: cnet_isa_5c60b29d03 (IsA margarin glyceryl_ester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "margarine is a kind of spread", "pln": ["(: cnet_isa_fe975fe4cf (IsA margarine spread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "margarita is a kind of cocktail", "pln": ["(: cnet_isa_d6a69e5ef8 (IsA margarita cocktail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "margate is a kind of grunt", "pln": ["(: cnet_isa_d4bf0e4b89 (IsA margate grunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "margay is a kind of wildcat", "pln": ["(: cnet_isa_4d4cf2055d (IsA margay wildcat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "margin is a kind of amount", "pln": ["(: cnet_isa_986eee75d8 (IsA margin amount) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "margin is a kind of space", "pln": ["(: cnet_isa_b8bc57f5c9 (IsA margin space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "margin is a kind of down payment", "pln": ["(: cnet_isa_1b0bf9d30b (IsA margin down_payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "margin is a kind of boundary", "pln": ["(: cnet_isa_be1446ea75 (IsA margin boundary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "margin account is a kind of brokerage account", "pln": ["(: cnet_isa_20f83b04b7 (IsA margin_account brokerage_account) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "margin call is a kind of demand", "pln": ["(: cnet_isa_df1dada25a (IsA margin_call demand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "margin of profit is a kind of ratio", "pln": ["(: cnet_isa_ed4cb9d6cc (IsA margin_of_profit ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "margin of safety is a kind of index", "pln": ["(: cnet_isa_cbcc9cf3f3 (IsA margin_of_safety index) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "margin of safety is a kind of margin", "pln": ["(: cnet_isa_1fa27cb112 (IsA margin_of_safety margin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marginal cost is a kind of monetary value", "pln": ["(: cnet_isa_fed431e0b2 (IsA marginal_cost monetary_value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marginal placentation is a kind of placentation", "pln": ["(: cnet_isa_98e1e8ec66 (IsA marginal_placentation placentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "marginal utility is a kind of utility", "pln": ["(: cnet_isa_b86cb48d3d (IsA marginal_utility utility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marginal wood fern is a kind of wood fern", "pln": ["(: cnet_isa_289a6ea7d6 (IsA marginal_wood_fern wood_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marginalia is a kind of note", "pln": ["(: cnet_isa_0af9f16e51 (IsA marginalia note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marginality is a kind of position", "pln": ["(: cnet_isa_78a57b2825 (IsA marginality position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marginalization is a kind of social process", "pln": ["(: cnet_isa_8a50b64cb6 (IsA marginalization social_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marginocephalia is a kind of animal order", "pln": ["(: cnet_isa_b0aebe7ddd (IsA marginocephalia animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "margrave is a kind of military governor", "pln": ["(: cnet_isa_19193897a6 (IsA margrave military_governor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "margrave is a kind of nobleman", "pln": ["(: cnet_isa_badd3d3b57 (IsA margrave nobleman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marguerite is a kind of subshrub", "pln": ["(: cnet_isa_6a74458a11 (IsA marguerite subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maria is a kind of tree", "pln": ["(: cnet_isa_6113f09598 (IsA maria tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mariachi is a kind of ensemble", "pln": ["(: cnet_isa_cf4aa6d179 (IsA mariachi ensemble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "maricopa is a kind of yuman", "pln": ["(: cnet_isa_6bc4623bdb (IsA maricopa yuman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maricopa is a kind of hoka", "pln": ["(: cnet_isa_7ef7fc3ef7 (IsA maricopa hoka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marigold is a kind of annual plant", "pln": ["(: cnet_isa_363449dd46 (IsA marigold annual_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marigold is a kind of flower", "pln": ["(: cnet_isa_187dc86b33 (IsA marigold flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marijuana is a kind of drug", "pln": ["(: cnet_isa_c9a740e826 (IsA marijuana drug) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marijuana is a kind of cannabis", "pln": ["(: cnet_isa_eb4303500e (IsA marijuana cannabis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marimba is a kind of percussion instrument", "pln": ["(: cnet_isa_13c94c405f (IsA marimba percussion_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marina is a kind of place to keep boat", "pln": ["(: cnet_isa_03bc2ead94 (IsA marina place_to_keep_boat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marina is a kind of place with many boat", "pln": ["(: cnet_isa_21e3888728 (IsA marina place_with_many_boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marina is a kind of dock", "pln": ["(: cnet_isa_12614d6378 (IsA marina dock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marinade is a kind of condiment", "pln": ["(: cnet_isa_5f825fd2ec (IsA marinade condiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marinara is a kind of spaghetti sauce", "pln": ["(: cnet_isa_5d0d8001d4 (IsA marinara spaghetti_sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marine is a kind of soldier", "pln": ["(: cnet_isa_237217eabe (IsA marine soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "marine animal is a kind of animal", "pln": ["(: cnet_isa_411b5e3222 (IsA marine_animal animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marine archeology is a kind of archeology", "pln": ["(: cnet_isa_c0bf5c945d (IsA marine_archeology archeology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marine corp intelligence activity is a kind of agency", "pln": ["(: cnet_isa_4be1b46c3a (IsA marine_corp_intelligence_activity agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marine engineer is a kind of engineer", "pln": ["(: cnet_isa_8e90954221 (IsA marine_engineer engineer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marine glue is a kind of glue", "pln": ["(: cnet_isa_b9f0e0d3bf (IsA marine_glue glue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marine iguana is a kind of iguanid", "pln": ["(: cnet_isa_03e939eeef (IsA marine_iguana iguanid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marine mussel is a kind of mussel", "pln": ["(: cnet_isa_a8f59b8d03 (IsA marine_mussel mussel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mariner is a kind of sailor", "pln": ["(: cnet_isa_c62128cb5a (IsA mariner sailor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marine is a kind of military service", "pln": ["(: cnet_isa_03e4467083 (IsA marine military_service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mariposa is a kind of liliaceous plant", "pln": ["(: cnet_isa_92a0302e10 (IsA mariposa liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mariposan is a kind of penutian", "pln": ["(: cnet_isa_4f4073108a (IsA mariposan penutian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marital communication privilege is a kind of privilege", "pln": ["(: cnet_isa_dff9485c78 (IsA marital_communication_privilege privilege) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marital relationship is a kind of kinship", "pln": ["(: cnet_isa_46ab63639a (IsA marital_relationship kinship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marital status is a kind of legal status", "pln": ["(: cnet_isa_5296191c56 (IsA marital_status legal_status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mariticide is a kind of murder", "pln": ["(: cnet_isa_1a7f9d61e2 (IsA mariticide murder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maritime law is a kind of international law", "pln": ["(: cnet_isa_ecefe6008c (IsA maritime_law international_law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marjoram is a kind of herb", "pln": ["(: cnet_isa_b908afd499 (IsA marjoram herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mark is a kind of impression", "pln": ["(: cnet_isa_f827133ec8 (IsA mark impression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mark is a kind of evaluation", "pln": ["(: cnet_isa_98563f0649 (IsA mark evaluation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mark is a kind of indication", "pln": ["(: cnet_isa_a7fdbdbffd (IsA mark indication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mark is a kind of symbol", "pln": ["(: cnet_isa_29fd0361e5 (IsA mark symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mark is a kind of written symbol", "pln": ["(: cnet_isa_eb2dae2de9 (IsA mark written_symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mark is a kind of german monetary unit", "pln": ["(: cnet_isa_ca0d9e72bb (IsA mark german_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mark of cain is a kind of sin", "pln": ["(: cnet_isa_a7180a38c9 (IsA mark_of_cain sin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marker is a kind of pen", "pln": ["(: cnet_isa_fa710cbdc5 (IsA marker pen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marker is a kind of pen with fat tip", "pln": ["(: cnet_isa_a3e6e0a707 (IsA marker pen_with_fat_tip) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marker is a kind of artifact", "pln": ["(: cnet_isa_9389d3f2d9 (IsA marker artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marker is a kind of writing implement", "pln": ["(: cnet_isa_be532c689e (IsA marker writing_implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marker is a kind of symbol", "pln": ["(: cnet_isa_f8ea14626a (IsA marker symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "market is a kind of activity", "pln": ["(: cnet_isa_4b5b48d634 (IsA market activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "market is a kind of class", "pln": ["(: cnet_isa_39bd2a34e0 (IsA market class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "market is a kind of industry", "pln": ["(: cnet_isa_20ed79bc15 (IsA market industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "market analysis is a kind of marketing research", "pln": ["(: cnet_isa_b824de8a3e (IsA market_analysis marketing_research) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "market analyst is a kind of analyst", "pln": ["(: cnet_isa_25974d635e (IsA market_analyst analyst) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "market capitalization is a kind of capitalization", "pln": ["(: cnet_isa_8314350067 (IsA market_capitalization capitalization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "market cross is a kind of monument", "pln": ["(: cnet_isa_8a13694cf6 (IsA market_cross monument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "market day is a kind of day", "pln": ["(: cnet_isa_da6c9e57bc (IsA market_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "market economy is a kind of economy", "pln": ["(: cnet_isa_bd16520d61 (IsA market_economy economy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "market force is a kind of economic process", "pln": ["(: cnet_isa_e351907344 (IsA market_force economic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "market garden is a kind of garden", "pln": ["(: cnet_isa_a7470781ce (IsA market_garden garden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "market gardening is a kind of gardening", "pln": ["(: cnet_isa_c5daeda16d (IsA market_gardening gardening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "market letter is a kind of newsletter", "pln": ["(: cnet_isa_bdcc25b753 (IsA market_letter newsletter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "market order is a kind of order", "pln": ["(: cnet_isa_30769ef545 (IsA market_order order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "market penetration is a kind of penetration", "pln": ["(: cnet_isa_e29d3ee5fa (IsA market_penetration penetration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "market strategist is a kind of strategist", "pln": ["(: cnet_isa_45e517a5e0 (IsA market_strategist strategist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "market town is a kind of town", "pln": ["(: cnet_isa_6cf4f5745c (IsA market_town town) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "market value is a kind of value", "pln": ["(: cnet_isa_8e23896e10 (IsA market_value value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marketing is a kind of commerce", "pln": ["(: cnet_isa_943ae454e5 (IsA marketing commerce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marketing is a kind of shopping", "pln": ["(: cnet_isa_1833e9f1e1 (IsA marketing shopping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marketing cost is a kind of cost", "pln": ["(: cnet_isa_3ebb2d6e16 (IsA marketing_cost cost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "marketing research is a kind of research", "pln": ["(: cnet_isa_fbaf687955 (IsA marketing_research research) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marketplace is a kind of mercantile establishment", "pln": ["(: cnet_isa_5da9731921 (IsA marketplace mercantile_establishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "markhor is a kind of wild goat", "pln": ["(: cnet_isa_635b27b5b4 (IsA markhor wild_goat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marking is a kind of decoration", "pln": ["(: cnet_isa_9f762ff509 (IsA marking decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marking is a kind of evaluation", "pln": ["(: cnet_isa_61f2a8181c (IsA marking evaluation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "marking is a kind of design", "pln": ["(: cnet_isa_91db95bc34 (IsA marking design) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marking ink is a kind of indelible ink", "pln": ["(: cnet_isa_a2d24ba8f3 (IsA marking_ink indelible_ink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "markka is a kind of finnish monetary unit", "pln": ["(: cnet_isa_b1f2a062e5 (IsA markka finnish_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "markov chain is a kind of markov process", "pln": ["(: cnet_isa_74c140e88f (IsA markov_chain markov_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "markov process is a kind of stochastic process", "pln": ["(: cnet_isa_7e97bb6015 (IsA markov_process stochastic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "marksman is a kind of shot", "pln": ["(: cnet_isa_eb43b6e096 (IsA marksman shot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marksmanship is a kind of skill", "pln": ["(: cnet_isa_694fd06bfa (IsA marksmanship skill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "markup is a kind of direction", "pln": ["(: cnet_isa_13f7f8ac2b (IsA markup direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "markup is a kind of net income", "pln": ["(: cnet_isa_d73d7f26d0 (IsA markup net_income) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "markup language is a kind of terminology", "pln": ["(: cnet_isa_d76f89b7b6 (IsA markup_language terminology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marl is a kind of soil", "pln": ["(: cnet_isa_d18121444f (IsA marl soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marlberry is a kind of shrub", "pln": ["(: cnet_isa_0b3a2b1a35 (IsA marlberry shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marlin is a kind of billfish", "pln": ["(: cnet_isa_c0df44c5c7 (IsA marlin billfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marline is a kind of small stuff", "pln": ["(: cnet_isa_a0e03bfa8a (IsA marline small_stuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "marlinespike is a kind of hand tool", "pln": ["(: cnet_isa_b967f83d27 (IsA marlinespike hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marlite is a kind of metamorphic rock", "pln": ["(: cnet_isa_598f6a430d (IsA marlite metamorphic_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marmalade is a kind of conserve", "pln": ["(: cnet_isa_3c095ea16a (IsA marmalade conserve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "marmalade bush is a kind of shrub", "pln": ["(: cnet_isa_a7883df40d (IsA marmalade_bush shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marmalade tree is a kind of tree", "pln": ["(: cnet_isa_18c10b3791 (IsA marmalade_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marmite is a kind of pot", "pln": ["(: cnet_isa_b49f0fd8a8 (IsA marmite pot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marmite is a kind of soup", "pln": ["(: cnet_isa_e84fd7c525 (IsA marmite soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marmoset is a kind of new world monkey", "pln": ["(: cnet_isa_caafff4d34 (IsA marmoset new_world_monkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marmot is a kind of animal", "pln": ["(: cnet_isa_1294d5e0eb (IsA marmot animal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marmot is a kind of rodent", "pln": ["(: cnet_isa_cf7a53d811 (IsA marmot rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "marmota is a kind of mammal genus", "pln": ["(: cnet_isa_948945f375 (IsA marmota mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marocain is a kind of crepe", "pln": ["(: cnet_isa_02a562d025 (IsA marocain crepe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maroon is a kind of firework", "pln": ["(: cnet_isa_a448777b45 (IsA maroon firework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maroon is a kind of purplish red", "pln": ["(: cnet_isa_0d5b776f42 (IsA maroon purplish_red) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maroon is a kind of unfortunate", "pln": ["(: cnet_isa_24bdbe8edb (IsA maroon unfortunate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marquee is a kind of canopy", "pln": ["(: cnet_isa_13a572a404 (IsA marquee canopy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marquess is a kind of peer", "pln": ["(: cnet_isa_aa1fa5cdf4 (IsA marquess peer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marquetry is a kind of inlay", "pln": ["(: cnet_isa_038df8771a (IsA marquetry inlay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marquis is a kind of nobleman", "pln": ["(: cnet_isa_1d0f3d4f88 (IsA marquis nobleman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "marrano is a kind of converso", "pln": ["(: cnet_isa_840258ce62 (IsA marrano converso) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marriage is a kind of ritual", "pln": ["(: cnet_isa_45bca5c5c1 (IsA marriage ritual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marriage is a kind of family", "pln": ["(: cnet_isa_add73b6433 (IsA marriage family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marriage is a kind of marital status", "pln": ["(: cnet_isa_5551d89f43 (IsA marriage marital_status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marriage is a kind of union", "pln": ["(: cnet_isa_539344d260 (IsA marriage union) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marriage bed is a kind of bed", "pln": ["(: cnet_isa_1b867f5196 (IsA marriage_bed bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marriage brokerage is a kind of brokerage", "pln": ["(: cnet_isa_2e2e32fafd (IsA marriage_brokerage brokerage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marriage contract is a kind of contract", "pln": ["(: cnet_isa_f0f23550ae (IsA marriage_contract contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marriage counseling is a kind of guidance", "pln": ["(: cnet_isa_df241ddd0e (IsA marriage_counseling guidance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "marriage license is a kind of license", "pln": ["(: cnet_isa_e03d28ef86 (IsA marriage_license license) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marriage of convenience is a kind of marriage", "pln": ["(: cnet_isa_9690139a0a (IsA marriage_of_convenience marriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marriage proposal is a kind of offer", "pln": ["(: cnet_isa_7df6eeec2f (IsA marriage_proposal offer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marriageability is a kind of eligibility", "pln": ["(: cnet_isa_67bcb896a0 (IsA marriageability eligibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "married is a kind of person", "pln": ["(: cnet_isa_a2118b4c8f (IsA married person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marrow is a kind of connective tissue", "pln": ["(: cnet_isa_64e2e0c539 (IsA marrow connective_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marrow is a kind of dainty", "pln": ["(: cnet_isa_9a48e189f9 (IsA marrow dainty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marrow is a kind of summer squash", "pln": ["(: cnet_isa_d6618f434f (IsA marrow summer_squash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marrowbone is a kind of bone", "pln": ["(: cnet_isa_e1fa7119d5 (IsA marrowbone bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marrowfat pea is a kind of pea", "pln": ["(: cnet_isa_f908519b45 (IsA marrowfat_pea pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "marrubium is a kind of asterid dicot genus", "pln": ["(: cnet_isa_face156376 (IsA marrubium asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mar is a kind of planet", "pln": ["(: cnet_isa_26cd60ce96 (IsA mar planet) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marsala is a kind of fortified wine", "pln": ["(: cnet_isa_60faaf3fec (IsA marsala fortified_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marseille is a kind of fabric", "pln": ["(: cnet_isa_d5bd224c5c (IsA marseille fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marseille fever is a kind of disease", "pln": ["(: cnet_isa_558f7678ec (IsA marseille_fever disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marsh is a kind of wetland", "pln": ["(: cnet_isa_51155207e6 (IsA marsh wetland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marsh andromeda is a kind of andromeda", "pln": ["(: cnet_isa_372081ef29 (IsA marsh_andromeda andromeda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marsh bellflower is a kind of campanula", "pln": ["(: cnet_isa_23589d06c2 (IsA marsh_bellflower campanula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marsh cress is a kind of watercress", "pln": ["(: cnet_isa_ace60251cd (IsA marsh_cress watercress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marsh elder is a kind of marsh plant", "pln": ["(: cnet_isa_763b0c9cd5 (IsA marsh_elder marsh_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marsh felwort is a kind of herb", "pln": ["(: cnet_isa_cc875f23cc (IsA marsh_felwort herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marsh fern is a kind of fern", "pln": ["(: cnet_isa_381bd37703 (IsA marsh_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marsh gas is a kind of methane", "pln": ["(: cnet_isa_f68b8bea12 (IsA marsh_gas methane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marsh gentian is a kind of gentian", "pln": ["(: cnet_isa_93b7d1d98a (IsA marsh_gentian gentian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marsh hare is a kind of wood rabbit", "pln": ["(: cnet_isa_8bb24f2998 (IsA marsh_hare wood_rabbit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marsh harrier is a kind of harrier", "pln": ["(: cnet_isa_54aa07ee5b (IsA marsh_harrier harrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marsh hawk is a kind of harrier", "pln": ["(: cnet_isa_a7472b7133 (IsA marsh_hawk harrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marsh horsetail is a kind of horsetail", "pln": ["(: cnet_isa_b88b94a235 (IsA marsh_horsetail horsetail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marsh mallow is a kind of althea", "pln": ["(: cnet_isa_5dac18b46b (IsA marsh_mallow althea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marsh marigold is a kind of marsh plant", "pln": ["(: cnet_isa_9f24145207 (IsA marsh_marigold marsh_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marsh orchid is a kind of orchid", "pln": ["(: cnet_isa_89bdbc437d (IsA marsh_orchid orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marsh pea is a kind of wild pea", "pln": ["(: cnet_isa_ac3d8efb49 (IsA marsh_pea wild_pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marsh pink is a kind of sabbatia", "pln": ["(: cnet_isa_8df62ef725 (IsA marsh_pink sabbatia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marsh plant is a kind of aquatic plant", "pln": ["(: cnet_isa_d69729385c (IsA marsh_plant aquatic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marsh st john s wort is a kind of st john s wort", "pln": ["(: cnet_isa_7f3ff85722 (IsA marsh_st_john_s_wort st_john_s_wort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marsh wren is a kind of wren", "pln": ["(: cnet_isa_0cfecd8627 (IsA marsh_wren wren) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marshal is a kind of lawman", "pln": ["(: cnet_isa_59c6a8779d (IsA marshal lawman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marshall is a kind of commissioned military officer", "pln": ["(: cnet_isa_29e4c24ea8 (IsA marshall commissioned_military_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marshall mather is a kind of famous rapper", "pln": ["(: cnet_isa_8073d167e8 (IsA marshall_mather famous_rapper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marshalling yard is a kind of yard", "pln": ["(: cnet_isa_48313e8790 (IsA marshalling_yard yard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marshalship is a kind of position", "pln": ["(: cnet_isa_26b0f76698 (IsA marshalship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marshmallow is a kind of candy", "pln": ["(: cnet_isa_ef86b4acff (IsA marshmallow candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marshmallow fluff is a kind of spread", "pln": ["(: cnet_isa_42154313a9 (IsA marshmallow_fluff spread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marsilea is a kind of fern genus", "pln": ["(: cnet_isa_de78a9f51e (IsA marsilea fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marsileaceae is a kind of fern family", "pln": ["(: cnet_isa_991c387b6a (IsA marsileaceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marsupial is a kind of metatherian", "pln": ["(: cnet_isa_892be435a7 (IsA marsupial metatherian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marsupialia is a kind of animal order", "pln": ["(: cnet_isa_657895f7b1 (IsA marsupialia animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marsupial is a kind of mammal", "pln": ["(: cnet_isa_d8e72800f0 (IsA marsupial mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marsupium is a kind of pouch", "pln": ["(: cnet_isa_ecf8ba91c7 (IsA marsupium pouch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "martello tower is a kind of fortress", "pln": ["(: cnet_isa_5eb9fc47b7 (IsA martello_tower fortress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marten is a kind of musteline mammal", "pln": ["(: cnet_isa_db2323be20 (IsA marten musteline_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "martensite is a kind of solid solution", "pln": ["(: cnet_isa_9bb6527d9a (IsA martensite solid_solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marte is a kind of mammal genus", "pln": ["(: cnet_isa_2f5090c729 (IsA marte mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "martial art is a kind of self defense", "pln": ["(: cnet_isa_b398142606 (IsA martial_art self_defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "martial law is a kind of law", "pln": ["(: cnet_isa_b483b986c2 (IsA martial_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "martin is a kind of swallow", "pln": ["(: cnet_isa_c9ac4d2afd (IsA martin swallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "martin luther king jr s birthday is a kind of legal holiday", "pln": ["(: cnet_isa_5d0cde25ac (IsA martin_luther_king_jr_s_birthday legal_holiday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "martinet is a kind of authoritarian", "pln": ["(: cnet_isa_86765e8b08 (IsA martinet authoritarian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "martingale is a kind of stable gear", "pln": ["(: cnet_isa_c5ab74b745 (IsA martingale stable_gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "martini is a kind of cocktail", "pln": ["(: cnet_isa_21d300a1d9 (IsA martini cocktail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "martinma is a kind of quarter day", "pln": ["(: cnet_isa_03110efb93 (IsA martinma quarter_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "martynia is a kind of herb", "pln": ["(: cnet_isa_16f8e2fc3d (IsA martynia herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "martyniaceae is a kind of plant family", "pln": ["(: cnet_isa_da8da4d9ad (IsA martyniaceae plant_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "martyr is a kind of victim", "pln": ["(: cnet_isa_3e1438b879 (IsA martyr victim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "martyrdom is a kind of death", "pln": ["(: cnet_isa_e7138667d3 (IsA martyrdom death) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marumi is a kind of kumquat", "pln": ["(: cnet_isa_30fefa1a85 (IsA marumi kumquat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "marupa is a kind of bitterwood tree", "pln": ["(: cnet_isa_3069224d71 (IsA marupa bitterwood_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marut is a kind of hindu deity", "pln": ["(: cnet_isa_e1eb848f8c (IsA marut hindu_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marvin is a kind of artificial intelligence researcher", "pln": ["(: cnet_isa_4a73c6a93e (IsA marvin artificial_intelligence_researcher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marxism is a kind of communism", "pln": ["(: cnet_isa_0339603a75 (IsA marxism communism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marxist is a kind of advocate", "pln": ["(: cnet_isa_8e1104b552 (IsA marxist advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maryland is a kind of state", "pln": ["(: cnet_isa_c434c8e99f (IsA maryland state) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maryland chicken is a kind of dish", "pln": ["(: cnet_isa_5daba923bc (IsA maryland_chicken dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maryland golden aster is a kind of golden aster", "pln": ["(: cnet_isa_8ec41ca507 (IsA maryland_golden_aster golden_aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marylander is a kind of american", "pln": ["(: cnet_isa_465e9c0c0f (IsA marylander american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "marzipan is a kind of candy", "pln": ["(: cnet_isa_c500eabe9c (IsA marzipan candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masa is a kind of chad", "pln": ["(: cnet_isa_8755fc0e11 (IsA masa chad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masai is a kind of nilotic", "pln": ["(: cnet_isa_cb88700982 (IsA masai nilotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mascara is a kind of makeup", "pln": ["(: cnet_isa_126b165439 (IsA mascara makeup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mascarene grass is a kind of zoysia", "pln": ["(: cnet_isa_ce917bbb69 (IsA mascarene_grass zoysia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mascarpone is a kind of cream cheese", "pln": ["(: cnet_isa_9d3196c1b1 (IsA mascarpone cream_cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mascot is a kind of organism", "pln": ["(: cnet_isa_fee771fe8a (IsA mascot organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masculine is a kind of gender", "pln": ["(: cnet_isa_90d5c72fc8 (IsA masculine gender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masculinity is a kind of trait", "pln": ["(: cnet_isa_c146b7c499 (IsA masculinity trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masculinization is a kind of growth", "pln": ["(: cnet_isa_8b68c36095 (IsA masculinization growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masdevallia is a kind of orchid", "pln": ["(: cnet_isa_2d3beaa896 (IsA masdevallia orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maser is a kind of amplifier", "pln": ["(: cnet_isa_da3b6cabcd (IsA maser amplifier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mash is a kind of feed", "pln": ["(: cnet_isa_99e59d7f28 (IsA mash feed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mash is a kind of suspension", "pln": ["(: cnet_isa_3771976993 (IsA mash suspension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mashed potato is a kind of potato", "pln": ["(: cnet_isa_696b760399 (IsA mashed_potato potato) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masher is a kind of kitchen utensil", "pln": ["(: cnet_isa_3cff208ce8 (IsA masher kitchen_utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mashi is a kind of bantu", "pln": ["(: cnet_isa_bbed8cdade (IsA mashi bantu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mashie is a kind of iron", "pln": ["(: cnet_isa_8566fae1ab (IsA mashie iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mashie niblick is a kind of iron", "pln": ["(: cnet_isa_784a1617bc (IsA mashie_niblick iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masjid is a kind of place of worship", "pln": ["(: cnet_isa_71396534b6 (IsA masjid place_of_worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mask is a kind of concealment", "pln": ["(: cnet_isa_9945d69834 (IsA mask concealment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mask is a kind of covering", "pln": ["(: cnet_isa_ba0eceb707 (IsA mask covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mask is a kind of disguise", "pln": ["(: cnet_isa_6472729a3d (IsA mask disguise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mask is a kind of protective covering", "pln": ["(: cnet_isa_30b5efce6d (IsA mask protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masked ball is a kind of ball", "pln": ["(: cnet_isa_23146de11f (IsA masked_ball ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masked ball is a kind of masquerade", "pln": ["(: cnet_isa_f9c61f3883 (IsA masked_ball masquerade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masked shrew is a kind of shrew", "pln": ["(: cnet_isa_15ca04da67 (IsA masked_shrew shrew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masking is a kind of sensation", "pln": ["(: cnet_isa_e9e7c9e187 (IsA masking sensation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masking piece is a kind of scenery", "pln": ["(: cnet_isa_b39e4b72d8 (IsA masking_piece scenery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masking tape is a kind of adhesive tape", "pln": ["(: cnet_isa_a1f2d76629 (IsA masking_tape adhesive_tape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masochism is a kind of sexual pleasure", "pln": ["(: cnet_isa_6f23b9d500 (IsA masochism sexual_pleasure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masochist is a kind of pervert", "pln": ["(: cnet_isa_48ed4d0d55 (IsA masochist pervert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mason s level is a kind of level", "pln": ["(: cnet_isa_a0b8e1e117 (IsA mason_s_level level) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mason is a kind of craftsman", "pln": ["(: cnet_isa_04928d3b04 (IsA mason craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mason bee is a kind of bee", "pln": ["(: cnet_isa_ef3e6f7cf5 (IsA mason_bee bee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mason jar is a kind of jar", "pln": ["(: cnet_isa_d14563e3be (IsA mason_jar jar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mason wasp is a kind of sphecoid wasp", "pln": ["(: cnet_isa_9247daa76d (IsA mason_wasp sphecoid_wasp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mason wasp is a kind of vespid", "pln": ["(: cnet_isa_4db006fc26 (IsA mason_wasp vespid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masonry is a kind of trade", "pln": ["(: cnet_isa_2edfe123d3 (IsA masonry trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masonry is a kind of structure", "pln": ["(: cnet_isa_ccccb0b0c9 (IsA masonry structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masorah is a kind of textual criticism", "pln": ["(: cnet_isa_8ac573e163 (IsA masorah textual_criticism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masquerade is a kind of pretense", "pln": ["(: cnet_isa_963fbcfd13 (IsA masquerade pretense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masquerade is a kind of party", "pln": ["(: cnet_isa_12ca93ca3d (IsA masquerade party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masquerader is a kind of participant", "pln": ["(: cnet_isa_47e1ec08bd (IsA masquerader participant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mass is a kind of fundamental quantity", "pln": ["(: cnet_isa_11532db649 (IsA mass fundamental_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mass is a kind of physical property", "pln": ["(: cnet_isa_3cff2a710b (IsA mass physical_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mass is a kind of prayer", "pln": ["(: cnet_isa_3e85edae46 (IsA mass prayer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mass is a kind of religious music", "pln": ["(: cnet_isa_845d75776e (IsA mass religious_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mass is a kind of collection", "pln": ["(: cnet_isa_9fc8e132b4 (IsA mass collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mass is a kind of body", "pln": ["(: cnet_isa_9034babf03 (IsA mass body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mass is a kind of religious ceremony", "pln": ["(: cnet_isa_0eefdc3c12 (IsA mass religious_ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mass action principle is a kind of principle", "pln": ["(: cnet_isa_23ac60ced9 (IsA mass_action_principle principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mass card is a kind of sympathy card", "pln": ["(: cnet_isa_4c628d64cf (IsA mass_card sympathy_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mass culture is a kind of culture", "pln": ["(: cnet_isa_1338c0c053 (IsA mass_culture culture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mass defect is a kind of mass", "pln": ["(: cnet_isa_27da5efcfa (IsA mass_defect mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mass energy is a kind of mass", "pln": ["(: cnet_isa_efe029edc7 (IsA mass_energy mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mass energy equivalence is a kind of principle", "pln": ["(: cnet_isa_f0c8970bbe (IsA mass_energy_equivalence principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mass hysteria is a kind of craze", "pln": ["(: cnet_isa_ebf4982abc (IsA mass_hysteria craze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mass murderer is a kind of murderer", "pln": ["(: cnet_isa_443c573317 (IsA mass_murderer murderer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mass noun is a kind of noun", "pln": ["(: cnet_isa_84155b9722 (IsA mass_noun noun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mass number is a kind of mass unit", "pln": ["(: cnet_isa_50f37e03a7 (IsA mass_number mass_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mass production is a kind of production", "pln": ["(: cnet_isa_843904deb5 (IsA mass_production production) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mass spectrograph is a kind of mass spectrometer", "pln": ["(: cnet_isa_1c7ca98c70 (IsA mass_spectrograph mass_spectrometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mass spectrometer is a kind of spectroscope", "pln": ["(: cnet_isa_f4850a1cd0 (IsA mass_spectrometer spectroscope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mass spectroscopy is a kind of spectroscopy", "pln": ["(: cnet_isa_a806c491fd (IsA mass_spectroscopy spectroscopy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mass spectrum is a kind of spectrum", "pln": ["(: cnet_isa_957f5cb6ff (IsA mass_spectrum spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mass unit is a kind of unit of measurement", "pln": ["(: cnet_isa_e739daccf5 (IsA mass_unit unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "massachuset is a kind of algonquian", "pln": ["(: cnet_isa_c4903b2300 (IsA massachuset algonquian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "massachusett is a kind of state", "pln": ["(: cnet_isa_fc92e0f03a (IsA massachusett state) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "massachusett is a kind of state in new england", "pln": ["(: cnet_isa_73e26798eb (IsA massachusett state_in_new_england) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "massachusett is a kind of algonquin", "pln": ["(: cnet_isa_a2473a0e17 (IsA massachusett algonquin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "massachusett fern is a kind of fern", "pln": ["(: cnet_isa_0dbc2dc76f (IsA massachusett_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "massage is a kind of therapy", "pln": ["(: cnet_isa_ab93f19d03 (IsA massage therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "massage is a kind of treatment", "pln": ["(: cnet_isa_b2a5fb02b3 (IsA massage treatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "massage parlor is a kind of place of business", "pln": ["(: cnet_isa_0ef90e8ed9 (IsA massage_parlor place_of_business) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "massage parlor is a kind of whorehouse", "pln": ["(: cnet_isa_13f79da33f (IsA massage_parlor whorehouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "massager is a kind of physical therapist", "pln": ["(: cnet_isa_fa77c0c523 (IsA massager physical_therapist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "massasauga is a kind of rattlesnake", "pln": ["(: cnet_isa_59aab4ce16 (IsA massasauga rattlesnake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masse is a kind of stroke", "pln": ["(: cnet_isa_57a2d83eee (IsA masse stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masseter is a kind of facial muscle", "pln": ["(: cnet_isa_e06a3f6d47 (IsA masseter facial_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masseur is a kind of massager", "pln": ["(: cnet_isa_bcfc67c7cf (IsA masseur massager) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masseuse is a kind of massager", "pln": ["(: cnet_isa_d2bbed7aa1 (IsA masseuse massager) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "massicot is a kind of lead ore", "pln": ["(: cnet_isa_627df1b473 (IsA massicot lead_ore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "massif is a kind of geological formation", "pln": ["(: cnet_isa_c08b4a78af (IsA massif geological_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "massorete is a kind of scholar", "pln": ["(: cnet_isa_80634f25c3 (IsA massorete scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mast is a kind of pole", "pln": ["(: cnet_isa_146158224e (IsA mast pole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mast is a kind of spar", "pln": ["(: cnet_isa_0df4c0be75 (IsA mast spar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mast is a kind of feed", "pln": ["(: cnet_isa_34219e10c4 (IsA mast feed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mast is a kind of nut", "pln": ["(: cnet_isa_8129dc7038 (IsA mast nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mast cell is a kind of somatic cell", "pln": ["(: cnet_isa_20f61789ce (IsA mast_cell somatic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mastaba is a kind of grave", "pln": ["(: cnet_isa_11d1ff2351 (IsA mastaba grave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mastalgia is a kind of pain", "pln": ["(: cnet_isa_ebb492a884 (IsA mastalgia pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mastectomy is a kind of ablation", "pln": ["(: cnet_isa_519f49d295 (IsA mastectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "master s degree is a kind of academic degree", "pln": ["(: cnet_isa_018cf45d8e (IsA master_s_degree academic_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "master is a kind of creation", "pln": ["(: cnet_isa_4904cb9fb1 (IsA master creation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "master is a kind of authority", "pln": ["(: cnet_isa_6c46c90349 (IsA master authority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "master is a kind of employer", "pln": ["(: cnet_isa_c579bee1dc (IsA master employer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "master is a kind of officer", "pln": ["(: cnet_isa_186bb15c27 (IsA master officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "master is a kind of scholar", "pln": ["(: cnet_isa_bdc745de9b (IsA master scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "master at arm is a kind of petty officer", "pln": ["(: cnet_isa_a3c830b0e9 (IsA master_at_arm petty_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "master bedroom is a kind of bedroom", "pln": ["(: cnet_isa_3c3b3b316d (IsA master_bedroom bedroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "master class is a kind of class", "pln": ["(: cnet_isa_d75a8c13e2 (IsA master_class class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "master file is a kind of computer file", "pln": ["(: cnet_isa_1dc39d5cbb (IsA master_file computer_file) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "master in business is a kind of master s degree", "pln": ["(: cnet_isa_b1286f499a (IsA master_in_business master_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "master in public affair is a kind of master s degree", "pln": ["(: cnet_isa_4bc5c68293 (IsA master_in_public_affair master_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "master nis server is a kind of nis server", "pln": ["(: cnet_isa_96fa58acbd (IsA master_nis_server nis_server) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "master of architecture is a kind of master s degree", "pln": ["(: cnet_isa_d52711a516 (IsA master_of_architecture master_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "master of art is a kind of master s degree", "pln": ["(: cnet_isa_2dc04807d8 (IsA master_of_art master_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "master of art in library science is a kind of master s degree", "pln": ["(: cnet_isa_9764a34f59 (IsA master_of_art_in_library_science master_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "master of art in teaching is a kind of master s degree", "pln": ["(: cnet_isa_ed85e785ae (IsA master_of_art_in_teaching master_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "master of ceremony is a kind of entertainer", "pln": ["(: cnet_isa_7e0101408c (IsA master_of_ceremony entertainer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "master of divinity is a kind of master s degree", "pln": ["(: cnet_isa_e0ccf7caaf (IsA master_of_divinity master_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "master of education is a kind of master s degree", "pln": ["(: cnet_isa_cb62247df5 (IsA master_of_education master_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "master of fine art is a kind of master s degree", "pln": ["(: cnet_isa_e1a960dd66 (IsA master_of_fine_art master_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "master of law is a kind of law degree", "pln": ["(: cnet_isa_972901e39f (IsA master_of_law law_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "master of library science is a kind of master s degree", "pln": ["(: cnet_isa_478491f6c2 (IsA master_of_library_science master_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "master of literature is a kind of master s degree", "pln": ["(: cnet_isa_bf579b7ba8 (IsA master_of_literature master_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "master of science is a kind of master s degree", "pln": ["(: cnet_isa_75c05b03e7 (IsA master_of_science master_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "master of science in engineering is a kind of master s degree", "pln": ["(: cnet_isa_552dc8773c (IsA master_of_science_in_engineering master_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "master of theology is a kind of master s degree", "pln": ["(: cnet_isa_75165ef70a (IsA master_of_theology master_s_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "master plan is a kind of plan", "pln": ["(: cnet_isa_2e695fc110 (IsA master_plan plan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "master race is a kind of race", "pln": ["(: cnet_isa_6db6f3693f (IsA master_race race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "master sergeant is a kind of sergeant", "pln": ["(: cnet_isa_8b1811352a (IsA master_sergeant sergeant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mastercard is a kind of credit card", "pln": ["(: cnet_isa_0d78e4ceae (IsA mastercard credit_card) (STV 1.0 0.9756))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mastering is a kind of recording", "pln": ["(: cnet_isa_4ad5c9a4cb (IsA mastering recording) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mastering is a kind of education", "pln": ["(: cnet_isa_9598586e2c (IsA mastering education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masterpiece is a kind of accomplishment", "pln": ["(: cnet_isa_e2741e8da5 (IsA masterpiece accomplishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masterpiece is a kind of work", "pln": ["(: cnet_isa_48117a8d93 (IsA masterpiece work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mastership is a kind of position", "pln": ["(: cnet_isa_745a93d5a2 (IsA mastership position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mastership is a kind of skill", "pln": ["(: cnet_isa_d1d736ad73 (IsA mastership skill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masterstroke is a kind of accomplishment", "pln": ["(: cnet_isa_f5081288af (IsA masterstroke accomplishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mastery is a kind of domination", "pln": ["(: cnet_isa_a9135b1154 (IsA mastery domination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masthead is a kind of top", "pln": ["(: cnet_isa_045d94e3ac (IsA masthead top) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masthead is a kind of list", "pln": ["(: cnet_isa_f81adc3d2f (IsA masthead list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masthead is a kind of title", "pln": ["(: cnet_isa_351e42061d (IsA masthead title) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mastic is a kind of cement", "pln": ["(: cnet_isa_6abac52732 (IsA mastic cement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mastic is a kind of filler", "pln": ["(: cnet_isa_1824d573b9 (IsA mastic filler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mastic is a kind of natural resin", "pln": ["(: cnet_isa_f9c524fc1d (IsA mastic natural_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mastic tree is a kind of shrub", "pln": ["(: cnet_isa_df15f47a82 (IsA mastic_tree shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masticophis is a kind of reptile genus", "pln": ["(: cnet_isa_aa67de9bfb (IsA masticophis reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mastiff is a kind of working dog", "pln": ["(: cnet_isa_cd6235ed93 (IsA mastiff working_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mastiff bat is a kind of carnivorous bat", "pln": ["(: cnet_isa_8f1c9ddc2e (IsA mastiff_bat carnivorous_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mastigomycota is a kind of division", "pln": ["(: cnet_isa_d5c7322887 (IsA mastigomycota division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mastigophora is a kind of class", "pln": ["(: cnet_isa_d4d117b1dc (IsA mastigophora class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mastigoproctus is a kind of arthropod genus", "pln": ["(: cnet_isa_bf6e57cd79 (IsA mastigoproctus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mastitis is a kind of inflammation", "pln": ["(: cnet_isa_69f076bfb0 (IsA mastitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mastodon is a kind of proboscidean", "pln": ["(: cnet_isa_23009f1728 (IsA mastodon proboscidean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mastoid is a kind of process", "pln": ["(: cnet_isa_95a75e2f63 (IsA mastoid process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mastoidale is a kind of craniometric point", "pln": ["(: cnet_isa_0fb428bf7d (IsA mastoidale craniometric_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mastoidectomy is a kind of ablation", "pln": ["(: cnet_isa_5a9515c9c4 (IsA mastoidectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mastoiditis is a kind of inflammation", "pln": ["(: cnet_isa_f156f2ddb9 (IsA mastoiditis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mastopathy is a kind of pathology", "pln": ["(: cnet_isa_c46722d66f (IsA mastopathy pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mastopexy is a kind of plastic surgery", "pln": ["(: cnet_isa_7cde1bba83 (IsA mastopexy plastic_surgery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mastoterme is a kind of arthropod genus", "pln": ["(: cnet_isa_bd2e7c3621 (IsA mastoterme arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mastoterme darwiniensis is a kind of termite", "pln": ["(: cnet_isa_077ce84e30 (IsA mastoterme_darwiniensis termite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mastoterme electrodominicus is a kind of termite", "pln": ["(: cnet_isa_75d3b74b07 (IsA mastoterme_electrodominicus termite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mastoterme electromexicus is a kind of termite", "pln": ["(: cnet_isa_6e395e196e (IsA mastoterme_electromexicus termite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mastotermitidae is a kind of arthropod family", "pln": ["(: cnet_isa_38cbc94a4f (IsA mastotermitidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masturbation is a kind of form of self stimulation", "pln": ["(: cnet_isa_1e00e5e1eb (IsA masturbation form_of_self_stimulation) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masturbation is a kind of autoeroticism", "pln": ["(: cnet_isa_9f9acbea91 (IsA masturbation autoeroticism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "masturbator is a kind of person", "pln": ["(: cnet_isa_af47906615 (IsA masturbator person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mat is a kind of floor cover", "pln": ["(: cnet_isa_ca5f6bae71 (IsA mat floor_cover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mat is a kind of mounting", "pln": ["(: cnet_isa_984e196ca7 (IsA mat mounting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mat is a kind of pad", "pln": ["(: cnet_isa_88c2c4cd41 (IsA mat pad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mat is a kind of sport equipment", "pln": ["(: cnet_isa_c420ccae9a (IsA mat sport_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mat is a kind of mass", "pln": ["(: cnet_isa_840b0d9828 (IsA mat mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matador is a kind of bullfighter", "pln": ["(: cnet_isa_c2cff0f6b5 (IsA matador bullfighter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matai is a kind of conifer", "pln": ["(: cnet_isa_d6293d8e59 (IsA matai conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matakam is a kind of biu mandara", "pln": ["(: cnet_isa_694414b8c1 (IsA matakam biu_mandara) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "match is a kind of duplicate", "pln": ["(: cnet_isa_fa0488307a (IsA match duplicate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "match is a kind of lighter", "pln": ["(: cnet_isa_9b8e0a87ef (IsA match lighter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "match is a kind of counterpart", "pln": ["(: cnet_isa_8dd11f3550 (IsA match counterpart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "match is a kind of contest", "pln": ["(: cnet_isa_904ca89e6a (IsA match contest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "match is a kind of score", "pln": ["(: cnet_isa_c8f9544fca (IsA match score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "match plane is a kind of plane", "pln": ["(: cnet_isa_b3ace240df (IsA match_plane plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "match play is a kind of golf", "pln": ["(: cnet_isa_410105f8a6 (IsA match_play golf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "match point is a kind of point", "pln": ["(: cnet_isa_9602ca27a2 (IsA match_point point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "match up is a kind of pairing", "pln": ["(: cnet_isa_03a9ade599 (IsA match_up pairing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matchboard is a kind of board", "pln": ["(: cnet_isa_43d1c19983 (IsA matchboard board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matchbook is a kind of folder", "pln": ["(: cnet_isa_37481df1cd (IsA matchbook folder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matchbox is a kind of box", "pln": ["(: cnet_isa_53e6c82be4 (IsA matchbox box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matching fund is a kind of fund", "pln": ["(: cnet_isa_7527533350 (IsA matching_fund fund) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matchlock is a kind of musket", "pln": ["(: cnet_isa_b249cf37d2 (IsA matchlock musket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matchmaker is a kind of mediator", "pln": ["(: cnet_isa_8e13b596ce (IsA matchmaker mediator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matchmaking is a kind of mediation", "pln": ["(: cnet_isa_2ecf735b51 (IsA matchmaking mediation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matchstick is a kind of stick", "pln": ["(: cnet_isa_34a8da1859 (IsA matchstick stick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matchweed is a kind of subshrub", "pln": ["(: cnet_isa_c5666e4639 (IsA matchweed subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "matchwood is a kind of bit", "pln": ["(: cnet_isa_7875956902 (IsA matchwood bit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "matchwood is a kind of wood", "pln": ["(: cnet_isa_0180c91239 (IsA matchwood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mate is a kind of beverage", "pln": ["(: cnet_isa_81d037e73d (IsA mate beverage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mate is a kind of animal", "pln": ["(: cnet_isa_c5eefaacea (IsA mate animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mate is a kind of friend", "pln": ["(: cnet_isa_bbd643660b (IsA mate friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mate is a kind of officer", "pln": ["(: cnet_isa_f871db33c1 (IsA mate officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mate is a kind of holly", "pln": ["(: cnet_isa_dde5fe45c3 (IsA mate holly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matelote is a kind of fish stew", "pln": ["(: cnet_isa_ebc65d9746 (IsA matelote fish_stew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mater is a kind of mother", "pln": ["(: cnet_isa_3d5fc7d731 (IsA mater mother) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "material is a kind of equipment", "pln": ["(: cnet_isa_97e6881b5f (IsA material equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "material is a kind of information", "pln": ["(: cnet_isa_ce8a8094b3 (IsA material information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "material is a kind of applicant", "pln": ["(: cnet_isa_db1bff0b88 (IsA material applicant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "material is a kind of substance", "pln": ["(: cnet_isa_81d9591f82 (IsA material substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "material breach is a kind of breach of contract", "pln": ["(: cnet_isa_3c223f62d3 (IsA material_breach breach_of_contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "material possession is a kind of property", "pln": ["(: cnet_isa_348a3d4b9b (IsA material_possession property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "material resource is a kind of asset", "pln": ["(: cnet_isa_886d9a5400 (IsA material_resource asset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "material witness is a kind of witness", "pln": ["(: cnet_isa_2530387dc6 (IsA material_witness witness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "materialism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_0c8ae73d97 (IsA materialism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "materialism is a kind of desire", "pln": ["(: cnet_isa_73b8d72bdf (IsA materialism desire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "materialist is a kind of capitalist", "pln": ["(: cnet_isa_396af9620b (IsA materialist capitalist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "materialist is a kind of disbeliever", "pln": ["(: cnet_isa_f2b284474c (IsA materialist disbeliever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "materiality is a kind of quality", "pln": ["(: cnet_isa_6865d509e2 (IsA materiality quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "materiality is a kind of relevance", "pln": ["(: cnet_isa_de55f87a36 (IsA materiality relevance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "materialization is a kind of appearance", "pln": ["(: cnet_isa_8b1c42db60 (IsA materialization appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "materialization is a kind of natural process", "pln": ["(: cnet_isa_7c0eefd22d (IsA materialization natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "material handling is a kind of handling", "pln": ["(: cnet_isa_ac70c390d6 (IsA material_handling handling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "materiel is a kind of equipment", "pln": ["(: cnet_isa_976e70dd4a (IsA materiel equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maternal infant bonding is a kind of bonding", "pln": ["(: cnet_isa_5bc0fbbf45 (IsA maternal_infant_bonding bonding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "maternalism is a kind of care", "pln": ["(: cnet_isa_25c4497739 (IsA maternalism care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maternity hospital is a kind of hospital", "pln": ["(: cnet_isa_ed7deef864 (IsA maternity_hospital hospital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maternity ward is a kind of ward", "pln": ["(: cnet_isa_6e0d349992 (IsA maternity_ward ward) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "math is a kind of important part of education", "pln": ["(: cnet_isa_7e39d395c0 (IsA math important_part_of_education) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "math is a kind of school subject", "pln": ["(: cnet_isa_43de0ea552 (IsA math school_subject) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "math is a kind of subject", "pln": ["(: cnet_isa_c4d0838007 (IsA math subject) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "math is a kind of subject in school", "pln": ["(: cnet_isa_83c0cfb22a (IsA math subject_in_school) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "math is a kind of subject student might study", "pln": ["(: cnet_isa_3ad6ae5e2d (IsA math subject_student_might_study) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "math teacher is a kind of teacher", "pln": ["(: cnet_isa_464339afa0 (IsA math_teacher teacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mathematical model is a kind of model", "pln": ["(: cnet_isa_5c891e1143 (IsA mathematical_model model) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mathematical notation is a kind of notation", "pln": ["(: cnet_isa_9a153198d8 (IsA mathematical_notation notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mathematical process is a kind of calculation", "pln": ["(: cnet_isa_8d529b1e9f (IsA mathematical_process calculation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mathematical proof is a kind of proof", "pln": ["(: cnet_isa_03bab2f974 (IsA mathematical_proof proof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mathematical relation is a kind of relation", "pln": ["(: cnet_isa_13782eb58f (IsA mathematical_relation relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mathematical space is a kind of set", "pln": ["(: cnet_isa_869e07fdd2 (IsA mathematical_space set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mathematical space is a kind of space", "pln": ["(: cnet_isa_b3688b192d (IsA mathematical_space space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mathematical statement is a kind of statement", "pln": ["(: cnet_isa_c1aa69a2b5 (IsA mathematical_statement statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mathematical symbol is a kind of character", "pln": ["(: cnet_isa_adbcb0f855 (IsA mathematical_symbol character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mathematician is a kind of scientist", "pln": ["(: cnet_isa_9e777457c5 (IsA mathematician scientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mathematic is a kind of aboslute", "pln": ["(: cnet_isa_fe4c227779 (IsA mathematic aboslute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mathematic is a kind of first axiomatised in greece", "pln": ["(: cnet_isa_8f79cbc44e (IsA mathematic first_axiomatised_in_greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mathematic is a kind of science", "pln": ["(: cnet_isa_47fbb94b59 (IsA mathematic science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mathematic department is a kind of academic department", "pln": ["(: cnet_isa_920ade2746 (IsA mathematic_department academic_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matilija poppy is a kind of subshrub", "pln": ["(: cnet_isa_d2bfb4669e (IsA matilija_poppy subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matinee is a kind of theatrical performance", "pln": ["(: cnet_isa_d6b16b8585 (IsA matinee theatrical_performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mating factor molecule is a kind of ligand", "pln": ["(: cnet_isa_389d5c4d7d (IsA mating_factor_molecule ligand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mating factor molecule is a kind of mating factor", "pln": ["(: cnet_isa_62eb4b64f3 (IsA mating_factor_molecule mating_factor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mating factor molecule is a kind of molecule", "pln": ["(: cnet_isa_46abcdfa56 (IsA mating_factor_molecule molecule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matin is a kind of canonical hour", "pln": ["(: cnet_isa_816f67cbb1 (IsA matin canonical_hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matriarch is a kind of head of household", "pln": ["(: cnet_isa_d79e0355df (IsA matriarch head_of_household) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "matriarch is a kind of woman", "pln": ["(: cnet_isa_42641380d2 (IsA matriarch woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matriarchy is a kind of social organization", "pln": ["(: cnet_isa_6308f2015e (IsA matriarchy social_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matricaria is a kind of asterid dicot genus", "pln": ["(: cnet_isa_ee98d31e9a (IsA matricaria asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "matricide is a kind of parricide", "pln": ["(: cnet_isa_139fa01f54 (IsA matricide parricide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matriculate is a kind of college student", "pln": ["(: cnet_isa_cdb1785a6e (IsA matriculate college_student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matriculation is a kind of admission", "pln": ["(: cnet_isa_43c32e650a (IsA matriculation admission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "matrilineage is a kind of unilateral descent", "pln": ["(: cnet_isa_a417d6e482 (IsA matrilineage unilateral_descent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matrimonial law is a kind of jurisprudence", "pln": ["(: cnet_isa_5c6d00e5b8 (IsA matrimonial_law jurisprudence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matrimony is a kind of sacrament", "pln": ["(: cnet_isa_5c4bdc3c7c (IsA matrimony sacrament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matrimony vine is a kind of shrub", "pln": ["(: cnet_isa_cf356707f4 (IsA matrimony_vine shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matrix is a kind of mold", "pln": ["(: cnet_isa_f2d6f52ed2 (IsA matrix mold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matrix is a kind of animal tissue", "pln": ["(: cnet_isa_22543f807d (IsA matrix animal_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matrix is a kind of body substance", "pln": ["(: cnet_isa_1ddc58e6c8 (IsA matrix body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matrix is a kind of rock", "pln": ["(: cnet_isa_ec9d318cba (IsA matrix rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matrix is a kind of array", "pln": ["(: cnet_isa_3887f2c1c0 (IsA matrix array) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matrix is a kind of enclosure", "pln": ["(: cnet_isa_97c52b737d (IsA matrix enclosure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matrix addition is a kind of matrix operation", "pln": ["(: cnet_isa_a5448d544e (IsA matrix_addition matrix_operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matrix algebra is a kind of algebra", "pln": ["(: cnet_isa_597fc29a3c (IsA matrix_algebra algebra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matrix inversion is a kind of matrix operation", "pln": ["(: cnet_isa_a8c6f9ac97 (IsA matrix_inversion matrix_operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matrix multiplication is a kind of matrix operation", "pln": ["(: cnet_isa_07acc399c6 (IsA matrix_multiplication matrix_operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "matrix operation is a kind of mathematical process", "pln": ["(: cnet_isa_5fc3b7b1c7 (IsA matrix_operation mathematical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matrix transposition is a kind of matrix operation", "pln": ["(: cnet_isa_1438971779 (IsA matrix_transposition matrix_operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matron is a kind of nurse", "pln": ["(: cnet_isa_f98753a43d (IsA matron nurse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matron is a kind of wardress", "pln": ["(: cnet_isa_b2d7d8a870 (IsA matron wardress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matron is a kind of wife", "pln": ["(: cnet_isa_a019cfb710 (IsA matron wife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matron is a kind of woman", "pln": ["(: cnet_isa_b8647b5eb9 (IsA matron woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matron of honor is a kind of attendant", "pln": ["(: cnet_isa_090e9ccec0 (IsA matron_of_honor attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matronymic is a kind of name", "pln": ["(: cnet_isa_8699fdff9c (IsA matronymic name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matsyendra is a kind of asana", "pln": ["(: cnet_isa_0e703988e5 (IsA matsyendra asana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "matte is a kind of mixture", "pln": ["(: cnet_isa_70fed42881 (IsA matte mixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matter is a kind of consequence", "pln": ["(: cnet_isa_bd1afdbde4 (IsA matter consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matter is a kind of concern", "pln": ["(: cnet_isa_7eeac34e4f (IsA matter concern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "matter is a kind of trouble", "pln": ["(: cnet_isa_b59a5dc72c (IsA matter trouble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matter is a kind of writing", "pln": ["(: cnet_isa_24ec1b8767 (IsA matter writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matter of fact is a kind of fact", "pln": ["(: cnet_isa_91ab4fad7d (IsA matter_of_fact fact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matteuccia is a kind of fern genus", "pln": ["(: cnet_isa_7fbfbc8d81 (IsA matteuccia fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matthew walker is a kind of stopper knot", "pln": ["(: cnet_isa_a7b012a73f (IsA matthew_walker stopper_knot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matthiola is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_484449e6b9 (IsA matthiola dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matting is a kind of covering", "pln": ["(: cnet_isa_d2082c3bed (IsA matting covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mattock is a kind of pick", "pln": ["(: cnet_isa_89302d45fd (IsA mattock pick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mattole is a kind of athapaskan", "pln": ["(: cnet_isa_ec27b55b84 (IsA mattole athapaskan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mattole is a kind of athabascan", "pln": ["(: cnet_isa_6e3df6abf0 (IsA mattole athabascan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mattress is a kind of pad", "pln": ["(: cnet_isa_6c1257883a (IsA mattress pad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mattress cover is a kind of bedclothe", "pln": ["(: cnet_isa_1b051edc0c (IsA mattress_cover bedclothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mattress pad is a kind of pad", "pln": ["(: cnet_isa_179ea59e50 (IsA mattress_pad pad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maturation is a kind of organic process", "pln": ["(: cnet_isa_71e6896d55 (IsA maturation organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maturity is a kind of state", "pln": ["(: cnet_isa_aa016f4f56 (IsA maturity state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maturity is a kind of date", "pln": ["(: cnet_isa_6a8998adc4 (IsA maturity date) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matzo is a kind of bread", "pln": ["(: cnet_isa_6f57989676 (IsA matzo bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matzo ball is a kind of dumpling", "pln": ["(: cnet_isa_1bc51ef86d (IsA matzo_ball dumpling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "matzo meal is a kind of meal", "pln": ["(: cnet_isa_0cf1c1eeef (IsA matzo_meal meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maul is a kind of hammer", "pln": ["(: cnet_isa_1c7454720d (IsA maul hammer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mauler is a kind of combatant", "pln": ["(: cnet_isa_ceffaf2649 (IsA mauler combatant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maulstick is a kind of stick", "pln": ["(: cnet_isa_4ae9748c67 (IsA maulstick stick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maund is a kind of weight unit", "pln": ["(: cnet_isa_22ca46c214 (IsA maund weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "maundy is a kind of ceremony", "pln": ["(: cnet_isa_f10dcff69e (IsA maundy ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maundy money is a kind of coin", "pln": ["(: cnet_isa_3fc5a1be33 (IsA maundy_money coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maundy thursday is a kind of christian holy day", "pln": ["(: cnet_isa_e6ad04be59 (IsA maundy_thursday christian_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mauritanian is a kind of african", "pln": ["(: cnet_isa_77b193297c (IsA mauritanian african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mauritanian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_15a62751c5 (IsA mauritanian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mauritian is a kind of aborigine", "pln": ["(: cnet_isa_14565140b5 (IsA mauritian aborigine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mauritian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_8137950d5c (IsA mauritian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mauritian rupee is a kind of mauritian monetary unit", "pln": ["(: cnet_isa_25a0e20a7e (IsA mauritian_rupee mauritian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mausoleum is a kind of burial chamber", "pln": ["(: cnet_isa_e14f0b319d (IsA mausoleum burial_chamber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mauve is a kind of purple", "pln": ["(: cnet_isa_9fad60fab7 (IsA mauve purple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maverick is a kind of calf", "pln": ["(: cnet_isa_bcd46c4fe7 (IsA maverick calf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maverick is a kind of nonconformist", "pln": ["(: cnet_isa_febec884d9 (IsA maverick nonconformist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mawkishness is a kind of emotionality", "pln": ["(: cnet_isa_91aceebdaa (IsA mawkishness emotionality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mawkishness is a kind of sentimentality", "pln": ["(: cnet_isa_1bfb936a0f (IsA mawkishness sentimentality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maxi is a kind of skirt", "pln": ["(: cnet_isa_ccac5a3563 (IsA maxi skirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maxillaria is a kind of orchid", "pln": ["(: cnet_isa_0c2f2d0c7c (IsA maxillaria orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maxillary artery is a kind of artery", "pln": ["(: cnet_isa_5b8e2d61c3 (IsA maxillary_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "maxillary sinus is a kind of sinus", "pln": ["(: cnet_isa_84a2519460 (IsA maxillary_sinus sinus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maxillary vein is a kind of vein", "pln": ["(: cnet_isa_6bf057cc3d (IsA maxillary_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "maxim is a kind of saying", "pln": ["(: cnet_isa_d6cd65b637 (IsA maxim saying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maxim gun is a kind of machine gun", "pln": ["(: cnet_isa_a3f864b749 (IsA maxim_gun machine_gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maximilian s sunflower is a kind of sunflower", "pln": ["(: cnet_isa_5eec00ed4a (IsA maximilian_s_sunflower sunflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maximization is a kind of increase", "pln": ["(: cnet_isa_815ed434bc (IsA maximization increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "maximization is a kind of mathematical process", "pln": ["(: cnet_isa_839c862628 (IsA maximization mathematical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maximum is a kind of limit", "pln": ["(: cnet_isa_fd6b039db1 (IsA maximum limit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maximum is a kind of extremum", "pln": ["(: cnet_isa_118eaa321c (IsA maximum extremum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maximum is a kind of large indefinite quantity", "pln": ["(: cnet_isa_8cb4cbd0be (IsA maximum large_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maximum and minimum thermometer is a kind of thermometer", "pln": ["(: cnet_isa_1b86ff35d9 (IsA maximum_and_minimum_thermometer thermometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maxostoma is a kind of fish genus", "pln": ["(: cnet_isa_674aef4e2e (IsA maxostoma fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maxwell s equation is a kind of differential equation", "pln": ["(: cnet_isa_a1c5f0d335 (IsA maxwell_s_equation differential_equation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maxwell is a kind of flux unit", "pln": ["(: cnet_isa_ed325aa2f8 (IsA maxwell flux_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maxwell boltzmann distribution law is a kind of distribution law", "pln": ["(: cnet_isa_705480687b (IsA maxwell_boltzmann_distribution_law distribution_law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "may is a kind of gregorian calendar month", "pln": ["(: cnet_isa_60767165cf (IsA may gregorian_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "may apple is a kind of fruit", "pln": ["(: cnet_isa_37fb6b2167 (IsA may_apple fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "may day is a kind of day", "pln": ["(: cnet_isa_69835888fb (IsA may_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "may wine is a kind of punch", "pln": ["(: cnet_isa_18d73100b7 (IsA may_wine punch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "maya is a kind of amerind", "pln": ["(: cnet_isa_bc50ec53e0 (IsA maya amerind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maya is a kind of ethnic minority", "pln": ["(: cnet_isa_4c41cbddff (IsA maya ethnic_minority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mayaca is a kind of monocot genus", "pln": ["(: cnet_isa_28b3870e9d (IsA mayaca monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mayacaceae is a kind of monocot family", "pln": ["(: cnet_isa_481220dec1 (IsA mayacaceae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mayan is a kind of native american", "pln": ["(: cnet_isa_f5bf765f63 (IsA mayan native_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mayapple is a kind of herb", "pln": ["(: cnet_isa_399a95eee7 (IsA mayapple herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mayday is a kind of distress signal", "pln": ["(: cnet_isa_e74221bd5e (IsA mayday distress_signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mayeng is a kind of tree", "pln": ["(: cnet_isa_e87bebd244 (IsA mayeng tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mayetiola is a kind of arthropod genus", "pln": ["(: cnet_isa_2558d27eb8 (IsA mayetiola arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mayfly is a kind of ephemerid", "pln": ["(: cnet_isa_a1bfde10a9 (IsA mayfly ephemerid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mayhaw is a kind of hawthorn", "pln": ["(: cnet_isa_305cb6b28c (IsA mayhaw hawthorn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mayhem is a kind of crime", "pln": ["(: cnet_isa_58ce15ba82 (IsA mayhem crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mayonnaise is a kind of dressing", "pln": ["(: cnet_isa_043b2fdbdf (IsA mayonnaise dressing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mayor is a kind of civil authority", "pln": ["(: cnet_isa_e79c4f3b8f (IsA mayor civil_authority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mayor is a kind of politician", "pln": ["(: cnet_isa_a39ad8f127 (IsA mayor politician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mayor and governor is a kind of both local politician", "pln": ["(: cnet_isa_6486271790 (IsA mayor_and_governor both_local_politician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mayoralty is a kind of position", "pln": ["(: cnet_isa_60a2d64a34 (IsA mayoralty position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mayoress is a kind of mayor", "pln": ["(: cnet_isa_b4f1f1d90a (IsA mayoress mayor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mayoress is a kind of wife", "pln": ["(: cnet_isa_19b998ff08 (IsA mayoress wife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "maypole is a kind of post", "pln": ["(: cnet_isa_7134acf7c7 (IsA maypole post) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "maypop is a kind of passionflower", "pln": ["(: cnet_isa_bc6b157d18 (IsA maypop passionflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mayweed is a kind of composite", "pln": ["(: cnet_isa_7c619a3ccd (IsA mayweed composite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mazama is a kind of mammal genus", "pln": ["(: cnet_isa_466a122141 (IsA mazama mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mazda is a kind of corporation", "pln": ["(: cnet_isa_34b37edbb9 (IsA mazda corporation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "maze is a kind of system", "pln": ["(: cnet_isa_7ce1b37e25 (IsA maze system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mazer is a kind of bowl", "pln": ["(: cnet_isa_5abdb9bce5 (IsA mazer bowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mazurka is a kind of folk dancing", "pln": ["(: cnet_isa_3e2d005869 (IsA mazurka folk_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mazurka is a kind of dance music", "pln": ["(: cnet_isa_ff75bffe0f (IsA mazurka dance_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mb is a kind of computer memory unit", "pln": ["(: cnet_isa_f38001a0de (IsA mb computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mbundu is a kind of ethnic group", "pln": ["(: cnet_isa_e0d9ec498c (IsA mbundu ethnic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mcardle s disease is a kind of genetic disease", "pln": ["(: cnet_isa_c49a384013 (IsA mcardle_s_disease genetic_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mcburney s point is a kind of point", "pln": ["(: cnet_isa_14c501405e (IsA mcburney_s_point point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mccarthyism is a kind of witch hunt", "pln": ["(: cnet_isa_d8d73cb1d3 (IsA mccarthyism witch_hunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mcguffey eclectic reader is a kind of reader", "pln": ["(: cnet_isa_80b280ddd5 (IsA mcguffey_eclectic_reader reader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mcintosh is a kind of eating apple", "pln": ["(: cnet_isa_5da9488f15 (IsA mcintosh eating_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mdma is a kind of empherical drug", "pln": ["(: cnet_isa_b07ab8c898 (IsA mdma empherical_drug) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mea culpa is a kind of acknowledgment", "pln": ["(: cnet_isa_545a47dafc (IsA mea_culpa acknowledgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mead s milkweed is a kind of milkweed", "pln": ["(: cnet_isa_1afe08f07f (IsA mead_s_milkweed milkweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mead is a kind of alcoholic beverage", "pln": ["(: cnet_isa_ab980c30d0 (IsA mead alcoholic_beverage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mead is a kind of brew", "pln": ["(: cnet_isa_c51a10fa52 (IsA mead brew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meadow is a kind of clearing in wood", "pln": ["(: cnet_isa_b6fdb7ad26 (IsA meadow clearing_in_wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meadow buttercup is a kind of buttercup", "pln": ["(: cnet_isa_5c7b838760 (IsA meadow_buttercup buttercup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meadow clary is a kind of sage", "pln": ["(: cnet_isa_745c885cba (IsA meadow_clary sage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meadow cranesbill is a kind of cranesbill", "pln": ["(: cnet_isa_4367636890 (IsA meadow_cranesbill cranesbill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meadow foxtail is a kind of foxtail", "pln": ["(: cnet_isa_fbc68771a8 (IsA meadow_foxtail foxtail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "meadow goldenrod is a kind of goldenrod", "pln": ["(: cnet_isa_4574016db4 (IsA meadow_goldenrod goldenrod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meadow jumping mouse is a kind of jumping mouse", "pln": ["(: cnet_isa_e8747fbfbf (IsA meadow_jumping_mouse jumping_mouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meadow mushroom is a kind of agaric", "pln": ["(: cnet_isa_f8e7845a50 (IsA meadow_mushroom agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meadow pipit is a kind of pipit", "pln": ["(: cnet_isa_6133264c2f (IsA meadow_pipit pipit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meadow rue is a kind of wildflower", "pln": ["(: cnet_isa_e462f564bf (IsA meadow_rue wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meadow salsify is a kind of wildflower", "pln": ["(: cnet_isa_f8ea08eecf (IsA meadow_salsify wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meadow saxifrage is a kind of saxifrage", "pln": ["(: cnet_isa_5fd54b9e71 (IsA meadow_saxifrage saxifrage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meadow spikemoss is a kind of spikemoss", "pln": ["(: cnet_isa_d373fbcbec (IsA meadow_spikemoss spikemoss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meadow spittlebug is a kind of spittle insect", "pln": ["(: cnet_isa_ef4c96de73 (IsA meadow_spittlebug spittle_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meadow vole is a kind of vole", "pln": ["(: cnet_isa_0a1fcfa21b (IsA meadow_vole vole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meadowgrass is a kind of grass", "pln": ["(: cnet_isa_60fabf5ecd (IsA meadowgrass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meadowlark is a kind of new world oriole", "pln": ["(: cnet_isa_6d7c22bdde (IsA meadowlark new_world_oriole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meagerness is a kind of insufficiency", "pln": ["(: cnet_isa_08f5af765e (IsA meagerness insufficiency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "meal is a kind of foodstuff", "pln": ["(: cnet_isa_ae6495bde1 (IsA meal foodstuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meal is a kind of nutriment", "pln": ["(: cnet_isa_d5a7ae7ebc (IsA meal nutriment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "meal is a kind of occasion", "pln": ["(: cnet_isa_685bcaed2d (IsA meal occasion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meal ticket is a kind of coupon", "pln": ["(: cnet_isa_c096c9e4e4 (IsA meal_ticket coupon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meal ticket is a kind of support", "pln": ["(: cnet_isa_67b6203e3e (IsA meal_ticket support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mealie is a kind of ear", "pln": ["(: cnet_isa_c6c36c1df4 (IsA mealie ear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mealtime is a kind of hour", "pln": ["(: cnet_isa_32f20f3d11 (IsA mealtime hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mealworm is a kind of larva", "pln": ["(: cnet_isa_39a041bfe3 (IsA mealworm larva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mealybug is a kind of coccid insect", "pln": ["(: cnet_isa_6771b795e2 (IsA mealybug coccid_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mean is a kind of average", "pln": ["(: cnet_isa_f82f9364e5 (IsA mean average) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mean deviation is a kind of deviation", "pln": ["(: cnet_isa_5a014d0d05 (IsA mean_deviation deviation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mean distance is a kind of distance", "pln": ["(: cnet_isa_54d8ba8c7a (IsA mean_distance distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mean sun is a kind of model", "pln": ["(: cnet_isa_4880987c03 (IsA mean_sun model) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mean time is a kind of time unit", "pln": ["(: cnet_isa_9b2f9f8ac0 (IsA mean_time time_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meander is a kind of curve", "pln": ["(: cnet_isa_85ebe8f8dc (IsA meander curve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meanie is a kind of oppressor", "pln": ["(: cnet_isa_9972d81b13 (IsA meanie oppressor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meaning is a kind of idea", "pln": ["(: cnet_isa_2af38d238f (IsA meaning idea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meaning is a kind of message", "pln": ["(: cnet_isa_3846bd81b8 (IsA meaning message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meaningfulness is a kind of significance", "pln": ["(: cnet_isa_87369f8da5 (IsA meaningfulness significance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meaninglessness is a kind of insignificance", "pln": ["(: cnet_isa_06e22f452d (IsA meaninglessness insignificance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meanness is a kind of stinginess", "pln": ["(: cnet_isa_36d6e16125 (IsA meanness stinginess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mean is a kind of implementation", "pln": ["(: cnet_isa_554e52f35e (IsA mean implementation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mean is a kind of instrumentality", "pln": ["(: cnet_isa_cdd1986a65 (IsA mean instrumentality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mean is a kind of capital", "pln": ["(: cnet_isa_3669b8fdfc (IsA mean capital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mean test is a kind of inquiry", "pln": ["(: cnet_isa_29b9651998 (IsA mean_test inquiry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "measle is a kind of contagious disease", "pln": ["(: cnet_isa_e85dcb88d3 (IsA measle contagious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "measure is a kind of abstraction", "pln": ["(: cnet_isa_d4f683d2f0 (IsA measure abstraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "measure is a kind of maneuver", "pln": ["(: cnet_isa_7ffd2b8bd3 (IsA measure maneuver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "measure is a kind of container", "pln": ["(: cnet_isa_5c96d8863f (IsA measure container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "measure is a kind of musical notation", "pln": ["(: cnet_isa_5d2a7e1c8e (IsA measure musical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "measurement is a kind of activity", "pln": ["(: cnet_isa_67b9ae3372 (IsA measurement activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "measurer is a kind of person", "pln": ["(: cnet_isa_ac9e523dea (IsA measurer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "measuring cup is a kind of measure", "pln": ["(: cnet_isa_90c27dcfdc (IsA measuring_cup measure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "measuring instrument is a kind of instrument", "pln": ["(: cnet_isa_bdab6e75e7 (IsA measuring_instrument instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "measuring stick is a kind of measuring instrument", "pln": ["(: cnet_isa_ef0f7a3f17 (IsA measuring_stick measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "measuring unit is a kind of unit of measurement", "pln": ["(: cnet_isa_5a6c0152ee (IsA measuring_unit unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "measuring worm is a kind of caterpillar", "pln": ["(: cnet_isa_95b4a66afd (IsA measuring_worm caterpillar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meat is a kind of animal muscle", "pln": ["(: cnet_isa_d595682b15 (IsA meat animal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meat is a kind of flesh", "pln": ["(: cnet_isa_7129c94103 (IsA meat flesh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meat is a kind of not bone", "pln": ["(: cnet_isa_11f2ec0064 (IsA meat not_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meat is a kind of food", "pln": ["(: cnet_isa_e9880fce5a (IsA meat food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meat and potatoe is a kind of basis", "pln": ["(: cnet_isa_4e5f070c74 (IsA meat_and_potatoe basis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meat counter is a kind of counter", "pln": ["(: cnet_isa_c111e44a08 (IsA meat_counter counter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meat grinder is a kind of aggression", "pln": ["(: cnet_isa_4634df4eff (IsA meat_grinder aggression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meat grinder is a kind of mill", "pln": ["(: cnet_isa_4245bb65c8 (IsA meat_grinder mill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meat hook is a kind of hook", "pln": ["(: cnet_isa_f61454c56c (IsA meat_hook hook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meat house is a kind of house", "pln": ["(: cnet_isa_40a0c8bdb0 (IsA meat_house house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meat loaf is a kind of dish", "pln": ["(: cnet_isa_925e2042de (IsA meat_loaf dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meat loaf is a kind of loaf of bread", "pln": ["(: cnet_isa_e7ba253545 (IsA meat_loaf loaf_of_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meat packer is a kind of jobber", "pln": ["(: cnet_isa_bc00f0801b (IsA meat_packer jobber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meat pie is a kind of pie", "pln": ["(: cnet_isa_8dde19f938 (IsA meat_pie pie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meat safe is a kind of safe", "pln": ["(: cnet_isa_e7c669cd19 (IsA meat_safe safe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meat thermometer is a kind of thermometer", "pln": ["(: cnet_isa_3be6332a51 (IsA meat_thermometer thermometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "meatball is a kind of dish", "pln": ["(: cnet_isa_42c93ec805 (IsA meatball dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "meatpacking is a kind of packaging", "pln": ["(: cnet_isa_206e52cd83 (IsA meatpacking packaging) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meatus is a kind of passage", "pln": ["(: cnet_isa_578c3193b4 (IsA meatus passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mebendazole is a kind of vermifuge", "pln": ["(: cnet_isa_9f542c845d (IsA mebendazole vermifuge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mebibit is a kind of computer memory unit", "pln": ["(: cnet_isa_bf5747d790 (IsA mebibit computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mecca is a kind of topographic point", "pln": ["(: cnet_isa_0ad34cc27a (IsA mecca topographic_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mechanic s lien is a kind of lien", "pln": ["(: cnet_isa_a1d6d4acdc (IsA mechanic_s_lien lien) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mechanical advantage is a kind of ratio", "pln": ["(: cnet_isa_38e35643ad (IsA mechanical_advantage ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mechanical device is a kind of mechanism", "pln": ["(: cnet_isa_7abffb094a (IsA mechanical_device mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mechanical drawing is a kind of drawing", "pln": ["(: cnet_isa_13bac5bd56 (IsA mechanical_drawing drawing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mechanical energy is a kind of energy", "pln": ["(: cnet_isa_424435a112 (IsA mechanical_energy energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mechanical engineer is a kind of engineer", "pln": ["(: cnet_isa_722780754c (IsA mechanical_engineer engineer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mechanical engineering is a kind of engineering", "pln": ["(: cnet_isa_8eea7e38f9 (IsA mechanical_engineering engineering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mechanical mixture is a kind of mixture", "pln": ["(: cnet_isa_561f07e325 (IsA mechanical_mixture mixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mechanical phenomenon is a kind of physical phenomenon", "pln": ["(: cnet_isa_bc7b3af8d4 (IsA mechanical_phenomenon physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mechanical piano is a kind of piano", "pln": ["(: cnet_isa_490a47d85e (IsA mechanical_piano piano) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mechanical system is a kind of system", "pln": ["(: cnet_isa_c8c53ce16b (IsA mechanical_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mechanic is a kind of physic", "pln": ["(: cnet_isa_d8c7a1da84 (IsA mechanic physic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mechanism is a kind of performance", "pln": ["(: cnet_isa_26166f3e70 (IsA mechanism performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mechanism is a kind of device", "pln": ["(: cnet_isa_f7d55b36be (IsA mechanism device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mechanism is a kind of natural object", "pln": ["(: cnet_isa_5b5c4facc8 (IsA mechanism natural_object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mechanism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_988bbc0890 (IsA mechanism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mechanism is a kind of chemical process", "pln": ["(: cnet_isa_cdb123d04b (IsA mechanism chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mechanist is a kind of philosopher", "pln": ["(: cnet_isa_b56aa8c08d (IsA mechanist philosopher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mechanization is a kind of condition", "pln": ["(: cnet_isa_4f8e62ae61 (IsA mechanization condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mechanized cavalry is a kind of cavalry", "pln": ["(: cnet_isa_0c8e5c5a78 (IsA mechanized_cavalry cavalry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meckel s diverticulum is a kind of diverticulum", "pln": ["(: cnet_isa_d5319ac731 (IsA meckel_s_diverticulum diverticulum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meconium is a kind of fecal matter", "pln": ["(: cnet_isa_f2813d7839 (IsA meconium fecal_matter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meconopsis is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_1f88f5be53 (IsA meconopsis dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mecoptera is a kind of animal order", "pln": ["(: cnet_isa_1a84ebd6e9 (IsA mecoptera animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mecopteran is a kind of insect", "pln": ["(: cnet_isa_746aa1835b (IsA mecopteran insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medaille militaire is a kind of decoration", "pln": ["(: cnet_isa_2986a10eff (IsA medaille_militaire decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medal of honor is a kind of decoration", "pln": ["(: cnet_isa_e58ec30f7c (IsA medal_of_honor decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medal play is a kind of golf", "pln": ["(: cnet_isa_b126984c3e (IsA medal_play golf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medalist is a kind of golfer", "pln": ["(: cnet_isa_c90b04bf0b (IsA medalist golfer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medalist is a kind of winner", "pln": ["(: cnet_isa_514dafdf60 (IsA medalist winner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medallion is a kind of emblem", "pln": ["(: cnet_isa_0ba0a13500 (IsA medallion emblem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medallion is a kind of helping", "pln": ["(: cnet_isa_639b9eb6e0 (IsA medallion helping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medallion is a kind of coin", "pln": ["(: cnet_isa_0d767bcd7b (IsA medallion coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meddler is a kind of unwelcome person", "pln": ["(: cnet_isa_87f0bebe19 (IsA meddler unwelcome_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meddling is a kind of change of state", "pln": ["(: cnet_isa_c0c8b360bd (IsA meddling change_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "media consultant is a kind of adviser", "pln": ["(: cnet_isa_dd9c300f6c (IsA media_consultant adviser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mediacy is a kind of indirectness", "pln": ["(: cnet_isa_e5bf3ce236 (IsA mediacy indirectness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medial condyle is a kind of condyle", "pln": ["(: cnet_isa_a5f5a68965 (IsA medial_condyle condyle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medial geniculate body is a kind of geniculate body", "pln": ["(: cnet_isa_10c74a19fc (IsA medial_geniculate_body geniculate_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medial rectus muscle is a kind of ocular muscle", "pln": ["(: cnet_isa_875cbfe5dd (IsA medial_rectus_muscle ocular_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "median is a kind of average", "pln": ["(: cnet_isa_edd4620830 (IsA median average) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mediant is a kind of note", "pln": ["(: cnet_isa_4bb3301ef6 (IsA mediant note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mediastinum is a kind of cavity", "pln": ["(: cnet_isa_0494518a8b (IsA mediastinum cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mediation is a kind of intervention", "pln": ["(: cnet_isa_d688b238e2 (IsA mediation intervention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mediation is a kind of negotiation", "pln": ["(: cnet_isa_3ebaa0f9da (IsA mediation negotiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mediator is a kind of negotiator", "pln": ["(: cnet_isa_e5d485ffe1 (IsA mediator negotiator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mediatrix is a kind of mediator", "pln": ["(: cnet_isa_f6b2236147 (IsA mediatrix mediator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "medic is a kind of herb", "pln": ["(: cnet_isa_ba3b0f39c7 (IsA medic herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medicago is a kind of papilionoideae", "pln": ["(: cnet_isa_ed69b5c7d1 (IsA medicago papilionoideae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medicago is a kind of rosid dicot genus", "pln": ["(: cnet_isa_bedb01112b (IsA medicago rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medicaid is a kind of health care", "pln": ["(: cnet_isa_0d7b8050e4 (IsA medicaid health_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medicaid fund is a kind of fund", "pln": ["(: cnet_isa_2c9c3bca76 (IsA medicaid_fund fund) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medical assistant is a kind of health professional", "pln": ["(: cnet_isa_1e0765dc0c (IsA medical_assistant health_professional) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medical bill is a kind of bill", "pln": ["(: cnet_isa_bbbfa0efd1 (IsA medical_bill bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medical building is a kind of building", "pln": ["(: cnet_isa_15f81d499f (IsA medical_building building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medical care is a kind of treatment", "pln": ["(: cnet_isa_6353d52252 (IsA medical_care treatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medical center is a kind of center", "pln": ["(: cnet_isa_5e69bf5dbc (IsA medical_center center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medical diagnosis is a kind of diagnosis", "pln": ["(: cnet_isa_fc017981ae (IsA medical_diagnosis diagnosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medical doctor is a kind of doctor", "pln": ["(: cnet_isa_d4f2679ce5 (IsA medical_doctor doctor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medical evacuation is a kind of evacuation", "pln": ["(: cnet_isa_f075babd7d (IsA medical_evacuation evacuation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medical expense is a kind of expense", "pln": ["(: cnet_isa_8ca2709d3c (IsA medical_expense expense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medical history is a kind of case history", "pln": ["(: cnet_isa_4ac65fd553 (IsA medical_history case_history) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medical institution is a kind of institution", "pln": ["(: cnet_isa_59f4af7a82 (IsA medical_institution institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medical instrument is a kind of instrument", "pln": ["(: cnet_isa_192e1c734b (IsA medical_instrument instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medical officer is a kind of medical practitioner", "pln": ["(: cnet_isa_a98b2ad4d9 (IsA medical_officer medical_practitioner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medical practice is a kind of practice", "pln": ["(: cnet_isa_9ff1015762 (IsA medical_practice practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "medical practitioner is a kind of health professional", "pln": ["(: cnet_isa_43d7e76a8f (IsA medical_practitioner health_professional) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medical procedure is a kind of procedure", "pln": ["(: cnet_isa_f94b7c2c73 (IsA medical_procedure procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "medical profession is a kind of health profession", "pln": ["(: cnet_isa_15c47e5711 (IsA medical_profession health_profession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medical relation is a kind of professional relation", "pln": ["(: cnet_isa_aa74d77a39 (IsA medical_relation professional_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medical report is a kind of report", "pln": ["(: cnet_isa_c2dc4ef1f2 (IsA medical_report report) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medical school is a kind of graduate school", "pln": ["(: cnet_isa_1cd5cbdd2d (IsA medical_school graduate_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medical science is a kind of life science", "pln": ["(: cnet_isa_377625a72d (IsA medical_science life_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medical scientist is a kind of scientist", "pln": ["(: cnet_isa_d1ed7ab008 (IsA medical_scientist scientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medical student is a kind of student", "pln": ["(: cnet_isa_64628dd005 (IsA medical_student student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medicare is a kind of health care", "pln": ["(: cnet_isa_a34c112ec5 (IsA medicare health_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medicare check is a kind of check", "pln": ["(: cnet_isa_ffa6b143ad (IsA medicare_check check) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medication is a kind of therapy", "pln": ["(: cnet_isa_8261d48377 (IsA medication therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medici is a kind of house", "pln": ["(: cnet_isa_f2b3ca2a59 (IsA medici house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medicinal leech is a kind of leech", "pln": ["(: cnet_isa_d2cddef93c (IsA medicinal_leech leech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medicine is a kind of medical science", "pln": ["(: cnet_isa_aac86a1b2b (IsA medicine medical_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medicine is a kind of drug", "pln": ["(: cnet_isa_92ac44f7ee (IsA medicine drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medicine is a kind of learned profession", "pln": ["(: cnet_isa_8fa31a9c5b (IsA medicine learned_profession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medicine ball is a kind of ball", "pln": ["(: cnet_isa_8272cfd439 (IsA medicine_ball ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medicine chest is a kind of cabinet", "pln": ["(: cnet_isa_a10d7c2f88 (IsA medicine_chest cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medicine man is a kind of shaman", "pln": ["(: cnet_isa_8c5201fb8f (IsA medicine_man shaman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medieval greek is a kind of greek", "pln": ["(: cnet_isa_f4f2963c48 (IsA medieval_greek greek) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medieval latin is a kind of low latin", "pln": ["(: cnet_isa_a1191413ba (IsA medieval_latin low_latin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medieval schoolman is a kind of scholar", "pln": ["(: cnet_isa_3b8cd1fec4 (IsA medieval_schoolman scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medina is a kind of quarter", "pln": ["(: cnet_isa_2e5febbd68 (IsA medina quarter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medinilla is a kind of rosid dicot genus", "pln": ["(: cnet_isa_64ff7bdb40 (IsA medinilla rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medinilla magnifica is a kind of shrub", "pln": ["(: cnet_isa_c23bbd5ae5 (IsA medinilla_magnifica shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meditation is a kind of emotional healer", "pln": ["(: cnet_isa_22c7a3af59 (IsA meditation emotional_healer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "meditation is a kind of method for relaxation", "pln": ["(: cnet_isa_adb492d5f4 (IsA meditation method_for_relaxation) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "meditation is a kind of skill", "pln": ["(: cnet_isa_cb59c334b9 (IsA meditation skill) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meditation is a kind of state of reflection and contemplation", "pln": ["(: cnet_isa_92c46cc4bc (IsA meditation state_of_reflection_and_contemplation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meditation is a kind of tough skill to learn", "pln": ["(: cnet_isa_212c244e6f (IsA meditation tough_skill_to_learn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meditation is a kind of way to relax", "pln": ["(: cnet_isa_955f03f457 (IsA meditation way_to_relax) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meditation is a kind of contemplation", "pln": ["(: cnet_isa_6f51e03e0e (IsA meditation contemplation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mediterranean anchovy is a kind of anchovy", "pln": ["(: cnet_isa_8518dfe1a3 (IsA mediterranean_anchovy anchovy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mediterranean flour moth is a kind of pyralid", "pln": ["(: cnet_isa_ee14f0643f (IsA mediterranean_flour_moth pyralid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mediterranean fruit fly is a kind of fruit fly", "pln": ["(: cnet_isa_57e1cb7684 (IsA mediterranean_fruit_fly fruit_fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mediterranean snapdragon is a kind of snapdragon", "pln": ["(: cnet_isa_5c2379b772 (IsA mediterranean_snapdragon snapdragon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mediterranean water shrew is a kind of water shrew", "pln": ["(: cnet_isa_1cbaf8e0ef (IsA mediterranean_water_shrew water_shrew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medium is a kind of substance", "pln": ["(: cnet_isa_15ce599d59 (IsA medium substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "medium is a kind of communication", "pln": ["(: cnet_isa_32bb660e5c (IsA medium communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medium is a kind of instrumentality", "pln": ["(: cnet_isa_dfeda48ec3 (IsA medium instrumentality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medium is a kind of transmission", "pln": ["(: cnet_isa_936d7c9a24 (IsA medium transmission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medium is a kind of environment", "pln": ["(: cnet_isa_c8da8955f5 (IsA medium environment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medium is a kind of psychic", "pln": ["(: cnet_isa_0ad2f88410 (IsA medium psychic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medium is a kind of state", "pln": ["(: cnet_isa_395c4a2cc6 (IsA medium state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medium is a kind of liquid", "pln": ["(: cnet_isa_7b979cef0a (IsA medium liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "medium frequency is a kind of radio frequency", "pln": ["(: cnet_isa_ff8b6f9c69 (IsA medium_frequency radio_frequency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medium of exchange is a kind of standard", "pln": ["(: cnet_isa_a10faa99a9 (IsA medium_of_exchange standard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medium steel is a kind of steel", "pln": ["(: cnet_isa_3b61aacc0d (IsA medium_steel steel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medium wave is a kind of radio wave", "pln": ["(: cnet_isa_2794462299 (IsA medium_wave radio_wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medlar is a kind of edible fruit", "pln": ["(: cnet_isa_82d3e16691 (IsA medlar edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medlar is a kind of fruit tree", "pln": ["(: cnet_isa_b5fb1362e4 (IsA medlar fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medley is a kind of musical composition", "pln": ["(: cnet_isa_07b0228192 (IsA medley musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medline is a kind of telephone system", "pln": ["(: cnet_isa_f5dea8a567 (IsA medline telephone_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medoc is a kind of bordeaux", "pln": ["(: cnet_isa_809ea3ba96 (IsA medoc bordeaux) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medoc is a kind of red wine", "pln": ["(: cnet_isa_9955189e73 (IsA medoc red_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medulla is a kind of animal tissue", "pln": ["(: cnet_isa_e2703121d9 (IsA medulla animal_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medulla is a kind of plant tissue", "pln": ["(: cnet_isa_2610985afc (IsA medulla plant_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medulla oblongata is a kind of neural structure", "pln": ["(: cnet_isa_a8115ff08a (IsA medulla_oblongata neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medullary sheath is a kind of sheath", "pln": ["(: cnet_isa_24512e23f5 (IsA medullary_sheath sheath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medullated nerve fiber is a kind of nerve fiber", "pln": ["(: cnet_isa_d34f6e40e3 (IsA medullated_nerve_fiber nerve_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medusa s head is a kind of spurge", "pln": ["(: cnet_isa_f94687aefd (IsA medusa_s_head spurge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medusa s head is a kind of wild rye", "pln": ["(: cnet_isa_d6fc903bf6 (IsA medusa_s_head wild_rye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medusa is a kind of coelenterate", "pln": ["(: cnet_isa_1e3f1b31a6 (IsA medusa coelenterate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "medusa is a kind of gorgon", "pln": ["(: cnet_isa_a287b3c349 (IsA medusa gorgon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "meed is a kind of reward", "pln": ["(: cnet_isa_c36d280dd6 (IsA meed reward) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meekness is a kind of humility", "pln": ["(: cnet_isa_2eec7294ca (IsA meekness humility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meerkat is a kind of viverrine", "pln": ["(: cnet_isa_dd55584636 (IsA meerkat viverrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meerschaum is a kind of pipe", "pln": ["(: cnet_isa_226877d651 (IsA meerschaum pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meerschaum is a kind of mineral", "pln": ["(: cnet_isa_05cbf8afac (IsA meerschaum mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meet is a kind of athletic contest", "pln": ["(: cnet_isa_4da8013198 (IsA meet athletic_contest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meeting is a kind of assembly", "pln": ["(: cnet_isa_f6f7c111ef (IsA meeting assembly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meeting is a kind of convergence", "pln": ["(: cnet_isa_71e6f049e6 (IsA meeting convergence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meeting is a kind of gathering", "pln": ["(: cnet_isa_c9bc4c5a99 (IsA meeting gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meeting is a kind of social gathering", "pln": ["(: cnet_isa_5b2dfd643a (IsA meeting social_gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meeting friend is a kind of positive experience", "pln": ["(: cnet_isa_05f7d4e50a (IsA meeting_friend positive_experience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meeting house is a kind of columbine", "pln": ["(: cnet_isa_6a93e640a8 (IsA meeting_house columbine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "megabit is a kind of computer memory unit", "pln": ["(: cnet_isa_986a93b236 (IsA megabit computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megabyte is a kind of computer memory unit", "pln": ["(: cnet_isa_a513028428 (IsA megabyte computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megachile is a kind of arthropod genus", "pln": ["(: cnet_isa_d310260443 (IsA megachile arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megachilidae is a kind of arthropod family", "pln": ["(: cnet_isa_6c2e9b10f3 (IsA megachilidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megachiroptera is a kind of animal order", "pln": ["(: cnet_isa_b804a83c7a (IsA megachiroptera animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "megacolon is a kind of colon", "pln": ["(: cnet_isa_96700a0075 (IsA megacolon colon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megadeath is a kind of death", "pln": ["(: cnet_isa_7e717d3716 (IsA megadeath death) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megaderma is a kind of mammal genus", "pln": ["(: cnet_isa_b0cb1109a8 (IsA megaderma mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megadermatidae is a kind of mammal family", "pln": ["(: cnet_isa_4b7397fd98 (IsA megadermatidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megaera is a kind of eumenide", "pln": ["(: cnet_isa_9a5130f941 (IsA megaera eumenide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megaflop is a kind of unit of measurement", "pln": ["(: cnet_isa_6109e15421 (IsA megaflop unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megagametophyte is a kind of gametophyte", "pln": ["(: cnet_isa_045f80a7db (IsA megagametophyte gametophyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megahertz is a kind of rate", "pln": ["(: cnet_isa_67efb793e5 (IsA megahertz rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megakaryocyte is a kind of bone cell", "pln": ["(: cnet_isa_e2ae512656 (IsA megakaryocyte bone_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "megalith is a kind of memorial", "pln": ["(: cnet_isa_dc8c2993fb (IsA megalith memorial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megalobatrachus is a kind of amphibian genus", "pln": ["(: cnet_isa_a879de2da4 (IsA megalobatrachus amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megaloblast is a kind of red blood cell", "pln": ["(: cnet_isa_36e690f789 (IsA megaloblast red_blood_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megaloblastic anemia is a kind of pernicious anemia", "pln": ["(: cnet_isa_e9cb5aee9e (IsA megaloblastic_anemia pernicious_anemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megalocyte is a kind of red blood cell", "pln": ["(: cnet_isa_9e7b6216e8 (IsA megalocyte red_blood_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megalomania is a kind of mental illness", "pln": ["(: cnet_isa_b1fec5ba57 (IsA megalomania mental_illness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megalomaniac is a kind of egotist", "pln": ["(: cnet_isa_ac763f1eb0 (IsA megalomaniac egotist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "megalonychidae is a kind of mammal family", "pln": ["(: cnet_isa_3d6a53ec1f (IsA megalonychidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megalopolis is a kind of urban area", "pln": ["(: cnet_isa_0304e5fc6f (IsA megalopolis urban_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megaloptera is a kind of animal order", "pln": ["(: cnet_isa_c0aa8898c6 (IsA megaloptera animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megalosaur is a kind of theropod", "pln": ["(: cnet_isa_4f9a5d7e32 (IsA megalosaur theropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "megalosauridae is a kind of reptile family", "pln": ["(: cnet_isa_6d62200ba0 (IsA megalosauridae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megaphone is a kind of acoustic device", "pln": ["(: cnet_isa_2af942fc4c (IsA megaphone acoustic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megapode is a kind of gallinaceous bird", "pln": ["(: cnet_isa_ca32315084 (IsA megapode gallinaceous_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megapodiidae is a kind of bird family", "pln": ["(: cnet_isa_2efcb57354 (IsA megapodiidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megapodius is a kind of bird genus", "pln": ["(: cnet_isa_a7bd94f14e (IsA megapodius bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "megaptera is a kind of mammal genus", "pln": ["(: cnet_isa_77e01cc672 (IsA megaptera mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megasporangium is a kind of sporangium", "pln": ["(: cnet_isa_e950ac8aec (IsA megasporangium sporangium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megaspore is a kind of spore", "pln": ["(: cnet_isa_d93a3a0efc (IsA megaspore spore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megasporophyll is a kind of sporophyll", "pln": ["(: cnet_isa_28300a67aa (IsA megasporophyll sporophyll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megatherian is a kind of edentate", "pln": ["(: cnet_isa_f80d65666a (IsA megatherian edentate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megatheriidae is a kind of mammal family", "pln": ["(: cnet_isa_bd8744d9e9 (IsA megatheriidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "megatherium is a kind of mammal genus", "pln": ["(: cnet_isa_012cd9df31 (IsA megatherium mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megaton is a kind of avoirdupois unit", "pln": ["(: cnet_isa_0254cb6f18 (IsA megaton avoirdupois_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megaton is a kind of explosive unit", "pln": ["(: cnet_isa_4920b571b1 (IsA megaton explosive_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megaton bomb is a kind of bomb", "pln": ["(: cnet_isa_42650d7b97 (IsA megaton_bomb bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megaton bomb is a kind of nuclear weapon", "pln": ["(: cnet_isa_42c3727d61 (IsA megaton_bomb nuclear_weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megavitamin therapy is a kind of therapy", "pln": ["(: cnet_isa_4b86176b90 (IsA megavitamin_therapy therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megawatt is a kind of power unit", "pln": ["(: cnet_isa_3dd8e4aa06 (IsA megawatt power_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megesterol is a kind of progestin", "pln": ["(: cnet_isa_0ef7011ace (IsA megesterol progestin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megillah is a kind of scroll", "pln": ["(: cnet_isa_e2e8cee44f (IsA megillah scroll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megillah is a kind of report", "pln": ["(: cnet_isa_2cee064e44 (IsA megillah report) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "megilp is a kind of medium", "pln": ["(: cnet_isa_a6b9a45cc1 (IsA megilp medium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "megohm is a kind of resistance unit", "pln": ["(: cnet_isa_cd3d11838a (IsA megohm resistance_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meibomian gland is a kind of sebaceous gland", "pln": ["(: cnet_isa_60814c2b5d (IsA meibomian_gland sebaceous_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meiosis is a kind of cell division", "pln": ["(: cnet_isa_d587e09b63 (IsA meiosis cell_division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meitnerium is a kind of chemical element", "pln": ["(: cnet_isa_868d52cfe5 (IsA meitnerium chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melagra is a kind of pain", "pln": ["(: cnet_isa_2cabfb2537 (IsA melagra pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melamine is a kind of base", "pln": ["(: cnet_isa_72809c45dc (IsA melamine base) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melamine resin is a kind of synthetic resin", "pln": ["(: cnet_isa_7bd3cdd215 (IsA melamine_resin synthetic_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melampodium is a kind of asterid dicot genus", "pln": ["(: cnet_isa_6f104e538a (IsA melampodium asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melampsora is a kind of fungus genus", "pln": ["(: cnet_isa_f8b865a435 (IsA melampsora fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "melampsoraceae is a kind of fungus family", "pln": ["(: cnet_isa_a278fcb39f (IsA melampsoraceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melancholia is a kind of depression", "pln": ["(: cnet_isa_d5d8174b1b (IsA melancholia depression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melancholic is a kind of depressive", "pln": ["(: cnet_isa_c91959a4d2 (IsA melancholic depressive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melancholy is a kind of emotion", "pln": ["(: cnet_isa_d3487f4ca2 (IsA melancholy emotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "melancholy is a kind of sadness", "pln": ["(: cnet_isa_26fbb1cbd0 (IsA melancholy sadness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melancholy is a kind of depression", "pln": ["(: cnet_isa_ea6100c672 (IsA melancholy depression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melancholy thistle is a kind of thistle", "pln": ["(: cnet_isa_9500f414d1 (IsA melancholy_thistle thistle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melanerpe is a kind of bird genus", "pln": ["(: cnet_isa_148430d932 (IsA melanerpe bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melanin is a kind of animal pigment", "pln": ["(: cnet_isa_a104e05fe0 (IsA melanin animal_pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melanitta is a kind of bird genus", "pln": ["(: cnet_isa_c42ca950d1 (IsA melanitta bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melanoblast is a kind of epidermal cell", "pln": ["(: cnet_isa_461e3bc45b (IsA melanoblast epidermal_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melanocyte is a kind of epidermal cell", "pln": ["(: cnet_isa_25fe20fde2 (IsA melanocyte epidermal_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melanocyte stimulating hormone is a kind of hormone", "pln": ["(: cnet_isa_8162692a7c (IsA melanocyte_stimulating_hormone hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melanoderma is a kind of pigmentation", "pln": ["(: cnet_isa_64e0262b8e (IsA melanoderma pigmentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melanogrammus is a kind of fish genus", "pln": ["(: cnet_isa_2e58195e05 (IsA melanogrammus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melanoma is a kind of skin cancer", "pln": ["(: cnet_isa_bd4c11e922 (IsA melanoma skin_cancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melanoplus is a kind of arthropod genus", "pln": ["(: cnet_isa_9c93fc9e92 (IsA melanoplus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melanosis is a kind of skin disease", "pln": ["(: cnet_isa_233636ec93 (IsA melanosis skin_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melanotis is a kind of bird genus", "pln": ["(: cnet_isa_4bac60dc4c (IsA melanotis bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melanthiaceae is a kind of liliid monocot family", "pln": ["(: cnet_isa_4b08acdace (IsA melanthiaceae liliid_monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "melastoma is a kind of rosid dicot genus", "pln": ["(: cnet_isa_d16364eb29 (IsA melastoma rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melastomataceae is a kind of rosid dicot family", "pln": ["(: cnet_isa_c6f7e2b5a6 (IsA melastomataceae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melatonin is a kind of hormone", "pln": ["(: cnet_isa_94b14d579e (IsA melatonin hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melba toast is a kind of toast", "pln": ["(: cnet_isa_7d87fe0e4d (IsA melba_toast toast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "melchite is a kind of christian", "pln": ["(: cnet_isa_b64b507a26 (IsA melchite christian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meleagrididae is a kind of bird family", "pln": ["(: cnet_isa_87bf341ca3 (IsA meleagrididae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meleagris is a kind of bird genus", "pln": ["(: cnet_isa_a7ae5b2208 (IsA meleagris bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melee is a kind of disturbance", "pln": ["(: cnet_isa_eb04140e94 (IsA melee disturbance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melena is a kind of fecal matter", "pln": ["(: cnet_isa_9271d5df97 (IsA melena fecal_matter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mele is a kind of mammal genus", "pln": ["(: cnet_isa_1f50f53f88 (IsA mele mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_8cce38aa9e (IsA melia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meliaceae is a kind of rosid dicot family", "pln": ["(: cnet_isa_51ab16a3ee (IsA meliaceae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melicoccus is a kind of dicot genus", "pln": ["(: cnet_isa_a967edee72 (IsA melicoccus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melicytus is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_2f00523d26 (IsA melicytus dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melilotus is a kind of woody plant", "pln": ["(: cnet_isa_40f71f841a (IsA melilotus woody_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melinae is a kind of mammal family", "pln": ["(: cnet_isa_40b4aac468 (IsA melinae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melioration is a kind of drift", "pln": ["(: cnet_isa_866b839ea5 (IsA melioration drift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meliorism is a kind of belief", "pln": ["(: cnet_isa_57c07e187f (IsA meliorism belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "meliphagidae is a kind of bird family", "pln": ["(: cnet_isa_482862cd71 (IsA meliphagidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melissa is a kind of asterid dicot genus", "pln": ["(: cnet_isa_a6851ced25 (IsA melissa asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mellivora is a kind of mammal genus", "pln": ["(: cnet_isa_57ae89de2b (IsA mellivora mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mellowing is a kind of ripening", "pln": ["(: cnet_isa_ed9da1f550 (IsA mellowing ripening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mellowness is a kind of affability", "pln": ["(: cnet_isa_5310a87f85 (IsA mellowness affability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mellowness is a kind of shade", "pln": ["(: cnet_isa_38dcf617e0 (IsA mellowness shade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mellowness is a kind of taste", "pln": ["(: cnet_isa_e613f9e275 (IsA mellowness taste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mellowness is a kind of compassion", "pln": ["(: cnet_isa_3303b029de (IsA mellowness compassion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melocactus is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_c4f36acf66 (IsA melocactus caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melodiousness is a kind of musicality", "pln": ["(: cnet_isa_9ed4959f7b (IsA melodiousness musicality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melodrama is a kind of comedy", "pln": ["(: cnet_isa_4909c7c082 (IsA melodrama comedy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melody is a kind of musical perception", "pln": ["(: cnet_isa_a69aec4000 (IsA melody musical_perception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melogale is a kind of mammal genus", "pln": ["(: cnet_isa_00803a1a28 (IsA melogale mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meloidae is a kind of arthropod family", "pln": ["(: cnet_isa_4d864eec69 (IsA meloidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "melolontha is a kind of arthropod genus", "pln": ["(: cnet_isa_9669218f03 (IsA melolontha arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melolonthid beetle is a kind of scarabaeid beetle", "pln": ["(: cnet_isa_5d436581c0 (IsA melolonthid_beetle scarabaeid_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melolonthidae is a kind of arthropod family", "pln": ["(: cnet_isa_dc37678d25 (IsA melolonthidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melon is a kind of edible fruit", "pln": ["(: cnet_isa_bfc30e7eb2 (IsA melon edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melon is a kind of gourd", "pln": ["(: cnet_isa_60a731f936 (IsA melon gourd) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melon ball is a kind of melon", "pln": ["(: cnet_isa_a9b2f69871 (IsA melon_ball melon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "melophagus is a kind of arthropod genus", "pln": ["(: cnet_isa_f41341528a (IsA melophagus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melopsittacus is a kind of bird genus", "pln": ["(: cnet_isa_fc807e1460 (IsA melopsittacus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melosa is a kind of tarweed", "pln": ["(: cnet_isa_9d45c117d8 (IsA melosa tarweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melospiza is a kind of bird genus", "pln": ["(: cnet_isa_382be1c85f (IsA melospiza bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meltdown is a kind of calamity", "pln": ["(: cnet_isa_6b77eecb4d (IsA meltdown calamity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meltdown is a kind of overheating", "pln": ["(: cnet_isa_d342eaf1ca (IsA meltdown overheating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "melter is a kind of worker", "pln": ["(: cnet_isa_3d80311391 (IsA melter worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melting pot is a kind of environment", "pln": ["(: cnet_isa_01740262c5 (IsA melting_pot environment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meltwater is a kind of water", "pln": ["(: cnet_isa_6614a32a56 (IsA meltwater water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "melursus is a kind of mammal genus", "pln": ["(: cnet_isa_78142a440c (IsA melursus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mem is a kind of letter", "pln": ["(: cnet_isa_b87c81d57e (IsA mem letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "member is a kind of unit", "pln": ["(: cnet_isa_8d7ab84626 (IsA member unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "member is a kind of part", "pln": ["(: cnet_isa_65bdba5c87 (IsA member part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "member is a kind of associate", "pln": ["(: cnet_isa_f61459abf0 (IsA member associate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "member bank is a kind of depository financial institution", "pln": ["(: cnet_isa_0afe5eef21 (IsA member_bank depository_financial_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "member of parliament is a kind of legislator", "pln": ["(: cnet_isa_e4b6a13607 (IsA member_of_parliament legislator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "membership is a kind of body", "pln": ["(: cnet_isa_c90399dde9 (IsA membership body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "membership is a kind of relationship", "pln": ["(: cnet_isa_0ec3321e9b (IsA membership relationship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "membership card is a kind of card", "pln": ["(: cnet_isa_00db814e71 (IsA membership_card card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "membracidae is a kind of arthropod family", "pln": ["(: cnet_isa_2633507cd2 (IsA membracidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "membrane is a kind of sheet", "pln": ["(: cnet_isa_0c94a5867b (IsA membrane sheet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "membrane is a kind of animal tissue", "pln": ["(: cnet_isa_161e5ea903 (IsA membrane animal_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "membrane bone is a kind of bone", "pln": ["(: cnet_isa_1eef27e945 (IsA membrane_bone bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "membranous labyrinth is a kind of structure", "pln": ["(: cnet_isa_45275e4bd4 (IsA membranous_labyrinth structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meme is a kind of acculturation", "pln": ["(: cnet_isa_30e2709bb2 (IsA meme acculturation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "memento is a kind of reminder", "pln": ["(: cnet_isa_2bb6f01d7a (IsA memento reminder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "memento mori is a kind of reminder", "pln": ["(: cnet_isa_641bcb4ca7 (IsA memento_mori reminder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "memo is a kind of note", "pln": ["(: cnet_isa_feb3c4d139 (IsA memo note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "memoir is a kind of autobiography", "pln": ["(: cnet_isa_f94aad23c5 (IsA memoir autobiography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "memoir is a kind of essay", "pln": ["(: cnet_isa_06523bd494 (IsA memoir essay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "memorabilia is a kind of record", "pln": ["(: cnet_isa_0645bdce88 (IsA memorabilia record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "memorability is a kind of quality", "pln": ["(: cnet_isa_272474a5fd (IsA memorability quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "memorial is a kind of structure", "pln": ["(: cnet_isa_ffda55cd4b (IsA memorial structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "memorial is a kind of message", "pln": ["(: cnet_isa_6b6bafae5b (IsA memorial message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "memorial is a kind of recognition", "pln": ["(: cnet_isa_ae07d117b5 (IsA memorial recognition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "memorial day is a kind of legal holiday", "pln": ["(: cnet_isa_a3ea1058ae (IsA memorial_day legal_holiday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "memorization is a kind of learning", "pln": ["(: cnet_isa_d75f0e09da (IsA memorization learning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "memorizer is a kind of learner", "pln": ["(: cnet_isa_8aa0733812 (IsA memorizer learner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "memory is a kind of hardware", "pln": ["(: cnet_isa_ad8e28919c (IsA memory hardware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "memory is a kind of memory device", "pln": ["(: cnet_isa_2d1fe1c5fc (IsA memory memory_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "memory is a kind of basic cognitive process", "pln": ["(: cnet_isa_4709361b22 (IsA memory basic_cognitive_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "memory is a kind of cognitive psychology", "pln": ["(: cnet_isa_739e12e47e (IsA memory cognitive_psychology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "memory is a kind of faculty", "pln": ["(: cnet_isa_c3b530be4f (IsA memory faculty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "memory is a kind of representation", "pln": ["(: cnet_isa_4462b08ae7 (IsA memory representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "memory chip is a kind of chip", "pln": ["(: cnet_isa_62be0db775 (IsA memory_chip chip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "memory device is a kind of device", "pln": ["(: cnet_isa_c0d113b4de (IsA memory_device device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "memory image is a kind of image", "pln": ["(: cnet_isa_f462149c4b (IsA memory_image image) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "memory picture is a kind of memory image", "pln": ["(: cnet_isa_c292ad8f7a (IsA memory_picture memory_image) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "memsahib is a kind of sahib", "pln": ["(: cnet_isa_fef260d296 (IsA memsahib sahib) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "men s room is a kind of public toilet", "pln": ["(: cnet_isa_bf4e46af7f (IsA men_s_room public_toilet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menace is a kind of threat", "pln": ["(: cnet_isa_6aa2f28691 (IsA menace threat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menace is a kind of danger", "pln": ["(: cnet_isa_76ac61cd1d (IsA menace danger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menage trois is a kind of family", "pln": ["(: cnet_isa_3c44ea8e16 (IsA menage_trois family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menagerie is a kind of facility", "pln": ["(: cnet_isa_81747dba32 (IsA menagerie facility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menagerie is a kind of collection", "pln": ["(: cnet_isa_14ccdc3e6a (IsA menagerie collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menarche is a kind of start", "pln": ["(: cnet_isa_ca050451a7 (IsA menarche start) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mend is a kind of sewing", "pln": ["(: cnet_isa_9441c3c838 (IsA mend sewing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mendacity is a kind of untruthfulness", "pln": ["(: cnet_isa_951e23d5de (IsA mendacity untruthfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mendel s law is a kind of law", "pln": ["(: cnet_isa_ab1e37bec5 (IsA mendel_s_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mendelevium is a kind of chemical element", "pln": ["(: cnet_isa_3817a6be0e (IsA mendelevium chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mendelian is a kind of follower", "pln": ["(: cnet_isa_fa926a6133 (IsA mendelian follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mendelism is a kind of theory of inheritance", "pln": ["(: cnet_isa_547d7c2da3 (IsA mendelism theory_of_inheritance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mender is a kind of skilled worker", "pln": ["(: cnet_isa_0f300ab84a (IsA mender skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mendicancy is a kind of indigence", "pln": ["(: cnet_isa_e1ddc39f53 (IsA mendicancy indigence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mending is a kind of garment", "pln": ["(: cnet_isa_3963c583b6 (IsA mending garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menhaden is a kind of clupeid fish", "pln": ["(: cnet_isa_4703d87d67 (IsA menhaden clupeid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menhaden oil is a kind of animal oil", "pln": ["(: cnet_isa_ff3c81fc45 (IsA menhaden_oil animal_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menhir is a kind of megalith", "pln": ["(: cnet_isa_b94a2a054b (IsA menhir megalith) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "menial is a kind of servant", "pln": ["(: cnet_isa_f1ac72fccb (IsA menial servant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meniere s disease is a kind of disease", "pln": ["(: cnet_isa_db5d384e48 (IsA meniere_s_disease disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meningeal artery is a kind of artery", "pln": ["(: cnet_isa_d391ab9a13 (IsA meningeal_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meningeal vein is a kind of vein", "pln": ["(: cnet_isa_27bc3063a9 (IsA meningeal_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "meningioma is a kind of tumor", "pln": ["(: cnet_isa_b22eaa170f (IsA meningioma tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "meningism is a kind of symptom", "pln": ["(: cnet_isa_1ffa970db4 (IsA meningism symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meningitis is a kind of infectious disease", "pln": ["(: cnet_isa_d3d0784e70 (IsA meningitis infectious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "meningocele is a kind of birth defect", "pln": ["(: cnet_isa_7c7a2158e1 (IsA meningocele birth_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meningoencephalitis is a kind of encephalitis", "pln": ["(: cnet_isa_1338540832 (IsA meningoencephalitis encephalitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meningoencephalitis is a kind of meningitis", "pln": ["(: cnet_isa_f790ac7705 (IsA meningoencephalitis meningitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "meninx is a kind of membrane", "pln": ["(: cnet_isa_ccbedc37f9 (IsA meninx membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menippe is a kind of arthropod genus", "pln": ["(: cnet_isa_cb4a6c8a47 (IsA menippe arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meniscectomy is a kind of ablation", "pln": ["(: cnet_isa_0fc2d0c5e9 (IsA meniscectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meniscium is a kind of fern genus", "pln": ["(: cnet_isa_534720c4fc (IsA meniscium fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meniscus is a kind of cartilage", "pln": ["(: cnet_isa_55085fe1bd (IsA meniscus cartilage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meniscus is a kind of len", "pln": ["(: cnet_isa_94f5797e7f (IsA meniscus len) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "meniscus is a kind of surface", "pln": ["(: cnet_isa_a9895e3f91 (IsA meniscus surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menispermaceae is a kind of magnoliid dicot family", "pln": ["(: cnet_isa_d61c828d94 (IsA menispermaceae magnoliid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menispermum is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_f646f75183 (IsA menispermum magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mennonite is a kind of anabaptist", "pln": ["(: cnet_isa_003e6be3a9 (IsA mennonite anabaptist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mennonite church is a kind of protestant denomination", "pln": ["(: cnet_isa_82a2d1306c (IsA mennonite_church protestant_denomination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mennonitism is a kind of protestantism", "pln": ["(: cnet_isa_f7da05cb80 (IsA mennonitism protestantism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meno mosso is a kind of tempo", "pln": ["(: cnet_isa_dbc750983a (IsA meno_mosso tempo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menominee is a kind of algonquin", "pln": ["(: cnet_isa_1c96fa79f6 (IsA menominee algonquin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menomini is a kind of algonquian", "pln": ["(: cnet_isa_49b46406c5 (IsA menomini algonquian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menopause is a kind of biological time", "pln": ["(: cnet_isa_0ff2a2064e (IsA menopause biological_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menopon is a kind of arthropod genus", "pln": ["(: cnet_isa_73690985a6 (IsA menopon arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menorah is a kind of candelabrum", "pln": ["(: cnet_isa_112467bb4a (IsA menorah candelabrum) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menorrhagia is a kind of menstruation", "pln": ["(: cnet_isa_62f12a6e18 (IsA menorrhagia menstruation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menorrhagia is a kind of symptom", "pln": ["(: cnet_isa_0684a0b0f3 (IsA menorrhagia symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menorrhea is a kind of blood", "pln": ["(: cnet_isa_429a6dc5b7 (IsA menorrhea blood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menotyphla is a kind of animal order", "pln": ["(: cnet_isa_03d67e864b (IsA menotyphla animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "men rea is a kind of planning", "pln": ["(: cnet_isa_bae11236e1 (IsA men_rea planning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mensch is a kind of good person", "pln": ["(: cnet_isa_a9f29ee810 (IsA mensch good_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menshevik is a kind of socialist", "pln": ["(: cnet_isa_f7d45a1e71 (IsA menshevik socialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menstrual cycle is a kind of cycle", "pln": ["(: cnet_isa_024c61ec1f (IsA menstrual_cycle cycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menstrual phase is a kind of phase", "pln": ["(: cnet_isa_8b0c56de86 (IsA menstrual_phase phase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menstruation is a kind of discharge", "pln": ["(: cnet_isa_c9e26b5998 (IsA menstruation discharge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menstruum is a kind of solvent", "pln": ["(: cnet_isa_bd70e668a5 (IsA menstruum solvent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mental abnormality is a kind of abnormality", "pln": ["(: cnet_isa_1c4354ff3d (IsA mental_abnormality abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mental age is a kind of age", "pln": ["(: cnet_isa_b020de0710 (IsA mental_age age) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mental anguish is a kind of pain", "pln": ["(: cnet_isa_5779f43584 (IsA mental_anguish pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mental dexterity is a kind of intelligence", "pln": ["(: cnet_isa_b2f14b17f9 (IsA mental_dexterity intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mental disorder is a kind of disorder", "pln": ["(: cnet_isa_2eda0742fc (IsA mental_disorder disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mental exhaustion is a kind of exhaustion", "pln": ["(: cnet_isa_3cda165492 (IsA mental_exhaustion exhaustion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mental health is a kind of health", "pln": ["(: cnet_isa_e74f309898 (IsA mental_health health) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mental health is a kind of psychological state", "pln": ["(: cnet_isa_b982a00cfa (IsA mental_health psychological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mental hospital is a kind of hospital", "pln": ["(: cnet_isa_ed9c113362 (IsA mental_hospital hospital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mental illness is a kind of psychological state", "pln": ["(: cnet_isa_d65d05b75f (IsA mental_illness psychological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mental measurement is a kind of measurement", "pln": ["(: cnet_isa_550084cb53 (IsA mental_measurement measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mental note is a kind of attention", "pln": ["(: cnet_isa_fcae8ee77e (IsA mental_note attention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mental picture is a kind of image", "pln": ["(: cnet_isa_6c7864f429 (IsA mental_picture image) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mental quickness is a kind of intelligence", "pln": ["(: cnet_isa_f711549fd8 (IsA mental_quickness intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mental reservation is a kind of doubt", "pln": ["(: cnet_isa_35bb6bb7d2 (IsA mental_reservation doubt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mental soundness is a kind of mental health", "pln": ["(: cnet_isa_bfbce7f155 (IsA mental_soundness mental_health) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mentalism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_dea27786f1 (IsA mentalism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mentality is a kind of attitude", "pln": ["(: cnet_isa_7e74ccf869 (IsA mentality attitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mentally retarded is a kind of people", "pln": ["(: cnet_isa_baf629c56a (IsA mentally_retarded people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mentha is a kind of asterid dicot genus", "pln": ["(: cnet_isa_0902aafe0a (IsA mentha asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menthol is a kind of lotion", "pln": ["(: cnet_isa_0ccc31c6bb (IsA menthol lotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menthol is a kind of compound", "pln": ["(: cnet_isa_fd4b517d2b (IsA menthol compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mentholated salve is a kind of ointment", "pln": ["(: cnet_isa_5011a0f26e (IsA mentholated_salve ointment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "menticirrhus is a kind of fish genus", "pln": ["(: cnet_isa_c4fac1b3d2 (IsA menticirrhus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mention is a kind of award", "pln": ["(: cnet_isa_8fde3c8329 (IsA mention award) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mention is a kind of remark", "pln": ["(: cnet_isa_9d644ce24b (IsA mention remark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mentioner is a kind of speaker", "pln": ["(: cnet_isa_d9aef364ee (IsA mentioner speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mentor is a kind of intellectual", "pln": ["(: cnet_isa_606ac5d259 (IsA mentor intellectual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mentum is a kind of body part", "pln": ["(: cnet_isa_e11ad54d4e (IsA mentum body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mentum is a kind of plant part", "pln": ["(: cnet_isa_a5e187825d (IsA mentum plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mentzelia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_0bc204ef35 (IsA mentzelia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menu is a kind of agenda", "pln": ["(: cnet_isa_a0791fd7a2 (IsA menu agenda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menu is a kind of bill", "pln": ["(: cnet_isa_944ac34242 (IsA menu bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menu is a kind of list", "pln": ["(: cnet_isa_96492a8bc1 (IsA menu list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menu is a kind of fare", "pln": ["(: cnet_isa_906b347854 (IsA menu fare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menura is a kind of bird genus", "pln": ["(: cnet_isa_22e7d14afe (IsA menura bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menurae is a kind of animal order", "pln": ["(: cnet_isa_67ef50372b (IsA menurae animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menuridae is a kind of bird family", "pln": ["(: cnet_isa_2e044ec13d (IsA menuridae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menyanthaceae is a kind of dicot family", "pln": ["(: cnet_isa_ae51106ab0 (IsA menyanthaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menyanthe is a kind of dicot genus", "pln": ["(: cnet_isa_5777ba0119 (IsA menyanthe dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "menziesia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_9230d721a8 (IsA menziesia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meow is a kind of cry", "pln": ["(: cnet_isa_55df0f53c0 (IsA meow cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mephitinae is a kind of mammal family", "pln": ["(: cnet_isa_ba407ca9b0 (IsA mephitinae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mephitis is a kind of mammal genus", "pln": ["(: cnet_isa_862fb221f8 (IsA mephitis mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mephitis is a kind of gas", "pln": ["(: cnet_isa_e1d959dc48 (IsA mephitis gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meralgia is a kind of pain", "pln": ["(: cnet_isa_1de4a2e48e (IsA meralgia pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mercalli scale is a kind of scale", "pln": ["(: cnet_isa_b5e98511a4 (IsA mercalli_scale scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mercantile agency is a kind of agency", "pln": ["(: cnet_isa_d0f686aa3a (IsA mercantile_agency agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mercantile establishment is a kind of place of business", "pln": ["(: cnet_isa_b1dd3d70f6 (IsA mercantile_establishment place_of_business) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mercantile law is a kind of law", "pln": ["(: cnet_isa_5a6a9d741e (IsA mercantile_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mercantilism is a kind of managed economy", "pln": ["(: cnet_isa_52abb020f2 (IsA mercantilism managed_economy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mercator projection is a kind of map projection", "pln": ["(: cnet_isa_3d062dfe87 (IsA mercator_projection map_projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mercenaria is a kind of mollusk genus", "pln": ["(: cnet_isa_c6fd27495e (IsA mercenaria mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mercenary is a kind of adventurer", "pln": ["(: cnet_isa_445ea64795 (IsA mercenary adventurer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mercer is a kind of trader", "pln": ["(: cnet_isa_f619d25955 (IsA mercer trader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "merchandise is a kind of commodity", "pln": ["(: cnet_isa_b6958ef9ae (IsA merchandise commodity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "merchant is a kind of businessperson", "pln": ["(: cnet_isa_2947447c2c (IsA merchant businessperson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "merchant bank is a kind of depository financial institution", "pln": ["(: cnet_isa_5e6363285c (IsA merchant_bank depository_financial_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "merchant marine is a kind of crew", "pln": ["(: cnet_isa_386a62ac23 (IsA merchant_marine crew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "merchantability is a kind of state", "pln": ["(: cnet_isa_055f12994b (IsA merchantability state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mercifulness is a kind of humaneness", "pln": ["(: cnet_isa_c0542151bb (IsA mercifulness humaneness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mercifulness is a kind of compassion", "pln": ["(: cnet_isa_28a205a91a (IsA mercifulness compassion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mercilessness is a kind of inhumaneness", "pln": ["(: cnet_isa_b6bb570a76 (IsA mercilessness inhumaneness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mercurial ointment is a kind of ointment", "pln": ["(: cnet_isa_ffe30ee976 (IsA mercurial_ointment ointment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mercurialis is a kind of rosid dicot genus", "pln": ["(: cnet_isa_63eb0a1b06 (IsA mercurialis rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mercuric chloride is a kind of sublimate", "pln": ["(: cnet_isa_3eb6fe4a40 (IsA mercuric_chloride sublimate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mercury is a kind of element", "pln": ["(: cnet_isa_4f4c4cf9c9 (IsA mercury element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mercury is a kind of liquid at room temperature", "pln": ["(: cnet_isa_4dd638aef9 (IsA mercury liquid_at_room_temperature) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mercury is a kind of liquid metal", "pln": ["(: cnet_isa_0c148378bc (IsA mercury liquid_metal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mercury is a kind of metal", "pln": ["(: cnet_isa_6fe10f2aac (IsA mercury metal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mercury is a kind of only metal", "pln": ["(: cnet_isa_097e403fde (IsA mercury only_metal) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mercury is a kind of planet", "pln": ["(: cnet_isa_b4a9fa99c3 (IsA mercury planet) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mercury is a kind of temperature", "pln": ["(: cnet_isa_1a324963f2 (IsA mercury temperature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mercury is a kind of metallic element", "pln": ["(: cnet_isa_aad05252c7 (IsA mercury metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mercury barometer is a kind of barometer", "pln": ["(: cnet_isa_ddbb13926a (IsA mercury_barometer barometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mercury cell is a kind of voltaic cell", "pln": ["(: cnet_isa_492a4098a3 (IsA mercury_cell voltaic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mercury fulminate is a kind of fulminate", "pln": ["(: cnet_isa_38a0b9001a (IsA mercury_fulminate fulminate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mercury poisoning is a kind of poisoning", "pln": ["(: cnet_isa_c3d3e589d7 (IsA mercury_poisoning poisoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mercury thermometer is a kind of thermometer", "pln": ["(: cnet_isa_0fa7c5d537 (IsA mercury_thermometer thermometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mercury vapor lamp is a kind of ultraviolet lamp", "pln": ["(: cnet_isa_0e13646568 (IsA mercury_vapor_lamp ultraviolet_lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mercy is a kind of relief", "pln": ["(: cnet_isa_98e8893ca2 (IsA mercy relief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mercy is a kind of blessing", "pln": ["(: cnet_isa_266230da23 (IsA mercy blessing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mercy seat is a kind of covering", "pln": ["(: cnet_isa_923240b2fa (IsA mercy_seat covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mercy seat is a kind of throne", "pln": ["(: cnet_isa_e5082ed0d3 (IsA mercy_seat throne) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mere is a kind of pond", "pln": ["(: cnet_isa_77c3a589b2 (IsA mere pond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "merestone is a kind of landmark", "pln": ["(: cnet_isa_957e5384fa (IsA merestone landmark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "merganser is a kind of sea duck", "pln": ["(: cnet_isa_55fce70241 (IsA merganser sea_duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "merger agreement is a kind of contract", "pln": ["(: cnet_isa_8de6d0e4b8 (IsA merger_agreement contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "merginae is a kind of bird family", "pln": ["(: cnet_isa_5c255f18f0 (IsA merginae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "merging is a kind of convergence", "pln": ["(: cnet_isa_4a8a9f7f84 (IsA merging convergence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mergus is a kind of bird genus", "pln": ["(: cnet_isa_abf4b02487 (IsA mergus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mericarp is a kind of carpel", "pln": ["(: cnet_isa_e7b7299487 (IsA mericarp carpel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meridian is a kind of great circle", "pln": ["(: cnet_isa_7273cf5b5c (IsA meridian great_circle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meringue is a kind of topping", "pln": ["(: cnet_isa_10c220cb9a (IsA meringue topping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meringue kiss is a kind of kiss", "pln": ["(: cnet_isa_925e0ef20c (IsA meringue_kiss kiss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "merino is a kind of domestic sheep", "pln": ["(: cnet_isa_b0bce767bb (IsA merino domestic_sheep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "merione is a kind of mammal genus", "pln": ["(: cnet_isa_b86bc90255 (IsA merione mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meristem is a kind of plant tissue", "pln": ["(: cnet_isa_c9fcd8160f (IsA meristem plant_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "merit is a kind of worth", "pln": ["(: cnet_isa_ffb93317b9 (IsA merit worth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "merit badge is a kind of badge", "pln": ["(: cnet_isa_9d57af3586 (IsA merit_badge badge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "merit pay is a kind of wage", "pln": ["(: cnet_isa_d3135cb700 (IsA merit_pay wage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "merit system is a kind of system", "pln": ["(: cnet_isa_e90b7615fc (IsA merit_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meritocracy is a kind of political orientation", "pln": ["(: cnet_isa_3f9d522333 (IsA meritocracy political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meritocracy is a kind of social organization", "pln": ["(: cnet_isa_8bb3dd4482 (IsA meritocracy social_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "merlangus is a kind of fish genus", "pln": ["(: cnet_isa_c9a531db15 (IsA merlangus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "merlon is a kind of rampart", "pln": ["(: cnet_isa_0514282d57 (IsA merlon rampart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "merlot is a kind of red wine", "pln": ["(: cnet_isa_c0a9c2afad (IsA merlot red_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "merlot is a kind of vinifera", "pln": ["(: cnet_isa_b9b0878309 (IsA merlot vinifera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "merluccius is a kind of fish genus", "pln": ["(: cnet_isa_b04b975d09 (IsA merluccius fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mermaid is a kind of imaginary being", "pln": ["(: cnet_isa_3fb8fc5d43 (IsA mermaid imaginary_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "merman is a kind of imaginary being", "pln": ["(: cnet_isa_406536039f (IsA merman imaginary_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "meromelia is a kind of birth defect", "pln": ["(: cnet_isa_b9b274cb9d (IsA meromelia birth_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meronym is a kind of word", "pln": ["(: cnet_isa_4c8c14099b (IsA meronym word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meronymy is a kind of semantic relation", "pln": ["(: cnet_isa_1acefed7d7 (IsA meronymy semantic_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "meropidae is a kind of bird family", "pln": ["(: cnet_isa_a0d8bb530e (IsA meropidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "merops is a kind of bird genus", "pln": ["(: cnet_isa_c955c65f6b (IsA merops bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "merop is a kind of bird genus", "pln": ["(: cnet_isa_1f9266f219 (IsA merop bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "merostomata is a kind of arthropod", "pln": ["(: cnet_isa_4c258c5e39 (IsA merostomata arthropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "merovingian is a kind of dynasty", "pln": ["(: cnet_isa_6f1a5a7b59 (IsA merovingian dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "merovingian is a kind of sovereign", "pln": ["(: cnet_isa_691bc76814 (IsA merovingian sovereign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "merozoite is a kind of sporozoan", "pln": ["(: cnet_isa_4558457947 (IsA merozoite sporozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "merry go round is a kind of cycle", "pln": ["(: cnet_isa_612ec878f5 (IsA merry_go_round cycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "merrymaking is a kind of celebration", "pln": ["(: cnet_isa_eb1491bb7d (IsA merrymaking celebration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mertensia is a kind of plant genus", "pln": ["(: cnet_isa_b3e9b317ca (IsA mertensia plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meryta is a kind of rosid dicot genus", "pln": ["(: cnet_isa_13ca80206c (IsA meryta rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mesa is a kind of tableland", "pln": ["(: cnet_isa_2bb04f7b67 (IsA mesa tableland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mesalliance is a kind of misalliance", "pln": ["(: cnet_isa_8206eef9a8 (IsA mesalliance misalliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mesasamkranti is a kind of holiday", "pln": ["(: cnet_isa_80c5a02fc8 (IsA mesasamkranti holiday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mescal is a kind of liquor", "pln": ["(: cnet_isa_208ee1d7d1 (IsA mescal liquor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "meshugaas is a kind of folly", "pln": ["(: cnet_isa_31a0ef5baf (IsA meshugaas folly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mescal is a kind of cactus", "pln": ["(: cnet_isa_b84fa51c94 (IsA mescal cactus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mescal bean is a kind of tree", "pln": ["(: cnet_isa_88cfc9d095 (IsA mescal_bean tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mescal button is a kind of plant organ", "pln": ["(: cnet_isa_c0e26ddab8 (IsA mescal_button plant_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mescaline is a kind of hallucinogen", "pln": ["(: cnet_isa_e36296a2a6 (IsA mescaline hallucinogen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mesembryanthemum is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_2c08c7b172 (IsA mesembryanthemum caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mesenchyme is a kind of mesoderm", "pln": ["(: cnet_isa_b8e3374fcc (IsA mesenchyme mesoderm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mesenteric artery is a kind of artery", "pln": ["(: cnet_isa_3b6d8a2b6d (IsA mesenteric_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mesenteric plexus is a kind of nerve plexus", "pln": ["(: cnet_isa_c633556885 (IsA mesenteric_plexus nerve_plexus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mesenteric vein is a kind of vein", "pln": ["(: cnet_isa_f4210600e7 (IsA mesenteric_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mesentery is a kind of peritoneum", "pln": ["(: cnet_isa_dce5c7eae2 (IsA mesentery peritoneum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mesh is a kind of catch", "pln": ["(: cnet_isa_c89add8671 (IsA mesh catch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mesh is a kind of linear unit", "pln": ["(: cnet_isa_e5726cc32e (IsA mesh linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mesh topology is a kind of topology", "pln": ["(: cnet_isa_d229a67883 (IsA mesh_topology topology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meshugaa is a kind of folly", "pln": ["(: cnet_isa_fc7c6ae5bd (IsA meshugaa folly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meshuggeneh is a kind of fool", "pln": ["(: cnet_isa_6ecab361d1 (IsA meshuggeneh fool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mesne lord is a kind of nobleman", "pln": ["(: cnet_isa_a4b1627208 (IsA mesne_lord nobleman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mesoamerican is a kind of american", "pln": ["(: cnet_isa_9d5f7fa131 (IsA mesoamerican american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mesocarp is a kind of pericarp", "pln": ["(: cnet_isa_8248c01b23 (IsA mesocarp pericarp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mesocolon is a kind of mesentery", "pln": ["(: cnet_isa_4ccaae1174 (IsA mesocolon mesentery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mesocricetus is a kind of mammal genus", "pln": ["(: cnet_isa_663f18013d (IsA mesocricetus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mesoderm is a kind of germ layer", "pln": ["(: cnet_isa_e9bb762841 (IsA mesoderm germ_layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mesohippus is a kind of horse", "pln": ["(: cnet_isa_991dce8689 (IsA mesohippus horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mesomorph is a kind of person", "pln": ["(: cnet_isa_6872f58ec4 (IsA mesomorph person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meson is a kind of boson", "pln": ["(: cnet_isa_eccedb8504 (IsA meson boson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meson is a kind of hadron", "pln": ["(: cnet_isa_b873311826 (IsA meson hadron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mesophyte is a kind of vascular plant", "pln": ["(: cnet_isa_9ba3c01cc7 (IsA mesophyte vascular_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mesosphere is a kind of layer", "pln": ["(: cnet_isa_6218817e5a (IsA mesosphere layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mesothelioma is a kind of carcinoma", "pln": ["(: cnet_isa_f1aa7e9876 (IsA mesothelioma carcinoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mesothelium is a kind of epithelium", "pln": ["(: cnet_isa_6f99a72263 (IsA mesothelium epithelium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mespilus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_9fe048fe61 (IsA mespilus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mesquite is a kind of shrub", "pln": ["(: cnet_isa_42fa68f582 (IsA mesquite shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mesquite gum is a kind of gum", "pln": ["(: cnet_isa_fab948b179 (IsA mesquite_gum gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mess is a kind of meal", "pln": ["(: cnet_isa_1c8d6b38cf (IsA mess meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mess is a kind of nutriment", "pln": ["(: cnet_isa_ed49e2aecc (IsA mess nutriment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mess is a kind of dining room", "pln": ["(: cnet_isa_d8edf384f8 (IsA mess dining_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mess is a kind of disorderliness", "pln": ["(: cnet_isa_99f53214b3 (IsA mess disorderliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mess jacket is a kind of jacket", "pln": ["(: cnet_isa_64e4c9901c (IsA mess_jacket jacket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mess kit is a kind of kit", "pln": ["(: cnet_isa_f4b03a65c3 (IsA mess_kit kit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mess of pottage is a kind of value", "pln": ["(: cnet_isa_7df3d53323 (IsA mess_of_pottage value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "message is a kind of communication", "pln": ["(: cnet_isa_1b8cd6c3a8 (IsA message communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "message pad is a kind of pad", "pln": ["(: cnet_isa_075f7d541f (IsA message_pad pad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "messaging is a kind of electronic communication", "pln": ["(: cnet_isa_8eeb3aed07 (IsA messaging electronic_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "messenger is a kind of traveler", "pln": ["(: cnet_isa_338bca7b34 (IsA messenger traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "messenger boy is a kind of messenger", "pln": ["(: cnet_isa_c3c0a49413 (IsA messenger_boy messenger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "messenger rna is a kind of ribonucleic acid", "pln": ["(: cnet_isa_36cd5d2938 (IsA messenger_rna ribonucleic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "messiah is a kind of savior", "pln": ["(: cnet_isa_8b633434b2 (IsA messiah savior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "messiahship is a kind of position", "pln": ["(: cnet_isa_e0736ce5f3 (IsA messiahship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "messidor is a kind of revolutionary calendar month", "pln": ["(: cnet_isa_1f63d92319 (IsA messidor revolutionary_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "messmate is a kind of acquaintance", "pln": ["(: cnet_isa_955c8ec5ca (IsA messmate acquaintance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "messuage is a kind of dwelling", "pln": ["(: cnet_isa_bcba52ab31 (IsA messuage dwelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mestiza is a kind of woman", "pln": ["(: cnet_isa_75fc842c61 (IsA mestiza woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mestizo is a kind of person", "pln": ["(: cnet_isa_5d9336db4f (IsA mestizo person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mesua is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_2abb2c87c3 (IsA mesua dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "metabolic acidosis is a kind of acidosis", "pln": ["(: cnet_isa_5b168ce3c2 (IsA metabolic_acidosis acidosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metabolic alkalosis is a kind of alkalosis", "pln": ["(: cnet_isa_25df8fbf4c (IsA metabolic_alkalosis alkalosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metabolic disorder is a kind of disorder", "pln": ["(: cnet_isa_9afdabbb41 (IsA metabolic_disorder disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metabolic rate is a kind of rate", "pln": ["(: cnet_isa_8a536a3053 (IsA metabolic_rate rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "metabolism is a kind of organic process", "pln": ["(: cnet_isa_dfa8ef9599 (IsA metabolism organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metabolite is a kind of substance", "pln": ["(: cnet_isa_95b4bfcc85 (IsA metabolite substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "metacarpal is a kind of bone", "pln": ["(: cnet_isa_fcbcd74ec5 (IsA metacarpal bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "metacarpal artery is a kind of artery", "pln": ["(: cnet_isa_28ce4fadcb (IsA metacarpal_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metacarpal vein is a kind of vein", "pln": ["(: cnet_isa_b54ce3ed6b (IsA metacarpal_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metacarpus is a kind of skeletal structure", "pln": ["(: cnet_isa_7c349cc41d (IsA metacarpus skeletal_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metacenter is a kind of intersection", "pln": ["(: cnet_isa_120c64ae78 (IsA metacenter intersection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metacentric chromosome is a kind of chromosome", "pln": ["(: cnet_isa_f013ba44ca (IsA metacentric_chromosome chromosome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metadata is a kind of data", "pln": ["(: cnet_isa_9953d3e7dd (IsA metadata data) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metagenesis is a kind of alternation of generation", "pln": ["(: cnet_isa_a4725c2eb4 (IsA metagenesis alternation_of_generation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "metaknowledge is a kind of content", "pln": ["(: cnet_isa_1f8e02bcc6 (IsA metaknowledge content) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metal is a kind of conductor", "pln": ["(: cnet_isa_8a68cfc6d8 (IsA metal conductor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metal is a kind of music", "pln": ["(: cnet_isa_985c43424f (IsA metal music) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metal is a kind of music style", "pln": ["(: cnet_isa_afbfd6af6f (IsA metal music_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metal detector is a kind of detector", "pln": ["(: cnet_isa_7724f8413b (IsA metal_detector detector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metal filing is a kind of filing", "pln": ["(: cnet_isa_6abcda9123 (IsA metal_filing filing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metal screw is a kind of screw", "pln": ["(: cnet_isa_4708efe8c8 (IsA metal_screw screw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metal wood is a kind of wood", "pln": ["(: cnet_isa_f5bf0e682f (IsA metal_wood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metalanguage is a kind of language", "pln": ["(: cnet_isa_ae02e7d9ce (IsA metalanguage language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metalepsis is a kind of metonymy", "pln": ["(: cnet_isa_857045f7be (IsA metalepsis metonymy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metalhead is a kind of fan", "pln": ["(: cnet_isa_938e7f7049 (IsA metalhead fan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metallic is a kind of fabric", "pln": ["(: cnet_isa_6fc292c8a9 (IsA metallic fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metallic is a kind of thread", "pln": ["(: cnet_isa_b15b60919f (IsA metallic thread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metallic bond is a kind of chemical bond", "pln": ["(: cnet_isa_868a532848 (IsA metallic_bond chemical_bond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "metallic element is a kind of chemical element", "pln": ["(: cnet_isa_d5ee3ffecf (IsA metallic_element chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metallized dye is a kind of acid dye", "pln": ["(: cnet_isa_1d4177b483 (IsA metallized_dye acid_dye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metallurgist is a kind of engineer", "pln": ["(: cnet_isa_0144e3d45e (IsA metallurgist engineer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metallurgy is a kind of science", "pln": ["(: cnet_isa_ebd8de3003 (IsA metallurgy science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metalware is a kind of ware", "pln": ["(: cnet_isa_480d31dd76 (IsA metalware ware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metalwork is a kind of work", "pln": ["(: cnet_isa_7d78b14708 (IsA metalwork work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "metalworking is a kind of formation", "pln": ["(: cnet_isa_f5885747dd (IsA metalworking formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "metaphase cell is a kind of cell chromosomes duplicated", "pln": ["(: cnet_isa_6504e0830e (IsA metaphase_cell cell_chromosomes_duplicated) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metamathematic is a kind of pure mathematic", "pln": ["(: cnet_isa_1792f42811 (IsA metamathematic pure_mathematic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metamere is a kind of segment", "pln": ["(: cnet_isa_0e658444dc (IsA metamere segment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metamorphic rock is a kind of rock", "pln": ["(: cnet_isa_b2a01312f2 (IsA metamorphic_rock rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metamorphism is a kind of geological process", "pln": ["(: cnet_isa_3a8b32eb4c (IsA metamorphism geological_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metamorphopsia is a kind of visual impairment", "pln": ["(: cnet_isa_5d0450e1cb (IsA metamorphopsia visual_impairment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metamorphosis is a kind of transformation", "pln": ["(: cnet_isa_f14ff719e6 (IsA metamorphosis transformation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metamorphosis is a kind of organic process", "pln": ["(: cnet_isa_145106ba92 (IsA metamorphosis organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metaphase is a kind of phase of cell division", "pln": ["(: cnet_isa_77d28d82bb (IsA metaphase phase_of_cell_division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metaphase cell is a kind of anucleated cell", "pln": ["(: cnet_isa_ee0ba8b2af (IsA metaphase_cell anucleated_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metaphase cell is a kind of cell chromosome duplicated", "pln": ["(: cnet_isa_2f0ffb4ee7 (IsA metaphase_cell cell_chromosome_duplicated) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metaphase cell is a kind of cell undergoing meiosis", "pln": ["(: cnet_isa_a2c7b6c33a (IsA metaphase_cell cell_undergoing_meiosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metaphase cell is a kind of eukaryotic cell", "pln": ["(: cnet_isa_2d11fa130e (IsA metaphase_cell eukaryotic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metaphor is a kind of trope", "pln": ["(: cnet_isa_bb98f66278 (IsA metaphor trope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metaphosphoric acid is a kind of polyphosphoric acid", "pln": ["(: cnet_isa_e504550373 (IsA metaphosphoric_acid polyphosphoric_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metaphysical belief is a kind of belief", "pln": ["(: cnet_isa_1b32373ff0 (IsA metaphysical_belief belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metaphysic is a kind of philosophy", "pln": ["(: cnet_isa_49abf8b2cd (IsA metaphysic philosophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metaphysis is a kind of process", "pln": ["(: cnet_isa_b233a2dca8 (IsA metaphysis process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metaplastic anemia is a kind of pernicious anemia", "pln": ["(: cnet_isa_8d6891a128 (IsA metaplastic_anemia pernicious_anemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metarule is a kind of rule", "pln": ["(: cnet_isa_1aed774842 (IsA metarule rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metasequoia is a kind of conifer", "pln": ["(: cnet_isa_2ab6ada0a2 (IsA metasequoia conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "metastability is a kind of constancy", "pln": ["(: cnet_isa_7bac9c40a0 (IsA metastability constancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metastasis is a kind of pathologic process", "pln": ["(: cnet_isa_6ea55091fc (IsA metastasis pathologic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metatarsal is a kind of bone", "pln": ["(: cnet_isa_80b82b881a (IsA metatarsal bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metatarsal arch is a kind of arch", "pln": ["(: cnet_isa_93a9e16ef7 (IsA metatarsal_arch arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "metatarsal artery is a kind of artery", "pln": ["(: cnet_isa_a14b41c4d2 (IsA metatarsal_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metatarsal vein is a kind of vein", "pln": ["(: cnet_isa_1cd0fbffdb (IsA metatarsal_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metatarsus is a kind of skeletal structure", "pln": ["(: cnet_isa_0a08f6b6eb (IsA metatarsus skeletal_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metatheria is a kind of class", "pln": ["(: cnet_isa_696f8c0485 (IsA metatheria class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metatherian is a kind of mammal", "pln": ["(: cnet_isa_d2fde75515 (IsA metatherian mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metathesis is a kind of linguistic process", "pln": ["(: cnet_isa_43ca1c1248 (IsA metathesis linguistic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metazoa is a kind of subkingdom", "pln": ["(: cnet_isa_fdd1339e00 (IsA metazoa subkingdom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metazoan is a kind of animal", "pln": ["(: cnet_isa_dbe1249b99 (IsA metazoan animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metempsychosis is a kind of phenomenon", "pln": ["(: cnet_isa_e711af9c5f (IsA metempsychosis phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metencephalon is a kind of hindbrain", "pln": ["(: cnet_isa_f342279c78 (IsA metencephalon hindbrain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meteor is a kind of meteoroid", "pln": ["(: cnet_isa_e0ce3dc527 (IsA meteor meteoroid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meteor is a kind of light", "pln": ["(: cnet_isa_74289496e6 (IsA meteor light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meteor shower is a kind of atmospheric phenomenon", "pln": ["(: cnet_isa_0544109cd3 (IsA meteor_shower atmospheric_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meteor swarm is a kind of meteoroid", "pln": ["(: cnet_isa_8052ff01ff (IsA meteor_swarm meteoroid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "meteorite is a kind of meteor", "pln": ["(: cnet_isa_ebf2148bba (IsA meteorite meteor) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meteorite is a kind of meteoroid", "pln": ["(: cnet_isa_3b9aa58a3d (IsA meteorite meteoroid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meteoroid is a kind of extraterrestrial object", "pln": ["(: cnet_isa_1633d9ee3e (IsA meteoroid extraterrestrial_object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meteorological balloon is a kind of balloon", "pln": ["(: cnet_isa_8a8266c3b8 (IsA meteorological_balloon balloon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meteorological condition is a kind of environmental condition", "pln": ["(: cnet_isa_2bd70e1906 (IsA meteorological_condition environmental_condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meteorological observation post is a kind of lookout", "pln": ["(: cnet_isa_d12c1b1096 (IsA meteorological_observation_post lookout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meteorologist is a kind of specialist", "pln": ["(: cnet_isa_d68b0cae51 (IsA meteorologist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meteorology is a kind of earth science", "pln": ["(: cnet_isa_cd0896dc36 (IsA meteorology earth_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meteorology is a kind of prediction", "pln": ["(: cnet_isa_29d6578d3f (IsA meteorology prediction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meteortropism is a kind of tropism", "pln": ["(: cnet_isa_0763b10787 (IsA meteortropism tropism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meter is a kind of measuring instrument", "pln": ["(: cnet_isa_735627273f (IsA meter measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meter is a kind of rhythmicity", "pln": ["(: cnet_isa_133b586a89 (IsA meter rhythmicity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meter is a kind of poetic rhythm", "pln": ["(: cnet_isa_208ba2d920 (IsA meter poetic_rhythm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "meter is a kind of metric linear unit", "pln": ["(: cnet_isa_11120e7f84 (IsA meter metric_linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meter maid is a kind of police matron", "pln": ["(: cnet_isa_17c0b3576d (IsA meter_maid police_matron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meterstick is a kind of rule", "pln": ["(: cnet_isa_f5dc2b90da (IsA meterstick rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methacrylic acid is a kind of acid", "pln": ["(: cnet_isa_3e6530848c (IsA methacrylic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methadone is a kind of narcotic", "pln": ["(: cnet_isa_f6f9f2362f (IsA methadone narcotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methamphetamine is a kind of amphetamine", "pln": ["(: cnet_isa_5c88c3bb9a (IsA methamphetamine amphetamine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methamphetamine is a kind of controlled substance", "pln": ["(: cnet_isa_7e54024a8f (IsA methamphetamine controlled_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methane is a kind of alkane", "pln": ["(: cnet_isa_c48a07cb26 (IsA methane alkane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methane is a kind of gas", "pln": ["(: cnet_isa_4291a26bae (IsA methane gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methane is a kind of methane sery", "pln": ["(: cnet_isa_d3dcf0fbd2 (IsA methane methane_sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methane gas is a kind of greenhouse gas", "pln": ["(: cnet_isa_517c0b87fd (IsA methane_gas greenhouse_gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methane sery is a kind of aliphatic compound", "pln": ["(: cnet_isa_a97c4da013 (IsA methane_sery aliphatic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methanogen is a kind of organism", "pln": ["(: cnet_isa_f3c04e5742 (IsA methanogen organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methanogen is a kind of archaebacteria", "pln": ["(: cnet_isa_04563c6ab3 (IsA methanogen archaebacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methanol is a kind of alcohol", "pln": ["(: cnet_isa_ad127cfd75 (IsA methanol alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methanol is a kind of fuel", "pln": ["(: cnet_isa_5d6ae7e740 (IsA methanol fuel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methapyrilene is a kind of antihistamine", "pln": ["(: cnet_isa_7ac0e9651d (IsA methapyrilene antihistamine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metheglin is a kind of mead", "pln": ["(: cnet_isa_5fef0a4f23 (IsA metheglin mead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methicillin is a kind of penicillin", "pln": ["(: cnet_isa_7ea78d777e (IsA methicillin penicillin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methionine is a kind of essential amino acid", "pln": ["(: cnet_isa_ec4fd733be (IsA methionine essential_amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "method is a kind of know how", "pln": ["(: cnet_isa_561bfd0509 (IsA method know_how) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "method acting is a kind of acting", "pln": ["(: cnet_isa_877ef10eb3 (IsA method_acting acting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "method of choice is a kind of method", "pln": ["(: cnet_isa_5a415349ba (IsA method_of_choice method) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methodism is a kind of protestantism", "pln": ["(: cnet_isa_1c94e83a2d (IsA methodism protestantism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methodist is a kind of protestant", "pln": ["(: cnet_isa_f39f91c0cc (IsA methodist protestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methodist church is a kind of protestant denomination", "pln": ["(: cnet_isa_ef67dec7ff (IsA methodist_church protestant_denomination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methodist denomination is a kind of protestant denomination", "pln": ["(: cnet_isa_e7dda4b260 (IsA methodist_denomination protestant_denomination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methodology is a kind of epistemology", "pln": ["(: cnet_isa_39b138b091 (IsA methodology epistemology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methodology is a kind of method", "pln": ["(: cnet_isa_e245fd9f1b (IsA methodology method) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "methotrexate is a kind of antimetabolite", "pln": ["(: cnet_isa_be536eb104 (IsA methotrexate antimetabolite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methotrexate is a kind of immunosuppressant", "pln": ["(: cnet_isa_c0124463c2 (IsA methotrexate immunosuppressant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "methyl is a kind of alkyl", "pln": ["(: cnet_isa_7106b79bad (IsA methyl alkyl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "methyl bromide is a kind of bromide", "pln": ["(: cnet_isa_af2bc90c89 (IsA methyl_bromide bromide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methyl orange is a kind of acid base indicator", "pln": ["(: cnet_isa_094c73566c (IsA methyl_orange acid_base_indicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methyl orange is a kind of azo dye", "pln": ["(: cnet_isa_b85f0e040b (IsA methyl_orange azo_dye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "methyl salicylate is a kind of salicylate", "pln": ["(: cnet_isa_da4851846c (IsA methyl_salicylate salicylate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methylated spirit is a kind of denatured alcohol", "pln": ["(: cnet_isa_2af6991df1 (IsA methylated_spirit denatured_alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methylene blue is a kind of stain", "pln": ["(: cnet_isa_3fc73ca497 (IsA methylene_blue stain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methylene blue is a kind of thiazine", "pln": ["(: cnet_isa_902b1d136b (IsA methylene_blue thiazine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methylene chloride is a kind of chloride", "pln": ["(: cnet_isa_dd274b29a4 (IsA methylene_chloride chloride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methylene group is a kind of group", "pln": ["(: cnet_isa_0264220cb2 (IsA methylene_group group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methylenedioxymethamphetamine is a kind of club drug", "pln": ["(: cnet_isa_36fff5fb0a (IsA methylenedioxymethamphetamine club_drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "methyltestosterone is a kind of androgen", "pln": ["(: cnet_isa_bae80fbfb3 (IsA methyltestosterone androgen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metic is a kind of foreigner", "pln": ["(: cnet_isa_01b7b8e755 (IsA metic foreigner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metical is a kind of mozambique monetary unit", "pln": ["(: cnet_isa_94da470d35 (IsA metical mozambique_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meticulousness is a kind of conscientiousness", "pln": ["(: cnet_isa_3e06270e3a (IsA meticulousness conscientiousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metier is a kind of occupation", "pln": ["(: cnet_isa_709287406a (IsA metier occupation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "metis is a kind of mixed blood", "pln": ["(: cnet_isa_f0a680c839 (IsA metis mixed_blood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metonym is a kind of word", "pln": ["(: cnet_isa_0fa5ecbe96 (IsA metonym word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metonymy is a kind of trope", "pln": ["(: cnet_isa_4698ef9dcc (IsA metonymy trope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metopion is a kind of craniometric point", "pln": ["(: cnet_isa_67179c02d5 (IsA metopion craniometric_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metralgia is a kind of pain", "pln": ["(: cnet_isa_842f94225f (IsA metralgia pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metrazol shock is a kind of shock therapy", "pln": ["(: cnet_isa_c3c32f156b (IsA metrazol_shock shock_therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "metric capacity unit is a kind of metric unit", "pln": ["(: cnet_isa_729633c892 (IsA metric_capacity_unit metric_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metric capacity unit is a kind of volume unit", "pln": ["(: cnet_isa_d130a25575 (IsA metric_capacity_unit volume_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "metric function is a kind of mapping", "pln": ["(: cnet_isa_588d80c0b5 (IsA metric_function mapping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metric linear unit is a kind of linear unit", "pln": ["(: cnet_isa_0c9b0d2660 (IsA metric_linear_unit linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metric linear unit is a kind of metric unit", "pln": ["(: cnet_isa_2bcc615a84 (IsA metric_linear_unit metric_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "metric space is a kind of mathematical space", "pln": ["(: cnet_isa_6fd2b34552 (IsA metric_space mathematical_space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metric system is a kind of system of weight and measure", "pln": ["(: cnet_isa_27c742b7f0 (IsA metric_system system_of_weight_and_measure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metric ton is a kind of metric weight unit", "pln": ["(: cnet_isa_94db346597 (IsA metric_ton metric_weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "metric unit is a kind of unit of measurement", "pln": ["(: cnet_isa_4396fb677a (IsA metric_unit unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "metric weight unit is a kind of mass unit", "pln": ["(: cnet_isa_51e7738dd3 (IsA metric_weight_unit mass_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metric weight unit is a kind of metric unit", "pln": ["(: cnet_isa_fc6c4e8980 (IsA metric_weight_unit metric_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metrical foot is a kind of meter", "pln": ["(: cnet_isa_3054be20bd (IsA metrical_foot meter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metrification is a kind of change", "pln": ["(: cnet_isa_b07b5d8caa (IsA metrification change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metrification is a kind of writing", "pln": ["(: cnet_isa_9e026a072a (IsA metrification writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metritis is a kind of inflammation", "pln": ["(: cnet_isa_0d92470747 (IsA metritis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metro is a kind of railway", "pln": ["(: cnet_isa_b4515ac1f1 (IsA metro railway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "metrology is a kind of science", "pln": ["(: cnet_isa_a8ea490fab (IsA metrology science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metronome is a kind of pendulum", "pln": ["(: cnet_isa_3e426b7498 (IsA metronome pendulum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metropolitan is a kind of archbishop", "pln": ["(: cnet_isa_d603773938 (IsA metropolitan archbishop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metropolitan is a kind of resident", "pln": ["(: cnet_isa_bd1647012b (IsA metropolitan resident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metroptosis is a kind of prolapse", "pln": ["(: cnet_isa_81c8f707a3 (IsA metroptosis prolapse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metrorrhagia is a kind of bleeding", "pln": ["(: cnet_isa_5262844a29 (IsA metrorrhagia bleeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "metroxylon is a kind of monocot genus", "pln": ["(: cnet_isa_9731fed052 (IsA metroxylon monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mettlesomeness is a kind of high spiritedness", "pln": ["(: cnet_isa_960d4a52d7 (IsA mettlesomeness high_spiritedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "meuniere butter is a kind of butter", "pln": ["(: cnet_isa_cfc84f68b6 (IsA meuniere_butter butter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mew is a kind of gull", "pln": ["(: cnet_isa_9069f1b1b8 (IsA mew gull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mew is a kind of street", "pln": ["(: cnet_isa_d8a0576023 (IsA mew street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mexican is a kind of central american", "pln": ["(: cnet_isa_1f1f9170fc (IsA mexican central_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mexican bean beetle is a kind of ladybug", "pln": ["(: cnet_isa_d50baede3c (IsA mexican_bean_beetle ladybug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mexican cypress is a kind of cypress", "pln": ["(: cnet_isa_1241b15b5c (IsA mexican_cypress cypress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mexican hairless is a kind of dog", "pln": ["(: cnet_isa_245ec16e92 (IsA mexican_hairless dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mexican hat is a kind of coneflower", "pln": ["(: cnet_isa_b67ae2ad04 (IsA mexican_hat coneflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mexican hyssop is a kind of giant hyssop", "pln": ["(: cnet_isa_6fe9544964 (IsA mexican_hyssop giant_hyssop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mexican juniper is a kind of juniper", "pln": ["(: cnet_isa_606804aa86 (IsA mexican_juniper juniper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mexican mint is a kind of sage", "pln": ["(: cnet_isa_eb17d09970 (IsA mexican_mint sage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mexican monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_c8ac8c0288 (IsA mexican_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mexican peso is a kind of mexican monetary unit", "pln": ["(: cnet_isa_d4e101b3a0 (IsA mexican_peso mexican_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mexican pocket mouse is a kind of pocket mouse", "pln": ["(: cnet_isa_3b1874fad1 (IsA mexican_pocket_mouse pocket_mouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mexican poppy is a kind of prickly poppy", "pln": ["(: cnet_isa_f9b3bd8cb8 (IsA mexican_poppy prickly_poppy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mexican spanish is a kind of spanish", "pln": ["(: cnet_isa_4938597b7c (IsA mexican_spanish spanish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mexican standoff is a kind of situation", "pln": ["(: cnet_isa_e7f4963ea8 (IsA mexican_standoff situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mexican sunflower is a kind of flower", "pln": ["(: cnet_isa_94ef3edbd3 (IsA mexican_sunflower flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mexicano is a kind of mexican", "pln": ["(: cnet_isa_400827118e (IsA mexicano mexican) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mexico is a kind of country", "pln": ["(: cnet_isa_f514ccf136 (IsA mexico country) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mezereon is a kind of daphne", "pln": ["(: cnet_isa_e639dcb8ec (IsA mezereon daphne) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mezereum is a kind of bark", "pln": ["(: cnet_isa_b9e778b682 (IsA mezereum bark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mezuzah is a kind of section", "pln": ["(: cnet_isa_da348938bf (IsA mezuzah section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mezzanine is a kind of balcony", "pln": ["(: cnet_isa_e7ba9afc3f (IsA mezzanine balcony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mezzanine is a kind of floor", "pln": ["(: cnet_isa_7cfbb5e65a (IsA mezzanine floor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mezzo relievo is a kind of relief", "pln": ["(: cnet_isa_08c53e2682 (IsA mezzo_relievo relief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mezzo soprano is a kind of singing voice", "pln": ["(: cnet_isa_c81c76b30f (IsA mezzo_soprano singing_voice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mezzo soprano is a kind of soprano", "pln": ["(: cnet_isa_d53835b5e2 (IsA mezzo_soprano soprano) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mezzotint is a kind of print", "pln": ["(: cnet_isa_7c9516f693 (IsA mezzotint print) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mho is a kind of conductance unit", "pln": ["(: cnet_isa_b835a01e02 (IsA mho conductance_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mi is a kind of solfa syllable", "pln": ["(: cnet_isa_8e3fad419f (IsA mi solfa_syllable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miami is a kind of city in florida", "pln": ["(: cnet_isa_808335bc56 (IsA miami city_in_florida) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miami is a kind of algonquin", "pln": ["(: cnet_isa_6e2c6150a1 (IsA miami algonquin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miasma is a kind of air pollution", "pln": ["(: cnet_isa_03c959ff35 (IsA miasma air_pollution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miasma is a kind of atmosphere", "pln": ["(: cnet_isa_4871aaac3e (IsA miasma atmosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mica is a kind of mineral", "pln": ["(: cnet_isa_4a89b7ef4d (IsA mica mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mica is a kind of transparent substance", "pln": ["(: cnet_isa_d08ee4ff60 (IsA mica transparent_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mice is a kind of small animal", "pln": ["(: cnet_isa_39b278d4c8 (IsA mice small_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "micelle is a kind of particle", "pln": ["(: cnet_isa_4f98504cdd (IsA micelle particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "michael is a kind of archangel", "pln": ["(: cnet_isa_ef4535523e (IsA michael archangel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "michaelma is a kind of quarter day", "pln": ["(: cnet_isa_b52069905d (IsA michaelma quarter_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "michaelma daisy is a kind of aster", "pln": ["(: cnet_isa_dc6422e153 (IsA michaelma_daisy aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "michaelmastide is a kind of season", "pln": ["(: cnet_isa_9f0e8297e6 (IsA michaelmastide season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "michelson morley experiment is a kind of experiment", "pln": ["(: cnet_isa_96816a6a35 (IsA michelson_morley_experiment experiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "michigan is a kind of state", "pln": ["(: cnet_isa_1225e3fa1a (IsA michigan state) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "michigan is a kind of card game", "pln": ["(: cnet_isa_9f057478ee (IsA michigan card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "michigan lily is a kind of lily", "pln": ["(: cnet_isa_0b3bd0706c (IsA michigan_lily lily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mickey is a kind of irishman", "pln": ["(: cnet_isa_9de62b6dee (IsA mickey irishman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mickey finn is a kind of knockout drop", "pln": ["(: cnet_isa_ec1403385c (IsA mickey_finn knockout_drop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "micmac is a kind of algonquian", "pln": ["(: cnet_isa_5f694f16ec (IsA micmac algonquian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microbalance is a kind of balance", "pln": ["(: cnet_isa_91cd3ef93c (IsA microbalance balance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microbe is a kind of microorganism", "pln": ["(: cnet_isa_ad23dfa9e8 (IsA microbe microorganism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microbiologist is a kind of biologist", "pln": ["(: cnet_isa_b64dddba0d (IsA microbiologist biologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microbiology is a kind of biology", "pln": ["(: cnet_isa_4990ffb9cb (IsA microbiology biology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microbrachia is a kind of abnormality", "pln": ["(: cnet_isa_167f4f0b7c (IsA microbrachia abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microbrewery is a kind of brewery", "pln": ["(: cnet_isa_be0ada6d36 (IsA microbrewery brewery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microcentrum is a kind of arthropod genus", "pln": ["(: cnet_isa_fd706ff21f (IsA microcentrum arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microcephaly is a kind of abnormality", "pln": ["(: cnet_isa_718631d515 (IsA microcephaly abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microchiroptera is a kind of animal order", "pln": ["(: cnet_isa_ca1373af5c (IsA microchiroptera animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "micrococcaceae is a kind of bacteria family", "pln": ["(: cnet_isa_8706850720 (IsA micrococcaceae bacteria_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "micrococcus is a kind of bacteria genus", "pln": ["(: cnet_isa_3fe69af19c (IsA micrococcus bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microcosm is a kind of model", "pln": ["(: cnet_isa_bb8714b1f4 (IsA microcosm model) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microcosmic salt is a kind of salt", "pln": ["(: cnet_isa_446b42462b (IsA microcosmic_salt salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microcyte is a kind of red blood cell", "pln": ["(: cnet_isa_260dd75640 (IsA microcyte red_blood_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microcytic anemia is a kind of anemia", "pln": ["(: cnet_isa_43fedd1dcc (IsA microcytic_anemia anemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microcytosis is a kind of blood disease", "pln": ["(: cnet_isa_c5e89bc2e3 (IsA microcytosis blood_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "microdesmidae is a kind of fish family", "pln": ["(: cnet_isa_24917fcfb2 (IsA microdesmidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microdipodop is a kind of mammal genus", "pln": ["(: cnet_isa_820a99d36c (IsA microdipodop mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microdot is a kind of picture", "pln": ["(: cnet_isa_da3e84483e (IsA microdot picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microeconomic is a kind of economic", "pln": ["(: cnet_isa_d7c1d4e1f4 (IsA microeconomic economic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microeconomist is a kind of economist", "pln": ["(: cnet_isa_47eae707be (IsA microeconomist economist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microelectronic is a kind of electronic", "pln": ["(: cnet_isa_58fc3519da (IsA microelectronic electronic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microevolution is a kind of evolution", "pln": ["(: cnet_isa_d7871f915e (IsA microevolution evolution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microfarad is a kind of capacitance unit", "pln": ["(: cnet_isa_c1d3613800 (IsA microfarad capacitance_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microfiche is a kind of microfilm", "pln": ["(: cnet_isa_daf3729b10 (IsA microfiche microfilm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microfilm is a kind of film", "pln": ["(: cnet_isa_06dd53c338 (IsA microfilm film) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microflora is a kind of microorganism", "pln": ["(: cnet_isa_4b2beb90ed (IsA microflora microorganism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microflora is a kind of plant", "pln": ["(: cnet_isa_a13b03db44 (IsA microflora plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microfossil is a kind of fossil", "pln": ["(: cnet_isa_0f7738e0d9 (IsA microfossil fossil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microgametophyte is a kind of gametophyte", "pln": ["(: cnet_isa_37d221cbc1 (IsA microgametophyte gametophyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microgauss is a kind of flux density unit", "pln": ["(: cnet_isa_caa8d1162c (IsA microgauss flux_density_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microglia is a kind of neuroglia", "pln": ["(: cnet_isa_230841a2ac (IsA microglia neuroglia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microgliacyte is a kind of neurogliacyte", "pln": ["(: cnet_isa_ead33ace34 (IsA microgliacyte neurogliacyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microgram is a kind of metric weight unit", "pln": ["(: cnet_isa_4c116702b1 (IsA microgram metric_weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microgramma is a kind of fern genus", "pln": ["(: cnet_isa_ebdc396632 (IsA microgramma fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microhylidae is a kind of amphibian family", "pln": ["(: cnet_isa_a649b92eeb (IsA microhylidae amphibian_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "micromeria is a kind of asterid dicot genus", "pln": ["(: cnet_isa_5191f0ad63 (IsA micromeria asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "micrometeorite is a kind of meteorite", "pln": ["(: cnet_isa_fd1d44dcdc (IsA micrometeorite meteorite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "micrometer is a kind of caliper", "pln": ["(: cnet_isa_457168ede6 (IsA micrometer caliper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "micrometry is a kind of measurement", "pln": ["(: cnet_isa_0dc0171d7e (IsA micrometry measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "micromyx is a kind of mammal genus", "pln": ["(: cnet_isa_f1775cf641 (IsA micromyx mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "micron is a kind of metric linear unit", "pln": ["(: cnet_isa_ffc258b4b0 (IsA micron metric_linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "micronutrient is a kind of food", "pln": ["(: cnet_isa_2e71eb6a1f (IsA micronutrient food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microorganism is a kind of organism", "pln": ["(: cnet_isa_edfdbd9c43 (IsA microorganism organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "micropaleontology is a kind of paleontology", "pln": ["(: cnet_isa_98dd453226 (IsA micropaleontology paleontology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "micropenis is a kind of penis", "pln": ["(: cnet_isa_5168cdd725 (IsA micropenis penis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microphage is a kind of neutrophil", "pln": ["(: cnet_isa_f94a2e6f89 (IsA microphage neutrophil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microphone is a kind of electro acoustic transducer", "pln": ["(: cnet_isa_509afd453b (IsA microphone electro_acoustic_transducer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microphoning is a kind of transduction", "pln": ["(: cnet_isa_b3073b3857 (IsA microphoning transduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microphotometer is a kind of densitometer", "pln": ["(: cnet_isa_bf2c87a22c (IsA microphotometer densitometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "micropogonia is a kind of fish genus", "pln": ["(: cnet_isa_f854700ed1 (IsA micropogonia fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microprocessor is a kind of electronic component", "pln": ["(: cnet_isa_43ba0f8d62 (IsA microprocessor electronic_component) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microprocessor is a kind of chip", "pln": ["(: cnet_isa_663043450a (IsA microprocessor chip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "micropterus is a kind of fish genus", "pln": ["(: cnet_isa_b164a014b0 (IsA micropterus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "micropyle is a kind of aperture", "pln": ["(: cnet_isa_69cb30c33c (IsA micropyle aperture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microradian is a kind of angular unit", "pln": ["(: cnet_isa_3f7c97473f (IsA microradian angular_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "microscope is a kind of magnifier", "pln": ["(: cnet_isa_33aeb47d31 (IsA microscope magnifier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microscopic anatomy is a kind of anatomy", "pln": ["(: cnet_isa_a8874fabda (IsA microscopic_anatomy anatomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microscopic field is a kind of field", "pln": ["(: cnet_isa_eba7d384a5 (IsA microscopic_field field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microscopist is a kind of scientist", "pln": ["(: cnet_isa_dc53f52fc8 (IsA microscopist scientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microscopy is a kind of research", "pln": ["(: cnet_isa_d7bdc140a4 (IsA microscopy research) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microsecond is a kind of time unit", "pln": ["(: cnet_isa_1dfae47a4f (IsA microsecond time_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microsoft is a kind of computer software company", "pln": ["(: cnet_isa_9c02ee6fc4 (IsA microsoft computer_software_company) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microsoft is a kind of corporation", "pln": ["(: cnet_isa_f6e7c8148b (IsA microsoft corporation) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microsoft is a kind of greedy corporation", "pln": ["(: cnet_isa_6a3daf51ef (IsA microsoft greedy_corporation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microsoft is a kind of monopoly", "pln": ["(: cnet_isa_17011acd17 (IsA microsoft monopoly) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microsoft is a kind of producing software", "pln": ["(: cnet_isa_de40b43990 (IsA microsoft producing_software) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microsoft is a kind of registered trademark of microsoft corporation", "pln": ["(: cnet_isa_286dfd046a (IsA microsoft registered_trademark_of_microsoft_corporation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microsoft is a kind of software company", "pln": ["(: cnet_isa_6c13673e16 (IsA microsoft software_company) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microsome is a kind of granule", "pln": ["(: cnet_isa_f548aeb939 (IsA microsome granule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "microsorium is a kind of fern genus", "pln": ["(: cnet_isa_77fe597279 (IsA microsorium fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microsporangium is a kind of sporangium", "pln": ["(: cnet_isa_9359149710 (IsA microsporangium sporangium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microspore is a kind of spore", "pln": ["(: cnet_isa_0598b62bc4 (IsA microspore spore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microsporidian is a kind of sporozoan", "pln": ["(: cnet_isa_6cf27dbb4c (IsA microsporidian sporozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microsporophyll is a kind of sporophyll", "pln": ["(: cnet_isa_cf2e507c0b (IsA microsporophyll sporophyll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "microsporum is a kind of fungus genus", "pln": ["(: cnet_isa_a555f9aee3 (IsA microsporum fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microstomus is a kind of fish genus", "pln": ["(: cnet_isa_713e767d89 (IsA microstomus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microstrobo is a kind of gymnosperm genus", "pln": ["(: cnet_isa_7e20a8ac09 (IsA microstrobo gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microsurgery is a kind of operation", "pln": ["(: cnet_isa_f78525a417 (IsA microsurgery operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microtome is a kind of scientific instrument", "pln": ["(: cnet_isa_fde27a3810 (IsA microtome scientific_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "microtubule is a kind of tubule", "pln": ["(: cnet_isa_1ce3c8fc5e (IsA microtubule tubule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microtus is a kind of mammal genus", "pln": ["(: cnet_isa_dc852764f5 (IsA microtus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microvolt is a kind of potential unit", "pln": ["(: cnet_isa_b7f567f0eb (IsA microvolt potential_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microwave is a kind of kitchen appliance", "pln": ["(: cnet_isa_61c92d6503 (IsA microwave kitchen_appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microwave is a kind of electromagnetic radiation", "pln": ["(: cnet_isa_358a9c68a1 (IsA microwave electromagnetic_radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "microwave bomb is a kind of bomb", "pln": ["(: cnet_isa_43519ec4a5 (IsA microwave_bomb bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "micruroides is a kind of reptile genus", "pln": ["(: cnet_isa_68b8a82878 (IsA micruroides reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microwave diathermy machine is a kind of diathermy machine", "pln": ["(: cnet_isa_fe504879ea (IsA microwave_diathermy_machine diathermy_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microwave linear accelerator is a kind of linear accelerator", "pln": ["(: cnet_isa_f9ddb3f0bd (IsA microwave_linear_accelerator linear_accelerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microwave spectroscopy is a kind of spectroscopy", "pln": ["(: cnet_isa_d39546b719 (IsA microwave_spectroscopy spectroscopy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "microwave spectrum is a kind of spectrum", "pln": ["(: cnet_isa_af08472f4a (IsA microwave_spectrum spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "micruroide is a kind of reptile genus", "pln": ["(: cnet_isa_258ead6b6e (IsA micruroide reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "micrurus is a kind of reptile genus", "pln": ["(: cnet_isa_c22b81cdb8 (IsA micrurus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "micturition is a kind of elimination", "pln": ["(: cnet_isa_09ccdb0576 (IsA micturition elimination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "micturition reflex is a kind of reflex", "pln": ["(: cnet_isa_c123113779 (IsA micturition_reflex reflex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mid april is a kind of time period", "pln": ["(: cnet_isa_067ad7ef3d (IsA mid_april time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mid august is a kind of time period", "pln": ["(: cnet_isa_27e42b7ff9 (IsA mid_august time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mid calf is a kind of calf", "pln": ["(: cnet_isa_c993b88436 (IsA mid_calf calf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mid december is a kind of time period", "pln": ["(: cnet_isa_bb19c912eb (IsA mid_december time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mid february is a kind of time period", "pln": ["(: cnet_isa_fdcbb37466 (IsA mid_february time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mid january is a kind of time period", "pln": ["(: cnet_isa_7c82ceae2f (IsA mid_january time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mid july is a kind of time period", "pln": ["(: cnet_isa_14b4ba1d72 (IsA mid_july time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mid june is a kind of time period", "pln": ["(: cnet_isa_b3f9135537 (IsA mid_june time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mid march is a kind of time period", "pln": ["(: cnet_isa_2fe8485c49 (IsA mid_march time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mid may is a kind of time period", "pln": ["(: cnet_isa_a1573e92f9 (IsA mid_may time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mid november is a kind of time period", "pln": ["(: cnet_isa_52dac545f3 (IsA mid_november time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mid october is a kind of time period", "pln": ["(: cnet_isa_baa50ea27d (IsA mid_october time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mid off is a kind of position", "pln": ["(: cnet_isa_47145db3a3 (IsA mid_off position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mid on is a kind of position", "pln": ["(: cnet_isa_8cb2782b3d (IsA mid_on position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mid september is a kind of time period", "pln": ["(: cnet_isa_2b6cf750b6 (IsA mid_september time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mid water is a kind of body of water", "pln": ["(: cnet_isa_432b97d168 (IsA mid_water body_of_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "midafternoon is a kind of day", "pln": ["(: cnet_isa_468891b71f (IsA midafternoon day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "midair is a kind of point", "pln": ["(: cnet_isa_5d348a29f9 (IsA midair point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mida touch is a kind of ability", "pln": ["(: cnet_isa_39dd242920 (IsA mida_touch ability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "midbrain is a kind of neural structure", "pln": ["(: cnet_isa_543f42ee50 (IsA midbrain neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "middle is a kind of area", "pln": ["(: cnet_isa_7030c0ca99 (IsA middle area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "middle is a kind of part", "pln": ["(: cnet_isa_8168bbd45c (IsA middle part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "middle is a kind of point", "pln": ["(: cnet_isa_66cacb92b6 (IsA middle point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "middle age is a kind of time of life", "pln": ["(: cnet_isa_01b47259bf (IsA middle_age time_of_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "middle aged man is a kind of man", "pln": ["(: cnet_isa_fb8458ec12 (IsA middle_aged_man man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "middle c is a kind of note", "pln": ["(: cnet_isa_6974708d2b (IsA middle_c note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "middle cerebral artery is a kind of cerebral artery", "pln": ["(: cnet_isa_c85c27ca1f (IsA middle_cerebral_artery cerebral_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "middle cerebral vein is a kind of cerebral vein", "pln": ["(: cnet_isa_98926d1d8c (IsA middle_cerebral_vein cerebral_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "middle class is a kind of class", "pln": ["(: cnet_isa_428064fce9 (IsA middle_class class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "middle distance is a kind of view", "pln": ["(: cnet_isa_1d125f094f (IsA middle_distance view) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "middle ear is a kind of cavity", "pln": ["(: cnet_isa_98f5f2de96 (IsA middle_ear cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "middle english is a kind of english", "pln": ["(: cnet_isa_e438118fd8 (IsA middle_english english) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "middle finger is a kind of finger", "pln": ["(: cnet_isa_c399dc6852 (IsA middle_finger finger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "middle high german is a kind of german", "pln": ["(: cnet_isa_7c7a723a0e (IsA middle_high_german german) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "middle irish is a kind of irish", "pln": ["(: cnet_isa_9f29f0a040 (IsA middle_irish irish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "middle low german is a kind of low german", "pln": ["(: cnet_isa_b6fb64fd64 (IsA middle_low_german low_german) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "middle meningeal artery is a kind of meningeal artery", "pln": ["(: cnet_isa_dc9669d56e (IsA middle_meningeal_artery meningeal_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "middle name is a kind of name", "pln": ["(: cnet_isa_46eaebb4a6 (IsA middle_name name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "middle temporal vein is a kind of temporal vein", "pln": ["(: cnet_isa_eb97e4c91f (IsA middle_temporal_vein temporal_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "middle term is a kind of term", "pln": ["(: cnet_isa_bdf30f14cd (IsA middle_term term) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "middle thyroid vein is a kind of thyroid vein", "pln": ["(: cnet_isa_acedb146c1 (IsA middle_thyroid_vein thyroid_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "middlebrow is a kind of person", "pln": ["(: cnet_isa_dbf7ad5145 (IsA middlebrow person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "middleweight is a kind of boxer", "pln": ["(: cnet_isa_86331dfc64 (IsA middleweight boxer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "middleweight is a kind of prizefighter", "pln": ["(: cnet_isa_108ed11e12 (IsA middleweight prizefighter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "middleweight is a kind of wrestler", "pln": ["(: cnet_isa_e3b672678d (IsA middleweight wrestler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "middling is a kind of commodity", "pln": ["(: cnet_isa_1b544c34f7 (IsA middling commodity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "middy is a kind of blouse", "pln": ["(: cnet_isa_bcfddba217 (IsA middy blouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "midfield is a kind of center", "pln": ["(: cnet_isa_03eb8cfaea (IsA midfield center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "midgard is a kind of imaginary place", "pln": ["(: cnet_isa_1980eb8fe2 (IsA midgard imaginary_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "midge is a kind of gnat", "pln": ["(: cnet_isa_ffdbf88aa6 (IsA midge gnat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "midgrass is a kind of grass", "pln": ["(: cnet_isa_812728fdb2 (IsA midgrass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "midinette is a kind of salesgirl", "pln": ["(: cnet_isa_e6aa787fae (IsA midinette salesgirl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "midiron is a kind of iron", "pln": ["(: cnet_isa_81f6c0f2fd (IsA midiron iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "midland is a kind of inside", "pln": ["(: cnet_isa_dd8c7d2e7a (IsA midland inside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "midnight is a kind of hour", "pln": ["(: cnet_isa_e4b738a9f7 (IsA midnight hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "midnight sun is a kind of atmospheric phenomenon", "pln": ["(: cnet_isa_2534575b3d (IsA midnight_sun atmospheric_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "midplane is a kind of plane", "pln": ["(: cnet_isa_49c1b0c46a (IsA midplane plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "midrash is a kind of comment", "pln": ["(: cnet_isa_f0ebac4a6a (IsA midrash comment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "midrib is a kind of vein", "pln": ["(: cnet_isa_34b794ba5e (IsA midrib vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "midshipman is a kind of cadet", "pln": ["(: cnet_isa_4ad7f746b5 (IsA midshipman cadet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "midst is a kind of inside", "pln": ["(: cnet_isa_5149a767eb (IsA midst inside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "midstream is a kind of center", "pln": ["(: cnet_isa_efd1db6ced (IsA midstream center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "midsummer day is a kind of quarter day", "pln": ["(: cnet_isa_d16fad0627 (IsA midsummer_day quarter_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "midsummer eve is a kind of day", "pln": ["(: cnet_isa_69622e07ad (IsA midsummer_eve day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "midterm is a kind of exam", "pln": ["(: cnet_isa_b1f07d9c75 (IsA midterm exam) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "midterm is a kind of point", "pln": ["(: cnet_isa_d70e117803 (IsA midterm point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "midterm examination is a kind of examination", "pln": ["(: cnet_isa_5e771ad15c (IsA midterm_examination examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "midway is a kind of tract", "pln": ["(: cnet_isa_605de86061 (IsA midway tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "midweek is a kind of time period", "pln": ["(: cnet_isa_4f75cbab83 (IsA midweek time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "midwife is a kind of nurse", "pln": ["(: cnet_isa_76769bca8a (IsA midwife nurse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "midwife toad is a kind of frog", "pln": ["(: cnet_isa_bd17fd403d (IsA midwife_toad frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "midwifery is a kind of delivery", "pln": ["(: cnet_isa_57a7724293 (IsA midwifery delivery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "midwinter is a kind of time period", "pln": ["(: cnet_isa_2a4f33c469 (IsA midwinter time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "might is a kind of strength", "pln": ["(: cnet_isa_d49a411ea7 (IsA might strength) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "might have been is a kind of event", "pln": ["(: cnet_isa_85b8a97919 (IsA might_have_been event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mignonette is a kind of reseda", "pln": ["(: cnet_isa_ff3c8f4748 (IsA mignonette reseda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "migraine is a kind of headache", "pln": ["(: cnet_isa_7e39e63218 (IsA migraine headache) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "migrant is a kind of traveler", "pln": ["(: cnet_isa_bfa3c270c1 (IsA migrant traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "migrant shrike is a kind of shrike", "pln": ["(: cnet_isa_f52c312c50 (IsA migrant_shrike shrike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "migrant worker is a kind of temp", "pln": ["(: cnet_isa_2bd177c047 (IsA migrant_worker temp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "migration is a kind of motion", "pln": ["(: cnet_isa_58f19f9472 (IsA migration motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "migration is a kind of event", "pln": ["(: cnet_isa_f7d59a716a (IsA migration event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "migration is a kind of periodic event", "pln": ["(: cnet_isa_0c93ab5e91 (IsA migration periodic_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "migration is a kind of people", "pln": ["(: cnet_isa_e01800b54a (IsA migration people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "migration route is a kind of path", "pln": ["(: cnet_isa_b6d1efcbbc (IsA migration_route path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "migrator is a kind of animal", "pln": ["(: cnet_isa_1b111ec25f (IsA migrator animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "migratory grasshopper is a kind of locust", "pln": ["(: cnet_isa_543b8c23b9 (IsA migratory_grasshopper locust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "migratory locust is a kind of locust", "pln": ["(: cnet_isa_09287ed3d9 (IsA migratory_locust locust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "migratory quail is a kind of old world quail", "pln": ["(: cnet_isa_4f6576b4af (IsA migratory_quail old_world_quail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mihrab is a kind of design", "pln": ["(: cnet_isa_eaea2aac54 (IsA mihrab design) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mihrab is a kind of recess", "pln": ["(: cnet_isa_d5604ac681 (IsA mihrab recess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mikado is a kind of emperor", "pln": ["(: cnet_isa_31d9abc647 (IsA mikado emperor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mikania is a kind of asterid dicot genus", "pln": ["(: cnet_isa_b419968403 (IsA mikania asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mikir meithei is a kind of kamarupan", "pln": ["(: cnet_isa_2a47f44e6f (IsA mikir_meithei kamarupan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mikmaq is a kind of algonquin", "pln": ["(: cnet_isa_75153a1492 (IsA mikmaq algonquin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mikvah is a kind of bath", "pln": ["(: cnet_isa_9ee2aca4bc (IsA mikvah bath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mil is a kind of angular unit", "pln": ["(: cnet_isa_2a6b905645 (IsA mil angular_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mil is a kind of cypriot monetary unit", "pln": ["(: cnet_isa_5dd61636f6 (IsA mil cypriot_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mil is a kind of linear unit", "pln": ["(: cnet_isa_d90c900cd1 (IsA mil linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milady is a kind of noblewoman", "pln": ["(: cnet_isa_216226cded (IsA milady noblewoman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milanese is a kind of italian", "pln": ["(: cnet_isa_e68c25f67e (IsA milanese italian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mild steel is a kind of steel", "pln": ["(: cnet_isa_30a552792e (IsA mild_steel steel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mildew is a kind of fungus", "pln": ["(: cnet_isa_e377f21057 (IsA mildew fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mildew is a kind of spoilage", "pln": ["(: cnet_isa_1c64dd9c28 (IsA mildew spoilage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mildness is a kind of good weather", "pln": ["(: cnet_isa_a66b96ce52 (IsA mildness good_weather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mile is a kind of track event", "pln": ["(: cnet_isa_d60f22b4eb (IsA mile track_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mile is a kind of large indefinite quantity", "pln": ["(: cnet_isa_1f5b83fbc2 (IsA mile large_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mile is a kind of linear unit", "pln": ["(: cnet_isa_64c032b274 (IsA mile linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mileage is a kind of measurement", "pln": ["(: cnet_isa_492ecc7515 (IsA mileage measurement) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mileage is a kind of distance", "pln": ["(: cnet_isa_25745cce21 (IsA mileage distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mileage is a kind of ratio", "pln": ["(: cnet_isa_e0cae66c33 (IsA mileage ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mileage is a kind of travel allowance", "pln": ["(: cnet_isa_ace7609b42 (IsA mileage travel_allowance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miler is a kind of runner", "pln": ["(: cnet_isa_4812f42aca (IsA miler runner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miler is a kind of linear unit", "pln": ["(: cnet_isa_6b5c2ec4bb (IsA miler linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mile gloriosus is a kind of egotist", "pln": ["(: cnet_isa_87b25f897e (IsA mile_gloriosus egotist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mile per gallon is a kind of unit of measurement", "pln": ["(: cnet_isa_266ed5fa77 (IsA mile_per_gallon unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mile per hour is a kind of rate", "pln": ["(: cnet_isa_c483c87d7a (IsA mile_per_hour rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mile per hour is a kind of reading", "pln": ["(: cnet_isa_e6e2398693 (IsA mile_per_hour reading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milestone is a kind of marker", "pln": ["(: cnet_isa_d92a2c3ee0 (IsA milestone marker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milestone is a kind of juncture", "pln": ["(: cnet_isa_225e94832c (IsA milestone juncture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miliary tuberculosis is a kind of tuberculosis", "pln": ["(: cnet_isa_063406e3d4 (IsA miliary_tuberculosis tuberculosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milieu is a kind of environment", "pln": ["(: cnet_isa_8cc426a7f9 (IsA milieu environment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "militainment is a kind of entertainment", "pln": ["(: cnet_isa_8b16cdc42d (IsA militainment entertainment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "militant is a kind of reformer", "pln": ["(: cnet_isa_7691b01927 (IsA militant reformer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "militant tendency is a kind of party", "pln": ["(: cnet_isa_fb71aab805 (IsA militant_tendency party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "militarism is a kind of hawkishness", "pln": ["(: cnet_isa_5b1ef81602 (IsA militarism hawkishness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "militarist is a kind of adult", "pln": ["(: cnet_isa_b6ace068d5 (IsA militarist adult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military is a kind of force", "pln": ["(: cnet_isa_957f5cb6e0 (IsA military force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military academy is a kind of academy", "pln": ["(: cnet_isa_86f7f344cd (IsA military_academy academy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military action is a kind of group action", "pln": ["(: cnet_isa_9723f705c2 (IsA military_action group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "military adviser is a kind of adviser", "pln": ["(: cnet_isa_f2840cbb3b (IsA military_adviser adviser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military adviser is a kind of military officer", "pln": ["(: cnet_isa_03d35cdf19 (IsA military_adviser military_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "military attache is a kind of attache", "pln": ["(: cnet_isa_1b1208359b (IsA military_attache attache) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military capability is a kind of capability", "pln": ["(: cnet_isa_cb5ef67374 (IsA military_capability capability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "military censorship is a kind of censoring", "pln": ["(: cnet_isa_273c561642 (IsA military_censorship censoring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military ceremony is a kind of ceremony", "pln": ["(: cnet_isa_5a98a790ea (IsA military_ceremony ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military chaplain is a kind of chaplain", "pln": ["(: cnet_isa_8e844e649e (IsA military_chaplain chaplain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military court is a kind of court", "pln": ["(: cnet_isa_324793d174 (IsA military_court court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military drill is a kind of exercise", "pln": ["(: cnet_isa_a3e18d4050 (IsA military_drill exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military formation is a kind of formation", "pln": ["(: cnet_isa_81657c27e7 (IsA military_formation formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military government is a kind of government", "pln": ["(: cnet_isa_bcb7e657a7 (IsA military_government government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military governor is a kind of governor", "pln": ["(: cnet_isa_8f9c54de1b (IsA military_governor governor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military hospital is a kind of hospital", "pln": ["(: cnet_isa_ccc67f076c (IsA military_hospital hospital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military industrial complex is a kind of vested interest", "pln": ["(: cnet_isa_6be7cafcd3 (IsA military_industrial_complex vested_interest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military installation is a kind of facility", "pln": ["(: cnet_isa_8499058842 (IsA military_installation facility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military intelligence is a kind of intelligence", "pln": ["(: cnet_isa_f8d64478a2 (IsA military_intelligence intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "military junta is a kind of clique", "pln": ["(: cnet_isa_a06affd8a0 (IsA military_junta clique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military law is a kind of law", "pln": ["(: cnet_isa_ac2c045985 (IsA military_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military leader is a kind of leader", "pln": ["(: cnet_isa_ebaeaa0532 (IsA military_leader leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military march is a kind of marching music", "pln": ["(: cnet_isa_a31209e16b (IsA military_march marching_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military officer is a kind of serviceman", "pln": ["(: cnet_isa_343b4b0947 (IsA military_officer serviceman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military pace is a kind of linear unit", "pln": ["(: cnet_isa_7f759c2ddb (IsA military_pace linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military personnel is a kind of force", "pln": ["(: cnet_isa_82ab4bf368 (IsA military_personnel force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military police is a kind of force", "pln": ["(: cnet_isa_4258ea8752 (IsA military_police force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military policeman is a kind of lawman", "pln": ["(: cnet_isa_8652356fe9 (IsA military_policeman lawman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military position is a kind of point", "pln": ["(: cnet_isa_dc5b87efa3 (IsA military_position point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military post is a kind of military installation", "pln": ["(: cnet_isa_deb026a3ed (IsA military_post military_installation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military quarter is a kind of living quarter", "pln": ["(: cnet_isa_37510f6d58 (IsA military_quarter living_quarter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military rank is a kind of rank", "pln": ["(: cnet_isa_6114ddbe98 (IsA military_rank rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military reserve is a kind of military", "pln": ["(: cnet_isa_18c9c40ff5 (IsA military_reserve military) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military science is a kind of discipline", "pln": ["(: cnet_isa_10c45ffe56 (IsA military_science discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military service is a kind of service", "pln": ["(: cnet_isa_8bd57226ce (IsA military_service service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military service is a kind of force", "pln": ["(: cnet_isa_ca01ef09ce (IsA military_service force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military training is a kind of training", "pln": ["(: cnet_isa_a92f8f718b (IsA military_training training) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military uniform is a kind of uniform", "pln": ["(: cnet_isa_d222c7e519 (IsA military_uniform uniform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "military unit is a kind of unit", "pln": ["(: cnet_isa_7fb30355e7 (IsA military_unit unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "military vehicle is a kind of vehicle", "pln": ["(: cnet_isa_7258447f1f (IsA military_vehicle vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "militia is a kind of body", "pln": ["(: cnet_isa_1a112e2476 (IsA militia body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "militia is a kind of military unit", "pln": ["(: cnet_isa_64bdcaa1a2 (IsA militia military_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "militiaman is a kind of soldier", "pln": ["(: cnet_isa_e6f0ef876e (IsA militiaman soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milk is a kind of beverage", "pln": ["(: cnet_isa_5efa2bfce8 (IsA milk beverage) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "milk is a kind of dairy product", "pln": ["(: cnet_isa_e37ab9ff59 (IsA milk dairy_product) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milk is a kind of liquid", "pln": ["(: cnet_isa_d148fc7ac3 (IsA milk liquid) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milk is a kind of liquid body substance", "pln": ["(: cnet_isa_453e8d3c5b (IsA milk liquid_body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milk is a kind of nutriment", "pln": ["(: cnet_isa_31c83cd708 (IsA milk nutriment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milk is a kind of foodstuff", "pln": ["(: cnet_isa_1705253794 (IsA milk foodstuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milk bar is a kind of snack bar", "pln": ["(: cnet_isa_ab0a4c7062 (IsA milk_bar snack_bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milk can is a kind of can", "pln": ["(: cnet_isa_b692eaac06 (IsA milk_can can) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "milk chocolate is a kind of chocolate", "pln": ["(: cnet_isa_369462fad6 (IsA milk_chocolate chocolate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "milk float is a kind of van", "pln": ["(: cnet_isa_3b59073220 (IsA milk_float van) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milk leg is a kind of thrombosis", "pln": ["(: cnet_isa_c7119f6b91 (IsA milk_leg thrombosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milk of magnesia is a kind of purgative", "pln": ["(: cnet_isa_3b0c2c57ec (IsA milk_of_magnesia purgative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milk punch is a kind of punch", "pln": ["(: cnet_isa_ef4902eb65 (IsA milk_punch punch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milk sickness is a kind of disease", "pln": ["(: cnet_isa_662b5e3369 (IsA milk_sickness disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milk snake is a kind of king snake", "pln": ["(: cnet_isa_b40a8edda4 (IsA milk_snake king_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milk thistle is a kind of herb", "pln": ["(: cnet_isa_7948a6b349 (IsA milk_thistle herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milk vetch is a kind of woody plant", "pln": ["(: cnet_isa_807915a0e7 (IsA milk_vetch woody_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milk wagon is a kind of wagon", "pln": ["(: cnet_isa_707dedbabf (IsA milk_wagon wagon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milkcap is a kind of agaric", "pln": ["(: cnet_isa_fb0b2859ea (IsA milkcap agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milking machine is a kind of machine", "pln": ["(: cnet_isa_c045239eb5 (IsA milking_machine machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milking shorthorn is a kind of dairy cattle", "pln": ["(: cnet_isa_c39831f6c2 (IsA milking_shorthorn dairy_cattle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milking stool is a kind of stool", "pln": ["(: cnet_isa_1a75fe4702 (IsA milking_stool stool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milkman is a kind of deliveryman", "pln": ["(: cnet_isa_09029e8f81 (IsA milkman deliveryman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milkshake is a kind of drink", "pln": ["(: cnet_isa_33d6e098a8 (IsA milkshake drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milkweed is a kind of herb", "pln": ["(: cnet_isa_31f111a5d3 (IsA milkweed herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milkweed is a kind of sow thistle", "pln": ["(: cnet_isa_1cfbab3ccf (IsA milkweed sow_thistle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milkwort is a kind of subshrub", "pln": ["(: cnet_isa_0519bbfecf (IsA milkwort subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milky way is a kind of galaxy", "pln": ["(: cnet_isa_ebb3be31f4 (IsA milky_way galaxy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mill is a kind of machinery", "pln": ["(: cnet_isa_91f44126f9 (IsA mill machinery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mill agent is a kind of agent", "pln": ["(: cnet_isa_15ec792f28 (IsA mill_agent agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mill girl is a kind of girl", "pln": ["(: cnet_isa_5e7fb6f466 (IsA mill_girl girl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mill girl is a kind of mill hand", "pln": ["(: cnet_isa_7fb9d8edc7 (IsA mill_girl mill_hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mill hand is a kind of workman", "pln": ["(: cnet_isa_a3cef81a03 (IsA mill_hand workman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millboard is a kind of pasteboard", "pln": ["(: cnet_isa_43553d56e7 (IsA millboard pasteboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milldam is a kind of dam", "pln": ["(: cnet_isa_967a38a321 (IsA milldam dam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millenarian is a kind of optimist", "pln": ["(: cnet_isa_d77f2e5ed8 (IsA millenarian optimist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millenarianism is a kind of theological doctrine", "pln": ["(: cnet_isa_ef318b64e0 (IsA millenarianism theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millenary is a kind of thousand", "pln": ["(: cnet_isa_75d3e30c96 (IsA millenary thousand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millennium is a kind of doctrine", "pln": ["(: cnet_isa_d2bff02443 (IsA millennium doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millennium is a kind of anniversary", "pln": ["(: cnet_isa_da51bf503c (IsA millennium anniversary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millennium is a kind of time period", "pln": ["(: cnet_isa_99c28d3fe3 (IsA millennium time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miller s thumb is a kind of sculpin", "pln": ["(: cnet_isa_522e60ff08 (IsA miller_s_thumb sculpin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miller is a kind of shaper", "pln": ["(: cnet_isa_2d46d437ed (IsA miller shaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miller is a kind of craftsman", "pln": ["(: cnet_isa_dddd12e48e (IsA miller craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millerite is a kind of mineral", "pln": ["(: cnet_isa_2b8cd28701 (IsA millerite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millet is a kind of grain", "pln": ["(: cnet_isa_5a860a9758 (IsA millet grain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millet is a kind of cereal", "pln": ["(: cnet_isa_fc0cd6edc7 (IsA millet cereal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millettia is a kind of tree", "pln": ["(: cnet_isa_d5d7602059 (IsA millettia tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milliammeter is a kind of ammeter", "pln": ["(: cnet_isa_0ec0e4df4c (IsA milliammeter ammeter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milliampere is a kind of current unit", "pln": ["(: cnet_isa_2c4c907def (IsA milliampere current_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milliard is a kind of billion", "pln": ["(: cnet_isa_0e0b930b73 (IsA milliard billion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millibar is a kind of pressure unit", "pln": ["(: cnet_isa_4252fa93e2 (IsA millibar pressure_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millicurie is a kind of radioactivity unit", "pln": ["(: cnet_isa_26e1b9fbd7 (IsA millicurie radioactivity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millidegree is a kind of temperature unit", "pln": ["(: cnet_isa_14af270a9e (IsA millidegree temperature_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milliequivalent is a kind of atomic mass", "pln": ["(: cnet_isa_270b4e1197 (IsA milliequivalent atomic_mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millifarad is a kind of capacitance unit", "pln": ["(: cnet_isa_dc19312a3c (IsA millifarad capacitance_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milligram is a kind of metric weight unit", "pln": ["(: cnet_isa_614d1ff098 (IsA milligram metric_weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millihenry is a kind of inductance unit", "pln": ["(: cnet_isa_bbf77149e1 (IsA millihenry inductance_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milliliter is a kind of metric capacity unit", "pln": ["(: cnet_isa_b0a5763bad (IsA milliliter metric_capacity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millime is a kind of tunisian monetary unit", "pln": ["(: cnet_isa_21da3e04c7 (IsA millime tunisian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millimeter is a kind of metric linear unit", "pln": ["(: cnet_isa_e22f1d21f1 (IsA millimeter metric_linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "milline is a kind of printing unit", "pln": ["(: cnet_isa_79031c221d (IsA milline printing_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milliner is a kind of maker", "pln": ["(: cnet_isa_bbcfe4d787 (IsA milliner maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milliner is a kind of merchant", "pln": ["(: cnet_isa_fb04d86406 (IsA milliner merchant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millinery is a kind of hat", "pln": ["(: cnet_isa_df7b6f57f9 (IsA millinery hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millinery is a kind of shop", "pln": ["(: cnet_isa_8dfe63ec50 (IsA millinery shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milling is a kind of edge", "pln": ["(: cnet_isa_8b744a6b42 (IsA milling edge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "million is a kind of large integer", "pln": ["(: cnet_isa_a2f2190125 (IsA million large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millionaire is a kind of rich person", "pln": ["(: cnet_isa_cf78871519 (IsA millionaire rich_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millionairess is a kind of rich person", "pln": ["(: cnet_isa_4869bf3703 (IsA millionairess rich_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "million is a kind of large indefinite quantity", "pln": ["(: cnet_isa_6d652bb3e0 (IsA million large_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millionth is a kind of rank", "pln": ["(: cnet_isa_3283d8bda7 (IsA millionth rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millipede is a kind of arthropod", "pln": ["(: cnet_isa_f799c65db1 (IsA millipede arthropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milliradian is a kind of angular unit", "pln": ["(: cnet_isa_97c5437c86 (IsA milliradian angular_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millirem is a kind of radioactivity unit", "pln": ["(: cnet_isa_8a4b2ed4f9 (IsA millirem radioactivity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millisecond is a kind of time unit", "pln": ["(: cnet_isa_28d363aa58 (IsA millisecond time_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millivolt is a kind of potential unit", "pln": ["(: cnet_isa_f8a43796e5 (IsA millivolt potential_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millivoltmeter is a kind of voltmeter", "pln": ["(: cnet_isa_2022fe618a (IsA millivoltmeter voltmeter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milliwatt is a kind of power unit", "pln": ["(: cnet_isa_fe54c889ee (IsA milliwatt power_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millpond is a kind of pond", "pln": ["(: cnet_isa_79a51acfee (IsA millpond pond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millrace is a kind of conduit", "pln": ["(: cnet_isa_73f5d8fc98 (IsA millrace conduit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "millstone is a kind of load", "pln": ["(: cnet_isa_f2b9d95f7f (IsA millstone load) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millstone is a kind of stone", "pln": ["(: cnet_isa_26a0990fdd (IsA millstone stone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millwheel is a kind of waterwheel", "pln": ["(: cnet_isa_a82820cd83 (IsA millwheel waterwheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millwork is a kind of woodwork", "pln": ["(: cnet_isa_a0a63a4f5f (IsA millwork woodwork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "millwright is a kind of wright", "pln": ["(: cnet_isa_4e70f2da91 (IsA millwright wright) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milo is a kind of grain sorghum", "pln": ["(: cnet_isa_f81897e5e0 (IsA milo grain_sorghum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milord is a kind of nobleman", "pln": ["(: cnet_isa_ca7e76f458 (IsA milord nobleman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "milt is a kind of semen", "pln": ["(: cnet_isa_8afc0496c3 (IsA milt semen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milt is a kind of seafood", "pln": ["(: cnet_isa_d9817087c1 (IsA milt seafood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miltonia is a kind of monocot genus", "pln": ["(: cnet_isa_5b9bb2e623 (IsA miltonia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "milvus is a kind of bird genus", "pln": ["(: cnet_isa_10dc666511 (IsA milvus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mimamsa is a kind of hinduism", "pln": ["(: cnet_isa_7f5bad6767 (IsA mimamsa hinduism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mime is a kind of acting", "pln": ["(: cnet_isa_1453ab67be (IsA mime acting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mime is a kind of actor", "pln": ["(: cnet_isa_55299230e8 (IsA mime actor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mimeograph is a kind of duplicator", "pln": ["(: cnet_isa_cd292708eb (IsA mimeograph duplicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mimesis is a kind of imitation", "pln": ["(: cnet_isa_11810067a5 (IsA mimesis imitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mimesis is a kind of quotation", "pln": ["(: cnet_isa_a4b6ac7289 (IsA mimesis quotation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mimesis is a kind of disease", "pln": ["(: cnet_isa_1b1c918f5d (IsA mimesis disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mimic is a kind of impersonator", "pln": ["(: cnet_isa_5c850d8f88 (IsA mimic impersonator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mimicry is a kind of imitation", "pln": ["(: cnet_isa_ba65c59f0e (IsA mimicry imitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mimidae is a kind of bird family", "pln": ["(: cnet_isa_dbf1750d88 (IsA mimidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mimir is a kind of giant", "pln": ["(: cnet_isa_0d856f58ad (IsA mimir giant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mimosa is a kind of mixed drink", "pln": ["(: cnet_isa_20e824bb33 (IsA mimosa mixed_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mimosa is a kind of shrub", "pln": ["(: cnet_isa_27a1894086 (IsA mimosa shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mimosaceae is a kind of rosid dicot family", "pln": ["(: cnet_isa_3810a09694 (IsA mimosaceae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mimosoideae is a kind of rosid dicot family", "pln": ["(: cnet_isa_e8831546f3 (IsA mimosoideae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mimus is a kind of bird genus", "pln": ["(: cnet_isa_332c7bd603 (IsA mimus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "min is a kind of chinese", "pln": ["(: cnet_isa_b10b167e58 (IsA min chinese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minamata disease is a kind of mercury poisoning", "pln": ["(: cnet_isa_e7a8eaecf2 (IsA minamata_disease mercury_poisoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minaret is a kind of tower", "pln": ["(: cnet_isa_859579a61b (IsA minaret tower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mince is a kind of nutriment", "pln": ["(: cnet_isa_6a252088da (IsA mince nutriment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mince pie is a kind of pie", "pln": ["(: cnet_isa_c3bfe60579 (IsA mince_pie pie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mincemeat is a kind of concoction", "pln": ["(: cnet_isa_660aa0f7ec (IsA mincemeat concoction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mincer is a kind of kitchen utensil", "pln": ["(: cnet_isa_b134a50e72 (IsA mincer kitchen_utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mind s eye is a kind of imagination", "pln": ["(: cnet_isa_0cb7d6e441 (IsA mind_s_eye imagination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mind is a kind of cognition", "pln": ["(: cnet_isa_e617ad9de0 (IsA mind cognition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mind is a kind of intelligence", "pln": ["(: cnet_isa_b76cc6447c (IsA mind intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mind is a kind of notice", "pln": ["(: cnet_isa_246beafdc8 (IsA mind notice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mind is a kind of purpose", "pln": ["(: cnet_isa_3f22b3ca70 (IsA mind purpose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mind is a kind of recall", "pln": ["(: cnet_isa_44cef34c02 (IsA mind recall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mind game is a kind of game", "pln": ["(: cnet_isa_37a2618bd4 (IsA mind_game game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mind game is a kind of manipulation", "pln": ["(: cnet_isa_68c0ada419 (IsA mind_game manipulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mind reader is a kind of magician", "pln": ["(: cnet_isa_c1a10d9472 (IsA mind_reader magician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minder is a kind of escort", "pln": ["(: cnet_isa_cdc5519027 (IsA minder escort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mindfulness is a kind of attentiveness", "pln": ["(: cnet_isa_e06739180b (IsA mindfulness attentiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mine is a kind of man made cave in ground", "pln": ["(: cnet_isa_7ed26691c4 (IsA mine man_made_cave_in_ground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mine is a kind of weapon", "pln": ["(: cnet_isa_841e18193f (IsA mine weapon) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mine is a kind of excavation", "pln": ["(: cnet_isa_81e4d95f56 (IsA mine excavation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mine is a kind of explosive device", "pln": ["(: cnet_isa_db564058a5 (IsA mine explosive_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mine detector is a kind of detector", "pln": ["(: cnet_isa_bd71b20cc4 (IsA mine_detector detector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mine disposal is a kind of disposal", "pln": ["(: cnet_isa_1c6bf39f0b (IsA mine_disposal disposal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mine field is a kind of tract", "pln": ["(: cnet_isa_87c46be7b2 (IsA mine_field tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mine pig is a kind of pig iron", "pln": ["(: cnet_isa_e35315bd26 (IsA mine_pig pig_iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minefield is a kind of tract", "pln": ["(: cnet_isa_0ce483f6d9 (IsA minefield tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minelayer is a kind of ship", "pln": ["(: cnet_isa_9dcd617d00 (IsA minelayer ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miner is a kind of laborer", "pln": ["(: cnet_isa_0b1418cf27 (IsA miner laborer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mineral is a kind of material", "pln": ["(: cnet_isa_5e5cc23f29 (IsA mineral material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mineral deficiency is a kind of lack", "pln": ["(: cnet_isa_ab298e1b9a (IsA mineral_deficiency lack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mineral extraction is a kind of extraction", "pln": ["(: cnet_isa_ea456015ff (IsA mineral_extraction extraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mineral kingdom is a kind of kingdom", "pln": ["(: cnet_isa_54e145b873 (IsA mineral_kingdom kingdom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mineral oil is a kind of oil", "pln": ["(: cnet_isa_3423657187 (IsA mineral_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mineral resource is a kind of natural resource", "pln": ["(: cnet_isa_e0e67db373 (IsA mineral_resource natural_resource) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mineral water is a kind of drinking water", "pln": ["(: cnet_isa_7074d4ba3d (IsA mineral_water drinking_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mineral wool is a kind of insulator", "pln": ["(: cnet_isa_2e9fb0b1da (IsA mineral_wool insulator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mineralocorticoid is a kind of corticosteroid", "pln": ["(: cnet_isa_289a16e88c (IsA mineralocorticoid corticosteroid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mineralogist is a kind of scientist", "pln": ["(: cnet_isa_0195fd6d3f (IsA mineralogist scientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mineralogy is a kind of geology", "pln": ["(: cnet_isa_3ebb559d0d (IsA mineralogy geology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mineshaft is a kind of excavation", "pln": ["(: cnet_isa_8aac23b948 (IsA mineshaft excavation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minesweeper is a kind of ship", "pln": ["(: cnet_isa_b854a3a165 (IsA minesweeper ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minesweeping is a kind of mine disposal", "pln": ["(: cnet_isa_a558b3752f (IsA minesweeping mine_disposal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ming is a kind of dynasty", "pln": ["(: cnet_isa_b7739c1dac (IsA ming dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ming tree is a kind of bonsai", "pln": ["(: cnet_isa_9f63feed90 (IsA ming_tree bonsai) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minge is a kind of female genitalia", "pln": ["(: cnet_isa_e957fba612 (IsA minge female_genitalia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minge is a kind of pubic hair", "pln": ["(: cnet_isa_0e99a31fe4 (IsA minge pubic_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mingling is a kind of social activity", "pln": ["(: cnet_isa_d49c73a493 (IsA mingling social_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miniature is a kind of copy", "pln": ["(: cnet_isa_4f98d57922 (IsA miniature copy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "miniature is a kind of painting", "pln": ["(: cnet_isa_fbcc51479b (IsA miniature painting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miniature fan palm is a kind of lady palm", "pln": ["(: cnet_isa_55a4df0bc0 (IsA miniature_fan_palm lady_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miniature golf is a kind of golf", "pln": ["(: cnet_isa_3a9ee7020d (IsA miniature_golf golf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miniature pinscher is a kind of pinscher", "pln": ["(: cnet_isa_ecc52f2e86 (IsA miniature_pinscher pinscher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miniature poodle is a kind of poodle", "pln": ["(: cnet_isa_ba10162255 (IsA miniature_poodle poodle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miniature schnauzer is a kind of schnauzer", "pln": ["(: cnet_isa_1190f661c7 (IsA miniature_schnauzer schnauzer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miniaturist is a kind of painter", "pln": ["(: cnet_isa_410216f9db (IsA miniaturist painter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "miniaturization is a kind of shrinking", "pln": ["(: cnet_isa_497f852c71 (IsA miniaturization shrinking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minibar is a kind of buffet", "pln": ["(: cnet_isa_78407259b2 (IsA minibar buffet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minibike is a kind of motorcycle", "pln": ["(: cnet_isa_aba92b977c (IsA minibike motorcycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minibus is a kind of bus", "pln": ["(: cnet_isa_80a047ec4c (IsA minibus bus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minicab is a kind of cab", "pln": ["(: cnet_isa_b1e79b2424 (IsA minicab cab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minicab is a kind of minicar", "pln": ["(: cnet_isa_f502352fcf (IsA minicab minicar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minicar is a kind of car", "pln": ["(: cnet_isa_c4669c9c9f (IsA minicar car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "minicomputer is a kind of digital computer", "pln": ["(: cnet_isa_8d49bdd74d (IsA minicomputer digital_computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miniconju is a kind of teton dakota", "pln": ["(: cnet_isa_06f106917f (IsA miniconju teton_dakota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minim is a kind of british capacity unit", "pln": ["(: cnet_isa_56303676da (IsA minim british_capacity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minim is a kind of united state liquid unit", "pln": ["(: cnet_isa_6a9680cb95 (IsA minim united_state_liquid_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minimalism is a kind of artistic movement", "pln": ["(: cnet_isa_5de17a7b59 (IsA minimalism artistic_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minimalist is a kind of artist", "pln": ["(: cnet_isa_6acef3e6c3 (IsA minimalist artist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "minimalist is a kind of conservative", "pln": ["(: cnet_isa_983d1bf26c (IsA minimalist conservative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minimally invasive coronary bypass surgery is a kind of closed heart surgery", "pln": ["(: cnet_isa_0e5b9e2069 (IsA minimally_invasive_coronary_bypass_surgery closed_heart_surgery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "minimization is a kind of decrease", "pln": ["(: cnet_isa_8d9315bb33 (IsA minimization decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minimum is a kind of limit", "pln": ["(: cnet_isa_7553e643e1 (IsA minimum limit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "minimum is a kind of extremum", "pln": ["(: cnet_isa_19cb6eeb3e (IsA minimum extremum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minimum is a kind of small indefinite quantity", "pln": ["(: cnet_isa_1b6999f184 (IsA minimum small_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minimum wage is a kind of wage", "pln": ["(: cnet_isa_f88db8b009 (IsA minimum_wage wage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "minimus is a kind of digit", "pln": ["(: cnet_isa_13afb086ae (IsA minimus digit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mining is a kind of defense", "pln": ["(: cnet_isa_9446e1b3e8 (IsA mining defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mining is a kind of production", "pln": ["(: cnet_isa_78e0664fe2 (IsA mining production) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mining company is a kind of company", "pln": ["(: cnet_isa_0a4a595777 (IsA mining_company company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mining engineer is a kind of engineer", "pln": ["(: cnet_isa_e020c389a4 (IsA mining_engineer engineer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mining geology is a kind of economic geology", "pln": ["(: cnet_isa_3d64c40536 (IsA mining_geology economic_geology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minion is a kind of dependant", "pln": ["(: cnet_isa_e1c78f36ce (IsA minion dependant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "miniskirt is a kind of skirt", "pln": ["(: cnet_isa_f1fd54d59e (IsA miniskirt skirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minister is a kind of public service", "pln": ["(: cnet_isa_af595c9fa1 (IsA minister public_service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minister is a kind of diplomat", "pln": ["(: cnet_isa_57b70c3e3f (IsA minister diplomat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minister is a kind of executive", "pln": ["(: cnet_isa_41a98630b7 (IsA minister executive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ministrant is a kind of curate", "pln": ["(: cnet_isa_218772453b (IsA ministrant curate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ministry is a kind of employment", "pln": ["(: cnet_isa_7f432e31da (IsA ministry employment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ministry is a kind of building", "pln": ["(: cnet_isa_43b4dd4904 (IsA ministry building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ministry is a kind of government department", "pln": ["(: cnet_isa_f221e081f5 (IsA ministry government_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ministry is a kind of priesthood", "pln": ["(: cnet_isa_41882dca17 (IsA ministry priesthood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minisub is a kind of submersible", "pln": ["(: cnet_isa_3d473c98bc (IsA minisub submersible) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minivan is a kind of car", "pln": ["(: cnet_isa_0e0f225244 (IsA minivan car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "minivan is a kind of passenger van", "pln": ["(: cnet_isa_5c37330d0f (IsA minivan passenger_van) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miniver is a kind of trimming", "pln": ["(: cnet_isa_2909a4758a (IsA miniver trimming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mink is a kind of musteline mammal", "pln": ["(: cnet_isa_22058e5927 (IsA mink musteline_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mink is a kind of fur coat", "pln": ["(: cnet_isa_eb0f3bcadc (IsA mink fur_coat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mink is a kind of fur", "pln": ["(: cnet_isa_52225b793a (IsA mink fur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minnesota is a kind of state", "pln": ["(: cnet_isa_1b7f43acb1 (IsA minnesota state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minnesota multiphasic personality inventory is a kind of self report personality inventory", "pln": ["(: cnet_isa_dd2f0e2fb5 (IsA minnesota_multiphasic_personality_inventory self_report_personality_inventory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minniebush is a kind of shrub", "pln": ["(: cnet_isa_dd065550fa (IsA minniebush shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minnow is a kind of cyprinid", "pln": ["(: cnet_isa_1b86a1f43a (IsA minnow cyprinid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minoan is a kind of cretan", "pln": ["(: cnet_isa_1afe50d87e (IsA minoan cretan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minoan civilization is a kind of culture", "pln": ["(: cnet_isa_a50c535d1f (IsA minoan_civilization culture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minor axis is a kind of axis", "pln": ["(: cnet_isa_2cc3d54bc5 (IsA minor_axis axis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minor fast day is a kind of fast day", "pln": ["(: cnet_isa_4287a2ddee (IsA minor_fast_day fast_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minor key is a kind of key", "pln": ["(: cnet_isa_ebd2c2b4d1 (IsA minor_key key) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minor league is a kind of league", "pln": ["(: cnet_isa_e4ede8bb92 (IsA minor_league league) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minor league team is a kind of team", "pln": ["(: cnet_isa_665625cd79 (IsA minor_league_team team) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minor leaguer is a kind of ballplayer", "pln": ["(: cnet_isa_fe14e0a806 (IsA minor_leaguer ballplayer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minor premise is a kind of premise", "pln": ["(: cnet_isa_022cb4d016 (IsA minor_premise premise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minor scale is a kind of mode", "pln": ["(: cnet_isa_56776d2454 (IsA minor_scale mode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minor suit is a kind of suit", "pln": ["(: cnet_isa_ef91b8c110 (IsA minor_suit suit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minor surgery is a kind of operation", "pln": ["(: cnet_isa_bfc557b437 (IsA minor_surgery operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minor term is a kind of term", "pln": ["(: cnet_isa_0dac97e7e6 (IsA minor_term term) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minor tranquilizer is a kind of tranquilizer", "pln": ["(: cnet_isa_6067f3cbbd (IsA minor_tranquilizer tranquilizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minority is a kind of number", "pln": ["(: cnet_isa_9254d7b589 (IsA minority number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minority is a kind of social group", "pln": ["(: cnet_isa_f75fb62f4d (IsA minority social_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minority is a kind of age", "pln": ["(: cnet_isa_2a248bbe4e (IsA minority age) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "minority is a kind of legal status", "pln": ["(: cnet_isa_f030f82606 (IsA minority legal_status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minority leader is a kind of legislator", "pln": ["(: cnet_isa_c53ca38f78 (IsA minority_leader legislator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minotaur is a kind of mythical monster", "pln": ["(: cnet_isa_dd3f72cba8 (IsA minotaur mythical_monster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minster is a kind of cathedral", "pln": ["(: cnet_isa_4403f57f2b (IsA minster cathedral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minstrel is a kind of performer", "pln": ["(: cnet_isa_f117e860c4 (IsA minstrel performer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minstrel show is a kind of variety show", "pln": ["(: cnet_isa_0096652441 (IsA minstrel_show variety_show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minstrel show is a kind of company", "pln": ["(: cnet_isa_11a04d036b (IsA minstrel_show company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minstrelsy is a kind of art", "pln": ["(: cnet_isa_80af668bd5 (IsA minstrelsy art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minstrelsy is a kind of ballad", "pln": ["(: cnet_isa_688026c7be (IsA minstrelsy ballad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minstrelsy is a kind of company", "pln": ["(: cnet_isa_0e981828a2 (IsA minstrelsy company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mint is a kind of plant", "pln": ["(: cnet_isa_7890aebc69 (IsA mint plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mint is a kind of candy", "pln": ["(: cnet_isa_55bd425baf (IsA mint candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mint is a kind of herb", "pln": ["(: cnet_isa_1f01c1a0fb (IsA mint herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mint is a kind of labiatae", "pln": ["(: cnet_isa_2821926438 (IsA mint labiatae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mint sauce is a kind of condiment", "pln": ["(: cnet_isa_bca935a9b4 (IsA mint_sauce condiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mintage is a kind of trade", "pln": ["(: cnet_isa_243b2e708b (IsA mintage trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mintage is a kind of fee", "pln": ["(: cnet_isa_3d012c22d0 (IsA mintage fee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mintmark is a kind of mark", "pln": ["(: cnet_isa_0f9b3e9925 (IsA mintmark mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minuartia is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_4e720ed441 (IsA minuartia caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minuend is a kind of number", "pln": ["(: cnet_isa_c234666bb7 (IsA minuend number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minuet is a kind of ballroom dancing", "pln": ["(: cnet_isa_d20b1089f4 (IsA minuet ballroom_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minuet is a kind of dance music", "pln": ["(: cnet_isa_c61a6b7c5b (IsA minuet dance_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minus sign is a kind of sign", "pln": ["(: cnet_isa_8ff30b2383 (IsA minus_sign sign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "minuscule is a kind of longhand", "pln": ["(: cnet_isa_ab485c9654 (IsA minuscule longhand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "minute is a kind of note", "pln": ["(: cnet_isa_b9974e6d4c (IsA minute note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minute is a kind of angular unit", "pln": ["(: cnet_isa_645f81d648 (IsA minute angular_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minute is a kind of time unit", "pln": ["(: cnet_isa_d68f578758 (IsA minute time_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minute book is a kind of written record", "pln": ["(: cnet_isa_95f4c77270 (IsA minute_book written_record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minute gun is a kind of gun", "pln": ["(: cnet_isa_9500b99894 (IsA minute_gun gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minute hand is a kind of hand", "pln": ["(: cnet_isa_28a01e26bd (IsA minute_hand hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minute steak is a kind of beefsteak", "pln": ["(: cnet_isa_b933e78c60 (IsA minute_steak beefsteak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minuteman is a kind of intercontinental ballistic missile", "pln": ["(: cnet_isa_b7e3e1cea9 (IsA minuteman intercontinental_ballistic_missile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minuteman is a kind of militiaman", "pln": ["(: cnet_isa_4573c241a5 (IsA minuteman militiaman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minuteness is a kind of exactness", "pln": ["(: cnet_isa_2b710585e4 (IsA minuteness exactness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minute is a kind of written record", "pln": ["(: cnet_isa_71c4cfaf8a (IsA minute written_record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minutia is a kind of detail", "pln": ["(: cnet_isa_16cf302f76 (IsA minutia detail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "minyan is a kind of quorum", "pln": ["(: cnet_isa_93a71e7b4a (IsA minyan quorum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miotic drug is a kind of drug", "pln": ["(: cnet_isa_5e07368a3e (IsA miotic_drug drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "miotic eyedrop is a kind of eye drop", "pln": ["(: cnet_isa_0b723eac6b (IsA miotic_eyedrop eye_drop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mip is a kind of unit of measurement", "pln": ["(: cnet_isa_66adaab36e (IsA mip unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mirabilis is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_08e8a3c2e7 (IsA mirabilis caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miracle is a kind of event", "pln": ["(: cnet_isa_64df8a777c (IsA miracle event) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miracle is a kind of happening", "pln": ["(: cnet_isa_e2c49912fa (IsA miracle happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miracle man is a kind of person", "pln": ["(: cnet_isa_03f41599ee (IsA miracle_man person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miracle play is a kind of play", "pln": ["(: cnet_isa_b43fa7671a (IsA miracle_play play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miraculous food is a kind of food", "pln": ["(: cnet_isa_bf808b9a97 (IsA miraculous_food food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mirage is a kind of misconception", "pln": ["(: cnet_isa_f6112f9560 (IsA mirage misconception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mirage is a kind of optical illusion", "pln": ["(: cnet_isa_201d8fa568 (IsA mirage optical_illusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miranda rule is a kind of rule", "pln": ["(: cnet_isa_ba008b1ad3 (IsA miranda_rule rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mire is a kind of bog", "pln": ["(: cnet_isa_c46f2d26c4 (IsA mire bog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mire is a kind of difficulty", "pln": ["(: cnet_isa_af0a58e0b2 (IsA mire difficulty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mire is a kind of mud", "pln": ["(: cnet_isa_72ae48082e (IsA mire mud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miri is a kind of kamarupan", "pln": ["(: cnet_isa_b0bf694167 (IsA miri kamarupan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mirid bug is a kind of leaf bug", "pln": ["(: cnet_isa_71f96c382b (IsA mirid_bug leaf_bug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miridae is a kind of arthropod family", "pln": ["(: cnet_isa_875674a5d0 (IsA miridae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miro is a kind of conifer", "pln": ["(: cnet_isa_90fb18bdc8 (IsA miro conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mirounga is a kind of mammal genus", "pln": ["(: cnet_isa_3bc5531fcb (IsA mirounga mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mirror is a kind of surface", "pln": ["(: cnet_isa_3c9ff0c1f8 (IsA mirror surface) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mirror is a kind of reflector", "pln": ["(: cnet_isa_c7fb4f0579 (IsA mirror reflector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mirror is a kind of depicting", "pln": ["(: cnet_isa_2dc76b1330 (IsA mirror depicting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mirror carp is a kind of domestic carp", "pln": ["(: cnet_isa_18fe39a87f (IsA mirror_carp domestic_carp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mirror image is a kind of likeness", "pln": ["(: cnet_isa_33e60d1617 (IsA mirror_image likeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misalignment is a kind of placement", "pln": ["(: cnet_isa_ce607e7fa3 (IsA misalignment placement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misalliance is a kind of marriage", "pln": ["(: cnet_isa_691874ad9b (IsA misalliance marriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misanthrope is a kind of grouch", "pln": ["(: cnet_isa_02e780e120 (IsA misanthrope grouch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misanthropy is a kind of unfriendliness", "pln": ["(: cnet_isa_48505e8781 (IsA misanthropy unfriendliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misanthropy is a kind of hate", "pln": ["(: cnet_isa_6ff0391263 (IsA misanthropy hate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misapplication is a kind of application", "pln": ["(: cnet_isa_8ddcf62bea (IsA misapplication application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misappropriation is a kind of borrowing", "pln": ["(: cnet_isa_afaa2f462c (IsA misappropriation borrowing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misbehavior is a kind of wrongdoing", "pln": ["(: cnet_isa_a069fdf9ce (IsA misbehavior wrongdoing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miscalculation is a kind of mistake", "pln": ["(: cnet_isa_21b215762d (IsA miscalculation mistake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miscarriage is a kind of failure", "pln": ["(: cnet_isa_9a1ede9741 (IsA miscarriage failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miscegenation is a kind of reproduction", "pln": ["(: cnet_isa_ac66d48f2c (IsA miscegenation reproduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misch metal is a kind of pyrophoric alloy", "pln": ["(: cnet_isa_b3b0138a3b (IsA misch_metal pyrophoric_alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mischief is a kind of misbehavior", "pln": ["(: cnet_isa_dd1c132cfe (IsA mischief misbehavior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misconception is a kind of idea", "pln": ["(: cnet_isa_2b3a104337 (IsA misconception idea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misconduct is a kind of management", "pln": ["(: cnet_isa_345eed225f (IsA misconduct management) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misconstrual is a kind of misinterpretation", "pln": ["(: cnet_isa_e00c5c988d (IsA misconstrual misinterpretation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misconstruction is a kind of constituent", "pln": ["(: cnet_isa_bf0ba2c96e (IsA misconstruction constituent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miscount is a kind of count", "pln": ["(: cnet_isa_85f61c9de8 (IsA miscount count) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miscue is a kind of stroke", "pln": ["(: cnet_isa_3050d3aac3 (IsA miscue stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misdeal is a kind of deal", "pln": ["(: cnet_isa_538c6bd239 (IsA misdeal deal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misdemeanor is a kind of crime", "pln": ["(: cnet_isa_a2f9f92fdf (IsA misdemeanor crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misdirection is a kind of commission", "pln": ["(: cnet_isa_89a8203905 (IsA misdirection commission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "misdirection is a kind of direction", "pln": ["(: cnet_isa_641edf5c13 (IsA misdirection direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mise en scene is a kind of stage", "pln": ["(: cnet_isa_b75fbae85a (IsA mise_en_scene stage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miser is a kind of hoarder", "pln": ["(: cnet_isa_9b999f23c9 (IsA miser hoarder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miserliness is a kind of meanness", "pln": ["(: cnet_isa_9141fb97ab (IsA miserliness meanness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misery is a kind of sadness", "pln": ["(: cnet_isa_5191bcf665 (IsA misery sadness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misery is a kind of ill being", "pln": ["(: cnet_isa_c164f23199 (IsA misery ill_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misfeasance is a kind of wrongdoing", "pln": ["(: cnet_isa_d4fa7cc8c8 (IsA misfeasance wrongdoing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misfire is a kind of breakdown", "pln": ["(: cnet_isa_1f357d0631 (IsA misfire breakdown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misfit is a kind of person", "pln": ["(: cnet_isa_d76a4f9894 (IsA misfit person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misfortune is a kind of trouble", "pln": ["(: cnet_isa_357a0f47e5 (IsA misfortune trouble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misfortune is a kind of fortune", "pln": ["(: cnet_isa_0896149324 (IsA misfortune fortune) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misgiving is a kind of doubt", "pln": ["(: cnet_isa_41003b2200 (IsA misgiving doubt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misgovernment is a kind of government", "pln": ["(: cnet_isa_c4b61fe4f3 (IsA misgovernment government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mishap is a kind of misfortune", "pln": ["(: cnet_isa_95148d71a4 (IsA mishap misfortune) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mishpocha is a kind of kin", "pln": ["(: cnet_isa_f204d27dce (IsA mishpocha kin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "misinformation is a kind of information", "pln": ["(: cnet_isa_ee9279da87 (IsA misinformation information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misinterpretation is a kind of interpretation", "pln": ["(: cnet_isa_7389e96e15 (IsA misinterpretation interpretation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misleader is a kind of deceiver", "pln": ["(: cnet_isa_c44d55f2d7 (IsA misleader deceiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misleader is a kind of leader", "pln": ["(: cnet_isa_529b18c4e0 (IsA misleader leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mismanagement is a kind of management", "pln": ["(: cnet_isa_2b7dd23a4b (IsA mismanagement management) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mismatch is a kind of counterpart", "pln": ["(: cnet_isa_410432ac4e (IsA mismatch counterpart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misnomer is a kind of name", "pln": ["(: cnet_isa_528cdfe4b5 (IsA misnomer name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miso is a kind of spread", "pln": ["(: cnet_isa_a8a16a717f (IsA miso spread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misocainea is a kind of misoneism", "pln": ["(: cnet_isa_4c578b9a3c (IsA misocainea misoneism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "misogamist is a kind of person", "pln": ["(: cnet_isa_3d6bd8f96c (IsA misogamist person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "misogamy is a kind of hate", "pln": ["(: cnet_isa_3098252b3d (IsA misogamy hate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misogynist is a kind of misanthrope", "pln": ["(: cnet_isa_aa584fcd8a (IsA misogynist misanthrope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "misogyny is a kind of hate", "pln": ["(: cnet_isa_15eea32aab (IsA misogyny hate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misology is a kind of hate", "pln": ["(: cnet_isa_dd50a645f0 (IsA misology hate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misoneism is a kind of hate", "pln": ["(: cnet_isa_0303179fbc (IsA misoneism hate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misopedia is a kind of hate", "pln": ["(: cnet_isa_c6232f8450 (IsA misopedia hate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misprint is a kind of error", "pln": ["(: cnet_isa_b5d889c9ec (IsA misprint error) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mispronunciation is a kind of pronunciation", "pln": ["(: cnet_isa_b378803ccd (IsA mispronunciation pronunciation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misquotation is a kind of quotation", "pln": ["(: cnet_isa_1bc5b1b4a7 (IsA misquotation quotation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "misreading is a kind of misinterpretation", "pln": ["(: cnet_isa_4aa5430248 (IsA misreading misinterpretation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "misrepresentation is a kind of falsehood", "pln": ["(: cnet_isa_6457b661d8 (IsA misrepresentation falsehood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miss is a kind of title", "pln": ["(: cnet_isa_1687ae3956 (IsA miss title) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miss is a kind of failure", "pln": ["(: cnet_isa_c008b4fdf6 (IsA miss failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "missal is a kind of prayer book", "pln": ["(: cnet_isa_ff5b5850a3 (IsA missal prayer_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "missel thrush is a kind of thrush", "pln": ["(: cnet_isa_6b4085d748 (IsA missel_thrush thrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "missile is a kind of rocket", "pln": ["(: cnet_isa_8fd6b2f785 (IsA missile rocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "missile is a kind of weapon", "pln": ["(: cnet_isa_ba06bb4f19 (IsA missile weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "missile defense system is a kind of naval weaponry", "pln": ["(: cnet_isa_0b6917a2f4 (IsA missile_defense_system naval_weaponry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "missing link is a kind of primitive", "pln": ["(: cnet_isa_313d2c78ce (IsA missing_link primitive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mission is a kind of assignment", "pln": ["(: cnet_isa_91c99eec80 (IsA mission assignment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mission is a kind of work", "pln": ["(: cnet_isa_df9560f905 (IsA mission work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mission is a kind of nongovernmental organization", "pln": ["(: cnet_isa_e4c9cae289 (IsA mission nongovernmental_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mission is a kind of operation", "pln": ["(: cnet_isa_a87c11a82a (IsA mission operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mission bell is a kind of fritillary", "pln": ["(: cnet_isa_4c4cb6b2a9 (IsA mission_bell fritillary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mission impossible is a kind of mission", "pln": ["(: cnet_isa_7cf9be94ef (IsA mission_impossible mission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "missionary is a kind of religionist", "pln": ["(: cnet_isa_7e417122ec (IsA missionary religionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "missionary is a kind of teacher", "pln": ["(: cnet_isa_4b86280b16 (IsA missionary teacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "missionary position is a kind of position", "pln": ["(: cnet_isa_ff5cc22429 (IsA missionary_position position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mississippi is a kind of state", "pln": ["(: cnet_isa_04bc662070 (IsA mississippi state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mississippian is a kind of american", "pln": ["(: cnet_isa_330df0458c (IsA mississippian american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "missouri is a kind of chiwere", "pln": ["(: cnet_isa_8d01ac10de (IsA missouri chiwere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "missouri is a kind of siouan", "pln": ["(: cnet_isa_fea7ab3325 (IsA missouri siouan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "missouri goldenrod is a kind of goldenrod", "pln": ["(: cnet_isa_922d726a97 (IsA missouri_goldenrod goldenrod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "missouri primrose is a kind of evening primrose", "pln": ["(: cnet_isa_57dcd50845 (IsA missouri_primrose evening_primrose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "missourian is a kind of american", "pln": ["(: cnet_isa_f4d6e05555 (IsA missourian american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misspelling is a kind of spelling", "pln": ["(: cnet_isa_522c226032 (IsA misspelling spelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misstatement is a kind of statement", "pln": ["(: cnet_isa_f9a3f28b77 (IsA misstatement statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "missus is a kind of wife", "pln": ["(: cnet_isa_660bf1f2f7 (IsA missus wife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mist is a kind of fog", "pln": ["(: cnet_isa_41da6291bd (IsA mist fog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mistake is a kind of nonaccomplishment", "pln": ["(: cnet_isa_1370c00eac (IsA mistake nonaccomplishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mistake is a kind of misconception", "pln": ["(: cnet_isa_63b7dbf387 (IsA mistake misconception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mistake is a kind of not correctable", "pln": ["(: cnet_isa_ec1bcebfda (IsA mistake not_correctable) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mister is a kind of title", "pln": ["(: cnet_isa_efb072bbac (IsA mister title) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mistflower is a kind of flower", "pln": ["(: cnet_isa_61d000c916 (IsA mistflower flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mistletoe is a kind of parasitic plant", "pln": ["(: cnet_isa_ec3a561aec (IsA mistletoe parasitic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mistletoe cactus is a kind of cactus", "pln": ["(: cnet_isa_72b0b05e59 (IsA mistletoe_cactus cactus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mistletoe fig is a kind of fig tree", "pln": ["(: cnet_isa_d8011290cb (IsA mistletoe_fig fig_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mistral is a kind of north wind", "pln": ["(: cnet_isa_b3a0e5b7f9 (IsA mistral north_wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mistranslation is a kind of translation", "pln": ["(: cnet_isa_efc4c4e4c7 (IsA mistranslation translation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mistreatment is a kind of practice", "pln": ["(: cnet_isa_dd48b82279 (IsA mistreatment practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mistress is a kind of employer", "pln": ["(: cnet_isa_3d17fe80db (IsA mistress employer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mistress is a kind of lover", "pln": ["(: cnet_isa_6d9e0fc022 (IsA mistress lover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mistress is a kind of woman", "pln": ["(: cnet_isa_4cd1238395 (IsA mistress woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mistrial is a kind of trial", "pln": ["(: cnet_isa_11b5b41841 (IsA mistrial trial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "misuse is a kind of use", "pln": ["(: cnet_isa_31b1294f61 (IsA misuse use) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mit is a kind of college", "pln": ["(: cnet_isa_fa06040a26 (IsA mit college) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mit is a kind of in massachusett", "pln": ["(: cnet_isa_c4e2be3062 (IsA mit in_massachusett) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mit is a kind of on earth", "pln": ["(: cnet_isa_3d3ecbf6a9 (IsA mit on_earth) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mit is a kind of university", "pln": ["(: cnet_isa_11f39a04fa (IsA mit university) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mitchella is a kind of asterid dicot genus", "pln": ["(: cnet_isa_ac6f8655c8 (IsA mitchella asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mite is a kind of acarine", "pln": ["(: cnet_isa_35a2115a5f (IsA mite acarine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mitella is a kind of rosid dicot genus", "pln": ["(: cnet_isa_ba69afeb0a (IsA mitella rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miter is a kind of headdress", "pln": ["(: cnet_isa_4c3536ff7f (IsA miter headdress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "miter is a kind of surface", "pln": ["(: cnet_isa_037a3c14ef (IsA miter surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miter box is a kind of hand tool", "pln": ["(: cnet_isa_07bb5f88e6 (IsA miter_box hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miter joint is a kind of joint", "pln": ["(: cnet_isa_470911d01c (IsA miter_joint joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miterwort is a kind of herb", "pln": ["(: cnet_isa_4d466022e7 (IsA miterwort herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mithraism is a kind of religion", "pln": ["(: cnet_isa_21f3e4ed73 (IsA mithraism religion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mithraist is a kind of disciple", "pln": ["(: cnet_isa_684b91dca0 (IsA mithraist disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mitigating circumstance is a kind of circumstance", "pln": ["(: cnet_isa_42a263af9d (IsA mitigating_circumstance circumstance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mitochondrion is a kind of organelle", "pln": ["(: cnet_isa_38df9b58b6 (IsA mitochondrion organelle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mitogen is a kind of agent", "pln": ["(: cnet_isa_efd90586cb (IsA mitogen agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mitosis is a kind of cell division", "pln": ["(: cnet_isa_790b79108e (IsA mitosis cell_division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mitral stenosis is a kind of stenosis", "pln": ["(: cnet_isa_3ba17273b2 (IsA mitral_stenosis stenosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mitral stenosis is a kind of valvular heart disease", "pln": ["(: cnet_isa_f5f246f92f (IsA mitral_stenosis valvular_heart_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mitral valve is a kind of atrioventricular valve", "pln": ["(: cnet_isa_fb79151733 (IsA mitral_valve atrioventricular_valve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mitral valve prolapse is a kind of valvular heart disease", "pln": ["(: cnet_isa_3765e888d1 (IsA mitral_valve_prolapse valvular_heart_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mitrula elegan is a kind of discomycete", "pln": ["(: cnet_isa_fe8719987c (IsA mitrula_elegan discomycete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mittelschmerz is a kind of pain", "pln": ["(: cnet_isa_c2bffabaa4 (IsA mittelschmerz pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mitten is a kind of glove", "pln": ["(: cnet_isa_56b247e608 (IsA mitten glove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mitzvah is a kind of act", "pln": ["(: cnet_isa_6aa0246114 (IsA mitzvah act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mitzvah is a kind of teaching", "pln": ["(: cnet_isa_154d1e7016 (IsA mitzvah teaching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "miwok is a kind of penutian", "pln": ["(: cnet_isa_8d9ec0d973 (IsA miwok penutian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mix is a kind of combination", "pln": ["(: cnet_isa_571148e58c (IsA mix combination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mix is a kind of combining", "pln": ["(: cnet_isa_e7189e9084 (IsA mix combining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mix is a kind of concoction", "pln": ["(: cnet_isa_904d84875e (IsA mix concoction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mixed blood is a kind of person", "pln": ["(: cnet_isa_74b714e52d (IsA mixed_blood person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mixed bud is a kind of bud", "pln": ["(: cnet_isa_9e17f0c6d3 (IsA mixed_bud bud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mixed drink is a kind of alcohol", "pln": ["(: cnet_isa_ffb95fd024 (IsA mixed_drink alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mixed economy is a kind of economy", "pln": ["(: cnet_isa_f2df0a4ce8 (IsA mixed_economy economy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mixed farming is a kind of farming", "pln": ["(: cnet_isa_057432941c (IsA mixed_farming farming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mixed marriage is a kind of marriage", "pln": ["(: cnet_isa_e37acb3c3b (IsA mixed_marriage marriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mixed metaphor is a kind of metaphor", "pln": ["(: cnet_isa_228868b3ad (IsA mixed_metaphor metaphor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mixed nuisance is a kind of nuisance", "pln": ["(: cnet_isa_b412cc4a0d (IsA mixed_nuisance nuisance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mixer is a kind of electronic equipment", "pln": ["(: cnet_isa_4016635d7b (IsA mixer electronic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mixer is a kind of kitchen utensil", "pln": ["(: cnet_isa_fa8344e103 (IsA mixer kitchen_utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mixer is a kind of beverage", "pln": ["(: cnet_isa_b80e96634e (IsA mixer beverage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mixing bowl is a kind of bowl", "pln": ["(: cnet_isa_438b429727 (IsA mixing_bowl bowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mixing faucet is a kind of faucet", "pln": ["(: cnet_isa_ba7aa338aa (IsA mixing_faucet faucet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mixology is a kind of skill", "pln": ["(: cnet_isa_475ec0daff (IsA mixology skill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mixture is a kind of substance", "pln": ["(: cnet_isa_1f96b73299 (IsA mixture substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mizzen is a kind of fore and aft sail", "pln": ["(: cnet_isa_cf25da4b58 (IsA mizzen fore_and_aft_sail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mizzenmast is a kind of mast", "pln": ["(: cnet_isa_945cf6a1da (IsA mizzenmast mast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mnemonic is a kind of device", "pln": ["(: cnet_isa_cc311af2d5 (IsA mnemonic device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mnemonic is a kind of method", "pln": ["(: cnet_isa_caa7a6c5d5 (IsA mnemonic method) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mnemonist is a kind of expert", "pln": ["(: cnet_isa_93a66b8c4a (IsA mnemonist expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mniaceae is a kind of moss family", "pln": ["(: cnet_isa_9f40f4225a (IsA mniaceae moss_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mnium is a kind of moss genus", "pln": ["(: cnet_isa_7c4090ca27 (IsA mnium moss_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moa is a kind of ratite", "pln": ["(: cnet_isa_04c8d182af (IsA moa ratite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moat is a kind of trench", "pln": ["(: cnet_isa_69d4c640cd (IsA moat trench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mob is a kind of crowd", "pln": ["(: cnet_isa_049cd172e6 (IsA mob crowd) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mobcap is a kind of cap", "pln": ["(: cnet_isa_3330befef7 (IsA mobcap cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mobile is a kind of sculpture", "pln": ["(: cnet_isa_23cacbf414 (IsA mobile sculpture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mobile home is a kind of housing", "pln": ["(: cnet_isa_12b276ab67 (IsA mobile_home housing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mobile home is a kind of trailer", "pln": ["(: cnet_isa_ac32b8e851 (IsA mobile_home trailer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mobility is a kind of quality", "pln": ["(: cnet_isa_aa33c3ec03 (IsA mobility quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mobilization is a kind of assembly", "pln": ["(: cnet_isa_5ae68f9e2d (IsA mobilization assembly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mobilization is a kind of social control", "pln": ["(: cnet_isa_1335c747ae (IsA mobilization social_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mobius strip is a kind of surface", "pln": ["(: cnet_isa_ff31b2dddb (IsA mobius_strip surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mobula is a kind of fish genus", "pln": ["(: cnet_isa_a2472b2f48 (IsA mobula fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mobulidae is a kind of fish family", "pln": ["(: cnet_isa_b01ab03e41 (IsA mobulidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mocassin is a kind of shoe", "pln": ["(: cnet_isa_3bcb4a7026 (IsA mocassin shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moccasin flower is a kind of lady s slipper", "pln": ["(: cnet_isa_fd782fb57d (IsA moccasin_flower lady_s_slipper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mocha is a kind of brown", "pln": ["(: cnet_isa_e3f33bebed (IsA mocha brown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mocha is a kind of coffee", "pln": ["(: cnet_isa_db449f20a9 (IsA mocha coffee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mocha is a kind of flavorer", "pln": ["(: cnet_isa_6a0504b00e (IsA mocha flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mocha is a kind of leather", "pln": ["(: cnet_isa_fb9132b48f (IsA mocha leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mock is a kind of derision", "pln": ["(: cnet_isa_4258b475b3 (IsA mock derision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mock heroic is a kind of caricature", "pln": ["(: cnet_isa_8f265f5cfa (IsA mock_heroic caricature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mock orange is a kind of philadelphus", "pln": ["(: cnet_isa_11e65012c6 (IsA mock_orange philadelphus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mock privet is a kind of shrub", "pln": ["(: cnet_isa_4bf174cb88 (IsA mock_privet shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mock turtle soup is a kind of soup", "pln": ["(: cnet_isa_543cb8eda2 (IsA mock_turtle_soup soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mock up is a kind of model", "pln": ["(: cnet_isa_6c527caf3f (IsA mock_up model) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mockernut is a kind of hickory", "pln": ["(: cnet_isa_2a3a090afa (IsA mockernut hickory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mockingbird is a kind of oscine", "pln": ["(: cnet_isa_1d4280585f (IsA mockingbird oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mod is a kind of adolescent", "pln": ["(: cnet_isa_81a830d198 (IsA mod adolescent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mod con is a kind of appliance", "pln": ["(: cnet_isa_e133e52480 (IsA mod_con appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modal auxiliary verb is a kind of auxiliary verb", "pln": ["(: cnet_isa_37cd06606f (IsA modal_auxiliary_verb auxiliary_verb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modal logic is a kind of logic", "pln": ["(: cnet_isa_7475e51a8a (IsA modal_logic logic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modal logic is a kind of symbolic logic", "pln": ["(: cnet_isa_52d2900758 (IsA modal_logic symbolic_logic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modal scheme bf is a kind of modal operator", "pln": ["(: cnet_isa_dde41e9528 (IsA modal_scheme_bf modal_operator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "modality is a kind of treatment", "pln": ["(: cnet_isa_8454065a8d (IsA modality treatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modality is a kind of sense", "pln": ["(: cnet_isa_de9f5831cb (IsA modality sense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modality is a kind of logical relation", "pln": ["(: cnet_isa_5478c5650b (IsA modality logical_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mode is a kind of diatonic scale", "pln": ["(: cnet_isa_0872e0d20c (IsA mode diatonic_scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mode is a kind of condition", "pln": ["(: cnet_isa_72cb6dc3f8 (IsA mode condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mode is a kind of average", "pln": ["(: cnet_isa_54131f7129 (IsA mode average) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "model is a kind of representation", "pln": ["(: cnet_isa_339d4916a2 (IsA model representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "model is a kind of hypothesis", "pln": ["(: cnet_isa_7b7a91b27c (IsA model hypothesis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "model is a kind of kind", "pln": ["(: cnet_isa_51c296c0fa (IsA model kind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "model is a kind of assistant", "pln": ["(: cnet_isa_c5501e899f (IsA model assistant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "model is a kind of leader", "pln": ["(: cnet_isa_36fa7caab3 (IsA model leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modeler is a kind of creator", "pln": ["(: cnet_isa_e958908757 (IsA modeler creator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modeling is a kind of sculpture", "pln": ["(: cnet_isa_cb43e580e7 (IsA modeling sculpture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modem is a kind of electronic equipment", "pln": ["(: cnet_isa_eba01edd5d (IsA modem electronic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moderate breeze is a kind of breeze", "pln": ["(: cnet_isa_e244f5e407 (IsA moderate_breeze breeze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moderate gale is a kind of gale", "pln": ["(: cnet_isa_b9f6f00fa3 (IsA moderate_gale gale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moderation is a kind of decrease", "pln": ["(: cnet_isa_25404be960 (IsA moderation decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moderation is a kind of degree", "pln": ["(: cnet_isa_5b33b0f232 (IsA moderation degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moderationism is a kind of policy", "pln": ["(: cnet_isa_28f2ceb98f (IsA moderationism policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moderationist is a kind of drinker", "pln": ["(: cnet_isa_c8bce35e5b (IsA moderationist drinker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moderator is a kind of mediator", "pln": ["(: cnet_isa_7ccc57bea4 (IsA moderator mediator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moderator is a kind of presiding officer", "pln": ["(: cnet_isa_3797d596c6 (IsA moderator presiding_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moderator is a kind of inhibitor", "pln": ["(: cnet_isa_135579d163 (IsA moderator inhibitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "moderatorship is a kind of position", "pln": ["(: cnet_isa_91c5a313e1 (IsA moderatorship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modern is a kind of proportional font", "pln": ["(: cnet_isa_c20efa6ab8 (IsA modern proportional_font) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modern is a kind of person", "pln": ["(: cnet_isa_a1659b5a1a (IsA modern person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modern ballet is a kind of ballet", "pln": ["(: cnet_isa_fb1a1f6b65 (IsA modern_ballet ballet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modern dance is a kind of stage dancing", "pln": ["(: cnet_isa_eb6eba93a9 (IsA modern_dance stage_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modern english is a kind of english", "pln": ["(: cnet_isa_da7ff86b04 (IsA modern_english english) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "modern era is a kind of era", "pln": ["(: cnet_isa_5c7b171ee9 (IsA modern_era era) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modern greek is a kind of greek", "pln": ["(: cnet_isa_5fdc338fc9 (IsA modern_greek greek) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "modern hebrew is a kind of hebrew", "pln": ["(: cnet_isa_b650c6e213 (IsA modern_hebrew hebrew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modern jazz is a kind of jazz", "pln": ["(: cnet_isa_21dedaf9e9 (IsA modern_jazz jazz) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modernism is a kind of practice", "pln": ["(: cnet_isa_49311de31c (IsA modernism practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modernism is a kind of genre", "pln": ["(: cnet_isa_7a52e2c804 (IsA modernism genre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modernist is a kind of artist", "pln": ["(: cnet_isa_96caee21d5 (IsA modernist artist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modernity is a kind of currentness", "pln": ["(: cnet_isa_e141637961 (IsA modernity currentness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modernization is a kind of improvement", "pln": ["(: cnet_isa_f4d599a9a9 (IsA modernization improvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modernization is a kind of adaptation", "pln": ["(: cnet_isa_6192beefe9 (IsA modernization adaptation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "modesty is a kind of decency", "pln": ["(: cnet_isa_10a148d109 (IsA modesty decency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modesty is a kind of propriety", "pln": ["(: cnet_isa_7fad245d25 (IsA modesty propriety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modicum is a kind of small indefinite quantity", "pln": ["(: cnet_isa_c56386d98e (IsA modicum small_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modification is a kind of copy", "pln": ["(: cnet_isa_3e1c5cd5a1 (IsA modification copy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modification is a kind of grammatical relation", "pln": ["(: cnet_isa_91c0d973dd (IsA modification grammatical_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modified american plan is a kind of american plan", "pln": ["(: cnet_isa_5f79f1ad21 (IsA modified_american_plan american_plan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modified radical mastectomy is a kind of mastectomy", "pln": ["(: cnet_isa_4ffcea4f1e (IsA modified_radical_mastectomy mastectomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modifier is a kind of gene", "pln": ["(: cnet_isa_e995d4ab8a (IsA modifier gene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modifier is a kind of content word", "pln": ["(: cnet_isa_d1ddf79c2c (IsA modifier content_word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modifier is a kind of moderator", "pln": ["(: cnet_isa_f38e3eb711 (IsA modifier moderator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "modillion is a kind of bracket", "pln": ["(: cnet_isa_54bd502c96 (IsA modillion bracket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modiolus is a kind of bone", "pln": ["(: cnet_isa_93beb61ccf (IsA modiolus bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mod is a kind of youth subculture", "pln": ["(: cnet_isa_eac03fd698 (IsA mod youth_subculture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modulation is a kind of revision", "pln": ["(: cnet_isa_33a21e8bec (IsA modulation revision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "modulation is a kind of manner of speaking", "pln": ["(: cnet_isa_41f4e9a27e (IsA modulation manner_of_speaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "modulation is a kind of transmission", "pln": ["(: cnet_isa_1271a2e902 (IsA modulation transmission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "module is a kind of compartment", "pln": ["(: cnet_isa_c3821e7692 (IsA module compartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "module is a kind of component", "pln": ["(: cnet_isa_7691561828 (IsA module component) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "module is a kind of computer circuit", "pln": ["(: cnet_isa_2c0b779174 (IsA module computer_circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "modulus is a kind of coefficient", "pln": ["(: cnet_isa_12f3769b4e (IsA modulus coefficient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modulus is a kind of absolute value", "pln": ["(: cnet_isa_483cdf9df7 (IsA modulus absolute_value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "modulus is a kind of integer", "pln": ["(: cnet_isa_03c8bac003 (IsA modulus integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modulus of rigidity is a kind of coefficient of elasticity", "pln": ["(: cnet_isa_b82ddcc27c (IsA modulus_of_rigidity coefficient_of_elasticity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "modus vivendi is a kind of accommodation", "pln": ["(: cnet_isa_0e49436a25 (IsA modus_vivendi accommodation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moehringia is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_b181406fa1 (IsA moehringia caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moeller s glossitis is a kind of glossitis", "pln": ["(: cnet_isa_e65d0ffd32 (IsA moeller_s_glossitis glossitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "moghul is a kind of ruler", "pln": ["(: cnet_isa_4acb4ced47 (IsA moghul ruler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mogul is a kind of bulge", "pln": ["(: cnet_isa_5059e9bf93 (IsA mogul bulge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mogul empire is a kind of empire", "pln": ["(: cnet_isa_97a00d2715 (IsA mogul_empire empire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mohair is a kind of fabric", "pln": ["(: cnet_isa_31b6622b33 (IsA mohair fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mohammedan is a kind of follower", "pln": ["(: cnet_isa_ef7616e4ea (IsA mohammedan follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mohave is a kind of yuman", "pln": ["(: cnet_isa_9e107e40f1 (IsA mohave yuman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mohave is a kind of hoka", "pln": ["(: cnet_isa_912bdbf8f2 (IsA mohave hoka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mohawk is a kind of iroquoian", "pln": ["(: cnet_isa_7d3a9544e4 (IsA mohawk iroquoian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "molasses taffy is a kind of taffy", "pln": ["(: cnet_isa_7d663989ce (IsA molasses_taffy taffy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "molding is a kind of creating from raw materials", "pln": ["(: cnet_isa_53c81aa7ff (IsA molding creating_from_raw_materials) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mohawk is a kind of iroquois", "pln": ["(: cnet_isa_53e501b379 (IsA mohawk iroquois) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mohawk haircut is a kind of haircut", "pln": ["(: cnet_isa_c1ec1509cc (IsA mohawk_haircut haircut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mohican is a kind of algonquian", "pln": ["(: cnet_isa_035ebaf6e3 (IsA mohican algonquian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mohria is a kind of fern genus", "pln": ["(: cnet_isa_c7be8e97c0 (IsA mohria fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moh scale is a kind of scale", "pln": ["(: cnet_isa_99703d3f3f (IsA moh_scale scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moiety is a kind of social group", "pln": ["(: cnet_isa_e52c0a70a5 (IsA moiety social_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moiety is a kind of one half", "pln": ["(: cnet_isa_e99037813b (IsA moiety one_half) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moirae is a kind of greek deity", "pln": ["(: cnet_isa_213d603260 (IsA moirae greek_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moire is a kind of fabric", "pln": ["(: cnet_isa_be574c07c2 (IsA moire fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moistening is a kind of wetting", "pln": ["(: cnet_isa_28a3da56a4 (IsA moistening wetting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moisture is a kind of wetness", "pln": ["(: cnet_isa_3d42abc07c (IsA moisture wetness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mojarra is a kind of percoid fish", "pln": ["(: cnet_isa_d0320fc6d7 (IsA mojarra percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mojave aster is a kind of wildflower", "pln": ["(: cnet_isa_bca804287f (IsA mojave_aster wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mojave rattlesnake is a kind of rattlesnake", "pln": ["(: cnet_isa_bdf638e6d3 (IsA mojave_rattlesnake rattlesnake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mojo is a kind of magic", "pln": ["(: cnet_isa_47f45432e0 (IsA mojo magic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moke is a kind of domestic ass", "pln": ["(: cnet_isa_dc3d19ea28 (IsA moke domestic_ass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moksa is a kind of cycle of rebirth", "pln": ["(: cnet_isa_c9f79ebb8b (IsA moksa cycle_of_rebirth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mokulu is a kind of east chadic", "pln": ["(: cnet_isa_6bc15015cd (IsA mokulu east_chadic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molality is a kind of concentration", "pln": ["(: cnet_isa_d4bed6295f (IsA molality concentration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molar is a kind of tooth", "pln": ["(: cnet_isa_96bcf2408f (IsA molar tooth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molarity is a kind of concentration", "pln": ["(: cnet_isa_9c4bec19ed (IsA molarity concentration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molass is a kind of syrup", "pln": ["(: cnet_isa_66f103b7c3 (IsA molass syrup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molass cookie is a kind of cookie", "pln": ["(: cnet_isa_cecd756514 (IsA molass_cookie cookie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molass kiss is a kind of kiss", "pln": ["(: cnet_isa_45fd8db96d (IsA molass_kiss kiss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molass taffy is a kind of taffy", "pln": ["(: cnet_isa_037e667d7c (IsA molass_taffy taffy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mold is a kind of container", "pln": ["(: cnet_isa_879f9c9957 (IsA mold container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mold is a kind of sculpture", "pln": ["(: cnet_isa_b35877dd83 (IsA mold sculpture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mold is a kind of fungus", "pln": ["(: cnet_isa_912776bf57 (IsA mold fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mold is a kind of soil", "pln": ["(: cnet_isa_e0c4b48467 (IsA mold soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moldboard is a kind of wedge", "pln": ["(: cnet_isa_802597f8c2 (IsA moldboard wedge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moldboard plow is a kind of plow", "pln": ["(: cnet_isa_bedefb10c8 (IsA moldboard_plow plow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molded salad is a kind of salad", "pln": ["(: cnet_isa_9dacdfa579 (IsA molded_salad salad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molding is a kind of creating from raw material", "pln": ["(: cnet_isa_9c2e0e755e (IsA molding creating_from_raw_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "molding is a kind of decoration", "pln": ["(: cnet_isa_287f1a678f (IsA molding decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molding is a kind of edge", "pln": ["(: cnet_isa_fb25d206dc (IsA molding edge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moldovan monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_258329393f (IsA moldovan_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mole is a kind of insectivore", "pln": ["(: cnet_isa_2814eb9117 (IsA mole insectivore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mole is a kind of blemish", "pln": ["(: cnet_isa_213be0fcaa (IsA mole blemish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mole is a kind of sauce", "pln": ["(: cnet_isa_058bf4a692 (IsA mole sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mole cricket is a kind of cricket", "pln": ["(: cnet_isa_a74c82a1b6 (IsA mole_cricket cricket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mole rat is a kind of rodent", "pln": ["(: cnet_isa_e95354a0b4 (IsA mole_rat rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mole salamander is a kind of ambystomid", "pln": ["(: cnet_isa_f0d0d2c74f (IsA mole_salamander ambystomid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molecular biologist is a kind of biologist", "pln": ["(: cnet_isa_1a597a9878 (IsA molecular_biologist biologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molecular biology is a kind of biology", "pln": ["(: cnet_isa_6ea3cfdd0a (IsA molecular_biology biology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molecular formula is a kind of formula", "pln": ["(: cnet_isa_e99b4a776c (IsA molecular_formula formula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molecular genetic is a kind of genetic", "pln": ["(: cnet_isa_e86405e263 (IsA molecular_genetic genetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molecular weight is a kind of mass", "pln": ["(: cnet_isa_c8a4070e4b (IsA molecular_weight mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molecule is a kind of collection of atom", "pln": ["(: cnet_isa_7c20fc5bb6 (IsA molecule collection_of_atom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molecule is a kind of unit", "pln": ["(: cnet_isa_c4db548e67 (IsA molecule unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molehill is a kind of knoll", "pln": ["(: cnet_isa_cd6f085977 (IsA molehill knoll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moleskin is a kind of fabric", "pln": ["(: cnet_isa_8b856aa660 (IsA moleskin fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molestation is a kind of sexual assault", "pln": ["(: cnet_isa_983a1c347f (IsA molestation sexual_assault) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molester is a kind of wrongdoer", "pln": ["(: cnet_isa_af482804eb (IsA molester wrongdoer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molidae is a kind of fish family", "pln": ["(: cnet_isa_2894121c13 (IsA molidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moll is a kind of criminal", "pln": ["(: cnet_isa_4e5cc28caa (IsA moll criminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mollah is a kind of moslem", "pln": ["(: cnet_isa_79c2631f02 (IsA mollah moslem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mollie is a kind of topminnow", "pln": ["(: cnet_isa_857b8c3934 (IsA mollie topminnow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mollienesia is a kind of fish genus", "pln": ["(: cnet_isa_642d6c9ac1 (IsA mollienesia fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mollification is a kind of peaceableness", "pln": ["(: cnet_isa_7267ee0ce4 (IsA mollification peaceableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molluga is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_c561b75475 (IsA molluga caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mollusca is a kind of phylum", "pln": ["(: cnet_isa_457b2b9e04 (IsA mollusca phylum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molluscum is a kind of skin disease", "pln": ["(: cnet_isa_c9ccd139e2 (IsA molluscum skin_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molluscum contagiosum is a kind of molluscum", "pln": ["(: cnet_isa_80d96f7a56 (IsA molluscum_contagiosum molluscum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mollusk is a kind of invertebrate", "pln": ["(: cnet_isa_8a9e627003 (IsA mollusk invertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mollusk family is a kind of family", "pln": ["(: cnet_isa_f8e6d8a10c (IsA mollusk_family family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mollusk genus is a kind of genus", "pln": ["(: cnet_isa_0fefc88d80 (IsA mollusk_genus genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molly miller is a kind of blenny", "pln": ["(: cnet_isa_16b4ffec2a (IsA molly_miller blenny) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mollycoddle is a kind of darling", "pln": ["(: cnet_isa_65def50b97 (IsA mollycoddle darling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moloch is a kind of agamid", "pln": ["(: cnet_isa_9fdda36c8c (IsA moloch agamid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moloch is a kind of power", "pln": ["(: cnet_isa_0d08e9c95d (IsA moloch power) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molossidae is a kind of mammal family", "pln": ["(: cnet_isa_d03948e184 (IsA molossidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molothrus is a kind of bird genus", "pln": ["(: cnet_isa_5f39e345e7 (IsA molothrus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molotov cocktail is a kind of improvised explosive device", "pln": ["(: cnet_isa_f7c2deda53 (IsA molotov_cocktail improvised_explosive_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molt is a kind of shedding", "pln": ["(: cnet_isa_a1198163d4 (IsA molt shedding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "molter is a kind of animal", "pln": ["(: cnet_isa_3ca99b1075 (IsA molter animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molucca balm is a kind of herb", "pln": ["(: cnet_isa_1d15941827 (IsA molucca_balm herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molucella is a kind of asterid dicot genus", "pln": ["(: cnet_isa_a1cca41d59 (IsA molucella asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molva is a kind of fish genus", "pln": ["(: cnet_isa_ffe2d9b0bc (IsA molva fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molybdenite is a kind of mineral", "pln": ["(: cnet_isa_0527df9643 (IsA molybdenite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "molybdenum is a kind of metallic element", "pln": ["(: cnet_isa_12a60a7736 (IsA molybdenum metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "molybdenum steel is a kind of alloy steel", "pln": ["(: cnet_isa_0f8b1c71c1 (IsA molybdenum_steel alloy_steel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mom is a kind of parent", "pln": ["(: cnet_isa_ca9655db43 (IsA mom parent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mombin is a kind of edible fruit", "pln": ["(: cnet_isa_a16afb83ec (IsA mombin edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mombin is a kind of fruit tree", "pln": ["(: cnet_isa_894157777e (IsA mombin fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moment is a kind of force", "pln": ["(: cnet_isa_21386d7e66 (IsA moment force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moment is a kind of statistic", "pln": ["(: cnet_isa_0dc93b6dfc (IsA moment statistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moment is a kind of point", "pln": ["(: cnet_isa_095432eede (IsA moment point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moment is a kind of time", "pln": ["(: cnet_isa_71eb9d0434 (IsA moment time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moment magnitude scale is a kind of scale", "pln": ["(: cnet_isa_582c50b331 (IsA moment_magnitude_scale scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moment of couple is a kind of moment", "pln": ["(: cnet_isa_bd6145aea1 (IsA moment_of_couple moment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moment of inertia is a kind of inertia", "pln": ["(: cnet_isa_d12099a7fe (IsA moment_of_inertia inertia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moment of inertia is a kind of moment", "pln": ["(: cnet_isa_9ae35782ab (IsA moment_of_inertia moment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moment of truth is a kind of moment", "pln": ["(: cnet_isa_fef5b3a90a (IsA moment_of_truth moment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "momentousness is a kind of importance", "pln": ["(: cnet_isa_760ce8f429 (IsA momentousness importance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "momentum is a kind of force", "pln": ["(: cnet_isa_348f50a4f6 (IsA momentum force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "momentum is a kind of physical property", "pln": ["(: cnet_isa_e8f4eb9f7f (IsA momentum physical_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "momism is a kind of protection", "pln": ["(: cnet_isa_4c26e43f86 (IsA momism protection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "momordica is a kind of dicot genus", "pln": ["(: cnet_isa_2b6c9c8608 (IsA momordica dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "momotidae is a kind of bird family", "pln": ["(: cnet_isa_480a66717d (IsA momotidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "momotus is a kind of bird genus", "pln": ["(: cnet_isa_5b253ff9df (IsA momotus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mon is a kind of mon khmer", "pln": ["(: cnet_isa_91a2c67a46 (IsA mon mon_khmer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mon is a kind of buddhist", "pln": ["(: cnet_isa_59e92f2463 (IsA mon buddhist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mon khmer is a kind of austro asiatic", "pln": ["(: cnet_isa_7c502db6c3 (IsA mon_khmer austro_asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monad is a kind of microorganism", "pln": ["(: cnet_isa_de02528aeb (IsA monad microorganism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monad is a kind of atom", "pln": ["(: cnet_isa_33377c50d6 (IsA monad atom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monad is a kind of one", "pln": ["(: cnet_isa_f8d70fe8e0 (IsA monad one) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monadic operation is a kind of operation", "pln": ["(: cnet_isa_45d3f731f1 (IsA monadic_operation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monal is a kind of pheasant", "pln": ["(: cnet_isa_a7a3b7504a (IsA monal pheasant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monandry is a kind of marriage", "pln": ["(: cnet_isa_31332a22a8 (IsA monandry marriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monarch is a kind of danaid", "pln": ["(: cnet_isa_6f068e2e6f (IsA monarch danaid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "monarchism is a kind of political orientation", "pln": ["(: cnet_isa_f24ad9a60b (IsA monarchism political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monarchist is a kind of rightist", "pln": ["(: cnet_isa_e39499b91c (IsA monarchist rightist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monarchy is a kind of government", "pln": ["(: cnet_isa_d91b37e0d8 (IsA monarchy government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monarchy is a kind of autocracy", "pln": ["(: cnet_isa_a7fc85e750 (IsA monarchy autocracy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monarda is a kind of herb", "pln": ["(: cnet_isa_570608efbd (IsA monarda herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monardella is a kind of dicot genus", "pln": ["(: cnet_isa_8e6655cfab (IsA monardella dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monario is a kind of artificial language", "pln": ["(: cnet_isa_570c2f0a66 (IsA monario artificial_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monastery is a kind of religious residence", "pln": ["(: cnet_isa_24acff2de0 (IsA monastery religious_residence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "monastic habit is a kind of habit", "pln": ["(: cnet_isa_23a9171896 (IsA monastic_habit habit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monasticism is a kind of austerity", "pln": ["(: cnet_isa_6947a206ab (IsA monasticism austerity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monazite is a kind of mineral", "pln": ["(: cnet_isa_74be02cdf6 (IsA monazite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monday is a kind of weekday", "pln": ["(: cnet_isa_6aa2394d1f (IsA monday weekday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monegasque is a kind of european", "pln": ["(: cnet_isa_c2ad750751 (IsA monegasque european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monel metal is a kind of nickel base alloy", "pln": ["(: cnet_isa_a753fbde05 (IsA monel_metal nickel_base_alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monera is a kind of kingdom", "pln": ["(: cnet_isa_8e2ae6f6ab (IsA monera kingdom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moneran is a kind of microorganism", "pln": ["(: cnet_isa_9cff6c319b (IsA moneran microorganism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mones is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_aca3fdc5c5 (IsA mones dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monetarism is a kind of economic theory", "pln": ["(: cnet_isa_84feefd9f5 (IsA monetarism economic_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monetarist is a kind of economist", "pln": ["(: cnet_isa_692b383dc5 (IsA monetarist economist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monetary unit is a kind of unit of measurement", "pln": ["(: cnet_isa_b07387a116 (IsA monetary_unit unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monetary value is a kind of value", "pln": ["(: cnet_isa_487783ac02 (IsA monetary_value value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monetization is a kind of validation", "pln": ["(: cnet_isa_f5e6418ac8 (IsA monetization validation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "money is a kind of currency", "pln": ["(: cnet_isa_1a72dfdb3b (IsA money currency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "money is a kind of medium of exchange", "pln": ["(: cnet_isa_4be723ff22 (IsA money medium_of_exchange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "money is a kind of wealth", "pln": ["(: cnet_isa_bb8ca2cdc0 (IsA money wealth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "money belt is a kind of belt", "pln": ["(: cnet_isa_93e16815d5 (IsA money_belt belt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "money cowrie is a kind of cowrie", "pln": ["(: cnet_isa_c32f780cb7 (IsA money_cowrie cowrie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "money handler is a kind of person", "pln": ["(: cnet_isa_cc730bff66 (IsA money_handler person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "money laundering is a kind of concealment", "pln": ["(: cnet_isa_506179d4e2 (IsA money_laundering concealment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "money market is a kind of market", "pln": ["(: cnet_isa_e98ec8edde (IsA money_market market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "money order is a kind of draft", "pln": ["(: cnet_isa_a6bd9f9705 (IsA money_order draft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "money supply is a kind of fund", "pln": ["(: cnet_isa_72cf908c0a (IsA money_supply fund) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "moneybag is a kind of drawstring bag", "pln": ["(: cnet_isa_47d4df439e (IsA moneybag drawstring_bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moneygrubber is a kind of moneymaker", "pln": ["(: cnet_isa_5a5137e164 (IsA moneygrubber moneymaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moneymaker is a kind of project", "pln": ["(: cnet_isa_c6dd390680 (IsA moneymaker project) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moneymaker is a kind of capitalist", "pln": ["(: cnet_isa_a9d8839ba6 (IsA moneymaker capitalist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moneymaking is a kind of acquisition", "pln": ["(: cnet_isa_760789969e (IsA moneymaking acquisition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moneywort is a kind of loosestrife", "pln": ["(: cnet_isa_c8d17d66b7 (IsA moneywort loosestrife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mongo is a kind of mongolian monetary unit", "pln": ["(: cnet_isa_4d09d2619f (IsA mongo mongolian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mongol tatar is a kind of mongolian", "pln": ["(: cnet_isa_ce9b749023 (IsA mongol_tatar mongolian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mongolian is a kind of altaic", "pln": ["(: cnet_isa_dae5a0627c (IsA mongolian altaic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mongolian is a kind of asiatic", "pln": ["(: cnet_isa_081d87dbce (IsA mongolian asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mongolian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_7f3684b4f7 (IsA mongolian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mongolism is a kind of birth defect", "pln": ["(: cnet_isa_a164b75028 (IsA mongolism birth_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mongolism is a kind of trisomy", "pln": ["(: cnet_isa_b2e078f4ee (IsA mongolism trisomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mongoloid is a kind of asiatic", "pln": ["(: cnet_isa_84eb0acc20 (IsA mongoloid asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mongoloid is a kind of idiot", "pln": ["(: cnet_isa_c4b89d4a0f (IsA mongoloid idiot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mongoose is a kind of viverrine", "pln": ["(: cnet_isa_6a81605673 (IsA mongoose viverrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monic polynomial is a kind of polynomial", "pln": ["(: cnet_isa_cad2aa0c60 (IsA monic_polynomial polynomial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monilia is a kind of fungus", "pln": ["(: cnet_isa_d30ceaf85d (IsA monilia fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moniliaceae is a kind of fungus family", "pln": ["(: cnet_isa_7c4e3cce3f (IsA moniliaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moniliale is a kind of fungus order", "pln": ["(: cnet_isa_be87c95395 (IsA moniliale fungus_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monism is a kind of doctrine", "pln": ["(: cnet_isa_ccd1e38f13 (IsA monism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monition is a kind of summon", "pln": ["(: cnet_isa_5f7792db94 (IsA monition summon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "monitor is a kind of tv", "pln": ["(: cnet_isa_809f386cd8 (IsA monitor tv) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monitor is a kind of lizard", "pln": ["(: cnet_isa_1a4b883942 (IsA monitor lizard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monitor is a kind of display", "pln": ["(: cnet_isa_30224454cc (IsA monitor display) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monitor is a kind of electronic equipment", "pln": ["(: cnet_isa_f537158b2b (IsA monitor electronic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monitor program is a kind of program", "pln": ["(: cnet_isa_9b929bbbdb (IsA monitor_program program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monitoring is a kind of observation", "pln": ["(: cnet_isa_6f2546aa91 (IsA monitoring observation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "monk s cloth is a kind of fabric", "pln": ["(: cnet_isa_17bf43b82a (IsA monk_s_cloth fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monk is a kind of religious", "pln": ["(: cnet_isa_d3a62fefde (IsA monk religious) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monkey is a kind of primate", "pln": ["(: cnet_isa_d427067bbd (IsA monkey primate) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monkey bridge is a kind of platform", "pln": ["(: cnet_isa_e91805ecf4 (IsA monkey_bridge platform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monkey business is a kind of mischief", "pln": ["(: cnet_isa_040ae0b902 (IsA monkey_business mischief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monkey ladder is a kind of ladder", "pln": ["(: cnet_isa_90748dc64f (IsA monkey_ladder ladder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monkey puzzle is a kind of araucaria", "pln": ["(: cnet_isa_4b80db5477 (IsA monkey_puzzle araucaria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monkey wrench is a kind of adjustable wrench", "pln": ["(: cnet_isa_c28374300e (IsA monkey_wrench adjustable_wrench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monkfish is a kind of saltwater fish", "pln": ["(: cnet_isa_fecfee47f6 (IsA monkfish saltwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monkshood is a kind of aconite", "pln": ["(: cnet_isa_361b9e0260 (IsA monkshood aconite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mono iodotyrosine is a kind of iodotyrosine", "pln": ["(: cnet_isa_048b4168c3 (IsA mono_iodotyrosine iodotyrosine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monoamine is a kind of amine", "pln": ["(: cnet_isa_13d61fa598 (IsA monoamine amine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monoamine neurotransmitter is a kind of monoamine", "pln": ["(: cnet_isa_30cebdad94 (IsA monoamine_neurotransmitter monoamine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monoamine oxidase is a kind of enzyme", "pln": ["(: cnet_isa_ba48295258 (IsA monoamine_oxidase enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monoamine oxidase inhibitor is a kind of antidepressant", "pln": ["(: cnet_isa_8f3b196cf4 (IsA monoamine_oxidase_inhibitor antidepressant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monobasic acid is a kind of acid", "pln": ["(: cnet_isa_0fb684648e (IsA monobasic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monoblast is a kind of monocyte", "pln": ["(: cnet_isa_c5044f60e9 (IsA monoblast monocyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monocanthidae is a kind of fish family", "pln": ["(: cnet_isa_58c08784cf (IsA monocanthidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "monocanthus is a kind of fish genus", "pln": ["(: cnet_isa_de75594c50 (IsA monocanthus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monocarp is a kind of plant", "pln": ["(: cnet_isa_c010900319 (IsA monocarp plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "monochamus is a kind of arthropod genus", "pln": ["(: cnet_isa_f7527837d1 (IsA monochamus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monochromacy is a kind of color blindness", "pln": ["(: cnet_isa_325aa4accf (IsA monochromacy color_blindness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monochromat is a kind of color blind person", "pln": ["(: cnet_isa_af1cb7bcd6 (IsA monochromat color_blind_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "monochrome is a kind of painting", "pln": ["(: cnet_isa_82632f13b6 (IsA monochrome painting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monocle is a kind of eye glass for one eye", "pln": ["(: cnet_isa_3c375e7c23 (IsA monocle eye_glass_for_one_eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monocle is a kind of len", "pln": ["(: cnet_isa_c834b0ee86 (IsA monocle len) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monocline is a kind of geological formation", "pln": ["(: cnet_isa_b7f4c8682f (IsA monocline geological_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monoclonal antibody is a kind of antibody", "pln": ["(: cnet_isa_5c0f72a3a9 (IsA monoclonal_antibody antibody) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monocot is a kind of angiosperm", "pln": ["(: cnet_isa_836fb8cefe (IsA monocot angiosperm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monocot family is a kind of family", "pln": ["(: cnet_isa_9f6a28e812 (IsA monocot_family family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monocot genus is a kind of genus", "pln": ["(: cnet_isa_cf261a19eb (IsA monocot_genus genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monocotyledone is a kind of class", "pln": ["(: cnet_isa_f4423106ee (IsA monocotyledone class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monocular vision is a kind of sight", "pln": ["(: cnet_isa_820d19ca5a (IsA monocular_vision sight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monoculture is a kind of culture", "pln": ["(: cnet_isa_06a20f59bc (IsA monoculture culture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monocyte is a kind of leukocyte", "pln": ["(: cnet_isa_7841142bab (IsA monocyte leukocyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "monocytic leukemia is a kind of leukemia", "pln": ["(: cnet_isa_2c3deaa88d (IsA monocytic_leukemia leukemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monocytosis is a kind of symptom", "pln": ["(: cnet_isa_5823e9763d (IsA monocytosis symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monodon is a kind of mammal genus", "pln": ["(: cnet_isa_adeb3b4e16 (IsA monodon mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monodontidae is a kind of mammal family", "pln": ["(: cnet_isa_350bfcfad9 (IsA monodontidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monofocal len implant is a kind of len implant", "pln": ["(: cnet_isa_23bb9812ac (IsA monofocal_len_implant len_implant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "monogamist is a kind of spouse", "pln": ["(: cnet_isa_5c49f3d1ef (IsA monogamist spouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monogamy is a kind of relationship between two people or animal", "pln": ["(: cnet_isa_71e81e9606 (IsA monogamy relationship_between_two_people_or_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monogamy is a kind of unnatural social aspect", "pln": ["(: cnet_isa_9cbc86cad0 (IsA monogamy unnatural_social_aspect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monogamy is a kind of marriage", "pln": ["(: cnet_isa_d7ba51c410 (IsA monogamy marriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monogenesis is a kind of asexual reproduction", "pln": ["(: cnet_isa_2ee9a4fe96 (IsA monogenesis asexual_reproduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monogenic disorder is a kind of genetic disease", "pln": ["(: cnet_isa_d57d40164c (IsA monogenic_disorder genetic_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monogram is a kind of symbol", "pln": ["(: cnet_isa_36deada1e5 (IsA monogram symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monograph is a kind of treatise", "pln": ["(: cnet_isa_704a3d3c9e (IsA monograph treatise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monogyny is a kind of monogamy", "pln": ["(: cnet_isa_c45267eb72 (IsA monogyny monogamy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "monohybrid is a kind of hybrid", "pln": ["(: cnet_isa_7c66dd5cbf (IsA monohybrid hybrid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monohybrid cross is a kind of hybridization", "pln": ["(: cnet_isa_d364ddb400 (IsA monohybrid_cross hybridization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monohydrate is a kind of hydrate", "pln": ["(: cnet_isa_465604a645 (IsA monohydrate hydrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "monolatry is a kind of worship", "pln": ["(: cnet_isa_5cfa2b982d (IsA monolatry worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monolingual is a kind of person", "pln": ["(: cnet_isa_998d5bc4d3 (IsA monolingual person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monolith is a kind of single standing stone", "pln": ["(: cnet_isa_3e9d64fe5f (IsA monolith single_standing_stone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monolith is a kind of stone", "pln": ["(: cnet_isa_6f7c54bd67 (IsA monolith stone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monologist is a kind of performer", "pln": ["(: cnet_isa_ad28583057 (IsA monologist performer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "monologue is a kind of actor s line", "pln": ["(: cnet_isa_b5a0f0a015 (IsA monologue actor_s_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monologue is a kind of speech", "pln": ["(: cnet_isa_5c2bdd3d21 (IsA monologue speech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monomania is a kind of mania", "pln": ["(: cnet_isa_81f6e85bd3 (IsA monomania mania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monomaniac is a kind of sick person", "pln": ["(: cnet_isa_6d83269b95 (IsA monomaniac sick_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monomer is a kind of compound", "pln": ["(: cnet_isa_f69b4f5b02 (IsA monomer compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monomorium is a kind of arthropod genus", "pln": ["(: cnet_isa_12fd8734ec (IsA monomorium arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mononeuropathy is a kind of neuropathy", "pln": ["(: cnet_isa_1458477c71 (IsA mononeuropathy neuropathy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mononuclear phagocyte system is a kind of system", "pln": ["(: cnet_isa_8c928c91d3 (IsA mononuclear_phagocyte_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mononychus olecranus is a kind of maniraptor", "pln": ["(: cnet_isa_3c6eb09a13 (IsA mononychus_olecranus maniraptor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monophony is a kind of music", "pln": ["(: cnet_isa_bfa71802e2 (IsA monophony music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monophysite is a kind of disciple", "pln": ["(: cnet_isa_813c3527da (IsA monophysite disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monophysitism is a kind of heresy", "pln": ["(: cnet_isa_8b94d73806 (IsA monophysitism heresy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monophysitism is a kind of theological doctrine", "pln": ["(: cnet_isa_be1aad8ac8 (IsA monophysitism theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monoplane is a kind of airplane", "pln": ["(: cnet_isa_5e89bcc821 (IsA monoplane airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monoplane flying fish is a kind of flying fish", "pln": ["(: cnet_isa_e4780ef5fd (IsA monoplane_flying_fish flying_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monoplegia is a kind of paralysis", "pln": ["(: cnet_isa_928c3c474b (IsA monoplegia paralysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monopolist is a kind of selfish person", "pln": ["(: cnet_isa_6127e2c9ca (IsA monopolist selfish_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monopolization is a kind of domination", "pln": ["(: cnet_isa_b9a2464bd8 (IsA monopolization domination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monopoly is a kind of board game", "pln": ["(: cnet_isa_c268f2f459 (IsA monopoly board_game) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monopoly is a kind of classic boardgame", "pln": ["(: cnet_isa_6779fdae65 (IsA monopoly classic_boardgame) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monopoly is a kind of market", "pln": ["(: cnet_isa_8959feb7b2 (IsA monopoly market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monopoly is a kind of dominance", "pln": ["(: cnet_isa_4d9272c3b1 (IsA monopoly dominance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monopoly board is a kind of board", "pln": ["(: cnet_isa_e2169d44f1 (IsA monopoly_board board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monopsony is a kind of market", "pln": ["(: cnet_isa_8e7c687042 (IsA monopsony market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monorail is a kind of railway", "pln": ["(: cnet_isa_9b56f1203a (IsA monorail railway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "monorchism is a kind of cryptorchidy", "pln": ["(: cnet_isa_815fe0e6b4 (IsA monorchism cryptorchidy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monosaccharide is a kind of carbohydrate", "pln": ["(: cnet_isa_30fdd7fe5d (IsA monosaccharide carbohydrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monosemy is a kind of clarity", "pln": ["(: cnet_isa_4124a1627f (IsA monosemy clarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monosodium glutamate is a kind of flavorer", "pln": ["(: cnet_isa_c56c7c130b (IsA monosodium_glutamate flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monosomy is a kind of chromosomal aberration", "pln": ["(: cnet_isa_320d94b473 (IsA monosomy chromosomal_aberration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monostotic fibrous dysplasia is a kind of fibrous dysplasia of bone", "pln": ["(: cnet_isa_28f07af07c (IsA monostotic_fibrous_dysplasia fibrous_dysplasia_of_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monosyllable is a kind of word", "pln": ["(: cnet_isa_2e8826233b (IsA monosyllable word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monotheism is a kind of theism", "pln": ["(: cnet_isa_d68cee8c0a (IsA monotheism theism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monotheist is a kind of believer", "pln": ["(: cnet_isa_fadfa7e8cc (IsA monotheist believer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monothelitism is a kind of heresy", "pln": ["(: cnet_isa_129a138dda (IsA monothelitism heresy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monothelitism is a kind of theological doctrine", "pln": ["(: cnet_isa_8b7f86efa2 (IsA monothelitism theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "monotone is a kind of intonation", "pln": ["(: cnet_isa_03f7d241eb (IsA monotone intonation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monotone is a kind of note", "pln": ["(: cnet_isa_ceb23fc135 (IsA monotone note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monotony is a kind of constancy", "pln": ["(: cnet_isa_ccbe83f9e8 (IsA monotony constancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "monotony is a kind of unvariedness", "pln": ["(: cnet_isa_e999c57b10 (IsA monotony unvariedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monotremata is a kind of animal order", "pln": ["(: cnet_isa_d0e63a961f (IsA monotremata animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monotreme is a kind of prototherian", "pln": ["(: cnet_isa_d806f21f10 (IsA monotreme prototherian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monotropa is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_d8560dfae7 (IsA monotropa dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monotropaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_eb4eb93e48 (IsA monotropaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monotype is a kind of print", "pln": ["(: cnet_isa_65d53d82f8 (IsA monotype print) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monotype is a kind of typesetting machine", "pln": ["(: cnet_isa_ed3433c18e (IsA monotype typesetting_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monotype is a kind of taxonomic group", "pln": ["(: cnet_isa_8816c87b61 (IsA monotype taxonomic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monounsaturated fatty acid is a kind of unsaturated fatty acid", "pln": ["(: cnet_isa_964baf21a6 (IsA monounsaturated_fatty_acid unsaturated_fatty_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monoxide is a kind of oxide", "pln": ["(: cnet_isa_3037a41ee5 (IsA monoxide oxide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monroe doctrine is a kind of foreign policy", "pln": ["(: cnet_isa_80b7063022 (IsA monroe_doctrine foreign_policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mon is a kind of adipose tissue", "pln": ["(: cnet_isa_db2e3fe11f (IsA mon adipose_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "monsieur is a kind of man", "pln": ["(: cnet_isa_af6e9f7a27 (IsA monsieur man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "mont blanc is a kind of mountain in swiss alps", "pln": ["(: cnet_isa_e911902455 (IsA mont_blanc mountain_in_swiss_alps) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monsignor is a kind of priest", "pln": ["(: cnet_isa_074deb112b (IsA monsignor priest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monsoon is a kind of rain", "pln": ["(: cnet_isa_1ea8bb860d (IsA monsoon rain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monsoon is a kind of wind", "pln": ["(: cnet_isa_8f9311e790 (IsA monsoon wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monsoon is a kind of rainy season", "pln": ["(: cnet_isa_352087073d (IsA monsoon rainy_season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monster is a kind of fetus", "pln": ["(: cnet_isa_dd9a4a7e04 (IsA monster fetus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monster is a kind of imaginary being", "pln": ["(: cnet_isa_e82a56b0fc (IsA monster imaginary_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monster is a kind of unpleasant person", "pln": ["(: cnet_isa_b63c8038cf (IsA monster unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monstera is a kind of liana", "pln": ["(: cnet_isa_0768269155 (IsA monstera liana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monstrance is a kind of vessel", "pln": ["(: cnet_isa_78cfc3c5aa (IsA monstrance vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monstrosity is a kind of malformation", "pln": ["(: cnet_isa_5f9cb4e250 (IsA monstrosity malformation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mont blanc is a kind of mountain in swiss alp", "pln": ["(: cnet_isa_2bfca28326 (IsA mont_blanc mountain_in_swiss_alp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "montagu s harrier is a kind of harrier", "pln": ["(: cnet_isa_9afe93f90a (IsA montagu_s_harrier harrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "montan wax is a kind of wax", "pln": ["(: cnet_isa_f3ca828ad0 (IsA montan_wax wax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "montana is a kind of state", "pln": ["(: cnet_isa_fc001fe524 (IsA montana state) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "montanan is a kind of american", "pln": ["(: cnet_isa_095acb027c (IsA montanan american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monte is a kind of card game", "pln": ["(: cnet_isa_2ddf998c2b (IsA monte card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "monterey cypress is a kind of cypress", "pln": ["(: cnet_isa_7c6c264135 (IsA monterey_cypress cypress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monterey pine is a kind of pine", "pln": ["(: cnet_isa_4ef0b02733 (IsA monterey_pine pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "montezuma s revenge is a kind of diarrhea", "pln": ["(: cnet_isa_dd3ca0389c (IsA montezuma_s_revenge diarrhea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "montezuma is a kind of tree", "pln": ["(: cnet_isa_12597728d2 (IsA montezuma tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "montezuma cypress is a kind of cypress", "pln": ["(: cnet_isa_df97aa0114 (IsA montezuma_cypress cypress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "montgomery s tubercle is a kind of sebaceous gland", "pln": ["(: cnet_isa_3d860c24e0 (IsA montgomery_s_tubercle sebaceous_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "month is a kind of time unit", "pln": ["(: cnet_isa_7255821c27 (IsA month time_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "month of sunday is a kind of long time", "pln": ["(: cnet_isa_7766acbc86 (IsA month_of_sunday long_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monthly is a kind of sery", "pln": ["(: cnet_isa_07c21d1aa1 (IsA monthly sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "montia is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_c5d9f9207c (IsA montia caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "montrachet is a kind of burgundy", "pln": ["(: cnet_isa_c4f9370417 (IsA montrachet burgundy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "montrachet is a kind of white wine", "pln": ["(: cnet_isa_2e760d6e69 (IsA montrachet white_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "montreal is a kind of in canada", "pln": ["(: cnet_isa_ff4233fbaa (IsA montreal in_canada) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "montserratian is a kind of west indian", "pln": ["(: cnet_isa_33d2591662 (IsA montserratian west_indian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "monument is a kind of site", "pln": ["(: cnet_isa_0b28d36b19 (IsA monument site) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moo is a kind of cry", "pln": ["(: cnet_isa_cba5e1f6f5 (IsA moo cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moo goo gai pan is a kind of dish", "pln": ["(: cnet_isa_fbca3c204e (IsA moo_goo_gai_pan dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moocher is a kind of beggar", "pln": ["(: cnet_isa_dd8419d659 (IsA moocher beggar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mood is a kind of grammatical relation", "pln": ["(: cnet_isa_ee09dfe42d (IsA mood grammatical_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moodiness is a kind of disposition", "pln": ["(: cnet_isa_6a3c771f33 (IsA moodiness disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moodiness is a kind of ill humor", "pln": ["(: cnet_isa_2b97f0395e (IsA moodiness ill_humor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moon is a kind of place", "pln": ["(: cnet_isa_58073a2f8d (IsA moon place) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moon is a kind of sattelite of earth", "pln": ["(: cnet_isa_c990126a73 (IsA moon sattelite_of_earth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moon is a kind of sphere", "pln": ["(: cnet_isa_302f5294e4 (IsA moon sphere) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moon is a kind of object", "pln": ["(: cnet_isa_2bf050b6cf (IsA moon object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moon is a kind of satellite", "pln": ["(: cnet_isa_7ed0a34579 (IsA moon satellite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moon blindness is a kind of animal disease", "pln": ["(: cnet_isa_171622b3ba (IsA moon_blindness animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moon carrot is a kind of herb", "pln": ["(: cnet_isa_09c2fe6057 (IsA moon_carrot herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moon shell is a kind of seasnail", "pln": ["(: cnet_isa_c689bc9a9a (IsA moon_shell seasnail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moon shot is a kind of rocket firing", "pln": ["(: cnet_isa_9c20bc35d0 (IsA moon_shot rocket_firing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moon trefoil is a kind of medic", "pln": ["(: cnet_isa_82285ab7ef (IsA moon_trefoil medic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moon worship is a kind of worship", "pln": ["(: cnet_isa_4216573589 (IsA moon_worship worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moonbeam is a kind of beam", "pln": ["(: cnet_isa_c63cc5d325 (IsA moonbeam beam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moonfish is a kind of carangid fish", "pln": ["(: cnet_isa_2343e34fc7 (IsA moonfish carangid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moonflower is a kind of morning glory", "pln": ["(: cnet_isa_d90a0867cf (IsA moonflower morning_glory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moonie is a kind of religionist", "pln": ["(: cnet_isa_a94ce6ff4c (IsA moonie religionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moonlight is a kind of light", "pln": ["(: cnet_isa_c6e3445b2a (IsA moonlight light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moonlighter is a kind of worker", "pln": ["(: cnet_isa_41d611503e (IsA moonlighter worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moonseed is a kind of vine", "pln": ["(: cnet_isa_f0f2563b44 (IsA moonseed vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moonshine is a kind of corn whiskey", "pln": ["(: cnet_isa_dfdaf2001c (IsA moonshine corn_whiskey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moonstone is a kind of feldspar", "pln": ["(: cnet_isa_ccf7696a36 (IsA moonstone feldspar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moonstone is a kind of transparent gem", "pln": ["(: cnet_isa_48aadadfb6 (IsA moonstone transparent_gem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moonwalk is a kind of dance step", "pln": ["(: cnet_isa_966fc03740 (IsA moonwalk dance_step) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moonwalk is a kind of walk", "pln": ["(: cnet_isa_df6f1efa74 (IsA moonwalk walk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moonwort is a kind of grape fern", "pln": ["(: cnet_isa_d793f5c6aa (IsA moonwort grape_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moor is a kind of plain", "pln": ["(: cnet_isa_b44dda7c07 (IsA moor plain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moor is a kind of moslem", "pln": ["(: cnet_isa_2348c099ab (IsA moor moslem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moorage is a kind of fee", "pln": ["(: cnet_isa_b6660e1971 (IsA moorage fee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moorcock is a kind of red grouse", "pln": ["(: cnet_isa_defbb58599 (IsA moorcock red_grouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moorhen is a kind of gallinule", "pln": ["(: cnet_isa_cd3dc0a64b (IsA moorhen gallinule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moorhen is a kind of red grouse", "pln": ["(: cnet_isa_5ce2703b69 (IsA moorhen red_grouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mooring is a kind of line", "pln": ["(: cnet_isa_0503e43ed9 (IsA mooring line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mooring is a kind of anchorage", "pln": ["(: cnet_isa_e58a155cb7 (IsA mooring anchorage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mooring anchor is a kind of anchor", "pln": ["(: cnet_isa_4f98f512b3 (IsA mooring_anchor anchor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mooring tower is a kind of tower", "pln": ["(: cnet_isa_009781453f (IsA mooring_tower tower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moorish is a kind of architectural style", "pln": ["(: cnet_isa_69a2dc4371 (IsA moorish architectural_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moorish arch is a kind of round arch", "pln": ["(: cnet_isa_cd0e9dc2e7 (IsA moorish_arch round_arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moosewood is a kind of maple", "pln": ["(: cnet_isa_0578fdb7c2 (IsA moosewood maple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moot is a kind of lawsuit", "pln": ["(: cnet_isa_c6522b5a44 (IsA moot lawsuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moot court is a kind of court", "pln": ["(: cnet_isa_842c7d14f5 (IsA moot_court court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mop handle is a kind of handle", "pln": ["(: cnet_isa_bed7bf951a (IsA mop_handle handle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moped is a kind of minibike", "pln": ["(: cnet_isa_873d0e4243 (IsA moped minibike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mopper is a kind of worker", "pln": ["(: cnet_isa_a6bc6d4ac6 (IsA mopper worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moppet is a kind of female child", "pln": ["(: cnet_isa_ca7677d009 (IsA moppet female_child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moquelumnan is a kind of penutian", "pln": ["(: cnet_isa_19e13f7be2 (IsA moquelumnan penutian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moquette is a kind of fabric", "pln": ["(: cnet_isa_542a903f65 (IsA moquette fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moraceae is a kind of dicot family", "pln": ["(: cnet_isa_86cf342c46 (IsA moraceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moraine is a kind of earth", "pln": ["(: cnet_isa_6e2e302908 (IsA moraine earth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moral is a kind of meaning", "pln": ["(: cnet_isa_c3f46c0fda (IsA moral meaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moral certainty is a kind of certainty", "pln": ["(: cnet_isa_55d2da292f (IsA moral_certainty certainty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moral force is a kind of incentive", "pln": ["(: cnet_isa_baecde056f (IsA moral_force incentive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moral hazard is a kind of hazard", "pln": ["(: cnet_isa_6bf3e7e057 (IsA moral_hazard hazard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moral obligation is a kind of duty", "pln": ["(: cnet_isa_03517be929 (IsA moral_obligation duty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moral principle is a kind of principle", "pln": ["(: cnet_isa_9a18e9fbb7 (IsA moral_principle principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morale is a kind of psychological state", "pln": ["(: cnet_isa_b5a15f695e (IsA morale psychological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morale builder is a kind of influence", "pln": ["(: cnet_isa_212df0b4be (IsA morale_builder influence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morale building is a kind of boost", "pln": ["(: cnet_isa_74309374c7 (IsA morale_building boost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moralism is a kind of value judgment", "pln": ["(: cnet_isa_8bbd8bd96e (IsA moralism value_judgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moralism is a kind of maxim", "pln": ["(: cnet_isa_c66aa1bd40 (IsA moralism maxim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moralist is a kind of philosopher", "pln": ["(: cnet_isa_3338a6e787 (IsA moralist philosopher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "morality is a kind of quality", "pln": ["(: cnet_isa_0ac64e346c (IsA morality quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morality play is a kind of play", "pln": ["(: cnet_isa_396e94b448 (IsA morality_play play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moralization is a kind of reform", "pln": ["(: cnet_isa_b55fa09a6d (IsA moralization reform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moralizing is a kind of philosophizing", "pln": ["(: cnet_isa_17d94580ef (IsA moralizing philosophizing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moratorium is a kind of abeyance", "pln": ["(: cnet_isa_30c19bf3b9 (IsA moratorium abeyance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moratorium is a kind of delay", "pln": ["(: cnet_isa_1663a7d091 (IsA moratorium delay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moray is a kind of eel", "pln": ["(: cnet_isa_ae00bbbd24 (IsA moray eel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morbidity is a kind of incidence", "pln": ["(: cnet_isa_19b76a9601 (IsA morbidity incidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morbidness is a kind of cognitive state", "pln": ["(: cnet_isa_656707549f (IsA morbidness cognitive_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morceau is a kind of musical composition", "pln": ["(: cnet_isa_94cd394f80 (IsA morceau musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morceau is a kind of piece", "pln": ["(: cnet_isa_373c53064b (IsA morceau piece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morchella is a kind of fungus genus", "pln": ["(: cnet_isa_3af2243ff8 (IsA morchella fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morchella crassipe is a kind of morel", "pln": ["(: cnet_isa_a01e382972 (IsA morchella_crassipe morel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morchella semilibera is a kind of morel", "pln": ["(: cnet_isa_3c535ad4fa (IsA morchella_semilibera morel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morchellaceae is a kind of fungus family", "pln": ["(: cnet_isa_c0386f435f (IsA morchellaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mordacity is a kind of disposition", "pln": ["(: cnet_isa_325fe307e3 (IsA mordacity disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mordant is a kind of coloring material", "pln": ["(: cnet_isa_854521ec71 (IsA mordant coloring_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mordva is a kind of volgaic", "pln": ["(: cnet_isa_c583a76193 (IsA mordva volgaic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mordvinian is a kind of russian", "pln": ["(: cnet_isa_615cfc2f06 (IsA mordvinian russian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moreen is a kind of fabric", "pln": ["(: cnet_isa_28cb3074a0 (IsA moreen fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morel is a kind of mushroom", "pln": ["(: cnet_isa_5673a2780c (IsA morel mushroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morello is a kind of sour cherry", "pln": ["(: cnet_isa_994bd82601 (IsA morello sour_cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "more is a kind of convention", "pln": ["(: cnet_isa_9bac667572 (IsA more convention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moreton bay chestnut is a kind of bean tree", "pln": ["(: cnet_isa_052c8e9a7e (IsA moreton_bay_chestnut bean_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moreton bay tulipwood is a kind of harpullia", "pln": ["(: cnet_isa_f316841a7b (IsA moreton_bay_tulipwood harpullia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morgan is a kind of saddle horse", "pln": ["(: cnet_isa_4bdd17529a (IsA morgan saddle_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "morgan le fay is a kind of fairy", "pln": ["(: cnet_isa_e88b12d709 (IsA morgan_le_fay fairy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morganite is a kind of beryl", "pln": ["(: cnet_isa_e164c6dd07 (IsA morganite beryl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morganite is a kind of transparent gem", "pln": ["(: cnet_isa_3602f9083f (IsA morganite transparent_gem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morgen is a kind of area unit", "pln": ["(: cnet_isa_c3e4410e04 (IsA morgen area_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morgue is a kind of building", "pln": ["(: cnet_isa_7cff7d7bdc (IsA morgue building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morion is a kind of helmet", "pln": ["(: cnet_isa_0ba45b8e62 (IsA morion helmet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "morlett s crocodile is a kind of crocodile", "pln": ["(: cnet_isa_a038a5b7c2 (IsA morlett_s_crocodile crocodile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mormon is a kind of christian", "pln": ["(: cnet_isa_34066409c5 (IsA mormon christian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mormon church is a kind of protestant denomination", "pln": ["(: cnet_isa_0c6fb1b8e5 (IsA mormon_church protestant_denomination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mormon cricket is a kind of katydid", "pln": ["(: cnet_isa_e60787da26 (IsA mormon_cricket katydid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mormonism is a kind of protestantism", "pln": ["(: cnet_isa_318298f645 (IsA mormonism protestantism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mornay sauce is a kind of cheese sauce", "pln": ["(: cnet_isa_a05477c011 (IsA mornay_sauce cheese_sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morning is a kind of time period", "pln": ["(: cnet_isa_eace515d23 (IsA morning time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morning after pill is a kind of contraceptive", "pln": ["(: cnet_isa_3066816c27 (IsA morning_after_pill contraceptive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morning dress is a kind of attire", "pln": ["(: cnet_isa_d1c24e5684 (IsA morning_dress attire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morning dress is a kind of dress", "pln": ["(: cnet_isa_7a96f4be32 (IsA morning_dress dress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morning glory is a kind of vine", "pln": ["(: cnet_isa_cf1302820e (IsA morning_glory vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "morning room is a kind of living room", "pln": ["(: cnet_isa_462e73ccf3 (IsA morning_room living_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morning sickness is a kind of nausea", "pln": ["(: cnet_isa_824a79d798 (IsA morning_sickness nausea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morning star is a kind of planet", "pln": ["(: cnet_isa_eefe69ad87 (IsA morning_star planet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "moro is a kind of filipino", "pln": ["(: cnet_isa_918170cf29 (IsA moro filipino) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moroccan is a kind of african", "pln": ["(: cnet_isa_308e2bee62 (IsA moroccan african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "moroccan dirham is a kind of moroccan monetary unit", "pln": ["(: cnet_isa_3bcb6be72d (IsA moroccan_dirham moroccan_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moroccan monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_9073b8117e (IsA moroccan_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morocco is a kind of leather", "pln": ["(: cnet_isa_79c73965b9 (IsA morocco leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morone is a kind of fish genus", "pln": ["(: cnet_isa_ceb1f285b7 (IsA morone fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moronity is a kind of retardation", "pln": ["(: cnet_isa_a67509f4fc (IsA moronity retardation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moroseness is a kind of moodiness", "pln": ["(: cnet_isa_d043a47927 (IsA moroseness moodiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morosoph is a kind of fool", "pln": ["(: cnet_isa_b3f7515ace (IsA morosoph fool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morphallaxis is a kind of regeneration", "pln": ["(: cnet_isa_e4c530c531 (IsA morphallaxis regeneration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morphea is a kind of scleroderma", "pln": ["(: cnet_isa_e919f61bb9 (IsA morphea scleroderma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morpheme is a kind of language unit", "pln": ["(: cnet_isa_b68697b77a (IsA morpheme language_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morphine is a kind of sedative", "pln": ["(: cnet_isa_3e43bb20fe (IsA morphine sedative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morphine is a kind of analgesic", "pln": ["(: cnet_isa_40f03ff53a (IsA morphine analgesic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morphine is a kind of opiate", "pln": ["(: cnet_isa_0630f6a8bf (IsA morphine opiate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morphogenesis is a kind of growth", "pln": ["(: cnet_isa_11f5068d97 (IsA morphogenesis growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morphological rule is a kind of rule", "pln": ["(: cnet_isa_c8c0ed515d (IsA morphological_rule rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morphology is a kind of biology", "pln": ["(: cnet_isa_0f19059170 (IsA morphology biology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morphology is a kind of geophysic", "pln": ["(: cnet_isa_b8cb6b9786 (IsA morphology geophysic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "morphology is a kind of grammar", "pln": ["(: cnet_isa_d9172b09ca (IsA morphology grammar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morphology is a kind of structure", "pln": ["(: cnet_isa_b57ab996c0 (IsA morphology structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morphophoneme is a kind of allomorph", "pln": ["(: cnet_isa_3685d414dd (IsA morphophoneme allomorph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morphophonemic system is a kind of language system", "pln": ["(: cnet_isa_b99c1a5a29 (IsA morphophonemic_system language_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morphophonemic is a kind of synchronic linguistic", "pln": ["(: cnet_isa_5d0c180d7c (IsA morphophonemic synchronic_linguistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morris chair is a kind of armchair", "pln": ["(: cnet_isa_be50f389df (IsA morris_chair armchair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "morris dance is a kind of folk dancing", "pln": ["(: cnet_isa_ac8ff2fc5c (IsA morris_dance folk_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "morris dancer is a kind of folk dancer", "pln": ["(: cnet_isa_b370962c34 (IsA morris_dancer folk_dancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morrow s honeysuckle is a kind of honeysuckle", "pln": ["(: cnet_isa_04d887a952 (IsA morrow_s_honeysuckle honeysuckle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morrow is a kind of day", "pln": ["(: cnet_isa_15ffe91e1e (IsA morrow day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morse is a kind of code", "pln": ["(: cnet_isa_eb33438c20 (IsA morse code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morsel is a kind of taste", "pln": ["(: cnet_isa_fb205c4432 (IsA morsel taste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morsel is a kind of small indefinite quantity", "pln": ["(: cnet_isa_04a0c3a181 (IsA morsel small_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mortal enemy is a kind of foe", "pln": ["(: cnet_isa_c76967f56e (IsA mortal_enemy foe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mortal sin is a kind of sin", "pln": ["(: cnet_isa_5f660f2955 (IsA mortal_sin sin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mortality is a kind of impermanence", "pln": ["(: cnet_isa_4e899d9f35 (IsA mortality impermanence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mortality table is a kind of actuarial table", "pln": ["(: cnet_isa_1e963c3a71 (IsA mortality_table actuarial_table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mortar is a kind of weapon", "pln": ["(: cnet_isa_88c755bc1c (IsA mortar weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mortar is a kind of high angle gun", "pln": ["(: cnet_isa_bc19723588 (IsA mortar high_angle_gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mortar is a kind of vessel", "pln": ["(: cnet_isa_14d81d0477 (IsA mortar vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mortar is a kind of building material", "pln": ["(: cnet_isa_0993721b0f (IsA mortar building_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mortar fire is a kind of artillery fire", "pln": ["(: cnet_isa_eded92d337 (IsA mortar_fire artillery_fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mortarboard is a kind of board", "pln": ["(: cnet_isa_36fa6cab6a (IsA mortarboard board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mortarboard is a kind of cap", "pln": ["(: cnet_isa_cb3d8aa17f (IsA mortarboard cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mortgage is a kind of security interest", "pln": ["(: cnet_isa_1371fd63f6 (IsA mortgage security_interest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mortgage application is a kind of loan application", "pln": ["(: cnet_isa_fcf47784e3 (IsA mortgage_application loan_application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mortgage backed security is a kind of security", "pln": ["(: cnet_isa_44640b764e (IsA mortgage_backed_security security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mortgage deed is a kind of deed", "pln": ["(: cnet_isa_28980bd923 (IsA mortgage_deed deed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mortgagee is a kind of creditor", "pln": ["(: cnet_isa_89cd591ec9 (IsA mortgagee creditor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mortgagee is a kind of holder", "pln": ["(: cnet_isa_cd0859187a (IsA mortgagee holder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mortgagor is a kind of debtor", "pln": ["(: cnet_isa_4c6266a982 (IsA mortgagor debtor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mortician is a kind of skilled worker", "pln": ["(: cnet_isa_6b16b56f12 (IsA mortician skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mortification is a kind of self denial", "pln": ["(: cnet_isa_52bc1635f4 (IsA mortification self_denial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mortise is a kind of hole", "pln": ["(: cnet_isa_fe1ca14145 (IsA mortise hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mortise joint is a kind of joint", "pln": ["(: cnet_isa_29de485f3f (IsA mortise_joint joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mortmain is a kind of real property", "pln": ["(: cnet_isa_f87e3d32e2 (IsA mortmain real_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morula is a kind of embryo", "pln": ["(: cnet_isa_d78f109f93 (IsA morula embryo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "morus is a kind of dicot genus", "pln": ["(: cnet_isa_f5713168fd (IsA morus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mosaic is a kind of art", "pln": ["(: cnet_isa_58f38baec3 (IsA mosaic art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mosaic is a kind of picture", "pln": ["(: cnet_isa_6a08258961 (IsA mosaic picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mosaic is a kind of transducer", "pln": ["(: cnet_isa_aaf3ff01fb (IsA mosaic transducer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mosaic is a kind of form", "pln": ["(: cnet_isa_52ba0ff7aa (IsA mosaic form) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mosaic is a kind of plant disease", "pln": ["(: cnet_isa_11af550f4e (IsA mosaic plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mosaic culture is a kind of culture", "pln": ["(: cnet_isa_fb566fdb51 (IsA mosaic_culture culture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mosaic gold is a kind of pigment", "pln": ["(: cnet_isa_b23353dd6b (IsA mosaic_gold pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mosaic law is a kind of law", "pln": ["(: cnet_isa_2df83eaf45 (IsA mosaic_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mosaicism is a kind of condition", "pln": ["(: cnet_isa_7d9c4d4926 (IsA mosaicism condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mosan is a kind of amerind", "pln": ["(: cnet_isa_3c304e2779 (IsA mosan amerind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moschus is a kind of mammal genus", "pln": ["(: cnet_isa_84e54d1891 (IsA moschus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moselle is a kind of white wine", "pln": ["(: cnet_isa_c5abab58e3 (IsA moselle white_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moshav is a kind of village", "pln": ["(: cnet_isa_e7e724a7fd (IsA moshav village) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moslem is a kind of religionist", "pln": ["(: cnet_isa_a58e257032 (IsA moslem religionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mosque is a kind of place of worship", "pln": ["(: cnet_isa_ea10f975f3 (IsA mosque place_of_worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mosquito is a kind of dipterous insect", "pln": ["(: cnet_isa_99e35d1090 (IsA mosquito dipterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mosquito bite is a kind of sting", "pln": ["(: cnet_isa_2b2cbf9530 (IsA mosquito_bite sting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mosquito fern is a kind of aquatic fern", "pln": ["(: cnet_isa_d17985822d (IsA mosquito_fern aquatic_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mosquito net is a kind of screen", "pln": ["(: cnet_isa_c23a0524e5 (IsA mosquito_net screen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mosquitofish is a kind of topminnow", "pln": ["(: cnet_isa_8e22ff101b (IsA mosquitofish topminnow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moss is a kind of bryophyte", "pln": ["(: cnet_isa_f08251905e (IsA moss bryophyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moss agate is a kind of agate", "pln": ["(: cnet_isa_786502d56b (IsA moss_agate agate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moss campion is a kind of silene", "pln": ["(: cnet_isa_d6519dc27e (IsA moss_campion silene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moss family is a kind of family", "pln": ["(: cnet_isa_6480cc33e4 (IsA moss_family family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moss genus is a kind of genus", "pln": ["(: cnet_isa_f00cbd1515 (IsA moss_genus genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moss pink is a kind of phlox", "pln": ["(: cnet_isa_cb96f44720 (IsA moss_pink phlox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moss trooper is a kind of marauder", "pln": ["(: cnet_isa_82f11f744a (IsA moss_trooper marauder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mossad is a kind of international intelligence agency", "pln": ["(: cnet_isa_1cb2da9855 (IsA mossad international_intelligence_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mossback is a kind of conservative", "pln": ["(: cnet_isa_cf27ef80e7 (IsA mossback conservative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mossy saxifrage is a kind of saxifrage", "pln": ["(: cnet_isa_f1420b70d3 (IsA mossy_saxifrage saxifrage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "most situations is a kind of wonderful learning opportunities", "pln": ["(: cnet_isa_4e77a411eb (IsA most_situations wonderful_learning_opportunities) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "most republican is a kind of not democrat", "pln": ["(: cnet_isa_18a8d2774c (IsA most_republican not_democrat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "most situation is a kind of wonderful learning opportunity", "pln": ["(: cnet_isa_0b5dabf71c (IsA most_situation wonderful_learning_opportunity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "most valuable player is a kind of player", "pln": ["(: cnet_isa_f56021e0ef (IsA most_valuable_player player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "most wedding is a kind of not at supermarket", "pln": ["(: cnet_isa_11a8d07eae (IsA most_wedding not_at_supermarket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "most witche is a kind of pagan", "pln": ["(: cnet_isa_cc96c1c772 (IsA most_witche pagan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mostaccioli is a kind of pasta", "pln": ["(: cnet_isa_c7547ad0be (IsA mostaccioli pasta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mot is a kind of test", "pln": ["(: cnet_isa_04b9a7b448 (IsA mot test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mot juste is a kind of wording", "pln": ["(: cnet_isa_500a1c3877 (IsA mot_juste wording) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motacilla is a kind of bird genus", "pln": ["(: cnet_isa_12d9ead840 (IsA motacilla bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motacillidae is a kind of bird family", "pln": ["(: cnet_isa_b26527ea99 (IsA motacillidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motel is a kind of motor hotel", "pln": ["(: cnet_isa_d502de394a (IsA motel motor_hotel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motel room is a kind of bedroom", "pln": ["(: cnet_isa_33f3dacfe8 (IsA motel_room bedroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motet is a kind of musical composition", "pln": ["(: cnet_isa_ddd95b15e9 (IsA motet musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moth is a kind of lepidopterous insect", "pln": ["(: cnet_isa_bfc8f1fc32 (IsA moth lepidopterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moth bean is a kind of legume", "pln": ["(: cnet_isa_b860287004 (IsA moth_bean legume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moth miller is a kind of moth", "pln": ["(: cnet_isa_30c4e0b6e3 (IsA moth_miller moth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moth mullein is a kind of mullein", "pln": ["(: cnet_isa_f527637290 (IsA moth_mullein mullein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moth orchid is a kind of orchid", "pln": ["(: cnet_isa_d36034d76e (IsA moth_orchid orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mothball is a kind of ball", "pln": ["(: cnet_isa_6b5d330666 (IsA mothball ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mother s boy is a kind of son", "pln": ["(: cnet_isa_5114026a1b (IsA mother_s_boy son) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mother s daughter is a kind of daughter", "pln": ["(: cnet_isa_f25e1e5088 (IsA mother_s_daughter daughter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mother s day is a kind of day", "pln": ["(: cnet_isa_b3566f449a (IsA mother_s_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mother s milk is a kind of milk", "pln": ["(: cnet_isa_65e2f39edb (IsA mother_s_milk milk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mother s son is a kind of male", "pln": ["(: cnet_isa_89bde9c600 (IsA mother_s_son male) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mother is a kind of inspiration", "pln": ["(: cnet_isa_3ecaefd395 (IsA mother inspiration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mother is a kind of abbess", "pln": ["(: cnet_isa_a688112876 (IsA mother abbess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mother is a kind of old woman", "pln": ["(: cnet_isa_e6247f0e5a (IsA mother old_woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mother is a kind of parent", "pln": ["(: cnet_isa_820ab699c3 (IsA mother parent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mother is a kind of yeast", "pln": ["(: cnet_isa_daa4927df5 (IsA mother yeast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mother carey s chicken is a kind of storm petrel", "pln": ["(: cnet_isa_5c6b7b977f (IsA mother_carey_s_chicken storm_petrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mother cell is a kind of cell", "pln": ["(: cnet_isa_938b0b0c29 (IsA mother_cell cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mother figure is a kind of woman", "pln": ["(: cnet_isa_4faa7cf6c9 (IsA mother_figure woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mother hen is a kind of hen", "pln": ["(: cnet_isa_ad345de82a (IsA mother_hen hen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mother hen is a kind of person", "pln": ["(: cnet_isa_1a7b4fee72 (IsA mother_hen person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mother hubbard is a kind of dress", "pln": ["(: cnet_isa_bc4d7f6ba0 (IsA mother_hubbard dress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mother in law s tongue is a kind of sansevieria", "pln": ["(: cnet_isa_f929b744b0 (IsA mother_in_law_s_tongue sansevieria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mother in law is a kind of in law", "pln": ["(: cnet_isa_f9ffaf5a40 (IsA mother_in_law in_law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mother in law is a kind of mother", "pln": ["(: cnet_isa_b319d98c72 (IsA mother_in_law mother) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mother lode is a kind of lode", "pln": ["(: cnet_isa_32ddde9adb (IsA mother_lode lode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mother of pearl is a kind of shell", "pln": ["(: cnet_isa_0f82aa8f7a (IsA mother_of_pearl shell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mother tongue is a kind of natural language", "pln": ["(: cnet_isa_49289aadd0 (IsA mother_tongue natural_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motherhood is a kind of kinship", "pln": ["(: cnet_isa_e47c5a9c6b (IsA motherhood kinship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "motherliness is a kind of parental quality", "pln": ["(: cnet_isa_13c2149182 (IsA motherliness parental_quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motherwort is a kind of herb", "pln": ["(: cnet_isa_959aed4e36 (IsA motherwort herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moth is a kind of insect", "pln": ["(: cnet_isa_5c71c138aa (IsA moth insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motif is a kind of design", "pln": ["(: cnet_isa_0b4e14017e (IsA motif design) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motif is a kind of theme", "pln": ["(: cnet_isa_a65e68f481 (IsA motif theme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motile is a kind of perceiver", "pln": ["(: cnet_isa_a1177831f5 (IsA motile perceiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motilin is a kind of gastrointestinal hormone", "pln": ["(: cnet_isa_80a7623f68 (IsA motilin gastrointestinal_hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motility is a kind of mobility", "pln": ["(: cnet_isa_ce02f0c140 (IsA motility mobility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motion is a kind of energy", "pln": ["(: cnet_isa_ca6ad4d16f (IsA motion energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motion is a kind of subject", "pln": ["(: cnet_isa_652986a622 (IsA motion subject) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motion is a kind of change", "pln": ["(: cnet_isa_e5e684ef0b (IsA motion change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motion is a kind of proposal", "pln": ["(: cnet_isa_10bb2a943d (IsA motion proposal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motion is a kind of state", "pln": ["(: cnet_isa_97cb801774 (IsA motion state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motion picture camera is a kind of camera", "pln": ["(: cnet_isa_ebe66fcb10 (IsA motion_picture_camera camera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motion picture film is a kind of film", "pln": ["(: cnet_isa_ca480a9443 (IsA motion_picture_film film) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motion sickness is a kind of ailment", "pln": ["(: cnet_isa_566e68a778 (IsA motion_sickness ailment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motion sickness is a kind of nausea", "pln": ["(: cnet_isa_6b4699a1dc (IsA motion_sickness nausea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motionlessness is a kind of state", "pln": ["(: cnet_isa_9585d84d23 (IsA motionlessness state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motivation is a kind of psychological feature", "pln": ["(: cnet_isa_e427ea0b16 (IsA motivation psychological_feature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motivation is a kind of act", "pln": ["(: cnet_isa_1d1446d96a (IsA motivation act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motivation is a kind of condition", "pln": ["(: cnet_isa_58da2801ec (IsA motivation condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motley is a kind of fabric", "pln": ["(: cnet_isa_bc37b6ccdc (IsA motley fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motley is a kind of garment", "pln": ["(: cnet_isa_e5f8a32457 (IsA motley garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motmot is a kind of coraciiform bird", "pln": ["(: cnet_isa_b0b2f0df37 (IsA motmot coraciiform_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motor is a kind of machine", "pln": ["(: cnet_isa_fdf72f327d (IsA motor machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "motor is a kind of agent", "pln": ["(: cnet_isa_43aed6ae21 (IsA motor agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motor aphasia is a kind of aphasia", "pln": ["(: cnet_isa_2cb5366450 (IsA motor_aphasia aphasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motor area is a kind of cortical area", "pln": ["(: cnet_isa_2be6ef651b (IsA motor_area cortical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motor control is a kind of control", "pln": ["(: cnet_isa_188aa6cb11 (IsA motor_control control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motor hotel is a kind of hotel", "pln": ["(: cnet_isa_6d496e9b80 (IsA motor_hotel hotel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motor memory is a kind of long term memory", "pln": ["(: cnet_isa_32c12ac9ce (IsA motor_memory long_term_memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motor nerve is a kind of nerve", "pln": ["(: cnet_isa_afc5949e07 (IsA motor_nerve nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motor neuron is a kind of nerve cell", "pln": ["(: cnet_isa_35a5037d57 (IsA motor_neuron nerve_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motor oil is a kind of oil", "pln": ["(: cnet_isa_e7c56d437d (IsA motor_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "motor oil is a kind of lubricant", "pln": ["(: cnet_isa_785180d5dd (IsA motor_oil lubricant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motor pool is a kind of fleet", "pln": ["(: cnet_isa_ac0a99bd36 (IsA motor_pool fleet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motor scooter is a kind of wheeled vehicle", "pln": ["(: cnet_isa_cbb5fed37e (IsA motor_scooter wheeled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motor vehicle is a kind of self propelled vehicle", "pln": ["(: cnet_isa_67e2788272 (IsA motor_vehicle self_propelled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motorboat is a kind of boat", "pln": ["(: cnet_isa_238e8ee0ca (IsA motorboat boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motorcade is a kind of procession", "pln": ["(: cnet_isa_b7408ceb54 (IsA motorcade procession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motorcycle is a kind of fatsret than scooter", "pln": ["(: cnet_isa_da0544d469 (IsA motorcycle fatsret_than_scooter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motorcycle is a kind of motor vehicle", "pln": ["(: cnet_isa_9525e817df (IsA motorcycle motor_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motorcycle cop is a kind of policeman", "pln": ["(: cnet_isa_cb969e71eb (IsA motorcycle_cop policeman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motorcycling is a kind of cycling", "pln": ["(: cnet_isa_68419ad3de (IsA motorcycling cycling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motorcyclist is a kind of traveler", "pln": ["(: cnet_isa_f8ca53eb72 (IsA motorcyclist traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motoring is a kind of driving", "pln": ["(: cnet_isa_9faf185ea7 (IsA motoring driving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motorist is a kind of driver", "pln": ["(: cnet_isa_611c4d7acd (IsA motorist driver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motorization is a kind of implementation", "pln": ["(: cnet_isa_447aaa3999 (IsA motorization implementation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motorized wheelchair is a kind of wheelchair", "pln": ["(: cnet_isa_98875a19a1 (IsA motorized_wheelchair wheelchair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motorman is a kind of operator", "pln": ["(: cnet_isa_87842bf1e2 (IsA motorman operator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motormouth is a kind of speaker", "pln": ["(: cnet_isa_d644ed3890 (IsA motormouth speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motorola is a kind of company", "pln": ["(: cnet_isa_924e2c9a40 (IsA motorola company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mottle is a kind of color", "pln": ["(: cnet_isa_80c7a50065 (IsA mottle color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mottling is a kind of marking", "pln": ["(: cnet_isa_f8e6de1247 (IsA mottling marking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "motto is a kind of saying", "pln": ["(: cnet_isa_2914cd9e4c (IsA motto saying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mouflon is a kind of mountain sheep", "pln": ["(: cnet_isa_ce4ebd893b (IsA mouflon mountain_sheep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mould is a kind of hallmark", "pln": ["(: cnet_isa_5e819d0245 (IsA mould hallmark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mould is a kind of dessert", "pln": ["(: cnet_isa_1a615c7f3f (IsA mould dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mould is a kind of dish", "pln": ["(: cnet_isa_f8c35f3799 (IsA mould dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mound is a kind of structure", "pln": ["(: cnet_isa_dbb79f3adc (IsA mound structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mound is a kind of baseball equipment", "pln": ["(: cnet_isa_71de77137c (IsA mound baseball_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mound builder is a kind of primitive", "pln": ["(: cnet_isa_4fe13857a7 (IsA mound_builder primitive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mount is a kind of mounting", "pln": ["(: cnet_isa_e58873ed35 (IsA mount mounting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain is a kind of natural elevation", "pln": ["(: cnet_isa_5ad5a3ab52 (IsA mountain natural_elevation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain ash is a kind of angiospermous tree", "pln": ["(: cnet_isa_57e3f39300 (IsA mountain_ash angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain ash is a kind of ash", "pln": ["(: cnet_isa_fbcb846010 (IsA mountain_ash ash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain ash is a kind of eucalyptus", "pln": ["(: cnet_isa_67bc5c0cb6 (IsA mountain_ash eucalyptus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain aven is a kind of subshrub", "pln": ["(: cnet_isa_3b76820242 (IsA mountain_aven subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mountain beaver is a kind of rodent", "pln": ["(: cnet_isa_535812957a (IsA mountain_beaver rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain bike is a kind of bicycle", "pln": ["(: cnet_isa_1dfbeee4af (IsA mountain_bike bicycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain bladder fern is a kind of bladder fern", "pln": ["(: cnet_isa_2841e5d020 (IsA mountain_bladder_fern bladder_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain chinchilla is a kind of rodent", "pln": ["(: cnet_isa_a7bdb949db (IsA mountain_chinchilla rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain climbing is a kind of climb", "pln": ["(: cnet_isa_1d5082d88f (IsA mountain_climbing climb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain devil is a kind of moloch", "pln": ["(: cnet_isa_223f80fff8 (IsA mountain_devil moloch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain dew is a kind of soft drink", "pln": ["(: cnet_isa_cec3c69142 (IsA mountain_dew soft_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain ebony is a kind of angiospermous tree", "pln": ["(: cnet_isa_a01c9f10a6 (IsA mountain_ebony angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain everlasting is a kind of cat s foot", "pln": ["(: cnet_isa_35acb2c682 (IsA mountain_everlasting cat_s_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain fern is a kind of fern", "pln": ["(: cnet_isa_a1c360b2e5 (IsA mountain_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain four o clock is a kind of four o clock", "pln": ["(: cnet_isa_63adc14d6f (IsA mountain_four_o_clock four_o_clock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain goat is a kind of goat antelope", "pln": ["(: cnet_isa_e6283dcbab (IsA mountain_goat goat_antelope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain gorilla is a kind of gorilla", "pln": ["(: cnet_isa_c8175b802f (IsA mountain_gorilla gorilla) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain heath is a kind of heath", "pln": ["(: cnet_isa_bd17ad36ea (IsA mountain_heath heath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain hemlock is a kind of hemlock", "pln": ["(: cnet_isa_255ed9a51f (IsA mountain_hemlock hemlock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain hollyhock is a kind of mallow", "pln": ["(: cnet_isa_764336ca4b (IsA mountain_hollyhock mallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain lady s slipper is a kind of lady s slipper", "pln": ["(: cnet_isa_2d5e1b8239 (IsA mountain_lady_s_slipper lady_s_slipper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain laurel is a kind of kalmia", "pln": ["(: cnet_isa_08f9a27d07 (IsA mountain_laurel kalmia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain lily is a kind of buttercup", "pln": ["(: cnet_isa_9ea7613462 (IsA mountain_lily buttercup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain lily is a kind of lily", "pln": ["(: cnet_isa_a7a4f35d06 (IsA mountain_lily lily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain male fern is a kind of wood fern", "pln": ["(: cnet_isa_4d3b9c07b9 (IsA mountain_male_fern wood_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain maple is a kind of maple", "pln": ["(: cnet_isa_9f7e407225 (IsA mountain_maple maple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain mint is a kind of herb", "pln": ["(: cnet_isa_47a4ade7ff (IsA mountain_mint herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mountain nyala is a kind of antelope", "pln": ["(: cnet_isa_45de793a2b (IsA mountain_nyala antelope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mountain paca is a kind of rodent", "pln": ["(: cnet_isa_bec735b342 (IsA mountain_paca rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain peak is a kind of peak", "pln": ["(: cnet_isa_2024bb7a3c (IsA mountain_peak peak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain pride is a kind of wildflower", "pln": ["(: cnet_isa_37b4182626 (IsA mountain_pride wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain quail is a kind of partridge", "pln": ["(: cnet_isa_dda45f690d (IsA mountain_quail partridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain rice is a kind of ricegrass", "pln": ["(: cnet_isa_8a53481820 (IsA mountain_rice ricegrass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain rimu is a kind of shrub", "pln": ["(: cnet_isa_0384d6ba65 (IsA mountain_rimu shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain rose is a kind of rose", "pln": ["(: cnet_isa_d1483f878a (IsA mountain_rose rose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain sandwort is a kind of sandwort", "pln": ["(: cnet_isa_7c6db3fc8b (IsA mountain_sandwort sandwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain sheep is a kind of wild sheep", "pln": ["(: cnet_isa_f92e3d7287 (IsA mountain_sheep wild_sheep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain sickness is a kind of altitude sickness", "pln": ["(: cnet_isa_c6da7fae53 (IsA mountain_sickness altitude_sickness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain skink is a kind of skink", "pln": ["(: cnet_isa_d1c5e35d6c (IsA mountain_skink skink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain spleenwort is a kind of spleenwort", "pln": ["(: cnet_isa_318b78c9fb (IsA mountain_spleenwort spleenwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain swamp gum is a kind of eucalyptus", "pln": ["(: cnet_isa_0f58847198 (IsA mountain_swamp_gum eucalyptus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain tent is a kind of tent", "pln": ["(: cnet_isa_1572d9b4b0 (IsA mountain_tent tent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain time is a kind of civil time", "pln": ["(: cnet_isa_d03ad04886 (IsA mountain_time civil_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain trail is a kind of trail", "pln": ["(: cnet_isa_2e110b6ea8 (IsA mountain_trail trail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain zebra is a kind of zebra", "pln": ["(: cnet_isa_f4487a6a22 (IsA mountain_zebra zebra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountaineer is a kind of adventurer", "pln": ["(: cnet_isa_9088dc6035 (IsA mountaineer adventurer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountaineer is a kind of climber", "pln": ["(: cnet_isa_9702f76d07 (IsA mountaineer climber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountain is a kind of active volcano", "pln": ["(: cnet_isa_4c447731a4 (IsA mountain active_volcano) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountainside is a kind of slope", "pln": ["(: cnet_isa_38547d1a40 (IsA mountainside slope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountebank is a kind of deceiver", "pln": ["(: cnet_isa_8eb3ff6bf8 (IsA mountebank deceiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mounter is a kind of ascender", "pln": ["(: cnet_isa_c9c2b872f8 (IsA mounter ascender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mounter is a kind of skilled worker", "pln": ["(: cnet_isa_e44df639b6 (IsA mounter skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mountie is a kind of policeman", "pln": ["(: cnet_isa_b076520029 (IsA mountie policeman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mounting is a kind of framework", "pln": ["(: cnet_isa_5ef8de7599 (IsA mounting framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mourner is a kind of unfortunate", "pln": ["(: cnet_isa_57192b0e38 (IsA mourner unfortunate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mournfulness is a kind of sorrow", "pln": ["(: cnet_isa_d7c2e1722c (IsA mournfulness sorrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mourning is a kind of sadness", "pln": ["(: cnet_isa_6d94875b24 (IsA mourning sadness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mourning cloak is a kind of nymphalid", "pln": ["(: cnet_isa_4e065b25b8 (IsA mourning_cloak nymphalid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mourning dove is a kind of dove", "pln": ["(: cnet_isa_368ae859ac (IsA mourning_dove dove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mourning ring is a kind of ring", "pln": ["(: cnet_isa_487fd61190 (IsA mourning_ring ring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mouse is a kind of mammal", "pln": ["(: cnet_isa_5ba9cfa6a6 (IsA mouse mammal) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mouse is a kind of rodent", "pln": ["(: cnet_isa_d05c102d0f (IsA mouse rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mouse is a kind of electronic device", "pln": ["(: cnet_isa_a7ddff5cff (IsA mouse electronic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mouse is a kind of person", "pln": ["(: cnet_isa_63cd02c9c4 (IsA mouse person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mouse button is a kind of push button", "pln": ["(: cnet_isa_4f96f32ba9 (IsA mouse_button push_button) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mouse ear chickweed is a kind of herb", "pln": ["(: cnet_isa_9053dc0d1f (IsA mouse_ear_chickweed herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mouse ear hawkweed is a kind of hawkweed", "pln": ["(: cnet_isa_49a42e62b9 (IsA mouse_ear_hawkweed hawkweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mouse eared bat is a kind of carnivorous bat", "pln": ["(: cnet_isa_68aceed8d8 (IsA mouse_eared_bat carnivorous_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mouse nest is a kind of nest", "pln": ["(: cnet_isa_4500c09c97 (IsA mouse_nest nest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mouse tooth forcep is a kind of forcep", "pln": ["(: cnet_isa_8a5a0df382 (IsA mouse_tooth_forcep forcep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mousepad is a kind of mat", "pln": ["(: cnet_isa_48754ad4c7 (IsA mousepad mat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mouser is a kind of domestic cat", "pln": ["(: cnet_isa_23dcffaa24 (IsA mouser domestic_cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mousetrap is a kind of maneuver", "pln": ["(: cnet_isa_3880e2bc46 (IsA mousetrap maneuver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mousetrap is a kind of trap", "pln": ["(: cnet_isa_3ab3868d51 (IsA mousetrap trap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moussaka is a kind of dish", "pln": ["(: cnet_isa_3fcedc695b (IsA moussaka dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mousse is a kind of toiletry", "pln": ["(: cnet_isa_c0e7749bb6 (IsA mousse toiletry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mousse is a kind of dessert", "pln": ["(: cnet_isa_dc7a76ed53 (IsA mousse dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mousse is a kind of dish", "pln": ["(: cnet_isa_0d3b449636 (IsA mousse dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mousseline de sole is a kind of fabric", "pln": ["(: cnet_isa_6707de90ca (IsA mousseline_de_sole fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mouth is a kind of opening", "pln": ["(: cnet_isa_c7abdced0d (IsA mouth opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mouth is a kind of orifice", "pln": ["(: cnet_isa_2f21b21606 (IsA mouth orifice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mouth is a kind of rima", "pln": ["(: cnet_isa_91ad93b376 (IsA mouth rima) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mouth is a kind of geological formation", "pln": ["(: cnet_isa_0ff869c0f4 (IsA mouth geological_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mouth is a kind of eater", "pln": ["(: cnet_isa_5df97a27e1 (IsA mouth eater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mouth hole is a kind of hole", "pln": ["(: cnet_isa_133fdde6cd (IsA mouth_hole hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mouthbreeder is a kind of fish", "pln": ["(: cnet_isa_5e96354145 (IsA mouthbreeder fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mouthful is a kind of containerful", "pln": ["(: cnet_isa_381af2cec7 (IsA mouthful containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mouthpart is a kind of extremity", "pln": ["(: cnet_isa_ecfd15958d (IsA mouthpart extremity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mouthpiece is a kind of acoustic device", "pln": ["(: cnet_isa_333f68fb46 (IsA mouthpiece acoustic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mouthpiece is a kind of aperture", "pln": ["(: cnet_isa_21a1dc56d1 (IsA mouthpiece aperture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mouthpiece is a kind of tube", "pln": ["(: cnet_isa_4c91ad3d05 (IsA mouthpiece tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mouthpiece is a kind of sport equipment", "pln": ["(: cnet_isa_8f128b2fa6 (IsA mouthpiece sport_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mouthpiece is a kind of spokesperson", "pln": ["(: cnet_isa_673d9a67f3 (IsA mouthpiece spokesperson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mouthwash is a kind of personal hygeine product", "pln": ["(: cnet_isa_65bf4e2f1c (IsA mouthwash personal_hygeine_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mouton is a kind of meat", "pln": ["(: cnet_isa_b86b660fdc (IsA mouton meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "movability is a kind of mobility", "pln": ["(: cnet_isa_6b644f14b5 (IsA movability mobility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "movable barrier is a kind of barrier", "pln": ["(: cnet_isa_d6fda1053e (IsA movable_barrier barrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "movable feast is a kind of feast day", "pln": ["(: cnet_isa_04af1b38ad (IsA movable_feast feast_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "move is a kind of change", "pln": ["(: cnet_isa_f0930653a8 (IsA move change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "move is a kind of decision", "pln": ["(: cnet_isa_fb724609be (IsA move decision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "move is a kind of turn", "pln": ["(: cnet_isa_4e05405404 (IsA move turn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "movement is a kind of change", "pln": ["(: cnet_isa_e0e49ddb65 (IsA movement change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "movement is a kind of action", "pln": ["(: cnet_isa_eabe9416aa (IsA movement action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "movement is a kind of musical composition", "pln": ["(: cnet_isa_a50dc140c2 (IsA movement musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "movement is a kind of happening", "pln": ["(: cnet_isa_16d95815f6 (IsA movement happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "movement is a kind of social group", "pln": ["(: cnet_isa_647f99e226 (IsA movement social_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mover is a kind of company", "pln": ["(: cnet_isa_681310a750 (IsA mover company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mover is a kind of traveler", "pln": ["(: cnet_isa_23570e6765 (IsA mover traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mover is a kind of workman", "pln": ["(: cnet_isa_e0ce295629 (IsA mover workman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "movie is a kind of film", "pln": ["(: cnet_isa_b55eb57336 (IsA movie film) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "movie is a kind of sequence of frame", "pln": ["(: cnet_isa_77d4b25bc1 (IsA movie sequence_of_frame) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "movie is a kind of product", "pln": ["(: cnet_isa_67ae9d8105 (IsA movie product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "movie is a kind of show", "pln": ["(: cnet_isa_71e13c9379 (IsA movie show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "movie and book is a kind of media", "pln": ["(: cnet_isa_a8a29ce337 (IsA movie_and_book media) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "movie making is a kind of devising", "pln": ["(: cnet_isa_6b8bf65498 (IsA movie_making devising) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "movie projector is a kind of projector", "pln": ["(: cnet_isa_5819a546cc (IsA movie_projector projector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "movie watching is a kind of passive entertainment", "pln": ["(: cnet_isa_bdc694ed5e (IsA movie_watching passive_entertainment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moviegoer is a kind of spectator", "pln": ["(: cnet_isa_af221ba056 (IsA moviegoer spectator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "movy is a kind of form of popular entertainment", "pln": ["(: cnet_isa_9fd88faea8 (IsA movy form_of_popular_entertainment) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "movy is a kind of suspenseful", "pln": ["(: cnet_isa_ba511a14bb (IsA movy suspenseful) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moving coil galvanometer is a kind of galvanometer", "pln": ["(: cnet_isa_0b1fb3b72a (IsA moving_coil_galvanometer galvanometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moving expense is a kind of expense", "pln": ["(: cnet_isa_c8581f813f (IsA moving_expense expense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moving slowly is a kind of action", "pln": ["(: cnet_isa_8f8d82761d (IsA moving_slowly action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moving slowly is a kind of activity", "pln": ["(: cnet_isa_0ab4a5647d (IsA moving_slowly activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "moving van is a kind of van", "pln": ["(: cnet_isa_a053b7846f (IsA moving_van van) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mozambican is a kind of african", "pln": ["(: cnet_isa_86dbbedd87 (IsA mozambican african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mozambique monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_bd190a0f23 (IsA mozambique_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mozart is a kind of austrian composer", "pln": ["(: cnet_isa_302d337351 (IsA mozart austrian_composer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mozart is a kind of brilliant musical composer", "pln": ["(: cnet_isa_e673c5bb87 (IsA mozart brilliant_musical_composer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mozart is a kind of famous composer", "pln": ["(: cnet_isa_f13ef3b0ae (IsA mozart famous_composer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mozart is a kind of great composer", "pln": ["(: cnet_isa_65f133aece (IsA mozart great_composer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mozart is a kind of music", "pln": ["(: cnet_isa_1a736da81a (IsA mozart music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mozzarella is a kind of cheese", "pln": ["(: cnet_isa_14ac3f117b (IsA mozzarella cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mpeg is a kind of compression", "pln": ["(: cnet_isa_3a66d6bcf9 (IsA mpeg compression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mrs is a kind of title", "pln": ["(: cnet_isa_c9f72cb542 (IsA mrs title) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ms is a kind of title", "pln": ["(: cnet_isa_64ca2c9e37 (IsA ms title) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ms dos is a kind of operating system", "pln": ["(: cnet_isa_94c973b8a7 (IsA ms_dos operating_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "msasa is a kind of tree", "pln": ["(: cnet_isa_dcef272d99 (IsA msasa tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mu is a kind of letter", "pln": ["(: cnet_isa_79dc35b228 (IsA mu letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "much is a kind of large indefinite quantity", "pln": ["(: cnet_isa_7e6b3b0a49 (IsA much large_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muchness is a kind of magnitude", "pln": ["(: cnet_isa_6ee07d0ef0 (IsA muchness magnitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mucic acid is a kind of carboxylic acid", "pln": ["(: cnet_isa_e9bc338b25 (IsA mucic_acid carboxylic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mucilage is a kind of gum", "pln": ["(: cnet_isa_4af3221885 (IsA mucilage gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mucin is a kind of glycoprotein", "pln": ["(: cnet_isa_1f0aa03892 (IsA mucin glycoprotein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muckraker is a kind of detractor", "pln": ["(: cnet_isa_6bde32ff33 (IsA muckraker detractor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "muckraking is a kind of exposure", "pln": ["(: cnet_isa_921670215e (IsA muckraking exposure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mucocutaneous leishmaniasis is a kind of leishmaniasis", "pln": ["(: cnet_isa_87e88213bc (IsA mucocutaneous_leishmaniasis leishmaniasis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mucoid is a kind of glycoprotein", "pln": ["(: cnet_isa_051a68d8ba (IsA mucoid glycoprotein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mucopolysaccharide is a kind of polysaccharide", "pln": ["(: cnet_isa_9909c0a768 (IsA mucopolysaccharide polysaccharide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mucopolysaccharidosis is a kind of genetic disease", "pln": ["(: cnet_isa_8385e9bd02 (IsA mucopolysaccharidosis genetic_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mucor is a kind of mold", "pln": ["(: cnet_isa_34f5f92f53 (IsA mucor mold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mucoraceae is a kind of fungus family", "pln": ["(: cnet_isa_2361928419 (IsA mucoraceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mucorale is a kind of fungus order", "pln": ["(: cnet_isa_e1e4a10d77 (IsA mucorale fungus_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mucous membrane is a kind of membrane", "pln": ["(: cnet_isa_29194b92e3 (IsA mucous_membrane membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mucuna is a kind of shrub", "pln": ["(: cnet_isa_33a321c49b (IsA mucuna shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mucus is a kind of secretion", "pln": ["(: cnet_isa_d2154cf679 (IsA mucus secretion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mud is a kind of slander", "pln": ["(: cnet_isa_0fda3335bc (IsA mud slander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mud is a kind of soil", "pln": ["(: cnet_isa_6b4b9ac79e (IsA mud soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mud bath is a kind of bath", "pln": ["(: cnet_isa_cfac4eb94c (IsA mud_bath bath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mud brick is a kind of brick", "pln": ["(: cnet_isa_4f25c393d3 (IsA mud_brick brick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mud dauber is a kind of sphecoid wasp", "pln": ["(: cnet_isa_f5c82d00bd (IsA mud_dauber sphecoid_wasp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mud flat is a kind of tract", "pln": ["(: cnet_isa_aa8baab0bd (IsA mud_flat tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mud midget is a kind of duckweed", "pln": ["(: cnet_isa_8af52c9798 (IsA mud_midget duckweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mud pie is a kind of mud", "pln": ["(: cnet_isa_e80048d068 (IsA mud_pie mud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mud puddle is a kind of pool", "pln": ["(: cnet_isa_e0a6d815fe (IsA mud_puddle pool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mud puppy is a kind of salamander", "pln": ["(: cnet_isa_a70c721d59 (IsA mud_puppy salamander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mud stain is a kind of stain", "pln": ["(: cnet_isa_8ce6d57639 (IsA mud_stain stain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mud turtle is a kind of turtle", "pln": ["(: cnet_isa_cd34e0b793 (IsA mud_turtle turtle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mudder is a kind of racehorse", "pln": ["(: cnet_isa_239c2442bf (IsA mudder racehorse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muddiness is a kind of wetness", "pln": ["(: cnet_isa_92d4e275c9 (IsA muddiness wetness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mudguard is a kind of fender", "pln": ["(: cnet_isa_3dbaef208e (IsA mudguard fender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mudhif is a kind of hovel", "pln": ["(: cnet_isa_e5e43df648 (IsA mudhif hovel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mudra is a kind of gesture", "pln": ["(: cnet_isa_4c51ae5b07 (IsA mudra gesture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mudskipper is a kind of goby", "pln": ["(: cnet_isa_ed37760e62 (IsA mudskipper goby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mudslide is a kind of landslide", "pln": ["(: cnet_isa_ba95e7a07d (IsA mudslide landslide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muenster is a kind of cheese", "pln": ["(: cnet_isa_cb03d3692e (IsA muenster cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muesli is a kind of breakfast food", "pln": ["(: cnet_isa_9e5d9655b6 (IsA muesli breakfast_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "muezzin is a kind of announcer", "pln": ["(: cnet_isa_35a77c305e (IsA muezzin announcer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muff is a kind of handwear", "pln": ["(: cnet_isa_1b88e68bdf (IsA muff handwear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muffin is a kind of quick bread", "pln": ["(: cnet_isa_c89ad11de9 (IsA muffin quick_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muffin man is a kind of peddler", "pln": ["(: cnet_isa_71186e88ba (IsA muffin_man peddler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muffin and celery is a kind of both food", "pln": ["(: cnet_isa_b9cad62ab8 (IsA muffin_and_celery both_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muffle is a kind of kiln", "pln": ["(: cnet_isa_0718ae4900 (IsA muffle kiln) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muffler is a kind of scarf", "pln": ["(: cnet_isa_b791e1bc64 (IsA muffler scarf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mufti is a kind of civilian clothing", "pln": ["(: cnet_isa_cfae3aba65 (IsA mufti civilian_clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mufti is a kind of jurist", "pln": ["(: cnet_isa_5f92842362 (IsA mufti jurist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mug s game is a kind of attempt", "pln": ["(: cnet_isa_8c58359917 (IsA mug_s_game attempt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mug is a kind of container", "pln": ["(: cnet_isa_92d8648410 (IsA mug container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mug is a kind of drinking vessel", "pln": ["(: cnet_isa_1e81711962 (IsA mug drinking_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mug is a kind of containerful", "pln": ["(: cnet_isa_92a62fd418 (IsA mug containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mug file is a kind of file", "pln": ["(: cnet_isa_08ffad0a6d (IsA mug_file file) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mug shot is a kind of picture", "pln": ["(: cnet_isa_4784ff4181 (IsA mug_shot picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muggee is a kind of victim", "pln": ["(: cnet_isa_a500b1ef3c (IsA muggee victim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mugger is a kind of robber", "pln": ["(: cnet_isa_959d9d184b (IsA mugger robber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mugginess is a kind of humidity", "pln": ["(: cnet_isa_37d10c0f41 (IsA mugginess humidity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mugging is a kind of assault", "pln": ["(: cnet_isa_41f92bdf50 (IsA mugging assault) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mugil is a kind of fish genus", "pln": ["(: cnet_isa_079d691978 (IsA mugil fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mugilidae is a kind of fish family", "pln": ["(: cnet_isa_aa2deb3856 (IsA mugilidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mugiloidea is a kind of animal order", "pln": ["(: cnet_isa_39cf11acb0 (IsA mugiloidea animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mugwort is a kind of wormwood", "pln": ["(: cnet_isa_7b0bb16255 (IsA mugwort wormwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mugwump is a kind of politician", "pln": ["(: cnet_isa_733365e111 (IsA mugwump politician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mugwump is a kind of individualist", "pln": ["(: cnet_isa_bda480e34f (IsA mugwump individualist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muharram is a kind of islamic calendar month", "pln": ["(: cnet_isa_b4cb0cf62a (IsA muharram islamic_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muhlenbergia is a kind of monocot genus", "pln": ["(: cnet_isa_d874f5cb86 (IsA muhlenbergia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muishond is a kind of weasel", "pln": ["(: cnet_isa_a2cbf0cb50 (IsA muishond weasel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mujahedeen khalq is a kind of mujahidin", "pln": ["(: cnet_isa_dfc14b07ca (IsA mujahedeen_khalq mujahidin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mujahid is a kind of moslem", "pln": ["(: cnet_isa_fe9cd73226 (IsA mujahid moslem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mujahidin is a kind of military unit", "pln": ["(: cnet_isa_8ae3c8756c (IsA mujahidin military_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mujtihad is a kind of moslem", "pln": ["(: cnet_isa_e475b45d27 (IsA mujtihad moslem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mujtihad is a kind of scholar", "pln": ["(: cnet_isa_4462137cfc (IsA mujtihad scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "mule s ears is a kind of wildflower", "pln": ["(: cnet_isa_ccb5d4ca32 (IsA mule_s_ears wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mukataa is a kind of headquarter", "pln": ["(: cnet_isa_4ca7204f1a (IsA mukataa headquarter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mulatto is a kind of mixed blood", "pln": ["(: cnet_isa_9a9619ca1d (IsA mulatto mixed_blood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mulberry is a kind of berry", "pln": ["(: cnet_isa_d1882581f4 (IsA mulberry berry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mulberry is a kind of fruit tree", "pln": ["(: cnet_isa_e05db955c8 (IsA mulberry fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mulch is a kind of protective covering", "pln": ["(: cnet_isa_79157fd9af (IsA mulch protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mule s ear is a kind of wildflower", "pln": ["(: cnet_isa_16e6cce86c (IsA mule_s_ear wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mule is a kind of cross between horse and donkey", "pln": ["(: cnet_isa_f652b5fb97 (IsA mule cross_between_horse_and_donkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mule is a kind of equine", "pln": ["(: cnet_isa_3b9db047af (IsA mule equine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mule is a kind of slipper", "pln": ["(: cnet_isa_49d6d549b3 (IsA mule slipper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mule deer is a kind of deer", "pln": ["(: cnet_isa_989d20b111 (IsA mule_deer deer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "mulloidichthys is a kind of fish genus", "pln": ["(: cnet_isa_1de609471f (IsA mulloidichthys fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mule fat is a kind of shrub", "pln": ["(: cnet_isa_c50fe17cd1 (IsA mule_fat shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muleteer is a kind of laborer", "pln": ["(: cnet_isa_9bbd7e92d8 (IsA muleteer laborer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mull is a kind of promontory", "pln": ["(: cnet_isa_7f3b5ffc1b (IsA mull promontory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mulled cider is a kind of sweet cider", "pln": ["(: cnet_isa_0d2205e046 (IsA mulled_cider sweet_cider) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mulled wine is a kind of wine", "pln": ["(: cnet_isa_d9e9369263 (IsA mulled_wine wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mullein is a kind of herb", "pln": ["(: cnet_isa_2bc96a0696 (IsA mullein herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mullein pink is a kind of lychnis", "pln": ["(: cnet_isa_99b6182b19 (IsA mullein_pink lychnis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muller is a kind of vessel", "pln": ["(: cnet_isa_ffcd381561 (IsA muller vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mullet is a kind of bottom feeder", "pln": ["(: cnet_isa_5d1797ee73 (IsA mullet bottom_feeder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mullet is a kind of percoid fish", "pln": ["(: cnet_isa_0c38ae95bd (IsA mullet percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mullet is a kind of fish", "pln": ["(: cnet_isa_0ec7a8f866 (IsA mullet fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mullidae is a kind of fish family", "pln": ["(: cnet_isa_8489e25425 (IsA mullidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mulligan stew is a kind of stew", "pln": ["(: cnet_isa_534e62417f (IsA mulligan_stew stew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mulligatawny is a kind of soup", "pln": ["(: cnet_isa_bdf6177113 (IsA mulligatawny soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mullion is a kind of strip", "pln": ["(: cnet_isa_486e3c44c3 (IsA mullion strip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mulloidichthy is a kind of fish genus", "pln": ["(: cnet_isa_4d3ffd0846 (IsA mulloidichthy fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mulloway is a kind of sciaenid fish", "pln": ["(: cnet_isa_adf4dcf8bf (IsA mulloway sciaenid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mullus is a kind of fish genus", "pln": ["(: cnet_isa_272aec99b2 (IsA mullus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multi billionaire is a kind of rich person", "pln": ["(: cnet_isa_41071470f8 (IsA multi_billionaire rich_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multibank holding company is a kind of bank holding company", "pln": ["(: cnet_isa_9226b8af73 (IsA multibank_holding_company bank_holding_company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multichannel recorder is a kind of recorder", "pln": ["(: cnet_isa_99c734cfd6 (IsA multichannel_recorder recorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multicollinearity is a kind of multiple regression", "pln": ["(: cnet_isa_a26ae3b4d4 (IsA multicollinearity multiple_regression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multiculturalism is a kind of doctrine", "pln": ["(: cnet_isa_e0743474c1 (IsA multiculturalism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multidimensional language is a kind of programming language", "pln": ["(: cnet_isa_5627d7cac0 (IsA multidimensional_language programming_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multiengine airplane is a kind of airplane", "pln": ["(: cnet_isa_a6928cd4b6 (IsA multiengine_airplane airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multiflora is a kind of rose", "pln": ["(: cnet_isa_25235b13c9 (IsA multiflora rose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multifocal len implant is a kind of len implant", "pln": ["(: cnet_isa_7fee446bf2 (IsA multifocal_len_implant len_implant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "multimedia is a kind of transmission", "pln": ["(: cnet_isa_8bae15e20f (IsA multimedia transmission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multiple is a kind of product", "pln": ["(: cnet_isa_5bfadaac93 (IsA multiple product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multiple correlation coefficient is a kind of correlation coefficient", "pln": ["(: cnet_isa_d1d5a2acc6 (IsA multiple_correlation_coefficient correlation_coefficient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multiple mononeuropathy is a kind of neuropathy", "pln": ["(: cnet_isa_8fe99946fd (IsA multiple_mononeuropathy neuropathy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multiple myeloma is a kind of myeloma", "pln": ["(: cnet_isa_6b41bcbcbf (IsA multiple_myeloma myeloma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multiple regression is a kind of multivariate analysis", "pln": ["(: cnet_isa_509626a008 (IsA multiple_regression multivariate_analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multiple sclerosis is a kind of autoimmune disease", "pln": ["(: cnet_isa_a1dded9425 (IsA multiple_sclerosis autoimmune_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multiple sclerosis is a kind of degenerative disorder", "pln": ["(: cnet_isa_37b750735b (IsA multiple_sclerosis degenerative_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multiple sclerosis is a kind of sclerosis", "pln": ["(: cnet_isa_bd6e1c1ba7 (IsA multiple_sclerosis sclerosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multiple star is a kind of star", "pln": ["(: cnet_isa_322b57baf6 (IsA multiple_star star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "multiple voting is a kind of vote", "pln": ["(: cnet_isa_0d6938654d (IsA multiple_voting vote) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multiplex is a kind of cinema", "pln": ["(: cnet_isa_83cb3831ee (IsA multiplex cinema) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multiplex is a kind of telecommunication", "pln": ["(: cnet_isa_a43be7d24f (IsA multiplex telecommunication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multiplex operation is a kind of operation", "pln": ["(: cnet_isa_29a2ffcaae (IsA multiplex_operation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multiplexer is a kind of electronic device", "pln": ["(: cnet_isa_66bbe50401 (IsA multiplexer electronic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multiplicand is a kind of number", "pln": ["(: cnet_isa_350d07f796 (IsA multiplicand number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multiplication is a kind of arithmetic operation", "pln": ["(: cnet_isa_2a7b50571c (IsA multiplication arithmetic_operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "multiplication is a kind of increase", "pln": ["(: cnet_isa_54c555870f (IsA multiplication increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multiplicative inverse is a kind of inverse", "pln": ["(: cnet_isa_660c56eba1 (IsA multiplicative_inverse inverse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "multiplicity is a kind of magnitude", "pln": ["(: cnet_isa_a96db94d38 (IsA multiplicity magnitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "multiplier is a kind of number", "pln": ["(: cnet_isa_ae6b09244d (IsA multiplier number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multiprocessing is a kind of data processing", "pln": ["(: cnet_isa_6762bfd2a5 (IsA multiprocessing data_processing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multiprocessor is a kind of digital computer", "pln": ["(: cnet_isa_ba57ad4332 (IsA multiprocessor digital_computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multiprogramming is a kind of execution", "pln": ["(: cnet_isa_de489db31e (IsA multiprogramming execution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multistage is a kind of time period", "pln": ["(: cnet_isa_96637ac38e (IsA multistage time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multistage rocket is a kind of rocket", "pln": ["(: cnet_isa_64f7ef4183 (IsA multistage_rocket rocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "multitude is a kind of gathering", "pln": ["(: cnet_isa_5ae2235336 (IsA multitude gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multitude is a kind of group", "pln": ["(: cnet_isa_66e735014f (IsA multitude group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multitudinousness is a kind of numerousness", "pln": ["(: cnet_isa_9383c660c1 (IsA multitudinousness numerousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "multivariate analysis is a kind of statistical method", "pln": ["(: cnet_isa_fcaac93660 (IsA multivariate_analysis statistical_method) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multiversity is a kind of university", "pln": ["(: cnet_isa_27601e0aa7 (IsA multiversity university) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "multivitamin is a kind of vitamin pill", "pln": ["(: cnet_isa_c9f226a1b7 (IsA multivitamin vitamin_pill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mum is a kind of secrecy", "pln": ["(: cnet_isa_929408a450 (IsA mum secrecy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mumble is a kind of utterance", "pln": ["(: cnet_isa_a038dbc9bc (IsA mumble utterance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mumblety peg is a kind of child s game", "pln": ["(: cnet_isa_4b1de5b605 (IsA mumblety_peg child_s_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mumbling is a kind of chew", "pln": ["(: cnet_isa_0de1c5ab4c (IsA mumbling chew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mumbling is a kind of enunciation", "pln": ["(: cnet_isa_29f0c42858 (IsA mumbling enunciation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mumbo jumbo is a kind of gibberish", "pln": ["(: cnet_isa_8f14e63286 (IsA mumbo_jumbo gibberish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mummery is a kind of nonsense", "pln": ["(: cnet_isa_7a6528dc3c (IsA mummery nonsense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mummichog is a kind of killifish", "pln": ["(: cnet_isa_d8f91c7955 (IsA mummichog killifish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mummy is a kind of body", "pln": ["(: cnet_isa_002668456a (IsA mummy body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mummification is a kind of embalmment", "pln": ["(: cnet_isa_cddc8ae8e4 (IsA mummification embalmment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mummification is a kind of condition", "pln": ["(: cnet_isa_a000dd9c18 (IsA mummification condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mump is a kind of infectious disease", "pln": ["(: cnet_isa_461b9b773b (IsA mump infectious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mumpsimus is a kind of notion", "pln": ["(: cnet_isa_41ca70881a (IsA mumpsimus notion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "munch is a kind of bite", "pln": ["(: cnet_isa_fb9ad1b8c9 (IsA munch bite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "munchausen s syndrome is a kind of syndrome", "pln": ["(: cnet_isa_0b66a6483a (IsA munchausen_s_syndrome syndrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muncher is a kind of chewer", "pln": ["(: cnet_isa_29dc3debba (IsA muncher chewer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "munda is a kind of austro asiatic", "pln": ["(: cnet_isa_17cc748fe9 (IsA munda austro_asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mung is a kind of bean", "pln": ["(: cnet_isa_3d3dedb298 (IsA mung bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mung is a kind of legume", "pln": ["(: cnet_isa_889c5824dd (IsA mung legume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "munich beer is a kind of lager", "pln": ["(: cnet_isa_8c20bf781b (IsA munich_beer lager) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "municipal bond is a kind of bond", "pln": ["(: cnet_isa_d7d4495c89 (IsA municipal_bond bond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "municipal government is a kind of local government", "pln": ["(: cnet_isa_22adcc43d4 (IsA municipal_government local_government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "municipal note is a kind of note", "pln": ["(: cnet_isa_694c352fbe (IsA municipal_note note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "municipality is a kind of gathering", "pln": ["(: cnet_isa_10444ad13f (IsA municipality gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "municipality is a kind of administrative district", "pln": ["(: cnet_isa_1f19f05631 (IsA municipality administrative_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "municipality is a kind of urban area", "pln": ["(: cnet_isa_48d12199c3 (IsA municipality urban_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "munificence is a kind of liberality", "pln": ["(: cnet_isa_4e28e56596 (IsA munificence liberality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muniment is a kind of title deed", "pln": ["(: cnet_isa_57aa6561e8 (IsA muniment title_deed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "munition is a kind of armament", "pln": ["(: cnet_isa_e65feb5458 (IsA munition armament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "munition industry is a kind of industry", "pln": ["(: cnet_isa_f4f98c10d9 (IsA munition_industry industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "munj is a kind of grass", "pln": ["(: cnet_isa_fb2f5cf569 (IsA munj grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muntiacus is a kind of mammal genus", "pln": ["(: cnet_isa_e82835ff36 (IsA muntiacus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muntingia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_51cae691c0 (IsA muntingia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muntjac is a kind of deer", "pln": ["(: cnet_isa_9b56cfd5ff (IsA muntjac deer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muon is a kind of elementary particle", "pln": ["(: cnet_isa_c6b9e04402 (IsA muon elementary_particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muon is a kind of lepton", "pln": ["(: cnet_isa_b6dfda7463 (IsA muon lepton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muppet is a kind of puppet", "pln": ["(: cnet_isa_8965a0de98 (IsA muppet puppet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muraenidae is a kind of fish family", "pln": ["(: cnet_isa_c26f77f475 (IsA muraenidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mural is a kind of painting", "pln": ["(: cnet_isa_844056e819 (IsA mural painting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muralist is a kind of painter", "pln": ["(: cnet_isa_dffd784d44 (IsA muralist painter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "murder is a kind of crime", "pln": ["(: cnet_isa_4e48d32c29 (IsA murder crime) (STV 1.0 0.9756))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "murder is a kind of evil", "pln": ["(: cnet_isa_fd4d768045 (IsA murder evil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "murder is a kind of felony", "pln": ["(: cnet_isa_d51559a906 (IsA murder felony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "murder is a kind of serious crime", "pln": ["(: cnet_isa_a55a58db67 (IsA murder serious_crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "murder is a kind of homicide", "pln": ["(: cnet_isa_bffcf86919 (IsA murder homicide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "murder charge is a kind of indictment", "pln": ["(: cnet_isa_9a7ca46d87 (IsA murder_charge indictment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "murder conviction is a kind of conviction", "pln": ["(: cnet_isa_0ad720d602 (IsA murder_conviction conviction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "murder mystery is a kind of mystery", "pln": ["(: cnet_isa_881214d9cb (IsA murder_mystery mystery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "murder suspect is a kind of suspect", "pln": ["(: cnet_isa_bdd7c87a18 (IsA murder_suspect suspect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "murderee is a kind of victim", "pln": ["(: cnet_isa_504978ef86 (IsA murderee victim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "murderer is a kind of criminal", "pln": ["(: cnet_isa_e751798436 (IsA murderer criminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "murderer is a kind of killer", "pln": ["(: cnet_isa_1aa6755314 (IsA murderer killer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "murderess is a kind of murderer", "pln": ["(: cnet_isa_6ad7b11bd0 (IsA murderess murderer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "murdering is a kind of calculated move", "pln": ["(: cnet_isa_6123199f9a (IsA murdering calculated_move) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "murderousness is a kind of cruelty", "pln": ["(: cnet_isa_ddce41eebd (IsA murderousness cruelty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "murderousness is a kind of hate", "pln": ["(: cnet_isa_d28d17f89f (IsA murderousness hate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "murder is a kind of heinous form of crime", "pln": ["(: cnet_isa_10b1f7e8e4 (IsA murder heinous_form_of_crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muriatic acid is a kind of hydrochloric acid", "pln": ["(: cnet_isa_8431917dd1 (IsA muriatic_acid hydrochloric_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muridae is a kind of mammal family", "pln": ["(: cnet_isa_dfd405960c (IsA muridae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "murine is a kind of rodent", "pln": ["(: cnet_isa_27f9f192d7 (IsA murine rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "murine typhus is a kind of typhus", "pln": ["(: cnet_isa_9280f09505 (IsA murine_typhus typhus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "murmur vowel is a kind of schwa", "pln": ["(: cnet_isa_f85a1bacd9 (IsA murmur_vowel schwa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "muroidea is a kind of mammal family", "pln": ["(: cnet_isa_b8ec3cd889 (IsA muroidea mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "musales is a kind of plant order", "pln": ["(: cnet_isa_a4fd0ca19b (IsA musales plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "murphy s law is a kind of gnome", "pln": ["(: cnet_isa_77a7f078bb (IsA murphy_s_law gnome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "murphy bed is a kind of bed", "pln": ["(: cnet_isa_4a46720724 (IsA murphy_bed bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "murrain is a kind of animal disease", "pln": ["(: cnet_isa_cb06c2c36d (IsA murrain animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "murre is a kind of guillemot", "pln": ["(: cnet_isa_e8b2061887 (IsA murre guillemot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mus is a kind of mammal genus", "pln": ["(: cnet_isa_e024418b87 (IsA mus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musa is a kind of monocot genus", "pln": ["(: cnet_isa_a2432ebec7 (IsA musa monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musaceae is a kind of monocot family", "pln": ["(: cnet_isa_1bfad91ed7 (IsA musaceae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musale is a kind of plant order", "pln": ["(: cnet_isa_c190dcb251 (IsA musale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musca is a kind of arthropod genus", "pln": ["(: cnet_isa_57813e2632 (IsA musca arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musca volitan is a kind of symptom", "pln": ["(: cnet_isa_65c3518133 (IsA musca_volitan symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muscadet is a kind of white wine", "pln": ["(: cnet_isa_15da3d98f3 (IsA muscadet white_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muscadet is a kind of vinifera", "pln": ["(: cnet_isa_14fa8ae2d0 (IsA muscadet vinifera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muscadine is a kind of grape", "pln": ["(: cnet_isa_982f141d33 (IsA muscadine grape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muscardinus is a kind of mammal genus", "pln": ["(: cnet_isa_81986d3e02 (IsA muscardinus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muscari is a kind of liliid monocot genus", "pln": ["(: cnet_isa_3f49eb2b08 (IsA muscari liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muscat is a kind of fortified wine", "pln": ["(: cnet_isa_c8e1455850 (IsA muscat fortified_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muscat is a kind of vinifera grape", "pln": ["(: cnet_isa_3ea66ec684 (IsA muscat vinifera_grape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muscat is a kind of vinifera", "pln": ["(: cnet_isa_0e2165f5ad (IsA muscat vinifera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "muscicapa is a kind of bird genus", "pln": ["(: cnet_isa_cce55cc89b (IsA muscicapa bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muscicapidae is a kind of bird family", "pln": ["(: cnet_isa_48c58dc2b8 (IsA muscicapidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muscidae is a kind of arthropod family", "pln": ["(: cnet_isa_cdd683f749 (IsA muscidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muscivora is a kind of bird genus", "pln": ["(: cnet_isa_1eb31529f4 (IsA muscivora bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muscle is a kind of meat", "pln": ["(: cnet_isa_1bde571d8c (IsA muscle meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muscle is a kind of authority", "pln": ["(: cnet_isa_868bde9b28 (IsA muscle authority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "muscle is a kind of animal tissue", "pln": ["(: cnet_isa_b1781cc647 (IsA muscle animal_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "muscle is a kind of contractile organ", "pln": ["(: cnet_isa_6f1fb9d886 (IsA muscle contractile_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muscle cell is a kind of fibre", "pln": ["(: cnet_isa_bfbc325d10 (IsA muscle_cell fibre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muscle cell is a kind of somatic cell", "pln": ["(: cnet_isa_afd6191925 (IsA muscle_cell somatic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muscle relaxant is a kind of relaxant", "pln": ["(: cnet_isa_abca43cfa2 (IsA muscle_relaxant relaxant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muscleman is a kind of bully", "pln": ["(: cnet_isa_fed37425e9 (IsA muscleman bully) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muscle is a kind of in human body", "pln": ["(: cnet_isa_486f4f3bc7 (IsA muscle in_human_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "muscoidea is a kind of arthropod family", "pln": ["(: cnet_isa_2b1ede51c1 (IsA muscoidea arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muscovite is a kind of russian", "pln": ["(: cnet_isa_6aa7adadb0 (IsA muscovite russian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muscovite is a kind of mica", "pln": ["(: cnet_isa_fb0d70fafe (IsA muscovite mica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "muscovy duck is a kind of duck", "pln": ["(: cnet_isa_95464631d8 (IsA muscovy_duck duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "muscular dystrophy is a kind of genetic disease", "pln": ["(: cnet_isa_49e4168ed6 (IsA muscular_dystrophy genetic_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muscular structure is a kind of system", "pln": ["(: cnet_isa_f3d0f64e36 (IsA muscular_structure system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muscular tonus is a kind of tonicity", "pln": ["(: cnet_isa_56b991f6a6 (IsA muscular_tonus tonicity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muscularity is a kind of physiological state", "pln": ["(: cnet_isa_283c42fe15 (IsA muscularity physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "musculophrenic artery is a kind of artery", "pln": ["(: cnet_isa_443b697ee9 (IsA musculophrenic_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musculophrenic vein is a kind of vein", "pln": ["(: cnet_isa_1e718633e3 (IsA musculophrenic_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musculoskeletal system is a kind of system", "pln": ["(: cnet_isa_ff09a68d4f (IsA musculoskeletal_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musculus abductor digiti minimi manus is a kind of abductor", "pln": ["(: cnet_isa_50e34edc0f (IsA musculus_abductor_digiti_minimi_manus abductor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musculus abductor digiti minimi pedis is a kind of abductor", "pln": ["(: cnet_isa_0486f44528 (IsA musculus_abductor_digiti_minimi_pedis abductor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musculus abductor hallucis is a kind of abductor", "pln": ["(: cnet_isa_61f275b7b3 (IsA musculus_abductor_hallucis abductor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musculus abductor pollicis is a kind of abductor", "pln": ["(: cnet_isa_1c926cadd1 (IsA musculus_abductor_pollicis abductor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musculus adductor brevis is a kind of adductor", "pln": ["(: cnet_isa_c458a23fc9 (IsA musculus_adductor_brevis adductor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musculus adductor hallucis is a kind of adductor", "pln": ["(: cnet_isa_299c352eb8 (IsA musculus_adductor_hallucis adductor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musculus adductor longus is a kind of adductor", "pln": ["(: cnet_isa_c46c962d8d (IsA musculus_adductor_longus adductor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musculus adductor magnus is a kind of adductor", "pln": ["(: cnet_isa_a109c8b41a (IsA musculus_adductor_magnus adductor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musculus articularis cubiti is a kind of articular muscle", "pln": ["(: cnet_isa_22aede1e37 (IsA musculus_articularis_cubiti articular_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musculus articularis genus is a kind of articular muscle", "pln": ["(: cnet_isa_23c65d2ccb (IsA musculus_articularis_genus articular_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musculus bicep femoris is a kind of bicep", "pln": ["(: cnet_isa_0d8063ee79 (IsA musculus_bicep_femoris bicep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musculus sphincter ani externus is a kind of skeletal muscle", "pln": ["(: cnet_isa_fda3363283 (IsA musculus_sphincter_ani_externus skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musculus sphincter ani internus is a kind of smooth muscle", "pln": ["(: cnet_isa_9d9560afc5 (IsA musculus_sphincter_ani_internus smooth_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musculus sphincter ductus choledochi is a kind of sphincter", "pln": ["(: cnet_isa_17d51d9924 (IsA musculus_sphincter_ductus_choledochi sphincter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musculus sphincter ductus pancreatici is a kind of sphincter", "pln": ["(: cnet_isa_9082d768b4 (IsA musculus_sphincter_ductus_pancreatici sphincter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muse is a kind of source", "pln": ["(: cnet_isa_136be97bd0 (IsA muse source) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muse is a kind of greek deity", "pln": ["(: cnet_isa_053e5bd05b (IsA muse greek_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musette is a kind of bagpipe", "pln": ["(: cnet_isa_299c0c02c4 (IsA musette bagpipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musette pipe is a kind of oboe", "pln": ["(: cnet_isa_59d39e3693 (IsA musette_pipe oboe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "museum is a kind of depository", "pln": ["(: cnet_isa_9e14417db3 (IsA museum depository) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musgu is a kind of biu mandara", "pln": ["(: cnet_isa_31724b0b2e (IsA musgu biu_mandara) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mush is a kind of journey", "pln": ["(: cnet_isa_ea0cf1b00a (IsA mush journey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mush is a kind of hot cereal", "pln": ["(: cnet_isa_4c8bfdc13e (IsA mush hot_cereal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musher is a kind of traveler", "pln": ["(: cnet_isa_5b77810b0f (IsA musher traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mushiness is a kind of softness", "pln": ["(: cnet_isa_08f89f457a (IsA mushiness softness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mushroom is a kind of fungus", "pln": ["(: cnet_isa_05ff06e981 (IsA mushroom fungus) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mushroom is a kind of vegetable", "pln": ["(: cnet_isa_6ca92d0091 (IsA mushroom vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mushroom is a kind of cloud", "pln": ["(: cnet_isa_8ccb6f4217 (IsA mushroom cloud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mushroom is a kind of agaric", "pln": ["(: cnet_isa_eac150d4ee (IsA mushroom agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mushroom is a kind of basidiomycete", "pln": ["(: cnet_isa_c96fdbad71 (IsA mushroom basidiomycete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mushroom anchor is a kind of anchor", "pln": ["(: cnet_isa_54eb4fe58f (IsA mushroom_anchor anchor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mushroom coral is a kind of stony coral", "pln": ["(: cnet_isa_6e7c1df2c6 (IsA mushroom_coral stony_coral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mushroom pimple is a kind of hypocreaceae", "pln": ["(: cnet_isa_3d51a5f97f (IsA mushroom_pimple hypocreaceae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mushroom poisoning is a kind of food poisoning", "pln": ["(: cnet_isa_88519b5a39 (IsA mushroom_poisoning food_poisoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mushroom sauce is a kind of sauce", "pln": ["(: cnet_isa_ef6393fe94 (IsA mushroom_sauce sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mushy pea is a kind of side dish", "pln": ["(: cnet_isa_2428f6fcba (IsA mushy_pea side_dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "music is a kind of sequence of sound", "pln": ["(: cnet_isa_ef191150ab (IsA music sequence_of_sound) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "music is a kind of way to let out emotion", "pln": ["(: cnet_isa_380c915dad (IsA music way_to_let_out_emotion) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "music is a kind of punishment", "pln": ["(: cnet_isa_eaa285c650 (IsA music punishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "musician is a kind of person who plays music", "pln": ["(: cnet_isa_4503896ab6 (IsA musician person_who_plays_music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "music is a kind of auditory communication", "pln": ["(: cnet_isa_720992a387 (IsA music auditory_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "music is a kind of activity", "pln": ["(: cnet_isa_f21662ae97 (IsA music activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "music box is a kind of musical instrument", "pln": ["(: cnet_isa_27ef7bf8f7 (IsA music_box musical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "music critic is a kind of critic", "pln": ["(: cnet_isa_454b5fc345 (IsA music_critic critic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "music department is a kind of academic department", "pln": ["(: cnet_isa_8ddd013967 (IsA music_department academic_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "music genre is a kind of expressive style", "pln": ["(: cnet_isa_2a341a9fce (IsA music_genre expressive_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "music genre is a kind of music", "pln": ["(: cnet_isa_bbe46222d6 (IsA music_genre music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "music hall is a kind of theatre", "pln": ["(: cnet_isa_50ca2b0277 (IsA music_hall theatre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "music hall is a kind of theater", "pln": ["(: cnet_isa_34aeaef1b3 (IsA music_hall theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "music lesson is a kind of lesson", "pln": ["(: cnet_isa_1eb77841a2 (IsA music_lesson lesson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "music of sphere is a kind of music", "pln": ["(: cnet_isa_e64916cc18 (IsA music_of_sphere music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "music paper is a kind of paper", "pln": ["(: cnet_isa_599ffc87d6 (IsA music_paper paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "music school is a kind of conservatory", "pln": ["(: cnet_isa_aef3782f4b (IsA music_school conservatory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "music stand is a kind of rack", "pln": ["(: cnet_isa_53da9a704f (IsA music_stand rack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "music stool is a kind of stool", "pln": ["(: cnet_isa_939f088ec4 (IsA music_stool stool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "music teacher is a kind of teacher", "pln": ["(: cnet_isa_c3d63fb8a1 (IsA music_teacher teacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musical is a kind of play", "pln": ["(: cnet_isa_a9fa1544e8 (IsA musical play) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musical is a kind of play in", "pln": ["(: cnet_isa_1ca48db44b (IsA musical play_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musical is a kind of movie", "pln": ["(: cnet_isa_34d187b01b (IsA musical movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musical arrangement is a kind of musical composition", "pln": ["(: cnet_isa_ddb16db3ce (IsA musical_arrangement musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musical chair is a kind of child s game", "pln": ["(: cnet_isa_4295578a24 (IsA musical_chair child_s_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musical chair is a kind of rearrangement", "pln": ["(: cnet_isa_9168291986 (IsA musical_chair rearrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musical composition is a kind of music", "pln": ["(: cnet_isa_51503616e1 (IsA musical_composition music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musical drama is a kind of opera", "pln": ["(: cnet_isa_e79a4b4af4 (IsA musical_drama opera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musical instrument is a kind of device", "pln": ["(: cnet_isa_4455b5e859 (IsA musical_instrument device) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musical instrument digital interface is a kind of protocol", "pln": ["(: cnet_isa_b70193d046 (IsA musical_instrument_digital_interface protocol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musical notation is a kind of written language", "pln": ["(: cnet_isa_4e91d9307e (IsA musical_notation written_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musical notation is a kind of notation", "pln": ["(: cnet_isa_df6ccb5459 (IsA musical_notation notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musical organization is a kind of organization", "pln": ["(: cnet_isa_3d7b211794 (IsA musical_organization organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musical perception is a kind of auditory perception", "pln": ["(: cnet_isa_ee08171250 (IsA musical_perception auditory_perception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musical performance is a kind of performance", "pln": ["(: cnet_isa_71e35d990e (IsA musical_performance performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musical performance is a kind of performing art", "pln": ["(: cnet_isa_7cdf954a97 (IsA musical_performance performing_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musical soiree is a kind of soiree", "pln": ["(: cnet_isa_49bcaaaecf (IsA musical_soiree soiree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musical time is a kind of time", "pln": ["(: cnet_isa_03343ee578 (IsA musical_time time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musicality is a kind of sound property", "pln": ["(: cnet_isa_fbbc198202 (IsA musicality sound_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musician is a kind of person who play music", "pln": ["(: cnet_isa_e7514c643e (IsA musician person_who_play_music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musician is a kind of artist", "pln": ["(: cnet_isa_1ea9ad872e (IsA musician artist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musician is a kind of performer", "pln": ["(: cnet_isa_b53cc07719 (IsA musician performer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musicianship is a kind of art", "pln": ["(: cnet_isa_a3030f8865 (IsA musicianship art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musicogenic epilepsy is a kind of reflex epilepsy", "pln": ["(: cnet_isa_8e7854d2d4 (IsA musicogenic_epilepsy reflex_epilepsy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musicologist is a kind of scholar", "pln": ["(: cnet_isa_627c1ecc5f (IsA musicologist scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musicology is a kind of humanistic discipline", "pln": ["(: cnet_isa_46f3ff83c6 (IsA musicology humanistic_discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musk is a kind of scent", "pln": ["(: cnet_isa_d516ed279b (IsA musk scent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musk is a kind of secretion", "pln": ["(: cnet_isa_4fd6171897 (IsA musk secretion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musk clover is a kind of storksbill", "pln": ["(: cnet_isa_f8d46c6213 (IsA musk_clover storksbill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musk deer is a kind of deer", "pln": ["(: cnet_isa_ac9e2fb5f3 (IsA musk_deer deer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "musk kangaroo is a kind of kangaroo", "pln": ["(: cnet_isa_f768141a46 (IsA musk_kangaroo kangaroo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musk mallow is a kind of mallow", "pln": ["(: cnet_isa_2dc3f3cfc1 (IsA musk_mallow mallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musk ox is a kind of bovid", "pln": ["(: cnet_isa_88a78d367e (IsA musk_ox bovid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musk rose is a kind of rose", "pln": ["(: cnet_isa_e779c100a6 (IsA musk_rose rose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musk thistle is a kind of thistle", "pln": ["(: cnet_isa_4adbb462de (IsA musk_thistle thistle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musk turtle is a kind of mud turtle", "pln": ["(: cnet_isa_16c3b1e67b (IsA musk_turtle mud_turtle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muskellunge is a kind of pike", "pln": ["(: cnet_isa_89d649287b (IsA muskellunge pike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musket is a kind of muzzle loader", "pln": ["(: cnet_isa_26b4babc95 (IsA musket muzzle_loader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musket ball is a kind of shot", "pln": ["(: cnet_isa_c3d45fcada (IsA musket_ball shot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musketeer is a kind of infantryman", "pln": ["(: cnet_isa_c5a0966d0a (IsA musketeer infantryman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musketry is a kind of proficiency", "pln": ["(: cnet_isa_5714a1971f (IsA musketry proficiency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musketry is a kind of army unit", "pln": ["(: cnet_isa_b8f0a78763 (IsA musketry army_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muskhogean is a kind of amerind", "pln": ["(: cnet_isa_e3e67071b1 (IsA muskhogean amerind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "muskiness is a kind of olfactory property", "pln": ["(: cnet_isa_3a56cb5b72 (IsA muskiness olfactory_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muskmelon is a kind of melon", "pln": ["(: cnet_isa_35f28a2be5 (IsA muskmelon melon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muskogean is a kind of native american", "pln": ["(: cnet_isa_551790e4b9 (IsA muskogean native_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muskogee is a kind of muskhogean", "pln": ["(: cnet_isa_70e8a52943 (IsA muskogee muskhogean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muskogee is a kind of muskogean", "pln": ["(: cnet_isa_e6c4e4c138 (IsA muskogee muskogean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muskrat is a kind of rodent", "pln": ["(: cnet_isa_02c2faffc8 (IsA muskrat rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muskrat is a kind of fur", "pln": ["(: cnet_isa_bdf0a4499b (IsA muskrat fur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muskwood is a kind of daisybush", "pln": ["(: cnet_isa_b227c9a773 (IsA muskwood daisybush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muslimah is a kind of moslem", "pln": ["(: cnet_isa_a19079af7c (IsA muslimah moslem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muslin is a kind of fabric", "pln": ["(: cnet_isa_54158ff841 (IsA muslin fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musnud is a kind of throne", "pln": ["(: cnet_isa_fe182b430c (IsA musnud throne) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musophaga is a kind of bird genus", "pln": ["(: cnet_isa_25a02718e4 (IsA musophaga bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musophagidae is a kind of bird family", "pln": ["(: cnet_isa_2784bc4e24 (IsA musophagidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musophobia is a kind of zoophobia", "pln": ["(: cnet_isa_492549f634 (IsA musophobia zoophobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mussel is a kind of bivalve", "pln": ["(: cnet_isa_4b72fb9d6b (IsA mussel bivalve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mussel is a kind of shellfish", "pln": ["(: cnet_isa_6c618ff77f (IsA mussel shellfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "must is a kind of grape juice", "pln": ["(: cnet_isa_d66ecee2d3 (IsA must grape_juice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "must is a kind of necessity", "pln": ["(: cnet_isa_d6c4ce209d (IsA must necessity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mustache is a kind of facial hair", "pln": ["(: cnet_isa_10244c20db (IsA mustache facial_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mustache cup is a kind of cup", "pln": ["(: cnet_isa_d3893dd406 (IsA mustache_cup cup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mustachio is a kind of mustache", "pln": ["(: cnet_isa_0d3959f84d (IsA mustachio mustache) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mustang is a kind of car model", "pln": ["(: cnet_isa_721114750e (IsA mustang car_model) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mustang is a kind of pony", "pln": ["(: cnet_isa_64bdd1a522 (IsA mustang pony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mustang mint is a kind of herb", "pln": ["(: cnet_isa_962b6d2f15 (IsA mustang_mint herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mustard is a kind of condiment", "pln": ["(: cnet_isa_2e731a3925 (IsA mustard condiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mustard is a kind of cruciferous vegetable", "pln": ["(: cnet_isa_74d125d938 (IsA mustard cruciferous_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mustard is a kind of crucifer", "pln": ["(: cnet_isa_8978650c99 (IsA mustard crucifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mustard gas is a kind of poison gas", "pln": ["(: cnet_isa_6b7ec6be14 (IsA mustard_gas poison_gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mustard gas is a kind of vesicant", "pln": ["(: cnet_isa_562e7b13e6 (IsA mustard_gas vesicant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mustard oil is a kind of oil", "pln": ["(: cnet_isa_18bf0b698a (IsA mustard_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mustard plaster is a kind of poultice", "pln": ["(: cnet_isa_80187c93a2 (IsA mustard_plaster poultice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mustard sauce is a kind of sauce", "pln": ["(: cnet_isa_d2181e4071 (IsA mustard_sauce sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mustard seed is a kind of flavorer", "pln": ["(: cnet_isa_69088d4f5a (IsA mustard_seed flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mustela is a kind of mammal genus", "pln": ["(: cnet_isa_85cf0e9059 (IsA mustela mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mustelidae is a kind of mammal family", "pln": ["(: cnet_isa_15f4a60409 (IsA mustelidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musteline mammal is a kind of carnivore", "pln": ["(: cnet_isa_5cb090f015 (IsA musteline_mammal carnivore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mustelus is a kind of fish genus", "pln": ["(: cnet_isa_fd0e65936d (IsA mustelus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "muster is a kind of gathering", "pln": ["(: cnet_isa_5d5ff44510 (IsA muster gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muster call is a kind of roll call", "pln": ["(: cnet_isa_e1289c9aea (IsA muster_call roll_call) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muster roll is a kind of roll", "pln": ["(: cnet_isa_3a8a713ec9 (IsA muster_roll roll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "musth is a kind of phase", "pln": ["(: cnet_isa_c8bf84ba19 (IsA musth phase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mustiness is a kind of staleness", "pln": ["(: cnet_isa_d7680f8baf (IsA mustiness staleness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mutability is a kind of changeableness", "pln": ["(: cnet_isa_6335b07424 (IsA mutability changeableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mutagen is a kind of agent", "pln": ["(: cnet_isa_ea72cae383 (IsA mutagen agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mutagenesis is a kind of cause", "pln": ["(: cnet_isa_69a5d260e8 (IsA mutagenesis cause) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mutant is a kind of animal", "pln": ["(: cnet_isa_c5ac485180 (IsA mutant animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mutant is a kind of organism", "pln": ["(: cnet_isa_992f5ad415 (IsA mutant organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mutant gene is a kind of gene", "pln": ["(: cnet_isa_2096ecfcea (IsA mutant_gene gene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mutation is a kind of change", "pln": ["(: cnet_isa_646505cd4d (IsA mutation change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mutawa een is a kind of police", "pln": ["(: cnet_isa_6e79ab5d67 (IsA mutawa_een police) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mutchkin is a kind of liquid unit", "pln": ["(: cnet_isa_7fd6a6e863 (IsA mutchkin liquid_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mute is a kind of acoustic device", "pln": ["(: cnet_isa_4936d7c345 (IsA mute acoustic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mute is a kind of deaf person", "pln": ["(: cnet_isa_57faa00f8a (IsA mute deaf_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mute swan is a kind of swan", "pln": ["(: cnet_isa_d3aba5c069 (IsA mute_swan swan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muteness is a kind of uncommunicativeness", "pln": ["(: cnet_isa_16999b0f34 (IsA muteness uncommunicativeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mutilation is a kind of injury", "pln": ["(: cnet_isa_71fac55894 (IsA mutilation injury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mutilator is a kind of person", "pln": ["(: cnet_isa_a51f4f5f36 (IsA mutilator person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mutillidae is a kind of hymenopterous insect", "pln": ["(: cnet_isa_bd4b48c9b2 (IsA mutillidae hymenopterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mutineer is a kind of insurgent", "pln": ["(: cnet_isa_6952448a58 (IsA mutineer insurgent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mutinus is a kind of fungus genus", "pln": ["(: cnet_isa_b4142a7b7b (IsA mutinus fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mutiny is a kind of rebellion", "pln": ["(: cnet_isa_5d8c42de6a (IsA mutiny rebellion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mutisia is a kind of shrub", "pln": ["(: cnet_isa_ce65ac31bb (IsA mutisia shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mutism is a kind of condition", "pln": ["(: cnet_isa_e2004ceb73 (IsA mutism condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muton is a kind of nucleotide", "pln": ["(: cnet_isa_d328699f38 (IsA muton nucleotide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mutt is a kind of mixed breed dog", "pln": ["(: cnet_isa_1ec090fc27 (IsA mutt mixed_breed_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mutter is a kind of sound", "pln": ["(: cnet_isa_73ef07d20a (IsA mutter sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mutterer is a kind of speaker", "pln": ["(: cnet_isa_07e50f338d (IsA mutterer speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mutton chop is a kind of chop", "pln": ["(: cnet_isa_3997f571f7 (IsA mutton_chop chop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mutton snapper is a kind of snapper", "pln": ["(: cnet_isa_2b91c0a1c4 (IsA mutton_snapper snapper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mutton tallow is a kind of tallow", "pln": ["(: cnet_isa_db2beff4f7 (IsA mutton_tallow tallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mutual aid is a kind of logistic support", "pln": ["(: cnet_isa_61c528d878 (IsA mutual_aid logistic_support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mutual fund is a kind of investment company", "pln": ["(: cnet_isa_e620834856 (IsA mutual_fund investment_company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mutual fund is a kind of fund", "pln": ["(: cnet_isa_8349fe3e36 (IsA mutual_fund fund) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mutual induction is a kind of induction", "pln": ["(: cnet_isa_0fa3ecc2ee (IsA mutual_induction induction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mutual opposition is a kind of opposition", "pln": ["(: cnet_isa_f6f6dccc2c (IsA mutual_opposition opposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mutual resemblance is a kind of resemblance", "pln": ["(: cnet_isa_a9b869d325 (IsA mutual_resemblance resemblance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mutual saving bank is a kind of saving bank", "pln": ["(: cnet_isa_fc029d835e (IsA mutual_saving_bank saving_bank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mutual understanding is a kind of sympathy", "pln": ["(: cnet_isa_2823ea0328 (IsA mutual_understanding sympathy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mutuality is a kind of reciprocality", "pln": ["(: cnet_isa_c2a3a3285d (IsA mutuality reciprocality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muzhik is a kind of peasant", "pln": ["(: cnet_isa_24007e5ede (IsA muzhik peasant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muzzle is a kind of face", "pln": ["(: cnet_isa_605b2ecaf5 (IsA muzzle face) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "muzzle is a kind of restraint", "pln": ["(: cnet_isa_05e9d96f0a (IsA muzzle restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muzzle loader is a kind of firearm", "pln": ["(: cnet_isa_2ae34fdf30 (IsA muzzle_loader firearm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muzzle velocity is a kind of speed", "pln": ["(: cnet_isa_86fc54c0e5 (IsA muzzle_velocity speed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "muzzler is a kind of worker", "pln": ["(: cnet_isa_abeefb747a (IsA muzzler worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mwera is a kind of bantu", "pln": ["(: cnet_isa_e8e10e1dad (IsA mwera bantu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mya is a kind of mollusk genus", "pln": ["(: cnet_isa_316499e7ec (IsA mya mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "myaceae is a kind of animal order", "pln": ["(: cnet_isa_9373b71d49 (IsA myaceae animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myacidae is a kind of mollusk family", "pln": ["(: cnet_isa_a2f0ee24b2 (IsA myacidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myadeste is a kind of bird genus", "pln": ["(: cnet_isa_b435d2e799 (IsA myadeste bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myalgia is a kind of pain", "pln": ["(: cnet_isa_3e99325d5f (IsA myalgia pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myanmar monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_5a95c83db3 (IsA myanmar_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myasthenia is a kind of physiological state", "pln": ["(: cnet_isa_1395470609 (IsA myasthenia physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myasthenia gravis is a kind of autoimmune disease", "pln": ["(: cnet_isa_98f1c8040e (IsA myasthenia_gravis autoimmune_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myasthenia gravis is a kind of disease of neuromuscular junction", "pln": ["(: cnet_isa_e57a491bcc (IsA myasthenia_gravis disease_of_neuromuscular_junction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mycelia sterilia is a kind of fungus order", "pln": ["(: cnet_isa_356bd766fb (IsA mycelia_sterilia fungus_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mycelium is a kind of plant part", "pln": ["(: cnet_isa_4a9642e64a (IsA mycelium plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mycenaean civilization is a kind of culture", "pln": ["(: cnet_isa_42c1b7fcbd (IsA mycenaean_civilization culture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mycenaen is a kind of hellene", "pln": ["(: cnet_isa_4eda9c14b1 (IsA mycenaen hellene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mycetophilidae is a kind of arthropod family", "pln": ["(: cnet_isa_0e97d74f27 (IsA mycetophilidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mycobacteria is a kind of eubacteria", "pln": ["(: cnet_isa_dd023b1b88 (IsA mycobacteria eubacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mycobacteriaceae is a kind of bacteria family", "pln": ["(: cnet_isa_265bd0905c (IsA mycobacteriaceae bacteria_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mycologist is a kind of botanist", "pln": ["(: cnet_isa_16cf4068d7 (IsA mycologist botanist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mycology is a kind of botany", "pln": ["(: cnet_isa_f04476c8f7 (IsA mycology botany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mycomycin is a kind of antibiotic", "pln": ["(: cnet_isa_2395543e03 (IsA mycomycin antibiotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mycophagist is a kind of eater", "pln": ["(: cnet_isa_9a55b2a7ef (IsA mycophagist eater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mycophagy is a kind of eating", "pln": ["(: cnet_isa_d691eedeee (IsA mycophagy eating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mycoplasma is a kind of eubacteria", "pln": ["(: cnet_isa_902632fcc6 (IsA mycoplasma eubacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mycoplasmataceae is a kind of bacteria family", "pln": ["(: cnet_isa_86d97ed57a (IsA mycoplasmataceae bacteria_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mycoplasmatale is a kind of animal order", "pln": ["(: cnet_isa_c031410be5 (IsA mycoplasmatale animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mycotoxin is a kind of plant toxin", "pln": ["(: cnet_isa_1366c009ec (IsA mycotoxin plant_toxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mycrosporidia is a kind of animal order", "pln": ["(: cnet_isa_76ae8b00af (IsA mycrosporidia animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mycteria is a kind of bird genus", "pln": ["(: cnet_isa_4b8e69a489 (IsA mycteria bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mycteroperca is a kind of fish genus", "pln": ["(: cnet_isa_34a9e887f0 (IsA mycteroperca fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myctophidae is a kind of fish family", "pln": ["(: cnet_isa_9be5e9c2b2 (IsA myctophidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mydriasis is a kind of dilation", "pln": ["(: cnet_isa_0cf44b0dfc (IsA mydriasis dilation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mydriasis is a kind of reflex", "pln": ["(: cnet_isa_0ebc9fb769 (IsA mydriasis reflex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mydriatic is a kind of drug", "pln": ["(: cnet_isa_892fb64f59 (IsA mydriatic drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myelatelia is a kind of defect", "pln": ["(: cnet_isa_4ac3dcbb4f (IsA myelatelia defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myelencephalon is a kind of neural structure", "pln": ["(: cnet_isa_abb143125f (IsA myelencephalon neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myelin is a kind of fat", "pln": ["(: cnet_isa_82d6c15aee (IsA myelin fat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myelinization is a kind of growth", "pln": ["(: cnet_isa_19cab144f1 (IsA myelinization growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myelitis is a kind of inflammation", "pln": ["(: cnet_isa_ed9d0310ea (IsA myelitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myeloblast is a kind of leukocyte", "pln": ["(: cnet_isa_a96e0f1c98 (IsA myeloblast leukocyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myeloblastic leukemia is a kind of leukemia", "pln": ["(: cnet_isa_1b3bee4c41 (IsA myeloblastic_leukemia leukemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myelocyte is a kind of leukocyte", "pln": ["(: cnet_isa_c852ad87a3 (IsA myelocyte leukocyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myelocytic leukemia is a kind of leukemia", "pln": ["(: cnet_isa_6dfa57f8d8 (IsA myelocytic_leukemia leukemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myelofibrosis is a kind of fibrosis", "pln": ["(: cnet_isa_fa3e20f2c2 (IsA myelofibrosis fibrosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myelogram is a kind of roentgenogram", "pln": ["(: cnet_isa_ccd1294dbc (IsA myelogram roentgenogram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myelography is a kind of roentgenography", "pln": ["(: cnet_isa_9f1a5a5f6c (IsA myelography roentgenography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myeloma is a kind of malignant tumor", "pln": ["(: cnet_isa_b6e36f2264 (IsA myeloma malignant_tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myelomeningocele is a kind of birth defect", "pln": ["(: cnet_isa_652525005c (IsA myelomeningocele birth_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myenteric plexus is a kind of nerve plexus", "pln": ["(: cnet_isa_b36866a494 (IsA myenteric_plexus nerve_plexus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myiasis is a kind of infestation", "pln": ["(: cnet_isa_2a4678c5c7 (IsA myiasis infestation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myliobatidae is a kind of fish family", "pln": ["(: cnet_isa_5afbd8a033 (IsA myliobatidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mylodon is a kind of edentate", "pln": ["(: cnet_isa_c852803233 (IsA mylodon edentate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mylodontid is a kind of edentate", "pln": ["(: cnet_isa_90d6fc09b7 (IsA mylodontid edentate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mylodontidae is a kind of mammal family", "pln": ["(: cnet_isa_ec8f2786aa (IsA mylodontidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myna is a kind of starling", "pln": ["(: cnet_isa_ab8e37e1f9 (IsA myna starling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myocardial infarction is a kind of infarct", "pln": ["(: cnet_isa_5d04e7a363 (IsA myocardial_infarction infarct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myocardial inflammation is a kind of carditis", "pln": ["(: cnet_isa_72f59b3530 (IsA myocardial_inflammation carditis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myocardium is a kind of cardiac muscle", "pln": ["(: cnet_isa_91ec7235a3 (IsA myocardium cardiac_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myocastor is a kind of mammal genus", "pln": ["(: cnet_isa_ceda62b52c (IsA myocastor mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myoclonus is a kind of spasm", "pln": ["(: cnet_isa_d4a9f4ab68 (IsA myoclonus spasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myoclonus epilepsy is a kind of epilepsy", "pln": ["(: cnet_isa_55e4e7bb39 (IsA myoclonus_epilepsy epilepsy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myofibril is a kind of fibril", "pln": ["(: cnet_isa_bf89d94cbd (IsA myofibril fibril) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "myoglobin is a kind of hemoprotein", "pln": ["(: cnet_isa_9eb93ef382 (IsA myoglobin hemoprotein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myoglobinuria is a kind of symptom", "pln": ["(: cnet_isa_c0280055b3 (IsA myoglobinuria symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myogram is a kind of graph", "pln": ["(: cnet_isa_1e2d8a876e (IsA myogram graph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myology is a kind of physiology", "pln": ["(: cnet_isa_b253fa17f9 (IsA myology physiology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myoma is a kind of benign tumor", "pln": ["(: cnet_isa_cd368d85b9 (IsA myoma benign_tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myometritis is a kind of inflammation", "pln": ["(: cnet_isa_741531536e (IsA myometritis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myometrium is a kind of smooth muscle", "pln": ["(: cnet_isa_f8b8712ae2 (IsA myometrium smooth_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myomorpha is a kind of animal order", "pln": ["(: cnet_isa_77436f3d9d (IsA myomorpha animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myonecrosis is a kind of necrosis", "pln": ["(: cnet_isa_1fff053013 (IsA myonecrosis necrosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myopathy is a kind of pathology", "pln": ["(: cnet_isa_62cde862ee (IsA myopathy pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "myope is a kind of visually impaired person", "pln": ["(: cnet_isa_5b850c4cf6 (IsA myope visually_impaired_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myopia is a kind of ametropia", "pln": ["(: cnet_isa_7a6d2f72f7 (IsA myopia ametropia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myopus is a kind of mammal genus", "pln": ["(: cnet_isa_7180a5db7a (IsA myopus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myosarcoma is a kind of sarcoma", "pln": ["(: cnet_isa_c743a503c8 (IsA myosarcoma sarcoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myosin is a kind of globulin", "pln": ["(: cnet_isa_3a37b95ebd (IsA myosin globulin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "myositis is a kind of inflammation", "pln": ["(: cnet_isa_1d32ceb7ff (IsA myositis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myosotis is a kind of plant genus", "pln": ["(: cnet_isa_6e6180b964 (IsA myosotis plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myotis is a kind of mammal genus", "pln": ["(: cnet_isa_0e3281268e (IsA myotis mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "myotomy is a kind of operation", "pln": ["(: cnet_isa_65e6c50fa1 (IsA myotomy operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myotonia is a kind of tonicity", "pln": ["(: cnet_isa_72e356b329 (IsA myotonia tonicity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "myotonia congenita is a kind of myotonia", "pln": ["(: cnet_isa_ab3554d48f (IsA myotonia_congenita myotonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myotonic muscular dystrophy is a kind of muscular dystrophy", "pln": ["(: cnet_isa_dd30402c87 (IsA myotonic_muscular_dystrophy muscular_dystrophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myrciaria is a kind of dicot genus", "pln": ["(: cnet_isa_59f1c7214f (IsA myrciaria dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myriad is a kind of large indefinite quantity", "pln": ["(: cnet_isa_cbf3ad4947 (IsA myriad large_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myriagram is a kind of metric weight unit", "pln": ["(: cnet_isa_00cac30a24 (IsA myriagram metric_weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myriameter is a kind of metric linear unit", "pln": ["(: cnet_isa_6909aa2d54 (IsA myriameter metric_linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myriapod is a kind of arthropod", "pln": ["(: cnet_isa_9747991d87 (IsA myriapod arthropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myrica is a kind of dicot genus", "pln": ["(: cnet_isa_9186b2f795 (IsA myrica dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myricaceae is a kind of dicot family", "pln": ["(: cnet_isa_6ba803657d (IsA myricaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myricale is a kind of plant order", "pln": ["(: cnet_isa_bc921c0b66 (IsA myricale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myricaria is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_e86ec3130b (IsA myricaria dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myringectomy is a kind of operation", "pln": ["(: cnet_isa_3ceb3c3d21 (IsA myringectomy operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myringoplasty is a kind of operation", "pln": ["(: cnet_isa_bc2d156727 (IsA myringoplasty operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myringotomy is a kind of operation", "pln": ["(: cnet_isa_223fdbd75e (IsA myringotomy operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myriophyllum is a kind of dicot genus", "pln": ["(: cnet_isa_fd9a01572d (IsA myriophyllum dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myristic acid is a kind of saturated fatty acid", "pln": ["(: cnet_isa_a05c92689b (IsA myristic_acid saturated_fatty_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myristica is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_2dfd7d31c4 (IsA myristica magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myristicaceae is a kind of magnoliid dicot family", "pln": ["(: cnet_isa_4a4cfeb6fa (IsA myristicaceae magnoliid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myrmecia is a kind of arthropod genus", "pln": ["(: cnet_isa_2b4f31102d (IsA myrmecia arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myrmecobius is a kind of mammal genus", "pln": ["(: cnet_isa_38da5d8a7a (IsA myrmecobius mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "myrmecophaga is a kind of mammal genus", "pln": ["(: cnet_isa_b5b52fbcd9 (IsA myrmecophaga mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myrmecophagidae is a kind of mammal family", "pln": ["(: cnet_isa_9fa0f58d6e (IsA myrmecophagidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myrmecophile is a kind of organism", "pln": ["(: cnet_isa_6aa1fae9c8 (IsA myrmecophile organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myrmecophyte is a kind of plant", "pln": ["(: cnet_isa_df51954c38 (IsA myrmecophyte plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myrmeleon is a kind of arthropod genus", "pln": ["(: cnet_isa_abf5635a5f (IsA myrmeleon arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myrmeleontidae is a kind of arthropod family", "pln": ["(: cnet_isa_8477b35b1a (IsA myrmeleontidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myrmidon is a kind of follower", "pln": ["(: cnet_isa_e1c7342be7 (IsA myrmidon follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myroxylon is a kind of rosid dicot genus", "pln": ["(: cnet_isa_e022b26ee2 (IsA myroxylon rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myrrh is a kind of gum resin", "pln": ["(: cnet_isa_f340b91862 (IsA myrrh gum_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myrrh tree is a kind of incense tree", "pln": ["(: cnet_isa_a4539c0d0a (IsA myrrh_tree incense_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myrrhis is a kind of rosid dicot genus", "pln": ["(: cnet_isa_b31369f280 (IsA myrrhis rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "myrsinaceae is a kind of dicot family", "pln": ["(: cnet_isa_111a9d623c (IsA myrsinaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myrsine is a kind of dicot genus", "pln": ["(: cnet_isa_8093fa50f4 (IsA myrsine dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myrtaceae is a kind of dicot family", "pln": ["(: cnet_isa_77d32475c8 (IsA myrtaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myrtaceous tree is a kind of angiospermous tree", "pln": ["(: cnet_isa_e381cddd45 (IsA myrtaceous_tree angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myrtale is a kind of plant order", "pln": ["(: cnet_isa_0e2d71ed0b (IsA myrtale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myrtillocactus is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_8ea107a21f (IsA myrtillocactus caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myrtle is a kind of angiospermous tree", "pln": ["(: cnet_isa_6575a0f87a (IsA myrtle angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myrtle is a kind of periwinkle", "pln": ["(: cnet_isa_fba7806697 (IsA myrtle periwinkle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myrtle beech is a kind of southern beech", "pln": ["(: cnet_isa_983444c4cb (IsA myrtle_beech southern_beech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myrtle oak is a kind of scrub oak", "pln": ["(: cnet_isa_4ba114c202 (IsA myrtle_oak scrub_oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myrtle warbler is a kind of new world warbler", "pln": ["(: cnet_isa_ebb4b20fb2 (IsA myrtle_warbler new_world_warbler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myrtus is a kind of dicot genus", "pln": ["(: cnet_isa_dff03e231a (IsA myrtus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mysidacea is a kind of animal order", "pln": ["(: cnet_isa_a670878222 (IsA mysidacea animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mysidae is a kind of arthropod family", "pln": ["(: cnet_isa_70322189fc (IsA mysidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mysis is a kind of arthropod genus", "pln": ["(: cnet_isa_7b79be1233 (IsA mysis arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mysoandry is a kind of hate", "pln": ["(: cnet_isa_b9e40640fc (IsA mysoandry hate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mysophilia is a kind of liking", "pln": ["(: cnet_isa_4161b9aff5 (IsA mysophilia liking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mysophobia is a kind of simple phobia", "pln": ["(: cnet_isa_9bf22d41e9 (IsA mysophobia simple_phobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mysore thorn is a kind of shrub", "pln": ["(: cnet_isa_575f4944b9 (IsA mysore_thorn shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mystery is a kind of perplexity", "pln": ["(: cnet_isa_d2ad70ab21 (IsA mystery perplexity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mystery is a kind of story", "pln": ["(: cnet_isa_76de7192f4 (IsA mystery story) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mystery play is a kind of play", "pln": ["(: cnet_isa_edd00930df (IsA mystery_play play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mystic is a kind of believer", "pln": ["(: cnet_isa_2d1eadfb9c (IsA mystic believer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mysticeti is a kind of animal order", "pln": ["(: cnet_isa_080e386ec0 (IsA mysticeti animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mysticism is a kind of religion", "pln": ["(: cnet_isa_ffdbe8d64a (IsA mysticism religion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mysticism is a kind of thinking", "pln": ["(: cnet_isa_bd75fa382c (IsA mysticism thinking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mystification is a kind of activity", "pln": ["(: cnet_isa_b17ec0dab7 (IsA mystification activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mystification is a kind of artifact", "pln": ["(: cnet_isa_ce594cf5ef (IsA mystification artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mystique is a kind of air", "pln": ["(: cnet_isa_cbac52bf7f (IsA mystique air) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myth is a kind of story", "pln": ["(: cnet_isa_f8775b96da (IsA myth story) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mythical being is a kind of imaginary being", "pln": ["(: cnet_isa_91b4498f7e (IsA mythical_being imaginary_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mythical monster is a kind of monster", "pln": ["(: cnet_isa_4dd018143a (IsA mythical_monster monster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mythical monster is a kind of mythical being", "pln": ["(: cnet_isa_7cc3d48da7 (IsA mythical_monster mythical_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mythologist is a kind of expert", "pln": ["(: cnet_isa_2c57798573 (IsA mythologist expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mythologization is a kind of restatement", "pln": ["(: cnet_isa_f00918aebf (IsA mythologization restatement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "mythology is a kind of collection", "pln": ["(: cnet_isa_3c70ab2288 (IsA mythology collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mythology is a kind of social anthropology", "pln": ["(: cnet_isa_45e3a3785a (IsA mythology social_anthropology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mytilidae is a kind of mollusk family", "pln": ["(: cnet_isa_af732093b5 (IsA mytilidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "mytilus is a kind of mollusk genus", "pln": ["(: cnet_isa_b659b84914 (IsA mytilus mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myxedema is a kind of hypothyroidism", "pln": ["(: cnet_isa_c43548431b (IsA myxedema hypothyroidism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myxine is a kind of fish genus", "pln": ["(: cnet_isa_294e6bfa7a (IsA myxine fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myxine glutinosa is a kind of hagfish", "pln": ["(: cnet_isa_826f721fe8 (IsA myxine_glutinosa hagfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "myxinidae is a kind of fish family", "pln": ["(: cnet_isa_d32ddcfa9c (IsA myxinidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myxiniforme is a kind of animal order", "pln": ["(: cnet_isa_74d3904af1 (IsA myxiniforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myxinikela is a kind of fish genus", "pln": ["(: cnet_isa_814651336c (IsA myxinikela fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myxinikela siroka is a kind of hagfish", "pln": ["(: cnet_isa_c88218287d (IsA myxinikela_siroka hagfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myxobacteria is a kind of eubacteria", "pln": ["(: cnet_isa_c558f17bf4 (IsA myxobacteria eubacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "myxocephalus is a kind of fish genus", "pln": ["(: cnet_isa_330345fa68 (IsA myxocephalus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myxoma is a kind of benign tumor", "pln": ["(: cnet_isa_1d1d026d1c (IsA myxoma benign_tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "myxoma virus is a kind of poxvirus", "pln": ["(: cnet_isa_7a12381065 (IsA myxoma_virus poxvirus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myxomatosis is a kind of animal disease", "pln": ["(: cnet_isa_815a80f5fc (IsA myxomatosis animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myxomycete is a kind of class", "pln": ["(: cnet_isa_9cc3731f96 (IsA myxomycete class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myxomycota is a kind of division", "pln": ["(: cnet_isa_b243964bb6 (IsA myxomycota division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myxophyceae is a kind of bacteria family", "pln": ["(: cnet_isa_2293d959e3 (IsA myxophyceae bacteria_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myxosporidia is a kind of animal order", "pln": ["(: cnet_isa_26e68fab81 (IsA myxosporidia animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myxosporidian is a kind of sporozoan", "pln": ["(: cnet_isa_a02e407209 (IsA myxosporidian sporozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "myxovirus is a kind of animal virus", "pln": ["(: cnet_isa_f0f35a9b01 (IsA myxovirus animal_virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "n is a kind of letter", "pln": ["(: cnet_isa_689100510f (IsA n letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "n type semiconductor is a kind of semiconductor device", "pln": ["(: cnet_isa_66e3589056 (IsA n_type_semiconductor semiconductor_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "na dene is a kind of amerind", "pln": ["(: cnet_isa_335ec2eb5d (IsA na_dene amerind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nabalus is a kind of asterid dicot genus", "pln": ["(: cnet_isa_2b3158a58c (IsA nabalus asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nabob is a kind of man of mean", "pln": ["(: cnet_isa_078fa3730f (IsA nabob man_of_mean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naboom is a kind of spurge", "pln": ["(: cnet_isa_470155264a (IsA naboom spurge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nabothian cyst is a kind of cyst", "pln": ["(: cnet_isa_1a9e19e089 (IsA nabothian_cyst cyst) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nabothian gland is a kind of exocrine gland", "pln": ["(: cnet_isa_3b38353c16 (IsA nabothian_gland exocrine_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nacelle is a kind of enclosure", "pln": ["(: cnet_isa_e62da694fc (IsA nacelle enclosure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nacho is a kind of tortilla chip", "pln": ["(: cnet_isa_e75543676f (IsA nacho tortilla_chip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nacreous cloud is a kind of cloud", "pln": ["(: cnet_isa_151de394ea (IsA nacreous_cloud cloud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nada daiquiri is a kind of daiquiri", "pln": ["(: cnet_isa_9f223416c8 (IsA nada_daiquiri daiquiri) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nadir is a kind of celestial point", "pln": ["(: cnet_isa_d35ce86be8 (IsA nadir celestial_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nadir is a kind of adversity", "pln": ["(: cnet_isa_5300ffb259 (IsA nadir adversity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naegele s rule is a kind of principle", "pln": ["(: cnet_isa_17c9cd9edc (IsA naegele_s_rule principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naemorhedus is a kind of mammal genus", "pln": ["(: cnet_isa_9e438acd28 (IsA naemorhedus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naga is a kind of kamarupan", "pln": ["(: cnet_isa_9a407578a0 (IsA naga kamarupan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nagami is a kind of kumquat", "pln": ["(: cnet_isa_b3fe24fa73 (IsA nagami kumquat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nageia is a kind of gymnosperm genus", "pln": ["(: cnet_isa_cfc44b083b (IsA nageia gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nagi is a kind of conifer", "pln": ["(: cnet_isa_859792459c (IsA nagi conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nahuatl is a kind of uto aztecan", "pln": ["(: cnet_isa_3207573aaf (IsA nahuatl uto_aztecan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nahuatl is a kind of native american", "pln": ["(: cnet_isa_e3e7d64974 (IsA nahuatl native_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naiad is a kind of water nymph", "pln": ["(: cnet_isa_7c56b3b18a (IsA naiad water_nymph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naiad is a kind of aquatic plant", "pln": ["(: cnet_isa_9b60f9a09b (IsA naiad aquatic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naiadaceae is a kind of monocot family", "pln": ["(: cnet_isa_e95b1388db (IsA naiadaceae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naiadale is a kind of plant order", "pln": ["(: cnet_isa_474ccc0f7a (IsA naiadale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naia is a kind of monocot genus", "pln": ["(: cnet_isa_cfeb4a0a42 (IsA naia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naif is a kind of innocent", "pln": ["(: cnet_isa_eae4fc519a (IsA naif innocent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naiki is a kind of central dravidian", "pln": ["(: cnet_isa_eb9083c49b (IsA naiki central_dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nail is a kind of piece of metal", "pln": ["(: cnet_isa_c3eb77e923 (IsA nail piece_of_metal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nail is a kind of fastener", "pln": ["(: cnet_isa_b64b4968ad (IsA nail fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nail is a kind of horny structure", "pln": ["(: cnet_isa_ff3ef61754 (IsA nail horny_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nail is a kind of linear unit", "pln": ["(: cnet_isa_658a2dd093 (IsA nail linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nail gun is a kind of tool", "pln": ["(: cnet_isa_e7965668db (IsA nail_gun tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nail hole is a kind of hole", "pln": ["(: cnet_isa_063338fb0b (IsA nail_hole hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nail polish is a kind of cosmetic", "pln": ["(: cnet_isa_4766452933 (IsA nail_polish cosmetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nail polish is a kind of enamel", "pln": ["(: cnet_isa_958dfd392e (IsA nail_polish enamel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nail pulling is a kind of torture", "pln": ["(: cnet_isa_5ac32b5b44 (IsA nail_pulling torture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nail tailed wallaby is a kind of wallaby", "pln": ["(: cnet_isa_df6af1ebd3 (IsA nail_tailed_wallaby wallaby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nailbrush is a kind of brush", "pln": ["(: cnet_isa_7f08b7cf6d (IsA nailbrush brush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nailer is a kind of worker", "pln": ["(: cnet_isa_979070ebf7 (IsA nailer worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nailfile is a kind of file", "pln": ["(: cnet_isa_50fb9fdf0f (IsA nailfile file) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nailhead is a kind of decoration", "pln": ["(: cnet_isa_7c8ff4a1ec (IsA nailhead decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nailhead is a kind of knob", "pln": ["(: cnet_isa_0701dfb05a (IsA nailhead knob) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nainsook is a kind of muslin", "pln": ["(: cnet_isa_469e8198fd (IsA nainsook muslin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naira is a kind of nigerian monetary unit", "pln": ["(: cnet_isa_f4d5fb25a0 (IsA naira nigerian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "naivete is a kind of quality", "pln": ["(: cnet_isa_624742ac12 (IsA naivete quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naja is a kind of reptile genus", "pln": ["(: cnet_isa_01a4237db8 (IsA naja reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naked eye is a kind of eye", "pln": ["(: cnet_isa_1f1a329395 (IsA naked_eye eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naked mole rat is a kind of fossorial mammal", "pln": ["(: cnet_isa_c60cfc78e6 (IsA naked_mole_rat fossorial_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naked option is a kind of option", "pln": ["(: cnet_isa_cd5be204d2 (IsA naked_option option) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naked person is a kind of source of pleasure", "pln": ["(: cnet_isa_76cb25e722 (IsA naked_person source_of_pleasure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nakedness is a kind of condition", "pln": ["(: cnet_isa_3709259d9d (IsA nakedness condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nakedwood is a kind of tree", "pln": ["(: cnet_isa_5faafecaff (IsA nakedwood tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nakedwood is a kind of zebrawood", "pln": ["(: cnet_isa_abdcdbfe89 (IsA nakedwood zebrawood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nalidixic acid is a kind of antibacterial", "pln": ["(: cnet_isa_2566775416 (IsA nalidixic_acid antibacterial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nalorphine is a kind of narcotic antagonist", "pln": ["(: cnet_isa_afa0838516 (IsA nalorphine narcotic_antagonist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naltrexone is a kind of narcotic antagonist", "pln": ["(: cnet_isa_ab3b75d4fa (IsA naltrexone narcotic_antagonist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "namby pamby is a kind of weakling", "pln": ["(: cnet_isa_245a5bce21 (IsA namby_pamby weakling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "name is a kind of sanction", "pln": ["(: cnet_isa_a75d995fb3 (IsA name sanction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "name is a kind of defamation", "pln": ["(: cnet_isa_7657042ae7 (IsA name defamation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "name is a kind of language unit", "pln": ["(: cnet_isa_4574dd6192 (IsA name language_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "name is a kind of family", "pln": ["(: cnet_isa_8bd813d4e0 (IsA name family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "name is a kind of important person", "pln": ["(: cnet_isa_f83c35955c (IsA name important_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "name is a kind of repute", "pln": ["(: cnet_isa_934644b2e2 (IsA name repute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "name calling is a kind of defamation", "pln": ["(: cnet_isa_0eb3afa3bc (IsA name_calling defamation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "name day is a kind of saint s day", "pln": ["(: cnet_isa_95cff7d5e5 (IsA name_day saint_s_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "name dropper is a kind of imposter", "pln": ["(: cnet_isa_9d32291828 (IsA name_dropper imposter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "name dropping is a kind of mention", "pln": ["(: cnet_isa_e7b0cc55f1 (IsA name_dropping mention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "name tag is a kind of tag", "pln": ["(: cnet_isa_9439aa9473 (IsA name_tag tag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nameko is a kind of agaric", "pln": ["(: cnet_isa_3adc5e789a (IsA nameko agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nameplate is a kind of plate", "pln": ["(: cnet_isa_f51ae0d381 (IsA nameplate plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "namer is a kind of person", "pln": ["(: cnet_isa_1d39d379d9 (IsA namer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "namesake is a kind of person", "pln": ["(: cnet_isa_fbbdc71ba3 (IsA namesake person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "namibian is a kind of african", "pln": ["(: cnet_isa_6ee93168c2 (IsA namibian african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "naming is a kind of speech act", "pln": ["(: cnet_isa_c79ab484b0 (IsA naming speech_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nan is a kind of bread", "pln": ["(: cnet_isa_55f35a3754 (IsA nan bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nan is a kind of grandma", "pln": ["(: cnet_isa_3a7dc0d665 (IsA nan grandma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nancere is a kind of east chadic", "pln": ["(: cnet_isa_e29c13c605 (IsA nancere east_chadic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nand circuit is a kind of gate", "pln": ["(: cnet_isa_d081981bfc (IsA nand_circuit gate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nankeen is a kind of fabric", "pln": ["(: cnet_isa_3ea14c8acf (IsA nankeen fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "nanophthalmos is a kind of abnormality", "pln": ["(: cnet_isa_69e8782514 (IsA nanophthalmos abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nanna is a kind of norse deity", "pln": ["(: cnet_isa_900c33cf9d (IsA nanna norse_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nanny is a kind of goat", "pln": ["(: cnet_isa_4a3722ef3b (IsA nanny goat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nanny is a kind of keeper", "pln": ["(: cnet_isa_f6eb19f664 (IsA nanny keeper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nanny is a kind of woman", "pln": ["(: cnet_isa_30b669d175 (IsA nanny woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nanogram is a kind of metric weight unit", "pln": ["(: cnet_isa_e73b98d0f0 (IsA nanogram metric_weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nanometer is a kind of metric linear unit", "pln": ["(: cnet_isa_ee01114229 (IsA nanometer metric_linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nanomia is a kind of siphonophore", "pln": ["(: cnet_isa_88b3ab9efb (IsA nanomia siphonophore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nanophthalmo is a kind of abnormality", "pln": ["(: cnet_isa_2155e1cc58 (IsA nanophthalmo abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nanosecond is a kind of one billionth of second", "pln": ["(: cnet_isa_af0dd5c4bc (IsA nanosecond one_billionth_of_second) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nanosecond is a kind of time unit", "pln": ["(: cnet_isa_badbc32c0c (IsA nanosecond time_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nanotechnology is a kind of engineering", "pln": ["(: cnet_isa_38c4a122c9 (IsA nanotechnology engineering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nanovolt is a kind of potential unit", "pln": ["(: cnet_isa_a8efe20ead (IsA nanovolt potential_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nanticoke is a kind of algonquian", "pln": ["(: cnet_isa_3566a1fab2 (IsA nanticoke algonquian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nanticoke is a kind of algonquin", "pln": ["(: cnet_isa_e69d8d1dbc (IsA nanticoke algonquin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nantua is a kind of sauce", "pln": ["(: cnet_isa_275c0f9d4f (IsA nantua sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nap is a kind of sleeping", "pln": ["(: cnet_isa_bcc26d81e4 (IsA nap sleeping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nap is a kind of texture", "pln": ["(: cnet_isa_2ff03c58d8 (IsA nap texture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "napaea is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_62eff05c55 (IsA napaea dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "napalm is a kind of gasoline", "pln": ["(: cnet_isa_be0384a1f5 (IsA napalm gasoline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nape is a kind of rear", "pln": ["(: cnet_isa_c402b8a87e (IsA nape rear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naphtha is a kind of hydrocarbon", "pln": ["(: cnet_isa_e8d25d5ca2 (IsA naphtha hydrocarbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naphtha is a kind of solvent", "pln": ["(: cnet_isa_76e0756213 (IsA naphtha solvent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naphthalene is a kind of hydrocarbon", "pln": ["(: cnet_isa_ca0ee648fc (IsA naphthalene hydrocarbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naphthalene poisoning is a kind of poisoning", "pln": ["(: cnet_isa_97507c69d6 (IsA naphthalene_poisoning poisoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naphthol is a kind of phenol", "pln": ["(: cnet_isa_cc73875673 (IsA naphthol phenol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "napier s bone is a kind of calculator", "pln": ["(: cnet_isa_ca96fd28c2 (IsA napier_s_bone calculator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "napkin is a kind of table linen", "pln": ["(: cnet_isa_0ae0a58769 (IsA napkin table_linen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "napkin ring is a kind of hoop", "pln": ["(: cnet_isa_172ebf3e65 (IsA napkin_ring hoop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "napoleon is a kind of card game", "pln": ["(: cnet_isa_507761fd6d (IsA napoleon card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "napoleon is a kind of french pastry", "pln": ["(: cnet_isa_cf32404a94 (IsA napoleon french_pastry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naprapath is a kind of therapist", "pln": ["(: cnet_isa_2e21f793da (IsA naprapath therapist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naprapathy is a kind of treatment", "pln": ["(: cnet_isa_702a16e7aa (IsA naprapathy treatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "napu is a kind of chevrotain", "pln": ["(: cnet_isa_5ca5338a5e (IsA napu chevrotain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naranjilla is a kind of shrub", "pln": ["(: cnet_isa_138bff54b3 (IsA naranjilla shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narc is a kind of lawman", "pln": ["(: cnet_isa_d5402485b5 (IsA narc lawman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narcissist is a kind of selfish person", "pln": ["(: cnet_isa_99d8727227 (IsA narcissist selfish_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narcissistic personality is a kind of personality", "pln": ["(: cnet_isa_d90faab699 (IsA narcissistic_personality personality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narcissus is a kind of bulbous plant", "pln": ["(: cnet_isa_f1937657d4 (IsA narcissus bulbous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narco state is a kind of geographical area", "pln": ["(: cnet_isa_0dec74b0b2 (IsA narco_state geographical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narcolepsy is a kind of hypersomnia", "pln": ["(: cnet_isa_7575ffc2be (IsA narcolepsy hypersomnia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narcoleptic is a kind of soporific", "pln": ["(: cnet_isa_47f6bd5832 (IsA narcoleptic soporific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narcoleptic is a kind of sick person", "pln": ["(: cnet_isa_fc272ae0f9 (IsA narcoleptic sick_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narcosis is a kind of unconsciousness", "pln": ["(: cnet_isa_1f6ea78509 (IsA narcosis unconsciousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narcoterrorism is a kind of terrorism", "pln": ["(: cnet_isa_082ff50d5e (IsA narcoterrorism terrorism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narcotic is a kind of drug", "pln": ["(: cnet_isa_aeec16116b (IsA narcotic drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narcotic antagonist is a kind of antagonist", "pln": ["(: cnet_isa_d6e825667c (IsA narcotic_antagonist antagonist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nard is a kind of cream", "pln": ["(: cnet_isa_16073deb37 (IsA nard cream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nardoo is a kind of clover fern", "pln": ["(: cnet_isa_3d06afe51b (IsA nardoo clover_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naris is a kind of orifice", "pln": ["(: cnet_isa_0da74f9f9b (IsA naris orifice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nark is a kind of informer", "pln": ["(: cnet_isa_6ad1530549 (IsA nark informer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narration is a kind of report", "pln": ["(: cnet_isa_f91c624411 (IsA narration report) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narration is a kind of section", "pln": ["(: cnet_isa_008704cc5f (IsA narration section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narrative is a kind of message", "pln": ["(: cnet_isa_5aef039c64 (IsA narrative message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narrator is a kind of speaker", "pln": ["(: cnet_isa_d9bbbfefde (IsA narrator speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "narrow is a kind of strait", "pln": ["(: cnet_isa_365646b4dd (IsA narrow strait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narrow gauge is a kind of gauge", "pln": ["(: cnet_isa_7c7fb218c2 (IsA narrow_gauge gauge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narrow gauge is a kind of railroad track", "pln": ["(: cnet_isa_95e9d70d3f (IsA narrow_gauge railroad_track) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narrow goldenrod is a kind of goldenrod", "pln": ["(: cnet_isa_57687267b4 (IsA narrow_goldenrod goldenrod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narrow leaf penstemon is a kind of wildflower", "pln": ["(: cnet_isa_914f02e649 (IsA narrow_leaf_penstemon wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narrow leaved flame flower is a kind of flame flower", "pln": ["(: cnet_isa_0920d09309 (IsA narrow_leaved_flame_flower flame_flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narrow leaved water plantain is a kind of water plantain", "pln": ["(: cnet_isa_a677d93d14 (IsA narrow_leaved_water_plantain water_plantain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narrow leaved white topped aster is a kind of white topped aster", "pln": ["(: cnet_isa_7bd3a72408 (IsA narrow_leaved_white_topped_aster white_topped_aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "narrow margin is a kind of margin", "pln": ["(: cnet_isa_ff388b22af (IsA narrow_margin margin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narrow mindedness is a kind of intolerance", "pln": ["(: cnet_isa_733c927ff7 (IsA narrow_mindedness intolerance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narrow wale is a kind of cord", "pln": ["(: cnet_isa_239b7e7230 (IsA narrow_wale cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "narrowbody aircraft is a kind of airliner", "pln": ["(: cnet_isa_3c5add03db (IsA narrowbody_aircraft airliner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narrowing is a kind of change of shape", "pln": ["(: cnet_isa_3a879c62be (IsA narrowing change_of_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narrowing is a kind of shape", "pln": ["(: cnet_isa_76ba451f18 (IsA narrowing shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narrowing is a kind of decrease", "pln": ["(: cnet_isa_5f09acd8d7 (IsA narrowing decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narrowness is a kind of width", "pln": ["(: cnet_isa_112a81805e (IsA narrowness width) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narrowness is a kind of restriction", "pln": ["(: cnet_isa_d740ec551e (IsA narrowness restriction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "narthecium is a kind of liliid monocot genus", "pln": ["(: cnet_isa_722f85487b (IsA narthecium liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narthex is a kind of anteroom", "pln": ["(: cnet_isa_56a68f0c7a (IsA narthex anteroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narthex is a kind of portico", "pln": ["(: cnet_isa_710e3bfa9b (IsA narthex portico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "narwhal is a kind of whale", "pln": ["(: cnet_isa_da47de2345 (IsA narwhal whale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nasal is a kind of bone", "pln": ["(: cnet_isa_2272b6687b (IsA nasal bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nasal canthus is a kind of canthus", "pln": ["(: cnet_isa_7dcfb95a4b (IsA nasal_canthus canthus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nasal cavity is a kind of cavity", "pln": ["(: cnet_isa_0233af921f (IsA nasal_cavity cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nasal concha is a kind of concha", "pln": ["(: cnet_isa_44fc296cf0 (IsA nasal_concha concha) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nasal concha is a kind of turbinate bone", "pln": ["(: cnet_isa_ce76934b43 (IsA nasal_concha turbinate_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nasal consonant is a kind of consonant", "pln": ["(: cnet_isa_15fea5f0a4 (IsA nasal_consonant consonant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nasal decongestant is a kind of decongestant", "pln": ["(: cnet_isa_12717e1f50 (IsA nasal_decongestant decongestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nasal meatus is a kind of meatus", "pln": ["(: cnet_isa_5805a7191d (IsA nasal_meatus meatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nasal septum is a kind of septum", "pln": ["(: cnet_isa_99efa9840c (IsA nasal_septum septum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nasalis is a kind of mammal genus", "pln": ["(: cnet_isa_8ce49a75d5 (IsA nasalis mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nasality is a kind of timbre", "pln": ["(: cnet_isa_0062c17a1a (IsA nasality timbre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nasalization is a kind of articulation", "pln": ["(: cnet_isa_bf9bf0c815 (IsA nasalization articulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nash equilibrium is a kind of equilibrium", "pln": ["(: cnet_isa_b7b939877f (IsA nash_equilibrium equilibrium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nasion is a kind of craniometric point", "pln": ["(: cnet_isa_fc5bab2071 (IsA nasion craniometric_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nasofrontal vein is a kind of vein", "pln": ["(: cnet_isa_eca9b424a7 (IsA nasofrontal_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nasogastric feeding is a kind of forced feeding", "pln": ["(: cnet_isa_9689a5b7ce (IsA nasogastric_feeding forced_feeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nasolacrimal duct is a kind of duct", "pln": ["(: cnet_isa_69a2f893c3 (IsA nasolacrimal_duct duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nasopharynx is a kind of cavity", "pln": ["(: cnet_isa_6ba9229918 (IsA nasopharynx cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nasotracheal tube is a kind of endotracheal tube", "pln": ["(: cnet_isa_536f3707fd (IsA nasotracheal_tube endotracheal_tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nastiness is a kind of unpleasantness", "pln": ["(: cnet_isa_8ad17f08f1 (IsA nastiness unpleasantness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nasturtium is a kind of flavorer", "pln": ["(: cnet_isa_7a5b45aa80 (IsA nasturtium flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nasturtium is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_20257a1589 (IsA nasturtium dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nasturtium is a kind of herb", "pln": ["(: cnet_isa_7bf2e64372 (IsA nasturtium herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nasua is a kind of mammal genus", "pln": ["(: cnet_isa_0a2357bb73 (IsA nasua mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natal plum is a kind of carissa", "pln": ["(: cnet_isa_c6d4566738 (IsA natal_plum carissa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natantia is a kind of animal order", "pln": ["(: cnet_isa_13bcfdac73 (IsA natantia animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naticidae is a kind of mollusk family", "pln": ["(: cnet_isa_941d1aef1d (IsA naticidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nation is a kind of confederation", "pln": ["(: cnet_isa_54a299d54b (IsA nation confederation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nation is a kind of people", "pln": ["(: cnet_isa_d16088e59f (IsA nation people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nation of islam is a kind of religious movement", "pln": ["(: cnet_isa_3d7c251ab4 (IsA nation_of_islam religious_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "national is a kind of person", "pln": ["(: cnet_isa_730bb7ae55 (IsA national person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national academy of science is a kind of academy", "pln": ["(: cnet_isa_9c4ab988fe (IsA national_academy_of_science academy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national aeronautic and space administration is a kind of independent agency", "pln": ["(: cnet_isa_39082e76df (IsA national_aeronautic_and_space_administration independent_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national anthem is a kind of anthem", "pln": ["(: cnet_isa_b7248207db (IsA national_anthem anthem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national archive and record administration is a kind of independent agency", "pln": ["(: cnet_isa_88618da7f3 (IsA national_archive_and_record_administration independent_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national association of realtor is a kind of association", "pln": ["(: cnet_isa_e3a59eb7dc (IsA national_association_of_realtor association) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national athmen is a kind of song", "pln": ["(: cnet_isa_d3c3c21295 (IsA national_athmen song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national bank is a kind of commercial bank", "pln": ["(: cnet_isa_94a272ea02 (IsA national_bank commercial_bank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national capital is a kind of capital", "pln": ["(: cnet_isa_952eaa3cb4 (IsA national_capital capital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "national capital is a kind of city", "pln": ["(: cnet_isa_32632e88d6 (IsA national_capital city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national censorship is a kind of censoring", "pln": ["(: cnet_isa_6a296eb7c7 (IsA national_censorship censoring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national climatic data center is a kind of agency", "pln": ["(: cnet_isa_59d11d2011 (IsA national_climatic_data_center agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national debt is a kind of debt", "pln": ["(: cnet_isa_71bf7fbdd6 (IsA national_debt debt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "national debt ceiling is a kind of debt limit", "pln": ["(: cnet_isa_e50c0dff33 (IsA national_debt_ceiling debt_limit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national flag is a kind of emblem", "pln": ["(: cnet_isa_81f7ee2d7f (IsA national_flag emblem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national flag is a kind of flag", "pln": ["(: cnet_isa_c9393d1eb9 (IsA national_flag flag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national geospatial intelligence agency is a kind of agency", "pln": ["(: cnet_isa_f9c9f8c7f7 (IsA national_geospatial_intelligence_agency agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national guard is a kind of territorial", "pln": ["(: cnet_isa_eb0ebd2796 (IsA national_guard territorial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national guard bureau is a kind of agency", "pln": ["(: cnet_isa_9d8a80e207 (IsA national_guard_bureau agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national income is a kind of value", "pln": ["(: cnet_isa_8669b3a2e5 (IsA national_income value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national institute of justice is a kind of law enforcement agency", "pln": ["(: cnet_isa_d455f13c89 (IsA national_institute_of_justice law_enforcement_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national institute of standard and technology is a kind of agency", "pln": ["(: cnet_isa_b709654384 (IsA national_institute_of_standard_and_technology agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national institute of health is a kind of agency", "pln": ["(: cnet_isa_7f63a429a0 (IsA national_institute_of_health agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national insurance is a kind of social insurance", "pln": ["(: cnet_isa_27685fac11 (IsA national_insurance social_insurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national labor relation board is a kind of independent agency", "pln": ["(: cnet_isa_1eb2bddd66 (IsA national_labor_relation_board independent_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "national monument is a kind of memorial", "pln": ["(: cnet_isa_990354f077 (IsA national_monument memorial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national oceanic and atmospheric administration is a kind of agency", "pln": ["(: cnet_isa_a0d041dd41 (IsA national_oceanic_and_atmospheric_administration agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national park is a kind of park", "pln": ["(: cnet_isa_48c6ad47e9 (IsA national_park park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national park service is a kind of agency", "pln": ["(: cnet_isa_09e7afcab7 (IsA national_park_service agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national reconnaissance office is a kind of united state intelligence agency", "pln": ["(: cnet_isa_2b6ed2534d (IsA national_reconnaissance_office united_state_intelligence_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national rifle association is a kind of special interest", "pln": ["(: cnet_isa_739e71acf3 (IsA national_rifle_association special_interest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national security agency is a kind of united state intelligence agency", "pln": ["(: cnet_isa_f1f5388ee1 (IsA national_security_agency united_state_intelligence_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national security council is a kind of executive agency", "pln": ["(: cnet_isa_fe6bdaefb3 (IsA national_security_council executive_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national service is a kind of service", "pln": ["(: cnet_isa_1d60fcbfd5 (IsA national_service service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national socialist german worker party is a kind of party", "pln": ["(: cnet_isa_6008560ffc (IsA national_socialist_german_worker_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national technical information service is a kind of agency", "pln": ["(: cnet_isa_660ca4def6 (IsA national_technical_information_service agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national trust is a kind of nongovernmental organization", "pln": ["(: cnet_isa_0d67fdbb92 (IsA national_trust nongovernmental_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "national weather service is a kind of agency", "pln": ["(: cnet_isa_4559bfa7d1 (IsA national_weather_service agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nationalism is a kind of doctrine", "pln": ["(: cnet_isa_1ce321a7ec (IsA nationalism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nationalism is a kind of ambition", "pln": ["(: cnet_isa_3bc4df5c94 (IsA nationalism ambition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nationalist is a kind of advocate", "pln": ["(: cnet_isa_e88f4bc65f (IsA nationalist advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nationalist leader is a kind of leader", "pln": ["(: cnet_isa_6a4d90737d (IsA nationalist_leader leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nationalist leader is a kind of nationalist", "pln": ["(: cnet_isa_c994d1c40b (IsA nationalist_leader nationalist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nationality is a kind of people", "pln": ["(: cnet_isa_9007eb6709 (IsA nationality people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nationality is a kind of status", "pln": ["(: cnet_isa_eb2ec7e77a (IsA nationality status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nationalization is a kind of change", "pln": ["(: cnet_isa_38fd91835c (IsA nationalization change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nationalization is a kind of group action", "pln": ["(: cnet_isa_e76947a65d (IsA nationalization group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nationalization is a kind of social control", "pln": ["(: cnet_isa_b28b0dc03f (IsA nationalization social_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nationaol science foundation is a kind of independent agency", "pln": ["(: cnet_isa_395faca0c8 (IsA nationaol_science_foundation independent_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nationhood is a kind of state", "pln": ["(: cnet_isa_0f8abfc295 (IsA nationhood state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "native is a kind of organism", "pln": ["(: cnet_isa_416996539c (IsA native organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "native is a kind of person", "pln": ["(: cnet_isa_eee9270d0e (IsA native person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "native american is a kind of person", "pln": ["(: cnet_isa_54dbf4f67c (IsA native_american person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "native american is a kind of person of color", "pln": ["(: cnet_isa_68265e01dc (IsA native_american person_of_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "native beech is a kind of silver ash", "pln": ["(: cnet_isa_d52177ca7c (IsA native_beech silver_ash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "native cat is a kind of dasyure", "pln": ["(: cnet_isa_574c17e25d (IsA native_cat dasyure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "native cranberry is a kind of shrub", "pln": ["(: cnet_isa_cce415e509 (IsA native_cranberry shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "native hawaiian is a kind of hawaiian", "pln": ["(: cnet_isa_46930faa68 (IsA native_hawaiian hawaiian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "native language is a kind of language", "pln": ["(: cnet_isa_5cfbc7e054 (IsA native_language language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "native orange is a kind of caper", "pln": ["(: cnet_isa_b301aded90 (IsA native_orange caper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "native pear is a kind of shrub", "pln": ["(: cnet_isa_b1643c6b1a (IsA native_pear shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "native pomegranate is a kind of caper", "pln": ["(: cnet_isa_af37a84334 (IsA native_pomegranate caper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "native speaker is a kind of speaker", "pln": ["(: cnet_isa_eae2c9db0d (IsA native_speaker speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nativeness is a kind of quality", "pln": ["(: cnet_isa_be433b77f4 (IsA nativeness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nativism is a kind of social policy", "pln": ["(: cnet_isa_177858c307 (IsA nativism social_policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nativism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_69828e5e5f (IsA nativism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nativist is a kind of philosopher", "pln": ["(: cnet_isa_29da3a800f (IsA nativist philosopher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natriuresis is a kind of symptom", "pln": ["(: cnet_isa_3eda7e8ac1 (IsA natriuresis symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natrix is a kind of reptile genus", "pln": ["(: cnet_isa_8d43e6df95 (IsA natrix reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natrolite is a kind of zeolite", "pln": ["(: cnet_isa_8fb8c6c1d5 (IsA natrolite zeolite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natterjack is a kind of true toad", "pln": ["(: cnet_isa_22176230ea (IsA natterjack true_toad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "natural is a kind of musical notation", "pln": ["(: cnet_isa_5e7376455b (IsA natural musical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natural is a kind of cast", "pln": ["(: cnet_isa_3f48c31d13 (IsA natural cast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natural is a kind of achiever", "pln": ["(: cnet_isa_d189c460bf (IsA natural achiever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natural ability is a kind of aptitude", "pln": ["(: cnet_isa_cbdf5185a8 (IsA natural_ability aptitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natural childbirth is a kind of childbirth", "pln": ["(: cnet_isa_186d61bb15 (IsA natural_childbirth childbirth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natural depression is a kind of geological formation", "pln": ["(: cnet_isa_4567a6f610 (IsA natural_depression geological_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natural elevation is a kind of geological formation", "pln": ["(: cnet_isa_b3f71aac55 (IsA natural_elevation geological_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natural family planning is a kind of birth control", "pln": ["(: cnet_isa_4284db6d96 (IsA natural_family_planning birth_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natural fiber is a kind of fiber", "pln": ["(: cnet_isa_d171f26455 (IsA natural_fiber fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natural gas is a kind of fossil fuel", "pln": ["(: cnet_isa_0409389194 (IsA natural_gas fossil_fuel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natural glass is a kind of glass", "pln": ["(: cnet_isa_98fd4a90e6 (IsA natural_glass glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natural history is a kind of science", "pln": ["(: cnet_isa_d8a5c82981 (IsA natural_history science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natural immunity is a kind of immunity", "pln": ["(: cnet_isa_116a493832 (IsA natural_immunity immunity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natural language is a kind of language", "pln": ["(: cnet_isa_9bdca90335 (IsA natural_language language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natural language processing is a kind of information science", "pln": ["(: cnet_isa_54f53aa88b (IsA natural_language_processing information_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natural language processor is a kind of application", "pln": ["(: cnet_isa_c017a3493e (IsA natural_language_processor application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natural logarithm is a kind of logarithm", "pln": ["(: cnet_isa_a43c3a8bf1 (IsA natural_logarithm logarithm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natural number is a kind of number", "pln": ["(: cnet_isa_2e5d968668 (IsA natural_number number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natural object is a kind of whole", "pln": ["(: cnet_isa_e15b5e5298 (IsA natural_object whole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natural order is a kind of universe", "pln": ["(: cnet_isa_d6d070973a (IsA natural_order universe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natural phenomenon is a kind of phenomenon", "pln": ["(: cnet_isa_585ad23e3c (IsA natural_phenomenon phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "natural process is a kind of process", "pln": ["(: cnet_isa_67677fc283 (IsA natural_process process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natural resin is a kind of plant product", "pln": ["(: cnet_isa_0a16724591 (IsA natural_resin plant_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natural resin is a kind of resin", "pln": ["(: cnet_isa_1ea7509e22 (IsA natural_resin resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natural resource is a kind of resource", "pln": ["(: cnet_isa_13ae517593 (IsA natural_resource resource) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natural science is a kind of science", "pln": ["(: cnet_isa_0f8560b3ad (IsA natural_science science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natural shape is a kind of shape", "pln": ["(: cnet_isa_8e1eb208fd (IsA natural_shape shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natural theology is a kind of theology", "pln": ["(: cnet_isa_f7f8ba66a2 (IsA natural_theology theology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "natural virtue is a kind of cardinal virtue", "pln": ["(: cnet_isa_8abd33d946 (IsA natural_virtue cardinal_virtue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naturalism is a kind of artistic movement", "pln": ["(: cnet_isa_9946f0df5e (IsA naturalism artistic_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naturalism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_e347c2d6ec (IsA naturalism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naturalist is a kind of biologist", "pln": ["(: cnet_isa_cb2c74279f (IsA naturalist biologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naturalist is a kind of philosopher", "pln": ["(: cnet_isa_52694a855e (IsA naturalist philosopher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "naturalization is a kind of borrowing", "pln": ["(: cnet_isa_fd4616de7b (IsA naturalization borrowing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naturalization is a kind of introduction", "pln": ["(: cnet_isa_b901311ae4 (IsA naturalization introduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naturalization is a kind of naturalness", "pln": ["(: cnet_isa_42325cc95e (IsA naturalization naturalness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naturalization is a kind of proceeding", "pln": ["(: cnet_isa_5280a15f1d (IsA naturalization proceeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "naturalness is a kind of likeness", "pln": ["(: cnet_isa_4bb76c1dfd (IsA naturalness likeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naturalness is a kind of quality", "pln": ["(: cnet_isa_0bf2c18d0b (IsA naturalness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nature is a kind of quality", "pln": ["(: cnet_isa_02ab265487 (IsA nature quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nature is a kind of trait", "pln": ["(: cnet_isa_ea29726876 (IsA nature trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nature is a kind of type", "pln": ["(: cnet_isa_0aa6a78927 (IsA nature type) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nature is a kind of universe", "pln": ["(: cnet_isa_604ed72289 (IsA nature universe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nature is a kind of causal agent", "pln": ["(: cnet_isa_b339590eae (IsA nature causal_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nature study is a kind of inquiry", "pln": ["(: cnet_isa_8648d911fd (IsA nature_study inquiry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nature worship is a kind of religion", "pln": ["(: cnet_isa_7ee6696b9e (IsA nature_worship religion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naturopath is a kind of therapist", "pln": ["(: cnet_isa_ec5b58fb33 (IsA naturopath therapist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naturopathy is a kind of treatment", "pln": ["(: cnet_isa_cfc5199270 (IsA naturopathy treatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nauclea is a kind of asterid dicot genus", "pln": ["(: cnet_isa_eafc096d46 (IsA nauclea asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naucrate is a kind of fish genus", "pln": ["(: cnet_isa_bbb9511344 (IsA naucrate fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naught is a kind of failure", "pln": ["(: cnet_isa_104f94c098 (IsA naught failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naughtiness is a kind of disobedience", "pln": ["(: cnet_isa_1179105d88 (IsA naughtiness disobedience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "naumachy is a kind of spectacle", "pln": ["(: cnet_isa_ea771770d0 (IsA naumachy spectacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nauruan is a kind of austronesian", "pln": ["(: cnet_isa_0c61ce8552 (IsA nauruan austronesian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nausea is a kind of disgust", "pln": ["(: cnet_isa_dcec99ce6e (IsA nausea disgust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nausea is a kind of symptom", "pln": ["(: cnet_isa_31aa1c7b6b (IsA nausea symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nautch is a kind of dancing", "pln": ["(: cnet_isa_9f9bf8f3f2 (IsA nautch dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nautch girl is a kind of dancer", "pln": ["(: cnet_isa_d90e3b7beb (IsA nautch_girl dancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "naval air warfare center weapons division is a kind of agency", "pln": ["(: cnet_isa_6cd85f11a8 (IsA naval_air_warfare_center_weapons_division agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nautical chain is a kind of chain", "pln": ["(: cnet_isa_c0debee6fe (IsA nautical_chain chain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nautical linear unit is a kind of linear unit", "pln": ["(: cnet_isa_d15254478d (IsA nautical_linear_unit linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nautical mile is a kind of nautical linear unit", "pln": ["(: cnet_isa_1a7e419255 (IsA nautical_mile nautical_linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nautilidae is a kind of mollusk family", "pln": ["(: cnet_isa_781b7faa79 (IsA nautilidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nautilus is a kind of submarine", "pln": ["(: cnet_isa_64edd496a9 (IsA nautilus submarine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "navaho is a kind of athapaskan", "pln": ["(: cnet_isa_3ec30b0e73 (IsA navaho athapaskan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "navajo is a kind of athabascan", "pln": ["(: cnet_isa_88e556a534 (IsA navajo athabascan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naval academy is a kind of academy", "pln": ["(: cnet_isa_2a78a77813 (IsA naval_academy academy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naval air warfare center weapon division is a kind of agency", "pln": ["(: cnet_isa_364b48f073 (IsA naval_air_warfare_center_weapon_division agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naval attache is a kind of military attache", "pln": ["(: cnet_isa_e426902cce (IsA naval_attache military_attache) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naval battle is a kind of battle", "pln": ["(: cnet_isa_554182f8cb (IsA naval_battle battle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naval blockade is a kind of blockade", "pln": ["(: cnet_isa_c22563d1f8 (IsA naval_blockade blockade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naval campaign is a kind of operation", "pln": ["(: cnet_isa_14d0fb6fd2 (IsA naval_campaign operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naval chart is a kind of chart", "pln": ["(: cnet_isa_d29dfc1d44 (IsA naval_chart chart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naval commander is a kind of naval officer", "pln": ["(: cnet_isa_d9bea9e9c2 (IsA naval_commander naval_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naval engineering is a kind of engineering", "pln": ["(: cnet_isa_e6b243eceb (IsA naval_engineering engineering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naval equipment is a kind of equipment", "pln": ["(: cnet_isa_e5010e43e5 (IsA naval_equipment equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naval gun is a kind of naval weaponry", "pln": ["(: cnet_isa_f0d5dc45ac (IsA naval_gun naval_weaponry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "naval installation is a kind of military installation", "pln": ["(: cnet_isa_afdfa3b96d (IsA naval_installation military_installation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naval missile is a kind of naval weaponry", "pln": ["(: cnet_isa_c3c59eba5c (IsA naval_missile naval_weaponry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naval officer is a kind of military officer", "pln": ["(: cnet_isa_641d6ed3f6 (IsA naval_officer military_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naval radar is a kind of naval equipment", "pln": ["(: cnet_isa_b18d31bf16 (IsA naval_radar naval_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naval special warfare is a kind of agency", "pln": ["(: cnet_isa_551da57e85 (IsA naval_special_warfare agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naval surface warfare center is a kind of agency", "pln": ["(: cnet_isa_95ef4b755f (IsA naval_surface_warfare_center agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naval tactical data system is a kind of shipboard system", "pln": ["(: cnet_isa_31cfe3bf57 (IsA naval_tactical_data_system shipboard_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naval underwater warfare center is a kind of agency", "pln": ["(: cnet_isa_41815cd692 (IsA naval_underwater_warfare_center agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naval unit is a kind of military unit", "pln": ["(: cnet_isa_1daa2c02ce (IsA naval_unit military_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naval weaponry is a kind of weaponry", "pln": ["(: cnet_isa_8f24f30e02 (IsA naval_weaponry weaponry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nave is a kind of area", "pln": ["(: cnet_isa_e94de33031 (IsA nave area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "navel is a kind of point", "pln": ["(: cnet_isa_8c46b38a85 (IsA navel point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "navel is a kind of center", "pln": ["(: cnet_isa_513c579b19 (IsA navel center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "navel orange is a kind of sweet orange", "pln": ["(: cnet_isa_33676e67d1 (IsA navel_orange sweet_orange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "navigability is a kind of quality", "pln": ["(: cnet_isa_0be8c61170 (IsA navigability quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "navigation is a kind of steering", "pln": ["(: cnet_isa_a53cc17876 (IsA navigation steering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "navigation is a kind of transportation", "pln": ["(: cnet_isa_f57ba018ed (IsA navigation transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "navigation light is a kind of light", "pln": ["(: cnet_isa_575d2c49f4 (IsA navigation_light light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "navigational instrument is a kind of instrument", "pln": ["(: cnet_isa_30f6408d95 (IsA navigational_instrument instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "navigational system is a kind of system", "pln": ["(: cnet_isa_175cb06204 (IsA navigational_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "navigator is a kind of aircrewman", "pln": ["(: cnet_isa_46c7c31c47 (IsA navigator aircrewman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "navigator is a kind of explorer", "pln": ["(: cnet_isa_cc5ce1c64b (IsA navigator explorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "navy is a kind of military service", "pln": ["(: cnet_isa_35dc074227 (IsA navy military_service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "navy base is a kind of base", "pln": ["(: cnet_isa_051e0779f9 (IsA navy_base base) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "navy bean is a kind of common bean", "pln": ["(: cnet_isa_02f96b1158 (IsA navy_bean common_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "navy cross is a kind of decoration", "pln": ["(: cnet_isa_03bcfd5cdb (IsA navy_cross decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "navy department is a kind of executive department", "pln": ["(: cnet_isa_11f3cc91fe (IsA navy_department executive_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "navy yard is a kind of shipyard", "pln": ["(: cnet_isa_26a74334a7 (IsA navy_yard shipyard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nawab is a kind of governor", "pln": ["(: cnet_isa_e2d7e2beb7 (IsA nawab governor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nay is a kind of negative", "pln": ["(: cnet_isa_87d1c464b1 (IsA nay negative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naysayer is a kind of obstructionist", "pln": ["(: cnet_isa_cfa842feea (IsA naysayer obstructionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "naysaying is a kind of denial", "pln": ["(: cnet_isa_081033b8a6 (IsA naysaying denial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nazarene is a kind of christian", "pln": ["(: cnet_isa_c6205620be (IsA nazarene christian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nazarene is a kind of inhabitant", "pln": ["(: cnet_isa_8820cfe258 (IsA nazarene inhabitant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nazi is a kind of restrainer", "pln": ["(: cnet_isa_fe57e231b2 (IsA nazi restrainer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nazification is a kind of social process", "pln": ["(: cnet_isa_f79042cf7c (IsA nazification social_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nazism is a kind of political ideology", "pln": ["(: cnet_isa_64c86462a9 (IsA nazism political_ideology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nazism is a kind of fascism", "pln": ["(: cnet_isa_4f338895b0 (IsA nazism fascism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nazism is a kind of socialism", "pln": ["(: cnet_isa_b2490f8f20 (IsA nazism socialism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ndebele is a kind of nguni", "pln": ["(: cnet_isa_28d178e2eb (IsA ndebele nguni) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neandertal man is a kind of homo", "pln": ["(: cnet_isa_2689225049 (IsA neandertal_man homo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neap tide is a kind of high tide", "pln": ["(: cnet_isa_2977d1e99d (IsA neap_tide high_tide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neapolitan is a kind of italian", "pln": ["(: cnet_isa_12eaaa349e (IsA neapolitan italian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neapolitan ice cream is a kind of ice cream", "pln": ["(: cnet_isa_911bcbc0b0 (IsA neapolitan_ice_cream ice_cream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "near beer is a kind of beverage", "pln": ["(: cnet_isa_ab5f0a6356 (IsA near_beer beverage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "near death experience is a kind of experience", "pln": ["(: cnet_isa_a656d6066f (IsA near_death_experience experience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "near miss is a kind of mishap", "pln": ["(: cnet_isa_9abf6d5ae1 (IsA near_miss mishap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "near thing is a kind of avoidance", "pln": ["(: cnet_isa_5d079a33a7 (IsA near_thing avoidance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "near vision is a kind of sight", "pln": ["(: cnet_isa_1be23c85aa (IsA near_vision sight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nearness is a kind of distance", "pln": ["(: cnet_isa_0826eba059 (IsA nearness distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nearside is a kind of side", "pln": ["(: cnet_isa_c117d54ec4 (IsA nearside side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neat s foot oil is a kind of animal oil", "pln": ["(: cnet_isa_9983ec8478 (IsA neat_s_foot_oil animal_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neatness is a kind of tidiness", "pln": ["(: cnet_isa_10a5a5f9db (IsA neatness tidiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nebbish is a kind of simpleton", "pln": ["(: cnet_isa_f8ce22df8b (IsA nebbish simpleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nebraska is a kind of state", "pln": ["(: cnet_isa_803fcd88f9 (IsA nebraska state) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nebuchadnezzar is a kind of wine bottle", "pln": ["(: cnet_isa_eb886863b5 (IsA nebuchadnezzar wine_bottle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nebula is a kind of cloud", "pln": ["(: cnet_isa_05a1e861ce (IsA nebula cloud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nebula is a kind of spot", "pln": ["(: cnet_isa_08f86ac191 (IsA nebula spot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nebula is a kind of symptom", "pln": ["(: cnet_isa_1f69c145b2 (IsA nebula symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nebula is a kind of formulation", "pln": ["(: cnet_isa_d003608d67 (IsA nebula formulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nebular hypothesis is a kind of scientific theory", "pln": ["(: cnet_isa_46edbf013a (IsA nebular_hypothesis scientific_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nebule is a kind of cloud", "pln": ["(: cnet_isa_643cd34308 (IsA nebule cloud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "necessitarian is a kind of philosopher", "pln": ["(: cnet_isa_e79bf38624 (IsA necessitarian philosopher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "necessity is a kind of thing", "pln": ["(: cnet_isa_abd4faefe2 (IsA necessity thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "necessity is a kind of need", "pln": ["(: cnet_isa_e7edd8096a (IsA necessity need) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neck is a kind of opening", "pln": ["(: cnet_isa_ab9d98bb72 (IsA neck opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neck is a kind of part", "pln": ["(: cnet_isa_011e8b39ac (IsA neck part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neck is a kind of external body part", "pln": ["(: cnet_isa_93a8d6f659 (IsA neck external_body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neck is a kind of cut", "pln": ["(: cnet_isa_a4994dffe3 (IsA neck cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neck is a kind of land", "pln": ["(: cnet_isa_a87623d122 (IsA neck land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neck brace is a kind of brace", "pln": ["(: cnet_isa_4adeb1986a (IsA neck_brace brace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neck exercise is a kind of exercise", "pln": ["(: cnet_isa_a7dfa4d2f5 (IsA neck_exercise exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neck sweetbread is a kind of variety meat", "pln": ["(: cnet_isa_76c3c51c98 (IsA neck_sweetbread variety_meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neckband is a kind of band", "pln": ["(: cnet_isa_df11771e06 (IsA neckband band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neckcloth is a kind of cravat", "pln": ["(: cnet_isa_eea9c96bf5 (IsA neckcloth cravat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "necker is a kind of lover", "pln": ["(: cnet_isa_16a91fd5a2 (IsA necker lover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neckerchief is a kind of kerchief", "pln": ["(: cnet_isa_d22c61743f (IsA neckerchief kerchief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "necklace is a kind of jewelry", "pln": ["(: cnet_isa_b2b662bb80 (IsA necklace jewelry) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "necklace is a kind of piece of jewelry", "pln": ["(: cnet_isa_135f6f93d7 (IsA necklace piece_of_jewelry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "necklace is a kind of piece of jewlery", "pln": ["(: cnet_isa_69ac7ba980 (IsA necklace piece_of_jewlery) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "necklace tree is a kind of tree", "pln": ["(: cnet_isa_b9fcf11dc4 (IsA necklace_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "necklet is a kind of decoration", "pln": ["(: cnet_isa_bd8cb3eb0d (IsA necklet decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neckline is a kind of neck", "pln": ["(: cnet_isa_e76499308d (IsA neckline neck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neckpiece is a kind of clothing", "pln": ["(: cnet_isa_9885646765 (IsA neckpiece clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "necktie is a kind of neckwear", "pln": ["(: cnet_isa_22749038c8 (IsA necktie neckwear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neckwear is a kind of garment", "pln": ["(: cnet_isa_56446c2144 (IsA neckwear garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "necrobiosis is a kind of death", "pln": ["(: cnet_isa_2ef868c342 (IsA necrobiosis death) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "necrobiosis lipoidica is a kind of skin disease", "pln": ["(: cnet_isa_54409c49a1 (IsA necrobiosis_lipoidica skin_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "necrology is a kind of list", "pln": ["(: cnet_isa_ef1df8f061 (IsA necrology list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "necrolysis is a kind of lysis", "pln": ["(: cnet_isa_6f891ea120 (IsA necrolysis lysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "necromancer is a kind of diviner", "pln": ["(: cnet_isa_28a7e1335f (IsA necromancer diviner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "necromancy is a kind of divination", "pln": ["(: cnet_isa_91d6707d3d (IsA necromancy divination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "necrophagia is a kind of eating", "pln": ["(: cnet_isa_f470d3e35b (IsA necrophagia eating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "necrophilia is a kind of mania", "pln": ["(: cnet_isa_fb2ca3f863 (IsA necrophilia mania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "necrosis is a kind of death", "pln": ["(: cnet_isa_0b0972e1c6 (IsA necrosis death) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "necrotizing enteritis is a kind of enteritis", "pln": ["(: cnet_isa_0efa4ca160 (IsA necrotizing_enteritis enteritis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "necrotizing enterocolitis is a kind of inflammatory disease", "pln": ["(: cnet_isa_b756a6dab9 (IsA necrotizing_enterocolitis inflammatory_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nectar is a kind of fruit juice", "pln": ["(: cnet_isa_b69641d079 (IsA nectar fruit_juice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "needlenose pliers is a kind of pliers", "pln": ["(: cnet_isa_0af9357596 (IsA needlenose_pliers pliers) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nectar is a kind of secretion", "pln": ["(: cnet_isa_ccc92377fd (IsA nectar secretion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nectarine is a kind of edible fruit", "pln": ["(: cnet_isa_7411b1ac1f (IsA nectarine edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nectarine is a kind of fruit tree", "pln": ["(: cnet_isa_5b6277f4d4 (IsA nectarine fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nectary is a kind of plant organ", "pln": ["(: cnet_isa_b5f57e6620 (IsA nectary plant_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "necturus is a kind of amphibian genus", "pln": ["(: cnet_isa_81ec71787e (IsA necturus amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "need is a kind of necessity", "pln": ["(: cnet_isa_c10a739b5f (IsA need necessity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "need is a kind of condition", "pln": ["(: cnet_isa_7bf3c47114 (IsA need condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neediness is a kind of quality", "pln": ["(: cnet_isa_136920f3b5 (IsA neediness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "needle is a kind of implement", "pln": ["(: cnet_isa_156fbcbc18 (IsA needle implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "needle is a kind of pointer", "pln": ["(: cnet_isa_af146196cc (IsA needle pointer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "needle biopsy is a kind of biopsy", "pln": ["(: cnet_isa_e7adffc945 (IsA needle_biopsy biopsy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "needle blight is a kind of leaf blight", "pln": ["(: cnet_isa_bc2bb9ce4c (IsA needle_blight leaf_blight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "needle spike rush is a kind of spike rush", "pln": ["(: cnet_isa_3f072ac67b (IsA needle_spike_rush spike_rush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "needlebush is a kind of shrub", "pln": ["(: cnet_isa_0e2ed451bc (IsA needlebush shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "needlefish is a kind of teleost fish", "pln": ["(: cnet_isa_d29bdc74a2 (IsA needlefish teleost_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "needlenose plier is a kind of plier", "pln": ["(: cnet_isa_a053783fb4 (IsA needlenose_plier plier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "needlepoint is a kind of embroidery", "pln": ["(: cnet_isa_f3566adaa3 (IsA needlepoint embroidery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "needlewood is a kind of shrub", "pln": ["(: cnet_isa_a23126115d (IsA needlewood shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "needlework is a kind of handicraft", "pln": ["(: cnet_isa_b1cf374458 (IsA needlework handicraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "needlework is a kind of creation", "pln": ["(: cnet_isa_39ac661324 (IsA needlework creation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "needleworker is a kind of maker", "pln": ["(: cnet_isa_33d9f9c0ed (IsA needleworker maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "needy is a kind of poor people", "pln": ["(: cnet_isa_d1c9227482 (IsA needy poor_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neem is a kind of tree", "pln": ["(: cnet_isa_da9fefb212 (IsA neem tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neem cake is a kind of organic", "pln": ["(: cnet_isa_841e5fbd90 (IsA neem_cake organic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neem seed is a kind of seed", "pln": ["(: cnet_isa_857b5e4934 (IsA neem_seed seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neencephalon is a kind of neural structure", "pln": ["(: cnet_isa_91eb7dd228 (IsA neencephalon neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nefariousness is a kind of evil", "pln": ["(: cnet_isa_7a19d655fb (IsA nefariousness evil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "negaprion is a kind of fish genus", "pln": ["(: cnet_isa_a36cbbc8dc (IsA negaprion fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "negation is a kind of denial", "pln": ["(: cnet_isa_1ebac61cce (IsA negation denial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "negation is a kind of statement", "pln": ["(: cnet_isa_82baaaecfb (IsA negation statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "negation is a kind of proposition", "pln": ["(: cnet_isa_6acd77229c (IsA negation proposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "negative is a kind of film", "pln": ["(: cnet_isa_27e6f2a76f (IsA negative film) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "negative is a kind of denial", "pln": ["(: cnet_isa_8d628acdcd (IsA negative denial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "negative charge is a kind of charge", "pln": ["(: cnet_isa_c2986c09a5 (IsA negative_charge charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "negative chemotaxis is a kind of chemotaxis", "pln": ["(: cnet_isa_fef08aac03 (IsA negative_chemotaxis chemotaxis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "negative correlation is a kind of correlation", "pln": ["(: cnet_isa_1179f467f9 (IsA negative_correlation correlation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "negative feedback is a kind of feedback", "pln": ["(: cnet_isa_c13c14b6c8 (IsA negative_feedback feedback) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "negative identification is a kind of identification", "pln": ["(: cnet_isa_bfd1b20126 (IsA negative_identification identification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "negative magnetic pole is a kind of pole", "pln": ["(: cnet_isa_44e0298a5f (IsA negative_magnetic_pole pole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "negative pole is a kind of terminal", "pln": ["(: cnet_isa_42e83ac530 (IsA negative_pole terminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "negative reinforcing stimulus is a kind of reinforcing stimulus", "pln": ["(: cnet_isa_efeda2e50c (IsA negative_reinforcing_stimulus reinforcing_stimulus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "negative stimulus is a kind of stimulation", "pln": ["(: cnet_isa_bedea07d32 (IsA negative_stimulus stimulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "negativeness is a kind of amount", "pln": ["(: cnet_isa_b5ffeb8ce4 (IsA negativeness amount) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "negativism is a kind of quality", "pln": ["(: cnet_isa_486cd3eee6 (IsA negativism quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "negativist is a kind of balker", "pln": ["(: cnet_isa_1eb4c16b7c (IsA negativist balker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "negativity is a kind of polarity", "pln": ["(: cnet_isa_120cae73e5 (IsA negativity polarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neglect is a kind of decline", "pln": ["(: cnet_isa_e4823cf061 (IsA neglect decline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neglect of duty is a kind of negligence", "pln": ["(: cnet_isa_f6c4b9d50c (IsA neglect_of_duty negligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neglecter is a kind of person", "pln": ["(: cnet_isa_d6a073c7ef (IsA neglecter person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "negligee is a kind of woman s clothing", "pln": ["(: cnet_isa_28570b97dc (IsA negligee woman_s_clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "negligence is a kind of nonaccomplishment", "pln": ["(: cnet_isa_c9e77c9bd6 (IsA negligence nonaccomplishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "negligence is a kind of carelessness", "pln": ["(: cnet_isa_945779dc1e (IsA negligence carelessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "negotiable instrument is a kind of legal document", "pln": ["(: cnet_isa_468279cfd8 (IsA negotiable_instrument legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "negotiation is a kind of activity", "pln": ["(: cnet_isa_55b47459b2 (IsA negotiation activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "negotiation is a kind of discussion", "pln": ["(: cnet_isa_b11104fb28 (IsA negotiation discussion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "negotiator is a kind of communicator", "pln": ["(: cnet_isa_44af80bc3b (IsA negotiator communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "negotiatress is a kind of negotiator", "pln": ["(: cnet_isa_95cc079917 (IsA negotiatress negotiator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "negress is a kind of negro", "pln": ["(: cnet_isa_f66709f0dd (IsA negress negro) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "negritude is a kind of political orientation", "pln": ["(: cnet_isa_54872e844b (IsA negritude political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "negro peach is a kind of shrub", "pln": ["(: cnet_isa_294f9e50ab (IsA negro_peach shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "negro vine is a kind of vine", "pln": ["(: cnet_isa_20b6dd9662 (IsA negro_vine vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "negroid is a kind of person", "pln": ["(: cnet_isa_85f815e6c0 (IsA negroid person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "negus is a kind of mulled wine", "pln": ["(: cnet_isa_3aab469b2e (IsA negus mulled_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neigh is a kind of cry", "pln": ["(: cnet_isa_e345cb87dd (IsA neigh cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neighbor is a kind of who live near", "pln": ["(: cnet_isa_3bc255f236 (IsA neighbor who_live_near) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neighbor is a kind of object", "pln": ["(: cnet_isa_91de31151f (IsA neighbor object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neighbor is a kind of person", "pln": ["(: cnet_isa_e6151617da (IsA neighbor person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "neighborhood is a kind of community", "pln": ["(: cnet_isa_6c74a61ba7 (IsA neighborhood community) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neighborhood is a kind of area", "pln": ["(: cnet_isa_ee46f82443 (IsA neighborhood area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neighborliness is a kind of friendliness", "pln": ["(: cnet_isa_805e4af7f9 (IsA neighborliness friendliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nekton is a kind of organism", "pln": ["(: cnet_isa_91ea87a008 (IsA nekton organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nelson is a kind of wrestling hold", "pln": ["(: cnet_isa_922f8146ae (IsA nelson wrestling_hold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nelumbo is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_224fdf11f8 (IsA nelumbo magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nelumbonaceae is a kind of magnoliid dicot family", "pln": ["(: cnet_isa_531e9c64fb (IsA nelumbonaceae magnoliid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nematocera is a kind of animal order", "pln": ["(: cnet_isa_a89bd683d1 (IsA nematocera animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nematoda is a kind of phylum", "pln": ["(: cnet_isa_1063c0fe96 (IsA nematoda phylum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nematode is a kind of worm", "pln": ["(: cnet_isa_559597142a (IsA nematode worm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nemean game is a kind of agon", "pln": ["(: cnet_isa_295216ff75 (IsA nemean_game agon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nemean lion is a kind of mythical monster", "pln": ["(: cnet_isa_3a5e43e061 (IsA nemean_lion mythical_monster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nemertea is a kind of phylum", "pln": ["(: cnet_isa_fba840b9b9 (IsA nemertea phylum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nemophila is a kind of herb", "pln": ["(: cnet_isa_eb5a218ef3 (IsA nemophila herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nenet is a kind of samoyedic", "pln": ["(: cnet_isa_43c25a8fe9 (IsA nenet samoyedic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neo darwinism is a kind of darwinism", "pln": ["(: cnet_isa_cc381ca7f6 (IsA neo_darwinism darwinism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neo lamarckism is a kind of lamarckism", "pln": ["(: cnet_isa_95687972b6 (IsA neo_lamarckism lamarckism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neo latin is a kind of latin", "pln": ["(: cnet_isa_1864762467 (IsA neo_latin latin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neoceratodus is a kind of fish genus", "pln": ["(: cnet_isa_8310cc9e97 (IsA neoceratodus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neoclassicism is a kind of artistic style", "pln": ["(: cnet_isa_25e4d54edb (IsA neoclassicism artistic_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neoclassicism is a kind of humanistic discipline", "pln": ["(: cnet_isa_6e743f6c82 (IsA neoclassicism humanistic_discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neoclassicist is a kind of advocate", "pln": ["(: cnet_isa_e7c788a83c (IsA neoclassicist advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neocolonialism is a kind of colonialism", "pln": ["(: cnet_isa_21e12fa6d2 (IsA neocolonialism colonialism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neoconservatism is a kind of conservatism", "pln": ["(: cnet_isa_8bf78e1e6f (IsA neoconservatism conservatism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neoconservative is a kind of conservative", "pln": ["(: cnet_isa_c5f23d1793 (IsA neoconservative conservative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "neodymium is a kind of metallic element", "pln": ["(: cnet_isa_aa6e7507c3 (IsA neodymium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "neonatology is a kind of pediatrics", "pln": ["(: cnet_isa_f19a18f822 (IsA neonatology pediatrics) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neoexpressionism is a kind of expressionism", "pln": ["(: cnet_isa_0aa9e4e4c1 (IsA neoexpressionism expressionism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neofiber is a kind of mammal genus", "pln": ["(: cnet_isa_968038d621 (IsA neofiber mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neohygrophorus is a kind of fungus genus", "pln": ["(: cnet_isa_bf7fafde96 (IsA neohygrophorus fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neohygrophorus angelesianus is a kind of waxycap", "pln": ["(: cnet_isa_53b13ba1d7 (IsA neohygrophorus_angelesianus waxycap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neolentinus is a kind of fungus genus", "pln": ["(: cnet_isa_1fd4d8243c (IsA neolentinus fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neolentinus ponderosus is a kind of polypore", "pln": ["(: cnet_isa_c73e8b1fac (IsA neolentinus_ponderosus polypore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neoliberal is a kind of liberal", "pln": ["(: cnet_isa_4bf8c212b2 (IsA neoliberal liberal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neoliberalism is a kind of liberalism", "pln": ["(: cnet_isa_962365ff20 (IsA neoliberalism liberalism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neolith is a kind of tool", "pln": ["(: cnet_isa_ab70588527 (IsA neolith tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neologism is a kind of invention", "pln": ["(: cnet_isa_4d5f0937cb (IsA neologism invention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neologism is a kind of word", "pln": ["(: cnet_isa_a6a4fb441a (IsA neologism word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neologist is a kind of lexicographer", "pln": ["(: cnet_isa_0d89c029f9 (IsA neologist lexicographer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neomy is a kind of mammal genus", "pln": ["(: cnet_isa_646f5ca26d (IsA neomy mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neon is a kind of chemical element", "pln": ["(: cnet_isa_919e083ace (IsA neon chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neon is a kind of noble gas", "pln": ["(: cnet_isa_d0cdef2b1f (IsA neon noble_gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neon lamp is a kind of lamp", "pln": ["(: cnet_isa_ce2b8eb964 (IsA neon_lamp lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neonatal death is a kind of death", "pln": ["(: cnet_isa_a1144f26fe (IsA neonatal_death death) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neonatal intensive care unit is a kind of intensive care unit", "pln": ["(: cnet_isa_0a77685d4b (IsA neonatal_intensive_care_unit intensive_care_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neonatal mortality is a kind of deathrate", "pln": ["(: cnet_isa_0e21ea17ed (IsA neonatal_mortality deathrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neonatal period is a kind of time of life", "pln": ["(: cnet_isa_d1119adadf (IsA neonatal_period time_of_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neonate is a kind of baby", "pln": ["(: cnet_isa_9f6f5a2adb (IsA neonate baby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neonatology is a kind of pediatric", "pln": ["(: cnet_isa_cdf8ebf38f (IsA neonatology pediatric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neopallium is a kind of cerebral cortex", "pln": ["(: cnet_isa_d5c31cb410 (IsA neopallium cerebral_cortex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neophobia is a kind of simple phobia", "pln": ["(: cnet_isa_76c2c08641 (IsA neophobia simple_phobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neophron is a kind of bird genus", "pln": ["(: cnet_isa_7afdb0a882 (IsA neophron bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neophyte is a kind of plant", "pln": ["(: cnet_isa_e5752833a5 (IsA neophyte plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neoplasia is a kind of pathologic process", "pln": ["(: cnet_isa_7ed9f7b173 (IsA neoplasia pathologic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neoplastic cell is a kind of somatic cell", "pln": ["(: cnet_isa_5e62774ffe (IsA neoplastic_cell somatic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neoplatonism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_00deadd901 (IsA neoplatonism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neoplatonism is a kind of theological doctrine", "pln": ["(: cnet_isa_c6c2ad2b16 (IsA neoplatonism theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neoplatonist is a kind of disciple", "pln": ["(: cnet_isa_accecec475 (IsA neoplatonist disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neopolitan is a kind of italian", "pln": ["(: cnet_isa_f1ce00e22e (IsA neopolitan italian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neoprene is a kind of synthetic rubber", "pln": ["(: cnet_isa_b0a1dc4f17 (IsA neoprene synthetic_rubber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neoromanticism is a kind of artistic movement", "pln": ["(: cnet_isa_402c02bce8 (IsA neoromanticism artistic_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neoteny is a kind of evolutionary trend", "pln": ["(: cnet_isa_eb61456200 (IsA neoteny evolutionary_trend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neotoma is a kind of mammal genus", "pln": ["(: cnet_isa_259cc5a438 (IsA neotoma mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neotony is a kind of state", "pln": ["(: cnet_isa_4088ee1f55 (IsA neotony state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nepa is a kind of arthropod genus", "pln": ["(: cnet_isa_410ca021ce (IsA nepa arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nepal trumpet flower is a kind of vine", "pln": ["(: cnet_isa_6472327857 (IsA nepal_trumpet_flower vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nepalese is a kind of asiatic", "pln": ["(: cnet_isa_81f7e3d3d7 (IsA nepalese asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nepalese monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_b61cb30a51 (IsA nepalese_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nepalese rupee is a kind of nepalese monetary unit", "pln": ["(: cnet_isa_4d660d978e (IsA nepalese_rupee nepalese_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nepali is a kind of indic", "pln": ["(: cnet_isa_1e1d749b1b (IsA nepali indic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nepenthaceae is a kind of dicot family", "pln": ["(: cnet_isa_a805d4c38b (IsA nepenthaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nepenthe is a kind of dicot genus", "pln": ["(: cnet_isa_45a9291388 (IsA nepenthe dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nepeta is a kind of asterid dicot genus", "pln": ["(: cnet_isa_8fea8be637 (IsA nepeta asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nepheline is a kind of mineral", "pln": ["(: cnet_isa_5b7561d061 (IsA nepheline mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nephelinite is a kind of mineral", "pln": ["(: cnet_isa_dd396519e4 (IsA nephelinite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nephelium is a kind of dicot genus", "pln": ["(: cnet_isa_e69c76b8ae (IsA nephelium dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nephew is a kind of nibling", "pln": ["(: cnet_isa_bc72e44def (IsA nephew nibling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nephew is a kind of kinsman", "pln": ["(: cnet_isa_feba4bd999 (IsA nephew kinsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nephology is a kind of meteorology", "pln": ["(: cnet_isa_b74929280d (IsA nephology meteorology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nephoscope is a kind of measuring instrument", "pln": ["(: cnet_isa_8208cdf483 (IsA nephoscope measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nephralgia is a kind of pain", "pln": ["(: cnet_isa_004c417787 (IsA nephralgia pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nephrectomy is a kind of ablation", "pln": ["(: cnet_isa_67ee56611b (IsA nephrectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nephrite is a kind of amphibole", "pln": ["(: cnet_isa_355aad3662 (IsA nephrite amphibole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "nephrops is a kind of arthropod genus", "pln": ["(: cnet_isa_03f6bc4aae (IsA nephrops arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nephritis is a kind of kidney disease", "pln": ["(: cnet_isa_db544a065f (IsA nephritis kidney_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nephrocalcinosis is a kind of nephrolithiasis", "pln": ["(: cnet_isa_a5df4ac6bc (IsA nephrocalcinosis nephrolithiasis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nephrogenic diabete insipidus is a kind of diabete insipidus", "pln": ["(: cnet_isa_ff4a0c326c (IsA nephrogenic_diabete_insipidus diabete_insipidus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nephrolepis is a kind of fern genus", "pln": ["(: cnet_isa_059f2f7da9 (IsA nephrolepis fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nephrolithiasis is a kind of lithiasis", "pln": ["(: cnet_isa_4fe4593de5 (IsA nephrolithiasis lithiasis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nephrology is a kind of medicine", "pln": ["(: cnet_isa_23e9605ff9 (IsA nephrology medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nephron is a kind of tubule", "pln": ["(: cnet_isa_01a2bea9e1 (IsA nephron tubule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nephrop is a kind of arthropod genus", "pln": ["(: cnet_isa_0bfa15d372 (IsA nephrop arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nephropsidae is a kind of arthropod family", "pln": ["(: cnet_isa_6bde649dc9 (IsA nephropsidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nephroptosis is a kind of prolapse", "pln": ["(: cnet_isa_0114e64fcb (IsA nephroptosis prolapse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nephrosclerosis is a kind of kidney disease", "pln": ["(: cnet_isa_b38de5641c (IsA nephrosclerosis kidney_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nephrotic syndrome is a kind of syndrome", "pln": ["(: cnet_isa_c7ee210dc7 (IsA nephrotic_syndrome syndrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nephrotomy is a kind of incision", "pln": ["(: cnet_isa_6336d2d853 (IsA nephrotomy incision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nephrotoxin is a kind of toxin", "pln": ["(: cnet_isa_5de5174a66 (IsA nephrotoxin toxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nephthytis is a kind of arum", "pln": ["(: cnet_isa_d3d1bf5def (IsA nephthytis arum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nephthytis afzelii is a kind of nephthytis", "pln": ["(: cnet_isa_c6ee60b659 (IsA nephthytis_afzelii nephthytis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nepidae is a kind of arthropod family", "pln": ["(: cnet_isa_f42f2769b4 (IsA nepidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nepotism is a kind of discrimination", "pln": ["(: cnet_isa_5711e7c145 (IsA nepotism discrimination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nepotist is a kind of important person", "pln": ["(: cnet_isa_eb3bac6f67 (IsA nepotist important_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neptune is a kind of planet", "pln": ["(: cnet_isa_4dd9238901 (IsA neptune planet) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neptunium is a kind of metallic element", "pln": ["(: cnet_isa_414c7de4f0 (IsA neptunium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nerd is a kind of expert", "pln": ["(: cnet_isa_249a05944b (IsA nerd expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nerd is a kind of candy", "pln": ["(: cnet_isa_65f92014c3 (IsA nerd candy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nereid is a kind of sea nymph", "pln": ["(: cnet_isa_4f342274b2 (IsA nereid sea_nymph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nerita is a kind of neritid", "pln": ["(: cnet_isa_e7fc4eba0b (IsA nerita neritid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neritic zone is a kind of ocean floor", "pln": ["(: cnet_isa_8a90c0d47f (IsA neritic_zone ocean_floor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neritid is a kind of seasnail", "pln": ["(: cnet_isa_2eae6a52fe (IsA neritid seasnail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neritidae is a kind of mollusk family", "pln": ["(: cnet_isa_026efd166c (IsA neritidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neritina is a kind of neritid", "pln": ["(: cnet_isa_ce98a21220 (IsA neritina neritid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nerium is a kind of dicot genus", "pln": ["(: cnet_isa_01c9480fde (IsA nerium dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nerodia is a kind of reptile genus", "pln": ["(: cnet_isa_83048b4ff7 (IsA nerodia reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neroli oil is a kind of oil", "pln": ["(: cnet_isa_648378c4d2 (IsA neroli_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nerve is a kind of fiber bundle", "pln": ["(: cnet_isa_d8c1a409a3 (IsA nerve fiber_bundle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nerve cell is a kind of somatic cell", "pln": ["(: cnet_isa_ca5c021865 (IsA nerve_cell somatic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nerve center is a kind of center", "pln": ["(: cnet_isa_bf1f896e10 (IsA nerve_center center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nerve compression is a kind of nervous disorder", "pln": ["(: cnet_isa_d473207d46 (IsA nerve_compression nervous_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nerve ending is a kind of end", "pln": ["(: cnet_isa_cb90a3fcee (IsA nerve_ending end) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nerve entrapment is a kind of nerve compression", "pln": ["(: cnet_isa_055b26311c (IsA nerve_entrapment nerve_compression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nerve fiber is a kind of fiber", "pln": ["(: cnet_isa_7c5464fce7 (IsA nerve_fiber fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nerve fiber is a kind of fibre", "pln": ["(: cnet_isa_e81b5e3fde (IsA nerve_fiber fibre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nerve gas is a kind of agent", "pln": ["(: cnet_isa_2e1c17001c (IsA nerve_gas agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nerve gas is a kind of poison gas", "pln": ["(: cnet_isa_d369102bf4 (IsA nerve_gas poison_gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nerve growth factor is a kind of growth factor", "pln": ["(: cnet_isa_f2e7aaa908 (IsA nerve_growth_factor growth_factor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nerve impulse is a kind of electrical discharge", "pln": ["(: cnet_isa_a407b7b40a (IsA nerve_impulse electrical_discharge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nerve pathway is a kind of white matter", "pln": ["(: cnet_isa_5f7f73e4e5 (IsA nerve_pathway white_matter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nerve plexus is a kind of plexus", "pln": ["(: cnet_isa_bfe2fd29b2 (IsA nerve_plexus plexus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nerve is a kind of self control", "pln": ["(: cnet_isa_3237271d22 (IsA nerve self_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nervous breakdown is a kind of breakdown", "pln": ["(: cnet_isa_d7ba71fcdc (IsA nervous_breakdown breakdown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nervous disorder is a kind of disorder", "pln": ["(: cnet_isa_89cc104b0c (IsA nervous_disorder disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nervous exhaustion is a kind of nervous breakdown", "pln": ["(: cnet_isa_ca750aa39d (IsA nervous_exhaustion nervous_breakdown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nervous system is a kind of system", "pln": ["(: cnet_isa_a7ff21584f (IsA nervous_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nervous tissue is a kind of animal tissue", "pln": ["(: cnet_isa_df0ef6d85b (IsA nervous_tissue animal_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nervousness is a kind of disposition", "pln": ["(: cnet_isa_fc3e088b82 (IsA nervousness disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nervousness is a kind of psychological state", "pln": ["(: cnet_isa_4962096915 (IsA nervousness psychological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nesokia is a kind of mammal genus", "pln": ["(: cnet_isa_27d1126d47 (IsA nesokia mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nesselrode is a kind of pudding", "pln": ["(: cnet_isa_19dcaaaa43 (IsA nesselrode pudding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nest is a kind of furniture", "pln": ["(: cnet_isa_062b83e036 (IsA nest furniture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nest is a kind of gun emplacement", "pln": ["(: cnet_isa_e33d6926bb (IsA nest gun_emplacement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nest is a kind of retreat", "pln": ["(: cnet_isa_55fa101542 (IsA nest retreat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nest is a kind of natural object", "pln": ["(: cnet_isa_7fc9ab913a (IsA nest natural_object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nest is a kind of gang", "pln": ["(: cnet_isa_b8966b50eb (IsA nest gang) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nest egg is a kind of device", "pln": ["(: cnet_isa_10d5948f35 (IsA nest_egg device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nester is a kind of bird", "pln": ["(: cnet_isa_c55fb2a564 (IsA nester bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nesting place is a kind of topographic point", "pln": ["(: cnet_isa_3390e6a892 (IsA nesting_place topographic_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nestling is a kind of young bird", "pln": ["(: cnet_isa_07c93383a2 (IsA nestling young_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nestor is a kind of bird genus", "pln": ["(: cnet_isa_de2043f039 (IsA nestor bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nestorian is a kind of follower", "pln": ["(: cnet_isa_b52de7d35c (IsA nestorian follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nestorian church is a kind of church", "pln": ["(: cnet_isa_7382fc9eb1 (IsA nestorian_church church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nestorianism is a kind of heresy", "pln": ["(: cnet_isa_430ea33af7 (IsA nestorianism heresy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nestorianism is a kind of theological doctrine", "pln": ["(: cnet_isa_4ad62d8b32 (IsA nestorianism theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "net is a kind of fabric", "pln": ["(: cnet_isa_d3bb285072 (IsA net fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "net is a kind of game equipment", "pln": ["(: cnet_isa_45fc201ebf (IsA net game_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "net is a kind of trap", "pln": ["(: cnet_isa_dc21362357 (IsA net trap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "net is a kind of goal", "pln": ["(: cnet_isa_4e5e3638f1 (IsA net goal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "net estate is a kind of estate", "pln": ["(: cnet_isa_46bfeb5dbd (IsA net_estate estate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "net income is a kind of income", "pln": ["(: cnet_isa_353a050f6e (IsA net_income income) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "net melon is a kind of muskmelon", "pln": ["(: cnet_isa_f527264e68 (IsA net_melon muskmelon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "net melon is a kind of sweet melon", "pln": ["(: cnet_isa_230fef9f66 (IsA net_melon sweet_melon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "net sale is a kind of income", "pln": ["(: cnet_isa_fa5dd959b3 (IsA net_sale income) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "netball is a kind of court game", "pln": ["(: cnet_isa_dd4e3acf3d (IsA netball court_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "netbsd is a kind of operating system", "pln": ["(: cnet_isa_80dcd56e0c (IsA netbsd operating_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "netting is a kind of weaving", "pln": ["(: cnet_isa_9393211cd6 (IsA netting weaving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nettle is a kind of weed", "pln": ["(: cnet_isa_3faf4a8e5b (IsA nettle weed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nettle leaved goosefoot is a kind of goosefoot", "pln": ["(: cnet_isa_0874b738d9 (IsA nettle_leaved_goosefoot goosefoot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "network is a kind of system", "pln": ["(: cnet_isa_b730ba7b63 (IsA network system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "network is a kind of communication system", "pln": ["(: cnet_isa_38da07f1b3 (IsA network communication_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "network architecture is a kind of specification", "pln": ["(: cnet_isa_d3c975cb66 (IsA network_architecture specification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "network army is a kind of people", "pln": ["(: cnet_isa_7ea62f9a84 (IsA network_army people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "network programming is a kind of schedule", "pln": ["(: cnet_isa_7e8c89f6f4 (IsA network_programming schedule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neural arch is a kind of arch", "pln": ["(: cnet_isa_12fc011edc (IsA neural_arch arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neural network is a kind of artificial intelligence", "pln": ["(: cnet_isa_a96992dbf3 (IsA neural_network artificial_intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neural network is a kind of reticulum", "pln": ["(: cnet_isa_0689640622 (IsA neural_network reticulum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neural network is a kind of computer architecture", "pln": ["(: cnet_isa_ce44818cd7 (IsA neural_network computer_architecture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "neural structure is a kind of structure", "pln": ["(: cnet_isa_baaaa448ea (IsA neural_structure structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neural tube is a kind of ectoderm", "pln": ["(: cnet_isa_6f5cfcf251 (IsA neural_tube ectoderm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "neuralgia is a kind of pain", "pln": ["(: cnet_isa_51c91d7e41 (IsA neuralgia pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurasthenia is a kind of nervous breakdown", "pln": ["(: cnet_isa_4b9663df85 (IsA neurasthenia nervous_breakdown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurasthenic is a kind of sick person", "pln": ["(: cnet_isa_b3dd96af03 (IsA neurasthenic sick_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurectomy is a kind of ablation", "pln": ["(: cnet_isa_dd3fe60354 (IsA neurectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurinoma is a kind of benign tumor", "pln": ["(: cnet_isa_6fb5dca2df (IsA neurinoma benign_tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "neuritis is a kind of inflammation", "pln": ["(: cnet_isa_006310cf4b (IsA neuritis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neuro marketing is a kind of marketing", "pln": ["(: cnet_isa_a0638e1dd9 (IsA neuro_marketing marketing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neuroanatomy is a kind of anatomy", "pln": ["(: cnet_isa_d731a75352 (IsA neuroanatomy anatomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurobiologist is a kind of biologist", "pln": ["(: cnet_isa_158de42304 (IsA neurobiologist biologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurobiology is a kind of biology", "pln": ["(: cnet_isa_f3373afe60 (IsA neurobiology biology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neuroblast is a kind of embryonic cell", "pln": ["(: cnet_isa_e48737682e (IsA neuroblast embryonic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neuroblastoma is a kind of malignant tumor", "pln": ["(: cnet_isa_b3d77348e6 (IsA neuroblastoma malignant_tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "neurochemical is a kind of organic compound", "pln": ["(: cnet_isa_9418b7fac0 (IsA neurochemical organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "neuroethics is a kind of bioethics", "pln": ["(: cnet_isa_777082d087 (IsA neuroethics bioethics) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurodermatitis is a kind of dermatitis", "pln": ["(: cnet_isa_427559ffa3 (IsA neurodermatitis dermatitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neuroepithelioma is a kind of malignant tumor", "pln": ["(: cnet_isa_423bf3531b (IsA neuroepithelioma malignant_tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neuroepithelium is a kind of epithelium", "pln": ["(: cnet_isa_7fcbee2f9f (IsA neuroepithelium epithelium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neuroethic is a kind of bioethic", "pln": ["(: cnet_isa_15b135ceb5 (IsA neuroethic bioethic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurofibroma is a kind of tumor", "pln": ["(: cnet_isa_83f3da0b30 (IsA neurofibroma tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurofibromatosis is a kind of autosomal dominant disease", "pln": ["(: cnet_isa_ea28d04f06 (IsA neurofibromatosis autosomal_dominant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurofibromatosis is a kind of monogenic disorder", "pln": ["(: cnet_isa_8258709504 (IsA neurofibromatosis monogenic_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurogenesis is a kind of growth", "pln": ["(: cnet_isa_eff8c40045 (IsA neurogenesis growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurogenic bladder is a kind of bladder disorder", "pln": ["(: cnet_isa_a3cb66cb1c (IsA neurogenic_bladder bladder_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neuroglia is a kind of interstitial tissue", "pln": ["(: cnet_isa_64ba86f86a (IsA neuroglia interstitial_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurogliacyte is a kind of somatic cell", "pln": ["(: cnet_isa_d6aa80da1e (IsA neurogliacyte somatic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurohormone is a kind of hormone", "pln": ["(: cnet_isa_e782a21db6 (IsA neurohormone hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurolemma is a kind of sheath", "pln": ["(: cnet_isa_91b11aa430 (IsA neurolemma sheath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurolinguist is a kind of linguist", "pln": ["(: cnet_isa_63737170ff (IsA neurolinguist linguist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurolinguist is a kind of neuroscientist", "pln": ["(: cnet_isa_e20ddf559c (IsA neurolinguist neuroscientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurolinguistic is a kind of linguistic", "pln": ["(: cnet_isa_ad1e0abc4a (IsA neurolinguistic linguistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurologist is a kind of specialist", "pln": ["(: cnet_isa_3e795d2020 (IsA neurologist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurology is a kind of medical science", "pln": ["(: cnet_isa_703929c8d5 (IsA neurology medical_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurology is a kind of medicine", "pln": ["(: cnet_isa_0cd9b80bbf (IsA neurology medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "neuroma is a kind of tumor", "pln": ["(: cnet_isa_13703a6ba1 (IsA neuroma tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "neuromuscular blocking agent is a kind of blocker", "pln": ["(: cnet_isa_15fdeff695 (IsA neuromuscular_blocking_agent blocker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neuromuscular junction is a kind of synapse", "pln": ["(: cnet_isa_d13eb7f234 (IsA neuromuscular_junction synapse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neuron is a kind of diploid cell", "pln": ["(: cnet_isa_84f01d4149 (IsA neuron diploid_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neuron is a kind of neuron", "pln": ["(: cnet_isa_0be1cfbcbd (IsA neuron neuron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neuropathy is a kind of pathology", "pln": ["(: cnet_isa_33141cdaf5 (IsA neuropathy pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurophysiology is a kind of neuroscience", "pln": ["(: cnet_isa_f0b338e171 (IsA neurophysiology neuroscience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "neurophysiology is a kind of physiology", "pln": ["(: cnet_isa_093a8b4a3d (IsA neurophysiology physiology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neuropile is a kind of nervous tissue", "pln": ["(: cnet_isa_ae9d6793c7 (IsA neuropile nervous_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neuroplasty is a kind of plastic surgery", "pln": ["(: cnet_isa_af28e9edef (IsA neuroplasty plastic_surgery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neuropsychiatry is a kind of medicine", "pln": ["(: cnet_isa_7a3a351e18 (IsA neuropsychiatry medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neuroptera is a kind of animal order", "pln": ["(: cnet_isa_5cf3ecf118 (IsA neuroptera animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neuropteron is a kind of insect", "pln": ["(: cnet_isa_5cbd894187 (IsA neuropteron insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurosarcoma is a kind of sarcoma", "pln": ["(: cnet_isa_bcccf61ceb (IsA neurosarcoma sarcoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neuroscience is a kind of neurobiology", "pln": ["(: cnet_isa_d665b22e3c (IsA neuroscience neurobiology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neuroscientist is a kind of neurobiologist", "pln": ["(: cnet_isa_b90e633aa5 (IsA neuroscientist neurobiologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurosis is a kind of mental imbalance", "pln": ["(: cnet_isa_5a6d428cd8 (IsA neurosis mental_imbalance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurosis is a kind of mental disorder", "pln": ["(: cnet_isa_f74d5f90e5 (IsA neurosis mental_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurospora is a kind of fungus genus", "pln": ["(: cnet_isa_8751730607 (IsA neurospora fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurosurgeon is a kind of surgeon", "pln": ["(: cnet_isa_36fbd7702a (IsA neurosurgeon surgeon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurosurgery is a kind of operation", "pln": ["(: cnet_isa_1840e4505f (IsA neurosurgery operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurosyphilis is a kind of syphilis", "pln": ["(: cnet_isa_724e36c3a1 (IsA neurosyphilis syphilis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurotic is a kind of sick person", "pln": ["(: cnet_isa_fd3cba2e16 (IsA neurotic sick_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurotic depression is a kind of depressive disorder", "pln": ["(: cnet_isa_1eebc3c505 (IsA neurotic_depression depressive_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurotoxin is a kind of toxin", "pln": ["(: cnet_isa_38bdad3d41 (IsA neurotoxin toxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurotransmitter is a kind of neurochemical", "pln": ["(: cnet_isa_f3a91c3de0 (IsA neurotransmitter neurochemical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neurotrichus is a kind of mammal genus", "pln": ["(: cnet_isa_05004bead4 (IsA neurotrichus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "neurotropism is a kind of tropism", "pln": ["(: cnet_isa_8186350690 (IsA neurotropism tropism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neuter is a kind of gender", "pln": ["(: cnet_isa_a7980fe302 (IsA neuter gender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neutering is a kind of sterilization", "pln": ["(: cnet_isa_d507e938b3 (IsA neutering sterilization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neutral is a kind of person", "pln": ["(: cnet_isa_528b34db56 (IsA neutral person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neutral spirit is a kind of alcohol", "pln": ["(: cnet_isa_7872677f47 (IsA neutral_spirit alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neutralism is a kind of foreign policy", "pln": ["(: cnet_isa_cd8d63ce78 (IsA neutralism foreign_policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neutralist is a kind of advocate", "pln": ["(: cnet_isa_cbdf988f20 (IsA neutralist advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neutrality is a kind of non engagement", "pln": ["(: cnet_isa_6442c86b7a (IsA neutrality non_engagement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neutrality is a kind of ph", "pln": ["(: cnet_isa_4d74b98d8c (IsA neutrality ph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neutralization is a kind of destruction", "pln": ["(: cnet_isa_1aec76746a (IsA neutralization destruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neutralization is a kind of nullification", "pln": ["(: cnet_isa_9fb3e30de9 (IsA neutralization nullification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neutralization is a kind of chemical reaction", "pln": ["(: cnet_isa_be06459c35 (IsA neutralization chemical_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neutralization fire is a kind of fire", "pln": ["(: cnet_isa_0243a56dfc (IsA neutralization_fire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neutrino is a kind of elementary particle", "pln": ["(: cnet_isa_f76af780d1 (IsA neutrino elementary_particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neutrino is a kind of lepton", "pln": ["(: cnet_isa_68b37c8b72 (IsA neutrino lepton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neutron is a kind of nucleon", "pln": ["(: cnet_isa_e7db1207ec (IsA neutron nucleon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neutron bomb is a kind of atom bomb", "pln": ["(: cnet_isa_963abda67b (IsA neutron_bomb atom_bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neutron flux is a kind of flux", "pln": ["(: cnet_isa_4496ab799a (IsA neutron_flux flux) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neutron radiation is a kind of corpuscular radiation", "pln": ["(: cnet_isa_89bb7f8b53 (IsA neutron_radiation corpuscular_radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neutron radiation is a kind of ionizing radiation", "pln": ["(: cnet_isa_7e5a839daf (IsA neutron_radiation ionizing_radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neutron star is a kind of star", "pln": ["(: cnet_isa_3eb999e3aa (IsA neutron_star star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neutropenia is a kind of leukopenia", "pln": ["(: cnet_isa_0a396f0fb9 (IsA neutropenia leukopenia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "neutrophil is a kind of leukocyte", "pln": ["(: cnet_isa_85b11e1eeb (IsA neutrophil leukocyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nevada is a kind of state", "pln": ["(: cnet_isa_3dc2392b50 (IsA nevada state) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nevadan is a kind of american", "pln": ["(: cnet_isa_81266cdc73 (IsA nevadan american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "neve is a kind of ice", "pln": ["(: cnet_isa_2d95e42961 (IsA neve ice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "never never land is a kind of imaginary place", "pln": ["(: cnet_isa_3fe263b56b (IsA never_never_land imaginary_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nevoid elephantiasis is a kind of elephantiasis", "pln": ["(: cnet_isa_7828256b0b (IsA nevoid_elephantiasis elephantiasis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nevoid elephantiasis is a kind of genetic disease", "pln": ["(: cnet_isa_0d8d40a895 (IsA nevoid_elephantiasis genetic_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new caledonia is a kind of island", "pln": ["(: cnet_isa_8d6476ff47 (IsA new_caledonia island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new caledonian pine is a kind of araucaria", "pln": ["(: cnet_isa_6c444f3741 (IsA new_caledonian_pine araucaria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new caledonian yew is a kind of yew", "pln": ["(: cnet_isa_a06845379b (IsA new_caledonian_yew yew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new criticism is a kind of criticism", "pln": ["(: cnet_isa_7c3fd866b0 (IsA new_criticism criticism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new deal is a kind of deal", "pln": ["(: cnet_isa_3ccfb4cffd (IsA new_deal deal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new deal is a kind of economic policy", "pln": ["(: cnet_isa_45787b3122 (IsA new_deal economic_policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new dealer is a kind of supporter", "pln": ["(: cnet_isa_389491e03d (IsA new_dealer supporter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new edition is a kind of publication", "pln": ["(: cnet_isa_330a1d1364 (IsA new_edition publication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new england aster is a kind of aster", "pln": ["(: cnet_isa_1e92e7e9f9 (IsA new_england_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new england clam chowder is a kind of clam chowder", "pln": ["(: cnet_isa_349a24e164 (IsA new_england_clam_chowder clam_chowder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new englander is a kind of american", "pln": ["(: cnet_isa_f9587dd68c (IsA new_englander american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new line is a kind of printing operation", "pln": ["(: cnet_isa_4d3dcb6e34 (IsA new_line printing_operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new look is a kind of vogue", "pln": ["(: cnet_isa_6eafab0178 (IsA new_look vogue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new mexican is a kind of american", "pln": ["(: cnet_isa_c38603adcb (IsA new_mexican american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new mexico is a kind of state", "pln": ["(: cnet_isa_9431872d76 (IsA new_mexico state) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new moon is a kind of phase of moon", "pln": ["(: cnet_isa_94b24cfe1a (IsA new_moon phase_of_moon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new norwegian is a kind of norwegian", "pln": ["(: cnet_isa_7c64f75c6f (IsA new_norwegian norwegian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new penny is a kind of penny", "pln": ["(: cnet_isa_8c956ea6bf (IsA new_penny penny) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new south wale is a kind of state of australia", "pln": ["(: cnet_isa_6853afa89f (IsA new_south_wale state_of_australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new testament is a kind of will", "pln": ["(: cnet_isa_42627211cf (IsA new_testament will) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new town is a kind of urban area", "pln": ["(: cnet_isa_65cc67cef2 (IsA new_town urban_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new wave is a kind of artistic movement", "pln": ["(: cnet_isa_7104777557 (IsA new_wave artistic_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new waver is a kind of film maker", "pln": ["(: cnet_isa_673ebad83b (IsA new_waver film_maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new world beaver is a kind of beaver", "pln": ["(: cnet_isa_c70f64d323 (IsA new_world_beaver beaver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new world blackbird is a kind of new world oriole", "pln": ["(: cnet_isa_497f4e8e5f (IsA new_world_blackbird new_world_oriole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "new world chat is a kind of new world warbler", "pln": ["(: cnet_isa_580e0efbee (IsA new_world_chat new_world_warbler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new world flycatcher is a kind of tyrannid", "pln": ["(: cnet_isa_5109dd8a35 (IsA new_world_flycatcher tyrannid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new world goldfinch is a kind of finch", "pln": ["(: cnet_isa_1023eec7c2 (IsA new_world_goldfinch finch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new world jay is a kind of jay", "pln": ["(: cnet_isa_368df0697d (IsA new_world_jay jay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new world least weasel is a kind of weasel", "pln": ["(: cnet_isa_8d301dc991 (IsA new_world_least_weasel weasel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new world monkey is a kind of monkey", "pln": ["(: cnet_isa_6e21b796ea (IsA new_world_monkey monkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new world mouse is a kind of rodent", "pln": ["(: cnet_isa_eb2341fdc4 (IsA new_world_mouse rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new world opah is a kind of soft finned fish", "pln": ["(: cnet_isa_747b36be9e (IsA new_world_opah soft_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new world oriole is a kind of oscine", "pln": ["(: cnet_isa_f01a47891b (IsA new_world_oriole oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new world porcupine is a kind of porcupine", "pln": ["(: cnet_isa_6607389155 (IsA new_world_porcupine porcupine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new world sparrow is a kind of finch", "pln": ["(: cnet_isa_4b54d92976 (IsA new_world_sparrow finch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new world tapir is a kind of tapir", "pln": ["(: cnet_isa_28f279215a (IsA new_world_tapir tapir) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new world vulture is a kind of vulture", "pln": ["(: cnet_isa_1ffc8f3cb2 (IsA new_world_vulture vulture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new world warbler is a kind of warbler", "pln": ["(: cnet_isa_768d58896f (IsA new_world_warbler warbler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new year s day is a kind of legal holiday", "pln": ["(: cnet_isa_e27b7a2895 (IsA new_year_s_day legal_holiday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new year s eve is a kind of day", "pln": ["(: cnet_isa_06a2782af3 (IsA new_year_s_eve day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "new year is a kind of year", "pln": ["(: cnet_isa_0518b2d389 (IsA new_year year) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new york is a kind of state", "pln": ["(: cnet_isa_752ebaf48b (IsA new_york state) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "new york fern is a kind of fern", "pln": ["(: cnet_isa_df79141788 (IsA new_york_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new yorker is a kind of american", "pln": ["(: cnet_isa_f2580c7f2e (IsA new_yorker american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new zealand is a kind of country", "pln": ["(: cnet_isa_0ac6e0fe2f (IsA new_zealand country) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new zealand beech is a kind of southern beech", "pln": ["(: cnet_isa_273f04ef91 (IsA new_zealand_beech southern_beech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new zealand cotton is a kind of natural fiber", "pln": ["(: cnet_isa_4d77c5b430 (IsA new_zealand_cotton natural_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new zealand daisybush is a kind of daisybush", "pln": ["(: cnet_isa_fe81832bbc (IsA new_zealand_daisybush daisybush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new zealand dollar is a kind of dollar", "pln": ["(: cnet_isa_8c2271a34b (IsA new_zealand_dollar dollar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new zealand spinach is a kind of herb", "pln": ["(: cnet_isa_1d8849bb82 (IsA new_zealand_spinach herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new zealand wren is a kind of oscine", "pln": ["(: cnet_isa_ebd58cd345 (IsA new_zealand_wren oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newari is a kind of himalayish", "pln": ["(: cnet_isa_adfdd17982 (IsA newari himalayish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newburg sauce is a kind of sauce", "pln": ["(: cnet_isa_1e090f4a69 (IsA newburg_sauce sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "newcastle disease is a kind of animal disease", "pln": ["(: cnet_isa_3614eae925 (IsA newcastle_disease animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newcomer is a kind of arrival", "pln": ["(: cnet_isa_e02ff1b868 (IsA newcomer arrival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newcomer is a kind of novice", "pln": ["(: cnet_isa_3f294dc77e (IsA newcomer novice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newel is a kind of column", "pln": ["(: cnet_isa_0c99171a20 (IsA newel column) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newel post is a kind of post", "pln": ["(: cnet_isa_c983e43d48 (IsA newel_post post) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "newfoundland is a kind of dog", "pln": ["(: cnet_isa_e3bfa1216a (IsA newfoundland dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newfoundland dwarf birch is a kind of birch", "pln": ["(: cnet_isa_8b21d95be9 (IsA newfoundland_dwarf_birch birch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newlywed is a kind of spouse", "pln": ["(: cnet_isa_0dee6ebfd0 (IsA newlywed spouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "newmarket is a kind of coat", "pln": ["(: cnet_isa_2fd71a0972 (IsA newmarket coat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "news item is a kind of item", "pln": ["(: cnet_isa_d754468c3b (IsA news_item item) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newness is a kind of age", "pln": ["(: cnet_isa_98a36f3b97 (IsA newness age) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new is a kind of information", "pln": ["(: cnet_isa_92c9de933b (IsA new information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new agency is a kind of agency", "pln": ["(: cnet_isa_f6e96a8bab (IsA new_agency agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new article is a kind of article", "pln": ["(: cnet_isa_9ef0392d22 (IsA new_article article) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new bulletin is a kind of bulletin", "pln": ["(: cnet_isa_8992954f95 (IsA new_bulletin bulletin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new event is a kind of happening", "pln": ["(: cnet_isa_727a88f630 (IsA new_event happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new item is a kind of item", "pln": ["(: cnet_isa_c16255b3b8 (IsA new_item item) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new magazine is a kind of magazine", "pln": ["(: cnet_isa_755df61ca0 (IsA new_magazine magazine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new photography is a kind of photojournalism", "pln": ["(: cnet_isa_85d7bd96a2 (IsA new_photography photojournalism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "new program is a kind of broadcast", "pln": ["(: cnet_isa_0aa52ab508 (IsA new_program broadcast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newsagent is a kind of shopkeeper", "pln": ["(: cnet_isa_92aab3d03e (IsA newsagent shopkeeper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newscast is a kind of broadcast", "pln": ["(: cnet_isa_1a6f12be64 (IsA newscast broadcast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newscast is a kind of new", "pln": ["(: cnet_isa_2bfaa93ee4 (IsA newscast new) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newscaster is a kind of announcer", "pln": ["(: cnet_isa_6d9bfd6111 (IsA newscaster announcer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "newsletter is a kind of report", "pln": ["(: cnet_isa_47270c673e (IsA newsletter report) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newspaper is a kind of media", "pln": ["(: cnet_isa_c5973ed975 (IsA newspaper media) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newspaper is a kind of product", "pln": ["(: cnet_isa_1cbe997295 (IsA newspaper product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newspaper is a kind of press", "pln": ["(: cnet_isa_d1cad371c5 (IsA newspaper press) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newspaper is a kind of publisher", "pln": ["(: cnet_isa_38e46c2dd7 (IsA newspaper publisher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newspaper is a kind of paper", "pln": ["(: cnet_isa_78e5d64849 (IsA newspaper paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newspaper ad is a kind of ad", "pln": ["(: cnet_isa_6331cd6831 (IsA newspaper_ad ad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newspaper columnist is a kind of columnist", "pln": ["(: cnet_isa_be3aea077d (IsA newspaper_columnist columnist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "newspaper critic is a kind of critic", "pln": ["(: cnet_isa_99d27ca08f (IsA newspaper_critic critic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "newspaper critic is a kind of newspaper columnist", "pln": ["(: cnet_isa_25293e9617 (IsA newspaper_critic newspaper_columnist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "newspaper editor is a kind of editor", "pln": ["(: cnet_isa_e508ba5db3 (IsA newspaper_editor editor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newspapering is a kind of journalism", "pln": ["(: cnet_isa_8726c22cff (IsA newspapering journalism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newspaper is a kind of document", "pln": ["(: cnet_isa_55abe4c232 (IsA newspaper document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "newspeak is a kind of fabrication", "pln": ["(: cnet_isa_c5c062242c (IsA newspeak fabrication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "newsreader is a kind of newscaster", "pln": ["(: cnet_isa_6b03534ba2 (IsA newsreader newscaster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newsreel is a kind of short subject", "pln": ["(: cnet_isa_1c91e06be9 (IsA newsreel short_subject) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newsroom is a kind of office", "pln": ["(: cnet_isa_3fdb91efc3 (IsA newsroom office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newsroom is a kind of reading room", "pln": ["(: cnet_isa_192cf79885 (IsA newsroom reading_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newsroom is a kind of staff", "pln": ["(: cnet_isa_1dbeb05ae6 (IsA newsroom staff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newsstand is a kind of stall", "pln": ["(: cnet_isa_5249b10d7f (IsA newsstand stall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "newsweek is a kind of magazine", "pln": ["(: cnet_isa_e807882c53 (IsA newsweek magazine) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newswoman is a kind of reporter", "pln": ["(: cnet_isa_2d7e34886b (IsA newswoman reporter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newsworthiness is a kind of interest", "pln": ["(: cnet_isa_496d5c7f11 (IsA newsworthiness interest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newt is a kind of salamander", "pln": ["(: cnet_isa_540dad5610 (IsA newt salamander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newton s law of motion is a kind of law", "pln": ["(: cnet_isa_b499b20695 (IsA newton_s_law_of_motion law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newton is a kind of force unit", "pln": ["(: cnet_isa_46c9b6e8ec (IsA newton force_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newtonian is a kind of follower", "pln": ["(: cnet_isa_ad190826c7 (IsA newtonian follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newtonian telescope is a kind of reflecting telescope", "pln": ["(: cnet_isa_cfd2e35ed7 (IsA newtonian_telescope reflecting_telescope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "newtown wonder is a kind of cooking apple", "pln": ["(: cnet_isa_2f6d658adc (IsA newtown_wonder cooking_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "next friend is a kind of agent", "pln": ["(: cnet_isa_459c0db17c (IsA next_friend agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "next of kin is a kind of relative", "pln": ["(: cnet_isa_6a61235a03 (IsA next_of_kin relative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nexus is a kind of sery", "pln": ["(: cnet_isa_a8d74482b6 (IsA nexus sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nez perce is a kind of shahaptian", "pln": ["(: cnet_isa_c4738afafc (IsA nez_perce shahaptian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nez perce is a kind of sahaptino", "pln": ["(: cnet_isa_691dd8d412 (IsA nez_perce sahaptino) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nganasan is a kind of samoyedic", "pln": ["(: cnet_isa_8320869987 (IsA nganasan samoyedic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nganasan is a kind of russian", "pln": ["(: cnet_isa_e141282279 (IsA nganasan russian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ngultrum is a kind of bhutanese monetary unit", "pln": ["(: cnet_isa_637f4af6f4 (IsA ngultrum bhutanese_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nguni is a kind of bantu", "pln": ["(: cnet_isa_bf42a0b4c8 (IsA nguni bantu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ngwee is a kind of zambian monetary unit", "pln": ["(: cnet_isa_e553af9771 (IsA ngwee zambian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ni hard is a kind of alloy iron", "pln": ["(: cnet_isa_22e1f5ceff (IsA ni_hard alloy_iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ni resist is a kind of alloy iron", "pln": ["(: cnet_isa_7f6911da5f (IsA ni_resist alloy_iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "niacin is a kind of b complex vitamin", "pln": ["(: cnet_isa_2396120347 (IsA niacin b_complex_vitamin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nib is a kind of point", "pln": ["(: cnet_isa_38cc1c205c (IsA nib point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nibble is a kind of bite", "pln": ["(: cnet_isa_88b30b36e2 (IsA nibble bite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nibbler is a kind of biter", "pln": ["(: cnet_isa_6021afdd88 (IsA nibbler biter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nibelung is a kind of gnome", "pln": ["(: cnet_isa_f319bca3de (IsA nibelung gnome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "niblick is a kind of iron", "pln": ["(: cnet_isa_bd568603ea (IsA niblick iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nicad is a kind of storage battery", "pln": ["(: cnet_isa_b49a83deae (IsA nicad storage_battery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nicandra is a kind of asterid dicot genus", "pln": ["(: cnet_isa_5ca889c398 (IsA nicandra asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nicaraguan is a kind of central american", "pln": ["(: cnet_isa_d3c93e1078 (IsA nicaraguan central_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nicaraguan monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_a9a174e530 (IsA nicaraguan_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nicene creed is a kind of religious doctrine", "pln": ["(: cnet_isa_fd1deb4426 (IsA nicene_creed religious_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "niceness is a kind of pleasantness", "pln": ["(: cnet_isa_120cfbca60 (IsA niceness pleasantness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "niche is a kind of condition", "pln": ["(: cnet_isa_195579893c (IsA niche condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "niche is a kind of place", "pln": ["(: cnet_isa_bc68aed39f (IsA niche place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nick is a kind of prison", "pln": ["(: cnet_isa_b5e3af8367 (IsA nick prison) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nickel is a kind of u s", "pln": ["(: cnet_isa_a3cce71419 (IsA nickel u_s) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nickel is a kind of coin", "pln": ["(: cnet_isa_692100f328 (IsA nickel coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nickel is a kind of fiver", "pln": ["(: cnet_isa_1444df197a (IsA nickel fiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nickel is a kind of metallic element", "pln": ["(: cnet_isa_95c2ba0936 (IsA nickel metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nickel base alloy is a kind of alloy", "pln": ["(: cnet_isa_1659983837 (IsA nickel_base_alloy alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nickel bronze is a kind of bronze", "pln": ["(: cnet_isa_ddce85f829 (IsA nickel_bronze bronze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nickel iron battery is a kind of storage battery", "pln": ["(: cnet_isa_a9b21329e1 (IsA nickel_iron_battery storage_battery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nickel silver is a kind of alloy", "pln": ["(: cnet_isa_ad1a3e9932 (IsA nickel_silver alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nickel steel is a kind of alloy steel", "pln": ["(: cnet_isa_883fd4a12c (IsA nickel_steel alloy_steel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nickname is a kind of appellation", "pln": ["(: cnet_isa_ad7843ca06 (IsA nickname appellation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nickname is a kind of name", "pln": ["(: cnet_isa_d5ed368ad7 (IsA nickname name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nickname for maryland is a kind of free state or old line state", "pln": ["(: cnet_isa_f54e457b19 (IsA nickname_for_maryland free_state_or_old_line_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nickname for massachusett is a kind of bay state or old colony state", "pln": ["(: cnet_isa_327959b94e (IsA nickname_for_massachusett bay_state_or_old_colony_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nickname for tennessee is a kind of volunteer state", "pln": ["(: cnet_isa_89f0bc3d72 (IsA nickname_for_tennessee volunteer_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nicol prism is a kind of optical device", "pln": ["(: cnet_isa_3f0eb65c5b (IsA nicol_prism optical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nicotiana is a kind of asterid dicot genus", "pln": ["(: cnet_isa_56da64abed (IsA nicotiana asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nicotinamide adenine dinucleotide is a kind of coenzyme", "pln": ["(: cnet_isa_874558726d (IsA nicotinamide_adenine_dinucleotide coenzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nicotinamide adenine dinucleotide phosphate is a kind of coenzyme", "pln": ["(: cnet_isa_541407a82a (IsA nicotinamide_adenine_dinucleotide_phosphate coenzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nicotine is a kind of alkaloid", "pln": ["(: cnet_isa_b8c83c867a (IsA nicotine alkaloid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nicotine is a kind of plant toxin", "pln": ["(: cnet_isa_c447dc6c81 (IsA nicotine plant_toxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nicotine is a kind of vasoconstrictor", "pln": ["(: cnet_isa_5898e78a23 (IsA nicotine vasoconstrictor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nicotine addiction is a kind of drug addiction", "pln": ["(: cnet_isa_cd3816d091 (IsA nicotine_addiction drug_addiction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nicotine poisoning is a kind of poisoning", "pln": ["(: cnet_isa_4b18b5909d (IsA nicotine_poisoning poisoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nictitating membrane is a kind of protective fold", "pln": ["(: cnet_isa_5629d7ebf2 (IsA nictitating_membrane protective_fold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nidularia is a kind of fungus genus", "pln": ["(: cnet_isa_d03a0aeb7a (IsA nidularia fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nidulariaceae is a kind of fungus family", "pln": ["(: cnet_isa_70254e0b08 (IsA nidulariaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nidulariale is a kind of fungus order", "pln": ["(: cnet_isa_565bb2e014 (IsA nidulariale fungus_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nidus is a kind of nest", "pln": ["(: cnet_isa_bdcbb44ebf (IsA nidus nest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "niece is a kind of nibling", "pln": ["(: cnet_isa_1f1e20ad8a (IsA niece nibling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "niece is a kind of kinswoman", "pln": ["(: cnet_isa_bdb7df4979 (IsA niece kinswoman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "niemann pick disease is a kind of autosomal recessive disease", "pln": ["(: cnet_isa_aed8ba28bc (IsA niemann_pick_disease autosomal_recessive_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "niemann pick disease is a kind of inborn error of metabolism", "pln": ["(: cnet_isa_baa0a03128 (IsA niemann_pick_disease inborn_error_of_metabolism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "niemann pick disease is a kind of lipidosis", "pln": ["(: cnet_isa_c44f8f6192 (IsA niemann_pick_disease lipidosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nietzsche is a kind of german", "pln": ["(: cnet_isa_a28ddac00a (IsA nietzsche german) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nietzsche is a kind of preacher", "pln": ["(: cnet_isa_064cf0d72b (IsA nietzsche preacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "niff is a kind of malodor", "pln": ["(: cnet_isa_af7eff5d63 (IsA niff malodor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nigella is a kind of flower", "pln": ["(: cnet_isa_a6febbf299 (IsA nigella flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "niger congo is a kind of niger kordofanian", "pln": ["(: cnet_isa_286ab986d8 (IsA niger_congo niger_kordofanian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "niger franc is a kind of franc", "pln": ["(: cnet_isa_f0328cfa11 (IsA niger_franc franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "niger kordofanian is a kind of natural language", "pln": ["(: cnet_isa_d631026073 (IsA niger_kordofanian natural_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nigerian is a kind of african", "pln": ["(: cnet_isa_dab42dc2a3 (IsA nigerian african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nigerian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_108d5333c4 (IsA nigerian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nigerien is a kind of african", "pln": ["(: cnet_isa_3eba6c8878 (IsA nigerien african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "niggard is a kind of hoarder", "pln": ["(: cnet_isa_f4645d4834 (IsA niggard hoarder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "night is a kind of colder than day", "pln": ["(: cnet_isa_0eedc9cafa (IsA night colder_than_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "night is a kind of dark", "pln": ["(: cnet_isa_4cf0e691e9 (IsA night dark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "night is a kind of time period", "pln": ["(: cnet_isa_e6e7e7c468 (IsA night time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "night is a kind of time unit", "pln": ["(: cnet_isa_df6e7faf35 (IsA night time_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "night is a kind of twilight", "pln": ["(: cnet_isa_153c7ff066 (IsA night twilight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "night bell is a kind of doorbell", "pln": ["(: cnet_isa_287c88965f (IsA night_bell doorbell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "night bird is a kind of bird", "pln": ["(: cnet_isa_1dc15f5bff (IsA night_bird bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "night blooming cereus is a kind of cactus", "pln": ["(: cnet_isa_51b7ef84a8 (IsA night_blooming_cereus cactus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "night court is a kind of criminal court", "pln": ["(: cnet_isa_6b66f9484a (IsA night_court criminal_court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "night game is a kind of outdoor game", "pln": ["(: cnet_isa_6c1a84e7ed (IsA night_game outdoor_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "night heron is a kind of heron", "pln": ["(: cnet_isa_4f2cec9b7d (IsA night_heron heron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "night jasmine is a kind of shrub", "pln": ["(: cnet_isa_e81985b33f (IsA night_jasmine shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "night latch is a kind of doorlock", "pln": ["(: cnet_isa_fccf1d4005 (IsA night_latch doorlock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "night letter is a kind of telegram", "pln": ["(: cnet_isa_75e82fe340 (IsA night_letter telegram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "night life is a kind of diversion", "pln": ["(: cnet_isa_c56f8ff08c (IsA night_life diversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "night light is a kind of light", "pln": ["(: cnet_isa_9fe22a103d (IsA night_light light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "night line is a kind of fishing line", "pln": ["(: cnet_isa_e2b82d9fa7 (IsA night_line fishing_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "night lizard is a kind of lizard", "pln": ["(: cnet_isa_2f70dd88c5 (IsA night_lizard lizard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "night owl is a kind of individualist", "pln": ["(: cnet_isa_677eb22439 (IsA night_owl individualist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "night porter is a kind of doorkeeper", "pln": ["(: cnet_isa_f82d5d8f59 (IsA night_porter doorkeeper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "night raven is a kind of night bird", "pln": ["(: cnet_isa_1f3f9eb26d (IsA night_raven night_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "night rider is a kind of attacker", "pln": ["(: cnet_isa_132592c05e (IsA night_rider attacker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "night school is a kind of school", "pln": ["(: cnet_isa_c684f6b812 (IsA night_school school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "night shift is a kind of shift", "pln": ["(: cnet_isa_ad4a23f143 (IsA night_shift shift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "night snake is a kind of colubrid snake", "pln": ["(: cnet_isa_8ff9782a26 (IsA night_snake colubrid_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "night soil is a kind of manure", "pln": ["(: cnet_isa_8aec175759 (IsA night_soil manure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "night stop is a kind of stop", "pln": ["(: cnet_isa_2d2cf04123 (IsA night_stop stop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "night terror is a kind of drama", "pln": ["(: cnet_isa_81deb245d7 (IsA night_terror drama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "night vision is a kind of sight", "pln": ["(: cnet_isa_b63d6f702d (IsA night_vision sight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "night watchman is a kind of watchman", "pln": ["(: cnet_isa_29b32b566b (IsA night_watchman watchman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nightcap is a kind of game", "pln": ["(: cnet_isa_d3bb44364b (IsA nightcap game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nightcap is a kind of cap", "pln": ["(: cnet_isa_a7ebea4439 (IsA nightcap cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nightcap is a kind of drink", "pln": ["(: cnet_isa_94e58f5171 (IsA nightcap drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nightclothe is a kind of clothing", "pln": ["(: cnet_isa_52762acf6a (IsA nightclothe clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nightgown is a kind of lingerie", "pln": ["(: cnet_isa_be5fb091c9 (IsA nightgown lingerie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nightgown is a kind of nightclothe", "pln": ["(: cnet_isa_64ed1873c0 (IsA nightgown nightclothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nighthawk is a kind of goatsucker", "pln": ["(: cnet_isa_36048e1da6 (IsA nighthawk goatsucker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nightingale is a kind of bird", "pln": ["(: cnet_isa_4879f43602 (IsA nightingale bird) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nightingale is a kind of thrush", "pln": ["(: cnet_isa_20e78dc914 (IsA nightingale thrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nightlife is a kind of entertainment", "pln": ["(: cnet_isa_aef2facaa0 (IsA nightlife entertainment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nightmare is a kind of scary dream", "pln": ["(: cnet_isa_3f7463ce6f (IsA nightmare scary_dream) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nightmare is a kind of dream", "pln": ["(: cnet_isa_b6267cb56c (IsA nightmare dream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nightmare is a kind of situation", "pln": ["(: cnet_isa_d514f8761a (IsA nightmare situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nightshade is a kind of woody plant", "pln": ["(: cnet_isa_5a16b91cdc (IsA nightshade woody_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nightshirt is a kind of nightclothe", "pln": ["(: cnet_isa_d655a50b24 (IsA nightshirt nightclothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nightwork is a kind of work", "pln": ["(: cnet_isa_219d258521 (IsA nightwork work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nigroporus is a kind of fungus genus", "pln": ["(: cnet_isa_c507e4b80a (IsA nigroporus fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nigroporus vinosus is a kind of polypore", "pln": ["(: cnet_isa_c4343c6de0 (IsA nigroporus_vinosus polypore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nihil is a kind of nothing", "pln": ["(: cnet_isa_db5757979f (IsA nihil nothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nihil obstat is a kind of sanction", "pln": ["(: cnet_isa_98973f2a06 (IsA nihil_obstat sanction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nihilism is a kind of doctrine", "pln": ["(: cnet_isa_4ee81658e3 (IsA nihilism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nihilism is a kind of anarchy", "pln": ["(: cnet_isa_ba9f012e32 (IsA nihilism anarchy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nihilist is a kind of nonreligious person", "pln": ["(: cnet_isa_7b89f896c3 (IsA nihilist nonreligious_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nihilistic delusion is a kind of delusion", "pln": ["(: cnet_isa_da47b71e24 (IsA nihilistic_delusion delusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nike is a kind of sneak", "pln": ["(: cnet_isa_d0ac03684f (IsA nike sneak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nilgai is a kind of antelope", "pln": ["(: cnet_isa_d6f794216e (IsA nilgai antelope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nilo saharan is a kind of natural language", "pln": ["(: cnet_isa_4b45965fbe (IsA nilo_saharan natural_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nilotic is a kind of chari nile", "pln": ["(: cnet_isa_cd65be3164 (IsA nilotic chari_nile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nim is a kind of table game", "pln": ["(: cnet_isa_290896af82 (IsA nim table_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nimblewill is a kind of grass", "pln": ["(: cnet_isa_0b4511a1f0 (IsA nimblewill grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nimbus is a kind of cloud", "pln": ["(: cnet_isa_c1f1ea3606 (IsA nimbus cloud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nimby is a kind of dissenter", "pln": ["(: cnet_isa_02e78979a3 (IsA nimby dissenter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nimravus is a kind of mammal genus", "pln": ["(: cnet_isa_efdfaf2bf3 (IsA nimravus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nincompoop is a kind of simpleton", "pln": ["(: cnet_isa_6b18a3ad79 (IsA nincompoop simpleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nine is a kind of digit", "pln": ["(: cnet_isa_a0576de0c2 (IsA nine digit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nine spot is a kind of spot", "pln": ["(: cnet_isa_854576541b (IsA nine_spot spot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ninepence is a kind of coin", "pln": ["(: cnet_isa_30652616f8 (IsA ninepence coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ninepin is a kind of bowling pin", "pln": ["(: cnet_isa_c28653b4a9 (IsA ninepin bowling_pin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ninepin ball is a kind of ball", "pln": ["(: cnet_isa_706ed54473 (IsA ninepin_ball ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ninepin is a kind of bowling", "pln": ["(: cnet_isa_4128288316 (IsA ninepin bowling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nineteen is a kind of large integer", "pln": ["(: cnet_isa_6adf003467 (IsA nineteen large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nineteenth is a kind of rank", "pln": ["(: cnet_isa_82bc895adb (IsA nineteenth rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ninety is a kind of decade", "pln": ["(: cnet_isa_7af930f699 (IsA ninety decade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ninety is a kind of time of life", "pln": ["(: cnet_isa_1eed72ffaa (IsA ninety time_of_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ninetieth is a kind of rank", "pln": ["(: cnet_isa_3fd1f6bb3a (IsA ninetieth rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ninety is a kind of large integer", "pln": ["(: cnet_isa_581dffdec9 (IsA ninety large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ninja is a kind of class", "pln": ["(: cnet_isa_8213a2e652 (IsA ninja class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ninja is a kind of mercenary", "pln": ["(: cnet_isa_a42fe244c2 (IsA ninja mercenary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ninjutsu is a kind of martial art", "pln": ["(: cnet_isa_8770611ed1 (IsA ninjutsu martial_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ninon is a kind of fabric", "pln": ["(: cnet_isa_a4ce483780 (IsA ninon fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ninth is a kind of rank", "pln": ["(: cnet_isa_84f71e35b2 (IsA ninth rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ninth month of year is a kind of september", "pln": ["(: cnet_isa_a033c1e45e (IsA ninth_month_of_year september) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "niobite is a kind of mineral", "pln": ["(: cnet_isa_776723602f (IsA niobite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "niobium is a kind of metallic element", "pln": ["(: cnet_isa_96e084b88c (IsA niobium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nip is a kind of bite", "pln": ["(: cnet_isa_0b26745034 (IsA nip bite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nip is a kind of clip", "pln": ["(: cnet_isa_6f079707c5 (IsA nip clip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nip is a kind of swallow", "pln": ["(: cnet_isa_bd25f7bd54 (IsA nip swallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nip is a kind of spiciness", "pln": ["(: cnet_isa_5496c8cc89 (IsA nip spiciness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nip is a kind of nipponese", "pln": ["(: cnet_isa_a442f517f3 (IsA nip nipponese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nip is a kind of small indefinite quantity", "pln": ["(: cnet_isa_01854745c6 (IsA nip small_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nipa is a kind of alcohol", "pln": ["(: cnet_isa_1a1a2bc4ce (IsA nipa alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nipa is a kind of monocot genus", "pln": ["(: cnet_isa_c54f45a9c8 (IsA nipa monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nipa palm is a kind of palm", "pln": ["(: cnet_isa_a0a37d2862 (IsA nipa_palm palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nipple is a kind of cap", "pln": ["(: cnet_isa_b3ad406b40 (IsA nipple cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nipple is a kind of reproductive organ", "pln": ["(: cnet_isa_1ff0ead277 (IsA nipple reproductive_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nipple shield is a kind of shield", "pln": ["(: cnet_isa_cfa575b177 (IsA nipple_shield shield) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nipponese is a kind of asiatic", "pln": ["(: cnet_isa_953a67797a (IsA nipponese asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "niqaabi is a kind of muslimah", "pln": ["(: cnet_isa_7968507cae (IsA niqaabi muslimah) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "niqab is a kind of face veil", "pln": ["(: cnet_isa_12570ab3cf (IsA niqab face_veil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nirvana is a kind of band", "pln": ["(: cnet_isa_5e01528dc7 (IsA nirvana band) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nirvana is a kind of blessedness", "pln": ["(: cnet_isa_cace4ed079 (IsA nirvana blessedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nis master server is a kind of nis server", "pln": ["(: cnet_isa_8e4668d31a (IsA nis_master_server nis_server) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nis server is a kind of server", "pln": ["(: cnet_isa_eddda01a87 (IsA nis_server server) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nis slave server is a kind of nis server", "pln": ["(: cnet_isa_4ac3bca188 (IsA nis_slave_server nis_server) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nisan is a kind of jewish calendar month", "pln": ["(: cnet_isa_f7b9c0045b (IsA nisan jewish_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nisei is a kind of american", "pln": ["(: cnet_isa_03fc2cfa64 (IsA nisei american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nissen hut is a kind of hut", "pln": ["(: cnet_isa_4e6d13b5a3 (IsA nissen_hut hut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nit is a kind of egg", "pln": ["(: cnet_isa_09d503c27c (IsA nit egg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nit is a kind of luminance unit", "pln": ["(: cnet_isa_ed2c8d67fd (IsA nit luminance_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitella is a kind of protoctist genus", "pln": ["(: cnet_isa_015eb7c0c2 (IsA nitella protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitpicker is a kind of critic", "pln": ["(: cnet_isa_ccd71a4817 (IsA nitpicker critic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitramine is a kind of explosive", "pln": ["(: cnet_isa_fb7d0166e9 (IsA nitramine explosive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitrate is a kind of compound", "pln": ["(: cnet_isa_11afea164d (IsA nitrate compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitrate bacterium is a kind of nitrobacterium", "pln": ["(: cnet_isa_92cf344379 (IsA nitrate_bacterium nitrobacterium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitrazepam is a kind of benzodiazepine", "pln": ["(: cnet_isa_6daac00947 (IsA nitrazepam benzodiazepine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitric acid is a kind of acid", "pln": ["(: cnet_isa_54bb4e1870 (IsA nitric_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitric bacteria is a kind of eubacteria", "pln": ["(: cnet_isa_12b22cabcb (IsA nitric_bacteria eubacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitric oxide is a kind of gas", "pln": ["(: cnet_isa_cd6125920f (IsA nitric_oxide gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitride is a kind of compound", "pln": ["(: cnet_isa_efa487838f (IsA nitride compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitrification is a kind of oxidation", "pln": ["(: cnet_isa_5ac0254d37 (IsA nitrification oxidation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitrification is a kind of chemical process", "pln": ["(: cnet_isa_449f75ba7d (IsA nitrification chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitrile is a kind of organic compound", "pln": ["(: cnet_isa_84b40131e8 (IsA nitrile organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitrite is a kind of group", "pln": ["(: cnet_isa_4c70ec3e05 (IsA nitrite group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nitrite bacterium is a kind of nitrobacterium", "pln": ["(: cnet_isa_5e269859f5 (IsA nitrite_bacterium nitrobacterium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitro group is a kind of group", "pln": ["(: cnet_isa_06c8540818 (IsA nitro_group group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitrobacter is a kind of bacteria genus", "pln": ["(: cnet_isa_f35f83e64b (IsA nitrobacter bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitrobacteriaceae is a kind of bacteria genus", "pln": ["(: cnet_isa_f508237c83 (IsA nitrobacteriaceae bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitrobacterium is a kind of bacteria", "pln": ["(: cnet_isa_ac530cf92e (IsA nitrobacterium bacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitrobenzene is a kind of organic compound", "pln": ["(: cnet_isa_304af758a7 (IsA nitrobenzene organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitrocalcite is a kind of mineral", "pln": ["(: cnet_isa_5d98b7ef82 (IsA nitrocalcite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitrochloromethane is a kind of tear gas", "pln": ["(: cnet_isa_0159f9ee09 (IsA nitrochloromethane tear_gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitrofuran is a kind of furan", "pln": ["(: cnet_isa_625f03e1ce (IsA nitrofuran furan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitrogen is a kind of chemical element", "pln": ["(: cnet_isa_5454256ba8 (IsA nitrogen chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nitrogen is a kind of gas", "pln": ["(: cnet_isa_e93cda6713 (IsA nitrogen gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitrogen balance is a kind of balance", "pln": ["(: cnet_isa_98678c9157 (IsA nitrogen_balance balance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitrogen cycle is a kind of organic process", "pln": ["(: cnet_isa_e1a46467ef (IsA nitrogen_cycle organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitrogen dioxide is a kind of dioxide", "pln": ["(: cnet_isa_aee645b3f9 (IsA nitrogen_dioxide dioxide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitrogen dioxide is a kind of gas", "pln": ["(: cnet_isa_8ba9dea458 (IsA nitrogen_dioxide gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitrogen fixation is a kind of organic process", "pln": ["(: cnet_isa_1bd935160b (IsA nitrogen_fixation organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nitrogen mustard is a kind of compound", "pln": ["(: cnet_isa_684a80193b (IsA nitrogen_mustard compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitrogen narcosis is a kind of narcosis", "pln": ["(: cnet_isa_5781348878 (IsA nitrogen_narcosis narcosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitrogen oxide is a kind of oxide", "pln": ["(: cnet_isa_6e57a1d37a (IsA nitrogen_oxide oxide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitrogen oxide is a kind of pollutant", "pln": ["(: cnet_isa_d2065039db (IsA nitrogen_oxide pollutant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitrogen trichloride is a kind of trichloride", "pln": ["(: cnet_isa_1f441de5e2 (IsA nitrogen_trichloride trichloride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitrogenase is a kind of enzyme", "pln": ["(: cnet_isa_0fb8e63f96 (IsA nitrogenase enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitroglycerin is a kind of nitrate", "pln": ["(: cnet_isa_d946984b92 (IsA nitroglycerin nitrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitroglycerin is a kind of vasodilator", "pln": ["(: cnet_isa_ad0eae1e1a (IsA nitroglycerin vasodilator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitrosobacteria is a kind of eubacteria", "pln": ["(: cnet_isa_a9b41f5c8d (IsA nitrosobacteria eubacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitrosomona is a kind of bacteria genus", "pln": ["(: cnet_isa_e60742ba11 (IsA nitrosomona bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitrous acid is a kind of acid", "pln": ["(: cnet_isa_d91d6f7e02 (IsA nitrous_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitrous oxide is a kind of inhalation anesthetic", "pln": ["(: cnet_isa_281ab3c7ac (IsA nitrous_oxide inhalation_anesthetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nitta tree is a kind of tree", "pln": ["(: cnet_isa_dc203ac088 (IsA nitta_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nivose is a kind of revolutionary calendar month", "pln": ["(: cnet_isa_e3a9acdfbb (IsA nivose revolutionary_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "no is a kind of negative", "pln": ["(: cnet_isa_76ccd0290d (IsA no negative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "no ball is a kind of bowling", "pln": ["(: cnet_isa_15f334bc56 (IsA no_ball bowling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "no brainer is a kind of undertaking", "pln": ["(: cnet_isa_fe66eea504 (IsA no_brainer undertaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "no fault insurance is a kind of automobile insurance", "pln": ["(: cnet_isa_4fbc10ad53 (IsA no_fault_insurance automobile_insurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "no go area is a kind of area", "pln": ["(: cnet_isa_61b43f98c2 (IsA no_go_area area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "no goal is a kind of goal", "pln": ["(: cnet_isa_f99f5ae229 (IsA no_goal goal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "no hit game is a kind of baseball", "pln": ["(: cnet_isa_7451b0e155 (IsA no_hit_game baseball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "no man s land is a kind of area", "pln": ["(: cnet_isa_7a04e4253f (IsA no_man_s_land area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "no man s land is a kind of land", "pln": ["(: cnet_isa_9073cc7718 (IsA no_man_s_land land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "no man is a kind of island", "pln": ["(: cnet_isa_708ef05fc9 (IsA no_man island) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "no par value stock is a kind of stock", "pln": ["(: cnet_isa_4d935e7b1f (IsA no_par_value_stock stock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "no parking zone is a kind of space", "pln": ["(: cnet_isa_4f58a461e8 (IsA no_parking_zone space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "no show is a kind of guest", "pln": ["(: cnet_isa_c3054d75e3 (IsA no_show guest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "no show is a kind of wrongdoer", "pln": ["(: cnet_isa_25cfe5f759 (IsA no_show wrongdoer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "no trump is a kind of contract", "pln": ["(: cnet_isa_23e5576543 (IsA no_trump contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "no win situation is a kind of situation", "pln": ["(: cnet_isa_f6d8949464 (IsA no_win_situation situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noah and flood is a kind of flood", "pln": ["(: cnet_isa_fdc0ee8d27 (IsA noah_and_flood flood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nobel laureate is a kind of laureate", "pln": ["(: cnet_isa_e7cb445928 (IsA nobel_laureate laureate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nobel prize is a kind of award", "pln": ["(: cnet_isa_483c7248ef (IsA nobel_prize award) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nobelium is a kind of chemical element", "pln": ["(: cnet_isa_372b8e6080 (IsA nobelium chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nobility is a kind of honorableness", "pln": ["(: cnet_isa_a0cd1bc915 (IsA nobility honorableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nobility is a kind of elite", "pln": ["(: cnet_isa_17609b84c3 (IsA nobility elite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nobility is a kind of status", "pln": ["(: cnet_isa_ed55f2767c (IsA nobility status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noble cane is a kind of sugarcane", "pln": ["(: cnet_isa_6ac863a54b (IsA noble_cane sugarcane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noble gas is a kind of chemical element", "pln": ["(: cnet_isa_b5142a9ac0 (IsA noble_gas chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noble gas is a kind of gas", "pln": ["(: cnet_isa_52f402c6d6 (IsA noble_gas gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noble metal is a kind of metallic element", "pln": ["(: cnet_isa_04ba8c4b0a (IsA noble_metal metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nobleman is a kind of male aristocrat", "pln": ["(: cnet_isa_b5451716e5 (IsA nobleman male_aristocrat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noblesse is a kind of nobility", "pln": ["(: cnet_isa_ec2af039ae (IsA noblesse nobility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noblesse oblige is a kind of duty", "pln": ["(: cnet_isa_f0c4c9ffc5 (IsA noblesse_oblige duty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noblewoman is a kind of female aristocrat", "pln": ["(: cnet_isa_71061f0876 (IsA noblewoman female_aristocrat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noc is a kind of secret agent", "pln": ["(: cnet_isa_d7edb3d021 (IsA noc secret_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noctiluca is a kind of dinoflagellate", "pln": ["(: cnet_isa_4de6eb9dee (IsA noctiluca dinoflagellate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noctua is a kind of arthropod genus", "pln": ["(: cnet_isa_dc5602ca7f (IsA noctua arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noctuid moth is a kind of moth", "pln": ["(: cnet_isa_385ee74c52 (IsA noctuid_moth moth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noctuidae is a kind of arthropod family", "pln": ["(: cnet_isa_3c089748cd (IsA noctuidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nocturia is a kind of micturition", "pln": ["(: cnet_isa_e6d8407cd7 (IsA nocturia micturition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nocturnal emission is a kind of ejaculation", "pln": ["(: cnet_isa_1c5238c250 (IsA nocturnal_emission ejaculation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nocturne is a kind of musical composition", "pln": ["(: cnet_isa_26cb25ab28 (IsA nocturne musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nod is a kind of inclination", "pln": ["(: cnet_isa_113bbfafa6 (IsA nod inclination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nod is a kind of gesture", "pln": ["(: cnet_isa_26c8345c96 (IsA nod gesture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nodding groundsel is a kind of wildflower", "pln": ["(: cnet_isa_ed9479541f (IsA nodding_groundsel wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nodding onion is a kind of wild onion", "pln": ["(: cnet_isa_8072e92ec3 (IsA nodding_onion wild_onion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noddle is a kind of mind", "pln": ["(: cnet_isa_23cbf85b09 (IsA noddle mind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "node is a kind of celestial point", "pln": ["(: cnet_isa_70affddf40 (IsA node celestial_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "node is a kind of solid body substance", "pln": ["(: cnet_isa_b9336dc50b (IsA node solid_body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "node is a kind of computer", "pln": ["(: cnet_isa_b32ced30d7 (IsA node computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "node is a kind of point", "pln": ["(: cnet_isa_f4f5b22605 (IsA node point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "node is a kind of connection", "pln": ["(: cnet_isa_b795640e42 (IsA node connection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "node is a kind of convex shape", "pln": ["(: cnet_isa_d3d40ce2b3 (IsA node convex_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nodule is a kind of node", "pln": ["(: cnet_isa_d97e496f4e (IsA nodule node) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nodule is a kind of hunk", "pln": ["(: cnet_isa_889ea34d18 (IsA nodule hunk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nodule is a kind of plant process", "pln": ["(: cnet_isa_9139f47eb6 (IsA nodule plant_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nog is a kind of block", "pln": ["(: cnet_isa_3d17898771 (IsA nog block) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nogging is a kind of brickwork", "pln": ["(: cnet_isa_d2669a383d (IsA nogging brickwork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noise is a kind of sound", "pln": ["(: cnet_isa_26d8295a14 (IsA noise sound) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noise is a kind of incomprehensibility", "pln": ["(: cnet_isa_26ffb61aa3 (IsA noise incomprehensibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noise is a kind of cry", "pln": ["(: cnet_isa_eaae61a615 (IsA noise cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noise is a kind of trouble", "pln": ["(: cnet_isa_dcf332e70b (IsA noise trouble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noise condition is a kind of condition", "pln": ["(: cnet_isa_c71acfe326 (IsA noise_condition condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noise level is a kind of amplitude", "pln": ["(: cnet_isa_8c72e1928b (IsA noise_level amplitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noise pollution is a kind of pollution", "pln": ["(: cnet_isa_b5da527188 (IsA noise_pollution pollution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "noiselessness is a kind of quietness", "pln": ["(: cnet_isa_d5d87bf94e (IsA noiselessness quietness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noisemaker is a kind of device", "pln": ["(: cnet_isa_ec31c84c26 (IsA noisemaker device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noisiness is a kind of sound", "pln": ["(: cnet_isa_2cb90afbec (IsA noisiness sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nolan ryan is a kind of famous pitcher", "pln": ["(: cnet_isa_92b657f22c (IsA nolan_ryan famous_pitcher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "noli me tangere is a kind of ulcer", "pln": ["(: cnet_isa_21c1543379 (IsA noli_me_tangere ulcer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nolina is a kind of liliid monocot genus", "pln": ["(: cnet_isa_10acbdc838 (IsA nolina liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nolle prosequi is a kind of entry", "pln": ["(: cnet_isa_271cc7fc22 (IsA nolle_prosequi entry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nolo contendere is a kind of answer", "pln": ["(: cnet_isa_a62dd3b1b0 (IsA nolo_contendere answer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noma is a kind of ulcer", "pln": ["(: cnet_isa_9423882353 (IsA noma ulcer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nomad is a kind of wanderer", "pln": ["(: cnet_isa_6f220a0f7e (IsA nomad wanderer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nombril is a kind of center", "pln": ["(: cnet_isa_d35169f681 (IsA nombril center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nomenklatura is a kind of patronage", "pln": ["(: cnet_isa_570615d8a3 (IsA nomenklatura patronage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nomia is a kind of arthropod genus", "pln": ["(: cnet_isa_3dc5a49dcd (IsA nomia arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nomia melanderi is a kind of bee", "pln": ["(: cnet_isa_f40f6ee1ee (IsA nomia_melanderi bee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nominal aphasia is a kind of aphasia", "pln": ["(: cnet_isa_5b6e9f7929 (IsA nominal_aphasia aphasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nominal damage is a kind of damage", "pln": ["(: cnet_isa_9ed8961a1f (IsA nominal_damage damage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nominalism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_8cb6819d4b (IsA nominalism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nominalist is a kind of philosopher", "pln": ["(: cnet_isa_fc1f8a10dd (IsA nominalist philosopher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nominating speech is a kind of oratory", "pln": ["(: cnet_isa_f70eb7c095 (IsA nominating_speech oratory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nomination is a kind of appointment", "pln": ["(: cnet_isa_df98a51d85 (IsA nomination appointment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nomination is a kind of condition", "pln": ["(: cnet_isa_b61164e242 (IsA nomination condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nominative is a kind of case", "pln": ["(: cnet_isa_8901afaf4d (IsA nominative case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nominator is a kind of proposer", "pln": ["(: cnet_isa_f956d6f6e9 (IsA nominator proposer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nomogram is a kind of representation", "pln": ["(: cnet_isa_effd57832f (IsA nomogram representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "non cash expense is a kind of expense", "pln": ["(: cnet_isa_623fb141ce (IsA non_cash_expense expense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "non catholic is a kind of religionist", "pln": ["(: cnet_isa_d2875f249c (IsA non_catholic religionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "non dedicated file server is a kind of file server", "pln": ["(: cnet_isa_97b08c3818 (IsA non_dedicated_file_server file_server) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "non discrimination is a kind of fairness", "pln": ["(: cnet_isa_41d600b71b (IsA non_discrimination fairness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "non engagement is a kind of group action", "pln": ["(: cnet_isa_e9236a897c (IsA non_engagement group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "non euclidean geometry is a kind of geometry", "pln": ["(: cnet_isa_687526124b (IsA non_euclidean_geometry geometry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "non flowering plant is a kind of plant", "pln": ["(: cnet_isa_9b3b1ce4ae (IsA non_flowering_plant plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "non market economy is a kind of economy", "pln": ["(: cnet_isa_9ceb320eb2 (IsA non_market_economy economy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "non nucleoside reverse transcriptase inhibitor is a kind of reverse transcriptase inhibitor", "pln": ["(: cnet_isa_53b1b271d6 (IsA non_nucleoside_reverse_transcriptase_inhibitor reverse_transcriptase_inhibitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "non prosequitur is a kind of judgment", "pln": ["(: cnet_isa_290e53dcb1 (IsA non_prosequitur judgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "non resistant is a kind of reformer", "pln": ["(: cnet_isa_463853a996 (IsA non_resistant reformer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "non sequitur is a kind of reply", "pln": ["(: cnet_isa_a691322c64 (IsA non_sequitur reply) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "non sequitur is a kind of conclusion", "pln": ["(: cnet_isa_51f56400da (IsA non_sequitur conclusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "non standard speech is a kind of speech", "pln": ["(: cnet_isa_def30acebc (IsA non_standard_speech speech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "non volatile storage is a kind of memory", "pln": ["(: cnet_isa_1238b3f44a (IsA non_volatile_storage memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonabsorbency is a kind of impermeability", "pln": ["(: cnet_isa_13f2f5f61a (IsA nonabsorbency impermeability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nonacceptance is a kind of rejection", "pln": ["(: cnet_isa_3d5df99f19 (IsA nonacceptance rejection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonaccomplishment is a kind of act", "pln": ["(: cnet_isa_5378559e8f (IsA nonaccomplishment act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nonagenarian is a kind of oldster", "pln": ["(: cnet_isa_02a4206ef7 (IsA nonagenarian oldster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonaggression is a kind of foreign policy", "pln": ["(: cnet_isa_fb9199a300 (IsA nonaggression foreign_policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonagon is a kind of polygon", "pln": ["(: cnet_isa_137e351c31 (IsA nonagon polygon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonalignment is a kind of social group", "pln": ["(: cnet_isa_c0bb61ebc6 (IsA nonalignment social_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonallele is a kind of gene", "pln": ["(: cnet_isa_b1d510669a (IsA nonallele gene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonappearance is a kind of nonattendance", "pln": ["(: cnet_isa_ce53a56083 (IsA nonappearance nonattendance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonattendance is a kind of group action", "pln": ["(: cnet_isa_4026c14a80 (IsA nonattendance group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonbeing is a kind of state", "pln": ["(: cnet_isa_776d7cbda6 (IsA nonbeing state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonbiodegradable pollution is a kind of pollution", "pln": ["(: cnet_isa_854f0c179f (IsA nonbiodegradable_pollution pollution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noncallable bond is a kind of bond", "pln": ["(: cnet_isa_28ec419cd6 (IsA noncallable_bond bond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noncandidate is a kind of politician", "pln": ["(: cnet_isa_078d11c8cd (IsA noncandidate politician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonce word is a kind of word", "pln": ["(: cnet_isa_86f67f3a5c (IsA nonce_word word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonchalance is a kind of carefreeness", "pln": ["(: cnet_isa_30e33979d2 (IsA nonchalance carefreeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noncombatant is a kind of serviceman", "pln": ["(: cnet_isa_4bf57d461b (IsA noncombatant serviceman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noncommissioned officer is a kind of military officer", "pln": ["(: cnet_isa_590c1d70d4 (IsA noncommissioned_officer military_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nonconformism is a kind of practice", "pln": ["(: cnet_isa_b5b003d6d1 (IsA nonconformism practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonconformist is a kind of dissenter", "pln": ["(: cnet_isa_1a6be4ae7e (IsA nonconformist dissenter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonconformity is a kind of failure", "pln": ["(: cnet_isa_36c5718189 (IsA nonconformity failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonconformity is a kind of unorthodoxy", "pln": ["(: cnet_isa_c8740f4e75 (IsA nonconformity unorthodoxy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonconformity is a kind of disagreement", "pln": ["(: cnet_isa_89777971ff (IsA nonconformity disagreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nondepository financial institution is a kind of financial institution", "pln": ["(: cnet_isa_fd10e8e659 (IsA nondepository_financial_institution financial_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nondescript is a kind of person", "pln": ["(: cnet_isa_a744a41408 (IsA nondescript person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nondevelopment is a kind of organic process", "pln": ["(: cnet_isa_22f0b0ed6b (IsA nondevelopment organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nondiscretionary trust is a kind of investment company", "pln": ["(: cnet_isa_2aec268a3e (IsA nondiscretionary_trust investment_company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nondisjunction is a kind of meiosis", "pln": ["(: cnet_isa_57ae494494 (IsA nondisjunction meiosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nondriver is a kind of pedestrian", "pln": ["(: cnet_isa_d1bb7c1eb2 (IsA nondriver pedestrian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "none is a kind of service", "pln": ["(: cnet_isa_bb36b414c4 (IsA none service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "none is a kind of hour", "pln": ["(: cnet_isa_2338d94fa7 (IsA none hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonequivalence is a kind of inequality", "pln": ["(: cnet_isa_804fecd022 (IsA nonequivalence inequality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "none is a kind of canonical hour", "pln": ["(: cnet_isa_7a05f38bbc (IsA none canonical_hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonevent is a kind of event", "pln": ["(: cnet_isa_3755ad2386 (IsA nonevent event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonexistence is a kind of nonbeing", "pln": ["(: cnet_isa_970af293f2 (IsA nonexistence nonbeing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonfat dry milk is a kind of powdered milk", "pln": ["(: cnet_isa_22be4a13b2 (IsA nonfat_dry_milk powdered_milk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonfeasance is a kind of dereliction", "pln": ["(: cnet_isa_36e8199cfa (IsA nonfeasance dereliction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonfiction is a kind of prose", "pln": ["(: cnet_isa_8957bfab37 (IsA nonfiction prose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nongonococcal urethritis is a kind of urethritis", "pln": ["(: cnet_isa_4c9283f36a (IsA nongonococcal_urethritis urethritis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nongovernmental organization is a kind of organization", "pln": ["(: cnet_isa_aff7880cf3 (IsA nongovernmental_organization organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonintervention is a kind of foreign policy", "pln": ["(: cnet_isa_9580a64622 (IsA nonintervention foreign_policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nonlinear distortion is a kind of distortion", "pln": ["(: cnet_isa_833907a2cb (IsA nonlinear_distortion distortion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonlinear system is a kind of system", "pln": ["(: cnet_isa_dde36310fb (IsA nonlinear_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonmember is a kind of person", "pln": ["(: cnet_isa_99da5bab6a (IsA nonmember person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonmetal is a kind of chemical element", "pln": ["(: cnet_isa_eca267961f (IsA nonmetal chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonobservance is a kind of nonconformity", "pln": ["(: cnet_isa_bbba00fee9 (IsA nonobservance nonconformity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonoccurrence is a kind of absence", "pln": ["(: cnet_isa_159f1c8bd3 (IsA nonoccurrence absence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonogon is a kind of closed shape with nine side", "pln": ["(: cnet_isa_e3ddffc6b6 (IsA nonogon closed_shape_with_nine_side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonparametric statistic is a kind of statistic", "pln": ["(: cnet_isa_aa12bb77a0 (IsA nonparametric_statistic statistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonpareil is a kind of chocolate candy", "pln": ["(: cnet_isa_c59a59e891 (IsA nonpareil chocolate_candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonpareil is a kind of sweet", "pln": ["(: cnet_isa_8a473a5848 (IsA nonpareil sweet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonparticipant is a kind of person", "pln": ["(: cnet_isa_b3910754fc (IsA nonparticipant person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonpartizan is a kind of person", "pln": ["(: cnet_isa_75424626be (IsA nonpartizan person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonpasserine bird is a kind of bird", "pln": ["(: cnet_isa_020fddef75 (IsA nonpasserine_bird bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nonpayment is a kind of financial loss", "pln": ["(: cnet_isa_52ececc934 (IsA nonpayment financial_loss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonperson is a kind of person", "pln": ["(: cnet_isa_73a0460a1d (IsA nonperson person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonprofit organization is a kind of organization", "pln": ["(: cnet_isa_f10aae945f (IsA nonprofit_organization organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonproliferation is a kind of prevention", "pln": ["(: cnet_isa_2684778875 (IsA nonproliferation prevention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonproliferation center is a kind of agency", "pln": ["(: cnet_isa_020c5cc94e (IsA nonproliferation_center agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonreader is a kind of student", "pln": ["(: cnet_isa_4508b07ad2 (IsA nonreader student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonreligious person is a kind of person", "pln": ["(: cnet_isa_9d365d9487 (IsA nonreligious_person person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonresident is a kind of person", "pln": ["(: cnet_isa_1f8d47e9cd (IsA nonresident person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonresistance is a kind of group action", "pln": ["(: cnet_isa_b1618f07df (IsA nonresistance group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonrestrictive clause is a kind of subordinate clause", "pln": ["(: cnet_isa_6f17aef9a2 (IsA nonrestrictive_clause subordinate_clause) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonsense is a kind of message", "pln": ["(: cnet_isa_dc3e9fce77 (IsA nonsense message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nonsingular matrix is a kind of square matrix", "pln": ["(: cnet_isa_1e011e3c86 (IsA nonsingular_matrix square_matrix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonsmoker is a kind of passenger car", "pln": ["(: cnet_isa_ef84337f38 (IsA nonsmoker passenger_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nonsmoker is a kind of person", "pln": ["(: cnet_isa_5f77e712a6 (IsA nonsmoker person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonsocial infection is a kind of infection", "pln": ["(: cnet_isa_82540d7978 (IsA nonsocial_infection infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonsolid color is a kind of color", "pln": ["(: cnet_isa_973803860c (IsA nonsolid_color color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonspecific urethritis is a kind of urethritis", "pln": ["(: cnet_isa_4fafb91f47 (IsA nonspecific_urethritis urethritis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonstarter is a kind of racehorse", "pln": ["(: cnet_isa_1b27d33f72 (IsA nonstarter racehorse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonsteroid is a kind of organic compound", "pln": ["(: cnet_isa_b64916baa2 (IsA nonsteroid organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonsteroidal anti inflammatory is a kind of anti inflammatory", "pln": ["(: cnet_isa_e0f9d578d4 (IsA nonsteroidal_anti_inflammatory anti_inflammatory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonstop flight is a kind of flight", "pln": ["(: cnet_isa_7a7c111ca6 (IsA nonstop_flight flight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonthrombocytopenic purpura is a kind of purpura", "pln": ["(: cnet_isa_e028be612c (IsA nonthrombocytopenic_purpura purpura) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nontricyclic is a kind of antidepressant", "pln": ["(: cnet_isa_07d73940db (IsA nontricyclic antidepressant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonuniformity is a kind of dissimilarity", "pln": ["(: cnet_isa_9e73b267fa (IsA nonuniformity dissimilarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nonvascular organism is a kind of organism", "pln": ["(: cnet_isa_63fdb361f7 (IsA nonvascular_organism organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonverbal intelligence is a kind of intelligence", "pln": ["(: cnet_isa_45996effbd (IsA nonverbal_intelligence intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nonworker is a kind of person", "pln": ["(: cnet_isa_320d955d7a (IsA nonworker person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noodle is a kind of pasta", "pln": ["(: cnet_isa_f495eab510 (IsA noodle pasta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nook is a kind of retreat", "pln": ["(: cnet_isa_4c6fcf14d7 (IsA nook retreat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nook and cranny is a kind of detail", "pln": ["(: cnet_isa_643cdf24aa (IsA nook_and_cranny detail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noon is a kind of time of day", "pln": ["(: cnet_isa_0e3c52c553 (IsA noon time_of_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noon is a kind of hour", "pln": ["(: cnet_isa_817caba84f (IsA noon hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noonan s syndrome is a kind of syndrome", "pln": ["(: cnet_isa_491ff9deb6 (IsA noonan_s_syndrome syndrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noose is a kind of loop", "pln": ["(: cnet_isa_58b53c75b3 (IsA noose loop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nootka is a kind of wakashan", "pln": ["(: cnet_isa_e7a9972260 (IsA nootka wakashan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nopal is a kind of cactus", "pln": ["(: cnet_isa_d124209734 (IsA nopal cactus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nopal is a kind of prickly pear", "pln": ["(: cnet_isa_9e2f171bef (IsA nopal prickly_pear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nopalea is a kind of dicot genus", "pln": ["(: cnet_isa_6d2fd8c449 (IsA nopalea dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noradrenaline is a kind of catecholamine", "pln": ["(: cnet_isa_c80507defd (IsA noradrenaline catecholamine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noradrenaline is a kind of monoamine neurotransmitter", "pln": ["(: cnet_isa_280fb0908c (IsA noradrenaline monoamine_neurotransmitter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noradrenaline is a kind of vasoconstrictor", "pln": ["(: cnet_isa_9f75867196 (IsA noradrenaline vasoconstrictor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "norepinephrine is a kind of brain chemical similar to adrenaline", "pln": ["(: cnet_isa_efff396ccc (IsA norepinephrine brain_chemical_similar_to_adrenaline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "norfolk island pine is a kind of araucaria", "pln": ["(: cnet_isa_6d0aeda679 (IsA norfolk_island_pine araucaria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "norfolk jacket is a kind of jacket", "pln": ["(: cnet_isa_77384fc0e5 (IsA norfolk_jacket jacket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "norfolk terrier is a kind of terrier", "pln": ["(: cnet_isa_c1f3e49d77 (IsA norfolk_terrier terrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "noria is a kind of waterwheel", "pln": ["(: cnet_isa_97c650436a (IsA noria waterwheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "norm is a kind of standard", "pln": ["(: cnet_isa_1a4e18f8e7 (IsA norm standard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "normal curve is a kind of curve", "pln": ["(: cnet_isa_b1cd983fa3 (IsA normal_curve curve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "normal distribution is a kind of distribution", "pln": ["(: cnet_isa_d77115d7a6 (IsA normal_distribution distribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "normal fault is a kind of inclined fault", "pln": ["(: cnet_isa_12d5a4ea75 (IsA normal_fault inclined_fault) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "normal school is a kind of junior college", "pln": ["(: cnet_isa_ee065697b6 (IsA normal_school junior_college) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "normal tension glaucoma is a kind of glaucoma", "pln": ["(: cnet_isa_8d06781cd9 (IsA normal_tension_glaucoma glaucoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "normal vector is a kind of vector", "pln": ["(: cnet_isa_804391c010 (IsA normal_vector vector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "normality is a kind of conformity", "pln": ["(: cnet_isa_f11e827f52 (IsA normality conformity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "normality is a kind of expectedness", "pln": ["(: cnet_isa_082ba4f070 (IsA normality expectedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "normality is a kind of relative quantity", "pln": ["(: cnet_isa_0680ea86df (IsA normality relative_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "normality is a kind of condition", "pln": ["(: cnet_isa_f4d80a9fdc (IsA normality condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "normalizer is a kind of changer", "pln": ["(: cnet_isa_a1ac676557 (IsA normalizer changer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "norman is a kind of french person", "pln": ["(: cnet_isa_b25e4c5ae6 (IsA norman french_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "norman architecture is a kind of romanesque", "pln": ["(: cnet_isa_73fa1199b4 (IsA norman_architecture romanesque) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "norman french is a kind of french", "pln": ["(: cnet_isa_7c13d2eaa1 (IsA norman_french french) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "normothermia is a kind of physiological state", "pln": ["(: cnet_isa_81abf43919 (IsA normothermia physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "norse deity is a kind of deity", "pln": ["(: cnet_isa_3b15ba5199 (IsA norse_deity deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "norse mythology is a kind of mythology", "pln": ["(: cnet_isa_1a877e8af7 (IsA norse_mythology mythology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "norseman is a kind of european", "pln": ["(: cnet_isa_12edef4b25 (IsA norseman european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "north is a kind of cardinal compass point", "pln": ["(: cnet_isa_fd773e802b (IsA north cardinal_compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "north is a kind of direction", "pln": ["(: cnet_isa_39b33da9ef (IsA north direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "north is a kind of location", "pln": ["(: cnet_isa_87d8d7a3ee (IsA north location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "north is a kind of region", "pln": ["(: cnet_isa_9535218f2f (IsA north region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "north america is a kind of collection", "pln": ["(: cnet_isa_96b536e444 (IsA north_america collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "north american is a kind of american", "pln": ["(: cnet_isa_ae102d4d4a (IsA north_american american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "north american country is a kind of country", "pln": ["(: cnet_isa_71c9362930 (IsA north_american_country country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "north american free trade agreement is a kind of free trade", "pln": ["(: cnet_isa_bdbcd8aaab (IsA north_american_free_trade_agreement free_trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "north atlantic council is a kind of council", "pln": ["(: cnet_isa_9a69b6635d (IsA north_atlantic_council council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "north atlantic treaty organization is a kind of world organization", "pln": ["(: cnet_isa_e489c7017f (IsA north_atlantic_treaty_organization world_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "north by east is a kind of compass point", "pln": ["(: cnet_isa_3d50180b1d (IsA north_by_east compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "north by west is a kind of compass point", "pln": ["(: cnet_isa_411529bc7d (IsA north_by_west compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "north carolina is a kind of state", "pln": ["(: cnet_isa_f221f6d6d2 (IsA north_carolina state) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "north dakota is a kind of state", "pln": ["(: cnet_isa_23b816ec11 (IsA north_dakota state) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "north dakotan is a kind of american", "pln": ["(: cnet_isa_ca0b48c196 (IsA north_dakotan american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "north dravidian is a kind of dravidian", "pln": ["(: cnet_isa_e50b144079 (IsA north_dravidian dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "north equatorial current is a kind of equatorial current", "pln": ["(: cnet_isa_0363fd72b0 (IsA north_equatorial_current equatorial_current) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "north island edelweiss is a kind of wildflower", "pln": ["(: cnet_isa_209ea7aa43 (IsA north_island_edelweiss wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "north korean is a kind of korean", "pln": ["(: cnet_isa_e592773982 (IsA north_korean korean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "north korean monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_f1101ee18b (IsA north_korean_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "north korean won is a kind of north korean monetary unit", "pln": ["(: cnet_isa_13317e7265 (IsA north_korean_won north_korean_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "north northeast is a kind of compass point", "pln": ["(: cnet_isa_50e6164fbd (IsA north_northeast compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "north northwest is a kind of compass point", "pln": ["(: cnet_isa_0d1cb92188 (IsA north_northwest compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "north side is a kind of side", "pln": ["(: cnet_isa_abc15bbae6 (IsA north_side side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "north south direction is a kind of direction", "pln": ["(: cnet_isa_4e3bc8fcbc (IsA north_south_direction direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "north wind is a kind of wind", "pln": ["(: cnet_isa_051ef0575f (IsA north_wind wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "northeast is a kind of compass point", "pln": ["(: cnet_isa_83e395f519 (IsA northeast compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northeast is a kind of direction", "pln": ["(: cnet_isa_703dfede67 (IsA northeast direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northeast is a kind of location", "pln": ["(: cnet_isa_9daf4ec59a (IsA northeast location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northeast by east is a kind of compass point", "pln": ["(: cnet_isa_85eb1c5b20 (IsA northeast_by_east compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northeast by north is a kind of compass point", "pln": ["(: cnet_isa_c269799e29 (IsA northeast_by_north compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northeaster is a kind of storm", "pln": ["(: cnet_isa_9ca4739023 (IsA northeaster storm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northern is a kind of middle english", "pln": ["(: cnet_isa_da091a2289 (IsA northern middle_english) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northern alliance is a kind of alliance", "pln": ["(: cnet_isa_869d7ee990 (IsA northern_alliance alliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "northern baptist is a kind of baptist", "pln": ["(: cnet_isa_21c2427403 (IsA northern_baptist baptist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northern barramundi is a kind of fish specy", "pln": ["(: cnet_isa_5a02955140 (IsA northern_barramundi fish_specy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northern bedstraw is a kind of bedstraw", "pln": ["(: cnet_isa_57ec1a7d68 (IsA northern_bedstraw bedstraw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northern bobwhite is a kind of bobwhite", "pln": ["(: cnet_isa_e80efdff7b (IsA northern_bobwhite bobwhite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northern bog lemming is a kind of lemming", "pln": ["(: cnet_isa_b59dac848a (IsA northern_bog_lemming lemming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "northern cricket frog is a kind of cricket frog", "pln": ["(: cnet_isa_b1db38b4a5 (IsA northern_cricket_frog cricket_frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northern dewberry is a kind of dewberry", "pln": ["(: cnet_isa_437ed637c9 (IsA northern_dewberry dewberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northern dune tansy is a kind of wildflower", "pln": ["(: cnet_isa_9e1f5eba0e (IsA northern_dune_tansy wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northern europe is a kind of geographical area", "pln": ["(: cnet_isa_fcb5e62ed4 (IsA northern_europe geographical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "northern flying squirrel is a kind of american flying squirrel", "pln": ["(: cnet_isa_731c9e381e (IsA northern_flying_squirrel american_flying_squirrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northern holly fern is a kind of holly fern", "pln": ["(: cnet_isa_a3e6289e12 (IsA northern_holly_fern holly_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northern jacob s ladder is a kind of polemonium", "pln": ["(: cnet_isa_28401482db (IsA northern_jacob_s_ladder polemonium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northern oriole is a kind of new world oriole", "pln": ["(: cnet_isa_02f99d46d1 (IsA northern_oriole new_world_oriole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northern phalarope is a kind of phalarope", "pln": ["(: cnet_isa_94240d53a3 (IsA northern_phalarope phalarope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northern pike is a kind of pike", "pln": ["(: cnet_isa_3284573024 (IsA northern_pike pike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northern pocket gopher is a kind of gopher", "pln": ["(: cnet_isa_b5bb6c2c26 (IsA northern_pocket_gopher gopher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northern red oak is a kind of red oak", "pln": ["(: cnet_isa_588e64d890 (IsA northern_red_oak red_oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northern sea robin is a kind of sea robin", "pln": ["(: cnet_isa_91a7cb6e8e (IsA northern_sea_robin sea_robin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northern shrike is a kind of butcherbird", "pln": ["(: cnet_isa_78589d57ca (IsA northern_shrike butcherbird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northern snakehead is a kind of fish", "pln": ["(: cnet_isa_316e90edf1 (IsA northern_snakehead fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northern spy is a kind of eating apple", "pln": ["(: cnet_isa_f00c360934 (IsA northern_spy eating_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northern whiting is a kind of whiting", "pln": ["(: cnet_isa_b606ef3465 (IsA northern_whiting whiting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northerner is a kind of inhabitant", "pln": ["(: cnet_isa_957135b343 (IsA northerner inhabitant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northernness is a kind of position", "pln": ["(: cnet_isa_f8ac9d8897 (IsA northernness position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northman is a kind of european", "pln": ["(: cnet_isa_302e76c318 (IsA northman european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northwest is a kind of compass point", "pln": ["(: cnet_isa_113d731425 (IsA northwest compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northwest is a kind of direction", "pln": ["(: cnet_isa_600f199cbd (IsA northwest direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northwest is a kind of location", "pln": ["(: cnet_isa_d3f0b29b22 (IsA northwest location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "northwest by north is a kind of compass point", "pln": ["(: cnet_isa_cfa47e6229 (IsA northwest_by_north compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "northwest by west is a kind of compass point", "pln": ["(: cnet_isa_2bd6d6f0da (IsA northwest_by_west compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "northwest wind is a kind of wind", "pln": ["(: cnet_isa_67c5834327 (IsA northwest_wind wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noruz is a kind of vernal equinox", "pln": ["(: cnet_isa_6030cf28aa (IsA noruz vernal_equinox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "norway is a kind of country", "pln": ["(: cnet_isa_7d585c6826 (IsA norway country) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "norway lobster is a kind of lobster", "pln": ["(: cnet_isa_a498ec7465 (IsA norway_lobster lobster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "norway maple is a kind of maple", "pln": ["(: cnet_isa_b1be5be7c7 (IsA norway_maple maple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "norway spruce is a kind of spruce", "pln": ["(: cnet_isa_57a4fd594b (IsA norway_spruce spruce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "norwegian is a kind of scandinavian", "pln": ["(: cnet_isa_16e4effce7 (IsA norwegian scandinavian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "norwegian elkhound is a kind of hound", "pln": ["(: cnet_isa_63e9c529fc (IsA norwegian_elkhound hound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "norwegian krone is a kind of norwegian monetary unit", "pln": ["(: cnet_isa_156221bbb7 (IsA norwegian_krone norwegian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "norwegian lobster is a kind of lobster", "pln": ["(: cnet_isa_a3c955bd67 (IsA norwegian_lobster lobster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "norwegian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_da1abfaff3 (IsA norwegian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "norwich terrier is a kind of terrier", "pln": ["(: cnet_isa_77c373e877 (IsA norwich_terrier terrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nose is a kind of smell", "pln": ["(: cnet_isa_f1962d2a5a (IsA nose smell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nose is a kind of front", "pln": ["(: cnet_isa_61ce644c71 (IsA nose front) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nose is a kind of chemoreceptor", "pln": ["(: cnet_isa_699f4b02df (IsA nose chemoreceptor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nose is a kind of skill", "pln": ["(: cnet_isa_fdacfd6721 (IsA nose skill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nose is a kind of symbol", "pln": ["(: cnet_isa_97e9ca26e5 (IsA nose symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nose is a kind of small indefinite quantity", "pln": ["(: cnet_isa_9d1848e37e (IsA nose small_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nose cone is a kind of front", "pln": ["(: cnet_isa_48c29960d5 (IsA nose_cone front) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nose flute is a kind of flute", "pln": ["(: cnet_isa_f120fbf089 (IsA nose_flute flute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nose job is a kind of face lift", "pln": ["(: cnet_isa_a0c895e197 (IsA nose_job face_lift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nose ring is a kind of hoop", "pln": ["(: cnet_isa_986d6996fc (IsA nose_ring hoop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nosebag is a kind of bag", "pln": ["(: cnet_isa_2dd6d1eb9c (IsA nosebag bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noseband is a kind of strap", "pln": ["(: cnet_isa_3340a4face (IsA noseband strap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nosebleed is a kind of bleeding", "pln": ["(: cnet_isa_8a43d7af8a (IsA nosebleed bleeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nosedive is a kind of decline", "pln": ["(: cnet_isa_93e9c5ee11 (IsA nosedive decline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nosepiece is a kind of armor plate", "pln": ["(: cnet_isa_4c79a2045d (IsA nosepiece armor_plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nosewheel is a kind of wheel", "pln": ["(: cnet_isa_9d0bcb98f2 (IsA nosewheel wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nosh is a kind of bite", "pln": ["(: cnet_isa_3950cda4b5 (IsA nosh bite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nosh up is a kind of meal", "pln": ["(: cnet_isa_d97c639420 (IsA nosh_up meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nosher is a kind of eater", "pln": ["(: cnet_isa_d9d25c92b5 (IsA nosher eater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nosiness is a kind of curiousness", "pln": ["(: cnet_isa_41439b016f (IsA nosiness curiousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nosology is a kind of medicine", "pln": ["(: cnet_isa_cd253d5023 (IsA nosology medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nostalgia is a kind of human emotion", "pln": ["(: cnet_isa_92663dc0dd (IsA nostalgia human_emotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nostalgia is a kind of longing", "pln": ["(: cnet_isa_610dad5880 (IsA nostalgia longing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nostoc is a kind of cyanobacteria", "pln": ["(: cnet_isa_d69a26bf5b (IsA nostoc cyanobacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nostocaceae is a kind of bacteria family", "pln": ["(: cnet_isa_3fb9640819 (IsA nostocaceae bacteria_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nostril is a kind of hole", "pln": ["(: cnet_isa_fc35966fcc (IsA nostril hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nostril is a kind of naris", "pln": ["(: cnet_isa_8b62278bf2 (IsA nostril naris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nostrum is a kind of patent medicine", "pln": ["(: cnet_isa_3e9b5d6381 (IsA nostrum patent_medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nota bene is a kind of note", "pln": ["(: cnet_isa_d2667d83f3 (IsA nota_bene note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "notary is a kind of official", "pln": ["(: cnet_isa_f2727db205 (IsA notary official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "notation is a kind of writing", "pln": ["(: cnet_isa_76cbaac6a4 (IsA notation writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "notch is a kind of cut", "pln": ["(: cnet_isa_f832d7101d (IsA notch cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "notch is a kind of indentation", "pln": ["(: cnet_isa_c1a78e01ee (IsA notch indentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "note is a kind of symbol", "pln": ["(: cnet_isa_8349c42853 (IsA note symbol) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "note is a kind of air", "pln": ["(: cnet_isa_0506dd9efe (IsA note air) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "note is a kind of comment", "pln": ["(: cnet_isa_db51b88080 (IsA note comment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "note is a kind of musical notation", "pln": ["(: cnet_isa_21fc7f5c13 (IsA note musical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "note is a kind of personal letter", "pln": ["(: cnet_isa_c7e8d17239 (IsA note personal_letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "note is a kind of tone", "pln": ["(: cnet_isa_5c1876f8f2 (IsA note tone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "note is a kind of written record", "pln": ["(: cnet_isa_2712294dc8 (IsA note written_record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "note is a kind of debt instrument", "pln": ["(: cnet_isa_897a11aaa5 (IsA note debt_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "note payable is a kind of note", "pln": ["(: cnet_isa_fd0f8e255b (IsA note_payable note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "note receivable is a kind of note", "pln": ["(: cnet_isa_e4aae3ff20 (IsA note_receivable note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "notebook is a kind of computer", "pln": ["(: cnet_isa_1220d2778d (IsA notebook computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "notebook is a kind of portable computer", "pln": ["(: cnet_isa_e7c32d3988 (IsA notebook portable_computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "notebook is a kind of book", "pln": ["(: cnet_isa_0625f96b80 (IsA notebook book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "notebook entry is a kind of entry", "pln": ["(: cnet_isa_c0e96baac7 (IsA notebook_entry entry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "notechis is a kind of reptile genus", "pln": ["(: cnet_isa_1bbc2b9c3f (IsA notechis reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "notemigonus is a kind of fish genus", "pln": ["(: cnet_isa_0dfabcf196 (IsA notemigonus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "notepad is a kind of pad", "pln": ["(: cnet_isa_5f13134397 (IsA notepad pad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "notepaper is a kind of writing paper", "pln": ["(: cnet_isa_b9ac2075a3 (IsA notepaper writing_paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nothing is a kind of relative quantity", "pln": ["(: cnet_isa_6d9da3b9c6 (IsA nothing relative_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nothingness is a kind of nonexistence", "pln": ["(: cnet_isa_baac39a79a (IsA nothingness nonexistence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nothing is a kind of conversation", "pln": ["(: cnet_isa_2a6b012a32 (IsA nothing conversation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nothofagus is a kind of hamamelid dicot genus", "pln": ["(: cnet_isa_af4b782bf0 (IsA nothofagus hamamelid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nothosaur is a kind of archosaur", "pln": ["(: cnet_isa_343f25a983 (IsA nothosaur archosaur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nothosauria is a kind of animal order", "pln": ["(: cnet_isa_9990d838bc (IsA nothosauria animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "notice is a kind of attention", "pln": ["(: cnet_isa_70d8dbe713 (IsA notice attention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "notice is a kind of announcement", "pln": ["(: cnet_isa_5cb212659f (IsA notice announcement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "notice is a kind of review", "pln": ["(: cnet_isa_94cb21075c (IsA notice review) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "notice is a kind of telling", "pln": ["(: cnet_isa_6c82d88948 (IsA notice telling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noticer is a kind of official", "pln": ["(: cnet_isa_4124f789fc (IsA noticer official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noticer is a kind of perceiver", "pln": ["(: cnet_isa_1216b1d506 (IsA noticer perceiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "notification is a kind of request", "pln": ["(: cnet_isa_1d0561d330 (IsA notification request) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "notion is a kind of article", "pln": ["(: cnet_isa_e55813521a (IsA notion article) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "notion is a kind of concept", "pln": ["(: cnet_isa_b20ef7bcb7 (IsA notion concept) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "notion is a kind of idea", "pln": ["(: cnet_isa_a6c452eadb (IsA notion idea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "notion counter is a kind of counter", "pln": ["(: cnet_isa_8088909d5c (IsA notion_counter counter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "notochord is a kind of spinal column", "pln": ["(: cnet_isa_73f58933a2 (IsA notochord spinal_column) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "notomy is a kind of mammal genus", "pln": ["(: cnet_isa_9f279e904b (IsA notomy mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "notonecta is a kind of arthropod genus", "pln": ["(: cnet_isa_2829182d01 (IsA notonecta arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "notonectidae is a kind of arthropod family", "pln": ["(: cnet_isa_0474da3f4d (IsA notonectidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "notophthalmus is a kind of amphibian genus", "pln": ["(: cnet_isa_46f4082b43 (IsA notophthalmus amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "notoriety is a kind of infamy", "pln": ["(: cnet_isa_1c7a065196 (IsA notoriety infamy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "notornis is a kind of rail", "pln": ["(: cnet_isa_672120d96a (IsA notornis rail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "notoryctidae is a kind of mammal family", "pln": ["(: cnet_isa_73a9576b0c (IsA notoryctidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "notoryctus is a kind of mammal genus", "pln": ["(: cnet_isa_f3a14250f0 (IsA notoryctus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "notostraca is a kind of animal order", "pln": ["(: cnet_isa_31be9791ee (IsA notostraca animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "notropis is a kind of fish genus", "pln": ["(: cnet_isa_aa06ac2ce8 (IsA notropis fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nougat is a kind of candy", "pln": ["(: cnet_isa_9e2c570589 (IsA nougat candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nougat bar is a kind of candy", "pln": ["(: cnet_isa_ce1ebf4622 (IsA nougat_bar candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noumenon is a kind of content", "pln": ["(: cnet_isa_fb1d0203ee (IsA noumenon content) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noun is a kind of content word", "pln": ["(: cnet_isa_1ffcb73de8 (IsA noun content_word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noun is a kind of major form class", "pln": ["(: cnet_isa_4fe6cd2634 (IsA noun major_form_class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noun is a kind of substantive", "pln": ["(: cnet_isa_1423f34642 (IsA noun substantive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "noun phrase is a kind of phrase", "pln": ["(: cnet_isa_268e44baf5 (IsA noun_phrase phrase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nourishment is a kind of care", "pln": ["(: cnet_isa_2a3f3ff200 (IsA nourishment care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nous is a kind of common sense", "pln": ["(: cnet_isa_14f25c01ea (IsA nous common_sense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nouvelle cuisine is a kind of cuisine", "pln": ["(: cnet_isa_e533701105 (IsA nouvelle_cuisine cuisine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nov esperanto is a kind of artificial language", "pln": ["(: cnet_isa_325224cab9 (IsA nov_esperanto artificial_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nov latin is a kind of artificial language", "pln": ["(: cnet_isa_929d0f66db (IsA nov_latin artificial_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nova is a kind of star", "pln": ["(: cnet_isa_8a31c45353 (IsA nova star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nova scotia is a kind of in canada", "pln": ["(: cnet_isa_25c8148a1b (IsA nova_scotia in_canada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nova scotia lox is a kind of lox", "pln": ["(: cnet_isa_9594498dbc (IsA nova_scotia_lox lox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "novation is a kind of replacement", "pln": ["(: cnet_isa_14aad7fca2 (IsA novation replacement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "novel is a kind of book", "pln": ["(: cnet_isa_b005be08bb (IsA novel book) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "novel is a kind of story", "pln": ["(: cnet_isa_3e133d5cb2 (IsA novel story) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "novel is a kind of fiction", "pln": ["(: cnet_isa_e60742af1a (IsA novel fiction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "novelette is a kind of novel", "pln": ["(: cnet_isa_83a7b91627 (IsA novelette novel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "novelist is a kind of writer", "pln": ["(: cnet_isa_36096b5aeb (IsA novelist writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "novelization is a kind of writing", "pln": ["(: cnet_isa_588a7affb8 (IsA novelization writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "novelty is a kind of originality", "pln": ["(: cnet_isa_bd60064d02 (IsA novelty originality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "november is a kind of gregorian calendar month", "pln": ["(: cnet_isa_2246302f47 (IsA november gregorian_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "november 5 is a kind of day", "pln": ["(: cnet_isa_0b30939cde (IsA november_5 day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "novena is a kind of devotion", "pln": ["(: cnet_isa_44ac51370a (IsA novena devotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "novial is a kind of artificial language", "pln": ["(: cnet_isa_09d436e305 (IsA novial artificial_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "novice is a kind of unskilled person", "pln": ["(: cnet_isa_6625730bf6 (IsA novice unskilled_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "novillada is a kind of bullfight", "pln": ["(: cnet_isa_fe3c40a928 (IsA novillada bullfight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "novillero is a kind of bullfighter", "pln": ["(: cnet_isa_093f84589e (IsA novillero bullfighter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "novitiate is a kind of religionist", "pln": ["(: cnet_isa_9e52abb0db (IsA novitiate religionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "novitiate is a kind of time period", "pln": ["(: cnet_isa_e92ba20045 (IsA novitiate time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "novobiocin is a kind of antibiotic", "pln": ["(: cnet_isa_7e43266fd3 (IsA novobiocin antibiotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "now is a kind of present", "pln": ["(: cnet_isa_107fb65bac (IsA now present) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nowhere is a kind of obscurity", "pln": ["(: cnet_isa_23369441de (IsA nowhere obscurity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nozzle is a kind of spout", "pln": ["(: cnet_isa_3c68d038f5 (IsA nozzle spout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nu is a kind of letter", "pln": ["(: cnet_isa_f877873889 (IsA nu letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nuance is a kind of meaning", "pln": ["(: cnet_isa_53248d082a (IsA nuance meaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nub is a kind of part", "pln": ["(: cnet_isa_282d85cb82 (IsA nub part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nub is a kind of bulge", "pln": ["(: cnet_isa_1117f66351 (IsA nub bulge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nubbin is a kind of nub", "pln": ["(: cnet_isa_b0dbe0e4d2 (IsA nubbin nub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nubian is a kind of egyptian", "pln": ["(: cnet_isa_0cc0f7dd60 (IsA nubian egyptian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nubian is a kind of ethnic group", "pln": ["(: cnet_isa_b446ecc56c (IsA nubian ethnic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nucellus is a kind of plant part", "pln": ["(: cnet_isa_03100db8e1 (IsA nucellus plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nucifraga is a kind of bird genus", "pln": ["(: cnet_isa_2a6a5f1713 (IsA nucifraga bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nuclear cataract is a kind of cataract", "pln": ["(: cnet_isa_41e3c911ed (IsA nuclear_cataract cataract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nuclear chemist is a kind of chemist", "pln": ["(: cnet_isa_ee0fbe27d1 (IsA nuclear_chemist chemist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nuclear club is a kind of collection", "pln": ["(: cnet_isa_fee5dd884a (IsA nuclear_club collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nuclear deterrence is a kind of deterrence", "pln": ["(: cnet_isa_f9b4c0e783 (IsA nuclear_deterrence deterrence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nuclear deterrence is a kind of doctrine", "pln": ["(: cnet_isa_251df39462 (IsA nuclear_deterrence doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nuclear engineering is a kind of engineering", "pln": ["(: cnet_isa_00966e879d (IsA nuclear_engineering engineering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nuclear explosion is a kind of bomb blast", "pln": ["(: cnet_isa_8ae8bf3bb1 (IsA nuclear_explosion bomb_blast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nuclear family is a kind of family", "pln": ["(: cnet_isa_758e595080 (IsA nuclear_family family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nuclear fuel is a kind of fuel", "pln": ["(: cnet_isa_93bb78e55e (IsA nuclear_fuel fuel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nuclear magnetic resonance is a kind of magnetic resonance", "pln": ["(: cnet_isa_943e32922e (IsA nuclear_magnetic_resonance magnetic_resonance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nuclear medicine is a kind of medicine", "pln": ["(: cnet_isa_7a5586f2de (IsA nuclear_medicine medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nuclear physicist is a kind of physicist", "pln": ["(: cnet_isa_1ebbd4119e (IsA nuclear_physicist physicist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nuclear physic is a kind of physic", "pln": ["(: cnet_isa_abead53ca9 (IsA nuclear_physic physic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nuclear powered ship is a kind of ship", "pln": ["(: cnet_isa_ce4102c8a5 (IsA nuclear_powered_ship ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nuclear propulsion is a kind of propulsion", "pln": ["(: cnet_isa_c4eaa8b125 (IsA nuclear_propulsion propulsion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nuclear reaction is a kind of natural process", "pln": ["(: cnet_isa_b24b2681cd (IsA nuclear_reaction natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nuclear reactor is a kind of apparatus", "pln": ["(: cnet_isa_5f25bab1bb (IsA nuclear_reactor apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nuclear regulatory commission is a kind of independent agency", "pln": ["(: cnet_isa_9425a2ab93 (IsA nuclear_regulatory_commission independent_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nuclear resonance is a kind of resonance", "pln": ["(: cnet_isa_160ea207e7 (IsA nuclear_resonance resonance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nuclear rna is a kind of ribonucleic acid", "pln": ["(: cnet_isa_3b50c990bb (IsA nuclear_rna ribonucleic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nuclear rocket is a kind of rocket", "pln": ["(: cnet_isa_da3343b6d1 (IsA nuclear_rocket rocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nuclear terrorism is a kind of terrorism", "pln": ["(: cnet_isa_b75f30dda2 (IsA nuclear_terrorism terrorism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nuclear weapon is a kind of weapon of mass destruction", "pln": ["(: cnet_isa_8dd68c3317 (IsA nuclear_weapon weapon_of_mass_destruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nuclear winter is a kind of catastrophe", "pln": ["(: cnet_isa_0e904a2d0f (IsA nuclear_winter catastrophe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nuclease is a kind of enzyme", "pln": ["(: cnet_isa_84926f10cc (IsA nuclease enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nucleic acid is a kind of macromolecule", "pln": ["(: cnet_isa_5d7105516c (IsA nucleic_acid macromolecule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nucleolus is a kind of organelle", "pln": ["(: cnet_isa_e8267ec001 (IsA nucleolus organelle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nucleolus organizer is a kind of structure", "pln": ["(: cnet_isa_f9eb8f716d (IsA nucleolus_organizer structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nucleon is a kind of baryon", "pln": ["(: cnet_isa_c17449b42d (IsA nucleon baryon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nucleoplasm is a kind of protoplasm", "pln": ["(: cnet_isa_a0b29c83dd (IsA nucleoplasm protoplasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nucleoprotein is a kind of protein", "pln": ["(: cnet_isa_b1035f54d5 (IsA nucleoprotein protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nucleoside is a kind of glycoside", "pln": ["(: cnet_isa_b5bbb2ec15 (IsA nucleoside glycoside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nucleoside reverse transcriptase inhibitor is a kind of reverse transcriptase inhibitor", "pln": ["(: cnet_isa_ac2243a125 (IsA nucleoside_reverse_transcriptase_inhibitor reverse_transcriptase_inhibitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nucleosynthesis is a kind of synthesis", "pln": ["(: cnet_isa_848b32d6c9 (IsA nucleosynthesis synthesis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nucleotide is a kind of ester", "pln": ["(: cnet_isa_c6e44be211 (IsA nucleotide ester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nucleus is a kind of center", "pln": ["(: cnet_isa_5f17afe747 (IsA nucleus center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nucleus is a kind of neural structure", "pln": ["(: cnet_isa_a17fbe8922 (IsA nucleus neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nucleus is a kind of organelle", "pln": ["(: cnet_isa_f7f95cb657 (IsA nucleus organelle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nuda is a kind of class", "pln": ["(: cnet_isa_1dd8b2690a (IsA nuda class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nude is a kind of painting", "pln": ["(: cnet_isa_8ee05349ce (IsA nude painting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nude is a kind of person", "pln": ["(: cnet_isa_252202b099 (IsA nude person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nude is a kind of nakedness", "pln": ["(: cnet_isa_f5c111dccc (IsA nude nakedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nude dancing is a kind of stage dancing", "pln": ["(: cnet_isa_26a8b91707 (IsA nude_dancing stage_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nude mouse is a kind of mouse", "pln": ["(: cnet_isa_619d0c95a3 (IsA nude_mouse mouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nude sculpture is a kind of statue", "pln": ["(: cnet_isa_0c361bbdc3 (IsA nude_sculpture statue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nudge is a kind of push", "pln": ["(: cnet_isa_e6d3ce7675 (IsA nudge push) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nudger is a kind of pusher", "pln": ["(: cnet_isa_3373da5ef7 (IsA nudger pusher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nudibranchia is a kind of animal order", "pln": ["(: cnet_isa_062f79a06a (IsA nudibranchia animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nudism is a kind of practice", "pln": ["(: cnet_isa_bf6a3e76c5 (IsA nudism practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nudist is a kind of individualist", "pln": ["(: cnet_isa_febbfda4fc (IsA nudist individualist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nudity is a kind of natural state", "pln": ["(: cnet_isa_f0ba43adb0 (IsA nudity natural_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nudnik is a kind of bore", "pln": ["(: cnet_isa_74ca6b5bbb (IsA nudnik bore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nudnik is a kind of pest", "pln": ["(: cnet_isa_0bf0559325 (IsA nudnik pest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nugget is a kind of hunk", "pln": ["(: cnet_isa_7fe39792d8 (IsA nugget hunk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nuisance is a kind of annoyance", "pln": ["(: cnet_isa_d08c107cf3 (IsA nuisance annoyance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "null set is a kind of set", "pln": ["(: cnet_isa_32cd66b2d6 (IsA null_set set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "null space is a kind of mathematical space", "pln": ["(: cnet_isa_3da6cb6557 (IsA null_space mathematical_space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "null vector is a kind of vector", "pln": ["(: cnet_isa_c3d9c182ae (IsA null_vector vector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nullah is a kind of valley", "pln": ["(: cnet_isa_78d24fc1e4 (IsA nullah valley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nullification is a kind of change of state", "pln": ["(: cnet_isa_2805fbc284 (IsA nullification change_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nullification is a kind of state right", "pln": ["(: cnet_isa_7454d1ceb7 (IsA nullification state_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nullifier is a kind of advocate", "pln": ["(: cnet_isa_69b4759ec6 (IsA nullifier advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nullipara is a kind of woman", "pln": ["(: cnet_isa_89ea6612dd (IsA nullipara woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nullity is a kind of act", "pln": ["(: cnet_isa_29eccbad18 (IsA nullity act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "numbat is a kind of dasyurid marsupial", "pln": ["(: cnet_isa_97f0da5d4f (IsA numbat dasyurid_marsupial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "number is a kind of digit of value", "pln": ["(: cnet_isa_abd1031fed (IsA number digit_of_value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "number is a kind of merchandise", "pln": ["(: cnet_isa_d342955d6d (IsA number merchandise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "number is a kind of amount", "pln": ["(: cnet_isa_f030271391 (IsA number amount) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "number is a kind of size", "pln": ["(: cnet_isa_fc5e468eb6 (IsA number size) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "number is a kind of grammatical category", "pln": ["(: cnet_isa_03a9fc519f (IsA number grammatical_category) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "number is a kind of item", "pln": ["(: cnet_isa_7714ef4ec0 (IsA number item) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "number is a kind of positive identification", "pln": ["(: cnet_isa_4f5783e4ae (IsA number positive_identification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "number is a kind of company", "pln": ["(: cnet_isa_30268c39bd (IsA number company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "number is a kind of definite quantity", "pln": ["(: cnet_isa_6769bf2ccd (IsA number definite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "number agreement is a kind of agreement", "pln": ["(: cnet_isa_3377875a29 (IsA number_agreement agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "number cruncher is a kind of computer", "pln": ["(: cnet_isa_476ba7021d (IsA number_cruncher computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "number cruncher is a kind of calculator", "pln": ["(: cnet_isa_444a870ea4 (IsA number_cruncher calculator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "number crunching is a kind of calculation", "pln": ["(: cnet_isa_58ce1d18d5 (IsA number_crunching calculation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "number one is a kind of self", "pln": ["(: cnet_isa_990b71edc6 (IsA number_one self) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "number theorist is a kind of mathematician", "pln": ["(: cnet_isa_8a15b857b7 (IsA number_theorist mathematician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "number is a kind of easier to memorize than other", "pln": ["(: cnet_isa_b2520368a1 (IsA number easier_to_memorize_than_other) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "number pool is a kind of lottery", "pln": ["(: cnet_isa_f1f6333d54 (IsA number_pool lottery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "numbness is a kind of symptom", "pln": ["(: cnet_isa_f7847c63dd (IsA numbness symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "numdah is a kind of rug", "pln": ["(: cnet_isa_78e4edcdce (IsA numdah rug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "numen is a kind of spirit", "pln": ["(: cnet_isa_8e05289853 (IsA numen spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "numenius is a kind of bird genus", "pln": ["(: cnet_isa_8858a16123 (IsA numenius bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "numeracy is a kind of skill", "pln": ["(: cnet_isa_cda0146dad (IsA numeracy skill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "numeral is a kind of symbol", "pln": ["(: cnet_isa_dc48314dca (IsA numeral symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "numeration is a kind of naming", "pln": ["(: cnet_isa_220ea9dfc5 (IsA numeration naming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "numeration system is a kind of mathematical notation", "pln": ["(: cnet_isa_687040e63b (IsA numeration_system mathematical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "numerator is a kind of dividend", "pln": ["(: cnet_isa_0e86bc245b (IsA numerator dividend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "numerical analysis is a kind of pure mathematic", "pln": ["(: cnet_isa_0305c16224 (IsA numerical_analysis pure_mathematic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "numerical quantity is a kind of quantity", "pln": ["(: cnet_isa_a237c70c75 (IsA numerical_quantity quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "numerologist is a kind of believer", "pln": ["(: cnet_isa_a2c5e83490 (IsA numerologist believer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "numerology is a kind of discipline", "pln": ["(: cnet_isa_746f18cd83 (IsA numerology discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "numerousness is a kind of number", "pln": ["(: cnet_isa_32e6183429 (IsA numerousness number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "numida is a kind of bird genus", "pln": ["(: cnet_isa_d533251a61 (IsA numida bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "numidian is a kind of inhabitant", "pln": ["(: cnet_isa_4ec1ec3615 (IsA numidian inhabitant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "numididae is a kind of bird family", "pln": ["(: cnet_isa_6e2508d905 (IsA numididae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "numismatic is a kind of collection", "pln": ["(: cnet_isa_55c8b46e2e (IsA numismatic collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "numismatist is a kind of collector", "pln": ["(: cnet_isa_391b407dba (IsA numismatist collector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nummulite is a kind of foram", "pln": ["(: cnet_isa_e24f898503 (IsA nummulite foram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nummulitidae is a kind of protoctist family", "pln": ["(: cnet_isa_2424f74b18 (IsA nummulitidae protoctist_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nun s habit is a kind of habit", "pln": ["(: cnet_isa_36ea56f85e (IsA nun_s_habit habit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nun is a kind of letter", "pln": ["(: cnet_isa_d60ad89ed5 (IsA nun letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nun is a kind of religious", "pln": ["(: cnet_isa_252d0cd8a5 (IsA nun religious) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nuncio is a kind of diplomat", "pln": ["(: cnet_isa_ebbf9e5228 (IsA nuncio diplomat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nung is a kind of tai", "pln": ["(: cnet_isa_bd81d777a2 (IsA nung tai) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nunnery is a kind of convent", "pln": ["(: cnet_isa_c4e4426b28 (IsA nunnery convent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nuphar is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_a8d8684d82 (IsA nuphar magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nurse is a kind of health professional", "pln": ["(: cnet_isa_b6d13f3188 (IsA nurse health_professional) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nurse log is a kind of log", "pln": ["(: cnet_isa_5dceaae988 (IsA nurse_log log) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nurse midwife is a kind of registered nurse", "pln": ["(: cnet_isa_b9b8bccc44 (IsA nurse_midwife registered_nurse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nurse patient relation is a kind of medical relation", "pln": ["(: cnet_isa_c2d26d0b57 (IsA nurse_patient_relation medical_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nurse practitioner is a kind of registered nurse", "pln": ["(: cnet_isa_b235a54572 (IsA nurse_practitioner registered_nurse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nurse shark is a kind of shark", "pln": ["(: cnet_isa_9245d71cb7 (IsA nurse_shark shark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nurser is a kind of person", "pln": ["(: cnet_isa_0803b0809e (IsA nurser person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nursery is a kind of child s room", "pln": ["(: cnet_isa_7b98786aaf (IsA nursery child_s_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nursery rhyme is a kind of narrative", "pln": ["(: cnet_isa_367b0cb22c (IsA nursery_rhyme narrative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nursery school is a kind of preschool", "pln": ["(: cnet_isa_2853991fe9 (IsA nursery_school preschool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nursing is a kind of care", "pln": ["(: cnet_isa_bfc15d6874 (IsA nursing care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nursing is a kind of infant feeding", "pln": ["(: cnet_isa_245f42c7ad (IsA nursing infant_feeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nursing is a kind of health profession", "pln": ["(: cnet_isa_4cdc4a32d3 (IsA nursing health_profession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nursing aide is a kind of aide", "pln": ["(: cnet_isa_19d2559e71 (IsA nursing_aide aide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nursing bottle is a kind of vessel", "pln": ["(: cnet_isa_ee5a5fec9e (IsA nursing_bottle vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nursing care is a kind of medical care", "pln": ["(: cnet_isa_57835985d2 (IsA nursing_care medical_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nursing patient is a kind of activity", "pln": ["(: cnet_isa_758cf13134 (IsA nursing_patient activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nursing school is a kind of school", "pln": ["(: cnet_isa_41cc0c5465 (IsA nursing_school school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nursling is a kind of baby", "pln": ["(: cnet_isa_cab51fb7d0 (IsA nursling baby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nurturance is a kind of care", "pln": ["(: cnet_isa_9ae3abb28a (IsA nurturance care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nut is a kind of seed", "pln": ["(: cnet_isa_c66909c9fb (IsA nut seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nut is a kind of block", "pln": ["(: cnet_isa_de02a86d38 (IsA nut block) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nut and bolt is a kind of fastener", "pln": ["(: cnet_isa_d8dea3ccf6 (IsA nut_and_bolt fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nut bar is a kind of candy", "pln": ["(: cnet_isa_1bf8536965 (IsA nut_bar candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nut bread is a kind of quick bread", "pln": ["(: cnet_isa_f45d6a4cb2 (IsA nut_bread quick_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nut butter is a kind of spread", "pln": ["(: cnet_isa_011aa3aca4 (IsA nut_butter spread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nut leaved screw tree is a kind of screw tree", "pln": ["(: cnet_isa_c87a962bf2 (IsA nut_leaved_screw_tree screw_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nut pine is a kind of pinon", "pln": ["(: cnet_isa_3104f8ec38 (IsA nut_pine pinon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nut tree is a kind of angiospermous tree", "pln": ["(: cnet_isa_0343e15cb3 (IsA nut_tree angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nutation is a kind of nod", "pln": ["(: cnet_isa_346329d319 (IsA nutation nod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nutcracker is a kind of corvine bird", "pln": ["(: cnet_isa_c43a4edbc5 (IsA nutcracker corvine_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nutcracker is a kind of compound lever", "pln": ["(: cnet_isa_de45c8351c (IsA nutcracker compound_lever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nutgrass is a kind of sedge", "pln": ["(: cnet_isa_4d214ea460 (IsA nutgrass sedge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nuthatch is a kind of oscine", "pln": ["(: cnet_isa_3bfb570769 (IsA nuthatch oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nutlet is a kind of nut", "pln": ["(: cnet_isa_26ac7778b0 (IsA nutlet nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nutmeg is a kind of spice", "pln": ["(: cnet_isa_afb5414045 (IsA nutmeg spice) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nutmeg is a kind of spice tree", "pln": ["(: cnet_isa_225c573ff2 (IsA nutmeg spice_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nutmeg hickory is a kind of hickory", "pln": ["(: cnet_isa_c100da3358 (IsA nutmeg_hickory hickory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nutrient is a kind of substance", "pln": ["(: cnet_isa_9e9fb9fa64 (IsA nutrient substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nutrient artery is a kind of artery", "pln": ["(: cnet_isa_33725d9699 (IsA nutrient_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nutriment is a kind of food", "pln": ["(: cnet_isa_cb0737f854 (IsA nutriment food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nutrition is a kind of science", "pln": ["(: cnet_isa_5cf761d5a1 (IsA nutrition science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nutrition is a kind of organic process", "pln": ["(: cnet_isa_1133b3777c (IsA nutrition organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nutritiousness is a kind of wholesomeness", "pln": ["(: cnet_isa_1228937a94 (IsA nutritiousness wholesomeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nut and bolt is a kind of information", "pln": ["(: cnet_isa_8f8f0b0561 (IsA nut_and_bolt information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nutshell is a kind of shell", "pln": ["(: cnet_isa_53d00ed309 (IsA nutshell shell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nuttall oak is a kind of oak", "pln": ["(: cnet_isa_21e69041a8 (IsA nuttall_oak oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nutter is a kind of eccentric", "pln": ["(: cnet_isa_8a35c88962 (IsA nutter eccentric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nux vomica is a kind of medicine", "pln": ["(: cnet_isa_26fe60911e (IsA nux_vomica medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nuytsia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_a077f14201 (IsA nuytsia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nyala is a kind of harnessed antelope", "pln": ["(: cnet_isa_52be3ad6fe (IsA nyala harnessed_antelope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nyamwezi is a kind of bantu", "pln": ["(: cnet_isa_de380498d7 (IsA nyamwezi bantu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nybble is a kind of computer memory unit", "pln": ["(: cnet_isa_716b21d0a4 (IsA nybble computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nyctaginaceae is a kind of caryophylloid dicot family", "pln": ["(: cnet_isa_e0f7879ab6 (IsA nyctaginaceae caryophylloid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nyctaginia is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_5bb780dd69 (IsA nyctaginia caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nyctalopia is a kind of avitaminosis", "pln": ["(: cnet_isa_5d838c2539 (IsA nyctalopia avitaminosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nyctalopia is a kind of visual impairment", "pln": ["(: cnet_isa_450172d64a (IsA nyctalopia visual_impairment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nyctanassa is a kind of bird genus", "pln": ["(: cnet_isa_471dad809a (IsA nyctanassa bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nyctereute is a kind of mammal genus", "pln": ["(: cnet_isa_a0de657f6c (IsA nyctereute mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nycticebus is a kind of mammal genus", "pln": ["(: cnet_isa_7258bb1379 (IsA nycticebus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nycticorax is a kind of bird genus", "pln": ["(: cnet_isa_919a698736 (IsA nycticorax bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nyctimene is a kind of mammal genus", "pln": ["(: cnet_isa_ae00a17e0f (IsA nyctimene mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nyctophobia is a kind of simple phobia", "pln": ["(: cnet_isa_0ef6a0ae5e (IsA nyctophobia simple_phobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nylon is a kind of man made fabric", "pln": ["(: cnet_isa_f6ed63c32d (IsA nylon man_made_fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nylon is a kind of material", "pln": ["(: cnet_isa_975c5ffec8 (IsA nylon material) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nylon is a kind of synthetic fabric", "pln": ["(: cnet_isa_0887966596 (IsA nylon synthetic_fabric) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nylon is a kind of fabric", "pln": ["(: cnet_isa_cc38d0f654 (IsA nylon fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nylon is a kind of man made fiber", "pln": ["(: cnet_isa_1be18c3a13 (IsA nylon man_made_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nylon is a kind of polyamide", "pln": ["(: cnet_isa_aaa309ce41 (IsA nylon polyamide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nylon is a kind of stocking", "pln": ["(: cnet_isa_dfab4ed2ab (IsA nylon stocking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nymph is a kind of larva", "pln": ["(: cnet_isa_40c224061a (IsA nymph larva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nymph is a kind of graeco roman deity", "pln": ["(: cnet_isa_1450671853 (IsA nymph graeco_roman_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nymph is a kind of woman", "pln": ["(: cnet_isa_1ee6361694 (IsA nymph woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nymphaea is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_6bf1b26717 (IsA nymphaea magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nymphaeaceae is a kind of magnoliid dicot family", "pln": ["(: cnet_isa_82ef7c19ec (IsA nymphaeaceae magnoliid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nymphalid is a kind of butterfly", "pln": ["(: cnet_isa_706126fc8d (IsA nymphalid butterfly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nymphalidae is a kind of arthropod family", "pln": ["(: cnet_isa_d9fa1c9979 (IsA nymphalidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nymphalis is a kind of arthropod genus", "pln": ["(: cnet_isa_daa031e487 (IsA nymphalis arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nymphet is a kind of woman", "pln": ["(: cnet_isa_0f8f284844 (IsA nymphet woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nymphicus is a kind of bird genus", "pln": ["(: cnet_isa_07571b237f (IsA nymphicus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nympholepsy is a kind of craze", "pln": ["(: cnet_isa_06f0c48e4f (IsA nympholepsy craze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nympholept is a kind of unfortunate", "pln": ["(: cnet_isa_fdaacb102e (IsA nympholept unfortunate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nymphomania is a kind of sexual desire", "pln": ["(: cnet_isa_9e4522c09d (IsA nymphomania sexual_desire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "nymphomaniac is a kind of pervert", "pln": ["(: cnet_isa_43633832be (IsA nymphomaniac pervert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "o reilly is a kind of publisher of books", "pln": ["(: cnet_isa_602f86b347 (IsA o_reilly publisher_of_books) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nyquist frequency is a kind of sampling frequency", "pln": ["(: cnet_isa_21c968a9c5 (IsA nyquist_frequency sampling_frequency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nyquist rate is a kind of sampling rate", "pln": ["(: cnet_isa_a1ac361ffc (IsA nyquist_rate sampling_rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nyssa is a kind of dicot genus", "pln": ["(: cnet_isa_6d4ab4be32 (IsA nyssa dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nyssaceae is a kind of dicot family", "pln": ["(: cnet_isa_f80593c4ee (IsA nyssaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "nystagmus is a kind of eye movement", "pln": ["(: cnet_isa_0cdeda6ddb (IsA nystagmus eye_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "o reilly is a kind of publisher of book", "pln": ["(: cnet_isa_2dab65e4d7 (IsA o_reilly publisher_of_book) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "o k is a kind of sanction", "pln": ["(: cnet_isa_afc6155eea (IsA o_k sanction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "o is a kind of blood group", "pln": ["(: cnet_isa_202d7baed1 (IsA o blood_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "o is a kind of letter", "pln": ["(: cnet_isa_53d947b48b (IsA o letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "o level is a kind of grade", "pln": ["(: cnet_isa_bf56865bf1 (IsA o_level grade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "o ring is a kind of gasket", "pln": ["(: cnet_isa_c5fc99e915 (IsA o_ring gasket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oak is a kind of specy", "pln": ["(: cnet_isa_6b380d36ab (IsA oak specy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oak is a kind of tree", "pln": ["(: cnet_isa_736095b8f4 (IsA oak tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oak is a kind of wood", "pln": ["(: cnet_isa_f4ef5aadbc (IsA oak wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oak apple is a kind of gall", "pln": ["(: cnet_isa_407a959251 (IsA oak_apple gall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oak blight is a kind of plant louse", "pln": ["(: cnet_isa_78e9abe00c (IsA oak_blight plant_louse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oak chestnut is a kind of tree", "pln": ["(: cnet_isa_ab50261f01 (IsA oak_chestnut tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oak fern is a kind of fern", "pln": ["(: cnet_isa_54bb179678 (IsA oak_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oak leaf cluster is a kind of decoration", "pln": ["(: cnet_isa_4a185ef3c4 (IsA oak_leaf_cluster decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oak leaved goosefoot is a kind of goosefoot", "pln": ["(: cnet_isa_375e3a74ae (IsA oak_leaved_goosefoot goosefoot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oak park is a kind of in illinoi", "pln": ["(: cnet_isa_ec2f19c2c3 (IsA oak_park in_illinoi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oak park is a kind of in illinois", "pln": ["(: cnet_isa_c0df241c47 (IsA oak_park in_illinois) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oakum is a kind of fiber", "pln": ["(: cnet_isa_20b84dd404 (IsA oakum fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "oar is a kind of implement", "pln": ["(: cnet_isa_08f4e70256 (IsA oar implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oarfish is a kind of soft finned fish", "pln": ["(: cnet_isa_4bfbaa1210 (IsA oarfish soft_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oarsman is a kind of boatman", "pln": ["(: cnet_isa_33b2a4b604 (IsA oarsman boatman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oarsmanship is a kind of skill", "pln": ["(: cnet_isa_011a3002dc (IsA oarsmanship skill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oarswoman is a kind of oarsman", "pln": ["(: cnet_isa_b4423729ac (IsA oarswoman oarsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oasis is a kind of tract", "pln": ["(: cnet_isa_b80968b7c6 (IsA oasis tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oast is a kind of kiln", "pln": ["(: cnet_isa_96353c4c22 (IsA oast kiln) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "oast house is a kind of house", "pln": ["(: cnet_isa_d273fb2dee (IsA oast_house house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oat is a kind of grain", "pln": ["(: cnet_isa_beac68db7e (IsA oat grain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "oat is a kind of cereal", "pln": ["(: cnet_isa_de18d93946 (IsA oat cereal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oat cell carcinoma is a kind of carcinoma", "pln": ["(: cnet_isa_a71f87329e (IsA oat_cell_carcinoma carcinoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oatcake is a kind of quick bread", "pln": ["(: cnet_isa_01682ee037 (IsA oatcake quick_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oath is a kind of commitment", "pln": ["(: cnet_isa_9d1e433a3f (IsA oath commitment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oath is a kind of promise", "pln": ["(: cnet_isa_3e284f8142 (IsA oath promise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oatmeal is a kind of meal", "pln": ["(: cnet_isa_95a21e7478 (IsA oatmeal meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oatmeal is a kind of porridge", "pln": ["(: cnet_isa_e82a4c2fd0 (IsA oatmeal porridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oatmeal cookie is a kind of cookie", "pln": ["(: cnet_isa_f17edd1330 (IsA oatmeal_cookie cookie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obbligato is a kind of motif", "pln": ["(: cnet_isa_0c81850934 (IsA obbligato motif) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obbligato is a kind of section", "pln": ["(: cnet_isa_1bd7994a83 (IsA obbligato section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obeah is a kind of cult", "pln": ["(: cnet_isa_20caae3025 (IsA obeah cult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obeche is a kind of tree", "pln": ["(: cnet_isa_ce324a6459 (IsA obeche tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obeche is a kind of wood", "pln": ["(: cnet_isa_bcd386a3fe (IsA obeche wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "obedience is a kind of compliance", "pln": ["(: cnet_isa_2e1fd929e0 (IsA obedience compliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obedience is a kind of filial duty", "pln": ["(: cnet_isa_6fb64524af (IsA obedience filial_duty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obedience is a kind of tractability", "pln": ["(: cnet_isa_2139498388 (IsA obedience tractability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obelion is a kind of craniometric point", "pln": ["(: cnet_isa_6285978e26 (IsA obelion craniometric_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obelisk is a kind of column", "pln": ["(: cnet_isa_995a701fad (IsA obelisk column) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "oberson is a kind of fairy", "pln": ["(: cnet_isa_1a37840646 (IsA oberson fairy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obfuscation is a kind of blackening", "pln": ["(: cnet_isa_24b40c70d4 (IsA obfuscation blackening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obi is a kind of cult", "pln": ["(: cnet_isa_b373334592 (IsA obi cult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obidoxime chloride is a kind of antidote", "pln": ["(: cnet_isa_6ecfaa9f0c (IsA obidoxime_chloride antidote) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obidoxime chloride is a kind of chloride", "pln": ["(: cnet_isa_dc10df5262 (IsA obidoxime_chloride chloride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obiism is a kind of sorcery", "pln": ["(: cnet_isa_a1e74719c7 (IsA obiism sorcery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obiter dictum is a kind of remark", "pln": ["(: cnet_isa_8cdc16c2c3 (IsA obiter_dictum remark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "obiter dictum is a kind of opinion", "pln": ["(: cnet_isa_7b00b773c8 (IsA obiter_dictum opinion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obituary is a kind of notice", "pln": ["(: cnet_isa_83a8be585e (IsA obituary notice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "object is a kind of thing", "pln": ["(: cnet_isa_07185b72c0 (IsA object thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "object is a kind of physical entity", "pln": ["(: cnet_isa_bd17908bc7 (IsA object physical_entity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "object is a kind of computer science", "pln": ["(: cnet_isa_ffac377b89 (IsA object computer_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "object is a kind of content", "pln": ["(: cnet_isa_34b2ccee84 (IsA object content) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "object is a kind of constituent", "pln": ["(: cnet_isa_cd3a181ca3 (IsA object constituent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "object ball is a kind of billiard ball", "pln": ["(: cnet_isa_970fc7d3dc (IsA object_ball billiard_ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "object code is a kind of code", "pln": ["(: cnet_isa_e2e32054b7 (IsA object_code code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "object language is a kind of language", "pln": ["(: cnet_isa_eee4c6f41f (IsA object_language language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "object language is a kind of programming language", "pln": ["(: cnet_isa_c8bc307b2d (IsA object_language programming_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "object oriented database is a kind of electronic database", "pln": ["(: cnet_isa_162af4b030 (IsA object_oriented_database electronic_database) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "object oriented database management system is a kind of database management system", "pln": ["(: cnet_isa_6f31aaac2b (IsA object_oriented_database_management_system database_management_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "object oriented programming is a kind of programming", "pln": ["(: cnet_isa_39e429bdb5 (IsA object_oriented_programming programming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "object oriented programming language is a kind of programming language", "pln": ["(: cnet_isa_31da422fa5 (IsA object_oriented_programming_language programming_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "object program is a kind of program", "pln": ["(: cnet_isa_bc1e8fa360 (IsA object_program program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "object recognition is a kind of visual perception", "pln": ["(: cnet_isa_e79ae72d7b (IsA object_recognition visual_perception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "objectification is a kind of realization", "pln": ["(: cnet_isa_8858bb53bc (IsA objectification realization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "objectification is a kind of representation", "pln": ["(: cnet_isa_76ce83e69b (IsA objectification representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "objection is a kind of speech act", "pln": ["(: cnet_isa_050c77b0d4 (IsA objection speech_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "objection is a kind of procedure", "pln": ["(: cnet_isa_d5f86e429a (IsA objection procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "objective is a kind of len", "pln": ["(: cnet_isa_4fed46f2c6 (IsA objective len) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "objectivism is a kind of philosophy", "pln": ["(: cnet_isa_bcafadf46e (IsA objectivism philosophy) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "objectivism is a kind of theory", "pln": ["(: cnet_isa_7b6ad59524 (IsA objectivism theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "objectivity is a kind of judgment", "pln": ["(: cnet_isa_5082fb81ad (IsA objectivity judgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "objet d art is a kind of work of art", "pln": ["(: cnet_isa_dc71bcee48 (IsA objet_d_art work_of_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oblanceolate leaf is a kind of simple leaf", "pln": ["(: cnet_isa_977e52abc4 (IsA oblanceolate_leaf simple_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "oblate is a kind of religionist", "pln": ["(: cnet_isa_f75f1c278b (IsA oblate religionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oblateness is a kind of roundedness", "pln": ["(: cnet_isa_ceb278152c (IsA oblateness roundedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oblation is a kind of giving", "pln": ["(: cnet_isa_917c464d90 (IsA oblation giving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oblation is a kind of religious ceremony", "pln": ["(: cnet_isa_95907c7a42 (IsA oblation religious_ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obligate anaerobe is a kind of anaerobe", "pln": ["(: cnet_isa_4d352e1d07 (IsA obligate_anaerobe anaerobe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obligation is a kind of written agreement", "pln": ["(: cnet_isa_067a428882 (IsA obligation written_agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obligation is a kind of personal relation", "pln": ["(: cnet_isa_5fa4765025 (IsA obligation personal_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obligation is a kind of state", "pln": ["(: cnet_isa_6561ecadad (IsA obligation state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "obliger is a kind of benefactor", "pln": ["(: cnet_isa_1aafae64f3 (IsA obliger benefactor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oblique is a kind of case", "pln": ["(: cnet_isa_16a6d7406d (IsA oblique case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oblique angle is a kind of angle", "pln": ["(: cnet_isa_19679fdf66 (IsA oblique_angle angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oblique bandage is a kind of bandage", "pln": ["(: cnet_isa_5732b8e4cb (IsA oblique_bandage bandage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oblique triangle is a kind of triangle", "pln": ["(: cnet_isa_94a98e294c (IsA oblique_triangle triangle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oblique vein of left atrium is a kind of vein", "pln": ["(: cnet_isa_6beaef5f8d (IsA oblique_vein_of_left_atrium vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "obliqueness is a kind of spatial property", "pln": ["(: cnet_isa_58019b1ac4 (IsA obliqueness spatial_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "obliterator is a kind of eliminator", "pln": ["(: cnet_isa_4716322b77 (IsA obliterator eliminator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oblivion is a kind of obscurity", "pln": ["(: cnet_isa_553cd3fbf5 (IsA oblivion obscurity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obliviousness is a kind of forgetfulness", "pln": ["(: cnet_isa_d6f5560103 (IsA obliviousness forgetfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oblong is a kind of plane figure", "pln": ["(: cnet_isa_e5b0183037 (IsA oblong plane_figure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oblong leaf is a kind of simple leaf", "pln": ["(: cnet_isa_abf7e7fb43 (IsA oblong_leaf simple_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obloquy is a kind of shame", "pln": ["(: cnet_isa_563a43485c (IsA obloquy shame) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oboe is a kind of instrument", "pln": ["(: cnet_isa_7d9ecadf08 (IsA oboe instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oboe is a kind of music instrument", "pln": ["(: cnet_isa_c634bd891e (IsA oboe music_instrument) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "oboe is a kind of woodwind", "pln": ["(: cnet_isa_5849c2aa52 (IsA oboe woodwind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oboe is a kind of double reed instrument", "pln": ["(: cnet_isa_95c8ad175e (IsA oboe double_reed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oboe d amore is a kind of oboe", "pln": ["(: cnet_isa_eccc31b932 (IsA oboe_d_amore oboe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oboe da caccia is a kind of oboe", "pln": ["(: cnet_isa_d6f3ae6e8d (IsA oboe_da_caccia oboe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oboist is a kind of musician", "pln": ["(: cnet_isa_6d8acae6ca (IsA oboist musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "obolus is a kind of weight unit", "pln": ["(: cnet_isa_a25530bf30 (IsA obolus weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obovate leaf is a kind of simple leaf", "pln": ["(: cnet_isa_16730111e6 (IsA obovate_leaf simple_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obscenity is a kind of indecency", "pln": ["(: cnet_isa_0d94036f94 (IsA obscenity indecency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obscenity is a kind of profanity", "pln": ["(: cnet_isa_0f40f87b42 (IsA obscenity profanity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obscurantism is a kind of deception", "pln": ["(: cnet_isa_6ead25f47e (IsA obscurantism deception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "obscurantism is a kind of policy", "pln": ["(: cnet_isa_9c4f60d3a6 (IsA obscurantism policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obscurantist is a kind of deceiver", "pln": ["(: cnet_isa_1a5ce4bb89 (IsA obscurantist deceiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "obscureness is a kind of incomprehensibility", "pln": ["(: cnet_isa_31dfa5e6bd (IsA obscureness incomprehensibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obscurity is a kind of semidarkness", "pln": ["(: cnet_isa_13f884f9da (IsA obscurity semidarkness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obscurity is a kind of standing", "pln": ["(: cnet_isa_6627c4d721 (IsA obscurity standing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "obsequiousness is a kind of submissiveness", "pln": ["(: cnet_isa_38c3ed215e (IsA obsequiousness submissiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "observation is a kind of look", "pln": ["(: cnet_isa_4acda597c9 (IsA observation look) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "observation is a kind of measurement", "pln": ["(: cnet_isa_778e37aa94 (IsA observation measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "observation is a kind of fact", "pln": ["(: cnet_isa_0189588b1b (IsA observation fact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "observation is a kind of remark", "pln": ["(: cnet_isa_ada0d2ce78 (IsA observation remark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "observation dome is a kind of lookout", "pln": ["(: cnet_isa_5577087a3c (IsA observation_dome lookout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "observation station is a kind of station", "pln": ["(: cnet_isa_6f5c4d61ce (IsA observation_station station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "observatory is a kind of building", "pln": ["(: cnet_isa_85bfb87c28 (IsA observatory building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "observed fire is a kind of fire", "pln": ["(: cnet_isa_b9ca135c54 (IsA observed_fire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "observer s meridian is a kind of meridian", "pln": ["(: cnet_isa_4c7946bed8 (IsA observer_s_meridian meridian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "observer is a kind of expert", "pln": ["(: cnet_isa_dc1b496635 (IsA observer expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obsession is a kind of preoccupation", "pln": ["(: cnet_isa_86e1d16585 (IsA obsession preoccupation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obsessive is a kind of neurotic", "pln": ["(: cnet_isa_427c2dbf1b (IsA obsessive neurotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obsessive compulsive is a kind of neurotic", "pln": ["(: cnet_isa_8c6a17b5e9 (IsA obsessive_compulsive neurotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obsessive compulsive disorder is a kind of mental illness", "pln": ["(: cnet_isa_bedaf8708d (IsA obsessive_compulsive_disorder mental_illness) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obsessive compulsive disorder is a kind of anxiety disorder", "pln": ["(: cnet_isa_0715ae4df4 (IsA obsessive_compulsive_disorder anxiety_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obsessive compulsive personality is a kind of personality", "pln": ["(: cnet_isa_6dc8269f6b (IsA obsessive_compulsive_personality personality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "obsessiveness is a kind of compulsiveness", "pln": ["(: cnet_isa_ce772f2542 (IsA obsessiveness compulsiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obsidian is a kind of volcanic glass", "pln": ["(: cnet_isa_a0da0565b5 (IsA obsidian volcanic_glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obsolescence is a kind of degeneration", "pln": ["(: cnet_isa_6e75575860 (IsA obsolescence degeneration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obsoleteness is a kind of oldness", "pln": ["(: cnet_isa_d7e062ca01 (IsA obsoleteness oldness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obstacle is a kind of obstruction", "pln": ["(: cnet_isa_6e0732feda (IsA obstacle obstruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "obstacle is a kind of hindrance", "pln": ["(: cnet_isa_09b9fd86e5 (IsA obstacle hindrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obstacle race is a kind of footrace", "pln": ["(: cnet_isa_86fe59c7fe (IsA obstacle_race footrace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obstetrical toad is a kind of frog", "pln": ["(: cnet_isa_07a83d6228 (IsA obstetrical_toad frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obstetrician is a kind of specialist", "pln": ["(: cnet_isa_fc75ccdcbc (IsA obstetrician specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obstetric is a kind of medicine", "pln": ["(: cnet_isa_1dc57e2127 (IsA obstetric medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obstipation is a kind of constipation", "pln": ["(: cnet_isa_7bcab80e30 (IsA obstipation constipation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obstreperousness is a kind of defiance", "pln": ["(: cnet_isa_0ce265087c (IsA obstreperousness defiance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obstruction is a kind of hindrance", "pln": ["(: cnet_isa_f85df66081 (IsA obstruction hindrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obstruction is a kind of maneuver", "pln": ["(: cnet_isa_a07ac102ad (IsA obstruction maneuver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obstruction is a kind of structure", "pln": ["(: cnet_isa_7b09103561 (IsA obstruction structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "obstruction is a kind of physiological state", "pln": ["(: cnet_isa_4b6b3f9a1d (IsA obstruction physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obstruction of justice is a kind of obstruction", "pln": ["(: cnet_isa_d8074e6de1 (IsA obstruction_of_justice obstruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obstructionism is a kind of resistance", "pln": ["(: cnet_isa_df97022111 (IsA obstructionism resistance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obstructionist is a kind of disputant", "pln": ["(: cnet_isa_d977e3092d (IsA obstructionist disputant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obstructive shock is a kind of shock", "pln": ["(: cnet_isa_8667ec9c9c (IsA obstructive_shock shock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obstruent is a kind of consonant", "pln": ["(: cnet_isa_1ff74a6761 (IsA obstruent consonant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obtainment is a kind of acquiring", "pln": ["(: cnet_isa_bba5e2de98 (IsA obtainment acquiring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obtrusiveness is a kind of conspicuousness", "pln": ["(: cnet_isa_b79e961e0e (IsA obtrusiveness conspicuousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obturator is a kind of prosthesis", "pln": ["(: cnet_isa_6ed17a63ad (IsA obturator prosthesis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obturator vein is a kind of vein", "pln": ["(: cnet_isa_0f66167672 (IsA obturator_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "obtuse angle is a kind of oblique angle", "pln": ["(: cnet_isa_b838cc6ef4 (IsA obtuse_angle oblique_angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obtuse leaf is a kind of simple leaf", "pln": ["(: cnet_isa_6e714c8ea3 (IsA obtuse_leaf simple_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obtuse triangle is a kind of triangle", "pln": ["(: cnet_isa_255791b773 (IsA obtuse_triangle triangle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obtuseness is a kind of dullness", "pln": ["(: cnet_isa_6f21a57936 (IsA obtuseness dullness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obverse is a kind of side", "pln": ["(: cnet_isa_1aaa0c4e8c (IsA obverse side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "obverse is a kind of option", "pln": ["(: cnet_isa_0d897021e7 (IsA obverse option) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obviation is a kind of prevention", "pln": ["(: cnet_isa_d4048f6137 (IsA obviation prevention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "obviousness is a kind of conspicuousness", "pln": ["(: cnet_isa_0d0bd5be33 (IsA obviousness conspicuousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oca is a kind of oxalis", "pln": ["(: cnet_isa_2add09b46e (IsA oca oxalis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ocarina is a kind of wind instrument", "pln": ["(: cnet_isa_aecf9ca37b (IsA ocarina wind_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "occam s razor is a kind of principle", "pln": ["(: cnet_isa_1dd8dc715a (IsA occam_s_razor principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "occasion is a kind of reason", "pln": ["(: cnet_isa_3a0ec3b952 (IsA occasion reason) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "occasion is a kind of opportunity", "pln": ["(: cnet_isa_77ef9bd9b2 (IsA occasion opportunity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "occasion is a kind of time", "pln": ["(: cnet_isa_676fed6712 (IsA occasion time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "occasion is a kind of business", "pln": ["(: cnet_isa_e4c65fc757 (IsA occasion business) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "occidental is a kind of artificial language", "pln": ["(: cnet_isa_f06af4f92f (IsA occidental artificial_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "occidental is a kind of inhabitant", "pln": ["(: cnet_isa_5af30b8f9a (IsA occidental inhabitant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "occidentalism is a kind of quality", "pln": ["(: cnet_isa_d13f2e3b58 (IsA occidentalism quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "occidentalism is a kind of humanistic discipline", "pln": ["(: cnet_isa_524b302d4b (IsA occidentalism humanistic_discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "occipital bone is a kind of membrane bone", "pln": ["(: cnet_isa_98e7c79421 (IsA occipital_bone membrane_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "occipital gyrus is a kind of gyrus", "pln": ["(: cnet_isa_20b0c411a6 (IsA occipital_gyrus gyrus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "occipital lobe is a kind of lobe", "pln": ["(: cnet_isa_5233bee9ee (IsA occipital_lobe lobe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "occipital protuberance is a kind of bulge", "pln": ["(: cnet_isa_ba813724e0 (IsA occipital_protuberance bulge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "occipital vein is a kind of vein", "pln": ["(: cnet_isa_19be6c7c6b (IsA occipital_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "occipitomastoid suture is a kind of suture", "pln": ["(: cnet_isa_274edd488d (IsA occipitomastoid_suture suture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "occiput is a kind of bone", "pln": ["(: cnet_isa_5003d92136 (IsA occiput bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "occluded front is a kind of front", "pln": ["(: cnet_isa_65d60dc852 (IsA occluded_front front) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "occlusion is a kind of position", "pln": ["(: cnet_isa_06a2ccf50e (IsA occlusion position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "occlusion is a kind of attack", "pln": ["(: cnet_isa_c4c0e8afc4 (IsA occlusion attack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "occult is a kind of practice", "pln": ["(: cnet_isa_042016bbea (IsA occult practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "occultism is a kind of discipline", "pln": ["(: cnet_isa_c5030561f7 (IsA occultism discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "occultism is a kind of supernaturalism", "pln": ["(: cnet_isa_e1aaf5dd35 (IsA occultism supernaturalism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "occultist is a kind of person", "pln": ["(: cnet_isa_1aa79a63ea (IsA occultist person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "occupancy is a kind of residency", "pln": ["(: cnet_isa_7244545b9f (IsA occupancy residency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "occupancy rate is a kind of percentage", "pln": ["(: cnet_isa_61766d26f0 (IsA occupancy_rate percentage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "occupation is a kind of acquiring", "pln": ["(: cnet_isa_d709d489d8 (IsA occupation acquiring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "occupation is a kind of activity", "pln": ["(: cnet_isa_8d694f6f59 (IsA occupation activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "occupation is a kind of social control", "pln": ["(: cnet_isa_4c4e398b26 (IsA occupation social_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "occupation is a kind of time period", "pln": ["(: cnet_isa_004f13c27f (IsA occupation time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "occupation license is a kind of license", "pln": ["(: cnet_isa_e48f0535b9 (IsA occupation_license license) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "occupational disease is a kind of disease", "pln": ["(: cnet_isa_7248e7f435 (IsA occupational_disease disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "occupational group is a kind of body", "pln": ["(: cnet_isa_88b5026b73 (IsA occupational_group body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "occupational hazard is a kind of hazard", "pln": ["(: cnet_isa_9594db726c (IsA occupational_hazard hazard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "occupational safety and health act is a kind of legislation", "pln": ["(: cnet_isa_02b5f66656 (IsA occupational_safety_and_health_act legislation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "occupational safety and health administration is a kind of agency", "pln": ["(: cnet_isa_6b3430d0a0 (IsA occupational_safety_and_health_administration agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "occupational therapy is a kind of therapy", "pln": ["(: cnet_isa_17f5ec21e9 (IsA occupational_therapy therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "occupier is a kind of serviceman", "pln": ["(: cnet_isa_55eadb676f (IsA occupier serviceman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "occurrence is a kind of presence", "pln": ["(: cnet_isa_3319d206a7 (IsA occurrence presence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ocd is a kind of disease", "pln": ["(: cnet_isa_1b33113156 (IsA ocd disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ocd is a kind of life long psychological anxiety disorder", "pln": ["(: cnet_isa_acaa54ea7d (IsA ocd life_long_psychological_anxiety_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ocean is a kind of body of water", "pln": ["(: cnet_isa_03cd22d450 (IsA ocean body_of_water) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ocean is a kind of great mass of water", "pln": ["(: cnet_isa_0f7c1e2a6d (IsA ocean great_mass_of_water) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ocean is a kind of large indefinite quantity", "pln": ["(: cnet_isa_278d551048 (IsA ocean large_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ocean current is a kind of current", "pln": ["(: cnet_isa_90e8cb4034 (IsA ocean_current current) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ocean floor is a kind of bed", "pln": ["(: cnet_isa_f1b13b53b9 (IsA ocean_floor bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ocean pout is a kind of eelpout", "pln": ["(: cnet_isa_639a2eb650 (IsA ocean_pout eelpout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ocean sunfish is a kind of plectognath", "pln": ["(: cnet_isa_88c71bd855 (IsA ocean_sunfish plectognath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ocean trip is a kind of water travel", "pln": ["(: cnet_isa_9d077a60f3 (IsA ocean_trip water_travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oceanfront is a kind of geological formation", "pln": ["(: cnet_isa_8a98ee06f7 (IsA oceanfront geological_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oceanic is a kind of malayo polynesian", "pln": ["(: cnet_isa_39ee3a68dd (IsA oceanic malayo_polynesian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oceanid is a kind of sea nymph", "pln": ["(: cnet_isa_00135ac124 (IsA oceanid sea_nymph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oceanite is a kind of bird genus", "pln": ["(: cnet_isa_16e9cf1000 (IsA oceanite bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oceanographer is a kind of scientist", "pln": ["(: cnet_isa_d9598e2206 (IsA oceanographer scientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oceanography is a kind of earth science", "pln": ["(: cnet_isa_aeab898ce1 (IsA oceanography earth_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ocellated turkey is a kind of gallinaceous bird", "pln": ["(: cnet_isa_891215f943 (IsA ocellated_turkey gallinaceous_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ocelot is a kind of wildcat", "pln": ["(: cnet_isa_a5ba615dcb (IsA ocelot wildcat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ocher is a kind of orange yellow", "pln": ["(: cnet_isa_64aaac825c (IsA ocher orange_yellow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ocher is a kind of earth color", "pln": ["(: cnet_isa_46047705b4 (IsA ocher earth_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ochlocracy is a kind of political system", "pln": ["(: cnet_isa_81c6a8abb3 (IsA ochlocracy political_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ochna is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_11e321e9b5 (IsA ochna dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ochnaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_2679155794 (IsA ochnaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ochotona is a kind of mammal genus", "pln": ["(: cnet_isa_1fbd88c67f (IsA ochotona mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ochotonidae is a kind of mammal family", "pln": ["(: cnet_isa_4a6f917ea2 (IsA ochotonidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ochroma is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_d76038c336 (IsA ochroma dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ochronosis is a kind of symptom", "pln": ["(: cnet_isa_c4d6782266 (IsA ochronosis symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ocimum is a kind of asterid dicot genus", "pln": ["(: cnet_isa_5da66f533c (IsA ocimum asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oconee bell is a kind of shortia", "pln": ["(: cnet_isa_7b8c1a48fe (IsA oconee_bell shortia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ocotillo is a kind of candlewood", "pln": ["(: cnet_isa_641b55a139 (IsA ocotillo candlewood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "octagon is a kind of figure", "pln": ["(: cnet_isa_3fb0fdfb8c (IsA octagon figure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "octagon is a kind of shape", "pln": ["(: cnet_isa_20e58f6929 (IsA octagon shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "octagon is a kind of polygon", "pln": ["(: cnet_isa_4270e19a51 (IsA octagon polygon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "octahedron is a kind of polyhedron", "pln": ["(: cnet_isa_aaa50e970e (IsA octahedron polyhedron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "octal digit is a kind of digit", "pln": ["(: cnet_isa_a88598cd05 (IsA octal_digit digit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "octal notation is a kind of mathematical notation", "pln": ["(: cnet_isa_cfa08be27f (IsA octal_notation mathematical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "octal numeration system is a kind of positional notation", "pln": ["(: cnet_isa_1c68c04221 (IsA octal_numeration_system positional_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "octameter is a kind of verse", "pln": ["(: cnet_isa_e0530a8ed1 (IsA octameter verse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "octane is a kind of hydrocarbon", "pln": ["(: cnet_isa_e483a42587 (IsA octane hydrocarbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "octane number is a kind of measure", "pln": ["(: cnet_isa_7437f9b7d9 (IsA octane_number measure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "octant is a kind of measuring instrument", "pln": ["(: cnet_isa_5788be8a79 (IsA octant measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "octave is a kind of interval", "pln": ["(: cnet_isa_c726cb1839 (IsA octave interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "octave is a kind of stanza", "pln": ["(: cnet_isa_e1adfcbcc8 (IsA octave stanza) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "octave is a kind of religious festival", "pln": ["(: cnet_isa_b9f4d5219d (IsA octave religious_festival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "octavo is a kind of size", "pln": ["(: cnet_isa_6c081340f5 (IsA octavo size) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "octet is a kind of musical composition", "pln": ["(: cnet_isa_138f4ed4f4 (IsA octet musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "octet is a kind of gathering", "pln": ["(: cnet_isa_b5dd431531 (IsA octet gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "octogon is a kind of closed shape with eight sides", "pln": ["(: cnet_isa_6fff03f233 (IsA octogon closed_shape_with_eight_sides) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "octet is a kind of musical organization", "pln": ["(: cnet_isa_6eee3b0359 (IsA octet musical_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "octet is a kind of set", "pln": ["(: cnet_isa_a57c3e6926 (IsA octet set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "octillion is a kind of large integer", "pln": ["(: cnet_isa_6f7c35c9e3 (IsA octillion large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "october is a kind of gregorian calendar month", "pln": ["(: cnet_isa_2c8efd5a60 (IsA october gregorian_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "octogenarian is a kind of oldster", "pln": ["(: cnet_isa_06cb3ffc07 (IsA octogenarian oldster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "octogon is a kind of closed shape with eight side", "pln": ["(: cnet_isa_828c247830 (IsA octogon closed_shape_with_eight_side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "octopod is a kind of cephalopod", "pln": ["(: cnet_isa_23fb227acc (IsA octopod cephalopod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "octopoda is a kind of animal order", "pln": ["(: cnet_isa_fe25c336f9 (IsA octopoda animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "octopodidae is a kind of mollusk family", "pln": ["(: cnet_isa_64bfa1d966 (IsA octopodidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "octopus is a kind of octopod", "pln": ["(: cnet_isa_3828311980 (IsA octopus octopod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "octopus is a kind of seafood", "pln": ["(: cnet_isa_1c78f15406 (IsA octopus seafood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "octoroon is a kind of mixed blood", "pln": ["(: cnet_isa_13d017aa29 (IsA octoroon mixed_blood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "octosyllable is a kind of verse", "pln": ["(: cnet_isa_013acbf230 (IsA octosyllable verse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "octroi is a kind of duty", "pln": ["(: cnet_isa_31b67675ed (IsA octroi duty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ocular muscle is a kind of muscle", "pln": ["(: cnet_isa_678b2e5be6 (IsA ocular_muscle muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oculism is a kind of trade", "pln": ["(: cnet_isa_6024fde2a4 (IsA oculism trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "oculomotor is a kind of cranial nerve", "pln": ["(: cnet_isa_e9c472ae98 (IsA oculomotor cranial_nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oculopharyngeal muscular dystrophy is a kind of muscular dystrophy", "pln": ["(: cnet_isa_f11c303fde (IsA oculopharyngeal_muscular_dystrophy muscular_dystrophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oculus dexter is a kind of eye", "pln": ["(: cnet_isa_edb3154cda (IsA oculus_dexter eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oculus sinister is a kind of eye", "pln": ["(: cnet_isa_0c5c9ae898 (IsA oculus_sinister eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ocyurus is a kind of fish genus", "pln": ["(: cnet_isa_7e0d2c5d02 (IsA ocyurus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "odalisque is a kind of concubine", "pln": ["(: cnet_isa_a37e639c30 (IsA odalisque concubine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "odd leg caliper is a kind of caliper", "pln": ["(: cnet_isa_5982d63747 (IsA odd_leg_caliper caliper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "odd pinnate leaf is a kind of pinnate leaf", "pln": ["(: cnet_isa_f865163695 (IsA odd_pinnate_leaf pinnate_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "odd toed ungulate is a kind of ungulate", "pln": ["(: cnet_isa_67732da270 (IsA odd_toed_ungulate ungulate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oddity is a kind of eccentricity", "pln": ["(: cnet_isa_ea16b0c2cd (IsA oddity eccentricity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oddity is a kind of unfamiliarity", "pln": ["(: cnet_isa_ee60b31295 (IsA oddity unfamiliarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oddness is a kind of parity", "pln": ["(: cnet_isa_8e998cde05 (IsA oddness parity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "odd is a kind of likelihood", "pln": ["(: cnet_isa_a598cdd055 (IsA odd likelihood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "odd is a kind of ratio", "pln": ["(: cnet_isa_6f033cddb9 (IsA odd ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "odd and end is a kind of assortment", "pln": ["(: cnet_isa_58d6e1f07c (IsA odd_and_end assortment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "odd maker is a kind of gambler", "pln": ["(: cnet_isa_3faeeac592 (IsA odd_maker gambler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ode is a kind of lyric", "pln": ["(: cnet_isa_ff64f35651 (IsA ode lyric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "odist is a kind of poet", "pln": ["(: cnet_isa_ae65d15c93 (IsA odist poet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "odium is a kind of shame", "pln": ["(: cnet_isa_dd0d95974e (IsA odium shame) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "odobenidae is a kind of mammal family", "pln": ["(: cnet_isa_18c4730806 (IsA odobenidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "odobenus is a kind of mammal genus", "pln": ["(: cnet_isa_1dc0664c6d (IsA odobenus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "odocoileus is a kind of mammal genus", "pln": ["(: cnet_isa_c46fa57103 (IsA odocoileus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "odometer is a kind of meter", "pln": ["(: cnet_isa_ceb1605678 (IsA odometer meter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "odonata is a kind of animal order", "pln": ["(: cnet_isa_13c34e427e (IsA odonata animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "odonate is a kind of insect", "pln": ["(: cnet_isa_8a4ca524a7 (IsA odonate insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "odontoceti is a kind of animal order", "pln": ["(: cnet_isa_a0d45865a8 (IsA odontoceti animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "odontoglossum is a kind of orchid", "pln": ["(: cnet_isa_3ca864d7ed (IsA odontoglossum orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "odontoid process is a kind of process", "pln": ["(: cnet_isa_d99ee91bfe (IsA odontoid_process process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "odontophorus is a kind of bird genus", "pln": ["(: cnet_isa_663ca64b33 (IsA odontophorus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "odynophagia is a kind of pain", "pln": ["(: cnet_isa_4a67819cd1 (IsA odynophagia pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "odyssey is a kind of journey", "pln": ["(: cnet_isa_0613af4031 (IsA odyssey journey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oecanthus is a kind of arthropod genus", "pln": ["(: cnet_isa_76c4bab059 (IsA oecanthus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oecumenism is a kind of movement", "pln": ["(: cnet_isa_1802393188 (IsA oecumenism movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oedipus complex is a kind of complex", "pln": ["(: cnet_isa_d30ede75dc (IsA oedipus_complex complex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oedogoniaceae is a kind of protoctist family", "pln": ["(: cnet_isa_c24666cb31 (IsA oedogoniaceae protoctist_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oedogoniale is a kind of protoctist order", "pln": ["(: cnet_isa_e72eb54543 (IsA oedogoniale protoctist_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oedogonium is a kind of protoctist genus", "pln": ["(: cnet_isa_e1f79c8e77 (IsA oedogonium protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oeil de boeuf is a kind of window", "pln": ["(: cnet_isa_eec5347a28 (IsA oeil_de_boeuf window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oenanthe is a kind of bird genus", "pln": ["(: cnet_isa_e6ca8fbcfd (IsA oenanthe bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oenanthe is a kind of rosid dicot genus", "pln": ["(: cnet_isa_5d88914413 (IsA oenanthe rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oenomel is a kind of beverage", "pln": ["(: cnet_isa_0fbca0e9fd (IsA oenomel beverage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oenophile is a kind of connoisseur", "pln": ["(: cnet_isa_e25ea239a4 (IsA oenophile connoisseur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oenothera is a kind of dicot genus", "pln": ["(: cnet_isa_3a29f5dc24 (IsA oenothera dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oersted is a kind of field strength unit", "pln": ["(: cnet_isa_9bfbf642a9 (IsA oersted field_strength_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oestridae is a kind of arthropod family", "pln": ["(: cnet_isa_c444ac3455 (IsA oestridae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oestrus is a kind of arthropod genus", "pln": ["(: cnet_isa_7a406bef1d (IsA oestrus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oeuvre is a kind of end product", "pln": ["(: cnet_isa_6496613bc8 (IsA oeuvre end_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "off day is a kind of day", "pln": ["(: cnet_isa_a76318c78a (IsA off_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "off line equipment is a kind of electronic equipment", "pln": ["(: cnet_isa_179a86cd50 (IsA off_line_equipment electronic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "off season is a kind of season", "pln": ["(: cnet_isa_9341f628ff (IsA off_season season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "off year is a kind of year", "pln": ["(: cnet_isa_eee6f81f27 (IsA off_year year) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "offal is a kind of variety meat", "pln": ["(: cnet_isa_d275abbe20 (IsA offal variety_meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "offense is a kind of operation", "pln": ["(: cnet_isa_d7cfc2a857 (IsA offense operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "offense is a kind of team", "pln": ["(: cnet_isa_09ecc495c1 (IsA offense team) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "offensiveness is a kind of unpleasantness", "pln": ["(: cnet_isa_249a56fce8 (IsA offensiveness unpleasantness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "offer is a kind of message", "pln": ["(: cnet_isa_c3ecd6bf82 (IsA offer message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "offer is a kind of speech act", "pln": ["(: cnet_isa_220257b0c0 (IsA offer speech_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "offer price is a kind of asking price", "pln": ["(: cnet_isa_86786450bd (IsA offer_price asking_price) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "offerer is a kind of benefactor", "pln": ["(: cnet_isa_49dca9f268 (IsA offerer benefactor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "offering is a kind of contribution", "pln": ["(: cnet_isa_13231c09e5 (IsA offering contribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "offertory is a kind of oblation", "pln": ["(: cnet_isa_0b5d36d875 (IsA offertory oblation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "offertory is a kind of offering", "pln": ["(: cnet_isa_f9a5d22728 (IsA offertory offering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "office is a kind of rite", "pln": ["(: cnet_isa_9f785e19c4 (IsA office rite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "office is a kind of place of business", "pln": ["(: cnet_isa_43fe74739b (IsA office place_of_business) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "office is a kind of state", "pln": ["(: cnet_isa_bb6e563a79 (IsA office state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "office is a kind of staff", "pln": ["(: cnet_isa_1bd1591bb4 (IsA office staff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "office bearer is a kind of incumbent", "pln": ["(: cnet_isa_5629b2d04d (IsA office_bearer incumbent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "office boy is a kind of employee", "pln": ["(: cnet_isa_67e1539dfc (IsA office_boy employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "office building is a kind of building", "pln": ["(: cnet_isa_aea32a4d16 (IsA office_building building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "office furniture is a kind of furniture", "pln": ["(: cnet_isa_6b26c84dde (IsA office_furniture furniture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "office of dead is a kind of office", "pln": ["(: cnet_isa_d6c357e88b (IsA office_of_dead office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "office of inspector general is a kind of independent agency", "pln": ["(: cnet_isa_aec64cf009 (IsA office_of_inspector_general independent_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "office of intelligence support is a kind of agency", "pln": ["(: cnet_isa_d9c984d044 (IsA office_of_intelligence_support agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "office of management and budget is a kind of executive agency", "pln": ["(: cnet_isa_0fb841c95b (IsA office_of_management_and_budget executive_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "office of naval intelligence is a kind of agency", "pln": ["(: cnet_isa_263ea257c5 (IsA office_of_naval_intelligence agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "officeholder is a kind of holder", "pln": ["(: cnet_isa_e3b1f96d68 (IsA officeholder holder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "officeholder is a kind of official", "pln": ["(: cnet_isa_952f690273 (IsA officeholder official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "officer s mess is a kind of mess", "pln": ["(: cnet_isa_0566c5cf03 (IsA officer_s_mess mess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "officer is a kind of mariner", "pln": ["(: cnet_isa_bfdf2a11dd (IsA officer mariner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "official is a kind of adjudicator", "pln": ["(: cnet_isa_4e08e292c5 (IsA official adjudicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "official is a kind of skilled worker", "pln": ["(: cnet_isa_9941919570 (IsA official skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "official immunity is a kind of exemption", "pln": ["(: cnet_isa_400b5d8430 (IsA official_immunity exemption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "officialese is a kind of expressive style", "pln": ["(: cnet_isa_0bc9d863cc (IsA officialese expressive_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "officiant is a kind of clergyman", "pln": ["(: cnet_isa_fa6414f4d7 (IsA officiant clergyman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "officiation is a kind of performance", "pln": ["(: cnet_isa_215474e79c (IsA officiation performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "offing is a kind of body of water", "pln": ["(: cnet_isa_3209e77b70 (IsA offing body_of_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "offing is a kind of future", "pln": ["(: cnet_isa_9bfe5a0947 (IsA offing future) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "offprint is a kind of article", "pln": ["(: cnet_isa_d39c4c57df (IsA offprint article) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "offset is a kind of printing", "pln": ["(: cnet_isa_ebfb78c428 (IsA offset printing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "offset lithography is a kind of lithography", "pln": ["(: cnet_isa_e7b52fe2bb (IsA offset_lithography lithography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "offside is a kind of mistake", "pln": ["(: cnet_isa_a5434d38f8 (IsA offside mistake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "offspring is a kind of consequence", "pln": ["(: cnet_isa_50b7fbc3ef (IsA offspring consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "offspring is a kind of relative", "pln": ["(: cnet_isa_611910ac21 (IsA offspring relative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ofo is a kind of siouan", "pln": ["(: cnet_isa_67e079c3ec (IsA ofo siouan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ogalala is a kind of teton dakota", "pln": ["(: cnet_isa_d458baf9bf (IsA ogalala teton_dakota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ogcocephalidae is a kind of fish family", "pln": ["(: cnet_isa_f231bc8457 (IsA ogcocephalidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ogee arch is a kind of pointed arch", "pln": ["(: cnet_isa_f14a6bea44 (IsA ogee_arch pointed_arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "oglala is a kind of siouan", "pln": ["(: cnet_isa_0f32fc6d6b (IsA oglala siouan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ogler is a kind of spectator", "pln": ["(: cnet_isa_f518f4bc86 (IsA ogler spectator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ogre is a kind of large cruel man", "pln": ["(: cnet_isa_5731255556 (IsA ogre large_cruel_man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ogre is a kind of giant", "pln": ["(: cnet_isa_44c3ebf745 (IsA ogre giant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ogress is a kind of ogre", "pln": ["(: cnet_isa_4090eae1cb (IsA ogress ogre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ohio is a kind of state", "pln": ["(: cnet_isa_f7d2bfad8d (IsA ohio state) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ohio buckeye is a kind of horse chestnut", "pln": ["(: cnet_isa_87f9d25057 (IsA ohio_buckeye horse_chestnut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ohio goldenrod is a kind of goldenrod", "pln": ["(: cnet_isa_097b78b3bb (IsA ohio_goldenrod goldenrod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ohm s law is a kind of law", "pln": ["(: cnet_isa_28932f1fce (IsA ohm_s_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ohm is a kind of measurement", "pln": ["(: cnet_isa_ee46d9e794 (IsA ohm measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ohm is a kind of unit of measurement", "pln": ["(: cnet_isa_af9b4d203f (IsA ohm unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ohm is a kind of resistance unit", "pln": ["(: cnet_isa_213100eb49 (IsA ohm resistance_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ohmage is a kind of electric resistance", "pln": ["(: cnet_isa_18b8727e44 (IsA ohmage electric_resistance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ohmmeter is a kind of meter", "pln": ["(: cnet_isa_fc4216759b (IsA ohmmeter meter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil is a kind of fluid", "pln": ["(: cnet_isa_0f405514e0 (IsA oil fluid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil is a kind of oil paint", "pln": ["(: cnet_isa_f4e495b541 (IsA oil oil_paint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil is a kind of lipid", "pln": ["(: cnet_isa_dfda5bfb59 (IsA oil lipid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil beetle is a kind of blister beetle", "pln": ["(: cnet_isa_977a1eb4c7 (IsA oil_beetle blister_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil burner is a kind of furnace", "pln": ["(: cnet_isa_2877c12922 (IsA oil_burner furnace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil cake is a kind of feed", "pln": ["(: cnet_isa_bdd21f01b4 (IsA oil_cake feed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "oil cartel is a kind of trust", "pln": ["(: cnet_isa_ede5a0e163 (IsA oil_cartel trust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil change is a kind of car care", "pln": ["(: cnet_isa_ba316c5a67 (IsA oil_change car_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil company is a kind of company", "pln": ["(: cnet_isa_2461bd6580 (IsA oil_company company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil conservation is a kind of conservation", "pln": ["(: cnet_isa_4973cd394d (IsA oil_conservation conservation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil filter is a kind of filter", "pln": ["(: cnet_isa_0f03501c87 (IsA oil_filter filter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil future is a kind of future", "pln": ["(: cnet_isa_7d48ac7f01 (IsA oil_future future) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil gland is a kind of exocrine gland", "pln": ["(: cnet_isa_ab0218da8a (IsA oil_gland exocrine_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil hardened steel is a kind of quenched steel", "pln": ["(: cnet_isa_614cf6b9e2 (IsA oil_hardened_steel quenched_steel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil heater is a kind of heater", "pln": ["(: cnet_isa_f58baa24ef (IsA oil_heater heater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil industry is a kind of industry", "pln": ["(: cnet_isa_17a855936a (IsA oil_industry industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil industry analyst is a kind of industry analyst", "pln": ["(: cnet_isa_527b77fdb5 (IsA oil_industry_analyst industry_analyst) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil lamp is a kind of lamp", "pln": ["(: cnet_isa_2347f99c05 (IsA oil_lamp lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil meal is a kind of oil cake", "pln": ["(: cnet_isa_70ee65740f (IsA oil_meal oil_cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil paint is a kind of paint", "pln": ["(: cnet_isa_f12594e7ea (IsA oil_paint paint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil painter is a kind of painter", "pln": ["(: cnet_isa_6bc3d86c62 (IsA oil_painter painter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil painting is a kind of painting", "pln": ["(: cnet_isa_8cbf60db4f (IsA oil_painting painting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil palm is a kind of feather palm", "pln": ["(: cnet_isa_80ff778750 (IsA oil_palm feather_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil pipeline is a kind of pipeline", "pln": ["(: cnet_isa_2f2602d101 (IsA oil_pipeline pipeline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil pressure is a kind of pressure", "pln": ["(: cnet_isa_b4728721d7 (IsA oil_pressure pressure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil pump is a kind of pump", "pln": ["(: cnet_isa_476a3cfcd6 (IsA oil_pump pump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil refinery is a kind of refinery", "pln": ["(: cnet_isa_d46d332f3b (IsA oil_refinery refinery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil shale is a kind of shale", "pln": ["(: cnet_isa_c257a516f8 (IsA oil_shale shale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil slick is a kind of slick", "pln": ["(: cnet_isa_b61c492460 (IsA oil_slick slick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil stain is a kind of stain", "pln": ["(: cnet_isa_040b50769c (IsA oil_stain stain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil tanker is a kind of cargo ship", "pln": ["(: cnet_isa_ed0ee5a668 (IsA oil_tanker cargo_ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil tycoon is a kind of baron", "pln": ["(: cnet_isa_38b8f883ca (IsA oil_tycoon baron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil water interface is a kind of interface", "pln": ["(: cnet_isa_548b218343 (IsA oil_water_interface interface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oil well is a kind of well", "pln": ["(: cnet_isa_30b08b3e29 (IsA oil_well well) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oilbird is a kind of caprimulgiform bird", "pln": ["(: cnet_isa_ea75b78d8a (IsA oilbird caprimulgiform_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oilcan is a kind of can", "pln": ["(: cnet_isa_854f2ec081 (IsA oilcan can) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oilcloth is a kind of fabric", "pln": ["(: cnet_isa_411da97307 (IsA oilcloth fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oiler is a kind of worker", "pln": ["(: cnet_isa_343134f6f5 (IsA oiler worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "oilfield is a kind of field", "pln": ["(: cnet_isa_05b72e352e (IsA oilfield field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oilfish is a kind of gempylid", "pln": ["(: cnet_isa_0f04e3437d (IsA oilfish gempylid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oilman is a kind of businessman", "pln": ["(: cnet_isa_c99a57db2c (IsA oilman businessman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oilman is a kind of skilled worker", "pln": ["(: cnet_isa_a84d4a1bf0 (IsA oilman skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oilpaper is a kind of paper", "pln": ["(: cnet_isa_dc600465f1 (IsA oilpaper paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oilseed is a kind of seed", "pln": ["(: cnet_isa_182cb98c72 (IsA oilseed seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oilskin is a kind of macintosh", "pln": ["(: cnet_isa_5ddcc86777 (IsA oilskin macintosh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oilstone is a kind of whetstone", "pln": ["(: cnet_isa_a64756a14c (IsA oilstone whetstone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ointment is a kind of remedy", "pln": ["(: cnet_isa_f5525f3d4e (IsA ointment remedy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oireachta is a kind of parliament", "pln": ["(: cnet_isa_7da6b65a3e (IsA oireachta parliament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ojibwa is a kind of algonquian", "pln": ["(: cnet_isa_e086f212db (IsA ojibwa algonquian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oka is a kind of liquid unit", "pln": ["(: cnet_isa_5ae8b338b0 (IsA oka liquid_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "oka is a kind of weight unit", "pln": ["(: cnet_isa_fb64fd9020 (IsA oka weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "okapi is a kind of giraffe", "pln": ["(: cnet_isa_9973038c44 (IsA okapi giraffe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "okapia is a kind of mammal genus", "pln": ["(: cnet_isa_ee1e619f83 (IsA okapia mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oklahoman is a kind of american", "pln": ["(: cnet_isa_45adf1c946 (IsA oklahoman american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "okra is a kind of herb", "pln": ["(: cnet_isa_23c700a1e1 (IsA okra herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "okra is a kind of pod", "pln": ["(: cnet_isa_13e815d5fa (IsA okra pod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oktoberfest is a kind of festival", "pln": ["(: cnet_isa_fcd983787a (IsA oktoberfest festival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oktoberfest is a kind of lager", "pln": ["(: cnet_isa_c0ce631dfb (IsA oktoberfest lager) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ola is a kind of writing paper", "pln": ["(: cnet_isa_092fb7577f (IsA ola writing_paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old is a kind of past", "pln": ["(: cnet_isa_534f3c967b (IsA old past) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old age is a kind of time of life", "pln": ["(: cnet_isa_2cb5533f8e (IsA old_age time_of_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old age insurance is a kind of social security", "pln": ["(: cnet_isa_1da12c7e25 (IsA old_age_insurance social_security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old age pension is a kind of pension", "pln": ["(: cnet_isa_d03536cef4 (IsA old_age_pension pension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old age pensioner is a kind of pensioner", "pln": ["(: cnet_isa_57998442e8 (IsA old_age_pensioner pensioner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old bailey is a kind of criminal court", "pln": ["(: cnet_isa_426abcc777 (IsA old_bailey criminal_court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "old boy is a kind of alumnus", "pln": ["(: cnet_isa_8a28d03f2c (IsA old_boy alumnus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old boy is a kind of man", "pln": ["(: cnet_isa_4f02e613c2 (IsA old_boy man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old boy is a kind of oldster", "pln": ["(: cnet_isa_7ea3b3d0f8 (IsA old_boy oldster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old boy network is a kind of network", "pln": ["(: cnet_isa_1c3f9f36fe (IsA old_boy_network network) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "old catholic is a kind of christian", "pln": ["(: cnet_isa_e4706828c0 (IsA old_catholic christian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old catholic church is a kind of catholic church", "pln": ["(: cnet_isa_deff959c6f (IsA old_catholic_church catholic_church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old church slavonic is a kind of slavic", "pln": ["(: cnet_isa_d30a96769a (IsA old_church_slavonic slavic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old country is a kind of fatherland", "pln": ["(: cnet_isa_f9d6ab55af (IsA old_country fatherland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old english is a kind of english", "pln": ["(: cnet_isa_aa29bf2b20 (IsA old_english english) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old english sheepdog is a kind of shepherd dog", "pln": ["(: cnet_isa_d9d566e589 (IsA old_english_sheepdog shepherd_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old fashioned is a kind of cocktail", "pln": ["(: cnet_isa_163175b7ac (IsA old_fashioned cocktail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old fashionedness is a kind of oldness", "pln": ["(: cnet_isa_96b438b436 (IsA old_fashionedness oldness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old french is a kind of french", "pln": ["(: cnet_isa_ab21fca9d4 (IsA old_french french) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old frisian is a kind of frisian", "pln": ["(: cnet_isa_fcd1aad84f (IsA old_frisian frisian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old gold is a kind of yellow", "pln": ["(: cnet_isa_38d7ab914b (IsA old_gold yellow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old growth is a kind of forest", "pln": ["(: cnet_isa_a962d0ff1a (IsA old_growth forest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old guard is a kind of faction", "pln": ["(: cnet_isa_c7361e564a (IsA old_guard faction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old high german is a kind of german", "pln": ["(: cnet_isa_cf49728ffa (IsA old_high_german german) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old icelandic is a kind of old norse", "pln": ["(: cnet_isa_dd8ac6cc19 (IsA old_icelandic old_norse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old irish is a kind of irish", "pln": ["(: cnet_isa_7becf4f01d (IsA old_irish irish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old italian is a kind of italian", "pln": ["(: cnet_isa_b0f5867e19 (IsA old_italian italian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old lady is a kind of wife", "pln": ["(: cnet_isa_505639fbae (IsA old_lady wife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "old latin is a kind of latin", "pln": ["(: cnet_isa_1796405c04 (IsA old_latin latin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old maid is a kind of card game", "pln": ["(: cnet_isa_78e7fb7d61 (IsA old_maid card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old maid is a kind of loser", "pln": ["(: cnet_isa_b9d98684ce (IsA old_maid loser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old man is a kind of boss", "pln": ["(: cnet_isa_982fd4f15b (IsA old_man boss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old man is a kind of dysphemism", "pln": ["(: cnet_isa_c790f390e7 (IsA old_man dysphemism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old man is a kind of father", "pln": ["(: cnet_isa_1d6a6f8173 (IsA old_man father) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old man is a kind of man", "pln": ["(: cnet_isa_3f8fc1d9b9 (IsA old_man man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old man is a kind of oldster", "pln": ["(: cnet_isa_c6d4ffb485 (IsA old_man oldster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old man of mountain is a kind of wildflower", "pln": ["(: cnet_isa_5e1f4a8ea2 (IsA old_man_of_mountain wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old man of wood is a kind of bolete", "pln": ["(: cnet_isa_b3e054949c (IsA old_man_of_wood bolete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old master is a kind of maestro", "pln": ["(: cnet_isa_a23f9fd27d (IsA old_master maestro) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old master is a kind of painter", "pln": ["(: cnet_isa_718ff7d402 (IsA old_master painter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old norse is a kind of germanic", "pln": ["(: cnet_isa_38b375d8b2 (IsA old_norse germanic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old prussian is a kind of baltic", "pln": ["(: cnet_isa_65af5a16c9 (IsA old_prussian baltic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old rose is a kind of rose", "pln": ["(: cnet_isa_34faed9025 (IsA old_rose rose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old saxon is a kind of low german", "pln": ["(: cnet_isa_84da891aa3 (IsA old_saxon low_german) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old school is a kind of class", "pln": ["(: cnet_isa_0f8ef0523a (IsA old_school class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old school tie is a kind of necktie", "pln": ["(: cnet_isa_18eece4ea3 (IsA old_school_tie necktie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old squaw is a kind of sea duck", "pln": ["(: cnet_isa_c4eca4d5ba (IsA old_squaw sea_duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old style is a kind of proportional font", "pln": ["(: cnet_isa_c3e87ad0bb (IsA old_style proportional_font) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old testament is a kind of will", "pln": ["(: cnet_isa_d798c8d717 (IsA old_testament will) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old timer is a kind of old man", "pln": ["(: cnet_isa_77766f0d6b (IsA old_timer old_man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old wive tale is a kind of lore", "pln": ["(: cnet_isa_69b4798d24 (IsA old_wive_tale lore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old woman is a kind of oldster", "pln": ["(: cnet_isa_21084ebfc8 (IsA old_woman oldster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "old woman is a kind of woman", "pln": ["(: cnet_isa_80e61b95eb (IsA old_woman woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old world beaver is a kind of beaver", "pln": ["(: cnet_isa_5cc4ed34c1 (IsA old_world_beaver beaver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "old world buffalo is a kind of bovid", "pln": ["(: cnet_isa_7d3eed242e (IsA old_world_buffalo bovid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "old world scops owl is a kind of scops owl", "pln": ["(: cnet_isa_cb7d9aa5f7 (IsA old_world_scops_owl scops_owl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old world chat is a kind of thrush", "pln": ["(: cnet_isa_9fdb9e6839 (IsA old_world_chat thrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old world coot is a kind of coot", "pln": ["(: cnet_isa_87dcc0164d (IsA old_world_coot coot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old world crayfish is a kind of crayfish", "pln": ["(: cnet_isa_2011dcfb76 (IsA old_world_crayfish crayfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old world flycatcher is a kind of oscine", "pln": ["(: cnet_isa_9116baf290 (IsA old_world_flycatcher oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old world hop hornbeam is a kind of hop hornbeam", "pln": ["(: cnet_isa_0cc65e1b4d (IsA old_world_hop_hornbeam hop_hornbeam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old world jay is a kind of jay", "pln": ["(: cnet_isa_e7ada9edb3 (IsA old_world_jay jay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old world least weasel is a kind of weasel", "pln": ["(: cnet_isa_5bfee02672 (IsA old_world_least_weasel weasel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old world monkey is a kind of monkey", "pln": ["(: cnet_isa_39601beb04 (IsA old_world_monkey monkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old world oriole is a kind of oscine", "pln": ["(: cnet_isa_1182e78874 (IsA old_world_oriole oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old world porcupine is a kind of porcupine", "pln": ["(: cnet_isa_60f976f422 (IsA old_world_porcupine porcupine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old world quail is a kind of quail", "pln": ["(: cnet_isa_a82ea3a1f4 (IsA old_world_quail quail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old world scop owl is a kind of scop owl", "pln": ["(: cnet_isa_2d8532aea7 (IsA old_world_scop_owl scop_owl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old world vulture is a kind of vulture", "pln": ["(: cnet_isa_2f0dcd5d24 (IsA old_world_vulture vulture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old world warbler is a kind of warbler", "pln": ["(: cnet_isa_0df9d3a938 (IsA old_world_warbler warbler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old world white pelican is a kind of pelican", "pln": ["(: cnet_isa_2b82116dcc (IsA old_world_white_pelican pelican) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "old world yew is a kind of yew", "pln": ["(: cnet_isa_f694d9d184 (IsA old_world_yew yew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "oldie is a kind of song", "pln": ["(: cnet_isa_8efa4b3e94 (IsA oldie song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oldness is a kind of age", "pln": ["(: cnet_isa_3b83b7e510 (IsA oldness age) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oldsmobile is a kind of car", "pln": ["(: cnet_isa_224f0d7f93 (IsA oldsmobile car) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oldsmobile is a kind of manufacturer of car", "pln": ["(: cnet_isa_3e90e0b380 (IsA oldsmobile manufacturer_of_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oldster is a kind of adult", "pln": ["(: cnet_isa_c34746eb76 (IsA oldster adult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "olea is a kind of dicot genus", "pln": ["(: cnet_isa_8e7f344a7e (IsA olea dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oleaceae is a kind of dicot family", "pln": ["(: cnet_isa_cffe94becb (IsA oleaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oleale is a kind of plant order", "pln": ["(: cnet_isa_002cc12a6d (IsA oleale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oleander is a kind of poisonous plant", "pln": ["(: cnet_isa_8cbac06ce8 (IsA oleander poisonous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oleander fern is a kind of fern", "pln": ["(: cnet_isa_13b495389e (IsA oleander_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oleandra is a kind of fern genus", "pln": ["(: cnet_isa_ff16547ba0 (IsA oleandra fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oleandraceae is a kind of fern family", "pln": ["(: cnet_isa_78352ff60c (IsA oleandraceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "olearia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_dc0a08e64a (IsA olearia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "oleaster is a kind of shrub", "pln": ["(: cnet_isa_4b73f4829f (IsA oleaster shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "olecranon is a kind of process", "pln": ["(: cnet_isa_8570c5f728 (IsA olecranon process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oleic acid is a kind of monounsaturated fatty acid", "pln": ["(: cnet_isa_65b3eb4021 (IsA oleic_acid monounsaturated_fatty_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oleo oil is a kind of animal oil", "pln": ["(: cnet_isa_6cf813b9ce (IsA oleo_oil animal_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oleoresin is a kind of natural resin", "pln": ["(: cnet_isa_1ad5873376 (IsA oleoresin natural_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "oleoresin capiscum is a kind of oleoresin", "pln": ["(: cnet_isa_e6f9deb3de (IsA oleoresin_capiscum oleoresin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "olfactory bulb is a kind of neural structure", "pln": ["(: cnet_isa_793f88a5bc (IsA olfactory_bulb neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "olfactory nerve is a kind of cranial nerve", "pln": ["(: cnet_isa_f88d0f49a6 (IsA olfactory_nerve cranial_nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "olfactory property is a kind of property", "pln": ["(: cnet_isa_33d27564eb (IsA olfactory_property property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "olfersia is a kind of fern genus", "pln": ["(: cnet_isa_19aa4fe813 (IsA olfersia fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oligarch is a kind of ruler", "pln": ["(: cnet_isa_48a9a920b7 (IsA oligarch ruler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "oligarchy is a kind of political system", "pln": ["(: cnet_isa_4caa3fceae (IsA oligarchy political_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oligochaeta is a kind of class", "pln": ["(: cnet_isa_7a8ba2955c (IsA oligochaeta class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "oligochaete is a kind of annelid", "pln": ["(: cnet_isa_ebcab0819e (IsA oligochaete annelid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oligodactyly is a kind of genetic disease", "pln": ["(: cnet_isa_42da5d8418 (IsA oligodactyly genetic_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oligodendrocyte is a kind of neurogliacyte", "pln": ["(: cnet_isa_7588945ae7 (IsA oligodendrocyte neurogliacyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oligodendroglia is a kind of neuroglia", "pln": ["(: cnet_isa_d4599c4721 (IsA oligodendroglia neuroglia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oligodontia is a kind of genetic disease", "pln": ["(: cnet_isa_6e328d47fc (IsA oligodontia genetic_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oligomenorrhea is a kind of menstruation", "pln": ["(: cnet_isa_3a7e5f30ad (IsA oligomenorrhea menstruation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oligonucleotide is a kind of nucleotide", "pln": ["(: cnet_isa_87fdaf8a8d (IsA oligonucleotide nucleotide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oligoplite is a kind of fish genus", "pln": ["(: cnet_isa_7fc70a082f (IsA oligoplite fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oligopoly is a kind of market", "pln": ["(: cnet_isa_4583dba3be (IsA oligopoly market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oligoporus is a kind of fungus genus", "pln": ["(: cnet_isa_fad42d3065 (IsA oligoporus fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oligoporus leucospongia is a kind of polypore", "pln": ["(: cnet_isa_beee26c5f2 (IsA oligoporus_leucospongia polypore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oligosaccharide is a kind of carbohydrate", "pln": ["(: cnet_isa_81f63a96ca (IsA oligosaccharide carbohydrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oligospermia is a kind of physiological state", "pln": ["(: cnet_isa_afb8a51e99 (IsA oligospermia physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oliguria is a kind of micturition", "pln": ["(: cnet_isa_9b0579082e (IsA oliguria micturition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oliguria is a kind of symptom", "pln": ["(: cnet_isa_68c09447d6 (IsA oliguria symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "olive is a kind of chromatic color", "pln": ["(: cnet_isa_35e4ef6f27 (IsA olive chromatic_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "olive is a kind of drupe", "pln": ["(: cnet_isa_2dc6299ae6 (IsA olive drupe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "olive is a kind of relish", "pln": ["(: cnet_isa_0d362e10fd (IsA olive relish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "olive is a kind of fruit", "pln": ["(: cnet_isa_e67e1e3a7e (IsA olive fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "olive is a kind of olive tree", "pln": ["(: cnet_isa_6da7a414fc (IsA olive olive_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "olive is a kind of wood", "pln": ["(: cnet_isa_a24fb60f5d (IsA olive wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "olive brown is a kind of brown", "pln": ["(: cnet_isa_56185421b2 (IsA olive_brown brown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "olive drab is a kind of fabric", "pln": ["(: cnet_isa_20c97e4641 (IsA olive_drab fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "olive drab is a kind of olive", "pln": ["(: cnet_isa_b932e90d98 (IsA olive_drab olive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "olive drab is a kind of military uniform", "pln": ["(: cnet_isa_2f9ee3d4b4 (IsA olive_drab military_uniform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "olive green is a kind of green", "pln": ["(: cnet_isa_dae75832f1 (IsA olive_green green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "olive oil is a kind of oil", "pln": ["(: cnet_isa_cd1424bc3e (IsA olive_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "olive oil is a kind of vegetable oil", "pln": ["(: cnet_isa_9393dfcab8 (IsA olive_oil vegetable_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "olive tree is a kind of fruit tree", "pln": ["(: cnet_isa_1cf26bc1b4 (IsA olive_tree fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "olive tree agaric is a kind of agaric", "pln": ["(: cnet_isa_bbe744dfcd (IsA olive_tree_agaric agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "olivenite is a kind of mineral", "pln": ["(: cnet_isa_26db53041f (IsA olivenite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "olivine is a kind of mineral", "pln": ["(: cnet_isa_46ab4a04d0 (IsA olivine mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "olla podrida is a kind of stew", "pln": ["(: cnet_isa_986463a442 (IsA olla_podrida stew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ollari is a kind of central dravidian", "pln": ["(: cnet_isa_4d182ddd6d (IsA ollari central_dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "olm is a kind of salamander", "pln": ["(: cnet_isa_ac6144a569 (IsA olm salamander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "olmec is a kind of native american", "pln": ["(: cnet_isa_fa0c82d3e3 (IsA olmec native_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ology is a kind of discipline", "pln": ["(: cnet_isa_66810f69d7 (IsA ology discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "olympiad is a kind of time period", "pln": ["(: cnet_isa_b9c2b96898 (IsA olympiad time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "olympian is a kind of athlete", "pln": ["(: cnet_isa_d2d81a64e0 (IsA olympian athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "olympian game is a kind of agon", "pln": ["(: cnet_isa_232e3af7e2 (IsA olympian_game agon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "olympian zeus is a kind of statue", "pln": ["(: cnet_isa_423ff86b94 (IsA olympian_zeus statue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "olympic game is a kind of athletic contest", "pln": ["(: cnet_isa_5a6207db7d (IsA olympic_game athletic_contest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "olympic salamander is a kind of salamander", "pln": ["(: cnet_isa_be2c602e57 (IsA olympic_salamander salamander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "omaha is a kind of dhegiha", "pln": ["(: cnet_isa_338fd5666f (IsA omaha dhegiha) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "omani is a kind of arabian", "pln": ["(: cnet_isa_c3c0aebcd9 (IsA omani arabian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "omani monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_caceda0856 (IsA omani_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ombu is a kind of pokeweed", "pln": ["(: cnet_isa_9ae19a0aea (IsA ombu pokeweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ombudsman is a kind of investigator", "pln": ["(: cnet_isa_796ff1f352 (IsA ombudsman investigator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "omega is a kind of letter", "pln": ["(: cnet_isa_82d48aa286 (IsA omega letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "omega is a kind of ending", "pln": ["(: cnet_isa_3e3a7ea10c (IsA omega ending) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "omega 3 fatty acid is a kind of polyunsaturated fatty acid", "pln": ["(: cnet_isa_19c46df699 (IsA omega_3_fatty_acid polyunsaturated_fatty_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "omega 6 fatty acid is a kind of polyunsaturated fatty acid", "pln": ["(: cnet_isa_9dc3317799 (IsA omega_6_fatty_acid polyunsaturated_fatty_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "omelet is a kind of dish", "pln": ["(: cnet_isa_61453fedfd (IsA omelet dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "omelet pan is a kind of pan", "pln": ["(: cnet_isa_d7e9c31b9f (IsA omelet_pan pan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "omen is a kind of augury", "pln": ["(: cnet_isa_f37a9eddc4 (IsA omen augury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "omentum is a kind of peritoneum", "pln": ["(: cnet_isa_9b4a0141d1 (IsA omentum peritoneum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "omerta is a kind of code", "pln": ["(: cnet_isa_5c24f97cb6 (IsA omerta code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "omicron is a kind of letter", "pln": ["(: cnet_isa_5caa2f9280 (IsA omicron letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "omission is a kind of mistake", "pln": ["(: cnet_isa_ad0e9bbfa1 (IsA omission mistake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "omission is a kind of disregard", "pln": ["(: cnet_isa_5c72b17263 (IsA omission disregard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "omission is a kind of linguistic process", "pln": ["(: cnet_isa_c7cfdae03d (IsA omission linguistic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "omission is a kind of neglect", "pln": ["(: cnet_isa_bb4729adae (IsA omission neglect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ommastrephe is a kind of squid", "pln": ["(: cnet_isa_43361ea841 (IsA ommastrephe squid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ommatidium is a kind of simple eye", "pln": ["(: cnet_isa_2cf461e8fa (IsA ommatidium simple_eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "omnibus is a kind of anthology", "pln": ["(: cnet_isa_7d4571d276 (IsA omnibus anthology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "omnidirectional antenna is a kind of antenna", "pln": ["(: cnet_isa_6d3247e8ba (IsA omnidirectional_antenna antenna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "omnipotence is a kind of state", "pln": ["(: cnet_isa_a9c2856cb8 (IsA omnipotence state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "omnirange is a kind of navigational system", "pln": ["(: cnet_isa_697e13a02e (IsA omnirange navigational_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "omniscience is a kind of state", "pln": ["(: cnet_isa_c9b41e2421 (IsA omniscience state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "omnivore is a kind of animal", "pln": ["(: cnet_isa_745e7a4e0c (IsA omnivore animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "omnivore is a kind of eater", "pln": ["(: cnet_isa_118c7bf434 (IsA omnivore eater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "omomyid is a kind of taxonomic group", "pln": ["(: cnet_isa_c082beab29 (IsA omomyid taxonomic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "omophagia is a kind of eating", "pln": ["(: cnet_isa_b91d0312f6 (IsA omophagia eating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "omotic is a kind of afroasiatic", "pln": ["(: cnet_isa_6f5079e2bc (IsA omotic afroasiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "omphaloskepsis is a kind of self absorption", "pln": ["(: cnet_isa_7de775b06d (IsA omphaloskepsis self_absorption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "omphalotus is a kind of fungus genus", "pln": ["(: cnet_isa_92e58a28c1 (IsA omphalotus fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "on earth is a kind of living people", "pln": ["(: cnet_isa_214d693a96 (IsA on_earth living_people) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "on license is a kind of liquor license", "pln": ["(: cnet_isa_2346f8d8b3 (IsA on_license liquor_license) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "on road is a kind of travel", "pln": ["(: cnet_isa_e552b969f8 (IsA on_road travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onager is a kind of wild ass", "pln": ["(: cnet_isa_257bdbc74a (IsA onager wild_ass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onagraceae is a kind of rosid dicot family", "pln": ["(: cnet_isa_7151aa241a (IsA onagraceae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "once over is a kind of examination", "pln": ["(: cnet_isa_86780038b1 (IsA once_over examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onchocerciasis is a kind of infestation", "pln": ["(: cnet_isa_5edc164c41 (IsA onchocerciasis infestation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oncidium is a kind of orchid", "pln": ["(: cnet_isa_ececba6e7c (IsA oncidium orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oncogene is a kind of gene", "pln": ["(: cnet_isa_d145d708ad (IsA oncogene gene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "oncologist is a kind of specialist", "pln": ["(: cnet_isa_3c8f51bb2b (IsA oncologist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "oncology is a kind of medicine", "pln": ["(: cnet_isa_7dfa9dc4d7 (IsA oncology medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ondatra is a kind of mammal genus", "pln": ["(: cnet_isa_c0e7255080 (IsA ondatra mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one is a kind of number", "pln": ["(: cnet_isa_d069b3a355 (IsA one number) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one is a kind of unit", "pln": ["(: cnet_isa_88f2034f04 (IsA one unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one is a kind of digit", "pln": ["(: cnet_isa_187508ad19 (IsA one digit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one and one is a kind of foul shot", "pln": ["(: cnet_isa_bde98c40bc (IsA one_and_one foul_shot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one apple is a kind of object", "pln": ["(: cnet_isa_a774c0c6a3 (IsA one_apple object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one basic motivation for action is a kind of selfishness", "pln": ["(: cnet_isa_dcb3695e50 (IsA one_basic_motivation_for_action selfishness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one billionth is a kind of common fraction", "pln": ["(: cnet_isa_0f829bbec5 (IsA one_billionth common_fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one book of bible is a kind of number", "pln": ["(: cnet_isa_2c6ef5dd1c (IsA one_book_of_bible number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one cliche is a kind of turn deaf ear", "pln": ["(: cnet_isa_2e5eace310 (IsA one_cliche turn_deaf_ear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one common emotion is a kind of loneliness", "pln": ["(: cnet_isa_796d692232 (IsA one_common_emotion loneliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one dimensional language is a kind of programming language", "pln": ["(: cnet_isa_183644d179 (IsA one_dimensional_language programming_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one dimensionality is a kind of dimensionality", "pln": ["(: cnet_isa_0ffcc7cc7d (IsA one_dimensionality dimensionality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "one eighth is a kind of common fraction", "pln": ["(: cnet_isa_8db9189969 (IsA one_eighth common_fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "one nightly ritual is a kind of taking vitamins", "pln": ["(: cnet_isa_211dbadf29 (IsA one_nightly_ritual taking_vitamins) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one fifth is a kind of common fraction", "pln": ["(: cnet_isa_9710a39854 (IsA one_fifth common_fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one flowered wintergreen is a kind of herb", "pln": ["(: cnet_isa_c597622a49 (IsA one_flowered_wintergreen herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one fourth is a kind of common fraction", "pln": ["(: cnet_isa_79343e8dfa (IsA one_fourth common_fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one half is a kind of common fraction", "pln": ["(: cnet_isa_4b7ba55b99 (IsA one_half common_fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one hitter is a kind of baseball", "pln": ["(: cnet_isa_9b24ba0fa2 (IsA one_hitter baseball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one hundred millionth is a kind of common fraction", "pln": ["(: cnet_isa_73c0bbaedb (IsA one_hundred_millionth common_fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one hundred thousandth is a kind of common fraction", "pln": ["(: cnet_isa_50dff0609b (IsA one_hundred_thousandth common_fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one hundredth is a kind of common fraction", "pln": ["(: cnet_isa_8ba257200b (IsA one_hundredth common_fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one impairment person might have is a kind of intracranial aneurysm", "pln": ["(: cnet_isa_ba60b3d98a (IsA one_impairment_person_might_have intracranial_aneurysm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one impairment person might have is a kind of neurosis", "pln": ["(: cnet_isa_653075479c (IsA one_impairment_person_might_have neurosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one instance of vessel is a kind of ship", "pln": ["(: cnet_isa_cf0031bba8 (IsA one_instance_of_vessel ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one kind of insurance is a kind of medical insurance", "pln": ["(: cnet_isa_3f556b818f (IsA one_kind_of_insurance medical_insurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one liner is a kind of joke", "pln": ["(: cnet_isa_b7d17e5f66 (IsA one_liner joke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one mess is a kind of location with high traffic", "pln": ["(: cnet_isa_77336eaf14 (IsA one_mess location_with_high_traffic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one millionth is a kind of common fraction", "pln": ["(: cnet_isa_ba243e7267 (IsA one_millionth common_fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one night stand is a kind of performance", "pln": ["(: cnet_isa_259a5b9537 (IsA one_night_stand performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one night stand is a kind of promiscuity", "pln": ["(: cnet_isa_2b4ddfc66f (IsA one_night_stand promiscuity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one nightly ritual is a kind of brushing hair", "pln": ["(: cnet_isa_d09a6c1352 (IsA one_nightly_ritual brushing_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one nightly ritual is a kind of brushing teeth", "pln": ["(: cnet_isa_2225f2e788 (IsA one_nightly_ritual brushing_teeth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one nightly ritual is a kind of checking security", "pln": ["(: cnet_isa_1bcb2a3295 (IsA one_nightly_ritual checking_security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one nightly ritual is a kind of cleaning up kitchen", "pln": ["(: cnet_isa_41a073aaba (IsA one_nightly_ritual cleaning_up_kitchen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one nightly ritual is a kind of one last snack", "pln": ["(: cnet_isa_c0a1b761d6 (IsA one_nightly_ritual one_last_snack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one nightly ritual is a kind of packing attache for tomorrow", "pln": ["(: cnet_isa_8e672f7d3e (IsA one_nightly_ritual packing_attache_for_tomorrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one nightly ritual is a kind of packing lunch for tomorrow", "pln": ["(: cnet_isa_3d4043ffb8 (IsA one_nightly_ritual packing_lunch_for_tomorrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one nightly ritual is a kind of picking up thing on floor", "pln": ["(: cnet_isa_955ad04572 (IsA one_nightly_ritual picking_up_thing_on_floor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one nightly ritual is a kind of puffing up pillow", "pln": ["(: cnet_isa_2945e0cfc6 (IsA one_nightly_ritual puffing_up_pillow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one nightly ritual is a kind of putting on cozy sock", "pln": ["(: cnet_isa_7438bca508 (IsA one_nightly_ritual putting_on_cozy_sock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one nightly ritual is a kind of putting on pajama", "pln": ["(: cnet_isa_0b768fa514 (IsA one_nightly_ritual putting_on_pajama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one nightly ritual is a kind of reading daily item", "pln": ["(: cnet_isa_5282860de6 (IsA one_nightly_ritual reading_daily_item) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one nightly ritual is a kind of removing teeth", "pln": ["(: cnet_isa_54dedf08e9 (IsA one_nightly_ritual removing_teeth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one nightly ritual is a kind of reviewing day", "pln": ["(: cnet_isa_062b3db68b (IsA one_nightly_ritual reviewing_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one nightly ritual is a kind of saying goodnight", "pln": ["(: cnet_isa_3461252320 (IsA one_nightly_ritual saying_goodnight) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one nightly ritual is a kind of saying prayer", "pln": ["(: cnet_isa_965228b38d (IsA one_nightly_ritual saying_prayer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one nightly ritual is a kind of setting temperature", "pln": ["(: cnet_isa_1bd47811fe (IsA one_nightly_ritual setting_temperature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one nightly ritual is a kind of slipping into bed", "pln": ["(: cnet_isa_e233469001 (IsA one_nightly_ritual slipping_into_bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one nightly ritual is a kind of snuggling up", "pln": ["(: cnet_isa_bd20c0d6be (IsA one_nightly_ritual snuggling_up) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one nightly ritual is a kind of stretching", "pln": ["(: cnet_isa_e36ac0cf40 (IsA one_nightly_ritual stretching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one nightly ritual is a kind of switching to sleep bra", "pln": ["(: cnet_isa_2a02ae140e (IsA one_nightly_ritual switching_to_sleep_bra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one nightly ritual is a kind of taking off clothe", "pln": ["(: cnet_isa_345dbc37db (IsA one_nightly_ritual taking_off_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one nightly ritual is a kind of taking off glass", "pln": ["(: cnet_isa_06078487f4 (IsA one_nightly_ritual taking_off_glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one nightly ritual is a kind of taking vitamin", "pln": ["(: cnet_isa_ffdaca500c (IsA one_nightly_ritual taking_vitamin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one nightly ritual is a kind of throwing back cover", "pln": ["(: cnet_isa_5505e7aa2c (IsA one_nightly_ritual throwing_back_cover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one nightly ritual is a kind of using toilet", "pln": ["(: cnet_isa_c7162b20e5 (IsA one_nightly_ritual using_toilet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one nightly ritual is a kind of washing face", "pln": ["(: cnet_isa_2e8ee982b7 (IsA one_nightly_ritual washing_face) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one ninth is a kind of common fraction", "pln": ["(: cnet_isa_fc86faa54b (IsA one_ninth common_fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one of boy is a kind of boy", "pln": ["(: cnet_isa_e375fe0485 (IsA one_of_boy boy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one of chemical element is a kind of iodine", "pln": ["(: cnet_isa_91900b20b3 (IsA one_of_chemical_element iodine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one off is a kind of happening", "pln": ["(: cnet_isa_72110e5536 (IsA one_off happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one political border is a kind of state border", "pln": ["(: cnet_isa_87ebf8022c (IsA one_political_border state_border) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one psychoneurosis is a kind of obsession", "pln": ["(: cnet_isa_8a46428eff (IsA one_psychoneurosis obsession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one quadrillionth is a kind of common fraction", "pln": ["(: cnet_isa_8e06600734 (IsA one_quadrillionth common_fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one quintillionth is a kind of common fraction", "pln": ["(: cnet_isa_de3de71cb4 (IsA one_quintillionth common_fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one religion is a kind of named christianity", "pln": ["(: cnet_isa_08fdd88d3f (IsA one_religion named_christianity) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one seventh is a kind of common fraction", "pln": ["(: cnet_isa_4c8222d7f0 (IsA one_seventh common_fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one sixth is a kind of common fraction", "pln": ["(: cnet_isa_e5d278d8ca (IsA one_sixth common_fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one sixtieth is a kind of common fraction", "pln": ["(: cnet_isa_287fcd6920 (IsA one_sixtieth common_fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "one sixty fourth is a kind of common fraction", "pln": ["(: cnet_isa_64454150b4 (IsA one_sixty_fourth common_fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one spot is a kind of dice", "pln": ["(: cnet_isa_00205e009e (IsA one_spot dice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one spot is a kind of domino", "pln": ["(: cnet_isa_769e732ecd (IsA one_spot domino) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one step is a kind of ballroom dancing", "pln": ["(: cnet_isa_887e2833f3 (IsA one_step ballroom_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one surgical procedure for removal is a kind of cystectomy", "pln": ["(: cnet_isa_7145daaea8 (IsA one_surgical_procedure_for_removal cystectomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one surgical procedure for removal is a kind of pneumonectomy", "pln": ["(: cnet_isa_965f088d45 (IsA one_surgical_procedure_for_removal pneumonectomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one ten thousandth is a kind of common fraction", "pln": ["(: cnet_isa_4e42a5f9fe (IsA one_ten_thousandth common_fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one tenth is a kind of common fraction", "pln": ["(: cnet_isa_3633b309fa (IsA one_tenth common_fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one third is a kind of common fraction", "pln": ["(: cnet_isa_7a1c656acb (IsA one_third common_fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one thousandth is a kind of common fraction", "pln": ["(: cnet_isa_bf64ba57fc (IsA one_thousandth common_fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one trillionth is a kind of common fraction", "pln": ["(: cnet_isa_26cc237f6c (IsA one_trillionth common_fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one type of cap is a kind of beanie", "pln": ["(: cnet_isa_c0d818aa2b (IsA one_type_of_cap beanie) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one type of case is a kind of if then situation", "pln": ["(: cnet_isa_17673b284c (IsA one_type_of_case if_then_situation) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one type of dog is a kind of german shepherd", "pln": ["(: cnet_isa_89ddfd09bd (IsA one_type_of_dog german_shepherd) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one type of stick is a kind of stick of gum", "pln": ["(: cnet_isa_2280705f4e (IsA one_type_of_stick stick_of_gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one unit of time is a kind of second", "pln": ["(: cnet_isa_77d7a21e91 (IsA one_unit_of_time second) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one unit of time is a kind of week", "pln": ["(: cnet_isa_0a24241584 (IsA one_unit_of_time week) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "one upmanship is a kind of practice", "pln": ["(: cnet_isa_c54c829161 (IsA one_upmanship practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one way light time is a kind of elapsed time", "pln": ["(: cnet_isa_266ff878b5 (IsA one_way_light_time elapsed_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one way street is a kind of street", "pln": ["(: cnet_isa_20f552e629 (IsA one_way_street street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "one way street is a kind of unilateralism", "pln": ["(: cnet_isa_c3adb7d065 (IsA one_way_street unilateralism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oneida is a kind of iroquoian", "pln": ["(: cnet_isa_70a32c80a3 (IsA oneida iroquoian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oneida is a kind of iroquois", "pln": ["(: cnet_isa_2419f4e224 (IsA oneida iroquois) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oneiromancer is a kind of diviner", "pln": ["(: cnet_isa_4af5e85d49 (IsA oneiromancer diviner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oneiromancy is a kind of divination", "pln": ["(: cnet_isa_80db35c1c0 (IsA oneiromancy divination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oneness is a kind of identity", "pln": ["(: cnet_isa_39acdfd631 (IsA oneness identity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onion is a kind of vegetable", "pln": ["(: cnet_isa_201b54a895 (IsA onion vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onion is a kind of alliaceous plant", "pln": ["(: cnet_isa_2f70680e66 (IsA onion alliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onion is a kind of bulb", "pln": ["(: cnet_isa_f6901d56d7 (IsA onion bulb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onion bagel is a kind of bagel", "pln": ["(: cnet_isa_341b6fc7c6 (IsA onion_bagel bagel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onion bread is a kind of bread", "pln": ["(: cnet_isa_bbdc65e96b (IsA onion_bread bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onion butter is a kind of spread", "pln": ["(: cnet_isa_4178567c67 (IsA onion_butter spread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onion dome is a kind of dome", "pln": ["(: cnet_isa_e1eaad64c8 (IsA onion_dome dome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onion mildew is a kind of downy mildew", "pln": ["(: cnet_isa_dde709e6b0 (IsA onion_mildew downy_mildew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "onion roll is a kind of bun", "pln": ["(: cnet_isa_b8bba0ec24 (IsA onion_roll bun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "onomastics is a kind of lexicology", "pln": ["(: cnet_isa_7f01931bb6 (IsA onomastics lexicology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onion salt is a kind of flavorer", "pln": ["(: cnet_isa_3415871d30 (IsA onion_salt flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onion smut is a kind of smut", "pln": ["(: cnet_isa_2825ab0dd3 (IsA onion_smut smut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onion stem is a kind of lepiota", "pln": ["(: cnet_isa_fa6b5da006 (IsA onion_stem lepiota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onion thrip is a kind of thrip", "pln": ["(: cnet_isa_9223115219 (IsA onion_thrip thrip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onion yellow dwarf is a kind of yellow dwarf", "pln": ["(: cnet_isa_d5fb0b5c14 (IsA onion_yellow_dwarf yellow_dwarf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onion yellow dwarf virus is a kind of plant virus", "pln": ["(: cnet_isa_ded9767722 (IsA onion_yellow_dwarf_virus plant_virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onionskin is a kind of typewriter paper", "pln": ["(: cnet_isa_982ecaa1ad (IsA onionskin typewriter_paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oniscidae is a kind of arthropod family", "pln": ["(: cnet_isa_c86398c365 (IsA oniscidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oniscus is a kind of arthropod genus", "pln": ["(: cnet_isa_05e2d64c0c (IsA oniscus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onlooker is a kind of spectator", "pln": ["(: cnet_isa_3a9d7c8956 (IsA onlooker spectator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onobrychis is a kind of rosid dicot genus", "pln": ["(: cnet_isa_2722db4f92 (IsA onobrychis rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onoclea is a kind of fern genus", "pln": ["(: cnet_isa_b43df0739d (IsA onoclea fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onomancer is a kind of diviner", "pln": ["(: cnet_isa_24385f8467 (IsA onomancer diviner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onomancy is a kind of divination", "pln": ["(: cnet_isa_81f3df2b6c (IsA onomancy divination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onomasticon is a kind of wordbook", "pln": ["(: cnet_isa_98c3fa3897 (IsA onomasticon wordbook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onomastic is a kind of lexicology", "pln": ["(: cnet_isa_424418bcf8 (IsA onomastic lexicology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onomatomania is a kind of compulsion", "pln": ["(: cnet_isa_9b7560e617 (IsA onomatomania compulsion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "onomatopoeia is a kind of rhetorical device", "pln": ["(: cnet_isa_a6b97af20f (IsA onomatopoeia rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onondaga is a kind of iroquoian", "pln": ["(: cnet_isa_1a756cf1e3 (IsA onondaga iroquoian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onondaga is a kind of iroquois", "pln": ["(: cnet_isa_c97818a672 (IsA onondaga iroquois) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ononis is a kind of rosid dicot genus", "pln": ["(: cnet_isa_ff56611dbb (IsA ononis rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onopordum is a kind of asterid dicot genus", "pln": ["(: cnet_isa_938b3a258b (IsA onopordum asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onosmodium is a kind of plant genus", "pln": ["(: cnet_isa_c7a7cc632b (IsA onosmodium plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "onrush is a kind of rush", "pln": ["(: cnet_isa_20bda86db0 (IsA onrush rush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onset is a kind of start", "pln": ["(: cnet_isa_aececb718c (IsA onset start) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onslaught is a kind of trouble", "pln": ["(: cnet_isa_4bae2e03e3 (IsA onslaught trouble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ontario is a kind of province in canada", "pln": ["(: cnet_isa_e785f0979e (IsA ontario province_in_canada) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ontario is a kind of province of canada", "pln": ["(: cnet_isa_8de771bff2 (IsA ontario province_of_canada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ontology is a kind of metaphysic", "pln": ["(: cnet_isa_194a9e706d (IsA ontology metaphysic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ontology is a kind of arrangement", "pln": ["(: cnet_isa_1c7f7c54b0 (IsA ontology arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onychium is a kind of fern genus", "pln": ["(: cnet_isa_1eee892ec7 (IsA onychium fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onychogalea is a kind of mammal genus", "pln": ["(: cnet_isa_14e272bb2b (IsA onychogalea mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onycholysis is a kind of onychosis", "pln": ["(: cnet_isa_8d3b45b90b (IsA onycholysis onychosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onychomy is a kind of mammal genus", "pln": ["(: cnet_isa_f37a30090f (IsA onychomy mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onychophora is a kind of class", "pln": ["(: cnet_isa_25827bb0e7 (IsA onychophora class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onychophoran is a kind of arthropod", "pln": ["(: cnet_isa_d1d06e4ba1 (IsA onychophoran arthropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onychosis is a kind of disease", "pln": ["(: cnet_isa_6997d74600 (IsA onychosis disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "onyx is a kind of chalcedony", "pln": ["(: cnet_isa_04fe48db51 (IsA onyx chalcedony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oocyte is a kind of gametocyte", "pln": ["(: cnet_isa_1aa64d9d66 (IsA oocyte gametocyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oogenesis is a kind of gametogenesis", "pln": ["(: cnet_isa_3e0c731ce0 (IsA oogenesis gametogenesis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oology is a kind of zoology", "pln": ["(: cnet_isa_35fc70509f (IsA oology zoology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oolong is a kind of tea", "pln": ["(: cnet_isa_68d36e4abb (IsA oolong tea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oomycete is a kind of class", "pln": ["(: cnet_isa_c26f9773b7 (IsA oomycete class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oophorectomy is a kind of ablation", "pln": ["(: cnet_isa_70c708d84c (IsA oophorectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oophoritis is a kind of inflammation", "pln": ["(: cnet_isa_43bd617a3b (IsA oophoritis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oophorosalpingectomy is a kind of ablation", "pln": ["(: cnet_isa_072c9f488b (IsA oophorosalpingectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oort cloud is a kind of collection", "pln": ["(: cnet_isa_723b74ca24 (IsA oort_cloud collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oosphere is a kind of gamete", "pln": ["(: cnet_isa_49e52429cb (IsA oosphere gamete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "oospore is a kind of spore", "pln": ["(: cnet_isa_2e54fc54ab (IsA oospore spore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ootid is a kind of ovum", "pln": ["(: cnet_isa_1a21d8b77c (IsA ootid ovum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ooze leather is a kind of leather", "pln": ["(: cnet_isa_5fea3f405b (IsA ooze_leather leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "op art is a kind of abstractionism", "pln": ["(: cnet_isa_8586277f05 (IsA op_art abstractionism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opacification is a kind of natural process", "pln": ["(: cnet_isa_becfff2772 (IsA opacification natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opacity is a kind of incomprehensibility", "pln": ["(: cnet_isa_bc17d39482 (IsA opacity incomprehensibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opacity is a kind of quality", "pln": ["(: cnet_isa_706de59d8a (IsA opacity quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opacity is a kind of physical phenomenon", "pln": ["(: cnet_isa_f7d96e0a88 (IsA opacity physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opah is a kind of soft finned fish", "pln": ["(: cnet_isa_a2d2480df8 (IsA opah soft_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opal is a kind of mineral", "pln": ["(: cnet_isa_3bc79a270a (IsA opal mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opal is a kind of opaque gem", "pln": ["(: cnet_isa_4ebbba6063 (IsA opal opaque_gem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opal glass is a kind of glass", "pln": ["(: cnet_isa_07ace5bd58 (IsA opal_glass glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opalescence is a kind of brightness", "pln": ["(: cnet_isa_bca25e5357 (IsA opalescence brightness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opaque gem is a kind of gem", "pln": ["(: cnet_isa_1d12cf7354 (IsA opaque_gem gem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "open is a kind of public knowledge", "pln": ["(: cnet_isa_ac331a9154 (IsA open public_knowledge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "open is a kind of tournament", "pln": ["(: cnet_isa_23652eca65 (IsA open tournament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "open is a kind of area", "pln": ["(: cnet_isa_f2f952de0b (IsA open area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "open account is a kind of credit order", "pln": ["(: cnet_isa_4c251469d2 (IsA open_account credit_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "open air market is a kind of marketplace", "pln": ["(: cnet_isa_580198955a (IsA open_air_market marketplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "open chain is a kind of chain", "pln": ["(: cnet_isa_97ac313fed (IsA open_chain chain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "open circuit is a kind of circuit", "pln": ["(: cnet_isa_a1b1707f33 (IsA open_circuit circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "open door is a kind of door", "pln": ["(: cnet_isa_2d0af5b113 (IsA open_door door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "open door policy is a kind of trade policy", "pln": ["(: cnet_isa_65d444f4e6 (IsA open_door_policy trade_policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "open end credit is a kind of consumer credit", "pln": ["(: cnet_isa_8581b6d999 (IsA open_end_credit consumer_credit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "open end wrench is a kind of wrench", "pln": ["(: cnet_isa_75860db0e0 (IsA open_end_wrench wrench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "open face sandwich is a kind of sandwich", "pln": ["(: cnet_isa_e52c3f70d8 (IsA open_face_sandwich sandwich) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "open frame is a kind of score", "pln": ["(: cnet_isa_cdef203685 (IsA open_frame score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "open heart surgery is a kind of heart surgery", "pln": ["(: cnet_isa_36ea2ad9fd (IsA open_heart_surgery heart_surgery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "open hearth furnace is a kind of furnace", "pln": ["(: cnet_isa_b79c45f9cd (IsA open_hearth_furnace furnace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "open hearth process is a kind of steel production", "pln": ["(: cnet_isa_4048adfc24 (IsA open_hearth_process steel_production) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "open house is a kind of party", "pln": ["(: cnet_isa_0ec1a542fe (IsA open_house party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "open interval is a kind of interval", "pln": ["(: cnet_isa_ee3b42c841 (IsA open_interval interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "open letter is a kind of letter", "pln": ["(: cnet_isa_ae49324c12 (IsA open_letter letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "open marriage is a kind of marriage", "pln": ["(: cnet_isa_f15022393e (IsA open_marriage marriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "open mind is a kind of very important thing to have", "pln": ["(: cnet_isa_ce32f555d6 (IsA open_mind very_important_thing_to_have) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "open order is a kind of military formation", "pln": ["(: cnet_isa_e5b17775bb (IsA open_order military_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "open primary is a kind of direct primary", "pln": ["(: cnet_isa_943f035b3f (IsA open_primary direct_primary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "open secret is a kind of secret", "pln": ["(: cnet_isa_dd96904995 (IsA open_secret secret) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "open sesame is a kind of mean", "pln": ["(: cnet_isa_201b685c46 (IsA open_sesame mean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "open sesame is a kind of command", "pln": ["(: cnet_isa_06457a5c67 (IsA open_sesame command) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "open shop is a kind of company", "pln": ["(: cnet_isa_fa7760f5f0 (IsA open_shop company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "open sight is a kind of gunsight", "pln": ["(: cnet_isa_14f1c36153 (IsA open_sight gunsight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "open society is a kind of society", "pln": ["(: cnet_isa_2dfd107d87 (IsA open_society society) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "open university is a kind of university", "pln": ["(: cnet_isa_ec9965dda7 (IsA open_university university) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "open weave is a kind of weave", "pln": ["(: cnet_isa_30600ebe99 (IsA open_weave weave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "openbill is a kind of stork", "pln": ["(: cnet_isa_6ce3814d93 (IsA openbill stork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opener is a kind of hand tool", "pln": ["(: cnet_isa_077356c7a1 (IsA opener hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opener is a kind of start", "pln": ["(: cnet_isa_250f4aa874 (IsA opener start) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opening is a kind of change of integrity", "pln": ["(: cnet_isa_6257c6c420 (IsA opening change_of_integrity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opening is a kind of motion", "pln": ["(: cnet_isa_c2580ced62 (IsA opening motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opening is a kind of artifact", "pln": ["(: cnet_isa_4dceaa1722 (IsA opening artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opening is a kind of introduction", "pln": ["(: cnet_isa_a15db207c3 (IsA opening introduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opening is a kind of ceremony", "pln": ["(: cnet_isa_8e42a257df (IsA opening ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opening is a kind of start", "pln": ["(: cnet_isa_883c1502f1 (IsA opening start) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opening is a kind of space", "pln": ["(: cnet_isa_3ba70b65ac (IsA opening space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opening is a kind of opportunity", "pln": ["(: cnet_isa_9e76f10005 (IsA opening opportunity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opening line is a kind of line", "pln": ["(: cnet_isa_5dc9f64b5b (IsA opening_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "openness is a kind of sociability", "pln": ["(: cnet_isa_b51469defb (IsA openness sociability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "openness is a kind of spacing", "pln": ["(: cnet_isa_5890e4707b (IsA openness spacing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "openside plane is a kind of plane", "pln": ["(: cnet_isa_edab4ac98d (IsA openside_plane plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "openwork is a kind of work", "pln": ["(: cnet_isa_395871b552 (IsA openwork work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opepe is a kind of tree", "pln": ["(: cnet_isa_b238ea7e7b (IsA opepe tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opera is a kind of entertainment event", "pln": ["(: cnet_isa_9297c99f31 (IsA opera entertainment_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opera is a kind of music concert", "pln": ["(: cnet_isa_15ab13d068 (IsA opera music_concert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opera is a kind of theater", "pln": ["(: cnet_isa_4fb190f3cc (IsA opera theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opera is a kind of classical music", "pln": ["(: cnet_isa_81df571751 (IsA opera classical_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opera cloak is a kind of cloak", "pln": ["(: cnet_isa_3fdf7ea3d4 (IsA opera_cloak cloak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opera company is a kind of company", "pln": ["(: cnet_isa_b43e0fd36f (IsA opera_company company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opera star is a kind of singer", "pln": ["(: cnet_isa_b2270f4887 (IsA opera_star singer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "operagoer is a kind of patron", "pln": ["(: cnet_isa_8ae985cb58 (IsA operagoer patron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "operand is a kind of quantity", "pln": ["(: cnet_isa_7c59f0a57d (IsA operand quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "operant conditioning is a kind of conditioning", "pln": ["(: cnet_isa_146ae1e4b1 (IsA operant_conditioning conditioning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "operating budget is a kind of budget", "pln": ["(: cnet_isa_5787c38f64 (IsA operating_budget budget) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "operating capability is a kind of capability", "pln": ["(: cnet_isa_30b3517ae1 (IsA operating_capability capability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "operating capital is a kind of capital", "pln": ["(: cnet_isa_ca80bb46f6 (IsA operating_capital capital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "operating expense is a kind of expense", "pln": ["(: cnet_isa_4ac6adbee2 (IsA operating_expense expense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "operating microscope is a kind of binocular microscope", "pln": ["(: cnet_isa_0985c3b1c6 (IsA operating_microscope binocular_microscope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "operating procedure is a kind of procedure", "pln": ["(: cnet_isa_98f43e2553 (IsA operating_procedure procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "operating room is a kind of hospital room", "pln": ["(: cnet_isa_6b190c4ee7 (IsA operating_room hospital_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "operating system is a kind of software", "pln": ["(: cnet_isa_16e63b7e5d (IsA operating_system software) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "operating table is a kind of table", "pln": ["(: cnet_isa_abdbf5544d (IsA operating_table table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "operation is a kind of activity", "pln": ["(: cnet_isa_3552d55298 (IsA operation activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "operation is a kind of business activity", "pln": ["(: cnet_isa_f6de60c724 (IsA operation business_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "operation is a kind of work", "pln": ["(: cnet_isa_4019c6cd8c (IsA operation work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "operation is a kind of data processing", "pln": ["(: cnet_isa_f46da71433 (IsA operation data_processing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "operation is a kind of process", "pln": ["(: cnet_isa_95ad971e69 (IsA operation process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "operation is a kind of action", "pln": ["(: cnet_isa_0ead06b3af (IsA operation action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "operation is a kind of medical procedure", "pln": ["(: cnet_isa_38a77699a3 (IsA operation medical_procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "operation code is a kind of code", "pln": ["(: cnet_isa_8becb133da (IsA operation_code code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "operational cell is a kind of terrorist cell", "pln": ["(: cnet_isa_3742dbd58b (IsA operational_cell terrorist_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "operational damage is a kind of damage", "pln": ["(: cnet_isa_9b922de9c6 (IsA operational_damage damage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "operationalism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_e19a9bb3df (IsA operationalism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "operation is a kind of transaction", "pln": ["(: cnet_isa_1c94669121 (IsA operation transaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "operation research is a kind of research", "pln": ["(: cnet_isa_9ee0f17077 (IsA operation_research research) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "operative field is a kind of field", "pln": ["(: cnet_isa_4fd9455899 (IsA operative_field field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "operator is a kind of mapping", "pln": ["(: cnet_isa_997ba741f0 (IsA operator mapping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "operator is a kind of businessman", "pln": ["(: cnet_isa_768816422a (IsA operator businessman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "operator is a kind of causal agent", "pln": ["(: cnet_isa_ba81678c3e (IsA operator causal_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "operator is a kind of speculator", "pln": ["(: cnet_isa_29a9995ac0 (IsA operator speculator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "operator gene is a kind of gene", "pln": ["(: cnet_isa_680dacf635 (IsA operator_gene gene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "operculum is a kind of plate", "pln": ["(: cnet_isa_a98947c57a (IsA operculum plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "operetta is a kind of comic opera", "pln": ["(: cnet_isa_6ae758db75 (IsA operetta comic_opera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "opheodrys is a kind of reptile genus", "pln": ["(: cnet_isa_69cdb8d421 (IsA opheodrys reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "operon is a kind of deoxyribonucleic acid", "pln": ["(: cnet_isa_b182ebf9a1 (IsA operon deoxyribonucleic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opheodry is a kind of reptile genus", "pln": ["(: cnet_isa_5afed17f51 (IsA opheodry reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ophidiidae is a kind of fish family", "pln": ["(: cnet_isa_7312b5fbcf (IsA ophidiidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ophidism is a kind of poisoning", "pln": ["(: cnet_isa_a7809d13bf (IsA ophidism poisoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ophiodon is a kind of fish genus", "pln": ["(: cnet_isa_e1733ff2d3 (IsA ophiodon fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ophiodontidae is a kind of fish family", "pln": ["(: cnet_isa_34f0155f87 (IsA ophiodontidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ophioglossaceae is a kind of fern family", "pln": ["(: cnet_isa_2c493d1aaa (IsA ophioglossaceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ophioglossale is a kind of plant order", "pln": ["(: cnet_isa_086772b7ee (IsA ophioglossale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ophioglossum is a kind of fern genus", "pln": ["(: cnet_isa_1714708292 (IsA ophioglossum fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ophiolatry is a kind of zoolatry", "pln": ["(: cnet_isa_107a45f63d (IsA ophiolatry zoolatry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ophiophagus is a kind of reptile genus", "pln": ["(: cnet_isa_00706d3123 (IsA ophiophagus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ophisaurus is a kind of reptile genus", "pln": ["(: cnet_isa_dd3c9289f9 (IsA ophisaurus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ophiurida is a kind of class", "pln": ["(: cnet_isa_1391e17244 (IsA ophiurida class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ophiuroidea is a kind of class", "pln": ["(: cnet_isa_822f6316c2 (IsA ophiuroidea class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ophryon is a kind of craniometric point", "pln": ["(: cnet_isa_d44d8943c3 (IsA ophryon craniometric_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ophry is a kind of monocot genus", "pln": ["(: cnet_isa_626fbe0d18 (IsA ophry monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ophthalmectomy is a kind of ablation", "pln": ["(: cnet_isa_8d532848ef (IsA ophthalmectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ophthalmia is a kind of conjunctivitis", "pln": ["(: cnet_isa_ec6a5174bc (IsA ophthalmia conjunctivitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ophthalmia neonatorum is a kind of ophthalmia", "pln": ["(: cnet_isa_91e07eddea (IsA ophthalmia_neonatorum ophthalmia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ophthalmic artery is a kind of artery", "pln": ["(: cnet_isa_c68d432319 (IsA ophthalmic_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ophthalmic vein is a kind of vein", "pln": ["(: cnet_isa_9eb8f078df (IsA ophthalmic_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ophthalmologist is a kind of specialist", "pln": ["(: cnet_isa_4490070174 (IsA ophthalmologist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ophthalmology is a kind of medicine", "pln": ["(: cnet_isa_d8e551d4a5 (IsA ophthalmology medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ophthalmoplegia is a kind of paralysis", "pln": ["(: cnet_isa_1c593f2bd1 (IsA ophthalmoplegia paralysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ophthalmoscope is a kind of medical instrument", "pln": ["(: cnet_isa_48e03e979d (IsA ophthalmoscope medical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ophthalmoscopy is a kind of examination", "pln": ["(: cnet_isa_1d4d3afbfb (IsA ophthalmoscopy examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opiate is a kind of narcotic", "pln": ["(: cnet_isa_587ec168ad (IsA opiate narcotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opinion is a kind of belief", "pln": ["(: cnet_isa_60a38f105b (IsA opinion belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opinion is a kind of message", "pln": ["(: cnet_isa_78e8b242f8 (IsA opinion message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opinion is a kind of judgment", "pln": ["(: cnet_isa_8c74d59589 (IsA opinion judgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opinion is a kind of legal document", "pln": ["(: cnet_isa_2c3146ee7f (IsA opinion legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opisthobranchia is a kind of class", "pln": ["(: cnet_isa_97cf153afb (IsA opisthobranchia class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opisthocomidae is a kind of bird family", "pln": ["(: cnet_isa_e1761d4a4d (IsA opisthocomidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opisthocomus is a kind of bird genus", "pln": ["(: cnet_isa_860c3df1ed (IsA opisthocomus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opisthognathidae is a kind of fish family", "pln": ["(: cnet_isa_d2d3eadb39 (IsA opisthognathidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opisthorchiasis is a kind of infestation", "pln": ["(: cnet_isa_378941e2ac (IsA opisthorchiasis infestation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opisthotono is a kind of spasm", "pln": ["(: cnet_isa_53bf2182d3 (IsA opisthotono spasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opium is a kind of controlled substance", "pln": ["(: cnet_isa_542e5773f2 (IsA opium controlled_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opium is a kind of narcotic", "pln": ["(: cnet_isa_900bcc859c (IsA opium narcotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opium addict is a kind of drug addict", "pln": ["(: cnet_isa_189b4b4e03 (IsA opium_addict drug_addict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opium den is a kind of building", "pln": ["(: cnet_isa_4bbc7d1f6e (IsA opium_den building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opium poppy is a kind of poppy", "pln": ["(: cnet_isa_e7c8965c69 (IsA opium_poppy poppy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opopanax is a kind of gum", "pln": ["(: cnet_isa_2283ee6af6 (IsA opopanax gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opossum is a kind of marsupial", "pln": ["(: cnet_isa_423034c2c1 (IsA opossum marsupial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "opossum rat is a kind of marsupial", "pln": ["(: cnet_isa_cbce6ceb95 (IsA opossum_rat marsupial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opossum shrimp is a kind of malacostracan crustacean", "pln": ["(: cnet_isa_df58e3a295 (IsA opossum_shrimp malacostracan_crustacean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opponent is a kind of people", "pln": ["(: cnet_isa_185ac45a4c (IsA opponent people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opportuneness is a kind of convenience", "pln": ["(: cnet_isa_1bc90065c5 (IsA opportuneness convenience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opportunism is a kind of selfishness", "pln": ["(: cnet_isa_f5a699b981 (IsA opportunism selfishness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opportunist is a kind of selfish person", "pln": ["(: cnet_isa_534273dc82 (IsA opportunist selfish_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opportunistic infection is a kind of infection", "pln": ["(: cnet_isa_c48a89e408 (IsA opportunistic_infection infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opportunity is a kind of possibility", "pln": ["(: cnet_isa_173dd71272 (IsA opportunity possibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opportunity cost is a kind of cost", "pln": ["(: cnet_isa_bc04abc0f4 (IsA opportunity_cost cost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opposite of proponent is a kind of antagonist", "pln": ["(: cnet_isa_1f5f04b56c (IsA opposite_of_proponent antagonist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opposition is a kind of body", "pln": ["(: cnet_isa_6ff3c34940 (IsA opposition body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opposition is a kind of party", "pln": ["(: cnet_isa_c35e5b42f9 (IsA opposition party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opposition is a kind of direction", "pln": ["(: cnet_isa_ed81d7af5a (IsA opposition direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opposition is a kind of relation", "pln": ["(: cnet_isa_cacb3bbddc (IsA opposition relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opposition is a kind of contestant", "pln": ["(: cnet_isa_a1b2714fab (IsA opposition contestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oppression is a kind of persecution", "pln": ["(: cnet_isa_13565d5027 (IsA oppression persecution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oppression is a kind of depression", "pln": ["(: cnet_isa_82dce2b282 (IsA oppression depression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "oppression is a kind of subjugation", "pln": ["(: cnet_isa_0181506acd (IsA oppression subjugation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oppressor is a kind of unpleasant person", "pln": ["(: cnet_isa_57aa3e2803 (IsA oppressor unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opsin is a kind of protein", "pln": ["(: cnet_isa_4457c766fa (IsA opsin protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opsonin is a kind of antibody", "pln": ["(: cnet_isa_6db325b7ba (IsA opsonin antibody) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opsonization is a kind of bodily process", "pln": ["(: cnet_isa_2b46938f38 (IsA opsonization bodily_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "optative mood is a kind of mood", "pln": ["(: cnet_isa_593c33ca59 (IsA optative_mood mood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "optez is a kind of artificial language", "pln": ["(: cnet_isa_05781d7bdd (IsA optez artificial_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "optic axis is a kind of axis", "pln": ["(: cnet_isa_ebcba7452e (IsA optic_axis axis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "optic chiasma is a kind of chiasma", "pln": ["(: cnet_isa_a907c70186 (IsA optic_chiasma chiasma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "optic cup is a kind of calyculus", "pln": ["(: cnet_isa_2a9c20af34 (IsA optic_cup calyculus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "optic nerve is a kind of cranial nerve", "pln": ["(: cnet_isa_aa2d52ab12 (IsA optic_nerve cranial_nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "optic radiation is a kind of nerve pathway", "pln": ["(: cnet_isa_dfa98d5d56 (IsA optic_radiation nerve_pathway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "optical bench is a kind of apparatus", "pln": ["(: cnet_isa_c7eed847ec (IsA optical_bench apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "optical crown is a kind of optical glass", "pln": ["(: cnet_isa_bb09025e63 (IsA optical_crown optical_glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "optical device is a kind of device", "pln": ["(: cnet_isa_0891bc1811 (IsA optical_device device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "optical disk is a kind of memory device", "pln": ["(: cnet_isa_4fa93094cb (IsA optical_disk memory_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "optical fiber is a kind of fiber", "pln": ["(: cnet_isa_a2e52c3189 (IsA optical_fiber fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "optical flint is a kind of optical glass", "pln": ["(: cnet_isa_4eb4789982 (IsA optical_flint optical_glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "optical glass is a kind of glass", "pln": ["(: cnet_isa_d78c6e3fc1 (IsA optical_glass glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "optical illusion is a kind of optical phenomenon", "pln": ["(: cnet_isa_2b95e9373b (IsA optical_illusion optical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "optical instrument is a kind of instrument", "pln": ["(: cnet_isa_b5143bc01e (IsA optical_instrument instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "optical opacity is a kind of opacity", "pln": ["(: cnet_isa_d8195ef9bf (IsA optical_opacity opacity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "optical phenomenon is a kind of physical phenomenon", "pln": ["(: cnet_isa_7004ebeafa (IsA optical_phenomenon physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "optical pyrometer is a kind of pyrometer", "pln": ["(: cnet_isa_c803c342a8 (IsA optical_pyrometer pyrometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "optics is a kind of physics", "pln": ["(: cnet_isa_9c8ed96a1f (IsA optics physics) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "optical telescope is a kind of astronomical telescope", "pln": ["(: cnet_isa_6fdc2145a2 (IsA optical_telescope astronomical_telescope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "optician is a kind of skilled worker", "pln": ["(: cnet_isa_46d001a4ef (IsA optician skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "optic is a kind of property", "pln": ["(: cnet_isa_6007b70477 (IsA optic property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "optic is a kind of physic", "pln": ["(: cnet_isa_7fa1f6d0d7 (IsA optic physic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "optimism is a kind of disposition", "pln": ["(: cnet_isa_45f7340a56 (IsA optimism disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "opuntiales is a kind of plant order", "pln": ["(: cnet_isa_6ba7ca14a5 (IsA opuntiales plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "optimism is a kind of hope", "pln": ["(: cnet_isa_b0d30b49e8 (IsA optimism hope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "optimist is a kind of person", "pln": ["(: cnet_isa_525b607bf8 (IsA optimist person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "optimization is a kind of improvement", "pln": ["(: cnet_isa_a25e90c599 (IsA optimization improvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "optimum is a kind of good", "pln": ["(: cnet_isa_67a8437e0e (IsA optimum good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "option is a kind of decision making", "pln": ["(: cnet_isa_1b4b7edf01 (IsA option decision_making) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "option is a kind of derivative instrument", "pln": ["(: cnet_isa_8b47bc5d15 (IsA option derivative_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "optometrist is a kind of specialist", "pln": ["(: cnet_isa_9c364d3476 (IsA optometrist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "optometry is a kind of practice", "pln": ["(: cnet_isa_902f0b861f (IsA optometry practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opuntia is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_78bb9eec58 (IsA opuntia caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "opuntiale is a kind of plant order", "pln": ["(: cnet_isa_11990dfa48 (IsA opuntiale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "or circuit is a kind of gate", "pln": ["(: cnet_isa_1bacc3bb40 (IsA or_circuit gate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orach is a kind of herb", "pln": ["(: cnet_isa_e2ead4b092 (IsA orach herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oracle is a kind of shrine", "pln": ["(: cnet_isa_f990ff0f5d (IsA oracle shrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "oracle is a kind of prophecy", "pln": ["(: cnet_isa_88442509bd (IsA oracle prophecy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oral is a kind of examination", "pln": ["(: cnet_isa_df37bd9109 (IsA oral examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oral cancer is a kind of carcinoma", "pln": ["(: cnet_isa_8584d5d85c (IsA oral_cancer carcinoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oral contraception is a kind of contraception", "pln": ["(: cnet_isa_125844a6a1 (IsA oral_contraception contraception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oral contract is a kind of agreement", "pln": ["(: cnet_isa_211fc89149 (IsA oral_contract agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oral herpe is a kind of herpe simplex", "pln": ["(: cnet_isa_81a8b9bf77 (IsA oral_herpe herpe_simplex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oral personality is a kind of personality", "pln": ["(: cnet_isa_54ae644a1c (IsA oral_personality personality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oral sex is a kind of perversion", "pln": ["(: cnet_isa_21ebc0b23a (IsA oral_sex perversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oral smear is a kind of alimentary tract smear", "pln": ["(: cnet_isa_0136de69cc (IsA oral_smear alimentary_tract_smear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oral stage is a kind of phase", "pln": ["(: cnet_isa_8dcf2cddf3 (IsA oral_stage phase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orange is a kind of citrus", "pln": ["(: cnet_isa_bf579bab75 (IsA orange citrus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orange is a kind of citrus fruit", "pln": ["(: cnet_isa_7e216baad8 (IsA orange citrus_fruit) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orange is a kind of color", "pln": ["(: cnet_isa_944acd3f21 (IsA orange color) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orange is a kind of colour", "pln": ["(: cnet_isa_52cea31d0f (IsA orange colour) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orange is a kind of chromatic color", "pln": ["(: cnet_isa_21cd9715ce (IsA orange chromatic_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orange is a kind of pigment", "pln": ["(: cnet_isa_71d319c8f6 (IsA orange pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orange bat is a kind of leafnose bat", "pln": ["(: cnet_isa_6225014f3b (IsA orange_bat leafnose_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orange blossom orchid is a kind of orchid", "pln": ["(: cnet_isa_e422a70426 (IsA orange_blossom_orchid orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orange daisy is a kind of fleabane", "pln": ["(: cnet_isa_b0aaf5b405 (IsA orange_daisy fleabane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orange grass is a kind of st john s wort", "pln": ["(: cnet_isa_bdd75bb3fa (IsA orange_grass st_john_s_wort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orange grove is a kind of grove", "pln": ["(: cnet_isa_de50351f27 (IsA orange_grove grove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orange hawkweed is a kind of weed", "pln": ["(: cnet_isa_a8fea64b06 (IsA orange_hawkweed weed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orange juice is a kind of common source of vitamin c", "pln": ["(: cnet_isa_eaf0bef4c1 (IsA orange_juice common_source_of_vitamin_c) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orange juice is a kind of fruit juice", "pln": ["(: cnet_isa_49d4431ed0 (IsA orange_juice fruit_juice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orange liqueur is a kind of liqueur", "pln": ["(: cnet_isa_42b028d99d (IsA orange_liqueur liqueur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orange marmalade is a kind of marmalade", "pln": ["(: cnet_isa_eec72f339b (IsA orange_marmalade marmalade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orange milkwort is a kind of milkwort", "pln": ["(: cnet_isa_d80a2e2d12 (IsA orange_milkwort milkwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orange mushroom pimple is a kind of mushroom pimple", "pln": ["(: cnet_isa_48c99a0b10 (IsA orange_mushroom_pimple mushroom_pimple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orange order is a kind of organization", "pln": ["(: cnet_isa_002c7a4ec6 (IsA orange_order organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orange peel is a kind of candied citrus peel", "pln": ["(: cnet_isa_5c062ea652 (IsA orange_peel candied_citrus_peel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orange peel is a kind of peel", "pln": ["(: cnet_isa_e736fbce3c (IsA orange_peel peel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orange pekoe is a kind of black tea", "pln": ["(: cnet_isa_c59f2fc82f (IsA orange_pekoe black_tea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orange sneezeweed is a kind of sneezeweed", "pln": ["(: cnet_isa_5929a497a9 (IsA orange_sneezeweed sneezeweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orange soda is a kind of soft drink", "pln": ["(: cnet_isa_2aef2fd1d2 (IsA orange_soda soft_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orange toast is a kind of toast", "pln": ["(: cnet_isa_b33ad57683 (IsA orange_toast toast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orange tortrix is a kind of tortricid", "pln": ["(: cnet_isa_fafc4e2231 (IsA orange_tortrix tortricid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orange yellow is a kind of yellow", "pln": ["(: cnet_isa_70dfcfe878 (IsA orange_yellow yellow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orange zest is a kind of orange peel", "pln": ["(: cnet_isa_bbdf6695bc (IsA orange_zest orange_peel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orangeade is a kind of fruit drink", "pln": ["(: cnet_isa_ff62c19419 (IsA orangeade fruit_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orangeman is a kind of protestant", "pln": ["(: cnet_isa_9a96b2e39e (IsA orangeman protestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orangery is a kind of greenhouse", "pln": ["(: cnet_isa_6ac8e1c541 (IsA orangery greenhouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orangery is a kind of plantation", "pln": ["(: cnet_isa_79f3af42e7 (IsA orangery plantation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orange and apple is a kind of fruit", "pln": ["(: cnet_isa_cf1fae2c90 (IsA orange_and_apple fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orangewood is a kind of wood", "pln": ["(: cnet_isa_974adb1a2a (IsA orangewood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "orangina is a kind of orange soda", "pln": ["(: cnet_isa_c65cf1eb06 (IsA orangina orange_soda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orangutan is a kind of great ape", "pln": ["(: cnet_isa_ac7c321e7d (IsA orangutan great_ape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oration is a kind of oratory", "pln": ["(: cnet_isa_1832e8a671 (IsA oration oratory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orator is a kind of speaker", "pln": ["(: cnet_isa_d88fac2272 (IsA orator speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oratory is a kind of address", "pln": ["(: cnet_isa_e8c7cdceb8 (IsA oratory address) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orb weaving spider is a kind of spider", "pln": ["(: cnet_isa_3222fbe076 (IsA orb_weaving_spider spider) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orb web is a kind of spider web", "pln": ["(: cnet_isa_3e62e81b69 (IsA orb_web spider_web) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orbiculate leaf is a kind of simple leaf", "pln": ["(: cnet_isa_1da9e9fc86 (IsA orbiculate_leaf simple_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orbignya is a kind of monocot genus", "pln": ["(: cnet_isa_fe5c80dd60 (IsA orbignya monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "orbit is a kind of path", "pln": ["(: cnet_isa_3ab6eab824 (IsA orbit path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orbit period is a kind of period", "pln": ["(: cnet_isa_9cb2176836 (IsA orbit_period period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "orbital plane is a kind of plane", "pln": ["(: cnet_isa_0b46800e55 (IsA orbital_plane plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "orbital rotation is a kind of rotation", "pln": ["(: cnet_isa_b79871280b (IsA orbital_rotation rotation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orbitale is a kind of craniometric point", "pln": ["(: cnet_isa_6b974c91b9 (IsA orbitale craniometric_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orchard grass is a kind of grass", "pln": ["(: cnet_isa_9f443bc700 (IsA orchard_grass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orchard oriole is a kind of new world oriole", "pln": ["(: cnet_isa_c519ce7814 (IsA orchard_oriole new_world_oriole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "orchestia is a kind of arthropod genus", "pln": ["(: cnet_isa_c7a4d4040b (IsA orchestia arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orchestiidae is a kind of arthropod family", "pln": ["(: cnet_isa_fcc98de2c5 (IsA orchestiidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orchestra is a kind of seating", "pln": ["(: cnet_isa_8735374a20 (IsA orchestra seating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orchestra is a kind of musical organization", "pln": ["(: cnet_isa_cea0c16661 (IsA orchestra musical_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orchestra pit is a kind of area", "pln": ["(: cnet_isa_a44bb18546 (IsA orchestra_pit area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orchestration is a kind of arrangement", "pln": ["(: cnet_isa_bef64d2a5b (IsA orchestration arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orchestration is a kind of musical arrangement", "pln": ["(: cnet_isa_cf9f7a9ce1 (IsA orchestration musical_arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orchestrator is a kind of arranger", "pln": ["(: cnet_isa_cd47eb780d (IsA orchestrator arranger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orchid is a kind of flower", "pln": ["(: cnet_isa_bc3948b4ac (IsA orchid flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orchidaceae is a kind of monocot family", "pln": ["(: cnet_isa_fa5702f20d (IsA orchidaceae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orchidale is a kind of plant order", "pln": ["(: cnet_isa_52e1ad5a4b (IsA orchidale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orchidalgia is a kind of pain", "pln": ["(: cnet_isa_ee90ac57ca (IsA orchidalgia pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orchidectomy is a kind of ablation", "pln": ["(: cnet_isa_6381ce63f9 (IsA orchidectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orchil is a kind of dye", "pln": ["(: cnet_isa_4ba5e70e9f (IsA orchil dye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orchiopexy is a kind of operation", "pln": ["(: cnet_isa_1856d09bab (IsA orchiopexy operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orchis is a kind of orchid", "pln": ["(: cnet_isa_36fc748f1c (IsA orchis orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "orchitis is a kind of inflammation", "pln": ["(: cnet_isa_f0f2f9b236 (IsA orchitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orchotomy is a kind of incision", "pln": ["(: cnet_isa_2cd7982cb7 (IsA orchotomy incision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orcinus is a kind of mammal genus", "pln": ["(: cnet_isa_84a821dd36 (IsA orcinus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ord kangaroo rat is a kind of kangaroo rat", "pln": ["(: cnet_isa_d7e9f10c7d (IsA ord_kangaroo_rat kangaroo_rat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ordainer is a kind of cleric", "pln": ["(: cnet_isa_de37561d60 (IsA ordainer cleric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ordeal is a kind of trial", "pln": ["(: cnet_isa_ab51267ea3 (IsA ordeal trial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ordeal is a kind of experience", "pln": ["(: cnet_isa_afcc617fb9 (IsA ordeal experience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "order is a kind of organization", "pln": ["(: cnet_isa_a701aed9a1 (IsA order organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "order is a kind of artistic style", "pln": ["(: cnet_isa_071d4ef144 (IsA order artistic_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "order is a kind of magnitude", "pln": ["(: cnet_isa_39474e986b (IsA order magnitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "order is a kind of taxonomic group", "pln": ["(: cnet_isa_049c1e1730 (IsA order taxonomic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "order is a kind of commercial document", "pln": ["(: cnet_isa_59fc76f95e (IsA order commercial_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "order is a kind of request", "pln": ["(: cnet_isa_cb0eaf973f (IsA order request) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "order is a kind of rule", "pln": ["(: cnet_isa_e5492580c8 (IsA order rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "order is a kind of sect", "pln": ["(: cnet_isa_21c6899f45 (IsA order sect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "order is a kind of command", "pln": ["(: cnet_isa_bca8a851e4 (IsA order command) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "order is a kind of state", "pln": ["(: cnet_isa_5bb6f3c359 (IsA order state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "order arm is a kind of position", "pln": ["(: cnet_isa_b0d302477d (IsA order_arm position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "order book is a kind of book", "pln": ["(: cnet_isa_2ba2d3adce (IsA order_book book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "order form is a kind of form", "pln": ["(: cnet_isa_59ce7a1199 (IsA order_form form) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "order myxobacteria is a kind of animal order", "pln": ["(: cnet_isa_e3502f47ee (IsA order_myxobacteria animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "order of day is a kind of agenda", "pln": ["(: cnet_isa_f634bbdf78 (IsA order_of_day agenda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "order of magnitude is a kind of ratio", "pln": ["(: cnet_isa_5802f81700 (IsA order_of_magnitude ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "order of purple heart is a kind of decoration", "pln": ["(: cnet_isa_28683843d0 (IsA order_of_purple_heart decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "order osteoglossiforme is a kind of animal order", "pln": ["(: cnet_isa_7451ebbe92 (IsA order_osteoglossiforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "order paper is a kind of order of day", "pln": ["(: cnet_isa_1d9129345e (IsA order_paper order_of_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orderer is a kind of buyer", "pln": ["(: cnet_isa_92c131efe1 (IsA orderer buyer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orderer is a kind of organizer", "pln": ["(: cnet_isa_892c4f706c (IsA orderer organizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ordering is a kind of arrangement", "pln": ["(: cnet_isa_8592d3b518 (IsA ordering arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "orderliness is a kind of regularity", "pln": ["(: cnet_isa_04d8bfc940 (IsA orderliness regularity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orderliness is a kind of condition", "pln": ["(: cnet_isa_6265a09919 (IsA orderliness condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orderly is a kind of attendant", "pln": ["(: cnet_isa_fba0e0bc29 (IsA orderly attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orderly is a kind of soldier", "pln": ["(: cnet_isa_d4b78e61ee (IsA orderly soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orderly sergeant is a kind of first sergeant", "pln": ["(: cnet_isa_8551b09e40 (IsA orderly_sergeant first_sergeant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ordinal number is a kind of number", "pln": ["(: cnet_isa_97289e9cf2 (IsA ordinal_number number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ordinance is a kind of legislative act", "pln": ["(: cnet_isa_fc73b9b2f4 (IsA ordinance legislative_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ordinand is a kind of clergyman", "pln": ["(: cnet_isa_31e3195f2b (IsA ordinand clergyman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ordinariness is a kind of quality", "pln": ["(: cnet_isa_829ae9dac1 (IsA ordinariness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ordinary is a kind of bicycle", "pln": ["(: cnet_isa_17bc55afb5 (IsA ordinary bicycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ordinary is a kind of charge", "pln": ["(: cnet_isa_a7b8f5103e (IsA ordinary charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ordinary is a kind of judge", "pln": ["(: cnet_isa_a8ccd497de (IsA ordinary judge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ordinary is a kind of clergyman", "pln": ["(: cnet_isa_918077a2ee (IsA ordinary clergyman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ordinary is a kind of condition", "pln": ["(: cnet_isa_a230521322 (IsA ordinary condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ordinary annuity is a kind of annuity", "pln": ["(: cnet_isa_7d40c8addc (IsA ordinary_annuity annuity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ordinate is a kind of cartesian coordinate", "pln": ["(: cnet_isa_685e8de329 (IsA ordinate cartesian_coordinate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ordination is a kind of appointment", "pln": ["(: cnet_isa_d6d3994e38 (IsA ordination appointment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ordination is a kind of status", "pln": ["(: cnet_isa_7983326fbc (IsA ordination status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ordnance survey is a kind of administrative unit", "pln": ["(: cnet_isa_7821f29c94 (IsA ordnance_survey administrative_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ore is a kind of fractional monetary unit", "pln": ["(: cnet_isa_6a94d9b2dd (IsA ore fractional_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ore is a kind of mineral", "pln": ["(: cnet_isa_5c5fb54058 (IsA ore mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ore bed is a kind of bed", "pln": ["(: cnet_isa_4d73dd9c1d (IsA ore_bed bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oread is a kind of nymph", "pln": ["(: cnet_isa_823d0ea075 (IsA oread nymph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oreamno is a kind of mammal genus", "pln": ["(: cnet_isa_d9bbc7d63a (IsA oreamno mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orectolobidae is a kind of fish family", "pln": ["(: cnet_isa_ffff9bfbcf (IsA orectolobidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orectolobus is a kind of fish genus", "pln": ["(: cnet_isa_2ab2e4e18b (IsA orectolobus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oregano is a kind of origanum", "pln": ["(: cnet_isa_b67c4cf6f0 (IsA oregano origanum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oregon is a kind of state", "pln": ["(: cnet_isa_e5076921a8 (IsA oregon state) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oregon ash is a kind of ash", "pln": ["(: cnet_isa_09c2104d9f (IsA oregon_ash ash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oregon cedar is a kind of cedar", "pln": ["(: cnet_isa_695fd6acc2 (IsA oregon_cedar cedar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oregon crab apple is a kind of wild apple", "pln": ["(: cnet_isa_f33bed2b92 (IsA oregon_crab_apple wild_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oregon grape is a kind of shrub", "pln": ["(: cnet_isa_a77b275bf1 (IsA oregon_grape shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oregon maple is a kind of maple", "pln": ["(: cnet_isa_81cef53db4 (IsA oregon_maple maple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oregon white oak is a kind of white oak", "pln": ["(: cnet_isa_f4a9b69dff (IsA oregon_white_oak white_oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oreo is a kind of cookie", "pln": ["(: cnet_isa_8a68d9c58d (IsA oreo cookie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oreopteris is a kind of fern genus", "pln": ["(: cnet_isa_32805f7ef8 (IsA oreopteris fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oreortyx is a kind of bird genus", "pln": ["(: cnet_isa_76737e0a01 (IsA oreortyx bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organ is a kind of another kind of keyboard", "pln": ["(: cnet_isa_cca66ecf82 (IsA organ another_kind_of_keyboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organ is a kind of instrument", "pln": ["(: cnet_isa_137bb43436 (IsA organ instrument) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organ is a kind of musical insrrument", "pln": ["(: cnet_isa_442f04bb44 (IsA organ musical_insrrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organ is a kind of musical instrument", "pln": ["(: cnet_isa_46ff2f9941 (IsA organ musical_instrument) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organ is a kind of wind instument", "pln": ["(: cnet_isa_9238c08d1a (IsA organ wind_instument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organ is a kind of keyboard instrument", "pln": ["(: cnet_isa_189cc3d7fc (IsA organ keyboard_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organ is a kind of wind instrument", "pln": ["(: cnet_isa_405a47a276 (IsA organ wind_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organ is a kind of body part", "pln": ["(: cnet_isa_e506d56524 (IsA organ body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organ is a kind of periodical", "pln": ["(: cnet_isa_10589209cd (IsA organ periodical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organ is a kind of agency", "pln": ["(: cnet_isa_f610722f87 (IsA organ agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organ donor is a kind of donor", "pln": ["(: cnet_isa_869cb97e49 (IsA organ_donor donor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "organ grinder is a kind of showman", "pln": ["(: cnet_isa_1b0b4784ba (IsA organ_grinder showman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organ loft is a kind of gallery", "pln": ["(: cnet_isa_09dbd96f73 (IsA organ_loft gallery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organ of corti is a kind of organ of hearing", "pln": ["(: cnet_isa_16944cda40 (IsA organ_of_corti organ_of_hearing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organ of hearing is a kind of sense organ", "pln": ["(: cnet_isa_2bab97eb5d (IsA organ_of_hearing sense_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organ pipe is a kind of wind instrument", "pln": ["(: cnet_isa_ede7c057ff (IsA organ_pipe wind_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "organ stop is a kind of organ pipe", "pln": ["(: cnet_isa_13572663e5 (IsA organ_stop organ_pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organdy is a kind of muslin", "pln": ["(: cnet_isa_2676f76ad0 (IsA organdy muslin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organelle is a kind of organ", "pln": ["(: cnet_isa_47f54ac026 (IsA organelle organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organic is a kind of fertilizer", "pln": ["(: cnet_isa_bd6f1d8ab3 (IsA organic fertilizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organic brain syndrome is a kind of mental abnormality", "pln": ["(: cnet_isa_56bc3fe0f8 (IsA organic_brain_syndrome mental_abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organic chemistry is a kind of chemistry", "pln": ["(: cnet_isa_5ddbf7c360 (IsA organic_chemistry chemistry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organic compound is a kind of compound", "pln": ["(: cnet_isa_9c23b3a804 (IsA organic_compound compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organic disorder is a kind of disorder", "pln": ["(: cnet_isa_28334a8754 (IsA organic_disorder disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organic light emitting diode is a kind of light emitting diode", "pln": ["(: cnet_isa_1213362b6a (IsA organic_light_emitting_diode light_emitting_diode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organic phenomenon is a kind of natural phenomenon", "pln": ["(: cnet_isa_f7a6c13c0c (IsA organic_phenomenon natural_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organic process is a kind of process", "pln": ["(: cnet_isa_893b71e749 (IsA organic_process process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organicism is a kind of scientific theory", "pln": ["(: cnet_isa_41a06cd30a (IsA organicism scientific_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "organification is a kind of organic process", "pln": ["(: cnet_isa_52f3f7ef9a (IsA organification organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organism is a kind of living thing", "pln": ["(: cnet_isa_38802643f2 (IsA organism living_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organism is a kind of system", "pln": ["(: cnet_isa_01d7f3db73 (IsA organism system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organist is a kind of musician", "pln": ["(: cnet_isa_b1bc493c9a (IsA organist musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organization is a kind of good thing", "pln": ["(: cnet_isa_38de9260c2 (IsA organization good_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organization is a kind of activity", "pln": ["(: cnet_isa_92e8929924 (IsA organization activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organization is a kind of administration", "pln": ["(: cnet_isa_3720171b84 (IsA organization administration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organization is a kind of orderliness", "pln": ["(: cnet_isa_2edbb4cd9d (IsA organization orderliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organization is a kind of social group", "pln": ["(: cnet_isa_0b56da8f61 (IsA organization social_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organization chart is a kind of chart", "pln": ["(: cnet_isa_abfe418387 (IsA organization_chart chart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organization expense is a kind of business expense", "pln": ["(: cnet_isa_73a5dc7282 (IsA organization_expense business_expense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organization for prohibition of chemical weapon is a kind of world organization", "pln": ["(: cnet_isa_cbc0ed8ddc (IsA organization_for_prohibition_of_chemical_weapon world_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "organization man is a kind of employee", "pln": ["(: cnet_isa_e6a139fcd7 (IsA organization_man employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organization of american state is a kind of world organization", "pln": ["(: cnet_isa_5698a6908a (IsA organization_of_american_state world_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organization of petroleum exporting country is a kind of oil cartel", "pln": ["(: cnet_isa_2057644a4a (IsA organization_of_petroleum_exporting_country oil_cartel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organization of petroleum exporting country is a kind of world organization", "pln": ["(: cnet_isa_25babca25f (IsA organization_of_petroleum_exporting_country world_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organized crime is a kind of social group", "pln": ["(: cnet_isa_8362156ba7 (IsA organized_crime social_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organized labor is a kind of labor", "pln": ["(: cnet_isa_b55c58b3e0 (IsA organized_labor labor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organizer is a kind of thinker", "pln": ["(: cnet_isa_a31e7ac28f (IsA organizer thinker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organizer is a kind of union representative", "pln": ["(: cnet_isa_7ec2a6da57 (IsA organizer union_representative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organon is a kind of system", "pln": ["(: cnet_isa_5138987d33 (IsA organon system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organophosphate is a kind of insecticide", "pln": ["(: cnet_isa_7d312e357e (IsA organophosphate insecticide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organophosphate nerve agent is a kind of nerve gas", "pln": ["(: cnet_isa_de278b2bdf (IsA organophosphate_nerve_agent nerve_gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "organza is a kind of fabric", "pln": ["(: cnet_isa_dd8258d09b (IsA organza fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orgasm is a kind of consummation", "pln": ["(: cnet_isa_7ad806cadc (IsA orgasm consummation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orgasm between two lover is a kind of wonderful feeling", "pln": ["(: cnet_isa_023ccb8582 (IsA orgasm_between_two_lover wonderful_feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orgy is a kind of indulgence", "pln": ["(: cnet_isa_de2a4c1133 (IsA orgy indulgence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orgy is a kind of revel", "pln": ["(: cnet_isa_9639c4b6ed (IsA orgy revel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orgy is a kind of rite", "pln": ["(: cnet_isa_4e0cc56948 (IsA orgy rite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oriel is a kind of bay window", "pln": ["(: cnet_isa_c08003f74f (IsA oriel bay_window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oriental arborvitae is a kind of arborvitae", "pln": ["(: cnet_isa_f3f530d72e (IsA oriental_arborvitae arborvitae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oriental beetle is a kind of scarabaeid beetle", "pln": ["(: cnet_isa_35219c9453 (IsA oriental_beetle scarabaeid_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "oriental cherry is a kind of flowering cherry", "pln": ["(: cnet_isa_f3451fa02a (IsA oriental_cherry flowering_cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oriental cockroach is a kind of cockroach", "pln": ["(: cnet_isa_7a333f7b87 (IsA oriental_cockroach cockroach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oriental plane is a kind of plane tree", "pln": ["(: cnet_isa_ff3c008a29 (IsA oriental_plane plane_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oriental poppy is a kind of poppy", "pln": ["(: cnet_isa_dde8698639 (IsA oriental_poppy poppy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oriental scop owl is a kind of scop owl", "pln": ["(: cnet_isa_da56594882 (IsA oriental_scop_owl scop_owl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oriental spruce is a kind of spruce", "pln": ["(: cnet_isa_2c1ea29ea6 (IsA oriental_spruce spruce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orientalism is a kind of quality", "pln": ["(: cnet_isa_cb2bf9931d (IsA orientalism quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orientalism is a kind of humanistic discipline", "pln": ["(: cnet_isa_13bc853d67 (IsA orientalism humanistic_discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orientalist is a kind of specialist", "pln": ["(: cnet_isa_1721150e51 (IsA orientalist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "orientation is a kind of placement", "pln": ["(: cnet_isa_0e1ca041e4 (IsA orientation placement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orientation is a kind of attitude", "pln": ["(: cnet_isa_687db07738 (IsA orientation attitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orientation is a kind of self awareness", "pln": ["(: cnet_isa_feecfe2009 (IsA orientation self_awareness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orientation is a kind of direction", "pln": ["(: cnet_isa_5cf56c171c (IsA orientation direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orientation course is a kind of course", "pln": ["(: cnet_isa_31dc1fbcd9 (IsA orientation_course course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orifice is a kind of passage", "pln": ["(: cnet_isa_5d1f276a32 (IsA orifice passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oriflamme is a kind of standard", "pln": ["(: cnet_isa_887f63872c (IsA oriflamme standard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oriflamme is a kind of symbol", "pln": ["(: cnet_isa_b5806b4c1d (IsA oriflamme symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "origami is a kind of art", "pln": ["(: cnet_isa_9d1d1e0303 (IsA origami art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "origanum is a kind of herb", "pln": ["(: cnet_isa_e3535ec737 (IsA origanum herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "origin is a kind of ancestry", "pln": ["(: cnet_isa_61f0ddd7e2 (IsA origin ancestry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "origin is a kind of intersection", "pln": ["(: cnet_isa_a95a8148b7 (IsA origin intersection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "origin is a kind of beginning", "pln": ["(: cnet_isa_720e1f3744 (IsA origin beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "origin is a kind of source", "pln": ["(: cnet_isa_51f7164348 (IsA origin source) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "origin of life is a kind of geological issue", "pln": ["(: cnet_isa_bb78849c6e (IsA origin_of_life geological_issue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "original is a kind of model", "pln": ["(: cnet_isa_3b41d6c62c (IsA original model) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "original sin is a kind of religious doctrine", "pln": ["(: cnet_isa_4f5d188024 (IsA original_sin religious_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "original sin is a kind of sin", "pln": ["(: cnet_isa_2f9e6abc73 (IsA original_sin sin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "originalism is a kind of belief", "pln": ["(: cnet_isa_5e409bdc63 (IsA originalism belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "originality is a kind of quality", "pln": ["(: cnet_isa_b9c3b0aa0d (IsA originality quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "originality is a kind of ability", "pln": ["(: cnet_isa_872f64d367 (IsA originality ability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "origination fee is a kind of fee", "pln": ["(: cnet_isa_dfab63054c (IsA origination_fee fee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "originator is a kind of creator", "pln": ["(: cnet_isa_a9fc6577d7 (IsA originator creator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orinasal phone is a kind of phone", "pln": ["(: cnet_isa_5e7a36fb0a (IsA orinasal_phone phone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oriole is a kind of bird", "pln": ["(: cnet_isa_a5957ae641 (IsA oriole bird) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oriolidae is a kind of bird family", "pln": ["(: cnet_isa_3152f591b0 (IsA oriolidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oriolus is a kind of bird genus", "pln": ["(: cnet_isa_adbd2d0542 (IsA oriolus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orion is a kind of constellation", "pln": ["(: cnet_isa_76867c6a19 (IsA orion constellation) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orion is a kind of diffuse nebula", "pln": ["(: cnet_isa_8c666d1e8a (IsA orion diffuse_nebula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orite is a kind of dicot genus", "pln": ["(: cnet_isa_2579b04f78 (IsA orite dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "oriya is a kind of magadhan", "pln": ["(: cnet_isa_afade98735 (IsA oriya magadhan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oriya is a kind of indian", "pln": ["(: cnet_isa_9409b92583 (IsA oriya indian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orleanism is a kind of political orientation", "pln": ["(: cnet_isa_b03beb9b8b (IsA orleanism political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orleanist is a kind of monarchist", "pln": ["(: cnet_isa_caf6e3ccba (IsA orleanist monarchist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orlop deck is a kind of deck", "pln": ["(: cnet_isa_45f13d3bae (IsA orlop_deck deck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ormer is a kind of abalone", "pln": ["(: cnet_isa_cdd1deda86 (IsA ormer abalone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ormolu is a kind of brass", "pln": ["(: cnet_isa_71efce92c4 (IsA ormolu brass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ormosia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_28d93fa218 (IsA ormosia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ornamental is a kind of plant", "pln": ["(: cnet_isa_bd95e6f590 (IsA ornamental plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ornamental kale is a kind of annual plant", "pln": ["(: cnet_isa_7b0bc661be (IsA ornamental_kale annual_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ornamentalism is a kind of practice", "pln": ["(: cnet_isa_13fd09122e (IsA ornamentalism practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ornamentation is a kind of decoration", "pln": ["(: cnet_isa_a2722dc594 (IsA ornamentation decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ornamentation is a kind of state", "pln": ["(: cnet_isa_ac1c367a7d (IsA ornamentation state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ornateness is a kind of appearance", "pln": ["(: cnet_isa_b775492bae (IsA ornateness appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ornithine is a kind of amino acid", "pln": ["(: cnet_isa_ad368bf469 (IsA ornithine amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ornithischia is a kind of animal order", "pln": ["(: cnet_isa_1103cbcd92 (IsA ornithischia animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ornithischian is a kind of dinosaur", "pln": ["(: cnet_isa_8fd2e35a89 (IsA ornithischian dinosaur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ornithogalum is a kind of liliid monocot genus", "pln": ["(: cnet_isa_e2a3077e09 (IsA ornithogalum liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ornithologist is a kind of zoologist", "pln": ["(: cnet_isa_a05730c029 (IsA ornithologist zoologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ornithology is a kind of zoology", "pln": ["(: cnet_isa_f1db2965b3 (IsA ornithology zoology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ornithomimid is a kind of theropod", "pln": ["(: cnet_isa_3d2c7ce5f8 (IsA ornithomimid theropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ornithomimida is a kind of animal order", "pln": ["(: cnet_isa_5d8c58bacd (IsA ornithomimida animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ornithopod is a kind of ornithischian", "pln": ["(: cnet_isa_98262aa592 (IsA ornithopod ornithischian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ornithorhynchidae is a kind of mammal family", "pln": ["(: cnet_isa_9024618751 (IsA ornithorhynchidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ornithorhynchus is a kind of mammal genus", "pln": ["(: cnet_isa_c7e693f975 (IsA ornithorhynchus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orobanchaceae is a kind of dicot family", "pln": ["(: cnet_isa_d1626b6f7c (IsA orobanchaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orogeny is a kind of geological process", "pln": ["(: cnet_isa_ec030dceee (IsA orogeny geological_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oroide is a kind of alloy", "pln": ["(: cnet_isa_962316c9ac (IsA oroide alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orology is a kind of geology", "pln": ["(: cnet_isa_d4ab7adc5e (IsA orology geology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orontium is a kind of monocot genus", "pln": ["(: cnet_isa_168c2b0a01 (IsA orontium monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oropharynx is a kind of cavity", "pln": ["(: cnet_isa_abcf80ec0a (IsA oropharynx cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orphan is a kind of young", "pln": ["(: cnet_isa_f988b61ec5 (IsA orphan young) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orphan is a kind of line", "pln": ["(: cnet_isa_e29ce8cfc4 (IsA orphan line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orphan is a kind of child", "pln": ["(: cnet_isa_d0fdcbdc58 (IsA orphan child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orphan is a kind of person", "pln": ["(: cnet_isa_ed2a5a6f3e (IsA orphan person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orphan site is a kind of toxic site", "pln": ["(: cnet_isa_e5f463640a (IsA orphan_site toxic_site) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orphanage is a kind of institution", "pln": ["(: cnet_isa_42b123213b (IsA orphanage institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orphanage is a kind of condition", "pln": ["(: cnet_isa_ef071bb3e8 (IsA orphanage condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orphrey is a kind of edging", "pln": ["(: cnet_isa_bd88bb96b3 (IsA orphrey edging) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orpiment is a kind of mineral", "pln": ["(: cnet_isa_9a3c971042 (IsA orpiment mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orpine is a kind of sedum", "pln": ["(: cnet_isa_bbd29211ff (IsA orpine sedum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "orpington is a kind of chicken", "pln": ["(: cnet_isa_1e07bc8729 (IsA orpington chicken) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orrery is a kind of planetarium", "pln": ["(: cnet_isa_3496100dda (IsA orrery planetarium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orrisroot is a kind of root", "pln": ["(: cnet_isa_c7506f660d (IsA orrisroot root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ortalis is a kind of bird genus", "pln": ["(: cnet_isa_e344904fad (IsA ortalis bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orthicon is a kind of television camera tube", "pln": ["(: cnet_isa_883e023e8a (IsA orthicon television_camera_tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orthilia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_235d5f7c56 (IsA orthilia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "orthochorea is a kind of chorea", "pln": ["(: cnet_isa_78594a90fd (IsA orthochorea chorea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "orthochromatic film is a kind of film", "pln": ["(: cnet_isa_b03257045d (IsA orthochromatic_film film) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "orthoclase is a kind of feldspar", "pln": ["(: cnet_isa_0fd9541679 (IsA orthoclase feldspar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "orthodontic treatment is a kind of treatment", "pln": ["(: cnet_isa_cf4068ec87 (IsA orthodontic_treatment treatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orthodontic is a kind of dentistry", "pln": ["(: cnet_isa_1367817c30 (IsA orthodontic dentistry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orthodontist is a kind of dentist", "pln": ["(: cnet_isa_79337d4303 (IsA orthodontist dentist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orthodox is a kind of christian", "pln": ["(: cnet_isa_39889d24b7 (IsA orthodox christian) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orthodox church is a kind of catholic church", "pln": ["(: cnet_isa_829e3ea66a (IsA orthodox_church catholic_church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orthodox jew is a kind of israelite", "pln": ["(: cnet_isa_1f223464cd (IsA orthodox_jew israelite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orthodox judaism is a kind of judaism", "pln": ["(: cnet_isa_fa2fc0356c (IsA orthodox_judaism judaism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orthodox sleep is a kind of sleep", "pln": ["(: cnet_isa_cd57724515 (IsA orthodox_sleep sleep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orthodoxy is a kind of orientation", "pln": ["(: cnet_isa_a29061c4ac (IsA orthodoxy orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orthodoxy is a kind of unoriginality", "pln": ["(: cnet_isa_6f52a91baf (IsA orthodoxy unoriginality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orthoepist is a kind of phonologist", "pln": ["(: cnet_isa_480a88067a (IsA orthoepist phonologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orthoepy is a kind of phonology", "pln": ["(: cnet_isa_611c758c46 (IsA orthoepy phonology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orthogonality is a kind of rectangularity", "pln": ["(: cnet_isa_b0e9970557 (IsA orthogonality rectangularity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orthogonality is a kind of opposition", "pln": ["(: cnet_isa_5ef6a42fb2 (IsA orthogonality opposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orthography is a kind of writing", "pln": ["(: cnet_isa_5ca324c76c (IsA orthography writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orthomyxovirus is a kind of myxovirus", "pln": ["(: cnet_isa_642824d21f (IsA orthomyxovirus myxovirus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orthopedic is a kind of medical science", "pln": ["(: cnet_isa_6fd31e2530 (IsA orthopedic medical_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orthopedist is a kind of specialist", "pln": ["(: cnet_isa_1ddd58d608 (IsA orthopedist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orthopnea is a kind of dyspnea", "pln": ["(: cnet_isa_b27cb5a662 (IsA orthopnea dyspnea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orthopristis is a kind of fish genus", "pln": ["(: cnet_isa_bdc98dea53 (IsA orthopristis fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orthopter is a kind of heavier than air craft", "pln": ["(: cnet_isa_9af03625fc (IsA orthopter heavier_than_air_craft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orthoptera is a kind of animal order", "pln": ["(: cnet_isa_f06c7fdc80 (IsA orthoptera animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "orthopterous insect is a kind of insect", "pln": ["(: cnet_isa_b08b0b2da4 (IsA orthopterous_insect insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orthoptic is a kind of treatment", "pln": ["(: cnet_isa_1690e23b41 (IsA orthoptic treatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orthoptist is a kind of specialist", "pln": ["(: cnet_isa_0b89cae612 (IsA orthoptist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orthoscope is a kind of ophthalmoscope", "pln": ["(: cnet_isa_b1aa63760b (IsA orthoscope ophthalmoscope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orthostatic hypotension is a kind of hypotension", "pln": ["(: cnet_isa_bed231c900 (IsA orthostatic_hypotension hypotension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "orthotomus is a kind of bird genus", "pln": ["(: cnet_isa_3566666359 (IsA orthotomus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orthotropous ovule is a kind of ovule", "pln": ["(: cnet_isa_9243cdf434 (IsA orthotropous_ovule ovule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ortolan is a kind of bunting", "pln": ["(: cnet_isa_fbd20fc3f6 (IsA ortolan bunting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ortygan is a kind of wading bird", "pln": ["(: cnet_isa_6541dc2e6e (IsA ortygan wading_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orycteropodidae is a kind of mammal family", "pln": ["(: cnet_isa_bf0dd577e3 (IsA orycteropodidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "orycteropus is a kind of mammal genus", "pln": ["(: cnet_isa_ee6c8941e3 (IsA orycteropus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oryctolagus is a kind of mammal genus", "pln": ["(: cnet_isa_63fc087268 (IsA oryctolagus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oryx is a kind of antelope", "pln": ["(: cnet_isa_27c0048b30 (IsA oryx antelope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oryza is a kind of monocot genus", "pln": ["(: cnet_isa_5c764f018a (IsA oryza monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oryzomy is a kind of mammal genus", "pln": ["(: cnet_isa_0519fd7c82 (IsA oryzomy mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oryzopsis is a kind of monocot genus", "pln": ["(: cnet_isa_252d110639 (IsA oryzopsis monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "orzo is a kind of pasta", "pln": ["(: cnet_isa_6e23304dce (IsA orzo pasta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "os is a kind of orifice", "pln": ["(: cnet_isa_d7cb96d0a1 (IsA os orifice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "osage is a kind of dhegiha", "pln": ["(: cnet_isa_42cfdb1985 (IsA osage dhegiha) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osage orange is a kind of angiospermous yellowwood", "pln": ["(: cnet_isa_76acf0b6cd (IsA osage_orange angiospermous_yellowwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oscan is a kind of osco umbrian", "pln": ["(: cnet_isa_ce97db3081 (IsA oscan osco_umbrian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oscan is a kind of italian", "pln": ["(: cnet_isa_2358eda4e8 (IsA oscan italian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oscheocele is a kind of swelling", "pln": ["(: cnet_isa_5a1a37e88b (IsA oscheocele swelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oscillation is a kind of wave", "pln": ["(: cnet_isa_1505240ae5 (IsA oscillation wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oscillation is a kind of natural process", "pln": ["(: cnet_isa_16afcf2054 (IsA oscillation natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oscillator is a kind of generator", "pln": ["(: cnet_isa_6027e63a53 (IsA oscillator generator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oscillatoriaceae is a kind of bacteria family", "pln": ["(: cnet_isa_8aa774c204 (IsA oscillatoriaceae bacteria_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oscillogram is a kind of recording", "pln": ["(: cnet_isa_f862dbf13c (IsA oscillogram recording) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oscillograph is a kind of recorder", "pln": ["(: cnet_isa_281eeb6d3d (IsA oscillograph recorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oscilloscope is a kind of electronic equipment", "pln": ["(: cnet_isa_ac5d3b385b (IsA oscilloscope electronic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oscine is a kind of passerine", "pln": ["(: cnet_isa_bbc58fdb15 (IsA oscine passerine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oscine is a kind of animal order", "pln": ["(: cnet_isa_f07877ff8b (IsA oscine animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oscitancy is a kind of dullness", "pln": ["(: cnet_isa_d8a0b66136 (IsA oscitancy dullness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oscitancy is a kind of sleepiness", "pln": ["(: cnet_isa_ac5b69123a (IsA oscitancy sleepiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osco umbrian is a kind of italic", "pln": ["(: cnet_isa_0b8b595420 (IsA osco_umbrian italic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osculation is a kind of contact", "pln": ["(: cnet_isa_48df0e5962 (IsA osculation contact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osier is a kind of willow", "pln": ["(: cnet_isa_a332f3a967 (IsA osier willow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osier is a kind of withe", "pln": ["(: cnet_isa_6c4f608a1e (IsA osier withe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osmanthus is a kind of dicot genus", "pln": ["(: cnet_isa_18fd302a42 (IsA osmanthus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osmeridae is a kind of fish family", "pln": ["(: cnet_isa_0bc8aa3418 (IsA osmeridae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osmerus is a kind of fish genus", "pln": ["(: cnet_isa_89d350c316 (IsA osmerus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osmiridium is a kind of mineral", "pln": ["(: cnet_isa_0532c07dee (IsA osmiridium mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osmium is a kind of metallic element", "pln": ["(: cnet_isa_b81320f989 (IsA osmium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osmoreceptor is a kind of end organ", "pln": ["(: cnet_isa_5d35f9f2e4 (IsA osmoreceptor end_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osmosis is a kind of diffusion", "pln": ["(: cnet_isa_a01d4f022a (IsA osmosis diffusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osmotic pressure is a kind of pressure", "pln": ["(: cnet_isa_da3cd848cf (IsA osmotic_pressure pressure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osmundaceae is a kind of fern family", "pln": ["(: cnet_isa_d5ea7907a8 (IsA osmundaceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osprey is a kind of hawk", "pln": ["(: cnet_isa_901bea28ea (IsA osprey hawk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ossete is a kind of iranian", "pln": ["(: cnet_isa_00f2e4b67e (IsA ossete iranian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ossicle is a kind of bone", "pln": ["(: cnet_isa_a7e24a6333 (IsA ossicle bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ossification is a kind of conventionality", "pln": ["(: cnet_isa_6475c38518 (IsA ossification conventionality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ossification is a kind of calcification", "pln": ["(: cnet_isa_4cd837dd51 (IsA ossification calcification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ossification is a kind of human process", "pln": ["(: cnet_isa_5b022059cf (IsA ossification human_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ossification is a kind of organic process", "pln": ["(: cnet_isa_5eeb0e5665 (IsA ossification organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osso buco is a kind of dish", "pln": ["(: cnet_isa_4a39725c0c (IsA osso_buco dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ossuary is a kind of receptacle", "pln": ["(: cnet_isa_8150af9daf (IsA ossuary receptacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ostariophysi is a kind of soft finned fish", "pln": ["(: cnet_isa_6e0bdcdc4c (IsA ostariophysi soft_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osteichthye is a kind of class", "pln": ["(: cnet_isa_90fb09f85b (IsA osteichthye class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osteitis is a kind of inflammation", "pln": ["(: cnet_isa_f1f63d6901 (IsA osteitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ostensive definition is a kind of definition", "pln": ["(: cnet_isa_64df24d730 (IsA ostensive_definition definition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ostentation is a kind of inelegance", "pln": ["(: cnet_isa_aa1d8e157b (IsA ostentation inelegance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ostentation is a kind of pretentiousness", "pln": ["(: cnet_isa_682087e217 (IsA ostentation pretentiousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ostentation is a kind of display", "pln": ["(: cnet_isa_5cd6d4dbc8 (IsA ostentation display) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osteoarthritis is a kind of arthritis", "pln": ["(: cnet_isa_6ec9120e49 (IsA osteoarthritis arthritis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "osteoblast is a kind of embryonic cell", "pln": ["(: cnet_isa_b0ba9b40c1 (IsA osteoblast embryonic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osteoblastoma is a kind of benign tumor", "pln": ["(: cnet_isa_d3299db382 (IsA osteoblastoma benign_tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osteochondroma is a kind of benign tumor", "pln": ["(: cnet_isa_9f34d379c8 (IsA osteochondroma benign_tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osteoclasis is a kind of treatment", "pln": ["(: cnet_isa_589e7c1ebf (IsA osteoclasis treatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osteoclast is a kind of bone cell", "pln": ["(: cnet_isa_61f3e12b25 (IsA osteoclast bone_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osteocyte is a kind of bone cell", "pln": ["(: cnet_isa_f43358d33c (IsA osteocyte bone_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osteodystrophy is a kind of dystrophy", "pln": ["(: cnet_isa_fca270858d (IsA osteodystrophy dystrophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osteogenesis imperfecta is a kind of autosomal dominant disease", "pln": ["(: cnet_isa_a193b5f02e (IsA osteogenesis_imperfecta autosomal_dominant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osteologist is a kind of anatomist", "pln": ["(: cnet_isa_3e53696f81 (IsA osteologist anatomist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osteology is a kind of anatomy", "pln": ["(: cnet_isa_8c04dd384c (IsA osteology anatomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osteolysis is a kind of lysis", "pln": ["(: cnet_isa_a8723c6eee (IsA osteolysis lysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osteoma is a kind of benign tumor", "pln": ["(: cnet_isa_2db74a2fc9 (IsA osteoma benign_tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osteomalacia is a kind of malacia", "pln": ["(: cnet_isa_fc7d85eccd (IsA osteomalacia malacia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osteomyelitis is a kind of osteitis", "pln": ["(: cnet_isa_dcacc773e5 (IsA osteomyelitis osteitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osteopath is a kind of therapist", "pln": ["(: cnet_isa_5572658a41 (IsA osteopath therapist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osteopathy is a kind of treatment", "pln": ["(: cnet_isa_e5fce17376 (IsA osteopathy treatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "osteopetrosis is a kind of genetic disease", "pln": ["(: cnet_isa_275bfe5764 (IsA osteopetrosis genetic_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osteophyte is a kind of process", "pln": ["(: cnet_isa_f99569c22b (IsA osteophyte process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "osteoporosis is a kind of pathology", "pln": ["(: cnet_isa_8b82ecaf2f (IsA osteoporosis pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osteosarcoma is a kind of sarcoma", "pln": ["(: cnet_isa_8073fd35d6 (IsA osteosarcoma sarcoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osteosclerosis is a kind of sclerosis", "pln": ["(: cnet_isa_38810493f7 (IsA osteosclerosis sclerosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osteostracan is a kind of jawless vertebrate", "pln": ["(: cnet_isa_d41bd5a276 (IsA osteostracan jawless_vertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osteostraci is a kind of animal order", "pln": ["(: cnet_isa_f83aae1795 (IsA osteostraci animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "osteotomy is a kind of operation", "pln": ["(: cnet_isa_da53640192 (IsA osteotomy operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ostinato is a kind of phrase", "pln": ["(: cnet_isa_99a8caab3e (IsA ostinato phrase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ostiole is a kind of pore", "pln": ["(: cnet_isa_64c4020cbb (IsA ostiole pore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ostomy is a kind of operation", "pln": ["(: cnet_isa_dfc62d278c (IsA ostomy operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ostraciidae is a kind of fish family", "pln": ["(: cnet_isa_0d06903985 (IsA ostraciidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ostracism is a kind of ejection", "pln": ["(: cnet_isa_88097044be (IsA ostracism ejection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ostracoda is a kind of class", "pln": ["(: cnet_isa_8381666638 (IsA ostracoda class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ostracoderm is a kind of jawless vertebrate", "pln": ["(: cnet_isa_621291c331 (IsA ostracoderm jawless_vertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ostracodermi is a kind of animal order", "pln": ["(: cnet_isa_c6b2a47bde (IsA ostracodermi animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ostrea is a kind of mollusk genus", "pln": ["(: cnet_isa_d2cf793597 (IsA ostrea mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ostreidae is a kind of mollusk family", "pln": ["(: cnet_isa_505b0da4a3 (IsA ostreidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ostrich is a kind of bird", "pln": ["(: cnet_isa_9c3307cd69 (IsA ostrich bird) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ostrich is a kind of ratite", "pln": ["(: cnet_isa_6042ad5842 (IsA ostrich ratite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ostrich is a kind of person", "pln": ["(: cnet_isa_f1aca54a08 (IsA ostrich person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ostrich fern is a kind of fern", "pln": ["(: cnet_isa_315238b101 (IsA ostrich_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ostriche is a kind of animal", "pln": ["(: cnet_isa_feaf7d4a42 (IsA ostriche animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ostriche is a kind of bird", "pln": ["(: cnet_isa_a3f2e2200b (IsA ostriche bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ostrogoth is a kind of goth", "pln": ["(: cnet_isa_8672212717 (IsA ostrogoth goth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ostrya is a kind of hamamelid dicot genus", "pln": ["(: cnet_isa_8a51bbffab (IsA ostrya hamamelid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ostryopsis is a kind of hamamelid dicot genus", "pln": ["(: cnet_isa_e40601d685 (IsA ostryopsis hamamelid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ostyak samoyed is a kind of russian", "pln": ["(: cnet_isa_c268ffbc1b (IsA ostyak_samoyed russian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "osx is a kind of operating system", "pln": ["(: cnet_isa_ac9e530bb1 (IsA osx operating_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "otaheite arrowroot is a kind of starch", "pln": ["(: cnet_isa_fef229f275 (IsA otaheite_arrowroot starch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "otaria is a kind of mammal genus", "pln": ["(: cnet_isa_ac8adf8c9c (IsA otaria mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "otariidae is a kind of mammal family", "pln": ["(: cnet_isa_cd44f2b291 (IsA otariidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "otherness is a kind of difference", "pln": ["(: cnet_isa_81fc015f99 (IsA otherness difference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "otherworld is a kind of abstraction", "pln": ["(: cnet_isa_1ef979a505 (IsA otherworld abstraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "othonna is a kind of shrub", "pln": ["(: cnet_isa_2dd8e595df (IsA othonna shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "otic ganglion is a kind of autonomic ganglion", "pln": ["(: cnet_isa_ddd4682888 (IsA otic_ganglion autonomic_ganglion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "otide is a kind of animal order", "pln": ["(: cnet_isa_794c3b1957 (IsA otide animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "otididae is a kind of bird family", "pln": ["(: cnet_isa_46dde47626 (IsA otididae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "otis is a kind of bird genus", "pln": ["(: cnet_isa_3069618c4d (IsA otis bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "otitis is a kind of inflammation", "pln": ["(: cnet_isa_4964f8eefd (IsA otitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "otitis externa is a kind of otitis", "pln": ["(: cnet_isa_5d9fc088f5 (IsA otitis_externa otitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "otitis media is a kind of otitis", "pln": ["(: cnet_isa_01ba3e14da (IsA otitis_media otitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oto is a kind of chiwere", "pln": ["(: cnet_isa_35520f718e (IsA oto chiwere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "otoe is a kind of siouan", "pln": ["(: cnet_isa_f898b563dc (IsA otoe siouan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "otology is a kind of medicine", "pln": ["(: cnet_isa_d7bbf75af8 (IsA otology medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "otoplasty is a kind of plastic surgery", "pln": ["(: cnet_isa_530fb825da (IsA otoplasty plastic_surgery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "otorhinolaryngology is a kind of medicine", "pln": ["(: cnet_isa_4715b60a83 (IsA otorhinolaryngology medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "otorrhea is a kind of pathology", "pln": ["(: cnet_isa_56ed578577 (IsA otorrhea pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "otosclerosis is a kind of genetic disease", "pln": ["(: cnet_isa_7fcce69d33 (IsA otosclerosis genetic_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "otoscope is a kind of medical instrument", "pln": ["(: cnet_isa_d2d38d8d10 (IsA otoscope medical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ottava rima is a kind of stanza", "pln": ["(: cnet_isa_5ad6d0a97b (IsA ottava_rima stanza) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ottawa is a kind of algonquin", "pln": ["(: cnet_isa_32ff58eba5 (IsA ottawa algonquin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "otter is a kind of musteline mammal", "pln": ["(: cnet_isa_1468c46129 (IsA otter musteline_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "otter is a kind of fur", "pln": ["(: cnet_isa_888909e57d (IsA otter fur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "otter shrew is a kind of insectivore", "pln": ["(: cnet_isa_3d000699be (IsA otter_shrew insectivore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "otterhound is a kind of hound", "pln": ["(: cnet_isa_3ceb8b8ee2 (IsA otterhound hound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ottoman is a kind of seat", "pln": ["(: cnet_isa_cdb480d945 (IsA ottoman seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ottoman is a kind of dynasty", "pln": ["(: cnet_isa_5d6bcd335c (IsA ottoman dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ottoman turk is a kind of turk", "pln": ["(: cnet_isa_282ff0873b (IsA ottoman_turk turk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "otus is a kind of bird genus", "pln": ["(: cnet_isa_235b8af8fb (IsA otus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oubliette is a kind of dungeon", "pln": ["(: cnet_isa_f453fd27e9 (IsA oubliette dungeon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ouguiya is a kind of mauritanian monetary unit", "pln": ["(: cnet_isa_a0221221fc (IsA ouguiya mauritanian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ouija is a kind of board", "pln": ["(: cnet_isa_8e7550bd1e (IsA ouija board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oulu is a kind of in finland", "pln": ["(: cnet_isa_81cf5d965c (IsA oulu in_finland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ounce is a kind of apothecary unit", "pln": ["(: cnet_isa_14e3171d95 (IsA ounce apothecary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ounce is a kind of avoirdupois unit", "pln": ["(: cnet_isa_b51515d7c2 (IsA ounce avoirdupois_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ounce is a kind of troy unit", "pln": ["(: cnet_isa_ddb4112b84 (IsA ounce troy_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "our lord s candle is a kind of yucca", "pln": ["(: cnet_isa_e7a6b9fe2d (IsA our_lord_s_candle yucca) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ouranopithecus is a kind of mammal genus", "pln": ["(: cnet_isa_fdec4f10e0 (IsA ouranopithecus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ouster is a kind of ejection", "pln": ["(: cnet_isa_fcd07b56a7 (IsA ouster ejection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ouster is a kind of eviction", "pln": ["(: cnet_isa_d376d078c0 (IsA ouster eviction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ouster is a kind of person", "pln": ["(: cnet_isa_f7c36f2798 (IsA ouster person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "out is a kind of failure", "pln": ["(: cnet_isa_ac76bede58 (IsA out failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "out and outer is a kind of expert", "pln": ["(: cnet_isa_968cf2f6a3 (IsA out_and_outer expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "out basket is a kind of receptacle", "pln": ["(: cnet_isa_a3d3dfd616 (IsA out_basket receptacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "out of body experience is a kind of experience", "pln": ["(: cnet_isa_83c8d7f8f9 (IsA out_of_body_experience experience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "out of court settlement is a kind of settlement", "pln": ["(: cnet_isa_95243b5667 (IsA out_of_court_settlement settlement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outage is a kind of breakdown", "pln": ["(: cnet_isa_43f536704d (IsA outage breakdown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outage is a kind of indefinite quantity", "pln": ["(: cnet_isa_1a9a87bae4 (IsA outage indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outback is a kind of bush", "pln": ["(: cnet_isa_4fecaf2d5e (IsA outback bush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "outboard motor is a kind of internal combustion engine", "pln": ["(: cnet_isa_d703c2d5c2 (IsA outboard_motor internal_combustion_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outboard motorboat is a kind of motorboat", "pln": ["(: cnet_isa_6d15202b43 (IsA outboard_motorboat motorboat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outbreak is a kind of happening", "pln": ["(: cnet_isa_2e3ab4a50b (IsA outbreak happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outbuilding is a kind of building", "pln": ["(: cnet_isa_bd1ed03786 (IsA outbuilding building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outburst is a kind of disturbance", "pln": ["(: cnet_isa_d13a4e1128 (IsA outburst disturbance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "outburst is a kind of happening", "pln": ["(: cnet_isa_2b0bf9e07f (IsA outburst happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outcast is a kind of unfortunate", "pln": ["(: cnet_isa_4bfb57cd39 (IsA outcast unfortunate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "outcaste is a kind of person", "pln": ["(: cnet_isa_286f52a366 (IsA outcaste person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outcrop is a kind of rock", "pln": ["(: cnet_isa_289c5f7d0f (IsA outcrop rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outdoor game is a kind of athletic game", "pln": ["(: cnet_isa_7a60a84f6c (IsA outdoor_game athletic_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outdoor sport is a kind of sport", "pln": ["(: cnet_isa_ec21b365d3 (IsA outdoor_sport sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outdoor is a kind of outside", "pln": ["(: cnet_isa_9f2d2bca0b (IsA outdoor outside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outdoorsman is a kind of person", "pln": ["(: cnet_isa_521af5cf38 (IsA outdoorsman person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outdoorswoman is a kind of outdoorsman", "pln": ["(: cnet_isa_1e085777c8 (IsA outdoorswoman outdoorsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outer planet is a kind of planet", "pln": ["(: cnet_isa_668d453f1f (IsA outer_planet planet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outer space is a kind of location", "pln": ["(: cnet_isa_8f23536f42 (IsA outer_space location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outer space is a kind of space", "pln": ["(: cnet_isa_1aba9f1f47 (IsA outer_space space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outercourse is a kind of sexual activity", "pln": ["(: cnet_isa_76bf96f5b6 (IsA outercourse sexual_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outerwear is a kind of clothing", "pln": ["(: cnet_isa_c572635682 (IsA outerwear clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outfall is a kind of exit", "pln": ["(: cnet_isa_73d839ac41 (IsA outfall exit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outfield is a kind of tract", "pln": ["(: cnet_isa_567a9ce4a9 (IsA outfield tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outfielder is a kind of fielder", "pln": ["(: cnet_isa_997d93677f (IsA outfielder fielder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outfit is a kind of attire", "pln": ["(: cnet_isa_f65ed6ee1c (IsA outfit attire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outfit is a kind of unit", "pln": ["(: cnet_isa_ab861efa32 (IsA outfit unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outfitter is a kind of shop", "pln": ["(: cnet_isa_98e7c33833 (IsA outfitter shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outfitter is a kind of garmentmaker", "pln": ["(: cnet_isa_f123ef981b (IsA outfitter garmentmaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outfitting is a kind of arming", "pln": ["(: cnet_isa_59358c9393 (IsA outfitting arming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outflow is a kind of flow", "pln": ["(: cnet_isa_eed7b0c868 (IsA outflow flow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outgo is a kind of transferred property", "pln": ["(: cnet_isa_93b08a73fd (IsA outgo transferred_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outgrowth is a kind of consequence", "pln": ["(: cnet_isa_39afc63274 (IsA outgrowth consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outhouse is a kind of outbuilding", "pln": ["(: cnet_isa_af7035970a (IsA outhouse outbuilding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "outlandishness is a kind of unfamiliarity", "pln": ["(: cnet_isa_5b9238ce74 (IsA outlandishness unfamiliarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outlet box is a kind of receptacle", "pln": ["(: cnet_isa_275523aa59 (IsA outlet_box receptacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outlier is a kind of resident", "pln": ["(: cnet_isa_9834551f2d (IsA outlier resident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outlier is a kind of deviation", "pln": ["(: cnet_isa_57c5e1d89f (IsA outlier deviation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outline is a kind of plan", "pln": ["(: cnet_isa_355199c97d (IsA outline plan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outline is a kind of summary", "pln": ["(: cnet_isa_f7511c309b (IsA outline summary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outline is a kind of boundary", "pln": ["(: cnet_isa_7818be456c (IsA outline boundary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outpatient is a kind of patient", "pln": ["(: cnet_isa_34ec1985ce (IsA outpatient patient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outport is a kind of port", "pln": ["(: cnet_isa_b470ca720d (IsA outport port) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outpost is a kind of military post", "pln": ["(: cnet_isa_606c8d0fff (IsA outpost military_post) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "output is a kind of production", "pln": ["(: cnet_isa_f91717cde9 (IsA output production) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "output is a kind of product", "pln": ["(: cnet_isa_86622e449f (IsA output product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "output is a kind of indefinite quantity", "pln": ["(: cnet_isa_21cc2011be (IsA output indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "output contract is a kind of contract", "pln": ["(: cnet_isa_b8b81fa863 (IsA output_contract contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "output device is a kind of peripheral", "pln": ["(: cnet_isa_3f9f5b4744 (IsA output_device peripheral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "output file is a kind of computer file", "pln": ["(: cnet_isa_29eb0a1c7f (IsA output_file computer_file) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "output program is a kind of utility program", "pln": ["(: cnet_isa_1f370e2bf8 (IsA output_program utility_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "output routine is a kind of utility routine", "pln": ["(: cnet_isa_5da97dceec (IsA output_routine utility_routine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "output signal is a kind of signal", "pln": ["(: cnet_isa_36beeefa9a (IsA output_signal signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "output to input ratio is a kind of ratio", "pln": ["(: cnet_isa_8a411aff4a (IsA output_to_input_ratio ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outrage is a kind of atrocity", "pln": ["(: cnet_isa_ec6d3a54bd (IsA outrage atrocity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outrageousness is a kind of indecency", "pln": ["(: cnet_isa_c9b9ec4084 (IsA outrageousness indecency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outreach is a kind of reach", "pln": ["(: cnet_isa_27ce4f9714 (IsA outreach reach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outrider is a kind of bodyguard", "pln": ["(: cnet_isa_515c8ff7f6 (IsA outrider bodyguard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outrigger is a kind of stabilizer", "pln": ["(: cnet_isa_c592131f52 (IsA outrigger stabilizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outrigger canoe is a kind of canoe", "pln": ["(: cnet_isa_172a87b373 (IsA outrigger_canoe canoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outside is a kind of region", "pln": ["(: cnet_isa_dabaa57f33 (IsA outside region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outside is a kind of surface", "pln": ["(: cnet_isa_bcd8df07e5 (IsA outside surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outside caliper is a kind of caliper", "pln": ["(: cnet_isa_4beb875bb0 (IsA outside_caliper caliper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outside clinch is a kind of clinch", "pln": ["(: cnet_isa_a89ac3e650 (IsA outside_clinch clinch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outside loop is a kind of loop", "pln": ["(: cnet_isa_e0090d65b6 (IsA outside_loop loop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outside mirror is a kind of car mirror", "pln": ["(: cnet_isa_f85c772800 (IsA outside_mirror car_mirror) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "outsider is a kind of contestant", "pln": ["(: cnet_isa_e399434975 (IsA outsider contestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outsider art is a kind of genre", "pln": ["(: cnet_isa_8d6065fe0d (IsA outsider_art genre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outsize is a kind of size", "pln": ["(: cnet_isa_4f29aef058 (IsA outsize size) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outskirt is a kind of city district", "pln": ["(: cnet_isa_b76249abf2 (IsA outskirt city_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outskirt is a kind of section", "pln": ["(: cnet_isa_7a8efb53a5 (IsA outskirt section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "outsole is a kind of sole", "pln": ["(: cnet_isa_a7d455b0b0 (IsA outsole sole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outstation is a kind of post", "pln": ["(: cnet_isa_a4fed5bf24 (IsA outstation post) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outstroke is a kind of throw", "pln": ["(: cnet_isa_abcca58398 (IsA outstroke throw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outtake is a kind of scene", "pln": ["(: cnet_isa_0641d720ff (IsA outtake scene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outthrust is a kind of outcrop", "pln": ["(: cnet_isa_4e0249bde8 (IsA outthrust outcrop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outwardness is a kind of extraversion", "pln": ["(: cnet_isa_17bf46704b (IsA outwardness extraversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "outwardness is a kind of position", "pln": ["(: cnet_isa_242a45672d (IsA outwardness position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "ovalipes is a kind of arthropod genus", "pln": ["(: cnet_isa_499156f18b (IsA ovalipes arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outwardness is a kind of cognitive state", "pln": ["(: cnet_isa_54c9551a34 (IsA outwardness cognitive_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "outwork is a kind of defensive structure", "pln": ["(: cnet_isa_1214e8cc64 (IsA outwork defensive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ouzo is a kind of liquor", "pln": ["(: cnet_isa_63d4d31916 (IsA ouzo liquor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ovalipe is a kind of arthropod genus", "pln": ["(: cnet_isa_97b921d5e8 (IsA ovalipe arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ovarian artery is a kind of artery", "pln": ["(: cnet_isa_9d58a0208f (IsA ovarian_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ovarian cyst is a kind of cyst", "pln": ["(: cnet_isa_afe519dedb (IsA ovarian_cyst cyst) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ovarian pregnancy is a kind of ectopic pregnancy", "pln": ["(: cnet_isa_a7def5b9b0 (IsA ovarian_pregnancy ectopic_pregnancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ovarian vein is a kind of vein", "pln": ["(: cnet_isa_e47437b50c (IsA ovarian_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ovaritis is a kind of inflammation", "pln": ["(: cnet_isa_f57e022d41 (IsA ovaritis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ovary is a kind of reproductive structure", "pln": ["(: cnet_isa_ce874a58c8 (IsA ovary reproductive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ovary is a kind of female internal reproductive organ", "pln": ["(: cnet_isa_07b970a719 (IsA ovary female_internal_reproductive_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ovary is a kind of gonad", "pln": ["(: cnet_isa_1658563d8d (IsA ovary gonad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ovate leaf is a kind of simple leaf", "pln": ["(: cnet_isa_d86c74b72d (IsA ovate_leaf simple_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ovation is a kind of recognition", "pln": ["(: cnet_isa_33c14e0e41 (IsA ovation recognition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oven is a kind of kitchen appliance", "pln": ["(: cnet_isa_d751e2bfad (IsA oven kitchen_appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oven stuffer is a kind of roaster", "pln": ["(: cnet_isa_e5cdaf88ae (IsA oven_stuffer roaster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oven thermometer is a kind of thermometer", "pln": ["(: cnet_isa_6e49da626b (IsA oven_thermometer thermometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ovenbird is a kind of new world warbler", "pln": ["(: cnet_isa_6d50c36b2f (IsA ovenbird new_world_warbler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ovenbird is a kind of tyrannid", "pln": ["(: cnet_isa_dc3ab5b524 (IsA ovenbird tyrannid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ovenware is a kind of crockery", "pln": ["(: cnet_isa_e4c974481c (IsA ovenware crockery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "over is a kind of part", "pln": ["(: cnet_isa_ec9b9f4c8c (IsA over part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "over counter drug is a kind of medicine", "pln": ["(: cnet_isa_15f9a69287 (IsA over_counter_drug medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "over counter market is a kind of stock exchange", "pln": ["(: cnet_isa_7f5d03c6e2 (IsA over_counter_market stock_exchange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "over counter stock is a kind of unlisted security", "pln": ["(: cnet_isa_18e0de988c (IsA over_counter_stock unlisted_security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "over shoulder bombing is a kind of loft bombing", "pln": ["(: cnet_isa_d2bb9e50fd (IsA over_shoulder_bombing loft_bombing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overabundance is a kind of abundance", "pln": ["(: cnet_isa_1f9215e4f4 (IsA overabundance abundance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overachievement is a kind of performance", "pln": ["(: cnet_isa_d4a7433f08 (IsA overachievement performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "overachiever is a kind of student", "pln": ["(: cnet_isa_5e2be9726c (IsA overachiever student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overactivity is a kind of bodily process", "pln": ["(: cnet_isa_7f188ce823 (IsA overactivity bodily_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overage is a kind of asset", "pln": ["(: cnet_isa_485c4f4a35 (IsA overage asset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "overall is a kind of coverall", "pln": ["(: cnet_isa_10e5bb5dbf (IsA overall coverall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overall is a kind of work clothing", "pln": ["(: cnet_isa_f2b54c1a72 (IsA overall work_clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overanxiety is a kind of anxiety", "pln": ["(: cnet_isa_0024fb4a91 (IsA overanxiety anxiety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overbid is a kind of bid", "pln": ["(: cnet_isa_992b1904a9 (IsA overbid bid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overbite is a kind of malocclusion", "pln": ["(: cnet_isa_73dbd8651b (IsA overbite malocclusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "overburden is a kind of land", "pln": ["(: cnet_isa_508372afb2 (IsA overburden land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overcapitalization is a kind of capitalization", "pln": ["(: cnet_isa_1925377a8d (IsA overcapitalization capitalization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overcast is a kind of casting", "pln": ["(: cnet_isa_4a89081f19 (IsA overcast casting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overcast is a kind of whipstitch", "pln": ["(: cnet_isa_ae73692104 (IsA overcast whipstitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "overcharge is a kind of charge", "pln": ["(: cnet_isa_36620a152c (IsA overcharge charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overcoat is a kind of coating", "pln": ["(: cnet_isa_f67e3045f2 (IsA overcoat coating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overcompensation is a kind of compensation", "pln": ["(: cnet_isa_65342fcd87 (IsA overcompensation compensation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overcredulity is a kind of credulity", "pln": ["(: cnet_isa_126f7d7f9c (IsA overcredulity credulity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overcrowding is a kind of problem in today city", "pln": ["(: cnet_isa_996b8d7f1c (IsA overcrowding problem_in_today_city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "overcup oak is a kind of oak", "pln": ["(: cnet_isa_ec8a7d86ab (IsA overcup_oak oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overdraft is a kind of draft", "pln": ["(: cnet_isa_f59caf91e2 (IsA overdraft draft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overdraft credit is a kind of open end credit", "pln": ["(: cnet_isa_ed411dfe4c (IsA overdraft_credit open_end_credit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overdrive is a kind of high gear", "pln": ["(: cnet_isa_1cd9cea5df (IsA overdrive high_gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "overdrive is a kind of action", "pln": ["(: cnet_isa_cd203e0763 (IsA overdrive action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overemphasis is a kind of vehemence", "pln": ["(: cnet_isa_ed12c595d4 (IsA overemphasis vehemence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "overestimate is a kind of estimate", "pln": ["(: cnet_isa_b3393728ed (IsA overestimate estimate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overestimate is a kind of appraisal", "pln": ["(: cnet_isa_2932866f2a (IsA overestimate appraisal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overexertion is a kind of effort", "pln": ["(: cnet_isa_892db3456c (IsA overexertion effort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overexploitation is a kind of exploitation", "pln": ["(: cnet_isa_f5b42d53d2 (IsA overexploitation exploitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overexposure is a kind of exposure", "pln": ["(: cnet_isa_137b05c4ad (IsA overexposure exposure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overfeeding is a kind of feeding", "pln": ["(: cnet_isa_02f5fdde83 (IsA overfeeding feeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overflight is a kind of flight", "pln": ["(: cnet_isa_6e6c0f8618 (IsA overflight flight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overflow is a kind of flow", "pln": ["(: cnet_isa_3376b5969f (IsA overflow flow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overflow incontinence is a kind of enuresis", "pln": ["(: cnet_isa_2875cea6c8 (IsA overflow_incontinence enuresis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overgarment is a kind of garment", "pln": ["(: cnet_isa_ad1a61e163 (IsA overgarment garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overgrowth is a kind of profusion", "pln": ["(: cnet_isa_dbd91f9215 (IsA overgrowth profusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overhand knot is a kind of knot", "pln": ["(: cnet_isa_01789a60fd (IsA overhand_knot knot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "overhand pitch is a kind of pitch", "pln": ["(: cnet_isa_806f635188 (IsA overhand_pitch pitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overhand stitch is a kind of embroidery stitch", "pln": ["(: cnet_isa_e7a10dba5b (IsA overhand_stitch embroidery_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overhang is a kind of projection", "pln": ["(: cnet_isa_749417498a (IsA overhang projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overhaul is a kind of care", "pln": ["(: cnet_isa_3115f3907c (IsA overhaul care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overhead is a kind of return", "pln": ["(: cnet_isa_9a70cc9462 (IsA overhead return) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overhead is a kind of ceiling", "pln": ["(: cnet_isa_8f70dcb786 (IsA overhead ceiling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overhead projector is a kind of projector", "pln": ["(: cnet_isa_eac8daba5c (IsA overhead_projector projector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overheating is a kind of heating", "pln": ["(: cnet_isa_d2ebfb13e7 (IsA overheating heating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overindulgence is a kind of indulgence", "pln": ["(: cnet_isa_206957954d (IsA overindulgence indulgence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overkill is a kind of effort", "pln": ["(: cnet_isa_531787da8e (IsA overkill effort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overkill is a kind of capability", "pln": ["(: cnet_isa_8e77f29ea3 (IsA overkill capability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overlap is a kind of concurrence", "pln": ["(: cnet_isa_606c8186c0 (IsA overlap concurrence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "overlap is a kind of representation", "pln": ["(: cnet_isa_9bd0b36fc8 (IsA overlap representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "overlay is a kind of decoration", "pln": ["(: cnet_isa_19ad767dc9 (IsA overlay decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overlay is a kind of layer", "pln": ["(: cnet_isa_e9fa9f347a (IsA overlay layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overlip is a kind of lip", "pln": ["(: cnet_isa_a0fb0135dd (IsA overlip lip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overload is a kind of load", "pln": ["(: cnet_isa_f795037099 (IsA overload load) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overlook is a kind of topographic point", "pln": ["(: cnet_isa_9556c9438d (IsA overlook topographic_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overlord is a kind of ruler", "pln": ["(: cnet_isa_6f4658bf13 (IsA overlord ruler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overlordship is a kind of position", "pln": ["(: cnet_isa_fa27c0ed63 (IsA overlordship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overmantel is a kind of shelf", "pln": ["(: cnet_isa_c71bc816cd (IsA overmantel shelf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overnighter is a kind of bag", "pln": ["(: cnet_isa_57c266b719 (IsA overnighter bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overnighter is a kind of guest", "pln": ["(: cnet_isa_35f7e92c9d (IsA overnighter guest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overpass is a kind of bridge", "pln": ["(: cnet_isa_e32377b82d (IsA overpass bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overpayment is a kind of payment", "pln": ["(: cnet_isa_fd64d2502a (IsA overpayment payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "overplus is a kind of excess", "pln": ["(: cnet_isa_472b93112b (IsA overplus excess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overpopulation is a kind of serious problem", "pln": ["(: cnet_isa_e50d0954f6 (IsA overpopulation serious_problem) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overpopulation is a kind of solvable problem", "pln": ["(: cnet_isa_a69bfcff4d (IsA overpopulation solvable_problem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overpopulation is a kind of population", "pln": ["(: cnet_isa_ec6ef2b66b (IsA overpopulation population) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "overpressure is a kind of atmospheric pressure", "pln": ["(: cnet_isa_a40786046a (IsA overpressure atmospheric_pressure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overprint is a kind of print", "pln": ["(: cnet_isa_656e0cb3bd (IsA overprint print) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overproduction is a kind of production", "pln": ["(: cnet_isa_76b6e978ee (IsA overproduction production) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overreaction is a kind of reaction", "pln": ["(: cnet_isa_082b4dc137 (IsA overreaction reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "override is a kind of device", "pln": ["(: cnet_isa_0d83000b62 (IsA override device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overseer is a kind of supervisor", "pln": ["(: cnet_isa_e580d4bd8b (IsA overseer supervisor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oversensitiveness is a kind of sensitivity", "pln": ["(: cnet_isa_6bd3c2e828 (IsA oversensitiveness sensitivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overshoe is a kind of footwear", "pln": ["(: cnet_isa_f2bfa4b659 (IsA overshoe footwear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overshoot is a kind of landing approach", "pln": ["(: cnet_isa_013d2aa215 (IsA overshoot landing_approach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oversight is a kind of mistake", "pln": ["(: cnet_isa_3e6885a659 (IsA oversight mistake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oversight is a kind of omission", "pln": ["(: cnet_isa_57e47258fc (IsA oversight omission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oversimplification is a kind of simplification", "pln": ["(: cnet_isa_c11b8be026 (IsA oversimplification simplification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overskirt is a kind of skirt", "pln": ["(: cnet_isa_78d71aa9ed (IsA overskirt skirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overspill is a kind of move", "pln": ["(: cnet_isa_a358ad8caa (IsA overspill move) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overstrain is a kind of strain", "pln": ["(: cnet_isa_4911154b72 (IsA overstrain strain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overt operation is a kind of intelligence", "pln": ["(: cnet_isa_7ffd5acb23 (IsA overt_operation intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overthrow is a kind of termination", "pln": ["(: cnet_isa_d5ee9c8895 (IsA overthrow termination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overtime is a kind of time period", "pln": ["(: cnet_isa_5c1a16b7ba (IsA overtime time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overtime is a kind of work time", "pln": ["(: cnet_isa_99d9cdffda (IsA overtime work_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overtime period is a kind of overtime", "pln": ["(: cnet_isa_090872bc85 (IsA overtime_period overtime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overtolerance is a kind of permissiveness", "pln": ["(: cnet_isa_1740ea65ec (IsA overtolerance permissiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overtone is a kind of harmonic", "pln": ["(: cnet_isa_203af63cc6 (IsA overtone harmonic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overtone is a kind of meaning", "pln": ["(: cnet_isa_f40f6a2952 (IsA overtone meaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overture is a kind of music", "pln": ["(: cnet_isa_364f466bc2 (IsA overture music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overture is a kind of suggestion", "pln": ["(: cnet_isa_91d0d8cbd2 (IsA overture suggestion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overturn is a kind of success", "pln": ["(: cnet_isa_e321f0023b (IsA overturn success) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overvaluation is a kind of evaluation", "pln": ["(: cnet_isa_c225456dc3 (IsA overvaluation evaluation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overview is a kind of summary", "pln": ["(: cnet_isa_d0595300a3 (IsA overview summary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "overwork is a kind of labor", "pln": ["(: cnet_isa_0714f0e13f (IsA overwork labor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ovibo is a kind of mammal genus", "pln": ["(: cnet_isa_39303fe242 (IsA ovibo mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ovipositor is a kind of organ", "pln": ["(: cnet_isa_b6aa597aed (IsA ovipositor organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oviraptorid is a kind of maniraptor", "pln": ["(: cnet_isa_5aa7a47552 (IsA oviraptorid maniraptor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ovis is a kind of mammal genus", "pln": ["(: cnet_isa_d3bfb4b483 (IsA ovis mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ovoid is a kind of solid", "pln": ["(: cnet_isa_7f17ea5bc2 (IsA ovoid solid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ovolo is a kind of molding", "pln": ["(: cnet_isa_b2679be96a (IsA ovolo molding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ovotestis is a kind of gonad", "pln": ["(: cnet_isa_6a623089e1 (IsA ovotestis gonad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ovulation is a kind of organic process", "pln": ["(: cnet_isa_aec99a3c41 (IsA ovulation organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ovulation method of family planning is a kind of natural family planning", "pln": ["(: cnet_isa_7121117a4b (IsA ovulation_method_of_family_planning natural_family_planning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ovule is a kind of ovum", "pln": ["(: cnet_isa_c7290b1a7a (IsA ovule ovum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ovule is a kind of reproductive structure", "pln": ["(: cnet_isa_8efe23f922 (IsA ovule reproductive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ovum is a kind of gamete", "pln": ["(: cnet_isa_b4c07944a6 (IsA ovum gamete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "owl is a kind of bird of prey", "pln": ["(: cnet_isa_c202455ea2 (IsA owl bird_of_prey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "owlet is a kind of owl", "pln": ["(: cnet_isa_c2500acf6b (IsA owlet owl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "own goal is a kind of goal", "pln": ["(: cnet_isa_80496a5f09 (IsA own_goal goal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "owner is a kind of businessman", "pln": ["(: cnet_isa_5ce2b34f0d (IsA owner businessman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "owner is a kind of person", "pln": ["(: cnet_isa_143aad1591 (IsA owner person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "owner driver is a kind of driver", "pln": ["(: cnet_isa_4f86e17d5d (IsA owner_driver driver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "owner occupier is a kind of resident", "pln": ["(: cnet_isa_b4a3cd8e5e (IsA owner_occupier resident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ownership is a kind of relation", "pln": ["(: cnet_isa_994c32fa41 (IsA ownership relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ownership is a kind of state", "pln": ["(: cnet_isa_f5bfe45599 (IsA ownership state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ox is a kind of bovine", "pln": ["(: cnet_isa_ced5e7604d (IsA ox bovine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ox is a kind of cattle", "pln": ["(: cnet_isa_237def8a1e (IsA ox cattle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxacillin is a kind of penicillinase resistant antibiotic", "pln": ["(: cnet_isa_82c8df3efd (IsA oxacillin penicillinase_resistant_antibiotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxalacetate is a kind of salt", "pln": ["(: cnet_isa_b9095b8c5c (IsA oxalacetate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxalacetic acid is a kind of acid", "pln": ["(: cnet_isa_0d55ec810d (IsA oxalacetic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "oxalate is a kind of salt", "pln": ["(: cnet_isa_1edb5db76f (IsA oxalate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxalic acid is a kind of acid", "pln": ["(: cnet_isa_e51e309081 (IsA oxalic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxalidaceae is a kind of rosid dicot family", "pln": ["(: cnet_isa_dac12dc0e9 (IsA oxalidaceae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxalis is a kind of herb", "pln": ["(: cnet_isa_f994f12893 (IsA oxalis herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxandra is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_44a378672e (IsA oxandra magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxblood red is a kind of dark red", "pln": ["(: cnet_isa_61357a1b57 (IsA oxblood_red dark_red) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxbow is a kind of framework", "pln": ["(: cnet_isa_2d886852d5 (IsA oxbow framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxbow is a kind of land", "pln": ["(: cnet_isa_47d93bae33 (IsA oxbow land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "oxbow is a kind of meander", "pln": ["(: cnet_isa_f24e1655c0 (IsA oxbow meander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxbow lake is a kind of lake", "pln": ["(: cnet_isa_6bd9759031 (IsA oxbow_lake lake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxbridge is a kind of university", "pln": ["(: cnet_isa_96d04e1401 (IsA oxbridge university) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxcart is a kind of cart", "pln": ["(: cnet_isa_fef013b7df (IsA oxcart cart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "oxeye is a kind of dormer window", "pln": ["(: cnet_isa_e65c9eb769 (IsA oxeye dormer_window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxeye is a kind of wildflower", "pln": ["(: cnet_isa_7536d95b76 (IsA oxeye wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxeye daisy is a kind of composite", "pln": ["(: cnet_isa_13a38b4962 (IsA oxeye_daisy composite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxeye daisy is a kind of flower", "pln": ["(: cnet_isa_8d1cf9e820 (IsA oxeye_daisy flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxford is a kind of shoe", "pln": ["(: cnet_isa_d0e2900119 (IsA oxford shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxford english is a kind of english", "pln": ["(: cnet_isa_fad50a8204 (IsA oxford_english english) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxford movement is a kind of religious movement", "pln": ["(: cnet_isa_03113144e0 (IsA oxford_movement religious_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "oxidant is a kind of chemical agent", "pln": ["(: cnet_isa_d92cd5010b (IsA oxidant chemical_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxidase is a kind of enzyme", "pln": ["(: cnet_isa_746f1d0333 (IsA oxidase enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxidation is a kind of chemical reaction", "pln": ["(: cnet_isa_09ef0e22f5 (IsA oxidation chemical_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxidation number is a kind of number", "pln": ["(: cnet_isa_db01e74c43 (IsA oxidation_number number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxidation reduction is a kind of chemical reaction", "pln": ["(: cnet_isa_a11c64f0fc (IsA oxidation_reduction chemical_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxidation reduction indicator is a kind of indicator", "pln": ["(: cnet_isa_7f5c86bc36 (IsA oxidation_reduction_indicator indicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxidative phosphorylation is a kind of organic process", "pln": ["(: cnet_isa_37326151cf (IsA oxidative_phosphorylation organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxide is a kind of compound", "pln": ["(: cnet_isa_10a7419044 (IsA oxide compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxidization is a kind of chemical reaction", "pln": ["(: cnet_isa_e1c013e8d2 (IsA oxidization chemical_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "oxidized ldl cholesterol is a kind of ldl cholesterol", "pln": ["(: cnet_isa_b2115e6522 (IsA oxidized_ldl_cholesterol ldl_cholesterol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxidoreductase is a kind of enzyme", "pln": ["(: cnet_isa_d5ae83f5f7 (IsA oxidoreductase enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxime is a kind of organic compound", "pln": ["(: cnet_isa_c2e4e62a91 (IsA oxime organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oximeter is a kind of measuring instrument", "pln": ["(: cnet_isa_3fe11d5b10 (IsA oximeter measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxlip is a kind of primrose", "pln": ["(: cnet_isa_1cc15a73a8 (IsA oxlip primrose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxonian is a kind of english person", "pln": ["(: cnet_isa_6d7e26a27e (IsA oxonian english_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxtail is a kind of tail", "pln": ["(: cnet_isa_90271e5cf9 (IsA oxtail tail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxtail soup is a kind of soup", "pln": ["(: cnet_isa_afc9f92709 (IsA oxtail_soup soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxtant is a kind of angular unit", "pln": ["(: cnet_isa_779ef670a9 (IsA oxtant angular_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxtongue is a kind of weed", "pln": ["(: cnet_isa_ea3df9ff1a (IsA oxtongue weed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxyacetylene is a kind of mixture", "pln": ["(: cnet_isa_c25ffd61ab (IsA oxyacetylene mixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxyacetylene torch is a kind of blowtorch", "pln": ["(: cnet_isa_36b756d9ea (IsA oxyacetylene_torch blowtorch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxyacid is a kind of acid", "pln": ["(: cnet_isa_72e9abb144 (IsA oxyacid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxybelis is a kind of reptile genus", "pln": ["(: cnet_isa_f20445a494 (IsA oxybelis reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxycephaly is a kind of birth defect", "pln": ["(: cnet_isa_ca21e5ace9 (IsA oxycephaly birth_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "oxydendrum is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_2ad6c6cf98 (IsA oxydendrum dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxygen is a kind of element", "pln": ["(: cnet_isa_81f426e69e (IsA oxygen element) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxygen is a kind of gas", "pln": ["(: cnet_isa_db8c9e00dc (IsA oxygen gas) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxygen is a kind of piece of water molecule", "pln": ["(: cnet_isa_ac5f4cd2be (IsA oxygen piece_of_water_molecule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxygen is a kind of chemical element", "pln": ["(: cnet_isa_dc87049f1a (IsA oxygen chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxygen 18 is a kind of oxygen", "pln": ["(: cnet_isa_afbadb1f9c (IsA oxygen_18 oxygen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxygen debt is a kind of physiological state", "pln": ["(: cnet_isa_f8c801324a (IsA oxygen_debt physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxygen deficit is a kind of deficit", "pln": ["(: cnet_isa_dc4deb36ed (IsA oxygen_deficit deficit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxygen mask is a kind of breathing device", "pln": ["(: cnet_isa_c32298cac1 (IsA oxygen_mask breathing_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxygenase is a kind of oxidoreductase", "pln": ["(: cnet_isa_7599dbf163 (IsA oxygenase oxidoreductase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxygenation is a kind of natural process", "pln": ["(: cnet_isa_9d711e813c (IsA oxygenation natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxyhemoglobin is a kind of hemoglobin", "pln": ["(: cnet_isa_a369d38b27 (IsA oxyhemoglobin hemoglobin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxylebius is a kind of fish genus", "pln": ["(: cnet_isa_9e8002ea39 (IsA oxylebius fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxymoron is a kind of trope", "pln": ["(: cnet_isa_10339f7741 (IsA oxymoron trope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxyopia is a kind of acuity", "pln": ["(: cnet_isa_82772fc09e (IsA oxyopia acuity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxytocic is a kind of medicine", "pln": ["(: cnet_isa_1b0b01280f (IsA oxytocic medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxytocin is a kind of hormone", "pln": ["(: cnet_isa_6aadb8f97c (IsA oxytocin hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxytone is a kind of word", "pln": ["(: cnet_isa_db2e503815 (IsA oxytone word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxytropis is a kind of rosid dicot genus", "pln": ["(: cnet_isa_941e88499d (IsA oxytropis rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxyura is a kind of bird genus", "pln": ["(: cnet_isa_b57787e22b (IsA oxyura bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxyuranus is a kind of reptile genus", "pln": ["(: cnet_isa_7033dbca92 (IsA oxyuranus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oxyuridae is a kind of worm family", "pln": ["(: cnet_isa_e46363b367 (IsA oxyuridae worm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oyabun is a kind of supervisor", "pln": ["(: cnet_isa_b3ce295a46 (IsA oyabun supervisor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oyster is a kind of bivalve", "pln": ["(: cnet_isa_0070a46d88 (IsA oyster bivalve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oyster is a kind of helping", "pln": ["(: cnet_isa_0aa07330ff (IsA oyster helping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oyster bar is a kind of bar", "pln": ["(: cnet_isa_8c36ce7dc2 (IsA oyster_bar bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "oyster bed is a kind of workplace", "pln": ["(: cnet_isa_9f7b89ace0 (IsA oyster_bed workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oyster crab is a kind of pea crab", "pln": ["(: cnet_isa_f885b89205 (IsA oyster_crab pea_crab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oyster cracker is a kind of cracker", "pln": ["(: cnet_isa_3587f0ee18 (IsA oyster_cracker cracker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oyster fish is a kind of toadfish", "pln": ["(: cnet_isa_b13bc16bec (IsA oyster_fish toadfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oyster mushroom is a kind of agaric", "pln": ["(: cnet_isa_7cdedad6f7 (IsA oyster_mushroom agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oyster plant is a kind of salsify", "pln": ["(: cnet_isa_57b457da20 (IsA oyster_plant salsify) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oyster shell is a kind of shell", "pln": ["(: cnet_isa_ee407eb013 (IsA oyster_shell shell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oyster stew is a kind of stew", "pln": ["(: cnet_isa_428d02495e (IsA oyster_stew stew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oyster stuffing is a kind of stuffing", "pln": ["(: cnet_isa_9e330bb47a (IsA oyster_stuffing stuffing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oystercatcher is a kind of shorebird", "pln": ["(: cnet_isa_820254234c (IsA oystercatcher shorebird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "oyster rockefeller is a kind of huitre", "pln": ["(: cnet_isa_2a4a40e8a0 (IsA oyster_rockefeller huitre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ozark chinkapin is a kind of chestnut", "pln": ["(: cnet_isa_7975b12e8f (IsA ozark_chinkapin chestnut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ozena is a kind of disease", "pln": ["(: cnet_isa_a48acc20b5 (IsA ozena disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ozone is a kind of gas", "pln": ["(: cnet_isa_bc9168874f (IsA ozone gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ozone hole is a kind of hole", "pln": ["(: cnet_isa_7dd63db156 (IsA ozone_hole hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ozone layer is a kind of layer", "pln": ["(: cnet_isa_e2d352676a (IsA ozone_layer layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ozone sickness is a kind of illness", "pln": ["(: cnet_isa_9acfbc1bbe (IsA ozone_sickness illness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ozonide is a kind of compound", "pln": ["(: cnet_isa_7cd1e769ee (IsA ozonide compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ozonium is a kind of fungus genus", "pln": ["(: cnet_isa_d4681a49e7 (IsA ozonium fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ozothamnus is a kind of asterid dicot genus", "pln": ["(: cnet_isa_88bddf4b28 (IsA ozothamnus asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "p is a kind of letter", "pln": ["(: cnet_isa_dd1d32c6d6 (IsA p letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "p n junction is a kind of contact", "pln": ["(: cnet_isa_1097b0819d (IsA p_n_junction contact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "p n p transistor is a kind of transistor", "pln": ["(: cnet_isa_12f5972af2 (IsA p_n_p_transistor transistor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "p type semiconductor is a kind of semiconductor device", "pln": ["(: cnet_isa_1f03b30449 (IsA p_type_semiconductor semiconductor_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pa anga is a kind of tongan monetary unit", "pln": ["(: cnet_isa_e8a8e8d336 (IsA pa_anga tongan_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pablum is a kind of cereal", "pln": ["(: cnet_isa_b3391f09be (IsA pablum cereal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pabulum is a kind of food", "pln": ["(: cnet_isa_986c67f995 (IsA pabulum food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pac man strategy is a kind of shark repellent", "pln": ["(: cnet_isa_baa513f036 (IsA pac_man_strategy shark_repellent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paca is a kind of rodent", "pln": ["(: cnet_isa_661088cfe1 (IsA paca rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pace is a kind of step", "pln": ["(: cnet_isa_b1a54f4dcb (IsA pace step) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pace is a kind of temporal property", "pln": ["(: cnet_isa_371b859958 (IsA pace temporal_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pace is a kind of rate", "pln": ["(: cnet_isa_4921c39542 (IsA pace rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pace car is a kind of car", "pln": ["(: cnet_isa_96809a2425 (IsA pace_car car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pace lap is a kind of lap", "pln": ["(: cnet_isa_22d43d90d5 (IsA pace_lap lap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pacemaker is a kind of electronic device", "pln": ["(: cnet_isa_f74fa84f39 (IsA pacemaker electronic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pacemaker is a kind of cardiac muscle", "pln": ["(: cnet_isa_6dd0899bf5 (IsA pacemaker cardiac_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pacer is a kind of horse", "pln": ["(: cnet_isa_8cc281cdaa (IsA pacer horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pacer is a kind of racehorse", "pln": ["(: cnet_isa_3f71a46f08 (IsA pacer racehorse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pacesetter is a kind of exemplar", "pln": ["(: cnet_isa_8edf0e1fbc (IsA pacesetter exemplar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pachinko is a kind of pinball", "pln": ["(: cnet_isa_d697a2710b (IsA pachinko pinball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pachisi is a kind of board game", "pln": ["(: cnet_isa_dd44431aeb (IsA pachisi board_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pachuco is a kind of adolescent", "pln": ["(: cnet_isa_9cc6a8d2fa (IsA pachuco adolescent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pachycephala is a kind of bird genus", "pln": ["(: cnet_isa_3df314dd34 (IsA pachycephala bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pachycephalosaur is a kind of bone headed dinosaur", "pln": ["(: cnet_isa_27a2ea624e (IsA pachycephalosaur bone_headed_dinosaur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pachycheilia is a kind of abnormality", "pln": ["(: cnet_isa_bc96f41afe (IsA pachycheilia abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pachyderm is a kind of placental", "pln": ["(: cnet_isa_25ae3d629d (IsA pachyderm placental) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pachyrhizus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_071cea9fc5 (IsA pachyrhizus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pachysandra is a kind of subshrub", "pln": ["(: cnet_isa_b537500088 (IsA pachysandra subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pachytene is a kind of phase", "pln": ["(: cnet_isa_62679beb57 (IsA pachytene phase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pacific bonito is a kind of bonito", "pln": ["(: cnet_isa_745bc65ea4 (IsA pacific_bonito bonito) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pacific bottlenose dolphin is a kind of bottlenose dolphin", "pln": ["(: cnet_isa_42fc6269bd (IsA pacific_bottlenose_dolphin bottlenose_dolphin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pacific cod is a kind of cod", "pln": ["(: cnet_isa_1745ed9d63 (IsA pacific_cod cod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pacific giant salamander is a kind of salamander", "pln": ["(: cnet_isa_211a78f137 (IsA pacific_giant_salamander salamander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pacific halibut is a kind of righteye flounder", "pln": ["(: cnet_isa_625aa41439 (IsA pacific_halibut righteye_flounder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pacific herring is a kind of herring", "pln": ["(: cnet_isa_574cedc3bf (IsA pacific_herring herring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pacific newt is a kind of newt", "pln": ["(: cnet_isa_4750e1c342 (IsA pacific_newt newt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pacific ocean is a kind of ocean", "pln": ["(: cnet_isa_b2cd126820 (IsA pacific_ocean ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pacific ridley is a kind of ridley", "pln": ["(: cnet_isa_b116f35a3e (IsA pacific_ridley ridley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pacific sardine is a kind of pilchard", "pln": ["(: cnet_isa_dcfcc9ef7e (IsA pacific_sardine pilchard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pacific spiny dogfish is a kind of spiny dogfish", "pln": ["(: cnet_isa_cfeb8b3053 (IsA pacific_spiny_dogfish spiny_dogfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pacific sturgeon is a kind of sturgeon", "pln": ["(: cnet_isa_8d70d7e934 (IsA pacific_sturgeon sturgeon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pacific time is a kind of civil time", "pln": ["(: cnet_isa_7712e43632 (IsA pacific_time civil_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pacific tree toad is a kind of tree toad", "pln": ["(: cnet_isa_9e58b03109 (IsA pacific_tree_toad tree_toad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pacific tripletail is a kind of tripletail", "pln": ["(: cnet_isa_95b2556169 (IsA pacific_tripletail tripletail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pacific walrus is a kind of walrus", "pln": ["(: cnet_isa_34b4a1b2db (IsA pacific_walrus walrus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pacific yew is a kind of yew", "pln": ["(: cnet_isa_a556bd9481 (IsA pacific_yew yew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pacification is a kind of appeasement", "pln": ["(: cnet_isa_1dd691889f (IsA pacification appeasement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pacification is a kind of conflict", "pln": ["(: cnet_isa_a11ceefcf8 (IsA pacification conflict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pacifier is a kind of thing", "pln": ["(: cnet_isa_419df68e25 (IsA pacifier thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pacifism is a kind of belief", "pln": ["(: cnet_isa_21bc724e8f (IsA pacifism belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pacifism is a kind of doctrine", "pln": ["(: cnet_isa_ba80bff584 (IsA pacifism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pacifist is a kind of adult", "pln": ["(: cnet_isa_bedeb0df21 (IsA pacifist adult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pacing is a kind of gait", "pln": ["(: cnet_isa_41c8f59f91 (IsA pacing gait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pacinian corpuscle is a kind of nerve ending", "pln": ["(: cnet_isa_31bbca88aa (IsA pacinian_corpuscle nerve_ending) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pack is a kind of bundle", "pln": ["(: cnet_isa_cbe3c7bb17 (IsA pack bundle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pack is a kind of corrective", "pln": ["(: cnet_isa_085a5c79e5 (IsA pack corrective) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pack is a kind of package", "pln": ["(: cnet_isa_9f105819bc (IsA pack package) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pack is a kind of animal group", "pln": ["(: cnet_isa_6d597783de (IsA pack animal_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pack is a kind of collection", "pln": ["(: cnet_isa_f7431392e8 (IsA pack collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pack animal is a kind of beast of burden", "pln": ["(: cnet_isa_2dfb938b1c (IsA pack_animal beast_of_burden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pack ice is a kind of ice", "pln": ["(: cnet_isa_c44eb209da (IsA pack_ice ice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pack of card is a kind of pack", "pln": ["(: cnet_isa_9262276001 (IsA pack_of_card pack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pack riding is a kind of riding", "pln": ["(: cnet_isa_e2edfa8144 (IsA pack_riding riding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "package is a kind of container", "pln": ["(: cnet_isa_070cf015d6 (IsA package container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "package is a kind of collection", "pln": ["(: cnet_isa_895ecdfa28 (IsA package collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "package store is a kind of shop", "pln": ["(: cnet_isa_9c5abf10a3 (IsA package_store shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "package tour is a kind of tour", "pln": ["(: cnet_isa_06a0b8d4da (IsA package_tour tour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "packaged good is a kind of grocery", "pln": ["(: cnet_isa_0e340b871b (IsA packaged_good grocery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "packaging is a kind of commercial enterprise", "pln": ["(: cnet_isa_53f9bb319a (IsA packaging commercial_enterprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "packaging is a kind of material", "pln": ["(: cnet_isa_a397f25de3 (IsA packaging material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "packaging company is a kind of company", "pln": ["(: cnet_isa_68be49521a (IsA packaging_company company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "packed cell is a kind of blood cell", "pln": ["(: cnet_isa_585b99c7e4 (IsA packed_cell blood_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "packer is a kind of workman", "pln": ["(: cnet_isa_1c520066ce (IsA packer workman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "packera is a kind of asterid dicot genus", "pln": ["(: cnet_isa_a1bf1a1fce (IsA packera asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "packet is a kind of package", "pln": ["(: cnet_isa_7e59f5fc6a (IsA packet package) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "packet is a kind of message", "pln": ["(: cnet_isa_e7cfc6024c (IsA packet message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "packhorse is a kind of pack animal", "pln": ["(: cnet_isa_b7c68e178f (IsA packhorse pack_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "packhorse is a kind of workhorse", "pln": ["(: cnet_isa_c8b0707d55 (IsA packhorse workhorse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "packing is a kind of carry", "pln": ["(: cnet_isa_3fd61ec66c (IsA packing carry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "packing is a kind of enclosure", "pln": ["(: cnet_isa_0542d302d2 (IsA packing enclosure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "packing box is a kind of crate", "pln": ["(: cnet_isa_cce4e3b02b (IsA packing_box crate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "packing material is a kind of material", "pln": ["(: cnet_isa_d14b582d3c (IsA packing_material material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "packing needle is a kind of needle", "pln": ["(: cnet_isa_a87b7be42e (IsA packing_needle needle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "packinghouse is a kind of building", "pln": ["(: cnet_isa_6b31004576 (IsA packinghouse building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "packinghouse is a kind of plant", "pln": ["(: cnet_isa_832d172b8e (IsA packinghouse plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "packrat is a kind of wood rat", "pln": ["(: cnet_isa_07f24fcea8 (IsA packrat wood_rat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "packrat is a kind of collector", "pln": ["(: cnet_isa_dfd8ef6f72 (IsA packrat collector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "packsaddle is a kind of saddle", "pln": ["(: cnet_isa_51359e42e4 (IsA packsaddle saddle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "packthread is a kind of string", "pln": ["(: cnet_isa_abd5040711 (IsA packthread string) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pad is a kind of structure", "pln": ["(: cnet_isa_ae88617fd2 (IsA pad structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pad is a kind of block", "pln": ["(: cnet_isa_2ec8aec758 (IsA pad block) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pad is a kind of padding", "pln": ["(: cnet_isa_38c579d6f1 (IsA pad padding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pad is a kind of leaf", "pln": ["(: cnet_isa_2edb72e5fa (IsA pad leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pad is a kind of paper", "pln": ["(: cnet_isa_803f715dc5 (IsA pad paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "padauk is a kind of tree", "pln": ["(: cnet_isa_3d49073216 (IsA padauk tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "padda is a kind of bird genus", "pln": ["(: cnet_isa_e314963099 (IsA padda bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "padding is a kind of artifact", "pln": ["(: cnet_isa_cb02481186 (IsA padding artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paddle is a kind of bat", "pln": ["(: cnet_isa_c9ec485c37 (IsA paddle bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "paddle is a kind of blade", "pln": ["(: cnet_isa_f8a989ad60 (IsA paddle blade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paddle is a kind of instrument of punishment", "pln": ["(: cnet_isa_ed0187886e (IsA paddle instrument_of_punishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paddle is a kind of oar", "pln": ["(: cnet_isa_7d22830172 (IsA paddle oar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paddle box is a kind of covering", "pln": ["(: cnet_isa_9a0e6332d8 (IsA paddle_box covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paddle steamer is a kind of steamer", "pln": ["(: cnet_isa_1b3966a428 (IsA paddle_steamer steamer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paddlefish is a kind of ganoid", "pln": ["(: cnet_isa_14f5261f8e (IsA paddlefish ganoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paddlewheel is a kind of wheel", "pln": ["(: cnet_isa_8cced7eac0 (IsA paddlewheel wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paddock is a kind of pen", "pln": ["(: cnet_isa_e7f85b5067 (IsA paddock pen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paddy is a kind of rice", "pln": ["(: cnet_isa_f7471decde (IsA paddy rice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "paddy is a kind of field", "pln": ["(: cnet_isa_b83b858e93 (IsA paddy field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pademelon is a kind of wallaby", "pln": ["(: cnet_isa_3382bb2325 (IsA pademelon wallaby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "padlock is a kind of lock", "pln": ["(: cnet_isa_123335f258 (IsA padlock lock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "padre is a kind of priest", "pln": ["(: cnet_isa_f3f362f27b (IsA padre priest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "padre is a kind of title", "pln": ["(: cnet_isa_f133aa7210 (IsA padre title) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "padrone is a kind of employer", "pln": ["(: cnet_isa_cb8fdf1a53 (IsA padrone employer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "padrone is a kind of host", "pln": ["(: cnet_isa_97335fb0dd (IsA padrone host) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paean is a kind of hymn", "pln": ["(: cnet_isa_9ca2e46a1e (IsA paean hymn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paella is a kind of dish", "pln": ["(: cnet_isa_152ed5c123 (IsA paella dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paeonia is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_cb6b8a4056 (IsA paeonia magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paeoniaceae is a kind of magnoliid dicot family", "pln": ["(: cnet_isa_b16901b47f (IsA paeoniaceae magnoliid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pagan is a kind of religionist", "pln": ["(: cnet_isa_ab4d0e0177 (IsA pagan religionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paganism is a kind of religion", "pln": ["(: cnet_isa_9ac2cef807 (IsA paganism religion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pagan is a kind of witche", "pln": ["(: cnet_isa_6ed3e2ab5c (IsA pagan witche) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "page is a kind of leaf", "pln": ["(: cnet_isa_b548d850c9 (IsA page leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "page is a kind of attendant", "pln": ["(: cnet_isa_54a902ac65 (IsA page attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "page is a kind of messenger boy", "pln": ["(: cnet_isa_e13cafb1e7 (IsA page messenger_boy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "page printer is a kind of printer", "pln": ["(: cnet_isa_58702fe0d1 (IsA page_printer printer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pageant is a kind of representation", "pln": ["(: cnet_isa_487e20a667 (IsA pageant representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pageant is a kind of ceremony", "pln": ["(: cnet_isa_e840b78c56 (IsA pageant ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pageboy is a kind of hairdo", "pln": ["(: cnet_isa_49745ac9a0 (IsA pageboy hairdo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pagellus is a kind of fish genus", "pln": ["(: cnet_isa_00e16fbb58 (IsA pagellus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paget s disease is a kind of osteitis", "pln": ["(: cnet_isa_c82ba2ed33 (IsA paget_s_disease osteitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pagination is a kind of number", "pln": ["(: cnet_isa_db9b588db1 (IsA pagination number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paging is a kind of utterance", "pln": ["(: cnet_isa_337dcd4d75 (IsA paging utterance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pagoda is a kind of temple", "pln": ["(: cnet_isa_fb45c449a4 (IsA pagoda temple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pagoda tree is a kind of frangipani", "pln": ["(: cnet_isa_d624ae8550 (IsA pagoda_tree frangipani) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pagophila is a kind of bird genus", "pln": ["(: cnet_isa_2b9d9d1b3e (IsA pagophila bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pagophilus is a kind of mammal genus", "pln": ["(: cnet_isa_fb7bc2e955 (IsA pagophilus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pagrus is a kind of fish genus", "pln": ["(: cnet_isa_d1c4db5c2e (IsA pagrus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paguridae is a kind of arthropod family", "pln": ["(: cnet_isa_ea8e32288b (IsA paguridae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pagurus is a kind of arthropod genus", "pln": ["(: cnet_isa_cf7e739865 (IsA pagurus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pahautea is a kind of cedar", "pln": ["(: cnet_isa_13a6baca7f (IsA pahautea cedar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pahlavi is a kind of iranian", "pln": ["(: cnet_isa_b37542b9a7 (IsA pahlavi iranian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pahlavi is a kind of script", "pln": ["(: cnet_isa_db75863409 (IsA pahlavi script) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pahoehoe is a kind of lava", "pln": ["(: cnet_isa_e844886126 (IsA pahoehoe lava) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paid vacation is a kind of vacation", "pln": ["(: cnet_isa_b6a6fe1557 (IsA paid_vacation vacation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pail is a kind of bucket", "pln": ["(: cnet_isa_08c63c1a11 (IsA pail bucket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pail is a kind of containerful", "pln": ["(: cnet_isa_c10544b7da (IsA pail containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "paillasse is a kind of mattress", "pln": ["(: cnet_isa_8f1ced610d (IsA paillasse mattress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pain is a kind of sensation", "pln": ["(: cnet_isa_eec49f139d (IsA pain sensation) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pain is a kind of symptom", "pln": ["(: cnet_isa_e6b9fd315d (IsA pain symptom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pain is a kind of somesthesia", "pln": ["(: cnet_isa_e2c989d506 (IsA pain somesthesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pain is a kind of feeling", "pln": ["(: cnet_isa_c5ba127090 (IsA pain feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pain is a kind of unpleasant person", "pln": ["(: cnet_isa_3510dd3767 (IsA pain unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pain threshold is a kind of absolute threshold", "pln": ["(: cnet_isa_d507020b58 (IsA pain_threshold absolute_threshold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pain unit is a kind of unit of measurement", "pln": ["(: cnet_isa_5d212aa3c0 (IsA pain_unit unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paint is a kind of coating", "pln": ["(: cnet_isa_3853057cd5 (IsA paint coating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paint is a kind of coloring material", "pln": ["(: cnet_isa_388446d59d (IsA paint coloring_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paint roller is a kind of roller", "pln": ["(: cnet_isa_7f5c5672ee (IsA paint_roller roller) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paintball is a kind of outdoor game", "pln": ["(: cnet_isa_ee900792ea (IsA paintball outdoor_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paintball is a kind of capsule", "pln": ["(: cnet_isa_7c00d6b383 (IsA paintball capsule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paintball gun is a kind of air gun", "pln": ["(: cnet_isa_8f6d0cf32b (IsA paintball_gun air_gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paintball gun is a kind of game equipment", "pln": ["(: cnet_isa_4cfe310e0a (IsA paintball_gun game_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paintbox is a kind of box", "pln": ["(: cnet_isa_8e2137ca69 (IsA paintbox box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paintbrush is a kind of applicator", "pln": ["(: cnet_isa_3cd2cd3e4a (IsA paintbrush applicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paintbrush is a kind of brush", "pln": ["(: cnet_isa_274ff8d916 (IsA paintbrush brush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "painted beauty is a kind of nymphalid", "pln": ["(: cnet_isa_f0ed2c105e (IsA painted_beauty nymphalid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "painted daisy is a kind of flower", "pln": ["(: cnet_isa_58ee0102fc (IsA painted_daisy flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "painted greenling is a kind of greenling", "pln": ["(: cnet_isa_27a21b92a2 (IsA painted_greenling greenling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "painted nettle is a kind of coleus", "pln": ["(: cnet_isa_06684e98e9 (IsA painted_nettle coleus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "painted sandgrouse is a kind of sandgrouse", "pln": ["(: cnet_isa_a73ee41100 (IsA painted_sandgrouse sandgrouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "painted tongue is a kind of salpiglossis", "pln": ["(: cnet_isa_b7b3a9c058 (IsA painted_tongue salpiglossis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "painted turtle is a kind of turtle", "pln": ["(: cnet_isa_5b05c12e9b (IsA painted_turtle turtle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "painter is a kind of line", "pln": ["(: cnet_isa_e1a987ecfd (IsA painter line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "painter is a kind of artist", "pln": ["(: cnet_isa_2f695fdd3f (IsA painter artist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "painter is a kind of skilled worker", "pln": ["(: cnet_isa_5f4d7c57b1 (IsA painter skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "painting is a kind of form of art", "pln": ["(: cnet_isa_1c6f1ba887 (IsA painting form_of_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "painting is a kind of application", "pln": ["(: cnet_isa_82833f2f7f (IsA painting application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "painting is a kind of art", "pln": ["(: cnet_isa_a98533f9cc (IsA painting art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "painting is a kind of fine art", "pln": ["(: cnet_isa_9aa3717ea9 (IsA painting fine_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "painting is a kind of trade", "pln": ["(: cnet_isa_81d6f22bae (IsA painting trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "painting is a kind of graphic art", "pln": ["(: cnet_isa_6908bd09b3 (IsA painting graphic_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pair is a kind of gathering", "pln": ["(: cnet_isa_0f2818c4c5 (IsA pair gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pair is a kind of poker hand", "pln": ["(: cnet_isa_af37870b1f (IsA pair poker_hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pair is a kind of set", "pln": ["(: cnet_isa_a52f350dee (IsA pair set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pair of pant is a kind of piece of clothing", "pln": ["(: cnet_isa_acaa5badb4 (IsA pair_of_pant piece_of_clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pair of pant is a kind of single garment", "pln": ["(: cnet_isa_0c5520a8c5 (IsA pair_of_pant single_garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pair of trouser is a kind of garment", "pln": ["(: cnet_isa_2637781f7b (IsA pair_of_trouser garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pair production is a kind of natural process", "pln": ["(: cnet_isa_98de208ec2 (IsA pair_production natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pairing is a kind of grouping", "pln": ["(: cnet_isa_5c86c97bb5 (IsA pairing grouping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paisa is a kind of fractional monetary unit", "pln": ["(: cnet_isa_213ca474fa (IsA paisa fractional_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paisley is a kind of pattern", "pln": ["(: cnet_isa_3328402c69 (IsA paisley pattern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paisley is a kind of fabric", "pln": ["(: cnet_isa_e7d17b47df (IsA paisley fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paiute is a kind of shoshonean", "pln": ["(: cnet_isa_1b4b6389aa (IsA paiute shoshonean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paiwanic is a kind of formosan", "pln": ["(: cnet_isa_aa7e3b9f1e (IsA paiwanic formosan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pajama is a kind of nightclothe", "pln": ["(: cnet_isa_cf6ca7dcc9 (IsA pajama nightclothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pakistani is a kind of asiatic", "pln": ["(: cnet_isa_9d8162dbf4 (IsA pakistani asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pakistani monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_034320ed43 (IsA pakistani_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pakistani rupee is a kind of pakistani monetary unit", "pln": ["(: cnet_isa_4fc96e733d (IsA pakistani_rupee pakistani_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palace is a kind of exhibition hall", "pln": ["(: cnet_isa_1f0dd85ae4 (IsA palace exhibition_hall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palace is a kind of mansion", "pln": ["(: cnet_isa_e7188a83f0 (IsA palace mansion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palace is a kind of residence", "pln": ["(: cnet_isa_2349931bfa (IsA palace residence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palace is a kind of government", "pln": ["(: cnet_isa_4669b284a5 (IsA palace government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palaemon is a kind of arthropod genus", "pln": ["(: cnet_isa_77fa3fc0a3 (IsA palaemon arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palaemonidae is a kind of arthropod family", "pln": ["(: cnet_isa_77438ad993 (IsA palaemonidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palaic is a kind of anatolian", "pln": ["(: cnet_isa_8aef91e7d9 (IsA palaic anatolian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palanquin is a kind of litter", "pln": ["(: cnet_isa_1b2d59b2de (IsA palanquin litter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palaquium is a kind of dicot genus", "pln": ["(: cnet_isa_97f33d6925 (IsA palaquium dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palatability is a kind of taste property", "pln": ["(: cnet_isa_b716802a9f (IsA palatability taste_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palatableness is a kind of acceptability", "pln": ["(: cnet_isa_4300b47875 (IsA palatableness acceptability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palatal is a kind of semivowel", "pln": ["(: cnet_isa_27f4390fdd (IsA palatal semivowel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palate is a kind of surface", "pln": ["(: cnet_isa_c3460d9c14 (IsA palate surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palatinate is a kind of district", "pln": ["(: cnet_isa_423abe4ea9 (IsA palatinate district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palatine is a kind of bone", "pln": ["(: cnet_isa_67dd45856a (IsA palatine bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palatine is a kind of nobleman", "pln": ["(: cnet_isa_67b7b4c8d8 (IsA palatine nobleman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palatine is a kind of roman", "pln": ["(: cnet_isa_b9283fffd7 (IsA palatine roman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palatine artery is a kind of artery", "pln": ["(: cnet_isa_ae875f08be (IsA palatine_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palatine raphe is a kind of raphe", "pln": ["(: cnet_isa_305dbd41b1 (IsA palatine_raphe raphe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palatine vein is a kind of vein", "pln": ["(: cnet_isa_85e99abe70 (IsA palatine_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palatopharyngoplasty is a kind of operation", "pln": ["(: cnet_isa_dcd7a797dc (IsA palatopharyngoplasty operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palaver is a kind of nonsense", "pln": ["(: cnet_isa_2521e396b4 (IsA palaver nonsense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pale ale is a kind of ale", "pln": ["(: cnet_isa_245f3af801 (IsA pale_ale ale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pale chrysanthemum aphid is a kind of greenfly", "pln": ["(: cnet_isa_7968a9db1f (IsA pale_chrysanthemum_aphid greenfly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pale violet is a kind of violet", "pln": ["(: cnet_isa_375af95d48 (IsA pale_violet violet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pale yellow is a kind of yellow", "pln": ["(: cnet_isa_d62ea69e55 (IsA pale_yellow yellow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paleacrita is a kind of arthropod genus", "pln": ["(: cnet_isa_e558004fd7 (IsA paleacrita arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paleacrita vernata is a kind of geometrid", "pln": ["(: cnet_isa_bf01526f05 (IsA paleacrita_vernata geometrid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paleencephalon is a kind of neural structure", "pln": ["(: cnet_isa_51901c02da (IsA paleencephalon neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paleness is a kind of complexion", "pln": ["(: cnet_isa_381049456b (IsA paleness complexion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paleo american culture is a kind of culture", "pln": ["(: cnet_isa_58fa2e3dff (IsA paleo_american_culture culture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "paleo amerind is a kind of native american", "pln": ["(: cnet_isa_d47638df95 (IsA paleo_amerind native_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paleoanthropology is a kind of vertebrate paleontology", "pln": ["(: cnet_isa_e3bd8310ea (IsA paleoanthropology vertebrate_paleontology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paleobiology is a kind of biology", "pln": ["(: cnet_isa_4ee0762253 (IsA paleobiology biology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paleobiology is a kind of paleontology", "pln": ["(: cnet_isa_f5978c7c81 (IsA paleobiology paleontology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paleobotany is a kind of botany", "pln": ["(: cnet_isa_bc0505c26b (IsA paleobotany botany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "paleobotany is a kind of paleobiology", "pln": ["(: cnet_isa_92d34994c7 (IsA paleobotany paleobiology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paleocerebellum is a kind of neural structure", "pln": ["(: cnet_isa_1651df2aea (IsA paleocerebellum neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paleoclimatology is a kind of archeology", "pln": ["(: cnet_isa_75f138ae60 (IsA paleoclimatology archeology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "paleodendrology is a kind of paleobotany", "pln": ["(: cnet_isa_03b9f4b5a0 (IsA paleodendrology paleobotany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paleoecology is a kind of ecology", "pln": ["(: cnet_isa_0eae221803 (IsA paleoecology ecology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "paleoethnography is a kind of archeology", "pln": ["(: cnet_isa_58360e6e13 (IsA paleoethnography archeology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paleogeography is a kind of archeology", "pln": ["(: cnet_isa_1e944d2de2 (IsA paleogeography archeology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "paleogeology is a kind of geology", "pln": ["(: cnet_isa_5c1f2f1315 (IsA paleogeology geology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paleographist is a kind of archeologist", "pln": ["(: cnet_isa_d5de00325c (IsA paleographist archeologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paleography is a kind of archeology", "pln": ["(: cnet_isa_c7e25df7ab (IsA paleography archeology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "paleolith is a kind of tool", "pln": ["(: cnet_isa_7dcf11304c (IsA paleolith tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paleology is a kind of archeology", "pln": ["(: cnet_isa_544f75de77 (IsA paleology archeology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paleomammalogy is a kind of paleozoology", "pln": ["(: cnet_isa_47e768ad61 (IsA paleomammalogy paleozoology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paleontologist is a kind of scientist", "pln": ["(: cnet_isa_9dd191fcde (IsA paleontologist scientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paleontology is a kind of earth science", "pln": ["(: cnet_isa_a37ac03e12 (IsA paleontology earth_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paleopathology is a kind of archeology", "pln": ["(: cnet_isa_790eabb7bf (IsA paleopathology archeology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paleopathology is a kind of pathology", "pln": ["(: cnet_isa_307d8bf8d3 (IsA paleopathology pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paleornithology is a kind of paleozoology", "pln": ["(: cnet_isa_ccee7a0a42 (IsA paleornithology paleozoology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paleozoology is a kind of paleobiology", "pln": ["(: cnet_isa_983b9a78d3 (IsA paleozoology paleobiology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paleozoology is a kind of zoology", "pln": ["(: cnet_isa_b3f5a889e5 (IsA paleozoology zoology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palestine liberation organization is a kind of political movement", "pln": ["(: cnet_isa_80249a72fd (IsA palestine_liberation_organization political_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palestine national authority is a kind of political unit", "pln": ["(: cnet_isa_5c4d2cf248 (IsA palestine_national_authority political_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palestinian arab is a kind of arabian", "pln": ["(: cnet_isa_cbc73f38d5 (IsA palestinian_arab arabian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palestinian terrorist is a kind of agent non geographical", "pln": ["(: cnet_isa_f2a373a130 (IsA palestinian_terrorist agent_non_geographical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palestinian terrorist is a kind of organization", "pln": ["(: cnet_isa_4669e6aa0d (IsA palestinian_terrorist organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palestra is a kind of playing field", "pln": ["(: cnet_isa_c439e772ac (IsA palestra playing_field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paletiology is a kind of archeology", "pln": ["(: cnet_isa_3f68fcdcd9 (IsA paletiology archeology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palette is a kind of board", "pln": ["(: cnet_isa_19b48ced17 (IsA palette board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palette is a kind of scope", "pln": ["(: cnet_isa_3d4bf44272 (IsA palette scope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palette knife is a kind of spatula", "pln": ["(: cnet_isa_605709cf45 (IsA palette_knife spatula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palfrey is a kind of saddle horse", "pln": ["(: cnet_isa_2a072b09fd (IsA palfrey saddle_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pali is a kind of prakrit", "pln": ["(: cnet_isa_0eb136dba1 (IsA pali prakrit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palilalia is a kind of pathology", "pln": ["(: cnet_isa_447c6cf4db (IsA palilalia pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palimony is a kind of support payment", "pln": ["(: cnet_isa_e37206fa08 (IsA palimony support_payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palimpsest is a kind of manuscript", "pln": ["(: cnet_isa_9b7c0092dc (IsA palimpsest manuscript) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palindrome is a kind of word", "pln": ["(: cnet_isa_7a507d0b14 (IsA palindrome word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palingenesis is a kind of growth", "pln": ["(: cnet_isa_1ea1d62e30 (IsA palingenesis growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palinuridae is a kind of arthropod family", "pln": ["(: cnet_isa_88cabd7e9e (IsA palinuridae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palinurus is a kind of arthropod genus", "pln": ["(: cnet_isa_1547a25fae (IsA palinurus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palisade is a kind of fortification", "pln": ["(: cnet_isa_95e7341e96 (IsA palisade fortification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "paliurus is a kind of dicot genus", "pln": ["(: cnet_isa_e8962c4e93 (IsA paliurus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pall is a kind of burial garment", "pln": ["(: cnet_isa_98fb63f513 (IsA pall burial_garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pall mall is a kind of game", "pln": ["(: cnet_isa_dfae506d80 (IsA pall_mall game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palladium is a kind of metallic element", "pln": ["(: cnet_isa_7ec536efd6 (IsA palladium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palla s sandgrouse is a kind of sandgrouse", "pln": ["(: cnet_isa_09ec57b1f9 (IsA palla_s_sandgrouse sandgrouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pallasite is a kind of meteorite", "pln": ["(: cnet_isa_19acdfcba1 (IsA pallasite meteorite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pallbearer is a kind of mourner", "pln": ["(: cnet_isa_ff1e86a0a7 (IsA pallbearer mourner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pallet is a kind of hand tool", "pln": ["(: cnet_isa_2b4020083c (IsA pallet hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pallet is a kind of mattress", "pln": ["(: cnet_isa_5f90fc63dd (IsA pallet mattress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pallet is a kind of platform", "pln": ["(: cnet_isa_0beea7521f (IsA pallet platform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pallette is a kind of armor plate", "pln": ["(: cnet_isa_4253f1ac7b (IsA pallette armor_plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "palliation is a kind of easing", "pln": ["(: cnet_isa_f074107456 (IsA palliation easing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palliative is a kind of remedy", "pln": ["(: cnet_isa_7c5d4b6536 (IsA palliative remedy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pallid bat is a kind of vespertilian bat", "pln": ["(: cnet_isa_4e8bf374dc (IsA pallid_bat vespertilian_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pallidity is a kind of color property", "pln": ["(: cnet_isa_380fabf007 (IsA pallidity color_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pallidum is a kind of basal ganglion", "pln": ["(: cnet_isa_4f67676b8c (IsA pallidum basal_ganglion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pallium is a kind of cloak", "pln": ["(: cnet_isa_86f7a744d5 (IsA pallium cloak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pallium is a kind of vestment", "pln": ["(: cnet_isa_7c58f4423a (IsA pallium vestment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pallone is a kind of court game", "pln": ["(: cnet_isa_f36fafe9e3 (IsA pallone court_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palm is a kind of area", "pln": ["(: cnet_isa_55dc2d5312 (IsA palm area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "palm is a kind of tree", "pln": ["(: cnet_isa_88d2963981 (IsA palm tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palm is a kind of linear unit", "pln": ["(: cnet_isa_dea7cca1ea (IsA palm linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palm cat is a kind of civet", "pln": ["(: cnet_isa_40ae303244 (IsA palm_cat civet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palm nut is a kind of nut", "pln": ["(: cnet_isa_05a1ba6385 (IsA palm_nut nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palm oil is a kind of vegetable oil", "pln": ["(: cnet_isa_d940ef19f0 (IsA palm_oil vegetable_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "palm pilot is a kind of small computer", "pln": ["(: cnet_isa_1aaa1b1640 (IsA palm_pilot small_computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palm sunday is a kind of christian holy day", "pln": ["(: cnet_isa_6bad336799 (IsA palm_sunday christian_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palmae is a kind of monocot family", "pln": ["(: cnet_isa_2f0831f99a (IsA palmae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palmale is a kind of plant order", "pln": ["(: cnet_isa_d802d942a9 (IsA palmale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "palmate leaf is a kind of compound leaf", "pln": ["(: cnet_isa_e801e8dbef (IsA palmate_leaf compound_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palmature is a kind of abnormality", "pln": ["(: cnet_isa_b8f744caf6 (IsA palmature abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palmetto is a kind of fan palm", "pln": ["(: cnet_isa_34b60cdac9 (IsA palmetto fan_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palmist is a kind of fortuneteller", "pln": ["(: cnet_isa_52a80642bc (IsA palmist fortuneteller) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palmistry is a kind of divination", "pln": ["(: cnet_isa_75c6c0440b (IsA palmistry divination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palmitic acid is a kind of saturated fatty acid", "pln": ["(: cnet_isa_3cfe8c07bb (IsA palmitic_acid saturated_fatty_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palmitin is a kind of glyceryl ester", "pln": ["(: cnet_isa_3139eb3c63 (IsA palmitin glyceryl_ester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palmyra is a kind of fan palm", "pln": ["(: cnet_isa_53e45566dd (IsA palmyra fan_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palo santo is a kind of angiospermous tree", "pln": ["(: cnet_isa_1f3075e9fc (IsA palo_santo angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palo verde is a kind of tree", "pln": ["(: cnet_isa_d873ae148f (IsA palo_verde tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palometa is a kind of butterfish", "pln": ["(: cnet_isa_ae23515ef9 (IsA palometa butterfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "palomino is a kind of horse", "pln": ["(: cnet_isa_c924ef703d (IsA palomino horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paloverde is a kind of shrub", "pln": ["(: cnet_isa_5cf98c8cfe (IsA paloverde shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palpation is a kind of examination", "pln": ["(: cnet_isa_d890698007 (IsA palpation examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palpation is a kind of touch", "pln": ["(: cnet_isa_79b7d26ca8 (IsA palpation touch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palpebra conjunctiva is a kind of conjunctiva", "pln": ["(: cnet_isa_c3ba578488 (IsA palpebra_conjunctiva conjunctiva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palpebration is a kind of blink", "pln": ["(: cnet_isa_8b0474267d (IsA palpebration blink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palpitation is a kind of symptom", "pln": ["(: cnet_isa_342e8c8225 (IsA palpitation symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "palsy is a kind of symptom", "pln": ["(: cnet_isa_ddd5a0c099 (IsA palsy symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paltriness is a kind of worthlessness", "pln": ["(: cnet_isa_ee05f10669 (IsA paltriness worthlessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pamlico is a kind of algonquian", "pln": ["(: cnet_isa_d26fd0405b (IsA pamlico algonquian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pamlico is a kind of algonquin", "pln": ["(: cnet_isa_4f0842bb40 (IsA pamlico algonquin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pampa grass is a kind of grass", "pln": ["(: cnet_isa_4212545a29 (IsA pampa_grass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pamperer is a kind of person", "pln": ["(: cnet_isa_d5bbe7144b (IsA pamperer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pamphleteer is a kind of writer", "pln": ["(: cnet_isa_bc059ef9fa (IsA pamphleteer writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pan is a kind of mammal genus", "pln": ["(: cnet_isa_9da415886b (IsA pan mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pan is a kind of container", "pln": ["(: cnet_isa_b5b6f2b05c (IsA pan container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pan is a kind of cooking utensil", "pln": ["(: cnet_isa_19bebdcd90 (IsA pan cooking_utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pan american day is a kind of day", "pln": ["(: cnet_isa_d144c68c71 (IsA pan_american_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pan american union is a kind of secretariat", "pln": ["(: cnet_isa_9056c14d30 (IsA pan_american_union secretariat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pan gravy is a kind of juice", "pln": ["(: cnet_isa_ca28a6d73b (IsA pan_gravy juice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panacea is a kind of remedy", "pln": ["(: cnet_isa_567334fb0c (IsA panacea remedy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "panache is a kind of plume", "pln": ["(: cnet_isa_ba17be1b2c (IsA panache plume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panama redwood is a kind of wood", "pln": ["(: cnet_isa_b4381ced73 (IsA panama_redwood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panama redwood tree is a kind of quira", "pln": ["(: cnet_isa_1890104ad5 (IsA panama_redwood_tree quira) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panama tree is a kind of sterculia", "pln": ["(: cnet_isa_98598853ce (IsA panama_tree sterculia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panamanian is a kind of central american", "pln": ["(: cnet_isa_31f50c96ee (IsA panamanian central_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panamanian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_c2ebc110b4 (IsA panamanian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panatela is a kind of cigar", "pln": ["(: cnet_isa_dd4d06ab40 (IsA panatela cigar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panax is a kind of rosid dicot genus", "pln": ["(: cnet_isa_4aefeeafdd (IsA panax rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pancake is a kind of cake", "pln": ["(: cnet_isa_619cfee602 (IsA pancake cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pancake batter is a kind of batter", "pln": ["(: cnet_isa_82296c1eec (IsA pancake_batter batter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pancake turner is a kind of turner", "pln": ["(: cnet_isa_cd423238d5 (IsA pancake_turner turner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pancarditis is a kind of carditis", "pln": ["(: cnet_isa_07d0cd2071 (IsA pancarditis carditis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panchayat is a kind of council", "pln": ["(: cnet_isa_4efeb5d067 (IsA panchayat council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panchen lama is a kind of lama", "pln": ["(: cnet_isa_959d63438a (IsA panchen_lama lama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panchromatic film is a kind of film", "pln": ["(: cnet_isa_de8165247d (IsA panchromatic_film film) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pancrea is a kind of exocrine gland", "pln": ["(: cnet_isa_f1b9602e6e (IsA pancrea exocrine_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pancreatectomy is a kind of ablation", "pln": ["(: cnet_isa_b2be74772c (IsA pancreatectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pancreatic artery is a kind of artery", "pln": ["(: cnet_isa_0914902251 (IsA pancreatic_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pancreatic cancer is a kind of carcinoma", "pln": ["(: cnet_isa_dd904ffc22 (IsA pancreatic_cancer carcinoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pancreatic duct is a kind of duct", "pln": ["(: cnet_isa_1fcf97f79c (IsA pancreatic_duct duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pancreatic juice is a kind of digestive juice", "pln": ["(: cnet_isa_040c2a9d94 (IsA pancreatic_juice digestive_juice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pancreatic vein is a kind of vein", "pln": ["(: cnet_isa_63a7193c3c (IsA pancreatic_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pancreatin is a kind of infusion", "pln": ["(: cnet_isa_4c853415b4 (IsA pancreatin infusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pancreatitis is a kind of inflammation", "pln": ["(: cnet_isa_ec2eedaf57 (IsA pancreatitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pancytopenia is a kind of cytopenia", "pln": ["(: cnet_isa_a4a0a1b939 (IsA pancytopenia cytopenia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panda car is a kind of cruiser", "pln": ["(: cnet_isa_67d3a5e544 (IsA panda_car cruiser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pandanaceae is a kind of monocot family", "pln": ["(: cnet_isa_1cc5f993a9 (IsA pandanaceae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pandanale is a kind of plant order", "pln": ["(: cnet_isa_9434d2749d (IsA pandanale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pandanus is a kind of natural fiber", "pln": ["(: cnet_isa_aee8db1942 (IsA pandanus natural_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pandanus is a kind of tree", "pln": ["(: cnet_isa_e7311b029c (IsA pandanus tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pandeism is a kind of theism", "pln": ["(: cnet_isa_1399e94eeb (IsA pandeism theism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pandemic is a kind of epidemic", "pln": ["(: cnet_isa_ac5acb0393 (IsA pandemic epidemic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panderer is a kind of bad person", "pln": ["(: cnet_isa_3dfdc0b6d4 (IsA panderer bad_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pandiculation is a kind of stretch", "pln": ["(: cnet_isa_b58693dfcd (IsA pandiculation stretch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pandiculation is a kind of yawn", "pln": ["(: cnet_isa_28d5bd659b (IsA pandiculation yawn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pandion is a kind of bird genus", "pln": ["(: cnet_isa_f166dde987 (IsA pandion bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pandionidae is a kind of bird family", "pln": ["(: cnet_isa_726f51b813 (IsA pandionidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pandurate leaf is a kind of simple leaf", "pln": ["(: cnet_isa_9ad4bc009c (IsA pandurate_leaf simple_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pane is a kind of plate glass", "pln": ["(: cnet_isa_216c2f7040 (IsA pane plate_glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panel is a kind of pad", "pln": ["(: cnet_isa_10f10ca1b7 (IsA panel pad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panel is a kind of sheet", "pln": ["(: cnet_isa_24e7a59006 (IsA panel sheet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panel is a kind of body", "pln": ["(: cnet_isa_d4bfefe9d9 (IsA panel body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panel discussion is a kind of discussion", "pln": ["(: cnet_isa_ba78af4580 (IsA panel_discussion discussion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panel heating is a kind of heating system", "pln": ["(: cnet_isa_db591cdfa8 (IsA panel_heating heating_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "panel light is a kind of light", "pln": ["(: cnet_isa_63ffc59663 (IsA panel_light light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paneling is a kind of panel", "pln": ["(: cnet_isa_45a6ebf531 (IsA paneling panel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panelist is a kind of critic", "pln": ["(: cnet_isa_8bcd86b86b (IsA panelist critic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "panencephalitis is a kind of encephalitis", "pln": ["(: cnet_isa_636551943a (IsA panencephalitis encephalitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panenthesism is a kind of theism", "pln": ["(: cnet_isa_b1c1cff8b3 (IsA panenthesism theism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panfish is a kind of fish", "pln": ["(: cnet_isa_de0df27694 (IsA panfish fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pang is a kind of feeling", "pln": ["(: cnet_isa_cce7fc628b (IsA pang feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pang is a kind of pain", "pln": ["(: cnet_isa_90e73f8b26 (IsA pang pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pangolin is a kind of placental", "pln": ["(: cnet_isa_4d712466e9 (IsA pangolin placental) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panhandle is a kind of handle", "pln": ["(: cnet_isa_4e872161ec (IsA panhandle handle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panhandle is a kind of geographical area", "pln": ["(: cnet_isa_6c63535977 (IsA panhandle geographical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panhandler is a kind of beggar", "pln": ["(: cnet_isa_7c9805e731 (IsA panhandler beggar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panic is a kind of fear", "pln": ["(: cnet_isa_f6aa20f2f8 (IsA panic fear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panic is a kind of anxiety", "pln": ["(: cnet_isa_9af3d655b8 (IsA panic anxiety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panic button is a kind of push button", "pln": ["(: cnet_isa_0070818988 (IsA panic_button push_button) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panic disorder is a kind of anxiety disorder", "pln": ["(: cnet_isa_4c82b76004 (IsA panic_disorder anxiety_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panic grass is a kind of millet", "pln": ["(: cnet_isa_aaa11d6acc (IsA panic_grass millet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panicle is a kind of raceme", "pln": ["(: cnet_isa_94721c214c (IsA panicle raceme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panicled aster is a kind of aster", "pln": ["(: cnet_isa_c17a00539d (IsA panicled_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panicum is a kind of monocot genus", "pln": ["(: cnet_isa_7c04cd2e51 (IsA panicum monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panjabi is a kind of indian", "pln": ["(: cnet_isa_c6a09fd147 (IsA panjabi indian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pannier is a kind of bag", "pln": ["(: cnet_isa_94364b87ed (IsA pannier bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pannier is a kind of hoop", "pln": ["(: cnet_isa_09eabff3d6 (IsA pannier hoop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pannier is a kind of wicker basket", "pln": ["(: cnet_isa_db89d8f294 (IsA pannier wicker_basket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pannikin is a kind of pan", "pln": ["(: cnet_isa_4996172ebb (IsA pannikin pan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panonychus is a kind of arthropod genus", "pln": ["(: cnet_isa_b06869d06c (IsA panonychus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panoply is a kind of array", "pln": ["(: cnet_isa_62cd9998f5 (IsA panoply array) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panopticon is a kind of area", "pln": ["(: cnet_isa_b3f71a5eb0 (IsA panopticon area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panopticon is a kind of prison", "pln": ["(: cnet_isa_e3e166228e (IsA panopticon prison) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panorama is a kind of ikon", "pln": ["(: cnet_isa_40e8916d0d (IsA panorama ikon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panoramic sight is a kind of gunsight", "pln": ["(: cnet_isa_7aa730a814 (IsA panoramic_sight gunsight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panorpidae is a kind of family", "pln": ["(: cnet_isa_b0e7f828b6 (IsA panorpidae family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panpipe is a kind of pipe", "pln": ["(: cnet_isa_2900ace7d6 (IsA panpipe pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pansexual is a kind of person", "pln": ["(: cnet_isa_fad959e7fe (IsA pansexual person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pansinusitis is a kind of sinusitis", "pln": ["(: cnet_isa_723671f799 (IsA pansinusitis sinusitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pansy is a kind of annual plant", "pln": ["(: cnet_isa_0f78c74d60 (IsA pansy annual_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pansy is a kind of viola", "pln": ["(: cnet_isa_4a39e58775 (IsA pansy viola) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pansy orchid is a kind of orchid", "pln": ["(: cnet_isa_5a64c96132 (IsA pansy_orchid orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pant is a kind of noise", "pln": ["(: cnet_isa_52cfa1cbea (IsA pant noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pant leg is a kind of leg", "pln": ["(: cnet_isa_fa2f86a57d (IsA pant_leg leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pantaloon is a kind of pair of trouser", "pln": ["(: cnet_isa_feb2711b56 (IsA pantaloon pair_of_trouser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pantechnicon is a kind of moving van", "pln": ["(: cnet_isa_5935f33879 (IsA pantechnicon moving_van) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pantheism is a kind of theism", "pln": ["(: cnet_isa_8cdf46ed1b (IsA pantheism theism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pantheist is a kind of believer", "pln": ["(: cnet_isa_6398330946 (IsA pantheist believer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pantheon is a kind of temple", "pln": ["(: cnet_isa_c52cbe2ba5 (IsA pantheon temple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pantheon is a kind of memorial", "pln": ["(: cnet_isa_f20d58bb32 (IsA pantheon memorial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pantheon is a kind of collection", "pln": ["(: cnet_isa_b7b66ea915 (IsA pantheon collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panther is a kind of leopard", "pln": ["(: cnet_isa_f5de9a150d (IsA panther leopard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panthera is a kind of mammal genus", "pln": ["(: cnet_isa_8164dad00f (IsA panthera mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pantie is a kind of underpant", "pln": ["(: cnet_isa_6725976bfc (IsA pantie underpant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pantile is a kind of tile", "pln": ["(: cnet_isa_07f3afb908 (IsA pantile tile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panting is a kind of breathing", "pln": ["(: cnet_isa_0f3e707ed5 (IsA panting breathing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panting is a kind of fabric", "pln": ["(: cnet_isa_fb4a351d82 (IsA panting fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panto is a kind of mime", "pln": ["(: cnet_isa_733e8e504b (IsA panto mime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pantograph is a kind of mechanical device", "pln": ["(: cnet_isa_c7d85c086e (IsA pantograph mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pantothenic acid is a kind of acid", "pln": ["(: cnet_isa_f337399461 (IsA pantothenic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pantothenic acid is a kind of b complex vitamin", "pln": ["(: cnet_isa_0504a7a81c (IsA pantothenic_acid b_complex_vitamin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pantotheria is a kind of class", "pln": ["(: cnet_isa_3b51af9035 (IsA pantotheria class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pantry is a kind of storeroom", "pln": ["(: cnet_isa_3d5f56ab8f (IsA pantry storeroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pant suit is a kind of slack suit", "pln": ["(: cnet_isa_6899913975 (IsA pant_suit slack_suit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panty girdle is a kind of corset", "pln": ["(: cnet_isa_36471ceb83 (IsA panty_girdle corset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pantyhose is a kind of tight", "pln": ["(: cnet_isa_6ad0c1f397 (IsA pantyhose tight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "panzer is a kind of tank", "pln": ["(: cnet_isa_075e7e1886 (IsA panzer tank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pap is a kind of drivel", "pln": ["(: cnet_isa_05c079c588 (IsA pap drivel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pap test is a kind of diagnostic test", "pln": ["(: cnet_isa_1f80799b48 (IsA pap_test diagnostic_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "papacy is a kind of government", "pln": ["(: cnet_isa_1bb3884a51 (IsA papacy government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "papain is a kind of enzyme", "pln": ["(: cnet_isa_ae2702ba5c (IsA papain enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "papal cross is a kind of cross", "pln": ["(: cnet_isa_2d7593079b (IsA papal_cross cross) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "papal infallibility is a kind of infallibility", "pln": ["(: cnet_isa_743c648e6c (IsA papal_infallibility infallibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "paparazzo is a kind of photographer", "pln": ["(: cnet_isa_d0c705ebda (IsA paparazzo photographer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "papaver is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_58d97fda2e (IsA papaver dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "papaveraceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_913a32de1e (IsA papaveraceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "papaw is a kind of edible fruit", "pln": ["(: cnet_isa_ed5fe21ac9 (IsA papaw edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "papaya is a kind of fruit", "pln": ["(: cnet_isa_8c7a8dd902 (IsA papaya fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "papaya is a kind of edible fruit", "pln": ["(: cnet_isa_57248897b6 (IsA papaya edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "papaya is a kind of fruit tree", "pln": ["(: cnet_isa_6a82a9a9b0 (IsA papaya fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "papaya juice is a kind of juice", "pln": ["(: cnet_isa_2083bd3a88 (IsA papaya_juice juice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paper is a kind of limited resource", "pln": ["(: cnet_isa_fe0c1a41d4 (IsA paper limited_resource) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paper is a kind of material", "pln": ["(: cnet_isa_01fc9d5812 (IsA paper material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paper is a kind of article", "pln": ["(: cnet_isa_fbdefaaaf8 (IsA paper article) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "paper is a kind of medium", "pln": ["(: cnet_isa_b50cb14bf9 (IsA paper medium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paper chain is a kind of chain", "pln": ["(: cnet_isa_4ce36ec490 (IsA paper_chain chain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "paper chase is a kind of game", "pln": ["(: cnet_isa_1c34dbcdf4 (IsA paper_chase game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paper chromatography is a kind of chromatography", "pln": ["(: cnet_isa_95a412eb4b (IsA paper_chromatography chromatography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paper clip is a kind of clip", "pln": ["(: cnet_isa_82bde7bbf4 (IsA paper_clip clip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paper cutter is a kind of cutting implement", "pln": ["(: cnet_isa_b47cc00060 (IsA paper_cutter cutting_implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paper doll is a kind of doll", "pln": ["(: cnet_isa_b418a88808 (IsA paper_doll doll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paper electrophoresis is a kind of electrophoresis", "pln": ["(: cnet_isa_0b25058783 (IsA paper_electrophoresis electrophoresis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paper fastener is a kind of fastener", "pln": ["(: cnet_isa_5c350258c1 (IsA paper_fastener fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paper feed is a kind of device", "pln": ["(: cnet_isa_a6980d23dd (IsA paper_feed device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paper flower is a kind of bougainvillea", "pln": ["(: cnet_isa_c868505e4d (IsA paper_flower bougainvillea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paper loss is a kind of loss", "pln": ["(: cnet_isa_27a3da2dd7 (IsA paper_loss loss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paper mill is a kind of factory", "pln": ["(: cnet_isa_4a809d0138 (IsA paper_mill factory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paper money is a kind of currency", "pln": ["(: cnet_isa_c2cd432db2 (IsA paper_money currency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paper mulberry is a kind of angiospermous tree", "pln": ["(: cnet_isa_54f8a66346 (IsA paper_mulberry angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "paper nautilus is a kind of octopod", "pln": ["(: cnet_isa_bb99decc9f (IsA paper_nautilus octopod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paper plate is a kind of plate", "pln": ["(: cnet_isa_8f3917185a (IsA paper_plate plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paper profit is a kind of gain", "pln": ["(: cnet_isa_7a29584dc7 (IsA paper_profit gain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paper pusher is a kind of bureaucrat", "pln": ["(: cnet_isa_45befbdb70 (IsA paper_pusher bureaucrat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paper pusher is a kind of clerk", "pln": ["(: cnet_isa_4eb4542a33 (IsA paper_pusher clerk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "paper route is a kind of employment", "pln": ["(: cnet_isa_113da50551 (IsA paper_route employment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "paper route is a kind of path", "pln": ["(: cnet_isa_262baead15 (IsA paper_route path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paper tape is a kind of paper", "pln": ["(: cnet_isa_e314c819f6 (IsA paper_tape paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paper tiger is a kind of powerlessness", "pln": ["(: cnet_isa_5a2116442f (IsA paper_tiger powerlessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paper towel is a kind of towel", "pln": ["(: cnet_isa_6b1c986b71 (IsA paper_towel towel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paper toweling is a kind of paper", "pln": ["(: cnet_isa_93dde0636e (IsA paper_toweling paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paper trail is a kind of written record", "pln": ["(: cnet_isa_ac29af2d10 (IsA paper_trail written_record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paper wasp is a kind of vespid", "pln": ["(: cnet_isa_bd87366eb4 (IsA paper_wasp vespid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paper white is a kind of daffodil", "pln": ["(: cnet_isa_bfcc856588 (IsA paper_white daffodil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paperback book is a kind of book", "pln": ["(: cnet_isa_de67a3820d (IsA paperback_book book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paperboard is a kind of cardboard", "pln": ["(: cnet_isa_173c3c3375 (IsA paperboard cardboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "paperboy is a kind of deliveryman", "pln": ["(: cnet_isa_68026057be (IsA paperboy deliveryman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paperhanger is a kind of craftsman", "pln": ["(: cnet_isa_3469d09cfe (IsA paperhanger craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paperhanger is a kind of forger", "pln": ["(: cnet_isa_e439e50df3 (IsA paperhanger forger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "papering is a kind of application", "pln": ["(: cnet_isa_7afb01cc4f (IsA papering application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "papermaking is a kind of trade", "pln": ["(: cnet_isa_f45fefa3f0 (IsA papermaking trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paper is a kind of frequently", "pln": ["(: cnet_isa_3b2af9d55a (IsA paper frequently) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paperweight is a kind of weight", "pln": ["(: cnet_isa_f0bad2ace8 (IsA paperweight weight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paperwork is a kind of work", "pln": ["(: cnet_isa_dcdb173484 (IsA paperwork work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paphiopedilum is a kind of monocot genus", "pln": ["(: cnet_isa_d9675c348f (IsA paphiopedilum monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "papier mache is a kind of paper", "pln": ["(: cnet_isa_82b52c07af (IsA papier_mache paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "papilionaceae is a kind of rosid dicot family", "pln": ["(: cnet_isa_82c68aaa81 (IsA papilionaceae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "papilionoideae is a kind of rosid dicot family", "pln": ["(: cnet_isa_1c3981e0fc (IsA papilionoideae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "papilla is a kind of process", "pln": ["(: cnet_isa_07f52f6601 (IsA papilla process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "papillary muscle is a kind of cardiac muscle", "pln": ["(: cnet_isa_9098a53e3d (IsA papillary_muscle cardiac_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "papilledema is a kind of edema", "pln": ["(: cnet_isa_213819f19e (IsA papilledema edema) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "papilloma is a kind of benign tumor", "pln": ["(: cnet_isa_2174eb55e4 (IsA papilloma benign_tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "papillon is a kind of toy spaniel", "pln": ["(: cnet_isa_6a2e5e1b9b (IsA papillon toy_spaniel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "papio is a kind of mammal genus", "pln": ["(: cnet_isa_6dee55d7dc (IsA papio mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "papist is a kind of roman catholic", "pln": ["(: cnet_isa_ede13899ea (IsA papist roman_catholic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "papoose is a kind of baby", "pln": ["(: cnet_isa_38ba1c1a59 (IsA papoose baby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "papovavirus is a kind of animal virus", "pln": ["(: cnet_isa_a6f2a514b4 (IsA papovavirus animal_virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pappus is a kind of calyx", "pln": ["(: cnet_isa_8b1c1b428c (IsA pappus calyx) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paprika is a kind of spice", "pln": ["(: cnet_isa_374da27f36 (IsA paprika spice) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paprika is a kind of flavorer", "pln": ["(: cnet_isa_c3fa3122b4 (IsA paprika flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "paprilus is a kind of fish genus", "pln": ["(: cnet_isa_6b3c44fa6c (IsA paprilus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "papua is a kind of region", "pln": ["(: cnet_isa_f273e785de (IsA papua region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "papuan is a kind of natural language", "pln": ["(: cnet_isa_a921be435b (IsA papuan natural_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "papuan is a kind of indonesian", "pln": ["(: cnet_isa_d1a0ab4a77 (IsA papuan indonesian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "papuan monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_dfa526f441 (IsA papuan_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "papule is a kind of pimple", "pln": ["(: cnet_isa_4b916f9254 (IsA papule pimple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "papulovesicle is a kind of papule", "pln": ["(: cnet_isa_e81020e541 (IsA papulovesicle papule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "papyrus is a kind of document", "pln": ["(: cnet_isa_b55d95582e (IsA papyrus document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "papyrus is a kind of sedge", "pln": ["(: cnet_isa_99a7eef2fd (IsA papyrus sedge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "papyrus is a kind of paper", "pln": ["(: cnet_isa_53b13a83d7 (IsA papyrus paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "par is a kind of score", "pln": ["(: cnet_isa_409d2706a5 (IsA par score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "par value is a kind of value", "pln": ["(: cnet_isa_8fc2b9e20d (IsA par_value value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "para is a kind of yugoslavian monetary unit", "pln": ["(: cnet_isa_54224dbee7 (IsA para yugoslavian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "para aminobenzoic acid is a kind of acid", "pln": ["(: cnet_isa_777a7f040d (IsA para_aminobenzoic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "para rubber is a kind of rubber", "pln": ["(: cnet_isa_681cac80af (IsA para_rubber rubber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "para rubber tree is a kind of angiospermous tree", "pln": ["(: cnet_isa_01f5d7d67d (IsA para_rubber_tree angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parable is a kind of story", "pln": ["(: cnet_isa_5397d7917f (IsA parable story) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parabola is a kind of conic section", "pln": ["(: cnet_isa_720de1daa2 (IsA parabola conic_section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parabolic mirror is a kind of parabolic reflector", "pln": ["(: cnet_isa_624e7f7cec (IsA parabolic_mirror parabolic_reflector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parabolic reflector is a kind of reflector", "pln": ["(: cnet_isa_22ab948d45 (IsA parabolic_reflector reflector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paraboloid is a kind of plane figure", "pln": ["(: cnet_isa_c71c48d8d2 (IsA paraboloid plane_figure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "paracentral scotoma is a kind of scotoma", "pln": ["(: cnet_isa_4ec0b5932c (IsA paracentral_scotoma scotoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paracervical block is a kind of regional anesthesia", "pln": ["(: cnet_isa_8fe72dd6f6 (IsA paracervical_block regional_anesthesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paracheirodon is a kind of fish genus", "pln": ["(: cnet_isa_44b68bcffb (IsA paracheirodon fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parachute is a kind of rescue equipment", "pln": ["(: cnet_isa_d3164bbd42 (IsA parachute rescue_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parachutist is a kind of jumper", "pln": ["(: cnet_isa_8314df4f12 (IsA parachutist jumper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paracosm is a kind of fantasy world", "pln": ["(: cnet_isa_b458271ac8 (IsA paracosm fantasy_world) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parade is a kind of display", "pln": ["(: cnet_isa_6f0c2a8d48 (IsA parade display) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parade is a kind of procession", "pln": ["(: cnet_isa_35a3b88b27 (IsA parade procession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parade is a kind of succession", "pln": ["(: cnet_isa_80e6ae7877 (IsA parade succession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parade ground is a kind of tract", "pln": ["(: cnet_isa_f7bd896788 (IsA parade_ground tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paradiddle is a kind of sound", "pln": ["(: cnet_isa_b03357fc3d (IsA paradiddle sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paradigm is a kind of position", "pln": ["(: cnet_isa_aeaa1b9a4d (IsA paradigm position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paradigm is a kind of inflection", "pln": ["(: cnet_isa_f16f03aae6 (IsA paradigm inflection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paradisaeidae is a kind of bird family", "pln": ["(: cnet_isa_a8ac82adca (IsA paradisaeidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paradise is a kind of heaven", "pln": ["(: cnet_isa_7a29131bd0 (IsA paradise heaven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paradise tree is a kind of bitterwood tree", "pln": ["(: cnet_isa_4b6bc3588b (IsA paradise_tree bitterwood_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "paradox is a kind of contradiction", "pln": ["(: cnet_isa_ab9209f492 (IsA paradox contradiction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paradoxical sleep is a kind of sleep", "pln": ["(: cnet_isa_33479aabdc (IsA paradoxical_sleep sleep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paradoxurus is a kind of mammal genus", "pln": ["(: cnet_isa_83be330ac1 (IsA paradoxurus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paraduodenal smear is a kind of alimentary tract smear", "pln": ["(: cnet_isa_d3886f4b5b (IsA paraduodenal_smear alimentary_tract_smear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paraffin is a kind of kerosene", "pln": ["(: cnet_isa_95e4dcb7e9 (IsA paraffin kerosene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paraffin is a kind of wax", "pln": ["(: cnet_isa_e0fbe9502a (IsA paraffin wax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parafovea is a kind of area", "pln": ["(: cnet_isa_7d6f6ff322 (IsA parafovea area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paragon is a kind of ideal", "pln": ["(: cnet_isa_c498e70882 (IsA paragon ideal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paragonite is a kind of mica", "pln": ["(: cnet_isa_4ff1b7fb77 (IsA paragonite mica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paragraph is a kind of writing", "pln": ["(: cnet_isa_84d4b56077 (IsA paragraph writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paragrapher is a kind of writer", "pln": ["(: cnet_isa_3df6a85779 (IsA paragrapher writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paraguayan is a kind of south american", "pln": ["(: cnet_isa_f045ed3fbc (IsA paraguayan south_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paraguayan monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_79bfda3075 (IsA paraguayan_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parainfluenza virus is a kind of adenovirus", "pln": ["(: cnet_isa_509521bb67 (IsA parainfluenza_virus adenovirus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "parakeet is a kind of bird", "pln": ["(: cnet_isa_bb2970f9e5 (IsA parakeet bird) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parakeet is a kind of pet", "pln": ["(: cnet_isa_4ad89ad528 (IsA parakeet pet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parakeet is a kind of parrot", "pln": ["(: cnet_isa_3fd615cc51 (IsA parakeet parrot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paralanguage is a kind of communication", "pln": ["(: cnet_isa_c0d9aaa698 (IsA paralanguage communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paraldehyde is a kind of aldehyde", "pln": ["(: cnet_isa_a3b2511042 (IsA paraldehyde aldehyde) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paralegal is a kind of paraprofessional", "pln": ["(: cnet_isa_050adbf7ae (IsA paralegal paraprofessional) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paralepsis is a kind of rhetorical device", "pln": ["(: cnet_isa_d0a48d9439 (IsA paralepsis rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paralichthy is a kind of fish genus", "pln": ["(: cnet_isa_819e58c1d8 (IsA paralichthy fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paralipomenon is a kind of sacred text", "pln": ["(: cnet_isa_8a932c99f8 (IsA paralipomenon sacred_text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paralithode is a kind of arthropod genus", "pln": ["(: cnet_isa_7793c58bd7 (IsA paralithode arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parallax is a kind of optical phenomenon", "pln": ["(: cnet_isa_cee2eac1f8 (IsA parallax optical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parallel is a kind of figure", "pln": ["(: cnet_isa_c6be8b6860 (IsA parallel figure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "parallel axiom is a kind of euclid s postulate", "pln": ["(: cnet_isa_869ef1d034 (IsA parallel_axiom euclid_s_postulate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parallel bar is a kind of gymnastic apparatus", "pln": ["(: cnet_isa_33cc9ed015 (IsA parallel_bar gymnastic_apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "parallel circuit is a kind of closed circuit", "pln": ["(: cnet_isa_e42a8d47b6 (IsA parallel_circuit closed_circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "parallel interface is a kind of interface", "pln": ["(: cnet_isa_c3c02c2191 (IsA parallel_interface interface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parallel operation is a kind of operation", "pln": ["(: cnet_isa_c206aeb155 (IsA parallel_operation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parallel veined leaf is a kind of leaf", "pln": ["(: cnet_isa_a7d04d3513 (IsA parallel_veined_leaf leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parallelepiped is a kind of prism", "pln": ["(: cnet_isa_9dc6b162d1 (IsA parallelepiped prism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "parallelism is a kind of similarity", "pln": ["(: cnet_isa_f69e02b77c (IsA parallelism similarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parallelogram is a kind of quadrilateral", "pln": ["(: cnet_isa_3341192095 (IsA parallelogram quadrilateral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paralogism is a kind of fallacy", "pln": ["(: cnet_isa_56d2583ae3 (IsA paralogism fallacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paralysis is a kind of dysfunction", "pln": ["(: cnet_isa_4079a98e58 (IsA paralysis dysfunction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paralysis agitan is a kind of brain disorder", "pln": ["(: cnet_isa_1cddaa8aff (IsA paralysis_agitan brain_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paralysis agitan is a kind of degenerative disorder", "pln": ["(: cnet_isa_836f57a39b (IsA paralysis_agitan degenerative_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paralytic is a kind of handicapped person", "pln": ["(: cnet_isa_951a4ae3e1 (IsA paralytic handicapped_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paralytic abasia is a kind of abasia", "pln": ["(: cnet_isa_ca205e5587 (IsA paralytic_abasia abasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paramagnet is a kind of magnet", "pln": ["(: cnet_isa_d5cb16ef38 (IsA paramagnet magnet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paramagnetism is a kind of magnetism", "pln": ["(: cnet_isa_ae4deed34e (IsA paramagnetism magnetism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paramecium is a kind of ciliate", "pln": ["(: cnet_isa_9e001cf54e (IsA paramecium ciliate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paramedic is a kind of paraprofessional", "pln": ["(: cnet_isa_00a8b9fc59 (IsA paramedic paraprofessional) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parameter is a kind of constant", "pln": ["(: cnet_isa_ff265fbb67 (IsA parameter constant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parameter is a kind of quantity", "pln": ["(: cnet_isa_96152c37ee (IsA parameter quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parameter is a kind of address", "pln": ["(: cnet_isa_bea207fddd (IsA parameter address) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parameter is a kind of value", "pln": ["(: cnet_isa_ee3f9afb47 (IsA parameter value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parameter is a kind of factor", "pln": ["(: cnet_isa_22b140ffe7 (IsA parameter factor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parametric statistic is a kind of statistic", "pln": ["(: cnet_isa_3603b00b4b (IsA parametric_statistic statistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "parametritis is a kind of inflammation", "pln": ["(: cnet_isa_2409cdec70 (IsA parametritis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paramilitary is a kind of force", "pln": ["(: cnet_isa_378f6554bb (IsA paramilitary force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "paramnesia is a kind of cognitive state", "pln": ["(: cnet_isa_502f741c46 (IsA paramnesia cognitive_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paramount issue is a kind of issue", "pln": ["(: cnet_isa_3ecef00927 (IsA paramount_issue issue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paramountcy is a kind of dominion", "pln": ["(: cnet_isa_746776e617 (IsA paramountcy dominion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paramyxovirus is a kind of myxovirus", "pln": ["(: cnet_isa_1acec9aceb (IsA paramyxovirus myxovirus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paranasal sinus is a kind of sinus", "pln": ["(: cnet_isa_5e130254d2 (IsA paranasal_sinus sinus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parang is a kind of knife", "pln": ["(: cnet_isa_8cc788d7da (IsA parang knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paranoia is a kind of disturbed thought process", "pln": ["(: cnet_isa_f2c842145a (IsA paranoia disturbed_thought_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paranoia is a kind of psychosis", "pln": ["(: cnet_isa_f118955795 (IsA paranoia psychosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "paranoid is a kind of psychotic", "pln": ["(: cnet_isa_e4360b4764 (IsA paranoid psychotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "paranthias is a kind of fish genus", "pln": ["(: cnet_isa_c9e3baa1ab (IsA paranthias fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paranoid schizophrenia is a kind of schizophrenia", "pln": ["(: cnet_isa_9c148bd44a (IsA paranoid_schizophrenia schizophrenia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paranthia is a kind of fish genus", "pln": ["(: cnet_isa_afee733dbd (IsA paranthia fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paranthropus is a kind of australopithecine", "pln": ["(: cnet_isa_944e14c83e (IsA paranthropus australopithecine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paraparesis is a kind of paresis", "pln": ["(: cnet_isa_8c97c5837a (IsA paraparesis paresis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parapet is a kind of fortification", "pln": ["(: cnet_isa_cdab84bf4a (IsA parapet fortification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parapet is a kind of wall", "pln": ["(: cnet_isa_849f5254f5 (IsA parapet wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paraph is a kind of flourish", "pln": ["(: cnet_isa_3a6421bfa7 (IsA paraph flourish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paraphilia is a kind of perversion", "pln": ["(: cnet_isa_00111db8c1 (IsA paraphilia perversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paraphrase is a kind of rewording", "pln": ["(: cnet_isa_9a6f81449f (IsA paraphrase rewording) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paraphysis is a kind of fibril", "pln": ["(: cnet_isa_2adcc64efd (IsA paraphysis fibril) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paraplegia is a kind of paralysis", "pln": ["(: cnet_isa_fa33bc417f (IsA paraplegia paralysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paraplegic is a kind of handicapped person", "pln": ["(: cnet_isa_06041eb6a8 (IsA paraplegic handicapped_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parapodium is a kind of extremity", "pln": ["(: cnet_isa_6e8c50ff66 (IsA parapodium extremity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paraprofessional is a kind of assistant", "pln": ["(: cnet_isa_0a943d5d6e (IsA paraprofessional assistant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parapsychologist is a kind of psychologist", "pln": ["(: cnet_isa_b4821f9af6 (IsA parapsychologist psychologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paraquat is a kind of herbicide", "pln": ["(: cnet_isa_cde98d40c2 (IsA paraquat herbicide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paraquat poisoning is a kind of poisoning", "pln": ["(: cnet_isa_8df44d88ee (IsA paraquat_poisoning poisoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parasail is a kind of parachute", "pln": ["(: cnet_isa_5132237789 (IsA parasail parachute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parasailing is a kind of glide", "pln": ["(: cnet_isa_17e8ed3e8e (IsA parasailing glide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parascalop is a kind of mammal genus", "pln": ["(: cnet_isa_eaf5b784d9 (IsA parascalop mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parasitaxus is a kind of gymnosperm genus", "pln": ["(: cnet_isa_bdfd1a7785 (IsA parasitaxus gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parasite is a kind of organism", "pln": ["(: cnet_isa_e27150fc08 (IsA parasite organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parasite yew is a kind of parasitic plant", "pln": ["(: cnet_isa_97253c6c81 (IsA parasite_yew parasitic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parasitemia is a kind of blood disease", "pln": ["(: cnet_isa_7fd9d19b1a (IsA parasitemia blood_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parasitic jaeger is a kind of jaeger", "pln": ["(: cnet_isa_dd7846fb9d (IsA parasitic_jaeger jaeger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parasitic plant is a kind of parasite", "pln": ["(: cnet_isa_77f4618419 (IsA parasitic_plant parasite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parasitism is a kind of mutuality", "pln": ["(: cnet_isa_25cd9aaf8f (IsA parasitism mutuality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parasol is a kind of shade", "pln": ["(: cnet_isa_c1dfbec77d (IsA parasol shade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parasol mushroom is a kind of agaric", "pln": ["(: cnet_isa_75bb6cf33c (IsA parasol_mushroom agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parasympathetic nervous system is a kind of nervous system", "pln": ["(: cnet_isa_b91ca4be73 (IsA parasympathetic_nervous_system nervous_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parathelypteris is a kind of fern genus", "pln": ["(: cnet_isa_9c6e5e1036 (IsA parathelypteris fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "parathion is a kind of insecticide", "pln": ["(: cnet_isa_d79e45f64f (IsA parathion insecticide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parathion poisoning is a kind of pesticide poisoning", "pln": ["(: cnet_isa_91cab91f84 (IsA parathion_poisoning pesticide_poisoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parathyroid gland is a kind of endocrine gland", "pln": ["(: cnet_isa_571e053dcf (IsA parathyroid_gland endocrine_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parathyroid hormone is a kind of hormone", "pln": ["(: cnet_isa_555a1ca065 (IsA parathyroid_hormone hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paratrooper is a kind of soldier", "pln": ["(: cnet_isa_c234dfe368 (IsA paratrooper soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paratroop is a kind of infantry", "pln": ["(: cnet_isa_ac02205b30 (IsA paratroop infantry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paratyphoid is a kind of infectious disease", "pln": ["(: cnet_isa_38bc1e9cf3 (IsA paratyphoid infectious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paraumbilical vein is a kind of vein", "pln": ["(: cnet_isa_1731738241 (IsA paraumbilical_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parazoa is a kind of subkingdom", "pln": ["(: cnet_isa_6d56a8ca10 (IsA parazoa subkingdom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "parcae is a kind of roman deity", "pln": ["(: cnet_isa_f5df565017 (IsA parcae roman_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parcel is a kind of allotment", "pln": ["(: cnet_isa_daf88d8962 (IsA parcel allotment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parcel post is a kind of mail", "pln": ["(: cnet_isa_a108137352 (IsA parcel_post mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parcellation is a kind of division", "pln": ["(: cnet_isa_f1ba340feb (IsA parcellation division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parcheesi is a kind of pachisi", "pln": ["(: cnet_isa_24fbc1929f (IsA parcheesi pachisi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parchment is a kind of paper", "pln": ["(: cnet_isa_c927f6de09 (IsA parchment paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parchment is a kind of animal skin", "pln": ["(: cnet_isa_e7dc5fa82e (IsA parchment animal_skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pardon is a kind of warrant", "pln": ["(: cnet_isa_fb10617256 (IsA pardon warrant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pardoner is a kind of cleric", "pln": ["(: cnet_isa_6e1624665d (IsA pardoner cleric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pardoner is a kind of person", "pln": ["(: cnet_isa_3d5d080b02 (IsA pardoner person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paregmenon is a kind of rhetorical device", "pln": ["(: cnet_isa_e1c8941b6d (IsA paregmenon rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paregoric is a kind of medicine", "pln": ["(: cnet_isa_24cb086111 (IsA paregoric medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parenchyma is a kind of animal tissue", "pln": ["(: cnet_isa_d04b41304a (IsA parenchyma animal_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parenchyma is a kind of plant tissue", "pln": ["(: cnet_isa_0bde31c3ba (IsA parenchyma plant_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "parent is a kind of organism", "pln": ["(: cnet_isa_d869bceca1 (IsA parent organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parent is a kind of genitor", "pln": ["(: cnet_isa_1f8f4b8f44 (IsA parent genitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parentage is a kind of kinship", "pln": ["(: cnet_isa_7e02ec4d0d (IsA parentage kinship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parental quality is a kind of quality", "pln": ["(: cnet_isa_4296880c7c (IsA parental_quality quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parenthesis is a kind of punctuation", "pln": ["(: cnet_isa_0f09f89fa4 (IsA parenthesis punctuation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parenthesis free notation is a kind of mathematical notation", "pln": ["(: cnet_isa_31cd0df6a0 (IsA parenthesis_free_notation mathematical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parenthetical expression is a kind of adjunct", "pln": ["(: cnet_isa_40ce041914 (IsA parenthetical_expression adjunct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parenthood is a kind of adulthood", "pln": ["(: cnet_isa_afbcffabe3 (IsA parenthood adulthood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parent parent is a kind of grandparent", "pln": ["(: cnet_isa_c2a5212447 (IsA parent_parent grandparent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parer is a kind of knife", "pln": ["(: cnet_isa_0da25edce4 (IsA parer knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parer is a kind of manicurist", "pln": ["(: cnet_isa_6503b48b3e (IsA parer manicurist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paresis is a kind of paralysis", "pln": ["(: cnet_isa_24c3a045a5 (IsA paresis paralysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "paresthesia is a kind of symptom", "pln": ["(: cnet_isa_354b23f86d (IsA paresthesia symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paretic is a kind of paralytic", "pln": ["(: cnet_isa_e621930a4c (IsA paretic paralytic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parfait is a kind of frozen dessert", "pln": ["(: cnet_isa_e408f08662 (IsA parfait frozen_dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "parfait glass is a kind of glass", "pln": ["(: cnet_isa_8801ddfeb4 (IsA parfait_glass glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parget is a kind of plaster", "pln": ["(: cnet_isa_c74687ac79 (IsA parget plaster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pargeting is a kind of plastering", "pln": ["(: cnet_isa_1c31ee7acc (IsA pargeting plastering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pargeting is a kind of plaster", "pln": ["(: cnet_isa_7384e9e9dc (IsA pargeting plaster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parhelion is a kind of spot", "pln": ["(: cnet_isa_57fd3c7766 (IsA parhelion spot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pari mutuel machine is a kind of computer", "pln": ["(: cnet_isa_9406dfd30b (IsA pari_mutuel_machine computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pariah dog is a kind of cur", "pln": ["(: cnet_isa_022f2fddca (IsA pariah_dog cur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paridae is a kind of bird family", "pln": ["(: cnet_isa_d81268ff66 (IsA paridae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parietal bone is a kind of membrane bone", "pln": ["(: cnet_isa_1b11dd735a (IsA parietal_bone membrane_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parietal gyrus is a kind of gyrus", "pln": ["(: cnet_isa_92a78e8b7c (IsA parietal_gyrus gyrus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parietal lobe is a kind of lobe", "pln": ["(: cnet_isa_334afa86a1 (IsA parietal_lobe lobe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parietal pericardium is a kind of serous membrane", "pln": ["(: cnet_isa_a9a9c89ba0 (IsA parietal_pericardium serous_membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parietal placentation is a kind of placentation", "pln": ["(: cnet_isa_3e3de51f93 (IsA parietal_placentation placentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parietal pleura is a kind of pleura", "pln": ["(: cnet_isa_677143849a (IsA parietal_pleura pleura) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parietale is a kind of plant order", "pln": ["(: cnet_isa_2a529683c0 (IsA parietale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parietaria is a kind of dicot genus", "pln": ["(: cnet_isa_dc83b51e0b (IsA parietaria dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parieto occipital sulcus is a kind of sulcus", "pln": ["(: cnet_isa_557affd443 (IsA parieto_occipital_sulcus sulcus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parietomastoid suture is a kind of suture", "pln": ["(: cnet_isa_66625c59df (IsA parietomastoid_suture suture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parimutuel is a kind of bet", "pln": ["(: cnet_isa_e27ef939ad (IsA parimutuel bet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paring is a kind of object", "pln": ["(: cnet_isa_5106af0e3e (IsA paring object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "paring is a kind of fragment", "pln": ["(: cnet_isa_b374478182 (IsA paring fragment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "paris is a kind of city in france", "pln": ["(: cnet_isa_fbf4cbb6df (IsA paris city_in_france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paris is a kind of in france", "pln": ["(: cnet_isa_367b86dc08 (IsA paris in_france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paris is a kind of plant genus", "pln": ["(: cnet_isa_1bb8774be7 (IsA paris plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paris green is a kind of double salt", "pln": ["(: cnet_isa_6999738c0b (IsA paris_green double_salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paris green is a kind of insecticide", "pln": ["(: cnet_isa_8ceb50d3f9 (IsA paris_green insecticide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paris green is a kind of pigment", "pln": ["(: cnet_isa_afc7d787ed (IsA paris_green pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parish is a kind of community", "pln": ["(: cnet_isa_efd9dafb1d (IsA parish community) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parish is a kind of jurisdiction", "pln": ["(: cnet_isa_12cd1c9c8a (IsA parish jurisdiction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parishioner is a kind of churchgoer", "pln": ["(: cnet_isa_3c70e27359 (IsA parishioner churchgoer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parisian is a kind of french person", "pln": ["(: cnet_isa_767f2c71d7 (IsA parisian french_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parisienne is a kind of parisian", "pln": ["(: cnet_isa_df73e209a8 (IsA parisienne parisian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parisology is a kind of ambiguity", "pln": ["(: cnet_isa_107293a3b0 (IsA parisology ambiguity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parity is a kind of equivalence", "pln": ["(: cnet_isa_457b0efef2 (IsA parity equivalence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parity is a kind of mathematical relation", "pln": ["(: cnet_isa_a7fbf88621 (IsA parity mathematical_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parity is a kind of pregnancy", "pln": ["(: cnet_isa_bcebe2df20 (IsA parity pregnancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parity is a kind of conservation", "pln": ["(: cnet_isa_78cd8a6cf7 (IsA parity conservation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parity bit is a kind of bit", "pln": ["(: cnet_isa_c351e8d37d (IsA parity_bit bit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parity check is a kind of confirmation", "pln": ["(: cnet_isa_a0a2447752 (IsA parity_check confirmation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parji is a kind of central dravidian", "pln": ["(: cnet_isa_dbee795e00 (IsA parji central_dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "park is a kind of usually in city", "pln": ["(: cnet_isa_d381833067 (IsA park usually_in_city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "park is a kind of gear", "pln": ["(: cnet_isa_4570eccfb0 (IsA park gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "park is a kind of tract", "pln": ["(: cnet_isa_0e53dea293 (IsA park tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "park bench is a kind of bench", "pln": ["(: cnet_isa_7f49715217 (IsA park_bench bench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "park commissioner is a kind of commissioner", "pln": ["(: cnet_isa_fc4dc66397 (IsA park_commissioner commissioner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "parka is a kind of jacket", "pln": ["(: cnet_isa_07f0305b26 (IsA parka jacket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parker house roll is a kind of bun", "pln": ["(: cnet_isa_000df52b9c (IsA parker_house_roll bun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parkeriaceae is a kind of fern family", "pln": ["(: cnet_isa_8e1d63a25a (IsA parkeriaceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parkia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_ce49f8d55b (IsA parkia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parkia javanica is a kind of nitta tree", "pln": ["(: cnet_isa_f158018ce1 (IsA parkia_javanica nitta_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parking is a kind of maneuver", "pln": ["(: cnet_isa_df75927622 (IsA parking maneuver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parking is a kind of room", "pln": ["(: cnet_isa_58eade4e68 (IsA parking room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parking lot is a kind of lot", "pln": ["(: cnet_isa_34f6aa0abe (IsA parking_lot lot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parking meter is a kind of timer", "pln": ["(: cnet_isa_040f05450c (IsA parking_meter timer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parking space is a kind of space", "pln": ["(: cnet_isa_1cd3da83e8 (IsA parking_space space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parking ticket is a kind of ticket", "pln": ["(: cnet_isa_4f16e19523 (IsA parking_ticket ticket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parkinsonia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_8d35415148 (IsA parkinsonia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "park is a kind of normally in city", "pln": ["(: cnet_isa_e405e7851b (IsA park normally_in_city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parkway is a kind of road", "pln": ["(: cnet_isa_48a85dd35f (IsA parkway road) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "parlance is a kind of formulation", "pln": ["(: cnet_isa_65f63b8f94 (IsA parlance formulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parlay is a kind of bet", "pln": ["(: cnet_isa_2955fc83b4 (IsA parlay bet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parley is a kind of negotiation", "pln": ["(: cnet_isa_bfdef54b67 (IsA parley negotiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parliament is a kind of legislature", "pln": ["(: cnet_isa_158a2e6c37 (IsA parliament legislature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parliamentarian is a kind of expert", "pln": ["(: cnet_isa_51aeeab34b (IsA parliamentarian expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parliamentary agent is a kind of agent", "pln": ["(: cnet_isa_d1591cc50e (IsA parliamentary_agent agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "parliamentary democracy is a kind of democracy", "pln": ["(: cnet_isa_4e66d24fb5 (IsA parliamentary_democracy democracy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parliamentary monarchy is a kind of monarchy", "pln": ["(: cnet_isa_9bb5849227 (IsA parliamentary_monarchy monarchy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "parlor is a kind of room in house", "pln": ["(: cnet_isa_a0e8dc18e9 (IsA parlor room_in_house) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parlor is a kind of reception room", "pln": ["(: cnet_isa_49f593ca26 (IsA parlor reception_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parlor car is a kind of passenger car", "pln": ["(: cnet_isa_e95422f3d7 (IsA parlor_car passenger_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parlor game is a kind of game", "pln": ["(: cnet_isa_229bbeaad8 (IsA parlor_game game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parlormaid is a kind of maid", "pln": ["(: cnet_isa_e111d1dc74 (IsA parlormaid maid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parmelia is a kind of fungus genus", "pln": ["(: cnet_isa_a973c8b697 (IsA parmelia fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parmeliaceae is a kind of fungus family", "pln": ["(: cnet_isa_1f7c3c3fca (IsA parmeliaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parmesan is a kind of cheese", "pln": ["(: cnet_isa_0d2169a33e (IsA parmesan cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parnassia is a kind of marsh plant", "pln": ["(: cnet_isa_8ab61b77e4 (IsA parnassia marsh_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parochetus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_72802547a6 (IsA parochetus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parochialism is a kind of narrow mindedness", "pln": ["(: cnet_isa_22a0f44bd7 (IsA parochialism narrow_mindedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parodist is a kind of humorist", "pln": ["(: cnet_isa_2fa9b39977 (IsA parodist humorist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parody is a kind of apery", "pln": ["(: cnet_isa_a666484aa7 (IsA parody apery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parody is a kind of caricature", "pln": ["(: cnet_isa_77a9bd2fd6 (IsA parody caricature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parol evidence rule is a kind of rule of evidence", "pln": ["(: cnet_isa_2a9d403e8b (IsA parol_evidence_rule rule_of_evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parole is a kind of promise", "pln": ["(: cnet_isa_239df85359 (IsA parole promise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parole is a kind of liberation", "pln": ["(: cnet_isa_dcc9bf1938 (IsA parole liberation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paronychia is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_c523cb6195 (IsA paronychia caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paronychia is a kind of infection", "pln": ["(: cnet_isa_c8651b9386 (IsA paronychia infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "paronym is a kind of word", "pln": ["(: cnet_isa_97fa3e2ae3 (IsA paronym word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parophry is a kind of fish genus", "pln": ["(: cnet_isa_43cf6f684a (IsA parophry fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parotid gland is a kind of salivary gland", "pln": ["(: cnet_isa_ca379d476a (IsA parotid_gland salivary_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parotid vein is a kind of vein", "pln": ["(: cnet_isa_84f7ef1ad6 (IsA parotid_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parotitis is a kind of inflammation", "pln": ["(: cnet_isa_c9b1ccb691 (IsA parotitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paroxysm is a kind of attack", "pln": ["(: cnet_isa_d4121093db (IsA paroxysm attack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paroxysmal trepidant abasia is a kind of abasia", "pln": ["(: cnet_isa_d8b86a6481 (IsA paroxysmal_trepidant_abasia abasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "paroxytone is a kind of word", "pln": ["(: cnet_isa_2d0e1866b0 (IsA paroxytone word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parquet is a kind of floor", "pln": ["(: cnet_isa_2119b88a84 (IsA parquet floor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parquet is a kind of seating", "pln": ["(: cnet_isa_8f1862ba62 (IsA parquet seating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "parquet circle is a kind of seating", "pln": ["(: cnet_isa_613495d205 (IsA parquet_circle seating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parquetry is a kind of floor cover", "pln": ["(: cnet_isa_2ab97498fc (IsA parquetry floor_cover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parquetry is a kind of inlay", "pln": ["(: cnet_isa_3da72a7be5 (IsA parquetry inlay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parr is a kind of young fish", "pln": ["(: cnet_isa_007a88e9c7 (IsA parr young_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parricide is a kind of murder", "pln": ["(: cnet_isa_69681c27f4 (IsA parricide murder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parricide is a kind of murderer", "pln": ["(: cnet_isa_0cb67510e4 (IsA parricide murderer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parrot s beak is a kind of glory pea", "pln": ["(: cnet_isa_087d6c0183 (IsA parrot_s_beak glory_pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parrot is a kind of bird", "pln": ["(: cnet_isa_c0e14c703b (IsA parrot bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parrot is a kind of copycat", "pln": ["(: cnet_isa_6ff0e61ed5 (IsA parrot copycat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parrotfish is a kind of percoid fish", "pln": ["(: cnet_isa_af921e2145 (IsA parrotfish percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "parrotia is a kind of plant genus", "pln": ["(: cnet_isa_a19d4a34a9 (IsA parrotia plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "parrotiopsis is a kind of plant genus", "pln": ["(: cnet_isa_4e1be61f3c (IsA parrotiopsis plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parry s penstemon is a kind of wildflower", "pln": ["(: cnet_isa_0fa55e4d23 (IsA parry_s_penstemon wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parry s pinyon is a kind of pinon", "pln": ["(: cnet_isa_87c26bfcff (IsA parry_s_pinyon pinon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parry is a kind of blocking", "pln": ["(: cnet_isa_d6cae077e7 (IsA parry blocking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parry manzanita is a kind of manzanita", "pln": ["(: cnet_isa_9465d5b822 (IsA parry_manzanita manzanita) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "par distilis is a kind of endocrine gland", "pln": ["(: cnet_isa_39b150d850 (IsA par_distilis endocrine_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "par intermedia is a kind of endocrine gland", "pln": ["(: cnet_isa_e0f965f57e (IsA par_intermedia endocrine_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parsec is a kind of astronomy unit", "pln": ["(: cnet_isa_d9d3470d16 (IsA parsec astronomy_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parser is a kind of program", "pln": ["(: cnet_isa_90227ace3d (IsA parser program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parsi is a kind of religionist", "pln": ["(: cnet_isa_47831574e0 (IsA parsi religionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parsiism is a kind of zoroastrianism", "pln": ["(: cnet_isa_e99091ddb1 (IsA parsiism zoroastrianism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parsimony is a kind of frugality", "pln": ["(: cnet_isa_ed185f9aea (IsA parsimony frugality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parsley is a kind of herb", "pln": ["(: cnet_isa_1ee8cda107 (IsA parsley herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parsley haw is a kind of hawthorn", "pln": ["(: cnet_isa_2808f22450 (IsA parsley_haw hawthorn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parsnip is a kind of root vegetable", "pln": ["(: cnet_isa_3b7e725958 (IsA parsnip root_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parsnip is a kind of herb", "pln": ["(: cnet_isa_28d4e6725c (IsA parsnip herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parsnip is a kind of root", "pln": ["(: cnet_isa_88645e1c56 (IsA parsnip root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parson s nose is a kind of helping", "pln": ["(: cnet_isa_98c58e922b (IsA parson_s_nose helping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parsonage is a kind of residence", "pln": ["(: cnet_isa_dfc176164d (IsA parsonage residence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parson table is a kind of table", "pln": ["(: cnet_isa_cba951a524 (IsA parson_table table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "part is a kind of object", "pln": ["(: cnet_isa_8224dc5e13 (IsA part object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "part is a kind of line", "pln": ["(: cnet_isa_4e8434d723 (IsA part line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "part is a kind of concept", "pln": ["(: cnet_isa_2671eff104 (IsA part concept) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "part is a kind of concern", "pln": ["(: cnet_isa_191ecc681b (IsA part concern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "part is a kind of tune", "pln": ["(: cnet_isa_47553054f0 (IsA part tune) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "part is a kind of relation", "pln": ["(: cnet_isa_fc4a2b6816 (IsA part relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "part is a kind of thing", "pln": ["(: cnet_isa_17524958bd (IsA part thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "part music is a kind of music", "pln": ["(: cnet_isa_84d64dcd98 (IsA part_music music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "part of accordion is a kind of keyboard", "pln": ["(: cnet_isa_3ffc74f34c (IsA part_of_accordion keyboard) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "part of speech is a kind of grammatical category", "pln": ["(: cnet_isa_d6968cc822 (IsA part_of_speech grammatical_category) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "part of speech tagger is a kind of tagging program", "pln": ["(: cnet_isa_cfff85408c (IsA part_of_speech_tagger tagging_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "part owner is a kind of owner", "pln": ["(: cnet_isa_58b8a9a9fa (IsA part_owner owner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "part singing is a kind of singing", "pln": ["(: cnet_isa_f28c72baf9 (IsA part_singing singing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "part timer is a kind of worker", "pln": ["(: cnet_isa_0135dde776 (IsA part_timer worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partaker is a kind of participant", "pln": ["(: cnet_isa_9de91d7e19 (IsA partaker participant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parted leaf is a kind of leaf", "pln": ["(: cnet_isa_966747c8da (IsA parted_leaf leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parterre is a kind of flower garden", "pln": ["(: cnet_isa_2d8b8ad084 (IsA parterre flower_garden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parthenium is a kind of asterid dicot genus", "pln": ["(: cnet_isa_0b48f0d9d5 (IsA parthenium asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parthenocarpy is a kind of apomixis", "pln": ["(: cnet_isa_7711429069 (IsA parthenocarpy apomixis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parthenocissus is a kind of dicot genus", "pln": ["(: cnet_isa_7fc31bb2a7 (IsA parthenocissus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parthenogenesis is a kind of apomixis", "pln": ["(: cnet_isa_693b03aba2 (IsA parthenogenesis apomixis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parthenogeny is a kind of asexual reproduction", "pln": ["(: cnet_isa_f1eea77f4d (IsA parthenogeny asexual_reproduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parthenote is a kind of cell", "pln": ["(: cnet_isa_6fec678d12 (IsA parthenote cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parthian is a kind of pahlavi", "pln": ["(: cnet_isa_d3daab36d4 (IsA parthian pahlavi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parthian is a kind of asiatic", "pln": ["(: cnet_isa_de5d9c96c8 (IsA parthian asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partial breach is a kind of breach of contract", "pln": ["(: cnet_isa_2501bc9a51 (IsA partial_breach breach_of_contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partial correlation is a kind of correlation", "pln": ["(: cnet_isa_a24f3b7d8c (IsA partial_correlation correlation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "partial denture is a kind of denture", "pln": ["(: cnet_isa_d4035892b2 (IsA partial_denture denture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partial derivative is a kind of derived function", "pln": ["(: cnet_isa_192e2ce3e5 (IsA partial_derivative derived_function) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partial differential equation is a kind of differential equation", "pln": ["(: cnet_isa_77beefd7ff (IsA partial_differential_equation differential_equation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partial eclipse is a kind of eclipse", "pln": ["(: cnet_isa_ba9200638c (IsA partial_eclipse eclipse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partial false friend is a kind of false friend", "pln": ["(: cnet_isa_fc463f8a9a (IsA partial_false_friend false_friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partial veil is a kind of partial veil", "pln": ["(: cnet_isa_53333f3370 (IsA partial_veil partial_veil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partial veil is a kind of plant part", "pln": ["(: cnet_isa_20ac5855e1 (IsA partial_veil plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partial verdict is a kind of verdict", "pln": ["(: cnet_isa_603168ce11 (IsA partial_verdict verdict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partiality is a kind of inclination", "pln": ["(: cnet_isa_72a0679b46 (IsA partiality inclination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partialness is a kind of incompleteness", "pln": ["(: cnet_isa_b406d78678 (IsA partialness incompleteness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "participant is a kind of associate", "pln": ["(: cnet_isa_50f35e1432 (IsA participant associate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "participation is a kind of condition", "pln": ["(: cnet_isa_b83102d875 (IsA participation condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "participation loan is a kind of loan", "pln": ["(: cnet_isa_9cbabc0374 (IsA participation_loan loan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "participle is a kind of verb", "pln": ["(: cnet_isa_ba1856e653 (IsA participle verb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "particle is a kind of function word", "pln": ["(: cnet_isa_7a94a80a59 (IsA particle function_word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "particle is a kind of body", "pln": ["(: cnet_isa_a9f1a9de06 (IsA particle body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "particle beam is a kind of beam", "pln": ["(: cnet_isa_6e993f376b (IsA particle_beam beam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "particle detector is a kind of chamber", "pln": ["(: cnet_isa_dcdcc624e7 (IsA particle_detector chamber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "particle physic is a kind of physic", "pln": ["(: cnet_isa_d3c368f60a (IsA particle_physic physic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "particolored buckeye is a kind of horse chestnut", "pln": ["(: cnet_isa_1b737e001a (IsA particolored_buckeye horse_chestnut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "particular is a kind of fact", "pln": ["(: cnet_isa_b2918d13c0 (IsA particular fact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "particular proposition is a kind of proposition", "pln": ["(: cnet_isa_cfca28369e (IsA particular_proposition proposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "particularism is a kind of focus", "pln": ["(: cnet_isa_f3feb08b7b (IsA particularism focus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "particularity is a kind of quality", "pln": ["(: cnet_isa_c0d2576513 (IsA particularity quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "particularization is a kind of description", "pln": ["(: cnet_isa_34d432be67 (IsA particularization description) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "particulate is a kind of material", "pln": ["(: cnet_isa_fc6d2bc119 (IsA particulate material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partisan is a kind of pike", "pln": ["(: cnet_isa_4eb3dd7223 (IsA partisan pike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partisan is a kind of advocate", "pln": ["(: cnet_isa_6f70577b60 (IsA partisan advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partita is a kind of suite", "pln": ["(: cnet_isa_48d7a8e597 (IsA partita suite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partita is a kind of variation", "pln": ["(: cnet_isa_f2be39333c (IsA partita variation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partition is a kind of body part", "pln": ["(: cnet_isa_90c7585b02 (IsA partition body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partition is a kind of structure", "pln": ["(: cnet_isa_a5cce0c861 (IsA partition structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partition is a kind of computer memory unit", "pln": ["(: cnet_isa_5798981e90 (IsA partition computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partitionist is a kind of advocate", "pln": ["(: cnet_isa_1d84848874 (IsA partitionist advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partitive is a kind of word", "pln": ["(: cnet_isa_053681b610 (IsA partitive word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "partner is a kind of person", "pln": ["(: cnet_isa_bd169daf9a (IsA partner person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partner relation is a kind of fiduciary relation", "pln": ["(: cnet_isa_ed28c6cd5f (IsA partner_relation fiduciary_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partnership is a kind of contract", "pln": ["(: cnet_isa_dd3e828889 (IsA partnership contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partnership is a kind of business", "pln": ["(: cnet_isa_ffbae396ff (IsA partnership business) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partnership is a kind of relationship", "pln": ["(: cnet_isa_f760dad44c (IsA partnership relationship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partnership certificate is a kind of security", "pln": ["(: cnet_isa_954b9494bd (IsA partnership_certificate security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "partridge is a kind of bird", "pln": ["(: cnet_isa_1765d6b109 (IsA partridge bird) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partridge is a kind of phasianid", "pln": ["(: cnet_isa_b554b17b66 (IsA partridge phasianid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partridge is a kind of wildfowl", "pln": ["(: cnet_isa_afa249a1a0 (IsA partridge wildfowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partridge pea is a kind of subshrub", "pln": ["(: cnet_isa_19525bc792 (IsA partridge_pea subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "partridgeberry is a kind of vine", "pln": ["(: cnet_isa_b00765aabd (IsA partridgeberry vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "part is a kind of environment", "pln": ["(: cnet_isa_4ac286439a (IsA part environment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "part bin is a kind of bin", "pln": ["(: cnet_isa_c6a009af02 (IsA part_bin bin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "part catalog is a kind of catalog", "pln": ["(: cnet_isa_143d336318 (IsA part_catalog catalog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "part department is a kind of business department", "pln": ["(: cnet_isa_74fd5dbaa1 (IsA part_department business_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "part inventory is a kind of inventory", "pln": ["(: cnet_isa_66ceb32857 (IsA part_inventory inventory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partsong is a kind of song", "pln": ["(: cnet_isa_bf1d890985 (IsA partsong song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parturiency is a kind of parturition", "pln": ["(: cnet_isa_e19e7f80a2 (IsA parturiency parturition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parturition is a kind of organic process", "pln": ["(: cnet_isa_0e168b0bbb (IsA parturition organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "party is a kind of event", "pln": ["(: cnet_isa_fd8679cc19 (IsA party event) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "party is a kind of social gathering", "pln": ["(: cnet_isa_bf832824c1 (IsA party social_gathering) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "party is a kind of affair", "pln": ["(: cnet_isa_c02ef00a68 (IsA party affair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "party is a kind of organization", "pln": ["(: cnet_isa_39346a01ea (IsA party organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "party is a kind of set", "pln": ["(: cnet_isa_f33d8aaefc (IsA party set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "party is a kind of person", "pln": ["(: cnet_isa_30c1b7f3d2 (IsA party person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "party boss is a kind of politician", "pln": ["(: cnet_isa_522437a443 (IsA party_boss politician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "party favor is a kind of keepsake", "pln": ["(: cnet_isa_7a703237dd (IsA party_favor keepsake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "party game is a kind of game", "pln": ["(: cnet_isa_dc025117f7 (IsA party_game game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "party girl is a kind of girl", "pln": ["(: cnet_isa_0e0b3c2a1b (IsA party_girl girl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "party line is a kind of telephone line", "pln": ["(: cnet_isa_bc45f94341 (IsA party_line telephone_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "party line is a kind of policy", "pln": ["(: cnet_isa_2a3463b3d5 (IsA party_line policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "party man is a kind of politician", "pln": ["(: cnet_isa_0ba99a3f1c (IsA party_man politician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "party spirit is a kind of devotion", "pln": ["(: cnet_isa_17cb7b411a (IsA party_spirit devotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "party to action is a kind of party", "pln": ["(: cnet_isa_78ec15ec32 (IsA party_to_action party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "party wall is a kind of wall", "pln": ["(: cnet_isa_769636faff (IsA party_wall wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partygoer is a kind of attendant", "pln": ["(: cnet_isa_d4b3a4cf3f (IsA partygoer attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "partygoer is a kind of people", "pln": ["(: cnet_isa_d6b5856541 (IsA partygoer people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parula is a kind of bird genus", "pln": ["(: cnet_isa_43d3fb96c9 (IsA parula bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parula warbler is a kind of new world warbler", "pln": ["(: cnet_isa_3cd0c70a54 (IsA parula_warbler new_world_warbler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parulidae is a kind of bird family", "pln": ["(: cnet_isa_2487fa50c3 (IsA parulidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "parus is a kind of bird genus", "pln": ["(: cnet_isa_463c4b15f5 (IsA parus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "parvis is a kind of court", "pln": ["(: cnet_isa_48a07247fb (IsA parvis court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "parvovirus is a kind of animal virus", "pln": ["(: cnet_isa_ada7bcc5d7 (IsA parvovirus animal_virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pas is a kind of step", "pln": ["(: cnet_isa_db978c31c0 (IsA pas step) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pas de deux is a kind of dancing", "pln": ["(: cnet_isa_4b5db5f0bf (IsA pas_de_deux dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pas de quatre is a kind of dancing", "pln": ["(: cnet_isa_d9d454bb68 (IsA pas_de_quatre dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pas de trois is a kind of dancing", "pln": ["(: cnet_isa_00db83e77c (IsA pas_de_trois dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pas seul is a kind of dancing", "pln": ["(: cnet_isa_ae4bcfd801 (IsA pas_seul dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pascal s law is a kind of law", "pln": ["(: cnet_isa_2220315d68 (IsA pascal_s_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pascal is a kind of programming language", "pln": ["(: cnet_isa_25faffdf4f (IsA pascal programming_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pascal is a kind of pressure unit", "pln": ["(: cnet_isa_8ee2a642f3 (IsA pascal pressure_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pascal celery is a kind of celery", "pln": ["(: cnet_isa_0cca269586 (IsA pascal_celery celery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pascal compiler is a kind of compiler", "pln": ["(: cnet_isa_7b63b7e979 (IsA pascal_compiler compiler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pasch is a kind of easter", "pln": ["(: cnet_isa_78f556f2f4 (IsA pasch easter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pasch is a kind of passover", "pln": ["(: cnet_isa_1fae9eb472 (IsA pasch passover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pasha is a kind of authority", "pln": ["(: cnet_isa_acc25075fe (IsA pasha authority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pashto is a kind of iranian", "pln": ["(: cnet_isa_85c1b1ec78 (IsA pashto iranian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pashtoon is a kind of afghanistani", "pln": ["(: cnet_isa_8b7ce45c78 (IsA pashtoon afghanistani) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "passbook savings account is a kind of savings account", "pln": ["(: cnet_isa_9f146e3ca4 (IsA passbook_savings_account savings_account) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pasigraphy is a kind of artificial language", "pln": ["(: cnet_isa_850a5ac977 (IsA pasigraphy artificial_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paso doble is a kind of ballroom dancing", "pln": ["(: cnet_isa_8f6a588bb1 (IsA paso_doble ballroom_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paso doble is a kind of dance music", "pln": ["(: cnet_isa_c6340558c6 (IsA paso_doble dance_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pasqueflower is a kind of wildflower", "pln": ["(: cnet_isa_8bdb06243f (IsA pasqueflower wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pass is a kind of flight", "pln": ["(: cnet_isa_1cf03f9e41 (IsA pass flight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pass is a kind of football play", "pln": ["(: cnet_isa_4908515ebf (IsA pass football_play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pass is a kind of permission", "pln": ["(: cnet_isa_52b21a2c83 (IsA pass permission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pass is a kind of ticket", "pln": ["(: cnet_isa_2a5f22bf96 (IsA pass ticket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pass is a kind of cycle", "pln": ["(: cnet_isa_4065c9c27c (IsA pass cycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pass is a kind of juncture", "pln": ["(: cnet_isa_5d8593a7cc (IsA pass juncture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pass is a kind of leave", "pln": ["(: cnet_isa_3d4a3562ed (IsA pass leave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pass is a kind of license", "pln": ["(: cnet_isa_58cf868a6b (IsA pass license) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pass is a kind of location", "pln": ["(: cnet_isa_f04d13581a (IsA pass location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pass is a kind of throw", "pln": ["(: cnet_isa_885562d5e1 (IsA pass throw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pass is a kind of situation", "pln": ["(: cnet_isa_797a6f263d (IsA pass situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pass through is a kind of opening", "pln": ["(: cnet_isa_5101b76fe5 (IsA pass_through opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passage is a kind of change of state", "pln": ["(: cnet_isa_daf65c0896 (IsA passage change_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passage is a kind of delivery", "pln": ["(: cnet_isa_cdadf42cae (IsA passage delivery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passage is a kind of journey", "pln": ["(: cnet_isa_1a29e3ea6a (IsA passage journey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passage is a kind of reaction", "pln": ["(: cnet_isa_afaedd5b4a (IsA passage reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passage is a kind of way", "pln": ["(: cnet_isa_70028eb0a6 (IsA passage way) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passage is a kind of structure", "pln": ["(: cnet_isa_a168371de8 (IsA passage structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passage is a kind of musical composition", "pln": ["(: cnet_isa_04d340adcf (IsA passage musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passage is a kind of section", "pln": ["(: cnet_isa_35a1be2d1d (IsA passage section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passageway is a kind of passage", "pln": ["(: cnet_isa_15ae3093f9 (IsA passageway passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passamaquody is a kind of algonquin", "pln": ["(: cnet_isa_b5ef5fcd3d (IsA passamaquody algonquin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passbook saving account is a kind of saving account", "pln": ["(: cnet_isa_dc6a967777 (IsA passbook_saving_account saving_account) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passe partout is a kind of mounting", "pln": ["(: cnet_isa_4631fa585c (IsA passe_partout mounting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passed ball is a kind of pitch", "pln": ["(: cnet_isa_229dd56a7d (IsA passed_ball pitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "passenger is a kind of traveler", "pln": ["(: cnet_isa_36f9ec37e7 (IsA passenger traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passenger car is a kind of car", "pln": ["(: cnet_isa_f42c7d034c (IsA passenger_car car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passenger pigeon is a kind of pigeon", "pln": ["(: cnet_isa_7371361b82 (IsA passenger_pigeon pigeon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passenger ship is a kind of ship", "pln": ["(: cnet_isa_ec9828a516 (IsA passenger_ship ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passenger train is a kind of train", "pln": ["(: cnet_isa_2cbc51a23a (IsA passenger_train train) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "passenger van is a kind of van", "pln": ["(: cnet_isa_4d2642bdb3 (IsA passenger_van van) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passer is a kind of bird genus", "pln": ["(: cnet_isa_6f73aa322f (IsA passer bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passer is a kind of ball carrier", "pln": ["(: cnet_isa_6010cd97fb (IsA passer ball_carrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passer is a kind of person", "pln": ["(: cnet_isa_50ead8f96e (IsA passer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passer is a kind of student", "pln": ["(: cnet_isa_2a88d29548 (IsA passer student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passer is a kind of testee", "pln": ["(: cnet_isa_d9f954ec21 (IsA passer testee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passerby is a kind of pedestrian", "pln": ["(: cnet_isa_cc9b73ba28 (IsA passerby pedestrian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passeridae is a kind of bird family", "pln": ["(: cnet_isa_4b4afbdb33 (IsA passeridae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passeriforme is a kind of animal order", "pln": ["(: cnet_isa_e8ddd1bb1b (IsA passeriforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passerina is a kind of bird genus", "pln": ["(: cnet_isa_038673a571 (IsA passerina bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passerine is a kind of bird", "pln": ["(: cnet_isa_995016e936 (IsA passerine bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passiflora is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_6f3e75d02d (IsA passiflora dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passifloraceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_43d49d18c5 (IsA passifloraceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passing is a kind of reordering", "pln": ["(: cnet_isa_2967a8b683 (IsA passing reordering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passing is a kind of success", "pln": ["(: cnet_isa_9cd804022b (IsA passing success) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passing is a kind of death", "pln": ["(: cnet_isa_982061ee80 (IsA passing death) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passing is a kind of end", "pln": ["(: cnet_isa_e39db2964f (IsA passing end) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passing is a kind of movement", "pln": ["(: cnet_isa_d5e7b7b11f (IsA passing movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passing note is a kind of note", "pln": ["(: cnet_isa_c3b790d1bf (IsA passing_note note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passing shot is a kind of return", "pln": ["(: cnet_isa_3acd55913c (IsA passing_shot return) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passion is a kind of feeling", "pln": ["(: cnet_isa_f7474ca630 (IsA passion feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passion is a kind of sexual desire", "pln": ["(: cnet_isa_450c4fb226 (IsA passion sexual_desire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passion is a kind of agony", "pln": ["(: cnet_isa_7f1204cb5e (IsA passion agony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passion fruit is a kind of edible fruit", "pln": ["(: cnet_isa_0034354d6e (IsA passion_fruit edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passion play is a kind of play", "pln": ["(: cnet_isa_7e38602091 (IsA passion_play play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "passion sunday is a kind of christian holy day", "pln": ["(: cnet_isa_6dd2e6a546 (IsA passion_sunday christian_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passionflower is a kind of vine", "pln": ["(: cnet_isa_d461d7192e (IsA passionflower vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passive air defense is a kind of air defense", "pln": ["(: cnet_isa_266f727492 (IsA passive_air_defense air_defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passive immunity is a kind of acquired immunity", "pln": ["(: cnet_isa_e3fc2d4fad (IsA passive_immunity acquired_immunity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passive matrix display is a kind of liquid crystal display", "pln": ["(: cnet_isa_179ee6c76c (IsA passive_matrix_display liquid_crystal_display) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passive resistance is a kind of direct action", "pln": ["(: cnet_isa_aa67389855 (IsA passive_resistance direct_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passive source is a kind of informant", "pln": ["(: cnet_isa_e4d0f69852 (IsA passive_source informant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passive transport is a kind of transport", "pln": ["(: cnet_isa_99f7cb5e88 (IsA passive_transport transport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passive trust is a kind of trust", "pln": ["(: cnet_isa_5b0cabea6e (IsA passive_trust trust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passive voice is a kind of voice", "pln": ["(: cnet_isa_84e2dd05da (IsA passive_voice voice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passivity is a kind of inactiveness", "pln": ["(: cnet_isa_874ce334c8 (IsA passivity inactiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passivity is a kind of submissiveness", "pln": ["(: cnet_isa_53b94c07b2 (IsA passivity submissiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passkey is a kind of key", "pln": ["(: cnet_isa_cf1ff2ec66 (IsA passkey key) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passover is a kind of movable feast", "pln": ["(: cnet_isa_9a6ce08708 (IsA passover movable_feast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "passport is a kind of legal document", "pln": ["(: cnet_isa_3af22f416a (IsA passport legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "password is a kind of positive identification", "pln": ["(: cnet_isa_3a3c815061 (IsA password positive_identification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "password is a kind of secret", "pln": ["(: cnet_isa_ec573c6b4c (IsA password secret) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "past is a kind of tense", "pln": ["(: cnet_isa_116ade3424 (IsA past tense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "past is a kind of time", "pln": ["(: cnet_isa_844671777b (IsA past time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "past is a kind of time period", "pln": ["(: cnet_isa_0ee033957c (IsA past time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "past master is a kind of expert", "pln": ["(: cnet_isa_ffb3b2c3e9 (IsA past_master expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "past master is a kind of master", "pln": ["(: cnet_isa_7b06172a8d (IsA past_master master) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "past participle is a kind of participle", "pln": ["(: cnet_isa_b7997b340e (IsA past_participle participle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "past perfect is a kind of perfective", "pln": ["(: cnet_isa_7d7ec80e35 (IsA past_perfect perfective) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "past progressive is a kind of progressive", "pln": ["(: cnet_isa_34ed9b731e (IsA past_progressive progressive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pasta is a kind of dish", "pln": ["(: cnet_isa_904d2af14e (IsA pasta dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pasta is a kind of food", "pln": ["(: cnet_isa_833cbd7e31 (IsA pasta food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pasta salad is a kind of salad", "pln": ["(: cnet_isa_2887001142 (IsA pasta_salad salad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paste is a kind of adhesive material", "pln": ["(: cnet_isa_e7a609b828 (IsA paste adhesive_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paste is a kind of composition", "pln": ["(: cnet_isa_03e17911ec (IsA paste composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paste is a kind of lead glass", "pln": ["(: cnet_isa_545ea13f97 (IsA paste lead_glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paste up is a kind of composition", "pln": ["(: cnet_isa_67bc9772f6 (IsA paste_up composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pasteboard is a kind of cardboard", "pln": ["(: cnet_isa_04f124a5db (IsA pasteboard cardboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pastel is a kind of chromatic color", "pln": ["(: cnet_isa_f183cf4412 (IsA pastel chromatic_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paster is a kind of workman", "pln": ["(: cnet_isa_bc0a120313 (IsA paster workman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pastern is a kind of bone", "pln": ["(: cnet_isa_5dc4e8f257 (IsA pastern bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pasteurization is a kind of sterilization", "pln": ["(: cnet_isa_17fe9cb486 (IsA pasteurization sterilization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pasteurized milk is a kind of milk", "pln": ["(: cnet_isa_7d3283e049 (IsA pasteurized_milk milk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pastiche is a kind of work of art", "pln": ["(: cnet_isa_625dcb0c23 (IsA pastiche work_of_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pastime is a kind of diversion", "pln": ["(: cnet_isa_5229e1ae1c (IsA pastime diversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pastinaca is a kind of rosid dicot genus", "pln": ["(: cnet_isa_882e9f9cfd (IsA pastinaca rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pastinaca is a kind of umbelliferae", "pln": ["(: cnet_isa_9478b3265a (IsA pastinaca umbelliferae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pastis is a kind of liqueur", "pln": ["(: cnet_isa_0770e23ddd (IsA pastis liqueur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pastness is a kind of timing", "pln": ["(: cnet_isa_8b07eb3b24 (IsA pastness timing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pastor is a kind of bird genus", "pln": ["(: cnet_isa_b60582e400 (IsA pastor bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pastoral is a kind of letter", "pln": ["(: cnet_isa_e22ba83355 (IsA pastoral letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pastoral is a kind of literary composition", "pln": ["(: cnet_isa_113bd0ffce (IsA pastoral literary_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pastorale is a kind of musical composition", "pln": ["(: cnet_isa_3df8fbc930 (IsA pastorale musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pastorate is a kind of clergy", "pln": ["(: cnet_isa_ad1a40aeb8 (IsA pastorate clergy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pastorship is a kind of position", "pln": ["(: cnet_isa_43730edbca (IsA pastorship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pastrami is a kind of beef", "pln": ["(: cnet_isa_5432b42d0a (IsA pastrami beef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pastry is a kind of baked good", "pln": ["(: cnet_isa_0385f77a3d (IsA pastry baked_good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pastry is a kind of dough", "pln": ["(: cnet_isa_f6f091767c (IsA pastry dough) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pastry cart is a kind of serving cart", "pln": ["(: cnet_isa_fff21733d6 (IsA pastry_cart serving_cart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pastry cook is a kind of chef", "pln": ["(: cnet_isa_057fd8ffdf (IsA pastry_cook chef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pasture is a kind of grassland", "pln": ["(: cnet_isa_73a3c574fd (IsA pasture grassland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pasty is a kind of patch", "pln": ["(: cnet_isa_535915eebc (IsA pasty patch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pasty is a kind of meat pie", "pln": ["(: cnet_isa_90f6c2f7c4 (IsA pasty meat_pie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pat is a kind of sound", "pln": ["(: cnet_isa_153a3b5f27 (IsA pat sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pataca is a kind of macao monetary unit", "pln": ["(: cnet_isa_140483c133 (IsA pataca macao_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pata is a kind of old world monkey", "pln": ["(: cnet_isa_71de3163fc (IsA pata old_world_monkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patch is a kind of piece of cloth", "pln": ["(: cnet_isa_c1c253df51 (IsA patch piece_of_cloth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patch is a kind of program", "pln": ["(: cnet_isa_5aa71e32e6 (IsA patch program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patch pocket is a kind of pocket", "pln": ["(: cnet_isa_77ed90a82c (IsA patch_pocket pocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patch test is a kind of skin test", "pln": ["(: cnet_isa_75981798a8 (IsA patch_test skin_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patchcord is a kind of wire", "pln": ["(: cnet_isa_7aa0e82331 (IsA patchcord wire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patchiness is a kind of unevenness", "pln": ["(: cnet_isa_c871249cff (IsA patchiness unevenness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patching is a kind of repair", "pln": ["(: cnet_isa_94795ce2be (IsA patching repair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patchouli is a kind of perfume", "pln": ["(: cnet_isa_235928ef62 (IsA patchouli perfume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patchouli is a kind of shrub", "pln": ["(: cnet_isa_b8fd158bb9 (IsA patchouli shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patchwork is a kind of quilt", "pln": ["(: cnet_isa_034fad0ce9 (IsA patchwork quilt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patchwork is a kind of sewing", "pln": ["(: cnet_isa_115f043c9f (IsA patchwork sewing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patchwork is a kind of theory", "pln": ["(: cnet_isa_c404dddd86 (IsA patchwork theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pate is a kind of top", "pln": ["(: cnet_isa_b9343a8953 (IsA pate top) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pate is a kind of spread", "pln": ["(: cnet_isa_a24431ea3b (IsA pate spread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patella is a kind of mollusk genus", "pln": ["(: cnet_isa_0da12f6241 (IsA patella mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patella is a kind of sesamoid bone", "pln": ["(: cnet_isa_9b545a4c9f (IsA patella sesamoid_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patellidae is a kind of mollusk family", "pln": ["(: cnet_isa_e9d4a35750 (IsA patellidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patency is a kind of openness", "pln": ["(: cnet_isa_0767f5f1eb (IsA patency openness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patent is a kind of document", "pln": ["(: cnet_isa_551248494a (IsA patent document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patent is a kind of legal document", "pln": ["(: cnet_isa_a706ae3ee8 (IsA patent legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patent and trademark office database is a kind of agency", "pln": ["(: cnet_isa_1ed61a1dde (IsA patent_and_trademark_office_database agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patent application is a kind of application", "pln": ["(: cnet_isa_f12c0e3635 (IsA patent_application application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patent ductus arteriosus is a kind of ductus arteriosus", "pln": ["(: cnet_isa_34fc13e887 (IsA patent_ductus_arteriosus ductus_arteriosus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patent infringement is a kind of violation", "pln": ["(: cnet_isa_b6414293da (IsA patent_infringement violation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patent law is a kind of jurisprudence", "pln": ["(: cnet_isa_cd2433cec4 (IsA patent_law jurisprudence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patent leather is a kind of leather", "pln": ["(: cnet_isa_ee2e6972bf (IsA patent_leather leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patent log is a kind of log", "pln": ["(: cnet_isa_5431c6a141 (IsA patent_log log) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "patent medicine is a kind of medicine", "pln": ["(: cnet_isa_39a3b07f17 (IsA patent_medicine medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patent right is a kind of legal right", "pln": ["(: cnet_isa_55421da050 (IsA patent_right legal_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patent system is a kind of legal system", "pln": ["(: cnet_isa_9a57e296cf (IsA patent_system legal_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patentee is a kind of inventor", "pln": ["(: cnet_isa_338df4d413 (IsA patentee inventor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pater is a kind of father", "pln": ["(: cnet_isa_664d511d99 (IsA pater father) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paternalism is a kind of attitude", "pln": ["(: cnet_isa_540951e9d7 (IsA paternalism attitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paternity is a kind of state", "pln": ["(: cnet_isa_d7ab4dc092 (IsA paternity state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paternity suit is a kind of lawsuit", "pln": ["(: cnet_isa_10f4badf63 (IsA paternity_suit lawsuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "paternity test is a kind of assay", "pln": ["(: cnet_isa_264d0ead30 (IsA paternity_test assay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paternoster is a kind of elevator", "pln": ["(: cnet_isa_74844da212 (IsA paternoster elevator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "path is a kind of way", "pln": ["(: cnet_isa_7e1d16a755 (IsA path way) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "path is a kind of line", "pln": ["(: cnet_isa_7c05db78d5 (IsA path line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pathan is a kind of ethnic minority", "pln": ["(: cnet_isa_a77b061402 (IsA pathan ethnic_minority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pathetic fallacy is a kind of fallacy", "pln": ["(: cnet_isa_c89d0043ce (IsA pathetic_fallacy fallacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pathogen is a kind of infectious agent", "pln": ["(: cnet_isa_f8df3a64ab (IsA pathogen infectious_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pathogen is a kind of microorganism", "pln": ["(: cnet_isa_a5a752b670 (IsA pathogen microorganism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pathogenesis is a kind of pathologic process", "pln": ["(: cnet_isa_665576851c (IsA pathogenesis pathologic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pathologic process is a kind of organic process", "pln": ["(: cnet_isa_8d1692ae5c (IsA pathologic_process organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pathological state is a kind of physiological state", "pln": ["(: cnet_isa_4f96f209f4 (IsA pathological_state physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pathology is a kind of medical science", "pln": ["(: cnet_isa_d2e2bfab5c (IsA pathology medical_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pathology is a kind of ill health", "pln": ["(: cnet_isa_e33519dd3f (IsA pathology ill_health) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patho is a kind of quality", "pln": ["(: cnet_isa_c7b9db30d7 (IsA patho quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patho is a kind of expressive style", "pln": ["(: cnet_isa_a6ef024904 (IsA patho expressive_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pathway is a kind of path", "pln": ["(: cnet_isa_e8b4952ed3 (IsA pathway path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "patience is a kind of virtue", "pln": ["(: cnet_isa_fae1d16cbe (IsA patience virtue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "patience is a kind of good nature", "pln": ["(: cnet_isa_d1dcb315b6 (IsA patience good_nature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patient is a kind of case", "pln": ["(: cnet_isa_2d10663100 (IsA patient case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "patient is a kind of sick person", "pln": ["(: cnet_isa_fdac01a694 (IsA patient sick_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patient is a kind of people", "pln": ["(: cnet_isa_40e19a0e89 (IsA patient people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "patina is a kind of coating", "pln": ["(: cnet_isa_d8a1c833f3 (IsA patina coating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "patio is a kind of area", "pln": ["(: cnet_isa_31ec69987e (IsA patio area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patisserie is a kind of bakery", "pln": ["(: cnet_isa_c9c15bb049 (IsA patisserie bakery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patka is a kind of scarf", "pln": ["(: cnet_isa_6f6b4b1f7f (IsA patka scarf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patois is a kind of dialect", "pln": ["(: cnet_isa_f53611d6de (IsA patois dialect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patrial is a kind of brit", "pln": ["(: cnet_isa_9b43857535 (IsA patrial brit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patriarch is a kind of forefather", "pln": ["(: cnet_isa_5efd8ffa89 (IsA patriarch forefather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patriarch is a kind of head of household", "pln": ["(: cnet_isa_646ed3b694 (IsA patriarch head_of_household) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patriarch is a kind of man", "pln": ["(: cnet_isa_e9c2968d1e (IsA patriarch man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patriarch is a kind of old man", "pln": ["(: cnet_isa_5bc098aa4e (IsA patriarch old_man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patriarch is a kind of spiritual leader", "pln": ["(: cnet_isa_ecc6edee0d (IsA patriarch spiritual_leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patriarchal cross is a kind of cross", "pln": ["(: cnet_isa_f091647798 (IsA patriarchal_cross cross) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patriarchate is a kind of jurisdiction", "pln": ["(: cnet_isa_0572188431 (IsA patriarchate jurisdiction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patriarchy is a kind of social organization", "pln": ["(: cnet_isa_5026a50024 (IsA patriarchy social_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patrician is a kind of adult", "pln": ["(: cnet_isa_32db135e8a (IsA patrician adult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patricide is a kind of parricide", "pln": ["(: cnet_isa_3e0a502682 (IsA patricide parricide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patrilineage is a kind of unilateral descent", "pln": ["(: cnet_isa_4074b1bee5 (IsA patrilineage unilateral_descent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patrimony is a kind of endowment", "pln": ["(: cnet_isa_15802fcc40 (IsA patrimony endowment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patriot s day is a kind of day", "pln": ["(: cnet_isa_dc27977e14 (IsA patriot_s_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patriot is a kind of national", "pln": ["(: cnet_isa_4043b247c1 (IsA patriot national) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patriotism is a kind of loyalty", "pln": ["(: cnet_isa_b10e0152df (IsA patriotism loyalty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patristic is a kind of christian theology", "pln": ["(: cnet_isa_863a0249bd (IsA patristic christian_theology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patristic is a kind of writing", "pln": ["(: cnet_isa_d9ad933123 (IsA patristic writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patrol is a kind of protection", "pln": ["(: cnet_isa_ffbe64b259 (IsA patrol protection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patrol is a kind of detachment", "pln": ["(: cnet_isa_f996cf91f9 (IsA patrol detachment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patrol is a kind of force", "pln": ["(: cnet_isa_e1dab84ba8 (IsA patrol force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patrol boat is a kind of vessel", "pln": ["(: cnet_isa_c2f2913f00 (IsA patrol_boat vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "patroller is a kind of watchman", "pln": ["(: cnet_isa_6f0b27b74c (IsA patroller watchman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patron is a kind of benefactor", "pln": ["(: cnet_isa_e61246f630 (IsA patron benefactor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patron is a kind of customer", "pln": ["(: cnet_isa_0ec5032c54 (IsA patron customer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patron is a kind of owner", "pln": ["(: cnet_isa_25e6dc4bc4 (IsA patron owner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patron saint is a kind of defender", "pln": ["(: cnet_isa_d65afb5b10 (IsA patron_saint defender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patron saint is a kind of saint", "pln": ["(: cnet_isa_f3568cc3a4 (IsA patron_saint saint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patronage is a kind of social control", "pln": ["(: cnet_isa_42a9f3255e (IsA patronage social_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patroness is a kind of patron", "pln": ["(: cnet_isa_ea84bd78de (IsA patroness patron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patronymic is a kind of name", "pln": ["(: cnet_isa_714c4375d4 (IsA patronymic name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patter is a kind of sound", "pln": ["(: cnet_isa_efcea20c07 (IsA patter sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pattern is a kind of exemplar", "pln": ["(: cnet_isa_750e28c593 (IsA pattern exemplar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patternmaker is a kind of maker", "pln": ["(: cnet_isa_ab3ba70fc2 (IsA patternmaker maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patty is a kind of candy", "pln": ["(: cnet_isa_9d10944271 (IsA patty candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patty is a kind of dish", "pln": ["(: cnet_isa_38fd2a41af (IsA patty dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patty is a kind of pie", "pln": ["(: cnet_isa_df232c5af6 (IsA patty pie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patty pan is a kind of pan", "pln": ["(: cnet_isa_c8472fb528 (IsA patty_pan pan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patty shell is a kind of pastry", "pln": ["(: cnet_isa_1e1fb21713 (IsA patty_shell pastry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pattypan squash is a kind of summer squash", "pln": ["(: cnet_isa_65ec18fdf7 (IsA pattypan_squash summer_squash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patwin is a kind of copehan", "pln": ["(: cnet_isa_0de600599d (IsA patwin copehan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patwin is a kind of penutian", "pln": ["(: cnet_isa_6aa309757b (IsA patwin penutian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "patzer is a kind of chess player", "pln": ["(: cnet_isa_818ad5b040 (IsA patzer chess_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pauli exclusion principle is a kind of law", "pln": ["(: cnet_isa_954d30a5ea (IsA pauli_exclusion_principle law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pauper is a kind of poor person", "pln": ["(: cnet_isa_594513a81a (IsA pauper poor_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pauperization is a kind of privation", "pln": ["(: cnet_isa_7df8d57e40 (IsA pauperization privation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pauropoda is a kind of class", "pln": ["(: cnet_isa_c764248150 (IsA pauropoda class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pause is a kind of inactivity", "pln": ["(: cnet_isa_d8e477de3b (IsA pause inactivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pause is a kind of time interval", "pln": ["(: cnet_isa_85d0fc7c96 (IsA pause time_interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pavage is a kind of tax", "pln": ["(: cnet_isa_bb19d179e2 (IsA pavage tax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pavane is a kind of dancing", "pln": ["(: cnet_isa_567b263bb9 (IsA pavane dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pavane is a kind of dance music", "pln": ["(: cnet_isa_93ffbaf868 (IsA pavane dance_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pave is a kind of mount", "pln": ["(: cnet_isa_606cea9c3d (IsA pave mount) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paved surface is a kind of horizontal surface", "pln": ["(: cnet_isa_865ba20e13 (IsA paved_surface horizontal_surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pavement is a kind of paved surface", "pln": ["(: cnet_isa_0abbb03025 (IsA pavement paved_surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pavement artist is a kind of draftsman", "pln": ["(: cnet_isa_14156e95ac (IsA pavement_artist draftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pavilion is a kind of tent", "pln": ["(: cnet_isa_f1fd29f71d (IsA pavilion tent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paving is a kind of application", "pln": ["(: cnet_isa_5c4d5ac181 (IsA paving application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paving material is a kind of artifact", "pln": ["(: cnet_isa_fe28642f13 (IsA paving_material artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paving stone is a kind of stone", "pln": ["(: cnet_isa_a9370e8494 (IsA paving_stone stone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pavior is a kind of machine", "pln": ["(: cnet_isa_56e021a815 (IsA pavior machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pavis is a kind of shield", "pln": ["(: cnet_isa_9a36438e2e (IsA pavis shield) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pavlova is a kind of dessert", "pln": ["(: cnet_isa_5621485a48 (IsA pavlova dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pavo is a kind of bird genus", "pln": ["(: cnet_isa_1dd44b1fb0 (IsA pavo bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pavonia is a kind of shrub", "pln": ["(: cnet_isa_fa3d644385 (IsA pavonia shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paw is a kind of animal foot", "pln": ["(: cnet_isa_bf58574c2e (IsA paw animal_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pawer is a kind of unpleasant person", "pln": ["(: cnet_isa_f621bb3001 (IsA pawer unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pawl is a kind of catch", "pln": ["(: cnet_isa_d00bc1d9ed (IsA pawl catch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pawn is a kind of chess piece", "pln": ["(: cnet_isa_913e950baf (IsA pawn chess_piece) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pawn is a kind of borrowing", "pln": ["(: cnet_isa_7878a40b6b (IsA pawn borrowing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pawn is a kind of chessman", "pln": ["(: cnet_isa_e3a7238c49 (IsA pawn chessman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pawn is a kind of pledge", "pln": ["(: cnet_isa_2152613b06 (IsA pawn pledge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pawn ticket is a kind of receipt", "pln": ["(: cnet_isa_6dcedf3807 (IsA pawn_ticket receipt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pawnbroker s shop is a kind of shop", "pln": ["(: cnet_isa_7ed03d96ef (IsA pawnbroker_s_shop shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pawnbroker is a kind of lender", "pln": ["(: cnet_isa_69e740e54e (IsA pawnbroker lender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pawnbroker is a kind of pledgee", "pln": ["(: cnet_isa_8cd410224f (IsA pawnbroker pledgee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pawnee is a kind of caddo", "pln": ["(: cnet_isa_80a8df6d66 (IsA pawnee caddo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pawpaw is a kind of custard apple", "pln": ["(: cnet_isa_eba65b1d07 (IsA pawpaw custard_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pax is a kind of greeting", "pln": ["(: cnet_isa_f766ebd573 (IsA pax greeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pax romana is a kind of peace", "pln": ["(: cnet_isa_a44ba2554b (IsA pax_romana peace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pay cut is a kind of cut", "pln": ["(: cnet_isa_0238ea5ccf (IsA pay_cut cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pay dirt is a kind of success", "pln": ["(: cnet_isa_2e72562411 (IsA pay_dirt success) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pay dirt is a kind of ore", "pln": ["(: cnet_isa_ddb8dd54ad (IsA pay_dirt ore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pay envelope is a kind of wage", "pln": ["(: cnet_isa_0b2b5f0d65 (IsA pay_envelope wage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pay phone is a kind of telephone", "pln": ["(: cnet_isa_363ac5b7e4 (IsA pay_phone telephone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pay rate is a kind of rate", "pln": ["(: cnet_isa_4c46cb400b (IsA pay_rate rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "payable is a kind of liability", "pln": ["(: cnet_isa_0e500dc12c (IsA payable liability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "payback is a kind of return", "pln": ["(: cnet_isa_6dea1d9643 (IsA payback return) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paycheck is a kind of check", "pln": ["(: cnet_isa_83ff8d95cc (IsA paycheck check) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "payday is a kind of day", "pln": ["(: cnet_isa_d30a06d4ce (IsA payday day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paye is a kind of withholding tax", "pln": ["(: cnet_isa_17781f5e08 (IsA paye withholding_tax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "payee is a kind of recipient", "pln": ["(: cnet_isa_4c4386816b (IsA payee recipient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "payena is a kind of dicot genus", "pln": ["(: cnet_isa_7fa0a6091e (IsA payena dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "payer is a kind of money handler", "pln": ["(: cnet_isa_b124d81813 (IsA payer money_handler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paymaster is a kind of payer", "pln": ["(: cnet_isa_8fadb31d40 (IsA paymaster payer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "payment is a kind of commerce", "pln": ["(: cnet_isa_cd81abd616 (IsA payment commerce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "payment is a kind of cost", "pln": ["(: cnet_isa_f3aef06c45 (IsA payment cost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "payment rate is a kind of rate", "pln": ["(: cnet_isa_e11732c9f8 (IsA payment_rate rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "payne s gray is a kind of pigment", "pln": ["(: cnet_isa_dbfb04a44b (IsA payne_s_gray pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "paynim is a kind of heathen", "pln": ["(: cnet_isa_01d59fecb9 (IsA paynim heathen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "payoff is a kind of payment", "pln": ["(: cnet_isa_3f83b4519f (IsA payoff payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "payola is a kind of bribe", "pln": ["(: cnet_isa_42cd594373 (IsA payola bribe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "payroll is a kind of department", "pln": ["(: cnet_isa_8ccd20f49e (IsA payroll department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "payroll is a kind of register", "pln": ["(: cnet_isa_00a46d6c1a (IsA payroll register) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "payroll is a kind of sum", "pln": ["(: cnet_isa_3e3349e93f (IsA payroll sum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "payslip is a kind of record", "pln": ["(: cnet_isa_24f47e91b9 (IsA payslip record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pb is a kind of computer memory unit", "pln": ["(: cnet_isa_0de483691f (IsA pb computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pc board is a kind of circuit board", "pln": ["(: cnet_isa_33ab0aca53 (IsA pc_board circuit_board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pda is a kind of computer", "pln": ["(: cnet_isa_ab615585f6 (IsA pda computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pda is a kind of electronic device", "pln": ["(: cnet_isa_fa057ec816 (IsA pda electronic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pdf is a kind of file format", "pln": ["(: cnet_isa_873d369843 (IsA pdf file_format) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pe is a kind of letter", "pln": ["(: cnet_isa_89af90f614 (IsA pe letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pea is a kind of legume", "pln": ["(: cnet_isa_ddb1401ee1 (IsA pea legume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pea crab is a kind of crab", "pln": ["(: cnet_isa_6faad5b36a (IsA pea_crab crab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pea flour is a kind of meal", "pln": ["(: cnet_isa_00e8702dcd (IsA pea_flour meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pea jacket is a kind of jacket", "pln": ["(: cnet_isa_1331bfd95d (IsA pea_jacket jacket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pea pod is a kind of pod", "pln": ["(: cnet_isa_20ed5b4226 (IsA pea_pod pod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pea shooter is a kind of plaything", "pln": ["(: cnet_isa_702d3a1fc7 (IsA pea_shooter plaything) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pea shooter is a kind of tube", "pln": ["(: cnet_isa_dc101605f4 (IsA pea_shooter tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pea soup is a kind of soup", "pln": ["(: cnet_isa_bcee47cf8b (IsA pea_soup soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pea soup is a kind of fog", "pln": ["(: cnet_isa_e642cb8362 (IsA pea_soup fog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pea tree is a kind of shrub", "pln": ["(: cnet_isa_9e210c8bc2 (IsA pea_tree shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pea weevil is a kind of seed beetle", "pln": ["(: cnet_isa_86da0fe349 (IsA pea_weevil seed_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peace is a kind of treaty", "pln": ["(: cnet_isa_d2e5b336ff (IsA peace treaty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peace is a kind of tranquillity", "pln": ["(: cnet_isa_2815a6076f (IsA peace tranquillity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peace is a kind of harmony", "pln": ["(: cnet_isa_bf97b95264 (IsA peace harmony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peace is a kind of order", "pln": ["(: cnet_isa_d4c3c18247 (IsA peace order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peace is a kind of security", "pln": ["(: cnet_isa_f0e5ab076c (IsA peace security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peace advocacy is a kind of dovishness", "pln": ["(: cnet_isa_e6162ea990 (IsA peace_advocacy dovishness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peace corp is a kind of organization", "pln": ["(: cnet_isa_434b1925c2 (IsA peace_corp organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "peace initiative is a kind of first step", "pln": ["(: cnet_isa_113c08a2a1 (IsA peace_initiative first_step) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peace march is a kind of protest march", "pln": ["(: cnet_isa_4ed6d21e91 (IsA peace_march protest_march) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "peace offering is a kind of offer", "pln": ["(: cnet_isa_a8931c92f1 (IsA peace_offering offer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peace process is a kind of social process", "pln": ["(: cnet_isa_4eb261bcb2 (IsA peace_process social_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peace sign is a kind of symbol", "pln": ["(: cnet_isa_33cd50f2b8 (IsA peace_sign symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peaceableness is a kind of amity", "pln": ["(: cnet_isa_1ab73f8634 (IsA peaceableness amity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peacekeeper is a kind of pistol", "pln": ["(: cnet_isa_348f28954c (IsA peacekeeper pistol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peacekeeper is a kind of soldier", "pln": ["(: cnet_isa_84474b0d0b (IsA peacekeeper soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peacekeeper is a kind of defender", "pln": ["(: cnet_isa_b30a3180e3 (IsA peacekeeper defender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peacekeeping is a kind of operation", "pln": ["(: cnet_isa_6a15b14718 (IsA peacekeeping operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peacetime is a kind of time period", "pln": ["(: cnet_isa_ffc6af1509 (IsA peacetime time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peach is a kind of fruit", "pln": ["(: cnet_isa_8d5a9af978 (IsA peach fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peach is a kind of drupe", "pln": ["(: cnet_isa_2e560e3283 (IsA peach drupe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peach is a kind of edible fruit", "pln": ["(: cnet_isa_ba4c2b244b (IsA peach edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peach is a kind of fruit tree", "pln": ["(: cnet_isa_522f1098a6 (IsA peach fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peach bell is a kind of campanula", "pln": ["(: cnet_isa_fb312493f7 (IsA peach_bell campanula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peach blight is a kind of blight", "pln": ["(: cnet_isa_e05d3a8fd1 (IsA peach_blight blight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peach ice cream is a kind of ice cream", "pln": ["(: cnet_isa_b6e2b3e38c (IsA peach_ice_cream ice_cream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peach melba is a kind of dessert", "pln": ["(: cnet_isa_cdd0a85b36 (IsA peach_melba dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peach orchard is a kind of grove", "pln": ["(: cnet_isa_036fde9d35 (IsA peach_orchard grove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "peach pit is a kind of stone", "pln": ["(: cnet_isa_4fd79c00a2 (IsA peach_pit stone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peach sauce is a kind of sauce", "pln": ["(: cnet_isa_b5c8d183b4 (IsA peach_sauce sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peachick is a kind of peafowl", "pln": ["(: cnet_isa_09161e07aa (IsA peachick peafowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peachleaf willow is a kind of willow", "pln": ["(: cnet_isa_c8a5e635fa (IsA peachleaf_willow willow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peacock is a kind of bird", "pln": ["(: cnet_isa_063958a5fe (IsA peacock bird) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peacock is a kind of nymphalid", "pln": ["(: cnet_isa_75eff33007 (IsA peacock nymphalid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peacock is a kind of peafowl", "pln": ["(: cnet_isa_b3238ebb43 (IsA peacock peafowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peacock throne is a kind of throne", "pln": ["(: cnet_isa_712cb93e77 (IsA peacock_throne throne) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peafowl is a kind of pheasant", "pln": ["(: cnet_isa_4d33c2ce9a (IsA peafowl pheasant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peahen is a kind of peafowl", "pln": ["(: cnet_isa_eb3baa1b03 (IsA peahen peafowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peak is a kind of topographic point", "pln": ["(: cnet_isa_084990a70b (IsA peak topographic_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peal is a kind of sound", "pln": ["(: cnet_isa_a3ca97b51f (IsA peal sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peanut is a kind of edible nut", "pln": ["(: cnet_isa_24e0c23515 (IsA peanut edible_nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peanut is a kind of child", "pln": ["(: cnet_isa_ee45422010 (IsA peanut child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peanut is a kind of legume", "pln": ["(: cnet_isa_a0ad5584a5 (IsA peanut legume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peanut is a kind of pod", "pln": ["(: cnet_isa_eddb24f2a7 (IsA peanut pod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peanut bar is a kind of candy", "pln": ["(: cnet_isa_165357ea5d (IsA peanut_bar candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peanut brittle is a kind of brittle", "pln": ["(: cnet_isa_c86a851446 (IsA peanut_brittle brittle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peanut butter is a kind of food", "pln": ["(: cnet_isa_df20aa14c9 (IsA peanut_butter food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peanut butter is a kind of spread", "pln": ["(: cnet_isa_4870da33ac (IsA peanut_butter spread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "peanut gallery is a kind of people", "pln": ["(: cnet_isa_5568c85144 (IsA peanut_gallery people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peanut oil is a kind of vegetable oil", "pln": ["(: cnet_isa_b1636227c5 (IsA peanut_oil vegetable_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peanut worm is a kind of invertebrate", "pln": ["(: cnet_isa_7468d073a6 (IsA peanut_worm invertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peanut is a kind of sum", "pln": ["(: cnet_isa_5e10e82e28 (IsA peanut sum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pear is a kind of edible fruit", "pln": ["(: cnet_isa_63d87128a4 (IsA pear edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pear is a kind of pome", "pln": ["(: cnet_isa_23415c0d34 (IsA pear pome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pear is a kind of fruit tree", "pln": ["(: cnet_isa_efd777b760 (IsA pear fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pear tree is a kind of tree", "pln": ["(: cnet_isa_782c238d63 (IsA pear_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pearl is a kind of jewel", "pln": ["(: cnet_isa_17c5a05ee6 (IsA pearl jewel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pearl ash is a kind of potassium carbonate", "pln": ["(: cnet_isa_511bd858c4 (IsA pearl_ash potassium_carbonate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pearl barley is a kind of barley", "pln": ["(: cnet_isa_e1ff1d62cc (IsA pearl_barley barley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pearl diver is a kind of diver", "pln": ["(: cnet_isa_ea8d2dfc1e (IsA pearl_diver diver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pearl fishery is a kind of fishery", "pln": ["(: cnet_isa_ba70d19523 (IsA pearl_fishery fishery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pearl hominy is a kind of hominy", "pln": ["(: cnet_isa_b1dcd748cf (IsA pearl_hominy hominy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pearl millet is a kind of cereal", "pln": ["(: cnet_isa_2dc2acae8f (IsA pearl_millet cereal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pearl oyster is a kind of oyster", "pln": ["(: cnet_isa_3846b44ede (IsA pearl_oyster oyster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pearl sago is a kind of sago", "pln": ["(: cnet_isa_ffa00cc7af (IsA pearl_sago sago) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pearlfish is a kind of percoid fish", "pln": ["(: cnet_isa_dcfa1b23f4 (IsA pearlfish percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pearlite is a kind of lamellar mixture", "pln": ["(: cnet_isa_ce0ffa4124 (IsA pearlite lamellar_mixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pearlwort is a kind of groundcover", "pln": ["(: cnet_isa_a6b8129697 (IsA pearlwort groundcover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pearly everlasting is a kind of everlasting", "pln": ["(: cnet_isa_3989039c2d (IsA pearly_everlasting everlasting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pearly razorfish is a kind of razor fish", "pln": ["(: cnet_isa_5f96d3da9b (IsA pearly_razorfish razor_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pearly shelled mussel is a kind of freshwater mussel", "pln": ["(: cnet_isa_1b2f7ac0ee (IsA pearly_shelled_mussel freshwater_mussel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pearmain is a kind of eating apple", "pln": ["(: cnet_isa_7acd4e9a0d (IsA pearmain eating_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pear is a kind of food", "pln": ["(: cnet_isa_0332d67e95 (IsA pear food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pea is a kind of vegetable", "pln": ["(: cnet_isa_bcdf4eb082 (IsA pea vegetable) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pea and onion is a kind of both food", "pln": ["(: cnet_isa_523cfa16df (IsA pea_and_onion both_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pea and onion is a kind of food", "pln": ["(: cnet_isa_2cb067a413 (IsA pea_and_onion food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peasant is a kind of agricultural laborer", "pln": ["(: cnet_isa_3d94908762 (IsA peasant agricultural_laborer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peasant is a kind of rustic", "pln": ["(: cnet_isa_d52cb6a028 (IsA peasant rustic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peasant is a kind of unpleasant person", "pln": ["(: cnet_isa_f2d2b9184e (IsA peasant unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peasanthood is a kind of position", "pln": ["(: cnet_isa_71f77600d4 (IsA peasanthood position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peasantry is a kind of class", "pln": ["(: cnet_isa_52fcfa9c36 (IsA peasantry class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pease pudding is a kind of pudding", "pln": ["(: cnet_isa_3f843b12e2 (IsA pease_pudding pudding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peat is a kind of humate", "pln": ["(: cnet_isa_7cd78c36eb (IsA peat humate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peat is a kind of vegetable matter", "pln": ["(: cnet_isa_dfa4a28198 (IsA peat vegetable_matter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "peavey is a kind of lever", "pln": ["(: cnet_isa_e9b70e999e (IsA peavey lever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peba is a kind of armadillo", "pln": ["(: cnet_isa_0a81e304d2 (IsA peba armadillo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pebble is a kind of rock", "pln": ["(: cnet_isa_5aecb2b2aa (IsA pebble rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pebibit is a kind of computer memory unit", "pln": ["(: cnet_isa_ed21381b89 (IsA pebibit computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pecan is a kind of edible nut", "pln": ["(: cnet_isa_e8292d71a3 (IsA pecan edible_nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pecan is a kind of nut tree", "pln": ["(: cnet_isa_37d1b6e605 (IsA pecan nut_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pecan is a kind of wood", "pln": ["(: cnet_isa_35ba0f3bd6 (IsA pecan wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pecan pie is a kind of pie", "pln": ["(: cnet_isa_40a907499b (IsA pecan_pie pie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peccary is a kind of even toed ungulate", "pln": ["(: cnet_isa_0ebe4f4971 (IsA peccary even_toed_ungulate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peck is a kind of british capacity unit", "pln": ["(: cnet_isa_e5858d79aa (IsA peck british_capacity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peck is a kind of united state dry unit", "pln": ["(: cnet_isa_8568c60e8d (IsA peck united_state_dry_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pecopteris is a kind of fern", "pln": ["(: cnet_isa_1badebb8bf (IsA pecopteris fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pectic acid is a kind of acid", "pln": ["(: cnet_isa_885e702030 (IsA pectic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pectin is a kind of cellulose", "pln": ["(: cnet_isa_30c8df3d43 (IsA pectin cellulose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pectinibranchia is a kind of animal order", "pln": ["(: cnet_isa_adc5de02d5 (IsA pectinibranchia animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pectinidae is a kind of mollusk family", "pln": ["(: cnet_isa_8ffc1d6c37 (IsA pectinidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pectoral is a kind of adornment", "pln": ["(: cnet_isa_009bcac3fe (IsA pectoral adornment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pectoral is a kind of skeletal muscle", "pln": ["(: cnet_isa_f68892e2ef (IsA pectoral skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pectoral fin is a kind of fin", "pln": ["(: cnet_isa_b5179baaef (IsA pectoral_fin fin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pectoral girdle is a kind of girdle", "pln": ["(: cnet_isa_52785acea8 (IsA pectoral_girdle girdle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pectoral sandpiper is a kind of sandpiper", "pln": ["(: cnet_isa_46db2d2518 (IsA pectoral_sandpiper sandpiper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pectoral vein is a kind of vein", "pln": ["(: cnet_isa_eb3e8ac5aa (IsA pectoral_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pectoralis major is a kind of pectoral", "pln": ["(: cnet_isa_2d839087c6 (IsA pectoralis_major pectoral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pectoralis minor is a kind of pectoral", "pln": ["(: cnet_isa_b3d9c0fdb8 (IsA pectoralis_minor pectoral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peculiar velocity is a kind of speed", "pln": ["(: cnet_isa_5cc8319ae8 (IsA peculiar_velocity speed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peculiarity is a kind of individuality", "pln": ["(: cnet_isa_6d0a380f5d (IsA peculiarity individuality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peculiarity is a kind of feature", "pln": ["(: cnet_isa_c60d23b65e (IsA peculiarity feature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pedal is a kind of lever", "pln": ["(: cnet_isa_876486a3db (IsA pedal lever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pedal point is a kind of note", "pln": ["(: cnet_isa_e962267cf1 (IsA pedal_point note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pedal pusher is a kind of pair of trouser", "pln": ["(: cnet_isa_018921c395 (IsA pedal_pusher pair_of_trouser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pedaler is a kind of rider", "pln": ["(: cnet_isa_668884c839 (IsA pedaler rider) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pedaliaceae is a kind of plant family", "pln": ["(: cnet_isa_fc1d02eacd (IsA pedaliaceae plant_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pedant is a kind of scholar", "pln": ["(: cnet_isa_7657f61586 (IsA pedant scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pedantry is a kind of ostentation", "pln": ["(: cnet_isa_a409f078b2 (IsA pedantry ostentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pedate leaf is a kind of palmate leaf", "pln": ["(: cnet_isa_e4c1278a52 (IsA pedate_leaf palmate_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peddler is a kind of seller", "pln": ["(: cnet_isa_40bbc29b4a (IsA peddler seller) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pederast is a kind of pervert", "pln": ["(: cnet_isa_b6b6869149 (IsA pederast pervert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pederasty is a kind of homosexuality", "pln": ["(: cnet_isa_c0a5f7aa93 (IsA pederasty homosexuality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pederasty is a kind of paraphilia", "pln": ["(: cnet_isa_8adf0168f4 (IsA pederasty paraphilia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "pediatrics is a kind of medicine", "pln": ["(: cnet_isa_c7729f363b (IsA pediatrics medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pedestal is a kind of support", "pln": ["(: cnet_isa_7925c3f737 (IsA pedestal support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pedestal is a kind of status", "pln": ["(: cnet_isa_4f1f1e5c69 (IsA pedestal status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pedestal table is a kind of table", "pln": ["(: cnet_isa_68b171cc2b (IsA pedestal_table table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pedestrian is a kind of traveler", "pln": ["(: cnet_isa_bf162af9c8 (IsA pedestrian traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pedestrian crossing is a kind of crossing", "pln": ["(: cnet_isa_13b2b51468 (IsA pedestrian_crossing crossing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pedestrian traffic is a kind of traffic", "pln": ["(: cnet_isa_e67cef130b (IsA pedestrian_traffic traffic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pediatric is a kind of medicine", "pln": ["(: cnet_isa_93965cb2e4 (IsA pediatric medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pedicab is a kind of tricycle", "pln": ["(: cnet_isa_14e4d0fc62 (IsA pedicab tricycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pedicel is a kind of peduncle", "pln": ["(: cnet_isa_73579fcaa2 (IsA pedicel peduncle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pediculati is a kind of animal order", "pln": ["(: cnet_isa_592f233db2 (IsA pediculati animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pediculicide is a kind of pesticide", "pln": ["(: cnet_isa_e7b89e6a9d (IsA pediculicide pesticide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pediculidae is a kind of arthropod family", "pln": ["(: cnet_isa_6a3cd061be (IsA pediculidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pediculosis is a kind of infestation", "pln": ["(: cnet_isa_711c054b6f (IsA pediculosis infestation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pediculosis capitis is a kind of pediculosis", "pln": ["(: cnet_isa_ae268b0fed (IsA pediculosis_capitis pediculosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pediculosis corporis is a kind of pediculosis", "pln": ["(: cnet_isa_0bd45efb15 (IsA pediculosis_corporis pediculosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pediculosis pubis is a kind of pediculosis", "pln": ["(: cnet_isa_b808a77b5b (IsA pediculosis_pubis pediculosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pediculus is a kind of arthropod genus", "pln": ["(: cnet_isa_20889896bd (IsA pediculus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pedicure is a kind of beauty treatment", "pln": ["(: cnet_isa_af92cca150 (IsA pedicure beauty_treatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pedicure is a kind of care", "pln": ["(: cnet_isa_a8cbb06908 (IsA pedicure care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pedigree is a kind of ancestry", "pln": ["(: cnet_isa_ae0ee3e268 (IsA pedigree ancestry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pedigree is a kind of breed", "pln": ["(: cnet_isa_adad4b18e2 (IsA pedigree breed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pedilanthus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_7300d713c2 (IsA pedilanthus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pediment is a kind of gable", "pln": ["(: cnet_isa_e597983fdd (IsA pediment gable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pediocactus is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_6224559871 (IsA pediocactus caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pedioecete is a kind of bird genus", "pln": ["(: cnet_isa_9535b7961d (IsA pedioecete bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pedionomus is a kind of bird genus", "pln": ["(: cnet_isa_4e758c11a8 (IsA pedionomus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pedipalpi is a kind of animal order", "pln": ["(: cnet_isa_9595e95c4b (IsA pedipalpi animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pedodontist is a kind of dentist", "pln": ["(: cnet_isa_9153fbfc0d (IsA pedodontist dentist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pedometer is a kind of measuring instrument", "pln": ["(: cnet_isa_9bd8581944 (IsA pedometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pedophile is a kind of pervert", "pln": ["(: cnet_isa_8f6d790085 (IsA pedophile pervert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pedophilia is a kind of paraphilia", "pln": ["(: cnet_isa_564da477e4 (IsA pedophilia paraphilia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "peduncle is a kind of nerve pathway", "pln": ["(: cnet_isa_1015194e5d (IsA peduncle nerve_pathway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peduncle is a kind of scape", "pln": ["(: cnet_isa_44f13b91d5 (IsA peduncle scape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peduncle is a kind of growth", "pln": ["(: cnet_isa_977bdef491 (IsA peduncle growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pedunculated polyp is a kind of polyp", "pln": ["(: cnet_isa_10b7ec70e9 (IsA pedunculated_polyp polyp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "peeing is a kind of micturition", "pln": ["(: cnet_isa_734cfb78c5 (IsA peeing micturition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peek is a kind of look", "pln": ["(: cnet_isa_53786bb710 (IsA peek look) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peekaboo is a kind of child s game", "pln": ["(: cnet_isa_d12e1a2941 (IsA peekaboo child_s_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "peel is a kind of rind", "pln": ["(: cnet_isa_a2b5d65d74 (IsA peel rind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "peeler is a kind of device", "pln": ["(: cnet_isa_f230493af1 (IsA peeler device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peeler is a kind of worker", "pln": ["(: cnet_isa_f93be24231 (IsA peeler worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peen is a kind of part", "pln": ["(: cnet_isa_076f8131f8 (IsA peen part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peep sight is a kind of gunsight", "pln": ["(: cnet_isa_7d0fa16eef (IsA peep_sight gunsight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "peeper is a kind of animal", "pln": ["(: cnet_isa_94b1df3dfc (IsA peeper animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peeper is a kind of eye", "pln": ["(: cnet_isa_bce59937fd (IsA peeper eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peephole is a kind of hole", "pln": ["(: cnet_isa_381e072d1e (IsA peephole hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peepshow is a kind of skin flick", "pln": ["(: cnet_isa_88158620df (IsA peepshow skin_flick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peepshow is a kind of exhibition", "pln": ["(: cnet_isa_5e78fff9e0 (IsA peepshow exhibition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peer is a kind of nobleman", "pln": ["(: cnet_isa_6de5861111 (IsA peer nobleman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peer is a kind of person", "pln": ["(: cnet_isa_5014ee8d4a (IsA peer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peer group is a kind of coeval", "pln": ["(: cnet_isa_06c4329c37 (IsA peer_group coeval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peer of realm is a kind of peer", "pln": ["(: cnet_isa_d6567e19bf (IsA peer_of_realm peer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peerage is a kind of nobility", "pln": ["(: cnet_isa_e7aaed379d (IsA peerage nobility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peeve is a kind of temper", "pln": ["(: cnet_isa_3dab48ca3c (IsA peeve temper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peg is a kind of holder", "pln": ["(: cnet_isa_47fbaca939 (IsA peg holder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peg is a kind of pin", "pln": ["(: cnet_isa_6240f6e00a (IsA peg pin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "peg is a kind of prosthesis", "pln": ["(: cnet_isa_e9301da535 (IsA peg prosthesis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peg is a kind of regulator", "pln": ["(: cnet_isa_45a51cb9c2 (IsA peg regulator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peg is a kind of marker", "pln": ["(: cnet_isa_aff6625065 (IsA peg marker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peg top is a kind of top", "pln": ["(: cnet_isa_1ecf922933 (IsA peg_top top) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pegasus is a kind of mythological winged horse", "pln": ["(: cnet_isa_4d7404ddec (IsA pegasus mythological_winged_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pegboard is a kind of board", "pln": ["(: cnet_isa_f46648afac (IsA pegboard board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pegmatite is a kind of igneous rock", "pln": ["(: cnet_isa_a1ac7c71c8 (IsA pegmatite igneous_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pekinese is a kind of toy dog", "pln": ["(: cnet_isa_052eab7468 (IsA pekinese toy_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peking man is a kind of homo erectus", "pln": ["(: cnet_isa_7135017dea (IsA peking_man homo_erectus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pelagianism is a kind of heresy", "pln": ["(: cnet_isa_ba1f724ad6 (IsA pelagianism heresy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pelagianism is a kind of theological doctrine", "pln": ["(: cnet_isa_f65b5ed981 (IsA pelagianism theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pelagic bird is a kind of seabird", "pln": ["(: cnet_isa_713322bf9f (IsA pelagic_bird seabird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pelargonium is a kind of rosid dicot genus", "pln": ["(: cnet_isa_3e078ac1ae (IsA pelargonium rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "pelecaniformes is a kind of animal order", "pln": ["(: cnet_isa_b1dc2548ae (IsA pelecaniformes animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pelecanidae is a kind of bird family", "pln": ["(: cnet_isa_079246ddc2 (IsA pelecanidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pelecaniform seabird is a kind of seabird", "pln": ["(: cnet_isa_97f1dd8c88 (IsA pelecaniform_seabird seabird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pelecaniforme is a kind of animal order", "pln": ["(: cnet_isa_dcb0ad6ccb (IsA pelecaniforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pelecanoididae is a kind of bird family", "pln": ["(: cnet_isa_0833f229b5 (IsA pelecanoididae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pelecanus is a kind of bird genus", "pln": ["(: cnet_isa_bc2fd25c9c (IsA pelecanus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pelham is a kind of bit", "pln": ["(: cnet_isa_81a0b93f4c (IsA pelham bit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pelican is a kind of bird", "pln": ["(: cnet_isa_6b741b6c1e (IsA pelican bird) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pelican is a kind of seabird", "pln": ["(: cnet_isa_33d5c51794 (IsA pelican seabird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pelican is a kind of pelecaniform seabird", "pln": ["(: cnet_isa_422fd95350 (IsA pelican pelecaniform_seabird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pelican crossing is a kind of pedestrian crossing", "pln": ["(: cnet_isa_bbcff05b68 (IsA pelican_crossing pedestrian_crossing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pelisse is a kind of cape", "pln": ["(: cnet_isa_afc27dc143 (IsA pelisse cape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pellaea is a kind of fern genus", "pln": ["(: cnet_isa_a164f1ef88 (IsA pellaea fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pellagra is a kind of avitaminosis", "pln": ["(: cnet_isa_284cfdd956 (IsA pellagra avitaminosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pellet is a kind of ball", "pln": ["(: cnet_isa_59070b2805 (IsA pellet ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pellicle is a kind of investment", "pln": ["(: cnet_isa_26ce66380d (IsA pellicle investment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pellicularia is a kind of fungus genus", "pln": ["(: cnet_isa_77f5e9b77d (IsA pellicularia fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pellitory is a kind of herb", "pln": ["(: cnet_isa_7d4f92a819 (IsA pellitory herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pellitory of wall is a kind of herb", "pln": ["(: cnet_isa_099ddb70f5 (IsA pellitory_of_wall herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pellucidness is a kind of transparency", "pln": ["(: cnet_isa_005447be5f (IsA pellucidness transparency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pelobatidae is a kind of amphibian family", "pln": ["(: cnet_isa_827113834b (IsA pelobatidae amphibian_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peltandra is a kind of monocot genus", "pln": ["(: cnet_isa_6e1502aaab (IsA peltandra monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peltate leaf is a kind of simple leaf", "pln": ["(: cnet_isa_bac12f6da7 (IsA peltate_leaf simple_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pelter is a kind of thrower", "pln": ["(: cnet_isa_fc676bf67f (IsA pelter thrower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peludo is a kind of armadillo", "pln": ["(: cnet_isa_5e7e3ef0a4 (IsA peludo armadillo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pelvic cavity is a kind of cavity", "pln": ["(: cnet_isa_d7c75241c2 (IsA pelvic_cavity cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pelvic fin is a kind of fin", "pln": ["(: cnet_isa_233f8ccfd7 (IsA pelvic_fin fin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pelvic inflammatory disease is a kind of inflammatory disease", "pln": ["(: cnet_isa_1588b113d4 (IsA pelvic_inflammatory_disease inflammatory_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pelvimeter is a kind of measuring instrument", "pln": ["(: cnet_isa_1c94397751 (IsA pelvimeter measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pelvimetry is a kind of measurement", "pln": ["(: cnet_isa_1525458e30 (IsA pelvimetry measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pelvis is a kind of cavity", "pln": ["(: cnet_isa_0719ec3a5e (IsA pelvis cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pelvis is a kind of girdle", "pln": ["(: cnet_isa_4d033016cc (IsA pelvis girdle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pelycosaur is a kind of synapsid", "pln": ["(: cnet_isa_1de32c5158 (IsA pelycosaur synapsid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pelycosauria is a kind of animal order", "pln": ["(: cnet_isa_6ecc511f2b (IsA pelycosauria animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pembroke is a kind of corgi", "pln": ["(: cnet_isa_4618862492 (IsA pembroke corgi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pemmican is a kind of meat", "pln": ["(: cnet_isa_e32e9e9952 (IsA pemmican meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pempheridae is a kind of fish family", "pln": ["(: cnet_isa_c149031443 (IsA pempheridae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pemphigus is a kind of autoimmune disease", "pln": ["(: cnet_isa_441833c8fc (IsA pemphigus autoimmune_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pemphigus is a kind of skin disease", "pln": ["(: cnet_isa_6eefe46e4d (IsA pemphigus skin_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pen is a kind of object", "pln": ["(: cnet_isa_7edc2c6f32 (IsA pen object) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pen is a kind of swan", "pln": ["(: cnet_isa_38b252430b (IsA pen swan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pen is a kind of enclosure", "pln": ["(: cnet_isa_8643e768fb (IsA pen enclosure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pen is a kind of writing implement", "pln": ["(: cnet_isa_fe79c8eb36 (IsA pen writing_implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pen and ink is a kind of drawing", "pln": ["(: cnet_isa_32dbb72c4b (IsA pen_and_ink drawing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pen name is a kind of pseudonym", "pln": ["(: cnet_isa_cbe8802503 (IsA pen_name pseudonym) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pen pal is a kind of correspondent", "pln": ["(: cnet_isa_07a05292d3 (IsA pen_pal correspondent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penal code is a kind of legal code", "pln": ["(: cnet_isa_cb1978954c (IsA penal_code legal_code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penal colony is a kind of penal institution", "pln": ["(: cnet_isa_1b46d7a6be (IsA penal_colony penal_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "penal institution is a kind of institution", "pln": ["(: cnet_isa_1fdeabf36e (IsA penal_institution institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penalty is a kind of disadvantage", "pln": ["(: cnet_isa_d1862a9dc7 (IsA penalty disadvantage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penalty is a kind of handicap", "pln": ["(: cnet_isa_23a4795731 (IsA penalty handicap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penalty is a kind of payment", "pln": ["(: cnet_isa_b0d4e3dd3a (IsA penalty payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penalty box is a kind of bench", "pln": ["(: cnet_isa_067fa34c8a (IsA penalty_box bench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penance is a kind of punishment", "pln": ["(: cnet_isa_865ef059dc (IsA penance punishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penance is a kind of sacrament", "pln": ["(: cnet_isa_d0dfa3711a (IsA penance sacrament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pencil is a kind of cosmetic", "pln": ["(: cnet_isa_88a2385ad4 (IsA pencil cosmetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pencil is a kind of writing implement", "pln": ["(: cnet_isa_91f5118af1 (IsA pencil writing_implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pencil is a kind of figure", "pln": ["(: cnet_isa_22d666d03c (IsA pencil figure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pencil is a kind of graphite", "pln": ["(: cnet_isa_be1a0e8bd3 (IsA pencil graphite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pencil box is a kind of box", "pln": ["(: cnet_isa_ce12d06a07 (IsA pencil_box box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pencil cedar is a kind of juniper", "pln": ["(: cnet_isa_b6a0e1ebc7 (IsA pencil_cedar juniper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pencil cedar is a kind of red cedar", "pln": ["(: cnet_isa_bd3e04e604 (IsA pencil_cedar red_cedar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pencil sharpener is a kind of sharpener", "pln": ["(: cnet_isa_de812ab0ef (IsA pencil_sharpener sharpener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pendant is a kind of adornment", "pln": ["(: cnet_isa_958fbbc6aa (IsA pendant adornment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pendant earring is a kind of earring", "pln": ["(: cnet_isa_6529e16cde (IsA pendant_earring earring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pendragon is a kind of headman", "pln": ["(: cnet_isa_d5b7922f39 (IsA pendragon headman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pendulum is a kind of apparatus", "pln": ["(: cnet_isa_167440bc32 (IsA pendulum apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pendulum clock is a kind of clock", "pln": ["(: cnet_isa_e162339497 (IsA pendulum_clock clock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pendulum watch is a kind of watch", "pln": ["(: cnet_isa_85e6a0cb85 (IsA pendulum_watch watch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peneidae is a kind of arthropod family", "pln": ["(: cnet_isa_e06ed50b6d (IsA peneidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penelope is a kind of bird genus", "pln": ["(: cnet_isa_ac66a383da (IsA penelope bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peneplain is a kind of plain", "pln": ["(: cnet_isa_611696e892 (IsA peneplain plain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penetrability is a kind of quality", "pln": ["(: cnet_isa_83f5a93eed (IsA penetrability quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penetralium is a kind of inside", "pln": ["(: cnet_isa_d70d4567a3 (IsA penetralium inside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penetrating trauma is a kind of injury", "pln": ["(: cnet_isa_5d5a6dfb80 (IsA penetrating_trauma injury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "penetration is a kind of attack", "pln": ["(: cnet_isa_9dc30e93a4 (IsA penetration attack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penetration is a kind of entrance", "pln": ["(: cnet_isa_da2919421e (IsA penetration entrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penetration is a kind of sexual intercourse", "pln": ["(: cnet_isa_bf015e8c3a (IsA penetration sexual_intercourse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penetration is a kind of ability", "pln": ["(: cnet_isa_f958677780 (IsA penetration ability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "penetration is a kind of depth", "pln": ["(: cnet_isa_18fda00a68 (IsA penetration depth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penetration is a kind of perception", "pln": ["(: cnet_isa_484c54748c (IsA penetration perception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penetration bomb is a kind of bomb", "pln": ["(: cnet_isa_1ab6839a45 (IsA penetration_bomb bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penetrator is a kind of intruder", "pln": ["(: cnet_isa_fa80959311 (IsA penetrator intruder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peneus is a kind of arthropod genus", "pln": ["(: cnet_isa_0adbb40540 (IsA peneus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pengo is a kind of south central dravidian", "pln": ["(: cnet_isa_cc9258c204 (IsA pengo south_central_dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pengo is a kind of hungarian monetary unit", "pln": ["(: cnet_isa_d70cc0e4e4 (IsA pengo hungarian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penguin is a kind of sphenisciform seabird", "pln": ["(: cnet_isa_5ac946844a (IsA penguin sphenisciform_seabird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penguin is a kind of funny looking", "pln": ["(: cnet_isa_1d2b81b464 (IsA penguin funny_looking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penicillin is a kind of antibiotic", "pln": ["(: cnet_isa_b1dcb3acc2 (IsA penicillin antibiotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penicillin f is a kind of penicillin", "pln": ["(: cnet_isa_b007e8fda5 (IsA penicillin_f penicillin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penicillin g is a kind of penicillin", "pln": ["(: cnet_isa_1c1342f97c (IsA penicillin_g penicillin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "penicillin o is a kind of penicillin", "pln": ["(: cnet_isa_a03271bedf (IsA penicillin_o penicillin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penicillin resistant bacteria is a kind of bacteria", "pln": ["(: cnet_isa_8fcf7afd32 (IsA penicillin_resistant_bacteria bacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penicillin v is a kind of penicillin", "pln": ["(: cnet_isa_c5f4c161f7 (IsA penicillin_v penicillin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penicillinase is a kind of enzyme", "pln": ["(: cnet_isa_eb5ee44582 (IsA penicillinase enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penicillinase resistant antibiotic is a kind of penicillin", "pln": ["(: cnet_isa_bb26b73d8a (IsA penicillinase_resistant_antibiotic penicillin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penicillium is a kind of fungus genus", "pln": ["(: cnet_isa_cb52095b63 (IsA penicillium fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penile implant is a kind of implant", "pln": ["(: cnet_isa_be77f6b6b0 (IsA penile_implant implant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peninsula is a kind of land", "pln": ["(: cnet_isa_39a6346341 (IsA peninsula land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penis is a kind of sex organ", "pln": ["(: cnet_isa_088ff23a77 (IsA penis sex_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penis is a kind of erectile organ", "pln": ["(: cnet_isa_efb97f4358 (IsA penis erectile_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penis envy is a kind of envy", "pln": ["(: cnet_isa_d499445324 (IsA penis_envy envy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penitent is a kind of religionist", "pln": ["(: cnet_isa_b04d342fbf (IsA penitent religionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penitentiary is a kind of correctional institution", "pln": ["(: cnet_isa_d2b354ea70 (IsA penitentiary correctional_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penknife is a kind of pocketknife", "pln": ["(: cnet_isa_14e36f377c (IsA penknife pocketknife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penlight is a kind of flashlight", "pln": ["(: cnet_isa_dbdf75d266 (IsA penlight flashlight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pennant is a kind of flag", "pln": ["(: cnet_isa_979933eb09 (IsA pennant flag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pennant is a kind of award", "pln": ["(: cnet_isa_e907b2a81a (IsA pennant award) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pennatula is a kind of coelenterate genus", "pln": ["(: cnet_isa_e5284b12d8 (IsA pennatula coelenterate_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pennatulidae is a kind of coelenterate family", "pln": ["(: cnet_isa_d5c7cb096e (IsA pennatulidae coelenterate_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penne is a kind of pasta", "pln": ["(: cnet_isa_7643b3241f (IsA penne pasta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penni is a kind of finnish monetary unit", "pln": ["(: cnet_isa_9b350e9545 (IsA penni finnish_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pennisetum is a kind of monocot genus", "pln": ["(: cnet_isa_0228d8d664 (IsA pennisetum monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pennon is a kind of wing", "pln": ["(: cnet_isa_26c157a662 (IsA pennon wing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pennoncel is a kind of pennant", "pln": ["(: cnet_isa_c2a8654af1 (IsA pennoncel pennant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pennsylvania is a kind of state", "pln": ["(: cnet_isa_9a428d5734 (IsA pennsylvania state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pennsylvania dutch is a kind of german", "pln": ["(: cnet_isa_ca624ca66a (IsA pennsylvania_dutch german) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penny is a kind of coin", "pln": ["(: cnet_isa_d18b86aa01 (IsA penny coin) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penny is a kind of fractional monetary unit", "pln": ["(: cnet_isa_935bf783a5 (IsA penny fractional_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penny ante is a kind of deal", "pln": ["(: cnet_isa_bf3c2f2ffc (IsA penny_ante deal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penny ante is a kind of poker", "pln": ["(: cnet_isa_30fdc8f683 (IsA penny_ante poker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penny arcade is a kind of arcade", "pln": ["(: cnet_isa_a02ae3b85d (IsA penny_arcade arcade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penny pincher is a kind of hoarder", "pln": ["(: cnet_isa_6818bb8868 (IsA penny_pincher hoarder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penny stock is a kind of over counter stock", "pln": ["(: cnet_isa_3628466ceb (IsA penny_stock over_counter_stock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pennycress is a kind of weed", "pln": ["(: cnet_isa_7dd6322940 (IsA pennycress weed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pennyroyal is a kind of herb", "pln": ["(: cnet_isa_e9fafcd0bd (IsA pennyroyal herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pennyroyal is a kind of mint", "pln": ["(: cnet_isa_1704da9e92 (IsA pennyroyal mint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pennyroyal oil is a kind of oil", "pln": ["(: cnet_isa_684558f4e2 (IsA pennyroyal_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pennyweight is a kind of troy unit", "pln": ["(: cnet_isa_692e985f59 (IsA pennyweight troy_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pennywhistle is a kind of fipple flute", "pln": ["(: cnet_isa_f0a04688a0 (IsA pennywhistle fipple_flute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pennyworth is a kind of worth", "pln": ["(: cnet_isa_5d99215a94 (IsA pennyworth worth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "penobscot is a kind of algonquin", "pln": ["(: cnet_isa_6ace4e8986 (IsA penobscot algonquin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penologist is a kind of social scientist", "pln": ["(: cnet_isa_12391aa8e5 (IsA penologist social_scientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penology is a kind of criminology", "pln": ["(: cnet_isa_a3eee8a939 (IsA penology criminology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penpusher is a kind of clerk", "pln": ["(: cnet_isa_2d7639a190 (IsA penpusher clerk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pension is a kind of regular payment", "pln": ["(: cnet_isa_26fb29feee (IsA pension regular_payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pension fund is a kind of nondepository financial institution", "pln": ["(: cnet_isa_dd2af92fd9 (IsA pension_fund nondepository_financial_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pension fund is a kind of fund", "pln": ["(: cnet_isa_8dc03651aa (IsA pension_fund fund) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pension plan is a kind of plan", "pln": ["(: cnet_isa_6320bf753d (IsA pension_plan plan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pensioner is a kind of beneficiary", "pln": ["(: cnet_isa_28681710af (IsA pensioner beneficiary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pensiveness is a kind of thoughtfulness", "pln": ["(: cnet_isa_8f82402175 (IsA pensiveness thoughtfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pensiveness is a kind of melancholy", "pln": ["(: cnet_isa_af439acebd (IsA pensiveness melancholy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penstemon is a kind of asterid dicot genus", "pln": ["(: cnet_isa_f97d8b1a4c (IsA penstemon asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pentacle is a kind of star", "pln": ["(: cnet_isa_c7be7c18f5 (IsA pentacle star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pentagon is a kind of closed shape with five side", "pln": ["(: cnet_isa_c77060066c (IsA pentagon closed_shape_with_five_side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pentagon is a kind of bureaucracy", "pln": ["(: cnet_isa_6af97c35e5 (IsA pentagon bureaucracy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pentagon is a kind of polygon", "pln": ["(: cnet_isa_2dc4d9b87d (IsA pentagon polygon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pentahedron is a kind of polyhedron", "pln": ["(: cnet_isa_e827d55548 (IsA pentahedron polyhedron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pentail is a kind of tree shrew", "pln": ["(: cnet_isa_ebfafbb5a8 (IsA pentail tree_shrew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pentameter is a kind of verse", "pln": ["(: cnet_isa_41436699f1 (IsA pentameter verse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pentastomida is a kind of phylum", "pln": ["(: cnet_isa_e224505ae8 (IsA pentastomida phylum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pentathlete is a kind of athlete", "pln": ["(: cnet_isa_2189e74a8f (IsA pentathlete athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pentathlon is a kind of athletic contest", "pln": ["(: cnet_isa_e454c9fd2f (IsA pentathlon athletic_contest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pentatonic scale is a kind of gapped scale", "pln": ["(: cnet_isa_fdddf69596 (IsA pentatonic_scale gapped_scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pentecost is a kind of quarter day", "pln": ["(: cnet_isa_f768097572 (IsA pentecost quarter_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pentecostal religion is a kind of protestant church", "pln": ["(: cnet_isa_da68555df7 (IsA pentecostal_religion protestant_church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pentecostalism is a kind of protestantism", "pln": ["(: cnet_isa_a3441cc847 (IsA pentecostalism protestantism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pentecostalist is a kind of protestant", "pln": ["(: cnet_isa_20166a436a (IsA pentecostalist protestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penthouse is a kind of apartment", "pln": ["(: cnet_isa_3815c81fbf (IsA penthouse apartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pentimento is a kind of painting", "pln": ["(: cnet_isa_25b00a64e2 (IsA pentimento painting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pentlandite is a kind of mineral", "pln": ["(: cnet_isa_26d840568e (IsA pentlandite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pentode is a kind of tube", "pln": ["(: cnet_isa_5a36284eaf (IsA pentode tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pentose is a kind of monosaccharide", "pln": ["(: cnet_isa_db699d1b89 (IsA pentose monosaccharide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pentoxide is a kind of oxide", "pln": ["(: cnet_isa_7556d31c7b (IsA pentoxide oxide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pentylenetetrazol is a kind of medicine", "pln": ["(: cnet_isa_6478ca5f99 (IsA pentylenetetrazol medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penuche is a kind of fudge", "pln": ["(: cnet_isa_edb2df7064 (IsA penuche fudge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penult is a kind of syllable", "pln": ["(: cnet_isa_52c5fc859f (IsA penult syllable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penumbra is a kind of shadow", "pln": ["(: cnet_isa_5e146b2f1c (IsA penumbra shadow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penuriousness is a kind of stinginess", "pln": ["(: cnet_isa_7ccd34fa31 (IsA penuriousness stinginess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penutian is a kind of amerind", "pln": ["(: cnet_isa_637ea93319 (IsA penutian amerind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "penutian is a kind of native american", "pln": ["(: cnet_isa_68b1c07b0f (IsA penutian native_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peonage is a kind of practice", "pln": ["(: cnet_isa_d9910d8eae (IsA peonage practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peonage is a kind of subjugation", "pln": ["(: cnet_isa_1c0a298ea4 (IsA peonage subjugation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peony is a kind of flower", "pln": ["(: cnet_isa_0b576fa021 (IsA peony flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people s party is a kind of party", "pln": ["(: cnet_isa_833acc1f5c (IsA people_s_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is a kind of bisexual", "pln": ["(: cnet_isa_b52c30f628 (IsA people bisexual) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is a kind of christian", "pln": ["(: cnet_isa_3eace59ae2 (IsA people christian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is a kind of democrat", "pln": ["(: cnet_isa_92184ad868 (IsA people democrat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is a kind of janitor", "pln": ["(: cnet_isa_f2aece4290 (IsA people janitor) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is a kind of jerk", "pln": ["(: cnet_isa_aa6240e17e (IsA people jerk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is a kind of many person", "pln": ["(: cnet_isa_cdf9622d22 (IsA people many_person) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is a kind of member of human race", "pln": ["(: cnet_isa_0cd2449444 (IsA people member_of_human_race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is a kind of not", "pln": ["(: cnet_isa_a222751076 (IsA people not) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is a kind of person", "pln": ["(: cnet_isa_e1e369bd69 (IsA people person) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is a kind of family", "pln": ["(: cnet_isa_5da1cd6d72 (IsA people family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is a kind of group", "pln": ["(: cnet_isa_6aca2e7e19 (IsA people group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people say dog is a kind of man s best friend", "pln": ["(: cnet_isa_d56bcfabd5 (IsA people_say_dog man_s_best_friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people smuggling is a kind of major international issue", "pln": ["(: cnet_isa_b64ef3437a (IsA people_smuggling major_international_issue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "people is a kind of people", "pln": ["(: cnet_isa_84bf5e9a71 (IsA people people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pep is a kind of liveliness", "pln": ["(: cnet_isa_66a35654b9 (IsA pep liveliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pep rally is a kind of rally", "pln": ["(: cnet_isa_ccf18ac6ba (IsA pep_rally rally) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pep talk is a kind of exhortation", "pln": ["(: cnet_isa_9c0ea5175b (IsA pep_talk exhortation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peperomia is a kind of herb", "pln": ["(: cnet_isa_9129b4453d (IsA peperomia herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peplo is a kind of garment", "pln": ["(: cnet_isa_15ab1371af (IsA peplo garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peplum is a kind of frill", "pln": ["(: cnet_isa_e29095ace9 (IsA peplum frill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pepper is a kind of spice", "pln": ["(: cnet_isa_b3e69adf0b (IsA pepper spice) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pepper is a kind of flavorer", "pln": ["(: cnet_isa_359b3a7c96 (IsA pepper flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pepper is a kind of solanaceous vegetable", "pln": ["(: cnet_isa_0900875600 (IsA pepper solanaceous_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pepper is a kind of true pepper", "pln": ["(: cnet_isa_2a293b73b3 (IsA pepper true_pepper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pepper and salt is a kind of fabric", "pln": ["(: cnet_isa_2f48996642 (IsA pepper_and_salt fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pepper mill is a kind of mill", "pln": ["(: cnet_isa_ac20e5b8fd (IsA pepper_mill mill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pepper pot is a kind of soup", "pln": ["(: cnet_isa_23e71ca5e5 (IsA pepper_pot soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pepper sauce is a kind of sauce", "pln": ["(: cnet_isa_fa6105ebf1 (IsA pepper_sauce sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pepper shaker is a kind of shaker", "pln": ["(: cnet_isa_c5fc50a44d (IsA pepper_shaker shaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pepper shrub is a kind of shrub", "pln": ["(: cnet_isa_94370f6ef9 (IsA pepper_shrub shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pepper spray is a kind of aerosol", "pln": ["(: cnet_isa_a20b0b4ae4 (IsA pepper_spray aerosol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pepper spray is a kind of chemical weapon", "pln": ["(: cnet_isa_3ab1206ac4 (IsA pepper_spray chemical_weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pepper steak is a kind of dish", "pln": ["(: cnet_isa_80f5972e64 (IsA pepper_steak dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pepper tree is a kind of tree", "pln": ["(: cnet_isa_2f35b2769b (IsA pepper_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "peppercorn rent is a kind of rent", "pln": ["(: cnet_isa_98c2a39b76 (IsA peppercorn_rent rent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peppermint is a kind of plant", "pln": ["(: cnet_isa_d72b20b046 (IsA peppermint plant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peppermint is a kind of mint", "pln": ["(: cnet_isa_e4ec48b488 (IsA peppermint mint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peppermint oil is a kind of flavorer", "pln": ["(: cnet_isa_e7a60786f9 (IsA peppermint_oil flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peppermint patty is a kind of patty", "pln": ["(: cnet_isa_d1c378beee (IsA peppermint_patty patty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pepperoni is a kind of sausage", "pln": ["(: cnet_isa_01c28f37f3 (IsA pepperoni sausage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pepperoni pizza is a kind of pizza", "pln": ["(: cnet_isa_f691daba2c (IsA pepperoni_pizza pizza) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pepsi is a kind of beverage", "pln": ["(: cnet_isa_4a87be3f8c (IsA pepsi beverage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pepsi is a kind of drink", "pln": ["(: cnet_isa_0d767b17ba (IsA pepsi drink) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pepsi is a kind of soda", "pln": ["(: cnet_isa_3f77cd37ef (IsA pepsi soda) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pepsi is a kind of soft drink", "pln": ["(: cnet_isa_0ebe0307c1 (IsA pepsi soft_drink) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pepsi is a kind of cola", "pln": ["(: cnet_isa_f671220659 (IsA pepsi cola) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pepsin is a kind of enzyme", "pln": ["(: cnet_isa_c57275b14b (IsA pepsin enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pepsinogen is a kind of enzyme", "pln": ["(: cnet_isa_39f87e7cc3 (IsA pepsinogen enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "peptic ulcer is a kind of ulcer", "pln": ["(: cnet_isa_6ee9487b96 (IsA peptic_ulcer ulcer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peptide is a kind of amide", "pln": ["(: cnet_isa_8890784cae (IsA peptide amide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peptide bond is a kind of chemical bond", "pln": ["(: cnet_isa_99ed98f455 (IsA peptide_bond chemical_bond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peptization is a kind of chemical process", "pln": ["(: cnet_isa_2b2ed70d0a (IsA peptization chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peptone is a kind of organic compound", "pln": ["(: cnet_isa_358a0fd802 (IsA peptone organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "per capita income is a kind of income", "pln": ["(: cnet_isa_d61487591c (IsA per_capita_income income) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "per diem is a kind of allowance", "pln": ["(: cnet_isa_c9a703bfb9 (IsA per_diem allowance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peradventure is a kind of doubt", "pln": ["(: cnet_isa_fb5ca03254 (IsA peradventure doubt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "perambulation is a kind of walk", "pln": ["(: cnet_isa_2318272f13 (IsA perambulation walk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "peramelidae is a kind of mammal family", "pln": ["(: cnet_isa_9712bd0620 (IsA peramelidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perboric acid is a kind of boric acid", "pln": ["(: cnet_isa_f75bde857c (IsA perboric_acid boric_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perca is a kind of fish genus", "pln": ["(: cnet_isa_867b12b240 (IsA perca fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "percale is a kind of fabric", "pln": ["(: cnet_isa_3f4a8ccf0f (IsA percale fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perceiver is a kind of person", "pln": ["(: cnet_isa_e827e4a105 (IsA perceiver person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "percent sign is a kind of character", "pln": ["(: cnet_isa_087f704e89 (IsA percent_sign character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "percentage is a kind of proportion", "pln": ["(: cnet_isa_1740864bf7 (IsA percentage proportion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "percentile is a kind of mark", "pln": ["(: cnet_isa_65935719bf (IsA percentile mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "percept is a kind of representation", "pln": ["(: cnet_isa_17e679362a (IsA percept representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perceptibility is a kind of physical property", "pln": ["(: cnet_isa_11fedf86fc (IsA perceptibility physical_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perception is a kind of basic cognitive process", "pln": ["(: cnet_isa_40cd4a5724 (IsA perception basic_cognitive_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perception is a kind of cognition", "pln": ["(: cnet_isa_cd2b54f888 (IsA perception cognition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perception is a kind of conceptualization", "pln": ["(: cnet_isa_1b1a25c550 (IsA perception conceptualization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perceptiveness is a kind of sensitivity", "pln": ["(: cnet_isa_82da2e7168 (IsA perceptiveness sensitivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perch is a kind of percoid fish", "pln": ["(: cnet_isa_efafd0f199 (IsA perch percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perch is a kind of support", "pln": ["(: cnet_isa_01d4911f05 (IsA perch support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perch is a kind of freshwater fish", "pln": ["(: cnet_isa_8e4eadd227 (IsA perch freshwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perch is a kind of seat", "pln": ["(: cnet_isa_2922f81e69 (IsA perch seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perch is a kind of area unit", "pln": ["(: cnet_isa_8b30eb598a (IsA perch area_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "perch is a kind of linear unit", "pln": ["(: cnet_isa_c0b17de9aa (IsA perch linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "percher is a kind of person", "pln": ["(: cnet_isa_4209ae9645 (IsA percher person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "percheron is a kind of draft horse", "pln": ["(: cnet_isa_f8c81bef3f (IsA percheron draft_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "perchlorate is a kind of salt", "pln": ["(: cnet_isa_b5f4542175 (IsA perchlorate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perchloric acid is a kind of acid", "pln": ["(: cnet_isa_40f56ed4a9 (IsA perchloric_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perchloride is a kind of chloride", "pln": ["(: cnet_isa_9445e94a2c (IsA perchloride chloride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "percidae is a kind of fish family", "pln": ["(: cnet_isa_cffec11383 (IsA percidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perciforme is a kind of animal order", "pln": ["(: cnet_isa_b60513d09e (IsA perciforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "percina is a kind of fish genus", "pln": ["(: cnet_isa_5ac5b68b0e (IsA percina fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "percoid fish is a kind of spiny finned fish", "pln": ["(: cnet_isa_c58ab6250d (IsA percoid_fish spiny_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "percoidea is a kind of animal order", "pln": ["(: cnet_isa_4edc9d1ba5 (IsA percoidea animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "percolate is a kind of filtrate", "pln": ["(: cnet_isa_6e3c1a5ec9 (IsA percolate filtrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "percolation is a kind of cooking", "pln": ["(: cnet_isa_1f5ceac0a9 (IsA percolation cooking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "percolation is a kind of filtration", "pln": ["(: cnet_isa_8bd79cb13c (IsA percolation filtration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "percolator is a kind of coffeepot", "pln": ["(: cnet_isa_a6e61de816 (IsA percolator coffeepot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "percophidae is a kind of fish family", "pln": ["(: cnet_isa_2c262eeac9 (IsA percophidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "percussion is a kind of auscultation", "pln": ["(: cnet_isa_b3631343b4 (IsA percussion auscultation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "percussion is a kind of detonation", "pln": ["(: cnet_isa_efe760b45f (IsA percussion detonation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "percussion is a kind of music", "pln": ["(: cnet_isa_e446b6212f (IsA percussion music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "percussion cap is a kind of detonator", "pln": ["(: cnet_isa_2a82c3b8a2 (IsA percussion_cap detonator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "percussion instrument is a kind of music instrument", "pln": ["(: cnet_isa_9d06e2a5f5 (IsA percussion_instrument music_instrument) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "percussion instrument is a kind of musical instrument", "pln": ["(: cnet_isa_45a8d93b2e (IsA percussion_instrument musical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "percussion section is a kind of section", "pln": ["(: cnet_isa_ed64e6d9dd (IsA percussion_section section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "percussionist is a kind of musician", "pln": ["(: cnet_isa_dc47567071 (IsA percussionist musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perdicidae is a kind of bird family", "pln": ["(: cnet_isa_c21739b815 (IsA perdicidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perdix is a kind of bird genus", "pln": ["(: cnet_isa_1de409dedd (IsA perdix bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perdurability is a kind of permanence", "pln": ["(: cnet_isa_36ed220ee1 (IsA perdurability permanence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pere david s deer is a kind of deer", "pln": ["(: cnet_isa_b8314e6406 (IsA pere_david_s_deer deer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peregrination is a kind of travel", "pln": ["(: cnet_isa_c9eb4e01f2 (IsA peregrination travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peregrine is a kind of falcon", "pln": ["(: cnet_isa_f8b30d7316 (IsA peregrine falcon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perennation is a kind of organic process", "pln": ["(: cnet_isa_0a5412308f (IsA perennation organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perennial is a kind of plant", "pln": ["(: cnet_isa_ff5e4c752d (IsA perennial plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perennial ryegrass is a kind of rye grass", "pln": ["(: cnet_isa_2d8a488bf2 (IsA perennial_ryegrass rye_grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perennial salt marsh aster is a kind of aster", "pln": ["(: cnet_isa_a7e2b8f96c (IsA perennial_salt_marsh_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pereskia is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_76b7bba127 (IsA pereskia caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perestroika is a kind of economic policy", "pln": ["(: cnet_isa_2dad9bd8e0 (IsA perestroika economic_policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perfect game is a kind of baseball", "pln": ["(: cnet_isa_d1bab18b97 (IsA perfect_game baseball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perfecter is a kind of skilled worker", "pln": ["(: cnet_isa_edd1b5581d (IsA perfecter skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perfectibility is a kind of capability", "pln": ["(: cnet_isa_2a0b803cb3 (IsA perfectibility capability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perfection is a kind of improvement", "pln": ["(: cnet_isa_25b2f0df37 (IsA perfection improvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perfection is a kind of state", "pln": ["(: cnet_isa_c469d1eb4a (IsA perfection state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perfectionism is a kind of disposition", "pln": ["(: cnet_isa_24d6bbe76e (IsA perfectionism disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perfectionist is a kind of compulsive", "pln": ["(: cnet_isa_16b4398adf (IsA perfectionist compulsive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perfective is a kind of aspect", "pln": ["(: cnet_isa_35d8a434ed (IsA perfective aspect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perfective is a kind of tense", "pln": ["(: cnet_isa_8c32a0e0bb (IsA perfective tense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perfidy is a kind of disloyalty", "pln": ["(: cnet_isa_03f0e1aa79 (IsA perfidy disloyalty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perfluorocarbon is a kind of fluorocarbon", "pln": ["(: cnet_isa_aab12cf168 (IsA perfluorocarbon fluorocarbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perfluorocarbon is a kind of greenhouse gas", "pln": ["(: cnet_isa_b652a2fedd (IsA perfluorocarbon greenhouse_gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "perfoliate leaf is a kind of simple leaf", "pln": ["(: cnet_isa_6704b2ccb3 (IsA perfoliate_leaf simple_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perforated eardrum is a kind of eardrum", "pln": ["(: cnet_isa_dddddd1930 (IsA perforated_eardrum eardrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "perforating vein is a kind of vein", "pln": ["(: cnet_isa_142d1ec6fb (IsA perforating_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perforation is a kind of puncture", "pln": ["(: cnet_isa_e9363278ed (IsA perforation puncture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perforation is a kind of hole", "pln": ["(: cnet_isa_7496b02388 (IsA perforation hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "performance is a kind of accomplishment", "pln": ["(: cnet_isa_2f5c84b903 (IsA performance accomplishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "performance is a kind of action", "pln": ["(: cnet_isa_7fcf18805c (IsA performance action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "performance is a kind of presentation", "pln": ["(: cnet_isa_3cb4de42ba (IsA performance presentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "performance is a kind of show", "pln": ["(: cnet_isa_73b7affc07 (IsA performance show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "performance bond is a kind of bond", "pln": ["(: cnet_isa_1ab5701c51 (IsA performance_bond bond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "performer is a kind of entertainer", "pln": ["(: cnet_isa_0edc468759 (IsA performer entertainer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "performing art is a kind of humanistic discipline", "pln": ["(: cnet_isa_ad82f006c9 (IsA performing_art humanistic_discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "performing surgery is a kind of activity", "pln": ["(: cnet_isa_d00a3e3192 (IsA performing_surgery activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perfume is a kind of toiletry", "pln": ["(: cnet_isa_d127591da6 (IsA perfume toiletry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perfumer is a kind of maker", "pln": ["(: cnet_isa_80cf268135 (IsA perfumer maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perfumery is a kind of art", "pln": ["(: cnet_isa_a641f0ab32 (IsA perfumery art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perfumery is a kind of establishment", "pln": ["(: cnet_isa_42b17caffd (IsA perfumery establishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "perfumery is a kind of perfume", "pln": ["(: cnet_isa_8b451924ca (IsA perfumery perfume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perfumery is a kind of shop", "pln": ["(: cnet_isa_3da7c29379 (IsA perfumery shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perfusion is a kind of insertion", "pln": ["(: cnet_isa_6eea2ca799 (IsA perfusion insertion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peri is a kind of spirit", "pln": ["(: cnet_isa_60dfcd0757 (IsA peri spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "peri is a kind of girl", "pln": ["(: cnet_isa_c6c11aa2f7 (IsA peri girl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "perianth is a kind of covering", "pln": ["(: cnet_isa_ebfd376386 (IsA perianth covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perianth is a kind of plant organ", "pln": ["(: cnet_isa_252be0d9c2 (IsA perianth plant_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "periapsis is a kind of celestial point", "pln": ["(: cnet_isa_6900a8c95c (IsA periapsis celestial_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "periarterial plexus is a kind of nerve plexus", "pln": ["(: cnet_isa_82f9a414a5 (IsA periarterial_plexus nerve_plexus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "periarteritis is a kind of arteritis", "pln": ["(: cnet_isa_e4346595af (IsA periarteritis arteritis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "periarteritis nodosa is a kind of disease", "pln": ["(: cnet_isa_aafb4669b0 (IsA periarteritis_nodosa disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pericallis is a kind of asterid dicot genus", "pln": ["(: cnet_isa_6dc3f7e780 (IsA pericallis asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pericardial cavity is a kind of cavity", "pln": ["(: cnet_isa_6f0c814a92 (IsA pericardial_cavity cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pericardial sac is a kind of sac", "pln": ["(: cnet_isa_3fa9f3b934 (IsA pericardial_sac sac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pericardial vein is a kind of vein", "pln": ["(: cnet_isa_c6bab2f4e3 (IsA pericardial_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pericarditis is a kind of carditis", "pln": ["(: cnet_isa_ce751f1f6c (IsA pericarditis carditis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pericardium is a kind of serous membrane", "pln": ["(: cnet_isa_953e280b59 (IsA pericardium serous_membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pericarp is a kind of covering", "pln": ["(: cnet_isa_8785ed2daa (IsA pericarp covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pericementoclasia is a kind of pyorrhea", "pln": ["(: cnet_isa_4e1569737a (IsA pericementoclasia pyorrhea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "periclase is a kind of mineral", "pln": ["(: cnet_isa_0939777291 (IsA periclase mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peridinian is a kind of dinoflagellate", "pln": ["(: cnet_isa_085e36bbb0 (IsA peridinian dinoflagellate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peridiniidae is a kind of protoctist family", "pln": ["(: cnet_isa_7209802c77 (IsA peridiniidae protoctist_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peridinium is a kind of protoctist genus", "pln": ["(: cnet_isa_90225604a2 (IsA peridinium protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peridium is a kind of covering", "pln": ["(: cnet_isa_7a187a84d8 (IsA peridium covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peridot is a kind of chrysolite", "pln": ["(: cnet_isa_0f276f8a2d (IsA peridot chrysolite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peridot is a kind of transparent gem", "pln": ["(: cnet_isa_1ba636129e (IsA peridot transparent_gem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peridotite is a kind of igneous rock", "pln": ["(: cnet_isa_3f7f100e15 (IsA peridotite igneous_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perigee is a kind of periapsis", "pln": ["(: cnet_isa_95f80318be (IsA perigee periapsis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perigon is a kind of angle", "pln": ["(: cnet_isa_6d4f58ca4c (IsA perigon angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perihelion is a kind of periapsis", "pln": ["(: cnet_isa_9f32459efa (IsA perihelion periapsis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "perijove is a kind of periapsis", "pln": ["(: cnet_isa_c5c7873541 (IsA perijove periapsis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perilla is a kind of asterid dicot genus", "pln": ["(: cnet_isa_331ec55621 (IsA perilla asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perilymph is a kind of liquid body substance", "pln": ["(: cnet_isa_ce4a06513a (IsA perilymph liquid_body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "perimeter is a kind of line", "pln": ["(: cnet_isa_50ac50dd63 (IsA perimeter line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "perimysium is a kind of connective tissue", "pln": ["(: cnet_isa_f7ca6ae53b (IsA perimysium connective_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perinatologist is a kind of obstetrician", "pln": ["(: cnet_isa_cde9a8a82f (IsA perinatologist obstetrician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perinatology is a kind of obstetric", "pln": ["(: cnet_isa_5db8499acc (IsA perinatology obstetric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perineal artery is a kind of artery", "pln": ["(: cnet_isa_da936761b8 (IsA perineal_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perineotomy is a kind of incision", "pln": ["(: cnet_isa_5035811bf8 (IsA perineotomy incision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "perineum is a kind of area", "pln": ["(: cnet_isa_0ec6f20130 (IsA perineum area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perineurium is a kind of connective tissue", "pln": ["(: cnet_isa_53f506570e (IsA perineurium connective_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "period is a kind of punctuation", "pln": ["(: cnet_isa_7ada5eb63a (IsA period punctuation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "period is a kind of part", "pln": ["(: cnet_isa_249c4159c7 (IsA period part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "period is a kind of end", "pln": ["(: cnet_isa_da81b72160 (IsA period end) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "period is a kind of era", "pln": ["(: cnet_isa_3a32183fa1 (IsA period era) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "period is a kind of geological time", "pln": ["(: cnet_isa_755780a523 (IsA period geological_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "period is a kind of time interval", "pln": ["(: cnet_isa_b6e3651e1e (IsA period time_interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "period piece is a kind of work of art", "pln": ["(: cnet_isa_63905172ea (IsA period_piece work_of_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "periodic acid is a kind of oxyacid", "pln": ["(: cnet_isa_82bec49c46 (IsA periodic_acid oxyacid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "periodic apnea of newborn is a kind of apnea", "pln": ["(: cnet_isa_8ba46952ca (IsA periodic_apnea_of_newborn apnea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "periodic breathing is a kind of breathing", "pln": ["(: cnet_isa_1e513365ea (IsA periodic_breathing breathing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "periodic edema is a kind of edema", "pln": ["(: cnet_isa_bf685eceaf (IsA periodic_edema edema) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "periodic event is a kind of happening", "pln": ["(: cnet_isa_dc2e63c555 (IsA periodic_event happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "periodic law is a kind of law", "pln": ["(: cnet_isa_98d03e2487 (IsA periodic_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "periodic motion is a kind of movement", "pln": ["(: cnet_isa_a29c7353fa (IsA periodic_motion movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "periodic sentence is a kind of complex sentence", "pln": ["(: cnet_isa_7eec4ce961 (IsA periodic_sentence complex_sentence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "periodic table is a kind of table", "pln": ["(: cnet_isa_36da65115f (IsA periodic_table table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "periodical is a kind of publication", "pln": ["(: cnet_isa_3154167c97 (IsA periodical publication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "periodontal disease is a kind of disease", "pln": ["(: cnet_isa_582180de87 (IsA periodontal_disease disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "periodontic is a kind of dentistry", "pln": ["(: cnet_isa_ecbf6e0ad4 (IsA periodontic dentistry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "periodontist is a kind of dentist", "pln": ["(: cnet_isa_760657ce74 (IsA periodontist dentist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "periophthalmus is a kind of fish genus", "pln": ["(: cnet_isa_6a47703b87 (IsA periophthalmus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "periosteum is a kind of membrane", "pln": ["(: cnet_isa_c4ab89266a (IsA periosteum membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peripatetic is a kind of pedestrian", "pln": ["(: cnet_isa_04842d7b81 (IsA peripatetic pedestrian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peripatidae is a kind of arthropod family", "pln": ["(: cnet_isa_c4357e2ec9 (IsA peripatidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peripatopsidae is a kind of arthropod family", "pln": ["(: cnet_isa_9de31b8d3c (IsA peripatopsidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peripatopsis is a kind of arthropod genus", "pln": ["(: cnet_isa_2842f882c6 (IsA peripatopsis arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "peripeteia is a kind of surprise", "pln": ["(: cnet_isa_fbebf1d532 (IsA peripeteia surprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peripheral is a kind of electronic equipment", "pln": ["(: cnet_isa_4b8e3e88b3 (IsA peripheral electronic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peripheral nervous system is a kind of system", "pln": ["(: cnet_isa_74be14a003 (IsA peripheral_nervous_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peripheral vision is a kind of sight", "pln": ["(: cnet_isa_4d6ac95d71 (IsA peripheral_vision sight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "periphery is a kind of boundary", "pln": ["(: cnet_isa_5e8e2a2926 (IsA periphery boundary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "periplaneta is a kind of arthropod genus", "pln": ["(: cnet_isa_9a45e35e62 (IsA periplaneta arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "perishables is a kind of foodstuff", "pln": ["(: cnet_isa_999573c3c9 (IsA perishables foodstuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "periploca is a kind of dicot genus", "pln": ["(: cnet_isa_c9099cb3fd (IsA periploca dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "periscope is a kind of optical instrument", "pln": ["(: cnet_isa_2028779bb3 (IsA periscope optical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "periselene is a kind of periapsis", "pln": ["(: cnet_isa_972c9b202d (IsA periselene periapsis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perishableness is a kind of unsatisfactoriness", "pln": ["(: cnet_isa_9776b16265 (IsA perishableness unsatisfactoriness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perishable is a kind of foodstuff", "pln": ["(: cnet_isa_57c9de39ce (IsA perishable foodstuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perisher is a kind of cad", "pln": ["(: cnet_isa_d47bea9242 (IsA perisher cad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perisoreus is a kind of bird genus", "pln": ["(: cnet_isa_ad2407f1e7 (IsA perisoreus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perisperm is a kind of plant tissue", "pln": ["(: cnet_isa_560ffb5233 (IsA perisperm plant_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perissodactyla is a kind of animal order", "pln": ["(: cnet_isa_95702830f9 (IsA perissodactyla animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peristalsis is a kind of bodily process", "pln": ["(: cnet_isa_41d1e32e0f (IsA peristalsis bodily_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peristediinae is a kind of fish family", "pln": ["(: cnet_isa_13191f1414 (IsA peristediinae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peristedion is a kind of fish genus", "pln": ["(: cnet_isa_c053c18827 (IsA peristedion fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peristome is a kind of structure", "pln": ["(: cnet_isa_c84f442197 (IsA peristome structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "peristome is a kind of plant process", "pln": ["(: cnet_isa_70d55ba012 (IsA peristome plant_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peristyle is a kind of colonnade", "pln": ["(: cnet_isa_69c2f29e16 (IsA peristyle colonnade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perithecium is a kind of ascocarp", "pln": ["(: cnet_isa_2ffccbf4ea (IsA perithecium ascocarp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perithelium is a kind of membrane", "pln": ["(: cnet_isa_133e6800d7 (IsA perithelium membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "peritoneal cavity is a kind of cavity", "pln": ["(: cnet_isa_3c9407d8e2 (IsA peritoneal_cavity cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peritoneum is a kind of serous membrane", "pln": ["(: cnet_isa_86347348ff (IsA peritoneum serous_membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peritonitis is a kind of inflammation", "pln": ["(: cnet_isa_b815a73b66 (IsA peritonitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "periwig is a kind of wig", "pln": ["(: cnet_isa_b23762538e (IsA periwig wig) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "periwinkle is a kind of seasnail", "pln": ["(: cnet_isa_c8f6bacc40 (IsA periwinkle seasnail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "periwinkle is a kind of seafood", "pln": ["(: cnet_isa_3f1a3643b6 (IsA periwinkle seafood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "periwinkle is a kind of herb", "pln": ["(: cnet_isa_6efcdaa33d (IsA periwinkle herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "periwinkle is a kind of subshrub", "pln": ["(: cnet_isa_96c4d2ab73 (IsA periwinkle subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "periwinkle plant derivative is a kind of antineoplastic", "pln": ["(: cnet_isa_ae6e2db996 (IsA periwinkle_plant_derivative antineoplastic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perjurer is a kind of liar", "pln": ["(: cnet_isa_bcb201cdd7 (IsA perjurer liar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perjury is a kind of misdemeanor", "pln": ["(: cnet_isa_e8c38ba43b (IsA perjury misdemeanor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perl is a kind of programming language", "pln": ["(: cnet_isa_8c0a855f44 (IsA perl programming_language) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "permafrost is a kind of land", "pln": ["(: cnet_isa_ad2f49bf36 (IsA permafrost land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "permalloy is a kind of nickel base alloy", "pln": ["(: cnet_isa_a3c855b4be (IsA permalloy nickel_base_alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "permanence is a kind of duration", "pln": ["(: cnet_isa_52a517f0e8 (IsA permanence duration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "permanent injunction is a kind of injunction", "pln": ["(: cnet_isa_2d4960f612 (IsA permanent_injunction injunction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "permanent magnet is a kind of magnet", "pln": ["(: cnet_isa_6aaa1b8ae5 (IsA permanent_magnet magnet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "permanent press is a kind of fabric", "pln": ["(: cnet_isa_542e16b198 (IsA permanent_press fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "permanent tooth is a kind of tooth", "pln": ["(: cnet_isa_282c85143e (IsA permanent_tooth tooth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "permanent wave is a kind of wave", "pln": ["(: cnet_isa_b3b33f8e8a (IsA permanent_wave wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "permanganate is a kind of salt", "pln": ["(: cnet_isa_30a132b247 (IsA permanganate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "permanganic acid is a kind of acid", "pln": ["(: cnet_isa_1c5bcb903c (IsA permanganic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "permeability is a kind of porosity", "pln": ["(: cnet_isa_7b9f8f37de (IsA permeability porosity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "permeation is a kind of diffusion", "pln": ["(: cnet_isa_d69a310298 (IsA permeation diffusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "permic is a kind of fennic", "pln": ["(: cnet_isa_741f50a25f (IsA permic fennic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "permissibility is a kind of admissibility", "pln": ["(: cnet_isa_3742db5d91 (IsA permissibility admissibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "permission is a kind of approval", "pln": ["(: cnet_isa_81b2196bca (IsA permission approval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "permissiveness is a kind of disposition", "pln": ["(: cnet_isa_c1098d791e (IsA permissiveness disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "permit is a kind of pompano", "pln": ["(: cnet_isa_c3e29e8095 (IsA permit pompano) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "permutability is a kind of exchangeability", "pln": ["(: cnet_isa_a10266ae4d (IsA permutability exchangeability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "permutation is a kind of mathematical process", "pln": ["(: cnet_isa_48d8ed7092 (IsA permutation mathematical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "permutation is a kind of reordering", "pln": ["(: cnet_isa_91d78e1421 (IsA permutation reordering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "permutation is a kind of transformation", "pln": ["(: cnet_isa_7255fc5399 (IsA permutation transformation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pernicious anemia is a kind of anemia", "pln": ["(: cnet_isa_371e695fe9 (IsA pernicious_anemia anemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perniciousness is a kind of unwholesomeness", "pln": ["(: cnet_isa_53710ded5b (IsA perniciousness unwholesomeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pernis is a kind of bird genus", "pln": ["(: cnet_isa_f027f794e2 (IsA pernis bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pernod is a kind of liqueur", "pln": ["(: cnet_isa_73eb285415 (IsA pernod liqueur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pernyi moth is a kind of saturniid", "pln": ["(: cnet_isa_24392b0044 (IsA pernyi_moth saturniid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perodicticus is a kind of mammal genus", "pln": ["(: cnet_isa_96ebdfcd1c (IsA perodicticus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "perognathus is a kind of mammal genus", "pln": ["(: cnet_isa_69b3213cc2 (IsA perognathus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "peromyscus is a kind of mammal genus", "pln": ["(: cnet_isa_88e4866fbc (IsA peromyscus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peroneal vein is a kind of vein", "pln": ["(: cnet_isa_3ba20d81b9 (IsA peroneal_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peroneus is a kind of skeletal muscle", "pln": ["(: cnet_isa_2561dc6ff2 (IsA peroneus skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peronospora is a kind of fungus genus", "pln": ["(: cnet_isa_e6d1e2ca83 (IsA peronospora fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peronosporaceae is a kind of fungus family", "pln": ["(: cnet_isa_27fa4a3337 (IsA peronosporaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peronosporale is a kind of fungus order", "pln": ["(: cnet_isa_4d0b96f9d7 (IsA peronosporale fungus_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peroration is a kind of oration", "pln": ["(: cnet_isa_66d630ea42 (IsA peroration oration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peroration is a kind of conclusion", "pln": ["(: cnet_isa_48a048496d (IsA peroration conclusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peroxidase is a kind of oxidase", "pln": ["(: cnet_isa_e86fac5810 (IsA peroxidase oxidase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peroxide is a kind of oxide", "pln": ["(: cnet_isa_875e1ccb43 (IsA peroxide oxide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peroxide blond is a kind of blond", "pln": ["(: cnet_isa_568a733ec2 (IsA peroxide_blond blond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perpendicular is a kind of face", "pln": ["(: cnet_isa_d363d7de21 (IsA perpendicular face) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perpendicular is a kind of gothic", "pln": ["(: cnet_isa_416d0f8167 (IsA perpendicular gothic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perpendicular is a kind of straight line", "pln": ["(: cnet_isa_214aad3b57 (IsA perpendicular straight_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perpendicularity is a kind of rectangularity", "pln": ["(: cnet_isa_f5859424e3 (IsA perpendicularity rectangularity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perpetration is a kind of crime", "pln": ["(: cnet_isa_a8a4827445 (IsA perpetration crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perpetrator is a kind of wrongdoer", "pln": ["(: cnet_isa_e25c25d3f6 (IsA perpetrator wrongdoer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perpetual calendar is a kind of calendar", "pln": ["(: cnet_isa_c1e92b3b1b (IsA perpetual_calendar calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perpetual motion is a kind of motion", "pln": ["(: cnet_isa_8b67b2275a (IsA perpetual_motion motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "perpetual motion machine is a kind of machine", "pln": ["(: cnet_isa_eeb2fa5846 (IsA perpetual_motion_machine machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perpetual warrant is a kind of warrant", "pln": ["(: cnet_isa_4dce0e51ae (IsA perpetual_warrant warrant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perpetuity is a kind of permanence", "pln": ["(: cnet_isa_f1747bd575 (IsA perpetuity permanence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perplexity is a kind of confusion", "pln": ["(: cnet_isa_61514ed724 (IsA perplexity confusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perry is a kind of alcohol", "pln": ["(: cnet_isa_f38d008cbf (IsA perry alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "persea is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_cd0d22a999 (IsA persea magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "persecution is a kind of maltreatment", "pln": ["(: cnet_isa_0db452427b (IsA persecution maltreatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perseverance is a kind of continuance", "pln": ["(: cnet_isa_554ca0f384 (IsA perseverance continuance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perseveration is a kind of inclination", "pln": ["(: cnet_isa_79aec66637 (IsA perseveration inclination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "persian is a kind of breed of cat", "pln": ["(: cnet_isa_9e95978d00 (IsA persian breed_of_cat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "persian is a kind of cat", "pln": ["(: cnet_isa_a2c93b9204 (IsA persian cat) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "persian is a kind of iranian", "pln": ["(: cnet_isa_98baeb3e4d (IsA persian iranian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "persian cat is a kind of domestic cat", "pln": ["(: cnet_isa_cb4d8a40bf (IsA persian_cat domestic_cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "persian deity is a kind of deity", "pln": ["(: cnet_isa_a3a025a1f0 (IsA persian_deity deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "persian iris is a kind of iris", "pln": ["(: cnet_isa_514dc732ee (IsA persian_iris iris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "persian lamb is a kind of lamb", "pln": ["(: cnet_isa_2d0e9e4898 (IsA persian_lamb lamb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "persian lamb is a kind of lambskin", "pln": ["(: cnet_isa_e4f2d025c5 (IsA persian_lamb lambskin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "persian lilac is a kind of lilac", "pln": ["(: cnet_isa_297917ce03 (IsA persian_lilac lilac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "persian melon is a kind of winter melon", "pln": ["(: cnet_isa_f7bfc40183 (IsA persian_melon winter_melon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "persian violet is a kind of houseplant", "pln": ["(: cnet_isa_1a3b815625 (IsA persian_violet houseplant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "persiflage is a kind of banter", "pln": ["(: cnet_isa_cde56d8e06 (IsA persiflage banter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "persimmon is a kind of berry", "pln": ["(: cnet_isa_511c2067b0 (IsA persimmon berry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "persimmon is a kind of fruit tree", "pln": ["(: cnet_isa_7f8997912b (IsA persimmon fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "person is a kind of individual", "pln": ["(: cnet_isa_56f8a85e32 (IsA person individual) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "person is a kind of causal agent", "pln": ["(: cnet_isa_f295fa7a34 (IsA person causal_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "person is a kind of organism", "pln": ["(: cnet_isa_8c971c42db (IsA person organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "person is a kind of human body", "pln": ["(: cnet_isa_ba1299dbbc (IsA person human_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "person is a kind of grammatical category", "pln": ["(: cnet_isa_aaee20d991 (IsA person grammatical_category) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "person agreement is a kind of agreement", "pln": ["(: cnet_isa_9880b404fe (IsA person_agreement agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "person of color is a kind of person", "pln": ["(: cnet_isa_1c616c8f22 (IsA person_of_color person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "persona is a kind of appearance", "pln": ["(: cnet_isa_6137f67e48 (IsA persona appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "persona grata is a kind of diplomat", "pln": ["(: cnet_isa_87e647c201 (IsA persona_grata diplomat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "persona non grata is a kind of diplomat", "pln": ["(: cnet_isa_27b08b7118 (IsA persona_non_grata diplomat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "personableness is a kind of personality", "pln": ["(: cnet_isa_b1c0e15764 (IsA personableness personality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "personage is a kind of person", "pln": ["(: cnet_isa_8d41a18d7a (IsA personage person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "personal is a kind of new article", "pln": ["(: cnet_isa_3a4ad37a8f (IsA personal new_article) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "personal business is a kind of concern", "pln": ["(: cnet_isa_abeda2dcc2 (IsA personal_business concern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "personal care is a kind of care", "pln": ["(: cnet_isa_917a97aa24 (IsA personal_care care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "personal check is a kind of check", "pln": ["(: cnet_isa_e22aa94906 (IsA personal_check check) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "personal computer is a kind of digital computer", "pln": ["(: cnet_isa_e23e4db827 (IsA personal_computer digital_computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "personal digital assistant is a kind of electronic device", "pln": ["(: cnet_isa_da368c7b39 (IsA personal_digital_assistant electronic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "personal equation is a kind of variability", "pln": ["(: cnet_isa_498b4b3143 (IsA personal_equation variability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "personal expense is a kind of expense", "pln": ["(: cnet_isa_da932f3449 (IsA personal_expense expense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "personal foul is a kind of foul", "pln": ["(: cnet_isa_1841affc52 (IsA personal_foul foul) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "personal identification number is a kind of number", "pln": ["(: cnet_isa_3eef663f88 (IsA personal_identification_number number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "personal income is a kind of income", "pln": ["(: cnet_isa_3b6d5c08a8 (IsA personal_income income) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "personal letter is a kind of letter", "pln": ["(: cnet_isa_9e3aa77a4c (IsA personal_letter letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "personal loan is a kind of loan", "pln": ["(: cnet_isa_294bc4d4b3 (IsA personal_loan loan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "personal pronoun is a kind of pronoun", "pln": ["(: cnet_isa_0abc1bff63 (IsA personal_pronoun pronoun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "personal property is a kind of property", "pln": ["(: cnet_isa_e9357670c5 (IsA personal_property property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "personal relation is a kind of relationship", "pln": ["(: cnet_isa_bcbb1742c5 (IsA personal_relation relationship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "personal representative is a kind of representative", "pln": ["(: cnet_isa_9f98bd2c88 (IsA personal_representative representative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "personality is a kind of attribute", "pln": ["(: cnet_isa_5729f69cf1 (IsA personality attribute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "personality is a kind of celebrity", "pln": ["(: cnet_isa_20848b93e1 (IsA personality celebrity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "personality disorder is a kind of mental disorder", "pln": ["(: cnet_isa_38bafc35c8 (IsA personality_disorder mental_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "personality inventory is a kind of personality test", "pln": ["(: cnet_isa_c3caf4d94d (IsA personality_inventory personality_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "personality inventory is a kind of questionnaire", "pln": ["(: cnet_isa_0347ed6eca (IsA personality_inventory questionnaire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "personality test is a kind of test", "pln": ["(: cnet_isa_fb482aede2 (IsA personality_test test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "personhood is a kind of identity", "pln": ["(: cnet_isa_6f9d54c159 (IsA personhood identity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "personification is a kind of embodiment", "pln": ["(: cnet_isa_aea3904e1a (IsA personification embodiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "personification is a kind of trope", "pln": ["(: cnet_isa_69a4d4033c (IsA personification trope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "personification is a kind of person", "pln": ["(: cnet_isa_d32f8b369f (IsA personification person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "personnel carrier is a kind of military vehicle", "pln": ["(: cnet_isa_f9167f456f (IsA personnel_carrier military_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "personnel carrier is a kind of self propelled vehicle", "pln": ["(: cnet_isa_eb7b33cc25 (IsA personnel_carrier self_propelled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "personnel casualty is a kind of casualty", "pln": ["(: cnet_isa_8e91a3df76 (IsA personnel_casualty casualty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "personnel department is a kind of department", "pln": ["(: cnet_isa_268b24d5d8 (IsA personnel_department department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "persoonia is a kind of dicot genus", "pln": ["(: cnet_isa_9803b2c685 (IsA persoonia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perspective is a kind of appearance", "pln": ["(: cnet_isa_68de255129 (IsA perspective appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perspicuity is a kind of clarity", "pln": ["(: cnet_isa_e64e5e7f90 (IsA perspicuity clarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perspiration is a kind of secretion", "pln": ["(: cnet_isa_4f46d58f86 (IsA perspiration secretion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perspiration is a kind of bodily process", "pln": ["(: cnet_isa_cfc14445a3 (IsA perspiration bodily_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perspirer is a kind of person", "pln": ["(: cnet_isa_8ab4211888 (IsA perspirer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "persuader is a kind of communicator", "pln": ["(: cnet_isa_7ad8239e33 (IsA persuader communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "persuasion is a kind of communication", "pln": ["(: cnet_isa_399ced8370 (IsA persuasion communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "persuasiveness is a kind of power", "pln": ["(: cnet_isa_a34f3f491b (IsA persuasiveness power) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pertainym is a kind of relational adjective", "pln": ["(: cnet_isa_336d7003c6 (IsA pertainym relational_adjective) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pertness is a kind of liveliness", "pln": ["(: cnet_isa_d392527d05 (IsA pertness liveliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perturbation is a kind of discomposure", "pln": ["(: cnet_isa_219c8f9c02 (IsA perturbation discomposure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perturbation is a kind of activity", "pln": ["(: cnet_isa_7729fd40f5 (IsA perturbation activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perturbation is a kind of influence", "pln": ["(: cnet_isa_c9848dca03 (IsA perturbation influence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pertusaria is a kind of fungus genus", "pln": ["(: cnet_isa_3a042a19b3 (IsA pertusaria fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pertusariaceae is a kind of fungus family", "pln": ["(: cnet_isa_b5eabcf3fd (IsA pertusariaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perusal is a kind of reading", "pln": ["(: cnet_isa_6d518ad1fe (IsA perusal reading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peruvian is a kind of south american", "pln": ["(: cnet_isa_2c4c90b7a8 (IsA peruvian south_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peruvian balsam is a kind of tree", "pln": ["(: cnet_isa_2cd5ffac3b (IsA peruvian_balsam tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "peruvian cotton is a kind of cotton", "pln": ["(: cnet_isa_d1d69a7517 (IsA peruvian_cotton cotton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peruvian current is a kind of ocean current", "pln": ["(: cnet_isa_15f6d05f12 (IsA peruvian_current ocean_current) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peruvian lily is a kind of alstroemeria", "pln": ["(: cnet_isa_67f07ce33c (IsA peruvian_lily alstroemeria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peruvian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_5e350cd833 (IsA peruvian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pervaporation is a kind of concentration", "pln": ["(: cnet_isa_0de6223770 (IsA pervaporation concentration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pervasiveness is a kind of generality", "pln": ["(: cnet_isa_47f3745f53 (IsA pervasiveness generality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perversion is a kind of sexual activity", "pln": ["(: cnet_isa_9b8e75cfa4 (IsA perversion sexual_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perversion is a kind of wrongdoing", "pln": ["(: cnet_isa_d317d766f7 (IsA perversion wrongdoing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perversion is a kind of curve", "pln": ["(: cnet_isa_0fe210b788 (IsA perversion curve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "perversity is a kind of evil", "pln": ["(: cnet_isa_8b96da9530 (IsA perversity evil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pervert is a kind of reprobate", "pln": ["(: cnet_isa_75052f1ffa (IsA pervert reprobate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pesantran is a kind of religious school", "pln": ["(: cnet_isa_fd0cd6fac6 (IsA pesantran religious_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peseta is a kind of spanish monetary unit", "pln": ["(: cnet_isa_6e6fb00c00 (IsA peseta spanish_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pesewa is a kind of ghanian monetary unit", "pln": ["(: cnet_isa_f92c6a220d (IsA pesewa ghanian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "peshmerga is a kind of kurd", "pln": ["(: cnet_isa_93f145c24c (IsA peshmerga kurd) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pessimism is a kind of disposition", "pln": ["(: cnet_isa_68ab79d5c5 (IsA pessimism disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pessimism is a kind of despair", "pln": ["(: cnet_isa_eba3a33655 (IsA pessimism despair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pessimist is a kind of skeptic", "pln": ["(: cnet_isa_088dccc082 (IsA pessimist skeptic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pest is a kind of animal", "pln": ["(: cnet_isa_8428c26058 (IsA pest animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pest is a kind of tormentor", "pln": ["(: cnet_isa_f68310755e (IsA pest tormentor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pesthole is a kind of breeding ground", "pln": ["(: cnet_isa_d25b1ef8a2 (IsA pesthole breeding_ground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pesticide is a kind of chemical", "pln": ["(: cnet_isa_d5a6db7229 (IsA pesticide chemical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pesticide poisoning is a kind of poisoning", "pln": ["(: cnet_isa_a50077a46e (IsA pesticide_poisoning poisoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pestilence is a kind of influence", "pln": ["(: cnet_isa_de18e1e7c4 (IsA pestilence influence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pestle is a kind of hand tool", "pln": ["(: cnet_isa_d36a346370 (IsA pestle hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pestle is a kind of tool", "pln": ["(: cnet_isa_ae969b8731 (IsA pestle tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pesto is a kind of sauce", "pln": ["(: cnet_isa_8658ff38b8 (IsA pesto sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pet is a kind of animal", "pln": ["(: cnet_isa_504134a386 (IsA pet animal) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pet is a kind of irritability", "pln": ["(: cnet_isa_4af97363e3 (IsA pet irritability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pet name is a kind of name", "pln": ["(: cnet_isa_eb3eae6377 (IsA pet_name name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pet peeve is a kind of complaint", "pln": ["(: cnet_isa_5822381005 (IsA pet_peeve complaint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pet shop is a kind of shop", "pln": ["(: cnet_isa_91e7adf18b (IsA pet_shop shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "petasites is a kind of asterid dicot genus", "pln": ["(: cnet_isa_6e57323a76 (IsA petasites asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pet sitter is a kind of custodian", "pln": ["(: cnet_isa_d4593d8427 (IsA pet_sitter custodian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pet sitting is a kind of care", "pln": ["(: cnet_isa_20f65cb6f8 (IsA pet_sitting care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petabit is a kind of computer memory unit", "pln": ["(: cnet_isa_28b0543eb4 (IsA petabit computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petabyte is a kind of computer memory unit", "pln": ["(: cnet_isa_91d7002084 (IsA petabyte computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petal is a kind of floral leaf", "pln": ["(: cnet_isa_e1f1ea3d00 (IsA petal floral_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petard is a kind of explosive device", "pln": ["(: cnet_isa_fe7f64bcdd (IsA petard explosive_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petasite is a kind of asterid dicot genus", "pln": ["(: cnet_isa_688142a2ee (IsA petasite asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petaurista is a kind of mammal genus", "pln": ["(: cnet_isa_0bded21e2d (IsA petaurista mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petauristidae is a kind of mammal family", "pln": ["(: cnet_isa_66622d4817 (IsA petauristidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petaurus is a kind of mammal genus", "pln": ["(: cnet_isa_3616da6fc1 (IsA petaurus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petcock is a kind of regulator", "pln": ["(: cnet_isa_0cf3e069dc (IsA petcock regulator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petechia is a kind of bruise", "pln": ["(: cnet_isa_03a0ac8300 (IsA petechia bruise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "peter pan is a kind of man", "pln": ["(: cnet_isa_36a80af749 (IsA peter_pan man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peter pan collar is a kind of collar", "pln": ["(: cnet_isa_92586763fe (IsA peter_pan_collar collar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petfood is a kind of feed", "pln": ["(: cnet_isa_9232b9ffbf (IsA petfood feed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petiole is a kind of stalk", "pln": ["(: cnet_isa_6b86874ed2 (IsA petiole stalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petiolule is a kind of stalk", "pln": ["(: cnet_isa_d25a248bd7 (IsA petiolule stalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petit bourgeois is a kind of middle class", "pln": ["(: cnet_isa_9002d148d5 (IsA petit_bourgeois middle_class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petit bourgeois is a kind of bourgeois", "pln": ["(: cnet_isa_ad581918c4 (IsA petit_bourgeois bourgeois) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petit four is a kind of cake", "pln": ["(: cnet_isa_974c7f626c (IsA petit_four cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petit juror is a kind of juror", "pln": ["(: cnet_isa_cd5ba81829 (IsA petit_juror juror) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petit jury is a kind of jury", "pln": ["(: cnet_isa_13f5c2556c (IsA petit_jury jury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petit larceny is a kind of larceny", "pln": ["(: cnet_isa_bcdd5b2421 (IsA petit_larceny larceny) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petit mal is a kind of epileptic seizure", "pln": ["(: cnet_isa_d534263bee (IsA petit_mal epileptic_seizure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petit mal epilepsy is a kind of seizure", "pln": ["(: cnet_isa_15161d2462 (IsA petit_mal_epilepsy seizure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petit point is a kind of embroidery stitch", "pln": ["(: cnet_isa_ad796c34ce (IsA petit_point embroidery_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "petit point is a kind of needlepoint", "pln": ["(: cnet_isa_ab4275f738 (IsA petit_point needlepoint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petite is a kind of size", "pln": ["(: cnet_isa_ab80835fd9 (IsA petite size) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petite marmite is a kind of soup", "pln": ["(: cnet_isa_ec43b9e04f (IsA petite_marmite soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petitio principii is a kind of logical fallacy", "pln": ["(: cnet_isa_0cc9b3092f (IsA petitio_principii logical_fallacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petitioner is a kind of applicant", "pln": ["(: cnet_isa_3c32c77f93 (IsA petitioner applicant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petrarchan sonnet is a kind of sonnet", "pln": ["(: cnet_isa_8122e6f112 (IsA petrarchan_sonnet sonnet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petrel is a kind of pelagic bird", "pln": ["(: cnet_isa_1d1fe6a1ea (IsA petrel pelagic_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petri dish is a kind of dish", "pln": ["(: cnet_isa_82599eb32d (IsA petri_dish dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petrifaction is a kind of rock", "pln": ["(: cnet_isa_e626aaa790 (IsA petrifaction rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "petrifaction is a kind of fossilization", "pln": ["(: cnet_isa_ee038963ce (IsA petrifaction fossilization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petrissage is a kind of massage", "pln": ["(: cnet_isa_ceb06233d1 (IsA petrissage massage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petrochemical is a kind of organic compound", "pln": ["(: cnet_isa_9ac936181c (IsA petrochemical organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petrocoptis is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_4c8d9cc5a5 (IsA petrocoptis caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petrogale is a kind of mammal genus", "pln": ["(: cnet_isa_75a39ca702 (IsA petrogale mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petroglyph is a kind of carving", "pln": ["(: cnet_isa_7bbebb7b0a (IsA petroglyph carving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petrol is a kind of gasoline", "pln": ["(: cnet_isa_23c306d957 (IsA petrol gasoline) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petrol is a kind of lighter than water", "pln": ["(: cnet_isa_e224e2aaaa (IsA petrol lighter_than_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petrol is a kind of liquid", "pln": ["(: cnet_isa_ccb66e3705 (IsA petrol liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petrolatum is a kind of jelly", "pln": ["(: cnet_isa_1a524be3e1 (IsA petrolatum jelly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petrolatum is a kind of mixture", "pln": ["(: cnet_isa_68b9d58b01 (IsA petrolatum mixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petrolatum gauze is a kind of gauze", "pln": ["(: cnet_isa_0529518fac (IsA petrolatum_gauze gauze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petroleum is a kind of combustible fluid", "pln": ["(: cnet_isa_8a9438d15f (IsA petroleum combustible_fluid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petroleum is a kind of fossil fuel", "pln": ["(: cnet_isa_d1f9ba8f8e (IsA petroleum fossil_fuel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petroleum is a kind of oil", "pln": ["(: cnet_isa_c46ffd5d91 (IsA petroleum oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "petroleum geologist is a kind of geologist", "pln": ["(: cnet_isa_8506161c03 (IsA petroleum_geologist geologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petroleum geology is a kind of economic geology", "pln": ["(: cnet_isa_f099af4988 (IsA petroleum_geology economic_geology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petrology is a kind of morphology", "pln": ["(: cnet_isa_f88f5827e2 (IsA petrology morphology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petromyzon is a kind of fish genus", "pln": ["(: cnet_isa_d6bc7e868c (IsA petromyzon fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petromyzoniforme is a kind of animal order", "pln": ["(: cnet_isa_7178abdbdc (IsA petromyzoniforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "petromyzontidae is a kind of fish family", "pln": ["(: cnet_isa_347ed67667 (IsA petromyzontidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "pets is a kind of animals", "pln": ["(: cnet_isa_be4705efed (IsA pets animals) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petroselinum is a kind of rosid dicot genus", "pln": ["(: cnet_isa_c801902584 (IsA petroselinum rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petter is a kind of lover", "pln": ["(: cnet_isa_0f7b7fdead (IsA petter lover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "petteria is a kind of rosid dicot genus", "pln": ["(: cnet_isa_31d5fd29d0 (IsA petteria rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petticoat is a kind of undergarment", "pln": ["(: cnet_isa_f1f447a132 (IsA petticoat undergarment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pettiness is a kind of meanness", "pln": ["(: cnet_isa_0b81512568 (IsA pettiness meanness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pettiness is a kind of unimportance", "pln": ["(: cnet_isa_e45e2a5a4f (IsA pettiness unimportance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pettiness is a kind of narrow mindedness", "pln": ["(: cnet_isa_75e1fd4b42 (IsA pettiness narrow_mindedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petting zoo is a kind of collection", "pln": ["(: cnet_isa_eec7da9662 (IsA petting_zoo collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petty apartheid is a kind of racial segregation", "pln": ["(: cnet_isa_2968315330 (IsA petty_apartheid racial_segregation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petty cash is a kind of fund", "pln": ["(: cnet_isa_39bce2c35f (IsA petty_cash fund) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petty officer is a kind of noncommissioned officer", "pln": ["(: cnet_isa_84487efe4a (IsA petty_officer noncommissioned_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petty spurge is a kind of spurge", "pln": ["(: cnet_isa_3689efa72f (IsA petty_spurge spurge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petunia is a kind of annual plant", "pln": ["(: cnet_isa_399b65792d (IsA petunia annual_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "petunia is a kind of flower", "pln": ["(: cnet_isa_fdd43f28cc (IsA petunia flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pew is a kind of bench", "pln": ["(: cnet_isa_ef89f9332f (IsA pew bench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pewee is a kind of new world flycatcher", "pln": ["(: cnet_isa_62868449bf (IsA pewee new_world_flycatcher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pewter is a kind of alloy", "pln": ["(: cnet_isa_e8c09b1d2c (IsA pewter alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peyer s patch is a kind of lymph node", "pln": ["(: cnet_isa_d637515f4e (IsA peyer_s_patch lymph_node) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peziza is a kind of fungus genus", "pln": ["(: cnet_isa_92f22af9f6 (IsA peziza fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "peziza domicilina is a kind of discomycete", "pln": ["(: cnet_isa_fc8a666cba (IsA peziza_domicilina discomycete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pezizaceae is a kind of fungus family", "pln": ["(: cnet_isa_4e782d8c5e (IsA pezizaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pezizale is a kind of fungus order", "pln": ["(: cnet_isa_198475f379 (IsA pezizale fungus_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pezophap is a kind of bird genus", "pln": ["(: cnet_isa_abfac9d12e (IsA pezophap bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pfannkuchen is a kind of pancake", "pln": ["(: cnet_isa_93dfbf49be (IsA pfannkuchen pancake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pfennig is a kind of german monetary unit", "pln": ["(: cnet_isa_4c8a41c2ac (IsA pfennig german_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ph d is a kind of doctor of philosophy", "pln": ["(: cnet_isa_012e766480 (IsA ph_d doctor_of_philosophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ph is a kind of hydrogen ion concentration", "pln": ["(: cnet_isa_e29dd426f4 (IsA ph hydrogen_ion_concentration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phacochoerus is a kind of mammal genus", "pln": ["(: cnet_isa_b817f5f6d1 (IsA phacochoerus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phacoemulsification is a kind of extracapsular surgery", "pln": ["(: cnet_isa_b8a756c5e6 (IsA phacoemulsification extracapsular_surgery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phaeophyceae is a kind of class", "pln": ["(: cnet_isa_5e32d0f82b (IsA phaeophyceae class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phaeophyta is a kind of division", "pln": ["(: cnet_isa_61f913e4d8 (IsA phaeophyta division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phaethon is a kind of bird genus", "pln": ["(: cnet_isa_ca23edfc59 (IsA phaethon bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phaethontidae is a kind of bird family", "pln": ["(: cnet_isa_96914196a5 (IsA phaethontidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phagocyte is a kind of somatic cell", "pln": ["(: cnet_isa_e99de33dbb (IsA phagocyte somatic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phagocytosis is a kind of bodily process", "pln": ["(: cnet_isa_d154828c03 (IsA phagocytosis bodily_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phagun is a kind of hindu calendar month", "pln": ["(: cnet_isa_978f804a54 (IsA phagun hindu_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phaius is a kind of orchid", "pln": ["(: cnet_isa_ed106d380e (IsA phaius orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phalacrocoracidae is a kind of bird family", "pln": ["(: cnet_isa_72da43ceb0 (IsA phalacrocoracidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phalacrocorax is a kind of bird genus", "pln": ["(: cnet_isa_42ccd137f8 (IsA phalacrocorax bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phalaenopsis is a kind of monocot genus", "pln": ["(: cnet_isa_b2d89c7b9c (IsA phalaenopsis monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phalaenoptilus is a kind of bird genus", "pln": ["(: cnet_isa_3ac1dd79d9 (IsA phalaenoptilus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phalanger is a kind of marsupial", "pln": ["(: cnet_isa_2c80001f5b (IsA phalanger marsupial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phalangeridae is a kind of mammal family", "pln": ["(: cnet_isa_3d0f14be9d (IsA phalangeridae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phalangida is a kind of animal order", "pln": ["(: cnet_isa_6bfdaed74c (IsA phalangida animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phalangiidae is a kind of arthropod family", "pln": ["(: cnet_isa_0b42d05e59 (IsA phalangiidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phalangist is a kind of fascist", "pln": ["(: cnet_isa_c7ae1632f5 (IsA phalangist fascist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phalangitis is a kind of inflammation", "pln": ["(: cnet_isa_24a10b1274 (IsA phalangitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phalangium is a kind of arthropod genus", "pln": ["(: cnet_isa_09abb95433 (IsA phalangium arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phalanx is a kind of bone", "pln": ["(: cnet_isa_0343ba92fd (IsA phalanx bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phalanx is a kind of crowd", "pln": ["(: cnet_isa_f794f7d2af (IsA phalanx crowd) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phalanx is a kind of military unit", "pln": ["(: cnet_isa_d418fcc1ac (IsA phalanx military_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "phalaris is a kind of monocot genus", "pln": ["(: cnet_isa_f21c1fc5ea (IsA phalaris monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phalarope is a kind of shorebird", "pln": ["(: cnet_isa_88b31292c8 (IsA phalarope shorebird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phalaropidae is a kind of bird family", "pln": ["(: cnet_isa_0b539259b7 (IsA phalaropidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "phalaropus is a kind of bird genus", "pln": ["(: cnet_isa_bac877a4ac (IsA phalaropus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phallaceae is a kind of fungus family", "pln": ["(: cnet_isa_d40a91ea76 (IsA phallaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phallale is a kind of fungus genus", "pln": ["(: cnet_isa_e6d127ed5e (IsA phallale fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phallic stage is a kind of phase", "pln": ["(: cnet_isa_3e8458c9c4 (IsA phallic_stage phase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phalloplasty is a kind of plastic surgery", "pln": ["(: cnet_isa_9122debff5 (IsA phalloplasty plastic_surgery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phallus is a kind of fungus genus", "pln": ["(: cnet_isa_51b116d503 (IsA phallus fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phallus ravenelii is a kind of stinkhorn", "pln": ["(: cnet_isa_870c9e2d0e (IsA phallus_ravenelii stinkhorn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phalsa is a kind of shrub", "pln": ["(: cnet_isa_3292acdfdf (IsA phalsa shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phanerogamae is a kind of division", "pln": ["(: cnet_isa_1e382fe2bc (IsA phanerogamae division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phaneromania is a kind of mania", "pln": ["(: cnet_isa_bdb7fc0646 (IsA phaneromania mania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phantasmagoria is a kind of representation", "pln": ["(: cnet_isa_a11ff69c1a (IsA phantasmagoria representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phantom limb is a kind of illusion", "pln": ["(: cnet_isa_4f836dc0e7 (IsA phantom_limb illusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phantom limb pain is a kind of pain", "pln": ["(: cnet_isa_4cc509debe (IsA phantom_limb_pain pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phantom limb syndrome is a kind of syndrome", "pln": ["(: cnet_isa_e7db094eef (IsA phantom_limb_syndrome syndrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "phantom orchid is a kind of orchid", "pln": ["(: cnet_isa_9bf6122ebc (IsA phantom_orchid orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pharaoh ant is a kind of ant", "pln": ["(: cnet_isa_50fdf30c37 (IsA pharaoh_ant ant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pharaoh of egypt is a kind of ruler", "pln": ["(: cnet_isa_2ec08f4f79 (IsA pharaoh_of_egypt ruler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pharisee is a kind of israelite", "pln": ["(: cnet_isa_27c94a5cf0 (IsA pharisee israelite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pharisee is a kind of unpleasant person", "pln": ["(: cnet_isa_79cb5fd6f6 (IsA pharisee unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pharmaceutical is a kind of medicine", "pln": ["(: cnet_isa_58ea1e847f (IsA pharmaceutical medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pharmacist is a kind of health professional", "pln": ["(: cnet_isa_1e337a5736 (IsA pharmacist health_professional) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pharmacogenetic is a kind of genetic", "pln": ["(: cnet_isa_3c4eb5c6ff (IsA pharmacogenetic genetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pharmacokinetic is a kind of pharmacology", "pln": ["(: cnet_isa_1e0dc5a3e1 (IsA pharmacokinetic pharmacology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pharmacologist is a kind of pharmacist", "pln": ["(: cnet_isa_912beeae65 (IsA pharmacologist pharmacist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pharmacology is a kind of medicine", "pln": ["(: cnet_isa_797873db69 (IsA pharmacology medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pharmacopoeia is a kind of collection", "pln": ["(: cnet_isa_20572282f1 (IsA pharmacopoeia collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pharmacy is a kind of medicine", "pln": ["(: cnet_isa_da515fd700 (IsA pharmacy medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pharomacrus is a kind of bird genus", "pln": ["(: cnet_isa_41ad67d4f0 (IsA pharomacrus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pharyngeal recess is a kind of recess", "pln": ["(: cnet_isa_764ad34b79 (IsA pharyngeal_recess recess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pharyngeal reflex is a kind of reflex", "pln": ["(: cnet_isa_6f358947be (IsA pharyngeal_reflex reflex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pharyngeal tonsil is a kind of lymphatic tissue", "pln": ["(: cnet_isa_070d811167 (IsA pharyngeal_tonsil lymphatic_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pharyngeal vein is a kind of vein", "pln": ["(: cnet_isa_0c0023ba95 (IsA pharyngeal_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phascogale is a kind of mammal genus", "pln": ["(: cnet_isa_c0c0099974 (IsA phascogale mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phascolarcto is a kind of mammal genus", "pln": ["(: cnet_isa_16742a9a6b (IsA phascolarcto mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phase is a kind of appearance", "pln": ["(: cnet_isa_b283a17ded (IsA phase appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phase is a kind of state of matter", "pln": ["(: cnet_isa_b426c89f85 (IsA phase state_of_matter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phase is a kind of point", "pln": ["(: cnet_isa_2eca735b1c (IsA phase point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phase is a kind of time period", "pln": ["(: cnet_isa_fb8b5a312a (IsA phase time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phase change is a kind of natural process", "pln": ["(: cnet_isa_e0bc2b52e9 (IsA phase_change natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phase i clinical trial is a kind of clinical trial", "pln": ["(: cnet_isa_bf0126e694 (IsA phase_i_clinical_trial clinical_trial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phase ii clinical trial is a kind of clinical trial", "pln": ["(: cnet_isa_dc70e5e047 (IsA phase_ii_clinical_trial clinical_trial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phase iii clinical trial is a kind of clinical trial", "pln": ["(: cnet_isa_79b2353b39 (IsA phase_iii_clinical_trial clinical_trial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phase iv clinical trial is a kind of clinical trial", "pln": ["(: cnet_isa_a2b0deb1e6 (IsA phase_iv_clinical_trial clinical_trial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phase modulation is a kind of modulation", "pln": ["(: cnet_isa_d17f2c42ee (IsA phase_modulation modulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phase of cell division is a kind of phase", "pln": ["(: cnet_isa_a1838af033 (IsA phase_of_cell_division phase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phase of moon is a kind of phase", "pln": ["(: cnet_isa_0c2e7517b7 (IsA phase_of_moon phase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phase of moon is a kind of time period", "pln": ["(: cnet_isa_b3a0c6782a (IsA phase_of_moon time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phase out is a kind of discontinuance", "pln": ["(: cnet_isa_6323ba29f3 (IsA phase_out discontinuance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phase space is a kind of space", "pln": ["(: cnet_isa_8321d79270 (IsA phase_space space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phaseolus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_ca36e80ab7 (IsA phaseolus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phasianid is a kind of game bird", "pln": ["(: cnet_isa_56151133bb (IsA phasianid game_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phasianidae is a kind of bird family", "pln": ["(: cnet_isa_f56be514c3 (IsA phasianidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phasianus is a kind of bird genus", "pln": ["(: cnet_isa_d26819747b (IsA phasianus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phasmid is a kind of insect", "pln": ["(: cnet_isa_c9e30b5eb2 (IsA phasmid insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phasmida is a kind of animal order", "pln": ["(: cnet_isa_68af8b4cd0 (IsA phasmida animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phasmidae is a kind of arthropod family", "pln": ["(: cnet_isa_d0887fbd18 (IsA phasmidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phasmidia is a kind of class", "pln": ["(: cnet_isa_ba18cbb421 (IsA phasmidia class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phatic speech is a kind of conversation", "pln": ["(: cnet_isa_aedf5f16a5 (IsA phatic_speech conversation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pheasant s eye is a kind of flower", "pln": ["(: cnet_isa_af57a89042 (IsA pheasant_s_eye flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pheasant is a kind of bird", "pln": ["(: cnet_isa_e34cf8a027 (IsA pheasant bird) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pheasant is a kind of phasianid", "pln": ["(: cnet_isa_43f54bff54 (IsA pheasant phasianid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pheasant is a kind of wildfowl", "pln": ["(: cnet_isa_f2456d69d3 (IsA pheasant wildfowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pheasant coucal is a kind of coucal", "pln": ["(: cnet_isa_d4aa695cd7 (IsA pheasant_coucal coucal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pheasant under glass is a kind of dish", "pln": ["(: cnet_isa_02d6112483 (IsA pheasant_under_glass dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phegopteris is a kind of fern genus", "pln": ["(: cnet_isa_f814693613 (IsA phegopteris fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phellem is a kind of bark", "pln": ["(: cnet_isa_0a37d9ea0f (IsA phellem bark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phellodendron is a kind of rosid dicot genus", "pln": ["(: cnet_isa_5948049a00 (IsA phellodendron rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phenacomy is a kind of vole", "pln": ["(: cnet_isa_ded6b1665e (IsA phenacomy vole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phencyclidine is a kind of hallucinogen", "pln": ["(: cnet_isa_30e08b5dbc (IsA phencyclidine hallucinogen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pheniramine is a kind of antihistamine", "pln": ["(: cnet_isa_a4890714eb (IsA pheniramine antihistamine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pheno safranine is a kind of safranine", "pln": ["(: cnet_isa_225da3d7d7 (IsA pheno_safranine safranine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phenol is a kind of organic compound", "pln": ["(: cnet_isa_29f7ddef5b (IsA phenol organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phenolic plastic is a kind of plastic", "pln": ["(: cnet_isa_3c8f321121 (IsA phenolic_plastic plastic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phenolic resin is a kind of synthetic resin", "pln": ["(: cnet_isa_14644cfee0 (IsA phenolic_resin synthetic_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phenolphthalein is a kind of acid base indicator", "pln": ["(: cnet_isa_543e7885a7 (IsA phenolphthalein acid_base_indicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phenolphthalein is a kind of laxative", "pln": ["(: cnet_isa_5ece40e5ae (IsA phenolphthalein laxative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phenomenology is a kind of doctrine", "pln": ["(: cnet_isa_0234bafe60 (IsA phenomenology doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phenomenon is a kind of process", "pln": ["(: cnet_isa_c66cb0ae47 (IsA phenomenon process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phenomenon is a kind of development", "pln": ["(: cnet_isa_ad4452488b (IsA phenomenon development) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phenothiazine is a kind of thiazine", "pln": ["(: cnet_isa_9597a55a71 (IsA phenothiazine thiazine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "phenotype is a kind of constitution", "pln": ["(: cnet_isa_1ed4423577 (IsA phenotype constitution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "phenylalanine is a kind of essential amino acid", "pln": ["(: cnet_isa_a6ba144b83 (IsA phenylalanine essential_amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phenylephrine is a kind of adrenergic", "pln": ["(: cnet_isa_2430575563 (IsA phenylephrine adrenergic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phenylketonuria is a kind of inborn error of metabolism", "pln": ["(: cnet_isa_8d0728e32c (IsA phenylketonuria inborn_error_of_metabolism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phenylpropanolamine is a kind of adrenergic", "pln": ["(: cnet_isa_3be9c9e796 (IsA phenylpropanolamine adrenergic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phenyltoloxamine is a kind of antihistamine", "pln": ["(: cnet_isa_6f0edd524d (IsA phenyltoloxamine antihistamine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pheochromocytoma is a kind of tumor", "pln": ["(: cnet_isa_fcbe46f9da (IsA pheochromocytoma tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pheromone is a kind of secretion", "pln": ["(: cnet_isa_ebb7e78589 (IsA pheromone secretion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phi is a kind of letter", "pln": ["(: cnet_isa_0e984e4c1a (IsA phi letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phi coefficient is a kind of nonparametric statistic", "pln": ["(: cnet_isa_a3be820bf0 (IsA phi_coefficient nonparametric_statistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phial is a kind of bottle", "pln": ["(: cnet_isa_302c0ad234 (IsA phial bottle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philadelphaceae is a kind of rosid dicot family", "pln": ["(: cnet_isa_9ec14f6398 (IsA philadelphaceae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philadelphia fleabane is a kind of fleabane", "pln": ["(: cnet_isa_0b2a9caac7 (IsA philadelphia_fleabane fleabane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philadelphus is a kind of shrub", "pln": ["(: cnet_isa_efefbcbb54 (IsA philadelphus shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philaenus is a kind of arthropod genus", "pln": ["(: cnet_isa_3d42e3c75d (IsA philaenus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philanthropic foundation is a kind of charity", "pln": ["(: cnet_isa_4370118a04 (IsA philanthropic_foundation charity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philanthropist is a kind of donor", "pln": ["(: cnet_isa_3f66e18ce5 (IsA philanthropist donor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philanthropy is a kind of financial aid", "pln": ["(: cnet_isa_b8b510bfbb (IsA philanthropy financial_aid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philatelist is a kind of collector", "pln": ["(: cnet_isa_a1a374f04d (IsA philatelist collector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philately is a kind of collection", "pln": ["(: cnet_isa_969c338b70 (IsA philately collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philhellene is a kind of supporter", "pln": ["(: cnet_isa_5d0e0fe5b7 (IsA philhellene supporter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philhellenism is a kind of admiration", "pln": ["(: cnet_isa_5d27b0540b (IsA philhellenism admiration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philippian is a kind of macedonian", "pln": ["(: cnet_isa_700dfd4bb0 (IsA philippian macedonian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philippine is a kind of western malayo polynesian", "pln": ["(: cnet_isa_6c8bd24501 (IsA philippine western_malayo_polynesian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philippine mahogany is a kind of mahogany", "pln": ["(: cnet_isa_5d9bda3d0e (IsA philippine_mahogany mahogany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philippine monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_5de98b53d8 (IsA philippine_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philippine peso is a kind of philippine monetary unit", "pln": ["(: cnet_isa_5a6226b7e5 (IsA philippine_peso philippine_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philistine is a kind of inhabitant", "pln": ["(: cnet_isa_45d7220cfb (IsA philistine inhabitant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philistine is a kind of plebeian", "pln": ["(: cnet_isa_fb05a8b516 (IsA philistine plebeian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philly is a kind of team", "pln": ["(: cnet_isa_79d004d43d (IsA philly team) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phillip screwdriver is a kind of screwdriver", "pln": ["(: cnet_isa_a29959826a (IsA phillip_screwdriver screwdriver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phillipsite is a kind of zeolite", "pln": ["(: cnet_isa_9baaf70713 (IsA phillipsite zeolite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phillyrea is a kind of dicot genus", "pln": ["(: cnet_isa_bf3244265a (IsA phillyrea dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philodendron is a kind of liana", "pln": ["(: cnet_isa_79a7c4e578 (IsA philodendron liana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philogyny is a kind of admiration", "pln": ["(: cnet_isa_e6e2903f15 (IsA philogyny admiration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philohela is a kind of bird genus", "pln": ["(: cnet_isa_de5c86f925 (IsA philohela bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philologist is a kind of humanist", "pln": ["(: cnet_isa_ed22c80ad1 (IsA philologist humanist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philomachus is a kind of bird genus", "pln": ["(: cnet_isa_e5efad2c3a (IsA philomachus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philomath is a kind of scholar", "pln": ["(: cnet_isa_c71b57fe72 (IsA philomath scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philophylla is a kind of arthropod genus", "pln": ["(: cnet_isa_3b7134fe35 (IsA philophylla arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philosopher s stone is a kind of substance", "pln": ["(: cnet_isa_85c9fdff61 (IsA philosopher_s_stone substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philosopher is a kind of person", "pln": ["(: cnet_isa_3680d2aece (IsA philosopher person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philosopher is a kind of scholar", "pln": ["(: cnet_isa_9745ee9b10 (IsA philosopher scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "philosophical doctrine is a kind of doctrine", "pln": ["(: cnet_isa_37cdaa033e (IsA philosophical_doctrine doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philosophizer is a kind of thinker", "pln": ["(: cnet_isa_68fbb27614 (IsA philosophizer thinker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philosophizing is a kind of exposition", "pln": ["(: cnet_isa_05fd3ed04a (IsA philosophizing exposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philosophy is a kind of about people s thinking", "pln": ["(: cnet_isa_7cde1a4eb4 (IsA philosophy about_people_s_thinking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philosophy is a kind of belief", "pln": ["(: cnet_isa_da5dfee6d0 (IsA philosophy belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "philosophy is a kind of humanistic discipline", "pln": ["(: cnet_isa_a8784f3463 (IsA philosophy humanistic_discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philosophy department is a kind of academic department", "pln": ["(: cnet_isa_26a1953f31 (IsA philosophy_department academic_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "philter is a kind of potion", "pln": ["(: cnet_isa_265f12074a (IsA philter potion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phimosis is a kind of abnormality", "pln": ["(: cnet_isa_7aca681721 (IsA phimosis abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phlebectomy is a kind of operation", "pln": ["(: cnet_isa_ac9e7b9e63 (IsA phlebectomy operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phlebitis is a kind of inflammation", "pln": ["(: cnet_isa_ef32b366a2 (IsA phlebitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phlebodium is a kind of fern genus", "pln": ["(: cnet_isa_4b2080b95a (IsA phlebodium fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phlebothrombosis is a kind of thrombosis", "pln": ["(: cnet_isa_4c58eb0ac2 (IsA phlebothrombosis thrombosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phlebotomist is a kind of skilled worker", "pln": ["(: cnet_isa_8ea2aa4983 (IsA phlebotomist skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phlebotomus is a kind of arthropod genus", "pln": ["(: cnet_isa_880ebd6981 (IsA phlebotomus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phlegm is a kind of mucus", "pln": ["(: cnet_isa_f6a0d1059f (IsA phlegm mucus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phleum is a kind of monocot genus", "pln": ["(: cnet_isa_de2e848ab3 (IsA phleum monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phloem is a kind of vascular tissue", "pln": ["(: cnet_isa_2c7f997af3 (IsA phloem vascular_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phlogiston is a kind of substance", "pln": ["(: cnet_isa_281e5edf39 (IsA phlogiston substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phlogopite is a kind of mica", "pln": ["(: cnet_isa_525c4439e4 (IsA phlogopite mica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phlomis is a kind of subshrub", "pln": ["(: cnet_isa_a5dd2d42be (IsA phlomis subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "phlox is a kind of herb", "pln": ["(: cnet_isa_3fb0a29e48 (IsA phlox herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phobia is a kind of anxiety disorder", "pln": ["(: cnet_isa_a96d5d7df2 (IsA phobia anxiety_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phobophobia is a kind of simple phobia", "pln": ["(: cnet_isa_ba8c3467e7 (IsA phobophobia simple_phobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phoca is a kind of mammal genus", "pln": ["(: cnet_isa_265d31d3ac (IsA phoca mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phocidae is a kind of mammal family", "pln": ["(: cnet_isa_df04a3a145 (IsA phocidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phocomelia is a kind of meromelia", "pln": ["(: cnet_isa_b83d57dda8 (IsA phocomelia meromelia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phoebe is a kind of new world flycatcher", "pln": ["(: cnet_isa_74706fd6a1 (IsA phoebe new_world_flycatcher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phoenician is a kind of canaanitic", "pln": ["(: cnet_isa_6b1e102a9a (IsA phoenician canaanitic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phoenician is a kind of semite", "pln": ["(: cnet_isa_415931c1b5 (IsA phoenician semite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phoenicophorium is a kind of monocot genus", "pln": ["(: cnet_isa_01f1824233 (IsA phoenicophorium monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phoenicopteridae is a kind of bird family", "pln": ["(: cnet_isa_6d4bc9d432 (IsA phoenicopteridae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phoeniculidae is a kind of bird family", "pln": ["(: cnet_isa_72c99a6896 (IsA phoeniculidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phoeniculus is a kind of bird genus", "pln": ["(: cnet_isa_0cca50a461 (IsA phoeniculus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phoenicurus is a kind of bird genus", "pln": ["(: cnet_isa_6dac09ff2d (IsA phoenicurus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phoenix is a kind of mythical being", "pln": ["(: cnet_isa_1112b53f48 (IsA phoenix mythical_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phoenix is a kind of monocot genus", "pln": ["(: cnet_isa_bcbbfbeeb8 (IsA phoenix monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pholadidae is a kind of mollusk family", "pln": ["(: cnet_isa_d32220e4da (IsA pholadidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phola is a kind of mollusk genus", "pln": ["(: cnet_isa_67b872efe9 (IsA phola mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pholidae is a kind of fish family", "pln": ["(: cnet_isa_a57917b38d (IsA pholidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pholidota is a kind of animal order", "pln": ["(: cnet_isa_5f864dab31 (IsA pholidota animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pholidota is a kind of monocot genus", "pln": ["(: cnet_isa_666646b05e (IsA pholidota monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pholiota is a kind of fungus genus", "pln": ["(: cnet_isa_aedc69c163 (IsA pholiota fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pholiota astragalina is a kind of agaric", "pln": ["(: cnet_isa_2e28a15d0d (IsA pholiota_astragalina agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pholiota aurea is a kind of agaric", "pln": ["(: cnet_isa_08206cad11 (IsA pholiota_aurea agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pholiota destruen is a kind of agaric", "pln": ["(: cnet_isa_351f94219a (IsA pholiota_destruen agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pholiota flamman is a kind of agaric", "pln": ["(: cnet_isa_784fb96b50 (IsA pholiota_flamman agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pholiota flavida is a kind of agaric", "pln": ["(: cnet_isa_32676556c5 (IsA pholiota_flavida agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pholiota squarrosa is a kind of agaric", "pln": ["(: cnet_isa_6a86cf540f (IsA pholiota_squarrosa agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pholiota squarrosa adiposa is a kind of agaric", "pln": ["(: cnet_isa_0865896c9d (IsA pholiota_squarrosa_adiposa agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pholiota squarrosoide is a kind of agaric", "pln": ["(: cnet_isa_c461aa7eb3 (IsA pholiota_squarrosoide agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pholis is a kind of fish genus", "pln": ["(: cnet_isa_5855598efa (IsA pholis fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pholistoma is a kind of asterid dicot genus", "pln": ["(: cnet_isa_7b66e5680c (IsA pholistoma asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phon is a kind of sound unit", "pln": ["(: cnet_isa_862e055688 (IsA phon sound_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "phone is a kind of device", "pln": ["(: cnet_isa_dbdb821179 (IsA phone device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phone is a kind of language unit", "pln": ["(: cnet_isa_0179c00784 (IsA phone language_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "phone bill is a kind of bill", "pln": ["(: cnet_isa_ff4a69c664 (IsA phone_bill bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phone in is a kind of talk show", "pln": ["(: cnet_isa_40722087ab (IsA phone_in talk_show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "phone message is a kind of message", "pln": ["(: cnet_isa_0bb94941f4 (IsA phone_message message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phone number is a kind of signal", "pln": ["(: cnet_isa_619759c6c7 (IsA phone_number signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phonebook is a kind of directory", "pln": ["(: cnet_isa_3851e92345 (IsA phonebook directory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phoneme is a kind of phone", "pln": ["(: cnet_isa_376ef86756 (IsA phoneme phone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phonemic system is a kind of language system", "pln": ["(: cnet_isa_608974df59 (IsA phonemic_system language_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phonetic alphabet is a kind of alphabet", "pln": ["(: cnet_isa_52c60028a2 (IsA phonetic_alphabet alphabet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phonetic symbol is a kind of character", "pln": ["(: cnet_isa_66596cc6e5 (IsA phonetic_symbol character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phonetic transcription is a kind of transcription", "pln": ["(: cnet_isa_0f277fc780 (IsA phonetic_transcription transcription) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phonetician is a kind of linguist", "pln": ["(: cnet_isa_c4582c6d18 (IsA phonetician linguist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phonetic is a kind of acoustic", "pln": ["(: cnet_isa_f73819e14a (IsA phonetic acoustic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phonic is a kind of teaching reading", "pln": ["(: cnet_isa_58e37a3067 (IsA phonic teaching_reading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phonogram is a kind of written symbol", "pln": ["(: cnet_isa_e1c7c883dd (IsA phonogram written_symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phonograph album is a kind of album", "pln": ["(: cnet_isa_add8f9dc1f (IsA phonograph_album album) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phonograph needle is a kind of stylus", "pln": ["(: cnet_isa_351ef28002 (IsA phonograph_needle stylus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phonograph record is a kind of sound recording", "pln": ["(: cnet_isa_8ddf8e9923 (IsA phonograph_record sound_recording) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phonological system is a kind of language system", "pln": ["(: cnet_isa_8912f7177f (IsA phonological_system language_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phonologist is a kind of linguist", "pln": ["(: cnet_isa_531a476ed0 (IsA phonologist linguist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phonology is a kind of synchronic linguistic", "pln": ["(: cnet_isa_d3f454d8a7 (IsA phonology synchronic_linguistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "phonophobia is a kind of simple phobia", "pln": ["(: cnet_isa_7fb227d487 (IsA phonophobia simple_phobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "phoradendron is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_df581a1276 (IsA phoradendron dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phoronid is a kind of invertebrate", "pln": ["(: cnet_isa_e98ce6b21a (IsA phoronid invertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "phoronida is a kind of phylum", "pln": ["(: cnet_isa_f610574f5f (IsA phoronida phylum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phosgene is a kind of gas", "pln": ["(: cnet_isa_bd8a1f48d0 (IsA phosgene gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phosphatase is a kind of enzyme", "pln": ["(: cnet_isa_1567bf1e23 (IsA phosphatase enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phosphate is a kind of soft drink", "pln": ["(: cnet_isa_f5e689772d (IsA phosphate soft_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phosphate is a kind of salt", "pln": ["(: cnet_isa_c52f023163 (IsA phosphate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phosphate buffer solution is a kind of buffer solution", "pln": ["(: cnet_isa_9cd07df801 (IsA phosphate_buffer_solution buffer_solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phosphine is a kind of gas", "pln": ["(: cnet_isa_6d77a69b5b (IsA phosphine gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phosphine is a kind of pesticide", "pln": ["(: cnet_isa_43bf4c7f2f (IsA phosphine pesticide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phosphocreatine is a kind of organic compound", "pln": ["(: cnet_isa_05e9290020 (IsA phosphocreatine organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phospholipid is a kind of lipid", "pln": ["(: cnet_isa_3e5e95bab8 (IsA phospholipid lipid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phosphoprotein is a kind of protein", "pln": ["(: cnet_isa_9afeb84ab2 (IsA phosphoprotein protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phosphor is a kind of synthetic", "pln": ["(: cnet_isa_d591eb447a (IsA phosphor synthetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phosphor bronze is a kind of bronze", "pln": ["(: cnet_isa_7856834b29 (IsA phosphor_bronze bronze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phosphorescence is a kind of fluorescence", "pln": ["(: cnet_isa_a49ad8c3be (IsA phosphorescence fluorescence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phosphoric acid is a kind of oxyacid", "pln": ["(: cnet_isa_ff43234e90 (IsA phosphoric_acid oxyacid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phosphorus is a kind of chemical element", "pln": ["(: cnet_isa_b8f89e6873 (IsA phosphorus chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phot is a kind of illumination unit", "pln": ["(: cnet_isa_0b1730b104 (IsA phot illumination_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photalgia is a kind of pain", "pln": ["(: cnet_isa_780132cc68 (IsA photalgia pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photinia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_1b0fc88349 (IsA photinia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photo is a kind of photograph", "pln": ["(: cnet_isa_3812a66be1 (IsA photo photograph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photo credit is a kind of citation", "pln": ["(: cnet_isa_3a2a0dde4b (IsA photo_credit citation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photo finish is a kind of finish", "pln": ["(: cnet_isa_5c4091e7b1 (IsA photo_finish finish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photo offset printing is a kind of offset", "pln": ["(: cnet_isa_edf68e77f1 (IsA photo_offset_printing offset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photo opportunity is a kind of affair", "pln": ["(: cnet_isa_a196d74d25 (IsA photo_opportunity affair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photoblepharon is a kind of fish genus", "pln": ["(: cnet_isa_7f9a8e8520 (IsA photoblepharon fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photocathode is a kind of cathode", "pln": ["(: cnet_isa_7106da551d (IsA photocathode cathode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photochemical exchange is a kind of exchange", "pln": ["(: cnet_isa_6de4453385 (IsA photochemical_exchange exchange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photochemical reaction is a kind of chemical reaction", "pln": ["(: cnet_isa_58bde51146 (IsA photochemical_reaction chemical_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photochemistry is a kind of chemistry", "pln": ["(: cnet_isa_070fc9e287 (IsA photochemistry chemistry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photocoagulation is a kind of operation", "pln": ["(: cnet_isa_6a91eb8d3e (IsA photocoagulation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "photocoagulator is a kind of surgical instrument", "pln": ["(: cnet_isa_9270424bf3 (IsA photocoagulator surgical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photoconductivity is a kind of electrical conduction", "pln": ["(: cnet_isa_8d89787426 (IsA photoconductivity electrical_conduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photocopier is a kind of duplicator", "pln": ["(: cnet_isa_0abbc0243f (IsA photocopier duplicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photocopy is a kind of copy", "pln": ["(: cnet_isa_fb23e1f519 (IsA photocopy copy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photocopy is a kind of picture", "pln": ["(: cnet_isa_102d748ec6 (IsA photocopy picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photoelectric cell is a kind of detector", "pln": ["(: cnet_isa_85bf6fd0a4 (IsA photoelectric_cell detector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photoelectric cell is a kind of transducer", "pln": ["(: cnet_isa_d24d4c3502 (IsA photoelectric_cell transducer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photoelectric emission is a kind of emission", "pln": ["(: cnet_isa_2f63dce2b2 (IsA photoelectric_emission emission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photoelectricity is a kind of electricity", "pln": ["(: cnet_isa_ffc84fcc8f (IsA photoelectricity electricity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photoelectron is a kind of electron", "pln": ["(: cnet_isa_8bfa48e3a6 (IsA photoelectron electron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photoemission is a kind of emission", "pln": ["(: cnet_isa_a0ce52ea9c (IsA photoemission emission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photogenic epilepsy is a kind of reflex epilepsy", "pln": ["(: cnet_isa_7798410df3 (IsA photogenic_epilepsy reflex_epilepsy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photograph album is a kind of album", "pln": ["(: cnet_isa_a56a35e104 (IsA photograph_album album) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "photographer s model is a kind of model", "pln": ["(: cnet_isa_def1a9c2da (IsA photographer_s_model model) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photographer is a kind of artist", "pln": ["(: cnet_isa_f3ea9f6fed (IsA photographer artist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photographic density is a kind of concentration", "pln": ["(: cnet_isa_d4a98a83f7 (IsA photographic_density concentration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photographic equipment is a kind of equipment", "pln": ["(: cnet_isa_786a391208 (IsA photographic_equipment equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photographic paper is a kind of photographic equipment", "pln": ["(: cnet_isa_d76d211c5e (IsA photographic_paper photographic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photographic print is a kind of picture", "pln": ["(: cnet_isa_f7b6f4e73a (IsA photographic_print picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photograph is a kind of picture", "pln": ["(: cnet_isa_371593e634 (IsA photograph picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photography is a kind of pictorial representation", "pln": ["(: cnet_isa_ab20c15c14 (IsA photography pictorial_representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photography is a kind of occupation", "pln": ["(: cnet_isa_33c04fa480 (IsA photography occupation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photography is a kind of process", "pln": ["(: cnet_isa_b3867bb5de (IsA photography process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photogravure is a kind of gravure", "pln": ["(: cnet_isa_be540bebd2 (IsA photogravure gravure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photogravure is a kind of intaglio printing", "pln": ["(: cnet_isa_2bfe1de595 (IsA photogravure intaglio_printing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photojournalism is a kind of journalism", "pln": ["(: cnet_isa_cd868eeec1 (IsA photojournalism journalism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photojournalist is a kind of journalist", "pln": ["(: cnet_isa_26c8ed6a25 (IsA photojournalist journalist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photolithograph is a kind of lithograph", "pln": ["(: cnet_isa_3df96d9968 (IsA photolithograph lithograph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photolithography is a kind of lithography", "pln": ["(: cnet_isa_d42e86e3b5 (IsA photolithography lithography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photomechanic is a kind of technique", "pln": ["(: cnet_isa_a6384274a7 (IsA photomechanic technique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photomechanic is a kind of photography", "pln": ["(: cnet_isa_9d0cf92a31 (IsA photomechanic photography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photometer is a kind of measuring instrument", "pln": ["(: cnet_isa_066d6af5a0 (IsA photometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photometrist is a kind of measurer", "pln": ["(: cnet_isa_a137673381 (IsA photometrist measurer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photometry is a kind of measurement", "pln": ["(: cnet_isa_04d915df9e (IsA photometry measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photomicrograph is a kind of picture", "pln": ["(: cnet_isa_4d3a117012 (IsA photomicrograph picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "photomontage is a kind of collage", "pln": ["(: cnet_isa_0f50a0e72a (IsA photomontage collage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photon is a kind of boson", "pln": ["(: cnet_isa_28af59c917 (IsA photon boson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photon is a kind of elementary particle", "pln": ["(: cnet_isa_c815a8ed87 (IsA photon elementary_particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photon is a kind of gauge boson", "pln": ["(: cnet_isa_bbb8e29ace (IsA photon gauge_boson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "photophobia is a kind of simple phobia", "pln": ["(: cnet_isa_8a6526c4aa (IsA photophobia simple_phobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photopigment is a kind of pigment", "pln": ["(: cnet_isa_5fe6bf0779 (IsA photopigment pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photoretinitis is a kind of visual impairment", "pln": ["(: cnet_isa_7bee8904de (IsA photoretinitis visual_impairment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photosensitivity is a kind of sensitivity", "pln": ["(: cnet_isa_b7223fa349 (IsA photosensitivity sensitivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photosphere is a kind of surface", "pln": ["(: cnet_isa_4efec33a18 (IsA photosphere surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photostat is a kind of photocopy", "pln": ["(: cnet_isa_f52aea3e5d (IsA photostat photocopy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "photosynthesis is a kind of chemical process", "pln": ["(: cnet_isa_f9e45ddd1e (IsA photosynthesis chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phototherapy is a kind of radiotherapy", "pln": ["(: cnet_isa_92e2f5a0dc (IsA phototherapy radiotherapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phototrophic bacteria is a kind of eubacteria", "pln": ["(: cnet_isa_30e4e0adc7 (IsA phototrophic_bacteria eubacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phototropism is a kind of tropism", "pln": ["(: cnet_isa_db34bab9c5 (IsA phototropism tropism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phoxinus is a kind of fish genus", "pln": ["(: cnet_isa_5589041048 (IsA phoxinus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phragmipedium is a kind of monocot genus", "pln": ["(: cnet_isa_a99413da4c (IsA phragmipedium monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phragmite is a kind of monocot genus", "pln": ["(: cnet_isa_5051399adf (IsA phragmite monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phragmocone is a kind of shell", "pln": ["(: cnet_isa_76e7ec2d10 (IsA phragmocone shell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phrasal verb is a kind of verb", "pln": ["(: cnet_isa_8035695341 (IsA phrasal_verb verb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phrase is a kind of dancing", "pln": ["(: cnet_isa_5d9d82edbe (IsA phrase dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phrase is a kind of construction", "pln": ["(: cnet_isa_e0a4470b2c (IsA phrase construction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phrase is a kind of passage", "pln": ["(: cnet_isa_9a109a1576 (IsA phrase passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phrase book is a kind of book", "pln": ["(: cnet_isa_8425d2f6b3 (IsA phrase_book book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phrasing is a kind of grouping", "pln": ["(: cnet_isa_2bc70085bf (IsA phrasing grouping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phrenic nerve is a kind of spinal nerve", "pln": ["(: cnet_isa_2fd8f5a72d (IsA phrenic_nerve spinal_nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phrenic vein is a kind of vein", "pln": ["(: cnet_isa_4a96108181 (IsA phrenic_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phrenologist is a kind of mountebank", "pln": ["(: cnet_isa_68a78e35d0 (IsA phrenologist mountebank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phrenology is a kind of craniology", "pln": ["(: cnet_isa_93d301e6ea (IsA phrenology craniology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phrontistery is a kind of establishment", "pln": ["(: cnet_isa_06dc35eec9 (IsA phrontistery establishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phrygian is a kind of thraco phrygian", "pln": ["(: cnet_isa_ee32376b4b (IsA phrygian thraco_phrygian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phrygian is a kind of inhabitant", "pln": ["(: cnet_isa_3beb6851f2 (IsA phrygian inhabitant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phrygian deity is a kind of deity", "pln": ["(: cnet_isa_e5a1a13953 (IsA phrygian_deity deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phrynosoma is a kind of reptile genus", "pln": ["(: cnet_isa_19cd63406d (IsA phrynosoma reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "phthalic acid is a kind of acid", "pln": ["(: cnet_isa_45ffff4e58 (IsA phthalic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phthalic anhydride is a kind of anhydride", "pln": ["(: cnet_isa_b779463e63 (IsA phthalic_anhydride anhydride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phthiriidae is a kind of arthropod family", "pln": ["(: cnet_isa_dbaba244a6 (IsA phthiriidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phthirius is a kind of arthropod genus", "pln": ["(: cnet_isa_722fe94bdd (IsA phthirius arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phthorimaea is a kind of arthropod genus", "pln": ["(: cnet_isa_a74a0277de (IsA phthorimaea arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "phycobilin is a kind of pigment", "pln": ["(: cnet_isa_5bcbdf7b2c (IsA phycobilin pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "phycocyanin is a kind of pigment", "pln": ["(: cnet_isa_5cacb3afb9 (IsA phycocyanin pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phycoerythrin is a kind of pigment", "pln": ["(: cnet_isa_39525235a9 (IsA phycoerythrin pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phycology is a kind of botany", "pln": ["(: cnet_isa_ffcf9acc9c (IsA phycology botany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phycomycete is a kind of taxonomic group", "pln": ["(: cnet_isa_2dcf36d7b8 (IsA phycomycete taxonomic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "phycomycosis is a kind of fungal infection", "pln": ["(: cnet_isa_1bd5999e8d (IsA phycomycosis fungal_infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phylactery is a kind of reminder", "pln": ["(: cnet_isa_e2f821270f (IsA phylactery reminder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phyle is a kind of tribe", "pln": ["(: cnet_isa_69d7845e44 (IsA phyle tribe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phyllidae is a kind of arthropod family", "pln": ["(: cnet_isa_ff1a96185b (IsA phyllidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "phyllitis is a kind of fern genus", "pln": ["(: cnet_isa_b347d578c9 (IsA phyllitis fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phyllium is a kind of arthropod genus", "pln": ["(: cnet_isa_6c45238e5e (IsA phyllium arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phyllo is a kind of puff paste", "pln": ["(: cnet_isa_e315863510 (IsA phyllo puff_paste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phyllocladaceae is a kind of gymnosperm family", "pln": ["(: cnet_isa_5e4d27492a (IsA phyllocladaceae gymnosperm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phyllocladus is a kind of gymnosperm genus", "pln": ["(: cnet_isa_43aa97558f (IsA phyllocladus gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phyllode is a kind of petiole", "pln": ["(: cnet_isa_185ac221e6 (IsA phyllode petiole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phyllodoce is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_e55a61fa46 (IsA phyllodoce dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phylloporus is a kind of fungus genus", "pln": ["(: cnet_isa_0165b4d3f3 (IsA phylloporus fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phylloporus boletinoide is a kind of bolete", "pln": ["(: cnet_isa_4beeadab1a (IsA phylloporus_boletinoide bolete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phyllorhynchus is a kind of reptile genus", "pln": ["(: cnet_isa_4a5240a82f (IsA phyllorhynchus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phylloscopus is a kind of bird genus", "pln": ["(: cnet_isa_08ba7302b3 (IsA phylloscopus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phyllostachy is a kind of monocot genus", "pln": ["(: cnet_isa_4ad0fe1d3f (IsA phyllostachy monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phyllostomidae is a kind of mammal family", "pln": ["(: cnet_isa_63993cfa10 (IsA phyllostomidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phyllostomus is a kind of mammal genus", "pln": ["(: cnet_isa_1566e5640e (IsA phyllostomus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phyllostomus hastatus is a kind of leafnose bat", "pln": ["(: cnet_isa_b8626ba9a7 (IsA phyllostomus_hastatus leafnose_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phylloxera is a kind of arthropod genus", "pln": ["(: cnet_isa_d892f6d62c (IsA phylloxera arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phylloxeridae is a kind of arthropod family", "pln": ["(: cnet_isa_fdd4bc5e27 (IsA phylloxeridae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phylum is a kind of taxonomic group", "pln": ["(: cnet_isa_6694037892 (IsA phylum taxonomic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phylum is a kind of social group", "pln": ["(: cnet_isa_0ca7161003 (IsA phylum social_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physa is a kind of gastropod", "pln": ["(: cnet_isa_5dd583ff42 (IsA physa gastropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physalia is a kind of coelenterate genus", "pln": ["(: cnet_isa_a6477d9ce5 (IsA physalia coelenterate_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physalis is a kind of asterid dicot genus", "pln": ["(: cnet_isa_22903e3a73 (IsA physalis asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physaria is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_003a84ee9c (IsA physaria dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physeter is a kind of mammal genus", "pln": ["(: cnet_isa_aa1dc74ae6 (IsA physeter mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "physeteridae is a kind of mammal family", "pln": ["(: cnet_isa_a49d3cba3e (IsA physeteridae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physic nut is a kind of angiospermous tree", "pln": ["(: cnet_isa_bfb0944b4b (IsA physic_nut angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physical ability is a kind of ability", "pln": ["(: cnet_isa_fc5c485ee0 (IsA physical_ability ability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physical anthropology is a kind of anthropology", "pln": ["(: cnet_isa_78f09bb443 (IsA physical_anthropology anthropology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physical chemistry is a kind of chemistry", "pln": ["(: cnet_isa_c59d70e931 (IsA physical_chemistry chemistry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physical education is a kind of education", "pln": ["(: cnet_isa_9d77b12c1d (IsA physical_education education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physical entity is a kind of entity", "pln": ["(: cnet_isa_b7059608d1 (IsA physical_entity entity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physical geography is a kind of geography", "pln": ["(: cnet_isa_589e9721bb (IsA physical_geography geography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physical pendulum is a kind of pendulum", "pln": ["(: cnet_isa_83dffe357b (IsA physical_pendulum pendulum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physical phenomenon is a kind of natural phenomenon", "pln": ["(: cnet_isa_1f96cfffe0 (IsA physical_phenomenon natural_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physical property is a kind of property", "pln": ["(: cnet_isa_868cf2eb2a (IsA physical_property property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physical rehabilitation is a kind of rehabilitation", "pln": ["(: cnet_isa_0b3674fb86 (IsA physical_rehabilitation rehabilitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physical science is a kind of natural science", "pln": ["(: cnet_isa_973b049afd (IsA physical_science natural_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "physical therapist is a kind of therapist", "pln": ["(: cnet_isa_a765330a61 (IsA physical_therapist therapist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physical therapy is a kind of therapy", "pln": ["(: cnet_isa_65b6f0b047 (IsA physical_therapy therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physical topology is a kind of topology", "pln": ["(: cnet_isa_181bebf95f (IsA physical_topology topology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physician is a kind of medical doctor", "pln": ["(: cnet_isa_3177e94a25 (IsA physician medical_doctor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physician assisted suicide is a kind of assisted suicide", "pln": ["(: cnet_isa_b152143b9f (IsA physician_assisted_suicide assisted_suicide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physician patient privilege is a kind of privilege", "pln": ["(: cnet_isa_da669de409 (IsA physician_patient_privilege privilege) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physicist is a kind of scientist", "pln": ["(: cnet_isa_435bd54c46 (IsA physicist scientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physic is a kind of science", "pln": ["(: cnet_isa_aed18750a4 (IsA physic science) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physic is a kind of natural science", "pln": ["(: cnet_isa_b6d96901f4 (IsA physic natural_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physic department is a kind of academic department", "pln": ["(: cnet_isa_8f2d6c312c (IsA physic_department academic_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physic lab is a kind of lab", "pln": ["(: cnet_isa_9439115891 (IsA physic_lab lab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physidae is a kind of mollusk family", "pln": ["(: cnet_isa_f23069e2f9 (IsA physidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physiological nystagmus is a kind of nystagmus", "pln": ["(: cnet_isa_4b5c7cc17c (IsA physiological_nystagmus nystagmus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physiological property is a kind of bodily property", "pln": ["(: cnet_isa_9255eb65ee (IsA physiological_property bodily_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physiological psychology is a kind of psychology", "pln": ["(: cnet_isa_74341b122a (IsA physiological_psychology psychology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "physiological sphincter is a kind of sphincter", "pln": ["(: cnet_isa_da9499ad08 (IsA physiological_sphincter sphincter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physiological state is a kind of condition", "pln": ["(: cnet_isa_2eab122e70 (IsA physiological_state condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physiologist is a kind of biologist", "pln": ["(: cnet_isa_399cc22c50 (IsA physiologist biologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "physiology is a kind of bodily property", "pln": ["(: cnet_isa_7617247f8f (IsA physiology bodily_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physiology is a kind of biology", "pln": ["(: cnet_isa_1740d55507 (IsA physiology biology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physique is a kind of bodily property", "pln": ["(: cnet_isa_32a3c24668 (IsA physique bodily_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physostegia is a kind of herb", "pln": ["(: cnet_isa_c4e38fb6c6 (IsA physostegia herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physostigma is a kind of plant genus", "pln": ["(: cnet_isa_84ed79ae77 (IsA physostigma plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "physostigmine is a kind of alkaloid", "pln": ["(: cnet_isa_8896a6ef6f (IsA physostigmine alkaloid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phytelepha is a kind of plant genus", "pln": ["(: cnet_isa_3fd5b77bd8 (IsA phytelepha plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phytochemical is a kind of chemical", "pln": ["(: cnet_isa_50192f5811 (IsA phytochemical chemical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phytochemist is a kind of chemist", "pln": ["(: cnet_isa_fac83532c9 (IsA phytochemist chemist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "phytochemistry is a kind of organic chemistry", "pln": ["(: cnet_isa_6e6005a1d9 (IsA phytochemistry organic_chemistry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phytohormone is a kind of plant product", "pln": ["(: cnet_isa_0cdece47de (IsA phytohormone plant_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "phytolacca is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_dd1a3b721b (IsA phytolacca caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phytolaccaceae is a kind of caryophylloid dicot family", "pln": ["(: cnet_isa_fd0452cc57 (IsA phytolaccaceae caryophylloid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phytomastigina is a kind of class", "pln": ["(: cnet_isa_e4f43f0f34 (IsA phytomastigina class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phytophthora is a kind of fungus genus", "pln": ["(: cnet_isa_4c9f738930 (IsA phytophthora fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phytophthora citrophthora is a kind of fungus", "pln": ["(: cnet_isa_1bb3e0ffa5 (IsA phytophthora_citrophthora fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phytophthora infestan is a kind of fungus", "pln": ["(: cnet_isa_13673b39c5 (IsA phytophthora_infestan fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phytoplankton is a kind of plant", "pln": ["(: cnet_isa_e33c3019f1 (IsA phytoplankton plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "phytotherapy is a kind of therapy", "pln": ["(: cnet_isa_59c98d1b61 (IsA phytotherapy therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pi is a kind of 3 1415926535897932384626433832795028841971693993751", "pln": ["(: cnet_isa_541e811a52 (IsA pi 3_1415926535897932384626433832795028841971693993751) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pi is a kind of approximately 3 141592653589793238462643383279502", "pln": ["(: cnet_isa_d54c2bbaf2 (IsA pi approximately_3_141592653589793238462643383279502) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pi is a kind of approximately 3 1415926535897932384626433832795028841971693993751", "pln": ["(: cnet_isa_caf15f98a3 (IsA pi approximately_3_1415926535897932384626433832795028841971693993751) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pi is a kind of irrational number", "pln": ["(: cnet_isa_f28898edd6 (IsA pi irrational_number) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pi is a kind of mathematical concept", "pln": ["(: cnet_isa_00ee4f349c (IsA pi mathematical_concept) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pi is a kind of mathematical constant", "pln": ["(: cnet_isa_e8afb787d5 (IsA pi mathematical_constant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pi is a kind of rounded to 3 14", "pln": ["(: cnet_isa_29c97a1bc4 (IsA pi rounded_to_3_14) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pi is a kind of transendental number", "pln": ["(: cnet_isa_9e7dab2ca2 (IsA pi transendental_number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pi is a kind of letter", "pln": ["(: cnet_isa_e0dd7b592b (IsA pi letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pi is a kind of transcendental number", "pln": ["(: cnet_isa_6483b43309 (IsA pi transcendental_number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pia is a kind of herb", "pln": ["(: cnet_isa_787ecd10b1 (IsA pia herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pia mater is a kind of meninx", "pln": ["(: cnet_isa_3faef6b070 (IsA pia_mater meninx) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piaffe is a kind of dressage", "pln": ["(: cnet_isa_67f422819f (IsA piaffe dressage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pianism is a kind of performance", "pln": ["(: cnet_isa_ce7583f3a6 (IsA pianism performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pianist is a kind of musician", "pln": ["(: cnet_isa_783fa00c68 (IsA pianist musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piano is a kind of instrument", "pln": ["(: cnet_isa_1c0fa62c68 (IsA piano instrument) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "piano is a kind of instrument for playing music", "pln": ["(: cnet_isa_158ae429ff (IsA piano instrument_for_playing_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piano is a kind of instrument of music", "pln": ["(: cnet_isa_79a90fbd7a (IsA piano instrument_of_music) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piano is a kind of percussion instrument", "pln": ["(: cnet_isa_9e826dddd2 (IsA piano percussion_instrument) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piano is a kind of keyboard instrument", "pln": ["(: cnet_isa_bcdb25835f (IsA piano keyboard_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piano is a kind of stringed instrument", "pln": ["(: cnet_isa_adf26a879d (IsA piano stringed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piano is a kind of softness", "pln": ["(: cnet_isa_3851ba1ef9 (IsA piano softness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piano action is a kind of action", "pln": ["(: cnet_isa_a0b6f4f536 (IsA piano_action action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piano keyboard is a kind of keyboard", "pln": ["(: cnet_isa_7d960b9e90 (IsA piano_keyboard keyboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piano lesson is a kind of music lesson", "pln": ["(: cnet_isa_e3817f77f5 (IsA piano_lesson music_lesson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piano maker is a kind of maker", "pln": ["(: cnet_isa_4fefb48d3f (IsA piano_maker maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piano music is a kind of music", "pln": ["(: cnet_isa_00777989b3 (IsA piano_music music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piano music is a kind of sheet music", "pln": ["(: cnet_isa_7119899816 (IsA piano_music sheet_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piano sonata is a kind of sonata", "pln": ["(: cnet_isa_787ebdde2e (IsA piano_sonata sonata) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piano teacher is a kind of music teacher", "pln": ["(: cnet_isa_b2f15838bf (IsA piano_teacher music_teacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piano wire is a kind of wire", "pln": ["(: cnet_isa_574f61dc66 (IsA piano_wire wire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piano is a kind of furniture", "pln": ["(: cnet_isa_a629119f1f (IsA piano furniture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piassava palm is a kind of feather palm", "pln": ["(: cnet_isa_e39013bc6e (IsA piassava_palm feather_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piaster is a kind of fractional monetary unit", "pln": ["(: cnet_isa_63019e7df7 (IsA piaster fractional_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pibroch is a kind of military march", "pln": ["(: cnet_isa_f09b0b2d0a (IsA pibroch military_march) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pica is a kind of bird genus", "pln": ["(: cnet_isa_2812052ac8 (IsA pica bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pica is a kind of eating disorder", "pln": ["(: cnet_isa_8414e36538 (IsA pica eating_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picador is a kind of bullfighter", "pln": ["(: cnet_isa_cd331e294e (IsA picador bullfighter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picador is a kind of horseman", "pln": ["(: cnet_isa_a59e19652e (IsA picador horseman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picariae is a kind of animal order", "pln": ["(: cnet_isa_8507bb22ab (IsA picariae animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piccalilli is a kind of relish", "pln": ["(: cnet_isa_a55bf9bc8c (IsA piccalilli relish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piccolo is a kind of musical instrument", "pln": ["(: cnet_isa_d9516a44ed (IsA piccolo musical_instrument) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piccolo is a kind of flute", "pln": ["(: cnet_isa_9db2618912 (IsA piccolo flute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picea is a kind of gymnosperm genus", "pln": ["(: cnet_isa_1c0037ea3c (IsA picea gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pichi is a kind of shrub", "pln": ["(: cnet_isa_ccfb707577 (IsA pichi shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pichiciago is a kind of armadillo", "pln": ["(: cnet_isa_c07a0aa14d (IsA pichiciago armadillo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picidae is a kind of bird family", "pln": ["(: cnet_isa_50d0b21173 (IsA picidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "piciform bird is a kind of bird", "pln": ["(: cnet_isa_1a4cb0ef39 (IsA piciform_bird bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piciforme is a kind of animal order", "pln": ["(: cnet_isa_575ea47fd9 (IsA piciforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pick s disease is a kind of presenile dementia", "pln": ["(: cnet_isa_51b9de4200 (IsA pick_s_disease presenile_dementia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pick is a kind of basketball play", "pln": ["(: cnet_isa_5bfa07b39b (IsA pick basketball_play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pick is a kind of device", "pln": ["(: cnet_isa_9f5e923fb2 (IsA pick device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pick is a kind of edge tool", "pln": ["(: cnet_isa_f1e7072a41 (IsA pick edge_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pick is a kind of hand tool", "pln": ["(: cnet_isa_30b875d27a (IsA pick hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pick off is a kind of baseball play", "pln": ["(: cnet_isa_5cef6b8aff (IsA pick_off baseball_play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pickaback plant is a kind of herb", "pln": ["(: cnet_isa_74b37b56f9 (IsA pickaback_plant herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pickaninny is a kind of child", "pln": ["(: cnet_isa_83d3bb29be (IsA pickaninny child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pickaninny is a kind of negroid", "pln": ["(: cnet_isa_d806796ad0 (IsA pickaninny negroid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pickelhaube is a kind of helmet", "pln": ["(: cnet_isa_b2b606f8a0 (IsA pickelhaube helmet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picker is a kind of farmhand", "pln": ["(: cnet_isa_421fe86f26 (IsA picker farmhand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picker is a kind of person", "pln": ["(: cnet_isa_b44f45427f (IsA picker person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pickerel is a kind of pike", "pln": ["(: cnet_isa_26aed36f2b (IsA pickerel pike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pickerel frog is a kind of true frog", "pln": ["(: cnet_isa_fcf71347c4 (IsA pickerel_frog true_frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pickerelweed is a kind of aquatic plant", "pln": ["(: cnet_isa_c2ceb0a015 (IsA pickerelweed aquatic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pickeringia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_b81f268cc6 (IsA pickeringia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picket is a kind of torture", "pln": ["(: cnet_isa_0b76408651 (IsA picket torture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picket is a kind of strip", "pln": ["(: cnet_isa_5efa62df62 (IsA picket strip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picket is a kind of detachment", "pln": ["(: cnet_isa_50af4e2083 (IsA picket detachment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picket is a kind of military vehicle", "pln": ["(: cnet_isa_a528092046 (IsA picket military_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picket is a kind of demonstrator", "pln": ["(: cnet_isa_8024877b49 (IsA picket demonstrator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "picket boat is a kind of picket", "pln": ["(: cnet_isa_13eed7aed5 (IsA picket_boat picket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picket fence is a kind of fence", "pln": ["(: cnet_isa_ac7d078f00 (IsA picket_fence fence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "picket line is a kind of line", "pln": ["(: cnet_isa_8f21b6d905 (IsA picket_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "pickings is a kind of action", "pln": ["(: cnet_isa_29a17fbaed (IsA pickings action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picket ship is a kind of picket", "pln": ["(: cnet_isa_b249493c2a (IsA picket_ship picket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picking is a kind of manual labor", "pln": ["(: cnet_isa_62e8c6477d (IsA picking manual_labor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picking is a kind of output", "pln": ["(: cnet_isa_37c14ef52d (IsA picking output) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picking is a kind of action", "pln": ["(: cnet_isa_d721da90a2 (IsA picking action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pickle is a kind of cucumber", "pln": ["(: cnet_isa_a46792dce8 (IsA pickle cucumber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pickle is a kind of relish", "pln": ["(: cnet_isa_b145216ddc (IsA pickle relish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pickle barrel is a kind of barrel", "pln": ["(: cnet_isa_48a0ecc96d (IsA pickle_barrel barrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pickle relish is a kind of relish", "pln": ["(: cnet_isa_bfdbadf4c6 (IsA pickle_relish relish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pickled herring is a kind of herring", "pln": ["(: cnet_isa_733ab6d2cb (IsA pickled_herring herring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pickpocket is a kind of enemy", "pln": ["(: cnet_isa_5fe37ff6d4 (IsA pickpocket enemy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pickpocket is a kind of thief", "pln": ["(: cnet_isa_d40f77ec54 (IsA pickpocket thief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pickup is a kind of acquiring", "pln": ["(: cnet_isa_639bb22e30 (IsA pickup acquiring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pickup is a kind of collection", "pln": ["(: cnet_isa_93af7a7cec (IsA pickup collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pickup is a kind of corrective", "pln": ["(: cnet_isa_4dcf558a03 (IsA pickup corrective) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pickup is a kind of truck", "pln": ["(: cnet_isa_2fbecf77ef (IsA pickup truck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pickup is a kind of acceleration", "pln": ["(: cnet_isa_c41d8d519f (IsA pickup acceleration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pickup is a kind of bench warrant", "pln": ["(: cnet_isa_57a37b699f (IsA pickup bench_warrant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pickup is a kind of acquaintance", "pln": ["(: cnet_isa_a6b82e01f2 (IsA pickup acquaintance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picnic is a kind of meal", "pln": ["(: cnet_isa_c3a299fb2f (IsA picnic meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picnic area is a kind of tract", "pln": ["(: cnet_isa_67821160ad (IsA picnic_area tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picnic ham is a kind of cut of pork", "pln": ["(: cnet_isa_3f9bae4395 (IsA picnic_ham cut_of_pork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picnicker is a kind of eater", "pln": ["(: cnet_isa_f76cf7664c (IsA picnicker eater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picofarad is a kind of capacitance unit", "pln": ["(: cnet_isa_9f2c4d6349 (IsA picofarad capacitance_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picoide is a kind of bird genus", "pln": ["(: cnet_isa_6119f88478 (IsA picoide bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picometer is a kind of metric linear unit", "pln": ["(: cnet_isa_c41d0440e9 (IsA picometer metric_linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "picornavirus is a kind of animal virus", "pln": ["(: cnet_isa_8371313c71 (IsA picornavirus animal_virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picosecond is a kind of time unit", "pln": ["(: cnet_isa_932840cbc9 (IsA picosecond time_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "picot is a kind of embroidery stitch", "pln": ["(: cnet_isa_3ffe7d163a (IsA picot embroidery_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picovolt is a kind of potential unit", "pln": ["(: cnet_isa_c22c7733bc (IsA picovolt potential_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "picrasma is a kind of rosid dicot genus", "pln": ["(: cnet_isa_bb39f48a6b (IsA picrasma rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picric acid is a kind of acid", "pln": ["(: cnet_isa_6f79f9e70b (IsA picric_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picris is a kind of asterid dicot genus", "pln": ["(: cnet_isa_2a94e8fecc (IsA picris asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pictograph is a kind of character", "pln": ["(: cnet_isa_dd1fb89544 (IsA pictograph character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pictorial is a kind of periodical", "pln": ["(: cnet_isa_8ab5ae2e88 (IsA pictorial periodical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pictorial representation is a kind of representation", "pln": ["(: cnet_isa_5d8de58348 (IsA pictorial_representation representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picture is a kind of representation", "pln": ["(: cnet_isa_d3315069fe (IsA picture representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picture is a kind of typification", "pln": ["(: cnet_isa_d6c3ad140d (IsA picture typification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picture is a kind of illustration", "pln": ["(: cnet_isa_ec3370f6b1 (IsA picture illustration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picture is a kind of situation", "pln": ["(: cnet_isa_fbe2aace8f (IsA picture situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picture book is a kind of book", "pln": ["(: cnet_isa_e8ad473448 (IsA picture_book book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picture frame is a kind of framework", "pln": ["(: cnet_isa_5b8acc55ec (IsA picture_frame framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picture hat is a kind of millinery", "pln": ["(: cnet_isa_de26d6a37b (IsA picture_hat millinery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picture plane is a kind of plane", "pln": ["(: cnet_isa_499829b523 (IsA picture_plane plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picture postcard is a kind of postcard", "pln": ["(: cnet_isa_722362ce43 (IsA picture_postcard postcard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picture rail is a kind of rail", "pln": ["(: cnet_isa_f5b3dc4383 (IsA picture_rail rail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picture window is a kind of window", "pln": ["(: cnet_isa_93103db91f (IsA picture_window window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picture writing is a kind of orthography", "pln": ["(: cnet_isa_58c6642992 (IsA picture_writing orthography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picturesqueness is a kind of beauty", "pln": ["(: cnet_isa_b16bf07033 (IsA picturesqueness beauty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picturesqueness is a kind of expressiveness", "pln": ["(: cnet_isa_6ee13f2567 (IsA picturesqueness expressiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picturing is a kind of imagination", "pln": ["(: cnet_isa_728806cc42 (IsA picturing imagination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "picul is a kind of weight unit", "pln": ["(: cnet_isa_64ce430fcc (IsA picul weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piculet is a kind of woodpecker", "pln": ["(: cnet_isa_5678c9ec81 (IsA piculet woodpecker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picumnus is a kind of bird genus", "pln": ["(: cnet_isa_98416ba6ce (IsA picumnus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "picus is a kind of bird genus", "pln": ["(: cnet_isa_352fa2f06d (IsA picus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piddock is a kind of bivalve", "pln": ["(: cnet_isa_5112b9e784 (IsA piddock bivalve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pidgin is a kind of artificial language", "pln": ["(: cnet_isa_dbb6d44ac7 (IsA pidgin artificial_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pie is a kind of pastry", "pln": ["(: cnet_isa_8fd155b8f6 (IsA pie pastry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pie chart is a kind of chart", "pln": ["(: cnet_isa_252f737837 (IsA pie_chart chart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pie crust is a kind of pastry", "pln": ["(: cnet_isa_d83baa5358 (IsA pie_crust pastry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pie plant is a kind of rhubarb", "pln": ["(: cnet_isa_23ba880ee0 (IsA pie_plant rhubarb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piece is a kind of part of whole", "pln": ["(: cnet_isa_94a12fbf8e (IsA piece part_of_whole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piece is a kind of item", "pln": ["(: cnet_isa_bff9ef0e6a (IsA piece item) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piece is a kind of part", "pln": ["(: cnet_isa_a6bc3e113c (IsA piece part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piece is a kind of distance", "pln": ["(: cnet_isa_45569fb99b (IsA piece distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "piece is a kind of creation", "pln": ["(: cnet_isa_05c4366fa2 (IsA piece creation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "pigs feet is a kind of pork", "pln": ["(: cnet_isa_f24af2099b (IsA pigs_feet pork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piece is a kind of case", "pln": ["(: cnet_isa_2b3353ab31 (IsA piece case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piece is a kind of helping", "pln": ["(: cnet_isa_a511dd9cfd (IsA piece helping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piece de resistance is a kind of dish", "pln": ["(: cnet_isa_99cc020530 (IsA piece_de_resistance dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piece of cloth is a kind of fabric", "pln": ["(: cnet_isa_c713f195fd (IsA piece_of_cloth fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piece of cloth is a kind of piece", "pln": ["(: cnet_isa_5daf96d6ca (IsA piece_of_cloth piece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piece of eight is a kind of coin", "pln": ["(: cnet_isa_05abfab6f8 (IsA piece_of_eight coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piece of leather is a kind of leather", "pln": ["(: cnet_isa_7d6843d5f5 (IsA piece_of_leather leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piece of leather is a kind of piece", "pln": ["(: cnet_isa_0658bebd02 (IsA piece_of_leather piece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piecework is a kind of employment", "pln": ["(: cnet_isa_36ab09605b (IsA piecework employment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pied billed grebe is a kind of grebe", "pln": ["(: cnet_isa_d2da93aeeb (IsA pied_billed_grebe grebe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pied lemming is a kind of lemming", "pln": ["(: cnet_isa_ebc63d1249 (IsA pied_lemming lemming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pied piper is a kind of leader", "pln": ["(: cnet_isa_84e8883e61 (IsA pied_piper leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pied terre is a kind of housing", "pln": ["(: cnet_isa_0a05b9d9fb (IsA pied_terre housing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piedmont is a kind of slope", "pln": ["(: cnet_isa_3541c4c648 (IsA piedmont slope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piedmont glacier is a kind of glacier", "pln": ["(: cnet_isa_7e41b99bf1 (IsA piedmont_glacier glacier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pieplant is a kind of vegetable", "pln": ["(: cnet_isa_e0661440c6 (IsA pieplant vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pier is a kind of support", "pln": ["(: cnet_isa_58aefa22ff (IsA pier support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pier is a kind of platform", "pln": ["(: cnet_isa_f013151724 (IsA pier platform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pier arch is a kind of arch", "pln": ["(: cnet_isa_eecbccabab (IsA pier_arch arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pier glass is a kind of mirror", "pln": ["(: cnet_isa_099af5bd93 (IsA pier_glass mirror) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pier table is a kind of table", "pln": ["(: cnet_isa_26b94aff42 (IsA pier_table table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pierid is a kind of butterfly", "pln": ["(: cnet_isa_7074039589 (IsA pierid butterfly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pieridae is a kind of arthropod family", "pln": ["(: cnet_isa_74da448d26 (IsA pieridae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pieris is a kind of arthropod genus", "pln": ["(: cnet_isa_b1399c3d4c (IsA pieris arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pieris is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_fa129fbb2a (IsA pieris dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pieta is a kind of representation", "pln": ["(: cnet_isa_b96d822921 (IsA pieta representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pietism is a kind of religious movement", "pln": ["(: cnet_isa_757c48fae2 (IsA pietism religious_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piety is a kind of righteousness", "pln": ["(: cnet_isa_be5ac19f1f (IsA piety righteousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piezoelectric crystal is a kind of crystal", "pln": ["(: cnet_isa_32f4f05ea7 (IsA piezoelectric_crystal crystal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piezoelectricity is a kind of electricity", "pln": ["(: cnet_isa_89a5b04070 (IsA piezoelectricity electricity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piezometer is a kind of measuring instrument", "pln": ["(: cnet_isa_fdaeaa2cde (IsA piezometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pig s ear is a kind of agaric", "pln": ["(: cnet_isa_7f392dc9cc (IsA pig_s_ear agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pig is a kind of ingot", "pln": ["(: cnet_isa_e4817029f0 (IsA pig ingot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pig bed is a kind of mold", "pln": ["(: cnet_isa_d4b10fb18a (IsA pig_bed mold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pig iron is a kind of iron", "pln": ["(: cnet_isa_58e1a6528a (IsA pig_iron iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pig lead is a kind of lead", "pln": ["(: cnet_isa_b28bb10776 (IsA pig_lead lead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pigeon is a kind of columbiform bird", "pln": ["(: cnet_isa_2711abbae5 (IsA pigeon columbiform_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pigeon breast is a kind of deformity", "pln": ["(: cnet_isa_8900ced82f (IsA pigeon_breast deformity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pigeon dropping is a kind of dropping", "pln": ["(: cnet_isa_b503bc0ec6 (IsA pigeon_dropping dropping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pigeon guillemot is a kind of guillemot", "pln": ["(: cnet_isa_c78b90e71f (IsA pigeon_guillemot guillemot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pigeon hawk is a kind of falcon", "pln": ["(: cnet_isa_83a5d14d2c (IsA pigeon_hawk falcon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pigeon pea is a kind of shrub", "pln": ["(: cnet_isa_8a1e9f3a18 (IsA pigeon_pea shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pigeon toe is a kind of disability", "pln": ["(: cnet_isa_fe883eead4 (IsA pigeon_toe disability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pigeonhole is a kind of compartment", "pln": ["(: cnet_isa_2cbc39cc42 (IsA pigeonhole compartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pigeonhole is a kind of category", "pln": ["(: cnet_isa_3ce927c641 (IsA pigeonhole category) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pigfish is a kind of grunt", "pln": ["(: cnet_isa_6fd66ba577 (IsA pigfish grunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pigfish is a kind of wrasse", "pln": ["(: cnet_isa_56e6ab1cb3 (IsA pigfish wrasse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piggery is a kind of farm", "pln": ["(: cnet_isa_83e1f3aa68 (IsA piggery farm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piggy bank is a kind of saving bank", "pln": ["(: cnet_isa_c4ccacb861 (IsA piggy_bank saving_bank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piggyback is a kind of carry", "pln": ["(: cnet_isa_4c81de1f03 (IsA piggyback carry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piglet is a kind of fictional character", "pln": ["(: cnet_isa_018f7d1316 (IsA piglet fictional_character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piglet is a kind of young mammal", "pln": ["(: cnet_isa_79aa347b9f (IsA piglet young_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pigment is a kind of coloring material", "pln": ["(: cnet_isa_b7fd62328d (IsA pigment coloring_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pigmentation is a kind of coloration", "pln": ["(: cnet_isa_e12e0392c4 (IsA pigmentation coloration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pigmentation is a kind of deposition", "pln": ["(: cnet_isa_d0c6c2c09f (IsA pigmentation deposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pigmy is a kind of small person", "pln": ["(: cnet_isa_02c651fd68 (IsA pigmy small_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pigmy talinum is a kind of flame flower", "pln": ["(: cnet_isa_9588737b97 (IsA pigmy_talinum flame_flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pignut is a kind of hickory", "pln": ["(: cnet_isa_7faf11a421 (IsA pignut hickory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pig is a kind of mammal", "pln": ["(: cnet_isa_4cc74d81ff (IsA pig mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pig feet is a kind of pork", "pln": ["(: cnet_isa_b94f2dd3be (IsA pig_feet pork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pig in blanket is a kind of hor d oeuvre", "pln": ["(: cnet_isa_895f926cd3 (IsA pig_in_blanket hor_d_oeuvre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pigskin is a kind of leather", "pln": ["(: cnet_isa_71e8236603 (IsA pigskin leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pigsticking is a kind of hunt", "pln": ["(: cnet_isa_1c8fb6fd12 (IsA pigsticking hunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pigtail is a kind of braid", "pln": ["(: cnet_isa_4b3f87414a (IsA pigtail braid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pigweed is a kind of amaranth", "pln": ["(: cnet_isa_e4d96a7259 (IsA pigweed amaranth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pika is a kind of lagomorph", "pln": ["(: cnet_isa_fa525cc312 (IsA pika lagomorph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pike is a kind of fish", "pln": ["(: cnet_isa_224ee9897f (IsA pike fish) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pike is a kind of percoid fish", "pln": ["(: cnet_isa_062e6b862a (IsA pike percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pike is a kind of point", "pln": ["(: cnet_isa_cbd7f02234 (IsA pike point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pike is a kind of weapon", "pln": ["(: cnet_isa_bc19bc812c (IsA pike weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pike is a kind of freshwater fish", "pln": ["(: cnet_isa_0b420bf046 (IsA pike freshwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pike perch is a kind of perch", "pln": ["(: cnet_isa_f72c49730e (IsA pike_perch perch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pikeblenny is a kind of blennioid fish", "pln": ["(: cnet_isa_867b02b6f3 (IsA pikeblenny blennioid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piked reverse hang is a kind of reverse hang", "pln": ["(: cnet_isa_adb252edf3 (IsA piked_reverse_hang reverse_hang) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pikestaff is a kind of staff", "pln": ["(: cnet_isa_7ff92f8dc9 (IsA pikestaff staff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pilaf is a kind of dish", "pln": ["(: cnet_isa_9eb1c56d65 (IsA pilaf dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pilaster is a kind of column", "pln": ["(: cnet_isa_ceda4dc7d6 (IsA pilaster column) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pilchard is a kind of clupeid fish", "pln": ["(: cnet_isa_10ce5efc9c (IsA pilchard clupeid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pile is a kind of column", "pln": ["(: cnet_isa_9e4083c4d0 (IsA pile column) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pile is a kind of thread", "pln": ["(: cnet_isa_ffdb040ba5 (IsA pile thread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pile is a kind of collection", "pln": ["(: cnet_isa_265dd0e56f (IsA pile collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pile is a kind of money", "pln": ["(: cnet_isa_5c7032129c (IsA pile money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pile driver is a kind of machine", "pln": ["(: cnet_isa_7a62dcf16e (IsA pile_driver machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pilea is a kind of dicot genus", "pln": ["(: cnet_isa_c4745625e9 (IsA pilea dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pileup is a kind of collision", "pln": ["(: cnet_isa_5df0cfd17f (IsA pileup collision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pilferage is a kind of larceny", "pln": ["(: cnet_isa_d2af572a88 (IsA pilferage larceny) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pilgrim is a kind of believer", "pln": ["(: cnet_isa_09e3376b58 (IsA pilgrim believer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pilgrim is a kind of wayfarer", "pln": ["(: cnet_isa_ed9d06355c (IsA pilgrim wayfarer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pilgrim father is a kind of settler", "pln": ["(: cnet_isa_c6428183f0 (IsA pilgrim_father settler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pilgrimage is a kind of journey", "pln": ["(: cnet_isa_7df618fdbe (IsA pilgrimage journey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pill is a kind of contraceptive", "pln": ["(: cnet_isa_7f3e6ad2a8 (IsA pill contraceptive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pill is a kind of dose", "pln": ["(: cnet_isa_0b77377396 (IsA pill dose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pill is a kind of thing", "pln": ["(: cnet_isa_c286e2de14 (IsA pill thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pill is a kind of burden", "pln": ["(: cnet_isa_58bdadec63 (IsA pill burden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pill is a kind of unpleasant person", "pln": ["(: cnet_isa_aa2b56fa17 (IsA pill unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pill bottle is a kind of bottle", "pln": ["(: cnet_isa_0eb5932f1b (IsA pill_bottle bottle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pill bug is a kind of woodlouse", "pln": ["(: cnet_isa_831a8d231d (IsA pill_bug woodlouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pill head is a kind of head", "pln": ["(: cnet_isa_f0fd739f92 (IsA pill_head head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pillar is a kind of principle", "pln": ["(: cnet_isa_6f52cbe5a5 (IsA pillar principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pillar is a kind of supporter", "pln": ["(: cnet_isa_eee9a36ec1 (IsA pillar supporter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pillar box is a kind of postbox", "pln": ["(: cnet_isa_e54c21881d (IsA pillar_box postbox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pillar of islam is a kind of pillar", "pln": ["(: cnet_isa_4fee787326 (IsA pillar_of_islam pillar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pillbox is a kind of case", "pln": ["(: cnet_isa_41d8e00963 (IsA pillbox case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pillbox is a kind of gun emplacement", "pln": ["(: cnet_isa_335094d377 (IsA pillbox gun_emplacement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pillbox is a kind of millinery", "pln": ["(: cnet_isa_7c39dfd061 (IsA pillbox millinery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pillion is a kind of seat", "pln": ["(: cnet_isa_1b7a530eb8 (IsA pillion seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pillory is a kind of instrument of punishment", "pln": ["(: cnet_isa_af0473cfdc (IsA pillory instrument_of_punishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pillow is a kind of cushion", "pln": ["(: cnet_isa_3bb300312c (IsA pillow cushion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pillow block is a kind of support", "pln": ["(: cnet_isa_1b5027b507 (IsA pillow_block support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pillow fight is a kind of game", "pln": ["(: cnet_isa_0dd750db44 (IsA pillow_fight game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pillow fight is a kind of child s game", "pln": ["(: cnet_isa_d8e3d51717 (IsA pillow_fight child_s_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pillow lace is a kind of lace", "pln": ["(: cnet_isa_4ce9ae919a (IsA pillow_lace lace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pillow lava is a kind of lava", "pln": ["(: cnet_isa_de849c8ee7 (IsA pillow_lava lava) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pillow sham is a kind of bed linen", "pln": ["(: cnet_isa_9fa23a48fd (IsA pillow_sham bed_linen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pillow talk is a kind of tete tete", "pln": ["(: cnet_isa_706b600449 (IsA pillow_talk tete_tete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pillowcase is a kind of cover for pillow", "pln": ["(: cnet_isa_7e7194b144 (IsA pillowcase cover_for_pillow) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pill is a kind of medicine", "pln": ["(: cnet_isa_87dd2594ac (IsA pill medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pillwort is a kind of aquatic fern", "pln": ["(: cnet_isa_6c4c8dfd5f (IsA pillwort aquatic_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pilocarpine is a kind of alkaloid", "pln": ["(: cnet_isa_92d54cf5a4 (IsA pilocarpine alkaloid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pilomotor reflex is a kind of reflex", "pln": ["(: cnet_isa_efadaf18a3 (IsA pilomotor_reflex reflex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pilosella is a kind of asterid dicot genus", "pln": ["(: cnet_isa_1d8894b6ce (IsA pilosella asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pilot is a kind of aviator", "pln": ["(: cnet_isa_57a292ec79 (IsA pilot aviator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pilot is a kind of mariner", "pln": ["(: cnet_isa_1c9a8752f5 (IsA pilot mariner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pilot balloon is a kind of meteorological balloon", "pln": ["(: cnet_isa_17c4106b1d (IsA pilot_balloon meteorological_balloon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pilot bit is a kind of bit", "pln": ["(: cnet_isa_18a3a4698f (IsA pilot_bit bit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pilot boat is a kind of boat", "pln": ["(: cnet_isa_a3d1aa6992 (IsA pilot_boat boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pilot burner is a kind of gas burner", "pln": ["(: cnet_isa_7fe37ea076 (IsA pilot_burner gas_burner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pilot cloth is a kind of fabric", "pln": ["(: cnet_isa_de15dd1943 (IsA pilot_cloth fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pilot engine is a kind of locomotive", "pln": ["(: cnet_isa_6917706af8 (IsA pilot_engine locomotive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pilot experiment is a kind of experiment", "pln": ["(: cnet_isa_1b287aad2b (IsA pilot_experiment experiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pilot light is a kind of indicator", "pln": ["(: cnet_isa_408094c3d7 (IsA pilot_light indicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pilot program is a kind of television program", "pln": ["(: cnet_isa_bd27ea2dbb (IsA pilot_program television_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pilot project is a kind of test", "pln": ["(: cnet_isa_364101c606 (IsA pilot_project test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pilot whale is a kind of dolphin", "pln": ["(: cnet_isa_0a846b764b (IsA pilot_whale dolphin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pilotfish is a kind of carangid fish", "pln": ["(: cnet_isa_d38be0a0bb (IsA pilotfish carangid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pilothouse is a kind of compartment", "pln": ["(: cnet_isa_431acde1f1 (IsA pilothouse compartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piloting is a kind of trade", "pln": ["(: cnet_isa_7b67709290 (IsA piloting trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pilsner is a kind of lager", "pln": ["(: cnet_isa_1ee9ced092 (IsA pilsner lager) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "piltdown hoax is a kind of primitive", "pln": ["(: cnet_isa_9f1d9f86ad (IsA piltdown_hoax primitive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pilularia is a kind of fern genus", "pln": ["(: cnet_isa_52c632d4ef (IsA pilularia fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pilus is a kind of hair", "pln": ["(: cnet_isa_df36abb91a (IsA pilus hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pima is a kind of uto aztecan", "pln": ["(: cnet_isa_e9c2f49bc8 (IsA pima uto_aztecan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pima is a kind of buffalo indian", "pln": ["(: cnet_isa_33a8a59c53 (IsA pima buffalo_indian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pimenta is a kind of dicot genus", "pln": ["(: cnet_isa_7950dfee84 (IsA pimenta dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pimento is a kind of sweet pepper", "pln": ["(: cnet_isa_cbe17d7ff8 (IsA pimento sweet_pepper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pimento butter is a kind of spread", "pln": ["(: cnet_isa_8c32f280cb (IsA pimento_butter spread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pimozide is a kind of diphenylbutyl piperidine", "pln": ["(: cnet_isa_830c452853 (IsA pimozide diphenylbutyl_piperidine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pimp is a kind of wrongdoer", "pln": ["(: cnet_isa_54e747167f (IsA pimp wrongdoer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pimpernel is a kind of herb", "pln": ["(: cnet_isa_22eaf0922e (IsA pimpernel herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pimpinella is a kind of rosid dicot genus", "pln": ["(: cnet_isa_3538894cef (IsA pimpinella rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pimple is a kind of acne", "pln": ["(: cnet_isa_c80240dc03 (IsA pimple acne) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pin is a kind of fastener", "pln": ["(: cnet_isa_cd81303686 (IsA pin fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pin is a kind of golf equipment", "pln": ["(: cnet_isa_5bdf4fdf1d (IsA pin golf_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pin is a kind of jewelry", "pln": ["(: cnet_isa_66d9be3f23 (IsA pin jewelry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pin is a kind of tumbler", "pln": ["(: cnet_isa_9dd2f8dca8 (IsA pin tumbler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pin is a kind of leg", "pln": ["(: cnet_isa_345c65b040 (IsA pin leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pin bone is a kind of cut of beef", "pln": ["(: cnet_isa_d8f6732fd8 (IsA pin_bone cut_of_beef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pin cherry is a kind of bird cherry", "pln": ["(: cnet_isa_617374d889 (IsA pin_cherry bird_cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pin curl is a kind of crimp", "pln": ["(: cnet_isa_b0010afa4c (IsA pin_curl crimp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pin oak is a kind of oak", "pln": ["(: cnet_isa_1b45c22af9 (IsA pin_oak oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pin tailed sandgrouse is a kind of sandgrouse", "pln": ["(: cnet_isa_e626d853a2 (IsA pin_tailed_sandgrouse sandgrouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pin wrench is a kind of wrench", "pln": ["(: cnet_isa_adecd2c4b6 (IsA pin_wrench wrench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pina cloth is a kind of fabric", "pln": ["(: cnet_isa_3e7a8fde38 (IsA pina_cloth fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pina colada is a kind of mixed drink", "pln": ["(: cnet_isa_572b1700c8 (IsA pina_colada mixed_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinaceae is a kind of gymnosperm family", "pln": ["(: cnet_isa_e5db20f783 (IsA pinaceae gymnosperm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinata is a kind of plaything", "pln": ["(: cnet_isa_5649795730 (IsA pinata plaything) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinball is a kind of game", "pln": ["(: cnet_isa_a6ced7513b (IsA pinball game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinball machine is a kind of game equipment", "pln": ["(: cnet_isa_fc62d40e63 (IsA pinball_machine game_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pince nez is a kind of spectacle", "pln": ["(: cnet_isa_501960b4f0 (IsA pince_nez spectacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pincer is a kind of hand tool", "pln": ["(: cnet_isa_8a0c9feb50 (IsA pincer hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinch is a kind of squeeze", "pln": ["(: cnet_isa_3570cbd5d8 (IsA pinch squeeze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinch is a kind of difficulty", "pln": ["(: cnet_isa_112b7e329a (IsA pinch difficulty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinch is a kind of injury", "pln": ["(: cnet_isa_a86d7e1a3d (IsA pinch injury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pinch bar is a kind of lever", "pln": ["(: cnet_isa_324cdd1135 (IsA pinch_bar lever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinch hitter is a kind of batter", "pln": ["(: cnet_isa_031cc26279 (IsA pinch_hitter batter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinch hitter is a kind of substitute", "pln": ["(: cnet_isa_3d251e247b (IsA pinch_hitter substitute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinchbeck is a kind of alloy", "pln": ["(: cnet_isa_ac1e06fe1e (IsA pinchbeck alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinche is a kind of tamarin", "pln": ["(: cnet_isa_41d8a6b901 (IsA pinche tamarin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinchgut is a kind of niggard", "pln": ["(: cnet_isa_dc9dc4c68c (IsA pinchgut niggard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinckneya is a kind of asterid dicot genus", "pln": ["(: cnet_isa_8883c50f30 (IsA pinckneya asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinctada is a kind of mollusk genus", "pln": ["(: cnet_isa_873c32109a (IsA pinctada mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pincurl clip is a kind of cartridge holder", "pln": ["(: cnet_isa_37a23b6ff3 (IsA pincurl_clip cartridge_holder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pincushion is a kind of cushion", "pln": ["(: cnet_isa_15ff483774 (IsA pincushion cushion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pindaric ode is a kind of ode", "pln": ["(: cnet_isa_c810246921 (IsA pindaric_ode ode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pine is a kind of evergreen tree", "pln": ["(: cnet_isa_1209f40a7e (IsA pine evergreen_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pine is a kind of plant", "pln": ["(: cnet_isa_0144aaa09b (IsA pine plant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pine is a kind of soft wood", "pln": ["(: cnet_isa_3214ac2c0b (IsA pine soft_wood) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pine is a kind of conifer", "pln": ["(: cnet_isa_aa72025196 (IsA pine conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pine is a kind of wood", "pln": ["(: cnet_isa_d6171c9caa (IsA pine wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pine barren sandwort is a kind of sandwort", "pln": ["(: cnet_isa_84c023b1ca (IsA pine_barren_sandwort sandwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pine fern is a kind of fern", "pln": ["(: cnet_isa_ca8a823956 (IsA pine_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pine grosbeak is a kind of grosbeak", "pln": ["(: cnet_isa_8483e014c5 (IsA pine_grosbeak grosbeak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pine hyacinth is a kind of clematis", "pln": ["(: cnet_isa_bcf72cf4b9 (IsA pine_hyacinth clematis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pine knot is a kind of firewood", "pln": ["(: cnet_isa_ea57917c5c (IsA pine_knot firewood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pine leaf aphid is a kind of adelgid", "pln": ["(: cnet_isa_6784fbe4f0 (IsA pine_leaf_aphid adelgid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pine marten is a kind of marten", "pln": ["(: cnet_isa_c27caf1362 (IsA pine_marten marten) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pine nut is a kind of edible nut", "pln": ["(: cnet_isa_2b2932fbaf (IsA pine_nut edible_nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pine sawyer is a kind of sawyer", "pln": ["(: cnet_isa_23879fc094 (IsA pine_sawyer sawyer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pine siskin is a kind of finch", "pln": ["(: cnet_isa_00fd59ee5e (IsA pine_siskin finch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pine snake is a kind of bull snake", "pln": ["(: cnet_isa_136a6a6885 (IsA pine_snake bull_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pine spittlebug is a kind of spittle insect", "pln": ["(: cnet_isa_5793236a31 (IsA pine_spittlebug spittle_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pine tar is a kind of wood tar", "pln": ["(: cnet_isa_79f9646fa2 (IsA pine_tar wood_tar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pine tar rag is a kind of baseball equipment", "pln": ["(: cnet_isa_2fe8312019 (IsA pine_tar_rag baseball_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pine tar rag is a kind of rag", "pln": ["(: cnet_isa_1fd2a150a8 (IsA pine_tar_rag rag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pine vole is a kind of vole", "pln": ["(: cnet_isa_7924bdc805 (IsA pine_vole vole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pineal gland is a kind of endocrine gland", "pln": ["(: cnet_isa_68a27c8e2b (IsA pineal_gland endocrine_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinealoma is a kind of tumor", "pln": ["(: cnet_isa_5fb453a174 (IsA pinealoma tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pineapple is a kind of fruit", "pln": ["(: cnet_isa_c15aef5c28 (IsA pineapple fruit) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pineapple is a kind of edible fruit", "pln": ["(: cnet_isa_71674c32e8 (IsA pineapple edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pineapple is a kind of herb", "pln": ["(: cnet_isa_0157921f0e (IsA pineapple herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pineapple juice is a kind of fruit juice", "pln": ["(: cnet_isa_2c0f747fda (IsA pineapple_juice fruit_juice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pineapple weed is a kind of herb", "pln": ["(: cnet_isa_049d44521f (IsA pineapple_weed herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinecone is a kind of cone", "pln": ["(: cnet_isa_380b72bf1f (IsA pinecone cone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinesap is a kind of wildflower", "pln": ["(: cnet_isa_278c88a751 (IsA pinesap wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinetum is a kind of tree farm", "pln": ["(: cnet_isa_c547f529fa (IsA pinetum tree_farm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pineus is a kind of arthropod genus", "pln": ["(: cnet_isa_f11570d5f1 (IsA pineus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinfish is a kind of sparid", "pln": ["(: cnet_isa_4656848f1a (IsA pinfish sparid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinfold is a kind of pen", "pln": ["(: cnet_isa_a602d4ad1c (IsA pinfold pen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ping is a kind of sound", "pln": ["(: cnet_isa_c80480fe9a (IsA ping sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ping pong is a kind of very popular game in europe", "pln": ["(: cnet_isa_c0983adce8 (IsA ping_pong very_popular_game_in_europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ping pong ball is a kind of ball", "pln": ["(: cnet_isa_191b79fdaa (IsA ping_pong_ball ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinger is a kind of pulse generator", "pln": ["(: cnet_isa_74d1adcb29 (IsA pinger pulse_generator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinguecula is a kind of conjunctiva", "pln": ["(: cnet_isa_10eec85f87 (IsA pinguecula conjunctiva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinguicula is a kind of plant genus", "pln": ["(: cnet_isa_7d56ebfa15 (IsA pinguicula plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinguinus is a kind of bird genus", "pln": ["(: cnet_isa_8e40bba1bb (IsA pinguinus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinhead is a kind of head", "pln": ["(: cnet_isa_1c5b4d9b97 (IsA pinhead head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinhole is a kind of puncture", "pln": ["(: cnet_isa_ae83853dac (IsA pinhole puncture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinicola is a kind of bird genus", "pln": ["(: cnet_isa_0a5d05af83 (IsA pinicola bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pining is a kind of longing", "pln": ["(: cnet_isa_253e5fc0fb (IsA pining longing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinion is a kind of gear", "pln": ["(: cnet_isa_a904222c57 (IsA pinion gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinite is a kind of mineral", "pln": ["(: cnet_isa_7f1d9d52ea (IsA pinite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pink is a kind of color", "pln": ["(: cnet_isa_32680471e8 (IsA pink color) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pink is a kind of chromatic color", "pln": ["(: cnet_isa_1c2e5125f7 (IsA pink chromatic_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pink is a kind of flower", "pln": ["(: cnet_isa_362a0a7f27 (IsA pink flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pink and white everlasting is a kind of everlasting", "pln": ["(: cnet_isa_02068029f6 (IsA pink_and_white_everlasting everlasting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pink bollworm is a kind of bollworm", "pln": ["(: cnet_isa_860da963fb (IsA pink_bollworm bollworm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pink calla is a kind of calla lily", "pln": ["(: cnet_isa_c1b54208cd (IsA pink_calla calla_lily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pink cockatoo is a kind of cockatoo", "pln": ["(: cnet_isa_c4cc0c43d0 (IsA pink_cockatoo cockatoo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pink disease is a kind of plant disease", "pln": ["(: cnet_isa_5317759d35 (IsA pink_disease plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pink disease fungus is a kind of fungus", "pln": ["(: cnet_isa_20be9a6ddb (IsA pink_disease_fungus fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "pink elephants is a kind of visual hallucination", "pln": ["(: cnet_isa_5f574d1b39 (IsA pink_elephants visual_hallucination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pink elephant is a kind of visual hallucination", "pln": ["(: cnet_isa_bcfda6961f (IsA pink_elephant visual_hallucination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pink fivecorner is a kind of shrub", "pln": ["(: cnet_isa_322241d284 (IsA pink_fivecorner shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pink floyd is a kind of band", "pln": ["(: cnet_isa_234692a1e3 (IsA pink_floyd band) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pink lady is a kind of cocktail", "pln": ["(: cnet_isa_5ced5c7cf6 (IsA pink_lady cocktail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pink shower is a kind of cassia", "pln": ["(: cnet_isa_9d8422ee19 (IsA pink_shower cassia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinkie is a kind of finger", "pln": ["(: cnet_isa_e38ff13509 (IsA pinkie finger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinkie is a kind of minimus", "pln": ["(: cnet_isa_d2aca8e199 (IsA pinkie minimus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinkness is a kind of pink", "pln": ["(: cnet_isa_70b333a47a (IsA pinkness pink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pinko is a kind of collectivist", "pln": ["(: cnet_isa_dad7ba13c3 (IsA pinko collectivist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "pinnotheres is a kind of arthropod genus", "pln": ["(: cnet_isa_0ab2720438 (IsA pinnotheres arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinkroot is a kind of plant disease", "pln": ["(: cnet_isa_318a590a48 (IsA pinkroot plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinna is a kind of leaflet", "pln": ["(: cnet_isa_0214865406 (IsA pinna leaflet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinnacle is a kind of steeple", "pln": ["(: cnet_isa_092d513bce (IsA pinnacle steeple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinnacle is a kind of peak", "pln": ["(: cnet_isa_323df94576 (IsA pinnacle peak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinnate leaf is a kind of compound leaf", "pln": ["(: cnet_isa_c8841ec009 (IsA pinnate_leaf compound_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinner is a kind of cap", "pln": ["(: cnet_isa_9951fd2795 (IsA pinner cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinning is a kind of promise", "pln": ["(: cnet_isa_222e6b1625 (IsA pinning promise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinniped mammal is a kind of aquatic mammal", "pln": ["(: cnet_isa_17571c2c2b (IsA pinniped_mammal aquatic_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinnipedia is a kind of animal order", "pln": ["(: cnet_isa_978d800c5a (IsA pinnipedia animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinnothere is a kind of arthropod genus", "pln": ["(: cnet_isa_52aa7400eb (IsA pinnothere arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinnotheridae is a kind of arthropod family", "pln": ["(: cnet_isa_56762c44aa (IsA pinnotheridae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinochle is a kind of card game", "pln": ["(: cnet_isa_7224e0fba8 (IsA pinochle card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinocytosis is a kind of bodily process", "pln": ["(: cnet_isa_a33d1721f1 (IsA pinocytosis bodily_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinole is a kind of meal", "pln": ["(: cnet_isa_702b8d308f (IsA pinole meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinon is a kind of pine", "pln": ["(: cnet_isa_bf51b96254 (IsA pinon pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinon pine is a kind of nut pine", "pln": ["(: cnet_isa_aa350126ba (IsA pinon_pine nut_pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinopsida is a kind of class", "pln": ["(: cnet_isa_295969c34b (IsA pinopsida class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinot is a kind of vinifera", "pln": ["(: cnet_isa_51865a0b3e (IsA pinot vinifera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinot blanc is a kind of white wine", "pln": ["(: cnet_isa_6e039b058b (IsA pinot_blanc white_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinot blanc is a kind of pinot", "pln": ["(: cnet_isa_518fe53bd1 (IsA pinot_blanc pinot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinot noir is a kind of red wine", "pln": ["(: cnet_isa_9652e4c0d6 (IsA pinot_noir red_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinot noir is a kind of pinot", "pln": ["(: cnet_isa_a738006b06 (IsA pinot_noir pinot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinpoint is a kind of point", "pln": ["(: cnet_isa_8f2aca1bed (IsA pinpoint point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinpoint is a kind of moment", "pln": ["(: cnet_isa_e78108e51f (IsA pinpoint moment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinprick is a kind of puncture", "pln": ["(: cnet_isa_52a8c5e4f5 (IsA pinprick puncture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinprick is a kind of irritation", "pln": ["(: cnet_isa_3a188de061 (IsA pinprick irritation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pin and needle is a kind of prickling", "pln": ["(: cnet_isa_a7cb7e2131 (IsA pin_and_needle prickling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pinscher is a kind of watchdog", "pln": ["(: cnet_isa_cb2e5b5db1 (IsA pinscher watchdog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "pint is a kind of united states dry unit", "pln": ["(: cnet_isa_7402ee37f2 (IsA pint united_states_dry_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinstripe is a kind of band", "pln": ["(: cnet_isa_b0fad2f6c8 (IsA pinstripe band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinstripe is a kind of fabric", "pln": ["(: cnet_isa_31cb698739 (IsA pinstripe fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinstripe is a kind of suit", "pln": ["(: cnet_isa_419684fd97 (IsA pinstripe suit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pint is a kind of british capacity unit", "pln": ["(: cnet_isa_631f4b32ee (IsA pint british_capacity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pint is a kind of united state dry unit", "pln": ["(: cnet_isa_6f06b3d6cb (IsA pint united_state_dry_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pint is a kind of united state liquid unit", "pln": ["(: cnet_isa_cea330584a (IsA pint united_state_liquid_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pintail is a kind of duck", "pln": ["(: cnet_isa_5ab7404a72 (IsA pintail duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pintle is a kind of pivot", "pln": ["(: cnet_isa_80168e906b (IsA pintle pivot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinto is a kind of horse", "pln": ["(: cnet_isa_0b717e0c0b (IsA pinto horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinto bean is a kind of common bean", "pln": ["(: cnet_isa_ca61d2f6c5 (IsA pinto_bean common_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinus is a kind of gymnosperm genus", "pln": ["(: cnet_isa_6c544d3eec (IsA pinus gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinwheel is a kind of wheel", "pln": ["(: cnet_isa_d604f4b120 (IsA pinwheel wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinwheel is a kind of subshrub", "pln": ["(: cnet_isa_10265c3e5c (IsA pinwheel subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinwheel roll is a kind of sweet roll", "pln": ["(: cnet_isa_b349b0cf93 (IsA pinwheel_roll sweet_roll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinwheel wind collector is a kind of plaything", "pln": ["(: cnet_isa_34ab457b7e (IsA pinwheel_wind_collector plaything) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pinworm is a kind of nematode", "pln": ["(: cnet_isa_9c76540c43 (IsA pinworm nematode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pion is a kind of elementary particle", "pln": ["(: cnet_isa_a759bbd588 (IsA pion elementary_particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pion is a kind of meson", "pln": ["(: cnet_isa_3dea801402 (IsA pion meson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pioneer is a kind of originator", "pln": ["(: cnet_isa_9177314de6 (IsA pioneer originator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pioneer is a kind of settler", "pln": ["(: cnet_isa_a70e044214 (IsA pioneer settler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pip is a kind of seed", "pln": ["(: cnet_isa_9f6333f0e5 (IsA pip seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pip is a kind of ailment", "pln": ["(: cnet_isa_b2d0ca83ec (IsA pip ailment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pip is a kind of animal disease", "pln": ["(: cnet_isa_538d907d62 (IsA pip animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pip squeak is a kind of cipher", "pln": ["(: cnet_isa_97b28f379e (IsA pip_squeak cipher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pipa is a kind of amphibian genus", "pln": ["(: cnet_isa_e7d7efd9c1 (IsA pipa amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pipage is a kind of fee", "pln": ["(: cnet_isa_b9a242f00e (IsA pipage fee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pipal is a kind of fig tree", "pln": ["(: cnet_isa_a996c1965b (IsA pipal fig_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pipe is a kind of smoking device often", "pln": ["(: cnet_isa_52b197bc56 (IsA pipe smoking_device_often) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pipe is a kind of tube", "pln": ["(: cnet_isa_b1f1fbd639 (IsA pipe tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pipe is a kind of wind instrument", "pln": ["(: cnet_isa_ea6480c94e (IsA pipe wind_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pipe is a kind of cylinder", "pln": ["(: cnet_isa_1ae1517bbd (IsA pipe cylinder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pipe bomb is a kind of bomb", "pln": ["(: cnet_isa_e696d67bab (IsA pipe_bomb bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pipe cleaner is a kind of cleaning implement", "pln": ["(: cnet_isa_3e1494fa34 (IsA pipe_cleaner cleaning_implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pipe cutter is a kind of hand tool", "pln": ["(: cnet_isa_db65014498 (IsA pipe_cutter hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pipe dream is a kind of fantasy", "pln": ["(: cnet_isa_1d5db713d2 (IsA pipe_dream fantasy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pipe major is a kind of piper", "pln": ["(: cnet_isa_0ed087b7da (IsA pipe_major piper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pipe rack is a kind of rack", "pln": ["(: cnet_isa_d26a7208d3 (IsA pipe_rack rack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pipe smoker is a kind of smoker", "pln": ["(: cnet_isa_49b7926b3f (IsA pipe_smoker smoker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pipe vise is a kind of clamp", "pln": ["(: cnet_isa_87fabcf8c7 (IsA pipe_vise clamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pipe wrench is a kind of adjustable wrench", "pln": ["(: cnet_isa_912c1f6792 (IsA pipe_wrench adjustable_wrench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pipeclay is a kind of clay", "pln": ["(: cnet_isa_85f4d7d70e (IsA pipeclay clay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pipefish is a kind of teleost fish", "pln": ["(: cnet_isa_1a2612cae7 (IsA pipefish teleost_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pipefitting is a kind of fitting", "pln": ["(: cnet_isa_dc7b5c2409 (IsA pipefitting fitting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pipeful is a kind of containerful", "pln": ["(: cnet_isa_32c46cc675 (IsA pipeful containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pipeline is a kind of pipe", "pln": ["(: cnet_isa_bb517c38bb (IsA pipeline pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pipeline company is a kind of company", "pln": ["(: cnet_isa_d89599f5f5 (IsA pipeline_company company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piper is a kind of musician", "pln": ["(: cnet_isa_c02dc533fe (IsA piper musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piper is a kind of dicot genus", "pln": ["(: cnet_isa_bc80d14537 (IsA piper dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piperaceae is a kind of dicot family", "pln": ["(: cnet_isa_44d0471e87 (IsA piperaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piperale is a kind of plant order", "pln": ["(: cnet_isa_beae87c20d (IsA piperale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piperazine is a kind of vermifuge", "pln": ["(: cnet_isa_426e936879 (IsA piperazine vermifuge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "piperin is a kind of chemical irritant", "pln": ["(: cnet_isa_852ba1ce2d (IsA piperin chemical_irritant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piperocaine is a kind of spinal anesthetic", "pln": ["(: cnet_isa_08e6330e6a (IsA piperocaine spinal_anesthetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pipestem clematis is a kind of clematis", "pln": ["(: cnet_isa_08320f7337 (IsA pipestem_clematis clematis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pipet is a kind of measuring instrument", "pln": ["(: cnet_isa_3e162e0aca (IsA pipet measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pipewort is a kind of aquatic plant", "pln": ["(: cnet_isa_cf1402a773 (IsA pipewort aquatic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pipidae is a kind of amphibian family", "pln": ["(: cnet_isa_1c18436c3e (IsA pipidae amphibian_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pipile is a kind of bird genus", "pln": ["(: cnet_isa_7620252056 (IsA pipile bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pipilo is a kind of bird genus", "pln": ["(: cnet_isa_1771f9dc01 (IsA pipilo bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piping is a kind of playing", "pln": ["(: cnet_isa_5d6176d157 (IsA piping playing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piping is a kind of cord", "pln": ["(: cnet_isa_fb65f03f0f (IsA piping cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piping crow is a kind of australian magpie", "pln": ["(: cnet_isa_7591a501bb (IsA piping_crow australian_magpie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piping guan is a kind of guan", "pln": ["(: cnet_isa_f891aaea01 (IsA piping_guan guan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piping plover is a kind of plover", "pln": ["(: cnet_isa_e13faf037e (IsA piping_plover plover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pipistrelle is a kind of vespertilian bat", "pln": ["(: cnet_isa_ceadf4f9d3 (IsA pipistrelle vespertilian_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pipistrellus is a kind of mammal genus", "pln": ["(: cnet_isa_70a89f4653 (IsA pipistrellus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pipit is a kind of oscine", "pln": ["(: cnet_isa_1c50f95751 (IsA pipit oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pippin is a kind of eating apple", "pln": ["(: cnet_isa_d1aca9ac1b (IsA pippin eating_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pipra is a kind of bird genus", "pln": ["(: cnet_isa_d9ed2457e4 (IsA pipra bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pipridae is a kind of bird family", "pln": ["(: cnet_isa_6d715521d9 (IsA pipridae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pipsissewa is a kind of herb", "pln": ["(: cnet_isa_c15a15c7a6 (IsA pipsissewa herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piptadenia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_1553bc2ce4 (IsA piptadenia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pipturus is a kind of dicot genus", "pln": ["(: cnet_isa_2def7d010f (IsA pipturus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pipturus albidus is a kind of angiospermous tree", "pln": ["(: cnet_isa_ccebb34834 (IsA pipturus_albidus angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piquantness is a kind of quality", "pln": ["(: cnet_isa_78d06e2a7a (IsA piquantness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pique is a kind of fabric", "pln": ["(: cnet_isa_b361b75c3b (IsA pique fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pique is a kind of annoyance", "pln": ["(: cnet_isa_2fbf655809 (IsA pique annoyance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piqueria is a kind of asterid dicot genus", "pln": ["(: cnet_isa_08cc0d6f5f (IsA piqueria asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piquet is a kind of card game", "pln": ["(: cnet_isa_e1646cb456 (IsA piquet card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piracy is a kind of highjacking", "pln": ["(: cnet_isa_0c66b92b58 (IsA piracy highjacking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piranga is a kind of bird genus", "pln": ["(: cnet_isa_c9256a652c (IsA piranga bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piranha is a kind of meat eating fish", "pln": ["(: cnet_isa_39d0463222 (IsA piranha meat_eating_fish) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piranha is a kind of characin", "pln": ["(: cnet_isa_8c2b04069a (IsA piranha characin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pirate is a kind of ship", "pln": ["(: cnet_isa_4ca069272a (IsA pirate ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pirate is a kind of plunderer", "pln": ["(: cnet_isa_d78af37c63 (IsA pirate plunderer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pirogi is a kind of turnover", "pln": ["(: cnet_isa_122b6c96f0 (IsA pirogi turnover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piroplasm is a kind of sporozoan", "pln": ["(: cnet_isa_2694979e4f (IsA piroplasm sporozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pirouette is a kind of spin", "pln": ["(: cnet_isa_7d350f8a5b (IsA pirouette spin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pis aller is a kind of expedient", "pln": ["(: cnet_isa_c86d63faf6 (IsA pis_aller expedient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "pisces is a kind of division", "pln": ["(: cnet_isa_26dd10073f (IsA pisces division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pisang wax is a kind of wax", "pln": ["(: cnet_isa_d556418d0c (IsA pisang_wax wax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pisanosaur is a kind of ornithischian", "pln": ["(: cnet_isa_953e07897e (IsA pisanosaur ornithischian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pisce is a kind of division", "pln": ["(: cnet_isa_b4d3c40ac9 (IsA pisce division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piscidia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_9e38b38922 (IsA piscidia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pisha paysha is a kind of card game", "pln": ["(: cnet_isa_f5b5c6cc3d (IsA pisha_paysha card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pisiform is a kind of carpal bone", "pln": ["(: cnet_isa_a317e7296c (IsA pisiform carpal_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pisonia is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_d4b0cfd24d (IsA pisonia caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piss up is a kind of bust", "pln": ["(: cnet_isa_9aff7f169e (IsA piss_up bust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pisser is a kind of difficulty", "pln": ["(: cnet_isa_1ff49c427f (IsA pisser difficulty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pisser is a kind of person", "pln": ["(: cnet_isa_bea4405dcf (IsA pisser person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pistachio is a kind of edible nut", "pln": ["(: cnet_isa_ef392b704a (IsA pistachio edible_nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pistachio is a kind of nut tree", "pln": ["(: cnet_isa_58206cd3f4 (IsA pistachio nut_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pistacia is a kind of dicot genus", "pln": ["(: cnet_isa_515830a0b2 (IsA pistacia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piste is a kind of court", "pln": ["(: cnet_isa_dc50e49eea (IsA piste court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piste is a kind of ski run", "pln": ["(: cnet_isa_a86e80f357 (IsA piste ski_run) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pistia is a kind of aquatic plant", "pln": ["(: cnet_isa_2c66a1f003 (IsA pistia aquatic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pistil is a kind of reproductive structure", "pln": ["(: cnet_isa_6d6788df54 (IsA pistil reproductive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pistillode is a kind of pistil", "pln": ["(: cnet_isa_2ac26812ef (IsA pistillode pistil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pistol is a kind of gun", "pln": ["(: cnet_isa_337be548c1 (IsA pistol gun) (STV 1.0 0.9748))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pistol is a kind of handheld gun", "pln": ["(: cnet_isa_4b9d45cdb5 (IsA pistol handheld_gun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pistol is a kind of weapon", "pln": ["(: cnet_isa_f135256c09 (IsA pistol weapon) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pistol is a kind of firearm", "pln": ["(: cnet_isa_12798cedb6 (IsA pistol firearm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pistol grip is a kind of stock", "pln": ["(: cnet_isa_4eb3a41a13 (IsA pistol_grip stock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pistoleer is a kind of soldier", "pln": ["(: cnet_isa_1e6824f20c (IsA pistoleer soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "piston is a kind of mechanical device", "pln": ["(: cnet_isa_44f4e93f33 (IsA piston mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piston ring is a kind of seal", "pln": ["(: cnet_isa_f0d8464ba7 (IsA piston_ring seal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piston rod is a kind of connecting rod", "pln": ["(: cnet_isa_9e9dc101ce (IsA piston_rod connecting_rod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pisum is a kind of rosid dicot genus", "pln": ["(: cnet_isa_e5d5db35ba (IsA pisum rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pit is a kind of deep hole", "pln": ["(: cnet_isa_6c796442a5 (IsA pit deep_hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pit is a kind of seed", "pln": ["(: cnet_isa_ad4c6d737d (IsA pit seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pit is a kind of area", "pln": ["(: cnet_isa_70497a2e26 (IsA pit area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pit is a kind of enclosure", "pln": ["(: cnet_isa_d58cf80805 (IsA pit enclosure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pit is a kind of excavation", "pln": ["(: cnet_isa_531dab820e (IsA pit excavation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pit is a kind of trap", "pln": ["(: cnet_isa_856e37ad2e (IsA pit trap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pit is a kind of hole", "pln": ["(: cnet_isa_2fcb00a6bf (IsA pit hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pit is a kind of cavity", "pln": ["(: cnet_isa_e5a0d1cdd7 (IsA pit cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pit is a kind of concave shape", "pln": ["(: cnet_isa_f1ad09390f (IsA pit concave_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pit of stomach is a kind of pit", "pln": ["(: cnet_isa_810b17d425 (IsA pit_of_stomach pit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pit stop is a kind of stop", "pln": ["(: cnet_isa_fcace9f854 (IsA pit_stop stop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pit viper is a kind of viper", "pln": ["(: cnet_isa_6adbb74e53 (IsA pit_viper viper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pita is a kind of flatbread", "pln": ["(: cnet_isa_e37cae822f (IsA pita flatbread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitahaya is a kind of edible fruit", "pln": ["(: cnet_isa_c01dbbddcb (IsA pitahaya edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitahaya cactus is a kind of cactus", "pln": ["(: cnet_isa_27eb10b2a0 (IsA pitahaya_cactus cactus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitch is a kind of all four", "pln": ["(: cnet_isa_50969e2822 (IsA pitch all_four) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitch is a kind of approach", "pln": ["(: cnet_isa_866e7358da (IsA pitch approach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitch is a kind of throw", "pln": ["(: cnet_isa_343ab1e185 (IsA pitch throw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitch is a kind of gradient", "pln": ["(: cnet_isa_b2ad053340 (IsA pitch gradient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitch is a kind of sound property", "pln": ["(: cnet_isa_71722480d5 (IsA pitch sound_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitch is a kind of position", "pln": ["(: cnet_isa_41ebd94a47 (IsA pitch position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitch is a kind of bitumen", "pln": ["(: cnet_isa_2ae0589fc1 (IsA pitch bitumen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitch apple is a kind of strangler", "pln": ["(: cnet_isa_404006148e (IsA pitch_apple strangler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitch pine is a kind of pine", "pln": ["(: cnet_isa_08af21cd2f (IsA pitch_pine pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitch pipe is a kind of pipe", "pln": ["(: cnet_isa_16d23f5450 (IsA pitch_pipe pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pitched battle is a kind of battle", "pln": ["(: cnet_isa_dff3a1ce1e (IsA pitched_battle battle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitcher is a kind of container", "pln": ["(: cnet_isa_54378d6bc8 (IsA pitcher container) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitcher is a kind of position", "pln": ["(: cnet_isa_2760c4195b (IsA pitcher position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitcher is a kind of vessel", "pln": ["(: cnet_isa_fae5833bc3 (IsA pitcher vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitcher is a kind of leaf", "pln": ["(: cnet_isa_507f88f2cc (IsA pitcher leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitcher is a kind of containerful", "pln": ["(: cnet_isa_ef46072986 (IsA pitcher containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitcher is a kind of ballplayer", "pln": ["(: cnet_isa_6ba2504da3 (IsA pitcher ballplayer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitcher is a kind of thrower", "pln": ["(: cnet_isa_db845b2211 (IsA pitcher thrower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pitcher plant is a kind of carnivorous plant", "pln": ["(: cnet_isa_e709bdfe41 (IsA pitcher_plant carnivorous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitcher sage is a kind of sage", "pln": ["(: cnet_isa_0bfecc4b36 (IsA pitcher_sage sage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitcher sage is a kind of shrub", "pln": ["(: cnet_isa_05c067fa27 (IsA pitcher_sage shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitchfork is a kind of hand tool", "pln": ["(: cnet_isa_90a807f288 (IsA pitchfork hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitching is a kind of playing", "pln": ["(: cnet_isa_aec209a653 (IsA pitching playing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitching change is a kind of replacement", "pln": ["(: cnet_isa_996727d4ca (IsA pitching_change replacement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitching coach is a kind of baseball coach", "pln": ["(: cnet_isa_b1fc38645d (IsA pitching_coach baseball_coach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitching wedge is a kind of wedge", "pln": ["(: cnet_isa_3428e9cf15 (IsA pitching_wedge wedge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitchman is a kind of salesman", "pln": ["(: cnet_isa_e0db41aed9 (IsA pitchman salesman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitchstone is a kind of volcanic glass", "pln": ["(: cnet_isa_9bee936009 (IsA pitchstone volcanic_glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitfall is a kind of difficulty", "pln": ["(: cnet_isa_92e8cdcc1b (IsA pitfall difficulty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pith is a kind of plant tissue", "pln": ["(: cnet_isa_9a369915ac (IsA pith plant_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pith hat is a kind of sun hat", "pln": ["(: cnet_isa_52eadacb3e (IsA pith_hat sun_hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pithead is a kind of entrance", "pln": ["(: cnet_isa_e6112841c1 (IsA pithead entrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pithecanthropus is a kind of hominid", "pln": ["(: cnet_isa_ac31b2c3b0 (IsA pithecanthropus hominid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pithecellobium is a kind of rosid dicot genus", "pln": ["(: cnet_isa_e4931098fa (IsA pithecellobium rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pithecia is a kind of mammal genus", "pln": ["(: cnet_isa_c603ddd3eb (IsA pithecia mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitilessness is a kind of mercilessness", "pln": ["(: cnet_isa_1e6e438759 (IsA pitilessness mercilessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piton is a kind of spike", "pln": ["(: cnet_isa_e5d83cb688 (IsA piton spike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pitot is a kind of measuring instrument", "pln": ["(: cnet_isa_205c8e3b02 (IsA pitot measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitot tube is a kind of measuring instrument", "pln": ["(: cnet_isa_beea11b4e5 (IsA pitot_tube measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pitprop is a kind of prop", "pln": ["(: cnet_isa_51f4b52ee2 (IsA pitprop prop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitsaw is a kind of two handed saw", "pln": ["(: cnet_isa_ba223a5a14 (IsA pitsaw two_handed_saw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitta is a kind of tyrannid", "pln": ["(: cnet_isa_564bac2ec4 (IsA pitta tyrannid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pittance is a kind of payment", "pln": ["(: cnet_isa_0626441363 (IsA pittance payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitter patter is a kind of pat", "pln": ["(: cnet_isa_649ba0d9d7 (IsA pitter_patter pat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pittidae is a kind of bird family", "pln": ["(: cnet_isa_bf223bf43b (IsA pittidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitting is a kind of corrosion", "pln": ["(: cnet_isa_8088cefa32 (IsA pitting corrosion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pittsburgh is a kind of city in pennsylvania", "pln": ["(: cnet_isa_1d72144d97 (IsA pittsburgh city_in_pennsylvania) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pituitary is a kind of endocrine gland", "pln": ["(: cnet_isa_d7a38c8261 (IsA pituitary endocrine_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pituophis is a kind of reptile genus", "pln": ["(: cnet_isa_cc6478db84 (IsA pituophis reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pity is a kind of emotion", "pln": ["(: cnet_isa_d963b37f49 (IsA pity emotion) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pity is a kind of misfortune", "pln": ["(: cnet_isa_b5722b1e9f (IsA pity misfortune) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pitymy is a kind of mammal genus", "pln": ["(: cnet_isa_a5eb02a6f9 (IsA pitymy mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pityriasis is a kind of dermatosis", "pln": ["(: cnet_isa_87bfa65e21 (IsA pityriasis dermatosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pityriasis alba is a kind of pityriasis", "pln": ["(: cnet_isa_ab43198d55 (IsA pityriasis_alba pityriasis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pityriasis rosea is a kind of pityriasis", "pln": ["(: cnet_isa_6cabb9c441 (IsA pityriasis_rosea pityriasis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pityrogramma is a kind of fern genus", "pln": ["(: cnet_isa_35f089a28f (IsA pityrogramma fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "piute is a kind of shoshoni", "pln": ["(: cnet_isa_822b6c5196 (IsA piute shoshoni) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pivot is a kind of rotation", "pln": ["(: cnet_isa_4793f1d8a5 (IsA pivot rotation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pivot is a kind of axis", "pln": ["(: cnet_isa_1b05ee29ff (IsA pivot axis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pivot is a kind of marcher", "pln": ["(: cnet_isa_cf99b2619d (IsA pivot marcher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pivot joint is a kind of synovial joint", "pln": ["(: cnet_isa_a88703bacd (IsA pivot_joint synovial_joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pivot shot is a kind of basketball shot", "pln": ["(: cnet_isa_0c819d751e (IsA pivot_shot basketball_shot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pivoting window is a kind of window", "pln": ["(: cnet_isa_898702c6b2 (IsA pivoting_window window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pixel is a kind of component", "pln": ["(: cnet_isa_b8b9952e87 (IsA pixel component) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pizza is a kind of disc shaped food item", "pln": ["(: cnet_isa_7802809480 (IsA pizza disc_shaped_food_item) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pizza is a kind of favorite food of many", "pln": ["(: cnet_isa_419ce4296e (IsA pizza favorite_food_of_many) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pizza is a kind of dish", "pln": ["(: cnet_isa_20d8e0a107 (IsA pizza dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pizza and salad is a kind of both food", "pln": ["(: cnet_isa_eec35ba40d (IsA pizza_and_salad both_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pizza parlor is a kind of pizzeria", "pln": ["(: cnet_isa_5024c4c18b (IsA pizza_parlor pizzeria) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pizza parlor is a kind of restaurant", "pln": ["(: cnet_isa_41ed4dbf87 (IsA pizza_parlor restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pizzeria is a kind of restarant", "pln": ["(: cnet_isa_0e794c6542 (IsA pizzeria restarant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pizzeria is a kind of restaurant", "pln": ["(: cnet_isa_70bf83ad5e (IsA pizzeria restaurant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pizzeria is a kind of shop", "pln": ["(: cnet_isa_4289b15b73 (IsA pizzeria shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pizzicato is a kind of music", "pln": ["(: cnet_isa_4f078e241c (IsA pizzicato music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pku test is a kind of diagnostic test", "pln": ["(: cnet_isa_d62e111997 (IsA pku_test diagnostic_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "placation is a kind of appeasement", "pln": ["(: cnet_isa_0a2765ff1b (IsA placation appeasement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "place is a kind of cognition", "pln": ["(: cnet_isa_20984f4b0d (IsA place cognition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "place is a kind of item", "pln": ["(: cnet_isa_496aa57e6c (IsA place item) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "place is a kind of passage", "pln": ["(: cnet_isa_b435584ea8 (IsA place passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "place is a kind of geographical area", "pln": ["(: cnet_isa_72d4ca71c9 (IsA place geographical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "place is a kind of vicinity", "pln": ["(: cnet_isa_f7087788e4 (IsA place vicinity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "place is a kind of condition", "pln": ["(: cnet_isa_d01cf867e4 (IsA place condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "place is a kind of situation", "pln": ["(: cnet_isa_33d94dd23c (IsA place situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "place is a kind of social station", "pln": ["(: cnet_isa_b520196e90 (IsA place social_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "place bet is a kind of bet", "pln": ["(: cnet_isa_58d7754aa6 (IsA place_bet bet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "place kick is a kind of kick", "pln": ["(: cnet_isa_4900016766 (IsA place_kick kick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "place kicker is a kind of kicker", "pln": ["(: cnet_isa_547bf5c1fa (IsA place_kicker kicker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "place mat is a kind of mat", "pln": ["(: cnet_isa_988ff9ee8e (IsA place_mat mat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "place mat is a kind of table linen", "pln": ["(: cnet_isa_6f59a35cee (IsA place_mat table_linen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "place name is a kind of name", "pln": ["(: cnet_isa_1aee5c08fd (IsA place_name name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "place of business is a kind of establishment", "pln": ["(: cnet_isa_69a5d47814 (IsA place_of_business establishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "place of worship is a kind of building", "pln": ["(: cnet_isa_3cf4dd9223 (IsA place_of_worship building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "place setting is a kind of service", "pln": ["(: cnet_isa_412caabd5c (IsA place_setting service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "place to store valuable object is a kind of safe", "pln": ["(: cnet_isa_4256b063b1 (IsA place_to_store_valuable_object safe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "placebo is a kind of medicine", "pln": ["(: cnet_isa_0a2b9ea582 (IsA placebo medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "placebo is a kind of vesper", "pln": ["(: cnet_isa_b77c024edc (IsA placebo vesper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "placebo effect is a kind of consequence", "pln": ["(: cnet_isa_cabfee1255 (IsA placebo_effect consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "placeholder is a kind of variable", "pln": ["(: cnet_isa_2960a38d4d (IsA placeholder variable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "placeman is a kind of appointee", "pln": ["(: cnet_isa_d155d7c02d (IsA placeman appointee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "placement is a kind of activity", "pln": ["(: cnet_isa_6b1790ce09 (IsA placement activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "placement is a kind of contact", "pln": ["(: cnet_isa_5fe2a34678 (IsA placement contact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "placement is a kind of position", "pln": ["(: cnet_isa_79a4cf7063 (IsA placement position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "placement office is a kind of administrative unit", "pln": ["(: cnet_isa_ef5ec1d0fa (IsA placement_office administrative_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "placenta is a kind of vascular structure", "pln": ["(: cnet_isa_726e7bed51 (IsA placenta vascular_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "placenta is a kind of reproductive structure", "pln": ["(: cnet_isa_df192810dd (IsA placenta reproductive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "placenta previa is a kind of pregnancy", "pln": ["(: cnet_isa_aea954b423 (IsA placenta_previa pregnancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "placental is a kind of mammal", "pln": ["(: cnet_isa_957ef6e6cf (IsA placental mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "placentation is a kind of reproductive structure", "pln": ["(: cnet_isa_bf4e54dab5 (IsA placentation reproductive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "placentation is a kind of bodily process", "pln": ["(: cnet_isa_03ad859985 (IsA placentation bodily_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "placer is a kind of alluvial sediment", "pln": ["(: cnet_isa_33c4f90112 (IsA placer alluvial_sediment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "placer miner is a kind of miner", "pln": ["(: cnet_isa_a50529b431 (IsA placer_miner miner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "placer mining is a kind of mining", "pln": ["(: cnet_isa_45fe5b79c2 (IsA placer_mining mining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "placidity is a kind of calmness", "pln": ["(: cnet_isa_e29e6a8e4a (IsA placidity calmness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "placket is a kind of piece of cloth", "pln": ["(: cnet_isa_11720f9ec3 (IsA placket piece_of_cloth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "placoderm is a kind of aquatic vertebrate", "pln": ["(: cnet_isa_2a63349c44 (IsA placoderm aquatic_vertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "placodermi is a kind of class", "pln": ["(: cnet_isa_942297b628 (IsA placodermi class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "placuna is a kind of mollusk genus", "pln": ["(: cnet_isa_5f138def00 (IsA placuna mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "plagal cadence is a kind of cadence", "pln": ["(: cnet_isa_94cc073fde (IsA plagal_cadence cadence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plage is a kind of beach", "pln": ["(: cnet_isa_e22428d7eb (IsA plage beach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plagianthus is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_da4976d28f (IsA plagianthus dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plagiarism is a kind of copyright infringement", "pln": ["(: cnet_isa_296dd32838 (IsA plagiarism copyright_infringement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plagiarism is a kind of writing", "pln": ["(: cnet_isa_8db5f9948e (IsA plagiarism writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plagiarist is a kind of thief", "pln": ["(: cnet_isa_bb20dcceb5 (IsA plagiarist thief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plagiocephaly is a kind of birth defect", "pln": ["(: cnet_isa_13be393dff (IsA plagiocephaly birth_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plagiocephaly is a kind of deformity", "pln": ["(: cnet_isa_74bc445938 (IsA plagiocephaly deformity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "plagioclase is a kind of feldspar", "pln": ["(: cnet_isa_ce7a8aed1a (IsA plagioclase feldspar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plague is a kind of annoyance", "pln": ["(: cnet_isa_d07b0aa81b (IsA plague annoyance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plague is a kind of calamity", "pln": ["(: cnet_isa_17a355dd66 (IsA plague calamity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plague is a kind of epidemic disease", "pln": ["(: cnet_isa_6a97f5ce85 (IsA plague epidemic_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plague spot is a kind of macule", "pln": ["(: cnet_isa_2affc63939 (IsA plague_spot macule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plaice is a kind of righteye flounder", "pln": ["(: cnet_isa_4185165e62 (IsA plaice righteye_flounder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plaice is a kind of flounder", "pln": ["(: cnet_isa_abd2f5b825 (IsA plaice flounder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plaid is a kind of patern of line and square", "pln": ["(: cnet_isa_00cc25ffa3 (IsA plaid patern_of_line_and_square) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plaid is a kind of pattern", "pln": ["(: cnet_isa_60ed99832e (IsA plaid pattern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plain is a kind of land", "pln": ["(: cnet_isa_4c8a211822 (IsA plain land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plain flour is a kind of flour", "pln": ["(: cnet_isa_559949e53a (IsA plain_flour flour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plain sailing is a kind of progress", "pln": ["(: cnet_isa_e66c39062a (IsA plain_sailing progress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plain turkey is a kind of bustard", "pln": ["(: cnet_isa_a39728a50f (IsA plain_turkey bustard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plain wanderer is a kind of wading bird", "pln": ["(: cnet_isa_a8b13a6839 (IsA plain_wanderer wading_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plain weave is a kind of weave", "pln": ["(: cnet_isa_9d4906a13e (IsA plain_weave weave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plainclothesman is a kind of detective", "pln": ["(: cnet_isa_eaab8e79ca (IsA plainclothesman detective) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plainness is a kind of appearance", "pln": ["(: cnet_isa_173c4f22b5 (IsA plainness appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plainness is a kind of purity", "pln": ["(: cnet_isa_b8a53723a4 (IsA plainness purity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plain lemon monarda is a kind of monarda", "pln": ["(: cnet_isa_477790d851 (IsA plain_lemon_monarda monarda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plain pocket gopher is a kind of gopher", "pln": ["(: cnet_isa_fa889e83c9 (IsA plain_pocket_gopher gopher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plain pocket mouse is a kind of pocket mouse", "pln": ["(: cnet_isa_5271409532 (IsA plain_pocket_mouse pocket_mouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plain spadefoot is a kind of spadefoot", "pln": ["(: cnet_isa_b4537acc6d (IsA plain_spadefoot spadefoot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plainsman is a kind of inhabitant", "pln": ["(: cnet_isa_3807f55a35 (IsA plainsman inhabitant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plainsong is a kind of plainsong", "pln": ["(: cnet_isa_a572dea8ea (IsA plainsong plainsong) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "plainsong is a kind of chant", "pln": ["(: cnet_isa_49413f75a6 (IsA plainsong chant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plaint is a kind of allegation", "pln": ["(: cnet_isa_1798aca452 (IsA plaint allegation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "plaintiff is a kind of litigant", "pln": ["(: cnet_isa_510b1cf347 (IsA plaintiff litigant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "plaintiveness is a kind of mournfulness", "pln": ["(: cnet_isa_e74a0219ba (IsA plaintiveness mournfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plaiter is a kind of skilled worker", "pln": ["(: cnet_isa_3f573001ee (IsA plaiter skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plan is a kind of drawing", "pln": ["(: cnet_isa_7739f3f7ff (IsA plan drawing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plan is a kind of idea", "pln": ["(: cnet_isa_9c478970aa (IsA plan idea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plan of action is a kind of plan", "pln": ["(: cnet_isa_14d5334f53 (IsA plan_of_action plan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planarian is a kind of flatworm", "pln": ["(: cnet_isa_7112c8f94e (IsA planarian flatworm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planation is a kind of erosion", "pln": ["(: cnet_isa_7bfd4156c8 (IsA planation erosion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planchet is a kind of disk", "pln": ["(: cnet_isa_a174e7c439 (IsA planchet disk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planchette is a kind of board", "pln": ["(: cnet_isa_572cc0be76 (IsA planchette board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planck s constant is a kind of factor of proportionality", "pln": ["(: cnet_isa_f80ceef5e5 (IsA planck_s_constant factor_of_proportionality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planck s law is a kind of law", "pln": ["(: cnet_isa_5277cc0ccb (IsA planck_s_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "planck s radiation law is a kind of law", "pln": ["(: cnet_isa_f3bcb5505b (IsA planck_s_radiation_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plane is a kind of machine", "pln": ["(: cnet_isa_3c5fbdaec8 (IsA plane machine) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plane is a kind of vehicle", "pln": ["(: cnet_isa_281c7c96e4 (IsA plane vehicle) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plane is a kind of edge tool", "pln": ["(: cnet_isa_fe227a8b8c (IsA plane edge_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plane is a kind of hand tool", "pln": ["(: cnet_isa_520b566f5f (IsA plane hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "plane is a kind of power tool", "pln": ["(: cnet_isa_0868c7efed (IsA plane power_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plane is a kind of shape", "pln": ["(: cnet_isa_99ac4ac0a7 (IsA plane shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plane is a kind of degree", "pln": ["(: cnet_isa_1a321892a0 (IsA plane degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plane angle is a kind of angle", "pln": ["(: cnet_isa_ccbb18996a (IsA plane_angle angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plane figure is a kind of figure", "pln": ["(: cnet_isa_6d692b1926 (IsA plane_figure figure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plane geometry is a kind of geometry", "pln": ["(: cnet_isa_167cc40268 (IsA plane_geometry geometry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plane seat is a kind of seat", "pln": ["(: cnet_isa_8d37c392f0 (IsA plane_seat seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "plane table is a kind of surveying instrument", "pln": ["(: cnet_isa_184446e12b (IsA plane_table surveying_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plane ticket is a kind of ticket", "pln": ["(: cnet_isa_df916ae5f3 (IsA plane_ticket ticket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plane tree is a kind of tree", "pln": ["(: cnet_isa_cb5c189ad2 (IsA plane_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planera is a kind of dicot genus", "pln": ["(: cnet_isa_ef7234bed9 (IsA planera dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "planet is a kind of celestial body", "pln": ["(: cnet_isa_28a7ff901d (IsA planet celestial_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "planet is a kind of large object", "pln": ["(: cnet_isa_32a7807e8c (IsA planet large_object) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planetarium is a kind of building", "pln": ["(: cnet_isa_3c26d745e1 (IsA planetarium building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planetarium is a kind of model", "pln": ["(: cnet_isa_08a39b1683 (IsA planetarium model) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "planetarium is a kind of optical device", "pln": ["(: cnet_isa_26d27021ca (IsA planetarium optical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planetary gear is a kind of gear", "pln": ["(: cnet_isa_79fd315eaf (IsA planetary_gear gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planetary nebula is a kind of nebula", "pln": ["(: cnet_isa_d9e5c80616 (IsA planetary_nebula nebula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planetesimal is a kind of celestial body", "pln": ["(: cnet_isa_b39f21555e (IsA planetesimal celestial_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planetesimal hypothesis is a kind of scientific theory", "pln": ["(: cnet_isa_eb0bd26bcb (IsA planetesimal_hypothesis scientific_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "plangency is a kind of timbre", "pln": ["(: cnet_isa_c6d9cf1a28 (IsA plangency timbre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plank is a kind of policy", "pln": ["(: cnet_isa_e2733d3819 (IsA plank policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plank bed is a kind of bed", "pln": ["(: cnet_isa_0645f797b3 (IsA plank_bed bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planking is a kind of manual labor", "pln": ["(: cnet_isa_0119870ceb (IsA planking manual_labor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planking is a kind of covering", "pln": ["(: cnet_isa_a38150387c (IsA planking covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "planking is a kind of lumber", "pln": ["(: cnet_isa_bb80660339 (IsA planking lumber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plankton is a kind of organism", "pln": ["(: cnet_isa_3609b97bc1 (IsA plankton organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planktonic algae is a kind of phytoplankton", "pln": ["(: cnet_isa_c45fb63dbe (IsA planktonic_algae phytoplankton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planned community is a kind of residential district", "pln": ["(: cnet_isa_c068d41e12 (IsA planned_community residential_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planner is a kind of notebook", "pln": ["(: cnet_isa_e55e5630fb (IsA planner notebook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planner is a kind of person", "pln": ["(: cnet_isa_49342e4075 (IsA planner person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planning is a kind of design", "pln": ["(: cnet_isa_496d263267 (IsA planning design) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planning is a kind of preparation", "pln": ["(: cnet_isa_60e287a772 (IsA planning preparation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planning is a kind of thinking", "pln": ["(: cnet_isa_08e059894f (IsA planning thinking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planning commission is a kind of committee", "pln": ["(: cnet_isa_f8d14b4783 (IsA planning_commission committee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planococcus is a kind of arthropod genus", "pln": ["(: cnet_isa_54b8257783 (IsA planococcus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "planographic printing is a kind of printing", "pln": ["(: cnet_isa_c8fbdfbea8 (IsA planographic_printing printing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plant is a kind of organism", "pln": ["(: cnet_isa_9898b67304 (IsA plant organism) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plant is a kind of building complex", "pln": ["(: cnet_isa_9aab1e930b (IsA plant building_complex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plant is a kind of contrivance", "pln": ["(: cnet_isa_dffa9ff8c9 (IsA plant contrivance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plant is a kind of actor", "pln": ["(: cnet_isa_7a9fe7d655 (IsA plant actor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plant cell is a kind of cell", "pln": ["(: cnet_isa_85c0c4a3ed (IsA plant_cell cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plant closing is a kind of closure", "pln": ["(: cnet_isa_4f5d0778f8 (IsA plant_closing closure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plant department is a kind of business department", "pln": ["(: cnet_isa_90036901a2 (IsA plant_department business_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plant disease is a kind of disease", "pln": ["(: cnet_isa_236eb1273e (IsA plant_disease disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plant family is a kind of family", "pln": ["(: cnet_isa_d3b31b2b2d (IsA plant_family family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plant fiber is a kind of natural fiber", "pln": ["(: cnet_isa_72ecd724df (IsA plant_fiber natural_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plant fiber is a kind of plant product", "pln": ["(: cnet_isa_3437b3b1ef (IsA plant_fiber plant_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plant genus is a kind of genus", "pln": ["(: cnet_isa_ab730e53b1 (IsA plant_genus genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "plant hopper is a kind of homopterous insect", "pln": ["(: cnet_isa_c3a60c9a3a (IsA plant_hopper homopterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plant louse is a kind of homopterous insect", "pln": ["(: cnet_isa_55926fba1e (IsA plant_louse homopterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plant material is a kind of material", "pln": ["(: cnet_isa_65e6561343 (IsA plant_material material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plant order is a kind of order", "pln": ["(: cnet_isa_a9e402380b (IsA plant_order order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plant organ is a kind of plant part", "pln": ["(: cnet_isa_d6f9053dbc (IsA plant_organ plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plant part is a kind of natural object", "pln": ["(: cnet_isa_b068d1a879 (IsA plant_part natural_object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plant process is a kind of process", "pln": ["(: cnet_isa_d66afdf43f (IsA plant_process process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "plant product is a kind of plant material", "pln": ["(: cnet_isa_8a540bcc33 (IsA plant_product plant_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "plant tissue is a kind of plant part", "pln": ["(: cnet_isa_77e9b52e54 (IsA plant_tissue plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "plant toxin is a kind of toxin", "pln": ["(: cnet_isa_2fc56d5c0d (IsA plant_toxin toxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plant virus is a kind of virus", "pln": ["(: cnet_isa_1cf1340b46 (IsA plant_virus virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plantae is a kind of kingdom", "pln": ["(: cnet_isa_5a9f18403d (IsA plantae kingdom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plantagenet is a kind of dynasty", "pln": ["(: cnet_isa_09cdb63b41 (IsA plantagenet dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plantagenet is a kind of royalty", "pln": ["(: cnet_isa_f9556e5287 (IsA plantagenet royalty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plantaginaceae is a kind of dicot family", "pln": ["(: cnet_isa_26c4e8ae0e (IsA plantaginaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plantaginale is a kind of plant order", "pln": ["(: cnet_isa_a74c6f66e9 (IsA plantaginale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plantago is a kind of dicot genus", "pln": ["(: cnet_isa_e8c56c1194 (IsA plantago dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plantain is a kind of vegetable", "pln": ["(: cnet_isa_d5aff70e7b (IsA plantain vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plantain is a kind of banana", "pln": ["(: cnet_isa_81278239cf (IsA plantain banana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plantain is a kind of herb", "pln": ["(: cnet_isa_402bb7c764 (IsA plantain herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plantain leaved pussytoe is a kind of cat s foot", "pln": ["(: cnet_isa_34e1ac39f7 (IsA plantain_leaved_pussytoe cat_s_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plantain lily is a kind of herb", "pln": ["(: cnet_isa_ce956238f8 (IsA plantain_lily herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plantar reflex is a kind of reflex", "pln": ["(: cnet_isa_0123f9d2b7 (IsA plantar_reflex reflex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plantar wart is a kind of wart", "pln": ["(: cnet_isa_34a0ac7a4f (IsA plantar_wart wart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "plantation is a kind of colony", "pln": ["(: cnet_isa_bea25f0e31 (IsA plantation colony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plantation is a kind of estate", "pln": ["(: cnet_isa_0fb1f1df8a (IsA plantation estate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planter s punch is a kind of cocktail", "pln": ["(: cnet_isa_7286c6fe77 (IsA planter_s_punch cocktail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planter is a kind of pot", "pln": ["(: cnet_isa_7f79f9bc49 (IsA planter pot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "planter is a kind of farmer", "pln": ["(: cnet_isa_defba471c8 (IsA planter farmer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planter is a kind of worker", "pln": ["(: cnet_isa_5b7209f643 (IsA planter worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plantigrade mammal is a kind of placental", "pln": ["(: cnet_isa_e037899556 (IsA plantigrade_mammal placental) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planting is a kind of farming", "pln": ["(: cnet_isa_edf4dce6cd (IsA planting farming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planting is a kind of placement", "pln": ["(: cnet_isa_80a4c3e496 (IsA planting placement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planting is a kind of collection", "pln": ["(: cnet_isa_c2f3b709ec (IsA planting collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plantlet is a kind of plant", "pln": ["(: cnet_isa_f7e7713d00 (IsA plantlet plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plantlike flagellate is a kind of protozoan", "pln": ["(: cnet_isa_20162df4ca (IsA plantlike_flagellate protozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plant is a kind of in greenhous", "pln": ["(: cnet_isa_a18fca296d (IsA plant in_greenhous) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plant is a kind of living entity", "pln": ["(: cnet_isa_28448ed22c (IsA plant living_entity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "planula is a kind of hydrozoan", "pln": ["(: cnet_isa_ef73840521 (IsA planula hydrozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plaque is a kind of spot", "pln": ["(: cnet_isa_7f915c1240 (IsA plaque spot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "plasma is a kind of state of matter", "pln": ["(: cnet_isa_2e31ff7e6d (IsA plasma state_of_matter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plasma is a kind of chalcedony", "pln": ["(: cnet_isa_868d63a70c (IsA plasma chalcedony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plasma cell is a kind of lymphocyte", "pln": ["(: cnet_isa_ee5360a5b6 (IsA plasma_cell lymphocyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plasma physic is a kind of physic", "pln": ["(: cnet_isa_acee3802c0 (IsA plasma_physic physic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plasma protein is a kind of protein", "pln": ["(: cnet_isa_522cd58bf4 (IsA plasma_protein protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plasma thromboplastin antecedent is a kind of coagulation factor", "pln": ["(: cnet_isa_55012bac7e (IsA plasma_thromboplastin_antecedent coagulation_factor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plasmablast is a kind of plasma cell", "pln": ["(: cnet_isa_035209fe64 (IsA plasmablast plasma_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plasmacytoma is a kind of tumor", "pln": ["(: cnet_isa_dcb5c400fb (IsA plasmacytoma tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plasmapheresis is a kind of apheresis", "pln": ["(: cnet_isa_f1be0a6774 (IsA plasmapheresis apheresis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plasmid is a kind of inclusion body", "pln": ["(: cnet_isa_97b86864e4 (IsA plasmid inclusion_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plasmin is a kind of enzyme", "pln": ["(: cnet_isa_c24a9744f6 (IsA plasmin enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plasminogen is a kind of plasmin", "pln": ["(: cnet_isa_87746fd09d (IsA plasminogen plasmin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plasminogen activator is a kind of protease", "pln": ["(: cnet_isa_7904880f0b (IsA plasminogen_activator protease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plasmodiidae is a kind of protoctist family", "pln": ["(: cnet_isa_e07ea7f0c2 (IsA plasmodiidae protoctist_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plasmodiophora is a kind of fungus genus", "pln": ["(: cnet_isa_66be49004a (IsA plasmodiophora fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plasmodiophoraceae is a kind of fungus family", "pln": ["(: cnet_isa_54377c9106 (IsA plasmodiophoraceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plasmodium is a kind of cytoplasm", "pln": ["(: cnet_isa_b22979578c (IsA plasmodium cytoplasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plasmodium is a kind of sporozoan", "pln": ["(: cnet_isa_52b2483d3f (IsA plasmodium sporozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plaster is a kind of adhesive tape", "pln": ["(: cnet_isa_b51baa9b63 (IsA plaster adhesive_tape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plaster is a kind of surface", "pln": ["(: cnet_isa_ef7f2314df (IsA plaster surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plaster is a kind of covering material", "pln": ["(: cnet_isa_7fb342083d (IsA plaster covering_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plaster is a kind of mixture", "pln": ["(: cnet_isa_457d468ab2 (IsA plaster mixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plaster of paris is a kind of calcium sulphate", "pln": ["(: cnet_isa_59d47a89bc (IsA plaster_of_paris calcium_sulphate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plaster saint is a kind of good person", "pln": ["(: cnet_isa_ca8858d62c (IsA plaster_saint good_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plasterboard is a kind of wallboard", "pln": ["(: cnet_isa_8131bfc742 (IsA plasterboard wallboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plasterer is a kind of skilled worker", "pln": ["(: cnet_isa_64b97d75b4 (IsA plasterer skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plastering is a kind of application", "pln": ["(: cnet_isa_59e69c65ed (IsA plastering application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plastering trowel is a kind of trowel", "pln": ["(: cnet_isa_e83dcd728f (IsA plastering_trowel trowel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plastic is a kind of invention", "pln": ["(: cnet_isa_800b74bc15 (IsA plastic invention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plastic is a kind of man made product", "pln": ["(: cnet_isa_896e45b794 (IsA plastic man_made_product) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plastic is a kind of material", "pln": ["(: cnet_isa_2c215863c4 (IsA plastic material) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plastic is a kind of solid", "pln": ["(: cnet_isa_b4846e61ac (IsA plastic solid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plastic art is a kind of art", "pln": ["(: cnet_isa_0bbfc4c036 (IsA plastic_art art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "plastic bag is a kind of bag", "pln": ["(: cnet_isa_01d25c2a18 (IsA plastic_bag bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plastic bomb is a kind of bomb", "pln": ["(: cnet_isa_629f460aae (IsA plastic_bomb bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plastic explosive is a kind of explosive compound", "pln": ["(: cnet_isa_74740eca49 (IsA plastic_explosive explosive_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "plastic laminate is a kind of laminate", "pln": ["(: cnet_isa_21d61e98a2 (IsA plastic_laminate laminate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plastic surgery is a kind of cosmetic reconstruction of body", "pln": ["(: cnet_isa_053df34f2e (IsA plastic_surgery cosmetic_reconstruction_of_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plastic surgery is a kind of operation", "pln": ["(: cnet_isa_9e2703899e (IsA plastic_surgery operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plastic wrap is a kind of wrapping", "pln": ["(: cnet_isa_a815eaa3aa (IsA plastic_wrap wrapping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plasticizer is a kind of softener", "pln": ["(: cnet_isa_5929959146 (IsA plasticizer softener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plastic industry is a kind of industry", "pln": ["(: cnet_isa_9ab3511eef (IsA plastic_industry industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plastid is a kind of granule", "pln": ["(: cnet_isa_9bbf83587b (IsA plastid granule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "plastination is a kind of preservation", "pln": ["(: cnet_isa_05c24e61ca (IsA plastination preservation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plastron is a kind of breastplate", "pln": ["(: cnet_isa_0a7f49aaaa (IsA plastron breastplate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plastron is a kind of pad", "pln": ["(: cnet_isa_9b360fe9fb (IsA plastron pad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plastron is a kind of shirtfront", "pln": ["(: cnet_isa_93ea4f780a (IsA plastron shirtfront) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plastron is a kind of exoskeleton", "pln": ["(: cnet_isa_088c2cab01 (IsA plastron exoskeleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plat is a kind of map", "pln": ["(: cnet_isa_8a3c79b652 (IsA plat map) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platalea is a kind of bird genus", "pln": ["(: cnet_isa_c537fd9dcd (IsA platalea bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plataleidae is a kind of bird family", "pln": ["(: cnet_isa_a3ea27c7f0 (IsA plataleidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platanaceae is a kind of rosid dicot family", "pln": ["(: cnet_isa_51add642a0 (IsA platanaceae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platanistidae is a kind of mammal family", "pln": ["(: cnet_isa_25c0d882b9 (IsA platanistidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platanthera is a kind of monocot genus", "pln": ["(: cnet_isa_398a653f82 (IsA platanthera monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platanus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_2af13e2951 (IsA platanus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plate is a kind of dish", "pln": ["(: cnet_isa_b541603c9a (IsA plate dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "plate is a kind of anode", "pln": ["(: cnet_isa_ed63931694 (IsA plate anode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plate is a kind of flatware", "pln": ["(: cnet_isa_a0d6be53df (IsA plate flatware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plate is a kind of illustration", "pln": ["(: cnet_isa_c61f5d2118 (IsA plate illustration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plate is a kind of receptacle", "pln": ["(: cnet_isa_404955165c (IsA plate receptacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plate is a kind of sheet", "pln": ["(: cnet_isa_3f4a77719d (IsA plate sheet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "plate is a kind of shield", "pln": ["(: cnet_isa_537f6fe8f4 (IsA plate shield) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plate is a kind of structural member", "pln": ["(: cnet_isa_fabd7cf00f (IsA plate structural_member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plate is a kind of structure", "pln": ["(: cnet_isa_34def629ed (IsA plate structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plate is a kind of cut of beef", "pln": ["(: cnet_isa_1672ee39a5 (IsA plate cut_of_beef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plate is a kind of entree", "pln": ["(: cnet_isa_0cc1dacc14 (IsA plate entree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plate is a kind of crust", "pln": ["(: cnet_isa_2df1b3b7a9 (IsA plate crust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plate is a kind of containerful", "pln": ["(: cnet_isa_89060684ae (IsA plate containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plate glass is a kind of sheet", "pln": ["(: cnet_isa_bb78f707e1 (IsA plate_glass sheet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plate iron is a kind of plate", "pln": ["(: cnet_isa_4e2cfe7ad0 (IsA plate_iron plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plate rack is a kind of rack", "pln": ["(: cnet_isa_ea801bbc7c (IsA plate_rack rack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plate rail is a kind of rail", "pln": ["(: cnet_isa_da2bfa6fb9 (IsA plate_rail rail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plateau striped whiptail is a kind of whiptail", "pln": ["(: cnet_isa_eb93df4958 (IsA plateau_striped_whiptail whiptail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platelayer is a kind of laborer", "pln": ["(: cnet_isa_c88c232947 (IsA platelayer laborer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platelet is a kind of protoplasm", "pln": ["(: cnet_isa_62899dc392 (IsA platelet protoplasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plateletpheresis is a kind of apheresis", "pln": ["(: cnet_isa_971d5e003c (IsA plateletpheresis apheresis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "platen is a kind of plate", "pln": ["(: cnet_isa_a816290f5c (IsA platen plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "platen is a kind of roller", "pln": ["(: cnet_isa_6c9ef945e3 (IsA platen roller) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platen is a kind of table", "pln": ["(: cnet_isa_458cdeaf64 (IsA platen table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "plater is a kind of skilled worker", "pln": ["(: cnet_isa_181d52c3ad (IsA plater skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platform is a kind of computer system", "pln": ["(: cnet_isa_36fd0c8fe1 (IsA platform computer_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platform is a kind of horizontal surface", "pln": ["(: cnet_isa_8e1e1cd9b3 (IsA platform horizontal_surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platform is a kind of document", "pln": ["(: cnet_isa_2b1c9a2476 (IsA platform document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platform is a kind of structure", "pln": ["(: cnet_isa_ad0a5741e1 (IsA platform structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platform bed is a kind of bed", "pln": ["(: cnet_isa_2d33cc4128 (IsA platform_bed bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platform rocker is a kind of rocking chair", "pln": ["(: cnet_isa_ba1a530efd (IsA platform_rocker rocking_chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platichthy is a kind of fish genus", "pln": ["(: cnet_isa_7951ac8c29 (IsA platichthy fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plating is a kind of application", "pln": ["(: cnet_isa_c08dd25243 (IsA plating application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plating is a kind of coating", "pln": ["(: cnet_isa_409b81d41c (IsA plating coating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platinum is a kind of noble metal", "pln": ["(: cnet_isa_e7104df98f (IsA platinum noble_metal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platinum black is a kind of catalyst", "pln": ["(: cnet_isa_9dc183240d (IsA platinum_black catalyst) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platinum blonde is a kind of blond", "pln": ["(: cnet_isa_afbc3f5be2 (IsA platinum_blonde blond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platitudinarian is a kind of bore", "pln": ["(: cnet_isa_0fccd016e5 (IsA platitudinarian bore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plato s academy is a kind of academy", "pln": ["(: cnet_isa_eb71bd1d20 (IsA plato_s_academy academy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platonism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_a5c66bbbbd (IsA platonism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platonist is a kind of advocate", "pln": ["(: cnet_isa_47333bd390 (IsA platonist advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platoon is a kind of police squad", "pln": ["(: cnet_isa_a1ff2a682c (IsA platoon police_squad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platoon is a kind of social group", "pln": ["(: cnet_isa_542cc67b39 (IsA platoon social_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "platoon is a kind of army unit", "pln": ["(: cnet_isa_924cb328fc (IsA platoon army_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platte river penstemon is a kind of wildflower", "pln": ["(: cnet_isa_b583eed7ed (IsA platte_river_penstemon wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "platter is a kind of flatware", "pln": ["(: cnet_isa_f54b948c6a (IsA platter flatware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platy is a kind of topminnow", "pln": ["(: cnet_isa_0e3d747652 (IsA platy topminnow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platycephalidae is a kind of fish family", "pln": ["(: cnet_isa_ad4e359fcb (IsA platycephalidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platycerium is a kind of fern genus", "pln": ["(: cnet_isa_470c2c7b29 (IsA platycerium fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platyctenea is a kind of animal order", "pln": ["(: cnet_isa_ce0018d5de (IsA platyctenea animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platyctenean is a kind of ctenophore", "pln": ["(: cnet_isa_ca9c62f260 (IsA platyctenean ctenophore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platyhelminthe is a kind of phylum", "pln": ["(: cnet_isa_09aa5615df (IsA platyhelminthe phylum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platylobium is a kind of rosid dicot genus", "pln": ["(: cnet_isa_08ad8f000c (IsA platylobium rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platymiscium is a kind of rosid dicot genus", "pln": ["(: cnet_isa_7b4d927a2b (IsA platymiscium rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platypoecilus is a kind of fish genus", "pln": ["(: cnet_isa_b5d7adfece (IsA platypoecilus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platypus is a kind of monotreme", "pln": ["(: cnet_isa_96105e2f03 (IsA platypus monotreme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "platyrrhini is a kind of mammal family", "pln": ["(: cnet_isa_7f54b6a8c3 (IsA platyrrhini mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platysma is a kind of facial muscle", "pln": ["(: cnet_isa_8aba46d606 (IsA platysma facial_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "platystemon is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_dd5c8194b0 (IsA platystemon dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "plausibility is a kind of credibility", "pln": ["(: cnet_isa_e41c6deb36 (IsA plausibility credibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plautus is a kind of bird genus", "pln": ["(: cnet_isa_7659c92f5f (IsA plautus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "play is a kind of child s way of learning", "pln": ["(: cnet_isa_33f06aec9a (IsA play child_s_way_of_learning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "play is a kind of action", "pln": ["(: cnet_isa_9ecfeac831 (IsA play action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "play is a kind of diversion", "pln": ["(: cnet_isa_4a6329f186 (IsA play diversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "play is a kind of plan of action", "pln": ["(: cnet_isa_5d17fd7191 (IsA play plan_of_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "play is a kind of use", "pln": ["(: cnet_isa_924c04978c (IsA play use) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "play is a kind of show", "pln": ["(: cnet_isa_131473e811 (IsA play show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "play is a kind of dramatic composition", "pln": ["(: cnet_isa_dee245c7d7 (IsA play dramatic_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "play reading is a kind of performance", "pln": ["(: cnet_isa_e5b146abd4 (IsA play_reading performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "play therapy is a kind of psychotherapy", "pln": ["(: cnet_isa_6552ae8c8e (IsA play_therapy psychotherapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playacting is a kind of cultural activity", "pln": ["(: cnet_isa_f107645b18 (IsA playacting cultural_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playback is a kind of sound reproduction", "pln": ["(: cnet_isa_a6f73c74c5 (IsA playback sound_reproduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playback is a kind of electronic equipment", "pln": ["(: cnet_isa_397b5213ef (IsA playback electronic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playbill is a kind of bill", "pln": ["(: cnet_isa_e698444abd (IsA playbill bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playbill is a kind of program", "pln": ["(: cnet_isa_198f26e294 (IsA playbill program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playbook is a kind of scheme", "pln": ["(: cnet_isa_859e70de62 (IsA playbook scheme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playbook is a kind of book", "pln": ["(: cnet_isa_e9629b49be (IsA playbook book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playbook is a kind of notebook", "pln": ["(: cnet_isa_e312743f41 (IsA playbook notebook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playbox is a kind of box", "pln": ["(: cnet_isa_66d8907524 (IsA playbox box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "playboy is a kind of hedonist", "pln": ["(: cnet_isa_7716b6f306 (IsA playboy hedonist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "player is a kind of contestant", "pln": ["(: cnet_isa_a8f18328c9 (IsA player contestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "player is a kind of person", "pln": ["(: cnet_isa_ba0bff0df1 (IsA player person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "playfulness is a kind of frivolity", "pln": ["(: cnet_isa_a71b8c6c5d (IsA playfulness frivolity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "playing is a kind of way to learn social skills", "pln": ["(: cnet_isa_cb823357ce (IsA playing way_to_learn_social_skills) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playgoer is a kind of spectator", "pln": ["(: cnet_isa_40b95beae6 (IsA playgoer spectator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playground is a kind of yard", "pln": ["(: cnet_isa_9c6c1bc585 (IsA playground yard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playhouse is a kind of plaything", "pln": ["(: cnet_isa_fac18fcc27 (IsA playhouse plaything) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playing is a kind of way to learn social skill", "pln": ["(: cnet_isa_e8d716db8c (IsA playing way_to_learn_social_skill) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playing is a kind of action", "pln": ["(: cnet_isa_e6f87aa94a (IsA playing action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playing is a kind of musical performance", "pln": ["(: cnet_isa_0d89324572 (IsA playing musical_performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playing card is a kind of card", "pln": ["(: cnet_isa_79f0e14b75 (IsA playing_card card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playing card is a kind of activity", "pln": ["(: cnet_isa_7822646378 (IsA playing_card activity) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playing cricket is a kind of intelligent agent activity", "pln": ["(: cnet_isa_01e9f26e94 (IsA playing_cricket intelligent_agent_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playing cricket is a kind of playing game", "pln": ["(: cnet_isa_73f2e9c9d1 (IsA playing_cricket playing_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playing dart is a kind of hobby", "pln": ["(: cnet_isa_e9de0286ec (IsA playing_dart hobby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playing field is a kind of tract", "pln": ["(: cnet_isa_5b7a449575 (IsA playing_field tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "playing field is a kind of circumstance", "pln": ["(: cnet_isa_7118017423 (IsA playing_field circumstance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "playing games is a kind of activity", "pln": ["(: cnet_isa_e0dbc9cd86 (IsA playing_games activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playing game is a kind of activity", "pln": ["(: cnet_isa_eedafcfa9d (IsA playing_game activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playing period is a kind of measure", "pln": ["(: cnet_isa_3d087e5d0d (IsA playing_period measure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playlet is a kind of play", "pln": ["(: cnet_isa_72cab6e4c3 (IsA playlet play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playlist is a kind of list", "pln": ["(: cnet_isa_1adad76723 (IsA playlist list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playmaker is a kind of player", "pln": ["(: cnet_isa_8b99796da8 (IsA playmaker player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "playmate is a kind of companion", "pln": ["(: cnet_isa_a5df1c4453 (IsA playmate companion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playoff is a kind of contest", "pln": ["(: cnet_isa_55967f560f (IsA playoff contest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playoff game is a kind of game", "pln": ["(: cnet_isa_1aea01f27a (IsA playoff_game game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playpen is a kind of enclosure", "pln": ["(: cnet_isa_b57577cbf7 (IsA playpen enclosure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playschool is a kind of preschool", "pln": ["(: cnet_isa_5d7ce1aae0 (IsA playschool preschool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playsuit is a kind of outfit", "pln": ["(: cnet_isa_96b3585781 (IsA playsuit outfit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plaything is a kind of artifact", "pln": ["(: cnet_isa_2521afc572 (IsA plaything artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "playtime is a kind of leisure", "pln": ["(: cnet_isa_44d4d03e7c (IsA playtime leisure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plaza is a kind of mercantile establishment", "pln": ["(: cnet_isa_d5ee4b6675 (IsA plaza mercantile_establishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plaza is a kind of public square", "pln": ["(: cnet_isa_9fccb646f6 (IsA plaza public_square) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plea is a kind of answer", "pln": ["(: cnet_isa_4278f56ac1 (IsA plea answer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plea is a kind of due process", "pln": ["(: cnet_isa_78c05defed (IsA plea due_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plea bargain is a kind of bargaining", "pln": ["(: cnet_isa_c3b4c6a1ab (IsA plea_bargain bargaining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleading is a kind of statement", "pln": ["(: cnet_isa_2bd705af2a (IsA pleading statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleasance is a kind of retreat", "pln": ["(: cnet_isa_8f01ca695d (IsA pleasance retreat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleasantness is a kind of quality", "pln": ["(: cnet_isa_049a02ef36 (IsA pleasantness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleasantness is a kind of pleasure", "pln": ["(: cnet_isa_233096d5d5 (IsA pleasantness pleasure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleasantry is a kind of jest", "pln": ["(: cnet_isa_49321bbdeb (IsA pleasantry jest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleaser is a kind of entertainer", "pln": ["(: cnet_isa_90829fa3cf (IsA pleaser entertainer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleasing is a kind of gratification", "pln": ["(: cnet_isa_992328ae1d (IsA pleasing gratification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleasingness is a kind of palatability", "pln": ["(: cnet_isa_08acce8a58 (IsA pleasingness palatability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleasingness is a kind of pleasantness", "pln": ["(: cnet_isa_a63b07d6c2 (IsA pleasingness pleasantness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleasure is a kind of activity", "pln": ["(: cnet_isa_eea020b022 (IsA pleasure activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleasure is a kind of sexual activity", "pln": ["(: cnet_isa_db15e7423f (IsA pleasure sexual_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleasure is a kind of choice", "pln": ["(: cnet_isa_8f588c6a13 (IsA pleasure choice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleasure is a kind of feeling", "pln": ["(: cnet_isa_a952f18d08 (IsA pleasure feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleasure principle is a kind of principle", "pln": ["(: cnet_isa_74095820d2 (IsA pleasure_principle principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleat is a kind of fold", "pln": ["(: cnet_isa_593126dad0 (IsA pleat fold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plebeian is a kind of commoner", "pln": ["(: cnet_isa_ce8c427049 (IsA plebeian commoner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plebiscite is a kind of vote", "pln": ["(: cnet_isa_d04fcfce9b (IsA plebiscite vote) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plecoptera is a kind of animal order", "pln": ["(: cnet_isa_92b32007d1 (IsA plecoptera animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plecotus is a kind of mammal genus", "pln": ["(: cnet_isa_5ff4830eb3 (IsA plecotus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plectania is a kind of fungus genus", "pln": ["(: cnet_isa_48d3e710a6 (IsA plectania fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plectognath is a kind of spiny finned fish", "pln": ["(: cnet_isa_b2410aecf3 (IsA plectognath spiny_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plectognathi is a kind of animal order", "pln": ["(: cnet_isa_96b5426a91 (IsA plectognathi animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plectomycete is a kind of class", "pln": ["(: cnet_isa_960d7354f7 (IsA plectomycete class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plectophera is a kind of ephemerid", "pln": ["(: cnet_isa_27b8c5d030 (IsA plectophera ephemerid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "plectorrhiza is a kind of monocot genus", "pln": ["(: cnet_isa_63ad7a3ead (IsA plectorrhiza monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "pleiospilos is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_92e76cf1cb (IsA pleiospilos caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plectranthus is a kind of houseplant", "pln": ["(: cnet_isa_442cbbf9e8 (IsA plectranthus houseplant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plectrophenax is a kind of bird genus", "pln": ["(: cnet_isa_0c99557b9c (IsA plectrophenax bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pledge is a kind of drink", "pln": ["(: cnet_isa_97d6bb3a79 (IsA pledge drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pledge is a kind of member", "pln": ["(: cnet_isa_b44324564e (IsA pledge member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pledge is a kind of security interest", "pln": ["(: cnet_isa_fb4f8c125b (IsA pledge security_interest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pledge taker is a kind of volunteer", "pln": ["(: cnet_isa_d1bbd73a2e (IsA pledge_taker volunteer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pledgee is a kind of adult", "pln": ["(: cnet_isa_efc177fb87 (IsA pledgee adult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pledger is a kind of adult", "pln": ["(: cnet_isa_23e25d10e4 (IsA pledger adult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleiade is a kind of nymph", "pln": ["(: cnet_isa_9ab1df1c45 (IsA pleiade nymph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleione is a kind of monocot genus", "pln": ["(: cnet_isa_98bd0738e8 (IsA pleione monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleiospilo is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_19c7e71e3b (IsA pleiospilo caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plenipotentiary is a kind of diplomat", "pln": ["(: cnet_isa_f6fe1d71fd (IsA plenipotentiary diplomat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plenty is a kind of abundance", "pln": ["(: cnet_isa_f0d9f055ce (IsA plenty abundance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plenum is a kind of enclosure", "pln": ["(: cnet_isa_c03ed3af1a (IsA plenum enclosure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plenum is a kind of meeting", "pln": ["(: cnet_isa_5ed51d0029 (IsA plenum meeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleochroism is a kind of optical phenomenon", "pln": ["(: cnet_isa_76a47d66cf (IsA pleochroism optical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pleomorphic rhabdomyosarcoma is a kind of rhabdomyosarcoma", "pln": ["(: cnet_isa_c5f2b184a0 (IsA pleomorphic_rhabdomyosarcoma rhabdomyosarcoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleomorphism is a kind of organic phenomenon", "pln": ["(: cnet_isa_9559436fe5 (IsA pleomorphism organic_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleonasm is a kind of verboseness", "pln": ["(: cnet_isa_00cd17934c (IsA pleonasm verboseness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plesianthropus is a kind of mammal genus", "pln": ["(: cnet_isa_cee07eed42 (IsA plesianthropus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plesiosaur is a kind of archosaur", "pln": ["(: cnet_isa_917331f8d2 (IsA plesiosaur archosaur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plesiosauria is a kind of animal order", "pln": ["(: cnet_isa_6b0825a424 (IsA plesiosauria animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plethodon is a kind of amphibian genus", "pln": ["(: cnet_isa_66e3b0a8a1 (IsA plethodon amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "plethodontidae is a kind of amphibian family", "pln": ["(: cnet_isa_6b592b3b94 (IsA plethodontidae amphibian_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plethysmograph is a kind of measuring instrument", "pln": ["(: cnet_isa_908117515d (IsA plethysmograph measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pleura is a kind of serous membrane", "pln": ["(: cnet_isa_5d7da4473b (IsA pleura serous_membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleural cavity is a kind of cavity", "pln": ["(: cnet_isa_911f5de51e (IsA pleural_cavity cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleural space is a kind of space", "pln": ["(: cnet_isa_2199bb2ab8 (IsA pleural_space space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleurisy is a kind of inflammatory disease", "pln": ["(: cnet_isa_1a0c8646b3 (IsA pleurisy inflammatory_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleurobrachia is a kind of ctenophore genus", "pln": ["(: cnet_isa_59ca98b788 (IsA pleurobrachia ctenophore_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleurobrachiidae is a kind of ctenophore family", "pln": ["(: cnet_isa_a464d3bf64 (IsA pleurobrachiidae ctenophore_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleurocarp is a kind of moss", "pln": ["(: cnet_isa_e9ce0b0e7c (IsA pleurocarp moss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleurodont is a kind of animal", "pln": ["(: cnet_isa_fe48b9b535 (IsA pleurodont animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleurodynia is a kind of pain", "pln": ["(: cnet_isa_0e5d802a50 (IsA pleurodynia pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleuronecte is a kind of fish genus", "pln": ["(: cnet_isa_5e4d086329 (IsA pleuronecte fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleuronectidae is a kind of fish family", "pln": ["(: cnet_isa_db9d2ce01d (IsA pleuronectidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleuropneumonia is a kind of pleurisy", "pln": ["(: cnet_isa_7a4169963a (IsA pleuropneumonia pleurisy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleuropneumonia is a kind of pneumonia", "pln": ["(: cnet_isa_058f18d994 (IsA pleuropneumonia pneumonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleuropneumonialike organism is a kind of mycoplasma", "pln": ["(: cnet_isa_e29ae950f1 (IsA pleuropneumonialike_organism mycoplasma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleurosorus is a kind of fern genus", "pln": ["(: cnet_isa_c4275fc5a3 (IsA pleurosorus fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleurothallis is a kind of orchid", "pln": ["(: cnet_isa_3b1fff079f (IsA pleurothallis orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleurotus is a kind of fungus genus", "pln": ["(: cnet_isa_1f8a32b060 (IsA pleurotus fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pleximeter is a kind of plate", "pln": ["(: cnet_isa_5413da6231 (IsA pleximeter plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plexor is a kind of hammer", "pln": ["(: cnet_isa_be66ba69a1 (IsA plexor hammer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plexus is a kind of structure", "pln": ["(: cnet_isa_5823f4695c (IsA plexus structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plexus dentalis is a kind of nerve plexus", "pln": ["(: cnet_isa_0c2c4a326c (IsA plexus_dentalis nerve_plexus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pliability is a kind of adaptability", "pln": ["(: cnet_isa_0c7ea046ad (IsA pliability adaptability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pliancy is a kind of bendability", "pln": ["(: cnet_isa_ec0d17db16 (IsA pliancy bendability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plication is a kind of fold", "pln": ["(: cnet_isa_677dba380e (IsA plication fold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plicatoperipatus is a kind of arthropod genus", "pln": ["(: cnet_isa_eb224276ae (IsA plicatoperipatus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plicatoperipatus jamaicensis is a kind of onychophoran", "pln": ["(: cnet_isa_78b0ef6ac3 (IsA plicatoperipatus_jamaicensis onychophoran) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plier is a kind of worker", "pln": ["(: cnet_isa_2c8ecb06f4 (IsA plier worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plier is a kind of compound lever", "pln": ["(: cnet_isa_b846bd685b (IsA plier compound_lever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plier is a kind of hand tool", "pln": ["(: cnet_isa_73488eb44c (IsA plier hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "plight is a kind of assurance", "pln": ["(: cnet_isa_677950e4fd (IsA plight assurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plimsoll is a kind of gym shoe", "pln": ["(: cnet_isa_a20b101951 (IsA plimsoll gym_shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plinian eruption is a kind of volcanic eruption", "pln": ["(: cnet_isa_564d427df0 (IsA plinian_eruption volcanic_eruption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ploce is a kind of repetition", "pln": ["(: cnet_isa_fe4f5236a2 (IsA ploce repetition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ploceidae is a kind of bird family", "pln": ["(: cnet_isa_90182ff8d2 (IsA ploceidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ploceus is a kind of bird genus", "pln": ["(: cnet_isa_e159fed07c (IsA ploceus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plodder is a kind of dawdler", "pln": ["(: cnet_isa_3f1794e380 (IsA plodder dawdler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plodder is a kind of hack", "pln": ["(: cnet_isa_ea539e1da1 (IsA plodder hack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plodding is a kind of walk", "pln": ["(: cnet_isa_5b68d685b1 (IsA plodding walk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plonk is a kind of noise", "pln": ["(: cnet_isa_3f5da65570 (IsA plonk noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plonk is a kind of wine", "pln": ["(: cnet_isa_2b66223a31 (IsA plonk wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plop is a kind of noise", "pln": ["(: cnet_isa_58e896086f (IsA plop noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plosion is a kind of release", "pln": ["(: cnet_isa_bec16fc7cc (IsA plosion release) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plot is a kind of scheme", "pln": ["(: cnet_isa_1507135f90 (IsA plot scheme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plot is a kind of chart", "pln": ["(: cnet_isa_ddfca64979 (IsA plot chart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plot is a kind of story", "pln": ["(: cnet_isa_8ecca285dc (IsA plot story) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plot is a kind of tract", "pln": ["(: cnet_isa_592014af42 (IsA plot tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plot element is a kind of component", "pln": ["(: cnet_isa_c8aefb580b (IsA plot_element component) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "plott hound is a kind of hound", "pln": ["(: cnet_isa_b672b1b8ab (IsA plott_hound hound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plotter is a kind of instrument", "pln": ["(: cnet_isa_3bb15cadb1 (IsA plotter instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plotter is a kind of clerk", "pln": ["(: cnet_isa_952d065c35 (IsA plotter clerk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ploughman s lunch is a kind of meal", "pln": ["(: cnet_isa_bd49613b0b (IsA ploughman_s_lunch meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "plover is a kind of shorebird", "pln": ["(: cnet_isa_3b455ce443 (IsA plover shorebird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plow is a kind of tool", "pln": ["(: cnet_isa_0ed6b237a3 (IsA plow tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plow horse is a kind of workhorse", "pln": ["(: cnet_isa_9cba5dbc92 (IsA plow_horse workhorse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plowboy is a kind of male child", "pln": ["(: cnet_isa_7d6c3c8d7c (IsA plowboy male_child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "plowing is a kind of tilling", "pln": ["(: cnet_isa_57b0dc41db (IsA plowing tilling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plowman is a kind of farmhand", "pln": ["(: cnet_isa_da08f23b49 (IsA plowman farmhand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plowshare is a kind of wedge", "pln": ["(: cnet_isa_0f60675420 (IsA plowshare wedge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "plowwright is a kind of wright", "pln": ["(: cnet_isa_930f372f00 (IsA plowwright wright) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ploy is a kind of maneuver", "pln": ["(: cnet_isa_2b3d1b1c62 (IsA ploy maneuver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pluck is a kind of pull", "pln": ["(: cnet_isa_8c9de7279e (IsA pluck pull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plug is a kind of blockage", "pln": ["(: cnet_isa_695fb6ad28 (IsA plug blockage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plug is a kind of electrical device", "pln": ["(: cnet_isa_393984eb64 (IsA plug electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plug fuse is a kind of fuse", "pln": ["(: cnet_isa_8c59420baa (IsA plug_fuse fuse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plug in is a kind of software", "pln": ["(: cnet_isa_8a0af9feff (IsA plug_in software) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plughole is a kind of hole", "pln": ["(: cnet_isa_fd9fa1fa6d (IsA plughole hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plum is a kind of position", "pln": ["(: cnet_isa_3960487658 (IsA plum position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plum is a kind of drupe", "pln": ["(: cnet_isa_d0f8529add (IsA plum drupe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plum is a kind of edible fruit", "pln": ["(: cnet_isa_bf028da615 (IsA plum edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plum is a kind of fruit tree", "pln": ["(: cnet_isa_99a285dc73 (IsA plum fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plum fruited yew is a kind of conifer", "pln": ["(: cnet_isa_0cf5a10b0d (IsA plum_fruited_yew conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plum pudding is a kind of pudding", "pln": ["(: cnet_isa_901090f11c (IsA plum_pudding pudding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plum sauce is a kind of sauce", "pln": ["(: cnet_isa_e8c0cf82c2 (IsA plum_sauce sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plum tomato is a kind of cherry tomato", "pln": ["(: cnet_isa_30ff694c53 (IsA plum_tomato cherry_tomato) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plum yew is a kind of conifer", "pln": ["(: cnet_isa_4415d89a3d (IsA plum_yew conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "plumb bob is a kind of bob", "pln": ["(: cnet_isa_f00dfdcf49 (IsA plumb_bob bob) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plumb level is a kind of carpenter s level", "pln": ["(: cnet_isa_685a436ebb (IsA plumb_level carpenter_s_level) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plumb line is a kind of cord", "pln": ["(: cnet_isa_65ed5c6095 (IsA plumb_line cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plumb rule is a kind of plumb line", "pln": ["(: cnet_isa_126b28d768 (IsA plumb_rule plumb_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plumbaginaceae is a kind of dicot family", "pln": ["(: cnet_isa_e8776a106e (IsA plumbaginaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plumbaginale is a kind of plant order", "pln": ["(: cnet_isa_a50cc7e0b1 (IsA plumbaginale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plumbago is a kind of herb", "pln": ["(: cnet_isa_ca80ca40d2 (IsA plumbago herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plumber s snake is a kind of hand tool", "pln": ["(: cnet_isa_6a10a0904a (IsA plumber_s_snake hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plumber s snake is a kind of hydra", "pln": ["(: cnet_isa_838fb7bb37 (IsA plumber_s_snake hydra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plumber is a kind of craftsman", "pln": ["(: cnet_isa_4e7142976e (IsA plumber craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plumbing is a kind of occupation", "pln": ["(: cnet_isa_5d49933a2c (IsA plumbing occupation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plumbing is a kind of system", "pln": ["(: cnet_isa_ee10045940 (IsA plumbing system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plumbing is a kind of trade", "pln": ["(: cnet_isa_c2c9391480 (IsA plumbing trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plumbing is a kind of utility", "pln": ["(: cnet_isa_2d048474dd (IsA plumbing utility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "plumbing fixture is a kind of fixture", "pln": ["(: cnet_isa_bf47542d30 (IsA plumbing_fixture fixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plumcot is a kind of edible fruit", "pln": ["(: cnet_isa_2aceaefe70 (IsA plumcot edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plumcot is a kind of fruit tree", "pln": ["(: cnet_isa_53b1621dd4 (IsA plumcot fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plume is a kind of adornment", "pln": ["(: cnet_isa_38d4890df1 (IsA plume adornment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plume is a kind of shape", "pln": ["(: cnet_isa_3253214c92 (IsA plume shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plume grass is a kind of grass", "pln": ["(: cnet_isa_89d6598b3b (IsA plume_grass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plume poppy is a kind of poppy", "pln": ["(: cnet_isa_ec0d31af64 (IsA plume_poppy poppy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "plume thistle is a kind of thistle", "pln": ["(: cnet_isa_415c85abea (IsA plume_thistle thistle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plumed scorpionfish is a kind of scorpionfish", "pln": ["(: cnet_isa_a2a7938690 (IsA plumed_scorpionfish scorpionfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plumed tussock is a kind of grass", "pln": ["(: cnet_isa_2c6b7af1c5 (IsA plumed_tussock grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plumeria is a kind of dicot genus", "pln": ["(: cnet_isa_acf0bb3f45 (IsA plumeria dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plump is a kind of noise", "pln": ["(: cnet_isa_57868e82b9 (IsA plump noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plumpness is a kind of fleshiness", "pln": ["(: cnet_isa_43ac8933c4 (IsA plumpness fleshiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plum is a kind of fruit", "pln": ["(: cnet_isa_0557c4b8ae (IsA plum fruit) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plumule is a kind of down", "pln": ["(: cnet_isa_291b4831f4 (IsA plumule down) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plunderage is a kind of embezzlement", "pln": ["(: cnet_isa_c6d2224690 (IsA plunderage embezzlement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plunderer is a kind of thief", "pln": ["(: cnet_isa_93f4499530 (IsA plunderer thief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plundering is a kind of aggression", "pln": ["(: cnet_isa_10d231b75d (IsA plundering aggression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plunge is a kind of drop", "pln": ["(: cnet_isa_136209db34 (IsA plunge drop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plunger is a kind of tool to used carefully", "pln": ["(: cnet_isa_a0739e3f18 (IsA plunger tool_to_used_carefully) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plunger is a kind of hand tool", "pln": ["(: cnet_isa_a76222f745 (IsA plunger hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plunk is a kind of hit", "pln": ["(: cnet_isa_8806f2776d (IsA plunk hit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plunk is a kind of sound", "pln": ["(: cnet_isa_a1ebe1b4f4 (IsA plunk sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plural is a kind of form", "pln": ["(: cnet_isa_7862f3cb98 (IsA plural form) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plural of cowboy is a kind of cowboy", "pln": ["(: cnet_isa_9023147403 (IsA plural_of_cowboy cowboy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pluralisation is a kind of inflection", "pln": ["(: cnet_isa_7ca415e359 (IsA pluralisation inflection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pluralism is a kind of practice", "pln": ["(: cnet_isa_db446171b1 (IsA pluralism practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pluralism is a kind of doctrine", "pln": ["(: cnet_isa_ed3bbae5be (IsA pluralism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pluralism is a kind of social organization", "pln": ["(: cnet_isa_9e903528b0 (IsA pluralism social_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pluralist is a kind of cleric", "pln": ["(: cnet_isa_d3e2855ebe (IsA pluralist cleric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pluralist is a kind of liberal", "pln": ["(: cnet_isa_42fd42a44a (IsA pluralist liberal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pluralist is a kind of philosopher", "pln": ["(: cnet_isa_a4fd5191cb (IsA pluralist philosopher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plurality is a kind of relative quantity", "pln": ["(: cnet_isa_52eb76443e (IsA plurality relative_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plurality is a kind of state", "pln": ["(: cnet_isa_4d1693f0a6 (IsA plurality state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plus four is a kind of breeche", "pln": ["(: cnet_isa_a1b08ea19d (IsA plus_four breeche) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plus sign is a kind of sign", "pln": ["(: cnet_isa_863e2296ac (IsA plus_sign sign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plush is a kind of fabric", "pln": ["(: cnet_isa_9c24c53563 (IsA plush fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pluteaceae is a kind of fungus family", "pln": ["(: cnet_isa_0f91faa955 (IsA pluteaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pluteus is a kind of fungus genus", "pln": ["(: cnet_isa_49f1fc238f (IsA pluteus fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pluteus aurantiorugosus is a kind of agaric", "pln": ["(: cnet_isa_05dfe39cba (IsA pluteus_aurantiorugosus agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pluteus magnus is a kind of agaric", "pln": ["(: cnet_isa_fba597363b (IsA pluteus_magnus agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plutocracy is a kind of political system", "pln": ["(: cnet_isa_635b94dc41 (IsA plutocracy political_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plutocrat is a kind of rich person", "pln": ["(: cnet_isa_a1391fc28f (IsA plutocrat rich_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plutonium is a kind of element", "pln": ["(: cnet_isa_981c15bb63 (IsA plutonium element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plutonium is a kind of chemical element", "pln": ["(: cnet_isa_2903168fef (IsA plutonium chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plutonium 239 is a kind of plutonium", "pln": ["(: cnet_isa_d240b94a88 (IsA plutonium_239 plutonium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plutonium trigger is a kind of trigger", "pln": ["(: cnet_isa_7ee250695a (IsA plutonium_trigger trigger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pluvialis is a kind of bird genus", "pln": ["(: cnet_isa_20a6d32d74 (IsA pluvialis bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pluvianus is a kind of bird genus", "pln": ["(: cnet_isa_6ad97ea377 (IsA pluvianus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pluviose is a kind of revolutionary calendar month", "pln": ["(: cnet_isa_9da978491f (IsA pluviose revolutionary_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ply is a kind of layer", "pln": ["(: cnet_isa_030d73ea08 (IsA ply layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ply is a kind of strand", "pln": ["(: cnet_isa_7ef3f9babf (IsA ply strand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plymouth rock is a kind of domestic fowl", "pln": ["(: cnet_isa_ac7dfa0ed1 (IsA plymouth_rock domestic_fowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "plywood is a kind of laminate", "pln": ["(: cnet_isa_4278eb36f8 (IsA plywood laminate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pm is a kind of head of state", "pln": ["(: cnet_isa_ff4d2b56f2 (IsA pm head_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pneumatic drill is a kind of power drill", "pln": ["(: cnet_isa_6e36214b16 (IsA pneumatic_drill power_drill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pneumatic tire is a kind of tire", "pln": ["(: cnet_isa_7ba6106310 (IsA pneumatic_tire tire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pneumatic is a kind of mechanic", "pln": ["(: cnet_isa_229c5ce0a7 (IsA pneumatic mechanic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pneumatophore is a kind of root", "pln": ["(: cnet_isa_7ad0504fea (IsA pneumatophore root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pneumococcal pneumonia is a kind of pneumonia", "pln": ["(: cnet_isa_adf10decf6 (IsA pneumococcal_pneumonia pneumonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pneumococcus is a kind of diplococcus", "pln": ["(: cnet_isa_8c3d1e835a (IsA pneumococcus diplococcus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pneumoconiosis is a kind of respiratory disease", "pln": ["(: cnet_isa_94a6a3f5f2 (IsA pneumoconiosis respiratory_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pneumocytosis is a kind of pneumonia", "pln": ["(: cnet_isa_dedd02c574 (IsA pneumocytosis pneumonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pneumonectomy is a kind of ablation", "pln": ["(: cnet_isa_e90fc2fc1a (IsA pneumonectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pneumonia is a kind of respiratory disease", "pln": ["(: cnet_isa_843fdb7d78 (IsA pneumonia respiratory_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pneumonic plague is a kind of plague", "pln": ["(: cnet_isa_d1320c05d7 (IsA pneumonic_plague plague) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pneumonitis is a kind of inflammation", "pln": ["(: cnet_isa_614b0239d9 (IsA pneumonitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pneumothorax is a kind of abnormality", "pln": ["(: cnet_isa_f64e706aef (IsA pneumothorax abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poa is a kind of monocot genus", "pln": ["(: cnet_isa_ffffc50b56 (IsA poa monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poached egg is a kind of dish", "pln": ["(: cnet_isa_232b5c2abe (IsA poached_egg dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poacher is a kind of scorpaenoid", "pln": ["(: cnet_isa_78b87a0e2b (IsA poacher scorpaenoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poacher is a kind of cooking utensil", "pln": ["(: cnet_isa_a353a809d3 (IsA poacher cooking_utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poacher is a kind of vessel", "pln": ["(: cnet_isa_4fe12b665c (IsA poacher vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poacher is a kind of appropriator", "pln": ["(: cnet_isa_a84174dc18 (IsA poacher appropriator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "poaching is a kind of cooking", "pln": ["(: cnet_isa_66a67e5cfb (IsA poaching cooking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pochard is a kind of duck", "pln": ["(: cnet_isa_2b8d6ce3ff (IsA pochard duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pock is a kind of pustule", "pln": ["(: cnet_isa_f2b7f87d7e (IsA pock pustule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pocket is a kind of opening", "pln": ["(: cnet_isa_56e25711fd (IsA pocket opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pocket is a kind of pouch", "pln": ["(: cnet_isa_74390468c6 (IsA pocket pouch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pocket is a kind of space", "pln": ["(: cnet_isa_b900ed1464 (IsA pocket space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pocket is a kind of people", "pln": ["(: cnet_isa_832b4ab5a6 (IsA pocket people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pocket is a kind of fund", "pln": ["(: cnet_isa_186c4c3d01 (IsA pocket fund) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pocket battleship is a kind of battleship", "pln": ["(: cnet_isa_8b896059ff (IsA pocket_battleship battleship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pocket borough is a kind of borough", "pln": ["(: cnet_isa_66000c0761 (IsA pocket_borough borough) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pocket dictionary is a kind of dictionary", "pln": ["(: cnet_isa_29360a081b (IsA pocket_dictionary dictionary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pocket flap is a kind of flap", "pln": ["(: cnet_isa_998e9238d9 (IsA pocket_flap flap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pocket handkerchief is a kind of handkerchief", "pln": ["(: cnet_isa_f5989a31df (IsA pocket_handkerchief handkerchief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pocket knife is a kind of useful tool", "pln": ["(: cnet_isa_ab9f6b7ff9 (IsA pocket_knife useful_tool) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pocket knife is a kind of very useful tool", "pln": ["(: cnet_isa_5d6aaa3b8e (IsA pocket_knife very_useful_tool) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pocket money is a kind of cash", "pln": ["(: cnet_isa_7b3d9fab5c (IsA pocket_money cash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pocket mouse is a kind of pocket rat", "pln": ["(: cnet_isa_e68b1294b7 (IsA pocket_mouse pocket_rat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pocket rat is a kind of rat", "pln": ["(: cnet_isa_d0d129f894 (IsA pocket_rat rat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pocket veto is a kind of veto", "pln": ["(: cnet_isa_7bc5586e67 (IsA pocket_veto veto) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pocket watch is a kind of watch", "pln": ["(: cnet_isa_597ac20752 (IsA pocket_watch watch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pocketbook is a kind of paperback book", "pln": ["(: cnet_isa_ca2e3ad018 (IsA pocketbook paperback_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pocketbook is a kind of mean", "pln": ["(: cnet_isa_6d1a7edc94 (IsA pocketbook mean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pocketcomb is a kind of comb", "pln": ["(: cnet_isa_d3895a2fe2 (IsA pocketcomb comb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pocketed bat is a kind of freetail", "pln": ["(: cnet_isa_a3a249f588 (IsA pocketed_bat freetail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pocketful is a kind of containerful", "pln": ["(: cnet_isa_0bc49c52fe (IsA pocketful containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pocketknife is a kind of knife", "pln": ["(: cnet_isa_51ae695e43 (IsA pocketknife knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pockmark is a kind of scar", "pln": ["(: cnet_isa_9f547119bf (IsA pockmark scar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pod is a kind of container", "pln": ["(: cnet_isa_3380e7131e (IsA pod container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pod is a kind of animal group", "pln": ["(: cnet_isa_22106e7117 (IsA pod animal_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pod is a kind of fruit", "pln": ["(: cnet_isa_e7e53fb6a8 (IsA pod fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pod is a kind of husk", "pln": ["(: cnet_isa_b13afae194 (IsA pod husk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "podalgia is a kind of pain", "pln": ["(: cnet_isa_c0623897da (IsA podalgia pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "podalyria is a kind of rosid dicot genus", "pln": ["(: cnet_isa_bad769ca3d (IsA podalyria rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "podargidae is a kind of bird family", "pln": ["(: cnet_isa_17c08a6f7d (IsA podargidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "podargus is a kind of bird genus", "pln": ["(: cnet_isa_a9ca97ecee (IsA podargus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "podaxaceae is a kind of gasteromycete", "pln": ["(: cnet_isa_cec5606074 (IsA podaxaceae gasteromycete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "podetium is a kind of plant process", "pln": ["(: cnet_isa_641e1c5c8a (IsA podetium plant_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "podiatry is a kind of medicine", "pln": ["(: cnet_isa_527188cdec (IsA podiatry medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "podicep is a kind of bird genus", "pln": ["(: cnet_isa_7f394facb9 (IsA podicep bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "podicipedidae is a kind of bird family", "pln": ["(: cnet_isa_b0b43599fc (IsA podicipedidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "podicipitiform seabird is a kind of seabird", "pln": ["(: cnet_isa_3bb7607d83 (IsA podicipitiform_seabird seabird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "podicipitiforme is a kind of animal order", "pln": ["(: cnet_isa_1600c73ab0 (IsA podicipitiforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "podilymbus is a kind of bird genus", "pln": ["(: cnet_isa_645c5002cf (IsA podilymbus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "podocarp is a kind of conifer", "pln": ["(: cnet_isa_a9efb6d85b (IsA podocarp conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "podocarpaceae is a kind of gymnosperm family", "pln": ["(: cnet_isa_8d1d11a0fa (IsA podocarpaceae gymnosperm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "podocarpus is a kind of gymnosperm genus", "pln": ["(: cnet_isa_3ff88f8ad3 (IsA podocarpus gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "podophyllum is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_ace1bd3b8d (IsA podophyllum magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "podzol is a kind of soil", "pln": ["(: cnet_isa_e1098111e9 (IsA podzol soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "poeciliidae is a kind of fish family", "pln": ["(: cnet_isa_bfbe13aa65 (IsA poeciliidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poecilocapsus is a kind of arthropod genus", "pln": ["(: cnet_isa_371295a5e5 (IsA poecilocapsus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poecilogale is a kind of mammal genus", "pln": ["(: cnet_isa_a4c67dabf5 (IsA poecilogale mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "poem is a kind of literary composition", "pln": ["(: cnet_isa_9da62e8c95 (IsA poem literary_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poem is a kind of about god", "pln": ["(: cnet_isa_6d3229d20e (IsA poem about_god) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poem is a kind of about love", "pln": ["(: cnet_isa_d8bb5b2825 (IsA poem about_love) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poephila is a kind of bird genus", "pln": ["(: cnet_isa_f95d3275c8 (IsA poephila bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poet is a kind of writer", "pln": ["(: cnet_isa_0bd2e5d084 (IsA poet writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "poet laureate is a kind of laureate", "pln": ["(: cnet_isa_679b55d718 (IsA poet_laureate laureate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poet laureate is a kind of poet", "pln": ["(: cnet_isa_6b8bf72fdc (IsA poet_laureate poet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poetess is a kind of poet", "pln": ["(: cnet_isa_be9754f3c1 (IsA poetess poet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poetic license is a kind of license", "pln": ["(: cnet_isa_fee4d91f2e (IsA poetic_license license) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poetic rhythm is a kind of versification", "pln": ["(: cnet_isa_a282184152 (IsA poetic_rhythm versification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poetic is a kind of literary study", "pln": ["(: cnet_isa_57aa1e9bd1 (IsA poetic literary_study) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poetry is a kind of art", "pln": ["(: cnet_isa_339e5866aa (IsA poetry art) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poetry is a kind of expressive style", "pln": ["(: cnet_isa_fe39177fdf (IsA poetry expressive_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poetry is a kind of writing style", "pln": ["(: cnet_isa_7792c1d7e9 (IsA poetry writing_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pogge is a kind of poacher", "pln": ["(: cnet_isa_7087bf10f8 (IsA pogge poacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pogo stick is a kind of plaything", "pln": ["(: cnet_isa_4387c26e0e (IsA pogo_stick plaything) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pogonia is a kind of orchid", "pln": ["(: cnet_isa_54fa5f7e52 (IsA pogonia orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pogonion is a kind of craniometric point", "pln": ["(: cnet_isa_bebded60dd (IsA pogonion craniometric_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pogonophora is a kind of phylum", "pln": ["(: cnet_isa_b908f3c7b1 (IsA pogonophora phylum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pogostemon is a kind of asterid dicot genus", "pln": ["(: cnet_isa_057eb93747 (IsA pogostemon asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pogrom is a kind of persecution", "pln": ["(: cnet_isa_5740535ecd (IsA pogrom persecution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poi is a kind of dish", "pln": ["(: cnet_isa_d13fb52ecf (IsA poi dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "poignance is a kind of sadness", "pln": ["(: cnet_isa_5ac243953a (IsA poignance sadness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poikilotherm is a kind of animal", "pln": ["(: cnet_isa_688497b151 (IsA poikilotherm animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poilu is a kind of soldier", "pln": ["(: cnet_isa_28a4e82443 (IsA poilu soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "poinciana is a kind of rosid dicot genus", "pln": ["(: cnet_isa_2f89d0142e (IsA poinciana rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poinsettia is a kind of spurge", "pln": ["(: cnet_isa_2c7ba0229b (IsA poinsettia spurge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "point is a kind of end", "pln": ["(: cnet_isa_75e19b2ac9 (IsA point end) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "point is a kind of gun muzzle", "pln": ["(: cnet_isa_1f63dd0a7a (IsA point gun_muzzle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "point is a kind of wall socket", "pln": ["(: cnet_isa_45f6259678 (IsA point wall_socket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "point is a kind of characteristic", "pln": ["(: cnet_isa_14d6e484b3 (IsA point characteristic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "point is a kind of taper", "pln": ["(: cnet_isa_c96c7bb86f (IsA point taper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "point is a kind of aim", "pln": ["(: cnet_isa_66077afb21 (IsA point aim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "point is a kind of component", "pln": ["(: cnet_isa_18030dce83 (IsA point component) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "point is a kind of mark", "pln": ["(: cnet_isa_38b317b243 (IsA point mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "point is a kind of meaning", "pln": ["(: cnet_isa_6d80ff8620 (IsA point meaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "point is a kind of relevance", "pln": ["(: cnet_isa_92eb00643a (IsA point relevance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "point is a kind of location", "pln": ["(: cnet_isa_b7e705d596 (IsA point location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "point is a kind of promontory", "pln": ["(: cnet_isa_b24e3b8a93 (IsA point promontory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "point is a kind of loan", "pln": ["(: cnet_isa_bc5e4cde5c (IsA point loan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "point is a kind of linear unit", "pln": ["(: cnet_isa_78d997055f (IsA point linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "point is a kind of unit of measurement", "pln": ["(: cnet_isa_9b86c4e6ad (IsA point unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "point is a kind of convex shape", "pln": ["(: cnet_isa_18dd430e44 (IsA point convex_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "point is a kind of disk", "pln": ["(: cnet_isa_b21a677284 (IsA point disk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "point is a kind of measure", "pln": ["(: cnet_isa_87ca15450e (IsA point measure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "point after is a kind of conversion", "pln": ["(: cnet_isa_941d3438ea (IsA point_after conversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "point after is a kind of point", "pln": ["(: cnet_isa_497cf9e4fe (IsA point_after point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "point and shoot camera is a kind of camera", "pln": ["(: cnet_isa_2f170946aa (IsA point_and_shoot_camera camera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "point duty is a kind of traffic control", "pln": ["(: cnet_isa_4a43ad0743 (IsA point_duty traffic_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "point lace is a kind of lace", "pln": ["(: cnet_isa_185703c26a (IsA point_lace lace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "point man is a kind of leader", "pln": ["(: cnet_isa_ff14b5f7a6 (IsA point_man leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "point man is a kind of soldier", "pln": ["(: cnet_isa_f14f0e8171 (IsA point_man soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "point mutation is a kind of mutation", "pln": ["(: cnet_isa_5ff310b025 (IsA point_mutation mutation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "point of honor is a kind of concern", "pln": ["(: cnet_isa_2980d5ee67 (IsA point_of_honor concern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "point of order is a kind of order", "pln": ["(: cnet_isa_039e494c1b (IsA point_of_order order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "point of view is a kind of position", "pln": ["(: cnet_isa_6054b5d3bd (IsA point_of_view position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "point source is a kind of beginning", "pln": ["(: cnet_isa_bd512194e0 (IsA point_source beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "point system is a kind of orthography", "pln": ["(: cnet_isa_b9845383bb (IsA point_system orthography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "point system is a kind of system", "pln": ["(: cnet_isa_b41b040113 (IsA point_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "point system is a kind of system of measurement", "pln": ["(: cnet_isa_fa2089e2f8 (IsA point_system system_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "point woman is a kind of leader", "pln": ["(: cnet_isa_8ba15b58f2 (IsA point_woman leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pointed arch is a kind of arch", "pln": ["(: cnet_isa_e0936d8e37 (IsA pointed_arch arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pointed leaf maple is a kind of maple", "pln": ["(: cnet_isa_fd47224422 (IsA pointed_leaf_maple maple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pointedness is a kind of directness", "pln": ["(: cnet_isa_fbc9509efc (IsA pointedness directness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pointer is a kind of sporting dog", "pln": ["(: cnet_isa_232ad43dd9 (IsA pointer sporting_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pointer is a kind of indicator", "pln": ["(: cnet_isa_6dd94d7a2b (IsA pointer indicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pointillism is a kind of genre", "pln": ["(: cnet_isa_d620112078 (IsA pointillism genre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pointillism is a kind of artistic movement", "pln": ["(: cnet_isa_aa16e22b1e (IsA pointillism artistic_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pointillism is a kind of school", "pln": ["(: cnet_isa_78b5f4337c (IsA pointillism school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pointillist is a kind of painter", "pln": ["(: cnet_isa_1f44b247cc (IsA pointillist painter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pointing out is a kind of indication", "pln": ["(: cnet_isa_f11a782a05 (IsA pointing_out indication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pointing trowel is a kind of trowel", "pln": ["(: cnet_isa_a91b793fc5 (IsA pointing_trowel trowel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pointsman is a kind of traffic cop", "pln": ["(: cnet_isa_5fac625f60 (IsA pointsman traffic_cop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poise is a kind of unit of viscosity", "pln": ["(: cnet_isa_321b5c8e60 (IsA poise unit_of_viscosity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poise is a kind of equilibrium", "pln": ["(: cnet_isa_3937ff6288 (IsA poise equilibrium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poison is a kind of destructiveness", "pln": ["(: cnet_isa_c17b8c3d7e (IsA poison destructiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poison is a kind of substance", "pln": ["(: cnet_isa_1da178ebc1 (IsA poison substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poison ash is a kind of poisonous plant", "pln": ["(: cnet_isa_d2f634c07e (IsA poison_ash poisonous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poison bush is a kind of shrub", "pln": ["(: cnet_isa_0fe046c9ea (IsA poison_bush shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poison cama is a kind of death cama", "pln": ["(: cnet_isa_c36a6c0538 (IsA poison_cama death_cama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poison gas is a kind of chemical weapon", "pln": ["(: cnet_isa_2bc0817d96 (IsA poison_gas chemical_weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "poison gas is a kind of gas", "pln": ["(: cnet_isa_4c7f361c36 (IsA poison_gas gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poison ivy is a kind of dangerous plant", "pln": ["(: cnet_isa_2cee241947 (IsA poison_ivy dangerous_plant) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poison ivy is a kind of plant", "pln": ["(: cnet_isa_0a4613657c (IsA poison_ivy plant) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "poison ivy is a kind of poisonous plant", "pln": ["(: cnet_isa_2f572ff99e (IsA poison_ivy poisonous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poison ivy is a kind of rhus dermatitis", "pln": ["(: cnet_isa_10d4cd412b (IsA poison_ivy rhus_dermatitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poison milkweed is a kind of milkweed", "pln": ["(: cnet_isa_e22eb08df0 (IsA poison_milkweed milkweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poison oak is a kind of rhus dermatitis", "pln": ["(: cnet_isa_71dc5b0382 (IsA poison_oak rhus_dermatitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poison pill is a kind of shark repellent", "pln": ["(: cnet_isa_7e38ed6a27 (IsA poison_pill shark_repellent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poison sumac is a kind of rhus dermatitis", "pln": ["(: cnet_isa_ba1eae961a (IsA poison_sumac rhus_dermatitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poisoner is a kind of killer", "pln": ["(: cnet_isa_3a2675d1d2 (IsA poisoner killer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poisoning is a kind of killing", "pln": ["(: cnet_isa_060e32203d (IsA poisoning killing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poisoning is a kind of physiological state", "pln": ["(: cnet_isa_e50ec7f3e1 (IsA poisoning physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poisonous parasol is a kind of lepiota", "pln": ["(: cnet_isa_a83fce19c2 (IsA poisonous_parasol lepiota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poisonous plant is a kind of plant", "pln": ["(: cnet_isa_63575fd494 (IsA poisonous_plant plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poisson distribution is a kind of distribution", "pln": ["(: cnet_isa_9e71752c56 (IsA poisson_distribution distribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poke is a kind of pokeweed", "pln": ["(: cnet_isa_eea16d6b2a (IsA poke pokeweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poke check is a kind of check", "pln": ["(: cnet_isa_499650704e (IsA poke_check check) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poke milkweed is a kind of milkweed", "pln": ["(: cnet_isa_5cf0227ac5 (IsA poke_milkweed milkweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poker is a kind of card game", "pln": ["(: cnet_isa_407ad9bbcd (IsA poker card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poker is a kind of cardgame", "pln": ["(: cnet_isa_4eaea692e6 (IsA poker cardgame) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poker is a kind of fire iron", "pln": ["(: cnet_isa_59047c93ef (IsA poker fire_iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poker alumroot is a kind of alumroot", "pln": ["(: cnet_isa_eb83359f1f (IsA poker_alumroot alumroot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "poker face is a kind of countenance", "pln": ["(: cnet_isa_cc70a54c64 (IsA poker_face countenance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "poker hand is a kind of hand", "pln": ["(: cnet_isa_160007fbc0 (IsA poker_hand hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poker plant is a kind of kniphofia", "pln": ["(: cnet_isa_9907d59a14 (IsA poker_plant kniphofia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pokeweed is a kind of herb", "pln": ["(: cnet_isa_c24ec99911 (IsA pokeweed herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pokomo is a kind of bantu", "pln": ["(: cnet_isa_42b0b1892b (IsA pokomo bantu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polack is a kind of pole", "pln": ["(: cnet_isa_4d04bb0174 (IsA polack pole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poland is a kind of country", "pln": ["(: cnet_isa_0071b88ba5 (IsA poland country) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polanisia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_6322f27f42 (IsA polanisia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polar body is a kind of cell", "pln": ["(: cnet_isa_c842409a23 (IsA polar_body cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polar circle is a kind of latitude", "pln": ["(: cnet_isa_b0f51bc924 (IsA polar_circle latitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polar coordinate is a kind of coordinate", "pln": ["(: cnet_isa_9a0feedd9d (IsA polar_coordinate coordinate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polar glacier is a kind of continental glacier", "pln": ["(: cnet_isa_f2bc192a68 (IsA polar_glacier continental_glacier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "polar hare is a kind of hare", "pln": ["(: cnet_isa_ca6343b134 (IsA polar_hare hare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polar opposition is a kind of gradable opposition", "pln": ["(: cnet_isa_f8638183e8 (IsA polar_opposition gradable_opposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polarimeter is a kind of optical device", "pln": ["(: cnet_isa_b10f6088aa (IsA polarimeter optical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polarity is a kind of opposition", "pln": ["(: cnet_isa_c316f9dc32 (IsA polarity opposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polarization is a kind of optical phenomenon", "pln": ["(: cnet_isa_6c2f71c68f (IsA polarization optical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polarization is a kind of condition", "pln": ["(: cnet_isa_d13986e5b6 (IsA polarization condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polarography is a kind of chemical analysis", "pln": ["(: cnet_isa_abbb837c4c (IsA polarography chemical_analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polder is a kind of land", "pln": ["(: cnet_isa_2ab306a9a8 (IsA polder land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pole is a kind of end", "pln": ["(: cnet_isa_152769e198 (IsA pole end) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pole is a kind of rod", "pln": ["(: cnet_isa_7de6845042 (IsA pole rod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pole is a kind of sport implement", "pln": ["(: cnet_isa_e9c8ec0838 (IsA pole sport_implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pole is a kind of opinion", "pln": ["(: cnet_isa_cec5ffa18f (IsA pole opinion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pole is a kind of celestial point", "pln": ["(: cnet_isa_f9b46573cb (IsA pole celestial_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pole is a kind of geographic point", "pln": ["(: cnet_isa_3c7f8ba241 (IsA pole geographic_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pole is a kind of european", "pln": ["(: cnet_isa_3208c97e81 (IsA pole european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pole bean is a kind of bean", "pln": ["(: cnet_isa_6a9ff80c72 (IsA pole_bean bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pole horse is a kind of draft horse", "pln": ["(: cnet_isa_6d6081666f (IsA pole_horse draft_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pole horse is a kind of trotting horse", "pln": ["(: cnet_isa_9732ba3c4e (IsA pole_horse trotting_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pole position is a kind of position", "pln": ["(: cnet_isa_909a5c01e1 (IsA pole_position position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pole vault is a kind of field event", "pln": ["(: cnet_isa_66feccc5a3 (IsA pole_vault field_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "poleax is a kind of ax", "pln": ["(: cnet_isa_eb017a03c3 (IsA poleax ax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poleax is a kind of battle ax", "pln": ["(: cnet_isa_0659afc502 (IsA poleax battle_ax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polecat is a kind of musteline mammal", "pln": ["(: cnet_isa_9bafee684a (IsA polecat musteline_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polemic is a kind of controversy", "pln": ["(: cnet_isa_18d40891c9 (IsA polemic controversy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polemicist is a kind of writer", "pln": ["(: cnet_isa_b2c7c36049 (IsA polemicist writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polemic is a kind of christian theology", "pln": ["(: cnet_isa_e0c78d2e39 (IsA polemic christian_theology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polemoniaceae is a kind of asterid dicot family", "pln": ["(: cnet_isa_d5a10dd985 (IsA polemoniaceae asterid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polemoniale is a kind of plant order", "pln": ["(: cnet_isa_319252b661 (IsA polemoniale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "polemonium is a kind of herb", "pln": ["(: cnet_isa_93f9b46a14 (IsA polemonium herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polenta is a kind of mush", "pln": ["(: cnet_isa_88ee94d613 (IsA polenta mush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polianthe is a kind of liliid monocot genus", "pln": ["(: cnet_isa_109202e878 (IsA polianthe liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "police is a kind of force", "pln": ["(: cnet_isa_5b6cb06f79 (IsA police force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "police is a kind of law enforcement agency", "pln": ["(: cnet_isa_ffd8b4b3d7 (IsA police law_enforcement_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "police academy is a kind of academy", "pln": ["(: cnet_isa_cd6287308c (IsA police_academy academy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "police action is a kind of military action", "pln": ["(: cnet_isa_0f4dca6bcb (IsA police_action military_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "police boat is a kind of boat", "pln": ["(: cnet_isa_e732deea02 (IsA police_boat boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "police commissioner is a kind of commissioner", "pln": ["(: cnet_isa_4f89d761b5 (IsA police_commissioner commissioner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "police court is a kind of court", "pln": ["(: cnet_isa_bf8620dd38 (IsA police_court court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "police department is a kind of local department", "pln": ["(: cnet_isa_8fd55402dd (IsA police_department local_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "police dog is a kind of working dog", "pln": ["(: cnet_isa_c15e21cc49 (IsA police_dog working_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "police matron is a kind of policeman", "pln": ["(: cnet_isa_8fbe015e69 (IsA police_matron policeman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "police officer is a kind of peace officer", "pln": ["(: cnet_isa_bcedf6de98 (IsA police_officer peace_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "police precinct is a kind of precinct", "pln": ["(: cnet_isa_2beaf71417 (IsA police_precinct precinct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "police sergeant is a kind of lawman", "pln": ["(: cnet_isa_6e5de39d40 (IsA police_sergeant lawman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "police squad is a kind of team", "pln": ["(: cnet_isa_426c5235a7 (IsA police_squad team) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "police state is a kind of dictatorship", "pln": ["(: cnet_isa_0c7f77e098 (IsA police_state dictatorship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "police station is a kind of station", "pln": ["(: cnet_isa_5541b058cf (IsA police_station station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "police van is a kind of van", "pln": ["(: cnet_isa_1840fb80b8 (IsA police_van van) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "police work is a kind of investigation", "pln": ["(: cnet_isa_a215fa7d50 (IsA police_work investigation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "policeman is a kind of member of police force", "pln": ["(: cnet_isa_77222de1da (IsA policeman member_of_police_force) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "policeman is a kind of lawman", "pln": ["(: cnet_isa_e0da12a96e (IsA policeman lawman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "policeman bird is a kind of stork", "pln": ["(: cnet_isa_bcf13393b2 (IsA policeman_bird stork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "policy is a kind of plan of action", "pln": ["(: cnet_isa_557b35cbc1 (IsA policy plan_of_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "policy is a kind of argumentation", "pln": ["(: cnet_isa_101ac46ca2 (IsA policy argumentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "policy is a kind of contract", "pln": ["(: cnet_isa_05a948bb3d (IsA policy contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "policy maker is a kind of important person", "pln": ["(: cnet_isa_2b4fa10002 (IsA policy_maker important_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "policyholder is a kind of customer", "pln": ["(: cnet_isa_431e59a798 (IsA policyholder customer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "policyholder is a kind of holder", "pln": ["(: cnet_isa_9ffdfaeeb2 (IsA policyholder holder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "poliomyelitis is a kind of infectious disease", "pln": ["(: cnet_isa_cde7c87a61 (IsA poliomyelitis infectious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polioptila is a kind of bird genus", "pln": ["(: cnet_isa_6e90e3fe2a (IsA polioptila bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poliosis is a kind of depigmentation", "pln": ["(: cnet_isa_945f603910 (IsA poliosis depigmentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poliovirus is a kind of enterovirus", "pln": ["(: cnet_isa_ed8d7a4e21 (IsA poliovirus enterovirus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poliovirus vaccine is a kind of vaccine", "pln": ["(: cnet_isa_5773c71cab (IsA poliovirus_vaccine vaccine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polish is a kind of language", "pln": ["(: cnet_isa_5c523f4ae8 (IsA polish language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "polish is a kind of radiance", "pln": ["(: cnet_isa_3ff7c32fcd (IsA polish radiance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polish is a kind of smoothness", "pln": ["(: cnet_isa_e26203d29e (IsA polish smoothness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polish is a kind of slavic", "pln": ["(: cnet_isa_f054209f05 (IsA polish slavic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polish is a kind of perfection", "pln": ["(: cnet_isa_856fac77bb (IsA polish perfection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polish is a kind of formulation", "pln": ["(: cnet_isa_13430bab9c (IsA polish formulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polish monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_7a3428bcca (IsA polish_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poliste is a kind of arthropod genus", "pln": ["(: cnet_isa_094350af89 (IsA poliste arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poliste annularis is a kind of paper wasp", "pln": ["(: cnet_isa_1ccc2e058a (IsA poliste_annularis paper_wasp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "politburo is a kind of committee", "pln": ["(: cnet_isa_edef43a992 (IsA politburo committee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "politeness is a kind of action", "pln": ["(: cnet_isa_798a262c40 (IsA politeness action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "politeness is a kind of courtesy", "pln": ["(: cnet_isa_309e25a1bc (IsA politeness courtesy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "political action committee is a kind of committee", "pln": ["(: cnet_isa_38265399d2 (IsA political_action_committee committee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "political arena is a kind of sphere", "pln": ["(: cnet_isa_f7dbd6992b (IsA political_arena sphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "political campaign is a kind of race", "pln": ["(: cnet_isa_41b3f75afb (IsA political_campaign race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "political contribution is a kind of contribution", "pln": ["(: cnet_isa_be59453a00 (IsA political_contribution contribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "political correctness is a kind of correctness", "pln": ["(: cnet_isa_59fecef2ba (IsA political_correctness correctness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "political dissident is a kind of dissenter", "pln": ["(: cnet_isa_71a7700cb6 (IsA political_dissident dissenter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "political ideology is a kind of system of abstract thought", "pln": ["(: cnet_isa_636103ca68 (IsA political_ideology system_of_abstract_thought) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "political incorrectness is a kind of incorrectness", "pln": ["(: cnet_isa_df22d80da7 (IsA political_incorrectness incorrectness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "political movement is a kind of movement", "pln": ["(: cnet_isa_06a71158b0 (IsA political_movement movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "politics is a kind of opinion", "pln": ["(: cnet_isa_55ba93809c (IsA politics opinion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "political observer is a kind of observer", "pln": ["(: cnet_isa_70872dfb9e (IsA political_observer observer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "political officer is a kind of worker", "pln": ["(: cnet_isa_ada1cb4d62 (IsA political_officer worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "political orientation is a kind of orientation", "pln": ["(: cnet_isa_44fcf0cb7b (IsA political_orientation orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "political prisoner is a kind of prisoner", "pln": ["(: cnet_isa_609207013f (IsA political_prisoner prisoner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "political scientist is a kind of social scientist", "pln": ["(: cnet_isa_2e9632128a (IsA political_scientist social_scientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "political system is a kind of social group", "pln": ["(: cnet_isa_73defc048e (IsA political_system social_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "political unit is a kind of unit", "pln": ["(: cnet_isa_efc6a2d038 (IsA political_unit unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "politician is a kind of leader", "pln": ["(: cnet_isa_52337cb990 (IsA politician leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "politician is a kind of schemer", "pln": ["(: cnet_isa_51db589035 (IsA politician schemer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "politician is a kind of frequently lawyer", "pln": ["(: cnet_isa_444453c6db (IsA politician frequently_lawyer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "politic is a kind of activity", "pln": ["(: cnet_isa_c89ca7756b (IsA politic activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "politic is a kind of affair", "pln": ["(: cnet_isa_7ae7251b94 (IsA politic affair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "politic is a kind of opinion", "pln": ["(: cnet_isa_d8c216d291 (IsA politic opinion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "politic is a kind of social science", "pln": ["(: cnet_isa_9539217111 (IsA politic social_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "politic is a kind of social relation", "pln": ["(: cnet_isa_7379097f86 (IsA politic social_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "politic is a kind of profession", "pln": ["(: cnet_isa_7f6c9ace85 (IsA politic profession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polity is a kind of administration", "pln": ["(: cnet_isa_0652feffa7 (IsA polity administration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polity is a kind of organization", "pln": ["(: cnet_isa_9f2bf3efc6 (IsA polity organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polka is a kind of folk dancing", "pln": ["(: cnet_isa_9289648b5e (IsA polka folk_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polka is a kind of dance music", "pln": ["(: cnet_isa_1be6d48f4a (IsA polka dance_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polka dot is a kind of design", "pln": ["(: cnet_isa_56a07fd0c6 (IsA polka_dot design) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poll is a kind of parrot", "pln": ["(: cnet_isa_8ecee87c47 (IsA poll parrot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poll is a kind of top", "pln": ["(: cnet_isa_8d93eaa61b (IsA poll top) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poll is a kind of inquiry", "pln": ["(: cnet_isa_77c8ef7b69 (IsA poll inquiry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poll is a kind of count", "pln": ["(: cnet_isa_3f54cbd169 (IsA poll count) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poll tax is a kind of capitation", "pln": ["(: cnet_isa_3571e8a8ff (IsA poll_tax capitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pollachius is a kind of fish genus", "pln": ["(: cnet_isa_41613e5d0a (IsA pollachius fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pollack is a kind of gadoid", "pln": ["(: cnet_isa_a2432179d6 (IsA pollack gadoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pollack is a kind of saltwater fish", "pln": ["(: cnet_isa_dfa91d7e51 (IsA pollack saltwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pollard is a kind of ruminant", "pln": ["(: cnet_isa_fb687f49a7 (IsA pollard ruminant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pollard is a kind of tree", "pln": ["(: cnet_isa_6d6320110d (IsA pollard tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pollen is a kind of spore", "pln": ["(: cnet_isa_497c9ba3c4 (IsA pollen spore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pollen count is a kind of count", "pln": ["(: cnet_isa_7d869c9ff3 (IsA pollen_count count) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pollen tube is a kind of plant part", "pln": ["(: cnet_isa_61c1d2c6c5 (IsA pollen_tube plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pollination is a kind of fertilization", "pln": ["(: cnet_isa_766c62be04 (IsA pollination fertilization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pollinator is a kind of insect", "pln": ["(: cnet_isa_c5f766e8ea (IsA pollinator insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polling booth is a kind of booth", "pln": ["(: cnet_isa_122caa00ac (IsA polling_booth booth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polling day is a kind of day", "pln": ["(: cnet_isa_6ade9a9803 (IsA polling_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polling place is a kind of topographic point", "pln": ["(: cnet_isa_3dc254594e (IsA polling_place topographic_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pollinium is a kind of pollen", "pln": ["(: cnet_isa_4c10365377 (IsA pollinium pollen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poll is a kind of position", "pln": ["(: cnet_isa_625cad7815 (IsA poll position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pollster is a kind of inquirer", "pln": ["(: cnet_isa_b0c403285f (IsA pollster inquirer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pollucite is a kind of mineral", "pln": ["(: cnet_isa_f4b409e2f9 (IsA pollucite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pollutant is a kind of waste", "pln": ["(: cnet_isa_9af78ba0af (IsA pollutant waste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polluter is a kind of bad person", "pln": ["(: cnet_isa_75e87428ed (IsA polluter bad_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pollution is a kind of environmental condition", "pln": ["(: cnet_isa_62e2093382 (IsA pollution environmental_condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pollution is a kind of impurity", "pln": ["(: cnet_isa_a753c4da18 (IsA pollution impurity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polo is a kind of game", "pln": ["(: cnet_isa_fed2e24b0d (IsA polo game) (STV 1.0 0.9874))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polo is a kind of sport", "pln": ["(: cnet_isa_8f2fcb8e86 (IsA polo sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "polo is a kind of field game", "pln": ["(: cnet_isa_0a92234de4 (IsA polo field_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polo ball is a kind of ball", "pln": ["(: cnet_isa_1dbfbfed00 (IsA polo_ball ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polo mallet is a kind of mallet", "pln": ["(: cnet_isa_25db3080e3 (IsA polo_mallet mallet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polo mallet is a kind of stick", "pln": ["(: cnet_isa_b73943c286 (IsA polo_mallet stick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polo pony is a kind of horse", "pln": ["(: cnet_isa_6a5d9061a0 (IsA polo_pony horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polo shirt is a kind of shirt", "pln": ["(: cnet_isa_3c1ad31b70 (IsA polo_shirt shirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polonaise is a kind of dress", "pln": ["(: cnet_isa_02438adab4 (IsA polonaise dress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polonium is a kind of metallic element", "pln": ["(: cnet_isa_2d386adc0b (IsA polonium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polony is a kind of bologna", "pln": ["(: cnet_isa_23ec58a199 (IsA polony bologna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poltergeist is a kind of ghost", "pln": ["(: cnet_isa_7bf4450b62 (IsA poltergeist ghost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poltroon is a kind of coward", "pln": ["(: cnet_isa_4ea8d04d9e (IsA poltroon coward) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "poltroonery is a kind of pusillanimity", "pln": ["(: cnet_isa_278df6f8f4 (IsA poltroonery pusillanimity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "polyamide is a kind of polymer", "pln": ["(: cnet_isa_d9c8d5d22a (IsA polyamide polymer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "polyandrist is a kind of polygamist", "pln": ["(: cnet_isa_7bb644fff8 (IsA polyandrist polygamist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyandry is a kind of polygamy", "pln": ["(: cnet_isa_6d8a1255c0 (IsA polyandry polygamy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyangiaceae is a kind of bacteria family", "pln": ["(: cnet_isa_4c4bf197c0 (IsA polyangiaceae bacteria_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyangium is a kind of bacteria genus", "pln": ["(: cnet_isa_c1efd6a901 (IsA polyangium bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyanthus is a kind of primrose", "pln": ["(: cnet_isa_233994f354 (IsA polyanthus primrose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyarteritis is a kind of arteritis", "pln": ["(: cnet_isa_ad0a5c20a4 (IsA polyarteritis arteritis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyborus is a kind of bird genus", "pln": ["(: cnet_isa_2857a83e90 (IsA polyborus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polybotrya is a kind of fern genus", "pln": ["(: cnet_isa_3d603fc095 (IsA polybotrya fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polybutylene is a kind of butylene", "pln": ["(: cnet_isa_f69db12317 (IsA polybutylene butylene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polychaeta is a kind of class", "pln": ["(: cnet_isa_9620e7d8c4 (IsA polychaeta class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polychaete is a kind of annelid", "pln": ["(: cnet_isa_9708635008 (IsA polychaete annelid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polychrome is a kind of work", "pln": ["(: cnet_isa_cc0aba14db (IsA polychrome work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polycirrus is a kind of worm genus", "pln": ["(: cnet_isa_ca493a4048 (IsA polycirrus worm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyconic projection is a kind of conic projection", "pln": ["(: cnet_isa_f16d5b9305 (IsA polyconic_projection conic_projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polycystic kidney disease is a kind of kidney disease", "pln": ["(: cnet_isa_fc02884bb6 (IsA polycystic_kidney_disease kidney_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polycythemia is a kind of blood disease", "pln": ["(: cnet_isa_f76bbf7937 (IsA polycythemia blood_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polydactylus is a kind of fish genus", "pln": ["(: cnet_isa_8a4a9bbcad (IsA polydactylus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polydactyly is a kind of birth defect", "pln": ["(: cnet_isa_6d07d56bd7 (IsA polydactyly birth_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polydipsia is a kind of thirst", "pln": ["(: cnet_isa_281618e882 (IsA polydipsia thirst) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyelectrolyte is a kind of electrolyte", "pln": ["(: cnet_isa_5ac0b4d7f7 (IsA polyelectrolyte electrolyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyergus is a kind of arthropod genus", "pln": ["(: cnet_isa_02be76c527 (IsA polyergus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyester is a kind of fabric", "pln": ["(: cnet_isa_8831706b07 (IsA polyester fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyester is a kind of ester", "pln": ["(: cnet_isa_4bea985710 (IsA polyester ester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyester is a kind of plastic", "pln": ["(: cnet_isa_bf6ac9ee08 (IsA polyester plastic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyester is a kind of synthetic resin", "pln": ["(: cnet_isa_c512c0d545 (IsA polyester synthetic_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyester fiber is a kind of polyester", "pln": ["(: cnet_isa_d8e9581a5d (IsA polyester_fiber polyester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyethylene is a kind of synthetic resin", "pln": ["(: cnet_isa_665b9a398a (IsA polyethylene synthetic_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyfoam is a kind of polyurethane", "pln": ["(: cnet_isa_febfd3b267 (IsA polyfoam polyurethane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polygala is a kind of rosid dicot genus", "pln": ["(: cnet_isa_b67b28a6b5 (IsA polygala rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polygalaceae is a kind of rosid dicot family", "pln": ["(: cnet_isa_c00f7112f3 (IsA polygalaceae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polygamist is a kind of spouse", "pln": ["(: cnet_isa_9671901e81 (IsA polygamist spouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "polygamy is a kind of marriage", "pln": ["(: cnet_isa_a2d02145d3 (IsA polygamy marriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polygene is a kind of gene", "pln": ["(: cnet_isa_233a37b202 (IsA polygene gene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polygenic disorder is a kind of genetic disease", "pln": ["(: cnet_isa_cadead83c5 (IsA polygenic_disorder genetic_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polygon is a kind of plane figure", "pln": ["(: cnet_isa_5d3b354836 (IsA polygon plane_figure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polygonaceae is a kind of dicot family", "pln": ["(: cnet_isa_2b20a668a9 (IsA polygonaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polygonale is a kind of plant order", "pln": ["(: cnet_isa_58b87ddd34 (IsA polygonale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polygonatum is a kind of liliid monocot genus", "pln": ["(: cnet_isa_24a26f83c3 (IsA polygonatum liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polygonia is a kind of arthropod genus", "pln": ["(: cnet_isa_1b958473a4 (IsA polygonia arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polygonum is a kind of dicot genus", "pln": ["(: cnet_isa_c8ece18a2e (IsA polygonum dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polygraph is a kind of medical instrument", "pln": ["(: cnet_isa_a1fa0f594e (IsA polygraph medical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polygynist is a kind of polygamist", "pln": ["(: cnet_isa_43893e7a88 (IsA polygynist polygamist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polygyny is a kind of polygamy", "pln": ["(: cnet_isa_f09f1edf10 (IsA polygyny polygamy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "polyhedral angle is a kind of angle", "pln": ["(: cnet_isa_1ca759325c (IsA polyhedral_angle angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "polyhedron is a kind of solid", "pln": ["(: cnet_isa_e11fc9fe83 (IsA polyhedron solid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polymastigina is a kind of animal order", "pln": ["(: cnet_isa_9dfb9472c5 (IsA polymastigina animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polymastigote is a kind of flagellate", "pln": ["(: cnet_isa_0272308e37 (IsA polymastigote flagellate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polymath is a kind of initiate", "pln": ["(: cnet_isa_dcd2a824ad (IsA polymath initiate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polymer is a kind of compound", "pln": ["(: cnet_isa_d114eb4209 (IsA polymer compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polymerase is a kind of enzyme", "pln": ["(: cnet_isa_3627a3e18a (IsA polymerase enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polymerization is a kind of chemical process", "pln": ["(: cnet_isa_9880155a32 (IsA polymerization chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polymethyl methacrylate is a kind of acrylic", "pln": ["(: cnet_isa_7cacbadc61 (IsA polymethyl_methacrylate acrylic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "polymorph is a kind of organism", "pln": ["(: cnet_isa_fe003f8ca9 (IsA polymorph organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polymorphism is a kind of organic phenomenon", "pln": ["(: cnet_isa_2aae991565 (IsA polymorphism organic_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polymorphism is a kind of chemical phenomenon", "pln": ["(: cnet_isa_36ae706c10 (IsA polymorphism chemical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polymyositis is a kind of myositis", "pln": ["(: cnet_isa_23642386a8 (IsA polymyositis myositis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "polymyxin is a kind of antibiotic", "pln": ["(: cnet_isa_c1cb5523eb (IsA polymyxin antibiotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "polynemidae is a kind of fish family", "pln": ["(: cnet_isa_7d9b054c92 (IsA polynemidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polynesian is a kind of austronesian", "pln": ["(: cnet_isa_66cb803c83 (IsA polynesian austronesian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polynesian tattler is a kind of tattler", "pln": ["(: cnet_isa_ff6eac1ce1 (IsA polynesian_tattler tattler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyneuritis is a kind of neuritis", "pln": ["(: cnet_isa_dfe0bc8bf0 (IsA polyneuritis neuritis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polynomial is a kind of mapping", "pln": ["(: cnet_isa_4c16d104f8 (IsA polynomial mapping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polynucleotide is a kind of nucleotide", "pln": ["(: cnet_isa_b7a1faeb3a (IsA polynucleotide nucleotide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "polynya is a kind of body of water", "pln": ["(: cnet_isa_ad9cc92322 (IsA polynya body_of_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyodon is a kind of fish genus", "pln": ["(: cnet_isa_721ed7bee1 (IsA polyodon fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyodontidae is a kind of fish family", "pln": ["(: cnet_isa_0599adf6ce (IsA polyodontidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyoma is a kind of papovavirus", "pln": ["(: cnet_isa_add3a48f38 (IsA polyoma papovavirus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyp is a kind of coelenterate", "pln": ["(: cnet_isa_69fdb19c49 (IsA polyp coelenterate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyp is a kind of growth", "pln": ["(: cnet_isa_6071f7f8dd (IsA polyp growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polypectomy is a kind of operation", "pln": ["(: cnet_isa_9dd6ad442e (IsA polypectomy operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polypedate is a kind of amphibian genus", "pln": ["(: cnet_isa_4b91265daf (IsA polypedate amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polypedatidae is a kind of amphibian family", "pln": ["(: cnet_isa_1526506c2e (IsA polypedatidae amphibian_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polypeptide is a kind of peptide", "pln": ["(: cnet_isa_79127d4b09 (IsA polypeptide peptide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyphemus moth is a kind of saturniid", "pln": ["(: cnet_isa_2f143e2233 (IsA polyphemus_moth saturniid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyphone is a kind of letter", "pln": ["(: cnet_isa_fc556e4770 (IsA polyphone letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "polyphonic prose is a kind of prose", "pln": ["(: cnet_isa_310f2348fb (IsA polyphonic_prose prose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyphony is a kind of music", "pln": ["(: cnet_isa_be9d807fb8 (IsA polyphony music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyphosphate is a kind of salt", "pln": ["(: cnet_isa_0a4b841cc4 (IsA polyphosphate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyphosphoric acid is a kind of oxyacid", "pln": ["(: cnet_isa_aba67f8d15 (IsA polyphosphoric_acid oxyacid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyplacophora is a kind of class", "pln": ["(: cnet_isa_c18b0bde91 (IsA polyplacophora class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyploid is a kind of organism", "pln": ["(: cnet_isa_84c1729918 (IsA polyploid organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyploidy is a kind of condition", "pln": ["(: cnet_isa_354643fd09 (IsA polyploidy condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polypodiaceae is a kind of fern family", "pln": ["(: cnet_isa_89be323cd3 (IsA polypodiaceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polypodium is a kind of fern genus", "pln": ["(: cnet_isa_5a1611f5a3 (IsA polypodium fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polypody is a kind of fern", "pln": ["(: cnet_isa_0392ec01a8 (IsA polypody fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "polyporaceae is a kind of fungus family", "pln": ["(: cnet_isa_83d98b407c (IsA polyporaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polypore is a kind of basidiomycete", "pln": ["(: cnet_isa_48690ce325 (IsA polypore basidiomycete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyporus is a kind of fungus genus", "pln": ["(: cnet_isa_38f068c116 (IsA polyporus fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyporus squamosus is a kind of polypore", "pln": ["(: cnet_isa_6bc99cf819 (IsA polyporus_squamosus polypore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyporus tenuiculus is a kind of polypore", "pln": ["(: cnet_isa_0ccf534825 (IsA polyporus_tenuiculus polypore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyprion is a kind of fish genus", "pln": ["(: cnet_isa_e832dac649 (IsA polyprion fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polypropylene is a kind of plastic", "pln": ["(: cnet_isa_27d8557090 (IsA polypropylene plastic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "polyptoton is a kind of repetition", "pln": ["(: cnet_isa_6283029dae (IsA polyptoton repetition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polysaccharide is a kind of carbohydrate", "pln": ["(: cnet_isa_e9b24706bb (IsA polysaccharide carbohydrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polysemant is a kind of word", "pln": ["(: cnet_isa_4601a9fd48 (IsA polysemant word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polysemy is a kind of ambiguity", "pln": ["(: cnet_isa_971ab81971 (IsA polysemy ambiguity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polysomy is a kind of birth defect", "pln": ["(: cnet_isa_23a08b5a99 (IsA polysomy birth_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polystichum is a kind of fern genus", "pln": ["(: cnet_isa_47ea6bfd52 (IsA polystichum fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polystyrene is a kind of styrene", "pln": ["(: cnet_isa_a79d112c2a (IsA polystyrene styrene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polysyllable is a kind of word", "pln": ["(: cnet_isa_37a1854270 (IsA polysyllable word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polysyndeton is a kind of rhetorical device", "pln": ["(: cnet_isa_3a8c99efb2 (IsA polysyndeton rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polytechnic institute is a kind of technical school", "pln": ["(: cnet_isa_72d18bd2ab (IsA polytechnic_institute technical_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polytheism is a kind of theism", "pln": ["(: cnet_isa_7b631eb0c4 (IsA polytheism theism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polytheist is a kind of theist", "pln": ["(: cnet_isa_9980428338 (IsA polytheist theist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polytonality is a kind of music", "pln": ["(: cnet_isa_171bb42f0e (IsA polytonality music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyunsaturated fat is a kind of fat", "pln": ["(: cnet_isa_cbf3d90d01 (IsA polyunsaturated_fat fat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyunsaturated fatty acid is a kind of unsaturated fatty acid", "pln": ["(: cnet_isa_429f031a81 (IsA polyunsaturated_fatty_acid unsaturated_fatty_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyurethane is a kind of polymer", "pln": ["(: cnet_isa_e21ac420b6 (IsA polyurethane polymer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyuria is a kind of kidney disease", "pln": ["(: cnet_isa_dc29ff0c59 (IsA polyuria kidney_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyvalence is a kind of state", "pln": ["(: cnet_isa_b56fc11516 (IsA polyvalence state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyvalency is a kind of state", "pln": ["(: cnet_isa_7d30681bb5 (IsA polyvalency state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyvinyl acetate is a kind of vinyl polymer", "pln": ["(: cnet_isa_db9c31883c (IsA polyvinyl_acetate vinyl_polymer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyvinyl chloride is a kind of vinyl polymer", "pln": ["(: cnet_isa_92c4f296e0 (IsA polyvinyl_chloride vinyl_polymer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "polyvinyl formaldehyde is a kind of plastic", "pln": ["(: cnet_isa_6ce5525cd6 (IsA polyvinyl_formaldehyde plastic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pomacanthus is a kind of fish genus", "pln": ["(: cnet_isa_f45aee417e (IsA pomacanthus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pomacentridae is a kind of fish family", "pln": ["(: cnet_isa_df5aa7777d (IsA pomacentridae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pomacentrus is a kind of fish genus", "pln": ["(: cnet_isa_49ba3ecbef (IsA pomacentrus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pomade is a kind of hairdressing", "pln": ["(: cnet_isa_9a46c36af8 (IsA pomade hairdressing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pomaderris is a kind of dicot genus", "pln": ["(: cnet_isa_10751458c1 (IsA pomaderris dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pomatomidae is a kind of fish family", "pln": ["(: cnet_isa_7e85094f28 (IsA pomatomidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pomatomus is a kind of fish genus", "pln": ["(: cnet_isa_d6959bbed5 (IsA pomatomus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pome is a kind of fruit", "pln": ["(: cnet_isa_bb55d6db1b (IsA pome fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pomegranate is a kind of edible fruit", "pln": ["(: cnet_isa_dbc91d6d52 (IsA pomegranate edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pomegranate is a kind of fruit tree", "pln": ["(: cnet_isa_60f46eb798 (IsA pomegranate fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pomelo is a kind of citrus", "pln": ["(: cnet_isa_c4e47e89ca (IsA pomelo citrus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pomeranian is a kind of spitz", "pln": ["(: cnet_isa_9efd25baec (IsA pomeranian spitz) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pomfret is a kind of sea bream", "pln": ["(: cnet_isa_91c3089615 (IsA pomfret sea_bream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pommel is a kind of handle", "pln": ["(: cnet_isa_227a6a5112 (IsA pommel handle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pommel horse is a kind of horse", "pln": ["(: cnet_isa_449f16034f (IsA pommel_horse horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pommy is a kind of english person", "pln": ["(: cnet_isa_83bcf5ec4f (IsA pommy english_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pomo is a kind of kulanapan", "pln": ["(: cnet_isa_ca6fb4d27b (IsA pomo kulanapan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pomo is a kind of hoka", "pln": ["(: cnet_isa_053a1bc002 (IsA pomo hoka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pomolobus is a kind of fish genus", "pln": ["(: cnet_isa_87106f8532 (IsA pomolobus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pomologist is a kind of botanist", "pln": ["(: cnet_isa_f7f0f864be (IsA pomologist botanist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pomology is a kind of botany", "pln": ["(: cnet_isa_83024a65c6 (IsA pomology botany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pomoxis is a kind of fish genus", "pln": ["(: cnet_isa_0e12a48c99 (IsA pomoxis fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pomp is a kind of elegance", "pln": ["(: cnet_isa_6a3d914a18 (IsA pomp elegance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pompadour is a kind of hairdo", "pln": ["(: cnet_isa_0e260640ee (IsA pompadour hairdo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pompano is a kind of carangid fish", "pln": ["(: cnet_isa_5b2c4a1e9d (IsA pompano carangid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pompano is a kind of saltwater fish", "pln": ["(: cnet_isa_2076976c4b (IsA pompano saltwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pompon is a kind of grunt", "pln": ["(: cnet_isa_df1820b86d (IsA pompon grunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pompon is a kind of adornment", "pln": ["(: cnet_isa_714695fc8e (IsA pompon adornment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ponca is a kind of dhegiha", "pln": ["(: cnet_isa_aeae9d72be (IsA ponca dhegiha) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ponce is a kind of man", "pln": ["(: cnet_isa_e3597c9f54 (IsA ponce man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poncho is a kind of cloak", "pln": ["(: cnet_isa_6b455469f8 (IsA poncho cloak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poncirus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_6ec3bea791 (IsA poncirus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pond is a kind of body of water", "pln": ["(: cnet_isa_6819cfdde3 (IsA pond body_of_water) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pond is a kind of lake", "pln": ["(: cnet_isa_fd4b1fe182 (IsA pond lake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pond apple is a kind of custard apple", "pln": ["(: cnet_isa_7f20b86139 (IsA pond_apple custard_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pond cypress is a kind of cypress", "pln": ["(: cnet_isa_d0d0246400 (IsA pond_cypress cypress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pond pine is a kind of pine", "pln": ["(: cnet_isa_4da329166b (IsA pond_pine pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pond scum is a kind of green algae", "pln": ["(: cnet_isa_cedbab25a5 (IsA pond_scum green_algae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pond scum parasite is a kind of fungus", "pln": ["(: cnet_isa_b5b23068e4 (IsA pond_scum_parasite fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ponderosa is a kind of yellow pine", "pln": ["(: cnet_isa_01f91bea0c (IsA ponderosa yellow_pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ponderousness is a kind of uninterestingness", "pln": ["(: cnet_isa_922b4c485a (IsA ponderousness uninterestingness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pondweed is a kind of aquatic plant", "pln": ["(: cnet_isa_4b66852bc1 (IsA pondweed aquatic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pongamia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_1d86100537 (IsA pongamia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pongee is a kind of fabric", "pln": ["(: cnet_isa_fe9f61687e (IsA pongee fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pongidae is a kind of mammal family", "pln": ["(: cnet_isa_1bbb0eae42 (IsA pongidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pongo is a kind of mammal genus", "pln": ["(: cnet_isa_9aab7968aa (IsA pongo mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poniard is a kind of dagger", "pln": ["(: cnet_isa_3a95c3479d (IsA poniard dagger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ponka is a kind of dhegiha", "pln": ["(: cnet_isa_02d8aa5552 (IsA ponka dhegiha) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pon is a kind of neural structure", "pln": ["(: cnet_isa_3b519fda06 (IsA pon neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pon asinorum is a kind of problem", "pln": ["(: cnet_isa_fce1f95ede (IsA pon_asinorum problem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pontederia is a kind of monocot genus", "pln": ["(: cnet_isa_74528a6c1d (IsA pontederia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pontederiaceae is a kind of monocot family", "pln": ["(: cnet_isa_026007082a (IsA pontederiaceae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pontifex is a kind of priest", "pln": ["(: cnet_isa_aa612630de (IsA pontifex priest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pontiff is a kind of catholic", "pln": ["(: cnet_isa_0f80c72a2f (IsA pontiff catholic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pontiff is a kind of spiritual leader", "pln": ["(: cnet_isa_7773ce0e20 (IsA pontiff spiritual_leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pontifical is a kind of vestment", "pln": ["(: cnet_isa_9f5ce7f206 (IsA pontifical vestment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pontius pilate is a kind of procurator", "pln": ["(: cnet_isa_2d50931849 (IsA pontius_pilate procurator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pontoon is a kind of float", "pln": ["(: cnet_isa_82b60f27b5 (IsA pontoon float) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pontoon is a kind of barge", "pln": ["(: cnet_isa_66402e46b9 (IsA pontoon barge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pontoon bridge is a kind of bridge", "pln": ["(: cnet_isa_fb1a65a0bc (IsA pontoon_bridge bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ponto is a kind of greek deity", "pln": ["(: cnet_isa_44ff1577e3 (IsA ponto greek_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pony is a kind of horse", "pln": ["(: cnet_isa_69e2d9fabd (IsA pony horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pony is a kind of racehorse", "pln": ["(: cnet_isa_cdec8ace59 (IsA pony racehorse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pony is a kind of translation", "pln": ["(: cnet_isa_0492d8c80f (IsA pony translation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pony cart is a kind of cart", "pln": ["(: cnet_isa_450553abc3 (IsA pony_cart cart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pony express is a kind of express", "pln": ["(: cnet_isa_77e70d0e99 (IsA pony_express express) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pony trekking is a kind of riding", "pln": ["(: cnet_isa_6596c6cfe4 (IsA pony_trekking riding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ponytail is a kind of hairdo", "pln": ["(: cnet_isa_0302abdd03 (IsA ponytail hairdo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pooch is a kind of dog", "pln": ["(: cnet_isa_d4c155a111 (IsA pooch dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pood is a kind of weight unit", "pln": ["(: cnet_isa_0829675394 (IsA pood weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poodle is a kind of dog", "pln": ["(: cnet_isa_a8266cb457 (IsA poodle dog) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poodle is a kind of pet", "pln": ["(: cnet_isa_e940bb37de (IsA poodle pet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poodle is a kind of small dog with curly hair", "pln": ["(: cnet_isa_335a03fb26 (IsA poodle small_dog_with_curly_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pooecete is a kind of bird genus", "pln": ["(: cnet_isa_0334778503 (IsA pooecete bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pool is a kind of table game", "pln": ["(: cnet_isa_97d9ae5709 (IsA pool table_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pool is a kind of excavation", "pln": ["(: cnet_isa_9f2055d7c0 (IsA pool excavation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pool is a kind of organization", "pln": ["(: cnet_isa_cf2616fda0 (IsA pool organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pool is a kind of topographic point", "pln": ["(: cnet_isa_8b9f63c622 (IsA pool topographic_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pool is a kind of body of water", "pln": ["(: cnet_isa_d6c7ca3c8a (IsA pool body_of_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pool is a kind of reserve account", "pln": ["(: cnet_isa_fa49d63175 (IsA pool reserve_account) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pool is a kind of stake", "pln": ["(: cnet_isa_70f84f0d18 (IsA pool stake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pool ball is a kind of ball", "pln": ["(: cnet_isa_b7f2ae72ba (IsA pool_ball ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pool player is a kind of player", "pln": ["(: cnet_isa_8d9aea1cf3 (IsA pool_player player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pool table is a kind of game equipment", "pln": ["(: cnet_isa_72c4f6505b (IsA pool_table game_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "poor rates is a kind of rates", "pln": ["(: cnet_isa_17d8633e60 (IsA poor_rates rates) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pool table is a kind of table", "pln": ["(: cnet_isa_c6f912249b (IsA pool_table table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pooler is a kind of partaker", "pln": ["(: cnet_isa_c39be5187c (IsA pooler partaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pooling of interest is a kind of accounting", "pln": ["(: cnet_isa_21176c5be8 (IsA pooling_of_interest accounting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poolroom is a kind of room", "pln": ["(: cnet_isa_a7dde9c3a7 (IsA poolroom room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poon is a kind of tree", "pln": ["(: cnet_isa_b0febe939a (IsA poon tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poon is a kind of wood", "pln": ["(: cnet_isa_406ff98030 (IsA poon wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poop deck is a kind of weather deck", "pln": ["(: cnet_isa_4801661ace (IsA poop_deck weather_deck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poor box is a kind of box", "pln": ["(: cnet_isa_ea2cc6965f (IsA poor_box box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poor devil is a kind of victim", "pln": ["(: cnet_isa_49f82b37ee (IsA poor_devil victim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poor law is a kind of law", "pln": ["(: cnet_isa_28c93ec7dc (IsA poor_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poor people is a kind of people", "pln": ["(: cnet_isa_9fd50d701c (IsA poor_people people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poor person is a kind of unfortunate", "pln": ["(: cnet_isa_0418539b8e (IsA poor_person unfortunate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poor rate is a kind of rate", "pln": ["(: cnet_isa_92336eb905 (IsA poor_rate rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poorhouse is a kind of establishment", "pln": ["(: cnet_isa_7edb61d37f (IsA poorhouse establishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poorness is a kind of fruitlessness", "pln": ["(: cnet_isa_840f153b0a (IsA poorness fruitlessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poorness is a kind of inferiority", "pln": ["(: cnet_isa_eea8d083bb (IsA poorness inferiority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poorwill is a kind of goatsucker", "pln": ["(: cnet_isa_bd310d8784 (IsA poorwill goatsucker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pop is a kind of sound", "pln": ["(: cnet_isa_7f78903a8e (IsA pop sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pop is a kind of soft drink", "pln": ["(: cnet_isa_d1a0b84582 (IsA pop soft_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pop art is a kind of artistic movement", "pln": ["(: cnet_isa_487059827e (IsA pop_art artistic_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pop bottle is a kind of bottle", "pln": ["(: cnet_isa_305e232164 (IsA pop_bottle bottle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pop fly is a kind of fly", "pln": ["(: cnet_isa_38172c2d74 (IsA pop_fly fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pop group is a kind of ensemble", "pln": ["(: cnet_isa_85685ac4cd (IsA pop_group ensemble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pop music is a kind of popular music", "pln": ["(: cnet_isa_205e5183e5 (IsA pop_music popular_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pop quiz is a kind of quiz", "pln": ["(: cnet_isa_a32f6f2375 (IsA pop_quiz quiz) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pop tent is a kind of tent", "pln": ["(: cnet_isa_e23cde94cc (IsA pop_tent tent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pop up book is a kind of book", "pln": ["(: cnet_isa_212a7fa34f (IsA pop_up_book book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "popcorn is a kind of corn", "pln": ["(: cnet_isa_03b9c26651 (IsA popcorn corn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "popcorn ball is a kind of candy", "pln": ["(: cnet_isa_4703a51341 (IsA popcorn_ball candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pope is a kind of falliable", "pln": ["(: cnet_isa_3dada5b94b (IsA pope falliable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pope is a kind of leader", "pln": ["(: cnet_isa_dde17ca81d (IsA pope leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "popery is a kind of practice", "pln": ["(: cnet_isa_757dbac7dc (IsA popery practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "popeye is a kind of cartoon", "pln": ["(: cnet_isa_60e9d3777a (IsA popeye cartoon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "popgun is a kind of plaything", "pln": ["(: cnet_isa_5a6c49f07d (IsA popgun plaything) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "popillia is a kind of arthropod genus", "pln": ["(: cnet_isa_4bdc49d38c (IsA popillia arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "popinjay is a kind of parrot", "pln": ["(: cnet_isa_f503227df0 (IsA popinjay parrot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "popinjay is a kind of egotist", "pln": ["(: cnet_isa_38b33b93e8 (IsA popinjay egotist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poplar is a kind of angiospermous tree", "pln": ["(: cnet_isa_d9982b9139 (IsA poplar angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poplar is a kind of wood", "pln": ["(: cnet_isa_17cc7900e1 (IsA poplar wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poplin is a kind of fabric", "pln": ["(: cnet_isa_29bd2f7ad0 (IsA poplin fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "popliteal artery is a kind of artery", "pln": ["(: cnet_isa_86fb4287f8 (IsA popliteal_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "popliteal vein is a kind of vein", "pln": ["(: cnet_isa_27fad1dcab (IsA popliteal_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "popover is a kind of muffin", "pln": ["(: cnet_isa_70baf28d53 (IsA popover muffin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "popper is a kind of cooker", "pln": ["(: cnet_isa_7dc06744d9 (IsA popper cooker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "popper is a kind of stimulant", "pln": ["(: cnet_isa_633f40a06e (IsA popper stimulant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poppet is a kind of valve", "pln": ["(: cnet_isa_b6e98fd7ce (IsA poppet valve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poppy is a kind of flower", "pln": ["(: cnet_isa_1bc759d1ac (IsA poppy flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poppy mallow is a kind of mallow", "pln": ["(: cnet_isa_5eb9e291e6 (IsA poppy_mallow mallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poppy seed is a kind of flavorer", "pln": ["(: cnet_isa_1b3aed7c6f (IsA poppy_seed flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "populace is a kind of people", "pln": ["(: cnet_isa_49a7a2729e (IsA populace people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "popular front is a kind of alliance", "pln": ["(: cnet_isa_51ad1f20f1 (IsA popular_front alliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "popular music is a kind of music genre", "pln": ["(: cnet_isa_b0913b61b0 (IsA popular_music music_genre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "popularism is a kind of music", "pln": ["(: cnet_isa_6342ff55f7 (IsA popularism music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "popularity is a kind of quality", "pln": ["(: cnet_isa_64c2b633f8 (IsA popularity quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "popularity contest is a kind of contest", "pln": ["(: cnet_isa_f252895f24 (IsA popularity_contest contest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "popularization is a kind of degradation", "pln": ["(: cnet_isa_2bf7d9c2da (IsA popularization degradation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "popularization is a kind of interpretation", "pln": ["(: cnet_isa_f712b576cc (IsA popularization interpretation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "popularizer is a kind of communicator", "pln": ["(: cnet_isa_f00f537dc4 (IsA popularizer communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "population is a kind of colonization", "pln": ["(: cnet_isa_1a3ba14881 (IsA population colonization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "population is a kind of group", "pln": ["(: cnet_isa_1da841c649 (IsA population group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "population is a kind of people", "pln": ["(: cnet_isa_37a3928866 (IsA population people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "population is a kind of integer", "pln": ["(: cnet_isa_d3c311c181 (IsA population integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "population is a kind of collection", "pln": ["(: cnet_isa_b6b880a008 (IsA population collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "population commission is a kind of economic and social council commission", "pln": ["(: cnet_isa_11c7ba4a11 (IsA population_commission economic_and_social_council_commission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "population control is a kind of social control", "pln": ["(: cnet_isa_32ec1307fa (IsA population_control social_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "population growth is a kind of increase", "pln": ["(: cnet_isa_3cd43e5f6b (IsA population_growth increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "population profile is a kind of profile", "pln": ["(: cnet_isa_21286fcfe6 (IsA population_profile profile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "population shift is a kind of transformation", "pln": ["(: cnet_isa_ca9cd5d3f0 (IsA population_shift transformation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "populism is a kind of doctrine", "pln": ["(: cnet_isa_2d6d467751 (IsA populism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "populus is a kind of hamamelid dicot genus", "pln": ["(: cnet_isa_450d772045 (IsA populus hamamelid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porbeagle is a kind of mackerel shark", "pln": ["(: cnet_isa_b3e1ec4d6b (IsA porbeagle mackerel_shark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porcelain is a kind of ceramic ware", "pln": ["(: cnet_isa_6fc7d302d6 (IsA porcelain ceramic_ware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porcellio is a kind of arthropod genus", "pln": ["(: cnet_isa_e76612c22d (IsA porcellio arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porcellionidae is a kind of arthropod family", "pln": ["(: cnet_isa_c520248ede (IsA porcellionidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porch is a kind of structure", "pln": ["(: cnet_isa_a9df6572f4 (IsA porch structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porcupine is a kind of rodent", "pln": ["(: cnet_isa_18757fdb5e (IsA porcupine rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porcupine ball is a kind of meatball", "pln": ["(: cnet_isa_ba8bcf34d3 (IsA porcupine_ball meatball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porcupinefish is a kind of spiny puffer", "pln": ["(: cnet_isa_ae528eb82d (IsA porcupinefish spiny_puffer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pore is a kind of duct", "pln": ["(: cnet_isa_98fec91b56 (IsA pore duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pore is a kind of hole", "pln": ["(: cnet_isa_afc0306127 (IsA pore hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porgy is a kind of sea bream", "pln": ["(: cnet_isa_1ad2177968 (IsA porgy sea_bream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porgy is a kind of saltwater fish", "pln": ["(: cnet_isa_f3b95dcc57 (IsA porgy saltwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "porifera is a kind of phylum", "pln": ["(: cnet_isa_5e0cbc458e (IsA porifera phylum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pork is a kind of meat", "pln": ["(: cnet_isa_6e8dbb2934 (IsA pork meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pork and bean is a kind of dish", "pln": ["(: cnet_isa_66d08da7bd (IsA pork_and_bean dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pork and veal goulash is a kind of goulash", "pln": ["(: cnet_isa_e8bbc1c197 (IsA pork_and_veal_goulash goulash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pork barrel is a kind of appropriation", "pln": ["(: cnet_isa_a835347517 (IsA pork_barrel appropriation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pork barreling is a kind of acquisition", "pln": ["(: cnet_isa_7cdfe202b1 (IsA pork_barreling acquisition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pork belly is a kind of side of pork", "pln": ["(: cnet_isa_129d556277 (IsA pork_belly side_of_pork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pork butcher is a kind of butcher", "pln": ["(: cnet_isa_eb02ad6c46 (IsA pork_butcher butcher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pork loin is a kind of cut of pork", "pln": ["(: cnet_isa_1a644620f2 (IsA pork_loin cut_of_pork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pork pie is a kind of pasty", "pln": ["(: cnet_isa_1731adb0a3 (IsA pork_pie pasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pork roast is a kind of roast", "pln": ["(: cnet_isa_fa8221bab3 (IsA pork_roast roast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pork sausage is a kind of sausage", "pln": ["(: cnet_isa_72f4d331e6 (IsA pork_sausage sausage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pork tenderloin is a kind of tenderloin", "pln": ["(: cnet_isa_9c77b25bcc (IsA pork_tenderloin tenderloin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porkchop is a kind of chop", "pln": ["(: cnet_isa_1e653133c3 (IsA porkchop chop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "porker is a kind of hog", "pln": ["(: cnet_isa_3e9509ac5d (IsA porker hog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porkfish is a kind of grunt", "pln": ["(: cnet_isa_32312315a0 (IsA porkfish grunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porkholt is a kind of goulash", "pln": ["(: cnet_isa_11fb5cff53 (IsA porkholt goulash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porkpie is a kind of snap brim hat", "pln": ["(: cnet_isa_1a9bf8300a (IsA porkpie snap_brim_hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pornographer is a kind of showman", "pln": ["(: cnet_isa_d10e8e521f (IsA pornographer showman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pornography is a kind of creation", "pln": ["(: cnet_isa_725bf029c2 (IsA pornography creation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poronotus is a kind of fish genus", "pln": ["(: cnet_isa_9d8af86f4d (IsA poronotus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porosity is a kind of consistency", "pln": ["(: cnet_isa_ff4f7caa09 (IsA porosity consistency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "porphyra is a kind of protoctist genus", "pln": ["(: cnet_isa_fe498d445b (IsA porphyra protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porphyria is a kind of genetic disease", "pln": ["(: cnet_isa_40ace140fb (IsA porphyria genetic_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porphyrin is a kind of pigment", "pln": ["(: cnet_isa_378bb7d4fe (IsA porphyrin pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porphyrio is a kind of bird genus", "pln": ["(: cnet_isa_6d8a04cc72 (IsA porphyrio bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porphyrula is a kind of bird genus", "pln": ["(: cnet_isa_a40d92cf00 (IsA porphyrula bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porphyry is a kind of igneous rock", "pln": ["(: cnet_isa_a4d4a05a7d (IsA porphyry igneous_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porpoise is a kind of dolphin", "pln": ["(: cnet_isa_3a4e597a84 (IsA porpoise dolphin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "porpoise oil is a kind of animal oil", "pln": ["(: cnet_isa_52025c534d (IsA porpoise_oil animal_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porridge is a kind of dish", "pln": ["(: cnet_isa_c84cfc0102 (IsA porridge dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porringer is a kind of bowl", "pln": ["(: cnet_isa_210fea1936 (IsA porringer bowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "port is a kind of fortified wine", "pln": ["(: cnet_isa_efb02078fc (IsA port fortified_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "port is a kind of geographic point", "pln": ["(: cnet_isa_8d39324fcf (IsA port geographic_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "port is a kind of opening", "pln": ["(: cnet_isa_da0363ced5 (IsA port opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "port access coronary bypass surgery is a kind of closed heart surgery", "pln": ["(: cnet_isa_5e250f29d4 (IsA port_access_coronary_bypass_surgery closed_heart_surgery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "port jackson fig is a kind of fig tree", "pln": ["(: cnet_isa_fadb494d43 (IsA port_jackson_fig fig_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "port jackson heath is a kind of epacris", "pln": ["(: cnet_isa_7296b8fbdd (IsA port_jackson_heath epacris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "port jackson pine is a kind of cypress pine", "pln": ["(: cnet_isa_748910a3b3 (IsA port_jackson_pine cypress_pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "port of call is a kind of seaport", "pln": ["(: cnet_isa_55e5c61166 (IsA port_of_call seaport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "port of entry is a kind of port", "pln": ["(: cnet_isa_4b72d94068 (IsA port_of_entry port) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "port orford cedar is a kind of cedar", "pln": ["(: cnet_isa_a7dd15b552 (IsA port_orford_cedar cedar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "port wine stain is a kind of birthmark", "pln": ["(: cnet_isa_374663c135 (IsA port_wine_stain birthmark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porta hepatis is a kind of orifice", "pln": ["(: cnet_isa_206968c467 (IsA porta_hepatis orifice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portability is a kind of movability", "pln": ["(: cnet_isa_13c0927486 (IsA portability movability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portable is a kind of typewriter", "pln": ["(: cnet_isa_3e73cc2389 (IsA portable typewriter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portable computer is a kind of personal computer", "pln": ["(: cnet_isa_054f3ce48c (IsA portable_computer personal_computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portable saw is a kind of circular saw", "pln": ["(: cnet_isa_749cb6d20a (IsA portable_saw circular_saw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portacaval shunt is a kind of shunt", "pln": ["(: cnet_isa_9c7e85adcf (IsA portacaval_shunt shunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portage is a kind of carry", "pln": ["(: cnet_isa_6c860f3246 (IsA portage carry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portage is a kind of track", "pln": ["(: cnet_isa_c183bbafd5 (IsA portage track) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "portage is a kind of cost", "pln": ["(: cnet_isa_dbe462757e (IsA portage cost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portal is a kind of entrance", "pln": ["(: cnet_isa_4926159441 (IsA portal entrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portal hypertension is a kind of malignant hypertension", "pln": ["(: cnet_isa_e2cc5a764f (IsA portal_hypertension malignant_hypertension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portal site is a kind of web site", "pln": ["(: cnet_isa_86a11bc930 (IsA portal_site web_site) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portal system is a kind of vascular system", "pln": ["(: cnet_isa_668f9fade3 (IsA portal_system vascular_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portal vein is a kind of vein", "pln": ["(: cnet_isa_4d692c1a9f (IsA portal_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "portcullis is a kind of gate", "pln": ["(: cnet_isa_3aca094fee (IsA portcullis gate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "porte is a kind of court", "pln": ["(: cnet_isa_f7369ffd89 (IsA porte court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porte cochere is a kind of canopy", "pln": ["(: cnet_isa_a0b510ad37 (IsA porte_cochere canopy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porte cochere is a kind of entrance", "pln": ["(: cnet_isa_72f5611be6 (IsA porte_cochere entrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porter is a kind of very dark beer", "pln": ["(: cnet_isa_7e4d4a56a2 (IsA porter very_dark_beer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porter is a kind of ale", "pln": ["(: cnet_isa_1533519d76 (IsA porter ale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porter is a kind of employee", "pln": ["(: cnet_isa_7f5ef1e745 (IsA porter employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porter is a kind of laborer", "pln": ["(: cnet_isa_3b88c71670 (IsA porter laborer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porterage is a kind of carry", "pln": ["(: cnet_isa_09d9ce58c5 (IsA porterage carry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porterage is a kind of charge", "pln": ["(: cnet_isa_edec4bc578 (IsA porterage charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "porterhouse is a kind of beefsteak", "pln": ["(: cnet_isa_401024670e (IsA porterhouse beefsteak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portfolio is a kind of function", "pln": ["(: cnet_isa_53fc621307 (IsA portfolio function) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portfolio is a kind of case", "pln": ["(: cnet_isa_b668a5b2a7 (IsA portfolio case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portfolio is a kind of list", "pln": ["(: cnet_isa_38b9be4a53 (IsA portfolio list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portfolio is a kind of set", "pln": ["(: cnet_isa_3452bcd05e (IsA portfolio set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porthole is a kind of window", "pln": ["(: cnet_isa_5757a9149f (IsA porthole window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portia tree is a kind of tulipwood tree", "pln": ["(: cnet_isa_5d615bc407 (IsA portia_tree tulipwood_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portico is a kind of porch", "pln": ["(: cnet_isa_0f2019e7c6 (IsA portico porch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portiere is a kind of curtain", "pln": ["(: cnet_isa_b9a05bb132 (IsA portiere curtain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portmanteau is a kind of bag", "pln": ["(: cnet_isa_01226d2a25 (IsA portmanteau bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "portrait is a kind of likeness", "pln": ["(: cnet_isa_a876ab7c7a (IsA portrait likeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portrait camera is a kind of camera", "pln": ["(: cnet_isa_b552a8ffa4 (IsA portrait_camera camera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portrait len is a kind of camera len", "pln": ["(: cnet_isa_4bb570aa03 (IsA portrait_len camera_len) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portraitist is a kind of painter", "pln": ["(: cnet_isa_0aad957ea4 (IsA portraitist painter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portraiture is a kind of depiction", "pln": ["(: cnet_isa_6941b01352 (IsA portraiture depiction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portrayal is a kind of acting", "pln": ["(: cnet_isa_6c6b382c8f (IsA portrayal acting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portrayal is a kind of word picture", "pln": ["(: cnet_isa_70a77eb234 (IsA portrayal word_picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portugal is a kind of country", "pln": ["(: cnet_isa_c2be466b06 (IsA portugal country) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portuguese is a kind of romance", "pln": ["(: cnet_isa_ca75284113 (IsA portuguese romance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portuguese is a kind of european", "pln": ["(: cnet_isa_815c521769 (IsA portuguese european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portuguese escudo is a kind of portuguese monetary unit", "pln": ["(: cnet_isa_2dce1208eb (IsA portuguese_escudo portuguese_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portuguese man of war is a kind of siphonophore", "pln": ["(: cnet_isa_a43e0c1be2 (IsA portuguese_man_of_war siphonophore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portuguese monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_f53c950163 (IsA portuguese_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portulaca is a kind of flower", "pln": ["(: cnet_isa_e3238e52c3 (IsA portulaca flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portulacaceae is a kind of caryophylloid dicot family", "pln": ["(: cnet_isa_ea611dae25 (IsA portulacaceae caryophylloid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portunidae is a kind of arthropod family", "pln": ["(: cnet_isa_15ae016dbb (IsA portunidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portunus is a kind of arthropod genus", "pln": ["(: cnet_isa_abb4aad0c4 (IsA portunus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "portwatcher is a kind of watchman", "pln": ["(: cnet_isa_d519cde6aa (IsA portwatcher watchman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "porzana is a kind of bird genus", "pln": ["(: cnet_isa_497939aa7d (IsA porzana bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pose is a kind of position", "pln": ["(: cnet_isa_2e2ef96945 (IsA pose position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poser is a kind of problem", "pln": ["(: cnet_isa_b93ea9d15b (IsA poser problem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poseur is a kind of exhibitionist", "pln": ["(: cnet_isa_962b04a8d3 (IsA poseur exhibitionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poseuse is a kind of poseur", "pln": ["(: cnet_isa_bee85aaa8f (IsA poseuse poseur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "position is a kind of assumption", "pln": ["(: cnet_isa_cae04e6fcf (IsA position assumption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "position is a kind of occupation", "pln": ["(: cnet_isa_a42c466fc5 (IsA position occupation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "position is a kind of bodily property", "pln": ["(: cnet_isa_6bae1c73c5 (IsA position bodily_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "position is a kind of relation", "pln": ["(: cnet_isa_88a3eccdaf (IsA position relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "position is a kind of attitude", "pln": ["(: cnet_isa_20fd81952c (IsA position attitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "position is a kind of orientation", "pln": ["(: cnet_isa_d96581c0cd (IsA position orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "position is a kind of point", "pln": ["(: cnet_isa_25af2b3e07 (IsA position point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "position is a kind of role", "pln": ["(: cnet_isa_f38077f720 (IsA position role) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "position effect is a kind of consequence", "pln": ["(: cnet_isa_16e5fb070d (IsA position_effect consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "position paper is a kind of report", "pln": ["(: cnet_isa_d4d5d2d630 (IsA position_paper report) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "position vector is a kind of vector", "pln": ["(: cnet_isa_74a776454c (IsA position_vector vector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "positional notation is a kind of numeration system", "pln": ["(: cnet_isa_41c386203d (IsA positional_notation numeration_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "positive is a kind of film", "pln": ["(: cnet_isa_78f9b31e6f (IsA positive film) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "positive charge is a kind of charge", "pln": ["(: cnet_isa_066ac1c79f (IsA positive_charge charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "positive chemotaxis is a kind of chemotaxis", "pln": ["(: cnet_isa_dcd632413b (IsA positive_chemotaxis chemotaxis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "positive correlation is a kind of correlation", "pln": ["(: cnet_isa_318041745b (IsA positive_correlation correlation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "positive degree is a kind of adjective", "pln": ["(: cnet_isa_d10fa89022 (IsA positive_degree adjective) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "positive degree is a kind of adverb", "pln": ["(: cnet_isa_46905da2bf (IsA positive_degree adverb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "positive feedback is a kind of feedback", "pln": ["(: cnet_isa_2247446720 (IsA positive_feedback feedback) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "positive identification is a kind of identification", "pln": ["(: cnet_isa_1435169f3b (IsA positive_identification identification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "positive pole is a kind of pole", "pln": ["(: cnet_isa_8653a58034 (IsA positive_pole pole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "positive pole is a kind of terminal", "pln": ["(: cnet_isa_87622fe59a (IsA positive_pole terminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "positive reinforcing stimulus is a kind of reinforcing stimulus", "pln": ["(: cnet_isa_4bbee221d1 (IsA positive_reinforcing_stimulus reinforcing_stimulus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "positive stimulus is a kind of stimulation", "pln": ["(: cnet_isa_f28f63836e (IsA positive_stimulus stimulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "positiveness is a kind of amount", "pln": ["(: cnet_isa_335541aca2 (IsA positiveness amount) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "positivism is a kind of quality", "pln": ["(: cnet_isa_6498d01199 (IsA positivism quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "positivism is a kind of empiricism", "pln": ["(: cnet_isa_9be92790d4 (IsA positivism empiricism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "positivist is a kind of nonreligious person", "pln": ["(: cnet_isa_f6940aa60e (IsA positivist nonreligious_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "positivity is a kind of polarity", "pln": ["(: cnet_isa_07e0c095b8 (IsA positivity polarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "positron is a kind of antilepton", "pln": ["(: cnet_isa_918cf64b20 (IsA positron antilepton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "positron emission tomography is a kind of imaging", "pln": ["(: cnet_isa_f6cc8b0c8c (IsA positron_emission_tomography imaging) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "positron emission tomography scanner is a kind of tomograph", "pln": ["(: cnet_isa_9a5edba54b (IsA positron_emission_tomography_scanner tomograph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "posology is a kind of pharmacology", "pln": ["(: cnet_isa_c6c710fe1a (IsA posology pharmacology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "posse is a kind of police", "pln": ["(: cnet_isa_38ac4f1340 (IsA posse police) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "posseman is a kind of man", "pln": ["(: cnet_isa_053f684734 (IsA posseman man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "possession is a kind of relation", "pln": ["(: cnet_isa_b5d53cfa55 (IsA possession relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "possession is a kind of control", "pln": ["(: cnet_isa_636713ac38 (IsA possession control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "possession is a kind of district", "pln": ["(: cnet_isa_90dde8667e (IsA possession district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "possession is a kind of enchantment", "pln": ["(: cnet_isa_f0b018dda6 (IsA possession enchantment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "possessiveness is a kind of greed", "pln": ["(: cnet_isa_970032b7a3 (IsA possessiveness greed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "posset is a kind of drink", "pln": ["(: cnet_isa_2a6e22a953 (IsA posset drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "possibility is a kind of expectation", "pln": ["(: cnet_isa_52b7f7bcd4 (IsA possibility expectation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "possibility is a kind of option", "pln": ["(: cnet_isa_bd079f62f5 (IsA possibility option) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "possibility is a kind of being", "pln": ["(: cnet_isa_1ba1c69ad3 (IsA possibility being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "possible is a kind of possibility", "pln": ["(: cnet_isa_e7aacb7791 (IsA possible possibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "possible is a kind of applicant", "pln": ["(: cnet_isa_bcc6ee3134 (IsA possible applicant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "post is a kind of delivery", "pln": ["(: cnet_isa_8e0587510d (IsA post delivery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "post is a kind of upright", "pln": ["(: cnet_isa_ee20131fea (IsA post upright) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "post is a kind of visual signal", "pln": ["(: cnet_isa_7b5ceccaa0 (IsA post visual_signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "post is a kind of position", "pln": ["(: cnet_isa_a76c2c1208 (IsA post position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "post and lintel is a kind of structure", "pln": ["(: cnet_isa_58b405a928 (IsA post_and_lintel structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "post chaise is a kind of carriage", "pln": ["(: cnet_isa_81b3c3239f (IsA post_chaise carriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "post exchange is a kind of commissary", "pln": ["(: cnet_isa_8b67060508 (IsA post_exchange commissary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "post hoc is a kind of logical fallacy", "pln": ["(: cnet_isa_4fcb12df4a (IsA post_hoc logical_fallacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "post horn is a kind of wind instrument", "pln": ["(: cnet_isa_4a640ae116 (IsA post_horn wind_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "post horse is a kind of horse", "pln": ["(: cnet_isa_7e809adedf (IsA post_horse horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "post house is a kind of hostel", "pln": ["(: cnet_isa_6409ccc607 (IsA post_house hostel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "post impressionist is a kind of painter", "pln": ["(: cnet_isa_c50be829ae (IsA post_impressionist painter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "post it is a kind of notepaper", "pln": ["(: cnet_isa_af36fc0655 (IsA post_it notepaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "post menopause is a kind of maturity", "pln": ["(: cnet_isa_a82a171005 (IsA post_menopause maturity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "post oak is a kind of oak", "pln": ["(: cnet_isa_6ae370852a (IsA post_oak oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "post obit bond is a kind of bond", "pln": ["(: cnet_isa_9886dcb11d (IsA post_obit_bond bond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "post office is a kind of child s game", "pln": ["(: cnet_isa_cc0dd9b464 (IsA post_office child_s_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "post office is a kind of branch", "pln": ["(: cnet_isa_da62eb6cbd (IsA post_office branch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "post office box is a kind of compartment", "pln": ["(: cnet_isa_9ea3f9eb08 (IsA post_office_box compartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "post office box number is a kind of mailing address", "pln": ["(: cnet_isa_735d3e92f0 (IsA post_office_box_number mailing_address) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "post road is a kind of road", "pln": ["(: cnet_isa_8420790403 (IsA post_road road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "post rotational nystagmus is a kind of nystagmus", "pln": ["(: cnet_isa_be89813507 (IsA post_rotational_nystagmus nystagmus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "post traumatic stress disorder is a kind of anxiety disorder", "pln": ["(: cnet_isa_fe148a3a5f (IsA post_traumatic_stress_disorder anxiety_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "postage is a kind of token", "pln": ["(: cnet_isa_d0c98842c0 (IsA postage token) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "postage is a kind of charge", "pln": ["(: cnet_isa_9a6b06dd0c (IsA postage charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "postage meter is a kind of meter", "pln": ["(: cnet_isa_4cdf74d5c2 (IsA postage_meter meter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "postal clerk is a kind of clerk", "pln": ["(: cnet_isa_600506f8a6 (IsA postal_clerk clerk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "postal rate commission is a kind of independent agency", "pln": ["(: cnet_isa_3af251bda8 (IsA postal_rate_commission independent_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "postbox is a kind of maildrop", "pln": ["(: cnet_isa_bd3d5f7a5c (IsA postbox maildrop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "postcard is a kind of card", "pln": ["(: cnet_isa_cc6a5fcd5d (IsA postcard card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "postcentral gyrus is a kind of central gyrus", "pln": ["(: cnet_isa_85efb20938 (IsA postcentral_gyrus central_gyrus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "postdiluvian is a kind of organism", "pln": ["(: cnet_isa_c4fde1473d (IsA postdiluvian organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "postdoc is a kind of research worker", "pln": ["(: cnet_isa_1935fb2c41 (IsA postdoc research_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "postdoc is a kind of scholar", "pln": ["(: cnet_isa_39cb1fc50e (IsA postdoc scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "postdoc is a kind of grant in aid", "pln": ["(: cnet_isa_50ecc7c3f3 (IsA postdoc grant_in_aid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poste restante is a kind of note", "pln": ["(: cnet_isa_2e5ac8e883 (IsA poste_restante note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poster is a kind of sign", "pln": ["(: cnet_isa_2799b03775 (IsA poster sign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poster boy is a kind of poster child", "pln": ["(: cnet_isa_0580b6a389 (IsA poster_boy poster_child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poster child is a kind of child", "pln": ["(: cnet_isa_7255455ae6 (IsA poster_child child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poster girl is a kind of poster child", "pln": ["(: cnet_isa_68e348c939 (IsA poster_girl poster_child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "posterior cardinal vein is a kind of cardinal vein", "pln": ["(: cnet_isa_6a278b5aed (IsA posterior_cardinal_vein cardinal_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "posterior cerebral artery is a kind of cerebral artery", "pln": ["(: cnet_isa_cde48b995d (IsA posterior_cerebral_artery cerebral_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "posterior horn is a kind of sensory nerve", "pln": ["(: cnet_isa_36a78138c6 (IsA posterior_horn sensory_nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "posterior meningeal artery is a kind of meningeal artery", "pln": ["(: cnet_isa_04b6883bbe (IsA posterior_meningeal_artery meningeal_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "posterior naris is a kind of naris", "pln": ["(: cnet_isa_651da41a0a (IsA posterior_naris naris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "posterior pituitary is a kind of endocrine gland", "pln": ["(: cnet_isa_a069bbaa40 (IsA posterior_pituitary endocrine_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "posterior serratus muscle is a kind of serratus", "pln": ["(: cnet_isa_93164659e1 (IsA posterior_serratus_muscle serratus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "posterior subcapsular cataract is a kind of cataract", "pln": ["(: cnet_isa_3e6cbea211 (IsA posterior_subcapsular_cataract cataract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "posterior synechia is a kind of synechia", "pln": ["(: cnet_isa_61376847d2 (IsA posterior_synechia synechia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "posterior temporal artery is a kind of temporal artery", "pln": ["(: cnet_isa_41b6a6316a (IsA posterior_temporal_artery temporal_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "posterior vein of left ventricle is a kind of vein", "pln": ["(: cnet_isa_482d96f200 (IsA posterior_vein_of_left_ventricle vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "posteriority is a kind of lateness", "pln": ["(: cnet_isa_bb406352ea (IsA posteriority lateness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "posteriority is a kind of position", "pln": ["(: cnet_isa_a3e122e6f7 (IsA posteriority position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "posterity is a kind of generation", "pln": ["(: cnet_isa_5f32ef4d7b (IsA posterity generation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "postern is a kind of gate", "pln": ["(: cnet_isa_163245f7ea (IsA postern gate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "postfix notation is a kind of parenthesis free notation", "pln": ["(: cnet_isa_bd399bc6bd (IsA postfix_notation parenthesis_free_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "posthitis is a kind of inflammation", "pln": ["(: cnet_isa_c731a01506 (IsA posthitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "posthole is a kind of hole", "pln": ["(: cnet_isa_65581078bf (IsA posthole hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "posthole digger is a kind of shovel", "pln": ["(: cnet_isa_fd541cbf25 (IsA posthole_digger shovel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "posthumous birth is a kind of birth", "pln": ["(: cnet_isa_f9155725e1 (IsA posthumous_birth birth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "posthypnotic amnesia is a kind of selective amnesia", "pln": ["(: cnet_isa_b6e3a8c1de (IsA posthypnotic_amnesia selective_amnesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "posthypnotic suggestion is a kind of suggestion", "pln": ["(: cnet_isa_0df95bc341 (IsA posthypnotic_suggestion suggestion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "postilion is a kind of horseman", "pln": ["(: cnet_isa_47200afd63 (IsA postilion horseman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "posting is a kind of list", "pln": ["(: cnet_isa_77e5fa4693 (IsA posting list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "postlude is a kind of voluntary", "pln": ["(: cnet_isa_7d98fb8dad (IsA postlude voluntary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "postmark is a kind of marker", "pln": ["(: cnet_isa_88312ea81d (IsA postmark marker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "postmaster is a kind of master", "pln": ["(: cnet_isa_a3d6ae35fa (IsA postmaster master) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "postmaster general is a kind of official", "pln": ["(: cnet_isa_78619704af (IsA postmaster_general official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "postmature infant is a kind of neonate", "pln": ["(: cnet_isa_4236a94462 (IsA postmature_infant neonate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "postmistress is a kind of postmaster", "pln": ["(: cnet_isa_d8062e0bc9 (IsA postmistress postmaster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "postmodernism is a kind of genre", "pln": ["(: cnet_isa_4ac6426d18 (IsA postmodernism genre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "postmortem is a kind of discussion", "pln": ["(: cnet_isa_d56a1cb88e (IsA postmortem discussion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "postnasal drip is a kind of symptom", "pln": ["(: cnet_isa_900f5717ec (IsA postnasal_drip symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "postponement is a kind of delay", "pln": ["(: cnet_isa_275bc89ca2 (IsA postponement delay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "postposition is a kind of adposition", "pln": ["(: cnet_isa_bd00cadb7c (IsA postposition adposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "postposition is a kind of place", "pln": ["(: cnet_isa_da24575107 (IsA postposition place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "postscript is a kind of note", "pln": ["(: cnet_isa_02ea0e6afa (IsA postscript note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "posttraumatic epilepsy is a kind of epilepsy", "pln": ["(: cnet_isa_8c4f063772 (IsA posttraumatic_epilepsy epilepsy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "posttraumatic stress disorder is a kind of anxiety disorder", "pln": ["(: cnet_isa_d0ea30fa25 (IsA posttraumatic_stress_disorder anxiety_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "postulant is a kind of petitioner", "pln": ["(: cnet_isa_5b081a064e (IsA postulant petitioner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "postulate is a kind of proposition", "pln": ["(: cnet_isa_cfe4260eab (IsA postulate proposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "postulation is a kind of declaration", "pln": ["(: cnet_isa_2ab4f0d884 (IsA postulation declaration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "postulator is a kind of asserter", "pln": ["(: cnet_isa_050d6479d7 (IsA postulator asserter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "postulator is a kind of clergyman", "pln": ["(: cnet_isa_0070162a10 (IsA postulator clergyman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "postum is a kind of coffee substitute", "pln": ["(: cnet_isa_82497251c7 (IsA postum coffee_substitute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "posturer is a kind of person", "pln": ["(: cnet_isa_3e25ab10d5 (IsA posturer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "posturing is a kind of conceit", "pln": ["(: cnet_isa_4c1196062f (IsA posturing conceit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pot is a kind of vessel", "pln": ["(: cnet_isa_17b8bef868 (IsA pot vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pot is a kind of cannabis", "pln": ["(: cnet_isa_940ac53446 (IsA pot cannabis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pot is a kind of container", "pln": ["(: cnet_isa_e6f26dd06e (IsA pot container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pot is a kind of cooking utensil", "pln": ["(: cnet_isa_1786d51859 (IsA pot cooking_utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pot is a kind of belly", "pln": ["(: cnet_isa_8adcc3d167 (IsA pot belly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pot is a kind of stake", "pln": ["(: cnet_isa_f9fb1095eb (IsA pot stake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pot is a kind of containerful", "pln": ["(: cnet_isa_e822cf9cee (IsA pot containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pot au feu is a kind of stew", "pln": ["(: cnet_isa_6ffb7c5b9b (IsA pot_au_feu stew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pot farm is a kind of garden", "pln": ["(: cnet_isa_93ea053386 (IsA pot_farm garden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pot metal is a kind of alloy", "pln": ["(: cnet_isa_6332f82365 (IsA pot_metal alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pot metal is a kind of cast iron", "pln": ["(: cnet_isa_fe44e60bde (IsA pot_metal cast_iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pot plant is a kind of plant", "pln": ["(: cnet_isa_5144a15966 (IsA pot_plant plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pot roast is a kind of roast", "pln": ["(: cnet_isa_99dccb37a8 (IsA pot_roast roast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potage is a kind of soup", "pln": ["(: cnet_isa_e21e8fa8e8 (IsA potage soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potamogalidae is a kind of mammal family", "pln": ["(: cnet_isa_ec17dcdbee (IsA potamogalidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potamogeton is a kind of monocot genus", "pln": ["(: cnet_isa_3811c7f908 (IsA potamogeton monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potamogetonaceae is a kind of monocot family", "pln": ["(: cnet_isa_03166d87f9 (IsA potamogetonaceae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potamophis is a kind of reptile genus", "pln": ["(: cnet_isa_1d14b601a1 (IsA potamophis reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "potash is a kind of hydroxide", "pln": ["(: cnet_isa_ba1a29e9ef (IsA potash hydroxide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potash is a kind of lye", "pln": ["(: cnet_isa_dcc3b771c3 (IsA potash lye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potassium is a kind of element", "pln": ["(: cnet_isa_e07b3d2856 (IsA potassium element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potassium is a kind of metallic element", "pln": ["(: cnet_isa_c0379a2caa (IsA potassium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potassium argon dating is a kind of dating", "pln": ["(: cnet_isa_5c5d7e4a9d (IsA potassium_argon_dating dating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potassium bicarbonate is a kind of bicarbonate", "pln": ["(: cnet_isa_e55fe190c7 (IsA potassium_bicarbonate bicarbonate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potassium bromide is a kind of restrainer", "pln": ["(: cnet_isa_9847cc3073 (IsA potassium_bromide restrainer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potassium bromide is a kind of salt", "pln": ["(: cnet_isa_c652184466 (IsA potassium_bromide salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potassium carbonate is a kind of carbonate", "pln": ["(: cnet_isa_b20e390e48 (IsA potassium_carbonate carbonate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potassium chlorate is a kind of salt", "pln": ["(: cnet_isa_016d87da5e (IsA potassium_chlorate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "potassium chloride is a kind of chloride", "pln": ["(: cnet_isa_78601e4af2 (IsA potassium_chloride chloride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potassium cyanide is a kind of cyanide", "pln": ["(: cnet_isa_024e5f8e3a (IsA potassium_cyanide cyanide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "potassium dichromate is a kind of salt", "pln": ["(: cnet_isa_a5536a0ea8 (IsA potassium_dichromate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potassium ferrocyanide is a kind of ferrocyanide", "pln": ["(: cnet_isa_031e3cb2e9 (IsA potassium_ferrocyanide ferrocyanide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potassium iodide is a kind of iodide", "pln": ["(: cnet_isa_ab3cd47e06 (IsA potassium_iodide iodide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potassium nitrate is a kind of nitrate", "pln": ["(: cnet_isa_0469428b4b (IsA potassium_nitrate nitrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potassium permanganate is a kind of permanganate", "pln": ["(: cnet_isa_5347d8a5f0 (IsA potassium_permanganate permanganate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "potation is a kind of drinking", "pln": ["(: cnet_isa_bc643dddbb (IsA potation drinking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potato is a kind of root vegetable", "pln": ["(: cnet_isa_21e70124b1 (IsA potato root_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potato is a kind of solanaceous vegetable", "pln": ["(: cnet_isa_5f2a5a936f (IsA potato solanaceous_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potato is a kind of starche", "pln": ["(: cnet_isa_0a36847207 (IsA potato starche) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potato is a kind of vine", "pln": ["(: cnet_isa_8387a682f8 (IsA potato vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potato blight is a kind of blight", "pln": ["(: cnet_isa_3ac643067f (IsA potato_blight blight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potato fern is a kind of fern", "pln": ["(: cnet_isa_f33daa7713 (IsA potato_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potato fungus is a kind of fungus", "pln": ["(: cnet_isa_a9923050a7 (IsA potato_fungus fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potato mosaic is a kind of mosaic", "pln": ["(: cnet_isa_035d85db14 (IsA potato_mosaic mosaic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potato moth is a kind of gelechiid", "pln": ["(: cnet_isa_9b964606b7 (IsA potato_moth gelechiid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potato pancake is a kind of pancake", "pln": ["(: cnet_isa_0fc503ac7a (IsA potato_pancake pancake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potato race is a kind of race", "pln": ["(: cnet_isa_e414cff5d5 (IsA potato_race race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potato salad is a kind of salad", "pln": ["(: cnet_isa_317f2be0fc (IsA potato_salad salad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potato scab bacteria is a kind of streptomyce", "pln": ["(: cnet_isa_486ea5009b (IsA potato_scab_bacteria streptomyce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "potato skin is a kind of snack food", "pln": ["(: cnet_isa_74d3cd391b (IsA potato_skin snack_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potato tree is a kind of shrub", "pln": ["(: cnet_isa_786b6f1d95 (IsA potato_tree shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potato tree is a kind of vine", "pln": ["(: cnet_isa_b45a038c08 (IsA potato_tree vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "potato tuberworm is a kind of caterpillar", "pln": ["(: cnet_isa_3173c78240 (IsA potato_tuberworm caterpillar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "potatoes is a kind of root vegetable", "pln": ["(: cnet_isa_27a3fdcfc0 (IsA potatoes root_vegetable) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potato vine is a kind of vine", "pln": ["(: cnet_isa_e640d0e452 (IsA potato_vine vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potato wart is a kind of plant disease", "pln": ["(: cnet_isa_331280f600 (IsA potato_wart plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potato wart fungus is a kind of fungus", "pln": ["(: cnet_isa_a42b3bbea5 (IsA potato_wart_fungus fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potato yellow dwarf virus is a kind of plant virus", "pln": ["(: cnet_isa_39e046df9d (IsA potato_yellow_dwarf_virus plant_virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potatoe is a kind of food", "pln": ["(: cnet_isa_bc32b17867 (IsA potatoe food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potatoe is a kind of root vegetable", "pln": ["(: cnet_isa_246a1ac687 (IsA potatoe root_vegetable) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potatoe is a kind of vegetable", "pln": ["(: cnet_isa_fe2a8ee998 (IsA potatoe vegetable) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potatoe and chicken is a kind of both food", "pln": ["(: cnet_isa_ad3cf31a23 (IsA potatoe_and_chicken both_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potatoe and chicken is a kind of food", "pln": ["(: cnet_isa_4ac056a1c6 (IsA potatoe_and_chicken food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potawatomi is a kind of algonquian", "pln": ["(: cnet_isa_3dc7358d31 (IsA potawatomi algonquian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potawatomi is a kind of algonquin", "pln": ["(: cnet_isa_f9d204907b (IsA potawatomi algonquin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potbelly is a kind of stove", "pln": ["(: cnet_isa_f9ca40468c (IsA potbelly stove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potboiler is a kind of literary composition", "pln": ["(: cnet_isa_8cff25cd09 (IsA potboiler literary_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potboy is a kind of employee", "pln": ["(: cnet_isa_0179330bdd (IsA potboy employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poteen is a kind of irish", "pln": ["(: cnet_isa_aaf391976e (IsA poteen irish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potemkin village is a kind of fake", "pln": ["(: cnet_isa_7178e12577 (IsA potemkin_village fake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potency is a kind of power", "pln": ["(: cnet_isa_8dda7684a7 (IsA potency power) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potency is a kind of physiological state", "pln": ["(: cnet_isa_d0eae94084 (IsA potency physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potential is a kind of possibility", "pln": ["(: cnet_isa_f1e8ef0c87 (IsA potential possibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "potential divider is a kind of resistor", "pln": ["(: cnet_isa_2a0d9d84af (IsA potential_divider resistor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potential energy is a kind of mechanical energy", "pln": ["(: cnet_isa_c2c74352c1 (IsA potential_energy mechanical_energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potential unit is a kind of electromagnetic unit", "pln": ["(: cnet_isa_76d92fb722 (IsA potential_unit electromagnetic_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potentiation is a kind of synergy", "pln": ["(: cnet_isa_36d6007ff8 (IsA potentiation synergy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potentilla is a kind of rosid dicot genus", "pln": ["(: cnet_isa_066c375ebe (IsA potentilla rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "potentiometer is a kind of measuring instrument", "pln": ["(: cnet_isa_4f52dd2f82 (IsA potentiometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potentiometer is a kind of potential divider", "pln": ["(: cnet_isa_e323dc48a2 (IsA potentiometer potential_divider) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poterium is a kind of rosid dicot genus", "pln": ["(: cnet_isa_6c783f6d6e (IsA poterium rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pothead is a kind of head", "pln": ["(: cnet_isa_76a259d74a (IsA pothead head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potherb is a kind of vegetable", "pln": ["(: cnet_isa_8bb4e8357a (IsA potherb vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "potholder is a kind of pad", "pln": ["(: cnet_isa_a5867a5d07 (IsA potholder pad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pothole is a kind of hole", "pln": ["(: cnet_isa_e369adec77 (IsA pothole hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potholer is a kind of explorer", "pln": ["(: cnet_isa_0a6e193918 (IsA potholer explorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pothook is a kind of hook", "pln": ["(: cnet_isa_4918b82d40 (IsA pothook hook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potho is a kind of liana", "pln": ["(: cnet_isa_1077c48475 (IsA potho liana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pothunter is a kind of archeologist", "pln": ["(: cnet_isa_16e6d2834c (IsA pothunter archeologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pothunter is a kind of contestant", "pln": ["(: cnet_isa_ef2043067d (IsA pothunter contestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pothunter is a kind of hunter", "pln": ["(: cnet_isa_e8c4581a8b (IsA pothunter hunter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potion is a kind of beverage", "pln": ["(: cnet_isa_adf9e12738 (IsA potion beverage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potlatch is a kind of ceremony", "pln": ["(: cnet_isa_e5b445b5e7 (IsA potlatch ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potlatch is a kind of fete", "pln": ["(: cnet_isa_8420197ced (IsA potlatch fete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potluck is a kind of meal", "pln": ["(: cnet_isa_352d1b6c1e (IsA potluck meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potoroinae is a kind of mammal family", "pln": ["(: cnet_isa_0589fd9743 (IsA potoroinae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "potoroo is a kind of australian mammal", "pln": ["(: cnet_isa_c106370868 (IsA potoroo australian_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "potoroo is a kind of rat kangaroo", "pln": ["(: cnet_isa_6439cc01c7 (IsA potoroo rat_kangaroo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potorous is a kind of mammal genus", "pln": ["(: cnet_isa_91011e235b (IsA potorous mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poto is a kind of mammal genus", "pln": ["(: cnet_isa_53022f4759 (IsA poto mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potpie is a kind of dish", "pln": ["(: cnet_isa_1d8c435634 (IsA potpie dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potpourri is a kind of perfume", "pln": ["(: cnet_isa_493fed1b2c (IsA potpourri perfume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potsherd is a kind of shard", "pln": ["(: cnet_isa_502c67347e (IsA potsherd shard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potshot is a kind of shooting", "pln": ["(: cnet_isa_144c773dcf (IsA potshot shooting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "potshot is a kind of criticism", "pln": ["(: cnet_isa_4d2c3c8142 (IsA potshot criticism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pott s disease is a kind of tuberculosis", "pln": ["(: cnet_isa_9759b1941f (IsA pott_s_disease tuberculosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pottage is a kind of stew", "pln": ["(: cnet_isa_17f0778f15 (IsA pottage stew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potter s clay is a kind of clay", "pln": ["(: cnet_isa_453937a0de (IsA potter_s_clay clay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potter s field is a kind of cemetery", "pln": ["(: cnet_isa_02266e4a45 (IsA potter_s_field cemetery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potter s wheel is a kind of wheel", "pln": ["(: cnet_isa_8b14446039 (IsA potter_s_wheel wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "potter is a kind of craftsman", "pln": ["(: cnet_isa_1e555096ba (IsA potter craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potter bee is a kind of bee", "pln": ["(: cnet_isa_6fd39a7b8e (IsA potter_bee bee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potter wasp is a kind of vespid", "pln": ["(: cnet_isa_c70bf98268 (IsA potter_wasp vespid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pottery is a kind of common type of artifact", "pln": ["(: cnet_isa_e985160771 (IsA pottery common_type_of_artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pottery is a kind of very ancient technology", "pln": ["(: cnet_isa_741fd21dfc (IsA pottery very_ancient_technology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pottery is a kind of trade", "pln": ["(: cnet_isa_a7fb148158 (IsA pottery trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pottery is a kind of ceramic ware", "pln": ["(: cnet_isa_83a399581d (IsA pottery ceramic_ware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pottery is a kind of workshop", "pln": ["(: cnet_isa_db4e025f00 (IsA pottery workshop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pottle is a kind of pot", "pln": ["(: cnet_isa_0560439cd4 (IsA pottle pot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potto is a kind of lemur", "pln": ["(: cnet_isa_19479c762e (IsA potto lemur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "potty seat is a kind of toilet", "pln": ["(: cnet_isa_61b4f8c7fe (IsA potty_seat toilet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pouch is a kind of sac", "pln": ["(: cnet_isa_ccc8be99c3 (IsA pouch sac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pouch is a kind of bag", "pln": ["(: cnet_isa_1022b13651 (IsA pouch bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pouch is a kind of cavity", "pln": ["(: cnet_isa_8bdf642012 (IsA pouch cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pouched mole is a kind of marsupial", "pln": ["(: cnet_isa_4886c708a2 (IsA pouched_mole marsupial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pouched mouse is a kind of dasyurid marsupial", "pln": ["(: cnet_isa_cd3b67dad1 (IsA pouched_mouse dasyurid_marsupial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poulette is a kind of sauce", "pln": ["(: cnet_isa_1ce317e6e3 (IsA poulette sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "poultice is a kind of dressing", "pln": ["(: cnet_isa_db842d7cc5 (IsA poultice dressing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poultry is a kind of bird", "pln": ["(: cnet_isa_8dd92b5eac (IsA poultry bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poultryman is a kind of merchant", "pln": ["(: cnet_isa_b2411dd7eb (IsA poultryman merchant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pounce is a kind of leap", "pln": ["(: cnet_isa_f142302548 (IsA pounce leap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pound is a kind of unit of measure of weight", "pln": ["(: cnet_isa_42a0d26b12 (IsA pound unit_of_measure_of_weight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pound is a kind of enclosure", "pln": ["(: cnet_isa_09e929863e (IsA pound enclosure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pound is a kind of avoirdupois unit", "pln": ["(: cnet_isa_ff5bcbeebd (IsA pound avoirdupois_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pound is a kind of force unit", "pln": ["(: cnet_isa_567d7fa45d (IsA pound force_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pound cake is a kind of cake", "pln": ["(: cnet_isa_2ae8d4079a (IsA pound_cake cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pound cake is a kind of loaf", "pln": ["(: cnet_isa_f5d1a13f5d (IsA pound_cake loaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pound net is a kind of trap", "pln": ["(: cnet_isa_38aa70efe4 (IsA pound_net trap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pound sign is a kind of symbol", "pln": ["(: cnet_isa_ab6c3e7bbd (IsA pound_sign symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poundage is a kind of weight", "pln": ["(: cnet_isa_27136c3333 (IsA poundage weight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "poundage is a kind of charge", "pln": ["(: cnet_isa_5e044a023a (IsA poundage charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poundage is a kind of fee", "pln": ["(: cnet_isa_2d2fecc8db (IsA poundage fee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poundal is a kind of force unit", "pln": ["(: cnet_isa_56beafaf4a (IsA poundal force_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pounder is a kind of force unit", "pln": ["(: cnet_isa_1b5823ae7d (IsA pounder force_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pounding is a kind of bump", "pln": ["(: cnet_isa_4602babf75 (IsA pounding bump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pound per square inch is a kind of pressure unit", "pln": ["(: cnet_isa_044955c025 (IsA pound_per_square_inch pressure_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pouring milk into glass is a kind of activity before drinking", "pln": ["(: cnet_isa_8d4f64d721 (IsA pouring_milk_into_glass activity_before_drinking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pousse cafe is a kind of liqueur", "pln": ["(: cnet_isa_586aca85a7 (IsA pousse_cafe liqueur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pout is a kind of grimace", "pln": ["(: cnet_isa_28e6a00240 (IsA pout grimace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pouter pigeon is a kind of pigeon", "pln": ["(: cnet_isa_e7bce3be23 (IsA pouter_pigeon pigeon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pouteria is a kind of dicot genus", "pln": ["(: cnet_isa_15befffa28 (IsA pouteria dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poverty is a kind of financial condition", "pln": ["(: cnet_isa_75281b346b (IsA poverty financial_condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poverty line is a kind of personal income", "pln": ["(: cnet_isa_8985b34925 (IsA poverty_line personal_income) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "poverty trap is a kind of situation", "pln": ["(: cnet_isa_e5cbe5dfd9 (IsA poverty_trap situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "powder is a kind of medicine", "pln": ["(: cnet_isa_dea0d53ca2 (IsA powder medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "powder is a kind of toiletry", "pln": ["(: cnet_isa_2a8441148a (IsA powder toiletry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "powder is a kind of solid", "pln": ["(: cnet_isa_fc63aca481 (IsA powder solid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "powder and shot is a kind of ammunition", "pln": ["(: cnet_isa_b872430858 (IsA powder_and_shot ammunition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "powder blue is a kind of blue", "pln": ["(: cnet_isa_bb3f12b7c3 (IsA powder_blue blue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "powder horn is a kind of container", "pln": ["(: cnet_isa_240b6ed5a7 (IsA powder_horn container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "powder keg is a kind of keg", "pln": ["(: cnet_isa_527bb136f0 (IsA powder_keg keg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "powder keg is a kind of danger", "pln": ["(: cnet_isa_e761a942e0 (IsA powder_keg danger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "powder metallurgy is a kind of metallurgy", "pln": ["(: cnet_isa_9670a2c552 (IsA powder_metallurgy metallurgy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "powder monkey is a kind of assistant", "pln": ["(: cnet_isa_7734ddd6b8 (IsA powder_monkey assistant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "powder photography is a kind of photography", "pln": ["(: cnet_isa_2f3ceeda90 (IsA powder_photography photography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "powder post termite is a kind of dry wood termite", "pln": ["(: cnet_isa_5e2f1f871f (IsA powder_post_termite dry_wood_termite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "powdered milk is a kind of milk", "pln": ["(: cnet_isa_724743f14c (IsA powdered_milk milk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "powdered mustard is a kind of emetic", "pln": ["(: cnet_isa_94f456d893 (IsA powdered_mustard emetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "powdered mustard is a kind of mustard", "pln": ["(: cnet_isa_65402ac1d9 (IsA powdered_mustard mustard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "powdered sugar is a kind of granulated sugar", "pln": ["(: cnet_isa_9474323bf2 (IsA powdered_sugar granulated_sugar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "powderer is a kind of person", "pln": ["(: cnet_isa_8ff2f43620 (IsA powderer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "powderpuff is a kind of pad", "pln": ["(: cnet_isa_6681359078 (IsA powderpuff pad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "powdery mildew is a kind of mildew", "pln": ["(: cnet_isa_cd8029e562 (IsA powdery_mildew mildew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power is a kind of quality", "pln": ["(: cnet_isa_439fed84da (IsA power quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power is a kind of causal agent", "pln": ["(: cnet_isa_ff2d8e5929 (IsA power causal_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power is a kind of physical phenomenon", "pln": ["(: cnet_isa_c7aa143820 (IsA power physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power brake is a kind of brake", "pln": ["(: cnet_isa_c78122490a (IsA power_brake brake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power breakfast is a kind of breakfast", "pln": ["(: cnet_isa_93d2a6f0e9 (IsA power_breakfast breakfast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "power breakfast is a kind of meeting", "pln": ["(: cnet_isa_1ac8aa9598 (IsA power_breakfast meeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power broker is a kind of important person", "pln": ["(: cnet_isa_722dc235ba (IsA power_broker important_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power company is a kind of utility", "pln": ["(: cnet_isa_cd71640548 (IsA power_company utility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power cord is a kind of cord", "pln": ["(: cnet_isa_aee4ab6a23 (IsA power_cord cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power couple is a kind of couple", "pln": ["(: cnet_isa_ab2145a4a9 (IsA power_couple couple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power dive is a kind of dive", "pln": ["(: cnet_isa_520323fb36 (IsA power_dive dive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power drill is a kind of drill", "pln": ["(: cnet_isa_58413abb67 (IsA power_drill drill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power drill is a kind of power tool", "pln": ["(: cnet_isa_240f9397cc (IsA power_drill power_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power hunger is a kind of ambition", "pln": ["(: cnet_isa_b2c5f9166b (IsA power_hunger ambition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power line is a kind of cable", "pln": ["(: cnet_isa_2d9230ea39 (IsA power_line cable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power loading is a kind of loading", "pln": ["(: cnet_isa_f5dd64460c (IsA power_loading loading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power loom is a kind of loom", "pln": ["(: cnet_isa_9d1004717f (IsA power_loom loom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power module is a kind of module", "pln": ["(: cnet_isa_775bc9f50a (IsA power_module module) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power mower is a kind of lawn mower", "pln": ["(: cnet_isa_c3f260e0ee (IsA power_mower lawn_mower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power of appointment is a kind of authority", "pln": ["(: cnet_isa_a5f271142f (IsA power_of_appointment authority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power of attorney is a kind of legal document", "pln": ["(: cnet_isa_44c7ac90fa (IsA power_of_attorney legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power outage is a kind of breakdown", "pln": ["(: cnet_isa_1d75de0234 (IsA power_outage breakdown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power pack is a kind of electrical converter", "pln": ["(: cnet_isa_d4d3e31c95 (IsA power_pack electrical_converter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power play is a kind of attempt", "pln": ["(: cnet_isa_6406585389 (IsA power_play attempt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power play is a kind of football play", "pln": ["(: cnet_isa_15270701de (IsA power_play football_play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power play is a kind of play", "pln": ["(: cnet_isa_5e48b28935 (IsA power_play play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power politic is a kind of diplomacy", "pln": ["(: cnet_isa_4a4f6360a8 (IsA power_politic diplomacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power saw is a kind of power tool", "pln": ["(: cnet_isa_8959825b8b (IsA power_saw power_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power sery is a kind of sery", "pln": ["(: cnet_isa_1d4786656f (IsA power_sery sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power shovel is a kind of machine", "pln": ["(: cnet_isa_61569b2643 (IsA power_shovel machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power station is a kind of station", "pln": ["(: cnet_isa_4609732438 (IsA power_station station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power steering is a kind of steering system", "pln": ["(: cnet_isa_1c4e85e87a (IsA power_steering steering_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power takeoff is a kind of device", "pln": ["(: cnet_isa_f02005ad14 (IsA power_takeoff device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power tool is a kind of machine", "pln": ["(: cnet_isa_acd34a74ad (IsA power_tool machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power tool is a kind of tool", "pln": ["(: cnet_isa_5b35c4a343 (IsA power_tool tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power trip is a kind of control", "pln": ["(: cnet_isa_1a0e1dd004 (IsA power_trip control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power unit is a kind of electromagnetic unit", "pln": ["(: cnet_isa_121fbb9c2d (IsA power_unit electromagnetic_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "power user is a kind of computer user", "pln": ["(: cnet_isa_e03b3b5816 (IsA power_user computer_user) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "power walking is a kind of cardiopulmonary exercise", "pln": ["(: cnet_isa_11da37991d (IsA power_walking cardiopulmonary_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "power worker is a kind of skilled worker", "pln": ["(: cnet_isa_5394115ae1 (IsA power_worker skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "powerhouse is a kind of team", "pln": ["(: cnet_isa_6ad86ccc01 (IsA powerhouse team) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "powerhouse is a kind of actor", "pln": ["(: cnet_isa_9ff293a3ba (IsA powerhouse actor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "powerlessness is a kind of quality", "pln": ["(: cnet_isa_950c6a3c47 (IsA powerlessness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "powhatan is a kind of algonquian", "pln": ["(: cnet_isa_f8447d0b33 (IsA powhatan algonquian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "powhatan is a kind of algonquin", "pln": ["(: cnet_isa_9b244df93d (IsA powhatan algonquin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "powwow is a kind of council", "pln": ["(: cnet_isa_f5be29a138 (IsA powwow council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pox is a kind of contagious disease", "pln": ["(: cnet_isa_067912e78d (IsA pox contagious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "poxvirus is a kind of animal virus", "pln": ["(: cnet_isa_8f9c20d27d (IsA poxvirus animal_virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pra and hd is a kind of genetic diseas in dog", "pln": ["(: cnet_isa_a38c3944a8 (IsA pra_and_hd genetic_diseas_in_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pra and hd is a kind of genetic diseas of dog", "pln": ["(: cnet_isa_a9912a821a (IsA pra_and_hd genetic_diseas_of_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "practicability is a kind of utility", "pln": ["(: cnet_isa_d5fbe9ba44 (IsA practicability utility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "practical joke is a kind of antic", "pln": ["(: cnet_isa_bd852af98b (IsA practical_joke antic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "practicality is a kind of utility", "pln": ["(: cnet_isa_78c4bd092b (IsA practicality utility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "practice is a kind of activity", "pln": ["(: cnet_isa_861bd40730 (IsA practice activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "practice is a kind of implementation", "pln": ["(: cnet_isa_f52bf50f47 (IsA practice implementation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "practice is a kind of use", "pln": ["(: cnet_isa_9b95354836 (IsA practice use) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "practice is a kind of cognition", "pln": ["(: cnet_isa_99db752481 (IsA practice cognition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "practice range is a kind of range", "pln": ["(: cnet_isa_b9fe959bad (IsA practice_range range) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "practicing against other people is a kind of good way to learn chess", "pln": ["(: cnet_isa_b3f89d590c (IsA practicing_against_other_people good_way_to_learn_chess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "practitioner is a kind of professional", "pln": ["(: cnet_isa_09c6835b41 (IsA practitioner professional) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "praenomen is a kind of first name", "pln": ["(: cnet_isa_da020a506c (IsA praenomen first_name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "praetor is a kind of judge", "pln": ["(: cnet_isa_f978a0b770 (IsA praetor judge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "praetorian is a kind of bodyguard", "pln": ["(: cnet_isa_e9c49f9596 (IsA praetorian bodyguard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "praetorian guard is a kind of guard", "pln": ["(: cnet_isa_3bb33c8736 (IsA praetorian_guard guard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "praetorium is a kind of tent", "pln": ["(: cnet_isa_aba300b585 (IsA praetorium tent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "praetorship is a kind of position", "pln": ["(: cnet_isa_d8eec21085 (IsA praetorship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pragmatic sanction is a kind of imperial decree", "pln": ["(: cnet_isa_a5826e61ce (IsA pragmatic_sanction imperial_decree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pragmatic is a kind of linguistic", "pln": ["(: cnet_isa_b4f08924e8 (IsA pragmatic linguistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pragmatism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_f1d8f32aaa (IsA pragmatism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pragmatist is a kind of realist", "pln": ["(: cnet_isa_9a6ef517fb (IsA pragmatist realist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prairia sabbatia is a kind of sabbatia", "pln": ["(: cnet_isa_2a40cbbb81 (IsA prairia_sabbatia sabbatia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prairial is a kind of revolutionary calendar month", "pln": ["(: cnet_isa_1882eff90a (IsA prairial revolutionary_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prairie is a kind of grassland", "pln": ["(: cnet_isa_888a7f15d2 (IsA prairie grassland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prairie aster is a kind of aster", "pln": ["(: cnet_isa_2e2b460276 (IsA prairie_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prairie bird s foot trefoil is a kind of subshrub", "pln": ["(: cnet_isa_2313445663 (IsA prairie_bird_s_foot_trefoil subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prairie chicken is a kind of grouse", "pln": ["(: cnet_isa_47fd43f7af (IsA prairie_chicken grouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prairie coneflower is a kind of coneflower", "pln": ["(: cnet_isa_6fdaad3684 (IsA prairie_coneflower coneflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prairie cordgrass is a kind of cordgrass", "pln": ["(: cnet_isa_6289c1403c (IsA prairie_cordgrass cordgrass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prairie dog is a kind of rodent", "pln": ["(: cnet_isa_b58e6532a5 (IsA prairie_dog rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prairie gentian is a kind of wildflower", "pln": ["(: cnet_isa_2fcff8b46c (IsA prairie_gentian wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prairie gourd is a kind of fruit", "pln": ["(: cnet_isa_43f666928b (IsA prairie_gourd fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prairie gourd is a kind of gourd", "pln": ["(: cnet_isa_e63c60a605 (IsA prairie_gourd gourd) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prairie mallow is a kind of globe mallow", "pln": ["(: cnet_isa_30bd3cee6b (IsA prairie_mallow globe_mallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prairie mimosa is a kind of herb", "pln": ["(: cnet_isa_0d9599dddb (IsA prairie_mimosa herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prairie orchid is a kind of fringed orchis", "pln": ["(: cnet_isa_f16f8d844d (IsA prairie_orchid fringed_orchis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prairie rattlesnake is a kind of rattlesnake", "pln": ["(: cnet_isa_8686e5415d (IsA prairie_rattlesnake rattlesnake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prairie rocket is a kind of flower", "pln": ["(: cnet_isa_40d9138fc6 (IsA prairie_rocket flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prairie smoke is a kind of aven", "pln": ["(: cnet_isa_3b8b2f6532 (IsA prairie_smoke aven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prairie soil is a kind of soil", "pln": ["(: cnet_isa_dfd55c8fbc (IsA prairie_soil soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prairie star is a kind of wildflower", "pln": ["(: cnet_isa_d2961419a8 (IsA prairie_star wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prairie sunflower is a kind of sunflower", "pln": ["(: cnet_isa_05cb182fe0 (IsA prairie_sunflower sunflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prairie vole is a kind of vole", "pln": ["(: cnet_isa_bc15ffa443 (IsA prairie_vole vole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prairie wake robin is a kind of trillium", "pln": ["(: cnet_isa_562edb4e29 (IsA prairie_wake_robin trillium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prairie white fringed orchid is a kind of orchid", "pln": ["(: cnet_isa_e885cb253e (IsA prairie_white_fringed_orchid orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prairie willow is a kind of willow", "pln": ["(: cnet_isa_223497f054 (IsA prairie_willow willow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "praise is a kind of approval", "pln": ["(: cnet_isa_2f48ac99f9 (IsA praise approval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "praise is a kind of worship", "pln": ["(: cnet_isa_54590e233b (IsA praise worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "praiseworthiness is a kind of worthiness", "pln": ["(: cnet_isa_37f01304b6 (IsA praiseworthiness worthiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "praising is a kind of form of positive reinforcement", "pln": ["(: cnet_isa_c975cf7f0e (IsA praising form_of_positive_reinforcement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "praisworthiness is a kind of worth", "pln": ["(: cnet_isa_7511f792cb (IsA praisworthiness worth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prakrit is a kind of indic", "pln": ["(: cnet_isa_0b4fc1642e (IsA prakrit indic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "praline is a kind of candy", "pln": ["(: cnet_isa_b6d4b0edd3 (IsA praline candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prancer is a kind of saddle horse", "pln": ["(: cnet_isa_fa2a3cb9f7 (IsA prancer saddle_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prang is a kind of crash", "pln": ["(: cnet_isa_aa09a01cc1 (IsA prang crash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "prankishness is a kind of naughtiness", "pln": ["(: cnet_isa_690fd3d2f0 (IsA prankishness naughtiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prankster is a kind of troublemaker", "pln": ["(: cnet_isa_ec53066f77 (IsA prankster troublemaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "praseodymium is a kind of metallic element", "pln": ["(: cnet_isa_ed4a20ba34 (IsA praseodymium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prate is a kind of yak", "pln": ["(: cnet_isa_d688a1eac2 (IsA prate yak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pratfall is a kind of spill", "pln": ["(: cnet_isa_b33a4d921e (IsA pratfall spill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pratincole is a kind of shorebird", "pln": ["(: cnet_isa_f319034c75 (IsA pratincole shorebird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prattler is a kind of speaker", "pln": ["(: cnet_isa_f508d41d32 (IsA prattler speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "praunus is a kind of arthropod genus", "pln": ["(: cnet_isa_cf5f598491 (IsA praunus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prawn is a kind of decapod crustacean", "pln": ["(: cnet_isa_a52bca172a (IsA prawn decapod_crustacean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prawn is a kind of seafood", "pln": ["(: cnet_isa_8cfe7bb7a2 (IsA prawn seafood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "praya is a kind of siphonophore", "pln": ["(: cnet_isa_42e52e3d7e (IsA praya siphonophore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prayer is a kind of worship", "pln": ["(: cnet_isa_5208ff393e (IsA prayer worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prayer is a kind of request", "pln": ["(: cnet_isa_0e82010916 (IsA prayer request) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prayer is a kind of sacred text", "pln": ["(: cnet_isa_bba55f891f (IsA prayer sacred_text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prayer is a kind of religionist", "pln": ["(: cnet_isa_73baabc156 (IsA prayer religionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prayer book is a kind of book", "pln": ["(: cnet_isa_34f15a5a6d (IsA prayer_book book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prayer meeting is a kind of service", "pln": ["(: cnet_isa_c7a8f049e1 (IsA prayer_meeting service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prayer rug is a kind of rug", "pln": ["(: cnet_isa_ba40a3a8fb (IsA prayer_rug rug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "prayer shawl is a kind of shawl", "pln": ["(: cnet_isa_3e4f268d62 (IsA prayer_shawl shawl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prayer wheel is a kind of prayer", "pln": ["(: cnet_isa_75abcc0bf1 (IsA prayer_wheel prayer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "praying mantis is a kind of mantis", "pln": ["(: cnet_isa_be90848ddd (IsA praying_mantis mantis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pre emptive strike is a kind of surprise attack", "pln": ["(: cnet_isa_c5aa6b39a7 (IsA pre_emptive_strike surprise_attack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pre raphaelite is a kind of artist", "pln": ["(: cnet_isa_d15f27c8ef (IsA pre_raphaelite artist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pre socratic is a kind of philosopher", "pln": ["(: cnet_isa_5486178974 (IsA pre_socratic philosopher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preacher is a kind of clergyman", "pln": ["(: cnet_isa_b5c0632680 (IsA preacher clergyman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preachification is a kind of moralizing", "pln": ["(: cnet_isa_7313120b77 (IsA preachification moralizing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preakness is a kind of thoroughbred race", "pln": ["(: cnet_isa_74dfa5a59b (IsA preakness thoroughbred_race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preamble is a kind of introduction", "pln": ["(: cnet_isa_0a4af7a6ea (IsA preamble introduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prearrangement is a kind of agreement", "pln": ["(: cnet_isa_50c9bddcf6 (IsA prearrangement agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prebend is a kind of stipend", "pln": ["(: cnet_isa_9b265b51e2 (IsA prebend stipend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prebendary is a kind of canon", "pln": ["(: cnet_isa_126a975096 (IsA prebendary canon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "precariousness is a kind of dangerousness", "pln": ["(: cnet_isa_f10aa80817 (IsA precariousness dangerousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "precaution is a kind of measure", "pln": ["(: cnet_isa_79a213c6bf (IsA precaution measure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "precaution is a kind of circumspection", "pln": ["(: cnet_isa_e531553bbf (IsA precaution circumspection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "precedence is a kind of high status", "pln": ["(: cnet_isa_af1c23f33a (IsA precedence high_status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "precedent is a kind of example", "pln": ["(: cnet_isa_f8ae7f6297 (IsA precedent example) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "precedent is a kind of subject", "pln": ["(: cnet_isa_37eda5fbd3 (IsA precedent subject) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "precentorship is a kind of position", "pln": ["(: cnet_isa_f77388ded8 (IsA precentorship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "precentral gyrus is a kind of central gyrus", "pln": ["(: cnet_isa_98f0a60bc2 (IsA precentral_gyrus central_gyrus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preceptor is a kind of teacher", "pln": ["(: cnet_isa_2079a1f67b (IsA preceptor teacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preceptorship is a kind of position", "pln": ["(: cnet_isa_3fa965f866 (IsA preceptorship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "precession is a kind of activity", "pln": ["(: cnet_isa_404e964790 (IsA precession activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "precession is a kind of motion", "pln": ["(: cnet_isa_f26d917273 (IsA precession motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "precession of equinoxe is a kind of natural process", "pln": ["(: cnet_isa_d71f8d8a45 (IsA precession_of_equinoxe natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "prechlorination is a kind of chlorination", "pln": ["(: cnet_isa_53bfe6d89f (IsA prechlorination chlorination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "precinct is a kind of city district", "pln": ["(: cnet_isa_73bc91c434 (IsA precinct city_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "preciosity is a kind of affectedness", "pln": ["(: cnet_isa_e8a1705775 (IsA preciosity affectedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "precious metal is a kind of valuable", "pln": ["(: cnet_isa_8fd2376964 (IsA precious_metal valuable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "precipice is a kind of cliff", "pln": ["(: cnet_isa_cceabf9296 (IsA precipice cliff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "precipitant is a kind of agent", "pln": ["(: cnet_isa_212aa1e4f5 (IsA precipitant agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "precipitate is a kind of solid", "pln": ["(: cnet_isa_58c7ae9549 (IsA precipitate solid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "precipitation is a kind of acceleration", "pln": ["(: cnet_isa_5b282b40ee (IsA precipitation acceleration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "precipitation is a kind of drop", "pln": ["(: cnet_isa_19af835e5b (IsA precipitation drop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "precipitation is a kind of weather", "pln": ["(: cnet_isa_f9b0dc4f48 (IsA precipitation weather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "precipitation is a kind of chemical process", "pln": ["(: cnet_isa_5886d74d77 (IsA precipitation chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "precipitation is a kind of indefinite quantity", "pln": ["(: cnet_isa_f44560835c (IsA precipitation indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "precipitator is a kind of electrical device", "pln": ["(: cnet_isa_33a75e989b (IsA precipitator electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "precipitin is a kind of antibody", "pln": ["(: cnet_isa_d57b132359 (IsA precipitin antibody) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preciseness is a kind of clarity", "pln": ["(: cnet_isa_329de1bd0c (IsA preciseness clarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preciseness is a kind of exactness", "pln": ["(: cnet_isa_a79fb0e7cc (IsA preciseness exactness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "precision cookie is a kind of cookie", "pln": ["(: cnet_isa_79e566ecdd (IsA precision_cookie cookie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preclinical trial is a kind of test", "pln": ["(: cnet_isa_accf6408d4 (IsA preclinical_trial test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "precocious dentition is a kind of teething", "pln": ["(: cnet_isa_960c73b416 (IsA precocious_dentition teething) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "precociousness is a kind of intelligence", "pln": ["(: cnet_isa_d0a4479a97 (IsA precociousness intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "precognition is a kind of clairvoyance", "pln": ["(: cnet_isa_641c9f692d (IsA precognition clairvoyance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preconception is a kind of opinion", "pln": ["(: cnet_isa_59b20b8e7b (IsA preconception opinion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "precondition is a kind of prerequisite", "pln": ["(: cnet_isa_ba18b51075 (IsA precondition prerequisite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "precordium is a kind of external organ", "pln": ["(: cnet_isa_8b23aacd6d (IsA precordium external_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "precursor is a kind of material", "pln": ["(: cnet_isa_b19a17d541 (IsA precursor material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "precursor is a kind of person", "pln": ["(: cnet_isa_8e09a8bfd5 (IsA precursor person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "predation is a kind of hunt", "pln": ["(: cnet_isa_5ef1026037 (IsA predation hunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "predator is a kind of animal", "pln": ["(: cnet_isa_bd85603c8b (IsA predator animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "predecessor is a kind of precursor", "pln": ["(: cnet_isa_3b7f754a13 (IsA predecessor precursor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "predestinarianism is a kind of protestantism", "pln": ["(: cnet_isa_399630cfb3 (IsA predestinarianism protestantism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "predestination is a kind of destiny", "pln": ["(: cnet_isa_03bde1cef2 (IsA predestination destiny) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "predestination is a kind of theological doctrine", "pln": ["(: cnet_isa_f25ff9cbf3 (IsA predestination theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "predetermination is a kind of determination", "pln": ["(: cnet_isa_92a9ca57e6 (IsA predetermination determination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "predetermination is a kind of decision", "pln": ["(: cnet_isa_bb5f135942 (IsA predetermination decision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "predicament is a kind of difficulty", "pln": ["(: cnet_isa_4c58c27dc8 (IsA predicament difficulty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "predicate is a kind of phrase", "pln": ["(: cnet_isa_ee775b7f4c (IsA predicate phrase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "predicate is a kind of term", "pln": ["(: cnet_isa_73df5778ac (IsA predicate term) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "predicate calculus is a kind of symbolic logic", "pln": ["(: cnet_isa_37f7b3de57 (IsA predicate_calculus symbolic_logic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "predicator is a kind of construction", "pln": ["(: cnet_isa_1f6524695b (IsA predicator construction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "predictability is a kind of certainty", "pln": ["(: cnet_isa_d22c0dbee1 (IsA predictability certainty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prediction is a kind of reasoning", "pln": ["(: cnet_isa_9e95683182 (IsA prediction reasoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prediction is a kind of statement", "pln": ["(: cnet_isa_e9eee16bcf (IsA prediction statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "predictor is a kind of computer", "pln": ["(: cnet_isa_411504606b (IsA predictor computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "predictor is a kind of information", "pln": ["(: cnet_isa_45cada29a9 (IsA predictor information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "predictor variable is a kind of variable", "pln": ["(: cnet_isa_a79aae96dd (IsA predictor_variable variable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "predilection is a kind of predisposition", "pln": ["(: cnet_isa_878c821fba (IsA predilection predisposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "predisposition is a kind of disposition", "pln": ["(: cnet_isa_266d61620b (IsA predisposition disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "predisposition is a kind of inclination", "pln": ["(: cnet_isa_dfaec79495 (IsA predisposition inclination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "predominance is a kind of dominance", "pln": ["(: cnet_isa_2970914868 (IsA predominance dominance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "predomination is a kind of obviousness", "pln": ["(: cnet_isa_81163ab39e (IsA predomination obviousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preeclampsia is a kind of toxemia of pregnancy", "pln": ["(: cnet_isa_aa785c12fe (IsA preeclampsia toxemia_of_pregnancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preemployment training program is a kind of training program", "pln": ["(: cnet_isa_421b76996a (IsA preemployment_training_program training_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preemption is a kind of appropriation", "pln": ["(: cnet_isa_94f98919fb (IsA preemption appropriation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preemption is a kind of legal right", "pln": ["(: cnet_isa_8cd9422795 (IsA preemption legal_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preemption is a kind of right", "pln": ["(: cnet_isa_3ebb4408bf (IsA preemption right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preemption is a kind of legal principle", "pln": ["(: cnet_isa_c1b7a167f0 (IsA preemption legal_principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preemptive bid is a kind of bid", "pln": ["(: cnet_isa_68908dc4a7 (IsA preemptive_bid bid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preemptive right is a kind of preemption", "pln": ["(: cnet_isa_7f73fe17da (IsA preemptive_right preemption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preemptor is a kind of appropriator", "pln": ["(: cnet_isa_9b07d9bbf0 (IsA preemptor appropriator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preemptor is a kind of bidder", "pln": ["(: cnet_isa_b52e8d3f18 (IsA preemptor bidder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preexistence is a kind of being", "pln": ["(: cnet_isa_72807b202d (IsA preexistence being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prefab is a kind of structure", "pln": ["(: cnet_isa_f8a4e8e659 (IsA prefab structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prefabrication is a kind of fabrication", "pln": ["(: cnet_isa_0588a6b62b (IsA prefabrication fabrication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prefect is a kind of administrator", "pln": ["(: cnet_isa_027a70929b (IsA prefect administrator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prefecture is a kind of position", "pln": ["(: cnet_isa_2c9db52ea8 (IsA prefecture position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prefecture is a kind of administrative district", "pln": ["(: cnet_isa_9d96b3e210 (IsA prefecture administrative_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "preference is a kind of advantage", "pln": ["(: cnet_isa_e364f41db3 (IsA preference advantage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preference is a kind of option", "pln": ["(: cnet_isa_89732312aa (IsA preference option) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preference is a kind of liking", "pln": ["(: cnet_isa_631485baf1 (IsA preference liking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preferment is a kind of promotion", "pln": ["(: cnet_isa_8ae34dd51f (IsA preferment promotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "preferment is a kind of accusation", "pln": ["(: cnet_isa_2285e4f5ae (IsA preferment accusation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preferred stock is a kind of stock", "pln": ["(: cnet_isa_8b9982746f (IsA preferred_stock stock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "prefiguration is a kind of model", "pln": ["(: cnet_isa_6274bc27c2 (IsA prefiguration model) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prefiguration is a kind of prediction", "pln": ["(: cnet_isa_998ddcef21 (IsA prefiguration prediction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prefix is a kind of affix", "pln": ["(: cnet_isa_c914014e5e (IsA prefix affix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prefix notation is a kind of parenthesis free notation", "pln": ["(: cnet_isa_e44abf19dd (IsA prefix_notation parenthesis_free_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prefixation is a kind of affixation", "pln": ["(: cnet_isa_8775f99494 (IsA prefixation affixation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preformation is a kind of theory", "pln": ["(: cnet_isa_4d4d264fe5 (IsA preformation theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prefrontal lobe is a kind of lobe", "pln": ["(: cnet_isa_88ae20ff76 (IsA prefrontal_lobe lobe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pregnancy is a kind of physiological state", "pln": ["(: cnet_isa_fca87e21e0 (IsA pregnancy physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pregnancy test is a kind of bioassay", "pln": ["(: cnet_isa_e0508b48c1 (IsA pregnancy_test bioassay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pregnanediol is a kind of compound", "pln": ["(: cnet_isa_c2a1693d0c (IsA pregnanediol compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prehensor is a kind of leg", "pln": ["(: cnet_isa_86b1f704ea (IsA prehensor leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prehistory is a kind of time period", "pln": ["(: cnet_isa_dc86108ad7 (IsA prehistory time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prejudgment is a kind of judgment", "pln": ["(: cnet_isa_fa84825174 (IsA prejudgment judgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prelacy is a kind of position", "pln": ["(: cnet_isa_0b7b953afe (IsA prelacy position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prelacy is a kind of clergy", "pln": ["(: cnet_isa_7357e4299c (IsA prelacy clergy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preliminary is a kind of athletic contest", "pln": ["(: cnet_isa_6877878864 (IsA preliminary athletic_contest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preliminary is a kind of origin", "pln": ["(: cnet_isa_af0cb11e24 (IsA preliminary origin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preliminary examination is a kind of examination", "pln": ["(: cnet_isa_7934554ee2 (IsA preliminary_examination examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preliminary prospectus is a kind of course catalog", "pln": ["(: cnet_isa_9e58efc017 (IsA preliminary_prospectus course_catalog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prelude is a kind of music", "pln": ["(: cnet_isa_d42d296226 (IsA prelude music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "premature baby is a kind of neonate", "pln": ["(: cnet_isa_23893b4f8f (IsA premature_baby neonate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "premature ejaculation is a kind of ejaculation", "pln": ["(: cnet_isa_0c7b72c6ea (IsA premature_ejaculation ejaculation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "premature labor is a kind of parturiency", "pln": ["(: cnet_isa_cffba4929b (IsA premature_labor parturiency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "premature ventricular contraction is a kind of cardiac arrhythmia", "pln": ["(: cnet_isa_b417b5c533 (IsA premature_ventricular_contraction cardiac_arrhythmia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prematureness is a kind of immaturity", "pln": ["(: cnet_isa_9148ea5a4e (IsA prematureness immaturity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "premeditation is a kind of planning", "pln": ["(: cnet_isa_2d3d5a546e (IsA premeditation planning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "premeditation is a kind of men rea", "pln": ["(: cnet_isa_faa0553f86 (IsA premeditation men_rea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "premenstrual syndrome is a kind of syndrome", "pln": ["(: cnet_isa_9b2f6f0e42 (IsA premenstrual_syndrome syndrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "premiere is a kind of performance", "pln": ["(: cnet_isa_316353419a (IsA premiere performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "premiership is a kind of position", "pln": ["(: cnet_isa_50fb220358 (IsA premiership position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "premise is a kind of postulate", "pln": ["(: cnet_isa_fb7d373da7 (IsA premise postulate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "premis is a kind of site", "pln": ["(: cnet_isa_3012ff7387 (IsA premis site) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "premium is a kind of bonus", "pln": ["(: cnet_isa_1c3d33292f (IsA premium bonus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "premium is a kind of payment", "pln": ["(: cnet_isa_c9c8435436 (IsA premium payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "premium is a kind of prize", "pln": ["(: cnet_isa_d3a6077c63 (IsA premium prize) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "premium is a kind of value", "pln": ["(: cnet_isa_8a116880cd (IsA premium value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "premium bond is a kind of bond", "pln": ["(: cnet_isa_4d7b7cede3 (IsA premium_bond bond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "premolar is a kind of tooth", "pln": ["(: cnet_isa_adb82f5b58 (IsA premolar tooth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prenanthe is a kind of asterid dicot genus", "pln": ["(: cnet_isa_3073535ddf (IsA prenanthe asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prenatal diagnosis is a kind of diagnostic procedure", "pln": ["(: cnet_isa_c320fdaeea (IsA prenatal_diagnosis diagnostic_procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preoccupancy is a kind of occupation", "pln": ["(: cnet_isa_3680a7a334 (IsA preoccupancy occupation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preoccupation is a kind of cognitive state", "pln": ["(: cnet_isa_008920f382 (IsA preoccupation cognitive_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preoccupation is a kind of idea", "pln": ["(: cnet_isa_dd5fe4569c (IsA preoccupation idea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preparation is a kind of activity", "pln": ["(: cnet_isa_330a0387e6 (IsA preparation activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preparation is a kind of harmony", "pln": ["(: cnet_isa_3d8d93fed1 (IsA preparation harmony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preparation fire is a kind of fire", "pln": ["(: cnet_isa_bcdb62e9d9 (IsA preparation_fire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preparatory school is a kind of secondary school", "pln": ["(: cnet_isa_31deb8e107 (IsA preparatory_school secondary_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prepayment is a kind of payment", "pln": ["(: cnet_isa_514761876d (IsA prepayment payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preponderance is a kind of heaviness", "pln": ["(: cnet_isa_67b677b042 (IsA preponderance heaviness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preponderance is a kind of number", "pln": ["(: cnet_isa_1e4a5c5d11 (IsA preponderance number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preponderance is a kind of power", "pln": ["(: cnet_isa_332db91195 (IsA preponderance power) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preposition is a kind of function word", "pln": ["(: cnet_isa_78f39133ae (IsA preposition function_word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preposition is a kind of place", "pln": ["(: cnet_isa_9faf20b70e (IsA preposition place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "prepositional object is a kind of object", "pln": ["(: cnet_isa_7cf337350e (IsA prepositional_object object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prepositional phrase is a kind of phrase", "pln": ["(: cnet_isa_ac75de6ee2 (IsA prepositional_phrase phrase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prepossession is a kind of condition", "pln": ["(: cnet_isa_ea6ac8a672 (IsA prepossession condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prepuberty is a kind of time of life", "pln": ["(: cnet_isa_f4450781b2 (IsA prepuberty time_of_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prepuce is a kind of skin", "pln": ["(: cnet_isa_04e6cb5f15 (IsA prepuce skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prepyloric vein is a kind of vein", "pln": ["(: cnet_isa_e1a9b3bbd9 (IsA prepyloric_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prerequisite is a kind of duty", "pln": ["(: cnet_isa_79a8e90e35 (IsA prerequisite duty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prerogative is a kind of right", "pln": ["(: cnet_isa_413465387b (IsA prerogative right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presage is a kind of foreboding", "pln": ["(: cnet_isa_cc625e4dd6 (IsA presage foreboding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presbyope is a kind of visually impaired person", "pln": ["(: cnet_isa_483eda9f3c (IsA presbyope visually_impaired_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presbyopia is a kind of hyperopia", "pln": ["(: cnet_isa_59006c664f (IsA presbyopia hyperopia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "presbyter is a kind of elder", "pln": ["(: cnet_isa_59436b8adf (IsA presbyter elder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presbyterian is a kind of protestant", "pln": ["(: cnet_isa_82384b84ae (IsA presbyterian protestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presbyterian church is a kind of protestant denomination", "pln": ["(: cnet_isa_f8d7779d99 (IsA presbyterian_church protestant_denomination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presbyterianism is a kind of protestantism", "pln": ["(: cnet_isa_8b90a961ee (IsA presbyterianism protestantism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presbytery is a kind of building", "pln": ["(: cnet_isa_a9d0835f43 (IsA presbytery building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presbyte is a kind of mammal genus", "pln": ["(: cnet_isa_06d86e2b3c (IsA presbyte mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preschool is a kind of educational institution", "pln": ["(: cnet_isa_078f287cdf (IsA preschool educational_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preschooler is a kind of child", "pln": ["(: cnet_isa_ca514b063c (IsA preschooler child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prescience is a kind of capacity", "pln": ["(: cnet_isa_6691e19e45 (IsA prescience capacity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prescription is a kind of direction", "pln": ["(: cnet_isa_35fe520e1d (IsA prescription direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prescription is a kind of written communication", "pln": ["(: cnet_isa_397d943161 (IsA prescription written_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prescription drug is a kind of medicine", "pln": ["(: cnet_isa_989f53e890 (IsA prescription_drug medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prescriptive grammar is a kind of grammar", "pln": ["(: cnet_isa_084973a753 (IsA prescriptive_grammar grammar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prescriptive linguistic is a kind of linguistic", "pln": ["(: cnet_isa_85f7f2f48f (IsA prescriptive_linguistic linguistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prescriptivism is a kind of doctrine", "pln": ["(: cnet_isa_163ca45fbc (IsA prescriptivism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preseason is a kind of season", "pln": ["(: cnet_isa_20543d34a9 (IsA preseason season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presence is a kind of attendance", "pln": ["(: cnet_isa_c852b60bc5 (IsA presence attendance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presence is a kind of impression", "pln": ["(: cnet_isa_c073e563f6 (IsA presence impression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presence is a kind of proximity", "pln": ["(: cnet_isa_e2e891ea0d (IsA presence proximity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presence is a kind of spirit", "pln": ["(: cnet_isa_4e5d764834 (IsA presence spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presence is a kind of being", "pln": ["(: cnet_isa_14677790f1 (IsA presence being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presence chamber is a kind of room", "pln": ["(: cnet_isa_f3b36d0a9b (IsA presence_chamber room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presence of mind is a kind of self control", "pln": ["(: cnet_isa_7faa140d4f (IsA presence_of_mind self_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presenile dementia is a kind of dementia", "pln": ["(: cnet_isa_a1afb2108b (IsA presenile_dementia dementia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "present is a kind of gift", "pln": ["(: cnet_isa_c813378d85 (IsA present gift) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "present is a kind of tense", "pln": ["(: cnet_isa_fa2247a964 (IsA present tense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "present is a kind of time", "pln": ["(: cnet_isa_fd81071df8 (IsA present time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "present participle is a kind of participle", "pln": ["(: cnet_isa_26d286caf5 (IsA present_participle participle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "present perfect is a kind of perfective", "pln": ["(: cnet_isa_7d94525c83 (IsA present_perfect perfective) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "present progressive is a kind of progressive", "pln": ["(: cnet_isa_452968c42f (IsA present_progressive progressive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presentation is a kind of ceremony", "pln": ["(: cnet_isa_4f06a61615 (IsA presentation ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presentation is a kind of show", "pln": ["(: cnet_isa_53e7e93cea (IsA presentation show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presentation is a kind of display", "pln": ["(: cnet_isa_45ffe6c61b (IsA presentation display) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presentation is a kind of informing", "pln": ["(: cnet_isa_ca094a822f (IsA presentation informing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "presentation is a kind of proposal", "pln": ["(: cnet_isa_27387bc11e (IsA presentation proposal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presentation is a kind of position", "pln": ["(: cnet_isa_6f84801ed8 (IsA presentation position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presenter is a kind of advocate", "pln": ["(: cnet_isa_d1dbe586c8 (IsA presenter advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presenter is a kind of communicator", "pln": ["(: cnet_isa_b2b1699dfb (IsA presenter communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presentism is a kind of doctrine", "pln": ["(: cnet_isa_d4dce4edeb (IsA presentism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presentist is a kind of theologian", "pln": ["(: cnet_isa_65cdd9305d (IsA presentist theologian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presentment is a kind of charge", "pln": ["(: cnet_isa_257110e605 (IsA presentment charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presentment is a kind of due process", "pln": ["(: cnet_isa_46bb8c0dca (IsA presentment due_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "presentness is a kind of timing", "pln": ["(: cnet_isa_b1f1bde4c4 (IsA presentness timing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "preservation is a kind of protection", "pln": ["(: cnet_isa_c037be5859 (IsA preservation protection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preservation is a kind of organic process", "pln": ["(: cnet_isa_8c730ea1e3 (IsA preservation organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preservation is a kind of condition", "pln": ["(: cnet_isa_08d76b6e61 (IsA preservation condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preservationist is a kind of reformer", "pln": ["(: cnet_isa_bf7d73d9cc (IsA preservationist reformer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preservative is a kind of compound", "pln": ["(: cnet_isa_de689bb8d7 (IsA preservative compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preserve is a kind of reservation", "pln": ["(: cnet_isa_657c81991a (IsA preserve reservation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preserve is a kind of sphere", "pln": ["(: cnet_isa_14c0b16e84 (IsA preserve sphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preserver is a kind of cook", "pln": ["(: cnet_isa_007aa29028 (IsA preserver cook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preserver is a kind of person", "pln": ["(: cnet_isa_bda4ad0a8d (IsA preserver person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presidency is a kind of position", "pln": ["(: cnet_isa_3f07811516 (IsA presidency position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presidency is a kind of tenure", "pln": ["(: cnet_isa_e88b22e0d3 (IsA presidency tenure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "president is a kind of leader", "pln": ["(: cnet_isa_f949f1be65 (IsA president leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "president is a kind of politician", "pln": ["(: cnet_isa_b23963f66f (IsA president politician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "president is a kind of academic administrator", "pln": ["(: cnet_isa_f16aa241f0 (IsA president academic_administrator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "president is a kind of corporate executive", "pln": ["(: cnet_isa_20c402ba06 (IsA president corporate_executive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "president is a kind of head of state", "pln": ["(: cnet_isa_3bdd14ddc7 (IsA president head_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "president is a kind of presiding officer", "pln": ["(: cnet_isa_4c3f732b63 (IsA president presiding_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "president clinton is a kind of democrat", "pln": ["(: cnet_isa_3ca1578df1 (IsA president_clinton democrat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "president of is a kind of leader", "pln": ["(: cnet_isa_961865544c (IsA president_of leader) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "president of united state is a kind of presidency", "pln": ["(: cnet_isa_f6d9cbeb38 (IsA president_of_united_state presidency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presidential is a kind of gubernatorial", "pln": ["(: cnet_isa_be64f78d0a (IsA presidential gubernatorial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presidential directive is a kind of directive", "pln": ["(: cnet_isa_3c4a337916 (IsA presidential_directive directive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "president day is a kind of legal holiday", "pln": ["(: cnet_isa_cf3fe17135 (IsA president_day legal_holiday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presiding officer is a kind of leader", "pln": ["(: cnet_isa_54b8fc611d (IsA presiding_officer leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presidio is a kind of fortress", "pln": ["(: cnet_isa_8c1964374f (IsA presidio fortress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presidium is a kind of committee", "pln": ["(: cnet_isa_048de35462 (IsA presidium committee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "press is a kind of push", "pln": ["(: cnet_isa_5a9723ca60 (IsA press push) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "press is a kind of weightlifting", "pln": ["(: cnet_isa_b6fd953d94 (IsA press weightlifting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "press is a kind of clamp", "pln": ["(: cnet_isa_5f1b7928b8 (IsA press clamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "press is a kind of machine", "pln": ["(: cnet_isa_e1c202e3b4 (IsA press machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "press is a kind of print media", "pln": ["(: cnet_isa_00043ab0e1 (IsA press print_media) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "press is a kind of estate", "pln": ["(: cnet_isa_53c379cccb (IsA press estate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "press agent is a kind of publicist", "pln": ["(: cnet_isa_ce4f39ef22 (IsA press_agent publicist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "press box is a kind of box", "pln": ["(: cnet_isa_cefd20a10f (IsA press_box box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "press conference is a kind of conference", "pln": ["(: cnet_isa_7147615a71 (IsA press_conference conference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "press corp is a kind of occupational group", "pln": ["(: cnet_isa_b8076bbeb2 (IsA press_corp occupational_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "press gallery is a kind of area", "pln": ["(: cnet_isa_94f3d9389b (IsA press_gallery area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "press gang is a kind of detachment", "pln": ["(: cnet_isa_314fd50c43 (IsA press_gang detachment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "press lord is a kind of publisher", "pln": ["(: cnet_isa_3dea264563 (IsA press_lord publisher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "press of sail is a kind of sail", "pln": ["(: cnet_isa_6b04586069 (IsA press_of_sail sail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "press photographer is a kind of photographer", "pln": ["(: cnet_isa_d178acc745 (IsA press_photographer photographer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pressing is a kind of part", "pln": ["(: cnet_isa_7dac270ef4 (IsA pressing part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pressure is a kind of force", "pln": ["(: cnet_isa_5ade35ba58 (IsA pressure force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pressure is a kind of somesthesia", "pln": ["(: cnet_isa_eade945480 (IsA pressure somesthesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pressure is a kind of physical phenomenon", "pln": ["(: cnet_isa_1e3de95992 (IsA pressure physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pressure is a kind of distress", "pln": ["(: cnet_isa_e19fbee2d8 (IsA pressure distress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pressure cabin is a kind of cabin", "pln": ["(: cnet_isa_be872a7545 (IsA pressure_cabin cabin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pressure cooker is a kind of autoclave", "pln": ["(: cnet_isa_dd40d0e4fd (IsA pressure_cooker autoclave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pressure dome is a kind of dome", "pln": ["(: cnet_isa_e89f22b3bd (IsA pressure_dome dome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pressure gauge is a kind of gauge", "pln": ["(: cnet_isa_2fe1a3a10b (IsA pressure_gauge gauge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pressure point is a kind of area", "pln": ["(: cnet_isa_89203c4732 (IsA pressure_point area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pressure point is a kind of trouble", "pln": ["(: cnet_isa_0e81908993 (IsA pressure_point trouble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pressure point is a kind of point", "pln": ["(: cnet_isa_a63b61bd66 (IsA pressure_point point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pressure suit is a kind of protective garment", "pln": ["(: cnet_isa_6cd8c83157 (IsA pressure_suit protective_garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pressure unit is a kind of unit of measurement", "pln": ["(: cnet_isa_2bc0fd10c6 (IsA pressure_unit unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pressurized water reactor is a kind of water cooled reactor", "pln": ["(: cnet_isa_94861d3bf8 (IsA pressurized_water_reactor water_cooled_reactor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prestidigitation is a kind of magic trick", "pln": ["(: cnet_isa_5dae01f95f (IsA prestidigitation magic_trick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prestige is a kind of standing", "pln": ["(: cnet_isa_ba712b906c (IsA prestige standing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presumption is a kind of discourtesy", "pln": ["(: cnet_isa_68021f5a28 (IsA presumption discourtesy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presumption is a kind of audacity", "pln": ["(: cnet_isa_555f565991 (IsA presumption audacity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presumption is a kind of inference", "pln": ["(: cnet_isa_becab58e01 (IsA presumption inference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "presupposition is a kind of supposition", "pln": ["(: cnet_isa_a494fccd81 (IsA presupposition supposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preteen is a kind of juvenile", "pln": ["(: cnet_isa_3364908008 (IsA preteen juvenile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pretender is a kind of claimant", "pln": ["(: cnet_isa_ac4c9543f3 (IsA pretender claimant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pretense is a kind of deception", "pln": ["(: cnet_isa_cf615e319f (IsA pretense deception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pretense is a kind of imagination", "pln": ["(: cnet_isa_f82196a0b5 (IsA pretense imagination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pretense is a kind of misrepresentation", "pln": ["(: cnet_isa_ad55b5739e (IsA pretense misrepresentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pretension is a kind of artificiality", "pln": ["(: cnet_isa_5b79f16ae6 (IsA pretension artificiality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pretension is a kind of claim", "pln": ["(: cnet_isa_d98e5a7392 (IsA pretension claim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pretentiousness is a kind of unnaturalness", "pln": ["(: cnet_isa_5da7b17eb2 (IsA pretentiousness unnaturalness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preterist is a kind of theologian", "pln": ["(: cnet_isa_c27a78bc3d (IsA preterist theologian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preterit is a kind of past", "pln": ["(: cnet_isa_7928cfb51a (IsA preterit past) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pretermission is a kind of omission", "pln": ["(: cnet_isa_fe60ea4a3e (IsA pretermission omission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pretext is a kind of pretense", "pln": ["(: cnet_isa_c0baae413c (IsA pretext pretense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pretrial is a kind of conference", "pln": ["(: cnet_isa_2b6f8ad4db (IsA pretrial conference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prettiness is a kind of beauty", "pln": ["(: cnet_isa_d42264e993 (IsA prettiness beauty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pretzel is a kind of cracker", "pln": ["(: cnet_isa_739ccecf46 (IsA pretzel cracker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prevailing party is a kind of litigant", "pln": ["(: cnet_isa_1d9664a075 (IsA prevailing_party litigant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "prevailing westerly is a kind of west wind", "pln": ["(: cnet_isa_93e9d42b69 (IsA prevailing_westerly west_wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prevailing wind is a kind of wind", "pln": ["(: cnet_isa_ae70e088c8 (IsA prevailing_wind wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prevalence is a kind of generality", "pln": ["(: cnet_isa_61347cf58f (IsA prevalence generality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prevalence is a kind of ratio", "pln": ["(: cnet_isa_524a5c4226 (IsA prevalence ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prevention is a kind of hindrance", "pln": ["(: cnet_isa_d8b158c25b (IsA prevention hindrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "preventive is a kind of remedy", "pln": ["(: cnet_isa_4e4f959c88 (IsA preventive remedy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preventive medicine is a kind of medicine", "pln": ["(: cnet_isa_86ebdcf414 (IsA preventive_medicine medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preventive strike is a kind of strike", "pln": ["(: cnet_isa_0f39d9431d (IsA preventive_strike strike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preview is a kind of ad", "pln": ["(: cnet_isa_ece835f83c (IsA preview ad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "preview is a kind of screening", "pln": ["(: cnet_isa_a569e3424a (IsA preview screening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "previous question is a kind of gesture", "pln": ["(: cnet_isa_fceb9a9f78 (IsA previous_question gesture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "previous question is a kind of order", "pln": ["(: cnet_isa_e325cc0990 (IsA previous_question order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prevision is a kind of knowing", "pln": ["(: cnet_isa_4fbb06a821 (IsA prevision knowing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prevision is a kind of vision", "pln": ["(: cnet_isa_9f35b1f5ed (IsA prevision vision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "prey is a kind of animal", "pln": ["(: cnet_isa_36025925ae (IsA prey animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prey is a kind of victim", "pln": ["(: cnet_isa_7ea688adef (IsA prey victim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "priacanthidae is a kind of fish family", "pln": ["(: cnet_isa_3999b031f1 (IsA priacanthidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "priacanthus is a kind of fish genus", "pln": ["(: cnet_isa_a91387cc33 (IsA priacanthus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "priapism is a kind of pathology", "pln": ["(: cnet_isa_83ea0401f5 (IsA priapism pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "price is a kind of value", "pln": ["(: cnet_isa_e1a970de30 (IsA price value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "price is a kind of worth", "pln": ["(: cnet_isa_a890a7fd84 (IsA price worth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "price is a kind of reward", "pln": ["(: cnet_isa_6c95b60f5d (IsA price reward) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "price is a kind of cost", "pln": ["(: cnet_isa_84bbb3fcfd (IsA price cost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "price bracket is a kind of bracket", "pln": ["(: cnet_isa_e4b30d51d6 (IsA price_bracket bracket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "price control is a kind of control", "pln": ["(: cnet_isa_8aef20738e (IsA price_control control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "price cutting is a kind of cut", "pln": ["(: cnet_isa_b8c6975699 (IsA price_cutting cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "price fixing is a kind of control", "pln": ["(: cnet_isa_45aa2123c4 (IsA price_fixing control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "price floor is a kind of floor", "pln": ["(: cnet_isa_a0fa49f998 (IsA price_floor floor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "price for anthrax spore is a kind of 3 685 plus shipping cost", "pln": ["(: cnet_isa_f16386936d (IsA price_for_anthrax_spore 3_685_plus_shipping_cost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "price freeze is a kind of freeze", "pln": ["(: cnet_isa_8ec6787cb7 (IsA price_freeze freeze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "price gouging is a kind of pricing", "pln": ["(: cnet_isa_e2324f4f46 (IsA price_gouging pricing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "price increase is a kind of increase", "pln": ["(: cnet_isa_243b014c38 (IsA price_increase increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "price index is a kind of index", "pln": ["(: cnet_isa_f7f77c2235 (IsA price_index index) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "price list is a kind of list", "pln": ["(: cnet_isa_ff66ad9659 (IsA price_list list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "price support is a kind of subsidy", "pln": ["(: cnet_isa_a33121d23f (IsA price_support subsidy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "price tag is a kind of tag", "pln": ["(: cnet_isa_3e0ce82c74 (IsA price_tag tag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "price to earning ratio is a kind of ratio", "pln": ["(: cnet_isa_03a64b4b0a (IsA price_to_earning_ratio ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "price war is a kind of competition", "pln": ["(: cnet_isa_f52ccd238d (IsA price_war competition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pricing is a kind of evaluation", "pln": ["(: cnet_isa_0292de6a83 (IsA pricing evaluation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pricing system is a kind of system", "pln": ["(: cnet_isa_f460e30aff (IsA pricing_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prick is a kind of puncture", "pln": ["(: cnet_isa_196c1771b9 (IsA prick puncture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pricket is a kind of deer", "pln": ["(: cnet_isa_dadad19cb7 (IsA pricket deer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pricket is a kind of spike", "pln": ["(: cnet_isa_33a3b8bb8a (IsA pricket spike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prickle cell is a kind of skin cell", "pln": ["(: cnet_isa_91ed796dc1 (IsA prickle_cell skin_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prickleback is a kind of blennioid fish", "pln": ["(: cnet_isa_019bf9d6f2 (IsA prickleback blennioid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "prickling is a kind of somesthesia", "pln": ["(: cnet_isa_70614718b6 (IsA prickling somesthesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prickly ash is a kind of tree", "pln": ["(: cnet_isa_bc5f095e97 (IsA prickly_ash tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prickly edged leaf is a kind of leaf", "pln": ["(: cnet_isa_06d5a5b01f (IsA prickly_edged_leaf leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prickly heat is a kind of rash", "pln": ["(: cnet_isa_e61dea505d (IsA prickly_heat rash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prickly lettuce is a kind of compass plant", "pln": ["(: cnet_isa_a952fa8e91 (IsA prickly_lettuce compass_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prickly pear is a kind of edible fruit", "pln": ["(: cnet_isa_6cfc712c42 (IsA prickly_pear edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "prickly pear is a kind of cactus", "pln": ["(: cnet_isa_04555855f7 (IsA prickly_pear cactus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "prickly poppy is a kind of herb", "pln": ["(: cnet_isa_2ebf2e09f3 (IsA prickly_poppy herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prickly poppy is a kind of poppy", "pln": ["(: cnet_isa_2646b7c658 (IsA prickly_poppy poppy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pride is a kind of mortal sin", "pln": ["(: cnet_isa_c8de793188 (IsA pride mortal_sin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pride is a kind of trait", "pln": ["(: cnet_isa_0e071e7016 (IsA pride trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pride is a kind of feeling", "pln": ["(: cnet_isa_8bc74cc76d (IsA pride feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pride is a kind of satisfaction", "pln": ["(: cnet_isa_77b50d0adb (IsA pride satisfaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pride is a kind of animal group", "pln": ["(: cnet_isa_5c6c2e186d (IsA pride animal_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pride of barbado is a kind of flowering shrub", "pln": ["(: cnet_isa_503719c83e (IsA pride_of_barbado flowering_shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pride of california is a kind of wild pea", "pln": ["(: cnet_isa_5e48c23999 (IsA pride_of_california wild_pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pride of place is a kind of position", "pln": ["(: cnet_isa_6bc88358da (IsA pride_of_place position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prie dieu is a kind of bench", "pln": ["(: cnet_isa_1e302f8fd6 (IsA prie_dieu bench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "priest is a kind of person", "pln": ["(: cnet_isa_94ca2b115d (IsA priest person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "priest is a kind of clergyman", "pln": ["(: cnet_isa_1e962ec62f (IsA priest clergyman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "priest is a kind of holy order", "pln": ["(: cnet_isa_c2368d4648 (IsA priest holy_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "priest is a kind of spiritual leader", "pln": ["(: cnet_isa_e0b95e2c4b (IsA priest spiritual_leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "priest penitent privilege is a kind of privilege", "pln": ["(: cnet_isa_5375af70cb (IsA priest_penitent_privilege privilege) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "priestcraft is a kind of craft", "pln": ["(: cnet_isa_98d02b8acc (IsA priestcraft craft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "priestcraft is a kind of intrigue", "pln": ["(: cnet_isa_c2181bed05 (IsA priestcraft intrigue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "primary censorship is a kind of armed forces censorship", "pln": ["(: cnet_isa_c0bb760a7c (IsA primary_censorship armed_forces_censorship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "primary colour for pigments is a kind of primary colour", "pln": ["(: cnet_isa_8905c8c21e (IsA primary_colour_for_pigments primary_colour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "priestess is a kind of priest", "pln": ["(: cnet_isa_c36653fb49 (IsA priestess priest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "priesthood is a kind of profession", "pln": ["(: cnet_isa_908aa47d4b (IsA priesthood profession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "priggishness is a kind of propriety", "pln": ["(: cnet_isa_42d251eb98 (IsA priggishness propriety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prima is a kind of eating apple", "pln": ["(: cnet_isa_898465b8e7 (IsA prima eating_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prima ballerina is a kind of ballerina", "pln": ["(: cnet_isa_efd13c382f (IsA prima_ballerina ballerina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prima donna is a kind of opera star", "pln": ["(: cnet_isa_b7d9f996ee (IsA prima_donna opera_star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prima donna is a kind of unpleasant person", "pln": ["(: cnet_isa_0ea75d642f (IsA prima_donna unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primacy is a kind of importance", "pln": ["(: cnet_isa_97966fd884 (IsA primacy importance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primality is a kind of property", "pln": ["(: cnet_isa_31ceec9c00 (IsA primality property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primaquine is a kind of antimalarial", "pln": ["(: cnet_isa_1fe262c8a9 (IsA primaquine antimalarial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primary is a kind of election", "pln": ["(: cnet_isa_f90d256fce (IsA primary election) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primary is a kind of flight feather", "pln": ["(: cnet_isa_277fc72d61 (IsA primary flight_feather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primary is a kind of celestial body", "pln": ["(: cnet_isa_95e53878ec (IsA primary celestial_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primary amenorrhea is a kind of amenorrhea", "pln": ["(: cnet_isa_728fd198f1 (IsA primary_amenorrhea amenorrhea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primary care is a kind of medical care", "pln": ["(: cnet_isa_426aef173a (IsA primary_care medical_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primary care physician is a kind of doctor", "pln": ["(: cnet_isa_45412cdf26 (IsA primary_care_physician doctor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primary censorship is a kind of armed force censorship", "pln": ["(: cnet_isa_b9b5729628 (IsA primary_censorship armed_force_censorship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primary coil is a kind of coil", "pln": ["(: cnet_isa_d7e6e6f126 (IsA primary_coil coil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primary colour is a kind of color", "pln": ["(: cnet_isa_d57653a403 (IsA primary_colour color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primary colour for light is a kind of primary colour", "pln": ["(: cnet_isa_08c275805f (IsA primary_colour_for_light primary_colour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primary colour for pigment is a kind of primary colour", "pln": ["(: cnet_isa_7f8f15b1e6 (IsA primary_colour_for_pigment primary_colour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "primary dentition is a kind of dentition", "pln": ["(: cnet_isa_99048419a5 (IsA primary_dentition dentition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primary dysmenorrhea is a kind of dysmenorrhea", "pln": ["(: cnet_isa_03bff5acca (IsA primary_dysmenorrhea dysmenorrhea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "primary health care is a kind of health care", "pln": ["(: cnet_isa_92e64b2a16 (IsA primary_health_care health_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primary sex characteristic is a kind of sex characteristic", "pln": ["(: cnet_isa_7ff1047980 (IsA primary_sex_characteristic sex_characteristic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primary subtractive colour for light is a kind of primary colour for light", "pln": ["(: cnet_isa_7e553ef997 (IsA primary_subtractive_colour_for_light primary_colour_for_light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "primary syphilis is a kind of syphilis", "pln": ["(: cnet_isa_1907f7b601 (IsA primary_syphilis syphilis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "primates is a kind of animal order", "pln": ["(: cnet_isa_b456d7bbe2 (IsA primates animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primary tooth is a kind of tooth", "pln": ["(: cnet_isa_74d4f61b1d (IsA primary_tooth tooth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primate is a kind of animal", "pln": ["(: cnet_isa_a9320838bb (IsA primate animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primate is a kind of placental", "pln": ["(: cnet_isa_62422e8c49 (IsA primate placental) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primate is a kind of animal order", "pln": ["(: cnet_isa_a9de2152d0 (IsA primate animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primateship is a kind of position", "pln": ["(: cnet_isa_2c37988a34 (IsA primateship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primatology is a kind of mammalogy", "pln": ["(: cnet_isa_a4f980da88 (IsA primatology mammalogy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prime is a kind of number", "pln": ["(: cnet_isa_a451c78cbd (IsA prime number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prime is a kind of adulthood", "pln": ["(: cnet_isa_982069d091 (IsA prime adulthood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prime is a kind of canonical hour", "pln": ["(: cnet_isa_e30b26433b (IsA prime canonical_hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prime factor is a kind of divisor", "pln": ["(: cnet_isa_a1261e51ca (IsA prime_factor divisor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prime interest rate is a kind of interest rate", "pln": ["(: cnet_isa_633ca198d8 (IsA prime_interest_rate interest_rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "prime meridian is a kind of meridian", "pln": ["(: cnet_isa_4fefc7db1e (IsA prime_meridian meridian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prime number is a kind of prime", "pln": ["(: cnet_isa_342a9b9202 (IsA prime_number prime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prime time is a kind of clock time", "pln": ["(: cnet_isa_2debc819a9 (IsA prime_time clock_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primer is a kind of textbook", "pln": ["(: cnet_isa_9011cdc2bc (IsA primer textbook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primigravida is a kind of gravida", "pln": ["(: cnet_isa_3db933c954 (IsA primigravida gravida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "priming is a kind of preparation", "pln": ["(: cnet_isa_5e780fe0a6 (IsA priming preparation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primipara is a kind of mother", "pln": ["(: cnet_isa_07ad477ac3 (IsA primipara mother) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primitive is a kind of formula", "pln": ["(: cnet_isa_36dc2187e0 (IsA primitive formula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primitive is a kind of word", "pln": ["(: cnet_isa_4b6c9b4500 (IsA primitive word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primitive is a kind of person", "pln": ["(: cnet_isa_81ac199b5f (IsA primitive person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primitivism is a kind of genre", "pln": ["(: cnet_isa_67a6898316 (IsA primitivism genre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primness is a kind of modesty", "pln": ["(: cnet_isa_5d60a208ff (IsA primness modesty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primo is a kind of part", "pln": ["(: cnet_isa_9506a1f52a (IsA primo part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primogeniture is a kind of inheritance", "pln": ["(: cnet_isa_511e895485 (IsA primogeniture inheritance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primordial dwarf is a kind of dwarf", "pln": ["(: cnet_isa_b32505b5da (IsA primordial_dwarf dwarf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primordium is a kind of organ", "pln": ["(: cnet_isa_7c38ed5a3d (IsA primordium organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primping is a kind of dressing", "pln": ["(: cnet_isa_873304a506 (IsA primping dressing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primrose is a kind of annual plant", "pln": ["(: cnet_isa_e6c1178e95 (IsA primrose annual_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primrose is a kind of herb", "pln": ["(: cnet_isa_339dbda0ca (IsA primrose herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primrose jasmine is a kind of jasmine", "pln": ["(: cnet_isa_17907fe222 (IsA primrose_jasmine jasmine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primrose path is a kind of way", "pln": ["(: cnet_isa_15cc7e87ce (IsA primrose_path way) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primulaceae is a kind of dicot family", "pln": ["(: cnet_isa_82ecd095a8 (IsA primulaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primulale is a kind of plant order", "pln": ["(: cnet_isa_b08edb67d8 (IsA primulale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primus is a kind of bishop", "pln": ["(: cnet_isa_888c9bfb5d (IsA primus bishop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "primus stove is a kind of stove", "pln": ["(: cnet_isa_7b33ccf574 (IsA primus_stove stove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prince s feather is a kind of amaranth", "pln": ["(: cnet_isa_11ea40b5e5 (IsA prince_s_feather amaranth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prince s feather is a kind of subshrub", "pln": ["(: cnet_isa_0ce49fcabe (IsA prince_s_feather subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "prince is a kind of royalty", "pln": ["(: cnet_isa_40203e96eb (IsA prince royalty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prince is a kind of aristocrat", "pln": ["(: cnet_isa_53ae345857 (IsA prince aristocrat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prince albert is a kind of frock coat", "pln": ["(: cnet_isa_ba9d7e2c39 (IsA prince_albert frock_coat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prince albert yew is a kind of conifer", "pln": ["(: cnet_isa_1082672c4a (IsA prince_albert_yew conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prince charming is a kind of suitor", "pln": ["(: cnet_isa_08d23005b0 (IsA prince_charming suitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prince consort is a kind of consort", "pln": ["(: cnet_isa_a8de57149d (IsA prince_consort consort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prince consort is a kind of prince", "pln": ["(: cnet_isa_d727c3d514 (IsA prince_consort prince) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prince of wale is a kind of prince", "pln": ["(: cnet_isa_c80dd4128e (IsA prince_of_wale prince) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prince of wale heath is a kind of erica", "pln": ["(: cnet_isa_7d39cb1358 (IsA prince_of_wale_heath erica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "princedom is a kind of rank", "pln": ["(: cnet_isa_12eb6e87d4 (IsA princedom rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "princeling is a kind of prince", "pln": ["(: cnet_isa_ad6c2c9969 (IsA princeling prince) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "princess is a kind of aristocrat", "pln": ["(: cnet_isa_7d40ab5837 (IsA princess aristocrat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "princess royal is a kind of princess", "pln": ["(: cnet_isa_937378a528 (IsA princess_royal princess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "princewood is a kind of tree", "pln": ["(: cnet_isa_9b946c6852 (IsA princewood tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "principal is a kind of wrongdoer", "pln": ["(: cnet_isa_a11d4628a6 (IsA principal wrongdoer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "principal is a kind of educator", "pln": ["(: cnet_isa_b5df64620d (IsA principal educator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "principal is a kind of financier", "pln": ["(: cnet_isa_3883afaeee (IsA principal financier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "principal is a kind of capital", "pln": ["(: cnet_isa_ff1f421197 (IsA principal capital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "principal is a kind of debt", "pln": ["(: cnet_isa_3c361a76c8 (IsA principal debt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "principal axis is a kind of axis", "pln": ["(: cnet_isa_f908712661 (IsA principal_axis axis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "principal investigator is a kind of scientist", "pln": ["(: cnet_isa_fd7077634f (IsA principal_investigator scientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "principality is a kind of domain", "pln": ["(: cnet_isa_81bf8160a9 (IsA principality domain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "principalship is a kind of position", "pln": ["(: cnet_isa_85e9173d22 (IsA principalship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "principle is a kind of generalization", "pln": ["(: cnet_isa_1bf8766f57 (IsA principle generalization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "principle is a kind of law", "pln": ["(: cnet_isa_94e1bd5baf (IsA principle law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "principle is a kind of value", "pln": ["(: cnet_isa_02ef59b51e (IsA principle value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "principle is a kind of rule", "pln": ["(: cnet_isa_f6f675c575 (IsA principle rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "principle of equivalence is a kind of principle", "pln": ["(: cnet_isa_84c13b21bf (IsA principle_of_equivalence principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "principle of liquid displacement is a kind of principle", "pln": ["(: cnet_isa_4a65a02708 (IsA principle_of_liquid_displacement principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "principle of relativity is a kind of law", "pln": ["(: cnet_isa_f1ef0f074b (IsA principle_of_relativity law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "principle of superposition is a kind of principle", "pln": ["(: cnet_isa_6ab0c55fbb (IsA principle_of_superposition principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prinia is a kind of bird genus", "pln": ["(: cnet_isa_5c18641660 (IsA prinia bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "print is a kind of copy", "pln": ["(: cnet_isa_ae886000f9 (IsA print copy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "print is a kind of fabric", "pln": ["(: cnet_isa_c54035102a (IsA print fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "print is a kind of graphic art", "pln": ["(: cnet_isa_1b10b23180 (IsA print graphic_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "print is a kind of handiness", "pln": ["(: cnet_isa_21b48ff3ca (IsA print handiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "print is a kind of written communication", "pln": ["(: cnet_isa_51ba8cbc3c (IsA print written_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "print buffer is a kind of buffer", "pln": ["(: cnet_isa_eafcd6ec18 (IsA print_buffer buffer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "print media is a kind of medium", "pln": ["(: cnet_isa_48769f97a5 (IsA print_media medium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "print run is a kind of run", "pln": ["(: cnet_isa_ae79202d95 (IsA print_run run) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "print seller is a kind of art dealer", "pln": ["(: cnet_isa_dc923d2100 (IsA print_seller art_dealer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "print shop is a kind of workshop", "pln": ["(: cnet_isa_e201d19fe7 (IsA print_shop workshop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "printed circuit is a kind of computer circuit", "pln": ["(: cnet_isa_c7d035a47c (IsA printed_circuit computer_circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "printer s devil is a kind of apprentice", "pln": ["(: cnet_isa_309b82b0de (IsA printer_s_devil apprentice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "printer s ink is a kind of ink", "pln": ["(: cnet_isa_298d3a4b09 (IsA printer_s_ink ink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "printer is a kind of machine", "pln": ["(: cnet_isa_97d4607497 (IsA printer machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "printer is a kind of peripheral", "pln": ["(: cnet_isa_4bc943c8d9 (IsA printer peripheral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "printer is a kind of printer", "pln": ["(: cnet_isa_e02260ec33 (IsA printer printer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "printer is a kind of skilled worker", "pln": ["(: cnet_isa_a81b74a898 (IsA printer skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "printer cable is a kind of cable", "pln": ["(: cnet_isa_c313f0a801 (IsA printer_cable cable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "printer is a kind of slow sometime", "pln": ["(: cnet_isa_ee04c89b6a (IsA printer slow_sometime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "printing is a kind of writing", "pln": ["(: cnet_isa_d93c847405 (IsA printing writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "printing is a kind of commercial enterprise", "pln": ["(: cnet_isa_7b2a7fd68c (IsA printing commercial_enterprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "printing concern is a kind of company", "pln": ["(: cnet_isa_28a8034b51 (IsA printing_concern company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "printing operation is a kind of operation", "pln": ["(: cnet_isa_89d9b4e8c0 (IsA printing_operation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "printing unit is a kind of unit of measurement", "pln": ["(: cnet_isa_cb212e8578 (IsA printing_unit unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "printmaker is a kind of artist", "pln": ["(: cnet_isa_01a78a3326 (IsA printmaker artist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "printmaking is a kind of art", "pln": ["(: cnet_isa_680bbf12a5 (IsA printmaking art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "printout is a kind of output signal", "pln": ["(: cnet_isa_5acdbf16d2 (IsA printout output_signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "priodonte is a kind of mammal genus", "pln": ["(: cnet_isa_1bb315923e (IsA priodonte mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prion is a kind of particle", "pln": ["(: cnet_isa_c2b98bb787 (IsA prion particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "prionace is a kind of fish genus", "pln": ["(: cnet_isa_e937904705 (IsA prionace fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prionotus is a kind of fish genus", "pln": ["(: cnet_isa_4988e6bf0e (IsA prionotus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prior is a kind of superior", "pln": ["(: cnet_isa_123f148705 (IsA prior superior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "priority is a kind of earliness", "pln": ["(: cnet_isa_bb367014e2 (IsA priority earliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "priority processing is a kind of data processing", "pln": ["(: cnet_isa_92299f9f69 (IsA priority_processing data_processing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "priorship is a kind of position", "pln": ["(: cnet_isa_611c64edb0 (IsA priorship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "priory is a kind of religious residence", "pln": ["(: cnet_isa_f05e749ff3 (IsA priory religious_residence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prism is a kind of optical device", "pln": ["(: cnet_isa_8fb95c8968 (IsA prism optical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prism is a kind of polyhedron", "pln": ["(: cnet_isa_f780f7574f (IsA prism polyhedron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prismatoid is a kind of polyhedron", "pln": ["(: cnet_isa_b059019246 (IsA prismatoid polyhedron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prismoid is a kind of prismatoid", "pln": ["(: cnet_isa_0aa32d8718 (IsA prismoid prismatoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prison is a kind of correctional institution", "pln": ["(: cnet_isa_f09dc4352c (IsA prison correctional_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prison is a kind of situation", "pln": ["(: cnet_isa_da5e361294 (IsA prison situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prison camp is a kind of camp", "pln": ["(: cnet_isa_c68e7dd43c (IsA prison_camp camp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "prison chaplain is a kind of chaplain", "pln": ["(: cnet_isa_67fbc1bbcf (IsA prison_chaplain chaplain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "prison guard is a kind of keeper", "pln": ["(: cnet_isa_7911a1f942 (IsA prison_guard keeper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prison guard is a kind of lawman", "pln": ["(: cnet_isa_72a29abf9e (IsA prison_guard lawman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prison term is a kind of term", "pln": ["(: cnet_isa_65f2305417 (IsA prison_term term) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prisoner s base is a kind of game", "pln": ["(: cnet_isa_6c3eed30ef (IsA prisoner_s_base game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prisoner is a kind of unfortunate", "pln": ["(: cnet_isa_ff0a7f9e8e (IsA prisoner unfortunate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prisoner of war is a kind of prisoner", "pln": ["(: cnet_isa_15b77c4d24 (IsA prisoner_of_war prisoner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prisoner of war censorship is a kind of military censorship", "pln": ["(: cnet_isa_3ea2ebb40f (IsA prisoner_of_war_censorship military_censorship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prison is a kind of failed social political experiment", "pln": ["(: cnet_isa_6440c5b79c (IsA prison failed_social_political_experiment) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pristidae is a kind of fish family", "pln": ["(: cnet_isa_0532ac2d39 (IsA pristidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pristis is a kind of fish genus", "pln": ["(: cnet_isa_1acdfc8785 (IsA pristis fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pritzelago is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_bc9afd62fd (IsA pritzelago dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "privacy is a kind of major issue in medicine", "pln": ["(: cnet_isa_74823bb946 (IsA privacy major_issue_in_medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "privacy is a kind of reclusiveness", "pln": ["(: cnet_isa_05f9629275 (IsA privacy reclusiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "privacy is a kind of isolation", "pln": ["(: cnet_isa_a2b25aaf31 (IsA privacy isolation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "private is a kind of enlisted man", "pln": ["(: cnet_isa_d2749e64ab (IsA private enlisted_man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "private citizen is a kind of citizen", "pln": ["(: cnet_isa_92f9692d74 (IsA private_citizen citizen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "private detective is a kind of detective", "pln": ["(: cnet_isa_ce8267c73f (IsA private_detective detective) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "private foundation is a kind of charity", "pln": ["(: cnet_isa_ff04ddaa74 (IsA private_foundation charity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "private line is a kind of telephone line", "pln": ["(: cnet_isa_e25f8359ac (IsA private_line telephone_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "private nuisance is a kind of nuisance", "pln": ["(: cnet_isa_b43cbd0a27 (IsA private_nuisance nuisance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "private practice is a kind of practice", "pln": ["(: cnet_isa_50b5eb71c6 (IsA private_practice practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "private school is a kind of school", "pln": ["(: cnet_isa_7d68acc28f (IsA private_school school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "private treaty is a kind of selling", "pln": ["(: cnet_isa_a3fa84eabc (IsA private_treaty selling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "privateer is a kind of warship", "pln": ["(: cnet_isa_a39b0b3f2f (IsA privateer warship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "privateer is a kind of crewman", "pln": ["(: cnet_isa_c11fdd7bb3 (IsA privateer crewman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "privateer is a kind of officer", "pln": ["(: cnet_isa_4a99d75437 (IsA privateer officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "privation is a kind of social control", "pln": ["(: cnet_isa_40c1cbe423 (IsA privation social_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "privation is a kind of poverty", "pln": ["(: cnet_isa_0835113136 (IsA privation poverty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "privet is a kind of shrub", "pln": ["(: cnet_isa_e1d8955e74 (IsA privet shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "privet hedge is a kind of hedge", "pln": ["(: cnet_isa_5e012a97af (IsA privet_hedge hedge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "privilege is a kind of advantage", "pln": ["(: cnet_isa_bc0aa2b4a6 (IsA privilege advantage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "privilege is a kind of right", "pln": ["(: cnet_isa_46cb52d458 (IsA privilege right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "privilege of floor is a kind of prerogative", "pln": ["(: cnet_isa_c54519bc03 (IsA privilege_of_floor prerogative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "privy council is a kind of council", "pln": ["(: cnet_isa_836a923d0c (IsA privy_council council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "privy purse is a kind of allowance", "pln": ["(: cnet_isa_bc3107284b (IsA privy_purse allowance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prix de rome is a kind of award", "pln": ["(: cnet_isa_6c2a14b9e9 (IsA prix_de_rome award) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prix fixe is a kind of menu", "pln": ["(: cnet_isa_cfc896f841 (IsA prix_fixe menu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prix goncourt is a kind of award", "pln": ["(: cnet_isa_acdb9e2971 (IsA prix_goncourt award) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "prize is a kind of gift", "pln": ["(: cnet_isa_bb5b98d319 (IsA prize gift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prize money is a kind of prize", "pln": ["(: cnet_isa_0dd2f111bb (IsA prize_money prize) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prize winner is a kind of winner", "pln": ["(: cnet_isa_93e020ea0e (IsA prize_winner winner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prizefight is a kind of boxing match", "pln": ["(: cnet_isa_3a55251a44 (IsA prizefight boxing_match) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prizefighter is a kind of boxer", "pln": ["(: cnet_isa_3d6e7fe6b1 (IsA prizefighter boxer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pro is a kind of argument", "pln": ["(: cnet_isa_c304bbb108 (IsA pro argument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pro choice faction is a kind of faction", "pln": ["(: cnet_isa_0c3e742b36 (IsA pro_choice_faction faction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pro life faction is a kind of faction", "pln": ["(: cnet_isa_542e7443d1 (IsA pro_life_faction faction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pro lifer is a kind of advocate", "pln": ["(: cnet_isa_17831f6661 (IsA pro_lifer advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proaccelerin is a kind of coagulation factor", "pln": ["(: cnet_isa_c2a172f628 (IsA proaccelerin coagulation_factor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "probabilism is a kind of casuistry", "pln": ["(: cnet_isa_b644aefcce (IsA probabilism casuistry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "probabilism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_c9eb34d58a (IsA probabilism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "probability is a kind of measure", "pln": ["(: cnet_isa_385aa869d7 (IsA probability measure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "probability is a kind of quality", "pln": ["(: cnet_isa_1592f39d82 (IsA probability quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "probability theorist is a kind of mathematician", "pln": ["(: cnet_isa_f1d5f1b3bf (IsA probability_theorist mathematician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "probability theory is a kind of applied mathematic", "pln": ["(: cnet_isa_eaf5ce093d (IsA probability_theory applied_mathematic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "probable is a kind of applicant", "pln": ["(: cnet_isa_290c8458a1 (IsA probable applicant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "probable cause is a kind of evidence", "pln": ["(: cnet_isa_45a7307c81 (IsA probable_cause evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "probate is a kind of validation", "pln": ["(: cnet_isa_882a5dc968 (IsA probate validation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "probate is a kind of certificate", "pln": ["(: cnet_isa_9e961bfbae (IsA probate certificate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "probate court is a kind of court", "pln": ["(: cnet_isa_a4ac8848c2 (IsA probate_court court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "probation is a kind of liberation", "pln": ["(: cnet_isa_7483d48131 (IsA probation liberation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "probation is a kind of trial period", "pln": ["(: cnet_isa_edf4018e99 (IsA probation trial_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "probation officer is a kind of officeholder", "pln": ["(: cnet_isa_0bb63779da (IsA probation_officer officeholder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "probationer is a kind of criminal", "pln": ["(: cnet_isa_76540f6817 (IsA probationer criminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "probationer is a kind of nurse", "pln": ["(: cnet_isa_43b95ea023 (IsA probationer nurse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "probe is a kind of exploration", "pln": ["(: cnet_isa_cab058ef2f (IsA probe exploration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "probe is a kind of research", "pln": ["(: cnet_isa_49c6394de4 (IsA probe research) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "probe is a kind of surgical instrument", "pln": ["(: cnet_isa_638cde66ec (IsA probe surgical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "probe is a kind of inquiry", "pln": ["(: cnet_isa_0d0edfb86a (IsA probe inquiry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "probenecid is a kind of medicine", "pln": ["(: cnet_isa_c96bd15821 (IsA probenecid medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "probiotic microflora is a kind of bacteria", "pln": ["(: cnet_isa_157fe31d29 (IsA probiotic_microflora bacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "probity is a kind of integrity", "pln": ["(: cnet_isa_08d7f94bb9 (IsA probity integrity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "problem is a kind of question", "pln": ["(: cnet_isa_57881250eb (IsA problem question) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "problem is a kind of difficulty", "pln": ["(: cnet_isa_3a958eb614 (IsA problem difficulty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "problem solver is a kind of thinker", "pln": ["(: cnet_isa_1eeb1f137b (IsA problem_solver thinker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "problem solving is a kind of cognitive psychology", "pln": ["(: cnet_isa_d5bde50110 (IsA problem_solving cognitive_psychology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "problem solving is a kind of thinking", "pln": ["(: cnet_isa_9dd94a6422 (IsA problem_solving thinking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "problem is a kind of unsolvable", "pln": ["(: cnet_isa_72959e7913 (IsA problem unsolvable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proboscidea is a kind of animal order", "pln": ["(: cnet_isa_99bcb2c097 (IsA proboscidea animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proboscidea is a kind of plant genus", "pln": ["(: cnet_isa_4a23e8cdd3 (IsA proboscidea plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proboscidean is a kind of placental", "pln": ["(: cnet_isa_318c74a3e1 (IsA proboscidean placental) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proboscis is a kind of snout", "pln": ["(: cnet_isa_34fdcfe85e (IsA proboscis snout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proboscis is a kind of nose", "pln": ["(: cnet_isa_4df72ff7a6 (IsA proboscis nose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proboscis monkey is a kind of old world monkey", "pln": ["(: cnet_isa_a8b354127c (IsA proboscis_monkey old_world_monkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "procarbazine is a kind of antineoplastic", "pln": ["(: cnet_isa_9932bca4a3 (IsA procarbazine antineoplastic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "procavia is a kind of mammal genus", "pln": ["(: cnet_isa_7e62d15eb2 (IsA procavia mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "procaviidae is a kind of mammal family", "pln": ["(: cnet_isa_1fff7103d2 (IsA procaviidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "procedure is a kind of activity", "pln": ["(: cnet_isa_47c56aac2a (IsA procedure activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "procedure is a kind of proceeding", "pln": ["(: cnet_isa_0e1d1ce573 (IsA procedure proceeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proceeding is a kind of due process", "pln": ["(: cnet_isa_59b437ad95 (IsA proceeding due_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "procellaria is a kind of bird genus", "pln": ["(: cnet_isa_81bc39b8e2 (IsA procellaria bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "procellariidae is a kind of bird family", "pln": ["(: cnet_isa_c95c719e7c (IsA procellariidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "procellariiform seabird is a kind of pelagic bird", "pln": ["(: cnet_isa_7b38e9db84 (IsA procellariiform_seabird pelagic_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "procellariiforme is a kind of animal order", "pln": ["(: cnet_isa_814e29664d (IsA procellariiforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "process is a kind of physical entity", "pln": ["(: cnet_isa_b88452cb43 (IsA process physical_entity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "process is a kind of body part", "pln": ["(: cnet_isa_0188a29a73 (IsA process body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "process is a kind of cognition", "pln": ["(: cnet_isa_83a86360ca (IsA process cognition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "process cheese is a kind of cheese", "pln": ["(: cnet_isa_75eee628c9 (IsA process_cheese cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "process printing is a kind of printing", "pln": ["(: cnet_isa_47ba4a93c6 (IsA process_printing printing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "process server is a kind of messenger", "pln": ["(: cnet_isa_c6191bac42 (IsA process_server messenger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "processing is a kind of process", "pln": ["(: cnet_isa_2bbf6326f7 (IsA processing process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "processing time is a kind of time interval", "pln": ["(: cnet_isa_33b369c92e (IsA processing_time time_interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "procession is a kind of collection", "pln": ["(: cnet_isa_6e8584371c (IsA procession collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "procession is a kind of group action", "pln": ["(: cnet_isa_312c971803 (IsA procession group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "processional is a kind of religious music", "pln": ["(: cnet_isa_2846df5cc4 (IsA processional religious_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "processional march is a kind of marching music", "pln": ["(: cnet_isa_31cc9e375d (IsA processional_march marching_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "processor is a kind of business", "pln": ["(: cnet_isa_79fbcef036 (IsA processor business) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "processor is a kind of worker", "pln": ["(: cnet_isa_9d4359fe50 (IsA processor worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prochlorperazine is a kind of antiemetic", "pln": ["(: cnet_isa_db33502257 (IsA prochlorperazine antiemetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prochlorperazine is a kind of major tranquilizer", "pln": ["(: cnet_isa_67875e8139 (IsA prochlorperazine major_tranquilizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prociphilus is a kind of arthropod genus", "pln": ["(: cnet_isa_83aa5c1c85 (IsA prociphilus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proclamation is a kind of act", "pln": ["(: cnet_isa_d79220d103 (IsA proclamation act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proclivity is a kind of inclination", "pln": ["(: cnet_isa_afa5f84a55 (IsA proclivity inclination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "procnia is a kind of bird genus", "pln": ["(: cnet_isa_7f286aca70 (IsA procnia bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proconsul is a kind of hominoid", "pln": ["(: cnet_isa_5cc5de88ca (IsA proconsul hominoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proconsul is a kind of governor", "pln": ["(: cnet_isa_9815b19235 (IsA proconsul governor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proconsul is a kind of official", "pln": ["(: cnet_isa_f55265d586 (IsA proconsul official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proconsulship is a kind of position", "pln": ["(: cnet_isa_3daf93e4e9 (IsA proconsulship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proconvertin is a kind of coagulation factor", "pln": ["(: cnet_isa_cc68efd7ff (IsA proconvertin coagulation_factor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "procrastination is a kind of delay", "pln": ["(: cnet_isa_9c85a86c2d (IsA procrastination delay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "procrastinator is a kind of delayer", "pln": ["(: cnet_isa_55db8c1688 (IsA procrastinator delayer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "procrustean standard is a kind of standard", "pln": ["(: cnet_isa_0ebc47ff12 (IsA procrustean_standard standard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proctalgia is a kind of pain", "pln": ["(: cnet_isa_4bcaae25df (IsA proctalgia pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proctitis is a kind of inflammation", "pln": ["(: cnet_isa_21c52c93b8 (IsA proctitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "proctologist is a kind of specialist", "pln": ["(: cnet_isa_31749e57c7 (IsA proctologist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proctology is a kind of medicine", "pln": ["(: cnet_isa_f67d6c9e55 (IsA proctology medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proctoplasty is a kind of plastic surgery", "pln": ["(: cnet_isa_197cdc23c6 (IsA proctoplasty plastic_surgery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proctor is a kind of supervisor", "pln": ["(: cnet_isa_383123e8f9 (IsA proctor supervisor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proctorship is a kind of position", "pln": ["(: cnet_isa_68a20d64a6 (IsA proctorship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proctoscope is a kind of endoscope", "pln": ["(: cnet_isa_c1ebaeb49a (IsA proctoscope endoscope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proctoscopy is a kind of endoscopy", "pln": ["(: cnet_isa_be80d44845 (IsA proctoscopy endoscopy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "procurator is a kind of bureaucrat", "pln": ["(: cnet_isa_0a027cfc00 (IsA procurator bureaucrat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "procurement is a kind of acquisition", "pln": ["(: cnet_isa_5191479b20 (IsA procurement acquisition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "procurer is a kind of acquirer", "pln": ["(: cnet_isa_d26533b0fb (IsA procurer acquirer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "procuress is a kind of pimp", "pln": ["(: cnet_isa_330275647d (IsA procuress pimp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "procursive epilepsy is a kind of epilepsy", "pln": ["(: cnet_isa_6b5eb3e18c (IsA procursive_epilepsy epilepsy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "procyon is a kind of mammal genus", "pln": ["(: cnet_isa_4f1af03f3f (IsA procyon mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "procyonid is a kind of carnivore", "pln": ["(: cnet_isa_aa74010103 (IsA procyonid carnivore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "procyonidae is a kind of mammal family", "pln": ["(: cnet_isa_fbacba68ca (IsA procyonidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prod is a kind of device", "pln": ["(: cnet_isa_6011047d0a (IsA prod device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prodigal is a kind of consumer", "pln": ["(: cnet_isa_bfb1cb99e4 (IsA prodigal consumer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prodigy is a kind of exemplar", "pln": ["(: cnet_isa_d54a5368c1 (IsA prodigy exemplar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prodigy is a kind of genius", "pln": ["(: cnet_isa_be20e2b653 (IsA prodigy genius) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prodrome is a kind of symptom", "pln": ["(: cnet_isa_de72d436a9 (IsA prodrome symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "produce is a kind of food", "pln": ["(: cnet_isa_878fa713eb (IsA produce food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "producer is a kind of cause", "pln": ["(: cnet_isa_4cc47ce343 (IsA producer cause) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "producer is a kind of creator", "pln": ["(: cnet_isa_9526b09641 (IsA producer creator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "producer gas is a kind of gas", "pln": ["(: cnet_isa_a209ffd9a3 (IsA producer_gas gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "producer price index is a kind of price index", "pln": ["(: cnet_isa_e3f6d07e25 (IsA producer_price_index price_index) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "product is a kind of result", "pln": ["(: cnet_isa_0a9f1fe7ab (IsA product result) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "product is a kind of creation", "pln": ["(: cnet_isa_14a5044b0b (IsA product creation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "product is a kind of quantity", "pln": ["(: cnet_isa_a8c33c570d (IsA product quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "product is a kind of consequence", "pln": ["(: cnet_isa_24418596a3 (IsA product consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "product is a kind of chemical", "pln": ["(: cnet_isa_89d8c7096a (IsA product chemical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "product development is a kind of development", "pln": ["(: cnet_isa_88292f0a11 (IsA product_development development) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "product introduction is a kind of introduction", "pln": ["(: cnet_isa_844e2644a9 (IsA product_introduction introduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "product moment correlation coefficient is a kind of correlation coefficient", "pln": ["(: cnet_isa_6ce1e549cb (IsA product_moment_correlation_coefficient correlation_coefficient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "product research is a kind of marketing research", "pln": ["(: cnet_isa_244c7436f1 (IsA product_research marketing_research) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "production is a kind of act", "pln": ["(: cnet_isa_8d249ca87d (IsA production act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "production is a kind of creation", "pln": ["(: cnet_isa_c291cc5a8d (IsA production creation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "production is a kind of display", "pln": ["(: cnet_isa_d24cda03a6 (IsA production display) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "production is a kind of presentation", "pln": ["(: cnet_isa_71ca74f449 (IsA production presentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "production is a kind of industry", "pln": ["(: cnet_isa_e6825a004a (IsA production industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "production is a kind of exhibition", "pln": ["(: cnet_isa_aec9588bee (IsA production exhibition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "production cost is a kind of cost", "pln": ["(: cnet_isa_f10f0c9ff0 (IsA production_cost cost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "production line is a kind of mechanical system", "pln": ["(: cnet_isa_82fea29324 (IsA production_line mechanical_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "production order is a kind of order", "pln": ["(: cnet_isa_f51924bfbc (IsA production_order order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "productiveness is a kind of fruitfulness", "pln": ["(: cnet_isa_367e7c77da (IsA productiveness fruitfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "productivity is a kind of ratio", "pln": ["(: cnet_isa_43e22e183e (IsA productivity ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proenzyme is a kind of organic compound", "pln": ["(: cnet_isa_46dc3b08ad (IsA proenzyme organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "profanation is a kind of degradation", "pln": ["(: cnet_isa_923122a3fc (IsA profanation degradation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "profanation is a kind of irreverence", "pln": ["(: cnet_isa_d6340f69d9 (IsA profanation irreverence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "profaneness is a kind of unholiness", "pln": ["(: cnet_isa_fe7e3bd7f2 (IsA profaneness unholiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "profaneness is a kind of irreverence", "pln": ["(: cnet_isa_d71d6bbfc6 (IsA profaneness irreverence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "profanity is a kind of utterance", "pln": ["(: cnet_isa_1d46b1b345 (IsA profanity utterance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "profession is a kind of occupation", "pln": ["(: cnet_isa_1607f5293f (IsA profession occupation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "profession is a kind of affirmation", "pln": ["(: cnet_isa_d8278fcff1 (IsA profession affirmation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "profession is a kind of avowal", "pln": ["(: cnet_isa_ab4af34fb6 (IsA profession avowal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "profession is a kind of occupational group", "pln": ["(: cnet_isa_453be224a7 (IsA profession occupational_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "professional is a kind of adult", "pln": ["(: cnet_isa_07c0468abc (IsA professional adult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "professional is a kind of athlete", "pln": ["(: cnet_isa_625292800f (IsA professional athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "professional association is a kind of association", "pln": ["(: cnet_isa_6c22b3f12f (IsA professional_association association) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "professional baseball is a kind of baseball", "pln": ["(: cnet_isa_f3f2926b83 (IsA professional_baseball baseball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "professional baseball is a kind of sport", "pln": ["(: cnet_isa_3c1ea6ffd7 (IsA professional_baseball sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "professional basketball is a kind of basketball", "pln": ["(: cnet_isa_eb9da949a9 (IsA professional_basketball basketball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "professional basketball is a kind of sport", "pln": ["(: cnet_isa_cf122fedf1 (IsA professional_basketball sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "professional boxing is a kind of boxing", "pln": ["(: cnet_isa_4f71639d42 (IsA professional_boxing boxing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "professional boxing is a kind of sport", "pln": ["(: cnet_isa_8d4f5c3596 (IsA professional_boxing sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "professional football is a kind of football", "pln": ["(: cnet_isa_1c2d6a58d3 (IsA professional_football football) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "professional football is a kind of sport", "pln": ["(: cnet_isa_c4ae1480ab (IsA professional_football sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "professional golf is a kind of golf", "pln": ["(: cnet_isa_b40e792fdf (IsA professional_golf golf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "professional golf is a kind of sport", "pln": ["(: cnet_isa_c7aaf4659e (IsA professional_golf sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "professional organization is a kind of organization", "pln": ["(: cnet_isa_4687fffeae (IsA professional_organization organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "professional relation is a kind of social relation", "pln": ["(: cnet_isa_89030cfe1d (IsA professional_relation social_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "professional tennis is a kind of sport", "pln": ["(: cnet_isa_db83510d89 (IsA professional_tennis sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "professional tennis is a kind of tennis", "pln": ["(: cnet_isa_f42d1ef78e (IsA professional_tennis tennis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "professional wrestling is a kind of sport", "pln": ["(: cnet_isa_6b24c94f5e (IsA professional_wrestling sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "professional wrestling is a kind of wrestling", "pln": ["(: cnet_isa_b760627109 (IsA professional_wrestling wrestling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "professionalism is a kind of expertness", "pln": ["(: cnet_isa_b8a483c4c3 (IsA professionalism expertness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "professionalization is a kind of social process", "pln": ["(: cnet_isa_2acdbee542 (IsA professionalization social_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "professor is a kind of academician", "pln": ["(: cnet_isa_154b1cbc6a (IsA professor academician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "professorship is a kind of position", "pln": ["(: cnet_isa_223f6aa74e (IsA professorship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proficiency is a kind of competence", "pln": ["(: cnet_isa_ffb470da42 (IsA proficiency competence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proficiency is a kind of skillfulness", "pln": ["(: cnet_isa_3b5d711c05 (IsA proficiency skillfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "profile is a kind of biography", "pln": ["(: cnet_isa_c2eb72a641 (IsA profile biography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "profile is a kind of chart", "pln": ["(: cnet_isa_e23ad0ac21 (IsA profile chart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "profile is a kind of cross section", "pln": ["(: cnet_isa_01cf19d5e7 (IsA profile cross_section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "profile is a kind of outline", "pln": ["(: cnet_isa_0e4d51f064 (IsA profile outline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "profiling is a kind of identification", "pln": ["(: cnet_isa_8c67177fbf (IsA profiling identification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "profit is a kind of advantage", "pln": ["(: cnet_isa_82cc1e3abb (IsA profit advantage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "profit and loss is a kind of account", "pln": ["(: cnet_isa_f32a1b62be (IsA profit_and_loss account) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "profit sharing is a kind of share", "pln": ["(: cnet_isa_63d3127d16 (IsA profit_sharing share) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "profit taker is a kind of stock trader", "pln": ["(: cnet_isa_7b4f796f0f (IsA profit_taker stock_trader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "profitableness is a kind of profit", "pln": ["(: cnet_isa_ead831737b (IsA profitableness profit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "profiteer is a kind of capitalist", "pln": ["(: cnet_isa_dd0188dac4 (IsA profiteer capitalist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "profiterole is a kind of pastry", "pln": ["(: cnet_isa_465875addb (IsA profiterole pastry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "profligacy is a kind of intemperance", "pln": ["(: cnet_isa_ca8aafca7d (IsA profligacy intemperance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "profoundness is a kind of ultimacy", "pln": ["(: cnet_isa_a3bc76818f (IsA profoundness ultimacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "profundity is a kind of depth", "pln": ["(: cnet_isa_883a4e8298 (IsA profundity depth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "profusion is a kind of abundance", "pln": ["(: cnet_isa_ca6f7a1da7 (IsA profusion abundance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "progenitor is a kind of ancestor", "pln": ["(: cnet_isa_ffe64e51be (IsA progenitor ancestor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "progeria is a kind of abnormality", "pln": ["(: cnet_isa_6e78f02373 (IsA progeria abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "progesterone is a kind of progestin", "pln": ["(: cnet_isa_1d26d7b909 (IsA progesterone progestin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "progestin is a kind of steroid hormone", "pln": ["(: cnet_isa_62cae45521 (IsA progestin steroid_hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prognathism is a kind of condition", "pln": ["(: cnet_isa_85a9525c57 (IsA prognathism condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "progne is a kind of bird genus", "pln": ["(: cnet_isa_a7576a29d2 (IsA progne bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prognosis is a kind of medical diagnosis", "pln": ["(: cnet_isa_d2257b676f (IsA prognosis medical_diagnosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prognosis is a kind of prediction", "pln": ["(: cnet_isa_eff3451049 (IsA prognosis prediction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "program is a kind of set of instruction", "pln": ["(: cnet_isa_3b0b100a56 (IsA program set_of_instruction) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "program is a kind of performance", "pln": ["(: cnet_isa_bb1fe5f406 (IsA program performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "program is a kind of system", "pln": ["(: cnet_isa_618a3fb0b1 (IsA program system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "program is a kind of announcement", "pln": ["(: cnet_isa_a9424e1245 (IsA program announcement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "program is a kind of software", "pln": ["(: cnet_isa_5299313415 (IsA program software) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "program music is a kind of musical composition", "pln": ["(: cnet_isa_c2b23e05c9 (IsA program_music musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "program trading is a kind of trading", "pln": ["(: cnet_isa_00b98859db (IsA program_trading trading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "programma is a kind of decree", "pln": ["(: cnet_isa_852d0969a5 (IsA programma decree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "programmer is a kind of computer user", "pln": ["(: cnet_isa_68be687680 (IsA programmer computer_user) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "programmer is a kind of engineer", "pln": ["(: cnet_isa_046792529f (IsA programmer engineer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "programming is a kind of creating by mental act", "pln": ["(: cnet_isa_706c82c0c9 (IsA programming creating_by_mental_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "programming language is a kind of artificial language", "pln": ["(: cnet_isa_35b86c6d7f (IsA programming_language artificial_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "progress is a kind of motion", "pln": ["(: cnet_isa_86f46124f2 (IsA progress motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "progress is a kind of change of location", "pln": ["(: cnet_isa_ca47c6452e (IsA progress change_of_location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "progress report is a kind of report", "pln": ["(: cnet_isa_7c33eb6896 (IsA progress_report report) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "progression is a kind of sery", "pln": ["(: cnet_isa_5fc483f4a0 (IsA progression sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "progressive is a kind of tense", "pln": ["(: cnet_isa_b880125ff7 (IsA progressive tense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "progressive aspect is a kind of durative", "pln": ["(: cnet_isa_e50ae13c36 (IsA progressive_aspect durative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "progressive party is a kind of party", "pln": ["(: cnet_isa_935f8ac924 (IsA progressive_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "progressive rock is a kind of rock n roll", "pln": ["(: cnet_isa_c050eb3258 (IsA progressive_rock rock_n_roll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "progressive tax is a kind of tax", "pln": ["(: cnet_isa_9a8c9aa3b2 (IsA progressive_tax tax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "progressive vaccinia is a kind of vaccinia", "pln": ["(: cnet_isa_9c1b07ddc0 (IsA progressive_vaccinia vaccinia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "progressiveness is a kind of changeableness", "pln": ["(: cnet_isa_0001b36c2b (IsA progressiveness changeableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "progressivism is a kind of political orientation", "pln": ["(: cnet_isa_e5a028bf2f (IsA progressivism political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "progymnosperm is a kind of gymnosperm", "pln": ["(: cnet_isa_a362fe7492 (IsA progymnosperm gymnosperm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prohibition is a kind of action", "pln": ["(: cnet_isa_ae75f9deff (IsA prohibition action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prohibition is a kind of decree", "pln": ["(: cnet_isa_444541fbfb (IsA prohibition decree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prohibition is a kind of refusal", "pln": ["(: cnet_isa_244f2d69c0 (IsA prohibition refusal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prohibition is a kind of law", "pln": ["(: cnet_isa_98922e06e8 (IsA prohibition law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prohibition is a kind of time period", "pln": ["(: cnet_isa_5da7f61e31 (IsA prohibition time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prohibition party is a kind of party", "pln": ["(: cnet_isa_8acbdfe2c9 (IsA prohibition_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "project is a kind of task", "pln": ["(: cnet_isa_6399570913 (IsA project task) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "project is a kind of plan", "pln": ["(: cnet_isa_391263f875 (IsA project plan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "projectile is a kind of weapon", "pln": ["(: cnet_isa_c53a923f12 (IsA projectile weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "projection is a kind of representation", "pln": ["(: cnet_isa_83f73a25a2 (IsA projection representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "projection is a kind of structure", "pln": ["(: cnet_isa_e71630aaff (IsA projection structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "projection is a kind of prediction", "pln": ["(: cnet_isa_5d7a4e050a (IsA projection prediction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "projection is a kind of visual communication", "pln": ["(: cnet_isa_763a895ecc (IsA projection visual_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "projection is a kind of acoustic phenomenon", "pln": ["(: cnet_isa_79b4bdb0bd (IsA projection acoustic_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "projection is a kind of defense mechanism", "pln": ["(: cnet_isa_139a914ee8 (IsA projection defense_mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "projection is a kind of convex shape", "pln": ["(: cnet_isa_d348942419 (IsA projection convex_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "projectionist is a kind of skilled worker", "pln": ["(: cnet_isa_b0cf91b4ec (IsA projectionist skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "projective geometry is a kind of geometry", "pln": ["(: cnet_isa_e84344870c (IsA projective_geometry geometry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "projective test is a kind of personality test", "pln": ["(: cnet_isa_e852e02e9c (IsA projective_test personality_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "projector is a kind of optical device", "pln": ["(: cnet_isa_f9749392e1 (IsA projector optical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "projector is a kind of optical instrument", "pln": ["(: cnet_isa_a5a3d8595b (IsA projector optical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prokaryote is a kind of organism", "pln": ["(: cnet_isa_15fcca316f (IsA prokaryote organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prolactin is a kind of gonadotropin", "pln": ["(: cnet_isa_0eb25e0b75 (IsA prolactin gonadotropin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prolactin is a kind of lactogen", "pln": ["(: cnet_isa_c1bd1c3f1e (IsA prolactin lactogen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prolamine is a kind of simple protein", "pln": ["(: cnet_isa_d1cfa7b173 (IsA prolamine simple_protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prolapse is a kind of disability", "pln": ["(: cnet_isa_f1ce0fe862 (IsA prolapse disability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prolate cycloid is a kind of cycloid", "pln": ["(: cnet_isa_275175d542 (IsA prolate_cycloid cycloid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prolegomenon is a kind of introduction", "pln": ["(: cnet_isa_f40ebdfa68 (IsA prolegomenon introduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prolepsis is a kind of rhetorical device", "pln": ["(: cnet_isa_b9649523e0 (IsA prolepsis rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proletarian is a kind of commoner", "pln": ["(: cnet_isa_8bdac06c00 (IsA proletarian commoner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proliferation is a kind of growth", "pln": ["(: cnet_isa_8314d8314e (IsA proliferation growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proliferation is a kind of increase", "pln": ["(: cnet_isa_85a64e2ed7 (IsA proliferation increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proline is a kind of amino acid", "pln": ["(: cnet_isa_79de559089 (IsA proline amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prolixity is a kind of verboseness", "pln": ["(: cnet_isa_cff0f9362c (IsA prolixity verboseness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prolog is a kind of declarative programming language", "pln": ["(: cnet_isa_9faf035dfd (IsA prolog declarative_programming_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prolog is a kind of programming language", "pln": ["(: cnet_isa_27ad81e5be (IsA prolog programming_language) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prologue is a kind of introduction", "pln": ["(: cnet_isa_f7cd03e7ef (IsA prologue introduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prolongation is a kind of continuance", "pln": ["(: cnet_isa_c961f92114 (IsA prolongation continuance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prolonge is a kind of rope", "pln": ["(: cnet_isa_83855f7085 (IsA prolonge rope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prolonge knot is a kind of knot", "pln": ["(: cnet_isa_39ff9dbe92 (IsA prolonge_knot knot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prolonged interrogation is a kind of torture", "pln": ["(: cnet_isa_c545993ef4 (IsA prolonged_interrogation torture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "promenade is a kind of country dance", "pln": ["(: cnet_isa_acc2ab0fa7 (IsA promenade country_dance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "promenade is a kind of march", "pln": ["(: cnet_isa_86b12ea48f (IsA promenade march) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "promenade is a kind of walk", "pln": ["(: cnet_isa_657ce08932 (IsA promenade walk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "promenade is a kind of ball", "pln": ["(: cnet_isa_1fa71d7ab1 (IsA promenade ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "promethium is a kind of metallic element", "pln": ["(: cnet_isa_f880f6ca2f (IsA promethium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prominence is a kind of importance", "pln": ["(: cnet_isa_94f5c97c32 (IsA prominence importance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prominence is a kind of standing", "pln": ["(: cnet_isa_8dd615e66f (IsA prominence standing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "promiscuity is a kind of sexual activity", "pln": ["(: cnet_isa_c73904fd6a (IsA promiscuity sexual_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "promise is a kind of expectation", "pln": ["(: cnet_isa_104ad3bdf4 (IsA promise expectation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "promise is a kind of commitment", "pln": ["(: cnet_isa_af611443e9 (IsA promise commitment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "promise is a kind of speech act", "pln": ["(: cnet_isa_169eab98b7 (IsA promise speech_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "promised land is a kind of heaven", "pln": ["(: cnet_isa_6d4d761d63 (IsA promised_land heaven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "promisee is a kind of communicator", "pln": ["(: cnet_isa_f28a05adde (IsA promisee communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "promiser is a kind of communicator", "pln": ["(: cnet_isa_e8f4889417 (IsA promiser communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "promontory is a kind of natural elevation", "pln": ["(: cnet_isa_2f49ed7dc9 (IsA promontory natural_elevation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "promoter is a kind of advertiser", "pln": ["(: cnet_isa_cee7fe53c9 (IsA promoter advertiser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "promotion is a kind of change", "pln": ["(: cnet_isa_0b1a486c9e (IsA promotion change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "promotion is a kind of encouragement", "pln": ["(: cnet_isa_4ec4e97f60 (IsA promotion encouragement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "promotion is a kind of message", "pln": ["(: cnet_isa_e4d1d514d5 (IsA promotion message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "promotion system is a kind of system", "pln": ["(: cnet_isa_0e7a2cb182 (IsA promotion_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "promotional expense is a kind of business expense", "pln": ["(: cnet_isa_53980a121d (IsA promotional_expense business_expense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prompt is a kind of cue", "pln": ["(: cnet_isa_285b84e5c9 (IsA prompt cue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prompt is a kind of electronic communication", "pln": ["(: cnet_isa_99cf86eab7 (IsA prompt electronic_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "prompt box is a kind of booth", "pln": ["(: cnet_isa_07e9543b48 (IsA prompt_box booth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "promptbook is a kind of script", "pln": ["(: cnet_isa_87fc29fbc2 (IsA promptbook script) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prompter is a kind of device", "pln": ["(: cnet_isa_29ec07532b (IsA prompter device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prompter is a kind of assistant", "pln": ["(: cnet_isa_dbf1c97a28 (IsA prompter assistant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "promptness is a kind of celerity", "pln": ["(: cnet_isa_50c2830ac1 (IsA promptness celerity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "promulgation is a kind of announcement", "pln": ["(: cnet_isa_4e57d439f6 (IsA promulgation announcement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "promulgator is a kind of lawgiver", "pln": ["(: cnet_isa_be6f868aeb (IsA promulgator lawgiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "promycelium is a kind of basidium", "pln": ["(: cnet_isa_a18a68e341 (IsA promycelium basidium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pronation is a kind of rotation", "pln": ["(: cnet_isa_5eb2884f98 (IsA pronation rotation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pronator is a kind of muscle", "pln": ["(: cnet_isa_ce2e21553d (IsA pronator muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proneness is a kind of disposition", "pln": ["(: cnet_isa_f756388291 (IsA proneness disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prong is a kind of projection", "pln": ["(: cnet_isa_21a5f45e60 (IsA prong projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pronghorn is a kind of ruminant", "pln": ["(: cnet_isa_fa5fd1dce9 (IsA pronghorn ruminant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pronominal phrase is a kind of phrase", "pln": ["(: cnet_isa_c8e2ca8a65 (IsA pronominal_phrase phrase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pronoun is a kind of part of speech", "pln": ["(: cnet_isa_2d705bf2e6 (IsA pronoun part_of_speech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pronoun is a kind of function word", "pln": ["(: cnet_isa_bcf56aaab0 (IsA pronoun function_word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pronouncement is a kind of declaration", "pln": ["(: cnet_isa_8eac825843 (IsA pronouncement declaration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pronucleus is a kind of nucleus", "pln": ["(: cnet_isa_ec4ea4e28a (IsA pronucleus nucleus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pronunciation is a kind of speech", "pln": ["(: cnet_isa_df46188de8 (IsA pronunciation speech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pronunciation is a kind of utterance", "pln": ["(: cnet_isa_f3fd6d43f6 (IsA pronunciation utterance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proof is a kind of photographic print", "pln": ["(: cnet_isa_62d18736df (IsA proof photographic_print) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proof is a kind of evidence", "pln": ["(: cnet_isa_106c50ea64 (IsA proof evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proof is a kind of argument", "pln": ["(: cnet_isa_052d5f225d (IsA proof argument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proof is a kind of impression", "pln": ["(: cnet_isa_379f151e97 (IsA proof impression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proof is a kind of measure", "pln": ["(: cnet_isa_522e0a8b14 (IsA proof measure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proof spirit is a kind of alcohol", "pln": ["(: cnet_isa_6ba0ebb382 (IsA proof_spirit alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "proofreader is a kind of printer", "pln": ["(: cnet_isa_d76e970eec (IsA proofreader printer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prop is a kind of support", "pln": ["(: cnet_isa_83380db786 (IsA prop support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prop root is a kind of root", "pln": ["(: cnet_isa_6e77edfc04 (IsA prop_root root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propaedeutic is a kind of course", "pln": ["(: cnet_isa_29161ded51 (IsA propaedeutic course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propaganda is a kind of information", "pln": ["(: cnet_isa_18e78309dc (IsA propaganda information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propagandist is a kind of communicator", "pln": ["(: cnet_isa_045b37d856 (IsA propagandist communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propagation is a kind of dissemination", "pln": ["(: cnet_isa_d44ad9ae49 (IsA propagation dissemination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propagation is a kind of physical phenomenon", "pln": ["(: cnet_isa_354fac46f1 (IsA propagation physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propagator is a kind of botanist", "pln": ["(: cnet_isa_2d98d1c7d9 (IsA propagator botanist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propagator is a kind of communicator", "pln": ["(: cnet_isa_cfb8dd3f52 (IsA propagator communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propanal is a kind of aldehyde", "pln": ["(: cnet_isa_6876219335 (IsA propanal aldehyde) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propane is a kind of alkane", "pln": ["(: cnet_isa_a5694f3230 (IsA propane alkane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propane is a kind of fuel", "pln": ["(: cnet_isa_aebbbdb39d (IsA propane fuel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propane is a kind of gas", "pln": ["(: cnet_isa_f70f6fff5c (IsA propane gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propanol is a kind of alcohol", "pln": ["(: cnet_isa_1524b2e2c8 (IsA propanol alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proparoxytone is a kind of word", "pln": ["(: cnet_isa_58646121b1 (IsA proparoxytone word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propellant is a kind of substance", "pln": ["(: cnet_isa_f3a0d03e7e (IsA propellant substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propellant explosive is a kind of explosive", "pln": ["(: cnet_isa_ed3f0f0164 (IsA propellant_explosive explosive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propeller is a kind of mechanical device", "pln": ["(: cnet_isa_acd11715cd (IsA propeller mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propeller plane is a kind of airplane", "pln": ["(: cnet_isa_35729edaaf (IsA propeller_plane airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propenal is a kind of aldehyde", "pln": ["(: cnet_isa_c2be55d51a (IsA propenal aldehyde) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propenoate is a kind of salt", "pln": ["(: cnet_isa_a01b12a9b8 (IsA propenoate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propenoic acid is a kind of carboxylic acid", "pln": ["(: cnet_isa_d96e8f511a (IsA propenoic_acid carboxylic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propenonitrile is a kind of nitrile", "pln": ["(: cnet_isa_4d3c18c8b7 (IsA propenonitrile nitrile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proper fraction is a kind of fraction", "pln": ["(: cnet_isa_5ea8e70bf8 (IsA proper_fraction fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proper noun is a kind of noun", "pln": ["(: cnet_isa_56289a7eac (IsA proper_noun noun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "property is a kind of object", "pln": ["(: cnet_isa_ed37253f68 (IsA property object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "property is a kind of attribute", "pln": ["(: cnet_isa_62ab5ba443 (IsA property attribute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "property is a kind of concept", "pln": ["(: cnet_isa_78c7ad5573 (IsA property concept) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "property is a kind of possession", "pln": ["(: cnet_isa_e3941f66ba (IsA property possession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "property line is a kind of boundary line", "pln": ["(: cnet_isa_137b408449 (IsA property_line boundary_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "property man is a kind of stagehand", "pln": ["(: cnet_isa_820ab1fbf6 (IsA property_man stagehand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "property right is a kind of ownership", "pln": ["(: cnet_isa_bf8cf42a66 (IsA property_right ownership) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "property settlement is a kind of settlement", "pln": ["(: cnet_isa_33a50bbcc7 (IsA property_settlement settlement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "property tax is a kind of capital levy", "pln": ["(: cnet_isa_c6c78c7eb8 (IsA property_tax capital_levy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prophase is a kind of phase of cell division", "pln": ["(: cnet_isa_55f1db1869 (IsA prophase phase_of_cell_division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prophase cell is a kind of cell chromosome duplicated", "pln": ["(: cnet_isa_89850de62f (IsA prophase_cell cell_chromosome_duplicated) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prophase cell is a kind of cell undergoing meiosis", "pln": ["(: cnet_isa_c6fc28224d (IsA prophase_cell cell_undergoing_meiosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prophase cell is a kind of eukaryotic cell", "pln": ["(: cnet_isa_8165929629 (IsA prophase_cell eukaryotic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prophecy is a kind of prediction", "pln": ["(: cnet_isa_f5d939c4b3 (IsA prophecy prediction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prophet is a kind of diviner", "pln": ["(: cnet_isa_061364256c (IsA prophet diviner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prophet is a kind of religionist", "pln": ["(: cnet_isa_e41764c09a (IsA prophet religionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prophetess is a kind of prophet", "pln": ["(: cnet_isa_cf993d7222 (IsA prophetess prophet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prophylaxis is a kind of prevention", "pln": ["(: cnet_isa_a7aac3351e (IsA prophylaxis prevention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prophyll is a kind of plant part", "pln": ["(: cnet_isa_07796a3d61 (IsA prophyll plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propionic acid is a kind of carboxylic acid", "pln": ["(: cnet_isa_1eeeaf9acd (IsA propionic_acid carboxylic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propjet is a kind of propeller plane", "pln": ["(: cnet_isa_df1aee0760 (IsA propjet propeller_plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proportion is a kind of magnitude", "pln": ["(: cnet_isa_7fc75dae6c (IsA proportion magnitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proportion is a kind of placement", "pln": ["(: cnet_isa_46cf0103fd (IsA proportion placement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proportion is a kind of magnitude relation", "pln": ["(: cnet_isa_27af4b4850 (IsA proportion magnitude_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proportion is a kind of quotient", "pln": ["(: cnet_isa_0e575e37b5 (IsA proportion quotient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proportional is a kind of quantity", "pln": ["(: cnet_isa_a5d5234e77 (IsA proportional quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proportional counter tube is a kind of counter tube", "pln": ["(: cnet_isa_b9ec77f6fa (IsA proportional_counter_tube counter_tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proportional font is a kind of font", "pln": ["(: cnet_isa_5dfaca6f6d (IsA proportional_font font) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proportional representation is a kind of representation", "pln": ["(: cnet_isa_b9a0e85c5d (IsA proportional_representation representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proportional tax is a kind of tax", "pln": ["(: cnet_isa_64490273d3 (IsA proportional_tax tax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proportionality is a kind of ratio", "pln": ["(: cnet_isa_1c2aeb7762 (IsA proportionality ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proposal is a kind of message", "pln": ["(: cnet_isa_aa6f9bde83 (IsA proposal message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proposal is a kind of speech act", "pln": ["(: cnet_isa_76f6585486 (IsA proposal speech_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proposer is a kind of originator", "pln": ["(: cnet_isa_5861f41d11 (IsA proposer originator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proposition is a kind of undertaking", "pln": ["(: cnet_isa_611b11186f (IsA proposition undertaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proposition is a kind of offer", "pln": ["(: cnet_isa_7ce36119eb (IsA proposition offer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proposition is a kind of statement", "pln": ["(: cnet_isa_a5c2a1d95a (IsA proposition statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propositional logic is a kind of symbolic logic", "pln": ["(: cnet_isa_2871598cef (IsA propositional_logic symbolic_logic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propositus is a kind of person", "pln": ["(: cnet_isa_f4c287eb1d (IsA propositus person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proprietary colony is a kind of colony", "pln": ["(: cnet_isa_4fd7796eba (IsA proprietary_colony colony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proprietorship is a kind of ownership", "pln": ["(: cnet_isa_abacb315d6 (IsA proprietorship ownership) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proprietorship certificate is a kind of security", "pln": ["(: cnet_isa_d1acadf0f7 (IsA proprietorship_certificate security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proprietress is a kind of owner", "pln": ["(: cnet_isa_77c24b0d93 (IsA proprietress owner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propriety is a kind of demeanor", "pln": ["(: cnet_isa_91422db84b (IsA propriety demeanor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proprioception is a kind of interoception", "pln": ["(: cnet_isa_25a55e830d (IsA proprioception interoception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proprioceptor is a kind of nerve ending", "pln": ["(: cnet_isa_ab1081d8c5 (IsA proprioceptor nerve_ending) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proprionamide is a kind of amide", "pln": ["(: cnet_isa_167dbd9d3a (IsA proprionamide amide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prop is a kind of deference", "pln": ["(: cnet_isa_862095c742 (IsA prop deference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propulsion is a kind of act", "pln": ["(: cnet_isa_ba0c25c0b1 (IsA propulsion act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propulsion is a kind of force", "pln": ["(: cnet_isa_ec495d90ee (IsA propulsion force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propulsion system is a kind of system", "pln": ["(: cnet_isa_39b1035793 (IsA propulsion_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propyl is a kind of group", "pln": ["(: cnet_isa_8b630f85e8 (IsA propyl group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propylene is a kind of gas", "pln": ["(: cnet_isa_513f885218 (IsA propylene gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propylene glycol is a kind of antifreeze", "pln": ["(: cnet_isa_fa8b9c5e7e (IsA propylene_glycol antifreeze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propylene glycol is a kind of humectant", "pln": ["(: cnet_isa_db8ed34b50 (IsA propylene_glycol humectant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "propylthiouracil is a kind of organic compound", "pln": ["(: cnet_isa_a9eabdd290 (IsA propylthiouracil organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proration is a kind of coordination", "pln": ["(: cnet_isa_c906b58c25 (IsA proration coordination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prorogation is a kind of discontinuance", "pln": ["(: cnet_isa_3bcd8939a7 (IsA prorogation discontinuance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prosauropoda is a kind of animal order", "pln": ["(: cnet_isa_a315895f97 (IsA prosauropoda animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proscenium is a kind of stage", "pln": ["(: cnet_isa_cd48fdecea (IsA proscenium stage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proscenium is a kind of wall", "pln": ["(: cnet_isa_d9e5c34a88 (IsA proscenium wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proscenium arch is a kind of arch", "pln": ["(: cnet_isa_250c771821 (IsA proscenium_arch arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prosciutto is a kind of ham", "pln": ["(: cnet_isa_9fe01e443b (IsA prosciutto ham) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prose is a kind of expressive style", "pln": ["(: cnet_isa_55e3ee02a7 (IsA prose expressive_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prose is a kind of writing style", "pln": ["(: cnet_isa_6c683c37ad (IsA prose writing_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prose poem is a kind of prose", "pln": ["(: cnet_isa_8a5ce1d90b (IsA prose_poem prose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prosecution is a kind of collection", "pln": ["(: cnet_isa_11252a92e9 (IsA prosecution collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prosecution is a kind of legal action", "pln": ["(: cnet_isa_8f101b32fc (IsA prosecution legal_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prosecutor is a kind of lawyer", "pln": ["(: cnet_isa_ba4a333835 (IsA prosecutor lawyer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prosecutor is a kind of official", "pln": ["(: cnet_isa_6ace3b63aa (IsA prosecutor official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prosecutor and judge is a kind of people in trial", "pln": ["(: cnet_isa_732cfae43b (IsA prosecutor_and_judge people_in_trial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proselyte is a kind of convert", "pln": ["(: cnet_isa_173a941bc2 (IsA proselyte convert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "proselytism is a kind of conversion", "pln": ["(: cnet_isa_c220515ae6 (IsA proselytism conversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "proselytism is a kind of persuasion", "pln": ["(: cnet_isa_ede2d4492b (IsA proselytism persuasion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prosimian is a kind of primate", "pln": ["(: cnet_isa_d708824170 (IsA prosimian primate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prosimii is a kind of animal order", "pln": ["(: cnet_isa_7b1efc5e43 (IsA prosimii animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prosiness is a kind of commonness", "pln": ["(: cnet_isa_9ead6bf651 (IsA prosiness commonness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prosody is a kind of poetic", "pln": ["(: cnet_isa_9a8a33a833 (IsA prosody poetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "prosody is a kind of manner of speaking", "pln": ["(: cnet_isa_68d801cb73 (IsA prosody manner_of_speaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prosopis is a kind of rosid dicot genus", "pln": ["(: cnet_isa_e1eac222f1 (IsA prosopis rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prosopium is a kind of fish genus", "pln": ["(: cnet_isa_bed8fc51f0 (IsA prosopium fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prospect is a kind of potential", "pln": ["(: cnet_isa_7c925d3a45 (IsA prospect potential) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prospector is a kind of miner", "pln": ["(: cnet_isa_93f14799cf (IsA prospector miner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "prospectus is a kind of offer", "pln": ["(: cnet_isa_8cc7e2af5f (IsA prospectus offer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prosperity is a kind of economic condition", "pln": ["(: cnet_isa_1720a984fb (IsA prosperity economic_condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prosperity is a kind of good fortune", "pln": ["(: cnet_isa_c2ddfff50b (IsA prosperity good_fortune) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prostaglandin is a kind of autacoid", "pln": ["(: cnet_isa_73d3e5b5ee (IsA prostaglandin autacoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prostate cancer is a kind of adenocarcinoma", "pln": ["(: cnet_isa_ffd8e7b7c3 (IsA prostate_cancer adenocarcinoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prostate gland is a kind of endocrine gland", "pln": ["(: cnet_isa_0a38290e5a (IsA prostate_gland endocrine_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prostate specific antigen is a kind of protein", "pln": ["(: cnet_isa_0fbe30ce4a (IsA prostate_specific_antigen protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "prostatectomy is a kind of ablation", "pln": ["(: cnet_isa_bbc3161a2a (IsA prostatectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "prostatitis is a kind of inflammation", "pln": ["(: cnet_isa_7413af1fcd (IsA prostatitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prosthesis is a kind of artificial hand or leg", "pln": ["(: cnet_isa_3760399b77 (IsA prosthesis artificial_hand_or_leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prosthesis is a kind of corrective", "pln": ["(: cnet_isa_7310f2f31d (IsA prosthesis corrective) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prosthetic is a kind of medicine", "pln": ["(: cnet_isa_da578c8d36 (IsA prosthetic medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prosthetist is a kind of expert", "pln": ["(: cnet_isa_c87379c683 (IsA prosthetist expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prosthion is a kind of craniometric point", "pln": ["(: cnet_isa_847f79cc97 (IsA prosthion craniometric_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prosthodontic is a kind of dentistry", "pln": ["(: cnet_isa_e77ed93b18 (IsA prosthodontic dentistry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prosthodontist is a kind of dentist", "pln": ["(: cnet_isa_35124775f8 (IsA prosthodontist dentist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "prostitute is a kind of woman", "pln": ["(: cnet_isa_ca05752266 (IsA prostitute woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prostitution is a kind of vice crime", "pln": ["(: cnet_isa_2dcb732ed8 (IsA prostitution vice_crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prostration is a kind of compliance", "pln": ["(: cnet_isa_0c1b3d583b (IsA prostration compliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prostration is a kind of motion", "pln": ["(: cnet_isa_2947a2b47e (IsA prostration motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protactinium is a kind of metallic element", "pln": ["(: cnet_isa_4ab65c5475 (IsA protactinium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protagonist is a kind of fictional character", "pln": ["(: cnet_isa_47b7d5a8a0 (IsA protagonist fictional_character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protamine is a kind of simple protein", "pln": ["(: cnet_isa_bbf39f6ef5 (IsA protamine simple_protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protanopia is a kind of red green dichromacy", "pln": ["(: cnet_isa_111de89827 (IsA protanopia red_green_dichromacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protea is a kind of shrub", "pln": ["(: cnet_isa_7d3a5214d0 (IsA protea shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "proteaceae is a kind of dicot family", "pln": ["(: cnet_isa_97e4a266b3 (IsA proteaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proteale is a kind of plant order", "pln": ["(: cnet_isa_d7a9e46101 (IsA proteale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protease is a kind of enzyme", "pln": ["(: cnet_isa_7811fd3826 (IsA protease enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protease inhibitor is a kind of antiviral", "pln": ["(: cnet_isa_40aa0226b6 (IsA protease_inhibitor antiviral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protection is a kind of activity", "pln": ["(: cnet_isa_df96b54a62 (IsA protection activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protection is a kind of extortion", "pln": ["(: cnet_isa_0b0d0af76f (IsA protection extortion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protection is a kind of imposition", "pln": ["(: cnet_isa_6d61dd2bf4 (IsA protection imposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protection is a kind of security", "pln": ["(: cnet_isa_ef06bc0678 (IsA protection security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protectionism is a kind of economic policy", "pln": ["(: cnet_isa_52cc511a79 (IsA protectionism economic_policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protectionist is a kind of advocate", "pln": ["(: cnet_isa_bd2351f073 (IsA protectionist advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protective coloration is a kind of coloration", "pln": ["(: cnet_isa_696be774c1 (IsA protective_coloration coloration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protective covering is a kind of body covering", "pln": ["(: cnet_isa_62f089f7e8 (IsA protective_covering body_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "protective covering is a kind of covering", "pln": ["(: cnet_isa_1b77228a26 (IsA protective_covering covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protective fold is a kind of flap", "pln": ["(: cnet_isa_80b5031797 (IsA protective_fold flap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protective garment is a kind of clothing", "pln": ["(: cnet_isa_173655f22f (IsA protective_garment clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protective tariff is a kind of duty", "pln": ["(: cnet_isa_7db2a1ecfa (IsA protective_tariff duty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "protectiveness is a kind of quality", "pln": ["(: cnet_isa_ec3ced0959 (IsA protectiveness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protectiveness is a kind of affection", "pln": ["(: cnet_isa_dbc8a0cebc (IsA protectiveness affection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "protectorate is a kind of district", "pln": ["(: cnet_isa_ac968fc771 (IsA protectorate district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protectorship is a kind of position", "pln": ["(: cnet_isa_ed79307bb6 (IsA protectorship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "protege is a kind of recipient", "pln": ["(: cnet_isa_32e303fb2b (IsA protege recipient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protegee is a kind of protege", "pln": ["(: cnet_isa_0f4d35f1d8 (IsA protegee protege) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proteidae is a kind of amphibian genus", "pln": ["(: cnet_isa_c8f2a9cba9 (IsA proteidae amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protein is a kind of macromolecule", "pln": ["(: cnet_isa_6aec6f027a (IsA protein macromolecule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protein folding is a kind of organic process", "pln": ["(: cnet_isa_ebd998f4de (IsA protein_folding organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protein molecule is a kind of molecule", "pln": ["(: cnet_isa_01b66abb27 (IsA protein_molecule molecule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protele is a kind of mammal genus", "pln": ["(: cnet_isa_79579a8a8b (IsA protele mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proteolysis is a kind of chemical process", "pln": ["(: cnet_isa_83f5912a96 (IsA proteolysis chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proteome is a kind of protein", "pln": ["(: cnet_isa_da33022acd (IsA proteome protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proteomic is a kind of genetic", "pln": ["(: cnet_isa_045f485057 (IsA proteomic genetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proteosome vaccine is a kind of vaccine", "pln": ["(: cnet_isa_84e724226b (IsA proteosome_vaccine vaccine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proterochampsa is a kind of reptile genus", "pln": ["(: cnet_isa_6015bf722a (IsA proterochampsa reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protest is a kind of resistance", "pln": ["(: cnet_isa_7f9d56409a (IsA protest resistance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "protest is a kind of objection", "pln": ["(: cnet_isa_9271a08ea5 (IsA protest objection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protest march is a kind of civil disobedience", "pln": ["(: cnet_isa_73a61c20d5 (IsA protest_march civil_disobedience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protest march is a kind of demonstration", "pln": ["(: cnet_isa_10f40fd57b (IsA protest_march demonstration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protestant is a kind of christian", "pln": ["(: cnet_isa_e5d7ea2a69 (IsA protestant christian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "protestant church is a kind of church", "pln": ["(: cnet_isa_cf5d33f3b9 (IsA protestant_church church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protestant denomination is a kind of denomination", "pln": ["(: cnet_isa_71a08a688f (IsA protestant_denomination denomination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protestantism is a kind of christianity", "pln": ["(: cnet_isa_c02bc9fc50 (IsA protestantism christianity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protestation is a kind of declaration", "pln": ["(: cnet_isa_874f167ed3 (IsA protestation declaration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proteus is a kind of amphibian genus", "pln": ["(: cnet_isa_70bb9cf6e8 (IsA proteus amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prothalamion is a kind of epithalamium", "pln": ["(: cnet_isa_75f6bc5231 (IsA prothalamion epithalamium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prothalamion is a kind of song", "pln": ["(: cnet_isa_a18dfdff09 (IsA prothalamion song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prothorax is a kind of thorax", "pln": ["(: cnet_isa_ec29be6d14 (IsA prothorax thorax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prothrombin is a kind of coagulation factor", "pln": ["(: cnet_isa_0267faadc1 (IsA prothrombin coagulation_factor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prothrombinase is a kind of coagulation factor", "pln": ["(: cnet_isa_7b1adfbb53 (IsA prothrombinase coagulation_factor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protist is a kind of microorganism", "pln": ["(: cnet_isa_caf041fce1 (IsA protist microorganism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protista is a kind of division", "pln": ["(: cnet_isa_9e2c341ac3 (IsA protista division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protium is a kind of rosid dicot genus", "pln": ["(: cnet_isa_d65e02fe3b (IsA protium rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protium guianense is a kind of incense tree", "pln": ["(: cnet_isa_c679b143b5 (IsA protium_guianense incense_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protium heptaphyllum is a kind of incense tree", "pln": ["(: cnet_isa_adff7d5223 (IsA protium_heptaphyllum incense_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proto indo european is a kind of indo european", "pln": ["(: cnet_isa_c380c70892 (IsA proto_indo_european indo_european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "proto norse is a kind of germanic", "pln": ["(: cnet_isa_9cac5e6c27 (IsA proto_norse germanic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proto oncogene is a kind of gene", "pln": ["(: cnet_isa_0a8b66bac7 (IsA proto_oncogene gene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protoarcheology is a kind of protohistory", "pln": ["(: cnet_isa_d8acbb622c (IsA protoarcheology protohistory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "protoavis is a kind of bird", "pln": ["(: cnet_isa_95ba0ac120 (IsA protoavis bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "protoceratops is a kind of ceratopsian", "pln": ["(: cnet_isa_97c8eb3b58 (IsA protoceratops ceratopsian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protoceratop is a kind of ceratopsian", "pln": ["(: cnet_isa_4fe3c13150 (IsA protoceratop ceratopsian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protocol is a kind of code of conduct", "pln": ["(: cnet_isa_fc907fe88c (IsA protocol code_of_conduct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "protocol is a kind of etiquette", "pln": ["(: cnet_isa_77c422e69d (IsA protocol etiquette) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protocol is a kind of rule", "pln": ["(: cnet_isa_05bbe7c956 (IsA protocol rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protoctist is a kind of microorganism", "pln": ["(: cnet_isa_03d0a1f42b (IsA protoctist microorganism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protoctist family is a kind of family", "pln": ["(: cnet_isa_ed21b552f4 (IsA protoctist_family family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protoctist genus is a kind of genus", "pln": ["(: cnet_isa_4f26135fe2 (IsA protoctist_genus genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protoctist order is a kind of order", "pln": ["(: cnet_isa_cf41eb0cd7 (IsA protoctist_order order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protoctista is a kind of kingdom", "pln": ["(: cnet_isa_746bed73fa (IsA protoctista kingdom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protohippus is a kind of horse", "pln": ["(: cnet_isa_1356e892d6 (IsA protohippus horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protohistory is a kind of archeology", "pln": ["(: cnet_isa_ae491011f9 (IsA protohistory archeology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protology is a kind of discipline", "pln": ["(: cnet_isa_ff85b90a15 (IsA protology discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proton is a kind of nucleon", "pln": ["(: cnet_isa_370c4aa863 (IsA proton nucleon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proton accelerator is a kind of collider", "pln": ["(: cnet_isa_6627d33d97 (IsA proton_accelerator collider) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proton is a kind of component of atom", "pln": ["(: cnet_isa_f2c102a580 (IsA proton component_of_atom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protoplasm is a kind of substance", "pln": ["(: cnet_isa_506a9e847a (IsA protoplasm substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protoplasmic astrocyte is a kind of astrocyte", "pln": ["(: cnet_isa_6847a7bfd9 (IsA protoplasmic_astrocyte astrocyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prototheria is a kind of class", "pln": ["(: cnet_isa_150b07181b (IsA prototheria class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prototherian is a kind of mammal", "pln": ["(: cnet_isa_cc28fa9ce2 (IsA prototherian mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prototype is a kind of model", "pln": ["(: cnet_isa_dd3038d801 (IsA prototype model) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protozoa is a kind of phylum", "pln": ["(: cnet_isa_36c22d7ca9 (IsA protozoa phylum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protozoal infection is a kind of infection", "pln": ["(: cnet_isa_2652ab19a9 (IsA protozoal_infection infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protozoan is a kind of protoctist", "pln": ["(: cnet_isa_6ee318e742 (IsA protozoan protoctist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protozoologist is a kind of zoologist", "pln": ["(: cnet_isa_408cc3c17b (IsA protozoologist zoologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protozoology is a kind of zoology", "pln": ["(: cnet_isa_073d907e8c (IsA protozoology zoology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protractor is a kind of drafting instrument", "pln": ["(: cnet_isa_718cda2a90 (IsA protractor drafting_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "protriptyline is a kind of tricyclic", "pln": ["(: cnet_isa_ab1460ded2 (IsA protriptyline tricyclic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protropin is a kind of somatotropin", "pln": ["(: cnet_isa_2dbb1b160c (IsA protropin somatotropin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protrusion is a kind of change of shape", "pln": ["(: cnet_isa_b74f8e66f0 (IsA protrusion change_of_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protuberance is a kind of condition", "pln": ["(: cnet_isa_a073f07aff (IsA protuberance condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "protura is a kind of animal order", "pln": ["(: cnet_isa_b983553900 (IsA protura animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proturan is a kind of insect", "pln": ["(: cnet_isa_ed3bb1dc71 (IsA proturan insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proud flesh is a kind of granulation", "pln": ["(: cnet_isa_f66ad438c7 (IsA proud_flesh granulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "provencal is a kind of langue d oc", "pln": ["(: cnet_isa_52164a4af7 (IsA provencal langue_d_oc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proverb is a kind of saying", "pln": ["(: cnet_isa_70bed38e4f (IsA proverb saying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "providence is a kind of care", "pln": ["(: cnet_isa_216d6d10c5 (IsA providence care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "providence is a kind of prudence", "pln": ["(: cnet_isa_992c3e0561 (IsA providence prudence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "providence is a kind of fortune", "pln": ["(: cnet_isa_375dd48b4b (IsA providence fortune) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "provider is a kind of benefactor", "pln": ["(: cnet_isa_eaf14dffe7 (IsA provider benefactor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "province is a kind of sphere", "pln": ["(: cnet_isa_97ba2da9eb (IsA province sphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "provincial is a kind of official", "pln": ["(: cnet_isa_b72fc6b414 (IsA provincial official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "provincial capital is a kind of capital", "pln": ["(: cnet_isa_352f84ff9f (IsA provincial_capital capital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "provincial capital is a kind of city", "pln": ["(: cnet_isa_77970baa0f (IsA provincial_capital city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "provincialism is a kind of narrow mindedness", "pln": ["(: cnet_isa_c085dde522 (IsA provincialism narrow_mindedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proving ground is a kind of workplace", "pln": ["(: cnet_isa_c54e77cf72 (IsA proving_ground workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "provirus is a kind of complementary dna", "pln": ["(: cnet_isa_21e08d1909 (IsA provirus complementary_dna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "provision is a kind of activity", "pln": ["(: cnet_isa_4bcc21e8cc (IsA provision activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "provision is a kind of condition", "pln": ["(: cnet_isa_ca1ea84340 (IsA provision condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "provision is a kind of store", "pln": ["(: cnet_isa_9604d4f918 (IsA provision store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "provitamin is a kind of hydrocarbon", "pln": ["(: cnet_isa_dd6a696bd6 (IsA provitamin hydrocarbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "provitamin is a kind of provitamin", "pln": ["(: cnet_isa_2168e850f6 (IsA provitamin provitamin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "provocation is a kind of encouragement", "pln": ["(: cnet_isa_536c0254b5 (IsA provocation encouragement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "provost is a kind of academic administrator", "pln": ["(: cnet_isa_b3db500506 (IsA provost academic_administrator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "provost court is a kind of military court", "pln": ["(: cnet_isa_8d2ac74e2a (IsA provost_court military_court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "provost guard is a kind of detachment", "pln": ["(: cnet_isa_31234ded02 (IsA provost_guard detachment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "provost marshal is a kind of military policeman", "pln": ["(: cnet_isa_fca88c585e (IsA provost_marshal military_policeman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prowl is a kind of walk", "pln": ["(: cnet_isa_0f07b5e1a5 (IsA prowl walk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prowler is a kind of intruder", "pln": ["(: cnet_isa_942cc07cc4 (IsA prowler intruder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proxemic is a kind of social science", "pln": ["(: cnet_isa_20d8e293ea (IsA proxemic social_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proximity is a kind of nearness", "pln": ["(: cnet_isa_5354de428a (IsA proximity nearness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proximity is a kind of gestalt law of organization", "pln": ["(: cnet_isa_61b59df036 (IsA proximity gestalt_law_of_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proximity is a kind of vicinity", "pln": ["(: cnet_isa_e69839be36 (IsA proximity vicinity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proxy is a kind of power of attorney", "pln": ["(: cnet_isa_3d25cf6644 (IsA proxy power_of_attorney) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proxy is a kind of agent", "pln": ["(: cnet_isa_c2b2ac1b59 (IsA proxy agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proxy fight is a kind of takeover attempt", "pln": ["(: cnet_isa_8e7969529a (IsA proxy_fight takeover_attempt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "proxy war is a kind of war", "pln": ["(: cnet_isa_a746c04918 (IsA proxy_war war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prude is a kind of unpleasant person", "pln": ["(: cnet_isa_b10fd7f231 (IsA prude unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prudence is a kind of discretion", "pln": ["(: cnet_isa_4ace7c55cf (IsA prudence discretion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prudence is a kind of natural virtue", "pln": ["(: cnet_isa_a34d8357d1 (IsA prudence natural_virtue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prumnopity is a kind of gymnosperm genus", "pln": ["(: cnet_isa_fbaf65c05e (IsA prumnopity gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prune is a kind of dried plum", "pln": ["(: cnet_isa_c2e731f444 (IsA prune dried_plum) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prune is a kind of dried fruit", "pln": ["(: cnet_isa_bdc0848ef5 (IsA prune dried_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prune cake is a kind of cake", "pln": ["(: cnet_isa_904412dfa0 (IsA prune_cake cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "prune whip is a kind of whip", "pln": ["(: cnet_isa_b2db83855c (IsA prune_whip whip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prunella is a kind of bird genus", "pln": ["(: cnet_isa_2f51c7f4c1 (IsA prunella bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prunella is a kind of asterid dicot genus", "pln": ["(: cnet_isa_9de2475e63 (IsA prunella asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prunellidae is a kind of bird family", "pln": ["(: cnet_isa_eaf3b2f320 (IsA prunellidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pruner is a kind of pruning saw", "pln": ["(: cnet_isa_7da4585bb6 (IsA pruner pruning_saw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pruner is a kind of worker", "pln": ["(: cnet_isa_04f74fb939 (IsA pruner worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pruning is a kind of trim", "pln": ["(: cnet_isa_4744a8902c (IsA pruning trim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pruning is a kind of cutting", "pln": ["(: cnet_isa_bac759b8e1 (IsA pruning cutting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pruning knife is a kind of knife", "pln": ["(: cnet_isa_2dfaed99c7 (IsA pruning_knife knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pruning saw is a kind of handsaw", "pln": ["(: cnet_isa_207f61a55d (IsA pruning_saw handsaw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pruning shear is a kind of shear", "pln": ["(: cnet_isa_7834b2d1fa (IsA pruning_shear shear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pruno is a kind of hooch", "pln": ["(: cnet_isa_c36805f127 (IsA pruno hooch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prunus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_1cb131b97c (IsA prunus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prurience is a kind of amorousness", "pln": ["(: cnet_isa_8b09c0a8c8 (IsA prurience amorousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prurigo is a kind of skin disease", "pln": ["(: cnet_isa_359cf3fbdc (IsA prurigo skin_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pruritus is a kind of itch", "pln": ["(: cnet_isa_aaadb84fe0 (IsA pruritus itch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pruritus ani is a kind of pruritus", "pln": ["(: cnet_isa_e269609c84 (IsA pruritus_ani pruritus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pruritus vulvae is a kind of pruritus", "pln": ["(: cnet_isa_4d71543b4d (IsA pruritus_vulvae pruritus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prussian is a kind of german", "pln": ["(: cnet_isa_6ceb4c6248 (IsA prussian german) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "prussian blue is a kind of blue", "pln": ["(: cnet_isa_53340fc980 (IsA prussian_blue blue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "przewalski s horse is a kind of wild horse", "pln": ["(: cnet_isa_666e36c481 (IsA przewalski_s_horse wild_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psa blood test is a kind of blood test", "pln": ["(: cnet_isa_a484b6261a (IsA psa_blood_test blood_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psalm is a kind of sacred text", "pln": ["(: cnet_isa_9c660f6462 (IsA psalm sacred_text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psalmist is a kind of composer", "pln": ["(: cnet_isa_54bbaaae67 (IsA psalmist composer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psalmody is a kind of singing", "pln": ["(: cnet_isa_8915907f54 (IsA psalmody singing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psalter is a kind of prayer book", "pln": ["(: cnet_isa_190ba5e48b (IsA psalter prayer_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psalterium is a kind of stomach", "pln": ["(: cnet_isa_60a3d65152 (IsA psalterium stomach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psaltery is a kind of stringed instrument", "pln": ["(: cnet_isa_57fbaa8764 (IsA psaltery stringed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psaltriparus is a kind of bird genus", "pln": ["(: cnet_isa_57c78d1d9a (IsA psaltriparus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psammoma is a kind of tumor", "pln": ["(: cnet_isa_d56e181474 (IsA psammoma tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psene is a kind of fish genus", "pln": ["(: cnet_isa_91e594b785 (IsA psene fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "psephologist is a kind of sociologist", "pln": ["(: cnet_isa_2bb3fe9af9 (IsA psephologist sociologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "pseudemys is a kind of reptile genus", "pln": ["(: cnet_isa_aaba7b39e2 (IsA pseudemys reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psephology is a kind of sociology", "pln": ["(: cnet_isa_24becb3e2a (IsA psephology sociology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psephurus is a kind of fish genus", "pln": ["(: cnet_isa_2158f6bafe (IsA psephurus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psetta is a kind of fish genus", "pln": ["(: cnet_isa_0c2e3a2f27 (IsA psetta fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psettichthy is a kind of fish genus", "pln": ["(: cnet_isa_566b5f99b8 (IsA psettichthy fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pseudacris is a kind of amphibian genus", "pln": ["(: cnet_isa_cd044b294b (IsA pseudacris amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pseudaletia is a kind of arthropod genus", "pln": ["(: cnet_isa_5765609157 (IsA pseudaletia arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pseudechis is a kind of reptile genus", "pln": ["(: cnet_isa_8c4b8fc556 (IsA pseudechis reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pseudemy is a kind of reptile genus", "pln": ["(: cnet_isa_a22c948db8 (IsA pseudemy reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pseudepigrapha is a kind of sacred text", "pln": ["(: cnet_isa_0a29da5964 (IsA pseudepigrapha sacred_text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pseudobombax is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_a3772eab1d (IsA pseudobombax dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pseudobulb is a kind of enlargement", "pln": ["(: cnet_isa_44a0ca7c96 (IsA pseudobulb enlargement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pseudococcidae is a kind of arthropod family", "pln": ["(: cnet_isa_5b3c9b5614 (IsA pseudococcidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pseudococcus is a kind of arthropod genus", "pln": ["(: cnet_isa_1d8b3b2b1c (IsA pseudococcus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pseudocolus is a kind of fungus genus", "pln": ["(: cnet_isa_dbd643679e (IsA pseudocolus fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pseudoephedrine is a kind of alkaloid", "pln": ["(: cnet_isa_7dd6ac6c79 (IsA pseudoephedrine alkaloid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pseudohallucination is a kind of hallucination", "pln": ["(: cnet_isa_8c0a19d10a (IsA pseudohallucination hallucination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pseudohermaphrodite is a kind of bisexual", "pln": ["(: cnet_isa_24da56ef78 (IsA pseudohermaphrodite bisexual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pseudohermaphroditism is a kind of birth defect", "pln": ["(: cnet_isa_aeb6552635 (IsA pseudohermaphroditism birth_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pseudolarix is a kind of gymnosperm genus", "pln": ["(: cnet_isa_b4f4abb1cd (IsA pseudolarix gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pseudomonad is a kind of eubacteria", "pln": ["(: cnet_isa_fdaaca6c6f (IsA pseudomonad eubacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pseudomonadale is a kind of animal order", "pln": ["(: cnet_isa_034dbb5a3c (IsA pseudomonadale animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pseudomona is a kind of bacteria genus", "pln": ["(: cnet_isa_857c8b6941 (IsA pseudomona bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pseudomona pyocanea is a kind of bacteria specy", "pln": ["(: cnet_isa_ea514f3ecd (IsA pseudomona_pyocanea bacteria_specy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pseudomonodaceae is a kind of bacteria family", "pln": ["(: cnet_isa_ed14c2960a (IsA pseudomonodaceae bacteria_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pseudonym is a kind of name", "pln": ["(: cnet_isa_33f66f068d (IsA pseudonym name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pseudophloem is a kind of plant tissue", "pln": ["(: cnet_isa_272309b893 (IsA pseudophloem plant_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pseudopleuronecte is a kind of fish genus", "pln": ["(: cnet_isa_33274c5dd5 (IsA pseudopleuronecte fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pseudopod is a kind of process", "pln": ["(: cnet_isa_bf08c96931 (IsA pseudopod process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pseudoryx is a kind of mammal genus", "pln": ["(: cnet_isa_ce3f5694e4 (IsA pseudoryx mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pseudoscience is a kind of fallacy", "pln": ["(: cnet_isa_650ee8b04f (IsA pseudoscience fallacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pseudotaxus is a kind of gymnosperm genus", "pln": ["(: cnet_isa_1e3e55b687 (IsA pseudotaxus gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pseudotsuga is a kind of gymnosperm genus", "pln": ["(: cnet_isa_d1edf92563 (IsA pseudotsuga gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pseudowintera is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_0420f2f56f (IsA pseudowintera magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psi is a kind of letter", "pln": ["(: cnet_isa_5b85c8b170 (IsA psi letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psidium is a kind of dicot genus", "pln": ["(: cnet_isa_7131b8fe8b (IsA psidium dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psilocybin is a kind of hallucinogen", "pln": ["(: cnet_isa_14dcdc1644 (IsA psilocybin hallucinogen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "psilomelane is a kind of mineral", "pln": ["(: cnet_isa_b83da2e9d9 (IsA psilomelane mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psilophytaceae is a kind of fern family", "pln": ["(: cnet_isa_b6a856ffcf (IsA psilophytaceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psilophytale is a kind of plant order", "pln": ["(: cnet_isa_b02472630b (IsA psilophytale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psilophyte is a kind of vascular plant", "pln": ["(: cnet_isa_a56f8a334f (IsA psilophyte vascular_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "psilophyton is a kind of vascular plant", "pln": ["(: cnet_isa_e4c2bc32a5 (IsA psilophyton vascular_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psilopsida is a kind of class", "pln": ["(: cnet_isa_8ae20059d4 (IsA psilopsida class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "psilosis is a kind of bodily process", "pln": ["(: cnet_isa_d77484ea18 (IsA psilosis bodily_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psilosis is a kind of epilation", "pln": ["(: cnet_isa_548a92f2c4 (IsA psilosis epilation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psilotaceae is a kind of fern family", "pln": ["(: cnet_isa_5f02169c71 (IsA psilotaceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psilotale is a kind of plant order", "pln": ["(: cnet_isa_1bd9ad0662 (IsA psilotale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psilotum is a kind of fern genus", "pln": ["(: cnet_isa_e5b6d20d1b (IsA psilotum fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psithyrus is a kind of arthropod genus", "pln": ["(: cnet_isa_f7475c0d9d (IsA psithyrus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psittacidae is a kind of bird family", "pln": ["(: cnet_isa_97a349bbd8 (IsA psittacidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psittaciforme is a kind of animal order", "pln": ["(: cnet_isa_7269ef350f (IsA psittaciforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psittacosaur is a kind of ceratopsian", "pln": ["(: cnet_isa_c6ae7c8980 (IsA psittacosaur ceratopsian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psittacosis is a kind of animal disease", "pln": ["(: cnet_isa_94e9cbf7c4 (IsA psittacosis animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psittacosis is a kind of atypical pneumonia", "pln": ["(: cnet_isa_0ff7a39ce1 (IsA psittacosis atypical_pneumonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psittacula is a kind of bird genus", "pln": ["(: cnet_isa_5533ecf309 (IsA psittacula bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psittacus is a kind of bird genus", "pln": ["(: cnet_isa_a6af31badc (IsA psittacus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psoa is a kind of skeletal muscle", "pln": ["(: cnet_isa_db4c0cab72 (IsA psoa skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psocid is a kind of psocopterous insect", "pln": ["(: cnet_isa_80f981c1df (IsA psocid psocopterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psocidae is a kind of arthropod family", "pln": ["(: cnet_isa_56272901a4 (IsA psocidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psocoptera is a kind of animal order", "pln": ["(: cnet_isa_cdeaa7a48c (IsA psocoptera animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psocopterous insect is a kind of insect", "pln": ["(: cnet_isa_0ef8ce7c44 (IsA psocopterous_insect insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psophia is a kind of bird genus", "pln": ["(: cnet_isa_38c7177df0 (IsA psophia bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psophiidae is a kind of bird family", "pln": ["(: cnet_isa_1aa5199c17 (IsA psophiidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psophocarpus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_0765686ac0 (IsA psophocarpus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psoralea is a kind of rosid dicot genus", "pln": ["(: cnet_isa_3a83e9260f (IsA psoralea rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psoriasis is a kind of skin disease", "pln": ["(: cnet_isa_134abc4010 (IsA psoriasis skin_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psoriatic arthritis is a kind of rheumatoid arthritis", "pln": ["(: cnet_isa_388a9b4eaa (IsA psoriatic_arthritis rheumatoid_arthritis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychedelia is a kind of subculture", "pln": ["(: cnet_isa_2f47e07714 (IsA psychedelia subculture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychedelic rock is a kind of rock n roll", "pln": ["(: cnet_isa_d728315451 (IsA psychedelic_rock rock_n_roll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychiatrist is a kind of specialist", "pln": ["(: cnet_isa_c80907d8eb (IsA psychiatrist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychiatry is a kind of medicine", "pln": ["(: cnet_isa_cc6d3fc97b (IsA psychiatry medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychic is a kind of occultist", "pln": ["(: cnet_isa_102e2b6fca (IsA psychic occultist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "psychic communication is a kind of communication", "pln": ["(: cnet_isa_65af17b513 (IsA psychic_communication communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "psychic energy is a kind of motivation", "pln": ["(: cnet_isa_5cb716597b (IsA psychic_energy motivation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychic phenomena is a kind of psychic communication", "pln": ["(: cnet_isa_109d7a6733 (IsA psychic_phenomena psychic_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "psychoactive drug is a kind of drug", "pln": ["(: cnet_isa_e6308ec228 (IsA psychoactive_drug drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "psychodynamics is a kind of social psychology", "pln": ["(: cnet_isa_af48d5a625 (IsA psychodynamics social_psychology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "psychodynamics is a kind of interrelation", "pln": ["(: cnet_isa_5ed0f49437 (IsA psychodynamics interrelation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychoanalysis is a kind of psychotherapy", "pln": ["(: cnet_isa_248ddb7c83 (IsA psychoanalysis psychotherapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychoanalytic process is a kind of human process", "pln": ["(: cnet_isa_f40fd8532b (IsA psychoanalytic_process human_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychobabble is a kind of jargon", "pln": ["(: cnet_isa_fcbc1fbde0 (IsA psychobabble jargon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychodid is a kind of gnat", "pln": ["(: cnet_isa_01b2bb848e (IsA psychodid gnat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychodidae is a kind of arthropod family", "pln": ["(: cnet_isa_3ae958b49b (IsA psychodidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychodynamic is a kind of social psychology", "pln": ["(: cnet_isa_faf97b541e (IsA psychodynamic social_psychology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychodynamic is a kind of interrelation", "pln": ["(: cnet_isa_4bbdeeeda8 (IsA psychodynamic interrelation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychogenesis is a kind of growth", "pln": ["(: cnet_isa_2b8c58a678 (IsA psychogenesis growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psycholinguist is a kind of linguist", "pln": ["(: cnet_isa_6322c446be (IsA psycholinguist linguist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psycholinguist is a kind of psychologist", "pln": ["(: cnet_isa_854fc79438 (IsA psycholinguist psychologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psycholinguistic is a kind of cognitive psychology", "pln": ["(: cnet_isa_b01e4775e5 (IsA psycholinguistic cognitive_psychology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychological feature is a kind of abstraction", "pln": ["(: cnet_isa_4913e00473 (IsA psychological_feature abstraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychological moment is a kind of moment", "pln": ["(: cnet_isa_fd36f597b7 (IsA psychological_moment moment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychological operation is a kind of operation", "pln": ["(: cnet_isa_07bf6ad923 (IsA psychological_operation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychological state is a kind of condition", "pln": ["(: cnet_isa_685980b749 (IsA psychological_state condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychological warfare is a kind of war", "pln": ["(: cnet_isa_fcb3446255 (IsA psychological_warfare war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychologist is a kind of scientist", "pln": ["(: cnet_isa_1a3a3c63e5 (IsA psychologist scientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychology is a kind of science", "pln": ["(: cnet_isa_a54a8bca6f (IsA psychology science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychology department is a kind of academic department", "pln": ["(: cnet_isa_dd5de2a4df (IsA psychology_department academic_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychometry is a kind of psychology", "pln": ["(: cnet_isa_4cf476ac2b (IsA psychometry psychology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychomotor development is a kind of growth", "pln": ["(: cnet_isa_3137f56b7c (IsA psychomotor_development growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychomotor epilepsy is a kind of epilepsy", "pln": ["(: cnet_isa_2b870693a2 (IsA psychomotor_epilepsy epilepsy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychopharmacology is a kind of pharmacology", "pln": ["(: cnet_isa_95e90ef230 (IsA psychopharmacology pharmacology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychophysicist is a kind of psychologist", "pln": ["(: cnet_isa_95376e4dcd (IsA psychophysicist psychologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychophysic is a kind of experimental psychology", "pln": ["(: cnet_isa_2afd9cae35 (IsA psychophysic experimental_psychology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "psychopomp is a kind of imaginary being", "pln": ["(: cnet_isa_2fffcabe25 (IsA psychopomp imaginary_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychopsis is a kind of monocot genus", "pln": ["(: cnet_isa_c42917d3be (IsA psychopsis monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychopsis krameriana is a kind of butterfly orchid", "pln": ["(: cnet_isa_ac4aa6d338 (IsA psychopsis_krameriana butterfly_orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychopsis papilio is a kind of butterfly orchid", "pln": ["(: cnet_isa_32c9ffa180 (IsA psychopsis_papilio butterfly_orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychosexual development is a kind of growth", "pln": ["(: cnet_isa_b1922e3f06 (IsA psychosexual_development growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychosexuality is a kind of representation", "pln": ["(: cnet_isa_ee37c922cd (IsA psychosexuality representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychosis is a kind of mental disorder", "pln": ["(: cnet_isa_a295603ff6 (IsA psychosis mental_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychosis is a kind of mental state", "pln": ["(: cnet_isa_8d93747f94 (IsA psychosis mental_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychosis is a kind of mental illness", "pln": ["(: cnet_isa_603d26a625 (IsA psychosis mental_illness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychosomatic disorder is a kind of mental disorder", "pln": ["(: cnet_isa_f68ba3ce3e (IsA psychosomatic_disorder mental_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychosurgery is a kind of brain surgery", "pln": ["(: cnet_isa_219439a324 (IsA psychosurgery brain_surgery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychotherapist is a kind of therapist", "pln": ["(: cnet_isa_2916db5ea5 (IsA psychotherapist therapist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "psychotherapy is a kind of therapy", "pln": ["(: cnet_isa_30626c1cef (IsA psychotherapy therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "psychotherapy is a kind of psychiatry", "pln": ["(: cnet_isa_9b41562468 (IsA psychotherapy psychiatry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychotherapy group is a kind of meeting", "pln": ["(: cnet_isa_255de32809 (IsA psychotherapy_group meeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychotic is a kind of sick person", "pln": ["(: cnet_isa_8c491ccbe7 (IsA psychotic sick_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychotic depression is a kind of depressive disorder", "pln": ["(: cnet_isa_3be6c26383 (IsA psychotic_depression depressive_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "psychotria is a kind of asterid dicot genus", "pln": ["(: cnet_isa_8f41bd0ea3 (IsA psychotria asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychotropic agent is a kind of drug", "pln": ["(: cnet_isa_e6fd31e7bc (IsA psychotropic_agent drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "psychrometer is a kind of hygrometer", "pln": ["(: cnet_isa_25ac0339c4 (IsA psychrometer hygrometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "psyllidae is a kind of arthropod family", "pln": ["(: cnet_isa_81c6589181 (IsA psyllidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pt boat is a kind of torpedo boat", "pln": ["(: cnet_isa_2f91e805e4 (IsA pt_boat torpedo_boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ptarmigan is a kind of grouse", "pln": ["(: cnet_isa_2f1397f04f (IsA ptarmigan grouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pteridaceae is a kind of fern family", "pln": ["(: cnet_isa_f9b6c4e7c3 (IsA pteridaceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pteridium is a kind of fern genus", "pln": ["(: cnet_isa_628d1bcc94 (IsA pteridium fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pteridologist is a kind of expert", "pln": ["(: cnet_isa_a4fcfd9909 (IsA pteridologist expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pteridology is a kind of botany", "pln": ["(: cnet_isa_fd184365d6 (IsA pteridology botany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pteridophyta is a kind of division", "pln": ["(: cnet_isa_4868f38db6 (IsA pteridophyta division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pteridophyte is a kind of vascular plant", "pln": ["(: cnet_isa_1b426fb531 (IsA pteridophyte vascular_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pteridospermae is a kind of taxonomic group", "pln": ["(: cnet_isa_23295f3417 (IsA pteridospermae taxonomic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pteridospermopsida is a kind of class", "pln": ["(: cnet_isa_f3c0d2880b (IsA pteridospermopsida class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pteriidae is a kind of mollusk family", "pln": ["(: cnet_isa_0bf30fefc1 (IsA pteriidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pterion is a kind of craniometric point", "pln": ["(: cnet_isa_7e6eea08e4 (IsA pterion craniometric_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pteris is a kind of fern genus", "pln": ["(: cnet_isa_491d7d0d03 (IsA pteris fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pteris cretica is a kind of fern", "pln": ["(: cnet_isa_2723f66890 (IsA pteris_cretica fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pternohyla is a kind of amphibian genus", "pln": ["(: cnet_isa_c5a43c5640 (IsA pternohyla amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pterocarpus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_4f0271ddc6 (IsA pterocarpus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pterocarya is a kind of dicot genus", "pln": ["(: cnet_isa_43e0140544 (IsA pterocarya dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pterocle is a kind of bird genus", "pln": ["(: cnet_isa_c4ad2db000 (IsA pterocle bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pteroclididae is a kind of bird family", "pln": ["(: cnet_isa_c0721975e9 (IsA pteroclididae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pterocnemia is a kind of bird genus", "pln": ["(: cnet_isa_1d7579d67d (IsA pterocnemia bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pterodactyl is a kind of pterosaur", "pln": ["(: cnet_isa_f79626aefd (IsA pterodactyl pterosaur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pterodactylidae is a kind of reptile family", "pln": ["(: cnet_isa_624906b93b (IsA pterodactylidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pterodactylus is a kind of reptile genus", "pln": ["(: cnet_isa_0edd311eb3 (IsA pterodactylus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pterois is a kind of fish genus", "pln": ["(: cnet_isa_e57bc70dcf (IsA pterois fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pteropogon is a kind of herb", "pln": ["(: cnet_isa_ec912fd1aa (IsA pteropogon herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pteropsida is a kind of division", "pln": ["(: cnet_isa_5c5546fa11 (IsA pteropsida division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pteropus is a kind of mammal genus", "pln": ["(: cnet_isa_d90eeaa5a1 (IsA pteropus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pteropus capestratus is a kind of fruit bat", "pln": ["(: cnet_isa_3cb3f14832 (IsA pteropus_capestratus fruit_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pteropus hypomelanus is a kind of fruit bat", "pln": ["(: cnet_isa_8a554ab082 (IsA pteropus_hypomelanus fruit_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pterosaur is a kind of archosaur", "pln": ["(: cnet_isa_95e35588cd (IsA pterosaur archosaur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pterosauria is a kind of animal order", "pln": ["(: cnet_isa_0ff2640c5f (IsA pterosauria animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pterospermum is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_15439567dc (IsA pterospermum dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pterostylis is a kind of monocot genus", "pln": ["(: cnet_isa_2f0825ce01 (IsA pterostylis monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pterygium is a kind of conjunctiva", "pln": ["(: cnet_isa_c7eb72186a (IsA pterygium conjunctiva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pterygoid muscle is a kind of skeletal muscle", "pln": ["(: cnet_isa_4069d876ad (IsA pterygoid_muscle skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pterygoid plexus is a kind of plexus", "pln": ["(: cnet_isa_cea6a23606 (IsA pterygoid_plexus plexus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pterygoid process is a kind of process", "pln": ["(: cnet_isa_7897fd7925 (IsA pterygoid_process process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ptilocercus is a kind of mammal genus", "pln": ["(: cnet_isa_6a73acc95c (IsA ptilocercus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ptilocrinus is a kind of echinoderm genus", "pln": ["(: cnet_isa_dcc06c8099 (IsA ptilocrinus echinoderm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ptilonorhynchidae is a kind of bird family", "pln": ["(: cnet_isa_9c2c7d5c75 (IsA ptilonorhynchidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ptilonorhynchus is a kind of bird genus", "pln": ["(: cnet_isa_e74247f7da (IsA ptilonorhynchus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ptloris is a kind of bird genus", "pln": ["(: cnet_isa_ca20760056 (IsA ptloris bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ptolemaic system is a kind of model", "pln": ["(: cnet_isa_ba3c2bfae5 (IsA ptolemaic_system model) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ptolemy is a kind of dynasty", "pln": ["(: cnet_isa_da2fc38110 (IsA ptolemy dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ptomaine is a kind of food poisoning", "pln": ["(: cnet_isa_fff0495ff3 (IsA ptomaine food_poisoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ptomaine is a kind of amine", "pln": ["(: cnet_isa_862b831cfc (IsA ptomaine amine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ptosis is a kind of prolapse", "pln": ["(: cnet_isa_2cf141707b (IsA ptosis prolapse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "ptyas is a kind of reptile genus", "pln": ["(: cnet_isa_550175e384 (IsA ptyas reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ptyalin is a kind of amylase", "pln": ["(: cnet_isa_e8108b21ee (IsA ptyalin amylase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ptyalism is a kind of salivation", "pln": ["(: cnet_isa_e07c760174 (IsA ptyalism salivation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ptyalith is a kind of calculus", "pln": ["(: cnet_isa_a15eccbdd7 (IsA ptyalith calculus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ptya is a kind of reptile genus", "pln": ["(: cnet_isa_ea544e7611 (IsA ptya reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ptychozoon is a kind of reptile genus", "pln": ["(: cnet_isa_32b236f2b8 (IsA ptychozoon reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pub is a kind of another word for bar", "pln": ["(: cnet_isa_c9067e371c (IsA pub another_word_for_bar) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pub is a kind of place", "pln": ["(: cnet_isa_de38f460b3 (IsA pub place) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pub crawl is a kind of tour", "pln": ["(: cnet_isa_c3a20ac734 (IsA pub_crawl tour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puberty is a kind of challenging time for teenager", "pln": ["(: cnet_isa_bdfbce3c28 (IsA puberty challenging_time_for_teenager) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puberty is a kind of gradual process of sexual development", "pln": ["(: cnet_isa_5174b3ee2b (IsA puberty gradual_process_of_sexual_development) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puberty is a kind of time of life", "pln": ["(: cnet_isa_cabf5486e8 (IsA puberty time_of_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pube is a kind of area", "pln": ["(: cnet_isa_d9153b3a64 (IsA pube area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pubic hair is a kind of hair", "pln": ["(: cnet_isa_1c9fe1accf (IsA pubic_hair hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pubis is a kind of bone", "pln": ["(: cnet_isa_681b0eef9a (IsA pubis bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "public is a kind of body", "pln": ["(: cnet_isa_9bdabe1179 (IsA public body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "public address system is a kind of communication system", "pln": ["(: cnet_isa_b88b604e27 (IsA public_address_system communication_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "public charity is a kind of charity", "pln": ["(: cnet_isa_38c93e32eb (IsA public_charity charity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "public debt is a kind of debt", "pln": ["(: cnet_isa_46305088f6 (IsA public_debt debt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "public defender is a kind of lawyer", "pln": ["(: cnet_isa_366659d32d (IsA public_defender lawyer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "public discussion is a kind of discussion", "pln": ["(: cnet_isa_f40f990a4d (IsA public_discussion discussion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "public domain is a kind of property right", "pln": ["(: cnet_isa_8f8c25481c (IsA public_domain property_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "public easement is a kind of easement", "pln": ["(: cnet_isa_a1c678e9cb (IsA public_easement easement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "public house is a kind of tavern", "pln": ["(: cnet_isa_257b2d135a (IsA public_house tavern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "public knowledge is a kind of cognition", "pln": ["(: cnet_isa_c4a6ca09d0 (IsA public_knowledge cognition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "public law is a kind of law", "pln": ["(: cnet_isa_0cce63be07 (IsA public_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "public library is a kind of library", "pln": ["(: cnet_isa_bf6a4c3faf (IsA public_library library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "public nuisance is a kind of nuisance", "pln": ["(: cnet_isa_cdeac0d005 (IsA public_nuisance nuisance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "public office is a kind of position", "pln": ["(: cnet_isa_fd2e172cef (IsA public_office position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "public opinion is a kind of belief", "pln": ["(: cnet_isa_47232536e6 (IsA public_opinion belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "public property is a kind of property", "pln": ["(: cnet_isa_fbe0fc13c1 (IsA public_property property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "public relation is a kind of promotion", "pln": ["(: cnet_isa_60839591a7 (IsA public_relation promotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "public relation campaign is a kind of advertising campaign", "pln": ["(: cnet_isa_e7aa582f5a (IsA public_relation_campaign advertising_campaign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "public relation person is a kind of person", "pln": ["(: cnet_isa_ff1996e9b4 (IsA public_relation_person person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "public school is a kind of school", "pln": ["(: cnet_isa_6272477daf (IsA public_school school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "public school is a kind of secondary school", "pln": ["(: cnet_isa_53949e42c2 (IsA public_school secondary_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "public servant is a kind of employee", "pln": ["(: cnet_isa_08f73b580b (IsA public_servant employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "public service is a kind of employment", "pln": ["(: cnet_isa_2fbd2bebce (IsA public_service employment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "public speaking is a kind of address", "pln": ["(: cnet_isa_d93bc38c58 (IsA public_speaking address) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "public square is a kind of tract", "pln": ["(: cnet_isa_365c2bc0eb (IsA public_square tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "public toilet is a kind of facility", "pln": ["(: cnet_isa_89bbf23f52 (IsA public_toilet facility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "public toilet is a kind of toilet", "pln": ["(: cnet_isa_035331507d (IsA public_toilet toilet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "public transit is a kind of transportation system", "pln": ["(: cnet_isa_392d168c43 (IsA public_transit transportation_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "public transport is a kind of conveyance", "pln": ["(: cnet_isa_38e99750d2 (IsA public_transport conveyance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "public treasury is a kind of treasury", "pln": ["(: cnet_isa_24590a34b0 (IsA public_treasury treasury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "public work is a kind of structure", "pln": ["(: cnet_isa_7f90ee7d42 (IsA public_work structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "publican is a kind of bartender", "pln": ["(: cnet_isa_5589c6428a (IsA publican bartender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "publication is a kind of commercial enterprise", "pln": ["(: cnet_isa_f2700f6598 (IsA publication commercial_enterprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "publication is a kind of communication", "pln": ["(: cnet_isa_f305fd31c7 (IsA publication communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "publication is a kind of work", "pln": ["(: cnet_isa_0a12a1132a (IsA publication work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "publicist is a kind of communicator", "pln": ["(: cnet_isa_26b8be5018 (IsA publicist communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "publicity is a kind of quality", "pln": ["(: cnet_isa_d5202e5bfa (IsA publicity quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "publisher is a kind of firm", "pln": ["(: cnet_isa_d4a4c433a8 (IsA publisher firm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "publisher is a kind of owner", "pln": ["(: cnet_isa_da70aa4b18 (IsA publisher owner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "publisher is a kind of professional", "pln": ["(: cnet_isa_224336953a (IsA publisher professional) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "publishing conglomerate is a kind of conglomerate", "pln": ["(: cnet_isa_80e4c2718a (IsA publishing_conglomerate conglomerate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puccinia is a kind of fungus genus", "pln": ["(: cnet_isa_7d805bb802 (IsA puccinia fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pucciniaceae is a kind of fungus family", "pln": ["(: cnet_isa_72c3b2a528 (IsA pucciniaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puccoon is a kind of herb", "pln": ["(: cnet_isa_fce06c973c (IsA puccoon herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puce is a kind of brown", "pln": ["(: cnet_isa_fa745ee871 (IsA puce brown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puck is a kind of disk", "pln": ["(: cnet_isa_08655602a6 (IsA puck disk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pucker is a kind of fold", "pln": ["(: cnet_isa_fb043186ca (IsA pucker fold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pudding is a kind of dessert", "pln": ["(: cnet_isa_c6ff92c357 (IsA pudding dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pudding is a kind of dish", "pln": ["(: cnet_isa_5d355815ad (IsA pudding dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pudding face is a kind of countenance", "pln": ["(: cnet_isa_7ab99fe449 (IsA pudding_face countenance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pudding stone is a kind of rock", "pln": ["(: cnet_isa_831c37e7a9 (IsA pudding_stone rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puddingwife is a kind of wrasse", "pln": ["(: cnet_isa_a35cf27511 (IsA puddingwife wrasse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puddle is a kind of covering material", "pln": ["(: cnet_isa_b4344d18fa (IsA puddle covering_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puddler is a kind of ironworker", "pln": ["(: cnet_isa_238c3b9a46 (IsA puddler ironworker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pudendal artery is a kind of artery", "pln": ["(: cnet_isa_398db51652 (IsA pudendal_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pudendal block is a kind of regional anesthesia", "pln": ["(: cnet_isa_506bc0300f (IsA pudendal_block regional_anesthesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pudendal cleft is a kind of rima", "pln": ["(: cnet_isa_3ee28bdb7e (IsA pudendal_cleft rima) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pudendal vein is a kind of vein", "pln": ["(: cnet_isa_ed437f8470 (IsA pudendal_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pudendum is a kind of genitalia", "pln": ["(: cnet_isa_377149cdb1 (IsA pudendum genitalia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pudge is a kind of endomorph", "pln": ["(: cnet_isa_5a8750b0e1 (IsA pudge endomorph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pueblo is a kind of village", "pln": ["(: cnet_isa_75a082e6eb (IsA pueblo village) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pueblo is a kind of native american", "pln": ["(: cnet_isa_a2a6b78b6d (IsA pueblo native_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pueraria is a kind of rosid dicot genus", "pln": ["(: cnet_isa_db091be5c6 (IsA pueraria rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puerpera is a kind of mother", "pln": ["(: cnet_isa_1dba837d9c (IsA puerpera mother) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puerperal fever is a kind of blood poisoning", "pln": ["(: cnet_isa_aa9f5b81ff (IsA puerperal_fever blood_poisoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "puerperium is a kind of time period", "pln": ["(: cnet_isa_155ceebe6f (IsA puerperium time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puerto rican is a kind of american", "pln": ["(: cnet_isa_f08a4487d9 (IsA puerto_rican american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puff is a kind of inhalation", "pln": ["(: cnet_isa_f7a538ecb6 (IsA puff inhalation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puff is a kind of recommendation", "pln": ["(: cnet_isa_c15ba9a534 (IsA puff recommendation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puff is a kind of pastry", "pln": ["(: cnet_isa_901bdc14f5 (IsA puff pastry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puff is a kind of gust", "pln": ["(: cnet_isa_0521c0fac3 (IsA puff gust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "puff adder is a kind of viper", "pln": ["(: cnet_isa_b582e99e15 (IsA puff_adder viper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puff batter is a kind of batter", "pln": ["(: cnet_isa_ad315087d4 (IsA puff_batter batter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puff paste is a kind of pastry", "pln": ["(: cnet_isa_fdb08bdbb9 (IsA puff_paste pastry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puffball is a kind of fungus", "pln": ["(: cnet_isa_8d29a0f7c4 (IsA puffball fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puffbird is a kind of piciform bird", "pln": ["(: cnet_isa_ec0f7e9fdd (IsA puffbird piciform_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puffed rice is a kind of cold cereal", "pln": ["(: cnet_isa_c04923ea81 (IsA puffed_rice cold_cereal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puffed wheat is a kind of cold cereal", "pln": ["(: cnet_isa_134d31bc37 (IsA puffed_wheat cold_cereal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puffer is a kind of plectognath", "pln": ["(: cnet_isa_3bdb09d52f (IsA puffer plectognath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puffery is a kind of flattery", "pln": ["(: cnet_isa_aa82a82adb (IsA puffery flattery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puffin is a kind of bird", "pln": ["(: cnet_isa_6fa0e1bbc1 (IsA puffin bird) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puffin is a kind of seabird", "pln": ["(: cnet_isa_be9a37b54f (IsA puffin seabird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puffing is a kind of exhalation", "pln": ["(: cnet_isa_acd6fb6bef (IsA puffing exhalation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puffing is a kind of smoke", "pln": ["(: cnet_isa_646774b640 (IsA puffing smoke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puffinus is a kind of bird genus", "pln": ["(: cnet_isa_53c3726528 (IsA puffinus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pug is a kind of dog", "pln": ["(: cnet_isa_da1d4c3410 (IsA pug dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pug nose is a kind of nose", "pln": ["(: cnet_isa_8de5f0d66d (IsA pug_nose nose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puissance is a kind of power", "pln": ["(: cnet_isa_e3fcb903c8 (IsA puissance power) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pujunan is a kind of penutian", "pln": ["(: cnet_isa_0560375393 (IsA pujunan penutian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puka is a kind of shrub", "pln": ["(: cnet_isa_be9c6e6ca5 (IsA puka shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puka is a kind of tree", "pln": ["(: cnet_isa_336888cd65 (IsA puka tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puku is a kind of antelope", "pln": ["(: cnet_isa_f07f6b7adc (IsA puku antelope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pul is a kind of afghan monetary unit", "pln": ["(: cnet_isa_55ff02d5ac (IsA pul afghan_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pula is a kind of botswana monetary unit", "pln": ["(: cnet_isa_1eaa472cf1 (IsA pula botswana_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulasan is a kind of edible fruit", "pln": ["(: cnet_isa_b9bd3da1e2 (IsA pulasan edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulasan is a kind of fruit tree", "pln": ["(: cnet_isa_1cc6711551 (IsA pulasan fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulchritude is a kind of beauty", "pln": ["(: cnet_isa_4ed3f118ed (IsA pulchritude beauty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pulex is a kind of arthropod genus", "pln": ["(: cnet_isa_c7ac125494 (IsA pulex arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulex irritan is a kind of flea", "pln": ["(: cnet_isa_ea78301b8b (IsA pulex_irritan flea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulicaria is a kind of asterid dicot genus", "pln": ["(: cnet_isa_b750ca4840 (IsA pulicaria asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulicidae is a kind of arthropod family", "pln": ["(: cnet_isa_a33857cc6d (IsA pulicidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pull is a kind of effort", "pln": ["(: cnet_isa_6ef932bba0 (IsA pull effort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pull is a kind of propulsion", "pln": ["(: cnet_isa_9d7f1fabeb (IsA pull propulsion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pull is a kind of device", "pln": ["(: cnet_isa_f285888915 (IsA pull device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pull is a kind of advantage", "pln": ["(: cnet_isa_769c094af7 (IsA pull advantage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pull is a kind of force", "pln": ["(: cnet_isa_51f111b86b (IsA pull force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pull chain is a kind of chain", "pln": ["(: cnet_isa_fd4e2708cc (IsA pull_chain chain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pull chain is a kind of pull", "pln": ["(: cnet_isa_a2d47c64d2 (IsA pull_chain pull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pull in is a kind of cafe", "pln": ["(: cnet_isa_4b9dca54af (IsA pull_in cafe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pull through is a kind of cleaning implement", "pln": ["(: cnet_isa_7405d5d55f (IsA pull_through cleaning_implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pull up is a kind of arm exercise", "pln": ["(: cnet_isa_ded1e69483 (IsA pull_up arm_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pullback is a kind of holding device", "pln": ["(: cnet_isa_f17c953e83 (IsA pullback holding_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pullback is a kind of withdrawal", "pln": ["(: cnet_isa_854273a0ac (IsA pullback withdrawal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puller is a kind of mover", "pln": ["(: cnet_isa_26daeecc1a (IsA puller mover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puller is a kind of worker", "pln": ["(: cnet_isa_53ef4a85dd (IsA puller worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pullet is a kind of hen", "pln": ["(: cnet_isa_59abc238c7 (IsA pullet hen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulley is a kind of machine", "pln": ["(: cnet_isa_22ec447c9d (IsA pulley machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pullman is a kind of passenger car", "pln": ["(: cnet_isa_491500e62b (IsA pullman passenger_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pullorum disease is a kind of animal disease", "pln": ["(: cnet_isa_236b8ddb98 (IsA pullorum_disease animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pullover is a kind of sweater", "pln": ["(: cnet_isa_9315bde2d0 (IsA pullover sweater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pullulation is a kind of asexual reproduction", "pln": ["(: cnet_isa_e0b0199f2f (IsA pullulation asexual_reproduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pullulation is a kind of increase", "pln": ["(: cnet_isa_01b9cef460 (IsA pullulation increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulmonary anthrax is a kind of anthrax", "pln": ["(: cnet_isa_96d2bbbe2e (IsA pulmonary_anthrax anthrax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulmonary artery is a kind of artery", "pln": ["(: cnet_isa_ce7fc5ac7c (IsA pulmonary_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulmonary circulation is a kind of circulation", "pln": ["(: cnet_isa_177de1ea89 (IsA pulmonary_circulation circulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulmonary congestion is a kind of congestion", "pln": ["(: cnet_isa_21e67c4def (IsA pulmonary_congestion congestion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulmonary embolism is a kind of embolism", "pln": ["(: cnet_isa_d1f3385a1b (IsA pulmonary_embolism embolism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulmonary plexis is a kind of nerve plexus", "pln": ["(: cnet_isa_1d19998fb2 (IsA pulmonary_plexis nerve_plexus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulmonary reserve is a kind of reserve", "pln": ["(: cnet_isa_30cfc5d841 (IsA pulmonary_reserve reserve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulmonary stenosis is a kind of stenosis", "pln": ["(: cnet_isa_d79b6cf93f (IsA pulmonary_stenosis stenosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulmonary trunk is a kind of pulmonary artery", "pln": ["(: cnet_isa_4a83d549f3 (IsA pulmonary_trunk pulmonary_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulmonary tuberculosis is a kind of tuberculosis", "pln": ["(: cnet_isa_62b07a624d (IsA pulmonary_tuberculosis tuberculosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulmonary valve is a kind of semilunar valve", "pln": ["(: cnet_isa_f1cece69d0 (IsA pulmonary_valve semilunar_valve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulmonary vein is a kind of vein", "pln": ["(: cnet_isa_9eba6de348 (IsA pulmonary_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulmonata is a kind of animal order", "pln": ["(: cnet_isa_37778fe014 (IsA pulmonata animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulp is a kind of vascular structure", "pln": ["(: cnet_isa_880af7738a (IsA pulp vascular_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulp is a kind of magazine", "pln": ["(: cnet_isa_6050e4e520 (IsA pulp magazine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulp is a kind of mass", "pln": ["(: cnet_isa_908fe512b7 (IsA pulp mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulp is a kind of plant tissue", "pln": ["(: cnet_isa_92fb68183a (IsA pulp plant_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulp is a kind of cellulose", "pln": ["(: cnet_isa_c1f21609b7 (IsA pulp cellulose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pulp cavity is a kind of cavity", "pln": ["(: cnet_isa_90e9b7a8b8 (IsA pulp_cavity cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "pulpits is a kind of in churches", "pln": ["(: cnet_isa_fe522e3a9c (IsA pulpits in_churches) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulpit is a kind of in churche", "pln": ["(: cnet_isa_5ed81d5ac1 (IsA pulpit in_churche) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pulpwood is a kind of softwood", "pln": ["(: cnet_isa_b8017c20c6 (IsA pulpwood softwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulque is a kind of alcohol", "pln": ["(: cnet_isa_a07640bf71 (IsA pulque alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulsar is a kind of neutron star", "pln": ["(: cnet_isa_dc6da4c815 (IsA pulsar neutron_star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulsatilla is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_21b098a791 (IsA pulsatilla magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulsation is a kind of wave", "pln": ["(: cnet_isa_0d0dad6212 (IsA pulsation wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulsation is a kind of phenomenon", "pln": ["(: cnet_isa_0d83aee8ce (IsA pulsation phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulse is a kind of periodic event", "pln": ["(: cnet_isa_c6307e1ce1 (IsA pulse periodic_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulse is a kind of legume", "pln": ["(: cnet_isa_4647880f23 (IsA pulse legume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulse is a kind of rate", "pln": ["(: cnet_isa_450bcbeb72 (IsA pulse rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pulse is a kind of vital sign", "pln": ["(: cnet_isa_22f98af5f8 (IsA pulse vital_sign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulse counter is a kind of counter", "pln": ["(: cnet_isa_66ba8db528 (IsA pulse_counter counter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulse generator is a kind of generator", "pln": ["(: cnet_isa_173a453d98 (IsA pulse_generator generator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulse modulation is a kind of modulation", "pln": ["(: cnet_isa_19f5e274c3 (IsA pulse_modulation modulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulse time modulation is a kind of pulse modulation", "pln": ["(: cnet_isa_fc745058d6 (IsA pulse_time_modulation pulse_modulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pulse timing circuit is a kind of circuit", "pln": ["(: cnet_isa_08b4ee41a0 (IsA pulse_timing_circuit circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pulverization is a kind of annihilation", "pln": ["(: cnet_isa_f35212e263 (IsA pulverization annihilation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pumice is a kind of rock", "pln": ["(: cnet_isa_468e1fcc26 (IsA pumice rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pump is a kind of machine", "pln": ["(: cnet_isa_809ee1ef8e (IsA pump machine) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pump is a kind of mechanical device", "pln": ["(: cnet_isa_e01fffb40b (IsA pump mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pump is a kind of shoe", "pln": ["(: cnet_isa_5acd87aee6 (IsA pump shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pump action is a kind of action", "pln": ["(: cnet_isa_f6b2614b93 (IsA pump_action action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pump and dump scheme is a kind of contrivance", "pln": ["(: cnet_isa_76112619e0 (IsA pump_and_dump_scheme contrivance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pump house is a kind of house", "pln": ["(: cnet_isa_4675f76904 (IsA pump_house house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pump priming is a kind of care", "pln": ["(: cnet_isa_0583d3683b (IsA pump_priming care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pump room is a kind of pump house", "pln": ["(: cnet_isa_241800bd0e (IsA pump_room pump_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pump type plier is a kind of plier", "pln": ["(: cnet_isa_15ffc743ad (IsA pump_type_plier plier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pump well is a kind of well", "pln": ["(: cnet_isa_65607be6cc (IsA pump_well well) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pumpkin is a kind of vegetable", "pln": ["(: cnet_isa_8dfdd90525 (IsA pumpkin vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pumpkin is a kind of squash", "pln": ["(: cnet_isa_85163564d7 (IsA pumpkin squash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pumpkin ash is a kind of ash", "pln": ["(: cnet_isa_4b55452665 (IsA pumpkin_ash ash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pumpkin pie is a kind of dessert", "pln": ["(: cnet_isa_8fb6ec4b59 (IsA pumpkin_pie dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pumpkin pie is a kind of pie", "pln": ["(: cnet_isa_df616afe8f (IsA pumpkin_pie pie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pumpkin seed is a kind of edible seed", "pln": ["(: cnet_isa_0c465ad056 (IsA pumpkin_seed edible_seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pumpkinseed is a kind of sunfish", "pln": ["(: cnet_isa_60e55749b5 (IsA pumpkinseed sunfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pun is a kind of fun", "pln": ["(: cnet_isa_1118127314 (IsA pun fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punch is a kind of tool", "pln": ["(: cnet_isa_d2f4cef58b (IsA punch tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punch is a kind of blow", "pln": ["(: cnet_isa_46bf0261a4 (IsA punch blow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punch is a kind of mixed drink", "pln": ["(: cnet_isa_83941c999e (IsA punch mixed_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "punch bowl is a kind of bowl", "pln": ["(: cnet_isa_7d6ad67f96 (IsA punch_bowl bowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punch line is a kind of line", "pln": ["(: cnet_isa_7d60516bb3 (IsA punch_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punch plier is a kind of punch", "pln": ["(: cnet_isa_1d02d60033 (IsA punch_plier punch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punch press is a kind of press", "pln": ["(: cnet_isa_eebb16f47d (IsA punch_press press) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punch up is a kind of fistfight", "pln": ["(: cnet_isa_efdc01f923 (IsA punch_up fistfight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punchboard is a kind of board", "pln": ["(: cnet_isa_85fab0f6d7 (IsA punchboard board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punched card is a kind of card", "pln": ["(: cnet_isa_654075e05f (IsA punched_card card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puncher is a kind of boxer", "pln": ["(: cnet_isa_5671772d2e (IsA puncher boxer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punching bag is a kind of ball", "pln": ["(: cnet_isa_d75f320b9b (IsA punching_bag ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punching bag is a kind of victim", "pln": ["(: cnet_isa_ba6ae878d6 (IsA punching_bag victim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punctilio is a kind of honoring", "pln": ["(: cnet_isa_8c8516b1b2 (IsA punctilio honoring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punctilio is a kind of etiquette", "pln": ["(: cnet_isa_1bd1a54569 (IsA punctilio etiquette) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punctuality is a kind of timing", "pln": ["(: cnet_isa_da1e4da3ca (IsA punctuality timing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punctuated equilibrium is a kind of theory of evolution", "pln": ["(: cnet_isa_dafddeb1fa (IsA punctuated_equilibrium theory_of_evolution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punctuation is a kind of grouping", "pln": ["(: cnet_isa_c1d19a91fc (IsA punctuation grouping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "punctuation is a kind of mark", "pln": ["(: cnet_isa_c42a19680a (IsA punctuation mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punctuation is a kind of interruption", "pln": ["(: cnet_isa_dc0557bf84 (IsA punctuation interruption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punctum is a kind of point", "pln": ["(: cnet_isa_8a8902f8d5 (IsA punctum point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puncture is a kind of activity", "pln": ["(: cnet_isa_a63c927646 (IsA puncture activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "puncture is a kind of hole", "pln": ["(: cnet_isa_121416a246 (IsA puncture hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puncture is a kind of mishap", "pln": ["(: cnet_isa_724a2f50bf (IsA puncture mishap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pung is a kind of sled", "pln": ["(: cnet_isa_67641b8154 (IsA pung sled) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pungapung is a kind of arum", "pln": ["(: cnet_isa_b23c5ce049 (IsA pungapung arum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pungency is a kind of spiciness", "pln": ["(: cnet_isa_ae3ee062ca (IsA pungency spiciness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pungency is a kind of wit", "pln": ["(: cnet_isa_c6ada480bd (IsA pungency wit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "punic is a kind of phoenician", "pln": ["(: cnet_isa_2a09f10808 (IsA punic phoenician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punica is a kind of dicot genus", "pln": ["(: cnet_isa_74912b6c58 (IsA punica dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punicaceae is a kind of dicot family", "pln": ["(: cnet_isa_0a2c3c5960 (IsA punicaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puniness is a kind of smallness", "pln": ["(: cnet_isa_efe5b94c1d (IsA puniness smallness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punishment is a kind of social control", "pln": ["(: cnet_isa_6ecae70a81 (IsA punishment social_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punitive damage is a kind of damage", "pln": ["(: cnet_isa_e033da024c (IsA punitive_damage damage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punjabi is a kind of sanskrit", "pln": ["(: cnet_isa_752d9467b8 (IsA punjabi sanskrit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punk is a kind of igniter", "pln": ["(: cnet_isa_76d9422aaa (IsA punk igniter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "punk rock is a kind of rock n roll", "pln": ["(: cnet_isa_c65bb7d7d3 (IsA punk_rock rock_n_roll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punk rocker is a kind of adolescent", "pln": ["(: cnet_isa_891bbe26ab (IsA punk_rocker adolescent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punkah is a kind of fan", "pln": ["(: cnet_isa_3e3b0b205c (IsA punkah fan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punkie is a kind of gnat", "pln": ["(: cnet_isa_18e1dbdc9c (IsA punkie gnat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punk is a kind of youth subculture", "pln": ["(: cnet_isa_804126b516 (IsA punk youth_subculture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punnet is a kind of basket", "pln": ["(: cnet_isa_b8ff78c651 (IsA punnet basket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punster is a kind of humorist", "pln": ["(: cnet_isa_999891beea (IsA punster humorist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punt is a kind of boat", "pln": ["(: cnet_isa_959a773209 (IsA punt boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punt is a kind of kick", "pln": ["(: cnet_isa_37f734da2f (IsA punt kick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punter is a kind of kicker", "pln": ["(: cnet_isa_dcae769c60 (IsA punter kicker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "punter is a kind of boatman", "pln": ["(: cnet_isa_9abb65d807 (IsA punter boatman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pup is a kind of young dog", "pln": ["(: cnet_isa_c64d9aa6cd (IsA pup young_dog) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pup is a kind of young mammal", "pln": ["(: cnet_isa_9ba8aa6636 (IsA pup young_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pup tent is a kind of tent", "pln": ["(: cnet_isa_7e27757429 (IsA pup_tent tent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pupa is a kind of insect", "pln": ["(: cnet_isa_b81c5892be (IsA pupa insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pupil is a kind of aperture", "pln": ["(: cnet_isa_86011406e5 (IsA pupil aperture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pupillary sphincter is a kind of sphincter", "pln": ["(: cnet_isa_51c23114bb (IsA pupillary_sphincter sphincter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puppet is a kind of doll", "pln": ["(: cnet_isa_5cabe5b7c0 (IsA puppet doll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puppet is a kind of figure", "pln": ["(: cnet_isa_f881004c31 (IsA puppet figure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puppet government is a kind of government", "pln": ["(: cnet_isa_4f6142959a (IsA puppet_government government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puppet ruler is a kind of leader", "pln": ["(: cnet_isa_895c0292ed (IsA puppet_ruler leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puppet ruler is a kind of ruler", "pln": ["(: cnet_isa_69a9c6f557 (IsA puppet_ruler ruler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "puppet show is a kind of show", "pln": ["(: cnet_isa_f204c3b8db (IsA puppet_show show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puppeteer is a kind of performer", "pln": ["(: cnet_isa_af4b3f2960 (IsA puppeteer performer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puppetry is a kind of dramatization", "pln": ["(: cnet_isa_3a8c069d6f (IsA puppetry dramatization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "puppetry is a kind of art", "pln": ["(: cnet_isa_322b2e1d37 (IsA puppetry art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puppy is a kind of baby", "pln": ["(: cnet_isa_1514ed7626 (IsA puppy baby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puppy is a kind of baby dog", "pln": ["(: cnet_isa_763a907107 (IsA puppy baby_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puppy is a kind of dog", "pln": ["(: cnet_isa_ee1630757d (IsA puppy dog) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puppy is a kind of immature dog", "pln": ["(: cnet_isa_b3e6dd2eed (IsA puppy immature_dog) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puppy is a kind of pup", "pln": ["(: cnet_isa_daa37334c2 (IsA puppy pup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puppy is a kind of young person", "pln": ["(: cnet_isa_a4687d4621 (IsA puppy young_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "puppy fat is a kind of adipose tissue", "pln": ["(: cnet_isa_f2eaef0df7 (IsA puppy_fat adipose_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puppy love is a kind of love", "pln": ["(: cnet_isa_1c803e89d7 (IsA puppy_love love) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purana is a kind of sanskrit literature", "pln": ["(: cnet_isa_569fb1a0a2 (IsA purana sanskrit_literature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "purchase is a kind of acquisition", "pln": ["(: cnet_isa_91405b9308 (IsA purchase acquisition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "purchase is a kind of influence", "pln": ["(: cnet_isa_befb2d5283 (IsA purchase influence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purchase contract is a kind of contract", "pln": ["(: cnet_isa_e54c371881 (IsA purchase_contract contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purchase price is a kind of price", "pln": ["(: cnet_isa_025b05fc3c (IsA purchase_price price) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purchasing agent is a kind of agent", "pln": ["(: cnet_isa_f03f33aa95 (IsA purchasing_agent agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purchasing department is a kind of business department", "pln": ["(: cnet_isa_445d95783e (IsA purchasing_department business_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "purdah is a kind of screen", "pln": ["(: cnet_isa_8c430b1899 (IsA purdah screen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "purdah is a kind of segregation", "pln": ["(: cnet_isa_5037092aac (IsA purdah segregation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pure absence is a kind of petit mal epilepsy", "pln": ["(: cnet_isa_0eb01b97bb (IsA pure_absence petit_mal_epilepsy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pure imaginary number is a kind of complex number", "pln": ["(: cnet_isa_460190292c (IsA pure_imaginary_number complex_number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pure mathematic is a kind of mathematic", "pln": ["(: cnet_isa_d3c3a53f78 (IsA pure_mathematic mathematic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puree is a kind of nutriment", "pln": ["(: cnet_isa_f538694bd9 (IsA puree nutriment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purgative is a kind of medicine", "pln": ["(: cnet_isa_e184741566 (IsA purgative medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purgatory is a kind of situation", "pln": ["(: cnet_isa_1d8bf54e44 (IsA purgatory situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purgatory is a kind of imaginary place", "pln": ["(: cnet_isa_326426b7b1 (IsA purgatory imaginary_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purge is a kind of cleaning", "pln": ["(: cnet_isa_ca18810710 (IsA purge cleaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purge is a kind of clearing", "pln": ["(: cnet_isa_640b736023 (IsA purge clearing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purge is a kind of removal", "pln": ["(: cnet_isa_02395c1fdc (IsA purge removal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purification is a kind of ceremony", "pln": ["(: cnet_isa_67ad3e6e17 (IsA purification ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purification is a kind of cleaning", "pln": ["(: cnet_isa_eff6a57ca4 (IsA purification cleaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purification is a kind of purge", "pln": ["(: cnet_isa_fddb42adc2 (IsA purification purge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purifier is a kind of apparatus", "pln": ["(: cnet_isa_951e6cf39f (IsA purifier apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purim is a kind of jewish holy day", "pln": ["(: cnet_isa_10c1dbbd20 (IsA purim jewish_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purine is a kind of base", "pln": ["(: cnet_isa_2e80694bd2 (IsA purine base) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purism is a kind of insistence", "pln": ["(: cnet_isa_4a9a880d17 (IsA purism insistence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purist is a kind of pedant", "pln": ["(: cnet_isa_3f474105fa (IsA purist pedant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puritan is a kind of abstainer", "pln": ["(: cnet_isa_156f6562a3 (IsA puritan abstainer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puritan is a kind of protestant", "pln": ["(: cnet_isa_e319fad759 (IsA puritan protestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puritanism is a kind of sternness", "pln": ["(: cnet_isa_dbc28c5b0e (IsA puritanism sternness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puritanism is a kind of protestantism", "pln": ["(: cnet_isa_785e6beaa3 (IsA puritanism protestantism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purity is a kind of condition", "pln": ["(: cnet_isa_f5f239d1e2 (IsA purity condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purkinje cell is a kind of brain cell", "pln": ["(: cnet_isa_5e114dc86c (IsA purkinje_cell brain_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purkinje fiber is a kind of cardiac muscle", "pln": ["(: cnet_isa_ddd8580134 (IsA purkinje_fiber cardiac_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purkinje network is a kind of cardiac muscle", "pln": ["(: cnet_isa_1781aab3ae (IsA purkinje_network cardiac_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purl is a kind of knitting stitch", "pln": ["(: cnet_isa_9fcdb91de3 (IsA purl knitting_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purl is a kind of thread", "pln": ["(: cnet_isa_1087148770 (IsA purl thread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "purloo is a kind of stew", "pln": ["(: cnet_isa_dff97c42fe (IsA purloo stew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purple is a kind of color", "pln": ["(: cnet_isa_d8018bc175 (IsA purple color) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purple is a kind of chromatic color", "pln": ["(: cnet_isa_f5cc06c5e7 (IsA purple chromatic_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purple is a kind of ecclesiastical attire", "pln": ["(: cnet_isa_8a15a51f4e (IsA purple ecclesiastical_attire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purple is a kind of nobility", "pln": ["(: cnet_isa_f6ce2adddd (IsA purple nobility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purple anise is a kind of anise tree", "pln": ["(: cnet_isa_072bef9753 (IsA purple_anise anise_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purple apricot is a kind of apricot", "pln": ["(: cnet_isa_b71fdf03b8 (IsA purple_apricot apricot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "purple bacteria is a kind of phototrophic bacteria", "pln": ["(: cnet_isa_6e2f9fec0c (IsA purple_bacteria phototrophic_bacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purple chinese hous is a kind of wildflower", "pln": ["(: cnet_isa_c10509b347 (IsA purple_chinese_hous wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purple clematis is a kind of clematis", "pln": ["(: cnet_isa_f2721d9d90 (IsA purple_clematis clematis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purple cress is a kind of bittercress", "pln": ["(: cnet_isa_138f60b756 (IsA purple_cress bittercress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purple emperor is a kind of emperor butterfly", "pln": ["(: cnet_isa_08306c6af7 (IsA purple_emperor emperor_butterfly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "purple finch is a kind of finch", "pln": ["(: cnet_isa_67978487ff (IsA purple_finch finch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purple fringed orchid is a kind of fringed orchis", "pln": ["(: cnet_isa_55c75781c4 (IsA purple_fringed_orchid fringed_orchis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purple fringeless orchid is a kind of fringed orchis", "pln": ["(: cnet_isa_773a144028 (IsA purple_fringeless_orchid fringed_orchis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purple gallinule is a kind of gallinule", "pln": ["(: cnet_isa_14b9bd56a6 (IsA purple_gallinule gallinule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "purple grackle is a kind of grackle", "pln": ["(: cnet_isa_99839c6ab5 (IsA purple_grackle grackle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purple heather is a kind of heath", "pln": ["(: cnet_isa_3a90da75a8 (IsA purple_heather heath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purple locoweed is a kind of locoweed", "pln": ["(: cnet_isa_f5fccecb77 (IsA purple_locoweed locoweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purple loosestrife is a kind of loosestrife", "pln": ["(: cnet_isa_65a48eef81 (IsA purple_loosestrife loosestrife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purple martin is a kind of martin", "pln": ["(: cnet_isa_7ec4122f22 (IsA purple_martin martin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purple milk vetch is a kind of milk vetch", "pln": ["(: cnet_isa_9544e4809e (IsA purple_milk_vetch milk_vetch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "purple mullein is a kind of mullein", "pln": ["(: cnet_isa_ac15c1e145 (IsA purple_mullein mullein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purple onion is a kind of spanish onion", "pln": ["(: cnet_isa_84deee068e (IsA purple_onion spanish_onion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purple passage is a kind of passage", "pln": ["(: cnet_isa_ab0a30c083 (IsA purple_passage passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purple poppy mallow is a kind of poppy mallow", "pln": ["(: cnet_isa_c326845448 (IsA purple_poppy_mallow poppy_mallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purple rock brake is a kind of cliff brake", "pln": ["(: cnet_isa_c1a0367e4b (IsA purple_rock_brake cliff_brake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purple sage is a kind of sage", "pln": ["(: cnet_isa_dff6859402 (IsA purple_sage sage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purple sanicle is a kind of sanicle", "pln": ["(: cnet_isa_b140e2281d (IsA purple_sanicle sanicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purple saxifrage is a kind of saxifrage", "pln": ["(: cnet_isa_a5efffcba9 (IsA purple_saxifrage saxifrage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purple silkweed is a kind of milkweed", "pln": ["(: cnet_isa_5595bab5a9 (IsA purple_silkweed milkweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purple stemmed aster is a kind of aster", "pln": ["(: cnet_isa_e27ceb71c5 (IsA purple_stemmed_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purple trillium is a kind of trillium", "pln": ["(: cnet_isa_5486e39359 (IsA purple_trillium trillium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purple willow is a kind of osier", "pln": ["(: cnet_isa_6edb137573 (IsA purple_willow osier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purplish blue is a kind of blue", "pln": ["(: cnet_isa_fe4320abe3 (IsA purplish_blue blue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purplish red is a kind of red", "pln": ["(: cnet_isa_20cf5d6aea (IsA purplish_red red) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purpose is a kind of goal", "pln": ["(: cnet_isa_f50b8668b0 (IsA purpose goal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purposefulness is a kind of meaningfulness", "pln": ["(: cnet_isa_ef3cef5972 (IsA purposefulness meaningfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purposelessness is a kind of meaninglessness", "pln": ["(: cnet_isa_85a83be556 (IsA purposelessness meaninglessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purpura is a kind of blood disease", "pln": ["(: cnet_isa_43cbcc5287 (IsA purpura blood_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purr is a kind of sound", "pln": ["(: cnet_isa_09b718adf2 (IsA purr sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purse is a kind of bag", "pln": ["(: cnet_isa_9fb16a2349 (IsA purse bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purse is a kind of sum", "pln": ["(: cnet_isa_404286df36 (IsA purse sum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purse seine is a kind of seine", "pln": ["(: cnet_isa_cb8b00b40a (IsA purse_seine seine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purse string is a kind of drawstring", "pln": ["(: cnet_isa_922c1f79ce (IsA purse_string drawstring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purse string is a kind of fund", "pln": ["(: cnet_isa_faf647d421 (IsA purse_string fund) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "purser is a kind of officer", "pln": ["(: cnet_isa_0281c1bd73 (IsA purser officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purslane is a kind of herb", "pln": ["(: cnet_isa_fb43e033e4 (IsA purslane herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purslane speedwell is a kind of veronica", "pln": ["(: cnet_isa_6198f40ee6 (IsA purslane_speedwell veronica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pursuance is a kind of continuance", "pln": ["(: cnet_isa_37d0c8df10 (IsA pursuance continuance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pursued is a kind of hunted person", "pln": ["(: cnet_isa_db5a6e1f04 (IsA pursued hunted_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pursuer is a kind of follower", "pln": ["(: cnet_isa_4dbd139361 (IsA pursuer follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pursuer is a kind of person", "pln": ["(: cnet_isa_bb03a8800f (IsA pursuer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pursuit is a kind of motion", "pln": ["(: cnet_isa_dc64d05d9b (IsA pursuit motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pursuit is a kind of search", "pln": ["(: cnet_isa_9d51aaa8c0 (IsA pursuit search) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purulence is a kind of symptom", "pln": ["(: cnet_isa_8995d36cf2 (IsA purulence symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purulent pleurisy is a kind of empyema", "pln": ["(: cnet_isa_e8bfce53d8 (IsA purulent_pleurisy empyema) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purulent pleurisy is a kind of pleurisy", "pln": ["(: cnet_isa_80c2c27037 (IsA purulent_pleurisy pleurisy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purveyance is a kind of provision", "pln": ["(: cnet_isa_3d793460bf (IsA purveyance provision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "purveyor is a kind of supplier", "pln": ["(: cnet_isa_1525934f5a (IsA purveyor supplier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pus is a kind of liquid body substance", "pln": ["(: cnet_isa_2a619fd73e (IsA pus liquid_body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pus is a kind of hindu calendar month", "pln": ["(: cnet_isa_e1b64881d6 (IsA pus hindu_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pus forming bacteria is a kind of bacteria", "pln": ["(: cnet_isa_4852686e9a (IsA pus_forming_bacteria bacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "push is a kind of progress", "pln": ["(: cnet_isa_b95c340a29 (IsA push progress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "push is a kind of propulsion", "pln": ["(: cnet_isa_fe54f8d9a5 (IsA push propulsion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "push is a kind of force", "pln": ["(: cnet_isa_4202bc5f97 (IsA push force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "push bike is a kind of bicycle", "pln": ["(: cnet_isa_a29e00d012 (IsA push_bike bicycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "push broom is a kind of broom", "pln": ["(: cnet_isa_3b2e66f506 (IsA push_broom broom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "push button is a kind of switch", "pln": ["(: cnet_isa_cad0d65b3d (IsA push_button switch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "push button radio is a kind of radio receiver", "pln": ["(: cnet_isa_1199cd7aeb (IsA push_button_radio radio_receiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "push down list is a kind of list", "pln": ["(: cnet_isa_664f2b1101 (IsA push_down_list list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "push down queue is a kind of queue", "pln": ["(: cnet_isa_fa109c3ba4 (IsA push_down_queue queue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "push down storage is a kind of memory device", "pln": ["(: cnet_isa_e559b94f43 (IsA push_down_storage memory_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pushball is a kind of field game", "pln": ["(: cnet_isa_0c913bddf6 (IsA pushball field_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pusher is a kind of sandal", "pln": ["(: cnet_isa_1e3bf1a8b9 (IsA pusher sandal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pusher is a kind of criminal", "pln": ["(: cnet_isa_0a903eea01 (IsA pusher criminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pusher is a kind of dealer", "pln": ["(: cnet_isa_24766599d5 (IsA pusher dealer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pusher is a kind of intruder", "pln": ["(: cnet_isa_9a40466607 (IsA pusher intruder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pusher is a kind of mover", "pln": ["(: cnet_isa_a740b86259 (IsA pusher mover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pushing is a kind of pushing", "pln": ["(: cnet_isa_bddd8f4527 (IsA pushing pushing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pushing baby carriage is a kind of pushing", "pln": ["(: cnet_isa_10a612576b (IsA pushing_baby_carriage pushing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pushover is a kind of flunky", "pln": ["(: cnet_isa_9096cf1d1c (IsA pushover flunky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pushup is a kind of arm exercise", "pln": ["(: cnet_isa_3a77ef7158 (IsA pushup arm_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pusillanimity is a kind of fearfulness", "pln": ["(: cnet_isa_f07acb48e3 (IsA pusillanimity fearfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pussy paw is a kind of wildflower", "pln": ["(: cnet_isa_6232dceeed (IsA pussy_paw wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pussy willow is a kind of willow", "pln": ["(: cnet_isa_aabd943ebb (IsA pussy_willow willow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pussycat is a kind of person", "pln": ["(: cnet_isa_8b346186f4 (IsA pussycat person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pustule is a kind of blister", "pln": ["(: cnet_isa_e55dd0ef4b (IsA pustule blister) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pustule is a kind of pimple", "pln": ["(: cnet_isa_8ab4a15ef1 (IsA pustule pimple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "put down is a kind of derision", "pln": ["(: cnet_isa_b439e8a378 (IsA put_down derision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "put option is a kind of option", "pln": ["(: cnet_isa_6b6005cc61 (IsA put_option option) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "put option is a kind of stock option", "pln": ["(: cnet_isa_e37868fcd1 (IsA put_option stock_option) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "put put is a kind of gasoline engine", "pln": ["(: cnet_isa_1b82b89fc3 (IsA put_put gasoline_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "putamen is a kind of basal ganglion", "pln": ["(: cnet_isa_91f6b327a1 (IsA putamen basal_ganglion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "putoff is a kind of pretext", "pln": ["(: cnet_isa_6df10ddff1 (IsA putoff pretext) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "putout is a kind of out", "pln": ["(: cnet_isa_17dccae58d (IsA putout out) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "putrefaction is a kind of decay", "pln": ["(: cnet_isa_1ef7c164c6 (IsA putrefaction decay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "putrescence is a kind of unwholesomeness", "pln": ["(: cnet_isa_51f3cb88bd (IsA putrescence unwholesomeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "putrescence is a kind of putrefaction", "pln": ["(: cnet_isa_a17ee0a7b6 (IsA putrescence putrefaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "putrescine is a kind of ptomaine", "pln": ["(: cnet_isa_104cd2fd21 (IsA putrescine ptomaine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "putridity is a kind of impurity", "pln": ["(: cnet_isa_242242cb45 (IsA putridity impurity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "putt is a kind of golf stroke", "pln": ["(: cnet_isa_333536aa19 (IsA putt golf_stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puttee is a kind of legging", "pln": ["(: cnet_isa_b7dbdbc6b0 (IsA puttee legging) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "putter is a kind of iron", "pln": ["(: cnet_isa_d347826907 (IsA putter iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "putter is a kind of golfer", "pln": ["(: cnet_isa_9d7680c9da (IsA putter golfer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "putterer is a kind of dawdler", "pln": ["(: cnet_isa_e2fc1f2bcc (IsA putterer dawdler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "putty is a kind of cement", "pln": ["(: cnet_isa_16b7131e63 (IsA putty cement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "putty is a kind of filler", "pln": ["(: cnet_isa_f1b624967e (IsA putty filler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "putty knife is a kind of spatula", "pln": ["(: cnet_isa_866dc4d3ce (IsA putty_knife spatula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puttyroot is a kind of orchid", "pln": ["(: cnet_isa_6ef7925839 (IsA puttyroot orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "putz is a kind of fool", "pln": ["(: cnet_isa_7ef735e785 (IsA putz fool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puzzle is a kind of problem", "pln": ["(: cnet_isa_659e4921ec (IsA puzzle problem) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "puzzle is a kind of game", "pln": ["(: cnet_isa_b3ee64fb0c (IsA puzzle game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pya is a kind of myanmar monetary unit", "pln": ["(: cnet_isa_19d97ad650 (IsA pya myanmar_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pycnanthemum is a kind of asterid dicot genus", "pln": ["(: cnet_isa_22bca86498 (IsA pycnanthemum asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pycnidium is a kind of plant part", "pln": ["(: cnet_isa_e3c55cf994 (IsA pycnidium plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pycnodysostosis is a kind of dwarfism", "pln": ["(: cnet_isa_c24bbcd837 (IsA pycnodysostosis dwarfism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pycnogonida is a kind of animal order", "pln": ["(: cnet_isa_16178fd885 (IsA pycnogonida animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pycnosis is a kind of disease", "pln": ["(: cnet_isa_5837bd3280 (IsA pycnosis disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyelitis is a kind of inflammatory disease", "pln": ["(: cnet_isa_07704796d2 (IsA pyelitis inflammatory_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pyelogram is a kind of roentgenogram", "pln": ["(: cnet_isa_0846c3f90f (IsA pyelogram roentgenogram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyelography is a kind of roentgenography", "pln": ["(: cnet_isa_b0952f9a58 (IsA pyelography roentgenography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pyelonephritis is a kind of urinary tract infection", "pln": ["(: cnet_isa_94f3984f4d (IsA pyelonephritis urinary_tract_infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyemia is a kind of blood poisoning", "pln": ["(: cnet_isa_07f98f7729 (IsA pyemia blood_poisoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pygmy is a kind of small person", "pln": ["(: cnet_isa_76eafa33fc (IsA pygmy small_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pygmy chimpanzee is a kind of chimpanzee", "pln": ["(: cnet_isa_d6e1b2f6dc (IsA pygmy_chimpanzee chimpanzee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pygmy cypress is a kind of cypress", "pln": ["(: cnet_isa_29389d6f76 (IsA pygmy_cypress cypress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pygmy marmoset is a kind of marmoset", "pln": ["(: cnet_isa_9b69309ec8 (IsA pygmy_marmoset marmoset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pygmy mouse is a kind of wood mouse", "pln": ["(: cnet_isa_18ff43e6b3 (IsA pygmy_mouse wood_mouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pygmy sperm whale is a kind of toothed whale", "pln": ["(: cnet_isa_09b5ed3ab7 (IsA pygmy_sperm_whale toothed_whale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pygopodidae is a kind of reptile family", "pln": ["(: cnet_isa_88b2e01369 (IsA pygopodidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pygopus is a kind of reptile genus", "pln": ["(: cnet_isa_94d6516b22 (IsA pygopus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pygoscelis is a kind of bird genus", "pln": ["(: cnet_isa_69ac26e0ff (IsA pygoscelis bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyinma is a kind of wood", "pln": ["(: cnet_isa_2c45398d33 (IsA pyinma wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyjama is a kind of pair of trouser", "pln": ["(: cnet_isa_07b55fe2f2 (IsA pyjama pair_of_trouser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pylodictus is a kind of fish genus", "pln": ["(: cnet_isa_f209f80f76 (IsA pylodictus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pylon is a kind of tower", "pln": ["(: cnet_isa_1d4fcbf32b (IsA pylon tower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyloric sphincter is a kind of sphincter", "pln": ["(: cnet_isa_470302c7fb (IsA pyloric_sphincter sphincter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyloric stenosis is a kind of stenosis", "pln": ["(: cnet_isa_aa276328be (IsA pyloric_stenosis stenosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyloric vein is a kind of gastric vein", "pln": ["(: cnet_isa_9674e52ef5 (IsA pyloric_vein gastric_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pylorus is a kind of orifice", "pln": ["(: cnet_isa_e88b2b8fab (IsA pylorus orifice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyocyanase is a kind of antibiotic", "pln": ["(: cnet_isa_f5d1143802 (IsA pyocyanase antibiotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyocyanin is a kind of antibiotic", "pln": ["(: cnet_isa_0e4971782a (IsA pyocyanin antibiotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyorrhea is a kind of pathology", "pln": ["(: cnet_isa_f6877741e1 (IsA pyorrhea pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyorrhea is a kind of periodontal disease", "pln": ["(: cnet_isa_a4176300d0 (IsA pyorrhea periodontal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyracantha is a kind of shrub", "pln": ["(: cnet_isa_4b4669f626 (IsA pyracantha shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyralid is a kind of moth", "pln": ["(: cnet_isa_182f31e3d1 (IsA pyralid moth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyralidae is a kind of arthropod family", "pln": ["(: cnet_isa_7f011418a8 (IsA pyralidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyralis is a kind of arthropod genus", "pln": ["(: cnet_isa_0b8e2c66fc (IsA pyralis arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyramid is a kind of polyhedron", "pln": ["(: cnet_isa_3d3eb1dd10 (IsA pyramid polyhedron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyramid is a kind of speculation", "pln": ["(: cnet_isa_e4c4096bbb (IsA pyramid speculation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyramid bugle is a kind of bugle", "pln": ["(: cnet_isa_47012c47aa (IsA pyramid_bugle bugle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pyramid scheme is a kind of scheme", "pln": ["(: cnet_isa_ba72a5398a (IsA pyramid_scheme scheme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pyramidal tent is a kind of tent", "pln": ["(: cnet_isa_7f018fecdc (IsA pyramidal_tent tent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pyramidal tract is a kind of motor nerve", "pln": ["(: cnet_isa_00e9bac0ec (IsA pyramidal_tract motor_nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyramiding is a kind of swindle", "pln": ["(: cnet_isa_e3c92c795e (IsA pyramiding swindle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrausta is a kind of arthropod genus", "pln": ["(: cnet_isa_a8b92fbb0d (IsA pyrausta arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyre is a kind of pile", "pln": ["(: cnet_isa_f38ab22990 (IsA pyre pile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrene is a kind of nutlet", "pln": ["(: cnet_isa_3d257fc339 (IsA pyrene nutlet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrene is a kind of hydrocarbon", "pln": ["(: cnet_isa_ffd7289ded (IsA pyrene hydrocarbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrenee daisy is a kind of composite", "pln": ["(: cnet_isa_4d6fb4a3e6 (IsA pyrenee_daisy composite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrenomycete is a kind of class", "pln": ["(: cnet_isa_c11ceda990 (IsA pyrenomycete class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrethrum is a kind of asterid dicot genus", "pln": ["(: cnet_isa_f90e6e5f1a (IsA pyrethrum asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrethrum is a kind of herb", "pln": ["(: cnet_isa_414615e3e6 (IsA pyrethrum herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrethrum is a kind of insecticide", "pln": ["(: cnet_isa_3a0251dbdb (IsA pyrethrum insecticide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pyridine is a kind of base", "pln": ["(: cnet_isa_577b48acef (IsA pyridine base) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pyriform area is a kind of neural structure", "pln": ["(: cnet_isa_edda471010 (IsA pyriform_area neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrilamine is a kind of antihistamine", "pln": ["(: cnet_isa_dce16a9a56 (IsA pyrilamine antihistamine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrimidine is a kind of base", "pln": ["(: cnet_isa_70c20c6f8b (IsA pyrimidine base) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrimidine is a kind of organic compound", "pln": ["(: cnet_isa_1aa9324ea1 (IsA pyrimidine organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrite is a kind of mineral", "pln": ["(: cnet_isa_c0bd25f9a9 (IsA pyrite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrite is a kind of sulfide", "pln": ["(: cnet_isa_8f81e7e604 (IsA pyrite sulfide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrocellulose is a kind of cellulose nitrate", "pln": ["(: cnet_isa_7f3d2ac278 (IsA pyrocellulose cellulose_nitrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrocephalus is a kind of bird genus", "pln": ["(: cnet_isa_6abfa6e0af (IsA pyrocephalus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrochemical process is a kind of chemical process", "pln": ["(: cnet_isa_0bfc9bdd3d (IsA pyrochemical_process chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pyroelectricity is a kind of electrical phenomenon", "pln": ["(: cnet_isa_4dda32dd87 (IsA pyroelectricity electrical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrogallol is a kind of phenol", "pln": ["(: cnet_isa_efc39d817b (IsA pyrogallol phenol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrogen is a kind of substance", "pln": ["(: cnet_isa_731709caab (IsA pyrogen substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pyrograph is a kind of design", "pln": ["(: cnet_isa_c6639ed980 (IsA pyrograph design) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrographer is a kind of artist", "pln": ["(: cnet_isa_a4d27fa9f5 (IsA pyrographer artist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrography is a kind of drawing", "pln": ["(: cnet_isa_9a2af71017 (IsA pyrography drawing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pyrolaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_7da1ea9e18 (IsA pyrolaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrolatry is a kind of worship", "pln": ["(: cnet_isa_20f761eb8d (IsA pyrolatry worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyroligneous acid is a kind of liquid", "pln": ["(: cnet_isa_1b44df4811 (IsA pyroligneous_acid liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pyrolusite is a kind of mineral", "pln": ["(: cnet_isa_cebb13d168 (IsA pyrolusite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrolysis is a kind of transformation", "pln": ["(: cnet_isa_9a778e7c31 (IsA pyrolysis transformation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyromancer is a kind of diviner", "pln": ["(: cnet_isa_e0683ccc69 (IsA pyromancer diviner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyromancy is a kind of divination", "pln": ["(: cnet_isa_5aef2a2a73 (IsA pyromancy divination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyromania is a kind of mania", "pln": ["(: cnet_isa_3539ac1470 (IsA pyromania mania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyromaniac is a kind of lunatic", "pln": ["(: cnet_isa_1333c04a75 (IsA pyromaniac lunatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrometer is a kind of thermometer", "pln": ["(: cnet_isa_6cf7cdca24 (IsA pyrometer thermometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrometric cone is a kind of pyrometer", "pln": ["(: cnet_isa_d4bd5616d3 (IsA pyrometric_cone pyrometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pyromorphite is a kind of mineral", "pln": ["(: cnet_isa_d85c151e2c (IsA pyromorphite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrope is a kind of garnet", "pln": ["(: cnet_isa_93c9b31032 (IsA pyrope garnet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrophobia is a kind of simple phobia", "pln": ["(: cnet_isa_af76445ef6 (IsA pyrophobia simple_phobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrophoric alloy is a kind of alloy", "pln": ["(: cnet_isa_c01de4dde4 (IsA pyrophoric_alloy alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrophorus is a kind of arthropod genus", "pln": ["(: cnet_isa_1720e32c48 (IsA pyrophorus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrophosphate is a kind of salt", "pln": ["(: cnet_isa_883f7640fb (IsA pyrophosphate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrophosphoric acid is a kind of polyphosphoric acid", "pln": ["(: cnet_isa_4b022b9141 (IsA pyrophosphoric_acid polyphosphoric_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pyrophyllite is a kind of mineral", "pln": ["(: cnet_isa_c1dd8e1558 (IsA pyrophyllite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrostat is a kind of thermostat", "pln": ["(: cnet_isa_18ad2fdecb (IsA pyrostat thermostat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrotechnic is a kind of trade", "pln": ["(: cnet_isa_b074260d59 (IsA pyrotechnic trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrotechnic is a kind of brilliance", "pln": ["(: cnet_isa_ff6dd3eec7 (IsA pyrotechnic brilliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pyroxene is a kind of mineral", "pln": ["(: cnet_isa_3e6d457c90 (IsA pyroxene mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyroxylin is a kind of cellulose nitrate", "pln": ["(: cnet_isa_968aa4dbf2 (IsA pyroxylin cellulose_nitrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrrhic is a kind of ritual dancing", "pln": ["(: cnet_isa_a62b974d69 (IsA pyrrhic ritual_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrrhic is a kind of metrical foot", "pln": ["(: cnet_isa_99594f01b2 (IsA pyrrhic metrical_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrrhic victory is a kind of victory", "pln": ["(: cnet_isa_708cc4781a (IsA pyrrhic_victory victory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrrhocoridae is a kind of arthropod family", "pln": ["(: cnet_isa_52b7a0129e (IsA pyrrhocoridae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrrhotite is a kind of mineral", "pln": ["(: cnet_isa_1bcf8e47ee (IsA pyrrhotite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrrhula is a kind of bird genus", "pln": ["(: cnet_isa_de4d598bb8 (IsA pyrrhula bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrrhuloxia is a kind of finch", "pln": ["(: cnet_isa_d9b943a4e3 (IsA pyrrhuloxia finch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrrophyta is a kind of phylum", "pln": ["(: cnet_isa_1da9b0a706 (IsA pyrrophyta phylum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrrosia is a kind of fern genus", "pln": ["(: cnet_isa_1576062317 (IsA pyrrosia fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrularia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_b61b9d04b9 (IsA pyrularia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyrus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_767c3d6f63 (IsA pyrus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyruvic acid is a kind of acid", "pln": ["(: cnet_isa_e46c7c1166 (IsA pyruvic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pythiaceae is a kind of fungus family", "pln": ["(: cnet_isa_8ee220e608 (IsA pythiaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pythian game is a kind of agon", "pln": ["(: cnet_isa_9385633716 (IsA pythian_game agon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pythium is a kind of fungus", "pln": ["(: cnet_isa_325a4c1f76 (IsA pythium fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "python is a kind of animal", "pln": ["(: cnet_isa_5b6211f5c3 (IsA python animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "python is a kind of constricting snake", "pln": ["(: cnet_isa_3bd78a3430 (IsA python constricting_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "python is a kind of programming language", "pln": ["(: cnet_isa_29bb404ae3 (IsA python programming_language) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "python is a kind of boa", "pln": ["(: cnet_isa_5ca217da19 (IsA python boa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "python is a kind of spirit", "pln": ["(: cnet_isa_c681eabc0f (IsA python spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pythoness is a kind of witch", "pln": ["(: cnet_isa_9e4c9b02fe (IsA pythoness witch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pythonidae is a kind of reptile family", "pln": ["(: cnet_isa_55723d5db0 (IsA pythonidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pythoninae is a kind of reptile family", "pln": ["(: cnet_isa_d2efcd81a2 (IsA pythoninae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "python is a kind of snake", "pln": ["(: cnet_isa_be8df985a2 (IsA python snake) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyuria is a kind of symptom", "pln": ["(: cnet_isa_df0b133bbb (IsA pyuria symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyx is a kind of chest", "pln": ["(: cnet_isa_469c7e793b (IsA pyx chest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "pyx is a kind of receptacle", "pln": ["(: cnet_isa_8f9f90a053 (IsA pyx receptacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyxidanthera is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_8b47f3c7cc (IsA pyxidanthera dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyxidium is a kind of fruit", "pln": ["(: cnet_isa_e65506ce0b (IsA pyxidium fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyxie is a kind of shrub", "pln": ["(: cnet_isa_83b2fd7334 (IsA pyxie shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "pyxis is a kind of box", "pln": ["(: cnet_isa_874f7edbc6 (IsA pyxis box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "q is a kind of letter", "pln": ["(: cnet_isa_0bc928c919 (IsA q letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "q fever is a kind of rickettsial disease", "pln": ["(: cnet_isa_05ef6edc31 (IsA q_fever rickettsial_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "qadi is a kind of judge", "pln": ["(: cnet_isa_dd728230d8 (IsA qadi judge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "qatari dirham is a kind of qatari monetary unit", "pln": ["(: cnet_isa_ade9141fbf (IsA qatari_dirham qatari_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "qatari monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_f5cbb79ccc (IsA qatari_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "qatari riyal is a kind of qatari monetary unit", "pln": ["(: cnet_isa_31c198b421 (IsA qatari_riyal qatari_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "qepiq is a kind of azerbaijani monetary unit", "pln": ["(: cnet_isa_fb67e264d8 (IsA qepiq azerbaijani_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "qi is a kind of energy", "pln": ["(: cnet_isa_b1474d1702 (IsA qi energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "qiang is a kind of tibeto burman", "pln": ["(: cnet_isa_a084ecaba6 (IsA qiang tibeto_burman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "qibla is a kind of direction", "pln": ["(: cnet_isa_756edda93b (IsA qibla direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "qindarka is a kind of albanian monetary unit", "pln": ["(: cnet_isa_3fb535bf1e (IsA qindarka albanian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "qing is a kind of dynasty", "pln": ["(: cnet_isa_64dbb622df (IsA qing dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "qoph is a kind of letter", "pln": ["(: cnet_isa_8338d2d0fd (IsA qoph letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quack is a kind of sound", "pln": ["(: cnet_isa_690d3f9d0d (IsA quack sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quack is a kind of doctor", "pln": ["(: cnet_isa_67029105b3 (IsA quack doctor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quack is a kind of mountebank", "pln": ["(: cnet_isa_a5eaf89f2d (IsA quack mountebank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quack quack is a kind of duck", "pln": ["(: cnet_isa_5dbfd2be9e (IsA quack_quack duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quackery is a kind of medical practice", "pln": ["(: cnet_isa_aaaf945c7d (IsA quackery medical_practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quad is a kind of area", "pln": ["(: cnet_isa_cec31b46dc (IsA quad area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quad is a kind of type", "pln": ["(: cnet_isa_cdeb0602ad (IsA quad type) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quadragesima is a kind of christian holy day", "pln": ["(: cnet_isa_9cc71826e4 (IsA quadragesima christian_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quadrangular prism is a kind of prism", "pln": ["(: cnet_isa_fa0ea05e21 (IsA quadrangular_prism prism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quadrant is a kind of measuring instrument", "pln": ["(: cnet_isa_66234ebcce (IsA quadrant measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quadrant is a kind of area", "pln": ["(: cnet_isa_6c8b99b79c (IsA quadrant area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quadrant is a kind of line", "pln": ["(: cnet_isa_c0173d59be (IsA quadrant line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quadrant is a kind of angle", "pln": ["(: cnet_isa_514ece812f (IsA quadrant angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quadrantanopia is a kind of visual impairment", "pln": ["(: cnet_isa_71c240a9a8 (IsA quadrantanopia visual_impairment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quadraphony is a kind of stereo", "pln": ["(: cnet_isa_456808e325 (IsA quadraphony stereo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quadrate is a kind of cube", "pln": ["(: cnet_isa_7f2dd2631d (IsA quadrate cube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quadrate is a kind of square", "pln": ["(: cnet_isa_3a799675e2 (IsA quadrate square) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quadratic is a kind of polynomial", "pln": ["(: cnet_isa_8e8a3b133a (IsA quadratic polynomial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quadratic equation is a kind of equation", "pln": ["(: cnet_isa_431262e23a (IsA quadratic_equation equation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quadratic is a kind of algebra", "pln": ["(: cnet_isa_c12acc09b8 (IsA quadratic algebra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "quadrature is a kind of construction", "pln": ["(: cnet_isa_8c6e841eb8 (IsA quadrature construction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "quadrennium is a kind of time period", "pln": ["(: cnet_isa_b16bfe4a78 (IsA quadrennium time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quadric is a kind of curve", "pln": ["(: cnet_isa_41501e14a9 (IsA quadric curve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quadricep is a kind of extensor muscle", "pln": ["(: cnet_isa_b707d8ba48 (IsA quadricep extensor_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quadrilateral is a kind of polygon", "pln": ["(: cnet_isa_ccb1e288ea (IsA quadrilateral polygon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quadrille is a kind of square dance", "pln": ["(: cnet_isa_1da9edb94d (IsA quadrille square_dance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quadrille is a kind of dance music", "pln": ["(: cnet_isa_c4ffa05496 (IsA quadrille dance_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quadrillion is a kind of large integer", "pln": ["(: cnet_isa_1b410cb5c9 (IsA quadrillion large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quadripara is a kind of mother", "pln": ["(: cnet_isa_922a3c6571 (IsA quadripara mother) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quadriplegia is a kind of paralysis", "pln": ["(: cnet_isa_3311956ae5 (IsA quadriplegia paralysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "quadriplegic is a kind of handicapped person", "pln": ["(: cnet_isa_e8f4699adf (IsA quadriplegic handicapped_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quadrivium is a kind of humanistic discipline", "pln": ["(: cnet_isa_836a88e9ed (IsA quadrivium humanistic_discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quadroon is a kind of mixed blood", "pln": ["(: cnet_isa_c5185288b5 (IsA quadroon mixed_blood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quadrumvirate is a kind of quartet", "pln": ["(: cnet_isa_deaced70f7 (IsA quadrumvirate quartet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quadruped is a kind of tetrapod", "pln": ["(: cnet_isa_7a5990144a (IsA quadruped tetrapod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quadruple is a kind of multiple", "pln": ["(: cnet_isa_8bb1601c32 (IsA quadruple multiple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quadruplet is a kind of sibling", "pln": ["(: cnet_isa_0c5e2a0de0 (IsA quadruplet sibling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quadruplicate is a kind of copy", "pln": ["(: cnet_isa_5731cf2517 (IsA quadruplicate copy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quadrupling is a kind of multiplication", "pln": ["(: cnet_isa_4f0324f450 (IsA quadrupling multiplication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quaestor is a kind of official", "pln": ["(: cnet_isa_d50a04763c (IsA quaestor official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quaff is a kind of draft", "pln": ["(: cnet_isa_a238fb52f1 (IsA quaff draft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quaffer is a kind of drinker", "pln": ["(: cnet_isa_550c387f36 (IsA quaffer drinker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quagga is a kind of equine", "pln": ["(: cnet_isa_e26acc8087 (IsA quagga equine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quahaug is a kind of clam", "pln": ["(: cnet_isa_75eabefcae (IsA quahaug clam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quahog is a kind of clam", "pln": ["(: cnet_isa_037f7d8cdb (IsA quahog clam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quail is a kind of bird", "pln": ["(: cnet_isa_32d3e88841 (IsA quail bird) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quail is a kind of phasianid", "pln": ["(: cnet_isa_c71836a080 (IsA quail phasianid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quail is a kind of wildfowl", "pln": ["(: cnet_isa_be82a59058 (IsA quail wildfowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "quail bush is a kind of saltbush", "pln": ["(: cnet_isa_dbfe05813b (IsA quail_bush saltbush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quaintness is a kind of old fashionedness", "pln": ["(: cnet_isa_6518952bbb (IsA quaintness old_fashionedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quaintness is a kind of unfamiliarity", "pln": ["(: cnet_isa_9ea9465840 (IsA quaintness unfamiliarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "quaker is a kind of christian", "pln": ["(: cnet_isa_f359c5a91d (IsA quaker christian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quaker is a kind of coward", "pln": ["(: cnet_isa_30e5eee438 (IsA quaker coward) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quaker gun is a kind of gun", "pln": ["(: cnet_isa_dc06fd3a52 (IsA quaker_gun gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quakerism is a kind of theological doctrine", "pln": ["(: cnet_isa_03196fc38c (IsA quakerism theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quaking aspen is a kind of aspen", "pln": ["(: cnet_isa_289bef8d86 (IsA quaking_aspen aspen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "qualification is a kind of revision", "pln": ["(: cnet_isa_af4a73864c (IsA qualification revision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "qualification is a kind of fitness", "pln": ["(: cnet_isa_a8e0223976 (IsA qualification fitness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "qualifier is a kind of contestant", "pln": ["(: cnet_isa_452b0f4aac (IsA qualifier contestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "quality is a kind of attribute", "pln": ["(: cnet_isa_74355e4df2 (IsA quality attribute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quality is a kind of degree", "pln": ["(: cnet_isa_acac91f8ff (IsA quality degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quality is a kind of property", "pln": ["(: cnet_isa_6a0e8e0998 (IsA quality property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quality is a kind of social station", "pln": ["(: cnet_isa_c843295993 (IsA quality social_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quality control is a kind of internal control", "pln": ["(: cnet_isa_1246c4472a (IsA quality_control internal_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quality of life is a kind of gratification", "pln": ["(: cnet_isa_2f7dd4fdbd (IsA quality_of_life gratification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quandong is a kind of edible fruit", "pln": ["(: cnet_isa_ede2f81d3b (IsA quandong edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quandong is a kind of fruit", "pln": ["(: cnet_isa_afdffc49ca (IsA quandong fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "quandong is a kind of tree", "pln": ["(: cnet_isa_dd2baa9de7 (IsA quandong tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quandong nut is a kind of edible nut", "pln": ["(: cnet_isa_4a59f12284 (IsA quandong_nut edible_nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quango is a kind of organization", "pln": ["(: cnet_isa_5d9b90b4cc (IsA quango organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quantic is a kind of homogeneous polynomial", "pln": ["(: cnet_isa_2086f6de3e (IsA quantic homogeneous_polynomial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quantifiability is a kind of quality", "pln": ["(: cnet_isa_63cf82abfc (IsA quantifiability quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quantification is a kind of measurement", "pln": ["(: cnet_isa_a86147d37b (IsA quantification measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quantification is a kind of restriction", "pln": ["(: cnet_isa_1c1b654e67 (IsA quantification restriction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quantifier is a kind of word", "pln": ["(: cnet_isa_524e06fcde (IsA quantifier word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quantitative analysis is a kind of chemical analysis", "pln": ["(: cnet_isa_a3b2e3078a (IsA quantitative_analysis chemical_analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "quantitative analysis is a kind of measurement", "pln": ["(: cnet_isa_ee83059cf0 (IsA quantitative_analysis measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quantity is a kind of amount", "pln": ["(: cnet_isa_f0c9d94177 (IsA quantity amount) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quantity is a kind of concept", "pln": ["(: cnet_isa_276484ed46 (IsA quantity concept) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quantization is a kind of division", "pln": ["(: cnet_isa_6848fc794b (IsA quantization division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quantum is a kind of quantity", "pln": ["(: cnet_isa_2a2fad9bbb (IsA quantum quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quantum is a kind of measure", "pln": ["(: cnet_isa_b7a219ea4d (IsA quantum measure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quantum chromodynamic is a kind of quantum field theory", "pln": ["(: cnet_isa_9716b05707 (IsA quantum_chromodynamic quantum_field_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quantum electrodynamic is a kind of quantum field theory", "pln": ["(: cnet_isa_e672f08d57 (IsA quantum_electrodynamic quantum_field_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quantum field theory is a kind of quantum physic", "pln": ["(: cnet_isa_4793dd47ba (IsA quantum_field_theory quantum_physic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quantum jump is a kind of leap", "pln": ["(: cnet_isa_311fafb693 (IsA quantum_jump leap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quantum leap is a kind of jump", "pln": ["(: cnet_isa_d6915589ab (IsA quantum_leap jump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quantum mechanic is a kind of quantum physic", "pln": ["(: cnet_isa_271ba7e1fe (IsA quantum_mechanic quantum_physic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quantum physic is a kind of physic", "pln": ["(: cnet_isa_4cb4c9c2c8 (IsA quantum_physic physic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quantum theory is a kind of scientific theory", "pln": ["(: cnet_isa_0848e1e6e7 (IsA quantum_theory scientific_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quapaw is a kind of dhegiha", "pln": ["(: cnet_isa_7ef773f385 (IsA quapaw dhegiha) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarantine is a kind of isolation", "pln": ["(: cnet_isa_ed7281a281 (IsA quarantine isolation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quark is a kind of elementary particle", "pln": ["(: cnet_isa_d4b44cfb26 (IsA quark elementary_particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quark cheese is a kind of cheese", "pln": ["(: cnet_isa_81e032f081 (IsA quark_cheese cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarrel is a kind of arrow", "pln": ["(: cnet_isa_ec251a140d (IsA quarrel arrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "quarrel is a kind of dispute", "pln": ["(: cnet_isa_c821611193 (IsA quarrel dispute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarreler is a kind of disputant", "pln": ["(: cnet_isa_089b289d2a (IsA quarreler disputant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarrying is a kind of production", "pln": ["(: cnet_isa_a6a5ebe939 (IsA quarrying production) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarryman is a kind of worker", "pln": ["(: cnet_isa_b291bc628d (IsA quarryman worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quart is a kind of british capacity unit", "pln": ["(: cnet_isa_6229ce874e (IsA quart british_capacity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quart is a kind of united state dry unit", "pln": ["(: cnet_isa_48cc6cd1c6 (IsA quart united_state_dry_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quart is a kind of united state liquid unit", "pln": ["(: cnet_isa_aed60fc439 (IsA quart united_state_liquid_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quartan is a kind of ague", "pln": ["(: cnet_isa_6c874e0d65 (IsA quartan ague) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarter is a kind of worth twenty five cent", "pln": ["(: cnet_isa_4f5252b5d2 (IsA quarter worth_twenty_five_cent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarter is a kind of clemency", "pln": ["(: cnet_isa_82d03c541f (IsA quarter clemency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "quarter is a kind of piece of leather", "pln": ["(: cnet_isa_5b17190690 (IsA quarter piece_of_leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarter is a kind of part", "pln": ["(: cnet_isa_606ad960c3 (IsA quarter part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarter is a kind of orientation", "pln": ["(: cnet_isa_0b5b522409 (IsA quarter orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarter is a kind of city district", "pln": ["(: cnet_isa_4d4c81c158 (IsA quarter city_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarter is a kind of person", "pln": ["(: cnet_isa_0926c79d69 (IsA quarter person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarter is a kind of coin", "pln": ["(: cnet_isa_4ce5ff5025 (IsA quarter coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarter is a kind of avoirdupois unit", "pln": ["(: cnet_isa_54efa764e7 (IsA quarter avoirdupois_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarter is a kind of british capacity unit", "pln": ["(: cnet_isa_61ab27ada9 (IsA quarter british_capacity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarter is a kind of school term", "pln": ["(: cnet_isa_675a3f6cec (IsA quarter school_term) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "quarter is a kind of time period", "pln": ["(: cnet_isa_fade6e213c (IsA quarter time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarter is a kind of time unit", "pln": ["(: cnet_isa_70a30096d7 (IsA quarter time_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarter century is a kind of time period", "pln": ["(: cnet_isa_a33a90a3cd (IsA quarter_century time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarter crack is a kind of sand crack", "pln": ["(: cnet_isa_3fcb3face2 (IsA quarter_crack sand_crack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarter day is a kind of christian holy day", "pln": ["(: cnet_isa_e2b78577c0 (IsA quarter_day christian_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarter horse is a kind of saddle horse", "pln": ["(: cnet_isa_d850591253 (IsA quarter_horse saddle_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarter hour is a kind of time unit", "pln": ["(: cnet_isa_db356dfc97 (IsA quarter_hour time_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarter mile is a kind of linear unit", "pln": ["(: cnet_isa_95c4b7f1f9 (IsA quarter_mile linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarter note is a kind of note", "pln": ["(: cnet_isa_f06420ad46 (IsA quarter_note note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarter plate is a kind of plate", "pln": ["(: cnet_isa_4c3805fbae (IsA quarter_plate plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarter pound is a kind of avoirdupois unit", "pln": ["(: cnet_isa_d853d104bc (IsA quarter_pound avoirdupois_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "quarter rest is a kind of rest", "pln": ["(: cnet_isa_7dd410aa9b (IsA quarter_rest rest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarter section is a kind of area unit", "pln": ["(: cnet_isa_05c7872ed3 (IsA quarter_section area_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarter session is a kind of court", "pln": ["(: cnet_isa_e94645ef8f (IsA quarter_session court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarter stock is a kind of stock", "pln": ["(: cnet_isa_612c0b4d9c (IsA quarter_stock stock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarter tone is a kind of interval", "pln": ["(: cnet_isa_ed81afa618 (IsA quarter_tone interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarterback is a kind of back", "pln": ["(: cnet_isa_f9421ede46 (IsA quarterback back) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarterdeck is a kind of deck", "pln": ["(: cnet_isa_e37118bd8c (IsA quarterdeck deck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarterfinal is a kind of match", "pln": ["(: cnet_isa_5244a57708 (IsA quarterfinal match) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "quartering is a kind of division", "pln": ["(: cnet_isa_fd99c8034c (IsA quartering division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quartering is a kind of coat of arm", "pln": ["(: cnet_isa_870f9c8edb (IsA quartering coat_of_arm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quartering is a kind of housing", "pln": ["(: cnet_isa_cfcf69be59 (IsA quartering housing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarterlight is a kind of car window", "pln": ["(: cnet_isa_204e9ed203 (IsA quarterlight car_window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarterly is a kind of sery", "pln": ["(: cnet_isa_bf03536d27 (IsA quarterly sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quartermaster is a kind of army officer", "pln": ["(: cnet_isa_691ba33a49 (IsA quartermaster army_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quartermaster general is a kind of staff officer", "pln": ["(: cnet_isa_8083af8117 (IsA quartermaster_general staff_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarterstaff is a kind of staff", "pln": ["(: cnet_isa_6ff3e887c4 (IsA quarterstaff staff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quartet is a kind of musical composition", "pln": ["(: cnet_isa_6efbaa1237 (IsA quartet musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quartet is a kind of gathering", "pln": ["(: cnet_isa_5ae64565c0 (IsA quartet gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quartet is a kind of musical organization", "pln": ["(: cnet_isa_47bb083628 (IsA quartet musical_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quartet is a kind of set", "pln": ["(: cnet_isa_d7fad7e725 (IsA quartet set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quartile is a kind of mark", "pln": ["(: cnet_isa_6b953d8dfa (IsA quartile mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quarto is a kind of size", "pln": ["(: cnet_isa_ace3dffde4 (IsA quarto size) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quartz is a kind of mineral", "pln": ["(: cnet_isa_223df4fe4c (IsA quartz mineral) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quartz battery is a kind of stamp mill", "pln": ["(: cnet_isa_7c32aa722a (IsA quartz_battery stamp_mill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quartz crystal is a kind of quartz", "pln": ["(: cnet_isa_7a74da3b25 (IsA quartz_crystal quartz) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "quartz glass is a kind of natural glass", "pln": ["(: cnet_isa_acc82aacea (IsA quartz_glass natural_glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quartz lamp is a kind of mercury vapor lamp", "pln": ["(: cnet_isa_31980ae7b0 (IsA quartz_lamp mercury_vapor_lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quartzite is a kind of rock", "pln": ["(: cnet_isa_1e53e4fc2a (IsA quartzite rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quasar is a kind of celestial body", "pln": ["(: cnet_isa_40acffb460 (IsA quasar celestial_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quasi contract is a kind of contract", "pln": ["(: cnet_isa_5b1195e1f8 (IsA quasi_contract contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quasiparticle is a kind of quantum", "pln": ["(: cnet_isa_d5f7354823 (IsA quasiparticle quantum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quassia is a kind of bitterwood tree", "pln": ["(: cnet_isa_f7674b17df (IsA quassia bitterwood_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quassia is a kind of organic compound", "pln": ["(: cnet_isa_b2c1c2c54d (IsA quassia organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quatercentennial is a kind of anniversary", "pln": ["(: cnet_isa_d236fb7827 (IsA quatercentennial anniversary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "quaternary ammonium compound is a kind of organic compound", "pln": ["(: cnet_isa_45d8601776 (IsA quaternary_ammonium_compound organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quatrain is a kind of stanza", "pln": ["(: cnet_isa_6b03d0b57d (IsA quatrain stanza) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quattrocento is a kind of century", "pln": ["(: cnet_isa_21798e61db (IsA quattrocento century) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quaver is a kind of sound", "pln": ["(: cnet_isa_df5cc9101d (IsA quaver sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "quay is a kind of pier", "pln": ["(: cnet_isa_c91b890d00 (IsA quay pier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "queasiness is a kind of nausea", "pln": ["(: cnet_isa_9714fe8025 (IsA queasiness nausea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quebecois is a kind of canadian", "pln": ["(: cnet_isa_482eef3aaf (IsA quebecois canadian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quechua is a kind of amerind", "pln": ["(: cnet_isa_2f42dd34a5 (IsA quechua amerind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quechua is a kind of south american", "pln": ["(: cnet_isa_0422c9b0f7 (IsA quechua south_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "queckenstedt s test is a kind of diagnostic test", "pln": ["(: cnet_isa_e4b84657be (IsA queckenstedt_s_test diagnostic_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "queen s counsel is a kind of counsel to crown", "pln": ["(: cnet_isa_d5e48d194f (IsA queen_s_counsel counsel_to_crown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "queen s crape myrtle is a kind of angiospermous tree", "pln": ["(: cnet_isa_90a7036e59 (IsA queen_s_crape_myrtle angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "queen s cup is a kind of clintonia", "pln": ["(: cnet_isa_0bb8fe8ec5 (IsA queen_s_cup clintonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "queen is a kind of female monarch", "pln": ["(: cnet_isa_57d8d1f73f (IsA queen female_monarch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "queen is a kind of royalty", "pln": ["(: cnet_isa_5f1e18809d (IsA queen royalty) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "queen is a kind of insect", "pln": ["(: cnet_isa_aa4adbdd7e (IsA queen insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "queen is a kind of naked mole rat", "pln": ["(: cnet_isa_044bd6e994 (IsA queen naked_mole_rat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "queen is a kind of face card", "pln": ["(: cnet_isa_bbcd0bcdf3 (IsA queen face_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "queen is a kind of chessman", "pln": ["(: cnet_isa_326d57bbb5 (IsA queen chessman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "queen is a kind of female aristocrat", "pln": ["(: cnet_isa_7d02e4a647 (IsA queen female_aristocrat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "queen is a kind of personification", "pln": ["(: cnet_isa_40074c9606 (IsA queen personification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "queen bee is a kind of queen", "pln": ["(: cnet_isa_1a308a250e (IsA queen_bee queen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "queen consort is a kind of queen", "pln": ["(: cnet_isa_c402213d9a (IsA queen_consort queen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "queen dowager is a kind of queen", "pln": ["(: cnet_isa_e6de66d0de (IsA queen_dowager queen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "queen elizabeth is a kind of dignified person", "pln": ["(: cnet_isa_2b8a312827 (IsA queen_elizabeth dignified_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "queen elizabeth second is a kind of monarch", "pln": ["(: cnet_isa_b12c3d62a5 (IsA queen_elizabeth_second monarch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "queen mother is a kind of queen dowager", "pln": ["(: cnet_isa_7611cb1280 (IsA queen_mother queen_dowager) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "queen of england is a kind of queen", "pln": ["(: cnet_isa_7b82d4de1e (IsA queen_of_england queen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "queen of may is a kind of girl", "pln": ["(: cnet_isa_ff65b381a3 (IsA queen_of_may girl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "queen of night is a kind of night blooming cereus", "pln": ["(: cnet_isa_72607e0827 (IsA queen_of_night night_blooming_cereus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "queen post is a kind of post", "pln": ["(: cnet_isa_3819bdde95 (IsA queen_post post) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "queen regent is a kind of queen", "pln": ["(: cnet_isa_4f36113897 (IsA queen_regent queen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "queen triggerfish is a kind of triggerfish", "pln": ["(: cnet_isa_8eab97da65 (IsA queen_triggerfish triggerfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "queensland is a kind of state of australia", "pln": ["(: cnet_isa_4b86fcb356 (IsA queensland state_of_australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "queensland bottletree is a kind of bottle tree", "pln": ["(: cnet_isa_84fc26262f (IsA queensland_bottletree bottle_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "queensland grass cloth plant is a kind of woody plant", "pln": ["(: cnet_isa_b7869eb3eb (IsA queensland_grass_cloth_plant woody_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "queensland hemp is a kind of mallow", "pln": ["(: cnet_isa_e6f1937a61 (IsA queensland_hemp mallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "queensland nut is a kind of macadamia", "pln": ["(: cnet_isa_1e354a1ae4 (IsA queensland_nut macadamia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quellung is a kind of organic process", "pln": ["(: cnet_isa_43e456f39b (IsA quellung organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quenched steel is a kind of steel", "pln": ["(: cnet_isa_967cf2a4a6 (IsA quenched_steel steel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quercitron is a kind of dye", "pln": ["(: cnet_isa_e0f775fb06 (IsA quercitron dye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quercus is a kind of hamamelid dicot genus", "pln": ["(: cnet_isa_fcbdc61ba9 (IsA quercus hamamelid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quern is a kind of mill", "pln": ["(: cnet_isa_9893e5bc23 (IsA quern mill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "querulousness is a kind of temper", "pln": ["(: cnet_isa_77d50815dd (IsA querulousness temper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quesadilla is a kind of burrito", "pln": ["(: cnet_isa_d36062480d (IsA quesadilla burrito) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quest is a kind of search", "pln": ["(: cnet_isa_7d51b16c87 (IsA quest search) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "question is a kind of marriage proposal", "pln": ["(: cnet_isa_8b328fe91a (IsA question marriage_proposal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "question is a kind of questioning", "pln": ["(: cnet_isa_46a05da2e9 (IsA question questioning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "question is a kind of sentence", "pln": ["(: cnet_isa_5d6878682d (IsA question sentence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "question is a kind of subject", "pln": ["(: cnet_isa_1fb29a1925 (IsA question subject) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "question master is a kind of master of ceremonies", "pln": ["(: cnet_isa_f620d95b4a (IsA question_master master_of_ceremonies) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "question mark is a kind of punctuation", "pln": ["(: cnet_isa_987fd8fb53 (IsA question_mark punctuation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "question master is a kind of master of ceremony", "pln": ["(: cnet_isa_49c1a243a9 (IsA question_master master_of_ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "question of fact is a kind of question", "pln": ["(: cnet_isa_afd4ebcc77 (IsA question_of_fact question) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "question of law is a kind of question", "pln": ["(: cnet_isa_0a9e4c99a0 (IsA question_of_law question) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "question time is a kind of time period", "pln": ["(: cnet_isa_f100566eb5 (IsA question_time time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "questioning is a kind of request", "pln": ["(: cnet_isa_933efca225 (IsA questioning request) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "questionnaire is a kind of form", "pln": ["(: cnet_isa_5a00573609 (IsA questionnaire form) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quetzal is a kind of bird", "pln": ["(: cnet_isa_dec485f0d4 (IsA quetzal bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quetzal is a kind of trogon", "pln": ["(: cnet_isa_865223da0c (IsA quetzal trogon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quetzal is a kind of guatemalan monetary unit", "pln": ["(: cnet_isa_02d2e4e22c (IsA quetzal guatemalan_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "queue is a kind of braid", "pln": ["(: cnet_isa_25719c50cd (IsA queue braid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "queue is a kind of line", "pln": ["(: cnet_isa_29d0b92c05 (IsA queue line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "queue is a kind of list", "pln": ["(: cnet_isa_a1719e60b4 (IsA queue list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quibble is a kind of evasion", "pln": ["(: cnet_isa_a479936bc0 (IsA quibble evasion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quibbler is a kind of malcontent", "pln": ["(: cnet_isa_fed0363362 (IsA quibbler malcontent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quiche is a kind of maya", "pln": ["(: cnet_isa_ae50676d7c (IsA quiche maya) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quiche is a kind of tart", "pln": ["(: cnet_isa_40cdfc6420 (IsA quiche tart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quiche is a kind of mayan", "pln": ["(: cnet_isa_99efaf725a (IsA quiche mayan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quiche lorraine is a kind of quiche", "pln": ["(: cnet_isa_7d906f9ea4 (IsA quiche_lorraine quiche) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quick is a kind of area", "pln": ["(: cnet_isa_df549b601c (IsA quick area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quick bread is a kind of bread", "pln": ["(: cnet_isa_63a2b8a3ab (IsA quick_bread bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "quick march is a kind of march", "pln": ["(: cnet_isa_028477dedb (IsA quick_march march) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "quick study is a kind of learner", "pln": ["(: cnet_isa_145fa3fba9 (IsA quick_study learner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quick time is a kind of pace", "pln": ["(: cnet_isa_7997707844 (IsA quick_time pace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "quickener is a kind of agent", "pln": ["(: cnet_isa_7c7915e37f (IsA quickener agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "quickening is a kind of organic process", "pln": ["(: cnet_isa_ff9a58997c (IsA quickening organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quickening is a kind of degree", "pln": ["(: cnet_isa_2c7d12d13b (IsA quickening degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quicksand is a kind of pit", "pln": ["(: cnet_isa_8b64ccdded (IsA quicksand pit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quicksand is a kind of situation", "pln": ["(: cnet_isa_5d2bd42586 (IsA quicksand situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "quickset is a kind of cutting", "pln": ["(: cnet_isa_99171fcc98 (IsA quickset cutting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quickstep is a kind of ballroom dancing", "pln": ["(: cnet_isa_b897b82c90 (IsA quickstep ballroom_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quickstep is a kind of military march", "pln": ["(: cnet_isa_92cd6fcd95 (IsA quickstep military_march) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quid pro quo is a kind of retainer", "pln": ["(: cnet_isa_13d318ce99 (IsA quid_pro_quo retainer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quiddity is a kind of kernel", "pln": ["(: cnet_isa_80fc7b9ace (IsA quiddity kernel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quiescence is a kind of rest", "pln": ["(: cnet_isa_a69f43a3b4 (IsA quiescence rest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quietism is a kind of mysticism", "pln": ["(: cnet_isa_eb0bfeb2f8 (IsA quietism mysticism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quietist is a kind of mystic", "pln": ["(: cnet_isa_14bfd078d6 (IsA quietist mystic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quietness is a kind of silence", "pln": ["(: cnet_isa_66630caaa0 (IsA quietness silence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quiff is a kind of forelock", "pln": ["(: cnet_isa_b49ac070ae (IsA quiff forelock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quill is a kind of feather", "pln": ["(: cnet_isa_7d4245f13e (IsA quill feather) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quill is a kind of writing instrument", "pln": ["(: cnet_isa_e06c392167 (IsA quill writing_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quill is a kind of rib", "pln": ["(: cnet_isa_0f18bbb4ce (IsA quill rib) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quill is a kind of spine", "pln": ["(: cnet_isa_ea8c60e105 (IsA quill spine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quill is a kind of pen", "pln": ["(: cnet_isa_b5fe527e6c (IsA quill pen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quillwort is a kind of fern ally", "pln": ["(: cnet_isa_0552759a3c (IsA quillwort fern_ally) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quilt is a kind of bedclothe", "pln": ["(: cnet_isa_ec65a82fc6 (IsA quilt bedclothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quilted bedspread is a kind of bedspread", "pln": ["(: cnet_isa_a99c9fcd26 (IsA quilted_bedspread bedspread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quilting is a kind of embroidery stitch", "pln": ["(: cnet_isa_69f090d504 (IsA quilting embroidery_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quilting is a kind of fabric", "pln": ["(: cnet_isa_cd5c52fd0b (IsA quilting fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "quilting bee is a kind of bee", "pln": ["(: cnet_isa_b7198c402a (IsA quilting_bee bee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quince is a kind of edible fruit", "pln": ["(: cnet_isa_afe82f8679 (IsA quince edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quince is a kind of pome", "pln": ["(: cnet_isa_cdbfdcc305 (IsA quince pome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quince is a kind of fruit tree", "pln": ["(: cnet_isa_6968b38863 (IsA quince fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quincentennial is a kind of anniversary", "pln": ["(: cnet_isa_fa436f02fc (IsA quincentennial anniversary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quinine is a kind of antimalarial", "pln": ["(: cnet_isa_d06e6d749d (IsA quinine antimalarial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quinone is a kind of compound", "pln": ["(: cnet_isa_dfad84f747 (IsA quinone compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quinquagesima is a kind of christian holy day", "pln": ["(: cnet_isa_631d2bb5da (IsA quinquagesima christian_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quinquefoliate leaf is a kind of compound leaf", "pln": ["(: cnet_isa_83366506da (IsA quinquefoliate_leaf compound_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quinquennium is a kind of time period", "pln": ["(: cnet_isa_2a6d4ac7f2 (IsA quinquennium time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quinsy is a kind of angina", "pln": ["(: cnet_isa_d87d46f89a (IsA quinsy angina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quintal is a kind of metric weight unit", "pln": ["(: cnet_isa_52dde7492e (IsA quintal metric_weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quintessence is a kind of example", "pln": ["(: cnet_isa_b62039f8d6 (IsA quintessence example) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quintessence is a kind of kernel", "pln": ["(: cnet_isa_9e0764c2ca (IsA quintessence kernel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quintessence is a kind of element", "pln": ["(: cnet_isa_4e5006b8dd (IsA quintessence element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quintet is a kind of musical composition", "pln": ["(: cnet_isa_fcd20ebaf9 (IsA quintet musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "quintet is a kind of gathering", "pln": ["(: cnet_isa_b1805f4cbf (IsA quintet gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quintet is a kind of musical organization", "pln": ["(: cnet_isa_8e07fbbc88 (IsA quintet musical_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quintet is a kind of set", "pln": ["(: cnet_isa_5f92647d9b (IsA quintet set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quintillion is a kind of large integer", "pln": ["(: cnet_isa_6f055b974d (IsA quintillion large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quintipara is a kind of mother", "pln": ["(: cnet_isa_149937bf54 (IsA quintipara mother) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quintuplet is a kind of sibling", "pln": ["(: cnet_isa_0c436568d8 (IsA quintuplet sibling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quintupling is a kind of multiplication", "pln": ["(: cnet_isa_cedc338163 (IsA quintupling multiplication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quipu is a kind of calculator", "pln": ["(: cnet_isa_b27e0157fd (IsA quipu calculator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quira is a kind of tree", "pln": ["(: cnet_isa_0a649f89c4 (IsA quira tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "quire is a kind of definite quantity", "pln": ["(: cnet_isa_978f76b41d (IsA quire definite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quirk is a kind of groove", "pln": ["(: cnet_isa_33ef057632 (IsA quirk groove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quirk bead is a kind of beading", "pln": ["(: cnet_isa_d3831ec63a (IsA quirk_bead beading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quirk molding is a kind of molding", "pln": ["(: cnet_isa_606371263e (IsA quirk_molding molding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quirt is a kind of whip", "pln": ["(: cnet_isa_f6d09380a9 (IsA quirt whip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quiscalus is a kind of bird genus", "pln": ["(: cnet_isa_b25864a42c (IsA quiscalus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quitclaim is a kind of transfer", "pln": ["(: cnet_isa_b37ff1dacc (IsA quitclaim transfer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quitclaim is a kind of conveyance", "pln": ["(: cnet_isa_0419ee9c39 (IsA quitclaim conveyance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quittance is a kind of document", "pln": ["(: cnet_isa_3a0dafdea1 (IsA quittance document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quitter is a kind of person", "pln": ["(: cnet_isa_6c789bd0a5 (IsA quitter person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quiver is a kind of case", "pln": ["(: cnet_isa_3fc32cc366 (IsA quiver case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quiz is a kind of examination", "pln": ["(: cnet_isa_8f88ce1850 (IsA quiz examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quiz program is a kind of game show", "pln": ["(: cnet_isa_fbd211d9cd (IsA quiz_program game_show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "quo warranto is a kind of hearing", "pln": ["(: cnet_isa_ffc927ad4c (IsA quo_warranto hearing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quodlibet is a kind of issue", "pln": ["(: cnet_isa_825dd4885e (IsA quodlibet issue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quoin is a kind of keystone", "pln": ["(: cnet_isa_2528e0fb27 (IsA quoin keystone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quoin is a kind of wedge", "pln": ["(: cnet_isa_6a09fc5dba (IsA quoin wedge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quoit is a kind of game equipment", "pln": ["(: cnet_isa_a28fb8c723 (IsA quoit game_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quoit is a kind of outdoor game", "pln": ["(: cnet_isa_ba69f19666 (IsA quoit outdoor_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quoratean is a kind of hokan", "pln": ["(: cnet_isa_b782178197 (IsA quoratean hokan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quorum is a kind of gathering", "pln": ["(: cnet_isa_e746f37e98 (IsA quorum gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quota is a kind of trade barrier", "pln": ["(: cnet_isa_9ffc8fec77 (IsA quota trade_barrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quota is a kind of allotment", "pln": ["(: cnet_isa_eb7e6673ad (IsA quota allotment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quota is a kind of number", "pln": ["(: cnet_isa_df2780b343 (IsA quota number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quotability is a kind of worthiness", "pln": ["(: cnet_isa_2ea6cbfa01 (IsA quotability worthiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quotation is a kind of practice", "pln": ["(: cnet_isa_84dd84847c (IsA quotation practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quotation is a kind of excerpt", "pln": ["(: cnet_isa_3c2595786a (IsA quotation excerpt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quotation is a kind of statement", "pln": ["(: cnet_isa_fe620597b9 (IsA quotation statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "quotation mark is a kind of punctuation", "pln": ["(: cnet_isa_2dd9212bbf (IsA quotation_mark punctuation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quoter is a kind of communicator", "pln": ["(: cnet_isa_040c1d8284 (IsA quoter communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quotient is a kind of ratio", "pln": ["(: cnet_isa_0765c00a77 (IsA quotient ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quotient is a kind of number", "pln": ["(: cnet_isa_db1376e72f (IsA quotient number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "quotient verdict is a kind of compromise verdict", "pln": ["(: cnet_isa_e1754465cf (IsA quotient_verdict compromise_verdict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "qurush is a kind of saudi arabian monetary unit", "pln": ["(: cnet_isa_da12c97132 (IsA qurush saudi_arabian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "qwerty keyboard is a kind of typewriter keyboard", "pln": ["(: cnet_isa_5eb82633c8 (IsA qwerty_keyboard typewriter_keyboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "r is a kind of letter", "pln": ["(: cnet_isa_5d7ee043c2 (IsA r letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "r tree is a kind of tree", "pln": ["(: cnet_isa_ae4f57cabb (IsA r_tree tree) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rabato is a kind of collar", "pln": ["(: cnet_isa_2fdbae3295 (IsA rabato collar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rabbet is a kind of groove", "pln": ["(: cnet_isa_f8efa9cc26 (IsA rabbet groove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rabbet joint is a kind of joint", "pln": ["(: cnet_isa_f8582fb72b (IsA rabbet_joint joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rabbi is a kind of spiritual leader", "pln": ["(: cnet_isa_75477e7c9e (IsA rabbi spiritual_leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rabbi is a kind of title", "pln": ["(: cnet_isa_1c5fc26805 (IsA rabbi title) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rabbinate is a kind of position", "pln": ["(: cnet_isa_70a40ed40a (IsA rabbinate position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rabbinate is a kind of priesthood", "pln": ["(: cnet_isa_a0a0c80c1d (IsA rabbinate priesthood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rabbit is a kind of animal", "pln": ["(: cnet_isa_3b78757b1c (IsA rabbit animal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rabbit is a kind of mammal", "pln": ["(: cnet_isa_96584fe903 (IsA rabbit mammal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rabbit is a kind of leporid", "pln": ["(: cnet_isa_f27531a921 (IsA rabbit leporid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rabbit is a kind of game", "pln": ["(: cnet_isa_59b31ce7c4 (IsA rabbit game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rabbit brush is a kind of goldenbush", "pln": ["(: cnet_isa_336d982052 (IsA rabbit_brush goldenbush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rabbit burrow is a kind of hole", "pln": ["(: cnet_isa_f72a99787b (IsA rabbit_burrow hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rabbit eared bandicoot is a kind of bandicoot", "pln": ["(: cnet_isa_ef051050c7 (IsA rabbit_eared_bandicoot bandicoot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rabbit ear is a kind of rabbit", "pln": ["(: cnet_isa_58f7d6d4ac (IsA rabbit_ear rabbit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rabbit ear is a kind of television antenna", "pln": ["(: cnet_isa_f3e7ba7440 (IsA rabbit_ear television_antenna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rabbit hutch is a kind of hutch", "pln": ["(: cnet_isa_b020e881a0 (IsA rabbit_hutch hutch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rabbit punch is a kind of punch", "pln": ["(: cnet_isa_aae8787393 (IsA rabbit_punch punch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rabbiteye blueberry is a kind of blueberry", "pln": ["(: cnet_isa_3d124dc107 (IsA rabbiteye_blueberry blueberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rabbitfish is a kind of chimaera", "pln": ["(: cnet_isa_f63f7622a8 (IsA rabbitfish chimaera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rabbit is a kind of pet", "pln": ["(: cnet_isa_9571bfd61e (IsA rabbit pet) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rabbitweed is a kind of matchweed", "pln": ["(: cnet_isa_3fdd5909d1 (IsA rabbitweed matchweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rabbitwood is a kind of parasitic plant", "pln": ["(: cnet_isa_d663e433ab (IsA rabbitwood parasitic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rabble is a kind of folk", "pln": ["(: cnet_isa_21438c32de (IsA rabble folk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rabi i is a kind of islamic calendar month", "pln": ["(: cnet_isa_ed7edc470e (IsA rabi_i islamic_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rabi ii is a kind of islamic calendar month", "pln": ["(: cnet_isa_13ed65409a (IsA rabi_ii islamic_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rabidness is a kind of exuberance", "pln": ["(: cnet_isa_7da16987b1 (IsA rabidness exuberance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raby is a kind of zoonosis", "pln": ["(: cnet_isa_282238a0c7 (IsA raby zoonosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raccoon is a kind of procyonid", "pln": ["(: cnet_isa_dfc00d611d (IsA raccoon procyonid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raccoon is a kind of fur", "pln": ["(: cnet_isa_b733bbc8d3 (IsA raccoon fur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raccoon dog is a kind of wild dog", "pln": ["(: cnet_isa_a82f23ca8b (IsA raccoon_dog wild_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "race is a kind of contest", "pln": ["(: cnet_isa_15d237cadc (IsA race contest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "race is a kind of group", "pln": ["(: cnet_isa_fa705e46bf (IsA race group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "race meeting is a kind of meet", "pln": ["(: cnet_isa_db2c36f222 (IsA race_meeting meet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "race problem is a kind of problem", "pln": ["(: cnet_isa_522259771b (IsA race_problem problem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "race riot is a kind of riot", "pln": ["(: cnet_isa_8b2cd816b4 (IsA race_riot riot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "raceabout is a kind of sloop", "pln": ["(: cnet_isa_0c4ca64b08 (IsA raceabout sloop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "racism is a kind of bias", "pln": ["(: cnet_isa_86d96fe8c3 (IsA racism bias) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "racecard is a kind of program", "pln": ["(: cnet_isa_3f983ce2d9 (IsA racecard program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "racehorse is a kind of horse", "pln": ["(: cnet_isa_c04ae530c7 (IsA racehorse horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raceme is a kind of flower cluster", "pln": ["(: cnet_isa_50dd7be15f (IsA raceme flower_cluster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "racemic acid is a kind of tartaric acid", "pln": ["(: cnet_isa_2aa6d3f212 (IsA racemic_acid tartaric_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "racer is a kind of animal", "pln": ["(: cnet_isa_272bab74c6 (IsA racer animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "racer is a kind of colubrid snake", "pln": ["(: cnet_isa_1bb93541cd (IsA racer colubrid_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "racer is a kind of car", "pln": ["(: cnet_isa_8a50efde8d (IsA racer car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "racer is a kind of driver", "pln": ["(: cnet_isa_0a6d4a1383 (IsA racer driver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "racerunner is a kind of whiptail", "pln": ["(: cnet_isa_154db998d9 (IsA racerunner whiptail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "racetrack is a kind of course", "pln": ["(: cnet_isa_1eb3e99311 (IsA racetrack course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "racetrack tout is a kind of tipster", "pln": ["(: cnet_isa_9cdd2147dc (IsA racetrack_tout tipster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raceway is a kind of canal", "pln": ["(: cnet_isa_ed228b4a13 (IsA raceway canal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rachis is a kind of axis", "pln": ["(: cnet_isa_6355c6f99b (IsA rachis axis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rachitis is a kind of inflammation", "pln": ["(: cnet_isa_43c33e5ae5 (IsA rachitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rachycentridae is a kind of fish family", "pln": ["(: cnet_isa_f4a1718f39 (IsA rachycentridae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rachycentron is a kind of fish genus", "pln": ["(: cnet_isa_55df2462f9 (IsA rachycentron fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "racial immunity is a kind of natural immunity", "pln": ["(: cnet_isa_35ece2ae16 (IsA racial_immunity natural_immunity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "racial profiling is a kind of racism", "pln": ["(: cnet_isa_76f9372c59 (IsA racial_profiling racism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "racial segregation is a kind of segregation", "pln": ["(: cnet_isa_5a656369bd (IsA racial_segregation segregation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "racing is a kind of sport", "pln": ["(: cnet_isa_b455716a4a (IsA racing sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "racing boat is a kind of small boat", "pln": ["(: cnet_isa_0e1bb0f4d1 (IsA racing_boat small_boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "racing circuit is a kind of racetrack", "pln": ["(: cnet_isa_2a5cf80eca (IsA racing_circuit racetrack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "racing gig is a kind of racing boat", "pln": ["(: cnet_isa_6e63b05b82 (IsA racing_gig racing_boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "racing skiff is a kind of shell", "pln": ["(: cnet_isa_789b9b17e5 (IsA racing_skiff shell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "racing start is a kind of start", "pln": ["(: cnet_isa_e4aead82f0 (IsA racing_start start) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "racism is a kind of discrimination", "pln": ["(: cnet_isa_434c705cbb (IsA racism discrimination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "racism is a kind of bia", "pln": ["(: cnet_isa_a8a40dbd26 (IsA racism bia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "racist is a kind of bigot", "pln": ["(: cnet_isa_c9f208b522 (IsA racist bigot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rack is a kind of gait", "pln": ["(: cnet_isa_24c01bb247 (IsA rack gait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rack is a kind of torture", "pln": ["(: cnet_isa_6c6ec890bc (IsA rack torture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rack is a kind of framework", "pln": ["(: cnet_isa_5e076b98d0 (IsA rack framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rack is a kind of instrument of torture", "pln": ["(: cnet_isa_d7997b8204 (IsA rack instrument_of_torture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rack is a kind of support", "pln": ["(: cnet_isa_d000683ded (IsA rack support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rack is a kind of cut", "pln": ["(: cnet_isa_71dbd47f28 (IsA rack cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rack and pinion is a kind of gear", "pln": ["(: cnet_isa_2646c966fd (IsA rack_and_pinion gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rack of lamb is a kind of lamb roast", "pln": ["(: cnet_isa_92c1624704 (IsA rack_of_lamb lamb_roast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rack of lamb is a kind of rack", "pln": ["(: cnet_isa_ad90fbfa88 (IsA rack_of_lamb rack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rack rent is a kind of rent", "pln": ["(: cnet_isa_f076be9e1b (IsA rack_rent rent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "racker is a kind of attendant", "pln": ["(: cnet_isa_d0858f255b (IsA racker attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "racket is a kind of enterprise", "pln": ["(: cnet_isa_2c7058f440 (IsA racket enterprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "racket is a kind of sport implement", "pln": ["(: cnet_isa_016bd5672a (IsA racket sport_implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "racket is a kind of noise", "pln": ["(: cnet_isa_2584175b4b (IsA racket noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "racket club is a kind of club", "pln": ["(: cnet_isa_d6dd6963f4 (IsA racket_club club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "racketeer is a kind of criminal", "pln": ["(: cnet_isa_c371e4149e (IsA racketeer criminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "racketeering is a kind of felony", "pln": ["(: cnet_isa_84cb18305c (IsA racketeering felony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "racquetball is a kind of sport", "pln": ["(: cnet_isa_386d13520d (IsA racquetball sport) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "racquetball is a kind of court game", "pln": ["(: cnet_isa_8ad6be702d (IsA racquetball court_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "racquetball is a kind of ball", "pln": ["(: cnet_isa_b5d6c43b1c (IsA racquetball ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rad is a kind of radioactivity unit", "pln": ["(: cnet_isa_d0d5bee038 (IsA rad radioactivity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radar is a kind of measuring instrument", "pln": ["(: cnet_isa_15e06e66f0 (IsA radar measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radar beacon is a kind of electronic signal", "pln": ["(: cnet_isa_2d37e39a33 (IsA radar_beacon electronic_signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radar echo is a kind of electronic signal", "pln": ["(: cnet_isa_f86c2f1617 (IsA radar_echo electronic_signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radar fire is a kind of fire", "pln": ["(: cnet_isa_559f4e7343 (IsA radar_fire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radial is a kind of pneumatic tire", "pln": ["(: cnet_isa_d14b0c914b (IsA radial pneumatic_tire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radial artery is a kind of artery", "pln": ["(: cnet_isa_a834723fb8 (IsA radial_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radial asymmetry is a kind of asymmetry", "pln": ["(: cnet_isa_7e2ef6226e (IsA radial_asymmetry asymmetry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radial engine is a kind of internal combustion engine", "pln": ["(: cnet_isa_86e8ffbdaa (IsA radial_engine internal_combustion_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "radial keratotomy is a kind of keratotomy", "pln": ["(: cnet_isa_aaa2984a66 (IsA radial_keratotomy keratotomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "radial nerve is a kind of nerve", "pln": ["(: cnet_isa_852ac090ce (IsA radial_nerve nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radial pulse is a kind of pulse", "pln": ["(: cnet_isa_cd6fd797bb (IsA radial_pulse pulse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radial symmetry is a kind of symmetry", "pln": ["(: cnet_isa_a086cc6738 (IsA radial_symmetry symmetry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radial vein is a kind of vein", "pln": ["(: cnet_isa_06a151dc7d (IsA radial_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "radial velocity is a kind of speed", "pln": ["(: cnet_isa_b62e563a78 (IsA radial_velocity speed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radian is a kind of angular unit", "pln": ["(: cnet_isa_523ad53f20 (IsA radian angular_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiance is a kind of brightness", "pln": ["(: cnet_isa_3ac620a9f4 (IsA radiance brightness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiance is a kind of light", "pln": ["(: cnet_isa_8028501951 (IsA radiance light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiance is a kind of good health", "pln": ["(: cnet_isa_a816ceba67 (IsA radiance good_health) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiance is a kind of happiness", "pln": ["(: cnet_isa_2fd85dcb62 (IsA radiance happiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiant energy is a kind of energy", "pln": ["(: cnet_isa_6e53e746df (IsA radiant_energy energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiant flux is a kind of flux", "pln": ["(: cnet_isa_825b35f832 (IsA radiant_flux flux) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiant heating is a kind of heating", "pln": ["(: cnet_isa_e5d3d9aa75 (IsA radiant_heating heating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiation is a kind of emission", "pln": ["(: cnet_isa_784e2fd9f1 (IsA radiation emission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiation is a kind of neural structure", "pln": ["(: cnet_isa_02797c2e20 (IsA radiation neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiation is a kind of natural process", "pln": ["(: cnet_isa_b48c3f09db (IsA radiation natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiation is a kind of spread", "pln": ["(: cnet_isa_9cd32db30a (IsA radiation spread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiation is a kind of energy", "pln": ["(: cnet_isa_b98fb81482 (IsA radiation energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiation field is a kind of field", "pln": ["(: cnet_isa_a7cf13256f (IsA radiation_field field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiation pattern is a kind of graph", "pln": ["(: cnet_isa_d259ed290a (IsA radiation_pattern graph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiation pressure is a kind of pressure", "pln": ["(: cnet_isa_46b6751897 (IsA radiation_pressure pressure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiation pyrometer is a kind of pyrometer", "pln": ["(: cnet_isa_d782dbd811 (IsA radiation_pyrometer pyrometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiation sickness is a kind of syndrome", "pln": ["(: cnet_isa_b1fc1fd328 (IsA radiation_sickness syndrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiator is a kind of heater", "pln": ["(: cnet_isa_55cc759232 (IsA radiator heater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiator is a kind of mechanism", "pln": ["(: cnet_isa_2940174f19 (IsA radiator mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiator is a kind of natural object", "pln": ["(: cnet_isa_b01fff6a20 (IsA radiator natural_object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiator cap is a kind of cap", "pln": ["(: cnet_isa_fa345374ff (IsA radiator_cap cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiator hose is a kind of hose", "pln": ["(: cnet_isa_eb4f080db7 (IsA radiator_hose hose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radical is a kind of character", "pln": ["(: cnet_isa_fc4895122b (IsA radical character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radical is a kind of sign", "pln": ["(: cnet_isa_e2a895cdc5 (IsA radical sign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radical is a kind of measure", "pln": ["(: cnet_isa_ece18bfcf5 (IsA radical measure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radical is a kind of person", "pln": ["(: cnet_isa_05abaa8177 (IsA radical person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radical chic is a kind of affectation", "pln": ["(: cnet_isa_a7b6d6a65d (IsA radical_chic affectation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "radical hysterectomy is a kind of hysterectomy", "pln": ["(: cnet_isa_b9ab0a49b2 (IsA radical_hysterectomy hysterectomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radical mastectomy is a kind of mastectomy", "pln": ["(: cnet_isa_7764514908 (IsA radical_mastectomy mastectomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radicalism is a kind of political orientation", "pln": ["(: cnet_isa_a254f64468 (IsA radicalism political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radicchio is a kind of chicory", "pln": ["(: cnet_isa_981b7103b4 (IsA radicchio chicory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radicle is a kind of structure", "pln": ["(: cnet_isa_6c7b0aa212 (IsA radicle structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiculitis is a kind of inflammation", "pln": ["(: cnet_isa_9737aae6e0 (IsA radiculitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiigera is a kind of fungus genus", "pln": ["(: cnet_isa_646e33535b (IsA radiigera fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiigera fuscogleba is a kind of fungus", "pln": ["(: cnet_isa_d947dfbafc (IsA radiigera_fuscogleba fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radio is a kind of audible media", "pln": ["(: cnet_isa_e36f70302d (IsA radio audible_media) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radio is a kind of communication device", "pln": ["(: cnet_isa_14f57a8fdb (IsA radio communication_device) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radio is a kind of communication system", "pln": ["(: cnet_isa_bae8c5d899 (IsA radio communication_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "radio is a kind of broadcasting", "pln": ["(: cnet_isa_7c8824b517 (IsA radio broadcasting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "radio announcer is a kind of announcer", "pln": ["(: cnet_isa_1c4e31fbe2 (IsA radio_announcer announcer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radio antenna is a kind of omnidirectional antenna", "pln": ["(: cnet_isa_ba5a960a47 (IsA radio_antenna omnidirectional_antenna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radio astronomy is a kind of astronomy", "pln": ["(: cnet_isa_a73a2ffd89 (IsA radio_astronomy astronomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radio beacon is a kind of radio station", "pln": ["(: cnet_isa_ab56fe4d5e (IsA radio_beacon radio_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radio beacon is a kind of signal", "pln": ["(: cnet_isa_9bc21716ed (IsA radio_beacon signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "radio beam is a kind of signal", "pln": ["(: cnet_isa_67e16d1399 (IsA radio_beam signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radio brightness is a kind of intensity", "pln": ["(: cnet_isa_8289799bbb (IsA radio_brightness intensity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radio broadcast is a kind of broadcast", "pln": ["(: cnet_isa_8959c43cda (IsA radio_broadcast broadcast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radio chassis is a kind of chassis", "pln": ["(: cnet_isa_9a5bbe7f2c (IsA radio_chassis chassis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radio city music hall is a kind of music hall", "pln": ["(: cnet_isa_464eb66564 (IsA radio_city_music_hall music_hall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radio compass is a kind of direction finder", "pln": ["(: cnet_isa_7dd2672aeb (IsA radio_compass direction_finder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radio controlled airplane is a kind of aircraft", "pln": ["(: cnet_isa_df28eb81b8 (IsA radio_controlled_airplane aircraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radio controlled helicopter is a kind of aircraft", "pln": ["(: cnet_isa_8c78aba453 (IsA radio_controlled_helicopter aircraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radio frequency is a kind of frequency", "pln": ["(: cnet_isa_f7efbafa6c (IsA radio_frequency frequency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radio interferometer is a kind of radio telescope", "pln": ["(: cnet_isa_a8cd83c388 (IsA radio_interferometer radio_telescope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radio link is a kind of communication system", "pln": ["(: cnet_isa_5f241a90a7 (IsA radio_link communication_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radio new is a kind of newscast", "pln": ["(: cnet_isa_348272b1c0 (IsA radio_new newscast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radio noise is a kind of static", "pln": ["(: cnet_isa_8d5c0e02db (IsA radio_noise static) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "radio observation is a kind of observation", "pln": ["(: cnet_isa_140a0aafb0 (IsA radio_observation observation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radio operator is a kind of operator", "pln": ["(: cnet_isa_8c992364c4 (IsA radio_operator operator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radio phonograph is a kind of electronic equipment", "pln": ["(: cnet_isa_df1062ae4f (IsA radio_phonograph electronic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radio receiver is a kind of receiver", "pln": ["(: cnet_isa_5783981596 (IsA radio_receiver receiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radio signal is a kind of radio wave", "pln": ["(: cnet_isa_aa59873844 (IsA radio_signal radio_wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radio source is a kind of radiator", "pln": ["(: cnet_isa_cff8e06159 (IsA radio_source radiator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radio spectrum is a kind of spectrum", "pln": ["(: cnet_isa_b06bbf83de (IsA radio_spectrum spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radio station is a kind of broadcasting station", "pln": ["(: cnet_isa_cf67074d25 (IsA radio_station broadcasting_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radio telescope is a kind of astronomical telescope", "pln": ["(: cnet_isa_9233afac3f (IsA radio_telescope astronomical_telescope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radio transmitter is a kind of transmitter", "pln": ["(: cnet_isa_c67ea4469f (IsA radio_transmitter transmitter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radio wave is a kind of electromagnetic radiation", "pln": ["(: cnet_isa_58dc3a3ff7 (IsA radio_wave electromagnetic_radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radioactive dating is a kind of measurement", "pln": ["(: cnet_isa_df2caf35dc (IsA radioactive_dating measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radioactive iodine excretion test is a kind of radioactive iodine test", "pln": ["(: cnet_isa_5dd85348a7 (IsA radioactive_iodine_excretion_test radioactive_iodine_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radioactive iodine test is a kind of diagnostic test", "pln": ["(: cnet_isa_81ba671bbd (IsA radioactive_iodine_test diagnostic_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radioactive iodine uptake test is a kind of radioactive iodine test", "pln": ["(: cnet_isa_a32b86a20a (IsA radioactive_iodine_uptake_test radioactive_iodine_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radioactive material is a kind of material", "pln": ["(: cnet_isa_6cfe8c490a (IsA radioactive_material material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radioactive waste is a kind of radioactive material", "pln": ["(: cnet_isa_042fbfc5ed (IsA radioactive_waste radioactive_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radioactivity unit is a kind of electromagnetic unit", "pln": ["(: cnet_isa_c36b38f066 (IsA radioactivity_unit electromagnetic_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiobiologist is a kind of biologist", "pln": ["(: cnet_isa_7b51c34059 (IsA radiobiologist biologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiobiology is a kind of biology", "pln": ["(: cnet_isa_c0786e88bd (IsA radiobiology biology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiocarbon is a kind of carbon", "pln": ["(: cnet_isa_6bb6ac9ce4 (IsA radiocarbon carbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiocarbon dating is a kind of dating", "pln": ["(: cnet_isa_e290ef3039 (IsA radiocarbon_dating dating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiochemistry is a kind of chemistry", "pln": ["(: cnet_isa_bcba073d53 (IsA radiochemistry chemistry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiochlorine is a kind of chlorine", "pln": ["(: cnet_isa_0d3c960906 (IsA radiochlorine chlorine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiogram is a kind of picture", "pln": ["(: cnet_isa_9a47670ed1 (IsA radiogram picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiogram is a kind of message", "pln": ["(: cnet_isa_fc52c7b9ef (IsA radiogram message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiographer is a kind of specialist", "pln": ["(: cnet_isa_71b3305b30 (IsA radiographer specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiography is a kind of photography", "pln": ["(: cnet_isa_ccef72f669 (IsA radiography photography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radioimmunoassay is a kind of immunoassay", "pln": ["(: cnet_isa_bc00298df0 (IsA radioimmunoassay immunoassay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radioisotope is a kind of isotope", "pln": ["(: cnet_isa_ee9c94f612 (IsA radioisotope isotope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiolaria is a kind of animal order", "pln": ["(: cnet_isa_0d49cc03c3 (IsA radiolaria animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiolarian is a kind of actinopod", "pln": ["(: cnet_isa_ecd565245b (IsA radiolarian actinopod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiologic technologist is a kind of scientist", "pln": ["(: cnet_isa_2e20f52b37 (IsA radiologic_technologist scientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiologist is a kind of specialist", "pln": ["(: cnet_isa_2211d948ff (IsA radiologist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiology is a kind of medical science", "pln": ["(: cnet_isa_3d0931ea22 (IsA radiology medical_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiolysis is a kind of lysis", "pln": ["(: cnet_isa_47dad527dd (IsA radiolysis lysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiometer is a kind of meter", "pln": ["(: cnet_isa_cf9668a296 (IsA radiometer meter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "radiomicrometer is a kind of radiometer", "pln": ["(: cnet_isa_9cf89f8297 (IsA radiomicrometer radiometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiopacity is a kind of opacity", "pln": ["(: cnet_isa_6dcefdcd5c (IsA radiopacity opacity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiopaque dye is a kind of dye", "pln": ["(: cnet_isa_4f8ad990a6 (IsA radiopaque_dye dye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiopharmaceutical is a kind of pharmaceutical", "pln": ["(: cnet_isa_a4d9dd6ba3 (IsA radiopharmaceutical pharmaceutical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiophotograph is a kind of telephotograph", "pln": ["(: cnet_isa_3cab401a15 (IsA radiophotograph telephotograph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiophotography is a kind of telephotography", "pln": ["(: cnet_isa_2863bb6038 (IsA radiophotography telephotography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "radioprotection is a kind of protection", "pln": ["(: cnet_isa_b1c2a4e43d (IsA radioprotection protection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radioscopy is a kind of imaging", "pln": ["(: cnet_isa_402f92509e (IsA radioscopy imaging) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiotelegraph is a kind of radio", "pln": ["(: cnet_isa_867cd8304c (IsA radiotelegraph radio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "radiotelegraph is a kind of wireless", "pln": ["(: cnet_isa_33916fc333 (IsA radiotelegraph wireless) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiotelephone is a kind of telephone", "pln": ["(: cnet_isa_4d168fa055 (IsA radiotelephone telephone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiotelephone is a kind of wireless", "pln": ["(: cnet_isa_a1f9032fef (IsA radiotelephone wireless) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "radiotherapy is a kind of therapy", "pln": ["(: cnet_isa_824fe508f3 (IsA radiotherapy therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radiotherapy equipment is a kind of equipment", "pln": ["(: cnet_isa_956b50bf4b (IsA radiotherapy_equipment equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "radish is a kind of vegetable", "pln": ["(: cnet_isa_154b9e958d (IsA radish vegetable) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radish is a kind of cruciferous vegetable", "pln": ["(: cnet_isa_6b5f42748f (IsA radish cruciferous_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radish is a kind of root vegetable", "pln": ["(: cnet_isa_0f1b442a6d (IsA radish root_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radish is a kind of radish plant", "pln": ["(: cnet_isa_ff67661d4d (IsA radish radish_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radish is a kind of root", "pln": ["(: cnet_isa_079ec60d58 (IsA radish root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radish plant is a kind of crucifer", "pln": ["(: cnet_isa_d20cd9a7e1 (IsA radish_plant crucifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radium is a kind of metallic element", "pln": ["(: cnet_isa_f68ac17e4f (IsA radium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radium therapy is a kind of radiotherapy", "pln": ["(: cnet_isa_58d30c577f (IsA radium_therapy radiotherapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radius is a kind of length", "pln": ["(: cnet_isa_2434310dde (IsA radius length) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radius is a kind of arm bone", "pln": ["(: cnet_isa_97f0130b42 (IsA radius arm_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radius is a kind of region", "pln": ["(: cnet_isa_50552938d1 (IsA radius region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radius is a kind of straight line", "pln": ["(: cnet_isa_ab833a562e (IsA radius straight_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radius of curvature is a kind of radius", "pln": ["(: cnet_isa_4e93d2d5db (IsA radius_of_curvature radius) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radius vector is a kind of vector", "pln": ["(: cnet_isa_4c92500126 (IsA radius_vector vector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radome is a kind of housing", "pln": ["(: cnet_isa_52c867b717 (IsA radome housing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radon is a kind of chemical element", "pln": ["(: cnet_isa_ff7269fcad (IsA radon chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radon is a kind of noble gas", "pln": ["(: cnet_isa_5bf9b393a5 (IsA radon noble_gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "radyera is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_321df1107a (IsA radyera dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raffia is a kind of fiber", "pln": ["(: cnet_isa_5515c8fab7 (IsA raffia fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raffia is a kind of monocot genus", "pln": ["(: cnet_isa_36f9d3571b (IsA raffia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raffia is a kind of plant fiber", "pln": ["(: cnet_isa_7283b15a73 (IsA raffia plant_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raffia palm is a kind of palm", "pln": ["(: cnet_isa_5588d1f4a7 (IsA raffia_palm palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raffinose is a kind of trisaccharide", "pln": ["(: cnet_isa_86d2a89037 (IsA raffinose trisaccharide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raffle is a kind of lottery", "pln": ["(: cnet_isa_a1ff05e756 (IsA raffle lottery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rafflesiaceae is a kind of dicot family", "pln": ["(: cnet_isa_e4fa333d59 (IsA rafflesiaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raft is a kind of float", "pln": ["(: cnet_isa_3c7aef13a9 (IsA raft float) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raft foundation is a kind of foundation", "pln": ["(: cnet_isa_1d504fe55f (IsA raft_foundation foundation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rafter is a kind of beam", "pln": ["(: cnet_isa_026e0fb8ec (IsA rafter beam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raftsman is a kind of traveler", "pln": ["(: cnet_isa_657e40d94e (IsA raftsman traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rag is a kind of practical joke", "pln": ["(: cnet_isa_6f83501fb6 (IsA rag practical_joke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rag is a kind of piece of cloth", "pln": ["(: cnet_isa_66c2e10532 (IsA rag piece_of_cloth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rag is a kind of week", "pln": ["(: cnet_isa_b4e7d02cac (IsA rag week) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rag day is a kind of day", "pln": ["(: cnet_isa_71dc763931 (IsA rag_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rag doll is a kind of doll", "pln": ["(: cnet_isa_59a4378e73 (IsA rag_doll doll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rag paper is a kind of writing paper", "pln": ["(: cnet_isa_9f661a1628 (IsA rag_paper writing_paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ragamuffin is a kind of urchin", "pln": ["(: cnet_isa_5d08b23405 (IsA ragamuffin urchin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ragbag is a kind of bag", "pln": ["(: cnet_isa_af7f6a92ca (IsA ragbag bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rage is a kind of anger", "pln": ["(: cnet_isa_298c6c957c (IsA rage anger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rage is a kind of desire", "pln": ["(: cnet_isa_a91cf97944 (IsA rage desire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rage is a kind of violence", "pln": ["(: cnet_isa_00c840ed53 (IsA rage violence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raggady ann is a kind of doll", "pln": ["(: cnet_isa_37b56e01ee (IsA raggady_ann doll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ragged orchid is a kind of fringed orchis", "pln": ["(: cnet_isa_dc94f0a3eb (IsA ragged_orchid fringed_orchis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ragged robin is a kind of lychnis", "pln": ["(: cnet_isa_9ef7afeaaf (IsA ragged_robin lychnis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "raggedness is a kind of shabbiness", "pln": ["(: cnet_isa_18b7bdf4e0 (IsA raggedness shabbiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raglan is a kind of garment", "pln": ["(: cnet_isa_3a4ec9db73 (IsA raglan garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raglan sleeve is a kind of sleeve", "pln": ["(: cnet_isa_e6ef210275 (IsA raglan_sleeve sleeve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ragout is a kind of stew", "pln": ["(: cnet_isa_0470493d8b (IsA ragout stew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ragpicker is a kind of unskilled person", "pln": ["(: cnet_isa_e3e219c09f (IsA ragpicker unskilled_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ragsorter is a kind of worker", "pln": ["(: cnet_isa_917893f1df (IsA ragsorter worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ragtime is a kind of dance music", "pln": ["(: cnet_isa_0bc1be63e6 (IsA ragtime dance_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ragweed is a kind of weed", "pln": ["(: cnet_isa_ac2a2d18a5 (IsA ragweed weed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ragweed pollen is a kind of allergen", "pln": ["(: cnet_isa_000c4972be (IsA ragweed_pollen allergen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ragweed pollen is a kind of pollen", "pln": ["(: cnet_isa_89b728fe36 (IsA ragweed_pollen pollen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ragwort is a kind of weed", "pln": ["(: cnet_isa_eeffb55a18 (IsA ragwort weed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raid is a kind of embezzlement", "pln": ["(: cnet_isa_87c9aa3bbf (IsA raid embezzlement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raider is a kind of corporate investor", "pln": ["(: cnet_isa_60a4c198ed (IsA raider corporate_investor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rail is a kind of wading bird", "pln": ["(: cnet_isa_3bea37e344 (IsA rail wading_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rail is a kind of bar", "pln": ["(: cnet_isa_07e36ee289 (IsA rail bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rail is a kind of railway", "pln": ["(: cnet_isa_18d4ce8b19 (IsA rail railway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rail fence is a kind of fence", "pln": ["(: cnet_isa_87754b1f3a (IsA rail_fence fence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rail splitter is a kind of laborer", "pln": ["(: cnet_isa_30715c22f3 (IsA rail_splitter laborer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rail technology is a kind of technology", "pln": ["(: cnet_isa_9996e5d2c3 (IsA rail_technology technology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "railbird is a kind of sport fan", "pln": ["(: cnet_isa_b88d5aeec3 (IsA railbird sport_fan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "railhead is a kind of end", "pln": ["(: cnet_isa_643fa2363d (IsA railhead end) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "railhead is a kind of storehouse", "pln": ["(: cnet_isa_0dbe0ebe35 (IsA railhead storehouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "railing is a kind of barrier", "pln": ["(: cnet_isa_2f9e78d384 (IsA railing barrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "railing is a kind of material", "pln": ["(: cnet_isa_3eb46f605b (IsA railing material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "railroad bed is a kind of bed", "pln": ["(: cnet_isa_bd85fbbd4a (IsA railroad_bed bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "railroad flat is a kind of apartment", "pln": ["(: cnet_isa_b08d680a71 (IsA railroad_flat apartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "railroad ticket is a kind of ticket", "pln": ["(: cnet_isa_f1f437a360 (IsA railroad_ticket ticket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "railroad track is a kind of track", "pln": ["(: cnet_isa_70469882ad (IsA railroad_track track) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "railroad tunnel is a kind of tunnel", "pln": ["(: cnet_isa_3c88f512c5 (IsA railroad_tunnel tunnel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "railroad vine is a kind of morning glory", "pln": ["(: cnet_isa_f9a9542c7a (IsA railroad_vine morning_glory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "railway is a kind of line", "pln": ["(: cnet_isa_feb5523d89 (IsA railway line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "railway junction is a kind of junction", "pln": ["(: cnet_isa_dd92c36305 (IsA railway_junction junction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "railway station is a kind of terminal", "pln": ["(: cnet_isa_954153b172 (IsA railway_station terminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rain is a kind of water", "pln": ["(: cnet_isa_c093ba35ef (IsA rain water) (STV 1.0 0.9791))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rain is a kind of sequence", "pln": ["(: cnet_isa_fec1ddc1b0 (IsA rain sequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rain is a kind of precipitation", "pln": ["(: cnet_isa_31f5108d91 (IsA rain precipitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rain is a kind of fresh water", "pln": ["(: cnet_isa_7807e2349f (IsA rain fresh_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rain and heat is a kind of both weather term", "pln": ["(: cnet_isa_e3730d3b19 (IsA rain_and_heat both_weather_term) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rain barrel is a kind of cistern", "pln": ["(: cnet_isa_5e87d982ee (IsA rain_barrel cistern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rain check is a kind of promise", "pln": ["(: cnet_isa_3b95d506a4 (IsA rain_check promise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rain check is a kind of stub", "pln": ["(: cnet_isa_400e5a12f5 (IsA rain_check stub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rain dance is a kind of ritual dancing", "pln": ["(: cnet_isa_e5139e3dd4 (IsA rain_dance ritual_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rain date is a kind of date", "pln": ["(: cnet_isa_371c86b491 (IsA rain_date date) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rain forest is a kind of forest", "pln": ["(: cnet_isa_cd59e993ff (IsA rain_forest forest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rain gauge is a kind of gauge", "pln": ["(: cnet_isa_d9c7bd9642 (IsA rain_gauge gauge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rain shadow is a kind of area", "pln": ["(: cnet_isa_b8efe078b7 (IsA rain_shadow area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rain stick is a kind of percussion instrument", "pln": ["(: cnet_isa_063190eb03 (IsA rain_stick percussion_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rain tree is a kind of albizzia", "pln": ["(: cnet_isa_3bef15168f (IsA rain_tree albizzia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rain wash is a kind of washout", "pln": ["(: cnet_isa_f679932e2c (IsA rain_wash washout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rainbow is a kind of promise", "pln": ["(: cnet_isa_69b2847a29 (IsA rainbow promise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rainbow is a kind of bow", "pln": ["(: cnet_isa_4f477a9d6b (IsA rainbow bow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rainbow cactus is a kind of cactus", "pln": ["(: cnet_isa_55dfac5a18 (IsA rainbow_cactus cactus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rainbow lorikeet is a kind of lorikeet", "pln": ["(: cnet_isa_26d67639b0 (IsA rainbow_lorikeet lorikeet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rainbow runner is a kind of jack", "pln": ["(: cnet_isa_af41530f66 (IsA rainbow_runner jack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rainbow seaperch is a kind of surfperch", "pln": ["(: cnet_isa_8697304819 (IsA rainbow_seaperch surfperch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rainbow shower is a kind of cassia", "pln": ["(: cnet_isa_cfbbd36cbb (IsA rainbow_shower cassia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rainbow smelt is a kind of smelt", "pln": ["(: cnet_isa_c0663f5bea (IsA rainbow_smelt smelt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rainbow trout is a kind of trout", "pln": ["(: cnet_isa_41610b2971 (IsA rainbow_trout trout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raincoat is a kind of coat", "pln": ["(: cnet_isa_e6dd93b7d3 (IsA raincoat coat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raindrop is a kind of drop", "pln": ["(: cnet_isa_5dda1a0908 (IsA raindrop drop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raininess is a kind of badness", "pln": ["(: cnet_isa_0bcccf9e91 (IsA raininess badness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raining is a kind of one type of weather", "pln": ["(: cnet_isa_bda4e129b2 (IsA raining one_type_of_weather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rainmaker is a kind of executive", "pln": ["(: cnet_isa_9f29258c9b (IsA rainmaker executive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rainmaker is a kind of medicine man", "pln": ["(: cnet_isa_cceaa5f970 (IsA rainmaker medicine_man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rainmaking is a kind of production", "pln": ["(: cnet_isa_d467ae0f43 (IsA rainmaking production) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rainstorm is a kind of rain", "pln": ["(: cnet_isa_1e6cb93bb4 (IsA rainstorm rain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rainstorm is a kind of storm", "pln": ["(: cnet_isa_f9ed3f6f9e (IsA rainstorm storm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rainy is a kind of weather", "pln": ["(: cnet_isa_d16efabe60 (IsA rainy weather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rainy day is a kind of time period", "pln": ["(: cnet_isa_b58780fcec (IsA rainy_day time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rainy season is a kind of season", "pln": ["(: cnet_isa_0b6fca0ba1 (IsA rainy_season season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raise is a kind of increase", "pln": ["(: cnet_isa_145d9c4516 (IsA raise increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raise is a kind of gamble", "pln": ["(: cnet_isa_f3d43e29bb (IsA raise gamble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raised doughnut is a kind of doughnut", "pln": ["(: cnet_isa_4dbcd4b2d3 (IsA raised_doughnut doughnut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raiser is a kind of bridge partner", "pln": ["(: cnet_isa_b4380aecfd (IsA raiser bridge_partner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raisin is a kind of dried grape", "pln": ["(: cnet_isa_d61e4f382e (IsA raisin dried_grape) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raisin is a kind of dried fruit", "pln": ["(: cnet_isa_ab24c8bed5 (IsA raisin dried_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raisin bran is a kind of cold cereal", "pln": ["(: cnet_isa_aff58dbcb4 (IsA raisin_bran cold_cereal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raisin bread is a kind of bread", "pln": ["(: cnet_isa_860ba45ab0 (IsA raisin_bread bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raisin cookie is a kind of cookie", "pln": ["(: cnet_isa_068b56d520 (IsA raisin_cookie cookie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "raisin moth is a kind of pyralid", "pln": ["(: cnet_isa_6f9afb0b84 (IsA raisin_moth pyralid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raisin nut cookie is a kind of cookie", "pln": ["(: cnet_isa_3846a6273a (IsA raisin_nut_cookie cookie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raising is a kind of upbringing", "pln": ["(: cnet_isa_3a3de6e516 (IsA raising upbringing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raising hell is a kind of aggression", "pln": ["(: cnet_isa_806b4b622e (IsA raising_hell aggression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raison d etre is a kind of function", "pln": ["(: cnet_isa_68cb65fac3 (IsA raison_d_etre function) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raison d etre is a kind of rationalization", "pln": ["(: cnet_isa_7298025c3f (IsA raison_d_etre rationalization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raita is a kind of side dish", "pln": ["(: cnet_isa_da202571fc (IsA raita side_dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raj is a kind of dominion", "pln": ["(: cnet_isa_28e588ae5a (IsA raj dominion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raja is a kind of fish genus", "pln": ["(: cnet_isa_7a45fc0b6d (IsA raja fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raja is a kind of aristocrat", "pln": ["(: cnet_isa_7a53452c55 (IsA raja aristocrat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rajab is a kind of islamic calendar month", "pln": ["(: cnet_isa_d9dc0f719b (IsA rajab islamic_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rajanya is a kind of varna", "pln": ["(: cnet_isa_4ef4338306 (IsA rajanya varna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rajidae is a kind of fish family", "pln": ["(: cnet_isa_1a0d3ef5c9 (IsA rajidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rajiforme is a kind of animal order", "pln": ["(: cnet_isa_4c70037a25 (IsA rajiforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rajpoot is a kind of hindustani", "pln": ["(: cnet_isa_8db98b9841 (IsA rajpoot hindustani) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rake is a kind of garden tool", "pln": ["(: cnet_isa_cd90fe13d7 (IsA rake garden_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rake is a kind of tool", "pln": ["(: cnet_isa_023ef6ffa8 (IsA rake tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rake is a kind of libertine", "pln": ["(: cnet_isa_b3d5623f89 (IsA rake libertine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rake handle is a kind of handle", "pln": ["(: cnet_isa_b7fc1ed418 (IsA rake_handle handle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rake off is a kind of cut", "pln": ["(: cnet_isa_8eb784ad2a (IsA rake_off cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rakishness is a kind of dissoluteness", "pln": ["(: cnet_isa_eef519f818 (IsA rakishness dissoluteness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rallidae is a kind of bird family", "pln": ["(: cnet_isa_bc53252536 (IsA rallidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rally is a kind of deed", "pln": ["(: cnet_isa_f194b4c43b (IsA rally deed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rally is a kind of automobile race", "pln": ["(: cnet_isa_3cf10ec6a3 (IsA rally automobile_race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rally is a kind of gathering", "pln": ["(: cnet_isa_2bcf0b3b93 (IsA rally gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rally is a kind of convalescence", "pln": ["(: cnet_isa_23227e4a98 (IsA rally convalescence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rally is a kind of group action", "pln": ["(: cnet_isa_41f3816c48 (IsA rally group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rallying is a kind of mobilization", "pln": ["(: cnet_isa_0f148a750e (IsA rallying mobilization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rallying point is a kind of point", "pln": ["(: cnet_isa_2bdc77fdcd (IsA rallying_point point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ram s head is a kind of lady s slipper", "pln": ["(: cnet_isa_95270ffb70 (IsA ram_s_head lady_s_slipper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ram is a kind of sheep", "pln": ["(: cnet_isa_ce23dac54d (IsA ram sheep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ram is a kind of tool", "pln": ["(: cnet_isa_e8ee33abdd (IsA ram tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ram is a kind of person", "pln": ["(: cnet_isa_4bb6e47881 (IsA ram person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ram disk is a kind of drive", "pln": ["(: cnet_isa_b02dc9057d (IsA ram_disk drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ramadan is a kind of fast", "pln": ["(: cnet_isa_b7c911d4d2 (IsA ramadan fast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ramadan is a kind of islamic calendar month", "pln": ["(: cnet_isa_d8dca36f3b (IsA ramadan islamic_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ramalina is a kind of fungus genus", "pln": ["(: cnet_isa_12a046e0e4 (IsA ramalina fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ramanavami is a kind of holiday", "pln": ["(: cnet_isa_94a2802937 (IsA ramanavami holiday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ramble is a kind of amble", "pln": ["(: cnet_isa_fc92c08381 (IsA ramble amble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rambler is a kind of communicator", "pln": ["(: cnet_isa_5ae8069357 (IsA rambler communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rambler is a kind of pedestrian", "pln": ["(: cnet_isa_482aa53d58 (IsA rambler pedestrian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rambouillet is a kind of domestic sheep", "pln": ["(: cnet_isa_e48fe5bb6e (IsA rambouillet domestic_sheep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rambutan is a kind of edible fruit", "pln": ["(: cnet_isa_64b6bf8334 (IsA rambutan edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rambutan is a kind of fruit tree", "pln": ["(: cnet_isa_ee35fadf27 (IsA rambutan fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ramekin is a kind of dish", "pln": ["(: cnet_isa_bf086e6266 (IsA ramekin dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ramie is a kind of false nettle", "pln": ["(: cnet_isa_1dde95a8be (IsA ramie false_nettle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ramification is a kind of placement", "pln": ["(: cnet_isa_da6dc1fbaa (IsA ramification placement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ramjet is a kind of jet engine", "pln": ["(: cnet_isa_89cf385795 (IsA ramjet jet_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rammer is a kind of ram", "pln": ["(: cnet_isa_7c1005786b (IsA rammer ram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ramp is a kind of inclined plane", "pln": ["(: cnet_isa_b8a4c15b91 (IsA ramp inclined_plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ramp is a kind of stairway", "pln": ["(: cnet_isa_c338bc77c3 (IsA ramp stairway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ramp is a kind of alliaceous plant", "pln": ["(: cnet_isa_6866113e7d (IsA ramp alliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rampage is a kind of disturbance", "pln": ["(: cnet_isa_b70743e813 (IsA rampage disturbance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rampant arch is a kind of arch", "pln": ["(: cnet_isa_07ceaf75cb (IsA rampant_arch arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rampart is a kind of embankment", "pln": ["(: cnet_isa_1c95d985a7 (IsA rampart embankment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ramphastidae is a kind of bird family", "pln": ["(: cnet_isa_5a8b958a2c (IsA ramphastidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ramphomicron is a kind of bird genus", "pln": ["(: cnet_isa_e591526178 (IsA ramphomicron bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rampion is a kind of campanula", "pln": ["(: cnet_isa_70f560ebc8 (IsA rampion campanula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ramrod is a kind of rod", "pln": ["(: cnet_isa_b00e199926 (IsA ramrod rod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ramrod is a kind of overseer", "pln": ["(: cnet_isa_c0aa259180 (IsA ramrod overseer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ramsay hunt syndrome is a kind of syndrome", "pln": ["(: cnet_isa_c286f9f057 (IsA ramsay_hunt_syndrome syndrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ramus is a kind of bone", "pln": ["(: cnet_isa_1324f253bc (IsA ramus bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rana is a kind of amphibian genus", "pln": ["(: cnet_isa_079bf9a06b (IsA rana amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ranale is a kind of plant order", "pln": ["(: cnet_isa_dcf55ba7de (IsA ranale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ranatra is a kind of arthropod genus", "pln": ["(: cnet_isa_1e6615434d (IsA ranatra arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ranch is a kind of farm", "pln": ["(: cnet_isa_27745e6535 (IsA ranch farm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ranch hand is a kind of hired hand", "pln": ["(: cnet_isa_c60d794bfd (IsA ranch_hand hired_hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ranch house is a kind of house", "pln": ["(: cnet_isa_6c0aeef178 (IsA ranch_house house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rancher is a kind of farmer", "pln": ["(: cnet_isa_f26b6e2aa1 (IsA rancher farmer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ranching is a kind of farming", "pln": ["(: cnet_isa_7ca9d8314b (IsA ranching farming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rancidity is a kind of decay", "pln": ["(: cnet_isa_ee427fb591 (IsA rancidity decay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rancidness is a kind of olfactory property", "pln": ["(: cnet_isa_2fbf146037 (IsA rancidness olfactory_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rancidness is a kind of taste property", "pln": ["(: cnet_isa_60946b7f3e (IsA rancidness taste_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rand is a kind of south african monetary unit", "pln": ["(: cnet_isa_5bdc8dbc15 (IsA rand south_african_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "random access memory is a kind of volatile storage", "pln": ["(: cnet_isa_51fb7b1d8d (IsA random_access_memory volatile_storage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "random number generator is a kind of routine", "pln": ["(: cnet_isa_9110649a6d (IsA random_number_generator routine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "random sample is a kind of sample", "pln": ["(: cnet_isa_68c491df13 (IsA random_sample sample) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "random sample is a kind of sample distribution", "pln": ["(: cnet_isa_d01cfde3f1 (IsA random_sample sample_distribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "random sampling is a kind of sampling", "pln": ["(: cnet_isa_d19a2ccd38 (IsA random_sampling sampling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "random variable is a kind of variable", "pln": ["(: cnet_isa_b84e4cf19f (IsA random_variable variable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "random vector is a kind of vector", "pln": ["(: cnet_isa_d26cfa8547 (IsA random_vector vector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "random walk is a kind of stochastic process", "pln": ["(: cnet_isa_a3115edbcf (IsA random_walk stochastic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "randomization is a kind of organization", "pln": ["(: cnet_isa_e928190680 (IsA randomization organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "randomness is a kind of irregularity", "pln": ["(: cnet_isa_8cd581924d (IsA randomness irregularity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "randomness is a kind of physical property", "pln": ["(: cnet_isa_c055a95aa1 (IsA randomness physical_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "range is a kind of facility", "pln": ["(: cnet_isa_f04ed2f4b8 (IsA range facility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "range is a kind of assortment", "pln": ["(: cnet_isa_02fa6d9242 (IsA range assortment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "range is a kind of limit", "pln": ["(: cnet_isa_21417883f9 (IsA range limit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "range is a kind of tract", "pln": ["(: cnet_isa_cd6c119255 (IsA range tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "range is a kind of set", "pln": ["(: cnet_isa_ea89404bd5 (IsA range set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "range is a kind of geological formation", "pln": ["(: cnet_isa_b2e3f7b486 (IsA range geological_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "range animal is a kind of animal", "pln": ["(: cnet_isa_5e6517a970 (IsA range_animal animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "range hood is a kind of hood", "pln": ["(: cnet_isa_792114ac14 (IsA range_hood hood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "range pole is a kind of surveying instrument", "pln": ["(: cnet_isa_3b4297004f (IsA range_pole surveying_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rangefinder is a kind of measuring instrument", "pln": ["(: cnet_isa_b500753c55 (IsA rangefinder measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rangeland is a kind of land", "pln": ["(: cnet_isa_eaedbd6721 (IsA rangeland land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ranger is a kind of lawman", "pln": ["(: cnet_isa_040db7f9a6 (IsA ranger lawman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rangifer is a kind of mammal genus", "pln": ["(: cnet_isa_49d3ddb7f7 (IsA rangifer mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rangpur is a kind of citrus", "pln": ["(: cnet_isa_2ca6fc854a (IsA rangpur citrus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rani is a kind of aristocrat", "pln": ["(: cnet_isa_72aa6d7e7a (IsA rani aristocrat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ranidae is a kind of amphibian family", "pln": ["(: cnet_isa_d22ff957c0 (IsA ranidae amphibian_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rank is a kind of line", "pln": ["(: cnet_isa_624e8cec15 (IsA rank line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rank is a kind of status", "pln": ["(: cnet_isa_fff13df025 (IsA rank status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rank and file is a kind of people", "pln": ["(: cnet_isa_9c79d7237d (IsA rank_and_file people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rank and file is a kind of force", "pln": ["(: cnet_isa_5dc2524261 (IsA rank_and_file force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rank order is a kind of order", "pln": ["(: cnet_isa_3678f21133 (IsA rank_order order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rank order correlation coefficient is a kind of nonparametric statistic", "pln": ["(: cnet_isa_a922678d17 (IsA rank_order_correlation_coefficient nonparametric_statistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ranker is a kind of commissioned officer", "pln": ["(: cnet_isa_e18f226076 (IsA ranker commissioned_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ranker is a kind of soldier", "pln": ["(: cnet_isa_2781a42652 (IsA ranker soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rankine is a kind of temperature unit", "pln": ["(: cnet_isa_8a1054ad3b (IsA rankine temperature_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rankine scale is a kind of temperature scale", "pln": ["(: cnet_isa_f0c82c3046 (IsA rankine_scale temperature_scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ranking is a kind of standing", "pln": ["(: cnet_isa_8507b29316 (IsA ranking standing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ransacking is a kind of search", "pln": ["(: cnet_isa_8f7110c9e1 (IsA ransacking search) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ransom is a kind of payment", "pln": ["(: cnet_isa_41a1321886 (IsA ransom payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ransom is a kind of recovery", "pln": ["(: cnet_isa_a0c95d3266 (IsA ransom recovery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ransom is a kind of cost", "pln": ["(: cnet_isa_9a067b1bf4 (IsA ransom cost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ranter is a kind of speaker", "pln": ["(: cnet_isa_b62d296e81 (IsA ranter speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ranula is a kind of cyst", "pln": ["(: cnet_isa_b20bbd4f15 (IsA ranula cyst) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ranunculaceae is a kind of magnoliid dicot family", "pln": ["(: cnet_isa_9564c1ade2 (IsA ranunculaceae magnoliid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ranunculus is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_c27f0a46e8 (IsA ranunculus magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ranvier s node is a kind of opening", "pln": ["(: cnet_isa_b83c5d7610 (IsA ranvier_s_node opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raoulia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_27b71bff82 (IsA raoulia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rap is a kind of music", "pln": ["(: cnet_isa_f8602c663c (IsA rap music) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rap is a kind of black music", "pln": ["(: cnet_isa_c2807baa18 (IsA rap black_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rap is a kind of conversation", "pln": ["(: cnet_isa_8ae6b71107 (IsA rap conversation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rap is a kind of popular music", "pln": ["(: cnet_isa_ae7cd05e82 (IsA rap popular_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rap is a kind of bump", "pln": ["(: cnet_isa_2005166098 (IsA rap bump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rap group is a kind of gathering", "pln": ["(: cnet_isa_40150be53a (IsA rap_group gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rap session is a kind of conversation", "pln": ["(: cnet_isa_155b9626b5 (IsA rap_session conversation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rapateaceae is a kind of monocot family", "pln": ["(: cnet_isa_86b891814d (IsA rapateaceae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rape is a kind of crime against people", "pln": ["(: cnet_isa_869e7004b9 (IsA rape crime_against_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rape is a kind of plundering", "pln": ["(: cnet_isa_b082d4f2a8 (IsA rape plundering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rape is a kind of sexual assault", "pln": ["(: cnet_isa_80d4aa7a9c (IsA rape sexual_assault) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rape is a kind of mustard", "pln": ["(: cnet_isa_deffa80c0f (IsA rape mustard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rape conviction is a kind of conviction", "pln": ["(: cnet_isa_1df7ed5eb1 (IsA rape_conviction conviction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rape oil is a kind of oil", "pln": ["(: cnet_isa_9592ad746c (IsA rape_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rape suspect is a kind of suspect", "pln": ["(: cnet_isa_259c99aef9 (IsA rape_suspect suspect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raper is a kind of attacker", "pln": ["(: cnet_isa_552d0e086d (IsA raper attacker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raper is a kind of criminal", "pln": ["(: cnet_isa_be740c1f5a (IsA raper criminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rapeseed is a kind of oilseed", "pln": ["(: cnet_isa_5c0b8afb10 (IsA rapeseed oilseed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raphael is a kind of archangel", "pln": ["(: cnet_isa_39a7128f5a (IsA raphael archangel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raphanus is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_cece9acc50 (IsA raphanus dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raphe is a kind of ridge", "pln": ["(: cnet_isa_eb885999b4 (IsA raphe ridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raphicerus is a kind of mammal genus", "pln": ["(: cnet_isa_3d018cc9fb (IsA raphicerus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raphidae is a kind of bird family", "pln": ["(: cnet_isa_07afffcae1 (IsA raphidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raphidiidae is a kind of arthropod family", "pln": ["(: cnet_isa_2c5095e061 (IsA raphidiidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raphus is a kind of bird genus", "pln": ["(: cnet_isa_b2513179b4 (IsA raphus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rapid is a kind of waterway", "pln": ["(: cnet_isa_f08991957d (IsA rapid waterway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rapid climb is a kind of rise", "pln": ["(: cnet_isa_dcf0846faa (IsA rapid_climb rise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rapid transit is a kind of public transit", "pln": ["(: cnet_isa_fa02f5df3c (IsA rapid_transit public_transit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rapier is a kind of sword", "pln": ["(: cnet_isa_2b25aa6f8e (IsA rapier sword) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rappee is a kind of snuff", "pln": ["(: cnet_isa_b0dbfd1b40 (IsA rappee snuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rapper is a kind of singer", "pln": ["(: cnet_isa_8e272069d5 (IsA rapper singer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rapport is a kind of affinity", "pln": ["(: cnet_isa_9784bac968 (IsA rapport affinity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rapporteur is a kind of registrar", "pln": ["(: cnet_isa_4e925561f4 (IsA rapporteur registrar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raptore is a kind of animal order", "pln": ["(: cnet_isa_aad524b58a (IsA raptore animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raptus hemorrhagicus is a kind of seizure", "pln": ["(: cnet_isa_8727a67ea1 (IsA raptus_hemorrhagicus seizure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rare bird is a kind of person", "pln": ["(: cnet_isa_3096a7f967 (IsA rare_bird person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rare earth is a kind of group", "pln": ["(: cnet_isa_b2354ab6c1 (IsA rare_earth group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raree show is a kind of show", "pln": ["(: cnet_isa_3823c84525 (IsA raree_show show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rarefaction is a kind of concentration", "pln": ["(: cnet_isa_16ae1167db (IsA rarefaction concentration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rariora is a kind of collector s item", "pln": ["(: cnet_isa_189d8c0fc8 (IsA rariora collector_s_item) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rarity is a kind of concentration", "pln": ["(: cnet_isa_aec96a104b (IsA rarity concentration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rarity is a kind of scarcity", "pln": ["(: cnet_isa_e318a40324 (IsA rarity scarcity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "rash is a kind of series", "pln": ["(: cnet_isa_6904d92b62 (IsA rash series) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rascality is a kind of dishonesty", "pln": ["(: cnet_isa_2cdd526b5b (IsA rascality dishonesty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rash is a kind of sery", "pln": ["(: cnet_isa_0ad692bec6 (IsA rash sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rash is a kind of eruption", "pln": ["(: cnet_isa_66978b93c7 (IsA rash eruption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rashtriya swayamsevak sangh is a kind of secret society", "pln": ["(: cnet_isa_ee6ee0b6a1 (IsA rashtriya_swayamsevak_sangh secret_society) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rasp is a kind of file", "pln": ["(: cnet_isa_8e7eb7070d (IsA rasp file) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rasp is a kind of utterance", "pln": ["(: cnet_isa_cf2af5890a (IsA rasp utterance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raspberry is a kind of berry", "pln": ["(: cnet_isa_8f8e983607 (IsA raspberry berry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raspberry is a kind of drupelet", "pln": ["(: cnet_isa_56887155ea (IsA raspberry drupelet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "raspberry is a kind of bramble bush", "pln": ["(: cnet_isa_d9ec39c0a5 (IsA raspberry bramble_bush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rasta is a kind of disciple", "pln": ["(: cnet_isa_fd6a7c9058 (IsA rasta disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rastafari is a kind of cult", "pln": ["(: cnet_isa_d2b661a5f1 (IsA rastafari cult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rastafari is a kind of youth subculture", "pln": ["(: cnet_isa_9f0381d25e (IsA rastafari youth_subculture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rastafarian is a kind of cult", "pln": ["(: cnet_isa_6d4562f49d (IsA rastafarian cult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rastafarianism is a kind of cult", "pln": ["(: cnet_isa_63b15b7481 (IsA rastafarianism cult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "raster is a kind of formation", "pln": ["(: cnet_isa_ca144df13d (IsA raster formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rat is a kind of rodent", "pln": ["(: cnet_isa_7c3e7328a0 (IsA rat rodent) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rat is a kind of pad", "pln": ["(: cnet_isa_eecd793539 (IsA rat pad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rat and rabbit is a kind of both animal", "pln": ["(: cnet_isa_f805feab03 (IsA rat_and_rabbit both_animal) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rat catcher is a kind of workman", "pln": ["(: cnet_isa_9dde30b608 (IsA rat_catcher workman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rat kangaroo is a kind of kangaroo", "pln": ["(: cnet_isa_77047e33cc (IsA rat_kangaroo kangaroo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rat race is a kind of routine", "pln": ["(: cnet_isa_0a68066b7f (IsA rat_race routine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rat snake is a kind of colubrid snake", "pln": ["(: cnet_isa_a0fc0de8e6 (IsA rat_snake colubrid_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rat tail file is a kind of file", "pln": ["(: cnet_isa_39643ce482 (IsA rat_tail_file file) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rat tat tat is a kind of tapping", "pln": ["(: cnet_isa_7177fd7f67 (IsA rat_tat_tat tapping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rat terrier is a kind of terrier", "pln": ["(: cnet_isa_361968a6e6 (IsA rat_terrier terrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ratability is a kind of quantifiability", "pln": ["(: cnet_isa_784f24ff73 (IsA ratability quantifiability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ratability is a kind of liability", "pln": ["(: cnet_isa_98cfb1cdcd (IsA ratability liability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ratable is a kind of property", "pln": ["(: cnet_isa_f25daeccfc (IsA ratable property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ratafia is a kind of liqueur", "pln": ["(: cnet_isa_fd143ee6b4 (IsA ratafia liqueur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ratafia is a kind of macaroon", "pln": ["(: cnet_isa_e715d3971b (IsA ratafia macaroon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ratatouille is a kind of stew", "pln": ["(: cnet_isa_9e0301c17d (IsA ratatouille stew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ratbite fever is a kind of infectious disease", "pln": ["(: cnet_isa_862666eed2 (IsA ratbite_fever infectious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ratbite fever bacterium is a kind of spirillum", "pln": ["(: cnet_isa_98ef49daad (IsA ratbite_fever_bacterium spirillum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ratchet is a kind of mechanical device", "pln": ["(: cnet_isa_e84417e577 (IsA ratchet mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ratchet wheel is a kind of wheel", "pln": ["(: cnet_isa_dd67b91e74 (IsA ratchet_wheel wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rate is a kind of proportion", "pln": ["(: cnet_isa_44970ca181 (IsA rate proportion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rate is a kind of charge", "pln": ["(: cnet_isa_f17f682082 (IsA rate charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rate is a kind of magnitude relation", "pln": ["(: cnet_isa_e2f76eee93 (IsA rate magnitude_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rate of depreciation is a kind of rate", "pln": ["(: cnet_isa_7f6401c015 (IsA rate_of_depreciation rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rate of exchange is a kind of rate", "pln": ["(: cnet_isa_54c1c927d7 (IsA rate_of_exchange rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rate of return is a kind of rate", "pln": ["(: cnet_isa_8a5f28f6bd (IsA rate_of_return rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ratel is a kind of musteline mammal", "pln": ["(: cnet_isa_8aa89a3b1b (IsA ratel musteline_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ratepayer is a kind of taxpayer", "pln": ["(: cnet_isa_4e39d09906 (IsA ratepayer taxpayer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rate is a kind of tax", "pln": ["(: cnet_isa_15f65c3c16 (IsA rate tax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rathole is a kind of room", "pln": ["(: cnet_isa_9d66c6c6fe (IsA rathole room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rathole is a kind of hole", "pln": ["(: cnet_isa_9c90841401 (IsA rathole hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rathskeller is a kind of tavern", "pln": ["(: cnet_isa_33373c625a (IsA rathskeller tavern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ratibida is a kind of asterid dicot genus", "pln": ["(: cnet_isa_6a8e81346e (IsA ratibida asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ratification is a kind of agreement", "pln": ["(: cnet_isa_9ecea39563 (IsA ratification agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rating is a kind of standing", "pln": ["(: cnet_isa_344e27b94c (IsA rating standing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rating system is a kind of classification system", "pln": ["(: cnet_isa_e9174f75e5 (IsA rating_system classification_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ratio is a kind of magnitude relation", "pln": ["(: cnet_isa_0a9cb0a0f6 (IsA ratio magnitude_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ratiocination is a kind of reasoning", "pln": ["(: cnet_isa_903c0d09bc (IsA ratiocination reasoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ration is a kind of fare", "pln": ["(: cnet_isa_8c95187105 (IsA ration fare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ration is a kind of share", "pln": ["(: cnet_isa_4fd8d918c9 (IsA ration share) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ration card is a kind of card", "pln": ["(: cnet_isa_b1c2843cfd (IsA ration_card card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rational motive is a kind of motivation", "pln": ["(: cnet_isa_ee284deacd (IsA rational_motive motivation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rational number is a kind of real number", "pln": ["(: cnet_isa_26865ce961 (IsA rational_number real_number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rationale is a kind of explanation", "pln": ["(: cnet_isa_e217a54d09 (IsA rationale explanation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rationalism is a kind of doctrine", "pln": ["(: cnet_isa_e7800e2a63 (IsA rationalism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rationalism is a kind of theological doctrine", "pln": ["(: cnet_isa_fd0dff5305 (IsA rationalism theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rationalism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_5e614a53d8 (IsA rationalism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rationality is a kind of logicality", "pln": ["(: cnet_isa_d96a3e787f (IsA rationality logicality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rationality is a kind of sanity", "pln": ["(: cnet_isa_db877e986c (IsA rationality sanity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rationalization is a kind of organization", "pln": ["(: cnet_isa_c290c2f0ec (IsA rationalization organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rationalization is a kind of explanation", "pln": ["(: cnet_isa_8802e80a29 (IsA rationalization explanation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rationalization is a kind of simplification", "pln": ["(: cnet_isa_e5d3fe8774 (IsA rationalization simplification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rationalization is a kind of defense mechanism", "pln": ["(: cnet_isa_b2cfd4e3c1 (IsA rationalization defense_mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rationing is a kind of allotment", "pln": ["(: cnet_isa_46bc5e121b (IsA rationing allotment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ratitae is a kind of animal order", "pln": ["(: cnet_isa_3fd63a5ab1 (IsA ratitae animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ratite is a kind of bird", "pln": ["(: cnet_isa_92275e70ee (IsA ratite bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ratline is a kind of line", "pln": ["(: cnet_isa_7d0007dd6a (IsA ratline line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rattail cactus is a kind of cactus", "pln": ["(: cnet_isa_1b667dacca (IsA rattail_cactus cactus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rattan is a kind of switch", "pln": ["(: cnet_isa_f5cae5b66d (IsA rattan switch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rattan is a kind of calamus", "pln": ["(: cnet_isa_da96e6e699 (IsA rattan calamus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rattan is a kind of cane", "pln": ["(: cnet_isa_d77129ce38 (IsA rattan cane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rattle is a kind of tail", "pln": ["(: cnet_isa_07cea9abcb (IsA rattle tail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rattle is a kind of plaything", "pln": ["(: cnet_isa_44d74c67c9 (IsA rattle plaything) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rattle is a kind of noise", "pln": ["(: cnet_isa_57ccd879cb (IsA rattle noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rattlesnake is a kind of pit viper", "pln": ["(: cnet_isa_704762a5da (IsA rattlesnake pit_viper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rattlesnake fern is a kind of grape fern", "pln": ["(: cnet_isa_43508434c7 (IsA rattlesnake_fern grape_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rattlesnake master is a kind of perennial", "pln": ["(: cnet_isa_1413c57245 (IsA rattlesnake_master perennial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rattlesnake orchid is a kind of orchid", "pln": ["(: cnet_isa_c91d2eee2e (IsA rattlesnake_orchid orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rattlesnake plantain is a kind of orchid", "pln": ["(: cnet_isa_d4e635c6e7 (IsA rattlesnake_plantain orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rattlesnake root is a kind of herb", "pln": ["(: cnet_isa_ecda386530 (IsA rattlesnake_root herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rattlesnake weed is a kind of hawkweed", "pln": ["(: cnet_isa_b062708b44 (IsA rattlesnake_weed hawkweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rattrap is a kind of housing", "pln": ["(: cnet_isa_0c1186a531 (IsA rattrap housing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rattrap is a kind of trap", "pln": ["(: cnet_isa_26dbd1d897 (IsA rattrap trap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rattrap is a kind of difficulty", "pln": ["(: cnet_isa_a3c5afa410 (IsA rattrap difficulty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rattus is a kind of mammal genus", "pln": ["(: cnet_isa_00227109ad (IsA rattus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rauli beech is a kind of southern beech", "pln": ["(: cnet_isa_c25cff7cd9 (IsA rauli_beech southern_beech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rauwolfia is a kind of shrub", "pln": ["(: cnet_isa_aa561af400 (IsA rauwolfia shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rauwolfia is a kind of alkaloid", "pln": ["(: cnet_isa_8f35cc4640 (IsA rauwolfia alkaloid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ravage is a kind of destruction", "pln": ["(: cnet_isa_75c6a5bf7f (IsA ravage destruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ravaging is a kind of plundering", "pln": ["(: cnet_isa_de575edcc7 (IsA ravaging plundering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rave is a kind of review", "pln": ["(: cnet_isa_6724078d38 (IsA rave review) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rave is a kind of dance", "pln": ["(: cnet_isa_3f742674a2 (IsA rave dance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rave up is a kind of gathering", "pln": ["(: cnet_isa_979725a8a1 (IsA rave_up gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ravehook is a kind of hand tool", "pln": ["(: cnet_isa_1b7bb657d0 (IsA ravehook hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raveling is a kind of fiber", "pln": ["(: cnet_isa_f204965f42 (IsA raveling fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raven is a kind of corvine bird", "pln": ["(: cnet_isa_ed33f5915e (IsA raven corvine_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ravenna grass is a kind of plume grass", "pln": ["(: cnet_isa_be69eac121 (IsA ravenna_grass plume_grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raver is a kind of dancer", "pln": ["(: cnet_isa_15f45f3451 (IsA raver dancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ravigote is a kind of sauce", "pln": ["(: cnet_isa_00ac66452a (IsA ravigote sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ravine is a kind of valley", "pln": ["(: cnet_isa_c32d188c56 (IsA ravine valley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raving is a kind of declamation", "pln": ["(: cnet_isa_4b3f98a93b (IsA raving declamation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ravioli is a kind of pasta", "pln": ["(: cnet_isa_a67fdb1da1 (IsA ravioli pasta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raw is a kind of nakedness", "pln": ["(: cnet_isa_4769781cf6 (IsA raw nakedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raw beauty is a kind of beauty", "pln": ["(: cnet_isa_80f89e69a1 (IsA raw_beauty beauty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raw data is a kind of data", "pln": ["(: cnet_isa_da7c41b847 (IsA raw_data data) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raw deal is a kind of deal", "pln": ["(: cnet_isa_0cf12decaf (IsA raw_deal deal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raw material is a kind of material", "pln": ["(: cnet_isa_25095ec084 (IsA raw_material material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raw meat is a kind of meat", "pln": ["(: cnet_isa_bcdae694f5 (IsA raw_meat meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raw milk is a kind of milk", "pln": ["(: cnet_isa_9caee1f2da (IsA raw_milk milk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raw recruit is a kind of recruit", "pln": ["(: cnet_isa_332de9e788 (IsA raw_recruit recruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raw sienna is a kind of sienna", "pln": ["(: cnet_isa_12c54d6845 (IsA raw_sienna sienna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "raw talent is a kind of endowment", "pln": ["(: cnet_isa_1637d5851b (IsA raw_talent endowment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "raw umber is a kind of umber", "pln": ["(: cnet_isa_08f3aa96df (IsA raw_umber umber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "raw vegetable is a kind of vegetable", "pln": ["(: cnet_isa_d2ded31391 (IsA raw_vegetable vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raw weather is a kind of bad weather", "pln": ["(: cnet_isa_2f413010b6 (IsA raw_weather bad_weather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raw wood is a kind of wood", "pln": ["(: cnet_isa_72c98fcf84 (IsA raw_wood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raw wool is a kind of wool", "pln": ["(: cnet_isa_007baa5525 (IsA raw_wool wool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "raw wound is a kind of wound", "pln": ["(: cnet_isa_ff5f230ec4 (IsA raw_wound wound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rawhide is a kind of hide", "pln": ["(: cnet_isa_eae5266ed9 (IsA rawhide hide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rawness is a kind of damp", "pln": ["(: cnet_isa_b3e6e07e06 (IsA rawness damp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ray is a kind of flat fish", "pln": ["(: cnet_isa_9cb5ffc5fd (IsA ray flat_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ray is a kind of elasmobranch", "pln": ["(: cnet_isa_02a8e9fb45 (IsA ray elasmobranch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ray is a kind of spine", "pln": ["(: cnet_isa_1528b4200b (IsA ray spine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ray is a kind of vector", "pln": ["(: cnet_isa_9f801a29f2 (IsA ray vector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ray is a kind of pedicel", "pln": ["(: cnet_isa_b739f077ba (IsA ray pedicel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ray flower is a kind of flower", "pln": ["(: cnet_isa_1670b854a1 (IsA ray_flower flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rayleigh disk is a kind of radiometer", "pln": ["(: cnet_isa_d4178beb7c (IsA rayleigh_disk radiometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rayon is a kind of fabric", "pln": ["(: cnet_isa_80915d3e46 (IsA rayon fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "razing is a kind of destruction", "pln": ["(: cnet_isa_a6ba1fb62b (IsA razing destruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "razor is a kind of edge tool", "pln": ["(: cnet_isa_4574bfe863 (IsA razor edge_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "razor clam is a kind of clam", "pln": ["(: cnet_isa_3dbe7f0327 (IsA razor_clam clam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "razor edge is a kind of edge", "pln": ["(: cnet_isa_87c9c0a4c4 (IsA razor_edge edge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "razor fish is a kind of wrasse", "pln": ["(: cnet_isa_50bb5d1772 (IsA razor_fish wrasse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "razorback is a kind of swine", "pln": ["(: cnet_isa_173ca7226e (IsA razorback swine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "razorbill is a kind of auk", "pln": ["(: cnet_isa_c2d11c128c (IsA razorbill auk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "razorblade is a kind of blade", "pln": ["(: cnet_isa_efe4ada685 (IsA razorblade blade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "razzle dazzle is a kind of play", "pln": ["(: cnet_isa_2bbdd79619 (IsA razzle_dazzle play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "re is a kind of solfa syllable", "pln": ["(: cnet_isa_3b34948b12 (IsA re solfa_syllable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "re creation is a kind of creation", "pln": ["(: cnet_isa_09fb9c9226 (IsA re_creation creation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "re echo is a kind of echo", "pln": ["(: cnet_isa_bb764b7839 (IsA re_echo echo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "re establishment is a kind of restoration", "pln": ["(: cnet_isa_61b07cfd00 (IsA re_establishment restoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "re formation is a kind of reconstruction", "pln": ["(: cnet_isa_6ccf3b639f (IsA re_formation reconstruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "re introduction is a kind of proposal", "pln": ["(: cnet_isa_b010796e7a (IsA re_introduction proposal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rea silvia is a kind of vestal virgin", "pln": ["(: cnet_isa_39025c7458 (IsA rea_silvia vestal_virgin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reach is a kind of motion", "pln": ["(: cnet_isa_184380dc89 (IsA reach motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "reactance is a kind of electrical phenomenon", "pln": ["(: cnet_isa_daf01a22e4 (IsA reactance electrical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reactant is a kind of chemical", "pln": ["(: cnet_isa_74c10001de (IsA reactant chemical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reaction is a kind of bodily process", "pln": ["(: cnet_isa_d0c3b6aa4c (IsA reaction bodily_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reaction is a kind of resistance", "pln": ["(: cnet_isa_0756c9958c (IsA reaction resistance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reaction is a kind of conservatism", "pln": ["(: cnet_isa_b86e6e2f57 (IsA reaction conservatism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reaction is a kind of idea", "pln": ["(: cnet_isa_cb39daece1 (IsA reaction idea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reaction is a kind of force", "pln": ["(: cnet_isa_e79936f4df (IsA reaction force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reaction is a kind of response", "pln": ["(: cnet_isa_7b9b0cacbe (IsA reaction response) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reaction formation is a kind of defense mechanism", "pln": ["(: cnet_isa_d41407ae4e (IsA reaction_formation defense_mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reaction propulsion is a kind of propulsion", "pln": ["(: cnet_isa_c22cae1470 (IsA reaction_propulsion propulsion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reaction propulsion engine is a kind of engine", "pln": ["(: cnet_isa_f590716876 (IsA reaction_propulsion_engine engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reaction time is a kind of time interval", "pln": ["(: cnet_isa_bebd53d7b1 (IsA reaction_time time_interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reaction turbine is a kind of turbine", "pln": ["(: cnet_isa_4462905293 (IsA reaction_turbine turbine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reactionary is a kind of conservative", "pln": ["(: cnet_isa_046fb14c24 (IsA reactionary conservative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reactionism is a kind of political orientation", "pln": ["(: cnet_isa_07e41996ec (IsA reactionism political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reactivity is a kind of susceptibility", "pln": ["(: cnet_isa_5d93a40d40 (IsA reactivity susceptibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reactor is a kind of electrical device", "pln": ["(: cnet_isa_f60a9e0e5c (IsA reactor electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "read is a kind of publication", "pln": ["(: cnet_isa_f97932e5b1 (IsA read publication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "read method of childbirth is a kind of natural childbirth", "pln": ["(: cnet_isa_8c5a53a46a (IsA read_method_of_childbirth natural_childbirth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "read only file is a kind of computer file", "pln": ["(: cnet_isa_46a8647138 (IsA read_only_file computer_file) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "read only memory is a kind of memory", "pln": ["(: cnet_isa_db86bd54f6 (IsA read_only_memory memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "read only memory chip is a kind of memory chip", "pln": ["(: cnet_isa_4f84d6580b (IsA read_only_memory_chip memory_chip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "read out is a kind of electronic device", "pln": ["(: cnet_isa_c56dbc8fdf (IsA read_out electronic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "read out is a kind of output signal", "pln": ["(: cnet_isa_8d1ffa7bab (IsA read_out output_signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "read write head is a kind of coil", "pln": ["(: cnet_isa_95338dae91 (IsA read_write_head coil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "readability is a kind of intelligibility", "pln": ["(: cnet_isa_ace49ae57e (IsA readability intelligibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reader is a kind of textbook", "pln": ["(: cnet_isa_e31bb88c2b (IsA reader textbook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reader is a kind of literate", "pln": ["(: cnet_isa_9d41870a7c (IsA reader literate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reader is a kind of scholar", "pln": ["(: cnet_isa_765877e1f1 (IsA reader scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "readership is a kind of audience", "pln": ["(: cnet_isa_eb53e775e8 (IsA readership audience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "readiness is a kind of willingness", "pln": ["(: cnet_isa_152c007f75 (IsA readiness willingness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "readiness is a kind of state", "pln": ["(: cnet_isa_29dd3fa586 (IsA readiness state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reading is a kind of activity", "pln": ["(: cnet_isa_c0a8203e66 (IsA reading activity) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reading is a kind of good way to learn", "pln": ["(: cnet_isa_ff2a5fc295 (IsA reading good_way_to_learn) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reading is a kind of one way of learning", "pln": ["(: cnet_isa_17644f0020 (IsA reading one_way_of_learning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reading is a kind of one way to learn", "pln": ["(: cnet_isa_81bf4e6e90 (IsA reading one_way_to_learn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "reading is a kind of measurement", "pln": ["(: cnet_isa_54dfbfd384 (IsA reading measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reading is a kind of datum", "pln": ["(: cnet_isa_6468f3f920 (IsA reading datum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reading is a kind of linguistic process", "pln": ["(: cnet_isa_3a0a4bc03b (IsA reading linguistic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reading is a kind of interpretation", "pln": ["(: cnet_isa_7ddcfadf30 (IsA reading interpretation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reading is a kind of written communication", "pln": ["(: cnet_isa_40f3161273 (IsA reading written_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reading assignment is a kind of lesson", "pln": ["(: cnet_isa_aaf00a74df (IsA reading_assignment lesson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reading book is a kind of pleasant human activity", "pln": ["(: cnet_isa_2d87205472 (IsA reading_book pleasant_human_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reading clinic is a kind of clinic", "pln": ["(: cnet_isa_e76276a438 (IsA reading_clinic clinic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "reading lamp is a kind of lamp", "pln": ["(: cnet_isa_f07e24693b (IsA reading_lamp lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reading program is a kind of course of study", "pln": ["(: cnet_isa_8c33b915fb (IsA reading_program course_of_study) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reading room is a kind of room", "pln": ["(: cnet_isa_357943e97e (IsA reading_room room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reading teacher is a kind of teacher", "pln": ["(: cnet_isa_f5e62314c7 (IsA reading_teacher teacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "readjustment is a kind of adjustment", "pln": ["(: cnet_isa_fdda3f46e5 (IsA readjustment adjustment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "readmission is a kind of admission", "pln": ["(: cnet_isa_2a93f4679b (IsA readmission admission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "readout is a kind of information", "pln": ["(: cnet_isa_9187ed459f (IsA readout information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ready is a kind of readiness", "pln": ["(: cnet_isa_83dbf5aa62 (IsA ready readiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ready cash is a kind of cash", "pln": ["(: cnet_isa_efae061b24 (IsA ready_cash cash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ready made is a kind of artifact", "pln": ["(: cnet_isa_e97654457a (IsA ready_made artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ready mix is a kind of convenience food", "pln": ["(: cnet_isa_662c37c00d (IsA ready_mix convenience_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ready mix is a kind of mix", "pln": ["(: cnet_isa_0466a2bf50 (IsA ready_mix mix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ready to wear is a kind of clothing", "pln": ["(: cnet_isa_1172aee2b2 (IsA ready_to_wear clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reaffiliation is a kind of affiliation", "pln": ["(: cnet_isa_88936e5551 (IsA reaffiliation affiliation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reagan administration is a kind of executive", "pln": ["(: cnet_isa_01fc6af37c (IsA reagan_administration executive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reagent is a kind of chemical agent", "pln": ["(: cnet_isa_7c5da189fb (IsA reagent chemical_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reagin is a kind of immunoglobulin e", "pln": ["(: cnet_isa_7c836a4340 (IsA reagin immunoglobulin_e) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "real is a kind of coin", "pln": ["(: cnet_isa_65433eaf73 (IsA real coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "real is a kind of brazilian monetary unit", "pln": ["(: cnet_isa_bb7636c4bc (IsA real brazilian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "real estate business is a kind of commercial enterprise", "pln": ["(: cnet_isa_2744ba70ef (IsA real_estate_business commercial_enterprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "real estate investment trust is a kind of investment company", "pln": ["(: cnet_isa_c947d60aca (IsA real_estate_investment_trust investment_company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "real estate loan is a kind of loan", "pln": ["(: cnet_isa_2ec3af7f3f (IsA real_estate_loan loan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "real gross national product is a kind of gross national product", "pln": ["(: cnet_isa_1b4ff71456 (IsA real_gross_national_product gross_national_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "real matrix is a kind of matrix", "pln": ["(: cnet_isa_3f8285f8bd (IsA real_matrix matrix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "real mccoy is a kind of authenticity", "pln": ["(: cnet_isa_5a4e150337 (IsA real_mccoy authenticity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "real number is a kind of complex number", "pln": ["(: cnet_isa_b9fb454d38 (IsA real_number complex_number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "real presence is a kind of religious doctrine", "pln": ["(: cnet_isa_b7071deb59 (IsA real_presence religious_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "real property is a kind of property", "pln": ["(: cnet_isa_da1cc6924c (IsA real_property property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "real storage is a kind of memory", "pln": ["(: cnet_isa_3587cf1258 (IsA real_storage memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "real time is a kind of time period", "pln": ["(: cnet_isa_85f37dded1 (IsA real_time time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "real time processing is a kind of data processing", "pln": ["(: cnet_isa_682633c1e9 (IsA real_time_processing data_processing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "real world is a kind of world", "pln": ["(: cnet_isa_52e707a0d1 (IsA real_world world) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "realgar is a kind of mineral", "pln": ["(: cnet_isa_58a517c307 (IsA realgar mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "realism is a kind of practicality", "pln": ["(: cnet_isa_70ca20dfef (IsA realism practicality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "realism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_cf13b927f8 (IsA realism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "realist is a kind of painter", "pln": ["(: cnet_isa_8edd427624 (IsA realist painter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "realist is a kind of person", "pln": ["(: cnet_isa_39e1c3e267 (IsA realist person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "realist is a kind of philosopher", "pln": ["(: cnet_isa_a59c3dbfb2 (IsA realist philosopher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reality is a kind of materiality", "pln": ["(: cnet_isa_20d5ad477c (IsA reality materiality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reality is a kind of actuality", "pln": ["(: cnet_isa_3f2bc2faf0 (IsA reality actuality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reality check is a kind of juncture", "pln": ["(: cnet_isa_7ec24a2e21 (IsA reality_check juncture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reality principle is a kind of principle", "pln": ["(: cnet_isa_cfd93e4264 (IsA reality_principle principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "realization is a kind of composing", "pln": ["(: cnet_isa_83954c4a6a (IsA realization composing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "realization is a kind of consummation", "pln": ["(: cnet_isa_010b8da824 (IsA realization consummation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "realization is a kind of creating by mental act", "pln": ["(: cnet_isa_2c385a222e (IsA realization creating_by_mental_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "realization is a kind of sale", "pln": ["(: cnet_isa_37f367e442 (IsA realization sale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "realization is a kind of understanding", "pln": ["(: cnet_isa_ae9631fa59 (IsA realization understanding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "realization is a kind of musical composition", "pln": ["(: cnet_isa_108c66e8ba (IsA realization musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reallocation is a kind of allotment", "pln": ["(: cnet_isa_46e38c9af2 (IsA reallocation allotment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reallotment is a kind of allotment", "pln": ["(: cnet_isa_bc38b720e5 (IsA reallotment allotment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "realpolitik is a kind of politic", "pln": ["(: cnet_isa_defcaa875c (IsA realpolitik politic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "realtor is a kind of agent", "pln": ["(: cnet_isa_685cda6ff4 (IsA realtor agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "realtor is a kind of realtor", "pln": ["(: cnet_isa_b2392d68d3 (IsA realtor realtor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ream is a kind of definite quantity", "pln": ["(: cnet_isa_c8e6025b56 (IsA ream definite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ream is a kind of large indefinite quantity", "pln": ["(: cnet_isa_9c5a58c24b (IsA ream large_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reamer is a kind of drill", "pln": ["(: cnet_isa_fd41ab99af (IsA reamer drill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reamer is a kind of squeezer", "pln": ["(: cnet_isa_8320ed08b5 (IsA reamer squeezer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reappearance is a kind of appearance", "pln": ["(: cnet_isa_7c63a3e571 (IsA reappearance appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reappraisal is a kind of appraisal", "pln": ["(: cnet_isa_041e9a7607 (IsA reappraisal appraisal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rear is a kind of side", "pln": ["(: cnet_isa_4b3200c301 (IsA rear side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rear is a kind of formation", "pln": ["(: cnet_isa_90a8d34366 (IsA rear formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rear admiral is a kind of flag officer", "pln": ["(: cnet_isa_7f404efc01 (IsA rear_admiral flag_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rear window is a kind of car window", "pln": ["(: cnet_isa_709c5965b4 (IsA rear_window car_window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rearguard is a kind of detachment", "pln": ["(: cnet_isa_de8e52f01a (IsA rearguard detachment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rearmament is a kind of arming", "pln": ["(: cnet_isa_0b6da86d19 (IsA rearmament arming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rearrangement is a kind of arrangement", "pln": ["(: cnet_isa_b2162876f2 (IsA rearrangement arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rearview mirror is a kind of car mirror", "pln": ["(: cnet_isa_61609e1ee1 (IsA rearview_mirror car_mirror) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rearward is a kind of rear", "pln": ["(: cnet_isa_39f8bac514 (IsA rearward rear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reason is a kind of fact", "pln": ["(: cnet_isa_cf5941a409 (IsA reason fact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "reason is a kind of faculty", "pln": ["(: cnet_isa_19b2d0ab6f (IsA reason faculty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reason is a kind of explanation", "pln": ["(: cnet_isa_ecc20c6794 (IsA reason explanation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reason is a kind of rational motive", "pln": ["(: cnet_isa_6a1723421f (IsA reason rational_motive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "reasonableness is a kind of inexpensiveness", "pln": ["(: cnet_isa_b07d8d8806 (IsA reasonableness inexpensiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reasonableness is a kind of moderation", "pln": ["(: cnet_isa_0707416ebe (IsA reasonableness moderation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reasonableness is a kind of plausibility", "pln": ["(: cnet_isa_29799edc52 (IsA reasonableness plausibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reasonableness is a kind of wisdom", "pln": ["(: cnet_isa_7717aebac9 (IsA reasonableness wisdom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reasoner is a kind of thinker", "pln": ["(: cnet_isa_5d1cf9ce43 (IsA reasoner thinker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reasoning is a kind of thinking", "pln": ["(: cnet_isa_5d1832eaa9 (IsA reasoning thinking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reassembly is a kind of reconstruction", "pln": ["(: cnet_isa_87fb86c817 (IsA reassembly reconstruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reassertion is a kind of avowal", "pln": ["(: cnet_isa_89255a8fc3 (IsA reassertion avowal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reassignment is a kind of assignment", "pln": ["(: cnet_isa_e66fffdc3c (IsA reassignment assignment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reassurance is a kind of support", "pln": ["(: cnet_isa_fb4c1b63e3 (IsA reassurance support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reaumur scale is a kind of temperature scale", "pln": ["(: cnet_isa_30a8cba9d7 (IsA reaumur_scale temperature_scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reaumur thermometer is a kind of thermometer", "pln": ["(: cnet_isa_73a339e28e (IsA reaumur_thermometer thermometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rebate is a kind of refund", "pln": ["(: cnet_isa_c5d031b730 (IsA rebate refund) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rebellion is a kind of conflict", "pln": ["(: cnet_isa_4f81113f7e (IsA rebellion conflict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rebellion is a kind of resistance", "pln": ["(: cnet_isa_fadd90505f (IsA rebellion resistance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rebirth is a kind of revival", "pln": ["(: cnet_isa_d5b9b126ad (IsA rebirth revival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rebound is a kind of catch", "pln": ["(: cnet_isa_f0797e6c04 (IsA rebound catch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rebound is a kind of reaction", "pln": ["(: cnet_isa_ece7dab0aa (IsA rebound reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rebound tenderness is a kind of tenderness", "pln": ["(: cnet_isa_ed8e598564 (IsA rebound_tenderness tenderness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reboxetine is a kind of antidepressant", "pln": ["(: cnet_isa_ee354831e7 (IsA reboxetine antidepressant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rebozo is a kind of scarf", "pln": ["(: cnet_isa_b03720af02 (IsA rebozo scarf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rebroadcast is a kind of broadcast", "pln": ["(: cnet_isa_144c13ea34 (IsA rebroadcast broadcast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rebuff is a kind of discourtesy", "pln": ["(: cnet_isa_2d662708fc (IsA rebuff discourtesy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rebuff is a kind of rejection", "pln": ["(: cnet_isa_9033b3ff87 (IsA rebuff rejection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rebuilding is a kind of reconstruction", "pln": ["(: cnet_isa_bab58475a0 (IsA rebuilding reconstruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rebuke is a kind of criticism", "pln": ["(: cnet_isa_811f3cf6f2 (IsA rebuke criticism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reburying is a kind of burying", "pln": ["(: cnet_isa_ce52978304 (IsA reburying burying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rebus is a kind of problem", "pln": ["(: cnet_isa_c8967f7ad2 (IsA rebus problem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rebuttal is a kind of refutation", "pln": ["(: cnet_isa_f08e889f42 (IsA rebuttal refutation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rebutter is a kind of pleading", "pln": ["(: cnet_isa_b2d914aa1f (IsA rebutter pleading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rebutter is a kind of debater", "pln": ["(: cnet_isa_2d64854f12 (IsA rebutter debater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "recalculation is a kind of calculation", "pln": ["(: cnet_isa_edc5fbd840 (IsA recalculation calculation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recall is a kind of abrogation", "pln": ["(: cnet_isa_2c4b16934a (IsA recall abrogation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recall is a kind of memory", "pln": ["(: cnet_isa_af382af56c (IsA recall memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recall is a kind of bugle call", "pln": ["(: cnet_isa_e45498b0e1 (IsA recall bugle_call) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recall is a kind of call", "pln": ["(: cnet_isa_d5170e24b6 (IsA recall call) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recall is a kind of request", "pln": ["(: cnet_isa_ae1f7639da (IsA recall request) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "recapitulation is a kind of capitulation", "pln": ["(: cnet_isa_8181760f54 (IsA recapitulation capitulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recapitulation is a kind of composing", "pln": ["(: cnet_isa_c85063ae29 (IsA recapitulation composing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recapitulation is a kind of section", "pln": ["(: cnet_isa_744afb6419 (IsA recapitulation section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recapture is a kind of recovery", "pln": ["(: cnet_isa_c48b66579b (IsA recapture recovery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recapture is a kind of seizure", "pln": ["(: cnet_isa_53467251b6 (IsA recapture seizure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recce is a kind of reconnaissance", "pln": ["(: cnet_isa_8c8091621c (IsA recce reconnaissance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "receding is a kind of withdrawal", "pln": ["(: cnet_isa_9288e4e890 (IsA receding withdrawal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "receding is a kind of disappearance", "pln": ["(: cnet_isa_f2d45c6bad (IsA receding disappearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "receipt is a kind of acknowledgment", "pln": ["(: cnet_isa_7b3f024ac7 (IsA receipt acknowledgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "receivable is a kind of asset", "pln": ["(: cnet_isa_9083f26bd8 (IsA receivable asset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "received pronunciation is a kind of english", "pln": ["(: cnet_isa_0ea9e9f912 (IsA received_pronunciation english) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "received pronunciation is a kind of pronunciation", "pln": ["(: cnet_isa_168f61b31d (IsA received_pronunciation pronunciation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "receiver is a kind of set", "pln": ["(: cnet_isa_52794ef76e (IsA receiver set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "receiver is a kind of football player", "pln": ["(: cnet_isa_06bbbc285d (IsA receiver football_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "receiver is a kind of tennis player", "pln": ["(: cnet_isa_61bc38ba0d (IsA receiver tennis_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "receiver creditor relation is a kind of fiduciary relation", "pln": ["(: cnet_isa_218ffb1548 (IsA receiver_creditor_relation fiduciary_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "receivership is a kind of position", "pln": ["(: cnet_isa_d4e7fa85bc (IsA receivership position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "receivership is a kind of proceeding", "pln": ["(: cnet_isa_5c1e063956 (IsA receivership proceeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "receivership is a kind of state", "pln": ["(: cnet_isa_69a9c086cf (IsA receivership state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recency is a kind of newness", "pln": ["(: cnet_isa_05d2872d1c (IsA recency newness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recency is a kind of pastness", "pln": ["(: cnet_isa_aca2b89ef6 (IsA recency pastness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "receptacle is a kind of container", "pln": ["(: cnet_isa_1d4ea13ca7 (IsA receptacle container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "receptacle is a kind of fitting", "pln": ["(: cnet_isa_637720047e (IsA receptacle fitting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "receptacle is a kind of plant part", "pln": ["(: cnet_isa_46c1c0fc30 (IsA receptacle plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reception is a kind of acquiring", "pln": ["(: cnet_isa_fba1668116 (IsA reception acquiring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reception is a kind of catch", "pln": ["(: cnet_isa_635bbb0a99 (IsA reception catch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reception is a kind of broadcasting", "pln": ["(: cnet_isa_739a959e00 (IsA reception broadcasting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reception is a kind of greeting", "pln": ["(: cnet_isa_7e8268556f (IsA reception greeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reception is a kind of party", "pln": ["(: cnet_isa_3a6cb903df (IsA reception party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reception desk is a kind of counter", "pln": ["(: cnet_isa_8b44122e1a (IsA reception_desk counter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reception line is a kind of queue", "pln": ["(: cnet_isa_61dfd17f62 (IsA reception_line queue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reception room is a kind of room", "pln": ["(: cnet_isa_2ae186e1c4 (IsA reception_room room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "receptionist is a kind of secretary", "pln": ["(: cnet_isa_f41a4978b5 (IsA receptionist secretary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "receptiveness is a kind of willingness", "pln": ["(: cnet_isa_ea6fca6a0b (IsA receptiveness willingness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "receptor is a kind of structure", "pln": ["(: cnet_isa_04dfe97797 (IsA receptor structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recess is a kind of enclosure", "pln": ["(: cnet_isa_08b1438d83 (IsA recess enclosure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "recess is a kind of concave shape", "pln": ["(: cnet_isa_2c3587f641 (IsA recess concave_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "recession is a kind of cession", "pln": ["(: cnet_isa_cdce3d4bb8 (IsA recession cession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recession is a kind of procession", "pln": ["(: cnet_isa_579638325f (IsA recession procession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recession is a kind of economic condition", "pln": ["(: cnet_isa_adcba14436 (IsA recession economic_condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recessional is a kind of hymn", "pln": ["(: cnet_isa_4e7492e1e2 (IsA recessional hymn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recessive allele is a kind of allele", "pln": ["(: cnet_isa_f1cd2cc18d (IsA recessive_allele allele) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recessive gene is a kind of gene", "pln": ["(: cnet_isa_b61a06e067 (IsA recessive_gene gene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rechauffe is a kind of cuisine", "pln": ["(: cnet_isa_d38831a7fa (IsA rechauffe cuisine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recidivism is a kind of backsliding", "pln": ["(: cnet_isa_53390b0292 (IsA recidivism backsliding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recidivist is a kind of criminal", "pln": ["(: cnet_isa_c41074903a (IsA recidivist criminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recidivist is a kind of wrongdoer", "pln": ["(: cnet_isa_1a364279c5 (IsA recidivist wrongdoer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recipe is a kind of set of instruction", "pln": ["(: cnet_isa_1c7ec89850 (IsA recipe set_of_instruction) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recipe is a kind of direction", "pln": ["(: cnet_isa_2de4ff8bee (IsA recipe direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recipient is a kind of acquirer", "pln": ["(: cnet_isa_16594888e2 (IsA recipient acquirer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recipient role is a kind of semantic role", "pln": ["(: cnet_isa_24e155b961 (IsA recipient_role semantic_role) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reciprocal is a kind of reciprocality", "pln": ["(: cnet_isa_743b5c4052 (IsA reciprocal reciprocality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reciprocal cross is a kind of hybridization", "pln": ["(: cnet_isa_61656f0c36 (IsA reciprocal_cross hybridization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reciprocal inhibition is a kind of behavior therapy", "pln": ["(: cnet_isa_ad8a2c8ed9 (IsA reciprocal_inhibition behavior_therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reciprocal pronoun is a kind of pronoun", "pln": ["(: cnet_isa_a091b70273 (IsA reciprocal_pronoun pronoun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reciprocality is a kind of relation", "pln": ["(: cnet_isa_840183ea59 (IsA reciprocality relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "reciprocating engine is a kind of internal combustion engine", "pln": ["(: cnet_isa_45ec218730 (IsA reciprocating_engine internal_combustion_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reciprocation is a kind of motion", "pln": ["(: cnet_isa_5c326d8700 (IsA reciprocation motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reciprocation is a kind of return", "pln": ["(: cnet_isa_a0997a058a (IsA reciprocation return) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reciprocity is a kind of interchange", "pln": ["(: cnet_isa_752336a3fb (IsA reciprocity interchange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recirculation is a kind of circulation", "pln": ["(: cnet_isa_aaac393379 (IsA recirculation circulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "recission is a kind of cancellation", "pln": ["(: cnet_isa_cfe68f0fe2 (IsA recission cancellation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "recital is a kind of history", "pln": ["(: cnet_isa_dec8bf843d (IsA recital history) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recital is a kind of performance", "pln": ["(: cnet_isa_5d8c4c662c (IsA recital performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "recital is a kind of statement", "pln": ["(: cnet_isa_f99ca3abe7 (IsA recital statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recitalist is a kind of soloist", "pln": ["(: cnet_isa_51617636f1 (IsA recitalist soloist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recitation is a kind of matter", "pln": ["(: cnet_isa_a3db52b242 (IsA recitation matter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recitation is a kind of public speaking", "pln": ["(: cnet_isa_0286427600 (IsA recitation public_speaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recitative is a kind of passage", "pln": ["(: cnet_isa_2b18b4b6c3 (IsA recitative passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reciter is a kind of speaker", "pln": ["(: cnet_isa_ad06c19608 (IsA reciter speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recklessness is a kind of unthoughtfulness", "pln": ["(: cnet_isa_fa28a06e3e (IsA recklessness unthoughtfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reckoner is a kind of handbook", "pln": ["(: cnet_isa_ca44123419 (IsA reckoner handbook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "reckoning is a kind of bill", "pln": ["(: cnet_isa_ae90dfbdcb (IsA reckoning bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reclamation is a kind of recovery", "pln": ["(: cnet_isa_cdaefa77e2 (IsA reclamation recovery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reclamation is a kind of rescue", "pln": ["(: cnet_isa_7534744bf4 (IsA reclamation rescue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reclamation is a kind of restoration", "pln": ["(: cnet_isa_1896c32caf (IsA reclamation restoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reclassification is a kind of categorization", "pln": ["(: cnet_isa_ff9941084b (IsA reclassification categorization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recliner is a kind of armchair", "pln": ["(: cnet_isa_94c8b66e94 (IsA recliner armchair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reclining is a kind of motion", "pln": ["(: cnet_isa_af0bdb9383 (IsA reclining motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reclusiveness is a kind of aloneness", "pln": ["(: cnet_isa_869e4273cb (IsA reclusiveness aloneness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recoding is a kind of cryptography", "pln": ["(: cnet_isa_6e173cadc9 (IsA recoding cryptography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recognition is a kind of appointment", "pln": ["(: cnet_isa_ac519ac012 (IsA recognition appointment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recognition is a kind of organic phenomenon", "pln": ["(: cnet_isa_f651e69347 (IsA recognition organic_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recognition is a kind of credence", "pln": ["(: cnet_isa_876775f601 (IsA recognition credence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recognition is a kind of memory", "pln": ["(: cnet_isa_49bb169cc8 (IsA recognition memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recognition is a kind of approval", "pln": ["(: cnet_isa_fef3505ff7 (IsA recognition approval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recognition is a kind of diplomacy", "pln": ["(: cnet_isa_5509baaf93 (IsA recognition diplomacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "recognition is a kind of acceptance", "pln": ["(: cnet_isa_abb2ffd83d (IsA recognition acceptance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recognizance is a kind of security", "pln": ["(: cnet_isa_c7f5df1f28 (IsA recognizance security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recoil is a kind of movement", "pln": ["(: cnet_isa_b6c132f38a (IsA recoil movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recollection is a kind of memory", "pln": ["(: cnet_isa_a15b41bac6 (IsA recollection memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recombinant is a kind of cell", "pln": ["(: cnet_isa_589b1611bb (IsA recombinant cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recombinant is a kind of organism", "pln": ["(: cnet_isa_48240134c3 (IsA recombinant organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recombinant deoxyribonucleic acid is a kind of deoxyribonucleic acid", "pln": ["(: cnet_isa_961472f9f9 (IsA recombinant_deoxyribonucleic_acid deoxyribonucleic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recombinant human insulin is a kind of insulin", "pln": ["(: cnet_isa_230face4e5 (IsA recombinant_human_insulin insulin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recombinant protein is a kind of protein", "pln": ["(: cnet_isa_601da82685 (IsA recombinant_protein protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recombination is a kind of combining", "pln": ["(: cnet_isa_d0ca9121a7 (IsA recombination combining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recommendation is a kind of characteristic", "pln": ["(: cnet_isa_76681b00b1 (IsA recommendation characteristic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recommendation is a kind of advice", "pln": ["(: cnet_isa_af259031bd (IsA recommendation advice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "recommendation is a kind of praise", "pln": ["(: cnet_isa_df2bc58925 (IsA recommendation praise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recompense is a kind of correction", "pln": ["(: cnet_isa_c0e1068905 (IsA recompense correction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recompense is a kind of payment", "pln": ["(: cnet_isa_4bc9d0a757 (IsA recompense payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reconciliation is a kind of cooperation", "pln": ["(: cnet_isa_f806665c1d (IsA reconciliation cooperation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reconciliation is a kind of equalization", "pln": ["(: cnet_isa_0df95c47ed (IsA reconciliation equalization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reconditeness is a kind of wisdom", "pln": ["(: cnet_isa_ee9662b1b8 (IsA reconditeness wisdom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reconnaissance is a kind of intelligence", "pln": ["(: cnet_isa_ed8e10cb97 (IsA reconnaissance intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reconnaissance by fire is a kind of reconnaissance", "pln": ["(: cnet_isa_879759497d (IsA reconnaissance_by_fire reconnaissance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reconnaissance in force is a kind of reconnaissance", "pln": ["(: cnet_isa_47ced55222 (IsA reconnaissance_in_force reconnaissance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reconnaissance plane is a kind of airplane", "pln": ["(: cnet_isa_1814b91f30 (IsA reconnaissance_plane airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "reconnaissance plane is a kind of warplane", "pln": ["(: cnet_isa_b18f621600 (IsA reconnaissance_plane warplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reconnaissance vehicle is a kind of military vehicle", "pln": ["(: cnet_isa_956500436b (IsA reconnaissance_vehicle military_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reconnaissance vehicle is a kind of self propelled vehicle", "pln": ["(: cnet_isa_bcc9b7dec1 (IsA reconnaissance_vehicle self_propelled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reconsideration is a kind of reversal", "pln": ["(: cnet_isa_b936861034 (IsA reconsideration reversal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reconsideration is a kind of consideration", "pln": ["(: cnet_isa_93d17f1c7d (IsA reconsideration consideration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reconstruction is a kind of repair", "pln": ["(: cnet_isa_742027616f (IsA reconstruction repair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reconstruction is a kind of recall", "pln": ["(: cnet_isa_2f67d3bb50 (IsA reconstruction recall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reconstruction is a kind of interpretation", "pln": ["(: cnet_isa_1ec3b899e4 (IsA reconstruction interpretation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "record is a kind of accomplishment", "pln": ["(: cnet_isa_7cb4c4cbb3 (IsA record accomplishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "record is a kind of attainment", "pln": ["(: cnet_isa_04032ca386 (IsA record attainment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "record is a kind of fact", "pln": ["(: cnet_isa_3272055825 (IsA record fact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "record is a kind of document", "pln": ["(: cnet_isa_0dd929d1ae (IsA record document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "record is a kind of evidence", "pln": ["(: cnet_isa_61f9c7e50c (IsA record evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "record is a kind of number", "pln": ["(: cnet_isa_5a33d865d5 (IsA record number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "record breaker is a kind of champion", "pln": ["(: cnet_isa_e917693246 (IsA record_breaker champion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "record changer is a kind of mechanical device", "pln": ["(: cnet_isa_66b0523be1 (IsA record_changer mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "record company is a kind of company", "pln": ["(: cnet_isa_f670c4a79d (IsA record_company company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "record jacket is a kind of jacket", "pln": ["(: cnet_isa_2593890f65 (IsA record_jacket jacket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "record player is a kind of machine", "pln": ["(: cnet_isa_2cff448abc (IsA record_player machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "record sleeve is a kind of sleeve", "pln": ["(: cnet_isa_bc8afa524e (IsA record_sleeve sleeve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recorder is a kind of equipment", "pln": ["(: cnet_isa_084e4c2b58 (IsA recorder equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recorder is a kind of judge", "pln": ["(: cnet_isa_2f015732c0 (IsA recorder judge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recorder player is a kind of musician", "pln": ["(: cnet_isa_21caa7831e (IsA recorder_player musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recording is a kind of creating from raw material", "pln": ["(: cnet_isa_3628614c5e (IsA recording creating_from_raw_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recording is a kind of memory device", "pln": ["(: cnet_isa_60c685b45e (IsA recording memory_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recording is a kind of signal", "pln": ["(: cnet_isa_22d91bc9ea (IsA recording signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recording studio is a kind of studio", "pln": ["(: cnet_isa_f0605b08d3 (IsA recording_studio studio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recording system is a kind of audio system", "pln": ["(: cnet_isa_4796da7b3e (IsA recording_system audio_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recount is a kind of count", "pln": ["(: cnet_isa_9c83ce1c15 (IsA recount count) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recourse is a kind of aid", "pln": ["(: cnet_isa_b835abccea (IsA recourse aid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recourse is a kind of resource", "pln": ["(: cnet_isa_d7fc34557e (IsA recourse resource) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recovery is a kind of act", "pln": ["(: cnet_isa_30babc9175 (IsA recovery act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recovery is a kind of improvement", "pln": ["(: cnet_isa_9b4f64969f (IsA recovery improvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recovery room is a kind of hospital room", "pln": ["(: cnet_isa_bcecf2a611 (IsA recovery_room hospital_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recreation room is a kind of room", "pln": ["(: cnet_isa_322fa4e436 (IsA recreation_room room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recreational drug is a kind of narcotic", "pln": ["(: cnet_isa_23954bd12b (IsA recreational_drug narcotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recreational facility is a kind of facility", "pln": ["(: cnet_isa_da950f0a3d (IsA recreational_facility facility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recreational vehicle is a kind of self propelled vehicle", "pln": ["(: cnet_isa_23ee0a6e7d (IsA recreational_vehicle self_propelled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recrimination is a kind of accusation", "pln": ["(: cnet_isa_5510e88c06 (IsA recrimination accusation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "recrudescence is a kind of outbreak", "pln": ["(: cnet_isa_ac0d830bc9 (IsA recrudescence outbreak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "recruit is a kind of enlisted man", "pln": ["(: cnet_isa_b38fe596b8 (IsA recruit enlisted_man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recruit is a kind of newcomer", "pln": ["(: cnet_isa_2f2190defa (IsA recruit newcomer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recruiter is a kind of official", "pln": ["(: cnet_isa_12636722c9 (IsA recruiter official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recruiter is a kind of supplier", "pln": ["(: cnet_isa_9de1cebac5 (IsA recruiter supplier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "recruiting sergeant is a kind of recruiter", "pln": ["(: cnet_isa_7c107f3ce2 (IsA recruiting_sergeant recruiter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recruiting sergeant is a kind of sergeant", "pln": ["(: cnet_isa_0a7613c98a (IsA recruiting_sergeant sergeant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recruitment is a kind of accomplishment", "pln": ["(: cnet_isa_2f0d45f2c7 (IsA recruitment accomplishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rectal artery is a kind of artery", "pln": ["(: cnet_isa_5bf07fca1b (IsA rectal_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rectangle is a kind of figure", "pln": ["(: cnet_isa_2c8cd07d53 (IsA rectangle figure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rectangle is a kind of shape", "pln": ["(: cnet_isa_575f569368 (IsA rectangle shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rectangle is a kind of parallelogram", "pln": ["(: cnet_isa_b501fab493 (IsA rectangle parallelogram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rectangularity is a kind of angularity", "pln": ["(: cnet_isa_85c555e03f (IsA rectangularity angularity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rectification is a kind of determination", "pln": ["(: cnet_isa_ffec756d9d (IsA rectification determination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rectification is a kind of refining", "pln": ["(: cnet_isa_f59c161d47 (IsA rectification refining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rectification is a kind of conversion", "pln": ["(: cnet_isa_214e6b5dce (IsA rectification conversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rectifier is a kind of electrical device", "pln": ["(: cnet_isa_48faee43c6 (IsA rectifier electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rectifier is a kind of person", "pln": ["(: cnet_isa_2b8b25943b (IsA rectifier person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recto is a kind of page", "pln": ["(: cnet_isa_c1dec16b77 (IsA recto page) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rectocele is a kind of colpocele", "pln": ["(: cnet_isa_c304bb792e (IsA rectocele colpocele) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rectorship is a kind of position", "pln": ["(: cnet_isa_44abb59752 (IsA rectorship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rectum is a kind of body part", "pln": ["(: cnet_isa_9e02f7fb4a (IsA rectum body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rectus is a kind of muscle", "pln": ["(: cnet_isa_ce39139467 (IsA rectus muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recurrence is a kind of repeat", "pln": ["(: cnet_isa_ae6195f685 (IsA recurrence repeat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recursion is a kind of rule", "pln": ["(: cnet_isa_95d471f8af (IsA recursion rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recursive definition is a kind of definition", "pln": ["(: cnet_isa_a2a267f85b (IsA recursive_definition definition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recursive routine is a kind of routine", "pln": ["(: cnet_isa_ecfff26953 (IsA recursive_routine routine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "recurvirostra is a kind of bird genus", "pln": ["(: cnet_isa_63e3ff228f (IsA recurvirostra bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recurvirostridae is a kind of bird family", "pln": ["(: cnet_isa_e3c3ac9ac8 (IsA recurvirostridae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recusancy is a kind of direct action", "pln": ["(: cnet_isa_328aea31c2 (IsA recusancy direct_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recusation is a kind of disqualification", "pln": ["(: cnet_isa_3c3b141c26 (IsA recusation disqualification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recusation is a kind of objection", "pln": ["(: cnet_isa_de97796d05 (IsA recusation objection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recycling is a kind of use", "pln": ["(: cnet_isa_d3d015119e (IsA recycling use) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recycling is a kind of material", "pln": ["(: cnet_isa_5127615928 (IsA recycling material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recycling bin is a kind of bin", "pln": ["(: cnet_isa_285655c5d1 (IsA recycling_bin bin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "recycling plant is a kind of plant", "pln": ["(: cnet_isa_b53670355a (IsA recycling_plant plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red is a kind of color", "pln": ["(: cnet_isa_c4b3359a8a (IsA red color) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red is a kind of colour", "pln": ["(: cnet_isa_94a5f2620d (IsA red colour) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red is a kind of primary color", "pln": ["(: cnet_isa_b05b7538f4 (IsA red primary_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red is a kind of primary colour", "pln": ["(: cnet_isa_59889a9143 (IsA red primary_colour) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red is a kind of chromatic color", "pln": ["(: cnet_isa_14d7785909 (IsA red chromatic_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red admiral is a kind of nymphalid", "pln": ["(: cnet_isa_eba5e1b153 (IsA red_admiral nymphalid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red alder is a kind of alder", "pln": ["(: cnet_isa_e9a7687fce (IsA red_alder alder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red alert is a kind of alert", "pln": ["(: cnet_isa_0f55531020 (IsA red_alert alert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "red algae is a kind of alga", "pln": ["(: cnet_isa_03e7d257fe (IsA red_algae alga) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red angel s trumpet is a kind of shrub", "pln": ["(: cnet_isa_94cef63e3a (IsA red_angel_s_trumpet shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red ash is a kind of ash", "pln": ["(: cnet_isa_71e5aeb285 (IsA red_ash ash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red backed mouse is a kind of vole", "pln": ["(: cnet_isa_7e2ba1360f (IsA red_backed_mouse vole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red backed sandpiper is a kind of sandpiper", "pln": ["(: cnet_isa_7e42ac5d1c (IsA red_backed_sandpiper sandpiper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red baneberry is a kind of baneberry", "pln": ["(: cnet_isa_34cdfee0d8 (IsA red_baneberry baneberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red bat is a kind of vespertilian bat", "pln": ["(: cnet_isa_93c26ffda2 (IsA red_bat vespertilian_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red beech is a kind of angiospermous tree", "pln": ["(: cnet_isa_c5554848f0 (IsA red_beech angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "red bellied snake is a kind of colubrid snake", "pln": ["(: cnet_isa_d8b85a9db5 (IsA red_bellied_snake colubrid_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "red bellied terrapin is a kind of turtle", "pln": ["(: cnet_isa_fa456e55ff (IsA red_bellied_terrapin turtle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red blood cell is a kind of blood cell", "pln": ["(: cnet_isa_435475b2a5 (IsA red_blood_cell blood_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red brass is a kind of brass", "pln": ["(: cnet_isa_a90f9aac19 (IsA red_brass brass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red breasted merganser is a kind of merganser", "pln": ["(: cnet_isa_efebba3ea6 (IsA red_breasted_merganser merganser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red breasted nuthatch is a kind of nuthatch", "pln": ["(: cnet_isa_e74713bb7c (IsA red_breasted_nuthatch nuthatch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "red breasted sapsucker is a kind of sapsucker", "pln": ["(: cnet_isa_1db8a164ac (IsA red_breasted_sapsucker sapsucker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red breasted snipe is a kind of dowitcher", "pln": ["(: cnet_isa_b58858f05c (IsA red_breasted_snipe dowitcher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red bryony is a kind of bryony", "pln": ["(: cnet_isa_ef81975e41 (IsA red_bryony bryony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red buckeye is a kind of horse chestnut", "pln": ["(: cnet_isa_aeb78f8ab5 (IsA red_buckeye horse_chestnut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red cabbage is a kind of head cabbage", "pln": ["(: cnet_isa_afb4cab0be (IsA red_cabbage head_cabbage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red campion is a kind of silene", "pln": ["(: cnet_isa_057700b028 (IsA red_campion silene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "red carpet is a kind of rug", "pln": ["(: cnet_isa_de0fc1c811 (IsA red_carpet rug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "red cedar is a kind of cedar", "pln": ["(: cnet_isa_4595d97082 (IsA red_cedar cedar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red clay is a kind of clay", "pln": ["(: cnet_isa_422c4cbd47 (IsA red_clay clay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red clay is a kind of mineral", "pln": ["(: cnet_isa_693144764e (IsA red_clay mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red clintonia is a kind of clintonia", "pln": ["(: cnet_isa_a3620e82d8 (IsA red_clintonia clintonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red clover is a kind of clover", "pln": ["(: cnet_isa_b95c4059a4 (IsA red_clover clover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red coral is a kind of gorgonian", "pln": ["(: cnet_isa_5ccf07e7ba (IsA red_coral gorgonian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red cross is a kind of nongovernmental organization", "pln": ["(: cnet_isa_5d149f2534 (IsA red_cross nongovernmental_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red currant is a kind of currant", "pln": ["(: cnet_isa_a8493113ce (IsA red_currant currant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red deer is a kind of deer", "pln": ["(: cnet_isa_32e2284c3d (IsA red_deer deer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "red delicious is a kind of delicious", "pln": ["(: cnet_isa_17ec599afd (IsA red_delicious delicious) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "red drum is a kind of drum", "pln": ["(: cnet_isa_b637eddf14 (IsA red_drum drum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red dwarf is a kind of star", "pln": ["(: cnet_isa_bd71adc10e (IsA red_dwarf star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red eft is a kind of newt", "pln": ["(: cnet_isa_30bb645165 (IsA red_eft newt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "red eyed vireo is a kind of vireo", "pln": ["(: cnet_isa_21e61ed263 (IsA red_eyed_vireo vireo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red fire is a kind of fuel", "pln": ["(: cnet_isa_44a15d4f76 (IsA red_fire fuel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red flag is a kind of annoyance", "pln": ["(: cnet_isa_083dfae432 (IsA red_flag annoyance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red flag is a kind of alarm", "pln": ["(: cnet_isa_cf95e3932a (IsA red_flag alarm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red flag is a kind of emblem", "pln": ["(: cnet_isa_98fcd03aa1 (IsA red_flag emblem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red flag is a kind of flag", "pln": ["(: cnet_isa_133bd507fc (IsA red_flag flag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red flowered silky oak is a kind of silk oak", "pln": ["(: cnet_isa_24f5d6e919 (IsA red_flowered_silky_oak silk_oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "red fox is a kind of fox", "pln": ["(: cnet_isa_28a8d96e29 (IsA red_fox fox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red fox is a kind of herb", "pln": ["(: cnet_isa_883e0c18eb (IsA red_fox herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red giant is a kind of star", "pln": ["(: cnet_isa_e08c7fe21e (IsA red_giant star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red ginger is a kind of ginger", "pln": ["(: cnet_isa_fe4767cd20 (IsA red_ginger ginger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red goatfish is a kind of goatfish", "pln": ["(: cnet_isa_93176a2774 (IsA red_goatfish goatfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red goosefoot is a kind of goosefoot", "pln": ["(: cnet_isa_0b7f7c63ae (IsA red_goosefoot goosefoot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red green dichromacy is a kind of dichromacy", "pln": ["(: cnet_isa_4a06859d11 (IsA red_green_dichromacy dichromacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red grouse is a kind of ptarmigan", "pln": ["(: cnet_isa_1b2a0b6446 (IsA red_grouse ptarmigan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red guard is a kind of political movement", "pln": ["(: cnet_isa_dcbf62de42 (IsA red_guard political_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red gum is a kind of eucalyptus", "pln": ["(: cnet_isa_fd5c619ff1 (IsA red_gum eucalyptus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red haw is a kind of hawthorn", "pln": ["(: cnet_isa_a945f531f9 (IsA red_haw hawthorn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red helleborine is a kind of helleborine", "pln": ["(: cnet_isa_ce1e6ccaff (IsA red_helleborine helleborine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red herring is a kind of diversion", "pln": ["(: cnet_isa_6c6e9c29c0 (IsA red_herring diversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "red herring is a kind of herring", "pln": ["(: cnet_isa_e19eec44de (IsA red_herring herring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "red maids is a kind of wildflower", "pln": ["(: cnet_isa_8463dc6617 (IsA red_maids wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red hot poker is a kind of poker plant", "pln": ["(: cnet_isa_4adb3da4f1 (IsA red_hot_poker poker_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red jungle fowl is a kind of jungle fowl", "pln": ["(: cnet_isa_8f96a95d00 (IsA red_jungle_fowl jungle_fowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red kauri is a kind of kauri pine", "pln": ["(: cnet_isa_b8cd62c9e8 (IsA red_kauri kauri_pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red lauan is a kind of dipterocarp", "pln": ["(: cnet_isa_6d5f7a18ae (IsA red_lauan dipterocarp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red lauan is a kind of wood", "pln": ["(: cnet_isa_7df5bfd5fc (IsA red_lauan wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red laver is a kind of red algae", "pln": ["(: cnet_isa_fcdc69ca00 (IsA red_laver red_algae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red lead is a kind of oxide", "pln": ["(: cnet_isa_4f80adea39 (IsA red_lead oxide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red lead putty is a kind of cement", "pln": ["(: cnet_isa_9101bc7309 (IsA red_lead_putty cement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red legged partridge is a kind of partridge", "pln": ["(: cnet_isa_cee979158d (IsA red_legged_partridge partridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red letter day is a kind of day", "pln": ["(: cnet_isa_71491902df (IsA red_letter_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red light is a kind of traffic light", "pln": ["(: cnet_isa_83e929cf1f (IsA red_light traffic_light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red light is a kind of visual signal", "pln": ["(: cnet_isa_2e1fee3281 (IsA red_light visual_signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red light district is a kind of city district", "pln": ["(: cnet_isa_bf3434e99d (IsA red_light_district city_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red line is a kind of line", "pln": ["(: cnet_isa_4eb501c2cc (IsA red_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red maid is a kind of wildflower", "pln": ["(: cnet_isa_1c54785baf (IsA red_maid wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red man is a kind of native american", "pln": ["(: cnet_isa_95fa14dc78 (IsA red_man native_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red maple is a kind of maple", "pln": ["(: cnet_isa_3e5ec76e37 (IsA red_maple maple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red marrow is a kind of marrow", "pln": ["(: cnet_isa_47874616fa (IsA red_marrow marrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red meat is a kind of meat", "pln": ["(: cnet_isa_b756f8d3e0 (IsA red_meat meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red morning glory is a kind of morning glory", "pln": ["(: cnet_isa_9019308f1b (IsA red_morning_glory morning_glory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red mulberry is a kind of mulberry", "pln": ["(: cnet_isa_7d895ce7cd (IsA red_mulberry mulberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red necked grebe is a kind of grebe", "pln": ["(: cnet_isa_8f2505058c (IsA red_necked_grebe grebe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red oak is a kind of oak", "pln": ["(: cnet_isa_c0b6bf5d9c (IsA red_oak oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red osier is a kind of dogwood", "pln": ["(: cnet_isa_b268c551d0 (IsA red_osier dogwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red phalarope is a kind of phalarope", "pln": ["(: cnet_isa_8f1c6649f2 (IsA red_phalarope phalarope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red pine is a kind of pine", "pln": ["(: cnet_isa_f246cb913d (IsA red_pine pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red poll is a kind of cattle", "pln": ["(: cnet_isa_f6fecf98f7 (IsA red_poll cattle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red porgy is a kind of porgy", "pln": ["(: cnet_isa_f130bed338 (IsA red_porgy porgy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red raspberry is a kind of raspberry", "pln": ["(: cnet_isa_a2c9d8e9ed (IsA red_raspberry raspberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red rockfish is a kind of rockfish", "pln": ["(: cnet_isa_a198adf7ef (IsA red_rockfish rockfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red rockfish is a kind of saltwater fish", "pln": ["(: cnet_isa_237a2318de (IsA red_rockfish saltwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red salmon is a kind of salmon", "pln": ["(: cnet_isa_387ac3a0cd (IsA red_salmon salmon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red sandalwood is a kind of tree", "pln": ["(: cnet_isa_758d358e4e (IsA red_sandalwood tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red scare is a kind of panic", "pln": ["(: cnet_isa_7d51c8000a (IsA red_scare panic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red shafted flicker is a kind of flicker", "pln": ["(: cnet_isa_b1f0c18deb (IsA red_shafted_flicker flicker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "red shift is a kind of propagation", "pln": ["(: cnet_isa_65a0918f06 (IsA red_shift propagation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red shouldered hawk is a kind of hawk", "pln": ["(: cnet_isa_8667cb8c9e (IsA red_shouldered_hawk hawk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "red shrubby penstemon is a kind of shrub", "pln": ["(: cnet_isa_30f87cdc39 (IsA red_shrubby_penstemon shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red silk cotton is a kind of plant fiber", "pln": ["(: cnet_isa_21d50b232c (IsA red_silk_cotton plant_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "red silk cotton tree is a kind of tree", "pln": ["(: cnet_isa_5272b67c30 (IsA red_silk_cotton_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red siskin is a kind of finch", "pln": ["(: cnet_isa_78dd77aed6 (IsA red_siskin finch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red skinned onion is a kind of onion", "pln": ["(: cnet_isa_390b9b506b (IsA red_skinned_onion onion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red sky at night is a kind of sailor s delight", "pln": ["(: cnet_isa_e9d5b234ce (IsA red_sky_at_night sailor_s_delight) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red snapper is a kind of snapper", "pln": ["(: cnet_isa_3d84d091d3 (IsA red_snapper snapper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red spider is a kind of spider mite", "pln": ["(: cnet_isa_042ba4ae53 (IsA red_spider spider_mite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red spotted purple is a kind of nymphalid", "pln": ["(: cnet_isa_9f716b343b (IsA red_spotted_purple nymphalid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red spruce is a kind of spruce", "pln": ["(: cnet_isa_bf61c46429 (IsA red_spruce spruce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red squirrel is a kind of tree squirrel", "pln": ["(: cnet_isa_fcf5c94ec4 (IsA red_squirrel tree_squirrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red tai is a kind of tai", "pln": ["(: cnet_isa_45fe597b66 (IsA red_tai tai) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red tide is a kind of seawater", "pln": ["(: cnet_isa_a3bd10e1c2 (IsA red_tide seawater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "red trillium is a kind of trillium", "pln": ["(: cnet_isa_854bfe0212 (IsA red_trillium trillium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "red underwing is a kind of underwing", "pln": ["(: cnet_isa_39d300ec90 (IsA red_underwing underwing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red valerian is a kind of flower", "pln": ["(: cnet_isa_19a4a68343 (IsA red_valerian flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red water is a kind of animal disease", "pln": ["(: cnet_isa_c0334450f9 (IsA red_water animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red wine is a kind of wine", "pln": ["(: cnet_isa_2499f93e93 (IsA red_wine wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red winged blackbird is a kind of new world blackbird", "pln": ["(: cnet_isa_e999338bff (IsA red_winged_blackbird new_world_blackbird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "red wolf is a kind of wolf", "pln": ["(: cnet_isa_ab0db4921e (IsA red_wolf wolf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redact is a kind of editor", "pln": ["(: cnet_isa_9ec9d1a163 (IsA redact editor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redaction is a kind of writing", "pln": ["(: cnet_isa_d5d5ee6a20 (IsA redaction writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redberry is a kind of buckthorn", "pln": ["(: cnet_isa_12da1d89b1 (IsA redberry buckthorn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redbone is a kind of hound", "pln": ["(: cnet_isa_d697daccbc (IsA redbone hound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redbook is a kind of magazine", "pln": ["(: cnet_isa_5345740cc2 (IsA redbook magazine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redbrick university is a kind of university", "pln": ["(: cnet_isa_139833c2c9 (IsA redbrick_university university) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redbud is a kind of angiospermous tree", "pln": ["(: cnet_isa_e33f4f41e7 (IsA redbud angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "redcap is a kind of military policeman", "pln": ["(: cnet_isa_47c993ff69 (IsA redcap military_policeman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "redcap is a kind of porter", "pln": ["(: cnet_isa_90307294a4 (IsA redcap porter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redcoat is a kind of soldier", "pln": ["(: cnet_isa_34c5ff88f0 (IsA redcoat soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "reddish brown is a kind of brown", "pln": ["(: cnet_isa_1545a5194d (IsA reddish_brown brown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reddish orange is a kind of orange", "pln": ["(: cnet_isa_6a016d27c7 (IsA reddish_orange orange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reddish purple is a kind of purple", "pln": ["(: cnet_isa_0577e3b248 (IsA reddish_purple purple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rededication is a kind of dedication", "pln": ["(: cnet_isa_9e7372a115 (IsA rededication dedication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redeemer is a kind of money handler", "pln": ["(: cnet_isa_d08b2b98bd (IsA redeemer money_handler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "redefinition is a kind of definition", "pln": ["(: cnet_isa_aab0fb610e (IsA redefinition definition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redemption is a kind of purchase", "pln": ["(: cnet_isa_e65ee99086 (IsA redemption purchase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "redemption is a kind of repayment", "pln": ["(: cnet_isa_83792b6f32 (IsA redemption repayment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redemption is a kind of rescue", "pln": ["(: cnet_isa_ae1ce26aaf (IsA redemption rescue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redeployment is a kind of deployment", "pln": ["(: cnet_isa_72dc9073b1 (IsA redeployment deployment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redeposition is a kind of deposition", "pln": ["(: cnet_isa_2bde9d1558 (IsA redeposition deposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redetermination is a kind of determination", "pln": ["(: cnet_isa_ae3f9da194 (IsA redetermination determination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redevelopment authority is a kind of administrative unit", "pln": ["(: cnet_isa_17877c5434 (IsA redevelopment_authority administrative_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "redeye is a kind of flight", "pln": ["(: cnet_isa_a41322499b (IsA redeye flight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redfin pickerel is a kind of pickerel", "pln": ["(: cnet_isa_088f80df73 (IsA redfin_pickerel pickerel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redfish is a kind of salmon", "pln": ["(: cnet_isa_9e517dfbba (IsA redfish salmon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redfish is a kind of rockfish", "pln": ["(: cnet_isa_bad007f394 (IsA redfish rockfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redhead is a kind of duck", "pln": ["(: cnet_isa_57b62628a2 (IsA redhead duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redhead is a kind of person", "pln": ["(: cnet_isa_4d71067db9 (IsA redhead person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redheaded woodpecker is a kind of woodpecker", "pln": ["(: cnet_isa_8656a29026 (IsA redheaded_woodpecker woodpecker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "redhorse is a kind of sucker", "pln": ["(: cnet_isa_8165de0d29 (IsA redhorse sucker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rediffusion is a kind of broadcasting", "pln": ["(: cnet_isa_dc20f2aaeb (IsA rediffusion broadcasting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redirect examination is a kind of interrogation", "pln": ["(: cnet_isa_43e2b3c80e (IsA redirect_examination interrogation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rediscovery is a kind of discovery", "pln": ["(: cnet_isa_5eb070c372 (IsA rediscovery discovery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redistribution is a kind of distribution", "pln": ["(: cnet_isa_bf596e1a27 (IsA redistribution distribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redneck is a kind of rustic", "pln": ["(: cnet_isa_5649fcc579 (IsA redneck rustic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redoubt is a kind of stronghold", "pln": ["(: cnet_isa_8a1da5cf60 (IsA redoubt stronghold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redoubt is a kind of fortification", "pln": ["(: cnet_isa_c8443dd830 (IsA redoubt fortification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redpoll is a kind of finch", "pln": ["(: cnet_isa_db191b84a8 (IsA redpoll finch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redraft is a kind of draft", "pln": ["(: cnet_isa_35c6397384 (IsA redraft draft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redress is a kind of correction", "pln": ["(: cnet_isa_f3e498a2a5 (IsA redress correction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redshank is a kind of sandpiper", "pln": ["(: cnet_isa_68369ffa40 (IsA redshank sandpiper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redstart is a kind of thrush", "pln": ["(: cnet_isa_492836d01a (IsA redstart thrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redstem storksbill is a kind of storksbill", "pln": ["(: cnet_isa_91e9b3676f (IsA redstem_storksbill storksbill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redtail is a kind of hawk", "pln": ["(: cnet_isa_d5166a5c6e (IsA redtail hawk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reduced instruction set computing is a kind of computer architecture", "pln": ["(: cnet_isa_c215824932 (IsA reduced_instruction_set_computing computer_architecture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reducer is a kind of pipefitting", "pln": ["(: cnet_isa_08e9174b29 (IsA reducer pipefitting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reducing is a kind of loss", "pln": ["(: cnet_isa_e5aab4bb80 (IsA reducing loss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reducing agent is a kind of chemical agent", "pln": ["(: cnet_isa_6133cfe890 (IsA reducing_agent chemical_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reducing diet is a kind of diet", "pln": ["(: cnet_isa_db66a4f01f (IsA reducing_diet diet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reductase is a kind of enzyme", "pln": ["(: cnet_isa_ba756baa1c (IsA reductase enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reductio ad absurdum is a kind of disproof", "pln": ["(: cnet_isa_26c8d700af (IsA reductio_ad_absurdum disproof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reduction is a kind of chemical reaction", "pln": ["(: cnet_isa_d36051f606 (IsA reduction chemical_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reduction is a kind of change", "pln": ["(: cnet_isa_71998cfcab (IsA reduction change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reduction gear is a kind of gearing", "pln": ["(: cnet_isa_89622e8f01 (IsA reduction_gear gearing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reductionism is a kind of analysis", "pln": ["(: cnet_isa_7c48da1344 (IsA reductionism analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reductionism is a kind of theory", "pln": ["(: cnet_isa_073218bc21 (IsA reductionism theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redundancy is a kind of repetition", "pln": ["(: cnet_isa_43c6c7faa2 (IsA redundancy repetition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redundancy is a kind of overplus", "pln": ["(: cnet_isa_73065b09b9 (IsA redundancy overplus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redundancy is a kind of repetitiveness", "pln": ["(: cnet_isa_1f2270e0c6 (IsA redundancy repetitiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redundancy is a kind of configuration", "pln": ["(: cnet_isa_1ded93eee5 (IsA redundancy configuration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reduplication is a kind of repetition", "pln": ["(: cnet_isa_672bde9b96 (IsA reduplication repetition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reduplication is a kind of syllable", "pln": ["(: cnet_isa_5ca71f82c5 (IsA reduplication syllable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reduplication is a kind of word", "pln": ["(: cnet_isa_ff4c973c29 (IsA reduplication word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reduviidae is a kind of arthropod family", "pln": ["(: cnet_isa_1f9d545cae (IsA reduviidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redwing is a kind of thrush", "pln": ["(: cnet_isa_88bc291712 (IsA redwing thrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "redwood is a kind of wood", "pln": ["(: cnet_isa_4f22ffc961 (IsA redwood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reebok is a kind of brand of shoe", "pln": ["(: cnet_isa_59c033ee81 (IsA reebok brand_of_shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reed is a kind of vibrator", "pln": ["(: cnet_isa_9271e2246c (IsA reed vibrator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reed is a kind of gramineous plant", "pln": ["(: cnet_isa_74d6741833 (IsA reed gramineous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reed bunting is a kind of bunting", "pln": ["(: cnet_isa_784522fe4e (IsA reed_bunting bunting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reed canary grass is a kind of grass", "pln": ["(: cnet_isa_9886834842 (IsA reed_canary_grass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reed grass is a kind of grass", "pln": ["(: cnet_isa_c84efbebf2 (IsA reed_grass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reed meadow grass is a kind of manna grass", "pln": ["(: cnet_isa_f85df37069 (IsA reed_meadow_grass manna_grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reed pipe is a kind of organ pipe", "pln": ["(: cnet_isa_82a0964bc5 (IsA reed_pipe organ_pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reed rhapis is a kind of lady palm", "pln": ["(: cnet_isa_667b78ab8a (IsA reed_rhapis lady_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reed section is a kind of section", "pln": ["(: cnet_isa_28a4d798c6 (IsA reed_section section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reed stop is a kind of organ stop", "pln": ["(: cnet_isa_55bd5b4a4d (IsA reed_stop organ_stop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reef is a kind of strip", "pln": ["(: cnet_isa_6f236e1355 (IsA reef strip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reef is a kind of ridge", "pln": ["(: cnet_isa_ce6e234a22 (IsA reef ridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reef knot is a kind of square knot", "pln": ["(: cnet_isa_4090b06641 (IsA reef_knot square_knot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reef squirrelfish is a kind of squirrelfish", "pln": ["(: cnet_isa_a0f3d1fe2d (IsA reef_squirrelfish squirrelfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reel is a kind of square dance", "pln": ["(: cnet_isa_00f926345f (IsA reel square_dance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "reel is a kind of film", "pln": ["(: cnet_isa_511ee1a303 (IsA reel film) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reel is a kind of winder", "pln": ["(: cnet_isa_fe4cf2073c (IsA reel winder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reel is a kind of dance music", "pln": ["(: cnet_isa_b7808f1526 (IsA reel dance_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reelection is a kind of election", "pln": ["(: cnet_isa_7749fb39c4 (IsA reelection election) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reeler is a kind of folk dancer", "pln": ["(: cnet_isa_735a735aed (IsA reeler folk_dancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reenactment is a kind of acting", "pln": ["(: cnet_isa_7c3dfcde62 (IsA reenactment acting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reenactor is a kind of actor", "pln": ["(: cnet_isa_9f327f816d (IsA reenactor actor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reenlistment is a kind of enlistment", "pln": ["(: cnet_isa_faa70da5f3 (IsA reenlistment enlistment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reentrant angle is a kind of interior angle", "pln": ["(: cnet_isa_61939c63cf (IsA reentrant_angle interior_angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reentrant polygon is a kind of concave polygon", "pln": ["(: cnet_isa_1a7c6b8c23 (IsA reentrant_polygon concave_polygon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reentry is a kind of return", "pln": ["(: cnet_isa_71dc157ab3 (IsA reentry return) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reevaluation is a kind of evaluation", "pln": ["(: cnet_isa_8cf9fa5415 (IsA reevaluation evaluation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reeve is a kind of ruff", "pln": ["(: cnet_isa_5f028872e3 (IsA reeve ruff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refection is a kind of meal", "pln": ["(: cnet_isa_5ae97ae45e (IsA refection meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refectory is a kind of dining hall", "pln": ["(: cnet_isa_42757ab7a6 (IsA refectory dining_hall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refectory table is a kind of dining table", "pln": ["(: cnet_isa_87b8387f2f (IsA refectory_table dining_table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "referee is a kind of lawyer", "pln": ["(: cnet_isa_ae7857b9c1 (IsA referee lawyer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "referee is a kind of official", "pln": ["(: cnet_isa_64db57c8ff (IsA referee official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reference is a kind of action", "pln": ["(: cnet_isa_13ab598f61 (IsA reference action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reference is a kind of meaning", "pln": ["(: cnet_isa_33ec3751f9 (IsA reference meaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reference is a kind of publication", "pln": ["(: cnet_isa_67cf7f96d0 (IsA reference publication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "reference book is a kind of book", "pln": ["(: cnet_isa_06ebcb894f (IsA reference_book book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "reference grid is a kind of grid", "pln": ["(: cnet_isa_05e6ab1e80 (IsA reference_grid grid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reference manual is a kind of manual", "pln": ["(: cnet_isa_b04637f350 (IsA reference_manual manual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reference point is a kind of indicator", "pln": ["(: cnet_isa_dc4ea1b288 (IsA reference_point indicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "referendum is a kind of vote", "pln": ["(: cnet_isa_95eb917c05 (IsA referendum vote) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "referent is a kind of meaning", "pln": ["(: cnet_isa_99ac443ef0 (IsA referent meaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "referent is a kind of term", "pln": ["(: cnet_isa_41a2135bde (IsA referent term) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "referral is a kind of forwarding", "pln": ["(: cnet_isa_f0f61a0991 (IsA referral forwarding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "referral is a kind of recommendation", "pln": ["(: cnet_isa_7ed6b2db1a (IsA referral recommendation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "referral is a kind of case", "pln": ["(: cnet_isa_391119ba6a (IsA referral case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "referred pain is a kind of pain", "pln": ["(: cnet_isa_0c9a69bd71 (IsA referred_pain pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refill is a kind of merchandise", "pln": ["(: cnet_isa_06bf01d3db (IsA refill merchandise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refill is a kind of prescription drug", "pln": ["(: cnet_isa_3f8f91b641 (IsA refill prescription_drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refilling is a kind of filling", "pln": ["(: cnet_isa_3e655d3c85 (IsA refilling filling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "refinement is a kind of excellence", "pln": ["(: cnet_isa_8adb669358 (IsA refinement excellence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refinement is a kind of improvement", "pln": ["(: cnet_isa_7470e0cc3e (IsA refinement improvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refiner is a kind of skilled worker", "pln": ["(: cnet_isa_e3efca8019 (IsA refiner skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refinery is a kind of plant", "pln": ["(: cnet_isa_8f28160ffc (IsA refinery plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refining is a kind of processing", "pln": ["(: cnet_isa_7e8147795a (IsA refining processing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refinisher is a kind of skilled worker", "pln": ["(: cnet_isa_8c0a2025dc (IsA refinisher skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refit is a kind of outfitting", "pln": ["(: cnet_isa_789ec70b4d (IsA refit outfitting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "reflation is a kind of inflation", "pln": ["(: cnet_isa_d1d756a881 (IsA reflation inflation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reflecting telescope is a kind of optical telescope", "pln": ["(: cnet_isa_4492d80488 (IsA reflecting_telescope optical_telescope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reflection is a kind of ikon", "pln": ["(: cnet_isa_293aac05e1 (IsA reflection ikon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reflection is a kind of physical property", "pln": ["(: cnet_isa_14b5c9a4b9 (IsA reflection physical_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reflection is a kind of transformation", "pln": ["(: cnet_isa_4f8c0a82bb (IsA reflection transformation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "reflection is a kind of physical phenomenon", "pln": ["(: cnet_isa_53b169350c (IsA reflection physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reflective surface is a kind of surface", "pln": ["(: cnet_isa_d9cf41ead5 (IsA reflective_surface surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "reflectiveness is a kind of thoughtfulness", "pln": ["(: cnet_isa_538d05cbd5 (IsA reflectiveness thoughtfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reflectometer is a kind of meter", "pln": ["(: cnet_isa_6c45b24c59 (IsA reflectometer meter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reflector is a kind of device", "pln": ["(: cnet_isa_4117f67b44 (IsA reflector device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "reflex is a kind of reaction", "pln": ["(: cnet_isa_8914df7b69 (IsA reflex reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reflex angle is a kind of angle", "pln": ["(: cnet_isa_39bf9652b3 (IsA reflex_angle angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reflex arc is a kind of neural structure", "pln": ["(: cnet_isa_c2003a6e46 (IsA reflex_arc neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reflex camera is a kind of camera", "pln": ["(: cnet_isa_f785d27a42 (IsA reflex_camera camera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reflex epilepsy is a kind of epilepsy", "pln": ["(: cnet_isa_9f02123651 (IsA reflex_epilepsy epilepsy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reflexive pronoun is a kind of personal pronoun", "pln": ["(: cnet_isa_5ecac8b0a1 (IsA reflexive_pronoun personal_pronoun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reflexive verb is a kind of verb", "pln": ["(: cnet_isa_d3a36dce71 (IsA reflexive_verb verb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reflexivity is a kind of coreference", "pln": ["(: cnet_isa_f6ffeb0c59 (IsA reflexivity coreference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reflexivity is a kind of logical relation", "pln": ["(: cnet_isa_f267f20679 (IsA reflexivity logical_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "reflexivity is a kind of mathematical relation", "pln": ["(: cnet_isa_672f52f69c (IsA reflexivity mathematical_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reflexology is a kind of massage", "pln": ["(: cnet_isa_83c21bc422 (IsA reflexology massage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reflexology is a kind of behaviorism", "pln": ["(: cnet_isa_666fc3cece (IsA reflexology behaviorism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reflux is a kind of pathology", "pln": ["(: cnet_isa_f4aae5e32f (IsA reflux pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reflux condenser is a kind of condenser", "pln": ["(: cnet_isa_4e377ed10c (IsA reflux_condenser condenser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refocusing is a kind of focalization", "pln": ["(: cnet_isa_3b4f1a2ce3 (IsA refocusing focalization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reforestation is a kind of reclamation", "pln": ["(: cnet_isa_2484763a2d (IsA reforestation reclamation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reform is a kind of campaign", "pln": ["(: cnet_isa_6887c4fae2 (IsA reform campaign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reform is a kind of improvement", "pln": ["(: cnet_isa_038250375e (IsA reform improvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reform is a kind of self improvement", "pln": ["(: cnet_isa_d40e81ea2b (IsA reform self_improvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reform jew is a kind of israelite", "pln": ["(: cnet_isa_42efae5ea1 (IsA reform_jew israelite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reform judaism is a kind of judaism", "pln": ["(: cnet_isa_585d592c15 (IsA reform_judaism judaism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reform movement is a kind of movement", "pln": ["(: cnet_isa_e7bc9b3409 (IsA reform_movement movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reformation is a kind of religious movement", "pln": ["(: cnet_isa_87b30e2742 (IsA reformation religious_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reformation is a kind of improvement", "pln": ["(: cnet_isa_a19aad0468 (IsA reformation improvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reformatory is a kind of correctional institution", "pln": ["(: cnet_isa_dc4d118697 (IsA reformatory correctional_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reformer is a kind of apparatus", "pln": ["(: cnet_isa_5cda3168aa (IsA reformer apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reformer is a kind of disputant", "pln": ["(: cnet_isa_68722e50bc (IsA reformer disputant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "reformism is a kind of doctrine", "pln": ["(: cnet_isa_257c717f5d (IsA reformism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refracting telescope is a kind of optical telescope", "pln": ["(: cnet_isa_aab1f54dd6 (IsA refracting_telescope optical_telescope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refraction is a kind of physical phenomenon", "pln": ["(: cnet_isa_7d540a482e (IsA refraction physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refractive index is a kind of ratio", "pln": ["(: cnet_isa_2a2e906ac0 (IsA refractive_index ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refractivity is a kind of deflection", "pln": ["(: cnet_isa_d2dd63b569 (IsA refractivity deflection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refractometer is a kind of measuring instrument", "pln": ["(: cnet_isa_d9fa866781 (IsA refractometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refractoriness is a kind of intractability", "pln": ["(: cnet_isa_cd0e72e523 (IsA refractoriness intractability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refractory anemia is a kind of anemia", "pln": ["(: cnet_isa_b5d0cc21ac (IsA refractory_anemia anemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refractory period is a kind of biological time", "pln": ["(: cnet_isa_b9773ac55f (IsA refractory_period biological_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refrain is a kind of music", "pln": ["(: cnet_isa_f281ac773d (IsA refrain music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refresher is a kind of beverage", "pln": ["(: cnet_isa_e671fe49c8 (IsA refresher beverage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refresher is a kind of legal fee", "pln": ["(: cnet_isa_7d54fe4d3c (IsA refresher legal_fee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refresher course is a kind of course", "pln": ["(: cnet_isa_448745f750 (IsA refresher_course course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refreshment is a kind of rejuvenation", "pln": ["(: cnet_isa_2b9fd4f477 (IsA refreshment rejuvenation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refreshment is a kind of bite", "pln": ["(: cnet_isa_ba0b3cef0e (IsA refreshment bite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refried bean is a kind of dish", "pln": ["(: cnet_isa_d87e743f66 (IsA refried_bean dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refrigerant is a kind of substance", "pln": ["(: cnet_isa_a3249a4152 (IsA refrigerant substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refrigeration is a kind of therapy", "pln": ["(: cnet_isa_b9850f31c1 (IsA refrigeration therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refrigeration is a kind of cooling", "pln": ["(: cnet_isa_10c07fc628 (IsA refrigeration cooling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refrigeration is a kind of preservation", "pln": ["(: cnet_isa_aa64cd9cc0 (IsA refrigeration preservation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refrigeration system is a kind of cooling system", "pln": ["(: cnet_isa_9287f51cf4 (IsA refrigeration_system cooling_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refrigerator is a kind of electronic appliance", "pln": ["(: cnet_isa_4bf89f3fe7 (IsA refrigerator electronic_appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refrigerator is a kind of machine", "pln": ["(: cnet_isa_9ca150dbf1 (IsA refrigerator machine) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refrigerator is a kind of white good", "pln": ["(: cnet_isa_0dc074cc96 (IsA refrigerator white_good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refrigerator car is a kind of freight car", "pln": ["(: cnet_isa_0ce56d30b8 (IsA refrigerator_car freight_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refrigerator cookie is a kind of cookie", "pln": ["(: cnet_isa_3cb92f2db0 (IsA refrigerator_cookie cookie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refuge is a kind of shelter", "pln": ["(: cnet_isa_a6c50dfec4 (IsA refuge shelter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refugee is a kind of exile", "pln": ["(: cnet_isa_a5a7e44edc (IsA refugee exile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "refund is a kind of payment", "pln": ["(: cnet_isa_206d509223 (IsA refund payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refusal is a kind of denial", "pln": ["(: cnet_isa_e2ed28525d (IsA refusal denial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refusal is a kind of message", "pln": ["(: cnet_isa_d5bc0df753 (IsA refusal message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "refutation is a kind of answer", "pln": ["(: cnet_isa_f49c615158 (IsA refutation answer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regalecidae is a kind of fish family", "pln": ["(: cnet_isa_a29782afcd (IsA regalecidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regalia is a kind of gear", "pln": ["(: cnet_isa_e8f3ccff4e (IsA regalia gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regard is a kind of greeting", "pln": ["(: cnet_isa_8c67753767 (IsA regard greeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regard is a kind of affection", "pln": ["(: cnet_isa_1d87e10013 (IsA regard affection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regatta is a kind of meet", "pln": ["(: cnet_isa_d82a690ee1 (IsA regatta meet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regency is a kind of position", "pln": ["(: cnet_isa_2670c39a61 (IsA regency position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regency is a kind of rule", "pln": ["(: cnet_isa_c44438a982 (IsA regency rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regeneration is a kind of revival", "pln": ["(: cnet_isa_949f31a5f4 (IsA regeneration revival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regeneration is a kind of organic process", "pln": ["(: cnet_isa_9af2c14a43 (IsA regeneration organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "regent is a kind of committee member", "pln": ["(: cnet_isa_ca251d4631 (IsA regent committee_member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regent is a kind of ruler", "pln": ["(: cnet_isa_7983359b2d (IsA regent ruler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reggae is a kind of popular music", "pln": ["(: cnet_isa_12609ad06d (IsA reggae popular_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regicide is a kind of murder", "pln": ["(: cnet_isa_cfe787b9be (IsA regicide murder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regicide is a kind of killer", "pln": ["(: cnet_isa_6e81fe8057 (IsA regicide killer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regimen is a kind of plan", "pln": ["(: cnet_isa_0d4c623e27 (IsA regimen plan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regiment is a kind of army unit", "pln": ["(: cnet_isa_09a553be37 (IsA regiment army_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regimental is a kind of military uniform", "pln": ["(: cnet_isa_f679c39f69 (IsA regimental military_uniform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regimentation is a kind of imposition", "pln": ["(: cnet_isa_5ec283fcf4 (IsA regimentation imposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "region is a kind of location", "pln": ["(: cnet_isa_b197c9f3b1 (IsA region location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "region is a kind of indefinite quantity", "pln": ["(: cnet_isa_c5205781b9 (IsA region indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regional anatomy is a kind of anatomy", "pln": ["(: cnet_isa_95e8b4ada4 (IsA regional_anatomy anatomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regional anesthesia is a kind of anesthesia", "pln": ["(: cnet_isa_f04a900f28 (IsA regional_anesthesia anesthesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regional enteritis is a kind of colitis", "pln": ["(: cnet_isa_2f90bd70b6 (IsA regional_enteritis colitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regionalism is a kind of loyalty", "pln": ["(: cnet_isa_bf9a3f71c1 (IsA regionalism loyalty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regionalism is a kind of foreign policy", "pln": ["(: cnet_isa_82bd666e7a (IsA regionalism foreign_policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regionalism is a kind of non standard speech", "pln": ["(: cnet_isa_7f16f65cde (IsA regionalism non_standard_speech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "register is a kind of air passage", "pln": ["(: cnet_isa_0207629dcf (IsA register air_passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "register is a kind of regulator", "pln": ["(: cnet_isa_36ac6b6b05 (IsA register regulator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "register is a kind of written record", "pln": ["(: cnet_isa_e86b7d40f2 (IsA register written_record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "register is a kind of memory device", "pln": ["(: cnet_isa_de7c1c72cc (IsA register memory_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "register is a kind of timbre", "pln": ["(: cnet_isa_ce9d6a7a00 (IsA register timbre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "register is a kind of record", "pln": ["(: cnet_isa_0564eac84c (IsA register record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "register language is a kind of tone language", "pln": ["(: cnet_isa_0b8d0ceb94 (IsA register_language tone_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "registered bond is a kind of bond", "pln": ["(: cnet_isa_96c5354f35 (IsA registered_bond bond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "registered bond is a kind of registered security", "pln": ["(: cnet_isa_1d000a6bb7 (IsA registered_bond registered_security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "registered mail is a kind of mail", "pln": ["(: cnet_isa_f4d12ad337 (IsA registered_mail mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "registered nurse is a kind of nurse", "pln": ["(: cnet_isa_5c335e2e47 (IsA registered_nurse nurse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "registered security is a kind of security", "pln": ["(: cnet_isa_b69b8fabf3 (IsA registered_security security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "registrant is a kind of person", "pln": ["(: cnet_isa_4fbb3e7e96 (IsA registrant person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "registrar is a kind of academic administrator", "pln": ["(: cnet_isa_5b013e6ec1 (IsA registrar academic_administrator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "registrar is a kind of employee", "pln": ["(: cnet_isa_12d5e65b7e (IsA registrar employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "registrar is a kind of official", "pln": ["(: cnet_isa_d686fec958 (IsA registrar official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "registration is a kind of entrance", "pln": ["(: cnet_isa_ca719474b8 (IsA registration entrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "registration is a kind of certificate", "pln": ["(: cnet_isa_cba3465e45 (IsA registration certificate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "registration is a kind of body", "pln": ["(: cnet_isa_1ae89bf09b (IsA registration body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "registration is a kind of sound property", "pln": ["(: cnet_isa_3f82f9ac95 (IsA registration sound_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "registration fire is a kind of fire", "pln": ["(: cnet_isa_8644f96b45 (IsA registration_fire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regius professor is a kind of professor", "pln": ["(: cnet_isa_afda883a9c (IsA regius_professor professor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "reglaecus is a kind of fish genus", "pln": ["(: cnet_isa_fa615e5330 (IsA reglaecus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regnellidium is a kind of aquatic fern", "pln": ["(: cnet_isa_9277074f98 (IsA regnellidium aquatic_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regosol is a kind of soil", "pln": ["(: cnet_isa_d2a3b42980 (IsA regosol soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regress is a kind of reasoning", "pln": ["(: cnet_isa_78f7f9cc05 (IsA regress reasoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regression is a kind of reversal", "pln": ["(: cnet_isa_6008aa6fe3 (IsA regression reversal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regression is a kind of defense mechanism", "pln": ["(: cnet_isa_b66dfdf48c (IsA regression defense_mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regression is a kind of statistical method", "pln": ["(: cnet_isa_b5eb11bc7c (IsA regression statistical_method) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regression analysis is a kind of multivariate analysis", "pln": ["(: cnet_isa_124e8c8e48 (IsA regression_analysis multivariate_analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regression coefficient is a kind of parametric statistic", "pln": ["(: cnet_isa_502ba959d7 (IsA regression_coefficient parametric_statistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regression equation is a kind of equation", "pln": ["(: cnet_isa_d591006fd0 (IsA regression_equation equation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regression line is a kind of curve", "pln": ["(: cnet_isa_9b9fa4dab5 (IsA regression_line curve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "regret is a kind of emotion", "pln": ["(: cnet_isa_d0008343b9 (IsA regret emotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regular is a kind of size", "pln": ["(: cnet_isa_c2b52af0cd (IsA regular size) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regular is a kind of patron", "pln": ["(: cnet_isa_df9f1bb43f (IsA regular patron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regular is a kind of soldier", "pln": ["(: cnet_isa_92879a9b1c (IsA regular soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regular is a kind of follower", "pln": ["(: cnet_isa_c65b21c9d5 (IsA regular follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regular dodecahedron is a kind of regular polyhedron", "pln": ["(: cnet_isa_ad4416aadc (IsA regular_dodecahedron regular_polyhedron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regular hexagon is a kind of hexagon", "pln": ["(: cnet_isa_c272ba3c0e (IsA regular_hexagon hexagon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regular icosahedron is a kind of regular polyhedron", "pln": ["(: cnet_isa_b8103b3b61 (IsA regular_icosahedron regular_polyhedron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regular octahedron is a kind of regular polyhedron", "pln": ["(: cnet_isa_a0474ffca8 (IsA regular_octahedron regular_polyhedron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regular payment is a kind of payment", "pln": ["(: cnet_isa_d61d7adf29 (IsA regular_payment payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regular polygon is a kind of isogon", "pln": ["(: cnet_isa_804aa7a74d (IsA regular_polygon isogon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regular polyhedron is a kind of polyhedron", "pln": ["(: cnet_isa_820f5fc660 (IsA regular_polyhedron polyhedron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regular tetrahedron is a kind of regular polyhedron", "pln": ["(: cnet_isa_5614c91157 (IsA regular_tetrahedron regular_polyhedron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regularity is a kind of quality", "pln": ["(: cnet_isa_b1b87fdc34 (IsA regularity quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regularity is a kind of symmetry", "pln": ["(: cnet_isa_c331a2f2b5 (IsA regularity symmetry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regularization is a kind of condition", "pln": ["(: cnet_isa_891d03ec9b (IsA regularization condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regulation is a kind of control", "pln": ["(: cnet_isa_5a11fc7664 (IsA regulation control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regulation is a kind of rule", "pln": ["(: cnet_isa_5394d199dc (IsA regulation rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regulation is a kind of organic process", "pln": ["(: cnet_isa_0f0ea9892e (IsA regulation organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regulation is a kind of dominance", "pln": ["(: cnet_isa_e121bd07de (IsA regulation dominance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regulation time is a kind of time period", "pln": ["(: cnet_isa_91a4a57d39 (IsA regulation_time time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regulator is a kind of control", "pln": ["(: cnet_isa_c65a9718a9 (IsA regulator control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regulator is a kind of official", "pln": ["(: cnet_isa_8a888d5050 (IsA regulator official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regulatory agency is a kind of administrative unit", "pln": ["(: cnet_isa_35a20f82d9 (IsA regulatory_agency administrative_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regulatory gene is a kind of gene", "pln": ["(: cnet_isa_b254eb1503 (IsA regulatory_gene gene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regulus is a kind of bird genus", "pln": ["(: cnet_isa_f026e2e38f (IsA regulus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regur is a kind of loam", "pln": ["(: cnet_isa_5682160965 (IsA regur loam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regurgitation is a kind of recall", "pln": ["(: cnet_isa_2b457475ea (IsA regurgitation recall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "regurgitation is a kind of backflow", "pln": ["(: cnet_isa_fbaf3df621 (IsA regurgitation backflow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rehabilitation is a kind of physical therapy", "pln": ["(: cnet_isa_41ab5d3df3 (IsA rehabilitation physical_therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rehabilitation is a kind of restoration", "pln": ["(: cnet_isa_11b0f1b9de (IsA rehabilitation restoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rehabilitation is a kind of vindication", "pln": ["(: cnet_isa_15d370f226 (IsA rehabilitation vindication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rehabilitation program is a kind of program", "pln": ["(: cnet_isa_5100310285 (IsA rehabilitation_program program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reharmonization is a kind of harmonization", "pln": ["(: cnet_isa_f29a82ccd0 (IsA reharmonization harmonization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rehash is a kind of material", "pln": ["(: cnet_isa_975af5bfd1 (IsA rehash material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rehearsal is a kind of exercise", "pln": ["(: cnet_isa_35dd20c01d (IsA rehearsal exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reich is a kind of state", "pln": ["(: cnet_isa_32a7d2bb7d (IsA reich state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reign is a kind of dominion", "pln": ["(: cnet_isa_43e88a1738 (IsA reign dominion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reign is a kind of period", "pln": ["(: cnet_isa_66c13fd6ff (IsA reign period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reign is a kind of time period", "pln": ["(: cnet_isa_7a46547d17 (IsA reign time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reign of terror is a kind of reign", "pln": ["(: cnet_isa_14d31e775e (IsA reign_of_terror reign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reimbursement is a kind of compensation", "pln": ["(: cnet_isa_0efccb4bae (IsA reimbursement compensation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reimposition is a kind of imposition", "pln": ["(: cnet_isa_b005a808b4 (IsA reimposition imposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rein is a kind of strap", "pln": ["(: cnet_isa_1f12f84b55 (IsA rein strap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rein is a kind of control", "pln": ["(: cnet_isa_b5e9971ab3 (IsA rein control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rein orchid is a kind of orchid", "pln": ["(: cnet_isa_a56bb1af51 (IsA rein_orchid orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reincarnation is a kind of theological doctrine", "pln": ["(: cnet_isa_84d5f75414 (IsA reincarnation theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "reincarnation is a kind of birth", "pln": ["(: cnet_isa_eb74328bee (IsA reincarnation birth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reincarnation is a kind of embodiment", "pln": ["(: cnet_isa_1c463c60fa (IsA reincarnation embodiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reincarnationism is a kind of doctrine", "pln": ["(: cnet_isa_52a80de1c6 (IsA reincarnationism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reindeer moss is a kind of lichen", "pln": ["(: cnet_isa_ad81495c0e (IsA reindeer_moss lichen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reinforced concrete is a kind of concrete", "pln": ["(: cnet_isa_8013d7fe55 (IsA reinforced_concrete concrete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reinforcement is a kind of confirmation", "pln": ["(: cnet_isa_fe29c4a2a8 (IsA reinforcement confirmation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reinforcing stimulus is a kind of stimulation", "pln": ["(: cnet_isa_e0b3393195 (IsA reinforcing_stimulus stimulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reinstatement is a kind of restoration", "pln": ["(: cnet_isa_230a839986 (IsA reinstatement restoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reinstatement is a kind of condition", "pln": ["(: cnet_isa_8077ec9e2a (IsA reinstatement condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reinsurance is a kind of insurance", "pln": ["(: cnet_isa_0ec493f3f0 (IsA reinsurance insurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reinterpretation is a kind of rendition", "pln": ["(: cnet_isa_e20c7f2b4b (IsA reinterpretation rendition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reinterpretation is a kind of interpretation", "pln": ["(: cnet_isa_b433ffe2ca (IsA reinterpretation interpretation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reintroduction is a kind of presentation", "pln": ["(: cnet_isa_118196f006 (IsA reintroduction presentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reissue is a kind of publication", "pln": ["(: cnet_isa_c56b9dab35 (IsA reissue publication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reiter s syndrome is a kind of syndrome", "pln": ["(: cnet_isa_ef3417811e (IsA reiter_s_syndrome syndrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reithrodontomy is a kind of mammal genus", "pln": ["(: cnet_isa_5f6ffdb5a6 (IsA reithrodontomy mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rejection is a kind of act", "pln": ["(: cnet_isa_bce421d182 (IsA rejection act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rejection is a kind of speech act", "pln": ["(: cnet_isa_2ed50189c4 (IsA rejection speech_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rejection is a kind of organic phenomenon", "pln": ["(: cnet_isa_f8b1e1b537 (IsA rejection organic_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rejection is a kind of situation", "pln": ["(: cnet_isa_87c17f7475 (IsA rejection situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rejoicing is a kind of happiness", "pln": ["(: cnet_isa_1490826f31 (IsA rejoicing happiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rejoinder is a kind of reply", "pln": ["(: cnet_isa_912397eb5c (IsA rejoinder reply) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rejoinder is a kind of pleading", "pln": ["(: cnet_isa_89072de167 (IsA rejoinder pleading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rejuvenation is a kind of restoration", "pln": ["(: cnet_isa_193700601e (IsA rejuvenation restoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rejuvenation is a kind of organic phenomenon", "pln": ["(: cnet_isa_6cf07dc8ba (IsA rejuvenation organic_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relapsing fever is a kind of infectious disease", "pln": ["(: cnet_isa_00a3decd9a (IsA relapsing_fever infectious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relatedness is a kind of connection", "pln": ["(: cnet_isa_7b9960cd8b (IsA relatedness connection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relation is a kind of abstraction", "pln": ["(: cnet_isa_5d10068e1b (IsA relation abstraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relation is a kind of dealing", "pln": ["(: cnet_isa_d249c7112f (IsA relation dealing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relation is a kind of narration", "pln": ["(: cnet_isa_a6b3383e79 (IsA relation narration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relation back is a kind of legal principle", "pln": ["(: cnet_isa_ef25399902 (IsA relation_back legal_principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relational adjective is a kind of adjective", "pln": ["(: cnet_isa_a00bede7d2 (IsA relational_adjective adjective) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "relational database is a kind of electronic database", "pln": ["(: cnet_isa_03a519133a (IsA relational_database electronic_database) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relational database management system is a kind of database management system", "pln": ["(: cnet_isa_07f4c29a98 (IsA relational_database_management_system database_management_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relation is a kind of social relation", "pln": ["(: cnet_isa_95859966c0 (IsA relation social_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relationship is a kind of relation", "pln": ["(: cnet_isa_7804790a98 (IsA relationship relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relationship is a kind of state", "pln": ["(: cnet_isa_9422c9ba16 (IsA relationship state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relative is a kind of organism", "pln": ["(: cnet_isa_697c588bcd (IsA relative organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relative is a kind of person", "pln": ["(: cnet_isa_2ca8fdea7e (IsA relative person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relative clause is a kind of clause", "pln": ["(: cnet_isa_1fa7a90d88 (IsA relative_clause clause) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relative density is a kind of concentration", "pln": ["(: cnet_isa_d471db5d42 (IsA relative_density concentration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relative humidity is a kind of ratio", "pln": ["(: cnet_isa_b7d0901607 (IsA relative_humidity ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relative pronoun is a kind of pronoun", "pln": ["(: cnet_isa_f0d7607091 (IsA relative_pronoun pronoun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relative quantity is a kind of measure", "pln": ["(: cnet_isa_b8a94d08f7 (IsA relative_quantity measure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "relativism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_40778672d8 (IsA relativism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relativistic mass is a kind of mass", "pln": ["(: cnet_isa_e557cbd7d4 (IsA relativistic_mass mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relativity is a kind of college level subject", "pln": ["(: cnet_isa_43ab1f048d (IsA relativity college_level_subject) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relativity is a kind of theory", "pln": ["(: cnet_isa_1a4eb652f8 (IsA relativity theory) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relativity is a kind of quality", "pln": ["(: cnet_isa_9b0f22cacc (IsA relativity quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relativity is a kind of scientific theory", "pln": ["(: cnet_isa_c20b61b6c6 (IsA relativity scientific_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "relatum is a kind of term", "pln": ["(: cnet_isa_b641c67e12 (IsA relatum term) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relaxant is a kind of drug", "pln": ["(: cnet_isa_b8cd6c085d (IsA relaxant drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relaxation is a kind of mathematical process", "pln": ["(: cnet_isa_a49bf152a9 (IsA relaxation mathematical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "relaxation is a kind of weakening", "pln": ["(: cnet_isa_15f6b3e746 (IsA relaxation weakening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relaxation is a kind of exponential decay", "pln": ["(: cnet_isa_bf6a07218b (IsA relaxation exponential_decay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relaxation is a kind of increase", "pln": ["(: cnet_isa_7e92a247fe (IsA relaxation increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relaxation time is a kind of time constant", "pln": ["(: cnet_isa_a117e7e2ef (IsA relaxation_time time_constant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relaxer is a kind of agent", "pln": ["(: cnet_isa_3877d03819 (IsA relaxer agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relaxin is a kind of hormone", "pln": ["(: cnet_isa_f133aab506 (IsA relaxin hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relay is a kind of passage", "pln": ["(: cnet_isa_ce0dbe382a (IsA relay passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relay is a kind of electrical device", "pln": ["(: cnet_isa_d5afd7479a (IsA relay electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relay is a kind of shift", "pln": ["(: cnet_isa_095cc60225 (IsA relay shift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relay is a kind of team", "pln": ["(: cnet_isa_ab663b0391 (IsA relay team) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relay is a kind of race", "pln": ["(: cnet_isa_503d45f48e (IsA relay race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "release is a kind of activity", "pln": ["(: cnet_isa_dd235e6e51 (IsA release activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "release is a kind of relinquishment", "pln": ["(: cnet_isa_9fd12c0167 (IsA release relinquishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "release is a kind of device", "pln": ["(: cnet_isa_79ef7a5b0a (IsA release device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "release is a kind of merchandise", "pln": ["(: cnet_isa_670d284a9d (IsA release merchandise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "release is a kind of termination", "pln": ["(: cnet_isa_a18dc80377 (IsA release termination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "release is a kind of natural process", "pln": ["(: cnet_isa_dde02791b9 (IsA release natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "releasing factor is a kind of factor", "pln": ["(: cnet_isa_843bf1254c (IsA releasing_factor factor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "releasing hormone is a kind of hormone", "pln": ["(: cnet_isa_8686440ee2 (IsA releasing_hormone hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relegation is a kind of banishment", "pln": ["(: cnet_isa_14759ecd76 (IsA relegation banishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relegation is a kind of categorization", "pln": ["(: cnet_isa_fb4e2ac9f7 (IsA relegation categorization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relentlessness is a kind of mercilessness", "pln": ["(: cnet_isa_44aa3743f2 (IsA relentlessness mercilessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relevance is a kind of connection", "pln": ["(: cnet_isa_c41a039ec1 (IsA relevance connection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reliance is a kind of certainty", "pln": ["(: cnet_isa_4d0b67276f (IsA reliance certainty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reliance is a kind of dependence", "pln": ["(: cnet_isa_456b32e1c2 (IsA reliance dependence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relic is a kind of antiquity", "pln": ["(: cnet_isa_8492d7eb83 (IsA relic antiquity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relict is a kind of geological formation", "pln": ["(: cnet_isa_da0674818d (IsA relict geological_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "relict is a kind of organism", "pln": ["(: cnet_isa_0052458617 (IsA relict organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relief is a kind of aid", "pln": ["(: cnet_isa_d8f701f4fa (IsA relief aid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relief is a kind of liberation", "pln": ["(: cnet_isa_5a3446b9f0 (IsA relief liberation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relief is a kind of social welfare", "pln": ["(: cnet_isa_dba0424b92 (IsA relief social_welfare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relief is a kind of sculpture", "pln": ["(: cnet_isa_dfbf5548ad (IsA relief sculpture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relief is a kind of comfort", "pln": ["(: cnet_isa_4fc8ad836f (IsA relief comfort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relief is a kind of damage", "pln": ["(: cnet_isa_056f4cf95a (IsA relief damage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relief printing is a kind of printing", "pln": ["(: cnet_isa_28f00956ff (IsA relief_printing printing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reliever is a kind of person", "pln": ["(: cnet_isa_457e1a5807 (IsA reliever person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reliever is a kind of pitcher", "pln": ["(: cnet_isa_75fd80bd60 (IsA reliever pitcher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "religion is a kind of abstract idea", "pln": ["(: cnet_isa_56129997a0 (IsA religion abstract_idea) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "religion is a kind of form of crude superstition", "pln": ["(: cnet_isa_7b81fb9208 (IsA religion form_of_crude_superstition) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "religion is a kind of powerful force", "pln": ["(: cnet_isa_bfab763cb0 (IsA religion powerful_force) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "religion is a kind of subjective created mythology", "pln": ["(: cnet_isa_ab8eeba326 (IsA religion subjective_created_mythology) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "religion is a kind of very complex topic", "pln": ["(: cnet_isa_082fce7a91 (IsA religion very_complex_topic) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "religion is a kind of belief", "pln": ["(: cnet_isa_9d0a307853 (IsA religion belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "religion is a kind of theological virtue", "pln": ["(: cnet_isa_b4da272d18 (IsA religion theological_virtue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "religion is a kind of institution", "pln": ["(: cnet_isa_a5357b4f1d (IsA religion institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "religionism is a kind of intolerance", "pln": ["(: cnet_isa_f32a7a9841 (IsA religionism intolerance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "religionist is a kind of person", "pln": ["(: cnet_isa_0124f43f36 (IsA religionist person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "religionist is a kind of religionist", "pln": ["(: cnet_isa_c395176953 (IsA religionist religionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "religiosity is a kind of devoutness", "pln": ["(: cnet_isa_e05392f557 (IsA religiosity devoutness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "religious is a kind of religionist", "pln": ["(: cnet_isa_b98b9550fe (IsA religious religionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "religious ceremony is a kind of ceremony", "pln": ["(: cnet_isa_d3a0ece93b (IsA religious_ceremony ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "religious doctrine is a kind of doctrine", "pln": ["(: cnet_isa_796ef218a2 (IsA religious_doctrine doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "religious festival is a kind of festival", "pln": ["(: cnet_isa_3cf402033c (IsA religious_festival festival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "religious holiday is a kind of holiday", "pln": ["(: cnet_isa_02dd18f8c7 (IsA religious_holiday holiday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "religious leader is a kind of leader", "pln": ["(: cnet_isa_be0a598b65 (IsA religious_leader leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "religious leader is a kind of religionist", "pln": ["(: cnet_isa_4e80d33768 (IsA religious_leader religionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "religious movement is a kind of movement", "pln": ["(: cnet_isa_ebc186341d (IsA religious_movement movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "religious music is a kind of music genre", "pln": ["(: cnet_isa_e7372d504e (IsA religious_music music_genre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "religious orientation is a kind of orientation", "pln": ["(: cnet_isa_4bd053a467 (IsA religious_orientation orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "religious residence is a kind of residence", "pln": ["(: cnet_isa_0691f34c81 (IsA religious_residence residence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "religious right is a kind of right", "pln": ["(: cnet_isa_c308513e0d (IsA religious_right right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "religious school is a kind of school", "pln": ["(: cnet_isa_5581977053 (IsA religious_school school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "religious society of friend is a kind of sect", "pln": ["(: cnet_isa_c8290cada7 (IsA religious_society_of_friend sect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "religious song is a kind of religious music", "pln": ["(: cnet_isa_ad812467d1 (IsA religious_song religious_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "religious song is a kind of song", "pln": ["(: cnet_isa_9ced516fef (IsA religious_song song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "religious trance is a kind of trance", "pln": ["(: cnet_isa_39fd0a3a7c (IsA religious_trance trance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "religiousness is a kind of conscientiousness", "pln": ["(: cnet_isa_d9c0a4afdf (IsA religiousness conscientiousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relinquishment is a kind of termination", "pln": ["(: cnet_isa_1a0d97f0a9 (IsA relinquishment termination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relinquishment is a kind of renunciation", "pln": ["(: cnet_isa_bdab4cf9d3 (IsA relinquishment renunciation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reliquary is a kind of container", "pln": ["(: cnet_isa_d5d0c20baa (IsA reliquary container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relish is a kind of taste", "pln": ["(: cnet_isa_d05fec5b28 (IsA relish taste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relish is a kind of condiment", "pln": ["(: cnet_isa_0d88f21cd9 (IsA relish condiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relistening is a kind of listening", "pln": ["(: cnet_isa_7948a4b726 (IsA relistening listening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reliving is a kind of experience", "pln": ["(: cnet_isa_08d20a8bdf (IsA reliving experience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "relocatable program is a kind of program", "pln": ["(: cnet_isa_0727cb8ca6 (IsA relocatable_program program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "reluctance is a kind of unwillingness", "pln": ["(: cnet_isa_6383c74f86 (IsA reluctance unwillingness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "remains is a kind of object", "pln": ["(: cnet_isa_b4f628dbab (IsA remains object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reluctance is a kind of electrical phenomenon", "pln": ["(: cnet_isa_3fcf75340f (IsA reluctance electrical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reluctivity is a kind of physical property", "pln": ["(: cnet_isa_cef2834305 (IsA reluctivity physical_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rem is a kind of radioactivity unit", "pln": ["(: cnet_isa_19ddf60c5f (IsA rem radioactivity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "remainder is a kind of part", "pln": ["(: cnet_isa_ce2dcd6b4b (IsA remainder part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "remainder is a kind of number", "pln": ["(: cnet_isa_d8f267dae9 (IsA remainder number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "remain is a kind of object", "pln": ["(: cnet_isa_1526a764a7 (IsA remain object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "remake is a kind of creation", "pln": ["(: cnet_isa_b987400557 (IsA remake creation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "remand is a kind of return", "pln": ["(: cnet_isa_087e096bb2 (IsA remand return) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "remark is a kind of notice", "pln": ["(: cnet_isa_9974327642 (IsA remark notice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "remark is a kind of statement", "pln": ["(: cnet_isa_ed67309602 (IsA remark statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "remarriage is a kind of marriage", "pln": ["(: cnet_isa_b8c3f3e598 (IsA remarriage marriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rembrant is a kind of famous painter", "pln": ["(: cnet_isa_d9c196b0e5 (IsA rembrant famous_painter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "remedy is a kind of medicine", "pln": ["(: cnet_isa_cb4cd97dde (IsA remedy medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "remembrance is a kind of memory", "pln": ["(: cnet_isa_46eee081a3 (IsA remembrance memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "remembrance day is a kind of holiday", "pln": ["(: cnet_isa_f81179834b (IsA remembrance_day holiday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "remilegia is a kind of fish genus", "pln": ["(: cnet_isa_bf832094f4 (IsA remilegia fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "remilitarization is a kind of mobilization", "pln": ["(: cnet_isa_b8660ab6e1 (IsA remilitarization mobilization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reminder is a kind of experience", "pln": ["(: cnet_isa_935af56ff2 (IsA reminder experience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reminder is a kind of message", "pln": ["(: cnet_isa_ed2075fbda (IsA reminder message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "reminiscence is a kind of memory", "pln": ["(: cnet_isa_765afb22c5 (IsA reminiscence memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "remise is a kind of hackney", "pln": ["(: cnet_isa_cf5ba63a5f (IsA remise hackney) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "remise is a kind of stab", "pln": ["(: cnet_isa_1d59361120 (IsA remise stab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "remission is a kind of suspension", "pln": ["(: cnet_isa_6e21f6ed00 (IsA remission suspension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "remission is a kind of referral", "pln": ["(: cnet_isa_e8d68f4a7a (IsA remission referral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "remit is a kind of topic", "pln": ["(: cnet_isa_1f226284b4 (IsA remit topic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "remittance is a kind of payment", "pln": ["(: cnet_isa_1b06b51a93 (IsA remittance payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "remittance man is a kind of exile", "pln": ["(: cnet_isa_e6d0bf0176 (IsA remittance_man exile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "remora is a kind of spiny finned fish", "pln": ["(: cnet_isa_b7d703a900 (IsA remora spiny_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "remote control is a kind of device", "pln": ["(: cnet_isa_e8694b3cd7 (IsA remote_control device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "remote control bomb is a kind of bomb", "pln": ["(: cnet_isa_a015cd4656 (IsA remote_control_bomb bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "remote terminal is a kind of terminal", "pln": ["(: cnet_isa_25780264f2 (IsA remote_terminal terminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "remoulade sauce is a kind of sauce", "pln": ["(: cnet_isa_d1e7c74203 (IsA remoulade_sauce sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "remount is a kind of saddle horse", "pln": ["(: cnet_isa_1dc4db18ef (IsA remount saddle_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "removable disk is a kind of hard disc", "pln": ["(: cnet_isa_78b2f6c2ff (IsA removable_disk hard_disc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "removal is a kind of dismissal", "pln": ["(: cnet_isa_0a9f82d60a (IsA removal dismissal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "removal is a kind of separation", "pln": ["(: cnet_isa_4cbe34b908 (IsA removal separation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "remove is a kind of distance", "pln": ["(: cnet_isa_186a8f89c8 (IsA remove distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "remover is a kind of mover", "pln": ["(: cnet_isa_4715c7175f (IsA remover mover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "remover is a kind of solvent", "pln": ["(: cnet_isa_c4cfb954cf (IsA remover solvent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "remuda is a kind of herd", "pln": ["(: cnet_isa_f63713e597 (IsA remuda herd) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "remuneration is a kind of payment", "pln": ["(: cnet_isa_67cef4a138 (IsA remuneration payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "renaissance man is a kind of scholar", "pln": ["(: cnet_isa_ce23a357b5 (IsA renaissance_man scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "renal artery is a kind of artery", "pln": ["(: cnet_isa_cb122bcd8c (IsA renal_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "renal colic is a kind of pain", "pln": ["(: cnet_isa_90999dd9e5 (IsA renal_colic pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "renal cortex is a kind of cortex", "pln": ["(: cnet_isa_5b457fe3fb (IsA renal_cortex cortex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "renal failure is a kind of failure", "pln": ["(: cnet_isa_4543d957fb (IsA renal_failure failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "renal failure is a kind of kidney disease", "pln": ["(: cnet_isa_ae806da968 (IsA renal_failure kidney_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "renal insufficiency is a kind of kidney disease", "pln": ["(: cnet_isa_a43ba422f5 (IsA renal_insufficiency kidney_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "renal vein is a kind of vein", "pln": ["(: cnet_isa_f2fca73aca (IsA renal_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "render is a kind of stucco", "pln": ["(: cnet_isa_c0403bd53a (IsA render stucco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rendering is a kind of payment", "pln": ["(: cnet_isa_8631b28f25 (IsA rendering payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rendering is a kind of coating", "pln": ["(: cnet_isa_06fb1e6723 (IsA rendering coating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rendering is a kind of drawing", "pln": ["(: cnet_isa_6db583b147 (IsA rendering drawing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rendezvous is a kind of meeting", "pln": ["(: cnet_isa_5b90eaeb3c (IsA rendezvous meeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rendezvous is a kind of topographic point", "pln": ["(: cnet_isa_5de8356927 (IsA rendezvous topographic_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rendition is a kind of performance", "pln": ["(: cnet_isa_ec4502f5cf (IsA rendition performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rendition is a kind of surrender", "pln": ["(: cnet_isa_1302bca59c (IsA rendition surrender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "renegade is a kind of deserter", "pln": ["(: cnet_isa_5a3142e09d (IsA renegade deserter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "renewable resource is a kind of natural resource", "pln": ["(: cnet_isa_6b24d403e6 (IsA renewable_resource natural_resource) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "renewal is a kind of repetition", "pln": ["(: cnet_isa_5ee931b7d9 (IsA renewal repetition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reniform leaf is a kind of simple leaf", "pln": ["(: cnet_isa_ca1e631e3b (IsA reniform_leaf simple_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "renin is a kind of protease", "pln": ["(: cnet_isa_08f75635c7 (IsA renin protease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rennet is a kind of organic compound", "pln": ["(: cnet_isa_06935a1b3d (IsA rennet organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rennin is a kind of coagulase", "pln": ["(: cnet_isa_2464056fc9 (IsA rennin coagulase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rennin is a kind of enzyme", "pln": ["(: cnet_isa_11cbdb3a14 (IsA rennin enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "renovation is a kind of improvement", "pln": ["(: cnet_isa_f65e5a56b0 (IsA renovation improvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rensselaerite is a kind of talc", "pln": ["(: cnet_isa_cf71bdda52 (IsA rensselaerite talc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rent is a kind of tear", "pln": ["(: cnet_isa_e0efb906a8 (IsA rent tear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rent is a kind of annuity in advance", "pln": ["(: cnet_isa_54ba8f0de9 (IsA rent annuity_in_advance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rent collector is a kind of collector", "pln": ["(: cnet_isa_06c9b171c6 (IsA rent_collector collector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rent rebate is a kind of rebate", "pln": ["(: cnet_isa_68fbaa5475 (IsA rent_rebate rebate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rent roll is a kind of register", "pln": ["(: cnet_isa_cb945d2f59 (IsA rent_roll register) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rent seeking is a kind of economic theory", "pln": ["(: cnet_isa_acca884151 (IsA rent_seeking economic_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rental is a kind of transaction", "pln": ["(: cnet_isa_0da632f1ae (IsA rental transaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rental collection is a kind of library", "pln": ["(: cnet_isa_1c918cca14 (IsA rental_collection library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rental income is a kind of income", "pln": ["(: cnet_isa_41fee89b48 (IsA rental_income income) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "renter is a kind of owner", "pln": ["(: cnet_isa_b023145c8c (IsA renter owner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rentier is a kind of investor", "pln": ["(: cnet_isa_a374942961 (IsA rentier investor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "renunciation is a kind of rejection", "pln": ["(: cnet_isa_5084ddfb19 (IsA renunciation rejection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "renunciation is a kind of resignation", "pln": ["(: cnet_isa_694bdfcb26 (IsA renunciation resignation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reorder is a kind of order", "pln": ["(: cnet_isa_01bc1cd9df (IsA reorder order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reordering is a kind of rearrangement", "pln": ["(: cnet_isa_e035e58f84 (IsA reordering rearrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reorganization is a kind of organization", "pln": ["(: cnet_isa_7f426c38f9 (IsA reorganization organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reorganization is a kind of revision", "pln": ["(: cnet_isa_58de2998d2 (IsA reorganization revision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reorientation is a kind of orientation", "pln": ["(: cnet_isa_ee30f20002 (IsA reorientation orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reoviridae is a kind of arbovirus", "pln": ["(: cnet_isa_0b297f2ba7 (IsA reoviridae arbovirus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reovirus is a kind of animal virus", "pln": ["(: cnet_isa_cbe85687eb (IsA reovirus animal_virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rep is a kind of fabric", "pln": ["(: cnet_isa_1416a26c99 (IsA rep fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rep is a kind of congressman", "pln": ["(: cnet_isa_d5c58a3407 (IsA rep congressman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repair is a kind of improvement", "pln": ["(: cnet_isa_6bacaae506 (IsA repair improvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repair is a kind of condition", "pln": ["(: cnet_isa_5b63b42ab5 (IsA repair condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repair shop is a kind of shop", "pln": ["(: cnet_isa_ca0d298e17 (IsA repair_shop shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reparation is a kind of expiation", "pln": ["(: cnet_isa_e14e36d834 (IsA reparation expiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reparation is a kind of compensation", "pln": ["(: cnet_isa_ee7567def2 (IsA reparation compensation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repartee is a kind of wit", "pln": ["(: cnet_isa_6c75d33772 (IsA repartee wit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repatriate is a kind of citizen", "pln": ["(: cnet_isa_329db19fc9 (IsA repatriate citizen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repatriation is a kind of return", "pln": ["(: cnet_isa_92bde3a59d (IsA repatriation return) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repayment is a kind of payment", "pln": ["(: cnet_isa_0448ffc899 (IsA repayment payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repeat is a kind of periodic event", "pln": ["(: cnet_isa_ece46b17fc (IsA repeat periodic_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repeater is a kind of electronic device", "pln": ["(: cnet_isa_2c9bae9abe (IsA repeater electronic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repeater is a kind of person", "pln": ["(: cnet_isa_7737859695 (IsA repeater person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repeating firearm is a kind of firearm", "pln": ["(: cnet_isa_37b1308338 (IsA repeating_firearm firearm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repechage is a kind of race", "pln": ["(: cnet_isa_5ff17411db (IsA repechage race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repellent is a kind of power", "pln": ["(: cnet_isa_dc2ff75dfb (IsA repellent power) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repellent is a kind of compound", "pln": ["(: cnet_isa_390b607194 (IsA repellent compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repentance is a kind of compunction", "pln": ["(: cnet_isa_4582baca9b (IsA repentance compunction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repercussion is a kind of consequence", "pln": ["(: cnet_isa_251f6f6610 (IsA repercussion consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repertoire is a kind of collection", "pln": ["(: cnet_isa_ea0de335b5 (IsA repertoire collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repertory is a kind of depository", "pln": ["(: cnet_isa_c959609042 (IsA repertory depository) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repertory is a kind of collection", "pln": ["(: cnet_isa_e2e8fba7f3 (IsA repertory collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repetition is a kind of continuance", "pln": ["(: cnet_isa_16b0a61434 (IsA repetition continuance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repetition is a kind of rhetorical device", "pln": ["(: cnet_isa_72aebb117f (IsA repetition rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repetitiveness is a kind of verboseness", "pln": ["(: cnet_isa_43b9adc741 (IsA repetitiveness verboseness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "replaceability is a kind of exchangeability", "pln": ["(: cnet_isa_483db7d54e (IsA replaceability exchangeability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "replacement is a kind of substitution", "pln": ["(: cnet_isa_81f5575d6e (IsA replacement substitution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "replacement cost is a kind of cost", "pln": ["(: cnet_isa_20521d60d8 (IsA replacement_cost cost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "replay is a kind of repeat", "pln": ["(: cnet_isa_bcdd1189fe (IsA replay repeat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "replay is a kind of repetition", "pln": ["(: cnet_isa_0260590874 (IsA replay repetition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "repletion is a kind of eating", "pln": ["(: cnet_isa_6d7c8fbc30 (IsA repletion eating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "repletion is a kind of fullness", "pln": ["(: cnet_isa_cb916e12ef (IsA repletion fullness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "replica is a kind of copy", "pln": ["(: cnet_isa_62f748d067 (IsA replica copy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "replication is a kind of repetition", "pln": ["(: cnet_isa_a79064ce13 (IsA replication repetition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "replication is a kind of organic process", "pln": ["(: cnet_isa_b8aed6d47c (IsA replication organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "replication is a kind of pleading", "pln": ["(: cnet_isa_14ad849016 (IsA replication pleading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "reply is a kind of speech act", "pln": ["(: cnet_isa_9daadfba2c (IsA reply speech_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "report is a kind of document", "pln": ["(: cnet_isa_036caf79ec (IsA report document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "report is a kind of informing", "pln": ["(: cnet_isa_c89dbb6b5c (IsA report informing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "report is a kind of new", "pln": ["(: cnet_isa_32aa9a1fd4 (IsA report new) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "report is a kind of noise", "pln": ["(: cnet_isa_2d84f67ae8 (IsA report noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "report card is a kind of information", "pln": ["(: cnet_isa_3d19f12f4d (IsA report_card information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reporter is a kind of communicator", "pln": ["(: cnet_isa_6a166c190b (IsA reporter communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reporting weight is a kind of body weight", "pln": ["(: cnet_isa_a539c93144 (IsA reporting_weight body_weight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repose is a kind of composure", "pln": ["(: cnet_isa_aece4c73ea (IsA repose composure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repositing is a kind of deposit", "pln": ["(: cnet_isa_24dc49594c (IsA repositing deposit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repositioning is a kind of placement", "pln": ["(: cnet_isa_c3ff99c0ce (IsA repositioning placement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repository is a kind of burial chamber", "pln": ["(: cnet_isa_d936622e4d (IsA repository burial_chamber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repository is a kind of confidant", "pln": ["(: cnet_isa_12269cd61e (IsA repository confidant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repossession is a kind of recovery", "pln": ["(: cnet_isa_191df4fe72 (IsA repossession recovery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reprehensibility is a kind of evil", "pln": ["(: cnet_isa_d96b8388b7 (IsA reprehensibility evil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "representation is a kind of activity", "pln": ["(: cnet_isa_945e62df06 (IsA representation activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "representation is a kind of cooperation", "pln": ["(: cnet_isa_796f13ae86 (IsA representation cooperation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "representation is a kind of creation", "pln": ["(: cnet_isa_5a646c6ed4 (IsA representation creation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "representation is a kind of right", "pln": ["(: cnet_isa_157bc4c840 (IsA representation right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "representation is a kind of content", "pln": ["(: cnet_isa_4f75b2e7c8 (IsA representation content) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "representation is a kind of statement", "pln": ["(: cnet_isa_c740a67bae (IsA representation statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "representation is a kind of body", "pln": ["(: cnet_isa_8cdcdea122 (IsA representation body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "representation is a kind of state", "pln": ["(: cnet_isa_b06fde8591 (IsA representation state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "representational process is a kind of basic cognitive process", "pln": ["(: cnet_isa_7105e7a526 (IsA representational_process basic_cognitive_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "representative is a kind of negotiator", "pln": ["(: cnet_isa_2bf2ce969c (IsA representative negotiator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repression is a kind of control", "pln": ["(: cnet_isa_9a0dcfafe2 (IsA repression control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repression is a kind of defense mechanism", "pln": ["(: cnet_isa_55c8cc7181 (IsA repression defense_mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repression is a kind of subjugation", "pln": ["(: cnet_isa_def0c6da29 (IsA repression subjugation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "repressor is a kind of agent", "pln": ["(: cnet_isa_d4c698788d (IsA repressor agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repressor gene is a kind of gene", "pln": ["(: cnet_isa_c28891c1db (IsA repressor_gene gene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reprieve is a kind of clemency", "pln": ["(: cnet_isa_0093530e5e (IsA reprieve clemency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reprieve is a kind of warrant", "pln": ["(: cnet_isa_8010bee3c4 (IsA reprieve warrant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "reprieve is a kind of relief", "pln": ["(: cnet_isa_60e8f60b76 (IsA reprieve relief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reprisal is a kind of retaliation", "pln": ["(: cnet_isa_3e55842329 (IsA reprisal retaliation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reproach is a kind of rebuke", "pln": ["(: cnet_isa_97f19d4813 (IsA reproach rebuke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reproach is a kind of shame", "pln": ["(: cnet_isa_b978aba63d (IsA reproach shame) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reprobate is a kind of wrongdoer", "pln": ["(: cnet_isa_e217af53f1 (IsA reprobate wrongdoer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reprobation is a kind of disfavor", "pln": ["(: cnet_isa_2353a3e8cb (IsA reprobation disfavor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reprobation is a kind of rejection", "pln": ["(: cnet_isa_c6ed141abe (IsA reprobation rejection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reproducer is a kind of audio system", "pln": ["(: cnet_isa_60b2a1359b (IsA reproducer audio_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reproducibility is a kind of dependability", "pln": ["(: cnet_isa_a7e1639731 (IsA reproducibility dependability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reproduction is a kind of copying", "pln": ["(: cnet_isa_ceacf1228b (IsA reproduction copying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reproduction is a kind of sexual activity", "pln": ["(: cnet_isa_b7335919dd (IsA reproduction sexual_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reproduction is a kind of organic process", "pln": ["(: cnet_isa_1afd47b959 (IsA reproduction organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "reproduction is a kind of recall", "pln": ["(: cnet_isa_56bf89d45c (IsA reproduction recall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reproduction cost is a kind of cost", "pln": ["(: cnet_isa_a328799586 (IsA reproduction_cost cost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reproductive cell is a kind of cell", "pln": ["(: cnet_isa_9d2c10731b (IsA reproductive_cell cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reproductive cloning is a kind of cloning", "pln": ["(: cnet_isa_02bf4acf20 (IsA reproductive_cloning cloning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reproductive organ is a kind of organ", "pln": ["(: cnet_isa_3be1d29a61 (IsA reproductive_organ organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reproductive structure is a kind of plant organ", "pln": ["(: cnet_isa_019b49a5e9 (IsA reproductive_structure plant_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reproductive system is a kind of system", "pln": ["(: cnet_isa_a875c07674 (IsA reproductive_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reptantia is a kind of animal order", "pln": ["(: cnet_isa_7573b7be86 (IsA reptantia animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reptile is a kind of vertebrate", "pln": ["(: cnet_isa_1602b04d48 (IsA reptile vertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reptile family is a kind of family", "pln": ["(: cnet_isa_a00737ed86 (IsA reptile_family family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reptile genus is a kind of genus", "pln": ["(: cnet_isa_d5cd70f04b (IsA reptile_genus genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reptilia is a kind of class", "pln": ["(: cnet_isa_0ea872c289 (IsA reptilia class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "republic is a kind of political system", "pln": ["(: cnet_isa_572f6aa34a (IsA republic political_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "republican is a kind of advocate", "pln": ["(: cnet_isa_93d9f79b10 (IsA republican advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "republican is a kind of politician", "pln": ["(: cnet_isa_085968ae31 (IsA republican politician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "republican guard is a kind of military unit", "pln": ["(: cnet_isa_a95f680e80 (IsA republican_guard military_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "republican party is a kind of party", "pln": ["(: cnet_isa_ba647a0f49 (IsA republican_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "republicanism is a kind of political orientation", "pln": ["(: cnet_isa_d4ebc1f7bf (IsA republicanism political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "republication is a kind of publication", "pln": ["(: cnet_isa_577a1f92df (IsA republication publication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repudiation is a kind of exposure", "pln": ["(: cnet_isa_29d6eff0e7 (IsA repudiation exposure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repudiation is a kind of refusal", "pln": ["(: cnet_isa_efc2c56242 (IsA repudiation refusal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repudiation is a kind of rejection", "pln": ["(: cnet_isa_fef3b5f566 (IsA repudiation rejection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repugnance is a kind of disgust", "pln": ["(: cnet_isa_ff44f02c8b (IsA repugnance disgust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repulsion is a kind of stand", "pln": ["(: cnet_isa_9313fb21b5 (IsA repulsion stand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "repulsion is a kind of force", "pln": ["(: cnet_isa_5ef50632b3 (IsA repulsion force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reputation is a kind of estimate", "pln": ["(: cnet_isa_a7ae4726c2 (IsA reputation estimate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reputation is a kind of notoriety", "pln": ["(: cnet_isa_659797f08c (IsA reputation notoriety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "repute is a kind of honor", "pln": ["(: cnet_isa_6c583cb860 (IsA repute honor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "request is a kind of message", "pln": ["(: cnet_isa_8da0c9adb4 (IsA request message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "request is a kind of speech act", "pln": ["(: cnet_isa_4a6e2b99d2 (IsA request speech_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "requiem is a kind of mass", "pln": ["(: cnet_isa_b835f4a8c4 (IsA requiem mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "requiem shark is a kind of shark", "pln": ["(: cnet_isa_943ce2b276 (IsA requiem_shark shark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "requiescat is a kind of prayer", "pln": ["(: cnet_isa_2d4f97afdf (IsA requiescat prayer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "required course is a kind of course", "pln": ["(: cnet_isa_c820084554 (IsA required_course course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "requirement is a kind of duty", "pln": ["(: cnet_isa_e31e41db9a (IsA requirement duty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "requirement contract is a kind of contract", "pln": ["(: cnet_isa_ad37749871 (IsA requirement_contract contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "requisiteness is a kind of necessity", "pln": ["(: cnet_isa_05e47e6939 (IsA requisiteness necessity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "requisition is a kind of demand", "pln": ["(: cnet_isa_eeba3b88a5 (IsA requisition demand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "requisition is a kind of form", "pln": ["(: cnet_isa_c628039b22 (IsA requisition form) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "requital is a kind of return", "pln": ["(: cnet_isa_c9d7d74006 (IsA requital return) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rerebrace is a kind of cannon", "pln": ["(: cnet_isa_7c3b7a1158 (IsA rerebrace cannon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rerun is a kind of broadcast", "pln": ["(: cnet_isa_0549479ccf (IsA rerun broadcast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "res gestae is a kind of action", "pln": ["(: cnet_isa_b4131cce98 (IsA res_gestae action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "res gestae is a kind of rule of evidence", "pln": ["(: cnet_isa_1ead911fc6 (IsA res_gestae rule_of_evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "res ipsa loquitur is a kind of rule of evidence", "pln": ["(: cnet_isa_b108422be2 (IsA res_ipsa_loquitur rule_of_evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "res judicata is a kind of topic", "pln": ["(: cnet_isa_67960f0cc0 (IsA res_judicata topic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resale is a kind of selling", "pln": ["(: cnet_isa_9a3f83ad8e (IsA resale selling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rescript is a kind of answer", "pln": ["(: cnet_isa_786ed9737e (IsA rescript answer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rescue is a kind of recovery", "pln": ["(: cnet_isa_50f2a5d5c5 (IsA rescue recovery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rescue equipment is a kind of equipment", "pln": ["(: cnet_isa_35bdf4e663 (IsA rescue_equipment equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rescue operation is a kind of operation", "pln": ["(: cnet_isa_4cf2be0609 (IsA rescue_operation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rescue party is a kind of party", "pln": ["(: cnet_isa_422959026d (IsA rescue_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rescuer is a kind of person", "pln": ["(: cnet_isa_2c64967551 (IsA rescuer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "research is a kind of investigation", "pln": ["(: cnet_isa_164d790ec3 (IsA research investigation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "research center is a kind of center", "pln": ["(: cnet_isa_fe26b6172b (IsA research_center center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "research colloquium is a kind of colloquium", "pln": ["(: cnet_isa_ee168561c7 (IsA research_colloquium colloquium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "research director is a kind of supervisor", "pln": ["(: cnet_isa_cea8b88516 (IsA research_director supervisor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "research group is a kind of group", "pln": ["(: cnet_isa_f382943dd0 (IsA research_group group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "research staff is a kind of staff", "pln": ["(: cnet_isa_affcd8eae7 (IsA research_staff staff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "research worker is a kind of scientist", "pln": ["(: cnet_isa_8aa2fe4cd3 (IsA research_worker scientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reseau is a kind of net", "pln": ["(: cnet_isa_ac53a14c02 (IsA reseau net) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reseau is a kind of network", "pln": ["(: cnet_isa_8731e4a813 (IsA reseau network) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resection is a kind of operation", "pln": ["(: cnet_isa_e8094b36a2 (IsA resection operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reseda is a kind of herb", "pln": ["(: cnet_isa_50f7811c41 (IsA reseda herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resedaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_2b0ae125f0 (IsA resedaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resemblance is a kind of likeness", "pln": ["(: cnet_isa_61aa07061d (IsA resemblance likeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resentment is a kind of hostility", "pln": ["(: cnet_isa_84b8c9fb5a (IsA resentment hostility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reservation is a kind of preservation", "pln": ["(: cnet_isa_cba8ac02be (IsA reservation preservation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "reservation is a kind of prearrangement", "pln": ["(: cnet_isa_2dc6e440e9 (IsA reservation prearrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reservation is a kind of agreement", "pln": ["(: cnet_isa_895def7a27 (IsA reservation agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reservation is a kind of statement", "pln": ["(: cnet_isa_edf3a937b1 (IsA reservation statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reservation is a kind of administrative district", "pln": ["(: cnet_isa_11f82aaac3 (IsA reservation administrative_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "reserve is a kind of uncommunicativeness", "pln": ["(: cnet_isa_5d3fabca92 (IsA reserve uncommunicativeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reserve is a kind of indefinite quantity", "pln": ["(: cnet_isa_b576a3923e (IsA reserve indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reserve is a kind of accumulation", "pln": ["(: cnet_isa_8d8522be91 (IsA reserve accumulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reserve account is a kind of reserve", "pln": ["(: cnet_isa_b3fa7d4912 (IsA reserve_account reserve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reserve asset is a kind of asset", "pln": ["(: cnet_isa_3be54606e0 (IsA reserve_asset asset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reserve clause is a kind of article", "pln": ["(: cnet_isa_49f23082c0 (IsA reserve_clause article) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reserve officer training corp is a kind of corp", "pln": ["(: cnet_isa_5d9605e24e (IsA reserve_officer_training_corp corp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reservist is a kind of soldier", "pln": ["(: cnet_isa_bca97e7f9b (IsA reservist soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reservoir is a kind of lake", "pln": ["(: cnet_isa_8e96ab8c72 (IsA reservoir lake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reservoir is a kind of tank", "pln": ["(: cnet_isa_5c6d5c3e7a (IsA reservoir tank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reservoir is a kind of thing", "pln": ["(: cnet_isa_3379f8d245 (IsA reservoir thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reservoir is a kind of supply", "pln": ["(: cnet_isa_d4bc879cfa (IsA reservoir supply) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reset is a kind of device", "pln": ["(: cnet_isa_affaec44ce (IsA reset device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reset button is a kind of push button", "pln": ["(: cnet_isa_80b51753ab (IsA reset_button push_button) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resettlement is a kind of transportation", "pln": ["(: cnet_isa_1c4e63a14a (IsA resettlement transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resh is a kind of letter", "pln": ["(: cnet_isa_6ecb13e627 (IsA resh letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reshipment is a kind of dispatch", "pln": ["(: cnet_isa_438150bf1d (IsA reshipment dispatch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reshuffle is a kind of reallotment", "pln": ["(: cnet_isa_d6f40bfc46 (IsA reshuffle reallotment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reshuffle is a kind of shuffle", "pln": ["(: cnet_isa_a280f45b00 (IsA reshuffle shuffle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "residence is a kind of house", "pln": ["(: cnet_isa_2abf892812 (IsA residence house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "residence is a kind of address", "pln": ["(: cnet_isa_8cebb3ffae (IsA residence address) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "residence time is a kind of duration", "pln": ["(: cnet_isa_bc26588573 (IsA residence_time duration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "residency is a kind of act", "pln": ["(: cnet_isa_c97aabf1c2 (IsA residency act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "residency is a kind of position", "pln": ["(: cnet_isa_d544591752 (IsA residency position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resident is a kind of inhabitant", "pln": ["(: cnet_isa_3096b09b89 (IsA resident inhabitant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resident commissioner is a kind of representative", "pln": ["(: cnet_isa_994ea385e8 (IsA resident_commissioner representative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "residential district is a kind of district", "pln": ["(: cnet_isa_18a45fdd4d (IsA residential_district district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "residual is a kind of payment", "pln": ["(: cnet_isa_c6e9a2cb28 (IsA residual payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "residual oil is a kind of petroleum", "pln": ["(: cnet_isa_a08d856c2e (IsA residual_oil petroleum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "residual soil is a kind of soil", "pln": ["(: cnet_isa_715f59f913 (IsA residual_soil soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "residue is a kind of substance", "pln": ["(: cnet_isa_86b564c159 (IsA residue substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resignation is a kind of document", "pln": ["(: cnet_isa_25b1e97409 (IsA resignation document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resignation is a kind of speech act", "pln": ["(: cnet_isa_cf5d11d9f4 (IsA resignation speech_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resignation is a kind of despair", "pln": ["(: cnet_isa_a7710e9fad (IsA resignation despair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resilience is a kind of elasticity", "pln": ["(: cnet_isa_bcdaa3a772 (IsA resilience elasticity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resilience is a kind of recoil", "pln": ["(: cnet_isa_2628677590 (IsA resilience recoil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resin is a kind of organic compound", "pln": ["(: cnet_isa_57c2351acc (IsA resin organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resinoid is a kind of plastic", "pln": ["(: cnet_isa_250462a28c (IsA resinoid plastic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resistance is a kind of action", "pln": ["(: cnet_isa_543d0f89fb (IsA resistance action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resistance is a kind of group action", "pln": ["(: cnet_isa_baab1c985b (IsA resistance group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resistance is a kind of unresponsiveness", "pln": ["(: cnet_isa_2c63f630e2 (IsA resistance unresponsiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resistance is a kind of military action", "pln": ["(: cnet_isa_08e94ee9fb (IsA resistance military_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resistance is a kind of mechanical phenomenon", "pln": ["(: cnet_isa_a9a044671a (IsA resistance mechanical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "resistance is a kind of unwillingness", "pln": ["(: cnet_isa_53be30c944 (IsA resistance unwillingness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resistance is a kind of capability", "pln": ["(: cnet_isa_69f8c32834 (IsA resistance capability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resistance pyrometer is a kind of pyrometer", "pln": ["(: cnet_isa_cd01d30d56 (IsA resistance_pyrometer pyrometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resistance thermometer is a kind of thermometer", "pln": ["(: cnet_isa_97e27f8e95 (IsA resistance_thermometer thermometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resistance unit is a kind of electromagnetic unit", "pln": ["(: cnet_isa_e0ab5420e4 (IsA resistance_unit electromagnetic_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resisting arrest is a kind of assault", "pln": ["(: cnet_isa_fa60b8be5b (IsA resisting_arrest assault) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "resisting arrest is a kind of battery", "pln": ["(: cnet_isa_d87035e431 (IsA resisting_arrest battery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resistor is a kind of electrical device", "pln": ["(: cnet_isa_ec018cfa0c (IsA resistor electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resoluteness is a kind of trait", "pln": ["(: cnet_isa_534aeac76b (IsA resoluteness trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "resolution is a kind of decision", "pln": ["(: cnet_isa_497fe442d0 (IsA resolution decision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resolution is a kind of determination", "pln": ["(: cnet_isa_b02acbf8f3 (IsA resolution determination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resolution is a kind of breakdown", "pln": ["(: cnet_isa_db91db5071 (IsA resolution breakdown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "resolution is a kind of document", "pln": ["(: cnet_isa_8f15b63c1f (IsA resolution document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "resolution is a kind of physical phenomenon", "pln": ["(: cnet_isa_56a362777b (IsA resolution physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resolution is a kind of remission", "pln": ["(: cnet_isa_919f6ea299 (IsA resolution remission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resolution is a kind of harmony", "pln": ["(: cnet_isa_f286896289 (IsA resolution harmony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resolving power is a kind of physical phenomenon", "pln": ["(: cnet_isa_87748f63a5 (IsA resolving_power physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resonance is a kind of timbre", "pln": ["(: cnet_isa_bc6daefb4a (IsA resonance timbre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resonance is a kind of oscillation", "pln": ["(: cnet_isa_6c6e4d2f7e (IsA resonance oscillation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resonance is a kind of physical phenomenon", "pln": ["(: cnet_isa_cacb1592d7 (IsA resonance physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resonator is a kind of chamber", "pln": ["(: cnet_isa_c0cbd30c79 (IsA resonator chamber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resonator is a kind of circuit", "pln": ["(: cnet_isa_08827b7076 (IsA resonator circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resonator is a kind of system", "pln": ["(: cnet_isa_ef1035de58 (IsA resonator system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "resorcinol is a kind of phenol", "pln": ["(: cnet_isa_6f785c9e51 (IsA resorcinol phenol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resorption is a kind of organic process", "pln": ["(: cnet_isa_acf033305c (IsA resorption organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resort is a kind of hotel", "pln": ["(: cnet_isa_b05cefb1e4 (IsA resort hotel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resort area is a kind of area", "pln": ["(: cnet_isa_766ed92c32 (IsA resort_area area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resort hotel is a kind of hotel", "pln": ["(: cnet_isa_35cdfc7acc (IsA resort_hotel hotel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resource is a kind of asset", "pln": ["(: cnet_isa_bb71236cba (IsA resource asset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resource is a kind of inventiveness", "pln": ["(: cnet_isa_c82b3c7461 (IsA resource inventiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resourcefulness is a kind of resource", "pln": ["(: cnet_isa_ee6a1b4acd (IsA resourcefulness resource) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "respect is a kind of attitude", "pln": ["(: cnet_isa_4bc84151a0 (IsA respect attitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "respect is a kind of detail", "pln": ["(: cnet_isa_7051a9bcb9 (IsA respect detail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "respectability is a kind of honorableness", "pln": ["(: cnet_isa_26bcb15c4c (IsA respectability honorableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "respecter is a kind of follower", "pln": ["(: cnet_isa_743ca02e58 (IsA respecter follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "respect is a kind of message", "pln": ["(: cnet_isa_e3cacc6da3 (IsA respect message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "respiration is a kind of bodily process", "pln": ["(: cnet_isa_02ccf62814 (IsA respiration bodily_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "respiration is a kind of metabolism", "pln": ["(: cnet_isa_f009fcf9cb (IsA respiration metabolism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "respirator is a kind of breathing device", "pln": ["(: cnet_isa_16db546adf (IsA respirator breathing_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "respiratory acidosis is a kind of acidosis", "pln": ["(: cnet_isa_706a98c0ee (IsA respiratory_acidosis acidosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "respiratory alkalosis is a kind of alkalosis", "pln": ["(: cnet_isa_bd8592ac11 (IsA respiratory_alkalosis alkalosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "respiratory center is a kind of center", "pln": ["(: cnet_isa_6da83cd627 (IsA respiratory_center center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "respiratory disease is a kind of disease", "pln": ["(: cnet_isa_3d509bb532 (IsA respiratory_disease disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "respiratory distress syndrome is a kind of respiratory disease", "pln": ["(: cnet_isa_d2fed9128d (IsA respiratory_distress_syndrome respiratory_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "respiratory organ is a kind of internal organ", "pln": ["(: cnet_isa_9b0da137dc (IsA respiratory_organ internal_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "respiratory quotient is a kind of ratio", "pln": ["(: cnet_isa_870295a1fc (IsA respiratory_quotient ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "respiratory rate is a kind of rate", "pln": ["(: cnet_isa_f79fea17e5 (IsA respiratory_rate rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "respiratory rate is a kind of vital sign", "pln": ["(: cnet_isa_390f5721b3 (IsA respiratory_rate vital_sign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "respiratory syncytial virus is a kind of paramyxovirus", "pln": ["(: cnet_isa_457d81ee43 (IsA respiratory_syncytial_virus paramyxovirus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "respiratory system is a kind of system", "pln": ["(: cnet_isa_4397dbda99 (IsA respiratory_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "respiratory tract is a kind of tract", "pln": ["(: cnet_isa_a29050ef57 (IsA respiratory_tract tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "respiratory tract infection is a kind of infection", "pln": ["(: cnet_isa_2fe40d11af (IsA respiratory_tract_infection infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "respite is a kind of pause", "pln": ["(: cnet_isa_a03a757a33 (IsA respite pause) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resplendent quetzel is a kind of quetzal", "pln": ["(: cnet_isa_a99f719689 (IsA resplendent_quetzel quetzal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "respondent is a kind of codefendant", "pln": ["(: cnet_isa_094dc77066 (IsA respondent codefendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "respondent is a kind of communicator", "pln": ["(: cnet_isa_88e23d8acc (IsA respondent communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "response is a kind of manner", "pln": ["(: cnet_isa_86c22c8f3c (IsA response manner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "response is a kind of phrase", "pln": ["(: cnet_isa_2395da587b (IsA response phrase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "response is a kind of consequence", "pln": ["(: cnet_isa_4a7ef61967 (IsA response consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "responsibility is a kind of trustworthiness", "pln": ["(: cnet_isa_b025d20486 (IsA responsibility trustworthiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "responsiveness is a kind of quality", "pln": ["(: cnet_isa_db62dfddb1 (IsA responsiveness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "responsiveness is a kind of sensitivity", "pln": ["(: cnet_isa_520443ecc7 (IsA responsiveness sensitivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rest is a kind of inactivity", "pln": ["(: cnet_isa_fcb13c9735 (IsA rest inactivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rest is a kind of support", "pln": ["(: cnet_isa_bd9d280fb3 (IsA rest support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rest is a kind of musical notation", "pln": ["(: cnet_isa_14f1b4cca5 (IsA rest musical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rest is a kind of death", "pln": ["(: cnet_isa_2e7c9d5827 (IsA rest death) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rest is a kind of inaction", "pln": ["(: cnet_isa_581cac8470 (IsA rest inaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rest cure is a kind of treatment", "pln": ["(: cnet_isa_8b4ca4711b (IsA rest_cure treatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rest day is a kind of day of week", "pln": ["(: cnet_isa_6bb04320c9 (IsA rest_day day_of_week) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rest energy is a kind of energy", "pln": ["(: cnet_isa_ff5de2ffd8 (IsA rest_energy energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rest house is a kind of building", "pln": ["(: cnet_isa_ab1e1045b2 (IsA rest_house building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rest mass is a kind of mass", "pln": ["(: cnet_isa_3594e34352 (IsA rest_mass mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "restatement is a kind of statement", "pln": ["(: cnet_isa_b8ab5f7189 (IsA restatement statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "restaurant is a kind of establishment", "pln": ["(: cnet_isa_0b6c984644 (IsA restaurant establishment) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "restaurant is a kind of building", "pln": ["(: cnet_isa_8447c501ab (IsA restaurant building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "restaurant chain is a kind of chain", "pln": ["(: cnet_isa_3b4ba6e5af (IsA restaurant_chain chain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "restaurant is a kind of place", "pln": ["(: cnet_isa_1d49613af8 (IsA restaurant place) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "restaurant is a kind of place to eat", "pln": ["(: cnet_isa_0ee1102f37 (IsA restaurant place_to_eat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "restaurateur is a kind of owner", "pln": ["(: cnet_isa_0d689c2b3b (IsA restaurateur owner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rester is a kind of person", "pln": ["(: cnet_isa_9598f00456 (IsA rester person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "restfulness is a kind of inactiveness", "pln": ["(: cnet_isa_0fe8fc3454 (IsA restfulness inactiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "restharrow is a kind of subshrub", "pln": ["(: cnet_isa_6dda13c636 (IsA restharrow subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resting potential is a kind of electric potential", "pln": ["(: cnet_isa_eb1d46a8e0 (IsA resting_potential electric_potential) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resting spore is a kind of spore", "pln": ["(: cnet_isa_c71714229f (IsA resting_spore spore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "restitution is a kind of repair", "pln": ["(: cnet_isa_1ce1c9044f (IsA restitution repair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "restless leg syndrome is a kind of syndrome", "pln": ["(: cnet_isa_451327a92d (IsA restless_leg_syndrome syndrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "restlessness is a kind of mobility", "pln": ["(: cnet_isa_e321af8638 (IsA restlessness mobility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "restlessness is a kind of nervousness", "pln": ["(: cnet_isa_165c179754 (IsA restlessness nervousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "restlessness is a kind of irritation", "pln": ["(: cnet_isa_d5009deab3 (IsA restlessness irritation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "restoration is a kind of acquisition", "pln": ["(: cnet_isa_f413ebcc63 (IsA restoration acquisition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "restoration is a kind of repair", "pln": ["(: cnet_isa_102ec9ff28 (IsA restoration repair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "restoration is a kind of artifact", "pln": ["(: cnet_isa_f578206f1d (IsA restoration artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "restoration is a kind of model", "pln": ["(: cnet_isa_d06a3a569c (IsA restoration model) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "restrainer is a kind of person", "pln": ["(: cnet_isa_5c70defd0d (IsA restrainer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "restrainer is a kind of chemical", "pln": ["(: cnet_isa_891a1898ad (IsA restrainer chemical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "restraint is a kind of control", "pln": ["(: cnet_isa_3ae5e1394d (IsA restraint control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "restraint is a kind of device", "pln": ["(: cnet_isa_70c919d47f (IsA restraint device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "restraint is a kind of discipline", "pln": ["(: cnet_isa_5e50d001a5 (IsA restraint discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "restraint is a kind of restriction", "pln": ["(: cnet_isa_fa4263af0d (IsA restraint restriction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "restraint of trade is a kind of restraint", "pln": ["(: cnet_isa_8b65c033ea (IsA restraint_of_trade restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "restriction is a kind of restraint", "pln": ["(: cnet_isa_80bfe06f00 (IsA restriction restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "restriction is a kind of rule", "pln": ["(: cnet_isa_76dbc93131 (IsA restriction rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "restriction endonuclease is a kind of endonuclease", "pln": ["(: cnet_isa_625570fe5f (IsA restriction_endonuclease endonuclease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "restriction fragment is a kind of fragment", "pln": ["(: cnet_isa_f58fa85fde (IsA restriction_fragment fragment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "restriction site is a kind of site", "pln": ["(: cnet_isa_b72065ef03 (IsA restriction_site site) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "restrictive clause is a kind of subordinate clause", "pln": ["(: cnet_isa_a623662a3e (IsA restrictive_clause subordinate_clause) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "restrictiveness is a kind of modification", "pln": ["(: cnet_isa_00ee90b4e5 (IsA restrictiveness modification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "result is a kind of ending", "pln": ["(: cnet_isa_b2b3d630b3 (IsA result ending) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resultant is a kind of degree", "pln": ["(: cnet_isa_3d9a31ac19 (IsA resultant degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resultant role is a kind of semantic role", "pln": ["(: cnet_isa_8c4a8f31ad (IsA resultant_role semantic_role) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "resulting trust is a kind of implied trust", "pln": ["(: cnet_isa_5d2405c4a9 (IsA resulting_trust implied_trust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resumption is a kind of beginning", "pln": ["(: cnet_isa_41f54abc9f (IsA resumption beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "resurrection is a kind of revival", "pln": ["(: cnet_isa_111f1d9798 (IsA resurrection revival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resurrection plant is a kind of spikemoss", "pln": ["(: cnet_isa_575ae3b548 (IsA resurrection_plant spikemoss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resurvey is a kind of survey", "pln": ["(: cnet_isa_fd99b8483e (IsA resurvey survey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resuscitation is a kind of revival", "pln": ["(: cnet_isa_acd72c69e2 (IsA resuscitation revival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resuscitator is a kind of breathing device", "pln": ["(: cnet_isa_a6a4ca599c (IsA resuscitator breathing_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "resuspension is a kind of suspension", "pln": ["(: cnet_isa_3e7fe6ec6c (IsA resuspension suspension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retail is a kind of selling", "pln": ["(: cnet_isa_2fffca1590 (IsA retail selling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retail chain is a kind of chain", "pln": ["(: cnet_isa_68a46b1357 (IsA retail_chain chain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retail chain is a kind of distributor", "pln": ["(: cnet_isa_793099e0b0 (IsA retail_chain distributor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "retail price index is a kind of price index", "pln": ["(: cnet_isa_71c824d901 (IsA retail_price_index price_index) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retailer is a kind of distributor", "pln": ["(: cnet_isa_200c05ba50 (IsA retailer distributor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "retailer is a kind of merchant", "pln": ["(: cnet_isa_5330422b52 (IsA retailer merchant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "retailing is a kind of selling", "pln": ["(: cnet_isa_00cbf1fa0f (IsA retailing selling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retained object is a kind of object", "pln": ["(: cnet_isa_13a6278940 (IsA retained_object object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retainer is a kind of dental appliance", "pln": ["(: cnet_isa_dc25415369 (IsA retainer dental_appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retainer is a kind of fee", "pln": ["(: cnet_isa_65fdc444d5 (IsA retainer fee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retaining wall is a kind of wall", "pln": ["(: cnet_isa_4f5f1af28b (IsA retaining_wall wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retake is a kind of take", "pln": ["(: cnet_isa_cf28cdf0f6 (IsA retake take) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retaliation is a kind of return", "pln": ["(: cnet_isa_6c56a62fd1 (IsA retaliation return) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retaliatory eviction is a kind of eviction", "pln": ["(: cnet_isa_8087167731 (IsA retaliatory_eviction eviction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "retama is a kind of rosid dicot genus", "pln": ["(: cnet_isa_036643a2d3 (IsA retama rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retardant is a kind of agent", "pln": ["(: cnet_isa_e048350202 (IsA retardant agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retardation is a kind of stupidity", "pln": ["(: cnet_isa_23b2e187d4 (IsA retardation stupidity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retardation is a kind of delay", "pln": ["(: cnet_isa_8625491708 (IsA retardation delay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retarded depression is a kind of depressive disorder", "pln": ["(: cnet_isa_6c7cb8175a (IsA retarded_depression depressive_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rete testis is a kind of plexus", "pln": ["(: cnet_isa_29082070e8 (IsA rete_testis plexus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retem is a kind of shrub", "pln": ["(: cnet_isa_765494a01c (IsA retem shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retention is a kind of possession", "pln": ["(: cnet_isa_a06c913f1a (IsA retention possession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retention basin is a kind of catchment area", "pln": ["(: cnet_isa_caa1f117fd (IsA retention_basin catchment_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retentiveness is a kind of acquisitiveness", "pln": ["(: cnet_isa_f7e8f3ef7a (IsA retentiveness acquisitiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retentiveness is a kind of impermeability", "pln": ["(: cnet_isa_fac992f577 (IsA retentiveness impermeability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reticle is a kind of network", "pln": ["(: cnet_isa_04e26d0ab3 (IsA reticle network) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reticular activating system is a kind of neural network", "pln": ["(: cnet_isa_ffbdc16145 (IsA reticular_activating_system neural_network) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reticular formation is a kind of neural network", "pln": ["(: cnet_isa_5bd6eb3066 (IsA reticular_formation neural_network) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reticulated python is a kind of python", "pln": ["(: cnet_isa_7b5d315539 (IsA reticulated_python python) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reticulation is a kind of network", "pln": ["(: cnet_isa_ea5b55c906 (IsA reticulation network) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reticulation is a kind of formation", "pln": ["(: cnet_isa_801e1eec56 (IsA reticulation formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reticule is a kind of bag", "pln": ["(: cnet_isa_8df11b227e (IsA reticule bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reticuliterme is a kind of arthropod genus", "pln": ["(: cnet_isa_eec3e72385 (IsA reticuliterme arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reticuliterme flanipe is a kind of termite", "pln": ["(: cnet_isa_c382c28d7d (IsA reticuliterme_flanipe termite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reticuliterme lucifugus is a kind of termite", "pln": ["(: cnet_isa_b44a1602c6 (IsA reticuliterme_lucifugus termite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reticulocyte is a kind of red blood cell", "pln": ["(: cnet_isa_dd561ec5f3 (IsA reticulocyte red_blood_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "reticuloendothelial system is a kind of system", "pln": ["(: cnet_isa_c461a6e28d (IsA reticuloendothelial_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reticulum is a kind of stomach", "pln": ["(: cnet_isa_686e45293d (IsA reticulum stomach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reticulum is a kind of network", "pln": ["(: cnet_isa_6778ae2575 (IsA reticulum network) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retina is a kind of membrane", "pln": ["(: cnet_isa_1bb414c003 (IsA retina membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retinal detachment is a kind of visual impairment", "pln": ["(: cnet_isa_5fe7051f47 (IsA retinal_detachment visual_impairment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retinal scanning is a kind of biometric identification", "pln": ["(: cnet_isa_27230266f3 (IsA retinal_scanning biometric_identification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retinene is a kind of pigment", "pln": ["(: cnet_isa_a2b2c1b30a (IsA retinene pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retinitis is a kind of inflammation", "pln": ["(: cnet_isa_dd425727ba (IsA retinitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retinoblastoma is a kind of malignant tumor", "pln": ["(: cnet_isa_3f6d5b7a94 (IsA retinoblastoma malignant_tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retinopathy is a kind of eye disease", "pln": ["(: cnet_isa_ef1949af3c (IsA retinopathy eye_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retiree is a kind of nonworker", "pln": ["(: cnet_isa_6fa5977ccb (IsA retiree nonworker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retirement is a kind of termination", "pln": ["(: cnet_isa_0a658fc762 (IsA retirement termination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retirement is a kind of withdrawal", "pln": ["(: cnet_isa_b807e3d58f (IsA retirement withdrawal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retirement is a kind of status", "pln": ["(: cnet_isa_11bf9b0f62 (IsA retirement status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retirement community is a kind of planned community", "pln": ["(: cnet_isa_99b2152c64 (IsA retirement_community planned_community) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retort is a kind of vessel", "pln": ["(: cnet_isa_63adb0d793 (IsA retort vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retraction is a kind of motion", "pln": ["(: cnet_isa_ed30d06dda (IsA retraction motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retraction is a kind of disavowal", "pln": ["(: cnet_isa_ab6a70efeb (IsA retraction disavowal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retractor is a kind of surgical instrument", "pln": ["(: cnet_isa_1b41e71db6 (IsA retractor surgical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retraining is a kind of training", "pln": ["(: cnet_isa_ff6306a864 (IsA retraining training) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retread is a kind of car tire", "pln": ["(: cnet_isa_230abdedee (IsA retread car_tire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retreat is a kind of withdrawal", "pln": ["(: cnet_isa_5c40594b8e (IsA retreat withdrawal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retreat is a kind of area", "pln": ["(: cnet_isa_67aa135e8c (IsA retreat area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retreat is a kind of bugle call", "pln": ["(: cnet_isa_ee673c89c5 (IsA retreat bugle_call) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retreat is a kind of signal", "pln": ["(: cnet_isa_3c03393186 (IsA retreat signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retreatant is a kind of participant", "pln": ["(: cnet_isa_18e630c5db (IsA retreatant participant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retreated is a kind of people", "pln": ["(: cnet_isa_5220f6b3d2 (IsA retreated people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retrenchment is a kind of economy", "pln": ["(: cnet_isa_072bba787a (IsA retrenchment economy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retrenchment is a kind of entrenchment", "pln": ["(: cnet_isa_29377b79fb (IsA retrenchment entrenchment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retrial is a kind of trial", "pln": ["(: cnet_isa_f745614b30 (IsA retrial trial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retribution is a kind of correction", "pln": ["(: cnet_isa_b292fc3628 (IsA retribution correction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "retribution is a kind of penalty", "pln": ["(: cnet_isa_0f78bb08eb (IsA retribution penalty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retrieval is a kind of memory", "pln": ["(: cnet_isa_48065004ef (IsA retrieval memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "retrieval is a kind of computer operation", "pln": ["(: cnet_isa_7701807319 (IsA retrieval computer_operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retriever is a kind of sporting dog", "pln": ["(: cnet_isa_5d623d2d12 (IsA retriever sporting_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retro is a kind of fashion", "pln": ["(: cnet_isa_b694c4eb94 (IsA retro fashion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retrobulbar neuritis is a kind of neuritis", "pln": ["(: cnet_isa_4cabb40be2 (IsA retrobulbar_neuritis neuritis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retrofit is a kind of addition", "pln": ["(: cnet_isa_82c434b609 (IsA retrofit addition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retrofit is a kind of component", "pln": ["(: cnet_isa_c05461b690 (IsA retrofit component) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retroflection is a kind of motion", "pln": ["(: cnet_isa_0d2af713eb (IsA retroflection motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retroflection is a kind of articulation", "pln": ["(: cnet_isa_d77f4dc33e (IsA retroflection articulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retrograde amnesia is a kind of amnesia", "pln": ["(: cnet_isa_de19398e67 (IsA retrograde_amnesia amnesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retromandibular vein is a kind of facial vein", "pln": ["(: cnet_isa_9d2667d62d (IsA retromandibular_vein facial_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retronym is a kind of word", "pln": ["(: cnet_isa_ab6e68cb0c (IsA retronym word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retrophyllum is a kind of gymnosperm genus", "pln": ["(: cnet_isa_d89995bae5 (IsA retrophyllum gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retrorocket is a kind of rocket", "pln": ["(: cnet_isa_405332f683 (IsA retrorocket rocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retrospect is a kind of contemplation", "pln": ["(: cnet_isa_e554a83511 (IsA retrospect contemplation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retrospection is a kind of memory", "pln": ["(: cnet_isa_75d62e6021 (IsA retrospection memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retrospection is a kind of mention", "pln": ["(: cnet_isa_ec1bf7978b (IsA retrospection mention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retrospective is a kind of art exhibition", "pln": ["(: cnet_isa_e6cf68a019 (IsA retrospective art_exhibition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retroversion is a kind of translation", "pln": ["(: cnet_isa_554b0c5e05 (IsA retroversion translation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retroversion is a kind of abnormality", "pln": ["(: cnet_isa_39abbec506 (IsA retroversion abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retrovirus is a kind of animal virus", "pln": ["(: cnet_isa_895888baa4 (IsA retrovirus animal_virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retrovision is a kind of vision", "pln": ["(: cnet_isa_2851e86d53 (IsA retrovision vision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "retsina is a kind of wine", "pln": ["(: cnet_isa_d42542b895 (IsA retsina wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "return is a kind of arrival", "pln": ["(: cnet_isa_46983c8607 (IsA return arrival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "return is a kind of group action", "pln": ["(: cnet_isa_0302661e92 (IsA return group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "return is a kind of motion", "pln": ["(: cnet_isa_e370c0b13a (IsA return motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "return is a kind of tennis stroke", "pln": ["(: cnet_isa_2cabd0b571 (IsA return tennis_stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "return is a kind of run", "pln": ["(: cnet_isa_295d12f3c6 (IsA return run) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "return is a kind of turning", "pln": ["(: cnet_isa_281864e260 (IsA return turning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "return is a kind of income", "pln": ["(: cnet_isa_b5d320e5aa (IsA return income) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "return address is a kind of address", "pln": ["(: cnet_isa_885369231b (IsA return_address address) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "return key is a kind of key", "pln": ["(: cnet_isa_117380a034 (IsA return_key key) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "return on invested capital is a kind of rate of return", "pln": ["(: cnet_isa_0600e1138c (IsA return_on_invested_capital rate_of_return) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "returning officer is a kind of official", "pln": ["(: cnet_isa_ebc1a211b0 (IsA returning_officer official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reuben is a kind of sandwich", "pln": ["(: cnet_isa_94bd229256 (IsA reuben sandwich) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reunion is a kind of union", "pln": ["(: cnet_isa_e80ae4d81d (IsA reunion union) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reunion is a kind of party", "pln": ["(: cnet_isa_620e564e2d (IsA reunion party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reuptake is a kind of uptake", "pln": ["(: cnet_isa_782a0a08c0 (IsA reuptake uptake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reusable program is a kind of program", "pln": ["(: cnet_isa_4fb229bae1 (IsA reusable_program program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reusable routine is a kind of routine", "pln": ["(: cnet_isa_51d66a9ae5 (IsA reusable_routine routine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revealed religion is a kind of religion", "pln": ["(: cnet_isa_0f519cfd7f (IsA revealed_religion religion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reveille is a kind of awakening", "pln": ["(: cnet_isa_0cd90fe6d2 (IsA reveille awakening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reveille is a kind of bugle call", "pln": ["(: cnet_isa_ffa20f402b (IsA reveille bugle_call) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revel is a kind of merrymaking", "pln": ["(: cnet_isa_557f1a883b (IsA revel merrymaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revelation is a kind of new idea", "pln": ["(: cnet_isa_eae28a7403 (IsA revelation new_idea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revelation is a kind of insight", "pln": ["(: cnet_isa_ac183b0173 (IsA revelation insight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revelation is a kind of informing", "pln": ["(: cnet_isa_276f0f2509 (IsA revelation informing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reveler is a kind of celebrant", "pln": ["(: cnet_isa_aba9644449 (IsA reveler celebrant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revenant is a kind of ghost", "pln": ["(: cnet_isa_4c24c35885 (IsA revenant ghost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revenant is a kind of person", "pln": ["(: cnet_isa_735d9931a9 (IsA revenant person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revenue bond is a kind of bond", "pln": ["(: cnet_isa_bff2e8b615 (IsA revenue_bond bond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revenue sharing is a kind of distribution", "pln": ["(: cnet_isa_89766ee61b (IsA revenue_sharing distribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revenue stamp is a kind of sheet", "pln": ["(: cnet_isa_2d12c3fe9d (IsA revenue_stamp sheet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revenue tariff is a kind of duty", "pln": ["(: cnet_isa_591305181c (IsA revenue_tariff duty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revenuer is a kind of government agent", "pln": ["(: cnet_isa_deb6264736 (IsA revenuer government_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reverberatory furnace is a kind of furnace", "pln": ["(: cnet_isa_404c77ccc9 (IsA reverberatory_furnace furnace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reverence is a kind of action", "pln": ["(: cnet_isa_56dd503073 (IsA reverence action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reverence is a kind of attitude", "pln": ["(: cnet_isa_41f60da935 (IsA reverence attitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reverend is a kind of title", "pln": ["(: cnet_isa_fcdd3b3d14 (IsA reverend title) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "reverie is a kind of abstractedness", "pln": ["(: cnet_isa_ee96450b38 (IsA reverie abstractedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reverie is a kind of dream", "pln": ["(: cnet_isa_bb626ac76b (IsA reverie dream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rever is a kind of lapel", "pln": ["(: cnet_isa_55ee3cc5e2 (IsA rever lapel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reversal is a kind of change of state", "pln": ["(: cnet_isa_2d2101c44c (IsA reversal change_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reversal is a kind of decision making", "pln": ["(: cnet_isa_eb14ae9bbe (IsA reversal decision_making) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reversal is a kind of turning", "pln": ["(: cnet_isa_b305307a00 (IsA reversal turning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reversal is a kind of judgment", "pln": ["(: cnet_isa_30a4493546 (IsA reversal judgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reverse is a kind of run", "pln": ["(: cnet_isa_5c408353f7 (IsA reverse run) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reverse is a kind of gear", "pln": ["(: cnet_isa_3970c96d14 (IsA reverse gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reverse is a kind of side", "pln": ["(: cnet_isa_f99eeff51e (IsA reverse side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reverse is a kind of happening", "pln": ["(: cnet_isa_536fe099b1 (IsA reverse happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reverse is a kind of opposition", "pln": ["(: cnet_isa_8ae8136a4d (IsA reverse opposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reverse hang is a kind of hang", "pln": ["(: cnet_isa_93dac9e59e (IsA reverse_hang hang) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reverse osmosis is a kind of osmosis", "pln": ["(: cnet_isa_7fecee3547 (IsA reverse_osmosis osmosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reverse split is a kind of decrease", "pln": ["(: cnet_isa_b5a42adbeb (IsA reverse_split decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reverse transcriptase is a kind of polymerase", "pln": ["(: cnet_isa_2dac887015 (IsA reverse_transcriptase polymerase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reverse transcriptase inhibitor is a kind of antiviral", "pln": ["(: cnet_isa_b5e4a7b2df (IsA reverse_transcriptase_inhibitor antiviral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reversibility is a kind of changeableness", "pln": ["(: cnet_isa_88e007812d (IsA reversibility changeableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reversible is a kind of garment", "pln": ["(: cnet_isa_4d7fd8eefa (IsA reversible garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reversible process is a kind of process", "pln": ["(: cnet_isa_38dbe3c57e (IsA reversible_process process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reversing thermometer is a kind of thermometer", "pln": ["(: cnet_isa_eb876c85af (IsA reversing_thermometer thermometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reversion is a kind of change of direction", "pln": ["(: cnet_isa_e001b78cee (IsA reversion change_of_direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "reversion is a kind of mutation", "pln": ["(: cnet_isa_fd4b0c5b33 (IsA reversion mutation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reversion is a kind of interest", "pln": ["(: cnet_isa_a16585caf7 (IsA reversion interest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reversionary annuity is a kind of annuity", "pln": ["(: cnet_isa_0e4aaa5a25 (IsA reversionary_annuity annuity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reversioner is a kind of party", "pln": ["(: cnet_isa_421b426548 (IsA reversioner party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "revetment is a kind of barrier", "pln": ["(: cnet_isa_35d88c4616 (IsA revetment barrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "revetment is a kind of facing", "pln": ["(: cnet_isa_e471f53595 (IsA revetment facing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "review is a kind of accounting", "pln": ["(: cnet_isa_d56145f67e (IsA review accounting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "review is a kind of exercise", "pln": ["(: cnet_isa_bf6e921199 (IsA review exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "review is a kind of criticism", "pln": ["(: cnet_isa_203bfd2326 (IsA review criticism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "review is a kind of periodical", "pln": ["(: cnet_isa_e9af5e5f64 (IsA review periodical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "review is a kind of proceeding", "pln": ["(: cnet_isa_1897efc07a (IsA review proceeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "review copy is a kind of book", "pln": ["(: cnet_isa_20ece66e2f (IsA review_copy book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reviewer is a kind of critic", "pln": ["(: cnet_isa_cc0ca685f5 (IsA reviewer critic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reviewing stand is a kind of stand", "pln": ["(: cnet_isa_24c6820f98 (IsA reviewing_stand stand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revision is a kind of transformation", "pln": ["(: cnet_isa_231c030d28 (IsA revision transformation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revision is a kind of rewriting", "pln": ["(: cnet_isa_5e48f9225d (IsA revision rewriting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revisionism is a kind of bolshevism", "pln": ["(: cnet_isa_8a79b7bbb8 (IsA revisionism bolshevism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revisionist is a kind of communist", "pln": ["(: cnet_isa_cb0e41d519 (IsA revisionist communist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revival is a kind of improvement", "pln": ["(: cnet_isa_8ecfec43df (IsA revival improvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revival is a kind of rally", "pln": ["(: cnet_isa_ae85ceee90 (IsA revival rally) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "revivalism is a kind of evangelicalism", "pln": ["(: cnet_isa_faa0c6e5df (IsA revivalism evangelicalism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revocation is a kind of abrogation", "pln": ["(: cnet_isa_320c2d91f1 (IsA revocation abrogation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revocation is a kind of state", "pln": ["(: cnet_isa_c88e8e037e (IsA revocation state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revoke is a kind of mistake", "pln": ["(: cnet_isa_dfd52e2f4d (IsA revoke mistake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revolution is a kind of group action", "pln": ["(: cnet_isa_675bec3da0 (IsA revolution group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "revolution is a kind of change", "pln": ["(: cnet_isa_8925c29b9c (IsA revolution change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revolutionary calendar is a kind of solar calendar", "pln": ["(: cnet_isa_741b8f304b (IsA revolutionary_calendar solar_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revolutionary calendar month is a kind of calendar month", "pln": ["(: cnet_isa_2fe4adaa32 (IsA revolutionary_calendar_month calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "revolutionary group is a kind of political unit", "pln": ["(: cnet_isa_4cf21f8dc4 (IsA revolutionary_group political_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revolutionism is a kind of belief", "pln": ["(: cnet_isa_e65d5a58cb (IsA revolutionism belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revolutionist is a kind of radical", "pln": ["(: cnet_isa_88415b8f92 (IsA revolutionist radical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revolution per minute is a kind of rate", "pln": ["(: cnet_isa_968f606601 (IsA revolution_per_minute rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revolver is a kind of gun", "pln": ["(: cnet_isa_9c6dd861d0 (IsA revolver gun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revolver is a kind of weapon", "pln": ["(: cnet_isa_fdda5cd0e6 (IsA revolver weapon) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revolver is a kind of pistol", "pln": ["(: cnet_isa_c327c83bf6 (IsA revolver pistol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revolving charge account is a kind of credit account", "pln": ["(: cnet_isa_b202acf12b (IsA revolving_charge_account credit_account) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revolving door is a kind of door", "pln": ["(: cnet_isa_1272a4dbe3 (IsA revolving_door door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revolving door is a kind of social group", "pln": ["(: cnet_isa_6bb37bd83e (IsA revolving_door social_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revolving fund is a kind of fund", "pln": ["(: cnet_isa_fef56d2b85 (IsA revolving_fund fund) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "revue is a kind of variety show", "pln": ["(: cnet_isa_91751cf4fb (IsA revue variety_show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rewa rewa is a kind of angiospermous tree", "pln": ["(: cnet_isa_91b932f5dd (IsA rewa_rewa angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reward is a kind of blessing", "pln": ["(: cnet_isa_07f0f3e0f8 (IsA reward blessing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reward is a kind of offer", "pln": ["(: cnet_isa_488cb6ad0f (IsA reward offer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reward is a kind of payment", "pln": ["(: cnet_isa_a3d6bb3f06 (IsA reward payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rewording is a kind of rewriting", "pln": ["(: cnet_isa_376aad4a20 (IsA rewording rewriting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rewrite is a kind of writing", "pln": ["(: cnet_isa_9aff6e7615 (IsA rewrite writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rewriting is a kind of editing", "pln": ["(: cnet_isa_e739610868 (IsA rewriting editing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rex begonia is a kind of begonia", "pln": ["(: cnet_isa_89874e75b8 (IsA rex_begonia begonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reye s syndrome is a kind of brain disorder", "pln": ["(: cnet_isa_b0118fb132 (IsA reye_s_syndrome brain_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reye s syndrome is a kind of syndrome", "pln": ["(: cnet_isa_9af4cd3daa (IsA reye_s_syndrome syndrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "reynard is a kind of fox", "pln": ["(: cnet_isa_df2d8ecc30 (IsA reynard fox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rh antibody is a kind of antibody", "pln": ["(: cnet_isa_2792ac4a8b (IsA rh_antibody antibody) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rh incompatibility is a kind of incompatibility", "pln": ["(: cnet_isa_b90439ae0c (IsA rh_incompatibility incompatibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rh negative blood type is a kind of blood group", "pln": ["(: cnet_isa_986a9d4365 (IsA rh_negative_blood_type blood_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rh positive blood type is a kind of blood group", "pln": ["(: cnet_isa_ef53b51637 (IsA rh_positive_blood_type blood_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhabdomyoma is a kind of myoma", "pln": ["(: cnet_isa_8e4aa78df0 (IsA rhabdomyoma myoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhabdomyosarcoma is a kind of sarcoma", "pln": ["(: cnet_isa_52c882f134 (IsA rhabdomyosarcoma sarcoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhabdoviridae is a kind of arbovirus", "pln": ["(: cnet_isa_29542becb3 (IsA rhabdoviridae arbovirus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhabdovirus is a kind of animal virus", "pln": ["(: cnet_isa_20ef83400d (IsA rhabdovirus animal_virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhadamanthus is a kind of greek deity", "pln": ["(: cnet_isa_7e2d96b6d4 (IsA rhadamanthus greek_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rhaeto romance is a kind of romance", "pln": ["(: cnet_isa_fe426dde67 (IsA rhaeto_romance romance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhagade is a kind of skin disease", "pln": ["(: cnet_isa_1dd750d977 (IsA rhagade skin_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rhagoletis is a kind of arthropod genus", "pln": ["(: cnet_isa_228014a811 (IsA rhagoletis arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rhamnaceae is a kind of dicot family", "pln": ["(: cnet_isa_31b9480749 (IsA rhamnaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhamnale is a kind of plant order", "pln": ["(: cnet_isa_373d0abc50 (IsA rhamnale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhamnus is a kind of dicot genus", "pln": ["(: cnet_isa_43c8dc30ff (IsA rhamnus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhapis is a kind of monocot genus", "pln": ["(: cnet_isa_2b32e79695 (IsA rhapis monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhapsody is a kind of epic poem", "pln": ["(: cnet_isa_784974b1a3 (IsA rhapsody epic_poem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhapsody is a kind of joy", "pln": ["(: cnet_isa_76d3130448 (IsA rhapsody joy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rhapsody is a kind of music", "pln": ["(: cnet_isa_f66a74c24e (IsA rhapsody music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhea is a kind of ratite", "pln": ["(: cnet_isa_f30719ebf8 (IsA rhea ratite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rheidae is a kind of bird family", "pln": ["(: cnet_isa_f0ee43bb4c (IsA rheidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rheiforme is a kind of animal order", "pln": ["(: cnet_isa_e1d19cfc3c (IsA rheiforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rheingold arborvitae is a kind of plant", "pln": ["(: cnet_isa_0e3fdc8849 (IsA rheingold_arborvitae plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhenium is a kind of metallic element", "pln": ["(: cnet_isa_96235c231f (IsA rhenium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rheology is a kind of physic", "pln": ["(: cnet_isa_31ae914101 (IsA rheology physic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rheometer is a kind of measuring instrument", "pln": ["(: cnet_isa_d802230adc (IsA rheometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rheostat is a kind of resistor", "pln": ["(: cnet_isa_ffecacadb4 (IsA rheostat resistor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhesus is a kind of macaque", "pln": ["(: cnet_isa_5f6f68b4a8 (IsA rhesus macaque) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhesus factor is a kind of antigen", "pln": ["(: cnet_isa_04b28a5c3e (IsA rhesus_factor antigen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhetoric is a kind of literary study", "pln": ["(: cnet_isa_7055430d4c (IsA rhetoric literary_study) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhetoric is a kind of expressive style", "pln": ["(: cnet_isa_3958de038d (IsA rhetoric expressive_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhetorical device is a kind of device", "pln": ["(: cnet_isa_06b6ccbc92 (IsA rhetorical_device device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhetorical question is a kind of statement", "pln": ["(: cnet_isa_68e09e2860 (IsA rhetorical_question statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rheum is a kind of dicot genus", "pln": ["(: cnet_isa_6af0207de8 (IsA rheum dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rheum is a kind of discharge", "pln": ["(: cnet_isa_cb90a99a0f (IsA rheum discharge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rheumatic is a kind of sick person", "pln": ["(: cnet_isa_f707de498d (IsA rheumatic sick_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rheumatic aortitis is a kind of aortitis", "pln": ["(: cnet_isa_28098f29e4 (IsA rheumatic_aortitis aortitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rheumatic fever is a kind of infectious disease", "pln": ["(: cnet_isa_8404778535 (IsA rheumatic_fever infectious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rheumatic heart disease is a kind of heart disease", "pln": ["(: cnet_isa_7d15c1acef (IsA rheumatic_heart_disease heart_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rheumatism is a kind of disease", "pln": ["(: cnet_isa_81d029642f (IsA rheumatism disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rheumatoid arthritis is a kind of arthritis", "pln": ["(: cnet_isa_b5055cecaa (IsA rheumatoid_arthritis arthritis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rheumatoid arthritis is a kind of autoimmune disease", "pln": ["(: cnet_isa_c6cf713210 (IsA rheumatoid_arthritis autoimmune_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rheumatoid factor is a kind of autoantibody", "pln": ["(: cnet_isa_dd9f50bf16 (IsA rheumatoid_factor autoantibody) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rheumatologist is a kind of specialist", "pln": ["(: cnet_isa_e9ccaa9f28 (IsA rheumatologist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rheumatology is a kind of medicine", "pln": ["(: cnet_isa_0714703661 (IsA rheumatology medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rhexia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_0d3acbe652 (IsA rhexia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhibhus is a kind of hindu deity", "pln": ["(: cnet_isa_80134cfffb (IsA rhibhus hindu_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhincodon is a kind of fish genus", "pln": ["(: cnet_isa_f0dcdaccb7 (IsA rhincodon fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhincodontidae is a kind of fish family", "pln": ["(: cnet_isa_ea4956e6e1 (IsA rhincodontidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhine wine is a kind of white wine", "pln": ["(: cnet_isa_9d12732f86 (IsA rhine_wine white_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhinencephalon is a kind of center", "pln": ["(: cnet_isa_15518268a4 (IsA rhinencephalon center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhinestone is a kind of rock crystal", "pln": ["(: cnet_isa_fb6bf50a25 (IsA rhinestone rock_crystal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhinion is a kind of craniometric point", "pln": ["(: cnet_isa_921ed3b242 (IsA rhinion craniometric_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rhinitis is a kind of inflammation", "pln": ["(: cnet_isa_46fe2ccb71 (IsA rhinitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "rhinoceros beetle is a kind of scarabaeid beetle", "pln": ["(: cnet_isa_6046195d53 (IsA rhinoceros_beetle scarabaeid_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhinobatidae is a kind of fish family", "pln": ["(: cnet_isa_ddbc1c4ddf (IsA rhinobatidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhinocero is a kind of animal", "pln": ["(: cnet_isa_a25147d596 (IsA rhinocero animal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhinocero is a kind of odd toed ungulate", "pln": ["(: cnet_isa_8c7d63663e (IsA rhinocero odd_toed_ungulate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhinocero beetle is a kind of scarabaeid beetle", "pln": ["(: cnet_isa_9080f045c0 (IsA rhinocero_beetle scarabaeid_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhinocerotidae is a kind of mammal family", "pln": ["(: cnet_isa_5d979fa316 (IsA rhinocerotidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhinolophidae is a kind of mammal family", "pln": ["(: cnet_isa_265ebec325 (IsA rhinolophidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhinonicteris is a kind of mammal genus", "pln": ["(: cnet_isa_9f7b3dbf1d (IsA rhinonicteris mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rhinopathy is a kind of pathology", "pln": ["(: cnet_isa_a9f389c907 (IsA rhinopathy pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhinophyma is a kind of rhinopathy", "pln": ["(: cnet_isa_9861ca65aa (IsA rhinophyma rhinopathy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhinoptera is a kind of fish genus", "pln": ["(: cnet_isa_4f59691d57 (IsA rhinoptera fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhinorrhea is a kind of symptom", "pln": ["(: cnet_isa_9647696a22 (IsA rhinorrhea symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhinoscope is a kind of medical instrument", "pln": ["(: cnet_isa_1d48cc90ff (IsA rhinoscope medical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhinoscopy is a kind of examination", "pln": ["(: cnet_isa_f1e7818ab3 (IsA rhinoscopy examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhinosporidiosis is a kind of fungal infection", "pln": ["(: cnet_isa_b4f754522e (IsA rhinosporidiosis fungal_infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhinosporidiosis is a kind of rhinopathy", "pln": ["(: cnet_isa_b789f7a736 (IsA rhinosporidiosis rhinopathy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhinostenosis is a kind of rhinopathy", "pln": ["(: cnet_isa_dad0e69a8f (IsA rhinostenosis rhinopathy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhinostenosis is a kind of stenosis", "pln": ["(: cnet_isa_c4c7cec7e1 (IsA rhinostenosis stenosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhinotermitidae is a kind of arthropod family", "pln": ["(: cnet_isa_2f4b130118 (IsA rhinotermitidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhinotomy is a kind of operation", "pln": ["(: cnet_isa_9a9faedb3e (IsA rhinotomy operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhinotracheitis is a kind of animal disease", "pln": ["(: cnet_isa_501b042681 (IsA rhinotracheitis animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rhinovirus is a kind of picornavirus", "pln": ["(: cnet_isa_c0893faab0 (IsA rhinovirus picornavirus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhipsalis is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_6eee483dcc (IsA rhipsalis caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhizobiaceae is a kind of bacteria family", "pln": ["(: cnet_isa_45337dcf19 (IsA rhizobiaceae bacteria_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhizobium is a kind of bacteria genus", "pln": ["(: cnet_isa_f5e1484f75 (IsA rhizobium bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhizoctinia is a kind of fungus", "pln": ["(: cnet_isa_11e7623f01 (IsA rhizoctinia fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhizoctinia disease is a kind of plant disease", "pln": ["(: cnet_isa_508f5c16e0 (IsA rhizoctinia_disease plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhizoid is a kind of fibril", "pln": ["(: cnet_isa_8de3411d0d (IsA rhizoid fibril) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhizomatous begonia is a kind of begonia", "pln": ["(: cnet_isa_4b0bc4c501 (IsA rhizomatous_begonia begonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rhizome is a kind of stalk", "pln": ["(: cnet_isa_2ea332beaa (IsA rhizome stalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhizomorph is a kind of hypha", "pln": ["(: cnet_isa_5fc1fe51f7 (IsA rhizomorph hypha) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhizophora is a kind of dicot genus", "pln": ["(: cnet_isa_d832df8e7c (IsA rhizophora dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhizophoraceae is a kind of dicot family", "pln": ["(: cnet_isa_d6f489a27c (IsA rhizophoraceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhizopod is a kind of protozoan", "pln": ["(: cnet_isa_a6f76e3bcf (IsA rhizopod protozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhizopoda is a kind of class", "pln": ["(: cnet_isa_e2134db5ef (IsA rhizopoda class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhizopogon is a kind of fungus genus", "pln": ["(: cnet_isa_952a934f37 (IsA rhizopogon fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhizopogon idahoensis is a kind of false truffle", "pln": ["(: cnet_isa_c378d22cb1 (IsA rhizopogon_idahoensis false_truffle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhizopogonaceae is a kind of fungus family", "pln": ["(: cnet_isa_135ce3c4bd (IsA rhizopogonaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhizopus is a kind of mold", "pln": ["(: cnet_isa_a25e6b0998 (IsA rhizopus mold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhizotomy is a kind of operation", "pln": ["(: cnet_isa_7490079169 (IsA rhizotomy operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rho is a kind of letter", "pln": ["(: cnet_isa_db68dad547 (IsA rho letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhode island is a kind of state", "pln": ["(: cnet_isa_ca4db5e17f (IsA rhode_island state) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhode island is a kind of state in america", "pln": ["(: cnet_isa_68831f8564 (IsA rhode_island state_in_america) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhode island red is a kind of chicken", "pln": ["(: cnet_isa_980811ad6b (IsA rhode_island_red chicken) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rhode islander is a kind of american", "pln": ["(: cnet_isa_579d467b16 (IsA rhode_islander american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhode grass is a kind of finger grass", "pln": ["(: cnet_isa_cc6d588c49 (IsA rhode_grass finger_grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhode scholar is a kind of scholar", "pln": ["(: cnet_isa_1d6d81b380 (IsA rhode_scholar scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhodesian ridgeback is a kind of hunting dog", "pln": ["(: cnet_isa_406bc0c081 (IsA rhodesian_ridgeback hunting_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rhodium is a kind of metallic element", "pln": ["(: cnet_isa_d48735a19d (IsA rhodium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhodochrosite is a kind of mineral", "pln": ["(: cnet_isa_a76baaa1b5 (IsA rhodochrosite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhododendron is a kind of shrub", "pln": ["(: cnet_isa_c19be1c203 (IsA rhododendron shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhodolite is a kind of garnet", "pln": ["(: cnet_isa_00bc9cd699 (IsA rhodolite garnet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhodonite is a kind of mineral", "pln": ["(: cnet_isa_4d4c1afc90 (IsA rhodonite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhodophyceae is a kind of class", "pln": ["(: cnet_isa_2da41a5c93 (IsA rhodophyceae class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rhodophyta is a kind of division", "pln": ["(: cnet_isa_9a011d156d (IsA rhodophyta division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhodosphaera is a kind of dicot genus", "pln": ["(: cnet_isa_e390ad7b11 (IsA rhodosphaera dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhodymenia is a kind of protoctist genus", "pln": ["(: cnet_isa_1513921293 (IsA rhodymenia protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rhodymeniaceae is a kind of protoctist family", "pln": ["(: cnet_isa_12c2c51ece (IsA rhodymeniaceae protoctist_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhoeadale is a kind of plant order", "pln": ["(: cnet_isa_c1dc45e5d8 (IsA rhoeadale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rhombohedron is a kind of hexahedron", "pln": ["(: cnet_isa_e74ca3855c (IsA rhombohedron hexahedron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhombohedron is a kind of parallelepiped", "pln": ["(: cnet_isa_d10e19bbc9 (IsA rhombohedron parallelepiped) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rhomboid is a kind of skeletal muscle", "pln": ["(: cnet_isa_00a4b85b61 (IsA rhomboid skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhomboid is a kind of parallelogram", "pln": ["(: cnet_isa_31cf7a3ea5 (IsA rhomboid parallelogram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhomboid minor muscle is a kind of rhomboid", "pln": ["(: cnet_isa_9d60254c07 (IsA rhomboid_minor_muscle rhomboid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhomboideus major muscle is a kind of rhomboid", "pln": ["(: cnet_isa_ee5d0dfc42 (IsA rhomboideus_major_muscle rhomboid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rhombus is a kind of parallelogram", "pln": ["(: cnet_isa_f7fb8bd685 (IsA rhombus parallelogram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhonchus is a kind of noise", "pln": ["(: cnet_isa_10b7b78b43 (IsA rhonchus noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhone wine is a kind of wine", "pln": ["(: cnet_isa_5d7858f710 (IsA rhone_wine wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhubarb is a kind of herb", "pln": ["(: cnet_isa_66905f33fb (IsA rhubarb herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhubarb pie is a kind of pie", "pln": ["(: cnet_isa_da3a495960 (IsA rhubarb_pie pie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rhumb line is a kind of line", "pln": ["(: cnet_isa_be707d6349 (IsA rhumb_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhus is a kind of dicot genus", "pln": ["(: cnet_isa_53e8f85c53 (IsA rhus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rhus dermatitis is a kind of contact dermatitis", "pln": ["(: cnet_isa_5610f7881d (IsA rhus_dermatitis contact_dermatitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhyacotriton is a kind of amphibian genus", "pln": ["(: cnet_isa_fe5d92517e (IsA rhyacotriton amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhyme is a kind of versification", "pln": ["(: cnet_isa_cf5f72c5be (IsA rhyme versification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhyme royal is a kind of stanza", "pln": ["(: cnet_isa_a6ee44d053 (IsA rhyme_royal stanza) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhymer is a kind of writer", "pln": ["(: cnet_isa_9d51b42bf6 (IsA rhymer writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhyming slang is a kind of cant", "pln": ["(: cnet_isa_c765ff5ee7 (IsA rhyming_slang cant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhynchocephalia is a kind of animal order", "pln": ["(: cnet_isa_88dab6dcfb (IsA rhynchocephalia animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhynchoelap is a kind of reptile genus", "pln": ["(: cnet_isa_c683939771 (IsA rhynchoelap reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rhyncostylis is a kind of monocot genus", "pln": ["(: cnet_isa_8fe1e95799 (IsA rhyncostylis monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhynia is a kind of fern genus", "pln": ["(: cnet_isa_ca44c87e4a (IsA rhynia fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rhyniaceae is a kind of fern family", "pln": ["(: cnet_isa_12f5cb13ee (IsA rhyniaceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhyolite is a kind of igneous rock", "pln": ["(: cnet_isa_7b453a3fa1 (IsA rhyolite igneous_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhythm is a kind of cyclicity", "pln": ["(: cnet_isa_2679dfed53 (IsA rhythm cyclicity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhythm is a kind of musical time", "pln": ["(: cnet_isa_fb60158b53 (IsA rhythm musical_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhythm is a kind of prosody", "pln": ["(: cnet_isa_33a441d211 (IsA rhythm prosody) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhythm is a kind of template", "pln": ["(: cnet_isa_e8788a4778 (IsA rhythm template) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhythm and blue is a kind of black music", "pln": ["(: cnet_isa_229c1f3407 (IsA rhythm_and_blue black_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhythm and blue is a kind of popular music", "pln": ["(: cnet_isa_f6920c9f57 (IsA rhythm_and_blue popular_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhythm and blue musician is a kind of musician", "pln": ["(: cnet_isa_d9c557e160 (IsA rhythm_and_blue_musician musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rhythm method of birth control is a kind of natural family planning", "pln": ["(: cnet_isa_4bee1c72ad (IsA rhythm_method_of_birth_control natural_family_planning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rhythmicity is a kind of sound property", "pln": ["(: cnet_isa_f516c02f19 (IsA rhythmicity sound_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rib is a kind of molding", "pln": ["(: cnet_isa_e44209fba7 (IsA rib molding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rib is a kind of support", "pln": ["(: cnet_isa_dca824d0fb (IsA rib support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rib is a kind of structure", "pln": ["(: cnet_isa_1ba8459400 (IsA rib structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rib is a kind of remark", "pln": ["(: cnet_isa_a46712bc01 (IsA rib remark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rib is a kind of cut", "pln": ["(: cnet_isa_ea19be4c27 (IsA rib cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rib is a kind of bone", "pln": ["(: cnet_isa_0a878d2465 (IsA rib bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rib cage is a kind of skeletal structure", "pln": ["(: cnet_isa_9b38f6eb18 (IsA rib_cage skeletal_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rib joint plier is a kind of plier", "pln": ["(: cnet_isa_c008c3a0fa (IsA rib_joint_plier plier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rib roast is a kind of roast", "pln": ["(: cnet_isa_d47f55d6b7 (IsA rib_roast roast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ribald is a kind of vulgarian", "pln": ["(: cnet_isa_fdb05bfa8d (IsA ribald vulgarian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ribaldry is a kind of wit", "pln": ["(: cnet_isa_29bdf09703 (IsA ribaldry wit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riband is a kind of ribbon", "pln": ["(: cnet_isa_fe5f97b7b2 (IsA riband ribbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ribbed vault is a kind of vault", "pln": ["(: cnet_isa_c9a35757b9 (IsA ribbed_vault vault) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ribbing is a kind of framework", "pln": ["(: cnet_isa_f6b1a7519f (IsA ribbing framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ribbon is a kind of notion", "pln": ["(: cnet_isa_d444a65cfe (IsA ribbon notion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ribbon is a kind of strip", "pln": ["(: cnet_isa_f0c460542e (IsA ribbon strip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ribbon is a kind of object", "pln": ["(: cnet_isa_532db2d579 (IsA ribbon object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ribbon development is a kind of building complex", "pln": ["(: cnet_isa_132beaba2d (IsA ribbon_development building_complex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ribbon fern is a kind of adder s tongue", "pln": ["(: cnet_isa_1916e90452 (IsA ribbon_fern adder_s_tongue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ribbon fern is a kind of fern", "pln": ["(: cnet_isa_68fb1c5c07 (IsA ribbon_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ribbon leaved water plantain is a kind of water plantain", "pln": ["(: cnet_isa_b74c11b1c1 (IsA ribbon_leaved_water_plantain water_plantain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ribbon snake is a kind of garter snake", "pln": ["(: cnet_isa_bc1360d70a (IsA ribbon_snake garter_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ribbon tree is a kind of tree", "pln": ["(: cnet_isa_a527e7add0 (IsA ribbon_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ribbon worm is a kind of worm", "pln": ["(: cnet_isa_ae4ff1aaed (IsA ribbon_worm worm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ribbonfish is a kind of soft finned fish", "pln": ["(: cnet_isa_fb618186a7 (IsA ribbonfish soft_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ribe is a kind of plant genus", "pln": ["(: cnet_isa_a52b3777aa (IsA ribe plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ribier is a kind of vinifera grape", "pln": ["(: cnet_isa_996b14b038 (IsA ribier vinifera_grape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ribonuclease is a kind of transferase", "pln": ["(: cnet_isa_8dc79174d5 (IsA ribonuclease transferase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ribonucleic acid is a kind of polymer", "pln": ["(: cnet_isa_42f9779918 (IsA ribonucleic_acid polymer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ribose is a kind of carbohydrate", "pln": ["(: cnet_isa_335fff4ed4 (IsA ribose carbohydrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ribosome is a kind of organelle", "pln": ["(: cnet_isa_61b730a7ec (IsA ribosome organelle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rice is a kind of grain", "pln": ["(: cnet_isa_c013baba02 (IsA rice grain) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rice is a kind of starch", "pln": ["(: cnet_isa_d2c13226ac (IsA rice starch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rice is a kind of starche", "pln": ["(: cnet_isa_6c87370260 (IsA rice starche) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rice is a kind of cereal", "pln": ["(: cnet_isa_c06f9f7568 (IsA rice cereal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rice and beef is a kind of both food", "pln": ["(: cnet_isa_23da965315 (IsA rice_and_beef both_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rice and beef is a kind of food", "pln": ["(: cnet_isa_2a081c7035 (IsA rice_and_beef food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rice paper is a kind of paper", "pln": ["(: cnet_isa_3c7649c604 (IsA rice_paper paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rice rat is a kind of rat", "pln": ["(: cnet_isa_6017d148d5 (IsA rice_rat rat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rice weevil is a kind of weevil", "pln": ["(: cnet_isa_f2c61b33f6 (IsA rice_weevil weevil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ricegrass is a kind of cereal", "pln": ["(: cnet_isa_58373564eb (IsA ricegrass cereal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ricer is a kind of kitchen utensil", "pln": ["(: cnet_isa_ec1c9da155 (IsA ricer kitchen_utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rich people is a kind of people", "pln": ["(: cnet_isa_4463431db1 (IsA rich_people people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rich person is a kind of person", "pln": ["(: cnet_isa_48516f3e82 (IsA rich_person person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "richard roe is a kind of party", "pln": ["(: cnet_isa_2a36d9b7cd (IsA richard_roe party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "richardson s geranium is a kind of cranesbill", "pln": ["(: cnet_isa_23e6c49d91 (IsA richardson_s_geranium cranesbill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "richea is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_22ab8cadff (IsA richea dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "richmondena is a kind of bird genus", "pln": ["(: cnet_isa_755377b9f3 (IsA richmondena bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "richness is a kind of fruitfulness", "pln": ["(: cnet_isa_de068536a4 (IsA richness fruitfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "richness is a kind of shade", "pln": ["(: cnet_isa_105af6c3f3 (IsA richness shade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "richness is a kind of value", "pln": ["(: cnet_isa_d9e39df926 (IsA richness value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "richter scale is a kind of scale", "pln": ["(: cnet_isa_e49c2ad550 (IsA richter_scale scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "richweed is a kind of nettle", "pln": ["(: cnet_isa_8dcb6f7f65 (IsA richweed nettle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ricin is a kind of albumin", "pln": ["(: cnet_isa_80e23baba1 (IsA ricin albumin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ricin is a kind of toxin", "pln": ["(: cnet_isa_24a537644d (IsA ricin toxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ricinoleic acid is a kind of unsaturated fatty acid", "pln": ["(: cnet_isa_ca0b9b1b18 (IsA ricinoleic_acid unsaturated_fatty_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ricinus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_69f2d36a7d (IsA ricinus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ricketiness is a kind of movability", "pln": ["(: cnet_isa_2e6586be86 (IsA ricketiness movability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ricket is a kind of avitaminosis", "pln": ["(: cnet_isa_33def3a288 (IsA ricket avitaminosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rickettsia is a kind of eubacteria", "pln": ["(: cnet_isa_263b5c88cc (IsA rickettsia eubacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rickettsia quintana is a kind of rickettsia", "pln": ["(: cnet_isa_8e5a4df214 (IsA rickettsia_quintana rickettsia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rickettsiaceae is a kind of bacteria family", "pln": ["(: cnet_isa_d28a81a062 (IsA rickettsiaceae bacteria_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rickettsial disease is a kind of infectious disease", "pln": ["(: cnet_isa_980addd629 (IsA rickettsial_disease infectious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rickettsiale is a kind of animal order", "pln": ["(: cnet_isa_67b1aa9279 (IsA rickettsiale animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rickettsialpox is a kind of rickettsial disease", "pln": ["(: cnet_isa_b9e4c4ba75 (IsA rickettsialpox rickettsial_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rickey is a kind of mixed drink", "pln": ["(: cnet_isa_d370060c3e (IsA rickey mixed_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rickrack is a kind of trimming", "pln": ["(: cnet_isa_ca2220a89f (IsA rickrack trimming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ricochet is a kind of recoil", "pln": ["(: cnet_isa_6b2f892673 (IsA ricochet recoil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ricotta is a kind of cheese", "pln": ["(: cnet_isa_4d2f5a26f9 (IsA ricotta cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rictus is a kind of gape", "pln": ["(: cnet_isa_0428470fc7 (IsA rictus gape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riddle is a kind of sieve", "pln": ["(: cnet_isa_e7c30f8796 (IsA riddle sieve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riddle is a kind of problem", "pln": ["(: cnet_isa_3c2fcd0faf (IsA riddle problem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ride is a kind of mechanical device", "pln": ["(: cnet_isa_ae7138c76a (IsA ride mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rider is a kind of article", "pln": ["(: cnet_isa_6bb97f6604 (IsA rider article) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rider is a kind of traveler", "pln": ["(: cnet_isa_6195d7e313 (IsA rider traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rider plate is a kind of beam", "pln": ["(: cnet_isa_fdcdb8b280 (IsA rider_plate beam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ridge is a kind of beam", "pln": ["(: cnet_isa_679e025dc1 (IsA ridge beam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ridge is a kind of process", "pln": ["(: cnet_isa_ad816571ff (IsA ridge process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ridge is a kind of geological formation", "pln": ["(: cnet_isa_d80c1b6930 (IsA ridge geological_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ridge is a kind of natural elevation", "pln": ["(: cnet_isa_155e997a85 (IsA ridge natural_elevation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ridge is a kind of convex shape", "pln": ["(: cnet_isa_941be36857 (IsA ridge convex_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ridge rope is a kind of lifeline", "pln": ["(: cnet_isa_d61d9e64ba (IsA ridge_rope lifeline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ridge tile is a kind of tile", "pln": ["(: cnet_isa_8746852263 (IsA ridge_tile tile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ridgeling is a kind of colt", "pln": ["(: cnet_isa_960713c107 (IsA ridgeling colt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ridicule is a kind of synonym of derision", "pln": ["(: cnet_isa_0fde4c65d4 (IsA ridicule synonym_of_derision) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ridicule is a kind of disrespect", "pln": ["(: cnet_isa_9e02b70620 (IsA ridicule disrespect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riding is a kind of sport", "pln": ["(: cnet_isa_15f031ba02 (IsA riding sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "riding is a kind of travel", "pln": ["(: cnet_isa_28fd02ed0c (IsA riding travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riding bitt is a kind of bollard", "pln": ["(: cnet_isa_8bb76dcac6 (IsA riding_bitt bollard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riding boot is a kind of boot", "pln": ["(: cnet_isa_fbb93000d7 (IsA riding_boot boot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riding crop is a kind of whip", "pln": ["(: cnet_isa_211c8da221 (IsA riding_crop whip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riding habit is a kind of attire", "pln": ["(: cnet_isa_a8893981d6 (IsA riding_habit attire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riding master is a kind of teacher", "pln": ["(: cnet_isa_8dd8cd2827 (IsA riding_master teacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riding mower is a kind of power mower", "pln": ["(: cnet_isa_2ff549db01 (IsA riding_mower power_mower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riding school is a kind of school", "pln": ["(: cnet_isa_c4024018ac (IsA riding_school school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ridley is a kind of sea turtle", "pln": ["(: cnet_isa_644524dfa0 (IsA ridley sea_turtle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riel is a kind of cambodian monetary unit", "pln": ["(: cnet_isa_b401fcb1f6 (IsA riel cambodian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riesling is a kind of rhine wine", "pln": ["(: cnet_isa_9bfe516517 (IsA riesling rhine_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riesling is a kind of vinifera", "pln": ["(: cnet_isa_79e326e186 (IsA riesling vinifera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riff is a kind of ostinato", "pln": ["(: cnet_isa_7b6775d23b (IsA riff ostinato) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "riffian is a kind of berber", "pln": ["(: cnet_isa_6695121061 (IsA riffian berber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riffle is a kind of shuffle", "pln": ["(: cnet_isa_34e53c7fc2 (IsA riffle shuffle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rifle is a kind of gun", "pln": ["(: cnet_isa_5abc40b4a4 (IsA rifle gun) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rifle is a kind of weapon", "pln": ["(: cnet_isa_5edd4ba29d (IsA rifle weapon) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rifle is a kind of firearm", "pln": ["(: cnet_isa_3af3b597c3 (IsA rifle firearm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rifle ball is a kind of bullet", "pln": ["(: cnet_isa_a74906b45d (IsA rifle_ball bullet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rifle butt is a kind of butt", "pln": ["(: cnet_isa_ea7fc4eb6b (IsA rifle_butt butt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rifle grenade is a kind of grenade", "pln": ["(: cnet_isa_310624db9a (IsA rifle_grenade grenade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rifle range is a kind of range", "pln": ["(: cnet_isa_55b55b89de (IsA rifle_range range) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riflebird is a kind of bird of paradise", "pln": ["(: cnet_isa_56615d1314 (IsA riflebird bird_of_paradise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rifleman is a kind of marksman", "pln": ["(: cnet_isa_e5989f036e (IsA rifleman marksman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rifleman is a kind of soldier", "pln": ["(: cnet_isa_af3479a3bc (IsA rifleman soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rifleman bird is a kind of new zealand wren", "pln": ["(: cnet_isa_3850667009 (IsA rifleman_bird new_zealand_wren) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rifle is a kind of type of gun", "pln": ["(: cnet_isa_11ba9e059b (IsA rifle type_of_gun) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rifle and handgun is a kind of firearm", "pln": ["(: cnet_isa_68b4cd0464 (IsA rifle_and_handgun firearm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rift is a kind of crack", "pln": ["(: cnet_isa_0f86b198bf (IsA rift crack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rift is a kind of opening", "pln": ["(: cnet_isa_467ccdf514 (IsA rift opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rift valley is a kind of valley", "pln": ["(: cnet_isa_b15139e2a9 (IsA rift_valley valley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rift valley fever is a kind of hemorrhagic fever", "pln": ["(: cnet_isa_1ae5bb7100 (IsA rift_valley_fever hemorrhagic_fever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rig is a kind of formation", "pln": ["(: cnet_isa_75a19d12b7 (IsA rig formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rig is a kind of gear", "pln": ["(: cnet_isa_e31f248293 (IsA rig gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rigatoni is a kind of pasta", "pln": ["(: cnet_isa_8e74b5fd6e (IsA rigatoni pasta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rigger is a kind of sable", "pln": ["(: cnet_isa_264305dfc3 (IsA rigger sable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rigger is a kind of sailing vessel", "pln": ["(: cnet_isa_1e68b5ae81 (IsA rigger sailing_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rigger is a kind of craftsman", "pln": ["(: cnet_isa_30dea7e890 (IsA rigger craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rigger is a kind of oilman", "pln": ["(: cnet_isa_e055ee3742 (IsA rigger oilman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rigging is a kind of gear", "pln": ["(: cnet_isa_22f567a5c4 (IsA rigging gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right is a kind of turn", "pln": ["(: cnet_isa_353d17db26 (IsA right turn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right is a kind of abstraction", "pln": ["(: cnet_isa_5ff38e8cd4 (IsA right abstraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right is a kind of justice", "pln": ["(: cnet_isa_6622e0bcc3 (IsA right justice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right is a kind of hand", "pln": ["(: cnet_isa_766d6ca178 (IsA right hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right is a kind of faction", "pln": ["(: cnet_isa_ee9923d1a8 (IsA right faction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right is a kind of position", "pln": ["(: cnet_isa_931f7fd175 (IsA right position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right is a kind of interest", "pln": ["(: cnet_isa_a4482a4249 (IsA right interest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right ascension is a kind of angular distance", "pln": ["(: cnet_isa_84f5084770 (IsA right_ascension angular_distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right atrium is a kind of atrium cordis", "pln": ["(: cnet_isa_42ba880373 (IsA right_atrium atrium_cordis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right coronary artery is a kind of coronary artery", "pln": ["(: cnet_isa_a073bf9a45 (IsA right_coronary_artery coronary_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right ear is a kind of ear", "pln": ["(: cnet_isa_81da0e5499 (IsA right_ear ear) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right field is a kind of position", "pln": ["(: cnet_isa_c74dcd7239 (IsA right_field position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right field is a kind of tract", "pln": ["(: cnet_isa_ba057362c7 (IsA right_field tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right fielder is a kind of outfielder", "pln": ["(: cnet_isa_4c6851ba6b (IsA right_fielder outfielder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right gastric artery is a kind of gastric artery", "pln": ["(: cnet_isa_a819319fca (IsA right_gastric_artery gastric_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right hand man is a kind of assistant", "pln": ["(: cnet_isa_bad63c6910 (IsA right_hand_man assistant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right handed pitcher is a kind of pitcher", "pln": ["(: cnet_isa_7a7327fc6a (IsA right_handed_pitcher pitcher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right handedness is a kind of handedness", "pln": ["(: cnet_isa_818265e116 (IsA right_handedness handedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right hander is a kind of person", "pln": ["(: cnet_isa_38001df2c7 (IsA right_hander person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right hemisphere is a kind of hemisphere", "pln": ["(: cnet_isa_7785347d5f (IsA right_hemisphere hemisphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right leg is a kind of leg", "pln": ["(: cnet_isa_e86a344c18 (IsA right_leg leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right of action is a kind of right", "pln": ["(: cnet_isa_970dffb54b (IsA right_of_action right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right of election is a kind of legal right", "pln": ["(: cnet_isa_29169065a4 (IsA right_of_election legal_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right of entry is a kind of legal right", "pln": ["(: cnet_isa_73e5d306d2 (IsA right_of_entry legal_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right of offset is a kind of legal right", "pln": ["(: cnet_isa_8e2494fea4 (IsA right_of_offset legal_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right of privacy is a kind of legal right", "pln": ["(: cnet_isa_24606d613b (IsA right_of_privacy legal_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right of re entry is a kind of legal right", "pln": ["(: cnet_isa_28a2abf481 (IsA right_of_re_entry legal_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right of search is a kind of right", "pln": ["(: cnet_isa_841e9a0f75 (IsA right_of_search right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right of way is a kind of passage", "pln": ["(: cnet_isa_6322390703 (IsA right_of_way passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right of way is a kind of easement", "pln": ["(: cnet_isa_ad289b0f3e (IsA right_of_way easement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right of way is a kind of right", "pln": ["(: cnet_isa_3197c65b59 (IsA right_of_way right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right to attorney is a kind of civil right", "pln": ["(: cnet_isa_f8c87111e6 (IsA right_to_attorney civil_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right to confront accusor is a kind of civil right", "pln": ["(: cnet_isa_5095ae9f4c (IsA right_to_confront_accusor civil_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "right to due process is a kind of civil right", "pln": ["(: cnet_isa_b4c508ee27 (IsA right_to_due_process civil_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right to liberty is a kind of human right", "pln": ["(: cnet_isa_558787f535 (IsA right_to_liberty human_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right to life is a kind of human right", "pln": ["(: cnet_isa_0a24f89dde (IsA right_to_life human_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "right to privacy is a kind of human right", "pln": ["(: cnet_isa_913cbbee88 (IsA right_to_privacy human_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "right to pursuit of happiness is a kind of human right", "pln": ["(: cnet_isa_8fc947af69 (IsA right_to_pursuit_of_happiness human_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right to speedy and public trial by jury is a kind of civil right", "pln": ["(: cnet_isa_1273b60355 (IsA right_to_speedy_and_public_trial_by_jury civil_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right to vote is a kind of franchise", "pln": ["(: cnet_isa_920dc5c228 (IsA right_to_vote franchise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right triangle is a kind of triangle", "pln": ["(: cnet_isa_b6e9209387 (IsA right_triangle triangle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right ventricle is a kind of ventricle", "pln": ["(: cnet_isa_3f84303e5d (IsA right_ventricle ventricle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right whale is a kind of baleen whale", "pln": ["(: cnet_isa_21a65fe670 (IsA right_whale baleen_whale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "righteousness is a kind of morality", "pln": ["(: cnet_isa_511e95d44a (IsA righteousness morality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "righteye flounder is a kind of flatfish", "pln": ["(: cnet_isa_622e675fc6 (IsA righteye_flounder flatfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rightism is a kind of political orientation", "pln": ["(: cnet_isa_4f44eb116e (IsA rightism political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rightist is a kind of conservative", "pln": ["(: cnet_isa_069ff2bebb (IsA rightist conservative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rightness is a kind of morality", "pln": ["(: cnet_isa_ab143d38ed (IsA rightness morality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "right offering is a kind of offer", "pln": ["(: cnet_isa_1ecf385b87 (IsA right_offering offer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rigidity is a kind of inelasticity", "pln": ["(: cnet_isa_4d9baea05f (IsA rigidity inelasticity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rigmarole is a kind of procedure", "pln": ["(: cnet_isa_87d5018e9d (IsA rigmarole procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rigmarole is a kind of nonsense", "pln": ["(: cnet_isa_f249f8be9a (IsA rigmarole nonsense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rigor mortis is a kind of stiffening", "pln": ["(: cnet_isa_9781a8ca29 (IsA rigor_mortis stiffening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rigor mortis is a kind of physiological state", "pln": ["(: cnet_isa_83061316bf (IsA rigor_mortis physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rigout is a kind of costume", "pln": ["(: cnet_isa_4aca849b76 (IsA rigout costume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rijsttaffel is a kind of dish", "pln": ["(: cnet_isa_6ed1444bcc (IsA rijsttaffel dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riksmaal is a kind of bokmal", "pln": ["(: cnet_isa_3e146ed38e (IsA riksmaal bokmal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rill is a kind of channel", "pln": ["(: cnet_isa_40e1ace57c (IsA rill channel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rim is a kind of hoop", "pln": ["(: cnet_isa_c4fcaaa9da (IsA rim hoop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rim is a kind of boundary", "pln": ["(: cnet_isa_2e55f6c540 (IsA rim boundary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rim is a kind of round shape", "pln": ["(: cnet_isa_57ad9a951d (IsA rim round_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rim blight is a kind of blight", "pln": ["(: cnet_isa_331b721636 (IsA rim_blight blight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rima is a kind of orifice", "pln": ["(: cnet_isa_2087f88712 (IsA rima orifice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rima glottidis is a kind of rima", "pln": ["(: cnet_isa_d0cad5e907 (IsA rima_glottidis rima) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rima vestibuli is a kind of rima", "pln": ["(: cnet_isa_fd283c6075 (IsA rima_vestibuli rima) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rimu is a kind of conifer", "pln": ["(: cnet_isa_3458fc322d (IsA rimu conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rind is a kind of material", "pln": ["(: cnet_isa_731b3f88d0 (IsA rind material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rinderpest is a kind of animal disease", "pln": ["(: cnet_isa_6a1a02b609 (IsA rinderpest animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ring is a kind of piece of jewelry", "pln": ["(: cnet_isa_a1c77208ae (IsA ring piece_of_jewelry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ring is a kind of jewelry", "pln": ["(: cnet_isa_c8847d6f1a (IsA ring jewelry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ring is a kind of platform", "pln": ["(: cnet_isa_fc33d541ed (IsA ring platform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ring is a kind of sound", "pln": ["(: cnet_isa_6d445c92f4 (IsA ring sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ring is a kind of toroid", "pln": ["(: cnet_isa_059f7e8e40 (IsA ring toroid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ring around rosy is a kind of game", "pln": ["(: cnet_isa_30f619817c (IsA ring_around_rosy game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ring containment is a kind of containment", "pln": ["(: cnet_isa_ba613be593 (IsA ring_containment containment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ring finger is a kind of finger", "pln": ["(: cnet_isa_f4be7d07dc (IsA ring_finger finger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ring girl is a kind of girl", "pln": ["(: cnet_isa_2719a3bea5 (IsA ring_girl girl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ring necked parakeet is a kind of parakeet", "pln": ["(: cnet_isa_59e26fcb82 (IsA ring_necked_parakeet parakeet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ring necked pheasant is a kind of pheasant", "pln": ["(: cnet_isa_21999cb7b4 (IsA ring_necked_pheasant pheasant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ring ouzel is a kind of thrush", "pln": ["(: cnet_isa_1d81c54242 (IsA ring_ouzel thrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ring rot is a kind of brown rot", "pln": ["(: cnet_isa_f9407e6132 (IsA ring_rot brown_rot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ring rot bacteria is a kind of pseudomonad", "pln": ["(: cnet_isa_f0d6aaaf67 (IsA ring_rot_bacteria pseudomonad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ring theory is a kind of math", "pln": ["(: cnet_isa_578768d7b4 (IsA ring_theory math) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ring toss is a kind of game", "pln": ["(: cnet_isa_ff62a719db (IsA ring_toss game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ring vaccination is a kind of inoculating", "pln": ["(: cnet_isa_bf94f01284 (IsA ring_vaccination inoculating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ringdove is a kind of turtledove", "pln": ["(: cnet_isa_f4f5b96cd9 (IsA ringdove turtledove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ringer s solution is a kind of isotonic solution", "pln": ["(: cnet_isa_7f8cfd6963 (IsA ringer_s_solution isotonic_solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ringer is a kind of double", "pln": ["(: cnet_isa_b649c4dbdf (IsA ringer double) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ringer is a kind of imposter", "pln": ["(: cnet_isa_abded5b388 (IsA ringer imposter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ringer is a kind of throw", "pln": ["(: cnet_isa_5f1f145d23 (IsA ringer throw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "rings is a kind of gymnastic apparatus", "pln": ["(: cnet_isa_d66e45e4af (IsA rings gymnastic_apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ringgit is a kind of malaysian monetary unit", "pln": ["(: cnet_isa_1be44d8586 (IsA ringgit malaysian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ringhal is a kind of elapid", "pln": ["(: cnet_isa_3dac64ad58 (IsA ringhal elapid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ringing is a kind of betrothal", "pln": ["(: cnet_isa_7603e0d038 (IsA ringing betrothal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ringleader is a kind of instigator", "pln": ["(: cnet_isa_fdfc85879e (IsA ringleader instigator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ringlet is a kind of butterfly", "pln": ["(: cnet_isa_e39cf84a60 (IsA ringlet butterfly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ringlet is a kind of ring", "pln": ["(: cnet_isa_408b5a9e93 (IsA ringlet ring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ringmaster is a kind of master of ceremony", "pln": ["(: cnet_isa_99ef904f61 (IsA ringmaster master_of_ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ringneck snake is a kind of colubrid snake", "pln": ["(: cnet_isa_e044a3eee3 (IsA ringneck_snake colubrid_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ring is a kind of gymnastic apparatus", "pln": ["(: cnet_isa_4e1d6d1949 (IsA ring gymnastic_apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ringside is a kind of seating", "pln": ["(: cnet_isa_ad7b363904 (IsA ringside seating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ringtail is a kind of golden eagle", "pln": ["(: cnet_isa_cfaaa44687 (IsA ringtail golden_eagle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ringworm bush is a kind of senna", "pln": ["(: cnet_isa_044dabef5b (IsA ringworm_bush senna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rink is a kind of building", "pln": ["(: cnet_isa_ef5688b8ec (IsA rink building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rinse is a kind of hair coloring", "pln": ["(: cnet_isa_ae70693cb5 (IsA rinse hair_coloring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rinse is a kind of removal", "pln": ["(: cnet_isa_9966b49212 (IsA rinse removal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rinse is a kind of wash", "pln": ["(: cnet_isa_e05fd83b9b (IsA rinse wash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rinse is a kind of hair dye", "pln": ["(: cnet_isa_f99de2c24c (IsA rinse hair_dye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rioja is a kind of red wine", "pln": ["(: cnet_isa_f438c2b9a7 (IsA rioja red_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riot is a kind of violence", "pln": ["(: cnet_isa_4ff305f38d (IsA riot violence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riot act is a kind of rebuke", "pln": ["(: cnet_isa_b9e1688f0c (IsA riot_act rebuke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "riot act is a kind of law", "pln": ["(: cnet_isa_86207c3736 (IsA riot_act law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riot control is a kind of control", "pln": ["(: cnet_isa_eb1a6b2e2b (IsA riot_control control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riot gun is a kind of firearm", "pln": ["(: cnet_isa_9e0b2f53eb (IsA riot_gun firearm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rioter is a kind of troublemaker", "pln": ["(: cnet_isa_ffd9fc94e5 (IsA rioter troublemaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rioting is a kind of disorder", "pln": ["(: cnet_isa_9ad9061c5e (IsA rioting disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rip is a kind of turbulence", "pln": ["(: cnet_isa_acc4c9422f (IsA rip turbulence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rip is a kind of opening", "pln": ["(: cnet_isa_8c17bce7dd (IsA rip opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rip van winkle is a kind of sleeper", "pln": ["(: cnet_isa_6e6edc8285 (IsA rip_van_winkle sleeper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rip van winkle is a kind of traditionalist", "pln": ["(: cnet_isa_5bb54292be (IsA rip_van_winkle traditionalist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riparia is a kind of bird genus", "pln": ["(: cnet_isa_008c6d935d (IsA riparia bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riparian forest is a kind of forest", "pln": ["(: cnet_isa_d5074bdf63 (IsA riparian_forest forest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ripcord is a kind of cord", "pln": ["(: cnet_isa_9ef970de3b (IsA ripcord cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ripeness is a kind of maturity", "pln": ["(: cnet_isa_3a69767de5 (IsA ripeness maturity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ripening is a kind of organic process", "pln": ["(: cnet_isa_a9471ab83e (IsA ripening organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riposte is a kind of counterattack", "pln": ["(: cnet_isa_9c04525b33 (IsA riposte counterattack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ripper is a kind of murderer", "pln": ["(: cnet_isa_5a9a702b2b (IsA ripper murderer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ripping bar is a kind of lever", "pln": ["(: cnet_isa_f336fbca41 (IsA ripping_bar lever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ripping chisel is a kind of chisel", "pln": ["(: cnet_isa_846b7563f8 (IsA ripping_chisel chisel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ripple is a kind of oscillation", "pln": ["(: cnet_isa_9b387c17e5 (IsA ripple oscillation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ripple is a kind of wave", "pln": ["(: cnet_isa_d2956dac2a (IsA ripple wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ripple mark is a kind of ridge", "pln": ["(: cnet_isa_0c6b49ebf0 (IsA ripple_mark ridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ripsaw is a kind of handsaw", "pln": ["(: cnet_isa_92446cc1a2 (IsA ripsaw handsaw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riptide is a kind of current", "pln": ["(: cnet_isa_713d01d9bd (IsA riptide current) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rise is a kind of motion", "pln": ["(: cnet_isa_2fe005dd81 (IsA rise motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rise is a kind of increase", "pln": ["(: cnet_isa_5aa10b5327 (IsA rise increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rise is a kind of change of location", "pln": ["(: cnet_isa_549d084146 (IsA rise change_of_location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rise is a kind of emergence", "pln": ["(: cnet_isa_ab3cfa84e2 (IsA rise emergence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riser is a kind of pipe", "pln": ["(: cnet_isa_5fc2d5f0c3 (IsA riser pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riser is a kind of structural member", "pln": ["(: cnet_isa_7089ef87b6 (IsA riser structural_member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riser is a kind of person", "pln": ["(: cnet_isa_20509f6332 (IsA riser person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "risibility is a kind of good nature", "pln": ["(: cnet_isa_977e553c6b (IsA risibility good_nature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rising trot is a kind of trot", "pln": ["(: cnet_isa_ed442ba73e (IsA rising_trot trot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "risk is a kind of board game", "pln": ["(: cnet_isa_16378c2042 (IsA risk board_game) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "risk is a kind of venture", "pln": ["(: cnet_isa_6f09e8ace5 (IsA risk venture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "risk is a kind of probability", "pln": ["(: cnet_isa_98aedb3d18 (IsA risk probability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "risk arbitrage is a kind of arbitrage", "pln": ["(: cnet_isa_ceb5839674 (IsA risk_arbitrage arbitrage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riskiness is a kind of danger", "pln": ["(: cnet_isa_6c9bb3ac71 (IsA riskiness danger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "risklessness is a kind of safety", "pln": ["(: cnet_isa_05cea6ece4 (IsA risklessness safety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "risotto is a kind of dish", "pln": ["(: cnet_isa_b75babc503 (IsA risotto dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riss glaciation is a kind of glaciation", "pln": ["(: cnet_isa_46309a6c43 (IsA riss_glaciation glaciation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rissa is a kind of bird genus", "pln": ["(: cnet_isa_b2eb659ab8 (IsA rissa bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rissole is a kind of dish", "pln": ["(: cnet_isa_40b24b251c (IsA rissole dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rite is a kind of religious ceremony", "pln": ["(: cnet_isa_7b9f06f829 (IsA rite religious_ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rite of passage is a kind of ritual", "pln": ["(: cnet_isa_478228a1a1 (IsA rite_of_passage ritual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ritual is a kind of custom", "pln": ["(: cnet_isa_168d2b4e2c (IsA ritual custom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ritual is a kind of habit", "pln": ["(: cnet_isa_5fb02741c1 (IsA ritual habit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ritual is a kind of practice", "pln": ["(: cnet_isa_c3424bb95d (IsA ritual practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ritual dancing is a kind of dancing", "pln": ["(: cnet_isa_406f99d98d (IsA ritual_dancing dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ritualism is a kind of practice", "pln": ["(: cnet_isa_46550bdc50 (IsA ritualism practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ritualism is a kind of social anthropology", "pln": ["(: cnet_isa_648a0c6c50 (IsA ritualism social_anthropology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ritualist is a kind of advocate", "pln": ["(: cnet_isa_29f7d4dcae (IsA ritualist advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ritualist is a kind of social anthropologist", "pln": ["(: cnet_isa_0c81568a7e (IsA ritualist social_anthropologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ritz is a kind of hotel", "pln": ["(: cnet_isa_8834e7c867 (IsA ritz hotel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ritz is a kind of ostentation", "pln": ["(: cnet_isa_e5e2c3b0e9 (IsA ritz ostentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rival is a kind of contestant", "pln": ["(: cnet_isa_cb3be0dc15 (IsA rival contestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "river is a kind of stream", "pln": ["(: cnet_isa_ca7f3edad2 (IsA river stream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "river boat is a kind of boat", "pln": ["(: cnet_isa_e73d570964 (IsA river_boat boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "river boulder is a kind of boulder", "pln": ["(: cnet_isa_614e6ee1d1 (IsA river_boulder boulder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "river dolphin is a kind of dolphin", "pln": ["(: cnet_isa_84ac1d72dc (IsA river_dolphin dolphin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "river limpet is a kind of gastropod", "pln": ["(: cnet_isa_f4dc579381 (IsA river_limpet gastropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "river otter is a kind of otter", "pln": ["(: cnet_isa_8ed8412b69 (IsA river_otter otter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "river prawn is a kind of prawn", "pln": ["(: cnet_isa_15ad723b1a (IsA river_prawn prawn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "river red gum is a kind of eucalyptus", "pln": ["(: cnet_isa_e98a9c151a (IsA river_red_gum eucalyptus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "river shad is a kind of shad", "pln": ["(: cnet_isa_99857e7504 (IsA river_shad shad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riverbank is a kind of bank", "pln": ["(: cnet_isa_01f2d39cec (IsA riverbank bank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riverbed is a kind of bed", "pln": ["(: cnet_isa_5d7a7cef27 (IsA riverbed bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rivet is a kind of pin", "pln": ["(: cnet_isa_005598abf4 (IsA rivet pin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rivet line is a kind of line", "pln": ["(: cnet_isa_a6e33cc741 (IsA rivet_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riveter is a kind of skilled worker", "pln": ["(: cnet_isa_8e441b2905 (IsA riveter skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riveting machine is a kind of machine", "pln": ["(: cnet_isa_49e2c00625 (IsA riveting_machine machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rivina is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_b0d7249dde (IsA rivina caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rivulet is a kind of stream", "pln": ["(: cnet_isa_ac5ee1dcc6 (IsA rivulet stream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rivulus is a kind of killifish", "pln": ["(: cnet_isa_030213cdff (IsA rivulus killifish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "riyal omani is a kind of omani monetary unit", "pln": ["(: cnet_isa_5e34f149b1 (IsA riyal_omani omani_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ro is a kind of artificial language", "pln": ["(: cnet_isa_9569705e0d (IsA ro artificial_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "roach is a kind of cyprinid", "pln": ["(: cnet_isa_7c1138b2cd (IsA roach cyprinid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roach is a kind of butt", "pln": ["(: cnet_isa_e5bb30010a (IsA roach butt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roach is a kind of hairdo", "pln": ["(: cnet_isa_d763f3f41b (IsA roach hairdo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roach clip is a kind of pincer", "pln": ["(: cnet_isa_fe1c451540 (IsA roach_clip pincer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "road is a kind of surface", "pln": ["(: cnet_isa_219160d0d7 (IsA road surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "road is a kind of mean", "pln": ["(: cnet_isa_e035c46810 (IsA road mean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "road is a kind of way", "pln": ["(: cnet_isa_c1c90cab66 (IsA road way) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "road builder is a kind of builder", "pln": ["(: cnet_isa_5f5ef7014c (IsA road_builder builder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "road construction is a kind of construction", "pln": ["(: cnet_isa_7000361d0d (IsA road_construction construction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "road gang is a kind of gang", "pln": ["(: cnet_isa_8d3edae27b (IsA road_gang gang) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "road hog is a kind of driver", "pln": ["(: cnet_isa_7fd11f161c (IsA road_hog driver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "road map is a kind of map", "pln": ["(: cnet_isa_7616ba0de5 (IsA road_map map) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "road map is a kind of guidance", "pln": ["(: cnet_isa_8ca33f0e99 (IsA road_map guidance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "road map is a kind of plan", "pln": ["(: cnet_isa_e1eb1a258b (IsA road_map plan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "road metal is a kind of rock", "pln": ["(: cnet_isa_0a22986f43 (IsA road_metal rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "road rage is a kind of violence", "pln": ["(: cnet_isa_dfadc801af (IsA road_rage violence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "road sense is a kind of common sense", "pln": ["(: cnet_isa_576e303c2b (IsA road_sense common_sense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "road show is a kind of show", "pln": ["(: cnet_isa_ee68669449 (IsA road_show show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "road surface is a kind of paved surface", "pln": ["(: cnet_isa_447aa8f6cc (IsA road_surface paved_surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "road test is a kind of trial", "pln": ["(: cnet_isa_e5869713a7 (IsA road_test trial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "road to damascus is a kind of landmark", "pln": ["(: cnet_isa_769801a7f0 (IsA road_to_damascus landmark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roadbed is a kind of bed", "pln": ["(: cnet_isa_765abf5625 (IsA roadbed bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roadblock is a kind of barrier", "pln": ["(: cnet_isa_3fdb27c268 (IsA roadblock barrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roadbook is a kind of guidebook", "pln": ["(: cnet_isa_f5749156d9 (IsA roadbook guidebook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roadhouse is a kind of hostel", "pln": ["(: cnet_isa_25040a7b2e (IsA roadhouse hostel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roadkill is a kind of body", "pln": ["(: cnet_isa_528fd67411 (IsA roadkill body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roadman is a kind of workman", "pln": ["(: cnet_isa_8e44c74307 (IsA roadman workman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roadrunner is a kind of bird", "pln": ["(: cnet_isa_c8a90d928d (IsA roadrunner bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roadrunner is a kind of cuckoo", "pln": ["(: cnet_isa_8c71bd3e39 (IsA roadrunner cuckoo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "road is a kind of anchorage", "pln": ["(: cnet_isa_eb804fa05f (IsA road anchorage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roadster is a kind of car", "pln": ["(: cnet_isa_f8fb0d4241 (IsA roadster car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roadway is a kind of road", "pln": ["(: cnet_isa_0fe730bd5c (IsA roadway road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roadworthiness is a kind of worthiness", "pln": ["(: cnet_isa_1e4eb4ab4d (IsA roadworthiness worthiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roan is a kind of horse", "pln": ["(: cnet_isa_76a7d42938 (IsA roan horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roan is a kind of leather", "pln": ["(: cnet_isa_b63695cf76 (IsA roan leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roar is a kind of cry", "pln": ["(: cnet_isa_c3370e8e10 (IsA roar cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roarer is a kind of communicator", "pln": ["(: cnet_isa_d04b60f00c (IsA roarer communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roast is a kind of cut", "pln": ["(: cnet_isa_c3e2e5736d (IsA roast cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roaster is a kind of pan", "pln": ["(: cnet_isa_f6925a35b4 (IsA roaster pan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roaster is a kind of chicken", "pln": ["(: cnet_isa_580262bb63 (IsA roaster chicken) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "roaster is a kind of cook", "pln": ["(: cnet_isa_138b70ab0f (IsA roaster cook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roaster is a kind of critic", "pln": ["(: cnet_isa_1f83e9db1c (IsA roaster critic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roasting is a kind of cooking", "pln": ["(: cnet_isa_a487aadf7e (IsA roasting cooking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rob roy is a kind of manhattan", "pln": ["(: cnet_isa_8771bddd99 (IsA rob_roy manhattan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "robalo is a kind of percoid fish", "pln": ["(: cnet_isa_e8e931e76c (IsA robalo percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "robber is a kind of thief", "pln": ["(: cnet_isa_35a9788ae8 (IsA robber thief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "robber fly is a kind of dipterous insect", "pln": ["(: cnet_isa_1963cf5014 (IsA robber_fly dipterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "robber frog is a kind of frog", "pln": ["(: cnet_isa_b6e71d7a72 (IsA robber_frog frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "robbery is a kind of larceny", "pln": ["(: cnet_isa_be52181251 (IsA robbery larceny) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "robbery conviction is a kind of conviction", "pln": ["(: cnet_isa_484fb2d31e (IsA robbery_conviction conviction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "robbery suspect is a kind of suspect", "pln": ["(: cnet_isa_6caf290ea8 (IsA robbery_suspect suspect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "robe is a kind of garment", "pln": ["(: cnet_isa_a432de8416 (IsA robe garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "robert e lee s birthday is a kind of day", "pln": ["(: cnet_isa_82af8c7520 (IsA robert_e_lee_s_birthday day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "robert indiana is a kind of artist", "pln": ["(: cnet_isa_c4fb608302 (IsA robert_indiana artist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "robin s plantain is a kind of fleabane", "pln": ["(: cnet_isa_1b7ae5a6a5 (IsA robin_s_plantain fleabane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "robin is a kind of bird", "pln": ["(: cnet_isa_893c4aab20 (IsA robin bird) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "robin is a kind of thrush", "pln": ["(: cnet_isa_b51d1efa67 (IsA robin thrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "robin goodfellow is a kind of fairy", "pln": ["(: cnet_isa_a0e557f4ce (IsA robin_goodfellow fairy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "robinia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_91d2c28661 (IsA robinia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roble is a kind of quira", "pln": ["(: cnet_isa_6b220b8e83 (IsA roble quira) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roble beech is a kind of southern beech", "pln": ["(: cnet_isa_df03fb16f5 (IsA roble_beech southern_beech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "robot is a kind of automation", "pln": ["(: cnet_isa_66ebab5981 (IsA robot automation) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "robot is a kind of machine", "pln": ["(: cnet_isa_ddfb75a085 (IsA robot machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "robot is a kind of one type of machine", "pln": ["(: cnet_isa_0cc9694f4c (IsA robot one_type_of_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "robot is a kind of worker", "pln": ["(: cnet_isa_1a5332f67c (IsA robot worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "robotic telesurgery is a kind of microsurgery", "pln": ["(: cnet_isa_37e54ffcaf (IsA robotic_telesurgery microsurgery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "robotic is a kind of artificial intelligence", "pln": ["(: cnet_isa_da014758f8 (IsA robotic artificial_intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "robotic equipment is a kind of equipment", "pln": ["(: cnet_isa_38e30e58a1 (IsA robotic_equipment equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "robusta coffee is a kind of coffee", "pln": ["(: cnet_isa_f806d28b77 (IsA robusta_coffee coffee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "robustness is a kind of characteristic", "pln": ["(: cnet_isa_5371906ce8 (IsA robustness characteristic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "robustness is a kind of strength", "pln": ["(: cnet_isa_8f8667ec27 (IsA robustness strength) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "roc is a kind of mythical monster", "pln": ["(: cnet_isa_24e729bca0 (IsA roc mythical_monster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roccella is a kind of lichen", "pln": ["(: cnet_isa_b9e8bf192f (IsA roccella lichen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roccellaceae is a kind of fungus family", "pln": ["(: cnet_isa_819bf18cb8 (IsA roccellaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roccus is a kind of fish genus", "pln": ["(: cnet_isa_8bd067300f (IsA roccus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rochelle salt is a kind of double salt", "pln": ["(: cnet_isa_0036e48c1a (IsA rochelle_salt double_salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rochon prism is a kind of optical device", "pln": ["(: cnet_isa_81f0f3a691 (IsA rochon_prism optical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock is a kind of music", "pln": ["(: cnet_isa_3f0d7098c7 (IsA rock music) (STV 1.0 0.9770))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock is a kind of stone", "pln": ["(: cnet_isa_87e898094d (IsA rock stone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock is a kind of lurch", "pln": ["(: cnet_isa_fbea090fc0 (IsA rock lurch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock is a kind of natural object", "pln": ["(: cnet_isa_89681c28a4 (IsA rock natural_object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock is a kind of good person", "pln": ["(: cnet_isa_0306ced2c9 (IsA rock good_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock is a kind of material", "pln": ["(: cnet_isa_083c4df782 (IsA rock material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock bass is a kind of sunfish", "pln": ["(: cnet_isa_60514d78ee (IsA rock_bass sunfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock beauty is a kind of butterfly fish", "pln": ["(: cnet_isa_097c869948 (IsA rock_beauty butterfly_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock bit is a kind of drilling bit", "pln": ["(: cnet_isa_27d3a0f883 (IsA rock_bit drilling_bit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock bottom is a kind of bottom", "pln": ["(: cnet_isa_dfa23940f7 (IsA rock_bottom bottom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rock brake is a kind of fern", "pln": ["(: cnet_isa_aa125d8941 (IsA rock_brake fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock cake is a kind of cake", "pln": ["(: cnet_isa_0681676ade (IsA rock_cake cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock candy is a kind of candy", "pln": ["(: cnet_isa_c3442ab525 (IsA rock_candy candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock climber is a kind of climber", "pln": ["(: cnet_isa_694b9162c5 (IsA rock_climber climber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock climbing is a kind of climb", "pln": ["(: cnet_isa_2ce4685922 (IsA rock_climbing climb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock climbing is a kind of sport", "pln": ["(: cnet_isa_c908acf59f (IsA rock_climbing sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock concert is a kind of concert", "pln": ["(: cnet_isa_6d42331d69 (IsA rock_concert concert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock cornish is a kind of domestic fowl", "pln": ["(: cnet_isa_11783390c8 (IsA rock_cornish domestic_fowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock cornish hen is a kind of poultry", "pln": ["(: cnet_isa_8e779dd5b1 (IsA rock_cornish_hen poultry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock crab is a kind of crab", "pln": ["(: cnet_isa_a5a06fd7a9 (IsA rock_crab crab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock cress is a kind of cress", "pln": ["(: cnet_isa_af151d4a11 (IsA rock_cress cress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock crystal is a kind of quartz", "pln": ["(: cnet_isa_ce860986bc (IsA rock_crystal quartz) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock dove is a kind of pigeon", "pln": ["(: cnet_isa_cb0135001e (IsA rock_dove pigeon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock elm is a kind of elm", "pln": ["(: cnet_isa_4cf4129268 (IsA rock_elm elm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock garden is a kind of garden", "pln": ["(: cnet_isa_4217b447bc (IsA rock_garden garden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock geranium is a kind of alumroot", "pln": ["(: cnet_isa_1952624e57 (IsA rock_geranium alumroot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock group is a kind of dance band", "pln": ["(: cnet_isa_c8386f08b2 (IsA rock_group dance_band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock gunnel is a kind of gunnel", "pln": ["(: cnet_isa_a8634c531a (IsA rock_gunnel gunnel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock hind is a kind of hind", "pln": ["(: cnet_isa_7227b1bea7 (IsA rock_hind hind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rock hopper is a kind of penguin", "pln": ["(: cnet_isa_90e36b93a6 (IsA rock_hopper penguin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock hyrax is a kind of hyrax", "pln": ["(: cnet_isa_4919740cfe (IsA rock_hyrax hyrax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock n roll is a kind of popular music", "pln": ["(: cnet_isa_44c208a181 (IsA rock_n_roll popular_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock opera is a kind of opera", "pln": ["(: cnet_isa_1ea7d4a7f5 (IsA rock_opera opera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock penstemon is a kind of wildflower", "pln": ["(: cnet_isa_27e80d500e (IsA rock_penstemon wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock pink is a kind of flame flower", "pln": ["(: cnet_isa_decb158a88 (IsA rock_pink flame_flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rock plant is a kind of plant", "pln": ["(: cnet_isa_9ad8bb43ac (IsA rock_plant plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock polypody is a kind of polypody", "pln": ["(: cnet_isa_e2849b77b3 (IsA rock_polypody polypody) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock purslane is a kind of herb", "pln": ["(: cnet_isa_f6c47ebeec (IsA rock_purslane herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock python is a kind of python", "pln": ["(: cnet_isa_f17dec78a2 (IsA rock_python python) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock rattlesnake is a kind of rattlesnake", "pln": ["(: cnet_isa_aa0680470e (IsA rock_rattlesnake rattlesnake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock salmon is a kind of fish", "pln": ["(: cnet_isa_2bedc5e106 (IsA rock_salmon fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock sandwort is a kind of sandwort", "pln": ["(: cnet_isa_87e81e86fc (IsA rock_sandwort sandwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock sea bass is a kind of sea bass", "pln": ["(: cnet_isa_127041aa91 (IsA rock_sea_bass sea_bass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock spikemoss is a kind of spikemoss", "pln": ["(: cnet_isa_e183e7601d (IsA rock_spikemoss spikemoss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock squirrel is a kind of ground squirrel", "pln": ["(: cnet_isa_947de86c9c (IsA rock_squirrel ground_squirrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock star is a kind of rocker", "pln": ["(: cnet_isa_ad6862b2e1 (IsA rock_star rocker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock star is a kind of singer", "pln": ["(: cnet_isa_a343d73825 (IsA rock_star singer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock wallaby is a kind of wallaby", "pln": ["(: cnet_isa_19bd61e5d0 (IsA rock_wallaby wallaby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rock wren is a kind of new zealand wren", "pln": ["(: cnet_isa_3d32b82a90 (IsA rock_wren new_zealand_wren) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rock wren is a kind of wren", "pln": ["(: cnet_isa_287252c727 (IsA rock_wren wren) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rockabilly is a kind of popular music", "pln": ["(: cnet_isa_7d9e9e058f (IsA rockabilly popular_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rocker is a kind of ice skate", "pln": ["(: cnet_isa_d5e513d841 (IsA rocker ice_skate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rocker is a kind of support", "pln": ["(: cnet_isa_baaa03a3f6 (IsA rocker support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rocker is a kind of trough", "pln": ["(: cnet_isa_bb88aff6a0 (IsA rocker trough) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rocker is a kind of adolescent", "pln": ["(: cnet_isa_33e65330e9 (IsA rocker adolescent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rocker is a kind of attendant", "pln": ["(: cnet_isa_010a08e308 (IsA rocker attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rocker is a kind of musician", "pln": ["(: cnet_isa_0f479c0e67 (IsA rocker musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rocker arm is a kind of lever", "pln": ["(: cnet_isa_57e15787b0 (IsA rocker_arm lever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rocker is a kind of youth subculture", "pln": ["(: cnet_isa_87311d22eb (IsA rocker youth_subculture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rocket is a kind of machine", "pln": ["(: cnet_isa_caef3449d4 (IsA rocket machine) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rocket is a kind of jet engine", "pln": ["(: cnet_isa_9901fdf3bf (IsA rocket jet_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rocket is a kind of vehicle", "pln": ["(: cnet_isa_b13b83bece (IsA rocket vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rocket is a kind of visual signal", "pln": ["(: cnet_isa_62a575ac47 (IsA rocket visual_signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rocket is a kind of herb", "pln": ["(: cnet_isa_dfc8cf0066 (IsA rocket herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rocket base is a kind of base", "pln": ["(: cnet_isa_ccbd656d11 (IsA rocket_base base) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rocket engineer is a kind of engineer", "pln": ["(: cnet_isa_0a0ad0950f (IsA rocket_engineer engineer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rocket firing is a kind of launching", "pln": ["(: cnet_isa_612778c0c6 (IsA rocket_firing launching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rocket fuel is a kind of charge", "pln": ["(: cnet_isa_3e7b8c3349 (IsA rocket_fuel charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rocket fuel is a kind of propellant", "pln": ["(: cnet_isa_b814f5db0a (IsA rocket_fuel propellant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rocket larkspur is a kind of flower", "pln": ["(: cnet_isa_d37dd7ebce (IsA rocket_larkspur flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rocket propulsion is a kind of reaction propulsion", "pln": ["(: cnet_isa_5f2559c3ce (IsA rocket_propulsion reaction_propulsion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rocket range is a kind of firing range", "pln": ["(: cnet_isa_1d9ef1e88a (IsA rocket_range firing_range) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rocket scientist is a kind of thinker", "pln": ["(: cnet_isa_59f8219a0b (IsA rocket_scientist thinker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rocketry is a kind of engineering", "pln": ["(: cnet_isa_842d90bd80 (IsA rocketry engineering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rockfish is a kind of scorpaenid", "pln": ["(: cnet_isa_105613d0b7 (IsA rockfish scorpaenid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rockfish is a kind of saltwater fish", "pln": ["(: cnet_isa_b45e63313d (IsA rockfish saltwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rockiness is a kind of unevenness", "pln": ["(: cnet_isa_fa51fdfb8a (IsA rockiness unevenness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rocking chair is a kind of chair", "pln": ["(: cnet_isa_de06f27213 (IsA rocking_chair chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rockrose is a kind of helianthemum", "pln": ["(: cnet_isa_b1c891acbd (IsA rockrose helianthemum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rockrose is a kind of shrub", "pln": ["(: cnet_isa_a7f96049f3 (IsA rockrose shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rockslide is a kind of landslide", "pln": ["(: cnet_isa_2484aa4ce8 (IsA rockslide landslide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rockweed is a kind of brown algae", "pln": ["(: cnet_isa_055ceecc7b (IsA rockweed brown_algae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rocky mountain bee plant is a kind of spiderflower", "pln": ["(: cnet_isa_087bd3c0e3 (IsA rocky_mountain_bee_plant spiderflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rocky mountain dogbane is a kind of dogbane", "pln": ["(: cnet_isa_523ae7bd82 (IsA rocky_mountain_dogbane dogbane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rocky mountain jay is a kind of canada jay", "pln": ["(: cnet_isa_d32b33f2a2 (IsA rocky_mountain_jay canada_jay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rocky mountain pinon is a kind of nut pine", "pln": ["(: cnet_isa_b2da38966d (IsA rocky_mountain_pinon nut_pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rocky mountain spotted fever is a kind of spotted fever", "pln": ["(: cnet_isa_22906e3aec (IsA rocky_mountain_spotted_fever spotted_fever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rocky mountain whitefish is a kind of whitefish", "pln": ["(: cnet_isa_83d904dcad (IsA rocky_mountain_whitefish whitefish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rococo is a kind of artistic style", "pln": ["(: cnet_isa_82e3d121e8 (IsA rococo artistic_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rod is a kind of pole", "pln": ["(: cnet_isa_973fee1126 (IsA rod pole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rod is a kind of bacteria", "pln": ["(: cnet_isa_5834a793ba (IsA rod bacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rod is a kind of implement", "pln": ["(: cnet_isa_6d761497fe (IsA rod implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rod is a kind of visual cell", "pln": ["(: cnet_isa_4ff18a9fae (IsA rod visual_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rodent is a kind of animal", "pln": ["(: cnet_isa_bf73ef0fa8 (IsA rodent animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rodent is a kind of placental", "pln": ["(: cnet_isa_b20b037d67 (IsA rodent placental) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rodentia is a kind of animal order", "pln": ["(: cnet_isa_59062bf42d (IsA rodentia animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rodent is a kind of mammal", "pln": ["(: cnet_isa_419522a82d (IsA rodent mammal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rodeo is a kind of exhibition", "pln": ["(: cnet_isa_fbfddd7dc8 (IsA rodeo exhibition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rodeo is a kind of pen", "pln": ["(: cnet_isa_38711f390b (IsA rodeo pen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rodolia is a kind of arthropod genus", "pln": ["(: cnet_isa_c916d16a7e (IsA rodolia arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roe is a kind of egg", "pln": ["(: cnet_isa_a58eab8c7d (IsA roe egg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "roe is a kind of spawn", "pln": ["(: cnet_isa_f47dacca2d (IsA roe spawn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roe is a kind of seafood", "pln": ["(: cnet_isa_565b1c700d (IsA roe seafood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roe deer is a kind of deer", "pln": ["(: cnet_isa_418ccdbf73 (IsA roe_deer deer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roebuck is a kind of roe deer", "pln": ["(: cnet_isa_2ad0156cc1 (IsA roebuck roe_deer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roentgen is a kind of radioactivity unit", "pln": ["(: cnet_isa_5ab9da16bc (IsA roentgen radioactivity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roentgenium is a kind of chemical element", "pln": ["(: cnet_isa_47140bc8fa (IsA roentgenium chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roentgenogram is a kind of radiogram", "pln": ["(: cnet_isa_5d9acc262e (IsA roentgenogram radiogram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roentgenography is a kind of diagnostic procedure", "pln": ["(: cnet_isa_2e6ab4a745 (IsA roentgenography diagnostic_procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roentgenography is a kind of radiography", "pln": ["(: cnet_isa_fbc81606fe (IsA roentgenography radiography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rogation is a kind of invocation", "pln": ["(: cnet_isa_e3b79d3419 (IsA rogation invocation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rogation day is a kind of christian holy day", "pln": ["(: cnet_isa_5965e5f10e (IsA rogation_day christian_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rogue s gallery is a kind of collection", "pln": ["(: cnet_isa_75291b6d11 (IsA rogue_s_gallery collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rogue is a kind of villain", "pln": ["(: cnet_isa_68caa3d6a9 (IsA rogue villain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rogue elephant is a kind of elephant", "pln": ["(: cnet_isa_a78947cd6e (IsA rogue_elephant elephant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rogue state is a kind of state", "pln": ["(: cnet_isa_55601908a0 (IsA rogue_state state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roisterer is a kind of reveler", "pln": ["(: cnet_isa_4ce44d53c5 (IsA roisterer reveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "role is a kind of activity", "pln": ["(: cnet_isa_c232648a55 (IsA role activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roleplaying is a kind of acting", "pln": ["(: cnet_isa_dafedee4b5 (IsA roleplaying acting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roll is a kind of flight maneuver", "pln": ["(: cnet_isa_c6a0ee91a5 (IsA roll flight_maneuver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "roll is a kind of gait", "pln": ["(: cnet_isa_0240160e1e (IsA roll gait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "roll is a kind of propulsion", "pln": ["(: cnet_isa_c122cd851f (IsA roll propulsion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roll is a kind of cylinder", "pln": ["(: cnet_isa_134be14b5a (IsA roll cylinder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roll is a kind of film", "pln": ["(: cnet_isa_ffb059dba8 (IsA roll film) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roll is a kind of list", "pln": ["(: cnet_isa_99ba833090 (IsA roll list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roll call is a kind of utterance", "pln": ["(: cnet_isa_5f93b9dc02 (IsA roll_call utterance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roll film is a kind of film", "pln": ["(: cnet_isa_121efe6212 (IsA roll_film film) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roll of tobacco is a kind of tobacco", "pln": ["(: cnet_isa_4ccff77367 (IsA roll_of_tobacco tobacco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roll on is a kind of dispenser", "pln": ["(: cnet_isa_0dc4892de8 (IsA roll_on dispenser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roll on is a kind of foundation garment", "pln": ["(: cnet_isa_ce97281de5 (IsA roll_on foundation_garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roll on roll off is a kind of conveyance", "pln": ["(: cnet_isa_dc76b9afa2 (IsA roll_on_roll_off conveyance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rollback is a kind of decrease", "pln": ["(: cnet_isa_71acc4103d (IsA rollback decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rollback is a kind of offense", "pln": ["(: cnet_isa_9bfd62001b (IsA rollback offense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rolled biscuit is a kind of biscuit", "pln": ["(: cnet_isa_a48d07cfd2 (IsA rolled_biscuit biscuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roller is a kind of grounder", "pln": ["(: cnet_isa_de85ef03b0 (IsA roller grounder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roller is a kind of coraciiform bird", "pln": ["(: cnet_isa_f5abbe6a62 (IsA roller coraciiform_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roller is a kind of domestic pigeon", "pln": ["(: cnet_isa_4a7d3516a4 (IsA roller domestic_pigeon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roller is a kind of cylinder", "pln": ["(: cnet_isa_528372aba7 (IsA roller cylinder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roller is a kind of wheel", "pln": ["(: cnet_isa_c6437e9bcb (IsA roller wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roller is a kind of wave", "pln": ["(: cnet_isa_bc82c01fb6 (IsA roller wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roller bandage is a kind of bandage", "pln": ["(: cnet_isa_b4e548febd (IsA roller_bandage bandage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roller blade is a kind of skate", "pln": ["(: cnet_isa_2a563ed75b (IsA roller_blade skate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roller blind is a kind of window shade", "pln": ["(: cnet_isa_f051d492e5 (IsA roller_blind window_shade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roller coaster is a kind of elevated railway", "pln": ["(: cnet_isa_cadd90008c (IsA roller_coaster elevated_railway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roller coaster is a kind of ride", "pln": ["(: cnet_isa_e3ba538fb2 (IsA roller_coaster ride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roller coaster is a kind of turbulence", "pln": ["(: cnet_isa_4f3c856f8e (IsA roller_coaster turbulence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roller skate is a kind of skate", "pln": ["(: cnet_isa_06d6115282 (IsA roller_skate skate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roller skater is a kind of skater", "pln": ["(: cnet_isa_b7ef5bae4b (IsA roller_skater skater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roller skating is a kind of skating", "pln": ["(: cnet_isa_cdb86d9cfc (IsA roller_skating skating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roller towel is a kind of towel", "pln": ["(: cnet_isa_8364be803a (IsA roller_towel towel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rollerblader is a kind of roller skater", "pln": ["(: cnet_isa_4e7cb86290 (IsA rollerblader roller_skater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rollerblading is a kind of roller skating", "pln": ["(: cnet_isa_91ec7c82e3 (IsA rollerblading roller_skating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rolling is a kind of robbery", "pln": ["(: cnet_isa_973f1f5289 (IsA rolling robbery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rolling hitch is a kind of hitch", "pln": ["(: cnet_isa_84c650b2ce (IsA rolling_hitch hitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rolling mill is a kind of steel mill", "pln": ["(: cnet_isa_f5fe1bc6ca (IsA rolling_mill steel_mill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rolling pin is a kind of kitchen utensil", "pln": ["(: cnet_isa_73e3543af4 (IsA rolling_pin kitchen_utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rolling stock is a kind of wheeled vehicle", "pln": ["(: cnet_isa_17bf7262c1 (IsA rolling_stock wheeled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rollmop is a kind of hor d oeuvre", "pln": ["(: cnet_isa_0b05cc613e (IsA rollmop hor_d_oeuvre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rollmop is a kind of pickled herring", "pln": ["(: cnet_isa_1ec18d4e4a (IsA rollmop pickled_herring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rollover is a kind of change", "pln": ["(: cnet_isa_13a979d9e3 (IsA rollover change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roly poly is a kind of pudding", "pln": ["(: cnet_isa_03c6548820 (IsA roly_poly pudding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "romaic is a kind of modern greek", "pln": ["(: cnet_isa_bcec8a5114 (IsA romaic modern_greek) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roman is a kind of proportional font", "pln": ["(: cnet_isa_1863e67af1 (IsA roman proportional_font) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roman is a kind of european", "pln": ["(: cnet_isa_470bf980e0 (IsA roman european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roman is a kind of italian", "pln": ["(: cnet_isa_88d73bac6d (IsA roman italian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roman alphabet is a kind of alphabet", "pln": ["(: cnet_isa_2ec25f1552 (IsA roman_alphabet alphabet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roman alphabet is a kind of bicameral script", "pln": ["(: cnet_isa_4274e1f2f0 (IsA roman_alphabet bicameral_script) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roman arch is a kind of round arch", "pln": ["(: cnet_isa_a27d2c9348 (IsA roman_arch round_arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "roman architecture is a kind of classical architecture", "pln": ["(: cnet_isa_e885ae3654 (IsA roman_architecture classical_architecture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "roman times is a kind of times", "pln": ["(: cnet_isa_a84ffec657 (IsA roman_times times) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roman building is a kind of antiquity", "pln": ["(: cnet_isa_af630dcd95 (IsA roman_building antiquity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roman building is a kind of building", "pln": ["(: cnet_isa_f98010bd3e (IsA roman_building building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roman calendar is a kind of lunar calendar", "pln": ["(: cnet_isa_71301460d4 (IsA roman_calendar lunar_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roman candle is a kind of firework", "pln": ["(: cnet_isa_378a72b1a3 (IsA roman_candle firework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roman catholic is a kind of catholic church", "pln": ["(: cnet_isa_eff29e1b7a (IsA roman_catholic catholic_church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roman catholic is a kind of catholic", "pln": ["(: cnet_isa_7f2dc61dcf (IsA roman_catholic catholic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roman catholicism is a kind of christianity", "pln": ["(: cnet_isa_3a7a955372 (IsA roman_catholicism christianity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roman clef is a kind of novel", "pln": ["(: cnet_isa_f14fbb4df3 (IsA roman_clef novel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roman deity is a kind of deity", "pln": ["(: cnet_isa_5e861f313c (IsA roman_deity deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roman fleuve is a kind of novel", "pln": ["(: cnet_isa_4831d2c8e9 (IsA roman_fleuve novel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roman hyacinth is a kind of hyacinth", "pln": ["(: cnet_isa_07b33e5592 (IsA roman_hyacinth hyacinth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roman law is a kind of legal code", "pln": ["(: cnet_isa_8fd9ff4d45 (IsA roman_law legal_code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roman legion is a kind of host", "pln": ["(: cnet_isa_46ae45fa98 (IsA roman_legion host) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roman mythology is a kind of classical mythology", "pln": ["(: cnet_isa_a50cc85e72 (IsA roman_mythology classical_mythology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roman nettle is a kind of nettle", "pln": ["(: cnet_isa_ea37723037 (IsA roman_nettle nettle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roman nose is a kind of nose", "pln": ["(: cnet_isa_683e433152 (IsA roman_nose nose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roman numeral is a kind of numeral", "pln": ["(: cnet_isa_597b7ee869 (IsA roman_numeral numeral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roman pace is a kind of linear unit", "pln": ["(: cnet_isa_f6e1ede196 (IsA roman_pace linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roman time is a kind of time", "pln": ["(: cnet_isa_8071790e9b (IsA roman_time time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roman wormwood is a kind of corydalis", "pln": ["(: cnet_isa_6c6c09f1fe (IsA roman_wormwood corydalis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roman wormwood is a kind of wormwood", "pln": ["(: cnet_isa_53bfe9faf1 (IsA roman_wormwood wormwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "romanal is a kind of artificial language", "pln": ["(: cnet_isa_98b7dc8951 (IsA romanal artificial_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "romance is a kind of latin", "pln": ["(: cnet_isa_4468b2000c (IsA romance latin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "romance is a kind of novel", "pln": ["(: cnet_isa_13de71a6e4 (IsA romance novel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "romanesque is a kind of architectural style", "pln": ["(: cnet_isa_3b8404ad90 (IsA romanesque architectural_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "romania is a kind of country", "pln": ["(: cnet_isa_cf60e3de7d (IsA romania country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "romanian is a kind of romance", "pln": ["(: cnet_isa_6a988f1c18 (IsA romanian romance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "romanian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_af084aac6b (IsA romanian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "romanism is a kind of catholicism", "pln": ["(: cnet_isa_da81073e9d (IsA romanism catholicism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "romanoff is a kind of emperor", "pln": ["(: cnet_isa_361cc77349 (IsA romanoff emperor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "romanov is a kind of dynasty", "pln": ["(: cnet_isa_f45eede51a (IsA romanov dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "romanov is a kind of royalty", "pln": ["(: cnet_isa_d5f814501a (IsA romanov royalty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "romansh is a kind of rhaeto romance", "pln": ["(: cnet_isa_b921d26bb3 (IsA romansh rhaeto_romance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "romantic is a kind of idealist", "pln": ["(: cnet_isa_db3185349e (IsA romantic idealist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "romanticism is a kind of idealism", "pln": ["(: cnet_isa_334367192e (IsA romanticism idealism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "romanticism is a kind of quality", "pln": ["(: cnet_isa_5041f90619 (IsA romanticism quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "romanticism is a kind of artistic style", "pln": ["(: cnet_isa_c22897f5a6 (IsA romanticism artistic_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "romanticism is a kind of humanistic discipline", "pln": ["(: cnet_isa_debaccd26e (IsA romanticism humanistic_discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "romanticist is a kind of artist", "pln": ["(: cnet_isa_c9fec84906 (IsA romanticist artist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "romany is a kind of sanskrit", "pln": ["(: cnet_isa_17a845c70a (IsA romany sanskrit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rome is a kind of city in italy", "pln": ["(: cnet_isa_7d6871085d (IsA rome city_in_italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rome is a kind of in italy", "pln": ["(: cnet_isa_80ccc09d4d (IsA rome in_italy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rome is a kind of leadership", "pln": ["(: cnet_isa_34f35dea37 (IsA rome leadership) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rome beauty is a kind of cooking apple", "pln": ["(: cnet_isa_433634482a (IsA rome_beauty cooking_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "romeo is a kind of lover", "pln": ["(: cnet_isa_63bc0a737b (IsA romeo lover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rommany is a kind of indian", "pln": ["(: cnet_isa_39f625af4c (IsA rommany indian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "romneya is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_ab8dcfe94c (IsA romneya dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "romper is a kind of garment", "pln": ["(: cnet_isa_8b813b56be (IsA romper garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "romper is a kind of person", "pln": ["(: cnet_isa_7e1f0c936e (IsA romper person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ron is a kind of west chadic", "pln": ["(: cnet_isa_fe4e913291 (IsA ron west_chadic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rondeau is a kind of poem", "pln": ["(: cnet_isa_df319c35b7 (IsA rondeau poem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rondelet is a kind of rondeau", "pln": ["(: cnet_isa_525d6df590 (IsA rondelet rondeau) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rondo is a kind of classical music", "pln": ["(: cnet_isa_d4f7c9c744 (IsA rondo classical_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rood screen is a kind of screen", "pln": ["(: cnet_isa_6b95504ed5 (IsA rood_screen screen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roof is a kind of protective covering", "pln": ["(: cnet_isa_c3e9f78327 (IsA roof protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roof is a kind of covering", "pln": ["(: cnet_isa_a628e84070 (IsA roof covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roof garden is a kind of garden", "pln": ["(: cnet_isa_56c54f4744 (IsA roof_garden garden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roof peak is a kind of vertex", "pln": ["(: cnet_isa_34b38d963b (IsA roof_peak vertex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roofer is a kind of craftsman", "pln": ["(: cnet_isa_151ff982f8 (IsA roofer craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roofing is a kind of trade", "pln": ["(: cnet_isa_37df3fcf71 (IsA roofing trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roofing is a kind of material", "pln": ["(: cnet_isa_ba9feec48a (IsA roofing material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roofing material is a kind of building material", "pln": ["(: cnet_isa_61c8fb775c (IsA roofing_material building_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roofing paper is a kind of paper", "pln": ["(: cnet_isa_eee6ceaaef (IsA roofing_paper paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "roofing paper is a kind of roofing material", "pln": ["(: cnet_isa_97485e014e (IsA roofing_paper roofing_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rooftop is a kind of top", "pln": ["(: cnet_isa_d60ba5f851 (IsA rooftop top) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rooibo is a kind of shrub", "pln": ["(: cnet_isa_6add13162e (IsA rooibo shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rook is a kind of bird", "pln": ["(: cnet_isa_8ab94f08c4 (IsA rook bird) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rook is a kind of chess game piece", "pln": ["(: cnet_isa_50d6b638cf (IsA rook chess_game_piece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rook is a kind of chess piece", "pln": ["(: cnet_isa_be64cbb110 (IsA rook chess_piece) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rook is a kind of piece of chess set", "pln": ["(: cnet_isa_53e8e04315 (IsA rook piece_of_chess_set) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rook is a kind of corvine bird", "pln": ["(: cnet_isa_aaa12e8b52 (IsA rook corvine_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rookery is a kind of breeding ground", "pln": ["(: cnet_isa_75afba4a86 (IsA rookery breeding_ground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "room is a kind of interior", "pln": ["(: cnet_isa_961e5a03bd (IsA room interior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "room is a kind of part of building", "pln": ["(: cnet_isa_e05333f99d (IsA room part_of_building) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "room is a kind of part of house", "pln": ["(: cnet_isa_da617dd82d (IsA room part_of_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "room is a kind of place", "pln": ["(: cnet_isa_0a8730196b (IsA room place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "room is a kind of area", "pln": ["(: cnet_isa_a440e281a7 (IsA room area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "room is a kind of gathering", "pln": ["(: cnet_isa_bdb11b1abf (IsA room gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "room is a kind of position", "pln": ["(: cnet_isa_271c6450cc (IsA room position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "room is a kind of opportunity", "pln": ["(: cnet_isa_89a1e18dc5 (IsA room opportunity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "room and board is a kind of lodging and food", "pln": ["(: cnet_isa_437edba6cd (IsA room_and_board lodging_and_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "room clerk is a kind of desk clerk", "pln": ["(: cnet_isa_5e35b69f06 (IsA room_clerk desk_clerk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "room light is a kind of light", "pln": ["(: cnet_isa_de88741050 (IsA room_light light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "room rate is a kind of rate", "pln": ["(: cnet_isa_12e8f2beb2 (IsA room_rate rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "room temperature is a kind of temperature", "pln": ["(: cnet_isa_0fc7c1d04d (IsA room_temperature temperature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roomette is a kind of compartment", "pln": ["(: cnet_isa_a9a42d44f7 (IsA roomette compartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roomful is a kind of containerful", "pln": ["(: cnet_isa_d58328feac (IsA roomful containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roominess is a kind of breadth", "pln": ["(: cnet_isa_72b3dcef2c (IsA roominess breadth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roommate is a kind of friend", "pln": ["(: cnet_isa_5e802f8ba1 (IsA roommate friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "room is a kind of bedroom", "pln": ["(: cnet_isa_264f11d70a (IsA room bedroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roost is a kind of perch", "pln": ["(: cnet_isa_4fea123fa3 (IsA roost perch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roost is a kind of shelter", "pln": ["(: cnet_isa_44f0cdeebf (IsA roost shelter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rooster is a kind of chicken", "pln": ["(: cnet_isa_0a50984800 (IsA rooster chicken) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rooster is a kind of male chicken", "pln": ["(: cnet_isa_d0072648dd (IsA rooster male_chicken) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "root is a kind of structure", "pln": ["(: cnet_isa_fa9ac0217a (IsA root structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "root is a kind of plant organ", "pln": ["(: cnet_isa_2653f15c95 (IsA root plant_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "root is a kind of form", "pln": ["(: cnet_isa_ea877955f7 (IsA root form) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "root is a kind of number", "pln": ["(: cnet_isa_bb58dfebf5 (IsA root number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "root beer is a kind of soft drink", "pln": ["(: cnet_isa_876a611169 (IsA root_beer soft_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "root beer float is a kind of ice cream soda", "pln": ["(: cnet_isa_49dd628869 (IsA root_beer_float ice_cream_soda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "root canal is a kind of passage", "pln": ["(: cnet_isa_caa5aa4af7 (IsA root_canal passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "root cap is a kind of plant organ", "pln": ["(: cnet_isa_609a462b8e (IsA root_cap plant_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "root cellar is a kind of excavation", "pln": ["(: cnet_isa_de0635d313 (IsA root_cellar excavation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "root cellar is a kind of storage space", "pln": ["(: cnet_isa_9c9889dffe (IsA root_cellar storage_space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "root climber is a kind of climber", "pln": ["(: cnet_isa_116b326311 (IsA root_climber climber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "root crop is a kind of crop", "pln": ["(: cnet_isa_b023d7d67d (IsA root_crop crop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "root hair is a kind of plant organ", "pln": ["(: cnet_isa_ef8b248de5 (IsA root_hair plant_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "root rot is a kind of plant disease", "pln": ["(: cnet_isa_1ec03f04f2 (IsA root_rot plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "root vegetable is a kind of vegetable", "pln": ["(: cnet_isa_2647aa6549 (IsA root_vegetable vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rootage is a kind of system", "pln": ["(: cnet_isa_10b9a832fa (IsA rootage system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rootage is a kind of stationariness", "pln": ["(: cnet_isa_00ac58043c (IsA rootage stationariness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rooting is a kind of growth", "pln": ["(: cnet_isa_8bb6fc5ed5 (IsA rooting growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rooting reflex is a kind of reflex", "pln": ["(: cnet_isa_ea0f7ff5af (IsA rooting_reflex reflex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rootlet is a kind of root", "pln": ["(: cnet_isa_040fd08fa0 (IsA rootlet root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "root is a kind of condition", "pln": ["(: cnet_isa_311de4350d (IsA root condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rootstock is a kind of stock", "pln": ["(: cnet_isa_2eb1168e69 (IsA rootstock stock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rope is a kind of line", "pln": ["(: cnet_isa_60119add27 (IsA rope line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rope bridge is a kind of bridge", "pln": ["(: cnet_isa_cd596a0ef2 (IsA rope_bridge bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rope burn is a kind of abrasion", "pln": ["(: cnet_isa_ef27fa5d91 (IsA rope_burn abrasion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rope dope is a kind of boxing", "pln": ["(: cnet_isa_05a52b37c7 (IsA rope_dope boxing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rope ladder is a kind of ladder", "pln": ["(: cnet_isa_e77437c821 (IsA rope_ladder ladder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rope tow is a kind of ski tow", "pln": ["(: cnet_isa_8165d8d850 (IsA rope_tow ski_tow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rope yarn is a kind of strand", "pln": ["(: cnet_isa_63d7f5c427 (IsA rope_yarn strand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ropemaker is a kind of craftsman", "pln": ["(: cnet_isa_cb80a07147 (IsA ropemaker craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "roper is a kind of cowboy", "pln": ["(: cnet_isa_6b176e0fa8 (IsA roper cowboy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roper is a kind of decoy", "pln": ["(: cnet_isa_e8437677b3 (IsA roper decoy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ropewalk is a kind of workplace", "pln": ["(: cnet_isa_46043e5852 (IsA ropewalk workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ropewalker is a kind of aerialist", "pln": ["(: cnet_isa_4f6fa674de (IsA ropewalker aerialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roping is a kind of labor", "pln": ["(: cnet_isa_4fcb7da484 (IsA roping labor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roquefort is a kind of bleu", "pln": ["(: cnet_isa_f7181ab1f6 (IsA roquefort bleu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roridula is a kind of carnivorous plant", "pln": ["(: cnet_isa_9d24ce9e21 (IsA roridula carnivorous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "roridulaceae is a kind of dicot family", "pln": ["(: cnet_isa_608624ec3f (IsA roridulaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rorippa is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_b570865b5a (IsA rorippa dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rorqual is a kind of baleen whale", "pln": ["(: cnet_isa_df0ad886d0 (IsA rorqual baleen_whale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rorschach is a kind of projective test", "pln": ["(: cnet_isa_85e26d34dd (IsA rorschach projective_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rosa is a kind of rosid dicot genus", "pln": ["(: cnet_isa_8155da5455 (IsA rosa rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rosaceae is a kind of rosid dicot family", "pln": ["(: cnet_isa_cf99482e4f (IsA rosaceae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rosale is a kind of plant order", "pln": ["(: cnet_isa_55f690e03a (IsA rosale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rosary is a kind of bead", "pln": ["(: cnet_isa_a22425bb69 (IsA rosary bead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rose is a kind of pink", "pln": ["(: cnet_isa_760fb22cbc (IsA rose pink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rose is a kind of shrub", "pln": ["(: cnet_isa_edfc118531 (IsA rose shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rose apple is a kind of edible fruit", "pln": ["(: cnet_isa_06fee1a367 (IsA rose_apple edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rose apple is a kind of fruit tree", "pln": ["(: cnet_isa_31b2153649 (IsA rose_apple fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rose bed is a kind of flowerbed", "pln": ["(: cnet_isa_025dd5870f (IsA rose_bed flowerbed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rose chafer is a kind of melolonthid beetle", "pln": ["(: cnet_isa_7de3db4f1a (IsA rose_chafer melolonthid_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rose chafer is a kind of scarabaeid beetle", "pln": ["(: cnet_isa_cd6c61f564 (IsA rose_chafer scarabaeid_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rose chestnut is a kind of tree", "pln": ["(: cnet_isa_eb0335c867 (IsA rose_chestnut tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rose colored starling is a kind of starling", "pln": ["(: cnet_isa_4a226d0855 (IsA rose_colored_starling starling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rose garden is a kind of garden", "pln": ["(: cnet_isa_7454d11410 (IsA rose_garden garden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rose geranium is a kind of geranium", "pln": ["(: cnet_isa_dc314cc29d (IsA rose_geranium geranium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rose globe lily is a kind of globe lily", "pln": ["(: cnet_isa_96e706f091 (IsA rose_globe_lily globe_lily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rose gum is a kind of flooded gum", "pln": ["(: cnet_isa_1123da3c01 (IsA rose_gum flooded_gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rose mallow is a kind of hibiscus", "pln": ["(: cnet_isa_1d75bbc786 (IsA rose_mallow hibiscus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rose mallow is a kind of hollyhock", "pln": ["(: cnet_isa_12913db0e4 (IsA rose_mallow hollyhock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rose moss is a kind of portulaca", "pln": ["(: cnet_isa_dd3b581539 (IsA rose_moss portulaca) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rose of jericho is a kind of crucifer", "pln": ["(: cnet_isa_0def158c1a (IsA rose_of_jericho crucifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rose of sharon is a kind of hibiscus", "pln": ["(: cnet_isa_017fd4d551 (IsA rose_of_sharon hibiscus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rose quartz is a kind of quartz", "pln": ["(: cnet_isa_95185fa953 (IsA rose_quartz quartz) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rose root is a kind of sedum", "pln": ["(: cnet_isa_c3a4b92c8b (IsA rose_root sedum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rose water is a kind of perfume", "pln": ["(: cnet_isa_2d265dcc67 (IsA rose_water perfume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rose window is a kind of window", "pln": ["(: cnet_isa_ebe927ee67 (IsA rose_window window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roseate spoonbill is a kind of spoonbill", "pln": ["(: cnet_isa_cf8df97063 (IsA roseate_spoonbill spoonbill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rosebay is a kind of rhododendron", "pln": ["(: cnet_isa_0e613fc8fa (IsA rosebay rhododendron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rosebud is a kind of girl", "pln": ["(: cnet_isa_6cd1836973 (IsA rosebud girl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rosebud is a kind of bud", "pln": ["(: cnet_isa_06d0880ff4 (IsA rosebud bud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rosebud cherry is a kind of flowering cherry", "pln": ["(: cnet_isa_9f5f587584 (IsA rosebud_cherry flowering_cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rosebud orchid is a kind of orchid", "pln": ["(: cnet_isa_c55bdffdcc (IsA rosebud_orchid orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rosefish is a kind of rockfish", "pln": ["(: cnet_isa_404c3978b4 (IsA rosefish rockfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roselle is a kind of hibiscus", "pln": ["(: cnet_isa_f1fe0f7fc2 (IsA roselle hibiscus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rosellinia is a kind of fungus genus", "pln": ["(: cnet_isa_cf31b22caa (IsA rosellinia fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rosemaling is a kind of decoration", "pln": ["(: cnet_isa_368ad137f7 (IsA rosemaling decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rosemary is a kind of herb", "pln": ["(: cnet_isa_7f0de9dd91 (IsA rosemary herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ros is a kind of flower", "pln": ["(: cnet_isa_6edca4043e (IsA ros flower) (STV 1.0 0.9748))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rosette is a kind of adornment", "pln": ["(: cnet_isa_1e2bd34494 (IsA rosette adornment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rosette is a kind of leaf", "pln": ["(: cnet_isa_717620ab23 (IsA rosette leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rosewood is a kind of tree", "pln": ["(: cnet_isa_57c292e995 (IsA rosewood tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rosewood is a kind of wood", "pln": ["(: cnet_isa_3441439a23 (IsA rosewood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rosh hashanah is a kind of feast day", "pln": ["(: cnet_isa_11701badf0 (IsA rosh_hashanah feast_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rosh hashanah is a kind of high holy day", "pln": ["(: cnet_isa_089907ecd2 (IsA rosh_hashanah high_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rosh hodesh is a kind of jewish holy day", "pln": ["(: cnet_isa_d627d62a51 (IsA rosh_hodesh jewish_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rosicrucian is a kind of member", "pln": ["(: cnet_isa_db38ea9ebe (IsA rosicrucian member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rosicrucianism is a kind of theological doctrine", "pln": ["(: cnet_isa_d35301b89b (IsA rosicrucianism theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rosid dicot family is a kind of dicot family", "pln": ["(: cnet_isa_841f5035de (IsA rosid_dicot_family dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rosid dicot genus is a kind of dicot genus", "pln": ["(: cnet_isa_1a3fe98fea (IsA rosid_dicot_genus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rosidae is a kind of class", "pln": ["(: cnet_isa_6a729d7d94 (IsA rosidae class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rosilla is a kind of sneezeweed", "pln": ["(: cnet_isa_7653385859 (IsA rosilla sneezeweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rosin bag is a kind of bag", "pln": ["(: cnet_isa_285c32c321 (IsA rosin_bag bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rosin bag is a kind of baseball equipment", "pln": ["(: cnet_isa_c305706d38 (IsA rosin_bag baseball_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rosinweed is a kind of compass plant", "pln": ["(: cnet_isa_ffe070e9e4 (IsA rosinweed compass_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rosita is a kind of centaury", "pln": ["(: cnet_isa_c141bf424b (IsA rosita centaury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rosmarinus is a kind of asterid dicot genus", "pln": ["(: cnet_isa_25ff470175 (IsA rosmarinus asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rosy boa is a kind of boa", "pln": ["(: cnet_isa_a035b93aaa (IsA rosy_boa boa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rota is a kind of roll", "pln": ["(: cnet_isa_d79273db02 (IsA rota roll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rota is a kind of court", "pln": ["(: cnet_isa_145aa86b44 (IsA rota court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rotarian is a kind of member", "pln": ["(: cnet_isa_c348dc37bc (IsA rotarian member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rotary actuator is a kind of actuator", "pln": ["(: cnet_isa_f1ed0d1f38 (IsA rotary_actuator actuator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rotary club is a kind of service club", "pln": ["(: cnet_isa_d5d3f67665 (IsA rotary_club service_club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rotary engine is a kind of internal combustion engine", "pln": ["(: cnet_isa_00c244f8f1 (IsA rotary_engine internal_combustion_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rotary press is a kind of press", "pln": ["(: cnet_isa_9d67bd4307 (IsA rotary_press press) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rotating mechanism is a kind of mechanism", "pln": ["(: cnet_isa_51b5990e6c (IsA rotating_mechanism mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rotating shaft is a kind of rod", "pln": ["(: cnet_isa_bddb8a748e (IsA rotating_shaft rod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rotation is a kind of motion", "pln": ["(: cnet_isa_329629ff79 (IsA rotation motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rotation is a kind of sequence", "pln": ["(: cnet_isa_8a7ba9f0f9 (IsA rotation sequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rotation is a kind of turning", "pln": ["(: cnet_isa_9ecce28213 (IsA rotation turning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rotation is a kind of transformation", "pln": ["(: cnet_isa_96d3150a9a (IsA rotation transformation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rotational latency is a kind of time interval", "pln": ["(: cnet_isa_9fac8aece5 (IsA rotational_latency time_interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rotational nystagmus is a kind of nystagmus", "pln": ["(: cnet_isa_49742f2551 (IsA rotational_nystagmus nystagmus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rotator cuff is a kind of structure", "pln": ["(: cnet_isa_8606ce2b85 (IsA rotator_cuff structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rotavirus is a kind of reovirus", "pln": ["(: cnet_isa_c7fe8897d8 (IsA rotavirus reovirus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rote is a kind of memorization", "pln": ["(: cnet_isa_207b3bb4ea (IsA rote memorization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rotenone is a kind of insecticide", "pln": ["(: cnet_isa_45a9216f37 (IsA rotenone insecticide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rotgut is a kind of alcohol", "pln": ["(: cnet_isa_6263f37658 (IsA rotgut alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rotifer is a kind of invertebrate", "pln": ["(: cnet_isa_3ca8446e73 (IsA rotifer invertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rotifera is a kind of phylum", "pln": ["(: cnet_isa_8500f077c5 (IsA rotifera phylum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rotisserie is a kind of oven", "pln": ["(: cnet_isa_54b8c03af5 (IsA rotisserie oven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rotisserie is a kind of restaurant", "pln": ["(: cnet_isa_76604f3f48 (IsA rotisserie restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rotl is a kind of weight unit", "pln": ["(: cnet_isa_d95b25657a (IsA rotl weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rotogravure is a kind of photogravure", "pln": ["(: cnet_isa_d15e2a0c8c (IsA rotogravure photogravure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rotogravure is a kind of photojournalism", "pln": ["(: cnet_isa_05b227a373 (IsA rotogravure photojournalism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rotor is a kind of armature", "pln": ["(: cnet_isa_debc6dfa9b (IsA rotor armature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rotor is a kind of bar", "pln": ["(: cnet_isa_20dff315ac (IsA rotor bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rotor is a kind of rotating mechanism", "pln": ["(: cnet_isa_5e6d5d6981 (IsA rotor rotating_mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rotor blade is a kind of airfoil", "pln": ["(: cnet_isa_9afe5bf80d (IsA rotor_blade airfoil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rotor head is a kind of axis", "pln": ["(: cnet_isa_fd6c58b709 (IsA rotor_head axis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rotten borough is a kind of borough", "pln": ["(: cnet_isa_2ddc04cc31 (IsA rotten_borough borough) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rottenstone is a kind of limestone", "pln": ["(: cnet_isa_1e489d32ba (IsA rottenstone limestone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rotter is a kind of unpleasant person", "pln": ["(: cnet_isa_dcf1e5e756 (IsA rotter unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rottweiler is a kind of dog", "pln": ["(: cnet_isa_59649d985b (IsA rottweiler dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rottweiler is a kind of shepherd dog", "pln": ["(: cnet_isa_7af9514fad (IsA rottweiler shepherd_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rotunda is a kind of building", "pln": ["(: cnet_isa_5d2858ece0 (IsA rotunda building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rotunda is a kind of room", "pln": ["(: cnet_isa_e69d267960 (IsA rotunda room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rotundity is a kind of tone", "pln": ["(: cnet_isa_42f90f15e2 (IsA rotundity tone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rouge is a kind of makeup", "pln": ["(: cnet_isa_b95299270d (IsA rouge makeup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rouge et noir is a kind of card game", "pln": ["(: cnet_isa_b99250d28e (IsA rouge_et_noir card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rough is a kind of sensation", "pln": ["(: cnet_isa_f53b8c8a84 (IsA rough sensation) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rough is a kind of site", "pln": ["(: cnet_isa_313d9cb5ad (IsA rough site) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rough bindweed is a kind of sarsaparilla", "pln": ["(: cnet_isa_1d69add78b (IsA rough_bindweed sarsaparilla) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rough cut is a kind of movie", "pln": ["(: cnet_isa_3d87cf0932 (IsA rough_cut movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rough fish is a kind of fish", "pln": ["(: cnet_isa_e05f20a49a (IsA rough_fish fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rough green snake is a kind of green snake", "pln": ["(: cnet_isa_f6ecfc3295 (IsA rough_green_snake green_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rough leaved aster is a kind of aster", "pln": ["(: cnet_isa_edbc6634a1 (IsA rough_leaved_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rough legged hawk is a kind of hawk", "pln": ["(: cnet_isa_6b1bc154a5 (IsA rough_legged_hawk hawk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rough rider is a kind of cavalryman", "pln": ["(: cnet_isa_3a16f4c700 (IsA rough_rider cavalryman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rough skinned newt is a kind of pacific newt", "pln": ["(: cnet_isa_96e60287dd (IsA rough_skinned_newt pacific_newt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rough stemmed goldenrod is a kind of goldenrod", "pln": ["(: cnet_isa_9fc740ca1d (IsA rough_stemmed_goldenrod goldenrod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roughage is a kind of foodstuff", "pln": ["(: cnet_isa_b18962a503 (IsA roughage foodstuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roughcast is a kind of model", "pln": ["(: cnet_isa_3c4bc37a5b (IsA roughcast model) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roughcast is a kind of plaster", "pln": ["(: cnet_isa_159ba3a79a (IsA roughcast plaster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roughness is a kind of intensification", "pln": ["(: cnet_isa_58af705441 (IsA roughness intensification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roughness is a kind of texture", "pln": ["(: cnet_isa_c8d501799e (IsA roughness texture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roughrider is a kind of horseman", "pln": ["(: cnet_isa_1e56d6412b (IsA roughrider horseman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roughtail stingray is a kind of stingray", "pln": ["(: cnet_isa_34feba83f3 (IsA roughtail_stingray stingray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roulade is a kind of dish", "pln": ["(: cnet_isa_caed9c2264 (IsA roulade dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roulade is a kind of tune", "pln": ["(: cnet_isa_c1facee49a (IsA roulade tune) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rouleau is a kind of roll", "pln": ["(: cnet_isa_5e572c1624 (IsA rouleau roll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roulette is a kind of game of chance", "pln": ["(: cnet_isa_16bac56cd2 (IsA roulette game_of_chance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roulette is a kind of wheel", "pln": ["(: cnet_isa_c8e0436b13 (IsA roulette wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roulette is a kind of curve", "pln": ["(: cnet_isa_6926965df8 (IsA roulette curve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roulette ball is a kind of ball", "pln": ["(: cnet_isa_a391caba80 (IsA roulette_ball ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roulette wheel is a kind of game equipment", "pln": ["(: cnet_isa_1966bf61e3 (IsA roulette_wheel game_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "round is a kind of shape", "pln": ["(: cnet_isa_d729c587bd (IsA round shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "round is a kind of call", "pln": ["(: cnet_isa_0cba725cd2 (IsA round call) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "round is a kind of habitude", "pln": ["(: cnet_isa_38ed19e8fe (IsA round habitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "round is a kind of ammunition", "pln": ["(: cnet_isa_d447236e49 (IsA round ammunition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "round is a kind of applause", "pln": ["(: cnet_isa_e588335a9d (IsA round applause) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "round is a kind of partsong", "pln": ["(: cnet_isa_14bf23dbbd (IsA round partsong) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "round is a kind of cut of beef", "pln": ["(: cnet_isa_61257524f9 (IsA round cut_of_beef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "round is a kind of helping", "pln": ["(: cnet_isa_c146388b1a (IsA round helping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "round is a kind of path", "pln": ["(: cnet_isa_35e7f17f4c (IsA round path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "round arch is a kind of arch", "pln": ["(: cnet_isa_e64e1520da (IsA round_arch arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "round bone is a kind of bone", "pln": ["(: cnet_isa_008f086dec (IsA round_bone bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "round bottom flask is a kind of flask", "pln": ["(: cnet_isa_4879de79a0 (IsA round_bottom_flask flask) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "round clock patrol is a kind of patrol", "pln": ["(: cnet_isa_081ccc1711 (IsA round_clock_patrol patrol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "round dance is a kind of ballroom dancing", "pln": ["(: cnet_isa_3fb450019f (IsA round_dance ballroom_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "round dance is a kind of folk dancing", "pln": ["(: cnet_isa_481d96de03 (IsA round_dance folk_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "round file is a kind of file", "pln": ["(: cnet_isa_91dd522c79 (IsA round_file file) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "round hand is a kind of longhand", "pln": ["(: cnet_isa_a5e0b33f6d (IsA round_hand longhand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "round headed leek is a kind of alliaceous plant", "pln": ["(: cnet_isa_7918644944 (IsA round_headed_leek alliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "round leaved rein orchid is a kind of rein orchid", "pln": ["(: cnet_isa_0b691b34cc (IsA round_leaved_rein_orchid rein_orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "round ligament of uterus is a kind of ligament", "pln": ["(: cnet_isa_3ea9287e08 (IsA round_ligament_of_uterus ligament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "round of golf is a kind of golf", "pln": ["(: cnet_isa_e3ea1243b5 (IsA round_of_golf golf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "round robin is a kind of letter", "pln": ["(: cnet_isa_6abf1e802f (IsA round_robin letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "round robin is a kind of tournament", "pln": ["(: cnet_isa_1aa99e45e0 (IsA round_robin tournament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "round scad is a kind of scad", "pln": ["(: cnet_isa_1fb17a873c (IsA round_scad scad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "round shape is a kind of shape", "pln": ["(: cnet_isa_37748a803e (IsA round_shape shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "round steak is a kind of beefsteak", "pln": ["(: cnet_isa_6f1709b167 (IsA round_steak beefsteak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "round table is a kind of conference", "pln": ["(: cnet_isa_1eea564112 (IsA round_table conference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "round tailed muskrat is a kind of rodent", "pln": ["(: cnet_isa_3638d6d84e (IsA round_tailed_muskrat rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "round trip is a kind of trip", "pln": ["(: cnet_isa_4dddf33287 (IsA round_trip trip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "round trip light time is a kind of elapsed time", "pln": ["(: cnet_isa_03b8bc7218 (IsA round_trip_light_time elapsed_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "round trip ticket is a kind of ticket", "pln": ["(: cnet_isa_820afcec4e (IsA round_trip_ticket ticket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "round whitefish is a kind of whitefish", "pln": ["(: cnet_isa_7bdebcc49f (IsA round_whitefish whitefish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roundedness is a kind of convexity", "pln": ["(: cnet_isa_8904bf88ce (IsA roundedness convexity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roundel is a kind of armor plate", "pln": ["(: cnet_isa_9bf6afa68d (IsA roundel armor_plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roundel is a kind of rondeau", "pln": ["(: cnet_isa_f9ecc0b5f4 (IsA roundel rondeau) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roundelay is a kind of song", "pln": ["(: cnet_isa_794fd7a487 (IsA roundelay song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rounder is a kind of tool", "pln": ["(: cnet_isa_c017cd0e73 (IsA rounder tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rounder is a kind of baseball", "pln": ["(: cnet_isa_6d71e19515 (IsA rounder baseball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roundhead is a kind of person", "pln": ["(: cnet_isa_15126417ab (IsA roundhead person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roundhead is a kind of supporter", "pln": ["(: cnet_isa_ba41add8df (IsA roundhead supporter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roundhouse is a kind of hook", "pln": ["(: cnet_isa_348b705f74 (IsA roundhouse hook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roundhouse is a kind of workplace", "pln": ["(: cnet_isa_05c163f149 (IsA roundhouse workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rounding is a kind of miscalculation", "pln": ["(: cnet_isa_3121a89286 (IsA rounding miscalculation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roundness is a kind of number", "pln": ["(: cnet_isa_fb256f321c (IsA roundness number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roundness is a kind of shape", "pln": ["(: cnet_isa_6bd30d8572 (IsA roundness shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roundsman is a kind of workman", "pln": ["(: cnet_isa_c80c510370 (IsA roundsman workman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roundup is a kind of police work", "pln": ["(: cnet_isa_61c89aeaa5 (IsA roundup police_work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roundup is a kind of ranching", "pln": ["(: cnet_isa_c9cfb7af2a (IsA roundup ranching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roundup is a kind of summary", "pln": ["(: cnet_isa_3864c31f73 (IsA roundup summary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rout is a kind of defeat", "pln": ["(: cnet_isa_470505ac9c (IsA rout defeat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "routemarch is a kind of march", "pln": ["(: cnet_isa_feb4e277ba (IsA routemarch march) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "router is a kind of power tool", "pln": ["(: cnet_isa_d7a465a320 (IsA router power_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "router is a kind of device", "pln": ["(: cnet_isa_cc47e69bfd (IsA router device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "router is a kind of skilled worker", "pln": ["(: cnet_isa_fc278a90bd (IsA router skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "router plane is a kind of plane", "pln": ["(: cnet_isa_5546d74ace (IsA router_plane plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "routine is a kind of procedure", "pln": ["(: cnet_isa_bab5c7bce3 (IsA routine procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "routine is a kind of software", "pln": ["(: cnet_isa_cdda46b5b9 (IsA routine software) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roux is a kind of concoction", "pln": ["(: cnet_isa_54308c2c8f (IsA roux concoction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rove beetle is a kind of beetle", "pln": ["(: cnet_isa_b9bf5d9f97 (IsA rove_beetle beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rover is a kind of boy scout", "pln": ["(: cnet_isa_473c02e10c (IsA rover boy_scout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "row is a kind of fight", "pln": ["(: cnet_isa_13714f0ef2 (IsA row fight) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "row is a kind of sequence", "pln": ["(: cnet_isa_8a324cacb5 (IsA row sequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "row is a kind of array", "pln": ["(: cnet_isa_7d3f3c5def (IsA row array) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "row is a kind of line", "pln": ["(: cnet_isa_48d36f3103 (IsA row line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "row is a kind of strip", "pln": ["(: cnet_isa_9440e051b8 (IsA row strip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "row house is a kind of house", "pln": ["(: cnet_isa_27f1915f08 (IsA row_house house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "row of brick is a kind of course", "pln": ["(: cnet_isa_db59e054f5 (IsA row_of_brick course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "row vector is a kind of vector", "pln": ["(: cnet_isa_2d6f536b49 (IsA row_vector vector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rowan is a kind of mountain ash", "pln": ["(: cnet_isa_6b71ca2c7b (IsA rowan mountain_ash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rowanberry is a kind of fruit", "pln": ["(: cnet_isa_2bcd807fad (IsA rowanberry fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rowdiness is a kind of disorder", "pln": ["(: cnet_isa_20ff89d15c (IsA rowdiness disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rowel is a kind of wheel", "pln": ["(: cnet_isa_147e917b67 (IsA rowel wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rowing is a kind of good exercise", "pln": ["(: cnet_isa_c4c122e73d (IsA rowing good_exercise) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rowing is a kind of great source of exercise", "pln": ["(: cnet_isa_f01531e50a (IsA rowing great_source_of_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rowing is a kind of sport", "pln": ["(: cnet_isa_b8a56881e4 (IsA rowing sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rowing boat is a kind of dinghy", "pln": ["(: cnet_isa_ad62edbcdc (IsA rowing_boat dinghy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rowing club is a kind of club", "pln": ["(: cnet_isa_af08e7af4f (IsA rowing_club club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rowlock arch is a kind of arch", "pln": ["(: cnet_isa_1cf7676191 (IsA rowlock_arch arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "royal is a kind of stag", "pln": ["(: cnet_isa_6d9bce6606 (IsA royal stag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "royal is a kind of sail", "pln": ["(: cnet_isa_49951acba9 (IsA royal sail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "royal academy is a kind of academy", "pln": ["(: cnet_isa_b6704b70cb (IsA royal_academy academy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "royal agaric is a kind of agaric", "pln": ["(: cnet_isa_5bc4963d70 (IsA royal_agaric agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "royal air force is a kind of air force", "pln": ["(: cnet_isa_3654019c15 (IsA royal_air_force air_force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "royal brace is a kind of brace", "pln": ["(: cnet_isa_d0858e41df (IsA royal_brace brace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "royal canadian mounted police is a kind of international law enforcement agency", "pln": ["(: cnet_isa_b4bae1101a (IsA royal_canadian_mounted_police international_law_enforcement_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "royal canadian mounted police is a kind of police", "pln": ["(: cnet_isa_ddfab2bd6c (IsA royal_canadian_mounted_police police) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "royal casino is a kind of casino", "pln": ["(: cnet_isa_6066f531d9 (IsA royal_casino casino) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "royal charter is a kind of charter", "pln": ["(: cnet_isa_2265dfaaf8 (IsA royal_charter charter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "royal fern is a kind of flowering fern", "pln": ["(: cnet_isa_b3d1330d59 (IsA royal_fern flowering_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "royal flush is a kind of excellant hand in poker", "pln": ["(: cnet_isa_ab142aee9e (IsA royal_flush excellant_hand_in_poker) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "royal flush is a kind of great poker hand", "pln": ["(: cnet_isa_66d25ac262 (IsA royal_flush great_poker_hand) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "royal flush is a kind of poker hand", "pln": ["(: cnet_isa_1140230335 (IsA royal_flush poker_hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "royal jelly is a kind of secretion", "pln": ["(: cnet_isa_2542b1e526 (IsA royal_jelly secretion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "royal mast is a kind of topmast", "pln": ["(: cnet_isa_775b6923b6 (IsA royal_mast topmast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "royal national eisteddfod is a kind of eisteddfod", "pln": ["(: cnet_isa_f7c33340b4 (IsA royal_national_eisteddfod eisteddfod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "royal palm is a kind of palm", "pln": ["(: cnet_isa_8ae324c0b2 (IsA royal_palm palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "royal poinciana is a kind of angiospermous tree", "pln": ["(: cnet_isa_7f1ef77c13 (IsA royal_poinciana angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "royal road is a kind of road", "pln": ["(: cnet_isa_00407cda28 (IsA royal_road road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "royal society is a kind of academy", "pln": ["(: cnet_isa_b236350fc4 (IsA royal_society academy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "royal tennis is a kind of tennis", "pln": ["(: cnet_isa_c879433479 (IsA royal_tennis tennis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "royalism is a kind of attachment", "pln": ["(: cnet_isa_39c7223838 (IsA royalism attachment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "royalist is a kind of monarchist", "pln": ["(: cnet_isa_69153894ac (IsA royalist monarchist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "royalty is a kind of house", "pln": ["(: cnet_isa_13ea6d1db7 (IsA royalty house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "royalty is a kind of payment", "pln": ["(: cnet_isa_0044d20143 (IsA royalty payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "roystonea is a kind of monocot genus", "pln": ["(: cnet_isa_cd35c60a62 (IsA roystonea monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rub is a kind of contact", "pln": ["(: cnet_isa_6b73d90a56 (IsA rub contact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rub dub is a kind of sound", "pln": ["(: cnet_isa_31a51791bf (IsA rub_dub sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rub up is a kind of review", "pln": ["(: cnet_isa_ea5aa1c034 (IsA rub_up review) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubato is a kind of tempo", "pln": ["(: cnet_isa_19535595f9 (IsA rubato tempo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubber is a kind of another name for condom", "pln": ["(: cnet_isa_8087b1e690 (IsA rubber another_name_for_condom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubber is a kind of malliable substance", "pln": ["(: cnet_isa_7ffd4a2ff7 (IsA rubber malliable_substance) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubber is a kind of contest", "pln": ["(: cnet_isa_3f87870b25 (IsA rubber contest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubber is a kind of latex", "pln": ["(: cnet_isa_634984eaf5 (IsA rubber latex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubber band is a kind of band", "pln": ["(: cnet_isa_a31ea1cde1 (IsA rubber_band band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubber band is a kind of elastic device", "pln": ["(: cnet_isa_64aef68d87 (IsA rubber_band elastic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubber boa is a kind of boa", "pln": ["(: cnet_isa_ff87266fe9 (IsA rubber_boa boa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubber boot is a kind of boot", "pln": ["(: cnet_isa_2bf4f1ac11 (IsA rubber_boot boot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubber bullet is a kind of bullet", "pln": ["(: cnet_isa_3aa1dc0482 (IsA rubber_bullet bullet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubber cement is a kind of adhesive material", "pln": ["(: cnet_isa_e5ad5d4789 (IsA rubber_cement adhesive_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubber chicken is a kind of prop", "pln": ["(: cnet_isa_ab24fd475c (IsA rubber_chicken prop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubber duck is a kind of toy", "pln": ["(: cnet_isa_af2216c6c7 (IsA rubber_duck toy) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubber eraser is a kind of eraser", "pln": ["(: cnet_isa_7e46ec1d24 (IsA rubber_eraser eraser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubber stamp is a kind of authorization", "pln": ["(: cnet_isa_018495fa85 (IsA rubber_stamp authorization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubberneck is a kind of spectator", "pln": ["(: cnet_isa_2e07c74d08 (IsA rubberneck spectator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubbing is a kind of representation", "pln": ["(: cnet_isa_da17371034 (IsA rubbing representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubbing alcohol is a kind of lotion", "pln": ["(: cnet_isa_07c3af8f5e (IsA rubbing_alcohol lotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubbish is a kind of waste", "pln": ["(: cnet_isa_18675809ec (IsA rubbish waste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubdown is a kind of massage", "pln": ["(: cnet_isa_7c3c6a133d (IsA rubdown massage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubefacient is a kind of medicine", "pln": ["(: cnet_isa_8d07e92650 (IsA rubefacient medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubel is a kind of belarusian monetary unit", "pln": ["(: cnet_isa_6dda7b61cb (IsA rubel belarusian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubella panencephalitis is a kind of panencephalitis", "pln": ["(: cnet_isa_8ff307199b (IsA rubella_panencephalitis panencephalitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_b8359b182b (IsA rubia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubiaceae is a kind of asterid dicot family", "pln": ["(: cnet_isa_0b31628d22 (IsA rubiaceae asterid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubiale is a kind of plant order", "pln": ["(: cnet_isa_bbc8dfbae5 (IsA rubiale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubicelle is a kind of spinel ruby", "pln": ["(: cnet_isa_1428e042e8 (IsA rubicelle spinel_ruby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubicon is a kind of line", "pln": ["(: cnet_isa_fb87184b6d (IsA rubicon line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rubidium is a kind of metallic element", "pln": ["(: cnet_isa_a5d15ea2fc (IsA rubidium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubidium strontium dating is a kind of dating", "pln": ["(: cnet_isa_0636eceb2a (IsA rubidium_strontium_dating dating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubin test is a kind of diagnostic test", "pln": ["(: cnet_isa_77dfbe0930 (IsA rubin_test diagnostic_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruble is a kind of russian monetary unit", "pln": ["(: cnet_isa_a183d56b7d (IsA ruble russian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruble is a kind of tajikistani monetary unit", "pln": ["(: cnet_isa_4fbbac3229 (IsA ruble tajikistani_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubric is a kind of category", "pln": ["(: cnet_isa_af4df6219f (IsA rubric category) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubric is a kind of direction", "pln": ["(: cnet_isa_8d815f2528 (IsA rubric direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubric is a kind of heading", "pln": ["(: cnet_isa_c0c7dee766 (IsA rubric heading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubric is a kind of rule", "pln": ["(: cnet_isa_a5f8a92471 (IsA rubric rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rubric is a kind of title", "pln": ["(: cnet_isa_7ec274fcef (IsA rubric title) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rubus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_8655f79428 (IsA rubus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruby is a kind of jewel", "pln": ["(: cnet_isa_73a08de6d2 (IsA ruby jewel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruby is a kind of pure object oriented programming language", "pln": ["(: cnet_isa_729689972f (IsA ruby pure_object_oriented_programming_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruby is a kind of corundom", "pln": ["(: cnet_isa_180831c25e (IsA ruby corundom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruby is a kind of transparent gem", "pln": ["(: cnet_isa_641f8a47ff (IsA ruby transparent_gem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruby crowned kinglet is a kind of kinglet", "pln": ["(: cnet_isa_4eaac130cf (IsA ruby_crowned_kinglet kinglet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruby wood is a kind of wood", "pln": ["(: cnet_isa_2654814673 (IsA ruby_wood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruck is a kind of multitude", "pln": ["(: cnet_isa_8521475970 (IsA ruck multitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rudaceous rock is a kind of sedimentary rock", "pln": ["(: cnet_isa_d4ee7366b5 (IsA rudaceous_rock sedimentary_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rudapithecus is a kind of dryopithecine", "pln": ["(: cnet_isa_4ee2d0a605 (IsA rudapithecus dryopithecine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rudbeckia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_1a0cfcd780 (IsA rudbeckia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rudd is a kind of cyprinid", "pln": ["(: cnet_isa_dbe7eaf908 (IsA rudd cyprinid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rudder is a kind of airfoil", "pln": ["(: cnet_isa_ae73e4d689 (IsA rudder airfoil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rudder is a kind of steering system", "pln": ["(: cnet_isa_b467fee373 (IsA rudder steering_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rudder blade is a kind of blade", "pln": ["(: cnet_isa_39787fdafc (IsA rudder_blade blade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rudderfish is a kind of jack", "pln": ["(: cnet_isa_90b6743bdb (IsA rudderfish jack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rudderpost is a kind of post", "pln": ["(: cnet_isa_9a0d015281 (IsA rudderpost post) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruddiness is a kind of complexion", "pln": ["(: cnet_isa_a8651edb9d (IsA ruddiness complexion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruddle is a kind of iron ore", "pln": ["(: cnet_isa_0ec4612cdc (IsA ruddle iron_ore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruddy duck is a kind of duck", "pln": ["(: cnet_isa_19e9b91fbe (IsA ruddy_duck duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruddy turnstone is a kind of turnstone", "pln": ["(: cnet_isa_c5ce8fa234 (IsA ruddy_turnstone turnstone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rudiment is a kind of body part", "pln": ["(: cnet_isa_1443f20500 (IsA rudiment body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rudiment is a kind of fundamental", "pln": ["(: cnet_isa_87c1864196 (IsA rudiment fundamental) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rue is a kind of street", "pln": ["(: cnet_isa_13b882f95d (IsA rue street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rue is a kind of herb", "pln": ["(: cnet_isa_d79c53d4eb (IsA rue herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rue anemone is a kind of flower", "pln": ["(: cnet_isa_9004fde881 (IsA rue_anemone flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruff is a kind of sandpiper", "pln": ["(: cnet_isa_f345a0f1c5 (IsA ruff sandpiper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruff is a kind of turn", "pln": ["(: cnet_isa_40fec747d6 (IsA ruff turn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruffed grouse is a kind of grouse", "pln": ["(: cnet_isa_a2e970db4b (IsA ruffed_grouse grouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruffianism is a kind of misbehavior", "pln": ["(: cnet_isa_3994e81969 (IsA ruffianism misbehavior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rufous rubber cup is a kind of sarcosomataceae", "pln": ["(: cnet_isa_755282bdad (IsA rufous_rubber_cup sarcosomataceae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rug is a kind of floor covering", "pln": ["(: cnet_isa_b21f8d3228 (IsA rug floor_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rug is a kind of floor cover", "pln": ["(: cnet_isa_f3553db5e6 (IsA rug floor_cover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rug is a kind of furnishing", "pln": ["(: cnet_isa_3386dc275c (IsA rug furnishing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rug merchant is a kind of merchant", "pln": ["(: cnet_isa_e7c2b9f07a (IsA rug_merchant merchant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruga is a kind of fold", "pln": ["(: cnet_isa_83c6cf1d33 (IsA ruga fold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rugby is a kind of football", "pln": ["(: cnet_isa_1d298210b4 (IsA rugby football) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rugby ball is a kind of ball", "pln": ["(: cnet_isa_8a6c3ff90c (IsA rugby_ball ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rugel s plantain is a kind of plantain", "pln": ["(: cnet_isa_c0aad48180 (IsA rugel_s_plantain plantain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rugged individualism is a kind of individualism", "pln": ["(: cnet_isa_a711d89e90 (IsA rugged_individualism individualism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruggedization is a kind of protection", "pln": ["(: cnet_isa_0cbb9f7396 (IsA ruggedization protection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruggedness is a kind of unevenness", "pln": ["(: cnet_isa_2dccf3a6bc (IsA ruggedness unevenness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rugulah is a kind of pastry", "pln": ["(: cnet_isa_94c514db3e (IsA rugulah pastry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruin is a kind of building", "pln": ["(: cnet_isa_2565f22a0c (IsA ruin building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruin is a kind of destruction", "pln": ["(: cnet_isa_6e6494faa8 (IsA ruin destruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruin is a kind of devastation", "pln": ["(: cnet_isa_e010861f6b (IsA ruin devastation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rule is a kind of measuring stick", "pln": ["(: cnet_isa_e1541e1a8e (IsA rule measuring_stick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rule is a kind of concept", "pln": ["(: cnet_isa_dbe6f942ce (IsA rule concept) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rule is a kind of direction", "pln": ["(: cnet_isa_56e0b99046 (IsA rule direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rule is a kind of procedure", "pln": ["(: cnet_isa_844b62ae38 (IsA rule procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rule is a kind of duration", "pln": ["(: cnet_isa_e1038c870c (IsA rule duration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rule of evidence is a kind of rule", "pln": ["(: cnet_isa_b6ef99f190 (IsA rule_of_evidence rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rule of law is a kind of order", "pln": ["(: cnet_isa_0be030d6fb (IsA rule_of_law order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruler is a kind of person", "pln": ["(: cnet_isa_ea69260ff9 (IsA ruler person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rulership is a kind of position", "pln": ["(: cnet_isa_e3dfa9db47 (IsA rulership position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruling class is a kind of upper class", "pln": ["(: cnet_isa_9a490cab7e (IsA ruling_class upper_class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rum is a kind of liquor", "pln": ["(: cnet_isa_f936f02120 (IsA rum liquor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rum sling is a kind of sling", "pln": ["(: cnet_isa_f9e5c6a948 (IsA rum_sling sling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rumanian is a kind of european", "pln": ["(: cnet_isa_611c5f891c (IsA rumanian european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rumba is a kind of ballroom dancing", "pln": ["(: cnet_isa_c76b73ca70 (IsA rumba ballroom_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rumba is a kind of folk dancing", "pln": ["(: cnet_isa_d3a4cc30c1 (IsA rumba folk_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rumba is a kind of dance music", "pln": ["(: cnet_isa_d61e74e3c4 (IsA rumba dance_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rumble is a kind of fight", "pln": ["(: cnet_isa_ad973c387d (IsA rumble fight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rumble is a kind of seat", "pln": ["(: cnet_isa_3df8e84d55 (IsA rumble seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rumble is a kind of noise", "pln": ["(: cnet_isa_0e44e51706 (IsA rumble noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rumble seat is a kind of seat", "pln": ["(: cnet_isa_77c4b74e0a (IsA rumble_seat seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rumen is a kind of stomach", "pln": ["(: cnet_isa_55b234e002 (IsA rumen stomach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rumex is a kind of dicot genus", "pln": ["(: cnet_isa_49084c44d0 (IsA rumex dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruminant is a kind of even toed ungulate", "pln": ["(: cnet_isa_b18cf2aecb (IsA ruminant even_toed_ungulate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruminantia is a kind of animal order", "pln": ["(: cnet_isa_c3e2fc90da (IsA ruminantia animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rumination is a kind of chew", "pln": ["(: cnet_isa_d361ee33b6 (IsA rumination chew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rumination is a kind of vomit", "pln": ["(: cnet_isa_f085a00423 (IsA rumination vomit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruminator is a kind of thinker", "pln": ["(: cnet_isa_46f2c54f8f (IsA ruminator thinker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rummage is a kind of clutter", "pln": ["(: cnet_isa_89e8a09d45 (IsA rummage clutter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rummage sale is a kind of sale", "pln": ["(: cnet_isa_2e97776164 (IsA rummage_sale sale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rummer is a kind of glass", "pln": ["(: cnet_isa_9e9fa22b9d (IsA rummer glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rummy is a kind of card game", "pln": ["(: cnet_isa_4ac9644290 (IsA rummy card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rumohra is a kind of fern genus", "pln": ["(: cnet_isa_9cdf5849c1 (IsA rumohra fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rumor is a kind of gossip", "pln": ["(: cnet_isa_4fc2f35d47 (IsA rumor gossip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rump is a kind of cut of beef", "pln": ["(: cnet_isa_3407c622c7 (IsA rump cut_of_beef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rump roast is a kind of roast", "pln": ["(: cnet_isa_c825867615 (IsA rump_roast roast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rump steak is a kind of beefsteak", "pln": ["(: cnet_isa_433ab30854 (IsA rump_steak beefsteak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rumpus room is a kind of recreation room", "pln": ["(: cnet_isa_8b5a7845c8 (IsA rumpus_room recreation_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rumrunner is a kind of smuggler", "pln": ["(: cnet_isa_cdeff182ac (IsA rumrunner smuggler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "run is a kind of locomotion", "pln": ["(: cnet_isa_524f399db4 (IsA run locomotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "run is a kind of score", "pln": ["(: cnet_isa_75e78623a0 (IsA run score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "run is a kind of trip", "pln": ["(: cnet_isa_fd4fef7255 (IsA run trip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "run is a kind of football play", "pln": ["(: cnet_isa_3fb1cbfa5a (IsA run football_play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "run is a kind of sequence", "pln": ["(: cnet_isa_3a649cd82f (IsA run sequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "run is a kind of damage", "pln": ["(: cnet_isa_5eeb9c3f4d (IsA run damage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "run is a kind of indefinite quantity", "pln": ["(: cnet_isa_d5b4257f51 (IsA run indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "run is a kind of liberty", "pln": ["(: cnet_isa_7962b91f1c (IsA run liberty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "run is a kind of time period", "pln": ["(: cnet_isa_5ef5bce773 (IsA run time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "run batted in is a kind of run", "pln": ["(: cnet_isa_383d78a489 (IsA run_batted_in run) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "run on sentence is a kind of sentence", "pln": ["(: cnet_isa_4957d233f9 (IsA run_on_sentence sentence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "run through is a kind of rehearsal", "pln": ["(: cnet_isa_05b750c299 (IsA run_through rehearsal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "run time is a kind of run", "pln": ["(: cnet_isa_b394532ddb (IsA run_time run) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "run time is a kind of point", "pln": ["(: cnet_isa_82d6b8aa7a (IsA run_time point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "run up is a kind of approach", "pln": ["(: cnet_isa_c85bb49984 (IsA run_up approach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "runaway is a kind of victory", "pln": ["(: cnet_isa_066971dc30 (IsA runaway victory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "runcible spoon is a kind of spoon", "pln": ["(: cnet_isa_1327dd4476 (IsA runcible_spoon spoon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "runcinate leaf is a kind of leaf", "pln": ["(: cnet_isa_af71e17e4f (IsA runcinate_leaf leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rundle is a kind of crosspiece", "pln": ["(: cnet_isa_66d2865805 (IsA rundle crosspiece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rune is a kind of character", "pln": ["(: cnet_isa_5c67d8178e (IsA rune character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rung is a kind of crosspiece", "pln": ["(: cnet_isa_3ccd718220 (IsA rung crosspiece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "runner is a kind of jack", "pln": ["(: cnet_isa_1f0ff95bdc (IsA runner jack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "runner is a kind of device", "pln": ["(: cnet_isa_2b364ed5ec (IsA runner device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "runner is a kind of rug", "pln": ["(: cnet_isa_33b64566c5 (IsA runner rug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "runner is a kind of athlete", "pln": ["(: cnet_isa_93bb9edca2 (IsA runner athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "runner is a kind of messenger", "pln": ["(: cnet_isa_113cb39ed6 (IsA runner messenger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "runner is a kind of traveler", "pln": ["(: cnet_isa_8521b5184f (IsA runner traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "runner up is a kind of rival", "pln": ["(: cnet_isa_41f9274005 (IsA runner_up rival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "running is a kind of form of exercise", "pln": ["(: cnet_isa_daba1754b7 (IsA running form_of_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "running is a kind of good exercise", "pln": ["(: cnet_isa_32451c6cd5 (IsA running good_exercise) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "running is a kind of way", "pln": ["(: cnet_isa_5549c17dff (IsA running way) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "running is a kind of administration", "pln": ["(: cnet_isa_edd1ae7540 (IsA running administration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "running is a kind of operation", "pln": ["(: cnet_isa_812194d2a8 (IsA running operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "running away is a kind of act", "pln": ["(: cnet_isa_87c6fd6d84 (IsA running_away act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "running back is a kind of back", "pln": ["(: cnet_isa_8ad50d0c05 (IsA running_back back) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "running board is a kind of footboard", "pln": ["(: cnet_isa_e526b85516 (IsA running_board footboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "running head is a kind of heading", "pln": ["(: cnet_isa_db63334dd9 (IsA running_head heading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "running mate is a kind of campaigner", "pln": ["(: cnet_isa_dda3c0099e (IsA running_mate campaigner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "running pine is a kind of ground pine", "pln": ["(: cnet_isa_ddba074906 (IsA running_pine ground_pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "running shoe is a kind of shoe", "pln": ["(: cnet_isa_49cf840f7a (IsA running_shoe shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "running stitch is a kind of embroidery stitch", "pln": ["(: cnet_isa_5619af67fa (IsA running_stitch embroidery_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "running suit is a kind of sportswear", "pln": ["(: cnet_isa_5fb97d83dc (IsA running_suit sportswear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "running time is a kind of time period", "pln": ["(: cnet_isa_1cdbafcd50 (IsA running_time time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "running title is a kind of running head", "pln": ["(: cnet_isa_25acd97243 (IsA running_title running_head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "runoff is a kind of election", "pln": ["(: cnet_isa_a2adb80fb0 (IsA runoff election) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "runt is a kind of small person", "pln": ["(: cnet_isa_d5e1e6928c (IsA runt small_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "runup is a kind of increase", "pln": ["(: cnet_isa_50a12a33f1 (IsA runup increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "runway is a kind of chute", "pln": ["(: cnet_isa_6c0c74db71 (IsA runway chute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "runway is a kind of paved surface", "pln": ["(: cnet_isa_d34a57a3df (IsA runway paved_surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "runway is a kind of platform", "pln": ["(: cnet_isa_08d8404145 (IsA runway platform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rupestral plant is a kind of rock plant", "pln": ["(: cnet_isa_8a811d08e2 (IsA rupestral_plant rock_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rupiah is a kind of indonesian monetary unit", "pln": ["(: cnet_isa_c632ea774b (IsA rupiah indonesian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rupicapra is a kind of mammal genus", "pln": ["(: cnet_isa_d79e1a71fa (IsA rupicapra mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rupicola is a kind of bird genus", "pln": ["(: cnet_isa_1aac1b161b (IsA rupicola bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruptiliocarpon is a kind of rosid dicot genus", "pln": ["(: cnet_isa_eb22d9f6a8 (IsA ruptiliocarpon rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rupture is a kind of breakage", "pln": ["(: cnet_isa_db22e6d1a3 (IsA rupture breakage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rupture is a kind of separation", "pln": ["(: cnet_isa_6291f4477c (IsA rupture separation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rupture is a kind of injury", "pln": ["(: cnet_isa_3e068dfd35 (IsA rupture injury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rupturewort is a kind of groundcover", "pln": ["(: cnet_isa_21a0d00a32 (IsA rupturewort groundcover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rural free delivery is a kind of mail", "pln": ["(: cnet_isa_acf54a54e0 (IsA rural_free_delivery mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruralism is a kind of idiom", "pln": ["(: cnet_isa_19ae457666 (IsA ruralism idiom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruralist is a kind of advocate", "pln": ["(: cnet_isa_249cfdffff (IsA ruralist advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rurality is a kind of characteristic", "pln": ["(: cnet_isa_8f91fcf3d2 (IsA rurality characteristic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rurality is a kind of trait", "pln": ["(: cnet_isa_95885c1a7e (IsA rurality trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ruritania is a kind of imaginary place", "pln": ["(: cnet_isa_c232ce62bc (IsA ruritania imaginary_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruscaceae is a kind of liliid monocot family", "pln": ["(: cnet_isa_85d466bea6 (IsA ruscaceae liliid_monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruscus is a kind of liliid monocot genus", "pln": ["(: cnet_isa_368a7f14e1 (IsA ruscus liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruse is a kind of maneuver", "pln": ["(: cnet_isa_deca47773a (IsA ruse maneuver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rush is a kind of run", "pln": ["(: cnet_isa_e622fc0de7 (IsA rush run) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rush is a kind of flow", "pln": ["(: cnet_isa_4f4678c475 (IsA rush flow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rush is a kind of outburst", "pln": ["(: cnet_isa_5b180ab0d4 (IsA rush outburst) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rush is a kind of marsh plant", "pln": ["(: cnet_isa_f4ccd708a6 (IsA rush marsh_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rush aster is a kind of aster", "pln": ["(: cnet_isa_47af79dc34 (IsA rush_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rush grass is a kind of grass", "pln": ["(: cnet_isa_732582a04b (IsA rush_grass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rush hour is a kind of hour", "pln": ["(: cnet_isa_7cc9f48cff (IsA rush_hour hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rush rose is a kind of helianthemum", "pln": ["(: cnet_isa_0d800b6216 (IsA rush_rose helianthemum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rusher is a kind of ball carrier", "pln": ["(: cnet_isa_efd5da742c (IsA rusher ball_carrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rusher is a kind of migrant", "pln": ["(: cnet_isa_65f0868f15 (IsA rusher migrant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rusher is a kind of person", "pln": ["(: cnet_isa_b9d1505228 (IsA rusher person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rushlight is a kind of candle", "pln": ["(: cnet_isa_1e0bcf02af (IsA rushlight candle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "russell s body is a kind of inclusion body", "pln": ["(: cnet_isa_121706f9d5 (IsA russell_s_body inclusion_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "russet is a kind of homespun", "pln": ["(: cnet_isa_7033f0883f (IsA russet homespun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "russia is a kind of country", "pln": ["(: cnet_isa_59499d9c0e (IsA russia country) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "russia leather is a kind of leather", "pln": ["(: cnet_isa_72064fc101 (IsA russia_leather leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "russian is a kind of human language", "pln": ["(: cnet_isa_911a05c6c4 (IsA russian human_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "russian is a kind of language", "pln": ["(: cnet_isa_a3174ac21a (IsA russian language) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "russian is a kind of slavic", "pln": ["(: cnet_isa_6645c240be (IsA russian slavic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "russian is a kind of aborigine", "pln": ["(: cnet_isa_e716981f78 (IsA russian aborigine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "russian agency is a kind of administrative unit", "pln": ["(: cnet_isa_93de2870ac (IsA russian_agency administrative_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "russian almond is a kind of almond tree", "pln": ["(: cnet_isa_c59ff6cf5e (IsA russian_almond almond_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "russian bank is a kind of solitaire", "pln": ["(: cnet_isa_3912745c53 (IsA russian_bank solitaire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "russian dandelion is a kind of dandelion", "pln": ["(: cnet_isa_32ea5a3b27 (IsA russian_dandelion dandelion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "russian dressing is a kind of dressing", "pln": ["(: cnet_isa_8169d92b3b (IsA russian_dressing dressing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "russian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_ad5bf21741 (IsA russian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "russian olive is a kind of oleaster", "pln": ["(: cnet_isa_0b5cedf6ca (IsA russian_olive oleaster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "russian orthodox church is a kind of orthodox church", "pln": ["(: cnet_isa_e1a81e98b8 (IsA russian_orthodox_church orthodox_church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "russian roulette is a kind of stunt", "pln": ["(: cnet_isa_5c6993bb2d (IsA russian_roulette stunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "russian thistle is a kind of shrub", "pln": ["(: cnet_isa_5900984ecf (IsA russian_thistle shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "russula is a kind of fungus genus", "pln": ["(: cnet_isa_f97ff97108 (IsA russula fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "russulaceae is a kind of fungus family", "pln": ["(: cnet_isa_8584ed9dab (IsA russulaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rust is a kind of fungus", "pln": ["(: cnet_isa_56a623436f (IsA rust fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rust is a kind of corrosion", "pln": ["(: cnet_isa_fc8f5e15f3 (IsA rust corrosion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rust is a kind of oxidation", "pln": ["(: cnet_isa_c73532e69c (IsA rust oxidation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rust is a kind of plant disease", "pln": ["(: cnet_isa_4a60376bec (IsA rust plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rust is a kind of ferric oxide", "pln": ["(: cnet_isa_2e2ab92be6 (IsA rust ferric_oxide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rust inhibitor is a kind of antioxidant", "pln": ["(: cnet_isa_030289cfee (IsA rust_inhibitor antioxidant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rust mite is a kind of mite", "pln": ["(: cnet_isa_79caddb0a7 (IsA rust_mite mite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rustic is a kind of commoner", "pln": ["(: cnet_isa_0f22a9bd06 (IsA rustic commoner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rustication is a kind of banishment", "pln": ["(: cnet_isa_a80a408437 (IsA rustication banishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rustication is a kind of construction", "pln": ["(: cnet_isa_503e7ab04d (IsA rustication construction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rustication is a kind of retirement", "pln": ["(: cnet_isa_64a6ebb99b (IsA rustication retirement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rustication is a kind of suspension", "pln": ["(: cnet_isa_3466b01b21 (IsA rustication suspension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rustication is a kind of condition", "pln": ["(: cnet_isa_583e30a212 (IsA rustication condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rusticity is a kind of awkwardness", "pln": ["(: cnet_isa_e0dacd282f (IsA rusticity awkwardness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rustiness is a kind of awkwardness", "pln": ["(: cnet_isa_af840f942d (IsA rustiness awkwardness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rustiness is a kind of condition", "pln": ["(: cnet_isa_01741dfe84 (IsA rustiness condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rustle is a kind of noise", "pln": ["(: cnet_isa_a7fcfa8fe2 (IsA rustle noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rustler is a kind of thief", "pln": ["(: cnet_isa_dbe0208d75 (IsA rustler thief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rustling is a kind of larceny", "pln": ["(: cnet_isa_1c66533c76 (IsA rustling larceny) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rusty blackbird is a kind of new world blackbird", "pln": ["(: cnet_isa_04fef43ac2 (IsA rusty_blackbird new_world_blackbird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rusty woodsia is a kind of woodsia", "pln": ["(: cnet_isa_b2a2927aed (IsA rusty_woodsia woodsia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rut is a kind of routine", "pln": ["(: cnet_isa_9558c63d9a (IsA rut routine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rut is a kind of groove", "pln": ["(: cnet_isa_13726ab182 (IsA rut groove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruta is a kind of rosid dicot genus", "pln": ["(: cnet_isa_eddf34a8df (IsA ruta rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rutabaga is a kind of turnip", "pln": ["(: cnet_isa_29293a2e05 (IsA rutabaga turnip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rutabaga is a kind of turnip plant", "pln": ["(: cnet_isa_fa02b99399 (IsA rutabaga turnip_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rutaceae is a kind of rosid dicot family", "pln": ["(: cnet_isa_9ea0f5bf20 (IsA rutaceae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ruthenium is a kind of metallic element", "pln": ["(: cnet_isa_9280776481 (IsA ruthenium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rutherford is a kind of radioactivity unit", "pln": ["(: cnet_isa_eb650074fc (IsA rutherford radioactivity_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rutherford atom is a kind of atomic theory", "pln": ["(: cnet_isa_bef2bcc708 (IsA rutherford_atom atomic_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rutherfordium is a kind of chemical element", "pln": ["(: cnet_isa_5bbf6f5000 (IsA rutherfordium chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rutile is a kind of mineral", "pln": ["(: cnet_isa_a0f289a52f (IsA rutile mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rutilus is a kind of fish genus", "pln": ["(: cnet_isa_fa1ab28c12 (IsA rutilus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rwanda franc is a kind of franc", "pln": ["(: cnet_isa_0553657fda (IsA rwanda_franc franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rwandan is a kind of african", "pln": ["(: cnet_isa_28797fae33 (IsA rwandan african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rya is a kind of shag rug", "pln": ["(: cnet_isa_af329425fb (IsA rya shag_rug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rydberg s penstemon is a kind of wildflower", "pln": ["(: cnet_isa_7bfdfcdf20 (IsA rydberg_s_penstemon wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rydberg is a kind of wave number", "pln": ["(: cnet_isa_9d840fec75 (IsA rydberg wave_number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rye is a kind of whiskey", "pln": ["(: cnet_isa_9ba62a9f02 (IsA rye whiskey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rye is a kind of cereal", "pln": ["(: cnet_isa_555e5ae0ab (IsA rye cereal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rye is a kind of grain", "pln": ["(: cnet_isa_29cd79d96c (IsA rye grain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rye bread is a kind of bread", "pln": ["(: cnet_isa_c0a81c070f (IsA rye_bread bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rye ergot is a kind of ergot", "pln": ["(: cnet_isa_2e958050f5 (IsA rye_ergot ergot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rye grass is a kind of grass", "pln": ["(: cnet_isa_c439587120 (IsA rye_grass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "rynchopidae is a kind of bird family", "pln": ["(: cnet_isa_09c0435470 (IsA rynchopidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rynchop is a kind of bird genus", "pln": ["(: cnet_isa_fa06414fe9 (IsA rynchop bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "rypticus is a kind of fish genus", "pln": ["(: cnet_isa_5f417439df (IsA rypticus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ryukyuan is a kind of japanese", "pln": ["(: cnet_isa_5bbd7c2f54 (IsA ryukyuan japanese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ryukyuan is a kind of nipponese", "pln": ["(: cnet_isa_a76a8d64ab (IsA ryukyuan nipponese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "s is a kind of letter", "pln": ["(: cnet_isa_6892ca1fc8 (IsA s letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "s shape is a kind of curve", "pln": ["(: cnet_isa_3b3318cbcd (IsA s_shape curve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "s wrench is a kind of open end wrench", "pln": ["(: cnet_isa_ad8125344a (IsA s_wrench open_end_wrench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sa is a kind of militia", "pln": ["(: cnet_isa_d4e65eea37 (IsA sa militia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saale glaciation is a kind of glaciation", "pln": ["(: cnet_isa_947834ce3d (IsA saale_glaciation glaciation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sabahan is a kind of malaysian", "pln": ["(: cnet_isa_9b8e3ef05b (IsA sabahan malaysian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sabal is a kind of monocot genus", "pln": ["(: cnet_isa_07695441f6 (IsA sabal monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sabaoth is a kind of host", "pln": ["(: cnet_isa_dcfe64f2df (IsA sabaoth host) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sabbat is a kind of assembly", "pln": ["(: cnet_isa_3946b2d269 (IsA sabbat assembly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sabbatarian is a kind of religionist", "pln": ["(: cnet_isa_cb28009cc6 (IsA sabbatarian religionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sabbath is a kind of rest day", "pln": ["(: cnet_isa_3cf245e2f8 (IsA sabbath rest_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sabbatia is a kind of marsh plant", "pln": ["(: cnet_isa_08ccec6de3 (IsA sabbatia marsh_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sabbatical is a kind of leave", "pln": ["(: cnet_isa_d3533361ca (IsA sabbatical leave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sabbatical year is a kind of sabbatical", "pln": ["(: cnet_isa_0de229fe4d (IsA sabbatical_year sabbatical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sabellian is a kind of osco umbrian", "pln": ["(: cnet_isa_1e3aadabea (IsA sabellian osco_umbrian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saber is a kind of fencing sword", "pln": ["(: cnet_isa_4e3f162411 (IsA saber fencing_sword) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saber rattling is a kind of military action", "pln": ["(: cnet_isa_6f6f5b859e (IsA saber_rattling military_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saber saw is a kind of power saw", "pln": ["(: cnet_isa_4175559035 (IsA saber_saw power_saw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saber toothed tiger is a kind of big cat", "pln": ["(: cnet_isa_cafd1d41fb (IsA saber_toothed_tiger big_cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sabicu is a kind of shrub", "pln": ["(: cnet_isa_e2f9ef4fe3 (IsA sabicu shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sabicu is a kind of wood", "pln": ["(: cnet_isa_f066ba8767 (IsA sabicu wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sabin is a kind of absorption unit", "pln": ["(: cnet_isa_8c37bc8f00 (IsA sabin absorption_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sabin vaccine is a kind of poliovirus vaccine", "pln": ["(: cnet_isa_35fc931c08 (IsA sabin_vaccine poliovirus_vaccine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sabine is a kind of italian", "pln": ["(: cnet_isa_4d1028f65d (IsA sabine italian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sabinea is a kind of rosid dicot genus", "pln": ["(: cnet_isa_fd95927d68 (IsA sabinea rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sable is a kind of marten", "pln": ["(: cnet_isa_27c2eab43b (IsA sable marten) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sable is a kind of brush", "pln": ["(: cnet_isa_44a6560121 (IsA sable brush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sable is a kind of scarf", "pln": ["(: cnet_isa_ec589575a1 (IsA sable scarf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sable is a kind of fur", "pln": ["(: cnet_isa_1c6d42bf88 (IsA sable fur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sable antelope is a kind of antelope", "pln": ["(: cnet_isa_a088d01cac (IsA sable_antelope antelope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sable coat is a kind of fur coat", "pln": ["(: cnet_isa_96eaa35306 (IsA sable_coat fur_coat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sabot is a kind of shoe", "pln": ["(: cnet_isa_6d8265fd36 (IsA sabot shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sabotage is a kind of destruction", "pln": ["(: cnet_isa_94d08a6553 (IsA sabotage destruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saboteur is a kind of destroyer", "pln": ["(: cnet_isa_63e48d0f67 (IsA saboteur destroyer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sabra is a kind of israeli", "pln": ["(: cnet_isa_3e547b21c9 (IsA sabra israeli) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sac is a kind of cavity", "pln": ["(: cnet_isa_a25eb8923b (IsA sac cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sac is a kind of algonquin", "pln": ["(: cnet_isa_f5ef024dcc (IsA sac algonquin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sac fungus is a kind of fungus", "pln": ["(: cnet_isa_e8d7635ae2 (IsA sac_fungus fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saccade is a kind of eye movement", "pln": ["(: cnet_isa_26f4ab6f90 (IsA saccade eye_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saccharic acid is a kind of carboxylic acid", "pln": ["(: cnet_isa_12207eddeb (IsA saccharic_acid carboxylic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saccharin is a kind of sweetening", "pln": ["(: cnet_isa_41814a0168 (IsA saccharin sweetening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saccharinity is a kind of sweetness", "pln": ["(: cnet_isa_7044e1d52c (IsA saccharinity sweetness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saccharomyce is a kind of fungus genus", "pln": ["(: cnet_isa_41377a02a4 (IsA saccharomyce fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saccharomycetaceae is a kind of fungus family", "pln": ["(: cnet_isa_e8d334b9e1 (IsA saccharomycetaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saccharum is a kind of monocot genus", "pln": ["(: cnet_isa_94f961bc55 (IsA saccharum monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saccule is a kind of sac", "pln": ["(: cnet_isa_7c984b1af9 (IsA saccule sac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sacerdotalism is a kind of belief", "pln": ["(: cnet_isa_610be44f9c (IsA sacerdotalism belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sachem is a kind of indian chieftain", "pln": ["(: cnet_isa_5309136532 (IsA sachem indian_chieftain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sachem is a kind of politician", "pln": ["(: cnet_isa_8002fb9f03 (IsA sachem politician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sachet is a kind of bag", "pln": ["(: cnet_isa_e444b64190 (IsA sachet bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sack is a kind of plundering", "pln": ["(: cnet_isa_fb5e8ec595 (IsA sack plundering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sack is a kind of bag", "pln": ["(: cnet_isa_7953e8d770 (IsA sack bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sack is a kind of jacket", "pln": ["(: cnet_isa_8e2dd0d6d7 (IsA sack jacket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sack is a kind of white wine", "pln": ["(: cnet_isa_eb67603193 (IsA sack white_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sack is a kind of containerful", "pln": ["(: cnet_isa_a03ec8f53d (IsA sack containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sack coat is a kind of coat", "pln": ["(: cnet_isa_b118e62a12 (IsA sack_coat coat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sack race is a kind of race", "pln": ["(: cnet_isa_9cd7870009 (IsA sack_race race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sackbut is a kind of trombone", "pln": ["(: cnet_isa_d8562254f0 (IsA sackbut trombone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sackcloth is a kind of fabric", "pln": ["(: cnet_isa_17460fa89f (IsA sackcloth fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sackcloth is a kind of garment", "pln": ["(: cnet_isa_83b11b5ae0 (IsA sackcloth garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sackcloth and ashe is a kind of display", "pln": ["(: cnet_isa_579f9daa45 (IsA sackcloth_and_ashe display) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sacking is a kind of fabric", "pln": ["(: cnet_isa_5158900d1d (IsA sacking fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sacral nerve is a kind of spinal nerve", "pln": ["(: cnet_isa_6df76b3ba4 (IsA sacral_nerve spinal_nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sacral plexus is a kind of nerve plexus", "pln": ["(: cnet_isa_b463329309 (IsA sacral_plexus nerve_plexus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sacral vein is a kind of vein", "pln": ["(: cnet_isa_8c50c37b4f (IsA sacral_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sacral vertebra is a kind of vertebra", "pln": ["(: cnet_isa_ea92ebbb79 (IsA sacral_vertebra vertebra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sacrament is a kind of religious ceremony", "pln": ["(: cnet_isa_75bbe6075c (IsA sacrament religious_ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sacred college is a kind of body", "pln": ["(: cnet_isa_e3617df01a (IsA sacred_college body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sacred cow is a kind of important person", "pln": ["(: cnet_isa_576fbe769f (IsA sacred_cow important_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sacred ibis is a kind of ibis", "pln": ["(: cnet_isa_096899ae9e (IsA sacred_ibis ibis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sacred text is a kind of writing", "pln": ["(: cnet_isa_1bd77f0a2f (IsA sacred_text writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sacredness is a kind of holiness", "pln": ["(: cnet_isa_43e7a89afb (IsA sacredness holiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sacrifice is a kind of killing", "pln": ["(: cnet_isa_5f81cfdfae (IsA sacrifice killing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sacrifice is a kind of putout", "pln": ["(: cnet_isa_bd47bd45cc (IsA sacrifice putout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sacrifice is a kind of personnel casualty", "pln": ["(: cnet_isa_059e8ab40c (IsA sacrifice personnel_casualty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sacrifice is a kind of loss", "pln": ["(: cnet_isa_712bba8f2e (IsA sacrifice loss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sacrifice fly is a kind of sacrifice", "pln": ["(: cnet_isa_37cc0209ae (IsA sacrifice_fly sacrifice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sacrificer is a kind of religionist", "pln": ["(: cnet_isa_9d8302d730 (IsA sacrificer religionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sacrilegiousness is a kind of profaneness", "pln": ["(: cnet_isa_d7ce5802fe (IsA sacrilegiousness profaneness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sacrum is a kind of bone", "pln": ["(: cnet_isa_962b34d21b (IsA sacrum bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saddle is a kind of body part", "pln": ["(: cnet_isa_6a8076da8a (IsA saddle body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saddle is a kind of piece of leather", "pln": ["(: cnet_isa_b8b13b3d5a (IsA saddle piece_of_leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saddle is a kind of seat", "pln": ["(: cnet_isa_aea91a3902 (IsA saddle seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saddle is a kind of cut", "pln": ["(: cnet_isa_3382228f6d (IsA saddle cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saddle blanket is a kind of stable gear", "pln": ["(: cnet_isa_33d4f5f657 (IsA saddle_blanket stable_gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "saddle block anesthesia is a kind of spinal anesthesia", "pln": ["(: cnet_isa_cf8316f5d5 (IsA saddle_block_anesthesia spinal_anesthesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saddle hackle is a kind of hackle", "pln": ["(: cnet_isa_af1cb167a5 (IsA saddle_hackle hackle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "saddle horse is a kind of horse", "pln": ["(: cnet_isa_22ac6866d0 (IsA saddle_horse horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saddle of lamb is a kind of cut of lamb", "pln": ["(: cnet_isa_639ed890e2 (IsA saddle_of_lamb cut_of_lamb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saddle oxford is a kind of oxford", "pln": ["(: cnet_isa_d4cef957a2 (IsA saddle_oxford oxford) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saddle oyster is a kind of oyster", "pln": ["(: cnet_isa_a17ffaa20a (IsA saddle_oyster oyster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saddle seat is a kind of seat", "pln": ["(: cnet_isa_d2cc1b2971 (IsA saddle_seat seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saddle soap is a kind of soap", "pln": ["(: cnet_isa_cba6b90a10 (IsA saddle_soap soap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saddle sore is a kind of animal disease", "pln": ["(: cnet_isa_2cf8091463 (IsA saddle_sore animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saddle sore is a kind of gall", "pln": ["(: cnet_isa_761b3729d5 (IsA saddle_sore gall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saddle stitch is a kind of embroidery stitch", "pln": ["(: cnet_isa_476f078deb (IsA saddle_stitch embroidery_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "saddleback is a kind of pass", "pln": ["(: cnet_isa_41da2b6397 (IsA saddleback pass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saddlebag is a kind of bag", "pln": ["(: cnet_isa_26471a0d1c (IsA saddlebag bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saddlebill is a kind of stork", "pln": ["(: cnet_isa_8e133ba34b (IsA saddlebill stork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saddler is a kind of maker", "pln": ["(: cnet_isa_5409ffc884 (IsA saddler maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saddlery is a kind of workshop", "pln": ["(: cnet_isa_60ceef557a (IsA saddlery workshop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sadducee is a kind of israelite", "pln": ["(: cnet_isa_a0c435177d (IsA sadducee israelite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sadhe is a kind of letter", "pln": ["(: cnet_isa_bc3ae910c2 (IsA sadhe letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sadhu is a kind of hindoo", "pln": ["(: cnet_isa_f8207b5986 (IsA sadhu hindoo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sadism is a kind of sexual pleasure", "pln": ["(: cnet_isa_50791c5945 (IsA sadism sexual_pleasure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sadist is a kind of pervert", "pln": ["(: cnet_isa_af1101364f (IsA sadist pervert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sadleria is a kind of fern genus", "pln": ["(: cnet_isa_8e6e199c6d (IsA sadleria fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sadness is a kind of emotion", "pln": ["(: cnet_isa_e3d681d62d (IsA sadness emotion) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sadness is a kind of emotional and physical pain", "pln": ["(: cnet_isa_cc3431714d (IsA sadness emotional_and_physical_pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sadness is a kind of feeling", "pln": ["(: cnet_isa_577cb20655 (IsA sadness feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sadness is a kind of unhappiness", "pln": ["(: cnet_isa_23a11a2174 (IsA sadness unhappiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sadomasochism is a kind of masochism", "pln": ["(: cnet_isa_61f9244449 (IsA sadomasochism masochism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sadomasochism is a kind of sadism", "pln": ["(: cnet_isa_8404e2859d (IsA sadomasochism sadism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sadomasochist is a kind of pervert", "pln": ["(: cnet_isa_0b317d2649 (IsA sadomasochist pervert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saek is a kind of tai", "pln": ["(: cnet_isa_c604d06f65 (IsA saek tai) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safar is a kind of islamic calendar month", "pln": ["(: cnet_isa_4290401bae (IsA safar islamic_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safari park is a kind of park", "pln": ["(: cnet_isa_348c026b09 (IsA safari_park park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safe is a kind of cupboard", "pln": ["(: cnet_isa_92d2074cfc (IsA safe cupboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "safe is a kind of strongbox", "pln": ["(: cnet_isa_f962c3d968 (IsA safe strongbox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safe conduct is a kind of pass", "pln": ["(: cnet_isa_7135d0532a (IsA safe_conduct pass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safe deposit is a kind of strongbox", "pln": ["(: cnet_isa_018274c16b (IsA safe_deposit strongbox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safe harbor is a kind of shark repellent", "pln": ["(: cnet_isa_b364f5b117 (IsA safe_harbor shark_repellent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "safe house is a kind of house", "pln": ["(: cnet_isa_70670e5c10 (IsA safe_house house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safe house is a kind of refuge", "pln": ["(: cnet_isa_220693fac3 (IsA safe_house refuge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safe period is a kind of phase", "pln": ["(: cnet_isa_e3b70a6938 (IsA safe_period phase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safe sex is a kind of sexual activity", "pln": ["(: cnet_isa_95f41ab745 (IsA safe_sex sexual_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safebreaker is a kind of thief", "pln": ["(: cnet_isa_68c7171b8e (IsA safebreaker thief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safehold is a kind of refuge", "pln": ["(: cnet_isa_440fb8b671 (IsA safehold refuge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safeness is a kind of characteristic", "pln": ["(: cnet_isa_6d0f9360ec (IsA safeness characteristic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safety is a kind of score", "pln": ["(: cnet_isa_dc90e25c75 (IsA safety score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safety is a kind of area", "pln": ["(: cnet_isa_b5506b7743 (IsA safety area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safety is a kind of condition", "pln": ["(: cnet_isa_e52772b3f6 (IsA safety condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safety arch is a kind of arch", "pln": ["(: cnet_isa_58610dcc9f (IsA safety_arch arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safety arch is a kind of strengthener", "pln": ["(: cnet_isa_fa0d44b598 (IsA safety_arch strengthener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safety belt is a kind of belt", "pln": ["(: cnet_isa_fdee6b8148 (IsA safety_belt belt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safety belt is a kind of restraint", "pln": ["(: cnet_isa_dd40d2bb6d (IsA safety_belt restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "safety bicycle is a kind of bicycle", "pln": ["(: cnet_isa_8ee30de7b3 (IsA safety_bicycle bicycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safety blitz is a kind of maneuver", "pln": ["(: cnet_isa_13381815f6 (IsA safety_blitz maneuver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safety bolt is a kind of bolt", "pln": ["(: cnet_isa_c7c6eb06e9 (IsA safety_bolt bolt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safety catch is a kind of guard", "pln": ["(: cnet_isa_e3875c83a3 (IsA safety_catch guard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safety curtain is a kind of theater curtain", "pln": ["(: cnet_isa_c0dc5e4074 (IsA safety_curtain theater_curtain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safety factor is a kind of ratio", "pln": ["(: cnet_isa_a61a58a0dc (IsA safety_factor ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safety feature is a kind of feature", "pln": ["(: cnet_isa_23d5f2748c (IsA safety_feature feature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safety fuse is a kind of fuse", "pln": ["(: cnet_isa_26614ea809 (IsA safety_fuse fuse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "safety glass is a kind of glass", "pln": ["(: cnet_isa_4f724b3f2a (IsA safety_glass glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safety lamp is a kind of oil lamp", "pln": ["(: cnet_isa_26315efc14 (IsA safety_lamp oil_lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safety match is a kind of match", "pln": ["(: cnet_isa_495a9f56ed (IsA safety_match match) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safety net is a kind of net", "pln": ["(: cnet_isa_eb50e86b59 (IsA safety_net net) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safety net is a kind of guarantee", "pln": ["(: cnet_isa_f5b1969a1d (IsA safety_net guarantee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safety pin is a kind of fastener", "pln": ["(: cnet_isa_6633408e34 (IsA safety_pin fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safety pin is a kind of pin", "pln": ["(: cnet_isa_2a6696f2dc (IsA safety_pin pin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safety rail is a kind of railing", "pln": ["(: cnet_isa_e619e5889a (IsA safety_rail railing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safety razor is a kind of razor", "pln": ["(: cnet_isa_c5f3051747 (IsA safety_razor razor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safety squeeze play is a kind of squeeze play", "pln": ["(: cnet_isa_09ad04f426 (IsA safety_squeeze_play squeeze_play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safety valve is a kind of regulator", "pln": ["(: cnet_isa_6191ade275 (IsA safety_valve regulator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safety valve is a kind of valve", "pln": ["(: cnet_isa_a1621ba6e5 (IsA safety_valve valve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safflower is a kind of herb", "pln": ["(: cnet_isa_9a6ba0892f (IsA safflower herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safflower oil is a kind of vegetable oil", "pln": ["(: cnet_isa_2dc7ed67fa (IsA safflower_oil vegetable_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safflower oil is a kind of oil", "pln": ["(: cnet_isa_3df06001fd (IsA safflower_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safflower seed is a kind of seed", "pln": ["(: cnet_isa_9f555ad2d7 (IsA safflower_seed seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saffron is a kind of flavorer", "pln": ["(: cnet_isa_c590c1522b (IsA saffron flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saffron is a kind of crocus", "pln": ["(: cnet_isa_d6f22d7a47 (IsA saffron crocus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "safranine is a kind of dye", "pln": ["(: cnet_isa_274f968023 (IsA safranine dye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sag is a kind of depression", "pln": ["(: cnet_isa_14a2e2331c (IsA sag depression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saga is a kind of adventure story", "pln": ["(: cnet_isa_ba2a974ac0 (IsA saga adventure_story) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sagacity is a kind of wisdom", "pln": ["(: cnet_isa_aafb96b11b (IsA sagacity wisdom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sage is a kind of herb", "pln": ["(: cnet_isa_e0881e1d9d (IsA sage herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sage is a kind of mentor", "pln": ["(: cnet_isa_31ed1c98aa (IsA sage mentor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sage green is a kind of green", "pln": ["(: cnet_isa_2ac0c74aed (IsA sage_green green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sage grouse is a kind of grouse", "pln": ["(: cnet_isa_3323233f04 (IsA sage_grouse grouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sagebrush is a kind of subshrub", "pln": ["(: cnet_isa_e9bb502dbd (IsA sagebrush subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sagebrush buttercup is a kind of wildflower", "pln": ["(: cnet_isa_7ba4c64745 (IsA sagebrush_buttercup wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sagebrush lizard is a kind of spiny lizard", "pln": ["(: cnet_isa_96cb9be956 (IsA sagebrush_lizard spiny_lizard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sagebrush mariposa tulip is a kind of mariposa", "pln": ["(: cnet_isa_bdd26b820a (IsA sagebrush_mariposa_tulip mariposa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sagina is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_11c9e95611 (IsA sagina caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sagitta is a kind of arrowworm", "pln": ["(: cnet_isa_f8bfea3919 (IsA sagitta arrowworm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sagittal suture is a kind of suture", "pln": ["(: cnet_isa_bcd40af0f2 (IsA sagittal_suture suture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sagittaria is a kind of monocot genus", "pln": ["(: cnet_isa_e5ab433bc1 (IsA sagittaria monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sagittariidae is a kind of bird family", "pln": ["(: cnet_isa_36eed9fe8d (IsA sagittariidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sagittarius is a kind of bird genus", "pln": ["(: cnet_isa_a60826b44e (IsA sagittarius bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sagittate leaf is a kind of simple leaf", "pln": ["(: cnet_isa_4d9cc905d8 (IsA sagittate_leaf simple_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sago is a kind of starch", "pln": ["(: cnet_isa_44556d94fb (IsA sago starch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sago palm is a kind of cycad", "pln": ["(: cnet_isa_e04b2142bb (IsA sago_palm cycad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sago palm is a kind of palm", "pln": ["(: cnet_isa_e99aa0b4ce (IsA sago_palm palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saguaro is a kind of cactus", "pln": ["(: cnet_isa_662813e5e0 (IsA saguaro cactus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sahaptino is a kind of penutian", "pln": ["(: cnet_isa_5e9529030d (IsA sahaptino penutian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saharan is a kind of nilo saharan", "pln": ["(: cnet_isa_d414134121 (IsA saharan nilo_saharan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sahib is a kind of european", "pln": ["(: cnet_isa_84873d844e (IsA sahib european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saiga is a kind of antelope", "pln": ["(: cnet_isa_799d85a49c (IsA saiga antelope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saigon cinnamon is a kind of laurel", "pln": ["(: cnet_isa_fbca589c0f (IsA saigon_cinnamon laurel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sail is a kind of piece of cloth", "pln": ["(: cnet_isa_dfdb6fd789 (IsA sail piece_of_cloth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sail is a kind of structure", "pln": ["(: cnet_isa_919bdd200d (IsA sail structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sailboat is a kind of vehicle", "pln": ["(: cnet_isa_278abeb253 (IsA sailboat vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sailboat is a kind of boat", "pln": ["(: cnet_isa_8f1b9d73e5 (IsA sailboat boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sailboat is a kind of sailing vessel", "pln": ["(: cnet_isa_cbfaeaf10a (IsA sailboat sailing_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sailcloth is a kind of fabric", "pln": ["(: cnet_isa_c65b0f8292 (IsA sailcloth fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sailfish is a kind of scombroid", "pln": ["(: cnet_isa_bc1afe2298 (IsA sailfish scombroid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sailfish is a kind of saltwater fish", "pln": ["(: cnet_isa_652a0cb327 (IsA sailfish saltwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sailing is a kind of expensive hobby", "pln": ["(: cnet_isa_db6d89c685 (IsA sailing expensive_hobby) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sailing is a kind of sport", "pln": ["(: cnet_isa_ec8cf2ed09 (IsA sailing sport) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sailing is a kind of departure", "pln": ["(: cnet_isa_f9242110f0 (IsA sailing departure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sailing is a kind of water travel", "pln": ["(: cnet_isa_4b6e5cbfeb (IsA sailing water_travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sailing boat is a kind of boat", "pln": ["(: cnet_isa_e305897b15 (IsA sailing_boat boat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sailing master is a kind of officer", "pln": ["(: cnet_isa_7cb093cfcc (IsA sailing_master officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sailing race is a kind of boat race", "pln": ["(: cnet_isa_f3d6830359 (IsA sailing_race boat_race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sailing ship is a kind of ship", "pln": ["(: cnet_isa_0445047e35 (IsA sailing_ship ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sailing vessel is a kind of vessel", "pln": ["(: cnet_isa_ba9c32a332 (IsA sailing_vessel vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sailing warship is a kind of man of war", "pln": ["(: cnet_isa_de4b52971c (IsA sailing_warship man_of_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sailmaker is a kind of maker", "pln": ["(: cnet_isa_81144a36b0 (IsA sailmaker maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sailor s choice is a kind of grunt", "pln": ["(: cnet_isa_0415fc12d0 (IsA sailor_s_choice grunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sailor is a kind of skilled worker", "pln": ["(: cnet_isa_2744767a76 (IsA sailor skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sailor cap is a kind of cap", "pln": ["(: cnet_isa_91032653b3 (IsA sailor_cap cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sailor suit is a kind of ensemble", "pln": ["(: cnet_isa_64cca1f0fa (IsA sailor_suit ensemble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saimiri is a kind of mammal genus", "pln": ["(: cnet_isa_5c04ec5cc4 (IsA saimiri mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sainfoin is a kind of herb", "pln": ["(: cnet_isa_215c1d65aa (IsA sainfoin herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saint s day is a kind of day", "pln": ["(: cnet_isa_a4569096dc (IsA saint_s_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saint is a kind of deity", "pln": ["(: cnet_isa_bbb1d57bb3 (IsA saint deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saint is a kind of good person", "pln": ["(: cnet_isa_3a97ebed40 (IsA saint good_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saint agne s eve is a kind of christian holy day", "pln": ["(: cnet_isa_f6512fccd0 (IsA saint_agne_s_eve christian_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saint anthony s fire is a kind of skin disease", "pln": ["(: cnet_isa_8a5180513a (IsA saint_anthony_s_fire skin_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saint bernard s lily is a kind of liliaceous plant", "pln": ["(: cnet_isa_834d3feae3 (IsA saint_bernard_s_lily liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "saint bernard is a kind of working dog", "pln": ["(: cnet_isa_70cecbb60e (IsA saint_bernard working_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saint cyril is a kind of missionary", "pln": ["(: cnet_isa_2604ecb966 (IsA saint_cyril missionary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saint emilion is a kind of claret", "pln": ["(: cnet_isa_78e1836391 (IsA saint_emilion claret) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saint joseph is a kind of christian holy day", "pln": ["(: cnet_isa_517144d4b9 (IsA saint_joseph christian_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saint polycarp is a kind of martyr", "pln": ["(: cnet_isa_5d67035d25 (IsA saint_polycarp martyr) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sainthood is a kind of position", "pln": ["(: cnet_isa_58354bbadc (IsA sainthood position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sainthood is a kind of group", "pln": ["(: cnet_isa_8c1ff6b0ef (IsA sainthood group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saintliness is a kind of good", "pln": ["(: cnet_isa_a5c651779a (IsA saintliness good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saintpaulia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_021bcb7497 (IsA saintpaulia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saint peter and paul is a kind of christian holy day", "pln": ["(: cnet_isa_aca8a286ee (IsA saint_peter_and_paul christian_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sake is a kind of benefit", "pln": ["(: cnet_isa_d5b3e819aa (IsA sake benefit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sake is a kind of purpose", "pln": ["(: cnet_isa_7b94087286 (IsA sake purpose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sake is a kind of alcohol", "pln": ["(: cnet_isa_86da0824e2 (IsA sake alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saki is a kind of new world monkey", "pln": ["(: cnet_isa_f38ff87725 (IsA saki new_world_monkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "salaam is a kind of bow", "pln": ["(: cnet_isa_100188c221 (IsA salaam bow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "salableness is a kind of quality", "pln": ["(: cnet_isa_381364b43a (IsA salableness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salad is a kind of food", "pln": ["(: cnet_isa_b5a301e378 (IsA salad food) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salad is a kind of dish", "pln": ["(: cnet_isa_687207c97e (IsA salad dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salad bar is a kind of bar", "pln": ["(: cnet_isa_4824ee800d (IsA salad_bar bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "salad bowl is a kind of bowl", "pln": ["(: cnet_isa_f54224ea4e (IsA salad_bowl bowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salad burnet is a kind of salad green", "pln": ["(: cnet_isa_c0f9376453 (IsA salad_burnet salad_green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salad burnet is a kind of herb", "pln": ["(: cnet_isa_f04620b40e (IsA salad_burnet herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salad cream is a kind of dressing", "pln": ["(: cnet_isa_c6662be1e1 (IsA salad_cream dressing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salad fork is a kind of fork", "pln": ["(: cnet_isa_05aff35b03 (IsA salad_fork fork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salad green is a kind of green", "pln": ["(: cnet_isa_ca3eb8942a (IsA salad_green green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "salad nicoise is a kind of salad", "pln": ["(: cnet_isa_004e16eeff (IsA salad_nicoise salad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salad oil is a kind of vegetable oil", "pln": ["(: cnet_isa_bfa27c4959 (IsA salad_oil vegetable_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "salad plate is a kind of plate", "pln": ["(: cnet_isa_99e6960afb (IsA salad_plate plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "sales promotion is a kind of promotion", "pln": ["(: cnet_isa_d36cbbe545 (IsA sales_promotion promotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "sales staff is a kind of staff", "pln": ["(: cnet_isa_cd1e90c68a (IsA sales_staff staff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "sales tax is a kind of excise", "pln": ["(: cnet_isa_a5061f2b29 (IsA sales_tax excise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salafism is a kind of islam", "pln": ["(: cnet_isa_431f7d1a1e (IsA salafism islam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salai is a kind of incense tree", "pln": ["(: cnet_isa_8b4db07953 (IsA salai incense_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salal is a kind of shrub", "pln": ["(: cnet_isa_6f73b9f368 (IsA salal shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salamander is a kind of amphibian", "pln": ["(: cnet_isa_6fdb10493f (IsA salamander amphibian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salamander is a kind of mythical monster", "pln": ["(: cnet_isa_a7a0bc2208 (IsA salamander mythical_monster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salamandra is a kind of amphibian genus", "pln": ["(: cnet_isa_a13d40ad52 (IsA salamandra amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salamandridae is a kind of amphibian family", "pln": ["(: cnet_isa_3c3ccb3ed2 (IsA salamandridae amphibian_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salami is a kind of sausage", "pln": ["(: cnet_isa_507beed03b (IsA salami sausage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salat is a kind of pillar of islam", "pln": ["(: cnet_isa_9effb72392 (IsA salat pillar_of_islam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salat is a kind of worship", "pln": ["(: cnet_isa_3877713c67 (IsA salat worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sale is a kind of occasion", "pln": ["(: cnet_isa_92e04d8be0 (IsA sale occasion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sale is a kind of selling", "pln": ["(: cnet_isa_96f39fa1ec (IsA sale selling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sale is a kind of agreement", "pln": ["(: cnet_isa_ee5f0b4d00 (IsA sale agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sale is a kind of merchantability", "pln": ["(: cnet_isa_6123b749bf (IsA sale merchantability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sale in gross is a kind of contract", "pln": ["(: cnet_isa_ac77bdd3b0 (IsA sale_in_gross contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sale campaign is a kind of advertising campaign", "pln": ["(: cnet_isa_8584d0773c (IsA sale_campaign advertising_campaign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sale department is a kind of business department", "pln": ["(: cnet_isa_1e94cbb760 (IsA sale_department business_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sale finance company is a kind of finance company", "pln": ["(: cnet_isa_65f1b13823 (IsA sale_finance_company finance_company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sale incentive is a kind of bonus", "pln": ["(: cnet_isa_58df510022 (IsA sale_incentive bonus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sale promotion is a kind of promotion", "pln": ["(: cnet_isa_7779b57336 (IsA sale_promotion promotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sale resistance is a kind of resistance", "pln": ["(: cnet_isa_811f484e7f (IsA sale_resistance resistance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sale staff is a kind of staff", "pln": ["(: cnet_isa_fc89fb19b6 (IsA sale_staff staff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sale talk is a kind of promotion", "pln": ["(: cnet_isa_824a87db4c (IsA sale_talk promotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sale tax is a kind of excise", "pln": ["(: cnet_isa_81f1ef4aee (IsA sale_tax excise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salesgirl is a kind of salesperson", "pln": ["(: cnet_isa_9642fc31ff (IsA salesgirl salesperson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salesman is a kind of salesperson", "pln": ["(: cnet_isa_746e33fc1d (IsA salesman salesperson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salesmanship is a kind of skill", "pln": ["(: cnet_isa_a846d46dde (IsA salesmanship skill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salesperson is a kind of employee", "pln": ["(: cnet_isa_f46a59f614 (IsA salesperson employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salian is a kind of frank", "pln": ["(: cnet_isa_1a4ec3818c (IsA salian frank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salic law is a kind of legal code", "pln": ["(: cnet_isa_374e51baf1 (IsA salic_law legal_code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salicaceae is a kind of hamamelid dicot family", "pln": ["(: cnet_isa_e88fc1f66b (IsA salicaceae hamamelid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salicale is a kind of plant order", "pln": ["(: cnet_isa_2f4b018372 (IsA salicale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salicornia is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_d72159ab69 (IsA salicornia caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "salicylate is a kind of nonsteroidal anti inflammatory", "pln": ["(: cnet_isa_397fb0d82a (IsA salicylate nonsteroidal_anti_inflammatory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salicylate is a kind of salt", "pln": ["(: cnet_isa_afd4e99317 (IsA salicylate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salicylate poisoning is a kind of poisoning", "pln": ["(: cnet_isa_6c366a01ba (IsA salicylate_poisoning poisoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salicylic acid is a kind of hydroxy acid", "pln": ["(: cnet_isa_21f989ef5d (IsA salicylic_acid hydroxy_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salience is a kind of prominence", "pln": ["(: cnet_isa_5777e27be7 (IsA salience prominence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salient is a kind of projection", "pln": ["(: cnet_isa_eee2c587d9 (IsA salient projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salient angle is a kind of angle", "pln": ["(: cnet_isa_a06a148b46 (IsA salient_angle angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salientia is a kind of animal order", "pln": ["(: cnet_isa_21e133ee63 (IsA salientia animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saline solution is a kind of isotonic solution", "pln": ["(: cnet_isa_08459880cd (IsA saline_solution isotonic_solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salinometer is a kind of hydrometer", "pln": ["(: cnet_isa_04a65c8285 (IsA salinometer hydrometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salisbury steak is a kind of dish", "pln": ["(: cnet_isa_f4caa09acf (IsA salisbury_steak dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salish is a kind of mosan", "pln": ["(: cnet_isa_e334ae32c8 (IsA salish mosan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salish is a kind of native american", "pln": ["(: cnet_isa_8dfe1bf43c (IsA salish native_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "saliva is a kind of secretion", "pln": ["(: cnet_isa_781b3bc4e3 (IsA saliva secretion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salivary duct is a kind of duct", "pln": ["(: cnet_isa_fc393ee013 (IsA salivary_duct duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salivary gland is a kind of exocrine gland", "pln": ["(: cnet_isa_653780afe4 (IsA salivary_gland exocrine_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salivation is a kind of secretion", "pln": ["(: cnet_isa_ac627150ac (IsA salivation secretion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salix is a kind of hamamelid dicot genus", "pln": ["(: cnet_isa_c65d554210 (IsA salix hamamelid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salk vaccine is a kind of poliovirus vaccine", "pln": ["(: cnet_isa_ff623f7b05 (IsA salk_vaccine poliovirus_vaccine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sallet is a kind of helmet", "pln": ["(: cnet_isa_04d087334d (IsA sallet helmet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sallow is a kind of willow", "pln": ["(: cnet_isa_f823059148 (IsA sallow willow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sallowness is a kind of complexion", "pln": ["(: cnet_isa_f29f83584e (IsA sallowness complexion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sally is a kind of venture", "pln": ["(: cnet_isa_2dd00f217c (IsA sally venture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sally lunn is a kind of teacake", "pln": ["(: cnet_isa_d40da6e49b (IsA sally_lunn teacake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salmacis is a kind of nymph", "pln": ["(: cnet_isa_696d8f0f4b (IsA salmacis nymph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salmagundi is a kind of salad", "pln": ["(: cnet_isa_094ca625d5 (IsA salmagundi salad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salmi is a kind of ragout", "pln": ["(: cnet_isa_8c502a9a54 (IsA salmi ragout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salmo is a kind of fish genus", "pln": ["(: cnet_isa_de77f38b9f (IsA salmo fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salmon is a kind of food", "pln": ["(: cnet_isa_76c75484b4 (IsA salmon food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "salmon is a kind of food fish", "pln": ["(: cnet_isa_690f4b6b38 (IsA salmon food_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salmon is a kind of salmonid", "pln": ["(: cnet_isa_14ca0fca6c (IsA salmon salmonid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salmon is a kind of chromatic color", "pln": ["(: cnet_isa_3e70d4405f (IsA salmon chromatic_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "salmon is a kind of fish", "pln": ["(: cnet_isa_b0eaf13710 (IsA salmon fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salmon loaf is a kind of fish loaf", "pln": ["(: cnet_isa_e9822f8736 (IsA salmon_loaf fish_loaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salmon oil is a kind of animal oil", "pln": ["(: cnet_isa_679695a699 (IsA salmon_oil animal_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salmonberry is a kind of raspberry", "pln": ["(: cnet_isa_3cd059eaee (IsA salmonberry raspberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salmonella is a kind of enteric bacteria", "pln": ["(: cnet_isa_53cfa20c93 (IsA salmonella enteric_bacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "salmonella enteritidis is a kind of salmonella", "pln": ["(: cnet_isa_222866e9f9 (IsA salmonella_enteritidis salmonella) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salmonella typhimurium is a kind of salmonella", "pln": ["(: cnet_isa_718e37d0c5 (IsA salmonella_typhimurium salmonella) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salmonellosis is a kind of food poisoning", "pln": ["(: cnet_isa_892434c529 (IsA salmonellosis food_poisoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "salmonid is a kind of soft finned fish", "pln": ["(: cnet_isa_bec20ed0c8 (IsA salmonid soft_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "salmonidae is a kind of fish family", "pln": ["(: cnet_isa_cb27796ad2 (IsA salmonidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salol is a kind of salicylate", "pln": ["(: cnet_isa_4fe2bc01f8 (IsA salol salicylate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salon is a kind of gallery", "pln": ["(: cnet_isa_07fd83767d (IsA salon gallery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salon is a kind of living room", "pln": ["(: cnet_isa_5454e42df4 (IsA salon living_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salon is a kind of shop", "pln": ["(: cnet_isa_f94709317d (IsA salon shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "saloon keeper is a kind of owner", "pln": ["(: cnet_isa_d1fb07014f (IsA saloon_keeper owner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salp is a kind of tunicate", "pln": ["(: cnet_isa_7ca32ade1c (IsA salp tunicate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "salpichroa is a kind of asterid dicot genus", "pln": ["(: cnet_isa_5f6b3231c8 (IsA salpichroa asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salpidae is a kind of chordate family", "pln": ["(: cnet_isa_4d0851caf8 (IsA salpidae chordate_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salpiglossis is a kind of herb", "pln": ["(: cnet_isa_2bed722349 (IsA salpiglossis herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salpincte is a kind of bird genus", "pln": ["(: cnet_isa_146f769d49 (IsA salpincte bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salpingectomy is a kind of ablation", "pln": ["(: cnet_isa_e524b7afd3 (IsA salpingectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salpingitis is a kind of inflammation", "pln": ["(: cnet_isa_564f87051e (IsA salpingitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salpinx is a kind of tube", "pln": ["(: cnet_isa_4e1f70a6b3 (IsA salpinx tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salsa is a kind of condiment", "pln": ["(: cnet_isa_be32b42b3a (IsA salsa condiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salsify is a kind of root vegetable", "pln": ["(: cnet_isa_7f696d0c45 (IsA salsify root_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salsify is a kind of herb", "pln": ["(: cnet_isa_7308084677 (IsA salsify herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salsify is a kind of root", "pln": ["(: cnet_isa_1c1f48faeb (IsA salsify root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salsilla is a kind of vine", "pln": ["(: cnet_isa_f9b2c1f920 (IsA salsilla vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salsola is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_1c955c2a31 (IsA salsola caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salt is a kind of mineral", "pln": ["(: cnet_isa_bc6a1fe572 (IsA salt mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salt is a kind of spice", "pln": ["(: cnet_isa_1f58db06f4 (IsA salt spice) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salt is a kind of taste", "pln": ["(: cnet_isa_e99cb4aae3 (IsA salt taste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salt is a kind of flavorer", "pln": ["(: cnet_isa_1cae639c38 (IsA salt flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salt is a kind of compound", "pln": ["(: cnet_isa_14c837cdab (IsA salt compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salt cod is a kind of cod", "pln": ["(: cnet_isa_5c54876f78 (IsA salt_cod cod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "salt depletion is a kind of depletion", "pln": ["(: cnet_isa_8e4ca5e632 (IsA salt_depletion depletion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salt flat is a kind of flat", "pln": ["(: cnet_isa_3aa0039451 (IsA salt_flat flat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salt lick is a kind of sediment", "pln": ["(: cnet_isa_967d8c353b (IsA salt_lick sediment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salt marsh is a kind of marsh", "pln": ["(: cnet_isa_94b8edb016 (IsA salt_marsh marsh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salt marsh mallow is a kind of seashore mallow", "pln": ["(: cnet_isa_00c5d4cbb0 (IsA salt_marsh_mallow seashore_mallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salt mine is a kind of mine", "pln": ["(: cnet_isa_0de9ca4870 (IsA salt_mine mine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salt pork is a kind of pork", "pln": ["(: cnet_isa_a9f2195d85 (IsA salt_pork pork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salt reed grass is a kind of cordgrass", "pln": ["(: cnet_isa_9365c4bcf9 (IsA salt_reed_grass cordgrass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salt rising bread is a kind of bread", "pln": ["(: cnet_isa_2f47719657 (IsA salt_rising_bread bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salt rush is a kind of rush", "pln": ["(: cnet_isa_511fee7ec2 (IsA salt_rush rush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "salt tree is a kind of shrub", "pln": ["(: cnet_isa_cb6ab48a64 (IsA salt_tree shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "saltation is a kind of mutation", "pln": ["(: cnet_isa_b65be632ed (IsA saltation mutation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "saltation is a kind of natural process", "pln": ["(: cnet_isa_be647a177f (IsA saltation natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saltbox is a kind of house", "pln": ["(: cnet_isa_aba37c8603 (IsA saltbox house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saltbush is a kind of shrub", "pln": ["(: cnet_isa_5a478b5a19 (IsA saltbush shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saltcellar is a kind of container", "pln": ["(: cnet_isa_cc2b432dbe (IsA saltcellar container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "salter is a kind of merchant", "pln": ["(: cnet_isa_e1557d91d3 (IsA salter merchant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salter is a kind of preserver", "pln": ["(: cnet_isa_693095ccbf (IsA salter preserver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saltine is a kind of cracker", "pln": ["(: cnet_isa_5467a031fe (IsA saltine cracker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saltiness is a kind of property", "pln": ["(: cnet_isa_0aae0d488b (IsA saltiness property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salting is a kind of seasoning", "pln": ["(: cnet_isa_608a6ac3f9 (IsA salting seasoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saltpan is a kind of basin", "pln": ["(: cnet_isa_5e8da112ad (IsA saltpan basin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saltshaker is a kind of shaker", "pln": ["(: cnet_isa_91bfd36c6e (IsA saltshaker shaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saltwater fish is a kind of seafood", "pln": ["(: cnet_isa_8fa805432c (IsA saltwater_fish seafood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saltwork is a kind of plant", "pln": ["(: cnet_isa_9ebc725e2b (IsA saltwork plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saltwort is a kind of shrub", "pln": ["(: cnet_isa_22d80651e6 (IsA saltwort shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salubrity is a kind of healthfulness", "pln": ["(: cnet_isa_3e7d6ec7a2 (IsA salubrity healthfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saluki is a kind of hound", "pln": ["(: cnet_isa_31886879aa (IsA saluki hound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salutation is a kind of opening", "pln": ["(: cnet_isa_dbb73debdc (IsA salutation opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salutatorian is a kind of scholar", "pln": ["(: cnet_isa_541739a6af (IsA salutatorian scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salutatory address is a kind of oratory", "pln": ["(: cnet_isa_6353b2d49a (IsA salutatory_address oratory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salute is a kind of greeting", "pln": ["(: cnet_isa_16de9bb9fa (IsA salute greeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salute is a kind of recognition", "pln": ["(: cnet_isa_9d2698f9ab (IsA salute recognition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "salvadora is a kind of dicot genus", "pln": ["(: cnet_isa_f4b7b5bbd9 (IsA salvadora dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salvadoraceae is a kind of dicot family", "pln": ["(: cnet_isa_819ed5fb19 (IsA salvadoraceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salvadorean is a kind of south american", "pln": ["(: cnet_isa_a73530e7ec (IsA salvadorean south_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salvage is a kind of rescue", "pln": ["(: cnet_isa_c018da0930 (IsA salvage rescue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salvage is a kind of commodity", "pln": ["(: cnet_isa_3361961ed9 (IsA salvage commodity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salvage is a kind of property", "pln": ["(: cnet_isa_59929665d2 (IsA salvage property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salvager is a kind of rescuer", "pln": ["(: cnet_isa_159aa3b04b (IsA salvager rescuer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salvation is a kind of mean", "pln": ["(: cnet_isa_8c23833436 (IsA salvation mean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salvation is a kind of rescue", "pln": ["(: cnet_isa_32320f6480 (IsA salvation rescue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salvation is a kind of safety", "pln": ["(: cnet_isa_03f6734354 (IsA salvation safety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salvation army is a kind of nongovernmental organization", "pln": ["(: cnet_isa_d8e4931a0c (IsA salvation_army nongovernmental_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salve is a kind of redress", "pln": ["(: cnet_isa_32067b2b0a (IsA salve redress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salvelinus is a kind of fish genus", "pln": ["(: cnet_isa_c8afaed3ff (IsA salvelinus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salver is a kind of tray", "pln": ["(: cnet_isa_2b840c5fbb (IsA salver tray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salvinia is a kind of fern genus", "pln": ["(: cnet_isa_d104ee8a88 (IsA salvinia fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salviniaceae is a kind of fern family", "pln": ["(: cnet_isa_40e61c5ecd (IsA salviniaceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salvinorin is a kind of hallucinogen", "pln": ["(: cnet_isa_d152262b3b (IsA salvinorin hallucinogen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "salvo is a kind of cheer", "pln": ["(: cnet_isa_5f5376847d (IsA salvo cheer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salvo is a kind of outburst", "pln": ["(: cnet_isa_f576e99867 (IsA salvo outburst) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "salwar is a kind of pair of trouser", "pln": ["(: cnet_isa_74a8ebfa34 (IsA salwar pair_of_trouser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sam browne belt is a kind of belt", "pln": ["(: cnet_isa_bed48f680f (IsA sam_browne_belt belt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "samara is a kind of achene", "pln": ["(: cnet_isa_63f26994ff (IsA samara achene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "samaritan is a kind of israelite", "pln": ["(: cnet_isa_a91ae8e266 (IsA samaritan israelite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "samarium is a kind of metallic element", "pln": ["(: cnet_isa_68022f74de (IsA samarium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "samarskite is a kind of mineral", "pln": ["(: cnet_isa_066dc210ed (IsA samarskite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "samba is a kind of ballroom dancing", "pln": ["(: cnet_isa_1ffa92c929 (IsA samba ballroom_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "samba is a kind of canasta", "pln": ["(: cnet_isa_cab3e96fbb (IsA samba canasta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "samba is a kind of dance music", "pln": ["(: cnet_isa_754394fe36 (IsA samba dance_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sambar is a kind of deer", "pln": ["(: cnet_isa_b6c7fc8776 (IsA sambar deer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sambuca is a kind of liqueur", "pln": ["(: cnet_isa_2d6d69a7d6 (IsA sambuca liqueur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sambucus is a kind of asterid dicot genus", "pln": ["(: cnet_isa_ba7f505a3b (IsA sambucus asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "same sex marriage is a kind of couple", "pln": ["(: cnet_isa_ac294acbea (IsA same_sex_marriage couple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "samekh is a kind of letter", "pln": ["(: cnet_isa_fddedf1d8b (IsA samekh letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sameness is a kind of quality", "pln": ["(: cnet_isa_5f9fb632ca (IsA sameness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "samia is a kind of arthropod genus", "pln": ["(: cnet_isa_e3b120b032 (IsA samia arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "samisen is a kind of stringed instrument", "pln": ["(: cnet_isa_ef935f211b (IsA samisen stringed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "samite is a kind of fabric", "pln": ["(: cnet_isa_2eef26b2f6 (IsA samite fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "samizdat is a kind of print media", "pln": ["(: cnet_isa_455cecd53a (IsA samizdat print_media) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "samnite is a kind of italian", "pln": ["(: cnet_isa_ff44e6224f (IsA samnite italian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "samoan is a kind of polynesian", "pln": ["(: cnet_isa_0f6b1b8a8a (IsA samoan polynesian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "samolus is a kind of dicot genus", "pln": ["(: cnet_isa_8160720d0e (IsA samolus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "samosa is a kind of turnover", "pln": ["(: cnet_isa_a47dd92285 (IsA samosa turnover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "samovar is a kind of urn", "pln": ["(: cnet_isa_d3f9b59ca1 (IsA samovar urn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "samoyed is a kind of spitz", "pln": ["(: cnet_isa_dba5e0f725 (IsA samoyed spitz) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "samoyed is a kind of russian", "pln": ["(: cnet_isa_6e509eea43 (IsA samoyed russian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "samoyedic is a kind of uralic", "pln": ["(: cnet_isa_837af7683f (IsA samoyedic uralic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sampan is a kind of skiff", "pln": ["(: cnet_isa_c7f998c6ae (IsA sampan skiff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sample is a kind of example", "pln": ["(: cnet_isa_7d5407a0cf (IsA sample example) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sample is a kind of natural object", "pln": ["(: cnet_isa_edabb14a37 (IsA sample natural_object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sample distribution is a kind of distribution", "pln": ["(: cnet_isa_c83eeb9f73 (IsA sample_distribution distribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sampler is a kind of embroidery", "pln": ["(: cnet_isa_143e6f85ec (IsA sampler embroidery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sampler is a kind of assortment", "pln": ["(: cnet_isa_0fd7c32234 (IsA sampler assortment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sampling is a kind of choice", "pln": ["(: cnet_isa_a4f9967e70 (IsA sampling choice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sampling is a kind of measurement", "pln": ["(: cnet_isa_5c89ec89ff (IsA sampling measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sampling frequency is a kind of frequency", "pln": ["(: cnet_isa_0fdf7594f7 (IsA sampling_frequency frequency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sampling rate is a kind of rate", "pln": ["(: cnet_isa_c90b107bb5 (IsA sampling_rate rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sampling station is a kind of observation station", "pln": ["(: cnet_isa_840ef1c690 (IsA sampling_station observation_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "samsara is a kind of cycle", "pln": ["(: cnet_isa_950133932d (IsA samsara cycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "samurai is a kind of nobility", "pln": ["(: cnet_isa_9b585037f0 (IsA samurai nobility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "samurai is a kind of warrior", "pln": ["(: cnet_isa_c305919b84 (IsA samurai warrior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "san carlo apache is a kind of apache", "pln": ["(: cnet_isa_e5b650f94b (IsA san_carlo_apache apache) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "san francisco is a kind of city", "pln": ["(: cnet_isa_cadb0b6936 (IsA san_francisco city) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "san francisco is a kind of in california", "pln": ["(: cnet_isa_fdcf9e2e04 (IsA san_francisco in_california) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "san francisco is a kind of liberal city", "pln": ["(: cnet_isa_13b24cb63b (IsA san_francisco liberal_city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "san jose scale is a kind of armored scale", "pln": ["(: cnet_isa_a4fa45a5b1 (IsA san_jose_scale armored_scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "san marinese is a kind of european", "pln": ["(: cnet_isa_4f54e452b0 (IsA san_marinese european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sanatorium is a kind of hospital", "pln": ["(: cnet_isa_bd982e342b (IsA sanatorium hospital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sanctification is a kind of religious ceremony", "pln": ["(: cnet_isa_18bde2725d (IsA sanctification religious_ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sanctimoniousness is a kind of hypocrisy", "pln": ["(: cnet_isa_d2294a610a (IsA sanctimoniousness hypocrisy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sanction is a kind of authorization", "pln": ["(: cnet_isa_ff1310ca3d (IsA sanction authorization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sanction is a kind of social control", "pln": ["(: cnet_isa_f8779687e2 (IsA sanction social_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sanction is a kind of approval", "pln": ["(: cnet_isa_7512c962be (IsA sanction approval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sanctuary is a kind of place", "pln": ["(: cnet_isa_9f071e1909 (IsA sanctuary place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sanctum is a kind of retreat", "pln": ["(: cnet_isa_4d3da5a17c (IsA sanctum retreat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sand is a kind of also", "pln": ["(: cnet_isa_8d40a6801b (IsA sand also) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sand is a kind of soil", "pln": ["(: cnet_isa_a93c6cf091 (IsA sand soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sand blackberry is a kind of blackberry", "pln": ["(: cnet_isa_3d64464016 (IsA sand_blackberry blackberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sand cat is a kind of wildcat", "pln": ["(: cnet_isa_58f255e070 (IsA sand_cat wildcat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sand cherry is a kind of shrub", "pln": ["(: cnet_isa_50b5231fa5 (IsA sand_cherry shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sand crack is a kind of animal disease", "pln": ["(: cnet_isa_ab7af60efd (IsA sand_crack animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sand cricket is a kind of long horned grasshopper", "pln": ["(: cnet_isa_de2381f016 (IsA sand_cricket long_horned_grasshopper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sand dab is a kind of lefteye flounder", "pln": ["(: cnet_isa_cc2efbf400 (IsA sand_dab lefteye_flounder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sand dab is a kind of flounder", "pln": ["(: cnet_isa_adc3e86fef (IsA sand_dab flounder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sand devil s claw is a kind of herb", "pln": ["(: cnet_isa_f242a84076 (IsA sand_devil_s_claw herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sand dollar is a kind of sea urchin", "pln": ["(: cnet_isa_081db1e752 (IsA sand_dollar sea_urchin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sand dropseed is a kind of dropseed", "pln": ["(: cnet_isa_1106a98c6c (IsA sand_dropseed dropseed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sand dune is a kind of very large pile of sand", "pln": ["(: cnet_isa_890092f427 (IsA sand_dune very_large_pile_of_sand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sand fly is a kind of gnat", "pln": ["(: cnet_isa_cd139019d8 (IsA sand_fly gnat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sand lance is a kind of spiny finned fish", "pln": ["(: cnet_isa_ed3b8be40b (IsA sand_lance spiny_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sand leek is a kind of alliaceous plant", "pln": ["(: cnet_isa_a5436069d6 (IsA sand_leek alliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sand lizard is a kind of lacertid lizard", "pln": ["(: cnet_isa_f515c70486 (IsA sand_lizard lacertid_lizard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sand myrtle is a kind of shrub", "pln": ["(: cnet_isa_5cd9679ce0 (IsA sand_myrtle shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sand painting is a kind of painting", "pln": ["(: cnet_isa_eee70a17fd (IsA sand_painting painting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sand rat is a kind of gerbil", "pln": ["(: cnet_isa_81a5e15f95 (IsA sand_rat gerbil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sand rat is a kind of rodent", "pln": ["(: cnet_isa_7b011b55bf (IsA sand_rat rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sand sage is a kind of sagebrush", "pln": ["(: cnet_isa_c8bb98e258 (IsA sand_sage sagebrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sand sedge is a kind of sedge", "pln": ["(: cnet_isa_da1df1a216 (IsA sand_sedge sedge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sand snake is a kind of colubrid snake", "pln": ["(: cnet_isa_1719ca6ba1 (IsA sand_snake colubrid_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sand sole is a kind of sole", "pln": ["(: cnet_isa_ddc4f390d8 (IsA sand_sole sole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sand spurry is a kind of weed", "pln": ["(: cnet_isa_ba3854dd72 (IsA sand_spurry weed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sand stargazer is a kind of percoid fish", "pln": ["(: cnet_isa_267536ac7b (IsA sand_stargazer percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sand tiger is a kind of shark", "pln": ["(: cnet_isa_ba5aa75871 (IsA sand_tiger shark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sand verbena is a kind of wildflower", "pln": ["(: cnet_isa_f0e12a3b0c (IsA sand_verbena wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sand wedge is a kind of wedge", "pln": ["(: cnet_isa_7e469744dc (IsA sand_wedge wedge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandal is a kind of open shoe for hot weather", "pln": ["(: cnet_isa_fff33d9a25 (IsA sandal open_shoe_for_hot_weather) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandal is a kind of shoe", "pln": ["(: cnet_isa_617f613732 (IsA sandal shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sandalwood is a kind of wood", "pln": ["(: cnet_isa_c8eb54ddfb (IsA sandalwood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandalwood tree is a kind of tree", "pln": ["(: cnet_isa_4dfebf56d4 (IsA sandalwood_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandarac is a kind of cypress", "pln": ["(: cnet_isa_5a40c4c0c9 (IsA sandarac cypress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandarac is a kind of natural resin", "pln": ["(: cnet_isa_8ae1e4fd4c (IsA sandarac natural_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandarac is a kind of wood", "pln": ["(: cnet_isa_48e3415122 (IsA sandarac wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandbag is a kind of bag", "pln": ["(: cnet_isa_44d9466bbe (IsA sandbag bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandbagger is a kind of deceiver", "pln": ["(: cnet_isa_d26a4e95e5 (IsA sandbagger deceiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandbank is a kind of bank", "pln": ["(: cnet_isa_48cb8751e9 (IsA sandbank bank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandbar is a kind of bar", "pln": ["(: cnet_isa_fab9abc774 (IsA sandbar bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sandbar shark is a kind of requiem shark", "pln": ["(: cnet_isa_272d9eaafd (IsA sandbar_shark requiem_shark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandblast is a kind of gust", "pln": ["(: cnet_isa_9e837c22b5 (IsA sandblast gust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandblaster is a kind of hand tool", "pln": ["(: cnet_isa_8403a3622a (IsA sandblaster hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandbox is a kind of mold", "pln": ["(: cnet_isa_2814a5ce83 (IsA sandbox mold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandbox is a kind of plaything", "pln": ["(: cnet_isa_619e05041c (IsA sandbox plaything) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandboy is a kind of peddler", "pln": ["(: cnet_isa_dc54b6dc7d (IsA sandboy peddler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandbur is a kind of grass", "pln": ["(: cnet_isa_78ddccd781 (IsA sandbur grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sanderling is a kind of sandpiper", "pln": ["(: cnet_isa_3bf492a631 (IsA sanderling sandpiper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandfish is a kind of percoid fish", "pln": ["(: cnet_isa_f5242581d5 (IsA sandfish percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandfly fever is a kind of disease", "pln": ["(: cnet_isa_9757ff975f (IsA sandfly_fever disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandglass is a kind of timepiece", "pln": ["(: cnet_isa_ddad7559a1 (IsA sandglass timepiece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandgrouse is a kind of columbiform bird", "pln": ["(: cnet_isa_3ad7a63110 (IsA sandgrouse columbiform_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandhi is a kind of articulation", "pln": ["(: cnet_isa_2487f7ae99 (IsA sandhi articulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandiness is a kind of coarseness", "pln": ["(: cnet_isa_aa7df0eb44 (IsA sandiness coarseness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandlot is a kind of vacant lot", "pln": ["(: cnet_isa_152aabf55b (IsA sandlot vacant_lot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandman is a kind of elf", "pln": ["(: cnet_isa_a914defb06 (IsA sandman elf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandpiper is a kind of shorebird", "pln": ["(: cnet_isa_e89c45f40b (IsA sandpiper shorebird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandpit is a kind of pit", "pln": ["(: cnet_isa_43ed39835c (IsA sandpit pit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandstone is a kind of arenaceous rock", "pln": ["(: cnet_isa_5c3652c3d4 (IsA sandstone arenaceous_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandwich is a kind of meal commonly", "pln": ["(: cnet_isa_d66ba08d32 (IsA sandwich meal_commonly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandwich is a kind of snack food", "pln": ["(: cnet_isa_2a204be6bf (IsA sandwich snack_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandwich board is a kind of signboard", "pln": ["(: cnet_isa_0fda487cb7 (IsA sandwich_board signboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandwich plate is a kind of dish", "pln": ["(: cnet_isa_bc73eb688e (IsA sandwich_plate dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandwichman is a kind of employee", "pln": ["(: cnet_isa_c8006e1b6e (IsA sandwichman employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandwort is a kind of flower", "pln": ["(: cnet_isa_b840365262 (IsA sandwort flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sandy mushroom is a kind of agaric", "pln": ["(: cnet_isa_c711839e01 (IsA sandy_mushroom agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sangapenum is a kind of gum", "pln": ["(: cnet_isa_534f7d8c3e (IsA sangapenum gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sangaree is a kind of drink", "pln": ["(: cnet_isa_8a53c547b8 (IsA sangaree drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sango is a kind of niger congo", "pln": ["(: cnet_isa_0c95844b5a (IsA sango niger_congo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sangoma is a kind of therapist", "pln": ["(: cnet_isa_14ff04bde0 (IsA sangoma therapist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sanguinaria is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_0b8cf3d457 (IsA sanguinaria dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sanguinary ant is a kind of slave making ant", "pln": ["(: cnet_isa_e2c39fd19d (IsA sanguinary_ant slave_making_ant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sanguine is a kind of red", "pln": ["(: cnet_isa_ceacb25e42 (IsA sanguine red) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sanguinity is a kind of optimism", "pln": ["(: cnet_isa_1bb2f2250e (IsA sanguinity optimism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sanhedrin is a kind of council", "pln": ["(: cnet_isa_f168c67016 (IsA sanhedrin council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sanicle is a kind of herb", "pln": ["(: cnet_isa_2e6397b29a (IsA sanicle herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sanicula is a kind of rosid dicot genus", "pln": ["(: cnet_isa_3d1a7b5ad3 (IsA sanicula rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sanitariness is a kind of sanitary condition", "pln": ["(: cnet_isa_81a80c48a3 (IsA sanitariness sanitary_condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sanitary code is a kind of code", "pln": ["(: cnet_isa_d44c6a0994 (IsA sanitary_code code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sanitary condition is a kind of condition", "pln": ["(: cnet_isa_8904799542 (IsA sanitary_condition condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sanitary landfill is a kind of landfill", "pln": ["(: cnet_isa_afd2f1fb4f (IsA sanitary_landfill landfill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sanitary napkin is a kind of pad", "pln": ["(: cnet_isa_f2d23341a0 (IsA sanitary_napkin pad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sanitation is a kind of cleaning", "pln": ["(: cnet_isa_012a8b5e9f (IsA sanitation cleaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sanitation is a kind of sanitariness", "pln": ["(: cnet_isa_5a202afd38 (IsA sanitation sanitariness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sanitation department is a kind of local department", "pln": ["(: cnet_isa_52a77dcf4e (IsA sanitation_department local_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sanity is a kind of mental health", "pln": ["(: cnet_isa_70794c10ed (IsA sanity mental_health) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sannup is a kind of native american", "pln": ["(: cnet_isa_686707d7a4 (IsA sannup native_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sannyasi is a kind of beggar", "pln": ["(: cnet_isa_241ed8d771 (IsA sannyasi beggar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sannyasi is a kind of hindoo", "pln": ["(: cnet_isa_eddabd947b (IsA sannyasi hindoo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "san serif is a kind of font", "pln": ["(: cnet_isa_79c52428b6 (IsA san_serif font) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sansevieria is a kind of agave", "pln": ["(: cnet_isa_039e5a0309 (IsA sansevieria agave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sanskrit is a kind of indic", "pln": ["(: cnet_isa_7412d5dffd (IsA sanskrit indic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sanskrit literature is a kind of literature", "pln": ["(: cnet_isa_a73d8f3dad (IsA sanskrit_literature literature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "santalales is a kind of plant order", "pln": ["(: cnet_isa_e68705487d (IsA santalales plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "santa ana is a kind of wind", "pln": ["(: cnet_isa_7b1f1b2ca1 (IsA santa_ana wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "santa cruz cypress is a kind of cypress", "pln": ["(: cnet_isa_53dab2873c (IsA santa_cruz_cypress cypress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "santa gertrudis is a kind of beef", "pln": ["(: cnet_isa_0dde6db35d (IsA santa_gertrudis beef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "santa lucia fir is a kind of fir", "pln": ["(: cnet_isa_81745200cb (IsA santa_lucia_fir fir) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "santalaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_708cc3cd4f (IsA santalaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "santalale is a kind of plant order", "pln": ["(: cnet_isa_fabd1ea0f7 (IsA santalale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "santalum is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_eec5e3d629 (IsA santalum dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "santee is a kind of siouan", "pln": ["(: cnet_isa_74bdaeea25 (IsA santee siouan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "santim is a kind of latvian monetary unit", "pln": ["(: cnet_isa_502f496fd7 (IsA santim latvian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "santolina is a kind of asterid dicot genus", "pln": ["(: cnet_isa_b4f23665ac (IsA santolina asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sanvitalia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_ece7a7ca5b (IsA sanvitalia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sao thome e principe monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_7e9c53f33f (IsA sao_thome_e_principe_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sap is a kind of solution", "pln": ["(: cnet_isa_7a8b06dd7b (IsA sap solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saphenous nerve is a kind of nerve", "pln": ["(: cnet_isa_91f657d77f (IsA saphenous_nerve nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saphenous vein is a kind of vein", "pln": ["(: cnet_isa_880d71f17f (IsA saphenous_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saphire is a kind of stone", "pln": ["(: cnet_isa_d65700a09a (IsA saphire stone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sapidity is a kind of flavorsomeness", "pln": ["(: cnet_isa_60635f7b2e (IsA sapidity flavorsomeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sapiential book is a kind of sacred text", "pln": ["(: cnet_isa_2966b0ba64 (IsA sapiential_book sacred_text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sapindaceae is a kind of dicot family", "pln": ["(: cnet_isa_83ee4c5914 (IsA sapindaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sapindale is a kind of plant order", "pln": ["(: cnet_isa_20d4120833 (IsA sapindale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sapindus is a kind of dicot genus", "pln": ["(: cnet_isa_e70294013d (IsA sapindus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sapling is a kind of tree", "pln": ["(: cnet_isa_867d6bfcd0 (IsA sapling tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sapodilla is a kind of edible fruit", "pln": ["(: cnet_isa_eeaa54fdad (IsA sapodilla edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sapodilla is a kind of fruit tree", "pln": ["(: cnet_isa_2c445d74a2 (IsA sapodilla fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saponaria is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_e51fac49e7 (IsA saponaria caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saponification is a kind of chemical reaction", "pln": ["(: cnet_isa_7dc9917d40 (IsA saponification chemical_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saponin is a kind of glucoside", "pln": ["(: cnet_isa_4447a7211c (IsA saponin glucoside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sapotaceae is a kind of dicot family", "pln": ["(: cnet_isa_fad4785a1f (IsA sapotaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sapote is a kind of edible fruit", "pln": ["(: cnet_isa_db96e54557 (IsA sapote edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sapper is a kind of army engineer", "pln": ["(: cnet_isa_b16dccb8be (IsA sapper army_engineer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sapphire is a kind of jewel", "pln": ["(: cnet_isa_6cdc2b2488 (IsA sapphire jewel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sapphire is a kind of corundom", "pln": ["(: cnet_isa_16a3b3ddf3 (IsA sapphire corundom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sapphire is a kind of transparent gem", "pln": ["(: cnet_isa_b52523e3c9 (IsA sapphire transparent_gem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sapphirine is a kind of mineral", "pln": ["(: cnet_isa_bd9019a331 (IsA sapphirine mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sapremia is a kind of sepsis", "pln": ["(: cnet_isa_c4ef500cf5 (IsA sapremia sepsis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saprobe is a kind of organism", "pln": ["(: cnet_isa_27042153ff (IsA saprobe organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "saprolegnia is a kind of fungus genus", "pln": ["(: cnet_isa_ae3a3356a6 (IsA saprolegnia fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saprolegniale is a kind of fungus order", "pln": ["(: cnet_isa_db268baade (IsA saprolegniale fungus_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saprolite is a kind of earth", "pln": ["(: cnet_isa_7d152ee82c (IsA saprolite earth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sapropel is a kind of sludge", "pln": ["(: cnet_isa_eb73957cbb (IsA sapropel sludge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saprophyte is a kind of organism", "pln": ["(: cnet_isa_61cbfe53e6 (IsA saprophyte organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sapsago is a kind of swiss cheese", "pln": ["(: cnet_isa_a8aeb6631e (IsA sapsago swiss_cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sapsucker is a kind of woodpecker", "pln": ["(: cnet_isa_a126b87a01 (IsA sapsucker woodpecker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sapwood is a kind of wood", "pln": ["(: cnet_isa_18aef1e2bb (IsA sapwood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saraband is a kind of dancing", "pln": ["(: cnet_isa_d3ed2ec18a (IsA saraband dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saraband is a kind of dance music", "pln": ["(: cnet_isa_09b4266be1 (IsA saraband dance_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saracen is a kind of moslem", "pln": ["(: cnet_isa_7f8d028608 (IsA saracen moslem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saracen is a kind of nomad", "pln": ["(: cnet_isa_5931dafc74 (IsA saracen nomad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saracen is a kind of arabian", "pln": ["(: cnet_isa_f2d6be0d63 (IsA saracen arabian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sarah is a kind of female name", "pln": ["(: cnet_isa_c073304f8d (IsA sarah female_name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saratoga spittlebug is a kind of spittle insect", "pln": ["(: cnet_isa_23ed53f59f (IsA saratoga_spittlebug spittle_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarawakian is a kind of malaysian", "pln": ["(: cnet_isa_eac21b972e (IsA sarawakian malaysian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarcasm is a kind of jealousy in bold disguise", "pln": ["(: cnet_isa_c1eea13de3 (IsA sarcasm jealousy_in_bold_disguise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarcasm is a kind of wit", "pln": ["(: cnet_isa_91623d736f (IsA sarcasm wit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarcenet is a kind of silk", "pln": ["(: cnet_isa_317049cc67 (IsA sarcenet silk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarcobatus is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_fb31c1621b (IsA sarcobatus caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarcocephalus is a kind of asterid dicot genus", "pln": ["(: cnet_isa_8048823283 (IsA sarcocephalus asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarcochilus is a kind of monocot genus", "pln": ["(: cnet_isa_c8e5f29ac9 (IsA sarcochilus monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sarcocystis is a kind of protoctist genus", "pln": ["(: cnet_isa_391378e75e (IsA sarcocystis protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarcode is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_1f457080ce (IsA sarcode dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarcodina is a kind of class", "pln": ["(: cnet_isa_26ce3aea22 (IsA sarcodina class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarcodinian is a kind of protozoan", "pln": ["(: cnet_isa_36d7bd0e40 (IsA sarcodinian protozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarcoidosis is a kind of pathology", "pln": ["(: cnet_isa_92ef31d82f (IsA sarcoidosis pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarcolemma is a kind of membrane", "pln": ["(: cnet_isa_259a790cdb (IsA sarcolemma membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarcoma is a kind of cancer", "pln": ["(: cnet_isa_8bd2353735 (IsA sarcoma cancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarcomere is a kind of segment", "pln": ["(: cnet_isa_65b027c959 (IsA sarcomere segment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarcophaga is a kind of arthropod genus", "pln": ["(: cnet_isa_9f3adfeec0 (IsA sarcophaga arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarcophagus is a kind of coffin", "pln": ["(: cnet_isa_6ab9e7b26a (IsA sarcophagus coffin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sarcophilus is a kind of mammal genus", "pln": ["(: cnet_isa_daa4501025 (IsA sarcophilus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarcoplasm is a kind of cytoplasm", "pln": ["(: cnet_isa_4090f150c5 (IsA sarcoplasm cytoplasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarcopte is a kind of arthropod genus", "pln": ["(: cnet_isa_facfba0a73 (IsA sarcopte arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarcoptidae is a kind of arthropod family", "pln": ["(: cnet_isa_ce0faec3e1 (IsA sarcoptidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarcorhamphus is a kind of bird genus", "pln": ["(: cnet_isa_a6f5977cb3 (IsA sarcorhamphus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarcoscypha coccinea is a kind of discomycete", "pln": ["(: cnet_isa_3f70e06a2d (IsA sarcoscypha_coccinea discomycete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarcoscyphaceae is a kind of fungus family", "pln": ["(: cnet_isa_0f608551e1 (IsA sarcoscyphaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarcosine is a kind of amino acid", "pln": ["(: cnet_isa_55e5e91aac (IsA sarcosine amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sarcosomataceae is a kind of ascomycete", "pln": ["(: cnet_isa_a3a01f7251 (IsA sarcosomataceae ascomycete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sarcosome is a kind of mitochondrion", "pln": ["(: cnet_isa_7e4d2fc00d (IsA sarcosome mitochondrion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarcosporidia is a kind of animal order", "pln": ["(: cnet_isa_faf6ea843a (IsA sarcosporidia animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarcosporidian is a kind of sporozoan", "pln": ["(: cnet_isa_70d7e76611 (IsA sarcosporidian sporozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarcostemma is a kind of dicot genus", "pln": ["(: cnet_isa_82782cac6e (IsA sarcostemma dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sard is a kind of chalcedony", "pln": ["(: cnet_isa_a72207725f (IsA sard chalcedony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sarda is a kind of fish genus", "pln": ["(: cnet_isa_c100c6e455 (IsA sarda fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sardina is a kind of fish genus", "pln": ["(: cnet_isa_4eaa39b6b5 (IsA sardina fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sardine is a kind of clupeid fish", "pln": ["(: cnet_isa_7b33a4fbe0 (IsA sardine clupeid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sardine is a kind of food fish", "pln": ["(: cnet_isa_9d60fd6593 (IsA sardine food_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sardine is a kind of saltwater fish", "pln": ["(: cnet_isa_21584bc418 (IsA sardine saltwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sardine oil is a kind of animal oil", "pln": ["(: cnet_isa_72b6a1eae8 (IsA sardine_oil animal_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sardinian is a kind of italian", "pln": ["(: cnet_isa_35432d675b (IsA sardinian italian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sardinop is a kind of fish genus", "pln": ["(: cnet_isa_4203ddbc7c (IsA sardinop fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sardonyx is a kind of onyx", "pln": ["(: cnet_isa_49fe2879df (IsA sardonyx onyx) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sargassum fish is a kind of spiny finned fish", "pln": ["(: cnet_isa_385a8fc808 (IsA sargassum_fish spiny_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sari is a kind of dress", "pln": ["(: cnet_isa_cfb0743af5 (IsA sari dress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarin is a kind of organophosphate nerve agent", "pln": ["(: cnet_isa_9e51101b14 (IsA sarin organophosphate_nerve_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sarong is a kind of skirt", "pln": ["(: cnet_isa_778264e369 (IsA sarong skirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarracenia is a kind of dicot genus", "pln": ["(: cnet_isa_44e3729788 (IsA sarracenia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarraceniaceae is a kind of dicot family", "pln": ["(: cnet_isa_de3d00ded1 (IsA sarraceniaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarraceniale is a kind of plant order", "pln": ["(: cnet_isa_f894c386b3 (IsA sarraceniale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarsaparilla is a kind of soft drink", "pln": ["(: cnet_isa_21075c3722 (IsA sarsaparilla soft_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sarsaparilla is a kind of vine", "pln": ["(: cnet_isa_4518a9950b (IsA sarsaparilla vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sarsaparilla root is a kind of root", "pln": ["(: cnet_isa_70aa8a7c53 (IsA sarsaparilla_root root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sartorius is a kind of skeletal muscle", "pln": ["(: cnet_isa_c573ef26b9 (IsA sartorius skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sash is a kind of framework", "pln": ["(: cnet_isa_a09de790ee (IsA sash framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sash cord is a kind of cord", "pln": ["(: cnet_isa_c8aa704b77 (IsA sash_cord cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sash fastener is a kind of lock", "pln": ["(: cnet_isa_b55d84eee1 (IsA sash_fastener lock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sash weight is a kind of counterweight", "pln": ["(: cnet_isa_365a437c0c (IsA sash_weight counterweight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sash window is a kind of window", "pln": ["(: cnet_isa_53e387bc1d (IsA sash_window window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sashay is a kind of country dance", "pln": ["(: cnet_isa_656871fcb1 (IsA sashay country_dance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sashimi is a kind of dish", "pln": ["(: cnet_isa_cc34ff5c7a (IsA sashimi dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saskatoon is a kind of in canada", "pln": ["(: cnet_isa_b454489e22 (IsA saskatoon in_canada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saskatoon is a kind of berry", "pln": ["(: cnet_isa_75b94af783 (IsA saskatoon berry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sass is a kind of rejoinder", "pln": ["(: cnet_isa_a2acd0a9c3 (IsA sass rejoinder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sassaby is a kind of antelope", "pln": ["(: cnet_isa_55a1b05a19 (IsA sassaby antelope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sassafra is a kind of flavorer", "pln": ["(: cnet_isa_55743d6781 (IsA sassafra flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sassafra is a kind of laurel", "pln": ["(: cnet_isa_cd86b4e1f4 (IsA sassafra laurel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sassafra oil is a kind of oil", "pln": ["(: cnet_isa_d0936dfe5e (IsA sassafra_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sassenach is a kind of english person", "pln": ["(: cnet_isa_0adcd56004 (IsA sassenach english_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satan is a kind of fallen angel", "pln": ["(: cnet_isa_7c91e56c77 (IsA satan fallen_angel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satang is a kind of thai monetary unit", "pln": ["(: cnet_isa_79da4e80d1 (IsA satang thai_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satanophobia is a kind of social phobia", "pln": ["(: cnet_isa_2759372322 (IsA satanophobia social_phobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satchel is a kind of bag", "pln": ["(: cnet_isa_1b9ee40c92 (IsA satchel bag) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satchel is a kind of baggage", "pln": ["(: cnet_isa_1cfe992220 (IsA satchel baggage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sateen is a kind of fabric", "pln": ["(: cnet_isa_e0a10d5091 (IsA sateen fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satellite is a kind of equipment", "pln": ["(: cnet_isa_e1c3eecac7 (IsA satellite equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satellite is a kind of celestial body", "pln": ["(: cnet_isa_03d98d52ff (IsA satellite celestial_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satellite is a kind of follower", "pln": ["(: cnet_isa_ce6176284c (IsA satellite follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "satellite receiver is a kind of receiver", "pln": ["(: cnet_isa_d1dcf361a6 (IsA satellite_receiver receiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satellite television is a kind of television", "pln": ["(: cnet_isa_c94f4ff6eb (IsA satellite_television television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satellite transmitter is a kind of transmitter", "pln": ["(: cnet_isa_1ee0597949 (IsA satellite_transmitter transmitter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "satiation is a kind of gratification", "pln": ["(: cnet_isa_c163752e30 (IsA satiation gratification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "satin is a kind of fabric", "pln": ["(: cnet_isa_0536065300 (IsA satin fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satin bowerbird is a kind of bowerbird", "pln": ["(: cnet_isa_c4b2d505d8 (IsA satin_bowerbird bowerbird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satin stitch is a kind of embroidery stitch", "pln": ["(: cnet_isa_df2d6d0ff8 (IsA satin_stitch embroidery_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satin weave is a kind of weave", "pln": ["(: cnet_isa_259ea34586 (IsA satin_weave weave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satinette is a kind of fabric", "pln": ["(: cnet_isa_a3381188ef (IsA satinette fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satinleaf is a kind of angiospermous tree", "pln": ["(: cnet_isa_b6f7e21d6c (IsA satinleaf angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satinwood is a kind of angiospermous yellowwood", "pln": ["(: cnet_isa_8b62e746bb (IsA satinwood angiospermous_yellowwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satinwood is a kind of tree", "pln": ["(: cnet_isa_997d49a87f (IsA satinwood tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satinwood is a kind of wood", "pln": ["(: cnet_isa_506c009d5d (IsA satinwood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satirist is a kind of humorist", "pln": ["(: cnet_isa_896fe11f12 (IsA satirist humorist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satisfaction is a kind of change", "pln": ["(: cnet_isa_68d6ece7a3 (IsA satisfaction change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satisfaction is a kind of contentment", "pln": ["(: cnet_isa_cd378d084d (IsA satisfaction contentment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satisfaction is a kind of payment", "pln": ["(: cnet_isa_6f2d8e088f (IsA satisfaction payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satisfactoriness is a kind of quality", "pln": ["(: cnet_isa_645323a27b (IsA satisfactoriness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satisfier is a kind of agent", "pln": ["(: cnet_isa_986ce933bf (IsA satisfier agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satori is a kind of enlightenment", "pln": ["(: cnet_isa_0578dd7dca (IsA satori enlightenment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satrap is a kind of governor", "pln": ["(: cnet_isa_44130e04c7 (IsA satrap governor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satsuma is a kind of mandarin", "pln": ["(: cnet_isa_3254ed915b (IsA satsuma mandarin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saturated fatty acid is a kind of fatty acid", "pln": ["(: cnet_isa_f94d2f70ec (IsA saturated_fatty_acid fatty_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saturation is a kind of filling", "pln": ["(: cnet_isa_9479bc7906 (IsA saturation filling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saturation is a kind of color property", "pln": ["(: cnet_isa_18acdc139a (IsA saturation color_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saturation is a kind of condition", "pln": ["(: cnet_isa_53f5b2d10a (IsA saturation condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saturation point is a kind of saturation", "pln": ["(: cnet_isa_23b90777f1 (IsA saturation_point saturation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saturday is a kind of weekday", "pln": ["(: cnet_isa_46cf8977bc (IsA saturday weekday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saturday night special is a kind of pistol", "pln": ["(: cnet_isa_4f2a10f5f9 (IsA saturday_night_special pistol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satureja is a kind of asterid dicot genus", "pln": ["(: cnet_isa_b59ccab919 (IsA satureja asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saturn is a kind of planet", "pln": ["(: cnet_isa_c66f64f71e (IsA saturn planet) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saturnalia is a kind of festival", "pln": ["(: cnet_isa_215339fded (IsA saturnalia festival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saturnia is a kind of arthropod genus", "pln": ["(: cnet_isa_25fc080b95 (IsA saturnia arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saturniid is a kind of moth", "pln": ["(: cnet_isa_6d70494b1e (IsA saturniid moth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saturniidae is a kind of arthropod family", "pln": ["(: cnet_isa_abda290f4c (IsA saturniidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satyagraha is a kind of passive resistance", "pln": ["(: cnet_isa_34c7601380 (IsA satyagraha passive_resistance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satyr is a kind of greek deity", "pln": ["(: cnet_isa_4353c9dc54 (IsA satyr greek_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satyr is a kind of pervert", "pln": ["(: cnet_isa_722acd45db (IsA satyr pervert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satyr orchid is a kind of orchid", "pln": ["(: cnet_isa_30effc1a2e (IsA satyr_orchid orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satyr play is a kind of play", "pln": ["(: cnet_isa_a891a5b803 (IsA satyr_play play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satyriasis is a kind of sexual desire", "pln": ["(: cnet_isa_9fa8c04114 (IsA satyriasis sexual_desire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "satyridae is a kind of arthropod family", "pln": ["(: cnet_isa_1b6b1d03c3 (IsA satyridae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sauce is a kind of condiment", "pln": ["(: cnet_isa_3210b24a46 (IsA sauce condiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sauce espagnole is a kind of sauce", "pln": ["(: cnet_isa_2630347593 (IsA sauce_espagnole sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sauce louis is a kind of dressing", "pln": ["(: cnet_isa_0301726a57 (IsA sauce_louis dressing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saucepan is a kind of pan", "pln": ["(: cnet_isa_6c5e440989 (IsA saucepan pan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saucepot is a kind of pot", "pln": ["(: cnet_isa_b486073f20 (IsA saucepot pot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saucer is a kind of flatware", "pln": ["(: cnet_isa_52fd48776e (IsA saucer flatware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saucer magnolia is a kind of magnolia", "pln": ["(: cnet_isa_f1d757b23e (IsA saucer_magnolia magnolia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sauda is a kind of in norway", "pln": ["(: cnet_isa_9e27188ab8 (IsA sauda in_norway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saudi arabian is a kind of arabian", "pln": ["(: cnet_isa_e67562f647 (IsA saudi_arabian arabian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saudi arabian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_213d0feb7a (IsA saudi_arabian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saudi arabian riyal is a kind of saudi arabian monetary unit", "pln": ["(: cnet_isa_640359d1c2 (IsA saudi_arabian_riyal saudi_arabian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sauerbraten is a kind of dish", "pln": ["(: cnet_isa_a5c6dc66a3 (IsA sauerbraten dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sauerkraut is a kind of dish", "pln": ["(: cnet_isa_e7a43b255e (IsA sauerkraut dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sauna is a kind of steam bath", "pln": ["(: cnet_isa_25dac2ac7a (IsA sauna steam_bath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saunter is a kind of gait", "pln": ["(: cnet_isa_166ea29d6e (IsA saunter gait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "saunterer is a kind of pedestrian", "pln": ["(: cnet_isa_fd0223cf2a (IsA saunterer pedestrian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sauria is a kind of animal order", "pln": ["(: cnet_isa_7dbb7d398d (IsA sauria animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saurian is a kind of diapsid", "pln": ["(: cnet_isa_2c6a6248f1 (IsA saurian diapsid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saurischia is a kind of animal order", "pln": ["(: cnet_isa_91e55d5230 (IsA saurischia animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saurischian is a kind of dinosaur", "pln": ["(: cnet_isa_2236e631b5 (IsA saurischian dinosaur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sauromalus is a kind of reptile genus", "pln": ["(: cnet_isa_58ae190128 (IsA sauromalus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sauropod is a kind of saurischian", "pln": ["(: cnet_isa_1f6f29a9a6 (IsA sauropod saurischian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sauropoda is a kind of animal order", "pln": ["(: cnet_isa_cbd3afec3b (IsA sauropoda animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sauropodomorpha is a kind of animal order", "pln": ["(: cnet_isa_42bd49bbe1 (IsA sauropodomorpha animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sauropterygia is a kind of animal order", "pln": ["(: cnet_isa_36ae15bd30 (IsA sauropterygia animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saurosuchus is a kind of reptile genus", "pln": ["(: cnet_isa_4c949c13a9 (IsA saurosuchus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saururaceae is a kind of dicot family", "pln": ["(: cnet_isa_27dfb3b5c0 (IsA saururaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saururus is a kind of dicot genus", "pln": ["(: cnet_isa_f2d1e17f30 (IsA saururus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saury is a kind of teleost fish", "pln": ["(: cnet_isa_9bb5492add (IsA saury teleost_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sausage is a kind of meat", "pln": ["(: cnet_isa_1e7ac77385 (IsA sausage meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sausage curl is a kind of lock", "pln": ["(: cnet_isa_957d9aae27 (IsA sausage_curl lock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sausage dog is a kind of dachshund", "pln": ["(: cnet_isa_8f62e226f0 (IsA sausage_dog dachshund) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sausage meat is a kind of meat", "pln": ["(: cnet_isa_1cc2a6edad (IsA sausage_meat meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sausage pizza is a kind of pizza", "pln": ["(: cnet_isa_aeb0cb67b3 (IsA sausage_pizza pizza) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sausage roll is a kind of pastry", "pln": ["(: cnet_isa_7e93c85b7a (IsA sausage_roll pastry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saussurea is a kind of asterid dicot genus", "pln": ["(: cnet_isa_28b5c331a1 (IsA saussurea asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saute is a kind of dish", "pln": ["(: cnet_isa_11a80bc2cf (IsA saute dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sauterne is a kind of white wine", "pln": ["(: cnet_isa_330a3cdd75 (IsA sauterne white_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sauvignon blanc is a kind of white wine", "pln": ["(: cnet_isa_fc255fe2b5 (IsA sauvignon_blanc white_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sauvignon blanc is a kind of vinifera", "pln": ["(: cnet_isa_4a54913960 (IsA sauvignon_blanc vinifera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sauvignon grape is a kind of vinifera", "pln": ["(: cnet_isa_d36decdcc7 (IsA sauvignon_grape vinifera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "savage is a kind of primitive", "pln": ["(: cnet_isa_206e21d64f (IsA savage primitive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "savageness is a kind of ferocity", "pln": ["(: cnet_isa_16b0df915c (IsA savageness ferocity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "savanna is a kind of grassland", "pln": ["(: cnet_isa_c7549928a3 (IsA savanna grassland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "savara is a kind of south central dravidian", "pln": ["(: cnet_isa_011a6b3f62 (IsA savara south_central_dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "savara is a kind of dravidian", "pln": ["(: cnet_isa_c48a715579 (IsA savara dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "savarin is a kind of cake", "pln": ["(: cnet_isa_201704b445 (IsA savarin cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "save is a kind of prevention", "pln": ["(: cnet_isa_f0e9f32b2f (IsA save prevention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "save all is a kind of net", "pln": ["(: cnet_isa_416fc4e770 (IsA save_all net) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "save all is a kind of receptacle", "pln": ["(: cnet_isa_7c3a1731cf (IsA save_all receptacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "save all is a kind of sail", "pln": ["(: cnet_isa_a1bb378679 (IsA save_all sail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saveloy is a kind of pork sausage", "pln": ["(: cnet_isa_0312c3af3c (IsA saveloy pork_sausage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saver is a kind of owner", "pln": ["(: cnet_isa_0d78d92171 (IsA saver owner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saving grace is a kind of characteristic", "pln": ["(: cnet_isa_a3c71d0570 (IsA saving_grace characteristic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saving money is a kind of good idea", "pln": ["(: cnet_isa_c121810ae8 (IsA saving_money good_idea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saving is a kind of fund", "pln": ["(: cnet_isa_bbdc957c92 (IsA saving fund) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saving account is a kind of bank account", "pln": ["(: cnet_isa_54c33953d5 (IsA saving_account bank_account) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saving account trust is a kind of trust", "pln": ["(: cnet_isa_b335b3f6a4 (IsA saving_account_trust trust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saving and loan is a kind of thrift institution", "pln": ["(: cnet_isa_bc9db5fb17 (IsA saving_and_loan thrift_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saving bank is a kind of container", "pln": ["(: cnet_isa_14ec6effb1 (IsA saving_bank container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saving bank is a kind of thrift institution", "pln": ["(: cnet_isa_27b776f0ba (IsA saving_bank thrift_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saving bond is a kind of government bond", "pln": ["(: cnet_isa_1689e7ed07 (IsA saving_bond government_bond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "savior is a kind of benefactor", "pln": ["(: cnet_isa_1d83acce96 (IsA savior benefactor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "savoir faire is a kind of tact", "pln": ["(: cnet_isa_e426420163 (IsA savoir_faire tact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "savory is a kind of dainty", "pln": ["(: cnet_isa_a15cf98fc8 (IsA savory dainty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "savory is a kind of herb", "pln": ["(: cnet_isa_45e09c0e53 (IsA savory herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "savoy cabbage is a kind of head cabbage", "pln": ["(: cnet_isa_6cc9ecb602 (IsA savoy_cabbage head_cabbage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "savoyard is a kind of french person", "pln": ["(: cnet_isa_75e048ed1b (IsA savoyard french_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "savoyard is a kind of performer", "pln": ["(: cnet_isa_84f3c0c3d0 (IsA savoyard performer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "saw is a kind of tool", "pln": ["(: cnet_isa_ab7e01f2b8 (IsA saw tool) (STV 1.0 0.9815))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saw is a kind of hand tool", "pln": ["(: cnet_isa_28e0f0c994 (IsA saw hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "saw log is a kind of log", "pln": ["(: cnet_isa_4c370fb932 (IsA saw_log log) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saw palmetto is a kind of fan palm", "pln": ["(: cnet_isa_468e8777d5 (IsA saw_palmetto fan_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saw set is a kind of tool", "pln": ["(: cnet_isa_03af200618 (IsA saw_set tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sawan is a kind of hindu calendar month", "pln": ["(: cnet_isa_5c92f04918 (IsA sawan hindu_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sawdust is a kind of wood", "pln": ["(: cnet_isa_f477d01612 (IsA sawdust wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sawdust doll is a kind of doll", "pln": ["(: cnet_isa_1831476f53 (IsA sawdust_doll doll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sawdust saloon is a kind of barroom", "pln": ["(: cnet_isa_43d77ef366 (IsA sawdust_saloon barroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sawed off shotgun is a kind of shotgun", "pln": ["(: cnet_isa_d770f0f1e8 (IsA sawed_off_shotgun shotgun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sawfish is a kind of ray", "pln": ["(: cnet_isa_a9324317b0 (IsA sawfish ray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sawfly is a kind of hymenopterous insect", "pln": ["(: cnet_isa_5d49c8aed9 (IsA sawfly hymenopterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sawhorse is a kind of framework", "pln": ["(: cnet_isa_5b52d6a7b7 (IsA sawhorse framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sawm is a kind of abstinence", "pln": ["(: cnet_isa_2db55eb297 (IsA sawm abstinence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sawm is a kind of pillar of islam", "pln": ["(: cnet_isa_da9bde0b33 (IsA sawm pillar_of_islam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sawmill is a kind of power saw", "pln": ["(: cnet_isa_def39ac8bc (IsA sawmill power_saw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sawpit is a kind of pit", "pln": ["(: cnet_isa_c222b5cd67 (IsA sawpit pit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sawtooth is a kind of serration", "pln": ["(: cnet_isa_93d32594fc (IsA sawtooth serration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sawwort is a kind of herb", "pln": ["(: cnet_isa_90fb203614 (IsA sawwort herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sawyer is a kind of long horned beetle", "pln": ["(: cnet_isa_7589d90b1a (IsA sawyer long_horned_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sawyer is a kind of laborer", "pln": ["(: cnet_isa_b9f153b362 (IsA sawyer laborer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sax is a kind of single reed instrument", "pln": ["(: cnet_isa_86b57c0dfa (IsA sax single_reed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saxaphone is a kind of musical instrument", "pln": ["(: cnet_isa_851f6d2901 (IsA saxaphone musical_instrument) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saxe coburg gotha is a kind of dynasty", "pln": ["(: cnet_isa_59d780ae8a (IsA saxe_coburg_gotha dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saxe coburg gotha is a kind of royalty", "pln": ["(: cnet_isa_11af236c5c (IsA saxe_coburg_gotha royalty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saxe gothea is a kind of gymnosperm genus", "pln": ["(: cnet_isa_2800e189b1 (IsA saxe_gothea gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saxhorn is a kind of brass", "pln": ["(: cnet_isa_dffd4b67cf (IsA saxhorn brass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "saxicola is a kind of bird genus", "pln": ["(: cnet_isa_d4b2bd3f67 (IsA saxicola bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saxifraga is a kind of rosid dicot genus", "pln": ["(: cnet_isa_b0621c051f (IsA saxifraga rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saxifragaceae is a kind of rosid dicot family", "pln": ["(: cnet_isa_8d5b9eb72d (IsA saxifragaceae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saxifrage is a kind of herb", "pln": ["(: cnet_isa_680138f58e (IsA saxifrage herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saxitoxin is a kind of neurotoxin", "pln": ["(: cnet_isa_cce13c4a23 (IsA saxitoxin neurotoxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "saxon is a kind of european", "pln": ["(: cnet_isa_09aaed49fc (IsA saxon european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saxophone is a kind of musical instrument", "pln": ["(: cnet_isa_42341b015c (IsA saxophone musical_instrument) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saxophonist is a kind of musician", "pln": ["(: cnet_isa_48f409972c (IsA saxophonist musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "say is a kind of opportunity", "pln": ["(: cnet_isa_ab078e6d94 (IsA say opportunity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "say so is a kind of affirmation", "pln": ["(: cnet_isa_516f4e4380 (IsA say_so affirmation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sayeret matkal is a kind of commando", "pln": ["(: cnet_isa_9851b20ab5 (IsA sayeret_matkal commando) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "saying is a kind of speech", "pln": ["(: cnet_isa_1bb0a9af07 (IsA saying speech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sayornis is a kind of bird genus", "pln": ["(: cnet_isa_78c97dd368 (IsA sayornis bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sazerac is a kind of cocktail", "pln": ["(: cnet_isa_2dafd20cbc (IsA sazerac cocktail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scab is a kind of solid body substance", "pln": ["(: cnet_isa_b4ece56b54 (IsA scab solid_body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scab is a kind of worker", "pln": ["(: cnet_isa_5d210a8da6 (IsA scab worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scabbard is a kind of sheath", "pln": ["(: cnet_isa_680daf5851 (IsA scabbard sheath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scabicide is a kind of pesticide", "pln": ["(: cnet_isa_d1c87afb72 (IsA scabicide pesticide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scaby is a kind of infection", "pln": ["(: cnet_isa_378cf57aa6 (IsA scaby infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scabious is a kind of flower", "pln": ["(: cnet_isa_8ea73adfde (IsA scabious flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scabland is a kind of land", "pln": ["(: cnet_isa_654a543ca6 (IsA scabland land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scad is a kind of carangid fish", "pln": ["(: cnet_isa_c23dee13d3 (IsA scad carangid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scaffold is a kind of arrangement", "pln": ["(: cnet_isa_142f054f5d (IsA scaffold arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scaffold is a kind of platform", "pln": ["(: cnet_isa_6359150219 (IsA scaffold platform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scaffolding is a kind of system", "pln": ["(: cnet_isa_8b070c759c (IsA scaffolding system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scalability is a kind of quantifiability", "pln": ["(: cnet_isa_5d10403084 (IsA scalability quantifiability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scalage is a kind of estimate", "pln": ["(: cnet_isa_b1009fc736 (IsA scalage estimate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scalage is a kind of scaling", "pln": ["(: cnet_isa_fe13d9187b (IsA scalage scaling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scalar is a kind of variable", "pln": ["(: cnet_isa_bc8b31cc8f (IsA scalar variable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scalar field is a kind of field", "pln": ["(: cnet_isa_b83539a955 (IsA scalar_field field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scalar matrix is a kind of diagonal matrix", "pln": ["(: cnet_isa_735aa1382a (IsA scalar_matrix diagonal_matrix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scalar product is a kind of real number", "pln": ["(: cnet_isa_cccd9b1814 (IsA scalar_product real_number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scalawag is a kind of bad person", "pln": ["(: cnet_isa_9ee730b6bb (IsA scalawag bad_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scald is a kind of burn", "pln": ["(: cnet_isa_c797136b1c (IsA scald burn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scalded milk is a kind of milk", "pln": ["(: cnet_isa_08c928182d (IsA scalded_milk milk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scale is a kind of covering", "pln": ["(: cnet_isa_397bb6b2cf (IsA scale covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scale is a kind of indicator", "pln": ["(: cnet_isa_d19ebefd43 (IsA scale indicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scale is a kind of measuring instrument", "pln": ["(: cnet_isa_74b3eaf6c4 (IsA scale measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scale is a kind of magnitude relation", "pln": ["(: cnet_isa_2f1d554b9d (IsA scale magnitude_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scale is a kind of proportion", "pln": ["(: cnet_isa_93f98c4447 (IsA scale proportion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scale is a kind of standard", "pln": ["(: cnet_isa_bc410bf6b8 (IsA scale standard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scale is a kind of musical notation", "pln": ["(: cnet_isa_65c343d63e (IsA scale musical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scale is a kind of bit", "pln": ["(: cnet_isa_9edac5cae3 (IsA scale bit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scale is a kind of leaf", "pln": ["(: cnet_isa_72ea229477 (IsA scale leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scale factor is a kind of multiplier", "pln": ["(: cnet_isa_91ba3d7b18 (IsA scale_factor multiplier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scale fern is a kind of fern", "pln": ["(: cnet_isa_fca206c4a5 (IsA scale_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scale insect is a kind of coccid insect", "pln": ["(: cnet_isa_5925637ce9 (IsA scale_insect coccid_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scale of c major is a kind of major scale", "pln": ["(: cnet_isa_a1bbb81e5a (IsA scale_of_c_major major_scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scale value is a kind of value", "pln": ["(: cnet_isa_e97fcea83f (IsA scale_value value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scale wax is a kind of wax", "pln": ["(: cnet_isa_360a3a10ad (IsA scale_wax wax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scalene triangle is a kind of triangle", "pln": ["(: cnet_isa_3de715cab3 (IsA scalene_triangle triangle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scalenus is a kind of skeletal muscle", "pln": ["(: cnet_isa_85898a405a (IsA scalenus skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scalenus syndrome is a kind of syndrome", "pln": ["(: cnet_isa_b52127e508 (IsA scalenus_syndrome syndrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scaler is a kind of pulse counter", "pln": ["(: cnet_isa_43a4cc645a (IsA scaler pulse_counter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scaliness is a kind of roughness", "pln": ["(: cnet_isa_3850a2945d (IsA scaliness roughness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scaling is a kind of climb", "pln": ["(: cnet_isa_d540a6b4d5 (IsA scaling climb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scaling is a kind of measurement", "pln": ["(: cnet_isa_5749aba4ec (IsA scaling measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scaling is a kind of order", "pln": ["(: cnet_isa_217d12cfb3 (IsA scaling order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scaling ladder is a kind of ladder", "pln": ["(: cnet_isa_94947b3bba (IsA scaling_ladder ladder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scallop is a kind of bivalve", "pln": ["(: cnet_isa_dc4e1e4b29 (IsA scallop bivalve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scallop is a kind of shellfish", "pln": ["(: cnet_isa_1fee19ae18 (IsA scallop shellfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scallop is a kind of curve", "pln": ["(: cnet_isa_4ba443dcbf (IsA scallop curve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scallop shell is a kind of shell", "pln": ["(: cnet_isa_cd0bf0127d (IsA scallop_shell shell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scallopine is a kind of dish", "pln": ["(: cnet_isa_736782f835 (IsA scallopine dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scalp is a kind of skin", "pln": ["(: cnet_isa_e2cd1be5fa (IsA scalp skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scalp lock is a kind of hairdo", "pln": ["(: cnet_isa_a31b0867e9 (IsA scalp_lock hairdo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scalpel is a kind of surgical knife", "pln": ["(: cnet_isa_d1882f2f50 (IsA scalpel surgical_knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scalper is a kind of speculator", "pln": ["(: cnet_isa_06c96a152b (IsA scalper speculator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scaly lentinus is a kind of fungus", "pln": ["(: cnet_isa_016bfa3efa (IsA scaly_lentinus fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scam is a kind of swindle", "pln": ["(: cnet_isa_d42d23559b (IsA scam swindle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scammony is a kind of convolvulus", "pln": ["(: cnet_isa_776ce2f019 (IsA scammony convolvulus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scammony is a kind of morning glory", "pln": ["(: cnet_isa_33d7fe89f2 (IsA scammony morning_glory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scammony is a kind of natural resin", "pln": ["(: cnet_isa_76ab139064 (IsA scammony natural_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scamper is a kind of haste", "pln": ["(: cnet_isa_d3322b701b (IsA scamper haste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scampi is a kind of dish", "pln": ["(: cnet_isa_b5a2e317cd (IsA scampi dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scan is a kind of examination", "pln": ["(: cnet_isa_a3d9454813 (IsA scan examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scan is a kind of ikon", "pln": ["(: cnet_isa_54756de6aa (IsA scan ikon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scan ultrasonography is a kind of sonography", "pln": ["(: cnet_isa_2b301f60b0 (IsA scan_ultrasonography sonography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scandal is a kind of gossip", "pln": ["(: cnet_isa_36a328cc2e (IsA scandal gossip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scandal is a kind of trouble", "pln": ["(: cnet_isa_1d84362bb5 (IsA scandal trouble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scandalization is a kind of insult", "pln": ["(: cnet_isa_be8eede0a1 (IsA scandalization insult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scandalization is a kind of condition", "pln": ["(: cnet_isa_3f35435c69 (IsA scandalization condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scandalmonger is a kind of gossip", "pln": ["(: cnet_isa_7e387f5964 (IsA scandalmonger gossip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scandalmongering is a kind of gossiping", "pln": ["(: cnet_isa_1c553657fb (IsA scandalmongering gossiping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scandalousness is a kind of shamefulness", "pln": ["(: cnet_isa_c30e56f71a (IsA scandalousness shamefulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scandentia is a kind of animal order", "pln": ["(: cnet_isa_4ea42a7955 (IsA scandentia animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scandinavian is a kind of germanic", "pln": ["(: cnet_isa_f3bbeb398c (IsA scandinavian germanic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scandinavian country is a kind of european country", "pln": ["(: cnet_isa_f680a3d5bc (IsA scandinavian_country european_country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scandinavian lox is a kind of lox", "pln": ["(: cnet_isa_c87a53cf1d (IsA scandinavian_lox lox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scandium is a kind of metallic element", "pln": ["(: cnet_isa_7d1e724cd5 (IsA scandium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scanner is a kind of data input device", "pln": ["(: cnet_isa_8f6139aede (IsA scanner data_input_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scanner is a kind of detector", "pln": ["(: cnet_isa_aa76661084 (IsA scanner detector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scanner is a kind of dish", "pln": ["(: cnet_isa_1cda45ab47 (IsA scanner dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scanner is a kind of electronic device", "pln": ["(: cnet_isa_ee9eacc33a (IsA scanner electronic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scanner is a kind of reviewer", "pln": ["(: cnet_isa_4a3396b746 (IsA scanner reviewer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scanning is a kind of reproduction", "pln": ["(: cnet_isa_ce2733f98e (IsA scanning reproduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scanning is a kind of photography", "pln": ["(: cnet_isa_897a1d0429 (IsA scanning photography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scansion is a kind of meter", "pln": ["(: cnet_isa_fb8c5442b9 (IsA scansion meter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scantling is a kind of upright", "pln": ["(: cnet_isa_d86af60cfe (IsA scantling upright) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scape is a kind of stalk", "pln": ["(: cnet_isa_94117f650d (IsA scape stalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scapegoat is a kind of victim", "pln": ["(: cnet_isa_5de9e391c0 (IsA scapegoat victim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scapegrace is a kind of reprobate", "pln": ["(: cnet_isa_aa13deac48 (IsA scapegrace reprobate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scaphiopus is a kind of amphibian genus", "pln": ["(: cnet_isa_fa0d8db000 (IsA scaphiopus amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scaphocephaly is a kind of birth defect", "pln": ["(: cnet_isa_a55c9b8869 (IsA scaphocephaly birth_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scaphocephaly is a kind of deformity", "pln": ["(: cnet_isa_442daadc71 (IsA scaphocephaly deformity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scaphoid bone is a kind of carpal bone", "pln": ["(: cnet_isa_c1e21a831c (IsA scaphoid_bone carpal_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scaphopod is a kind of mollusk", "pln": ["(: cnet_isa_0b298972f5 (IsA scaphopod mollusk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scaphopoda is a kind of class", "pln": ["(: cnet_isa_dcbc15a632 (IsA scaphopoda class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scaphosepalum is a kind of monocot genus", "pln": ["(: cnet_isa_1dcacf980e (IsA scaphosepalum monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scapula is a kind of bone", "pln": ["(: cnet_isa_8b7093f4ef (IsA scapula bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scapular is a kind of feather", "pln": ["(: cnet_isa_6f52be937b (IsA scapular feather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scapular is a kind of garment", "pln": ["(: cnet_isa_5f3ec22ee8 (IsA scapular garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scar is a kind of symptom", "pln": ["(: cnet_isa_e1e67c5f30 (IsA scar symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scar tissue is a kind of connective tissue", "pln": ["(: cnet_isa_f39c8786f3 (IsA scar_tissue connective_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scarab is a kind of dung beetle", "pln": ["(: cnet_isa_fa441e7c5e (IsA scarab dung_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scarabaeid beetle is a kind of lamellicorn beetle", "pln": ["(: cnet_isa_699811835d (IsA scarabaeid_beetle lamellicorn_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scarabaeidae is a kind of arthropod family", "pln": ["(: cnet_isa_67da3dace9 (IsA scarabaeidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scarcity is a kind of insufficiency", "pln": ["(: cnet_isa_8872d613d7 (IsA scarcity insufficiency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scardinius is a kind of fish genus", "pln": ["(: cnet_isa_fbe4e32386 (IsA scardinius fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scare is a kind of fear", "pln": ["(: cnet_isa_b0764070a7 (IsA scare fear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scare quote is a kind of quotation mark", "pln": ["(: cnet_isa_59ae27cfdb (IsA scare_quote quotation_mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scarecrow is a kind of effigy", "pln": ["(: cnet_isa_c159307893 (IsA scarecrow effigy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scaremonger is a kind of alarmist", "pln": ["(: cnet_isa_4177b8bb65 (IsA scaremonger alarmist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scarf is a kind of garment", "pln": ["(: cnet_isa_b906e68ef3 (IsA scarf garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scarf joint is a kind of joint", "pln": ["(: cnet_isa_3d4686d33d (IsA scarf_joint joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scaridae is a kind of fish family", "pln": ["(: cnet_isa_a9f80c918c (IsA scaridae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scarlet is a kind of red", "pln": ["(: cnet_isa_00a6356922 (IsA scarlet red) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scarlet bugler is a kind of wildflower", "pln": ["(: cnet_isa_070868fc22 (IsA scarlet_bugler wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scarlet bush is a kind of hamelia", "pln": ["(: cnet_isa_5f6e3e4a8b (IsA scarlet_bush hamelia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scarlet clematis is a kind of clematis", "pln": ["(: cnet_isa_51f15c6645 (IsA scarlet_clematis clematis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scarlet fever is a kind of contagious disease", "pln": ["(: cnet_isa_5801d9659f (IsA scarlet_fever contagious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scarlet fritillary is a kind of fritillary", "pln": ["(: cnet_isa_2bf110c4c5 (IsA scarlet_fritillary fritillary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scarlet haw is a kind of hawthorn", "pln": ["(: cnet_isa_7f84d32b41 (IsA scarlet_haw hawthorn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scarlet letter is a kind of emblem", "pln": ["(: cnet_isa_8d2966f420 (IsA scarlet_letter emblem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scarlet lychnis is a kind of lychnis", "pln": ["(: cnet_isa_dbfd5e536c (IsA scarlet_lychnis lychnis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scarlet musk flower is a kind of flower", "pln": ["(: cnet_isa_beb3950bc1 (IsA scarlet_musk_flower flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scarlet oak is a kind of oak", "pln": ["(: cnet_isa_aeec0fef3a (IsA scarlet_oak oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scarlet pimpernel is a kind of pimpernel", "pln": ["(: cnet_isa_306f973761 (IsA scarlet_pimpernel pimpernel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scarlet plume is a kind of spurge", "pln": ["(: cnet_isa_08ce99dedc (IsA scarlet_plume spurge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scarlet runner is a kind of green bean", "pln": ["(: cnet_isa_7edf298cb6 (IsA scarlet_runner green_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scarlet runner is a kind of coral pea", "pln": ["(: cnet_isa_ed1933ad05 (IsA scarlet_runner coral_pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scarlet runner is a kind of pole bean", "pln": ["(: cnet_isa_c5dbb2f08c (IsA scarlet_runner pole_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scarlet tanager is a kind of tanager", "pln": ["(: cnet_isa_d29b4cba46 (IsA scarlet_tanager tanager) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scarlet wisteria tree is a kind of tree", "pln": ["(: cnet_isa_3995c8a5cf (IsA scarlet_wisteria_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scartella is a kind of fish genus", "pln": ["(: cnet_isa_9f0086e878 (IsA scartella fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scat is a kind of jazz", "pln": ["(: cnet_isa_dd38ffc2ce (IsA scat jazz) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scat is a kind of singing", "pln": ["(: cnet_isa_66ac028273 (IsA scat singing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scatology is a kind of obscenity", "pln": ["(: cnet_isa_558ac0fda5 (IsA scatology obscenity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scatology is a kind of chemical analysis", "pln": ["(: cnet_isa_6c66e932bd (IsA scatology chemical_analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scatophagy is a kind of eating", "pln": ["(: cnet_isa_d344902f84 (IsA scatophagy eating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scatter is a kind of spread", "pln": ["(: cnet_isa_97e9e4edfa (IsA scatter spread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scatter is a kind of distribution", "pln": ["(: cnet_isa_49d1bb884d (IsA scatter distribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scatter pin is a kind of pin", "pln": ["(: cnet_isa_c222546b86 (IsA scatter_pin pin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scatter rug is a kind of rug", "pln": ["(: cnet_isa_1700814290 (IsA scatter_rug rug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scatterbrain is a kind of simpleton", "pln": ["(: cnet_isa_5432cfda97 (IsA scatterbrain simpleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scattering is a kind of shower", "pln": ["(: cnet_isa_adaf42b7ea (IsA scattering shower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scattering is a kind of natural process", "pln": ["(: cnet_isa_e2a8861ba0 (IsA scattering natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scattering is a kind of small indefinite quantity", "pln": ["(: cnet_isa_3b47085fc3 (IsA scattering small_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scaup is a kind of duck", "pln": ["(: cnet_isa_36fc0ffcd0 (IsA scaup duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scauper is a kind of graver", "pln": ["(: cnet_isa_694835c2c9 (IsA scauper graver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scavenger is a kind of animal", "pln": ["(: cnet_isa_18a3ef5991 (IsA scavenger animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scavenger is a kind of chemical agent", "pln": ["(: cnet_isa_34412b686d (IsA scavenger chemical_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sceliphron is a kind of arthropod genus", "pln": ["(: cnet_isa_cf458b79b3 (IsA sceliphron arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sceloglaux is a kind of bird genus", "pln": ["(: cnet_isa_2f6bcfc046 (IsA sceloglaux bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sceloporus is a kind of reptile genus", "pln": ["(: cnet_isa_4ea86564ac (IsA sceloporus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scenario is a kind of premise", "pln": ["(: cnet_isa_4de58a9383 (IsA scenario premise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scenario is a kind of script", "pln": ["(: cnet_isa_2ba3ebba7c (IsA scenario script) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scenario is a kind of setting", "pln": ["(: cnet_isa_6be98eee59 (IsA scenario setting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scenarist is a kind of writer", "pln": ["(: cnet_isa_ecb6997160 (IsA scenarist writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scene is a kind of graphic art", "pln": ["(: cnet_isa_101d4cca8b (IsA scene graphic_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scene is a kind of dramatic composition", "pln": ["(: cnet_isa_9fa84de7fc (IsA scene dramatic_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scene is a kind of picture", "pln": ["(: cnet_isa_7d20e2b7dd (IsA scene picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scene is a kind of incident", "pln": ["(: cnet_isa_7eeb7f1149 (IsA scene incident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scene is a kind of area", "pln": ["(: cnet_isa_06262bdf4e (IsA scene area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scene painter is a kind of painter", "pln": ["(: cnet_isa_12febca010 (IsA scene_painter painter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scene stealer is a kind of actor", "pln": ["(: cnet_isa_664e837b56 (IsA scene_stealer actor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scenery is a kind of stage set", "pln": ["(: cnet_isa_9d5eeb22b1 (IsA scenery stage_set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scenery is a kind of vicinity", "pln": ["(: cnet_isa_2db64601dc (IsA scenery vicinity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sceneshifter is a kind of stagehand", "pln": ["(: cnet_isa_d77f8348ac (IsA sceneshifter stagehand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scenic artist is a kind of painter", "pln": ["(: cnet_isa_c15ae57764 (IsA scenic_artist painter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scenic railway is a kind of railway", "pln": ["(: cnet_isa_6dfaf1cf05 (IsA scenic_railway railway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scent is a kind of smell", "pln": ["(: cnet_isa_2f1498db20 (IsA scent smell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scented fern is a kind of fern", "pln": ["(: cnet_isa_bd2e9e1ce8 (IsA scented_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scentless camomile is a kind of herb", "pln": ["(: cnet_isa_bfb952c817 (IsA scentless_camomile herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scepter is a kind of staff", "pln": ["(: cnet_isa_eb958b982e (IsA scepter staff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scepter is a kind of reign", "pln": ["(: cnet_isa_b823045ea0 (IsA scepter reign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schadenfreude is a kind of delight", "pln": ["(: cnet_isa_a62ac9d403 (IsA schadenfreude delight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schaffneria is a kind of fern genus", "pln": ["(: cnet_isa_719fb5c335 (IsA schaffneria fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schaffneria nigripe is a kind of fern", "pln": ["(: cnet_isa_f2fe0ab3eb (IsA schaffneria_nigripe fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schedule is a kind of list", "pln": ["(: cnet_isa_3c2b198693 (IsA schedule list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schedule feeding is a kind of infant feeding", "pln": ["(: cnet_isa_cf69b25e9c (IsA schedule_feeding infant_feeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scheduled fire is a kind of fire", "pln": ["(: cnet_isa_9d0e2b8918 (IsA scheduled_fire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scheduled maintenance is a kind of care", "pln": ["(: cnet_isa_6238881a00 (IsA scheduled_maintenance care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scheduler is a kind of hardware", "pln": ["(: cnet_isa_649da6025b (IsA scheduler hardware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scheduling is a kind of planning", "pln": ["(: cnet_isa_19dc96e0ce (IsA scheduling planning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scheelite is a kind of mineral", "pln": ["(: cnet_isa_5a12020516 (IsA scheelite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "schefflera is a kind of rosid dicot genus", "pln": ["(: cnet_isa_c05cc5cce4 (IsA schefflera rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schema is a kind of representation", "pln": ["(: cnet_isa_458c45fc49 (IsA schema representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schematic is a kind of diagram", "pln": ["(: cnet_isa_8c07719476 (IsA schematic diagram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schematization is a kind of reduction", "pln": ["(: cnet_isa_7591b51c9b (IsA schematization reduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schematization is a kind of representation", "pln": ["(: cnet_isa_51a6637deb (IsA schematization representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scheme is a kind of functional programming language", "pln": ["(: cnet_isa_d813b6c9d0 (IsA scheme functional_programming_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scheme is a kind of programming language", "pln": ["(: cnet_isa_fff749e2d9 (IsA scheme programming_language) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scheme is a kind of plan of action", "pln": ["(: cnet_isa_91b0e0fb51 (IsA scheme plan_of_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schemer is a kind of planner", "pln": ["(: cnet_isa_7d30be0a01 (IsA schemer planner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schemozzle is a kind of confusion", "pln": ["(: cnet_isa_bf52eb507a (IsA schemozzle confusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scherzo is a kind of movement", "pln": ["(: cnet_isa_fbe4ddec38 (IsA scherzo movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scheuchzeriaceae is a kind of monocot family", "pln": ["(: cnet_isa_7c66571fb8 (IsA scheuchzeriaceae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schick test is a kind of skin test", "pln": ["(: cnet_isa_b20b516ee5 (IsA schick_test skin_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schilling is a kind of austrian monetary unit", "pln": ["(: cnet_isa_c915767ea6 (IsA schilling austrian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schinus is a kind of dicot genus", "pln": ["(: cnet_isa_7b2351b32b (IsA schinus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schipperke is a kind of watchdog", "pln": ["(: cnet_isa_04ee6d099e (IsA schipperke watchdog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schism is a kind of division", "pln": ["(: cnet_isa_210e2a7746 (IsA schism division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schism is a kind of rupture", "pln": ["(: cnet_isa_ca4b2ae60c (IsA schism rupture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schist is a kind of metamorphic rock", "pln": ["(: cnet_isa_44fdd781be (IsA schist metamorphic_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schistosoma is a kind of worm genus", "pln": ["(: cnet_isa_19e15b634a (IsA schistosoma worm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schistosomatidae is a kind of worm family", "pln": ["(: cnet_isa_9e118105c0 (IsA schistosomatidae worm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schistosome is a kind of fluke", "pln": ["(: cnet_isa_8298b6c526 (IsA schistosome fluke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schistosome dermatitis is a kind of dermatitis", "pln": ["(: cnet_isa_a8edb9c11d (IsA schistosome_dermatitis dermatitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schistosomiasis is a kind of infection", "pln": ["(: cnet_isa_746229a605 (IsA schistosomiasis infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schistosomiasis is a kind of infestation", "pln": ["(: cnet_isa_90a568041d (IsA schistosomiasis infestation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schizachyrium is a kind of monocot genus", "pln": ["(: cnet_isa_48630f6209 (IsA schizachyrium monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schizaea is a kind of fern genus", "pln": ["(: cnet_isa_0ece478171 (IsA schizaea fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schizaeaceae is a kind of fern family", "pln": ["(: cnet_isa_28d1aaa52c (IsA schizaeaceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schizocarp is a kind of fruit", "pln": ["(: cnet_isa_a62f0be186 (IsA schizocarp fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schizogony is a kind of fission", "pln": ["(: cnet_isa_e7f1b2b3f8 (IsA schizogony fission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schizomycete is a kind of class", "pln": ["(: cnet_isa_77e7b27ebd (IsA schizomycete class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schizopetalon is a kind of flower", "pln": ["(: cnet_isa_3646e09f20 (IsA schizopetalon flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schizophragma is a kind of rosid dicot genus", "pln": ["(: cnet_isa_84c2bdb951 (IsA schizophragma rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schizophrenia is a kind of mental disorder", "pln": ["(: cnet_isa_957340abe5 (IsA schizophrenia mental_disorder) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schizophrenia is a kind of mental illness", "pln": ["(: cnet_isa_faae0f07d7 (IsA schizophrenia mental_illness) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schizophrenia is a kind of psychosis", "pln": ["(: cnet_isa_e3accb3310 (IsA schizophrenia psychosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schizophrenic is a kind of psychotic", "pln": ["(: cnet_isa_d39b0c075a (IsA schizophrenic psychotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "schizophyta is a kind of division", "pln": ["(: cnet_isa_6d6aded694 (IsA schizophyta division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schizopoda is a kind of animal order", "pln": ["(: cnet_isa_3bcba7e2c0 (IsA schizopoda animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schizosaccharomyce is a kind of fungus genus", "pln": ["(: cnet_isa_11297e0408 (IsA schizosaccharomyce fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schizosaccharomycetaceae is a kind of fungus family", "pln": ["(: cnet_isa_006d62f727 (IsA schizosaccharomycetaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "schizothymia is a kind of mental disorder", "pln": ["(: cnet_isa_23bf441f8c (IsA schizothymia mental_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schizotypal personality is a kind of personality disorder", "pln": ["(: cnet_isa_8bd01f43c9 (IsA schizotypal_personality personality_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schlemiel is a kind of simpleton", "pln": ["(: cnet_isa_b66170dbff (IsA schlemiel simpleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schlep is a kind of journey", "pln": ["(: cnet_isa_264efe2ec4 (IsA schlep journey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schlepper is a kind of simpleton", "pln": ["(: cnet_isa_95608784d1 (IsA schlepper simpleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schlimazel is a kind of unfortunate", "pln": ["(: cnet_isa_e94c1edab0 (IsA schlimazel unfortunate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schlock is a kind of merchandise", "pln": ["(: cnet_isa_97c4744865 (IsA schlock merchandise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schlockmeister is a kind of merchant", "pln": ["(: cnet_isa_ff1983cb92 (IsA schlockmeister merchant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schlumbergera is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_8945a70c87 (IsA schlumbergera caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schmaltz is a kind of mawkishness", "pln": ["(: cnet_isa_d16fb36694 (IsA schmaltz mawkishness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schmeer is a kind of batch", "pln": ["(: cnet_isa_95f78f63d5 (IsA schmeer batch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schmidt telescope is a kind of reflecting telescope", "pln": ["(: cnet_isa_d1e8c15a19 (IsA schmidt_telescope reflecting_telescope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schmuck is a kind of jerk", "pln": ["(: cnet_isa_a4177b4faf (IsA schmuck jerk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schnapp is a kind of liquor", "pln": ["(: cnet_isa_1a536f442f (IsA schnapp liquor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schnauzer is a kind of terrier", "pln": ["(: cnet_isa_684ddf203b (IsA schnauzer terrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schnitzel is a kind of dish", "pln": ["(: cnet_isa_9e229a6ea2 (IsA schnitzel dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schnook is a kind of simpleton", "pln": ["(: cnet_isa_0d93b1a4c5 (IsA schnook simpleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schnorrer is a kind of moocher", "pln": ["(: cnet_isa_baea705c26 (IsA schnorrer moocher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scholar is a kind of intellectual", "pln": ["(: cnet_isa_5aa7d1bc73 (IsA scholar intellectual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scholar is a kind of student", "pln": ["(: cnet_isa_a7c84103cf (IsA scholar student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scholarship is a kind of financial aid", "pln": ["(: cnet_isa_4fdeef9c71 (IsA scholarship financial_aid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scholarship is a kind of prize", "pln": ["(: cnet_isa_9f901c5039 (IsA scholarship prize) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scholastic is a kind of philosopher", "pln": ["(: cnet_isa_a11219f74d (IsA scholastic philosopher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scholasticism is a kind of traditionalism", "pln": ["(: cnet_isa_38518ea509 (IsA scholasticism traditionalism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scholasticism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_d447e0905e (IsA scholasticism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scholiast is a kind of scholar", "pln": ["(: cnet_isa_7907960223 (IsA scholiast scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scholium is a kind of marginalia", "pln": ["(: cnet_isa_9a2d4d9938 (IsA scholium marginalia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schomburgkia is a kind of monocot genus", "pln": ["(: cnet_isa_005248cbec (IsA schomburgkia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "school is a kind of building", "pln": ["(: cnet_isa_fa0d845ae6 (IsA school building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "school is a kind of place to learn", "pln": ["(: cnet_isa_cb0d184b6c (IsA school place_to_learn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "school is a kind of education", "pln": ["(: cnet_isa_8fdbfa370a (IsA school education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "school is a kind of animal group", "pln": ["(: cnet_isa_68e05891fd (IsA school animal_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "school is a kind of body", "pln": ["(: cnet_isa_e8a7e55230 (IsA school body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "school is a kind of educational institution", "pln": ["(: cnet_isa_6fd0f6f2e3 (IsA school educational_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "school is a kind of time period", "pln": ["(: cnet_isa_bd0e027b2a (IsA school time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "school assignment is a kind of assignment", "pln": ["(: cnet_isa_2267b99897 (IsA school_assignment assignment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "school bell is a kind of bell", "pln": ["(: cnet_isa_7f484cdab8 (IsA school_bell bell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "school board is a kind of board", "pln": ["(: cnet_isa_34538d3ac8 (IsA school_board board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "school bus is a kind of bus", "pln": ["(: cnet_isa_c33b7a2be4 (IsA school_bus bus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "school crossing is a kind of pedestrian crossing", "pln": ["(: cnet_isa_3232454224 (IsA school_crossing pedestrian_crossing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "school day is a kind of day", "pln": ["(: cnet_isa_da398b6c2d (IsA school_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "school district is a kind of administrative district", "pln": ["(: cnet_isa_9157630284 (IsA school_district administrative_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "school newspaper is a kind of newspaper", "pln": ["(: cnet_isa_153bf063d9 (IsA school_newspaper newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "school phobia is a kind of social phobia", "pln": ["(: cnet_isa_092d7ea42a (IsA school_phobia social_phobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "school ship is a kind of ship", "pln": ["(: cnet_isa_250429810c (IsA school_ship ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "school superintendent is a kind of overseer", "pln": ["(: cnet_isa_fa6becb9db (IsA school_superintendent overseer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "school system is a kind of establishment", "pln": ["(: cnet_isa_a8811df257 (IsA school_system establishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "school term is a kind of term", "pln": ["(: cnet_isa_8d34611aee (IsA school_term term) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "school year is a kind of year", "pln": ["(: cnet_isa_a81a9e528f (IsA school_year year) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schoolbag is a kind of bag", "pln": ["(: cnet_isa_a89cfc9271 (IsA schoolbag bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schoolboy is a kind of male child", "pln": ["(: cnet_isa_8b4cf85c46 (IsA schoolboy male_child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schoolboy is a kind of schoolchild", "pln": ["(: cnet_isa_919f000ce5 (IsA schoolboy schoolchild) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schoolchild is a kind of young person", "pln": ["(: cnet_isa_975d4e441c (IsA schoolchild young_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schoolday is a kind of time of life", "pln": ["(: cnet_isa_56b452d47d (IsA schoolday time_of_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schoolfriend is a kind of friend", "pln": ["(: cnet_isa_46a26ac86c (IsA schoolfriend friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schoolgirl is a kind of female child", "pln": ["(: cnet_isa_d435b03cf7 (IsA schoolgirl female_child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schooling is a kind of teaching", "pln": ["(: cnet_isa_7e7567fcaf (IsA schooling teaching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schooling is a kind of training", "pln": ["(: cnet_isa_40a6da2aa1 (IsA schooling training) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schoolmarm is a kind of schoolteacher", "pln": ["(: cnet_isa_a56348c980 (IsA schoolmarm schoolteacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schoolmaster is a kind of snapper", "pln": ["(: cnet_isa_52712dacb8 (IsA schoolmaster snapper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schoolmaster is a kind of educator", "pln": ["(: cnet_isa_ec3ebc630c (IsA schoolmaster educator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schoolmate is a kind of acquaintance", "pln": ["(: cnet_isa_1c0adbabf9 (IsA schoolmate acquaintance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "school is a kind of good place to learn", "pln": ["(: cnet_isa_1af7097f91 (IsA school good_place_to_learn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "school is a kind of part of educational system", "pln": ["(: cnet_isa_7f0303752a (IsA school part_of_educational_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "school is a kind of place to learn thing", "pln": ["(: cnet_isa_82d7198d7c (IsA school place_to_learn_thing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schoolteacher is a kind of teacher", "pln": ["(: cnet_isa_2f7bcc454c (IsA schoolteacher teacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schoolyard is a kind of yard", "pln": ["(: cnet_isa_466d253e27 (IsA schoolyard yard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schooner is a kind of glass", "pln": ["(: cnet_isa_1783ed93b4 (IsA schooner glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "schooner is a kind of sailing vessel", "pln": ["(: cnet_isa_53e5ca1cd3 (IsA schooner sailing_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schorl is a kind of tourmaline", "pln": ["(: cnet_isa_878e291d52 (IsA schorl tourmaline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "schottische is a kind of round dance", "pln": ["(: cnet_isa_c9433e73ff (IsA schottische round_dance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schottische is a kind of folk music", "pln": ["(: cnet_isa_ea3202d808 (IsA schottische folk_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schreiber s aster is a kind of aster", "pln": ["(: cnet_isa_ece5d0a72c (IsA schreiber_s_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "schrod is a kind of fish", "pln": ["(: cnet_isa_529b20e51d (IsA schrod fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "sciadopitys is a kind of gymnosperm genus", "pln": ["(: cnet_isa_4b7ae65440 (IsA sciadopitys gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schrodinger equation is a kind of differential equation", "pln": ["(: cnet_isa_63292c58db (IsA schrodinger_equation differential_equation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schutzstaffel is a kind of police", "pln": ["(: cnet_isa_fdaa86553b (IsA schutzstaffel police) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schwa is a kind of vowel", "pln": ["(: cnet_isa_4975da5e9d (IsA schwa vowel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schwann cell is a kind of somatic cell", "pln": ["(: cnet_isa_e1473c366a (IsA schwann_cell somatic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "schwarzenegger is a kind of movie star", "pln": ["(: cnet_isa_61272d4628 (IsA schwarzenegger movie_star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sciadopityaceae is a kind of gymnosperm family", "pln": ["(: cnet_isa_45cde4c3c4 (IsA sciadopityaceae gymnosperm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sciadopity is a kind of gymnosperm genus", "pln": ["(: cnet_isa_ca915f3446 (IsA sciadopity gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sciaena is a kind of fish genus", "pln": ["(: cnet_isa_688897bf5c (IsA sciaena fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sciaenid fish is a kind of percoid fish", "pln": ["(: cnet_isa_44e000cb94 (IsA sciaenid_fish percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sciaenidae is a kind of fish family", "pln": ["(: cnet_isa_819d17873d (IsA sciaenidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sciaenop is a kind of fish genus", "pln": ["(: cnet_isa_03a582a0f7 (IsA sciaenop fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sciaridae is a kind of arthropod family", "pln": ["(: cnet_isa_08ba4e2b58 (IsA sciaridae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sciatic nerve is a kind of nerve", "pln": ["(: cnet_isa_a93a9d9274 (IsA sciatic_nerve nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sciatica is a kind of neuralgia", "pln": ["(: cnet_isa_59129913e4 (IsA sciatica neuralgia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "science is a kind of method to understand world", "pln": ["(: cnet_isa_ed132f7718 (IsA science method_to_understand_world) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "science is a kind of subject", "pln": ["(: cnet_isa_7fd11b9599 (IsA science subject) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "science is a kind of discipline", "pln": ["(: cnet_isa_fc0b15fbfc (IsA science discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "science fiction is a kind of genre", "pln": ["(: cnet_isa_09b190eb09 (IsA science_fiction genre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "science fiction is a kind of often about future", "pln": ["(: cnet_isa_e04dfebaea (IsA science_fiction often_about_future) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "science fiction is a kind of fantasy", "pln": ["(: cnet_isa_b03c56fbc5 (IsA science_fiction fantasy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "science museum is a kind of museum", "pln": ["(: cnet_isa_9ec607b1fb (IsA science_museum museum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "science teacher is a kind of teacher", "pln": ["(: cnet_isa_5864626d80 (IsA science_teacher teacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scientific fact is a kind of observation", "pln": ["(: cnet_isa_b66329f51e (IsA scientific_fact observation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scientific instrument is a kind of instrument", "pln": ["(: cnet_isa_5efa469509 (IsA scientific_instrument instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scientific knowledge is a kind of knowledge domain", "pln": ["(: cnet_isa_c78276314d (IsA scientific_knowledge knowledge_domain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scientific method is a kind of methodology", "pln": ["(: cnet_isa_734979820a (IsA scientific_method methodology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scientific model is a kind of model", "pln": ["(: cnet_isa_93319d35a5 (IsA scientific_model model) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scientific research is a kind of research", "pln": ["(: cnet_isa_d936a1f89f (IsA scientific_research research) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scientific theory is a kind of theory", "pln": ["(: cnet_isa_96a24912c4 (IsA scientific_theory theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scientist is a kind of person", "pln": ["(: cnet_isa_b3437d1ae4 (IsA scientist person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scientology is a kind of religion", "pln": ["(: cnet_isa_23951aeedf (IsA scientology religion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scilla is a kind of liliaceous plant", "pln": ["(: cnet_isa_3d0969df7c (IsA scilla liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scimitar is a kind of cavalry sword", "pln": ["(: cnet_isa_7dba8adfe6 (IsA scimitar cavalry_sword) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scincella is a kind of reptile genus", "pln": ["(: cnet_isa_48a25599ec (IsA scincella reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scincidae is a kind of reptile family", "pln": ["(: cnet_isa_445364eaae (IsA scincidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scincus is a kind of reptile genus", "pln": ["(: cnet_isa_0dff3c8074 (IsA scincus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scindapsus is a kind of monocot genus", "pln": ["(: cnet_isa_7142d6f0fd (IsA scindapsus monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scintilla is a kind of particle", "pln": ["(: cnet_isa_63a2ba93f4 (IsA scintilla particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scintillating scotoma is a kind of scotoma", "pln": ["(: cnet_isa_b2fd41aa6f (IsA scintillating_scotoma scotoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scintillation is a kind of fluctuation", "pln": ["(: cnet_isa_aba3875446 (IsA scintillation fluctuation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scintillation is a kind of brilliance", "pln": ["(: cnet_isa_4ff7121e19 (IsA scintillation brilliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "scissors is a kind of gymnastic exercise", "pln": ["(: cnet_isa_459c0d7320 (IsA scissors gymnastic_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "scleral veins is a kind of vein", "pln": ["(: cnet_isa_3879881233 (IsA scleral_veins vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scintillation is a kind of light", "pln": ["(: cnet_isa_c84e234a94 (IsA scintillation light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scintillation counter is a kind of counter tube", "pln": ["(: cnet_isa_9ec7172576 (IsA scintillation_counter counter_tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sciolism is a kind of superficiality", "pln": ["(: cnet_isa_a367e3d24d (IsA sciolism superficiality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scion is a kind of descendant", "pln": ["(: cnet_isa_222d840db0 (IsA scion descendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scire facia is a kind of writ", "pln": ["(: cnet_isa_bac095d7fc (IsA scire_facia writ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scirpus is a kind of monocot genus", "pln": ["(: cnet_isa_3873ab8969 (IsA scirpus monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scission is a kind of cut", "pln": ["(: cnet_isa_5060c37722 (IsA scission cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scissor is a kind of gymnastic exercise", "pln": ["(: cnet_isa_24a8c9ae89 (IsA scissor gymnastic_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scissor is a kind of wrestling hold", "pln": ["(: cnet_isa_bcb02d20f0 (IsA scissor wrestling_hold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scissor is a kind of compound lever", "pln": ["(: cnet_isa_e92d6e0cbf (IsA scissor compound_lever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scissor is a kind of edge tool", "pln": ["(: cnet_isa_9411a87867 (IsA scissor edge_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scissor kick is a kind of swimming kick", "pln": ["(: cnet_isa_efe370f4d8 (IsA scissor_kick swimming_kick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scissortail is a kind of new world flycatcher", "pln": ["(: cnet_isa_764a5835fc (IsA scissortail new_world_flycatcher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sciuridae is a kind of mammal family", "pln": ["(: cnet_isa_a2b363347c (IsA sciuridae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sciuromorpha is a kind of animal order", "pln": ["(: cnet_isa_0ddd78a614 (IsA sciuromorpha animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sciurus is a kind of mammal genus", "pln": ["(: cnet_isa_5aa7fde308 (IsA sciurus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sclaff is a kind of golf stroke", "pln": ["(: cnet_isa_991f92996e (IsA sclaff golf_stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sclera is a kind of albuginea", "pln": ["(: cnet_isa_5f77c20bc8 (IsA sclera albuginea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scleral vein is a kind of vein", "pln": ["(: cnet_isa_3991740227 (IsA scleral_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scleranthus is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_37b52ae088 (IsA scleranthus caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scleredema is a kind of edema", "pln": ["(: cnet_isa_7a73e9fd74 (IsA scleredema edema) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sclerite is a kind of protective covering", "pln": ["(: cnet_isa_5164b47a38 (IsA sclerite protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scleritis is a kind of inflammation", "pln": ["(: cnet_isa_e27f029a01 (IsA scleritis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scleroderma is a kind of fungus genus", "pln": ["(: cnet_isa_491211045f (IsA scleroderma fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scleroderma is a kind of autoimmune disease", "pln": ["(: cnet_isa_b30fda5231 (IsA scleroderma autoimmune_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scleroderma bovista is a kind of earthball", "pln": ["(: cnet_isa_7eb557c068 (IsA scleroderma_bovista earthball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scleroderma citrinum is a kind of earthball", "pln": ["(: cnet_isa_9ea125ec68 (IsA scleroderma_citrinum earthball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scleroderma flavidium is a kind of earthball", "pln": ["(: cnet_isa_fa4d5ed716 (IsA scleroderma_flavidium earthball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sclerodermataceae is a kind of fungus family", "pln": ["(: cnet_isa_6751212cdb (IsA sclerodermataceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sclerodermatale is a kind of fungus order", "pln": ["(: cnet_isa_45e2f1cdb9 (IsA sclerodermatale fungus_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sclerometer is a kind of measuring instrument", "pln": ["(: cnet_isa_e7e854f655 (IsA sclerometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scleroparei is a kind of animal order", "pln": ["(: cnet_isa_396ebf83f5 (IsA scleroparei animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scleroprotein is a kind of simple protein", "pln": ["(: cnet_isa_8f1af14eae (IsA scleroprotein simple_protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sclerosis is a kind of pathology", "pln": ["(: cnet_isa_143013e340 (IsA sclerosis pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sclerotinia is a kind of fungus", "pln": ["(: cnet_isa_134e1c09cf (IsA sclerotinia fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sclerotiniaceae is a kind of fungus family", "pln": ["(: cnet_isa_0d1d212610 (IsA sclerotiniaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sclerotium is a kind of fungus genus", "pln": ["(: cnet_isa_2a40d59ea5 (IsA sclerotium fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sclerotium is a kind of mycelium", "pln": ["(: cnet_isa_a57b533f7e (IsA sclerotium mycelium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sclerotium disease is a kind of plant disease", "pln": ["(: cnet_isa_445f6d4d32 (IsA sclerotium_disease plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sclerotomy is a kind of incision", "pln": ["(: cnet_isa_342b250489 (IsA sclerotomy incision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scoffer is a kind of eater", "pln": ["(: cnet_isa_390bf3fb12 (IsA scoffer eater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scoffer is a kind of unpleasant person", "pln": ["(: cnet_isa_bdbdd26149 (IsA scoffer unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scofflaw is a kind of criminal", "pln": ["(: cnet_isa_76fd32a5c0 (IsA scofflaw criminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scoinson arch is a kind of arch", "pln": ["(: cnet_isa_f8ca0040ba (IsA scoinson_arch arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scold is a kind of unpleasant person", "pln": ["(: cnet_isa_bac4e7a75f (IsA scold unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scolion is a kind of song", "pln": ["(: cnet_isa_3d9e4a4b48 (IsA scolion song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scoliosis is a kind of spinal curvature", "pln": ["(: cnet_isa_29d8aaaf63 (IsA scoliosis spinal_curvature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scolopacidae is a kind of bird family", "pln": ["(: cnet_isa_a240aa9c83 (IsA scolopacidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scolopax is a kind of bird genus", "pln": ["(: cnet_isa_f3084a9fa5 (IsA scolopax bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scolopendrium is a kind of fern", "pln": ["(: cnet_isa_2a069f9020 (IsA scolopendrium fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scolymus is a kind of asterid dicot genus", "pln": ["(: cnet_isa_98b6b835d7 (IsA scolymus asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scolytidae is a kind of arthropod family", "pln": ["(: cnet_isa_5f31fb034d (IsA scolytidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scolytus is a kind of arthropod genus", "pln": ["(: cnet_isa_9578344fd8 (IsA scolytus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scomber is a kind of fish genus", "pln": ["(: cnet_isa_9c60f16f8c (IsA scomber fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scomberesocidae is a kind of fish family", "pln": ["(: cnet_isa_995a1cdcb5 (IsA scomberesocidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scomberesox is a kind of fish genus", "pln": ["(: cnet_isa_8124e6e40a (IsA scomberesox fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scomberomorus is a kind of fish genus", "pln": ["(: cnet_isa_131b7daf8a (IsA scomberomorus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scomberomorus maculatus is a kind of spanish mackerel", "pln": ["(: cnet_isa_42498b58cf (IsA scomberomorus_maculatus spanish_mackerel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scombridae is a kind of fish family", "pln": ["(: cnet_isa_8051c4eaae (IsA scombridae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scombroid is a kind of percoid fish", "pln": ["(: cnet_isa_a8e6a56849 (IsA scombroid percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scombroidea is a kind of animal order", "pln": ["(: cnet_isa_52037130f9 (IsA scombroidea animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sconce is a kind of bracket", "pln": ["(: cnet_isa_10f80c5f57 (IsA sconce bracket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sconce is a kind of earthwork", "pln": ["(: cnet_isa_cf0d6b2d7e (IsA sconce earthwork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sconce is a kind of fortress", "pln": ["(: cnet_isa_cc2e0e04a6 (IsA sconce fortress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sconce is a kind of light", "pln": ["(: cnet_isa_7d94478463 (IsA sconce light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sconce is a kind of shelter", "pln": ["(: cnet_isa_19fe14a047 (IsA sconce shelter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scone is a kind of quick bread", "pln": ["(: cnet_isa_6f4fb343fa (IsA scone quick_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scoop is a kind of ladle", "pln": ["(: cnet_isa_1095a30c6e (IsA scoop ladle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scoop is a kind of shovel", "pln": ["(: cnet_isa_4918b01a2e (IsA scoop shovel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scoop is a kind of containerful", "pln": ["(: cnet_isa_aa43773255 (IsA scoop containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scoop is a kind of concave shape", "pln": ["(: cnet_isa_0088b20cd2 (IsA scoop concave_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scoop shot is a kind of basketball shot", "pln": ["(: cnet_isa_a6666b2ce7 (IsA scoop_shot basketball_shot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scooter is a kind of wheeled vehicle", "pln": ["(: cnet_isa_72050b133d (IsA scooter wheeled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scope is a kind of extent", "pln": ["(: cnet_isa_07399a4e53 (IsA scope extent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scope trial is a kind of trial", "pln": ["(: cnet_isa_5fa1f2c387 (IsA scope_trial trial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scophthalmus is a kind of fish genus", "pln": ["(: cnet_isa_e9dd25bdd3 (IsA scophthalmus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scopolamine is a kind of alkaloid", "pln": ["(: cnet_isa_89f1ea30e1 (IsA scopolamine alkaloid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scopolia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_747bf06e9e (IsA scopolia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scopolia carniolica is a kind of herb", "pln": ["(: cnet_isa_8e6dd6f5b8 (IsA scopolia_carniolica herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scop owl is a kind of owl", "pln": ["(: cnet_isa_9a3c46284a (IsA scop_owl owl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scorch is a kind of stain", "pln": ["(: cnet_isa_99f66c7928 (IsA scorch stain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scorch is a kind of burn", "pln": ["(: cnet_isa_7d9c178fc6 (IsA scorch burn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scorch is a kind of plant disease", "pln": ["(: cnet_isa_5d44d091a7 (IsA scorch plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scorched earth policy is a kind of shark repellent", "pln": ["(: cnet_isa_05bcc96f2b (IsA scorched_earth_policy shark_repellent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scorcher is a kind of hit", "pln": ["(: cnet_isa_02e61e51e5 (IsA scorcher hit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scorcher is a kind of hot weather", "pln": ["(: cnet_isa_bb73311e25 (IsA scorcher hot_weather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "score is a kind of success", "pln": ["(: cnet_isa_462c6ca889 (IsA score success) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "score is a kind of fact", "pln": ["(: cnet_isa_79c55fbbc1 (IsA score fact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "score is a kind of sheet music", "pln": ["(: cnet_isa_a28b0e3a4e (IsA score sheet_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "score is a kind of set", "pln": ["(: cnet_isa_0261afc70c (IsA score set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "score is a kind of reason", "pln": ["(: cnet_isa_5b0fb8d2ec (IsA score reason) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "score is a kind of number", "pln": ["(: cnet_isa_732b6255ab (IsA score number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "score is a kind of incision", "pln": ["(: cnet_isa_b9953c4727 (IsA score incision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "score is a kind of debt", "pln": ["(: cnet_isa_d159600abb (IsA score debt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scoreboard is a kind of board", "pln": ["(: cnet_isa_7282e40e90 (IsA scoreboard board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scoreboard is a kind of signboard", "pln": ["(: cnet_isa_81de8b0182 (IsA scoreboard signboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scorekeeper is a kind of official", "pln": ["(: cnet_isa_f2edd4709e (IsA scorekeeper official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scorer is a kind of lumberman", "pln": ["(: cnet_isa_8d640623e0 (IsA scorer lumberman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scorer is a kind of player", "pln": ["(: cnet_isa_f177fdedbe (IsA scorer player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scorpaena is a kind of fish genus", "pln": ["(: cnet_isa_5525a0e9ab (IsA scorpaena fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scorpaenid is a kind of scorpaenoid", "pln": ["(: cnet_isa_5a5dd646ff (IsA scorpaenid scorpaenoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scorpaenidae is a kind of fish family", "pln": ["(: cnet_isa_3cb0641a50 (IsA scorpaenidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scorpaenoid is a kind of spiny finned fish", "pln": ["(: cnet_isa_8a9ffb0701 (IsA scorpaenoid spiny_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scorpaenoidea is a kind of animal order", "pln": ["(: cnet_isa_fab43179ae (IsA scorpaenoidea animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scorpioid cyme is a kind of cyme", "pln": ["(: cnet_isa_86bb6b1a97 (IsA scorpioid_cyme cyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scorpion is a kind of one type of animal", "pln": ["(: cnet_isa_1f8df2afa0 (IsA scorpion one_type_of_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scorpion is a kind of arachnid", "pln": ["(: cnet_isa_c94dda95c2 (IsA scorpion arachnid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scorpion is a kind of person", "pln": ["(: cnet_isa_cc9da50855 (IsA scorpion person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scorpion fly is a kind of mecopteran", "pln": ["(: cnet_isa_40480c19c8 (IsA scorpion_fly mecopteran) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scorpion shell is a kind of snail", "pln": ["(: cnet_isa_842b338b46 (IsA scorpion_shell snail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scorpionfish is a kind of scorpaenid", "pln": ["(: cnet_isa_6db08988ae (IsA scorpionfish scorpaenid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scorpionida is a kind of animal order", "pln": ["(: cnet_isa_2ce7a5df29 (IsA scorpionida animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scorpionweed is a kind of flower", "pln": ["(: cnet_isa_9eb3f7cef7 (IsA scorpionweed flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scorzonera is a kind of salsify", "pln": ["(: cnet_isa_ea2c2b04cd (IsA scorzonera salsify) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scot and lot is a kind of indebtedness", "pln": ["(: cnet_isa_38b9bd4dc3 (IsA scot_and_lot indebtedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scotch is a kind of whiskey", "pln": ["(: cnet_isa_ba3fdf38a6 (IsA scotch whiskey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scotch and soda is a kind of highball", "pln": ["(: cnet_isa_fc138e732f (IsA scotch_and_soda highball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scotch asphodel is a kind of false asphodel", "pln": ["(: cnet_isa_b767176383 (IsA scotch_asphodel false_asphodel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scotch broth is a kind of soup", "pln": ["(: cnet_isa_232c79c668 (IsA scotch_broth soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scotch egg is a kind of dish", "pln": ["(: cnet_isa_8eece36b2e (IsA scotch_egg dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scotch kiss is a kind of kiss", "pln": ["(: cnet_isa_8a37c77139 (IsA scotch_kiss kiss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scotch laburnum is a kind of flowering shrub", "pln": ["(: cnet_isa_156160fe72 (IsA scotch_laburnum flowering_shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scotch pine is a kind of pine", "pln": ["(: cnet_isa_1e4d526202 (IsA scotch_pine pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scotch terrier is a kind of terrier", "pln": ["(: cnet_isa_87708ca42b (IsA scotch_terrier terrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scotch woodcock is a kind of dish", "pln": ["(: cnet_isa_7c16687afd (IsA scotch_woodcock dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scotchman is a kind of european", "pln": ["(: cnet_isa_a9e6999d7e (IsA scotchman european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scotchwoman is a kind of scotchman", "pln": ["(: cnet_isa_a055520bdb (IsA scotchwoman scotchman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scoter is a kind of sea duck", "pln": ["(: cnet_isa_55e7d10141 (IsA scoter sea_duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scotland yard is a kind of police", "pln": ["(: cnet_isa_aca07b2423 (IsA scotland_yard police) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scotoma is a kind of visual impairment", "pln": ["(: cnet_isa_91cdcad7b9 (IsA scotoma visual_impairment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scottish is a kind of english", "pln": ["(: cnet_isa_e4a3d33e19 (IsA scottish english) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scottish deerhound is a kind of hound", "pln": ["(: cnet_isa_234c0626cc (IsA scottish_deerhound hound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scottish gaelic is a kind of gaelic", "pln": ["(: cnet_isa_3992319c69 (IsA scottish_gaelic gaelic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scottish highlander is a kind of scotchman", "pln": ["(: cnet_isa_6cab8b0487 (IsA scottish_highlander scotchman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scottish lowlander is a kind of scotchman", "pln": ["(: cnet_isa_c622da5f70 (IsA scottish_lowlander scotchman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scour is a kind of topographic point", "pln": ["(: cnet_isa_57b052a31a (IsA scour topographic_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "scouts is a kind of people", "pln": ["(: cnet_isa_5a013afc2a (IsA scouts people) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scourer is a kind of cleaner", "pln": ["(: cnet_isa_fdadf70144 (IsA scourer cleaner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scourer is a kind of traveler", "pln": ["(: cnet_isa_22439e76fc (IsA scourer traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scourge is a kind of whip", "pln": ["(: cnet_isa_4a00b997e0 (IsA scourge whip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scouring is a kind of search", "pln": ["(: cnet_isa_3939c67d01 (IsA scouring search) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scouring pad is a kind of cleaning pad", "pln": ["(: cnet_isa_2661a795ff (IsA scouring_pad cleaning_pad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scouring rush is a kind of horsetail", "pln": ["(: cnet_isa_5c9783debc (IsA scouring_rush horsetail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scour is a kind of animal disease", "pln": ["(: cnet_isa_a26c377332 (IsA scour animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scouser is a kind of english person", "pln": ["(: cnet_isa_81865268de (IsA scouser english_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scout is a kind of expert", "pln": ["(: cnet_isa_8199998935 (IsA scout expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scout is a kind of female child", "pln": ["(: cnet_isa_cdc2ed33c0 (IsA scout female_child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scout is a kind of male child", "pln": ["(: cnet_isa_8ee4c29d5e (IsA scout male_child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scout is a kind of recruiter", "pln": ["(: cnet_isa_98aa7d6cba (IsA scout recruiter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scouting is a kind of reconnaissance", "pln": ["(: cnet_isa_c1c7658e29 (IsA scouting reconnaissance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scouting trip is a kind of expedition", "pln": ["(: cnet_isa_83ba8b9b46 (IsA scouting_trip expedition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scoutmaster is a kind of leader", "pln": ["(: cnet_isa_a3e32f9325 (IsA scoutmaster leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scout is a kind of people", "pln": ["(: cnet_isa_38a5e5fa2b (IsA scout people) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scow is a kind of barge", "pln": ["(: cnet_isa_4fd6ca4d2a (IsA scow barge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scow is a kind of boat", "pln": ["(: cnet_isa_dccb4110b3 (IsA scow boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrabble is a kind of board game", "pln": ["(: cnet_isa_684d8230bb (IsA scrabble board_game) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scrabble is a kind of word game", "pln": ["(: cnet_isa_593d804802 (IsA scrabble word_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrag is a kind of cut of mutton", "pln": ["(: cnet_isa_7dca6d893e (IsA scrag cut_of_mutton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrag is a kind of cut of veal", "pln": ["(: cnet_isa_f580011500 (IsA scrag cut_of_veal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scramble is a kind of struggle", "pln": ["(: cnet_isa_280d3f211e (IsA scramble struggle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrambled egg is a kind of dish", "pln": ["(: cnet_isa_10d1e3ad07 (IsA scrambled_egg dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrambler is a kind of electronic equipment", "pln": ["(: cnet_isa_08133483b2 (IsA scrambler electronic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrambler is a kind of mover", "pln": ["(: cnet_isa_df2f31cd4b (IsA scrambler mover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrap is a kind of piece", "pln": ["(: cnet_isa_b822b0efb7 (IsA scrap piece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrap iron is a kind of iron", "pln": ["(: cnet_isa_6bf27c7c54 (IsA scrap_iron iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrap iron is a kind of scrap metal", "pln": ["(: cnet_isa_6fe1e5b590 (IsA scrap_iron scrap_metal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrap metal is a kind of rubbish", "pln": ["(: cnet_isa_31a72f1c4d (IsA scrap_metal rubbish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrapbook is a kind of album", "pln": ["(: cnet_isa_f056756917 (IsA scrapbook album) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrape is a kind of bow", "pln": ["(: cnet_isa_021d70f233 (IsA scrape bow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrape is a kind of noise", "pln": ["(: cnet_isa_f877a552ca (IsA scrape noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scraper is a kind of hand tool", "pln": ["(: cnet_isa_f4240cb8d6 (IsA scraper hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrapheap is a kind of pile", "pln": ["(: cnet_isa_aa5f0491fc (IsA scrapheap pile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrapie is a kind of animal disease", "pln": ["(: cnet_isa_d4a1ceffa2 (IsA scrapie animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scraping is a kind of fragment", "pln": ["(: cnet_isa_8dcfbde2d4 (IsA scraping fragment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrappiness is a kind of combativeness", "pln": ["(: cnet_isa_19b9962ba8 (IsA scrappiness combativeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scrapple is a kind of dish", "pln": ["(: cnet_isa_94392df80f (IsA scrapple dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrapple is a kind of loaf", "pln": ["(: cnet_isa_72eba418d8 (IsA scrapple loaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scratch is a kind of blemish", "pln": ["(: cnet_isa_424041749a (IsA scratch blemish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scratch is a kind of handicap", "pln": ["(: cnet_isa_d9f56029e0 (IsA scratch handicap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scratch is a kind of rival", "pln": ["(: cnet_isa_567ee153ef (IsA scratch rival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scratch pad is a kind of notepad", "pln": ["(: cnet_isa_65a750194a (IsA scratch_pad notepad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scratch race is a kind of race", "pln": ["(: cnet_isa_82cfc252d1 (IsA scratch_race race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scratch test is a kind of skin test", "pln": ["(: cnet_isa_6593394699 (IsA scratch_test skin_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scratcher is a kind of device", "pln": ["(: cnet_isa_e5c7e6fb2d (IsA scratcher device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scratcher is a kind of person", "pln": ["(: cnet_isa_79893a8f82 (IsA scratcher person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scratcher is a kind of workman", "pln": ["(: cnet_isa_a43d7cd635 (IsA scratcher workman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scratchpad is a kind of memory", "pln": ["(: cnet_isa_61e9d142af (IsA scratchpad memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrawler is a kind of writer", "pln": ["(: cnet_isa_ebeb0170cb (IsA scrawler writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrawniness is a kind of inferiority", "pln": ["(: cnet_isa_9069d311cb (IsA scrawniness inferiority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scream is a kind of cry", "pln": ["(: cnet_isa_f1b0989f41 (IsA scream cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screamer is a kind of waterfowl", "pln": ["(: cnet_isa_7fe3dc7d68 (IsA screamer waterfowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screamer is a kind of headline", "pln": ["(: cnet_isa_e51f79abe4 (IsA screamer headline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screech is a kind of noise", "pln": ["(: cnet_isa_f612b2b489 (IsA screech noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screech owl is a kind of owl", "pln": ["(: cnet_isa_925f146b40 (IsA screech_owl owl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screed is a kind of strip", "pln": ["(: cnet_isa_82c82f952d (IsA screed strip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "screed is a kind of harangue", "pln": ["(: cnet_isa_0ba09274f8 (IsA screed harangue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screed is a kind of writing", "pln": ["(: cnet_isa_6f50ceac3f (IsA screed writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screen is a kind of covering", "pln": ["(: cnet_isa_bafc0f5283 (IsA screen covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screen is a kind of display", "pln": ["(: cnet_isa_68bacd96e1 (IsA screen display) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screen is a kind of partition", "pln": ["(: cnet_isa_c7e4dc21b7 (IsA screen partition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screen is a kind of protective covering", "pln": ["(: cnet_isa_4fe27706f1 (IsA screen protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "screen is a kind of surface", "pln": ["(: cnet_isa_9ee62cb35b (IsA screen surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "screen actor is a kind of actor", "pln": ["(: cnet_isa_4f92899385 (IsA screen_actor actor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screen door is a kind of door", "pln": ["(: cnet_isa_89dba1b720 (IsA screen_door door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screen font is a kind of font", "pln": ["(: cnet_isa_2585fdf66d (IsA screen_font font) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screen memory is a kind of memory", "pln": ["(: cnet_isa_401eed5876 (IsA screen_memory memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screen pass is a kind of forward pass", "pln": ["(: cnet_isa_a9c4ef300e (IsA screen_pass forward_pass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screen saver is a kind of design", "pln": ["(: cnet_isa_671195dbc6 (IsA screen_saver design) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screen test is a kind of audition", "pln": ["(: cnet_isa_c0ea408d50 (IsA screen_test audition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screener is a kind of guard", "pln": ["(: cnet_isa_7427430df6 (IsA screener guard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screening is a kind of testing", "pln": ["(: cnet_isa_1381e0799e (IsA screening testing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screening is a kind of fabric", "pln": ["(: cnet_isa_8243b4e252 (IsA screening fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screening is a kind of display", "pln": ["(: cnet_isa_056a3e1fba (IsA screening display) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screenland is a kind of film industry", "pln": ["(: cnet_isa_c31990d06d (IsA screenland film_industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screenplay is a kind of script", "pln": ["(: cnet_isa_0deb021188 (IsA screenplay script) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screenwriter is a kind of scriptwriter", "pln": ["(: cnet_isa_618300ff9b (IsA screenwriter scriptwriter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screw is a kind of inclined plane", "pln": ["(: cnet_isa_c690fe67f3 (IsA screw inclined_plane) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screw is a kind of simple machine", "pln": ["(: cnet_isa_ec8403828b (IsA screw simple_machine) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screw is a kind of fastener", "pln": ["(: cnet_isa_565d0bebc6 (IsA screw fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screw is a kind of propeller", "pln": ["(: cnet_isa_7183a0dd09 (IsA screw propeller) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screw augur is a kind of lady tress", "pln": ["(: cnet_isa_e273b14974 (IsA screw_augur lady_tress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "screw bean is a kind of mesquite", "pln": ["(: cnet_isa_b4960058ec (IsA screw_bean mesquite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screw bean is a kind of pod", "pln": ["(: cnet_isa_356367d300 (IsA screw_bean pod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "screw eye is a kind of woodscrew", "pln": ["(: cnet_isa_b0686e3b15 (IsA screw_eye woodscrew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screw key is a kind of wrench", "pln": ["(: cnet_isa_79588414a9 (IsA screw_key wrench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screw thread is a kind of rib", "pln": ["(: cnet_isa_320db6c7de (IsA screw_thread rib) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screw tree is a kind of shrub", "pln": ["(: cnet_isa_c227132691 (IsA screw_tree shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screw wrench is a kind of adjustable wrench", "pln": ["(: cnet_isa_ca09cbcfb6 (IsA screw_wrench adjustable_wrench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screwball is a kind of pitch", "pln": ["(: cnet_isa_8f958d5acb (IsA screwball pitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screwballer is a kind of pitcher", "pln": ["(: cnet_isa_824c900058 (IsA screwballer pitcher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screwdriver is a kind of drink", "pln": ["(: cnet_isa_fed44a5b6f (IsA screwdriver drink) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screwdriver is a kind of hand tool", "pln": ["(: cnet_isa_dc76c3d8e4 (IsA screwdriver hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screwdriver is a kind of cocktail", "pln": ["(: cnet_isa_841d000822 (IsA screwdriver cocktail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screwtop is a kind of top", "pln": ["(: cnet_isa_fd1e89b475 (IsA screwtop top) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "screwup is a kind of mismanagement", "pln": ["(: cnet_isa_490bc20eb9 (IsA screwup mismanagement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scribble is a kind of drawing", "pln": ["(: cnet_isa_548971885a (IsA scribble drawing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scribble is a kind of handwriting", "pln": ["(: cnet_isa_736b18b839 (IsA scribble handwriting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scribe is a kind of journalist", "pln": ["(: cnet_isa_0c32af59ee (IsA scribe journalist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scriber is a kind of awl", "pln": ["(: cnet_isa_4067900d04 (IsA scriber awl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrim is a kind of fabric", "pln": ["(: cnet_isa_781c3f689a (IsA scrim fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrimmage is a kind of exercise", "pln": ["(: cnet_isa_2327fffb9c (IsA scrimmage exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrimmage line is a kind of line", "pln": ["(: cnet_isa_4f471a7639 (IsA scrimmage_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrimshanker is a kind of slacker", "pln": ["(: cnet_isa_1d0466f10f (IsA scrimshanker slacker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrimshaw is a kind of carving", "pln": ["(: cnet_isa_4539d98f23 (IsA scrimshaw carving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrip is a kind of security", "pln": ["(: cnet_isa_68415cb047 (IsA scrip security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "script is a kind of dramatic composition", "pln": ["(: cnet_isa_73eb06ea5d (IsA script dramatic_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "script is a kind of orthography", "pln": ["(: cnet_isa_66931d45d1 (IsA script orthography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scriptorium is a kind of room", "pln": ["(: cnet_isa_81ac138ba9 (IsA scriptorium room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scripture is a kind of sacred text", "pln": ["(: cnet_isa_fd5f0f51ef (IsA scripture sacred_text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scriptwriter is a kind of writer", "pln": ["(: cnet_isa_7881cc5ae8 (IsA scriptwriter writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrod is a kind of cod", "pln": ["(: cnet_isa_cfd2e69c48 (IsA scrod cod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrofula is a kind of tuberculosis", "pln": ["(: cnet_isa_47c523509f (IsA scrofula tuberculosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scroll is a kind of manuscript", "pln": ["(: cnet_isa_25c237c4ea (IsA scroll manuscript) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrophularia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_c7b5727bb1 (IsA scrophularia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrophulariaceae is a kind of asterid dicot family", "pln": ["(: cnet_isa_c8c2a4cec8 (IsA scrophulariaceae asterid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrophulariale is a kind of plant order", "pln": ["(: cnet_isa_371379a341 (IsA scrophulariale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrotal vein is a kind of vein", "pln": ["(: cnet_isa_e94d14c41f (IsA scrotal_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrotum is a kind of pouch", "pln": ["(: cnet_isa_07345a413f (IsA scrotum pouch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrub is a kind of cleaning", "pln": ["(: cnet_isa_d32f818c04 (IsA scrub cleaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrub is a kind of vegetation", "pln": ["(: cnet_isa_0baea1f294 (IsA scrub vegetation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrub beefwood is a kind of tree", "pln": ["(: cnet_isa_df16223d5e (IsA scrub_beefwood tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrub brush is a kind of brush", "pln": ["(: cnet_isa_1571edb831 (IsA scrub_brush brush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrub nurse is a kind of nurse", "pln": ["(: cnet_isa_94863940d8 (IsA scrub_nurse nurse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrub oak is a kind of oak", "pln": ["(: cnet_isa_4fa2cbe7c3 (IsA scrub_oak oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrub pine is a kind of pine", "pln": ["(: cnet_isa_5cb9656099 (IsA scrub_pine pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrub plane is a kind of plane", "pln": ["(: cnet_isa_1c1be3ce27 (IsA scrub_plane plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrubber is a kind of purifier", "pln": ["(: cnet_isa_bf5db9a03f (IsA scrubber purifier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrubber is a kind of worker", "pln": ["(: cnet_isa_7de9158211 (IsA scrubber worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrubbird is a kind of passerine", "pln": ["(: cnet_isa_656f6a7bda (IsA scrubbird passerine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrubland is a kind of country", "pln": ["(: cnet_isa_21f7f3889f (IsA scrubland country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scrum is a kind of beginning", "pln": ["(: cnet_isa_4ebd69e91a (IsA scrum beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrumpy is a kind of cider", "pln": ["(: cnet_isa_a5f531b8d4 (IsA scrumpy cider) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrunch is a kind of noise", "pln": ["(: cnet_isa_be33c2e50a (IsA scrunch noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scruple is a kind of principle", "pln": ["(: cnet_isa_247305e2fb (IsA scruple principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scruple is a kind of anxiety", "pln": ["(: cnet_isa_07800ca3bf (IsA scruple anxiety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scruple is a kind of apothecary unit", "pln": ["(: cnet_isa_6e88734bf2 (IsA scruple apothecary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrupulousness is a kind of honesty", "pln": ["(: cnet_isa_d01515cc62 (IsA scrupulousness honesty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrutineer is a kind of examiner", "pln": ["(: cnet_isa_4b52086688 (IsA scrutineer examiner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrutinizer is a kind of examiner", "pln": ["(: cnet_isa_2921a7ccb9 (IsA scrutinizer examiner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scrutiny is a kind of look", "pln": ["(: cnet_isa_ce31263f2d (IsA scrutiny look) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scuba diver is a kind of diver", "pln": ["(: cnet_isa_531ac7cf49 (IsA scuba_diver diver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scuba diving is a kind of hobby", "pln": ["(: cnet_isa_6bb0841498 (IsA scuba_diving hobby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scuba diving is a kind of skin diving", "pln": ["(: cnet_isa_b9dab5c751 (IsA scuba_diving skin_diving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scud is a kind of speed", "pln": ["(: cnet_isa_255df5e20e (IsA scud speed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scuff is a kind of rub", "pln": ["(: cnet_isa_ea768ced2a (IsA scuff rub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scuffer is a kind of sandal", "pln": ["(: cnet_isa_930c095011 (IsA scuffer sandal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scuffle is a kind of hoe", "pln": ["(: cnet_isa_d6af1f5479 (IsA scuffle hoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scull is a kind of oar", "pln": ["(: cnet_isa_5f70e7b282 (IsA scull oar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "sculpture is a kind of fine arts", "pln": ["(: cnet_isa_ad0ac97869 (IsA sculpture fine_arts) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scull is a kind of shell", "pln": ["(: cnet_isa_af464e36d6 (IsA scull shell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sculler is a kind of oarsman", "pln": ["(: cnet_isa_2e5364b91f (IsA sculler oarsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scullery is a kind of room", "pln": ["(: cnet_isa_58c2b6c3ef (IsA scullery room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sculling is a kind of rowing", "pln": ["(: cnet_isa_2f6125c815 (IsA sculling rowing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scullion is a kind of servant", "pln": ["(: cnet_isa_a41ab35394 (IsA scullion servant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sculpin is a kind of scorpaenoid", "pln": ["(: cnet_isa_3be5a03aca (IsA sculpin scorpaenoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sculptor is a kind of artist", "pln": ["(: cnet_isa_38e5527564 (IsA sculptor artist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sculptress is a kind of sculptor", "pln": ["(: cnet_isa_aeb7274e43 (IsA sculptress sculptor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sculpture is a kind of art", "pln": ["(: cnet_isa_2249f8e9b1 (IsA sculpture art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sculpture is a kind of fine art", "pln": ["(: cnet_isa_f26a771029 (IsA sculpture fine_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sculpture is a kind of plastic art", "pln": ["(: cnet_isa_1e491bf0fc (IsA sculpture plastic_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sculpture is a kind of solid figure", "pln": ["(: cnet_isa_0d9e250709 (IsA sculpture solid_figure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scum is a kind of film", "pln": ["(: cnet_isa_982b243584 (IsA scum film) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scumble is a kind of application", "pln": ["(: cnet_isa_f026ee7a3e (IsA scumble application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scunner is a kind of dislike", "pln": ["(: cnet_isa_ba04446263 (IsA scunner dislike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scup is a kind of porgy", "pln": ["(: cnet_isa_eec0d5ebe2 (IsA scup porgy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scup is a kind of saltwater fish", "pln": ["(: cnet_isa_7ac3e17e44 (IsA scup saltwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scupper is a kind of drain", "pln": ["(: cnet_isa_8f48781f70 (IsA scupper drain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scuppernong is a kind of muscadine", "pln": ["(: cnet_isa_b3f7ddf06f (IsA scuppernong muscadine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scurf is a kind of bit", "pln": ["(: cnet_isa_eb797bcd7a (IsA scurf bit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scurrility is a kind of abuse", "pln": ["(: cnet_isa_70f5d040a1 (IsA scurrility abuse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scurvy is a kind of avitaminosis", "pln": ["(: cnet_isa_f9291311cb (IsA scurvy avitaminosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scurvy grass is a kind of cress", "pln": ["(: cnet_isa_c0d404f319 (IsA scurvy_grass cress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scut is a kind of tail", "pln": ["(: cnet_isa_c642e26199 (IsA scut tail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scut work is a kind of job", "pln": ["(: cnet_isa_d26b9e24e5 (IsA scut_work job) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scute is a kind of protective covering", "pln": ["(: cnet_isa_0cdb599d2a (IsA scute protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scutellaria is a kind of asterid dicot genus", "pln": ["(: cnet_isa_4d1af6e47d (IsA scutellaria asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scutigera is a kind of arthropod genus", "pln": ["(: cnet_isa_4f22340d33 (IsA scutigera arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scutigerella is a kind of arthropod genus", "pln": ["(: cnet_isa_150f84637c (IsA scutigerella arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scutigeridae is a kind of arthropod family", "pln": ["(: cnet_isa_c27796bf38 (IsA scutigeridae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scuttle is a kind of container", "pln": ["(: cnet_isa_b1889357b7 (IsA scuttle container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scyliorhinidae is a kind of fish family", "pln": ["(: cnet_isa_28c6f047ad (IsA scyliorhinidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scyphozoa is a kind of class", "pln": ["(: cnet_isa_b58691d625 (IsA scyphozoa class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scyphozoan is a kind of coelenterate", "pln": ["(: cnet_isa_c16371d8d7 (IsA scyphozoan coelenterate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scyphus is a kind of cup", "pln": ["(: cnet_isa_37d427b647 (IsA scyphus cup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "scythe is a kind of edge tool", "pln": ["(: cnet_isa_04c1bc80a0 (IsA scythe edge_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scythian is a kind of iranian", "pln": ["(: cnet_isa_ed1aa06f74 (IsA scythian iranian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scythian is a kind of nomad", "pln": ["(: cnet_isa_0fc7cccfd5 (IsA scythian nomad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "scythian lamb is a kind of tree fern", "pln": ["(: cnet_isa_77f527ef75 (IsA scythian_lamb tree_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea is a kind of body of salt water", "pln": ["(: cnet_isa_1642806233 (IsA sea body_of_salt_water) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea is a kind of body of water", "pln": ["(: cnet_isa_38654da12c (IsA sea body_of_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea is a kind of large body of salt water", "pln": ["(: cnet_isa_58f4bba2de (IsA sea large_body_of_salt_water) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea is a kind of large body of water", "pln": ["(: cnet_isa_c887b0c56e (IsA sea large_body_of_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea is a kind of turbulent flow", "pln": ["(: cnet_isa_60d25e352f (IsA sea turbulent_flow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea anchor is a kind of restraint", "pln": ["(: cnet_isa_9d5a689636 (IsA sea_anchor restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea anemone is a kind of anthozoan", "pln": ["(: cnet_isa_b4514c7069 (IsA sea_anemone anthozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea aster is a kind of aster", "pln": ["(: cnet_isa_95c9052ce4 (IsA sea_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea bass is a kind of food fish", "pln": ["(: cnet_isa_d38299f54b (IsA sea_bass food_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea bass is a kind of serranid fish", "pln": ["(: cnet_isa_1b12ab356b (IsA sea_bass serranid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea bass is a kind of saltwater fish", "pln": ["(: cnet_isa_5edb9250fd (IsA sea_bass saltwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sea bathing is a kind of bathing", "pln": ["(: cnet_isa_e6882228f9 (IsA sea_bathing bathing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea boat is a kind of boat", "pln": ["(: cnet_isa_54e2e24492 (IsA sea_boat boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea bream is a kind of percoid fish", "pln": ["(: cnet_isa_c3934cb2d0 (IsA sea_bream percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea breeze is a kind of breeze", "pln": ["(: cnet_isa_247e508e98 (IsA sea_breeze breeze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea catfish is a kind of catfish", "pln": ["(: cnet_isa_89691c1f67 (IsA sea_catfish catfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea change is a kind of transformation", "pln": ["(: cnet_isa_8f95779684 (IsA sea_change transformation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea chest is a kind of chest", "pln": ["(: cnet_isa_55ef8eb784 (IsA sea_chest chest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea chub is a kind of percoid fish", "pln": ["(: cnet_isa_c517e40ee5 (IsA sea_chub percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea coal is a kind of bituminous coal", "pln": ["(: cnet_isa_2ee6c055b5 (IsA sea_coal bituminous_coal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea cow is a kind of aquatic mammal", "pln": ["(: cnet_isa_a33beebf0d (IsA sea_cow aquatic_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea cucumber is a kind of echinoderm", "pln": ["(: cnet_isa_8a3ea526fe (IsA sea_cucumber echinoderm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea dahlia is a kind of coreopsis", "pln": ["(: cnet_isa_314b52f6cd (IsA sea_dahlia coreopsis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea duck is a kind of duck", "pln": ["(: cnet_isa_bec8454bfa (IsA sea_duck duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea duty is a kind of assignment", "pln": ["(: cnet_isa_9babca9536 (IsA sea_duty assignment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea eagle is a kind of eagle", "pln": ["(: cnet_isa_382e912210 (IsA sea_eagle eagle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea fan is a kind of gorgonian", "pln": ["(: cnet_isa_cbda383207 (IsA sea_fan gorgonian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea feather is a kind of gorgonian", "pln": ["(: cnet_isa_d34d23e9dd (IsA sea_feather gorgonian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sea god is a kind of deity", "pln": ["(: cnet_isa_dccc506038 (IsA sea_god deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea gooseberry is a kind of ctenophore", "pln": ["(: cnet_isa_59a9e190aa (IsA sea_gooseberry ctenophore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea green is a kind of green", "pln": ["(: cnet_isa_0f8182c492 (IsA sea_green green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea hare is a kind of gastropod", "pln": ["(: cnet_isa_af51ed416a (IsA sea_hare gastropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea holly is a kind of shrub", "pln": ["(: cnet_isa_b8d4e4d061 (IsA sea_holly shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea island cotton is a kind of cotton", "pln": ["(: cnet_isa_1e57d36772 (IsA sea_island_cotton cotton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sea kale is a kind of herb", "pln": ["(: cnet_isa_17303d6e7e (IsA sea_kale herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea king is a kind of pirate", "pln": ["(: cnet_isa_cbbd2a6e1c (IsA sea_king pirate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea ladder is a kind of ladder", "pln": ["(: cnet_isa_0eb43b2d70 (IsA sea_ladder ladder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea lamprey is a kind of lamprey", "pln": ["(: cnet_isa_7a6e1c4d68 (IsA sea_lamprey lamprey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sea lavender is a kind of subshrub", "pln": ["(: cnet_isa_d33ff5e828 (IsA sea_lavender subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sea lawyer is a kind of mariner", "pln": ["(: cnet_isa_f053f4aa65 (IsA sea_lawyer mariner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea lettuce is a kind of green algae", "pln": ["(: cnet_isa_21d6b21043 (IsA sea_lettuce green_algae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea level is a kind of water level", "pln": ["(: cnet_isa_145dce3bd5 (IsA sea_level water_level) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea level pressure is a kind of atmospheric pressure", "pln": ["(: cnet_isa_1ec04932e5 (IsA sea_level_pressure atmospheric_pressure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea lily is a kind of crinoid", "pln": ["(: cnet_isa_cacc1a605a (IsA sea_lily crinoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sea lion is a kind of eared seal", "pln": ["(: cnet_isa_f4a1fdc45d (IsA sea_lion eared_seal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea louse is a kind of isopod", "pln": ["(: cnet_isa_12680e6fa2 (IsA sea_louse isopod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea lyme grass is a kind of lyme grass", "pln": ["(: cnet_isa_f3a3415d8b (IsA sea_lyme_grass lyme_grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea mile is a kind of nautical linear unit", "pln": ["(: cnet_isa_51983ae48b (IsA sea_mile nautical_linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea milkwort is a kind of herb", "pln": ["(: cnet_isa_eea15c5e96 (IsA sea_milkwort herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea moss is a kind of red algae", "pln": ["(: cnet_isa_93f99924e9 (IsA sea_moss red_algae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea mouse is a kind of polychaete", "pln": ["(: cnet_isa_a77d0b04fc (IsA sea_mouse polychaete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea nymph is a kind of water nymph", "pln": ["(: cnet_isa_fbbf6e3356 (IsA sea_nymph water_nymph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea otter is a kind of musteline mammal", "pln": ["(: cnet_isa_995f30c0f9 (IsA sea_otter musteline_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea pen is a kind of anthozoan", "pln": ["(: cnet_isa_9a8922b247 (IsA sea_pen anthozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea power is a kind of state", "pln": ["(: cnet_isa_261148b819 (IsA sea_power state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sea power is a kind of military capability", "pln": ["(: cnet_isa_46950a79e2 (IsA sea_power military_capability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea raven is a kind of sculpin", "pln": ["(: cnet_isa_1ec265083a (IsA sea_raven sculpin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea robin is a kind of gurnard", "pln": ["(: cnet_isa_d681ef0c64 (IsA sea_robin gurnard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea rocket is a kind of herb", "pln": ["(: cnet_isa_507f0acf39 (IsA sea_rocket herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea room is a kind of room", "pln": ["(: cnet_isa_ad18660ade (IsA sea_room room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea scallop is a kind of scallop", "pln": ["(: cnet_isa_7cc89fa7ae (IsA sea_scallop scallop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea scout is a kind of boy scout", "pln": ["(: cnet_isa_776ef911f6 (IsA sea_scout boy_scout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea serpent is a kind of legendary creature", "pln": ["(: cnet_isa_a56bb97793 (IsA sea_serpent legendary_creature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea slug is a kind of gastropod", "pln": ["(: cnet_isa_0874e0511e (IsA sea_slug gastropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea snake is a kind of snake", "pln": ["(: cnet_isa_796f8bde8b (IsA sea_snake snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea spider is a kind of arthropod", "pln": ["(: cnet_isa_9e3d33bc9a (IsA sea_spider arthropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea spray is a kind of spray", "pln": ["(: cnet_isa_922e472aa4 (IsA sea_spray spray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea squill is a kind of liliaceous plant", "pln": ["(: cnet_isa_a99baea4a2 (IsA sea_squill liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea squirt is a kind of ascidian", "pln": ["(: cnet_isa_e362d5d18d (IsA sea_squirt ascidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea swallow is a kind of tern", "pln": ["(: cnet_isa_3c271c1161 (IsA sea_swallow tern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea tangle is a kind of kelp", "pln": ["(: cnet_isa_18336d9dd7 (IsA sea_tangle kelp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea trout is a kind of brown trout", "pln": ["(: cnet_isa_159b45dcf6 (IsA sea_trout brown_trout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea trout is a kind of sciaenid fish", "pln": ["(: cnet_isa_f9177a700c (IsA sea_trout sciaenid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea trout is a kind of trout", "pln": ["(: cnet_isa_cec20a626c (IsA sea_trout trout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea turtle is a kind of turtle", "pln": ["(: cnet_isa_f147c1cc04 (IsA sea_turtle turtle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea urchin is a kind of echinoderm", "pln": ["(: cnet_isa_bd27caf2d0 (IsA sea_urchin echinoderm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea wormwood is a kind of wormwood", "pln": ["(: cnet_isa_ed2c693a50 (IsA sea_wormwood wormwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sea wrack is a kind of seaweed", "pln": ["(: cnet_isa_d16993f54a (IsA sea_wrack seaweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seabag is a kind of drawstring bag", "pln": ["(: cnet_isa_a16f1a0ec9 (IsA seabag drawstring_bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seabeach sandwort is a kind of sandwort", "pln": ["(: cnet_isa_c30f667cbd (IsA seabeach_sandwort sandwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "seabird is a kind of aquatic bird", "pln": ["(: cnet_isa_2a0e69e0e8 (IsA seabird aquatic_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seafaring is a kind of employment", "pln": ["(: cnet_isa_eecfaaca3d (IsA seafaring employment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seafood is a kind of food", "pln": ["(: cnet_isa_7cc85e8ac4 (IsA seafood food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seafood newburg is a kind of dish", "pln": ["(: cnet_isa_682c18a9d5 (IsA seafood_newburg dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seafront is a kind of waterfront", "pln": ["(: cnet_isa_ad02b93939 (IsA seafront waterfront) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seagrass is a kind of seaweed", "pln": ["(: cnet_isa_af8125a210 (IsA seagrass seaweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seahorse is a kind of pipefish", "pln": ["(: cnet_isa_47953426aa (IsA seahorse pipefish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seal is a kind of pinniped mammal", "pln": ["(: cnet_isa_7bd97c0c75 (IsA seal pinniped_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seal is a kind of coating", "pln": ["(: cnet_isa_22caf1d3df (IsA seal coating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seal is a kind of device", "pln": ["(: cnet_isa_1b2348c00e (IsA seal device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seal is a kind of fastener", "pln": ["(: cnet_isa_3d935fc4e3 (IsA seal fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seal is a kind of stamp", "pln": ["(: cnet_isa_52bf050584 (IsA seal stamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seal is a kind of bluejacket", "pln": ["(: cnet_isa_bbd668e2f6 (IsA seal bluejacket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seal is a kind of fur", "pln": ["(: cnet_isa_550664d32b (IsA seal fur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seal bomb is a kind of explosive device", "pln": ["(: cnet_isa_99462bf730 (IsA seal_bomb explosive_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seal oil is a kind of animal oil", "pln": ["(: cnet_isa_20772c12b0 (IsA seal_oil animal_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sealant is a kind of sealing material", "pln": ["(: cnet_isa_fd49832c82 (IsA sealant sealing_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sealed instrument is a kind of contract", "pln": ["(: cnet_isa_14f3c34a7f (IsA sealed_instrument contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sealer is a kind of official", "pln": ["(: cnet_isa_c0750e6331 (IsA sealer official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sealing material is a kind of material", "pln": ["(: cnet_isa_9e3a8044d9 (IsA sealing_material material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sealing wax is a kind of fastener", "pln": ["(: cnet_isa_8a417057fb (IsA sealing_wax fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sealskin is a kind of garment", "pln": ["(: cnet_isa_eec6ee6d7a (IsA sealskin garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sealyham terrier is a kind of welsh terrier", "pln": ["(: cnet_isa_d6325fcb6e (IsA sealyham_terrier welsh_terrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "seam is a kind of joint", "pln": ["(: cnet_isa_4313082c4b (IsA seam joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seam is a kind of stratum", "pln": ["(: cnet_isa_e1a215a75c (IsA seam stratum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seamanship is a kind of skill", "pln": ["(: cnet_isa_ee2051826a (IsA seamanship skill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seamount is a kind of mountain", "pln": ["(: cnet_isa_4fef5edfab (IsA seamount mountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seanad eireann is a kind of house", "pln": ["(: cnet_isa_81deda70ee (IsA seanad_eireann house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seance is a kind of meeting", "pln": ["(: cnet_isa_4c8546e8c8 (IsA seance meeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seaplane is a kind of airplane", "pln": ["(: cnet_isa_ceeedc9c79 (IsA seaplane airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seaport is a kind of port", "pln": ["(: cnet_isa_bc1390f083 (IsA seaport port) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seaquake is a kind of earthquake", "pln": ["(: cnet_isa_21bb3cbc6b (IsA seaquake earthquake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "search is a kind of activity", "pln": ["(: cnet_isa_9b5d36ed22 (IsA search activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "search is a kind of examination", "pln": ["(: cnet_isa_ba2a47cb63 (IsA search examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "search is a kind of investigation", "pln": ["(: cnet_isa_685fa3242a (IsA search investigation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "search is a kind of higher cognitive process", "pln": ["(: cnet_isa_a9071c085b (IsA search higher_cognitive_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "search is a kind of operation", "pln": ["(: cnet_isa_023d0e67cc (IsA search operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "search and destroy mission is a kind of mission", "pln": ["(: cnet_isa_61a4c13078 (IsA search_and_destroy_mission mission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "search and rescue mission is a kind of rescue", "pln": ["(: cnet_isa_67a916b3c5 (IsA search_and_rescue_mission rescue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "search engine is a kind of program", "pln": ["(: cnet_isa_d9a700ec3b (IsA search_engine program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "search mission is a kind of mission", "pln": ["(: cnet_isa_eb9ea8d912 (IsA search_mission mission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "search party is a kind of party", "pln": ["(: cnet_isa_cadde7a68e (IsA search_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "search warrant is a kind of warrant", "pln": ["(: cnet_isa_77ffdb6475 (IsA search_warrant warrant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "searcher is a kind of calosoma", "pln": ["(: cnet_isa_9b97a7140c (IsA searcher calosoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "searcher is a kind of official", "pln": ["(: cnet_isa_b2908ca1da (IsA searcher official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "searching fire is a kind of fire", "pln": ["(: cnet_isa_6d57b1d854 (IsA searching_fire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "searchlight is a kind of light", "pln": ["(: cnet_isa_cb7344fbb1 (IsA searchlight light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "searing is a kind of cooking", "pln": ["(: cnet_isa_1e0fb1776b (IsA searing cooking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "searing iron is a kind of cautery", "pln": ["(: cnet_isa_f9251b9e15 (IsA searing_iron cautery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seascape is a kind of painting", "pln": ["(: cnet_isa_72eb1d8bdc (IsA seascape painting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seascape is a kind of scenery", "pln": ["(: cnet_isa_1128acb225 (IsA seascape scenery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seashell is a kind of shell", "pln": ["(: cnet_isa_de1748f273 (IsA seashell shell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "seashore is a kind of shore", "pln": ["(: cnet_isa_835d0f14e3 (IsA seashore shore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seashore mallow is a kind of mallow", "pln": ["(: cnet_isa_bc408ef523 (IsA seashore_mallow mallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seasickness is a kind of motion sickness", "pln": ["(: cnet_isa_4e919bea25 (IsA seasickness motion_sickness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seaside is a kind of seashore", "pln": ["(: cnet_isa_923abfe286 (IsA seaside seashore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seaside alder is a kind of alder", "pln": ["(: cnet_isa_11a5bd1169 (IsA seaside_alder alder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seaside centaury is a kind of centaury", "pln": ["(: cnet_isa_23ca653f8e (IsA seaside_centaury centaury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seaside daisy is a kind of fleabane", "pln": ["(: cnet_isa_3a625a74f5 (IsA seaside_daisy fleabane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seaside goldenrod is a kind of goldenrod", "pln": ["(: cnet_isa_4c7a9488e0 (IsA seaside_goldenrod goldenrod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seasnail is a kind of gastropod", "pln": ["(: cnet_isa_d7d20fc55c (IsA seasnail gastropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "season is a kind of time period", "pln": ["(: cnet_isa_812b5e2d61 (IsA season time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seasonableness is a kind of timing", "pln": ["(: cnet_isa_ff2bf80699 (IsA seasonableness timing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seasonal adjustment is a kind of allowance", "pln": ["(: cnet_isa_8f7a20771f (IsA seasonal_adjustment allowance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seasonal worker is a kind of worker", "pln": ["(: cnet_isa_559b7d5425 (IsA seasonal_worker worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seasoned salt is a kind of flavorer", "pln": ["(: cnet_isa_efbe36354d (IsA seasoned_salt flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seasoner is a kind of cook", "pln": ["(: cnet_isa_a26a49efb1 (IsA seasoner cook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seasoning is a kind of change of state", "pln": ["(: cnet_isa_bc5e958ece (IsA seasoning change_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seat is a kind of cloth covering", "pln": ["(: cnet_isa_643ce00c2c (IsA seat cloth_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seat is a kind of furniture", "pln": ["(: cnet_isa_d1c5131fcf (IsA seat furniture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seat is a kind of part", "pln": ["(: cnet_isa_08512973d2 (IsA seat part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seat is a kind of support", "pln": ["(: cnet_isa_2db5bcd4be (IsA seat support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seat is a kind of legal right", "pln": ["(: cnet_isa_e96392f8e3 (IsA seat legal_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seat is a kind of space", "pln": ["(: cnet_isa_51424b61c5 (IsA seat space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seat is a kind of center", "pln": ["(: cnet_isa_01d78fd928 (IsA seat center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "seat is a kind of location", "pln": ["(: cnet_isa_bd4e7a0d11 (IsA seat location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seat belt is a kind of safety belt", "pln": ["(: cnet_isa_9763923e45 (IsA seat_belt safety_belt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seat cushion is a kind of cushion", "pln": ["(: cnet_isa_c10e3ac55d (IsA seat_cushion cushion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seating is a kind of service", "pln": ["(: cnet_isa_0727786fe8 (IsA seating service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seating is a kind of room", "pln": ["(: cnet_isa_091e3e3a23 (IsA seating room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seating capacity is a kind of capaciousness", "pln": ["(: cnet_isa_f5e223766b (IsA seating_capacity capaciousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seattle is a kind of city in washington", "pln": ["(: cnet_isa_c127eca9cc (IsA seattle city_in_washington) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seaward is a kind of direction", "pln": ["(: cnet_isa_0a6c3686a8 (IsA seaward direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seawater is a kind of saltwater", "pln": ["(: cnet_isa_932a522a1e (IsA seawater saltwater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seawater is a kind of water", "pln": ["(: cnet_isa_4eb8242380 (IsA seawater water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seaway is a kind of lane", "pln": ["(: cnet_isa_5c36670b7e (IsA seaway lane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seaweed is a kind of plant", "pln": ["(: cnet_isa_f5128533ad (IsA seaweed plant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "seaweed is a kind of alga", "pln": ["(: cnet_isa_0a001ac40d (IsA seaweed alga) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seaworthiness is a kind of soundness", "pln": ["(: cnet_isa_a5f5008745 (IsA seaworthiness soundness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sebaceous cyst is a kind of cyst", "pln": ["(: cnet_isa_5b83f472f3 (IsA sebaceous_cyst cyst) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sebaceous gland is a kind of oil gland", "pln": ["(: cnet_isa_9742fcdde4 (IsA sebaceous_gland oil_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sebacic acid is a kind of carboxylic acid", "pln": ["(: cnet_isa_f07b30b456 (IsA sebacic_acid carboxylic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sebastiana is a kind of rosid dicot genus", "pln": ["(: cnet_isa_775336ec6d (IsA sebastiana rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sebastode is a kind of fish genus", "pln": ["(: cnet_isa_ffed9d84d1 (IsA sebastode fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seborrhea is a kind of skin disease", "pln": ["(: cnet_isa_26a56ab9fe (IsA seborrhea skin_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seborrheic dermatitis is a kind of dermatitis", "pln": ["(: cnet_isa_dc238962a7 (IsA seborrheic_dermatitis dermatitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "seborrheic keratosis is a kind of keratosis", "pln": ["(: cnet_isa_01dc487078 (IsA seborrheic_keratosis keratosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sebum is a kind of secretion", "pln": ["(: cnet_isa_d6a2209903 (IsA sebum secretion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "secale is a kind of monocot genus", "pln": ["(: cnet_isa_97ee5c8d75 (IsA secale monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "secant is a kind of trigonometric function", "pln": ["(: cnet_isa_1be7a0150c (IsA secant trigonometric_function) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secant is a kind of straight line", "pln": ["(: cnet_isa_9e6da5ea8a (IsA secant straight_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secateur is a kind of pruning shear", "pln": ["(: cnet_isa_98bb128994 (IsA secateur pruning_shear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "secession is a kind of separation", "pln": ["(: cnet_isa_00f3105324 (IsA secession separation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secession is a kind of artistic movement", "pln": ["(: cnet_isa_4c614bf36d (IsA secession artistic_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secession is a kind of school", "pln": ["(: cnet_isa_e4ac4ab129 (IsA secession school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "secessionism is a kind of doctrine", "pln": ["(: cnet_isa_3d72409a86 (IsA secessionism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secessionist is a kind of agent non geographical", "pln": ["(: cnet_isa_ba02c1fe7b (IsA secessionist agent_non_geographical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secessionist is a kind of organization", "pln": ["(: cnet_isa_b2a01ae2a8 (IsA secessionist organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secessionist is a kind of advocate", "pln": ["(: cnet_isa_bf89ce53b1 (IsA secessionist advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seckel is a kind of pear", "pln": ["(: cnet_isa_32760a14dc (IsA seckel pear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seclusion is a kind of separation", "pln": ["(: cnet_isa_6218471b0f (IsA seclusion separation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second is a kind of agreement", "pln": ["(: cnet_isa_b8d835f123 (IsA second agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second is a kind of rank", "pln": ["(: cnet_isa_78a0ae407e (IsA second rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second is a kind of attendant", "pln": ["(: cnet_isa_0947cf480f (IsA second attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second is a kind of angular unit", "pln": ["(: cnet_isa_8ba3a2db6f (IsA second angular_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second is a kind of time unit", "pln": ["(: cnet_isa_230075e010 (IsA second time_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second adventist is a kind of christian", "pln": ["(: cnet_isa_c8abd27a38 (IsA second_adventist christian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second balcony is a kind of area", "pln": ["(: cnet_isa_bfde5f1d72 (IsA second_balcony area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second base is a kind of position", "pln": ["(: cnet_isa_ca5f7370ed (IsA second_base position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second base is a kind of base", "pln": ["(: cnet_isa_7923bc846a (IsA second_base base) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second baseman is a kind of infielder", "pln": ["(: cnet_isa_c12ef4dc98 (IsA second_baseman infielder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second class is a kind of inferiority", "pln": ["(: cnet_isa_52b3c1d187 (IsA second_class inferiority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second class is a kind of rank", "pln": ["(: cnet_isa_2176fb4183 (IsA second_class rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second council of constantinople is a kind of ecumenical council", "pln": ["(: cnet_isa_fae5a204c0 (IsA second_council_of_constantinople ecumenical_council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second council of lyon is a kind of council", "pln": ["(: cnet_isa_e19f3762ee (IsA second_council_of_lyon council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second council of nicaea is a kind of ecumenical council", "pln": ["(: cnet_isa_b676c0cef7 (IsA second_council_of_nicaea ecumenical_council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second cousin is a kind of relative", "pln": ["(: cnet_isa_df39094715 (IsA second_cousin relative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second degree burn is a kind of burn", "pln": ["(: cnet_isa_fbf0921ae0 (IsA second_degree_burn burn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second empire is a kind of empire", "pln": ["(: cnet_isa_318c733ab9 (IsA second_empire empire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second estate is a kind of estate", "pln": ["(: cnet_isa_da6d4b7d42 (IsA second_estate estate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second fiddle is a kind of function", "pln": ["(: cnet_isa_e04703c72e (IsA second_fiddle function) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second fiddle is a kind of subordinate", "pln": ["(: cnet_isa_59e4a54725 (IsA second_fiddle subordinate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second gear is a kind of gear", "pln": ["(: cnet_isa_17ab167bde (IsA second_gear gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second growth is a kind of forest", "pln": ["(: cnet_isa_5af8d80974 (IsA second_growth forest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second half is a kind of half", "pln": ["(: cnet_isa_5c8a54a1ca (IsA second_half half) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second hand is a kind of hand", "pln": ["(: cnet_isa_55b4881ddf (IsA second_hand hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second hand is a kind of mediator", "pln": ["(: cnet_isa_6821de2e57 (IsA second_hand mediator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second hand speech is a kind of conversation", "pln": ["(: cnet_isa_b0d0b007c8 (IsA second_hand_speech conversation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second in command is a kind of deputy", "pln": ["(: cnet_isa_eb7ce4a241 (IsA second_in_command deputy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "second joint is a kind of helping", "pln": ["(: cnet_isa_f326912bea (IsA second_joint helping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second lateran council is a kind of lateran council", "pln": ["(: cnet_isa_5d23a5a30d (IsA second_lateran_council lateran_council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second law of motion is a kind of newton s law of motion", "pln": ["(: cnet_isa_b615376405 (IsA second_law_of_motion newton_s_law_of_motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second law of thermodynamic is a kind of law of thermodynamic", "pln": ["(: cnet_isa_54d183d7bc (IsA second_law_of_thermodynamic law_of_thermodynamic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second lieutenant is a kind of lieutenant", "pln": ["(: cnet_isa_d2de9d435d (IsA second_lieutenant lieutenant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "second moment is a kind of moment", "pln": ["(: cnet_isa_74e3bb25b0 (IsA second_moment moment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second month of year is a kind of february", "pln": ["(: cnet_isa_f6dab9478d (IsA second_month_of_year february) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second mortgage is a kind of mortgage", "pln": ["(: cnet_isa_b7b2b96b05 (IsA second_mortgage mortgage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second nature is a kind of habit", "pln": ["(: cnet_isa_b903d9b6f8 (IsA second_nature habit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second period is a kind of part", "pln": ["(: cnet_isa_f505b376da (IsA second_period part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "second person is a kind of person", "pln": ["(: cnet_isa_932c17e298 (IsA second_person person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second place finish is a kind of finish", "pln": ["(: cnet_isa_e890f2bdff (IsA second_place_finish finish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second rater is a kind of person", "pln": ["(: cnet_isa_aba07e1159 (IsA second_rater person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second reading is a kind of presentation", "pln": ["(: cnet_isa_d1b9a023b0 (IsA second_reading presentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second string is a kind of team", "pln": ["(: cnet_isa_650a1ecd1b (IsA second_string team) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second trimester is a kind of trimester", "pln": ["(: cnet_isa_aa1bb6475f (IsA second_trimester trimester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second vatican council is a kind of vatican council", "pln": ["(: cnet_isa_fca86c146e (IsA second_vatican_council vatican_council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second wind is a kind of breathing", "pln": ["(: cnet_isa_5b029231b1 (IsA second_wind breathing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "second wind is a kind of energy", "pln": ["(: cnet_isa_57d9609aa2 (IsA second_wind energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secondary is a kind of formation", "pln": ["(: cnet_isa_224322553f (IsA secondary formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secondary amenorrhea is a kind of amenorrhea", "pln": ["(: cnet_isa_e35442e452 (IsA secondary_amenorrhea amenorrhea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secondary censorship is a kind of armed force censorship", "pln": ["(: cnet_isa_36ae47488b (IsA secondary_censorship armed_force_censorship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secondary coil is a kind of coil", "pln": ["(: cnet_isa_ed7a38b82d (IsA secondary_coil coil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secondary dentition is a kind of dentition", "pln": ["(: cnet_isa_eb87fde94d (IsA secondary_dentition dentition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secondary diagonal is a kind of diagonal", "pln": ["(: cnet_isa_d90e9bb651 (IsA secondary_diagonal diagonal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secondary dysmenorrhea is a kind of dysmenorrhea", "pln": ["(: cnet_isa_6b03ea0270 (IsA secondary_dysmenorrhea dysmenorrhea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secondary education is a kind of education", "pln": ["(: cnet_isa_4eb35906c7 (IsA secondary_education education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secondary emission is a kind of emission", "pln": ["(: cnet_isa_8fd99cc8ad (IsA secondary_emission emission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secondary hypertension is a kind of high blood pressure", "pln": ["(: cnet_isa_c42c73155c (IsA secondary_hypertension high_blood_pressure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secondary modern school is a kind of secondary school", "pln": ["(: cnet_isa_f8309d5e52 (IsA secondary_modern_school secondary_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secondary school is a kind of school", "pln": ["(: cnet_isa_58042fd0e6 (IsA secondary_school school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "secondary sex characteristic is a kind of sex characteristic", "pln": ["(: cnet_isa_f727214542 (IsA secondary_sex_characteristic sex_characteristic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "secondary syphilis is a kind of syphilis", "pln": ["(: cnet_isa_93e6269436 (IsA secondary_syphilis syphilis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "seconder is a kind of supporter", "pln": ["(: cnet_isa_1eadad31e4 (IsA seconder supporter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "secondhand car is a kind of car", "pln": ["(: cnet_isa_27d7c21eae (IsA secondhand_car car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secondment is a kind of reassignment", "pln": ["(: cnet_isa_cd09423a02 (IsA secondment reassignment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secondo is a kind of part", "pln": ["(: cnet_isa_5c4cfda8f0 (IsA secondo part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secotiaceae is a kind of fungus family", "pln": ["(: cnet_isa_14aa50fd5d (IsA secotiaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secotiale is a kind of fungus order", "pln": ["(: cnet_isa_1923e5f5c3 (IsA secotiale fungus_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secrecy is a kind of uncommunicativeness", "pln": ["(: cnet_isa_e4c6007c11 (IsA secrecy uncommunicativeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secret is a kind of information", "pln": ["(: cnet_isa_d537996d2e (IsA secret information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secret agent is a kind of agent", "pln": ["(: cnet_isa_8b2e31d9b4 (IsA secret_agent agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secret ballot is a kind of vote", "pln": ["(: cnet_isa_0a56dd17b3 (IsA secret_ballot vote) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secret intelligence service is a kind of international intelligence agency", "pln": ["(: cnet_isa_c6abcc5150 (IsA secret_intelligence_service international_intelligence_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secret police is a kind of police", "pln": ["(: cnet_isa_1a39f7dd66 (IsA secret_police police) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secret society is a kind of association", "pln": ["(: cnet_isa_518689d2a7 (IsA secret_society association) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secretarial school is a kind of school", "pln": ["(: cnet_isa_d509e2de40 (IsA secretarial_school school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secretariat is a kind of administrative unit", "pln": ["(: cnet_isa_8b16e4f762 (IsA secretariat administrative_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secretary is a kind of desk", "pln": ["(: cnet_isa_732dca4a79 (IsA secretary desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secretary is a kind of assistant", "pln": ["(: cnet_isa_a06e0cdb17 (IsA secretary assistant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secretary is a kind of head", "pln": ["(: cnet_isa_826095c0e4 (IsA secretary head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secretary bird is a kind of bird of prey", "pln": ["(: cnet_isa_810355d72f (IsA secretary_bird bird_of_prey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secretary general is a kind of administrator", "pln": ["(: cnet_isa_e343655bba (IsA secretary_general administrator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secretary of agriculture is a kind of secretaryship", "pln": ["(: cnet_isa_6c08e1dcff (IsA secretary_of_agriculture secretaryship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "secretary of commerce is a kind of secretaryship", "pln": ["(: cnet_isa_f91281e07b (IsA secretary_of_commerce secretaryship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secretary of commerce and labor is a kind of secretaryship", "pln": ["(: cnet_isa_2a9ae1f946 (IsA secretary_of_commerce_and_labor secretaryship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secretary of defense is a kind of secretaryship", "pln": ["(: cnet_isa_46515f9cb8 (IsA secretary_of_defense secretaryship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secretary of education is a kind of secretaryship", "pln": ["(: cnet_isa_d00482bad2 (IsA secretary_of_education secretaryship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secretary of energy is a kind of secretaryship", "pln": ["(: cnet_isa_4b10b67c14 (IsA secretary_of_energy secretaryship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secretary of health and human service is a kind of secretaryship", "pln": ["(: cnet_isa_2ad15a3014 (IsA secretary_of_health_and_human_service secretaryship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secretary of health and human service is a kind of secretary", "pln": ["(: cnet_isa_094b75a020 (IsA secretary_of_health_and_human_service secretary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secretary of health education and welfare is a kind of secretaryship", "pln": ["(: cnet_isa_87f209a181 (IsA secretary_of_health_education_and_welfare secretaryship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secretary of housing and urban development is a kind of secretaryship", "pln": ["(: cnet_isa_08ebda8844 (IsA secretary_of_housing_and_urban_development secretaryship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "secretary of housing and urban development is a kind of secretary", "pln": ["(: cnet_isa_8d2d6dba92 (IsA secretary_of_housing_and_urban_development secretary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secretary of interior is a kind of secretaryship", "pln": ["(: cnet_isa_6e06d907d5 (IsA secretary_of_interior secretaryship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secretary of labor is a kind of secretaryship", "pln": ["(: cnet_isa_2d2d1b127e (IsA secretary_of_labor secretaryship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secretary of navy is a kind of secretaryship", "pln": ["(: cnet_isa_f2574c2c79 (IsA secretary_of_navy secretaryship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secretary of state is a kind of secretaryship", "pln": ["(: cnet_isa_f414ca60a5 (IsA secretary_of_state secretaryship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secretary of state is a kind of secretary", "pln": ["(: cnet_isa_06a079ba31 (IsA secretary_of_state secretary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "secretary of state for home department is a kind of cabinet minister", "pln": ["(: cnet_isa_ced73229d0 (IsA secretary_of_state_for_home_department cabinet_minister) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secretary of transportation is a kind of secretaryship", "pln": ["(: cnet_isa_528dba31d9 (IsA secretary_of_transportation secretaryship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "secretary of treasury is a kind of secretaryship", "pln": ["(: cnet_isa_62dbb91140 (IsA secretary_of_treasury secretaryship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secretary of veteran affair is a kind of secretaryship", "pln": ["(: cnet_isa_0746c7c4d2 (IsA secretary_of_veteran_affair secretaryship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secretary of veteran affair is a kind of secretary", "pln": ["(: cnet_isa_af63ecd331 (IsA secretary_of_veteran_affair secretary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secretary of war is a kind of secretaryship", "pln": ["(: cnet_isa_4cca61732a (IsA secretary_of_war secretaryship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secretaryship is a kind of position", "pln": ["(: cnet_isa_72f7dbd897 (IsA secretaryship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secretase is a kind of enzyme", "pln": ["(: cnet_isa_42b2c45840 (IsA secretase enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secretin is a kind of gastrointestinal hormone", "pln": ["(: cnet_isa_6862cf607e (IsA secretin gastrointestinal_hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secretion is a kind of liquid body substance", "pln": ["(: cnet_isa_d5e25bbc46 (IsA secretion liquid_body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secretion is a kind of organic process", "pln": ["(: cnet_isa_1a69d28dec (IsA secretion organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secretory phase is a kind of phase", "pln": ["(: cnet_isa_304e2ebedf (IsA secretory_phase phase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sect is a kind of religion", "pln": ["(: cnet_isa_b0c19e4428 (IsA sect religion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sectarian is a kind of bigot", "pln": ["(: cnet_isa_04ce910c9a (IsA sectarian bigot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sectarianism is a kind of narrow mindedness", "pln": ["(: cnet_isa_5eaad59803 (IsA sectarianism narrow_mindedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "section is a kind of part", "pln": ["(: cnet_isa_0255c25295 (IsA section part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "section is a kind of segment", "pln": ["(: cnet_isa_becb2955e7 (IsA section segment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "section is a kind of area", "pln": ["(: cnet_isa_487b5e13e1 (IsA section area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "section is a kind of army unit", "pln": ["(: cnet_isa_a1360f6cae (IsA section army_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "section is a kind of musical organization", "pln": ["(: cnet_isa_a5241e6125 (IsA section musical_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "section is a kind of team", "pln": ["(: cnet_isa_2c676580db (IsA section team) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "section is a kind of music", "pln": ["(: cnet_isa_2c344cfa03 (IsA section music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "section is a kind of writing", "pln": ["(: cnet_isa_8a8c17398d (IsA section writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "section is a kind of slice", "pln": ["(: cnet_isa_ea98588327 (IsA section slice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "section is a kind of square mile", "pln": ["(: cnet_isa_334bb21b47 (IsA section square_mile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "section eight is a kind of dismissal", "pln": ["(: cnet_isa_c7de39d55b (IsA section_eight dismissal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "section eight is a kind of soldier", "pln": ["(: cnet_isa_060f7d8f39 (IsA section_eight soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "section gang is a kind of gang", "pln": ["(: cnet_isa_12f3594233 (IsA section_gang gang) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "section hand is a kind of laborer", "pln": ["(: cnet_isa_dbdfa86fd6 (IsA section_hand laborer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "section man is a kind of teacher", "pln": ["(: cnet_isa_3231780c1f (IsA section_man teacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sectional is a kind of furniture", "pln": ["(: cnet_isa_98b08efadd (IsA sectional furniture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sectionalism is a kind of partiality", "pln": ["(: cnet_isa_82f24990fc (IsA sectionalism partiality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sector is a kind of measuring instrument", "pln": ["(: cnet_isa_c93ed386b1 (IsA sector measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sector is a kind of aspect", "pln": ["(: cnet_isa_cb9bb86f75 (IsA sector aspect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sector is a kind of social group", "pln": ["(: cnet_isa_0450ceebf0 (IsA sector social_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sector is a kind of tract", "pln": ["(: cnet_isa_c0236f5fdd (IsA sector tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sector is a kind of computer memory unit", "pln": ["(: cnet_isa_36d2545041 (IsA sector computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sector is a kind of plane figure", "pln": ["(: cnet_isa_f612e75edd (IsA sector plane_figure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secularism is a kind of doctrine", "pln": ["(: cnet_isa_0a69a9a493 (IsA secularism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "secularist is a kind of advocate", "pln": ["(: cnet_isa_43b2cc7609 (IsA secularist advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secularization is a kind of change", "pln": ["(: cnet_isa_dbd048f9a2 (IsA secularization change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secularization is a kind of transfer", "pln": ["(: cnet_isa_546539b416 (IsA secularization transfer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secundigravida is a kind of gravida", "pln": ["(: cnet_isa_0a66918daa (IsA secundigravida gravida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secured bond is a kind of bond", "pln": ["(: cnet_isa_bf81173f49 (IsA secured_bond bond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "secureness is a kind of security", "pln": ["(: cnet_isa_58ce2ec3fb (IsA secureness security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "security and exchange commission is a kind of independent agency", "pln": ["(: cnet_isa_43b3d6d94f (IsA security_and_exchange_commission independent_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "security law is a kind of law", "pln": ["(: cnet_isa_b9d7032b18 (IsA security_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "security is a kind of precaution", "pln": ["(: cnet_isa_bfbdfebbd9 (IsA security precaution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "security is a kind of guarantee", "pln": ["(: cnet_isa_5171fbb1a9 (IsA security guarantee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "security is a kind of fearlessness", "pln": ["(: cnet_isa_ce403c5b5f (IsA security fearlessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "security is a kind of department", "pln": ["(: cnet_isa_8a694b8bf0 (IsA security department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "security is a kind of asset", "pln": ["(: cnet_isa_fc10614cb1 (IsA security asset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "security is a kind of legal document", "pln": ["(: cnet_isa_1c58f1c296 (IsA security legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "security is a kind of transferred property", "pln": ["(: cnet_isa_0e266b8c66 (IsA security transferred_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "security is a kind of safety", "pln": ["(: cnet_isa_f83177108d (IsA security safety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "security blanket is a kind of blanket", "pln": ["(: cnet_isa_d5f207df7b (IsA security_blanket blanket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "security blanket is a kind of thing", "pln": ["(: cnet_isa_3c6840a82b (IsA security_blanket thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "security consultant is a kind of adviser", "pln": ["(: cnet_isa_98e5dd9ed8 (IsA security_consultant adviser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "security council is a kind of council", "pln": ["(: cnet_isa_97fe767afa (IsA security_council council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "security director is a kind of administrator", "pln": ["(: cnet_isa_6783632aab (IsA security_director administrator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "security force is a kind of force", "pln": ["(: cnet_isa_e8304d79c8 (IsA security_force force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "security force personnel is a kind of worker", "pln": ["(: cnet_isa_486938ab39 (IsA security_force_personnel worker) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "security intelligence is a kind of counterintelligence", "pln": ["(: cnet_isa_1ca5e0d37d (IsA security_intelligence counterintelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "security intelligence review committee is a kind of international intelligence agency", "pln": ["(: cnet_isa_2f573337d9 (IsA security_intelligence_review_committee international_intelligence_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "security interest is a kind of interest", "pln": ["(: cnet_isa_836e240701 (IsA security_interest interest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "security officer is a kind of worker", "pln": ["(: cnet_isa_1b828f7ba2 (IsA security_officer worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "security service is a kind of international intelligence agency", "pln": ["(: cnet_isa_f488616d01 (IsA security_service international_intelligence_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "security staff is a kind of staff", "pln": ["(: cnet_isa_7ec102d3b9 (IsA security_staff staff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "security system is a kind of electrical device", "pln": ["(: cnet_isa_5fa2d21541 (IsA security_system electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "security system is a kind of system", "pln": ["(: cnet_isa_b6775619d2 (IsA security_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sedan is a kind of car", "pln": ["(: cnet_isa_d82a4dbb8b (IsA sedan car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sedan is a kind of litter", "pln": ["(: cnet_isa_19caf55631 (IsA sedan litter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sedateness is a kind of seriousness", "pln": ["(: cnet_isa_0d4d44ba26 (IsA sedateness seriousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sedation is a kind of administration", "pln": ["(: cnet_isa_33b6b0baa5 (IsA sedation administration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sedation is a kind of physiological state", "pln": ["(: cnet_isa_97ff64b079 (IsA sedation physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sedative is a kind of drug of abuse", "pln": ["(: cnet_isa_557fd106a3 (IsA sedative drug_of_abuse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sedative is a kind of medicine", "pln": ["(: cnet_isa_81576986ab (IsA sedative medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sedative hypnotic is a kind of sedative", "pln": ["(: cnet_isa_bef7aa640f (IsA sedative_hypnotic sedative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seder is a kind of supper", "pln": ["(: cnet_isa_7e342a5bc9 (IsA seder supper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sedge is a kind of marsh plant", "pln": ["(: cnet_isa_9924cc9363 (IsA sedge marsh_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sedge warbler is a kind of old world warbler", "pln": ["(: cnet_isa_ef0d9e6f5b (IsA sedge_warbler old_world_warbler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sedge wren is a kind of marsh wren", "pln": ["(: cnet_isa_c39fd8f411 (IsA sedge_wren marsh_wren) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sediment is a kind of substance", "pln": ["(: cnet_isa_4df19b154f (IsA sediment substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sedimentary is a kind of rock", "pln": ["(: cnet_isa_92a66f65fe (IsA sedimentary rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sedimentary clay is a kind of soil", "pln": ["(: cnet_isa_b65c975ac6 (IsA sedimentary_clay soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sedimentary rock is a kind of rock", "pln": ["(: cnet_isa_ef8816582d (IsA sedimentary_rock rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sedition is a kind of misdemeanor", "pln": ["(: cnet_isa_ac106a8d32 (IsA sedition misdemeanor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seducer is a kind of bad person", "pln": ["(: cnet_isa_efea1dfae8 (IsA seducer bad_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seducer is a kind of libertine", "pln": ["(: cnet_isa_8bb5259079 (IsA seducer libertine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seduction is a kind of enticement", "pln": ["(: cnet_isa_95733c9374 (IsA seduction enticement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seduction is a kind of success", "pln": ["(: cnet_isa_ab706a3085 (IsA seduction success) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seductress is a kind of seducer", "pln": ["(: cnet_isa_e3acb4a03e (IsA seductress seducer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sedulity is a kind of diligence", "pln": ["(: cnet_isa_c7490edc97 (IsA sedulity diligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sedum is a kind of herb", "pln": ["(: cnet_isa_a94e8fa2f1 (IsA sedum herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "see is a kind of seat", "pln": ["(: cnet_isa_ffd92df0c4 (IsA see seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seed is a kind of fruit", "pln": ["(: cnet_isa_018668c6cc (IsA seed fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "seed is a kind of ovule", "pln": ["(: cnet_isa_18445088fb (IsA seed ovule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seed beetle is a kind of weevil", "pln": ["(: cnet_isa_c748d3be23 (IsA seed_beetle weevil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seed catalog is a kind of catalog", "pln": ["(: cnet_isa_5ae09c9886 (IsA seed_catalog catalog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seed corn is a kind of seed stock", "pln": ["(: cnet_isa_021ac6ee8e (IsA seed_corn seed_stock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "seed fern is a kind of gymnosperm", "pln": ["(: cnet_isa_5298712d97 (IsA seed_fern gymnosperm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seed lac is a kind of lac", "pln": ["(: cnet_isa_3eba2bab86 (IsA seed_lac lac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seed money is a kind of capital", "pln": ["(: cnet_isa_13bf698071 (IsA seed_money capital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seed oyster is a kind of oyster", "pln": ["(: cnet_isa_f340d03fc4 (IsA seed_oyster oyster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seed pearl is a kind of pearl", "pln": ["(: cnet_isa_c055ce1079 (IsA seed_pearl pearl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seed shrimp is a kind of crustacean", "pln": ["(: cnet_isa_2b0d6eb41f (IsA seed_shrimp crustacean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seed stock is a kind of store", "pln": ["(: cnet_isa_a51d89722f (IsA seed_stock store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seedbed is a kind of bed", "pln": ["(: cnet_isa_a1bcf478e9 (IsA seedbed bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seedcake is a kind of cake", "pln": ["(: cnet_isa_4399eee34d (IsA seedcake cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seeded player is a kind of player", "pln": ["(: cnet_isa_3105c8efd2 (IsA seeded_player player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "seeded raisin is a kind of raisin", "pln": ["(: cnet_isa_d4574aed97 (IsA seeded_raisin raisin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seeder is a kind of kitchen utensil", "pln": ["(: cnet_isa_efcba0c394 (IsA seeder kitchen_utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seeder is a kind of mechanical device", "pln": ["(: cnet_isa_da5bb35599 (IsA seeder mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seeder is a kind of person", "pln": ["(: cnet_isa_ee6b2d5483 (IsA seeder person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "seedless raisin is a kind of raisin", "pln": ["(: cnet_isa_d8535ebb22 (IsA seedless_raisin raisin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seedling is a kind of spermatophyte", "pln": ["(: cnet_isa_8b5c0e7187 (IsA seedling spermatophyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seedsman is a kind of trader", "pln": ["(: cnet_isa_ae68b4a48b (IsA seedsman trader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seedtime is a kind of phase", "pln": ["(: cnet_isa_0186ab045e (IsA seedtime phase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seedtime is a kind of season", "pln": ["(: cnet_isa_510e373560 (IsA seedtime season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seeing is a kind of sense", "pln": ["(: cnet_isa_b5dffcb6d0 (IsA seeing sense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seeing eye dog is a kind of guide dog", "pln": ["(: cnet_isa_4d356016e8 (IsA seeing_eye_dog guide_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seek is a kind of movement", "pln": ["(: cnet_isa_2bb6132c6a (IsA seek movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seek time is a kind of time interval", "pln": ["(: cnet_isa_aef93e6f54 (IsA seek_time time_interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seeker is a kind of projectile", "pln": ["(: cnet_isa_a9ecb7ad1d (IsA seeker projectile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seeker is a kind of person", "pln": ["(: cnet_isa_642d38dae6 (IsA seeker person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seeking is a kind of attempt", "pln": ["(: cnet_isa_891dd4493d (IsA seeking attempt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seemliness is a kind of propriety", "pln": ["(: cnet_isa_e9744644c2 (IsA seemliness propriety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "seepage is a kind of flow", "pln": ["(: cnet_isa_b8041522a4 (IsA seepage flow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seer is a kind of perceiver", "pln": ["(: cnet_isa_a47b4b1675 (IsA seer perceiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seersucker is a kind of fabric", "pln": ["(: cnet_isa_6fbd1e9d67 (IsA seersucker fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seesaw is a kind of plaything", "pln": ["(: cnet_isa_8be5442a7f (IsA seesaw plaything) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "segment is a kind of part", "pln": ["(: cnet_isa_22fd6b16d8 (IsA segment part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "segmental arch is a kind of arch", "pln": ["(: cnet_isa_a953301a16 (IsA segmental_arch arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "segno is a kind of musical notation", "pln": ["(: cnet_isa_5dfd3b9cdd (IsA segno musical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sego lily is a kind of liliaceous plant", "pln": ["(: cnet_isa_b75912c481 (IsA sego_lily liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "segregate is a kind of person", "pln": ["(: cnet_isa_458012b6f8 (IsA segregate person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "segregation is a kind of separation", "pln": ["(: cnet_isa_12ac275476 (IsA segregation separation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "segregation is a kind of organic process", "pln": ["(: cnet_isa_67fa6e4b76 (IsA segregation organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "segregation is a kind of social organization", "pln": ["(: cnet_isa_4e4d25f71d (IsA segregation social_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "segregationism is a kind of political orientation", "pln": ["(: cnet_isa_340506fd44 (IsA segregationism political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "segregator is a kind of bigot", "pln": ["(: cnet_isa_9668a3b145 (IsA segregator bigot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "segue is a kind of passage", "pln": ["(: cnet_isa_da734b76a3 (IsA segue passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sei whale is a kind of rorqual", "pln": ["(: cnet_isa_048f7d64ee (IsA sei_whale rorqual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seiche is a kind of wave", "pln": ["(: cnet_isa_c7f4d90aa0 (IsA seiche wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seidel is a kind of glass", "pln": ["(: cnet_isa_61dd60d8e0 (IsA seidel glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seidlitz powder is a kind of purgative", "pln": ["(: cnet_isa_47f6441db9 (IsA seidlitz_powder purgative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seif dune is a kind of dune", "pln": ["(: cnet_isa_5755681bac (IsA seif_dune dune) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seigneury is a kind of estate", "pln": ["(: cnet_isa_dbd798df86 (IsA seigneury estate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seigniorage is a kind of fee", "pln": ["(: cnet_isa_d48486d650 (IsA seigniorage fee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "seine is a kind of fishnet", "pln": ["(: cnet_isa_e46673c020 (IsA seine fishnet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seismogram is a kind of graph", "pln": ["(: cnet_isa_f2664863c9 (IsA seismogram graph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seismograph is a kind of measuring instrument", "pln": ["(: cnet_isa_013acfaaed (IsA seismograph measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seismography is a kind of measurement", "pln": ["(: cnet_isa_a44d3ddfb1 (IsA seismography measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seismologist is a kind of geophysicist", "pln": ["(: cnet_isa_91a1a3a7b4 (IsA seismologist geophysicist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seismology is a kind of geophysic", "pln": ["(: cnet_isa_8f7e1effa2 (IsA seismology geophysic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "seismosaurus is a kind of reptile genus", "pln": ["(: cnet_isa_6e1e5caa21 (IsA seismosaurus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seiurus is a kind of bird genus", "pln": ["(: cnet_isa_cf90e0c6a6 (IsA seiurus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seizing is a kind of small stuff", "pln": ["(: cnet_isa_ec438cd1ba (IsA seizing small_stuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seizure is a kind of appropriation", "pln": ["(: cnet_isa_6a90b844b5 (IsA seizure appropriation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seizure is a kind of attack", "pln": ["(: cnet_isa_50a150a591 (IsA seizure attack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "seizure alert dog is a kind of working dog", "pln": ["(: cnet_isa_6159d94289 (IsA seizure_alert_dog working_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selaginella is a kind of fern genus", "pln": ["(: cnet_isa_46e7e10337 (IsA selaginella fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selaginellaceae is a kind of fern family", "pln": ["(: cnet_isa_165d59ca4e (IsA selaginellaceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selaginellale is a kind of plant order", "pln": ["(: cnet_isa_80eb8a4a0f (IsA selaginellale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selar is a kind of fish genus", "pln": ["(: cnet_isa_e526fff989 (IsA selar fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "select committee is a kind of committee", "pln": ["(: cnet_isa_d76263d4bc (IsA select_committee committee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selection is a kind of assortment", "pln": ["(: cnet_isa_9a45eaa7ca (IsA selection assortment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "selective amnesia is a kind of amnesia", "pln": ["(: cnet_isa_7480d7d041 (IsA selective_amnesia amnesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selective serotonin reuptake inhibitor is a kind of antidepressant", "pln": ["(: cnet_isa_e93871d545 (IsA selective_serotonin_reuptake_inhibitor antidepressant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selective service is a kind of independent agency", "pln": ["(: cnet_isa_adbe0d4ad3 (IsA selective_service independent_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selectivity is a kind of property", "pln": ["(: cnet_isa_2241536a6b (IsA selectivity property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selectman is a kind of elected official", "pln": ["(: cnet_isa_3cefeb3641 (IsA selectman elected_official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selector is a kind of switch", "pln": ["(: cnet_isa_0081aa69ce (IsA selector switch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selectwoman is a kind of elected official", "pln": ["(: cnet_isa_b4c4890fc1 (IsA selectwoman elected_official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selenarcto is a kind of mammal genus", "pln": ["(: cnet_isa_c14c46ba0a (IsA selenarcto mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selene is a kind of fish genus", "pln": ["(: cnet_isa_0bccecf199 (IsA selene fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selenic acid is a kind of acid", "pln": ["(: cnet_isa_14b83f944c (IsA selenic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selenicereus is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_11600f893e (IsA selenicereus caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selenipedium is a kind of monocot genus", "pln": ["(: cnet_isa_553c4be22f (IsA selenipedium monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selenium is a kind of antioxidant", "pln": ["(: cnet_isa_659acfd25e (IsA selenium antioxidant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selenium is a kind of chemical element", "pln": ["(: cnet_isa_053f016cf9 (IsA selenium chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selenium cell is a kind of photoelectric cell", "pln": ["(: cnet_isa_0a229861d7 (IsA selenium_cell photoelectric_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selenology is a kind of astronomy", "pln": ["(: cnet_isa_caf4595bc8 (IsA selenology astronomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self is a kind of illusion", "pln": ["(: cnet_isa_a219435322 (IsA self illusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self is a kind of consciousness", "pln": ["(: cnet_isa_9855de8a97 (IsA self consciousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self is a kind of person", "pln": ["(: cnet_isa_9bb8eb8015 (IsA self person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self absorption is a kind of preoccupation", "pln": ["(: cnet_isa_82e63e98f6 (IsA self_absorption preoccupation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self acceptance is a kind of toleration", "pln": ["(: cnet_isa_243d2c3561 (IsA self_acceptance toleration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self accusation is a kind of accusation", "pln": ["(: cnet_isa_32cb40ba10 (IsA self_accusation accusation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "self accusation is a kind of confession", "pln": ["(: cnet_isa_91eb28319d (IsA self_accusation confession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self adapting program is a kind of program", "pln": ["(: cnet_isa_64819290b7 (IsA self_adapting_program program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self aggrandizement is a kind of aggrandizement", "pln": ["(: cnet_isa_5745dba99b (IsA self_aggrandizement aggrandizement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self analysis is a kind of psychotherapy", "pln": ["(: cnet_isa_a69a0f059c (IsA self_analysis psychotherapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self assertion is a kind of aggression", "pln": ["(: cnet_isa_a3c2e83493 (IsA self_assertion aggression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self assertion is a kind of boast", "pln": ["(: cnet_isa_a8c442622c (IsA self_assertion boast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self awareness is a kind of awareness", "pln": ["(: cnet_isa_8da35f0d31 (IsA self_awareness awareness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self consciousness is a kind of self awareness", "pln": ["(: cnet_isa_6b871d5e21 (IsA self_consciousness self_awareness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self consciousness is a kind of embarrassment", "pln": ["(: cnet_isa_bd50f35d4c (IsA self_consciousness embarrassment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self contradiction is a kind of contradiction", "pln": ["(: cnet_isa_22bbb03be3 (IsA self_contradiction contradiction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self control is a kind of resoluteness", "pln": ["(: cnet_isa_86ffa55bef (IsA self_control resoluteness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self criticism is a kind of criticism", "pln": ["(: cnet_isa_ffca8668bb (IsA self_criticism criticism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "self deception is a kind of misconception", "pln": ["(: cnet_isa_1dbb8169cc (IsA self_deception misconception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self defense is a kind of protection", "pln": ["(: cnet_isa_aa7aabfd17 (IsA self_defense protection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "self denial is a kind of control", "pln": ["(: cnet_isa_9d7cb0b031 (IsA self_denial control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self depreciation is a kind of humility", "pln": ["(: cnet_isa_b9c3782a40 (IsA self_depreciation humility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self destruction is a kind of destruction", "pln": ["(: cnet_isa_f1ca082db1 (IsA self_destruction destruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self determination is a kind of free will", "pln": ["(: cnet_isa_f3717899cb (IsA self_determination free_will) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self discipline is a kind of discipline", "pln": ["(: cnet_isa_fa97c97b40 (IsA self_discipline discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self discovery is a kind of discovery", "pln": ["(: cnet_isa_182bbb8972 (IsA self_discovery discovery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self disgust is a kind of shame", "pln": ["(: cnet_isa_5abcc0aefa (IsA self_disgust shame) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self education is a kind of education", "pln": ["(: cnet_isa_28f69f408f (IsA self_education education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self esteem is a kind of pride", "pln": ["(: cnet_isa_36f92577b8 (IsA self_esteem pride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self expression is a kind of expressive style", "pln": ["(: cnet_isa_3c70650216 (IsA self_expression expressive_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self feeder is a kind of machine", "pln": ["(: cnet_isa_05bbbfebbb (IsA self_feeder machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self fertilization is a kind of fertilization", "pln": ["(: cnet_isa_507ecb5861 (IsA self_fertilization fertilization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self flagellation is a kind of self punishment", "pln": ["(: cnet_isa_193e49b5e7 (IsA self_flagellation self_punishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self flagellation is a kind of whipping", "pln": ["(: cnet_isa_43ae216af4 (IsA self_flagellation whipping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "self fulfillment is a kind of fulfillment", "pln": ["(: cnet_isa_412a5bc891 (IsA self_fulfillment fulfillment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self government is a kind of autonomy", "pln": ["(: cnet_isa_ef7d7c9ab1 (IsA self_government autonomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self gratification is a kind of gratification", "pln": ["(: cnet_isa_8c8d19eddb (IsA self_gratification gratification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self heal is a kind of herb", "pln": ["(: cnet_isa_8889e03397 (IsA self_heal herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self help is a kind of aid", "pln": ["(: cnet_isa_660346851e (IsA self_help aid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self hypnosis is a kind of hypnosis", "pln": ["(: cnet_isa_fedf28b0bb (IsA self_hypnosis hypnosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self improvement is a kind of improvement", "pln": ["(: cnet_isa_884c50db9d (IsA self_improvement improvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self incrimination is a kind of incrimination", "pln": ["(: cnet_isa_29ea44ce02 (IsA self_incrimination incrimination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self induction is a kind of induction", "pln": ["(: cnet_isa_67bb357785 (IsA self_induction induction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self insurance is a kind of insurance", "pln": ["(: cnet_isa_4112199408 (IsA self_insurance insurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self knowledge is a kind of understanding", "pln": ["(: cnet_isa_8be4664732 (IsA self_knowledge understanding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self love is a kind of conceit", "pln": ["(: cnet_isa_005a6675f7 (IsA self_love conceit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self organization is a kind of organization", "pln": ["(: cnet_isa_4360f57017 (IsA self_organization organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self pity is a kind of sorrow", "pln": ["(: cnet_isa_7eb542720a (IsA self_pity sorrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self pollination is a kind of pollination", "pln": ["(: cnet_isa_83c18c9810 (IsA self_pollination pollination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self portrait is a kind of portrait", "pln": ["(: cnet_isa_0f110d4e32 (IsA self_portrait portrait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self preservation is a kind of preservation", "pln": ["(: cnet_isa_85989b35dd (IsA self_preservation preservation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self propelled vehicle is a kind of wheeled vehicle", "pln": ["(: cnet_isa_a815f71b7c (IsA self_propelled_vehicle wheeled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self punishment is a kind of punishment", "pln": ["(: cnet_isa_17928cc276 (IsA self_punishment punishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self registering thermometer is a kind of thermometer", "pln": ["(: cnet_isa_5783e6443a (IsA self_registering_thermometer thermometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self renewal is a kind of renewal", "pln": ["(: cnet_isa_96a75cde2b (IsA self_renewal renewal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self report personality inventory is a kind of personality inventory", "pln": ["(: cnet_isa_701a414dff (IsA self_report_personality_inventory personality_inventory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self reproach is a kind of reproach", "pln": ["(: cnet_isa_c95b6fe831 (IsA self_reproach reproach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self restraint is a kind of restraint", "pln": ["(: cnet_isa_c74f3afdd3 (IsA self_restraint restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self rising flour is a kind of mix", "pln": ["(: cnet_isa_1ed5c4c92b (IsA self_rising_flour mix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self service is a kind of service", "pln": ["(: cnet_isa_09b51247db (IsA self_service service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "self starter is a kind of starter", "pln": ["(: cnet_isa_6ffed1c17d (IsA self_starter starter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self starter is a kind of powerhouse", "pln": ["(: cnet_isa_5699ca733e (IsA self_starter powerhouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self stimulation is a kind of masturbation", "pln": ["(: cnet_isa_960800b73f (IsA self_stimulation masturbation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "self torture is a kind of distress", "pln": ["(: cnet_isa_0c87154b91 (IsA self_torture distress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selfish person is a kind of unpleasant person", "pln": ["(: cnet_isa_faf24e2ff1 (IsA selfish_person unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selfishness is a kind of stinginess", "pln": ["(: cnet_isa_229980ba22 (IsA selfishness stinginess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selflessness is a kind of cooperation", "pln": ["(: cnet_isa_56a3109bee (IsA selflessness cooperation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selfsameness is a kind of identity", "pln": ["(: cnet_isa_0a3a77ddbd (IsA selfsameness identity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seljuk is a kind of dynasty", "pln": ["(: cnet_isa_c4d0dbb4be (IsA seljuk dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selkup is a kind of samoyedic", "pln": ["(: cnet_isa_69c6cb06e0 (IsA selkup samoyedic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sell is a kind of sale", "pln": ["(: cnet_isa_10c6c280a6 (IsA sell sale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sell by date is a kind of date", "pln": ["(: cnet_isa_1bb1de170c (IsA sell_by_date date) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seller s market is a kind of market", "pln": ["(: cnet_isa_c8d1447c53 (IsA seller_s_market market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seller is a kind of merchant", "pln": ["(: cnet_isa_21b281069e (IsA seller merchant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selling is a kind of commerce", "pln": ["(: cnet_isa_bf2eb4c94b (IsA selling commerce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selling agent is a kind of seller", "pln": ["(: cnet_isa_b85070c877 (IsA selling_agent seller) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selling point is a kind of point", "pln": ["(: cnet_isa_170a98ad42 (IsA selling_point point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selling race is a kind of horse race", "pln": ["(: cnet_isa_6e049ca2d9 (IsA selling_race horse_race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "selloff is a kind of sale", "pln": ["(: cnet_isa_8cc53dfb66 (IsA selloff sale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sellout is a kind of selling", "pln": ["(: cnet_isa_ee8acbe5d2 (IsA sellout selling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sellout is a kind of treachery", "pln": ["(: cnet_isa_81f14a034f (IsA sellout treachery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sellout is a kind of social event", "pln": ["(: cnet_isa_ce44ff10ae (IsA sellout social_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sellout is a kind of bad person", "pln": ["(: cnet_isa_eb2a6998f8 (IsA sellout bad_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selsyn is a kind of system", "pln": ["(: cnet_isa_9695fcb893 (IsA selsyn system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seltzer is a kind of mineral water", "pln": ["(: cnet_isa_928c52d0db (IsA seltzer mineral_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selvage is a kind of border", "pln": ["(: cnet_isa_5071ed812c (IsA selvage border) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "selvage is a kind of edge", "pln": ["(: cnet_isa_f9d368a39e (IsA selvage edge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "semantic error is a kind of software error", "pln": ["(: cnet_isa_e7997b200d (IsA semantic_error software_error) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semantic memory is a kind of long term memory", "pln": ["(: cnet_isa_1d6a40ade0 (IsA semantic_memory long_term_memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semantic relation is a kind of linguistic relation", "pln": ["(: cnet_isa_f5ea8ba3b0 (IsA semantic_relation linguistic_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "semantic role is a kind of grammatical category", "pln": ["(: cnet_isa_e67d4f3dff (IsA semantic_role grammatical_category) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semanticist is a kind of linguist", "pln": ["(: cnet_isa_22c964022d (IsA semanticist linguist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semantic is a kind of linguistic", "pln": ["(: cnet_isa_6841c0a299 (IsA semantic linguistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semantic is a kind of meaning", "pln": ["(: cnet_isa_3daba48698 (IsA semantic meaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semaphore is a kind of apparatus", "pln": ["(: cnet_isa_c7a0e182ed (IsA semaphore apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semblance is a kind of appearance", "pln": ["(: cnet_isa_3dc4f08277 (IsA semblance appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semen is a kind of liquid body substance", "pln": ["(: cnet_isa_60d6c2f437 (IsA semen liquid_body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semester is a kind of school term", "pln": ["(: cnet_isa_3c220f14b4 (IsA semester school_term) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "semester is a kind of time period", "pln": ["(: cnet_isa_8879047eab (IsA semester time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semester hour is a kind of credit", "pln": ["(: cnet_isa_cc7a701a6a (IsA semester_hour credit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semi abstraction is a kind of painting", "pln": ["(: cnet_isa_1f47746653 (IsA semi_abstraction painting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semi climber is a kind of vine", "pln": ["(: cnet_isa_8dafaefc3a (IsA semi_climber vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semi detached house is a kind of dwelling", "pln": ["(: cnet_isa_6ea5de39d4 (IsA semi_detached_house dwelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semi skimmed milk is a kind of milk", "pln": ["(: cnet_isa_5c101b63d2 (IsA semi_skimmed_milk milk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semiautomatic is a kind of gun", "pln": ["(: cnet_isa_2b567470f3 (IsA semiautomatic gun) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semiautomatic firearm is a kind of autoloader", "pln": ["(: cnet_isa_350a84f5f6 (IsA semiautomatic_firearm autoloader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semiautomatic pistol is a kind of pistol", "pln": ["(: cnet_isa_f6fbdd28f7 (IsA semiautomatic_pistol pistol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semiautomatic pistol is a kind of semiautomatic firearm", "pln": ["(: cnet_isa_28cd3bc22e (IsA semiautomatic_pistol semiautomatic_firearm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semicentennial is a kind of anniversary", "pln": ["(: cnet_isa_d92395c25f (IsA semicentennial anniversary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semicircle is a kind of plane figure", "pln": ["(: cnet_isa_f93dc069c3 (IsA semicircle plane_figure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semicircular canal is a kind of sense organ", "pln": ["(: cnet_isa_4189fcf0ce (IsA semicircular_canal sense_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semicolon is a kind of punctuation", "pln": ["(: cnet_isa_1ffaed13f7 (IsA semicolon punctuation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semicoma is a kind of unconsciousness", "pln": ["(: cnet_isa_d2f44f926d (IsA semicoma unconsciousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semiconductor is a kind of conductor", "pln": ["(: cnet_isa_db79ddd5f3 (IsA semiconductor conductor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semiconductor device is a kind of conductor", "pln": ["(: cnet_isa_652f16bdd7 (IsA semiconductor_device conductor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semidarkness is a kind of dark", "pln": ["(: cnet_isa_64190e8dce (IsA semidarkness dark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semidesert is a kind of geographical area", "pln": ["(: cnet_isa_5631431878 (IsA semidesert geographical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semidiameter is a kind of radius", "pln": ["(: cnet_isa_504ca459d3 (IsA semidiameter radius) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semifinal is a kind of match", "pln": ["(: cnet_isa_4ee6c2f21d (IsA semifinal match) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semifinalist is a kind of rival", "pln": ["(: cnet_isa_26983925d2 (IsA semifinalist rival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semifluidity is a kind of thickness", "pln": ["(: cnet_isa_fa5344ccf3 (IsA semifluidity thickness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semigloss is a kind of paint", "pln": ["(: cnet_isa_ac9c839d46 (IsA semigloss paint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semilunar valve is a kind of heart valve", "pln": ["(: cnet_isa_958e221552 (IsA semilunar_valve heart_valve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semimajor axis is a kind of axis", "pln": ["(: cnet_isa_3fef115a03 (IsA semimajor_axis axis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semiminor axis is a kind of axis", "pln": ["(: cnet_isa_6148aa96d0 (IsA semiminor_axis axis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semimonthly is a kind of sery", "pln": ["(: cnet_isa_32a490b1b4 (IsA semimonthly sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seminal duct is a kind of duct", "pln": ["(: cnet_isa_ce7804d011 (IsA seminal_duct duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seminal vesicle is a kind of exocrine gland", "pln": ["(: cnet_isa_261e490dc7 (IsA seminal_vesicle exocrine_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seminar is a kind of course", "pln": ["(: cnet_isa_1f6feacf20 (IsA seminar course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seminar is a kind of conference", "pln": ["(: cnet_isa_7451b6d070 (IsA seminar conference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seminarian is a kind of student", "pln": ["(: cnet_isa_850a933bc2 (IsA seminarian student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "seminary is a kind of private school", "pln": ["(: cnet_isa_0752310069 (IsA seminary private_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seminary is a kind of religious school", "pln": ["(: cnet_isa_e7b46a1e1f (IsA seminary religious_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seminiferous tubule is a kind of tubule", "pln": ["(: cnet_isa_1861353652 (IsA seminiferous_tubule tubule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seminole is a kind of muskhogean", "pln": ["(: cnet_isa_a4a84f5ef0 (IsA seminole muskhogean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seminole is a kind of muskogean", "pln": ["(: cnet_isa_2ebb585156 (IsA seminole muskogean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seminoma is a kind of carcinoma", "pln": ["(: cnet_isa_29b8941a66 (IsA seminoma carcinoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semiotic is a kind of philosophical doctrine", "pln": ["(: cnet_isa_8c8a3a567e (IsA semiotic philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semipermeable membrane is a kind of membrane", "pln": ["(: cnet_isa_4be3581463 (IsA semipermeable_membrane membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semiprofessional is a kind of professional", "pln": ["(: cnet_isa_619243dd1e (IsA semiprofessional professional) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semite is a kind of white person", "pln": ["(: cnet_isa_ae2bdeebd7 (IsA semite white_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "semitic is a kind of afroasiatic", "pln": ["(: cnet_isa_6a092cc6a4 (IsA semitic afroasiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semitic deity is a kind of deity", "pln": ["(: cnet_isa_c04ab35557 (IsA semitic_deity deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semitone is a kind of interval", "pln": ["(: cnet_isa_e627c0416b (IsA semitone interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semitrailer is a kind of trailer", "pln": ["(: cnet_isa_923d2f2674 (IsA semitrailer trailer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semitrance is a kind of unconsciousness", "pln": ["(: cnet_isa_f5690adc10 (IsA semitrance unconsciousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semivowel is a kind of phone", "pln": ["(: cnet_isa_2612771558 (IsA semivowel phone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semiweekly is a kind of sery", "pln": ["(: cnet_isa_5ce61eff5f (IsA semiweekly sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "semolina is a kind of flour", "pln": ["(: cnet_isa_c3574e1684 (IsA semolina flour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sen is a kind of fractional monetary unit", "pln": ["(: cnet_isa_128cf0669c (IsA sen fractional_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "senate is a kind of legislature", "pln": ["(: cnet_isa_7e32d9340d (IsA senate legislature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "senate campaign is a kind of political campaign", "pln": ["(: cnet_isa_0231cc59fc (IsA senate_campaign political_campaign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "senator is a kind of legislator", "pln": ["(: cnet_isa_e88f8230d8 (IsA senator legislator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "senatorship is a kind of position", "pln": ["(: cnet_isa_996684776e (IsA senatorship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sendee is a kind of recipient", "pln": ["(: cnet_isa_dbd23b8807 (IsA sendee recipient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sender is a kind of communicator", "pln": ["(: cnet_isa_90d015bbb0 (IsA sender communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sending is a kind of causing", "pln": ["(: cnet_isa_022bd36069 (IsA sending causing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sending anthrax bacteria through mail is a kind of terrorism", "pln": ["(: cnet_isa_823334bd4b (IsA sending_anthrax_bacteria_through_mail terrorism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sene is a kind of western samoan monetary unit", "pln": ["(: cnet_isa_572027fe17 (IsA sene western_samoan_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seneca is a kind of iroquoian", "pln": ["(: cnet_isa_a01b07e270 (IsA seneca iroquoian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seneca is a kind of iroquois", "pln": ["(: cnet_isa_de6929c804 (IsA seneca iroquois) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seneca snakeroot is a kind of milkwort", "pln": ["(: cnet_isa_e514de1847 (IsA seneca_snakeroot milkwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "senecio is a kind of asterid dicot genus", "pln": ["(: cnet_isa_dc6758c80a (IsA senecio asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "senega is a kind of milkwort", "pln": ["(: cnet_isa_3e12bc19a4 (IsA senega milkwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "senega is a kind of root", "pln": ["(: cnet_isa_6df50b2180 (IsA senega root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "senegal gum is a kind of gum arabic", "pln": ["(: cnet_isa_d7df813ed4 (IsA senegal_gum gum_arabic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "senegalese is a kind of african", "pln": ["(: cnet_isa_51e5c6250d (IsA senegalese african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "senegalese franc is a kind of franc", "pln": ["(: cnet_isa_15ede40e17 (IsA senegalese_franc franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "senhor is a kind of man", "pln": ["(: cnet_isa_bf4569b6d4 (IsA senhor man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "senile dementia is a kind of dementia", "pln": ["(: cnet_isa_c71d712c3e (IsA senile_dementia dementia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "senility is a kind of oldness", "pln": ["(: cnet_isa_1038d36787 (IsA senility oldness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "senior is a kind of undergraduate", "pln": ["(: cnet_isa_b77a734305 (IsA senior undergraduate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "senior chief petty officer is a kind of petty officer", "pln": ["(: cnet_isa_3493a3217a (IsA senior_chief_petty_officer petty_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "senior class is a kind of class", "pln": ["(: cnet_isa_6e3ea4d467 (IsA senior_class class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "senior high school is a kind of secondary school", "pln": ["(: cnet_isa_03ac70542c (IsA senior_high_school secondary_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "senior master sergeant is a kind of sergeant", "pln": ["(: cnet_isa_b56a004224 (IsA senior_master_sergeant sergeant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "senior moment is a kind of forgetfulness", "pln": ["(: cnet_isa_0110099a40 (IsA senior_moment forgetfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "senior vice president is a kind of vice president", "pln": ["(: cnet_isa_cf38ca3b67 (IsA senior_vice_president vice_president) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seniority is a kind of high status", "pln": ["(: cnet_isa_b62dfa95a8 (IsA seniority high_status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seniti is a kind of tongan monetary unit", "pln": ["(: cnet_isa_e2ae391b8d (IsA seniti tongan_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "senna is a kind of shrub", "pln": ["(: cnet_isa_9e75ab8cee (IsA senna shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sennenhund is a kind of working dog", "pln": ["(: cnet_isa_ac8649311d (IsA sennenhund working_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sennit is a kind of cordage", "pln": ["(: cnet_isa_e5a105b131 (IsA sennit cordage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "senor is a kind of title", "pln": ["(: cnet_isa_08ae9de13e (IsA senor title) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "senora is a kind of title", "pln": ["(: cnet_isa_a9294881ad (IsA senora title) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "senorita is a kind of title", "pln": ["(: cnet_isa_e1f28c41b8 (IsA senorita title) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensation is a kind of perception", "pln": ["(: cnet_isa_1add5a21cb (IsA sensation perception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensation is a kind of stir", "pln": ["(: cnet_isa_a1aa5ab007 (IsA sensation stir) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensation is a kind of excitement", "pln": ["(: cnet_isa_f3e59817e7 (IsA sensation excitement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensationalism is a kind of journalese", "pln": ["(: cnet_isa_676c0ad20d (IsA sensationalism journalese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensationalism is a kind of message", "pln": ["(: cnet_isa_d969b80451 (IsA sensationalism message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensationalist is a kind of publicist", "pln": ["(: cnet_isa_1216f7346b (IsA sensationalist publicist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sense is a kind of appreciation", "pln": ["(: cnet_isa_faac2d31e0 (IsA sense appreciation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sense is a kind of awareness", "pln": ["(: cnet_isa_a46c9000e5 (IsA sense awareness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sense is a kind of faculty", "pln": ["(: cnet_isa_9791d30f61 (IsA sense faculty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sense is a kind of meaning", "pln": ["(: cnet_isa_f58cbf9fd3 (IsA sense meaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sense of direction is a kind of sense", "pln": ["(: cnet_isa_2ebda7e199 (IsA sense_of_direction sense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sense of meeting is a kind of agreement", "pln": ["(: cnet_isa_11780c22a3 (IsA sense_of_meeting agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sense of responsibility is a kind of sense", "pln": ["(: cnet_isa_76aa1799a7 (IsA sense_of_responsibility sense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sense of shame is a kind of conscience", "pln": ["(: cnet_isa_c91bd1bb09 (IsA sense_of_shame conscience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sense organ is a kind of organ", "pln": ["(: cnet_isa_6861b72780 (IsA sense_organ organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sense tagger is a kind of tagging program", "pln": ["(: cnet_isa_04903b5e0b (IsA sense_tagger tagging_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensibility is a kind of consciousness", "pln": ["(: cnet_isa_ee557f3f51 (IsA sensibility consciousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensibility is a kind of sensitivity", "pln": ["(: cnet_isa_35da447a11 (IsA sensibility sensitivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensibleness is a kind of practicality", "pln": ["(: cnet_isa_d3708834a5 (IsA sensibleness practicality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensibleness is a kind of reasonableness", "pln": ["(: cnet_isa_2e8d546764 (IsA sensibleness reasonableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensing is a kind of sensory activity", "pln": ["(: cnet_isa_aa5b880aac (IsA sensing sensory_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensitive fern is a kind of fern", "pln": ["(: cnet_isa_59032aad17 (IsA sensitive_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensitive plant is a kind of mimosa", "pln": ["(: cnet_isa_e12118372d (IsA sensitive_plant mimosa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensitivity is a kind of ability", "pln": ["(: cnet_isa_026d9aa722 (IsA sensitivity ability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensitivity is a kind of physical property", "pln": ["(: cnet_isa_42ef9dd8ec (IsA sensitivity physical_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensitivity is a kind of feeling", "pln": ["(: cnet_isa_eaf80329c9 (IsA sensitivity feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensitivity is a kind of sense", "pln": ["(: cnet_isa_6fe30f3c0c (IsA sensitivity sense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensitivity is a kind of susceptibility", "pln": ["(: cnet_isa_84f9f66bd8 (IsA sensitivity susceptibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensitization is a kind of process", "pln": ["(: cnet_isa_50c4508356 (IsA sensitization process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensitization is a kind of sensitivity", "pln": ["(: cnet_isa_35503b228a (IsA sensitization sensitivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensitizer is a kind of activator", "pln": ["(: cnet_isa_cce5944efb (IsA sensitizer activator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensitizing is a kind of immunization", "pln": ["(: cnet_isa_85061defed (IsA sensitizing immunization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensitometer is a kind of measuring instrument", "pln": ["(: cnet_isa_0712d60b29 (IsA sensitometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensitometer is a kind of photographic equipment", "pln": ["(: cnet_isa_7e95f88e03 (IsA sensitometer photographic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensorimotor area is a kind of cortical area", "pln": ["(: cnet_isa_ba8c2723ff (IsA sensorimotor_area cortical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensorineural hearing loss is a kind of hearing impairment", "pln": ["(: cnet_isa_554b6b2f6f (IsA sensorineural_hearing_loss hearing_impairment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensorium is a kind of cortical area", "pln": ["(: cnet_isa_2e7700acd7 (IsA sensorium cortical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensory activity is a kind of activity", "pln": ["(: cnet_isa_7881d5a52a (IsA sensory_activity activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensory deprivation is a kind of torture", "pln": ["(: cnet_isa_29c804a93a (IsA sensory_deprivation torture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensory epilepsy is a kind of cortical epilepsy", "pln": ["(: cnet_isa_ebf6613c0f (IsA sensory_epilepsy cortical_epilepsy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensory nerve is a kind of nerve", "pln": ["(: cnet_isa_4419ca5401 (IsA sensory_nerve nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensory neuron is a kind of nerve cell", "pln": ["(: cnet_isa_df2bdc0bea (IsA sensory_neuron nerve_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensory system is a kind of system", "pln": ["(: cnet_isa_04e6455315 (IsA sensory_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensualism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_132b23d9b0 (IsA sensualism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensualist is a kind of person", "pln": ["(: cnet_isa_7cb484a0c0 (IsA sensualist person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensuality is a kind of sexual desire", "pln": ["(: cnet_isa_b7b33f2132 (IsA sensuality sexual_desire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sensuousness is a kind of sensibility", "pln": ["(: cnet_isa_49f92bda30 (IsA sensuousness sensibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sent is a kind of estonian monetary unit", "pln": ["(: cnet_isa_e746404222 (IsA sent estonian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sente is a kind of lesotho monetary unit", "pln": ["(: cnet_isa_4e74ba211c (IsA sente lesotho_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sentence is a kind of string of word", "pln": ["(: cnet_isa_03d1e8e31c (IsA sentence string_of_word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sentence stress is a kind of stress", "pln": ["(: cnet_isa_1714c0bf75 (IsA sentence_stress stress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sentence is a kind of punishment", "pln": ["(: cnet_isa_4679d878e7 (IsA sentence punishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sentential function is a kind of formula", "pln": ["(: cnet_isa_08812aaca8 (IsA sentential_function formula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sentience is a kind of animateness", "pln": ["(: cnet_isa_10f604cbc0 (IsA sentience animateness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sentiment is a kind of feeling", "pln": ["(: cnet_isa_2fc207c345 (IsA sentiment feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sentimentalism is a kind of mawkishness", "pln": ["(: cnet_isa_02de3e322d (IsA sentimentalism mawkishness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sentimentalism is a kind of formulation", "pln": ["(: cnet_isa_be4cb1f3b4 (IsA sentimentalism formulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sentimentalist is a kind of person", "pln": ["(: cnet_isa_66dc69368a (IsA sentimentalist person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sentimentality is a kind of sentiment", "pln": ["(: cnet_isa_34a4a1b445 (IsA sentimentality sentiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sentimentalization is a kind of idealization", "pln": ["(: cnet_isa_6e8b80cfce (IsA sentimentalization idealization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sentry box is a kind of shelter", "pln": ["(: cnet_isa_b6e58e2d90 (IsA sentry_box shelter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sepal is a kind of floral leaf", "pln": ["(: cnet_isa_f3db00fbff (IsA sepal floral_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "separability is a kind of disjunction", "pln": ["(: cnet_isa_29b926bbd8 (IsA separability disjunction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "separate is a kind of garment", "pln": ["(: cnet_isa_e6695830ee (IsA separate garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "separateness is a kind of independence", "pln": ["(: cnet_isa_b1328dd70d (IsA separateness independence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "separation is a kind of change of integrity", "pln": ["(: cnet_isa_cbb9c0a957 (IsA separation change_of_integrity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "separation is a kind of group action", "pln": ["(: cnet_isa_7705605252 (IsA separation group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "separation is a kind of sorting", "pln": ["(: cnet_isa_12d247e731 (IsA separation sorting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "separation is a kind of change", "pln": ["(: cnet_isa_e5cf742d3e (IsA separation change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "separation is a kind of result", "pln": ["(: cnet_isa_4c2ad86b17 (IsA separation result) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "separation is a kind of space", "pln": ["(: cnet_isa_2d0df2b03b (IsA separation space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "separation is a kind of state", "pln": ["(: cnet_isa_8c5014dd18 (IsA separation state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "separationism is a kind of separation", "pln": ["(: cnet_isa_49543691e6 (IsA separationism separation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "separatism is a kind of disposition", "pln": ["(: cnet_isa_36db400c29 (IsA separatism disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "separatist is a kind of advocate", "pln": ["(: cnet_isa_4c755d0eae (IsA separatist advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sephardic jew is a kind of israelite", "pln": ["(: cnet_isa_0d448128f6 (IsA sephardic_jew israelite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sepia is a kind of mollusk genus", "pln": ["(: cnet_isa_97e85635f3 (IsA sepia mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sepia is a kind of pigment", "pln": ["(: cnet_isa_f03b53e930 (IsA sepia pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sepiidae is a kind of mollusk family", "pln": ["(: cnet_isa_a4bd90da0e (IsA sepiidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sepsis is a kind of infection", "pln": ["(: cnet_isa_8a4c7c5d68 (IsA sepsis infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "septal defect is a kind of congenital heart defect", "pln": ["(: cnet_isa_1f2466851b (IsA septal_defect congenital_heart_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "septation is a kind of division", "pln": ["(: cnet_isa_b746a384a8 (IsA septation division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "septectomy is a kind of ablation", "pln": ["(: cnet_isa_97267106f9 (IsA septectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "september is a kind of gregorian calendar month", "pln": ["(: cnet_isa_4997fc1b44 (IsA september gregorian_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "september elm is a kind of elm", "pln": ["(: cnet_isa_c3fa2e0775 (IsA september_elm elm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "septet is a kind of musical composition", "pln": ["(: cnet_isa_46d3112654 (IsA septet musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "septet is a kind of gathering", "pln": ["(: cnet_isa_c183e032db (IsA septet gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "septet is a kind of musical organization", "pln": ["(: cnet_isa_16fc8767d0 (IsA septet musical_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "septet is a kind of set", "pln": ["(: cnet_isa_62e8cb8a25 (IsA septet set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "septic tank is a kind of tank", "pln": ["(: cnet_isa_abe663d5bb (IsA septic_tank tank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "septicemic plague is a kind of plague", "pln": ["(: cnet_isa_6de006d5a0 (IsA septicemic_plague plague) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "septillion is a kind of large integer", "pln": ["(: cnet_isa_463770a239 (IsA septillion large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "septobasidiaceae is a kind of fungus family", "pln": ["(: cnet_isa_690261e68c (IsA septobasidiaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "septobasidium is a kind of fungus genus", "pln": ["(: cnet_isa_0a2ad1b776 (IsA septobasidium fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "septuagenarian is a kind of oldster", "pln": ["(: cnet_isa_9384cf352a (IsA septuagenarian oldster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "septuagesima is a kind of christian holy day", "pln": ["(: cnet_isa_47e9cb4a70 (IsA septuagesima christian_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "septum is a kind of partition", "pln": ["(: cnet_isa_d4f09a0524 (IsA septum partition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "septum is a kind of plant organ", "pln": ["(: cnet_isa_831a7b2277 (IsA septum plant_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sequel is a kind of addendum", "pln": ["(: cnet_isa_5a05cafc84 (IsA sequel addendum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sequel is a kind of result", "pln": ["(: cnet_isa_4781b6b163 (IsA sequel result) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sequela is a kind of abnormality", "pln": ["(: cnet_isa_59f05461e1 (IsA sequela abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sequella is a kind of consequence", "pln": ["(: cnet_isa_6fd7a8a433 (IsA sequella consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sequence is a kind of film", "pln": ["(: cnet_isa_01c86ccd19 (IsA sequence film) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sequence is a kind of temporal arrangement", "pln": ["(: cnet_isa_346dca1487 (IsA sequence temporal_arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sequence is a kind of repeat", "pln": ["(: cnet_isa_a08990de58 (IsA sequence repeat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sequence is a kind of sery", "pln": ["(: cnet_isa_bf1389540d (IsA sequence sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sequencer is a kind of hardware", "pln": ["(: cnet_isa_c4aca07def (IsA sequencer hardware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sequencer is a kind of apparatus", "pln": ["(: cnet_isa_8a18ac0700 (IsA sequencer apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sequestration is a kind of appropriation", "pln": ["(: cnet_isa_5ebc7b88da (IsA sequestration appropriation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sequestration is a kind of writ", "pln": ["(: cnet_isa_baf9d42140 (IsA sequestration writ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sequestration is a kind of chemical process", "pln": ["(: cnet_isa_21515a5c4d (IsA sequestration chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sequin is a kind of adornment", "pln": ["(: cnet_isa_d91105dd38 (IsA sequin adornment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sequoia is a kind of cypress", "pln": ["(: cnet_isa_50880d1a75 (IsA sequoia cypress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sequoiadendron is a kind of plant genus", "pln": ["(: cnet_isa_38100b7fa3 (IsA sequoiadendron plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serape is a kind of shawl", "pln": ["(: cnet_isa_24bde1e5fe (IsA serape shawl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seraph is a kind of angel", "pln": ["(: cnet_isa_2d18952480 (IsA seraph angel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "serb is a kind of slav", "pln": ["(: cnet_isa_5b0a24a1ef (IsA serb slav) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serbo croat is a kind of slavic", "pln": ["(: cnet_isa_b1525c5620 (IsA serbo_croat slavic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "serenade is a kind of song", "pln": ["(: cnet_isa_0c8c69eeb5 (IsA serenade song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serendipity is a kind of good luck", "pln": ["(: cnet_isa_8a2c45bc52 (IsA serendipity good_luck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sereness is a kind of dryness", "pln": ["(: cnet_isa_1839d11270 (IsA sereness dryness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serenoa is a kind of monocot genus", "pln": ["(: cnet_isa_f4fc1c190d (IsA serenoa monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serer is a kind of west african", "pln": ["(: cnet_isa_95bb5b7bef (IsA serer west_african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serf is a kind of thrall", "pln": ["(: cnet_isa_76ab3b85ac (IsA serf thrall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serfdom is a kind of bondage", "pln": ["(: cnet_isa_cf4aefb525 (IsA serfdom bondage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serge is a kind of fabric", "pln": ["(: cnet_isa_0a367414fe (IsA serge fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sergeant is a kind of noncommissioned officer", "pln": ["(: cnet_isa_ad8d9e9572 (IsA sergeant noncommissioned_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sergeant at arm is a kind of officeholder", "pln": ["(: cnet_isa_8a04858a3a (IsA sergeant_at_arm officeholder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sergeant major is a kind of damselfish", "pln": ["(: cnet_isa_41f848a17f (IsA sergeant_major damselfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sergeant major is a kind of sergeant", "pln": ["(: cnet_isa_bc45c1ce20 (IsA sergeant_major sergeant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serger is a kind of sewing machine", "pln": ["(: cnet_isa_9c33a47e21 (IsA serger sewing_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serial is a kind of broadcast", "pln": ["(: cnet_isa_bfc6100ca0 (IsA serial broadcast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serial killer is a kind of murderer", "pln": ["(: cnet_isa_d62b7e93c0 (IsA serial_killer murderer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serial monogamy is a kind of monogamy", "pln": ["(: cnet_isa_b13271af26 (IsA serial_monogamy monogamy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serial operation is a kind of operation", "pln": ["(: cnet_isa_daa3984074 (IsA serial_operation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "serial port is a kind of interface", "pln": ["(: cnet_isa_826003db3c (IsA serial_port interface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "series is a kind of ordering", "pln": ["(: cnet_isa_4cccd35f9c (IsA series ordering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serial processing is a kind of data processing", "pln": ["(: cnet_isa_7cd89e0db2 (IsA serial_processing data_processing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serialism is a kind of music", "pln": ["(: cnet_isa_de19e62184 (IsA serialism music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serialization is a kind of publication", "pln": ["(: cnet_isa_55d3a3037e (IsA serialization publication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sericea lespedeza is a kind of bush clover", "pln": ["(: cnet_isa_692df7818b (IsA sericea_lespedeza bush_clover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sericocarpus is a kind of asterid dicot genus", "pln": ["(: cnet_isa_a4a7642782 (IsA sericocarpus asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sericulture is a kind of production", "pln": ["(: cnet_isa_804766f04c (IsA sericulture production) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sericulture is a kind of natural process", "pln": ["(: cnet_isa_885f14796c (IsA sericulture natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sericulturist is a kind of manufacturer", "pln": ["(: cnet_isa_1da89ba390 (IsA sericulturist manufacturer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sery is a kind of periodical", "pln": ["(: cnet_isa_36d882d7b3 (IsA sery periodical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sery is a kind of connection", "pln": ["(: cnet_isa_ce0e064d68 (IsA sery connection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sery is a kind of group", "pln": ["(: cnet_isa_5ee80c9360 (IsA sery group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sery is a kind of ordering", "pln": ["(: cnet_isa_a64cf9ca6d (IsA sery ordering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sery is a kind of polynomial", "pln": ["(: cnet_isa_e3cae2f3ed (IsA sery polynomial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sery is a kind of contest", "pln": ["(: cnet_isa_953548326e (IsA sery contest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sery circuit is a kind of circuit", "pln": ["(: cnet_isa_85a2ecdc80 (IsA sery_circuit circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serif is a kind of line", "pln": ["(: cnet_isa_e2d56c6f01 (IsA serif line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serigraphy is a kind of printmaking", "pln": ["(: cnet_isa_2962af1a3d (IsA serigraphy printmaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serin is a kind of finch", "pln": ["(: cnet_isa_d6678a8473 (IsA serin finch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serine is a kind of amino acid", "pln": ["(: cnet_isa_ee41d2608a (IsA serine amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serinus is a kind of bird genus", "pln": ["(: cnet_isa_33f512d510 (IsA serinus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seriocomedy is a kind of comedy", "pln": ["(: cnet_isa_2526fa5dde (IsA seriocomedy comedy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "seriola is a kind of fish genus", "pln": ["(: cnet_isa_457c214395 (IsA seriola fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seriousness is a kind of badness", "pln": ["(: cnet_isa_fc529e3b9a (IsA seriousness badness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seriousness is a kind of trait", "pln": ["(: cnet_isa_686a2d942d (IsA seriousness trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seriphidium is a kind of asterid dicot genus", "pln": ["(: cnet_isa_ce288e594f (IsA seriphidium asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seriphus is a kind of fish genus", "pln": ["(: cnet_isa_abbdaa83eb (IsA seriphus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "serjeant at law is a kind of barrister", "pln": ["(: cnet_isa_a40a358a92 (IsA serjeant_at_law barrister) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sermon is a kind of address", "pln": ["(: cnet_isa_558a9c43e2 (IsA sermon address) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sermon is a kind of lecture", "pln": ["(: cnet_isa_535f73d11a (IsA sermon lecture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serologist is a kind of medical scientist", "pln": ["(: cnet_isa_568a8c74f8 (IsA serologist medical_scientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serology is a kind of medical science", "pln": ["(: cnet_isa_73588e543f (IsA serology medical_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serotine is a kind of vespertilian bat", "pln": ["(: cnet_isa_138c016ad5 (IsA serotine vespertilian_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serotonin is a kind of neurotransmitter", "pln": ["(: cnet_isa_5b618ed887 (IsA serotonin neurotransmitter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serotonin is a kind of monoamine neurotransmitter", "pln": ["(: cnet_isa_ee1e1eac23 (IsA serotonin monoamine_neurotransmitter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serous membrane is a kind of membrane", "pln": ["(: cnet_isa_cf30549a44 (IsA serous_membrane membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serow is a kind of goat antelope", "pln": ["(: cnet_isa_e631d01fef (IsA serow goat_antelope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serpent is a kind of cornet", "pln": ["(: cnet_isa_e0925fe4df (IsA serpent cornet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serpent is a kind of firework", "pln": ["(: cnet_isa_ff1cfef218 (IsA serpent firework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serpente is a kind of animal order", "pln": ["(: cnet_isa_0856a73141 (IsA serpente animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serranid fish is a kind of percoid fish", "pln": ["(: cnet_isa_c0fdb7e3db (IsA serranid_fish percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serranidae is a kind of fish family", "pln": ["(: cnet_isa_9f4e62abaf (IsA serranidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serranus is a kind of fish genus", "pln": ["(: cnet_isa_eb000abe12 (IsA serranus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serrasalmus is a kind of fish genus", "pln": ["(: cnet_isa_332604ffaa (IsA serrasalmus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serrate leaf is a kind of leaf", "pln": ["(: cnet_isa_9d788f946a (IsA serrate_leaf leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serrated wrack is a kind of brown algae", "pln": ["(: cnet_isa_c8a56d9d5a (IsA serrated_wrack brown_algae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serratia marcescen is a kind of bacteria specy", "pln": ["(: cnet_isa_242007b64d (IsA serratia_marcescen bacteria_specy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serration is a kind of notch", "pln": ["(: cnet_isa_bd912b131f (IsA serration notch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serration is a kind of row", "pln": ["(: cnet_isa_30bffdb785 (IsA serration row) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serration is a kind of condition", "pln": ["(: cnet_isa_8982316bfe (IsA serration condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serratula is a kind of asterid dicot genus", "pln": ["(: cnet_isa_e7e79f5526 (IsA serratula asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "serratus is a kind of skeletal muscle", "pln": ["(: cnet_isa_193ccda755 (IsA serratus skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serratus posterior inferior is a kind of posterior serratus muscle", "pln": ["(: cnet_isa_34ea784be0 (IsA serratus_posterior_inferior posterior_serratus_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serratus posterior superior is a kind of posterior serratus muscle", "pln": ["(: cnet_isa_bf8f32d490 (IsA serratus_posterior_superior posterior_serratus_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sertoli cell is a kind of cell", "pln": ["(: cnet_isa_02809b7742 (IsA sertoli_cell cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sertularia is a kind of coelenterate genus", "pln": ["(: cnet_isa_016dd9b288 (IsA sertularia coelenterate_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sertularian is a kind of hydrozoan", "pln": ["(: cnet_isa_bb3ccbea84 (IsA sertularian hydrozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serum is a kind of liquid body substance", "pln": ["(: cnet_isa_da7f07c0b4 (IsA serum liquid_body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serum albumin is a kind of albumin", "pln": ["(: cnet_isa_510dfcc12c (IsA serum_albumin albumin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serum globulin is a kind of globulin", "pln": ["(: cnet_isa_c28cf00139 (IsA serum_globulin globulin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serum sickness is a kind of allergy", "pln": ["(: cnet_isa_89a3079284 (IsA serum_sickness allergy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serval is a kind of wildcat", "pln": ["(: cnet_isa_e5a78e42c5 (IsA serval wildcat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "servant is a kind of worker", "pln": ["(: cnet_isa_20980b2698 (IsA servant worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "servant girl is a kind of servant", "pln": ["(: cnet_isa_6547f1b6fe (IsA servant_girl servant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serve is a kind of tennis stroke", "pln": ["(: cnet_isa_b18677af12 (IsA serve tennis_stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "server is a kind of utensil", "pln": ["(: cnet_isa_a4f900f62a (IsA server utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "server is a kind of computer", "pln": ["(: cnet_isa_b2a4eb4042 (IsA server computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "server is a kind of player", "pln": ["(: cnet_isa_d042419f72 (IsA server player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "service is a kind of accommodation", "pln": ["(: cnet_isa_3b5504433c (IsA service accommodation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "service is a kind of aid", "pln": ["(: cnet_isa_5b82c60847 (IsA service aid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "service is a kind of delivery", "pln": ["(: cnet_isa_b8e17c92ff (IsA service delivery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "service is a kind of employment", "pln": ["(: cnet_isa_a004974355 (IsA service employment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "service is a kind of religious ceremony", "pln": ["(: cnet_isa_0278fcc15d (IsA service religious_ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "service is a kind of work", "pln": ["(: cnet_isa_be5e96467b (IsA service work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "service is a kind of tableware", "pln": ["(: cnet_isa_5ad0e90197 (IsA service tableware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "service is a kind of activity", "pln": ["(: cnet_isa_a203b7719b (IsA service activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "service is a kind of company", "pln": ["(: cnet_isa_a4e4936486 (IsA service company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "service agency is a kind of agency", "pln": ["(: cnet_isa_d1a8b58f98 (IsA service_agency agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "service area is a kind of topographic point", "pln": ["(: cnet_isa_3b665405b7 (IsA service_area topographic_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "service book is a kind of sacred text", "pln": ["(: cnet_isa_7a43ed1c0e (IsA service_book sacred_text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "service break is a kind of victory", "pln": ["(: cnet_isa_77fe073728 (IsA service_break victory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "service call is a kind of trip", "pln": ["(: cnet_isa_6233600a7e (IsA service_call trip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "service charge is a kind of charge", "pln": ["(: cnet_isa_d61416976a (IsA service_charge charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "service club is a kind of center", "pln": ["(: cnet_isa_3b1526def6 (IsA service_club center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "service club is a kind of club", "pln": ["(: cnet_isa_d11500ebbb (IsA service_club club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "service contract is a kind of contract", "pln": ["(: cnet_isa_5bafdab7e0 (IsA service_contract contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "service cutback is a kind of cutback", "pln": ["(: cnet_isa_c7035a54c3 (IsA service_cutback cutback) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "service department is a kind of business department", "pln": ["(: cnet_isa_308e3f9183 (IsA service_department business_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "service door is a kind of entrance", "pln": ["(: cnet_isa_a3bf8d1d4d (IsA service_door entrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "service industry is a kind of industry", "pln": ["(: cnet_isa_2e4690d974 (IsA service_industry industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "service line is a kind of line", "pln": ["(: cnet_isa_1ad4b7c45d (IsA service_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "service staff is a kind of staff", "pln": ["(: cnet_isa_1ebf534164 (IsA service_staff staff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "service station is a kind of station", "pln": ["(: cnet_isa_040114bb24 (IsA service_station station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "service stripe is a kind of insignia", "pln": ["(: cnet_isa_ce217821ab (IsA service_stripe insignia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "service tree is a kind of mountain ash", "pln": ["(: cnet_isa_23d52fe401 (IsA service_tree mountain_ash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serviceability is a kind of utility", "pln": ["(: cnet_isa_99dc26e70d (IsA serviceability utility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serviceman is a kind of skilled worker", "pln": ["(: cnet_isa_3703e88746 (IsA serviceman skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "servicing is a kind of coupling", "pln": ["(: cnet_isa_28b241ac7f (IsA servicing coupling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "serving cart is a kind of handcart", "pln": ["(: cnet_isa_1428ce9eca (IsA serving_cart handcart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "serving dish is a kind of dish", "pln": ["(: cnet_isa_1d1893a864 (IsA serving_dish dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "servitor is a kind of attendant", "pln": ["(: cnet_isa_2ca2c1e7d2 (IsA servitor attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "servitude is a kind of bondage", "pln": ["(: cnet_isa_8e46b5e072 (IsA servitude bondage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "servo is a kind of control system", "pln": ["(: cnet_isa_2872c7e092 (IsA servo control_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sesame is a kind of herb", "pln": ["(: cnet_isa_1ce7cf59af (IsA sesame herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sesame oil is a kind of vegetable oil", "pln": ["(: cnet_isa_1a3a5eac34 (IsA sesame_oil vegetable_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sesame seed is a kind of flavorer", "pln": ["(: cnet_isa_6a30b667e5 (IsA sesame_seed flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sesamoid bone is a kind of bone", "pln": ["(: cnet_isa_20bb663f8b (IsA sesamoid_bone bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sesamum is a kind of plant genus", "pln": ["(: cnet_isa_19c85c9e11 (IsA sesamum plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sesbania is a kind of legume", "pln": ["(: cnet_isa_dd945e98c7 (IsA sesbania legume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seseli is a kind of rosid dicot genus", "pln": ["(: cnet_isa_81514d78aa (IsA seseli rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sesotho is a kind of sotho", "pln": ["(: cnet_isa_020cac8a5f (IsA sesotho sotho) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sesquicentennial is a kind of anniversary", "pln": ["(: cnet_isa_c2b1ddc0f8 (IsA sesquicentennial anniversary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sesquipedalian is a kind of polysyllable", "pln": ["(: cnet_isa_eadeac9b7f (IsA sesquipedalian polysyllable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sesquipedality is a kind of expressive style", "pln": ["(: cnet_isa_5efe38b91c (IsA sesquipedality expressive_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sessile polyp is a kind of polyp", "pln": ["(: cnet_isa_a780ee3c23 (IsA sessile_polyp polyp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "session is a kind of meeting", "pln": ["(: cnet_isa_6e0a56c3fd (IsA session meeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "session is a kind of conference", "pln": ["(: cnet_isa_c983a7641c (IsA session conference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "session cookie is a kind of cookie", "pln": ["(: cnet_isa_11a5f7218f (IsA session_cookie cookie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sestet is a kind of stanza", "pln": ["(: cnet_isa_60ebf4a7ad (IsA sestet stanza) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "set is a kind of collection of distinct object", "pln": ["(: cnet_isa_8c34677f6c (IsA set collection_of_distinct_object) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "set is a kind of collection of thing", "pln": ["(: cnet_isa_a18ec66a15 (IsA set collection_of_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "set is a kind of exercise", "pln": ["(: cnet_isa_3e31465d18 (IsA set exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "set is a kind of placement", "pln": ["(: cnet_isa_c32519da54 (IsA set placement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "set is a kind of electronic equipment", "pln": ["(: cnet_isa_fc0ec6d5ff (IsA set electronic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "set is a kind of descent", "pln": ["(: cnet_isa_eae9c42ea8 (IsA set descent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "set is a kind of collection", "pln": ["(: cnet_isa_7e005bf41c (IsA set collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "set is a kind of social group", "pln": ["(: cnet_isa_a13319cc8f (IsA set social_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "set is a kind of abstraction", "pln": ["(: cnet_isa_da21010d40 (IsA set abstraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "set is a kind of cognitive state", "pln": ["(: cnet_isa_f53fbede97 (IsA set cognitive_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "set is a kind of playing period", "pln": ["(: cnet_isa_897260ad1e (IsA set playing_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "set back is a kind of structure", "pln": ["(: cnet_isa_f76a78f714 (IsA set_back structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "set decoration is a kind of decoration", "pln": ["(: cnet_isa_824830175d (IsA set_decoration decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "set gun is a kind of gun", "pln": ["(: cnet_isa_541ffa359a (IsA set_gun gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "set piece is a kind of scenery", "pln": ["(: cnet_isa_149cc694aa (IsA set_piece scenery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "set point is a kind of point", "pln": ["(: cnet_isa_f6f92848fe (IsA set_point point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "set shot is a kind of basketball shot", "pln": ["(: cnet_isa_6faacdee2f (IsA set_shot basketball_shot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "set square is a kind of try square", "pln": ["(: cnet_isa_c8290e6f10 (IsA set_square try_square) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "set theory is a kind of pure mathematic", "pln": ["(: cnet_isa_1117d38e85 (IsA set_theory pure_mathematic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "set to is a kind of fight", "pln": ["(: cnet_isa_bc8443d67e (IsA set_to fight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seta is a kind of hair", "pln": ["(: cnet_isa_ab61773954 (IsA seta hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seta is a kind of podetium", "pln": ["(: cnet_isa_04991f7380 (IsA seta podetium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "setaria is a kind of monocot genus", "pln": ["(: cnet_isa_cca4593a58 (IsA setaria monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "setophaga is a kind of bird genus", "pln": ["(: cnet_isa_6a186ac812 (IsA setophaga bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "setscrew is a kind of screw", "pln": ["(: cnet_isa_081ab8e1e5 (IsA setscrew screw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "settee is a kind of sofa", "pln": ["(: cnet_isa_9a88885694 (IsA settee sofa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "setter is a kind of sporting dog", "pln": ["(: cnet_isa_a3e71dd621 (IsA setter sporting_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "setting is a kind of environment", "pln": ["(: cnet_isa_d63cc316cd (IsA setting environment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "setting is a kind of position", "pln": ["(: cnet_isa_d0d1cf621b (IsA setting position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "settle is a kind of bench", "pln": ["(: cnet_isa_94b7458d22 (IsA settle bench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "settlement is a kind of decision making", "pln": ["(: cnet_isa_299cd3eb9f (IsA settlement decision_making) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "settlement is a kind of agreement", "pln": ["(: cnet_isa_32c09f436f (IsA settlement agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "settlement is a kind of geographical area", "pln": ["(: cnet_isa_ba4957ae8c (IsA settlement geographical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "settlement house is a kind of center", "pln": ["(: cnet_isa_7f3dfe823e (IsA settlement_house center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "settler is a kind of clerk", "pln": ["(: cnet_isa_14b4cd4aea (IsA settler clerk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "settler is a kind of migrant", "pln": ["(: cnet_isa_3c16c4c47e (IsA settler migrant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "settler is a kind of negotiator", "pln": ["(: cnet_isa_875bab7c25 (IsA settler negotiator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "settling is a kind of sinking", "pln": ["(: cnet_isa_5622958134 (IsA settling sinking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "settlor is a kind of donor", "pln": ["(: cnet_isa_0c71132e1a (IsA settlor donor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "setup is a kind of manner", "pln": ["(: cnet_isa_f2bbdead5c (IsA setup manner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seven is a kind of number", "pln": ["(: cnet_isa_fc1c783675 (IsA seven number) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seven is a kind of digit", "pln": ["(: cnet_isa_84dc9537e3 (IsA seven digit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seven sea is a kind of body of water", "pln": ["(: cnet_isa_416f4bb2e3 (IsA seven_sea body_of_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seven spot is a kind of spot", "pln": ["(: cnet_isa_b95ffba95e (IsA seven_spot spot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seven up is a kind of all four", "pln": ["(: cnet_isa_d39f7264de (IsA seven_up all_four) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seven wonder of ancient world is a kind of memorial", "pln": ["(: cnet_isa_8fb1bf9817 (IsA seven_wonder_of_ancient_world memorial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seventeen is a kind of large integer", "pln": ["(: cnet_isa_65236c6f6f (IsA seventeen large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seventeen year locust is a kind of cicada", "pln": ["(: cnet_isa_ecabee6811 (IsA seventeen_year_locust cicada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "seventeenth is a kind of rank", "pln": ["(: cnet_isa_09b49acab1 (IsA seventeenth rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seventh is a kind of interval", "pln": ["(: cnet_isa_62383c00b5 (IsA seventh interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seventh is a kind of rank", "pln": ["(: cnet_isa_2ff6fb7d1c (IsA seventh rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seventh chord is a kind of chord", "pln": ["(: cnet_isa_09d269c471 (IsA seventh_chord chord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seventh day adventism is a kind of adventism", "pln": ["(: cnet_isa_387b3832d8 (IsA seventh_day_adventism adventism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seventh day of week is a kind of saturday", "pln": ["(: cnet_isa_2faf06386f (IsA seventh_day_of_week saturday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seventh month of year is a kind of july", "pln": ["(: cnet_isa_c17481cfdd (IsA seventh_month_of_year july) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seventy is a kind of decade", "pln": ["(: cnet_isa_feb4fae474 (IsA seventy decade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seventy is a kind of time of life", "pln": ["(: cnet_isa_ecd67d3127 (IsA seventy time_of_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seventieth is a kind of rank", "pln": ["(: cnet_isa_92004ea866 (IsA seventieth rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seventy is a kind of large integer", "pln": ["(: cnet_isa_6a37984c5a (IsA seventy large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seventy eight is a kind of large integer", "pln": ["(: cnet_isa_c159cbd983 (IsA seventy_eight large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "severable contract is a kind of contract", "pln": ["(: cnet_isa_5ee70346ec (IsA severable_contract contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "severalty is a kind of ownership", "pln": ["(: cnet_isa_0fae4e9fe9 (IsA severalty ownership) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "severance is a kind of cut", "pln": ["(: cnet_isa_b46d8a6139 (IsA severance cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "severance agreement is a kind of agreement", "pln": ["(: cnet_isa_8b1fcaab23 (IsA severance_agreement agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "severe acute respiratory syndrome is a kind of respiratory disease", "pln": ["(: cnet_isa_11888f0343 (IsA severe_acute_respiratory_syndrome respiratory_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "severe combined immunodeficiency is a kind of immunodeficiency", "pln": ["(: cnet_isa_7b711f3fad (IsA severe_combined_immunodeficiency immunodeficiency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "severe combined immunodeficiency is a kind of monogenic disorder", "pln": ["(: cnet_isa_c5f17f1550 (IsA severe_combined_immunodeficiency monogenic_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "severity is a kind of sternness", "pln": ["(: cnet_isa_404cc18569 (IsA severity sternness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sewage is a kind of waste", "pln": ["(: cnet_isa_76bcf729ad (IsA sewage waste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sewage disposal is a kind of disposal", "pln": ["(: cnet_isa_103f34acfc (IsA sewage_disposal disposal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sewage disposal plant is a kind of plant", "pln": ["(: cnet_isa_453712044e (IsA sewage_disposal_plant plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sewage farm is a kind of farm", "pln": ["(: cnet_isa_283d7c9777 (IsA sewage_farm farm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sewage system is a kind of facility", "pln": ["(: cnet_isa_84443ef9a7 (IsA sewage_system facility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sewer is a kind of drain", "pln": ["(: cnet_isa_b1a07c14fa (IsA sewer drain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sewer is a kind of needleworker", "pln": ["(: cnet_isa_cc8acb093e (IsA sewer needleworker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sewer gas is a kind of gas", "pln": ["(: cnet_isa_89e12c4a37 (IsA sewer_gas gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sewer main is a kind of main", "pln": ["(: cnet_isa_f567d55f4a (IsA sewer_main main) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sewer rat is a kind of brown rat", "pln": ["(: cnet_isa_2fd4a1f8b6 (IsA sewer_rat brown_rat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sewing is a kind of craft", "pln": ["(: cnet_isa_f81a7fefd9 (IsA sewing craft) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sewing is a kind of hobby", "pln": ["(: cnet_isa_4ed5c0a2f6 (IsA sewing hobby) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sewing is a kind of handicraft", "pln": ["(: cnet_isa_b3409daa89 (IsA sewing handicraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sewing is a kind of needlework", "pln": ["(: cnet_isa_d7c8e8979b (IsA sewing needlework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sewing basket is a kind of workbasket", "pln": ["(: cnet_isa_9bad1ffe78 (IsA sewing_basket workbasket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sewing kit is a kind of kit", "pln": ["(: cnet_isa_a68e7e0fb6 (IsA sewing_kit kit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sewing machine is a kind of home appliance", "pln": ["(: cnet_isa_306e904e20 (IsA sewing_machine home_appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sewing machine is a kind of textile machine", "pln": ["(: cnet_isa_e0f2686cb9 (IsA sewing_machine textile_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sewing machine operator is a kind of sewer", "pln": ["(: cnet_isa_ff4b7f5cac (IsA sewing_machine_operator sewer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sewing needle is a kind of needle", "pln": ["(: cnet_isa_1db684ce68 (IsA sewing_needle needle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sewing room is a kind of room", "pln": ["(: cnet_isa_21c18a27d8 (IsA sewing_room room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex is a kind of activity", "pln": ["(: cnet_isa_c2c1c7da81 (IsA sex activity) (STV 1.0 0.9791))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex is a kind of biological function", "pln": ["(: cnet_isa_879dd4324b (IsA sex biological_function) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex is a kind of enjoyable activity", "pln": ["(: cnet_isa_fe4f9e7059 (IsA sex enjoyable_activity) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex is a kind of good thing", "pln": ["(: cnet_isa_792a0e7248 (IsA sex good_thing) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex is a kind of heart pounding experience", "pln": ["(: cnet_isa_8bf2056c6c (IsA sex heart_pounding_experience) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex is a kind of leisure activity", "pln": ["(: cnet_isa_2a42c3d428 (IsA sex leisure_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex is a kind of messy activity", "pln": ["(: cnet_isa_18b90fb679 (IsA sex messy_activity) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex is a kind of not often", "pln": ["(: cnet_isa_aa6643a158 (IsA sex not_often) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex is a kind of sweaty activity", "pln": ["(: cnet_isa_e43ecb868a (IsA sex sweaty_activity) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex is a kind of three letter word", "pln": ["(: cnet_isa_59f911af4c (IsA sex three_letter_word) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sex is a kind of way to earn money", "pln": ["(: cnet_isa_6364f8bbaa (IsA sex way_to_earn_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sex is a kind of physiological property", "pln": ["(: cnet_isa_a59a5cd59e (IsA sex physiological_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex is a kind of feeling", "pln": ["(: cnet_isa_fd515654d5 (IsA sex feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sex is a kind of class", "pln": ["(: cnet_isa_f0c87c6bec (IsA sex class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex appeal is a kind of attractiveness", "pln": ["(: cnet_isa_25d90fc75a (IsA sex_appeal attractiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex change is a kind of change", "pln": ["(: cnet_isa_182a4bc1b3 (IsA sex_change change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex change operation is a kind of operation", "pln": ["(: cnet_isa_16b4581b42 (IsA sex_change_operation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex characteristic is a kind of feature", "pln": ["(: cnet_isa_e3375a88be (IsA sex_characteristic feature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex chromatin is a kind of chromatin", "pln": ["(: cnet_isa_b8b369951d (IsA sex_chromatin chromatin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex chromosome is a kind of chromosome", "pln": ["(: cnet_isa_1fd0f4eb07 (IsA sex_chromosome chromosome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex drive is a kind of drive", "pln": ["(: cnet_isa_2be84eb849 (IsA sex_drive drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex kitten is a kind of girl", "pln": ["(: cnet_isa_a610f2ba4e (IsA sex_kitten girl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex linkage is a kind of organic phenomenon", "pln": ["(: cnet_isa_8fc46fac85 (IsA sex_linkage organic_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex linked disorder is a kind of chromosomal aberration", "pln": ["(: cnet_isa_7b3b4929f9 (IsA sex_linked_disorder chromosomal_aberration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex manual is a kind of manual", "pln": ["(: cnet_isa_80426d392a (IsA sex_manual manual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sex object is a kind of person", "pln": ["(: cnet_isa_707b173ceb (IsA sex_object person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex offender is a kind of convict", "pln": ["(: cnet_isa_bc719fba9b (IsA sex_offender convict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sex symbol is a kind of person", "pln": ["(: cnet_isa_d980d46018 (IsA sex_symbol person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sexagenarian is a kind of oldster", "pln": ["(: cnet_isa_c2a224882b (IsA sexagenarian oldster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sexcapade is a kind of escapade", "pln": ["(: cnet_isa_905c9e7b8c (IsA sexcapade escapade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sexism is a kind of discrimination", "pln": ["(: cnet_isa_719740b907 (IsA sexism discrimination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sexploitation is a kind of exploitation", "pln": ["(: cnet_isa_e8c0cfba2d (IsA sexploitation exploitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sext is a kind of canonical hour", "pln": ["(: cnet_isa_8751bd0934 (IsA sext canonical_hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sextant is a kind of measuring instrument", "pln": ["(: cnet_isa_813d325347 (IsA sextant measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sextant is a kind of angular unit", "pln": ["(: cnet_isa_d8090bceb7 (IsA sextant angular_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sextet is a kind of musical composition", "pln": ["(: cnet_isa_5628802aeb (IsA sextet musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sextet is a kind of gathering", "pln": ["(: cnet_isa_46e7170728 (IsA sextet gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sextet is a kind of musical organization", "pln": ["(: cnet_isa_201afe5769 (IsA sextet musical_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sextet is a kind of set", "pln": ["(: cnet_isa_ad7d1e7bbe (IsA sextet set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sextillion is a kind of large integer", "pln": ["(: cnet_isa_6877d127fb (IsA sextillion large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sexton is a kind of caretaker", "pln": ["(: cnet_isa_63a825bb38 (IsA sexton caretaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sexton is a kind of church officer", "pln": ["(: cnet_isa_5b10d8e863 (IsA sexton church_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sexual activity is a kind of bodily process", "pln": ["(: cnet_isa_99d9d0f1f8 (IsA sexual_activity bodily_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sexual arousal is a kind of arousal", "pln": ["(: cnet_isa_5262c291e2 (IsA sexual_arousal arousal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sexual assault is a kind of statutory offense", "pln": ["(: cnet_isa_7ce5bf19c4 (IsA sexual_assault statutory_offense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sexual attraction is a kind of attraction", "pln": ["(: cnet_isa_fe51b21790 (IsA sexual_attraction attraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sexual conquest is a kind of seduction", "pln": ["(: cnet_isa_1da253b71c (IsA sexual_conquest seduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sexual desire is a kind of desire", "pln": ["(: cnet_isa_b233944df1 (IsA sexual_desire desire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sexual discrimination is a kind of sexism", "pln": ["(: cnet_isa_2f111c8888 (IsA sexual_discrimination sexism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sexual harassment is a kind of harassment", "pln": ["(: cnet_isa_903a279574 (IsA sexual_harassment harassment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sexual immorality is a kind of evil", "pln": ["(: cnet_isa_3afe2bd010 (IsA sexual_immorality evil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sexual intercourse is a kind of sexual activity", "pln": ["(: cnet_isa_6fc88c9bb4 (IsA sexual_intercourse sexual_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sexual love is a kind of sexual activity", "pln": ["(: cnet_isa_85bc0200e4 (IsA sexual_love sexual_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sexual pleasure is a kind of pleasure", "pln": ["(: cnet_isa_ac723fe47e (IsA sexual_pleasure pleasure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sexual relationship is a kind of relationship", "pln": ["(: cnet_isa_b8874d4d2e (IsA sexual_relationship relationship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sexual reproduction is a kind of reproduction", "pln": ["(: cnet_isa_3ce22cdccf (IsA sexual_reproduction reproduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sexually transmitted disease is a kind of germ", "pln": ["(: cnet_isa_551acc1b30 (IsA sexually_transmitted_disease germ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sexually transmitted disease is a kind of infection", "pln": ["(: cnet_isa_0388e02532 (IsA sexually_transmitted_disease infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sexually transmitted disease is a kind of transmitted disease", "pln": ["(: cnet_isa_8599c8636f (IsA sexually_transmitted_disease transmitted_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seychelle monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_d381e82160 (IsA seychelle_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seychelle rupee is a kind of seychelle monetary unit", "pln": ["(: cnet_isa_6c0a7a7f69 (IsA seychelle_rupee seychelle_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "seychellois is a kind of aborigine", "pln": ["(: cnet_isa_159c8923bf (IsA seychellois aborigine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sforzando is a kind of chord", "pln": ["(: cnet_isa_45a05023cf (IsA sforzando chord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sforzando is a kind of musical notation", "pln": ["(: cnet_isa_c82975241e (IsA sforzando musical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sgraffito is a kind of decoration", "pln": ["(: cnet_isa_dd2f4b38d3 (IsA sgraffito decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sha ban is a kind of islamic calendar month", "pln": ["(: cnet_isa_0c2e0607f7 (IsA sha_ban islamic_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shabbiness is a kind of inelegance", "pln": ["(: cnet_isa_2197d85bc5 (IsA shabbiness inelegance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shackle is a kind of bar", "pln": ["(: cnet_isa_5582839d8f (IsA shackle bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shackle is a kind of restraint", "pln": ["(: cnet_isa_594b4b87e8 (IsA shackle restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shad is a kind of clupeid fish", "pln": ["(: cnet_isa_825de2e277 (IsA shad clupeid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shad is a kind of food fish", "pln": ["(: cnet_isa_a3c258290f (IsA shad food_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shad is a kind of fish", "pln": ["(: cnet_isa_57ab91ff14 (IsA shad fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shad roe is a kind of roe", "pln": ["(: cnet_isa_2c3c0df188 (IsA shad_roe roe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shade is a kind of protective covering", "pln": ["(: cnet_isa_0d5fa6a4c6 (IsA shade protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shade is a kind of representation", "pln": ["(: cnet_isa_360790e942 (IsA shade representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shade is a kind of color", "pln": ["(: cnet_isa_c90a07a8d8 (IsA shade color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shade is a kind of inferiority", "pln": ["(: cnet_isa_a25b4854f4 (IsA shade inferiority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shade is a kind of semidarkness", "pln": ["(: cnet_isa_1f661d884a (IsA shade semidarkness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shade tree is a kind of tree", "pln": ["(: cnet_isa_ab68186887 (IsA shade_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shade is a kind of sunglass", "pln": ["(: cnet_isa_f80ba474c8 (IsA shade sunglass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shade is a kind of reminder", "pln": ["(: cnet_isa_ffceb4ec23 (IsA shade reminder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shadiness is a kind of unlawfulness", "pln": ["(: cnet_isa_3004e35007 (IsA shadiness unlawfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shading is a kind of gradation", "pln": ["(: cnet_isa_fb134029d1 (IsA shading gradation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shading is a kind of marking", "pln": ["(: cnet_isa_2b555a38ad (IsA shading marking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shadow is a kind of recourse", "pln": ["(: cnet_isa_df06d1a882 (IsA shadow recourse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shadow is a kind of foreboding", "pln": ["(: cnet_isa_eee24ce65b (IsA shadow foreboding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shadow is a kind of follower", "pln": ["(: cnet_isa_97d605b28e (IsA shadow follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shadow is a kind of presence", "pln": ["(: cnet_isa_144f259c4a (IsA shadow presence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shadow is a kind of shade", "pln": ["(: cnet_isa_cea38b23dc (IsA shadow shade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shadow box is a kind of box", "pln": ["(: cnet_isa_1cf13ee4a8 (IsA shadow_box box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shadow cabinet is a kind of cabinet", "pln": ["(: cnet_isa_196584623b (IsA shadow_cabinet cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shadowboxing is a kind of exercise", "pln": ["(: cnet_isa_0c4b0145df (IsA shadowboxing exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shadowing is a kind of pursuit", "pln": ["(: cnet_isa_be0cf53ad4 (IsA shadowing pursuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shaft is a kind of upright", "pln": ["(: cnet_isa_aa967169c0 (IsA shaft upright) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shaft is a kind of passage", "pln": ["(: cnet_isa_23334c1e7e (IsA shaft passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shaft is a kind of passageway", "pln": ["(: cnet_isa_eba066b2be (IsA shaft passageway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shaft is a kind of rod", "pln": ["(: cnet_isa_a4947005c8 (IsA shaft rod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shaft is a kind of line", "pln": ["(: cnet_isa_ff8a45c863 (IsA shaft line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shag is a kind of social dancing", "pln": ["(: cnet_isa_d5b382b63c (IsA shag social_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shag is a kind of fabric", "pln": ["(: cnet_isa_7275b2b4d6 (IsA shag fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shag is a kind of tangle", "pln": ["(: cnet_isa_a48b4d9852 (IsA shag tangle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shag is a kind of tobacco", "pln": ["(: cnet_isa_a3363743b7 (IsA shag tobacco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shag rug is a kind of rug", "pln": ["(: cnet_isa_c5c942f057 (IsA shag_rug rug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shagbark is a kind of hickory", "pln": ["(: cnet_isa_1620c17b28 (IsA shagbark hickory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shagginess is a kind of roughness", "pln": ["(: cnet_isa_1a50a70d76 (IsA shagginess roughness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shagginess is a kind of sloppiness", "pln": ["(: cnet_isa_167ff8c4a4 (IsA shagginess sloppiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shaggy dog story is a kind of joke", "pln": ["(: cnet_isa_a57004fcab (IsA shaggy_dog_story joke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "shakers is a kind of sect", "pln": ["(: cnet_isa_ce07b56d44 (IsA shakers sect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shaggymane is a kind of agaric", "pln": ["(: cnet_isa_e796094722 (IsA shaggymane agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shah of iran is a kind of sovereign", "pln": ["(: cnet_isa_c62624685b (IsA shah_of_iran sovereign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shahadah is a kind of pillar of islam", "pln": ["(: cnet_isa_d51cc03a5a (IsA shahadah pillar_of_islam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shahadah is a kind of witness", "pln": ["(: cnet_isa_5bf94bd6fb (IsA shahadah witness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shahaptian is a kind of penutian", "pln": ["(: cnet_isa_0de11f6533 (IsA shahaptian penutian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shaheed is a kind of martyr", "pln": ["(: cnet_isa_bfef19976b (IsA shaheed martyr) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shaitan is a kind of genie", "pln": ["(: cnet_isa_b2b4deda75 (IsA shaitan genie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shakedown is a kind of extortion", "pln": ["(: cnet_isa_99de41f1ab (IsA shakedown extortion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shakedown is a kind of search", "pln": ["(: cnet_isa_d8e010ccb3 (IsA shakedown search) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shakedown is a kind of adjustment", "pln": ["(: cnet_isa_88528d86b7 (IsA shakedown adjustment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shakeout is a kind of economic condition", "pln": ["(: cnet_isa_8a1bab2a97 (IsA shakeout economic_condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shaker is a kind of container", "pln": ["(: cnet_isa_161e01120b (IsA shaker container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shaker is a kind of christian", "pln": ["(: cnet_isa_4726199a71 (IsA shaker christian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shaker is a kind of person", "pln": ["(: cnet_isa_4cb0020842 (IsA shaker person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shaker is a kind of sect", "pln": ["(: cnet_isa_8a59c4aa20 (IsA shaker sect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shakespeare is a kind of great dramatist", "pln": ["(: cnet_isa_9568c09827 (IsA shakespeare great_dramatist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shakespearean is a kind of scholar", "pln": ["(: cnet_isa_f148ddf8ba (IsA shakespearean scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shakespearean sonnet is a kind of sonnet", "pln": ["(: cnet_isa_a37990fc13 (IsA shakespearean_sonnet sonnet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shakiness is a kind of instability", "pln": ["(: cnet_isa_f57f33030c (IsA shakiness instability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shaking is a kind of agitation", "pln": ["(: cnet_isa_45a8869754 (IsA shaking agitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "shaking hands is a kind of important social practice", "pln": ["(: cnet_isa_e5eda84552 (IsA shaking_hands important_social_practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shaking hand is a kind of form of greeting among human", "pln": ["(: cnet_isa_2cbcb6a075 (IsA shaking_hand form_of_greeting_among_human) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shaking hand is a kind of important social practice", "pln": ["(: cnet_isa_deb9ae079d (IsA shaking_hand important_social_practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shaktism is a kind of hinduism", "pln": ["(: cnet_isa_e3c91c80b7 (IsA shaktism hinduism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shaktism is a kind of sect", "pln": ["(: cnet_isa_3ce08965f6 (IsA shaktism sect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shaktist is a kind of hindoo", "pln": ["(: cnet_isa_32c9860353 (IsA shaktist hindoo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shale is a kind of sedimentary rock", "pln": ["(: cnet_isa_909f528afa (IsA shale sedimentary_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shale oil is a kind of oil", "pln": ["(: cnet_isa_6596203836 (IsA shale_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shallot is a kind of onion", "pln": ["(: cnet_isa_82f318e68e (IsA shallot onion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shallot is a kind of bulb", "pln": ["(: cnet_isa_50f11cc7c9 (IsA shallot bulb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shallow fording is a kind of ford", "pln": ["(: cnet_isa_65b5011b10 (IsA shallow_fording ford) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shallowness is a kind of depth", "pln": ["(: cnet_isa_b751e62c28 (IsA shallowness depth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shallu is a kind of grain sorghum", "pln": ["(: cnet_isa_227982d3f8 (IsA shallu grain_sorghum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shaman is a kind of priest", "pln": ["(: cnet_isa_09d272d4e4 (IsA shaman priest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shamanism is a kind of religion", "pln": ["(: cnet_isa_ab2866568e (IsA shamanism religion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shamble is a kind of walk", "pln": ["(: cnet_isa_51596c07da (IsA shamble walk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shamble is a kind of disorderliness", "pln": ["(: cnet_isa_6cd84d1bb2 (IsA shamble disorderliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shame is a kind of emotion", "pln": ["(: cnet_isa_135896e25f (IsA shame emotion) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shame is a kind of feeling", "pln": ["(: cnet_isa_d039eaeeff (IsA shame feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shame is a kind of dishonor", "pln": ["(: cnet_isa_f7bc97752b (IsA shame dishonor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shamefacedness is a kind of embarrassment", "pln": ["(: cnet_isa_4a37b657ce (IsA shamefacedness embarrassment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shamefulness is a kind of unworthiness", "pln": ["(: cnet_isa_d42ec2a3eb (IsA shamefulness unworthiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shamelessness is a kind of boldness", "pln": ["(: cnet_isa_7411434b60 (IsA shamelessness boldness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shampoo is a kind of hair care", "pln": ["(: cnet_isa_8cb703f0f0 (IsA shampoo hair_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shampoo is a kind of cleansing agent", "pln": ["(: cnet_isa_2e1e168988 (IsA shampoo cleansing_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shamrock pea is a kind of herb", "pln": ["(: cnet_isa_5ac919af9b (IsA shamrock_pea herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shandygaff is a kind of drink", "pln": ["(: cnet_isa_d00f8c7c21 (IsA shandygaff drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shang is a kind of dynasty", "pln": ["(: cnet_isa_892b88a449 (IsA shang dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shanghaier is a kind of kidnapper", "pln": ["(: cnet_isa_5e51bf0966 (IsA shanghaier kidnapper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shank s mare is a kind of leg", "pln": ["(: cnet_isa_46616757d0 (IsA shank_s_mare leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shank is a kind of golf stroke", "pln": ["(: cnet_isa_84b735a7ab (IsA shank golf_stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shank is a kind of cylinder", "pln": ["(: cnet_isa_b2ac9ca672 (IsA shank cylinder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shank is a kind of part", "pln": ["(: cnet_isa_6439585f36 (IsA shank part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shank is a kind of body part", "pln": ["(: cnet_isa_cff8c7b966 (IsA shank body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shank is a kind of cut", "pln": ["(: cnet_isa_d4fc5094ef (IsA shank cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shanny is a kind of blenny", "pln": ["(: cnet_isa_4118827676 (IsA shanny blenny) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shantung is a kind of fabric", "pln": ["(: cnet_isa_ccd1df5ce5 (IsA shantung fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shantytown is a kind of slum", "pln": ["(: cnet_isa_e745950483 (IsA shantytown slum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shape is a kind of geometric figure", "pln": ["(: cnet_isa_88836d665c (IsA shape geometric_figure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shape is a kind of attribute", "pln": ["(: cnet_isa_8ebd064f7d (IsA shape attribute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shape is a kind of spatial property", "pln": ["(: cnet_isa_fc45a047ed (IsA shape spatial_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shape is a kind of concretism", "pln": ["(: cnet_isa_d6503e7eab (IsA shape concretism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shape constancy is a kind of constancy", "pln": ["(: cnet_isa_c2e502cbda (IsA shape_constancy constancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shape up is a kind of employment", "pln": ["(: cnet_isa_8b707c413c (IsA shape_up employment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shapelessness is a kind of unattractiveness", "pln": ["(: cnet_isa_58b62e5df3 (IsA shapelessness unattractiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shapelessness is a kind of amorphous shape", "pln": ["(: cnet_isa_0d91af8c1f (IsA shapelessness amorphous_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shaper is a kind of machine tool", "pln": ["(: cnet_isa_9dd572c6fc (IsA shaper machine_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shaping is a kind of process", "pln": ["(: cnet_isa_20c614c3aa (IsA shaping process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shaping tool is a kind of tool", "pln": ["(: cnet_isa_e8d8239ada (IsA shaping_tool tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shard is a kind of piece", "pln": ["(: cnet_isa_14780036da (IsA shard piece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "share is a kind of asset", "pln": ["(: cnet_isa_e7665fb16f (IsA share asset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "share is a kind of stock certificate", "pln": ["(: cnet_isa_c2660928d0 (IsA share stock_certificate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sharecropper is a kind of agricultural laborer", "pln": ["(: cnet_isa_4558668e5a (IsA sharecropper agricultural_laborer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shareholding is a kind of property", "pln": ["(: cnet_isa_d8348c0f42 (IsA shareholding property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shareware is a kind of software", "pln": ["(: cnet_isa_32ee83eab9 (IsA shareware software) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shariah is a kind of law", "pln": ["(: cnet_isa_547dbfd119 (IsA shariah law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sharing is a kind of distribution", "pln": ["(: cnet_isa_9646a02761 (IsA sharing distribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sharing is a kind of mutuality", "pln": ["(: cnet_isa_9bce23cbbf (IsA sharing mutuality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shark is a kind of elasmobranch", "pln": ["(: cnet_isa_0285bc9435 (IsA shark elasmobranch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shark is a kind of expert", "pln": ["(: cnet_isa_22366ffd23 (IsA shark expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shark is a kind of wrongdoer", "pln": ["(: cnet_isa_1e168453df (IsA shark wrongdoer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shark oil is a kind of animal oil", "pln": ["(: cnet_isa_ec907be967 (IsA shark_oil animal_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shark repellent is a kind of measure", "pln": ["(: cnet_isa_dd17fe7cb2 (IsA shark_repellent measure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sharkskin is a kind of fabric", "pln": ["(: cnet_isa_db74b28911 (IsA sharkskin fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sharksucker is a kind of remora", "pln": ["(: cnet_isa_94d06dbc19 (IsA sharksucker remora) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sharp is a kind of sewing needle", "pln": ["(: cnet_isa_bfca9981eb (IsA sharp sewing_needle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sharp is a kind of musical notation", "pln": ["(: cnet_isa_3bbc55a785 (IsA sharp musical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sharp tailed grouse is a kind of grouse", "pln": ["(: cnet_isa_fb24238403 (IsA sharp_tailed_grouse grouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sharp tongue is a kind of tongue", "pln": ["(: cnet_isa_bae9cb93ab (IsA sharp_tongue tongue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sharpener is a kind of implement", "pln": ["(: cnet_isa_9e66e92bba (IsA sharpener implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sharpie is a kind of sailboat", "pln": ["(: cnet_isa_6a6acd8e81 (IsA sharpie sailboat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sharpness is a kind of distressingness", "pln": ["(: cnet_isa_2877f06060 (IsA sharpness distressingness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sharpness is a kind of shape", "pln": ["(: cnet_isa_3e012ec7b7 (IsA sharpness shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sharpshooter is a kind of schooner", "pln": ["(: cnet_isa_70e2bf5b1a (IsA sharpshooter schooner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sharpshooter is a kind of athlete", "pln": ["(: cnet_isa_f619ed183c (IsA sharpshooter athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sharptail mola is a kind of ocean sunfish", "pln": ["(: cnet_isa_a931c9f1ed (IsA sharptail_mola ocean_sunfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shasta is a kind of shastan", "pln": ["(: cnet_isa_ba039e94d1 (IsA shasta shastan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shasta is a kind of hoka", "pln": ["(: cnet_isa_76b9f1ca7e (IsA shasta hoka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shasta daisy is a kind of composite", "pln": ["(: cnet_isa_d502aedfbf (IsA shasta_daisy composite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shasta salamander is a kind of web toed salamander", "pln": ["(: cnet_isa_2245500844 (IsA shasta_salamander web_toed_salamander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shastan is a kind of hokan", "pln": ["(: cnet_isa_30d0e73abd (IsA shastan hokan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shave is a kind of depilation", "pln": ["(: cnet_isa_41ecf21e07 (IsA shave depilation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shaver is a kind of razor", "pln": ["(: cnet_isa_126da9675a (IsA shaver razor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shaver is a kind of man", "pln": ["(: cnet_isa_846c0f28a0 (IsA shaver man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shavian is a kind of supporter", "pln": ["(: cnet_isa_c0a8eeca48 (IsA shavian supporter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shaving brush is a kind of brush", "pln": ["(: cnet_isa_ace8173d0f (IsA shaving_brush brush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shaving brush tree is a kind of tree", "pln": ["(: cnet_isa_9c9fba358c (IsA shaving_brush_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shaving cream is a kind of soapsud", "pln": ["(: cnet_isa_a3cff373d5 (IsA shaving_cream soapsud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shaving cream is a kind of toiletry", "pln": ["(: cnet_isa_805e5b3522 (IsA shaving_cream toiletry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shaving foam is a kind of foam", "pln": ["(: cnet_isa_f8bf885700 (IsA shaving_foam foam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shaving foam is a kind of toiletry", "pln": ["(: cnet_isa_d2eeca2b7c (IsA shaving_foam toiletry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shavous is a kind of jewish holy day", "pln": ["(: cnet_isa_bb9cdd92cf (IsA shavous jewish_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shawl is a kind of cloak", "pln": ["(: cnet_isa_9c52fa59a9 (IsA shawl cloak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shawm is a kind of oboe", "pln": ["(: cnet_isa_f93c9c268b (IsA shawm oboe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shawnee is a kind of algonquian", "pln": ["(: cnet_isa_a047e9ea26 (IsA shawnee algonquian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shawnee is a kind of algonquin", "pln": ["(: cnet_isa_71cc3d778e (IsA shawnee algonquin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shawnee cake is a kind of johnnycake", "pln": ["(: cnet_isa_7ee39c7441 (IsA shawnee_cake johnnycake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shawwal is a kind of islamic calendar month", "pln": ["(: cnet_isa_67bf5a5a58 (IsA shawwal islamic_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "she devil is a kind of unpleasant woman", "pln": ["(: cnet_isa_056b230832 (IsA she_devil unpleasant_woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "she oak is a kind of casuarina", "pln": ["(: cnet_isa_f6e7cfd710 (IsA she_oak casuarina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shear is a kind of edge tool", "pln": ["(: cnet_isa_a2297d2e0b (IsA shear edge_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shear is a kind of scissor", "pln": ["(: cnet_isa_3f5e7dadf3 (IsA shear scissor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shear is a kind of deformation", "pln": ["(: cnet_isa_eb5860c24a (IsA shear deformation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shearer is a kind of skilled worker", "pln": ["(: cnet_isa_6f7407f896 (IsA shearer skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shearer is a kind of workman", "pln": ["(: cnet_isa_c358bb6fcd (IsA shearer workman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shearing is a kind of cut", "pln": ["(: cnet_isa_4cdf06b16f (IsA shearing cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shearwater is a kind of petrel", "pln": ["(: cnet_isa_9255a6b2a5 (IsA shearwater petrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheath is a kind of protective covering", "pln": ["(: cnet_isa_89f8f98610 (IsA sheath protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheath is a kind of covering", "pln": ["(: cnet_isa_85362b82e3 (IsA sheath covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheathing is a kind of protective covering", "pln": ["(: cnet_isa_a5516ae3e0 (IsA sheathing protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shebang is a kind of system", "pln": ["(: cnet_isa_45e43ef4cb (IsA shebang system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shebat is a kind of jewish calendar month", "pln": ["(: cnet_isa_27a01b6def (IsA shebat jewish_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shebeen is a kind of tavern", "pln": ["(: cnet_isa_fa252baa60 (IsA shebeen tavern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shed is a kind of place to store lawn equipment", "pln": ["(: cnet_isa_f2998f5b4d (IsA shed place_to_store_lawn_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shed is a kind of outbuilding", "pln": ["(: cnet_isa_b6b069f530 (IsA shed outbuilding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shedder is a kind of attacker", "pln": ["(: cnet_isa_f15d4f95a7 (IsA shedder attacker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shedding is a kind of organic process", "pln": ["(: cnet_isa_8f44855d32 (IsA shedding organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheep is a kind of animal", "pln": ["(: cnet_isa_b4f477a12f (IsA sheep animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheep is a kind of farm animal", "pln": ["(: cnet_isa_1131b274da (IsA sheep farm_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sheep is a kind of bovid", "pln": ["(: cnet_isa_6094554f2b (IsA sheep bovid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheep is a kind of follower", "pln": ["(: cnet_isa_d340931414 (IsA sheep follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sheep is a kind of simpleton", "pln": ["(: cnet_isa_7ec874f3fb (IsA sheep simpleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheep bell is a kind of bell", "pln": ["(: cnet_isa_e6ea45a5e3 (IsA sheep_bell bell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheep botfly is a kind of botfly", "pln": ["(: cnet_isa_d0cc38a539 (IsA sheep_botfly botfly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheep dip is a kind of liquid", "pln": ["(: cnet_isa_252c1a6e67 (IsA sheep_dip liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheep dip is a kind of pesticide", "pln": ["(: cnet_isa_28770bb0d7 (IsA sheep_dip pesticide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheep fescue is a kind of grass", "pln": ["(: cnet_isa_a2943b05dc (IsA sheep_fescue grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheep frog is a kind of frog", "pln": ["(: cnet_isa_2eed063374 (IsA sheep_frog frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheep ked is a kind of louse fly", "pln": ["(: cnet_isa_89c8b8cfd6 (IsA sheep_ked louse_fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheep laurel is a kind of kalmia", "pln": ["(: cnet_isa_743f8fee51 (IsA sheep_laurel kalmia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sheep plant is a kind of herb", "pln": ["(: cnet_isa_0344af0fca (IsA sheep_plant herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheep sorrel is a kind of dock", "pln": ["(: cnet_isa_2834e8d792 (IsA sheep_sorrel dock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheep tick is a kind of hard tick", "pln": ["(: cnet_isa_bd1614d98a (IsA sheep_tick hard_tick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheepherder is a kind of herder", "pln": ["(: cnet_isa_d4d5966517 (IsA sheepherder herder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheepman is a kind of stockman", "pln": ["(: cnet_isa_2a3495e29a (IsA sheepman stockman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheepshank is a kind of knot", "pln": ["(: cnet_isa_a60756eee4 (IsA sheepshank knot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheepshead is a kind of sparid", "pln": ["(: cnet_isa_427eaee235 (IsA sheepshead sparid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheepshead porgy is a kind of porgy", "pln": ["(: cnet_isa_148f508a47 (IsA sheepshead_porgy porgy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheepshearing is a kind of festival", "pln": ["(: cnet_isa_402c304ad1 (IsA sheepshearing festival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheepshearing is a kind of shearing", "pln": ["(: cnet_isa_79cd0fb349 (IsA sheepshearing shearing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheepshearing is a kind of season", "pln": ["(: cnet_isa_36f753b2f9 (IsA sheepshearing season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheepskin is a kind of leather", "pln": ["(: cnet_isa_7747d75dab (IsA sheepskin leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheepskin coat is a kind of coat", "pln": ["(: cnet_isa_a2bbf7df1a (IsA sheepskin_coat coat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheepwalk is a kind of farm", "pln": ["(: cnet_isa_c4b6dfd2d6 (IsA sheepwalk farm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sheet is a kind of artifact", "pln": ["(: cnet_isa_13884fe292 (IsA sheet artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheet is a kind of bed linen", "pln": ["(: cnet_isa_86e823197b (IsA sheet bed_linen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheet is a kind of paper", "pln": ["(: cnet_isa_b0ad4df7b4 (IsA sheet paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheet is a kind of expanse", "pln": ["(: cnet_isa_c0ac88dd7b (IsA sheet expanse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheet is a kind of line", "pln": ["(: cnet_isa_b1373ea8e9 (IsA sheet line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheet anchor is a kind of anchor", "pln": ["(: cnet_isa_5140fa5a00 (IsA sheet_anchor anchor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheet bend is a kind of hitch", "pln": ["(: cnet_isa_ad22da3d02 (IsA sheet_bend hitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheet iron is a kind of plate iron", "pln": ["(: cnet_isa_5e3f1cbe73 (IsA sheet_iron plate_iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheet lighting is a kind of lightning", "pln": ["(: cnet_isa_f5528d45e4 (IsA sheet_lighting lightning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheet metal is a kind of sheet", "pln": ["(: cnet_isa_77635a95d6 (IsA sheet_metal sheet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheet metal work is a kind of trade", "pln": ["(: cnet_isa_a85da89b59 (IsA sheet_metal_work trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheet music is a kind of musical composition", "pln": ["(: cnet_isa_bd41587333 (IsA sheet_music musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sheet pile is a kind of pile", "pln": ["(: cnet_isa_eaf32d898f (IsA sheet_pile pile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheet web is a kind of spider web", "pln": ["(: cnet_isa_abf32ac08c (IsA sheet_web spider_web) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheeting is a kind of fabric", "pln": ["(: cnet_isa_a3538559cb (IsA sheeting fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shegetz is a kind of goy", "pln": ["(: cnet_isa_1f870412fb (IsA shegetz goy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheik is a kind of ruler", "pln": ["(: cnet_isa_91ccb65d26 (IsA sheik ruler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sheika is a kind of wife", "pln": ["(: cnet_isa_cbf67fa1f9 (IsA sheika wife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheikdom is a kind of domain", "pln": ["(: cnet_isa_fa51af2cc7 (IsA sheikdom domain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shekel is a kind of israeli monetary unit", "pln": ["(: cnet_isa_5a1f6a6674 (IsA shekel israeli_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sheldrake is a kind of duck", "pln": ["(: cnet_isa_fa55bd7408 (IsA sheldrake duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shelduck is a kind of sheldrake", "pln": ["(: cnet_isa_ddb9998fc1 (IsA shelduck sheldrake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shelf is a kind of horizontal surface", "pln": ["(: cnet_isa_53894dfcfb (IsA shelf horizontal_surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shelf is a kind of support", "pln": ["(: cnet_isa_af3a0f0025 (IsA shelf support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shelf bracket is a kind of bracket", "pln": ["(: cnet_isa_7b1339b1ca (IsA shelf_bracket bracket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shelf ice is a kind of ice", "pln": ["(: cnet_isa_a14c9fa206 (IsA shelf_ice ice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shelf life is a kind of time period", "pln": ["(: cnet_isa_24e1e036c9 (IsA shelf_life time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shelfful is a kind of containerful", "pln": ["(: cnet_isa_28b8db92fc (IsA shelfful containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shell is a kind of covering", "pln": ["(: cnet_isa_fe6179ab53 (IsA shell covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shell is a kind of ammunition", "pln": ["(: cnet_isa_f91b0f7a1e (IsA shell ammunition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shell is a kind of housing", "pln": ["(: cnet_isa_5192603de9 (IsA shell housing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shell is a kind of racing boat", "pln": ["(: cnet_isa_d5403688e4 (IsA shell racing_boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shell is a kind of hull", "pln": ["(: cnet_isa_3e78b3ad5b (IsA shell hull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shell is a kind of animal material", "pln": ["(: cnet_isa_c25d6694b2 (IsA shell animal_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shell bean is a kind of fresh bean", "pln": ["(: cnet_isa_f56aeddcc6 (IsA shell_bean fresh_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shell bean is a kind of bean", "pln": ["(: cnet_isa_21903eb48c (IsA shell_bean bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shell corporation is a kind of corporation", "pln": ["(: cnet_isa_77e29ff1d0 (IsA shell_corporation corporation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shell game is a kind of swindle", "pln": ["(: cnet_isa_6712d6a386 (IsA shell_game swindle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shell plating is a kind of plate", "pln": ["(: cnet_isa_bd3c716c21 (IsA shell_plating plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shell stitch is a kind of crochet stitch", "pln": ["(: cnet_isa_b33130a900 (IsA shell_stitch crochet_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shellac is a kind of varnish", "pln": ["(: cnet_isa_50e71621cb (IsA shellac varnish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shellac is a kind of lac", "pln": ["(: cnet_isa_24acefad45 (IsA shellac lac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shellac wax is a kind of wax", "pln": ["(: cnet_isa_db4c99247a (IsA shellac_wax wax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheller is a kind of worker", "pln": ["(: cnet_isa_c11897cf87 (IsA sheller worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shellfire is a kind of shooting", "pln": ["(: cnet_isa_28341cffe7 (IsA shellfire shooting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shellfish is a kind of seafood", "pln": ["(: cnet_isa_11790733c4 (IsA shellfish seafood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shellflower is a kind of ginger", "pln": ["(: cnet_isa_38c1364741 (IsA shellflower ginger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shellflower is a kind of marsh plant", "pln": ["(: cnet_isa_601ba8af30 (IsA shellflower marsh_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shelter is a kind of housing", "pln": ["(: cnet_isa_dcd2cfbf9d (IsA shelter housing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shelter is a kind of protective covering", "pln": ["(: cnet_isa_d38e3bf3c1 (IsA shelter protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shelter is a kind of structure", "pln": ["(: cnet_isa_06cad1f7c3 (IsA shelter structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheltered workshop is a kind of workshop", "pln": ["(: cnet_isa_b080320f5c (IsA sheltered_workshop workshop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shelver is a kind of worker", "pln": ["(: cnet_isa_6f4885b107 (IsA shelver worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shema is a kind of prayer", "pln": ["(: cnet_isa_733ae05632 (IsA shema prayer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shepherd s pie is a kind of meat pie", "pln": ["(: cnet_isa_0f7a1a8e7a (IsA shepherd_s_pie meat_pie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shepherd s purse is a kind of crucifer", "pln": ["(: cnet_isa_45698f9532 (IsA shepherd_s_purse crucifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shepherd is a kind of clergyman", "pln": ["(: cnet_isa_a59d4284c8 (IsA shepherd clergyman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shepherd dog is a kind of working dog", "pln": ["(: cnet_isa_897a17fcf4 (IsA shepherd_dog working_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shepherdess is a kind of sheepherder", "pln": ["(: cnet_isa_eadf54b600 (IsA shepherdess sheepherder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "sherlock holmes is a kind of famous fictional detective", "pln": ["(: cnet_isa_588e47aef3 (IsA sherlock_holmes famous_fictional_detective) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheraton is a kind of furniture", "pln": ["(: cnet_isa_470d454349 (IsA sheraton furniture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sherbert is a kind of ice", "pln": ["(: cnet_isa_bb6343b3f8 (IsA sherbert ice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sherbet is a kind of frozen dessert", "pln": ["(: cnet_isa_09deb76f58 (IsA sherbet frozen_dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheriff s sale is a kind of sale", "pln": ["(: cnet_isa_42089b2374 (IsA sheriff_s_sale sale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheriff is a kind of police officer", "pln": ["(: cnet_isa_97acc70006 (IsA sheriff police_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheriff is a kind of public official", "pln": ["(: cnet_isa_eca2056d7b (IsA sheriff public_official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sheriff is a kind of lawman", "pln": ["(: cnet_isa_0a8faa42ce (IsA sheriff lawman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sherlock holme is a kind of detective", "pln": ["(: cnet_isa_d62e5ba18f (IsA sherlock_holme detective) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sherlock holme is a kind of famous fictional detective", "pln": ["(: cnet_isa_f65bf4d2e6 (IsA sherlock_holme famous_fictional_detective) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sherlock holme is a kind of fictional character", "pln": ["(: cnet_isa_8c6ae263c7 (IsA sherlock_holme fictional_character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sherpa is a kind of asiatic", "pln": ["(: cnet_isa_95808aa5a4 (IsA sherpa asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sherry is a kind of fortified wine", "pln": ["(: cnet_isa_a38f868ecf (IsA sherry fortified_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shetland pony is a kind of pony", "pln": ["(: cnet_isa_75bc81b8ad (IsA shetland_pony pony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shetland sheepdog is a kind of shepherd dog", "pln": ["(: cnet_isa_d1ed1b0e02 (IsA shetland_sheepdog shepherd_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shetland wool is a kind of wool", "pln": ["(: cnet_isa_005d18c352 (IsA shetland_wool wool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shi ite muslim is a kind of moslem", "pln": ["(: cnet_isa_b221c4b4c6 (IsA shi_ite_muslim moslem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shiah is a kind of sect", "pln": ["(: cnet_isa_dcb68e8f72 (IsA shiah sect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shibboleth is a kind of manner of speaking", "pln": ["(: cnet_isa_18cefd2505 (IsA shibboleth manner_of_speaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shield is a kind of armor", "pln": ["(: cnet_isa_0353a4f503 (IsA shield armor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shield is a kind of protective covering", "pln": ["(: cnet_isa_dc03776ea8 (IsA shield protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shield fern is a kind of fern", "pln": ["(: cnet_isa_b7fda9ed1c (IsA shield_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shielding is a kind of protection", "pln": ["(: cnet_isa_f722df81e0 (IsA shielding protection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shielding is a kind of shield", "pln": ["(: cnet_isa_46ca037b68 (IsA shielding shield) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shift is a kind of motion", "pln": ["(: cnet_isa_b0168f6e66 (IsA shift motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shift is a kind of translation", "pln": ["(: cnet_isa_ceb3a78217 (IsA shift translation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shift is a kind of gang", "pln": ["(: cnet_isa_6a60b1d8eb (IsA shift gang) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shift is a kind of hour", "pln": ["(: cnet_isa_1f1b950f31 (IsA shift hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shift key is a kind of key", "pln": ["(: cnet_isa_65197873e9 (IsA shift_key key) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shift register is a kind of register", "pln": ["(: cnet_isa_4cfe353843 (IsA shift_register register) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shiftiness is a kind of changeableness", "pln": ["(: cnet_isa_cc7f4f26dc (IsA shiftiness changeableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shiftlessness is a kind of indolence", "pln": ["(: cnet_isa_621f90e134 (IsA shiftlessness indolence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shiga bacillus is a kind of shigella", "pln": ["(: cnet_isa_c305781363 (IsA shiga_bacillus shigella) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shigella is a kind of enteric bacteria", "pln": ["(: cnet_isa_9780661ee5 (IsA shigella enteric_bacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shigellosis is a kind of dysentery", "pln": ["(: cnet_isa_64e765e54f (IsA shigellosis dysentery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shih tzu is a kind of toy dog", "pln": ["(: cnet_isa_240f0a400e (IsA shih_tzu toy_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shiism is a kind of islam", "pln": ["(: cnet_isa_4f7f167ac5 (IsA shiism islam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shiitake is a kind of fungus", "pln": ["(: cnet_isa_0b62ff3bbf (IsA shiitake fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shiksa is a kind of woman", "pln": ["(: cnet_isa_8b345a43fb (IsA shiksa woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shill is a kind of decoy", "pln": ["(: cnet_isa_15547823ee (IsA shill decoy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shillelagh is a kind of cudgel", "pln": ["(: cnet_isa_52ac0b3616 (IsA shillelagh cudgel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shilling is a kind of coin", "pln": ["(: cnet_isa_f10cec6b96 (IsA shilling coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shim is a kind of wedge", "pln": ["(: cnet_isa_1a694d0f56 (IsA shim wedge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shimchath torah is a kind of jewish holy day", "pln": ["(: cnet_isa_7a93836d90 (IsA shimchath_torah jewish_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shimmer is a kind of change", "pln": ["(: cnet_isa_c1dfbc8993 (IsA shimmer change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shimmy is a kind of social dancing", "pln": ["(: cnet_isa_c55885a912 (IsA shimmy social_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shimmy is a kind of wobble", "pln": ["(: cnet_isa_10217217bc (IsA shimmy wobble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shin is a kind of body part", "pln": ["(: cnet_isa_6ff84db444 (IsA shin body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shin is a kind of letter", "pln": ["(: cnet_isa_337b2914ef (IsA shin letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shin is a kind of cut", "pln": ["(: cnet_isa_be5674c28f (IsA shin cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shin bet is a kind of international intelligence agency", "pln": ["(: cnet_isa_30c86b98dd (IsA shin_bet international_intelligence_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shin guard is a kind of protective garment", "pln": ["(: cnet_isa_e1edec3df8 (IsA shin_guard protective_garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shin splint is a kind of inflammation", "pln": ["(: cnet_isa_4a23496b92 (IsA shin_splint inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shina is a kind of dard", "pln": ["(: cnet_isa_714cae1b62 (IsA shina dard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shindig is a kind of party", "pln": ["(: cnet_isa_11847b7ff8 (IsA shindig party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shiner is a kind of cyprinid", "pln": ["(: cnet_isa_f87e90b093 (IsA shiner cyprinid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shiner is a kind of object", "pln": ["(: cnet_isa_f8d641735a (IsA shiner object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shiner is a kind of bruise", "pln": ["(: cnet_isa_79a54da59a (IsA shiner bruise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shingle is a kind of signboard", "pln": ["(: cnet_isa_61e6575fe3 (IsA shingle signboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shingle is a kind of building material", "pln": ["(: cnet_isa_14bb07fdac (IsA shingle building_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shingle is a kind of gravel", "pln": ["(: cnet_isa_b7bbca760d (IsA shingle gravel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shingle oak is a kind of oak", "pln": ["(: cnet_isa_35b86028cb (IsA shingle_oak oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shingle tree is a kind of tree", "pln": ["(: cnet_isa_39b21b49e7 (IsA shingle_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shingler is a kind of worker", "pln": ["(: cnet_isa_90fbc855ce (IsA shingler worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shingling is a kind of trade", "pln": ["(: cnet_isa_524ab0db16 (IsA shingling trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shingling is a kind of rock", "pln": ["(: cnet_isa_0d08d2b988 (IsA shingling rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shingon is a kind of buddhism", "pln": ["(: cnet_isa_3a5cca667f (IsA shingon buddhism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shininess is a kind of radiance", "pln": ["(: cnet_isa_be175a255d (IsA shininess radiance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shining is a kind of work", "pln": ["(: cnet_isa_94235ca72d (IsA shining work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shining clubmoss is a kind of club moss", "pln": ["(: cnet_isa_2bdc989a70 (IsA shining_clubmoss club_moss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shining willow is a kind of willow", "pln": ["(: cnet_isa_4d626602e6 (IsA shining_willow willow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shinney is a kind of field hockey", "pln": ["(: cnet_isa_9b527a5b43 (IsA shinney field_hockey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shinplaster is a kind of money", "pln": ["(: cnet_isa_008dc31342 (IsA shinplaster money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shinto is a kind of religion", "pln": ["(: cnet_isa_d5a5884603 (IsA shinto religion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shintoist is a kind of disciple", "pln": ["(: cnet_isa_47fed1ed00 (IsA shintoist disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ship s chandler is a kind of chandler", "pln": ["(: cnet_isa_a73e1d9131 (IsA ship_s_chandler chandler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ship s company is a kind of complement", "pln": ["(: cnet_isa_005c907f0f (IsA ship_s_company complement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ship s paper is a kind of legal document", "pln": ["(: cnet_isa_cd755774d1 (IsA ship_s_paper legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ship is a kind of vessel", "pln": ["(: cnet_isa_a33b83e2b0 (IsA ship vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ship breaker is a kind of contractor", "pln": ["(: cnet_isa_947024fc8b (IsA ship_breaker contractor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ship broker is a kind of agent", "pln": ["(: cnet_isa_d8518df20e (IsA ship_broker agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ship canal is a kind of canal", "pln": ["(: cnet_isa_6c24fe6439 (IsA ship_canal canal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ship chandler is a kind of distributor", "pln": ["(: cnet_isa_d4dc5fadf0 (IsA ship_chandler distributor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ship money is a kind of custom", "pln": ["(: cnet_isa_b95a56ad93 (IsA ship_money custom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ship towed long range acoustic detection system is a kind of shipboard system", "pln": ["(: cnet_isa_4c81f60ff3 (IsA ship_towed_long_range_acoustic_detection_system shipboard_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shipboard soldier is a kind of serviceman", "pln": ["(: cnet_isa_e198790516 (IsA shipboard_soldier serviceman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shipboard system is a kind of naval equipment", "pln": ["(: cnet_isa_667634bd83 (IsA shipboard_system naval_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shipboard system is a kind of system", "pln": ["(: cnet_isa_b9ddff0873 (IsA shipboard_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shipbuilder is a kind of business", "pln": ["(: cnet_isa_61653bbc7f (IsA shipbuilder business) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shipbuilder is a kind of builder", "pln": ["(: cnet_isa_efee4daca1 (IsA shipbuilder builder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shipbuilding is a kind of construction", "pln": ["(: cnet_isa_a2abbb542d (IsA shipbuilding construction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shipbuilding industry is a kind of industry", "pln": ["(: cnet_isa_3aa6785d97 (IsA shipbuilding_industry industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shipmate is a kind of associate", "pln": ["(: cnet_isa_d8e4ac098f (IsA shipmate associate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shipowner is a kind of owner", "pln": ["(: cnet_isa_462773da1e (IsA shipowner owner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shipper is a kind of company", "pln": ["(: cnet_isa_3ae838728b (IsA shipper company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shipper is a kind of businessperson", "pln": ["(: cnet_isa_102b15e2b1 (IsA shipper businessperson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shipping is a kind of conveyance", "pln": ["(: cnet_isa_19da74e199 (IsA shipping conveyance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shipping agent is a kind of agent", "pln": ["(: cnet_isa_b5f375ac44 (IsA shipping_agent agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shipping clerk is a kind of clerk", "pln": ["(: cnet_isa_2007de3b6a (IsA shipping_clerk clerk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shipping company is a kind of company", "pln": ["(: cnet_isa_1848d89603 (IsA shipping_company company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shipping fever is a kind of animal disease", "pln": ["(: cnet_isa_969e0e427a (IsA shipping_fever animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shipping fever is a kind of blood poisoning", "pln": ["(: cnet_isa_860b365fec (IsA shipping_fever blood_poisoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shipping office is a kind of office", "pln": ["(: cnet_isa_9ebb97607e (IsA shipping_office office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shipping room is a kind of room", "pln": ["(: cnet_isa_8481810d95 (IsA shipping_room room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shipside is a kind of side", "pln": ["(: cnet_isa_dde3406623 (IsA shipside side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shipworm is a kind of clam", "pln": ["(: cnet_isa_a82bbdb840 (IsA shipworm clam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shipwreck is a kind of ship", "pln": ["(: cnet_isa_576e3413ca (IsA shipwreck ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shipwreck is a kind of accident", "pln": ["(: cnet_isa_b21f651e3d (IsA shipwreck accident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shipwreck is a kind of ruin", "pln": ["(: cnet_isa_f856e3c91f (IsA shipwreck ruin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shipwright is a kind of wright", "pln": ["(: cnet_isa_07eb64634d (IsA shipwright wright) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shipyard is a kind of workplace", "pln": ["(: cnet_isa_aed1370c49 (IsA shipyard workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shire is a kind of draft horse", "pln": ["(: cnet_isa_ff22f81987 (IsA shire draft_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shire is a kind of administrative district", "pln": ["(: cnet_isa_507d30bc60 (IsA shire administrative_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shirking is a kind of evasion", "pln": ["(: cnet_isa_4540296a37 (IsA shirking evasion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shirodkar s operation is a kind of operation", "pln": ["(: cnet_isa_481e6d93fd (IsA shirodkar_s_operation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shirred egg is a kind of dish", "pln": ["(: cnet_isa_589960e99c (IsA shirred_egg dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shirring is a kind of baking", "pln": ["(: cnet_isa_b13029191b (IsA shirring baking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shirt is a kind of article of clothing", "pln": ["(: cnet_isa_65059ca96e (IsA shirt article_of_clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shirt is a kind of clothe", "pln": ["(: cnet_isa_cf45e8e813 (IsA shirt clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shirt is a kind of item of clothing", "pln": ["(: cnet_isa_a4eff75fa8 (IsA shirt item_of_clothing) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shirt is a kind of garment", "pln": ["(: cnet_isa_99705a02ed (IsA shirt garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shirt button is a kind of button", "pln": ["(: cnet_isa_e6e3cf1337 (IsA shirt_button button) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shirtdress is a kind of dress", "pln": ["(: cnet_isa_17e39783df (IsA shirtdress dress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shirtfront is a kind of front", "pln": ["(: cnet_isa_20b4388944 (IsA shirtfront front) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shirting is a kind of fabric", "pln": ["(: cnet_isa_c7ad6b7b1d (IsA shirting fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shirtmaker is a kind of maker", "pln": ["(: cnet_isa_32662b32c4 (IsA shirtmaker maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shirtsleeve is a kind of sleeve", "pln": ["(: cnet_isa_f8b74d73bc (IsA shirtsleeve sleeve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "shirtsleeves is a kind of dishabille", "pln": ["(: cnet_isa_a5be614f07 (IsA shirtsleeves dishabille) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shirtsleeve is a kind of dishabille", "pln": ["(: cnet_isa_75da31dc2b (IsA shirtsleeve dishabille) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shirttail is a kind of fabric", "pln": ["(: cnet_isa_23e2ab8745 (IsA shirttail fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shirttail is a kind of appendix", "pln": ["(: cnet_isa_1b6842d96b (IsA shirttail appendix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shirtwaist is a kind of blouse", "pln": ["(: cnet_isa_01d7d576e6 (IsA shirtwaist blouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shit is a kind of defecation", "pln": ["(: cnet_isa_c588f2a366 (IsA shit defecation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shit is a kind of diarrhea", "pln": ["(: cnet_isa_a7239a9f69 (IsA shit diarrhea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shittah is a kind of acacia", "pln": ["(: cnet_isa_840994b0e8 (IsA shittah acacia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shittimwood is a kind of wood", "pln": ["(: cnet_isa_67cf7e70e1 (IsA shittimwood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shiv is a kind of knife", "pln": ["(: cnet_isa_18fda3ef13 (IsA shiv knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shiva is a kind of week", "pln": ["(: cnet_isa_d8e0607c03 (IsA shiva week) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shivaism is a kind of hinduism", "pln": ["(: cnet_isa_e407edec7a (IsA shivaism hinduism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shivaism is a kind of sect", "pln": ["(: cnet_isa_9c216dad95 (IsA shivaism sect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shivaist is a kind of hindoo", "pln": ["(: cnet_isa_89bcc5d1d6 (IsA shivaist hindoo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shivaree is a kind of serenade", "pln": ["(: cnet_isa_7f0f122929 (IsA shivaree serenade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shmegegge is a kind of nonsense", "pln": ["(: cnet_isa_a3efdb4ee2 (IsA shmegegge nonsense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shmooze is a kind of talk", "pln": ["(: cnet_isa_f3f2670c35 (IsA shmooze talk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shoal is a kind of body of water", "pln": ["(: cnet_isa_31d02e4c60 (IsA shoal body_of_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoal is a kind of sandbank", "pln": ["(: cnet_isa_c4b2539252 (IsA shoal sandbank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shock is a kind of fight", "pln": ["(: cnet_isa_148a027f50 (IsA shock fight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shock is a kind of earthquake", "pln": ["(: cnet_isa_5077d300fa (IsA shock earthquake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shock is a kind of surprise", "pln": ["(: cnet_isa_85e5d2ee41 (IsA shock surprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shock is a kind of mass", "pln": ["(: cnet_isa_2868d04133 (IsA shock mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shock is a kind of pile", "pln": ["(: cnet_isa_ef2cbab60e (IsA shock pile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shock is a kind of collapse", "pln": ["(: cnet_isa_a80e0b8944 (IsA shock collapse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shock absorber is a kind of damper", "pln": ["(: cnet_isa_e75e6c0a43 (IsA shock_absorber damper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shock therapy is a kind of therapy", "pln": ["(: cnet_isa_34412d6628 (IsA shock_therapy therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shock troop is a kind of troop", "pln": ["(: cnet_isa_7d14a7a710 (IsA shock_troop troop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shock wave is a kind of wave", "pln": ["(: cnet_isa_b61f3a02d3 (IsA shock_wave wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shocker is a kind of message", "pln": ["(: cnet_isa_bcceb858c9 (IsA shocker message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shocker is a kind of bad person", "pln": ["(: cnet_isa_8d7b1f8ba8 (IsA shocker bad_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoddiness is a kind of worthlessness", "pln": ["(: cnet_isa_ff74e5ed0e (IsA shoddiness worthlessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoddy is a kind of wool", "pln": ["(: cnet_isa_6326a63630 (IsA shoddy wool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoe is a kind of footwear", "pln": ["(: cnet_isa_e0e9bcaee0 (IsA shoe footwear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoe is a kind of case", "pln": ["(: cnet_isa_44234ac523 (IsA shoe case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shoe bomb is a kind of explosive device", "pln": ["(: cnet_isa_94f80b10c6 (IsA shoe_bomb explosive_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoe collar is a kind of brim", "pln": ["(: cnet_isa_1a3839a5c3 (IsA shoe_collar brim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoe industry is a kind of industry", "pln": ["(: cnet_isa_54ae1523f8 (IsA shoe_industry industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoe leather is a kind of leather", "pln": ["(: cnet_isa_a2214da775 (IsA shoe_leather leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoe polish is a kind of polish", "pln": ["(: cnet_isa_aafae6ff95 (IsA shoe_polish polish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoe shop is a kind of shop", "pln": ["(: cnet_isa_805d62ffa6 (IsA shoe_shop shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoebill is a kind of wading bird", "pln": ["(: cnet_isa_062c022f85 (IsA shoebill wading_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoebox is a kind of box", "pln": ["(: cnet_isa_ea5aae93ae (IsA shoebox box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoebox is a kind of structure", "pln": ["(: cnet_isa_b49c9a4eef (IsA shoebox structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoeful is a kind of containerful", "pln": ["(: cnet_isa_e2d37465f6 (IsA shoeful containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoehorn is a kind of device", "pln": ["(: cnet_isa_f0a50118b0 (IsA shoehorn device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoelace is a kind of lace", "pln": ["(: cnet_isa_91ce267067 (IsA shoelace lace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shoemaking is a kind of trade", "pln": ["(: cnet_isa_607b041060 (IsA shoemaking trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoe is a kind of clothing", "pln": ["(: cnet_isa_8a133c2d93 (IsA shoe clothing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoeshine is a kind of shining", "pln": ["(: cnet_isa_cd5f5470f0 (IsA shoeshine shining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoeshine is a kind of coating", "pln": ["(: cnet_isa_7a75d6a828 (IsA shoeshine coating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shoestring is a kind of small indefinite quantity", "pln": ["(: cnet_isa_26190383fc (IsA shoestring small_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoestring catch is a kind of catch", "pln": ["(: cnet_isa_7b90ee72d4 (IsA shoestring_catch catch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoestring fungus is a kind of agaric", "pln": ["(: cnet_isa_5866f54c53 (IsA shoestring_fungus agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoetree is a kind of device", "pln": ["(: cnet_isa_6e60d50fa0 (IsA shoetree device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shofar is a kind of horn", "pln": ["(: cnet_isa_ec6945fa0c (IsA shofar horn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shogi is a kind of chess", "pln": ["(: cnet_isa_6a97d72861 (IsA shogi chess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shogun is a kind of dictator", "pln": ["(: cnet_isa_033a52f369 (IsA shogun dictator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shogun is a kind of nipponese", "pln": ["(: cnet_isa_105095c195 (IsA shogun nipponese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shoji is a kind of screen", "pln": ["(: cnet_isa_ba53217685 (IsA shoji screen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shona is a kind of bantu", "pln": ["(: cnet_isa_92002b31d9 (IsA shona bantu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoofly is a kind of rocking chair", "pln": ["(: cnet_isa_f8bf3a58ea (IsA shoofly rocking_chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoofly is a kind of policeman", "pln": ["(: cnet_isa_21d87b82de (IsA shoofly policeman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoofly pie is a kind of pie", "pln": ["(: cnet_isa_62ccc91440 (IsA shoofly_pie pie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shook is a kind of barrel", "pln": ["(: cnet_isa_9816a4721d (IsA shook barrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoot is a kind of shooting", "pln": ["(: cnet_isa_1d3ddfc450 (IsA shoot shooting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoot is a kind of sprout", "pln": ["(: cnet_isa_bb306434d4 (IsA shoot sprout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoot down is a kind of murder", "pln": ["(: cnet_isa_79903c87b0 (IsA shoot_down murder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoot em up is a kind of movie", "pln": ["(: cnet_isa_c1f50e566e (IsA shoot_em_up movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shooter is a kind of gambler", "pln": ["(: cnet_isa_c0cbe7cb4d (IsA shooter gambler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shooter is a kind of player", "pln": ["(: cnet_isa_201f15bb38 (IsA shooter player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shooting is a kind of sport", "pln": ["(: cnet_isa_5ef3ce09ca (IsA shooting sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shooting is a kind of homicide", "pln": ["(: cnet_isa_b137507bbe (IsA shooting homicide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shooting is a kind of propulsion", "pln": ["(: cnet_isa_a59bea3d77 (IsA shooting propulsion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shooting brake is a kind of beach wagon", "pln": ["(: cnet_isa_1923922364 (IsA shooting_brake beach_wagon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shooting gallery is a kind of building", "pln": ["(: cnet_isa_b2db15d891 (IsA shooting_gallery building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shooting gallery is a kind of firing range", "pln": ["(: cnet_isa_f07d615ab1 (IsA shooting_gallery firing_range) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shooting lodge is a kind of country house", "pln": ["(: cnet_isa_1be1d0929a (IsA shooting_lodge country_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shooting preserve is a kind of preserve", "pln": ["(: cnet_isa_b990c8b4f3 (IsA shooting_preserve preserve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shooting script is a kind of script", "pln": ["(: cnet_isa_634d6c54dd (IsA shooting_script script) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shooting star is a kind of meteor", "pln": ["(: cnet_isa_c2cd7aba2b (IsA shooting_star meteor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shooting stick is a kind of device", "pln": ["(: cnet_isa_346487ca7d (IsA shooting_stick device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shop is a kind of store", "pln": ["(: cnet_isa_40b58c6ae4 (IsA shop store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shop is a kind of mercantile establishment", "pln": ["(: cnet_isa_251ed349d2 (IsA shop mercantile_establishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shop assistant is a kind of salesperson", "pln": ["(: cnet_isa_77abbb3dba (IsA shop_assistant salesperson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shop bell is a kind of bell", "pln": ["(: cnet_isa_b3d174b37b (IsA shop_bell bell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shop boy is a kind of male child", "pln": ["(: cnet_isa_c7b04026e1 (IsA shop_boy male_child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shop boy is a kind of shop assistant", "pln": ["(: cnet_isa_525e5d7a80 (IsA shop_boy shop_assistant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shop class is a kind of course", "pln": ["(: cnet_isa_4680b451d5 (IsA shop_class course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shop floor is a kind of workplace", "pln": ["(: cnet_isa_0d5c6add6f (IsA shop_floor workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shop girl is a kind of girl", "pln": ["(: cnet_isa_a5664a2a69 (IsA shop_girl girl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shop girl is a kind of shop assistant", "pln": ["(: cnet_isa_4b1be0b752 (IsA shop_girl shop_assistant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shop steward is a kind of union representative", "pln": ["(: cnet_isa_3ad369359d (IsA shop_steward union_representative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shop talk is a kind of talk", "pln": ["(: cnet_isa_143715f263 (IsA shop_talk talk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shopaholic is a kind of shopper", "pln": ["(: cnet_isa_724244ed00 (IsA shopaholic shopper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shopfront is a kind of front", "pln": ["(: cnet_isa_28f1dc3630 (IsA shopfront front) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shopkeeper is a kind of merchant", "pln": ["(: cnet_isa_f0323e71af (IsA shopkeeper merchant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoplifting is a kind of larceny", "pln": ["(: cnet_isa_19453919a1 (IsA shoplifting larceny) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shopper is a kind of agent", "pln": ["(: cnet_isa_4e956a10d2 (IsA shopper agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shopper is a kind of customer", "pln": ["(: cnet_isa_98183f78d9 (IsA shopper customer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shopping is a kind of buying", "pln": ["(: cnet_isa_6e02b23835 (IsA shopping buying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shopping is a kind of commodity", "pln": ["(: cnet_isa_b05be6b88d (IsA shopping commodity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shopping bag is a kind of bag", "pln": ["(: cnet_isa_ed2e022a25 (IsA shopping_bag bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shopping basket is a kind of basket", "pln": ["(: cnet_isa_f0d6bcd6a7 (IsA shopping_basket basket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shopping cart is a kind of handcart", "pln": ["(: cnet_isa_c0c51d97cc (IsA shopping_cart handcart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shopping list is a kind of list", "pln": ["(: cnet_isa_16b2a93ea8 (IsA shopping_list list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shopping mall is a kind of depressing place", "pln": ["(: cnet_isa_b7904918a7 (IsA shopping_mall depressing_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shopping mall is a kind of place to buy thing", "pln": ["(: cnet_isa_e8960a21d7 (IsA shopping_mall place_to_buy_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shore is a kind of beam", "pln": ["(: cnet_isa_9be445d0a9 (IsA shore beam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shore is a kind of geological formation", "pln": ["(: cnet_isa_777bc60969 (IsA shore geological_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shore boulder is a kind of boulder", "pln": ["(: cnet_isa_c75d37875b (IsA shore_boulder boulder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shore duty is a kind of assignment", "pln": ["(: cnet_isa_b68e6e2528 (IsA shore_duty assignment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shore leave is a kind of leave", "pln": ["(: cnet_isa_4ed41f58fc (IsA shore_leave leave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shore patrol is a kind of military police", "pln": ["(: cnet_isa_12afa556c8 (IsA shore_patrol military_police) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shore pine is a kind of pine", "pln": ["(: cnet_isa_f8507bc5e8 (IsA shore_pine pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shorea is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_e15fc59da1 (IsA shorea dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shorebird is a kind of wading bird", "pln": ["(: cnet_isa_8fecde0a1f (IsA shorebird wading_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoreline is a kind of boundary", "pln": ["(: cnet_isa_170561cfff (IsA shoreline boundary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoring is a kind of support", "pln": ["(: cnet_isa_30ad6261a1 (IsA shoring support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "short s aster is a kind of aster", "pln": ["(: cnet_isa_97b3d194e9 (IsA short_s_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "short is a kind of tract", "pln": ["(: cnet_isa_3f6b5f3f02 (IsA short tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "short account is a kind of index", "pln": ["(: cnet_isa_902bec19ee (IsA short_account index) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "short account is a kind of account", "pln": ["(: cnet_isa_3297478568 (IsA short_account account) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "short bone is a kind of bone", "pln": ["(: cnet_isa_ffd7d46553 (IsA short_bone bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "short circuit is a kind of bad thing", "pln": ["(: cnet_isa_046018f9e3 (IsA short_circuit bad_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "short circuit is a kind of contact", "pln": ["(: cnet_isa_ce79f74911 (IsA short_circuit contact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "short covering is a kind of trading", "pln": ["(: cnet_isa_f90de154a9 (IsA short_covering trading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "short division is a kind of division", "pln": ["(: cnet_isa_a871c9da30 (IsA short_division division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "short gastric artery is a kind of gastric artery", "pln": ["(: cnet_isa_cc8862c904 (IsA short_gastric_artery gastric_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "short horned grasshopper is a kind of grasshopper", "pln": ["(: cnet_isa_66f2275e8b (IsA short_horned_grasshopper grasshopper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "short iron is a kind of iron", "pln": ["(: cnet_isa_d8ba2ce2ba (IsA short_iron iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "short line is a kind of transportation system", "pln": ["(: cnet_isa_39bcb8f73c (IsA short_line transportation_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "short list is a kind of list", "pln": ["(: cnet_isa_4817296ab3 (IsA short_list list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "short loin is a kind of loin", "pln": ["(: cnet_isa_72345710c2 (IsA short_loin loin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "short order is a kind of order", "pln": ["(: cnet_isa_977a4cda09 (IsA short_order order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "short pant is a kind of pair of trouser", "pln": ["(: cnet_isa_4a9e640d7c (IsA short_pant pair_of_trouser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "short rib is a kind of cut of beef", "pln": ["(: cnet_isa_c4f278c8f8 (IsA short_rib cut_of_beef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "short sale is a kind of trading", "pln": ["(: cnet_isa_1b17ee9d2c (IsA short_sale trading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "short saphenous vein is a kind of saphenous vein", "pln": ["(: cnet_isa_d8ef736434 (IsA short_saphenous_vein saphenous_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "short shrift is a kind of rejection", "pln": ["(: cnet_isa_fb577da836 (IsA short_shrift rejection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "short sleeve is a kind of sleeve", "pln": ["(: cnet_isa_dea6a68a03 (IsA short_sleeve sleeve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "short spurred fragrant orchid is a kind of orchid", "pln": ["(: cnet_isa_35f2556874 (IsA short_spurred_fragrant_orchid orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "short staple cotton is a kind of cotton", "pln": ["(: cnet_isa_864e738952 (IsA short_staple_cotton cotton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "short story is a kind of story", "pln": ["(: cnet_isa_51bab1bedf (IsA short_story story) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "short subject is a kind of movie", "pln": ["(: cnet_isa_305b8fd124 (IsA short_subject movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "short tailed shrew is a kind of shrew", "pln": ["(: cnet_isa_020d78d4ee (IsA short_tailed_shrew shrew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "short term memory is a kind of memory", "pln": ["(: cnet_isa_2b67506086 (IsA short_term_memory memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "short ton is a kind of avoirdupois unit", "pln": ["(: cnet_isa_d2b30fe7f6 (IsA short_ton avoirdupois_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "short wave is a kind of radio wave", "pln": ["(: cnet_isa_15ea8b8de3 (IsA short_wave radio_wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shortbread is a kind of butter cookie", "pln": ["(: cnet_isa_eabc1e8ea0 (IsA shortbread butter_cookie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shortcake is a kind of baking powder biscuit", "pln": ["(: cnet_isa_2072f08022 (IsA shortcake baking_powder_biscuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shortcut is a kind of road", "pln": ["(: cnet_isa_4344b01caa (IsA shortcut road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shortener is a kind of agent", "pln": ["(: cnet_isa_1a5825383a (IsA shortener agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shortening is a kind of decrease", "pln": ["(: cnet_isa_dfe2e867c7 (IsA shortening decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shortening is a kind of edible fat", "pln": ["(: cnet_isa_6f917c9fa5 (IsA shortening edible_fat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shortest distance between two point is a kind of straight line", "pln": ["(: cnet_isa_eaf0921d4f (IsA shortest_distance_between_two_point straight_line) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shortfin mako is a kind of mako", "pln": ["(: cnet_isa_cb92fc6dbd (IsA shortfin_mako mako) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shortgrass is a kind of grass", "pln": ["(: cnet_isa_8f4d0adb5a (IsA shortgrass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shorthand is a kind of handwriting", "pln": ["(: cnet_isa_8225fd34f5 (IsA shorthand handwriting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shortia is a kind of flower", "pln": ["(: cnet_isa_082dc4b3cc (IsA shortia flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shortleaf pine is a kind of yellow pine", "pln": ["(: cnet_isa_2f5c566a9d (IsA shortleaf_pine yellow_pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shortness is a kind of duration", "pln": ["(: cnet_isa_169ab08715 (IsA shortness duration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shortness is a kind of length", "pln": ["(: cnet_isa_70750bb19c (IsA shortness length) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shortness is a kind of lowness", "pln": ["(: cnet_isa_bce2477117 (IsA shortness lowness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shortness is a kind of stature", "pln": ["(: cnet_isa_056237f7ba (IsA shortness stature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shortness is a kind of lack", "pln": ["(: cnet_isa_bb9b9f42a6 (IsA shortness lack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shortness of breath is a kind of dyspnea", "pln": ["(: cnet_isa_3db3fc08b2 (IsA shortness_of_breath dyspnea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shortstop is a kind of position", "pln": ["(: cnet_isa_cb8066404c (IsA shortstop position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shortstop is a kind of infielder", "pln": ["(: cnet_isa_63c9089139 (IsA shortstop infielder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shortwave diathermy machine is a kind of diathermy machine", "pln": ["(: cnet_isa_8171a9145f (IsA shortwave_diathermy_machine diathermy_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoshone is a kind of shoshonean", "pln": ["(: cnet_isa_a5e8ede775 (IsA shoshone shoshonean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shoshonean is a kind of uto aztecan", "pln": ["(: cnet_isa_c385935989 (IsA shoshonean uto_aztecan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoshoni is a kind of native american", "pln": ["(: cnet_isa_ab17c63c31 (IsA shoshoni native_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shot is a kind of attempt", "pln": ["(: cnet_isa_2b7e03c45f (IsA shot attempt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shot is a kind of blow", "pln": ["(: cnet_isa_0f0cddcbbc (IsA shot blow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shot is a kind of charge", "pln": ["(: cnet_isa_bec463510a (IsA shot charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shot is a kind of projectile", "pln": ["(: cnet_isa_3651d65655 (IsA shot projectile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shot is a kind of sport equipment", "pln": ["(: cnet_isa_e153997968 (IsA shot sport_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shot is a kind of remark", "pln": ["(: cnet_isa_381919094f (IsA shot remark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shot is a kind of expert", "pln": ["(: cnet_isa_c6ff13b8ac (IsA shot expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shot is a kind of opportunity", "pln": ["(: cnet_isa_76d475bd99 (IsA shot opportunity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shot glass is a kind of glass", "pln": ["(: cnet_isa_1237a2719b (IsA shot_glass glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shot hole is a kind of bore", "pln": ["(: cnet_isa_9a61f8d952 (IsA shot_hole bore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shot metal is a kind of alloy", "pln": ["(: cnet_isa_e753f12c49 (IsA shot_metal alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shot put is a kind of field event", "pln": ["(: cnet_isa_1956fbc1b5 (IsA shot_put field_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shot putter is a kind of athlete", "pln": ["(: cnet_isa_434351abd6 (IsA shot_putter athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shot tower is a kind of tower", "pln": ["(: cnet_isa_61809504a8 (IsA shot_tower tower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shotgun is a kind of gun", "pln": ["(: cnet_isa_fc0fe9fc61 (IsA shotgun gun) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shotgun is a kind of firearm", "pln": ["(: cnet_isa_bd4e866136 (IsA shotgun firearm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shotgun microphone is a kind of directional microphone", "pln": ["(: cnet_isa_eff174789a (IsA shotgun_microphone directional_microphone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shotgun shell is a kind of shell", "pln": ["(: cnet_isa_4efd962878 (IsA shotgun_shell shell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoulder is a kind of cloth covering", "pln": ["(: cnet_isa_8be773f68c (IsA shoulder cloth_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoulder is a kind of edge", "pln": ["(: cnet_isa_02cef5bd96 (IsA shoulder edge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoulder is a kind of ball and socket joint", "pln": ["(: cnet_isa_2059cda242 (IsA shoulder ball_and_socket_joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoulder is a kind of body part", "pln": ["(: cnet_isa_0fc39e8187 (IsA shoulder body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shoulder is a kind of cut", "pln": ["(: cnet_isa_a437961cfc (IsA shoulder cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoulder bag is a kind of bag", "pln": ["(: cnet_isa_d857a56aef (IsA shoulder_bag bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoulder board is a kind of epaulet", "pln": ["(: cnet_isa_1633ee1386 (IsA shoulder_board epaulet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoulder flash is a kind of insignia", "pln": ["(: cnet_isa_00c8357d84 (IsA shoulder_flash insignia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoulder girdle is a kind of arch", "pln": ["(: cnet_isa_01c62dbaae (IsA shoulder_girdle arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoulder holster is a kind of holster", "pln": ["(: cnet_isa_b533a37433 (IsA shoulder_holster holster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoulder pad is a kind of protective garment", "pln": ["(: cnet_isa_47e0392cb5 (IsA shoulder_pad protective_garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoulder patch is a kind of patch", "pln": ["(: cnet_isa_02491f4f80 (IsA shoulder_patch patch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shouldered arch is a kind of arch", "pln": ["(: cnet_isa_83ce46319b (IsA shouldered_arch arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shove is a kind of push", "pln": ["(: cnet_isa_89b6107267 (IsA shove push) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shovel is a kind of fire iron", "pln": ["(: cnet_isa_ac9095133e (IsA shovel fire_iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shovel is a kind of hand tool", "pln": ["(: cnet_isa_b065ad14ea (IsA shovel hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shovel is a kind of containerful", "pln": ["(: cnet_isa_5a90e1fc60 (IsA shovel containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shovel board is a kind of board game", "pln": ["(: cnet_isa_9df5b83a1a (IsA shovel_board board_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shovel hat is a kind of hat", "pln": ["(: cnet_isa_fc2215d087 (IsA shovel_hat hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoveler is a kind of duck", "pln": ["(: cnet_isa_6e47a22527 (IsA shoveler duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shoveler is a kind of worker", "pln": ["(: cnet_isa_c71c3ba4db (IsA shoveler worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shovelhead is a kind of hammerhead", "pln": ["(: cnet_isa_5a24063e31 (IsA shovelhead hammerhead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "show is a kind of entertainment", "pln": ["(: cnet_isa_aded017a76 (IsA show entertainment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "show is a kind of social event", "pln": ["(: cnet_isa_0019b99b62 (IsA show social_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "show bill is a kind of poster", "pln": ["(: cnet_isa_3d6f1e4913 (IsA show_bill poster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "show stopper is a kind of attraction", "pln": ["(: cnet_isa_4117d7e848 (IsA show_stopper attraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "show stopper is a kind of act", "pln": ["(: cnet_isa_168d1e54dc (IsA show_stopper act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "show time is a kind of point", "pln": ["(: cnet_isa_c9c98df592 (IsA show_time point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "show trial is a kind of trial", "pln": ["(: cnet_isa_99d86ad63f (IsA show_trial trial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "showboat is a kind of river boat", "pln": ["(: cnet_isa_498d3165e3 (IsA showboat river_boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "showboat is a kind of steamboat", "pln": ["(: cnet_isa_f0c639ccd4 (IsA showboat steamboat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "showcase is a kind of setting", "pln": ["(: cnet_isa_83c24f517d (IsA showcase setting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shower is a kind of washup", "pln": ["(: cnet_isa_7bde40531b (IsA shower washup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shower is a kind of plumbing fixture", "pln": ["(: cnet_isa_35b1a2bf15 (IsA shower plumbing_fixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shower is a kind of descent", "pln": ["(: cnet_isa_da21c024ad (IsA shower descent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shower is a kind of party", "pln": ["(: cnet_isa_dededfc434 (IsA shower party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shower is a kind of rain", "pln": ["(: cnet_isa_bbdee80df5 (IsA shower rain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shower cap is a kind of cap", "pln": ["(: cnet_isa_a66a27f185 (IsA shower_cap cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shower curtain is a kind of curtain", "pln": ["(: cnet_isa_797fdb2687 (IsA shower_curtain curtain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shower room is a kind of room", "pln": ["(: cnet_isa_22b8f21cc8 (IsA shower_room room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shower stall is a kind of booth", "pln": ["(: cnet_isa_e2b19747ff (IsA shower_stall booth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "showerhead is a kind of nozzle", "pln": ["(: cnet_isa_d012b415fe (IsA showerhead nozzle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "showjumping is a kind of equestrian sport", "pln": ["(: cnet_isa_8c6f940c00 (IsA showjumping equestrian_sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "showman is a kind of booker", "pln": ["(: cnet_isa_c7f908868d (IsA showman booker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "showman is a kind of person", "pln": ["(: cnet_isa_408384dad8 (IsA showman person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "showmanship is a kind of skill", "pln": ["(: cnet_isa_12b08259cb (IsA showmanship skill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "showplace is a kind of topographic point", "pln": ["(: cnet_isa_7d03e5035c (IsA showplace topographic_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "showroom is a kind of large room", "pln": ["(: cnet_isa_c3ae4963fe (IsA showroom large_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "showroom is a kind of place showcas purchasable object", "pln": ["(: cnet_isa_e6b43751a7 (IsA showroom place_showcas_purchasable_object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "showroom is a kind of panopticon", "pln": ["(: cnet_isa_4fe2311351 (IsA showroom panopticon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "showy daisy is a kind of fleabane", "pln": ["(: cnet_isa_6e2e1094f4 (IsA showy_daisy fleabane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "showy goldenrod is a kind of goldenrod", "pln": ["(: cnet_isa_589ac85c94 (IsA showy_goldenrod goldenrod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "showy milkweed is a kind of milkweed", "pln": ["(: cnet_isa_796146194e (IsA showy_milkweed milkweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "showy orchis is a kind of orchis", "pln": ["(: cnet_isa_590fbc7072 (IsA showy_orchis orchis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "showy sunflower is a kind of sunflower", "pln": ["(: cnet_isa_654a07ff56 (IsA showy_sunflower sunflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shrapnel is a kind of shell", "pln": ["(: cnet_isa_ddbff5a99d (IsA shrapnel shell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shred is a kind of small indefinite quantity", "pln": ["(: cnet_isa_41ff717e3c (IsA shred small_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shredder is a kind of device", "pln": ["(: cnet_isa_e2c6cd0fe8 (IsA shredder device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shrew is a kind of insectivore", "pln": ["(: cnet_isa_454e282cbe (IsA shrew insectivore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shrew is a kind of unpleasant woman", "pln": ["(: cnet_isa_a779a72d1a (IsA shrew unpleasant_woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shrew mole is a kind of mole", "pln": ["(: cnet_isa_5a06d9d7ae (IsA shrew_mole mole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shrewdness is a kind of intelligence", "pln": ["(: cnet_isa_d6f5738539 (IsA shrewdness intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shrewishness is a kind of ill nature", "pln": ["(: cnet_isa_a11e181102 (IsA shrewishness ill_nature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shrift is a kind of confession", "pln": ["(: cnet_isa_87aa9482f1 (IsA shrift confession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shrike is a kind of oscine", "pln": ["(: cnet_isa_f5f699c07b (IsA shrike oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shrilling is a kind of noise", "pln": ["(: cnet_isa_ea549a01da (IsA shrilling noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shrillness is a kind of interest", "pln": ["(: cnet_isa_7c057c54ab (IsA shrillness interest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shrillness is a kind of timbre", "pln": ["(: cnet_isa_88baa3a520 (IsA shrillness timbre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shrimp is a kind of decapod crustacean", "pln": ["(: cnet_isa_faf11522c5 (IsA shrimp decapod_crustacean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shrimp butter is a kind of spread", "pln": ["(: cnet_isa_7c4a44d00e (IsA shrimp_butter spread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shrimp cocktail is a kind of cocktail", "pln": ["(: cnet_isa_44bc874f55 (IsA shrimp_cocktail cocktail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shrimp newburg is a kind of seafood newburg", "pln": ["(: cnet_isa_a6aee2e978 (IsA shrimp_newburg seafood_newburg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shrimper is a kind of vessel", "pln": ["(: cnet_isa_d21230df08 (IsA shrimper vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shrimpfish is a kind of teleost fish", "pln": ["(: cnet_isa_0f4a65650f (IsA shrimpfish teleost_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shrine is a kind of place of worship", "pln": ["(: cnet_isa_95285a632a (IsA shrine place_of_worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shrink wrap is a kind of film", "pln": ["(: cnet_isa_dcbbd4c82c (IsA shrink_wrap film) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shrink wrapped software is a kind of software", "pln": ["(: cnet_isa_2819350d39 (IsA shrink_wrapped_software software) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shrinkage is a kind of decrease", "pln": ["(: cnet_isa_3b1526fc09 (IsA shrinkage decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shrinking is a kind of decrease", "pln": ["(: cnet_isa_1cbd06bfbc (IsA shrinking decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shroud is a kind of line", "pln": ["(: cnet_isa_7b24229733 (IsA shroud line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "shrubs is a kind of medium sized plant", "pln": ["(: cnet_isa_e854cfa34d (IsA shrubs medium_sized_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shrovetide is a kind of season", "pln": ["(: cnet_isa_eeb286b59b (IsA shrovetide season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shrub is a kind of woody plant", "pln": ["(: cnet_isa_b70cd4df9a (IsA shrub woody_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shrubbery is a kind of vegetation", "pln": ["(: cnet_isa_835929f427 (IsA shrubbery vegetation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shrubbery is a kind of area", "pln": ["(: cnet_isa_5f6a830acc (IsA shrubbery area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shrubby penstemon is a kind of wildflower", "pln": ["(: cnet_isa_ee3112a3a2 (IsA shrubby_penstemon wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shrubby st john s wort is a kind of st john s wort", "pln": ["(: cnet_isa_3612f2332f (IsA shrubby_st_john_s_wort st_john_s_wort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shrublet is a kind of shrub", "pln": ["(: cnet_isa_93bb881bf6 (IsA shrublet shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shrub is a kind of medium sized plant", "pln": ["(: cnet_isa_8d04e0c371 (IsA shrub medium_sized_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shrug is a kind of gesture", "pln": ["(: cnet_isa_c46c3c8874 (IsA shrug gesture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shtik is a kind of buffoonery", "pln": ["(: cnet_isa_f86bbc1441 (IsA shtik buffoonery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shtik is a kind of business", "pln": ["(: cnet_isa_8f2c3de3f7 (IsA shtik business) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shtik is a kind of small indefinite quantity", "pln": ["(: cnet_isa_d4b7112805 (IsA shtik small_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shtik is a kind of trick", "pln": ["(: cnet_isa_39297d9fbc (IsA shtik trick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shtikl is a kind of shtik", "pln": ["(: cnet_isa_48c472cb69 (IsA shtikl shtik) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shuck is a kind of saying", "pln": ["(: cnet_isa_6608c47ee6 (IsA shuck saying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shuffle is a kind of reordering", "pln": ["(: cnet_isa_372664af0b (IsA shuffle reordering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shuffleboard is a kind of outdoor game", "pln": ["(: cnet_isa_1ddbfd80b3 (IsA shuffleboard outdoor_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shuffler is a kind of card player", "pln": ["(: cnet_isa_a6ea34fd7a (IsA shuffler card_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shuffler is a kind of pedestrian", "pln": ["(: cnet_isa_b5b509a981 (IsA shuffler pedestrian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shufti is a kind of reconnaissance", "pln": ["(: cnet_isa_24c837154e (IsA shufti reconnaissance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shuha shinto is a kind of sect", "pln": ["(: cnet_isa_86871a29ce (IsA shuha_shinto sect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shumard oak is a kind of red oak", "pln": ["(: cnet_isa_53de41f400 (IsA shumard_oak red_oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shunt is a kind of conductor", "pln": ["(: cnet_isa_a50c3848e5 (IsA shunt conductor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shunt is a kind of implant", "pln": ["(: cnet_isa_3c8014c11d (IsA shunt implant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shunt is a kind of passage", "pln": ["(: cnet_isa_05c93ad39d (IsA shunt passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "shunter is a kind of locomotive", "pln": ["(: cnet_isa_5e352ba769 (IsA shunter locomotive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shushi is a kind of japanese type of food", "pln": ["(: cnet_isa_7229e6ed99 (IsA shushi japanese_type_of_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shuteye is a kind of sleep", "pln": ["(: cnet_isa_8540f1f527 (IsA shuteye sleep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shutout is a kind of defeat", "pln": ["(: cnet_isa_c18a73f533 (IsA shutout defeat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shutter is a kind of blind", "pln": ["(: cnet_isa_6b609a1877 (IsA shutter blind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shutter is a kind of mechanical device", "pln": ["(: cnet_isa_553f17692b (IsA shutter mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shutterbug is a kind of enthusiast", "pln": ["(: cnet_isa_f446f08e80 (IsA shutterbug enthusiast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shutting is a kind of motion", "pln": ["(: cnet_isa_23cd4cca33 (IsA shutting motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shutting post is a kind of gatepost", "pln": ["(: cnet_isa_c7065c0e17 (IsA shutting_post gatepost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shuttle is a kind of bobbin", "pln": ["(: cnet_isa_6faccfc048 (IsA shuttle bobbin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shuttle is a kind of public transport", "pln": ["(: cnet_isa_c584e4f9a9 (IsA shuttle public_transport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shuttle bus is a kind of shuttle", "pln": ["(: cnet_isa_39743a8920 (IsA shuttle_bus shuttle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shuttle diplomacy is a kind of diplomacy", "pln": ["(: cnet_isa_779df1bdd9 (IsA shuttle_diplomacy diplomacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shuttle helicopter is a kind of helicopter", "pln": ["(: cnet_isa_b54817a7cd (IsA shuttle_helicopter helicopter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shuttlecock is a kind of badminton equipment", "pln": ["(: cnet_isa_298973ad99 (IsA shuttlecock badminton_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shy is a kind of throw", "pln": ["(: cnet_isa_68529ef649 (IsA shy throw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shy person is a kind of coward", "pln": ["(: cnet_isa_9615f327d7 (IsA shy_person coward) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shyness is a kind of timidity", "pln": ["(: cnet_isa_6e3fcce550 (IsA shyness timidity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "shyster is a kind of wrongdoer", "pln": ["(: cnet_isa_2a19acd158 (IsA shyster wrongdoer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sial is a kind of rock", "pln": ["(: cnet_isa_5191544e7d (IsA sial rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sialadenitis is a kind of inflammation", "pln": ["(: cnet_isa_88319bd4d9 (IsA sialadenitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sialia is a kind of bird genus", "pln": ["(: cnet_isa_3524e1c06b (IsA sialia bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sialidae is a kind of arthropod family", "pln": ["(: cnet_isa_3af3e08f8b (IsA sialidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sialis is a kind of arthropod genus", "pln": ["(: cnet_isa_2a3ffd239b (IsA sialis arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sialolith is a kind of calculus", "pln": ["(: cnet_isa_a2cb909609 (IsA sialolith calculus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siamang is a kind of lesser ape", "pln": ["(: cnet_isa_f99b7c53b7 (IsA siamang lesser_ape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siamese is a kind of breed of cat", "pln": ["(: cnet_isa_8b3ca4364f (IsA siamese breed_of_cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siamese is a kind of asiatic", "pln": ["(: cnet_isa_3b73e56089 (IsA siamese asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siamese cat is a kind of domestic cat", "pln": ["(: cnet_isa_9b4feeea53 (IsA siamese_cat domestic_cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siamese connection is a kind of intake", "pln": ["(: cnet_isa_552e4b9631 (IsA siamese_connection intake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siberian is a kind of russian", "pln": ["(: cnet_isa_d72ba07cd8 (IsA siberian russian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siberian crab is a kind of crab apple", "pln": ["(: cnet_isa_ab874f1891 (IsA siberian_crab crab_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "siberian elm is a kind of elm", "pln": ["(: cnet_isa_c9e0284792 (IsA siberian_elm elm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siberian husky is a kind of sled dog", "pln": ["(: cnet_isa_15ecc89f7c (IsA siberian_husky sled_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siberian larch is a kind of larch", "pln": ["(: cnet_isa_b43a6e37ce (IsA siberian_larch larch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siberian millet is a kind of foxtail millet", "pln": ["(: cnet_isa_7e210e6712 (IsA siberian_millet foxtail_millet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siberian pea tree is a kind of pea tree", "pln": ["(: cnet_isa_e372789866 (IsA siberian_pea_tree pea_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siberian spruce is a kind of spruce", "pln": ["(: cnet_isa_99ccceeae5 (IsA siberian_spruce spruce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siberian wall flower is a kind of wallflower", "pln": ["(: cnet_isa_8524e192f4 (IsA siberian_wall_flower wallflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sibilant is a kind of fricative consonant", "pln": ["(: cnet_isa_ee7af1b40e (IsA sibilant fricative_consonant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sibilation is a kind of pronunciation", "pln": ["(: cnet_isa_aa1f3e78eb (IsA sibilation pronunciation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sibley tent is a kind of canva tent", "pln": ["(: cnet_isa_970bdadeb9 (IsA sibley_tent canva_tent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sibling is a kind of relative", "pln": ["(: cnet_isa_afd10dbec3 (IsA sibling relative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sibyl is a kind of prophet", "pln": ["(: cnet_isa_ee6a0c0dd0 (IsA sibyl prophet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sibyl is a kind of fortuneteller", "pln": ["(: cnet_isa_c86a9199ba (IsA sibyl fortuneteller) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sicilian is a kind of italian", "pln": ["(: cnet_isa_98906c6319 (IsA sicilian italian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sicilian pizza is a kind of pizza", "pln": ["(: cnet_isa_aa31fac0c3 (IsA sicilian_pizza pizza) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sick is a kind of condition of health", "pln": ["(: cnet_isa_fa58d84ed1 (IsA sick condition_of_health) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sick is a kind of people", "pln": ["(: cnet_isa_13db73d335 (IsA sick people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sick bag is a kind of bag", "pln": ["(: cnet_isa_2e9da9a296 (IsA sick_bag bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sick benefit is a kind of benefit", "pln": ["(: cnet_isa_55c41450b9 (IsA sick_benefit benefit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sick call is a kind of military formation", "pln": ["(: cnet_isa_a23c4341d7 (IsA sick_call military_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sick headache is a kind of headache", "pln": ["(: cnet_isa_b6e6f2cd10 (IsA sick_headache headache) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sick joke is a kind of joke", "pln": ["(: cnet_isa_cf5e6209b6 (IsA sick_joke joke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sick leave is a kind of leave", "pln": ["(: cnet_isa_f25782f61a (IsA sick_leave leave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sick list is a kind of list", "pln": ["(: cnet_isa_a72cd911c3 (IsA sick_list list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sick pay is a kind of wage", "pln": ["(: cnet_isa_e30e38e4d7 (IsA sick_pay wage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sick person is a kind of unfortunate", "pln": ["(: cnet_isa_5382e29ca5 (IsA sick_person unfortunate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sickbay is a kind of room", "pln": ["(: cnet_isa_8121e9e119 (IsA sickbay room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sickbed is a kind of bed", "pln": ["(: cnet_isa_f922da54b3 (IsA sickbed bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sickle is a kind of edge tool", "pln": ["(: cnet_isa_92a1d228af (IsA sickle edge_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sickle alfalfa is a kind of medic", "pln": ["(: cnet_isa_6a233e9bfe (IsA sickle_alfalfa medic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sickle cell is a kind of red blood cell", "pln": ["(: cnet_isa_0311ca33e3 (IsA sickle_cell red_blood_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sickle cell anemia is a kind of anemia", "pln": ["(: cnet_isa_5dc8c83c15 (IsA sickle_cell_anemia anemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sickle cell anemia is a kind of monogenic disorder", "pln": ["(: cnet_isa_9d2100b5c6 (IsA sickle_cell_anemia monogenic_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sickle feather is a kind of tail feather", "pln": ["(: cnet_isa_1dcc51b12e (IsA sickle_feather tail_feather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sicklepod is a kind of rock cress", "pln": ["(: cnet_isa_458604ba43 (IsA sicklepod rock_cress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sicklepod is a kind of subshrub", "pln": ["(: cnet_isa_4d012b528b (IsA sicklepod subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sickleweed golden aster is a kind of golden aster", "pln": ["(: cnet_isa_e2246ee715 (IsA sickleweed_golden_aster golden_aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sickness is a kind of defectiveness", "pln": ["(: cnet_isa_d5eeede640 (IsA sickness defectiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sickroom is a kind of room", "pln": ["(: cnet_isa_69de717d51 (IsA sickroom room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sida is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_72feb7d6ff (IsA sida dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sidalcea is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_310fdedb06 (IsA sidalcea dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "side is a kind of surface", "pln": ["(: cnet_isa_8f2c452f48 (IsA side surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "side is a kind of aspect", "pln": ["(: cnet_isa_21b1c4c61b (IsA side aspect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "side is a kind of opinion", "pln": ["(: cnet_isa_023f42d820 (IsA side opinion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "side is a kind of cut", "pln": ["(: cnet_isa_2b11acacd7 (IsA side cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "side is a kind of lineage", "pln": ["(: cnet_isa_921521c217 (IsA side lineage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "side is a kind of area", "pln": ["(: cnet_isa_ad710f63cb (IsA side area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "side is a kind of line", "pln": ["(: cnet_isa_2a393a6513 (IsA side line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "side is a kind of region", "pln": ["(: cnet_isa_860ccad469 (IsA side region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "side is a kind of unit", "pln": ["(: cnet_isa_6a3680579e (IsA side unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "side blotched lizard is a kind of iguanid", "pln": ["(: cnet_isa_92630e9503 (IsA side_blotched_lizard iguanid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "side chapel is a kind of chapel", "pln": ["(: cnet_isa_02ee516844 (IsA side_chapel chapel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "side dish is a kind of dish", "pln": ["(: cnet_isa_b1c33bda57 (IsA side_dish dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "side door is a kind of exterior door", "pln": ["(: cnet_isa_8abaccc8d7 (IsA side_door exterior_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "side effect is a kind of consequence", "pln": ["(: cnet_isa_bfe522eaf8 (IsA side_effect consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "side effect is a kind of effect", "pln": ["(: cnet_isa_bae2271759 (IsA side_effect effect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "side glance is a kind of glance", "pln": ["(: cnet_isa_3ddd5afc01 (IsA side_glance glance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "side judge is a kind of football official", "pln": ["(: cnet_isa_bd37915027 (IsA side_judge football_official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "side of beef is a kind of side", "pln": ["(: cnet_isa_7071d4f1fa (IsA side_of_beef side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "side of pork is a kind of side", "pln": ["(: cnet_isa_8a6ba33cc1 (IsA side_of_pork side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "side pocket is a kind of pocket", "pln": ["(: cnet_isa_a5a0c023e6 (IsA side_pocket pocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "side road is a kind of road", "pln": ["(: cnet_isa_ea643151bb (IsA side_road road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "side street is a kind of street", "pln": ["(: cnet_isa_a8b0fafab3 (IsA side_street street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "side view is a kind of view", "pln": ["(: cnet_isa_5d40ab9636 (IsA side_view view) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "side wheeler is a kind of paddle steamer", "pln": ["(: cnet_isa_0946205d42 (IsA side_wheeler paddle_steamer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "side yard is a kind of yard", "pln": ["(: cnet_isa_1b1b259fab (IsA side_yard yard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sidebar is a kind of new article", "pln": ["(: cnet_isa_82b032a59f (IsA sidebar new_article) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sidebar is a kind of consultation", "pln": ["(: cnet_isa_5b0eff8ad5 (IsA sidebar consultation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sideboard is a kind of board", "pln": ["(: cnet_isa_5d42744469 (IsA sideboard board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sideburn is a kind of facial hair", "pln": ["(: cnet_isa_32735bb179 (IsA sideburn facial_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sidecar is a kind of conveyance", "pln": ["(: cnet_isa_5342da05bc (IsA sidecar conveyance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sidecar is a kind of cocktail", "pln": ["(: cnet_isa_12011b0e03 (IsA sidecar cocktail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sidelight is a kind of light", "pln": ["(: cnet_isa_94b6c3b0b0 (IsA sidelight light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sideline is a kind of line", "pln": ["(: cnet_isa_f147386351 (IsA sideline line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sidereal day is a kind of sidereal time", "pln": ["(: cnet_isa_00a681490e (IsA sidereal_day sidereal_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sidereal day is a kind of time unit", "pln": ["(: cnet_isa_01756bae16 (IsA sidereal_day time_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sidereal hour is a kind of hour", "pln": ["(: cnet_isa_e1cf493146 (IsA sidereal_hour hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sidereal hour is a kind of sidereal time", "pln": ["(: cnet_isa_5c96bf8506 (IsA sidereal_hour sidereal_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sidereal month is a kind of month", "pln": ["(: cnet_isa_1b116838bf (IsA sidereal_month month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sidereal month is a kind of sidereal time", "pln": ["(: cnet_isa_bd148a8a04 (IsA sidereal_month sidereal_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sidereal time is a kind of cosmic time", "pln": ["(: cnet_isa_7ec94fafc9 (IsA sidereal_time cosmic_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sidereal year is a kind of sidereal time", "pln": ["(: cnet_isa_f1d550ce4f (IsA sidereal_year sidereal_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sidereal year is a kind of year", "pln": ["(: cnet_isa_e5ddba1af2 (IsA sidereal_year year) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siderite is a kind of meteorite", "pln": ["(: cnet_isa_8cb2c2a00c (IsA siderite meteorite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siderite is a kind of iron ore", "pln": ["(: cnet_isa_da1efb1518 (IsA siderite iron_ore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sideritis is a kind of asterid dicot genus", "pln": ["(: cnet_isa_faea5d267d (IsA sideritis asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sideroblast is a kind of erythroblast", "pln": ["(: cnet_isa_465e7c0429 (IsA sideroblast erythroblast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sideroblastic anemia is a kind of refractory anemia", "pln": ["(: cnet_isa_4aaf2d71ca (IsA sideroblastic_anemia refractory_anemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "siderocyte is a kind of red blood cell", "pln": ["(: cnet_isa_efacb5cb78 (IsA siderocyte red_blood_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sideropenia is a kind of mineral deficiency", "pln": ["(: cnet_isa_f7b912a247 (IsA sideropenia mineral_deficiency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siderosis is a kind of pneumoconiosis", "pln": ["(: cnet_isa_4139f42241 (IsA siderosis pneumoconiosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sidesaddle is a kind of saddle", "pln": ["(: cnet_isa_2fd96442b6 (IsA sidesaddle saddle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sideshow is a kind of show", "pln": ["(: cnet_isa_f9c6c5a1a1 (IsA sideshow show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sideshow is a kind of incident", "pln": ["(: cnet_isa_d9768eeb87 (IsA sideshow incident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sidesman is a kind of assistant", "pln": ["(: cnet_isa_7c5e0b67bf (IsA sidesman assistant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sidestep is a kind of step", "pln": ["(: cnet_isa_e10651d7e9 (IsA sidestep step) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sidestroke is a kind of swimming stroke", "pln": ["(: cnet_isa_b59c40b12d (IsA sidestroke swimming_stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sideswipe is a kind of bump", "pln": ["(: cnet_isa_a2c3809199 (IsA sideswipe bump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sidewalk is a kind of concrete path", "pln": ["(: cnet_isa_aac439efcb (IsA sidewalk concrete_path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sidewalk is a kind of not for sex", "pln": ["(: cnet_isa_3e8480bb35 (IsA sidewalk not_for_sex) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sidewalk is a kind of walkway", "pln": ["(: cnet_isa_7b54390987 (IsA sidewalk walkway) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sidewalk is a kind of walk", "pln": ["(: cnet_isa_e5956e93f5 (IsA sidewalk walk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sidewall is a kind of side", "pln": ["(: cnet_isa_dbe4200a34 (IsA sidewall side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sidewall is a kind of wall", "pln": ["(: cnet_isa_9fbc3e5045 (IsA sidewall wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sidewinder is a kind of rattlesnake", "pln": ["(: cnet_isa_460f6f7cfb (IsA sidewinder rattlesnake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sidewinder is a kind of missile", "pln": ["(: cnet_isa_048fef3715 (IsA sidewinder missile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siding is a kind of railroad track", "pln": ["(: cnet_isa_eaadc18917 (IsA siding railroad_track) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siding is a kind of building material", "pln": ["(: cnet_isa_302ac63dd4 (IsA siding building_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siege is a kind of blockade", "pln": ["(: cnet_isa_73eed0a0ac (IsA siege blockade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sienna is a kind of earth color", "pln": ["(: cnet_isa_612ea6119c (IsA sienna earth_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sierra is a kind of spanish mackerel", "pln": ["(: cnet_isa_0d48ee9f49 (IsA sierra spanish_mackerel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sierra leone monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_211f147df0 (IsA sierra_leone_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sierra leonean is a kind of african", "pln": ["(: cnet_isa_c73167bef5 (IsA sierra_leonean african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sierra lodgepole pine is a kind of pine", "pln": ["(: cnet_isa_630ddc1c0d (IsA sierra_lodgepole_pine pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sierra plum is a kind of plum", "pln": ["(: cnet_isa_076e700259 (IsA sierra_plum plum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siesta is a kind of nap", "pln": ["(: cnet_isa_e042e0ef47 (IsA siesta nap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sieva bean is a kind of shell bean", "pln": ["(: cnet_isa_2e7746ff60 (IsA sieva_bean shell_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sieve is a kind of strainer", "pln": ["(: cnet_isa_d90af39d1f (IsA sieve strainer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sieve tube is a kind of vascular tissue", "pln": ["(: cnet_isa_c100e68655 (IsA sieve_tube vascular_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sifter is a kind of sieve", "pln": ["(: cnet_isa_37a305f21e (IsA sifter sieve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sigeh is a kind of marriage", "pln": ["(: cnet_isa_f32f106135 (IsA sigeh marriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sigh is a kind of utterance", "pln": ["(: cnet_isa_8d6d267230 (IsA sigh utterance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sigh is a kind of sound", "pln": ["(: cnet_isa_5e1e9db50c (IsA sigh sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sight is a kind of sense", "pln": ["(: cnet_isa_7153a0d6b8 (IsA sight sense) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sight is a kind of compass", "pln": ["(: cnet_isa_5fbe316483 (IsA sight compass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sight is a kind of exteroception", "pln": ["(: cnet_isa_af6b76a79f (IsA sight exteroception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sight is a kind of modality", "pln": ["(: cnet_isa_de2f2f7c20 (IsA sight modality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sight is a kind of position", "pln": ["(: cnet_isa_66e72733a1 (IsA sight position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sight is a kind of visual percept", "pln": ["(: cnet_isa_301e5b4f6f (IsA sight visual_percept) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sight is a kind of display", "pln": ["(: cnet_isa_2de818fd33 (IsA sight display) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sight draft is a kind of draft", "pln": ["(: cnet_isa_a3dd7ed9b5 (IsA sight_draft draft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sight gag is a kind of joke", "pln": ["(: cnet_isa_cedc4404b6 (IsA sight_gag joke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sight setting is a kind of gunsight", "pln": ["(: cnet_isa_eb07e45bb9 (IsA sight_setting gunsight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sighting is a kind of observation", "pln": ["(: cnet_isa_d6ff7e78d4 (IsA sighting observation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sightreader is a kind of performer", "pln": ["(: cnet_isa_157fe1448a (IsA sightreader performer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sight is a kind of optical instrument", "pln": ["(: cnet_isa_5a335c75e8 (IsA sight optical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sightseeing is a kind of popular vacation activity", "pln": ["(: cnet_isa_b7ea6ebc9f (IsA sightseeing popular_vacation_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sightseeing is a kind of look", "pln": ["(: cnet_isa_0ca531a02c (IsA sightseeing look) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sightseer is a kind of tourist", "pln": ["(: cnet_isa_243c4db918 (IsA sightseer tourist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sigma is a kind of letter", "pln": ["(: cnet_isa_93c42127a2 (IsA sigma letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sigmodon is a kind of mammal genus", "pln": ["(: cnet_isa_49c34179fd (IsA sigmodon mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sigmoid colon is a kind of colon", "pln": ["(: cnet_isa_f08dfe61f9 (IsA sigmoid_colon colon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sigmoid sinus is a kind of venous sinus", "pln": ["(: cnet_isa_673f0addba (IsA sigmoid_sinus venous_sinus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sigmoid vein is a kind of vein", "pln": ["(: cnet_isa_1e032099de (IsA sigmoid_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sigmoidectomy is a kind of ablation", "pln": ["(: cnet_isa_a2171ffb71 (IsA sigmoidectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sigmoidoscope is a kind of endoscope", "pln": ["(: cnet_isa_0f06fd2fee (IsA sigmoidoscope endoscope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sigmoidoscopy is a kind of endoscopy", "pln": ["(: cnet_isa_ffed383a48 (IsA sigmoidoscopy endoscopy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sign is a kind of clue", "pln": ["(: cnet_isa_b73b3703f0 (IsA sign clue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sign is a kind of communication", "pln": ["(: cnet_isa_3a4da125c1 (IsA sign communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sign is a kind of gesture", "pln": ["(: cnet_isa_22e7434ef6 (IsA sign gesture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sign is a kind of mathematical notation", "pln": ["(: cnet_isa_b3596833a3 (IsA sign mathematical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sign is a kind of language unit", "pln": ["(: cnet_isa_a068d81ad8 (IsA sign language_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sign is a kind of evidence", "pln": ["(: cnet_isa_336875fcb9 (IsA sign evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sign industry is a kind of industry", "pln": ["(: cnet_isa_2c388f1870 (IsA sign_industry industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sign language is a kind of language", "pln": ["(: cnet_isa_2e97855b2c (IsA sign_language language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sign manual is a kind of signature", "pln": ["(: cnet_isa_ee04a27386 (IsA sign_manual signature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sign of cross is a kind of gesture", "pln": ["(: cnet_isa_d00a9bb439 (IsA sign_of_cross gesture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sign of zodiac is a kind of region", "pln": ["(: cnet_isa_746d047f4d (IsA sign_of_zodiac region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sign painter is a kind of painter", "pln": ["(: cnet_isa_8dfddce8cf (IsA sign_painter painter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "signage is a kind of collection", "pln": ["(: cnet_isa_48f5a0288f (IsA signage collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "signal is a kind of communication", "pln": ["(: cnet_isa_8e9737dee1 (IsA signal communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "signal is a kind of incitement", "pln": ["(: cnet_isa_cdeff1a5b0 (IsA signal incitement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "signal is a kind of electricity", "pln": ["(: cnet_isa_f0d36a3796 (IsA signal electricity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "signal box is a kind of building", "pln": ["(: cnet_isa_412ed0c7a5 (IsA signal_box building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "signal detection is a kind of reception", "pln": ["(: cnet_isa_5cd367dee4 (IsA signal_detection reception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "signal fire is a kind of beacon", "pln": ["(: cnet_isa_33b514e599 (IsA signal_fire beacon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "signal level is a kind of amplitude", "pln": ["(: cnet_isa_57b135bfa5 (IsA signal_level amplitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "signal to noise ratio is a kind of ratio", "pln": ["(: cnet_isa_4aea0591a6 (IsA signal_to_noise_ratio ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "signaler is a kind of communicator", "pln": ["(: cnet_isa_73c2ec5007 (IsA signaler communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "signaling device is a kind of device", "pln": ["(: cnet_isa_5f74f381c8 (IsA signaling_device device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "signalization is a kind of indication", "pln": ["(: cnet_isa_cba07e5e9f (IsA signalization indication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "signalman is a kind of signaler", "pln": ["(: cnet_isa_39f1084d67 (IsA signalman signaler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "signalman is a kind of trainman", "pln": ["(: cnet_isa_7bae3ad1a1 (IsA signalman trainman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "signal intelligence is a kind of intelligence", "pln": ["(: cnet_isa_66692697a1 (IsA signal_intelligence intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "signature is a kind of name", "pln": ["(: cnet_isa_9eff4bd6b4 (IsA signature name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "signature is a kind of sheet", "pln": ["(: cnet_isa_23c3337f23 (IsA signature sheet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "signature is a kind of tune", "pln": ["(: cnet_isa_7a8d9c6069 (IsA signature tune) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "signature recognition is a kind of biometric identification", "pln": ["(: cnet_isa_ae7fea393d (IsA signature_recognition biometric_identification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "signboard is a kind of structure", "pln": ["(: cnet_isa_511ddf003c (IsA signboard structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "signer is a kind of communicator", "pln": ["(: cnet_isa_ebb0813936 (IsA signer communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "signer is a kind of person", "pln": ["(: cnet_isa_8907fc5da4 (IsA signer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "signet is a kind of seal", "pln": ["(: cnet_isa_dda3772bad (IsA signet seal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "signet ring is a kind of ring", "pln": ["(: cnet_isa_03c7d558b8 (IsA signet_ring ring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "significance is a kind of importance", "pln": ["(: cnet_isa_736c66e694 (IsA significance importance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "significance is a kind of meaning", "pln": ["(: cnet_isa_c3516102c4 (IsA significance meaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "significant digit is a kind of digit", "pln": ["(: cnet_isa_93827e1df2 (IsA significant_digit digit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "signor is a kind of man", "pln": ["(: cnet_isa_0b8418f0ad (IsA signor man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "signora is a kind of title", "pln": ["(: cnet_isa_7dee178e72 (IsA signora title) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "signora is a kind of wife", "pln": ["(: cnet_isa_68b0dab300 (IsA signora wife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "signore is a kind of man", "pln": ["(: cnet_isa_e034e8cc81 (IsA signore man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "signorina is a kind of title", "pln": ["(: cnet_isa_5292822277 (IsA signorina title) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "signorina is a kind of unmarried woman", "pln": ["(: cnet_isa_682944c0d5 (IsA signorina unmarried_woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "signpost is a kind of sign", "pln": ["(: cnet_isa_bb1c85193a (IsA signpost sign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sigyn is a kind of norse deity", "pln": ["(: cnet_isa_a49d2c58ae (IsA sigyn norse_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sihasapa is a kind of teton dakota", "pln": ["(: cnet_isa_bf9aff074f (IsA sihasapa teton_dakota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sikh is a kind of disciple", "pln": ["(: cnet_isa_4a587a7c54 (IsA sikh disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sikhism is a kind of religion", "pln": ["(: cnet_isa_a8ac383cb7 (IsA sikhism religion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silage is a kind of feed", "pln": ["(: cnet_isa_9c841a4218 (IsA silage feed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sild is a kind of sardine", "pln": ["(: cnet_isa_869081889f (IsA sild sardine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silence is a kind of sound property", "pln": ["(: cnet_isa_c6f89189c5 (IsA silence sound_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silence is a kind of condition", "pln": ["(: cnet_isa_283bfd7289 (IsA silence condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silencer is a kind of acoustic device", "pln": ["(: cnet_isa_6eb696e56a (IsA silencer acoustic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silencer is a kind of tube", "pln": ["(: cnet_isa_097593dcb7 (IsA silencer tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silene is a kind of flower", "pln": ["(: cnet_isa_e1b24c1987 (IsA silene flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silent butler is a kind of receptacle", "pln": ["(: cnet_isa_b1f34305f4 (IsA silent_butler receptacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silent movie is a kind of movie", "pln": ["(: cnet_isa_f1350612c3 (IsA silent_movie movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silent partner is a kind of partner", "pln": ["(: cnet_isa_55c44b9603 (IsA silent_partner partner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silent treatment is a kind of rebuff", "pln": ["(: cnet_isa_282425e39c (IsA silent_treatment rebuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silenus is a kind of greek deity", "pln": ["(: cnet_isa_5c212677da (IsA silenus greek_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silesia is a kind of fabric", "pln": ["(: cnet_isa_c343942e97 (IsA silesia fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silex is a kind of silica", "pln": ["(: cnet_isa_40fca047a2 (IsA silex silica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silhouette is a kind of drawing", "pln": ["(: cnet_isa_aa7a5833a7 (IsA silhouette drawing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silhouette is a kind of outline", "pln": ["(: cnet_isa_841921216d (IsA silhouette outline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silica is a kind of oxide", "pln": ["(: cnet_isa_87906434d0 (IsA silica oxide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silica gel is a kind of colloid", "pln": ["(: cnet_isa_6b24e95279 (IsA silica_gel colloid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silicate is a kind of salt", "pln": ["(: cnet_isa_cd374f3dff (IsA silicate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silicic acid is a kind of acid", "pln": ["(: cnet_isa_d04f201580 (IsA silicic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silicide is a kind of compound", "pln": ["(: cnet_isa_3b79df1158 (IsA silicide compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silicle is a kind of silique", "pln": ["(: cnet_isa_7e81ca8f14 (IsA silicle silique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silicon is a kind of element", "pln": ["(: cnet_isa_4f36243f90 (IsA silicon element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silicon is a kind of chemical element", "pln": ["(: cnet_isa_7d95a0d31b (IsA silicon chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silicon is a kind of semiconductor", "pln": ["(: cnet_isa_1992df5de9 (IsA silicon semiconductor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silicon bronze is a kind of bronze", "pln": ["(: cnet_isa_54ae0b7203 (IsA silicon_bronze bronze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silicon carbide is a kind of carbide", "pln": ["(: cnet_isa_acf6ad042c (IsA silicon_carbide carbide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silicone is a kind of polymer", "pln": ["(: cnet_isa_31d087c213 (IsA silicone polymer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silicone is a kind of siloxane", "pln": ["(: cnet_isa_7bde652c93 (IsA silicone siloxane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silicone resin is a kind of plastic", "pln": ["(: cnet_isa_8eea647d97 (IsA silicone_resin plastic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silicone rubber is a kind of synthetic rubber", "pln": ["(: cnet_isa_722a8d1a94 (IsA silicone_rubber synthetic_rubber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silicosis is a kind of pneumoconiosis", "pln": ["(: cnet_isa_c7d2e8dad4 (IsA silicosis pneumoconiosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silique is a kind of capsule", "pln": ["(: cnet_isa_ac665e5c9b (IsA silique capsule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silk is a kind of fabric", "pln": ["(: cnet_isa_a9fdfa7e23 (IsA silk fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silk is a kind of animal fiber", "pln": ["(: cnet_isa_9d0c008e68 (IsA silk animal_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silk gland is a kind of gland", "pln": ["(: cnet_isa_ed460fb461 (IsA silk_gland gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silk oak is a kind of grevillea", "pln": ["(: cnet_isa_82d4f53215 (IsA silk_oak grevillea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silk tree is a kind of albizzia", "pln": ["(: cnet_isa_8e6135615c (IsA silk_tree albizzia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silk vine is a kind of vine", "pln": ["(: cnet_isa_a8966bcd7d (IsA silk_vine vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "silkiness is a kind of smoothness", "pln": ["(: cnet_isa_4c062789f1 (IsA silkiness smoothness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silk is a kind of garment", "pln": ["(: cnet_isa_fafc9fe17d (IsA silk garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silkscreen is a kind of print", "pln": ["(: cnet_isa_48ef1f8280 (IsA silkscreen print) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silkworm is a kind of caterpillar", "pln": ["(: cnet_isa_1193500638 (IsA silkworm caterpillar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silkworm seed is a kind of egg", "pln": ["(: cnet_isa_021a8468d4 (IsA silkworm_seed egg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "silky anteater is a kind of anteater", "pln": ["(: cnet_isa_503345a85e (IsA silky_anteater anteater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silky cornel is a kind of dogwood", "pln": ["(: cnet_isa_b514136ed3 (IsA silky_cornel dogwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silky dogwood is a kind of dogwood", "pln": ["(: cnet_isa_0cc9b2a7d9 (IsA silky_dogwood dogwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "silky oak is a kind of silk oak", "pln": ["(: cnet_isa_73425283d2 (IsA silky_oak silk_oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silky pocket mouse is a kind of pocket mouse", "pln": ["(: cnet_isa_81f7099748 (IsA silky_pocket_mouse pocket_mouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silky tamarin is a kind of tamarin", "pln": ["(: cnet_isa_c570fa03fd (IsA silky_tamarin tamarin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silky terrier is a kind of terrier", "pln": ["(: cnet_isa_e28a3e9cc2 (IsA silky_terrier terrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silky wisteria is a kind of wisteria", "pln": ["(: cnet_isa_9bcd79311e (IsA silky_wisteria wisteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sill is a kind of structural member", "pln": ["(: cnet_isa_c44078e64c (IsA sill structural_member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sill is a kind of rock", "pln": ["(: cnet_isa_606859e40a (IsA sill rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sillaginidae is a kind of fish family", "pln": ["(: cnet_isa_6d52d65b53 (IsA sillaginidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sillago is a kind of fish genus", "pln": ["(: cnet_isa_2ff4d332ce (IsA sillago fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silly is a kind of child", "pln": ["(: cnet_isa_40ebdcff2b (IsA silly child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silly season is a kind of time period", "pln": ["(: cnet_isa_2e848cc121 (IsA silly_season time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silo is a kind of tower", "pln": ["(: cnet_isa_2cd42d01c5 (IsA silo tower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silo is a kind of military installation", "pln": ["(: cnet_isa_bb3dbdfcdd (IsA silo military_installation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "siloxane is a kind of compound", "pln": ["(: cnet_isa_caa21bd087 (IsA siloxane compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silphium is a kind of asterid dicot genus", "pln": ["(: cnet_isa_cd7daae1fc (IsA silphium asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silt is a kind of soil", "pln": ["(: cnet_isa_51c01067d6 (IsA silt soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siltstone is a kind of sandstone", "pln": ["(: cnet_isa_80b75f44cc (IsA siltstone sandstone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silurid is a kind of catfish", "pln": ["(: cnet_isa_ec25ded99a (IsA silurid catfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "siluridae is a kind of fish family", "pln": ["(: cnet_isa_7aac156693 (IsA siluridae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siluriforme is a kind of animal order", "pln": ["(: cnet_isa_8229122956 (IsA siluriforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silurus is a kind of fish genus", "pln": ["(: cnet_isa_f48cf9be71 (IsA silurus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silva is a kind of forest", "pln": ["(: cnet_isa_d6360d84da (IsA silva forest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver is a kind of metal", "pln": ["(: cnet_isa_4b331226b7 (IsA silver metal) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver is a kind of precious metal", "pln": ["(: cnet_isa_d38efe323a (IsA silver precious_metal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver is a kind of conductor", "pln": ["(: cnet_isa_75eb05c3f7 (IsA silver conductor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver is a kind of noble metal", "pln": ["(: cnet_isa_3209635edf (IsA silver noble_metal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver age is a kind of time period", "pln": ["(: cnet_isa_3dc15c78a9 (IsA silver_age time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver ash is a kind of tree", "pln": ["(: cnet_isa_211a6bd78c (IsA silver_ash tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver beech is a kind of new zealand beech", "pln": ["(: cnet_isa_31d09f0aab (IsA silver_beech new_zealand_beech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver bell is a kind of angiospermous tree", "pln": ["(: cnet_isa_0dac9ae89a (IsA silver_bell angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver bell tree is a kind of silver bell", "pln": ["(: cnet_isa_db7e7cab57 (IsA silver_bell_tree silver_bell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver birch is a kind of birch", "pln": ["(: cnet_isa_a7de3c914d (IsA silver_birch birch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "silver bromide is a kind of bromide", "pln": ["(: cnet_isa_758dcebcd1 (IsA silver_bromide bromide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver bullet is a kind of solution", "pln": ["(: cnet_isa_879076d839 (IsA silver_bullet solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver certificate is a kind of bill", "pln": ["(: cnet_isa_d2a0abaffa (IsA silver_certificate bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver chloride is a kind of chloride", "pln": ["(: cnet_isa_6cd299b01b (IsA silver_chloride chloride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver cord is a kind of alliance", "pln": ["(: cnet_isa_4e8488b159 (IsA silver_cord alliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver dollar is a kind of dollar", "pln": ["(: cnet_isa_ac23315e17 (IsA silver_dollar dollar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver fern is a kind of fern", "pln": ["(: cnet_isa_209826cd9d (IsA silver_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver fir is a kind of fir", "pln": ["(: cnet_isa_89ee4ede05 (IsA silver_fir fir) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver fox is a kind of red fox", "pln": ["(: cnet_isa_647e65d3e3 (IsA silver_fox red_fox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver grass is a kind of grass", "pln": ["(: cnet_isa_3094e17fc0 (IsA silver_grass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver hake is a kind of hake", "pln": ["(: cnet_isa_38e968bdb1 (IsA silver_hake hake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver iodide is a kind of iodide", "pln": ["(: cnet_isa_6bc107419b (IsA silver_iodide iodide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver jenny is a kind of mojarra", "pln": ["(: cnet_isa_2ce6d46a8c (IsA silver_jenny mojarra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver jubilee is a kind of jubilee", "pln": ["(: cnet_isa_b94c55ad99 (IsA silver_jubilee jubilee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver lace vine is a kind of vine", "pln": ["(: cnet_isa_b4e6d0a5a6 (IsA silver_lace_vine vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver lime is a kind of linden", "pln": ["(: cnet_isa_acc795c5f1 (IsA silver_lime linden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver lining is a kind of consolation", "pln": ["(: cnet_isa_e48c8b5cab (IsA silver_lining consolation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver maple is a kind of maple", "pln": ["(: cnet_isa_d514856734 (IsA silver_maple maple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver medal is a kind of trophy", "pln": ["(: cnet_isa_336ccbe0ed (IsA silver_medal trophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver mine is a kind of mine", "pln": ["(: cnet_isa_7270540237 (IsA silver_mine mine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver nitrate is a kind of caustic", "pln": ["(: cnet_isa_24a06dab1c (IsA silver_nitrate caustic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver nitrate is a kind of nitrate", "pln": ["(: cnet_isa_6ccd609468 (IsA silver_nitrate nitrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver oak is a kind of silk oak", "pln": ["(: cnet_isa_e86f39c100 (IsA silver_oak silk_oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver perch is a kind of drum", "pln": ["(: cnet_isa_890729a3c0 (IsA silver_perch drum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver plate is a kind of plating", "pln": ["(: cnet_isa_10c53a24bf (IsA silver_plate plating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver plate is a kind of tableware", "pln": ["(: cnet_isa_52e4ea89a0 (IsA silver_plate tableware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver protein is a kind of colloid", "pln": ["(: cnet_isa_b2dc136af3 (IsA silver_protein colloid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver quandong is a kind of wood", "pln": ["(: cnet_isa_2edb5b90fd (IsA silver_quandong wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver sage is a kind of sagebrush", "pln": ["(: cnet_isa_c76e5dd5df (IsA silver_sage sagebrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver salmon is a kind of salmon", "pln": ["(: cnet_isa_c5fbc2c9bc (IsA silver_salmon salmon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver screen is a kind of film", "pln": ["(: cnet_isa_8459d6eabf (IsA silver_screen film) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver solder is a kind of solder", "pln": ["(: cnet_isa_4cae8e2dac (IsA silver_solder solder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver spoon is a kind of inherited wealth", "pln": ["(: cnet_isa_a6ca1c5a25 (IsA silver_spoon inherited_wealth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver standard is a kind of standard", "pln": ["(: cnet_isa_3562cb8d16 (IsA silver_standard standard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "silver star medal is a kind of decoration", "pln": ["(: cnet_isa_97ac25b9a6 (IsA silver_star_medal decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver tree is a kind of tree", "pln": ["(: cnet_isa_deba873601 (IsA silver_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver tree fern is a kind of tree fern", "pln": ["(: cnet_isa_556f092cf1 (IsA silver_tree_fern tree_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "silver wattle is a kind of wattle", "pln": ["(: cnet_isa_5ab37f4dbf (IsA silver_wattle wattle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver wedding anniversary is a kind of wedding anniversary", "pln": ["(: cnet_isa_4fc9c3e4cf (IsA silver_wedding_anniversary wedding_anniversary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver whiting is a kind of whiting", "pln": ["(: cnet_isa_8850787a17 (IsA silver_whiting whiting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silver willow is a kind of willow", "pln": ["(: cnet_isa_d655090e40 (IsA silver_willow willow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silverback is a kind of gorilla", "pln": ["(: cnet_isa_6be1220cb6 (IsA silverback gorilla) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silverberry is a kind of oleaster", "pln": ["(: cnet_isa_bfc6c6f9d3 (IsA silverberry oleaster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "silverfish is a kind of goldfish", "pln": ["(: cnet_isa_93434d7dc5 (IsA silverfish goldfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silverfish is a kind of thysanuran insect", "pln": ["(: cnet_isa_37cb45bd30 (IsA silverfish thysanuran_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silverpoint is a kind of drawing", "pln": ["(: cnet_isa_c95dd0d2fe (IsA silverpoint drawing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silverrod is a kind of goldenrod", "pln": ["(: cnet_isa_bfa1de7f5b (IsA silverrod goldenrod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silverside is a kind of spiny finned fish", "pln": ["(: cnet_isa_1a943bd963 (IsA silverside spiny_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silversmith is a kind of jewelry maker", "pln": ["(: cnet_isa_e15a1d3a08 (IsA silversmith jewelry_maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silverspot is a kind of fritillary", "pln": ["(: cnet_isa_90d2e85a6d (IsA silverspot fritillary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silversword is a kind of shrub", "pln": ["(: cnet_isa_84a0861185 (IsA silversword shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silvervine is a kind of vine", "pln": ["(: cnet_isa_350c4f36c4 (IsA silvervine vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silverware is a kind of tableware", "pln": ["(: cnet_isa_e470e1553c (IsA silverware tableware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silverweed is a kind of cinquefoil", "pln": ["(: cnet_isa_f5009f939b (IsA silverweed cinquefoil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silverweed is a kind of vine", "pln": ["(: cnet_isa_744374120e (IsA silverweed vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "silverwork is a kind of work", "pln": ["(: cnet_isa_aa6e344700 (IsA silverwork work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silvery spleenwort is a kind of fern", "pln": ["(: cnet_isa_7031485065 (IsA silvery_spleenwort fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silvex is a kind of herbicide", "pln": ["(: cnet_isa_1838863bb0 (IsA silvex herbicide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silvia is a kind of bird genus", "pln": ["(: cnet_isa_f399441ffb (IsA silvia bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silviculture is a kind of forestry", "pln": ["(: cnet_isa_bfdae07450 (IsA silviculture forestry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "silybum is a kind of asterid dicot genus", "pln": ["(: cnet_isa_977757d197 (IsA silybum asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sima is a kind of rock", "pln": ["(: cnet_isa_f34de3c739 (IsA sima rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simarouba is a kind of rosid dicot genus", "pln": ["(: cnet_isa_45db966260 (IsA simarouba rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simaroubaceae is a kind of rosid dicot family", "pln": ["(: cnet_isa_52ee942184 (IsA simaroubaceae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simazine is a kind of herbicide", "pln": ["(: cnet_isa_f1cecd670e (IsA simazine herbicide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simeon is a kind of patriarch", "pln": ["(: cnet_isa_8627fdf83c (IsA simeon patriarch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simian is a kind of primate", "pln": ["(: cnet_isa_235a9c228a (IsA simian primate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "similarity is a kind of sameness", "pln": ["(: cnet_isa_732d4234f2 (IsA similarity sameness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "similarity is a kind of gestalt law of organization", "pln": ["(: cnet_isa_7b1a16a2b6 (IsA similarity gestalt_law_of_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "simile is a kind of figure of speech", "pln": ["(: cnet_isa_a8291d3819 (IsA simile figure_of_speech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simile is a kind of trope", "pln": ["(: cnet_isa_4abc41e73f (IsA simile trope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simmer is a kind of temperature", "pln": ["(: cnet_isa_cfbeaa942d (IsA simmer temperature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simnel is a kind of bread", "pln": ["(: cnet_isa_cb870300cb (IsA simnel bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simnel is a kind of fruitcake", "pln": ["(: cnet_isa_676f4d3bac (IsA simnel fruitcake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "simony is a kind of traffic", "pln": ["(: cnet_isa_4e5d2c9b10 (IsA simony traffic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simoom is a kind of wind", "pln": ["(: cnet_isa_b4271a3fb6 (IsA simoom wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simper is a kind of smile", "pln": ["(: cnet_isa_d5c9d64600 (IsA simper smile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simperer is a kind of smiler", "pln": ["(: cnet_isa_bd18743c4e (IsA simperer smiler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simple is a kind of herb", "pln": ["(: cnet_isa_94fe127225 (IsA simple herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simple closed curve is a kind of closed curve", "pln": ["(: cnet_isa_9ffb56384e (IsA simple_closed_curve closed_curve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simple eye is a kind of eye", "pln": ["(: cnet_isa_9bf1abef2a (IsA simple_eye eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simple fracture is a kind of fracture", "pln": ["(: cnet_isa_4af1ca7364 (IsA simple_fracture fracture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simple fruit is a kind of berry", "pln": ["(: cnet_isa_393636afb3 (IsA simple_fruit berry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simple harmonic motion is a kind of harmonic motion", "pln": ["(: cnet_isa_af75ef8691 (IsA simple_harmonic_motion harmonic_motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simple interest is a kind of interest", "pln": ["(: cnet_isa_f8282082bf (IsA simple_interest interest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simple leaf is a kind of leaf", "pln": ["(: cnet_isa_24a1178700 (IsA simple_leaf leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simple mastectomy is a kind of mastectomy", "pln": ["(: cnet_isa_186e0f2d1d (IsA simple_mastectomy mastectomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simple pendulum is a kind of pendulum", "pln": ["(: cnet_isa_d2b5c969a5 (IsA simple_pendulum pendulum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "simple phobia is a kind of phobia", "pln": ["(: cnet_isa_b7aecaaa3e (IsA simple_phobia phobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simple pistil is a kind of pistil", "pln": ["(: cnet_isa_f885899947 (IsA simple_pistil pistil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simple protein is a kind of protein", "pln": ["(: cnet_isa_f004f94ed2 (IsA simple_protein protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simple sentence is a kind of sentence", "pln": ["(: cnet_isa_cda927898d (IsA simple_sentence sentence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simpleton is a kind of person", "pln": ["(: cnet_isa_618553b223 (IsA simpleton person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simplicity is a kind of naivete", "pln": ["(: cnet_isa_e7bd8de7f6 (IsA simplicity naivete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simplicity is a kind of naturalness", "pln": ["(: cnet_isa_0b64059105 (IsA simplicity naturalness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simplicity is a kind of quality", "pln": ["(: cnet_isa_0975514a2e (IsA simplicity quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simplification is a kind of elimination", "pln": ["(: cnet_isa_8358970038 (IsA simplification elimination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simplification is a kind of explanation", "pln": ["(: cnet_isa_b160030725 (IsA simplification explanation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simulacrum is a kind of semblance", "pln": ["(: cnet_isa_95af1266bb (IsA simulacrum semblance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simulation is a kind of model", "pln": ["(: cnet_isa_6b07c84692 (IsA simulation model) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simulation is a kind of technique", "pln": ["(: cnet_isa_c5f1ae703c (IsA simulation technique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simulative electronic deception is a kind of electronic deception", "pln": ["(: cnet_isa_13cab35332 (IsA simulative_electronic_deception electronic_deception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "simulator is a kind of machine", "pln": ["(: cnet_isa_43042a0a29 (IsA simulator machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simulcast is a kind of broadcast", "pln": ["(: cnet_isa_b8acdfbaad (IsA simulcast broadcast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "simuliidae is a kind of arthropod family", "pln": ["(: cnet_isa_92ade57e2e (IsA simuliidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simulium is a kind of arthropod genus", "pln": ["(: cnet_isa_663a5272d9 (IsA simulium arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simultaneity is a kind of timing", "pln": ["(: cnet_isa_9832b4af3b (IsA simultaneity timing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "simultaneous equation is a kind of equation", "pln": ["(: cnet_isa_89562054ce (IsA simultaneous_equation equation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sin is a kind of transgression", "pln": ["(: cnet_isa_14f24eba30 (IsA sin transgression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sin is a kind of unrighteousness", "pln": ["(: cnet_isa_42c5a415ac (IsA sin unrighteousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sin is a kind of letter", "pln": ["(: cnet_isa_8c5232db2f (IsA sin letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sinanthropus is a kind of hominid", "pln": ["(: cnet_isa_23fe00df86 (IsA sinanthropus hominid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sinapis is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_fd507e9c93 (IsA sinapis dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sincerity is a kind of naturalness", "pln": ["(: cnet_isa_29f6792347 (IsA sincerity naturalness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sincerity is a kind of truthfulness", "pln": ["(: cnet_isa_2f021fc3cb (IsA sincerity truthfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sinciput is a kind of bone", "pln": ["(: cnet_isa_53bdc69c6d (IsA sinciput bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sind is a kind of region", "pln": ["(: cnet_isa_4fc9e3be40 (IsA sind region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sindhi is a kind of indic", "pln": ["(: cnet_isa_00bd81e270 (IsA sindhi indic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sindhi is a kind of pakistani", "pln": ["(: cnet_isa_0fb3982bcc (IsA sindhi pakistani) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sine is a kind of trigonometric function", "pln": ["(: cnet_isa_43b7c5dd53 (IsA sine trigonometric_function) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sine curve is a kind of wave", "pln": ["(: cnet_isa_4ef67e00fe (IsA sine_curve wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sine wave is a kind of wave", "pln": ["(: cnet_isa_b7041ec426 (IsA sine_wave wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sinecure is a kind of position", "pln": ["(: cnet_isa_6be9a84d2a (IsA sinecure position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sinecure is a kind of benefice", "pln": ["(: cnet_isa_4a1dfcdbf5 (IsA sinecure benefice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "singalong is a kind of singing", "pln": ["(: cnet_isa_e851718860 (IsA singalong singing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "singapore dollar is a kind of dollar", "pln": ["(: cnet_isa_cc1431afe1 (IsA singapore_dollar dollar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "singaporean is a kind of asiatic", "pln": ["(: cnet_isa_0a7f733865 (IsA singaporean asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "singer is a kind of musician", "pln": ["(: cnet_isa_3a78e72e97 (IsA singer musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "singer songwriter is a kind of musician", "pln": ["(: cnet_isa_beab7a3bd5 (IsA singer_songwriter musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "singhalese is a kind of asiatic", "pln": ["(: cnet_isa_739c1cd1d1 (IsA singhalese asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "singing is a kind of activity", "pln": ["(: cnet_isa_e9e51d3104 (IsA singing activity) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "singing is a kind of form of entertainment", "pln": ["(: cnet_isa_2964f1632b (IsA singing form_of_entertainment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "singing is a kind of good way to express yourself", "pln": ["(: cnet_isa_412a9af9c3 (IsA singing good_way_to_express_yourself) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "singing is a kind of human activity", "pln": ["(: cnet_isa_d62823e482 (IsA singing human_activity) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "singing is a kind of popular recreation", "pln": ["(: cnet_isa_e0b7a66921 (IsA singing popular_recreation) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "singing is a kind of way to express yourself", "pln": ["(: cnet_isa_73e5d64c90 (IsA singing way_to_express_yourself) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "singing is a kind of musical performance", "pln": ["(: cnet_isa_224f1c895a (IsA singing musical_performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "singing is a kind of vocal music", "pln": ["(: cnet_isa_f115ae75c1 (IsA singing vocal_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "singing song is a kind of great way to relieve stress", "pln": ["(: cnet_isa_ff502a36c1 (IsA singing_song great_way_to_relieve_stress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "singing voice is a kind of voice", "pln": ["(: cnet_isa_dd7478fbbe (IsA singing_voice voice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "single is a kind of base hit", "pln": ["(: cnet_isa_aa96da6409 (IsA single base_hit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "single bed is a kind of bed", "pln": ["(: cnet_isa_531a64487f (IsA single_bed bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "single breasted jacket is a kind of jacket", "pln": ["(: cnet_isa_5c62c764a5 (IsA single_breasted_jacket jacket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "single breasted suit is a kind of suit", "pln": ["(: cnet_isa_081067223e (IsA single_breasted_suit suit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "single combat is a kind of fight", "pln": ["(: cnet_isa_c9b602f871 (IsA single_combat fight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "single crochet is a kind of crochet stitch", "pln": ["(: cnet_isa_175ac07168 (IsA single_crochet crochet_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "single entry is a kind of bookkeeping", "pln": ["(: cnet_isa_b21718d94b (IsA single_entry bookkeeping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "single leaf is a kind of nut pine", "pln": ["(: cnet_isa_4ec20a22dd (IsA single_leaf nut_pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "single mindedness is a kind of resoluteness", "pln": ["(: cnet_isa_69203db1b2 (IsA single_mindedness resoluteness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "single nucleotide polymorphism is a kind of polymorphism", "pln": ["(: cnet_isa_5cfe925397 (IsA single_nucleotide_polymorphism polymorphism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "single prop is a kind of propeller plane", "pln": ["(: cnet_isa_00a06ba585 (IsA single_prop propeller_plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "single quote is a kind of quotation mark", "pln": ["(: cnet_isa_7711d63126 (IsA single_quote quotation_mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "single reed instrument is a kind of beating reed instrument", "pln": ["(: cnet_isa_0fbedd3435 (IsA single_reed_instrument beating_reed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "single rotor helicopter is a kind of helicopter", "pln": ["(: cnet_isa_da23f8a673 (IsA single_rotor_helicopter helicopter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "single spacing is a kind of typing", "pln": ["(: cnet_isa_a7d3ad0ab4 (IsA single_spacing typing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "single supplement is a kind of surcharge", "pln": ["(: cnet_isa_bf1286f8b9 (IsA single_supplement surcharge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "single tax is a kind of tax", "pln": ["(: cnet_isa_cec5489602 (IsA single_tax tax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "singleness is a kind of assiduity", "pln": ["(: cnet_isa_19e61f5572 (IsA singleness assiduity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "singleness is a kind of sincerity", "pln": ["(: cnet_isa_07f1c492ec (IsA singleness sincerity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "single is a kind of badminton", "pln": ["(: cnet_isa_0d5731345e (IsA single badminton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "single is a kind of tennis", "pln": ["(: cnet_isa_c0be596b00 (IsA single tennis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "singlestick is a kind of stick", "pln": ["(: cnet_isa_7a6d2acbc8 (IsA singlestick stick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "singlet is a kind of undergarment", "pln": ["(: cnet_isa_4f469284d3 (IsA singlet undergarment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "singletary pea is a kind of wild pea", "pln": ["(: cnet_isa_89815c627b (IsA singletary_pea wild_pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "singleton is a kind of playing card", "pln": ["(: cnet_isa_28be4f4f7f (IsA singleton playing_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "singleton is a kind of set", "pln": ["(: cnet_isa_028371a091 (IsA singleton set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "singleton is a kind of one", "pln": ["(: cnet_isa_b380c1792a (IsA singleton one) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "singsong is a kind of intonation", "pln": ["(: cnet_isa_f1a07ee224 (IsA singsong intonation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "singular is a kind of form", "pln": ["(: cnet_isa_94256cacc6 (IsA singular form) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "singular matrix is a kind of square matrix", "pln": ["(: cnet_isa_6b915f9a1f (IsA singular_matrix square_matrix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "singularity is a kind of individuality", "pln": ["(: cnet_isa_c97d8e2b0c (IsA singularity individuality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "singularity is a kind of unfamiliarity", "pln": ["(: cnet_isa_3d4cb6ce0a (IsA singularity unfamiliarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sinhalese is a kind of sanskrit", "pln": ["(: cnet_isa_f8db86ae18 (IsA sinhalese sanskrit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sinitic is a kind of sino tibetan", "pln": ["(: cnet_isa_15c85aa802 (IsA sinitic sino_tibetan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sink is a kind of plumbing fixture", "pln": ["(: cnet_isa_df770d7d9c (IsA sink plumbing_fixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sink is a kind of natural process", "pln": ["(: cnet_isa_28f00b2046 (IsA sink natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sinker is a kind of pitch", "pln": ["(: cnet_isa_f2f866dd11 (IsA sinker pitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sinker is a kind of weight", "pln": ["(: cnet_isa_5ee1259185 (IsA sinker weight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sinkhole is a kind of natural depression", "pln": ["(: cnet_isa_3d409ea5dd (IsA sinkhole natural_depression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sinking is a kind of decrease", "pln": ["(: cnet_isa_6fdd2f25f3 (IsA sinking decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sinking is a kind of descent", "pln": ["(: cnet_isa_3aa7816973 (IsA sinking descent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sinking is a kind of anxiety", "pln": ["(: cnet_isa_e6d99aaa48 (IsA sinking anxiety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sinking fund is a kind of fund", "pln": ["(: cnet_isa_f29e907b37 (IsA sinking_fund fund) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sinking spell is a kind of decline", "pln": ["(: cnet_isa_4c064f351f (IsA sinking_spell decline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sinn fein is a kind of political movement", "pln": ["(: cnet_isa_1ecebb3224 (IsA sinn_fein political_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sinner is a kind of wrongdoer", "pln": ["(: cnet_isa_3047eb9ecc (IsA sinner wrongdoer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sinningia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_2b29592afc (IsA sinningia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sino tibetan is a kind of natural language", "pln": ["(: cnet_isa_3cc18450df (IsA sino_tibetan natural_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sinologist is a kind of scholar", "pln": ["(: cnet_isa_55c9e1e9d0 (IsA sinologist scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sinology is a kind of humanistic discipline", "pln": ["(: cnet_isa_4f60cd16fb (IsA sinology humanistic_discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sinopis is a kind of ocher", "pln": ["(: cnet_isa_6bff6fdcbf (IsA sinopis ocher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sinornis is a kind of bird", "pln": ["(: cnet_isa_8c9a18584a (IsA sinornis bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sinuosity is a kind of curve", "pln": ["(: cnet_isa_49e6fd44a9 (IsA sinuosity curve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sinus is a kind of cavity", "pln": ["(: cnet_isa_7d38427bd6 (IsA sinus cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sinus headache is a kind of headache", "pln": ["(: cnet_isa_1ec33bd2f0 (IsA sinus_headache headache) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sinusitis is a kind of inflammation", "pln": ["(: cnet_isa_5c3d278219 (IsA sinusitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sinusoid is a kind of passage", "pln": ["(: cnet_isa_7af0a16766 (IsA sinusoid passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sinusoidal projection is a kind of equal area projection", "pln": ["(: cnet_isa_7eca1ea133 (IsA sinusoidal_projection equal_area_projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "siouan is a kind of amerind", "pln": ["(: cnet_isa_5286b5eddb (IsA siouan amerind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siouan is a kind of buffalo indian", "pln": ["(: cnet_isa_385b3414f4 (IsA siouan buffalo_indian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siphon is a kind of tube", "pln": ["(: cnet_isa_e3481b041f (IsA siphon tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siphonaptera is a kind of animal order", "pln": ["(: cnet_isa_281c534c0f (IsA siphonaptera animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siphonophora is a kind of animal order", "pln": ["(: cnet_isa_f132b42794 (IsA siphonophora animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siphonophore is a kind of hydrozoan", "pln": ["(: cnet_isa_956c0b4eee (IsA siphonophore hydrozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sipper is a kind of drinker", "pln": ["(: cnet_isa_0967de6d7f (IsA sipper drinker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sipuncula is a kind of phylum", "pln": ["(: cnet_isa_8c1ab7019d (IsA sipuncula phylum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sir is a kind of male aristocrat", "pln": ["(: cnet_isa_c1224f022d (IsA sir male_aristocrat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sir is a kind of man", "pln": ["(: cnet_isa_22a05cd84a (IsA sir man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sir karl raimund popper is a kind of philosopher", "pln": ["(: cnet_isa_378f743800 (IsA sir_karl_raimund_popper philosopher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sirdar is a kind of important person", "pln": ["(: cnet_isa_756b010998 (IsA sirdar important_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sire is a kind of male", "pln": ["(: cnet_isa_b88c460a04 (IsA sire male) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sire is a kind of nobleman", "pln": ["(: cnet_isa_c5c5ca518d (IsA sire nobleman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siren is a kind of salamander", "pln": ["(: cnet_isa_a2becaf08c (IsA siren salamander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siren is a kind of acoustic device", "pln": ["(: cnet_isa_4469fcf3bb (IsA siren acoustic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siren is a kind of alarm", "pln": ["(: cnet_isa_50a993de17 (IsA siren alarm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siren is a kind of sea nymph", "pln": ["(: cnet_isa_476065c24e (IsA siren sea_nymph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siren call is a kind of appeal", "pln": ["(: cnet_isa_9796bb96df (IsA siren_call appeal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sirenia is a kind of animal order", "pln": ["(: cnet_isa_f75ccc7772 (IsA sirenia animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sirenidae is a kind of amphibian family", "pln": ["(: cnet_isa_bd1f8b5fd7 (IsA sirenidae amphibian_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siris is a kind of albizzia", "pln": ["(: cnet_isa_669ff6f095 (IsA siris albizzia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sirloin is a kind of cut", "pln": ["(: cnet_isa_83ceea7ad4 (IsA sirloin cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sirloin steak is a kind of beefsteak", "pln": ["(: cnet_isa_185e4c6723 (IsA sirloin_steak beefsteak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sirloin tip is a kind of cut of beef", "pln": ["(: cnet_isa_721e9b55ec (IsA sirloin_tip cut_of_beef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sirrah is a kind of male", "pln": ["(: cnet_isa_5ab7a349a4 (IsA sirrah male) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sisal is a kind of agave", "pln": ["(: cnet_isa_15ce229c63 (IsA sisal agave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sisal is a kind of plant fiber", "pln": ["(: cnet_isa_54b402c3eb (IsA sisal plant_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siskin is a kind of finch", "pln": ["(: cnet_isa_7f5ac744d9 (IsA siskin finch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "siskiyou lewisia is a kind of wildflower", "pln": ["(: cnet_isa_54dc893bb1 (IsA siskiyou_lewisia wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sison is a kind of rosid dicot genus", "pln": ["(: cnet_isa_ca33998f0d (IsA sison rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sissoo is a kind of tree", "pln": ["(: cnet_isa_54e79f2813 (IsA sissoo tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sissy is a kind of coward", "pln": ["(: cnet_isa_6f77447e72 (IsA sissy coward) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sister is a kind of sibling", "pln": ["(: cnet_isa_1e0c7f9008 (IsA sister sibling) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sister is a kind of female sibling", "pln": ["(: cnet_isa_944080a0b4 (IsA sister female_sibling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sister is a kind of member", "pln": ["(: cnet_isa_d1fde4de02 (IsA sister member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sister is a kind of nun", "pln": ["(: cnet_isa_1ebcd5eeda (IsA sister nun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sister in law is a kind of in law", "pln": ["(: cnet_isa_247e676272 (IsA sister_in_law in_law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sister ship is a kind of ship", "pln": ["(: cnet_isa_6494e54427 (IsA sister_ship ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sisterhood is a kind of sect", "pln": ["(: cnet_isa_2ec3a15392 (IsA sisterhood sect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sisterhood is a kind of kinship", "pln": ["(: cnet_isa_a509331f3f (IsA sisterhood kinship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sister and brother is a kind of sibling", "pln": ["(: cnet_isa_1861ddb0b2 (IsA sister_and_brother sibling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sistership is a kind of association", "pln": ["(: cnet_isa_912ae30261 (IsA sistership association) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sistrurus is a kind of reptile genus", "pln": ["(: cnet_isa_f7fb19b94a (IsA sistrurus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sisyridae is a kind of arthropod family", "pln": ["(: cnet_isa_e27dae2335 (IsA sisyridae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sisyrinchium is a kind of liliid monocot genus", "pln": ["(: cnet_isa_b41535a0e7 (IsA sisyrinchium liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sit down is a kind of strike", "pln": ["(: cnet_isa_a6553b5cd1 (IsA sit_down strike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sit in is a kind of civil disobedience", "pln": ["(: cnet_isa_b90ef4f3b5 (IsA sit_in civil_disobedience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sit up is a kind of stomach exercise", "pln": ["(: cnet_isa_71772940a1 (IsA sit_up stomach_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sitar is a kind of stringed instrument", "pln": ["(: cnet_isa_b62c0443f5 (IsA sitar stringed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sitar player is a kind of musician", "pln": ["(: cnet_isa_42768be1bd (IsA sitar_player musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sitcom is a kind of tv show", "pln": ["(: cnet_isa_a73fede3db (IsA sitcom tv_show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "site is a kind of position", "pln": ["(: cnet_isa_53e5980670 (IsA site position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "site is a kind of tract", "pln": ["(: cnet_isa_e63ad779d9 (IsA site tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "site visit is a kind of visit", "pln": ["(: cnet_isa_b107df97ff (IsA site_visit visit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sitka spruce is a kind of spruce", "pln": ["(: cnet_isa_ace27d9926 (IsA sitka_spruce spruce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sitka willow is a kind of willow", "pln": ["(: cnet_isa_121267aeef (IsA sitka_willow willow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sitophylus is a kind of arthropod genus", "pln": ["(: cnet_isa_67e37499bd (IsA sitophylus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sitotroga is a kind of arthropod genus", "pln": ["(: cnet_isa_09f5f08a65 (IsA sitotroga arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sitta is a kind of bird genus", "pln": ["(: cnet_isa_bc18fa5f28 (IsA sitta bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sitter is a kind of organism", "pln": ["(: cnet_isa_c403e92493 (IsA sitter organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sittidae is a kind of bird family", "pln": ["(: cnet_isa_0b7a4857fb (IsA sittidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sitting is a kind of motion", "pln": ["(: cnet_isa_78702cfbb4 (IsA sitting motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sitting is a kind of session", "pln": ["(: cnet_isa_2a92b05bf1 (IsA sitting session) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sitting duck is a kind of victim", "pln": ["(: cnet_isa_03daa63b15 (IsA sitting_duck victim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sitting trot is a kind of trot", "pln": ["(: cnet_isa_18b6933194 (IsA sitting_trot trot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "situation is a kind of condition", "pln": ["(: cnet_isa_9102352989 (IsA situation condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "situation is a kind of difficulty", "pln": ["(: cnet_isa_523f6593ce (IsA situation difficulty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "situation is a kind of state", "pln": ["(: cnet_isa_97edecd3f0 (IsA situation state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "situation comedy is a kind of comedy", "pln": ["(: cnet_isa_ffa1e9efe2 (IsA situation_comedy comedy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "situation comedy is a kind of television program", "pln": ["(: cnet_isa_7504ccc6aa (IsA situation_comedy television_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sitz bath is a kind of bathtub", "pln": ["(: cnet_isa_de69a4df3b (IsA sitz_bath bathtub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sium is a kind of rosid dicot genus", "pln": ["(: cnet_isa_a2daa8471f (IsA sium rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sivan is a kind of jewish calendar month", "pln": ["(: cnet_isa_c8b434efe2 (IsA sivan jewish_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sivapithecus is a kind of hominid", "pln": ["(: cnet_isa_265ef70386 (IsA sivapithecus hominid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "six is a kind of digit", "pln": ["(: cnet_isa_a325c3a6d2 (IsA six digit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "six footer is a kind of person", "pln": ["(: cnet_isa_988ec7a869 (IsA six_footer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "six of wand is a kind of strong leadership", "pln": ["(: cnet_isa_f60d5cba2c (IsA six_of_wand strong_leadership) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "six pack is a kind of carton", "pln": ["(: cnet_isa_c71812c9ae (IsA six_pack carton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "six spot is a kind of dice", "pln": ["(: cnet_isa_7335534470 (IsA six_spot dice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "six spot is a kind of domino", "pln": ["(: cnet_isa_adf2a336ec (IsA six_spot domino) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "six spot is a kind of spot", "pln": ["(: cnet_isa_2bb5d5ea89 (IsA six_spot spot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sixpence is a kind of coin", "pln": ["(: cnet_isa_24baef48e6 (IsA sixpence coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sixpenny nail is a kind of nail", "pln": ["(: cnet_isa_79186f4890 (IsA sixpenny_nail nail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sixteen is a kind of large integer", "pln": ["(: cnet_isa_a1f464ca08 (IsA sixteen large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sixteen personality factor questionnaire is a kind of self report personality inventory", "pln": ["(: cnet_isa_1c44c2b8f8 (IsA sixteen_personality_factor_questionnaire self_report_personality_inventory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sixteenth is a kind of rank", "pln": ["(: cnet_isa_611acef2bb (IsA sixteenth rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sixteenth note is a kind of note", "pln": ["(: cnet_isa_73dfa0169e (IsA sixteenth_note note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sixteenth part is a kind of common fraction", "pln": ["(: cnet_isa_5adf06f31f (IsA sixteenth_part common_fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sixth is a kind of interval", "pln": ["(: cnet_isa_67458774d3 (IsA sixth interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sixth is a kind of rank", "pln": ["(: cnet_isa_7f25f80749 (IsA sixth rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sixth day of week is a kind of friday", "pln": ["(: cnet_isa_439744e86b (IsA sixth_day_of_week friday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sixth former is a kind of student", "pln": ["(: cnet_isa_f9f0202b04 (IsA sixth_former student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sixty is a kind of decade", "pln": ["(: cnet_isa_10c72ddea2 (IsA sixty decade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sixty is a kind of time of life", "pln": ["(: cnet_isa_459777735f (IsA sixty time_of_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sixtieth is a kind of rank", "pln": ["(: cnet_isa_96a5a78101 (IsA sixtieth rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sixty is a kind of large integer", "pln": ["(: cnet_isa_46566678c6 (IsA sixty large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sixty fourth note is a kind of note", "pln": ["(: cnet_isa_ced5a1d25b (IsA sixty_fourth_note note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "size is a kind of magnitude", "pln": ["(: cnet_isa_5d09be04b8 (IsA size magnitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "size is a kind of property", "pln": ["(: cnet_isa_408bc6d466 (IsA size property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "size is a kind of situation", "pln": ["(: cnet_isa_b1a5e0188e (IsA size situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "size is a kind of filler", "pln": ["(: cnet_isa_df7e296161 (IsA size filler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "size constancy is a kind of constancy", "pln": ["(: cnet_isa_d5120c32f6 (IsA size_constancy constancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "size stick is a kind of measuring stick", "pln": ["(: cnet_isa_06d8af141c (IsA size_stick measuring_stick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sizzle is a kind of noise", "pln": ["(: cnet_isa_c3db7418c4 (IsA sizzle noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skagit is a kind of salish", "pln": ["(: cnet_isa_ae9a9c3331 (IsA skagit salish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skank is a kind of dancing", "pln": ["(: cnet_isa_6e0f08d629 (IsA skank dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skate is a kind of ray", "pln": ["(: cnet_isa_143f124f94 (IsA skate ray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skate is a kind of sport equipment", "pln": ["(: cnet_isa_e66dfe74ed (IsA skate sport_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skate park is a kind of park", "pln": ["(: cnet_isa_675a498aed (IsA skate_park park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skateboard is a kind of toy", "pln": ["(: cnet_isa_d0d2a54531 (IsA skateboard toy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skateboard is a kind of board", "pln": ["(: cnet_isa_37f7e3735b (IsA skateboard board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skateboard is a kind of wheeled vehicle", "pln": ["(: cnet_isa_2867ee082f (IsA skateboard wheeled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skateboarder is a kind of skater", "pln": ["(: cnet_isa_63400cc528 (IsA skateboarder skater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skateboarding is a kind of skating", "pln": ["(: cnet_isa_8c95a3e54f (IsA skateboarding skating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skater is a kind of athlete", "pln": ["(: cnet_isa_6f7273dfd0 (IsA skater athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skating is a kind of activity", "pln": ["(: cnet_isa_681ebd9c85 (IsA skating activity) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skating is a kind of sport", "pln": ["(: cnet_isa_b2b6b31d07 (IsA skating sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "skedaddle is a kind of escape", "pln": ["(: cnet_isa_e4dcd22f7a (IsA skedaddle escape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skeen arch is a kind of arch", "pln": ["(: cnet_isa_0631a56c7e (IsA skeen_arch arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skeet is a kind of shoot", "pln": ["(: cnet_isa_b0d78c52a0 (IsA skeet shoot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skeg is a kind of brace", "pln": ["(: cnet_isa_ec88b0b9e6 (IsA skeg brace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skein is a kind of hank", "pln": ["(: cnet_isa_afd59954d6 (IsA skein hank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skeletal muscle is a kind of muscle", "pln": ["(: cnet_isa_d4260edf5b (IsA skeletal_muscle muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skeletal structure is a kind of structure", "pln": ["(: cnet_isa_27c38cedb1 (IsA skeletal_structure structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skeletal system is a kind of system", "pln": ["(: cnet_isa_16c07bf8db (IsA skeletal_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skeleton is a kind of supporting structure", "pln": ["(: cnet_isa_1bb88442c6 (IsA skeleton supporting_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skeleton is a kind of scandal", "pln": ["(: cnet_isa_b0fd30046c (IsA skeleton scandal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skeleton is a kind of minimum", "pln": ["(: cnet_isa_fe2f11bc6f (IsA skeleton minimum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skeleton fork fern is a kind of whisk fern", "pln": ["(: cnet_isa_1e0e100046 (IsA skeleton_fork_fern whisk_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skeleton key is a kind of passkey", "pln": ["(: cnet_isa_3ff6ee90b3 (IsA skeleton_key passkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "skeleton shrimp is a kind of amphipod", "pln": ["(: cnet_isa_c27cfb3292 (IsA skeleton_shrimp amphipod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "skep is a kind of basket", "pln": ["(: cnet_isa_0ea75131ad (IsA skep basket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skep is a kind of beehive", "pln": ["(: cnet_isa_8a810a585d (IsA skep beehive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skepful is a kind of containerful", "pln": ["(: cnet_isa_8deacb39d3 (IsA skepful containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skeptic is a kind of intellectual", "pln": ["(: cnet_isa_6bec3c1cfa (IsA skeptic intellectual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sketch is a kind of drawing", "pln": ["(: cnet_isa_783236b82d (IsA sketch drawing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sketch is a kind of description", "pln": ["(: cnet_isa_189dfe65b8 (IsA sketch description) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sketch is a kind of summary", "pln": ["(: cnet_isa_fb9871350f (IsA sketch summary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sketch map is a kind of map", "pln": ["(: cnet_isa_918302aa56 (IsA sketch_map map) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sketchbook is a kind of book", "pln": ["(: cnet_isa_72d4c778c8 (IsA sketchbook book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sketcher is a kind of writing implement", "pln": ["(: cnet_isa_36a7ca416a (IsA sketcher writing_implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sketcher is a kind of draftsman", "pln": ["(: cnet_isa_c54725830c (IsA sketcher draftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sketchiness is a kind of incompleteness", "pln": ["(: cnet_isa_0e1d4bc418 (IsA sketchiness incompleteness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skew arch is a kind of arch", "pln": ["(: cnet_isa_5d4015c499 (IsA skew_arch arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skewer is a kind of pin", "pln": ["(: cnet_isa_300f995271 (IsA skewer pin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ski is a kind of runner", "pln": ["(: cnet_isa_3af8d5e6a9 (IsA ski runner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ski binding is a kind of mechanical device", "pln": ["(: cnet_isa_cb6e29cc46 (IsA ski_binding mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ski boot is a kind of boot", "pln": ["(: cnet_isa_ffb1ce58a7 (IsA ski_boot boot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ski cap is a kind of cap", "pln": ["(: cnet_isa_a604500d97 (IsA ski_cap cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ski condition is a kind of condition", "pln": ["(: cnet_isa_c8b96acf87 (IsA ski_condition condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ski jump is a kind of ramp", "pln": ["(: cnet_isa_c73b7d793d (IsA ski_jump ramp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ski jumper is a kind of bounder", "pln": ["(: cnet_isa_82034c130c (IsA ski_jumper bounder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ski jumper is a kind of skier", "pln": ["(: cnet_isa_1272923555 (IsA ski_jumper skier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ski jumping is a kind of skiing", "pln": ["(: cnet_isa_e0bb115d9c (IsA ski_jumping skiing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ski lodge is a kind of hotel", "pln": ["(: cnet_isa_1d98632a2c (IsA ski_lodge hotel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ski mask is a kind of face mask", "pln": ["(: cnet_isa_51c0174e5d (IsA ski_mask face_mask) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ski parka is a kind of parka", "pln": ["(: cnet_isa_5e1332d419 (IsA ski_parka parka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ski plane is a kind of airplane", "pln": ["(: cnet_isa_78df3e0ef4 (IsA ski_plane airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ski pole is a kind of pole", "pln": ["(: cnet_isa_accfa5af3d (IsA ski_pole pole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ski race is a kind of race", "pln": ["(: cnet_isa_70b500f047 (IsA ski_race race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ski rack is a kind of carrier", "pln": ["(: cnet_isa_a09fb7132a (IsA ski_rack carrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ski resort is a kind of resort", "pln": ["(: cnet_isa_1ac8923c27 (IsA ski_resort resort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ski run is a kind of trail", "pln": ["(: cnet_isa_b21b1c0fc6 (IsA ski_run trail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ski slope is a kind of slope", "pln": ["(: cnet_isa_9906c0a4de (IsA ski_slope slope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ski tow is a kind of conveyance", "pln": ["(: cnet_isa_4fd5b9cc95 (IsA ski_tow conveyance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ski wax is a kind of wax", "pln": ["(: cnet_isa_72ae2bfb89 (IsA ski_wax wax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skibob is a kind of vehicle", "pln": ["(: cnet_isa_b042db00fc (IsA skibob vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "skid is a kind of slide", "pln": ["(: cnet_isa_ee2ee6af03 (IsA skid slide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "skid is a kind of board", "pln": ["(: cnet_isa_c523b443a9 (IsA skid board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skid lid is a kind of crash helmet", "pln": ["(: cnet_isa_0e281950ce (IsA skid_lid crash_helmet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skid road is a kind of road", "pln": ["(: cnet_isa_70d684417b (IsA skid_road road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skid road is a kind of quarter", "pln": ["(: cnet_isa_2d8b72b2f0 (IsA skid_road quarter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "skid row is a kind of slum", "pln": ["(: cnet_isa_d839882c97 (IsA skid_row slum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skidder is a kind of tractor", "pln": ["(: cnet_isa_c1f8f9b58b (IsA skidder tractor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skidder is a kind of person", "pln": ["(: cnet_isa_7ec986b5f2 (IsA skidder person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skidder is a kind of worker", "pln": ["(: cnet_isa_eddd0afc09 (IsA skidder worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skidpan is a kind of paved surface", "pln": ["(: cnet_isa_044a370584 (IsA skidpan paved_surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skier is a kind of athlete", "pln": ["(: cnet_isa_cbc224dc29 (IsA skier athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skiff is a kind of small boat", "pln": ["(: cnet_isa_636fcdf72c (IsA skiff small_boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skiffle is a kind of popular music", "pln": ["(: cnet_isa_a0e2edfdb9 (IsA skiffle popular_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skiffle group is a kind of ensemble", "pln": ["(: cnet_isa_5b6ab1eed1 (IsA skiffle_group ensemble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "skiing is a kind of activity", "pln": ["(: cnet_isa_ecbb606f25 (IsA skiing activity) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skiing is a kind of dangerous sport", "pln": ["(: cnet_isa_e51090075a (IsA skiing dangerous_sport) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "skiing is a kind of good form of excercise", "pln": ["(: cnet_isa_3894d80738 (IsA skiing good_form_of_excercise) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skiing is a kind of winter sport", "pln": ["(: cnet_isa_823d26b824 (IsA skiing winter_sport) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "skiing is a kind of sport", "pln": ["(: cnet_isa_656d7cdb03 (IsA skiing sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skill is a kind of ability", "pln": ["(: cnet_isa_97d46ac39f (IsA skill ability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skilled worker is a kind of worker", "pln": ["(: cnet_isa_bfa33c09e6 (IsA skilled_worker worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skillet bread is a kind of quick bread", "pln": ["(: cnet_isa_958b81294b (IsA skillet_bread quick_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skillet corn bread is a kind of cornbread", "pln": ["(: cnet_isa_c6ac94546e (IsA skillet_corn_bread cornbread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skillet fish is a kind of clingfish", "pln": ["(: cnet_isa_36d4f5c5aa (IsA skillet_fish clingfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skillfulness is a kind of state", "pln": ["(: cnet_isa_8184217f71 (IsA skillfulness state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skilly is a kind of gruel", "pln": ["(: cnet_isa_61f79a2e90 (IsA skilly gruel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skim is a kind of reading", "pln": ["(: cnet_isa_96a497479a (IsA skim reading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skim is a kind of covering", "pln": ["(: cnet_isa_963b3c113a (IsA skim covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skim milk is a kind of milk", "pln": ["(: cnet_isa_2f43542b65 (IsA skim_milk milk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skimmer is a kind of coastal diving bird", "pln": ["(: cnet_isa_2b5ad1097d (IsA skimmer coastal_diving_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skimmer is a kind of cooking utensil", "pln": ["(: cnet_isa_6c6d158bbe (IsA skimmer cooking_utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "skimmer is a kind of reader", "pln": ["(: cnet_isa_5722eb4180 (IsA skimmer reader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skimming is a kind of larceny", "pln": ["(: cnet_isa_79afe6426f (IsA skimming larceny) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skimming is a kind of removal", "pln": ["(: cnet_isa_1cd7663610 (IsA skimming removal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skin is a kind of body covering", "pln": ["(: cnet_isa_5971382fa2 (IsA skin body_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skin is a kind of bag", "pln": ["(: cnet_isa_edafd576d5 (IsA skin bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "skin is a kind of surface", "pln": ["(: cnet_isa_18cd2b6e2d (IsA skin surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skin is a kind of connective tissue", "pln": ["(: cnet_isa_2bc9261958 (IsA skin connective_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skin is a kind of animation", "pln": ["(: cnet_isa_baeff9abfc (IsA skin animation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skin cancer is a kind of carcinoma", "pln": ["(: cnet_isa_3827da6fd6 (IsA skin_cancer carcinoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skin care is a kind of care", "pln": ["(: cnet_isa_aca0861fea (IsA skin_care care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skin cell is a kind of somatic cell", "pln": ["(: cnet_isa_b49ce692bb (IsA skin_cell somatic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skin disease is a kind of disease", "pln": ["(: cnet_isa_88e5d7fea5 (IsA skin_disease disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skin diver is a kind of swimmer", "pln": ["(: cnet_isa_4c9ac1fe8e (IsA skin_diver swimmer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skin diving is a kind of swimming", "pln": ["(: cnet_isa_20a7661d25 (IsA skin_diving swimming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skin effect is a kind of electrical phenomenon", "pln": ["(: cnet_isa_d063fe65ef (IsA skin_effect electrical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skin flick is a kind of movie", "pln": ["(: cnet_isa_b0825da4b4 (IsA skin_flick movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skin graft is a kind of skin", "pln": ["(: cnet_isa_7a99df419a (IsA skin_graft skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skin test is a kind of diagnostic test", "pln": ["(: cnet_isa_dd83d0ada3 (IsA skin_test diagnostic_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skinful is a kind of indefinite quantity", "pln": ["(: cnet_isa_98126becf6 (IsA skinful indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skinhead is a kind of bully", "pln": ["(: cnet_isa_cd8cd81e0c (IsA skinhead bully) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skinhead is a kind of youth subculture", "pln": ["(: cnet_isa_e774eaf7fc (IsA skinhead youth_subculture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skink is a kind of lizard", "pln": ["(: cnet_isa_e4d7bc76df (IsA skink lizard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skinner is a kind of skilled worker", "pln": ["(: cnet_isa_63fabf40c1 (IsA skinner skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skinnerian is a kind of follower", "pln": ["(: cnet_isa_2035123fa0 (IsA skinnerian follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skinniness is a kind of leanness", "pln": ["(: cnet_isa_38d9f23781 (IsA skinniness leanness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skinny is a kind of information", "pln": ["(: cnet_isa_c0f919d599 (IsA skinny information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skinny dip is a kind of swimming", "pln": ["(: cnet_isa_70f86cc3bb (IsA skinny_dip swimming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skinny dipper is a kind of swimmer", "pln": ["(: cnet_isa_a99a50fc06 (IsA skinny_dipper swimmer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skip is a kind of gait", "pln": ["(: cnet_isa_9f30a65832 (IsA skip gait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skip distance is a kind of distance", "pln": ["(: cnet_isa_a836b9489c (IsA skip_distance distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skipjack is a kind of bonito", "pln": ["(: cnet_isa_7c3d2ebf2e (IsA skipjack bonito) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skipjack is a kind of scombroid", "pln": ["(: cnet_isa_18a300ecac (IsA skipjack scombroid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skipper is a kind of student", "pln": ["(: cnet_isa_fee94efa1c (IsA skipper student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skirl is a kind of sound", "pln": ["(: cnet_isa_6013fc1c94 (IsA skirl sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "skirmisher is a kind of combatant", "pln": ["(: cnet_isa_aba1c076e5 (IsA skirmisher combatant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "skirret is a kind of marsh plant", "pln": ["(: cnet_isa_ba5418861a (IsA skirret marsh_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "skull and crossbones is a kind of emblem", "pln": ["(: cnet_isa_db7eeb316f (IsA skull_and_crossbones emblem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skirt is a kind of form of clothing", "pln": ["(: cnet_isa_f859353ea7 (IsA skirt form_of_clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skirt is a kind of form of female attire", "pln": ["(: cnet_isa_ea58aefe04 (IsA skirt form_of_female_attire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skirt is a kind of cloth covering", "pln": ["(: cnet_isa_4a890bdde0 (IsA skirt cloth_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skirt is a kind of garment", "pln": ["(: cnet_isa_a48af4c1ff (IsA skirt garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skirt of tass is a kind of armor plate", "pln": ["(: cnet_isa_a5135a85ad (IsA skirt_of_tass armor_plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skirt and pant is a kind of kind of clothe", "pln": ["(: cnet_isa_7ce0a9b211 (IsA skirt_and_pant kind_of_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skit is a kind of acting", "pln": ["(: cnet_isa_93885846ee (IsA skit acting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skittishness is a kind of nervousness", "pln": ["(: cnet_isa_51dee64449 (IsA skittishness nervousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skivvy is a kind of domestic", "pln": ["(: cnet_isa_20ab2a683e (IsA skivvy domestic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skua is a kind of jaeger", "pln": ["(: cnet_isa_bb025a7511 (IsA skua jaeger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skull is a kind of bone", "pln": ["(: cnet_isa_0f929a8d56 (IsA skull bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skull and crossbone is a kind of emblem", "pln": ["(: cnet_isa_670c487a66 (IsA skull_and_crossbone emblem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skull session is a kind of training", "pln": ["(: cnet_isa_729fd06c07 (IsA skull_session training) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "skull session is a kind of session", "pln": ["(: cnet_isa_87bbfa6010 (IsA skull_session session) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skullcap is a kind of cap", "pln": ["(: cnet_isa_431b55e386 (IsA skullcap cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skunk is a kind of musteline mammal", "pln": ["(: cnet_isa_e4ac2caf74 (IsA skunk musteline_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "skunk cabbage is a kind of marsh plant", "pln": ["(: cnet_isa_4167cd4d3d (IsA skunk_cabbage marsh_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skunkweed is a kind of polemonium", "pln": ["(: cnet_isa_586d5aee1a (IsA skunkweed polemonium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sky is a kind of atmosphere", "pln": ["(: cnet_isa_e0c752e922 (IsA sky atmosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sky burial is a kind of funeral", "pln": ["(: cnet_isa_f9c2dc0d2e (IsA sky_burial funeral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sky glow is a kind of glow", "pln": ["(: cnet_isa_964c070c43 (IsA sky_glow glow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sky wave is a kind of radio wave", "pln": ["(: cnet_isa_c94591e27a (IsA sky_wave radio_wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "skybox is a kind of box", "pln": ["(: cnet_isa_5e9af2484c (IsA skybox box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skybox is a kind of stadium", "pln": ["(: cnet_isa_08870cc133 (IsA skybox stadium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skycap is a kind of porter", "pln": ["(: cnet_isa_febec416b5 (IsA skycap porter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skydiver is a kind of parachutist", "pln": ["(: cnet_isa_1a9e43851e (IsA skydiver parachutist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skydiving is a kind of jump", "pln": ["(: cnet_isa_baa980d2eb (IsA skydiving jump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skye terrier is a kind of terrier", "pln": ["(: cnet_isa_a6304ac693 (IsA skye_terrier terrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skyhook is a kind of helicopter", "pln": ["(: cnet_isa_732effb0c9 (IsA skyhook helicopter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skyhook is a kind of hook", "pln": ["(: cnet_isa_8338b30a87 (IsA skyhook hook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skylark is a kind of lark", "pln": ["(: cnet_isa_4e9e00cd55 (IsA skylark lark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skylight is a kind of window", "pln": ["(: cnet_isa_2499a93ff0 (IsA skylight window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skyline is a kind of outline", "pln": ["(: cnet_isa_0134cb6986 (IsA skyline outline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skyrocket is a kind of firework", "pln": ["(: cnet_isa_86e2e84295 (IsA skyrocket firework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skysail is a kind of sail", "pln": ["(: cnet_isa_54e557f8f7 (IsA skysail sail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skyscraper is a kind of building", "pln": ["(: cnet_isa_d40dd13bac (IsA skyscraper building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skywalk is a kind of walk", "pln": ["(: cnet_isa_61bf20ef11 (IsA skywalk walk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "skywriting is a kind of writing", "pln": ["(: cnet_isa_38faf5d6d0 (IsA skywriting writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slab is a kind of block", "pln": ["(: cnet_isa_350eb57098 (IsA slab block) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slack is a kind of cord", "pln": ["(: cnet_isa_68b0b9bb5d (IsA slack cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slack is a kind of looseness", "pln": ["(: cnet_isa_cc69d0d2ab (IsA slack looseness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slack is a kind of stretch", "pln": ["(: cnet_isa_a6a06a24c3 (IsA slack stretch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slack is a kind of debris", "pln": ["(: cnet_isa_8a94a474a8 (IsA slack debris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slack suit is a kind of suit", "pln": ["(: cnet_isa_de9d2fc7c1 (IsA slack_suit suit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slack water is a kind of tide", "pln": ["(: cnet_isa_01899de6fa (IsA slack_water tide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slacker is a kind of idler", "pln": ["(: cnet_isa_9cb4e814b9 (IsA slacker idler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slack is a kind of form of clothing", "pln": ["(: cnet_isa_c9558fd1e6 (IsA slack form_of_clothing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slack is a kind of pair of trouser", "pln": ["(: cnet_isa_121e8d2025 (IsA slack pair_of_trouser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slag is a kind of scum", "pln": ["(: cnet_isa_9d50d6c28f (IsA slag scum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slagheap is a kind of pile", "pln": ["(: cnet_isa_29fb414c8f (IsA slagheap pile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slain is a kind of dead", "pln": ["(: cnet_isa_e486f51206 (IsA slain dead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slalom is a kind of ski race", "pln": ["(: cnet_isa_e4acd89028 (IsA slalom ski_race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slam is a kind of impact", "pln": ["(: cnet_isa_b2d4164648 (IsA slam impact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slam is a kind of noise", "pln": ["(: cnet_isa_df497f98f3 (IsA slam noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slam is a kind of victory", "pln": ["(: cnet_isa_768edfc6bc (IsA slam victory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slam dancing is a kind of dancing", "pln": ["(: cnet_isa_7a33f17732 (IsA slam_dancing dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slam dunk is a kind of dunk", "pln": ["(: cnet_isa_5cc0aacc4a (IsA slam_dunk dunk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slam dunk is a kind of certainty", "pln": ["(: cnet_isa_c36a0553f3 (IsA slam_dunk certainty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slammer is a kind of closer", "pln": ["(: cnet_isa_e15053c8f0 (IsA slammer closer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "slander is a kind of defamation", "pln": ["(: cnet_isa_6cf3e46dd9 (IsA slander defamation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slander is a kind of speech act", "pln": ["(: cnet_isa_7c701fca12 (IsA slander speech_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slang is a kind of non standard speech", "pln": ["(: cnet_isa_a769e9b7e4 (IsA slang non_standard_speech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slanginess is a kind of casualness", "pln": ["(: cnet_isa_a3263944ea (IsA slanginess casualness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slanguage is a kind of language", "pln": ["(: cnet_isa_0e25a35071 (IsA slanguage language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slant is a kind of point of view", "pln": ["(: cnet_isa_f5f9eee114 (IsA slant point_of_view) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slap is a kind of bump", "pln": ["(: cnet_isa_1ef2fc6710 (IsA slap bump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slapper is a kind of hitter", "pln": ["(: cnet_isa_a84095c97e (IsA slapper hitter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slapshot is a kind of shot", "pln": ["(: cnet_isa_fd992eb3fc (IsA slapshot shot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slapstick is a kind of acoustic device", "pln": ["(: cnet_isa_536bc84c22 (IsA slapstick acoustic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slapstick is a kind of comedy", "pln": ["(: cnet_isa_c928e72f9c (IsA slapstick comedy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slash is a kind of cut", "pln": ["(: cnet_isa_05f7d61edf (IsA slash cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slash is a kind of land", "pln": ["(: cnet_isa_6d1dc45c7e (IsA slash land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slash pocket is a kind of pocket", "pln": ["(: cnet_isa_96dfc3825a (IsA slash_pocket pocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slasher is a kind of weapon", "pln": ["(: cnet_isa_53df843e16 (IsA slasher weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slasher is a kind of attacker", "pln": ["(: cnet_isa_59aba42cbf (IsA slasher attacker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slat is a kind of strip", "pln": ["(: cnet_isa_820108c524 (IsA slat strip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slate is a kind of tablet", "pln": ["(: cnet_isa_d44e650370 (IsA slate tablet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slate is a kind of list", "pln": ["(: cnet_isa_7aba780350 (IsA slate list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slate is a kind of roofing material", "pln": ["(: cnet_isa_d186dedb07 (IsA slate roofing_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slate is a kind of sedimentary rock", "pln": ["(: cnet_isa_c37771adc4 (IsA slate sedimentary_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slate club is a kind of club", "pln": ["(: cnet_isa_80a73ef8f4 (IsA slate_club club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slate pencil is a kind of pencil", "pln": ["(: cnet_isa_08a6605fa5 (IsA slate_pencil pencil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slate roof is a kind of roof", "pln": ["(: cnet_isa_326b8f7fbc (IsA slate_roof roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slating is a kind of roofing", "pln": ["(: cnet_isa_d1d36aeead (IsA slating roofing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "slating is a kind of criticism", "pln": ["(: cnet_isa_75a9ac175a (IsA slating criticism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slattern is a kind of slob", "pln": ["(: cnet_isa_083b208485 (IsA slattern slob) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slatternliness is a kind of slovenliness", "pln": ["(: cnet_isa_3c299f6157 (IsA slatternliness slovenliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slaughter is a kind of killing", "pln": ["(: cnet_isa_bd579cd079 (IsA slaughter killing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slaughter is a kind of murder", "pln": ["(: cnet_isa_0289143682 (IsA slaughter murder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slav is a kind of european", "pln": ["(: cnet_isa_6b4918c8f4 (IsA slav european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slav is a kind of person", "pln": ["(: cnet_isa_c14fbb5a1e (IsA slav person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slave is a kind of in bondage", "pln": ["(: cnet_isa_3f291ee45e (IsA slave in_bondage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slave is a kind of person", "pln": ["(: cnet_isa_9adf8d15c5 (IsA slave person) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slave is a kind of worker", "pln": ["(: cnet_isa_f57ffcfafb (IsA slave worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slave ant is a kind of ant", "pln": ["(: cnet_isa_eaad13ed2e (IsA slave_ant ant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slave driver is a kind of employer", "pln": ["(: cnet_isa_05796ed44c (IsA slave_driver employer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slave driver is a kind of taskmaster", "pln": ["(: cnet_isa_c9cfbeb23e (IsA slave_driver taskmaster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "slave making ant is a kind of ant", "pln": ["(: cnet_isa_43f161e6c4 (IsA slave_making_ant ant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slave market is a kind of marketplace", "pln": ["(: cnet_isa_ed68623367 (IsA slave_market marketplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slave ship is a kind of ship", "pln": ["(: cnet_isa_c281676c4b (IsA slave_ship ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slave state is a kind of american state", "pln": ["(: cnet_isa_a78fc472e6 (IsA slave_state american_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slave trade is a kind of traffic", "pln": ["(: cnet_isa_c95eeece55 (IsA slave_trade traffic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slaveholder is a kind of holder", "pln": ["(: cnet_isa_17fe750c57 (IsA slaveholder holder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slaver is a kind of victimizer", "pln": ["(: cnet_isa_bc637cae18 (IsA slaver victimizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slavery is a kind of labor", "pln": ["(: cnet_isa_f3a07c1fb4 (IsA slavery labor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slavery is a kind of practice", "pln": ["(: cnet_isa_28c7d5f0d6 (IsA slavery practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slavic is a kind of balto slavic", "pln": ["(: cnet_isa_4dd7d78c05 (IsA slavic balto_slavic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slavic people is a kind of people", "pln": ["(: cnet_isa_2ab1f4cd00 (IsA slavic_people people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleaziness is a kind of dishonorableness", "pln": ["(: cnet_isa_83f7406c28 (IsA sleaziness dishonorableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sled is a kind of vehicle", "pln": ["(: cnet_isa_baba580900 (IsA sled vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sled dog is a kind of working dog", "pln": ["(: cnet_isa_ab95bcbb13 (IsA sled_dog working_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sledder is a kind of athlete", "pln": ["(: cnet_isa_68cefce6d4 (IsA sledder athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sledding is a kind of sport", "pln": ["(: cnet_isa_ac6ee47e7f (IsA sledding sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleekness is a kind of appearance", "pln": ["(: cnet_isa_5d2b540ab4 (IsA sleekness appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleep is a kind of physiological state", "pln": ["(: cnet_isa_e15490411e (IsA sleep physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sleep is a kind of time period", "pln": ["(: cnet_isa_04c2d13c80 (IsA sleep time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleep apnea is a kind of sleep disorder", "pln": ["(: cnet_isa_ccc184276b (IsA sleep_apnea sleep_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleep apnea is a kind of apnea", "pln": ["(: cnet_isa_96bd1d610f (IsA sleep_apnea apnea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleep deprivation is a kind of torture", "pln": ["(: cnet_isa_425fa79ab0 (IsA sleep_deprivation torture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleep disorder is a kind of disorder", "pln": ["(: cnet_isa_e63af3b164 (IsA sleep_disorder disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleep learning is a kind of teaching", "pln": ["(: cnet_isa_8e2e859954 (IsA sleep_learning teaching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sleep talking is a kind of process", "pln": ["(: cnet_isa_ac2dbc0cc1 (IsA sleep_talking process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleep talking is a kind of sleeping", "pln": ["(: cnet_isa_9f8a10dd70 (IsA sleep_talking sleeping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleep terror disorder is a kind of sleep disorder", "pln": ["(: cnet_isa_c1f4cd8443 (IsA sleep_terror_disorder sleep_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sleeper is a kind of hit", "pln": ["(: cnet_isa_1c4eca66ee (IsA sleeper hit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sleeper is a kind of percoid fish", "pln": ["(: cnet_isa_b470ae5b9f (IsA sleeper percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleeper is a kind of furniture", "pln": ["(: cnet_isa_1a440dcea4 (IsA sleeper furniture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleeper is a kind of pajama", "pln": ["(: cnet_isa_1f73750b72 (IsA sleeper pajama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleeper is a kind of achiever", "pln": ["(: cnet_isa_42d161295b (IsA sleeper achiever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleeper is a kind of rester", "pln": ["(: cnet_isa_a0072d05a8 (IsA sleeper rester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleeper is a kind of saboteur", "pln": ["(: cnet_isa_a8eb893535 (IsA sleeper saboteur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleeper is a kind of spy", "pln": ["(: cnet_isa_1a11a20e7c (IsA sleeper spy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleeper is a kind of terrorist", "pln": ["(: cnet_isa_e8472da9f6 (IsA sleeper terrorist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleeper cell is a kind of cell", "pln": ["(: cnet_isa_4b94b249d9 (IsA sleeper_cell cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleeper nest is a kind of nest", "pln": ["(: cnet_isa_2dfe3147be (IsA sleeper_nest nest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleepiness is a kind of temporary state", "pln": ["(: cnet_isa_dd82f9ea68 (IsA sleepiness temporary_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleeping is a kind of bodily process", "pln": ["(: cnet_isa_5ef14b20c0 (IsA sleeping bodily_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleeping is a kind of sleep", "pln": ["(: cnet_isa_fff80e61ed (IsA sleeping sleep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleeping bag is a kind of bag", "pln": ["(: cnet_isa_8fe1aac621 (IsA sleeping_bag bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleeping beauty is a kind of target company", "pln": ["(: cnet_isa_8eb5201517 (IsA sleeping_beauty target_company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleeping beauty is a kind of sleeper", "pln": ["(: cnet_isa_f20eb2b46e (IsA sleeping_beauty sleeper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleeping car is a kind of passenger car", "pln": ["(: cnet_isa_a706cdaf03 (IsA sleeping_car passenger_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleeping pill is a kind of pill", "pln": ["(: cnet_isa_110011c641 (IsA sleeping_pill pill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleeping pill is a kind of soporific", "pln": ["(: cnet_isa_1297c314dd (IsA sleeping_pill soporific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleeping sickness is a kind of encephalitis", "pln": ["(: cnet_isa_45e4469fb7 (IsA sleeping_sickness encephalitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleepover is a kind of affair", "pln": ["(: cnet_isa_409e95beb1 (IsA sleepover affair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleepwalker is a kind of sleeper", "pln": ["(: cnet_isa_7a02a1bbc8 (IsA sleepwalker sleeper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleepwalking is a kind of sleeping", "pln": ["(: cnet_isa_98e5b5a70f (IsA sleepwalking sleeping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sleepwalking is a kind of walk", "pln": ["(: cnet_isa_6f70cecd79 (IsA sleepwalking walk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleepyhead is a kind of person", "pln": ["(: cnet_isa_dd96e4d37b (IsA sleepyhead person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleet is a kind of precipitation", "pln": ["(: cnet_isa_31e0fdb9b4 (IsA sleet precipitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sleeve is a kind of case", "pln": ["(: cnet_isa_069e0aa0f8 (IsA sleeve case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleeve is a kind of cloth covering", "pln": ["(: cnet_isa_0925f6a1bc (IsA sleeve cloth_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleigh bed is a kind of bed", "pln": ["(: cnet_isa_47206e77b5 (IsA sleigh_bed bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sleigh bell is a kind of bell", "pln": ["(: cnet_isa_1587ec4c09 (IsA sleigh_bell bell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slender centaury is a kind of centaury", "pln": ["(: cnet_isa_9f4d12673e (IsA slender_centaury centaury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slender knapweed is a kind of knapweed", "pln": ["(: cnet_isa_326fa58f97 (IsA slender_knapweed knapweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "slender loris is a kind of lemur", "pln": ["(: cnet_isa_297874365e (IsA slender_loris lemur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "slender rush is a kind of rush", "pln": ["(: cnet_isa_02001f5ab6 (IsA slender_rush rush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slender salamander is a kind of salamander", "pln": ["(: cnet_isa_c921b1c25b (IsA slender_salamander salamander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slender tailed meerkat is a kind of meerkat", "pln": ["(: cnet_isa_8ab8831cc0 (IsA slender_tailed_meerkat meerkat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slender wheatgrass is a kind of wheatgrass", "pln": ["(: cnet_isa_9011159f92 (IsA slender_wheatgrass wheatgrass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slender wild oat is a kind of oat", "pln": ["(: cnet_isa_e9b0a67474 (IsA slender_wild_oat oat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slenderness is a kind of insufficiency", "pln": ["(: cnet_isa_ad2a164100 (IsA slenderness insufficiency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slenderness is a kind of leanness", "pln": ["(: cnet_isa_a0245edde6 (IsA slenderness leanness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sleuth is a kind of detective", "pln": ["(: cnet_isa_879ced966b (IsA sleuth detective) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slice is a kind of golf stroke", "pln": ["(: cnet_isa_e19cc6642e (IsA slice golf_stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slice is a kind of spatula", "pln": ["(: cnet_isa_580ad9fb24 (IsA slice spatula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slice is a kind of part", "pln": ["(: cnet_isa_7399e7d98b (IsA slice part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slice is a kind of share", "pln": ["(: cnet_isa_6897f65c80 (IsA slice share) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "slice bar is a kind of bar", "pln": ["(: cnet_isa_92acb35771 (IsA slice_bar bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slicer is a kind of knife", "pln": ["(: cnet_isa_96d969b2bc (IsA slicer knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slicer is a kind of machine", "pln": ["(: cnet_isa_4307e5313c (IsA slicer machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slicer is a kind of golfer", "pln": ["(: cnet_isa_45d8a906b8 (IsA slicer golfer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slicing is a kind of cut", "pln": ["(: cnet_isa_24d0ec2fc8 (IsA slicing cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slick is a kind of film", "pln": ["(: cnet_isa_9e39b2b3ae (IsA slick film) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slick is a kind of trowel", "pln": ["(: cnet_isa_7fa8ca1f70 (IsA slick trowel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slick is a kind of magazine", "pln": ["(: cnet_isa_a11cb0b290 (IsA slick magazine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slicker is a kind of sophisticate", "pln": ["(: cnet_isa_418ad62200 (IsA slicker sophisticate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slickness is a kind of smoothness", "pln": ["(: cnet_isa_a18320eb99 (IsA slickness smoothness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slide is a kind of motion", "pln": ["(: cnet_isa_c977783b82 (IsA slide motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slide is a kind of foil", "pln": ["(: cnet_isa_580d83041e (IsA slide foil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slide is a kind of plate glass", "pln": ["(: cnet_isa_0b55bbf5c3 (IsA slide plate_glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "slide is a kind of plaything", "pln": ["(: cnet_isa_ce09d12013 (IsA slide plaything) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "slide is a kind of descent", "pln": ["(: cnet_isa_2516da7885 (IsA slide descent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slide chart is a kind of chart", "pln": ["(: cnet_isa_14fb160472 (IsA slide_chart chart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slide chart is a kind of device", "pln": ["(: cnet_isa_78e53de062 (IsA slide_chart device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slide fastener is a kind of fastener", "pln": ["(: cnet_isa_d844f74834 (IsA slide_fastener fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slide projector is a kind of projector", "pln": ["(: cnet_isa_041f94447f (IsA slide_projector projector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slide rule is a kind of analog computer", "pln": ["(: cnet_isa_38a712233e (IsA slide_rule analog_computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slide valve is a kind of valve", "pln": ["(: cnet_isa_9019c236c1 (IsA slide_valve valve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slider is a kind of fastball", "pln": ["(: cnet_isa_2c1c5948c2 (IsA slider fastball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "slider is a kind of turtle", "pln": ["(: cnet_isa_6d49272438 (IsA slider turtle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sliding door is a kind of door", "pln": ["(: cnet_isa_051ca68598 (IsA sliding_door door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sliding scale is a kind of wage scale", "pln": ["(: cnet_isa_288605f389 (IsA sliding_scale wage_scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sliding seat is a kind of seat", "pln": ["(: cnet_isa_23003b36ad (IsA sliding_seat seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sliding window is a kind of window", "pln": ["(: cnet_isa_ba6a1f73e6 (IsA sliding_window window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slight care is a kind of care", "pln": ["(: cnet_isa_eb1bf48ec4 (IsA slight_care care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "slime mold is a kind of fungus", "pln": ["(: cnet_isa_d039d4d431 (IsA slime_mold fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slime mushroom is a kind of amanita", "pln": ["(: cnet_isa_38c37bbf44 (IsA slime_mushroom amanita) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sliminess is a kind of viscosity", "pln": ["(: cnet_isa_6ce0385460 (IsA sliminess viscosity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sling is a kind of bandage", "pln": ["(: cnet_isa_31c217f955 (IsA sling bandage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sling is a kind of weapon", "pln": ["(: cnet_isa_efafb9e093 (IsA sling weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sling is a kind of highball", "pln": ["(: cnet_isa_6269dbcd82 (IsA sling highball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slingback is a kind of shoe", "pln": ["(: cnet_isa_1ea9bb05f0 (IsA slingback shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slinger is a kind of thrower", "pln": ["(: cnet_isa_9f4ccd2df3 (IsA slinger thrower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slinger ring is a kind of dispenser", "pln": ["(: cnet_isa_e42b1562e9 (IsA slinger_ring dispenser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slinging is a kind of throw", "pln": ["(: cnet_isa_ada271d4c0 (IsA slinging throw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slingshot is a kind of plaything", "pln": ["(: cnet_isa_c8150940f7 (IsA slingshot plaything) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slinky is a kind of toy", "pln": ["(: cnet_isa_0a70cac774 (IsA slinky toy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "slip is a kind of evasion", "pln": ["(: cnet_isa_035dd9ac68 (IsA slip evasion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slip is a kind of flight maneuver", "pln": ["(: cnet_isa_f9f35da650 (IsA slip flight_maneuver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slip is a kind of mistake", "pln": ["(: cnet_isa_07e895f7c3 (IsA slip mistake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slip is a kind of sheet", "pln": ["(: cnet_isa_863b786e46 (IsA slip sheet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slip is a kind of mishap", "pln": ["(: cnet_isa_c65a23bc01 (IsA slip mishap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slip is a kind of young person", "pln": ["(: cnet_isa_2e909387b8 (IsA slip young_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slip is a kind of potter s clay", "pln": ["(: cnet_isa_08001e78e9 (IsA slip potter_s_clay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slip clutch is a kind of friction clutch", "pln": ["(: cnet_isa_4892548f6e (IsA slip_clutch friction_clutch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slip coach is a kind of car", "pln": ["(: cnet_isa_a8119184ba (IsA slip_coach car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slip joint plier is a kind of plier", "pln": ["(: cnet_isa_bb9191c644 (IsA slip_joint_plier plier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slip of tongue is a kind of misstatement", "pln": ["(: cnet_isa_8eb83b9159 (IsA slip_of_tongue misstatement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slip on is a kind of clothing", "pln": ["(: cnet_isa_2f16109e47 (IsA slip_on clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slip ring is a kind of connection", "pln": ["(: cnet_isa_dbc537140b (IsA slip_ring connection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slip stitch is a kind of embroidery stitch", "pln": ["(: cnet_isa_ca58a8f851 (IsA slip_stitch embroidery_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slipcover is a kind of cloth covering", "pln": ["(: cnet_isa_81d301301b (IsA slipcover cloth_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slipknot is a kind of knot", "pln": ["(: cnet_isa_b42059292c (IsA slipknot knot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slippage is a kind of motion", "pln": ["(: cnet_isa_259037e791 (IsA slippage motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slippage is a kind of decline", "pln": ["(: cnet_isa_2c4e9bccf9 (IsA slippage decline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slippage is a kind of decrease", "pln": ["(: cnet_isa_5ed9bc2adc (IsA slippage decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slipper is a kind of footwear", "pln": ["(: cnet_isa_43b64084ea (IsA slipper footwear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slipper spurge is a kind of shrub", "pln": ["(: cnet_isa_3a9422fe05 (IsA slipper_spurge shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slippery dick is a kind of wrasse", "pln": ["(: cnet_isa_336c5e7bcf (IsA slippery_dick wrasse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slippery elm is a kind of elm", "pln": ["(: cnet_isa_d5bf3eb31d (IsA slippery_elm elm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slipskin grape is a kind of grape", "pln": ["(: cnet_isa_4a9dc5e358 (IsA slipskin_grape grape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slipstream is a kind of flow", "pln": ["(: cnet_isa_a8ed38e417 (IsA slipstream flow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slit is a kind of opening", "pln": ["(: cnet_isa_7611ceaa26 (IsA slit opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slit is a kind of crack", "pln": ["(: cnet_isa_cb9dd510a9 (IsA slit crack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "slit lamp is a kind of electric lamp", "pln": ["(: cnet_isa_6b65e14aa9 (IsA slit_lamp electric_lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slit trench is a kind of trench", "pln": ["(: cnet_isa_fbf6a000ac (IsA slit_trench trench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "slivovitz is a kind of brandy", "pln": ["(: cnet_isa_2c0e4d61f9 (IsA slivovitz brandy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sloanea is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_a19487754c (IsA sloanea dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slob is a kind of vulgarian", "pln": ["(: cnet_isa_6850e18cf6 (IsA slob vulgarian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sloe is a kind of plum", "pln": ["(: cnet_isa_04f2bffebc (IsA sloe plum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sloe gin is a kind of gin", "pln": ["(: cnet_isa_e4828d1855 (IsA sloe_gin gin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sloganeer is a kind of propagandist", "pln": ["(: cnet_isa_19ff26d77b (IsA sloganeer propagandist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sloganeering is a kind of persuasion", "pln": ["(: cnet_isa_db7b8eb828 (IsA sloganeering persuasion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sloop is a kind of sailing vessel", "pln": ["(: cnet_isa_44768fdcd4 (IsA sloop sailing_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sloop of war is a kind of warship", "pln": ["(: cnet_isa_299868490e (IsA sloop_of_war warship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slop is a kind of feed", "pln": ["(: cnet_isa_ab9bc8684e (IsA slop feed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slop is a kind of food", "pln": ["(: cnet_isa_a94290b06d (IsA slop food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slop is a kind of waste", "pln": ["(: cnet_isa_d67a4eaf32 (IsA slop waste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slop basin is a kind of bowl", "pln": ["(: cnet_isa_120d1a2eaf (IsA slop_basin bowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "slop chest is a kind of commissary", "pln": ["(: cnet_isa_457e714e2e (IsA slop_chest commissary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slop pail is a kind of bucket", "pln": ["(: cnet_isa_03fdad0eda (IsA slop_pail bucket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slope is a kind of geological formation", "pln": ["(: cnet_isa_721e2c6f41 (IsA slope geological_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sloppiness is a kind of untidiness", "pln": ["(: cnet_isa_f60ae7d71d (IsA sloppiness untidiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sloppy joe is a kind of sandwich", "pln": ["(: cnet_isa_d552efbfc9 (IsA sloppy_joe sandwich) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slop is a kind of clothing", "pln": ["(: cnet_isa_0f2913498d (IsA slop clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slopseller is a kind of trader", "pln": ["(: cnet_isa_5472a1e81d (IsA slopseller trader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slopshop is a kind of clothing store", "pln": ["(: cnet_isa_b069659bbc (IsA slopshop clothing_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slot is a kind of slit", "pln": ["(: cnet_isa_866aac7ca8 (IsA slot slit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slot is a kind of slot machine", "pln": ["(: cnet_isa_84da5599fe (IsA slot slot_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slot is a kind of position", "pln": ["(: cnet_isa_09a7544424 (IsA slot position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slot is a kind of receptacle", "pln": ["(: cnet_isa_c87f0b46ab (IsA slot receptacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slot is a kind of trail", "pln": ["(: cnet_isa_1c9f35895a (IsA slot trail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slot is a kind of status", "pln": ["(: cnet_isa_5ae7c66c38 (IsA slot status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slot machine is a kind of machine", "pln": ["(: cnet_isa_2a38e957c8 (IsA slot_machine machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sloth is a kind of mortal sin", "pln": ["(: cnet_isa_a9e94647f8 (IsA sloth mortal_sin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sloth is a kind of edentate", "pln": ["(: cnet_isa_795972f2fb (IsA sloth edentate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sloth is a kind of reluctance", "pln": ["(: cnet_isa_efa3559749 (IsA sloth reluctance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sloth bear is a kind of bear", "pln": ["(: cnet_isa_787a9f4a61 (IsA sloth_bear bear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slouch is a kind of carriage", "pln": ["(: cnet_isa_b2ddb85a01 (IsA slouch carriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slouch is a kind of incompetent", "pln": ["(: cnet_isa_0c69d13d9f (IsA slouch incompetent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sloucher is a kind of person", "pln": ["(: cnet_isa_f23a7940e8 (IsA sloucher person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "slough is a kind of bog", "pln": ["(: cnet_isa_82dd486a66 (IsA slough bog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slough is a kind of covering", "pln": ["(: cnet_isa_513343d56e (IsA slough covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slough is a kind of swamp", "pln": ["(: cnet_isa_8bf6451473 (IsA slough swamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "slough of despond is a kind of depression", "pln": ["(: cnet_isa_6a090750d2 (IsA slough_of_despond depression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slovak is a kind of slavic", "pln": ["(: cnet_isa_2456c93a4f (IsA slovak slavic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slovak is a kind of european", "pln": ["(: cnet_isa_4732bfe704 (IsA slovak european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slovakian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_3bb036e740 (IsA slovakian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slovene is a kind of slavic", "pln": ["(: cnet_isa_beab5e9d42 (IsA slovene slavic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slovene is a kind of european", "pln": ["(: cnet_isa_557c756ea3 (IsA slovene european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "slovenian is a kind of european", "pln": ["(: cnet_isa_0d4519ec74 (IsA slovenian european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slovenliness is a kind of uncleanliness", "pln": ["(: cnet_isa_d77ad8bbb9 (IsA slovenliness uncleanliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slow lane is a kind of traffic lane", "pln": ["(: cnet_isa_9fcf6cbd41 (IsA slow_lane traffic_lane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slow loris is a kind of lemur", "pln": ["(: cnet_isa_e08dbd8326 (IsA slow_loris lemur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slow match is a kind of match", "pln": ["(: cnet_isa_b5953c2932 (IsA slow_match match) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slow motion is a kind of movie", "pln": ["(: cnet_isa_e91f262d19 (IsA slow_motion movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slow virus is a kind of virus", "pln": ["(: cnet_isa_98badb3936 (IsA slow_virus virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slowdown is a kind of delay", "pln": ["(: cnet_isa_b944b2fdf0 (IsA slowdown delay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slowness is a kind of pace", "pln": ["(: cnet_isa_56ff69d8ec (IsA slowness pace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slub is a kind of roughness", "pln": ["(: cnet_isa_a11d02d8ed (IsA slub roughness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sludge is a kind of precipitate", "pln": ["(: cnet_isa_60e2fb9768 (IsA sludge precipitate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sludge is a kind of substance", "pln": ["(: cnet_isa_86a50ec9b8 (IsA sludge substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slug is a kind of gastropod", "pln": ["(: cnet_isa_6a3757d293 (IsA slug gastropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "slug is a kind of alcohol", "pln": ["(: cnet_isa_99844492a9 (IsA slug alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slug is a kind of coin", "pln": ["(: cnet_isa_a8694a116a (IsA slug coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "slug is a kind of mass unit", "pln": ["(: cnet_isa_cf25c16a35 (IsA slug mass_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sluggard is a kind of idler", "pln": ["(: cnet_isa_f7518ef288 (IsA sluggard idler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slugger is a kind of boxer", "pln": ["(: cnet_isa_df85ef7451 (IsA slugger boxer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sluggishness is a kind of pace", "pln": ["(: cnet_isa_8a7bfee6d7 (IsA sluggishness pace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sluice is a kind of conduit", "pln": ["(: cnet_isa_e5a63127ac (IsA sluice conduit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sluicegate is a kind of regulator", "pln": ["(: cnet_isa_a424d8d150 (IsA sluicegate regulator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slum is a kind of city district", "pln": ["(: cnet_isa_d6584935fd (IsA slum city_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slumber is a kind of dormancy", "pln": ["(: cnet_isa_81f3123ee3 (IsA slumber dormancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slumber party is a kind of party", "pln": ["(: cnet_isa_c22d9305dd (IsA slumber_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slumgullion is a kind of stew", "pln": ["(: cnet_isa_de43f7ba94 (IsA slumgullion stew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slump is a kind of deterioration", "pln": ["(: cnet_isa_73e2720296 (IsA slump deterioration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slur is a kind of musical notation", "pln": ["(: cnet_isa_92346c538e (IsA slur musical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slurry is a kind of suspension", "pln": ["(: cnet_isa_7f17e418c8 (IsA slurry suspension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "slush is a kind of water", "pln": ["(: cnet_isa_bc24e82eb1 (IsA slush water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slush fund is a kind of fund", "pln": ["(: cnet_isa_23c6103936 (IsA slush_fund fund) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "slut is a kind of person", "pln": ["(: cnet_isa_059f4a83e5 (IsA slut person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smack is a kind of blow", "pln": ["(: cnet_isa_746ada8abe (IsA smack blow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "smack is a kind of kiss", "pln": ["(: cnet_isa_f7b8c681d6 (IsA smack kiss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smack is a kind of sailing vessel", "pln": ["(: cnet_isa_328595615a (IsA smack sailing_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smacker is a kind of blow", "pln": ["(: cnet_isa_deb2235da5 (IsA smacker blow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smacker is a kind of smack", "pln": ["(: cnet_isa_9c7fa5796e (IsA smacker smack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "small is a kind of size", "pln": ["(: cnet_isa_501eacb3b0 (IsA small size) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "small is a kind of body part", "pln": ["(: cnet_isa_e737fe2859 (IsA small body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "small boat is a kind of boat", "pln": ["(: cnet_isa_fdb27bfbd8 (IsA small_boat boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "small business administration is a kind of independent agency", "pln": ["(: cnet_isa_be576893b0 (IsA small_business_administration independent_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "small businessman is a kind of businessman", "pln": ["(: cnet_isa_be2e236834 (IsA small_businessman businessman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "small cane is a kind of bamboo", "pln": ["(: cnet_isa_dd4e8594b6 (IsA small_cane bamboo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "small cap is a kind of corporation", "pln": ["(: cnet_isa_b3ec14bd24 (IsA small_cap corporation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "small capital is a kind of capital", "pln": ["(: cnet_isa_6465cd65fc (IsA small_capital capital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "small change is a kind of cash", "pln": ["(: cnet_isa_a860e408b7 (IsA small_change cash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "small civet is a kind of civet", "pln": ["(: cnet_isa_9209b1d85f (IsA small_civet civet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "small computer system interface is a kind of interface", "pln": ["(: cnet_isa_3a03792113 (IsA small_computer_system_interface interface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "small farmer is a kind of farmer", "pln": ["(: cnet_isa_c90aca3698 (IsA small_farmer farmer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "small for gestational age infant is a kind of neonate", "pln": ["(: cnet_isa_4daca60b15 (IsA small_for_gestational_age_infant neonate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "small fortune is a kind of large indefinite quantity", "pln": ["(: cnet_isa_2d7c9ad42c (IsA small_fortune large_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "small hour is a kind of hour", "pln": ["(: cnet_isa_349238d170 (IsA small_hour hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "small indefinite quantity is a kind of indefinite quantity", "pln": ["(: cnet_isa_f99423d304 (IsA small_indefinite_quantity indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "small intestine is a kind of intestine", "pln": ["(: cnet_isa_642f9f7374 (IsA small_intestine intestine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "small leaved linden is a kind of linden", "pln": ["(: cnet_isa_f6b397ed54 (IsA small_leaved_linden linden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "small letter is a kind of character", "pln": ["(: cnet_isa_73de2733f2 (IsA small_letter character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "small magellanic cloud is a kind of magellanic cloud", "pln": ["(: cnet_isa_d76cc12d49 (IsA small_magellanic_cloud magellanic_cloud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "small particle pollution is a kind of air pollution", "pln": ["(: cnet_isa_9b27cab678 (IsA small_particle_pollution air_pollution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "small person is a kind of person", "pln": ["(: cnet_isa_94ca1ff2d8 (IsA small_person person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "small print is a kind of print", "pln": ["(: cnet_isa_abd39d040a (IsA small_print print) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "small ship is a kind of ship", "pln": ["(: cnet_isa_27b948c430 (IsA small_ship ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "small store is a kind of commissary", "pln": ["(: cnet_isa_42f8eed332 (IsA small_store commissary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "small stuff is a kind of rope", "pln": ["(: cnet_isa_bf1e46ade7 (IsA small_stuff rope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "small white is a kind of cabbage butterfly", "pln": ["(: cnet_isa_384012d80e (IsA small_white cabbage_butterfly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "small white aster is a kind of aster", "pln": ["(: cnet_isa_9c0598e994 (IsA small_white_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smalleye hammerhead is a kind of hammerhead", "pln": ["(: cnet_isa_46efbb8b95 (IsA smalleye_hammerhead hammerhead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smallholder is a kind of farmer", "pln": ["(: cnet_isa_7be324d28b (IsA smallholder farmer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smallholding is a kind of estate", "pln": ["(: cnet_isa_009e8583d4 (IsA smallholding estate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smallmouth is a kind of black bass", "pln": ["(: cnet_isa_e06b59d0b8 (IsA smallmouth black_bass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smallmouth bass is a kind of freshwater bass", "pln": ["(: cnet_isa_acb2bedf12 (IsA smallmouth_bass freshwater_bass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "smallness is a kind of amount", "pln": ["(: cnet_isa_330161b5d5 (IsA smallness amount) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smallness is a kind of size", "pln": ["(: cnet_isa_387f4fb960 (IsA smallness size) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "smallpox is a kind of pox", "pln": ["(: cnet_isa_bb91fa786e (IsA smallpox pox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smalltooth sawfish is a kind of sawfish", "pln": ["(: cnet_isa_bd116e35c5 (IsA smalltooth_sawfish sawfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smaltite is a kind of mineral", "pln": ["(: cnet_isa_7b92bb4599 (IsA smaltite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "smart is a kind of pain", "pln": ["(: cnet_isa_675af8a35b (IsA smart pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smart bomb is a kind of bomb", "pln": ["(: cnet_isa_2b045b3f91 (IsA smart_bomb bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smart card is a kind of open end credit", "pln": ["(: cnet_isa_854e87795e (IsA smart_card open_end_credit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smart card is a kind of positive identification", "pln": ["(: cnet_isa_af12c8bf44 (IsA smart_card positive_identification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smart money is a kind of people", "pln": ["(: cnet_isa_d3ac3959b4 (IsA smart_money people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smart money is a kind of speculation", "pln": ["(: cnet_isa_3ff4422a70 (IsA smart_money speculation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smarta is a kind of brahman", "pln": ["(: cnet_isa_6ac8f24f7c (IsA smarta brahman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smash is a kind of collision", "pln": ["(: cnet_isa_ab8ef44047 (IsA smash collision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smasher is a kind of person", "pln": ["(: cnet_isa_2318c6dbb5 (IsA smasher person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smasher is a kind of woman", "pln": ["(: cnet_isa_4a614c6681 (IsA smasher woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smashing is a kind of breakage", "pln": ["(: cnet_isa_4954d9d252 (IsA smashing breakage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smattering is a kind of understanding", "pln": ["(: cnet_isa_af216dcd3b (IsA smattering understanding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smear is a kind of cytologic specimen", "pln": ["(: cnet_isa_21065e11fc (IsA smear cytologic_specimen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smear is a kind of defamation", "pln": ["(: cnet_isa_ad1c9714cc (IsA smear defamation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smear word is a kind of name", "pln": ["(: cnet_isa_01dfb830a3 (IsA smear_word name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smegma is a kind of sebum", "pln": ["(: cnet_isa_616cd66b87 (IsA smegma sebum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smell is a kind of important sense", "pln": ["(: cnet_isa_0370bb3379 (IsA smell important_sense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smell is a kind of sensing", "pln": ["(: cnet_isa_3508c69176 (IsA smell sensing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smell is a kind of exteroception", "pln": ["(: cnet_isa_ac3e97392d (IsA smell exteroception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smell is a kind of modality", "pln": ["(: cnet_isa_21a955d036 (IsA smell modality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smell is a kind of sensation", "pln": ["(: cnet_isa_d8d4b51611 (IsA smell sensation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smelling bottle is a kind of bottle", "pln": ["(: cnet_isa_585ce8daa7 (IsA smelling_bottle bottle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smelling salt is a kind of formulation", "pln": ["(: cnet_isa_3ec69d6cf5 (IsA smelling_salt formulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smelt is a kind of soft finned fish", "pln": ["(: cnet_isa_79b931543a (IsA smelt soft_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smelt is a kind of fish", "pln": ["(: cnet_isa_fa3ac65023 (IsA smelt fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smelter is a kind of plant", "pln": ["(: cnet_isa_0e2ce83d3a (IsA smelter plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smew is a kind of merganser", "pln": ["(: cnet_isa_1b945dec07 (IsA smew merganser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smilacaceae is a kind of liliid monocot family", "pln": ["(: cnet_isa_e5294fa885 (IsA smilacaceae liliid_monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smilax is a kind of liliid monocot genus", "pln": ["(: cnet_isa_2e74cd6b63 (IsA smilax liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "smilax is a kind of vine", "pln": ["(: cnet_isa_c2ffa2235a (IsA smilax vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smile is a kind of facial expression", "pln": ["(: cnet_isa_742f4aa3f7 (IsA smile facial_expression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smiledon is a kind of mammal genus", "pln": ["(: cnet_isa_a4e0c8e03e (IsA smiledon mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smiledon californicus is a kind of saber toothed tiger", "pln": ["(: cnet_isa_351a9449db (IsA smiledon_californicus saber_toothed_tiger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smiler is a kind of person", "pln": ["(: cnet_isa_3dc2d3abc7 (IsA smiler person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smiley is a kind of emoticon", "pln": ["(: cnet_isa_1abb33d175 (IsA smiley emoticon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smilo is a kind of ricegrass", "pln": ["(: cnet_isa_f64b5a7f10 (IsA smilo ricegrass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smirk is a kind of smile", "pln": ["(: cnet_isa_0eda955baf (IsA smirk smile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smirker is a kind of smiler", "pln": ["(: cnet_isa_7255673983 (IsA smirker smiler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "smirnoff is a kind of vodka", "pln": ["(: cnet_isa_b671762264 (IsA smirnoff vodka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smitane is a kind of sauce", "pln": ["(: cnet_isa_289cb5ec9d (IsA smitane sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smith is a kind of skilled worker", "pln": ["(: cnet_isa_9a66d91013 (IsA smith skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smithereen is a kind of collection", "pln": ["(: cnet_isa_6447e291e3 (IsA smithereen collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smocking is a kind of embroidery", "pln": ["(: cnet_isa_6b48425270 (IsA smocking embroidery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smog is a kind of polluted air", "pln": ["(: cnet_isa_07e33c82a0 (IsA smog polluted_air) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smog is a kind of air pollution", "pln": ["(: cnet_isa_a1064c858e (IsA smog air_pollution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smog in city is a kind of increasing health hazard", "pln": ["(: cnet_isa_856abedef7 (IsA smog_in_city increasing_health_hazard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smoke is a kind of breathing", "pln": ["(: cnet_isa_3de2bdbf2c (IsA smoke breathing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smoke is a kind of insubstantiality", "pln": ["(: cnet_isa_b859a3d1da (IsA smoke insubstantiality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smoke is a kind of indication", "pln": ["(: cnet_isa_29388159e6 (IsA smoke indication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smoke is a kind of aerosol", "pln": ["(: cnet_isa_3669e5a207 (IsA smoke aerosol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smoke is a kind of vaporization", "pln": ["(: cnet_isa_e9760e0458 (IsA smoke vaporization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smoke bomb is a kind of bomb", "pln": ["(: cnet_isa_a0269f56e5 (IsA smoke_bomb bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smoke bush is a kind of shrub", "pln": ["(: cnet_isa_dfe48f2953 (IsA smoke_bush shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smoke hole is a kind of vent", "pln": ["(: cnet_isa_009fef1db6 (IsA smoke_hole vent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smoke screen is a kind of concealment", "pln": ["(: cnet_isa_9a2c4720b6 (IsA smoke_screen concealment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smoke screen is a kind of screen", "pln": ["(: cnet_isa_312da19798 (IsA smoke_screen screen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smoke tree is a kind of shrub", "pln": ["(: cnet_isa_ff3d803d3b (IsA smoke_tree shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smoked eel is a kind of eel", "pln": ["(: cnet_isa_0c24aed9a7 (IsA smoked_eel eel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smoked mackerel is a kind of mackerel", "pln": ["(: cnet_isa_f8a435e495 (IsA smoked_mackerel mackerel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "smoked salmon is a kind of salmon", "pln": ["(: cnet_isa_37923a73ec (IsA smoked_salmon salmon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "smokehouse is a kind of house", "pln": ["(: cnet_isa_7bec01bdf4 (IsA smokehouse house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "smoker is a kind of passenger car", "pln": ["(: cnet_isa_325ce1b3b6 (IsA smoker passenger_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smoker is a kind of consumer", "pln": ["(: cnet_isa_beed841781 (IsA smoker consumer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smokestack is a kind of chimney", "pln": ["(: cnet_isa_d0246a62ca (IsA smokestack chimney) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smoking is a kind of bad habit", "pln": ["(: cnet_isa_c30b0fe031 (IsA smoking bad_habit) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smoking is a kind of expensive habit", "pln": ["(: cnet_isa_395792854b (IsA smoking expensive_habit) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smoking gun is a kind of evidence", "pln": ["(: cnet_isa_771460e282 (IsA smoking_gun evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smoking mixture is a kind of tobacco", "pln": ["(: cnet_isa_547fcce573 (IsA smoking_mixture tobacco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "smoking room is a kind of room", "pln": ["(: cnet_isa_6055359a26 (IsA smoking_room room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smooth is a kind of accomplishment", "pln": ["(: cnet_isa_22eeb7bb62 (IsA smooth accomplishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smooth alder is a kind of alder", "pln": ["(: cnet_isa_06c80a35b2 (IsA smooth_alder alder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smooth aster is a kind of aster", "pln": ["(: cnet_isa_1ceac48061 (IsA smooth_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smooth crabgrass is a kind of crabgrass", "pln": ["(: cnet_isa_62ded34c19 (IsA smooth_crabgrass crabgrass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smooth darling pea is a kind of darling pea", "pln": ["(: cnet_isa_2f070720d6 (IsA smooth_darling_pea darling_pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smooth dogfish is a kind of dogfish", "pln": ["(: cnet_isa_84f809d9c0 (IsA smooth_dogfish dogfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smooth green snake is a kind of green snake", "pln": ["(: cnet_isa_604f8733ae (IsA smooth_green_snake green_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smooth haired fox terrier is a kind of fox terrier", "pln": ["(: cnet_isa_4a83f71e96 (IsA smooth_haired_fox_terrier fox_terrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smooth hammerhead is a kind of hammerhead", "pln": ["(: cnet_isa_23240a5412 (IsA smooth_hammerhead hammerhead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smooth leaved elm is a kind of elm", "pln": ["(: cnet_isa_1219ea56c6 (IsA smooth_leaved_elm elm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smooth lip fern is a kind of lip fern", "pln": ["(: cnet_isa_6fdaba2439 (IsA smooth_lip_fern lip_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smooth muscle is a kind of muscle", "pln": ["(: cnet_isa_6c878fd6da (IsA smooth_muscle muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smooth muscle cell is a kind of muscle cell", "pln": ["(: cnet_isa_c733321805 (IsA smooth_muscle_cell muscle_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "smooth plane is a kind of plane", "pln": ["(: cnet_isa_8b6b395314 (IsA smooth_plane plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smooth softshell is a kind of soft shelled turtle", "pln": ["(: cnet_isa_61d491bbfd (IsA smooth_softshell soft_shelled_turtle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smooth sumac is a kind of sumac", "pln": ["(: cnet_isa_f8a2f5964e (IsA smooth_sumac sumac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smooth winterberry holly is a kind of holly", "pln": ["(: cnet_isa_1006111f11 (IsA smooth_winterberry_holly holly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "smooth woodsia is a kind of woodsia", "pln": ["(: cnet_isa_87e3e280c6 (IsA smooth_woodsia woodsia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smoothbark is a kind of eucalyptus", "pln": ["(: cnet_isa_e58308210b (IsA smoothbark eucalyptus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "smoothbore is a kind of firearm", "pln": ["(: cnet_isa_56f3318173 (IsA smoothbore firearm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smoothhound is a kind of smooth dogfish", "pln": ["(: cnet_isa_49e15ec50d (IsA smoothhound smooth_dogfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smoothie is a kind of beverage", "pln": ["(: cnet_isa_23897714c2 (IsA smoothie beverage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "smoothie is a kind of hypocrite", "pln": ["(: cnet_isa_2064b56925 (IsA smoothie hypocrite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smoothness is a kind of effortlessness", "pln": ["(: cnet_isa_6c6b87b73a (IsA smoothness effortlessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smoothness is a kind of evenness", "pln": ["(: cnet_isa_8425ab39d2 (IsA smoothness evenness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "smoothness is a kind of texture", "pln": ["(: cnet_isa_5aa4edaec9 (IsA smoothness texture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smorgasbord is a kind of buffet", "pln": ["(: cnet_isa_e96b007a65 (IsA smorgasbord buffet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smother is a kind of smoke", "pln": ["(: cnet_isa_6c0b375a95 (IsA smother smoke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smoulder is a kind of fire", "pln": ["(: cnet_isa_3bb6558a24 (IsA smoulder fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smtp is a kind of protocol", "pln": ["(: cnet_isa_4612ff797f (IsA smtp protocol) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smudge is a kind of blemish", "pln": ["(: cnet_isa_2e973c440a (IsA smudge blemish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smudge is a kind of fire", "pln": ["(: cnet_isa_9d65dd4070 (IsA smudge fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smuggler is a kind of criminal", "pln": ["(: cnet_isa_1c58f25d86 (IsA smuggler criminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smuggling is a kind of importing", "pln": ["(: cnet_isa_222eef6a91 (IsA smuggling importing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smugness is a kind of complacency", "pln": ["(: cnet_isa_1231fceeb6 (IsA smugness complacency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smut is a kind of fungus", "pln": ["(: cnet_isa_a52e94bf23 (IsA smut fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smut is a kind of plant disease", "pln": ["(: cnet_isa_f552d2365b (IsA smut plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smut grass is a kind of dropseed", "pln": ["(: cnet_isa_8e61f74135 (IsA smut_grass dropseed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smuttiness is a kind of obscenity", "pln": ["(: cnet_isa_c469f6bbb2 (IsA smuttiness obscenity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smuttiness is a kind of dirtiness", "pln": ["(: cnet_isa_9c716c618d (IsA smuttiness dirtiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "smyrnium is a kind of rosid dicot genus", "pln": ["(: cnet_isa_b5f57df5b3 (IsA smyrnium rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snack bar is a kind of bar", "pln": ["(: cnet_isa_6a2b6d17b5 (IsA snack_bar bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snack food is a kind of dish", "pln": ["(: cnet_isa_47d9c0214f (IsA snack_food dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snaffle is a kind of bit", "pln": ["(: cnet_isa_63865a4a49 (IsA snaffle bit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snafu is a kind of blunder", "pln": ["(: cnet_isa_94615ecfcc (IsA snafu blunder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snag is a kind of tree", "pln": ["(: cnet_isa_9499c699e7 (IsA snag tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snag is a kind of bulge", "pln": ["(: cnet_isa_fae36eb82a (IsA snag bulge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snail is a kind of gastropod", "pln": ["(: cnet_isa_b7f0853e4d (IsA snail gastropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snail butter is a kind of sauce", "pln": ["(: cnet_isa_2203aa4abc (IsA snail_butter sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snail darter is a kind of perch", "pln": ["(: cnet_isa_2db7c8f388 (IsA snail_darter perch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snail mail is a kind of mail", "pln": ["(: cnet_isa_224c02ddd0 (IsA snail_mail mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snailfish is a kind of scorpaenoid", "pln": ["(: cnet_isa_51ec46659a (IsA snailfish scorpaenoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snailflower is a kind of legume", "pln": ["(: cnet_isa_62fe455ef4 (IsA snailflower legume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snail is a kind of hermaphrodite", "pln": ["(: cnet_isa_78ebbfbb89 (IsA snail hermaphrodite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snake s head fritillary is a kind of fritillary", "pln": ["(: cnet_isa_89dd714de8 (IsA snake_s_head_fritillary fritillary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snake is a kind of diapsid", "pln": ["(: cnet_isa_7db61589a8 (IsA snake diapsid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snake is a kind of bad person", "pln": ["(: cnet_isa_9f2cbf9953 (IsA snake bad_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snake and skunk is a kind of both animal", "pln": ["(: cnet_isa_f2cf845a61 (IsA snake_and_skunk both_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snake charmer is a kind of performer", "pln": ["(: cnet_isa_32f7c6aaf1 (IsA snake_charmer performer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snake dance is a kind of ritual dancing", "pln": ["(: cnet_isa_a4a563dc93 (IsA snake_dance ritual_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snake dance is a kind of file", "pln": ["(: cnet_isa_25af49a0d6 (IsA snake_dance file) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "snake mackerel is a kind of gempylid", "pln": ["(: cnet_isa_489b648626 (IsA snake_mackerel gempylid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snake muishond is a kind of muishond", "pln": ["(: cnet_isa_354a0652a4 (IsA snake_muishond muishond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snake oil is a kind of liquid", "pln": ["(: cnet_isa_2193821282 (IsA snake_oil liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snake polypody is a kind of fern", "pln": ["(: cnet_isa_b22a10ce64 (IsA snake_polypody fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snake venom is a kind of venom", "pln": ["(: cnet_isa_b9ecc772d4 (IsA snake_venom venom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snakebird is a kind of pelecaniform seabird", "pln": ["(: cnet_isa_292ad7b354 (IsA snakebird pelecaniform_seabird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snakebite is a kind of bite", "pln": ["(: cnet_isa_0b64fa32dd (IsA snakebite bite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "snakeblenny is a kind of prickleback", "pln": ["(: cnet_isa_9fcbf2b943 (IsA snakeblenny prickleback) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snakefly is a kind of neuropteron", "pln": ["(: cnet_isa_bca730da4c (IsA snakefly neuropteron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snake and ladder is a kind of board game", "pln": ["(: cnet_isa_71156c8bee (IsA snake_and_ladder board_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snakewood is a kind of rauwolfia", "pln": ["(: cnet_isa_d76e680f33 (IsA snakewood rauwolfia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snap is a kind of motion", "pln": ["(: cnet_isa_d1426ab9ca (IsA snap motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snap is a kind of fastener", "pln": ["(: cnet_isa_d8ecbedfec (IsA snap fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snap is a kind of break", "pln": ["(: cnet_isa_0ac8f36f6e (IsA snap break) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snap is a kind of noise", "pln": ["(: cnet_isa_0f9917d84d (IsA snap noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snap is a kind of while", "pln": ["(: cnet_isa_77dc14840b (IsA snap while) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snap bean is a kind of green bean", "pln": ["(: cnet_isa_1ad4ddc36f (IsA snap_bean green_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snap brim is a kind of brim", "pln": ["(: cnet_isa_7dc25c16d3 (IsA snap_brim brim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snap brim hat is a kind of hat", "pln": ["(: cnet_isa_ea98ed6ecb (IsA snap_brim_hat hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snap roll is a kind of roll", "pln": ["(: cnet_isa_7b5983a24d (IsA snap_roll roll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snapdragon is a kind of flower", "pln": ["(: cnet_isa_a45c6d128e (IsA snapdragon flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snapper is a kind of food fish", "pln": ["(: cnet_isa_45eadb6643 (IsA snapper food_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snapper is a kind of percoid fish", "pln": ["(: cnet_isa_d6bbb9f1d0 (IsA snapper percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snapper is a kind of sparid", "pln": ["(: cnet_isa_20a60e8ceb (IsA snapper sparid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snapper is a kind of saltwater fish", "pln": ["(: cnet_isa_fe0a74ffea (IsA snapper saltwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snapping shrimp is a kind of shrimp", "pln": ["(: cnet_isa_e77fad2bf9 (IsA snapping_shrimp shrimp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snapping turtle is a kind of turtle", "pln": ["(: cnet_isa_6182637f87 (IsA snapping_turtle turtle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snapshot is a kind of picture", "pln": ["(: cnet_isa_b83e8add40 (IsA snapshot picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snapshot program is a kind of trace program", "pln": ["(: cnet_isa_372e5f2912 (IsA snapshot_program trace_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snare is a kind of string", "pln": ["(: cnet_isa_9e73f7e430 (IsA snare string) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snare is a kind of surgical instrument", "pln": ["(: cnet_isa_9ca7864db9 (IsA snare surgical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snare is a kind of trap", "pln": ["(: cnet_isa_513369e561 (IsA snare trap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snare drum is a kind of musical instrument", "pln": ["(: cnet_isa_91d9538188 (IsA snare_drum musical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snare drum is a kind of drum", "pln": ["(: cnet_isa_4ddf881188 (IsA snare_drum drum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snarer is a kind of hunter", "pln": ["(: cnet_isa_b196b3e753 (IsA snarer hunter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snarl is a kind of facial expression", "pln": ["(: cnet_isa_c4836c9384 (IsA snarl facial_expression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "snarl is a kind of utterance", "pln": ["(: cnet_isa_84c470555b (IsA snarl utterance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snatch is a kind of weightlifting", "pln": ["(: cnet_isa_098cb970b2 (IsA snatch weightlifting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snatch is a kind of fragment", "pln": ["(: cnet_isa_d34b68e28e (IsA snatch fragment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snatch block is a kind of fairlead", "pln": ["(: cnet_isa_264c9ff0dc (IsA snatch_block fairlead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snatcher is a kind of thief", "pln": ["(: cnet_isa_88de4d19ba (IsA snatcher thief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sneak is a kind of unpleasant person", "pln": ["(: cnet_isa_18c1277a56 (IsA sneak unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sneak preview is a kind of preview", "pln": ["(: cnet_isa_88c7637903 (IsA sneak_preview preview) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sneak thief is a kind of thief", "pln": ["(: cnet_isa_cee67d51db (IsA sneak_thief thief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sneer is a kind of contempt", "pln": ["(: cnet_isa_21a9d9906b (IsA sneer contempt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sneerer is a kind of unpleasant person", "pln": ["(: cnet_isa_5d9489fedd (IsA sneerer unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sneeze is a kind of reflex", "pln": ["(: cnet_isa_fafdf49bc6 (IsA sneeze reflex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sneeze is a kind of symptom", "pln": ["(: cnet_isa_4d3710df0c (IsA sneeze symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sneezer is a kind of person", "pln": ["(: cnet_isa_d35204a98b (IsA sneezer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sneezeweed is a kind of herb", "pln": ["(: cnet_isa_c337c62d60 (IsA sneezeweed herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sneezeweed yarrow is a kind of achillea", "pln": ["(: cnet_isa_405d29ef18 (IsA sneezeweed_yarrow achillea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snellen chart is a kind of display", "pln": ["(: cnet_isa_536a89608c (IsA snellen_chart display) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snellen test is a kind of test", "pln": ["(: cnet_isa_5054a062e4 (IsA snellen_test test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snick is a kind of contact", "pln": ["(: cnet_isa_8e81ccecb3 (IsA snick contact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snicker is a kind of laugh", "pln": ["(: cnet_isa_983ef39e2e (IsA snicker laugh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sniff is a kind of smell", "pln": ["(: cnet_isa_a8b8563bd0 (IsA sniff smell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sniffer is a kind of person", "pln": ["(: cnet_isa_47f0c5dcc3 (IsA sniffer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sniffler is a kind of person", "pln": ["(: cnet_isa_486bc6a475 (IsA sniffler person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snifter is a kind of glass", "pln": ["(: cnet_isa_73cc512038 (IsA snifter glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "snip is a kind of piece", "pln": ["(: cnet_isa_d9d1692cea (IsA snip piece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snipe is a kind of gunfire", "pln": ["(: cnet_isa_fa24e371f6 (IsA snipe gunfire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snipe is a kind of shorebird", "pln": ["(: cnet_isa_b2ea2790f5 (IsA snipe shorebird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snipe hunt is a kind of practical joke", "pln": ["(: cnet_isa_6073f37624 (IsA snipe_hunt practical_joke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snipefish is a kind of teleost fish", "pln": ["(: cnet_isa_f8817134d9 (IsA snipefish teleost_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sniper is a kind of marksman", "pln": ["(: cnet_isa_89fcad0744 (IsA sniper marksman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sniper rifle is a kind of rifle", "pln": ["(: cnet_isa_3dfdc9fb3a (IsA sniper_rifle rifle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snip is a kind of shear", "pln": ["(: cnet_isa_be49b9ea3b (IsA snip shear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "snit is a kind of irritation", "pln": ["(: cnet_isa_e6fed6a182 (IsA snit irritation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snivel is a kind of crying", "pln": ["(: cnet_isa_7534a33284 (IsA snivel crying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snob is a kind of unpleasant person", "pln": ["(: cnet_isa_999701aa82 (IsA snob unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snobbery is a kind of arrogance", "pln": ["(: cnet_isa_084358aa58 (IsA snobbery arrogance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snogging is a kind of caressing", "pln": ["(: cnet_isa_d8df5f9459 (IsA snogging caressing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snood is a kind of net", "pln": ["(: cnet_isa_62a1cee9df (IsA snood net) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snook is a kind of robalo", "pln": ["(: cnet_isa_666debc6e3 (IsA snook robalo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snooker is a kind of pool", "pln": ["(: cnet_isa_ec63db7d5f (IsA snooker pool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snoop is a kind of spy", "pln": ["(: cnet_isa_c9b618ec6a (IsA snoop spy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snootiness is a kind of quality", "pln": ["(: cnet_isa_2488bf5c39 (IsA snootiness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snore is a kind of breathing", "pln": ["(: cnet_isa_deacba1755 (IsA snore breathing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snore is a kind of noise", "pln": ["(: cnet_isa_5222635501 (IsA snore noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snorer is a kind of sleeper", "pln": ["(: cnet_isa_4ef61e896a (IsA snorer sleeper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snorkel is a kind of air passage", "pln": ["(: cnet_isa_82376616d3 (IsA snorkel air_passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "snorkel is a kind of breathing device", "pln": ["(: cnet_isa_0d8e9c3257 (IsA snorkel breathing_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snorkeling is a kind of skin diving", "pln": ["(: cnet_isa_e78d7b754f (IsA snorkeling skin_diving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snorter is a kind of thing", "pln": ["(: cnet_isa_dbc9ab2578 (IsA snorter thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snorter is a kind of difficulty", "pln": ["(: cnet_isa_8e52a24158 (IsA snorter difficulty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snorter is a kind of unpleasant person", "pln": ["(: cnet_isa_1623b41c52 (IsA snorter unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snot is a kind of mucus", "pln": ["(: cnet_isa_204b18ee1e (IsA snot mucus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snout is a kind of nose", "pln": ["(: cnet_isa_c6403cb09c (IsA snout nose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "snout beetle is a kind of weevil", "pln": ["(: cnet_isa_32e9c21d3c (IsA snout_beetle weevil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "snow is a kind of crystalized water", "pln": ["(: cnet_isa_d7d62ee53f (IsA snow crystalized_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snow is a kind of crystallized water", "pln": ["(: cnet_isa_fa599c1285 (IsA snow crystallized_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snow is a kind of frozen water", "pln": ["(: cnet_isa_912b7e3194 (IsA snow frozen_water) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snow is a kind of water", "pln": ["(: cnet_isa_f41280bf83 (IsA snow water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snow is a kind of precipitation", "pln": ["(: cnet_isa_765b41a0ea (IsA snow precipitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snow is a kind of layer", "pln": ["(: cnet_isa_02b39c6f6a (IsA snow layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "snow bunting is a kind of bunting", "pln": ["(: cnet_isa_1d4766c804 (IsA snow_bunting bunting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "snow goose is a kind of blue goose", "pln": ["(: cnet_isa_d5c21ae3c6 (IsA snow_goose blue_goose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snow gum is a kind of eucalyptus", "pln": ["(: cnet_isa_126e92408c (IsA snow_gum eucalyptus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snow in summer is a kind of mouse ear chickweed", "pln": ["(: cnet_isa_d224fdb0cd (IsA snow_in_summer mouse_ear_chickweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snow job is a kind of misrepresentation", "pln": ["(: cnet_isa_b2a49af0c0 (IsA snow_job misrepresentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snow leopard is a kind of operating system", "pln": ["(: cnet_isa_18acc313ab (IsA snow_leopard operating_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snow leopard is a kind of big cat", "pln": ["(: cnet_isa_59f6e2f805 (IsA snow_leopard big_cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "snow line is a kind of line", "pln": ["(: cnet_isa_52c74a22eb (IsA snow_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snow mushroom is a kind of jelly fungus", "pln": ["(: cnet_isa_71687a9519 (IsA snow_mushroom jelly_fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snow on mountain is a kind of spurge", "pln": ["(: cnet_isa_51ace1706f (IsA snow_on_mountain spurge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snow pea is a kind of green pea", "pln": ["(: cnet_isa_fe6e254987 (IsA snow_pea green_pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snow pea is a kind of edible pod pea", "pln": ["(: cnet_isa_86bbb4be9d (IsA snow_pea edible_pod_pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snow plant is a kind of wildflower", "pln": ["(: cnet_isa_aedfc61dfc (IsA snow_plant wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snow thrower is a kind of machine", "pln": ["(: cnet_isa_ed8bd0f7cb (IsA snow_thrower machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snow tire is a kind of pneumatic tire", "pln": ["(: cnet_isa_a8d8705ae6 (IsA snow_tire pneumatic_tire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snowball is a kind of ball", "pln": ["(: cnet_isa_caa9143603 (IsA snowball ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snowball is a kind of frozen dessert", "pln": ["(: cnet_isa_5d15f2a6c0 (IsA snowball frozen_dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snowball is a kind of sand verbena", "pln": ["(: cnet_isa_2ce515382b (IsA snowball sand_verbena) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snowbank is a kind of mound", "pln": ["(: cnet_isa_71b8d08f02 (IsA snowbank mound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snowbell is a kind of styrax", "pln": ["(: cnet_isa_8af4093183 (IsA snowbell styrax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snowberry is a kind of poisonous plant", "pln": ["(: cnet_isa_7c28b1c343 (IsA snowberry poisonous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snowblindness is a kind of blindness", "pln": ["(: cnet_isa_911986e5e1 (IsA snowblindness blindness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snowboard is a kind of board", "pln": ["(: cnet_isa_fdc88c0fe5 (IsA snowboard board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snowboarder is a kind of skidder", "pln": ["(: cnet_isa_1129efa258 (IsA snowboarder skidder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snowboarding is a kind of sport", "pln": ["(: cnet_isa_1123c46872 (IsA snowboarding sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snowboarding is a kind of slide", "pln": ["(: cnet_isa_af9f23aa97 (IsA snowboarding slide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snowcap is a kind of covering", "pln": ["(: cnet_isa_38b4dce923 (IsA snowcap covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snowdrift is a kind of drift", "pln": ["(: cnet_isa_70e1aee6fd (IsA snowdrift drift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snowdrop anemone is a kind of anemone", "pln": ["(: cnet_isa_b828bb436d (IsA snowdrop_anemone anemone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snowfield is a kind of plain", "pln": ["(: cnet_isa_7ee4c68715 (IsA snowfield plain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "snowflake is a kind of crystal", "pln": ["(: cnet_isa_5d9271751a (IsA snowflake crystal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snowman is a kind of figure", "pln": ["(: cnet_isa_836d18d9a8 (IsA snowman figure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snowmobile is a kind of tracked vehicle", "pln": ["(: cnet_isa_26a88dcb6a (IsA snowmobile tracked_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snowplow is a kind of motor vehicle", "pln": ["(: cnet_isa_211a464107 (IsA snowplow motor_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snowshoe is a kind of device", "pln": ["(: cnet_isa_ae8b6fb720 (IsA snowshoe device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snowshoe hare is a kind of hare", "pln": ["(: cnet_isa_c83754d458 (IsA snowshoe_hare hare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snowsuit is a kind of overgarment", "pln": ["(: cnet_isa_1c770301dc (IsA snowsuit overgarment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snowy egret is a kind of egret", "pln": ["(: cnet_isa_2d08b59af3 (IsA snowy_egret egret) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snowy orchid is a kind of fringed orchis", "pln": ["(: cnet_isa_f5a47cc1bf (IsA snowy_orchid fringed_orchis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snowy tree cricket is a kind of tree cricket", "pln": ["(: cnet_isa_8554509897 (IsA snowy_tree_cricket tree_cricket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snub is a kind of rebuff", "pln": ["(: cnet_isa_96ad2fbf20 (IsA snub rebuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snuff is a kind of tobacco", "pln": ["(: cnet_isa_46813952f0 (IsA snuff tobacco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "snuff is a kind of touch", "pln": ["(: cnet_isa_e0d71b3ee4 (IsA snuff touch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snuff is a kind of char", "pln": ["(: cnet_isa_53b3df5a28 (IsA snuff char) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snuff color is a kind of yellowish brown", "pln": ["(: cnet_isa_401bfca6fb (IsA snuff_color yellowish_brown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "snuffbox is a kind of box", "pln": ["(: cnet_isa_2b851e86f3 (IsA snuffbox box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snuffbox fern is a kind of marsh fern", "pln": ["(: cnet_isa_7bbf2ac94e (IsA snuffbox_fern marsh_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snuffer is a kind of implement", "pln": ["(: cnet_isa_a8a96cf503 (IsA snuffer implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snuffer is a kind of consumer", "pln": ["(: cnet_isa_d7f78e39d9 (IsA snuffer consumer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snuffer is a kind of person", "pln": ["(: cnet_isa_89a66e4544 (IsA snuffer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snuffer is a kind of scissor", "pln": ["(: cnet_isa_2710ce99a2 (IsA snuffer scissor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "snuffle is a kind of breathing", "pln": ["(: cnet_isa_9ef717c7bb (IsA snuffle breathing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "snuffler is a kind of person", "pln": ["(: cnet_isa_b54c5880c2 (IsA snuffler person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soak is a kind of wash", "pln": ["(: cnet_isa_9f0d73aa18 (IsA soak wash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soak is a kind of natural process", "pln": ["(: cnet_isa_7b0aac00d6 (IsA soak natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soap is a kind of cleansing agent", "pln": ["(: cnet_isa_aabd216d61 (IsA soap cleansing_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soap is a kind of gamma hydroxybutyrate", "pln": ["(: cnet_isa_98aa6b32d9 (IsA soap gamma_hydroxybutyrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "soap is a kind of bribe", "pln": ["(: cnet_isa_3c51b84541 (IsA soap bribe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soap bubble is a kind of bubble", "pln": ["(: cnet_isa_ea73daf9d5 (IsA soap_bubble bubble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soap dish is a kind of fixture", "pln": ["(: cnet_isa_036d034fa1 (IsA soap_dish fixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soap dispenser is a kind of dispenser", "pln": ["(: cnet_isa_eb6048aa87 (IsA soap_dispenser dispenser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soap film is a kind of film", "pln": ["(: cnet_isa_e5e5dcc9fc (IsA soap_film film) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soap flake is a kind of soap", "pln": ["(: cnet_isa_30cb7b9e22 (IsA soap_flake soap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soap opera is a kind of serial", "pln": ["(: cnet_isa_57af2dc3d8 (IsA soap_opera serial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soap pad is a kind of cleaning pad", "pln": ["(: cnet_isa_1b08829761 (IsA soap_pad cleaning_pad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soap powder is a kind of soap", "pln": ["(: cnet_isa_88134a70d3 (IsA soap_powder soap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soapberry is a kind of tree", "pln": ["(: cnet_isa_4eb9d9649e (IsA soapberry tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soapberry vine is a kind of vine", "pln": ["(: cnet_isa_5f854ef0b4 (IsA soapberry_vine vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soapbox is a kind of crate", "pln": ["(: cnet_isa_da730d21b2 (IsA soapbox crate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soapfish is a kind of serranid fish", "pln": ["(: cnet_isa_3e275d4373 (IsA soapfish serranid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soapiness is a kind of quality", "pln": ["(: cnet_isa_3890e5d915 (IsA soapiness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soapstone is a kind of talc", "pln": ["(: cnet_isa_968fde14ca (IsA soapstone talc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soapsud is a kind of foam", "pln": ["(: cnet_isa_a638d9d8d9 (IsA soapsud foam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soapweed is a kind of yucca", "pln": ["(: cnet_isa_77946a1207 (IsA soapweed yucca) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soapwort is a kind of flower", "pln": ["(: cnet_isa_1cb8eba361 (IsA soapwort flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soapwort gentian is a kind of gentian", "pln": ["(: cnet_isa_bd9161c311 (IsA soapwort_gentian gentian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soar is a kind of rise", "pln": ["(: cnet_isa_fef23f9991 (IsA soar rise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soave is a kind of white wine", "pln": ["(: cnet_isa_027e915cdd (IsA soave white_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sob is a kind of crying", "pln": ["(: cnet_isa_f71d26a3e2 (IsA sob crying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sob sister is a kind of journalist", "pln": ["(: cnet_isa_e5863d8d4f (IsA sob_sister journalist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sob story is a kind of narrative", "pln": ["(: cnet_isa_efeda2d7ab (IsA sob_story narrative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soberness is a kind of temporary state", "pln": ["(: cnet_isa_5589ead7ae (IsA soberness temporary_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soberside is a kind of adult", "pln": ["(: cnet_isa_78e6826cd5 (IsA soberside adult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sobralia is a kind of orchid", "pln": ["(: cnet_isa_1fbf4535c2 (IsA sobralia orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sobriety is a kind of abstinence", "pln": ["(: cnet_isa_d0081bfe56 (IsA sobriety abstinence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sobriety is a kind of temperance", "pln": ["(: cnet_isa_65eead3026 (IsA sobriety temperance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "socage is a kind of service", "pln": ["(: cnet_isa_d8ec933190 (IsA socage service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soccer is a kind of fun", "pln": ["(: cnet_isa_6c5770c826 (IsA soccer fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soccer is a kind of game", "pln": ["(: cnet_isa_a0aad30def (IsA soccer game) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soccer is a kind of sport", "pln": ["(: cnet_isa_5b46448217 (IsA soccer sport) (STV 1.0 0.9786))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soccer is a kind of team sport", "pln": ["(: cnet_isa_c8e1a423d2 (IsA soccer team_sport) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soccer is a kind of football", "pln": ["(: cnet_isa_b076b9ae12 (IsA soccer football) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soccer ball is a kind of ball", "pln": ["(: cnet_isa_151f2bc8b0 (IsA soccer_ball ball) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soccer field is a kind of playing field", "pln": ["(: cnet_isa_50ae190be1 (IsA soccer_field playing_field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soccer player is a kind of athlete", "pln": ["(: cnet_isa_93b5697b58 (IsA soccer_player athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soccer player is a kind of player", "pln": ["(: cnet_isa_962a852088 (IsA soccer_player player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sociability is a kind of sociality", "pln": ["(: cnet_isa_f7efcc2767 (IsA sociability sociality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sociable is a kind of party", "pln": ["(: cnet_isa_c30d689568 (IsA sociable party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "social action is a kind of social policy", "pln": ["(: cnet_isa_24699efbf3 (IsA social_action social_policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "social activity is a kind of group action", "pln": ["(: cnet_isa_d3c8b43d5f (IsA social_activity group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "social anthropologist is a kind of anthropologist", "pln": ["(: cnet_isa_3417aa397e (IsA social_anthropologist anthropologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "social anthropology is a kind of anthropology", "pln": ["(: cnet_isa_0cf42e0834 (IsA social_anthropology anthropology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "social climber is a kind of upstart", "pln": ["(: cnet_isa_66543c06d9 (IsA social_climber upstart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "social contract is a kind of agreement", "pln": ["(: cnet_isa_9796b2d2e6 (IsA social_contract agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "social control is a kind of group action", "pln": ["(: cnet_isa_58590e7241 (IsA social_control group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "social dancing is a kind of dancing", "pln": ["(: cnet_isa_647865905e (IsA social_dancing dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "social democracy is a kind of political orientation", "pln": ["(: cnet_isa_8373ae57f0 (IsA social_democracy political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "social democratic party is a kind of party", "pln": ["(: cnet_isa_e178c82682 (IsA social_democratic_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "social development commission is a kind of economic and social council commission", "pln": ["(: cnet_isa_289aac5862 (IsA social_development_commission economic_and_social_council_commission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "social event is a kind of event", "pln": ["(: cnet_isa_2b7f94feba (IsA social_event event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "social gathering is a kind of gathering", "pln": ["(: cnet_isa_e4d32f4a5a (IsA social_gathering gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "social group is a kind of group", "pln": ["(: cnet_isa_8d86f03166 (IsA social_group group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "social insect is a kind of insect", "pln": ["(: cnet_isa_8a6b01ed7c (IsA social_insect insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "social insurance is a kind of social welfare", "pln": ["(: cnet_isa_7846a6dac9 (IsA social_insurance social_welfare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "social organization is a kind of system", "pln": ["(: cnet_isa_35df58a09f (IsA social_organization system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "social phobia is a kind of phobia", "pln": ["(: cnet_isa_edd1e876ce (IsA social_phobia phobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "social policy is a kind of policy", "pln": ["(: cnet_isa_43fe7edecf (IsA social_policy policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "social process is a kind of human process", "pln": ["(: cnet_isa_9b2f31c804 (IsA social_process human_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "social psychology is a kind of psychology", "pln": ["(: cnet_isa_cd69033669 (IsA social_psychology psychology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "social relation is a kind of relation", "pln": ["(: cnet_isa_eeee6d84c3 (IsA social_relation relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "social science is a kind of science", "pln": ["(: cnet_isa_873f2dc3ca (IsA social_science science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "social scientist is a kind of scientist", "pln": ["(: cnet_isa_409c9fa7ce (IsA social_scientist scientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "social season is a kind of season", "pln": ["(: cnet_isa_ff79fdff8b (IsA social_season season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "social secretary is a kind of secretary", "pln": ["(: cnet_isa_8bd9ab780b (IsA social_secretary secretary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "social security is a kind of social insurance", "pln": ["(: cnet_isa_f8e41b6fac (IsA social_security social_insurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "social security administration is a kind of independent agency", "pln": ["(: cnet_isa_9ee6b2654b (IsA social_security_administration independent_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "social security number is a kind of number", "pln": ["(: cnet_isa_8d4c66ab86 (IsA social_security_number number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "social station is a kind of status", "pln": ["(: cnet_isa_ab3ff0cf74 (IsA social_station status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "social welfare is a kind of financial aid", "pln": ["(: cnet_isa_338bf499aa (IsA social_welfare financial_aid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "social work is a kind of welfare work", "pln": ["(: cnet_isa_99dc0d0003 (IsA social_work welfare_work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "social worker is a kind of public servant", "pln": ["(: cnet_isa_f27da48be6 (IsA social_worker public_servant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "socialism is a kind of ideology", "pln": ["(: cnet_isa_3d22e8cba4 (IsA socialism ideology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "socialism is a kind of political ideology", "pln": ["(: cnet_isa_91a4d02a48 (IsA socialism political_ideology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "socialism is a kind of political orientation", "pln": ["(: cnet_isa_25bda70e34 (IsA socialism political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "socialism is a kind of managed economy", "pln": ["(: cnet_isa_a5ce7a115d (IsA socialism managed_economy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "socialist is a kind of politician", "pln": ["(: cnet_isa_94966ba9d3 (IsA socialist politician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "socialist labor party is a kind of party", "pln": ["(: cnet_isa_bccc704a56 (IsA socialist_labor_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "socialist party is a kind of party", "pln": ["(: cnet_isa_d6d1611af9 (IsA socialist_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "socialite is a kind of important person", "pln": ["(: cnet_isa_09fbabf3fa (IsA socialite important_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sociality is a kind of nature", "pln": ["(: cnet_isa_3fa3e335dd (IsA sociality nature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "socialization is a kind of group action", "pln": ["(: cnet_isa_16853dcf9b (IsA socialization group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "socialization is a kind of meeting", "pln": ["(: cnet_isa_11d075fca6 (IsA socialization meeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "socialization is a kind of social control", "pln": ["(: cnet_isa_28ee0eaacb (IsA socialization social_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "socializer is a kind of person", "pln": ["(: cnet_isa_725c48e22f (IsA socializer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "society is a kind of group of people", "pln": ["(: cnet_isa_04551fb39f (IsA society group_of_people) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "society is a kind of large group of people", "pln": ["(: cnet_isa_98e2f3caf1 (IsA society large_group_of_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "society is a kind of elite", "pln": ["(: cnet_isa_f28204fb92 (IsA society elite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "society is a kind of social group", "pln": ["(: cnet_isa_d87bf7d03a (IsA society social_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "socinian is a kind of disciple", "pln": ["(: cnet_isa_e6671f8fe1 (IsA socinian disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sociobiologist is a kind of biologist", "pln": ["(: cnet_isa_26b8ff5cf1 (IsA sociobiologist biologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sociobiology is a kind of biology", "pln": ["(: cnet_isa_e84b3cbab9 (IsA sociobiology biology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sociolinguist is a kind of linguist", "pln": ["(: cnet_isa_ed6019fba1 (IsA sociolinguist linguist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sociolinguistic is a kind of linguistic", "pln": ["(: cnet_isa_ca76b582d0 (IsA sociolinguistic linguistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sociologist is a kind of social scientist", "pln": ["(: cnet_isa_b217a1d94e (IsA sociologist social_scientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sociology is a kind of social science", "pln": ["(: cnet_isa_812642aecf (IsA sociology social_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sociology department is a kind of academic department", "pln": ["(: cnet_isa_77ad7570c8 (IsA sociology_department academic_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sociometry is a kind of sociology", "pln": ["(: cnet_isa_064ae4b5b9 (IsA sociometry sociology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sociopath is a kind of neurotic", "pln": ["(: cnet_isa_10d1ea5a81 (IsA sociopath neurotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sock is a kind of article of clothing", "pln": ["(: cnet_isa_320a51fa96 (IsA sock article_of_clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sock is a kind of hosiery", "pln": ["(: cnet_isa_873acfd672 (IsA sock hosiery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "socket is a kind of receptacle", "pln": ["(: cnet_isa_c5def06161 (IsA socket receptacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "socket is a kind of cavity", "pln": ["(: cnet_isa_b0c99e596c (IsA socket cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "socket wrench is a kind of wrench", "pln": ["(: cnet_isa_1b59a1330e (IsA socket_wrench wrench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sockeye is a kind of salmon", "pln": ["(: cnet_isa_0976bdd288 (IsA sockeye salmon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "socle is a kind of pedestal", "pln": ["(: cnet_isa_9df17575b4 (IsA socle pedestal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "socotra begonia is a kind of begonia", "pln": ["(: cnet_isa_d760d21d6b (IsA socotra_begonia begonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "socratic irony is a kind of irony", "pln": ["(: cnet_isa_3aa75f88f9 (IsA socratic_irony irony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "socratic method is a kind of teaching method", "pln": ["(: cnet_isa_e362adb88e (IsA socratic_method teaching_method) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sod house is a kind of house", "pln": ["(: cnet_isa_c2b9070990 (IsA sod_house house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soda is a kind of beverage", "pln": ["(: cnet_isa_bd292431dd (IsA soda beverage) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soda is a kind of carbonated", "pln": ["(: cnet_isa_f32744a7c2 (IsA soda carbonated) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soda is a kind of drink", "pln": ["(: cnet_isa_d2e8c2560b (IsA soda drink) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soda can is a kind of can", "pln": ["(: cnet_isa_fcab30e3f7 (IsA soda_can can) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soda cracker is a kind of cracker", "pln": ["(: cnet_isa_4f67effbed (IsA soda_cracker cracker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "soda fountain is a kind of apparatus", "pln": ["(: cnet_isa_a4c6f9a3a0 (IsA soda_fountain apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soda fountain is a kind of bar", "pln": ["(: cnet_isa_bf42d5ae36 (IsA soda_fountain bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soda jerk is a kind of counterperson", "pln": ["(: cnet_isa_37c8289500 (IsA soda_jerk counterperson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soda lime is a kind of mixture", "pln": ["(: cnet_isa_e7f7886c32 (IsA soda_lime mixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soda water is a kind of drinking water", "pln": ["(: cnet_isa_20c863ff78 (IsA soda_water drinking_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sodalist is a kind of member", "pln": ["(: cnet_isa_436e4dddac (IsA sodalist member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sodalite is a kind of mineral", "pln": ["(: cnet_isa_32279048ee (IsA sodalite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sodium is a kind of alkaline metal", "pln": ["(: cnet_isa_b9a2b837fe (IsA sodium alkaline_metal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sodium is a kind of metallic element", "pln": ["(: cnet_isa_d8935d64af (IsA sodium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sodium carbonate is a kind of salt", "pln": ["(: cnet_isa_d704f211ef (IsA sodium_carbonate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sodium carboxymethyl cellulose is a kind of salt", "pln": ["(: cnet_isa_7fd21e20ff (IsA sodium_carboxymethyl_cellulose salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sodium chlorate is a kind of salt", "pln": ["(: cnet_isa_c91e4eb2ab (IsA sodium_chlorate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sodium chloride is a kind of binary compound", "pln": ["(: cnet_isa_7192eaf549 (IsA sodium_chloride binary_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sodium cyanide is a kind of cyanide", "pln": ["(: cnet_isa_3f69654a9a (IsA sodium_cyanide cyanide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sodium dichromate is a kind of mordant", "pln": ["(: cnet_isa_12f386176b (IsA sodium_dichromate mordant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sodium dichromate is a kind of salt", "pln": ["(: cnet_isa_3b248d946f (IsA sodium_dichromate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sodium fluoride is a kind of salt", "pln": ["(: cnet_isa_e415be4316 (IsA sodium_fluoride salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sodium hydride is a kind of hydride", "pln": ["(: cnet_isa_530dd4e057 (IsA sodium_hydride hydride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sodium hydroxide is a kind of hydroxide", "pln": ["(: cnet_isa_191dc04b62 (IsA sodium_hydroxide hydroxide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sodium hydroxide is a kind of lye", "pln": ["(: cnet_isa_4d53ecdaae (IsA sodium_hydroxide lye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sodium hypochlorite is a kind of bleaching agent", "pln": ["(: cnet_isa_d8360de1cb (IsA sodium_hypochlorite bleaching_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sodium hypochlorite is a kind of disinfectant", "pln": ["(: cnet_isa_69b4d75fda (IsA sodium_hypochlorite disinfectant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sodium hypochlorite is a kind of hypochlorite", "pln": ["(: cnet_isa_dced76b302 (IsA sodium_hypochlorite hypochlorite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sodium iodide is a kind of iodide", "pln": ["(: cnet_isa_3d655cd885 (IsA sodium_iodide iodide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sodium lauryl sulphate is a kind of detergent", "pln": ["(: cnet_isa_e8d06ff6ae (IsA sodium_lauryl_sulphate detergent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sodium lauryl sulphate is a kind of sulfate", "pln": ["(: cnet_isa_1dfad3629c (IsA sodium_lauryl_sulphate sulfate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sodium nitrate is a kind of nitrate", "pln": ["(: cnet_isa_300b6741ac (IsA sodium_nitrate nitrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sodium nitrite is a kind of nitrite", "pln": ["(: cnet_isa_b6ef84faab (IsA sodium_nitrite nitrite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sodium phosphate is a kind of phosphate", "pln": ["(: cnet_isa_324a3ff284 (IsA sodium_phosphate phosphate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sodium pyrophosphate is a kind of builder", "pln": ["(: cnet_isa_6d4db04a41 (IsA sodium_pyrophosphate builder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sodium salicylate is a kind of analgesic", "pln": ["(: cnet_isa_472584094b (IsA sodium_salicylate analgesic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sodium sulphate is a kind of sulfate", "pln": ["(: cnet_isa_e12eba418d (IsA sodium_sulphate sulfate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sodium thiopental is a kind of barbiturate", "pln": ["(: cnet_isa_eab97a3d15 (IsA sodium_thiopental barbiturate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sodium tripolyphosphate is a kind of builder", "pln": ["(: cnet_isa_b05b0d5ed0 (IsA sodium_tripolyphosphate builder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sodium vapor lamp is a kind of lamp", "pln": ["(: cnet_isa_0cc4f3698c (IsA sodium_vapor_lamp lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sodoku is a kind of ratbite fever", "pln": ["(: cnet_isa_0ab0400702 (IsA sodoku ratbite_fever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sodom is a kind of location", "pln": ["(: cnet_isa_be6f76d367 (IsA sodom location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sodomite is a kind of pervert", "pln": ["(: cnet_isa_1d4eecf3d5 (IsA sodomite pervert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sodomy is a kind of perversion", "pln": ["(: cnet_isa_2df48da84a (IsA sodomy perversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sofa is a kind of chair", "pln": ["(: cnet_isa_fae8acc496 (IsA sofa chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sofa is a kind of comfortable place to sit", "pln": ["(: cnet_isa_a2971f6c43 (IsA sofa comfortable_place_to_sit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sofa is a kind of piece of furniture", "pln": ["(: cnet_isa_acfe2cb815 (IsA sofa piece_of_furniture) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sofa is a kind of place to sit", "pln": ["(: cnet_isa_640a6ac356 (IsA sofa place_to_sit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sofa is a kind of seat", "pln": ["(: cnet_isa_3d5ecc3502 (IsA sofa seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soffit is a kind of side", "pln": ["(: cnet_isa_99586d48e6 (IsA soffit side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soft coated wheaten terrier is a kind of terrier", "pln": ["(: cnet_isa_cc4551b3ae (IsA soft_coated_wheaten_terrier terrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soft copy is a kind of matter", "pln": ["(: cnet_isa_fefa58243c (IsA soft_copy matter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soft corn is a kind of field corn", "pln": ["(: cnet_isa_e56996dd4e (IsA soft_corn field_corn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soft diet is a kind of diet", "pln": ["(: cnet_isa_1add98708d (IsA soft_diet diet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soft drink is a kind of carbonated", "pln": ["(: cnet_isa_cfc3cee19c (IsA soft_drink carbonated) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soft drink is a kind of beverage", "pln": ["(: cnet_isa_25fba6371f (IsA soft_drink beverage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soft drug is a kind of drug of abuse", "pln": ["(: cnet_isa_ae49b0e83c (IsA soft_drug drug_of_abuse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soft drug is a kind of narcotic", "pln": ["(: cnet_isa_fd4e37ebc9 (IsA soft_drug narcotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soft finned fish is a kind of teleost fish", "pln": ["(: cnet_isa_5856568826 (IsA soft_finned_fish teleost_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soft glass is a kind of glass", "pln": ["(: cnet_isa_cf3aa4e600 (IsA soft_glass glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soft money is a kind of political contribution", "pln": ["(: cnet_isa_b1c1518aac (IsA soft_money political_contribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soft new is a kind of new", "pln": ["(: cnet_isa_47b939e87d (IsA soft_new new) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soft option is a kind of option", "pln": ["(: cnet_isa_2a45cbd42e (IsA soft_option option) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soft palate is a kind of flap", "pln": ["(: cnet_isa_8fd8715432 (IsA soft_palate flap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soft pedal is a kind of pedal", "pln": ["(: cnet_isa_c4b3b5a45d (IsA soft_pedal pedal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soft pretzel is a kind of pretzel", "pln": ["(: cnet_isa_193e7fbeae (IsA soft_pretzel pretzel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soft roll is a kind of bun", "pln": ["(: cnet_isa_ce7794bdd3 (IsA soft_roll bun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soft rot is a kind of plant disease", "pln": ["(: cnet_isa_f15df5448f (IsA soft_rot plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soft scale is a kind of scale insect", "pln": ["(: cnet_isa_266384985f (IsA soft_scale scale_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soft sell is a kind of advertising", "pln": ["(: cnet_isa_8a81283402 (IsA soft_sell advertising) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soft shell clam is a kind of clam", "pln": ["(: cnet_isa_614682f969 (IsA soft_shell_clam clam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soft shell crab is a kind of crab", "pln": ["(: cnet_isa_fda2a9db6b (IsA soft_shell_crab crab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soft shelled turtle is a kind of turtle", "pln": ["(: cnet_isa_dcc2f465bd (IsA soft_shelled_turtle turtle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soft shield fern is a kind of shield fern", "pln": ["(: cnet_isa_e4f74d41a8 (IsA soft_shield_fern shield_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soft shoe is a kind of tap dancing", "pln": ["(: cnet_isa_d56b9ac83e (IsA soft_shoe tap_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soft soap is a kind of soap", "pln": ["(: cnet_isa_1578759318 (IsA soft_soap soap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soft solder is a kind of solder", "pln": ["(: cnet_isa_826a03c98a (IsA soft_solder solder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soft spot is a kind of affection", "pln": ["(: cnet_isa_bbb62d51b6 (IsA soft_spot affection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soft tick is a kind of tick", "pln": ["(: cnet_isa_22d7742456 (IsA soft_tick tick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soft tree fern is a kind of tree fern", "pln": ["(: cnet_isa_62cca20c42 (IsA soft_tree_fern tree_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "soft water is a kind of water", "pln": ["(: cnet_isa_10a10efc5b (IsA soft_water water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soft wheat is a kind of wheat", "pln": ["(: cnet_isa_a2fb420e55 (IsA soft_wheat wheat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "softball is a kind of baseball", "pln": ["(: cnet_isa_67034f1a03 (IsA softball baseball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "softball is a kind of ball", "pln": ["(: cnet_isa_1148b40a93 (IsA softball ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "softener is a kind of chemical", "pln": ["(: cnet_isa_6b0cad1d4a (IsA softener chemical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "softening is a kind of natural process", "pln": ["(: cnet_isa_ebe758e297 (IsA softening natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "softheartedness is a kind of concern", "pln": ["(: cnet_isa_cc31666245 (IsA softheartedness concern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "softness is a kind of consistency", "pln": ["(: cnet_isa_e4814b8047 (IsA softness consistency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "softness is a kind of indulgence", "pln": ["(: cnet_isa_278ce94a3c (IsA softness indulgence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "softness is a kind of sound property", "pln": ["(: cnet_isa_4cf0372b8d (IsA softness sound_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "softness is a kind of visual property", "pln": ["(: cnet_isa_f16bba8a75 (IsA softness visual_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "softness is a kind of economic condition", "pln": ["(: cnet_isa_3ef1c6b30c (IsA softness economic_condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "software is a kind of code", "pln": ["(: cnet_isa_82c4561d90 (IsA software code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "software documentation is a kind of software", "pln": ["(: cnet_isa_059f0232da (IsA software_documentation software) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "software error is a kind of error", "pln": ["(: cnet_isa_c09c74a260 (IsA software_error error) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "software package is a kind of merchandise", "pln": ["(: cnet_isa_88368e176f (IsA software_package merchandise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "softwood is a kind of wood", "pln": ["(: cnet_isa_32fa54879a (IsA softwood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "softy is a kind of weakling", "pln": ["(: cnet_isa_9b6a4ca20c (IsA softy weakling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sogginess is a kind of wetness", "pln": ["(: cnet_isa_c73bf99576 (IsA sogginess wetness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soil is a kind of earth", "pln": ["(: cnet_isa_1d1ac3c038 (IsA soil earth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "soil bank is a kind of bank", "pln": ["(: cnet_isa_62596ca61f (IsA soil_bank bank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "soil conditioner is a kind of chemical", "pln": ["(: cnet_isa_403ecc5a62 (IsA soil_conditioner chemical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "soil conservation is a kind of conservation", "pln": ["(: cnet_isa_5316ea0f0c (IsA soil_conservation conservation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soil erosion is a kind of erosion", "pln": ["(: cnet_isa_ebb27e4171 (IsA soil_erosion erosion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "soil horizon is a kind of horizon", "pln": ["(: cnet_isa_556b78d4c2 (IsA soil_horizon horizon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soil pipe is a kind of drain", "pln": ["(: cnet_isa_a54541ed81 (IsA soil_pipe drain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soil profile is a kind of profile", "pln": ["(: cnet_isa_5d9c2015c8 (IsA soil_profile profile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "soiling is a kind of change of state", "pln": ["(: cnet_isa_0ce942aacc (IsA soiling change_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soiree is a kind of party", "pln": ["(: cnet_isa_12252bda1b (IsA soiree party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soixante neuf is a kind of oral sex", "pln": ["(: cnet_isa_e194825df8 (IsA soixante_neuf oral_sex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sojourn is a kind of stay", "pln": ["(: cnet_isa_562ba5ec93 (IsA sojourn stay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sojourner is a kind of resident", "pln": ["(: cnet_isa_c5dc977e77 (IsA sojourner resident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sokoro is a kind of east chadic", "pln": ["(: cnet_isa_87fcfa338d (IsA sokoro east_chadic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sol is a kind of solfa syllable", "pln": ["(: cnet_isa_1828445326 (IsA sol solfa_syllable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sol is a kind of colloid", "pln": ["(: cnet_isa_d09b412170 (IsA sol colloid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solace is a kind of comfort", "pln": ["(: cnet_isa_3487a60337 (IsA solace comfort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solan is a kind of gannet", "pln": ["(: cnet_isa_604315aaa5 (IsA solan gannet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solanaceae is a kind of asterid dicot family", "pln": ["(: cnet_isa_492ef23415 (IsA solanaceae asterid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solanaceous vegetable is a kind of vegetable", "pln": ["(: cnet_isa_e3bd71b849 (IsA solanaceous_vegetable vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solandra is a kind of asterid dicot genus", "pln": ["(: cnet_isa_1edce170b0 (IsA solandra asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solanopteris is a kind of fern genus", "pln": ["(: cnet_isa_4ac14c92ef (IsA solanopteris fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solanum is a kind of asterid dicot genus", "pln": ["(: cnet_isa_098060d2a7 (IsA solanum asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solar array is a kind of electrical device", "pln": ["(: cnet_isa_67177d247f (IsA solar_array electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solar calendar is a kind of calendar", "pln": ["(: cnet_isa_12f24c9a4e (IsA solar_calendar calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solar cell is a kind of cell", "pln": ["(: cnet_isa_564dd035ce (IsA solar_cell cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solar constant is a kind of rate", "pln": ["(: cnet_isa_72d125950e (IsA solar_constant rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solar dish is a kind of reflector", "pln": ["(: cnet_isa_1193eddb46 (IsA solar_dish reflector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solar eclipse is a kind of eclipse", "pln": ["(: cnet_isa_f162271014 (IsA solar_eclipse eclipse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solar energy is a kind of alternative energy", "pln": ["(: cnet_isa_5f1aa28121 (IsA solar_energy alternative_energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solar flare is a kind of solar radiation", "pln": ["(: cnet_isa_f35b0a4a9e (IsA solar_flare solar_radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solar gravity is a kind of gravity", "pln": ["(: cnet_isa_a18ee14221 (IsA solar_gravity gravity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solar halo is a kind of halo", "pln": ["(: cnet_isa_aaeecc38a8 (IsA solar_halo halo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solar heater is a kind of heater", "pln": ["(: cnet_isa_b54ae70781 (IsA solar_heater heater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solar house is a kind of house", "pln": ["(: cnet_isa_209087360d (IsA solar_house house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solar magnetic field is a kind of magnetic field", "pln": ["(: cnet_isa_e872a5f215 (IsA solar_magnetic_field magnetic_field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solar month is a kind of month", "pln": ["(: cnet_isa_29e95ddea4 (IsA solar_month month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solar parallax is a kind of geocentric parallax", "pln": ["(: cnet_isa_ab3c38aa4d (IsA solar_parallax geocentric_parallax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solar physic is a kind of astronomy", "pln": ["(: cnet_isa_fc92e997c8 (IsA solar_physic astronomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solar plexus is a kind of nerve plexus", "pln": ["(: cnet_isa_f6c708e6a6 (IsA solar_plexus nerve_plexus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solar prominence is a kind of solar radiation", "pln": ["(: cnet_isa_aaf161aa6d (IsA solar_prominence solar_radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solar radiation is a kind of radiation", "pln": ["(: cnet_isa_ae4141aa61 (IsA solar_radiation radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solar system is a kind of system", "pln": ["(: cnet_isa_63741405b4 (IsA solar_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solar telescope is a kind of telescope", "pln": ["(: cnet_isa_1ce5fb0bac (IsA solar_telescope telescope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solar thermal system is a kind of system", "pln": ["(: cnet_isa_4dcd6bad80 (IsA solar_thermal_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solar wind is a kind of solar radiation", "pln": ["(: cnet_isa_736f80014b (IsA solar_wind solar_radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solar year is a kind of year", "pln": ["(: cnet_isa_4392524ecd (IsA solar_year year) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solaris is a kind of operating system", "pln": ["(: cnet_isa_f4ab225573 (IsA solaris operating_system) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "solarization is a kind of exposure", "pln": ["(: cnet_isa_545f5dcaf4 (IsA solarization exposure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solder is a kind of alloy", "pln": ["(: cnet_isa_7befde3b29 (IsA solder alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solderer is a kind of worker", "pln": ["(: cnet_isa_d60328ab84 (IsA solderer worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soldering flux is a kind of flux", "pln": ["(: cnet_isa_63c26b5a58 (IsA soldering_flux flux) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soldering iron is a kind of hand tool", "pln": ["(: cnet_isa_06c6b10838 (IsA soldering_iron hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soldier is a kind of person", "pln": ["(: cnet_isa_e2ce6077f7 (IsA soldier person) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soldier is a kind of worker", "pln": ["(: cnet_isa_45d066d22f (IsA soldier worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soldier is a kind of enlisted person", "pln": ["(: cnet_isa_c2b1733180 (IsA soldier enlisted_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soldier grainy club is a kind of grainy club", "pln": ["(: cnet_isa_e73e5668f6 (IsA soldier_grainy_club grainy_club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soldierfish is a kind of squirrelfish", "pln": ["(: cnet_isa_2b03cd5622 (IsA soldierfish squirrelfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soldiering is a kind of skill", "pln": ["(: cnet_isa_1b92b52007 (IsA soldiering skill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sole is a kind of flatfish", "pln": ["(: cnet_isa_06184531e6 (IsA sole flatfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sole is a kind of food fish", "pln": ["(: cnet_isa_64017b0d06 (IsA sole food_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sole is a kind of bottom", "pln": ["(: cnet_isa_70a47a5855 (IsA sole bottom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sole is a kind of area", "pln": ["(: cnet_isa_5ade405ca5 (IsA sole area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sole proprietorship is a kind of business", "pln": ["(: cnet_isa_03c82b2c4f (IsA sole_proprietorship business) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solea is a kind of fish genus", "pln": ["(: cnet_isa_2d8a6abc74 (IsA solea fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soleidae is a kind of fish family", "pln": ["(: cnet_isa_2195d52596 (IsA soleidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solemnity of mary is a kind of holy day of obligation", "pln": ["(: cnet_isa_6d8b7b1dc7 (IsA solemnity_of_mary holy_day_of_obligation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solenichthye is a kind of animal order", "pln": ["(: cnet_isa_14c7768837 (IsA solenichthye animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solenidae is a kind of mollusk family", "pln": ["(: cnet_isa_3386280ad3 (IsA solenidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solenogaster is a kind of gastropod", "pln": ["(: cnet_isa_84fff2bf3a (IsA solenogaster gastropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solenogastre is a kind of animal order", "pln": ["(: cnet_isa_6c17818a4c (IsA solenogastre animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solenoid is a kind of coil", "pln": ["(: cnet_isa_50c6cc79e7 (IsA solenoid coil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solenoid is a kind of magnet", "pln": ["(: cnet_isa_4ccf953ccc (IsA solenoid magnet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solenopsis is a kind of arthropod genus", "pln": ["(: cnet_isa_8b049651b7 (IsA solenopsis arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solenostemon is a kind of asterid dicot genus", "pln": ["(: cnet_isa_81674378e7 (IsA solenostemon asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soleus is a kind of skeletal muscle", "pln": ["(: cnet_isa_c924310d06 (IsA soleus skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "solfa syllable is a kind of syllable", "pln": ["(: cnet_isa_4dad1710ad (IsA solfa_syllable syllable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solfege is a kind of singing", "pln": ["(: cnet_isa_5ae2f78643 (IsA solfege singing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solferino is a kind of pink", "pln": ["(: cnet_isa_9fecfbe2d0 (IsA solferino pink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solicitation is a kind of enticement", "pln": ["(: cnet_isa_3bac86adc4 (IsA solicitation enticement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solicitation is a kind of entreaty", "pln": ["(: cnet_isa_e7c7e6b81e (IsA solicitation entreaty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solicitation is a kind of request", "pln": ["(: cnet_isa_35713d67c5 (IsA solicitation request) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solicitor is a kind of lawyer", "pln": ["(: cnet_isa_1d5c7e717f (IsA solicitor lawyer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solicitor is a kind of petitioner", "pln": ["(: cnet_isa_9f6e0bbb1a (IsA solicitor petitioner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solicitor general is a kind of lawman", "pln": ["(: cnet_isa_e27caa6b31 (IsA solicitor_general lawman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solicitorship is a kind of position", "pln": ["(: cnet_isa_f495958071 (IsA solicitorship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solicitude is a kind of concern", "pln": ["(: cnet_isa_c718a05c93 (IsA solicitude concern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solid is a kind of state of matter", "pln": ["(: cnet_isa_3db5e52989 (IsA solid state_of_matter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "solid is a kind of shape", "pln": ["(: cnet_isa_cab4afc612 (IsA solid shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solid is a kind of substance", "pln": ["(: cnet_isa_1886868853 (IsA solid substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solid angle is a kind of angle", "pln": ["(: cnet_isa_210f77a445 (IsA solid_angle angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solid body substance is a kind of body substance", "pln": ["(: cnet_isa_91696bed80 (IsA solid_body_substance body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solid figure is a kind of figure", "pln": ["(: cnet_isa_a1e498741b (IsA solid_figure figure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solid geometry is a kind of geometry", "pln": ["(: cnet_isa_7f747fcee0 (IsA solid_geometry geometry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "solid solution is a kind of solution", "pln": ["(: cnet_isa_92a1b30fa4 (IsA solid_solution solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solid state physic is a kind of physic", "pln": ["(: cnet_isa_1032c9776d (IsA solid_state_physic physic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solidago is a kind of asterid dicot genus", "pln": ["(: cnet_isa_af107cba1e (IsA solidago asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solidarity is a kind of commonality", "pln": ["(: cnet_isa_ccb3e70770 (IsA solidarity commonality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solidity is a kind of consistency", "pln": ["(: cnet_isa_ed1e8c01eb (IsA solidity consistency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solidity is a kind of fullness", "pln": ["(: cnet_isa_2268b64c34 (IsA solidity fullness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solidness is a kind of dependability", "pln": ["(: cnet_isa_d1cb1a5fdd (IsA solidness dependability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solidus is a kind of punctuation", "pln": ["(: cnet_isa_7b8416045c (IsA solidus punctuation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soliloquy is a kind of actor s line", "pln": ["(: cnet_isa_12b0d18178 (IsA soliloquy actor_s_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soliloquy is a kind of speech", "pln": ["(: cnet_isa_6f1b7d71bc (IsA soliloquy speech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solipsism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_01bcfc34ed (IsA solipsism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "solitaire is a kind of card game", "pln": ["(: cnet_isa_3e73c01c24 (IsA solitaire card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solitaire is a kind of columbiform bird", "pln": ["(: cnet_isa_21e8f3c62c (IsA solitaire columbiform_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solitaire is a kind of thrush", "pln": ["(: cnet_isa_3e2e6b35e7 (IsA solitaire thrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "solitaire is a kind of jewel", "pln": ["(: cnet_isa_b8882da8f3 (IsA solitaire jewel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solitary confinement is a kind of confinement", "pln": ["(: cnet_isa_0a29e46b95 (IsA solitary_confinement confinement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solitary pussytoe is a kind of cat s foot", "pln": ["(: cnet_isa_63fdb918a1 (IsA solitary_pussytoe cat_s_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solitary vireo is a kind of vireo", "pln": ["(: cnet_isa_4a5a7c7480 (IsA solitary_vireo vireo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soliton is a kind of traveling wave", "pln": ["(: cnet_isa_5cee78e326 (IsA soliton traveling_wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solitude is a kind of topographic point", "pln": ["(: cnet_isa_64b1cd928a (IsA solitude topographic_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solitude is a kind of isolation", "pln": ["(: cnet_isa_15af7ac315 (IsA solitude isolation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solleret is a kind of armor plate", "pln": ["(: cnet_isa_3f114264aa (IsA solleret armor_plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solmization is a kind of singing", "pln": ["(: cnet_isa_2b2ee1f278 (IsA solmization singing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solmization is a kind of musical notation", "pln": ["(: cnet_isa_038a52ae92 (IsA solmization musical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solo is a kind of activity", "pln": ["(: cnet_isa_87aac374bb (IsA solo activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solo is a kind of flight", "pln": ["(: cnet_isa_85fd195dc2 (IsA solo flight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solo is a kind of musical composition", "pln": ["(: cnet_isa_6e16f7a88e (IsA solo musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solo homer is a kind of homer", "pln": ["(: cnet_isa_8167cba898 (IsA solo_homer homer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solo man is a kind of homo soloensis", "pln": ["(: cnet_isa_3f8506731f (IsA solo_man homo_soloensis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soloist is a kind of musician", "pln": ["(: cnet_isa_9b749fb746 (IsA soloist musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solomon s seal is a kind of liliaceous plant", "pln": ["(: cnet_isa_01a9071162 (IsA solomon_s_seal liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "solresol is a kind of artificial language", "pln": ["(: cnet_isa_d20ed7c612 (IsA solresol artificial_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solstice is a kind of cosmic time", "pln": ["(: cnet_isa_82ccc15905 (IsA solstice cosmic_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solubility is a kind of quality", "pln": ["(: cnet_isa_f9cfd1c8d1 (IsA solubility quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "solubility is a kind of definite quantity", "pln": ["(: cnet_isa_a3cc7f143b (IsA solubility definite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soluble glass is a kind of glass", "pln": ["(: cnet_isa_a129d18d50 (IsA soluble_glass glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solute is a kind of substance", "pln": ["(: cnet_isa_17307d184f (IsA solute substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "solution is a kind of success", "pln": ["(: cnet_isa_9deb2ae436 (IsA solution success) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solution is a kind of method", "pln": ["(: cnet_isa_2ab06dacbf (IsA solution method) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solution is a kind of statement", "pln": ["(: cnet_isa_47698a384a (IsA solution statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solution is a kind of set", "pln": ["(: cnet_isa_2aafee9045 (IsA solution set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solution is a kind of mixture", "pln": ["(: cnet_isa_3fa0276e74 (IsA solution mixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solvability is a kind of property", "pln": ["(: cnet_isa_13a0d949f5 (IsA solvability property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solvate is a kind of compound", "pln": ["(: cnet_isa_43da7bebe7 (IsA solvate compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solvating agent is a kind of agent", "pln": ["(: cnet_isa_e82e4d8802 (IsA solvating_agent agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "solvation is a kind of association", "pln": ["(: cnet_isa_47273280e5 (IsA solvation association) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solvay process is a kind of industrial process", "pln": ["(: cnet_isa_a326ad0e7e (IsA solvay_process industrial_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solvency is a kind of financial condition", "pln": ["(: cnet_isa_30ffe6abc1 (IsA solvency financial_condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "solvent is a kind of medium", "pln": ["(: cnet_isa_0a5c8009ba (IsA solvent medium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "som is a kind of kyrgyzstani monetary unit", "pln": ["(: cnet_isa_4dccb8243b (IsA som kyrgyzstani_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "som is a kind of uzbekistani monetary unit", "pln": ["(: cnet_isa_d060532e84 (IsA som uzbekistani_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soma is a kind of hindu deity", "pln": ["(: cnet_isa_0e29091c25 (IsA soma hindu_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soma is a kind of vine", "pln": ["(: cnet_isa_1956750baa (IsA soma vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "somali is a kind of cushitic", "pln": ["(: cnet_isa_092dd54b06 (IsA somali cushitic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "somalian is a kind of african", "pln": ["(: cnet_isa_c4dab46328 (IsA somalian african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "somalian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_a1296f00bf (IsA somalian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "somalian shilling is a kind of somalian monetary unit", "pln": ["(: cnet_isa_1ed9b6997b (IsA somalian_shilling somalian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soman is a kind of organophosphate nerve agent", "pln": ["(: cnet_isa_2d2474717f (IsA soman organophosphate_nerve_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "somateria is a kind of bird genus", "pln": ["(: cnet_isa_0afae7687d (IsA somateria bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "somatic cell is a kind of cell", "pln": ["(: cnet_isa_83f32892fa (IsA somatic_cell cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "somatic cell nuclear transplantation is a kind of biological research", "pln": ["(: cnet_isa_3cedfdeb6f (IsA somatic_cell_nuclear_transplantation biological_research) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "somatic delusion is a kind of delusion", "pln": ["(: cnet_isa_db64b77957 (IsA somatic_delusion delusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "somatosense is a kind of modality", "pln": ["(: cnet_isa_747e55d8dd (IsA somatosense modality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "somatotropin is a kind of hormone", "pln": ["(: cnet_isa_e6c51ca3d1 (IsA somatotropin hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sombrero is a kind of hat", "pln": ["(: cnet_isa_9c3921c353 (IsA sombrero hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "somersault is a kind of tumble", "pln": ["(: cnet_isa_112fb4d5e2 (IsA somersault tumble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "somesthesia is a kind of interoception", "pln": ["(: cnet_isa_80bd056cb9 (IsA somesthesia interoception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "somesthesia is a kind of perception", "pln": ["(: cnet_isa_4a61ac0756 (IsA somesthesia perception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "somewhere is a kind of location", "pln": ["(: cnet_isa_4c40639dc3 (IsA somewhere location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sommelier is a kind of waiter", "pln": ["(: cnet_isa_d9123c8525 (IsA sommelier waiter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "somniloquist is a kind of sleeper", "pln": ["(: cnet_isa_47c3f87b0b (IsA somniloquist sleeper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "somrai is a kind of east chadic", "pln": ["(: cnet_isa_156a65147a (IsA somrai east_chadic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "son is a kind of male offspring", "pln": ["(: cnet_isa_223e7c39a5 (IsA son male_offspring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "son in law is a kind of in law", "pln": ["(: cnet_isa_366cefbaa0 (IsA son_in_law in_law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sonant is a kind of phone", "pln": ["(: cnet_isa_c932297210 (IsA sonant phone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sonar is a kind of measuring instrument", "pln": ["(: cnet_isa_f6c3c97656 (IsA sonar measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sonar is a kind of navigational instrument", "pln": ["(: cnet_isa_9c6787db12 (IsA sonar navigational_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sonata is a kind of classical music", "pln": ["(: cnet_isa_b0d153edda (IsA sonata classical_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sonata form is a kind of art form", "pln": ["(: cnet_isa_fec3983677 (IsA sonata_form art_form) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sonatina is a kind of sonata", "pln": ["(: cnet_isa_fb352526a6 (IsA sonatina sonata) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sonchus is a kind of asterid dicot genus", "pln": ["(: cnet_isa_f636e92a61 (IsA sonchus asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sone is a kind of sound unit", "pln": ["(: cnet_isa_61f94100df (IsA sone sound_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "song is a kind of poem", "pln": ["(: cnet_isa_2a88839340 (IsA song poem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "song is a kind of poetry", "pln": ["(: cnet_isa_b77b07f82e (IsA song poetry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "song is a kind of vocal music", "pln": ["(: cnet_isa_50cf4d2be2 (IsA song vocal_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "song is a kind of musical composition", "pln": ["(: cnet_isa_52060395fc (IsA song musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "song is a kind of sound", "pln": ["(: cnet_isa_61a6871952 (IsA song sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "song is a kind of bargain", "pln": ["(: cnet_isa_562a9a6bc7 (IsA song bargain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "song and dance is a kind of performance", "pln": ["(: cnet_isa_cda567a158 (IsA song_and_dance performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "song sparrow is a kind of new world sparrow", "pln": ["(: cnet_isa_11adb20a44 (IsA song_sparrow new_world_sparrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "song thrush is a kind of thrush", "pln": ["(: cnet_isa_2ef2745dea (IsA song_thrush thrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "songbird is a kind of oscine", "pln": ["(: cnet_isa_ea630c9f17 (IsA songbird oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "songbook is a kind of book", "pln": ["(: cnet_isa_c6520e68b7 (IsA songbook book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "songhai is a kind of nilo saharan", "pln": ["(: cnet_isa_f8e8392cb8 (IsA songhai nilo_saharan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "songster is a kind of singer", "pln": ["(: cnet_isa_5c150f7f64 (IsA songster singer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "songstress is a kind of songster", "pln": ["(: cnet_isa_8f4013a224 (IsA songstress songster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "songwriter is a kind of musician", "pln": ["(: cnet_isa_468af878d0 (IsA songwriter musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "songwriter is a kind of composer", "pln": ["(: cnet_isa_2e58bf165b (IsA songwriter composer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sonic barrier is a kind of drag", "pln": ["(: cnet_isa_5cd8d01c96 (IsA sonic_barrier drag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sonic boom is a kind of shock wave", "pln": ["(: cnet_isa_db9fc89e86 (IsA sonic_boom shock_wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sonic depth finder is a kind of depth finder", "pln": ["(: cnet_isa_bc0ebe4b30 (IsA sonic_depth_finder depth_finder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sonnet is a kind of poem", "pln": ["(: cnet_isa_0a0fcc3306 (IsA sonnet poem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sonneteer is a kind of poet", "pln": ["(: cnet_isa_844029f3a3 (IsA sonneteer poet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sonogram is a kind of ikon", "pln": ["(: cnet_isa_b91cf96152 (IsA sonogram ikon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sonograph is a kind of instrument", "pln": ["(: cnet_isa_e4a708de21 (IsA sonograph instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sonography is a kind of imaging", "pln": ["(: cnet_isa_c8cec27372 (IsA sonography imaging) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sonography is a kind of prenatal diagnosis", "pln": ["(: cnet_isa_bf49a35e3b (IsA sonography prenatal_diagnosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sonora is a kind of reptile genus", "pln": ["(: cnet_isa_a0a1d4607d (IsA sonora reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sonora gum is a kind of gum resin", "pln": ["(: cnet_isa_968907442a (IsA sonora_gum gum_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sonora lac is a kind of animal product", "pln": ["(: cnet_isa_3dc160f0dd (IsA sonora_lac animal_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sonoran lyre snake is a kind of lyre snake", "pln": ["(: cnet_isa_dddfc7bd77 (IsA sonoran_lyre_snake lyre_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sonoran whipsnake is a kind of whip snake", "pln": ["(: cnet_isa_87882b1e5a (IsA sonoran_whipsnake whip_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sony is a kind of corporation", "pln": ["(: cnet_isa_46048a8ff0 (IsA sony corporation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soochong is a kind of black tea", "pln": ["(: cnet_isa_24d7c1990e (IsA soochong black_tea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sooth is a kind of truthfulness", "pln": ["(: cnet_isa_1d9e6e4a06 (IsA sooth truthfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soothing syrup is a kind of medicine", "pln": ["(: cnet_isa_d453e4b3ef (IsA soothing_syrup medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sop is a kind of concession", "pln": ["(: cnet_isa_b073fc3306 (IsA sop concession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sop is a kind of morsel", "pln": ["(: cnet_isa_a49344a33f (IsA sop morsel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sophism is a kind of fallacy", "pln": ["(: cnet_isa_6abe00454b (IsA sophism fallacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sophist is a kind of philosopher", "pln": ["(: cnet_isa_fa01b1a012 (IsA sophist philosopher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sophisticate is a kind of adult", "pln": ["(: cnet_isa_10d1f97499 (IsA sophisticate adult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sophistication is a kind of falsification", "pln": ["(: cnet_isa_c6e40fb985 (IsA sophistication falsification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sophistication is a kind of quality", "pln": ["(: cnet_isa_474fbda9cd (IsA sophistication quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sophistication is a kind of expertness", "pln": ["(: cnet_isa_20b788b147 (IsA sophistication expertness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sophomore is a kind of lowerclassman", "pln": ["(: cnet_isa_76436c5201 (IsA sophomore lowerclassman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sophomore class is a kind of class", "pln": ["(: cnet_isa_b04556820c (IsA sophomore_class class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sophora is a kind of rosid dicot genus", "pln": ["(: cnet_isa_a81493cc67 (IsA sophora rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soporific is a kind of drug", "pln": ["(: cnet_isa_4be6a80614 (IsA soporific drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soporific is a kind of hypnagogue", "pln": ["(: cnet_isa_c67b4fc7cf (IsA soporific hypnagogue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soprano is a kind of voice", "pln": ["(: cnet_isa_8e6559b2d5 (IsA soprano voice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soprano is a kind of pitch", "pln": ["(: cnet_isa_a7c0fc8b70 (IsA soprano pitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soprano is a kind of singing voice", "pln": ["(: cnet_isa_4263ffa6f9 (IsA soprano singing_voice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soprano is a kind of singer", "pln": ["(: cnet_isa_5a451c10f7 (IsA soprano singer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soprano clef is a kind of clef", "pln": ["(: cnet_isa_7575423087 (IsA soprano_clef clef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sorb is a kind of edible fruit", "pln": ["(: cnet_isa_4bca3d7b94 (IsA sorb edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sorbate is a kind of material", "pln": ["(: cnet_isa_4a3bb4fa62 (IsA sorbate material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sorbent is a kind of material", "pln": ["(: cnet_isa_b310fe14d9 (IsA sorbent material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sorbian is a kind of slavic", "pln": ["(: cnet_isa_e258b4879b (IsA sorbian slavic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sorbian is a kind of slav", "pln": ["(: cnet_isa_409af77948 (IsA sorbian slav) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sorbic acid is a kind of carboxylic acid", "pln": ["(: cnet_isa_303c6b9aeb (IsA sorbic_acid carboxylic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "sorrel is a kind of greens", "pln": ["(: cnet_isa_b941a39079 (IsA sorrel greens) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sorbus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_213988a536 (IsA sorbus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sorcerer is a kind of occultist", "pln": ["(: cnet_isa_3aa1d5a992 (IsA sorcerer occultist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sorceress is a kind of sorcerer", "pln": ["(: cnet_isa_03408bbf9b (IsA sorceress sorcerer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sorcery is a kind of magic", "pln": ["(: cnet_isa_653606e7c1 (IsA sorcery magic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sordidness is a kind of dirtiness", "pln": ["(: cnet_isa_0cc829e1b6 (IsA sordidness dirtiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sore is a kind of infection", "pln": ["(: cnet_isa_e7133f20ab (IsA sore infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sore throat is a kind of inflammatory disease", "pln": ["(: cnet_isa_42d7d81d8c (IsA sore_throat inflammatory_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sorehead is a kind of malcontent", "pln": ["(: cnet_isa_a40d2221d5 (IsA sorehead malcontent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sorex is a kind of mammal genus", "pln": ["(: cnet_isa_03dbbea9c3 (IsA sorex mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sorghum is a kind of syrup", "pln": ["(: cnet_isa_9d5bbadb05 (IsA sorghum syrup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sorghum is a kind of millet", "pln": ["(: cnet_isa_77bbc9933c (IsA sorghum millet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sorgo is a kind of sorghum", "pln": ["(: cnet_isa_5b3f389a8c (IsA sorgo sorghum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soricidae is a kind of mammal family", "pln": ["(: cnet_isa_7e6b0a2917 (IsA soricidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sorority is a kind of club", "pln": ["(: cnet_isa_f03594fb71 (IsA sorority club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sorption is a kind of natural process", "pln": ["(: cnet_isa_e4f56d0426 (IsA sorption natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sorrel is a kind of horse", "pln": ["(: cnet_isa_7c43cd24f6 (IsA sorrel horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sorrel is a kind of green", "pln": ["(: cnet_isa_fdf900dac8 (IsA sorrel green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sorrel tree is a kind of angiospermous tree", "pln": ["(: cnet_isa_fa9731510c (IsA sorrel_tree angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sorrel tree is a kind of hibiscus", "pln": ["(: cnet_isa_aae52f986e (IsA sorrel_tree hibiscus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sorrow is a kind of emotion", "pln": ["(: cnet_isa_60c42a11b2 (IsA sorrow emotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sorrow is a kind of sadness", "pln": ["(: cnet_isa_c98b6c2234 (IsA sorrow sadness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sort is a kind of similarity", "pln": ["(: cnet_isa_af27ceef96 (IsA sort similarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sort is a kind of person", "pln": ["(: cnet_isa_2f57701b87 (IsA sort person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sort is a kind of operation", "pln": ["(: cnet_isa_1938bdb204 (IsA sort operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sort program is a kind of utility program", "pln": ["(: cnet_isa_ca1c28506c (IsA sort_program utility_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sorter is a kind of machine", "pln": ["(: cnet_isa_45b04f50dd (IsA sorter machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sorter is a kind of clerk", "pln": ["(: cnet_isa_20e0e06bbd (IsA sorter clerk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sortie is a kind of flight", "pln": ["(: cnet_isa_37ccaf8ba3 (IsA sortie flight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sortie is a kind of military action", "pln": ["(: cnet_isa_2d1e9f8509 (IsA sortie military_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sorting is a kind of grouping", "pln": ["(: cnet_isa_86ceef7601 (IsA sorting grouping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sorting algorithm is a kind of algorithm", "pln": ["(: cnet_isa_9482ec29b9 (IsA sorting_algorithm algorithm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sorus is a kind of reproductive structure", "pln": ["(: cnet_isa_c1d44c5cca (IsA sorus reproductive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sos is a kind of distress signal", "pln": ["(: cnet_isa_f08be8511c (IsA sos distress_signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "soteriology is a kind of christian theology", "pln": ["(: cnet_isa_e4556344c1 (IsA soteriology christian_theology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sotho is a kind of bantu", "pln": ["(: cnet_isa_22b1f9822d (IsA sotho bantu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sottishness is a kind of unrestraint", "pln": ["(: cnet_isa_bedde23f63 (IsA sottishness unrestraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sottishness is a kind of drunkenness", "pln": ["(: cnet_isa_6c57002d11 (IsA sottishness drunkenness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sou is a kind of coin", "pln": ["(: cnet_isa_1de47aa925 (IsA sou coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sou wester is a kind of hat", "pln": ["(: cnet_isa_fe6afe0289 (IsA sou_wester hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "souari is a kind of tree", "pln": ["(: cnet_isa_bc7422fabe (IsA souari tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "souari nut is a kind of edible nut", "pln": ["(: cnet_isa_5ec451025e (IsA souari_nut edible_nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soubise is a kind of sauce", "pln": ["(: cnet_isa_370bb0ca65 (IsA soubise sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soubrette is a kind of bit part", "pln": ["(: cnet_isa_9252537ce8 (IsA soubrette bit_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soubrette is a kind of girl", "pln": ["(: cnet_isa_3145e65d0b (IsA soubrette girl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "souffle is a kind of dish", "pln": ["(: cnet_isa_8b85fa5bcf (IsA souffle dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "souk is a kind of open air market", "pln": ["(: cnet_isa_a540a34513 (IsA souk open_air_market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soul is a kind of embodiment", "pln": ["(: cnet_isa_36dd2187b0 (IsA soul embodiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "soul is a kind of black music", "pln": ["(: cnet_isa_597ff1252f (IsA soul black_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soul is a kind of gospel", "pln": ["(: cnet_isa_9f2c60e729 (IsA soul gospel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "soul is a kind of feeling", "pln": ["(: cnet_isa_8fb30bfd4a (IsA soul feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soul is a kind of spirit", "pln": ["(: cnet_isa_e2008da604 (IsA soul spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soul brother is a kind of negroid", "pln": ["(: cnet_isa_6ac88eb5ed (IsA soul_brother negroid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soul food is a kind of food", "pln": ["(: cnet_isa_abd0ef77ac (IsA soul_food food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soul kiss is a kind of kiss", "pln": ["(: cnet_isa_22456bed8a (IsA soul_kiss kiss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soul mate is a kind of lover", "pln": ["(: cnet_isa_aa1c74155e (IsA soul_mate lover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soul patch is a kind of beard", "pln": ["(: cnet_isa_4c47a62315 (IsA soul_patch beard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "soul searching is a kind of introspection", "pln": ["(: cnet_isa_964e80df40 (IsA soul_searching introspection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sound is a kind of physical phenomenon", "pln": ["(: cnet_isa_46e9f5bfa9 (IsA sound physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sound is a kind of vibration in air", "pln": ["(: cnet_isa_f52b5c119a (IsA sound vibration_in_air) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sound is a kind of wave", "pln": ["(: cnet_isa_f5c287ab2f (IsA sound wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sound is a kind of sound property", "pln": ["(: cnet_isa_e960f4624f (IsA sound sound_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sound is a kind of sensation", "pln": ["(: cnet_isa_423f8c57d5 (IsA sound sensation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sound is a kind of happening", "pln": ["(: cnet_isa_4068459977 (IsA sound happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sound is a kind of body of water", "pln": ["(: cnet_isa_aa5a9c4d06 (IsA sound body_of_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sound is a kind of mechanical phenomenon", "pln": ["(: cnet_isa_5dff2ac7b9 (IsA sound mechanical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sound bite is a kind of line", "pln": ["(: cnet_isa_3ab7749223 (IsA sound_bite line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sound bow is a kind of contact", "pln": ["(: cnet_isa_84e47a9a1a (IsA sound_bow contact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sound camera is a kind of motion picture camera", "pln": ["(: cnet_isa_c15a9b0190 (IsA sound_camera motion_picture_camera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sound effect is a kind of effect", "pln": ["(: cnet_isa_ff4882b621 (IsA sound_effect effect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sound film is a kind of motion picture film", "pln": ["(: cnet_isa_753dcbae37 (IsA sound_film motion_picture_film) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sound hole is a kind of hole", "pln": ["(: cnet_isa_7b4f85878c (IsA sound_hole hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sound law is a kind of law", "pln": ["(: cnet_isa_f167862310 (IsA sound_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sound pressure is a kind of pressure", "pln": ["(: cnet_isa_c2d95a24e9 (IsA sound_pressure pressure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sound property is a kind of property", "pln": ["(: cnet_isa_3467ba8996 (IsA sound_property property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sound ranging is a kind of measurement", "pln": ["(: cnet_isa_7ad9653ea9 (IsA sound_ranging measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sound recording is a kind of recording", "pln": ["(: cnet_isa_715808ab23 (IsA sound_recording recording) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sound reproduction is a kind of reproduction", "pln": ["(: cnet_isa_c770b6e6f2 (IsA sound_reproduction reproduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sound spectrograph is a kind of spectrograph", "pln": ["(: cnet_isa_cc0205fd5c (IsA sound_spectrograph spectrograph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sound spectrum is a kind of spectrum", "pln": ["(: cnet_isa_de75051d81 (IsA sound_spectrum spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sound truck is a kind of truck", "pln": ["(: cnet_isa_92b4398fa4 (IsA sound_truck truck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sound unit is a kind of unit of measurement", "pln": ["(: cnet_isa_d421cb43dd (IsA sound_unit unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sound wave is a kind of wave", "pln": ["(: cnet_isa_871596169f (IsA sound_wave wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soundbox is a kind of resonator", "pln": ["(: cnet_isa_ecb7cdc565 (IsA soundbox resonator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sounder is a kind of device", "pln": ["(: cnet_isa_5a1857a142 (IsA sounder device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sounding is a kind of measurement", "pln": ["(: cnet_isa_65accb3664 (IsA sounding measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sounding is a kind of depth", "pln": ["(: cnet_isa_aced8df756 (IsA sounding depth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sounding board is a kind of resonator", "pln": ["(: cnet_isa_282dd0c61f (IsA sounding_board resonator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sounding board is a kind of person", "pln": ["(: cnet_isa_f9c6db0355 (IsA sounding_board person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sounding lead is a kind of bob", "pln": ["(: cnet_isa_a42d320ff0 (IsA sounding_lead bob) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sounding rocket is a kind of test rocket", "pln": ["(: cnet_isa_003bb8bc79 (IsA sounding_rocket test_rocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soundman is a kind of technician", "pln": ["(: cnet_isa_95f8782dc1 (IsA soundman technician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soundness is a kind of condition", "pln": ["(: cnet_isa_fadb0b40df (IsA soundness condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soundtrack is a kind of sound recording", "pln": ["(: cnet_isa_7dd2e5f955 (IsA soundtrack sound_recording) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soup is a kind of food", "pln": ["(: cnet_isa_2d18d05a5f (IsA soup food) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soup is a kind of light meal", "pln": ["(: cnet_isa_172b0eda8a (IsA soup light_meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soup is a kind of dish", "pln": ["(: cnet_isa_896e11f887 (IsA soup dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soup is a kind of situation", "pln": ["(: cnet_isa_e9e2addacd (IsA soup situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "soup is a kind of composition", "pln": ["(: cnet_isa_f05f963a18 (IsA soup composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soup bowl is a kind of bowl", "pln": ["(: cnet_isa_ad630b0898 (IsA soup_bowl bowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soup du jour is a kind of soup", "pln": ["(: cnet_isa_5c10a435dc (IsA soup_du_jour soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soup kitchen is a kind of charity", "pln": ["(: cnet_isa_b0f503d5df (IsA soup_kitchen charity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soup ladle is a kind of ladle", "pln": ["(: cnet_isa_6f9c2d604e (IsA soup_ladle ladle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soup plate is a kind of plate", "pln": ["(: cnet_isa_953c85f306 (IsA soup_plate plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soup strainer is a kind of mustache", "pln": ["(: cnet_isa_86f4178bb6 (IsA soup_strainer mustache) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "soupfin shark is a kind of requiem shark", "pln": ["(: cnet_isa_e38a1ce355 (IsA soupfin_shark requiem_shark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soupspoon is a kind of spoon", "pln": ["(: cnet_isa_4755de8cab (IsA soupspoon spoon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sour is a kind of taste", "pln": ["(: cnet_isa_34c29667ce (IsA sour taste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sour is a kind of cocktail", "pln": ["(: cnet_isa_e12e637ad6 (IsA sour cocktail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sour bread is a kind of bread", "pln": ["(: cnet_isa_b629a926d0 (IsA sour_bread bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sour cherry is a kind of cherry", "pln": ["(: cnet_isa_b44c1bbb62 (IsA sour_cherry cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sour cherry is a kind of fruit tree", "pln": ["(: cnet_isa_c16ae06ec1 (IsA sour_cherry fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sour cream is a kind of cream", "pln": ["(: cnet_isa_2744e15fcc (IsA sour_cream cream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sour dock is a kind of dock", "pln": ["(: cnet_isa_b93c94fc41 (IsA sour_dock dock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sour gourd is a kind of edible fruit", "pln": ["(: cnet_isa_091de588f9 (IsA sour_gourd edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sour grape is a kind of disparagement", "pln": ["(: cnet_isa_5063141ba6 (IsA sour_grape disparagement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sour gum is a kind of tupelo", "pln": ["(: cnet_isa_1a924b6754 (IsA sour_gum tupelo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sour mash is a kind of whiskey", "pln": ["(: cnet_isa_c1120baee0 (IsA sour_mash whiskey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sour mash is a kind of mash", "pln": ["(: cnet_isa_9a48d7cc98 (IsA sour_mash mash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sour milk is a kind of milk", "pln": ["(: cnet_isa_3176fc597f (IsA sour_milk milk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sour orange is a kind of orange", "pln": ["(: cnet_isa_c07fba7b34 (IsA sour_orange orange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sour salt is a kind of flavorer", "pln": ["(: cnet_isa_d098e03a3e (IsA sour_salt flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sourball is a kind of hard candy", "pln": ["(: cnet_isa_166dce33dc (IsA sourball hard_candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "source is a kind of facility", "pln": ["(: cnet_isa_35bc0ca2f3 (IsA source facility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "source is a kind of inspiration", "pln": ["(: cnet_isa_7f800006c7 (IsA source inspiration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "source is a kind of document", "pln": ["(: cnet_isa_d707dbe1ec (IsA source document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "source is a kind of natural process", "pln": ["(: cnet_isa_22ce2fecd0 (IsA source natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "source book is a kind of reference book", "pln": ["(: cnet_isa_c56a21ec34 (IsA source_book reference_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "source code is a kind of ascii text file", "pln": ["(: cnet_isa_d4a9169998 (IsA source_code ascii_text_file) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "source language is a kind of language", "pln": ["(: cnet_isa_07abcfa397 (IsA source_language language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "source material is a kind of source", "pln": ["(: cnet_isa_29d39588c6 (IsA source_material source) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "source of illumination is a kind of device", "pln": ["(: cnet_isa_5c05d3c0c0 (IsA source_of_illumination device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "source program is a kind of program", "pln": ["(: cnet_isa_4d954257f0 (IsA source_program program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sourdine is a kind of mute", "pln": ["(: cnet_isa_d658ddd129 (IsA sourdine mute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sourdine is a kind of organ stop", "pln": ["(: cnet_isa_4417f1a6d5 (IsA sourdine organ_stop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sourdough is a kind of prospector", "pln": ["(: cnet_isa_ece352553f (IsA sourdough prospector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sourdough is a kind of settler", "pln": ["(: cnet_isa_9289c0a335 (IsA sourdough settler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sourdough is a kind of leaven", "pln": ["(: cnet_isa_d1d4e4c458 (IsA sourdough leaven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "souring is a kind of spoilage", "pln": ["(: cnet_isa_545d0f4667 (IsA souring spoilage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sourness is a kind of taste property", "pln": ["(: cnet_isa_d46f16dc32 (IsA sourness taste_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sourpuss is a kind of unwelcome person", "pln": ["(: cnet_isa_69bab59ee7 (IsA sourpuss unwelcome_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soursop is a kind of custard apple", "pln": ["(: cnet_isa_fb9bdbbb7b (IsA soursop custard_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "souse is a kind of sausage", "pln": ["(: cnet_isa_3a26516cba (IsA souse sausage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soutache is a kind of braid", "pln": ["(: cnet_isa_61be29f0cb (IsA soutache braid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soutane is a kind of cassock", "pln": ["(: cnet_isa_cb2a74b933 (IsA soutane cassock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south is a kind of cardinal compass point", "pln": ["(: cnet_isa_8b761b216d (IsA south cardinal_compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south is a kind of direction", "pln": ["(: cnet_isa_df104cbf20 (IsA south direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south is a kind of location", "pln": ["(: cnet_isa_d425c88d21 (IsA south location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south is a kind of region", "pln": ["(: cnet_isa_d3519b5264 (IsA south region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south africa is a kind of country", "pln": ["(: cnet_isa_284ae03d7d (IsA south_africa country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south african is a kind of african", "pln": ["(: cnet_isa_2217c023d8 (IsA south_african african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south african monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_67cfba062a (IsA south_african_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south african yellowwood is a kind of gymnospermous yellowwood", "pln": ["(: cnet_isa_ca6e0c566e (IsA south_african_yellowwood gymnospermous_yellowwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south america is a kind of collection", "pln": ["(: cnet_isa_e539a6ef7a (IsA south_america collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south american is a kind of american", "pln": ["(: cnet_isa_139462c3fd (IsA south_american american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south american country is a kind of country", "pln": ["(: cnet_isa_e4649d73c7 (IsA south_american_country country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "south american indian is a kind of native american", "pln": ["(: cnet_isa_aa0ebee6c2 (IsA south_american_indian native_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south american poison toad is a kind of frog", "pln": ["(: cnet_isa_abbd46da2f (IsA south_american_poison_toad frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south american sea lion is a kind of sea lion", "pln": ["(: cnet_isa_bcaa9a2853 (IsA south_american_sea_lion sea_lion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south american staghorn is a kind of staghorn fern", "pln": ["(: cnet_isa_b165f276a2 (IsA south_american_staghorn staghorn_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south by east is a kind of compass point", "pln": ["(: cnet_isa_1c299400e0 (IsA south_by_east compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south by west is a kind of compass point", "pln": ["(: cnet_isa_790cea41c6 (IsA south_by_west compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south carolina is a kind of state", "pln": ["(: cnet_isa_99a4bdc7bb (IsA south_carolina state) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south carolinian is a kind of american", "pln": ["(: cnet_isa_fbb341bd58 (IsA south_carolinian american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south central dravidian is a kind of dravidian", "pln": ["(: cnet_isa_de65e9d7e6 (IsA south_central_dravidian dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south dakota is a kind of state", "pln": ["(: cnet_isa_223f198add (IsA south_dakota state) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south dakotan is a kind of american", "pln": ["(: cnet_isa_08ed75e880 (IsA south_dakotan american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south dravidian is a kind of dravidian", "pln": ["(: cnet_isa_e2c4a6a336 (IsA south_dravidian dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south equatorial current is a kind of equatorial current", "pln": ["(: cnet_isa_b9db105590 (IsA south_equatorial_current equatorial_current) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "south korea is a kind of country", "pln": ["(: cnet_isa_8bae024fa1 (IsA south_korea country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south korean is a kind of korean", "pln": ["(: cnet_isa_169ff44c34 (IsA south_korean korean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south korean monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_7f8e7fb695 (IsA south_korean_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "south korean won is a kind of south korean monetary unit", "pln": ["(: cnet_isa_2f71f65e22 (IsA south_korean_won south_korean_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south pole is a kind of in antarctica", "pln": ["(: cnet_isa_1de8677666 (IsA south_pole in_antarctica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south sea is a kind of sea", "pln": ["(: cnet_isa_d4a4b17962 (IsA south_sea sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south sea island is a kind of island", "pln": ["(: cnet_isa_265eba2b85 (IsA south_sea_island island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south side is a kind of side", "pln": ["(: cnet_isa_cf49ab5a72 (IsA south_side side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south southeast is a kind of compass point", "pln": ["(: cnet_isa_772cc9c9fb (IsA south_southeast compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south southwest is a kind of compass point", "pln": ["(: cnet_isa_77aa2181c2 (IsA south_southwest compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "south wind is a kind of wind", "pln": ["(: cnet_isa_85cb2bbce8 (IsA south_wind wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southeast is a kind of compass point", "pln": ["(: cnet_isa_3565ac3eca (IsA southeast compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "southeast is a kind of direction", "pln": ["(: cnet_isa_86913c677c (IsA southeast direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southeast is a kind of location", "pln": ["(: cnet_isa_87d404591d (IsA southeast location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southeast by east is a kind of compass point", "pln": ["(: cnet_isa_ea18613c7a (IsA southeast_by_east compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southeast by south is a kind of compass point", "pln": ["(: cnet_isa_66f022fae8 (IsA southeast_by_south compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southeaster is a kind of wind", "pln": ["(: cnet_isa_25219f9d29 (IsA southeaster wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southeastern pocket gopher is a kind of gopher", "pln": ["(: cnet_isa_cec311f79e (IsA southeastern_pocket_gopher gopher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southern aster is a kind of aster", "pln": ["(: cnet_isa_141f5ee894 (IsA southern_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southern baptist is a kind of baptist", "pln": ["(: cnet_isa_08148db5ed (IsA southern_baptist baptist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southern baptist convention is a kind of association", "pln": ["(: cnet_isa_c8456f2c92 (IsA southern_baptist_convention association) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southern beech is a kind of tree", "pln": ["(: cnet_isa_067a85afce (IsA southern_beech tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southern blue flag is a kind of iris", "pln": ["(: cnet_isa_17c11cfad1 (IsA southern_blue_flag iris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "southern bog lemming is a kind of lemming", "pln": ["(: cnet_isa_bef75e9af7 (IsA southern_bog_lemming lemming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southern buckthorn is a kind of buckthorn", "pln": ["(: cnet_isa_7bbced05c2 (IsA southern_buckthorn buckthorn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southern cabbage butterfly is a kind of cabbage butterfly", "pln": ["(: cnet_isa_83274eebe5 (IsA southern_cabbage_butterfly cabbage_butterfly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "southern crab apple is a kind of crab apple", "pln": ["(: cnet_isa_0e33c0b071 (IsA southern_crab_apple crab_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southern dewberry is a kind of dewberry", "pln": ["(: cnet_isa_31651ad29b (IsA southern_dewberry dewberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southern flounder is a kind of lefteye flounder", "pln": ["(: cnet_isa_e503564995 (IsA southern_flounder lefteye_flounder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southern flying squirrel is a kind of american flying squirrel", "pln": ["(: cnet_isa_00983f032f (IsA southern_flying_squirrel american_flying_squirrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southern harebell is a kind of campanula", "pln": ["(: cnet_isa_858be793f8 (IsA southern_harebell campanula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southern live oak is a kind of live oak", "pln": ["(: cnet_isa_d0b74484cc (IsA southern_live_oak live_oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southern magnolia is a kind of magnolia", "pln": ["(: cnet_isa_63f67473b4 (IsA southern_magnolia magnolia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southern red cedar is a kind of juniper", "pln": ["(: cnet_isa_ec8c7a8035 (IsA southern_red_cedar juniper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southern red oak is a kind of red oak", "pln": ["(: cnet_isa_6002aff06a (IsA southern_red_oak red_oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southern spadefoot is a kind of spadefoot", "pln": ["(: cnet_isa_8eefcbd81a (IsA southern_spadefoot spadefoot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southern spatterdock is a kind of water lily", "pln": ["(: cnet_isa_0d913ad7b2 (IsA southern_spatterdock water_lily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southern tai is a kind of tai", "pln": ["(: cnet_isa_ba319f8b2c (IsA southern_tai tai) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "southern white cedar is a kind of cedar", "pln": ["(: cnet_isa_7347919928 (IsA southern_white_cedar cedar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "southerner is a kind of american", "pln": ["(: cnet_isa_83d2009ddb (IsA southerner american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southernism is a kind of attitude", "pln": ["(: cnet_isa_d03712cdc4 (IsA southernism attitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southernism is a kind of saying", "pln": ["(: cnet_isa_3d0e19177c (IsA southernism saying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southernness is a kind of position", "pln": ["(: cnet_isa_c030408868 (IsA southernness position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southernwood is a kind of wormwood", "pln": ["(: cnet_isa_fa9db60cac (IsA southernwood wormwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southwest is a kind of compass point", "pln": ["(: cnet_isa_e285c294f6 (IsA southwest compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southwest is a kind of direction", "pln": ["(: cnet_isa_666df53720 (IsA southwest direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southwest is a kind of location", "pln": ["(: cnet_isa_0568f6016f (IsA southwest location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southwest by south is a kind of compass point", "pln": ["(: cnet_isa_cfa9e7349b (IsA southwest_by_south compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southwest by west is a kind of compass point", "pln": ["(: cnet_isa_c2772af65c (IsA southwest_by_west compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southwester is a kind of wind", "pln": ["(: cnet_isa_fcf9862507 (IsA southwester wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southwestern is a kind of middle english", "pln": ["(: cnet_isa_5f704f5b9d (IsA southwestern middle_english) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southwestern lip fern is a kind of lip fern", "pln": ["(: cnet_isa_faa60932dd (IsA southwestern_lip_fern lip_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southwestern toad is a kind of true toad", "pln": ["(: cnet_isa_7ba02c5f1f (IsA southwestern_toad true_toad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "southwestern white pine is a kind of white pine", "pln": ["(: cnet_isa_396de2d1c4 (IsA southwestern_white_pine white_pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "souvlaki is a kind of kabob", "pln": ["(: cnet_isa_d360b2616d (IsA souvlaki kabob) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sovereign is a kind of head of state", "pln": ["(: cnet_isa_d0e9a518cd (IsA sovereign head_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sovereign is a kind of ruler", "pln": ["(: cnet_isa_4ea0f65a04 (IsA sovereign ruler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sovereign immunity is a kind of exemption", "pln": ["(: cnet_isa_5335a8a51d (IsA sovereign_immunity exemption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sovereignty is a kind of authority", "pln": ["(: cnet_isa_d594bd236f (IsA sovereignty authority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sovereignty is a kind of self government", "pln": ["(: cnet_isa_5ae88f1c81 (IsA sovereignty self_government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soviet is a kind of council", "pln": ["(: cnet_isa_cf6a86e154 (IsA soviet council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "soviet army is a kind of refered to as red army", "pln": ["(: cnet_isa_d6aa98e35e (IsA soviet_army refered_to_as_red_army) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soviet socialist republic is a kind of state", "pln": ["(: cnet_isa_13b61be3ae (IsA soviet_socialist_republic state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soviet is a kind of state", "pln": ["(: cnet_isa_5e2935f27a (IsA soviet state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sow is a kind of swine", "pln": ["(: cnet_isa_d4fe890eeb (IsA sow swine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sow bug is a kind of woodlouse", "pln": ["(: cnet_isa_e57f78f2ec (IsA sow_bug woodlouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sow thistle is a kind of shrub", "pln": ["(: cnet_isa_dcfa635e8e (IsA sow_thistle shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sowbane is a kind of goosefoot", "pln": ["(: cnet_isa_9a0355f9bc (IsA sowbane goosefoot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sowbelly is a kind of salt pork", "pln": ["(: cnet_isa_b793612c88 (IsA sowbelly salt_pork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sowbread is a kind of flower", "pln": ["(: cnet_isa_db63d60005 (IsA sowbread flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sower is a kind of farmer", "pln": ["(: cnet_isa_2594266cfd (IsA sower farmer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soy is a kind of bean", "pln": ["(: cnet_isa_c4bdb217d8 (IsA soy bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "soy is a kind of legume", "pln": ["(: cnet_isa_fbe839a2c9 (IsA soy legume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soy sauce is a kind of condiment", "pln": ["(: cnet_isa_3a3726ba23 (IsA soy_sauce condiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soya milk is a kind of milk", "pln": ["(: cnet_isa_6f5b3fa629 (IsA soya_milk milk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soybean future is a kind of future", "pln": ["(: cnet_isa_33f79a16bb (IsA soybean_future future) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soybean meal is a kind of flour", "pln": ["(: cnet_isa_d9e83737ac (IsA soybean_meal flour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "soybean oil is a kind of vegetable oil", "pln": ["(: cnet_isa_6bd9c6b640 (IsA soybean_oil vegetable_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "space is a kind of area", "pln": ["(: cnet_isa_9baa2f413a (IsA space area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "space is a kind of dangerous place", "pln": ["(: cnet_isa_266f1fcec7 (IsA space dangerous_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "space is a kind of vacuum", "pln": ["(: cnet_isa_8a30008cbe (IsA space vacuum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "space is a kind of attribute", "pln": ["(: cnet_isa_71a0646294 (IsA space attribute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "space is a kind of character", "pln": ["(: cnet_isa_cd91e80777 (IsA space character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "space is a kind of amorphous shape", "pln": ["(: cnet_isa_1ed1059f08 (IsA space amorphous_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "space is a kind of location", "pln": ["(: cnet_isa_3b456d6473 (IsA space location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "space age is a kind of time", "pln": ["(: cnet_isa_27a29c7578 (IsA space_age time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "space bar is a kind of key", "pln": ["(: cnet_isa_f3f357b54f (IsA space_bar key) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "space cadet is a kind of simpleton", "pln": ["(: cnet_isa_43aeda3afd (IsA space_cadet simpleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "space capsule is a kind of spacecraft", "pln": ["(: cnet_isa_3d9d21660b (IsA space_capsule spacecraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "space heater is a kind of heater", "pln": ["(: cnet_isa_2ed83dee79 (IsA space_heater heater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "space helmet is a kind of helmet", "pln": ["(: cnet_isa_799c13e1f3 (IsA space_helmet helmet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "space lattice is a kind of lattice", "pln": ["(: cnet_isa_53c4cb2fcf (IsA space_lattice lattice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "space medicine is a kind of medicine", "pln": ["(: cnet_isa_6b2eb2c5ec (IsA space_medicine medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "space probe is a kind of guided missile", "pln": ["(: cnet_isa_e297c0139f (IsA space_probe guided_missile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "space program is a kind of program", "pln": ["(: cnet_isa_ddee1b9093 (IsA space_program program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "space rocket is a kind of rocket", "pln": ["(: cnet_isa_c42baec3b0 (IsA space_rocket rocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "space shuttle is a kind of spacecraft", "pln": ["(: cnet_isa_bea49c9ce1 (IsA space_shuttle spacecraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "space station is a kind of satellite", "pln": ["(: cnet_isa_c7d0b76249 (IsA space_station satellite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "space time is a kind of coordinate system", "pln": ["(: cnet_isa_ad79ff891e (IsA space_time coordinate_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "space walk is a kind of activity", "pln": ["(: cnet_isa_49ce2c435d (IsA space_walk activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "space writer is a kind of writer", "pln": ["(: cnet_isa_899ae34db4 (IsA space_writer writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spacecraft is a kind of craft", "pln": ["(: cnet_isa_af38a93ee8 (IsA spacecraft craft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spacecraft is a kind of satellite", "pln": ["(: cnet_isa_10e33d32d4 (IsA spacecraft satellite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spacecraft clock time is a kind of clock time", "pln": ["(: cnet_isa_589a6f56af (IsA spacecraft_clock_time clock_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spacecraft event time is a kind of coordinated universal time", "pln": ["(: cnet_isa_a084c277e5 (IsA spacecraft_event_time coordinated_universal_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spaceflight is a kind of voyage", "pln": ["(: cnet_isa_f13d48b5e1 (IsA spaceflight voyage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spacesuit is a kind of pressure suit", "pln": ["(: cnet_isa_2e59e2816a (IsA spacesuit pressure_suit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spacewalker is a kind of astronaut", "pln": ["(: cnet_isa_d5b59632c9 (IsA spacewalker astronaut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spacing is a kind of placement", "pln": ["(: cnet_isa_b3d3a2c2c1 (IsA spacing placement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spacing is a kind of rate", "pln": ["(: cnet_isa_72eb8e104f (IsA spacing rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spackle is a kind of plaster", "pln": ["(: cnet_isa_72a5634dcc (IsA spackle plaster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spade is a kind of hand shovel", "pln": ["(: cnet_isa_be889b9689 (IsA spade hand_shovel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spade is a kind of playing card", "pln": ["(: cnet_isa_1bd3d7e612 (IsA spade playing_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spade bit is a kind of bit", "pln": ["(: cnet_isa_8211f83809 (IsA spade_bit bit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spade casino is a kind of casino", "pln": ["(: cnet_isa_85fb2538db (IsA spade_casino casino) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spadefish is a kind of percoid fish", "pln": ["(: cnet_isa_07345e6b0c (IsA spadefish percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spadefoot is a kind of frog", "pln": ["(: cnet_isa_33d16705a0 (IsA spadefoot frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spadework is a kind of work", "pln": ["(: cnet_isa_6bd887fdaa (IsA spadework work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spadix is a kind of axis", "pln": ["(: cnet_isa_6466e3983a (IsA spadix axis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spaghetti is a kind of food", "pln": ["(: cnet_isa_114b667a38 (IsA spaghetti food) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spaghetti is a kind of pasta", "pln": ["(: cnet_isa_859d9684cf (IsA spaghetti pasta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spaghetti and meatball is a kind of dish", "pln": ["(: cnet_isa_0baee963c5 (IsA spaghetti_and_meatball dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spaghetti junction is a kind of interchange", "pln": ["(: cnet_isa_89001a86d9 (IsA spaghetti_junction interchange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spaghetti sauce is a kind of sauce", "pln": ["(: cnet_isa_2d0201ad0e (IsA spaghetti_sauce sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spaghetti squash is a kind of summer squash", "pln": ["(: cnet_isa_4c4758386a (IsA spaghetti_squash summer_squash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spaghetti western is a kind of western", "pln": ["(: cnet_isa_3cfbac39db (IsA spaghetti_western western) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spaghettini is a kind of pasta", "pln": ["(: cnet_isa_0281669533 (IsA spaghettini pasta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spain is a kind of country", "pln": ["(: cnet_isa_54f049a005 (IsA spain country) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spalacidae is a kind of mammal family", "pln": ["(: cnet_isa_5f823fc1f3 (IsA spalacidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spalax is a kind of mammal genus", "pln": ["(: cnet_isa_7d62ea4aaf (IsA spalax mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spall is a kind of fragment", "pln": ["(: cnet_isa_4a9394adfb (IsA spall fragment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spallation is a kind of nuclear reaction", "pln": ["(: cnet_isa_b72ee02e5b (IsA spallation nuclear_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spam is a kind of electronic mail", "pln": ["(: cnet_isa_8fe290aa47 (IsA spam electronic_mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spam is a kind of canned meat", "pln": ["(: cnet_isa_54aae0a7f4 (IsA spam canned_meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spammer is a kind of sender", "pln": ["(: cnet_isa_a11f7da70b (IsA spammer sender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "span is a kind of distance", "pln": ["(: cnet_isa_41654453ae (IsA span distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "span is a kind of linear unit", "pln": ["(: cnet_isa_f0272fadb1 (IsA span linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "span is a kind of duration", "pln": ["(: cnet_isa_0c2d50cb6d (IsA span duration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "span loading is a kind of loading", "pln": ["(: cnet_isa_d015752b06 (IsA span_loading loading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spandau is a kind of machine gun", "pln": ["(: cnet_isa_cee44734e2 (IsA spandau machine_gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spandex is a kind of fabric", "pln": ["(: cnet_isa_93587884bc (IsA spandex fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spandrel is a kind of surface", "pln": ["(: cnet_isa_0961ca0d63 (IsA spandrel surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spaniard is a kind of european", "pln": ["(: cnet_isa_6634f2b2b7 (IsA spaniard european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spaniel is a kind of dog", "pln": ["(: cnet_isa_58403d1854 (IsA spaniel dog) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spaniel is a kind of sporting dog", "pln": ["(: cnet_isa_dfd300440b (IsA spaniel sporting_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spanish is a kind of language", "pln": ["(: cnet_isa_46f5828bb9 (IsA spanish language) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spanish is a kind of romance", "pln": ["(: cnet_isa_12503e0b90 (IsA spanish romance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spanish bayonet is a kind of yucca", "pln": ["(: cnet_isa_19228d70ea (IsA spanish_bayonet yucca) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spanish broom is a kind of broom", "pln": ["(: cnet_isa_d683db49c8 (IsA spanish_broom broom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spanish cedar is a kind of mahogany", "pln": ["(: cnet_isa_5df26f6462 (IsA spanish_cedar mahogany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spanish dagger is a kind of yucca", "pln": ["(: cnet_isa_4a3fb98479 (IsA spanish_dagger yucca) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spanish elm is a kind of angiospermous tree", "pln": ["(: cnet_isa_79ebce6549 (IsA spanish_elm angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spanish fly is a kind of blister beetle", "pln": ["(: cnet_isa_cf148d5daa (IsA spanish_fly blister_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spanish grunt is a kind of grunt", "pln": ["(: cnet_isa_d384060fa3 (IsA spanish_grunt grunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spanish heath is a kind of erica", "pln": ["(: cnet_isa_ca3d515f7d (IsA spanish_heath erica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spanish iris is a kind of beardless iris", "pln": ["(: cnet_isa_efc274bb60 (IsA spanish_iris beardless_iris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spanish lime is a kind of fruit tree", "pln": ["(: cnet_isa_bacfe49b7f (IsA spanish_lime fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spanish mackerel is a kind of mackerel", "pln": ["(: cnet_isa_0189d8a34f (IsA spanish_mackerel mackerel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spanish monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_35bced2c7c (IsA spanish_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spanish moss is a kind of air plant", "pln": ["(: cnet_isa_ac2b0bcd1a (IsA spanish_moss air_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spanish needle is a kind of bur", "pln": ["(: cnet_isa_9dbca15ba9 (IsA spanish_needle bur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spanish needle is a kind of bur marigold", "pln": ["(: cnet_isa_3627c0cea3 (IsA spanish_needle bur_marigold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spanish oak is a kind of oak", "pln": ["(: cnet_isa_464910d781 (IsA spanish_oak oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spanish onion is a kind of onion", "pln": ["(: cnet_isa_1bb34ac70d (IsA spanish_onion onion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spanish oyster plant is a kind of golden thistle", "pln": ["(: cnet_isa_3b0da7950f (IsA spanish_oyster_plant golden_thistle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spanish paprika is a kind of paprika", "pln": ["(: cnet_isa_b390694af4 (IsA spanish_paprika paprika) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spanish people is a kind of nation", "pln": ["(: cnet_isa_a67b35a692 (IsA spanish_people nation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spanish rice is a kind of dish", "pln": ["(: cnet_isa_4bcc38be91 (IsA spanish_rice dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spanish tamarind is a kind of tree", "pln": ["(: cnet_isa_90abaa9f1d (IsA spanish_tamarind tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spank is a kind of smack", "pln": ["(: cnet_isa_c71905fe50 (IsA spank smack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spanker is a kind of fore and aft sail", "pln": ["(: cnet_isa_a8e300e675 (IsA spanker fore_and_aft_sail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spanking is a kind of discipline", "pln": ["(: cnet_isa_58b257bd7b (IsA spanking discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spar is a kind of boxing", "pln": ["(: cnet_isa_c5257673a2 (IsA spar boxing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spar is a kind of pole", "pln": ["(: cnet_isa_d77106d4cb (IsA spar pole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spar is a kind of mineral", "pln": ["(: cnet_isa_7fac581739 (IsA spar mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spar buoy is a kind of buoy", "pln": ["(: cnet_isa_678844be1a (IsA spar_buoy buoy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sparaxis is a kind of liliid monocot genus", "pln": ["(: cnet_isa_4c2575fd1b (IsA sparaxis liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spare is a kind of score", "pln": ["(: cnet_isa_ed4f22e4f8 (IsA spare score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spare part is a kind of component", "pln": ["(: cnet_isa_d2d8277250 (IsA spare_part component) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spare time is a kind of time off", "pln": ["(: cnet_isa_9699a77f97 (IsA spare_time time_off) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spare tire is a kind of adipose tissue", "pln": ["(: cnet_isa_e5b274483d (IsA spare_tire adipose_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sparer is a kind of benefactor", "pln": ["(: cnet_isa_1ef8e59c2d (IsA sparer benefactor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sparerib is a kind of rib", "pln": ["(: cnet_isa_2f286ab4a5 (IsA sparerib rib) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sparerib is a kind of cut of pork", "pln": ["(: cnet_isa_c65a23eb07 (IsA sparerib cut_of_pork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sparganiaceae is a kind of monocot family", "pln": ["(: cnet_isa_f032c3f0a9 (IsA sparganiaceae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sparganium is a kind of monocot genus", "pln": ["(: cnet_isa_64dcace3a6 (IsA sparganium monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sparge pipe is a kind of pipe", "pln": ["(: cnet_isa_aa2c3f2c5b (IsA sparge_pipe pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sparid is a kind of percoid fish", "pln": ["(: cnet_isa_9cd37eb8b4 (IsA sparid percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sparidae is a kind of fish family", "pln": ["(: cnet_isa_42e178bd1c (IsA sparidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spark is a kind of fragment", "pln": ["(: cnet_isa_bce1a72e5d (IsA spark fragment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spark is a kind of trace", "pln": ["(: cnet_isa_6b41f5c1db (IsA spark trace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spark advance is a kind of timing", "pln": ["(: cnet_isa_57d63d6a9d (IsA spark_advance timing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spark arrester is a kind of electrical device", "pln": ["(: cnet_isa_714a2ba8db (IsA spark_arrester electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spark arrester is a kind of net", "pln": ["(: cnet_isa_552f583169 (IsA spark_arrester net) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spark chamber is a kind of particle detector", "pln": ["(: cnet_isa_bb437e2ef4 (IsA spark_chamber particle_detector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spark coil is a kind of induction coil", "pln": ["(: cnet_isa_f34b245f50 (IsA spark_coil induction_coil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spark gap is a kind of component", "pln": ["(: cnet_isa_e8b3fa318b (IsA spark_gap component) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spark gap is a kind of gap", "pln": ["(: cnet_isa_0681ebe144 (IsA spark_gap gap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spark lever is a kind of lever", "pln": ["(: cnet_isa_f00d33ac56 (IsA spark_lever lever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spark plug is a kind of electrical device", "pln": ["(: cnet_isa_6a039abcbc (IsA spark_plug electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spark transmitter is a kind of radio transmitter", "pln": ["(: cnet_isa_90c1c2fa41 (IsA spark_transmitter radio_transmitter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sparkle is a kind of expression", "pln": ["(: cnet_isa_e6c521839e (IsA sparkle expression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sparkle is a kind of vitality", "pln": ["(: cnet_isa_378e64521c (IsA sparkle vitality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sparkle metal is a kind of matte", "pln": ["(: cnet_isa_1803aaefda (IsA sparkle_metal matte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sparkler is a kind of firework", "pln": ["(: cnet_isa_48c8a9738b (IsA sparkler firework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sparkling wine is a kind of wine", "pln": ["(: cnet_isa_9c09652b49 (IsA sparkling_wine wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sparkplug wrench is a kind of wrench", "pln": ["(: cnet_isa_db20ddc0a4 (IsA sparkplug_wrench wrench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sparling is a kind of smelt", "pln": ["(: cnet_isa_eb9d87cb61 (IsA sparling smelt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sparmannia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_3ff9db9790 (IsA sparmannia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sparring is a kind of controversy", "pln": ["(: cnet_isa_61940fd288 (IsA sparring controversy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sparring match is a kind of boxing match", "pln": ["(: cnet_isa_639001bafb (IsA sparring_match boxing_match) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sparring partner is a kind of boxer", "pln": ["(: cnet_isa_f1a6adc6d7 (IsA sparring_partner boxer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sparrow is a kind of passerine", "pln": ["(: cnet_isa_df5774e28b (IsA sparrow passerine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sparrow hawk is a kind of falcon", "pln": ["(: cnet_isa_6ed70acf28 (IsA sparrow_hawk falcon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sparrow hawk is a kind of hawk", "pln": ["(: cnet_isa_a76d40c4c0 (IsA sparrow_hawk hawk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sparrow unit is a kind of hit squad", "pln": ["(: cnet_isa_3205bcf748 (IsA sparrow_unit hit_squad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sparseness is a kind of meagerness", "pln": ["(: cnet_isa_d4a4011a16 (IsA sparseness meagerness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spartan is a kind of hellene", "pln": ["(: cnet_isa_34183f90b2 (IsA spartan hellene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spartina is a kind of monocot genus", "pln": ["(: cnet_isa_416f3b497d (IsA spartina monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spartium is a kind of rosid dicot genus", "pln": ["(: cnet_isa_494b174e37 (IsA spartium rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spasm is a kind of constriction", "pln": ["(: cnet_isa_e875e6459a (IsA spasm constriction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spasm is a kind of symptom", "pln": ["(: cnet_isa_fd0d0aa5b0 (IsA spasm symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spasmolysis is a kind of easing", "pln": ["(: cnet_isa_2a66b0c3ae (IsA spasmolysis easing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spastic is a kind of paralytic", "pln": ["(: cnet_isa_66ebc4367e (IsA spastic paralytic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spastic abasia is a kind of abasia", "pln": ["(: cnet_isa_e36edeff64 (IsA spastic_abasia abasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spastic bladder is a kind of bladder disorder", "pln": ["(: cnet_isa_0e28f68601 (IsA spastic_bladder bladder_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spasticity is a kind of fitfulness", "pln": ["(: cnet_isa_07afb7349d (IsA spasticity fitfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spat is a kind of young", "pln": ["(: cnet_isa_20d0ea9839 (IsA spat young) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spat is a kind of legging", "pln": ["(: cnet_isa_da8dae8e7e (IsA spat legging) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spatangoida is a kind of animal order", "pln": ["(: cnet_isa_488013acba (IsA spatangoida animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spatchcock is a kind of chicken", "pln": ["(: cnet_isa_6ab50ac0df (IsA spatchcock chicken) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spathe is a kind of bract", "pln": ["(: cnet_isa_af9824dfcc (IsA spathe bract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spathiphyllum is a kind of flower", "pln": ["(: cnet_isa_0845df0bf1 (IsA spathiphyllum flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spatial property is a kind of property", "pln": ["(: cnet_isa_a547753801 (IsA spatial_property property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spatter is a kind of painting", "pln": ["(: cnet_isa_43345fe35f (IsA spatter painting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spatter is a kind of noise", "pln": ["(: cnet_isa_5ef9e21f2b (IsA spatter noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spatterdock is a kind of water lily", "pln": ["(: cnet_isa_a5c865d752 (IsA spatterdock water_lily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spatula is a kind of hand tool", "pln": ["(: cnet_isa_86e8d5f26f (IsA spatula hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spatula is a kind of turner", "pln": ["(: cnet_isa_2937956aa4 (IsA spatula turner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spatulate leaf is a kind of simple leaf", "pln": ["(: cnet_isa_3609f00501 (IsA spatulate_leaf simple_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spavin is a kind of animal disease", "pln": ["(: cnet_isa_a5a38c48b9 (IsA spavin animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spawn is a kind of egg", "pln": ["(: cnet_isa_d9680443a1 (IsA spawn egg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spawner is a kind of fish", "pln": ["(: cnet_isa_4440f7f249 (IsA spawner fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spaying is a kind of neutering", "pln": ["(: cnet_isa_48936a7ef8 (IsA spaying neutering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speakeasy is a kind of barroom", "pln": ["(: cnet_isa_fb9f02f36c (IsA speakeasy barroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speaker is a kind of articulator", "pln": ["(: cnet_isa_3cda94d529 (IsA speaker articulator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speaker is a kind of presiding officer", "pln": ["(: cnet_isa_39bfe16ebd (IsA speaker presiding_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speaker identification is a kind of recognition", "pln": ["(: cnet_isa_db65a46151 (IsA speaker_identification recognition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speakerphone is a kind of telephone", "pln": ["(: cnet_isa_c87c4ebf43 (IsA speakerphone telephone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speakership is a kind of position", "pln": ["(: cnet_isa_ad8fa5468b (IsA speakership position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speaking is a kind of utterance", "pln": ["(: cnet_isa_de94300819 (IsA speaking utterance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speaking trumpet is a kind of acoustic device", "pln": ["(: cnet_isa_c84349049b (IsA speaking_trumpet acoustic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speaking tube is a kind of tube", "pln": ["(: cnet_isa_79433b930e (IsA speaking_tube tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spear is a kind of weapon", "pln": ["(: cnet_isa_f1d4c011cf (IsA spear weapon) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spear is a kind of implement", "pln": ["(: cnet_isa_a9608e20ed (IsA spear implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spearfish is a kind of billfish", "pln": ["(: cnet_isa_eb3c012ad8 (IsA spearfish billfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spearhead is a kind of point", "pln": ["(: cnet_isa_b303ef2b03 (IsA spearhead point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spearhead is a kind of military unit", "pln": ["(: cnet_isa_30f9afdca5 (IsA spearhead military_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spearhead is a kind of leader", "pln": ["(: cnet_isa_41eda814f4 (IsA spearhead leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spearmint is a kind of mint", "pln": ["(: cnet_isa_dd7c875bc7 (IsA spearmint mint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spearmint oil is a kind of flavorer", "pln": ["(: cnet_isa_0ff017e4d3 (IsA spearmint_oil flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spearnose bat is a kind of leafnose bat", "pln": ["(: cnet_isa_8a96fa9b2f (IsA spearnose_bat leafnose_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "special is a kind of offer", "pln": ["(: cnet_isa_61de59d22f (IsA special offer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "special is a kind of television program", "pln": ["(: cnet_isa_b5c2031892 (IsA special television_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "special is a kind of dish", "pln": ["(: cnet_isa_26997280c3 (IsA special dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "special act is a kind of legislative act", "pln": ["(: cnet_isa_fffc744cfd (IsA special_act legislative_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "special agent is a kind of agent", "pln": ["(: cnet_isa_d4ea78ded1 (IsA special_agent agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "special air service is a kind of commando", "pln": ["(: cnet_isa_7857f00c4c (IsA special_air_service commando) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "special assessment is a kind of tax", "pln": ["(: cnet_isa_fd8c4a59c2 (IsA special_assessment tax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "special branch is a kind of government department", "pln": ["(: cnet_isa_0828d261c7 (IsA special_branch government_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "special court martial is a kind of court martial", "pln": ["(: cnet_isa_c9065a1887 (IsA special_court_martial court_martial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "special delivery is a kind of mail", "pln": ["(: cnet_isa_f8ddfc9144 (IsA special_delivery mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "special drawing right is a kind of reserve asset", "pln": ["(: cnet_isa_7d4b8b79eb (IsA special_drawing_right reserve_asset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "special education is a kind of education", "pln": ["(: cnet_isa_73b6de5094 (IsA special_education education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "special effect is a kind of effect", "pln": ["(: cnet_isa_9c6819e995 (IsA special_effect effect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "special force is a kind of division", "pln": ["(: cnet_isa_ee83fe1e45 (IsA special_force division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "special interest is a kind of interest", "pln": ["(: cnet_isa_1465e05720 (IsA special_interest interest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "special interest is a kind of political unit", "pln": ["(: cnet_isa_a327082120 (IsA special_interest political_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "special jury is a kind of jury", "pln": ["(: cnet_isa_9b4539af1c (IsA special_jury jury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "special olympic is a kind of athletic contest", "pln": ["(: cnet_isa_66d3505541 (IsA special_olympic athletic_contest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "special pleading is a kind of specious argument", "pln": ["(: cnet_isa_dae84f2aea (IsA special_pleading specious_argument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "special pleading is a kind of pleading", "pln": ["(: cnet_isa_7074640059 (IsA special_pleading pleading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "special relativity is a kind of relativity", "pln": ["(: cnet_isa_41e273f758 (IsA special_relativity relativity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "special session is a kind of session", "pln": ["(: cnet_isa_8e3dbee4a6 (IsA special_session session) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "special verdict is a kind of verdict", "pln": ["(: cnet_isa_dcd865fc77 (IsA special_verdict verdict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "specialism is a kind of concentration", "pln": ["(: cnet_isa_e48ab3a8a1 (IsA specialism concentration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "specialist is a kind of doctor", "pln": ["(: cnet_isa_b6bad412ad (IsA specialist doctor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "specialist is a kind of expert", "pln": ["(: cnet_isa_d1da7bece0 (IsA specialist expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "specialization is a kind of career", "pln": ["(: cnet_isa_b8a73b503d (IsA specialization career) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "specialization is a kind of change of state", "pln": ["(: cnet_isa_460a37f654 (IsA specialization change_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "specialization is a kind of adaptation", "pln": ["(: cnet_isa_2977b7d235 (IsA specialization adaptation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "specialty store is a kind of shop", "pln": ["(: cnet_isa_fd7fb7ea2e (IsA specialty_store shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speciation is a kind of evolution", "pln": ["(: cnet_isa_3782aa5d0d (IsA speciation evolution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "specy is a kind of taxonomic group", "pln": ["(: cnet_isa_61a91be86a (IsA specy taxonomic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "specy is a kind of kind", "pln": ["(: cnet_isa_a024b7e019 (IsA specy kind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "specific is a kind of medicine", "pln": ["(: cnet_isa_6176737101 (IsA specific medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "specific gravity is a kind of relative density", "pln": ["(: cnet_isa_b641e51e94 (IsA specific_gravity relative_density) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "specific heat is a kind of heat", "pln": ["(: cnet_isa_44a042975f (IsA specific_heat heat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "specific performance is a kind of performance", "pln": ["(: cnet_isa_8418fedeb9 (IsA specific_performance performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "specification is a kind of description", "pln": ["(: cnet_isa_5f302d2886 (IsA specification description) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "specification is a kind of naming", "pln": ["(: cnet_isa_128dfb1238 (IsA specification naming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "specification is a kind of document", "pln": ["(: cnet_isa_9a5cb72363 (IsA specification document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "specificity is a kind of particularity", "pln": ["(: cnet_isa_18fcc56adb (IsA specificity particularity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "specifier is a kind of intellectual", "pln": ["(: cnet_isa_47dd5b09ef (IsA specifier intellectual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "specimen is a kind of sample", "pln": ["(: cnet_isa_f79add1039 (IsA specimen sample) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "specimen is a kind of example", "pln": ["(: cnet_isa_083fbcea5f (IsA specimen example) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "specimen bottle is a kind of bottle", "pln": ["(: cnet_isa_5d82a77af7 (IsA specimen_bottle bottle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "specious argument is a kind of argument", "pln": ["(: cnet_isa_f3192f563b (IsA specious_argument argument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speciousness is a kind of deceptiveness", "pln": ["(: cnet_isa_cf69b71a8d (IsA speciousness deceptiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speck is a kind of spot", "pln": ["(: cnet_isa_c33f73f9d6 (IsA speck spot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speckled alder is a kind of alder", "pln": ["(: cnet_isa_fc82c31284 (IsA speckled_alder alder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "speckled rattlesnake is a kind of rattlesnake", "pln": ["(: cnet_isa_4622a45752 (IsA speckled_rattlesnake rattlesnake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spectacle is a kind of blunder", "pln": ["(: cnet_isa_8a09f6b148 (IsA spectacle blunder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spectacle is a kind of display", "pln": ["(: cnet_isa_e8ac637b66 (IsA spectacle display) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spectacle is a kind of sight", "pln": ["(: cnet_isa_3187eb013e (IsA spectacle sight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spectacled caiman is a kind of cayman", "pln": ["(: cnet_isa_5d5da2919b (IsA spectacled_caiman cayman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spectacle is a kind of optical instrument", "pln": ["(: cnet_isa_a4b98d346f (IsA spectacle optical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spectacular is a kind of performance", "pln": ["(: cnet_isa_15b79b53a8 (IsA spectacular performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spectator is a kind of perceiver", "pln": ["(: cnet_isa_5dd119a795 (IsA spectator perceiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spectator pump is a kind of pump", "pln": ["(: cnet_isa_c8e76361fd (IsA spectator_pump pump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spectator sport is a kind of sport", "pln": ["(: cnet_isa_b9d083ee0b (IsA spectator_sport sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spectinomycin is a kind of antibiotic", "pln": ["(: cnet_isa_324a2b215b (IsA spectinomycin antibiotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spectrogram is a kind of picture", "pln": ["(: cnet_isa_4f6d1ef521 (IsA spectrogram picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spectrograph is a kind of spectroscope", "pln": ["(: cnet_isa_3c1ff482b4 (IsA spectrograph spectroscope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spectrophotometer is a kind of photometer", "pln": ["(: cnet_isa_d126c1d86a (IsA spectrophotometer photometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spectroscope is a kind of optical instrument", "pln": ["(: cnet_isa_3bb24bad91 (IsA spectroscope optical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spectroscopy is a kind of chemical analysis", "pln": ["(: cnet_isa_acd2a105fa (IsA spectroscopy chemical_analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spectrum is a kind of scope", "pln": ["(: cnet_isa_99b321fdf4 (IsA spectrum scope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spectrum is a kind of array", "pln": ["(: cnet_isa_6690466682 (IsA spectrum array) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spectrum line is a kind of line", "pln": ["(: cnet_isa_fa53aa8fcd (IsA spectrum_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speculation is a kind of hypothesis", "pln": ["(: cnet_isa_b6353804fc (IsA speculation hypothesis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speculation is a kind of investment", "pln": ["(: cnet_isa_59917e4f7f (IsA speculation investment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "speculativeness is a kind of uncertainty", "pln": ["(: cnet_isa_393e0b226a (IsA speculativeness uncertainty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speculativeness is a kind of riskiness", "pln": ["(: cnet_isa_e731f01e58 (IsA speculativeness riskiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speculator is a kind of adventurer", "pln": ["(: cnet_isa_217377e9c6 (IsA speculator adventurer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speculator is a kind of gambler", "pln": ["(: cnet_isa_47cc00d04d (IsA speculator gambler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speculator is a kind of thinker", "pln": ["(: cnet_isa_6032f70f29 (IsA speculator thinker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speculum is a kind of medical instrument", "pln": ["(: cnet_isa_37c38c74d3 (IsA speculum medical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speculum is a kind of mirror", "pln": ["(: cnet_isa_64196f7021 (IsA speculum mirror) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speech is a kind of speaking", "pln": ["(: cnet_isa_fa614630b0 (IsA speech speaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speech is a kind of utterance", "pln": ["(: cnet_isa_f58f32fde6 (IsA speech utterance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speech is a kind of auditory communication", "pln": ["(: cnet_isa_78533c6c13 (IsA speech auditory_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speech act is a kind of act", "pln": ["(: cnet_isa_4bcbc032ff (IsA speech_act act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speech community is a kind of community", "pln": ["(: cnet_isa_4aff9ee0e3 (IsA speech_community community) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speech day is a kind of day", "pln": ["(: cnet_isa_4043ddee80 (IsA speech_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speech disorder is a kind of disorder", "pln": ["(: cnet_isa_6385010a6e (IsA speech_disorder disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speech intelligibility is a kind of intelligibility", "pln": ["(: cnet_isa_ee86b33c5f (IsA speech_intelligibility intelligibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speech organ is a kind of organ", "pln": ["(: cnet_isa_d49ec6fde3 (IsA speech_organ organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speech perception is a kind of auditory perception", "pln": ["(: cnet_isa_60d4e4cfd2 (IsA speech_perception auditory_perception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speech spectrum is a kind of sound spectrum", "pln": ["(: cnet_isa_cc54bf9667 (IsA speech_spectrum sound_spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speech therapist is a kind of therapist", "pln": ["(: cnet_isa_d2023032f7 (IsA speech_therapist therapist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speech therapy is a kind of therapy", "pln": ["(: cnet_isa_08893559ec (IsA speech_therapy therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speechlessness is a kind of silence", "pln": ["(: cnet_isa_25809bb56b (IsA speechlessness silence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speechwriter is a kind of writer", "pln": ["(: cnet_isa_8f9dc660c9 (IsA speechwriter writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "speed is a kind of motion", "pln": ["(: cnet_isa_0208617d87 (IsA speed motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "speed is a kind of pace", "pln": ["(: cnet_isa_a3fc576981 (IsA speed pace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speed is a kind of rate", "pln": ["(: cnet_isa_0dc00e99b1 (IsA speed rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speed bump is a kind of hindrance", "pln": ["(: cnet_isa_76be39c865 (IsA speed_bump hindrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speed freak is a kind of addict", "pln": ["(: cnet_isa_934838f824 (IsA speed_freak addict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speed limit is a kind of regulation", "pln": ["(: cnet_isa_c8c9f3dd14 (IsA speed_limit regulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speed of light is a kind of constant", "pln": ["(: cnet_isa_c2f1a65af0 (IsA speed_of_light constant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speed of light is a kind of speed", "pln": ["(: cnet_isa_f4d6632233 (IsA speed_of_light speed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speed reading is a kind of reading", "pln": ["(: cnet_isa_dc1af6dfef (IsA speed_reading reading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speed skate is a kind of ice skate", "pln": ["(: cnet_isa_989b28ef34 (IsA speed_skate ice_skate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "speed skating is a kind of skating", "pln": ["(: cnet_isa_8a653ca28a (IsA speed_skating skating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speed trap is a kind of trap", "pln": ["(: cnet_isa_7370a80685 (IsA speed_trap trap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speedboat is a kind of motorboat", "pln": ["(: cnet_isa_bf3f7236db (IsA speedboat motorboat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speeder is a kind of driver", "pln": ["(: cnet_isa_fb02039dd5 (IsA speeder driver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speeding ticket is a kind of ticket", "pln": ["(: cnet_isa_ff5bdeb20a (IsA speeding_ticket ticket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speedometer is a kind of meter", "pln": ["(: cnet_isa_a0b87840ce (IsA speedometer meter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "speedskater is a kind of ice skater", "pln": ["(: cnet_isa_ffcc76dc9d (IsA speedskater ice_skater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speedway is a kind of racetrack", "pln": ["(: cnet_isa_64d9e44c35 (IsA speedway racetrack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speedway is a kind of road", "pln": ["(: cnet_isa_80fa3861e3 (IsA speedway road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "speleology is a kind of avocation", "pln": ["(: cnet_isa_aedf4200fd (IsA speleology avocation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speleology is a kind of geology", "pln": ["(: cnet_isa_08f3166c41 (IsA speleology geology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spell is a kind of speech", "pln": ["(: cnet_isa_ed48d7327c (IsA spell speech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spell checker is a kind of dictionary", "pln": ["(: cnet_isa_1ccd3d1435 (IsA spell_checker dictionary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spellbinder is a kind of orator", "pln": ["(: cnet_isa_c927586cbb (IsA spellbinder orator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speller is a kind of primer", "pln": ["(: cnet_isa_10d1022856 (IsA speller primer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "speller is a kind of writer", "pln": ["(: cnet_isa_79cd45ea9f (IsA speller writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spelling is a kind of orthography", "pln": ["(: cnet_isa_00e2605944 (IsA spelling orthography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spelling bee is a kind of contest", "pln": ["(: cnet_isa_e109ed1378 (IsA spelling_bee contest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spelt is a kind of wheat", "pln": ["(: cnet_isa_887e5ffc6a (IsA spelt wheat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spelter is a kind of zinc", "pln": ["(: cnet_isa_c0a2ea060d (IsA spelter zinc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spender is a kind of customer", "pln": ["(: cnet_isa_0c9a4a8fc7 (IsA spender customer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spending is a kind of payment", "pln": ["(: cnet_isa_2d47e1522c (IsA spending payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spending cut is a kind of cut", "pln": ["(: cnet_isa_de7c6a5bf1 (IsA spending_cut cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spending spree is a kind of spree", "pln": ["(: cnet_isa_2b669caaf7 (IsA spending_spree spree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spendthrift is a kind of prodigal", "pln": ["(: cnet_isa_510ca29fd6 (IsA spendthrift prodigal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spendthrift trust is a kind of trust", "pln": ["(: cnet_isa_237ac9ee10 (IsA spendthrift_trust trust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spenserian sonnet is a kind of sonnet", "pln": ["(: cnet_isa_0c25eec92b (IsA spenserian_sonnet sonnet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spenserian stanza is a kind of stanza", "pln": ["(: cnet_isa_633047fcc6 (IsA spenserian_stanza stanza) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spergula is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_6c6304c203 (IsA spergula caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spergularia is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_49427fd502 (IsA spergularia caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sperm is a kind of gamete", "pln": ["(: cnet_isa_c389a887c8 (IsA sperm gamete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sperm bank is a kind of depository", "pln": ["(: cnet_isa_1bdde4adeb (IsA sperm_bank depository) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sperm count is a kind of count", "pln": ["(: cnet_isa_1f8dad7501 (IsA sperm_count count) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sperm oil is a kind of animal oil", "pln": ["(: cnet_isa_8069c5d855 (IsA sperm_oil animal_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sperm whale is a kind of toothed whale", "pln": ["(: cnet_isa_d698745ee5 (IsA sperm_whale toothed_whale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spermaceti is a kind of wax", "pln": ["(: cnet_isa_aa1b88c081 (IsA spermaceti wax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spermatic cord is a kind of funiculus", "pln": ["(: cnet_isa_50930ec4cf (IsA spermatic_cord funiculus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spermatid is a kind of gamete", "pln": ["(: cnet_isa_ba3879c6e2 (IsA spermatid gamete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spermatocele is a kind of swelling", "pln": ["(: cnet_isa_a0eded3a99 (IsA spermatocele swelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spermatocyte is a kind of gametocyte", "pln": ["(: cnet_isa_7308fe115d (IsA spermatocyte gametocyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spermatogenesis is a kind of gametogenesis", "pln": ["(: cnet_isa_6749c21f7e (IsA spermatogenesis gametogenesis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spermatophyta is a kind of division", "pln": ["(: cnet_isa_fc1ddcf8db (IsA spermatophyta division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spermatophyte is a kind of vascular plant", "pln": ["(: cnet_isa_6626b425f7 (IsA spermatophyte vascular_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spermicide is a kind of contraceptive", "pln": ["(: cnet_isa_5431a41390 (IsA spermicide contraceptive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphacelotheca is a kind of smut", "pln": ["(: cnet_isa_23bc4fb928 (IsA sphacelotheca smut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sphaeralcea is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_b245d58bb8 (IsA sphaeralcea dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphaeriaceae is a kind of fungus family", "pln": ["(: cnet_isa_6cc4b4a804 (IsA sphaeriaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphaeriale is a kind of fungus order", "pln": ["(: cnet_isa_e6a2d85a36 (IsA sphaeriale fungus_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphaerobolaceae is a kind of fungus family", "pln": ["(: cnet_isa_83f3058909 (IsA sphaerobolaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphaerocarpaceae is a kind of moss family", "pln": ["(: cnet_isa_7d77836fca (IsA sphaerocarpaceae moss_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphaerocarpale is a kind of plant order", "pln": ["(: cnet_isa_cf321de819 (IsA sphaerocarpale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphaerocarpus is a kind of moss genus", "pln": ["(: cnet_isa_f8b24ec5a6 (IsA sphaerocarpus moss_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphagnale is a kind of plant order", "pln": ["(: cnet_isa_75dcb88320 (IsA sphagnale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphagnum is a kind of moss", "pln": ["(: cnet_isa_208dc79c14 (IsA sphagnum moss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphecidae is a kind of arthropod family", "pln": ["(: cnet_isa_f6b213e944 (IsA sphecidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphecius is a kind of arthropod genus", "pln": ["(: cnet_isa_15cd55c110 (IsA sphecius arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphecoid wasp is a kind of wasp", "pln": ["(: cnet_isa_5d759cea77 (IsA sphecoid_wasp wasp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphecoidea is a kind of arthropod family", "pln": ["(: cnet_isa_5237f3d08e (IsA sphecoidea arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphecothere is a kind of bird genus", "pln": ["(: cnet_isa_d26cd52b13 (IsA sphecothere bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphenion is a kind of craniometric point", "pln": ["(: cnet_isa_6806576a5f (IsA sphenion craniometric_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spheniscidae is a kind of bird family", "pln": ["(: cnet_isa_535e77c1e8 (IsA spheniscidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphenisciform seabird is a kind of seabird", "pln": ["(: cnet_isa_00d8df8366 (IsA sphenisciform_seabird seabird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphenisciforme is a kind of animal order", "pln": ["(: cnet_isa_e618e17adf (IsA sphenisciforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spheniscus is a kind of bird genus", "pln": ["(: cnet_isa_227e717865 (IsA spheniscus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sphenodon is a kind of reptile genus", "pln": ["(: cnet_isa_08dc6f35e4 (IsA sphenodon reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphenoid bone is a kind of bone", "pln": ["(: cnet_isa_bde3fc7034 (IsA sphenoid_bone bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphenoid fontanelle is a kind of fontanelle", "pln": ["(: cnet_isa_dd609c5134 (IsA sphenoid_fontanelle fontanelle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphenopsida is a kind of class", "pln": ["(: cnet_isa_99a6ff7c2b (IsA sphenopsida class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphere is a kind of three dimensional geometric shape", "pln": ["(: cnet_isa_d7c0d1d15d (IsA sphere three_dimensional_geometric_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphere is a kind of artifact", "pln": ["(: cnet_isa_c8e55d7c8b (IsA sphere artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphere is a kind of geographical area", "pln": ["(: cnet_isa_71bf9a4395 (IsA sphere geographical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sphere is a kind of round shape", "pln": ["(: cnet_isa_f058d42d6b (IsA sphere round_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphere is a kind of environment", "pln": ["(: cnet_isa_3ae42f48b3 (IsA sphere environment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spherical aberration is a kind of aberration", "pln": ["(: cnet_isa_5377d55b36 (IsA spherical_aberration aberration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spherical angle is a kind of angle", "pln": ["(: cnet_isa_0446f1c004 (IsA spherical_angle angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spherical geometry is a kind of geometry", "pln": ["(: cnet_isa_fb90035b1e (IsA spherical_geometry geometry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spherical polygon is a kind of polygon", "pln": ["(: cnet_isa_e0c3caa0c2 (IsA spherical_polygon polygon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spherical triangle is a kind of spherical polygon", "pln": ["(: cnet_isa_2a5c8b86e2 (IsA spherical_triangle spherical_polygon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spherical trigonometry is a kind of trigonometry", "pln": ["(: cnet_isa_4ac6bdc92e (IsA spherical_trigonometry trigonometry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphericity is a kind of roundness", "pln": ["(: cnet_isa_a6eb8d585a (IsA sphericity roundness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spherocyte is a kind of red blood cell", "pln": ["(: cnet_isa_3e5e29d7c0 (IsA spherocyte red_blood_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spheroid is a kind of round shape", "pln": ["(: cnet_isa_611985e333 (IsA spheroid round_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spherometer is a kind of measuring instrument", "pln": ["(: cnet_isa_c548dc0be8 (IsA spherometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spherule is a kind of ball", "pln": ["(: cnet_isa_01f2e23519 (IsA spherule ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphincter is a kind of muscle", "pln": ["(: cnet_isa_b1f8ae6172 (IsA sphincter muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphingidae is a kind of arthropod family", "pln": ["(: cnet_isa_d7b1124369 (IsA sphingidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphinx is a kind of statue", "pln": ["(: cnet_isa_8bd3ca7ccf (IsA sphinx statue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphinx is a kind of mythical monster", "pln": ["(: cnet_isa_cdee5e8cc4 (IsA sphinx mythical_monster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphinx is a kind of person", "pln": ["(: cnet_isa_fe4d0503be (IsA sphinx person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphygmomanometer is a kind of pressure gauge", "pln": ["(: cnet_isa_4d74fef1a8 (IsA sphygmomanometer pressure_gauge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphyraena is a kind of fish genus", "pln": ["(: cnet_isa_411f913139 (IsA sphyraena fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphyraenidae is a kind of fish family", "pln": ["(: cnet_isa_0c32b9d0ea (IsA sphyraenidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphyrapicus is a kind of bird genus", "pln": ["(: cnet_isa_10303293cb (IsA sphyrapicus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sphyrna is a kind of fish genus", "pln": ["(: cnet_isa_49ef8ba004 (IsA sphyrna fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sphyrnidae is a kind of fish family", "pln": ["(: cnet_isa_873058ec61 (IsA sphyrnidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spic is a kind of latino", "pln": ["(: cnet_isa_046c974fbe (IsA spic latino) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiccato is a kind of bowing", "pln": ["(: cnet_isa_eee60a4f2a (IsA spiccato bowing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spice is a kind of flavorer", "pln": ["(: cnet_isa_10ee7b6ce7 (IsA spice flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spice is a kind of preservative", "pln": ["(: cnet_isa_4834ff032c (IsA spice preservative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spice cake is a kind of cake", "pln": ["(: cnet_isa_e719783325 (IsA spice_cake cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spice cookie is a kind of cookie", "pln": ["(: cnet_isa_e5c425b773 (IsA spice_cookie cookie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spice rack is a kind of rack", "pln": ["(: cnet_isa_0c5cec6b53 (IsA spice_rack rack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spice tree is a kind of angiospermous tree", "pln": ["(: cnet_isa_da8693e865 (IsA spice_tree angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spicebush is a kind of allspice", "pln": ["(: cnet_isa_00248a53ad (IsA spicebush allspice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spicebush is a kind of shrub", "pln": ["(: cnet_isa_3ba879b662 (IsA spicebush shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spicemill is a kind of mill", "pln": ["(: cnet_isa_6a73234f19 (IsA spicemill mill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiciness is a kind of taste property", "pln": ["(: cnet_isa_1377324253 (IsA spiciness taste_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spicule is a kind of process", "pln": ["(: cnet_isa_97cbc92668 (IsA spicule process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spider is a kind of arachnid", "pln": ["(: cnet_isa_48aa01bc8d (IsA spider arachnid) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spider is a kind of frying pan", "pln": ["(: cnet_isa_3fedadada7 (IsA spider frying_pan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spider is a kind of program", "pln": ["(: cnet_isa_8c5c6cbeaf (IsA spider program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spider angioma is a kind of angioma", "pln": ["(: cnet_isa_2f3283fb03 (IsA spider_angioma angioma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spider brake is a kind of fern", "pln": ["(: cnet_isa_6631a284ec (IsA spider_brake fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spider crab is a kind of crab", "pln": ["(: cnet_isa_4ecaf2650e (IsA spider_crab crab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spider flower is a kind of spiderflower", "pln": ["(: cnet_isa_9a5ca79238 (IsA spider_flower spiderflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spider mite is a kind of mite", "pln": ["(: cnet_isa_50dfadfbff (IsA spider_mite mite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spider monkey is a kind of new world monkey", "pln": ["(: cnet_isa_4e76833117 (IsA spider_monkey new_world_monkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spider orchid is a kind of orchid", "pln": ["(: cnet_isa_6dfb23432a (IsA spider_orchid orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spider web is a kind of web", "pln": ["(: cnet_isa_cf1cc5e69d (IsA spider_web web) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiderflower is a kind of herb", "pln": ["(: cnet_isa_2c632188dc (IsA spiderflower herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiderwort is a kind of herb", "pln": ["(: cnet_isa_a4fd4e4edd (IsA spiderwort herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiegeleisen is a kind of pig iron", "pln": ["(: cnet_isa_9b7e12e379 (IsA spiegeleisen pig_iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiel is a kind of channel", "pln": ["(: cnet_isa_415f5f2493 (IsA spiel channel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spielmeyer vogt disease is a kind of genetic disease", "pln": ["(: cnet_isa_3d3b70b04e (IsA spielmeyer_vogt_disease genetic_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiff is a kind of attractiveness", "pln": ["(: cnet_isa_c041551cf0 (IsA spiff attractiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spike is a kind of holding device", "pln": ["(: cnet_isa_60084a3602 (IsA spike holding_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spike is a kind of implement", "pln": ["(: cnet_isa_9d3da2ed1d (IsA spike implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spike is a kind of nail", "pln": ["(: cnet_isa_ef9d647e44 (IsA spike nail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spike is a kind of point", "pln": ["(: cnet_isa_7fd945806d (IsA spike point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spike is a kind of projection", "pln": ["(: cnet_isa_d814849c4c (IsA spike projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spike is a kind of sport equipment", "pln": ["(: cnet_isa_a6d10d1979 (IsA spike sport_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spike is a kind of inflorescence", "pln": ["(: cnet_isa_ac7a81dd9f (IsA spike inflorescence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spike is a kind of electrical discharge", "pln": ["(: cnet_isa_cbb2f5f3ec (IsA spike electrical_discharge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spike is a kind of rise", "pln": ["(: cnet_isa_7c907988c7 (IsA spike rise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spike heath is a kind of heath", "pln": ["(: cnet_isa_e0c80984fb (IsA spike_heath heath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spike heel is a kind of heel", "pln": ["(: cnet_isa_2188dd33bb (IsA spike_heel heel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spike lavender is a kind of lavender", "pln": ["(: cnet_isa_c855497050 (IsA spike_lavender lavender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spike lavender oil is a kind of oil", "pln": ["(: cnet_isa_ec43a28321 (IsA spike_lavender_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spike mike is a kind of contact microphone", "pln": ["(: cnet_isa_3cef1f2f28 (IsA spike_mike contact_microphone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spike rush is a kind of sedge", "pln": ["(: cnet_isa_48f6be2d27 (IsA spike_rush sedge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spikemoss is a kind of club moss", "pln": ["(: cnet_isa_2673e82251 (IsA spikemoss club_moss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spill is a kind of flow", "pln": ["(: cnet_isa_cc637999e9 (IsA spill flow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spill is a kind of slip", "pln": ["(: cnet_isa_5019dcedb6 (IsA spill slip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spill is a kind of liquid", "pln": ["(: cnet_isa_d8a1565fb9 (IsA spill liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spillage is a kind of indefinite quantity", "pln": ["(: cnet_isa_e533061dca (IsA spillage indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spillover is a kind of consequence", "pln": ["(: cnet_isa_cb29e207fe (IsA spillover consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spillway is a kind of conduit", "pln": ["(: cnet_isa_b33838c6cd (IsA spillway conduit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spilogale is a kind of mammal genus", "pln": ["(: cnet_isa_af3017ef44 (IsA spilogale mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spin is a kind of drive", "pln": ["(: cnet_isa_380eda3184 (IsA spin drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spin is a kind of rendition", "pln": ["(: cnet_isa_3d556bc521 (IsA spin rendition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spin is a kind of rotation", "pln": ["(: cnet_isa_5b7d249cfd (IsA spin rotation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spin bottle is a kind of child s game", "pln": ["(: cnet_isa_66cc089569 (IsA spin_bottle child_s_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spin doctor is a kind of public relation person", "pln": ["(: cnet_isa_49fe6dc78e (IsA spin_doctor public_relation_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spin dryer is a kind of clothe dryer", "pln": ["(: cnet_isa_1cfe95b8ee (IsA spin_dryer clothe_dryer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spin plate is a kind of child s game", "pln": ["(: cnet_isa_7771012cb9 (IsA spin_plate child_s_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spin vector is a kind of vector", "pln": ["(: cnet_isa_ae039d5939 (IsA spin_vector vector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spina bifida is a kind of birth defect", "pln": ["(: cnet_isa_f11b4c2397 (IsA spina_bifida birth_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinach is a kind of food edible by human", "pln": ["(: cnet_isa_e280ed58bc (IsA spinach food_edible_by_human) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinach is a kind of vegetable", "pln": ["(: cnet_isa_d0381067f9 (IsA spinach vegetable) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinach is a kind of green", "pln": ["(: cnet_isa_a4286e08c3 (IsA spinach green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spinach blight is a kind of blight", "pln": ["(: cnet_isa_207ef3ee26 (IsA spinach_blight blight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinacia is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_e1ec8dc772 (IsA spinacia caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinal anesthesia is a kind of regional anesthesia", "pln": ["(: cnet_isa_b5e4342aff (IsA spinal_anesthesia regional_anesthesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinal anesthetic is a kind of anesthetic", "pln": ["(: cnet_isa_3877cfce36 (IsA spinal_anesthetic anesthetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinal canal is a kind of duct", "pln": ["(: cnet_isa_a37fe988fd (IsA spinal_canal duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinal column is a kind of skeletal structure", "pln": ["(: cnet_isa_5a136409b8 (IsA spinal_column skeletal_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spinal cord is a kind of funiculus", "pln": ["(: cnet_isa_1d9fb1f2e1 (IsA spinal_cord funiculus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinal cord is a kind of neural structure", "pln": ["(: cnet_isa_2bd5650d4c (IsA spinal_cord neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinal curvature is a kind of abnormality", "pln": ["(: cnet_isa_6305762505 (IsA spinal_curvature abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinal fluid is a kind of liquid body substance", "pln": ["(: cnet_isa_65a0d60ac9 (IsA spinal_fluid liquid_body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinal nerve is a kind of nerve", "pln": ["(: cnet_isa_7d929c19c6 (IsA spinal_nerve nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spinal nerve root is a kind of spinal nerve", "pln": ["(: cnet_isa_27c7f7c803 (IsA spinal_nerve_root spinal_nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinal vein is a kind of vein", "pln": ["(: cnet_isa_ad3d55457e (IsA spinal_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spindle is a kind of piece", "pln": ["(: cnet_isa_051c3affe5 (IsA spindle piece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spindle is a kind of rotating shaft", "pln": ["(: cnet_isa_c92f8fca07 (IsA spindle rotating_shaft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spindle is a kind of stick", "pln": ["(: cnet_isa_95d9d5e117 (IsA spindle stick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spindle is a kind of fiber", "pln": ["(: cnet_isa_b3ef2c773f (IsA spindle fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spindle tree is a kind of shrub", "pln": ["(: cnet_isa_bb39d1259c (IsA spindle_tree shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spindleleg is a kind of leg", "pln": ["(: cnet_isa_a68f60f60b (IsA spindleleg leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spindleleg is a kind of thin person", "pln": ["(: cnet_isa_303399957c (IsA spindleleg thin_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spindrift is a kind of spray", "pln": ["(: cnet_isa_ee894c9def (IsA spindrift spray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spine is a kind of process", "pln": ["(: cnet_isa_2bc3c07f9b (IsA spine process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spine is a kind of aculeus", "pln": ["(: cnet_isa_6bcc86f637 (IsA spine aculeus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinel is a kind of mineral", "pln": ["(: cnet_isa_77b56ae3c2 (IsA spinel mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinel ruby is a kind of spinel", "pln": ["(: cnet_isa_02d516ea0e (IsA spinel_ruby spinel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinelessness is a kind of meekness", "pln": ["(: cnet_isa_dedc5059e7 (IsA spinelessness meekness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinet is a kind of harpsichord", "pln": ["(: cnet_isa_e545e0d632 (IsA spinet harpsichord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinet is a kind of upright", "pln": ["(: cnet_isa_5fe49a5e31 (IsA spinet upright) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinnability is a kind of quality", "pln": ["(: cnet_isa_2ffdfcbb1a (IsA spinnability quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinnaker is a kind of headsail", "pln": ["(: cnet_isa_5f59742b02 (IsA spinnaker headsail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinnbarkeit is a kind of spinnability", "pln": ["(: cnet_isa_a54746559e (IsA spinnbarkeit spinnability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinner is a kind of fisherman s lure", "pln": ["(: cnet_isa_62f302eabd (IsA spinner fisherman_s_lure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinner is a kind of game equipment", "pln": ["(: cnet_isa_9b575a4a37 (IsA spinner game_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinner is a kind of maker", "pln": ["(: cnet_isa_bb73611b12 (IsA spinner maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinney is a kind of brush", "pln": ["(: cnet_isa_6203585271 (IsA spinney brush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinning is a kind of handicraft", "pln": ["(: cnet_isa_53bc5b9f39 (IsA spinning handicraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spinning frame is a kind of spinning machine", "pln": ["(: cnet_isa_9bdf0e7463 (IsA spinning_frame spinning_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinning jenny is a kind of spinning machine", "pln": ["(: cnet_isa_5d51f30ea2 (IsA spinning_jenny spinning_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinning machine is a kind of textile machine", "pln": ["(: cnet_isa_0a7b265109 (IsA spinning_machine textile_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinning rod is a kind of fishing rod", "pln": ["(: cnet_isa_a54109a22d (IsA spinning_rod fishing_rod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinning wheel is a kind of spinning machine", "pln": ["(: cnet_isa_d1292be294 (IsA spinning_wheel spinning_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinocerebellar disorder is a kind of birth defect", "pln": ["(: cnet_isa_1cca5c62a9 (IsA spinocerebellar_disorder birth_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinster is a kind of unmarried woman", "pln": ["(: cnet_isa_ddd65dd723 (IsA spinster unmarried_woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinsterhood is a kind of marital status", "pln": ["(: cnet_isa_d37eca6a25 (IsA spinsterhood marital_status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spinus is a kind of bird genus", "pln": ["(: cnet_isa_47f57be1d7 (IsA spinus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiny dogfish is a kind of dogfish", "pln": ["(: cnet_isa_182de4b282 (IsA spiny_dogfish dogfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiny finned fish is a kind of teleost fish", "pln": ["(: cnet_isa_fbc346edc2 (IsA spiny_finned_fish teleost_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiny lizard is a kind of iguanid", "pln": ["(: cnet_isa_abf5722fca (IsA spiny_lizard iguanid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiny lobster is a kind of lobster", "pln": ["(: cnet_isa_68d9ce6864 (IsA spiny_lobster lobster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiny lobster is a kind of shellfish", "pln": ["(: cnet_isa_7ce15866fe (IsA spiny_lobster shellfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiny puffer is a kind of plectognath", "pln": ["(: cnet_isa_c2815750c1 (IsA spiny_puffer plectognath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiny softshell is a kind of soft shelled turtle", "pln": ["(: cnet_isa_2edb39714f (IsA spiny_softshell soft_shelled_turtle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spiny talinum is a kind of flame flower", "pln": ["(: cnet_isa_06a9e3c890 (IsA spiny_talinum flame_flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiracle is a kind of orifice", "pln": ["(: cnet_isa_cc16c6a9c8 (IsA spiracle orifice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiraea is a kind of rosid dicot genus", "pln": ["(: cnet_isa_57a4f843d6 (IsA spiraea rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiral is a kind of curve", "pln": ["(: cnet_isa_57f6bb4311 (IsA spiral curve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiral is a kind of rotation", "pln": ["(: cnet_isa_11d9481d47 (IsA spiral rotation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiral is a kind of decoration", "pln": ["(: cnet_isa_4d0430d34f (IsA spiral decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiral is a kind of economic process", "pln": ["(: cnet_isa_15fece571a (IsA spiral economic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiral bandage is a kind of oblique bandage", "pln": ["(: cnet_isa_3e0363ff35 (IsA spiral_bandage oblique_bandage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiral galaxy is a kind of galaxy", "pln": ["(: cnet_isa_329d754d35 (IsA spiral_galaxy galaxy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiral ratchet screwdriver is a kind of screwdriver", "pln": ["(: cnet_isa_418d1f1f9b (IsA spiral_ratchet_screwdriver screwdriver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiral spring is a kind of spring", "pln": ["(: cnet_isa_73db117d3e (IsA spiral_spring spring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiranthe is a kind of monocot genus", "pln": ["(: cnet_isa_686cdb8858 (IsA spiranthe monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spirea is a kind of astilbe", "pln": ["(: cnet_isa_32154709e0 (IsA spirea astilbe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spirea is a kind of shrub", "pln": ["(: cnet_isa_a4d97332f0 (IsA spirea shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spirillaceae is a kind of bacteria family", "pln": ["(: cnet_isa_e55db3a7f0 (IsA spirillaceae bacteria_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spirillum is a kind of eubacteria", "pln": ["(: cnet_isa_d8bad55837 (IsA spirillum eubacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spirit is a kind of character", "pln": ["(: cnet_isa_58912f005b (IsA spirit character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spirit is a kind of spiritual being", "pln": ["(: cnet_isa_6490c7f8bc (IsA spirit spiritual_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spirit is a kind of vital principle", "pln": ["(: cnet_isa_89d95d9501 (IsA spirit vital_principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spirit is a kind of atmosphere", "pln": ["(: cnet_isa_a7ace8c5d2 (IsA spirit atmosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spirit gum is a kind of adhesive material", "pln": ["(: cnet_isa_5d3f8b4f76 (IsA spirit_gum adhesive_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spirit lamp is a kind of lamp", "pln": ["(: cnet_isa_b89cf0eb9d (IsA spirit_lamp lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spirit rapper is a kind of psychic", "pln": ["(: cnet_isa_d55ecf3b68 (IsA spirit_rapper psychic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spirit stove is a kind of stove", "pln": ["(: cnet_isa_722b29efe8 (IsA spirit_stove stove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spirit world is a kind of imaginary place", "pln": ["(: cnet_isa_77b614662c (IsA spirit_world imaginary_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spirit of ammonia is a kind of solution", "pln": ["(: cnet_isa_a79caf6c48 (IsA spirit_of_ammonia solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spirit of wine is a kind of ethyl alcohol", "pln": ["(: cnet_isa_6b5fb7aa97 (IsA spirit_of_wine ethyl_alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiritual is a kind of religious song", "pln": ["(: cnet_isa_fe8c244d50 (IsA spiritual religious_song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiritual being is a kind of belief", "pln": ["(: cnet_isa_0659d65b4e (IsA spiritual_being belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiritual bouquet is a kind of sympathy card", "pln": ["(: cnet_isa_5cfc7a26f3 (IsA spiritual_bouquet sympathy_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiritual leader is a kind of leader", "pln": ["(: cnet_isa_b2d11dea8c (IsA spiritual_leader leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiritual world is a kind of belief", "pln": ["(: cnet_isa_2d0d617823 (IsA spiritual_world belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiritualism is a kind of belief", "pln": ["(: cnet_isa_1cc20ddb17 (IsA spiritualism belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiritualism is a kind of theological doctrine", "pln": ["(: cnet_isa_59e08980ed (IsA spiritualism theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spirituality is a kind of inwardness", "pln": ["(: cnet_isa_089a1e35f4 (IsA spirituality inwardness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiritualization is a kind of change of state", "pln": ["(: cnet_isa_fc17ce98a1 (IsA spiritualization change_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiritualty is a kind of property", "pln": ["(: cnet_isa_f9cd503f5e (IsA spiritualty property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spirochaeta is a kind of bacteria genus", "pln": ["(: cnet_isa_98364143f1 (IsA spirochaeta bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spirochaetaceae is a kind of bacteria family", "pln": ["(: cnet_isa_d2cf683a53 (IsA spirochaetaceae bacteria_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spirochaetale is a kind of animal order", "pln": ["(: cnet_isa_5ab9d4d483 (IsA spirochaetale animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spirochete is a kind of eubacteria", "pln": ["(: cnet_isa_1d9e6ab206 (IsA spirochete eubacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spirodela is a kind of monocot genus", "pln": ["(: cnet_isa_813262b4ba (IsA spirodela monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spirogram is a kind of recording", "pln": ["(: cnet_isa_bfd66a5329 (IsA spirogram recording) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spirograph is a kind of measuring instrument", "pln": ["(: cnet_isa_fbe5a93959 (IsA spirograph measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spirogyra is a kind of green algae", "pln": ["(: cnet_isa_864d3ac325 (IsA spirogyra green_algae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spirometer is a kind of measuring instrument", "pln": ["(: cnet_isa_4dc0f5c184 (IsA spirometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spirometry is a kind of measurement", "pln": ["(: cnet_isa_1a153ccd55 (IsA spirometry measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spirula is a kind of decapod", "pln": ["(: cnet_isa_2a2e41c03a (IsA spirula decapod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spirulidae is a kind of mollusk family", "pln": ["(: cnet_isa_5494129d29 (IsA spirulidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spit is a kind of expulsion", "pln": ["(: cnet_isa_a0387813f9 (IsA spit expulsion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spit is a kind of skewer", "pln": ["(: cnet_isa_ac03112bca (IsA spit skewer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spit is a kind of cape", "pln": ["(: cnet_isa_e66b346dd1 (IsA spit cape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spit and polish is a kind of orderliness", "pln": ["(: cnet_isa_1f2af58eed (IsA spit_and_polish orderliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spit curl is a kind of crimp", "pln": ["(: cnet_isa_6c89fa9e52 (IsA spit_curl crimp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spitball is a kind of pitch", "pln": ["(: cnet_isa_b553945772 (IsA spitball pitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spitball is a kind of projectile", "pln": ["(: cnet_isa_9d2898fe4c (IsA spitball projectile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spitfire is a kind of emotional person", "pln": ["(: cnet_isa_8297b632c3 (IsA spitfire emotional_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spitter is a kind of person", "pln": ["(: cnet_isa_ac848f1e9c (IsA spitter person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spitting is a kind of dirty habit", "pln": ["(: cnet_isa_a8f87f6e74 (IsA spitting dirty_habit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spitting image is a kind of likeness", "pln": ["(: cnet_isa_6ea03455ac (IsA spitting_image likeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spittle insect is a kind of homopterous insect", "pln": ["(: cnet_isa_81d2a6d7c7 (IsA spittle_insect homopterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spittoon is a kind of receptacle", "pln": ["(: cnet_isa_ba4ebfe1fa (IsA spittoon receptacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spitz is a kind of dog", "pln": ["(: cnet_isa_b871a23f6f (IsA spitz dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spiv is a kind of idler", "pln": ["(: cnet_isa_de95a78685 (IsA spiv idler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spizella is a kind of bird genus", "pln": ["(: cnet_isa_42846dc2ec (IsA spizella bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "splanchnic nerve is a kind of nerve", "pln": ["(: cnet_isa_cb5cad4170 (IsA splanchnic_nerve nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "splash is a kind of wetting", "pln": ["(: cnet_isa_14858cb4a4 (IsA splash wetting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "splash is a kind of spot", "pln": ["(: cnet_isa_cbe87f3914 (IsA splash spot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "splash is a kind of noise", "pln": ["(: cnet_isa_7fde125bb6 (IsA splash noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "splash is a kind of disturbance", "pln": ["(: cnet_isa_93daee2d6a (IsA splash disturbance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "splashboard is a kind of protective covering", "pln": ["(: cnet_isa_88071f66f1 (IsA splashboard protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "splashdown is a kind of landing", "pln": ["(: cnet_isa_b1f0f42d6a (IsA splashdown landing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "splasher is a kind of protective covering", "pln": ["(: cnet_isa_1ee2c1d304 (IsA splasher protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "splat is a kind of slat", "pln": ["(: cnet_isa_2d6e60a3a5 (IsA splat slat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "splat is a kind of splash", "pln": ["(: cnet_isa_5eda661912 (IsA splat splash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "splay is a kind of bevel", "pln": ["(: cnet_isa_63c3c26746 (IsA splay bevel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spleen is a kind of lymphatic tissue", "pln": ["(: cnet_isa_8b2b88becb (IsA spleen lymphatic_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spleenwort is a kind of fern", "pln": ["(: cnet_isa_b96b9076e1 (IsA spleenwort fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "splenectomy is a kind of ablation", "pln": ["(: cnet_isa_d5235305a7 (IsA splenectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "splenic vein is a kind of vein", "pln": ["(: cnet_isa_18baa16b7f (IsA splenic_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "splenitis is a kind of inflammation", "pln": ["(: cnet_isa_da117e85f9 (IsA splenitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "splenius muscle is a kind of skeletal muscle", "pln": ["(: cnet_isa_1c0c8314c2 (IsA splenius_muscle skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "splenomegaly is a kind of hypertrophy", "pln": ["(: cnet_isa_784a3926ee (IsA splenomegaly hypertrophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "splice is a kind of junction", "pln": ["(: cnet_isa_077ba2440e (IsA splice junction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "splicer is a kind of mechanical device", "pln": ["(: cnet_isa_0f51c7c6f1 (IsA splicer mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "splicer is a kind of woodworker", "pln": ["(: cnet_isa_3b52d6d1f7 (IsA splicer woodworker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "splicer is a kind of worker", "pln": ["(: cnet_isa_0585b20a8a (IsA splicer worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spline is a kind of strip", "pln": ["(: cnet_isa_1bd130fd20 (IsA spline strip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "splint is a kind of mechanical device", "pln": ["(: cnet_isa_b92bf19878 (IsA splint mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "splint is a kind of paring", "pln": ["(: cnet_isa_19f14ac027 (IsA splint paring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "splint bone is a kind of bone", "pln": ["(: cnet_isa_7a77b73d42 (IsA splint_bone bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "splinter is a kind of bit", "pln": ["(: cnet_isa_5f8d59d480 (IsA splinter bit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "splinter group is a kind of faction", "pln": ["(: cnet_isa_a7f753f21e (IsA splinter_group faction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "split is a kind of acrobatic stunt", "pln": ["(: cnet_isa_3543dfa498 (IsA split acrobatic_stunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "split is a kind of increase", "pln": ["(: cnet_isa_0d8dae07a9 (IsA split increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "split is a kind of frozen dessert", "pln": ["(: cnet_isa_05ae62e536 (IsA split frozen_dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "split is a kind of crack", "pln": ["(: cnet_isa_8131d1093e (IsA split crack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "split is a kind of share", "pln": ["(: cnet_isa_e7cf6f0221 (IsA split share) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "split is a kind of bottle", "pln": ["(: cnet_isa_59afc68836 (IsA split bottle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "split is a kind of formation", "pln": ["(: cnet_isa_99a95d8218 (IsA split formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "split brain technique is a kind of brain surgery", "pln": ["(: cnet_isa_d9d9182a1c (IsA split_brain_technique brain_surgery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "split decision is a kind of decision", "pln": ["(: cnet_isa_9b2c59eb89 (IsA split_decision decision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "split end is a kind of end", "pln": ["(: cnet_isa_5d839256cf (IsA split_end end) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "split half correlation is a kind of correlation coefficient", "pln": ["(: cnet_isa_a235216227 (IsA split_half_correlation correlation_coefficient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "split infinitive is a kind of infinitive", "pln": ["(: cnet_isa_bc95845741 (IsA split_infinitive infinitive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "split pea is a kind of green pea", "pln": ["(: cnet_isa_8fa08fecf2 (IsA split_pea green_pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "split pea soup is a kind of soup", "pln": ["(: cnet_isa_35459d3374 (IsA split_pea_soup soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "split personality is a kind of dissociative disorder", "pln": ["(: cnet_isa_96c4504b0f (IsA split_personality dissociative_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "split rail is a kind of rail", "pln": ["(: cnet_isa_1f7c98dc3a (IsA split_rail rail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "split run is a kind of print run", "pln": ["(: cnet_isa_adbee83010 (IsA split_run print_run) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "split shift is a kind of shift", "pln": ["(: cnet_isa_e46fe4b817 (IsA split_shift shift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "split ticket is a kind of vote", "pln": ["(: cnet_isa_232fba24d3 (IsA split_ticket vote) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "splitsville is a kind of dissolution", "pln": ["(: cnet_isa_454201eabf (IsA splitsville dissolution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "splitter is a kind of taxonomist", "pln": ["(: cnet_isa_5c6f4175df (IsA splitter taxonomist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "splitter is a kind of worker", "pln": ["(: cnet_isa_cb4002f02b (IsA splitter worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "splurge is a kind of ostentation", "pln": ["(: cnet_isa_8065f7b649 (IsA splurge ostentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spodoptera is a kind of arthropod genus", "pln": ["(: cnet_isa_eb2156e441 (IsA spodoptera arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spodoptera exigua is a kind of noctuid moth", "pln": ["(: cnet_isa_33612a6fbd (IsA spodoptera_exigua noctuid_moth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spodoptera frugiperda is a kind of noctuid moth", "pln": ["(: cnet_isa_a8e9f23818 (IsA spodoptera_frugiperda noctuid_moth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spodumene is a kind of mineral", "pln": ["(: cnet_isa_e2d719886c (IsA spodumene mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spoil is a kind of injury", "pln": ["(: cnet_isa_9238d43c1e (IsA spoil injury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spoil is a kind of plundering", "pln": ["(: cnet_isa_be76a4e527 (IsA spoil plundering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spoil is a kind of stolen property", "pln": ["(: cnet_isa_3f73b75f2c (IsA spoil stolen_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spoilage is a kind of decay", "pln": ["(: cnet_isa_55503d80f2 (IsA spoilage decay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spoilage is a kind of indefinite quantity", "pln": ["(: cnet_isa_c6704cdd49 (IsA spoilage indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spoiler is a kind of airfoil", "pln": ["(: cnet_isa_99155589a0 (IsA spoiler airfoil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spoiler is a kind of campaigner", "pln": ["(: cnet_isa_2300fa4ad3 (IsA spoiler campaigner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spoil system is a kind of system", "pln": ["(: cnet_isa_eec5319887 (IsA spoil_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spoilsport is a kind of unwelcome person", "pln": ["(: cnet_isa_e1abf929be (IsA spoilsport unwelcome_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spoke is a kind of support", "pln": ["(: cnet_isa_2495f449fb (IsA spoke support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spokeshave is a kind of plane", "pln": ["(: cnet_isa_b4013aa4f5 (IsA spokeshave plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spokesman is a kind of spokesperson", "pln": ["(: cnet_isa_4efdfb8b45 (IsA spokesman spokesperson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spokesperson is a kind of advocate", "pln": ["(: cnet_isa_2f447e232d (IsA spokesperson advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spokeswoman is a kind of spokesperson", "pln": ["(: cnet_isa_84504ceb08 (IsA spokeswoman spokesperson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spoliation is a kind of destruction", "pln": ["(: cnet_isa_9b7cf52b0c (IsA spoliation destruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spondee is a kind of metrical foot", "pln": ["(: cnet_isa_95338d7aa8 (IsA spondee metrical_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spondia is a kind of dicot genus", "pln": ["(: cnet_isa_155ca46f47 (IsA spondia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spondylarthritis is a kind of arthritis", "pln": ["(: cnet_isa_2af653be0c (IsA spondylarthritis arthritis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spondylitis is a kind of inflammation", "pln": ["(: cnet_isa_7d21e0d67a (IsA spondylitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spondylolisthesis is a kind of dislocation", "pln": ["(: cnet_isa_1f0260474c (IsA spondylolisthesis dislocation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sponge is a kind of invertebrate", "pln": ["(: cnet_isa_d0c0bdd617 (IsA sponge invertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sponge is a kind of absorbent material", "pln": ["(: cnet_isa_770b21bc42 (IsA sponge absorbent_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sponge bath is a kind of washup", "pln": ["(: cnet_isa_0c62d70c0a (IsA sponge_bath washup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sponge cake is a kind of cake", "pln": ["(: cnet_isa_0409b1f2de (IsA sponge_cake cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sponge cloth is a kind of fabric", "pln": ["(: cnet_isa_f2baf854c5 (IsA sponge_cloth fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sponge genus is a kind of genus", "pln": ["(: cnet_isa_08b2ce3412 (IsA sponge_genus genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sponge mop is a kind of swab", "pln": ["(: cnet_isa_15deabbf32 (IsA sponge_mop swab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spongefly is a kind of neuropteron", "pln": ["(: cnet_isa_828d06a539 (IsA spongefly neuropteron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sponger is a kind of workman", "pln": ["(: cnet_isa_ad8fe14cb8 (IsA sponger workman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sponginess is a kind of porosity", "pln": ["(: cnet_isa_2faf70e0ca (IsA sponginess porosity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spongioblast is a kind of columnar cell", "pln": ["(: cnet_isa_9db4cea3c6 (IsA spongioblast columnar_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sponsorship is a kind of support", "pln": ["(: cnet_isa_67de49eb52 (IsA sponsorship support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spontaneity is a kind of naturalness", "pln": ["(: cnet_isa_0392fd9429 (IsA spontaneity naturalness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spontaneous abortion is a kind of abortion", "pln": ["(: cnet_isa_6e42e13fa2 (IsA spontaneous_abortion abortion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spontaneous combustion is a kind of ignition", "pln": ["(: cnet_isa_cc3b658ac6 (IsA spontaneous_combustion ignition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spoon is a kind of utensil", "pln": ["(: cnet_isa_950f56d901 (IsA spoon utensil) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spoon is a kind of container", "pln": ["(: cnet_isa_2ef036bfae (IsA spoon container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spoon is a kind of cutlery", "pln": ["(: cnet_isa_d432f2b7d9 (IsA spoon cutlery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spoon is a kind of wood", "pln": ["(: cnet_isa_943f1b853b (IsA spoon wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spoon is a kind of containerful", "pln": ["(: cnet_isa_80306388a1 (IsA spoon containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spoon bread is a kind of cornbread", "pln": ["(: cnet_isa_0bcf4242c0 (IsA spoon_bread cornbread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spoonbill is a kind of wading bird", "pln": ["(: cnet_isa_e87cedb3ec (IsA spoonbill wading_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spoonerism is a kind of slip of tongue", "pln": ["(: cnet_isa_d0d1952079 (IsA spoonerism slip_of_tongue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spoonfeeding is a kind of feeding", "pln": ["(: cnet_isa_31e51a0cfe (IsA spoonfeeding feeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spoonfeeding is a kind of teaching", "pln": ["(: cnet_isa_730fff252a (IsA spoonfeeding teaching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spoor is a kind of trail", "pln": ["(: cnet_isa_7758a7e5c7 (IsA spoor trail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sporangiophore is a kind of stalk", "pln": ["(: cnet_isa_f332445880 (IsA sporangiophore stalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sporangium is a kind of reproductive structure", "pln": ["(: cnet_isa_848ee7aabe (IsA sporangium reproductive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spore is a kind of agamete", "pln": ["(: cnet_isa_3cc458c6ef (IsA spore agamete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spore mother cell is a kind of mother cell", "pln": ["(: cnet_isa_d725eb7c93 (IsA spore_mother_cell mother_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spork is a kind of combination of spoon", "pln": ["(: cnet_isa_42f4d55973 (IsA spork combination_of_spoon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sporobolus is a kind of monocot genus", "pln": ["(: cnet_isa_01f9b871e5 (IsA sporobolus monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sporocarp is a kind of reproductive structure", "pln": ["(: cnet_isa_a3a5786c9e (IsA sporocarp reproductive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sporophore is a kind of reproductive structure", "pln": ["(: cnet_isa_67b552058d (IsA sporophore reproductive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sporophyll is a kind of leaf", "pln": ["(: cnet_isa_11d41554b9 (IsA sporophyll leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sporophyte is a kind of plant", "pln": ["(: cnet_isa_dc807cdff2 (IsA sporophyte plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sporotrichosis is a kind of fungal infection", "pln": ["(: cnet_isa_e27dc25823 (IsA sporotrichosis fungal_infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sporozoa is a kind of class", "pln": ["(: cnet_isa_117b8a8982 (IsA sporozoa class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sporozoan is a kind of protozoan", "pln": ["(: cnet_isa_b5174ebb0e (IsA sporozoan protozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sporozoite is a kind of sporozoan", "pln": ["(: cnet_isa_ad9dd0f0e2 (IsA sporozoite sporozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sporran is a kind of pouch", "pln": ["(: cnet_isa_a8fd3f9f24 (IsA sporran pouch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sport is a kind of game", "pln": ["(: cnet_isa_2427f91c31 (IsA sport game) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sport is a kind of diversion", "pln": ["(: cnet_isa_776259ecf2 (IsA sport diversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sport is a kind of occupation", "pln": ["(: cnet_isa_fad0328c69 (IsA sport occupation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sport is a kind of athlete", "pln": ["(: cnet_isa_a4f34b4fd7 (IsA sport athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sport is a kind of person", "pln": ["(: cnet_isa_e3d4f648fc (IsA sport person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sport is a kind of vacationer", "pln": ["(: cnet_isa_277255b5bd (IsA sport vacationer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sport kite is a kind of kite", "pln": ["(: cnet_isa_ce1ba42077 (IsA sport_kite kite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sport utility is a kind of car", "pln": ["(: cnet_isa_041d480bad (IsA sport_utility car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sporting dog is a kind of hunting dog", "pln": ["(: cnet_isa_96dba29df1 (IsA sporting_dog hunting_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sporting good is a kind of commodity", "pln": ["(: cnet_isa_bcb8f97f14 (IsA sporting_good commodity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sporting good is a kind of sport equipment", "pln": ["(: cnet_isa_d66bf8aa6b (IsA sporting_good sport_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sporting life is a kind of gambling", "pln": ["(: cnet_isa_910b6a3069 (IsA sporting_life gambling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sporting man is a kind of amateur", "pln": ["(: cnet_isa_b19d75c155 (IsA sporting_man amateur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sporting man is a kind of gambler", "pln": ["(: cnet_isa_d0b69e78e2 (IsA sporting_man gambler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sport announcer is a kind of announcer", "pln": ["(: cnet_isa_ef6c6cd254 (IsA sport_announcer announcer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sport car is a kind of car", "pln": ["(: cnet_isa_d11a0f4a65 (IsA sport_car car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sport desk is a kind of editorial department", "pln": ["(: cnet_isa_ed87752486 (IsA sport_desk editorial_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sport editor is a kind of newspaper editor", "pln": ["(: cnet_isa_6a1116c873 (IsA sport_editor newspaper_editor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sport equipment is a kind of equipment", "pln": ["(: cnet_isa_e86be4d93d (IsA sport_equipment equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sport fan is a kind of enthusiast", "pln": ["(: cnet_isa_73a3ae6e29 (IsA sport_fan enthusiast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sport implement is a kind of implement", "pln": ["(: cnet_isa_cb40a907b5 (IsA sport_implement implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sport medicine is a kind of medicine", "pln": ["(: cnet_isa_d531930588 (IsA sport_medicine medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sport page is a kind of page", "pln": ["(: cnet_isa_7831ac7db6 (IsA sport_page page) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sport section is a kind of section", "pln": ["(: cnet_isa_75964c5c31 (IsA sport_section section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sport writer is a kind of journalist", "pln": ["(: cnet_isa_49f16175f9 (IsA sport_writer journalist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sportscast is a kind of newscast", "pln": ["(: cnet_isa_d5042188f8 (IsA sportscast newscast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sportsmanship is a kind of fairness", "pln": ["(: cnet_isa_0004f79b3e (IsA sportsmanship fairness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sportswear is a kind of attire", "pln": ["(: cnet_isa_1765e0b76b (IsA sportswear attire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spot is a kind of place of business", "pln": ["(: cnet_isa_80c7892989 (IsA spot place_of_business) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spot is a kind of playing card", "pln": ["(: cnet_isa_9f5adeb17f (IsA spot playing_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spot is a kind of marking", "pln": ["(: cnet_isa_b5e85e742c (IsA spot marking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spot is a kind of marker", "pln": ["(: cnet_isa_54ac8dea36 (IsA spot marker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spot is a kind of section", "pln": ["(: cnet_isa_a638f96f87 (IsA spot section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spot is a kind of small indefinite quantity", "pln": ["(: cnet_isa_bd98df3d7a (IsA spot small_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spot check is a kind of check", "pln": ["(: cnet_isa_c8a51fa689 (IsA spot_check check) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spot jamming is a kind of jamming", "pln": ["(: cnet_isa_5b31914e65 (IsA spot_jamming jamming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spot market is a kind of commodity exchange", "pln": ["(: cnet_isa_3b4b371a80 (IsA spot_market commodity_exchange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spot pass is a kind of pass", "pln": ["(: cnet_isa_aafb7a7fa2 (IsA spot_pass pass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spot price is a kind of price", "pln": ["(: cnet_isa_ebf7b88552 (IsA spot_price price) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spot weld is a kind of weld", "pln": ["(: cnet_isa_d4198b2bb5 (IsA spot_weld weld) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spot welder is a kind of welder", "pln": ["(: cnet_isa_d93e833a43 (IsA spot_welder welder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spot welding is a kind of welding", "pln": ["(: cnet_isa_f310043245 (IsA spot_welding welding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spotlessness is a kind of cleanness", "pln": ["(: cnet_isa_9dd6367e6d (IsA spotlessness cleanness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spotlight is a kind of lamp", "pln": ["(: cnet_isa_674ac451a8 (IsA spotlight lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spotted antbird is a kind of antbird", "pln": ["(: cnet_isa_996d29ed29 (IsA spotted_antbird antbird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spotted barramundi is a kind of fish specy", "pln": ["(: cnet_isa_8b54e17954 (IsA spotted_barramundi fish_specy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spotted coral root is a kind of coral root", "pln": ["(: cnet_isa_f0c230df6c (IsA spotted_coral_root coral_root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spotted cowbane is a kind of poisonous plant", "pln": ["(: cnet_isa_b11a08ed01 (IsA spotted_cowbane poisonous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spotted crake is a kind of crake", "pln": ["(: cnet_isa_a925134df4 (IsA spotted_crake crake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spotted dick is a kind of suet pudding", "pln": ["(: cnet_isa_d91ad8a362 (IsA spotted_dick suet_pudding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spotted eagle ray is a kind of eagle ray", "pln": ["(: cnet_isa_ba8176aa53 (IsA spotted_eagle_ray eagle_ray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spotted fever is a kind of rickettsial disease", "pln": ["(: cnet_isa_a192134964 (IsA spotted_fever rickettsial_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spotted flycatcher is a kind of old world flycatcher", "pln": ["(: cnet_isa_e2b89011b7 (IsA spotted_flycatcher old_world_flycatcher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spotted gum is a kind of eucalyptus", "pln": ["(: cnet_isa_875c95c868 (IsA spotted_gum eucalyptus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spotted hyena is a kind of hyena", "pln": ["(: cnet_isa_d863b7fa4c (IsA spotted_hyena hyena) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spotted lynx is a kind of lynx", "pln": ["(: cnet_isa_7390be5502 (IsA spotted_lynx lynx) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spotted owl is a kind of owl", "pln": ["(: cnet_isa_128d627d92 (IsA spotted_owl owl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spotted salamander is a kind of ambystomid", "pln": ["(: cnet_isa_2fb912097d (IsA spotted_salamander ambystomid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spotted salamander is a kind of salamander", "pln": ["(: cnet_isa_c181604277 (IsA spotted_salamander salamander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spotted sandpiper is a kind of sandpiper", "pln": ["(: cnet_isa_d05c26399e (IsA spotted_sandpiper sandpiper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spotted skunk is a kind of skunk", "pln": ["(: cnet_isa_dbb5937f13 (IsA spotted_skunk skunk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spotted sunfish is a kind of freshwater bream", "pln": ["(: cnet_isa_a204c46aa5 (IsA spotted_sunfish freshwater_bream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spotted weakfish is a kind of sea trout", "pln": ["(: cnet_isa_2e816de8b5 (IsA spotted_weakfish sea_trout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spotter is a kind of employee", "pln": ["(: cnet_isa_63377b38a7 (IsA spotter employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spouse is a kind of domestic partner", "pln": ["(: cnet_isa_2fb1c676cc (IsA spouse domestic_partner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spouse is a kind of relative", "pln": ["(: cnet_isa_560d9f8778 (IsA spouse relative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spout is a kind of opening", "pln": ["(: cnet_isa_10f67c0d10 (IsA spout opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spouter is a kind of whale", "pln": ["(: cnet_isa_00a259d232 (IsA spouter whale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spouter is a kind of oil well", "pln": ["(: cnet_isa_5eb945a358 (IsA spouter oil_well) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sprachgefuhl is a kind of feeling", "pln": ["(: cnet_isa_434d17eaca (IsA sprachgefuhl feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sprag is a kind of chock", "pln": ["(: cnet_isa_957f4a58cc (IsA sprag chock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spraguea is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_81c2231a9a (IsA spraguea caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sprain is a kind of wrench", "pln": ["(: cnet_isa_c2ec184ca1 (IsA sprain wrench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sprat is a kind of herring", "pln": ["(: cnet_isa_80f26bc286 (IsA sprat herring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sprawl is a kind of position", "pln": ["(: cnet_isa_66f5b9b828 (IsA sprawl position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sprawler is a kind of person", "pln": ["(: cnet_isa_518900f8e4 (IsA sprawler person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spray is a kind of flower arrangement", "pln": ["(: cnet_isa_da2254fe0f (IsA spray flower_arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spray is a kind of jet", "pln": ["(: cnet_isa_ccf8a0c232 (IsA spray jet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spray is a kind of small indefinite quantity", "pln": ["(: cnet_isa_530af403c4 (IsA spray small_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spray is a kind of pesticide", "pln": ["(: cnet_isa_4cecf94b80 (IsA spray pesticide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spray is a kind of water vapor", "pln": ["(: cnet_isa_3971429d4a (IsA spray water_vapor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spray gun is a kind of applicator", "pln": ["(: cnet_isa_41f53b4024 (IsA spray_gun applicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spray paint is a kind of paint", "pln": ["(: cnet_isa_3c5c7bd936 (IsA spray_paint paint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spray painting is a kind of painting", "pln": ["(: cnet_isa_04d86d1226 (IsA spray_painting painting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spray painting is a kind of spraying", "pln": ["(: cnet_isa_bd97cb9953 (IsA spray_painting spraying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spray painting graffiti is a kind of vandelism", "pln": ["(: cnet_isa_3e2ff2bddc (IsA spray_painting_graffiti vandelism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sprayer is a kind of laborer", "pln": ["(: cnet_isa_91dad93244 (IsA sprayer laborer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spraying is a kind of application", "pln": ["(: cnet_isa_13dd86f350 (IsA spraying application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spread is a kind of extension", "pln": ["(: cnet_isa_2d1d9ccd8b (IsA spread extension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spread is a kind of girth", "pln": ["(: cnet_isa_b9393d314b (IsA spread girth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spread is a kind of page", "pln": ["(: cnet_isa_0ef1fc12b0 (IsA spread page) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spread is a kind of change of location", "pln": ["(: cnet_isa_9868b7ac5a (IsA spread change_of_location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spread is a kind of condiment", "pln": ["(: cnet_isa_89ca370f95 (IsA spread condiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spread eagle is a kind of figure", "pln": ["(: cnet_isa_97f27a8166 (IsA spread_eagle figure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spread eagle is a kind of emblem", "pln": ["(: cnet_isa_c8e2d562ba (IsA spread_eagle emblem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spreader is a kind of hand tool", "pln": ["(: cnet_isa_3dbeb961e0 (IsA spreader hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spreading fleabane is a kind of fleabane", "pln": ["(: cnet_isa_83e58e212f (IsA spreading_fleabane fleabane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spreading pogonia is a kind of orchid", "pln": ["(: cnet_isa_c91703ba3a (IsA spreading_pogonia orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spreadsheet is a kind of program", "pln": ["(: cnet_isa_9c2477462a (IsA spreadsheet program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sprechgesang is a kind of voice", "pln": ["(: cnet_isa_47cfd5cd55 (IsA sprechgesang voice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spree is a kind of intemperance", "pln": ["(: cnet_isa_667edab6ae (IsA spree intemperance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spree killer is a kind of serial killer", "pln": ["(: cnet_isa_01f194d271 (IsA spree_killer serial_killer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sprig is a kind of decoration", "pln": ["(: cnet_isa_0626457b58 (IsA sprig decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spring is a kind of elastic device", "pln": ["(: cnet_isa_0c19873e3d (IsA spring elastic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spring is a kind of beginning", "pln": ["(: cnet_isa_ced5e7009b (IsA spring beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spring is a kind of geological formation", "pln": ["(: cnet_isa_0e14487910 (IsA spring geological_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spring is a kind of season", "pln": ["(: cnet_isa_24f851b854 (IsA spring season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spring and winter is a kind of both season", "pln": ["(: cnet_isa_2a0b9c59c7 (IsA spring_and_winter both_season) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spring balance is a kind of balance", "pln": ["(: cnet_isa_6f5fc1b027 (IsA spring_balance balance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spring beauty is a kind of flower", "pln": ["(: cnet_isa_c42cf50456 (IsA spring_beauty flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spring break is a kind of respite", "pln": ["(: cnet_isa_4b2c1fa7e3 (IsA spring_break respite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spring cankerworm is a kind of cankerworm", "pln": ["(: cnet_isa_f6054377a4 (IsA spring_cankerworm cankerworm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spring chicken is a kind of chicken", "pln": ["(: cnet_isa_4be8e6300a (IsA spring_chicken chicken) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spring cleaning is a kind of cleaning", "pln": ["(: cnet_isa_6f390e3146 (IsA spring_cleaning cleaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spring cress is a kind of bittercress", "pln": ["(: cnet_isa_20a6c8e4b8 (IsA spring_cress bittercress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spring mattress is a kind of mattress", "pln": ["(: cnet_isa_79b5bb142d (IsA spring_mattress mattress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spring peeper is a kind of tree toad", "pln": ["(: cnet_isa_6c45907316 (IsA spring_peeper tree_toad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spring squill is a kind of scilla", "pln": ["(: cnet_isa_dfd04898f6 (IsA spring_squill scilla) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spring training is a kind of preseason", "pln": ["(: cnet_isa_7279fb9848 (IsA spring_training preseason) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spring vetch is a kind of vetch", "pln": ["(: cnet_isa_148bfd3b35 (IsA spring_vetch vetch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spring vetchling is a kind of vetchling", "pln": ["(: cnet_isa_0da1e876b1 (IsA spring_vetchling vetchling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spring water is a kind of water", "pln": ["(: cnet_isa_cdfa64b44a (IsA spring_water water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "springboard is a kind of beginning", "pln": ["(: cnet_isa_46a9a50051 (IsA springboard beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "springboard is a kind of board", "pln": ["(: cnet_isa_f1691e12c0 (IsA springboard board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "springbok is a kind of gazelle", "pln": ["(: cnet_isa_8ff396120c (IsA springbok gazelle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "springer is a kind of cow", "pln": ["(: cnet_isa_d622626ee8 (IsA springer cow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "springer is a kind of stone", "pln": ["(: cnet_isa_9b3a8bc256 (IsA springer stone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "springer spaniel is a kind of spaniel", "pln": ["(: cnet_isa_7352dae6b6 (IsA springer_spaniel spaniel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "springtide is a kind of flush", "pln": ["(: cnet_isa_bb1e419950 (IsA springtide flush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "springtide is a kind of high tide", "pln": ["(: cnet_isa_0b0b4155ac (IsA springtide high_tide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sprinkle is a kind of watering", "pln": ["(: cnet_isa_3251ea265d (IsA sprinkle watering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sprinkler is a kind of mechanical device", "pln": ["(: cnet_isa_a174eb5180 (IsA sprinkler mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sprinkler system is a kind of system", "pln": ["(: cnet_isa_2d54f3c816 (IsA sprinkler_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sprinter is a kind of runner", "pln": ["(: cnet_isa_fc192ff408 (IsA sprinter runner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sprit is a kind of spar", "pln": ["(: cnet_isa_5d042bebc1 (IsA sprit spar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sprite is a kind of soda", "pln": ["(: cnet_isa_eb701adf98 (IsA sprite soda) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sprite is a kind of soft drink", "pln": ["(: cnet_isa_396670d5b9 (IsA sprite soft_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sprite is a kind of atmospheric electricity", "pln": ["(: cnet_isa_07f6a71554 (IsA sprite atmospheric_electricity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spritsail is a kind of fore and aft sail", "pln": ["(: cnet_isa_f78c1417e4 (IsA spritsail fore_and_aft_sail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spritz is a kind of jet", "pln": ["(: cnet_isa_00d7cf76f8 (IsA spritz jet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spritzer is a kind of mixed drink", "pln": ["(: cnet_isa_2e8a0febfd (IsA spritzer mixed_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sprocket is a kind of roller", "pln": ["(: cnet_isa_3c15d9cbd4 (IsA sprocket roller) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sprocket is a kind of wheel", "pln": ["(: cnet_isa_5dfa61e453 (IsA sprocket wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sprog is a kind of recruit", "pln": ["(: cnet_isa_63ac787c7d (IsA sprog recruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sprog is a kind of child", "pln": ["(: cnet_isa_8c6774d230 (IsA sprog child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sprout is a kind of green", "pln": ["(: cnet_isa_eaf8c90197 (IsA sprout green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sprout is a kind of plant organ", "pln": ["(: cnet_isa_97e0abf028 (IsA sprout plant_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spruce is a kind of conifer", "pln": ["(: cnet_isa_ff58b4e99b (IsA spruce conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spruce is a kind of wood", "pln": ["(: cnet_isa_134fd0b6aa (IsA spruce wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spruce bark beetle is a kind of bark beetle", "pln": ["(: cnet_isa_b6448231ba (IsA spruce_bark_beetle bark_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spruce beer is a kind of brew", "pln": ["(: cnet_isa_53afccb851 (IsA spruce_beer brew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spruce gall aphid is a kind of adelgid", "pln": ["(: cnet_isa_a92c35971a (IsA spruce_gall_aphid adelgid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spruce grouse is a kind of grouse", "pln": ["(: cnet_isa_4d4b412d7a (IsA spruce_grouse grouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spruce pine is a kind of pine", "pln": ["(: cnet_isa_922013b0ac (IsA spruce_pine pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sprue is a kind of disorder", "pln": ["(: cnet_isa_ca75e34782 (IsA sprue disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sprung rhythm is a kind of poetic rhythm", "pln": ["(: cnet_isa_fe9238bdf4 (IsA sprung_rhythm poetic_rhythm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spud is a kind of hand shovel", "pln": ["(: cnet_isa_a22b8972e7 (IsA spud hand_shovel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spume is a kind of foam", "pln": ["(: cnet_isa_b0de437ec8 (IsA spume foam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spun yarn is a kind of small stuff", "pln": ["(: cnet_isa_224fb4c953 (IsA spun_yarn small_stuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spur is a kind of prod", "pln": ["(: cnet_isa_9aff8a4ec1 (IsA spur prod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spur is a kind of plant process", "pln": ["(: cnet_isa_bf985f0ff3 (IsA spur plant_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spur is a kind of projection", "pln": ["(: cnet_isa_38ad24943c (IsA spur projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spur blight is a kind of blight", "pln": ["(: cnet_isa_18b05f3b05 (IsA spur_blight blight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spur gear is a kind of gear", "pln": ["(: cnet_isa_7cd7568a3e (IsA spur_gear gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spurge is a kind of shrub", "pln": ["(: cnet_isa_c5b56fced4 (IsA spurge shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spurge laurel is a kind of daphne", "pln": ["(: cnet_isa_af2096ab8e (IsA spurge_laurel daphne) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spurge nettle is a kind of herb", "pln": ["(: cnet_isa_bd0cea7274 (IsA spurge_nettle herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spurious correlation is a kind of correlation", "pln": ["(: cnet_isa_b0c6789d4d (IsA spurious_correlation correlation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spuriousness is a kind of falsity", "pln": ["(: cnet_isa_b612b93aa8 (IsA spuriousness falsity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spurner is a kind of person", "pln": ["(: cnet_isa_8908e8973e (IsA spurner person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spurred gentian is a kind of gentian", "pln": ["(: cnet_isa_45ae8203ca (IsA spurred_gentian gentian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sputnik is a kind of satellite", "pln": ["(: cnet_isa_558d6313e4 (IsA sputnik satellite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sputter is a kind of utterance", "pln": ["(: cnet_isa_872222a2c1 (IsA sputter utterance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spy is a kind of secret agent", "pln": ["(: cnet_isa_de4a785636 (IsA spy secret_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spy is a kind of spectator", "pln": ["(: cnet_isa_91ff077d5a (IsA spy spectator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spy satellite is a kind of satellite", "pln": ["(: cnet_isa_10b91871c1 (IsA spy_satellite satellite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spyeria is a kind of arthropod genus", "pln": ["(: cnet_isa_5b0c5d08c2 (IsA spyeria arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spying is a kind of intelligence", "pln": ["(: cnet_isa_1a18bddf2b (IsA spying intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spying is a kind of watch", "pln": ["(: cnet_isa_5682ff7c05 (IsA spying watch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "spymaster is a kind of master", "pln": ["(: cnet_isa_112da2bd44 (IsA spymaster master) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "spyware is a kind of software", "pln": ["(: cnet_isa_584b19b9ba (IsA spyware software) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squab is a kind of pigeon", "pln": ["(: cnet_isa_e108ea0482 (IsA squab pigeon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squab is a kind of sofa", "pln": ["(: cnet_isa_94367b1cbf (IsA squab sofa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squab is a kind of poultry", "pln": ["(: cnet_isa_fffd23b7d2 (IsA squab poultry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squabbler is a kind of malcontent", "pln": ["(: cnet_isa_c6385978a5 (IsA squabbler malcontent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squad is a kind of army unit", "pln": ["(: cnet_isa_36f61123e7 (IsA squad army_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squad room is a kind of room", "pln": ["(: cnet_isa_becf7e3740 (IsA squad_room room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squadron is a kind of air unit", "pln": ["(: cnet_isa_6c1fe103cf (IsA squadron air_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "squadron is a kind of cavalry", "pln": ["(: cnet_isa_9009b8e3a1 (IsA squadron cavalry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squadron is a kind of naval unit", "pln": ["(: cnet_isa_519efe7d8a (IsA squadron naval_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squalidae is a kind of fish family", "pln": ["(: cnet_isa_68b7682ade (IsA squalidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squall is a kind of wind", "pln": ["(: cnet_isa_5c9594800a (IsA squall wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squall line is a kind of cold front", "pln": ["(: cnet_isa_78a5ff4150 (IsA squall_line cold_front) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squalus is a kind of fish genus", "pln": ["(: cnet_isa_eb0d53a8fa (IsA squalus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squama is a kind of scale", "pln": ["(: cnet_isa_86cb88bb80 (IsA squama scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squamata is a kind of animal order", "pln": ["(: cnet_isa_64823d6023 (IsA squamata animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squamous cell is a kind of epithelial cell", "pln": ["(: cnet_isa_3aba64e75b (IsA squamous_cell epithelial_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squamule is a kind of scale", "pln": ["(: cnet_isa_f448dd1032 (IsA squamule scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squandering is a kind of waste", "pln": ["(: cnet_isa_cb17156e96 (IsA squandering waste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squandermania is a kind of squandering", "pln": ["(: cnet_isa_9e168e1284 (IsA squandermania squandering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "square is a kind of rectangle", "pln": ["(: cnet_isa_d83020c5a5 (IsA square rectangle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "square is a kind of shape", "pln": ["(: cnet_isa_3b519c3dbb (IsA square shape) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "square is a kind of artifact", "pln": ["(: cnet_isa_b7bb5c7510 (IsA square artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "square is a kind of hand tool", "pln": ["(: cnet_isa_4ec881deb0 (IsA square hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "square is a kind of regular polygon", "pln": ["(: cnet_isa_0241b65bc1 (IsA square regular_polygon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "square is a kind of conservative", "pln": ["(: cnet_isa_c41a9ad8a0 (IsA square conservative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "square is a kind of simpleton", "pln": ["(: cnet_isa_79fef0d9ca (IsA square simpleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "square is a kind of number", "pln": ["(: cnet_isa_834e3f13e2 (IsA square number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "square bashing is a kind of military drill", "pln": ["(: cnet_isa_2df584c422 (IsA square_bashing military_drill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "square dance is a kind of country dance", "pln": ["(: cnet_isa_d6d42730fa (IsA square_dance country_dance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "square dance music is a kind of folk music", "pln": ["(: cnet_isa_fc620e5489 (IsA square_dance_music folk_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "square dancer is a kind of folk dancer", "pln": ["(: cnet_isa_ebf32b2d81 (IsA square_dancer folk_dancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "square foot is a kind of area unit", "pln": ["(: cnet_isa_c427ec1ac0 (IsA square_foot area_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "square inch is a kind of area unit", "pln": ["(: cnet_isa_d2383a2c3b (IsA square_inch area_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "square knot is a kind of knot", "pln": ["(: cnet_isa_a707d7f8aa (IsA square_knot knot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "square matrix is a kind of matrix", "pln": ["(: cnet_isa_3ad5616f2e (IsA square_matrix matrix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "square meal is a kind of meal", "pln": ["(: cnet_isa_606cb710e3 (IsA square_meal meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "square meter is a kind of area unit", "pln": ["(: cnet_isa_fd766d76a7 (IsA square_meter area_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "square mile is a kind of area unit", "pln": ["(: cnet_isa_c22ef738f1 (IsA square_mile area_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "square nut is a kind of nut", "pln": ["(: cnet_isa_18c9d652cf (IsA square_nut nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "square one is a kind of situation", "pln": ["(: cnet_isa_b27f7d527a (IsA square_one situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "square rigger is a kind of sailing vessel", "pln": ["(: cnet_isa_a54a8edcc0 (IsA square_rigger sailing_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "square root is a kind of root", "pln": ["(: cnet_isa_e7f5c1a0ba (IsA square_root root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "square sail is a kind of sail", "pln": ["(: cnet_isa_e4c849a901 (IsA square_sail sail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "square shooter is a kind of good person", "pln": ["(: cnet_isa_5327e0a378 (IsA square_shooter good_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "square yard is a kind of area unit", "pln": ["(: cnet_isa_8bad89afa4 (IsA square_yard area_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squareness is a kind of rectangularity", "pln": ["(: cnet_isa_923b5d78d2 (IsA squareness rectangularity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squaretail is a kind of scombroid", "pln": ["(: cnet_isa_0b9d804700 (IsA squaretail scombroid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squash is a kind of sport", "pln": ["(: cnet_isa_b84fc7f1c9 (IsA squash sport) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squash is a kind of court game", "pln": ["(: cnet_isa_11e3b94709 (IsA squash court_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squash is a kind of vegetable", "pln": ["(: cnet_isa_913bac884b (IsA squash vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squash is a kind of vine", "pln": ["(: cnet_isa_506d8c6d9d (IsA squash vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squash ball is a kind of ball", "pln": ["(: cnet_isa_55e50525c3 (IsA squash_ball ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "squash bug is a kind of coreid bug", "pln": ["(: cnet_isa_77e2c85a53 (IsA squash_bug coreid_bug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squash court is a kind of court", "pln": ["(: cnet_isa_12a68b6646 (IsA squash_court court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squash pie is a kind of pie", "pln": ["(: cnet_isa_3fcca58e6d (IsA squash_pie pie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squash racket is a kind of racket", "pln": ["(: cnet_isa_1975afd0fd (IsA squash_racket racket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "squat is a kind of motion", "pln": ["(: cnet_isa_e80b56d5ad (IsA squat motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squatina is a kind of fish genus", "pln": ["(: cnet_isa_ab4360a10a (IsA squatina fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "squatinidae is a kind of fish family", "pln": ["(: cnet_isa_8f43c3bd17 (IsA squatinidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squatness is a kind of lowness", "pln": ["(: cnet_isa_723044d55e (IsA squatness lowness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squatter is a kind of intruder", "pln": ["(: cnet_isa_29331a28e4 (IsA squatter intruder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squatter is a kind of settler", "pln": ["(: cnet_isa_867857a9a1 (IsA squatter settler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squaw is a kind of native american", "pln": ["(: cnet_isa_459c9fed9a (IsA squaw native_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "squaw grass is a kind of liliaceous plant", "pln": ["(: cnet_isa_978a08a08d (IsA squaw_grass liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squaw man is a kind of white man", "pln": ["(: cnet_isa_76fc682f1d (IsA squaw_man white_man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squawbush is a kind of sumac", "pln": ["(: cnet_isa_c0d9be8bcd (IsA squawbush sumac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squawk is a kind of noise", "pln": ["(: cnet_isa_8510a34dc9 (IsA squawk noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squawk box is a kind of loudspeaker", "pln": ["(: cnet_isa_549ada4599 (IsA squawk_box loudspeaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squeak is a kind of noise", "pln": ["(: cnet_isa_d4a127480e (IsA squeak noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squeaker is a kind of artifact", "pln": ["(: cnet_isa_582cd8530c (IsA squeaker artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squeal is a kind of howl", "pln": ["(: cnet_isa_b3cfc6eb18 (IsA squeal howl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squeamishness is a kind of fastidiousness", "pln": ["(: cnet_isa_812dca3a36 (IsA squeamishness fastidiousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squeegee is a kind of cleaning implement", "pln": ["(: cnet_isa_53b203517d (IsA squeegee cleaning_implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squeeze is a kind of compression", "pln": ["(: cnet_isa_e8710c5a7d (IsA squeeze compression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squeeze is a kind of constriction", "pln": ["(: cnet_isa_7e21488bf2 (IsA squeeze constriction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squeeze is a kind of movement", "pln": ["(: cnet_isa_75a3823818 (IsA squeeze movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squeeze is a kind of lover", "pln": ["(: cnet_isa_de05e629a7 (IsA squeeze lover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "squeeze is a kind of loss", "pln": ["(: cnet_isa_ff429e8f8c (IsA squeeze loss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squeeze play is a kind of baseball play", "pln": ["(: cnet_isa_901b232984 (IsA squeeze_play baseball_play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squeezer is a kind of kitchen utensil", "pln": ["(: cnet_isa_1aaa43593b (IsA squeezer kitchen_utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squelch circuit is a kind of circuit", "pln": ["(: cnet_isa_693b581a37 (IsA squelch_circuit circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squib is a kind of firework", "pln": ["(: cnet_isa_2cacc5574d (IsA squib firework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squid is a kind of decapod", "pln": ["(: cnet_isa_bac1946396 (IsA squid decapod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squid is a kind of seafood", "pln": ["(: cnet_isa_86521bb215 (IsA squid seafood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squiggle is a kind of line", "pln": ["(: cnet_isa_f5931c2b59 (IsA squiggle line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squiggle is a kind of scribble", "pln": ["(: cnet_isa_991a92f73c (IsA squiggle scribble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squill is a kind of bulb", "pln": ["(: cnet_isa_a3ded8627b (IsA squill bulb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squilla is a kind of mantis shrimp", "pln": ["(: cnet_isa_663fbea96e (IsA squilla mantis_shrimp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squillidae is a kind of arthropod family", "pln": ["(: cnet_isa_e07d903201 (IsA squillidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "squinch is a kind of arch", "pln": ["(: cnet_isa_6fd447b0ef (IsA squinch arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squint is a kind of look", "pln": ["(: cnet_isa_2b191c13fa (IsA squint look) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squinter is a kind of person", "pln": ["(: cnet_isa_9461f5a2aa (IsA squinter person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squire is a kind of attendant", "pln": ["(: cnet_isa_c31f73a832 (IsA squire attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squire is a kind of landowner", "pln": ["(: cnet_isa_5de5a91d55 (IsA squire landowner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squirrel s foot fern is a kind of davallia", "pln": ["(: cnet_isa_5e6e154d8a (IsA squirrel_s_foot_fern davallia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squirrel is a kind of rodent", "pln": ["(: cnet_isa_18093df12f (IsA squirrel rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squirrel is a kind of fur", "pln": ["(: cnet_isa_744b1dae58 (IsA squirrel fur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squirrel cage is a kind of cage", "pln": ["(: cnet_isa_272a8dd24c (IsA squirrel_cage cage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squirrel corn is a kind of herb", "pln": ["(: cnet_isa_f9cce9baa1 (IsA squirrel_corn herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squirrel monkey is a kind of new world monkey", "pln": ["(: cnet_isa_b21772db85 (IsA squirrel_monkey new_world_monkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squirrelfish is a kind of spiny finned fish", "pln": ["(: cnet_isa_cb4807b80e (IsA squirrelfish spiny_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squirrel is a kind of mammal", "pln": ["(: cnet_isa_95919738a5 (IsA squirrel mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squirreltail barley is a kind of barley", "pln": ["(: cnet_isa_e958832d06 (IsA squirreltail_barley barley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squirting cucumber is a kind of gourd", "pln": ["(: cnet_isa_80a56d5dc4 (IsA squirting_cucumber gourd) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "squish is a kind of noise", "pln": ["(: cnet_isa_d6bb6575d2 (IsA squish noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sri lanka rupee is a kind of sri lankan monetary unit", "pln": ["(: cnet_isa_90f3c12eb1 (IsA sri_lanka_rupee sri_lankan_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sri lankan is a kind of asiatic", "pln": ["(: cnet_isa_7ea36b0991 (IsA sri_lankan asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sri lankan monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_e4b88f21e1 (IsA sri_lankan_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "st andrew s cross is a kind of cross", "pln": ["(: cnet_isa_522b5365d9 (IsA st_andrew_s_cross cross) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "st andrew s cross is a kind of st john s wort", "pln": ["(: cnet_isa_9813f8b016 (IsA st_andrew_s_cross st_john_s_wort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "st augustine grass is a kind of grass", "pln": ["(: cnet_isa_2a5c275e5e (IsA st_augustine_grass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "st bruno s lily is a kind of spiderwort", "pln": ["(: cnet_isa_423f45230c (IsA st_bruno_s_lily spiderwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "st john s wort is a kind of subshrub", "pln": ["(: cnet_isa_e6491ace5e (IsA st_john_s_wort subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "st patrick s day is a kind of day", "pln": ["(: cnet_isa_8966c0039a (IsA st_patrick_s_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "st peter s wort is a kind of st john s wort", "pln": ["(: cnet_isa_9737bcd6d4 (IsA st_peter_s_wort st_john_s_wort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stab is a kind of blow", "pln": ["(: cnet_isa_22996bb3ee (IsA stab blow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stabber is a kind of attacker", "pln": ["(: cnet_isa_a9c7e38808 (IsA stabber attacker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stabbing is a kind of murder", "pln": ["(: cnet_isa_66f30aa251 (IsA stabbing murder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stabile is a kind of sculpture", "pln": ["(: cnet_isa_611860120c (IsA stabile sculpture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stability is a kind of steadiness", "pln": ["(: cnet_isa_41e2119cf9 (IsA stability steadiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stability is a kind of order", "pln": ["(: cnet_isa_1dbe4eaa1d (IsA stability order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stabilization is a kind of standardization", "pln": ["(: cnet_isa_bf721db424 (IsA stabilization standardization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stabilization is a kind of improvement", "pln": ["(: cnet_isa_bc60df60fc (IsA stabilization improvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stabilizer is a kind of airfoil", "pln": ["(: cnet_isa_8122955eb5 (IsA stabilizer airfoil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stabilizer is a kind of device", "pln": ["(: cnet_isa_b4897b0e03 (IsA stabilizer device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stabilizer is a kind of chemical", "pln": ["(: cnet_isa_d6ca796a1a (IsA stabilizer chemical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stabilizer bar is a kind of bar", "pln": ["(: cnet_isa_24a4ef86e7 (IsA stabilizer_bar bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stabilizer bar is a kind of stabilizer", "pln": ["(: cnet_isa_7b663088a2 (IsA stabilizer_bar stabilizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stable is a kind of building", "pln": ["(: cnet_isa_3a757a6c43 (IsA stable building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stable gear is a kind of gear", "pln": ["(: cnet_isa_0b262a9a49 (IsA stable_gear gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stableman is a kind of hired hand", "pln": ["(: cnet_isa_d27f2276de (IsA stableman hired_hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stablemate is a kind of horse", "pln": ["(: cnet_isa_eefb02f432 (IsA stablemate horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stabling is a kind of accommodation", "pln": ["(: cnet_isa_10f01f6d49 (IsA stabling accommodation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stachyose is a kind of tetrasaccharide", "pln": ["(: cnet_isa_087435ca58 (IsA stachyose tetrasaccharide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stachy is a kind of asterid dicot genus", "pln": ["(: cnet_isa_d73baa9a92 (IsA stachy asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stack is a kind of pile", "pln": ["(: cnet_isa_205f5e2475 (IsA stack pile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stacked heel is a kind of heel", "pln": ["(: cnet_isa_1915f81a82 (IsA stacked_heel heel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stacker is a kind of laborer", "pln": ["(: cnet_isa_38b906f2d2 (IsA stacker laborer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stack is a kind of storage space", "pln": ["(: cnet_isa_a2236f5620 (IsA stack storage_space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stacte is a kind of spice", "pln": ["(: cnet_isa_088df9a42d (IsA stacte spice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staddle is a kind of base", "pln": ["(: cnet_isa_10277e9309 (IsA staddle base) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stadium is a kind of big place", "pln": ["(: cnet_isa_45ccac4320 (IsA stadium big_place) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stadium is a kind of structure", "pln": ["(: cnet_isa_42acce7895 (IsA stadium structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staff is a kind of stick", "pln": ["(: cnet_isa_f0dd23b290 (IsA staff stick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staff is a kind of symbol", "pln": ["(: cnet_isa_aa2edec4bf (IsA staff symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staff is a kind of body", "pln": ["(: cnet_isa_46a2e4d5f7 (IsA staff body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staff is a kind of force", "pln": ["(: cnet_isa_2fbdc9338a (IsA staff force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staff is a kind of musical notation", "pln": ["(: cnet_isa_1e924a2628 (IsA staff musical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staff is a kind of building material", "pln": ["(: cnet_isa_870776018e (IsA staff building_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staff line is a kind of line", "pln": ["(: cnet_isa_5dc8b5623d (IsA staff_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staff member is a kind of employee", "pln": ["(: cnet_isa_1cebae7eef (IsA staff_member employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staff officer is a kind of commissioned officer", "pln": ["(: cnet_isa_dd86753f62 (IsA staff_officer commissioned_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staff sergeant is a kind of sergeant", "pln": ["(: cnet_isa_b8559893e3 (IsA staff_sergeant sergeant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staff tree is a kind of shrub", "pln": ["(: cnet_isa_30976f0df4 (IsA staff_tree shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staffordshire bullterrier is a kind of bullterrier", "pln": ["(: cnet_isa_edffb21942 (IsA staffordshire_bullterrier bullterrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stag is a kind of buck", "pln": ["(: cnet_isa_f0bbb32503 (IsA stag buck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stag beetle is a kind of lamellicorn beetle", "pln": ["(: cnet_isa_488c5e0bac (IsA stag_beetle lamellicorn_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stag party is a kind of party", "pln": ["(: cnet_isa_05a008a91f (IsA stag_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stage is a kind of travel", "pln": ["(: cnet_isa_8ec64e177b (IsA stage travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stage is a kind of platform", "pln": ["(: cnet_isa_5063cecfee (IsA stage platform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stage is a kind of dramaturgy", "pln": ["(: cnet_isa_0b171b9e8f (IsA stage dramaturgy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stage is a kind of scene", "pln": ["(: cnet_isa_7c4560a0cd (IsA stage scene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stage crew is a kind of gang", "pln": ["(: cnet_isa_433f26c58a (IsA stage_crew gang) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stage dancing is a kind of dancing", "pln": ["(: cnet_isa_b179fdcbef (IsA stage_dancing dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stage dancing is a kind of show", "pln": ["(: cnet_isa_7fda01517c (IsA stage_dancing show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stage direction is a kind of direction", "pln": ["(: cnet_isa_bcb401b8dc (IsA stage_direction direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stage director is a kind of director", "pln": ["(: cnet_isa_54cc9f6df7 (IsA stage_director director) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stage door is a kind of entrance", "pln": ["(: cnet_isa_7c7ae0573f (IsA stage_door entrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stage effect is a kind of special effect", "pln": ["(: cnet_isa_9a6524c039 (IsA stage_effect special_effect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stage fright is a kind of fear", "pln": ["(: cnet_isa_6fe96820aa (IsA stage_fright fear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stage left is a kind of left", "pln": ["(: cnet_isa_003f80da70 (IsA stage_left left) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stage manager is a kind of supervisor", "pln": ["(: cnet_isa_27fd0f7c4f (IsA stage_manager supervisor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stage name is a kind of pseudonym", "pln": ["(: cnet_isa_861215b792 (IsA stage_name pseudonym) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stage right is a kind of right", "pln": ["(: cnet_isa_cd6fa98c92 (IsA stage_right right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stage set is a kind of representation", "pln": ["(: cnet_isa_3f66e8b025 (IsA stage_set representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stage whisper is a kind of whisper", "pln": ["(: cnet_isa_5cfd55de93 (IsA stage_whisper whisper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stagecoach is a kind of coach", "pln": ["(: cnet_isa_c4d34451cb (IsA stagecoach coach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stagecraft is a kind of craft", "pln": ["(: cnet_isa_82fac251ba (IsA stagecraft craft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stagehand is a kind of employee", "pln": ["(: cnet_isa_d7b2901924 (IsA stagehand employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stagflation is a kind of inflation", "pln": ["(: cnet_isa_b09dc92d68 (IsA stagflation inflation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staggerbush is a kind of shrub", "pln": ["(: cnet_isa_a651a40eea (IsA staggerbush shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staggered board of director is a kind of directorate", "pln": ["(: cnet_isa_97cd78c340 (IsA staggered_board_of_director directorate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staggerer is a kind of pedestrian", "pln": ["(: cnet_isa_8e7f9d0577 (IsA staggerer pedestrian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stagger is a kind of animal disease", "pln": ["(: cnet_isa_547cf7fa87 (IsA stagger animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "staghorn coral is a kind of stony coral", "pln": ["(: cnet_isa_d04563ab56 (IsA staghorn_coral stony_coral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staghorn fern is a kind of fern", "pln": ["(: cnet_isa_64957a67f9 (IsA staghorn_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staghorn sumac is a kind of sumac", "pln": ["(: cnet_isa_5d0aeb5ad5 (IsA staghorn_sumac sumac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staghound is a kind of hound", "pln": ["(: cnet_isa_de20951120 (IsA staghound hound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staginess is a kind of artificiality", "pln": ["(: cnet_isa_d0fcea091c (IsA staginess artificiality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staging is a kind of discard", "pln": ["(: cnet_isa_0ab82df5df (IsA staging discard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staging is a kind of travel", "pln": ["(: cnet_isa_5629413dff (IsA staging travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staging area is a kind of area", "pln": ["(: cnet_isa_7f1c56a687 (IsA staging_area area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stagnation is a kind of inaction", "pln": ["(: cnet_isa_4ca074cef5 (IsA stagnation inaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stain is a kind of appearance", "pln": ["(: cnet_isa_f2be125e4e (IsA stain appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stain is a kind of coloring material", "pln": ["(: cnet_isa_4bb89f8648 (IsA stain coloring_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stainability is a kind of tendency", "pln": ["(: cnet_isa_2861c73f87 (IsA stainability tendency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stained glass is a kind of glass", "pln": ["(: cnet_isa_fca2fab607 (IsA stained_glass glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stained glass window is a kind of window", "pln": ["(: cnet_isa_bdc22472b3 (IsA stained_glass_window window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stainer is a kind of worker", "pln": ["(: cnet_isa_9af781e11c (IsA stainer worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staining is a kind of soiling", "pln": ["(: cnet_isa_42ca84f68d (IsA staining soiling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staining is a kind of dyeing", "pln": ["(: cnet_isa_a117f11d9c (IsA staining dyeing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stainless steel is a kind of alloy steel", "pln": ["(: cnet_isa_d101f64662 (IsA stainless_steel alloy_steel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stair carpet is a kind of rug", "pln": ["(: cnet_isa_dc136beab4 (IsA stair_carpet rug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stair rod is a kind of rod", "pln": ["(: cnet_isa_32844e4bce (IsA stair_rod rod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stairhead is a kind of platform", "pln": ["(: cnet_isa_3c5dd42c7f (IsA stairhead platform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stair is a kind of stairway", "pln": ["(: cnet_isa_ae9204195f (IsA stair stairway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stairway is a kind of way", "pln": ["(: cnet_isa_7e65dbd5d3 (IsA stairway way) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stairwell is a kind of well", "pln": ["(: cnet_isa_16da107644 (IsA stairwell well) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stake is a kind of instrument of execution", "pln": ["(: cnet_isa_700c9697b1 (IsA stake instrument_of_execution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stake is a kind of post", "pln": ["(: cnet_isa_e8da5f390d (IsA stake post) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stake is a kind of gamble", "pln": ["(: cnet_isa_c5c7895be0 (IsA stake gamble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stake race is a kind of horse race", "pln": ["(: cnet_isa_7ea628b50b (IsA stake_race horse_race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stakeholder is a kind of neutral", "pln": ["(: cnet_isa_1b9102bacf (IsA stakeholder neutral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stakeout is a kind of surveillance", "pln": ["(: cnet_isa_b013b44acc (IsA stakeout surveillance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stalactite is a kind of cylinder", "pln": ["(: cnet_isa_fb61c22ae3 (IsA stalactite cylinder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stalagmite is a kind of cylinder", "pln": ["(: cnet_isa_01c4335404 (IsA stalagmite cylinder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stalemate is a kind of draw", "pln": ["(: cnet_isa_458155ff07 (IsA stalemate draw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staleness is a kind of oldness", "pln": ["(: cnet_isa_247ba3b2b9 (IsA staleness oldness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stalinist is a kind of follower", "pln": ["(: cnet_isa_f3e359f77f (IsA stalinist follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stalinization is a kind of social process", "pln": ["(: cnet_isa_48c51e8225 (IsA stalinization social_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stalk is a kind of gait", "pln": ["(: cnet_isa_0986851aa3 (IsA stalk gait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stalk is a kind of hunt", "pln": ["(: cnet_isa_d3824f2f2e (IsA stalk hunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stalk is a kind of pursuit", "pln": ["(: cnet_isa_ec110f8455 (IsA stalk pursuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stalk is a kind of plant organ", "pln": ["(: cnet_isa_0d129f61bb (IsA stalk plant_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stalked puffball is a kind of fungus", "pln": ["(: cnet_isa_c9634a9b39 (IsA stalked_puffball fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stalked puffball is a kind of podaxaceae", "pln": ["(: cnet_isa_e8e90b4504 (IsA stalked_puffball podaxaceae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stalker is a kind of hunter", "pln": ["(: cnet_isa_ca38d0a3f0 (IsA stalker hunter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stalker is a kind of pedestrian", "pln": ["(: cnet_isa_a0e0774d35 (IsA stalker pedestrian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stalking horse is a kind of horse", "pln": ["(: cnet_isa_6860022cec (IsA stalking_horse horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stalking horse is a kind of screen", "pln": ["(: cnet_isa_c1c0b8fc77 (IsA stalking_horse screen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stalking horse is a kind of campaigner", "pln": ["(: cnet_isa_61d94e187c (IsA stalking_horse campaigner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stall is a kind of obstruction", "pln": ["(: cnet_isa_cc78983269 (IsA stall obstruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stall is a kind of booth", "pln": ["(: cnet_isa_07af1ff7a6 (IsA stall booth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stall is a kind of compartment", "pln": ["(: cnet_isa_c1b0c6f529 (IsA stall compartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stall is a kind of seating", "pln": ["(: cnet_isa_4eadfc9a12 (IsA stall seating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stall is a kind of malfunction", "pln": ["(: cnet_isa_09f86e4e52 (IsA stall malfunction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stall bar is a kind of gymnastic apparatus", "pln": ["(: cnet_isa_49f99aef5c (IsA stall_bar gymnastic_apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stallion is a kind of male horse", "pln": ["(: cnet_isa_6289b763c7 (IsA stallion male_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stall is a kind of in bathroom", "pln": ["(: cnet_isa_f3f7487820 (IsA stall in_bathroom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stall is a kind of farm building", "pln": ["(: cnet_isa_430fe4dc46 (IsA stall farm_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stamen is a kind of reproductive structure", "pln": ["(: cnet_isa_925641fa91 (IsA stamen reproductive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stamina is a kind of endurance", "pln": ["(: cnet_isa_ed6561438f (IsA stamina endurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stammel is a kind of fabric", "pln": ["(: cnet_isa_95949463b8 (IsA stammel fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stammer is a kind of speech disorder", "pln": ["(: cnet_isa_3d25b4a66e (IsA stammer speech_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stammerer is a kind of speaker", "pln": ["(: cnet_isa_de8f7ed496 (IsA stammerer speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stamp is a kind of die", "pln": ["(: cnet_isa_9d66af8280 (IsA stamp die) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stamp is a kind of machine", "pln": ["(: cnet_isa_9bf6982e1a (IsA stamp machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stamp is a kind of symbol", "pln": ["(: cnet_isa_0e228382c5 (IsA stamp symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stamp is a kind of class", "pln": ["(: cnet_isa_b43e776071 (IsA stamp class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stamp act is a kind of legislative act", "pln": ["(: cnet_isa_4c3dfed6a8 (IsA stamp_act legislative_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stamp album is a kind of album", "pln": ["(: cnet_isa_a65124a814 (IsA stamp_album album) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stamp collection is a kind of collection", "pln": ["(: cnet_isa_7a2a4e69cc (IsA stamp_collection collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stamp dealer is a kind of trader", "pln": ["(: cnet_isa_9820bafb66 (IsA stamp_dealer trader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stamp mill is a kind of factory", "pln": ["(: cnet_isa_5e350859fa (IsA stamp_mill factory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stamp tax is a kind of tax", "pln": ["(: cnet_isa_c08f392ffb (IsA stamp_tax tax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stampede is a kind of group action", "pln": ["(: cnet_isa_1d46830c54 (IsA stampede group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stampede is a kind of change of location", "pln": ["(: cnet_isa_afdc0b6f7a (IsA stampede change_of_location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stamper is a kind of pedestrian", "pln": ["(: cnet_isa_34f332718d (IsA stamper pedestrian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stamper is a kind of workman", "pln": ["(: cnet_isa_27803aa418 (IsA stamper workman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stamping machine is a kind of power tool", "pln": ["(: cnet_isa_21e6b74810 (IsA stamping_machine power_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stance is a kind of position", "pln": ["(: cnet_isa_2e65cbf18f (IsA stance position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stanchion is a kind of post", "pln": ["(: cnet_isa_8bb1d0662a (IsA stanchion post) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stand is a kind of defense", "pln": ["(: cnet_isa_4fdcd254a5 (IsA stand defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stand is a kind of stop", "pln": ["(: cnet_isa_4150fee2ad (IsA stand stop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stand is a kind of table", "pln": ["(: cnet_isa_291de3fae5 (IsA stand table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stand is a kind of tiered seat", "pln": ["(: cnet_isa_8e4089eca6 (IsA stand tiered_seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stand is a kind of vegetation", "pln": ["(: cnet_isa_0eceea9e5e (IsA stand vegetation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stand is a kind of position", "pln": ["(: cnet_isa_4c9ad02b98 (IsA stand position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stand in is a kind of peer", "pln": ["(: cnet_isa_de1741684b (IsA stand_in peer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stand oil is a kind of oil", "pln": ["(: cnet_isa_c1afc643c3 (IsA stand_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standard is a kind of flag", "pln": ["(: cnet_isa_e0909c495d (IsA standard flag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standard is a kind of post", "pln": ["(: cnet_isa_9c5bd9e89f (IsA standard post) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standard is a kind of system of measurement", "pln": ["(: cnet_isa_4aeef98ef2 (IsA standard system_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standard is a kind of value", "pln": ["(: cnet_isa_9934103209 (IsA standard value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standard is a kind of volume unit", "pln": ["(: cnet_isa_e1ad4114ef (IsA standard volume_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standard atmosphere is a kind of pressure unit", "pln": ["(: cnet_isa_cbe337722f (IsA standard_atmosphere pressure_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "standard bearer is a kind of politician", "pln": ["(: cnet_isa_e676adddb9 (IsA standard_bearer politician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standard cell is a kind of voltaic cell", "pln": ["(: cnet_isa_e1f4111566 (IsA standard_cell voltaic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standard deviation is a kind of variance", "pln": ["(: cnet_isa_7a9d98544d (IsA standard_deviation variance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standard gauge is a kind of gauge", "pln": ["(: cnet_isa_53d5374419 (IsA standard_gauge gauge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standard gauge is a kind of railroad track", "pln": ["(: cnet_isa_63eb0a6c3b (IsA standard_gauge railroad_track) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standard generalized markup language is a kind of markup language", "pln": ["(: cnet_isa_0e0275f80d (IsA standard_generalized_markup_language markup_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standard of living is a kind of degree", "pln": ["(: cnet_isa_12669a56a3 (IsA standard_of_living degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standard poodle is a kind of poodle", "pln": ["(: cnet_isa_719f7b8b03 (IsA standard_poodle poodle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standard schnauzer is a kind of schnauzer", "pln": ["(: cnet_isa_b5bb6effae (IsA standard_schnauzer schnauzer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standard temperature is a kind of degree centigrade", "pln": ["(: cnet_isa_70085a6026 (IsA standard_temperature degree_centigrade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "standard transmission is a kind of transmission", "pln": ["(: cnet_isa_ba496d822d (IsA standard_transmission transmission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standardization is a kind of social control", "pln": ["(: cnet_isa_03a926c18a (IsA standardization social_control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standardization is a kind of condition", "pln": ["(: cnet_isa_7c8c25d7c3 (IsA standardization condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standardizer is a kind of changer", "pln": ["(: cnet_isa_2e253639e7 (IsA standardizer changer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standby is a kind of thing", "pln": ["(: cnet_isa_70d86dfd8c (IsA standby thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standdown is a kind of stop", "pln": ["(: cnet_isa_5cd0d8abac (IsA standdown stop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standdown is a kind of abeyance", "pln": ["(: cnet_isa_00a28d56bf (IsA standdown abeyance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standee is a kind of cutout", "pln": ["(: cnet_isa_1c57f2a169 (IsA standee cutout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standee is a kind of stander", "pln": ["(: cnet_isa_0138b29a45 (IsA standee stander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stander is a kind of organism", "pln": ["(: cnet_isa_c3d4aea64d (IsA stander organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standing is a kind of motion", "pln": ["(: cnet_isa_1052583e8f (IsA standing motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standing is a kind of list", "pln": ["(: cnet_isa_8e9972aab4 (IsA standing list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standing is a kind of status", "pln": ["(: cnet_isa_a7ed9c8ee1 (IsA standing status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standing army is a kind of army", "pln": ["(: cnet_isa_033a71b753 (IsA standing_army army) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standing committee is a kind of committee", "pln": ["(: cnet_isa_686c01efc5 (IsA standing_committee committee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standing operating procedure is a kind of operating procedure", "pln": ["(: cnet_isa_a585531414 (IsA standing_operating_procedure operating_procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standing order is a kind of order", "pln": ["(: cnet_isa_5d3a744a43 (IsA standing_order order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standing press is a kind of press", "pln": ["(: cnet_isa_291d028a12 (IsA standing_press press) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "standing room is a kind of room", "pln": ["(: cnet_isa_1c31cd66a6 (IsA standing_room room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "standing wave is a kind of wave", "pln": ["(: cnet_isa_53461b15a8 (IsA standing_wave wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "standpipe is a kind of pipe", "pln": ["(: cnet_isa_df89dcd81a (IsA standpipe pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stanford is a kind of university", "pln": ["(: cnet_isa_048528db0f (IsA stanford university) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stanford binet test is a kind of intelligence test", "pln": ["(: cnet_isa_4aee10a730 (IsA stanford_binet_test intelligence_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stanhope is a kind of carriage", "pln": ["(: cnet_isa_e8dfbd23ca (IsA stanhope carriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stanhopea is a kind of orchid", "pln": ["(: cnet_isa_16ab465b15 (IsA stanhopea orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stanleya is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_f6e7109122 (IsA stanleya dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stannic chloride is a kind of chloride", "pln": ["(: cnet_isa_5105a451d5 (IsA stannic_chloride chloride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stannite is a kind of mineral", "pln": ["(: cnet_isa_250245e653 (IsA stannite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stannous fluoride is a kind of fluoride", "pln": ["(: cnet_isa_acca70d313 (IsA stannous_fluoride fluoride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stanza is a kind of text", "pln": ["(: cnet_isa_39e9ed55cf (IsA stanza text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stapedectomy is a kind of ablation", "pln": ["(: cnet_isa_4bb717b979 (IsA stapedectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stapelia is a kind of herb", "pln": ["(: cnet_isa_1e836fd415 (IsA stapelia herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stapelia asteria is a kind of stapelia", "pln": ["(: cnet_isa_196b5bbbaf (IsA stapelia_asteria stapelia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stape is a kind of auditory ossicle", "pln": ["(: cnet_isa_c93b8984d4 (IsA stape auditory_ossicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staphylaceae is a kind of dicot family", "pln": ["(: cnet_isa_b8a1c8cbd7 (IsA staphylaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staphylea is a kind of dicot genus", "pln": ["(: cnet_isa_ad04e39f11 (IsA staphylea dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "staphylinidae is a kind of arthropod family", "pln": ["(: cnet_isa_0f763249a2 (IsA staphylinidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staphylococcal enterotoxin is a kind of enterotoxin", "pln": ["(: cnet_isa_1867cf5be9 (IsA staphylococcal_enterotoxin enterotoxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staphylococcal enterotoxin b is a kind of bioweapon", "pln": ["(: cnet_isa_294bcab3cb (IsA staphylococcal_enterotoxin_b bioweapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staphylococcal enterotoxin b is a kind of staphylococcal enterotoxin", "pln": ["(: cnet_isa_27632fa091 (IsA staphylococcal_enterotoxin_b staphylococcal_enterotoxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staphylococcal infection is a kind of infection", "pln": ["(: cnet_isa_a727a379c1 (IsA staphylococcal_infection infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staphylococcus is a kind of coccus", "pln": ["(: cnet_isa_c09f61bebf (IsA staphylococcus coccus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staple is a kind of example of paper fastener", "pln": ["(: cnet_isa_7e01ceb87e (IsA staple example_of_paper_fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staple is a kind of nail", "pln": ["(: cnet_isa_bc2775d907 (IsA staple nail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staple is a kind of paper fastener", "pln": ["(: cnet_isa_9b7ba7e4d5 (IsA staple paper_fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staple fiber is a kind of natural fiber", "pln": ["(: cnet_isa_dc570cdfb3 (IsA staple_fiber natural_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staple gun is a kind of machine", "pln": ["(: cnet_isa_f269efcb75 (IsA staple_gun machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stapler is a kind of device", "pln": ["(: cnet_isa_72fced4449 (IsA stapler device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stapler is a kind of everyday item", "pln": ["(: cnet_isa_3b83d87e62 (IsA stapler everyday_item) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stapler is a kind of office supply", "pln": ["(: cnet_isa_447b1227b3 (IsA stapler office_supply) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stapler is a kind of machine", "pln": ["(: cnet_isa_a30d15741d (IsA stapler machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "star is a kind of burning ball of gas", "pln": ["(: cnet_isa_c3b4f55557 (IsA star burning_ball_of_gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "star is a kind of celestial body", "pln": ["(: cnet_isa_29905d4279 (IsA star celestial_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "star is a kind of shape", "pln": ["(: cnet_isa_2fafdc272f (IsA star shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "star is a kind of sun", "pln": ["(: cnet_isa_4d359dea58 (IsA star sun) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "star is a kind of actor", "pln": ["(: cnet_isa_467b38a318 (IsA star actor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "star is a kind of plane figure", "pln": ["(: cnet_isa_3f2a84d681 (IsA star plane_figure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "star anise is a kind of anise tree", "pln": ["(: cnet_isa_2285d9d0bc (IsA star_anise anise_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "star apple is a kind of fruit tree", "pln": ["(: cnet_isa_0a4a4eea5b (IsA star_apple fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "star begonia is a kind of begonia", "pln": ["(: cnet_isa_ff8b41f5bc (IsA star_begonia begonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "star chamber is a kind of court", "pln": ["(: cnet_isa_9cd96de3a1 (IsA star_chamber court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "star chart is a kind of chart", "pln": ["(: cnet_isa_52a9a7086f (IsA star_chart chart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "star drill is a kind of bore bit", "pln": ["(: cnet_isa_9cfc73cb16 (IsA star_drill bore_bit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "star duckweed is a kind of duckweed", "pln": ["(: cnet_isa_18a09a07ca (IsA star_duckweed duckweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "star grass is a kind of cormous plant", "pln": ["(: cnet_isa_ab01102a1b (IsA star_grass cormous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "star jasmine is a kind of vine", "pln": ["(: cnet_isa_96d7df40e8 (IsA star_jasmine vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "star magnolia is a kind of magnolia", "pln": ["(: cnet_isa_91b5eb0bf7 (IsA star_magnolia magnolia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "star of bethlehem is a kind of bulbous plant", "pln": ["(: cnet_isa_76bd8d91f8 (IsA star_of_bethlehem bulbous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "star of david is a kind of emblem", "pln": ["(: cnet_isa_bcef3a1163 (IsA star_of_david emblem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "star of david is a kind of hexagram", "pln": ["(: cnet_isa_94e91e6953 (IsA star_of_david hexagram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "star sapphire is a kind of sapphire", "pln": ["(: cnet_isa_54d2993de8 (IsA star_sapphire sapphire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "star saxifrage is a kind of saxifrage", "pln": ["(: cnet_isa_fed998eee9 (IsA star_saxifrage saxifrage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "star shell is a kind of flare", "pln": ["(: cnet_isa_31bbbea07e (IsA star_shell flare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "star thistle is a kind of centaury", "pln": ["(: cnet_isa_1cc9b4d814 (IsA star_thistle centaury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "star topology is a kind of topology", "pln": ["(: cnet_isa_7f4d7c7719 (IsA star_topology topology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "star trek is a kind of great show", "pln": ["(: cnet_isa_fcb5bafc1c (IsA star_trek great_show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "star trek is a kind of pretend story", "pln": ["(: cnet_isa_106f356a88 (IsA star_trek pretend_story) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "star trek is a kind of show broadcast from earth", "pln": ["(: cnet_isa_b9818a47ab (IsA star_trek show_broadcast_from_earth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "star trek is a kind of tv show", "pln": ["(: cnet_isa_016d9c8767 (IsA star_trek tv_show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "star tulip is a kind of mariposa", "pln": ["(: cnet_isa_991f85c06d (IsA star_tulip mariposa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "star war is a kind of popular movie in 1980", "pln": ["(: cnet_isa_e4fed05834 (IsA star_war popular_movie_in_1980) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "star war is a kind of science fiction movie", "pln": ["(: cnet_isa_d35c8cba97 (IsA star_war science_fiction_movie) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "starboard is a kind of side", "pln": ["(: cnet_isa_35c2a9303d (IsA starboard side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "starch is a kind of formulation", "pln": ["(: cnet_isa_b2a0b6fa23 (IsA starch formulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "starch is a kind of polysaccharide", "pln": ["(: cnet_isa_2e9d01651b (IsA starch polysaccharide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "starche is a kind of foodstuff", "pln": ["(: cnet_isa_e978f41046 (IsA starche foodstuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stardom is a kind of high status", "pln": ["(: cnet_isa_e852d69f9b (IsA stardom high_status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stardust is a kind of romanticism", "pln": ["(: cnet_isa_e1e17f0d28 (IsA stardust romanticism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "starets is a kind of adviser", "pln": ["(: cnet_isa_e01d389e03 (IsA starets adviser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "stars is a kind of far away", "pln": ["(: cnet_isa_3d1d5b42f4 (IsA stars far_away) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stare is a kind of look", "pln": ["(: cnet_isa_8670a5cebb (IsA stare look) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "starer is a kind of spectator", "pln": ["(: cnet_isa_8e2a440751 (IsA starer spectator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staret is a kind of adviser", "pln": ["(: cnet_isa_066ce290cf (IsA staret adviser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "starfish is a kind of echinoderm", "pln": ["(: cnet_isa_b5dc416fd4 (IsA starfish echinoderm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "starflower is a kind of star of bethlehem", "pln": ["(: cnet_isa_6058ef8d1c (IsA starflower star_of_bethlehem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stargazer is a kind of percoid fish", "pln": ["(: cnet_isa_fb58eb09f2 (IsA stargazer percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stargazing is a kind of observation", "pln": ["(: cnet_isa_b16a31f7fb (IsA stargazing observation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "starkness is a kind of limit", "pln": ["(: cnet_isa_7f6eafe704 (IsA starkness limit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "starlet is a kind of star", "pln": ["(: cnet_isa_5ad6e37a36 (IsA starlet star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "starlet is a kind of actress", "pln": ["(: cnet_isa_aa0793a03f (IsA starlet actress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "starlight is a kind of light", "pln": ["(: cnet_isa_3fc68bf38e (IsA starlight light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "starling is a kind of bird", "pln": ["(: cnet_isa_8b0f1acae3 (IsA starling bird) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "starling is a kind of oscine", "pln": ["(: cnet_isa_50520297a8 (IsA starling oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "starnose mole is a kind of mole", "pln": ["(: cnet_isa_69e2779f04 (IsA starnose_mole mole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "star is a kind of far away", "pln": ["(: cnet_isa_b174f842e3 (IsA star far_away) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "star and bar is a kind of flag", "pln": ["(: cnet_isa_5f1153fdee (IsA star_and_bar flag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "starship is a kind of spacecraft", "pln": ["(: cnet_isa_2d4cc35079 (IsA starship spacecraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "start is a kind of turn", "pln": ["(: cnet_isa_9fa1b21069 (IsA start turn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "start is a kind of advantage", "pln": ["(: cnet_isa_f3be85ab90 (IsA start advantage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "start is a kind of beginning", "pln": ["(: cnet_isa_c4330958d3 (IsA start beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "start is a kind of line", "pln": ["(: cnet_isa_7463eea4e4 (IsA start line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "starter is a kind of culture", "pln": ["(: cnet_isa_40b7cb1a22 (IsA starter culture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "starter is a kind of electric motor", "pln": ["(: cnet_isa_6a4f688a0c (IsA starter electric_motor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "starter is a kind of contestant", "pln": ["(: cnet_isa_b092f5f33f (IsA starter contestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "starter is a kind of official", "pln": ["(: cnet_isa_a76df5ac87 (IsA starter official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "starting block is a kind of block", "pln": ["(: cnet_isa_b69fecaf6d (IsA starting_block block) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "starting buffer is a kind of buffer solution", "pln": ["(: cnet_isa_13babfdf6b (IsA starting_buffer buffer_solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "starting gate is a kind of barrier", "pln": ["(: cnet_isa_bad95e4d4c (IsA starting_gate barrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "starting pitcher is a kind of pitcher", "pln": ["(: cnet_isa_9cc337a29d (IsA starting_pitcher pitcher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "starting pitcher is a kind of starter", "pln": ["(: cnet_isa_fcc6b70c4d (IsA starting_pitcher starter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "starting post is a kind of post", "pln": ["(: cnet_isa_a72206c122 (IsA starting_post post) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "starting signal is a kind of signal", "pln": ["(: cnet_isa_68c57e8312 (IsA starting_signal signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "startle is a kind of reflex", "pln": ["(: cnet_isa_2cb6f325a1 (IsA startle reflex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "startle reflex is a kind of startle", "pln": ["(: cnet_isa_3ed18b3b79 (IsA startle_reflex startle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "startle response is a kind of startle", "pln": ["(: cnet_isa_c5211f7a35 (IsA startle_response startle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "startup is a kind of beginning", "pln": ["(: cnet_isa_7a9b6d0b99 (IsA startup beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "starvation is a kind of privation", "pln": ["(: cnet_isa_5bc8f0b852 (IsA starvation privation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "starvation is a kind of hunger", "pln": ["(: cnet_isa_1120209cbb (IsA starvation hunger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "starvation acidosis is a kind of acidosis", "pln": ["(: cnet_isa_f1e8646e51 (IsA starvation_acidosis acidosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "starved aster is a kind of aster", "pln": ["(: cnet_isa_ce5df04d0e (IsA starved_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "starveling is a kind of pauper", "pln": ["(: cnet_isa_b293ccc0f1 (IsA starveling pauper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stash house is a kind of house", "pln": ["(: cnet_isa_dc4ff76044 (IsA stash_house house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stasis is a kind of inaction", "pln": ["(: cnet_isa_50c8c43bb6 (IsA stasis inaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stasis is a kind of pathology", "pln": ["(: cnet_isa_b026c22552 (IsA stasis pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stassano furnace is a kind of electric furnace", "pln": ["(: cnet_isa_3100fe9cbd (IsA stassano_furnace electric_furnace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "state s attorney is a kind of prosecutor", "pln": ["(: cnet_isa_dce5e373a5 (IsA state_s_attorney prosecutor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "state s evidence is a kind of evidence", "pln": ["(: cnet_isa_321ab13bd0 (IsA state_s_evidence evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "state is a kind of attribute", "pln": ["(: cnet_isa_e5f61882a5 (IsA state attribute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "state is a kind of government", "pln": ["(: cnet_isa_6f83259044 (IsA state government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "state is a kind of political unit", "pln": ["(: cnet_isa_813cff0661 (IsA state political_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "state is a kind of administrative district", "pln": ["(: cnet_isa_a9261c37fa (IsA state administrative_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "state is a kind of emotional state", "pln": ["(: cnet_isa_4a40cbef4f (IsA state emotional_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "state bank is a kind of depository financial institution", "pln": ["(: cnet_isa_0873c7f937 (IsA state_bank depository_financial_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "state capital is a kind of capital", "pln": ["(: cnet_isa_a404bc6a28 (IsA state_capital capital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "state capital is a kind of city", "pln": ["(: cnet_isa_6ed6cfae5f (IsA state_capital city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "state capitalism is a kind of economy", "pln": ["(: cnet_isa_745333554a (IsA state_capitalism economy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "state department is a kind of government department", "pln": ["(: cnet_isa_55795a1aed (IsA state_department government_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "state government is a kind of government", "pln": ["(: cnet_isa_8ff543229f (IsA state_government government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "state line is a kind of boundary line", "pln": ["(: cnet_isa_fe808f5e3b (IsA state_line boundary_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "state of art is a kind of degree", "pln": ["(: cnet_isa_8f8f218714 (IsA state_of_art degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "state of maryland is a kind of in united state", "pln": ["(: cnet_isa_704308e6e5 (IsA state_of_maryland in_united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "state of matter is a kind of chemical phenomenon", "pln": ["(: cnet_isa_45974244c9 (IsA state_of_matter chemical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "state of mind is a kind of psychological state", "pln": ["(: cnet_isa_54c80debe6 (IsA state_of_mind psychological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "state of mind is a kind of temporary state", "pln": ["(: cnet_isa_e48003159e (IsA state_of_mind temporary_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "state park is a kind of park", "pln": ["(: cnet_isa_a043af6b14 (IsA state_park park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "state prison is a kind of prison", "pln": ["(: cnet_isa_9c70d64043 (IsA state_prison prison) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "state senator is a kind of senator", "pln": ["(: cnet_isa_f41fb5c865 (IsA state_senator senator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "state socialism is a kind of economy", "pln": ["(: cnet_isa_8134868d96 (IsA state_socialism economy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "state sponsered is a kind of agent non geographical", "pln": ["(: cnet_isa_d49b87036c (IsA state_sponsered agent_non_geographical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "state sponsered is a kind of organization", "pln": ["(: cnet_isa_740552987b (IsA state_sponsered organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "state sponsored terrorism is a kind of terrorism", "pln": ["(: cnet_isa_ced177f971 (IsA state_sponsored_terrorism terrorism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "state tax lien is a kind of tax lien", "pln": ["(: cnet_isa_ca2c624e90 (IsA state_tax_lien tax_lien) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "state treasurer is a kind of treasurer", "pln": ["(: cnet_isa_af4c6a3657 (IsA state_treasurer treasurer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "state trooper is a kind of policemen", "pln": ["(: cnet_isa_ede34d2b9a (IsA state_trooper policemen) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "statehouse is a kind of government building", "pln": ["(: cnet_isa_82de7ba168 (IsA statehouse government_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stateliness is a kind of formality", "pln": ["(: cnet_isa_cef3d9a714 (IsA stateliness formality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "states general is a kind of assembly", "pln": ["(: cnet_isa_a187f155db (IsA states_general assembly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stateliness is a kind of impressiveness", "pln": ["(: cnet_isa_3bfd3f5563 (IsA stateliness impressiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stately home is a kind of mansion", "pln": ["(: cnet_isa_1d9a5cb656 (IsA stately_home mansion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "statement is a kind of commercial document", "pln": ["(: cnet_isa_fd065b85c5 (IsA statement commercial_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "statement is a kind of message", "pln": ["(: cnet_isa_752b4e0c48 (IsA statement message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "statement is a kind of theme", "pln": ["(: cnet_isa_cac6a95e7d (IsA statement theme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stater is a kind of resident", "pln": ["(: cnet_isa_cbde997c61 (IsA stater resident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stater is a kind of coin", "pln": ["(: cnet_isa_2f5744f962 (IsA stater coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stateroom is a kind of cabin", "pln": ["(: cnet_isa_e864b0e3ec (IsA stateroom cabin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "state general is a kind of assembly", "pln": ["(: cnet_isa_b65579b49b (IsA state_general assembly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "state right is a kind of right", "pln": ["(: cnet_isa_3453712337 (IsA state_right right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "state right is a kind of doctrine", "pln": ["(: cnet_isa_437225545c (IsA state_right doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "state right democratic party is a kind of party", "pln": ["(: cnet_isa_53bdac69f4 (IsA state_right_democratic_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "statesman is a kind of politician", "pln": ["(: cnet_isa_d4ba52a4fd (IsA statesman politician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "statesmanship is a kind of wisdom", "pln": ["(: cnet_isa_b24e8b25f9 (IsA statesmanship wisdom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stateswoman is a kind of statesman", "pln": ["(: cnet_isa_1ba61e30e2 (IsA stateswoman statesman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "static is a kind of criticism", "pln": ["(: cnet_isa_ce41adcce5 (IsA static criticism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "static is a kind of noise", "pln": ["(: cnet_isa_db837229a3 (IsA static noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "static electricity is a kind of electricity", "pln": ["(: cnet_isa_13ca5450b5 (IsA static_electricity electricity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "statics is a kind of mechanics", "pln": ["(: cnet_isa_5c24c73e87 (IsA statics mechanics) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "static line is a kind of cord", "pln": ["(: cnet_isa_4ae192eb07 (IsA static_line cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "static tube is a kind of measuring instrument", "pln": ["(: cnet_isa_93d68b8398 (IsA static_tube measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "static is a kind of mechanic", "pln": ["(: cnet_isa_c411a7514d (IsA static mechanic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "station is a kind of facility", "pln": ["(: cnet_isa_117177a5be (IsA station facility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "station is a kind of radio frequency", "pln": ["(: cnet_isa_1796c1969b (IsA station radio_frequency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "station is a kind of position", "pln": ["(: cnet_isa_7a87582d58 (IsA station position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "station of cross is a kind of representation", "pln": ["(: cnet_isa_bb36e01f16 (IsA station_of_cross representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stationariness is a kind of motionlessness", "pln": ["(: cnet_isa_c65cc8565e (IsA stationariness motionlessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stationary stochastic process is a kind of stochastic process", "pln": ["(: cnet_isa_32896eb5ff (IsA stationary_stochastic_process stochastic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stationer is a kind of merchant", "pln": ["(: cnet_isa_18aff26463 (IsA stationer merchant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stationery is a kind of writing paper", "pln": ["(: cnet_isa_3ff9fca588 (IsA stationery writing_paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stationmaster is a kind of master", "pln": ["(: cnet_isa_11545e70d1 (IsA stationmaster master) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "station of cross is a kind of devotion", "pln": ["(: cnet_isa_b1f2c67897 (IsA station_of_cross devotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "station of cross is a kind of sery", "pln": ["(: cnet_isa_1b2997c407 (IsA station_of_cross sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "statistic is a kind of number", "pln": ["(: cnet_isa_8e6ec1c67b (IsA statistic number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "statistic is a kind of datum", "pln": ["(: cnet_isa_7b8d9b896c (IsA statistic datum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "statistical commission is a kind of economic and social council commission", "pln": ["(: cnet_isa_6714e3eba8 (IsA statistical_commission economic_and_social_council_commission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "statistical mechanic is a kind of physic", "pln": ["(: cnet_isa_549d8c3680 (IsA statistical_mechanic physic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "statistical method is a kind of method", "pln": ["(: cnet_isa_8a3f111de3 (IsA statistical_method method) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "statistician is a kind of mathematician", "pln": ["(: cnet_isa_fa28a1da09 (IsA statistician mathematician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "statistician is a kind of calculator", "pln": ["(: cnet_isa_77dbeccfbe (IsA statistician calculator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "statistic is a kind of branch of mathematic", "pln": ["(: cnet_isa_0f92ed13ec (IsA statistic branch_of_mathematic) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "statistic is a kind of applied mathematic", "pln": ["(: cnet_isa_5fd5f6b8c5 (IsA statistic applied_mathematic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stator is a kind of mechanical device", "pln": ["(: cnet_isa_966aa9c830 (IsA stator mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "statuary is a kind of collection", "pln": ["(: cnet_isa_c18f146bf8 (IsA statuary collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "statue is a kind of example of art", "pln": ["(: cnet_isa_78cd87fcb9 (IsA statue example_of_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "statue is a kind of three dimensional sculpture", "pln": ["(: cnet_isa_a35f1d3f04 (IsA statue three_dimensional_sculpture) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "statue is a kind of sculpture", "pln": ["(: cnet_isa_b576272333 (IsA statue sculpture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "statue of liberty is a kind of gift from france", "pln": ["(: cnet_isa_ad444aecf0 (IsA statue_of_liberty gift_from_france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "statue of liberty is a kind of gift from french", "pln": ["(: cnet_isa_ae84b902cf (IsA statue_of_liberty gift_from_french) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "statue is a kind of art", "pln": ["(: cnet_isa_fb44a22376 (IsA statue art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stature is a kind of bodily property", "pln": ["(: cnet_isa_7d6d3ba988 (IsA stature bodily_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stature is a kind of esteem", "pln": ["(: cnet_isa_5cfd6ee476 (IsA stature esteem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "status is a kind of state", "pln": ["(: cnet_isa_3ba5fd2725 (IsA status state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "statute of limitations is a kind of law", "pln": ["(: cnet_isa_1922037ffc (IsA statute_of_limitations law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "status asthmaticus is a kind of asthma", "pln": ["(: cnet_isa_7e64ccdc15 (IsA status_asthmaticus asthma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "status epilepticus is a kind of epilepsy", "pln": ["(: cnet_isa_a611bcf697 (IsA status_epilepticus epilepsy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "status quo is a kind of situation", "pln": ["(: cnet_isa_d7dc7c49b5 (IsA status_quo situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "statute book is a kind of written record", "pln": ["(: cnet_isa_8a74c4051d (IsA statute_book written_record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "statute of limitation is a kind of law", "pln": ["(: cnet_isa_f4846f8326 (IsA statute_of_limitation law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "statutory law is a kind of law", "pln": ["(: cnet_isa_472b22ad76 (IsA statutory_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "statutory offense is a kind of crime", "pln": ["(: cnet_isa_b9d58ed11d (IsA statutory_offense crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "statutory rape is a kind of rape", "pln": ["(: cnet_isa_dc818bd3ab (IsA statutory_rape rape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staurikosaur is a kind of ornithischian", "pln": ["(: cnet_isa_2372205ced (IsA staurikosaur ornithischian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stave is a kind of slat", "pln": ["(: cnet_isa_c138fce6fd (IsA stave slat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stay is a kind of act", "pln": ["(: cnet_isa_37c06d3795 (IsA stay act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stay is a kind of strip", "pln": ["(: cnet_isa_693a69dcc7 (IsA stay strip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stay is a kind of decree", "pln": ["(: cnet_isa_374a8ab668 (IsA stay decree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stay is a kind of brace", "pln": ["(: cnet_isa_87a5d804a8 (IsA stay brace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stay at home is a kind of adult", "pln": ["(: cnet_isa_4955f9948a (IsA stay_at_home adult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stay of execution is a kind of stay", "pln": ["(: cnet_isa_811915e48b (IsA stay_of_execution stay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stayer is a kind of animal", "pln": ["(: cnet_isa_236b68816f (IsA stayer animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stayman is a kind of eating apple", "pln": ["(: cnet_isa_c468cd166f (IsA stayman eating_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stayman winesap is a kind of eating apple", "pln": ["(: cnet_isa_c2bb23f1e1 (IsA stayman_winesap eating_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "staysail is a kind of fore and aft sail", "pln": ["(: cnet_isa_b952ff2e0c (IsA staysail fore_and_aft_sail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stead is a kind of function", "pln": ["(: cnet_isa_de661f2943 (IsA stead function) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "steadfastness is a kind of loyalty", "pln": ["(: cnet_isa_bb03630a5c (IsA steadfastness loyalty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steadfastness is a kind of resoluteness", "pln": ["(: cnet_isa_4e1aef49cf (IsA steadfastness resoluteness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "steadiness is a kind of immovability", "pln": ["(: cnet_isa_614266dd2c (IsA steadiness immovability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steadiness is a kind of regularity", "pln": ["(: cnet_isa_110e3c2ae3 (IsA steadiness regularity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steadiness is a kind of resoluteness", "pln": ["(: cnet_isa_50e2d039cc (IsA steadiness resoluteness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steak is a kind of food", "pln": ["(: cnet_isa_7e61110380 (IsA steak food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steak is a kind of meat", "pln": ["(: cnet_isa_5c4ad94177 (IsA steak meat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steak is a kind of cut", "pln": ["(: cnet_isa_9821d4853b (IsA steak cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steak and bread is a kind of both food", "pln": ["(: cnet_isa_f4bb0879f8 (IsA steak_and_bread both_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steak and kidney pie is a kind of meat pie", "pln": ["(: cnet_isa_1858dad1a6 (IsA steak_and_kidney_pie meat_pie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steak au poivre is a kind of dish", "pln": ["(: cnet_isa_79b0a2e7be (IsA steak_au_poivre dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steak knife is a kind of table knife", "pln": ["(: cnet_isa_043f381ee7 (IsA steak_knife table_knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steak sauce is a kind of condiment", "pln": ["(: cnet_isa_3fddfdd0d6 (IsA steak_sauce condiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steak tartare is a kind of dish", "pln": ["(: cnet_isa_230f70f95c (IsA steak_tartare dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steakhouse is a kind of restaurant", "pln": ["(: cnet_isa_4a0aeab565 (IsA steakhouse restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steal is a kind of baseball", "pln": ["(: cnet_isa_c72ea430bf (IsA steal baseball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stealing is a kind of crime", "pln": ["(: cnet_isa_9268012444 (IsA stealing crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stealth is a kind of concealment", "pln": ["(: cnet_isa_69623c38ac (IsA stealth concealment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stealth aircraft is a kind of aircraft", "pln": ["(: cnet_isa_84bc69dbe0 (IsA stealth_aircraft aircraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stealth bomber is a kind of bomber", "pln": ["(: cnet_isa_5d3ea8894f (IsA stealth_bomber bomber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stealth bomber is a kind of stealth aircraft", "pln": ["(: cnet_isa_7af83d9ac2 (IsA stealth_bomber stealth_aircraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stealth fighter is a kind of fighter", "pln": ["(: cnet_isa_bcbe5dd2ae (IsA stealth_fighter fighter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stealth fighter is a kind of stealth aircraft", "pln": ["(: cnet_isa_2b7ba473dd (IsA stealth_fighter stealth_aircraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steam is a kind of gas", "pln": ["(: cnet_isa_32d456d66e (IsA steam gas) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steam is a kind of vapor", "pln": ["(: cnet_isa_64252d355e (IsA steam vapor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steam bath is a kind of room", "pln": ["(: cnet_isa_2e3ffc64c4 (IsA steam_bath room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steam chest is a kind of chamber", "pln": ["(: cnet_isa_aa95f0c16a (IsA steam_chest chamber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steam coal is a kind of coal", "pln": ["(: cnet_isa_a65b4fe48d (IsA steam_coal coal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steam engine is a kind of external combustion engine", "pln": ["(: cnet_isa_33c46734eb (IsA steam_engine external_combustion_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steam fitting is a kind of care", "pln": ["(: cnet_isa_02fd033b5a (IsA steam_fitting care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steam heat is a kind of heating system", "pln": ["(: cnet_isa_f53750f78f (IsA steam_heat heating_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steam iron is a kind of iron", "pln": ["(: cnet_isa_937a120e6a (IsA steam_iron iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steam line is a kind of pipe", "pln": ["(: cnet_isa_b4ef2641a4 (IsA steam_line pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steam locomotive is a kind of locomotive", "pln": ["(: cnet_isa_b05de03d53 (IsA steam_locomotive locomotive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steam shovel is a kind of power shovel", "pln": ["(: cnet_isa_1147baa207 (IsA steam_shovel power_shovel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "steam turbine is a kind of turbine", "pln": ["(: cnet_isa_cac82ff33f (IsA steam_turbine turbine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steam whistle is a kind of whistle", "pln": ["(: cnet_isa_4349af0312 (IsA steam_whistle whistle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steamboat is a kind of boat", "pln": ["(: cnet_isa_21842911a0 (IsA steamboat boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "steamed pudding is a kind of pudding", "pln": ["(: cnet_isa_cc0bb7ec69 (IsA steamed_pudding pudding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steamer is a kind of cooking utensil", "pln": ["(: cnet_isa_b91147b198 (IsA steamer cooking_utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steamer is a kind of ship", "pln": ["(: cnet_isa_87dae53a43 (IsA steamer ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steamfitter is a kind of craftsman", "pln": ["(: cnet_isa_bf51043e03 (IsA steamfitter craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steaming is a kind of cooking", "pln": ["(: cnet_isa_1d741b483e (IsA steaming cooking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steamroller is a kind of vehicle", "pln": ["(: cnet_isa_6e083d8b2c (IsA steamroller vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steamship company is a kind of line", "pln": ["(: cnet_isa_b5b7245457 (IsA steamship_company line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stearic acid is a kind of saturated fatty acid", "pln": ["(: cnet_isa_fc93b29706 (IsA stearic_acid saturated_fatty_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stearin is a kind of glyceryl ester", "pln": ["(: cnet_isa_c12ca069d3 (IsA stearin glyceryl_ester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "steatopygia is a kind of fatness", "pln": ["(: cnet_isa_92495987ec (IsA steatopygia fatness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steatornis is a kind of bird genus", "pln": ["(: cnet_isa_a1a677ba88 (IsA steatornis bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steatornithidae is a kind of bird family", "pln": ["(: cnet_isa_88db95ee11 (IsA steatornithidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steatorrhea is a kind of symptom", "pln": ["(: cnet_isa_c77373fdf8 (IsA steatorrhea symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steed is a kind of warhorse", "pln": ["(: cnet_isa_1cae73e421 (IsA steed warhorse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steel is a kind of alloy", "pln": ["(: cnet_isa_fecf48f5be (IsA steel alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steel is a kind of metal", "pln": ["(: cnet_isa_baceb75ca0 (IsA steel metal) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steel is a kind of sharpener", "pln": ["(: cnet_isa_4d8b441f4e (IsA steel sharpener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steel arch bridge is a kind of bridge", "pln": ["(: cnet_isa_13cbd1b7b8 (IsA steel_arch_bridge bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steel band is a kind of dance band", "pln": ["(: cnet_isa_8daed1ec0b (IsA steel_band dance_band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steel blue is a kind of blue", "pln": ["(: cnet_isa_f6060d4d06 (IsA steel_blue blue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steel cable is a kind of cable", "pln": ["(: cnet_isa_489598f910 (IsA steel_cable cable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "steel company is a kind of company", "pln": ["(: cnet_isa_228d0b264e (IsA steel_company company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steel drum is a kind of percussion instrument", "pln": ["(: cnet_isa_b9206f7e60 (IsA steel_drum percussion_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steel engraving is a kind of engraving", "pln": ["(: cnet_isa_fb30a59ff5 (IsA steel_engraving engraving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steel industry is a kind of industry", "pln": ["(: cnet_isa_05aab35358 (IsA steel_industry industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "steel mill is a kind of factory", "pln": ["(: cnet_isa_1d710c2353 (IsA steel_mill factory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steel plate is a kind of plate", "pln": ["(: cnet_isa_3fa9cdf18a (IsA steel_plate plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steel production is a kind of production", "pln": ["(: cnet_isa_b5e1be6ca3 (IsA steel_production production) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steel trap is a kind of trap", "pln": ["(: cnet_isa_1463521ea3 (IsA steel_trap trap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steel trap is a kind of acuteness", "pln": ["(: cnet_isa_ba4bfbbd4a (IsA steel_trap acuteness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steel wool is a kind of abrasive", "pln": ["(: cnet_isa_978f6e1bdb (IsA steel_wool abrasive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "steel wool pad is a kind of abrader", "pln": ["(: cnet_isa_207de7b1e2 (IsA steel_wool_pad abrader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "steeplechase is a kind of sports", "pln": ["(: cnet_isa_a720d44cb2 (IsA steeplechase sports) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steelmaker is a kind of maker", "pln": ["(: cnet_isa_bfe2e71cb5 (IsA steelmaker maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steelyard is a kind of balance", "pln": ["(: cnet_isa_9dad0f5795 (IsA steelyard balance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steenbok is a kind of antelope", "pln": ["(: cnet_isa_e07b65e590 (IsA steenbok antelope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steep is a kind of descent", "pln": ["(: cnet_isa_a7893ecd42 (IsA steep descent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steeper is a kind of vessel", "pln": ["(: cnet_isa_90569718b8 (IsA steeper vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steeple is a kind of tower", "pln": ["(: cnet_isa_650edd5376 (IsA steeple tower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steeplechase is a kind of sport", "pln": ["(: cnet_isa_3d7502f103 (IsA steeplechase sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steeplechase is a kind of footrace", "pln": ["(: cnet_isa_e3d76f7260 (IsA steeplechase footrace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steeplechase is a kind of horse race", "pln": ["(: cnet_isa_4aca3417e9 (IsA steeplechase horse_race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steeplechaser is a kind of horse", "pln": ["(: cnet_isa_fdc7f8e4ec (IsA steeplechaser horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steeplechaser is a kind of racer", "pln": ["(: cnet_isa_f1d708f339 (IsA steeplechaser racer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steeplejack is a kind of laborer", "pln": ["(: cnet_isa_0fb6976b14 (IsA steeplejack laborer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steer roping is a kind of roping", "pln": ["(: cnet_isa_4996f7875a (IsA steer_roping roping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steerage is a kind of accommodation", "pln": ["(: cnet_isa_65bcd26b73 (IsA steerage accommodation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "steerageway is a kind of speed", "pln": ["(: cnet_isa_f1953c59a1 (IsA steerageway speed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steering is a kind of control", "pln": ["(: cnet_isa_2403a852b8 (IsA steering control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steering committee is a kind of committee", "pln": ["(: cnet_isa_cb8225304c (IsA steering_committee committee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steering gear is a kind of gear", "pln": ["(: cnet_isa_7734f46b25 (IsA steering_gear gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steering linkage is a kind of mechanism", "pln": ["(: cnet_isa_de433fdcae (IsA steering_linkage mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steering system is a kind of mechanism", "pln": ["(: cnet_isa_45728a6ee6 (IsA steering_system mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steering wheel is a kind of handwheel", "pln": ["(: cnet_isa_47e9bb40d9 (IsA steering_wheel handwheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steganopus is a kind of bird genus", "pln": ["(: cnet_isa_715684acdd (IsA steganopus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stegocephalia is a kind of animal order", "pln": ["(: cnet_isa_7f3c629cc0 (IsA stegocephalia animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stegosaur is a kind of armored dinosaur", "pln": ["(: cnet_isa_367ce73942 (IsA stegosaur armored_dinosaur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stele is a kind of antiquity", "pln": ["(: cnet_isa_29690b50c0 (IsA stele antiquity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stele is a kind of stone", "pln": ["(: cnet_isa_1dc7134cc5 (IsA stele stone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stele is a kind of vascular tissue", "pln": ["(: cnet_isa_6e4e61d83d (IsA stele vascular_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stelis is a kind of orchid", "pln": ["(: cnet_isa_8ba59cf094 (IsA stelis orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stellar parallax is a kind of heliocentric parallax", "pln": ["(: cnet_isa_956a9ad6c9 (IsA stellar_parallax heliocentric_parallax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stellaria is a kind of caryophylloid dicot family", "pln": ["(: cnet_isa_7538fec43c (IsA stellaria caryophylloid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stellate venule is a kind of venule", "pln": ["(: cnet_isa_0a4f877e13 (IsA stellate_venule venule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steller s sea cow is a kind of sea cow", "pln": ["(: cnet_isa_f90f67cba8 (IsA steller_s_sea_cow sea_cow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steller sea lion is a kind of sea lion", "pln": ["(: cnet_isa_cdde3b223d (IsA steller_sea_lion sea_lion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stem is a kind of tube", "pln": ["(: cnet_isa_abdc21506c (IsA stem tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stem blight is a kind of blight", "pln": ["(: cnet_isa_a6784cc040 (IsA stem_blight blight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stem cell is a kind of somatic cell", "pln": ["(: cnet_isa_a05dc40c92 (IsA stem_cell somatic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stem cell research is a kind of biological research", "pln": ["(: cnet_isa_0d4451f5b2 (IsA stem_cell_research biological_research) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stem turn is a kind of turn", "pln": ["(: cnet_isa_02f79e0199 (IsA stem_turn turn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stem vowel is a kind of vowel", "pln": ["(: cnet_isa_cb2a6448f3 (IsA stem_vowel vowel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stem winder is a kind of watch", "pln": ["(: cnet_isa_37ac0f7641 (IsA stem_winder watch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stemless carline thistle is a kind of carline thistle", "pln": ["(: cnet_isa_0fd70ca081 (IsA stemless_carline_thistle carline_thistle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stemless golden weed is a kind of wildflower", "pln": ["(: cnet_isa_86f44a86f7 (IsA stemless_golden_weed wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stemless hymenoxy is a kind of wildflower", "pln": ["(: cnet_isa_3a914e5e16 (IsA stemless_hymenoxy wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stemma is a kind of tree", "pln": ["(: cnet_isa_b86f661972 (IsA stemma tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stemmatology is a kind of humanistic discipline", "pln": ["(: cnet_isa_4d1c642b98 (IsA stemmatology humanistic_discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stemmer is a kind of device", "pln": ["(: cnet_isa_7d1f1c08f5 (IsA stemmer device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stemmer is a kind of tamp", "pln": ["(: cnet_isa_e19741c319 (IsA stemmer tamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stemmer is a kind of algorithm", "pln": ["(: cnet_isa_1599dbcb40 (IsA stemmer algorithm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stemmer is a kind of worker", "pln": ["(: cnet_isa_ec51c2e9a1 (IsA stemmer worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sten gun is a kind of submachine gun", "pln": ["(: cnet_isa_c54c796f85 (IsA sten_gun submachine_gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stencil is a kind of sheet", "pln": ["(: cnet_isa_3aa5a25157 (IsA stencil sheet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stenocarpus is a kind of dicot genus", "pln": ["(: cnet_isa_c3a73f1a5d (IsA stenocarpus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stenochlaena is a kind of fern genus", "pln": ["(: cnet_isa_c4e00b471d (IsA stenochlaena fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stenograph is a kind of typewriter", "pln": ["(: cnet_isa_08b8be7fd4 (IsA stenograph typewriter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stenograph is a kind of character", "pln": ["(: cnet_isa_7bb3c229f3 (IsA stenograph character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stenographer is a kind of secretary", "pln": ["(: cnet_isa_c735e4f067 (IsA stenographer secretary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stenography is a kind of handwriting", "pln": ["(: cnet_isa_23cdb30009 (IsA stenography handwriting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stenopelmatidae is a kind of arthropod family", "pln": ["(: cnet_isa_e33223ddc5 (IsA stenopelmatidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stenopelmatus is a kind of arthropod genus", "pln": ["(: cnet_isa_2e685b1733 (IsA stenopelmatus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stenopterygius is a kind of ichthyosaur", "pln": ["(: cnet_isa_f04a5399c1 (IsA stenopterygius ichthyosaur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stenosis is a kind of pathology", "pln": ["(: cnet_isa_5fb2ba6586 (IsA stenosis pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stenotaphrum is a kind of monocot genus", "pln": ["(: cnet_isa_f3a707aaa1 (IsA stenotaphrum monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stenotomus is a kind of fish genus", "pln": ["(: cnet_isa_626b91e4a8 (IsA stenotomus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stenotus is a kind of asterid dicot genus", "pln": ["(: cnet_isa_4934221650 (IsA stenotus asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stent is a kind of tube", "pln": ["(: cnet_isa_58f5034116 (IsA stent tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stentor is a kind of ciliate", "pln": ["(: cnet_isa_958ab500eb (IsA stentor ciliate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stentor is a kind of speaker", "pln": ["(: cnet_isa_adae902bda (IsA stentor speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "step is a kind of locomotion", "pln": ["(: cnet_isa_07ca57594c (IsA step locomotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "step is a kind of block", "pln": ["(: cnet_isa_2b635f70d5 (IsA step block) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "step is a kind of support", "pln": ["(: cnet_isa_fce64663f8 (IsA step support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "step is a kind of small indefinite quantity", "pln": ["(: cnet_isa_0ad51496ed (IsA step small_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "step dancing is a kind of dancing", "pln": ["(: cnet_isa_270e3e9679 (IsA step_dancing dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "step down transformer is a kind of transformer", "pln": ["(: cnet_isa_52f6905200 (IsA step_down_transformer transformer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "step ladder is a kind of ladder", "pln": ["(: cnet_isa_250147a18a (IsA step_ladder ladder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "step stool is a kind of stool", "pln": ["(: cnet_isa_f2ea3358e7 (IsA step_stool stool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "step up transformer is a kind of transformer", "pln": ["(: cnet_isa_99055a2703 (IsA step_up_transformer transformer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stepbrother is a kind of brother", "pln": ["(: cnet_isa_5e09d4eb71 (IsA stepbrother brother) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stepchild is a kind of child", "pln": ["(: cnet_isa_5b1a380a34 (IsA stepchild child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stepdaughter is a kind of stepchild", "pln": ["(: cnet_isa_0c2bde8d32 (IsA stepdaughter stepchild) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stepfather is a kind of father figure", "pln": ["(: cnet_isa_3af67f90e7 (IsA stepfather father_figure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stepfather is a kind of stepparent", "pln": ["(: cnet_isa_15abe784a6 (IsA stepfather stepparent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stephanion is a kind of craniometric point", "pln": ["(: cnet_isa_c5ece9bc32 (IsA stephanion craniometric_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stephanomeria is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_f2d9547126 (IsA stephanomeria dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stephanotis is a kind of shrub", "pln": ["(: cnet_isa_accca83108 (IsA stephanotis shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stepmother is a kind of stepparent", "pln": ["(: cnet_isa_ac70af0791 (IsA stepmother stepparent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stepparent is a kind of parent", "pln": ["(: cnet_isa_7f884ca028 (IsA stepparent parent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steppe is a kind of plain", "pln": ["(: cnet_isa_02bd54a3a2 (IsA steppe plain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stepper is a kind of horse", "pln": ["(: cnet_isa_e3ea06eb47 (IsA stepper horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stepper is a kind of motor", "pln": ["(: cnet_isa_c1df44b90e (IsA stepper motor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stepping stone is a kind of mean", "pln": ["(: cnet_isa_b060479bc8 (IsA stepping_stone mean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stepping stone is a kind of rock", "pln": ["(: cnet_isa_4ea0845c72 (IsA stepping_stone rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steprelationship is a kind of affinity", "pln": ["(: cnet_isa_a186e8054e (IsA steprelationship affinity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "step is a kind of path", "pln": ["(: cnet_isa_399a0baa78 (IsA step path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stepson is a kind of stepchild", "pln": ["(: cnet_isa_a9e420ffc2 (IsA stepson stepchild) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steradian is a kind of angular unit", "pln": ["(: cnet_isa_057519d7bf (IsA steradian angular_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stercorariidae is a kind of bird family", "pln": ["(: cnet_isa_8290c005e5 (IsA stercorariidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stercorarius is a kind of bird genus", "pln": ["(: cnet_isa_085d1764d0 (IsA stercorarius bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sterculia is a kind of angiospermous tree", "pln": ["(: cnet_isa_f5a0fbde33 (IsA sterculia angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sterculia gum is a kind of gum", "pln": ["(: cnet_isa_5b900cff6c (IsA sterculia_gum gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sterculiaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_76da5bf3fc (IsA sterculiaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stereo is a kind of picture", "pln": ["(: cnet_isa_58e7cc5a17 (IsA stereo picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stereo is a kind of reproducer", "pln": ["(: cnet_isa_27a81b673e (IsA stereo reproducer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stereoscope is a kind of optical device", "pln": ["(: cnet_isa_d675e99c7f (IsA stereoscope optical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stereoscopic vision is a kind of binocular vision", "pln": ["(: cnet_isa_d8e9cbe20c (IsA stereoscopic_vision binocular_vision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stereospondyli is a kind of animal order", "pln": ["(: cnet_isa_b8d3e44744 (IsA stereospondyli animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stereotype is a kind of representation", "pln": ["(: cnet_isa_7bf03a66b4 (IsA stereotype representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sterility is a kind of physiological state", "pln": ["(: cnet_isa_900c1b1054 (IsA sterility physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sterilization is a kind of cleaning", "pln": ["(: cnet_isa_0afe39c66b (IsA sterilization cleaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sterilization is a kind of operation", "pln": ["(: cnet_isa_789a84e0e3 (IsA sterilization operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sterling is a kind of money", "pln": ["(: cnet_isa_20e30c9986 (IsA sterling money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sterling area is a kind of bloc", "pln": ["(: cnet_isa_605cdb5c4e (IsA sterling_area bloc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sterling silver is a kind of alloy", "pln": ["(: cnet_isa_7cd1149650 (IsA sterling_silver alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stern is a kind of rear", "pln": ["(: cnet_isa_6f47313c0e (IsA stern rear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stern chaser is a kind of naval gun", "pln": ["(: cnet_isa_771442fcc1 (IsA stern_chaser naval_gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sterna is a kind of bird genus", "pln": ["(: cnet_isa_aa94a87658 (IsA sterna bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sterninae is a kind of bird family", "pln": ["(: cnet_isa_292654ac8b (IsA sterninae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sternness is a kind of asperity", "pln": ["(: cnet_isa_b6bd0d3347 (IsA sternness asperity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sternness is a kind of unpermissiveness", "pln": ["(: cnet_isa_ed0cbdecf0 (IsA sternness unpermissiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sternocleidomastoid is a kind of skeletal muscle", "pln": ["(: cnet_isa_7905a4d389 (IsA sternocleidomastoid skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sternocleidomastoid vein is a kind of vein", "pln": ["(: cnet_isa_e2af69bc64 (IsA sternocleidomastoid_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sternotherus is a kind of reptile genus", "pln": ["(: cnet_isa_72116a4790 (IsA sternotherus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sternpost is a kind of timber", "pln": ["(: cnet_isa_9a78477d59 (IsA sternpost timber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sternum is a kind of bone", "pln": ["(: cnet_isa_cb0f1a792d (IsA sternum bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sternutator is a kind of compound", "pln": ["(: cnet_isa_9e6fa64a30 (IsA sternutator compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sternwheeler is a kind of paddle steamer", "pln": ["(: cnet_isa_4a325bffe4 (IsA sternwheeler paddle_steamer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steroid is a kind of organic compound", "pln": ["(: cnet_isa_38298de31d (IsA steroid organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "steroid hormone is a kind of hormone", "pln": ["(: cnet_isa_53782d8570 (IsA steroid_hormone hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sterol is a kind of alcohol", "pln": ["(: cnet_isa_21a95559cf (IsA sterol alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sterol is a kind of steroid", "pln": ["(: cnet_isa_aba0f5e251 (IsA sterol steroid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stethoscope is a kind of device", "pln": ["(: cnet_isa_0ac3dd9ea4 (IsA stethoscope device) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stethoscope is a kind of listening device", "pln": ["(: cnet_isa_28ffe0b048 (IsA stethoscope listening_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stethoscope is a kind of medical device", "pln": ["(: cnet_isa_b983299e9d (IsA stethoscope medical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stethoscope is a kind of medical instrument", "pln": ["(: cnet_isa_d37bca5ba4 (IsA stethoscope medical_instrument) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stethoscope is a kind of tool", "pln": ["(: cnet_isa_113cd7c6ab (IsA stethoscope tool) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "stevens law is a kind of law", "pln": ["(: cnet_isa_5746bfb3f0 (IsA stevens_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stevedore is a kind of laborer", "pln": ["(: cnet_isa_90d3c11f65 (IsA stevedore laborer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steven law is a kind of law", "pln": ["(: cnet_isa_6d54dcc423 (IsA steven_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stevia is a kind of herb", "pln": ["(: cnet_isa_74517aa174 (IsA stevia herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stew is a kind of dish", "pln": ["(: cnet_isa_0794dbf744 (IsA stew dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stew meat is a kind of meat", "pln": ["(: cnet_isa_8fadbd427b (IsA stew_meat meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steward is a kind of attendant", "pln": ["(: cnet_isa_f425c63cdb (IsA steward attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "steward is a kind of fiduciary", "pln": ["(: cnet_isa_f7b6f783f9 (IsA steward fiduciary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "steward is a kind of officer", "pln": ["(: cnet_isa_89b7b7e63c (IsA steward officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stewardess is a kind of steward", "pln": ["(: cnet_isa_64cfd3a078 (IsA stewardess steward) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stewardship is a kind of position", "pln": ["(: cnet_isa_15e0d1d4a8 (IsA stewardship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stewing is a kind of agitation", "pln": ["(: cnet_isa_531ee3b392 (IsA stewing agitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stewing pan is a kind of saucepan", "pln": ["(: cnet_isa_b6295cc144 (IsA stewing_pan saucepan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sthene is a kind of force unit", "pln": ["(: cnet_isa_64ed1b4235 (IsA sthene force_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stheno is a kind of gorgon", "pln": ["(: cnet_isa_af442b44bd (IsA stheno gorgon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stibnite is a kind of mineral", "pln": ["(: cnet_isa_06a1a2c43e (IsA stibnite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stichaeidae is a kind of fish family", "pln": ["(: cnet_isa_387e265941 (IsA stichaeidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sticherus is a kind of fern genus", "pln": ["(: cnet_isa_8a411c064e (IsA sticherus fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stick is a kind of punishment", "pln": ["(: cnet_isa_34ab67eb14 (IsA stick punishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stick is a kind of implement", "pln": ["(: cnet_isa_19944f255c (IsA stick implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stick is a kind of lever", "pln": ["(: cnet_isa_dfe39e11dd (IsA stick lever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stick is a kind of butter", "pln": ["(: cnet_isa_e972d66d1a (IsA stick butter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stick is a kind of margarine", "pln": ["(: cnet_isa_ca055417d8 (IsA stick margarine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stick is a kind of sport equipment", "pln": ["(: cnet_isa_d9960578ab (IsA stick sport_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stick is a kind of limb", "pln": ["(: cnet_isa_07d74c2ecc (IsA stick limb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stick cinnamon is a kind of cinnamon", "pln": ["(: cnet_isa_e3832913a4 (IsA stick_cinnamon cinnamon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stick figure is a kind of drawing", "pln": ["(: cnet_isa_38ea583ed3 (IsA stick_figure drawing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stick horse is a kind of plaything", "pln": ["(: cnet_isa_d1acfe97ca (IsA stick_horse plaything) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stick lac is a kind of lac", "pln": ["(: cnet_isa_4a471078cd (IsA stick_lac lac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stickball is a kind of baseball", "pln": ["(: cnet_isa_4dff3b193a (IsA stickball baseball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stickiness is a kind of viscosity", "pln": ["(: cnet_isa_f3a450c20d (IsA stickiness viscosity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sticking point is a kind of detail", "pln": ["(: cnet_isa_3ccd598cb1 (IsA sticking_point detail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stickleback is a kind of spiny finned fish", "pln": ["(: cnet_isa_be91ded116 (IsA stickleback spiny_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stickler is a kind of martinet", "pln": ["(: cnet_isa_a33627e5a3 (IsA stickler martinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stickpin is a kind of pin", "pln": ["(: cnet_isa_7a1f6589fd (IsA stickpin pin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stick and stone is a kind of building material", "pln": ["(: cnet_isa_77e9ed9d5d (IsA stick_and_stone building_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sticktight is a kind of flea", "pln": ["(: cnet_isa_3251f30e3a (IsA sticktight flea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stickweed is a kind of herb", "pln": ["(: cnet_isa_1bf5df3d3a (IsA stickweed herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sticky aster is a kind of wildflower", "pln": ["(: cnet_isa_f1cd86cdc3 (IsA sticky_aster wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sticky end is a kind of deoxyribonucleic acid", "pln": ["(: cnet_isa_a019f42b4e (IsA sticky_end deoxyribonucleic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sticky geranium is a kind of cranesbill", "pln": ["(: cnet_isa_c01a93e35d (IsA sticky_geranium cranesbill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stictomy is a kind of mammal genus", "pln": ["(: cnet_isa_9021cc37f9 (IsA stictomy mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stictopelia is a kind of bird genus", "pln": ["(: cnet_isa_3aab086cd8 (IsA stictopelia bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stiff is a kind of man", "pln": ["(: cnet_isa_1d44937d74 (IsA stiff man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stiff aster is a kind of aster", "pln": ["(: cnet_isa_f79007b628 (IsA stiff_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stiff upper lip is a kind of self restraint", "pln": ["(: cnet_isa_c70bd9697c (IsA stiff_upper_lip self_restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stiffener is a kind of filler", "pln": ["(: cnet_isa_b09c65e351 (IsA stiffener filler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stiffening is a kind of procedure", "pln": ["(: cnet_isa_289b025392 (IsA stiffening procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stiffening is a kind of natural process", "pln": ["(: cnet_isa_7b383857d2 (IsA stiffening natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stiffness is a kind of awkwardness", "pln": ["(: cnet_isa_d2dd1078fc (IsA stiffness awkwardness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stiffness is a kind of inelasticity", "pln": ["(: cnet_isa_e3f8f1a2fe (IsA stiffness inelasticity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stiffness is a kind of resoluteness", "pln": ["(: cnet_isa_50d5bd62be (IsA stiffness resoluteness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stifle is a kind of joint", "pln": ["(: cnet_isa_f93376257f (IsA stifle joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stifler is a kind of person", "pln": ["(: cnet_isa_0a374915eb (IsA stifler person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stigma is a kind of blemish", "pln": ["(: cnet_isa_82246bbfb4 (IsA stigma blemish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stigma is a kind of spiracle", "pln": ["(: cnet_isa_71a03fc212 (IsA stigma spiracle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stigma is a kind of reproductive structure", "pln": ["(: cnet_isa_fe867772d5 (IsA stigma reproductive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stigmata is a kind of wound", "pln": ["(: cnet_isa_94e5985e25 (IsA stigmata wound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stigmatic is a kind of person", "pln": ["(: cnet_isa_4d01deecc4 (IsA stigmatic person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stigmatism is a kind of sight", "pln": ["(: cnet_isa_c0be1abf7b (IsA stigmatism sight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stigmatism is a kind of condition", "pln": ["(: cnet_isa_6cd4eec568 (IsA stigmatism condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stigmatization is a kind of disapproval", "pln": ["(: cnet_isa_d4642e9e81 (IsA stigmatization disapproval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stile is a kind of upright", "pln": ["(: cnet_isa_857e4a14a2 (IsA stile upright) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stiletto is a kind of dagger", "pln": ["(: cnet_isa_8b581006cc (IsA stiletto dagger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "still s disease is a kind of rheumatoid arthritis", "pln": ["(: cnet_isa_aec7720268 (IsA still_s_disease rheumatoid_arthritis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "still is a kind of apparatus", "pln": ["(: cnet_isa_7e55343714 (IsA still apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "still is a kind of picture", "pln": ["(: cnet_isa_6c753abfb5 (IsA still picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "still life is a kind of painting", "pln": ["(: cnet_isa_5136522672 (IsA still_life painting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stillborn infant is a kind of neonate", "pln": ["(: cnet_isa_8901d64499 (IsA stillborn_infant neonate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stillness is a kind of calmness", "pln": ["(: cnet_isa_b4c26326be (IsA stillness calmness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stillroom is a kind of pantry", "pln": ["(: cnet_isa_5cec55a8d1 (IsA stillroom pantry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stillson wrench is a kind of pipe wrench", "pln": ["(: cnet_isa_7ac60f5b02 (IsA stillson_wrench pipe_wrench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stilt is a kind of shorebird", "pln": ["(: cnet_isa_63b9949ef1 (IsA stilt shorebird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stilt is a kind of pole", "pln": ["(: cnet_isa_a1b1331175 (IsA stilt pole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stilton is a kind of bleu", "pln": ["(: cnet_isa_7b22bae35b (IsA stilton bleu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stimulant is a kind of drug", "pln": ["(: cnet_isa_5775467789 (IsA stimulant drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stimulation is a kind of arousal", "pln": ["(: cnet_isa_415b58ec7f (IsA stimulation arousal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stimulation is a kind of information", "pln": ["(: cnet_isa_4c49c2b76e (IsA stimulation information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stimulation is a kind of natural process", "pln": ["(: cnet_isa_13349b4e02 (IsA stimulation natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sting is a kind of injury", "pln": ["(: cnet_isa_a223b6510b (IsA sting injury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sting is a kind of pain", "pln": ["(: cnet_isa_eb2ab6089e (IsA sting pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sting operation is a kind of bunco", "pln": ["(: cnet_isa_eb79c4aa13 (IsA sting_operation bunco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sting operation is a kind of operation", "pln": ["(: cnet_isa_3ae5fa7853 (IsA sting_operation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stinger is a kind of blow", "pln": ["(: cnet_isa_a7b0e9665d (IsA stinger blow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stinger is a kind of organ", "pln": ["(: cnet_isa_e322dbb37f (IsA stinger organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stinger is a kind of heat seeking missile", "pln": ["(: cnet_isa_b4e7c6ab3a (IsA stinger heat_seeking_missile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stinger is a kind of surface to air missile", "pln": ["(: cnet_isa_10f695c695 (IsA stinger surface_to_air_missile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stinger is a kind of abuse", "pln": ["(: cnet_isa_b67646f244 (IsA stinger abuse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stinger is a kind of cocktail", "pln": ["(: cnet_isa_191ebf75a7 (IsA stinger cocktail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stinginess is a kind of trait", "pln": ["(: cnet_isa_cc292f4bfa (IsA stinginess trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stinging hair is a kind of hair", "pln": ["(: cnet_isa_2a0f695185 (IsA stinging_hair hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stinging nettle is a kind of nettle", "pln": ["(: cnet_isa_71878a619c (IsA stinging_nettle nettle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stingray is a kind of ray", "pln": ["(: cnet_isa_d4b498f690 (IsA stingray ray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stink bell is a kind of fritillary", "pln": ["(: cnet_isa_ddf7e44da7 (IsA stink_bell fritillary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stink bomb is a kind of bomb", "pln": ["(: cnet_isa_1acb213c47 (IsA stink_bomb bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stinker is a kind of thing", "pln": ["(: cnet_isa_84333f006c (IsA stinker thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stinkhorn is a kind of fungus", "pln": ["(: cnet_isa_a3cbbaeb3e (IsA stinkhorn fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stinking cedar is a kind of yew", "pln": ["(: cnet_isa_6bfd97f2b5 (IsA stinking_cedar yew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stinking goosefoot is a kind of goosefoot", "pln": ["(: cnet_isa_21c10265c9 (IsA stinking_goosefoot goosefoot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stinking hellebore is a kind of hellebore", "pln": ["(: cnet_isa_d38abf38a6 (IsA stinking_hellebore hellebore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stinking iris is a kind of iris", "pln": ["(: cnet_isa_0899aacb79 (IsA stinking_iris iris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stinky squid is a kind of stinkhorn", "pln": ["(: cnet_isa_7b00064abe (IsA stinky_squid stinkhorn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stint is a kind of job", "pln": ["(: cnet_isa_10b8943289 (IsA stint job) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stinter is a kind of economizer", "pln": ["(: cnet_isa_cf6e220bd4 (IsA stinter economizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stipe is a kind of stalk", "pln": ["(: cnet_isa_1295a2fc9d (IsA stipe stalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stipend is a kind of regular payment", "pln": ["(: cnet_isa_b75af25806 (IsA stipend regular_payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stipendiary is a kind of magistrate", "pln": ["(: cnet_isa_423d1717b7 (IsA stipendiary magistrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stippler is a kind of painter", "pln": ["(: cnet_isa_ca395ca165 (IsA stippler painter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stipulation is a kind of restriction", "pln": ["(: cnet_isa_5476c8ba5c (IsA stipulation restriction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stipulation is a kind of concession", "pln": ["(: cnet_isa_a5b716372b (IsA stipulation concession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stipulative definition is a kind of definition", "pln": ["(: cnet_isa_0ad3a24a43 (IsA stipulative_definition definition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stipule is a kind of plant part", "pln": ["(: cnet_isa_1af3577a5a (IsA stipule plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stir is a kind of agitation", "pln": ["(: cnet_isa_c59314a3d3 (IsA stir agitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stirk is a kind of cattle", "pln": ["(: cnet_isa_34d393c465 (IsA stirk cattle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stirrer is a kind of implement", "pln": ["(: cnet_isa_f2b25759a4 (IsA stirrer implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stirring is a kind of agitation", "pln": ["(: cnet_isa_0a674778ea (IsA stirring agitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stirrup is a kind of support", "pln": ["(: cnet_isa_1a8f2c33c6 (IsA stirrup support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stirrup cup is a kind of drink", "pln": ["(: cnet_isa_659e340204 (IsA stirrup_cup drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stirrup pump is a kind of pump", "pln": ["(: cnet_isa_8c1379547e (IsA stirrup_pump pump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stitch is a kind of sewing", "pln": ["(: cnet_isa_50a9ac8601 (IsA stitch sewing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stitch is a kind of pain", "pln": ["(: cnet_isa_f1f44b1be5 (IsA stitch pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stitcher is a kind of finisher", "pln": ["(: cnet_isa_a2a198be6a (IsA stitcher finisher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stitcher is a kind of garmentmaker", "pln": ["(: cnet_isa_882c8dc6e8 (IsA stitcher garmentmaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stitchwort is a kind of chickweed", "pln": ["(: cnet_isa_9dc75aed93 (IsA stitchwort chickweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stizidae is a kind of arthropod family", "pln": ["(: cnet_isa_42f16d0893 (IsA stizidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stizostedion is a kind of fish genus", "pln": ["(: cnet_isa_b89fed5e5d (IsA stizostedion fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stoat is a kind of ermine", "pln": ["(: cnet_isa_7790cbd4a6 (IsA stoat ermine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stob is a kind of stick", "pln": ["(: cnet_isa_295fbae6f0 (IsA stob stick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stochastic process is a kind of model", "pln": ["(: cnet_isa_6e401fcf48 (IsA stochastic_process model) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock is a kind of handle", "pln": ["(: cnet_isa_de6bdf8fc3 (IsA stock handle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock is a kind of lumber", "pln": ["(: cnet_isa_b802ee9133 (IsA stock lumber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stock is a kind of merchandise", "pln": ["(: cnet_isa_e52093e2dc (IsA stock merchandise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock is a kind of support", "pln": ["(: cnet_isa_a117ec40cf (IsA stock support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock is a kind of flower", "pln": ["(: cnet_isa_ddbd272d0b (IsA stock flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock is a kind of plant part", "pln": ["(: cnet_isa_8a20011a6e (IsA stock plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock is a kind of stalk", "pln": ["(: cnet_isa_f0c64ffef6 (IsA stock stalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock is a kind of capital", "pln": ["(: cnet_isa_dead97a196 (IsA stock capital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stock is a kind of repute", "pln": ["(: cnet_isa_57455be986 (IsA stock repute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock buyback is a kind of purchase", "pln": ["(: cnet_isa_28641d5e7d (IsA stock_buyback purchase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock car is a kind of car", "pln": ["(: cnet_isa_1e17aa1e45 (IsA stock_car car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock car is a kind of racer", "pln": ["(: cnet_isa_8d314d6d05 (IsA stock_car racer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stock certificate is a kind of security", "pln": ["(: cnet_isa_d34f065022 (IsA stock_certificate security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock company is a kind of company", "pln": ["(: cnet_isa_120e79d4de (IsA stock_company company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock company is a kind of theater company", "pln": ["(: cnet_isa_1ad4e85849 (IsA stock_company theater_company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock cube is a kind of broth", "pln": ["(: cnet_isa_00d5eb2d76 (IsA stock_cube broth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock dividend is a kind of dividend", "pln": ["(: cnet_isa_6c6084f4d7 (IsA stock_dividend dividend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock exchange is a kind of exchange", "pln": ["(: cnet_isa_26b2dbcde6 (IsA stock_exchange exchange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock in trade is a kind of equipment", "pln": ["(: cnet_isa_b4d68805fc (IsA stock_in_trade equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock index is a kind of index", "pln": ["(: cnet_isa_b3fcc9383a (IsA stock_index index) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock index future is a kind of future contract", "pln": ["(: cnet_isa_034be7ec1e (IsA stock_index_future future_contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock issue is a kind of issue", "pln": ["(: cnet_isa_51673ec6fb (IsA stock_issue issue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock of record is a kind of common stock", "pln": ["(: cnet_isa_6616ccb9e1 (IsA stock_of_record common_stock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock option is a kind of benefit", "pln": ["(: cnet_isa_e7b488ab47 (IsA stock_option benefit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock option is a kind of option", "pln": ["(: cnet_isa_75897e0415 (IsA stock_option option) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock photograph is a kind of picture", "pln": ["(: cnet_isa_4e621e2457 (IsA stock_photograph picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock power is a kind of power of attorney", "pln": ["(: cnet_isa_e8661117ed (IsA stock_power power_of_attorney) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock purchase plan is a kind of plan", "pln": ["(: cnet_isa_089a37e1a3 (IsA stock_purchase_plan plan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stock saddle is a kind of saddle", "pln": ["(: cnet_isa_7b28ce7ce3 (IsA stock_saddle saddle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock symbol is a kind of symbol", "pln": ["(: cnet_isa_8e913a6f1b (IsA stock_symbol symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock take is a kind of inventory", "pln": ["(: cnet_isa_c5bed89316 (IsA stock_take inventory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock taker is a kind of employee", "pln": ["(: cnet_isa_916d7b2018 (IsA stock_taker employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock trader is a kind of trader", "pln": ["(: cnet_isa_7c3de06156 (IsA stock_trader trader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock warrant is a kind of guarantee", "pln": ["(: cnet_isa_224fee23d5 (IsA stock_warrant guarantee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stockade is a kind of fortification", "pln": ["(: cnet_isa_57663c9788 (IsA stockade fortification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stockbroker is a kind of agent", "pln": ["(: cnet_isa_38df304b87 (IsA stockbroker agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stockbroker belt is a kind of suburb", "pln": ["(: cnet_isa_1477809ac6 (IsA stockbroker_belt suburb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stockcar is a kind of boxcar", "pln": ["(: cnet_isa_36ac41adf2 (IsA stockcar boxcar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stocker is a kind of domestic animal", "pln": ["(: cnet_isa_11faee9557 (IsA stocker domestic_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stockfish is a kind of fish", "pln": ["(: cnet_isa_4ea3bb4f3c (IsA stockfish fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stockholder is a kind of investor", "pln": ["(: cnet_isa_7d47b448d1 (IsA stockholder investor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stockholder of record is a kind of stockholder", "pln": ["(: cnet_isa_9804119b28 (IsA stockholder_of_record stockholder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stockholder meeting is a kind of meeting", "pln": ["(: cnet_isa_97b9de2e58 (IsA stockholder_meeting meeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stockholding is a kind of ownership", "pln": ["(: cnet_isa_680db16e82 (IsA stockholding ownership) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stockholding is a kind of property", "pln": ["(: cnet_isa_bee1c376f4 (IsA stockholding property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stockholm is a kind of in sweden", "pln": ["(: cnet_isa_7f8bb5b945 (IsA stockholm in_sweden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stockinet is a kind of knit", "pln": ["(: cnet_isa_35bc735974 (IsA stockinet knit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stockinette stitch is a kind of knitting stitch", "pln": ["(: cnet_isa_fa6fef41c9 (IsA stockinette_stitch knitting_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stocking is a kind of provision", "pln": ["(: cnet_isa_79d802e290 (IsA stocking provision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stocking is a kind of hosiery", "pln": ["(: cnet_isa_9e330d7065 (IsA stocking hosiery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stocking filler is a kind of christma present", "pln": ["(: cnet_isa_8be10a1f9d (IsA stocking_filler christma_present) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stockist is a kind of supplier", "pln": ["(: cnet_isa_e7f3c5b974 (IsA stockist supplier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stockjobber is a kind of stock trader", "pln": ["(: cnet_isa_0c23d43e57 (IsA stockjobber stock_trader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stockman is a kind of farmer", "pln": ["(: cnet_isa_574dd711d8 (IsA stockman farmer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stockpile is a kind of pile", "pln": ["(: cnet_isa_03e35795a6 (IsA stockpile pile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stockpiling is a kind of repositing", "pln": ["(: cnet_isa_f4b36e851e (IsA stockpiling repositing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stockpot is a kind of pot", "pln": ["(: cnet_isa_134c011b48 (IsA stockpot pot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stockroom is a kind of storeroom", "pln": ["(: cnet_isa_12b972cd96 (IsA stockroom storeroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock is a kind of framework", "pln": ["(: cnet_isa_7a82336d52 (IsA stock framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stock is a kind of instrument of punishment", "pln": ["(: cnet_isa_69e6c87b66 (IsA stock instrument_of_punishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stocktaking is a kind of reappraisal", "pln": ["(: cnet_isa_aef6b8c961 (IsA stocktaking reappraisal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stockyard is a kind of yard", "pln": ["(: cnet_isa_9a02ac6b54 (IsA stockyard yard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stodge is a kind of nutriment", "pln": ["(: cnet_isa_0d7c934162 (IsA stodge nutriment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stodginess is a kind of graveness", "pln": ["(: cnet_isa_de33a5d91e (IsA stodginess graveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stogie is a kind of cigar", "pln": ["(: cnet_isa_d86fa96e7a (IsA stogie cigar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stoic is a kind of adult", "pln": ["(: cnet_isa_b886a61022 (IsA stoic adult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stoic is a kind of philosopher", "pln": ["(: cnet_isa_22bee55a56 (IsA stoic philosopher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stoichiometry is a kind of ratio", "pln": ["(: cnet_isa_31c8caf920 (IsA stoichiometry ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stoicism is a kind of unemotionality", "pln": ["(: cnet_isa_1a90958a32 (IsA stoicism unemotionality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stoicism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_b45b188712 (IsA stoicism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stokehold is a kind of chamber", "pln": ["(: cnet_isa_039cc8c526 (IsA stokehold chamber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stoker is a kind of mechanical device", "pln": ["(: cnet_isa_f505c79519 (IsA stoker mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stoker is a kind of laborer", "pln": ["(: cnet_isa_c4d6a841ed (IsA stoker laborer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stoke aster is a kind of flower", "pln": ["(: cnet_isa_0675ea5d92 (IsA stoke_aster flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stokesia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_43ab7cde13 (IsA stokesia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stole is a kind of scarf", "pln": ["(: cnet_isa_c3cc73d3fa (IsA stole scarf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stolen property is a kind of transferred property", "pln": ["(: cnet_isa_683287b339 (IsA stolen_property transferred_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stolon is a kind of plant organ", "pln": ["(: cnet_isa_bcfcf22846 (IsA stolon plant_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stoma is a kind of aperture", "pln": ["(: cnet_isa_7af138a210 (IsA stoma aperture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stoma is a kind of orifice", "pln": ["(: cnet_isa_7932c2ef2d (IsA stoma orifice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stomach is a kind of internal organ", "pln": ["(: cnet_isa_a6fa087b01 (IsA stomach internal_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stomach is a kind of appetite", "pln": ["(: cnet_isa_e1d4be6ad3 (IsA stomach appetite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stomach is a kind of inclination", "pln": ["(: cnet_isa_3eee130492 (IsA stomach inclination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stomach exercise is a kind of exercise", "pln": ["(: cnet_isa_e6a53fa208 (IsA stomach_exercise exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stomach pump is a kind of suction pump", "pln": ["(: cnet_isa_fd8948971c (IsA stomach_pump suction_pump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stomach sweetbread is a kind of variety meat", "pln": ["(: cnet_isa_677d28711a (IsA stomach_sweetbread variety_meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stomachache is a kind of ache", "pln": ["(: cnet_isa_0a28c85ce1 (IsA stomachache ache) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stomacher is a kind of garment", "pln": ["(: cnet_isa_6ca95fdfb4 (IsA stomacher garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stomatitis is a kind of inflammation", "pln": ["(: cnet_isa_920a834c94 (IsA stomatitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stomatopod is a kind of crustacean", "pln": ["(: cnet_isa_19a566c012 (IsA stomatopod crustacean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stomatopoda is a kind of animal order", "pln": ["(: cnet_isa_c0214cd182 (IsA stomatopoda animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stomp is a kind of social dancing", "pln": ["(: cnet_isa_6dbc0784c7 (IsA stomp social_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stone is a kind of another word for rock", "pln": ["(: cnet_isa_b663fa6917 (IsA stone another_word_for_rock) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stone is a kind of small rock", "pln": ["(: cnet_isa_750d53d58c (IsA stone small_rock) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stone is a kind of building material", "pln": ["(: cnet_isa_ee75e08217 (IsA stone building_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stone is a kind of coldness", "pln": ["(: cnet_isa_cf3d5aab42 (IsA stone coldness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stone is a kind of pericarp", "pln": ["(: cnet_isa_be8ab51467 (IsA stone pericarp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stone is a kind of avoirdupois unit", "pln": ["(: cnet_isa_42e57ea25c (IsA stone avoirdupois_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stone bass is a kind of sea bass", "pln": ["(: cnet_isa_57f1bbb318 (IsA stone_bass sea_bass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stone bramble is a kind of bramble bush", "pln": ["(: cnet_isa_0a98185ee8 (IsA stone_bramble bramble_bush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stone breaker is a kind of breaker", "pln": ["(: cnet_isa_b13220fab8 (IsA stone_breaker breaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stone crab is a kind of crab", "pln": ["(: cnet_isa_6431f18d93 (IsA stone_crab crab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stone curlew is a kind of shorebird", "pln": ["(: cnet_isa_14460a3431 (IsA stone_curlew shorebird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stone marten is a kind of marten", "pln": ["(: cnet_isa_cf3940a605 (IsA stone_marten marten) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stone parsley is a kind of herb", "pln": ["(: cnet_isa_151254a383 (IsA stone_parsley herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stone pine is a kind of pine", "pln": ["(: cnet_isa_7a77f44a7a (IsA stone_pine pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stone wall is a kind of fence", "pln": ["(: cnet_isa_e0e156debc (IsA stone_wall fence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stonechat is a kind of old world chat", "pln": ["(: cnet_isa_9c1b262528 (IsA stonechat old_world_chat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stonecress is a kind of herb", "pln": ["(: cnet_isa_798d2d9bb1 (IsA stonecress herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stonecrop is a kind of sedum", "pln": ["(: cnet_isa_d5c9a94343 (IsA stonecrop sedum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stonecutter is a kind of quarryman", "pln": ["(: cnet_isa_68776213e5 (IsA stonecutter quarryman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stonefish is a kind of scorpaenid", "pln": ["(: cnet_isa_ce8a414b9e (IsA stonefish scorpaenid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stonefly is a kind of insect", "pln": ["(: cnet_isa_d6b788a532 (IsA stonefly insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stoner is a kind of attacker", "pln": ["(: cnet_isa_5cfeb64f9b (IsA stoner attacker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stonewaller is a kind of obstructionist", "pln": ["(: cnet_isa_8e45638f77 (IsA stonewaller obstructionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stonewalling is a kind of stall", "pln": ["(: cnet_isa_dc51096346 (IsA stonewalling stall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stoneware is a kind of ceramic ware", "pln": ["(: cnet_isa_33fb2dbf75 (IsA stoneware ceramic_ware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stonework is a kind of masonry", "pln": ["(: cnet_isa_1840a425d2 (IsA stonework masonry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stonewort is a kind of green algae", "pln": ["(: cnet_isa_d562f45996 (IsA stonewort green_algae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stoning is a kind of corporal punishment", "pln": ["(: cnet_isa_fbaa31015f (IsA stoning corporal_punishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stony coral is a kind of coral", "pln": ["(: cnet_isa_66ed11a55b (IsA stony_coral coral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stool is a kind of 3 legged chair", "pln": ["(: cnet_isa_d9ad8eef88 (IsA stool 3_legged_chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stool is a kind of seat", "pln": ["(: cnet_isa_090654753c (IsA stool seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stool is a kind of stump", "pln": ["(: cnet_isa_407c41a404 (IsA stool stump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stool pigeon is a kind of bait", "pln": ["(: cnet_isa_37bb8e0578 (IsA stool_pigeon bait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stoop is a kind of inclination", "pln": ["(: cnet_isa_f28da0dcac (IsA stoop inclination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stoop is a kind of porch", "pln": ["(: cnet_isa_38c2cc273f (IsA stoop porch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stooper is a kind of person", "pln": ["(: cnet_isa_4bf96fb9d3 (IsA stooper person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stooper is a kind of salvager", "pln": ["(: cnet_isa_853fe8fdff (IsA stooper salvager) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stop is a kind of end", "pln": ["(: cnet_isa_4f3b6dae20 (IsA stop end) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stop is a kind of act", "pln": ["(: cnet_isa_d5b22d3ec4 (IsA stop act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stop is a kind of stay", "pln": ["(: cnet_isa_b9c5406a75 (IsA stop stay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stop is a kind of ending", "pln": ["(: cnet_isa_644daa67e1 (IsA stop ending) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stop is a kind of topographic point", "pln": ["(: cnet_isa_05a2018d00 (IsA stop topographic_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stop is a kind of knob", "pln": ["(: cnet_isa_95eae4ff0d (IsA stop knob) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stop bath is a kind of developer", "pln": ["(: cnet_isa_cacf893295 (IsA stop_bath developer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stop consonant is a kind of obstruent", "pln": ["(: cnet_isa_e7cb4fbd40 (IsA stop_consonant obstruent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stop order is a kind of order", "pln": ["(: cnet_isa_dedb1ccf10 (IsA stop_order order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stop payment is a kind of order", "pln": ["(: cnet_isa_f331ef07b1 (IsA stop_payment order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stop press is a kind of new", "pln": ["(: cnet_isa_b6dc8309fc (IsA stop_press new) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stopcock is a kind of faucet", "pln": ["(: cnet_isa_62f77195d6 (IsA stopcock faucet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stoplight is a kind of visual signal", "pln": ["(: cnet_isa_8b97e76b5b (IsA stoplight visual_signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stopover is a kind of stop", "pln": ["(: cnet_isa_a6837d94b6 (IsA stopover stop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stopper is a kind of playing card", "pln": ["(: cnet_isa_97e87028fd (IsA stopper playing_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stopper knot is a kind of knot", "pln": ["(: cnet_isa_e37f26cdfa (IsA stopper_knot knot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stopping is a kind of playing", "pln": ["(: cnet_isa_9eee9dcf47 (IsA stopping playing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stopping point is a kind of end", "pln": ["(: cnet_isa_fbd0c669bf (IsA stopping_point end) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stopwatch is a kind of timer", "pln": ["(: cnet_isa_1f412c19d1 (IsA stopwatch timer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "storage is a kind of commercial enterprise", "pln": ["(: cnet_isa_377ca016a0 (IsA storage commercial_enterprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "storage is a kind of retention", "pln": ["(: cnet_isa_776f67942c (IsA storage retention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "storage is a kind of computer operation", "pln": ["(: cnet_isa_6abf9c5068 (IsA storage computer_operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "storage battery is a kind of voltaic battery", "pln": ["(: cnet_isa_edef8af637 (IsA storage_battery voltaic_battery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "storage battery grid is a kind of plate", "pln": ["(: cnet_isa_83a040c035 (IsA storage_battery_grid plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "storage cell is a kind of cell", "pln": ["(: cnet_isa_b58e1ef8b5 (IsA storage_cell cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "storage medium is a kind of medium", "pln": ["(: cnet_isa_626dce7da7 (IsA storage_medium medium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "storage pan is a kind of container", "pln": ["(: cnet_isa_2fc6dd82d9 (IsA storage_pan container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "storage ring is a kind of container", "pln": ["(: cnet_isa_2d00f31722 (IsA storage_ring container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "storage space is a kind of area", "pln": ["(: cnet_isa_c5a3f75e9a (IsA storage_space area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "storax is a kind of natural resin", "pln": ["(: cnet_isa_fe39b9ff6c (IsA storax natural_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "store is a kind of accumulation", "pln": ["(: cnet_isa_0bc490d7ec (IsA store accumulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "store cheese is a kind of cheddar", "pln": ["(: cnet_isa_13ca58f72c (IsA store_cheese cheddar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "store detective is a kind of private detective", "pln": ["(: cnet_isa_99e0ee55ab (IsA store_detective private_detective) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stored program is a kind of program", "pln": ["(: cnet_isa_8d465e9dd1 (IsA stored_program program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "storehouse is a kind of depository", "pln": ["(: cnet_isa_d671ef4b40 (IsA storehouse depository) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "storeria is a kind of reptile genus", "pln": ["(: cnet_isa_feacc6e38b (IsA storeria reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "storeroom is a kind of room", "pln": ["(: cnet_isa_6dbaa4ec66 (IsA storeroom room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "store is a kind of building", "pln": ["(: cnet_isa_b9390fe0b4 (IsA store building) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stork is a kind of wading bird", "pln": ["(: cnet_isa_f10eb5eb00 (IsA stork wading_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "storksbill is a kind of geranium", "pln": ["(: cnet_isa_2fad7c5974 (IsA storksbill geranium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "storm is a kind of violent weather", "pln": ["(: cnet_isa_df0765755c (IsA storm violent_weather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "storm is a kind of assault", "pln": ["(: cnet_isa_c49a83e226 (IsA storm assault) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "storm is a kind of atmospheric phenomenon", "pln": ["(: cnet_isa_32cdf122c9 (IsA storm atmospheric_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "storm is a kind of disturbance", "pln": ["(: cnet_isa_d35f4a242d (IsA storm disturbance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "storm cellar is a kind of shelter", "pln": ["(: cnet_isa_dc1db7a011 (IsA storm_cellar shelter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "storm center is a kind of center", "pln": ["(: cnet_isa_dd21655b5b (IsA storm_center center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "storm center is a kind of disturbance", "pln": ["(: cnet_isa_61e26860a9 (IsA storm_center disturbance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "storm cloud is a kind of cloud", "pln": ["(: cnet_isa_8f64a4fae5 (IsA storm_cloud cloud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "storm cone is a kind of storm signal", "pln": ["(: cnet_isa_61071f7b2e (IsA storm_cone storm_signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "storm door is a kind of door", "pln": ["(: cnet_isa_ccfd768ae1 (IsA storm_door door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "storm petrel is a kind of petrel", "pln": ["(: cnet_isa_a1e30b4efb (IsA storm_petrel petrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "storm signal is a kind of signal", "pln": ["(: cnet_isa_7d8d335fcd (IsA storm_signal signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "storm trooper is a kind of german nazi", "pln": ["(: cnet_isa_b687cc2b43 (IsA storm_trooper german_nazi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "storm window is a kind of window", "pln": ["(: cnet_isa_1f83783ae9 (IsA storm_window window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "storminess is a kind of passion", "pln": ["(: cnet_isa_e2dc3dd205 (IsA storminess passion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "storminess is a kind of bad weather", "pln": ["(: cnet_isa_c4ed5e2dd3 (IsA storminess bad_weather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stormy petrel is a kind of storm petrel", "pln": ["(: cnet_isa_0ba5d137ac (IsA stormy_petrel storm_petrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "story is a kind of fiction", "pln": ["(: cnet_isa_54675ab380 (IsA story fiction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "storybook is a kind of book", "pln": ["(: cnet_isa_de65bde129 (IsA storybook book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "storyline is a kind of plot", "pln": ["(: cnet_isa_89bb630f88 (IsA storyline plot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "storyteller is a kind of liar", "pln": ["(: cnet_isa_0f71b07369 (IsA storyteller liar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stotinka is a kind of bulgarian monetary unit", "pln": ["(: cnet_isa_dd46681255 (IsA stotinka bulgarian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stoup is a kind of basin", "pln": ["(: cnet_isa_6741b43140 (IsA stoup basin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stoup is a kind of drinking vessel", "pln": ["(: cnet_isa_fcaf4335f6 (IsA stoup drinking_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stout is a kind of size", "pln": ["(: cnet_isa_58f69679a6 (IsA stout size) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stout is a kind of ale", "pln": ["(: cnet_isa_0d02bd59e8 (IsA stout ale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stoutheartedness is a kind of courage", "pln": ["(: cnet_isa_ec1a4eaa2f (IsA stoutheartedness courage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stoutness is a kind of strength", "pln": ["(: cnet_isa_9288d1f86b (IsA stoutness strength) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stove is a kind of heater", "pln": ["(: cnet_isa_60ba920731 (IsA stove heater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stove is a kind of kitchen appliance", "pln": ["(: cnet_isa_32415006ab (IsA stove kitchen_appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stove bolt is a kind of bolt", "pln": ["(: cnet_isa_f9724dde93 (IsA stove_bolt bolt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stovepipe is a kind of chimney", "pln": ["(: cnet_isa_6d6ef31edf (IsA stovepipe chimney) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stovepipe iron is a kind of plate iron", "pln": ["(: cnet_isa_131c633e4d (IsA stovepipe_iron plate_iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stovepiping is a kind of retrieval", "pln": ["(: cnet_isa_01d98fe050 (IsA stovepiping retrieval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stover is a kind of fodder", "pln": ["(: cnet_isa_366a89b6bb (IsA stover fodder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stowage is a kind of storage", "pln": ["(: cnet_isa_be6357bae6 (IsA stowage storage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stowage is a kind of charge", "pln": ["(: cnet_isa_29c6b69667 (IsA stowage charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stowaway is a kind of passenger", "pln": ["(: cnet_isa_cd925482ca (IsA stowaway passenger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stp is a kind of standard atmosphere", "pln": ["(: cnet_isa_94a98237d2 (IsA stp standard_atmosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stp is a kind of standard temperature", "pln": ["(: cnet_isa_d004923d8d (IsA stp standard_temperature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strabismus is a kind of abnormality", "pln": ["(: cnet_isa_16850488c6 (IsA strabismus abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strabotomy is a kind of operation", "pln": ["(: cnet_isa_c43dff8ec0 (IsA strabotomy operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stradavarius is a kind of violin", "pln": ["(: cnet_isa_7c8aafe47c (IsA stradavarius violin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "straddle is a kind of gymnastic exercise", "pln": ["(: cnet_isa_0326e8d967 (IsA straddle gymnastic_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straddle is a kind of motion", "pln": ["(: cnet_isa_4054c7bec6 (IsA straddle motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straddle is a kind of option", "pln": ["(: cnet_isa_e8d9b5186a (IsA straddle option) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straddle is a kind of position", "pln": ["(: cnet_isa_d84fd09a53 (IsA straddle position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strafe is a kind of attack", "pln": ["(: cnet_isa_5ce1c808e3 (IsA strafe attack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strafer is a kind of combat pilot", "pln": ["(: cnet_isa_39d51df40c (IsA strafer combat_pilot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straggle is a kind of group", "pln": ["(: cnet_isa_aa11789f25 (IsA straggle group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straggler is a kind of dawdler", "pln": ["(: cnet_isa_d5ca0779a5 (IsA straggler dawdler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straight is a kind of poker hand", "pln": ["(: cnet_isa_844df2f879 (IsA straight poker_hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "straight and narrow is a kind of way", "pln": ["(: cnet_isa_688d17af74 (IsA straight_and_narrow way) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straight angle is a kind of angular unit", "pln": ["(: cnet_isa_bf9e607ff1 (IsA straight_angle angular_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straight arm is a kind of maneuver", "pln": ["(: cnet_isa_2fad8fae12 (IsA straight_arm maneuver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "straight chain is a kind of open chain", "pln": ["(: cnet_isa_3311650c62 (IsA straight_chain open_chain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straight chair is a kind of chair", "pln": ["(: cnet_isa_2d7238cf48 (IsA straight_chair chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straight face is a kind of facial expression", "pln": ["(: cnet_isa_e366e26491 (IsA straight_face facial_expression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straight flush is a kind of pretty good hand", "pln": ["(: cnet_isa_085215b663 (IsA straight_flush pretty_good_hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straight flush is a kind of poker hand", "pln": ["(: cnet_isa_25117e75dc (IsA straight_flush poker_hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straight flute is a kind of bore bit", "pln": ["(: cnet_isa_14a6baec0e (IsA straight_flute bore_bit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straight hang is a kind of hang", "pln": ["(: cnet_isa_5e6b0b3c74 (IsA straight_hang hang) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straight line is a kind of line", "pln": ["(: cnet_isa_e7de1f94ef (IsA straight_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straight line method is a kind of depreciation", "pln": ["(: cnet_isa_d57f29c3dd (IsA straight_line_method depreciation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straight man is a kind of performer", "pln": ["(: cnet_isa_8013eeefde (IsA straight_man performer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straight pin is a kind of pin", "pln": ["(: cnet_isa_1374853845 (IsA straight_pin pin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straight poker is a kind of poker", "pln": ["(: cnet_isa_fb34116fbe (IsA straight_poker poker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straight razor is a kind of razor", "pln": ["(: cnet_isa_04c5087e39 (IsA straight_razor razor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straight sinus is a kind of venous sinus", "pln": ["(: cnet_isa_24316abc41 (IsA straight_sinus venous_sinus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straight thrust is a kind of stab", "pln": ["(: cnet_isa_ed2bf31356 (IsA straight_thrust stab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straight ticket is a kind of vote", "pln": ["(: cnet_isa_a7aab683ab (IsA straight_ticket vote) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straightaway is a kind of section", "pln": ["(: cnet_isa_10c124c401 (IsA straightaway section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straightedge is a kind of hand tool", "pln": ["(: cnet_isa_e45efb6c7f (IsA straightedge hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straightener is a kind of device", "pln": ["(: cnet_isa_54f1d165ad (IsA straightener device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straightness is a kind of curvature", "pln": ["(: cnet_isa_fc4d678608 (IsA straightness curvature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straightness is a kind of shape", "pln": ["(: cnet_isa_5c283babac (IsA straightness shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strain is a kind of effort", "pln": ["(: cnet_isa_c84b7a052a (IsA strain effort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strain is a kind of deformation", "pln": ["(: cnet_isa_089cf82f97 (IsA strain deformation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strain is a kind of nervousness", "pln": ["(: cnet_isa_10677cdfd0 (IsA strain nervousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strain is a kind of injury", "pln": ["(: cnet_isa_edbe2533a3 (IsA strain injury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strain gauge is a kind of gauge", "pln": ["(: cnet_isa_2ba84ccbb0 (IsA strain_gauge gauge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strainer is a kind of filter", "pln": ["(: cnet_isa_bf20a99fd5 (IsA strainer filter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strait is a kind of channel", "pln": ["(: cnet_isa_ce57fed851 (IsA strait channel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straitjacket is a kind of garment", "pln": ["(: cnet_isa_f3adbff5d0 (IsA straitjacket garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straitjacket is a kind of hindrance", "pln": ["(: cnet_isa_a6020a1024 (IsA straitjacket hindrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strand is a kind of line", "pln": ["(: cnet_isa_85256cc1c6 (IsA strand line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strand is a kind of form", "pln": ["(: cnet_isa_52a3212f8f (IsA strand form) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strand is a kind of shore", "pln": ["(: cnet_isa_e2415dfeea (IsA strand shore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strange attractor is a kind of attractor", "pln": ["(: cnet_isa_4610e9b273 (IsA strange_attractor attractor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strange particle is a kind of elementary particle", "pln": ["(: cnet_isa_b5588492e0 (IsA strange_particle elementary_particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strange quark is a kind of quark", "pln": ["(: cnet_isa_d65c356d48 (IsA strange_quark quark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strangeness is a kind of flavor", "pln": ["(: cnet_isa_d7b2f56709 (IsA strangeness flavor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stranger is a kind of intruder", "pln": ["(: cnet_isa_30ca73a01b (IsA stranger intruder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stranger is a kind of person", "pln": ["(: cnet_isa_9ac573ef2e (IsA stranger person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stranglehold is a kind of wrestling hold", "pln": ["(: cnet_isa_56a6655100 (IsA stranglehold wrestling_hold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stranglehold is a kind of power", "pln": ["(: cnet_isa_b98d0284b6 (IsA stranglehold power) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strangler is a kind of air plant", "pln": ["(: cnet_isa_ac27f0876f (IsA strangler air_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strangulation is a kind of constriction", "pln": ["(: cnet_isa_89d4437155 (IsA strangulation constriction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strangulation is a kind of disorder", "pln": ["(: cnet_isa_5cc149eba1 (IsA strangulation disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "strap is a kind of band", "pln": ["(: cnet_isa_3aaa65854d (IsA strap band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strap is a kind of hanger", "pln": ["(: cnet_isa_3229d29647 (IsA strap hanger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strap is a kind of leather strip", "pln": ["(: cnet_isa_8c3e4fc2b7 (IsA strap leather_strip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strap is a kind of whip", "pln": ["(: cnet_isa_28e77d89ba (IsA strap whip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strap fern is a kind of fern", "pln": ["(: cnet_isa_4a34f018e8 (IsA strap_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strap hinge is a kind of hinge", "pln": ["(: cnet_isa_a3d9bed6c3 (IsA strap_hinge hinge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straphanger is a kind of commuter", "pln": ["(: cnet_isa_582dba598a (IsA straphanger commuter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straphanger is a kind of passenger", "pln": ["(: cnet_isa_c2c818f0cf (IsA straphanger passenger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "strapless is a kind of dress", "pln": ["(: cnet_isa_12e91c0ae6 (IsA strapless dress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strappado is a kind of torture", "pln": ["(: cnet_isa_9005517b59 (IsA strappado torture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strategic buyout is a kind of buyout", "pln": ["(: cnet_isa_71c8daaff8 (IsA strategic_buyout buyout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strategic intelligence is a kind of intelligence", "pln": ["(: cnet_isa_20f876800a (IsA strategic_intelligence intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "strategic warning is a kind of warning", "pln": ["(: cnet_isa_529b5a1ade (IsA strategic_warning warning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strategic is a kind of science", "pln": ["(: cnet_isa_d122c62e10 (IsA strategic science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strategist is a kind of planner", "pln": ["(: cnet_isa_7f6327ee6a (IsA strategist planner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "strategy is a kind of military science", "pln": ["(: cnet_isa_5343cbb362 (IsA strategy military_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stratification is a kind of categorization", "pln": ["(: cnet_isa_d3af880ac0 (IsA stratification categorization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stratification is a kind of placement", "pln": ["(: cnet_isa_77e61501e1 (IsA stratification placement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stratification is a kind of shape", "pln": ["(: cnet_isa_3bc7a4fe66 (IsA stratification shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stratification is a kind of geological process", "pln": ["(: cnet_isa_d8a84e3942 (IsA stratification geological_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stratification is a kind of condition", "pln": ["(: cnet_isa_02e2449bf5 (IsA stratification condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stratified language is a kind of programming language", "pln": ["(: cnet_isa_f7d4cbef0c (IsA stratified_language programming_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stratified sample is a kind of sample distribution", "pln": ["(: cnet_isa_ec32b26dcc (IsA stratified_sample sample_distribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stratified sampling is a kind of sampling", "pln": ["(: cnet_isa_f1eeaf7c06 (IsA stratified_sampling sampling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stratigraphy is a kind of geology", "pln": ["(: cnet_isa_00d09f37f1 (IsA stratigraphy geology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stratosphere is a kind of layer", "pln": ["(: cnet_isa_84bc73e8d9 (IsA stratosphere layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stratum is a kind of subpopulation", "pln": ["(: cnet_isa_744b7abe00 (IsA stratum subpopulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stratum is a kind of layer", "pln": ["(: cnet_isa_7fe988eb84 (IsA stratum layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stratum corneum is a kind of stratum", "pln": ["(: cnet_isa_c42b29a12c (IsA stratum_corneum stratum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stratum germinativum is a kind of stratum", "pln": ["(: cnet_isa_21604926df (IsA stratum_germinativum stratum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stratum granulosum is a kind of stratum", "pln": ["(: cnet_isa_93071346ff (IsA stratum_granulosum stratum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stratum lucidum is a kind of stratum", "pln": ["(: cnet_isa_e11590685b (IsA stratum_lucidum stratum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stratus is a kind of cloud", "pln": ["(: cnet_isa_9d7f0b3d9f (IsA stratus cloud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stravinsky is a kind of music", "pln": ["(: cnet_isa_e9f8ad40a4 (IsA stravinsky music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straw is a kind of tube", "pln": ["(: cnet_isa_a8a5e3b877 (IsA straw tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straw is a kind of plant fiber", "pln": ["(: cnet_isa_0fc5071380 (IsA straw plant_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straw boss is a kind of foreman", "pln": ["(: cnet_isa_a7d437831e (IsA straw_boss foreman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straw man is a kind of specious argument", "pln": ["(: cnet_isa_e4064571b7 (IsA straw_man specious_argument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straw mushroom is a kind of agaric", "pln": ["(: cnet_isa_93699b86c3 (IsA straw_mushroom agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straw vote is a kind of poll", "pln": ["(: cnet_isa_0473999e57 (IsA straw_vote poll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "straw wine is a kind of dessert wine", "pln": ["(: cnet_isa_e871172eb0 (IsA straw_wine dessert_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strawberry is a kind of birthmark", "pln": ["(: cnet_isa_470093c656 (IsA strawberry birthmark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strawberry is a kind of berry", "pln": ["(: cnet_isa_dbfc4de252 (IsA strawberry berry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strawberry is a kind of herb", "pln": ["(: cnet_isa_c7079361e6 (IsA strawberry herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strawberry blite is a kind of goosefoot", "pln": ["(: cnet_isa_951151c716 (IsA strawberry_blite goosefoot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strawberry bush is a kind of shrub", "pln": ["(: cnet_isa_4bab2c1641 (IsA strawberry_bush shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "strawberry daiquiri is a kind of daiquiri", "pln": ["(: cnet_isa_3e3df91fc7 (IsA strawberry_daiquiri daiquiri) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strawberry geranium is a kind of saxifrage", "pln": ["(: cnet_isa_19228f88fe (IsA strawberry_geranium saxifrage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strawberry hemangioma is a kind of hemangioma", "pln": ["(: cnet_isa_46a61c34b3 (IsA strawberry_hemangioma hemangioma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strawberry ice cream is a kind of ice cream", "pln": ["(: cnet_isa_2b01dc5a88 (IsA strawberry_ice_cream ice_cream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strawberry jam is a kind of jam", "pln": ["(: cnet_isa_b0cc0d61af (IsA strawberry_jam jam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strawberry tomato is a kind of ground cherry", "pln": ["(: cnet_isa_d289b409e1 (IsA strawberry_tomato ground_cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strawberry tree is a kind of arbutus", "pln": ["(: cnet_isa_57e34caae1 (IsA strawberry_tree arbutus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strawboard is a kind of cardboard", "pln": ["(: cnet_isa_2ccd3354a1 (IsA strawboard cardboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strawflower is a kind of bellwort", "pln": ["(: cnet_isa_0e464722fa (IsA strawflower bellwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "strawflower is a kind of everlasting", "pln": ["(: cnet_isa_567f7a3487 (IsA strawflower everlasting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strawworm is a kind of larva", "pln": ["(: cnet_isa_65202252f5 (IsA strawworm larva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stray is a kind of domestic animal", "pln": ["(: cnet_isa_6808da838a (IsA stray domestic_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "streak is a kind of characteristic", "pln": ["(: cnet_isa_4590a0f571 (IsA streak characteristic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "streak is a kind of flash", "pln": ["(: cnet_isa_97d39fed90 (IsA streak flash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "streak is a kind of succession", "pln": ["(: cnet_isa_22086a6731 (IsA streak succession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "streaker is a kind of exhibitionist", "pln": ["(: cnet_isa_499e0936d4 (IsA streaker exhibitionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "streaker is a kind of nude", "pln": ["(: cnet_isa_e476bd8160 (IsA streaker nude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stream is a kind of small body of flowing water", "pln": ["(: cnet_isa_e7682cd5a8 (IsA stream small_body_of_flowing_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stream is a kind of course", "pln": ["(: cnet_isa_af9998fa59 (IsA stream course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stream is a kind of body of water", "pln": ["(: cnet_isa_5a0c5204c3 (IsA stream body_of_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stream is a kind of motion", "pln": ["(: cnet_isa_0a8df7a586 (IsA stream motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stream of consciousness is a kind of consciousness", "pln": ["(: cnet_isa_c504cd7d52 (IsA stream_of_consciousness consciousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stream of consciousness is a kind of prose", "pln": ["(: cnet_isa_d6dd593697 (IsA stream_of_consciousness prose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stream orchid is a kind of helleborine", "pln": ["(: cnet_isa_7157f49045 (IsA stream_orchid helleborine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "streambed is a kind of bed", "pln": ["(: cnet_isa_22987dc5ac (IsA streambed bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "streamer is a kind of headline", "pln": ["(: cnet_isa_148cdd3e29 (IsA streamer headline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "streamer is a kind of light", "pln": ["(: cnet_isa_3ada0ce55d (IsA streamer light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "streamer fly is a kind of fly", "pln": ["(: cnet_isa_f2278a1ac2 (IsA streamer_fly fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "streamline flow is a kind of flow", "pln": ["(: cnet_isa_fcf8f9fc60 (IsA streamline_flow flow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "streamliner is a kind of train", "pln": ["(: cnet_isa_cf589bc7f2 (IsA streamliner train) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "street is a kind of thoroughfare", "pln": ["(: cnet_isa_12ffcc7cf8 (IsA street thoroughfare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "street is a kind of neighborhood", "pln": ["(: cnet_isa_2d56ed82dc (IsA street neighborhood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "street is a kind of environment", "pln": ["(: cnet_isa_16c1941968 (IsA street environment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "street is a kind of opportunity", "pln": ["(: cnet_isa_b184f77e29 (IsA street opportunity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "street address is a kind of address", "pln": ["(: cnet_isa_4a928b64df (IsA street_address address) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "street arab is a kind of street urchin", "pln": ["(: cnet_isa_fbde3edca0 (IsA street_arab street_urchin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "street cleaner is a kind of cleaner", "pln": ["(: cnet_isa_8ab01db2fd (IsA street_cleaner cleaner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "street clothe is a kind of clothing", "pln": ["(: cnet_isa_531ed15648 (IsA street_clothe clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "street credibility is a kind of credibility", "pln": ["(: cnet_isa_40d1084642 (IsA street_credibility credibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "street crime is a kind of escalating problem in toronto", "pln": ["(: cnet_isa_8ecdcf6815 (IsA street_crime escalating_problem_in_toronto) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "street fighter is a kind of combatant", "pln": ["(: cnet_isa_f491db48e2 (IsA street_fighter combatant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "street fighter is a kind of rival", "pln": ["(: cnet_isa_15c5136182 (IsA street_fighter rival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "street name is a kind of appellation", "pln": ["(: cnet_isa_17d24a6b5f (IsA street_name appellation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "street name is a kind of cant", "pln": ["(: cnet_isa_99e45cc0f2 (IsA street_name cant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "street name is a kind of name", "pln": ["(: cnet_isa_b6a920a5e0 (IsA street_name name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "street sign is a kind of sign", "pln": ["(: cnet_isa_8cb4181ca5 (IsA street_sign sign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "street smart is a kind of shrewdness", "pln": ["(: cnet_isa_61e0a20ee7 (IsA street_smart shrewdness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "street urchin is a kind of urchin", "pln": ["(: cnet_isa_be3ad664c9 (IsA street_urchin urchin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "streetcar is a kind of self propelled vehicle", "pln": ["(: cnet_isa_5156f4a265 (IsA streetcar self_propelled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "streetlight is a kind of lamp", "pln": ["(: cnet_isa_fcf43e1152 (IsA streetlight lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "streetwalker is a kind of prostitute", "pln": ["(: cnet_isa_2a88f65db6 (IsA streetwalker prostitute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strekelia is a kind of liliid monocot genus", "pln": ["(: cnet_isa_7b4b7e2ea7 (IsA strekelia liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strelitzia is a kind of monocot genus", "pln": ["(: cnet_isa_3d0b388a73 (IsA strelitzia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strelitziaceae is a kind of monocot family", "pln": ["(: cnet_isa_6234764cb5 (IsA strelitziaceae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strength is a kind of property", "pln": ["(: cnet_isa_9e9da1244f (IsA strength property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strength is a kind of prosperity", "pln": ["(: cnet_isa_dc1302b7c0 (IsA strength prosperity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strengthener is a kind of device", "pln": ["(: cnet_isa_8ebe456404 (IsA strengthener device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "strengthening is a kind of increase", "pln": ["(: cnet_isa_03f16b752b (IsA strengthening increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strengthening is a kind of transformation", "pln": ["(: cnet_isa_c37cf0d81f (IsA strengthening transformation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strepera is a kind of bird genus", "pln": ["(: cnet_isa_d1bba3744d (IsA strepera bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "strepsirhini is a kind of animal order", "pln": ["(: cnet_isa_e713c79fab (IsA strepsirhini animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "streptobacillus is a kind of rod", "pln": ["(: cnet_isa_b09986d2bc (IsA streptobacillus rod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "streptocarpus is a kind of flower", "pln": ["(: cnet_isa_4b861caff0 (IsA streptocarpus flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "streptococcal sore throat is a kind of infection", "pln": ["(: cnet_isa_7d01fda733 (IsA streptococcal_sore_throat infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "streptococcal sore throat is a kind of sore throat", "pln": ["(: cnet_isa_ec5cae6eff (IsA streptococcal_sore_throat sore_throat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "streptococcus is a kind of eubacteria", "pln": ["(: cnet_isa_359f7e7259 (IsA streptococcus eubacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "streptococcus anhemolyticus is a kind of bacteria specy", "pln": ["(: cnet_isa_9e1c9c0480 (IsA streptococcus_anhemolyticus bacteria_specy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "streptodornase is a kind of enzyme", "pln": ["(: cnet_isa_0be4d9b540 (IsA streptodornase enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "streptokinase is a kind of enzyme", "pln": ["(: cnet_isa_d6885caaf8 (IsA streptokinase enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "streptolysin is a kind of hemolysin", "pln": ["(: cnet_isa_dc051a479b (IsA streptolysin hemolysin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "streptomyce is a kind of actinomycete", "pln": ["(: cnet_isa_7abfae3fe1 (IsA streptomyce actinomycete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "streptomyce erythreus is a kind of streptomyce", "pln": ["(: cnet_isa_29f59d4c8e (IsA streptomyce_erythreus streptomyce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "streptomyce griseus is a kind of streptomyce", "pln": ["(: cnet_isa_d72464ba3a (IsA streptomyce_griseus streptomyce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "streptomycetaceae is a kind of bacteria family", "pln": ["(: cnet_isa_2c53cebabb (IsA streptomycetaceae bacteria_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "streptomycin is a kind of antibiotic", "pln": ["(: cnet_isa_6aba61ff46 (IsA streptomycin antibiotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "streptopelia is a kind of bird genus", "pln": ["(: cnet_isa_4c515fcdbf (IsA streptopelia bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "streptopelia turtur is a kind of turtledove", "pln": ["(: cnet_isa_a871c31d93 (IsA streptopelia_turtur turtledove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "streptosolen is a kind of asterid dicot genus", "pln": ["(: cnet_isa_3d0b0827df (IsA streptosolen asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "streptothricin is a kind of antibiotic", "pln": ["(: cnet_isa_99155a857e (IsA streptothricin antibiotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stress is a kind of prosody", "pln": ["(: cnet_isa_dc56823979 (IsA stress prosody) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stress is a kind of force", "pln": ["(: cnet_isa_15b8618a66 (IsA stress force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stress is a kind of difficulty", "pln": ["(: cnet_isa_4fd80dff4b (IsA stress difficulty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stress is a kind of emphasis", "pln": ["(: cnet_isa_dabbb57cc4 (IsA stress emphasis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stress incontinence is a kind of enuresis", "pln": ["(: cnet_isa_9c01e6a3df (IsA stress_incontinence enuresis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stress mark is a kind of accent", "pln": ["(: cnet_isa_e47615e444 (IsA stress_mark accent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stress test is a kind of assay", "pln": ["(: cnet_isa_ab071eb5f6 (IsA stress_test assay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stressor is a kind of agent", "pln": ["(: cnet_isa_eaff2b5cf1 (IsA stressor agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stretch is a kind of exercise", "pln": ["(: cnet_isa_460221e1be (IsA stretch exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stretch is a kind of extension", "pln": ["(: cnet_isa_0d50b07780 (IsA stretch extension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stretch is a kind of elasticity", "pln": ["(: cnet_isa_b7c49eec36 (IsA stretch elasticity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stretch is a kind of expanse", "pln": ["(: cnet_isa_bbc49ef842 (IsA stretch expanse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stretch is a kind of straightaway", "pln": ["(: cnet_isa_1d054188a4 (IsA stretch straightaway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stretch is a kind of duration", "pln": ["(: cnet_isa_242ac9f184 (IsA stretch duration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stretch mark is a kind of band", "pln": ["(: cnet_isa_5a2ecbd26f (IsA stretch_mark band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stretch pant is a kind of pair of trouser", "pln": ["(: cnet_isa_8fd7c78f06 (IsA stretch_pant pair_of_trouser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stretch receptor is a kind of sense organ", "pln": ["(: cnet_isa_4e595b0064 (IsA stretch_receptor sense_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stretch reflex is a kind of reflex", "pln": ["(: cnet_isa_7d1419796d (IsA stretch_reflex reflex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stretcher is a kind of framework", "pln": ["(: cnet_isa_3fba9dc32e (IsA stretcher framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stretcher is a kind of litter", "pln": ["(: cnet_isa_a43fcd8de8 (IsA stretcher litter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stretcher is a kind of mechanical device", "pln": ["(: cnet_isa_36ce464664 (IsA stretcher mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stretcher bearer is a kind of attendant", "pln": ["(: cnet_isa_aa87d7098b (IsA stretcher_bearer attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stretcher party is a kind of party", "pln": ["(: cnet_isa_83e712c180 (IsA stretcher_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stretching is a kind of expansion", "pln": ["(: cnet_isa_66bc4fde2e (IsA stretching expansion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "streusel is a kind of pastry", "pln": ["(: cnet_isa_fc37e7a638 (IsA streusel pastry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "streusel is a kind of topping", "pln": ["(: cnet_isa_89ac3e2767 (IsA streusel topping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stria is a kind of groove", "pln": ["(: cnet_isa_7155a723d7 (IsA stria groove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "striated muscle cell is a kind of muscle cell", "pln": ["(: cnet_isa_85726b97f9 (IsA striated_muscle_cell muscle_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "striated muscle tissue is a kind of muscle", "pln": ["(: cnet_isa_c186cc7607 (IsA striated_muscle_tissue muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "strickle is a kind of implement", "pln": ["(: cnet_isa_42293db0b7 (IsA strickle implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strickle is a kind of sharpener", "pln": ["(: cnet_isa_053cdd59d4 (IsA strickle sharpener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strickle is a kind of tool", "pln": ["(: cnet_isa_ca7f161834 (IsA strickle tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strictness is a kind of conscientiousness", "pln": ["(: cnet_isa_3ad0fdc0ff (IsA strictness conscientiousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stricture is a kind of criticism", "pln": ["(: cnet_isa_f4739df1ea (IsA stricture criticism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stride is a kind of advancement", "pln": ["(: cnet_isa_fb0df604a2 (IsA stride advancement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strider is a kind of pedestrian", "pln": ["(: cnet_isa_318adad594 (IsA strider pedestrian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stridor is a kind of symptom", "pln": ["(: cnet_isa_dde2375a23 (IsA stridor symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stridulation is a kind of noise", "pln": ["(: cnet_isa_7a4c0b49c8 (IsA stridulation noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strife is a kind of conflict", "pln": ["(: cnet_isa_72f5117086 (IsA strife conflict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strigidae is a kind of bird family", "pln": ["(: cnet_isa_36922b5a38 (IsA strigidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strigiforme is a kind of animal order", "pln": ["(: cnet_isa_5bfc064842 (IsA strigiforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strike is a kind of attack", "pln": ["(: cnet_isa_ef1330e57d (IsA strike attack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strike is a kind of job action", "pln": ["(: cnet_isa_e85a29253d (IsA strike job_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strike is a kind of pitch", "pln": ["(: cnet_isa_771cc58f81 (IsA strike pitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strike is a kind of score", "pln": ["(: cnet_isa_559a7f05be (IsA strike score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strike leader is a kind of leader", "pln": ["(: cnet_isa_b2e8c2c6d6 (IsA strike_leader leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strike pay is a kind of wage", "pln": ["(: cnet_isa_83a1575a12 (IsA strike_pay wage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strike slip fault is a kind of fault", "pln": ["(: cnet_isa_b939f7965e (IsA strike_slip_fault fault) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strike zone is a kind of zone", "pln": ["(: cnet_isa_fb2b275b9c (IsA strike_zone zone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strikebreaking is a kind of confrontation", "pln": ["(: cnet_isa_26b82d2001 (IsA strikebreaking confrontation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strikeout is a kind of out", "pln": ["(: cnet_isa_587e8f46ee (IsA strikeout out) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "striker is a kind of mechanical device", "pln": ["(: cnet_isa_8d3c2c30f2 (IsA striker mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "striker is a kind of bluejacket", "pln": ["(: cnet_isa_5eb3729304 (IsA striker bluejacket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "striker is a kind of athlete", "pln": ["(: cnet_isa_a82da8486f (IsA striker athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "striker is a kind of nonworker", "pln": ["(: cnet_isa_fa8fa61a18 (IsA striker nonworker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "string is a kind of collection", "pln": ["(: cnet_isa_7f639c12a7 (IsA string collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "string is a kind of cord", "pln": ["(: cnet_isa_669e0a2996 (IsA string cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "string is a kind of sequence", "pln": ["(: cnet_isa_58b249ee7b (IsA string sequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "string is a kind of sery", "pln": ["(: cnet_isa_178d5e7ae8 (IsA string sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "string is a kind of fiber", "pln": ["(: cnet_isa_d18910368b (IsA string fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "string bass is a kind of musical instrument", "pln": ["(: cnet_isa_a3b2df68f9 (IsA string_bass musical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "string bean is a kind of green bean", "pln": ["(: cnet_isa_2c5db8c37e (IsA string_bean green_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "string cheese is a kind of cheese", "pln": ["(: cnet_isa_9244ebfe63 (IsA string_cheese cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "string of word is a kind of language", "pln": ["(: cnet_isa_4566b6d727 (IsA string_of_word language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "string of word is a kind of string", "pln": ["(: cnet_isa_f05ceef6b6 (IsA string_of_word string) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "string orchestra is a kind of orchestra", "pln": ["(: cnet_isa_2871eacdfa (IsA string_orchestra orchestra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "string quartet is a kind of quartet", "pln": ["(: cnet_isa_822ee5e0b3 (IsA string_quartet quartet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "string section is a kind of section", "pln": ["(: cnet_isa_fc62d9ab87 (IsA string_section section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "string theory is a kind of model", "pln": ["(: cnet_isa_20914300fb (IsA string_theory model) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "string tie is a kind of necktie", "pln": ["(: cnet_isa_62f136e1d4 (IsA string_tie necktie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stringed instrument is a kind of musical instrument", "pln": ["(: cnet_isa_83eb5cac03 (IsA stringed_instrument musical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stringency is a kind of lack", "pln": ["(: cnet_isa_e0916c3a9c (IsA stringency lack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stringer is a kind of brace", "pln": ["(: cnet_isa_a4a60bede1 (IsA stringer brace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stringer is a kind of timber", "pln": ["(: cnet_isa_3819cd22b1 (IsA stringer timber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stringer is a kind of player", "pln": ["(: cnet_isa_e3ff4d6fe4 (IsA stringer player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stringer is a kind of worker", "pln": ["(: cnet_isa_d6cacf8838 (IsA stringer worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stringybark is a kind of eucalyptus", "pln": ["(: cnet_isa_5c3265ddb5 (IsA stringybark eucalyptus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stringybark pine is a kind of cypress pine", "pln": ["(: cnet_isa_e0fcc78186 (IsA stringybark_pine cypress_pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strip is a kind of nude dancing", "pln": ["(: cnet_isa_1399e994c5 (IsA strip nude_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strip is a kind of artifact", "pln": ["(: cnet_isa_2c3047b444 (IsA strip artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strip is a kind of lumber", "pln": ["(: cnet_isa_23cbb0762e (IsA strip lumber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strip is a kind of part", "pln": ["(: cnet_isa_76cd3b5cb3 (IsA strip part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strip alert is a kind of alert", "pln": ["(: cnet_isa_8e98ed753b (IsA strip_alert alert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "strip cropping is a kind of farming", "pln": ["(: cnet_isa_7a1eb287c2 (IsA strip_cropping farming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strip lighting is a kind of light", "pln": ["(: cnet_isa_981d2ceaaa (IsA strip_lighting light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strip mall is a kind of mercantile establishment", "pln": ["(: cnet_isa_033d70609b (IsA strip_mall mercantile_establishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strip mine is a kind of mine", "pln": ["(: cnet_isa_af81ee6710 (IsA strip_mine mine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strip miner is a kind of miner", "pln": ["(: cnet_isa_04537cbc40 (IsA strip_miner miner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strip mining is a kind of mining", "pln": ["(: cnet_isa_fed7937567 (IsA strip_mining mining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strip poker is a kind of poker", "pln": ["(: cnet_isa_710fcc42d6 (IsA strip_poker poker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strip search is a kind of frisk", "pln": ["(: cnet_isa_32f0f30894 (IsA strip_search frisk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strip steak is a kind of beefsteak", "pln": ["(: cnet_isa_968278d32e (IsA strip_steak beefsteak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stripe is a kind of marking", "pln": ["(: cnet_isa_bc908e7e54 (IsA stripe marking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stripe is a kind of kind", "pln": ["(: cnet_isa_fd947312b4 (IsA stripe kind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stripe is a kind of badge", "pln": ["(: cnet_isa_23b1dda0dc (IsA stripe badge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stripe blight is a kind of blight", "pln": ["(: cnet_isa_b8655bb6b4 (IsA stripe_blight blight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "striped bass is a kind of sea bass", "pln": ["(: cnet_isa_a56490903c (IsA striped_bass sea_bass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "striped button quail is a kind of button quail", "pln": ["(: cnet_isa_53a334c68a (IsA striped_button_quail button_quail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "striped coral root is a kind of coral root", "pln": ["(: cnet_isa_74c5a71810 (IsA striped_coral_root coral_root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "striped drum is a kind of drum", "pln": ["(: cnet_isa_75e936d540 (IsA striped_drum drum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "striped gentian is a kind of gentian", "pln": ["(: cnet_isa_86befae880 (IsA striped_gentian gentian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "striped hyena is a kind of hyena", "pln": ["(: cnet_isa_9d9665235a (IsA striped_hyena hyena) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "striped killifish is a kind of killifish", "pln": ["(: cnet_isa_41ad52e04c (IsA striped_killifish killifish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "striped marlin is a kind of marlin", "pln": ["(: cnet_isa_bf65afc803 (IsA striped_marlin marlin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "striped muishond is a kind of muishond", "pln": ["(: cnet_isa_a4bb520073 (IsA striped_muishond muishond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "striped mullet is a kind of mullet", "pln": ["(: cnet_isa_9247de21a1 (IsA striped_mullet mullet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "striped skunk is a kind of skunk", "pln": ["(: cnet_isa_3782f72f74 (IsA striped_skunk skunk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "striper is a kind of serviceman", "pln": ["(: cnet_isa_063d04709e (IsA striper serviceman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "striping is a kind of marking", "pln": ["(: cnet_isa_9634c75787 (IsA striping marking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stripper is a kind of performer", "pln": ["(: cnet_isa_3e8bf12c95 (IsA stripper performer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stripper is a kind of worker", "pln": ["(: cnet_isa_5f4c4d749c (IsA stripper worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stripper is a kind of compound", "pln": ["(: cnet_isa_8fa9928ffa (IsA stripper compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stripper well is a kind of oil well", "pln": ["(: cnet_isa_9a8366e9ef (IsA stripper_well oil_well) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "striving is a kind of attempt", "pln": ["(: cnet_isa_4ab15a76cf (IsA striving attempt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strix is a kind of bird genus", "pln": ["(: cnet_isa_0fab8fa1b4 (IsA strix bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strobilomyce is a kind of fungus genus", "pln": ["(: cnet_isa_4a6306334d (IsA strobilomyce fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stroboscope is a kind of scientific instrument", "pln": ["(: cnet_isa_06465bb71d (IsA stroboscope scientific_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stroke is a kind of locomotion", "pln": ["(: cnet_isa_05f05bfe73 (IsA stroke locomotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stroke is a kind of motion", "pln": ["(: cnet_isa_2ba44425ba (IsA stroke motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stroke is a kind of touch", "pln": ["(: cnet_isa_ce21910646 (IsA stroke touch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stroke is a kind of mark", "pln": ["(: cnet_isa_9ed87710ad (IsA stroke mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stroke is a kind of score", "pln": ["(: cnet_isa_e4c3558885 (IsA stroke score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stroke is a kind of oarsman", "pln": ["(: cnet_isa_2c546a00d8 (IsA stroke oarsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stroke is a kind of maneuver", "pln": ["(: cnet_isa_b635324ea8 (IsA stroke maneuver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stroke is a kind of attack", "pln": ["(: cnet_isa_2179cc93e8 (IsA stroke attack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stroma is a kind of animal tissue", "pln": ["(: cnet_isa_e5b2aba747 (IsA stroma animal_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stroma is a kind of plant tissue", "pln": ["(: cnet_isa_eef183cef6 (IsA stroma plant_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stromateidae is a kind of fish family", "pln": ["(: cnet_isa_e1fafe2147 (IsA stromateidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strombidae is a kind of mollusk family", "pln": ["(: cnet_isa_3b781a52a0 (IsA strombidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strombus is a kind of mollusk genus", "pln": ["(: cnet_isa_2ec810379c (IsA strombus mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strong breeze is a kind of breeze", "pln": ["(: cnet_isa_72731ad598 (IsA strong_breeze breeze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strong gale is a kind of gale", "pln": ["(: cnet_isa_b3c8c88db1 (IsA strong_gale gale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strong interaction is a kind of interaction", "pln": ["(: cnet_isa_ea17369161 (IsA strong_interaction interaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strong suit is a kind of long suit", "pln": ["(: cnet_isa_ab540fe697 (IsA strong_suit long_suit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strongbox is a kind of box", "pln": ["(: cnet_isa_a91e6fc618 (IsA strongbox box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stronghold is a kind of defensive structure", "pln": ["(: cnet_isa_53bc4e72bf (IsA stronghold defensive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strongman is a kind of dictator", "pln": ["(: cnet_isa_b435b07b1b (IsA strongman dictator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strongman is a kind of performer", "pln": ["(: cnet_isa_423e555513 (IsA strongman performer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strongroom is a kind of storeroom", "pln": ["(: cnet_isa_71b2871e9e (IsA strongroom storeroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strongylodon is a kind of rosid dicot genus", "pln": ["(: cnet_isa_f465452e28 (IsA strongylodon rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strontianite is a kind of mineral", "pln": ["(: cnet_isa_a5ee1c9aa5 (IsA strontianite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strontium is a kind of metallic element", "pln": ["(: cnet_isa_570347b01d (IsA strontium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strontium 90 is a kind of strontium", "pln": ["(: cnet_isa_9c82bab585 (IsA strontium_90 strontium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strop is a kind of sharpener", "pln": ["(: cnet_isa_ee50f11958 (IsA strop sharpener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strop is a kind of strap", "pln": ["(: cnet_isa_006170457e (IsA strop strap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "strophanthin is a kind of glycoside", "pln": ["(: cnet_isa_c375ea12ed (IsA strophanthin glycoside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strophanthus is a kind of shrub", "pln": ["(: cnet_isa_ee77aaeb5d (IsA strophanthus shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strophanthus kombe is a kind of strophanthus", "pln": ["(: cnet_isa_c2436d0ec1 (IsA strophanthus_kombe strophanthus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stropharia is a kind of fungus genus", "pln": ["(: cnet_isa_969361dd9e (IsA stropharia fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stropharia ambigua is a kind of agaric", "pln": ["(: cnet_isa_78063a3589 (IsA stropharia_ambigua agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stropharia hornemannii is a kind of agaric", "pln": ["(: cnet_isa_9f2d7f1da3 (IsA stropharia_hornemannii agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stropharia rugoso annulata is a kind of agaric", "pln": ["(: cnet_isa_549995e25a (IsA stropharia_rugoso_annulata agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strophariaceae is a kind of fungus family", "pln": ["(: cnet_isa_d54eff1e27 (IsA strophariaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strophe is a kind of stanza", "pln": ["(: cnet_isa_8bb38e5900 (IsA strophe stanza) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "struct tm is a kind of computer code variable", "pln": ["(: cnet_isa_cda36057d1 (IsA struct_tm computer_code_variable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "structural formula is a kind of molecular formula", "pln": ["(: cnet_isa_f6f4c6218c (IsA structural_formula molecular_formula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "structural gene is a kind of gene", "pln": ["(: cnet_isa_3257241687 (IsA structural_gene gene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "structural genomic is a kind of genomic", "pln": ["(: cnet_isa_c4c0f663ff (IsA structural_genomic genomic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "structural iron is a kind of iron", "pln": ["(: cnet_isa_c9a21beaed (IsA structural_iron iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "structural member is a kind of support", "pln": ["(: cnet_isa_6b1839c09b (IsA structural_member support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "structural steel is a kind of steel", "pln": ["(: cnet_isa_027216491d (IsA structural_steel steel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "structuralism is a kind of linguistic", "pln": ["(: cnet_isa_0462b164ef (IsA structuralism linguistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "structuralism is a kind of theory", "pln": ["(: cnet_isa_c86719a6d8 (IsA structuralism theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "structure is a kind of artifact", "pln": ["(: cnet_isa_56d9983a09 (IsA structure artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "structure is a kind of constitution", "pln": ["(: cnet_isa_34ba5c6a83 (IsA structure constitution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "structure is a kind of body part", "pln": ["(: cnet_isa_b9598a9eb4 (IsA structure body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "structure is a kind of cognition", "pln": ["(: cnet_isa_e9fc43db15 (IsA structure cognition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strudel is a kind of pastry", "pln": ["(: cnet_isa_136657d324 (IsA strudel pastry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "struggle is a kind of attempt", "pln": ["(: cnet_isa_23a249b7ab (IsA struggle attempt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "struggle is a kind of effort", "pln": ["(: cnet_isa_c9ed1a71d1 (IsA struggle effort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "struggler is a kind of person", "pln": ["(: cnet_isa_e592edabbe (IsA struggler person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strum is a kind of sound", "pln": ["(: cnet_isa_7c1df4d03e (IsA strum sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strut is a kind of gait", "pln": ["(: cnet_isa_39abe1a28d (IsA strut gait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strut is a kind of brace", "pln": ["(: cnet_isa_c185d47e79 (IsA strut brace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "struthio is a kind of bird genus", "pln": ["(: cnet_isa_1202f50c20 (IsA struthio bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "struthiomimus is a kind of ornithomimid", "pln": ["(: cnet_isa_d0569d3b2b (IsA struthiomimus ornithomimid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "struthionidae is a kind of bird family", "pln": ["(: cnet_isa_85e32e63e3 (IsA struthionidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "struthioniforme is a kind of animal order", "pln": ["(: cnet_isa_9046e3603f (IsA struthioniforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strychnine is a kind of alkaloid", "pln": ["(: cnet_isa_bb36a596bb (IsA strychnine alkaloid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strychnine is a kind of plant toxin", "pln": ["(: cnet_isa_84239fe1f6 (IsA strychnine plant_toxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strymon is a kind of arthropod genus", "pln": ["(: cnet_isa_e772011879 (IsA strymon arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "strymon melinus is a kind of hairstreak", "pln": ["(: cnet_isa_505a77866d (IsA strymon_melinus hairstreak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stuart is a kind of dynasty", "pln": ["(: cnet_isa_cd9e02263c (IsA stuart dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stuart is a kind of royalty", "pln": ["(: cnet_isa_a72ecbf4d6 (IsA stuart royalty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stuart is a kind of ruler", "pln": ["(: cnet_isa_9c92f5beaa (IsA stuart ruler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stub is a kind of receipt", "pln": ["(: cnet_isa_b7a90d911f (IsA stub receipt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stub is a kind of record", "pln": ["(: cnet_isa_5aa4a4317c (IsA stub record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stub is a kind of plant part", "pln": ["(: cnet_isa_40c43dedab (IsA stub plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stub nail is a kind of nail", "pln": ["(: cnet_isa_2941d513ac (IsA stub_nail nail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stubble is a kind of beard", "pln": ["(: cnet_isa_dc2f5791c6 (IsA stubble beard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stubbornness is a kind of intractability", "pln": ["(: cnet_isa_030e3f6e27 (IsA stubbornness intractability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stubbornness is a kind of resoluteness", "pln": ["(: cnet_isa_1531a40c30 (IsA stubbornness resoluteness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stucco is a kind of plaster", "pln": ["(: cnet_isa_39e4bdcf59 (IsA stucco plaster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stud is a kind of poker", "pln": ["(: cnet_isa_7923aeae9b (IsA stud poker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stud is a kind of stallion", "pln": ["(: cnet_isa_80172d4317 (IsA stud stallion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stud is a kind of decoration", "pln": ["(: cnet_isa_0f93de0318 (IsA stud decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stud is a kind of man", "pln": ["(: cnet_isa_059ecd602f (IsA stud man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stud farm is a kind of farm", "pln": ["(: cnet_isa_a5b59c2a86 (IsA stud_farm farm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stud finder is a kind of permanent magnet", "pln": ["(: cnet_isa_3dd2a9ebdc (IsA stud_finder permanent_magnet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "studbook is a kind of register", "pln": ["(: cnet_isa_cddfc91503 (IsA studbook register) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "student is a kind of enrollee", "pln": ["(: cnet_isa_694a988fb5 (IsA student enrollee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "student center is a kind of center", "pln": ["(: cnet_isa_fa296c71b7 (IsA student_center center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "student lamp is a kind of reading lamp", "pln": ["(: cnet_isa_f695846242 (IsA student_lamp reading_lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "student teacher is a kind of college student", "pln": ["(: cnet_isa_8c5ec45567 (IsA student_teacher college_student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "student union is a kind of building", "pln": ["(: cnet_isa_74f48696a7 (IsA student_union building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "studentship is a kind of position", "pln": ["(: cnet_isa_6fd03a6ee6 (IsA studentship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "studio is a kind of workplace", "pln": ["(: cnet_isa_2f6e3fa905 (IsA studio workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "studio apartment is a kind of apartment", "pln": ["(: cnet_isa_5f602a6177 (IsA studio_apartment apartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "studio couch is a kind of convertible", "pln": ["(: cnet_isa_ba57bfdcb4 (IsA studio_couch convertible) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "studiousness is a kind of diligence", "pln": ["(: cnet_isa_e371b320dd (IsA studiousness diligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "study is a kind of room in person s house", "pln": ["(: cnet_isa_7b7984121d (IsA study room_in_person_s_house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "study is a kind of room", "pln": ["(: cnet_isa_65108778dd (IsA study room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "study is a kind of concentration", "pln": ["(: cnet_isa_dc7f04e662 (IsA study concentration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "study is a kind of learning", "pln": ["(: cnet_isa_911676dd02 (IsA study learning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "study is a kind of musical composition", "pln": ["(: cnet_isa_9411f99ed6 (IsA study musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "study is a kind of memorizer", "pln": ["(: cnet_isa_8f0faad078 (IsA study memorizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "study hall is a kind of classroom", "pln": ["(: cnet_isa_97e33d9666 (IsA study_hall classroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "study hall is a kind of time period", "pln": ["(: cnet_isa_ecf0dc3d50 (IsA study_hall time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stuff is a kind of quality", "pln": ["(: cnet_isa_fd01f5c93c (IsA stuff quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stuff is a kind of kernel", "pln": ["(: cnet_isa_7c694b4f62 (IsA stuff kernel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stuff is a kind of information", "pln": ["(: cnet_isa_a615558f4c (IsA stuff information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stuff is a kind of nonsense", "pln": ["(: cnet_isa_9f87e9ffa6 (IsA stuff nonsense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stuff is a kind of personal property", "pln": ["(: cnet_isa_c1c90156aa (IsA stuff personal_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stuffed animal is a kind of collectible", "pln": ["(: cnet_isa_e87905def9 (IsA stuffed_animal collectible) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stuffed cabbage is a kind of dish", "pln": ["(: cnet_isa_a7d65efdf0 (IsA stuffed_cabbage dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stuffed mushroom is a kind of hor d oeuvre", "pln": ["(: cnet_isa_69c23f4c9e (IsA stuffed_mushroom hor_d_oeuvre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stuffed pepper is a kind of dish", "pln": ["(: cnet_isa_25a87e6abe (IsA stuffed_pepper dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stuffed tomato is a kind of dish", "pln": ["(: cnet_isa_382609aa7c (IsA stuffed_tomato dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stuffer is a kind of circular", "pln": ["(: cnet_isa_79ae3c982c (IsA stuffer circular) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stuffiness is a kind of quality", "pln": ["(: cnet_isa_487926a0cc (IsA stuffiness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stuffiness is a kind of congestion", "pln": ["(: cnet_isa_b89e5c49dc (IsA stuffiness congestion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stuffing is a kind of padding", "pln": ["(: cnet_isa_790dc66c72 (IsA stuffing padding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stuffing is a kind of concoction", "pln": ["(: cnet_isa_c64c3f66d4 (IsA stuffing concoction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stuffing box is a kind of chamber", "pln": ["(: cnet_isa_dc166617d3 (IsA stuffing_box chamber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stuffing nut is a kind of nut", "pln": ["(: cnet_isa_48c136f39f (IsA stuffing_nut nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stultification is a kind of degradation", "pln": ["(: cnet_isa_fbcf6f1638 (IsA stultification degradation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stultification is a kind of derision", "pln": ["(: cnet_isa_d169a18424 (IsA stultification derision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stumblebum is a kind of boxer", "pln": ["(: cnet_isa_d95855bef7 (IsA stumblebum boxer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stumbler is a kind of pedestrian", "pln": ["(: cnet_isa_b79e144e36 (IsA stumbler pedestrian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stumbling block is a kind of obstacle", "pln": ["(: cnet_isa_9544117f34 (IsA stumbling_block obstacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stump is a kind of body part", "pln": ["(: cnet_isa_bfd9bb6f18 (IsA stump body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stump is a kind of post", "pln": ["(: cnet_isa_9a4b3b1f1a (IsA stump post) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stump is a kind of plant part", "pln": ["(: cnet_isa_c7755a6023 (IsA stump plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stump speech is a kind of oratory", "pln": ["(: cnet_isa_8b1ed6094b (IsA stump_speech oratory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stumping is a kind of campaigning", "pln": ["(: cnet_isa_0d12e02ae0 (IsA stumping campaigning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stun gun is a kind of weapon", "pln": ["(: cnet_isa_74bdc549e1 (IsA stun_gun weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stunner is a kind of surprise", "pln": ["(: cnet_isa_e9ab4a5176 (IsA stunner surprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stunt is a kind of deed", "pln": ["(: cnet_isa_6b82f4dad9 (IsA stunt deed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stunt is a kind of animal", "pln": ["(: cnet_isa_2589cf1f7d (IsA stunt animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stupa is a kind of shrine", "pln": ["(: cnet_isa_3124b0f85d (IsA stupa shrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stupefaction is a kind of action", "pln": ["(: cnet_isa_55d7efe513 (IsA stupefaction action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stupefaction is a kind of astonishment", "pln": ["(: cnet_isa_ea71a0d102 (IsA stupefaction astonishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stupid is a kind of simpleton", "pln": ["(: cnet_isa_dfb9064644 (IsA stupid simpleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stupidity is a kind of mistake", "pln": ["(: cnet_isa_74a07f01ae (IsA stupidity mistake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stupidity is a kind of inability", "pln": ["(: cnet_isa_7c1e6cb944 (IsA stupidity inability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sturdiness is a kind of resoluteness", "pln": ["(: cnet_isa_13b6974d6c (IsA sturdiness resoluteness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sturdiness is a kind of strength", "pln": ["(: cnet_isa_60434a8926 (IsA sturdiness strength) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sturdiness is a kind of good health", "pln": ["(: cnet_isa_048519d618 (IsA sturdiness good_health) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sturgeon is a kind of ganoid", "pln": ["(: cnet_isa_85c1ace328 (IsA sturgeon ganoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sturnella is a kind of bird genus", "pln": ["(: cnet_isa_76624cc3f3 (IsA sturnella bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sturnidae is a kind of bird family", "pln": ["(: cnet_isa_db2af9761b (IsA sturnidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sturnus is a kind of bird genus", "pln": ["(: cnet_isa_7271d6e3c0 (IsA sturnus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sty is a kind of pen", "pln": ["(: cnet_isa_9c6ba53dff (IsA sty pen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sty is a kind of infection", "pln": ["(: cnet_isa_6bf2e978fd (IsA sty infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "style is a kind of process", "pln": ["(: cnet_isa_fa8d1c9cba (IsA style process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "style is a kind of reproductive structure", "pln": ["(: cnet_isa_089e8c7465 (IsA style reproductive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "style is a kind of kind", "pln": ["(: cnet_isa_14e616bd82 (IsA style kind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "style is a kind of direction", "pln": ["(: cnet_isa_972d018657 (IsA style direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "style sheet is a kind of sheet", "pln": ["(: cnet_isa_aede677829 (IsA style_sheet sheet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stylet is a kind of style", "pln": ["(: cnet_isa_c74f336711 (IsA stylet style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stylist is a kind of artist", "pln": ["(: cnet_isa_5cdad8adb3 (IsA stylist artist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stylite is a kind of abstainer", "pln": ["(: cnet_isa_5b891cf3ae (IsA stylite abstainer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stylization is a kind of standardization", "pln": ["(: cnet_isa_c48ac22e48 (IsA stylization standardization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "styloid process is a kind of process", "pln": ["(: cnet_isa_d6ae12712c (IsA styloid_process process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stylomastoid vein is a kind of vein", "pln": ["(: cnet_isa_4e57bac810 (IsA stylomastoid_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stylomecon is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_7544ad7e28 (IsA stylomecon dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "stylophorum is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_16fdfe0942 (IsA stylophorum dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stylopodium is a kind of style", "pln": ["(: cnet_isa_64436962cb (IsA stylopodium style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stylus is a kind of device", "pln": ["(: cnet_isa_d24981baf5 (IsA stylus device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stylus is a kind of tool", "pln": ["(: cnet_isa_0e50e10896 (IsA stylus tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stymie is a kind of obstacle", "pln": ["(: cnet_isa_0c44f79098 (IsA stymie obstacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "stymie is a kind of situation", "pln": ["(: cnet_isa_cd64590208 (IsA stymie situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "styphelia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_355ae3bd2f (IsA styphelia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "styracaceae is a kind of dicot family", "pln": ["(: cnet_isa_aadc2fc9cb (IsA styracaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "styracosaur is a kind of ceratopsian", "pln": ["(: cnet_isa_1870c0feb9 (IsA styracosaur ceratopsian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "styrax is a kind of shrub", "pln": ["(: cnet_isa_f30f75293f (IsA styrax shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "styrene is a kind of vinyl polymer", "pln": ["(: cnet_isa_08ebf408de (IsA styrene vinyl_polymer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suavity is a kind of graciousness", "pln": ["(: cnet_isa_9a3e6e834a (IsA suavity graciousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sub assembly is a kind of assembly", "pln": ["(: cnet_isa_55e0460ea9 (IsA sub_assembly assembly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sub interval is a kind of interval", "pln": ["(: cnet_isa_8841c83efd (IsA sub_interval interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sub test is a kind of test", "pln": ["(: cnet_isa_f38ed50849 (IsA sub_test test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subacute bacterial endocarditis is a kind of endocarditis", "pln": ["(: cnet_isa_089af297a1 (IsA subacute_bacterial_endocarditis endocarditis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subacute sclerosing panencephalitis is a kind of panencephalitis", "pln": ["(: cnet_isa_6dd30eb527 (IsA subacute_sclerosing_panencephalitis panencephalitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subalpine larch is a kind of larch", "pln": ["(: cnet_isa_db9228c214 (IsA subalpine_larch larch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "subaltern is a kind of commissioned military officer", "pln": ["(: cnet_isa_9a7f58ca77 (IsA subaltern commissioned_military_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "subarachnoid space is a kind of space", "pln": ["(: cnet_isa_267b2db28c (IsA subarachnoid_space space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subbase is a kind of molding", "pln": ["(: cnet_isa_f9725c4a09 (IsA subbase molding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subbing is a kind of work", "pln": ["(: cnet_isa_e7b5046b79 (IsA subbing work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subclass is a kind of taxonomic group", "pln": ["(: cnet_isa_89fa3fe65f (IsA subclass taxonomic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "subclavian artery is a kind of artery", "pln": ["(: cnet_isa_1c07ce1911 (IsA subclavian_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subclavian vein is a kind of vein", "pln": ["(: cnet_isa_83f536b804 (IsA subclavian_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subclinical absence is a kind of petit mal epilepsy", "pln": ["(: cnet_isa_6f5c2288d6 (IsA subclinical_absence petit_mal_epilepsy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "subcommittee is a kind of committee", "pln": ["(: cnet_isa_85044b6f88 (IsA subcommittee committee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subcompact is a kind of car", "pln": ["(: cnet_isa_884b605392 (IsA subcompact car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subconscious mind is a kind of mind", "pln": ["(: cnet_isa_ccaa9cf13c (IsA subconscious_mind mind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subconsciousness is a kind of cognitive state", "pln": ["(: cnet_isa_c1950b9cda (IsA subconsciousness cognitive_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subcontinent is a kind of landmass", "pln": ["(: cnet_isa_146b485e4d (IsA subcontinent landmass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subcontract is a kind of contract", "pln": ["(: cnet_isa_60ad3290e0 (IsA subcontract contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subcontractor is a kind of contractor", "pln": ["(: cnet_isa_5b4bca0e61 (IsA subcontractor contractor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subculture is a kind of social group", "pln": ["(: cnet_isa_0a5861df9c (IsA subculture social_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subcutaneous injection is a kind of injection", "pln": ["(: cnet_isa_3e30167e7f (IsA subcutaneous_injection injection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subdata base is a kind of database", "pln": ["(: cnet_isa_cb1cd2348d (IsA subdata_base database) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "subdeacon is a kind of clergyman", "pln": ["(: cnet_isa_d8d38392d2 (IsA subdeacon clergyman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subdeacon is a kind of holy order", "pln": ["(: cnet_isa_f6c2992f81 (IsA subdeacon holy_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "subdirectory is a kind of directory", "pln": ["(: cnet_isa_6a817dad50 (IsA subdirectory directory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subdivider is a kind of divider", "pln": ["(: cnet_isa_289e9bdde7 (IsA subdivider divider) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subdivision is a kind of division", "pln": ["(: cnet_isa_1532ed235b (IsA subdivision division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subdivision is a kind of tract", "pln": ["(: cnet_isa_b6d4741e75 (IsA subdivision tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subdominant is a kind of note", "pln": ["(: cnet_isa_e9b8f72857 (IsA subdominant note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subduction is a kind of geological process", "pln": ["(: cnet_isa_868d3953e8 (IsA subduction geological_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subduer is a kind of restrainer", "pln": ["(: cnet_isa_5aec2a9ae0 (IsA subduer restrainer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subeditor is a kind of editor", "pln": ["(: cnet_isa_d696f774f0 (IsA subeditor editor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suberic acid is a kind of carboxylic acid", "pln": ["(: cnet_isa_5d90bb59c9 (IsA suberic_acid carboxylic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subfamily is a kind of taxonomic group", "pln": ["(: cnet_isa_0b675a4591 (IsA subfamily taxonomic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subfigure is a kind of figure", "pln": ["(: cnet_isa_67aa133e45 (IsA subfigure figure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subgenus is a kind of taxonomic group", "pln": ["(: cnet_isa_d901c7e4ce (IsA subgenus taxonomic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subgenus azalea is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_e373366203 (IsA subgenus_azalea dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subgenus calliopsis is a kind of asterid dicot genus", "pln": ["(: cnet_isa_161309a200 (IsA subgenus_calliopsis asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subgroup is a kind of group", "pln": ["(: cnet_isa_3bd9491b68 (IsA subgroup group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subheading is a kind of heading", "pln": ["(: cnet_isa_89c78ea347 (IsA subheading heading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subject is a kind of thing", "pln": ["(: cnet_isa_37a3174845 (IsA subject thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subject is a kind of message", "pln": ["(: cnet_isa_25c68301dd (IsA subject message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subject is a kind of constituent", "pln": ["(: cnet_isa_78afc1872b (IsA subject constituent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subject is a kind of term", "pln": ["(: cnet_isa_d9e7c14e9c (IsA subject term) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subject is a kind of person", "pln": ["(: cnet_isa_e9a6e2d974 (IsA subject person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subjectivism is a kind of quality", "pln": ["(: cnet_isa_bccc85a0bd (IsA subjectivism quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subjectivism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_789e187db4 (IsA subjectivism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subjectivist is a kind of intellectual", "pln": ["(: cnet_isa_37b7295564 (IsA subjectivist intellectual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subjectivity is a kind of judgment", "pln": ["(: cnet_isa_64aef7c246 (IsA subjectivity judgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subjugation is a kind of relationship", "pln": ["(: cnet_isa_fcdf57eef0 (IsA subjugation relationship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subjugator is a kind of conqueror", "pln": ["(: cnet_isa_62dca46fed (IsA subjugator conqueror) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subjunctive mood is a kind of mood", "pln": ["(: cnet_isa_9ff25b87bc (IsA subjunctive_mood mood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subkingdom is a kind of taxonomic group", "pln": ["(: cnet_isa_7d78d9f6cc (IsA subkingdom taxonomic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sublease is a kind of lease", "pln": ["(: cnet_isa_1b0baa5df2 (IsA sublease lease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sublieutenant is a kind of lieutenant", "pln": ["(: cnet_isa_203b35b93e (IsA sublieutenant lieutenant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sublimate is a kind of gas", "pln": ["(: cnet_isa_3283b8662a (IsA sublimate gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sublimation is a kind of transformation", "pln": ["(: cnet_isa_4154cc7725 (IsA sublimation transformation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sublimation is a kind of change", "pln": ["(: cnet_isa_23f7ae0aa0 (IsA sublimation change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sublimity is a kind of nobility", "pln": ["(: cnet_isa_7cbb8682e7 (IsA sublimity nobility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sublingual gland is a kind of salivary gland", "pln": ["(: cnet_isa_f868d9158b (IsA sublingual_gland salivary_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sublingual vein is a kind of vein", "pln": ["(: cnet_isa_e35470b1ec (IsA sublingual_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subluxation is a kind of luxation", "pln": ["(: cnet_isa_e62135a78c (IsA subluxation luxation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "submachine gun is a kind of machine gun", "pln": ["(: cnet_isa_0da290562c (IsA submachine_gun machine_gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "submarine is a kind of boat", "pln": ["(: cnet_isa_6d6f0915c5 (IsA submarine boat) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "submarine is a kind of ship", "pln": ["(: cnet_isa_4e0007cef9 (IsA submarine ship) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "submarine is a kind of submersible", "pln": ["(: cnet_isa_1d2f25bc62 (IsA submarine submersible) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "submarine ball is a kind of pitch", "pln": ["(: cnet_isa_3380bfef8f (IsA submarine_ball pitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "submarine torpedo is a kind of torpedo", "pln": ["(: cnet_isa_21ab5856f9 (IsA submarine_torpedo torpedo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "submariner is a kind of bluejacket", "pln": ["(: cnet_isa_187c41a688 (IsA submariner bluejacket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "submaxillary gland is a kind of salivary gland", "pln": ["(: cnet_isa_100c5a8c3f (IsA submaxillary_gland salivary_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "submediant is a kind of note", "pln": ["(: cnet_isa_62b22b4aa3 (IsA submediant note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "submergence is a kind of sinking", "pln": ["(: cnet_isa_06e8c1390f (IsA submergence sinking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "submersible is a kind of apparatus", "pln": ["(: cnet_isa_18333e9549 (IsA submersible apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "submersible is a kind of warship", "pln": ["(: cnet_isa_a3ce85cfc5 (IsA submersible warship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "submersion is a kind of wetting", "pln": ["(: cnet_isa_d909ba7400 (IsA submersion wetting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "submission is a kind of agreement", "pln": ["(: cnet_isa_ec261d147d (IsA submission agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "submission is a kind of message", "pln": ["(: cnet_isa_169821a45b (IsA submission message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "submission is a kind of written agreement", "pln": ["(: cnet_isa_e05ce03dec (IsA submission written_agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "submission is a kind of contention", "pln": ["(: cnet_isa_19fdb17169 (IsA submission contention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "submission is a kind of condition", "pln": ["(: cnet_isa_4148aa5823 (IsA submission condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "submissiveness is a kind of obedience", "pln": ["(: cnet_isa_112a499cc6 (IsA submissiveness obedience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "submitter is a kind of applicant", "pln": ["(: cnet_isa_b74078da20 (IsA submitter applicant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "submitter is a kind of follower", "pln": ["(: cnet_isa_5cde58cf1b (IsA submitter follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "submucosa is a kind of connective tissue", "pln": ["(: cnet_isa_cd8140d1c3 (IsA submucosa connective_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subnormal is a kind of simpleton", "pln": ["(: cnet_isa_4552af62e3 (IsA subnormal simpleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subnormality is a kind of abnormality", "pln": ["(: cnet_isa_36e7c5c539 (IsA subnormality abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suborder is a kind of taxonomic group", "pln": ["(: cnet_isa_1c2dde5036 (IsA suborder taxonomic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suborder ceratosaura is a kind of animal order", "pln": ["(: cnet_isa_2b864a21e9 (IsA suborder_ceratosaura animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "suborder pachycephalosaurus is a kind of animal order", "pln": ["(: cnet_isa_778d8eb816 (IsA suborder_pachycephalosaurus animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subordinate is a kind of assistant", "pln": ["(: cnet_isa_1c29f24467 (IsA subordinate assistant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subordinate clause is a kind of clause", "pln": ["(: cnet_isa_28e75b3bc2 (IsA subordinate_clause clause) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subordinateness is a kind of inferiority", "pln": ["(: cnet_isa_11ac75ddf1 (IsA subordinateness inferiority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subordinating conjunction is a kind of conjunction", "pln": ["(: cnet_isa_76c11ca4d9 (IsA subordinating_conjunction conjunction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subordination is a kind of submissiveness", "pln": ["(: cnet_isa_9f82eb4330 (IsA subordination submissiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subordination is a kind of grammatical relation", "pln": ["(: cnet_isa_5a0c9c3280 (IsA subordination grammatical_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subordination is a kind of dependence", "pln": ["(: cnet_isa_dda3fc78df (IsA subordination dependence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subornation is a kind of provocation", "pln": ["(: cnet_isa_e6106e63b6 (IsA subornation provocation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subornation is a kind of testimony", "pln": ["(: cnet_isa_dffdec656f (IsA subornation testimony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subornation of perjury is a kind of subornation", "pln": ["(: cnet_isa_57d05499cd (IsA subornation_of_perjury subornation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subpart is a kind of part", "pln": ["(: cnet_isa_b3db550e44 (IsA subpart part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subphylum is a kind of taxonomic group", "pln": ["(: cnet_isa_acaeb1be9f (IsA subphylum taxonomic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subpoena is a kind of writ", "pln": ["(: cnet_isa_7501c43e34 (IsA subpoena writ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subpoena duce tecum is a kind of writ", "pln": ["(: cnet_isa_f65a51cd92 (IsA subpoena_duce_tecum writ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subpopulation is a kind of population", "pln": ["(: cnet_isa_e9d97a0d01 (IsA subpopulation population) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subrogation is a kind of substitution", "pln": ["(: cnet_isa_2f905a8333 (IsA subrogation substitution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subscriber is a kind of customer", "pln": ["(: cnet_isa_2447bee41b (IsA subscriber customer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subscriber is a kind of donor", "pln": ["(: cnet_isa_eed7669e07 (IsA subscriber donor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "subscriber is a kind of supporter", "pln": ["(: cnet_isa_da82a71459 (IsA subscriber supporter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subscript is a kind of character", "pln": ["(: cnet_isa_d98d9bb45c (IsA subscript character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subscription is a kind of contribution", "pln": ["(: cnet_isa_4f8ed144a4 (IsA subscription contribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subscription is a kind of handwriting", "pln": ["(: cnet_isa_10634ee9a8 (IsA subscription handwriting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subscription is a kind of agreement", "pln": ["(: cnet_isa_5c8767c3b8 (IsA subscription agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subscription is a kind of payment", "pln": ["(: cnet_isa_64a7e4a308 (IsA subscription payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "subscription right is a kind of preemption", "pln": ["(: cnet_isa_3b6f8fcea6 (IsA subscription_right preemption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subscription warrant is a kind of warrant", "pln": ["(: cnet_isa_a825295291 (IsA subscription_warrant warrant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subsection is a kind of section", "pln": ["(: cnet_isa_550ab1c4a6 (IsA subsection section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subservience is a kind of condition", "pln": ["(: cnet_isa_2100ba4efc (IsA subservience condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subservience is a kind of subordinateness", "pln": ["(: cnet_isa_5381b8d6a9 (IsA subservience subordinateness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subset is a kind of set", "pln": ["(: cnet_isa_de0e032756 (IsA subset set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subshrub is a kind of shrub", "pln": ["(: cnet_isa_bf13f7ddb9 (IsA subshrub shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "subsidiary company is a kind of company", "pln": ["(: cnet_isa_a9b8c47227 (IsA subsidiary_company company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subsidiary ledger is a kind of ledger", "pln": ["(: cnet_isa_abe5826a80 (IsA subsidiary_ledger ledger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subsidization is a kind of money", "pln": ["(: cnet_isa_20387144a8 (IsA subsidization money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subsidizer is a kind of donor", "pln": ["(: cnet_isa_7e6e79a1c0 (IsA subsidizer donor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subsidy is a kind of grant", "pln": ["(: cnet_isa_93b020762d (IsA subsidy grant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subsistence is a kind of support", "pln": ["(: cnet_isa_9b5ab05804 (IsA subsistence support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subsistence is a kind of being", "pln": ["(: cnet_isa_c438039c79 (IsA subsistence being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subsistence is a kind of survival", "pln": ["(: cnet_isa_8d7f2f1f99 (IsA subsistence survival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subsistence farming is a kind of farming", "pln": ["(: cnet_isa_6ba06ed944 (IsA subsistence_farming farming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "subsoil is a kind of soil", "pln": ["(: cnet_isa_6110855b97 (IsA subsoil soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subspace is a kind of mathematical space", "pln": ["(: cnet_isa_17208290e5 (IsA subspace mathematical_space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subspecy is a kind of taxonomic group", "pln": ["(: cnet_isa_77c154764d (IsA subspecy taxonomic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "substance is a kind of part", "pln": ["(: cnet_isa_a3d83d5185 (IsA substance part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "substance is a kind of physical entity", "pln": ["(: cnet_isa_f66a9b9ff3 (IsA substance physical_entity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "substance is a kind of substance", "pln": ["(: cnet_isa_42c7396eab (IsA substance substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "substance abuse is a kind of misuse", "pln": ["(: cnet_isa_0d1171f402 (IsA substance_abuse misuse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "substantia nigra is a kind of neural structure", "pln": ["(: cnet_isa_15bdeadd26 (IsA substantia_nigra neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "substantiality is a kind of materiality", "pln": ["(: cnet_isa_293e87013b (IsA substantiality materiality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "substantive is a kind of word", "pln": ["(: cnet_isa_515a449ea0 (IsA substantive word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "substation is a kind of station", "pln": ["(: cnet_isa_17a8694b54 (IsA substation station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "substitute is a kind of equivalent", "pln": ["(: cnet_isa_bfec5a28e8 (IsA substitute equivalent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "substitute is a kind of athlete", "pln": ["(: cnet_isa_6ca987bc47 (IsA substitute athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "substitution is a kind of change", "pln": ["(: cnet_isa_07a4a12a07 (IsA substitution change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "substitution is a kind of variation", "pln": ["(: cnet_isa_a95067e5cc (IsA substitution variation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "substitution class is a kind of class", "pln": ["(: cnet_isa_76b44b599e (IsA substitution_class class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "substrate is a kind of substance", "pln": ["(: cnet_isa_7cc01729ca (IsA substrate substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "substratum is a kind of indigenous language", "pln": ["(: cnet_isa_33f44d86cb (IsA substratum indigenous_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "substratum is a kind of stratum", "pln": ["(: cnet_isa_c2191752d8 (IsA substratum stratum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "substratum is a kind of surface", "pln": ["(: cnet_isa_f39e2dc0b7 (IsA substratum surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "substring is a kind of string", "pln": ["(: cnet_isa_4b0fbdf7ce (IsA substring string) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subsumption is a kind of classification", "pln": ["(: cnet_isa_8357137939 (IsA subsumption classification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "subsystem is a kind of system", "pln": ["(: cnet_isa_4ad1838864 (IsA subsystem system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subterfuge is a kind of misrepresentation", "pln": ["(: cnet_isa_a2553b48bb (IsA subterfuge misrepresentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subthalamic nucleus is a kind of nucleus", "pln": ["(: cnet_isa_4ea9fa37b2 (IsA subthalamic_nucleus nucleus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subthalamus is a kind of neural structure", "pln": ["(: cnet_isa_8131f9eadf (IsA subthalamus neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subtilin is a kind of antibiotic", "pln": ["(: cnet_isa_3df31d1e35 (IsA subtilin antibiotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subtitle is a kind of title", "pln": ["(: cnet_isa_59ec48f567 (IsA subtitle title) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subtitle is a kind of translation", "pln": ["(: cnet_isa_e2b8092b25 (IsA subtitle translation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subtlety is a kind of difficulty", "pln": ["(: cnet_isa_3a370d5210 (IsA subtlety difficulty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subtonic is a kind of note", "pln": ["(: cnet_isa_ba8e0d2e3a (IsA subtonic note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subtopia is a kind of conurbation", "pln": ["(: cnet_isa_c8e805183e (IsA subtopia conurbation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "subtotal is a kind of sum", "pln": ["(: cnet_isa_0f3247932f (IsA subtotal sum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subtracter is a kind of calculator", "pln": ["(: cnet_isa_cba7a17c31 (IsA subtracter calculator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subtraction is a kind of arithmetic operation", "pln": ["(: cnet_isa_ed1649216d (IsA subtraction arithmetic_operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subtraction is a kind of decrease", "pln": ["(: cnet_isa_f08500aa77 (IsA subtraction decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subtrahend is a kind of number", "pln": ["(: cnet_isa_daa3cddb0e (IsA subtrahend number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "subtreasury is a kind of treasury", "pln": ["(: cnet_isa_283b1dd578 (IsA subtreasury treasury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "subtropics is a kind of climatic zone", "pln": ["(: cnet_isa_72692fa04b (IsA subtropics climatic_zone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subtropic is a kind of climatic zone", "pln": ["(: cnet_isa_ba25c1018d (IsA subtropic climatic_zone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subularia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_578784d9f0 (IsA subularia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suburb is a kind of residential district", "pln": ["(: cnet_isa_c0ae75aab2 (IsA suburb residential_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "suburbanite is a kind of resident", "pln": ["(: cnet_isa_01f0b6480e (IsA suburbanite resident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suburbia is a kind of subculture", "pln": ["(: cnet_isa_0bb76286ee (IsA suburbia subculture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "subvention is a kind of provision", "pln": ["(: cnet_isa_969f1b1d53 (IsA subvention provision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "subvention is a kind of subsidy", "pln": ["(: cnet_isa_0d864d01ec (IsA subvention subsidy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subversion is a kind of overthrow", "pln": ["(: cnet_isa_5be5c2d0d9 (IsA subversion overthrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subvocalizer is a kind of articulator", "pln": ["(: cnet_isa_ae6cdd040e (IsA subvocalizer articulator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subway is a kind of form of public transportation", "pln": ["(: cnet_isa_13db8068df (IsA subway form_of_public_transportation) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subway fare is a kind of train fare", "pln": ["(: cnet_isa_8d5d15dff7 (IsA subway_fare train_fare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subway station is a kind of terminal", "pln": ["(: cnet_isa_8e223605f9 (IsA subway_station terminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subway token is a kind of token", "pln": ["(: cnet_isa_a12aa60645 (IsA subway_token token) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subway train is a kind of train", "pln": ["(: cnet_isa_9790cf82b4 (IsA subway_train train) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subway is a kind of form of transportation", "pln": ["(: cnet_isa_6d7a3e2067 (IsA subway form_of_transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subway is a kind of train run underground", "pln": ["(: cnet_isa_01fa0ae740 (IsA subway train_run_underground) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "subwoofer is a kind of loudspeaker", "pln": ["(: cnet_isa_fb49f57ba1 (IsA subwoofer loudspeaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "succedaneum is a kind of substitute", "pln": ["(: cnet_isa_879fbcf702 (IsA succedaneum substitute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "success is a kind of attainment", "pln": ["(: cnet_isa_144bf8d5d4 (IsA success attainment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "success is a kind of happening", "pln": ["(: cnet_isa_654e3bda66 (IsA success happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "success is a kind of prosperity", "pln": ["(: cnet_isa_19ead38e2e (IsA success prosperity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "succession is a kind of acquisition", "pln": ["(: cnet_isa_428b8a2986 (IsA succession acquisition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "succession is a kind of order", "pln": ["(: cnet_isa_7b30ba60e7 (IsA succession order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "succession is a kind of natural process", "pln": ["(: cnet_isa_d2eea63f66 (IsA succession natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "succession is a kind of sery", "pln": ["(: cnet_isa_ad973db888 (IsA succession sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "successor is a kind of substitute", "pln": ["(: cnet_isa_5f5c57bf8c (IsA successor substitute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "successor is a kind of offspring", "pln": ["(: cnet_isa_d0496902fa (IsA successor offspring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "successor is a kind of peer", "pln": ["(: cnet_isa_1e43b4f6b0 (IsA successor peer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "successor of number is a kind of number", "pln": ["(: cnet_isa_a66e28fb1f (IsA successor_of_number number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "succinic acid is a kind of carboxylic acid", "pln": ["(: cnet_isa_041c1c647a (IsA succinic_acid carboxylic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "succos is a kind of religious festival", "pln": ["(: cnet_isa_4bb719a9f3 (IsA succos religious_festival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "succinylcholine is a kind of muscle relaxant", "pln": ["(: cnet_isa_63f3b2b6b5 (IsA succinylcholine muscle_relaxant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "succorer is a kind of rescuer", "pln": ["(: cnet_isa_58ce2c199e (IsA succorer rescuer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "succo is a kind of jewish holy day", "pln": ["(: cnet_isa_8b9eb9ac56 (IsA succo jewish_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "succo is a kind of religious festival", "pln": ["(: cnet_isa_2321fc05ac (IsA succo religious_festival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "succotash is a kind of dish", "pln": ["(: cnet_isa_a814d24ed2 (IsA succotash dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "succubus is a kind of devil", "pln": ["(: cnet_isa_4ab48fce07 (IsA succubus devil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "succulence is a kind of appetizingness", "pln": ["(: cnet_isa_90657ab982 (IsA succulence appetizingness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "succulent is a kind of vascular plant", "pln": ["(: cnet_isa_6f75b18579 (IsA succulent vascular_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "succussion is a kind of auscultation", "pln": ["(: cnet_isa_995cabbb08 (IsA succussion auscultation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sucker is a kind of catostomid", "pln": ["(: cnet_isa_6cba109ad4 (IsA sucker catostomid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sucker is a kind of organ", "pln": ["(: cnet_isa_a5f1d4e2c1 (IsA sucker organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sucker is a kind of freshwater fish", "pln": ["(: cnet_isa_977a140962 (IsA sucker freshwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sucker is a kind of drinker", "pln": ["(: cnet_isa_5614ba6bbb (IsA sucker drinker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sucker is a kind of shoot", "pln": ["(: cnet_isa_110489053e (IsA sucker shoot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sucker punch is a kind of punch", "pln": ["(: cnet_isa_7f91d99da9 (IsA sucker_punch punch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sucking is a kind of consumption", "pln": ["(: cnet_isa_7e6d1d9cf1 (IsA sucking consumption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sucking pig is a kind of piglet", "pln": ["(: cnet_isa_4b61203d75 (IsA sucking_pig piglet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suckling is a kind of feeding", "pln": ["(: cnet_isa_d47f600e7a (IsA suckling feeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suckling is a kind of young mammal", "pln": ["(: cnet_isa_323d8a0180 (IsA suckling young_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suckling reflex is a kind of reflex", "pln": ["(: cnet_isa_5e8e82d8b7 (IsA suckling_reflex reflex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sucre is a kind of ecuadoran monetary unit", "pln": ["(: cnet_isa_e0f4289b59 (IsA sucre ecuadoran_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sucrose is a kind of disaccharide", "pln": ["(: cnet_isa_586296d858 (IsA sucrose disaccharide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sucrose is a kind of plant product", "pln": ["(: cnet_isa_044a0a1a0b (IsA sucrose plant_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "suction is a kind of pressure", "pln": ["(: cnet_isa_c200bb346b (IsA suction pressure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "suction cup is a kind of device", "pln": ["(: cnet_isa_98a4f9bc96 (IsA suction_cup device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suction curettage is a kind of curettage", "pln": ["(: cnet_isa_00e4fd2529 (IsA suction_curettage curettage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suction curettage is a kind of induced abortion", "pln": ["(: cnet_isa_a06f6a3c2c (IsA suction_curettage induced_abortion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suction lipectomy is a kind of lipectomy", "pln": ["(: cnet_isa_cfd3813959 (IsA suction_lipectomy lipectomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suction pump is a kind of pump", "pln": ["(: cnet_isa_0d3553170e (IsA suction_pump pump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "suction stop is a kind of stop consonant", "pln": ["(: cnet_isa_94d5cdb637 (IsA suction_stop stop_consonant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sudanese is a kind of african", "pln": ["(: cnet_isa_4879229878 (IsA sudanese african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sudanese monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_4abce0edaa (IsA sudanese_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sudanese pound is a kind of sudanese monetary unit", "pln": ["(: cnet_isa_2195c81525 (IsA sudanese_pound sudanese_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sudatorium is a kind of bathhouse", "pln": ["(: cnet_isa_63a0c662c5 (IsA sudatorium bathhouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sudden death is a kind of overtime", "pln": ["(: cnet_isa_7ef036d47c (IsA sudden_death overtime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sudden infant death syndrome is a kind of death", "pln": ["(: cnet_isa_d55a534c18 (IsA sudden_infant_death_syndrome death) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sudden infant death syndrome is a kind of sleep apnea", "pln": ["(: cnet_isa_97d5a4d6ea (IsA sudden_infant_death_syndrome sleep_apnea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sudoku is a kind of puzzle", "pln": ["(: cnet_isa_7bfdd02944 (IsA sudoku puzzle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sudorific is a kind of medicine", "pln": ["(: cnet_isa_fd18432dbb (IsA sudorific medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sudra is a kind of varna", "pln": ["(: cnet_isa_7ed7dc9f7f (IsA sudra varna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sudra is a kind of hindustani", "pln": ["(: cnet_isa_a39ce7877b (IsA sudra hindustani) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sud is a kind of beer", "pln": ["(: cnet_isa_be0d2d2e6f (IsA sud beer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suede is a kind of leather", "pln": ["(: cnet_isa_63a81c9ce0 (IsA suede leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suede cloth is a kind of fabric", "pln": ["(: cnet_isa_984586b8b1 (IsA suede_cloth fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suer is a kind of plaintiff", "pln": ["(: cnet_isa_eee85625ae (IsA suer plaintiff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suet is a kind of edible fat", "pln": ["(: cnet_isa_d7b8f72520 (IsA suet edible_fat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suet pudding is a kind of pudding", "pln": ["(: cnet_isa_f3cea93d6b (IsA suet_pudding pudding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sufferance is a kind of endurance", "pln": ["(: cnet_isa_0393321964 (IsA sufferance endurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suffering is a kind of pain", "pln": ["(: cnet_isa_0728c43da0 (IsA suffering pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "suffering is a kind of misery", "pln": ["(: cnet_isa_20ebf63da4 (IsA suffering misery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sufficiency is a kind of quality", "pln": ["(: cnet_isa_1791f766cb (IsA sufficiency quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sufficiency is a kind of wealth", "pln": ["(: cnet_isa_273ee28fa1 (IsA sufficiency wealth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suffix is a kind of affix", "pln": ["(: cnet_isa_bf8342e88b (IsA suffix affix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suffix is a kind of ending", "pln": ["(: cnet_isa_188427d94a (IsA suffix ending) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suffixation is a kind of affixation", "pln": ["(: cnet_isa_9ab580dbb9 (IsA suffixation affixation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suffocation is a kind of killing", "pln": ["(: cnet_isa_1b10704ccd (IsA suffocation killing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suffocation is a kind of hypoxia", "pln": ["(: cnet_isa_212a4aa427 (IsA suffocation hypoxia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suffragan is a kind of bishop", "pln": ["(: cnet_isa_b770697020 (IsA suffragan bishop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suffragette is a kind of feminist", "pln": ["(: cnet_isa_e84176e60c (IsA suffragette feminist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suffragette is a kind of suffragist", "pln": ["(: cnet_isa_0fc51fa18c (IsA suffragette suffragist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suffragism is a kind of belief", "pln": ["(: cnet_isa_749dca95bf (IsA suffragism belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "suffragist is a kind of advocate", "pln": ["(: cnet_isa_8de1b93ed1 (IsA suffragist advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sufi is a kind of moslem", "pln": ["(: cnet_isa_b673f4bfe0 (IsA sufi moslem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sufism is a kind of mysticism", "pln": ["(: cnet_isa_39a377ba85 (IsA sufism mysticism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sugar is a kind of carbohydrate", "pln": ["(: cnet_isa_b2687fa760 (IsA sugar carbohydrate) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sugar is a kind of culinary ingredient", "pln": ["(: cnet_isa_845751b22e (IsA sugar culinary_ingredient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sugar is a kind of main ingredient in candy", "pln": ["(: cnet_isa_f629bf605d (IsA sugar main_ingredient_in_candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sugar is a kind of sweet food", "pln": ["(: cnet_isa_f3df5afd82 (IsA sugar sweet_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sugar is a kind of sweetening", "pln": ["(: cnet_isa_e1d50d1dee (IsA sugar sweetening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sugar beet is a kind of beet", "pln": ["(: cnet_isa_ae60f934fc (IsA sugar_beet beet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sugar bowl is a kind of dish", "pln": ["(: cnet_isa_6933adb0a7 (IsA sugar_bowl dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sugar bush is a kind of sumac", "pln": ["(: cnet_isa_341373b18b (IsA sugar_bush sumac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sugar candy is a kind of candy", "pln": ["(: cnet_isa_f0a675d2af (IsA sugar_candy candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sugar cookie is a kind of cookie", "pln": ["(: cnet_isa_a036234259 (IsA sugar_cookie cookie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sugar daddy is a kind of sweetheart", "pln": ["(: cnet_isa_fc0413a9ef (IsA sugar_daddy sweetheart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sugar maple is a kind of maple", "pln": ["(: cnet_isa_d79e179e12 (IsA sugar_maple maple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sugar palm is a kind of sago palm", "pln": ["(: cnet_isa_76f4788921 (IsA sugar_palm sago_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sugar refinery is a kind of refinery", "pln": ["(: cnet_isa_5eefe2cfec (IsA sugar_refinery refinery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sugar snap pea is a kind of green pea", "pln": ["(: cnet_isa_32e6927e2d (IsA sugar_snap_pea green_pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sugar snap pea is a kind of edible pod pea", "pln": ["(: cnet_isa_dcddafdf55 (IsA sugar_snap_pea edible_pod_pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sugar spoon is a kind of spoon", "pln": ["(: cnet_isa_13d3dac027 (IsA sugar_spoon spoon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sugar syrup is a kind of syrup", "pln": ["(: cnet_isa_ae42a7685c (IsA sugar_syrup syrup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sugar water is a kind of drinking water", "pln": ["(: cnet_isa_645a47463e (IsA sugar_water drinking_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sugarberry is a kind of berry", "pln": ["(: cnet_isa_26b2858361 (IsA sugarberry berry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sugarberry is a kind of hackberry", "pln": ["(: cnet_isa_c9cc5664fa (IsA sugarberry hackberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sugarcane is a kind of cane", "pln": ["(: cnet_isa_6758af3603 (IsA sugarcane cane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sugarcane is a kind of gramineous plant", "pln": ["(: cnet_isa_e6880f32f4 (IsA sugarcane gramineous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sugariness is a kind of sweetness", "pln": ["(: cnet_isa_f9068508c6 (IsA sugariness sweetness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sugarloaf is a kind of loaf", "pln": ["(: cnet_isa_a04f90e33c (IsA sugarloaf loaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sugarloaf is a kind of sugar", "pln": ["(: cnet_isa_7c7252c1ad (IsA sugarloaf sugar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sugarplum is a kind of candy", "pln": ["(: cnet_isa_e8121aa7a6 (IsA sugarplum candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suggester is a kind of originator", "pln": ["(: cnet_isa_54be264494 (IsA suggester originator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "suggestibility is a kind of susceptibility", "pln": ["(: cnet_isa_707d8838a0 (IsA suggestibility susceptibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suggestion is a kind of higher cognitive process", "pln": ["(: cnet_isa_d5c356e584 (IsA suggestion higher_cognitive_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suggestion is a kind of idea", "pln": ["(: cnet_isa_8b594355b1 (IsA suggestion idea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suggestion is a kind of persuasion", "pln": ["(: cnet_isa_1aeb70178a (IsA suggestion persuasion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "suggestion is a kind of proposal", "pln": ["(: cnet_isa_7939ed430b (IsA suggestion proposal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suicide is a kind of killing", "pln": ["(: cnet_isa_29e9fb0a1f (IsA suicide killing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suicide is a kind of killer", "pln": ["(: cnet_isa_9b0b53d28e (IsA suicide killer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suicide bomber is a kind of terrorist", "pln": ["(: cnet_isa_cb7b9d9820 (IsA suicide_bomber terrorist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suicide bombing is a kind of bombing", "pln": ["(: cnet_isa_0d5c554801 (IsA suicide_bombing bombing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suicide mission is a kind of mission", "pln": ["(: cnet_isa_08642b7b78 (IsA suicide_mission mission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suicide pact is a kind of agreement", "pln": ["(: cnet_isa_434575e92f (IsA suicide_pact agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suicide pill is a kind of poison pill", "pln": ["(: cnet_isa_5b8a6341d7 (IsA suicide_pill poison_pill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suicide squeeze play is a kind of squeeze play", "pln": ["(: cnet_isa_e317a5968d (IsA suicide_squeeze_play squeeze_play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suidae is a kind of mammal family", "pln": ["(: cnet_isa_4335f99a8a (IsA suidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suillus is a kind of fungus genus", "pln": ["(: cnet_isa_250fb86f45 (IsA suillus fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suillus albivelatus is a kind of bolete", "pln": ["(: cnet_isa_9c5c599747 (IsA suillus_albivelatus bolete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "suit is a kind of garment", "pln": ["(: cnet_isa_7c428afa31 (IsA suit garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suit is a kind of playing card", "pln": ["(: cnet_isa_ad7a81e816 (IsA suit playing_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suit is a kind of entreaty", "pln": ["(: cnet_isa_c07b1c9c00 (IsA suit entreaty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suit is a kind of businessman", "pln": ["(: cnet_isa_218d25fa1f (IsA suit businessman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suitability is a kind of quality", "pln": ["(: cnet_isa_8bfa1642ce (IsA suitability quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suite is a kind of apartment", "pln": ["(: cnet_isa_834fb2cbed (IsA suite apartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suite is a kind of set", "pln": ["(: cnet_isa_9eac920c51 (IsA suite set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "suite is a kind of musical composition", "pln": ["(: cnet_isa_39b8b7433b (IsA suite musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suiting is a kind of fabric", "pln": ["(: cnet_isa_8948eba7be (IsA suiting fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suitor is a kind of admirer", "pln": ["(: cnet_isa_83de3ad6ad (IsA suitor admirer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sukiyaki is a kind of dish", "pln": ["(: cnet_isa_8d34d086f3 (IsA sukiyaki dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suksdorfia is a kind of herb", "pln": ["(: cnet_isa_a020af9c23 (IsA suksdorfia herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sukur is a kind of biu mandara", "pln": ["(: cnet_isa_d4661b9f8e (IsA sukur biu_mandara) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sula is a kind of bird genus", "pln": ["(: cnet_isa_c07bce129b (IsA sula bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sulcus is a kind of fissure", "pln": ["(: cnet_isa_9f5665147d (IsA sulcus fissure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sulfa drug is a kind of antibacterial", "pln": ["(: cnet_isa_467006df4b (IsA sulfa_drug antibacterial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sulfadiazine is a kind of sulfa drug", "pln": ["(: cnet_isa_9a2df6488a (IsA sulfadiazine sulfa_drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sulfamethazine is a kind of sulfa drug", "pln": ["(: cnet_isa_986428696f (IsA sulfamethazine sulfa_drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sulfanilamide is a kind of sulfa drug", "pln": ["(: cnet_isa_4a77b00cbd (IsA sulfanilamide sulfa_drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sulfanilic acid is a kind of acid", "pln": ["(: cnet_isa_d7699d53f8 (IsA sulfanilic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sulfapyridine is a kind of sulfa drug", "pln": ["(: cnet_isa_d6c2237846 (IsA sulfapyridine sulfa_drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sulfate is a kind of salt", "pln": ["(: cnet_isa_48cb949ba9 (IsA sulfate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sulfide is a kind of compound", "pln": ["(: cnet_isa_3df051a625 (IsA sulfide compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sulfonate is a kind of salt", "pln": ["(: cnet_isa_35a2e54290 (IsA sulfonate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sulfonic acid is a kind of acid", "pln": ["(: cnet_isa_43ee9a3148 (IsA sulfonic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sulfonylurea is a kind of antidiabetic", "pln": ["(: cnet_isa_d8189a498b (IsA sulfonylurea antidiabetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sulfur is a kind of chemical element", "pln": ["(: cnet_isa_a4545290a1 (IsA sulfur chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sulfur dioxide is a kind of dioxide", "pln": ["(: cnet_isa_ad2d946243 (IsA sulfur_dioxide dioxide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sulfur dioxide is a kind of gas", "pln": ["(: cnet_isa_9e74f5e1ef (IsA sulfur_dioxide gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sulfur dioxide is a kind of pollutant", "pln": ["(: cnet_isa_bff89d06f3 (IsA sulfur_dioxide pollutant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sulfur hexafluoride is a kind of fluoride", "pln": ["(: cnet_isa_9df3ec471d (IsA sulfur_hexafluoride fluoride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sulfur hexafluoride is a kind of greenhouse gas", "pln": ["(: cnet_isa_5df3cb7c01 (IsA sulfur_hexafluoride greenhouse_gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sulfur oxide is a kind of oxide", "pln": ["(: cnet_isa_f72c307931 (IsA sulfur_oxide oxide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sulfur paintbrush is a kind of indian paintbrush", "pln": ["(: cnet_isa_088ccffe58 (IsA sulfur_paintbrush indian_paintbrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sulidae is a kind of bird family", "pln": ["(: cnet_isa_bbb9b977e4 (IsA sulidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sulk is a kind of temper", "pln": ["(: cnet_isa_2e726f8c98 (IsA sulk temper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sulkiness is a kind of ill nature", "pln": ["(: cnet_isa_faca6cb79c (IsA sulkiness ill_nature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sulkiness is a kind of resentment", "pln": ["(: cnet_isa_cfd98ec61c (IsA sulkiness resentment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sulky is a kind of horse drawn vehicle", "pln": ["(: cnet_isa_af0788ed25 (IsA sulky horse_drawn_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sulphur butterfly is a kind of butterfly", "pln": ["(: cnet_isa_535b9e63d6 (IsA sulphur_butterfly butterfly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "sum is a kind of assets", "pln": ["(: cnet_isa_5ed65457ae (IsA sum assets) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sulphur crested cockatoo is a kind of cockatoo", "pln": ["(: cnet_isa_6187977ef1 (IsA sulphur_crested_cockatoo cockatoo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sulphur mine is a kind of mine", "pln": ["(: cnet_isa_6e4c42a271 (IsA sulphur_mine mine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sultan is a kind of ruler", "pln": ["(: cnet_isa_5a2c543465 (IsA sultan ruler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sultana is a kind of vinifera grape", "pln": ["(: cnet_isa_ca4c0ebc6a (IsA sultana vinifera_grape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sultanate is a kind of country", "pln": ["(: cnet_isa_63383df56d (IsA sultanate country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sultriness is a kind of sex appeal", "pln": ["(: cnet_isa_3a9df40fb1 (IsA sultriness sex_appeal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sultriness is a kind of hot weather", "pln": ["(: cnet_isa_2dc5032296 (IsA sultriness hot_weather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sum is a kind of whole", "pln": ["(: cnet_isa_8493866140 (IsA sum whole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sum is a kind of quantity", "pln": ["(: cnet_isa_e74fbf1c78 (IsA sum quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sum is a kind of collection", "pln": ["(: cnet_isa_75104cbae1 (IsA sum collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sum is a kind of asset", "pln": ["(: cnet_isa_fe6f8b6c73 (IsA sum asset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sumac is a kind of shrub", "pln": ["(: cnet_isa_5c455a3685 (IsA sumac shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sumac is a kind of wood", "pln": ["(: cnet_isa_45f8425122 (IsA sumac wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sumatran is a kind of indonesian", "pln": ["(: cnet_isa_21e0b2d07a (IsA sumatran indonesian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sumerian is a kind of babylonian", "pln": ["(: cnet_isa_b25ade9431 (IsA sumerian babylonian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sumerology is a kind of archeology", "pln": ["(: cnet_isa_fcb6414dd6 (IsA sumerology archeology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "summarization is a kind of report", "pln": ["(: cnet_isa_14bdc20559 (IsA summarization report) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "summary is a kind of statement", "pln": ["(: cnet_isa_71ce2cf170 (IsA summary statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "summary judgment is a kind of judgment", "pln": ["(: cnet_isa_ef0e0d1ecb (IsA summary_judgment judgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "summation is a kind of arithmetic operation", "pln": ["(: cnet_isa_2659bdcf46 (IsA summation arithmetic_operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "summation is a kind of summary", "pln": ["(: cnet_isa_8decea7a17 (IsA summation summary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "summation is a kind of organic process", "pln": ["(: cnet_isa_affe09bee8 (IsA summation organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "summer is a kind of season", "pln": ["(: cnet_isa_70f404bbfa (IsA summer season) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "summer is a kind of warmer than winter", "pln": ["(: cnet_isa_30c15fe9d4 (IsA summer warmer_than_winter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "summer is a kind of time of life", "pln": ["(: cnet_isa_58f23213c3 (IsA summer time_of_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "summer cypress is a kind of shrub", "pln": ["(: cnet_isa_053bc2c35f (IsA summer_cypress shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "summer flounder is a kind of lefteye flounder", "pln": ["(: cnet_isa_15e922ef46 (IsA summer_flounder lefteye_flounder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "summer house is a kind of country house", "pln": ["(: cnet_isa_b8d931ec2c (IsA summer_house country_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "summer hyacinth is a kind of hyacinth", "pln": ["(: cnet_isa_37bb01cb55 (IsA summer_hyacinth hyacinth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "summer savory is a kind of savory", "pln": ["(: cnet_isa_5f581c071d (IsA summer_savory savory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "summer school is a kind of school term", "pln": ["(: cnet_isa_a1d5bcdd02 (IsA summer_school school_term) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "summer solstice is a kind of solstice", "pln": ["(: cnet_isa_70c75c8134 (IsA summer_solstice solstice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "summer squash is a kind of squash", "pln": ["(: cnet_isa_c74cfe84d9 (IsA summer_squash squash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "summer stock is a kind of theatrical production", "pln": ["(: cnet_isa_f05787b7c8 (IsA summer_stock theatrical_production) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "summer tanager is a kind of tanager", "pln": ["(: cnet_isa_4d46dc75b8 (IsA summer_tanager tanager) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "summercater is a kind of vacationer", "pln": ["(: cnet_isa_fe1c451779 (IsA summercater vacationer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "summit is a kind of meeting", "pln": ["(: cnet_isa_7391d6f50d (IsA summit meeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "summon is a kind of order", "pln": ["(: cnet_isa_7b4197907c (IsA summon order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "summon is a kind of writ", "pln": ["(: cnet_isa_912bde7cac (IsA summon writ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "summum bonum is a kind of good", "pln": ["(: cnet_isa_59346e399b (IsA summum_bonum good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sumo is a kind of sport", "pln": ["(: cnet_isa_4c21043ae6 (IsA sumo sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sumo is a kind of wrestling", "pln": ["(: cnet_isa_763c21db7b (IsA sumo wrestling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sumo ring is a kind of ring", "pln": ["(: cnet_isa_50f560fb50 (IsA sumo_ring ring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sumo wrestler is a kind of wrestler", "pln": ["(: cnet_isa_178cb0b145 (IsA sumo_wrestler wrestler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sump is a kind of reservoir", "pln": ["(: cnet_isa_fa8771ddc1 (IsA sump reservoir) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sump is a kind of well", "pln": ["(: cnet_isa_bf6a31823d (IsA sump well) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sump pump is a kind of suction pump", "pln": ["(: cnet_isa_cb2e8d38e5 (IsA sump_pump suction_pump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sumpsimus is a kind of saying", "pln": ["(: cnet_isa_fcbdd65813 (IsA sumpsimus saying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sun is a kind of bigger than earth", "pln": ["(: cnet_isa_488bb736d0 (IsA sun bigger_than_earth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sun is a kind of g class star", "pln": ["(: cnet_isa_0fba216150 (IsA sun g_class_star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sun is a kind of major heat source", "pln": ["(: cnet_isa_2547c33885 (IsA sun major_heat_source) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sun is a kind of orbited by earth", "pln": ["(: cnet_isa_d86ea4d0cc (IsA sun orbited_by_earth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sun is a kind of setting", "pln": ["(: cnet_isa_6f08c679ac (IsA sun setting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sun is a kind of sphere", "pln": ["(: cnet_isa_11f75256f7 (IsA sun sphere) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sun is a kind of star", "pln": ["(: cnet_isa_4ad8f2bd6c (IsA sun star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sun is a kind of important person", "pln": ["(: cnet_isa_0828f6d576 (IsA sun important_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sun bathing is a kind of bathing", "pln": ["(: cnet_isa_dbc9bd8f69 (IsA sun_bathing bathing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sun dance is a kind of ritual dancing", "pln": ["(: cnet_isa_e1c5f7698a (IsA sun_dance ritual_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sun deck is a kind of deck", "pln": ["(: cnet_isa_77393c9f31 (IsA sun_deck deck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sun gear is a kind of gear", "pln": ["(: cnet_isa_50cf697c59 (IsA sun_gear gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sun god is a kind of deity", "pln": ["(: cnet_isa_f79cfd828f (IsA sun_god deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sun hat is a kind of hat", "pln": ["(: cnet_isa_7eab619cbd (IsA sun_hat hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sun parlor is a kind of room", "pln": ["(: cnet_isa_6f9f486c52 (IsA sun_parlor room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sun pitcher is a kind of pitcher plant", "pln": ["(: cnet_isa_8ceeb7b33a (IsA sun_pitcher pitcher_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sun protection factor is a kind of degree", "pln": ["(: cnet_isa_f2075ce9e5 (IsA sun_protection_factor degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sun spurge is a kind of spurge", "pln": ["(: cnet_isa_27233f69b2 (IsA sun_spurge spurge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sun tea is a kind of tea", "pln": ["(: cnet_isa_7777160df9 (IsA sun_tea tea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sun visor is a kind of shade", "pln": ["(: cnet_isa_1a687c2b34 (IsA sun_visor shade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sun worshiper is a kind of believer", "pln": ["(: cnet_isa_22d83f8656 (IsA sun_worshiper believer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunbather is a kind of idler", "pln": ["(: cnet_isa_40829c7d81 (IsA sunbather idler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sunbeam is a kind of beam", "pln": ["(: cnet_isa_0cd7367395 (IsA sunbeam beam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunbonnet is a kind of bonnet", "pln": ["(: cnet_isa_ae1b7352d4 (IsA sunbonnet bonnet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sunbonnet is a kind of sun hat", "pln": ["(: cnet_isa_dbe262a2c8 (IsA sunbonnet sun_hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunburn is a kind of erythema", "pln": ["(: cnet_isa_311dc366d6 (IsA sunburn erythema) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunburn is a kind of first degree burn", "pln": ["(: cnet_isa_5935eefdae (IsA sunburn first_degree_burn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunburst is a kind of brooch", "pln": ["(: cnet_isa_d431c8ab4a (IsA sunburst brooch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunburst is a kind of design", "pln": ["(: cnet_isa_d0d9bb9f69 (IsA sunburst design) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunburst is a kind of sunlight", "pln": ["(: cnet_isa_3baa3732d7 (IsA sunburst sunlight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunburst pleat is a kind of knife pleat", "pln": ["(: cnet_isa_2437c93870 (IsA sunburst_pleat knife_pleat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sundacarpus is a kind of gymnosperm genus", "pln": ["(: cnet_isa_2579f6fbbc (IsA sundacarpus gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sundacarpus amara is a kind of conifer", "pln": ["(: cnet_isa_81ad09ecb5 (IsA sundacarpus_amara conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sundanese is a kind of indonesian", "pln": ["(: cnet_isa_ecffde41b1 (IsA sundanese indonesian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunday is a kind of day of rest", "pln": ["(: cnet_isa_4ee67eb374 (IsA sunday day_of_rest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sunday is a kind of rest day", "pln": ["(: cnet_isa_b55da04e1f (IsA sunday rest_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "sundrops is a kind of evening primrose", "pln": ["(: cnet_isa_da1dc65004 (IsA sundrops evening_primrose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "sunglass is a kind of converging lens", "pln": ["(: cnet_isa_5f3d68867b (IsA sunglass converging_lens) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunday best is a kind of finery", "pln": ["(: cnet_isa_4cec115b55 (IsA sunday_best finery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunday school is a kind of school", "pln": ["(: cnet_isa_5a828b8b5a (IsA sunday_school school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sundew is a kind of carnivorous plant", "pln": ["(: cnet_isa_a300738988 (IsA sundew carnivorous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sundial is a kind of timepiece", "pln": ["(: cnet_isa_7528149578 (IsA sundial timepiece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sundowner is a kind of drink", "pln": ["(: cnet_isa_0b3df80567 (IsA sundowner drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sundowner is a kind of vagrant", "pln": ["(: cnet_isa_919fe499a6 (IsA sundowner vagrant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sundress is a kind of dress", "pln": ["(: cnet_isa_f32b69464d (IsA sundress dress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sundry is a kind of whatchamacallit", "pln": ["(: cnet_isa_a30cfa1b3e (IsA sundry whatchamacallit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sundrop is a kind of evening primrose", "pln": ["(: cnet_isa_ec434af5a7 (IsA sundrop evening_primrose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunfish is a kind of percoid fish", "pln": ["(: cnet_isa_d8f838c6ed (IsA sunfish percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunfish is a kind of freshwater fish", "pln": ["(: cnet_isa_089c23ab4f (IsA sunfish freshwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunflower is a kind of flower", "pln": ["(: cnet_isa_9383c373ed (IsA sunflower flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunflower oil is a kind of vegetable oil", "pln": ["(: cnet_isa_dc9a944dcd (IsA sunflower_oil vegetable_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunflower seed is a kind of edible seed", "pln": ["(: cnet_isa_b42af7f891 (IsA sunflower_seed edible_seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sung is a kind of dynasty", "pln": ["(: cnet_isa_4a74351873 (IsA sung dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunglass is a kind of converging len", "pln": ["(: cnet_isa_32901c196b (IsA sunglass converging_len) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunglass is a kind of spectacle", "pln": ["(: cnet_isa_def1a8fa0f (IsA sunglass spectacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sunk fence is a kind of ditch", "pln": ["(: cnet_isa_578904d4b9 (IsA sunk_fence ditch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunken arch is a kind of instep", "pln": ["(: cnet_isa_e1e58fbaf6 (IsA sunken_arch instep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunken garden is a kind of garden", "pln": ["(: cnet_isa_31060c43da (IsA sunken_garden garden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunlamp is a kind of mercury vapor lamp", "pln": ["(: cnet_isa_b15df6baf4 (IsA sunlamp mercury_vapor_lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunlight is a kind of energy", "pln": ["(: cnet_isa_1bc70ef2a4 (IsA sunlight energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunlight is a kind of light", "pln": ["(: cnet_isa_9bd328e411 (IsA sunlight light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunnah is a kind of way", "pln": ["(: cnet_isa_052a95a351 (IsA sunnah way) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunni is a kind of sect", "pln": ["(: cnet_isa_3d04c11ffd (IsA sunni sect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunni muslim is a kind of moslem", "pln": ["(: cnet_isa_4ef1c1f791 (IsA sunni_muslim moslem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunniness is a kind of light", "pln": ["(: cnet_isa_3dbe606c85 (IsA sunniness light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunny is a kind of one type of weather", "pln": ["(: cnet_isa_dfab2cda8b (IsA sunny one_type_of_weather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunray is a kind of ultraviolet", "pln": ["(: cnet_isa_5628234e7c (IsA sunray ultraviolet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunray is a kind of wildflower", "pln": ["(: cnet_isa_290baf15ee (IsA sunray wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunrise is a kind of periodic event", "pln": ["(: cnet_isa_52f210838f (IsA sunrise periodic_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunrise is a kind of atmospheric phenomenon", "pln": ["(: cnet_isa_b71d9d5465 (IsA sunrise atmospheric_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sunrise industry is a kind of industry", "pln": ["(: cnet_isa_7c2708b125 (IsA sunrise_industry industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunroof is a kind of roof", "pln": ["(: cnet_isa_f921379c5d (IsA sunroof roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunscreen is a kind of cream", "pln": ["(: cnet_isa_8c48ce1d1c (IsA sunscreen cream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunset is a kind of periodic event", "pln": ["(: cnet_isa_5b2987d6b6 (IsA sunset periodic_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunset is a kind of atmospheric phenomenon", "pln": ["(: cnet_isa_0335f6a965 (IsA sunset atmospheric_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sunset is a kind of hour", "pln": ["(: cnet_isa_8b2febac93 (IsA sunset hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunspot is a kind of spot", "pln": ["(: cnet_isa_d982ec9d8b (IsA sunspot spot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sunstone is a kind of quartz", "pln": ["(: cnet_isa_fa09182338 (IsA sunstone quartz) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunstone is a kind of transparent gem", "pln": ["(: cnet_isa_34e89c5cff (IsA sunstone transparent_gem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunstroke is a kind of heatstroke", "pln": ["(: cnet_isa_3572803837 (IsA sunstroke heatstroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sunsuit is a kind of garment", "pln": ["(: cnet_isa_1470aaf2e3 (IsA sunsuit garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suntrap is a kind of patio", "pln": ["(: cnet_isa_5c40b33e98 (IsA suntrap patio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "super heavyweight is a kind of boxer", "pln": ["(: cnet_isa_e92ce6fb90 (IsA super_heavyweight boxer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "super mario brother is a kind of game for nintendo", "pln": ["(: cnet_isa_345726f8a1 (IsA super_mario_brother game_for_nintendo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superannuation is a kind of dismissal", "pln": ["(: cnet_isa_19b7f8cc1e (IsA superannuation dismissal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superbug is a kind of bacteria", "pln": ["(: cnet_isa_8643d9497c (IsA superbug bacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superbug is a kind of sweet potato whitefly", "pln": ["(: cnet_isa_0877ad006d (IsA superbug sweet_potato_whitefly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supercargo is a kind of officer", "pln": ["(: cnet_isa_89d4de15f2 (IsA supercargo officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supercharger is a kind of compressor", "pln": ["(: cnet_isa_6bece29f99 (IsA supercharger compressor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superclass is a kind of taxonomic group", "pln": ["(: cnet_isa_632a18e1f4 (IsA superclass taxonomic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "superclass myriapoda is a kind of class", "pln": ["(: cnet_isa_bf9691c93e (IsA superclass_myriapoda class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supercomputer is a kind of mainframe", "pln": ["(: cnet_isa_05f134c4ee (IsA supercomputer mainframe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "superconducting supercollider is a kind of collider", "pln": ["(: cnet_isa_ed39f42209 (IsA superconducting_supercollider collider) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superconductivity is a kind of electrical conduction", "pln": ["(: cnet_isa_f5c47e185e (IsA superconductivity electrical_conduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "superego is a kind of conscience", "pln": ["(: cnet_isa_0bda215f14 (IsA superego conscience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supererogation is a kind of effort", "pln": ["(: cnet_isa_a2dc39018a (IsA supererogation effort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superfamily is a kind of taxonomic group", "pln": ["(: cnet_isa_e7ace3080a (IsA superfamily taxonomic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "superfecta is a kind of bet", "pln": ["(: cnet_isa_31134e10d9 (IsA superfecta bet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superfecundation is a kind of fertilization", "pln": ["(: cnet_isa_929e41551a (IsA superfecundation fertilization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superfetation is a kind of fertilization", "pln": ["(: cnet_isa_b53defd2e9 (IsA superfetation fertilization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "superficial epigastric vein is a kind of epigastric vein", "pln": ["(: cnet_isa_b904308a29 (IsA superficial_epigastric_vein epigastric_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superficial middle cerebral vein is a kind of middle cerebral vein", "pln": ["(: cnet_isa_ee8bef2aa0 (IsA superficial_middle_cerebral_vein middle_cerebral_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superficial temporal vein is a kind of temporal vein", "pln": ["(: cnet_isa_7a40306380 (IsA superficial_temporal_vein temporal_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "superficiality is a kind of depth", "pln": ["(: cnet_isa_ce100dd419 (IsA superficiality depth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superficiality is a kind of shallowness", "pln": ["(: cnet_isa_523b47ec96 (IsA superficiality shallowness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superficy is a kind of surface", "pln": ["(: cnet_isa_0a8c7b01e4 (IsA superficy surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superficy is a kind of appearance", "pln": ["(: cnet_isa_09fc107266 (IsA superficy appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superfund program is a kind of program", "pln": ["(: cnet_isa_205b4972af (IsA superfund_program program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supergiant is a kind of star", "pln": ["(: cnet_isa_b6ceb49d85 (IsA supergiant star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supergrass is a kind of informer", "pln": ["(: cnet_isa_0f60d8beea (IsA supergrass informer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superhigh frequency is a kind of radio frequency", "pln": ["(: cnet_isa_950b0c3708 (IsA superhigh_frequency radio_frequency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superhighway is a kind of large road", "pln": ["(: cnet_isa_4093ef9616 (IsA superhighway large_road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superhighway is a kind of network", "pln": ["(: cnet_isa_df4c8d4e3d (IsA superhighway network) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superinfection is a kind of infection", "pln": ["(: cnet_isa_8e12ea1aaf (IsA superinfection infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superintendent is a kind of caretaker", "pln": ["(: cnet_isa_3288748991 (IsA superintendent caretaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superior is a kind of leader", "pln": ["(: cnet_isa_f7adec5a48 (IsA superior leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superior is a kind of religious", "pln": ["(: cnet_isa_0058dc6746 (IsA superior religious) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superior alveolar artery is a kind of alveolar artery", "pln": ["(: cnet_isa_acce1b1ccb (IsA superior_alveolar_artery alveolar_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superior cerebellar artery is a kind of cerebellar artery", "pln": ["(: cnet_isa_3059a5dbb0 (IsA superior_cerebellar_artery cerebellar_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superior cerebral vein is a kind of cerebral vein", "pln": ["(: cnet_isa_b7955ab9c8 (IsA superior_cerebral_vein cerebral_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superior colliculus is a kind of center", "pln": ["(: cnet_isa_7fd1ccdf01 (IsA superior_colliculus center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superior conjunction is a kind of conjunction", "pln": ["(: cnet_isa_ac19f0785b (IsA superior_conjunction conjunction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superior court is a kind of court", "pln": ["(: cnet_isa_0cb4184ce5 (IsA superior_court court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superior epigastric vein is a kind of epigastric vein", "pln": ["(: cnet_isa_12f103b521 (IsA superior_epigastric_vein epigastric_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superior labial artery is a kind of labial artery", "pln": ["(: cnet_isa_bb18605a43 (IsA superior_labial_artery labial_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superior labial vein is a kind of labial vein", "pln": ["(: cnet_isa_eda6d1d16f (IsA superior_labial_vein labial_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superior mesenteric artery is a kind of mesenteric artery", "pln": ["(: cnet_isa_75f60103fd (IsA superior_mesenteric_artery mesenteric_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superior ophthalmic vein is a kind of ophthalmic vein", "pln": ["(: cnet_isa_0fecc5c449 (IsA superior_ophthalmic_vein ophthalmic_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "superior planet is a kind of planet", "pln": ["(: cnet_isa_81d13ab3bb (IsA superior_planet planet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superior pulmonary vein is a kind of pulmonary vein", "pln": ["(: cnet_isa_3fa6741355 (IsA superior_pulmonary_vein pulmonary_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superior rectus muscle is a kind of ocular muscle", "pln": ["(: cnet_isa_de61db5cf5 (IsA superior_rectus_muscle ocular_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "superior skill is a kind of ability", "pln": ["(: cnet_isa_75742d53dd (IsA superior_skill ability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superior thalamostriate vein is a kind of thalamostriate vein", "pln": ["(: cnet_isa_348d3cb86b (IsA superior_thalamostriate_vein thalamostriate_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superior thyroid vein is a kind of thyroid vein", "pln": ["(: cnet_isa_d478320826 (IsA superior_thyroid_vein thyroid_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "superior vena cava is a kind of vena cava", "pln": ["(: cnet_isa_99f12356c7 (IsA superior_vena_cava vena_cava) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "superiority is a kind of advantage", "pln": ["(: cnet_isa_a8be713258 (IsA superiority advantage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superiority is a kind of arrogance", "pln": ["(: cnet_isa_8f0bbe6af6 (IsA superiority arrogance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "superiority is a kind of quality", "pln": ["(: cnet_isa_3dc07e7117 (IsA superiority quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superiority complex is a kind of egotism", "pln": ["(: cnet_isa_3d6b2e5619 (IsA superiority_complex egotism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superlative is a kind of adjective", "pln": ["(: cnet_isa_7ddba63e41 (IsA superlative adjective) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superlative is a kind of adverb", "pln": ["(: cnet_isa_eb10adfe43 (IsA superlative adverb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superlative is a kind of praise", "pln": ["(: cnet_isa_7ca3f2b477 (IsA superlative praise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supermarket is a kind of not", "pln": ["(: cnet_isa_32560b9949 (IsA supermarket not) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supermarket is a kind of grocery store", "pln": ["(: cnet_isa_06b81717ec (IsA supermarket grocery_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supermarketer is a kind of operator", "pln": ["(: cnet_isa_6ea334f511 (IsA supermarketer operator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supermodel is a kind of mannequin", "pln": ["(: cnet_isa_bf11820a08 (IsA supermodel mannequin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supermom is a kind of mother", "pln": ["(: cnet_isa_7c0f809d03 (IsA supermom mother) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supernatant is a kind of liquid", "pln": ["(: cnet_isa_14e259d262 (IsA supernatant liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supernatural is a kind of causal agent", "pln": ["(: cnet_isa_7f56eb0591 (IsA supernatural causal_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "supernaturalism is a kind of unnaturalness", "pln": ["(: cnet_isa_06ddda9db6 (IsA supernaturalism unnaturalness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supernaturalism is a kind of belief", "pln": ["(: cnet_isa_dfc4edab42 (IsA supernaturalism belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "supernova is a kind of star", "pln": ["(: cnet_isa_8544c195bd (IsA supernova star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supernumerary is a kind of actor", "pln": ["(: cnet_isa_5782d571bd (IsA supernumerary actor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supernumerary is a kind of person", "pln": ["(: cnet_isa_456d1c395c (IsA supernumerary person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superorder is a kind of taxonomic group", "pln": ["(: cnet_isa_8dbb83abf3 (IsA superorder taxonomic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superoxide is a kind of anion", "pln": ["(: cnet_isa_b1af09ed9b (IsA superoxide anion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superoxide is a kind of oxide", "pln": ["(: cnet_isa_ecf39e0947 (IsA superoxide oxide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "superoxide dismutase is a kind of enzyme", "pln": ["(: cnet_isa_9b6ef05745 (IsA superoxide_dismutase enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superphylum is a kind of taxonomic group", "pln": ["(: cnet_isa_7d21b3d1b0 (IsA superphylum taxonomic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superposition is a kind of placement", "pln": ["(: cnet_isa_f0f25ccefd (IsA superposition placement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "superposition is a kind of deposition", "pln": ["(: cnet_isa_2199ff9f51 (IsA superposition deposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superscript is a kind of character", "pln": ["(: cnet_isa_e5f2f95c2a (IsA superscript character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superscription is a kind of inscription", "pln": ["(: cnet_isa_887f0b41db (IsA superscription inscription) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supersedure is a kind of replacement", "pln": ["(: cnet_isa_f73bc33913 (IsA supersedure replacement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superstition is a kind of bad thing", "pln": ["(: cnet_isa_90f021cb57 (IsA superstition bad_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superstition is a kind of belief", "pln": ["(: cnet_isa_a6b2793f26 (IsA superstition belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superstrate is a kind of stratum", "pln": ["(: cnet_isa_4e010aa85c (IsA superstrate stratum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superstratum is a kind of language", "pln": ["(: cnet_isa_07c76e3231 (IsA superstratum language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "superstring is a kind of particle", "pln": ["(: cnet_isa_7973ff87ee (IsA superstring particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "superstructure is a kind of structure", "pln": ["(: cnet_isa_68d2d5d691 (IsA superstructure structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supersymmetry is a kind of scientific theory", "pln": ["(: cnet_isa_0f70f19c6c (IsA supersymmetry scientific_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supertanker is a kind of oil tanker", "pln": ["(: cnet_isa_7d2d85b96b (IsA supertanker oil_tanker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supertitle is a kind of translation", "pln": ["(: cnet_isa_2c761aa26c (IsA supertitle translation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "supertonic is a kind of note", "pln": ["(: cnet_isa_e4ef1be0ba (IsA supertonic note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supertwister is a kind of tornado", "pln": ["(: cnet_isa_ebbb22e720 (IsA supertwister tornado) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supervention is a kind of happening", "pln": ["(: cnet_isa_e84751ea31 (IsA supervention happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supervision is a kind of management", "pln": ["(: cnet_isa_8242638918 (IsA supervision management) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supervisor is a kind of superior", "pln": ["(: cnet_isa_888b0fc569 (IsA supervisor superior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supervisory program is a kind of program", "pln": ["(: cnet_isa_f925194181 (IsA supervisory_program program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supervisory routine is a kind of routine", "pln": ["(: cnet_isa_c8c70c6adb (IsA supervisory_routine routine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "supervisory software is a kind of software", "pln": ["(: cnet_isa_4d2b1f00e6 (IsA supervisory_software software) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supination is a kind of rotation", "pln": ["(: cnet_isa_cf8fd6a32a (IsA supination rotation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supinator is a kind of muscle", "pln": ["(: cnet_isa_09c5dfdae1 (IsA supinator muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supper is a kind of meal", "pln": ["(: cnet_isa_0c3ef27363 (IsA supper meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supper is a kind of social gathering", "pln": ["(: cnet_isa_2680187eb5 (IsA supper social_gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supper club is a kind of cabaret", "pln": ["(: cnet_isa_f6346c0ad5 (IsA supper_club cabaret) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supping is a kind of eating", "pln": ["(: cnet_isa_f1fed3de9a (IsA supping eating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "supplanting is a kind of replacement", "pln": ["(: cnet_isa_69ae8db25b (IsA supplanting replacement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "supplejack is a kind of walking stick", "pln": ["(: cnet_isa_b60af0d11c (IsA supplejack walking_stick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "supply side economics is a kind of economics", "pln": ["(: cnet_isa_9d38b07ca0 (IsA supply_side_economics economics) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supplement is a kind of increase", "pln": ["(: cnet_isa_c4ac86911d (IsA supplement increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supplementary benefit is a kind of social insurance", "pln": ["(: cnet_isa_0f8cd53920 (IsA supplementary_benefit social_insurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supplementation is a kind of expansion", "pln": ["(: cnet_isa_f401161de4 (IsA supplementation expansion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supplication is a kind of entreaty", "pln": ["(: cnet_isa_d5f5c7d2d2 (IsA supplication entreaty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supplier is a kind of businessperson", "pln": ["(: cnet_isa_10f9176aa6 (IsA supplier businessperson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supply is a kind of economic process", "pln": ["(: cnet_isa_ca9c907278 (IsA supply economic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supply is a kind of indefinite quantity", "pln": ["(: cnet_isa_dbdad10834 (IsA supply indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supply chamber is a kind of mechanical device", "pln": ["(: cnet_isa_da1a4e50f3 (IsA supply_chamber mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supply closet is a kind of cupboard", "pln": ["(: cnet_isa_0d798fd932 (IsA supply_closet cupboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supply line is a kind of path", "pln": ["(: cnet_isa_79037afa75 (IsA supply_line path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supply officer is a kind of commissioned officer", "pln": ["(: cnet_isa_4df90a533d (IsA supply_officer commissioned_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supply side economic is a kind of economic", "pln": ["(: cnet_isa_f655ed14ab (IsA supply_side_economic economic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "support is a kind of activity", "pln": ["(: cnet_isa_7502aba009 (IsA support activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "support is a kind of aid", "pln": ["(: cnet_isa_5a458104c0 (IsA support aid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "support is a kind of device", "pln": ["(: cnet_isa_b239524ec7 (IsA support device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "support is a kind of supporting structure", "pln": ["(: cnet_isa_24328691bf (IsA support supporting_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "support is a kind of influence", "pln": ["(: cnet_isa_9b4f6f402d (IsA support influence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "support is a kind of operation", "pln": ["(: cnet_isa_48d4e76312 (IsA support operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "support is a kind of resource", "pln": ["(: cnet_isa_db1bc19b78 (IsA support resource) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "support column is a kind of column", "pln": ["(: cnet_isa_4acaaa35a7 (IsA support_column column) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "support hose is a kind of stocking", "pln": ["(: cnet_isa_045d5bd8c9 (IsA support_hose stocking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "support level is a kind of price", "pln": ["(: cnet_isa_6ff967bb59 (IsA support_level price) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "support payment is a kind of payment", "pln": ["(: cnet_isa_8c8b2b8f4d (IsA support_payment payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "support system is a kind of network", "pln": ["(: cnet_isa_2d89533007 (IsA support_system network) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supporter is a kind of advocate", "pln": ["(: cnet_isa_80bacc0295 (IsA supporter advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "supporting fire is a kind of fire", "pln": ["(: cnet_isa_6cbf81f56e (IsA supporting_fire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "supporting structure is a kind of structure", "pln": ["(: cnet_isa_e15ecb9822 (IsA supporting_structure structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supporting tower is a kind of tower", "pln": ["(: cnet_isa_e8780fbd9b (IsA supporting_tower tower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supposition is a kind of conjecture", "pln": ["(: cnet_isa_f9e14af5f1 (IsA supposition conjecture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suppository is a kind of medicine", "pln": ["(: cnet_isa_7865a0b0ec (IsA suppository medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suppressant is a kind of drug", "pln": ["(: cnet_isa_dc17ff7c34 (IsA suppressant drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suppression is a kind of prevention", "pln": ["(: cnet_isa_b33d4262c8 (IsA suppression prevention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suppression is a kind of restraint", "pln": ["(: cnet_isa_df31cc2a82 (IsA suppression restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suppression is a kind of growth", "pln": ["(: cnet_isa_d2c4c6b902 (IsA suppression growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suppressive fire is a kind of fire", "pln": ["(: cnet_isa_d16ff01af3 (IsA suppressive_fire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suppressor is a kind of electrical device", "pln": ["(: cnet_isa_8e479ee1e1 (IsA suppressor electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suppressor is a kind of gene", "pln": ["(: cnet_isa_809efe4d48 (IsA suppressor gene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suppressor is a kind of restrainer", "pln": ["(: cnet_isa_de7b2a98c7 (IsA suppressor restrainer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supra expressionism is a kind of expressionism", "pln": ["(: cnet_isa_f412289c2b (IsA supra_expressionism expressionism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suprainfection is a kind of infection", "pln": ["(: cnet_isa_6583a47996 (IsA suprainfection infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supraorbital ridge is a kind of ridge", "pln": ["(: cnet_isa_6ec6d2eb00 (IsA supraorbital_ridge ridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supraorbital vein is a kind of vein", "pln": ["(: cnet_isa_93c3b43fe4 (IsA supraorbital_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supratrochlear vein is a kind of vein", "pln": ["(: cnet_isa_118ae85cbb (IsA supratrochlear_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supremacism is a kind of belief", "pln": ["(: cnet_isa_17b32d9e99 (IsA supremacism belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supremacist is a kind of advocate", "pln": ["(: cnet_isa_365bc3d402 (IsA supremacist advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "suprematism is a kind of artistic movement", "pln": ["(: cnet_isa_3f15d977c6 (IsA suprematism artistic_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "suprematist is a kind of abstractionist", "pln": ["(: cnet_isa_032fbf70c7 (IsA suprematist abstractionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supreme allied commander atlantic is a kind of commanding officer", "pln": ["(: cnet_isa_2f7c68adf1 (IsA supreme_allied_commander_atlantic commanding_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supreme allied commander europe is a kind of commanding officer", "pln": ["(: cnet_isa_c6763efdbf (IsA supreme_allied_commander_europe commanding_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supreme court is a kind of court", "pln": ["(: cnet_isa_6d74b38226 (IsA supreme_court court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supreme court is a kind of federal court", "pln": ["(: cnet_isa_23678c1643 (IsA supreme_court federal_court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "supreme headquarter allied power europe is a kind of high command", "pln": ["(: cnet_isa_8c18f968d6 (IsA supreme_headquarter_allied_power_europe high_command) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "supremo is a kind of big shot", "pln": ["(: cnet_isa_1d8d4e368b (IsA supremo big_shot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sura is a kind of section", "pln": ["(: cnet_isa_33b168a661 (IsA sura section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surbase is a kind of molding", "pln": ["(: cnet_isa_e8361fed4a (IsA surbase molding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surcharge is a kind of charge", "pln": ["(: cnet_isa_990aca2365 (IsA surcharge charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surcoat is a kind of coat", "pln": ["(: cnet_isa_9f8cb559ba (IsA surcoat coat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surcoat is a kind of tunic", "pln": ["(: cnet_isa_35d7635ce1 (IsA surcoat tunic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surd is a kind of consonant", "pln": ["(: cnet_isa_2b09d47a8e (IsA surd consonant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sureness is a kind of steadiness", "pln": ["(: cnet_isa_bfb34b91ce (IsA sureness steadiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surety is a kind of certainty", "pln": ["(: cnet_isa_50a1c5b8ec (IsA surety certainty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surf is a kind of wave", "pln": ["(: cnet_isa_a75a7dedd2 (IsA surf wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surf casting is a kind of casting", "pln": ["(: cnet_isa_7d8fce1af0 (IsA surf_casting casting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surface is a kind of artifact", "pln": ["(: cnet_isa_3a0073e71e (IsA surface artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surface is a kind of aspect", "pln": ["(: cnet_isa_3496329c1e (IsA surface aspect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surface is a kind of boundary", "pln": ["(: cnet_isa_4b6dbfa5fc (IsA surface boundary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surface is a kind of layer", "pln": ["(: cnet_isa_f6fa29e198 (IsA surface layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surface chemistry is a kind of chemistry", "pln": ["(: cnet_isa_b0dde276e9 (IsA surface_chemistry chemistry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surface fire is a kind of forest fire", "pln": ["(: cnet_isa_cedaf25dd4 (IsA surface_fire forest_fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surface gauge is a kind of gauge", "pln": ["(: cnet_isa_6d2d702ff4 (IsA surface_gauge gauge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surface lift is a kind of ski tow", "pln": ["(: cnet_isa_2b5442efb1 (IsA surface_lift ski_tow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surface mail is a kind of mail", "pln": ["(: cnet_isa_0c33825fa8 (IsA surface_mail mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surface noise is a kind of background noise", "pln": ["(: cnet_isa_b57780b3af (IsA surface_noise background_noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surface search radar is a kind of naval radar", "pln": ["(: cnet_isa_cbbcafe78e (IsA surface_search_radar naval_radar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surface ship is a kind of warship", "pln": ["(: cnet_isa_602095e61b (IsA surface_ship warship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surface tension is a kind of physical phenomenon", "pln": ["(: cnet_isa_98a2843a3a (IsA surface_tension physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surface to air missile is a kind of guided missile", "pln": ["(: cnet_isa_c536f85ff8 (IsA surface_to_air_missile guided_missile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surface to air missile system is a kind of shipboard system", "pln": ["(: cnet_isa_9613cfd5ab (IsA surface_to_air_missile_system shipboard_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surfacing is a kind of egress", "pln": ["(: cnet_isa_11277604c4 (IsA surfacing egress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surfbird is a kind of shorebird", "pln": ["(: cnet_isa_73d9e06127 (IsA surfbird shorebird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surfboard is a kind of board", "pln": ["(: cnet_isa_6db87cb973 (IsA surfboard board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surfboat is a kind of boat", "pln": ["(: cnet_isa_8debfd537c (IsA surfboat boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surfeit is a kind of fullness", "pln": ["(: cnet_isa_cca8fb8ddd (IsA surfeit fullness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surfer is a kind of swimmer", "pln": ["(: cnet_isa_16a23ca4a6 (IsA surfer swimmer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "surfing is a kind of sport", "pln": ["(: cnet_isa_492feaec0f (IsA surfing sport) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surfing is a kind of water sport", "pln": ["(: cnet_isa_f041c79a82 (IsA surfing water_sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surfperch is a kind of percoid fish", "pln": ["(: cnet_isa_a6f4798e67 (IsA surfperch percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surge is a kind of increase", "pln": ["(: cnet_isa_455316cffc (IsA surge increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surge suppressor is a kind of suppressor", "pln": ["(: cnet_isa_22884797e6 (IsA surge_suppressor suppressor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surgeon s knot is a kind of knot", "pln": ["(: cnet_isa_c5fa89dcde (IsA surgeon_s_knot knot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surgeon is a kind of doctor", "pln": ["(: cnet_isa_093fff47e4 (IsA surgeon doctor) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surgeon general is a kind of executive", "pln": ["(: cnet_isa_f0e652ae3e (IsA surgeon_general executive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surgeon general is a kind of medical officer", "pln": ["(: cnet_isa_a1a77668ed (IsA surgeon_general medical_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surgeonfish is a kind of percoid fish", "pln": ["(: cnet_isa_05c0016ddf (IsA surgeonfish percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surgery is a kind of room", "pln": ["(: cnet_isa_970f0dc05c (IsA surgery room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surgery is a kind of medical science", "pln": ["(: cnet_isa_50721d5a61 (IsA surgery medical_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surgical contraception is a kind of contraception", "pln": ["(: cnet_isa_b946f72d6f (IsA surgical_contraception contraception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surgical contraception is a kind of sterilization", "pln": ["(: cnet_isa_945531695f (IsA surgical_contraception sterilization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surgical dressing is a kind of dressing", "pln": ["(: cnet_isa_922e5dd420 (IsA surgical_dressing dressing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surgical instrument is a kind of medical instrument", "pln": ["(: cnet_isa_fda45a64ba (IsA surgical_instrument medical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surgical knife is a kind of knife", "pln": ["(: cnet_isa_20f50e17ea (IsA surgical_knife knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surgical knife is a kind of surgical instrument", "pln": ["(: cnet_isa_c98653f1a2 (IsA surgical_knife surgical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surgical spirit is a kind of methylated spirit", "pln": ["(: cnet_isa_4b1150aeec (IsA surgical_spirit methylated_spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surgical strike is a kind of strike", "pln": ["(: cnet_isa_4916a83490 (IsA surgical_strike strike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "suricata is a kind of mammal genus", "pln": ["(: cnet_isa_9674f72e0d (IsA suricata mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suricate is a kind of meerkat", "pln": ["(: cnet_isa_790cc45668 (IsA suricate meerkat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surinam cherry is a kind of fruit tree", "pln": ["(: cnet_isa_688c35f2ef (IsA surinam_cherry fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surinam toad is a kind of tongueless frog", "pln": ["(: cnet_isa_db2afaf191 (IsA surinam_toad tongueless_frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surinamese monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_0685211a2c (IsA surinamese_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surname is a kind of name", "pln": ["(: cnet_isa_54486b46b1 (IsA surname name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surnia is a kind of bird genus", "pln": ["(: cnet_isa_78474361c5 (IsA surnia bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surplice is a kind of vestment", "pln": ["(: cnet_isa_8ba2bbbc57 (IsA surplice vestment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surprise is a kind of emotion", "pln": ["(: cnet_isa_599ba5a764 (IsA surprise emotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surprise is a kind of disruption", "pln": ["(: cnet_isa_3b1344a1d0 (IsA surprise disruption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surprise is a kind of change", "pln": ["(: cnet_isa_b60908aaf4 (IsA surprise change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surprise is a kind of astonishment", "pln": ["(: cnet_isa_9e9ad24045 (IsA surprise astonishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surprise attack is a kind of attack", "pln": ["(: cnet_isa_f1e0f64295 (IsA surprise_attack attack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surpriser is a kind of captor", "pln": ["(: cnet_isa_6ff914c4e0 (IsA surpriser captor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surrealism is a kind of artistic movement", "pln": ["(: cnet_isa_ccf8a6927e (IsA surrealism artistic_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surrealist is a kind of artist", "pln": ["(: cnet_isa_8718869cb4 (IsA surrealist artist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surrebutter is a kind of pleading", "pln": ["(: cnet_isa_56e01f744d (IsA surrebutter pleading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surrejoinder is a kind of pleading", "pln": ["(: cnet_isa_9d2d4a873f (IsA surrejoinder pleading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surrender is a kind of delivery", "pln": ["(: cnet_isa_df4428f162 (IsA surrender delivery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surrenderer is a kind of person", "pln": ["(: cnet_isa_71beff6be0 (IsA surrenderer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "surrey is a kind of carriage", "pln": ["(: cnet_isa_77b5dea83c (IsA surrey carriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surrogate is a kind of stand in", "pln": ["(: cnet_isa_e8d5b880ae (IsA surrogate stand_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surrogate mother is a kind of mother", "pln": ["(: cnet_isa_6dd5105091 (IsA surrogate_mother mother) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sursum corda is a kind of versicle", "pln": ["(: cnet_isa_74a43a3a55 (IsA sursum_corda versicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "surtax is a kind of income tax", "pln": ["(: cnet_isa_363dcff37b (IsA surtax income_tax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "surtout is a kind of greatcoat", "pln": ["(: cnet_isa_b0b2fbb25d (IsA surtout greatcoat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "surveillance is a kind of police work", "pln": ["(: cnet_isa_d9e5993772 (IsA surveillance police_work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surveillance of disease is a kind of surveillance", "pln": ["(: cnet_isa_70255c4d3a (IsA surveillance_of_disease surveillance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surveillance system is a kind of closed circuit television", "pln": ["(: cnet_isa_27fef3a725 (IsA surveillance_system closed_circuit_television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "survey is a kind of examination", "pln": ["(: cnet_isa_a9a635ad46 (IsA survey examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "survey mile is a kind of linear unit", "pln": ["(: cnet_isa_230339f2c3 (IsA survey_mile linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surveying is a kind of measurement", "pln": ["(: cnet_isa_19b9c5dbf2 (IsA surveying measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "surveying instrument is a kind of instrument", "pln": ["(: cnet_isa_6a0a0c140b (IsA surveying_instrument instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surveyor s level is a kind of surveying instrument", "pln": ["(: cnet_isa_8d1e629de0 (IsA surveyor_s_level surveying_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surveyor is a kind of engineer", "pln": ["(: cnet_isa_d30c9a4552 (IsA surveyor engineer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "surveyor is a kind of statistician", "pln": ["(: cnet_isa_a00af1b7e9 (IsA surveyor statistician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "survival is a kind of continuance", "pln": ["(: cnet_isa_cc6166768d (IsA survival continuance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "survival is a kind of natural process", "pln": ["(: cnet_isa_7fc852cebd (IsA survival natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "survival is a kind of animation", "pln": ["(: cnet_isa_9b6a6f2edb (IsA survival animation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "survivalist is a kind of person", "pln": ["(: cnet_isa_cdc52c1644 (IsA survivalist person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "survivor is a kind of animal", "pln": ["(: cnet_isa_769fa0eb3a (IsA survivor animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "survivor is a kind of person", "pln": ["(: cnet_isa_5a2e0957ce (IsA survivor person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "survivor is a kind of unfortunate", "pln": ["(: cnet_isa_86e9b80512 (IsA survivor unfortunate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "survivor guilt is a kind of guilt", "pln": ["(: cnet_isa_a0dfa65bed (IsA survivor_guilt guilt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "survivor insurance is a kind of social security", "pln": ["(: cnet_isa_eeb5fd7558 (IsA survivor_insurance social_security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sus is a kind of mammal genus", "pln": ["(: cnet_isa_f051d704ce (IsA sus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "susan b anthony dollar is a kind of dollar", "pln": ["(: cnet_isa_8632ecbe06 (IsA susan_b_anthony_dollar dollar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "susceptibility is a kind of condition", "pln": ["(: cnet_isa_faaaa7fd98 (IsA susceptibility condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sushi is a kind of japanese food", "pln": ["(: cnet_isa_233b1cb2c7 (IsA sushi japanese_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sushi is a kind of raw fish", "pln": ["(: cnet_isa_0b0f0b4be3 (IsA sushi raw_fish) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sushi is a kind of dish", "pln": ["(: cnet_isa_3e6aa1cd68 (IsA sushi dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sushi bar is a kind of bar", "pln": ["(: cnet_isa_b06c97e328 (IsA sushi_bar bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suslik is a kind of ground squirrel", "pln": ["(: cnet_isa_466c16d53a (IsA suslik ground_squirrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suspect is a kind of person", "pln": ["(: cnet_isa_6260d7cca5 (IsA suspect person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suspended animation is a kind of physiological state", "pln": ["(: cnet_isa_8bdab2ac66 (IsA suspended_animation physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suspense is a kind of doubt", "pln": ["(: cnet_isa_02dd968860 (IsA suspense doubt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suspense is a kind of anticipation", "pln": ["(: cnet_isa_08ce078baa (IsA suspense anticipation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suspense is a kind of apprehension", "pln": ["(: cnet_isa_a079f73a40 (IsA suspense apprehension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suspense account is a kind of account", "pln": ["(: cnet_isa_91611d0ec9 (IsA suspense_account account) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suspension is a kind of debarment", "pln": ["(: cnet_isa_53c124dabd (IsA suspension debarment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suspension is a kind of support", "pln": ["(: cnet_isa_580ca156bf (IsA suspension support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suspension is a kind of mechanical system", "pln": ["(: cnet_isa_815096a87f (IsA suspension mechanical_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suspension is a kind of interruption", "pln": ["(: cnet_isa_276557427e (IsA suspension interruption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suspension is a kind of mixture", "pln": ["(: cnet_isa_1650eba679 (IsA suspension mixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suspension bridge is a kind of bridge", "pln": ["(: cnet_isa_63ff9debb4 (IsA suspension_bridge bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suspension point is a kind of period", "pln": ["(: cnet_isa_e3aae95605 (IsA suspension_point period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suspensory is a kind of bandage", "pln": ["(: cnet_isa_171df4d676 (IsA suspensory bandage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suspicion is a kind of distrust", "pln": ["(: cnet_isa_d2a13c5db6 (IsA suspicion distrust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suspicion is a kind of hostility", "pln": ["(: cnet_isa_27d642e397 (IsA suspicion hostility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sussex spaniel is a kind of spaniel", "pln": ["(: cnet_isa_66b4de8a5b (IsA sussex_spaniel spaniel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sustainability is a kind of property", "pln": ["(: cnet_isa_5f2a3316b6 (IsA sustainability property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sustaining pedal is a kind of pedal", "pln": ["(: cnet_isa_899b3e7147 (IsA sustaining_pedal pedal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sustaining program is a kind of broadcast", "pln": ["(: cnet_isa_2e3d369306 (IsA sustaining_program broadcast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sustenance is a kind of support", "pln": ["(: cnet_isa_c30daaec56 (IsA sustenance support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "susurration is a kind of sound", "pln": ["(: cnet_isa_1ad4199c54 (IsA susurration sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sutler is a kind of supplier", "pln": ["(: cnet_isa_895aca1e40 (IsA sutler supplier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sutra is a kind of sanskrit literature", "pln": ["(: cnet_isa_e5d183bda1 (IsA sutra sanskrit_literature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suttee is a kind of suicide", "pln": ["(: cnet_isa_fb9cadccc8 (IsA suttee suicide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suture is a kind of seam", "pln": ["(: cnet_isa_61def5fc97 (IsA suture seam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "suture is a kind of thread", "pln": ["(: cnet_isa_d455c982c1 (IsA suture thread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suture is a kind of joint", "pln": ["(: cnet_isa_f44e92487c (IsA suture joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suturing is a kind of sewing", "pln": ["(: cnet_isa_4171a9e69f (IsA suturing sewing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suzerain is a kind of state", "pln": ["(: cnet_isa_70df83fd04 (IsA suzerain state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suzerainty is a kind of domain", "pln": ["(: cnet_isa_bd8f3df951 (IsA suzerainty domain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "suzerainty is a kind of dominion", "pln": ["(: cnet_isa_aaab2e6ad7 (IsA suzerainty dominion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "svengali is a kind of persuader", "pln": ["(: cnet_isa_4f4771892b (IsA svengali persuader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "svoboda is a kind of freedom", "pln": ["(: cnet_isa_9c68963ad2 (IsA svoboda freedom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swab is a kind of cleaning implement", "pln": ["(: cnet_isa_882a6a08a2 (IsA swab cleaning_implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swab is a kind of implement", "pln": ["(: cnet_isa_6060b4576c (IsA swab implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swabbing is a kind of scrub", "pln": ["(: cnet_isa_bc479eb3f7 (IsA swabbing scrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "swad is a kind of bunch", "pln": ["(: cnet_isa_f58183a782 (IsA swad bunch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swaddling clothe is a kind of constraint", "pln": ["(: cnet_isa_f8a2a77bcf (IsA swaddling_clothe constraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swaddling clothe is a kind of garment", "pln": ["(: cnet_isa_d99d31bae2 (IsA swaddling_clothe garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swag is a kind of bundle", "pln": ["(: cnet_isa_91eb27c193 (IsA swag bundle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swag is a kind of valuable", "pln": ["(: cnet_isa_9a94e6d245 (IsA swag valuable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swage block is a kind of block", "pln": ["(: cnet_isa_1ce64eb3e4 (IsA swage_block block) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swagger stick is a kind of cane", "pln": ["(: cnet_isa_a32b640925 (IsA swagger_stick cane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swaggerer is a kind of pedestrian", "pln": ["(: cnet_isa_e5fc3c336c (IsA swaggerer pedestrian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swagman is a kind of itinerant", "pln": ["(: cnet_isa_578673f68f (IsA swagman itinerant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swahili is a kind of bantu", "pln": ["(: cnet_isa_e864be33b5 (IsA swahili bantu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swainsona is a kind of rosid dicot genus", "pln": ["(: cnet_isa_ae7a9ecea7 (IsA swainsona rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swale is a kind of trough", "pln": ["(: cnet_isa_245438ca23 (IsA swale trough) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swallow is a kind of consumption", "pln": ["(: cnet_isa_9e1c9b0661 (IsA swallow consumption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swallow is a kind of oscine", "pln": ["(: cnet_isa_1dcc437f3c (IsA swallow oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "swallow is a kind of taste", "pln": ["(: cnet_isa_f5b2dca3ed (IsA swallow taste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swallow tailed coat is a kind of jacket", "pln": ["(: cnet_isa_3d2e06b8ff (IsA swallow_tailed_coat jacket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swallow tailed kite is a kind of kite", "pln": ["(: cnet_isa_0e6ba5864b (IsA swallow_tailed_kite kite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swallowing semen is a kind of fetish", "pln": ["(: cnet_isa_1dfcbd334a (IsA swallowing_semen fetish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swallowing semen is a kind of sexual activity", "pln": ["(: cnet_isa_c831934e22 (IsA swallowing_semen sexual_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swami is a kind of hindoo", "pln": ["(: cnet_isa_442c877b19 (IsA swami hindoo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swamp is a kind of wetland", "pln": ["(: cnet_isa_d21dacafd7 (IsA swamp wetland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swamp is a kind of situation", "pln": ["(: cnet_isa_185e6c49a3 (IsA swamp situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swamp ash is a kind of ash", "pln": ["(: cnet_isa_ecb887ddff (IsA swamp_ash ash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swamp azalea is a kind of rhododendron", "pln": ["(: cnet_isa_13a8ccac8a (IsA swamp_azalea rhododendron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swamp birch is a kind of birch", "pln": ["(: cnet_isa_f587c41176 (IsA swamp_birch birch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swamp buggy is a kind of amphibian", "pln": ["(: cnet_isa_91a9b976df (IsA swamp_buggy amphibian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swamp candle is a kind of loosestrife", "pln": ["(: cnet_isa_212ea85690 (IsA swamp_candle loosestrife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swamp chestnut oak is a kind of chestnut oak", "pln": ["(: cnet_isa_7f8a321505 (IsA swamp_chestnut_oak chestnut_oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swamp cottonwood is a kind of cottonwood", "pln": ["(: cnet_isa_c511a2bbca (IsA swamp_cottonwood cottonwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swamp dewberry is a kind of dewberry", "pln": ["(: cnet_isa_524076a6b8 (IsA swamp_dewberry dewberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swamp fever is a kind of zoonosis", "pln": ["(: cnet_isa_8ecb3e87d0 (IsA swamp_fever zoonosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swamp fly honeysuckle is a kind of american fly honeysuckle", "pln": ["(: cnet_isa_ab689e522b (IsA swamp_fly_honeysuckle american_fly_honeysuckle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "swamp gum is a kind of eucalyptus", "pln": ["(: cnet_isa_8b1947a0da (IsA swamp_gum eucalyptus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swamp horsetail is a kind of horsetail", "pln": ["(: cnet_isa_7aae7e2dfd (IsA swamp_horsetail horsetail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swamp laurel is a kind of kalmia", "pln": ["(: cnet_isa_7e3be36311 (IsA swamp_laurel kalmia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "swamp milkweed is a kind of milkweed", "pln": ["(: cnet_isa_6d19624445 (IsA swamp_milkweed milkweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swamp oak is a kind of shrub", "pln": ["(: cnet_isa_9272889a12 (IsA swamp_oak shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swamp pine is a kind of pine", "pln": ["(: cnet_isa_9d9888ea14 (IsA swamp_pine pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swamp rabbit is a kind of wood rabbit", "pln": ["(: cnet_isa_fc5e8bcdad (IsA swamp_rabbit wood_rabbit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swamp sparrow is a kind of new world sparrow", "pln": ["(: cnet_isa_ee6cf5e448 (IsA swamp_sparrow new_world_sparrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swamp sunflower is a kind of sunflower", "pln": ["(: cnet_isa_56d9cd1253 (IsA swamp_sunflower sunflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swamp white oak is a kind of white oak", "pln": ["(: cnet_isa_ba524bd39f (IsA swamp_white_oak white_oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swamp willow is a kind of willow", "pln": ["(: cnet_isa_4c25dbec1c (IsA swamp_willow willow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swampy beggar tick is a kind of bur marigold", "pln": ["(: cnet_isa_6a71bcf7bf (IsA swampy_beggar_tick bur_marigold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swan s down is a kind of down", "pln": ["(: cnet_isa_09845428ed (IsA swan_s_down down) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swan s down is a kind of fabric", "pln": ["(: cnet_isa_69b7711a21 (IsA swan_s_down fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swan is a kind of bird", "pln": ["(: cnet_isa_7bae07b6f2 (IsA swan bird) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swan is a kind of aquatic bird", "pln": ["(: cnet_isa_a1fc13de56 (IsA swan aquatic_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swan dive is a kind of dive", "pln": ["(: cnet_isa_980bbb3940 (IsA swan_dive dive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swan orchid is a kind of orchid", "pln": ["(: cnet_isa_50bdc6c856 (IsA swan_orchid orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swan river daisy is a kind of flower", "pln": ["(: cnet_isa_32c94f7fdd (IsA swan_river_daisy flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swan river everlasting is a kind of everlasting", "pln": ["(: cnet_isa_61af79e684 (IsA swan_river_everlasting everlasting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swan song is a kind of performance", "pln": ["(: cnet_isa_c209aaa042 (IsA swan_song performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swap space is a kind of disk space", "pln": ["(: cnet_isa_03545bf905 (IsA swap_space disk_space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swarm is a kind of group", "pln": ["(: cnet_isa_e372ac527e (IsA swarm group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "swash is a kind of wave", "pln": ["(: cnet_isa_1588b95367 (IsA swash wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swashbuckling is a kind of demeanor", "pln": ["(: cnet_isa_b027cda8a6 (IsA swashbuckling demeanor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swastika is a kind of emblem", "pln": ["(: cnet_isa_70184f9c32 (IsA swastika emblem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swastika is a kind of tetraskelion", "pln": ["(: cnet_isa_c4a454b5db (IsA swastika tetraskelion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swat is a kind of blow", "pln": ["(: cnet_isa_7f8fd1505b (IsA swat blow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swat team is a kind of police squad", "pln": ["(: cnet_isa_8a21ef8196 (IsA swat_team police_squad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swatch is a kind of piece of cloth", "pln": ["(: cnet_isa_23c69979e7 (IsA swatch piece_of_cloth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swath is a kind of path", "pln": ["(: cnet_isa_e62f4bf0f5 (IsA swath path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swath is a kind of space", "pln": ["(: cnet_isa_1bbb4cd2a6 (IsA swath space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swathe is a kind of bandage", "pln": ["(: cnet_isa_3bb9f2acd9 (IsA swathe bandage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swathing is a kind of covering", "pln": ["(: cnet_isa_23e7fd7ad5 (IsA swathing covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swatter is a kind of implement", "pln": ["(: cnet_isa_8c0b0bcc49 (IsA swatter implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sway is a kind of power", "pln": ["(: cnet_isa_796d040571 (IsA sway power) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swazi is a kind of nguni", "pln": ["(: cnet_isa_55e514d206 (IsA swazi nguni) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swazi is a kind of african", "pln": ["(: cnet_isa_a0c4b82187 (IsA swazi african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "swaziland monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_ec81c2975d (IsA swaziland_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "swearer is a kind of blasphemer", "pln": ["(: cnet_isa_a9ba61b767 (IsA swearer blasphemer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swearer is a kind of communicator", "pln": ["(: cnet_isa_8b8719b4a0 (IsA swearer communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweat is a kind of condensation", "pln": ["(: cnet_isa_3ea52f425c (IsA sweat condensation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweat bag is a kind of bag", "pln": ["(: cnet_isa_31005d9b61 (IsA sweat_bag bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweat duct is a kind of ductule", "pln": ["(: cnet_isa_86719cdf99 (IsA sweat_duct ductule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweat equity is a kind of equity", "pln": ["(: cnet_isa_55af826410 (IsA sweat_equity equity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweat gland is a kind of exocrine gland", "pln": ["(: cnet_isa_815476e23d (IsA sweat_gland exocrine_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweat pant is a kind of pair of trouser", "pln": ["(: cnet_isa_b70bc9d0a0 (IsA sweat_pant pair_of_trouser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweat suit is a kind of garment", "pln": ["(: cnet_isa_311f92f4eb (IsA sweat_suit garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweatband is a kind of band", "pln": ["(: cnet_isa_c9ec6d6b70 (IsA sweatband band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweatbox is a kind of cell", "pln": ["(: cnet_isa_239cd271ba (IsA sweatbox cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweatbox is a kind of device", "pln": ["(: cnet_isa_a7062e06bd (IsA sweatbox device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweater is a kind of piece of clothing", "pln": ["(: cnet_isa_8558adea8f (IsA sweater piece_of_clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweater is a kind of garment", "pln": ["(: cnet_isa_975dab8a6d (IsA sweater garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweater and shoe is a kind of both article of clothing", "pln": ["(: cnet_isa_8a91bafd34 (IsA sweater_and_shoe both_article_of_clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweater girl is a kind of girl", "pln": ["(: cnet_isa_4df2a8e3e9 (IsA sweater_girl girl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweater and dress is a kind of both category of clothing", "pln": ["(: cnet_isa_2cbab59014 (IsA sweater_and_dress both_category_of_clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweating is a kind of way", "pln": ["(: cnet_isa_6b3d52f37b (IsA sweating way) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweating is a kind of way of regulating body temperature", "pln": ["(: cnet_isa_9894e1b4b6 (IsA sweating way_of_regulating_body_temperature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweating sickness is a kind of animal disease", "pln": ["(: cnet_isa_9cfafa875e (IsA sweating_sickness animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sweating sickness is a kind of infectious disease", "pln": ["(: cnet_isa_61328d8491 (IsA sweating_sickness infectious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweatshirt is a kind of pullover", "pln": ["(: cnet_isa_b0b430f4a7 (IsA sweatshirt pullover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweatshop is a kind of factory", "pln": ["(: cnet_isa_69d4cecf5a (IsA sweatshop factory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swede is a kind of european", "pln": ["(: cnet_isa_b6fd898114 (IsA swede european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweden is a kind of country", "pln": ["(: cnet_isa_6645b7c284 (IsA sweden country) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweden is a kind of in europe", "pln": ["(: cnet_isa_1a36fd0c66 (IsA sweden in_europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweden is a kind of part of europe", "pln": ["(: cnet_isa_ca6b6bd830 (IsA sweden part_of_europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swedish is a kind of language", "pln": ["(: cnet_isa_f2eea179e3 (IsA swedish language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swedish is a kind of scandinavian", "pln": ["(: cnet_isa_b7538a3875 (IsA swedish scandinavian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swedish iron is a kind of wrought iron", "pln": ["(: cnet_isa_6bdd9fbce2 (IsA swedish_iron wrought_iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swedish krona is a kind of swedish monetary unit", "pln": ["(: cnet_isa_46a5827181 (IsA swedish_krona swedish_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swedish massage is a kind of massage", "pln": ["(: cnet_isa_a2d488f0d3 (IsA swedish_massage massage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "swedish meatball is a kind of meatball", "pln": ["(: cnet_isa_42343a2dec (IsA swedish_meatball meatball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swedish monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_8c6bd8627a (IsA swedish_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swedish rye bread is a kind of rye bread", "pln": ["(: cnet_isa_d200d20d1d (IsA swedish_rye_bread rye_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweep is a kind of motion", "pln": ["(: cnet_isa_6722dfc922 (IsA sweep motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweep is a kind of oar", "pln": ["(: cnet_isa_b4826c4fe6 (IsA sweep oar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweep is a kind of scope", "pln": ["(: cnet_isa_e1ee1a59d8 (IsA sweep scope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweep hand is a kind of second hand", "pln": ["(: cnet_isa_53645bb84f (IsA sweep_hand second_hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweeper is a kind of teleost fish", "pln": ["(: cnet_isa_f99ee96884 (IsA sweeper teleost_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweeper is a kind of employee", "pln": ["(: cnet_isa_79ef2123b7 (IsA sweeper employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweeping is a kind of cleaning", "pln": ["(: cnet_isa_c030a55292 (IsA sweeping cleaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweepstake is a kind of lottery", "pln": ["(: cnet_isa_c9cf287d9b (IsA sweepstake lottery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet is a kind of taste", "pln": ["(: cnet_isa_501e502e3b (IsA sweet taste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sweet is a kind of dainty", "pln": ["(: cnet_isa_b6b7dd621c (IsA sweet dainty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet alyssum is a kind of flower", "pln": ["(: cnet_isa_1de7686bd0 (IsA sweet_alyssum flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet bay is a kind of magnolia", "pln": ["(: cnet_isa_4629c7a0cb (IsA sweet_bay magnolia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet bell is a kind of shrub", "pln": ["(: cnet_isa_ee2591a83d (IsA sweet_bell shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sweet birch is a kind of birch", "pln": ["(: cnet_isa_78aebf10c5 (IsA sweet_birch birch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet buckeye is a kind of horse chestnut", "pln": ["(: cnet_isa_7622b05cb3 (IsA sweet_buckeye horse_chestnut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet calabash is a kind of passion fruit", "pln": ["(: cnet_isa_117f2dfd16 (IsA sweet_calabash passion_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet calabash is a kind of passionflower", "pln": ["(: cnet_isa_34e3627fb6 (IsA sweet_calabash passionflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet cassava is a kind of cassava", "pln": ["(: cnet_isa_1fca5ebd6e (IsA sweet_cassava cassava) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet cherry is a kind of cherry", "pln": ["(: cnet_isa_b35ef06b13 (IsA sweet_cherry cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet cicely is a kind of herb", "pln": ["(: cnet_isa_4c330246b6 (IsA sweet_cicely herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet cider is a kind of cider", "pln": ["(: cnet_isa_d505a81ab5 (IsA sweet_cider cider) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet coltsfoot is a kind of herb", "pln": ["(: cnet_isa_965e86d67d (IsA sweet_coltsfoot herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet corn is a kind of corn", "pln": ["(: cnet_isa_b5b7aadf60 (IsA sweet_corn corn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet false chamomile is a kind of herb", "pln": ["(: cnet_isa_8830a9fd9d (IsA sweet_false_chamomile herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sweet fern is a kind of shrub", "pln": ["(: cnet_isa_bf935c4f9b (IsA sweet_fern shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet flag is a kind of marsh plant", "pln": ["(: cnet_isa_860e28f4e1 (IsA sweet_flag marsh_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet four o clock is a kind of four o clock", "pln": ["(: cnet_isa_e2d21b3962 (IsA sweet_four_o_clock four_o_clock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet gale is a kind of shrub", "pln": ["(: cnet_isa_4802e7849c (IsA sweet_gale shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet gum is a kind of gum", "pln": ["(: cnet_isa_eb8ebdb62a (IsA sweet_gum gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet gum is a kind of gumwood", "pln": ["(: cnet_isa_397e8afda9 (IsA sweet_gum gumwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet gum is a kind of liquidambar", "pln": ["(: cnet_isa_fbd1fce452 (IsA sweet_gum liquidambar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet lemon is a kind of genus citrus", "pln": ["(: cnet_isa_c6eb03db02 (IsA sweet_lemon genus_citrus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet lemon is a kind of lemon", "pln": ["(: cnet_isa_f368507c2b (IsA sweet_lemon lemon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet marjoram is a kind of origanum", "pln": ["(: cnet_isa_436316eec4 (IsA sweet_marjoram origanum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet melon is a kind of melon", "pln": ["(: cnet_isa_c3549d4d50 (IsA sweet_melon melon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet nothing is a kind of nothing", "pln": ["(: cnet_isa_fce2401c6e (IsA sweet_nothing nothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet oil is a kind of vegetable oil", "pln": ["(: cnet_isa_d006cbcdc7 (IsA sweet_oil vegetable_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet orange is a kind of orange", "pln": ["(: cnet_isa_73696501ca (IsA sweet_orange orange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet pea is a kind of vine", "pln": ["(: cnet_isa_88c40af32d (IsA sweet_pea vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet pepper is a kind of pepper", "pln": ["(: cnet_isa_efdc3d2dce (IsA sweet_pepper pepper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet pepper is a kind of capsicum", "pln": ["(: cnet_isa_600c6f5305 (IsA sweet_pepper capsicum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet pepperbush is a kind of shrub", "pln": ["(: cnet_isa_cc8489de44 (IsA sweet_pepperbush shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet pickle is a kind of pickle", "pln": ["(: cnet_isa_9f9f1bfdc6 (IsA sweet_pickle pickle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet potato is a kind of root vegetable", "pln": ["(: cnet_isa_b255f95cb0 (IsA sweet_potato root_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet potato is a kind of morning glory", "pln": ["(: cnet_isa_5f7b02fd73 (IsA sweet_potato morning_glory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet potato ring rot is a kind of plant disease", "pln": ["(: cnet_isa_b4bea858c5 (IsA sweet_potato_ring_rot plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet potato whitefly is a kind of whitefly", "pln": ["(: cnet_isa_cada582275 (IsA sweet_potato_whitefly whitefly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet roll is a kind of bun", "pln": ["(: cnet_isa_f00b35f8ec (IsA sweet_roll bun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet sand verbena is a kind of sand verbena", "pln": ["(: cnet_isa_8de5dbbab2 (IsA sweet_sand_verbena sand_verbena) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet scabious is a kind of scabious", "pln": ["(: cnet_isa_ac1b554840 (IsA sweet_scabious scabious) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet sultan is a kind of flower", "pln": ["(: cnet_isa_bd096bc45b (IsA sweet_sultan flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet tooth is a kind of appetite", "pln": ["(: cnet_isa_6b907ed36a (IsA sweet_tooth appetite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet unicorn plant is a kind of herb", "pln": ["(: cnet_isa_161b23c784 (IsA sweet_unicorn_plant herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet vermouth is a kind of vermouth", "pln": ["(: cnet_isa_cb879240ea (IsA sweet_vermouth vermouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet vetch is a kind of subshrub", "pln": ["(: cnet_isa_c09b2306b6 (IsA sweet_vetch subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet violet is a kind of violet", "pln": ["(: cnet_isa_bf4054f7ca (IsA sweet_violet violet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet white violet is a kind of violet", "pln": ["(: cnet_isa_b5d1ebd327 (IsA sweet_white_violet violet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sweet william is a kind of pink", "pln": ["(: cnet_isa_257aa7d42d (IsA sweet_william pink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet woodruff is a kind of herb", "pln": ["(: cnet_isa_f1b690a5ad (IsA sweet_woodruff herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet woodruff is a kind of bedstraw", "pln": ["(: cnet_isa_b2ca3d9d88 (IsA sweet_woodruff bedstraw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweet wormwood is a kind of wormwood", "pln": ["(: cnet_isa_94d170c70f (IsA sweet_wormwood wormwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweetbread is a kind of variety meat", "pln": ["(: cnet_isa_cfaed933b0 (IsA sweetbread variety_meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweetbrier is a kind of rose", "pln": ["(: cnet_isa_b06a5ef6db (IsA sweetbrier rose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sweetening is a kind of seasoning", "pln": ["(: cnet_isa_cf635022aa (IsA sweetening seasoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweetening is a kind of flavorer", "pln": ["(: cnet_isa_e1d3052247 (IsA sweetening flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweetheart is a kind of good person", "pln": ["(: cnet_isa_43b4689f55 (IsA sweetheart good_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweetheart is a kind of lover", "pln": ["(: cnet_isa_c4282d0029 (IsA sweetheart lover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweetleaf is a kind of angiospermous yellowwood", "pln": ["(: cnet_isa_1f2051050a (IsA sweetleaf angiospermous_yellowwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweetmeat is a kind of sweet", "pln": ["(: cnet_isa_8d1c3607df (IsA sweetmeat sweet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sweetness is a kind of taste property", "pln": ["(: cnet_isa_a7ecd0898d (IsA sweetness taste_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweetness and light is a kind of affability", "pln": ["(: cnet_isa_9b08ed3b26 (IsA sweetness_and_light affability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sweetsop is a kind of custard apple", "pln": ["(: cnet_isa_a05f16af2a (IsA sweetsop custard_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swell is a kind of crescendo", "pln": ["(: cnet_isa_28456d14c9 (IsA swell crescendo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "swell is a kind of wave", "pln": ["(: cnet_isa_5606ab1ddf (IsA swell wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swell is a kind of natural elevation", "pln": ["(: cnet_isa_e3cc23e6ee (IsA swell natural_elevation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swelling is a kind of enlargement", "pln": ["(: cnet_isa_fdd191039e (IsA swelling enlargement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swelling is a kind of symptom", "pln": ["(: cnet_isa_b2742fcd78 (IsA swelling symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swertia is a kind of dicot genus", "pln": ["(: cnet_isa_ba563eb37f (IsA swertia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swerve is a kind of turn", "pln": ["(: cnet_isa_9d761a5df5 (IsA swerve turn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swietinia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_15c874ea1a (IsA swietinia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swift is a kind of apodiform bird", "pln": ["(: cnet_isa_4618ea567f (IsA swift apodiform_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swiftlet is a kind of swift", "pln": ["(: cnet_isa_a483959283 (IsA swiftlet swift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "swimmer is a kind of athlete", "pln": ["(: cnet_isa_9619b41af9 (IsA swimmer athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "swimmer is a kind of traveler", "pln": ["(: cnet_isa_60671b35fe (IsA swimmer traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swimmeret is a kind of extremity", "pln": ["(: cnet_isa_52fb66dc5d (IsA swimmeret extremity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swimming is a kind of sport", "pln": ["(: cnet_isa_bcfc44a4a1 (IsA swimming sport) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swimming is a kind of water sport", "pln": ["(: cnet_isa_2b8e73cf46 (IsA swimming water_sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swimming crab is a kind of crab", "pln": ["(: cnet_isa_ce115877a5 (IsA swimming_crab crab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swimming event is a kind of match", "pln": ["(: cnet_isa_bd8c5cbfd2 (IsA swimming_event match) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swimming hole is a kind of pond", "pln": ["(: cnet_isa_2666d79179 (IsA swimming_hole pond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swimming kick is a kind of kick", "pln": ["(: cnet_isa_63378fe9d5 (IsA swimming_kick kick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swimming meet is a kind of meet", "pln": ["(: cnet_isa_ac9412791c (IsA swimming_meet meet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swimming pool is a kind of athletic facility", "pln": ["(: cnet_isa_a58f45345e (IsA swimming_pool athletic_facility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swimming pool is a kind of pool", "pln": ["(: cnet_isa_7c25043027 (IsA swimming_pool pool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swimming stroke is a kind of stroke", "pln": ["(: cnet_isa_a61482fff8 (IsA swimming_stroke stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swimming trunk is a kind of swimsuit", "pln": ["(: cnet_isa_e944519ba7 (IsA swimming_trunk swimsuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swimsuit is a kind of swimwear", "pln": ["(: cnet_isa_d817ef9aa0 (IsA swimsuit swimwear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swimsuit is a kind of garment", "pln": ["(: cnet_isa_46869833ea (IsA swimsuit garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swindle is a kind of fraud", "pln": ["(: cnet_isa_bd54f71441 (IsA swindle fraud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swindler is a kind of deceiver", "pln": ["(: cnet_isa_b336d2da0a (IsA swindler deceiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swine is a kind of even toed ungulate", "pln": ["(: cnet_isa_c001a79443 (IsA swine even_toed_ungulate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swine influenza is a kind of influenza", "pln": ["(: cnet_isa_d6ed2b749b (IsA swine_influenza influenza) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swineherd is a kind of herder", "pln": ["(: cnet_isa_fc9efb1d28 (IsA swineherd herder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swing is a kind of blow", "pln": ["(: cnet_isa_bb84a54c09 (IsA swing blow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swing is a kind of country dance", "pln": ["(: cnet_isa_1034287d28 (IsA swing country_dance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "swing is a kind of motion", "pln": ["(: cnet_isa_687a83bd6a (IsA swing motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swing is a kind of mechanical device", "pln": ["(: cnet_isa_db7c55bac7 (IsA swing mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swing is a kind of plaything", "pln": ["(: cnet_isa_234bc80be1 (IsA swing plaything) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swing is a kind of jazz", "pln": ["(: cnet_isa_1802ddfec6 (IsA swing jazz) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swing is a kind of action", "pln": ["(: cnet_isa_a835767145 (IsA swing action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swing door is a kind of door", "pln": ["(: cnet_isa_4b35df22bb (IsA swing_door door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swing voter is a kind of voter", "pln": ["(: cnet_isa_dc50529a3b (IsA swing_voter voter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swinger is a kind of athlete", "pln": ["(: cnet_isa_21a28a3834 (IsA swinger athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swinger is a kind of libertine", "pln": ["(: cnet_isa_ad00a02077 (IsA swinger libertine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swinging chad is a kind of chad", "pln": ["(: cnet_isa_b610a98348 (IsA swinging_chad chad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swipe is a kind of stroke", "pln": ["(: cnet_isa_328868323e (IsA swipe stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swish is a kind of sound", "pln": ["(: cnet_isa_66e92af59e (IsA swish sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swiss army knife is a kind of practical tool", "pln": ["(: cnet_isa_273aa8a709 (IsA swiss_army_knife practical_tool) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swiss army knife is a kind of useful tool", "pln": ["(: cnet_isa_6a45230bd1 (IsA swiss_army_knife useful_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swiss canton is a kind of guangzhou", "pln": ["(: cnet_isa_85efbe8e96 (IsA swiss_canton guangzhou) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swiss cheese is a kind of cheese", "pln": ["(: cnet_isa_defb0b51d7 (IsA swiss_cheese cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swiss franc is a kind of franc", "pln": ["(: cnet_isa_c100647109 (IsA swiss_franc franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swiss mountain pine is a kind of pine", "pln": ["(: cnet_isa_3c083d2b14 (IsA swiss_mountain_pine pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swiss people is a kind of nation", "pln": ["(: cnet_isa_a8359b9e40 (IsA swiss_people nation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swiss pine is a kind of pine", "pln": ["(: cnet_isa_c0441ee579 (IsA swiss_pine pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swiss steak is a kind of dish", "pln": ["(: cnet_isa_3893a8b28a (IsA swiss_steak dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "switch is a kind of basketball play", "pln": ["(: cnet_isa_ab87e7288e (IsA switch basketball_play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "switch is a kind of change", "pln": ["(: cnet_isa_b7e639bfdd (IsA switch change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "switch is a kind of control", "pln": ["(: cnet_isa_d39975083f (IsA switch control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "switch is a kind of hairpiece", "pln": ["(: cnet_isa_970fae34b5 (IsA switch hairpiece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "switch is a kind of instrument of punishment", "pln": ["(: cnet_isa_2bd071a25c (IsA switch instrument_of_punishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "switch is a kind of railroad track", "pln": ["(: cnet_isa_f83dbb662e (IsA switch railroad_track) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "switch engine is a kind of locomotive", "pln": ["(: cnet_isa_fa1c690c69 (IsA switch_engine locomotive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "switch grass is a kind of panic grass", "pln": ["(: cnet_isa_605fc7e245 (IsA switch_grass panic_grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "switch hitter is a kind of batter", "pln": ["(: cnet_isa_a229bc0c4b (IsA switch_hitter batter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "switch hitter is a kind of bisexual", "pln": ["(: cnet_isa_711cac7f83 (IsA switch_hitter bisexual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "switchblade is a kind of pocketknife", "pln": ["(: cnet_isa_42b66befc8 (IsA switchblade pocketknife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "switchboard is a kind of central", "pln": ["(: cnet_isa_e9bffe0e4d (IsA switchboard central) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "switcher is a kind of oppressor", "pln": ["(: cnet_isa_ad582a5ddf (IsA switcher oppressor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "switcheroo is a kind of switch", "pln": ["(: cnet_isa_b8a8b96328 (IsA switcheroo switch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "switchman is a kind of operator", "pln": ["(: cnet_isa_3d0d79736a (IsA switchman operator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "switzerland is a kind of country", "pln": ["(: cnet_isa_8b114d9980 (IsA switzerland country) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "switzerland is a kind of country in europe", "pln": ["(: cnet_isa_c4368ab617 (IsA switzerland country_in_europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "switzerland is a kind of neutral country", "pln": ["(: cnet_isa_f22656346f (IsA switzerland neutral_country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swivel is a kind of coupling", "pln": ["(: cnet_isa_4b9b4d6f4b (IsA swivel coupling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swivel chair is a kind of chair", "pln": ["(: cnet_isa_6a101faaaf (IsA swivel_chair chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swivet is a kind of panic", "pln": ["(: cnet_isa_9c845caf1e (IsA swivet panic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swiz is a kind of swindle", "pln": ["(: cnet_isa_33850e67b1 (IsA swiz swindle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swizzle is a kind of mixed drink", "pln": ["(: cnet_isa_5941bcd4cd (IsA swizzle mixed_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swizzle stick is a kind of stick", "pln": ["(: cnet_isa_3db82a9997 (IsA swizzle_stick stick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swoop is a kind of descent", "pln": ["(: cnet_isa_bc7bafdff6 (IsA swoop descent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swoop is a kind of foray", "pln": ["(: cnet_isa_816813cf6a (IsA swoop foray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swoop is a kind of glissando", "pln": ["(: cnet_isa_c61b154acd (IsA swoop glissando) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swoosh is a kind of noise", "pln": ["(: cnet_isa_28bfef4131 (IsA swoosh noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sword is a kind of weapon", "pln": ["(: cnet_isa_37e5ea7152 (IsA sword weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sword bean is a kind of vine", "pln": ["(: cnet_isa_9ac3c3159e (IsA sword_bean vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sword cane is a kind of cane", "pln": ["(: cnet_isa_802f7f7976 (IsA sword_cane cane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sword cut is a kind of scar", "pln": ["(: cnet_isa_08c40d28a2 (IsA sword_cut scar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sword dance is a kind of folk dancing", "pln": ["(: cnet_isa_07c639bfc0 (IsA sword_dance folk_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sword fern is a kind of fern", "pln": ["(: cnet_isa_5c87f1b07d (IsA sword_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sword grass is a kind of grass", "pln": ["(: cnet_isa_5ab7c722fe (IsA sword_grass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sword knot is a kind of tassel", "pln": ["(: cnet_isa_749ee9cf1a (IsA sword_knot tassel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sword of damocle is a kind of hazard", "pln": ["(: cnet_isa_f22105d0d1 (IsA sword_of_damocle hazard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swordfish is a kind of scombroid", "pln": ["(: cnet_isa_a2e8607b3b (IsA swordfish scombroid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "swordfish is a kind of saltwater fish", "pln": ["(: cnet_isa_090a694c2a (IsA swordfish saltwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swordsmanship is a kind of skill", "pln": ["(: cnet_isa_6e39c346df (IsA swordsmanship skill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swordtail is a kind of cyprinodont", "pln": ["(: cnet_isa_6c9e46a22a (IsA swordtail cyprinodont) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swot is a kind of learner", "pln": ["(: cnet_isa_ace4d0d563 (IsA swot learner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "swung dash is a kind of punctuation", "pln": ["(: cnet_isa_d6fe358e27 (IsA swung_dash punctuation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sycamore is a kind of fig tree", "pln": ["(: cnet_isa_a4a06778cb (IsA sycamore fig_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sycamore is a kind of maple", "pln": ["(: cnet_isa_97b13a8d2a (IsA sycamore maple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sycamore is a kind of wood", "pln": ["(: cnet_isa_4d7f490ebd (IsA sycamore wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syconium is a kind of aggregate fruit", "pln": ["(: cnet_isa_db5a4f1536 (IsA syconium aggregate_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sycophancy is a kind of obsequiousness", "pln": ["(: cnet_isa_6fa6aebfda (IsA sycophancy obsequiousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sycophant is a kind of flatterer", "pln": ["(: cnet_isa_7dfdf856d3 (IsA sycophant flatterer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sydenham s chorea is a kind of chorea", "pln": ["(: cnet_isa_ed31720932 (IsA sydenham_s_chorea chorea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syllabary is a kind of script", "pln": ["(: cnet_isa_2ae5d0f7ad (IsA syllabary script) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syllabication is a kind of division", "pln": ["(: cnet_isa_e27c146031 (IsA syllabication division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syllabicity is a kind of language system", "pln": ["(: cnet_isa_d8475bcf40 (IsA syllabicity language_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syllable is a kind of language unit", "pln": ["(: cnet_isa_97a29105f7 (IsA syllable language_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syllabub is a kind of dessert", "pln": ["(: cnet_isa_4ec65c1651 (IsA syllabub dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syllabub is a kind of drink", "pln": ["(: cnet_isa_af7d9ece2d (IsA syllabub drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syllepsis is a kind of zeugma", "pln": ["(: cnet_isa_756f4b6080 (IsA syllepsis zeugma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syllogism is a kind of deduction", "pln": ["(: cnet_isa_115c03eea5 (IsA syllogism deduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syllogist is a kind of logician", "pln": ["(: cnet_isa_0929918a0f (IsA syllogist logician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sylph is a kind of imaginary being", "pln": ["(: cnet_isa_e006dbb096 (IsA sylph imaginary_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sylph is a kind of woman", "pln": ["(: cnet_isa_15ea326042 (IsA sylph woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sylvan is a kind of spirit", "pln": ["(: cnet_isa_03961fc592 (IsA sylvan spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sylvanite is a kind of mineral", "pln": ["(: cnet_isa_a1899d51f0 (IsA sylvanite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sylviidae is a kind of bird family", "pln": ["(: cnet_isa_34a577077f (IsA sylviidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sylviinae is a kind of bird family", "pln": ["(: cnet_isa_cd3ced3e9b (IsA sylviinae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sylvilagus is a kind of mammal genus", "pln": ["(: cnet_isa_5420fc0bcf (IsA sylvilagus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sylvite is a kind of mineral", "pln": ["(: cnet_isa_2e8f41323a (IsA sylvite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "symbion pandora is a kind of invertebrate", "pln": ["(: cnet_isa_5a44d99404 (IsA symbion_pandora invertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symbiosis is a kind of mutuality", "pln": ["(: cnet_isa_556e673a74 (IsA symbiosis mutuality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "symbol is a kind of representational process", "pln": ["(: cnet_isa_7e3da32653 (IsA symbol representational_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symbol is a kind of signal", "pln": ["(: cnet_isa_77467055f4 (IsA symbol signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symbolatry is a kind of idolatry", "pln": ["(: cnet_isa_ac03ab60cc (IsA symbolatry idolatry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symbolic logic is a kind of logic", "pln": ["(: cnet_isa_27456f573c (IsA symbolic_logic logic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symbolic logician is a kind of logician", "pln": ["(: cnet_isa_0714e5a348 (IsA symbolic_logician logician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symbolism is a kind of practice", "pln": ["(: cnet_isa_6330c356ca (IsA symbolism practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symbolism is a kind of symbol", "pln": ["(: cnet_isa_f149f1e9ce (IsA symbolism symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symbolism is a kind of artistic movement", "pln": ["(: cnet_isa_8dadcd9ef4 (IsA symbolism artistic_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symbolist is a kind of artist", "pln": ["(: cnet_isa_b82ca02358 (IsA symbolist artist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symbolist is a kind of interpreter", "pln": ["(: cnet_isa_35fb732b31 (IsA symbolist interpreter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symbolization is a kind of meaning", "pln": ["(: cnet_isa_8221415ab4 (IsA symbolization meaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symbolizing is a kind of figuration", "pln": ["(: cnet_isa_3bf93d6514 (IsA symbolizing figuration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symbology is a kind of ology", "pln": ["(: cnet_isa_fb364ea299 (IsA symbology ology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symmetry is a kind of spatial property", "pln": ["(: cnet_isa_c5482838b4 (IsA symmetry spatial_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symmetry is a kind of balance", "pln": ["(: cnet_isa_6c30579d48 (IsA symmetry balance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sympathectomy is a kind of ablation", "pln": ["(: cnet_isa_f73c89b1cf (IsA sympathectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sympathetic nervous system is a kind of nervous system", "pln": ["(: cnet_isa_20ccabf3d1 (IsA sympathetic_nervous_system nervous_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sympathetic vibration is a kind of oscillation", "pln": ["(: cnet_isa_e57b1896fd (IsA sympathetic_vibration oscillation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sympathizer is a kind of communicator", "pln": ["(: cnet_isa_cb86af9a67 (IsA sympathizer communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sympathizer is a kind of supporter", "pln": ["(: cnet_isa_1a299508d8 (IsA sympathizer supporter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sympathy is a kind of inclination", "pln": ["(: cnet_isa_4887ff502d (IsA sympathy inclination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sympathy is a kind of feeling", "pln": ["(: cnet_isa_b738db4aa5 (IsA sympathy feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sympathy is a kind of affinity", "pln": ["(: cnet_isa_6f7e1e800c (IsA sympathy affinity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sympathy card is a kind of card", "pln": ["(: cnet_isa_682aa4ad9c (IsA sympathy_card card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "sympathy strike is a kind of strike", "pln": ["(: cnet_isa_1439b4ac32 (IsA sympathy_strike strike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "sympatry is a kind of occurrence", "pln": ["(: cnet_isa_a30c50a9e6 (IsA sympatry occurrence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symphalangus is a kind of mammal genus", "pln": ["(: cnet_isa_ca5530168f (IsA symphalangus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "symphonic poem is a kind of musical composition", "pln": ["(: cnet_isa_21cb2f8264 (IsA symphonic_poem musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "symphonist is a kind of composer", "pln": ["(: cnet_isa_88a5fb71c0 (IsA symphonist composer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "symphony is a kind of sonata", "pln": ["(: cnet_isa_331bdec096 (IsA symphony sonata) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "symphoricarpos is a kind of asterid dicot genus", "pln": ["(: cnet_isa_060f07c0af (IsA symphoricarpos asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symphony hall is a kind of where orchestra play", "pln": ["(: cnet_isa_a3b36a6319 (IsA symphony_hall where_orchestra_play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symphony orchestra is a kind of orchestra", "pln": ["(: cnet_isa_3a8b952683 (IsA symphony_orchestra orchestra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symphoricarpo is a kind of asterid dicot genus", "pln": ["(: cnet_isa_c3f3e738e4 (IsA symphoricarpo asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symphyla is a kind of class", "pln": ["(: cnet_isa_2ee51be6f3 (IsA symphyla class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symphysion is a kind of craniometric point", "pln": ["(: cnet_isa_00c36c1731 (IsA symphysion craniometric_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symphysis is a kind of organic process", "pln": ["(: cnet_isa_c4adcbb0a3 (IsA symphysis organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symphysis is a kind of adhesion", "pln": ["(: cnet_isa_fbc8443587 (IsA symphysis adhesion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symphytum is a kind of plant genus", "pln": ["(: cnet_isa_9e740f8b61 (IsA symphytum plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symplocaceae is a kind of dicot family", "pln": ["(: cnet_isa_51b0614136 (IsA symplocaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symplocarpus is a kind of monocot genus", "pln": ["(: cnet_isa_9169a1bf7b (IsA symplocarpus monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symploce is a kind of repetition", "pln": ["(: cnet_isa_8f1b4890ae (IsA symploce repetition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symplocus is a kind of dicot genus", "pln": ["(: cnet_isa_37b0425537 (IsA symplocus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symposiast is a kind of attendant", "pln": ["(: cnet_isa_0831e0727f (IsA symposiast attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symposium is a kind of conference", "pln": ["(: cnet_isa_39160d4e11 (IsA symposium conference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symptom is a kind of indication", "pln": ["(: cnet_isa_c2801acd93 (IsA symptom indication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "symptom is a kind of evidence", "pln": ["(: cnet_isa_6650c96a9b (IsA symptom evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synagogue is a kind of place of worship", "pln": ["(: cnet_isa_96afbf6287 (IsA synagogue place_of_worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synagrop is a kind of fish genus", "pln": ["(: cnet_isa_1a48c213dc (IsA synagrop fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synanceja is a kind of fish genus", "pln": ["(: cnet_isa_c1959edbf8 (IsA synanceja fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synapse is a kind of junction", "pln": ["(: cnet_isa_debb282ccf (IsA synapse junction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synapsid is a kind of reptile", "pln": ["(: cnet_isa_3bc628d270 (IsA synapsid reptile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synapsida is a kind of class", "pln": ["(: cnet_isa_4821ad8b23 (IsA synapsida class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synapsis is a kind of organic process", "pln": ["(: cnet_isa_7ef8afb758 (IsA synapsis organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synaptomy is a kind of mammal genus", "pln": ["(: cnet_isa_edc2799a2f (IsA synaptomy mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "syncategorem is a kind of word", "pln": ["(: cnet_isa_c5aa4d2488 (IsA syncategorem word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synchrocyclotron is a kind of cyclotron", "pln": ["(: cnet_isa_1cac33c35d (IsA synchrocyclotron cyclotron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synchroflash is a kind of device", "pln": ["(: cnet_isa_fa28867c5b (IsA synchroflash device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synchromesh is a kind of system", "pln": ["(: cnet_isa_54bc973d28 (IsA synchromesh system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synchronic linguistic is a kind of linguistic", "pln": ["(: cnet_isa_ee6381a48e (IsA synchronic_linguistic linguistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synchronism is a kind of temporal relation", "pln": ["(: cnet_isa_8c652d1672 (IsA synchronism temporal_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synchronization is a kind of adjustment", "pln": ["(: cnet_isa_6aae66d525 (IsA synchronization adjustment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synchronization is a kind of coordination", "pln": ["(: cnet_isa_df4f308cb5 (IsA synchronization coordination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synchronous converter is a kind of electrical converter", "pln": ["(: cnet_isa_08da85f3b4 (IsA synchronous_converter electrical_converter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "synchronous motor is a kind of electric motor", "pln": ["(: cnet_isa_d2cfd0fad9 (IsA synchronous_motor electric_motor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synchronous operation is a kind of operation", "pln": ["(: cnet_isa_f52af198a2 (IsA synchronous_operation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synchroscope is a kind of measuring instrument", "pln": ["(: cnet_isa_57ad0ae564 (IsA synchroscope measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "synchrotron is a kind of cyclotron", "pln": ["(: cnet_isa_3e24c25f46 (IsA synchrotron cyclotron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synchytriaceae is a kind of fungus family", "pln": ["(: cnet_isa_db98be630a (IsA synchytriaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synchytrium is a kind of fungus genus", "pln": ["(: cnet_isa_42de424798 (IsA synchytrium fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syncopation is a kind of rhythm", "pln": ["(: cnet_isa_fd2a423fe6 (IsA syncopation rhythm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syncopation is a kind of music", "pln": ["(: cnet_isa_68127d29db (IsA syncopation music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syncopator is a kind of jazz musician", "pln": ["(: cnet_isa_d4940b547d (IsA syncopator jazz_musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "syncope is a kind of articulation", "pln": ["(: cnet_isa_7c0234d38e (IsA syncope articulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syncretism is a kind of fusion", "pln": ["(: cnet_isa_3c90e600d3 (IsA syncretism fusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syncretism is a kind of union", "pln": ["(: cnet_isa_a214376fed (IsA syncretism union) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syncytium is a kind of cytoplasm", "pln": ["(: cnet_isa_a877168425 (IsA syncytium cytoplasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syndactyly is a kind of birth defect", "pln": ["(: cnet_isa_fb5c8c4ce2 (IsA syndactyly birth_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "syndic is a kind of agent", "pln": ["(: cnet_isa_9bdcbfff92 (IsA syndic agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syndicalism is a kind of political movement", "pln": ["(: cnet_isa_c496577573 (IsA syndicalism political_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syndicate is a kind of new agency", "pln": ["(: cnet_isa_f752ba4111 (IsA syndicate new_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syndicate is a kind of organized crime", "pln": ["(: cnet_isa_c4715b1d34 (IsA syndicate organized_crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syndication is a kind of organization", "pln": ["(: cnet_isa_b42c2bf416 (IsA syndication organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syndication is a kind of selling", "pln": ["(: cnet_isa_8a45e7561b (IsA syndication selling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syndicator is a kind of businessman", "pln": ["(: cnet_isa_4fd72a39af (IsA syndicator businessman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "syndrome is a kind of complex", "pln": ["(: cnet_isa_2a3d3b6e60 (IsA syndrome complex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syndrome is a kind of symptom", "pln": ["(: cnet_isa_079d451948 (IsA syndrome symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "synecdoche is a kind of trope", "pln": ["(: cnet_isa_1c83b7f63e (IsA synecdoche trope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synechia is a kind of adhesion", "pln": ["(: cnet_isa_579088fca8 (IsA synechia adhesion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synentognathi is a kind of animal order", "pln": ["(: cnet_isa_b8f8bea855 (IsA synentognathi animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synercus is a kind of mammal genus", "pln": ["(: cnet_isa_e085253a97 (IsA synercus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syneresis is a kind of chemical process", "pln": ["(: cnet_isa_50496d0651 (IsA syneresis chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syneresis is a kind of linguistic process", "pln": ["(: cnet_isa_95d0b246dd (IsA syneresis linguistic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synergism is a kind of theological doctrine", "pln": ["(: cnet_isa_99f4fb81f4 (IsA synergism theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synergist is a kind of drug", "pln": ["(: cnet_isa_a97b599f3d (IsA synergist drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synergy is a kind of natural process", "pln": ["(: cnet_isa_a577ec8411 (IsA synergy natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synesthesia is a kind of sensation", "pln": ["(: cnet_isa_14c8c67b47 (IsA synesthesia sensation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synesthetic metaphor is a kind of metaphor", "pln": ["(: cnet_isa_8f28a83472 (IsA synesthetic_metaphor metaphor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syngnathidae is a kind of fish family", "pln": ["(: cnet_isa_63bbd489cc (IsA syngnathidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syngnathus is a kind of fish genus", "pln": ["(: cnet_isa_bcbf6d7259 (IsA syngnathus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syngonium is a kind of monocot genus", "pln": ["(: cnet_isa_68af654788 (IsA syngonium monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synizesis is a kind of organic process", "pln": ["(: cnet_isa_e91f15cd1c (IsA synizesis organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synod is a kind of council", "pln": ["(: cnet_isa_7a67a3537b (IsA synod council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synodontidae is a kind of fish family", "pln": ["(: cnet_isa_dbc1eac265 (IsA synodontidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synonym is a kind of word", "pln": ["(: cnet_isa_b807905fd9 (IsA synonym word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synonymist is a kind of lexicographer", "pln": ["(: cnet_isa_d534625426 (IsA synonymist lexicographer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synonymy is a kind of semantic relation", "pln": ["(: cnet_isa_799f33eca1 (IsA synonymy semantic_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synoptic gospel is a kind of sacred text", "pln": ["(: cnet_isa_b167acf396 (IsA synoptic_gospel sacred_text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synovia is a kind of secretion", "pln": ["(: cnet_isa_dcef5d5a92 (IsA synovia secretion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synovial joint is a kind of joint", "pln": ["(: cnet_isa_15075520f0 (IsA synovial_joint joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "synovial membrane is a kind of membrane", "pln": ["(: cnet_isa_e51423acc2 (IsA synovial_membrane membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synovitis is a kind of inflammation", "pln": ["(: cnet_isa_5d893b806b (IsA synovitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synset is a kind of set", "pln": ["(: cnet_isa_7b83373aab (IsA synset set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syntagma is a kind of string of word", "pln": ["(: cnet_isa_123bf39662 (IsA syntagma string_of_word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syntax is a kind of system", "pln": ["(: cnet_isa_db87239e86 (IsA syntax system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syntax is a kind of grammar", "pln": ["(: cnet_isa_e46086f80f (IsA syntax grammar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syntax is a kind of structure", "pln": ["(: cnet_isa_b5ff681c52 (IsA syntax structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syntax checker is a kind of program", "pln": ["(: cnet_isa_c66be351dd (IsA syntax_checker program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syntax error is a kind of software error", "pln": ["(: cnet_isa_7d124d71ba (IsA syntax_error software_error) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syntax language is a kind of metalanguage", "pln": ["(: cnet_isa_dfde9f93c5 (IsA syntax_language metalanguage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synthesis is a kind of reasoning", "pln": ["(: cnet_isa_fdbcebdaa5 (IsA synthesis reasoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synthesis is a kind of chemical process", "pln": ["(: cnet_isa_5761f31263 (IsA synthesis chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synthesist is a kind of intellectual", "pln": ["(: cnet_isa_c510c20c79 (IsA synthesist intellectual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synthesizer is a kind of electronic instrument", "pln": ["(: cnet_isa_608c8c961c (IsA synthesizer electronic_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synthesizer is a kind of keyboard instrument", "pln": ["(: cnet_isa_bb466422a2 (IsA synthesizer keyboard_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synthetic is a kind of compound", "pln": ["(: cnet_isa_3f8fb91dec (IsA synthetic compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synthetic cubism is a kind of cubism", "pln": ["(: cnet_isa_44f11744ae (IsA synthetic_cubism cubism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synthetic resin is a kind of polymer", "pln": ["(: cnet_isa_e5d0aca348 (IsA synthetic_resin polymer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synthetic resin is a kind of resin", "pln": ["(: cnet_isa_89a0c1abba (IsA synthetic_resin resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synthetic rubber is a kind of synthetic", "pln": ["(: cnet_isa_d7cedcb48b (IsA synthetic_rubber synthetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "synthetism is a kind of genre", "pln": ["(: cnet_isa_612fe09bcf (IsA synthetism genre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syphilis is a kind of venereal disease", "pln": ["(: cnet_isa_1aec635c91 (IsA syphilis venereal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syphilitic is a kind of sick person", "pln": ["(: cnet_isa_819b6bc792 (IsA syphilitic sick_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syphon is a kind of organ", "pln": ["(: cnet_isa_0b04da3ed4 (IsA syphon organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syrian is a kind of asiatic", "pln": ["(: cnet_isa_7a496c6b1a (IsA syrian asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syrian bear is a kind of brown bear", "pln": ["(: cnet_isa_c73abae161 (IsA syrian_bear brown_bear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syrian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_149778084d (IsA syrian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syrian pound is a kind of syrian monetary unit", "pln": ["(: cnet_isa_ba57bd048f (IsA syrian_pound syrian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syringa is a kind of dicot genus", "pln": ["(: cnet_isa_f6964edf3f (IsA syringa dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syringe is a kind of medical instrument", "pln": ["(: cnet_isa_5859eb24c5 (IsA syringe medical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syrinx is a kind of structure", "pln": ["(: cnet_isa_c91fe97458 (IsA syrinx structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syrrhapte is a kind of bird genus", "pln": ["(: cnet_isa_a087645fee (IsA syrrhapte bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "syrup is a kind of sweetening", "pln": ["(: cnet_isa_d97e0645dc (IsA syrup sweetening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "system is a kind of instrumentality", "pln": ["(: cnet_isa_89e71bfd7f (IsA system instrumentality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "system is a kind of body part", "pln": ["(: cnet_isa_2b412d282b (IsA system body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "system is a kind of live body", "pln": ["(: cnet_isa_dc01b144f5 (IsA system live_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "system is a kind of method", "pln": ["(: cnet_isa_1b804b3db0 (IsA system method) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "system is a kind of plan of action", "pln": ["(: cnet_isa_d933436cff (IsA system plan_of_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "system is a kind of group", "pln": ["(: cnet_isa_16316ffc4b (IsA system group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "system is a kind of substance", "pln": ["(: cnet_isa_b99b2e5e8b (IsA system substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "system administrator is a kind of computer user", "pln": ["(: cnet_isa_4fe4c6e804 (IsA system_administrator computer_user) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "system administrator is a kind of supervisor", "pln": ["(: cnet_isa_7b139fc80d (IsA system_administrator supervisor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "system call is a kind of call", "pln": ["(: cnet_isa_efdc61e8ef (IsA system_call call) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "system clock is a kind of clock", "pln": ["(: cnet_isa_31b55cebb4 (IsA system_clock clock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "system clock is a kind of electronic device", "pln": ["(: cnet_isa_8d2e90aae6 (IsA system_clock electronic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "system of weights is a kind of system of measurement", "pln": ["(: cnet_isa_77f989bdc5 (IsA system_of_weights system_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "system command is a kind of direction", "pln": ["(: cnet_isa_d9c0fc86df (IsA system_command direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "system error is a kind of instruction", "pln": ["(: cnet_isa_9cce0b93c1 (IsA system_error instruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "system of measurement is a kind of measure", "pln": ["(: cnet_isa_a53aa644dd (IsA system_of_measurement measure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "system of weight is a kind of system of measurement", "pln": ["(: cnet_isa_0a90abf0a2 (IsA system_of_weight system_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "system of weight and measure is a kind of system of measurement", "pln": ["(: cnet_isa_78099ef96e (IsA system_of_weight_and_measure system_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "system program is a kind of program", "pln": ["(: cnet_isa_0ce5815804 (IsA system_program program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "systematic is a kind of science", "pln": ["(: cnet_isa_096b6659a7 (IsA systematic science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "systematism is a kind of practice", "pln": ["(: cnet_isa_f17ca7460c (IsA systematism practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "systematization is a kind of organization", "pln": ["(: cnet_isa_e3c34e26da (IsA systematization organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "systeme international d unite is a kind of metric system", "pln": ["(: cnet_isa_20644667c7 (IsA systeme_international_d_unite metric_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "systemic circulation is a kind of circulation", "pln": ["(: cnet_isa_2cacee45de (IsA systemic_circulation circulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "systemic lupus erythematosus is a kind of lupus", "pln": ["(: cnet_isa_d52b222c40 (IsA systemic_lupus_erythematosus lupus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "system analysis is a kind of analysis", "pln": ["(: cnet_isa_ae4edeb1f5 (IsA system_analysis analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "system analyst is a kind of analyst", "pln": ["(: cnet_isa_6365d693b7 (IsA system_analyst analyst) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "systole is a kind of pulse", "pln": ["(: cnet_isa_94eca4a98e (IsA systole pulse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "systolic murmur is a kind of heart murmur", "pln": ["(: cnet_isa_7c69ea5210 (IsA systolic_murmur heart_murmur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "systolic pressure is a kind of blood pressure", "pln": ["(: cnet_isa_a1a680172b (IsA systolic_pressure blood_pressure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "syzygium is a kind of dicot genus", "pln": ["(: cnet_isa_969d0f47b1 (IsA syzygium dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "syzygy is a kind of physical phenomenon", "pln": ["(: cnet_isa_6e7a73094b (IsA syzygy physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "t is a kind of letter", "pln": ["(: cnet_isa_f295456787 (IsA t letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "t ai chi is a kind of martial art", "pln": ["(: cnet_isa_2172a563f3 (IsA t_ai_chi martial_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "t bar lift is a kind of surface lift", "pln": ["(: cnet_isa_5a44a37aee (IsA t_bar_lift surface_lift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "t bone steak is a kind of beefsteak", "pln": ["(: cnet_isa_2428439f1f (IsA t_bone_steak beefsteak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "t cell is a kind of lymphocyte", "pln": ["(: cnet_isa_c23f58ad87 (IsA t_cell lymphocyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "t junction is a kind of junction", "pln": ["(: cnet_isa_62d25d9334 (IsA t_junction junction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "t man is a kind of government agent", "pln": ["(: cnet_isa_f12cd9a4b7 (IsA t_man government_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "t network is a kind of circuit", "pln": ["(: cnet_isa_42065a4a5c (IsA t_network circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "t shirt is a kind of clothe", "pln": ["(: cnet_isa_688a1bed09 (IsA t_shirt clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "t shirt is a kind of piece of clothing", "pln": ["(: cnet_isa_0c4fd7968d (IsA t_shirt piece_of_clothing) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "t square is a kind of drafting instrument", "pln": ["(: cnet_isa_8dc9edb03b (IsA t_square drafting_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "t square is a kind of square", "pln": ["(: cnet_isa_7d91761016 (IsA t_square square) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ta ziyeh is a kind of music", "pln": ["(: cnet_isa_cc479f138c (IsA ta_ziyeh music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tab is a kind of strip", "pln": ["(: cnet_isa_986ba8798f (IsA tab strip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tab key is a kind of key", "pln": ["(: cnet_isa_26cc36bdb4 (IsA tab_key key) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tabanidae is a kind of arthropod family", "pln": ["(: cnet_isa_c981930598 (IsA tabanidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tabard is a kind of tunic", "pln": ["(: cnet_isa_0b031a0576 (IsA tabard tunic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tabasco is a kind of hot pepper", "pln": ["(: cnet_isa_b9e1b28b38 (IsA tabasco hot_pepper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tabasco is a kind of hot sauce", "pln": ["(: cnet_isa_59e13b1811 (IsA tabasco hot_sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tabasco pepper is a kind of capsicum", "pln": ["(: cnet_isa_f0107d3e6e (IsA tabasco_pepper capsicum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tabbouleh is a kind of salad", "pln": ["(: cnet_isa_b0c211d582 (IsA tabbouleh salad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tabby is a kind of domestic cat", "pln": ["(: cnet_isa_080d5ad48b (IsA tabby domestic_cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tabby cat is a kind of cat", "pln": ["(: cnet_isa_6858a5b955 (IsA tabby_cat cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tabernacle is a kind of sanctuary", "pln": ["(: cnet_isa_b453c807cf (IsA tabernacle sanctuary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tabernaemontana is a kind of dicot genus", "pln": ["(: cnet_isa_b1e05edc4c (IsA tabernaemontana dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tabe is a kind of atrophy", "pln": ["(: cnet_isa_8cc6682bfa (IsA tabe atrophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tabe dorsalis is a kind of neurosyphilis", "pln": ["(: cnet_isa_f55068698c (IsA tabe_dorsalis neurosyphilis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tabi is a kind of sock", "pln": ["(: cnet_isa_c088d04803 (IsA tabi sock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tablature is a kind of musical notation", "pln": ["(: cnet_isa_d1f36a5372 (IsA tablature musical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "table is a kind of platform", "pln": ["(: cnet_isa_e7734d5021 (IsA table platform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "table is a kind of furniture", "pln": ["(: cnet_isa_d2205f3766 (IsA table furniture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "table is a kind of array", "pln": ["(: cnet_isa_637e62a5d1 (IsA table array) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "table is a kind of gathering", "pln": ["(: cnet_isa_8ddcf308d3 (IsA table gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "table d hote is a kind of menu", "pln": ["(: cnet_isa_dbd7190527 (IsA table_d_hote menu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "table game is a kind of game", "pln": ["(: cnet_isa_4088d2fabd (IsA table_game game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "table knife is a kind of cutlery", "pln": ["(: cnet_isa_faa67baaea (IsA table_knife cutlery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "table knife is a kind of knife", "pln": ["(: cnet_isa_d6a47b4305 (IsA table_knife knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "table lamp is a kind of lamp", "pln": ["(: cnet_isa_2d4a168667 (IsA table_lamp lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "table linen is a kind of linen", "pln": ["(: cnet_isa_14f6d8c81e (IsA table_linen linen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "table mat is a kind of pad", "pln": ["(: cnet_isa_b794017892 (IsA table_mat pad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "table mountain pine is a kind of pine", "pln": ["(: cnet_isa_f464972e46 (IsA table_mountain_pine pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "table rapping is a kind of psychic phenomena", "pln": ["(: cnet_isa_97fd895d9f (IsA table_rapping psychic_phenomena) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "table saw is a kind of circular saw", "pln": ["(: cnet_isa_7e3d1b1477 (IsA table_saw circular_saw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "table talk is a kind of conversation", "pln": ["(: cnet_isa_172b0d2204 (IsA table_talk conversation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "table tennis is a kind of athletic hobby", "pln": ["(: cnet_isa_a5f36dd46a (IsA table_tennis athletic_hobby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "table tennis is a kind of sport", "pln": ["(: cnet_isa_8a739cc34a (IsA table_tennis sport) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "table tennis is a kind of table game", "pln": ["(: cnet_isa_e01deca658 (IsA table_tennis table_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "table tennis racquet is a kind of paddle", "pln": ["(: cnet_isa_1818721c6a (IsA table_tennis_racquet paddle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "table tennis table is a kind of table", "pln": ["(: cnet_isa_6b11365aee (IsA table_tennis_table table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "table tipping is a kind of psychic phenomena", "pln": ["(: cnet_isa_acfcd92165 (IsA table_tipping psychic_phenomena) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "table wine is a kind of wine", "pln": ["(: cnet_isa_16e4fd9dfa (IsA table_wine wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tableau is a kind of view", "pln": ["(: cnet_isa_d51598328d (IsA tableau view) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tableau is a kind of arrangement", "pln": ["(: cnet_isa_6e01e01079 (IsA tableau arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tablecloth is a kind of table linen", "pln": ["(: cnet_isa_3d5c96c9ad (IsA tablecloth table_linen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tablefork is a kind of fork", "pln": ["(: cnet_isa_a694108da6 (IsA tablefork fork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tableland is a kind of highland", "pln": ["(: cnet_isa_969a0f7fdb (IsA tableland highland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tablemate is a kind of diner", "pln": ["(: cnet_isa_b60143445d (IsA tablemate diner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tablespoon is a kind of bigger than teaspoon", "pln": ["(: cnet_isa_d5c3bbafa2 (IsA tablespoon bigger_than_teaspoon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tablespoon is a kind of larger than teaspoon", "pln": ["(: cnet_isa_1748b73e93 (IsA tablespoon larger_than_teaspoon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tablespoon is a kind of measurement", "pln": ["(: cnet_isa_ad1a697980 (IsA tablespoon measurement) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tablespoon is a kind of spoon", "pln": ["(: cnet_isa_76746d63b0 (IsA tablespoon spoon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tablespoon is a kind of containerful", "pln": ["(: cnet_isa_2a6a44aa63 (IsA tablespoon containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tablespoon is a kind of way of measuring basil", "pln": ["(: cnet_isa_2c4c541a13 (IsA tablespoon way_of_measuring_basil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tablet is a kind of cake", "pln": ["(: cnet_isa_575b6d25cb (IsA tablet cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tablet is a kind of slab", "pln": ["(: cnet_isa_4b47b4eade (IsA tablet slab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tablet armed chair is a kind of chair", "pln": ["(: cnet_isa_d4e6afd915 (IsA tablet_armed_chair chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tabletop is a kind of work surface", "pln": ["(: cnet_isa_5caaef4a48 (IsA tabletop work_surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tableware is a kind of ware", "pln": ["(: cnet_isa_42cc67f42c (IsA tableware ware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tabloid is a kind of newspaper", "pln": ["(: cnet_isa_143e780e32 (IsA tabloid newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taboo is a kind of inhibition", "pln": ["(: cnet_isa_c334c8ab5c (IsA taboo inhibition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taboo is a kind of bia", "pln": ["(: cnet_isa_e0db0b5151 (IsA taboo bia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tabor is a kind of drum", "pln": ["(: cnet_isa_6ca756b1a5 (IsA tabor drum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tabor pipe is a kind of flageolet", "pln": ["(: cnet_isa_fcf6c34dce (IsA tabor_pipe flageolet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "taboret is a kind of stool", "pln": ["(: cnet_isa_684ab37c91 (IsA taboret stool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tabula rasa is a kind of mind", "pln": ["(: cnet_isa_c6079dc253 (IsA tabula_rasa mind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tabulation is a kind of investigation", "pln": ["(: cnet_isa_4a93449eb6 (IsA tabulation investigation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tabulation is a kind of information", "pln": ["(: cnet_isa_d2dabf172e (IsA tabulation information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tabun is a kind of organophosphate nerve agent", "pln": ["(: cnet_isa_1fea855c8a (IsA tabun organophosphate_nerve_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tacca is a kind of liliid monocot genus", "pln": ["(: cnet_isa_04af4d79ac (IsA tacca liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taccaceae is a kind of liliid monocot family", "pln": ["(: cnet_isa_ebcc964208 (IsA taccaceae liliid_monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tachina fly is a kind of fly", "pln": ["(: cnet_isa_d9d00c8f32 (IsA tachina_fly fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tachinidae is a kind of arthropod family", "pln": ["(: cnet_isa_177630acbc (IsA tachinidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tachistoscope is a kind of scientific instrument", "pln": ["(: cnet_isa_5e320d0a09 (IsA tachistoscope scientific_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tachogram is a kind of graph", "pln": ["(: cnet_isa_f9a4ce30ec (IsA tachogram graph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tachograph is a kind of tachometer", "pln": ["(: cnet_isa_3151aff82a (IsA tachograph tachometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tachometer is a kind of measuring instrument", "pln": ["(: cnet_isa_f9fda3c4d3 (IsA tachometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tachycardia is a kind of cardiac arrhythmia", "pln": ["(: cnet_isa_10048c49dd (IsA tachycardia cardiac_arrhythmia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tachyglossidae is a kind of mammal family", "pln": ["(: cnet_isa_2940e7d810 (IsA tachyglossidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tachyglossus is a kind of mammal genus", "pln": ["(: cnet_isa_dddc8d022d (IsA tachyglossus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tachylite is a kind of volcanic glass", "pln": ["(: cnet_isa_327912da88 (IsA tachylite volcanic_glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tachymeter is a kind of theodolite", "pln": ["(: cnet_isa_854e050c83 (IsA tachymeter theodolite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tachypleus is a kind of arthropod genus", "pln": ["(: cnet_isa_18544595e4 (IsA tachypleus arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tack is a kind of sailing", "pln": ["(: cnet_isa_72021665d2 (IsA tack sailing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tack is a kind of nail", "pln": ["(: cnet_isa_a55ea35edb (IsA tack nail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tack is a kind of bearing", "pln": ["(: cnet_isa_d37d4c2a35 (IsA tack bearing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tack is a kind of change of course", "pln": ["(: cnet_isa_53b2f09c53 (IsA tack change_of_course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tack hammer is a kind of hammer", "pln": ["(: cnet_isa_007cd0745d (IsA tack_hammer hammer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tacker is a kind of worker", "pln": ["(: cnet_isa_1cb54542e1 (IsA tacker worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tackle is a kind of lineman", "pln": ["(: cnet_isa_4f135b422e (IsA tackle lineman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tackle is a kind of football play", "pln": ["(: cnet_isa_6336b63da8 (IsA tackle football_play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tackler is a kind of football player", "pln": ["(: cnet_isa_395f1af871 (IsA tackler football_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taco is a kind of dish", "pln": ["(: cnet_isa_405d8cadb9 (IsA taco dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "taco sauce is a kind of condiment", "pln": ["(: cnet_isa_98653ef9b7 (IsA taco_sauce condiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taconite is a kind of chert", "pln": ["(: cnet_isa_b9112e2be2 (IsA taconite chert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taconite is a kind of iron ore", "pln": ["(: cnet_isa_c6cd8af8cb (IsA taconite iron_ore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tact is a kind of consideration", "pln": ["(: cnet_isa_b7b24d35a2 (IsA tact consideration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tactic is a kind of plan of action", "pln": ["(: cnet_isa_75f13daa9a (IsA tactic plan_of_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tactical intelligence is a kind of intelligence", "pln": ["(: cnet_isa_12dfd86ab5 (IsA tactical_intelligence intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tactical warning is a kind of warning", "pln": ["(: cnet_isa_0fed274e47 (IsA tactical_warning warning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tactician is a kind of planner", "pln": ["(: cnet_isa_66db9d41e4 (IsA tactician planner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tactic is a kind of military science", "pln": ["(: cnet_isa_b7ed35ef92 (IsA tactic military_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tactile property is a kind of property", "pln": ["(: cnet_isa_14b472f42a (IsA tactile_property property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tactlessness is a kind of inconsideration", "pln": ["(: cnet_isa_19c69e5531 (IsA tactlessness inconsideration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tactual sensation is a kind of somesthesia", "pln": ["(: cnet_isa_3c8254ef52 (IsA tactual_sensation somesthesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tad is a kind of small indefinite quantity", "pln": ["(: cnet_isa_4b940354b3 (IsA tad small_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tadarida is a kind of mammal genus", "pln": ["(: cnet_isa_b8fe898419 (IsA tadarida mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tadorna is a kind of bird genus", "pln": ["(: cnet_isa_9c06430027 (IsA tadorna bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tadpole is a kind of larva", "pln": ["(: cnet_isa_cbcf965f50 (IsA tadpole larva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tadpole shrimp is a kind of branchiopod crustacean", "pln": ["(: cnet_isa_fa227254c1 (IsA tadpole_shrimp branchiopod_crustacean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tadzhik is a kind of asiatic", "pln": ["(: cnet_isa_b4995f1559 (IsA tadzhik asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tae kwon do is a kind of martial art", "pln": ["(: cnet_isa_09a6a356bc (IsA tae_kwon_do martial_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tael is a kind of weight unit", "pln": ["(: cnet_isa_8e9e84322b (IsA tael weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taenia is a kind of tapeworm", "pln": ["(: cnet_isa_9f1eaae87b (IsA taenia tapeworm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taenia is a kind of headband", "pln": ["(: cnet_isa_9c32e6ff81 (IsA taenia headband) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taeniidae is a kind of worm family", "pln": ["(: cnet_isa_14e0eb01be (IsA taeniidae worm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "taffeta is a kind of fabric", "pln": ["(: cnet_isa_7659eb99c2 (IsA taffeta fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taffrail is a kind of railing", "pln": ["(: cnet_isa_a576297b7f (IsA taffrail railing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taffy is a kind of candy", "pln": ["(: cnet_isa_2141a70c18 (IsA taffy candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tag is a kind of label", "pln": ["(: cnet_isa_b4e4b65f54 (IsA tag label) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tag is a kind of child s game", "pln": ["(: cnet_isa_6f061861e7 (IsA tag child_s_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tag is a kind of touch", "pln": ["(: cnet_isa_eaf69109f2 (IsA tag touch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tagalog is a kind of philippine", "pln": ["(: cnet_isa_b1f1a94f66 (IsA tagalog philippine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tagalog is a kind of filipino", "pln": ["(: cnet_isa_a55f7b4523 (IsA tagalog filipino) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tagalong is a kind of follower", "pln": ["(: cnet_isa_8f691009ab (IsA tagalong follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tagasaste is a kind of shrub", "pln": ["(: cnet_isa_0a26ab607d (IsA tagasaste shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tageteste is a kind of asterid dicot genus", "pln": ["(: cnet_isa_19cddf9e83 (IsA tageteste asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tagger is a kind of person", "pln": ["(: cnet_isa_6e715c4f55 (IsA tagger person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tagging program is a kind of program", "pln": ["(: cnet_isa_3eb46b609e (IsA tagging_program program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tagliatelle is a kind of pasta", "pln": ["(: cnet_isa_f84e22b361 (IsA tagliatelle pasta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taguan is a kind of asiatic flying squirrel", "pln": ["(: cnet_isa_b88b99148e (IsA taguan asiatic_flying_squirrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tahini is a kind of spread", "pln": ["(: cnet_isa_c13ac8ab17 (IsA tahini spread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tahitian is a kind of oceanic", "pln": ["(: cnet_isa_ed3b2cfd67 (IsA tahitian oceanic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tahitian is a kind of polynesian", "pln": ["(: cnet_isa_514108dad6 (IsA tahitian polynesian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tahoka daisy is a kind of wildflower", "pln": ["(: cnet_isa_d0e746571d (IsA tahoka_daisy wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tai is a kind of kadai", "pln": ["(: cnet_isa_313af08fc4 (IsA tai kadai) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tai dam is a kind of tai", "pln": ["(: cnet_isa_73d09b2508 (IsA tai_dam tai) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tai long is a kind of tai", "pln": ["(: cnet_isa_b5d31319f4 (IsA tai_long tai) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tai lue is a kind of tai", "pln": ["(: cnet_isa_a384041e09 (IsA tai_lue tai) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tai nuea is a kind of tai", "pln": ["(: cnet_isa_de031f1cab (IsA tai_nuea tai) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tai yuan is a kind of tai", "pln": ["(: cnet_isa_68f99df3bc (IsA tai_yuan tai) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tail is a kind of process", "pln": ["(: cnet_isa_1c69102b4b (IsA tail process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tail is a kind of rear", "pln": ["(: cnet_isa_59ab89006f (IsA tail rear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tail is a kind of reverse", "pln": ["(: cnet_isa_e086aa731a (IsA tail reverse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tail is a kind of follower", "pln": ["(: cnet_isa_fdf80df32d (IsA tail follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tail is a kind of spy", "pln": ["(: cnet_isa_60274138a5 (IsA tail spy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tail is a kind of projection", "pln": ["(: cnet_isa_be1194dbb8 (IsA tail projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tail feather is a kind of flight feather", "pln": ["(: cnet_isa_f3e51cacff (IsA tail_feather flight_feather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tail fin is a kind of fin", "pln": ["(: cnet_isa_0f8a3b544a (IsA tail_fin fin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tail fin is a kind of decoration", "pln": ["(: cnet_isa_33bd42edbf (IsA tail_fin decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tail gate is a kind of gate", "pln": ["(: cnet_isa_92125e6586 (IsA tail_gate gate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tail rotor is a kind of rotor", "pln": ["(: cnet_isa_ffca0f2886 (IsA tail_rotor rotor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tailback is a kind of back", "pln": ["(: cnet_isa_60fc026865 (IsA tailback back) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tailed frog is a kind of frog", "pln": ["(: cnet_isa_f0434dc2fb (IsA tailed_frog frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tailgate is a kind of gate", "pln": ["(: cnet_isa_190cb3c4c9 (IsA tailgate gate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tailgater is a kind of driver", "pln": ["(: cnet_isa_5f90fce918 (IsA tailgater driver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tailless tenrec is a kind of tenrec", "pln": ["(: cnet_isa_43b9695638 (IsA tailless_tenrec tenrec) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taillight is a kind of lamp", "pln": ["(: cnet_isa_5e51bc281d (IsA taillight lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tailor s chalk is a kind of chalk", "pln": ["(: cnet_isa_8f78b17ce2 (IsA tailor_s_chalk chalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tailor s tack is a kind of embroidery stitch", "pln": ["(: cnet_isa_436c07357e (IsA tailor_s_tack embroidery_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tailor is a kind of garmentmaker", "pln": ["(: cnet_isa_48359df38f (IsA tailor garmentmaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tailor made is a kind of clothing", "pln": ["(: cnet_isa_95de6e4055 (IsA tailor_made clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tailorbird is a kind of old world warbler", "pln": ["(: cnet_isa_aba2f93534 (IsA tailorbird old_world_warbler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tailoring is a kind of trade", "pln": ["(: cnet_isa_70add955e4 (IsA tailoring trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tailpiece is a kind of appendage", "pln": ["(: cnet_isa_4dec630762 (IsA tailpiece appendage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tailpipe is a kind of pipe", "pln": ["(: cnet_isa_4fe6f128f7 (IsA tailpipe pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tailrace is a kind of watercourse", "pln": ["(: cnet_isa_5f61130e2c (IsA tailrace watercourse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tailspin is a kind of acrobatic", "pln": ["(: cnet_isa_248d484e51 (IsA tailspin acrobatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tailspin is a kind of agitation", "pln": ["(: cnet_isa_ced56c88fe (IsA tailspin agitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tailstock is a kind of support", "pln": ["(: cnet_isa_ec5c354e9d (IsA tailstock support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tailwind is a kind of wind", "pln": ["(: cnet_isa_200081acde (IsA tailwind wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taipan is a kind of elapid", "pln": ["(: cnet_isa_3e02c69318 (IsA taipan elapid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taiwan is a kind of independency", "pln": ["(: cnet_isa_c5df0b609a (IsA taiwan independency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taiwan dollar is a kind of dollar", "pln": ["(: cnet_isa_b1e3ed3e63 (IsA taiwan_dollar dollar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taiwanese is a kind of asiatic", "pln": ["(: cnet_isa_ffcc9e0013 (IsA taiwanese asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tajik is a kind of ethnic group", "pln": ["(: cnet_isa_8b96ce8f9d (IsA tajik ethnic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tajiki is a kind of iranian", "pln": ["(: cnet_isa_7ff0865be1 (IsA tajiki iranian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tajikistani monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_77f523311f (IsA tajikistani_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taka is a kind of bangladeshi monetary unit", "pln": ["(: cnet_isa_7110cda44d (IsA taka bangladeshi_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "takayasu s arteritis is a kind of arteritis", "pln": ["(: cnet_isa_1525669bc9 (IsA takayasu_s_arteritis arteritis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "take is a kind of filming", "pln": ["(: cnet_isa_782d0afea8 (IsA take filming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "take home pay is a kind of wage", "pln": ["(: cnet_isa_fafa272591 (IsA take_home_pay wage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "take in is a kind of deception", "pln": ["(: cnet_isa_1443f959f3 (IsA take_in deception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "take up is a kind of tightening", "pln": ["(: cnet_isa_4ea688efae (IsA take_up tightening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "take up is a kind of device", "pln": ["(: cnet_isa_8c46dfb0e2 (IsA take_up device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "takeaway is a kind of maneuver", "pln": ["(: cnet_isa_4e4a261fb8 (IsA takeaway maneuver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "takeaway is a kind of concession", "pln": ["(: cnet_isa_006f6e37f3 (IsA takeaway concession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "takedown is a kind of fall", "pln": ["(: cnet_isa_6a539b9d5f (IsA takedown fall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "takelma is a kind of penutian", "pln": ["(: cnet_isa_670157ba65 (IsA takelma penutian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "takeoff is a kind of departure", "pln": ["(: cnet_isa_eaf6e9e136 (IsA takeoff departure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "takeoff is a kind of rise", "pln": ["(: cnet_isa_9871076a0f (IsA takeoff rise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "takeout is a kind of bid", "pln": ["(: cnet_isa_22f000e107 (IsA takeout bid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "takeout is a kind of convenience food", "pln": ["(: cnet_isa_7f0810f1e4 (IsA takeout convenience_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "takeover is a kind of buyout", "pln": ["(: cnet_isa_62725424cd (IsA takeover buyout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "takeover attempt is a kind of attempt", "pln": ["(: cnet_isa_30723f4226 (IsA takeover_attempt attempt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "takeover bid is a kind of tender offer", "pln": ["(: cnet_isa_98a9546a11 (IsA takeover_bid tender_offer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taker is a kind of bettor", "pln": ["(: cnet_isa_656db01715 (IsA taker bettor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taker is a kind of customer", "pln": ["(: cnet_isa_361d1a27b9 (IsA taker customer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "takilman is a kind of penutian", "pln": ["(: cnet_isa_47aaec9b69 (IsA takilman penutian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "takin is a kind of goat antelope", "pln": ["(: cnet_isa_11d0c23a5d (IsA takin goat_antelope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tala is a kind of western samoan monetary unit", "pln": ["(: cnet_isa_a03201e8bc (IsA tala western_samoan_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "talapoin is a kind of guenon", "pln": ["(: cnet_isa_401df3c4d3 (IsA talapoin guenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "talaria is a kind of sandal", "pln": ["(: cnet_isa_ae99322d62 (IsA talaria sandal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "talipes equinus is a kind of clubfoot", "pln": ["(: cnet_isa_2b112dd9e3 (IsA talipes_equinus clubfoot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "talc is a kind of mineral", "pln": ["(: cnet_isa_7161dd48c8 (IsA talc mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "talcum is a kind of toilet powder", "pln": ["(: cnet_isa_2580abb792 (IsA talcum toilet_powder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "talent is a kind of expert", "pln": ["(: cnet_isa_8f122affdd (IsA talent expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "talent agent is a kind of agent", "pln": ["(: cnet_isa_96fc3b9f91 (IsA talent_agent agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "talentlessness is a kind of inaptitude", "pln": ["(: cnet_isa_6c77b1400c (IsA talentlessness inaptitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taliban is a kind of bad person", "pln": ["(: cnet_isa_a805d335d6 (IsA taliban bad_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taliban is a kind of islamist", "pln": ["(: cnet_isa_de7b4faf90 (IsA taliban islamist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taliban is a kind of religious movement", "pln": ["(: cnet_isa_acbe60bcf2 (IsA taliban religious_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "talinum is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_74e3ae25b6 (IsA talinum caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "talipe calcaneus is a kind of clubfoot", "pln": ["(: cnet_isa_cdb8d6962a (IsA talipe_calcaneus clubfoot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "talipe equinus is a kind of clubfoot", "pln": ["(: cnet_isa_773dbdc2de (IsA talipe_equinus clubfoot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "talipe valgus is a kind of clubfoot", "pln": ["(: cnet_isa_70fca237d1 (IsA talipe_valgus clubfoot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "talipot is a kind of fan palm", "pln": ["(: cnet_isa_8c14666536 (IsA talipot fan_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "talk is a kind of lecture", "pln": ["(: cnet_isa_e63344bd4f (IsA talk lecture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "talk is a kind of conversation", "pln": ["(: cnet_isa_e05e0ea2fe (IsA talk conversation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "talk is a kind of discussion", "pln": ["(: cnet_isa_9a42155e85 (IsA talk discussion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "talk is a kind of gossip", "pln": ["(: cnet_isa_9e40495aae (IsA talk gossip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "talk show is a kind of broadcast", "pln": ["(: cnet_isa_22416ee939 (IsA talk_show broadcast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "talking book is a kind of sound recording", "pln": ["(: cnet_isa_89bf6f63d4 (IsA talking_book sound_recording) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "talking head is a kind of speaker", "pln": ["(: cnet_isa_edc3a05b5f (IsA talking_head speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "talking picture is a kind of movie", "pln": ["(: cnet_isa_7603e6027a (IsA talking_picture movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "talking point is a kind of point", "pln": ["(: cnet_isa_ba43f21cb0 (IsA talking_point point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tall is a kind of size", "pln": ["(: cnet_isa_72b2138800 (IsA tall size) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tall bellflower is a kind of campanula", "pln": ["(: cnet_isa_992781f450 (IsA tall_bellflower campanula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tall cupflower is a kind of cupflower", "pln": ["(: cnet_isa_66693ab232 (IsA tall_cupflower cupflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tall gallberry holly is a kind of holly", "pln": ["(: cnet_isa_cc656409b4 (IsA tall_gallberry_holly holly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tall goldenrod is a kind of goldenrod", "pln": ["(: cnet_isa_39f5cd7937 (IsA tall_goldenrod goldenrod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tall mallow is a kind of mallow", "pln": ["(: cnet_isa_767b4ea09d (IsA tall_mallow mallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tall oat grass is a kind of grass", "pln": ["(: cnet_isa_d6adb44763 (IsA tall_oat_grass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tall oil is a kind of oil", "pln": ["(: cnet_isa_e14cdeda82 (IsA tall_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tall order is a kind of undertaking", "pln": ["(: cnet_isa_40602dce8b (IsA tall_order undertaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tall tale is a kind of narrative", "pln": ["(: cnet_isa_9f7dd2d21e (IsA tall_tale narrative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tall yellow eye is a kind of yellow eyed grass", "pln": ["(: cnet_isa_d67ff98aac (IsA tall_yellow_eye yellow_eyed_grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tallgrass is a kind of grass", "pln": ["(: cnet_isa_7d5544d7f2 (IsA tallgrass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tallness is a kind of stature", "pln": ["(: cnet_isa_760102e777 (IsA tallness stature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tallow is a kind of animal oil", "pln": ["(: cnet_isa_ce25fc0c23 (IsA tallow animal_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tallow oil is a kind of animal oil", "pln": ["(: cnet_isa_7d532a94dd (IsA tallow_oil animal_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tallyman is a kind of clerk", "pln": ["(: cnet_isa_52a417ce40 (IsA tallyman clerk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tallyman is a kind of traveling salesman", "pln": ["(: cnet_isa_f360dd25a9 (IsA tallyman traveling_salesman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "talmudic literature is a kind of sacred text", "pln": ["(: cnet_isa_67251ff9bc (IsA talmudic_literature sacred_text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "talon is a kind of claw", "pln": ["(: cnet_isa_479a83228e (IsA talon claw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "talpidae is a kind of mammal family", "pln": ["(: cnet_isa_4c2a291808 (IsA talpidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "talus is a kind of geological formation", "pln": ["(: cnet_isa_9c1c7c690d (IsA talus geological_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tam is a kind of cap", "pln": ["(: cnet_isa_fa0730950c (IsA tam cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tamale is a kind of dish", "pln": ["(: cnet_isa_b2bf157851 (IsA tamale dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tamale pie is a kind of dish", "pln": ["(: cnet_isa_78b5dce0a0 (IsA tamale_pie dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tamandua is a kind of anteater", "pln": ["(: cnet_isa_30408249c9 (IsA tamandua anteater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tamarau is a kind of old world buffalo", "pln": ["(: cnet_isa_00c9decbb1 (IsA tamarau old_world_buffalo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tamaricaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_c17f70e880 (IsA tamaricaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tamarin is a kind of marmoset", "pln": ["(: cnet_isa_81110042e9 (IsA tamarin marmoset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tamarind is a kind of edible fruit", "pln": ["(: cnet_isa_bc2cb5c03f (IsA tamarind edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tamarind is a kind of bean tree", "pln": ["(: cnet_isa_33fd1adf5d (IsA tamarind bean_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tamarindus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_7409d3dbb0 (IsA tamarindus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tamarisk is a kind of shrub", "pln": ["(: cnet_isa_c54715779c (IsA tamarisk shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tamarisk gerbil is a kind of gerbil", "pln": ["(: cnet_isa_a185fa3437 (IsA tamarisk_gerbil gerbil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tamarix is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_8941abdc67 (IsA tamarix dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tambala is a kind of malawian monetary unit", "pln": ["(: cnet_isa_060ea2bbbb (IsA tambala malawian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tambour is a kind of drum", "pln": ["(: cnet_isa_8ecc830e0e (IsA tambour drum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tambour is a kind of framework", "pln": ["(: cnet_isa_10754125f5 (IsA tambour framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tambourine is a kind of musical percussion instrument", "pln": ["(: cnet_isa_222f1ad343 (IsA tambourine musical_percussion_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tambourine is a kind of drum", "pln": ["(: cnet_isa_b313e7b3c3 (IsA tambourine drum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tameness is a kind of tractability", "pln": ["(: cnet_isa_41a64d28ef (IsA tameness tractability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tamer is a kind of animal trainer", "pln": ["(: cnet_isa_3c22da4c86 (IsA tamer animal_trainer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tamia is a kind of mammal genus", "pln": ["(: cnet_isa_eebdd4c56a (IsA tamia mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tamiasciurus is a kind of mammal genus", "pln": ["(: cnet_isa_c45ac62bac (IsA tamiasciurus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tamil is a kind of south dravidian", "pln": ["(: cnet_isa_587260c7df (IsA tamil south_dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tamil is a kind of dravidian", "pln": ["(: cnet_isa_07ad5bd33e (IsA tamil dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tammany hall is a kind of organization", "pln": ["(: cnet_isa_2f7ed9f6d2 (IsA tammany_hall organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tammuz is a kind of jewish calendar month", "pln": ["(: cnet_isa_dd597943ed (IsA tammuz jewish_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tammy is a kind of fabric", "pln": ["(: cnet_isa_957c69898d (IsA tammy fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tamp is a kind of tool", "pln": ["(: cnet_isa_3b1d42d32b (IsA tamp tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tampion is a kind of plug", "pln": ["(: cnet_isa_9900bafaf3 (IsA tampion plug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tampon is a kind of plug", "pln": ["(: cnet_isa_4b6f24105c (IsA tampon plug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tamponade is a kind of obstruction", "pln": ["(: cnet_isa_aa1070aa88 (IsA tamponade obstruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tamus is a kind of plant genus", "pln": ["(: cnet_isa_3a2425b9eb (IsA tamus plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tan is a kind of light brown", "pln": ["(: cnet_isa_0460c27293 (IsA tan light_brown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tan is a kind of hyperpigmentation", "pln": ["(: cnet_isa_b0ea147f85 (IsA tan hyperpigmentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tanacetum is a kind of asterid dicot genus", "pln": ["(: cnet_isa_801b97564f (IsA tanacetum asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tanager is a kind of bird", "pln": ["(: cnet_isa_537c27245d (IsA tanager bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tanager is a kind of oscine", "pln": ["(: cnet_isa_039266870a (IsA tanager oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tanbark is a kind of bark", "pln": ["(: cnet_isa_5a654f1350 (IsA tanbark bark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tanbark oak is a kind of tree", "pln": ["(: cnet_isa_6d49f3aeb5 (IsA tanbark_oak tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tandem is a kind of placement", "pln": ["(: cnet_isa_a2502f0daf (IsA tandem placement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tandem trailer is a kind of trailer truck", "pln": ["(: cnet_isa_5db99c5a71 (IsA tandem_trailer trailer_truck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tandoor is a kind of oven", "pln": ["(: cnet_isa_b35432459d (IsA tandoor oven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tanekaha is a kind of celery pine", "pln": ["(: cnet_isa_5a4b69ff21 (IsA tanekaha celery_pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tang is a kind of seaweed", "pln": ["(: cnet_isa_2b1fca2c04 (IsA tang seaweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tang is a kind of dynasty", "pln": ["(: cnet_isa_e7a6a26e9e (IsA tang dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tanga is a kind of tajikistani monetary unit", "pln": ["(: cnet_isa_b8ee33b844 (IsA tanga tajikistani_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tangelo is a kind of edible fruit", "pln": ["(: cnet_isa_da4549755b (IsA tangelo edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tangelo is a kind of citrus", "pln": ["(: cnet_isa_7961b84d0a (IsA tangelo citrus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tangency is a kind of contact", "pln": ["(: cnet_isa_c9fbbbb9b2 (IsA tangency contact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tangent is a kind of trigonometric function", "pln": ["(: cnet_isa_3415913b2a (IsA tangent trigonometric_function) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tangent is a kind of straight line", "pln": ["(: cnet_isa_f04f0c214c (IsA tangent straight_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tangent plane is a kind of plane", "pln": ["(: cnet_isa_4e3431e16f (IsA tangent_plane plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tangent vector is a kind of vector", "pln": ["(: cnet_isa_a3872043a4 (IsA tangent_vector vector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tangerine is a kind of reddish orange", "pln": ["(: cnet_isa_879ae1dba0 (IsA tangerine reddish_orange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tangerine is a kind of mandarin", "pln": ["(: cnet_isa_df7dde23d7 (IsA tangerine mandarin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tangibility is a kind of materiality", "pln": ["(: cnet_isa_2fc3b8804f (IsA tangibility materiality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tangier pea is a kind of wild pea", "pln": ["(: cnet_isa_bd50cfb684 (IsA tangier_pea wild_pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tangle is a kind of perplexity", "pln": ["(: cnet_isa_7a44c0e1b2 (IsA tangle perplexity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tangle is a kind of natural object", "pln": ["(: cnet_isa_69ce970254 (IsA tangle natural_object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tangle orchid is a kind of orchid", "pln": ["(: cnet_isa_68e59226b9 (IsA tangle_orchid orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tanglebush is a kind of forestiera", "pln": ["(: cnet_isa_ca02e79193 (IsA tanglebush forestiera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tango is a kind of ballroom dancing", "pln": ["(: cnet_isa_64a4b3d751 (IsA tango ballroom_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tango is a kind of dance music", "pln": ["(: cnet_isa_92b9b8abb2 (IsA tango dance_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tangram is a kind of puzzle", "pln": ["(: cnet_isa_2c4740bc03 (IsA tangram puzzle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tank is a kind of off road vehicle", "pln": ["(: cnet_isa_6a5cee1a11 (IsA tank off_road_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tank is a kind of weapon", "pln": ["(: cnet_isa_b2f4742e42 (IsA tank weapon) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tank is a kind of vessel", "pln": ["(: cnet_isa_13beeca3f0 (IsA tank vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tank is a kind of armored vehicle", "pln": ["(: cnet_isa_1a1cf1735a (IsA tank armored_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tank is a kind of military vehicle", "pln": ["(: cnet_isa_4368ac2a8a (IsA tank military_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tank is a kind of tracked vehicle", "pln": ["(: cnet_isa_15870306be (IsA tank tracked_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tank is a kind of containerful", "pln": ["(: cnet_isa_c503c80288 (IsA tank containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tank car is a kind of freight car", "pln": ["(: cnet_isa_16ffea21ea (IsA tank_car freight_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tank circuit is a kind of circuit", "pln": ["(: cnet_isa_c8c4d92041 (IsA tank_circuit circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tank destroyer is a kind of armored vehicle", "pln": ["(: cnet_isa_c544e2f13d (IsA tank_destroyer armored_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tank engine is a kind of locomotive", "pln": ["(: cnet_isa_73c474b709 (IsA tank_engine locomotive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tank farm is a kind of area", "pln": ["(: cnet_isa_33964c6c75 (IsA tank_farm area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tank furnace is a kind of furnace", "pln": ["(: cnet_isa_a6945fcd89 (IsA tank_furnace furnace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tank iron is a kind of plate iron", "pln": ["(: cnet_isa_bb4ccbf215 (IsA tank_iron plate_iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tank shell is a kind of shell", "pln": ["(: cnet_isa_836dfabf09 (IsA tank_shell shell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tank top is a kind of shirt", "pln": ["(: cnet_isa_779b769140 (IsA tank_top shirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tanka is a kind of painting", "pln": ["(: cnet_isa_2142790736 (IsA tanka painting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tanka is a kind of poem", "pln": ["(: cnet_isa_32058e877e (IsA tanka poem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tankage is a kind of storage", "pln": ["(: cnet_isa_b35711e531 (IsA tankage storage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tankage is a kind of charge", "pln": ["(: cnet_isa_4ad5b29fd6 (IsA tankage charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tankage is a kind of indefinite quantity", "pln": ["(: cnet_isa_7e7517359d (IsA tankage indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tankard is a kind of drinking vessel", "pln": ["(: cnet_isa_890d41bf35 (IsA tankard drinking_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tanker is a kind of truck", "pln": ["(: cnet_isa_8f13e77291 (IsA tanker truck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tanker is a kind of soldier", "pln": ["(: cnet_isa_d8887c55ff (IsA tanker soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tanker plane is a kind of airplane", "pln": ["(: cnet_isa_ecd43287d2 (IsA tanker_plane airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tanner is a kind of craftsman", "pln": ["(: cnet_isa_53d35251b4 (IsA tanner craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tannery is a kind of workplace", "pln": ["(: cnet_isa_e43f37635c (IsA tannery workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tannin is a kind of phenol", "pln": ["(: cnet_isa_f3f1113811 (IsA tannin phenol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tanning is a kind of trade", "pln": ["(: cnet_isa_5e78593620 (IsA tanning trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tanning is a kind of bodily process", "pln": ["(: cnet_isa_f309fc8c6c (IsA tanning bodily_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tannoy is a kind of loudspeaker", "pln": ["(: cnet_isa_85bbd72f6c (IsA tannoy loudspeaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tanoan is a kind of amerind", "pln": ["(: cnet_isa_b5bbf926c3 (IsA tanoan amerind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tansy is a kind of composite", "pln": ["(: cnet_isa_f6c9ee85a6 (IsA tansy composite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tansy leaved rocket is a kind of herb", "pln": ["(: cnet_isa_be40abea58 (IsA tansy_leaved_rocket herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tansy mustard is a kind of herb", "pln": ["(: cnet_isa_d4a4306bcc (IsA tansy_mustard herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tantalite is a kind of mineral", "pln": ["(: cnet_isa_2a3d57c32a (IsA tantalite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tantalizer is a kind of tormentor", "pln": ["(: cnet_isa_d0a02b6bc0 (IsA tantalizer tormentor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tantalum is a kind of metallic element", "pln": ["(: cnet_isa_1f01709f7f (IsA tantalum metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tantilla is a kind of reptile genus", "pln": ["(: cnet_isa_cf120850e2 (IsA tantilla reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tantra is a kind of buddhism", "pln": ["(: cnet_isa_e890a53e90 (IsA tantra buddhism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tantra is a kind of sanskrit literature", "pln": ["(: cnet_isa_f135c959ce (IsA tantra sanskrit_literature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tantrism is a kind of buddhism", "pln": ["(: cnet_isa_7289ae15e5 (IsA tantrism buddhism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tantrist is a kind of disciple", "pln": ["(: cnet_isa_0acb592c94 (IsA tantrist disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tanzanian is a kind of african", "pln": ["(: cnet_isa_88dd92749c (IsA tanzanian african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tanzanian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_050fca6a0f (IsA tanzanian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tanzanian shilling is a kind of tanzanian monetary unit", "pln": ["(: cnet_isa_cbc648286d (IsA tanzanian_shilling tanzanian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tao is a kind of principle", "pln": ["(: cnet_isa_2b5a44e71c (IsA tao principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taoiseach is a kind of chancellor", "pln": ["(: cnet_isa_74ea66c7c0 (IsA taoiseach chancellor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taoism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_37e6baa1db (IsA taoism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taoism is a kind of religion", "pln": ["(: cnet_isa_b91de36697 (IsA taoism religion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taoism is a kind of sect", "pln": ["(: cnet_isa_52528a8498 (IsA taoism sect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taoist is a kind of disciple", "pln": ["(: cnet_isa_ee056712a2 (IsA taoist disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tao is a kind of pueblo", "pln": ["(: cnet_isa_dce6a568ed (IsA tao pueblo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tap is a kind of touch", "pln": ["(: cnet_isa_5f54b2f2d9 (IsA tap touch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tap is a kind of plug", "pln": ["(: cnet_isa_93cbe5b400 (IsA tap plug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tap is a kind of tool", "pln": ["(: cnet_isa_e0d09eb8c2 (IsA tap tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tap is a kind of plate", "pln": ["(: cnet_isa_03fbaa6f98 (IsA tap plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tap dancer is a kind of dancer", "pln": ["(: cnet_isa_d936468b55 (IsA tap_dancer dancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tap dancing is a kind of step dancing", "pln": ["(: cnet_isa_6753935d2a (IsA tap_dancing step_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tap water is a kind of water", "pln": ["(: cnet_isa_6739892b14 (IsA tap_water water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tap wrench is a kind of wrench", "pln": ["(: cnet_isa_a7f771235e (IsA tap_wrench wrench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tapa is a kind of fabric", "pln": ["(: cnet_isa_23f3eacadc (IsA tapa fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tapa is a kind of bark", "pln": ["(: cnet_isa_d31e358a31 (IsA tapa bark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tape is a kind of measuring instrument", "pln": ["(: cnet_isa_335b635a0e (IsA tape measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tape is a kind of recording", "pln": ["(: cnet_isa_47a4cabe46 (IsA tape recording) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tape is a kind of strip", "pln": ["(: cnet_isa_fd1a1f0c54 (IsA tape strip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tape is a kind of finishing line", "pln": ["(: cnet_isa_96c21212ba (IsA tape finishing_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tape cartridge is a kind of cartridge", "pln": ["(: cnet_isa_5c98180529 (IsA tape_cartridge cartridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tape deck is a kind of electronic equipment", "pln": ["(: cnet_isa_ede7bf52d5 (IsA tape_deck electronic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tape drive is a kind of mechanism", "pln": ["(: cnet_isa_da7fc924a7 (IsA tape_drive mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tape grass is a kind of aquatic plant", "pln": ["(: cnet_isa_8297ee03ea (IsA tape_grass aquatic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tape measure is a kind of tool", "pln": ["(: cnet_isa_9f712b9fcc (IsA tape_measure tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tape player is a kind of electronic equipment", "pln": ["(: cnet_isa_54ec8e6b34 (IsA tape_player electronic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tape recorder is a kind of magnetic recorder", "pln": ["(: cnet_isa_cfb1c38bfc (IsA tape_recorder magnetic_recorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tapenade is a kind of spread", "pln": ["(: cnet_isa_7b956f170d (IsA tapenade spread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taper is a kind of narrowing", "pln": ["(: cnet_isa_45d6851956 (IsA taper narrowing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taper is a kind of convex shape", "pln": ["(: cnet_isa_14b12e39ed (IsA taper convex_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taper file is a kind of file", "pln": ["(: cnet_isa_893734a744 (IsA taper_file file) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tapering is a kind of lowering", "pln": ["(: cnet_isa_27061e55cd (IsA tapering lowering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tapestry is a kind of rug and picture", "pln": ["(: cnet_isa_510aa732c5 (IsA tapestry rug_and_picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tapestry is a kind of fabric", "pln": ["(: cnet_isa_ee71e37ce6 (IsA tapestry fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tapestry is a kind of hanging", "pln": ["(: cnet_isa_607529ab8b (IsA tapestry hanging) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tapestry is a kind of complexity", "pln": ["(: cnet_isa_7f0cd63909 (IsA tapestry complexity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tapeworm is a kind of flatworm", "pln": ["(: cnet_isa_8487c48ae0 (IsA tapeworm flatworm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tapeworm infection is a kind of infection", "pln": ["(: cnet_isa_59113729f9 (IsA tapeworm_infection infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taphephobia is a kind of simple phobia", "pln": ["(: cnet_isa_ad19a6cefb (IsA taphephobia simple_phobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tapioca is a kind of foodstuff", "pln": ["(: cnet_isa_a90651f136 (IsA tapioca foodstuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tapioca pudding is a kind of pudding", "pln": ["(: cnet_isa_5f68f44196 (IsA tapioca_pudding pudding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tapir is a kind of odd toed ungulate", "pln": ["(: cnet_isa_25bf6fbc34 (IsA tapir odd_toed_ungulate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tapiridae is a kind of mammal family", "pln": ["(: cnet_isa_8969a94b19 (IsA tapiridae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tapirus is a kind of mammal genus", "pln": ["(: cnet_isa_2d1d946aaf (IsA tapirus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tapotement is a kind of massage", "pln": ["(: cnet_isa_400f78646a (IsA tapotement massage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tapper is a kind of eavesdropper", "pln": ["(: cnet_isa_8f4bd8923f (IsA tapper eavesdropper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tapper is a kind of person", "pln": ["(: cnet_isa_304e7a3365 (IsA tapper person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tapper is a kind of worker", "pln": ["(: cnet_isa_5a242762ef (IsA tapper worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tappet is a kind of lever", "pln": ["(: cnet_isa_b3dac40e6d (IsA tappet lever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tapping is a kind of sound", "pln": ["(: cnet_isa_b146dad6f4 (IsA tapping sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taproot is a kind of root", "pln": ["(: cnet_isa_4b83f36219 (IsA taproot root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "taproot is a kind of source", "pln": ["(: cnet_isa_0d49121a9b (IsA taproot source) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tap is a kind of bugle call", "pln": ["(: cnet_isa_693f942707 (IsA tap bugle_call) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tapster is a kind of publican", "pln": ["(: cnet_isa_f21bb8bde9 (IsA tapster publican) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tar pit is a kind of pit", "pln": ["(: cnet_isa_ba50f3f370 (IsA tar_pit pit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taracahitian is a kind of mexican", "pln": ["(: cnet_isa_da2df8f866 (IsA taracahitian mexican) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tarahumara is a kind of taracahitian", "pln": ["(: cnet_isa_056d096a06 (IsA tarahumara taracahitian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tarahumara frog is a kind of true frog", "pln": ["(: cnet_isa_eb150421f4 (IsA tarahumara_frog true_frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tarantella is a kind of social dancing", "pln": ["(: cnet_isa_303e3615e6 (IsA tarantella social_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tarantella is a kind of dance music", "pln": ["(: cnet_isa_5c4069ded6 (IsA tarantella dance_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tarantism is a kind of chorea", "pln": ["(: cnet_isa_e9a84b8700 (IsA tarantism chorea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tarantula is a kind of spider", "pln": ["(: cnet_isa_5bc9148547 (IsA tarantula spider) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taraxacum is a kind of asterid dicot genus", "pln": ["(: cnet_isa_093b7ecd0a (IsA taraxacum asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tardigrada is a kind of class", "pln": ["(: cnet_isa_374fc8b6a8 (IsA tardigrada class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tardigrade is a kind of arthropod", "pln": ["(: cnet_isa_4ec655d3c9 (IsA tardigrade arthropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tardiness is a kind of timing", "pln": ["(: cnet_isa_793a37c55b (IsA tardiness timing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tardive dyskinesia is a kind of dyskinesia", "pln": ["(: cnet_isa_88b8277d20 (IsA tardive_dyskinesia dyskinesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tare is a kind of weight", "pln": ["(: cnet_isa_96e43b6f5f (IsA tare weight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tare is a kind of counterweight", "pln": ["(: cnet_isa_2b2ad5b2a0 (IsA tare counterweight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tare is a kind of vetch", "pln": ["(: cnet_isa_dd90f2e584 (IsA tare vetch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tare is a kind of allowance", "pln": ["(: cnet_isa_26bba9484e (IsA tare allowance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "taret organ is a kind of organ", "pln": ["(: cnet_isa_1a3b03a3e7 (IsA taret_organ organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "target is a kind of sport equipment", "pln": ["(: cnet_isa_060c8ba02c (IsA target sport_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "target is a kind of reference point", "pln": ["(: cnet_isa_1fbe92937d (IsA target reference_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "target is a kind of topographic point", "pln": ["(: cnet_isa_70347bf905 (IsA target topographic_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "target acquisition system is a kind of shipboard system", "pln": ["(: cnet_isa_0c62f892dc (IsA target_acquisition_system shipboard_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "target cell is a kind of red blood cell", "pln": ["(: cnet_isa_cfc4c597e4 (IsA target_cell red_blood_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "target cell is a kind of somatic cell", "pln": ["(: cnet_isa_1e71e56dcf (IsA target_cell somatic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "target company is a kind of company", "pln": ["(: cnet_isa_3a5040c79f (IsA target_company company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "target organ is a kind of organ", "pln": ["(: cnet_isa_0f688b5f13 (IsA target_organ organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "target practice is a kind of exercise", "pln": ["(: cnet_isa_c11be33bd8 (IsA target_practice exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tarheel is a kind of american", "pln": ["(: cnet_isa_86dac835f6 (IsA tarheel american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taricha is a kind of amphibian genus", "pln": ["(: cnet_isa_c31626a229 (IsA taricha amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tarmacadam is a kind of paved surface", "pln": ["(: cnet_isa_c5b555ba77 (IsA tarmacadam paved_surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tarmacadam is a kind of paving material", "pln": ["(: cnet_isa_bc217d676d (IsA tarmacadam paving_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tarn is a kind of lake", "pln": ["(: cnet_isa_4d99a1484f (IsA tarn lake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tarnish is a kind of stain", "pln": ["(: cnet_isa_b027c41d76 (IsA tarnish stain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tarnished plant bug is a kind of lygus bug", "pln": ["(: cnet_isa_060f38d201 (IsA tarnished_plant_bug lygus_bug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taro is a kind of root vegetable", "pln": ["(: cnet_isa_34ba9a080f (IsA taro root_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taro is a kind of arum", "pln": ["(: cnet_isa_0abbb2c9cd (IsA taro arum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taro is a kind of root", "pln": ["(: cnet_isa_54c433fbf7 (IsA taro root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tarot card is a kind of card", "pln": ["(: cnet_isa_d5a16bb905 (IsA tarot_card card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "tarpaulin is a kind of canvas", "pln": ["(: cnet_isa_eaa2c0724f (IsA tarpaulin canvas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tarpan is a kind of wild horse", "pln": ["(: cnet_isa_fe9e2b5bae (IsA tarpan wild_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tarpaulin is a kind of canva", "pln": ["(: cnet_isa_cd802d1bab (IsA tarpaulin canva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tarpon is a kind of soft finned fish", "pln": ["(: cnet_isa_1a84bddd2a (IsA tarpon soft_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tarragon is a kind of herb", "pln": ["(: cnet_isa_7c02c0a574 (IsA tarragon herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tarragon is a kind of artemisia", "pln": ["(: cnet_isa_21d9c1b4f9 (IsA tarragon artemisia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tarriance is a kind of delay", "pln": ["(: cnet_isa_52c94fe1bc (IsA tarriance delay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tarrietia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_3814aa879d (IsA tarrietia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tarsal is a kind of bone", "pln": ["(: cnet_isa_eb9e4343ba (IsA tarsal bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tarsier is a kind of primate", "pln": ["(: cnet_isa_16a553b036 (IsA tarsier primate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tarsiidae is a kind of mammal family", "pln": ["(: cnet_isa_1dbcb5551c (IsA tarsiidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tarsioidea is a kind of animal order", "pln": ["(: cnet_isa_9b52a4e767 (IsA tarsioidea animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tarsitis is a kind of inflammation", "pln": ["(: cnet_isa_d094ad9a65 (IsA tarsitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tarsius is a kind of mammal genus", "pln": ["(: cnet_isa_a502d0f727 (IsA tarsius mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tarsius glis is a kind of tarsier", "pln": ["(: cnet_isa_ca2648cdaa (IsA tarsius_glis tarsier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tarsius syrichta is a kind of tarsier", "pln": ["(: cnet_isa_0520d89bc4 (IsA tarsius_syrichta tarsier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tarsus is a kind of skeletal structure", "pln": ["(: cnet_isa_93569c1d84 (IsA tarsus skeletal_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tart is a kind of pastry", "pln": ["(: cnet_isa_2ec1e21c43 (IsA tart pastry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tart is a kind of pie", "pln": ["(: cnet_isa_338e5737df (IsA tart pie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tartan is a kind of fabric", "pln": ["(: cnet_isa_3f8573594b (IsA tartan fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tartar is a kind of crust", "pln": ["(: cnet_isa_4f898bb7d6 (IsA tartar crust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tartar emetic is a kind of mordant", "pln": ["(: cnet_isa_70a106ce0a (IsA tartar_emetic mordant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tartar emetic is a kind of tartrate", "pln": ["(: cnet_isa_53bd970a00 (IsA tartar_emetic tartrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tartare sauce is a kind of sauce", "pln": ["(: cnet_isa_0cbe531320 (IsA tartare_sauce sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tartaric acid is a kind of hydroxy acid", "pln": ["(: cnet_isa_0fb387785d (IsA tartaric_acid hydroxy_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tartlet is a kind of tart", "pln": ["(: cnet_isa_c3e602dd83 (IsA tartlet tart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tartrate is a kind of salt", "pln": ["(: cnet_isa_bdba9250e9 (IsA tartrate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tartufe is a kind of hypocrite", "pln": ["(: cnet_isa_6c7ef32cda (IsA tartufe hypocrite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tarweed is a kind of herb", "pln": ["(: cnet_isa_3aef537b11 (IsA tarweed herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tarwood is a kind of conifer", "pln": ["(: cnet_isa_18d581220c (IsA tarwood conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tarzan is a kind of man", "pln": ["(: cnet_isa_6c8c99d192 (IsA tarzan man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "task force is a kind of unit", "pln": ["(: cnet_isa_afc0effe0e (IsA task_force unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "task force is a kind of military unit", "pln": ["(: cnet_isa_24a53f8712 (IsA task_force military_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taskmaster is a kind of supervisor", "pln": ["(: cnet_isa_406fe54783 (IsA taskmaster supervisor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taskmistress is a kind of taskmaster", "pln": ["(: cnet_isa_4bfe8c4506 (IsA taskmistress taskmaster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tasman dwarf pine is a kind of shrub", "pln": ["(: cnet_isa_b0bca544e0 (IsA tasman_dwarf_pine shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tasmanian devil is a kind of dasyurid marsupial", "pln": ["(: cnet_isa_be2f3854ce (IsA tasmanian_devil dasyurid_marsupial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tassel is a kind of adornment", "pln": ["(: cnet_isa_60ff6d8d99 (IsA tassel adornment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tassel flower is a kind of herb", "pln": ["(: cnet_isa_0e8204db7e (IsA tassel_flower herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tassel hyacinth is a kind of grape hyacinth", "pln": ["(: cnet_isa_437bcfa412 (IsA tassel_hyacinth grape_hyacinth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tasset is a kind of armor plate", "pln": ["(: cnet_isa_d118e7e157 (IsA tasset armor_plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taste is a kind of sensing", "pln": ["(: cnet_isa_baed4883fa (IsA taste sensing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "taste is a kind of discrimination", "pln": ["(: cnet_isa_91585855a6 (IsA taste discrimination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taste is a kind of exteroception", "pln": ["(: cnet_isa_cc494112d5 (IsA taste exteroception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taste is a kind of modality", "pln": ["(: cnet_isa_4acdb71feb (IsA taste modality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "taste is a kind of sensation", "pln": ["(: cnet_isa_5cd796270b (IsA taste sensation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taste is a kind of experience", "pln": ["(: cnet_isa_7876771ca5 (IsA taste experience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taste is a kind of small indefinite quantity", "pln": ["(: cnet_isa_300cd41c3b (IsA taste small_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taste cell is a kind of epithelial cell", "pln": ["(: cnet_isa_4f280294ac (IsA taste_cell epithelial_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "taste property is a kind of property", "pln": ["(: cnet_isa_2dc54524b0 (IsA taste_property property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tastebud is a kind of chemoreceptor", "pln": ["(: cnet_isa_deb340cc49 (IsA tastebud chemoreceptor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tastefulness is a kind of elegance", "pln": ["(: cnet_isa_4b8ffd0e5d (IsA tastefulness elegance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tastelessness is a kind of inelegance", "pln": ["(: cnet_isa_e6a6f447de (IsA tastelessness inelegance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "taster is a kind of critic", "pln": ["(: cnet_isa_5f5ea08853 (IsA taster critic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tasting is a kind of eating", "pln": ["(: cnet_isa_8f848c8299 (IsA tasting eating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tasting is a kind of sample", "pln": ["(: cnet_isa_2f1cc8a880 (IsA tasting sample) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tatahumara is a kind of uto aztecan", "pln": ["(: cnet_isa_e6bfac66ed (IsA tatahumara uto_aztecan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tatar is a kind of turki", "pln": ["(: cnet_isa_c7b3b8c92b (IsA tatar turki) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tatar is a kind of russian", "pln": ["(: cnet_isa_4cf355d5a4 (IsA tatar russian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tatouay is a kind of armadillo", "pln": ["(: cnet_isa_ddcee3e560 (IsA tatouay armadillo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tatting is a kind of needlework", "pln": ["(: cnet_isa_dad6d13b23 (IsA tatting needlework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tattle is a kind of disclosure", "pln": ["(: cnet_isa_0cff85f45a (IsA tattle disclosure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tattler is a kind of sandpiper", "pln": ["(: cnet_isa_6a89b74915 (IsA tattler sandpiper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tattletale is a kind of gossip", "pln": ["(: cnet_isa_85db274a51 (IsA tattletale gossip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tattletale gray is a kind of gray", "pln": ["(: cnet_isa_5a386a246d (IsA tattletale_gray gray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tattoo is a kind of decoration", "pln": ["(: cnet_isa_913f1feb7a (IsA tattoo decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tattoo is a kind of design", "pln": ["(: cnet_isa_d646cbc9aa (IsA tattoo design) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tattoo is a kind of bugle call", "pln": ["(: cnet_isa_e4f4c8138b (IsA tattoo bugle_call) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tattoo is a kind of drumbeat", "pln": ["(: cnet_isa_1c3b29edf5 (IsA tattoo drumbeat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tau is a kind of letter", "pln": ["(: cnet_isa_a5c6d9c784 (IsA tau letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tau coefficient of correlation is a kind of kendall test", "pln": ["(: cnet_isa_51aff234a0 (IsA tau_coefficient_of_correlation kendall_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tau cross is a kind of cross", "pln": ["(: cnet_isa_c4c0d9caf5 (IsA tau_cross cross) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tauon is a kind of lepton", "pln": ["(: cnet_isa_938d47826c (IsA tauon lepton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taupe is a kind of brown", "pln": ["(: cnet_isa_2896361683 (IsA taupe brown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taurine is a kind of compound", "pln": ["(: cnet_isa_3f91ddffe8 (IsA taurine compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taurotragus is a kind of mammal genus", "pln": ["(: cnet_isa_fa94d6aa3a (IsA taurotragus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tautog is a kind of wrasse", "pln": ["(: cnet_isa_7604da31bd (IsA tautog wrasse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tautoga is a kind of fish genus", "pln": ["(: cnet_isa_8d58fe3bda (IsA tautoga fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tautogolabrus is a kind of fish genus", "pln": ["(: cnet_isa_7784c86e66 (IsA tautogolabrus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tautology is a kind of repetitiveness", "pln": ["(: cnet_isa_d3a6e7fd6c (IsA tautology repetitiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tautology is a kind of truth", "pln": ["(: cnet_isa_b84696f95b (IsA tautology truth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tavern is a kind of building", "pln": ["(: cnet_isa_c95ed29325 (IsA tavern building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taw is a kind of marble", "pln": ["(: cnet_isa_200d625067 (IsA taw marble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taw is a kind of letter", "pln": ["(: cnet_isa_37f0a20932 (IsA taw letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tawniness is a kind of complexion", "pln": ["(: cnet_isa_f93af97abc (IsA tawniness complexion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tawny eagle is a kind of eagle", "pln": ["(: cnet_isa_57bbfd3ea2 (IsA tawny_eagle eagle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tawny owl is a kind of owl", "pln": ["(: cnet_isa_168a6ce22b (IsA tawny_owl owl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tawse is a kind of strap", "pln": ["(: cnet_isa_67d79e3873 (IsA tawse strap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tax is a kind of levy", "pln": ["(: cnet_isa_92efc0d7f1 (IsA tax levy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tax advantage is a kind of advantage", "pln": ["(: cnet_isa_5600b59aa3 (IsA tax_advantage advantage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tax assessment is a kind of assessment", "pln": ["(: cnet_isa_09c8e01e32 (IsA tax_assessment assessment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tax assessor is a kind of bureaucrat", "pln": ["(: cnet_isa_f07fbca404 (IsA tax_assessor bureaucrat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tax avoidance is a kind of minimization", "pln": ["(: cnet_isa_494a2948a0 (IsA tax_avoidance minimization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tax base is a kind of asset", "pln": ["(: cnet_isa_8994db4df2 (IsA tax_base asset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tax benefit is a kind of tax write off", "pln": ["(: cnet_isa_e0d47b289d (IsA tax_benefit tax_write_off) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tax bill is a kind of bill", "pln": ["(: cnet_isa_c10240b893 (IsA tax_bill bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tax collection is a kind of collection", "pln": ["(: cnet_isa_25f07b609f (IsA tax_collection collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tax collector is a kind of bureaucrat", "pln": ["(: cnet_isa_bea2031746 (IsA tax_collector bureaucrat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tax credit is a kind of decrease", "pln": ["(: cnet_isa_98485a8dd7 (IsA tax_credit decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tax cut is a kind of cut", "pln": ["(: cnet_isa_ae7f3e9430 (IsA tax_cut cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tax evasion is a kind of evasion", "pln": ["(: cnet_isa_c712e65ffe (IsA tax_evasion evasion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tax exempt security is a kind of security", "pln": ["(: cnet_isa_77bc746c93 (IsA tax_exempt_security security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tax form is a kind of form", "pln": ["(: cnet_isa_0f08124739 (IsA tax_form form) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tax haven is a kind of country", "pln": ["(: cnet_isa_0a8dc98223 (IsA tax_haven country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tax income is a kind of government income", "pln": ["(: cnet_isa_475a2147e9 (IsA tax_income government_income) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tax increase is a kind of increase", "pln": ["(: cnet_isa_e52aabc6fa (IsA tax_increase increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tax law is a kind of law", "pln": ["(: cnet_isa_a5890c30c0 (IsA tax_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tax liability is a kind of liability", "pln": ["(: cnet_isa_b5299a6a7f (IsA tax_liability liability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tax lien is a kind of lien", "pln": ["(: cnet_isa_dd7728e005 (IsA tax_lien lien) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tax program is a kind of program", "pln": ["(: cnet_isa_e2c7c37436 (IsA tax_program program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tax rate is a kind of rate", "pln": ["(: cnet_isa_97ccdbab6d (IsA tax_rate rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tax return is a kind of legal document", "pln": ["(: cnet_isa_6205ed06ee (IsA tax_return legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tax shelter is a kind of decrease", "pln": ["(: cnet_isa_61b472048f (IsA tax_shelter decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tax system is a kind of legal system", "pln": ["(: cnet_isa_897671e25d (IsA tax_system legal_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tax write off is a kind of write off", "pln": ["(: cnet_isa_9dfb97924a (IsA tax_write_off write_off) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taxability is a kind of liability", "pln": ["(: cnet_isa_1967349c4f (IsA taxability liability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "taxaceae is a kind of gymnosperm family", "pln": ["(: cnet_isa_9de321b08b (IsA taxaceae gymnosperm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taxale is a kind of plant order", "pln": ["(: cnet_isa_61ee07736d (IsA taxale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taxation is a kind of imposition", "pln": ["(: cnet_isa_93409ddbb0 (IsA taxation imposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taxer is a kind of bureaucrat", "pln": ["(: cnet_isa_b7bc5d4799 (IsA taxer bureaucrat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taxi is a kind of form of transportation", "pln": ["(: cnet_isa_af30803c00 (IsA taxi form_of_transportation) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taxi dancer is a kind of dancer", "pln": ["(: cnet_isa_6ceda91b50 (IsA taxi_dancer dancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taxidea is a kind of mammal genus", "pln": ["(: cnet_isa_8692584860 (IsA taxidea mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taxidermist is a kind of craftsman", "pln": ["(: cnet_isa_1fbd62d578 (IsA taxidermist craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taxidermy is a kind of art", "pln": ["(: cnet_isa_9a9fb30e22 (IsA taxidermy art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taxidriver is a kind of driver", "pln": ["(: cnet_isa_87dafd5ab3 (IsA taxidriver driver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taximeter is a kind of meter", "pln": ["(: cnet_isa_5e05ab3c24 (IsA taximeter meter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "taxis is a kind of operation", "pln": ["(: cnet_isa_bdb97f83e7 (IsA taxis operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taxis is a kind of reaction", "pln": ["(: cnet_isa_b1ee53b676 (IsA taxis reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taxiway is a kind of paved surface", "pln": ["(: cnet_isa_d0581c8050 (IsA taxiway paved_surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taxodiaceae is a kind of gymnosperm family", "pln": ["(: cnet_isa_7aa4dcd40d (IsA taxodiaceae gymnosperm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taxodium is a kind of gymnosperm genus", "pln": ["(: cnet_isa_fa73b76005 (IsA taxodium gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taxonomic group is a kind of biological group", "pln": ["(: cnet_isa_75a6025caa (IsA taxonomic_group biological_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taxonomist is a kind of biologist", "pln": ["(: cnet_isa_b2aa835580 (IsA taxonomist biologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taxonomy is a kind of categorization", "pln": ["(: cnet_isa_c984ade8a5 (IsA taxonomy categorization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taxonomy is a kind of systematic", "pln": ["(: cnet_isa_5e635037a1 (IsA taxonomy systematic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taxonomy is a kind of hierarchy", "pln": ["(: cnet_isa_84a9cdae24 (IsA taxonomy hierarchy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "taxopsida is a kind of class", "pln": ["(: cnet_isa_b3295902b9 (IsA taxopsida class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taxpayer is a kind of payer", "pln": ["(: cnet_isa_d63596510a (IsA taxpayer payer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "taxus is a kind of gymnosperm genus", "pln": ["(: cnet_isa_9f190c5564 (IsA taxus gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tay is a kind of tai", "pln": ["(: cnet_isa_558cebe7af (IsA tay tai) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tay sach disease is a kind of autosomal recessive disease", "pln": ["(: cnet_isa_532dc98959 (IsA tay_sach_disease autosomal_recessive_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tay sach disease is a kind of lipidosis", "pln": ["(: cnet_isa_82690534e9 (IsA tay_sach_disease lipidosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tay sach disease is a kind of monogenic disorder", "pln": ["(: cnet_isa_dd46a574ea (IsA tay_sach_disease monogenic_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tayalic is a kind of formosan", "pln": ["(: cnet_isa_07f82271b0 (IsA tayalic formosan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tayassu is a kind of mammal genus", "pln": ["(: cnet_isa_8bc0026411 (IsA tayassu mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tayassuidae is a kind of mammal family", "pln": ["(: cnet_isa_377317277d (IsA tayassuidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tayra is a kind of musteline mammal", "pln": ["(: cnet_isa_88d114dc24 (IsA tayra musteline_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tazir crime is a kind of crime", "pln": ["(: cnet_isa_a7823f589f (IsA tazir_crime crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tb is a kind of computer memory unit", "pln": ["(: cnet_isa_34be740368 (IsA tb computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tcp is a kind of protocol", "pln": ["(: cnet_isa_c6fca0635e (IsA tcp protocol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tea is a kind of beverage", "pln": ["(: cnet_isa_5c703cb5e7 (IsA tea beverage) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tea is a kind of drink", "pln": ["(: cnet_isa_d052227ba3 (IsA tea drink) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tea is a kind of herb", "pln": ["(: cnet_isa_0616be9c4a (IsA tea herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tea is a kind of meal", "pln": ["(: cnet_isa_8869ad9087 (IsA tea meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tea is a kind of reception", "pln": ["(: cnet_isa_c9c0bac2d0 (IsA tea reception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tea is a kind of shrub", "pln": ["(: cnet_isa_c383a25c75 (IsA tea shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tea bag is a kind of bag", "pln": ["(: cnet_isa_2aba8fe69f (IsA tea_bag bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tea bag is a kind of tea", "pln": ["(: cnet_isa_25d5118914 (IsA tea_bag tea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tea ball is a kind of kitchen utensil", "pln": ["(: cnet_isa_5573365415 (IsA tea_ball kitchen_utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tea bread is a kind of bun", "pln": ["(: cnet_isa_99a582a614 (IsA tea_bread bun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tea cart is a kind of serving cart", "pln": ["(: cnet_isa_92d202e1bf (IsA tea_cart serving_cart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tea ceremony is a kind of ceremony", "pln": ["(: cnet_isa_daf206d85c (IsA tea_ceremony ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tea chest is a kind of chest", "pln": ["(: cnet_isa_cfc8ea69ca (IsA tea_chest chest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tea cloth is a kind of tablecloth", "pln": ["(: cnet_isa_1e884c6e4a (IsA tea_cloth tablecloth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tea garden is a kind of garden", "pln": ["(: cnet_isa_a6840121d2 (IsA tea_garden garden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tea gown is a kind of gown", "pln": ["(: cnet_isa_eb1b4158b9 (IsA tea_gown gown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tea like drink is a kind of beverage", "pln": ["(: cnet_isa_820e2e86fa (IsA tea_like_drink beverage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tea maker is a kind of spoon", "pln": ["(: cnet_isa_adef0df629 (IsA tea_maker spoon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tea napkin is a kind of napkin", "pln": ["(: cnet_isa_ac9d5d44d6 (IsA tea_napkin napkin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tea party is a kind of party", "pln": ["(: cnet_isa_adbcd46a3d (IsA tea_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tea rose is a kind of rose", "pln": ["(: cnet_isa_3998543a44 (IsA tea_rose rose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tea service is a kind of tableware", "pln": ["(: cnet_isa_e24928b479 (IsA tea_service tableware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tea strainer is a kind of strainer", "pln": ["(: cnet_isa_cb0cf26dcf (IsA tea_strainer strainer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tea table is a kind of table", "pln": ["(: cnet_isa_8a2aa8f387 (IsA tea_table table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tea tortrix is a kind of tortricid", "pln": ["(: cnet_isa_7419bf0145 (IsA tea_tortrix tortricid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tea tray is a kind of tray", "pln": ["(: cnet_isa_a528bee441 (IsA tea_tray tray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tea urn is a kind of urn", "pln": ["(: cnet_isa_96c69c3bf5 (IsA tea_urn urn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teaberry is a kind of shrublet", "pln": ["(: cnet_isa_9c721c3fef (IsA teaberry shrublet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teacake is a kind of cake", "pln": ["(: cnet_isa_41e8b5e3fc (IsA teacake cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teacake is a kind of cookie", "pln": ["(: cnet_isa_d6581c6c82 (IsA teacake cookie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teach in is a kind of conference", "pln": ["(: cnet_isa_06414437c9 (IsA teach_in conference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teacher s pet is a kind of darling", "pln": ["(: cnet_isa_b9f4d298d1 (IsA teacher_s_pet darling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teacher is a kind of abstraction", "pln": ["(: cnet_isa_de0dd9dbda (IsA teacher abstraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teacher is a kind of educator", "pln": ["(: cnet_isa_c847224eb3 (IsA teacher educator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teacher student relation is a kind of academic relation", "pln": ["(: cnet_isa_5e8eb19696 (IsA teacher_student_relation academic_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teachership is a kind of position", "pln": ["(: cnet_isa_75bae997b3 (IsA teachership position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teaching is a kind of important cultural activity", "pln": ["(: cnet_isa_e27489a8c1 (IsA teaching important_cultural_activity) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teaching is a kind of education", "pln": ["(: cnet_isa_78b206241e (IsA teaching education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teaching is a kind of doctrine", "pln": ["(: cnet_isa_d1aa702a3d (IsA teaching doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teaching aid is a kind of equipment", "pln": ["(: cnet_isa_1a73550681 (IsA teaching_aid equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teaching certificate is a kind of certificate", "pln": ["(: cnet_isa_99b5745f78 (IsA teaching_certificate certificate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teaching fellow is a kind of teacher", "pln": ["(: cnet_isa_fb6907266b (IsA teaching_fellow teacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teaching method is a kind of method", "pln": ["(: cnet_isa_297e241a45 (IsA teaching_method method) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teaching reading is a kind of teaching", "pln": ["(: cnet_isa_d646b36844 (IsA teaching_reading teaching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teacup is a kind of cup", "pln": ["(: cnet_isa_ff8719efa3 (IsA teacup cup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "teacup is a kind of containerful", "pln": ["(: cnet_isa_a10c82497c (IsA teacup containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teak is a kind of tree", "pln": ["(: cnet_isa_54d478e047 (IsA teak tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teak is a kind of wood", "pln": ["(: cnet_isa_585bb5286b (IsA teak wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teakettle is a kind of kettle", "pln": ["(: cnet_isa_7f46c56ae0 (IsA teakettle kettle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teal is a kind of duck", "pln": ["(: cnet_isa_826386ef71 (IsA teal duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "team is a kind of animal group", "pln": ["(: cnet_isa_673c7c470c (IsA team animal_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "team is a kind of team", "pln": ["(: cnet_isa_f8c7efd69e (IsA team team) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "team is a kind of unit", "pln": ["(: cnet_isa_ddbe239eef (IsA team unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "team sport is a kind of sport", "pln": ["(: cnet_isa_165c2c4a44 (IsA team_sport sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "team teaching is a kind of education", "pln": ["(: cnet_isa_96c9cf9fe0 (IsA team_teaching education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teammate is a kind of associate", "pln": ["(: cnet_isa_d580e22623 (IsA teammate associate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teamster is a kind of driver", "pln": ["(: cnet_isa_58e2b438ba (IsA teamster driver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teamster union is a kind of industrial union", "pln": ["(: cnet_isa_acce789cf3 (IsA teamster_union industrial_union) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teamwork is a kind of cooperation", "pln": ["(: cnet_isa_e8cbf6212c (IsA teamwork cooperation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teapot is a kind of pot", "pln": ["(: cnet_isa_a64bec867a (IsA teapot pot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tear is a kind of separation", "pln": ["(: cnet_isa_08d5130c90 (IsA tear separation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tear is a kind of drop", "pln": ["(: cnet_isa_d0218f1f54 (IsA tear drop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tear gas is a kind of chemical weapon", "pln": ["(: cnet_isa_78844b76ac (IsA tear_gas chemical_weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tear gas is a kind of gas", "pln": ["(: cnet_isa_a156651bb9 (IsA tear_gas gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tear sheet is a kind of sheet", "pln": ["(: cnet_isa_1cc75b3bab (IsA tear_sheet sheet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tearaway is a kind of daredevil", "pln": ["(: cnet_isa_1395da3c29 (IsA tearaway daredevil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teardrop is a kind of drop", "pln": ["(: cnet_isa_93e14df54f (IsA teardrop drop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tearjerker is a kind of narrative", "pln": ["(: cnet_isa_5a171893d1 (IsA tearjerker narrative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tease is a kind of harassment", "pln": ["(: cnet_isa_98a9b7550a (IsA tease harassment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tease is a kind of unwelcome person", "pln": ["(: cnet_isa_4cdfc25701 (IsA tease unwelcome_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teasel is a kind of herb", "pln": ["(: cnet_isa_23f64d3a3c (IsA teasel herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teaser is a kind of device", "pln": ["(: cnet_isa_4e16a84188 (IsA teaser device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teaser is a kind of ad", "pln": ["(: cnet_isa_8fae29fbcc (IsA teaser ad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teaser is a kind of opening", "pln": ["(: cnet_isa_0659feaddc (IsA teaser opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teaser is a kind of worker", "pln": ["(: cnet_isa_57c0299895 (IsA teaser worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teashop is a kind of restaurant", "pln": ["(: cnet_isa_0607d2c480 (IsA teashop restaurant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "teasing is a kind of play", "pln": ["(: cnet_isa_aefd185348 (IsA teasing play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teaspoon is a kind of smaller than tablespoon", "pln": ["(: cnet_isa_79efa25102 (IsA teaspoon smaller_than_tablespoon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teaspoon is a kind of spoon", "pln": ["(: cnet_isa_fce84020c6 (IsA teaspoon spoon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teaspoon is a kind of containerful", "pln": ["(: cnet_isa_a7461ab966 (IsA teaspoon containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tebet is a kind of jewish calendar month", "pln": ["(: cnet_isa_7e5704976d (IsA tebet jewish_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tebibit is a kind of computer memory unit", "pln": ["(: cnet_isa_dd36c104e7 (IsA tebibit computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "techie is a kind of technician", "pln": ["(: cnet_isa_329680a4eb (IsA techie technician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "technetium is a kind of metallic element", "pln": ["(: cnet_isa_d64f231946 (IsA technetium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "technical is a kind of military vehicle", "pln": ["(: cnet_isa_c7878be697 (IsA technical military_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "technical is a kind of pickup", "pln": ["(: cnet_isa_6c48d1f9e5 (IsA technical pickup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "technical analysis of stock trend is a kind of analysis", "pln": ["(: cnet_isa_5bbd30c336 (IsA technical_analysis_of_stock_trend analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "technical foul is a kind of foul", "pln": ["(: cnet_isa_49a77718b4 (IsA technical_foul foul) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "technical knockout is a kind of knockout", "pln": ["(: cnet_isa_b1dd855b29 (IsA technical_knockout knockout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "technical school is a kind of school", "pln": ["(: cnet_isa_faf4a93ebd (IsA technical_school school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "technical sergeant is a kind of sergeant", "pln": ["(: cnet_isa_c8967eeb75 (IsA technical_sergeant sergeant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "technicality is a kind of detail", "pln": ["(: cnet_isa_f00f6f0210 (IsA technicality detail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "technicality is a kind of state", "pln": ["(: cnet_isa_080b300c91 (IsA technicality state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "technician is a kind of expert", "pln": ["(: cnet_isa_8ecc8c0deb (IsA technician expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "technician is a kind of skilled worker", "pln": ["(: cnet_isa_028dbf0992 (IsA technician skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "technicolor is a kind of method", "pln": ["(: cnet_isa_8a32fa69b1 (IsA technicolor method) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "technique is a kind of method", "pln": ["(: cnet_isa_ff8495f21c (IsA technique method) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "techno is a kind of dance music", "pln": ["(: cnet_isa_1cdcb52a93 (IsA techno dance_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "technobabble is a kind of jargon", "pln": ["(: cnet_isa_19c9740eea (IsA technobabble jargon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "technocracy is a kind of political system", "pln": ["(: cnet_isa_493068c640 (IsA technocracy political_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "technocrat is a kind of expert", "pln": ["(: cnet_isa_4fab983513 (IsA technocrat expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "technocrat is a kind of politician", "pln": ["(: cnet_isa_fda35b744f (IsA technocrat politician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "technology is a kind of application", "pln": ["(: cnet_isa_a9ca3f3401 (IsA technology application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "technology is a kind of profession", "pln": ["(: cnet_isa_ff00274d03 (IsA technology profession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "technology is a kind of technology", "pln": ["(: cnet_isa_54bd77bab0 (IsA technology technology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "technology is a kind of equipment", "pln": ["(: cnet_isa_3756521ed2 (IsA technology equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "technology is a kind of machinery", "pln": ["(: cnet_isa_999af9068c (IsA technology machinery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "technology administration is a kind of agency", "pln": ["(: cnet_isa_a191ac9d09 (IsA technology_administration agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "technophile is a kind of fancier", "pln": ["(: cnet_isa_98a92f49a3 (IsA technophile fancier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "technophilia is a kind of enthusiasm", "pln": ["(: cnet_isa_d672d64553 (IsA technophilia enthusiasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "technophobe is a kind of naysayer", "pln": ["(: cnet_isa_47076839b6 (IsA technophobe naysayer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "technophobia is a kind of dislike", "pln": ["(: cnet_isa_4f0c518560 (IsA technophobia dislike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tecophilaeacea is a kind of liliid monocot family", "pln": ["(: cnet_isa_dbdbe71549 (IsA tecophilaeacea liliid_monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tectaria is a kind of fern genus", "pln": ["(: cnet_isa_309720bf43 (IsA tectaria fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tectona is a kind of asterid dicot genus", "pln": ["(: cnet_isa_45e736e8ad (IsA tectona asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tectonic is a kind of morphology", "pln": ["(: cnet_isa_e29144cc5a (IsA tectonic morphology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "teddy is a kind of plaything", "pln": ["(: cnet_isa_c33ff60d7a (IsA teddy plaything) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teddy boy is a kind of tough guy", "pln": ["(: cnet_isa_61837b1500 (IsA teddy_boy tough_guy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teddy boy is a kind of youth subculture", "pln": ["(: cnet_isa_2f9162df73 (IsA teddy_boy youth_subculture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tediousness is a kind of dullness", "pln": ["(: cnet_isa_0a5d325329 (IsA tediousness dullness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tee is a kind of golf equipment", "pln": ["(: cnet_isa_28ef78209c (IsA tee golf_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tee is a kind of peg", "pln": ["(: cnet_isa_4e1e542601 (IsA tee peg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tee is a kind of support", "pln": ["(: cnet_isa_69eb7907d8 (IsA tee support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tee is a kind of site", "pln": ["(: cnet_isa_c2d991c14e (IsA tee site) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tee hinge is a kind of hinge", "pln": ["(: cnet_isa_f0e398138b (IsA tee_hinge hinge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teen is a kind of large integer", "pln": ["(: cnet_isa_4615ea2618 (IsA teen large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teen is a kind of time of life", "pln": ["(: cnet_isa_359733e3fc (IsA teen time_of_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teeoff is a kind of golf stroke", "pln": ["(: cnet_isa_605406c761 (IsA teeoff golf_stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teething is a kind of growth", "pln": ["(: cnet_isa_059f307af9 (IsA teething growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teetotaler is a kind of abstainer", "pln": ["(: cnet_isa_3211417cb0 (IsA teetotaler abstainer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teetotaling is a kind of abstinence", "pln": ["(: cnet_isa_5b772e62a8 (IsA teetotaling abstinence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teff is a kind of love grass", "pln": ["(: cnet_isa_1c8840949c (IsA teff love_grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teg is a kind of lamb", "pln": ["(: cnet_isa_944bca7c50 (IsA teg lamb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teiid lizard is a kind of lizard", "pln": ["(: cnet_isa_2a2053ecac (IsA teiid_lizard lizard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teiidae is a kind of reptile family", "pln": ["(: cnet_isa_44330b7900 (IsA teiidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teju is a kind of teiid lizard", "pln": ["(: cnet_isa_31aeb8408e (IsA teju teiid_lizard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tektite is a kind of natural glass", "pln": ["(: cnet_isa_e6ddab5ac1 (IsA tektite natural_glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telanthera is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_d0678e768d (IsA telanthera caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "telecast is a kind of broadcast", "pln": ["(: cnet_isa_38a9095cc3 (IsA telecast broadcast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telecaster is a kind of broadcaster", "pln": ["(: cnet_isa_4ace7a1e52 (IsA telecaster broadcaster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telecom hotel is a kind of building", "pln": ["(: cnet_isa_7fa9647202 (IsA telecom_hotel building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "telecommunication is a kind of medium", "pln": ["(: cnet_isa_aab14cae28 (IsA telecommunication medium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "telecommunication is a kind of electrical engineering", "pln": ["(: cnet_isa_298f16e807 (IsA telecommunication electrical_engineering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telecommunication system is a kind of communication system", "pln": ["(: cnet_isa_67eb033f45 (IsA telecommunication_system communication_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telecommuting is a kind of employment", "pln": ["(: cnet_isa_b319ff3235 (IsA telecommuting employment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teleconference is a kind of conference", "pln": ["(: cnet_isa_c11b6c8495 (IsA teleconference conference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "telefilm is a kind of movie", "pln": ["(: cnet_isa_5a9abe7980 (IsA telefilm movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telegnosis is a kind of psychic communication", "pln": ["(: cnet_isa_96fc7a5df9 (IsA telegnosis psychic_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telegram is a kind of message", "pln": ["(: cnet_isa_5dc7553af4 (IsA telegram message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telegraph is a kind of apparatus", "pln": ["(: cnet_isa_409ba7859e (IsA telegraph apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telegraph form is a kind of form", "pln": ["(: cnet_isa_60d8beaf35 (IsA telegraph_form form) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "telegraph key is a kind of key", "pln": ["(: cnet_isa_0d17b617a4 (IsA telegraph_key key) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telegraph plant is a kind of shrub", "pln": ["(: cnet_isa_4bf7efcde0 (IsA telegraph_plant shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telegrapher is a kind of operator", "pln": ["(: cnet_isa_650d10ce4e (IsA telegrapher operator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telegraphese is a kind of non standard speech", "pln": ["(: cnet_isa_8fb31ae972 (IsA telegraphese non_standard_speech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "telegraphic signal is a kind of signal", "pln": ["(: cnet_isa_3a630b7df4 (IsA telegraphic_signal signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telegraphy is a kind of telecommunication", "pln": ["(: cnet_isa_e9cf826635 (IsA telegraphy telecommunication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "telekinesis is a kind of psychic phenomena", "pln": ["(: cnet_isa_e297ddd568 (IsA telekinesis psychic_phenomena) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "telemark is a kind of turn", "pln": ["(: cnet_isa_0267f7eccb (IsA telemark turn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telemarketing is a kind of selling", "pln": ["(: cnet_isa_ebabc1a6bf (IsA telemarketing selling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telemeter is a kind of scientific instrument", "pln": ["(: cnet_isa_e9661b037d (IsA telemeter scientific_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telemetry is a kind of measurement", "pln": ["(: cnet_isa_5c49a5b1e9 (IsA telemetry measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telemetry intelligence is a kind of signal intelligence", "pln": ["(: cnet_isa_7a086d20ff (IsA telemetry_intelligence signal_intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telencephalon is a kind of neural structure", "pln": ["(: cnet_isa_d8757cd4ff (IsA telencephalon neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teleologist is a kind of advocate", "pln": ["(: cnet_isa_ffc9471008 (IsA teleologist advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teleology is a kind of philosophical doctrine", "pln": ["(: cnet_isa_61c8c06a2a (IsA teleology philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "teleost fish is a kind of bony fish", "pln": ["(: cnet_isa_e4f2b0088d (IsA teleost_fish bony_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teleostei is a kind of class", "pln": ["(: cnet_isa_ca2c0320a4 (IsA teleostei class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telepathist is a kind of communicator", "pln": ["(: cnet_isa_348da1b97b (IsA telepathist communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telepathy is a kind of psychic communication", "pln": ["(: cnet_isa_3cba4cd18c (IsA telepathy psychic_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telephone is a kind of communication device", "pln": ["(: cnet_isa_7d5cacff09 (IsA telephone communication_device) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "telephone is a kind of electronic equipment", "pln": ["(: cnet_isa_079c5ec0c0 (IsA telephone electronic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telephone is a kind of telecommunication", "pln": ["(: cnet_isa_2cb9efcb38 (IsA telephone telecommunication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telephone bell is a kind of electric bell", "pln": ["(: cnet_isa_611d9c0c77 (IsA telephone_bell electric_bell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "telephone booth is a kind of booth", "pln": ["(: cnet_isa_e91d10bf88 (IsA telephone_booth booth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telephone company is a kind of utility", "pln": ["(: cnet_isa_5828392921 (IsA telephone_company utility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telephone conversation is a kind of conversation", "pln": ["(: cnet_isa_b71e0729fa (IsA telephone_conversation conversation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telephone cord is a kind of telephone wire", "pln": ["(: cnet_isa_4ba131fe13 (IsA telephone_cord telephone_wire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telephone interview is a kind of interview", "pln": ["(: cnet_isa_90b939360c (IsA telephone_interview interview) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telephone jack is a kind of jack", "pln": ["(: cnet_isa_1cc48de583 (IsA telephone_jack jack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telephone line is a kind of connection", "pln": ["(: cnet_isa_d2a5e0a8ec (IsA telephone_line connection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telephone operator is a kind of operator", "pln": ["(: cnet_isa_4d53c569de (IsA telephone_operator operator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telephone order is a kind of telemarketing", "pln": ["(: cnet_isa_0eda6abb44 (IsA telephone_order telemarketing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telephone plug is a kind of plug", "pln": ["(: cnet_isa_7e46cff108 (IsA telephone_plug plug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "telephone pole is a kind of post", "pln": ["(: cnet_isa_9992b1a973 (IsA telephone_pole post) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telephone receiver is a kind of earphone", "pln": ["(: cnet_isa_d311eb2abb (IsA telephone_receiver earphone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telephone system is a kind of communication system", "pln": ["(: cnet_isa_d41c6e4366 (IsA telephone_system communication_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telephone unit is a kind of unit of measurement", "pln": ["(: cnet_isa_4d4b6cff95 (IsA telephone_unit unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telephone wire is a kind of wire", "pln": ["(: cnet_isa_6931043d8b (IsA telephone_wire wire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telephoto len is a kind of camera len", "pln": ["(: cnet_isa_30352c9ac4 (IsA telephoto_len camera_len) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telephotograph is a kind of picture", "pln": ["(: cnet_isa_de5aa17ae0 (IsA telephotograph picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telephotography is a kind of photography", "pln": ["(: cnet_isa_a255c47afa (IsA telephotography photography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telephotography is a kind of transmission", "pln": ["(: cnet_isa_672e16cef0 (IsA telephotography transmission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "teleportation is a kind of transportation", "pln": ["(: cnet_isa_d3df2c67ed (IsA teleportation transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telerobotic is a kind of robotic", "pln": ["(: cnet_isa_3f72c0aa5c (IsA telerobotic robotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telescope is a kind of device", "pln": ["(: cnet_isa_b36d39abaf (IsA telescope device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telescope is a kind of magnifier", "pln": ["(: cnet_isa_cd176ef383 (IsA telescope magnifier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telescope is a kind of for seeing thing far away", "pln": ["(: cnet_isa_9ec7b70974 (IsA telescope for_seeing_thing_far_away) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telescopic sight is a kind of gunsight", "pln": ["(: cnet_isa_90bb71a03f (IsA telescopic_sight gunsight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telescopy is a kind of art", "pln": ["(: cnet_isa_307ba54387 (IsA telescopy art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telethermometer is a kind of thermometer", "pln": ["(: cnet_isa_0784bb53f8 (IsA telethermometer thermometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teletypewriter is a kind of character printer", "pln": ["(: cnet_isa_023aff1e21 (IsA teletypewriter character_printer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "televangelism is a kind of evangelism", "pln": ["(: cnet_isa_d698b24276 (IsA televangelism evangelism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "televangelist is a kind of evangelist", "pln": ["(: cnet_isa_0d9df5c5f4 (IsA televangelist evangelist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "television is a kind of appliance", "pln": ["(: cnet_isa_3e701121c2 (IsA television appliance) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "television is a kind of good way to spend time", "pln": ["(: cnet_isa_13028388d9 (IsA television good_way_to_spend_time) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "television is a kind of machine", "pln": ["(: cnet_isa_c71c1196d8 (IsA television machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "television is a kind of tv", "pln": ["(: cnet_isa_a97c673b04 (IsA television tv) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "television is a kind of broadcasting", "pln": ["(: cnet_isa_b1a5a76d3a (IsA television broadcasting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "television is a kind of telecommunication system", "pln": ["(: cnet_isa_8dcfedc4a8 (IsA television telecommunication_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "television antenna is a kind of omnidirectional antenna", "pln": ["(: cnet_isa_847c663c12 (IsA television_antenna omnidirectional_antenna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "television camera is a kind of television equipment", "pln": ["(: cnet_isa_8cdf43830a (IsA television_camera television_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "television camera tube is a kind of tube", "pln": ["(: cnet_isa_87c666284f (IsA television_camera_tube tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "television equipment is a kind of electronic equipment", "pln": ["(: cnet_isa_9ce482112e (IsA television_equipment electronic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "television monitor is a kind of monitor", "pln": ["(: cnet_isa_c972cd1c83 (IsA television_monitor monitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "television new is a kind of new program", "pln": ["(: cnet_isa_59168f16af (IsA television_new new_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "television program is a kind of program", "pln": ["(: cnet_isa_0e88fe54f4 (IsA television_program program) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "television program is a kind of broadcast", "pln": ["(: cnet_isa_74285d6f6f (IsA television_program broadcast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "television receiver is a kind of receiver", "pln": ["(: cnet_isa_300f0a34e7 (IsA television_receiver receiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "television reporter is a kind of reporter", "pln": ["(: cnet_isa_3013845a9d (IsA television_reporter reporter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "television room is a kind of room", "pln": ["(: cnet_isa_a5d798007d (IsA television_room room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "television star is a kind of star", "pln": ["(: cnet_isa_d05efe45c7 (IsA television_star star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "television station is a kind of broadcasting station", "pln": ["(: cnet_isa_a20e6cf1cb (IsA television_station broadcasting_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "television transmitter is a kind of transmitter", "pln": ["(: cnet_isa_d6dcaed29b (IsA television_transmitter transmitter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teliospore is a kind of chlamydospore", "pln": ["(: cnet_isa_a763f66c44 (IsA teliospore chlamydospore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teller is a kind of banker", "pln": ["(: cnet_isa_2fd68fb0f1 (IsA teller banker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teller is a kind of official", "pln": ["(: cnet_isa_6200c0b996 (IsA teller official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tellima is a kind of rosid dicot genus", "pln": ["(: cnet_isa_8f8c8839ce (IsA tellima rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telling is a kind of informing", "pln": ["(: cnet_isa_75d1fafe9b (IsA telling informing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tellurian is a kind of inhabitant", "pln": ["(: cnet_isa_f73694418e (IsA tellurian inhabitant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "telluride is a kind of compound", "pln": ["(: cnet_isa_b72730fb29 (IsA telluride compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tellurium is a kind of chemical element", "pln": ["(: cnet_isa_66275425d3 (IsA tellurium chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telocentric chromosome is a kind of chromosome", "pln": ["(: cnet_isa_94782ad654 (IsA telocentric_chromosome chromosome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telomerase is a kind of enzyme", "pln": ["(: cnet_isa_9b609868b5 (IsA telomerase enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telomere is a kind of end", "pln": ["(: cnet_isa_f1b8f35ce2 (IsA telomere end) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telopea is a kind of dicot genus", "pln": ["(: cnet_isa_831b2be4c3 (IsA telopea dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telophase is a kind of situation", "pln": ["(: cnet_isa_4ba1ab91ce (IsA telophase situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telophase is a kind of telophase generic", "pln": ["(: cnet_isa_7119d18e4a (IsA telophase telophase_generic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telophase is a kind of phase of cell division", "pln": ["(: cnet_isa_e64dbef4b0 (IsA telophase phase_of_cell_division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telophase cell is a kind of cell undergoing meiosis", "pln": ["(: cnet_isa_594e928e57 (IsA telophase_cell cell_undergoing_meiosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telophase cell is a kind of eukaryotic cell", "pln": ["(: cnet_isa_808b39c7f9 (IsA telophase_cell eukaryotic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telosporidia is a kind of class", "pln": ["(: cnet_isa_4686116f38 (IsA telosporidia class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telpher is a kind of conveyance", "pln": ["(: cnet_isa_4e6295ddd2 (IsA telpher conveyance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telpherage is a kind of transportation system", "pln": ["(: cnet_isa_1c8a20e7d0 (IsA telpherage transportation_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telugu is a kind of south central dravidian", "pln": ["(: cnet_isa_a922b4df9b (IsA telugu south_central_dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "telugu is a kind of dravidian", "pln": ["(: cnet_isa_83dea1f893 (IsA telugu dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temnospondyli is a kind of animal order", "pln": ["(: cnet_isa_d71182f14d (IsA temnospondyli animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "temp is a kind of worker", "pln": ["(: cnet_isa_877499f5d5 (IsA temp worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "temper is a kind of elasticity", "pln": ["(: cnet_isa_e9987abbcf (IsA temper elasticity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temper is a kind of ill nature", "pln": ["(: cnet_isa_afca1b8281 (IsA temper ill_nature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temper is a kind of feeling", "pln": ["(: cnet_isa_27c59fbd74 (IsA temper feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tempera is a kind of water base paint", "pln": ["(: cnet_isa_3ac09ce712 (IsA tempera water_base_paint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temperament is a kind of adjustment", "pln": ["(: cnet_isa_ce8e93f165 (IsA temperament adjustment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temperament is a kind of emotionality", "pln": ["(: cnet_isa_b07c7c07fe (IsA temperament emotionality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temperance is a kind of combination", "pln": ["(: cnet_isa_e8148d0a4c (IsA temperance combination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temperance is a kind of natural virtue", "pln": ["(: cnet_isa_6d8a6728cb (IsA temperance natural_virtue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temperance is a kind of restraint", "pln": ["(: cnet_isa_d1b472d9d5 (IsA temperance restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temperate rain forest is a kind of rain forest", "pln": ["(: cnet_isa_47efdcf0ca (IsA temperate_rain_forest rain_forest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temperate zone is a kind of climatic zone", "pln": ["(: cnet_isa_f218473c11 (IsA temperate_zone climatic_zone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temperature is a kind of fundamental quantity", "pln": ["(: cnet_isa_6e10390afb (IsA temperature fundamental_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temperature is a kind of physical property", "pln": ["(: cnet_isa_7555175df3 (IsA temperature physical_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temperature is a kind of somesthesia", "pln": ["(: cnet_isa_4933c8c78a (IsA temperature somesthesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temperature change is a kind of natural process", "pln": ["(: cnet_isa_b1aba6cae1 (IsA temperature_change natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temperature gradient is a kind of gradient", "pln": ["(: cnet_isa_2846573372 (IsA temperature_gradient gradient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temperature scale is a kind of scale", "pln": ["(: cnet_isa_572eb545cc (IsA temperature_scale scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temperature scale is a kind of system of measurement", "pln": ["(: cnet_isa_a4d17a39a8 (IsA temperature_scale system_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temperature unit is a kind of unit of measurement", "pln": ["(: cnet_isa_479e946bca (IsA temperature_unit unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tempest is a kind of windstorm", "pln": ["(: cnet_isa_463334172f (IsA tempest windstorm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tempestuousness is a kind of storminess", "pln": ["(: cnet_isa_9294727670 (IsA tempestuousness storminess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "templar is a kind of knight", "pln": ["(: cnet_isa_3a9c2364bd (IsA templar knight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "template is a kind of model", "pln": ["(: cnet_isa_4b397f89b9 (IsA template model) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temple is a kind of place of worship", "pln": ["(: cnet_isa_a46a2e47d3 (IsA temple place_of_worship) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temple is a kind of place where can worship", "pln": ["(: cnet_isa_8ea2b20632 (IsA temple place_where_can_worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temple is a kind of building", "pln": ["(: cnet_isa_c2cf81ae35 (IsA temple building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temple is a kind of feature", "pln": ["(: cnet_isa_d76764318a (IsA temple feature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temple orange is a kind of orange", "pln": ["(: cnet_isa_57b2a86de5 (IsA temple_orange orange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "templetonia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_fb679967b7 (IsA templetonia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tempo is a kind of musical time", "pln": ["(: cnet_isa_e751dd0d3a (IsA tempo musical_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tempo is a kind of rate", "pln": ["(: cnet_isa_6316e6929d (IsA tempo rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temporal arrangement is a kind of temporal property", "pln": ["(: cnet_isa_441a09438b (IsA temporal_arrangement temporal_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "temporal arteritis is a kind of arteritis", "pln": ["(: cnet_isa_76ccb5f782 (IsA temporal_arteritis arteritis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "temporal artery is a kind of cerebral artery", "pln": ["(: cnet_isa_81e2b98a2b (IsA temporal_artery cerebral_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "temporal bone is a kind of bone", "pln": ["(: cnet_isa_7143774118 (IsA temporal_bone bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temporal canthus is a kind of canthus", "pln": ["(: cnet_isa_49e417819c (IsA temporal_canthus canthus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temporal gyrus is a kind of gyrus", "pln": ["(: cnet_isa_74c7e9fc99 (IsA temporal_gyrus gyrus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temporal lobe is a kind of lobe", "pln": ["(: cnet_isa_d87c341300 (IsA temporal_lobe lobe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "temporal property is a kind of property", "pln": ["(: cnet_isa_287ab58e3f (IsA temporal_property property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temporal relation is a kind of relation", "pln": ["(: cnet_isa_fe80e5203d (IsA temporal_relation relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temporal role is a kind of semantic role", "pln": ["(: cnet_isa_3cfbec476e (IsA temporal_role semantic_role) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temporal vein is a kind of vein", "pln": ["(: cnet_isa_b70c52da0a (IsA temporal_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temporalis muscle is a kind of skeletal muscle", "pln": ["(: cnet_isa_1b05e34851 (IsA temporalis_muscle skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temporalty is a kind of spiritualty", "pln": ["(: cnet_isa_0fa00015e1 (IsA temporalty spiritualty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temporariness is a kind of impermanence", "pln": ["(: cnet_isa_43ce80ee6d (IsA temporariness impermanence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temporary hookup is a kind of connection", "pln": ["(: cnet_isa_fb113f534b (IsA temporary_hookup connection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temporary hookup is a kind of lash up", "pln": ["(: cnet_isa_fef40c6d0f (IsA temporary_hookup lash_up) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "temporary injunction is a kind of injunction", "pln": ["(: cnet_isa_7c615c74d1 (IsA temporary_injunction injunction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temporary state is a kind of state", "pln": ["(: cnet_isa_892b621807 (IsA temporary_state state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temporizer is a kind of delayer", "pln": ["(: cnet_isa_52e94c3e32 (IsA temporizer delayer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "temptation is a kind of influence", "pln": ["(: cnet_isa_039f864f36 (IsA temptation influence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "temptation is a kind of desire", "pln": ["(: cnet_isa_df3b8df3a8 (IsA temptation desire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tempter is a kind of person", "pln": ["(: cnet_isa_dd989e77b0 (IsA tempter person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tempura is a kind of dish", "pln": ["(: cnet_isa_5131ce9c60 (IsA tempura dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ten is a kind of large integer", "pln": ["(: cnet_isa_0f579dc523 (IsA ten large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ten commandment is a kind of good rule to live by", "pln": ["(: cnet_isa_51026e33ce (IsA ten_commandment good_rule_to_live_by) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ten spined stickleback is a kind of stickleback", "pln": ["(: cnet_isa_7ba44289aa (IsA ten_spined_stickleback stickleback) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ten spot is a kind of spot", "pln": ["(: cnet_isa_652307a7e3 (IsA ten_spot spot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ten thousand is a kind of large integer", "pln": ["(: cnet_isa_7e3ccaa739 (IsA ten_thousand large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenant is a kind of holder", "pln": ["(: cnet_isa_76f041a091 (IsA tenant holder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenant is a kind of payer", "pln": ["(: cnet_isa_de472063cc (IsA tenant payer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenant is a kind of resident", "pln": ["(: cnet_isa_65ff050de2 (IsA tenant resident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenant farmer is a kind of farmer", "pln": ["(: cnet_isa_620570a790 (IsA tenant_farmer farmer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenant farmer is a kind of tenant", "pln": ["(: cnet_isa_a6aafe0821 (IsA tenant_farmer tenant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenantry is a kind of collection", "pln": ["(: cnet_isa_cb0be74fc5 (IsA tenantry collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tench is a kind of cyprinid", "pln": ["(: cnet_isa_993e8faf32 (IsA tench cyprinid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tendency is a kind of disposition", "pln": ["(: cnet_isa_c6083e0f65 (IsA tendency disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tendency is a kind of direction", "pln": ["(: cnet_isa_919be405ba (IsA tendency direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tendentiousness is a kind of bia", "pln": ["(: cnet_isa_4354e198e0 (IsA tendentiousness bia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tender is a kind of boat", "pln": ["(: cnet_isa_63a16c0c7b (IsA tender boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tender is a kind of car", "pln": ["(: cnet_isa_474d65d547 (IsA tender car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tender is a kind of ship", "pln": ["(: cnet_isa_0ac54fb8d9 (IsA tender ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tender is a kind of medium of exchange", "pln": ["(: cnet_isa_df398677f6 (IsA tender medium_of_exchange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tender loving care is a kind of care", "pln": ["(: cnet_isa_3569019aed (IsA tender_loving_care care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tender offer is a kind of offer", "pln": ["(: cnet_isa_c3634ff670 (IsA tender_offer offer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tenderfoot is a kind of novice", "pln": ["(: cnet_isa_223d487b09 (IsA tenderfoot novice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tendergreen is a kind of crucifer", "pln": ["(: cnet_isa_ecdc9954fd (IsA tendergreen crucifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenderization is a kind of improvement", "pln": ["(: cnet_isa_82b8aa3b53 (IsA tenderization improvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tenderizer is a kind of compound", "pln": ["(: cnet_isa_2c9f1c6589 (IsA tenderizer compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenderloin is a kind of cut", "pln": ["(: cnet_isa_05feb21c35 (IsA tenderloin cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenderness is a kind of affectionateness", "pln": ["(: cnet_isa_911642e3f6 (IsA tenderness affectionateness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenderness is a kind of compassion", "pln": ["(: cnet_isa_00bef44bf4 (IsA tenderness compassion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenderness is a kind of pain", "pln": ["(: cnet_isa_1775fac92c (IsA tenderness pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tendinitis is a kind of inflammation", "pln": ["(: cnet_isa_7a95b06194 (IsA tendinitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tendon is a kind of connective tissue", "pln": ["(: cnet_isa_1c5cc1a0ea (IsA tendon connective_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tendril is a kind of plant part", "pln": ["(: cnet_isa_1928fd56dd (IsA tendril plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenebrionidae is a kind of arthropod family", "pln": ["(: cnet_isa_1a1c60c77a (IsA tenebrionidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenement is a kind of apartment building", "pln": ["(: cnet_isa_940bf5c651 (IsA tenement apartment_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenement district is a kind of residential district", "pln": ["(: cnet_isa_c4facc4ca9 (IsA tenement_district residential_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenesmus is a kind of spasm", "pln": ["(: cnet_isa_5266bbdafe (IsA tenesmus spasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenge is a kind of kazakhstani monetary unit", "pln": ["(: cnet_isa_aca2f8e905 (IsA tenge kazakhstani_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenge is a kind of turkmen monetary unit", "pln": ["(: cnet_isa_8e2bd9ac16 (IsA tenge turkmen_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenner is a kind of bill", "pln": ["(: cnet_isa_49a0a3e011 (IsA tenner bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tennessee walker is a kind of saddle horse", "pln": ["(: cnet_isa_d82444211d (IsA tennessee_walker saddle_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tennis is a kind of game", "pln": ["(: cnet_isa_92dfd8bd59 (IsA tennis game) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tennis is a kind of great sport", "pln": ["(: cnet_isa_085f501038 (IsA tennis great_sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tennis is a kind of sport", "pln": ["(: cnet_isa_c92b3bc192 (IsA tennis sport) (STV 1.0 0.9796))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tennis is a kind of court game", "pln": ["(: cnet_isa_aa5aefbfaa (IsA tennis court_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tennis ball is a kind of ball", "pln": ["(: cnet_isa_90df5337c8 (IsA tennis_ball ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tennis camp is a kind of camp", "pln": ["(: cnet_isa_1f50ebfb80 (IsA tennis_camp camp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tennis club is a kind of racket club", "pln": ["(: cnet_isa_4d18d986fa (IsA tennis_club racket_club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tennis coach is a kind of coach", "pln": ["(: cnet_isa_21ac993a3c (IsA tennis_coach coach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tennis court is a kind of where people play tennis", "pln": ["(: cnet_isa_2caa0a3064 (IsA tennis_court where_people_play_tennis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tennis court is a kind of court", "pln": ["(: cnet_isa_407f949fae (IsA tennis_court court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tennis elbow is a kind of epicondylitis", "pln": ["(: cnet_isa_587b6d6a28 (IsA tennis_elbow epicondylitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tennis elbow is a kind of tendinitis", "pln": ["(: cnet_isa_4446b9fa72 (IsA tennis_elbow tendinitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tennis lesson is a kind of lesson", "pln": ["(: cnet_isa_22c8da0eac (IsA tennis_lesson lesson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tennis match is a kind of match", "pln": ["(: cnet_isa_9f278f1c8e (IsA tennis_match match) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tennis player is a kind of athlete", "pln": ["(: cnet_isa_d5fae6b947 (IsA tennis_player athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tennis player is a kind of player", "pln": ["(: cnet_isa_48f55db14a (IsA tennis_player player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tennis pro is a kind of tennis player", "pln": ["(: cnet_isa_3fd3ea0dd3 (IsA tennis_pro tennis_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tennis racket is a kind of piece of tennis equiptment", "pln": ["(: cnet_isa_46f5388410 (IsA tennis_racket piece_of_tennis_equiptment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tennis racket is a kind of racket", "pln": ["(: cnet_isa_ee7ab35e31 (IsA tennis_racket racket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tennis stroke is a kind of stroke", "pln": ["(: cnet_isa_4fe9789771 (IsA tennis_stroke stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenon is a kind of projection", "pln": ["(: cnet_isa_dc891ae369 (IsA tenon projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenor is a kind of pitch", "pln": ["(: cnet_isa_858bb4cb12 (IsA tenor pitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenor is a kind of direction", "pln": ["(: cnet_isa_40952ace42 (IsA tenor direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenor is a kind of meaning", "pln": ["(: cnet_isa_c1e478f682 (IsA tenor meaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenor is a kind of singing voice", "pln": ["(: cnet_isa_23db957684 (IsA tenor singing_voice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenor is a kind of singer", "pln": ["(: cnet_isa_7bc16c16fa (IsA tenor singer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenor clef is a kind of clef", "pln": ["(: cnet_isa_cdcb3ec92d (IsA tenor_clef clef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenor drum is a kind of drum", "pln": ["(: cnet_isa_67aa5abcc7 (IsA tenor_drum drum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenor saxophonist is a kind of saxophonist", "pln": ["(: cnet_isa_3d2e6090ca (IsA tenor_saxophonist saxophonist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenoroon is a kind of bassoon", "pln": ["(: cnet_isa_760d5329b9 (IsA tenoroon bassoon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenosynovitis is a kind of synovitis", "pln": ["(: cnet_isa_1073db8941 (IsA tenosynovitis synovitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenosynovitis is a kind of tendinitis", "pln": ["(: cnet_isa_b2f622a587 (IsA tenosynovitis tendinitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenpence is a kind of coin", "pln": ["(: cnet_isa_ef1b21008d (IsA tenpence coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenpenny nail is a kind of nail", "pln": ["(: cnet_isa_ac8e419528 (IsA tenpenny_nail nail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenpin is a kind of bowling pin", "pln": ["(: cnet_isa_5ca845f4ad (IsA tenpin bowling_pin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenpin is a kind of bowling", "pln": ["(: cnet_isa_72f3e16136 (IsA tenpin bowling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenrec is a kind of insectivore", "pln": ["(: cnet_isa_c7b788d55a (IsA tenrec insectivore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenrecidae is a kind of mammal family", "pln": ["(: cnet_isa_e948bc8313 (IsA tenrecidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tense is a kind of grammatical category", "pln": ["(: cnet_isa_d01556d911 (IsA tense grammatical_category) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tense system is a kind of language system", "pln": ["(: cnet_isa_a665815700 (IsA tense_system language_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tensile strength is a kind of lastingness", "pln": ["(: cnet_isa_b76a83840a (IsA tensile_strength lastingness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tensimeter is a kind of manometer", "pln": ["(: cnet_isa_297f480e6a (IsA tensimeter manometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tensiometer is a kind of measuring instrument", "pln": ["(: cnet_isa_aa0c6f8704 (IsA tensiometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tension is a kind of stretching", "pln": ["(: cnet_isa_d3e1232426 (IsA tension stretching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tension is a kind of balance", "pln": ["(: cnet_isa_90e6ed5d16 (IsA tension balance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tension is a kind of stress", "pln": ["(: cnet_isa_5b0d8a5835 (IsA tension stress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tension is a kind of strain", "pln": ["(: cnet_isa_22ad6da6c9 (IsA tension strain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tension is a kind of condition", "pln": ["(: cnet_isa_32cd0a102a (IsA tension condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tension headache is a kind of headache", "pln": ["(: cnet_isa_3f97453d92 (IsA tension_headache headache) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tensor is a kind of muscle", "pln": ["(: cnet_isa_791e6e4ddb (IsA tensor muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tensor is a kind of variable", "pln": ["(: cnet_isa_9edbb2ee54 (IsA tensor variable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tensor tympani is a kind of tensor", "pln": ["(: cnet_isa_2587ab2088 (IsA tensor_tympani tensor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tent is a kind of shelter", "pln": ["(: cnet_isa_5710eb57cd (IsA tent shelter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tent is a kind of web", "pln": ["(: cnet_isa_30488e32aa (IsA tent web) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tent caterpillar is a kind of caterpillar", "pln": ["(: cnet_isa_8f0aada37c (IsA tent_caterpillar caterpillar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tent caterpillar moth is a kind of lasiocampid", "pln": ["(: cnet_isa_46b8b27d6b (IsA tent_caterpillar_moth lasiocampid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tent caterpillar moth is a kind of moth", "pln": ["(: cnet_isa_867957533d (IsA tent_caterpillar_moth moth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tent fly is a kind of flap", "pln": ["(: cnet_isa_ee66132088 (IsA tent_fly flap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tent peg is a kind of peg", "pln": ["(: cnet_isa_f4b073ef47 (IsA tent_peg peg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tentacle is a kind of process", "pln": ["(: cnet_isa_ef9cdc7afc (IsA tentacle process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tentacle is a kind of grip", "pln": ["(: cnet_isa_a261c300c2 (IsA tentacle grip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tentaculata is a kind of class", "pln": ["(: cnet_isa_f60feaa76d (IsA tentaculata class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tenter is a kind of framework", "pln": ["(: cnet_isa_478285ec64 (IsA tenter framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenterhook is a kind of hook", "pln": ["(: cnet_isa_93ccfa75dc (IsA tenterhook hook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenth is a kind of rank", "pln": ["(: cnet_isa_90a5576141 (IsA tenth rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenth month of year is a kind of october", "pln": ["(: cnet_isa_104c5cd8ca (IsA tenth_month_of_year october) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenthredinidae is a kind of arthropod family", "pln": ["(: cnet_isa_07d2f600e9 (IsA tenthredinidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tentmaker is a kind of maker", "pln": ["(: cnet_isa_02ec4841d0 (IsA tentmaker maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tentorium is a kind of fold", "pln": ["(: cnet_isa_a9e035f94a (IsA tentorium fold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenure is a kind of legal right", "pln": ["(: cnet_isa_ab776f4677 (IsA tenure legal_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tenure is a kind of term", "pln": ["(: cnet_isa_3f8baa69e1 (IsA tenure term) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tepal is a kind of plant part", "pln": ["(: cnet_isa_0e68d4b065 (IsA tepal plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tepary bean is a kind of shell bean", "pln": ["(: cnet_isa_a9d150071a (IsA tepary_bean shell_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tepee is a kind of lodge", "pln": ["(: cnet_isa_3aacb5bbcb (IsA tepee lodge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tepee is a kind of tent", "pln": ["(: cnet_isa_b588021786 (IsA tepee tent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tephrosia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_a2cb8a7859 (IsA tephrosia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tepidness is a kind of coldness", "pln": ["(: cnet_isa_e989933baa (IsA tepidness coldness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tequila is a kind of liquor", "pln": ["(: cnet_isa_6ee3a5aa28 (IsA tequila liquor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tera is a kind of biu mandara", "pln": ["(: cnet_isa_d19b70b1c3 (IsA tera biu_mandara) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terabit is a kind of computer memory unit", "pln": ["(: cnet_isa_6b12c2b55e (IsA terabit computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terabyte is a kind of computer memory unit", "pln": ["(: cnet_isa_f54a2ab16a (IsA terabyte computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teraflop is a kind of unit of measurement", "pln": ["(: cnet_isa_4dda88333f (IsA teraflop unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terahertz is a kind of rate", "pln": ["(: cnet_isa_31f57a084b (IsA terahertz rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teratogen is a kind of agent", "pln": ["(: cnet_isa_6f2ef7627f (IsA teratogen agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teratogenesis is a kind of growth", "pln": ["(: cnet_isa_861b1bdd07 (IsA teratogenesis growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teratology is a kind of embryology", "pln": ["(: cnet_isa_82dd74031b (IsA teratology embryology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teratoma is a kind of tumor", "pln": ["(: cnet_isa_678304b8cb (IsA teratoma tumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terbium is a kind of metallic element", "pln": ["(: cnet_isa_99bada9557 (IsA terbium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terbium metal is a kind of rare earth", "pln": ["(: cnet_isa_a1ec98d7f8 (IsA terbium_metal rare_earth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terce is a kind of canonical hour", "pln": ["(: cnet_isa_bb53d62df5 (IsA terce canonical_hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tercentennial is a kind of anniversary", "pln": ["(: cnet_isa_a7b69c5371 (IsA tercentennial anniversary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terebella is a kind of worm genus", "pln": ["(: cnet_isa_7a07687f80 (IsA terebella worm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terebellidae is a kind of worm family", "pln": ["(: cnet_isa_d5801badcf (IsA terebellidae worm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terebinth is a kind of angiospermous tree", "pln": ["(: cnet_isa_fa9c9147fb (IsA terebinth angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "teredinidae is a kind of mollusk family", "pln": ["(: cnet_isa_d8fcd241af (IsA teredinidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "teredo is a kind of shipworm", "pln": ["(: cnet_isa_13b46a3f20 (IsA teredo shipworm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tere is a kind of skeletal muscle", "pln": ["(: cnet_isa_4846785804 (IsA tere skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tere major is a kind of tere", "pln": ["(: cnet_isa_44f012291a (IsA tere_major tere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tere minor is a kind of tere", "pln": ["(: cnet_isa_e86c51ede1 (IsA tere_minor tere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teriyaki is a kind of dish", "pln": ["(: cnet_isa_c8e1e1e3d2 (IsA teriyaki dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "term is a kind of quantity", "pln": ["(: cnet_isa_7eb31090bd (IsA term quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "term is a kind of constituent", "pln": ["(: cnet_isa_688289f94e (IsA term constituent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "term is a kind of word", "pln": ["(: cnet_isa_34ecc3c7fa (IsA term word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "term is a kind of point", "pln": ["(: cnet_isa_79ff6703f5 (IsA term point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "term is a kind of time period", "pln": ["(: cnet_isa_e941c216c0 (IsA term time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "term infant is a kind of neonate", "pln": ["(: cnet_isa_2627be15da (IsA term_infant neonate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "term insurance is a kind of insurance", "pln": ["(: cnet_isa_88ce2758be (IsA term_insurance insurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "term paper is a kind of composition", "pln": ["(: cnet_isa_8d35856d0f (IsA term_paper composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "termer is a kind of person", "pln": ["(: cnet_isa_2b91d63e3e (IsA termer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terme is a kind of arthropod genus", "pln": ["(: cnet_isa_2150b1bf9d (IsA terme arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terminable interest is a kind of interest", "pln": ["(: cnet_isa_374aadc1ff (IsA terminable_interest interest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terminal is a kind of contact", "pln": ["(: cnet_isa_d4542d7194 (IsA terminal contact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terminal is a kind of electronic equipment", "pln": ["(: cnet_isa_33acd12be7 (IsA terminal electronic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terminal is a kind of station", "pln": ["(: cnet_isa_332f1c6529 (IsA terminal station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terminal emulation is a kind of emulation", "pln": ["(: cnet_isa_02a12c652c (IsA terminal_emulation emulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "terminal leave is a kind of leave", "pln": ["(: cnet_isa_5c5193baa9 (IsA terminal_leave leave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terminal velocity is a kind of speed", "pln": ["(: cnet_isa_05c57e3539 (IsA terminal_velocity speed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "termination is a kind of change of state", "pln": ["(: cnet_isa_790e7cd6bc (IsA termination change_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "termination is a kind of end", "pln": ["(: cnet_isa_a02747e459 (IsA termination end) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terminology is a kind of word", "pln": ["(: cnet_isa_5d8f229439 (IsA terminology word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terminus is a kind of statue", "pln": ["(: cnet_isa_4a342ccf2b (IsA terminus statue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terminus is a kind of end", "pln": ["(: cnet_isa_5d6c96b2be (IsA terminus end) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terminus ad quem is a kind of end", "pln": ["(: cnet_isa_8cedf00f65 (IsA terminus_ad_quem end) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terminus quo is a kind of beginning", "pln": ["(: cnet_isa_86594133fc (IsA terminus_quo beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "termite is a kind of insect", "pln": ["(: cnet_isa_95bf537f06 (IsA termite insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "termitidae is a kind of arthropod family", "pln": ["(: cnet_isa_8c307b5baa (IsA termitidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tern is a kind of bird", "pln": ["(: cnet_isa_16d738b30d (IsA tern bird) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tern is a kind of larid", "pln": ["(: cnet_isa_c10a6a4e71 (IsA tern larid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terpene is a kind of hydrocarbon", "pln": ["(: cnet_isa_42b904cde4 (IsA terpene hydrocarbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terra alba is a kind of gypsum", "pln": ["(: cnet_isa_3db879a653 (IsA terra_alba gypsum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "terra cotta is a kind of earthenware", "pln": ["(: cnet_isa_3c2066e3f8 (IsA terra_cotta earthenware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terra sigillata is a kind of earthenware", "pln": ["(: cnet_isa_f829c6a858 (IsA terra_sigillata earthenware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terrace is a kind of row", "pln": ["(: cnet_isa_0d4b7c3452 (IsA terrace row) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terrace is a kind of tableland", "pln": ["(: cnet_isa_413d424539 (IsA terrace tableland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terraced house is a kind of row house", "pln": ["(: cnet_isa_eb29dca586 (IsA terraced_house row_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terrain is a kind of tract", "pln": ["(: cnet_isa_d4705dcf3e (IsA terrain tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terrain flight is a kind of flight", "pln": ["(: cnet_isa_61355b470d (IsA terrain_flight flight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terrain intelligence is a kind of tactical intelligence", "pln": ["(: cnet_isa_998b2c5ce1 (IsA terrain_intelligence tactical_intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terrapene is a kind of reptile genus", "pln": ["(: cnet_isa_c2c1f7a1c9 (IsA terrapene reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terrapin is a kind of turtle", "pln": ["(: cnet_isa_dedfa84d62 (IsA terrapin turtle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terrarium is a kind of vivarium", "pln": ["(: cnet_isa_f2966c0fb7 (IsA terrarium vivarium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "terreplein is a kind of space", "pln": ["(: cnet_isa_384d7d080c (IsA terreplein space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terrestrial guidance is a kind of steering", "pln": ["(: cnet_isa_6995fc6b73 (IsA terrestrial_guidance steering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terrestrial planet is a kind of planet", "pln": ["(: cnet_isa_9489127f38 (IsA terrestrial_planet planet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terrestrial time is a kind of time unit", "pln": ["(: cnet_isa_a8d91d1c23 (IsA terrestrial_time time_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terrier is a kind of hunting dog", "pln": ["(: cnet_isa_ba8907d082 (IsA terrier hunting_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terrine is a kind of dish", "pln": ["(: cnet_isa_8823c1e073 (IsA terrine dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "territorial is a kind of guard", "pln": ["(: cnet_isa_23226acfdb (IsA territorial guard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "territorial is a kind of soldier", "pln": ["(: cnet_isa_2fcccef9ef (IsA territorial soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "territorial army is a kind of territorial", "pln": ["(: cnet_isa_d57de3c121 (IsA territorial_army territorial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "territorial water is a kind of body of water", "pln": ["(: cnet_isa_ab40ece934 (IsA territorial_water body_of_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "territoriality is a kind of behavior", "pln": ["(: cnet_isa_96cf7443e3 (IsA territoriality behavior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "territorialization is a kind of organization", "pln": ["(: cnet_isa_1e670c8176 (IsA territorialization organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "territory is a kind of area", "pln": ["(: cnet_isa_76c363567c (IsA territory area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "territory is a kind of geographical area", "pln": ["(: cnet_isa_a87decdf25 (IsA territory geographical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terror is a kind of strong emotion", "pln": ["(: cnet_isa_b1c99b79e0 (IsA terror strong_emotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terror is a kind of coercion", "pln": ["(: cnet_isa_514c0fc053 (IsA terror coercion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terror is a kind of imp", "pln": ["(: cnet_isa_3b073258c5 (IsA terror imp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terror is a kind of person", "pln": ["(: cnet_isa_b0fed4a5f4 (IsA terror person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terrorism is a kind of dish norable horrofic situation", "pln": ["(: cnet_isa_b0eea310c4 (IsA terrorism dish_norable_horrofic_situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terrorism is a kind of political violence", "pln": ["(: cnet_isa_5301828162 (IsA terrorism political_violence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terrorism is a kind of terror", "pln": ["(: cnet_isa_8d2387aca2 (IsA terrorism terror) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terrorist is a kind of bad person", "pln": ["(: cnet_isa_6c65426409 (IsA terrorist bad_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terrorist is a kind of human", "pln": ["(: cnet_isa_daa66f5a58 (IsA terrorist human) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terrorist is a kind of radical", "pln": ["(: cnet_isa_98b2f08498 (IsA terrorist radical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terrorist attack is a kind of surprise attack", "pln": ["(: cnet_isa_c25d72de5b (IsA terrorist_attack surprise_attack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terrorist attack is a kind of terrorism", "pln": ["(: cnet_isa_fa1a8fc8c0 (IsA terrorist_attack terrorism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terrorist cell is a kind of cell", "pln": ["(: cnet_isa_9d4167b691 (IsA terrorist_cell cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terrorist organization is a kind of organization", "pln": ["(: cnet_isa_a295bbe853 (IsA terrorist_organization organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terrorist organization is a kind of political movement", "pln": ["(: cnet_isa_0f4fd717d9 (IsA terrorist_organization political_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terrorization is a kind of bullying", "pln": ["(: cnet_isa_f2f72cd76b (IsA terrorization bullying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "terrorization is a kind of transgression", "pln": ["(: cnet_isa_71b36f16d8 (IsA terrorization transgression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terry is a kind of fabric", "pln": ["(: cnet_isa_8367b9c424 (IsA terry fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terry is a kind of toweling", "pln": ["(: cnet_isa_e0c2ef5b88 (IsA terry toweling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terseness is a kind of expressive style", "pln": ["(: cnet_isa_7220ea6b84 (IsA terseness expressive_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tertiary syphilis is a kind of syphilis", "pln": ["(: cnet_isa_7e150e9cb6 (IsA tertiary_syphilis syphilis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tertigravida is a kind of gravida", "pln": ["(: cnet_isa_965b41bcee (IsA tertigravida gravida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tertium quid is a kind of opposition", "pln": ["(: cnet_isa_9ec0d70371 (IsA tertium_quid opposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "terza rima is a kind of poem", "pln": ["(: cnet_isa_d9cba1223f (IsA terza_rima poem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tesla is a kind of flux density unit", "pln": ["(: cnet_isa_c742d9dcbd (IsA tesla flux_density_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tesla coil is a kind of transformer", "pln": ["(: cnet_isa_42901c7b0d (IsA tesla_coil transformer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tessella is a kind of tessera", "pln": ["(: cnet_isa_32dc454ea0 (IsA tessella tessera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tessellation is a kind of decoration", "pln": ["(: cnet_isa_64ad85f30a (IsA tessellation decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tessellation is a kind of juxtaposition", "pln": ["(: cnet_isa_e07734b073 (IsA tessellation juxtaposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tessera is a kind of tile", "pln": ["(: cnet_isa_735038adc1 (IsA tessera tile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tesseract is a kind of hypercube", "pln": ["(: cnet_isa_1dcb21acfc (IsA tesseract hypercube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tesseract is a kind of cube", "pln": ["(: cnet_isa_79cecf4ef0 (IsA tesseract cube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "test is a kind of attempt", "pln": ["(: cnet_isa_de52176399 (IsA test attempt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "test is a kind of mental measurement", "pln": ["(: cnet_isa_63a4a40677 (IsA test mental_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "test is a kind of covering", "pln": ["(: cnet_isa_e260a3b8f8 (IsA test covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "test ban is a kind of ban", "pln": ["(: cnet_isa_c14ab897b1 (IsA test_ban ban) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "test bed is a kind of workplace", "pln": ["(: cnet_isa_8c99da6b44 (IsA test_bed workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "test case is a kind of legal action", "pln": ["(: cnet_isa_48cbae4c77 (IsA test_case legal_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "test drive is a kind of road test", "pln": ["(: cnet_isa_c61593284c (IsA test_drive road_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "test driver is a kind of driver", "pln": ["(: cnet_isa_5491d70d04 (IsA test_driver driver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "test equipment is a kind of equipment", "pln": ["(: cnet_isa_cd9757a733 (IsA test_equipment equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "test match is a kind of match", "pln": ["(: cnet_isa_e5abd46a7c (IsA test_match match) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "test paper is a kind of indicator", "pln": ["(: cnet_isa_67a6623fba (IsA test_paper indicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "test paper is a kind of examination", "pln": ["(: cnet_isa_c1a24499ad (IsA test_paper examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "test pilot is a kind of pilot", "pln": ["(: cnet_isa_a40e12b0c4 (IsA test_pilot pilot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "test range is a kind of range", "pln": ["(: cnet_isa_af0db07ff8 (IsA test_range range) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "test rocket is a kind of rocket", "pln": ["(: cnet_isa_8ca6d0a37a (IsA test_rocket rocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "test room is a kind of room", "pln": ["(: cnet_isa_2e1260fe94 (IsA test_room room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "test tube is a kind of tube", "pln": ["(: cnet_isa_b25ab2c7c7 (IsA test_tube tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "test tube baby is a kind of baby", "pln": ["(: cnet_isa_8631296e08 (IsA test_tube_baby baby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "testa is a kind of reproductive structure", "pln": ["(: cnet_isa_87c2aeabae (IsA testa reproductive_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "testacea is a kind of animal order", "pln": ["(: cnet_isa_544ca93915 (IsA testacea animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "testacean is a kind of rhizopod", "pln": ["(: cnet_isa_1f7cf6a5d9 (IsA testacean rhizopod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "testament is a kind of creed", "pln": ["(: cnet_isa_e799cb9cfc (IsA testament creed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "testament is a kind of sacred text", "pln": ["(: cnet_isa_cac60a8ea8 (IsA testament sacred_text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "testament is a kind of testimony", "pln": ["(: cnet_isa_6c9bdb7c84 (IsA testament testimony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "testamentary trust is a kind of trust", "pln": ["(: cnet_isa_64309c03f1 (IsA testamentary_trust trust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "testator is a kind of person", "pln": ["(: cnet_isa_11bc265c2b (IsA testator person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "testatrix is a kind of testator", "pln": ["(: cnet_isa_32e415c81e (IsA testatrix testator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "testcross is a kind of hybridization", "pln": ["(: cnet_isa_0984c3fd53 (IsA testcross hybridization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "testee is a kind of respondent", "pln": ["(: cnet_isa_73f9e1181b (IsA testee respondent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tester is a kind of canopy", "pln": ["(: cnet_isa_a774aa5d08 (IsA tester canopy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "testicular artery is a kind of artery", "pln": ["(: cnet_isa_11367cb325 (IsA testicular_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "testicular vein is a kind of vein", "pln": ["(: cnet_isa_16e13cf195 (IsA testicular_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "testifier is a kind of witness", "pln": ["(: cnet_isa_fb4ddb695d (IsA testifier witness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "testimony is a kind of assertion", "pln": ["(: cnet_isa_af7cb63a58 (IsA testimony assertion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "testimony is a kind of evidence", "pln": ["(: cnet_isa_f8fe3c6321 (IsA testimony evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "testiness is a kind of irritability", "pln": ["(: cnet_isa_734412f091 (IsA testiness irritability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "testing is a kind of examination", "pln": ["(: cnet_isa_7c70765707 (IsA testing examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "testing is a kind of experiment", "pln": ["(: cnet_isa_9ada172de7 (IsA testing experiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "testing ground is a kind of region", "pln": ["(: cnet_isa_cee5a727af (IsA testing_ground region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "testis is a kind of gonad", "pln": ["(: cnet_isa_37ad406363 (IsA testis gonad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "testis is a kind of male reproductive gland", "pln": ["(: cnet_isa_5b9738d87a (IsA testis male_reproductive_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "testosterone is a kind of androgen", "pln": ["(: cnet_isa_87e5bc009b (IsA testosterone androgen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "testudinidae is a kind of reptile family", "pln": ["(: cnet_isa_1f65957653 (IsA testudinidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "testudo is a kind of reptile genus", "pln": ["(: cnet_isa_ad657ae98f (IsA testudo reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "testudo is a kind of protective covering", "pln": ["(: cnet_isa_247a376390 (IsA testudo protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tet is a kind of day", "pln": ["(: cnet_isa_cd5db0c01b (IsA tet day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetanus is a kind of contraction", "pln": ["(: cnet_isa_8efa0915c9 (IsA tetanus contraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tetanus is a kind of infection", "pln": ["(: cnet_isa_a8531e352e (IsA tetanus infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetanus antitoxin is a kind of antitoxin", "pln": ["(: cnet_isa_58498158f1 (IsA tetanus_antitoxin antitoxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetanus immunoglobulin is a kind of immunoglobulin", "pln": ["(: cnet_isa_9774b71361 (IsA tetanus_immunoglobulin immunoglobulin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetany is a kind of syndrome", "pln": ["(: cnet_isa_1da78db7f9 (IsA tetany syndrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetartanopia is a kind of yellow blue dichromacy", "pln": ["(: cnet_isa_776dfaf472 (IsA tetartanopia yellow_blue_dichromacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tete tete is a kind of conversation", "pln": ["(: cnet_isa_1c9c7c66df (IsA tete_tete conversation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teth is a kind of letter", "pln": ["(: cnet_isa_f2e3a17bfa (IsA teth letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetherball is a kind of athletic game", "pln": ["(: cnet_isa_df08837f4f (IsA tetherball athletic_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "teton dakota is a kind of siouan", "pln": ["(: cnet_isa_78296fd7f2 (IsA teton_dakota siouan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetra is a kind of characin", "pln": ["(: cnet_isa_290513ed6f (IsA tetra characin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetrabasic acid is a kind of acid", "pln": ["(: cnet_isa_92a15ac187 (IsA tetrabasic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetracaine is a kind of local anesthetic", "pln": ["(: cnet_isa_ae71644e84 (IsA tetracaine local_anesthetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetrachlorethylene is a kind of vermifuge", "pln": ["(: cnet_isa_826d013ef7 (IsA tetrachlorethylene vermifuge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetrachloride is a kind of compound", "pln": ["(: cnet_isa_34a0b4bcd3 (IsA tetrachloride compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetrachoric correlation coefficient is a kind of correlation coefficient", "pln": ["(: cnet_isa_00f0433cff (IsA tetrachoric_correlation_coefficient correlation_coefficient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetraclinis is a kind of gymnosperm genus", "pln": ["(: cnet_isa_31d5cc91e3 (IsA tetraclinis gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetracycline is a kind of antibacterial", "pln": ["(: cnet_isa_59deb8e732 (IsA tetracycline antibacterial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetraethyl lead is a kind of antiknock", "pln": ["(: cnet_isa_0495535591 (IsA tetraethyl_lead antiknock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetrafluoroethylene is a kind of fluorocarbon", "pln": ["(: cnet_isa_aa92289bd5 (IsA tetrafluoroethylene fluorocarbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetragonia is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_33781719e6 (IsA tetragonia caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetragonurus is a kind of fish genus", "pln": ["(: cnet_isa_4d9b2d41ff (IsA tetragonurus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tetragram is a kind of written word", "pln": ["(: cnet_isa_1a434e6e49 (IsA tetragram written_word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetragrammaton is a kind of tetragram", "pln": ["(: cnet_isa_1ebe39900f (IsA tetragrammaton tetragram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetrahalide is a kind of halide", "pln": ["(: cnet_isa_029a03b443 (IsA tetrahalide halide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetrahedron is a kind of pyramid", "pln": ["(: cnet_isa_3c3dd7ba3f (IsA tetrahedron pyramid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetrahedron is a kind of polyhedron", "pln": ["(: cnet_isa_1cb7d00fb7 (IsA tetrahedron polyhedron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetrahydrocannabinol is a kind of psychoactive drug", "pln": ["(: cnet_isa_ff40c2bcae (IsA tetrahydrocannabinol psychoactive_drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetrahymena is a kind of ciliate", "pln": ["(: cnet_isa_065ca39b7f (IsA tetrahymena ciliate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetralogy is a kind of serial", "pln": ["(: cnet_isa_c9bdec2c68 (IsA tetralogy serial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tetralogy of fallot is a kind of congenital heart defect", "pln": ["(: cnet_isa_b5dcf6ae5c (IsA tetralogy_of_fallot congenital_heart_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetralogy of fallot is a kind of syndrome", "pln": ["(: cnet_isa_ef36eac43d (IsA tetralogy_of_fallot syndrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetrameter is a kind of verse", "pln": ["(: cnet_isa_9668efc6a5 (IsA tetrameter verse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetraneuris is a kind of asterid dicot genus", "pln": ["(: cnet_isa_b1ae5cc66b (IsA tetraneuris asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetranychidae is a kind of arthropod family", "pln": ["(: cnet_isa_9eeb2a9b63 (IsA tetranychidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tetrao is a kind of bird genus", "pln": ["(: cnet_isa_8ca2cbd773 (IsA tetrao bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetraodontidae is a kind of fish family", "pln": ["(: cnet_isa_0370906ed3 (IsA tetraodontidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetraonidae is a kind of bird family", "pln": ["(: cnet_isa_3dd0c123ea (IsA tetraonidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetrapod is a kind of vertebrate", "pln": ["(: cnet_isa_ed50c24fe4 (IsA tetrapod vertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetrapturus is a kind of fish genus", "pln": ["(: cnet_isa_f8df0fe660 (IsA tetrapturus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetrasaccharide is a kind of oligosaccharide", "pln": ["(: cnet_isa_22842a21f6 (IsA tetrasaccharide oligosaccharide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetraskelion is a kind of design", "pln": ["(: cnet_isa_afe8b7d9bf (IsA tetraskelion design) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetrasporangium is a kind of sporangium", "pln": ["(: cnet_isa_8df2de983d (IsA tetrasporangium sporangium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetraspore is a kind of spore", "pln": ["(: cnet_isa_b5312b3f1c (IsA tetraspore spore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetrazzini is a kind of dish", "pln": ["(: cnet_isa_5742df028b (IsA tetrazzini dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetri is a kind of georgian monetary unit", "pln": ["(: cnet_isa_071d067c79 (IsA tetri georgian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetrode is a kind of tube", "pln": ["(: cnet_isa_56edd1b3bf (IsA tetrode tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetrodotoxin is a kind of neurotoxin", "pln": ["(: cnet_isa_e250489405 (IsA tetrodotoxin neurotoxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetrose is a kind of monosaccharide", "pln": ["(: cnet_isa_3f1c736a2d (IsA tetrose monosaccharide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tetroxide is a kind of oxide", "pln": ["(: cnet_isa_d1f9f0d9e5 (IsA tetroxide oxide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tettigoniidae is a kind of arthropod family", "pln": ["(: cnet_isa_d338fd4065 (IsA tettigoniidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teucrium is a kind of asterid dicot genus", "pln": ["(: cnet_isa_df2f0afa94 (IsA teucrium asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teuton is a kind of european", "pln": ["(: cnet_isa_f6ad0034b2 (IsA teuton european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teuton is a kind of german", "pln": ["(: cnet_isa_fc4b31b151 (IsA teuton german) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "teutonic deity is a kind of deity", "pln": ["(: cnet_isa_045461233a (IsA teutonic_deity deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "teutonist is a kind of specialist", "pln": ["(: cnet_isa_e027e8bd92 (IsA teutonist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "texan is a kind of american", "pln": ["(: cnet_isa_9930974e38 (IsA texan american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "texa is a kind of state", "pln": ["(: cnet_isa_1c83b24528 (IsA texa state) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "texa bluebonnet is a kind of lupine", "pln": ["(: cnet_isa_3e797811c5 (IsA texa_bluebonnet lupine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "texa chachalaca is a kind of chachalaca", "pln": ["(: cnet_isa_26ba2d4808 (IsA texa_chachalaca chachalaca) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "texa fever is a kind of animal disease", "pln": ["(: cnet_isa_4b52fb364d (IsA texa_fever animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "texa horned lizard is a kind of horned lizard", "pln": ["(: cnet_isa_e976309026 (IsA texa_horned_lizard horned_lizard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "texa independence day is a kind of day", "pln": ["(: cnet_isa_24b5eb5430 (IsA texa_independence_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "texa leaguer is a kind of fly", "pln": ["(: cnet_isa_d7a496f19a (IsA texa_leaguer fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "texa purple spike is a kind of orchid", "pln": ["(: cnet_isa_ecf07c2a45 (IsA texa_purple_spike orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "texa snowbell is a kind of styrax", "pln": ["(: cnet_isa_103ffdf514 (IsA texa_snowbell styrax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "texa star is a kind of flower", "pln": ["(: cnet_isa_76febbf47f (IsA texa_star flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "texa storksbill is a kind of storksbill", "pln": ["(: cnet_isa_f0825cfa72 (IsA texa_storksbill storksbill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "texa toad is a kind of true toad", "pln": ["(: cnet_isa_150ae5f2a1 (IsA texa_toad true_toad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "texa tortoise is a kind of tortoise", "pln": ["(: cnet_isa_c53a4b67dd (IsA texa_tortoise tortoise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "text is a kind of book", "pln": ["(: cnet_isa_212af969e4 (IsA text book) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "text is a kind of matter", "pln": ["(: cnet_isa_8442f078e4 (IsA text matter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "text is a kind of passage", "pln": ["(: cnet_isa_87f77134a2 (IsA text passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "text editor is a kind of editor program", "pln": ["(: cnet_isa_ccf78b415c (IsA text_editor editor_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "text file is a kind of computer file", "pln": ["(: cnet_isa_72d64e23c4 (IsA text_file computer_file) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "text matching is a kind of program", "pln": ["(: cnet_isa_040522d123 (IsA text_matching program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "textbook is a kind of book", "pln": ["(: cnet_isa_2ed99d2907 (IsA textbook book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "textile machine is a kind of machine", "pln": ["(: cnet_isa_eea7d52ce3 (IsA textile_machine machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "textile mill is a kind of factory", "pln": ["(: cnet_isa_df9128d6b0 (IsA textile_mill factory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "textile screw pine is a kind of pandanus", "pln": ["(: cnet_isa_f0680b5d3c (IsA textile_screw_pine pandanus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "textual criticism is a kind of criticism", "pln": ["(: cnet_isa_044aba76ba (IsA textual_criticism criticism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "texture is a kind of constitution", "pln": ["(: cnet_isa_17b9743edd (IsA texture constitution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "texture is a kind of musicality", "pln": ["(: cnet_isa_71a0f6d7e1 (IsA texture musicality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "texture is a kind of tactile property", "pln": ["(: cnet_isa_9ce92d899b (IsA texture tactile_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "texture is a kind of quality", "pln": ["(: cnet_isa_e145b70b84 (IsA texture quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "texture is a kind of visual property", "pln": ["(: cnet_isa_47e8906823 (IsA texture visual_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thai is a kind of tai", "pln": ["(: cnet_isa_4d4227cba9 (IsA thai tai) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thai monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_5169590788 (IsA thai_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thalamostriate vein is a kind of vein", "pln": ["(: cnet_isa_04f7171e18 (IsA thalamostriate_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thalamus is a kind of neural structure", "pln": ["(: cnet_isa_54a4eac37d (IsA thalamus neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thalarcto is a kind of mammal genus", "pln": ["(: cnet_isa_140457920f (IsA thalarcto mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thalassemia is a kind of hypochromic anemia", "pln": ["(: cnet_isa_af02df54e0 (IsA thalassemia hypochromic_anemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thalassemia is a kind of monogenic disorder", "pln": ["(: cnet_isa_a9c07edf37 (IsA thalassemia monogenic_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thalassoma is a kind of fish genus", "pln": ["(: cnet_isa_472f002580 (IsA thalassoma fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thalia is a kind of grace", "pln": ["(: cnet_isa_11a53fe564 (IsA thalia grace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thaliacea is a kind of class", "pln": ["(: cnet_isa_dc4f040a3c (IsA thaliacea class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "thanks is a kind of acknowledgment", "pln": ["(: cnet_isa_bbf9319d60 (IsA thanks acknowledgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thalictrum is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_d07202f4b4 (IsA thalictrum magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thalidomide is a kind of sedative hypnotic", "pln": ["(: cnet_isa_f226cadde1 (IsA thalidomide sedative_hypnotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thalidomide is a kind of teratogen", "pln": ["(: cnet_isa_568f45c208 (IsA thalidomide teratogen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thallium is a kind of metallic element", "pln": ["(: cnet_isa_3edfd716a5 (IsA thallium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thallophyta is a kind of division", "pln": ["(: cnet_isa_775fd0ebed (IsA thallophyta division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thallophyte is a kind of cryptogam", "pln": ["(: cnet_isa_9e29aeedd9 (IsA thallophyte cryptogam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thallus is a kind of plant part", "pln": ["(: cnet_isa_3111576979 (IsA thallus plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thalweg is a kind of contour", "pln": ["(: cnet_isa_060e43f876 (IsA thalweg contour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thalweg is a kind of boundary", "pln": ["(: cnet_isa_ef20d2d36a (IsA thalweg boundary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thamnophilus is a kind of bird genus", "pln": ["(: cnet_isa_f276dc75ce (IsA thamnophilus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thamnophis is a kind of reptile genus", "pln": ["(: cnet_isa_cef157ee60 (IsA thamnophis reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thanatology is a kind of science", "pln": ["(: cnet_isa_74d622c08e (IsA thanatology science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thanatophobia is a kind of simple phobia", "pln": ["(: cnet_isa_5a93d96af4 (IsA thanatophobia simple_phobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thanatopsis is a kind of essay", "pln": ["(: cnet_isa_e4d6c38257 (IsA thanatopsis essay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thane is a kind of citizen", "pln": ["(: cnet_isa_d056cfc682 (IsA thane citizen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thane is a kind of nobleman", "pln": ["(: cnet_isa_0ea88f7cb6 (IsA thane nobleman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thaneship is a kind of position", "pln": ["(: cnet_isa_42c9c8de3e (IsA thaneship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thank offering is a kind of offering", "pln": ["(: cnet_isa_1f92cb108d (IsA thank_offering offering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thank you is a kind of thank", "pln": ["(: cnet_isa_7cffb06d6b (IsA thank_you thank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thank is a kind of aid", "pln": ["(: cnet_isa_ced58949aa (IsA thank aid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thank is a kind of acknowledgment", "pln": ["(: cnet_isa_6707b7df07 (IsA thank acknowledgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thanksgiving is a kind of feast day", "pln": ["(: cnet_isa_907a5aaf41 (IsA thanksgiving feast_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thanksgiving is a kind of legal holiday", "pln": ["(: cnet_isa_aeecba29de (IsA thanksgiving legal_holiday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thatch is a kind of roof", "pln": ["(: cnet_isa_b6799ff747 (IsA thatch roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thatch is a kind of hairdo", "pln": ["(: cnet_isa_11200ee1c3 (IsA thatch hairdo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thatch is a kind of roofing material", "pln": ["(: cnet_isa_fe1d9bb56f (IsA thatch roofing_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thatch palm is a kind of fan palm", "pln": ["(: cnet_isa_512661c201 (IsA thatch_palm fan_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thatcher is a kind of roofer", "pln": ["(: cnet_isa_bb781b1f6a (IsA thatcher roofer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thatcherism is a kind of policy", "pln": ["(: cnet_isa_e136bbb12e (IsA thatcherism policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thatcherite is a kind of advocate", "pln": ["(: cnet_isa_c23a38dbf8 (IsA thatcherite advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thaumatolatry is a kind of worship", "pln": ["(: cnet_isa_1df6e8a7f1 (IsA thaumatolatry worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thaw is a kind of relaxation", "pln": ["(: cnet_isa_5eb896d252 (IsA thaw relaxation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thaw is a kind of weather", "pln": ["(: cnet_isa_2d74bf94e4 (IsA thaw weather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thaw is a kind of heating", "pln": ["(: cnet_isa_1e3293fbcd (IsA thaw heating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thaw is a kind of phase change", "pln": ["(: cnet_isa_c699eaf959 (IsA thaw phase_change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thc is a kind of resin", "pln": ["(: cnet_isa_570ca387ca (IsA thc resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_b511c92c31 (IsA theaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theanthropism is a kind of theological doctrine", "pln": ["(: cnet_isa_2c8f86fd93 (IsA theanthropism theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theater is a kind of building", "pln": ["(: cnet_isa_1d50df9c85 (IsA theater building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theater company is a kind of company", "pln": ["(: cnet_isa_953d42484e (IsA theater_company company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theater curtain is a kind of curtain", "pln": ["(: cnet_isa_3afd963820 (IsA theater_curtain curtain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theater light is a kind of light", "pln": ["(: cnet_isa_70a992229a (IsA theater_light light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theater of absurd is a kind of play", "pln": ["(: cnet_isa_614e341011 (IsA theater_of_absurd play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theater of war is a kind of region", "pln": ["(: cnet_isa_dd118c38a0 (IsA theater_of_war region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theater stage is a kind of stage", "pln": ["(: cnet_isa_ef688faf3c (IsA theater_stage stage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theater ticket is a kind of ticket", "pln": ["(: cnet_isa_8a6f2ef41b (IsA theater_ticket ticket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "theatrical performance is a kind of performance", "pln": ["(: cnet_isa_3a348a3aff (IsA theatrical_performance performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theatrical producer is a kind of producer", "pln": ["(: cnet_isa_76b72326d1 (IsA theatrical_producer producer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theatrical production is a kind of production", "pln": ["(: cnet_isa_8242e33769 (IsA theatrical_production production) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theatrical season is a kind of season", "pln": ["(: cnet_isa_b232c1bb1d (IsA theatrical_season season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theban is a kind of egyptian", "pln": ["(: cnet_isa_bb14ad0f15 (IsA theban egyptian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theban is a kind of hellene", "pln": ["(: cnet_isa_91c231eed1 (IsA theban hellene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thebe is a kind of botswana monetary unit", "pln": ["(: cnet_isa_f13cdf871a (IsA thebe botswana_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theca is a kind of sheath", "pln": ["(: cnet_isa_2743e1ca8a (IsA theca sheath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theca is a kind of covering", "pln": ["(: cnet_isa_114556afce (IsA theca covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thecodont is a kind of archosaur", "pln": ["(: cnet_isa_c15e5d2a01 (IsA thecodont archosaur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thecodontia is a kind of animal order", "pln": ["(: cnet_isa_67c0c7dc80 (IsA thecodontia animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theft is a kind of crime", "pln": ["(: cnet_isa_c516e08938 (IsA theft crime) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theism is a kind of religion", "pln": ["(: cnet_isa_8b29bd7deb (IsA theism religion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theist is a kind of believer", "pln": ["(: cnet_isa_c94f3e5754 (IsA theist believer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thelarche is a kind of start", "pln": ["(: cnet_isa_b0f7f0fe90 (IsA thelarche start) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thelephoraceae is a kind of fungus family", "pln": ["(: cnet_isa_eaf2da22a8 (IsA thelephoraceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thelypteridaceae is a kind of fern family", "pln": ["(: cnet_isa_280854e26c (IsA thelypteridaceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thelypteris is a kind of fern genus", "pln": ["(: cnet_isa_845c8704f7 (IsA thelypteris fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thematic apperception test is a kind of projective test", "pln": ["(: cnet_isa_04abaa21aa (IsA thematic_apperception_test projective_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theme is a kind of idea", "pln": ["(: cnet_isa_a3cdd96590 (IsA theme idea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theme is a kind of tune", "pln": ["(: cnet_isa_caeb88c771 (IsA theme tune) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theme park is a kind of amusement park", "pln": ["(: cnet_isa_e25412dad6 (IsA theme_park amusement_park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theme song is a kind of tune", "pln": ["(: cnet_isa_5511ed59d4 (IsA theme_song tune) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "then is a kind of point", "pln": ["(: cnet_isa_4f7c96cf6f (IsA then point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thenar is a kind of area", "pln": ["(: cnet_isa_cb1f0747b7 (IsA thenar area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theobroma is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_bca2c0c528 (IsA theobroma dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theocracy is a kind of political orientation", "pln": ["(: cnet_isa_0dfda9d9a6 (IsA theocracy political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theocracy is a kind of political system", "pln": ["(: cnet_isa_25bd94e649 (IsA theocracy political_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "theodicy is a kind of theology", "pln": ["(: cnet_isa_fc649bdf95 (IsA theodicy theology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theodolite is a kind of surveying instrument", "pln": ["(: cnet_isa_445e4c6128 (IsA theodolite surveying_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theogony is a kind of discipline", "pln": ["(: cnet_isa_d1a0951500 (IsA theogony discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theologian is a kind of scholar", "pln": ["(: cnet_isa_be58959a8b (IsA theologian scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theological doctrine is a kind of doctrine", "pln": ["(: cnet_isa_afac955bcf (IsA theological_doctrine doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theological virtue is a kind of cardinal virtue", "pln": ["(: cnet_isa_e2f42bef51 (IsA theological_virtue cardinal_virtue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theology is a kind of discipline", "pln": ["(: cnet_isa_46abafb06c (IsA theology discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theology is a kind of learned profession", "pln": ["(: cnet_isa_fa008273df (IsA theology learned_profession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theology is a kind of system", "pln": ["(: cnet_isa_6efe472f00 (IsA theology system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theophany is a kind of manifestation", "pln": ["(: cnet_isa_06115e8d70 (IsA theophany manifestation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theophrastaceae is a kind of dicot family", "pln": ["(: cnet_isa_5cc68cdf46 (IsA theophrastaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theorem is a kind of idea", "pln": ["(: cnet_isa_21943e8e01 (IsA theorem idea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theorem is a kind of proposition", "pln": ["(: cnet_isa_2425fade06 (IsA theorem proposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theorist is a kind of intellectual", "pln": ["(: cnet_isa_46689a3815 (IsA theorist intellectual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "theorization is a kind of conjecture", "pln": ["(: cnet_isa_c878ba3ad0 (IsA theorization conjecture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theory is a kind of belief", "pln": ["(: cnet_isa_ce38d87201 (IsA theory belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theory is a kind of explanation", "pln": ["(: cnet_isa_805f9d05d5 (IsA theory explanation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theory of dissociation is a kind of scientific theory", "pln": ["(: cnet_isa_79d803d1f0 (IsA theory_of_dissociation scientific_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "theory of evolution is a kind of scientific theory", "pln": ["(: cnet_isa_93da097891 (IsA theory_of_evolution scientific_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theory of gravitation is a kind of scientific theory", "pln": ["(: cnet_isa_98b101db86 (IsA theory_of_gravitation scientific_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theory of indicator is a kind of scientific theory", "pln": ["(: cnet_isa_523eddc0a0 (IsA theory_of_indicator scientific_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theory of inheritance is a kind of scientific theory", "pln": ["(: cnet_isa_34d215d8e7 (IsA theory_of_inheritance scientific_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theosophism is a kind of belief", "pln": ["(: cnet_isa_f7692a6a7a (IsA theosophism belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theosophist is a kind of believer", "pln": ["(: cnet_isa_408610787a (IsA theosophist believer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theosophy is a kind of system", "pln": ["(: cnet_isa_829f14f245 (IsA theosophy system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theoterrorism is a kind of terrorism", "pln": ["(: cnet_isa_d8467c687e (IsA theoterrorism terrorism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "therapeutic abortion is a kind of induced abortion", "pln": ["(: cnet_isa_e3221b88be (IsA therapeutic_abortion induced_abortion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "therapeutic cloning is a kind of cloning", "pln": ["(: cnet_isa_87885429e4 (IsA therapeutic_cloning cloning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "therapeutic cloning is a kind of somatic cell nuclear transplantation", "pln": ["(: cnet_isa_532ad04f64 (IsA therapeutic_cloning somatic_cell_nuclear_transplantation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "therapeutic is a kind of medicine", "pln": ["(: cnet_isa_1e47202aa0 (IsA therapeutic medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theraphosidae is a kind of arthropod family", "pln": ["(: cnet_isa_97767dab2d (IsA theraphosidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "therapist is a kind of expert", "pln": ["(: cnet_isa_02c36b6cb5 (IsA therapist expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "therapsid is a kind of synapsid", "pln": ["(: cnet_isa_c1a0e80f9b (IsA therapsid synapsid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "therapsida is a kind of animal order", "pln": ["(: cnet_isa_ce551ade07 (IsA therapsida animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "therapy is a kind of medical care", "pln": ["(: cnet_isa_31489ee3c7 (IsA therapy medical_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theravada is a kind of buddhism", "pln": ["(: cnet_isa_ae9a8915df (IsA theravada buddhism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "there is a kind of location", "pln": ["(: cnet_isa_783f69f6d2 (IsA there location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theremin is a kind of electronic instrument", "pln": ["(: cnet_isa_39366e5af5 (IsA theremin electronic_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thereness is a kind of presence", "pln": ["(: cnet_isa_18fd930113 (IsA thereness presence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theridiidae is a kind of arthropod family", "pln": ["(: cnet_isa_43142e17ac (IsA theridiidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "therm is a kind of work unit", "pln": ["(: cnet_isa_df7f2ba3f0 (IsA therm work_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermal is a kind of wind", "pln": ["(: cnet_isa_c6e64fb1c8 (IsA thermal wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermal barrier is a kind of limit", "pln": ["(: cnet_isa_60aadca719 (IsA thermal_barrier limit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermal equilibrium is a kind of equilibrium", "pln": ["(: cnet_isa_6e474f98cd (IsA thermal_equilibrium equilibrium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermal pollution is a kind of pollution", "pln": ["(: cnet_isa_b40d153119 (IsA thermal_pollution pollution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermal printer is a kind of printer", "pln": ["(: cnet_isa_54b98e159e (IsA thermal_printer printer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermal reactor is a kind of nuclear reactor", "pln": ["(: cnet_isa_c27d346091 (IsA thermal_reactor nuclear_reactor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermalgesia is a kind of pain", "pln": ["(: cnet_isa_75e47e7294 (IsA thermalgesia pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermidor is a kind of revolutionary calendar month", "pln": ["(: cnet_isa_338db25d6a (IsA thermidor revolutionary_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermion is a kind of particle", "pln": ["(: cnet_isa_8143d02d60 (IsA thermion particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermionic current is a kind of current", "pln": ["(: cnet_isa_96c4a1ae7f (IsA thermionic_current current) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermionic emission is a kind of emission", "pln": ["(: cnet_isa_17ac438223 (IsA thermionic_emission emission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermionic is a kind of electronic", "pln": ["(: cnet_isa_c043a0020e (IsA thermionic electronic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermistor is a kind of semiconductor device", "pln": ["(: cnet_isa_69f93d5b9e (IsA thermistor semiconductor_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermoacidophile is a kind of archaebacteria", "pln": ["(: cnet_isa_e91f34dc15 (IsA thermoacidophile archaebacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermobaric bomb is a kind of bomb", "pln": ["(: cnet_isa_8e64872789 (IsA thermobaric_bomb bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermobaric bomb is a kind of fuel air explosive", "pln": ["(: cnet_isa_0325c8069c (IsA thermobaric_bomb fuel_air_explosive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermobia is a kind of arthropod genus", "pln": ["(: cnet_isa_69d12ac009 (IsA thermobia arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermocautery is a kind of cautery", "pln": ["(: cnet_isa_0dbcd79d34 (IsA thermocautery cautery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermochemistry is a kind of chemistry", "pln": ["(: cnet_isa_51303fb6db (IsA thermochemistry chemistry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermocoagulation is a kind of curdling", "pln": ["(: cnet_isa_dc5f3f15a1 (IsA thermocoagulation curdling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermocouple is a kind of thermometer", "pln": ["(: cnet_isa_5a79dfeb2a (IsA thermocouple thermometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermodynamic is a kind of physic", "pln": ["(: cnet_isa_9c9cda27dc (IsA thermodynamic physic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermoelectric thermometer is a kind of thermometer", "pln": ["(: cnet_isa_06df0d23b2 (IsA thermoelectric_thermometer thermometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermoelectricity is a kind of electricity", "pln": ["(: cnet_isa_bddc97079c (IsA thermoelectricity electricity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermogram is a kind of graph", "pln": ["(: cnet_isa_644e1fba38 (IsA thermogram graph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thermograph is a kind of medical instrument", "pln": ["(: cnet_isa_32b84d1f05 (IsA thermograph medical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermograph is a kind of thermometer", "pln": ["(: cnet_isa_19e7457587 (IsA thermograph thermometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermography is a kind of diagnostic procedure", "pln": ["(: cnet_isa_517ef677d4 (IsA thermography diagnostic_procedure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermogravimetry is a kind of chemical analysis", "pln": ["(: cnet_isa_4102208379 (IsA thermogravimetry chemical_analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermogravimetry is a kind of measurement", "pln": ["(: cnet_isa_07928895fa (IsA thermogravimetry measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermohydrometer is a kind of hydrometer", "pln": ["(: cnet_isa_56e5857b88 (IsA thermohydrometer hydrometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermojunction is a kind of junction", "pln": ["(: cnet_isa_b2331e9b0b (IsA thermojunction junction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermometer is a kind of measuring instrument", "pln": ["(: cnet_isa_b6c353cc48 (IsA thermometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermometry is a kind of measurement", "pln": ["(: cnet_isa_9920e16c26 (IsA thermometry measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermonuclear reaction is a kind of fusion", "pln": ["(: cnet_isa_0bdfafad64 (IsA thermonuclear_reaction fusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermonuclear reactor is a kind of nuclear reactor", "pln": ["(: cnet_isa_c9d7292d79 (IsA thermonuclear_reactor nuclear_reactor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermopile is a kind of thermometer", "pln": ["(: cnet_isa_01bbb61f77 (IsA thermopile thermometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermoplastic is a kind of plastic", "pln": ["(: cnet_isa_353d16ae82 (IsA thermoplastic plastic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermopsis is a kind of rosid dicot genus", "pln": ["(: cnet_isa_e838a2c365 (IsA thermopsis rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thermoreceptor is a kind of sense organ", "pln": ["(: cnet_isa_02d24eb85f (IsA thermoreceptor sense_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermo is a kind of vacuum flask", "pln": ["(: cnet_isa_16f9ce5d46 (IsA thermo vacuum_flask) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermosetting composition is a kind of plastic", "pln": ["(: cnet_isa_cb6697eeac (IsA thermosetting_composition plastic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermosphere is a kind of layer", "pln": ["(: cnet_isa_8c2cfc0ce6 (IsA thermosphere layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermostat is a kind of regulator", "pln": ["(: cnet_isa_8b33e8a03d (IsA thermostat regulator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermostatic is a kind of thermodynamic", "pln": ["(: cnet_isa_9063ddb9eb (IsA thermostatic thermodynamic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thermotherapy is a kind of therapy", "pln": ["(: cnet_isa_51dcf33248 (IsA thermotherapy therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thermotropism is a kind of tropism", "pln": ["(: cnet_isa_c3cefae9d6 (IsA thermotropism tropism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theropod is a kind of saurischian", "pln": ["(: cnet_isa_cb3d4c6177 (IsA theropod saurischian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theropoda is a kind of animal order", "pln": ["(: cnet_isa_474ff412bc (IsA theropoda animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thesaurus is a kind of wordbook", "pln": ["(: cnet_isa_008b427ca3 (IsA thesaurus wordbook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thesis is a kind of premise", "pln": ["(: cnet_isa_193c2439c8 (IsA thesis premise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thespesia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_5644ad3146 (IsA thespesia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thessalian is a kind of hellene", "pln": ["(: cnet_isa_a8933fcdfe (IsA thessalian hellene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thessalonian is a kind of hellene", "pln": ["(: cnet_isa_01628bc362 (IsA thessalonian hellene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theta is a kind of letter", "pln": ["(: cnet_isa_518182e70d (IsA theta letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theta rhythm is a kind of brainwave", "pln": ["(: cnet_isa_0973b53ba0 (IsA theta_rhythm brainwave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thetis is a kind of nereid", "pln": ["(: cnet_isa_cb0504fe2c (IsA thetis nereid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "theurgy is a kind of white magic", "pln": ["(: cnet_isa_93e8c8977b (IsA theurgy white_magic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "theurgy is a kind of causal agent", "pln": ["(: cnet_isa_ecaf93604f (IsA theurgy causal_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thevetia is a kind of dicot genus", "pln": ["(: cnet_isa_e6357c9f0e (IsA thevetia dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thiabendazole is a kind of antifungal", "pln": ["(: cnet_isa_fbe0a88b62 (IsA thiabendazole antifungal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thiabendazole is a kind of vermifuge", "pln": ["(: cnet_isa_6dd3921c70 (IsA thiabendazole vermifuge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thiazide is a kind of diuretic drug", "pln": ["(: cnet_isa_04d342ec9a (IsA thiazide diuretic_drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thiazine is a kind of organic compound", "pln": ["(: cnet_isa_05fd1393ac (IsA thiazine organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thick billed murre is a kind of murre", "pln": ["(: cnet_isa_b7f411e4e2 (IsA thick_billed_murre murre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thick skin is a kind of skin", "pln": ["(: cnet_isa_3e3db38341 (IsA thick_skin skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thickening is a kind of condensing", "pln": ["(: cnet_isa_5917f3dd62 (IsA thickening condensing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thickening is a kind of material", "pln": ["(: cnet_isa_13a1a08f0e (IsA thickening material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thickhead is a kind of old world flycatcher", "pln": ["(: cnet_isa_5e7da8e4d8 (IsA thickhead old_world_flycatcher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thickness is a kind of consistency", "pln": ["(: cnet_isa_8ffae72dc7 (IsA thickness consistency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thickness is a kind of dimension", "pln": ["(: cnet_isa_a55a802239 (IsA thickness dimension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thickness is a kind of wideness", "pln": ["(: cnet_isa_cd14c5edad (IsA thickness wideness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thickness is a kind of articulation", "pln": ["(: cnet_isa_ebf192d626 (IsA thickness articulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thief is a kind of criminal", "pln": ["(: cnet_isa_a493166371 (IsA thief criminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thielavia is a kind of fungus genus", "pln": ["(: cnet_isa_1c1205d77f (IsA thielavia fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thievishness is a kind of dishonesty", "pln": ["(: cnet_isa_34b9d462f6 (IsA thievishness dishonesty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thigh is a kind of limb", "pln": ["(: cnet_isa_897649c43b (IsA thigh limb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thigh pad is a kind of protective garment", "pln": ["(: cnet_isa_48697b0752 (IsA thigh_pad protective_garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thill is a kind of shaft", "pln": ["(: cnet_isa_5b759e8db7 (IsA thill shaft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thimble is a kind of cap", "pln": ["(: cnet_isa_d2508c656f (IsA thimble cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thimble is a kind of container", "pln": ["(: cnet_isa_3650c424be (IsA thimble container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thimble is a kind of containerful", "pln": ["(: cnet_isa_c5dea0ab09 (IsA thimble containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thimbleweed is a kind of anemone", "pln": ["(: cnet_isa_d5d826fe1f (IsA thimbleweed anemone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thin air is a kind of nothingness", "pln": ["(: cnet_isa_f1f302672b (IsA thin_air nothingness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thin person is a kind of person", "pln": ["(: cnet_isa_b74a176723 (IsA thin_person person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thin shelled mussel is a kind of freshwater mussel", "pln": ["(: cnet_isa_b372c13b42 (IsA thin_shelled_mussel freshwater_mussel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thing is a kind of object", "pln": ["(: cnet_isa_e0179784da (IsA thing object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thing is a kind of physical entity", "pln": ["(: cnet_isa_2ff70ce4ba (IsA thing physical_entity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thing is a kind of action", "pln": ["(: cnet_isa_59126e6aa5 (IsA thing action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thing is a kind of artifact", "pln": ["(: cnet_isa_26329eadda (IsA thing artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thing is a kind of entity", "pln": ["(: cnet_isa_f2e6d750c5 (IsA thing entity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thing is a kind of attribute", "pln": ["(: cnet_isa_4197efc386 (IsA thing attribute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thing is a kind of abstraction", "pln": ["(: cnet_isa_24cadbecaf (IsA thing abstraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thing is a kind of aim", "pln": ["(: cnet_isa_c5bfee71b4 (IsA thing aim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thing is a kind of statement", "pln": ["(: cnet_isa_25aaf1fe33 (IsA thing statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thing is a kind of happening", "pln": ["(: cnet_isa_6f9b108e40 (IsA thing happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thing is a kind of feeling", "pln": ["(: cnet_isa_d3f8e20d7b (IsA thing feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thing is a kind of situation", "pln": ["(: cnet_isa_24e60bcb0f (IsA thing situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thing is a kind of property", "pln": ["(: cnet_isa_f07f7a5152 (IsA thing property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "think is a kind of deliberation", "pln": ["(: cnet_isa_27324f13a8 (IsA think deliberation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "think piece is a kind of article", "pln": ["(: cnet_isa_62dc4761fd (IsA think_piece article) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "think tank is a kind of company", "pln": ["(: cnet_isa_450026b1cc (IsA think_tank company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thinker is a kind of intellectual", "pln": ["(: cnet_isa_5c2a03f1a5 (IsA thinker intellectual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thinking is a kind of higher cognitive process", "pln": ["(: cnet_isa_f6a394f8ea (IsA thinking higher_cognitive_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thinking cap is a kind of state of mind", "pln": ["(: cnet_isa_9e9078f588 (IsA thinking_cap state_of_mind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thinness is a kind of consistency", "pln": ["(: cnet_isa_cdd240513d (IsA thinness consistency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thinness is a kind of dimension", "pln": ["(: cnet_isa_620a080adf (IsA thinness dimension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thinning shear is a kind of shear", "pln": ["(: cnet_isa_0412fc9af2 (IsA thinning_shear shear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thiobacillus is a kind of eubacteria", "pln": ["(: cnet_isa_b3ebb392d6 (IsA thiobacillus eubacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thiobacteria is a kind of thiobacillus", "pln": ["(: cnet_isa_a26a466571 (IsA thiobacteria thiobacillus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thiobacteriaceae is a kind of bacteria family", "pln": ["(: cnet_isa_0eb290cd8e (IsA thiobacteriaceae bacteria_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thiocyanate is a kind of salt", "pln": ["(: cnet_isa_7a8afdfcbe (IsA thiocyanate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thiocyanic acid is a kind of acid", "pln": ["(: cnet_isa_11d83902da (IsA thiocyanic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thioguanine is a kind of antineoplastic", "pln": ["(: cnet_isa_60307aeed4 (IsA thioguanine antineoplastic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thiotepa is a kind of antineoplastic", "pln": ["(: cnet_isa_52c3b2a3ab (IsA thiotepa antineoplastic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thiouracil is a kind of organic compound", "pln": ["(: cnet_isa_8c98f1c2a5 (IsA thiouracil organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "third is a kind of interval", "pln": ["(: cnet_isa_b08e914b97 (IsA third interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "third is a kind of rank", "pln": ["(: cnet_isa_2ef77496b4 (IsA third rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "third base is a kind of position", "pln": ["(: cnet_isa_5db2bcccbe (IsA third_base position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "third base is a kind of base", "pln": ["(: cnet_isa_105c2ec94d (IsA third_base base) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "third baseman is a kind of infielder", "pln": ["(: cnet_isa_35a73ac90e (IsA third_baseman infielder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "third class mail is a kind of mail", "pln": ["(: cnet_isa_c0a431349a (IsA third_class_mail mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "third council of constantinople is a kind of ecumenical council", "pln": ["(: cnet_isa_752bba5048 (IsA third_council_of_constantinople ecumenical_council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "third day of week is a kind of tuesday", "pln": ["(: cnet_isa_de5fe25fb7 (IsA third_day_of_week tuesday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "third degree is a kind of interrogation", "pln": ["(: cnet_isa_e0ca39cdbc (IsA third_degree interrogation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "third degree burn is a kind of burn", "pln": ["(: cnet_isa_7a32a10b54 (IsA third_degree_burn burn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "third dimension is a kind of dimension", "pln": ["(: cnet_isa_d0691569df (IsA third_dimension dimension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "third estate is a kind of estate", "pln": ["(: cnet_isa_cacd117423 (IsA third_estate estate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "third eye is a kind of sense organ", "pln": ["(: cnet_isa_00a3a20303 (IsA third_eye sense_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "third gear is a kind of gear", "pln": ["(: cnet_isa_201402e6c4 (IsA third_gear gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "third lateran council is a kind of lateran council", "pln": ["(: cnet_isa_f2f9f4faa9 (IsA third_lateran_council lateran_council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "third law of motion is a kind of newton s law of motion", "pln": ["(: cnet_isa_6954f799e2 (IsA third_law_of_motion newton_s_law_of_motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "third law of thermodynamic is a kind of law of thermodynamic", "pln": ["(: cnet_isa_121a25d86b (IsA third_law_of_thermodynamic law_of_thermodynamic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "third month is a kind of autumn", "pln": ["(: cnet_isa_a0ff17afea (IsA third_month autumn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "third party is a kind of party", "pln": ["(: cnet_isa_204af9f1c6 (IsA third_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "third party is a kind of arbiter", "pln": ["(: cnet_isa_f7d6089e31 (IsA third_party arbiter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "third person is a kind of person", "pln": ["(: cnet_isa_51d310099c (IsA third_person person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "third place finish is a kind of finish", "pln": ["(: cnet_isa_4605ad2807 (IsA third_place_finish finish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "third rail is a kind of track", "pln": ["(: cnet_isa_e9a1e2f400 (IsA third_rail track) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "third rater is a kind of person", "pln": ["(: cnet_isa_2b6679d9cb (IsA third_rater person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "third reich is a kind of reich", "pln": ["(: cnet_isa_115c117f76 (IsA third_reich reich) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "third trimester is a kind of trimester", "pln": ["(: cnet_isa_dc5756d5ff (IsA third_trimester trimester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "third ventricle is a kind of ventricle", "pln": ["(: cnet_isa_58a848b9cb (IsA third_ventricle ventricle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "third world is a kind of collection", "pln": ["(: cnet_isa_71851efbd9 (IsA third_world collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thirst is a kind of drive", "pln": ["(: cnet_isa_0a8b2f292b (IsA thirst drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thirteen is a kind of large integer", "pln": ["(: cnet_isa_425d3f8399 (IsA thirteen large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thirteenth is a kind of rank", "pln": ["(: cnet_isa_774eb7082a (IsA thirteenth rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thirty is a kind of decade", "pln": ["(: cnet_isa_d19959d5a0 (IsA thirty decade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thirty is a kind of time of life", "pln": ["(: cnet_isa_305bc4160d (IsA thirty time_of_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thirtieth is a kind of rank", "pln": ["(: cnet_isa_2dead919a3 (IsA thirtieth rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thirty is a kind of large integer", "pln": ["(: cnet_isa_50168151d3 (IsA thirty large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thirty eight is a kind of number", "pln": ["(: cnet_isa_8ee033e7c1 (IsA thirty_eight number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thirty second note is a kind of note", "pln": ["(: cnet_isa_3e2599c425 (IsA thirty_second_note note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thirty second part is a kind of common fraction", "pln": ["(: cnet_isa_17d85ad376 (IsA thirty_second_part common_fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thirty seven is a kind of number", "pln": ["(: cnet_isa_ad2f61763d (IsA thirty_seven number) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thirty six is a kind of number", "pln": ["(: cnet_isa_74d1c4e603 (IsA thirty_six number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thistle is a kind of weed", "pln": ["(: cnet_isa_cba5a14a9d (IsA thistle weed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thistledown is a kind of pappus", "pln": ["(: cnet_isa_aaba826a98 (IsA thistledown pappus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thlaspi is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_7c3f142f9d (IsA thlaspi dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tho is a kind of tai", "pln": ["(: cnet_isa_7f2d221dda (IsA tho tai) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thomism is a kind of theological doctrine", "pln": ["(: cnet_isa_d7b66c1694 (IsA thomism theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thomomy is a kind of mammal genus", "pln": ["(: cnet_isa_80a6f403d4 (IsA thomomy mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thompson seedless is a kind of vinifera grape", "pln": ["(: cnet_isa_6f49d0c685 (IsA thompson_seedless vinifera_grape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thomson s gazelle is a kind of gazelle", "pln": ["(: cnet_isa_0b45663c95 (IsA thomson_s_gazelle gazelle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thong is a kind of leather strip", "pln": ["(: cnet_isa_7832e2fff9 (IsA thong leather_strip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thong is a kind of underpant", "pln": ["(: cnet_isa_7cb148c10f (IsA thong underpant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thoracic actinomycosis is a kind of actinomycosis", "pln": ["(: cnet_isa_f11b8540ee (IsA thoracic_actinomycosis actinomycosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thoracic aorta is a kind of aorta", "pln": ["(: cnet_isa_23e4d90b6a (IsA thoracic_aorta aorta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thoracic duct is a kind of lymph vessel", "pln": ["(: cnet_isa_f4effd4559 (IsA thoracic_duct lymph_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thoracic medicine is a kind of medicine", "pln": ["(: cnet_isa_436ae18a75 (IsA thoracic_medicine medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thoracic nerve is a kind of spinal nerve", "pln": ["(: cnet_isa_bd5d582822 (IsA thoracic_nerve spinal_nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thoracic outlet syndrome is a kind of syndrome", "pln": ["(: cnet_isa_82d40a26ba (IsA thoracic_outlet_syndrome syndrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thoracic vein is a kind of vein", "pln": ["(: cnet_isa_1da2a1da1e (IsA thoracic_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thoracic vertebra is a kind of vertebra", "pln": ["(: cnet_isa_5c4ac94089 (IsA thoracic_vertebra vertebra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thoracocentesis is a kind of centesis", "pln": ["(: cnet_isa_006d51a641 (IsA thoracocentesis centesis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thoracoepigastric vein is a kind of vein", "pln": ["(: cnet_isa_27ddc7b72e (IsA thoracoepigastric_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thoracotomy is a kind of incision", "pln": ["(: cnet_isa_6740ec8e4a (IsA thoracotomy incision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thorax is a kind of body part", "pln": ["(: cnet_isa_0035292122 (IsA thorax body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thorite is a kind of mineral", "pln": ["(: cnet_isa_a9e48109e2 (IsA thorite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thorium is a kind of metallic element", "pln": ["(: cnet_isa_aee6c0e195 (IsA thorium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thorium 228 is a kind of thorium", "pln": ["(: cnet_isa_c3b2e52fa5 (IsA thorium_228 thorium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thorn is a kind of rune", "pln": ["(: cnet_isa_afeb1b2739 (IsA thorn rune) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thorn apple is a kind of shrub", "pln": ["(: cnet_isa_e34f040d0e (IsA thorn_apple shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thornbill is a kind of hummingbird", "pln": ["(: cnet_isa_d756d4123c (IsA thornbill hummingbird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thorny amaranth is a kind of herb", "pln": ["(: cnet_isa_047cef5068 (IsA thorny_amaranth herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thorny skate is a kind of skate", "pln": ["(: cnet_isa_2db5542abe (IsA thorny_skate skate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thoroughbred is a kind of animal", "pln": ["(: cnet_isa_62246c73bf (IsA thoroughbred animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thoroughbred is a kind of racehorse", "pln": ["(: cnet_isa_5b1e8016da (IsA thoroughbred racehorse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thoroughbred is a kind of adult", "pln": ["(: cnet_isa_398c0e7653 (IsA thoroughbred adult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thoroughbred race is a kind of horse race", "pln": ["(: cnet_isa_f79200515c (IsA thoroughbred_race horse_race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thoroughbred racing is a kind of horse racing", "pln": ["(: cnet_isa_e5d35375f5 (IsA thoroughbred_racing horse_racing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thoroughfare is a kind of road", "pln": ["(: cnet_isa_c7cc4ec75f (IsA thoroughfare road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thoroughness is a kind of conscientiousness", "pln": ["(: cnet_isa_6c8fe4b758 (IsA thoroughness conscientiousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thortveitite is a kind of mineral", "pln": ["(: cnet_isa_69a2ce0f13 (IsA thortveitite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thought is a kind of belief", "pln": ["(: cnet_isa_931abbac97 (IsA thought belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thoughtfulness is a kind of trait", "pln": ["(: cnet_isa_4b41c33e95 (IsA thoughtfulness trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thousand is a kind of large integer", "pln": ["(: cnet_isa_e71160dcb0 (IsA thousand large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thousand island dressing is a kind of dressing", "pln": ["(: cnet_isa_5f049a3b53 (IsA thousand_island_dressing dressing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thousandth is a kind of rank", "pln": ["(: cnet_isa_807eebcc18 (IsA thousandth rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thracian is a kind of thraco phrygian", "pln": ["(: cnet_isa_347a689437 (IsA thracian thraco_phrygian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thracian is a kind of european", "pln": ["(: cnet_isa_0f3b50d5d5 (IsA thracian european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thraco phrygian is a kind of indo european", "pln": ["(: cnet_isa_2f9edb7696 (IsA thraco_phrygian indo_european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thrall is a kind of bond servant", "pln": ["(: cnet_isa_11f5c182ac (IsA thrall bond_servant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thrash is a kind of swimming kick", "pln": ["(: cnet_isa_e0fe4f9747 (IsA thrash swimming_kick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thrasher is a kind of oscine", "pln": ["(: cnet_isa_14eac01a30 (IsA thrasher oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thrashing is a kind of defeat", "pln": ["(: cnet_isa_6cb5d75345 (IsA thrashing defeat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thraupidae is a kind of bird family", "pln": ["(: cnet_isa_61ec39cd14 (IsA thraupidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thread is a kind of cord", "pln": ["(: cnet_isa_93c80ff628 (IsA thread cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thread blight is a kind of blight", "pln": ["(: cnet_isa_904d9492f0 (IsA thread_blight blight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "threadfin is a kind of percoid fish", "pln": ["(: cnet_isa_38f95a10b7 (IsA threadfin percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "threadfish is a kind of jack", "pln": ["(: cnet_isa_c3ad41969b (IsA threadfish jack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "threadleaf groundsel is a kind of weed", "pln": ["(: cnet_isa_6569d52a6e (IsA threadleaf_groundsel weed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "threat is a kind of declaration", "pln": ["(: cnet_isa_2197ba0f13 (IsA threat declaration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "threat is a kind of warning", "pln": ["(: cnet_isa_19cce947c7 (IsA threat warning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "three is a kind of number", "pln": ["(: cnet_isa_6eafdca9dc (IsA three number) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "three is a kind of digit", "pln": ["(: cnet_isa_a8d04d2ae1 (IsA three digit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "three centered arch is a kind of round arch", "pln": ["(: cnet_isa_6f99dd80d4 (IsA three_centered_arch round_arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "three cornered leek is a kind of alliaceous plant", "pln": ["(: cnet_isa_cfeaef36e8 (IsA three_cornered_leek alliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "three d is a kind of appearance", "pln": ["(: cnet_isa_2fcac71357 (IsA three_d appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "three d is a kind of movie", "pln": ["(: cnet_isa_13417e58aa (IsA three_d movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "three day event is a kind of equestrian sport", "pln": ["(: cnet_isa_ab313c723c (IsA three_day_event equestrian_sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "three decker is a kind of ship", "pln": ["(: cnet_isa_78cb266581 (IsA three_decker ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "three decker is a kind of warship", "pln": ["(: cnet_isa_beaf69b54d (IsA three_decker warship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "three dimensional radar is a kind of radar", "pln": ["(: cnet_isa_3bdd68e1ba (IsA three_dimensional_radar radar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "three dimensionality is a kind of dimensionality", "pln": ["(: cnet_isa_4b4785f941 (IsA three_dimensionality dimensionality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "three fourth is a kind of common fraction", "pln": ["(: cnet_isa_509a9967d2 (IsA three_fourth common_fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "three hitter is a kind of baseball", "pln": ["(: cnet_isa_8fd082b433 (IsA three_hitter baseball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "three mile limit is a kind of limit", "pln": ["(: cnet_isa_a649deb690 (IsA three_mile_limit limit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "three of cup is a kind of secure environment", "pln": ["(: cnet_isa_1c8d9ad9ed (IsA three_of_cup secure_environment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "three piece suit is a kind of business suit", "pln": ["(: cnet_isa_5762d51ee4 (IsA three_piece_suit business_suit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "three point landing is a kind of aircraft landing", "pln": ["(: cnet_isa_96747a4810 (IsA three_point_landing aircraft_landing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "three point turn is a kind of turn", "pln": ["(: cnet_isa_5e9628365d (IsA three_point_turn turn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "three quarter binding is a kind of binding", "pln": ["(: cnet_isa_fcfd6f900f (IsA three_quarter_binding binding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "three ring circus is a kind of circus", "pln": ["(: cnet_isa_40b81340a8 (IsA three_ring_circus circus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "three seeded mercury is a kind of shrub", "pln": ["(: cnet_isa_a6554722f2 (IsA three_seeded_mercury shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "three spined stickleback is a kind of stickleback", "pln": ["(: cnet_isa_77c38096d5 (IsA three_spined_stickleback stickleback) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "three toed sloth is a kind of sloth", "pln": ["(: cnet_isa_3be3474f09 (IsA three_toed_sloth sloth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "three way calling is a kind of conference call", "pln": ["(: cnet_isa_6826eebfdd (IsA three_way_calling conference_call) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "three way switch is a kind of switch", "pln": ["(: cnet_isa_ea89321a4a (IsA three_way_switch switch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "three year old horse is a kind of racehorse", "pln": ["(: cnet_isa_1cbaf0d6d2 (IsA three_year_old_horse racehorse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "threepence is a kind of coin", "pln": ["(: cnet_isa_b2a0e3dce2 (IsA threepence coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "threescore is a kind of set", "pln": ["(: cnet_isa_72a5e74db0 (IsA threescore set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "threonine is a kind of essential amino acid", "pln": ["(: cnet_isa_60becbf7e8 (IsA threonine essential_amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thresher is a kind of shark", "pln": ["(: cnet_isa_c726e2a6a2 (IsA thresher shark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thresher is a kind of farm machine", "pln": ["(: cnet_isa_ea7328833c (IsA thresher farm_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "threshing is a kind of separation", "pln": ["(: cnet_isa_ec9a4d0864 (IsA threshing separation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "threshing floor is a kind of area", "pln": ["(: cnet_isa_f035fb3a66 (IsA threshing_floor area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "threshold is a kind of sensation", "pln": ["(: cnet_isa_71781905bf (IsA threshold sensation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "threshold is a kind of beginning", "pln": ["(: cnet_isa_78064faa13 (IsA threshold beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "threshold element is a kind of logic element", "pln": ["(: cnet_isa_aa9333579f (IsA threshold_element logic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "threshold function is a kind of mapping", "pln": ["(: cnet_isa_7b4c65a5e2 (IsA threshold_function mapping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "threshold level is a kind of intensity", "pln": ["(: cnet_isa_84cda7c93c (IsA threshold_level intensity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "threshold operation is a kind of operation", "pln": ["(: cnet_isa_7960360f23 (IsA threshold_operation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "threskiornis is a kind of bird genus", "pln": ["(: cnet_isa_4f2e58a579 (IsA threskiornis bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "threskiornithidae is a kind of bird family", "pln": ["(: cnet_isa_6d68a9f36d (IsA threskiornithidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thrift is a kind of subshrub", "pln": ["(: cnet_isa_7bfffda39d (IsA thrift subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thrift institution is a kind of depository financial institution", "pln": ["(: cnet_isa_1f0e1cf2d9 (IsA thrift_institution depository_financial_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thriftlessness is a kind of improvidence", "pln": ["(: cnet_isa_fa309e4160 (IsA thriftlessness improvidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thriftshop is a kind of shop", "pln": ["(: cnet_isa_6c99771d0c (IsA thriftshop shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thrill is a kind of excitation", "pln": ["(: cnet_isa_f76379983a (IsA thrill excitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thriller is a kind of adventure story", "pln": ["(: cnet_isa_fadfab42f1 (IsA thriller adventure_story) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thrinax is a kind of monocot genus", "pln": ["(: cnet_isa_dfc84b028a (IsA thrinax monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thripidae is a kind of arthropod family", "pln": ["(: cnet_isa_b10efd9eaf (IsA thripidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thrip is a kind of thysanopter", "pln": ["(: cnet_isa_b58cc0dd7b (IsA thrip thysanopter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "throat is a kind of external body part", "pln": ["(: cnet_isa_2efc5ef3e9 (IsA throat external_body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "throat is a kind of opening", "pln": ["(: cnet_isa_bcb0c72b01 (IsA throat opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "throat is a kind of passage", "pln": ["(: cnet_isa_83f3ddbb2e (IsA throat passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "throat is a kind of tubular cavity", "pln": ["(: cnet_isa_b5798265bb (IsA throat tubular_cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "throat protector is a kind of protective garment", "pln": ["(: cnet_isa_9b374c7432 (IsA throat_protector protective_garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "throatwort is a kind of campanula", "pln": ["(: cnet_isa_a48a3d523a (IsA throatwort campanula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "throb is a kind of pulse", "pln": ["(: cnet_isa_7626305b41 (IsA throb pulse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "throb is a kind of pain", "pln": ["(: cnet_isa_e81b4eaaab (IsA throb pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "throbbing is a kind of sound", "pln": ["(: cnet_isa_aa4ea18e2f (IsA throbbing sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "throe is a kind of agony", "pln": ["(: cnet_isa_af9d2b7cb8 (IsA throe agony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "throe is a kind of distress", "pln": ["(: cnet_isa_ead1e9e10b (IsA throe distress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "throe is a kind of suffering", "pln": ["(: cnet_isa_3a397a6973 (IsA throe suffering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thrombasthenia is a kind of autosomal recessive disease", "pln": ["(: cnet_isa_ab5203f468 (IsA thrombasthenia autosomal_recessive_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thrombectomy is a kind of ablation", "pln": ["(: cnet_isa_39b91a8240 (IsA thrombectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thrombin is a kind of coagulase", "pln": ["(: cnet_isa_577bd561aa (IsA thrombin coagulase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thrombocytopenia is a kind of blood disease", "pln": ["(: cnet_isa_8935741949 (IsA thrombocytopenia blood_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thrombocytopenic purpura is a kind of autoimmune disease", "pln": ["(: cnet_isa_3d38cb91ab (IsA thrombocytopenic_purpura autoimmune_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thrombocytopenic purpura is a kind of purpura", "pln": ["(: cnet_isa_d1a6e2d67d (IsA thrombocytopenic_purpura purpura) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thrombocytosis is a kind of symptom", "pln": ["(: cnet_isa_23f869afaa (IsA thrombocytosis symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thromboembolism is a kind of occlusion", "pln": ["(: cnet_isa_fa47dc2e88 (IsA thromboembolism occlusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thrombolysis is a kind of lysis", "pln": ["(: cnet_isa_fd3e735151 (IsA thrombolysis lysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thrombolytic is a kind of pharmaceutical", "pln": ["(: cnet_isa_784111898e (IsA thrombolytic pharmaceutical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thrombolytic therapy is a kind of therapy", "pln": ["(: cnet_isa_b4cda1f481 (IsA thrombolytic_therapy therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thrombophlebitis is a kind of phlebitis", "pln": ["(: cnet_isa_76c141ebe1 (IsA thrombophlebitis phlebitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thromboplastin is a kind of coagulation factor", "pln": ["(: cnet_isa_98e5fd43c9 (IsA thromboplastin coagulation_factor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thrombosis is a kind of occlusion", "pln": ["(: cnet_isa_10741ab69e (IsA thrombosis occlusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thrombus is a kind of clot", "pln": ["(: cnet_isa_4789035693 (IsA thrombus clot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "throne is a kind of position", "pln": ["(: cnet_isa_7858479134 (IsA throne position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "throne is a kind of chair of state", "pln": ["(: cnet_isa_ea27fc0ef5 (IsA throne chair_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "throstle is a kind of spinning machine", "pln": ["(: cnet_isa_ddffaa9cb8 (IsA throstle spinning_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "throughput is a kind of output", "pln": ["(: cnet_isa_2f70fbd859 (IsA throughput output) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "throw is a kind of gambling", "pln": ["(: cnet_isa_ef8f3da6e3 (IsA throw gambling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "throw is a kind of propulsion", "pln": ["(: cnet_isa_a6d52f3335 (IsA throw propulsion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "throw is a kind of bedclothe", "pln": ["(: cnet_isa_6d4dc74e41 (IsA throw bedclothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "throw is a kind of movement", "pln": ["(: cnet_isa_78ecaf3d14 (IsA throw movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "throw is a kind of opportunity", "pln": ["(: cnet_isa_f0efd0ea10 (IsA throw opportunity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "throw in is a kind of throw", "pln": ["(: cnet_isa_2f713bac6a (IsA throw_in throw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "throw pillow is a kind of cushion", "pln": ["(: cnet_isa_b5e5e35d0e (IsA throw_pillow cushion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "throw weight is a kind of weight", "pln": ["(: cnet_isa_cdda5e8550 (IsA throw_weight weight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "throwaway is a kind of actor s line", "pln": ["(: cnet_isa_42a713ffe1 (IsA throwaway actor_s_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thrower is a kind of person", "pln": ["(: cnet_isa_6aa02f8c92 (IsA thrower person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "throwing stick is a kind of device", "pln": ["(: cnet_isa_348f1957c7 (IsA throwing_stick device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "throwster is a kind of worker", "pln": ["(: cnet_isa_bfa10bdf96 (IsA throwster worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thrum is a kind of sound", "pln": ["(: cnet_isa_6b738d26bd (IsA thrum sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thrush is a kind of oscine", "pln": ["(: cnet_isa_f20bdda783 (IsA thrush oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thrush is a kind of singer", "pln": ["(: cnet_isa_21716d2f55 (IsA thrush singer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thrush is a kind of candidiasis", "pln": ["(: cnet_isa_147e3666f0 (IsA thrush candidiasis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thrush nightingale is a kind of thrush", "pln": ["(: cnet_isa_848e034f6c (IsA thrush_nightingale thrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thrust is a kind of criticism", "pln": ["(: cnet_isa_71728f689d (IsA thrust criticism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thrust bearing is a kind of bearing", "pln": ["(: cnet_isa_573a56ef5e (IsA thrust_bearing bearing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thrust fault is a kind of inclined fault", "pln": ["(: cnet_isa_5e25f9a2e6 (IsA thrust_fault inclined_fault) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thrust stage is a kind of theater stage", "pln": ["(: cnet_isa_d0a3563870 (IsA thrust_stage theater_stage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thruster is a kind of rocket", "pln": ["(: cnet_isa_e59ee5246d (IsA thruster rocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thryothorus is a kind of bird genus", "pln": ["(: cnet_isa_d964473805 (IsA thryothorus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thuggee is a kind of murder", "pln": ["(: cnet_isa_8d11839aaa (IsA thuggee murder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thuggery is a kind of crime", "pln": ["(: cnet_isa_c3f31eccc4 (IsA thuggery crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thuja is a kind of gymnosperm genus", "pln": ["(: cnet_isa_7382fc9d5a (IsA thuja gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thujopsis is a kind of gymnosperm genus", "pln": ["(: cnet_isa_157c1733da (IsA thujopsis gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thulium is a kind of metallic element", "pln": ["(: cnet_isa_2833eb7e77 (IsA thulium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thumb is a kind of finger", "pln": ["(: cnet_isa_95ecd34c58 (IsA thumb finger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thumb is a kind of covering", "pln": ["(: cnet_isa_4b633be00b (IsA thumb covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thumb index is a kind of notch", "pln": ["(: cnet_isa_b0b5ad4fc1 (IsA thumb_index notch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thumbhole is a kind of finger hole", "pln": ["(: cnet_isa_956fe8f11d (IsA thumbhole finger_hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thumbhole is a kind of hole", "pln": ["(: cnet_isa_cf01e61a45 (IsA thumbhole hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thumbnail is a kind of fingernail", "pln": ["(: cnet_isa_41ed68c561 (IsA thumbnail fingernail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thumbprint is a kind of fingerprint", "pln": ["(: cnet_isa_8c75e9d678 (IsA thumbprint fingerprint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thumbscrew is a kind of instrument of torture", "pln": ["(: cnet_isa_6cabf9688d (IsA thumbscrew instrument_of_torture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thumbscrew is a kind of screw", "pln": ["(: cnet_isa_f062f8ef9d (IsA thumbscrew screw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thumbstall is a kind of protective covering", "pln": ["(: cnet_isa_74c7f89f5d (IsA thumbstall protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thumbtack is a kind of paper fastener", "pln": ["(: cnet_isa_ec6ec6ec34 (IsA thumbtack paper_fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thumbtack is a kind of tack", "pln": ["(: cnet_isa_3eeb8c8c47 (IsA thumbtack tack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thump is a kind of blow", "pln": ["(: cnet_isa_22366c4f74 (IsA thump blow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thump is a kind of sound", "pln": ["(: cnet_isa_1aaeb59216 (IsA thump sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thunbergia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_4d3dbea64b (IsA thunbergia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thunder is a kind of noise", "pln": ["(: cnet_isa_1f9f793116 (IsA thunder noise) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thunder snake is a kind of colubrid snake", "pln": ["(: cnet_isa_030a50de37 (IsA thunder_snake colubrid_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thunderbird is a kind of spirit", "pln": ["(: cnet_isa_f4deee88a6 (IsA thunderbird spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thunderbolt is a kind of lightning", "pln": ["(: cnet_isa_3de778e22f (IsA thunderbolt lightning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thunderclap is a kind of thunder", "pln": ["(: cnet_isa_eec921ec06 (IsA thunderclap thunder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thunderer is a kind of noisemaker", "pln": ["(: cnet_isa_52451abf6c (IsA thunderer noisemaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thunderhead is a kind of cumulus", "pln": ["(: cnet_isa_5f875b34d7 (IsA thunderhead cumulus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thundershower is a kind of rainstorm", "pln": ["(: cnet_isa_3053c4fe28 (IsA thundershower rainstorm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thunderstorm is a kind of storm", "pln": ["(: cnet_isa_d2348c8865 (IsA thunderstorm storm) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thunk is a kind of sound", "pln": ["(: cnet_isa_31796f4aea (IsA thunk sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thunnus is a kind of fish genus", "pln": ["(: cnet_isa_a1fd06f8b6 (IsA thunnus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thurifer is a kind of acolyte", "pln": ["(: cnet_isa_e9a3c759c6 (IsA thurifer acolyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thursday is a kind of weekday", "pln": ["(: cnet_isa_3c08f9ce2f (IsA thursday weekday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thwack is a kind of blow", "pln": ["(: cnet_isa_91fd405e7f (IsA thwack blow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thwart is a kind of crosspiece", "pln": ["(: cnet_isa_9eeeb9a14c (IsA thwart crosspiece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thylacine is a kind of dasyurid marsupial", "pln": ["(: cnet_isa_8e929d5eac (IsA thylacine dasyurid_marsupial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thylacinus is a kind of mammal genus", "pln": ["(: cnet_isa_e1ba49040a (IsA thylacinus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thylogale is a kind of mammal genus", "pln": ["(: cnet_isa_073eeabdc2 (IsA thylogale mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thyme is a kind of herb", "pln": ["(: cnet_isa_5a776a4960 (IsA thyme herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thyme leaved sandwort is a kind of sandwort", "pln": ["(: cnet_isa_9702686377 (IsA thyme_leaved_sandwort sandwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thyme leaved speedwell is a kind of veronica", "pln": ["(: cnet_isa_b9649fd249 (IsA thyme_leaved_speedwell veronica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thymelaeaceae is a kind of dicot family", "pln": ["(: cnet_isa_b5db299859 (IsA thymelaeaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thymine is a kind of pyrimidine", "pln": ["(: cnet_isa_3405809f6d (IsA thymine pyrimidine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thymol is a kind of phenol", "pln": ["(: cnet_isa_370eae4d9a (IsA thymol phenol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thymosin is a kind of hormone", "pln": ["(: cnet_isa_ab34dbfbff (IsA thymosin hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thymus is a kind of asterid dicot genus", "pln": ["(: cnet_isa_30d55f31e5 (IsA thymus asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thymus gland is a kind of endocrine gland", "pln": ["(: cnet_isa_57294dae09 (IsA thymus_gland endocrine_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thyreophora is a kind of animal order", "pln": ["(: cnet_isa_74e342bc61 (IsA thyreophora animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thyroglobulin is a kind of iodoprotein", "pln": ["(: cnet_isa_814f506f25 (IsA thyroglobulin iodoprotein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thyroid cartilage is a kind of cartilage", "pln": ["(: cnet_isa_5b12410de0 (IsA thyroid_cartilage cartilage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thyroid gland is a kind of endocrine gland", "pln": ["(: cnet_isa_332d779509 (IsA thyroid_gland endocrine_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thyroid hormone is a kind of hormone", "pln": ["(: cnet_isa_d4f4ffb34c (IsA thyroid_hormone hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thyroid vein is a kind of vein", "pln": ["(: cnet_isa_b36d8b40b7 (IsA thyroid_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thyroidectomy is a kind of ablation", "pln": ["(: cnet_isa_addc198562 (IsA thyroidectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thyroiditis is a kind of inflammation", "pln": ["(: cnet_isa_d22075288d (IsA thyroiditis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thyronine is a kind of amino acid", "pln": ["(: cnet_isa_67c5f2dc2e (IsA thyronine amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thyroprotein is a kind of iodoprotein", "pln": ["(: cnet_isa_630cbd4fd8 (IsA thyroprotein iodoprotein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thyrotropin is a kind of hormone", "pln": ["(: cnet_isa_e6843cb11a (IsA thyrotropin hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thyrotropin releasing hormone is a kind of hormone", "pln": ["(: cnet_isa_e9c5c64c35 (IsA thyrotropin_releasing_hormone hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thyroxine is a kind of thyroid hormone", "pln": ["(: cnet_isa_00b065d400 (IsA thyroxine thyroid_hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thyrse is a kind of flower cluster", "pln": ["(: cnet_isa_df7b1f563f (IsA thyrse flower_cluster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "thyrsopteris is a kind of tree fern", "pln": ["(: cnet_isa_43478decae (IsA thyrsopteris tree_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thysanocarpus is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_4372679102 (IsA thysanocarpus dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thysanopter is a kind of insect", "pln": ["(: cnet_isa_1ac015ccb3 (IsA thysanopter insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thysanoptera is a kind of animal order", "pln": ["(: cnet_isa_7345be0dcb (IsA thysanoptera animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thysanura is a kind of animal order", "pln": ["(: cnet_isa_fec0831477 (IsA thysanura animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "thysanuran insect is a kind of insect", "pln": ["(: cnet_isa_6c8b30cc68 (IsA thysanuran_insect insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ti is a kind of solfa syllable", "pln": ["(: cnet_isa_93a0c2e4b2 (IsA ti solfa_syllable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ti is a kind of shrub", "pln": ["(: cnet_isa_0f77bd477d (IsA ti shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tiara is a kind of jewelled headdress", "pln": ["(: cnet_isa_898ac5ab7e (IsA tiara jewelled_headdress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tiarella is a kind of rosid dicot genus", "pln": ["(: cnet_isa_49f9525bb8 (IsA tiarella rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tibetan is a kind of himalayish", "pln": ["(: cnet_isa_55a3f62a3b (IsA tibetan himalayish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tibetan is a kind of asiatic", "pln": ["(: cnet_isa_25d2f25bea (IsA tibetan asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tibetan mastiff is a kind of mastiff", "pln": ["(: cnet_isa_95425131ac (IsA tibetan_mastiff mastiff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tibetan terrier is a kind of terrier", "pln": ["(: cnet_isa_759d95af91 (IsA tibetan_terrier terrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tibeto burman is a kind of sino tibetan", "pln": ["(: cnet_isa_e782c56aa6 (IsA tibeto_burman sino_tibetan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tibia is a kind of leg bone", "pln": ["(: cnet_isa_5965145647 (IsA tibia leg_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tibial vein is a kind of vein", "pln": ["(: cnet_isa_1b4f7552a4 (IsA tibial_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tibialis is a kind of skeletal muscle", "pln": ["(: cnet_isa_8ccf8b29e8 (IsA tibialis skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tibialis anticus is a kind of tibialis", "pln": ["(: cnet_isa_7b5fe90cf6 (IsA tibialis_anticus tibialis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tibialis posticus is a kind of tibialis", "pln": ["(: cnet_isa_d5763924b9 (IsA tibialis_posticus tibialis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tibicen is a kind of arthropod genus", "pln": ["(: cnet_isa_e53dbeb0a1 (IsA tibicen arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tic is a kind of twitch", "pln": ["(: cnet_isa_fd735e7e15 (IsA tic twitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tichodroma is a kind of bird genus", "pln": ["(: cnet_isa_08d76796bc (IsA tichodroma bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tick is a kind of acarine", "pln": ["(: cnet_isa_eaf3c25458 (IsA tick acarine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tick is a kind of mattress", "pln": ["(: cnet_isa_36daa0e643 (IsA tick mattress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tick is a kind of sound", "pln": ["(: cnet_isa_b2c0d35e88 (IsA tick sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tick trefoil is a kind of subshrub", "pln": ["(: cnet_isa_7aa6b28822 (IsA tick_trefoil subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ticker is a kind of character printer", "pln": ["(: cnet_isa_4615c9b8ae (IsA ticker character_printer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ticker tape is a kind of paper", "pln": ["(: cnet_isa_cdb8c7ff82 (IsA ticker_tape paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ticket is a kind of appropriateness", "pln": ["(: cnet_isa_a3897ce7e1 (IsA ticket appropriateness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ticket is a kind of commercial document", "pln": ["(: cnet_isa_9686e227df (IsA ticket commercial_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ticket is a kind of summon", "pln": ["(: cnet_isa_477bcb5faf (IsA ticket summon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ticket agent is a kind of seller", "pln": ["(: cnet_isa_36fe6ffc66 (IsA ticket_agent seller) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ticket book is a kind of booklet", "pln": ["(: cnet_isa_8626acccfb (IsA ticket_book booklet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ticket collector is a kind of doorkeeper", "pln": ["(: cnet_isa_36d8280227 (IsA ticket_collector doorkeeper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ticket holder is a kind of holder", "pln": ["(: cnet_isa_67230ca244 (IsA ticket_holder holder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ticket line is a kind of queue", "pln": ["(: cnet_isa_bc0f176ab4 (IsA ticket_line queue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ticket of leave is a kind of pass", "pln": ["(: cnet_isa_7eac06f3aa (IsA ticket_of_leave pass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ticket window is a kind of window", "pln": ["(: cnet_isa_b308419793 (IsA ticket_window window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ticking is a kind of fabric", "pln": ["(: cnet_isa_16759f47d0 (IsA ticking fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tickle is a kind of touch", "pln": ["(: cnet_isa_f1afbb8e29 (IsA tickle touch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tickle is a kind of cutaneous sensation", "pln": ["(: cnet_isa_b55d917f5b (IsA tickle cutaneous_sensation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tickler is a kind of file", "pln": ["(: cnet_isa_f816359b35 (IsA tickler file) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tickler coil is a kind of coil", "pln": ["(: cnet_isa_d6dadf6398 (IsA tickler_coil coil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tickseed sunflower is a kind of bur marigold", "pln": ["(: cnet_isa_fb3c707a6e (IsA tickseed_sunflower bur_marigold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ticktack is a kind of signal", "pln": ["(: cnet_isa_6bb63c3445 (IsA ticktack signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ticktacktoe is a kind of board game", "pln": ["(: cnet_isa_7d0fcd32c2 (IsA ticktacktoe board_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ticktock is a kind of tick", "pln": ["(: cnet_isa_976c01b8b5 (IsA ticktock tick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tidal basin is a kind of basin", "pln": ["(: cnet_isa_fc0757082c (IsA tidal_basin basin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tidal bore is a kind of tidal flow", "pln": ["(: cnet_isa_f9106ca6fd (IsA tidal_bore tidal_flow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tidal flow is a kind of current", "pln": ["(: cnet_isa_43717f2c8d (IsA tidal_flow current) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tidal river is a kind of stream", "pln": ["(: cnet_isa_ac19dd6701 (IsA tidal_river stream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tidal wave is a kind of calamity", "pln": ["(: cnet_isa_0200e30031 (IsA tidal_wave calamity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tidal wave is a kind of manifestation", "pln": ["(: cnet_isa_b884b90ad4 (IsA tidal_wave manifestation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tidal wave is a kind of wave", "pln": ["(: cnet_isa_abd516284a (IsA tidal_wave wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tidal zone is a kind of zone", "pln": ["(: cnet_isa_e5ad392782 (IsA tidal_zone zone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tiddlywink is a kind of child s game", "pln": ["(: cnet_isa_08c00ece10 (IsA tiddlywink child_s_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tide is a kind of periodic event", "pln": ["(: cnet_isa_6886ed4752 (IsA tide periodic_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tide is a kind of variation", "pln": ["(: cnet_isa_c7cc67ca68 (IsA tide variation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tide is a kind of time period", "pln": ["(: cnet_isa_13c71b6c4d (IsA tide time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tideland is a kind of seashore", "pln": ["(: cnet_isa_5dde2c2392 (IsA tideland seashore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tidemark is a kind of indicator", "pln": ["(: cnet_isa_2cbc5c0c15 (IsA tidemark indicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tidewater is a kind of coastal plain", "pln": ["(: cnet_isa_e2783db38c (IsA tidewater coastal_plain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tideway is a kind of channel", "pln": ["(: cnet_isa_dcfa85a7e6 (IsA tideway channel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tidiness is a kind of cleanliness", "pln": ["(: cnet_isa_669d13e699 (IsA tidiness cleanliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tidiness is a kind of orderliness", "pln": ["(: cnet_isa_1a9154bf8f (IsA tidiness orderliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tidy is a kind of receptacle", "pln": ["(: cnet_isa_707b417b4e (IsA tidy receptacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tidytip is a kind of flower", "pln": ["(: cnet_isa_97c402a400 (IsA tidytip flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tie is a kind of neckwear", "pln": ["(: cnet_isa_9a6d8df233 (IsA tie neckwear) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tie is a kind of beam", "pln": ["(: cnet_isa_07e197c1e1 (IsA tie beam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tie is a kind of brace", "pln": ["(: cnet_isa_6da148357d (IsA tie brace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tie is a kind of cord", "pln": ["(: cnet_isa_013bf012b0 (IsA tie cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tie is a kind of slur", "pln": ["(: cnet_isa_eb6cfba603 (IsA tie slur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tie is a kind of equality", "pln": ["(: cnet_isa_897e1d139b (IsA tie equality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tie clip is a kind of jewelry", "pln": ["(: cnet_isa_acd2cd169c (IsA tie_clip jewelry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tie rack is a kind of rack", "pln": ["(: cnet_isa_5e6823a54f (IsA tie_rack rack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tie rod is a kind of rod", "pln": ["(: cnet_isa_169f48d8eb (IsA tie_rod rod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tie tack is a kind of pin", "pln": ["(: cnet_isa_db7c3793b1 (IsA tie_tack pin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tiebreaker is a kind of overtime", "pln": ["(: cnet_isa_0d4e98ce35 (IsA tiebreaker overtime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tier is a kind of layer", "pln": ["(: cnet_isa_f1abbc62fa (IsA tier layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tier is a kind of rope", "pln": ["(: cnet_isa_b07eef1ddc (IsA tier rope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tier is a kind of rival", "pln": ["(: cnet_isa_2e28cfc432 (IsA tier rival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tier is a kind of worker", "pln": ["(: cnet_isa_f51ab7bc0e (IsA tier worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tiercel is a kind of hawk", "pln": ["(: cnet_isa_75cc0947b0 (IsA tiercel hawk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tiered seat is a kind of seating", "pln": ["(: cnet_isa_b1be5214bd (IsA tiered_seat seating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tietze s syndrome is a kind of syndrome", "pln": ["(: cnet_isa_1c32a3fdbc (IsA tietze_s_syndrome syndrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tiffany glass is a kind of stained glass", "pln": ["(: cnet_isa_5cf6abe079 (IsA tiffany_glass stained_glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tiger is a kind of animal", "pln": ["(: cnet_isa_a155308503 (IsA tiger animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tiger is a kind of big cat", "pln": ["(: cnet_isa_b63a6da5fe (IsA tiger big_cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tiger is a kind of person", "pln": ["(: cnet_isa_42b67799b7 (IsA tiger person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tiger beetle is a kind of beetle", "pln": ["(: cnet_isa_290f218fd2 (IsA tiger_beetle beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tiger cat is a kind of domestic cat", "pln": ["(: cnet_isa_9193865759 (IsA tiger_cat domestic_cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tiger cat is a kind of wildcat", "pln": ["(: cnet_isa_2b192d076f (IsA tiger_cat wildcat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tiger cowrie is a kind of cowrie", "pln": ["(: cnet_isa_8804d99891 (IsA tiger_cowrie cowrie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tiger cub is a kind of cub", "pln": ["(: cnet_isa_0752950ede (IsA tiger_cub cub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tiger cub is a kind of tiger", "pln": ["(: cnet_isa_26ac8dbd3c (IsA tiger_cub tiger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tiger lily is a kind of lily", "pln": ["(: cnet_isa_eefc223165 (IsA tiger_lily lily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tiger moth is a kind of arctiid", "pln": ["(: cnet_isa_8ad18a8e84 (IsA tiger_moth arctiid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tiger rattlesnake is a kind of rattlesnake", "pln": ["(: cnet_isa_156690d6ac (IsA tiger_rattlesnake rattlesnake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tiger salamander is a kind of ambystomid", "pln": ["(: cnet_isa_6b898fb694 (IsA tiger_salamander ambystomid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tiger shark is a kind of requiem shark", "pln": ["(: cnet_isa_05f38bb84f (IsA tiger_shark requiem_shark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tiger snake is a kind of elapid", "pln": ["(: cnet_isa_cdec401085 (IsA tiger_snake elapid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tigger is a kind of fictional character", "pln": ["(: cnet_isa_3448c2629b (IsA tigger fictional_character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tight end is a kind of end", "pln": ["(: cnet_isa_522f03b77e (IsA tight_end end) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tight money is a kind of financial condition", "pln": ["(: cnet_isa_9733d86c93 (IsA tight_money financial_condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tightening is a kind of alteration", "pln": ["(: cnet_isa_d8fa966b0b (IsA tightening alteration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tightness is a kind of immovability", "pln": ["(: cnet_isa_27f53f9875 (IsA tightness immovability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tightrope is a kind of rope", "pln": ["(: cnet_isa_0a98bf23aa (IsA tightrope rope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tightrope walking is a kind of sport", "pln": ["(: cnet_isa_1bbbc9238d (IsA tightrope_walking sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tight is a kind of hosiery", "pln": ["(: cnet_isa_1ce63a96d7 (IsA tight hosiery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tiglon is a kind of big cat", "pln": ["(: cnet_isa_7d7ef1008b (IsA tiglon big_cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tigress is a kind of tiger", "pln": ["(: cnet_isa_5b885ab322 (IsA tigress tiger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tilapia is a kind of fish genus", "pln": ["(: cnet_isa_bb4b6a3b6f (IsA tilapia fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tilde is a kind of diacritical mark", "pln": ["(: cnet_isa_fe2457e801 (IsA tilde diacritical_mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tile is a kind of man", "pln": ["(: cnet_isa_655f4f3c43 (IsA tile man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tile is a kind of slab", "pln": ["(: cnet_isa_51b506aca6 (IsA tile slab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tile is a kind of roofing material", "pln": ["(: cnet_isa_b94dfaeb2c (IsA tile roofing_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tile cutter is a kind of cutter", "pln": ["(: cnet_isa_f9d4cc7819 (IsA tile_cutter cutter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tile roof is a kind of roof", "pln": ["(: cnet_isa_2380d2bafa (IsA tile_roof roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tilefish is a kind of percoid fish", "pln": ["(: cnet_isa_fb08f25ada (IsA tilefish percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tiler is a kind of worker", "pln": ["(: cnet_isa_d6213fd19a (IsA tiler worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tilia is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_df412be0e5 (IsA tilia dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tiliaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_fa3878ecf2 (IsA tiliaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tiling is a kind of application", "pln": ["(: cnet_isa_99313a65d2 (IsA tiling application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tiliomycete is a kind of class", "pln": ["(: cnet_isa_76d62530f2 (IsA tiliomycete class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "till is a kind of soil", "pln": ["(: cnet_isa_a84b496f61 (IsA till soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tillage is a kind of culture", "pln": ["(: cnet_isa_3e38e32acf (IsA tillage culture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tillandsia is a kind of monocot genus", "pln": ["(: cnet_isa_b24337ad74 (IsA tillandsia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tiller is a kind of lever", "pln": ["(: cnet_isa_1e38d86b0f (IsA tiller lever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tiller is a kind of farmer", "pln": ["(: cnet_isa_3290dc9296 (IsA tiller farmer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tiller is a kind of shoot", "pln": ["(: cnet_isa_22a001041c (IsA tiller shoot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tilletia is a kind of fungus genus", "pln": ["(: cnet_isa_863fd4482c (IsA tilletia fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tilletiaceae is a kind of fungus family", "pln": ["(: cnet_isa_bf381e2b8d (IsA tilletiaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tilling is a kind of cultivation", "pln": ["(: cnet_isa_1b020af183 (IsA tilling cultivation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tilt is a kind of position", "pln": ["(: cnet_isa_2e6a01ca5d (IsA tilt position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tilt is a kind of partiality", "pln": ["(: cnet_isa_4ab017900d (IsA tilt partiality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tilt angle is a kind of angle", "pln": ["(: cnet_isa_0d5832565e (IsA tilt_angle angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tilt top table is a kind of pedestal table", "pln": ["(: cnet_isa_bbddaf7ffe (IsA tilt_top_table pedestal_table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tilter is a kind of device", "pln": ["(: cnet_isa_bcaa978677 (IsA tilter device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tilter is a kind of rival", "pln": ["(: cnet_isa_54b3888eb8 (IsA tilter rival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tilth is a kind of condition", "pln": ["(: cnet_isa_4f4eafe1ff (IsA tilth condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tiltyard is a kind of yard", "pln": ["(: cnet_isa_3d8b364aba (IsA tiltyard yard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "timalia is a kind of bird genus", "pln": ["(: cnet_isa_018f7c4ce3 (IsA timalia bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "timaliidae is a kind of bird family", "pln": ["(: cnet_isa_be674a80e3 (IsA timaliidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "timbale is a kind of dish", "pln": ["(: cnet_isa_a34cb947b4 (IsA timbale dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "timbale is a kind of pastry", "pln": ["(: cnet_isa_5721b15d02 (IsA timbale pastry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "timber is a kind of beam", "pln": ["(: cnet_isa_5a87c02636 (IsA timber beam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "timber is a kind of post", "pln": ["(: cnet_isa_dcf42ba913 (IsA timber post) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "timber hitch is a kind of hitch", "pln": ["(: cnet_isa_960693c205 (IsA timber_hitch hitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "timber line is a kind of line", "pln": ["(: cnet_isa_15cfb73629 (IsA timber_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "timber rattlesnake is a kind of rattlesnake", "pln": ["(: cnet_isa_2f5e939673 (IsA timber_rattlesnake rattlesnake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "timber tree is a kind of tree", "pln": ["(: cnet_isa_3a14456adf (IsA timber_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "timber wolf is a kind of wolf", "pln": ["(: cnet_isa_5810dc7e1a (IsA timber_wolf wolf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "timberman is a kind of owner", "pln": ["(: cnet_isa_0e96d5ba7c (IsA timberman owner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "timbre is a kind of sound property", "pln": ["(: cnet_isa_3e967b7ca9 (IsA timbre sound_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "timbrel is a kind of drum", "pln": ["(: cnet_isa_bd5e852ad2 (IsA timbrel drum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time is a kind of abstract concept", "pln": ["(: cnet_isa_93e5d5f5fc (IsA time abstract_concept) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time is a kind of linear concept", "pln": ["(: cnet_isa_3a9693564c (IsA time linear_concept) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "time is a kind of man made concept", "pln": ["(: cnet_isa_85b072aff8 (IsA time man_made_concept) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time is a kind of measurement", "pln": ["(: cnet_isa_cb6fdd8bac (IsA time measurement) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time is a kind of money", "pln": ["(: cnet_isa_c07862bbaf (IsA time money) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time is a kind of not money", "pln": ["(: cnet_isa_73ff9f7e44 (IsA time not_money) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time is a kind of one way", "pln": ["(: cnet_isa_9309e289fe (IsA time one_way) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time is a kind of precious thing", "pln": ["(: cnet_isa_f547240b6b (IsA time precious_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time is a kind of attribute", "pln": ["(: cnet_isa_1fff0ed690 (IsA time attribute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time is a kind of case", "pln": ["(: cnet_isa_1e7c290d93 (IsA time case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time is a kind of experience", "pln": ["(: cnet_isa_583ff4168b (IsA time experience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time is a kind of moment", "pln": ["(: cnet_isa_598795aeb2 (IsA time moment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time is a kind of time period", "pln": ["(: cnet_isa_55583ff409 (IsA time time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time and half is a kind of pay rate", "pln": ["(: cnet_isa_01144d7b6a (IsA time_and_half pay_rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time and motion study is a kind of examination", "pln": ["(: cnet_isa_af4127ee86 (IsA time_and_motion_study examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time ball is a kind of ball", "pln": ["(: cnet_isa_8f14133087 (IsA time_ball ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time being is a kind of present", "pln": ["(: cnet_isa_829c66bbcc (IsA time_being present) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time bomb is a kind of bomb", "pln": ["(: cnet_isa_07e254615a (IsA time_bomb bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "time bomb is a kind of situation", "pln": ["(: cnet_isa_be586da979 (IsA time_bomb situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "time capsule is a kind of container", "pln": ["(: cnet_isa_6857505d1e (IsA time_capsule container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "time clock is a kind of clock", "pln": ["(: cnet_isa_73e1c94451 (IsA time_clock clock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time constant is a kind of time interval", "pln": ["(: cnet_isa_9f1ba331b3 (IsA time_constant time_interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time constant is a kind of ratio", "pln": ["(: cnet_isa_7576a6ab95 (IsA time_constant ratio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "time delay measuring instrument is a kind of chronoscope", "pln": ["(: cnet_isa_7973762ac1 (IsA time_delay_measuring_instrument chronoscope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time deposit is a kind of certificate of deposit", "pln": ["(: cnet_isa_af53d8701d (IsA time_deposit certificate_of_deposit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time deposit account is a kind of saving account", "pln": ["(: cnet_isa_79502216e9 (IsA time_deposit_account saving_account) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "time draft is a kind of draft", "pln": ["(: cnet_isa_03e0b57c51 (IsA time_draft draft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time exposure is a kind of exposure", "pln": ["(: cnet_isa_251aac2963 (IsA time_exposure exposure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time exposure is a kind of picture", "pln": ["(: cnet_isa_27737e0c66 (IsA time_exposure picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time frame is a kind of time period", "pln": ["(: cnet_isa_67e8182092 (IsA time_frame time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time fuse is a kind of fuse", "pln": ["(: cnet_isa_d2a999695d (IsA time_fuse fuse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time immemorial is a kind of past", "pln": ["(: cnet_isa_30e372a05a (IsA time_immemorial past) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "time interval is a kind of measure", "pln": ["(: cnet_isa_b529d4f48d (IsA time_interval measure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time limit is a kind of time period", "pln": ["(: cnet_isa_639f7853da (IsA time_limit time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time loan is a kind of loan", "pln": ["(: cnet_isa_ee03c1952a (IsA time_loan loan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time machine is a kind of machine", "pln": ["(: cnet_isa_1bce0c3ef6 (IsA time_machine machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time note is a kind of note", "pln": ["(: cnet_isa_4ebf5982d6 (IsA time_note note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time of life is a kind of time period", "pln": ["(: cnet_isa_45865d9b99 (IsA time_of_life time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time off is a kind of time period", "pln": ["(: cnet_isa_2f0e3bc6fd (IsA time_off time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time out is a kind of pause", "pln": ["(: cnet_isa_bae7e570cf (IsA time_out pause) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time period is a kind of fundamental quantity", "pln": ["(: cnet_isa_0869d88ffa (IsA time_period fundamental_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time scale is a kind of duration", "pln": ["(: cnet_isa_a935f0b0f7 (IsA time_scale duration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time scale factor is a kind of scale factor", "pln": ["(: cnet_isa_b257c6852d (IsA time_scale_factor scale_factor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time sery is a kind of statistic", "pln": ["(: cnet_isa_4af7c76d5c (IsA time_sery statistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time sharing is a kind of sharing", "pln": ["(: cnet_isa_426a322d1f (IsA time_sharing sharing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "time sheet is a kind of written record", "pln": ["(: cnet_isa_d9fbb2b9ef (IsA time_sheet written_record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time signal is a kind of signal", "pln": ["(: cnet_isa_9a42fc17ee (IsA time_signal signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time signature is a kind of musical notation", "pln": ["(: cnet_isa_2aec167cf1 (IsA time_signature musical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time slot is a kind of time interval", "pln": ["(: cnet_isa_c894fcdedc (IsA time_slot time_interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time switch is a kind of switch", "pln": ["(: cnet_isa_fc644f7037 (IsA time_switch switch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time unit is a kind of measure", "pln": ["(: cnet_isa_b50878c2f0 (IsA time_unit measure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time zone is a kind of zone", "pln": ["(: cnet_isa_f0666e7c4a (IsA time_zone zone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "timecard is a kind of card", "pln": ["(: cnet_isa_cbd0e5fe49 (IsA timecard card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "timecard is a kind of written record", "pln": ["(: cnet_isa_15fbd7f5fb (IsA timecard written_record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "timekeeper is a kind of clerk", "pln": ["(: cnet_isa_f3b5e8e8b0 (IsA timekeeper clerk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "timekeeper is a kind of official", "pln": ["(: cnet_isa_0694fd6b02 (IsA timekeeper official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "timekeeping is a kind of activity", "pln": ["(: cnet_isa_30b9cb181e (IsA timekeeping activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "timeline is a kind of chronology", "pln": ["(: cnet_isa_218a3428fb (IsA timeline chronology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "timepiece is a kind of measuring instrument", "pln": ["(: cnet_isa_3f57ca4954 (IsA timepiece measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "timer is a kind of governor", "pln": ["(: cnet_isa_a66b22bdd3 (IsA timer governor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "timer is a kind of timepiece", "pln": ["(: cnet_isa_ac621b3b43 (IsA timer timepiece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "time is a kind of time", "pln": ["(: cnet_isa_7345f5ddb9 (IsA time time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "timeserver is a kind of opportunist", "pln": ["(: cnet_isa_14b910551e (IsA timeserver opportunist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "timetable is a kind of schedule", "pln": ["(: cnet_isa_6d2e4d46a9 (IsA timetable schedule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "timework is a kind of work", "pln": ["(: cnet_isa_43b9932cae (IsA timework work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "timid is a kind of people", "pln": ["(: cnet_isa_dbced98961 (IsA timid people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "timidity is a kind of fearfulness", "pln": ["(: cnet_isa_5f68c96143 (IsA timidity fearfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "timidity is a kind of fear", "pln": ["(: cnet_isa_3a6b41bec2 (IsA timidity fear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "timing is a kind of regulation", "pln": ["(: cnet_isa_d187a3c234 (IsA timing regulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "timing is a kind of temporal arrangement", "pln": ["(: cnet_isa_4d95c18c9a (IsA timing temporal_arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "timorese is a kind of asiatic", "pln": ["(: cnet_isa_6059b803be (IsA timorese asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "timothy is a kind of hay", "pln": ["(: cnet_isa_776a07157a (IsA timothy hay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "timothy is a kind of grass", "pln": ["(: cnet_isa_2aa2ca7034 (IsA timothy grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "timucu is a kind of needlefish", "pln": ["(: cnet_isa_6734eece8b (IsA timucu needlefish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tin is a kind of metal", "pln": ["(: cnet_isa_b70c6631f7 (IsA tin metal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tin is a kind of vessel", "pln": ["(: cnet_isa_cb2a23fb8f (IsA tin vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tin is a kind of metallic element", "pln": ["(: cnet_isa_64d0e9b58d (IsA tin metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tin can is a kind of destroyer", "pln": ["(: cnet_isa_f3254710f0 (IsA tin_can destroyer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tin ear is a kind of insensitivity", "pln": ["(: cnet_isa_a21359477f (IsA tin_ear insensitivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tin pan alley is a kind of business district", "pln": ["(: cnet_isa_d2a357b6ec (IsA tin_pan_alley business_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tin pest is a kind of transformation", "pln": ["(: cnet_isa_5ab42b2e77 (IsA tin_pest transformation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tin plate is a kind of sheet metal", "pln": ["(: cnet_isa_b38768d441 (IsA tin_plate sheet_metal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tinamidae is a kind of bird family", "pln": ["(: cnet_isa_b3365d810b (IsA tinamidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tinamiforme is a kind of animal order", "pln": ["(: cnet_isa_4e78a92c5e (IsA tinamiforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tinamou is a kind of game bird", "pln": ["(: cnet_isa_df78fd13a7 (IsA tinamou game_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tinca is a kind of fish genus", "pln": ["(: cnet_isa_fb72929728 (IsA tinca fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tincture is a kind of medicine", "pln": ["(: cnet_isa_a4cd94a9a7 (IsA tincture medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tincture is a kind of coloring material", "pln": ["(: cnet_isa_c11a6105de (IsA tincture coloring_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tincture of iodine is a kind of antiseptic", "pln": ["(: cnet_isa_0bcbd604cc (IsA tincture_of_iodine antiseptic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tincture of iodine is a kind of tincture", "pln": ["(: cnet_isa_8e02d9fb51 (IsA tincture_of_iodine tincture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tinderbox is a kind of box", "pln": ["(: cnet_isa_a701684167 (IsA tinderbox box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tinderbox is a kind of situation", "pln": ["(: cnet_isa_f3dbf37ce4 (IsA tinderbox situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tine is a kind of prong", "pln": ["(: cnet_isa_c1d56498eb (IsA tine prong) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tine test is a kind of tuberculin test", "pln": ["(: cnet_isa_e916f623ab (IsA tine_test tuberculin_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tinea is a kind of arthropod genus", "pln": ["(: cnet_isa_4fcca16c0c (IsA tinea arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tinea is a kind of fungal infection", "pln": ["(: cnet_isa_c763e23fa9 (IsA tinea fungal_infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tinea barbae is a kind of tinea", "pln": ["(: cnet_isa_42e17ca085 (IsA tinea_barbae tinea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tinea capitis is a kind of tinea", "pln": ["(: cnet_isa_ca536b907c (IsA tinea_capitis tinea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tinea corporis is a kind of tinea", "pln": ["(: cnet_isa_c2925eecd2 (IsA tinea_corporis tinea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tinea cruris is a kind of tinea", "pln": ["(: cnet_isa_b10b634400 (IsA tinea_cruris tinea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tinea pedis is a kind of tinea", "pln": ["(: cnet_isa_64b347bc5e (IsA tinea_pedis tinea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tinea unguium is a kind of tinea", "pln": ["(: cnet_isa_52bc3b8334 (IsA tinea_unguium tinea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tineid is a kind of tineoid", "pln": ["(: cnet_isa_aa546282f8 (IsA tineid tineoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tineidae is a kind of arthropod family", "pln": ["(: cnet_isa_6fa6190011 (IsA tineidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tineoid is a kind of moth", "pln": ["(: cnet_isa_b249381b27 (IsA tineoid moth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tineoidea is a kind of arthropod family", "pln": ["(: cnet_isa_a716ea0e6c (IsA tineoidea arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tineola is a kind of arthropod genus", "pln": ["(: cnet_isa_c9fa757aca (IsA tineola arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tinfoil is a kind of foil", "pln": ["(: cnet_isa_b269460689 (IsA tinfoil foil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ting is a kind of sound", "pln": ["(: cnet_isa_c75d948eb9 (IsA ting sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tingidae is a kind of arthropod family", "pln": ["(: cnet_isa_6c42a9e723 (IsA tingidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tinker is a kind of experimenter", "pln": ["(: cnet_isa_8ae6bed523 (IsA tinker experimenter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tinker is a kind of itinerant", "pln": ["(: cnet_isa_30d365384c (IsA tinker itinerant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tinkerbell is a kind of fictional character", "pln": ["(: cnet_isa_04430284cb (IsA tinkerbell fictional_character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tinkerer is a kind of unskilled person", "pln": ["(: cnet_isa_59ccdbfdfb (IsA tinkerer unskilled_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tinning is a kind of application", "pln": ["(: cnet_isa_7400edceb2 (IsA tinning application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tinnitus is a kind of symptom", "pln": ["(: cnet_isa_e38905df49 (IsA tinnitus symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tinsel is a kind of decoration", "pln": ["(: cnet_isa_824588ca95 (IsA tinsel decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tinsel is a kind of thread", "pln": ["(: cnet_isa_e6eb0310a5 (IsA tinsel thread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tinsmith is a kind of smith", "pln": ["(: cnet_isa_2c3898b0ea (IsA tinsmith smith) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tintack is a kind of tack", "pln": ["(: cnet_isa_fa82ce0e46 (IsA tintack tack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tinter is a kind of hairdresser", "pln": ["(: cnet_isa_67fdd8be23 (IsA tinter hairdresser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tinting is a kind of coloring", "pln": ["(: cnet_isa_0820fb240d (IsA tinting coloring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tinware is a kind of article of commerce", "pln": ["(: cnet_isa_fc109ae51f (IsA tinware article_of_commerce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tip is a kind of guidance", "pln": ["(: cnet_isa_d893cac155 (IsA tip guidance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tip is a kind of end", "pln": ["(: cnet_isa_6a5dc12da4 (IsA tip end) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tip in is a kind of basketball shot", "pln": ["(: cnet_isa_d0b66d5718 (IsA tip_in basketball_shot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tip off is a kind of jump ball", "pln": ["(: cnet_isa_354c65865a (IsA tip_off jump_ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tip off is a kind of information", "pln": ["(: cnet_isa_d3c34e21a0 (IsA tip_off information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tip sheet is a kind of publication", "pln": ["(: cnet_isa_6dc4532c32 (IsA tip_sheet publication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tipper is a kind of donor", "pln": ["(: cnet_isa_9e514d9000 (IsA tipper donor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tippet is a kind of cape", "pln": ["(: cnet_isa_b669434fbd (IsA tippet cape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tippler is a kind of drinker", "pln": ["(: cnet_isa_92c40b62b3 (IsA tippler drinker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tipstaff is a kind of staff", "pln": ["(: cnet_isa_d5e570256e (IsA tipstaff staff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tipster is a kind of adviser", "pln": ["(: cnet_isa_aa80cce4a3 (IsA tipster adviser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tipsy cake is a kind of trifle", "pln": ["(: cnet_isa_35c6786017 (IsA tipsy_cake trifle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tiptoe is a kind of tip", "pln": ["(: cnet_isa_6e43284898 (IsA tiptoe tip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tiptop is a kind of top", "pln": ["(: cnet_isa_f841ac3a32 (IsA tiptop top) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tipu is a kind of tree", "pln": ["(: cnet_isa_b180c6a60d (IsA tipu tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tipuana is a kind of rosid dicot genus", "pln": ["(: cnet_isa_438b02e5cf (IsA tipuana rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tipulidae is a kind of arthropod family", "pln": ["(: cnet_isa_71b4ae3844 (IsA tipulidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tirade is a kind of declamation", "pln": ["(: cnet_isa_f062c1af4f (IsA tirade declamation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tirade is a kind of denunciation", "pln": ["(: cnet_isa_453976eb6a (IsA tirade denunciation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tiramisu is a kind of food", "pln": ["(: cnet_isa_8d4f3d82a6 (IsA tiramisu food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tiramisu is a kind of dessert", "pln": ["(: cnet_isa_e021bec7d0 (IsA tiramisu dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tire is a kind of wheel", "pln": ["(: cnet_isa_d3ca3c205d (IsA tire wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tire is a kind of hoop", "pln": ["(: cnet_isa_a006a1ce3b (IsA tire hoop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tire chain is a kind of chain", "pln": ["(: cnet_isa_faa0f53735 (IsA tire_chain chain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tire iron is a kind of hand tool", "pln": ["(: cnet_isa_3a7ff2243e (IsA tire_iron hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tire iron is a kind of lever", "pln": ["(: cnet_isa_01d21085db (IsA tire_iron lever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tire is a kind of inflatable", "pln": ["(: cnet_isa_dd1b98e23e (IsA tire inflatable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tisane is a kind of herb tea", "pln": ["(: cnet_isa_cc30c8ec2a (IsA tisane herb_tea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tishah b av is a kind of jewish holy day", "pln": ["(: cnet_isa_0075261b69 (IsA tishah_b_av jewish_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tishah b av is a kind of major fast day", "pln": ["(: cnet_isa_6de7ce3874 (IsA tishah_b_av major_fast_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tishri is a kind of jewish calendar month", "pln": ["(: cnet_isa_240b1ff065 (IsA tishri jewish_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tisiphone is a kind of eumenide", "pln": ["(: cnet_isa_e778b88b0a (IsA tisiphone eumenide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tissue is a kind of body part", "pln": ["(: cnet_isa_107adfd73e (IsA tissue body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tissue is a kind of paper", "pln": ["(: cnet_isa_3f0bb9aff6 (IsA tissue paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tissue typing is a kind of diagnostic test", "pln": ["(: cnet_isa_0d4c9fc2b9 (IsA tissue_typing diagnostic_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tit for tat is a kind of return", "pln": ["(: cnet_isa_435215faf8 (IsA tit_for_tat return) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "titania is a kind of fairy", "pln": ["(: cnet_isa_f579f65500 (IsA titania fairy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "titanic is a kind of grand ship", "pln": ["(: cnet_isa_b7fcd1f2d9 (IsA titanic grand_ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "titanic acid is a kind of acid", "pln": ["(: cnet_isa_58c1f4a94d (IsA titanic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "titanium is a kind of metallic element", "pln": ["(: cnet_isa_1adc42bd6c (IsA titanium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "titanium dioxide is a kind of oxide", "pln": ["(: cnet_isa_f91a6c59a2 (IsA titanium_dioxide oxide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "titanium dioxide is a kind of pigment", "pln": ["(: cnet_isa_64cf90f849 (IsA titanium_dioxide pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "titanosaur is a kind of dinosaur", "pln": ["(: cnet_isa_375f90abc1 (IsA titanosaur dinosaur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "titanosauridae is a kind of reptile family", "pln": ["(: cnet_isa_38ca8913f2 (IsA titanosauridae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "titanosaurus is a kind of reptile genus", "pln": ["(: cnet_isa_a1ab2aba0c (IsA titanosaurus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "titer is a kind of concentration", "pln": ["(: cnet_isa_f9e916514d (IsA titer concentration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "titfer is a kind of hat", "pln": ["(: cnet_isa_cfbdcc2b3a (IsA titfer hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tithe is a kind of levy", "pln": ["(: cnet_isa_e4049e4c6c (IsA tithe levy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tithe is a kind of offering", "pln": ["(: cnet_isa_70304532cc (IsA tithe offering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tithe barn is a kind of barn", "pln": ["(: cnet_isa_3037754105 (IsA tithe_barn barn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tither is a kind of payer", "pln": ["(: cnet_isa_29b29c6381 (IsA tither payer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "titi is a kind of new world monkey", "pln": ["(: cnet_isa_47d69b28a6 (IsA titi new_world_monkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "titi is a kind of angiospermous tree", "pln": ["(: cnet_isa_0c463f1287 (IsA titi angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "titillation is a kind of arousal", "pln": ["(: cnet_isa_d02444d0ec (IsA titillation arousal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "titillation is a kind of exhilaration", "pln": ["(: cnet_isa_e51942674e (IsA titillation exhilaration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "titivation is a kind of decoration", "pln": ["(: cnet_isa_28f3d49c03 (IsA titivation decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "title is a kind of legal right", "pln": ["(: cnet_isa_e5603f16c6 (IsA title legal_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "title is a kind of appellation", "pln": ["(: cnet_isa_c487b6c610 (IsA title appellation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "title is a kind of heading", "pln": ["(: cnet_isa_4887416ee8 (IsA title heading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "title is a kind of name", "pln": ["(: cnet_isa_7f4a419787 (IsA title name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "title is a kind of subheading", "pln": ["(: cnet_isa_1256a4af80 (IsA title subheading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "title is a kind of writing", "pln": ["(: cnet_isa_78776a0e6a (IsA title writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "title bar is a kind of label", "pln": ["(: cnet_isa_df63e04f15 (IsA title_bar label) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "title deed is a kind of deed", "pln": ["(: cnet_isa_9d8daf12f9 (IsA title_deed deed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "title page is a kind of page", "pln": ["(: cnet_isa_18c8081b90 (IsA title_page page) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "title role is a kind of character", "pln": ["(: cnet_isa_ca09b26dfa (IsA title_role character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "titmouse is a kind of oscine", "pln": ["(: cnet_isa_a070add8ea (IsA titmouse oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "titration is a kind of volumetric analysis", "pln": ["(: cnet_isa_cec9a52723 (IsA titration volumetric_analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "titrator is a kind of apparatus", "pln": ["(: cnet_isa_2a43039278 (IsA titrator apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "titter is a kind of laugh", "pln": ["(: cnet_isa_6a7dfd95fe (IsA titter laugh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "titterer is a kind of laugher", "pln": ["(: cnet_isa_ff3f88f2f1 (IsA titterer laugher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tiyin is a kind of kazakhstani monetary unit", "pln": ["(: cnet_isa_83b45f8664 (IsA tiyin kazakhstani_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tiyin is a kind of uzbekistani monetary unit", "pln": ["(: cnet_isa_c446a6e496 (IsA tiyin uzbekistani_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tlingit is a kind of na dene", "pln": ["(: cnet_isa_4be7fb3e53 (IsA tlingit na_dene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tlingit is a kind of native american", "pln": ["(: cnet_isa_de398272ed (IsA tlingit native_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tm is a kind of computer code variable", "pln": ["(: cnet_isa_0bdbf9ed8c (IsA tm computer_code_variable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tnt is a kind of explosive compound", "pln": ["(: cnet_isa_6b1bef8b14 (IsA tnt explosive_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toad in hole is a kind of pastry", "pln": ["(: cnet_isa_569474cdd0 (IsA toad_in_hole pastry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toad lily is a kind of indian lettuce", "pln": ["(: cnet_isa_dded37faf8 (IsA toad_lily indian_lettuce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toad rush is a kind of rush", "pln": ["(: cnet_isa_af780a2134 (IsA toad_rush rush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toadfish is a kind of spiny finned fish", "pln": ["(: cnet_isa_e98e6a6f3a (IsA toadfish spiny_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "toadflax is a kind of flower", "pln": ["(: cnet_isa_de4182236a (IsA toadflax flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "toadstool is a kind of agaric", "pln": ["(: cnet_isa_24f8274bec (IsA toadstool agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toast is a kind of bread", "pln": ["(: cnet_isa_9cc452ca6e (IsA toast bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toast is a kind of celebrity", "pln": ["(: cnet_isa_f883d3c846 (IsA toast celebrity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toast mistress is a kind of toastmaster", "pln": ["(: cnet_isa_2999a196dc (IsA toast_mistress toastmaster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toaster is a kind of machine", "pln": ["(: cnet_isa_e7dfdd1db4 (IsA toaster machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "toaster is a kind of kitchen appliance", "pln": ["(: cnet_isa_fbede3a785 (IsA toaster kitchen_appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toaster is a kind of supporter", "pln": ["(: cnet_isa_155f90ae49 (IsA toaster supporter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toaster oven is a kind of kitchen appliance", "pln": ["(: cnet_isa_caa25ad5ba (IsA toaster_oven kitchen_appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toasting is a kind of cooking", "pln": ["(: cnet_isa_15f174c943 (IsA toasting cooking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toasting fork is a kind of fork", "pln": ["(: cnet_isa_dc3f5f233c (IsA toasting_fork fork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toastmaster is a kind of master of ceremony", "pln": ["(: cnet_isa_c6c90376ba (IsA toastmaster master_of_ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toastrack is a kind of rack", "pln": ["(: cnet_isa_f5dba4fcf8 (IsA toastrack rack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tobacco is a kind of drug of abuse", "pln": ["(: cnet_isa_c2be551264 (IsA tobacco drug_of_abuse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tobacco is a kind of plant product", "pln": ["(: cnet_isa_a7abed8964 (IsA tobacco plant_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tobacco is a kind of herb", "pln": ["(: cnet_isa_5cb9c54608 (IsA tobacco herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tobacco hornworm is a kind of caterpillar", "pln": ["(: cnet_isa_216bad3753 (IsA tobacco_hornworm caterpillar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tobacco industry is a kind of industry", "pln": ["(: cnet_isa_eee54de89d (IsA tobacco_industry industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tobacco juice is a kind of saliva", "pln": ["(: cnet_isa_8baff0e7cf (IsA tobacco_juice saliva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tobacco mildew is a kind of downy mildew", "pln": ["(: cnet_isa_9daeafc327 (IsA tobacco_mildew downy_mildew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tobacco mosaic is a kind of mosaic", "pln": ["(: cnet_isa_f829d14fe7 (IsA tobacco_mosaic mosaic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tobacco mosaic virus is a kind of plant virus", "pln": ["(: cnet_isa_2794d0e736 (IsA tobacco_mosaic_virus plant_virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tobacco moth is a kind of pyralid", "pln": ["(: cnet_isa_a9ea3fdfd3 (IsA tobacco_moth pyralid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tobacco pouch is a kind of pouch", "pln": ["(: cnet_isa_03582a81e1 (IsA tobacco_pouch pouch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tobacco shop is a kind of shop", "pln": ["(: cnet_isa_4b160bc33f (IsA tobacco_shop shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tobacco thrip is a kind of thrip", "pln": ["(: cnet_isa_333b1c4992 (IsA tobacco_thrip thrip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tobacconist is a kind of shopkeeper", "pln": ["(: cnet_isa_b4e0a2113d (IsA tobacconist shopkeeper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tobagonian is a kind of west indian", "pln": ["(: cnet_isa_e162b23219 (IsA tobagonian west_indian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toboggan is a kind of sled", "pln": ["(: cnet_isa_014b13a1dd (IsA toboggan sled) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tobogganing is a kind of sledding", "pln": ["(: cnet_isa_602af92806 (IsA tobogganing sledding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tobogganist is a kind of sledder", "pln": ["(: cnet_isa_610af92439 (IsA tobogganist sledder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toby is a kind of mug", "pln": ["(: cnet_isa_80c1279b72 (IsA toby mug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toccata is a kind of musical composition", "pln": ["(: cnet_isa_f125fe702d (IsA toccata musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tocharian is a kind of indo european", "pln": ["(: cnet_isa_0c7ad70f1b (IsA tocharian indo_european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tocsin is a kind of bell", "pln": ["(: cnet_isa_8c3ac1baf5 (IsA tocsin bell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tocsin is a kind of alarm", "pln": ["(: cnet_isa_d2ce813f91 (IsA tocsin alarm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tod is a kind of weight unit", "pln": ["(: cnet_isa_f20abc7e90 (IsA tod weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toda is a kind of south dravidian", "pln": ["(: cnet_isa_59ae287dff (IsA toda south_dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "toda is a kind of dravidian", "pln": ["(: cnet_isa_22836d8ac5 (IsA toda dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "today is a kind of day", "pln": ["(: cnet_isa_6c79c41321 (IsA today day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "today is a kind of present", "pln": ["(: cnet_isa_d54d5c75dc (IsA today present) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toddler is a kind of child", "pln": ["(: cnet_isa_acb645aa47 (IsA toddler child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "todea is a kind of fern genus", "pln": ["(: cnet_isa_38eaf0b289 (IsA todea fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "todidae is a kind of bird family", "pln": ["(: cnet_isa_fcf0733517 (IsA todidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "todus is a kind of bird genus", "pln": ["(: cnet_isa_d272f3c605 (IsA todus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tody is a kind of coraciiform bird", "pln": ["(: cnet_isa_d949ee59ed (IsA tody coraciiform_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toe is a kind of covering", "pln": ["(: cnet_isa_7cc59e8aaf (IsA toe covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "toe is a kind of body part", "pln": ["(: cnet_isa_9282a34147 (IsA toe body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toe is a kind of digit", "pln": ["(: cnet_isa_1914b69836 (IsA toe digit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toe is a kind of extremity", "pln": ["(: cnet_isa_e77fe15101 (IsA toe extremity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toe is a kind of part", "pln": ["(: cnet_isa_58a0c0640e (IsA toe part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toe box is a kind of upper", "pln": ["(: cnet_isa_1506f0125c (IsA toe_box upper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toe crack is a kind of sand crack", "pln": ["(: cnet_isa_cb3be52db4 (IsA toe_crack sand_crack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toe dancing is a kind of dancing", "pln": ["(: cnet_isa_b3416008b9 (IsA toe_dancing dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toe in is a kind of alignment", "pln": ["(: cnet_isa_8a4779820a (IsA toe_in alignment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toea is a kind of papuan monetary unit", "pln": ["(: cnet_isa_0a1c142fa5 (IsA toea papuan_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toecap is a kind of protective covering", "pln": ["(: cnet_isa_406f2f2091 (IsA toecap protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toehold is a kind of wrestling hold", "pln": ["(: cnet_isa_99a92f2668 (IsA toehold wrestling_hold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toehold is a kind of foothold", "pln": ["(: cnet_isa_bd477ea2e9 (IsA toehold foothold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "toehold is a kind of status", "pln": ["(: cnet_isa_3d03698370 (IsA toehold status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toenail is a kind of nail", "pln": ["(: cnet_isa_7dabe88b1e (IsA toenail nail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "toetoe is a kind of reed", "pln": ["(: cnet_isa_6669f31e4e (IsA toetoe reed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toff is a kind of man of mean", "pln": ["(: cnet_isa_6cf07a6d23 (IsA toff man_of_mean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tofieldia is a kind of liliid monocot genus", "pln": ["(: cnet_isa_d24b135135 (IsA tofieldia liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toga is a kind of cloak", "pln": ["(: cnet_isa_7b25ad63ae (IsA toga cloak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toga virilis is a kind of toga", "pln": ["(: cnet_isa_29435e63ad (IsA toga_virilis toga) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "togaviridae is a kind of arbovirus", "pln": ["(: cnet_isa_8b4cd9cc39 (IsA togaviridae arbovirus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "togetherness is a kind of closeness", "pln": ["(: cnet_isa_cab38247d1 (IsA togetherness closeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toggle is a kind of fastener", "pln": ["(: cnet_isa_4c9b3d5dbd (IsA toggle fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toggle is a kind of instruction", "pln": ["(: cnet_isa_568874a2a2 (IsA toggle instruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toggle bolt is a kind of fastener", "pln": ["(: cnet_isa_7a736cae5c (IsA toggle_bolt fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toggle joint is a kind of joint", "pln": ["(: cnet_isa_fc3bd2a888 (IsA toggle_joint joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toggle switch is a kind of switch", "pln": ["(: cnet_isa_93a52d01e5 (IsA toggle_switch switch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "togo franc is a kind of franc", "pln": ["(: cnet_isa_61f794cc98 (IsA togo_franc franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "togolese is a kind of african", "pln": ["(: cnet_isa_beb5f9aa4b (IsA togolese african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tog is a kind of clothing", "pln": ["(: cnet_isa_81ed08a03d (IsA tog clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toiler is a kind of worker", "pln": ["(: cnet_isa_b4ea6f8bf3 (IsA toiler worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toilet is a kind of dressing", "pln": ["(: cnet_isa_eca7c8bc63 (IsA toilet dressing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toilet is a kind of plumbing fixture", "pln": ["(: cnet_isa_9176cbab99 (IsA toilet plumbing_fixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "toilet is a kind of room", "pln": ["(: cnet_isa_423dc35f10 (IsA toilet room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toilet bag is a kind of bag", "pln": ["(: cnet_isa_c5611d21f2 (IsA toilet_bag bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toilet bowl is a kind of bowl", "pln": ["(: cnet_isa_d1eec140c1 (IsA toilet_bowl bowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toilet kit is a kind of kit", "pln": ["(: cnet_isa_cd9c618302 (IsA toilet_kit kit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toilet powder is a kind of powder", "pln": ["(: cnet_isa_4c1a412389 (IsA toilet_powder powder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toilet roll is a kind of toilet tissue", "pln": ["(: cnet_isa_2fd51a2521 (IsA toilet_roll toilet_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toilet seat is a kind of seat", "pln": ["(: cnet_isa_ea661cf140 (IsA toilet_seat seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toilet soap is a kind of soap", "pln": ["(: cnet_isa_237768b614 (IsA toilet_soap soap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toilet tissue is a kind of tissue", "pln": ["(: cnet_isa_5549d35cc4 (IsA toilet_tissue tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toilet training is a kind of training", "pln": ["(: cnet_isa_461616a294 (IsA toilet_training training) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toilet water is a kind of perfume", "pln": ["(: cnet_isa_ed2f347e22 (IsA toilet_water perfume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toiletry is a kind of instrumentality", "pln": ["(: cnet_isa_368cff7790 (IsA toiletry instrumentality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toilet is a kind of unsanitary", "pln": ["(: cnet_isa_a01f2091a6 (IsA toilet unsanitary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tokamak is a kind of chamber", "pln": ["(: cnet_isa_f3c763172a (IsA tokamak chamber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tokay is a kind of vinifera grape", "pln": ["(: cnet_isa_fc47ca35d5 (IsA tokay vinifera_grape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tokay is a kind of wine", "pln": ["(: cnet_isa_40490d22eb (IsA tokay wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toke is a kind of puff", "pln": ["(: cnet_isa_e632d82bcf (IsA toke puff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "token is a kind of symbol", "pln": ["(: cnet_isa_988f51253d (IsA token symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "token is a kind of disk", "pln": ["(: cnet_isa_8d5bcea453 (IsA token disk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "token is a kind of sign", "pln": ["(: cnet_isa_bf532901ae (IsA token sign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "token economy is a kind of behavior therapy", "pln": ["(: cnet_isa_147ad273d1 (IsA token_economy behavior_therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "token money is a kind of money", "pln": ["(: cnet_isa_a700cb11e1 (IsA token_money money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "token payment is a kind of payment", "pln": ["(: cnet_isa_8e22af9b69 (IsA token_payment payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tolazoline is a kind of vasodilator", "pln": ["(: cnet_isa_ed94e999da (IsA tolazoline vasodilator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tole is a kind of metalware", "pln": ["(: cnet_isa_b20322e903 (IsA tole metalware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tolerance is a kind of allowance", "pln": ["(: cnet_isa_6437996cf5 (IsA tolerance allowance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tolerance is a kind of endurance", "pln": ["(: cnet_isa_7af03c6ca5 (IsA tolerance endurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tolerance is a kind of attitude", "pln": ["(: cnet_isa_2f67e59181 (IsA tolerance attitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toleration is a kind of permissiveness", "pln": ["(: cnet_isa_5e398ef5a5 (IsA toleration permissiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toleration is a kind of license", "pln": ["(: cnet_isa_578475e60b (IsA toleration license) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toll is a kind of fee", "pln": ["(: cnet_isa_1fa3f62938 (IsA toll fee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toll bridge is a kind of bridge", "pln": ["(: cnet_isa_ac9b97c1a7 (IsA toll_bridge bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toll call is a kind of long distance", "pln": ["(: cnet_isa_81d2795f06 (IsA toll_call long_distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toll line is a kind of telephone line", "pln": ["(: cnet_isa_d2ea8c02c8 (IsA toll_line telephone_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toll plaza is a kind of tract", "pln": ["(: cnet_isa_365b030c8d (IsA toll_plaza tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tollbooth is a kind of booth", "pln": ["(: cnet_isa_e07d94f440 (IsA tollbooth booth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toller is a kind of signaler", "pln": ["(: cnet_isa_6317de06f7 (IsA toller signaler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tollgate is a kind of gate", "pln": ["(: cnet_isa_55b2472a0f (IsA tollgate gate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tollkeeper is a kind of employee", "pln": ["(: cnet_isa_7981de3b99 (IsA tollkeeper employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tolmiea is a kind of rosid dicot genus", "pln": ["(: cnet_isa_9ffc8e538c (IsA tolmiea rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toltec is a kind of nahuatl", "pln": ["(: cnet_isa_6bee622520 (IsA toltec nahuatl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tolu is a kind of balsam", "pln": ["(: cnet_isa_bc089577bb (IsA tolu balsam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tolu tree is a kind of tree", "pln": ["(: cnet_isa_28f02b97c2 (IsA tolu_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toluene is a kind of alkylbenzene", "pln": ["(: cnet_isa_e41e0cfaa9 (IsA toluene alkylbenzene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toluene is a kind of solvent", "pln": ["(: cnet_isa_36d8bb6a21 (IsA toluene solvent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toluic acid is a kind of acid", "pln": ["(: cnet_isa_ea76c51740 (IsA toluic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tolypeute is a kind of mammal genus", "pln": ["(: cnet_isa_83ff79a68f (IsA tolypeute mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tom is a kind of domestic cat", "pln": ["(: cnet_isa_d6149402ed (IsA tom domestic_cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tom and jerry is a kind of hot toddy", "pln": ["(: cnet_isa_b92e583b4a (IsA tom_and_jerry hot_toddy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tom thumb is a kind of small person", "pln": ["(: cnet_isa_6dc4561f6c (IsA tom_thumb small_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tomahawk is a kind of weapon", "pln": ["(: cnet_isa_cb3563d273 (IsA tomahawk weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tomalley is a kind of liver", "pln": ["(: cnet_isa_06c9eb9d42 (IsA tomalley liver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tomatillo is a kind of solanaceous vegetable", "pln": ["(: cnet_isa_b7d8e7acd9 (IsA tomatillo solanaceous_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tomatillo is a kind of ground cherry", "pln": ["(: cnet_isa_0ec460f8d6 (IsA tomatillo ground_cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tomato is a kind of fruit not vegetable", "pln": ["(: cnet_isa_ca949f5749 (IsA tomato fruit_not_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tomato is a kind of solanaceous vegetable", "pln": ["(: cnet_isa_a421ac0b81 (IsA tomato solanaceous_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tomato is a kind of herb", "pln": ["(: cnet_isa_3f8b542e72 (IsA tomato herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tomato blight is a kind of blight", "pln": ["(: cnet_isa_953bcff4b0 (IsA tomato_blight blight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tomato concentrate is a kind of concentrate", "pln": ["(: cnet_isa_a9a2d3d6ea (IsA tomato_concentrate concentrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tomato hornworm is a kind of caterpillar", "pln": ["(: cnet_isa_cf562ea0b0 (IsA tomato_hornworm caterpillar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tomato juice is a kind of juice", "pln": ["(: cnet_isa_431a72c00c (IsA tomato_juice juice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tomato paste is a kind of ingredient", "pln": ["(: cnet_isa_f801451a19 (IsA tomato_paste ingredient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tomato sauce is a kind of spaghetti sauce", "pln": ["(: cnet_isa_6c59e91d57 (IsA tomato_sauce spaghetti_sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tomato streak is a kind of yellow spot", "pln": ["(: cnet_isa_8953c4971c (IsA tomato_streak yellow_spot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tomatoe is a kind of vegetable", "pln": ["(: cnet_isa_91d040f3ab (IsA tomatoe vegetable) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tombac is a kind of alloy", "pln": ["(: cnet_isa_1e86754250 (IsA tombac alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tombola is a kind of lottery", "pln": ["(: cnet_isa_e0f1dfae29 (IsA tombola lottery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tomboy is a kind of girl", "pln": ["(: cnet_isa_74a19af95d (IsA tomboy girl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tome is a kind of book", "pln": ["(: cnet_isa_ac3fb2eb97 (IsA tome book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tomentum is a kind of capillary", "pln": ["(: cnet_isa_34c9f55f31 (IsA tomentum capillary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tomistoma is a kind of reptile genus", "pln": ["(: cnet_isa_aa65d128d2 (IsA tomistoma reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tommy gun is a kind of submachine gun", "pln": ["(: cnet_isa_eb2bccf1cd (IsA tommy_gun submachine_gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tomograph is a kind of x ray machine", "pln": ["(: cnet_isa_559c3e5f50 (IsA tomograph x_ray_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tomorrow is a kind of day", "pln": ["(: cnet_isa_9b03066e40 (IsA tomorrow day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tomorrow is a kind of future", "pln": ["(: cnet_isa_ad49748a71 (IsA tomorrow future) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tomtate is a kind of grunt", "pln": ["(: cnet_isa_18f420af84 (IsA tomtate grunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tone is a kind of quality", "pln": ["(: cnet_isa_ee1472bb09 (IsA tone quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tone is a kind of sound", "pln": ["(: cnet_isa_0822ec86f1 (IsA tone sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tone is a kind of interval", "pln": ["(: cnet_isa_8c1f6704d8 (IsA tone interval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tone is a kind of manner of speaking", "pln": ["(: cnet_isa_f2c0a81a25 (IsA tone manner_of_speaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tone is a kind of pitch", "pln": ["(: cnet_isa_ddf5eab236 (IsA tone pitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tone arm is a kind of mechanical device", "pln": ["(: cnet_isa_b32634fcd1 (IsA tone_arm mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tone deafness is a kind of deafness", "pln": ["(: cnet_isa_830ea6e20f (IsA tone_deafness deafness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tone language is a kind of natural language", "pln": ["(: cnet_isa_cf82726adf (IsA tone_language natural_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tone system is a kind of phonological system", "pln": ["(: cnet_isa_e7b9ef3592 (IsA tone_system phonological_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "toner is a kind of lotion", "pln": ["(: cnet_isa_1435886ae3 (IsA toner lotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "toner is a kind of material", "pln": ["(: cnet_isa_77cb1df489 (IsA toner material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toner is a kind of solution", "pln": ["(: cnet_isa_db08f96cc4 (IsA toner solution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tonga is a kind of bantu", "pln": ["(: cnet_isa_e11a26a483 (IsA tonga bantu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tongan is a kind of malayo polynesian", "pln": ["(: cnet_isa_36f0bef85f (IsA tongan malayo_polynesian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tongan is a kind of polynesian", "pln": ["(: cnet_isa_6709fbd7bd (IsA tongan polynesian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tongan monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_850eeaa90a (IsA tongan_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tong is a kind of device", "pln": ["(: cnet_isa_ff0a4a159c (IsA tong device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tongue is a kind of muscle", "pln": ["(: cnet_isa_2ff84a2998 (IsA tongue muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tongue is a kind of flap", "pln": ["(: cnet_isa_9664c9a6d4 (IsA tongue flap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tongue is a kind of articulator", "pln": ["(: cnet_isa_65e05f4368 (IsA tongue articulator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tongue is a kind of organ", "pln": ["(: cnet_isa_e87845267f (IsA tongue organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tongue is a kind of manner of speaking", "pln": ["(: cnet_isa_c4d9c88f22 (IsA tongue manner_of_speaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tongue is a kind of variety meat", "pln": ["(: cnet_isa_75d9574e11 (IsA tongue variety_meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tongue is a kind of projection", "pln": ["(: cnet_isa_77f8829f30 (IsA tongue projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tongue and groove joint is a kind of mortise joint", "pln": ["(: cnet_isa_27729633d9 (IsA tongue_and_groove_joint mortise_joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tongue depressor is a kind of depressor", "pln": ["(: cnet_isa_348ad96e6e (IsA tongue_depressor depressor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tongue tie is a kind of birth defect", "pln": ["(: cnet_isa_d314ae1695 (IsA tongue_tie birth_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tongue twister is a kind of saying", "pln": ["(: cnet_isa_fc34b05b94 (IsA tongue_twister saying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tongue worm is a kind of arthropod", "pln": ["(: cnet_isa_dd2cae2879 (IsA tongue_worm arthropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tonguefish is a kind of flatfish", "pln": ["(: cnet_isa_0545f0e8b0 (IsA tonguefish flatfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tongueflower is a kind of orchid", "pln": ["(: cnet_isa_886011f08a (IsA tongueflower orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tongueless frog is a kind of frog", "pln": ["(: cnet_isa_0f978931a7 (IsA tongueless_frog frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tonic is a kind of medicine", "pln": ["(: cnet_isa_22ca502802 (IsA tonic medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tonic is a kind of soft drink", "pln": ["(: cnet_isa_72a343b0ed (IsA tonic soft_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tonic is a kind of note", "pln": ["(: cnet_isa_72f726f142 (IsA tonic note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tonic accent is a kind of stress", "pln": ["(: cnet_isa_d0eefa5854 (IsA tonic_accent stress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tonic epilepsy is a kind of epilepsy", "pln": ["(: cnet_isa_05799468c5 (IsA tonic_epilepsy epilepsy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tonic key is a kind of key", "pln": ["(: cnet_isa_3e97173d19 (IsA tonic_key key) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tonic solfa is a kind of solmization", "pln": ["(: cnet_isa_313d6c551e (IsA tonic_solfa solmization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tonicity is a kind of tension", "pln": ["(: cnet_isa_695b3c9f5a (IsA tonicity tension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tonight is a kind of present", "pln": ["(: cnet_isa_b07b87e4ba (IsA tonight present) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tonka bean is a kind of bean", "pln": ["(: cnet_isa_bc240d57f0 (IsA tonka_bean bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tonka bean is a kind of bean tree", "pln": ["(: cnet_isa_78510ac994 (IsA tonka_bean bean_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tonnage is a kind of duty", "pln": ["(: cnet_isa_85b6e9284a (IsA tonnage duty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tonometer is a kind of measuring instrument", "pln": ["(: cnet_isa_f1742dd7a3 (IsA tonometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tonometry is a kind of measurement", "pln": ["(: cnet_isa_83789e9447 (IsA tonometry measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ton is a kind of large indefinite quantity", "pln": ["(: cnet_isa_06bb995679 (IsA ton large_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tonsil is a kind of lymphatic tissue", "pln": ["(: cnet_isa_cb4617be3b (IsA tonsil lymphatic_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tonsillectomy is a kind of ablation", "pln": ["(: cnet_isa_663914daf8 (IsA tonsillectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tonsillitis is a kind of inflammation", "pln": ["(: cnet_isa_e021d0aae5 (IsA tonsillitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tonsure is a kind of shave", "pln": ["(: cnet_isa_0e113d0af8 (IsA tonsure shave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tonsure is a kind of pate", "pln": ["(: cnet_isa_ae12c563c8 (IsA tonsure pate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tontine is a kind of annuity", "pln": ["(: cnet_isa_56a4ddc00c (IsA tontine annuity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tontine is a kind of life insurance", "pln": ["(: cnet_isa_9427ee78c8 (IsA tontine life_insurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tool is a kind of object", "pln": ["(: cnet_isa_f7b8aec0ab (IsA tool object) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tool is a kind of implement", "pln": ["(: cnet_isa_7cfa8ffcb6 (IsA tool implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tool and die work is a kind of trade", "pln": ["(: cnet_isa_523d24c12b (IsA tool_and_die_work trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tool bag is a kind of bag", "pln": ["(: cnet_isa_578c315cf6 (IsA tool_bag bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tool steel is a kind of alloy steel", "pln": ["(: cnet_isa_17ddfff018 (IsA tool_steel alloy_steel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toolbox is a kind of chest", "pln": ["(: cnet_isa_53ca15b05c (IsA toolbox chest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "toolhouse is a kind of shed", "pln": ["(: cnet_isa_8c254c25b3 (IsA toolhouse shed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toolmaker is a kind of maker", "pln": ["(: cnet_isa_c643905949 (IsA toolmaker maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toona is a kind of rosid dicot genus", "pln": ["(: cnet_isa_f46447d5b6 (IsA toona rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toot is a kind of sound", "pln": ["(: cnet_isa_bcdd56e2ba (IsA toot sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tooth is a kind of mean", "pln": ["(: cnet_isa_a95adb149c (IsA tooth mean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tooth is a kind of structure", "pln": ["(: cnet_isa_995933921f (IsA tooth structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tooth is a kind of projection", "pln": ["(: cnet_isa_a33804f1ad (IsA tooth projection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tooth is a kind of bone", "pln": ["(: cnet_isa_7359a64836 (IsA tooth bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tooth fairy is a kind of fairy", "pln": ["(: cnet_isa_8d78874ac3 (IsA tooth_fairy fairy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tooth fungus is a kind of fungus", "pln": ["(: cnet_isa_b217a15e0d (IsA tooth_fungus fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tooth powder is a kind of dentifrice", "pln": ["(: cnet_isa_ee0c455f2c (IsA tooth_powder dentifrice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tooth shell is a kind of scaphopod", "pln": ["(: cnet_isa_d3b5b01438 (IsA tooth_shell scaphopod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tooth socket is a kind of socket", "pln": ["(: cnet_isa_cfb168351f (IsA tooth_socket socket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "toothache is a kind of ache", "pln": ["(: cnet_isa_ab88905358 (IsA toothache ache) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toothache tree is a kind of prickly ash", "pln": ["(: cnet_isa_9cd5e1bcc2 (IsA toothache_tree prickly_ash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toothbrush is a kind of brush", "pln": ["(: cnet_isa_bc43047564 (IsA toothbrush brush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toothbrush is a kind of toiletry", "pln": ["(: cnet_isa_e72bae7d0d (IsA toothbrush toiletry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toothbrush tree is a kind of fruit tree", "pln": ["(: cnet_isa_b123bbe269 (IsA toothbrush_tree fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toothed spurge is a kind of spurge", "pln": ["(: cnet_isa_76db4b757f (IsA toothed_spurge spurge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toothed whale is a kind of whale", "pln": ["(: cnet_isa_e56c39a80b (IsA toothed_whale whale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toothpaste is a kind of dentifrice", "pln": ["(: cnet_isa_1c78aeba5b (IsA toothpaste dentifrice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toothpick is a kind of pick", "pln": ["(: cnet_isa_ab6574c836 (IsA toothpick pick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toothpick is a kind of strip", "pln": ["(: cnet_isa_ef4e2b16ff (IsA toothpick strip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tootle is a kind of sound", "pln": ["(: cnet_isa_c7d460454e (IsA tootle sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "top is a kind of covering", "pln": ["(: cnet_isa_980590204c (IsA top covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "top is a kind of platform", "pln": ["(: cnet_isa_c8f955b6d5 (IsA top platform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "top is a kind of plaything", "pln": ["(: cnet_isa_dd26f08b9e (IsA top plaything) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "top is a kind of woman s clothing", "pln": ["(: cnet_isa_2c6b664d12 (IsA top woman_s_clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "top is a kind of intensity", "pln": ["(: cnet_isa_d4c108244e (IsA top intensity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "top is a kind of region", "pln": ["(: cnet_isa_6a4acc7a79 (IsA top region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "top is a kind of side", "pln": ["(: cnet_isa_6017295692 (IsA top side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "top is a kind of turn", "pln": ["(: cnet_isa_703c2f37ae (IsA top turn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "top banana is a kind of comedian", "pln": ["(: cnet_isa_d5a15b693b (IsA top_banana comedian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "top billing is a kind of ad", "pln": ["(: cnet_isa_23dd3f0c77 (IsA top_billing ad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "top brass is a kind of administration", "pln": ["(: cnet_isa_e81753742e (IsA top_brass administration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "top dressing is a kind of fertilization", "pln": ["(: cnet_isa_80abd27896 (IsA top_dressing fertilization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "top fermentation is a kind of zymosis", "pln": ["(: cnet_isa_b37841a867 (IsA top_fermentation zymosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "top fermenting yeast is a kind of brewer s yeast", "pln": ["(: cnet_isa_4188b20e83 (IsA top_fermenting_yeast brewer_s_yeast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "top lift is a kind of lift", "pln": ["(: cnet_isa_1735a3f02d (IsA top_lift lift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "top of house is a kind of roof", "pln": ["(: cnet_isa_8503770696 (IsA top_of_house roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "top of line is a kind of merchandise", "pln": ["(: cnet_isa_0a31497c66 (IsA top_of_line merchandise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "top quark is a kind of quark", "pln": ["(: cnet_isa_4e10a5c0d5 (IsA top_quark quark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "top round is a kind of roast", "pln": ["(: cnet_isa_6374af0a71 (IsA top_round roast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "top up is a kind of indefinite quantity", "pln": ["(: cnet_isa_4f7ac86afb (IsA top_up indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "topaz is a kind of mineral", "pln": ["(: cnet_isa_27b6439e5c (IsA topaz mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "topaz is a kind of quartz", "pln": ["(: cnet_isa_acbb54bda5 (IsA topaz quartz) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "topaz is a kind of transparent gem", "pln": ["(: cnet_isa_18a54dec69 (IsA topaz transparent_gem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "topgallant is a kind of sail", "pln": ["(: cnet_isa_d1da787563 (IsA topgallant sail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "topgallant is a kind of topmast", "pln": ["(: cnet_isa_d1e99e88fc (IsA topgallant topmast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tophus is a kind of urate", "pln": ["(: cnet_isa_9e63cc2de1 (IsA tophus urate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "topiary is a kind of art", "pln": ["(: cnet_isa_d57a0cb712 (IsA topiary art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "topiary is a kind of garden", "pln": ["(: cnet_isa_6767ab6e51 (IsA topiary garden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "topic is a kind of content", "pln": ["(: cnet_isa_dc8cc26d79 (IsA topic content) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "topic sentence is a kind of sentence", "pln": ["(: cnet_isa_373a332f30 (IsA topic_sentence sentence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "topical anesthesia is a kind of anesthesia", "pln": ["(: cnet_isa_f46e727939 (IsA topical_anesthesia anesthesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "topical prostaglandin eyedrop is a kind of eye drop", "pln": ["(: cnet_isa_78ff7f8235 (IsA topical_prostaglandin_eyedrop eye_drop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "topicality is a kind of interest", "pln": ["(: cnet_isa_299371b37c (IsA topicality interest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "topicalization is a kind of emphasis", "pln": ["(: cnet_isa_ca6f5e18ca (IsA topicalization emphasis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "topknot is a kind of crest", "pln": ["(: cnet_isa_f0f0dd7335 (IsA topknot crest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "topknot is a kind of headdress", "pln": ["(: cnet_isa_cab54ed085 (IsA topknot headdress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "topmast is a kind of mast", "pln": ["(: cnet_isa_0bb3acbc3e (IsA topmast mast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "topminnow is a kind of cypriniform fish", "pln": ["(: cnet_isa_1855aaeec2 (IsA topminnow cypriniform_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "topognosia is a kind of cutaneous sensation", "pln": ["(: cnet_isa_2dc313d269 (IsA topognosia cutaneous_sensation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "topographic point is a kind of point", "pln": ["(: cnet_isa_22de051d3a (IsA topographic_point point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "topography is a kind of shape", "pln": ["(: cnet_isa_a73bec050c (IsA topography shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "topography is a kind of geography", "pln": ["(: cnet_isa_24c2490e8a (IsA topography geography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "topolatry is a kind of worship", "pln": ["(: cnet_isa_6cc4405d1f (IsA topolatry worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "topology is a kind of math", "pln": ["(: cnet_isa_627bf1dc6b (IsA topology math) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "topology is a kind of configuration", "pln": ["(: cnet_isa_cd3a8061c3 (IsA topology configuration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "topology is a kind of topography", "pln": ["(: cnet_isa_9a5f5c5706 (IsA topology topography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "topology is a kind of pure mathematic", "pln": ["(: cnet_isa_268a8b072c (IsA topology pure_mathematic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toponymy is a kind of lexicology", "pln": ["(: cnet_isa_9b038d4963 (IsA toponymy lexicology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toponymy is a kind of terminology", "pln": ["(: cnet_isa_dc0c05100f (IsA toponymy terminology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "topo is a kind of theme", "pln": ["(: cnet_isa_3f759fd7ac (IsA topo theme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "topper is a kind of coat", "pln": ["(: cnet_isa_10e79aed6b (IsA topper coat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "topper is a kind of wit", "pln": ["(: cnet_isa_5543dac34b (IsA topper wit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "topper is a kind of worker", "pln": ["(: cnet_isa_d378e595f1 (IsA topper worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "topping is a kind of garnish", "pln": ["(: cnet_isa_682bbbceb8 (IsA topping garnish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "topsail is a kind of sail", "pln": ["(: cnet_isa_56a3410766 (IsA topsail sail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "topside is a kind of weather deck", "pln": ["(: cnet_isa_e5819d64ad (IsA topside weather_deck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "topsoil is a kind of soil", "pln": ["(: cnet_isa_5d7e0559bc (IsA topsoil soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "topspin is a kind of spin", "pln": ["(: cnet_isa_363058dde7 (IsA topspin spin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toque is a kind of hat", "pln": ["(: cnet_isa_a267cb1710 (IsA toque hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tor is a kind of hill", "pln": ["(: cnet_isa_a73b59ff5f (IsA tor hill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tor is a kind of rock", "pln": ["(: cnet_isa_e049d45d2c (IsA tor rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torah is a kind of scroll", "pln": ["(: cnet_isa_34ba8f2a25 (IsA torah scroll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torch is a kind of light", "pln": ["(: cnet_isa_c0b55cd3a1 (IsA torch light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torch race is a kind of relay", "pln": ["(: cnet_isa_ed58eb5c3b (IsA torch_race relay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torch singer is a kind of singer", "pln": ["(: cnet_isa_76ea8cdbed (IsA torch_singer singer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torch song is a kind of song", "pln": ["(: cnet_isa_98113fb3f2 (IsA torch_song song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torchbearer is a kind of leader", "pln": ["(: cnet_isa_6ac88effbd (IsA torchbearer leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torchlight is a kind of light", "pln": ["(: cnet_isa_ac746cad44 (IsA torchlight light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torero is a kind of bullfighter", "pln": ["(: cnet_isa_bb769a1a8d (IsA torero bullfighter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tormenter is a kind of flat", "pln": ["(: cnet_isa_6d0b39f1c2 (IsA tormenter flat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tormentor is a kind of oppressor", "pln": ["(: cnet_isa_a4c6568505 (IsA tormentor oppressor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tornado is a kind of powerful force of nature", "pln": ["(: cnet_isa_c8aea25c6a (IsA tornado powerful_force_of_nature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tornado is a kind of weather", "pln": ["(: cnet_isa_11687b2767 (IsA tornado weather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tornado is a kind of cyclone", "pln": ["(: cnet_isa_cd7e2736f4 (IsA tornado cyclone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tornado is a kind of form of weather", "pln": ["(: cnet_isa_3fe8411be8 (IsA tornado form_of_weather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "toroid is a kind of solid", "pln": ["(: cnet_isa_0dbb641f86 (IsA toroid solid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toronto is a kind of city", "pln": ["(: cnet_isa_6a16ff7e22 (IsA toronto city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toronto is a kind of in canada", "pln": ["(: cnet_isa_c74ed4b471 (IsA toronto in_canada) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torpedinidae is a kind of fish family", "pln": ["(: cnet_isa_5cc91545c5 (IsA torpedinidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torpediniforme is a kind of animal order", "pln": ["(: cnet_isa_2dba9bd8cf (IsA torpediniforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torpedo is a kind of alarm", "pln": ["(: cnet_isa_9fc51f43c4 (IsA torpedo alarm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torpedo is a kind of armament", "pln": ["(: cnet_isa_32e39a0d70 (IsA torpedo armament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torpedo is a kind of explosive device", "pln": ["(: cnet_isa_4794f98b76 (IsA torpedo explosive_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torpedo is a kind of firework", "pln": ["(: cnet_isa_68b8e73c5c (IsA torpedo firework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torpedo boat is a kind of warship", "pln": ["(: cnet_isa_ff3a23c02e (IsA torpedo_boat warship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torpedo boat destroyer is a kind of destroyer", "pln": ["(: cnet_isa_0c40633c2b (IsA torpedo_boat_destroyer destroyer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "torpedo tube is a kind of tube", "pln": ["(: cnet_isa_24614dc046 (IsA torpedo_tube tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torpor is a kind of physiological state", "pln": ["(: cnet_isa_95625e545f (IsA torpor physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torque converter is a kind of converter", "pln": ["(: cnet_isa_37e8afd325 (IsA torque_converter converter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torque wrench is a kind of wrench", "pln": ["(: cnet_isa_90ef5aaf7b (IsA torque_wrench wrench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torr is a kind of pressure unit", "pln": ["(: cnet_isa_6ad8836549 (IsA torr pressure_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torrent is a kind of current", "pln": ["(: cnet_isa_4027ed7ccd (IsA torrent current) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torrey pine is a kind of pine", "pln": ["(: cnet_isa_94a4fef6b8 (IsA torrey_pine pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torreya is a kind of gymnosperm genus", "pln": ["(: cnet_isa_da6660e6e3 (IsA torreya gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torridity is a kind of hotness", "pln": ["(: cnet_isa_60e5450c8f (IsA torridity hotness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torsion is a kind of force", "pln": ["(: cnet_isa_ac1ac3952b (IsA torsion force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torsion balance is a kind of measuring instrument", "pln": ["(: cnet_isa_e98facddbf (IsA torsion_balance measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torso is a kind of body part", "pln": ["(: cnet_isa_f6a7e3e1f3 (IsA torso body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tort is a kind of wrongdoing", "pln": ["(: cnet_isa_47f060bbad (IsA tort wrongdoing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tort feasor is a kind of party", "pln": ["(: cnet_isa_387005ab4a (IsA tort_feasor party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torte is a kind of cake", "pln": ["(: cnet_isa_4ba641ecee (IsA torte cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tortellini is a kind of pasta", "pln": ["(: cnet_isa_d0ab4cd53e (IsA tortellini pasta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torticollis is a kind of abnormality", "pln": ["(: cnet_isa_39645de244 (IsA torticollis abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tortilla is a kind of pancake", "pln": ["(: cnet_isa_2c8edfa468 (IsA tortilla pancake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tortilla chip is a kind of corn chip", "pln": ["(: cnet_isa_4228344318 (IsA tortilla_chip corn_chip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tortoise is a kind of turtle", "pln": ["(: cnet_isa_9ebf8426fd (IsA tortoise turtle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tortoiseshell is a kind of domestic cat", "pln": ["(: cnet_isa_1e4a0df53f (IsA tortoiseshell domestic_cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tortoiseshell is a kind of nymphalid", "pln": ["(: cnet_isa_fda3e147da (IsA tortoiseshell nymphalid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tortoiseshell is a kind of horn", "pln": ["(: cnet_isa_3ca80669f3 (IsA tortoiseshell horn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tortricid is a kind of moth", "pln": ["(: cnet_isa_abeeac3537 (IsA tortricid moth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tortricidae is a kind of arthropod family", "pln": ["(: cnet_isa_9d66298ab6 (IsA tortricidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tortuosity is a kind of distorted shape", "pln": ["(: cnet_isa_c78cbf9800 (IsA tortuosity distorted_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torture is a kind of persecution", "pln": ["(: cnet_isa_aef40b61c6 (IsA torture persecution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torture is a kind of pain", "pln": ["(: cnet_isa_b474d59a8e (IsA torture pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "torture chamber is a kind of room", "pln": ["(: cnet_isa_055ebde088 (IsA torture_chamber room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torturer is a kind of oppressor", "pln": ["(: cnet_isa_422aaf270b (IsA torturer oppressor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torus is a kind of molding", "pln": ["(: cnet_isa_ce31a3ed7f (IsA torus molding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "torus is a kind of round shape", "pln": ["(: cnet_isa_d6766b9ed4 (IsA torus round_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tory is a kind of american", "pln": ["(: cnet_isa_0b32e96e38 (IsA tory american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tory is a kind of englishman", "pln": ["(: cnet_isa_27261f708a (IsA tory englishman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tory is a kind of rightist", "pln": ["(: cnet_isa_bb0bd5a1a6 (IsA tory rightist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tosk is a kind of albanian", "pln": ["(: cnet_isa_c5125da1ba (IsA tosk albanian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toss is a kind of motion", "pln": ["(: cnet_isa_47d7db2c84 (IsA toss motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tossed salad is a kind of salad", "pln": ["(: cnet_isa_36d63d255c (IsA tossed_salad salad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tosser is a kind of masturbator", "pln": ["(: cnet_isa_6e0d216ddb (IsA tosser masturbator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tosser is a kind of thrower", "pln": ["(: cnet_isa_6fc7134fbc (IsA tosser thrower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tossup is a kind of luck", "pln": ["(: cnet_isa_325270fafe (IsA tossup luck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tostada is a kind of dish", "pln": ["(: cnet_isa_d041bbdaa2 (IsA tostada dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tostada is a kind of tortilla", "pln": ["(: cnet_isa_e0ea1d2ad5 (IsA tostada tortilla) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tot is a kind of small indefinite quantity", "pln": ["(: cnet_isa_4d4cf04505 (IsA tot small_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "total darkness is a kind of dark", "pln": ["(: cnet_isa_9c66fec175 (IsA total_darkness dark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "total depravity is a kind of theological doctrine", "pln": ["(: cnet_isa_56a4b92af6 (IsA total_depravity theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "total eclipse is a kind of eclipse", "pln": ["(: cnet_isa_178976918c (IsA total_eclipse eclipse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "total hysterectomy is a kind of hysterectomy", "pln": ["(: cnet_isa_b04db7e93d (IsA total_hysterectomy hysterectomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "total parenteral nutrition is a kind of feeding", "pln": ["(: cnet_isa_bcf09b0c18 (IsA total_parenteral_nutrition feeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "totalitarian is a kind of disciple", "pln": ["(: cnet_isa_c47345f56b (IsA totalitarian disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "totalitation regime is a kind of government", "pln": ["(: cnet_isa_7c3290cfaa (IsA totalitation_regime government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "totality is a kind of generality", "pln": ["(: cnet_isa_a0a0dce57c (IsA totality generality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "totara is a kind of conifer", "pln": ["(: cnet_isa_c55dfa9a68 (IsA totara conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "totem is a kind of emblem", "pln": ["(: cnet_isa_33b95b27af (IsA totem emblem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "totem is a kind of kin", "pln": ["(: cnet_isa_272d7b626a (IsA totem kin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "totem pole is a kind of column", "pln": ["(: cnet_isa_d4df1bbf69 (IsA totem_pole column) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "totem pole is a kind of emblem", "pln": ["(: cnet_isa_c504afee14 (IsA totem_pole emblem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "totemism is a kind of belief", "pln": ["(: cnet_isa_866678c355 (IsA totemism belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "totemist is a kind of person", "pln": ["(: cnet_isa_1df0d58c8e (IsA totemist person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "totipotency is a kind of ability", "pln": ["(: cnet_isa_9a6077238e (IsA totipotency ability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toucan is a kind of bird", "pln": ["(: cnet_isa_d1c3b46646 (IsA toucan bird) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toucan is a kind of piciform bird", "pln": ["(: cnet_isa_80dc69195d (IsA toucan piciform_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toucanet is a kind of toucan", "pln": ["(: cnet_isa_964aed504b (IsA toucanet toucan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "touch is a kind of act", "pln": ["(: cnet_isa_d54973acfc (IsA touch act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "touch is a kind of manner", "pln": ["(: cnet_isa_aa60210940 (IsA touch manner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "touch is a kind of tactile property", "pln": ["(: cnet_isa_17e85dc897 (IsA touch tactile_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "touch is a kind of adeptness", "pln": ["(: cnet_isa_60af5e6aea (IsA touch adeptness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "touch is a kind of exteroception", "pln": ["(: cnet_isa_ef9fc06da8 (IsA touch exteroception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "touch is a kind of perception", "pln": ["(: cnet_isa_5259e526cf (IsA touch perception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "touch is a kind of somatosense", "pln": ["(: cnet_isa_f94988f307 (IsA touch somatosense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "touch is a kind of solicitation", "pln": ["(: cnet_isa_115df1fbd6 (IsA touch solicitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "touch is a kind of suggestion", "pln": ["(: cnet_isa_51276a8235 (IsA touch suggestion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "touch is a kind of contact", "pln": ["(: cnet_isa_750baa0453 (IsA touch contact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "touch is a kind of small indefinite quantity", "pln": ["(: cnet_isa_ec9ca18f55 (IsA touch small_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "touch is a kind of attack", "pln": ["(: cnet_isa_875ed48651 (IsA touch attack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "touch football is a kind of american football", "pln": ["(: cnet_isa_4559b8d7c8 (IsA touch_football american_football) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "touch screen is a kind of computer screen", "pln": ["(: cnet_isa_3bbda344c9 (IsA touch_screen computer_screen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "touch typing is a kind of typing", "pln": ["(: cnet_isa_f203eb6bc6 (IsA touch_typing typing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "touch typist is a kind of typist", "pln": ["(: cnet_isa_26635d4ca1 (IsA touch_typist typist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "touchback is a kind of football play", "pln": ["(: cnet_isa_c9005fdca7 (IsA touchback football_play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "touchdown is a kind of landing", "pln": ["(: cnet_isa_6981f15aa3 (IsA touchdown landing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "touchdown is a kind of score", "pln": ["(: cnet_isa_01c6083ee6 (IsA touchdown score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toucher is a kind of person", "pln": ["(: cnet_isa_bb5a15c80d (IsA toucher person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "touchline is a kind of sideline", "pln": ["(: cnet_isa_56c1820e79 (IsA touchline sideline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tough guy is a kind of bully", "pln": ["(: cnet_isa_a9fd0d0db8 (IsA tough_guy bully) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toupee is a kind of hairpiece", "pln": ["(: cnet_isa_ceb26adaa3 (IsA toupee hairpiece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tour is a kind of journey", "pln": ["(: cnet_isa_be3d8ef3e7 (IsA tour journey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tour de force is a kind of deed", "pln": ["(: cnet_isa_19e8260d63 (IsA tour_de_force deed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tour de france is a kind of bicycle race", "pln": ["(: cnet_isa_00a88d2ee2 (IsA tour_de_france bicycle_race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tour guide is a kind of guide", "pln": ["(: cnet_isa_7110a085bf (IsA tour_guide guide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "touraco is a kind of cuculiform bird", "pln": ["(: cnet_isa_6b070d4d6c (IsA touraco cuculiform_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tourette s syndrome is a kind of syndrome", "pln": ["(: cnet_isa_1d1bf76e05 (IsA tourette_s_syndrome syndrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "touring car is a kind of car", "pln": ["(: cnet_isa_fe23fb7f8b (IsA touring_car car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tourism is a kind of commercial enterprise", "pln": ["(: cnet_isa_3590994786 (IsA tourism commercial_enterprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tourist is a kind of traveler", "pln": ["(: cnet_isa_5400e5981c (IsA tourist traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tourist attraction is a kind of attraction", "pln": ["(: cnet_isa_1c951a4cb6 (IsA tourist_attraction attraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tourist class is a kind of accommodation", "pln": ["(: cnet_isa_509872b770 (IsA tourist_class accommodation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tourmaline is a kind of mineral", "pln": ["(: cnet_isa_4d8b44bd72 (IsA tourmaline mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tourmaline is a kind of transparent gem", "pln": ["(: cnet_isa_714af0d6e1 (IsA tourmaline transparent_gem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tournament is a kind of contest", "pln": ["(: cnet_isa_17326edcdd (IsA tournament contest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tournedo is a kind of fillet", "pln": ["(: cnet_isa_8447d585db (IsA tournedo fillet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tourqouise is a kind of stone", "pln": ["(: cnet_isa_8f791105ee (IsA tourqouise stone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tourtiere is a kind of meat pie", "pln": ["(: cnet_isa_484a794016 (IsA tourtiere meat_pie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tout is a kind of advertiser", "pln": ["(: cnet_isa_06e461ac78 (IsA tout advertiser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tout is a kind of scalper", "pln": ["(: cnet_isa_1f72beb2d4 (IsA tout scalper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tout ensemble is a kind of impression", "pln": ["(: cnet_isa_f4eab5889d (IsA tout_ensemble impression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tovarich is a kind of companion", "pln": ["(: cnet_isa_ff4206cf40 (IsA tovarich companion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tow is a kind of draw", "pln": ["(: cnet_isa_b6483d311c (IsA tow draw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tow truck is a kind of truck", "pln": ["(: cnet_isa_70321ef72d (IsA tow_truck truck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "towel is a kind of piece of cloth", "pln": ["(: cnet_isa_a609cf3c9c (IsA towel piece_of_cloth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "towel rack is a kind of rack", "pln": ["(: cnet_isa_e17fd48efa (IsA towel_rack rack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "towel rail is a kind of bar", "pln": ["(: cnet_isa_7453985859 (IsA towel_rail bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "towel ring is a kind of hoop", "pln": ["(: cnet_isa_59b127ccfc (IsA towel_ring hoop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toweling is a kind of fabric", "pln": ["(: cnet_isa_87d6f3c768 (IsA toweling fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tower is a kind of tall structure with stair", "pln": ["(: cnet_isa_a1d64826e0 (IsA tower tall_structure_with_stair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tower is a kind of structure", "pln": ["(: cnet_isa_038e5fedb2 (IsA tower structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tower cress is a kind of rock cress", "pln": ["(: cnet_isa_d9fc56482e (IsA tower_cress rock_cress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tower mustard is a kind of cress", "pln": ["(: cnet_isa_e76e8ccebb (IsA tower_mustard cress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tower of strength is a kind of patron", "pln": ["(: cnet_isa_bda3c036ee (IsA tower_of_strength patron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "towhead is a kind of blond", "pln": ["(: cnet_isa_b208b32d28 (IsA towhead blond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "towhee is a kind of finch", "pln": ["(: cnet_isa_00256bd82e (IsA towhee finch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "towline is a kind of line", "pln": ["(: cnet_isa_16a0b8c7b2 (IsA towline line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "town is a kind of community", "pln": ["(: cnet_isa_4003929eee (IsA town community) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "town is a kind of municipality", "pln": ["(: cnet_isa_dbca74f1bb (IsA town municipality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "town clerk is a kind of official", "pln": ["(: cnet_isa_90e8c8259d (IsA town_clerk official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "town crier is a kind of announcer", "pln": ["(: cnet_isa_638cf33bd0 (IsA town_crier announcer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "town gas is a kind of coal gas", "pln": ["(: cnet_isa_18d6dbf1c8 (IsA town_gas coal_gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "town hall is a kind of government building", "pln": ["(: cnet_isa_a0b2836c5b (IsA town_hall government_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "town meeting is a kind of local government", "pln": ["(: cnet_isa_09fca4a828 (IsA town_meeting local_government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "town meeting is a kind of meeting", "pln": ["(: cnet_isa_2197168be8 (IsA town_meeting meeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "townee is a kind of townsman", "pln": ["(: cnet_isa_44dffbd69d (IsA townee townsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "townie is a kind of townsman", "pln": ["(: cnet_isa_efcb21a0a6 (IsA townie townsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "townsendia is a kind of asterid dicot genus", "pln": ["(: cnet_isa_68dd3a3624 (IsA townsendia asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "township is a kind of administrative district", "pln": ["(: cnet_isa_b43f40760f (IsA township administrative_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "townsman is a kind of peer", "pln": ["(: cnet_isa_51c4bd130f (IsA townsman peer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "townsman is a kind of resident", "pln": ["(: cnet_isa_dd415ea5dd (IsA townsman resident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "towpath is a kind of path", "pln": ["(: cnet_isa_5b36c1935f (IsA towpath path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toxemia is a kind of blood poisoning", "pln": ["(: cnet_isa_4083273a38 (IsA toxemia blood_poisoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toxemia of pregnancy is a kind of illness", "pln": ["(: cnet_isa_5349d81ab7 (IsA toxemia_of_pregnancy illness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toxic shock is a kind of syndrome", "pln": ["(: cnet_isa_9a68ad5263 (IsA toxic_shock syndrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "toxic site is a kind of site", "pln": ["(: cnet_isa_0b1df0e95a (IsA toxic_site site) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toxic waste is a kind of waste", "pln": ["(: cnet_isa_8dc7d71947 (IsA toxic_waste waste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toxic waste dump is a kind of dump", "pln": ["(: cnet_isa_8d6ca77805 (IsA toxic_waste_dump dump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toxicity is a kind of definite quantity", "pln": ["(: cnet_isa_104ee14711 (IsA toxicity definite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toxicodendron is a kind of dicot genus", "pln": ["(: cnet_isa_25ee3f4820 (IsA toxicodendron dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toxicognath is a kind of fang", "pln": ["(: cnet_isa_48990703ac (IsA toxicognath fang) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toxicologist is a kind of medical scientist", "pln": ["(: cnet_isa_62da886e43 (IsA toxicologist medical_scientist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toxicology is a kind of pharmacology", "pln": ["(: cnet_isa_d34372f783 (IsA toxicology pharmacology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toxin is a kind of poison", "pln": ["(: cnet_isa_204fdb4d30 (IsA toxin poison) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toxin antitoxin is a kind of immunogen", "pln": ["(: cnet_isa_8cc29dd72c (IsA toxin_antitoxin immunogen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toxoplasmosis is a kind of infection", "pln": ["(: cnet_isa_f693fa199b (IsA toxoplasmosis infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toxostoma is a kind of bird genus", "pln": ["(: cnet_isa_3d17e88474 (IsA toxostoma bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toxote is a kind of fish genus", "pln": ["(: cnet_isa_ee483796ff (IsA toxote fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toxotidae is a kind of fish family", "pln": ["(: cnet_isa_ee860b2c0b (IsA toxotidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toy is a kind of device", "pln": ["(: cnet_isa_51c1db692d (IsA toy device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toy is a kind of replica", "pln": ["(: cnet_isa_358149969b (IsA toy replica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toy box is a kind of chest", "pln": ["(: cnet_isa_6749d793a4 (IsA toy_box chest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toy dog is a kind of dog", "pln": ["(: cnet_isa_e046db1e49 (IsA toy_dog dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toy industry is a kind of industry", "pln": ["(: cnet_isa_b0fca7c21a (IsA toy_industry industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toy manchester is a kind of manchester terrier", "pln": ["(: cnet_isa_657b65d1ff (IsA toy_manchester manchester_terrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toy poodle is a kind of poodle", "pln": ["(: cnet_isa_747657c8de (IsA toy_poodle poodle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toy soldier is a kind of doll", "pln": ["(: cnet_isa_3a57a658a8 (IsA toy_soldier doll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toy spaniel is a kind of toy dog", "pln": ["(: cnet_isa_316a03a017 (IsA toy_spaniel toy_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toy terrier is a kind of toy dog", "pln": ["(: cnet_isa_45cebee2df (IsA toy_terrier toy_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toyon is a kind of shrub", "pln": ["(: cnet_isa_6f62b9cd65 (IsA toyon shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toyota is a kind of company", "pln": ["(: cnet_isa_43bb183dd0 (IsA toyota company) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toyota is a kind of car", "pln": ["(: cnet_isa_de91d0a63c (IsA toyota car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "toyshop is a kind of shop", "pln": ["(: cnet_isa_41dbd16d72 (IsA toyshop shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tra la is a kind of refrain", "pln": ["(: cnet_isa_879d267a03 (IsA tra_la refrain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trabecula is a kind of fibrous tissue", "pln": ["(: cnet_isa_06d7614b77 (IsA trabecula fibrous_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trace is a kind of line", "pln": ["(: cnet_isa_7c2e45f959 (IsA trace line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trace is a kind of indication", "pln": ["(: cnet_isa_0bb5d4a89c (IsA trace indication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trace is a kind of mark", "pln": ["(: cnet_isa_6d53470591 (IsA trace mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trace is a kind of small indefinite quantity", "pln": ["(: cnet_isa_bf21655381 (IsA trace small_indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trace detector is a kind of detector", "pln": ["(: cnet_isa_9ee3a04fa1 (IsA trace_detector detector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trace element is a kind of chemical element", "pln": ["(: cnet_isa_43ee4c63af (IsA trace_element chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trace program is a kind of utility program", "pln": ["(: cnet_isa_1f94acbd4e (IsA trace_program utility_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tracer is a kind of ammunition", "pln": ["(: cnet_isa_39d48c81bb (IsA tracer ammunition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tracer is a kind of instrument", "pln": ["(: cnet_isa_e138c4b71d (IsA tracer instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tracer is a kind of detective", "pln": ["(: cnet_isa_829efdd6d8 (IsA tracer detective) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tracer is a kind of radioisotope", "pln": ["(: cnet_isa_4982d5eb9a (IsA tracer radioisotope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tracery is a kind of decoration", "pln": ["(: cnet_isa_04fa5edd65 (IsA tracery decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trachea is a kind of cartilaginous tube", "pln": ["(: cnet_isa_64f61fae8c (IsA trachea cartilaginous_tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trachea is a kind of tubule", "pln": ["(: cnet_isa_b0bbbcf333 (IsA trachea tubule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tracheal vein is a kind of vein", "pln": ["(: cnet_isa_24d45f31f5 (IsA tracheal_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tracheid is a kind of vascular tissue", "pln": ["(: cnet_isa_6d338cddc6 (IsA tracheid vascular_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tracheitis is a kind of inflammation", "pln": ["(: cnet_isa_995903dad1 (IsA tracheitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trachelospermum is a kind of dicot genus", "pln": ["(: cnet_isa_5cd4b7f31a (IsA trachelospermum dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tracheobronchitis is a kind of inflammation", "pln": ["(: cnet_isa_f6052d5ff7 (IsA tracheobronchitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tracheophyta is a kind of division", "pln": ["(: cnet_isa_1560de87da (IsA tracheophyta division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tracheostomy is a kind of operation", "pln": ["(: cnet_isa_84c91cd686 (IsA tracheostomy operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trachinotus is a kind of fish genus", "pln": ["(: cnet_isa_b5ef846634 (IsA trachinotus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trachipteridae is a kind of fish family", "pln": ["(: cnet_isa_2ed64a8517 (IsA trachipteridae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trachipterus is a kind of fish genus", "pln": ["(: cnet_isa_2c49ec7fc4 (IsA trachipterus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trachodon is a kind of hadrosaur", "pln": ["(: cnet_isa_c36ecc5b6d (IsA trachodon hadrosaur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trachoma is a kind of eye disease", "pln": ["(: cnet_isa_b37d7cff32 (IsA trachoma eye_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trachurus is a kind of fish genus", "pln": ["(: cnet_isa_d0c8064de8 (IsA trachurus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tracing is a kind of discovery", "pln": ["(: cnet_isa_21f8db22e8 (IsA tracing discovery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tracing is a kind of drawing", "pln": ["(: cnet_isa_a90391ec9b (IsA tracing drawing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tracing paper is a kind of paper", "pln": ["(: cnet_isa_2d2274d164 (IsA tracing_paper paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tracing routine is a kind of routine", "pln": ["(: cnet_isa_bbd99b055e (IsA tracing_routine routine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "track is a kind of defined path", "pln": ["(: cnet_isa_8e376ebc45 (IsA track defined_path) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "track is a kind of track and field", "pln": ["(: cnet_isa_48ee440738 (IsA track track_and_field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "track is a kind of artifact", "pln": ["(: cnet_isa_34b2c7a340 (IsA track artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "track is a kind of bar", "pln": ["(: cnet_isa_5f55ef3498 (IsA track bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "track is a kind of belt", "pln": ["(: cnet_isa_3b25320e39 (IsA track belt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "track is a kind of groove", "pln": ["(: cnet_isa_8cebc3e2c8 (IsA track groove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "track is a kind of road", "pln": ["(: cnet_isa_bb58883766 (IsA track road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "track is a kind of path", "pln": ["(: cnet_isa_0b36cae1e9 (IsA track path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "track and field is a kind of sport", "pln": ["(: cnet_isa_fa9f7b6c39 (IsA track_and_field sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "track event is a kind of footrace", "pln": ["(: cnet_isa_46a5766041 (IsA track_event footrace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "track meet is a kind of meet", "pln": ["(: cnet_isa_353df48a7f (IsA track_meet meet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "track record is a kind of record", "pln": ["(: cnet_isa_8fe954069a (IsA track_record record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "track star is a kind of ace", "pln": ["(: cnet_isa_fc6c05cc94 (IsA track_star ace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "track to track seek time is a kind of seek time", "pln": ["(: cnet_isa_0fbae51b7c (IsA track_to_track_seek_time seek_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trackball is a kind of electronic device", "pln": ["(: cnet_isa_d49e856f6c (IsA trackball electronic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tracked vehicle is a kind of self propelled vehicle", "pln": ["(: cnet_isa_f0be0ba231 (IsA tracked_vehicle self_propelled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tracker is a kind of hunter", "pln": ["(: cnet_isa_7af755d0e4 (IsA tracker hunter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tract is a kind of system", "pln": ["(: cnet_isa_39d49daed7 (IsA tract system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tract is a kind of treatise", "pln": ["(: cnet_isa_6912dd8ee7 (IsA tract treatise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tract is a kind of geographical area", "pln": ["(: cnet_isa_47cda5bfb9 (IsA tract geographical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tract house is a kind of house", "pln": ["(: cnet_isa_5f9270714e (IsA tract_house house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tract housing is a kind of housing", "pln": ["(: cnet_isa_935b0f3386 (IsA tract_housing housing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tractability is a kind of trait", "pln": ["(: cnet_isa_f1c1ec1378 (IsA tractability trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tractarian is a kind of christian", "pln": ["(: cnet_isa_d57bb2c959 (IsA tractarian christian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tractarianism is a kind of christianity", "pln": ["(: cnet_isa_1188a55666 (IsA tractarianism christianity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "traction is a kind of pull", "pln": ["(: cnet_isa_97b7ae7085 (IsA traction pull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "traction engine is a kind of locomotive", "pln": ["(: cnet_isa_8b9b0698db (IsA traction_engine locomotive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tractor is a kind of vehicle", "pln": ["(: cnet_isa_68e9c4c157 (IsA tractor vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tractor is a kind of self propelled vehicle", "pln": ["(: cnet_isa_66cc8dbf85 (IsA tractor self_propelled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tractor is a kind of truck", "pln": ["(: cnet_isa_9038f4cfc4 (IsA tractor truck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trad is a kind of jazz", "pln": ["(: cnet_isa_56d3a7468d (IsA trad jazz) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trade is a kind of business", "pln": ["(: cnet_isa_e77cc1a3f1 (IsA trade business) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trade is a kind of commerce", "pln": ["(: cnet_isa_e31bfdf15b (IsA trade commerce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trade is a kind of occupation", "pln": ["(: cnet_isa_3bbf44e6e9 (IsA trade occupation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trade acceptance is a kind of draft", "pln": ["(: cnet_isa_689db5f7f8 (IsA trade_acceptance draft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trade barrier is a kind of protectionism", "pln": ["(: cnet_isa_1ada556cf1 (IsA trade_barrier protectionism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trade bill is a kind of bill", "pln": ["(: cnet_isa_ea2fb38f32 (IsA trade_bill bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trade book is a kind of book", "pln": ["(: cnet_isa_0b42ee6f16 (IsA trade_book book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trade deficit is a kind of deficit", "pln": ["(: cnet_isa_a0c32cd85d (IsA trade_deficit deficit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trade discount is a kind of deduction", "pln": ["(: cnet_isa_d4b94641dc (IsA trade_discount deduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trade in is a kind of property", "pln": ["(: cnet_isa_f3f7a6a076 (IsA trade_in property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trade last is a kind of compliment", "pln": ["(: cnet_isa_99dc251073 (IsA trade_last compliment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trade magazine is a kind of magazine", "pln": ["(: cnet_isa_a1303a2367 (IsA trade_magazine magazine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trade name is a kind of name", "pln": ["(: cnet_isa_a3ce86bff0 (IsA trade_name name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trade policy is a kind of foreign policy", "pln": ["(: cnet_isa_b5ce6e853b (IsA trade_policy foreign_policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trade route is a kind of path", "pln": ["(: cnet_isa_393bee10b6 (IsA trade_route path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trade school is a kind of secondary school", "pln": ["(: cnet_isa_7ae67742ee (IsA trade_school secondary_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trade secret is a kind of secret", "pln": ["(: cnet_isa_d4e6667310 (IsA trade_secret secret) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trade unionist is a kind of worker", "pln": ["(: cnet_isa_7c8e797f58 (IsA trade_unionist worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trade wind is a kind of prevailing wind", "pln": ["(: cnet_isa_14be703883 (IsA trade_wind prevailing_wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tradecraft is a kind of craft", "pln": ["(: cnet_isa_1fc107eda3 (IsA tradecraft craft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trademark is a kind of marker", "pln": ["(: cnet_isa_663fcdc1b4 (IsA trademark marker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tradeoff is a kind of exchange", "pln": ["(: cnet_isa_6b785b21aa (IsA tradeoff exchange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trader is a kind of merchant", "pln": ["(: cnet_isa_36b55447bf (IsA trader merchant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tradescant s aster is a kind of aster", "pln": ["(: cnet_isa_3aa6e129f0 (IsA tradescant_s_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tradescantia is a kind of monocot genus", "pln": ["(: cnet_isa_a349ea4f09 (IsA tradescantia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tradespeople is a kind of people", "pln": ["(: cnet_isa_5ba30040c9 (IsA tradespeople people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trading is a kind of commerce", "pln": ["(: cnet_isa_216d4a909f (IsA trading commerce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trading card is a kind of card", "pln": ["(: cnet_isa_7b3832ed1c (IsA trading_card card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trading stamp is a kind of token", "pln": ["(: cnet_isa_1a6924d69f (IsA trading_stamp token) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tradition is a kind of content", "pln": ["(: cnet_isa_447e13355f (IsA tradition content) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "traditionalism is a kind of orthodoxy", "pln": ["(: cnet_isa_6e2577cd6a (IsA traditionalism orthodoxy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "traditionalism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_2766bb0b9b (IsA traditionalism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "traditionalism is a kind of attachment", "pln": ["(: cnet_isa_c07f9fa5da (IsA traditionalism attachment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "traditionalist is a kind of conservative", "pln": ["(: cnet_isa_22917492fa (IsA traditionalist conservative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "traffic is a kind of commerce", "pln": ["(: cnet_isa_6cf670a809 (IsA traffic commerce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "traffic is a kind of communication", "pln": ["(: cnet_isa_c1a225d4fd (IsA traffic communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "traffic is a kind of collection", "pln": ["(: cnet_isa_4038058bb2 (IsA traffic collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "traffic circle is a kind of junction", "pln": ["(: cnet_isa_0c4674c8e3 (IsA traffic_circle junction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "traffic congestion is a kind of problem", "pln": ["(: cnet_isa_1e0a5f388c (IsA traffic_congestion problem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "traffic control is a kind of control", "pln": ["(: cnet_isa_8da6fdbbff (IsA traffic_control control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "traffic cop is a kind of policeman", "pln": ["(: cnet_isa_bfd9b990d5 (IsA traffic_cop policeman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "traffic court is a kind of court", "pln": ["(: cnet_isa_6f0f7e877e (IsA traffic_court court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "traffic island is a kind of island", "pln": ["(: cnet_isa_695c246562 (IsA traffic_island island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "traffic jam is a kind of crush", "pln": ["(: cnet_isa_1226df0a34 (IsA traffic_jam crush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "traffic lane is a kind of lane", "pln": ["(: cnet_isa_65e9cc44a1 (IsA traffic_lane lane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "traffic light is a kind of light", "pln": ["(: cnet_isa_e3c7060f41 (IsA traffic_light light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "traffic pattern is a kind of path", "pln": ["(: cnet_isa_c2ce0b9c1c (IsA traffic_pattern path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tragacanth is a kind of gum", "pln": ["(: cnet_isa_6bc5d5e908 (IsA tragacanth gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tragedian is a kind of actor", "pln": ["(: cnet_isa_5aac2200f8 (IsA tragedian actor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tragedian is a kind of writer", "pln": ["(: cnet_isa_7fac3fb5d7 (IsA tragedian writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tragedienne is a kind of actress", "pln": ["(: cnet_isa_a2029716f6 (IsA tragedienne actress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tragedy is a kind of drama", "pln": ["(: cnet_isa_bc8f199095 (IsA tragedy drama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tragelaphus is a kind of mammal genus", "pln": ["(: cnet_isa_e00ecd5e5f (IsA tragelaphus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tragic flaw is a kind of flaw", "pln": ["(: cnet_isa_f4547fb8ce (IsA tragic_flaw flaw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tragicomedy is a kind of tragedy", "pln": ["(: cnet_isa_2967a93d43 (IsA tragicomedy tragedy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tragopan is a kind of pheasant", "pln": ["(: cnet_isa_694f913ba7 (IsA tragopan pheasant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tragopogon is a kind of asterid dicot genus", "pln": ["(: cnet_isa_73025c397a (IsA tragopogon asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tragulidae is a kind of mammal family", "pln": ["(: cnet_isa_ab12408425 (IsA tragulidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tragulus is a kind of mammal genus", "pln": ["(: cnet_isa_73d1666d11 (IsA tragulus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tragus is a kind of cartilaginous structure", "pln": ["(: cnet_isa_f6315062fb (IsA tragus cartilaginous_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trail is a kind of track", "pln": ["(: cnet_isa_efaa2367d0 (IsA trail track) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trail is a kind of path", "pln": ["(: cnet_isa_634663249e (IsA trail path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trail bike is a kind of motorcycle", "pln": ["(: cnet_isa_9793957c98 (IsA trail_bike motorcycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trail boss is a kind of supervisor", "pln": ["(: cnet_isa_4c0ff1debd (IsA trail_boss supervisor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trail head is a kind of beginning", "pln": ["(: cnet_isa_2709813aab (IsA trail_head beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trail riding is a kind of riding", "pln": ["(: cnet_isa_741120141b (IsA trail_riding riding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trailblazer is a kind of scout", "pln": ["(: cnet_isa_d6d7562802 (IsA trailblazer scout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trailer is a kind of conveyance", "pln": ["(: cnet_isa_15ede23192 (IsA trailer conveyance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trailer is a kind of wheeled vehicle", "pln": ["(: cnet_isa_1c9eb623a8 (IsA trailer wheeled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trailer camp is a kind of camp", "pln": ["(: cnet_isa_ca8114a428 (IsA trailer_camp camp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trailer truck is a kind of truck", "pln": ["(: cnet_isa_9e141fac8d (IsA trailer_truck truck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trailing is a kind of pursuit", "pln": ["(: cnet_isa_55105c8c8d (IsA trailing pursuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trailing arbutus is a kind of shrub", "pln": ["(: cnet_isa_40435d7ebf (IsA trailing_arbutus shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trailing edge is a kind of edge", "pln": ["(: cnet_isa_60ae8ab83c (IsA trailing_edge edge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trailing four o clock is a kind of wildflower", "pln": ["(: cnet_isa_e645f794b2 (IsA trailing_four_o_clock wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "train is a kind of piece of cloth", "pln": ["(: cnet_isa_d713dcf794 (IsA train piece_of_cloth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "train is a kind of public transport", "pln": ["(: cnet_isa_af62de608e (IsA train public_transport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "train is a kind of consequence", "pln": ["(: cnet_isa_fab2049404 (IsA train consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "train fare is a kind of fare", "pln": ["(: cnet_isa_04fbbce40e (IsA train_fare fare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "train of thought is a kind of thinking", "pln": ["(: cnet_isa_c4e7a18028 (IsA train_of_thought thinking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "train set is a kind of plaything", "pln": ["(: cnet_isa_3cdfd7d56e (IsA train_set plaything) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trainband is a kind of company", "pln": ["(: cnet_isa_09a16a4236 (IsA trainband company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trainband is a kind of militia", "pln": ["(: cnet_isa_871b383343 (IsA trainband militia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trainbandsman is a kind of militiaman", "pln": ["(: cnet_isa_9a738ef0af (IsA trainbandsman militiaman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trainbearer is a kind of attendant", "pln": ["(: cnet_isa_9fe7513651 (IsA trainbearer attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trainee is a kind of novice", "pln": ["(: cnet_isa_a879b790af (IsA trainee novice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "traineeship is a kind of financial aid", "pln": ["(: cnet_isa_4a18186c6d (IsA traineeship financial_aid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trainer is a kind of leader", "pln": ["(: cnet_isa_c9bc43cf71 (IsA trainer leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "training is a kind of activity", "pln": ["(: cnet_isa_0d51cfad20 (IsA training activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "training college is a kind of college", "pln": ["(: cnet_isa_801d5a966b (IsA training_college college) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "training program is a kind of educational program", "pln": ["(: cnet_isa_0529d71446 (IsA training_program educational_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "training school is a kind of school", "pln": ["(: cnet_isa_85088f7ccc (IsA training_school school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "training table is a kind of board", "pln": ["(: cnet_isa_05ad27c0fc (IsA training_table board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trainload is a kind of load", "pln": ["(: cnet_isa_19297c8e74 (IsA trainload load) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trainman is a kind of employee", "pln": ["(: cnet_isa_49a2401a21 (IsA trainman employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "train is a kind of popular form of transport", "pln": ["(: cnet_isa_7ef2418e7b (IsA train popular_form_of_transport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trait is a kind of attribute", "pln": ["(: cnet_isa_3ddd70edde (IsA trait attribute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "traitor is a kind of criminal", "pln": ["(: cnet_isa_26f976d7b2 (IsA traitor criminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "traitress is a kind of traitor", "pln": ["(: cnet_isa_c67d841d78 (IsA traitress traitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trajectory is a kind of mechanical phenomenon", "pln": ["(: cnet_isa_f13132796e (IsA trajectory mechanical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tramcar is a kind of wagon", "pln": ["(: cnet_isa_70352d1508 (IsA tramcar wagon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tramline is a kind of track", "pln": ["(: cnet_isa_1226516827 (IsA tramline track) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trammel is a kind of pothook", "pln": ["(: cnet_isa_743a1c99f9 (IsA trammel pothook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trammel is a kind of restraint", "pln": ["(: cnet_isa_7e0a887b04 (IsA trammel restraint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trammel net is a kind of fishnet", "pln": ["(: cnet_isa_e1ef835243 (IsA trammel_net fishnet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tramontane is a kind of north wind", "pln": ["(: cnet_isa_b8d1065aa5 (IsA tramontane north_wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tramp is a kind of footfall", "pln": ["(: cnet_isa_7dc648d056 (IsA tramp footfall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tramp is a kind of vagrant", "pln": ["(: cnet_isa_6daf0a11e7 (IsA tramp vagrant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tramp steamer is a kind of steamer", "pln": ["(: cnet_isa_a3eb88c9f0 (IsA tramp_steamer steamer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trample is a kind of sound", "pln": ["(: cnet_isa_7a65f372c0 (IsA trample sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trampler is a kind of bad person", "pln": ["(: cnet_isa_884aa633b1 (IsA trampler bad_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trampoline is a kind of gymnastic apparatus", "pln": ["(: cnet_isa_d1eaa1f682 (IsA trampoline gymnastic_apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tramway is a kind of conveyance", "pln": ["(: cnet_isa_d97f550f55 (IsA tramway conveyance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trance is a kind of state of mental activity", "pln": ["(: cnet_isa_8f0805a5cc (IsA trance state_of_mental_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trance is a kind of unconsciousness", "pln": ["(: cnet_isa_6c11e667f8 (IsA trance unconsciousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tranche is a kind of share", "pln": ["(: cnet_isa_ccbda510bc (IsA tranche share) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tranquilizer is a kind of psychotropic agent", "pln": ["(: cnet_isa_7f4d92aa76 (IsA tranquilizer psychotropic_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tranquilizer is a kind of sedative hypnotic", "pln": ["(: cnet_isa_521eae446a (IsA tranquilizer sedative_hypnotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tranquillity is a kind of calmness", "pln": ["(: cnet_isa_d1b679e2b2 (IsA tranquillity calmness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tranquillity is a kind of order", "pln": ["(: cnet_isa_d4c093dbbb (IsA tranquillity order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tran fatty acid is a kind of fatty acid", "pln": ["(: cnet_isa_6deeaf74da (IsA tran_fatty_acid fatty_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "transactinide is a kind of chemical element", "pln": ["(: cnet_isa_668addaa87 (IsA transactinide chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transaction is a kind of group action", "pln": ["(: cnet_isa_799e8cd620 (IsA transaction group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transaction file is a kind of computer file", "pln": ["(: cnet_isa_2e7e0393ad (IsA transaction_file computer_file) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transactional immunity is a kind of use immunity", "pln": ["(: cnet_isa_8b07773294 (IsA transactional_immunity use_immunity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transactor is a kind of businessman", "pln": ["(: cnet_isa_1d922b3ae2 (IsA transactor businessman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transalpine is a kind of foreigner", "pln": ["(: cnet_isa_71db4420c4 (IsA transalpine foreigner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transaminase is a kind of transferase", "pln": ["(: cnet_isa_3317d88b0f (IsA transaminase transferase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "transamination is a kind of chemical process", "pln": ["(: cnet_isa_441e0ea5ac (IsA transamination chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transcendence is a kind of being", "pln": ["(: cnet_isa_58161da22a (IsA transcendence being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transcendence is a kind of domination", "pln": ["(: cnet_isa_57befcdc9d (IsA transcendence domination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transcendental number is a kind of irrational number", "pln": ["(: cnet_isa_0cde39535a (IsA transcendental_number irrational_number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transcendentalism is a kind of philosophy", "pln": ["(: cnet_isa_b986d2381e (IsA transcendentalism philosophy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transcendentalist is a kind of philosopher", "pln": ["(: cnet_isa_123ccae024 (IsA transcendentalist philosopher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "transcortical aphasia is a kind of aphasia", "pln": ["(: cnet_isa_a33cf2a69e (IsA transcortical_aphasia aphasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transcriber is a kind of phonetician", "pln": ["(: cnet_isa_66398d7c7f (IsA transcriber phonetician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transcriber is a kind of writer", "pln": ["(: cnet_isa_55001c052d (IsA transcriber writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transcript is a kind of writing", "pln": ["(: cnet_isa_87239bb30f (IsA transcript writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transcript is a kind of written record", "pln": ["(: cnet_isa_ffe82a6a54 (IsA transcript written_record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transcriptase is a kind of polymerase", "pln": ["(: cnet_isa_670b8faad0 (IsA transcriptase polymerase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transcription is a kind of recording", "pln": ["(: cnet_isa_311ee7fd3e (IsA transcription recording) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "transcription is a kind of written communication", "pln": ["(: cnet_isa_1df60dfd8c (IsA transcription written_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transcription is a kind of organic process", "pln": ["(: cnet_isa_949ff904e4 (IsA transcription organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transdermal patch is a kind of pad", "pln": ["(: cnet_isa_3650e53bcf (IsA transdermal_patch pad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transducer is a kind of electrical device", "pln": ["(: cnet_isa_db137c32a9 (IsA transducer electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "transducing vector is a kind of vector", "pln": ["(: cnet_isa_747a2d9962 (IsA transducing_vector vector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transduction is a kind of organic process", "pln": ["(: cnet_isa_c305e9455b (IsA transduction organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transduction is a kind of natural process", "pln": ["(: cnet_isa_105d26735e (IsA transduction natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transept is a kind of structure", "pln": ["(: cnet_isa_a84a11e729 (IsA transept structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transfer is a kind of change of state", "pln": ["(: cnet_isa_aaaa792b57 (IsA transfer change_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transfer is a kind of transaction", "pln": ["(: cnet_isa_bf8aeda86b (IsA transfer transaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transfer is a kind of learning", "pln": ["(: cnet_isa_ec0ef22aee (IsA transfer learning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "transfer is a kind of ticket", "pln": ["(: cnet_isa_5ba872f985 (IsA transfer ticket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transfer is a kind of person", "pln": ["(: cnet_isa_be36f83c7f (IsA transfer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transfer agent is a kind of agency", "pln": ["(: cnet_isa_da7fa17ff4 (IsA transfer_agent agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transfer paper is a kind of paper", "pln": ["(: cnet_isa_ee67ea0572 (IsA transfer_paper paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transfer payment is a kind of outgo", "pln": ["(: cnet_isa_570cdad64a (IsA transfer_payment outgo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transfer rna is a kind of ribonucleic acid", "pln": ["(: cnet_isa_6a759fca30 (IsA transfer_rna ribonucleic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "transfer tax is a kind of tax", "pln": ["(: cnet_isa_3f2aad9bed (IsA transfer_tax tax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transferability is a kind of exchangeability", "pln": ["(: cnet_isa_c38d56c48b (IsA transferability exchangeability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transferase is a kind of enzyme", "pln": ["(: cnet_isa_2f717fd219 (IsA transferase enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transferee is a kind of recipient", "pln": ["(: cnet_isa_cd2ebf0c9f (IsA transferee recipient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transference is a kind of displacement", "pln": ["(: cnet_isa_4f8e391c42 (IsA transference displacement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transferer is a kind of mover", "pln": ["(: cnet_isa_5aaf8c8f78 (IsA transferer mover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transferor is a kind of transferer", "pln": ["(: cnet_isa_2738722d0c (IsA transferor transferer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transferred property is a kind of possession", "pln": ["(: cnet_isa_320ab7b352 (IsA transferred_property possession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transferrin is a kind of globulin", "pln": ["(: cnet_isa_bd638a4811 (IsA transferrin globulin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transfiguration is a kind of revision", "pln": ["(: cnet_isa_1f40139a24 (IsA transfiguration revision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transfiguration is a kind of transformation", "pln": ["(: cnet_isa_cce2b80594 (IsA transfiguration transformation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transfiguration is a kind of christian holy day", "pln": ["(: cnet_isa_047e40b3d0 (IsA transfiguration christian_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transfiguration is a kind of miracle", "pln": ["(: cnet_isa_503352dbe2 (IsA transfiguration miracle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "transformation is a kind of change of integrity", "pln": ["(: cnet_isa_03741dac71 (IsA transformation change_of_integrity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transformation is a kind of grammatical rule", "pln": ["(: cnet_isa_3e578dcdd3 (IsA transformation grammatical_rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transformation is a kind of change", "pln": ["(: cnet_isa_0fba63b33b (IsA transformation change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transformation is a kind of mapping", "pln": ["(: cnet_isa_1fc6bac444 (IsA transformation mapping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transformer is a kind of electrical device", "pln": ["(: cnet_isa_8488c9fe2d (IsA transformer electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transfusion is a kind of action", "pln": ["(: cnet_isa_cee0b9bc57 (IsA transfusion action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transfusion is a kind of insertion", "pln": ["(: cnet_isa_92f0f2dd0a (IsA transfusion insertion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transfusion reaction is a kind of reaction", "pln": ["(: cnet_isa_003f55a02e (IsA transfusion_reaction reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transgender is a kind of lgbt", "pln": ["(: cnet_isa_e684646233 (IsA transgender lgbt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transgene is a kind of gene", "pln": ["(: cnet_isa_843866e429 (IsA transgene gene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transgression is a kind of action", "pln": ["(: cnet_isa_2e215bcd36 (IsA transgression action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transgression is a kind of wrongdoing", "pln": ["(: cnet_isa_06d897a6be (IsA transgression wrongdoing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transgression is a kind of geological phenomenon", "pln": ["(: cnet_isa_71b45c5409 (IsA transgression geological_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transgressor is a kind of wrongdoer", "pln": ["(: cnet_isa_172d03c706 (IsA transgressor wrongdoer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transience is a kind of impermanence", "pln": ["(: cnet_isa_e5bceffe7f (IsA transience impermanence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transient is a kind of traveler", "pln": ["(: cnet_isa_1fcee090ae (IsA transient traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transient is a kind of oscillation", "pln": ["(: cnet_isa_87dfae8bf0 (IsA transient oscillation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transient global amnesia is a kind of amnesia", "pln": ["(: cnet_isa_d01c44a0a6 (IsA transient_global_amnesia amnesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transient ischemic attack is a kind of ischemia", "pln": ["(: cnet_isa_969c5be3df (IsA transient_ischemic_attack ischemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transistor is a kind of semiconductor device", "pln": ["(: cnet_isa_00c9a783d1 (IsA transistor semiconductor_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transit instrument is a kind of telescope", "pln": ["(: cnet_isa_fc0bf52f18 (IsA transit_instrument telescope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transit line is a kind of line", "pln": ["(: cnet_isa_22ccadb3bf (IsA transit_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transit zone is a kind of zone", "pln": ["(: cnet_isa_56f94100a7 (IsA transit_zone zone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transition is a kind of passage", "pln": ["(: cnet_isa_136527bc51 (IsA transition passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transition is a kind of change", "pln": ["(: cnet_isa_4deeb26151 (IsA transition change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transitive verb is a kind of verb", "pln": ["(: cnet_isa_a39b8a6678 (IsA transitive_verb verb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transitivity is a kind of grammatical relation", "pln": ["(: cnet_isa_66d267e707 (IsA transitivity grammatical_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transitivity is a kind of logical relation", "pln": ["(: cnet_isa_edf3c88955 (IsA transitivity logical_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transitivity is a kind of mathematical relation", "pln": ["(: cnet_isa_5b4a883b43 (IsA transitivity mathematical_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "translation is a kind of motion", "pln": ["(: cnet_isa_4f1dd9173b (IsA translation motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "translation is a kind of paraphrase", "pln": ["(: cnet_isa_95091f4ec7 (IsA translation paraphrase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "translation is a kind of written record", "pln": ["(: cnet_isa_459d931629 (IsA translation written_record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "translation is a kind of change of location", "pln": ["(: cnet_isa_8658c49211 (IsA translation change_of_location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "translation is a kind of organic process", "pln": ["(: cnet_isa_9200b5cb54 (IsA translation organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "translation is a kind of transformation", "pln": ["(: cnet_isa_c9e55ce80d (IsA translation transformation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "translator is a kind of program", "pln": ["(: cnet_isa_41e2ea2bb6 (IsA translator program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "translator is a kind of linguist", "pln": ["(: cnet_isa_4f136de37a (IsA translator linguist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transliteration is a kind of transcription", "pln": ["(: cnet_isa_8643e5b4f6 (IsA transliteration transcription) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "translocation is a kind of organic process", "pln": ["(: cnet_isa_201b62537c (IsA translocation organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "translucence is a kind of clearness", "pln": ["(: cnet_isa_6e21f2f442 (IsA translucence clearness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transmigrante is a kind of latino", "pln": ["(: cnet_isa_eae9511c80 (IsA transmigrante latino) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transmigrante is a kind of peddler", "pln": ["(: cnet_isa_a31803fd77 (IsA transmigrante peddler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transmigration is a kind of reincarnation", "pln": ["(: cnet_isa_b688478098 (IsA transmigration reincarnation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transmission is a kind of sending", "pln": ["(: cnet_isa_8c135647a3 (IsA transmission sending) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transmission is a kind of gear", "pln": ["(: cnet_isa_803957900f (IsA transmission gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transmission is a kind of communication", "pln": ["(: cnet_isa_3a1cff607f (IsA transmission communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transmission control protocol is a kind of protocol", "pln": ["(: cnet_isa_de540e623c (IsA transmission_control_protocol protocol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transmission control protocol internet protocol is a kind of protocol", "pln": ["(: cnet_isa_ee68501945 (IsA transmission_control_protocol_internet_protocol protocol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transmission mechanism is a kind of mechanism", "pln": ["(: cnet_isa_30906510fe (IsA transmission_mechanism mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transmission shaft is a kind of rotating shaft", "pln": ["(: cnet_isa_5937a78e56 (IsA transmission_shaft rotating_shaft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transmission time is a kind of coordinated universal time", "pln": ["(: cnet_isa_a589e70cfc (IsA transmission_time coordinated_universal_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transmittance is a kind of coefficient", "pln": ["(: cnet_isa_3089c8025f (IsA transmittance coefficient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transmitter is a kind of set", "pln": ["(: cnet_isa_255a012e53 (IsA transmitter set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transmogrification is a kind of transformation", "pln": ["(: cnet_isa_2124acbd0e (IsA transmogrification transformation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transmutation is a kind of conversion", "pln": ["(: cnet_isa_962d1b0625 (IsA transmutation conversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transmutation is a kind of change", "pln": ["(: cnet_isa_308d7c304d (IsA transmutation change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transom is a kind of crosspiece", "pln": ["(: cnet_isa_56c03a5164 (IsA transom crosspiece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transom is a kind of window", "pln": ["(: cnet_isa_1689d28f9b (IsA transom window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transorbital lobotomy is a kind of lobotomy", "pln": ["(: cnet_isa_b17bd39727 (IsA transorbital_lobotomy lobotomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transparency is a kind of clearness", "pln": ["(: cnet_isa_51f3181e23 (IsA transparency clearness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transparency is a kind of physical phenomenon", "pln": ["(: cnet_isa_a6bfe29c3e (IsA transparency physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transparent gem is a kind of gem", "pln": ["(: cnet_isa_2adbab155c (IsA transparent_gem gem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transparent substance is a kind of material", "pln": ["(: cnet_isa_8f04f5c313 (IsA transparent_substance material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transpiration is a kind of bodily process", "pln": ["(: cnet_isa_fdb641c70a (IsA transpiration bodily_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transpiration is a kind of natural process", "pln": ["(: cnet_isa_423f791ba2 (IsA transpiration natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transpiration is a kind of organic process", "pln": ["(: cnet_isa_53cfa68e95 (IsA transpiration organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transplant is a kind of movement", "pln": ["(: cnet_isa_aa5e4c43b3 (IsA transplant movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transplant is a kind of operation", "pln": ["(: cnet_isa_459309292c (IsA transplant operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transplanter is a kind of gardener", "pln": ["(: cnet_isa_759f57b3af (IsA transplanter gardener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "transponder is a kind of electrical device", "pln": ["(: cnet_isa_ddad09e81e (IsA transponder electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "transport is a kind of diffusion", "pln": ["(: cnet_isa_72587d76a4 (IsA transport diffusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transport ship is a kind of ship", "pln": ["(: cnet_isa_8891bf09db (IsA transport_ship ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transportation is a kind of commercial enterprise", "pln": ["(: cnet_isa_848d2268dc (IsA transportation commercial_enterprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transportation is a kind of movement", "pln": ["(: cnet_isa_5e0d117b14 (IsA transportation movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transportation company is a kind of company", "pln": ["(: cnet_isa_b0e6912bc3 (IsA transportation_company company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transportation safety administration is a kind of agency", "pln": ["(: cnet_isa_50ac45f33b (IsA transportation_safety_administration agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "transportation secretary is a kind of secretary", "pln": ["(: cnet_isa_2d669e1290 (IsA transportation_secretary secretary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transportation system is a kind of facility", "pln": ["(: cnet_isa_f9523cd5c2 (IsA transportation_system facility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transporter is a kind of crane", "pln": ["(: cnet_isa_60c45e14ba (IsA transporter crane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transporter is a kind of truck", "pln": ["(: cnet_isa_3be54dc676 (IsA transporter truck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transpose is a kind of matrix", "pln": ["(: cnet_isa_0fff63986f (IsA transpose matrix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transposition is a kind of reordering", "pln": ["(: cnet_isa_89fd098aa0 (IsA transposition reordering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transposition is a kind of calculation", "pln": ["(: cnet_isa_f1d17ae55d (IsA transposition calculation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transposition is a kind of rearrangement", "pln": ["(: cnet_isa_36ca08d2aa (IsA transposition rearrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transposition is a kind of mutation", "pln": ["(: cnet_isa_a491a6f960 (IsA transposition mutation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transposition is a kind of playing", "pln": ["(: cnet_isa_bef0e804ff (IsA transposition playing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transposition is a kind of abnormality", "pln": ["(: cnet_isa_e0d38a38b0 (IsA transposition abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transposon is a kind of deoxyribonucleic acid", "pln": ["(: cnet_isa_620a4f6bd0 (IsA transposon deoxyribonucleic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "transsexual is a kind of person", "pln": ["(: cnet_isa_aa3b9b3530 (IsA transsexual person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transsexualism is a kind of condition", "pln": ["(: cnet_isa_b4ee54bcb7 (IsA transsexualism condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transshipment is a kind of transportation", "pln": ["(: cnet_isa_82c9feab1a (IsA transshipment transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transubstantiation is a kind of theological doctrine", "pln": ["(: cnet_isa_8a10f77c62 (IsA transubstantiation theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transudate is a kind of discharge", "pln": ["(: cnet_isa_51989b7cb6 (IsA transudate discharge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transuranic element is a kind of chemical element", "pln": ["(: cnet_isa_7cc428fef8 (IsA transuranic_element chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transurethral resection of prostate is a kind of resection", "pln": ["(: cnet_isa_b71ed21f50 (IsA transurethral_resection_of_prostate resection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transverse colon is a kind of colon", "pln": ["(: cnet_isa_1a800a783e (IsA transverse_colon colon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transverse process is a kind of process", "pln": ["(: cnet_isa_a385f4eb30 (IsA transverse_process process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transverse sinus is a kind of venous sinus", "pln": ["(: cnet_isa_a05269ca8a (IsA transverse_sinus venous_sinus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transversus abdominis muscle is a kind of abdominal", "pln": ["(: cnet_isa_8a7130d102 (IsA transversus_abdominis_muscle abdominal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transvestism is a kind of practice", "pln": ["(: cnet_isa_1d0974dfda (IsA transvestism practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "transvestite is a kind of person", "pln": ["(: cnet_isa_23dd186a71 (IsA transvestite person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tranylcypromine is a kind of monoamine oxidase inhibitor", "pln": ["(: cnet_isa_c970cda0f5 (IsA tranylcypromine monoamine_oxidase_inhibitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trap is a kind of device", "pln": ["(: cnet_isa_4a3f373c13 (IsA trap device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trap is a kind of carriage", "pln": ["(: cnet_isa_8f15dffb7a (IsA trap carriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trap is a kind of drain", "pln": ["(: cnet_isa_a845f97ce2 (IsA trap drain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trap is a kind of mechanical device", "pln": ["(: cnet_isa_db96125a56 (IsA trap mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trap is a kind of mouth", "pln": ["(: cnet_isa_b6022bf0da (IsA trap mouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trap is a kind of design", "pln": ["(: cnet_isa_c74f62f627 (IsA trap design) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trap and drain auger is a kind of plumber s snake", "pln": ["(: cnet_isa_b44e6f553f (IsA trap_and_drain_auger plumber_s_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trap block is a kind of blocking", "pln": ["(: cnet_isa_e6d7f7d7ac (IsA trap_block blocking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trap door is a kind of door", "pln": ["(: cnet_isa_1d9665c81e (IsA trap_door door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trap door spider is a kind of spider", "pln": ["(: cnet_isa_340f4dc4eb (IsA trap_door_spider spider) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trap line is a kind of line", "pln": ["(: cnet_isa_eafb5d003b (IsA trap_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trapa is a kind of dicot genus", "pln": ["(: cnet_isa_df1d3e013f (IsA trapa dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trapaceae is a kind of dicot family", "pln": ["(: cnet_isa_db6db5418c (IsA trapaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trapeze is a kind of swing", "pln": ["(: cnet_isa_91d0607884 (IsA trapeze swing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trapezium is a kind of carpal bone", "pln": ["(: cnet_isa_1d1a79a0e8 (IsA trapezium carpal_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trapezium is a kind of multiple star", "pln": ["(: cnet_isa_0593f68ac6 (IsA trapezium multiple_star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trapezium is a kind of quadrilateral", "pln": ["(: cnet_isa_3b50072a45 (IsA trapezium quadrilateral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trapezius is a kind of skeletal muscle", "pln": ["(: cnet_isa_13663c9715 (IsA trapezius skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trapezohedron is a kind of polyhedron", "pln": ["(: cnet_isa_46ce2f571c (IsA trapezohedron polyhedron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trapezoid is a kind of carpal bone", "pln": ["(: cnet_isa_40c5dea205 (IsA trapezoid carpal_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trapezoid is a kind of quadrilateral", "pln": ["(: cnet_isa_3d4d653f24 (IsA trapezoid quadrilateral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trapper s tea is a kind of shrub", "pln": ["(: cnet_isa_898c19fb0f (IsA trapper_s_tea shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trapper is a kind of hunter", "pln": ["(: cnet_isa_df2354acc3 (IsA trapper hunter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trapshooter is a kind of shot", "pln": ["(: cnet_isa_22e2bfb4be (IsA trapshooter shot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trash is a kind of object", "pln": ["(: cnet_isa_802103a9ff (IsA trash object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trash is a kind of rabble", "pln": ["(: cnet_isa_101e88e19f (IsA trash rabble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trauma is a kind of psychological state", "pln": ["(: cnet_isa_2fddcd07b3 (IsA trauma psychological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "traumatology is a kind of medicine", "pln": ["(: cnet_isa_ad5d4169ab (IsA traumatology medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "traumatophobia is a kind of social phobia", "pln": ["(: cnet_isa_f01c593301 (IsA traumatophobia social_phobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trautvetteria is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_8c05293786 (IsA trautvetteria magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trave is a kind of beam", "pln": ["(: cnet_isa_68c902a9ee (IsA trave beam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "travel is a kind of motion", "pln": ["(: cnet_isa_b12ab4e368 (IsA travel motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "travel agency is a kind of agency", "pln": ["(: cnet_isa_c45333fe85 (IsA travel_agency agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "travel agent is a kind of agent", "pln": ["(: cnet_isa_8babc82319 (IsA travel_agent agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "travel allowance is a kind of allowance", "pln": ["(: cnet_isa_c23f7c5331 (IsA travel_allowance allowance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "travel bargain is a kind of bargain", "pln": ["(: cnet_isa_3cf7486810 (IsA travel_bargain bargain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "travel expense is a kind of expense", "pln": ["(: cnet_isa_da91742f8c (IsA travel_expense expense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "travel guidebook is a kind of guidebook", "pln": ["(: cnet_isa_81aa16028b (IsA travel_guidebook guidebook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "travel iron is a kind of iron", "pln": ["(: cnet_isa_0cdfb87c81 (IsA travel_iron iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "travel plan is a kind of plan of action", "pln": ["(: cnet_isa_834d786e31 (IsA travel_plan plan_of_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "travel time is a kind of time period", "pln": ["(: cnet_isa_2386974b3e (IsA travel_time time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "traveler s check is a kind of traveler s letter of credit", "pln": ["(: cnet_isa_b9a29ea9b2 (IsA traveler_s_check traveler_s_letter_of_credit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "traveler s joy is a kind of clematis", "pln": ["(: cnet_isa_812fde6f21 (IsA traveler_s_joy clematis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "traveler s letter of credit is a kind of letter of credit", "pln": ["(: cnet_isa_17f19a8798 (IsA traveler_s_letter_of_credit letter_of_credit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "traveler s tree is a kind of woody plant", "pln": ["(: cnet_isa_9c7eca609f (IsA traveler_s_tree woody_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "traveler is a kind of person", "pln": ["(: cnet_isa_0a5226dd58 (IsA traveler person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "traveling salesman is a kind of salesman", "pln": ["(: cnet_isa_d8e2a6c458 (IsA traveling_salesman salesman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "traveling salesman is a kind of spokesperson", "pln": ["(: cnet_isa_7a615b5202 (IsA traveling_salesman spokesperson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "traveling wave is a kind of wave", "pln": ["(: cnet_isa_026dd4a9f0 (IsA traveling_wave wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "travelling abroad is a kind of great experience", "pln": ["(: cnet_isa_72adc39295 (IsA travelling_abroad great_experience) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "travelogue is a kind of attraction", "pln": ["(: cnet_isa_d3798bc482 (IsA travelogue attraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "traversal is a kind of crossing", "pln": ["(: cnet_isa_1b8e04cd27 (IsA traversal crossing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "traversal is a kind of travel", "pln": ["(: cnet_isa_98b193a1c6 (IsA traversal travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "traverser is a kind of mover", "pln": ["(: cnet_isa_a5d472eaeb (IsA traverser mover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trawl is a kind of fishing line", "pln": ["(: cnet_isa_89681fe8df (IsA trawl fishing_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trawl is a kind of fishnet", "pln": ["(: cnet_isa_c7867f783b (IsA trawl fishnet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trawler is a kind of fishing boat", "pln": ["(: cnet_isa_fdd3b4247c (IsA trawler fishing_boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trawler is a kind of fisherman", "pln": ["(: cnet_isa_5ac298f6fd (IsA trawler fisherman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tray is a kind of receptacle", "pln": ["(: cnet_isa_07765be05c (IsA tray receptacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tray cloth is a kind of table linen", "pln": ["(: cnet_isa_d8229fc38c (IsA tray_cloth table_linen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treachery is a kind of dishonesty", "pln": ["(: cnet_isa_1f3a924ed8 (IsA treachery dishonesty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treacle is a kind of sentimentalism", "pln": ["(: cnet_isa_6289454f97 (IsA treacle sentimentalism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treacle is a kind of syrup", "pln": ["(: cnet_isa_8b2fe77308 (IsA treacle syrup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tread is a kind of contact", "pln": ["(: cnet_isa_2f3db3027b (IsA tread contact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tread is a kind of structural member", "pln": ["(: cnet_isa_169d9e3575 (IsA tread structural_member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tread is a kind of surface", "pln": ["(: cnet_isa_3a3f693dec (IsA tread surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treading water is a kind of swimming stroke", "pln": ["(: cnet_isa_dfe3685060 (IsA treading_water swimming_stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treadmill is a kind of occupation", "pln": ["(: cnet_isa_aa22937d51 (IsA treadmill occupation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "treadmill is a kind of exercise device", "pln": ["(: cnet_isa_a89a14a4c1 (IsA treadmill exercise_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treadmill is a kind of mill", "pln": ["(: cnet_isa_6083afc716 (IsA treadmill mill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treadmill test is a kind of stress test", "pln": ["(: cnet_isa_50b8a803fd (IsA treadmill_test stress_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treason is a kind of crime", "pln": ["(: cnet_isa_69f2fa9f0f (IsA treason crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treason is a kind of disloyalty", "pln": ["(: cnet_isa_fd60327b52 (IsA treason disloyalty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treasure is a kind of collection", "pln": ["(: cnet_isa_4a4f605b90 (IsA treasure collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "treasure is a kind of possession", "pln": ["(: cnet_isa_299d8e1717 (IsA treasure possession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "treasure is a kind of wealth", "pln": ["(: cnet_isa_6e2f3d7715 (IsA treasure wealth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treasure chest is a kind of chest", "pln": ["(: cnet_isa_d950c580ec (IsA treasure_chest chest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treasure flower is a kind of gazania", "pln": ["(: cnet_isa_f04880a2d6 (IsA treasure_flower gazania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treasure house is a kind of storehouse", "pln": ["(: cnet_isa_b8400c2b50 (IsA treasure_house storehouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treasure hunt is a kind of game", "pln": ["(: cnet_isa_25049e3ce2 (IsA treasure_hunt game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treasure ship is a kind of ship", "pln": ["(: cnet_isa_cb4402eea9 (IsA treasure_ship ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treasure trove is a kind of collection", "pln": ["(: cnet_isa_6f7d5257df (IsA treasure_trove collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treasure trove is a kind of treasure", "pln": ["(: cnet_isa_fd4b04c7de (IsA treasure_trove treasure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treasurer is a kind of money handler", "pln": ["(: cnet_isa_558052d8b9 (IsA treasurer money_handler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treasurership is a kind of position", "pln": ["(: cnet_isa_b7e915f73b (IsA treasurership position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treasury is a kind of government bond", "pln": ["(: cnet_isa_d0d8c3d649 (IsA treasury government_bond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treasury is a kind of depository", "pln": ["(: cnet_isa_01c0427844 (IsA treasury depository) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treasury is a kind of government department", "pln": ["(: cnet_isa_4cf5b51522 (IsA treasury government_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treasury is a kind of fund", "pln": ["(: cnet_isa_33b0e668af (IsA treasury fund) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treasury bill is a kind of treasury", "pln": ["(: cnet_isa_8a3f30f937 (IsA treasury_bill treasury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treasury bond is a kind of treasury", "pln": ["(: cnet_isa_7858121656 (IsA treasury_bond treasury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treasury note is a kind of treasury", "pln": ["(: cnet_isa_2dcb7465f7 (IsA treasury_note treasury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treasury secretary is a kind of secretary", "pln": ["(: cnet_isa_eabf009ccb (IsA treasury_secretary secretary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treasury stock is a kind of stock", "pln": ["(: cnet_isa_58b876783c (IsA treasury_stock stock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treat is a kind of happening", "pln": ["(: cnet_isa_0e8fa4bcab (IsA treat happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treatise is a kind of writing", "pln": ["(: cnet_isa_ad7cdc8fb1 (IsA treatise writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "treatment is a kind of care", "pln": ["(: cnet_isa_b64daa4cf0 (IsA treatment care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treatment is a kind of management", "pln": ["(: cnet_isa_bb9a1972fd (IsA treatment management) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treatment is a kind of artistic style", "pln": ["(: cnet_isa_11a083b2f9 (IsA treatment artistic_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treaty is a kind of written agreement", "pln": ["(: cnet_isa_ea5713ae61 (IsA treaty written_agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treaty port is a kind of port", "pln": ["(: cnet_isa_3285e21bd3 (IsA treaty_port port) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treble clef is a kind of clef", "pln": ["(: cnet_isa_fa5596a162 (IsA treble_clef clef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treble damage is a kind of punitive damage", "pln": ["(: cnet_isa_e7ea5d1adf (IsA treble_damage punitive_damage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree is a kind of plant", "pln": ["(: cnet_isa_2b2a7a8283 (IsA tree plant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree is a kind of tall plant", "pln": ["(: cnet_isa_2b97968e3b (IsA tree tall_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree is a kind of woody plant", "pln": ["(: cnet_isa_f78b0b4c06 (IsA tree woody_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree is a kind of plane figure", "pln": ["(: cnet_isa_74da7372fe (IsA tree plane_figure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree cotton is a kind of cotton", "pln": ["(: cnet_isa_8ceee65167 (IsA tree_cotton cotton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree cricket is a kind of cricket", "pln": ["(: cnet_isa_92314c1270 (IsA tree_cricket cricket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree farm is a kind of forest", "pln": ["(: cnet_isa_64d17901d3 (IsA tree_farm forest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree fern is a kind of fern", "pln": ["(: cnet_isa_bb856df561 (IsA tree_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree frog is a kind of frog", "pln": ["(: cnet_isa_176d913076 (IsA tree_frog frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tree heath is a kind of australian heath", "pln": ["(: cnet_isa_5efca44781 (IsA tree_heath australian_heath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree heath is a kind of erica", "pln": ["(: cnet_isa_cb8a93a79b (IsA tree_heath erica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree house is a kind of playhouse", "pln": ["(: cnet_isa_abddc21267 (IsA tree_house playhouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree hugger is a kind of environmentalist", "pln": ["(: cnet_isa_a6b3e2a940 (IsA tree_hugger environmentalist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree lizard is a kind of iguanid", "pln": ["(: cnet_isa_d4c0490adf (IsA tree_lizard iguanid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree lupine is a kind of shrub", "pln": ["(: cnet_isa_6367186aec (IsA tree_lupine shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree mallow is a kind of shrub", "pln": ["(: cnet_isa_e83a6094d1 (IsA tree_mallow shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree of heaven is a kind of ailanthus", "pln": ["(: cnet_isa_fcb310e607 (IsA tree_of_heaven ailanthus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree of knowledge is a kind of tree", "pln": ["(: cnet_isa_40ffab5bed (IsA tree_of_knowledge tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree onion is a kind of onion", "pln": ["(: cnet_isa_bd0a525af7 (IsA tree_onion onion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree shrew is a kind of placental", "pln": ["(: cnet_isa_6557b4adda (IsA tree_shrew placental) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree sparrow is a kind of new world sparrow", "pln": ["(: cnet_isa_8379475176 (IsA tree_sparrow new_world_sparrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree sparrow is a kind of sparrow", "pln": ["(: cnet_isa_aeab208d81 (IsA tree_sparrow sparrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree squirrel is a kind of squirrel", "pln": ["(: cnet_isa_d13d629a2c (IsA tree_squirrel squirrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree surgeon is a kind of specialist", "pln": ["(: cnet_isa_6e6fcf195e (IsA tree_surgeon specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree surgery is a kind of care", "pln": ["(: cnet_isa_96629617c7 (IsA tree_surgery care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree swallow is a kind of swallow", "pln": ["(: cnet_isa_886f31e8ae (IsA tree_swallow swallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree swift is a kind of apodiform bird", "pln": ["(: cnet_isa_f944cab7d1 (IsA tree_swift apodiform_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree toad is a kind of frog", "pln": ["(: cnet_isa_b89b5ef04b (IsA tree_toad frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree tobacco is a kind of tobacco", "pln": ["(: cnet_isa_e8acce4cfa (IsA tree_tobacco tobacco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree tomato is a kind of shrub", "pln": ["(: cnet_isa_c181069dd4 (IsA tree_tomato shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree wallaby is a kind of wallaby", "pln": ["(: cnet_isa_c46ec359f6 (IsA tree_wallaby wallaby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treehopper is a kind of plant hopper", "pln": ["(: cnet_isa_9c8008cf7d (IsA treehopper plant_hopper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treelet is a kind of tree", "pln": ["(: cnet_isa_fff584702e (IsA treelet tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treenail is a kind of peg", "pln": ["(: cnet_isa_95b702f655 (IsA treenail peg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree is a kind of taller than plant", "pln": ["(: cnet_isa_c2357e292b (IsA tree taller_than_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tree and flower is a kind of plant", "pln": ["(: cnet_isa_deab22cc46 (IsA tree_and_flower plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trefoil is a kind of architectural ornament", "pln": ["(: cnet_isa_f388e5b282 (IsA trefoil architectural_ornament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trefoil arch is a kind of pointed arch", "pln": ["(: cnet_isa_fc574079a6 (IsA trefoil_arch pointed_arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trek is a kind of journey", "pln": ["(: cnet_isa_dc729686e8 (IsA trek journey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trek is a kind of trip", "pln": ["(: cnet_isa_40fe892d2f (IsA trek trip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trekker is a kind of traveler", "pln": ["(: cnet_isa_8598d22247 (IsA trekker traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "trembles is a kind of animal disease", "pln": ["(: cnet_isa_d21642f959 (IsA trembles animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trellis is a kind of lattice", "pln": ["(: cnet_isa_f54afc9d80 (IsA trellis lattice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trema is a kind of dicot genus", "pln": ["(: cnet_isa_2a43d62247 (IsA trema dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trematoda is a kind of class", "pln": ["(: cnet_isa_30502c1f7b (IsA trematoda class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tremble is a kind of reflex", "pln": ["(: cnet_isa_c34982dddb (IsA tremble reflex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tremble is a kind of animal disease", "pln": ["(: cnet_isa_11a1c48d0d (IsA tremble animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tremella is a kind of fungus genus", "pln": ["(: cnet_isa_99f1c0449d (IsA tremella fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tremella foliacea is a kind of jelly fungus", "pln": ["(: cnet_isa_00b88da554 (IsA tremella_foliacea jelly_fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tremella reticulata is a kind of jelly fungus", "pln": ["(: cnet_isa_ddaa0f4042 (IsA tremella_reticulata jelly_fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tremellaceae is a kind of fungus family", "pln": ["(: cnet_isa_549b0426c6 (IsA tremellaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tremellale is a kind of fungus order", "pln": ["(: cnet_isa_652ef07627 (IsA tremellale fungus_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tremolite is a kind of asbesto", "pln": ["(: cnet_isa_2eaceb3e2a (IsA tremolite asbesto) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tremolo is a kind of vibrato", "pln": ["(: cnet_isa_70dd3e370e (IsA tremolo vibrato) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tremolo is a kind of vibe", "pln": ["(: cnet_isa_cbaa02dc2e (IsA tremolo vibe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tremor is a kind of vibration", "pln": ["(: cnet_isa_21fd794c66 (IsA tremor vibration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tremor is a kind of earthquake", "pln": ["(: cnet_isa_4ed9666e71 (IsA tremor earthquake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tremor is a kind of vibe", "pln": ["(: cnet_isa_ae7abcf392 (IsA tremor vibe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trench is a kind of ditch", "pln": ["(: cnet_isa_e7a494c594 (IsA trench ditch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trench is a kind of natural depression", "pln": ["(: cnet_isa_252746f12f (IsA trench natural_depression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trench coat is a kind of raincoat", "pln": ["(: cnet_isa_b96ea814c7 (IsA trench_coat raincoat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trench fever is a kind of rickettsial disease", "pln": ["(: cnet_isa_8b687c9b5d (IsA trench_fever rickettsial_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trench foot is a kind of frostbite", "pln": ["(: cnet_isa_a41e7dbe58 (IsA trench_foot frostbite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trench knife is a kind of knife", "pln": ["(: cnet_isa_5e39321340 (IsA trench_knife knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trench warfare is a kind of combat", "pln": ["(: cnet_isa_a4ef6c7760 (IsA trench_warfare combat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trench warfare is a kind of war", "pln": ["(: cnet_isa_acca87ff3e (IsA trench_warfare war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trencher is a kind of board", "pln": ["(: cnet_isa_ab943780f0 (IsA trencher board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trencher is a kind of digger", "pln": ["(: cnet_isa_f366f2bb97 (IsA trencher digger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trend analysis is a kind of analysis", "pln": ["(: cnet_isa_e6245c1290 (IsA trend_analysis analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trend line is a kind of line", "pln": ["(: cnet_isa_ce174820cd (IsA trend_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trend setter is a kind of model", "pln": ["(: cnet_isa_02485df210 (IsA trend_setter model) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trend setting is a kind of leadership", "pln": ["(: cnet_isa_fce3bbd08a (IsA trend_setting leadership) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trepan is a kind of drill", "pln": ["(: cnet_isa_57ecb57d66 (IsA trepan drill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trepan is a kind of surgical instrument", "pln": ["(: cnet_isa_de1bf64a91 (IsA trepan surgical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trepang is a kind of sea cucumber", "pln": ["(: cnet_isa_f74e288326 (IsA trepang sea_cucumber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trephination is a kind of operation", "pln": ["(: cnet_isa_176ad7ffdd (IsA trephination operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trepidation is a kind of apprehension", "pln": ["(: cnet_isa_81b1bfd1a7 (IsA trepidation apprehension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treponema is a kind of spirochete", "pln": ["(: cnet_isa_1a6d1a043d (IsA treponema spirochete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "treponemataceae is a kind of bacteria family", "pln": ["(: cnet_isa_80ad617dab (IsA treponemataceae bacteria_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trespass is a kind of tort", "pln": ["(: cnet_isa_49b417d78f (IsA trespass tort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trespass is a kind of wrongdoing", "pln": ["(: cnet_isa_03ffc3484c (IsA trespass wrongdoing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trespass de bonis asportatis is a kind of trespass", "pln": ["(: cnet_isa_ddeeccac54 (IsA trespass_de_bonis_asportatis trespass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trespass on case is a kind of trespass", "pln": ["(: cnet_isa_c59d468f94 (IsA trespass_on_case trespass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trespass quare clausum fregit is a kind of trespass", "pln": ["(: cnet_isa_fdace64605 (IsA trespass_quare_clausum_fregit trespass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trespass viet armis is a kind of trespass", "pln": ["(: cnet_isa_72126dc0e0 (IsA trespass_viet_armis trespass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trestle is a kind of sawhorse", "pln": ["(: cnet_isa_5225c4854a (IsA trestle sawhorse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trestle is a kind of supporting tower", "pln": ["(: cnet_isa_dc02cdc4a3 (IsA trestle supporting_tower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trestle bridge is a kind of bridge", "pln": ["(: cnet_isa_294ba4a811 (IsA trestle_bridge bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trestle table is a kind of table", "pln": ["(: cnet_isa_5e6ff3391c (IsA trestle_table table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trestlework is a kind of structure", "pln": ["(: cnet_isa_3e277ae588 (IsA trestlework structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trew is a kind of pair of trouser", "pln": ["(: cnet_isa_354c290d38 (IsA trew pair_of_trouser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trey is a kind of playing card", "pln": ["(: cnet_isa_fd3ae01e2b (IsA trey playing_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tri chad is a kind of chad", "pln": ["(: cnet_isa_548b1ddd2e (IsA tri_chad chad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tri iodothyronine is a kind of iodothyronine", "pln": ["(: cnet_isa_14bb1906e5 (IsA tri_iodothyronine iodothyronine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triaenodon is a kind of fish genus", "pln": ["(: cnet_isa_30f726495e (IsA triaenodon fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triage is a kind of sorting", "pln": ["(: cnet_isa_8f10035d37 (IsA triage sorting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triakidae is a kind of fish family", "pln": ["(: cnet_isa_43b9b2fdda (IsA triakidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trial is a kind of experiment", "pln": ["(: cnet_isa_717eace786 (IsA trial experiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trial is a kind of affliction", "pln": ["(: cnet_isa_1c2ca0e1ca (IsA trial affliction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trial is a kind of proceeding", "pln": ["(: cnet_isa_4aa5f63a7b (IsA trial proceeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trial is a kind of contest", "pln": ["(: cnet_isa_0b53096a95 (IsA trial contest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trial and error is a kind of experiment", "pln": ["(: cnet_isa_fee96ee248 (IsA trial_and_error experiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trial attorney is a kind of lawyer", "pln": ["(: cnet_isa_277c0ee534 (IsA trial_attorney lawyer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trial balance is a kind of balance", "pln": ["(: cnet_isa_a752a56dfb (IsA trial_balance balance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trial balloon is a kind of balloon", "pln": ["(: cnet_isa_b1acc0c9ee (IsA trial_balloon balloon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trial balloon is a kind of trial", "pln": ["(: cnet_isa_18eba56909 (IsA trial_balloon trial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trial court is a kind of court", "pln": ["(: cnet_isa_48bb72faf3 (IsA trial_court court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trial judge is a kind of judge", "pln": ["(: cnet_isa_dc9abdb24b (IsA trial_judge judge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trial period is a kind of time period", "pln": ["(: cnet_isa_a95672c8bf (IsA trial_period time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trialeurode is a kind of arthropod genus", "pln": ["(: cnet_isa_37ed872e81 (IsA trialeurode arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triangle is a kind of closed shape with three side", "pln": ["(: cnet_isa_f4d2722666 (IsA triangle closed_shape_with_three_side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triangle is a kind of figure", "pln": ["(: cnet_isa_fed64151d7 (IsA triangle figure) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triangle is a kind of geometric figure with three side", "pln": ["(: cnet_isa_d9c8129edd (IsA triangle geometric_figure_with_three_side) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triangle is a kind of instrument", "pln": ["(: cnet_isa_70ed187da2 (IsA triangle instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triangle is a kind of shape", "pln": ["(: cnet_isa_c0fcc1aa02 (IsA triangle shape) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triangle is a kind of small percussion instrument", "pln": ["(: cnet_isa_b61fe3494d (IsA triangle small_percussion_instrument) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triangle is a kind of drafting instrument", "pln": ["(: cnet_isa_5cbbd15f11 (IsA triangle drafting_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triangle is a kind of percussion instrument", "pln": ["(: cnet_isa_0e6638d417 (IsA triangle percussion_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triangle is a kind of polygon", "pln": ["(: cnet_isa_b1145fc823 (IsA triangle polygon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triangle with three equal side is a kind of equilateral triangle", "pln": ["(: cnet_isa_a78dc38807 (IsA triangle_with_three_equal_side equilateral_triangle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triangular prism is a kind of prism", "pln": ["(: cnet_isa_662dac1284 (IsA triangular_prism prism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triangularity is a kind of angularity", "pln": ["(: cnet_isa_a67a6b79d2 (IsA triangularity angularity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triangulation is a kind of surveying", "pln": ["(: cnet_isa_78f794160f (IsA triangulation surveying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triangulation is a kind of trigonometry", "pln": ["(: cnet_isa_9ca4ee47dd (IsA triangulation trigonometry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triatoma is a kind of arthropod genus", "pln": ["(: cnet_isa_efc4dd8422 (IsA triatoma arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triazine is a kind of compound", "pln": ["(: cnet_isa_4ecb13fad3 (IsA triazine compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tribadism is a kind of lesbianism", "pln": ["(: cnet_isa_e75645423c (IsA tribadism lesbianism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tribal society is a kind of society", "pln": ["(: cnet_isa_672d956668 (IsA tribal_society society) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tribalism is a kind of belief", "pln": ["(: cnet_isa_71bb3199d4 (IsA tribalism belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tribalism is a kind of state", "pln": ["(: cnet_isa_90b734ae20 (IsA tribalism state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tribalization is a kind of union", "pln": ["(: cnet_isa_c2814c257a (IsA tribalization union) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tribasic acid is a kind of acid", "pln": ["(: cnet_isa_777248e187 (IsA tribasic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tribe is a kind of taxonomic group", "pln": ["(: cnet_isa_fe72a68859 (IsA tribe taxonomic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tribe is a kind of nation", "pln": ["(: cnet_isa_2b5d7ebf9f (IsA tribe nation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tribe is a kind of social group", "pln": ["(: cnet_isa_192f6a79ef (IsA tribe social_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tribe of israel is a kind of kin", "pln": ["(: cnet_isa_20f092e925 (IsA tribe_of_israel kin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tribesman is a kind of member", "pln": ["(: cnet_isa_b94818e645 (IsA tribesman member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tribolium is a kind of arthropod genus", "pln": ["(: cnet_isa_540979dfa8 (IsA tribolium arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tribologist is a kind of mechanical engineer", "pln": ["(: cnet_isa_c45e8b834f (IsA tribologist mechanical_engineer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tribology is a kind of mechanical engineering", "pln": ["(: cnet_isa_13308f48da (IsA tribology mechanical_engineering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tribonema is a kind of protoctist genus", "pln": ["(: cnet_isa_3c4969b1b9 (IsA tribonema protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tribonemaceae is a kind of protoctist family", "pln": ["(: cnet_isa_2bf6e2d2b6 (IsA tribonemaceae protoctist_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tribromoethanol is a kind of intravenous anesthetic", "pln": ["(: cnet_isa_f0f5e2b13f (IsA tribromoethanol intravenous_anesthetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tribulus is a kind of rosid dicot genus", "pln": ["(: cnet_isa_99acfe0319 (IsA tribulus rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tribune is a kind of defender", "pln": ["(: cnet_isa_0b2adb37a8 (IsA tribune defender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tribune is a kind of apse", "pln": ["(: cnet_isa_e7843f5ef0 (IsA tribune apse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tribuneship is a kind of position", "pln": ["(: cnet_isa_a866271e20 (IsA tribuneship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tribute is a kind of payment", "pln": ["(: cnet_isa_cc312333b5 (IsA tribute payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tribute is a kind of approval", "pln": ["(: cnet_isa_cb045ed739 (IsA tribute approval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tribute album is a kind of concept album", "pln": ["(: cnet_isa_9b7ec49194 (IsA tribute_album concept_album) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tributyrin is a kind of butyrin", "pln": ["(: cnet_isa_2bdac4c371 (IsA tributyrin butyrin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tricep is a kind of skeletal muscle", "pln": ["(: cnet_isa_41ec2aa4cb (IsA tricep skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tricep brachii is a kind of tricep", "pln": ["(: cnet_isa_4f25fc2a26 (IsA tricep_brachii tricep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triceratop is a kind of ceratopsian", "pln": ["(: cnet_isa_61a6c0f72b (IsA triceratop ceratopsian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trichechidae is a kind of mammal family", "pln": ["(: cnet_isa_a124d223e4 (IsA trichechidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trichechus is a kind of mammal genus", "pln": ["(: cnet_isa_e28792d55f (IsA trichechus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trichina is a kind of nematode", "pln": ["(: cnet_isa_98ae64174c (IsA trichina nematode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trichinosis is a kind of infestation", "pln": ["(: cnet_isa_3101795ee5 (IsA trichinosis infestation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trichinosis is a kind of myositis", "pln": ["(: cnet_isa_affbbd27da (IsA trichinosis myositis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trichion is a kind of point", "pln": ["(: cnet_isa_e6d01ec03d (IsA trichion point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trichiuridae is a kind of fish family", "pln": ["(: cnet_isa_93e6016727 (IsA trichiuridae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trichloride is a kind of chloride", "pln": ["(: cnet_isa_ffc96afe86 (IsA trichloride chloride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trichloroacetic acid is a kind of acetic acid", "pln": ["(: cnet_isa_31efbc10ab (IsA trichloroacetic_acid acetic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trichloroethylene is a kind of ethylene", "pln": ["(: cnet_isa_877780bade (IsA trichloroethylene ethylene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trichocero is a kind of monocot genus", "pln": ["(: cnet_isa_f452aa4501 (IsA trichocero monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trichodesmium is a kind of cyanobacteria", "pln": ["(: cnet_isa_c7bdb6fb98 (IsA trichodesmium cyanobacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trichodontidae is a kind of fish family", "pln": ["(: cnet_isa_cfcb9beafa (IsA trichodontidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trichoglossus is a kind of bird genus", "pln": ["(: cnet_isa_fc77d14f5d (IsA trichoglossus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tricholoma is a kind of fungus genus", "pln": ["(: cnet_isa_99008ae9da (IsA tricholoma fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tricholoma aurantium is a kind of agaric", "pln": ["(: cnet_isa_85cabd9421 (IsA tricholoma_aurantium agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tricholoma pardinum is a kind of agaric", "pln": ["(: cnet_isa_676528fcf1 (IsA tricholoma_pardinum agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tricholoma pessundatum is a kind of agaric", "pln": ["(: cnet_isa_133d92e74e (IsA tricholoma_pessundatum agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tricholoma sejunctum is a kind of agaric", "pln": ["(: cnet_isa_af02a51021 (IsA tricholoma_sejunctum agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tricholoma vaccinum is a kind of agaric", "pln": ["(: cnet_isa_ff9d78e824 (IsA tricholoma_vaccinum agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tricholoma venenata is a kind of agaric", "pln": ["(: cnet_isa_018d96999c (IsA tricholoma_venenata agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tricholomataceae is a kind of fungus family", "pln": ["(: cnet_isa_705fcc0c9d (IsA tricholomataceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trichomane is a kind of fern genus", "pln": ["(: cnet_isa_ec71b6829f (IsA trichomane fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trichomonad is a kind of flagellate", "pln": ["(: cnet_isa_cdb3ae5e14 (IsA trichomonad flagellate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trichomoniasis is a kind of protozoal infection", "pln": ["(: cnet_isa_fca9adb49c (IsA trichomoniasis protozoal_infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trichophaga is a kind of arthropod genus", "pln": ["(: cnet_isa_b5bfe6b771 (IsA trichophaga arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trichophyton is a kind of fungus genus", "pln": ["(: cnet_isa_e4b68bbbd5 (IsA trichophyton fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trichoptera is a kind of animal order", "pln": ["(: cnet_isa_2601643cad (IsA trichoptera animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trichopterous insect is a kind of insect", "pln": ["(: cnet_isa_e9335882cb (IsA trichopterous_insect insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trichostema is a kind of asterid dicot genus", "pln": ["(: cnet_isa_870d94b89a (IsA trichostema asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trichostigma is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_2b20d2e459 (IsA trichostigma caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trichosurus is a kind of mammal genus", "pln": ["(: cnet_isa_47e2f1187c (IsA trichosurus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trichothecene is a kind of mycotoxin", "pln": ["(: cnet_isa_545151bb6b (IsA trichothecene mycotoxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trichotillomania is a kind of mania", "pln": ["(: cnet_isa_ce94f43b08 (IsA trichotillomania mania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trichotomy is a kind of classification", "pln": ["(: cnet_isa_95150a34c1 (IsA trichotomy classification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trichroism is a kind of pleochroism", "pln": ["(: cnet_isa_d2efecea58 (IsA trichroism pleochroism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trichuriasis is a kind of infestation", "pln": ["(: cnet_isa_3fcc9d6929 (IsA trichuriasis infestation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trichy is a kind of mammal genus", "pln": ["(: cnet_isa_b0849537ce (IsA trichy mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trick is a kind of device", "pln": ["(: cnet_isa_4da7d2c412 (IsA trick device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trick is a kind of dishonesty", "pln": ["(: cnet_isa_a91b092b52 (IsA trick dishonesty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trick is a kind of turn", "pln": ["(: cnet_isa_75b8cc8078 (IsA trick turn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trick is a kind of shift", "pln": ["(: cnet_isa_9339f96fa4 (IsA trick shift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trick or treat is a kind of request", "pln": ["(: cnet_isa_5eec42230c (IsA trick_or_treat request) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trickery is a kind of deception", "pln": ["(: cnet_isa_b9e1916f7b (IsA trickery deception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trickery is a kind of misrepresentation", "pln": ["(: cnet_isa_d1d0286c85 (IsA trickery misrepresentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trickiness is a kind of complexity", "pln": ["(: cnet_isa_4da511db94 (IsA trickiness complexity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trickster is a kind of spiritual being", "pln": ["(: cnet_isa_fde7e1f9bb (IsA trickster spiritual_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triclinium is a kind of dining room", "pln": ["(: cnet_isa_7344eac465 (IsA triclinium dining_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triclinium is a kind of dining table", "pln": ["(: cnet_isa_2a75dbf0fa (IsA triclinium dining_table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tricolor is a kind of flag", "pln": ["(: cnet_isa_ed8aaa044d (IsA tricolor flag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tricolor television tube is a kind of color tube", "pln": ["(: cnet_isa_6ee54284a5 (IsA tricolor_television_tube color_tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tricorn is a kind of cocked hat", "pln": ["(: cnet_isa_e064bcfbf9 (IsA tricorn cocked_hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tricot is a kind of knit", "pln": ["(: cnet_isa_eb1fe100f4 (IsA tricot knit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tricuspid valve is a kind of atrioventricular valve", "pln": ["(: cnet_isa_56a55617c9 (IsA tricuspid_valve atrioventricular_valve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tricycle is a kind of wheeled vehicle", "pln": ["(: cnet_isa_b762e618bf (IsA tricycle wheeled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tricyclic is a kind of antidepressant", "pln": ["(: cnet_isa_459d3bc1b2 (IsA tricyclic antidepressant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tridacna is a kind of mollusk genus", "pln": ["(: cnet_isa_4961f55724 (IsA tridacna mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tridacnidae is a kind of mollusk family", "pln": ["(: cnet_isa_713e1b2478 (IsA tridacnidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trident is a kind of spear", "pln": ["(: cnet_isa_4b188eb8d0 (IsA trident spear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tridymite is a kind of mineral", "pln": ["(: cnet_isa_9968647dd9 (IsA tridymite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trier is a kind of judge", "pln": ["(: cnet_isa_68296b2c5e (IsA trier judge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trier is a kind of person", "pln": ["(: cnet_isa_6e0790614c (IsA trier person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trifle is a kind of pudding", "pln": ["(: cnet_isa_628298b0fb (IsA trifle pudding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trifler is a kind of idler", "pln": ["(: cnet_isa_a09588b4e1 (IsA trifler idler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trifoliate orange is a kind of tree", "pln": ["(: cnet_isa_6638b0a658 (IsA trifoliate_orange tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trifoliolate leaf is a kind of compound leaf", "pln": ["(: cnet_isa_f67f2b415e (IsA trifoliolate_leaf compound_leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trifolium is a kind of rosid dicot genus", "pln": ["(: cnet_isa_7498454833 (IsA trifolium rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trifurcation is a kind of branching", "pln": ["(: cnet_isa_c16e1e345d (IsA trifurcation branching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triga is a kind of fish genus", "pln": ["(: cnet_isa_66f06cb385 (IsA triga fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trigeminal is a kind of cranial nerve", "pln": ["(: cnet_isa_0e20765e99 (IsA trigeminal cranial_nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trigeminal neuralgia is a kind of neuralgia", "pln": ["(: cnet_isa_761f9a61b9 (IsA trigeminal_neuralgia neuralgia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trigger is a kind of causing", "pln": ["(: cnet_isa_5138c8bc08 (IsA trigger causing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trigger is a kind of device", "pln": ["(: cnet_isa_376dafb6aa (IsA trigger device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triggerfish is a kind of plectognath", "pln": ["(: cnet_isa_55e145ef51 (IsA triggerfish plectognath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triglidae is a kind of fish family", "pln": ["(: cnet_isa_a72fc96616 (IsA triglidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triglinae is a kind of fish family", "pln": ["(: cnet_isa_d71fb963df (IsA triglinae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triglochin is a kind of monocot genus", "pln": ["(: cnet_isa_26f1d82eef (IsA triglochin monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triglyceride is a kind of glyceride", "pln": ["(: cnet_isa_950bdb7c1d (IsA triglyceride glyceride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triglyceride is a kind of lipid", "pln": ["(: cnet_isa_4ea0b91add (IsA triglyceride lipid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trigon is a kind of lyre", "pln": ["(: cnet_isa_ab2d4a0c9c (IsA trigon lyre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trigonella is a kind of rosid dicot genus", "pln": ["(: cnet_isa_395475daac (IsA trigonella rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trigonometric function is a kind of mapping", "pln": ["(: cnet_isa_f66085e1da (IsA trigonometric_function mapping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trigonometrician is a kind of mathematician", "pln": ["(: cnet_isa_ceb9ac3147 (IsA trigonometrician mathematician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trigonometry is a kind of pure mathematic", "pln": ["(: cnet_isa_7f0d317168 (IsA trigonometry pure_mathematic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trigram is a kind of written word", "pln": ["(: cnet_isa_d089c7b4dd (IsA trigram written_word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "triiodothyronine is a kind of thyroid hormone", "pln": ["(: cnet_isa_c6a1931390 (IsA triiodothyronine thyroid_hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trilisa is a kind of asterid dicot genus", "pln": ["(: cnet_isa_bcdda7f9db (IsA trilisa asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trill is a kind of articulation", "pln": ["(: cnet_isa_947ad9582d (IsA trill articulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trill is a kind of note", "pln": ["(: cnet_isa_01a9ccf75d (IsA trill note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trilliaceae is a kind of liliid monocot family", "pln": ["(: cnet_isa_e06e6a4f26 (IsA trilliaceae liliid_monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trillion is a kind of large integer", "pln": ["(: cnet_isa_c0f0d7cc91 (IsA trillion large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trillium is a kind of liliaceous plant", "pln": ["(: cnet_isa_8e424d4772 (IsA trillium liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trilobite is a kind of arthropod", "pln": ["(: cnet_isa_a575d007f0 (IsA trilobite arthropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trilogy is a kind of trio", "pln": ["(: cnet_isa_0910b5db82 (IsA trilogy trio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trim is a kind of cut", "pln": ["(: cnet_isa_674c30d72b (IsA trim cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trim is a kind of attitude", "pln": ["(: cnet_isa_f76a0d3edf (IsA trim attitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trim is a kind of neatness", "pln": ["(: cnet_isa_e2924c8af4 (IsA trim neatness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trimaran is a kind of sailboat", "pln": ["(: cnet_isa_949707ff54 (IsA trimaran sailboat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trimer is a kind of polymer", "pln": ["(: cnet_isa_ae04e48bed (IsA trimer polymer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trimester is a kind of term", "pln": ["(: cnet_isa_68b9c83d27 (IsA trimester term) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trimester is a kind of school term", "pln": ["(: cnet_isa_5965d8891b (IsA trimester school_term) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trimester is a kind of time period", "pln": ["(: cnet_isa_ac74f0b145 (IsA trimester time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trimmer is a kind of capacitor", "pln": ["(: cnet_isa_0b0173a3ef (IsA trimmer capacitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trimmer is a kind of joist", "pln": ["(: cnet_isa_e5f2bc6c17 (IsA trimmer joist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trimmer is a kind of machine", "pln": ["(: cnet_isa_26728073d0 (IsA trimmer machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trimmer arch is a kind of arch", "pln": ["(: cnet_isa_7848932c71 (IsA trimmer_arch arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trimming is a kind of decoration", "pln": ["(: cnet_isa_ea5b4ba1fb (IsA trimming decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trimming is a kind of adornment", "pln": ["(: cnet_isa_05f57999d9 (IsA trimming adornment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "trinectes is a kind of fish genus", "pln": ["(: cnet_isa_12567bb859 (IsA trinectes fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trimorphodon is a kind of reptile genus", "pln": ["(: cnet_isa_e287ff86dd (IsA trimorphodon reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trine immersion is a kind of immersion", "pln": ["(: cnet_isa_e3164c0791 (IsA trine_immersion immersion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trinecte is a kind of fish genus", "pln": ["(: cnet_isa_f6cfaa091a (IsA trinecte fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tringa is a kind of bird genus", "pln": ["(: cnet_isa_895a571552 (IsA tringa bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trinidad and tobago dollar is a kind of dollar", "pln": ["(: cnet_isa_ad1ae9b7f6 (IsA trinidad_and_tobago_dollar dollar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trinidadian is a kind of inhabitant", "pln": ["(: cnet_isa_8fc4413b7b (IsA trinidadian inhabitant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trinitarian is a kind of disciple", "pln": ["(: cnet_isa_d4916403cf (IsA trinitarian disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trinitarianism is a kind of protestantism", "pln": ["(: cnet_isa_c607629cb6 (IsA trinitarianism protestantism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trinity sunday is a kind of christian holy day", "pln": ["(: cnet_isa_1e40698ca5 (IsA trinity_sunday christian_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trinketry is a kind of collection", "pln": ["(: cnet_isa_9b04db711f (IsA trinketry collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trio is a kind of musical composition", "pln": ["(: cnet_isa_e769e0dab2 (IsA trio musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trio is a kind of gathering", "pln": ["(: cnet_isa_7057343d43 (IsA trio gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trio is a kind of musical organization", "pln": ["(: cnet_isa_1bb7e93f05 (IsA trio musical_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "triops is a kind of arthropod genus", "pln": ["(: cnet_isa_8b304983c2 (IsA triops arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trio is a kind of set", "pln": ["(: cnet_isa_83e80cec57 (IsA trio set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triode is a kind of tube", "pln": ["(: cnet_isa_9a53586dd7 (IsA triode tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triolein is a kind of glyceryl ester", "pln": ["(: cnet_isa_0a1a4a5391 (IsA triolein glyceryl_ester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trionychidae is a kind of reptile family", "pln": ["(: cnet_isa_f1283471ab (IsA trionychidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trionyx is a kind of reptile genus", "pln": ["(: cnet_isa_39ad5c4bcb (IsA trionyx reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triopidae is a kind of arthropod family", "pln": ["(: cnet_isa_1280abcdf8 (IsA triopidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triop is a kind of arthropod genus", "pln": ["(: cnet_isa_a69dc3b24a (IsA triop arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triose is a kind of monosaccharide", "pln": ["(: cnet_isa_0e40fed175 (IsA triose monosaccharide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triostium is a kind of asterid dicot genus", "pln": ["(: cnet_isa_3d153703a2 (IsA triostium asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trioxide is a kind of oxide", "pln": ["(: cnet_isa_29a9ff1551 (IsA trioxide oxide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trip is a kind of blunder", "pln": ["(: cnet_isa_14ac40228b (IsA trip blunder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trip is a kind of journey", "pln": ["(: cnet_isa_5708380d8e (IsA trip journey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trip is a kind of step", "pln": ["(: cnet_isa_62ce1f181b (IsA trip step) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trip is a kind of experience", "pln": ["(: cnet_isa_45190b6e0d (IsA trip experience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trip is a kind of hallucination", "pln": ["(: cnet_isa_f91cf37ae2 (IsA trip hallucination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trip line is a kind of rope", "pln": ["(: cnet_isa_344f474029 (IsA trip_line rope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trip wire is a kind of wire", "pln": ["(: cnet_isa_8db7a56aa4 (IsA trip_wire wire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trip wire is a kind of military unit", "pln": ["(: cnet_isa_9d00c83cbd (IsA trip_wire military_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tripalmitin is a kind of glyceryl ester", "pln": ["(: cnet_isa_bc4089dbd6 (IsA tripalmitin glyceryl_ester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tripe is a kind of variety meat", "pln": ["(: cnet_isa_a46c5dd667 (IsA tripe variety_meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triphammer is a kind of hammer", "pln": ["(: cnet_isa_b2d251b07b (IsA triphammer hammer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triphosphopyridine is a kind of pyridine", "pln": ["(: cnet_isa_a9cca17fae (IsA triphosphopyridine pyridine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "triphosphopyridine nucleotide is a kind of coenzyme", "pln": ["(: cnet_isa_0d0dbd3744 (IsA triphosphopyridine_nucleotide coenzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triphosphoric acid is a kind of acid", "pln": ["(: cnet_isa_dca085cf05 (IsA triphosphoric_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triple is a kind of base hit", "pln": ["(: cnet_isa_0f6b1f589c (IsA triple base_hit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triple is a kind of multiple", "pln": ["(: cnet_isa_b64a0ade31 (IsA triple multiple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triple cream is a kind of cheese", "pln": ["(: cnet_isa_0cdf3b317f (IsA triple_cream cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triple crown is a kind of championship", "pln": ["(: cnet_isa_05f43e4dbb (IsA triple_crown championship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triple crown season is a kind of baseball season", "pln": ["(: cnet_isa_4bbfd0acca (IsA triple_crown_season baseball_season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triple jump is a kind of athletic contest", "pln": ["(: cnet_isa_a9f6a2eb83 (IsA triple_jump athletic_contest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triple play is a kind of baseball play", "pln": ["(: cnet_isa_113612dabd (IsA triple_play baseball_play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "triple sec is a kind of orange liqueur", "pln": ["(: cnet_isa_74cf793f4b (IsA triple_sec orange_liqueur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triple spacing is a kind of typing", "pln": ["(: cnet_isa_338eb4cfc4 (IsA triple_spacing typing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triple time is a kind of musical time", "pln": ["(: cnet_isa_49aa09988a (IsA triple_time musical_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triplet is a kind of sibling", "pln": ["(: cnet_isa_3050451317 (IsA triplet sibling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triplet code is a kind of genetic code", "pln": ["(: cnet_isa_83e96d3cd5 (IsA triplet_code genetic_code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tripletail is a kind of percoid fish", "pln": ["(: cnet_isa_6e977db5c4 (IsA tripletail percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tripleurospermum is a kind of asterid dicot genus", "pln": ["(: cnet_isa_baf315138b (IsA tripleurospermum asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triplicate is a kind of copy", "pln": ["(: cnet_isa_8820ae32f4 (IsA triplicate copy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triplicity is a kind of trio", "pln": ["(: cnet_isa_8a436cf0df (IsA triplicity trio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "triplicity is a kind of magnitude", "pln": ["(: cnet_isa_29e75b2d08 (IsA triplicity magnitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tripling is a kind of multiplication", "pln": ["(: cnet_isa_caafb1d8f1 (IsA tripling multiplication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triplochiton is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_57d1a0dca7 (IsA triplochiton dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tripod is a kind of device for stabilizing camera", "pln": ["(: cnet_isa_52ec286e37 (IsA tripod device_for_stabilizing_camera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tripod is a kind of rack", "pln": ["(: cnet_isa_30e0c65950 (IsA tripod rack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tripo is a kind of examination", "pln": ["(: cnet_isa_2d9610aa72 (IsA tripo examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tripper is a kind of catch", "pln": ["(: cnet_isa_7acaada9a5 (IsA tripper catch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tripper is a kind of drug user", "pln": ["(: cnet_isa_5ec7d9d18c (IsA tripper drug_user) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triptych is a kind of art", "pln": ["(: cnet_isa_a76fb61ae2 (IsA triptych art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triquetral is a kind of carpal bone", "pln": ["(: cnet_isa_82af305cd2 (IsA triquetral carpal_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trireme is a kind of galley", "pln": ["(: cnet_isa_8642d4976f (IsA trireme galley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trisaccharide is a kind of oligosaccharide", "pln": ["(: cnet_isa_3b5b691e5b (IsA trisaccharide oligosaccharide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "triskaidekaphobia is a kind of simple phobia", "pln": ["(: cnet_isa_573dea23c4 (IsA triskaidekaphobia simple_phobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triskelion is a kind of design", "pln": ["(: cnet_isa_ba2838db46 (IsA triskelion design) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trismus is a kind of spasm", "pln": ["(: cnet_isa_321b6ded84 (IsA trismus spasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trisodium phosphate is a kind of builder", "pln": ["(: cnet_isa_4b30657dca (IsA trisodium_phosphate builder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trisomy is a kind of chromosomal aberration", "pln": ["(: cnet_isa_ae84663972 (IsA trisomy chromosomal_aberration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tristearin is a kind of glyceryl ester", "pln": ["(: cnet_isa_47e6508b74 (IsA tristearin glyceryl_ester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trisyllable is a kind of word", "pln": ["(: cnet_isa_07b17c7284 (IsA trisyllable word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tritanopia is a kind of yellow blue dichromacy", "pln": ["(: cnet_isa_154a22fdda (IsA tritanopia yellow_blue_dichromacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triteness is a kind of unoriginality", "pln": ["(: cnet_isa_d2624319c3 (IsA triteness unoriginality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tritheism is a kind of heresy", "pln": ["(: cnet_isa_8307f3988d (IsA tritheism heresy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tritheism is a kind of polytheism", "pln": ["(: cnet_isa_e19b6d9e88 (IsA tritheism polytheism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tritheist is a kind of religionist", "pln": ["(: cnet_isa_e573bc0500 (IsA tritheist religionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triticum is a kind of monocot genus", "pln": ["(: cnet_isa_08ed74f88e (IsA triticum monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tritium is a kind of hydrogen", "pln": ["(: cnet_isa_d49621fdba (IsA tritium hydrogen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triton is a kind of seasnail", "pln": ["(: cnet_isa_9bca2d26b5 (IsA triton seasnail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triturus is a kind of amphibian genus", "pln": ["(: cnet_isa_0f96332e92 (IsA triturus amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triumph is a kind of exultation", "pln": ["(: cnet_isa_9a1e86c109 (IsA triumph exultation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triumphal arch is a kind of arch", "pln": ["(: cnet_isa_f7d049b5e8 (IsA triumphal_arch arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triumphal arch is a kind of memorial", "pln": ["(: cnet_isa_4c795f5fee (IsA triumphal_arch memorial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "triumvir is a kind of administrator", "pln": ["(: cnet_isa_61a7b58fc9 (IsA triumvir administrator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "triumvirate is a kind of trio", "pln": ["(: cnet_isa_8809c2400c (IsA triumvirate trio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trivet is a kind of base", "pln": ["(: cnet_isa_615d9b7c17 (IsA trivet base) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trivial pursuit is a kind of board game", "pln": ["(: cnet_isa_b848aec3f8 (IsA trivial_pursuit board_game) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "triviality is a kind of object", "pln": ["(: cnet_isa_1eaae604d5 (IsA triviality object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "troglodytes is a kind of bird genus", "pln": ["(: cnet_isa_54d2c3d266 (IsA troglodytes bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "trolls is a kind of monsters", "pln": ["(: cnet_isa_5a5404518e (IsA trolls monsters) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trivium is a kind of humanistic discipline", "pln": ["(: cnet_isa_98592284ee (IsA trivium humanistic_discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trochanter is a kind of process", "pln": ["(: cnet_isa_cb3049d0c5 (IsA trochanter process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trochee is a kind of metrical foot", "pln": ["(: cnet_isa_5db48a01a1 (IsA trochee metrical_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trochilidae is a kind of bird family", "pln": ["(: cnet_isa_fdbc98fedc (IsA trochilidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trochlear is a kind of cranial nerve", "pln": ["(: cnet_isa_a3b98f4b67 (IsA trochlear cranial_nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trogium is a kind of arthropod genus", "pln": ["(: cnet_isa_7a1dac4ad3 (IsA trogium arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "troglodyte is a kind of bird genus", "pln": ["(: cnet_isa_c0f281238f (IsA troglodyte bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "troglodytidae is a kind of bird family", "pln": ["(: cnet_isa_7cae9b6154 (IsA troglodytidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trogon is a kind of bird", "pln": ["(: cnet_isa_2b81cd5437 (IsA trogon bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trogonidae is a kind of bird family", "pln": ["(: cnet_isa_e350c1f8e3 (IsA trogonidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trogoniforme is a kind of animal order", "pln": ["(: cnet_isa_2f3b8e5897 (IsA trogoniforme animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "troika is a kind of carriage", "pln": ["(: cnet_isa_fe67c95906 (IsA troika carriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "troika is a kind of triumvirate", "pln": ["(: cnet_isa_351444e7d6 (IsA troika triumvirate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trojan is a kind of malevolent program", "pln": ["(: cnet_isa_c93eedf6cc (IsA trojan malevolent_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "troll is a kind of angling", "pln": ["(: cnet_isa_2f9d8883b0 (IsA troll angling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "troll is a kind of fisherman s lure", "pln": ["(: cnet_isa_7aa8999a8a (IsA troll fisherman_s_lure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "troll is a kind of mythical monster", "pln": ["(: cnet_isa_28597e6857 (IsA troll mythical_monster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trolley line is a kind of transit line", "pln": ["(: cnet_isa_dddd49a833 (IsA trolley_line transit_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trolleybus is a kind of bus", "pln": ["(: cnet_isa_13006a1c4b (IsA trolleybus bus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trollius is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_aca3eef2a3 (IsA trollius magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "troll is a kind of monster", "pln": ["(: cnet_isa_d9045e52d8 (IsA troll monster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trombicula is a kind of arthropod genus", "pln": ["(: cnet_isa_79c3a296b0 (IsA trombicula arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trombiculiasis is a kind of infestation", "pln": ["(: cnet_isa_c6d5e61237 (IsA trombiculiasis infestation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trombiculid is a kind of mite", "pln": ["(: cnet_isa_064976109a (IsA trombiculid mite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trombiculidae is a kind of arthropod family", "pln": ["(: cnet_isa_c078d8a4f5 (IsA trombiculidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trombidiid is a kind of mite", "pln": ["(: cnet_isa_73bdffc8f0 (IsA trombidiid mite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trombidiidae is a kind of arthropod family", "pln": ["(: cnet_isa_45a7022722 (IsA trombidiidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trombone is a kind of musical instrument", "pln": ["(: cnet_isa_828b5ca5fc (IsA trombone musical_instrument) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trombone is a kind of brass", "pln": ["(: cnet_isa_6129f6f226 (IsA trombone brass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trombonist is a kind of musician", "pln": ["(: cnet_isa_bc59ffd88a (IsA trombonist musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trompe l oeil is a kind of painting", "pln": ["(: cnet_isa_380b599802 (IsA trompe_l_oeil painting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trompillo is a kind of nightshade", "pln": ["(: cnet_isa_162d2e7de3 (IsA trompillo nightshade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "troop is a kind of army unit", "pln": ["(: cnet_isa_ba9797c902 (IsA troop army_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "troop is a kind of crowd", "pln": ["(: cnet_isa_5de226cf13 (IsA troop crowd) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "troop is a kind of unit", "pln": ["(: cnet_isa_fccf1652b9 (IsA troop unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "troop carrier is a kind of military vehicle", "pln": ["(: cnet_isa_ff462fcc4a (IsA troop_carrier military_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "troop movement is a kind of movement", "pln": ["(: cnet_isa_e3efe8efba (IsA troop_movement movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trooper is a kind of policeman", "pln": ["(: cnet_isa_f7b46af29d (IsA trooper policeman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "troopship is a kind of ship", "pln": ["(: cnet_isa_0cb9a7bab6 (IsA troopship ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "troopship is a kind of troop carrier", "pln": ["(: cnet_isa_2162de7ef4 (IsA troopship troop_carrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tropaeolaceae is a kind of rosid dicot family", "pln": ["(: cnet_isa_0c59c81e16 (IsA tropaeolaceae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tropaeolum is a kind of rosid dicot genus", "pln": ["(: cnet_isa_934ba5b82a (IsA tropaeolum rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trope is a kind of rhetorical device", "pln": ["(: cnet_isa_a789377f57 (IsA trope rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trophobiosis is a kind of symbiosis", "pln": ["(: cnet_isa_cafb0c610d (IsA trophobiosis symbiosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trophoblast is a kind of membrane", "pln": ["(: cnet_isa_5323f886eb (IsA trophoblast membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trophoblastic cancer is a kind of carcinoma", "pln": ["(: cnet_isa_1bd1db20ec (IsA trophoblastic_cancer carcinoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trophotropism is a kind of tropism", "pln": ["(: cnet_isa_112f08f277 (IsA trophotropism tropism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trophozoite is a kind of sporozoan", "pln": ["(: cnet_isa_4c840997a3 (IsA trophozoite sporozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trophy is a kind of award", "pln": ["(: cnet_isa_7f3ef407fb (IsA trophy award) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trophy case is a kind of case", "pln": ["(: cnet_isa_450ddd2d28 (IsA trophy_case case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trophy wife is a kind of wife", "pln": ["(: cnet_isa_d4505d15d8 (IsA trophy_wife wife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tropic is a kind of latitude", "pln": ["(: cnet_isa_c55669ffbe (IsA tropic latitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tropic bird is a kind of pelecaniform seabird", "pln": ["(: cnet_isa_16c17bf78b (IsA tropic_bird pelecaniform_seabird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tropical medicine is a kind of medicine", "pln": ["(: cnet_isa_2a382d8229 (IsA tropical_medicine medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tropical pitcher plant is a kind of pitcher plant", "pln": ["(: cnet_isa_ad4bb77ae6 (IsA tropical_pitcher_plant pitcher_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tropical prawn is a kind of decapod crustacean", "pln": ["(: cnet_isa_8902fe1fb6 (IsA tropical_prawn decapod_crustacean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tropical rain forest is a kind of rain forest", "pln": ["(: cnet_isa_002adb1d25 (IsA tropical_rain_forest rain_forest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tropidoclonion is a kind of reptile genus", "pln": ["(: cnet_isa_032d50e86f (IsA tropidoclonion reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tropism is a kind of reaction", "pln": ["(: cnet_isa_adce551bec (IsA tropism reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "troponym is a kind of word", "pln": ["(: cnet_isa_2fa74fa9e0 (IsA troponym word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "troponymy is a kind of collection", "pln": ["(: cnet_isa_ad30042913 (IsA troponymy collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "troponymy is a kind of semantic relation", "pln": ["(: cnet_isa_0bdf9e96b7 (IsA troponymy semantic_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tropopause is a kind of layer", "pln": ["(: cnet_isa_39389de3b8 (IsA tropopause layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "troposphere is a kind of layer", "pln": ["(: cnet_isa_f77ef9d3c3 (IsA troposphere layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trot is a kind of gait", "pln": ["(: cnet_isa_53a44c7096 (IsA trot gait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trotskyism is a kind of communism", "pln": ["(: cnet_isa_a868c22920 (IsA trotskyism communism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trotskyist is a kind of radical", "pln": ["(: cnet_isa_85e107c078 (IsA trotskyist radical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trotter is a kind of animal foot", "pln": ["(: cnet_isa_c352a79706 (IsA trotter animal_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trotting horse is a kind of racehorse", "pln": ["(: cnet_isa_ea8e7a0976 (IsA trotting_horse racehorse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trou de loup is a kind of pit", "pln": ["(: cnet_isa_f46531bbb7 (IsA trou_de_loup pit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trouble is a kind of effort", "pln": ["(: cnet_isa_fa65f7f621 (IsA trouble effort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trouble is a kind of difficulty", "pln": ["(: cnet_isa_38596b4ef4 (IsA trouble difficulty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trouble is a kind of happening", "pln": ["(: cnet_isa_d2d29461b3 (IsA trouble happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trouble is a kind of pregnancy", "pln": ["(: cnet_isa_e9fdea79c4 (IsA trouble pregnancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trouble spot is a kind of area", "pln": ["(: cnet_isa_f581f2486c (IsA trouble_spot area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "troublemaker is a kind of unwelcome person", "pln": ["(: cnet_isa_bef468740b (IsA troublemaker unwelcome_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "troubleshooter is a kind of maintenance man", "pln": ["(: cnet_isa_dec3f242fe (IsA troubleshooter maintenance_man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "troublesomeness is a kind of difficulty", "pln": ["(: cnet_isa_715386b467 (IsA troublesomeness difficulty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trough is a kind of receptacle", "pln": ["(: cnet_isa_214731348e (IsA trough receptacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trough is a kind of natural depression", "pln": ["(: cnet_isa_f9f58148c7 (IsA trough natural_depression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trouper is a kind of good person", "pln": ["(: cnet_isa_0b1038991d (IsA trouper good_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trouser is a kind of garment", "pln": ["(: cnet_isa_23d7d931b9 (IsA trouser garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trouser cuff is a kind of cuff", "pln": ["(: cnet_isa_9329fa95f7 (IsA trouser_cuff cuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trouser press is a kind of home appliance", "pln": ["(: cnet_isa_e721f55a29 (IsA trouser_press home_appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trouser is a kind of underpant", "pln": ["(: cnet_isa_7196951ea7 (IsA trouser underpant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trousseau is a kind of outfit", "pln": ["(: cnet_isa_3551632874 (IsA trousseau outfit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trout is a kind of fish", "pln": ["(: cnet_isa_5d9bcfb753 (IsA trout fish) (STV 1.0 0.9748))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trout is a kind of food fish", "pln": ["(: cnet_isa_d95a76ee1d (IsA trout food_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trout is a kind of salmonid", "pln": ["(: cnet_isa_7292b62c6a (IsA trout salmonid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trowel is a kind of hand tool", "pln": ["(: cnet_isa_238f43d405 (IsA trowel hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "troy is a kind of system of weight", "pln": ["(: cnet_isa_bd5f4ff80b (IsA troy system_of_weight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "troy pound is a kind of apothecary unit", "pln": ["(: cnet_isa_454c1a5258 (IsA troy_pound apothecary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "troy pound is a kind of troy unit", "pln": ["(: cnet_isa_5a8ca93a80 (IsA troy_pound troy_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "troy unit is a kind of weight unit", "pln": ["(: cnet_isa_3119b27cdc (IsA troy_unit weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truancy is a kind of nonattendance", "pln": ["(: cnet_isa_5e03db346d (IsA truancy nonattendance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truant is a kind of absentee", "pln": ["(: cnet_isa_b6dc52d16f (IsA truant absentee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truck is a kind of automobile", "pln": ["(: cnet_isa_06897d9135 (IsA truck automobile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truck is a kind of bigger than car", "pln": ["(: cnet_isa_d50355298b (IsA truck bigger_than_car) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "truck is a kind of vehicle", "pln": ["(: cnet_isa_04a801d876 (IsA truck vehicle) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truck is a kind of vehicle type", "pln": ["(: cnet_isa_682606d728 (IsA truck vehicle_type) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truck is a kind of vehicle with seat inside", "pln": ["(: cnet_isa_f546b93b98 (IsA truck vehicle_with_seat_inside) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truck is a kind of motor vehicle", "pln": ["(: cnet_isa_a13f01fbb0 (IsA truck motor_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truck bed is a kind of floor", "pln": ["(: cnet_isa_73e22ef465 (IsA truck_bed floor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truck dealer is a kind of dealer", "pln": ["(: cnet_isa_5c89c0676d (IsA truck_dealer dealer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truck farm is a kind of farm", "pln": ["(: cnet_isa_259e67ac91 (IsA truck_farm farm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "truck farming is a kind of farming", "pln": ["(: cnet_isa_e3cb378fac (IsA truck_farming farming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truck stop is a kind of service station", "pln": ["(: cnet_isa_6304c469df (IsA truck_stop service_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truck traffic is a kind of vehicular traffic", "pln": ["(: cnet_isa_78ad5f755f (IsA truck_traffic vehicular_traffic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truckage is a kind of fee", "pln": ["(: cnet_isa_94dbd20739 (IsA truckage fee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trucking company is a kind of shipping company", "pln": ["(: cnet_isa_b71c4ef35f (IsA trucking_company shipping_company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trucking industry is a kind of industry", "pln": ["(: cnet_isa_43d6f399ea (IsA trucking_industry industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truckling is a kind of obedience", "pln": ["(: cnet_isa_bdc70bdc53 (IsA truckling obedience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truculence is a kind of aggressiveness", "pln": ["(: cnet_isa_b99037277e (IsA truculence aggressiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trudge is a kind of hike", "pln": ["(: cnet_isa_4e7680a3eb (IsA trudge hike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trudger is a kind of pedestrian", "pln": ["(: cnet_isa_a90e3435cd (IsA trudger pedestrian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "true is a kind of alignment", "pln": ["(: cnet_isa_1df3eada8f (IsA true alignment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "true anomaly is a kind of angular distance", "pln": ["(: cnet_isa_c3b90fa382 (IsA true_anomaly angular_distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "true bill is a kind of indictment", "pln": ["(: cnet_isa_be327d3eac (IsA true_bill indictment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "true blackberry is a kind of blackberry", "pln": ["(: cnet_isa_01de29e187 (IsA true_blackberry blackberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "true bug is a kind of hemipterous insect", "pln": ["(: cnet_isa_40c7d7111d (IsA true_bug hemipterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "true frog is a kind of frog", "pln": ["(: cnet_isa_3300de3220 (IsA true_frog frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "true fungus is a kind of fungus", "pln": ["(: cnet_isa_5e1ab176f7 (IsA true_fungus fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "true laurel is a kind of laurel", "pln": ["(: cnet_isa_48dbd257c7 (IsA true_laurel laurel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "true lobster is a kind of lobster", "pln": ["(: cnet_isa_70e7f5ee4c (IsA true_lobster lobster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "true mahogany is a kind of mahogany", "pln": ["(: cnet_isa_21312ed7c2 (IsA true_mahogany mahogany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "true marmoset is a kind of marmoset", "pln": ["(: cnet_isa_54db4392f2 (IsA true_marmoset marmoset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "true pepper is a kind of vine", "pln": ["(: cnet_isa_077c530c2a (IsA true_pepper vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "true rib is a kind of rib", "pln": ["(: cnet_isa_0ddf31837d (IsA true_rib rib) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "true sago palm is a kind of sago palm", "pln": ["(: cnet_isa_cce1acce34 (IsA true_sago_palm sago_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "true slime mold is a kind of slime mold", "pln": ["(: cnet_isa_7546cf10f9 (IsA true_slime_mold slime_mold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "true toad is a kind of frog", "pln": ["(: cnet_isa_dbc3b0afd0 (IsA true_toad frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "true vocal cord is a kind of vocal cord", "pln": ["(: cnet_isa_2dd1707876 (IsA true_vocal_cord vocal_cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trueness is a kind of exactness", "pln": ["(: cnet_isa_120c8c96f6 (IsA trueness exactness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truffle is a kind of candy", "pln": ["(: cnet_isa_5072d2cf1e (IsA truffle candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truffle is a kind of vegetable", "pln": ["(: cnet_isa_6780d9eab9 (IsA truffle vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truffle is a kind of fungus", "pln": ["(: cnet_isa_6baf044eea (IsA truffle fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truism is a kind of truth", "pln": ["(: cnet_isa_4875883536 (IsA truism truth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truman doctrine is a kind of foreign policy", "pln": ["(: cnet_isa_c420c68ecc (IsA truman_doctrine foreign_policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trump is a kind of playing card", "pln": ["(: cnet_isa_37c312a99d (IsA trump playing_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trump is a kind of suit", "pln": ["(: cnet_isa_9f61e653fd (IsA trump suit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trumpet is a kind of brass instrument", "pln": ["(: cnet_isa_8ba9def967 (IsA trumpet brass_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trumpet is a kind of instrument", "pln": ["(: cnet_isa_8f6b1ad46c (IsA trumpet instrument) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trumpet is a kind of musical instrument", "pln": ["(: cnet_isa_59edce8ebc (IsA trumpet musical_instrument) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trumpet arch is a kind of squinch", "pln": ["(: cnet_isa_33f6620e19 (IsA trumpet_arch squinch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trumpet creeper is a kind of bignoniaceae", "pln": ["(: cnet_isa_30d04328e2 (IsA trumpet_creeper bignoniaceae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trumpet honeysuckle is a kind of honeysuckle", "pln": ["(: cnet_isa_20d65c0315 (IsA trumpet_honeysuckle honeysuckle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trumpet section is a kind of brass section", "pln": ["(: cnet_isa_044f3be588 (IsA trumpet_section brass_section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trumpeter is a kind of swan", "pln": ["(: cnet_isa_1d21603645 (IsA trumpeter swan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trumpeter is a kind of wading bird", "pln": ["(: cnet_isa_8c1d7582f1 (IsA trumpeter wading_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trumpeter is a kind of musician", "pln": ["(: cnet_isa_84d1d836f4 (IsA trumpeter musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trumpetfish is a kind of teleost fish", "pln": ["(: cnet_isa_4f0c238542 (IsA trumpetfish teleost_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trumpetwood is a kind of angiospermous tree", "pln": ["(: cnet_isa_58c48995e8 (IsA trumpetwood angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truncated cone is a kind of frustum", "pln": ["(: cnet_isa_53ddf76463 (IsA truncated_cone frustum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truncated pyramid is a kind of frustum", "pln": ["(: cnet_isa_6a478ba477 (IsA truncated_pyramid frustum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "truncation is a kind of carving", "pln": ["(: cnet_isa_b3216b527e (IsA truncation carving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truncation is a kind of shortening", "pln": ["(: cnet_isa_65c984edfb (IsA truncation shortening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truncation error is a kind of miscalculation", "pln": ["(: cnet_isa_ef8ccf725c (IsA truncation_error miscalculation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truncheon is a kind of club", "pln": ["(: cnet_isa_c483e4ab13 (IsA truncheon club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truncocolumella is a kind of fungus genus", "pln": ["(: cnet_isa_ef3376e73f (IsA truncocolumella fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truncocolumella citrina is a kind of false truffle", "pln": ["(: cnet_isa_55beb1a68a (IsA truncocolumella_citrina false_truffle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trundle is a kind of roller", "pln": ["(: cnet_isa_6d14153186 (IsA trundle roller) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trundle is a kind of wheel", "pln": ["(: cnet_isa_a08a7aac43 (IsA trundle wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trundle bed is a kind of bed", "pln": ["(: cnet_isa_253125f317 (IsA trundle_bed bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "trunk hose is a kind of breeches", "pln": ["(: cnet_isa_ab4714341e (IsA trunk_hose breeches) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trunk is a kind of part of car", "pln": ["(: cnet_isa_0eed69f7a6 (IsA trunk part_of_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trunk is a kind of baggage", "pln": ["(: cnet_isa_685cda1e6b (IsA trunk baggage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trunk is a kind of stalk", "pln": ["(: cnet_isa_e5c3e0e355 (IsA trunk stalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trunk hose is a kind of breeche", "pln": ["(: cnet_isa_f7c14ad00d (IsA trunk_hose breeche) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trunk lid is a kind of lid", "pln": ["(: cnet_isa_97f1c61086 (IsA trunk_lid lid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trunk line is a kind of line", "pln": ["(: cnet_isa_3b1e7b9557 (IsA trunk_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trunk line is a kind of telephone line", "pln": ["(: cnet_isa_472b7d6662 (IsA trunk_line telephone_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "truss is a kind of framework", "pln": ["(: cnet_isa_f2d6deab95 (IsA truss framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truss is a kind of bandage", "pln": ["(: cnet_isa_25eb659260 (IsA truss bandage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truss bridge is a kind of bridge", "pln": ["(: cnet_isa_9fe76c0bfa (IsA truss_bridge bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trust is a kind of trait", "pln": ["(: cnet_isa_e8be3ea93c (IsA trust trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trust is a kind of consortium", "pln": ["(: cnet_isa_aaa8964d24 (IsA trust consortium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trust is a kind of property", "pln": ["(: cnet_isa_70eb798333 (IsA trust property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trust busting is a kind of government", "pln": ["(: cnet_isa_ec6d5ec2c0 (IsA trust_busting government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trust company is a kind of financial institution", "pln": ["(: cnet_isa_37f432ffe3 (IsA trust_company financial_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trust deed is a kind of legal document", "pln": ["(: cnet_isa_0a2daa3640 (IsA trust_deed legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trust fund is a kind of fund", "pln": ["(: cnet_isa_05a18b7da3 (IsA trust_fund fund) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trust territory is a kind of district", "pln": ["(: cnet_isa_cde8b93ae0 (IsA trust_territory district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trustbuster is a kind of agent", "pln": ["(: cnet_isa_c3e45db88e (IsA trustbuster agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trustee is a kind of fiduciary", "pln": ["(: cnet_isa_067600a6d8 (IsA trustee fiduciary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trustee beneficiary relation is a kind of fiduciary relation", "pln": ["(: cnet_isa_9effa7fdb5 (IsA trustee_beneficiary_relation fiduciary_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trusteeship is a kind of position", "pln": ["(: cnet_isa_67aa1811b3 (IsA trusteeship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trusteeship council is a kind of council", "pln": ["(: cnet_isa_550f24e8bc (IsA trusteeship_council council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trustworthiness is a kind of trait", "pln": ["(: cnet_isa_f1850b84eb (IsA trustworthiness trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trusty is a kind of convict", "pln": ["(: cnet_isa_8c7e52f4f9 (IsA trusty convict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truth is a kind of out there", "pln": ["(: cnet_isa_e7af3678c4 (IsA truth out_there) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truth is a kind of stranger than fiction", "pln": ["(: cnet_isa_7542b934ad (IsA truth stranger_than_fiction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truth is a kind of fact", "pln": ["(: cnet_isa_73ec37b09e (IsA truth fact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truth is a kind of statement", "pln": ["(: cnet_isa_c582fe2195 (IsA truth statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truth is a kind of actuality", "pln": ["(: cnet_isa_f45abe7dfa (IsA truth actuality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "truth serum is a kind of intravenous anesthetic", "pln": ["(: cnet_isa_a15f16d7ce (IsA truth_serum intravenous_anesthetic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "truthfulness is a kind of honesty", "pln": ["(: cnet_isa_91a11e6a83 (IsA truthfulness honesty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "try is a kind of another name for effort", "pln": ["(: cnet_isa_cd712069fb (IsA try another_name_for_effort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "try square is a kind of square", "pln": ["(: cnet_isa_27aa81fe07 (IsA try_square square) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "trypetidae is a kind of arthropod family", "pln": ["(: cnet_isa_fa51c23584 (IsA trypetidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trypsin is a kind of enzyme", "pln": ["(: cnet_isa_d304476e44 (IsA trypsin enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "trypsinogen is a kind of trypsin", "pln": ["(: cnet_isa_a2fc9dfb4b (IsA trypsinogen trypsin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tryptophan is a kind of essential amino acid", "pln": ["(: cnet_isa_f525b8beb0 (IsA tryptophan essential_amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tryst is a kind of date", "pln": ["(: cnet_isa_7c17f2b6dd (IsA tryst date) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tsetse fly is a kind of fly", "pln": ["(: cnet_isa_5b80917967 (IsA tsetse_fly fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tsimshian is a kind of penutian", "pln": ["(: cnet_isa_7b2dd36526 (IsA tsimshian penutian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tsoris is a kind of distress", "pln": ["(: cnet_isa_cb2448a236 (IsA tsoris distress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tsouic is a kind of formosan", "pln": ["(: cnet_isa_1fe978f8ad (IsA tsouic formosan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tsuga is a kind of gymnosperm genus", "pln": ["(: cnet_isa_4786c59fcd (IsA tsuga gymnosperm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tsunami is a kind of calamity", "pln": ["(: cnet_isa_c0faa98569 (IsA tsunami calamity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tsunami is a kind of wave", "pln": ["(: cnet_isa_f03b744df4 (IsA tsunami wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tsuris is a kind of trouble", "pln": ["(: cnet_isa_acedd8f1d9 (IsA tsuris trouble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tsutsugamushi disease is a kind of rickettsial disease", "pln": ["(: cnet_isa_c6f9f8fe16 (IsA tsutsugamushi_disease rickettsial_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tswana is a kind of sotho", "pln": ["(: cnet_isa_46b87f9885 (IsA tswana sotho) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuareg is a kind of berber", "pln": ["(: cnet_isa_afaa4ba1e7 (IsA tuareg berber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuareg is a kind of african", "pln": ["(: cnet_isa_89e41181ce (IsA tuareg african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tuatara is a kind of diapsid", "pln": ["(: cnet_isa_0181428c4d (IsA tuatara diapsid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tuatha de is a kind of celtic deity", "pln": ["(: cnet_isa_02a8a161a1 (IsA tuatha_de celtic_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tub is a kind of vessel", "pln": ["(: cnet_isa_caec67c87e (IsA tub vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tub is a kind of containerful", "pln": ["(: cnet_isa_3a9c6228b1 (IsA tub containerful) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tub gurnard is a kind of gurnard", "pln": ["(: cnet_isa_97d8d8652a (IsA tub_gurnard gurnard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tub thumper is a kind of orator", "pln": ["(: cnet_isa_e6e44ae65e (IsA tub_thumper orator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuba is a kind of brass instrument", "pln": ["(: cnet_isa_7f27c0ae29 (IsA tuba brass_instrument) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuba is a kind of large musical instrument", "pln": ["(: cnet_isa_4e1093e2ab (IsA tuba large_musical_instrument) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuba is a kind of musical instrument", "pln": ["(: cnet_isa_51facaa9ca (IsA tuba musical_instrument) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tubal ligation is a kind of ligation", "pln": ["(: cnet_isa_7f90402947 (IsA tubal_ligation ligation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tubal ligation is a kind of surgical contraception", "pln": ["(: cnet_isa_a239cc04f0 (IsA tubal_ligation surgical_contraception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tubal pregnancy is a kind of ectopic pregnancy", "pln": ["(: cnet_isa_049ddc0817 (IsA tubal_pregnancy ectopic_pregnancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tube is a kind of structure", "pln": ["(: cnet_isa_8cb624701f (IsA tube structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tube is a kind of conduit", "pln": ["(: cnet_isa_29762daa1d (IsA tube conduit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tube is a kind of electronic device", "pln": ["(: cnet_isa_692dca4915 (IsA tube electronic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tube foot is a kind of foot", "pln": ["(: cnet_isa_827bd5594d (IsA tube_foot foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tubeless is a kind of pneumatic tire", "pln": ["(: cnet_isa_4e3892f0d2 (IsA tubeless pneumatic_tire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuber is a kind of fungus genus", "pln": ["(: cnet_isa_290ad2cf35 (IsA tuber fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuber is a kind of stalk", "pln": ["(: cnet_isa_a2fbd0de16 (IsA tuber stalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuberaceae is a kind of fungus family", "pln": ["(: cnet_isa_b88e45109b (IsA tuberaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuberale is a kind of fungus order", "pln": ["(: cnet_isa_e84ba19444 (IsA tuberale fungus_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tubercle is a kind of lesion", "pln": ["(: cnet_isa_dca9a3c1e4 (IsA tubercle lesion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tubercle bacillus is a kind of mycobacteria", "pln": ["(: cnet_isa_5debe91859 (IsA tubercle_bacillus mycobacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tubercularia is a kind of fungus genus", "pln": ["(: cnet_isa_04b5fd293e (IsA tubercularia fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tuberculariaceae is a kind of fungus family", "pln": ["(: cnet_isa_0830973e1a (IsA tuberculariaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tuberculin is a kind of liquid", "pln": ["(: cnet_isa_e62c607d0c (IsA tuberculin liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuberculin test is a kind of skin test", "pln": ["(: cnet_isa_9c607ba4a6 (IsA tuberculin_test skin_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuberculoid leprosy is a kind of leprosy", "pln": ["(: cnet_isa_43df49e4ed (IsA tuberculoid_leprosy leprosy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuberculosis is a kind of infectious disease", "pln": ["(: cnet_isa_e8b43a21cd (IsA tuberculosis infectious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuberose is a kind of flower", "pln": ["(: cnet_isa_598c9b1251 (IsA tuberose flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuberosity is a kind of process", "pln": ["(: cnet_isa_5fde53f100 (IsA tuberosity process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuberous begonia is a kind of begonia", "pln": ["(: cnet_isa_cc94ac3d6a (IsA tuberous_begonia begonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuberous plant is a kind of vascular plant", "pln": ["(: cnet_isa_b80635fc37 (IsA tuberous_plant vascular_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tubocurarine is a kind of alkaloid", "pln": ["(: cnet_isa_f5c0b703ae (IsA tubocurarine alkaloid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tubocurarine is a kind of neuromuscular blocking agent", "pln": ["(: cnet_isa_6dc0271b9e (IsA tubocurarine neuromuscular_blocking_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tubocurarine is a kind of plant toxin", "pln": ["(: cnet_isa_05d973a2c7 (IsA tubocurarine plant_toxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tubular cavity is a kind of cavity", "pln": ["(: cnet_isa_7feb6d3790 (IsA tubular_cavity cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tubule is a kind of tube", "pln": ["(: cnet_isa_ab25f55cee (IsA tubule tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tubulidentata is a kind of animal order", "pln": ["(: cnet_isa_3058ff535b (IsA tubulidentata animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuck is a kind of pleat", "pln": ["(: cnet_isa_b6cf6faafc (IsA tuck pleat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuck is a kind of comestible", "pln": ["(: cnet_isa_7fd43f98c4 (IsA tuck comestible) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuck is a kind of position", "pln": ["(: cnet_isa_e601404940 (IsA tuck position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuck box is a kind of box", "pln": ["(: cnet_isa_f75b0608b7 (IsA tuck_box box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuck shop is a kind of confectionery", "pln": ["(: cnet_isa_0c7dd06563 (IsA tuck_shop confectionery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tucker is a kind of yoke", "pln": ["(: cnet_isa_875ad4e35a (IsA tucker yoke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tucker is a kind of sewer", "pln": ["(: cnet_isa_b53f8073a5 (IsA tucker sewer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tucker bag is a kind of bag", "pln": ["(: cnet_isa_5b079b2fc8 (IsA tucker_bag bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tudor is a kind of dynasty", "pln": ["(: cnet_isa_6503e22d96 (IsA tudor dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tudor is a kind of ruler", "pln": ["(: cnet_isa_390ee978cc (IsA tudor ruler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tudor arch is a kind of arch", "pln": ["(: cnet_isa_da976b2cc4 (IsA tudor_arch arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tudor architecture is a kind of perpendicular", "pln": ["(: cnet_isa_5ca70bb390 (IsA tudor_architecture perpendicular) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tudung is a kind of scarf", "pln": ["(: cnet_isa_5c8d7fbe4c (IsA tudung scarf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuesday is a kind of weekday", "pln": ["(: cnet_isa_28255899f6 (IsA tuesday weekday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tufa is a kind of rock", "pln": ["(: cnet_isa_92aaf661cc (IsA tufa rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuff is a kind of volcanic rock", "pln": ["(: cnet_isa_114b160a33 (IsA tuff volcanic_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuft is a kind of crest", "pln": ["(: cnet_isa_4b233e6cc1 (IsA tuft crest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuft is a kind of bunch", "pln": ["(: cnet_isa_b7b79a64e2 (IsA tuft bunch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tufted centaury is a kind of centaury", "pln": ["(: cnet_isa_678fa33a27 (IsA tufted_centaury centaury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tufted gentian is a kind of fringed gentian", "pln": ["(: cnet_isa_8e64a86cac (IsA tufted_gentian fringed_gentian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tufted puffin is a kind of puffin", "pln": ["(: cnet_isa_4fafc0f956 (IsA tufted_puffin puffin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tufted titmouse is a kind of titmouse", "pln": ["(: cnet_isa_ac4a04546c (IsA tufted_titmouse titmouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tufted vetch is a kind of vetch", "pln": ["(: cnet_isa_8c8d3b3b6c (IsA tufted_vetch vetch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tug is a kind of pull", "pln": ["(: cnet_isa_c90fe31dd4 (IsA tug pull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tug of war is a kind of conflict", "pln": ["(: cnet_isa_195816abdd (IsA tug_of_war conflict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tug of war is a kind of athletic contest", "pln": ["(: cnet_isa_254c4c0d99 (IsA tug_of_war athletic_contest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tugboat is a kind of boat", "pln": ["(: cnet_isa_a930068461 (IsA tugboat boat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tugrik is a kind of mongolian monetary unit", "pln": ["(: cnet_isa_7beb9d3055 (IsA tugrik mongolian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuille is a kind of armor plate", "pln": ["(: cnet_isa_a09d051bd8 (IsA tuille armor_plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuition is a kind of fee", "pln": ["(: cnet_isa_b915418456 (IsA tuition fee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tularemia is a kind of zoonosis", "pln": ["(: cnet_isa_d84fcfc1fe (IsA tularemia zoonosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tulip is a kind of flower", "pln": ["(: cnet_isa_5175ff6f93 (IsA tulip flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tulip is a kind of liliaceous plant", "pln": ["(: cnet_isa_02e2f318b1 (IsA tulip liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tulip bed is a kind of flowerbed", "pln": ["(: cnet_isa_c5a18eb425 (IsA tulip_bed flowerbed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tulip orchid is a kind of orchid", "pln": ["(: cnet_isa_066307ba49 (IsA tulip_orchid orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tulip tree is a kind of angiospermous tree", "pln": ["(: cnet_isa_3c13d1306b (IsA tulip_tree angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tulipa is a kind of liliid monocot genus", "pln": ["(: cnet_isa_3281ac5f28 (IsA tulipa liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tulipa gesneriana is a kind of tulip", "pln": ["(: cnet_isa_3e461c91b0 (IsA tulipa_gesneriana tulip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tulipwood is a kind of wood", "pln": ["(: cnet_isa_7754db272f (IsA tulipwood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tulipwood tree is a kind of tree", "pln": ["(: cnet_isa_4c21e36faa (IsA tulipwood_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tulle is a kind of net", "pln": ["(: cnet_isa_396d53ef7c (IsA tulle net) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tulostoma is a kind of fungus genus", "pln": ["(: cnet_isa_4bc263aa14 (IsA tulostoma fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tulostomaceae is a kind of fungus family", "pln": ["(: cnet_isa_2cd5980ed3 (IsA tulostomaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tulostomatale is a kind of fungus order", "pln": ["(: cnet_isa_172f96e12a (IsA tulostomatale fungus_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tulu is a kind of south dravidian", "pln": ["(: cnet_isa_f32c6541c4 (IsA tulu south_dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tulu is a kind of dravidian", "pln": ["(: cnet_isa_3a4ba67104 (IsA tulu dravidian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tumble is a kind of acrobatic stunt", "pln": ["(: cnet_isa_c5c88ee2d8 (IsA tumble acrobatic_stunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tumble dryer is a kind of clothe dryer", "pln": ["(: cnet_isa_564a841b04 (IsA tumble_dryer clothe_dryer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tumblebug is a kind of dung beetle", "pln": ["(: cnet_isa_e48e2a41f5 (IsA tumblebug dung_beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tumbler is a kind of glass", "pln": ["(: cnet_isa_2b3eeb9d1a (IsA tumbler glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tumbler is a kind of obstruction", "pln": ["(: cnet_isa_e4a9d06d9f (IsA tumbler obstruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tumbler is a kind of gymnast", "pln": ["(: cnet_isa_8c2079e3d2 (IsA tumbler gymnast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tumbleweed is a kind of amaranth", "pln": ["(: cnet_isa_0a0421b4a4 (IsA tumbleweed amaranth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tumbleweed is a kind of weed", "pln": ["(: cnet_isa_cecb697a82 (IsA tumbleweed weed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tumbrel is a kind of dumpcart", "pln": ["(: cnet_isa_8ac47350fc (IsA tumbrel dumpcart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tumefaction is a kind of organic process", "pln": ["(: cnet_isa_aa23c6087a (IsA tumefaction organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tumescence is a kind of tumidity", "pln": ["(: cnet_isa_fb75f4f5ba (IsA tumescence tumidity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tumidity is a kind of swelling", "pln": ["(: cnet_isa_f679535eb5 (IsA tumidity swelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tumor is a kind of growth", "pln": ["(: cnet_isa_cb06a4ed07 (IsA tumor growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tumor necrosis factor is a kind of cytokine", "pln": ["(: cnet_isa_63443854c9 (IsA tumor_necrosis_factor cytokine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tumor suppressor gene is a kind of suppressor", "pln": ["(: cnet_isa_9d0de7d2bf (IsA tumor_suppressor_gene suppressor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tumor virus is a kind of virus", "pln": ["(: cnet_isa_0b9b924b67 (IsA tumor_virus virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tumult is a kind of agitation", "pln": ["(: cnet_isa_2a500bfd33 (IsA tumult agitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tumult is a kind of disturbance", "pln": ["(: cnet_isa_f8f98c7cb1 (IsA tumult disturbance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tun is a kind of barrel", "pln": ["(: cnet_isa_85bfceb6a5 (IsA tun barrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuna is a kind of eel", "pln": ["(: cnet_isa_4d593ec9ed (IsA tuna eel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuna is a kind of food fish", "pln": ["(: cnet_isa_30f193ce91 (IsA tuna food_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuna is a kind of scombroid", "pln": ["(: cnet_isa_aa7bc1e07e (IsA tuna scombroid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuna is a kind of saltwater fish", "pln": ["(: cnet_isa_fa4c8397b5 (IsA tuna saltwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuna is a kind of prickly pear", "pln": ["(: cnet_isa_f085d3466c (IsA tuna prickly_pear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuna and catfish is a kind of both fish", "pln": ["(: cnet_isa_66b7d0a0e0 (IsA tuna_and_catfish both_fish) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tuna and catfish is a kind of fish", "pln": ["(: cnet_isa_0a77ef36d3 (IsA tuna_and_catfish fish) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuna fish salad is a kind of salad", "pln": ["(: cnet_isa_f51e9ae208 (IsA tuna_fish_salad salad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuna oil is a kind of fish oil", "pln": ["(: cnet_isa_a1862a8e8a (IsA tuna_oil fish_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tunaburger is a kind of sandwich", "pln": ["(: cnet_isa_5a2842c60e (IsA tunaburger sandwich) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tundra is a kind of plain", "pln": ["(: cnet_isa_5a65523919 (IsA tundra plain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tundra soil is a kind of soil", "pln": ["(: cnet_isa_b3ea8c1add (IsA tundra_soil soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tundra swan is a kind of swan", "pln": ["(: cnet_isa_24d49044cb (IsA tundra_swan swan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tune is a kind of alteration", "pln": ["(: cnet_isa_d9357627fb (IsA tune alteration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tune is a kind of pitch", "pln": ["(: cnet_isa_0da15de48f (IsA tune pitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tune is a kind of music", "pln": ["(: cnet_isa_4ce313e3a9 (IsA tune music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tune up is a kind of adjustment", "pln": ["(: cnet_isa_e375d582c7 (IsA tune_up adjustment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuner is a kind of skilled worker", "pln": ["(: cnet_isa_9c70462366 (IsA tuner skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tung oil is a kind of oil", "pln": ["(: cnet_isa_be30057ced (IsA tung_oil oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tung tree is a kind of angiospermous tree", "pln": ["(: cnet_isa_f2504f4114 (IsA tung_tree angiospermous_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tunga is a kind of arthropod genus", "pln": ["(: cnet_isa_55fcd75222 (IsA tunga arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tungstate is a kind of salt", "pln": ["(: cnet_isa_39d0914904 (IsA tungstate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tungsten is a kind of metallic element", "pln": ["(: cnet_isa_84258fc909 (IsA tungsten metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tungsten steel is a kind of alloy steel", "pln": ["(: cnet_isa_4434758205 (IsA tungsten_steel alloy_steel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tungstic acid is a kind of oxyacid", "pln": ["(: cnet_isa_9f608e973f (IsA tungstic_acid oxyacid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tungus is a kind of tungusic", "pln": ["(: cnet_isa_3cb592f10e (IsA tungus tungusic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tungusic is a kind of altaic", "pln": ["(: cnet_isa_ab8166e6c6 (IsA tungusic altaic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tunic is a kind of cloak", "pln": ["(: cnet_isa_59399ab7d8 (IsA tunic cloak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "tunica albuginea testes is a kind of albuginea", "pln": ["(: cnet_isa_c91843e1ef (IsA tunica_albuginea_testes albuginea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tunic is a kind of membrane", "pln": ["(: cnet_isa_3e43cc4d8d (IsA tunic membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tunica albuginea teste is a kind of albuginea", "pln": ["(: cnet_isa_a0073f77c4 (IsA tunica_albuginea_teste albuginea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tunicate is a kind of chordate", "pln": ["(: cnet_isa_2507f62a75 (IsA tunicate chordate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuning is a kind of calibration", "pln": ["(: cnet_isa_ec19987ca7 (IsA tuning calibration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuning fork is a kind of implement", "pln": ["(: cnet_isa_c027ea2d51 (IsA tuning_fork implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tunisian is a kind of african", "pln": ["(: cnet_isa_ab254c7df1 (IsA tunisian african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tunisian dinar is a kind of tunisian monetary unit", "pln": ["(: cnet_isa_2ea3ab58e6 (IsA tunisian_dinar tunisian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tunisian dirham is a kind of tunisian monetary unit", "pln": ["(: cnet_isa_21b10af4d6 (IsA tunisian_dirham tunisian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tunisian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_d8dfd9c7a3 (IsA tunisian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tunnel is a kind of passageway", "pln": ["(: cnet_isa_fb2c755967 (IsA tunnel passageway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tunnel vision is a kind of visual impairment", "pln": ["(: cnet_isa_32cbd7c2a1 (IsA tunnel_vision visual_impairment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tupaia is a kind of mammal genus", "pln": ["(: cnet_isa_769c49f06d (IsA tupaia mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tupaiidae is a kind of mammal family", "pln": ["(: cnet_isa_3107a069b3 (IsA tupaiidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tupelo is a kind of gum tree", "pln": ["(: cnet_isa_4a4c22f975 (IsA tupelo gum_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tupelo is a kind of wood", "pln": ["(: cnet_isa_1e04b74d66 (IsA tupelo wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tupi is a kind of tupi guarani", "pln": ["(: cnet_isa_3f40244ba2 (IsA tupi tupi_guarani) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tupi is a kind of south american", "pln": ["(: cnet_isa_dc45628ca0 (IsA tupi south_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tupi guarani is a kind of amerind", "pln": ["(: cnet_isa_3bb9aace17 (IsA tupi_guarani amerind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tupik is a kind of tent", "pln": ["(: cnet_isa_9655ce86bd (IsA tupik tent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tupinambis is a kind of reptile genus", "pln": ["(: cnet_isa_b34dc8c16a (IsA tupinambis reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turban is a kind of headdress", "pln": ["(: cnet_isa_dc979fb84b (IsA turban headdress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turban squash is a kind of winter squash", "pln": ["(: cnet_isa_3fe3d57a09 (IsA turban_squash winter_squash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turbellaria is a kind of class", "pln": ["(: cnet_isa_e00c9b3144 (IsA turbellaria class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turbidity is a kind of cloudiness", "pln": ["(: cnet_isa_24cdab1094 (IsA turbidity cloudiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turbinate bone is a kind of bone", "pln": ["(: cnet_isa_a84b14e1a8 (IsA turbinate_bone bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turbine is a kind of rotary engine", "pln": ["(: cnet_isa_2aa1e54f9c (IsA turbine rotary_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turbogenerator is a kind of generator", "pln": ["(: cnet_isa_1c02e5dd82 (IsA turbogenerator generator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "turbojet is a kind of jet", "pln": ["(: cnet_isa_8517b0ebfc (IsA turbojet jet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "turbojet is a kind of jet engine", "pln": ["(: cnet_isa_a7d97df2f2 (IsA turbojet jet_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turbot is a kind of lefteye flounder", "pln": ["(: cnet_isa_88bf8d42c6 (IsA turbot lefteye_flounder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turbot is a kind of flounder", "pln": ["(: cnet_isa_e1e0291621 (IsA turbot flounder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turbulence is a kind of physical phenomenon", "pln": ["(: cnet_isa_2e378226bb (IsA turbulence physical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turbulence is a kind of disorder", "pln": ["(: cnet_isa_883e408748 (IsA turbulence disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turbulence is a kind of bad weather", "pln": ["(: cnet_isa_21222ade10 (IsA turbulence bad_weather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turbulent flow is a kind of flow", "pln": ["(: cnet_isa_495f6e5e04 (IsA turbulent_flow flow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turcoman is a kind of turki", "pln": ["(: cnet_isa_4666428fdb (IsA turcoman turki) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "turdidae is a kind of bird family", "pln": ["(: cnet_isa_0a564de32f (IsA turdidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turdinae is a kind of bird family", "pln": ["(: cnet_isa_e81c64c8d4 (IsA turdinae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turdus is a kind of bird genus", "pln": ["(: cnet_isa_0bb61afcf6 (IsA turdus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tureen is a kind of serving dish", "pln": ["(: cnet_isa_49ff11e3b4 (IsA tureen serving_dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turf is a kind of city district", "pln": ["(: cnet_isa_3a00dea91b (IsA turf city_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turf is a kind of jurisdiction", "pln": ["(: cnet_isa_9447114e0e (IsA turf jurisdiction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turf is a kind of land", "pln": ["(: cnet_isa_0cb26f2396 (IsA turf land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turf war is a kind of conflict", "pln": ["(: cnet_isa_8c840ebe5c (IsA turf_war conflict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turfan is a kind of tocharian", "pln": ["(: cnet_isa_f8d2786b7a (IsA turfan tocharian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turfing daisy is a kind of herb", "pln": ["(: cnet_isa_c02a377cf4 (IsA turfing_daisy herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turgidity is a kind of prolixity", "pln": ["(: cnet_isa_86b15c5a09 (IsA turgidity prolixity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turgor is a kind of state", "pln": ["(: cnet_isa_d9dbdc8143 (IsA turgor state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turing machine is a kind of computer", "pln": ["(: cnet_isa_67d1325642 (IsA turing_machine computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turk s cap is a kind of lily", "pln": ["(: cnet_isa_4bbbaed732 (IsA turk_s_cap lily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turk s head is a kind of knot", "pln": ["(: cnet_isa_a6db5c39ef (IsA turk_s_head knot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turk is a kind of turki", "pln": ["(: cnet_isa_862aefc71d (IsA turk turki) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turkey is a kind of country", "pln": ["(: cnet_isa_b984344c32 (IsA turkey country) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turkey is a kind of food", "pln": ["(: cnet_isa_788bdf428d (IsA turkey food) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turkey is a kind of domestic fowl", "pln": ["(: cnet_isa_0790b27357 (IsA turkey domestic_fowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turkey is a kind of flop", "pln": ["(: cnet_isa_f40a4eea9a (IsA turkey flop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turkey is a kind of poultry", "pln": ["(: cnet_isa_bade4c52b8 (IsA turkey poultry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turkey cock is a kind of turkey", "pln": ["(: cnet_isa_23a99637a6 (IsA turkey_cock turkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turkey leg is a kind of drumstick", "pln": ["(: cnet_isa_b996b578c6 (IsA turkey_leg drumstick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turkey red is a kind of red", "pln": ["(: cnet_isa_92a50c599e (IsA turkey_red red) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turkey stew is a kind of fricassee", "pln": ["(: cnet_isa_6b3744b1d3 (IsA turkey_stew fricassee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "turkey stuffing is a kind of stuffing", "pln": ["(: cnet_isa_7e0e1a9959 (IsA turkey_stuffing stuffing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turkey trot is a kind of one step", "pln": ["(: cnet_isa_802ad7fd75 (IsA turkey_trot one_step) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turkey wing is a kind of wing", "pln": ["(: cnet_isa_43970de374 (IsA turkey_wing wing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turki is a kind of altaic", "pln": ["(: cnet_isa_dfaa2023bf (IsA turki altaic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "turki is a kind of asiatic", "pln": ["(: cnet_isa_0e4d0b0c3a (IsA turki asiatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turkish is a kind of turki", "pln": ["(: cnet_isa_d7e7ac5407 (IsA turkish turki) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turkish bath is a kind of washup", "pln": ["(: cnet_isa_05375b335f (IsA turkish_bath washup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turkish bath is a kind of steam bath", "pln": ["(: cnet_isa_91d4d11973 (IsA turkish_bath steam_bath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turkish coffee is a kind of coffee", "pln": ["(: cnet_isa_5f791e4e30 (IsA turkish_coffee coffee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turkish delight is a kind of candy", "pln": ["(: cnet_isa_4eb77736d7 (IsA turkish_delight candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turkish monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_07319eb7f5 (IsA turkish_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turkish tobacco is a kind of tobacco", "pln": ["(: cnet_isa_1098487d91 (IsA turkish_tobacco tobacco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "turkish towel is a kind of bath towel", "pln": ["(: cnet_isa_627eee92cb (IsA turkish_towel bath_towel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turkmen is a kind of turki", "pln": ["(: cnet_isa_5188d9d38d (IsA turkmen turki) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turkmen monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_20239be10a (IsA turkmen_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turmeric is a kind of flavorer", "pln": ["(: cnet_isa_b00682ca02 (IsA turmeric flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turmeric is a kind of herb", "pln": ["(: cnet_isa_767002dc83 (IsA turmeric herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turn is a kind of change of course", "pln": ["(: cnet_isa_4df5e9ca1e (IsA turn change_of_course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turn is a kind of change of direction", "pln": ["(: cnet_isa_e75b61e77e (IsA turn change_of_direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "turn is a kind of favor", "pln": ["(: cnet_isa_9975001ba0 (IsA turn favor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turn is a kind of walk", "pln": ["(: cnet_isa_32d36fd884 (IsA turn walk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turn is a kind of development", "pln": ["(: cnet_isa_377cf8ffdf (IsA turn development) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turn is a kind of activity", "pln": ["(: cnet_isa_1d6a17e1e1 (IsA turn activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turn is a kind of part", "pln": ["(: cnet_isa_f2313fc6fc (IsA turn part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turn of century is a kind of period", "pln": ["(: cnet_isa_2030adeed2 (IsA turn_of_century period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turn of expression is a kind of expressive style", "pln": ["(: cnet_isa_9f20f3ebb8 (IsA turn_of_expression expressive_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turn on is a kind of stimulation", "pln": ["(: cnet_isa_868681c054 (IsA turn_on stimulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turnaround is a kind of preparation", "pln": ["(: cnet_isa_c3774f1c45 (IsA turnaround preparation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turnaround is a kind of area", "pln": ["(: cnet_isa_26329ba05d (IsA turnaround area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "turnaround is a kind of work time", "pln": ["(: cnet_isa_27c9c00eb1 (IsA turnaround work_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turnbuckle is a kind of coupling", "pln": ["(: cnet_isa_c881f5a9d0 (IsA turnbuckle coupling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turncock is a kind of employee", "pln": ["(: cnet_isa_29aeb517c0 (IsA turncock employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turner s syndrome is a kind of sex linked disorder", "pln": ["(: cnet_isa_5557027144 (IsA turner_s_syndrome sex_linked_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "turner is a kind of cooking utensil", "pln": ["(: cnet_isa_38bc85cb74 (IsA turner cooking_utensil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turner is a kind of person", "pln": ["(: cnet_isa_b6745cab23 (IsA turner person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turner is a kind of skilled worker", "pln": ["(: cnet_isa_2e05f9dec2 (IsA turner skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turner is a kind of tumbler", "pln": ["(: cnet_isa_8b6e456b07 (IsA turner tumbler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turnery is a kind of product", "pln": ["(: cnet_isa_1e9995001d (IsA turnery product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turnery is a kind of workshop", "pln": ["(: cnet_isa_d0eaf00665 (IsA turnery workshop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turnicidae is a kind of bird family", "pln": ["(: cnet_isa_9f6ad81fb6 (IsA turnicidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turning is a kind of change", "pln": ["(: cnet_isa_2aa7239255 (IsA turning change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turning is a kind of formation", "pln": ["(: cnet_isa_1779855e48 (IsA turning formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turning is a kind of end product", "pln": ["(: cnet_isa_ffee64bfb7 (IsA turning end_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turning is a kind of movement", "pln": ["(: cnet_isa_f02df75bbc (IsA turning movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "turning is a kind of paring", "pln": ["(: cnet_isa_2bdaebbd2f (IsA turning paring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turnip is a kind of cruciferous vegetable", "pln": ["(: cnet_isa_00ad6f4cf9 (IsA turnip cruciferous_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turnip is a kind of root vegetable", "pln": ["(: cnet_isa_5c4c837184 (IsA turnip root_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turnip is a kind of turnip plant", "pln": ["(: cnet_isa_4a0f5c1791 (IsA turnip turnip_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turnip bed is a kind of bed", "pln": ["(: cnet_isa_88f173ea53 (IsA turnip_bed bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turnip green is a kind of green", "pln": ["(: cnet_isa_7ed344596d (IsA turnip_green green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turnip plant is a kind of crucifer", "pln": ["(: cnet_isa_5598f3218a (IsA turnip_plant crucifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turnix is a kind of bird genus", "pln": ["(: cnet_isa_b7520d7d78 (IsA turnix bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turnoff is a kind of road", "pln": ["(: cnet_isa_41ac620971 (IsA turnoff road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "turnoff is a kind of stimulation", "pln": ["(: cnet_isa_1d7a471bfb (IsA turnoff stimulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turnout is a kind of attendance", "pln": ["(: cnet_isa_38c37bb25a (IsA turnout attendance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turnout is a kind of part", "pln": ["(: cnet_isa_d0e4d20ef9 (IsA turnout part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turnout is a kind of rotation", "pln": ["(: cnet_isa_2d9f2ec7ff (IsA turnout rotation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turnout is a kind of gathering", "pln": ["(: cnet_isa_f27eb6411c (IsA turnout gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turnover is a kind of dish", "pln": ["(: cnet_isa_d132d5816c (IsA turnover dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turnpike is a kind of expressway", "pln": ["(: cnet_isa_3f55562810 (IsA turnpike expressway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turnpike is a kind of gate", "pln": ["(: cnet_isa_a441b3c988 (IsA turnpike gate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turnspit is a kind of spit", "pln": ["(: cnet_isa_d995f20452 (IsA turnspit spit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turnstile is a kind of gate", "pln": ["(: cnet_isa_f3c4e05f30 (IsA turnstile gate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turnstone is a kind of plover", "pln": ["(: cnet_isa_8e7dce4e79 (IsA turnstone plover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "turntable is a kind of platform", "pln": ["(: cnet_isa_e2f6f603ae (IsA turntable platform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turntable is a kind of tray", "pln": ["(: cnet_isa_7bbc22d99b (IsA turntable tray) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turnverein is a kind of club", "pln": ["(: cnet_isa_886f6bb9af (IsA turnverein club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turpentine is a kind of essential oil", "pln": ["(: cnet_isa_6a38b6b034 (IsA turpentine essential_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turpentine is a kind of oleoresin", "pln": ["(: cnet_isa_427578730b (IsA turpentine oleoresin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turpentine camphor weed is a kind of blue curl", "pln": ["(: cnet_isa_f88e7a3714 (IsA turpentine_camphor_weed blue_curl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turquoise is a kind of mineral", "pln": ["(: cnet_isa_76bbbd3b23 (IsA turquoise mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "turquoise is a kind of opaque gem", "pln": ["(: cnet_isa_6adcdf374f (IsA turquoise opaque_gem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turreae is a kind of tree", "pln": ["(: cnet_isa_b7764dba58 (IsA turreae tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turret is a kind of tower", "pln": ["(: cnet_isa_f6b82a0ba1 (IsA turret tower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turret clock is a kind of clock", "pln": ["(: cnet_isa_4009222391 (IsA turret_clock clock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turritis is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_121e4c1e66 (IsA turritis dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tursiop is a kind of mammal genus", "pln": ["(: cnet_isa_5f2957b8bf (IsA tursiop mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "turtle is a kind of chelonian", "pln": ["(: cnet_isa_3fdbb43df5 (IsA turtle chelonian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turtle soup is a kind of soup", "pln": ["(: cnet_isa_8d53a9512a (IsA turtle_soup soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turtledove is a kind of dove", "pln": ["(: cnet_isa_2c5eed1aaf (IsA turtledove dove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turtleneck is a kind of jersey", "pln": ["(: cnet_isa_868f8b7591 (IsA turtleneck jersey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turtleneck is a kind of sweater", "pln": ["(: cnet_isa_97a6c883ef (IsA turtleneck sweater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "turtleneck collar is a kind of collar", "pln": ["(: cnet_isa_5d9db10533 (IsA turtleneck_collar collar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "turtler is a kind of skilled worker", "pln": ["(: cnet_isa_3412d84798 (IsA turtler skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuscan is a kind of italian", "pln": ["(: cnet_isa_4e22b44d2f (IsA tuscan italian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tuscan order is a kind of order", "pln": ["(: cnet_isa_cff56147ef (IsA tuscan_order order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuscarora is a kind of iroquoian", "pln": ["(: cnet_isa_addbcfa6d0 (IsA tuscarora iroquoian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuscarora is a kind of iroquois", "pln": ["(: cnet_isa_e674684dc5 (IsA tuscarora iroquois) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tushery is a kind of literary composition", "pln": ["(: cnet_isa_e64b2251f4 (IsA tushery literary_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tusk is a kind of tooth", "pln": ["(: cnet_isa_a2314b0e8a (IsA tusk tooth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tusker is a kind of mammal", "pln": ["(: cnet_isa_1d1fdd94d8 (IsA tusker mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tussah is a kind of saturniid", "pln": ["(: cnet_isa_b03717bec7 (IsA tussah saturniid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tussilago is a kind of asterid dicot genus", "pln": ["(: cnet_isa_7c6ba4b835 (IsA tussilago asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tussock bellflower is a kind of campanula", "pln": ["(: cnet_isa_98f18410e9 (IsA tussock_bellflower campanula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tussock caterpillar is a kind of caterpillar", "pln": ["(: cnet_isa_278434cc09 (IsA tussock_caterpillar caterpillar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tutee is a kind of learner", "pln": ["(: cnet_isa_26c7da820c (IsA tutee learner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tutelage is a kind of teaching", "pln": ["(: cnet_isa_8af33f11d7 (IsA tutelage teaching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tutelo is a kind of siouan", "pln": ["(: cnet_isa_5aae9ee0b0 (IsA tutelo siouan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tutorial is a kind of session", "pln": ["(: cnet_isa_87636e0d17 (IsA tutorial session) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tutti frutti is a kind of ice cream", "pln": ["(: cnet_isa_7c1ca99a09 (IsA tutti_frutti ice_cream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tuvalu dollar is a kind of dollar", "pln": ["(: cnet_isa_dfdc8a9f9b (IsA tuvalu_dollar dollar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tv is a kind of abbreviation for television", "pln": ["(: cnet_isa_aea54a2689 (IsA tv abbreviation_for_television) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tv is a kind of acronym for television", "pln": ["(: cnet_isa_f9af0d2f11 (IsA tv acronym_for_television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tv is a kind of communication device", "pln": ["(: cnet_isa_40655f977b (IsA tv communication_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tv is a kind of entertainment for people", "pln": ["(: cnet_isa_9da2d13e19 (IsA tv entertainment_for_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tv is a kind of multimedia device", "pln": ["(: cnet_isa_236d95d4ff (IsA tv multimedia_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tv is a kind of short name", "pln": ["(: cnet_isa_957be61c32 (IsA tv short_name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tv is a kind of short name for television", "pln": ["(: cnet_isa_33f2e64651 (IsA tv short_name_for_television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tv is a kind of way to relax", "pln": ["(: cnet_isa_ed280462bf (IsA tv way_to_relax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tv announcer is a kind of announcer", "pln": ["(: cnet_isa_630c67e65d (IsA tv_announcer announcer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tv dinner is a kind of convenience food", "pln": ["(: cnet_isa_7b5a565df9 (IsA tv_dinner convenience_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tv watching is a kind of passive activity", "pln": ["(: cnet_isa_2c6ffee2f2 (IsA tv_watching passive_activity) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twaddler is a kind of communicator", "pln": ["(: cnet_isa_df7b62f211 (IsA twaddler communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twang is a kind of nasality", "pln": ["(: cnet_isa_b3e0016c8f (IsA twang nasality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twang is a kind of sound", "pln": ["(: cnet_isa_ce717ae237 (IsA twang sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twayblade is a kind of orchid", "pln": ["(: cnet_isa_64ddbfb6ae (IsA twayblade orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tweed is a kind of fabric", "pln": ["(: cnet_isa_613a09e389 (IsA tweed fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tweediness is a kind of inelegance", "pln": ["(: cnet_isa_c894605423 (IsA tweediness inelegance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tweedledum and tweedledee is a kind of pair", "pln": ["(: cnet_isa_cbf9d150dc (IsA tweedledum_and_tweedledee pair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tweet is a kind of chirp", "pln": ["(: cnet_isa_9221ae597b (IsA tweet chirp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tweeter is a kind of loudspeaker", "pln": ["(: cnet_isa_4c1bb03cee (IsA tweeter loudspeaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twelfth is a kind of rank", "pln": ["(: cnet_isa_c10fa72da1 (IsA twelfth rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twelfth night is a kind of christian holy day", "pln": ["(: cnet_isa_8c3c350a38 (IsA twelfth_night christian_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twelfth part is a kind of common fraction", "pln": ["(: cnet_isa_f866489ac1 (IsA twelfth_part common_fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twelfthtide is a kind of season", "pln": ["(: cnet_isa_64ba474c89 (IsA twelfthtide season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "twelve is a kind of large integer", "pln": ["(: cnet_isa_1222fff0a9 (IsA twelve large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twelve tone music is a kind of serialism", "pln": ["(: cnet_isa_fdcdeb5707 (IsA twelve_tone_music serialism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twelvth month of year is a kind of december", "pln": ["(: cnet_isa_80c3a7ab8b (IsA twelvth_month_of_year december) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twenty is a kind of decade", "pln": ["(: cnet_isa_8aead8e1b7 (IsA twenty decade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twenty is a kind of time of life", "pln": ["(: cnet_isa_0f07685c7d (IsA twenty time_of_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twentieth is a kind of rank", "pln": ["(: cnet_isa_40114c139c (IsA twentieth rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twentieth century is a kind of century", "pln": ["(: cnet_isa_89be7ec3b8 (IsA twentieth_century century) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twenty is a kind of large integer", "pln": ["(: cnet_isa_455c82fb64 (IsA twenty large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twenty dollar bill is a kind of bill", "pln": ["(: cnet_isa_f3bc303372 (IsA twenty_dollar_bill bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twenty eight is a kind of large integer", "pln": ["(: cnet_isa_3e8507c852 (IsA twenty_eight large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twenty five is a kind of large integer", "pln": ["(: cnet_isa_0f1723505c (IsA twenty_five large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twenty four is a kind of large integer", "pln": ["(: cnet_isa_2fbdc34e89 (IsA twenty_four large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twenty nine is a kind of large integer", "pln": ["(: cnet_isa_e23427e578 (IsA twenty_nine large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twenty one is a kind of large integer", "pln": ["(: cnet_isa_3c6f53ba81 (IsA twenty_one large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twenty seven is a kind of large integer", "pln": ["(: cnet_isa_c110cb8b2a (IsA twenty_seven large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twenty six is a kind of large integer", "pln": ["(: cnet_isa_5784d03cf2 (IsA twenty_six large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twenty three is a kind of number", "pln": ["(: cnet_isa_f125aba6e1 (IsA twenty_three number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twenty three is a kind of large integer", "pln": ["(: cnet_isa_734d802776 (IsA twenty_three large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twenty two is a kind of firearm", "pln": ["(: cnet_isa_44d75190f7 (IsA twenty_two firearm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twenty two is a kind of large integer", "pln": ["(: cnet_isa_27b5e9b9e3 (IsA twenty_two large_integer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twenty two pistol is a kind of twenty two", "pln": ["(: cnet_isa_2fe0d495d1 (IsA twenty_two_pistol twenty_two) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twenty two rifle is a kind of twenty two", "pln": ["(: cnet_isa_91f07a2020 (IsA twenty_two_rifle twenty_two) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twerp is a kind of simpleton", "pln": ["(: cnet_isa_db8f2b8165 (IsA twerp simpleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twiddle is a kind of twist", "pln": ["(: cnet_isa_73c3a4a91c (IsA twiddle twist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twiddler is a kind of manipulator", "pln": ["(: cnet_isa_abad44b1e1 (IsA twiddler manipulator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "twig blight is a kind of blight", "pln": ["(: cnet_isa_84f4639e02 (IsA twig_blight blight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "twilight is a kind of light", "pln": ["(: cnet_isa_ea1bb0e589 (IsA twilight light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twilight is a kind of decline", "pln": ["(: cnet_isa_07e2b3c861 (IsA twilight decline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twilight is a kind of hour", "pln": ["(: cnet_isa_29fe13f9f0 (IsA twilight hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twilight sleep is a kind of general anesthesia", "pln": ["(: cnet_isa_a0d3b0e31e (IsA twilight_sleep general_anesthesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twilight zone is a kind of ambiguity", "pln": ["(: cnet_isa_3086ce7ea8 (IsA twilight_zone ambiguity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twilight zone is a kind of ocean floor", "pln": ["(: cnet_isa_503e59247d (IsA twilight_zone ocean_floor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twill is a kind of fabric", "pln": ["(: cnet_isa_7f43f4c16e (IsA twill fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twill is a kind of weave", "pln": ["(: cnet_isa_0a1370d334 (IsA twill weave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twin is a kind of sibling", "pln": ["(: cnet_isa_4c2b9fbdc6 (IsA twin sibling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twin bed is a kind of bed", "pln": ["(: cnet_isa_4507fe780d (IsA twin_bed bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twin bill is a kind of game", "pln": ["(: cnet_isa_6cd04fb2d5 (IsA twin_bill game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twinberry is a kind of honeysuckle", "pln": ["(: cnet_isa_6f474db752 (IsA twinberry honeysuckle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twiner is a kind of worker", "pln": ["(: cnet_isa_3a6cceebde (IsA twiner worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twinflower is a kind of subshrub", "pln": ["(: cnet_isa_114ec2455f (IsA twinflower subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twinge is a kind of pain", "pln": ["(: cnet_isa_162565fcf8 (IsA twinge pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twinjet is a kind of jet", "pln": ["(: cnet_isa_c050ce1005 (IsA twinjet jet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twinkie is a kind of sponge cake", "pln": ["(: cnet_isa_ffba58ad83 (IsA twinkie sponge_cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twinkle is a kind of change", "pln": ["(: cnet_isa_991599d403 (IsA twinkle change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twinkler is a kind of shiner", "pln": ["(: cnet_isa_67759cc193 (IsA twinkler shiner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twin is a kind of crystal", "pln": ["(: cnet_isa_1e6c9df2f8 (IsA twin crystal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twist is a kind of rotation", "pln": ["(: cnet_isa_2dc08f71ec (IsA twist rotation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twist is a kind of social dancing", "pln": ["(: cnet_isa_a5cbcf9a91 (IsA twist social_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twist is a kind of movement", "pln": ["(: cnet_isa_f33ebe7c66 (IsA twist movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "twist bit is a kind of bit", "pln": ["(: cnet_isa_69a212e4ed (IsA twist_bit bit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twit is a kind of aggravation", "pln": ["(: cnet_isa_308c308a54 (IsA twit aggravation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twitch is a kind of spasm", "pln": ["(: cnet_isa_285026f1b2 (IsA twitch spasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twitterer is a kind of bird", "pln": ["(: cnet_isa_ca85cfd5df (IsA twitterer bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "two is a kind of number", "pln": ["(: cnet_isa_318a4b33e8 (IsA two number) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "two is a kind of digit", "pln": ["(: cnet_isa_19312ea215 (IsA two digit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "two by four is a kind of timber", "pln": ["(: cnet_isa_4fdbd2a0e4 (IsA two_by_four timber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "two sisters is a kind of siblings", "pln": ["(: cnet_isa_ebf270240b (IsA two_sisters siblings) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "two dimensionality is a kind of dimensionality", "pln": ["(: cnet_isa_c8bd92cdd8 (IsA two_dimensionality dimensionality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "two dollar bill is a kind of bill", "pln": ["(: cnet_isa_21697d9dd3 (IsA two_dollar_bill bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "two eyed violet is a kind of violet", "pln": ["(: cnet_isa_0a209f8049 (IsA two_eyed_violet violet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "two handed backhand is a kind of backhand", "pln": ["(: cnet_isa_d894434633 (IsA two_handed_backhand backhand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "two handed saw is a kind of saw", "pln": ["(: cnet_isa_86fc5b8422 (IsA two_handed_saw saw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "two hitter is a kind of baseball", "pln": ["(: cnet_isa_bb628a6009 (IsA two_hitter baseball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "two kettle is a kind of teton dakota", "pln": ["(: cnet_isa_a8b6812dc3 (IsA two_kettle teton_dakota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "two man tent is a kind of tent", "pln": ["(: cnet_isa_64ff0810c3 (IsA two_man_tent tent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "two note call is a kind of birdcall", "pln": ["(: cnet_isa_a06d116031 (IsA two_note_call birdcall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "two piece is a kind of business suit", "pln": ["(: cnet_isa_ec3339aefb (IsA two_piece business_suit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "two sister is a kind of sibling", "pln": ["(: cnet_isa_7fe356f8a4 (IsA two_sister sibling) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "two spotted ladybug is a kind of ladybug", "pln": ["(: cnet_isa_6ba1ef8cc8 (IsA two_spotted_ladybug ladybug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "two step is a kind of ballroom dancing", "pln": ["(: cnet_isa_6e1fcff663 (IsA two_step ballroom_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "two third is a kind of common fraction", "pln": ["(: cnet_isa_1f09be5941 (IsA two_third common_fraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "two tier bid is a kind of takeover bid", "pln": ["(: cnet_isa_1e3db5d99d (IsA two_tier_bid takeover_bid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "two timer is a kind of deceiver", "pln": ["(: cnet_isa_81d7c35751 (IsA two_timer deceiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "two toed sloth is a kind of sloth", "pln": ["(: cnet_isa_b9a11f0110 (IsA two_toed_sloth sloth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "two way street is a kind of street", "pln": ["(: cnet_isa_6da8aff09c (IsA two_way_street street) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "two year old horse is a kind of racehorse", "pln": ["(: cnet_isa_82485eee3d (IsA two_year_old_horse racehorse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twofer is a kind of coupon", "pln": ["(: cnet_isa_bfa4fd68e0 (IsA twofer coupon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twofer is a kind of offer", "pln": ["(: cnet_isa_9c5f454a6a (IsA twofer offer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twopence is a kind of coin", "pln": ["(: cnet_isa_6dcd2708b4 (IsA twopence coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "twyla tharp is a kind of famous choreographer", "pln": ["(: cnet_isa_c884f6ae8a (IsA twyla_tharp famous_choreographer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tying is a kind of fastening", "pln": ["(: cnet_isa_d68e6205fc (IsA tying fastening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tyiyn is a kind of kyrgyzstani monetary unit", "pln": ["(: cnet_isa_93229477a9 (IsA tyiyn kyrgyzstani_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tyke is a kind of english person", "pln": ["(: cnet_isa_f7e6eed0af (IsA tyke english_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tylenchidae is a kind of worm family", "pln": ["(: cnet_isa_849bba97b9 (IsA tylenchidae worm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tylenchus is a kind of worm genus", "pln": ["(: cnet_isa_a5095e1507 (IsA tylenchus worm_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tympanic bone is a kind of bone", "pln": ["(: cnet_isa_95cefcfb6b (IsA tympanic_bone bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tympanic vein is a kind of vein", "pln": ["(: cnet_isa_c3c20ae578 (IsA tympanic_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tympanist is a kind of drummer", "pln": ["(: cnet_isa_ff982fb93c (IsA tympanist drummer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tympanite is a kind of dilatation", "pln": ["(: cnet_isa_ea2f0db976 (IsA tympanite dilatation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tympanitis is a kind of inflammation", "pln": ["(: cnet_isa_f810d15533 (IsA tympanitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tympanoplasty is a kind of operation", "pln": ["(: cnet_isa_d777e5ad23 (IsA tympanoplasty operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tympanuchus is a kind of bird genus", "pln": ["(: cnet_isa_82ec537f38 (IsA tympanuchus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tyndall effect is a kind of optical phenomenon", "pln": ["(: cnet_isa_54a933c1e6 (IsA tyndall_effect optical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "type is a kind of block", "pln": ["(: cnet_isa_6defb4c08a (IsA type block) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "type is a kind of taxonomic group", "pln": ["(: cnet_isa_6716c4d54e (IsA type taxonomic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "type is a kind of kind", "pln": ["(: cnet_isa_1e837f539f (IsA type kind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "type is a kind of character", "pln": ["(: cnet_isa_75d85b304d (IsA type character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "type is a kind of symbol", "pln": ["(: cnet_isa_a7ad86faa9 (IsA type symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "type family is a kind of type", "pln": ["(: cnet_isa_e1acbc5b2e (IsA type_family type) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "type genus is a kind of genus", "pln": ["(: cnet_isa_b1e5215ffd (IsA type_genus genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "type i diabete is a kind of autoimmune disease", "pln": ["(: cnet_isa_42afd36743 (IsA type_i_diabete autoimmune_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "type i diabete is a kind of diabete mellitus", "pln": ["(: cnet_isa_c29a9faa27 (IsA type_i_diabete diabete_mellitus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "type ii diabete is a kind of diabete mellitus", "pln": ["(: cnet_isa_ed9bacd98e (IsA type_ii_diabete diabete_mellitus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "type metal is a kind of alloy", "pln": ["(: cnet_isa_e9bad23b93 (IsA type_metal alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "type slug is a kind of type metal", "pln": ["(: cnet_isa_ef1d13727a (IsA type_slug type_metal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "type specy is a kind of specy", "pln": ["(: cnet_isa_8178fb5f66 (IsA type_specy specy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "type specimen is a kind of model", "pln": ["(: cnet_isa_c67012f6bc (IsA type_specimen model) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "typescript is a kind of matter", "pln": ["(: cnet_isa_a50250a21a (IsA typescript matter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "typesetting machine is a kind of printer", "pln": ["(: cnet_isa_4b6ebd7956 (IsA typesetting_machine printer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "typewriter is a kind of machine", "pln": ["(: cnet_isa_e762bd2508 (IsA typewriter machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "typewriter is a kind of character printer", "pln": ["(: cnet_isa_f4176bf570 (IsA typewriter character_printer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "typewriter carriage is a kind of carriage", "pln": ["(: cnet_isa_a5e85e4dde (IsA typewriter_carriage carriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "typewriter font is a kind of font", "pln": ["(: cnet_isa_568c47ffbe (IsA typewriter_font font) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "typewriter keyboard is a kind of keyboard", "pln": ["(: cnet_isa_c8b11da610 (IsA typewriter_keyboard keyboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "typewriter paper is a kind of writing paper", "pln": ["(: cnet_isa_7dfd267811 (IsA typewriter_paper writing_paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "typha is a kind of monocot genus", "pln": ["(: cnet_isa_e850bebe2d (IsA typha monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "typhaceae is a kind of monocot family", "pln": ["(: cnet_isa_720980f228 (IsA typhaceae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "typhlopidae is a kind of reptile family", "pln": ["(: cnet_isa_0d87ccd9a7 (IsA typhlopidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "typhoeus is a kind of mythical monster", "pln": ["(: cnet_isa_d607740323 (IsA typhoeus mythical_monster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "typhoid is a kind of infectious disease", "pln": ["(: cnet_isa_ca4057329d (IsA typhoid infectious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "typhoid bacillus is a kind of salmonella", "pln": ["(: cnet_isa_990bf246c7 (IsA typhoid_bacillus salmonella) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "typhoid bacteriophage is a kind of bacteriophage", "pln": ["(: cnet_isa_cc7caa40d8 (IsA typhoid_bacteriophage bacteriophage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "typhon is a kind of mythical monster", "pln": ["(: cnet_isa_0e9b0f722c (IsA typhon mythical_monster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "typhoon is a kind of cyclone", "pln": ["(: cnet_isa_7eeefe9acb (IsA typhoon cyclone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "typhus is a kind of rickettsial disease", "pln": ["(: cnet_isa_5e5ee90614 (IsA typhus rickettsial_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "typical jerboa is a kind of jerboa", "pln": ["(: cnet_isa_c38d39f7c1 (IsA typical_jerboa jerboa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "typicality is a kind of normality", "pln": ["(: cnet_isa_4a4aace5fb (IsA typicality normality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "typification is a kind of representation", "pln": ["(: cnet_isa_e7d0d92146 (IsA typification representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "typification is a kind of representational process", "pln": ["(: cnet_isa_e552ade968 (IsA typification representational_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "typing is a kind of writing", "pln": ["(: cnet_isa_ad5026ea23 (IsA typing writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "typing pool is a kind of pool", "pln": ["(: cnet_isa_fd06e87b14 (IsA typing_pool pool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "typist is a kind of employee", "pln": ["(: cnet_isa_acd3fddf95 (IsA typist employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "typography is a kind of trade", "pln": ["(: cnet_isa_cd002215ba (IsA typography trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "typography is a kind of printing", "pln": ["(: cnet_isa_04c7a69866 (IsA typography printing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "typology is a kind of categorization", "pln": ["(: cnet_isa_ba15f38fd7 (IsA typology categorization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tyramine is a kind of amino acid", "pln": ["(: cnet_isa_ae3883f097 (IsA tyramine amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tyranni is a kind of animal order", "pln": ["(: cnet_isa_697cba02d3 (IsA tyranni animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tyrannicide is a kind of murder", "pln": ["(: cnet_isa_755c5a6818 (IsA tyrannicide murder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tyrannid is a kind of passerine", "pln": ["(: cnet_isa_9920f7b140 (IsA tyrannid passerine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tyrannidae is a kind of bird family", "pln": ["(: cnet_isa_265e56ddb8 (IsA tyrannidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tyrannosaur is a kind of theropod", "pln": ["(: cnet_isa_e4df0c0f63 (IsA tyrannosaur theropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tyrannus is a kind of bird genus", "pln": ["(: cnet_isa_561296fba1 (IsA tyrannus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tyrant is a kind of dictator", "pln": ["(: cnet_isa_36bf98643a (IsA tyrant dictator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tyrant is a kind of person", "pln": ["(: cnet_isa_068e931f36 (IsA tyrant person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tyrant is a kind of ruler", "pln": ["(: cnet_isa_dfcca15268 (IsA tyrant ruler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tyrian purple is a kind of reddish purple", "pln": ["(: cnet_isa_563a684043 (IsA tyrian_purple reddish_purple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tyrian purple is a kind of dye", "pln": ["(: cnet_isa_f6fd91619f (IsA tyrian_purple dye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tyrocidine is a kind of antibiotic", "pln": ["(: cnet_isa_474a14fd54 (IsA tyrocidine antibiotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tyrolean is a kind of hat", "pln": ["(: cnet_isa_40b3c58a12 (IsA tyrolean hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tyrolean is a kind of european", "pln": ["(: cnet_isa_c1deb510a3 (IsA tyrolean european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tyrosine is a kind of amino acid", "pln": ["(: cnet_isa_3ae4d7c61d (IsA tyrosine amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tyrosine kinase inhibitor is a kind of medicine", "pln": ["(: cnet_isa_a7a4b844a9 (IsA tyrosine_kinase_inhibitor medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tyrosinemia is a kind of autosomal recessive disease", "pln": ["(: cnet_isa_4a95be6182 (IsA tyrosinemia autosomal_recessive_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tyrothricin is a kind of antibiotic", "pln": ["(: cnet_isa_bab54a9698 (IsA tyrothricin antibiotic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "tyto is a kind of bird genus", "pln": ["(: cnet_isa_7665bb6162 (IsA tyto bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "tytonidae is a kind of bird family", "pln": ["(: cnet_isa_322ec24cda (IsA tytonidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "u s ambassador is a kind of worker", "pln": ["(: cnet_isa_b4e8670e9f (IsA u_s_ambassador worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "u is a kind of letter", "pln": ["(: cnet_isa_6b1cf00115 (IsA u letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "u2 is a kind of band", "pln": ["(: cnet_isa_366b5e9d4e (IsA u2 band) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "u turn is a kind of reversion", "pln": ["(: cnet_isa_2b0e99828a (IsA u_turn reversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uakari is a kind of new world monkey", "pln": ["(: cnet_isa_5dbcb4e967 (IsA uakari new_world_monkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ubiety is a kind of presence", "pln": ["(: cnet_isa_150f1b5877 (IsA ubiety presence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ubiquinone is a kind of coenzyme", "pln": ["(: cnet_isa_73ec6f1631 (IsA ubiquinone coenzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ubiquinone is a kind of quinone", "pln": ["(: cnet_isa_1e6d2fdaa8 (IsA ubiquinone quinone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ubiquity is a kind of presence", "pln": ["(: cnet_isa_65fbe68c31 (IsA ubiquity presence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ubuntu is a kind of linux", "pln": ["(: cnet_isa_2ca0238f5e (IsA ubuntu linux) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ubykh is a kind of caucasian", "pln": ["(: cnet_isa_a6c780d028 (IsA ubykh caucasian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uca is a kind of arthropod genus", "pln": ["(: cnet_isa_b74df6d8e3 (IsA uca arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ucla is a kind of university", "pln": ["(: cnet_isa_cb17b357e5 (IsA ucla university) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "udder is a kind of mammary gland", "pln": ["(: cnet_isa_66fe3c7fbb (IsA udder mammary_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "udmurt is a kind of permic", "pln": ["(: cnet_isa_d12c5f991d (IsA udmurt permic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ufo is a kind of lowercase for ufo", "pln": ["(: cnet_isa_6d490648e5 (IsA ufo lowercase_for_ufo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ufo is a kind of unidentified flying object", "pln": ["(: cnet_isa_18ec83b68c (IsA ufo unidentified_flying_object) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ugandan is a kind of african", "pln": ["(: cnet_isa_8ce87ce21b (IsA ugandan african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ugandan monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_d1760c32dc (IsA ugandan_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ugandan shilling is a kind of ugandan monetary unit", "pln": ["(: cnet_isa_79eceb068d (IsA ugandan_shilling ugandan_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ugaritic is a kind of canaanitic", "pln": ["(: cnet_isa_6681d6aea8 (IsA ugaritic canaanitic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ugliness is a kind of appearance", "pln": ["(: cnet_isa_f0731b616d (IsA ugliness appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ugly duckling is a kind of person", "pln": ["(: cnet_isa_86bbe2d6c0 (IsA ugly_duckling person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ugric is a kind of finno ugric", "pln": ["(: cnet_isa_2dbb5235a2 (IsA ugric finno_ugric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uighur is a kind of script", "pln": ["(: cnet_isa_8898071065 (IsA uighur script) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uighur is a kind of turki", "pln": ["(: cnet_isa_98fcd2f01a (IsA uighur turki) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uigur is a kind of turki", "pln": ["(: cnet_isa_d9b97ca932 (IsA uigur turki) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uintatheriidae is a kind of mammal family", "pln": ["(: cnet_isa_ae35fefe29 (IsA uintatheriidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uintatherium is a kind of mammal genus", "pln": ["(: cnet_isa_b84f04ec01 (IsA uintatherium mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ukase is a kind of imperial decree", "pln": ["(: cnet_isa_7c567f1c9c (IsA ukase imperial_decree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uke is a kind of guitar", "pln": ["(: cnet_isa_eaa454f20f (IsA uke guitar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ukrainian is a kind of slavic", "pln": ["(: cnet_isa_a55da6333c (IsA ukrainian slavic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ukranian is a kind of european", "pln": ["(: cnet_isa_146809371f (IsA ukranian european) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ukranian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_c999e93993 (IsA ukranian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ulalgia is a kind of pain", "pln": ["(: cnet_isa_d3674fa634 (IsA ulalgia pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ulatrophia is a kind of periodontal disease", "pln": ["(: cnet_isa_390baa5df0 (IsA ulatrophia periodontal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ulcer is a kind of lesion", "pln": ["(: cnet_isa_816366820f (IsA ulcer lesion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ulceration is a kind of organic process", "pln": ["(: cnet_isa_73de8b60fe (IsA ulceration organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ulcerative colitis is a kind of colitis", "pln": ["(: cnet_isa_f1fc32d4b6 (IsA ulcerative_colitis colitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ulema is a kind of body", "pln": ["(: cnet_isa_a0fc873d84 (IsA ulema body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ulemorrhagia is a kind of bleeding", "pln": ["(: cnet_isa_63de0e99dc (IsA ulemorrhagia bleeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ulex is a kind of rosid dicot genus", "pln": ["(: cnet_isa_e54d3937be (IsA ulex rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ulitis is a kind of inflammation", "pln": ["(: cnet_isa_836036c2dc (IsA ulitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ullage is a kind of indefinite quantity", "pln": ["(: cnet_isa_a83a229e66 (IsA ullage indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ullr is a kind of norse deity", "pln": ["(: cnet_isa_2fc7888238 (IsA ullr norse_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ulmaceae is a kind of dicot family", "pln": ["(: cnet_isa_c5b5acbc83 (IsA ulmaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ulmus is a kind of dicot genus", "pln": ["(: cnet_isa_11429e64a7 (IsA ulmus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ulna is a kind of arm bone", "pln": ["(: cnet_isa_50f36409ae (IsA ulna arm_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ulnar artery is a kind of artery", "pln": ["(: cnet_isa_0d34f6dcb6 (IsA ulnar_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ulnar nerve is a kind of nerve", "pln": ["(: cnet_isa_836c0361d5 (IsA ulnar_nerve nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ulnar vein is a kind of vein", "pln": ["(: cnet_isa_65842f86f1 (IsA ulnar_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ulster is a kind of greatcoat", "pln": ["(: cnet_isa_4fd12eb1f3 (IsA ulster greatcoat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ulteriority is a kind of quality", "pln": ["(: cnet_isa_53d0495471 (IsA ulteriority quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ultima is a kind of syllable", "pln": ["(: cnet_isa_ea69995cd1 (IsA ultima syllable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ultimacy is a kind of degree", "pln": ["(: cnet_isa_f73a6e17cd (IsA ultimacy degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ultimate is a kind of quality", "pln": ["(: cnet_isa_4407bcc43d (IsA ultimate quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ultimate frisbee is a kind of field game", "pln": ["(: cnet_isa_ce05a78b99 (IsA ultimate_frisbee field_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ultimatum is a kind of demand", "pln": ["(: cnet_isa_2213fe97fd (IsA ultimatum demand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ultracentrifugation is a kind of centrifugation", "pln": ["(: cnet_isa_93828f63c6 (IsA ultracentrifugation centrifugation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ultracentrifuge is a kind of centrifuge", "pln": ["(: cnet_isa_c26fcf42cc (IsA ultracentrifuge centrifuge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ultrahigh frequency is a kind of radio frequency", "pln": ["(: cnet_isa_dea725b470 (IsA ultrahigh_frequency radio_frequency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ultramarine is a kind of blue", "pln": ["(: cnet_isa_8b70564ef4 (IsA ultramarine blue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ultramarine is a kind of pigment", "pln": ["(: cnet_isa_9d166dee60 (IsA ultramarine pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ultramicroscope is a kind of light microscope", "pln": ["(: cnet_isa_90b13232a9 (IsA ultramicroscope light_microscope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ultramontane is a kind of roman catholic", "pln": ["(: cnet_isa_2343326782 (IsA ultramontane roman_catholic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ultramontanism is a kind of policy", "pln": ["(: cnet_isa_274c778cfa (IsA ultramontanism policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ultrasound is a kind of sound", "pln": ["(: cnet_isa_b57a24c4fa (IsA ultrasound sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ultraviolet is a kind of light", "pln": ["(: cnet_isa_f2fb87bae1 (IsA ultraviolet light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ultraviolet is a kind of radiation", "pln": ["(: cnet_isa_79fc93f9df (IsA ultraviolet radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ultraviolet is a kind of actinic radiation", "pln": ["(: cnet_isa_e82146cb45 (IsA ultraviolet actinic_radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ultraviolet lamp is a kind of source of illumination", "pln": ["(: cnet_isa_57689ba094 (IsA ultraviolet_lamp source_of_illumination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ultraviolet spectrum is a kind of spectrum", "pln": ["(: cnet_isa_03d5df9f17 (IsA ultraviolet_spectrum spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ulva is a kind of protoctist genus", "pln": ["(: cnet_isa_34343abf43 (IsA ulva protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ulvaceae is a kind of protoctist family", "pln": ["(: cnet_isa_21d9b71910 (IsA ulvaceae protoctist_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ulvale is a kind of protoctist order", "pln": ["(: cnet_isa_37c37b811a (IsA ulvale protoctist_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ulvophyceae is a kind of class", "pln": ["(: cnet_isa_31e247506c (IsA ulvophyceae class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uma is a kind of reptile genus", "pln": ["(: cnet_isa_ef6dd71bac (IsA uma reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "umayyad is a kind of dynasty", "pln": ["(: cnet_isa_86545b8a9c (IsA umayyad dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "umbel is a kind of inflorescence", "pln": ["(: cnet_isa_b86d537936 (IsA umbel inflorescence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "umbellale is a kind of plant order", "pln": ["(: cnet_isa_74911b2f19 (IsA umbellale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "umbellifer is a kind of herb", "pln": ["(: cnet_isa_e667b6a996 (IsA umbellifer herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "umbelliferae is a kind of rosid dicot family", "pln": ["(: cnet_isa_fd84c96fc6 (IsA umbelliferae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "umbellularia is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_b092a3746f (IsA umbellularia magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "umber is a kind of earth color", "pln": ["(: cnet_isa_2cbc68d00a (IsA umber earth_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "umbilical cord is a kind of duct", "pln": ["(: cnet_isa_6bc9f981de (IsA umbilical_cord duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "umbilical cord is a kind of fetal membrane", "pln": ["(: cnet_isa_ffa4d35447 (IsA umbilical_cord fetal_membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "umbilical cord is a kind of funiculus", "pln": ["(: cnet_isa_ec60de0f64 (IsA umbilical_cord funiculus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "umbilical hernia is a kind of hernia", "pln": ["(: cnet_isa_e2defc70fa (IsA umbilical_hernia hernia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "umbilical vein is a kind of vein", "pln": ["(: cnet_isa_d39c4c19d4 (IsA umbilical_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "umbo is a kind of convex shape", "pln": ["(: cnet_isa_410765d383 (IsA umbo convex_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "umbra is a kind of shadow", "pln": ["(: cnet_isa_5fc047fd3b (IsA umbra shadow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "umbrage is a kind of anger", "pln": ["(: cnet_isa_223812749c (IsA umbrage anger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "umbrella is a kind of device to protect", "pln": ["(: cnet_isa_52b2e7ab4f (IsA umbrella device_to_protect) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "umbrella is a kind of union", "pln": ["(: cnet_isa_b2dd13d2d9 (IsA umbrella union) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "umbrella is a kind of canopy", "pln": ["(: cnet_isa_ee1dac1c0e (IsA umbrella canopy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "umbrella is a kind of defense", "pln": ["(: cnet_isa_172bc634d6 (IsA umbrella defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "umbrella bird is a kind of cotinga", "pln": ["(: cnet_isa_1abcf29c4a (IsA umbrella_bird cotinga) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "umbrella fern is a kind of fern", "pln": ["(: cnet_isa_9c276289e5 (IsA umbrella_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "umbrella plant is a kind of eriogonum", "pln": ["(: cnet_isa_5d7b8c1cea (IsA umbrella_plant eriogonum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "umbrella plant is a kind of herb", "pln": ["(: cnet_isa_1acdf18e0e (IsA umbrella_plant herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "umbrella plant is a kind of sedge", "pln": ["(: cnet_isa_c92c74fdc9 (IsA umbrella_plant sedge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "umbrella tent is a kind of tent", "pln": ["(: cnet_isa_2631da8048 (IsA umbrella_tent tent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "umbrella tree is a kind of magnolia", "pln": ["(: cnet_isa_ee67d12531 (IsA umbrella_tree magnolia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "umbrella tree is a kind of shrub", "pln": ["(: cnet_isa_9420a848f2 (IsA umbrella_tree shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "umbrellawort is a kind of flower", "pln": ["(: cnet_isa_c3a16a71fd (IsA umbrellawort flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "umbrian is a kind of osco umbrian", "pln": ["(: cnet_isa_58341521fb (IsA umbrian osco_umbrian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "umbrina is a kind of fish genus", "pln": ["(: cnet_isa_610ff05635 (IsA umbrina fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "umbundu is a kind of bantu", "pln": ["(: cnet_isa_91051f54f5 (IsA umbundu bantu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "umlaut is a kind of diacritical mark", "pln": ["(: cnet_isa_bb8e89e277 (IsA umlaut diacritical_mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "umma tameer e nau is a kind of nongovernmental organization", "pln": ["(: cnet_isa_1e3a344f39 (IsA umma_tameer_e_nau nongovernmental_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ummah is a kind of community", "pln": ["(: cnet_isa_3caf5d9730 (IsA ummah community) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "umpirage is a kind of decision making", "pln": ["(: cnet_isa_7d974f2cf6 (IsA umpirage decision_making) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "umpirage is a kind of mediation", "pln": ["(: cnet_isa_f5d009a214 (IsA umpirage mediation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "umpire is a kind of official", "pln": ["(: cnet_isa_1d6b91df22 (IsA umpire official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unabridged dictionary is a kind of dictionary", "pln": ["(: cnet_isa_6ec36ea574 (IsA unabridged_dictionary dictionary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unacceptability is a kind of unsatisfactoriness", "pln": ["(: cnet_isa_3d7bbd196f (IsA unacceptability unsatisfactoriness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unadaptability is a kind of inability", "pln": ["(: cnet_isa_5966608f5c (IsA unadaptability inability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unaffectedness is a kind of naturalness", "pln": ["(: cnet_isa_7e1c078302 (IsA unaffectedness naturalness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unai is a kind of sloth", "pln": ["(: cnet_isa_d4219441a6 (IsA unai sloth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unalterability is a kind of immutability", "pln": ["(: cnet_isa_1a2f0ffc8c (IsA unalterability immutability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unambiguity is a kind of clarity", "pln": ["(: cnet_isa_222464bb26 (IsA unambiguity clarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unanimity is a kind of agreement", "pln": ["(: cnet_isa_fb4be14f9b (IsA unanimity agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "unappetizingness is a kind of unpalatability", "pln": ["(: cnet_isa_9fb4d77d4f (IsA unappetizingness unpalatability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unapproachability is a kind of aloofness", "pln": ["(: cnet_isa_b4f420ba5e (IsA unapproachability aloofness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unassertiveness is a kind of diffidence", "pln": ["(: cnet_isa_9a17f637b2 (IsA unassertiveness diffidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unattainableness is a kind of impossibility", "pln": ["(: cnet_isa_9b59ed590f (IsA unattainableness impossibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unattractiveness is a kind of ugliness", "pln": ["(: cnet_isa_669ba1276f (IsA unattractiveness ugliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unbecomingness is a kind of indecorum", "pln": ["(: cnet_isa_5d1b0f74d4 (IsA unbecomingness indecorum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unbelief is a kind of content", "pln": ["(: cnet_isa_ee9d2a573d (IsA unbelief content) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unbreakableness is a kind of consistency", "pln": ["(: cnet_isa_d08c428e14 (IsA unbreakableness consistency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unceremoniousness is a kind of informality", "pln": ["(: cnet_isa_7454a945a0 (IsA unceremoniousness informality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uncertainty is a kind of quality", "pln": ["(: cnet_isa_912eec130f (IsA uncertainty quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uncertainty principle is a kind of scientific theory", "pln": ["(: cnet_isa_70dcc75f83 (IsA uncertainty_principle scientific_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uncheerfulness is a kind of attribute", "pln": ["(: cnet_isa_5ad9dbb27f (IsA uncheerfulness attribute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uncial is a kind of script", "pln": ["(: cnet_isa_b84313c306 (IsA uncial script) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uncle is a kind of father s brother", "pln": ["(: cnet_isa_a2af69d65e (IsA uncle father_s_brother) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uncle is a kind of parent s brother", "pln": ["(: cnet_isa_e2a83ca754 (IsA uncle parent_s_brother) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uncle is a kind of benefactor", "pln": ["(: cnet_isa_b2536547ce (IsA uncle benefactor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uncle is a kind of kinsman", "pln": ["(: cnet_isa_61d980b60a (IsA uncle kinsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uncleanliness is a kind of trait", "pln": ["(: cnet_isa_ca84845fb4 (IsA uncleanliness trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unclearness is a kind of incomprehensibility", "pln": ["(: cnet_isa_8b64cd6436 (IsA unclearness incomprehensibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uncommonness is a kind of extraordinariness", "pln": ["(: cnet_isa_2158fb3460 (IsA uncommonness extraordinariness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uncommunicativeness is a kind of trait", "pln": ["(: cnet_isa_c90b3079bf (IsA uncommunicativeness trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unconcern is a kind of feeling", "pln": ["(: cnet_isa_c7814e17ea (IsA unconcern feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unconfessed is a kind of people", "pln": ["(: cnet_isa_8b28a43165 (IsA unconfessed people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uncongeniality is a kind of unfriendliness", "pln": ["(: cnet_isa_5338f269ca (IsA uncongeniality unfriendliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unconnectedness is a kind of relation", "pln": ["(: cnet_isa_eaf7035bc0 (IsA unconnectedness relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unconscientiousness is a kind of carelessness", "pln": ["(: cnet_isa_05d6e56511 (IsA unconscientiousness carelessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unconscientiousness is a kind of conscience", "pln": ["(: cnet_isa_c9bd7e7f27 (IsA unconscientiousness conscience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "unconscious mind is a kind of mind", "pln": ["(: cnet_isa_538364230e (IsA unconscious_mind mind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unconsciousness is a kind of cognitive state", "pln": ["(: cnet_isa_627712e98d (IsA unconsciousness cognitive_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unconventionality is a kind of unorthodoxy", "pln": ["(: cnet_isa_781bf45413 (IsA unconventionality unorthodoxy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unconventionality is a kind of originality", "pln": ["(: cnet_isa_1176c72da0 (IsA unconventionality originality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uncreativeness is a kind of inability", "pln": ["(: cnet_isa_42f3aec2b7 (IsA uncreativeness inability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unction is a kind of anointing", "pln": ["(: cnet_isa_437f983e54 (IsA unction anointing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unction is a kind of religious ceremony", "pln": ["(: cnet_isa_9adfc652b5 (IsA unction religious_ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unction is a kind of compliment", "pln": ["(: cnet_isa_62a8d02550 (IsA unction compliment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uncus is a kind of hook", "pln": ["(: cnet_isa_3a438da283 (IsA uncus hook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "undecagon is a kind of polygon", "pln": ["(: cnet_isa_ef65b5b7ce (IsA undecagon polygon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undecylenic acid is a kind of acid", "pln": ["(: cnet_isa_fcca20b105 (IsA undecylenic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undependability is a kind of irresponsibility", "pln": ["(: cnet_isa_6751222c87 (IsA undependability irresponsibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "underachievement is a kind of performance", "pln": ["(: cnet_isa_984fda707a (IsA underachievement performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "underachiever is a kind of student", "pln": ["(: cnet_isa_183e3b09a4 (IsA underachiever student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "underbelly is a kind of weak part", "pln": ["(: cnet_isa_944c098d96 (IsA underbelly weak_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "underbelly is a kind of abdomen", "pln": ["(: cnet_isa_a8666af5ca (IsA underbelly abdomen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "underbelly is a kind of bottom", "pln": ["(: cnet_isa_3bbfa5ab8d (IsA underbelly bottom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "underboss is a kind of assistant", "pln": ["(: cnet_isa_95ec5f3515 (IsA underboss assistant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "underbrush is a kind of brush", "pln": ["(: cnet_isa_ccc4633d67 (IsA underbrush brush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undercarriage is a kind of framework", "pln": ["(: cnet_isa_9509258e37 (IsA undercarriage framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undercarriage is a kind of support", "pln": ["(: cnet_isa_d25ceb009c (IsA undercarriage support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undercharge is a kind of charge", "pln": ["(: cnet_isa_7263af373b (IsA undercharge charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undercoat is a kind of fur", "pln": ["(: cnet_isa_ac0806b5f1 (IsA undercoat fur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undercoat is a kind of seal", "pln": ["(: cnet_isa_17b2ddd8d2 (IsA undercoat seal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undercover operation is a kind of operation", "pln": ["(: cnet_isa_eeb9e818e1 (IsA undercover_operation operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undercut is a kind of cut", "pln": ["(: cnet_isa_63f94c8504 (IsA undercut cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undercut is a kind of forestry", "pln": ["(: cnet_isa_59ee44959e (IsA undercut forestry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undercut is a kind of notch", "pln": ["(: cnet_isa_595aaedf15 (IsA undercut notch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undercut is a kind of material", "pln": ["(: cnet_isa_acbfb58bb9 (IsA undercut material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "underdevelopment is a kind of development", "pln": ["(: cnet_isa_6482737983 (IsA underdevelopment development) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "underdog is a kind of failure", "pln": ["(: cnet_isa_f37644104a (IsA underdog failure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "underestimate is a kind of estimate", "pln": ["(: cnet_isa_5ec7ec6ce8 (IsA underestimate estimate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "underevaluation is a kind of appraisal", "pln": ["(: cnet_isa_f3557cf8dc (IsA underevaluation appraisal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "underexposure is a kind of exposure", "pln": ["(: cnet_isa_1535b9540c (IsA underexposure exposure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "underfelt is a kind of carpet pad", "pln": ["(: cnet_isa_69e4a1876a (IsA underfelt carpet_pad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undergarment is a kind of garment", "pln": ["(: cnet_isa_dd64da1c75 (IsA undergarment garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undergraduate is a kind of collegian", "pln": ["(: cnet_isa_64ba35009e (IsA undergraduate collegian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "underground is a kind of revolutionary group", "pln": ["(: cnet_isa_97fd9b5190 (IsA underground revolutionary_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "underlip is a kind of lip", "pln": ["(: cnet_isa_6161cf6bdf (IsA underlip lip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undernourishment is a kind of hunger", "pln": ["(: cnet_isa_c6d8978f5e (IsA undernourishment hunger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "underpant is a kind of undergarment", "pln": ["(: cnet_isa_e480e062f0 (IsA underpant undergarment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "underpart is a kind of body part", "pln": ["(: cnet_isa_ff036ce8b1 (IsA underpart body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "underpass is a kind of tunnel", "pln": ["(: cnet_isa_c4bdd00231 (IsA underpass tunnel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "underpayment is a kind of payment", "pln": ["(: cnet_isa_c737ee64d5 (IsA underpayment payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "underperformer is a kind of business", "pln": ["(: cnet_isa_b81e681174 (IsA underperformer business) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "underproduction is a kind of production", "pln": ["(: cnet_isa_6c973f678a (IsA underproduction production) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "underscore is a kind of stroke", "pln": ["(: cnet_isa_d48d0287bb (IsA underscore stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undersecretary is a kind of secretary", "pln": ["(: cnet_isa_cf7234dfc4 (IsA undersecretary secretary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "underseller is a kind of seller", "pln": ["(: cnet_isa_9108504d51 (IsA underseller seller) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undershrub is a kind of shrub", "pln": ["(: cnet_isa_23864ae0a0 (IsA undershrub shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "understanding is a kind of knowing", "pln": ["(: cnet_isa_71f4f446ed (IsA understanding knowing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "understatement is a kind of statement", "pln": ["(: cnet_isa_ca4e81af49 (IsA understatement statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "understudy is a kind of actor", "pln": ["(: cnet_isa_781404a91b (IsA understudy actor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undertaking is a kind of trade", "pln": ["(: cnet_isa_b05a76eeb0 (IsA undertaking trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undertaking is a kind of work", "pln": ["(: cnet_isa_0a43c76809 (IsA undertaking work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undertide is a kind of current", "pln": ["(: cnet_isa_a65ec1e29a (IsA undertide current) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undertone is a kind of shade", "pln": ["(: cnet_isa_53a9f75016 (IsA undertone shade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "undertone is a kind of meaning", "pln": ["(: cnet_isa_3ef345153c (IsA undertone meaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "undies is a kind of lingerie", "pln": ["(: cnet_isa_0b3e282a83 (IsA undies lingerie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undertone is a kind of tone", "pln": ["(: cnet_isa_134d7505d4 (IsA undertone tone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undertow is a kind of undertide", "pln": ["(: cnet_isa_066bd0ddb9 (IsA undertow undertide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undertow is a kind of inclination", "pln": ["(: cnet_isa_f74aa6fadf (IsA undertow inclination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undervaluation is a kind of evaluation", "pln": ["(: cnet_isa_67f5b9b782 (IsA undervaluation evaluation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "underwear is a kind of undergarment", "pln": ["(: cnet_isa_324744a1c3 (IsA underwear undergarment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "underwing is a kind of noctuid moth", "pln": ["(: cnet_isa_fc55ed4386 (IsA underwing noctuid_moth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "underworld is a kind of class", "pln": ["(: cnet_isa_e721f29f2e (IsA underworld class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undescended testis is a kind of testis", "pln": ["(: cnet_isa_a21b524df4 (IsA undescended_testis testis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undesirability is a kind of bad", "pln": ["(: cnet_isa_749a0ab1bc (IsA undesirability bad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undesirable is a kind of unwelcome person", "pln": ["(: cnet_isa_127100a178 (IsA undesirable unwelcome_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undy is a kind of lingerie", "pln": ["(: cnet_isa_6e34630b7c (IsA undy lingerie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undine is a kind of water sprite", "pln": ["(: cnet_isa_0bf52d8488 (IsA undine water_sprite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undivided interest is a kind of interest", "pln": ["(: cnet_isa_64337865fe (IsA undivided_interest interest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undoer is a kind of person", "pln": ["(: cnet_isa_28341abd53 (IsA undoer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undoer is a kind of seducer", "pln": ["(: cnet_isa_54d4c49c91 (IsA undoer seducer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undoing is a kind of about face", "pln": ["(: cnet_isa_80f24a886a (IsA undoing about_face) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undress is a kind of nakedness", "pln": ["(: cnet_isa_1adc30e674 (IsA undress nakedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "undulation is a kind of movement", "pln": ["(: cnet_isa_0cba3342a1 (IsA undulation movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "undutifulness is a kind of impiety", "pln": ["(: cnet_isa_66862c40b9 (IsA undutifulness impiety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "unearned income is a kind of income", "pln": ["(: cnet_isa_786b4a2073 (IsA unearned_income income) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "uneven parallel bars is a kind of parallel bars", "pln": ["(: cnet_isa_8939652ae6 (IsA uneven_parallel_bars parallel_bars) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unearned increment is a kind of financial gain", "pln": ["(: cnet_isa_3c3552ddb1 (IsA unearned_increment financial_gain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unearned run is a kind of run", "pln": ["(: cnet_isa_a978a7ad48 (IsA unearned_run run) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unemotionality is a kind of trait", "pln": ["(: cnet_isa_ac10ce6fee (IsA unemotionality trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unemployed people is a kind of people", "pln": ["(: cnet_isa_f49ef20ae9 (IsA unemployed_people people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unemployed person is a kind of nonworker", "pln": ["(: cnet_isa_1e6cd52406 (IsA unemployed_person nonworker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unemployment is a kind of state", "pln": ["(: cnet_isa_28dc0bbc3c (IsA unemployment state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unemployment compensation is a kind of social insurance", "pln": ["(: cnet_isa_701e5e4d1e (IsA unemployment_compensation social_insurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unemployment line is a kind of queue", "pln": ["(: cnet_isa_9e891faa76 (IsA unemployment_line queue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unemployment rate is a kind of percentage", "pln": ["(: cnet_isa_c171b295c3 (IsA unemployment_rate percentage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unenlightenment is a kind of ignorance", "pln": ["(: cnet_isa_8d23aebdfd (IsA unenlightenment ignorance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uneven parallel bar is a kind of parallel bar", "pln": ["(: cnet_isa_dcc268c370 (IsA uneven_parallel_bar parallel_bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unevenness is a kind of inequality", "pln": ["(: cnet_isa_2fbc009b8e (IsA unevenness inequality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unevenness is a kind of irregularity", "pln": ["(: cnet_isa_fe2af7de88 (IsA unevenness irregularity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "unexchangeability is a kind of changelessness", "pln": ["(: cnet_isa_1ae071fecf (IsA unexchangeability changelessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unexpectedness is a kind of extraordinariness", "pln": ["(: cnet_isa_ddc427cdf4 (IsA unexpectedness extraordinariness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unfairness is a kind of injustice", "pln": ["(: cnet_isa_bf2653f380 (IsA unfairness injustice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unfairness is a kind of partiality", "pln": ["(: cnet_isa_f457e4c138 (IsA unfairness partiality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unfamiliarity is a kind of unusualness", "pln": ["(: cnet_isa_21268a50fd (IsA unfamiliarity unusualness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unfavorableness is a kind of disadvantage", "pln": ["(: cnet_isa_8db5905d59 (IsA unfavorableness disadvantage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "unfeelingness is a kind of insensitivity", "pln": ["(: cnet_isa_999ca09994 (IsA unfeelingness insensitivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unfitness is a kind of unsuitability", "pln": ["(: cnet_isa_9ee8bd187f (IsA unfitness unsuitability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unfitness is a kind of ill health", "pln": ["(: cnet_isa_98b40d6e66 (IsA unfitness ill_health) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unfolding is a kind of development", "pln": ["(: cnet_isa_e4a8004009 (IsA unfolding development) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unformatted capacity is a kind of capacity", "pln": ["(: cnet_isa_6ba5855a82 (IsA unformatted_capacity capacity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unfortunate is a kind of person", "pln": ["(: cnet_isa_f556d8b7a4 (IsA unfortunate person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unfriendliness is a kind of disposition", "pln": ["(: cnet_isa_5b3a691250 (IsA unfriendliness disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unfriendliness is a kind of dislike", "pln": ["(: cnet_isa_8d6a3e64a1 (IsA unfriendliness dislike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ungodliness is a kind of impiety", "pln": ["(: cnet_isa_b75c6a6675 (IsA ungodliness impiety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ungraciousness is a kind of discourtesy", "pln": ["(: cnet_isa_4e08101059 (IsA ungraciousness discourtesy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ungradable opposition is a kind of opposition", "pln": ["(: cnet_isa_93d25b3e26 (IsA ungradable_opposition opposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unguiculata is a kind of placental", "pln": ["(: cnet_isa_569a6c001f (IsA unguiculata placental) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unguiculate is a kind of placental", "pln": ["(: cnet_isa_5d72287d2f (IsA unguiculate placental) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ungulata is a kind of placental", "pln": ["(: cnet_isa_552b0d6fc7 (IsA ungulata placental) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ungulate is a kind of placental", "pln": ["(: cnet_isa_08731133b8 (IsA ungulate placental) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unhappiness is a kind of emotional state", "pln": ["(: cnet_isa_0f0da91084 (IsA unhappiness emotional_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unhealthfulness is a kind of unwholesomeness", "pln": ["(: cnet_isa_8f68ea6005 (IsA unhealthfulness unwholesomeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unhelpfulness is a kind of unkindness", "pln": ["(: cnet_isa_3f9f9a8d9f (IsA unhelpfulness unkindness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unholiness is a kind of quality", "pln": ["(: cnet_isa_3b6ab7f850 (IsA unholiness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uniat church is a kind of catholic church", "pln": ["(: cnet_isa_3c9dd8d7d2 (IsA uniat_church catholic_church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uniate christian is a kind of catholic", "pln": ["(: cnet_isa_f258f52781 (IsA uniate_christian catholic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unicameral script is a kind of font", "pln": ["(: cnet_isa_a92d2132b6 (IsA unicameral_script font) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unicorn is a kind of make believe creature", "pln": ["(: cnet_isa_6e71bb3658 (IsA unicorn make_believe_creature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unicorn is a kind of imaginary being", "pln": ["(: cnet_isa_f2b04ea36e (IsA unicorn imaginary_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unicycle is a kind of vehicle", "pln": ["(: cnet_isa_d93fe40d17 (IsA unicycle vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unicycle is a kind of wheeled vehicle", "pln": ["(: cnet_isa_51eb52e15f (IsA unicycle wheeled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unicyclist is a kind of pedaler", "pln": ["(: cnet_isa_29d39280fd (IsA unicyclist pedaler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unidentified flying object is a kind of apparition", "pln": ["(: cnet_isa_cc5b9a209f (IsA unidentified_flying_object apparition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unification church is a kind of church", "pln": ["(: cnet_isa_985ff44176 (IsA unification_church church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uniform is a kind of clothing", "pln": ["(: cnet_isa_00d1ada146 (IsA uniform clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "uniformity is a kind of regularity", "pln": ["(: cnet_isa_bddc4ecf5b (IsA uniformity regularity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uniformity is a kind of similarity", "pln": ["(: cnet_isa_167aaab312 (IsA uniformity similarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unilateral contract is a kind of agreement", "pln": ["(: cnet_isa_7a25da03c0 (IsA unilateral_contract agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unilateral descent is a kind of descent", "pln": ["(: cnet_isa_84d66140d3 (IsA unilateral_descent descent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unilateralism is a kind of doctrine", "pln": ["(: cnet_isa_f873343416 (IsA unilateralism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unilateralist is a kind of advocate", "pln": ["(: cnet_isa_4ddd226864 (IsA unilateralist advocate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unimportance is a kind of value", "pln": ["(: cnet_isa_65d3307839 (IsA unimportance value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "uninitiate is a kind of people", "pln": ["(: cnet_isa_88b18627b7 (IsA uninitiate people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uninominal system is a kind of voting system", "pln": ["(: cnet_isa_2e8ee0fc7e (IsA uninominal_system voting_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uninsurability is a kind of ineligibility", "pln": ["(: cnet_isa_f141db4945 (IsA uninsurability ineligibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unintelligibility is a kind of incomprehensibility", "pln": ["(: cnet_isa_d01a8e9233 (IsA unintelligibility incomprehensibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uninterestingness is a kind of powerlessness", "pln": ["(: cnet_isa_2ddd05eaff (IsA uninterestingness powerlessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unio is a kind of mollusk genus", "pln": ["(: cnet_isa_bb326253c1 (IsA unio mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uniocular dichromat is a kind of dichromat", "pln": ["(: cnet_isa_952cc72f38 (IsA uniocular_dichromat dichromat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "union is a kind of collective bargaining unit", "pln": ["(: cnet_isa_7a28a90777 (IsA union collective_bargaining_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "union is a kind of combination", "pln": ["(: cnet_isa_c8fded83a2 (IsA union combination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "union is a kind of device", "pln": ["(: cnet_isa_57e67ef6c6 (IsA union device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "union is a kind of happening", "pln": ["(: cnet_isa_612070808d (IsA union happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "union is a kind of organization", "pln": ["(: cnet_isa_6527b0b33c (IsA union organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "union is a kind of political unit", "pln": ["(: cnet_isa_5adcbb2288 (IsA union political_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "union is a kind of set", "pln": ["(: cnet_isa_c5786b325c (IsA union set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "union is a kind of healing", "pln": ["(: cnet_isa_e66938a072 (IsA union healing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "union is a kind of state", "pln": ["(: cnet_isa_bc0f2120f1 (IsA union state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "union army is a kind of army", "pln": ["(: cnet_isa_c11df7ecca (IsA union_army army) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "union army is a kind of blue", "pln": ["(: cnet_isa_5d0f34ad58 (IsA union_army blue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "union card is a kind of membership card", "pln": ["(: cnet_isa_9f3803268d (IsA union_card membership_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "union jack is a kind of flag", "pln": ["(: cnet_isa_d45a6fff93 (IsA union_jack flag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "union representative is a kind of representative", "pln": ["(: cnet_isa_f6433b53f4 (IsA union_representative representative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "union shop is a kind of company", "pln": ["(: cnet_isa_681597a231 (IsA union_shop company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unionidae is a kind of mollusk family", "pln": ["(: cnet_isa_0613728611 (IsA unionidae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unionism is a kind of labor movement", "pln": ["(: cnet_isa_bb4af6e95b (IsA unionism labor_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unionization is a kind of constitution", "pln": ["(: cnet_isa_93ad4fbb70 (IsA unionization constitution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unipolar depression is a kind of major depressive episode", "pln": ["(: cnet_isa_064bc3ad41 (IsA unipolar_depression major_depressive_episode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unison is a kind of concurrence", "pln": ["(: cnet_isa_8c39aad7cf (IsA unison concurrence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unison is a kind of sound", "pln": ["(: cnet_isa_8dc04448ea (IsA unison sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unison is a kind of agreement", "pln": ["(: cnet_isa_e8e58fbc41 (IsA unison agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unit is a kind of whole", "pln": ["(: cnet_isa_8caee00650 (IsA unit whole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unit is a kind of organization", "pln": ["(: cnet_isa_7e3a98e101 (IsA unit organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unit is a kind of part", "pln": ["(: cnet_isa_4d66bce0de (IsA unit part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unit is a kind of thing", "pln": ["(: cnet_isa_b90537b3f8 (IsA unit thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unit cell is a kind of unit", "pln": ["(: cnet_isa_525820536b (IsA unit_cell unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unit character is a kind of character", "pln": ["(: cnet_isa_cb341b824b (IsA unit_character character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unit cost is a kind of cost", "pln": ["(: cnet_isa_d73119d48d (IsA unit_cost cost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unit investment trust is a kind of investment company", "pln": ["(: cnet_isa_0003ab86b5 (IsA unit_investment_trust investment_company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "unit of measurement is a kind of definite quantity", "pln": ["(: cnet_isa_d246f6ba2f (IsA unit_of_measurement definite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "united states attorney general is a kind of secretary", "pln": ["(: cnet_isa_c293bd993b (IsA united_states_attorney_general secretary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "united states fish and wildlife service is a kind of agency", "pln": ["(: cnet_isa_47a851eeb6 (IsA united_states_fish_and_wildlife_service agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "united states government printing office is a kind of agency", "pln": ["(: cnet_isa_30ea64b085 (IsA united_states_government_printing_office agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "united states postal inspection service is a kind of independent agency", "pln": ["(: cnet_isa_effca9f269 (IsA united_states_postal_inspection_service independent_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unit of viscosity is a kind of unit of measurement", "pln": ["(: cnet_isa_c10005a8cd (IsA unit_of_viscosity unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unit vector is a kind of vector", "pln": ["(: cnet_isa_beacbd0b12 (IsA unit_vector vector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unitarian is a kind of disciple", "pln": ["(: cnet_isa_75ba7f4f36 (IsA unitarian disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unitarian church is a kind of protestant denomination", "pln": ["(: cnet_isa_9971928004 (IsA unitarian_church protestant_denomination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unitarianism is a kind of religion", "pln": ["(: cnet_isa_d7ba839997 (IsA unitarianism religion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united arab emirate dirham is a kind of united arab emirate monetary unit", "pln": ["(: cnet_isa_fdc11ac18a (IsA united_arab_emirate_dirham united_arab_emirate_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united arab emirate monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_646764bef8 (IsA united_arab_emirate_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united church of christ is a kind of protestant denomination", "pln": ["(: cnet_isa_dcd79b7c34 (IsA united_church_of_christ protestant_denomination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united methodist church is a kind of methodist denomination", "pln": ["(: cnet_isa_eff6a992dc (IsA united_methodist_church methodist_denomination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united mine worker of america is a kind of industrial union", "pln": ["(: cnet_isa_e85d71aa43 (IsA united_mine_worker_of_america industrial_union) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united nation is a kind of world organization", "pln": ["(: cnet_isa_b6871f7015 (IsA united_nation world_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united nation agency is a kind of administrative unit", "pln": ["(: cnet_isa_664c944e0f (IsA united_nation_agency administrative_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united nation children s fund is a kind of united nation agency", "pln": ["(: cnet_isa_98648584e0 (IsA united_nation_children_s_fund united_nation_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united nation crime prevention and criminal justice is a kind of united nation agency", "pln": ["(: cnet_isa_5ade7295b8 (IsA united_nation_crime_prevention_and_criminal_justice united_nation_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united nation day is a kind of day", "pln": ["(: cnet_isa_f5e7058493 (IsA united_nation_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united nation educational scientific and cultural organization is a kind of united nation agency", "pln": ["(: cnet_isa_bc7c2f5a6e (IsA united_nation_educational_scientific_and_cultural_organization united_nation_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united nation office for drug control and crime prevention is a kind of united nation agency", "pln": ["(: cnet_isa_92688ab398 (IsA united_nation_office_for_drug_control_and_crime_prevention united_nation_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united nation secretariat is a kind of secretariat", "pln": ["(: cnet_isa_854fd31013 (IsA united_nation_secretariat secretariat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state is a kind of country in north america", "pln": ["(: cnet_isa_15cd701e74 (IsA united_state country_in_north_america) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state is a kind of free country", "pln": ["(: cnet_isa_de6459ab03 (IsA united_state free_country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state is a kind of one country in world", "pln": ["(: cnet_isa_aabb95bfdc (IsA united_state one_country_in_world) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state air force is a kind of agency", "pln": ["(: cnet_isa_9c9b5774b9 (IsA united_state_air_force agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state air force academy is a kind of air force academy", "pln": ["(: cnet_isa_83f17a87e2 (IsA united_state_air_force_academy air_force_academy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state army is a kind of agency", "pln": ["(: cnet_isa_0336b82923 (IsA united_state_army agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state army ranger is a kind of battalion", "pln": ["(: cnet_isa_dc4d8ecaf7 (IsA united_state_army_ranger battalion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state attorney general is a kind of secretary", "pln": ["(: cnet_isa_51c512f43f (IsA united_state_attorney_general secretary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state border patrol is a kind of agency", "pln": ["(: cnet_isa_8ff756e7d0 (IsA united_state_border_patrol agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state cabinet is a kind of cabinet", "pln": ["(: cnet_isa_c88e592599 (IsA united_state_cabinet cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state coast guard is a kind of agency", "pln": ["(: cnet_isa_ae3f600c4f (IsA united_state_coast_guard agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state coast guard is a kind of coastguard", "pln": ["(: cnet_isa_c3c53095a8 (IsA united_state_coast_guard coastguard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state code is a kind of legal code", "pln": ["(: cnet_isa_d431575af6 (IsA united_state_code legal_code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state customary system is a kind of system of weight and measure", "pln": ["(: cnet_isa_6dca8b2b70 (IsA united_state_customary_system system_of_weight_and_measure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state dollar is a kind of dollar", "pln": ["(: cnet_isa_2948799e63 (IsA united_state_dollar dollar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state dry unit is a kind of dry unit", "pln": ["(: cnet_isa_d7f46ff40f (IsA united_state_dry_unit dry_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state fish and wildlife service is a kind of agency", "pln": ["(: cnet_isa_87af757d9d (IsA united_state_fish_and_wildlife_service agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state government is a kind of federal government", "pln": ["(: cnet_isa_b4604e806c (IsA united_state_government federal_government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state government printing office is a kind of agency", "pln": ["(: cnet_isa_5c3db299b8 (IsA united_state_government_printing_office agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state house of representative is a kind of house", "pln": ["(: cnet_isa_f4092c08c7 (IsA united_state_house_of_representative house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state intelligence agency is a kind of intelligence", "pln": ["(: cnet_isa_3347a6920e (IsA united_state_intelligence_agency intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state liquid unit is a kind of liquid unit", "pln": ["(: cnet_isa_c6ba32927f (IsA united_state_liquid_unit liquid_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state marine corp is a kind of marine", "pln": ["(: cnet_isa_5e7e16c0a6 (IsA united_state_marine_corp marine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state marshal service is a kind of law enforcement agency", "pln": ["(: cnet_isa_7d0914ddf7 (IsA united_state_marshal_service law_enforcement_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state military academy is a kind of military academy", "pln": ["(: cnet_isa_c9fc3cf2e6 (IsA united_state_military_academy military_academy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state naval academy is a kind of naval academy", "pln": ["(: cnet_isa_bb0abfe6b1 (IsA united_state_naval_academy naval_academy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state navy is a kind of agency", "pln": ["(: cnet_isa_5f2755c939 (IsA united_state_navy agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state of america is a kind of capitalist democratic federal republic", "pln": ["(: cnet_isa_f4f701c2d1 (IsA united_state_of_america capitalist_democratic_federal_republic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state of america is a kind of country", "pln": ["(: cnet_isa_c6a5ae9990 (IsA united_state_of_america country) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state post office is a kind of independent agency", "pln": ["(: cnet_isa_b37b5d6127 (IsA united_state_post_office independent_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state postal inspection service is a kind of independent agency", "pln": ["(: cnet_isa_62fd27f18e (IsA united_state_postal_inspection_service independent_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state postal service is a kind of independent agency", "pln": ["(: cnet_isa_23d6191ec0 (IsA united_state_postal_service independent_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state president is a kind of head of state", "pln": ["(: cnet_isa_2cbf731e2b (IsA united_state_president head_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state public health service is a kind of agency", "pln": ["(: cnet_isa_c6ed18506a (IsA united_state_public_health_service agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state secret service is a kind of united state intelligence agency", "pln": ["(: cnet_isa_84128f7e63 (IsA united_state_secret_service united_state_intelligence_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state senate is a kind of senate", "pln": ["(: cnet_isa_02f62e7bb9 (IsA united_state_senate senate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "united state trade representative is a kind of executive agency", "pln": ["(: cnet_isa_606925fb07 (IsA united_state_trade_representative executive_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unitization is a kind of conversion", "pln": ["(: cnet_isa_2ac251d29b (IsA unitization conversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unitization is a kind of exploitation", "pln": ["(: cnet_isa_9e798702cc (IsA unitization exploitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unitization is a kind of packaging", "pln": ["(: cnet_isa_d2a185c420 (IsA unitization packaging) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unitization is a kind of configuration", "pln": ["(: cnet_isa_374f754794 (IsA unitization configuration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unit of time is a kind of second", "pln": ["(: cnet_isa_f97ed002e1 (IsA unit_of_time second) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "universal is a kind of convention", "pln": ["(: cnet_isa_e6c26c282b (IsA universal convention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "universal agent is a kind of agent", "pln": ["(: cnet_isa_bb6eeb8540 (IsA universal_agent agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "universal donor is a kind of blood donor", "pln": ["(: cnet_isa_941963367a (IsA universal_donor blood_donor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "universal joint is a kind of coupling", "pln": ["(: cnet_isa_d0ef5f120c (IsA universal_joint coupling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "universal proposition is a kind of proposition", "pln": ["(: cnet_isa_df5b9e5b05 (IsA universal_proposition proposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "universal quantifier is a kind of quantifier", "pln": ["(: cnet_isa_7c456a33a2 (IsA universal_quantifier quantifier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "universal set is a kind of set", "pln": ["(: cnet_isa_f4587608d7 (IsA universal_set set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "universal suffrage is a kind of right to vote", "pln": ["(: cnet_isa_89bc29870d (IsA universal_suffrage right_to_vote) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "universal veil is a kind of partial veil", "pln": ["(: cnet_isa_2e54c32ddb (IsA universal_veil partial_veil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "universalism is a kind of theological doctrine", "pln": ["(: cnet_isa_90ada5b16a (IsA universalism theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "universality is a kind of generality", "pln": ["(: cnet_isa_71386cdfb5 (IsA universality generality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "universe is a kind of all around us", "pln": ["(: cnet_isa_4c5ea94098 (IsA universe all_around_us) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "universe is a kind of everything", "pln": ["(: cnet_isa_3ded71393f (IsA universe everything) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "universe is a kind of thing", "pln": ["(: cnet_isa_6ccd7da76b (IsA universe thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "universe is a kind of content", "pln": ["(: cnet_isa_dd6c20a804 (IsA universe content) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "universe is a kind of natural object", "pln": ["(: cnet_isa_c43b64ba69 (IsA universe natural_object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "university is a kind of educational institution", "pln": ["(: cnet_isa_48f3d88926 (IsA university educational_institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "university is a kind of institution", "pln": ["(: cnet_isa_862c313c5f (IsA university institution) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "university is a kind of place", "pln": ["(: cnet_isa_25f0d0fa20 (IsA university place) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "university is a kind of school", "pln": ["(: cnet_isa_1e3d83135a (IsA university school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "university is a kind of establishment", "pln": ["(: cnet_isa_a4ca7d4e57 (IsA university establishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "university is a kind of body", "pln": ["(: cnet_isa_bb3e955373 (IsA university body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unix is a kind of operating system", "pln": ["(: cnet_isa_72be3f24f3 (IsA unix operating_system) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unix is a kind of system", "pln": ["(: cnet_isa_08d7e361b2 (IsA unix system) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unix guru is a kind of computer expert", "pln": ["(: cnet_isa_9fa00c8471 (IsA unix_guru computer_expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unkindness is a kind of insensitivity", "pln": ["(: cnet_isa_7a49ab2ee3 (IsA unkindness insensitivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unknowingness is a kind of unconsciousness", "pln": ["(: cnet_isa_6e8e5a8e8e (IsA unknowingness unconsciousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unknown is a kind of variable", "pln": ["(: cnet_isa_ba00d4b693 (IsA unknown variable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unknown is a kind of region", "pln": ["(: cnet_isa_d13bf65cfa (IsA unknown region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unknown quantity is a kind of factor", "pln": ["(: cnet_isa_efbfb80ebc (IsA unknown_quantity factor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unknown soldier is a kind of soldier", "pln": ["(: cnet_isa_9a80578230 (IsA unknown_soldier soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unlawful carnal knowledge is a kind of sexual intercourse", "pln": ["(: cnet_isa_fc730b1c75 (IsA unlawful_carnal_knowledge sexual_intercourse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unlawfulness is a kind of quality", "pln": ["(: cnet_isa_8f9ec87a6f (IsA unlawfulness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unleaded gasoline is a kind of gasoline", "pln": ["(: cnet_isa_68df407422 (IsA unleaded_gasoline gasoline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unlikelihood is a kind of improbability", "pln": ["(: cnet_isa_60b6feb30d (IsA unlikelihood improbability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unlikeness is a kind of dissimilarity", "pln": ["(: cnet_isa_2a92255136 (IsA unlikeness dissimilarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unlisted security is a kind of security", "pln": ["(: cnet_isa_95d5123368 (IsA unlisted_security security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unloading is a kind of handling", "pln": ["(: cnet_isa_a165d0e5aa (IsA unloading handling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unmalleability is a kind of physical property", "pln": ["(: cnet_isa_055f975faf (IsA unmalleability physical_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unmarried woman is a kind of woman", "pln": ["(: cnet_isa_981bab7148 (IsA unmarried_woman woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unmindfulness is a kind of attentiveness", "pln": ["(: cnet_isa_e3d8148aeb (IsA unmindfulness attentiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unnaturalness is a kind of quality", "pln": ["(: cnet_isa_18aab79afa (IsA unnaturalness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "unneighborliness is a kind of unfriendliness", "pln": ["(: cnet_isa_7544937428 (IsA unneighborliness unfriendliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unnilhexium is a kind of chemical element", "pln": ["(: cnet_isa_d9198eb7bc (IsA unnilhexium chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unnilquintium is a kind of chemical element", "pln": ["(: cnet_isa_49d0077d88 (IsA unnilquintium chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unnilseptium is a kind of chemical element", "pln": ["(: cnet_isa_a128d138ae (IsA unnilseptium chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unnoticeableness is a kind of inconspicuousness", "pln": ["(: cnet_isa_96c94df815 (IsA unnoticeableness inconspicuousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unobserved fire is a kind of fire", "pln": ["(: cnet_isa_05b4a3f67d (IsA unobserved_fire fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unobtrusiveness is a kind of inconspicuousness", "pln": ["(: cnet_isa_e630798f49 (IsA unobtrusiveness inconspicuousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unoriginality is a kind of quality", "pln": ["(: cnet_isa_4a3f568f67 (IsA unoriginality quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unoriginality is a kind of uncreativeness", "pln": ["(: cnet_isa_db20d742db (IsA unoriginality uncreativeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unorthodoxy is a kind of originality", "pln": ["(: cnet_isa_5d6fadd738 (IsA unorthodoxy originality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unorthodoxy is a kind of orientation", "pln": ["(: cnet_isa_2c2de17c75 (IsA unorthodoxy orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unpalatability is a kind of taste property", "pln": ["(: cnet_isa_967e420d9f (IsA unpalatability taste_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "unpalatableness is a kind of disagreeableness", "pln": ["(: cnet_isa_48d4567873 (IsA unpalatableness disagreeableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unperceptiveness is a kind of insensitivity", "pln": ["(: cnet_isa_4ef93d7bd8 (IsA unperceptiveness insensitivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unpermissiveness is a kind of disposition", "pln": ["(: cnet_isa_342302e490 (IsA unpermissiveness disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unpersuasiveness is a kind of powerlessness", "pln": ["(: cnet_isa_726e6e4110 (IsA unpersuasiveness powerlessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unpleasant person is a kind of unwelcome person", "pln": ["(: cnet_isa_b0d8ee68ec (IsA unpleasant_person unwelcome_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unpleasant woman is a kind of unpleasant person", "pln": ["(: cnet_isa_1bb3d66e65 (IsA unpleasant_woman unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "unpleasantness is a kind of quality", "pln": ["(: cnet_isa_67406b3c70 (IsA unpleasantness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "unpleasantness is a kind of pain", "pln": ["(: cnet_isa_9c6e4a6b9a (IsA unpleasantness pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unpleasingness is a kind of unpleasantness", "pln": ["(: cnet_isa_07d69c62a5 (IsA unpleasingness unpleasantness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unpointedness is a kind of taper", "pln": ["(: cnet_isa_310680a9de (IsA unpointedness taper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unpopularity is a kind of quality", "pln": ["(: cnet_isa_01c8d0dca3 (IsA unpopularity quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unpredictability is a kind of uncertainty", "pln": ["(: cnet_isa_25b656ca34 (IsA unpredictability uncertainty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "unpretentiousness is a kind of naturalness", "pln": ["(: cnet_isa_d7e3a07159 (IsA unpretentiousness naturalness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unproductiveness is a kind of fruitlessness", "pln": ["(: cnet_isa_8272f5776d (IsA unproductiveness fruitlessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unprofitableness is a kind of disadvantage", "pln": ["(: cnet_isa_e47cd5bef1 (IsA unprofitableness disadvantage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unreality is a kind of immateriality", "pln": ["(: cnet_isa_c5935fd756 (IsA unreality immateriality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unreality is a kind of nonexistence", "pln": ["(: cnet_isa_099cfaa49b (IsA unreality nonexistence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unrelatedness is a kind of unconnectedness", "pln": ["(: cnet_isa_bde02916e7 (IsA unrelatedness unconnectedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unrespectability is a kind of dishonorableness", "pln": ["(: cnet_isa_70303f9cd4 (IsA unrespectability dishonorableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unresponsiveness is a kind of quality", "pln": ["(: cnet_isa_541310d40a (IsA unresponsiveness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unrest is a kind of agitation", "pln": ["(: cnet_isa_14583bec7a (IsA unrest agitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unrestraint is a kind of indiscipline", "pln": ["(: cnet_isa_c5b7d015fb (IsA unrestraint indiscipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unrighteousness is a kind of immorality", "pln": ["(: cnet_isa_362b1e7063 (IsA unrighteousness immorality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unruliness is a kind of intractability", "pln": ["(: cnet_isa_8291296850 (IsA unruliness intractability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unsanitariness is a kind of sanitary condition", "pln": ["(: cnet_isa_8a45a59f7e (IsA unsanitariness sanitary_condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "unsatisfactoriness is a kind of quality", "pln": ["(: cnet_isa_f2a48850ce (IsA unsatisfactoriness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unsaturated fatty acid is a kind of fatty acid", "pln": ["(: cnet_isa_0c849a9a0c (IsA unsaturated_fatty_acid fatty_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unsavoriness is a kind of unpalatableness", "pln": ["(: cnet_isa_8458c0813e (IsA unsavoriness unpalatableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "unscrupulousness is a kind of dishonesty", "pln": ["(: cnet_isa_747bdbbe42 (IsA unscrupulousness dishonesty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unseasonableness is a kind of timing", "pln": ["(: cnet_isa_58cefc6a35 (IsA unseasonableness timing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unsecured bond is a kind of bond", "pln": ["(: cnet_isa_662fa207d4 (IsA unsecured_bond bond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "unseemliness is a kind of indecorum", "pln": ["(: cnet_isa_68ef2ec10e (IsA unseemliness indecorum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unselfconsciousness is a kind of unknowingness", "pln": ["(: cnet_isa_60e1073ca5 (IsA unselfconsciousness unknowingness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unselfishness is a kind of generosity", "pln": ["(: cnet_isa_8b4b9b2160 (IsA unselfishness generosity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unsightliness is a kind of ugliness", "pln": ["(: cnet_isa_a84f05eada (IsA unsightliness ugliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unskilled person is a kind of person", "pln": ["(: cnet_isa_5e4d64a550 (IsA unskilled_person person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unskillfulness is a kind of inability", "pln": ["(: cnet_isa_979dfe4c6c (IsA unskillfulness inability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unsnarling is a kind of liberation", "pln": ["(: cnet_isa_2d52675e99 (IsA unsnarling liberation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unsociability is a kind of disposition", "pln": ["(: cnet_isa_826edf5694 (IsA unsociability disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unsolvability is a kind of property", "pln": ["(: cnet_isa_32e9c389e2 (IsA unsolvability property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unsoundness is a kind of bad", "pln": ["(: cnet_isa_ce174f36e1 (IsA unsoundness bad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unsoundness is a kind of misconception", "pln": ["(: cnet_isa_14ed10bd40 (IsA unsoundness misconception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unsoundness is a kind of condition", "pln": ["(: cnet_isa_e98c2eb543 (IsA unsoundness condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unspoken accusation is a kind of implication", "pln": ["(: cnet_isa_6206b49974 (IsA unspoken_accusation implication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unsteadiness is a kind of irregularity", "pln": ["(: cnet_isa_e9ebb8a058 (IsA unsteadiness irregularity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unstratified language is a kind of programming language", "pln": ["(: cnet_isa_67ba0d32d8 (IsA unstratified_language programming_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unsuitability is a kind of quality", "pln": ["(: cnet_isa_e8e97ae3e3 (IsA unsuitability quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unsusceptibility is a kind of condition", "pln": ["(: cnet_isa_3f41b67b24 (IsA unsusceptibility condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unthoughtfulness is a kind of trait", "pln": ["(: cnet_isa_e5ad14be90 (IsA unthoughtfulness trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "untidiness is a kind of uncleanliness", "pln": ["(: cnet_isa_3a97045bcb (IsA untidiness uncleanliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "untidiness is a kind of disorderliness", "pln": ["(: cnet_isa_600a4ce8c5 (IsA untidiness disorderliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "untouchable is a kind of outcast", "pln": ["(: cnet_isa_653a1b865b (IsA untouchable outcast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "untrustworthiness is a kind of trait", "pln": ["(: cnet_isa_5c26cbc0ab (IsA untrustworthiness trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "untruthfulness is a kind of dishonesty", "pln": ["(: cnet_isa_c8c955c9ac (IsA untruthfulness dishonesty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "untying is a kind of loosening", "pln": ["(: cnet_isa_053fc126c3 (IsA untying loosening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ununbium is a kind of chemical element", "pln": ["(: cnet_isa_79e8ce28b7 (IsA ununbium chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ununhexium is a kind of chemical element", "pln": ["(: cnet_isa_195fdc6cdc (IsA ununhexium chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ununpentium is a kind of chemical element", "pln": ["(: cnet_isa_26ae21aac6 (IsA ununpentium chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ununquadium is a kind of chemical element", "pln": ["(: cnet_isa_482e2efece (IsA ununquadium chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ununtrium is a kind of chemical element", "pln": ["(: cnet_isa_19af73fb39 (IsA ununtrium chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unusualness is a kind of uncommonness", "pln": ["(: cnet_isa_27603c5788 (IsA unusualness uncommonness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unvariedness is a kind of invariability", "pln": ["(: cnet_isa_76d9d528e7 (IsA unvariedness invariability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unveiling is a kind of presentation", "pln": ["(: cnet_isa_2323c71018 (IsA unveiling presentation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unwariness is a kind of incaution", "pln": ["(: cnet_isa_e0211ad589 (IsA unwariness incaution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unwelcome person is a kind of person", "pln": ["(: cnet_isa_8c090f0042 (IsA unwelcome_person person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unwholesomeness is a kind of quality", "pln": ["(: cnet_isa_bd49f0819c (IsA unwholesomeness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unwieldiness is a kind of troublesomeness", "pln": ["(: cnet_isa_f7e72f19ff (IsA unwieldiness troublesomeness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unwillingness is a kind of disposition", "pln": ["(: cnet_isa_29dbdaa2d4 (IsA unwillingness disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unworthiness is a kind of bad", "pln": ["(: cnet_isa_2a5c40c038 (IsA unworthiness bad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "unwritten law is a kind of practice", "pln": ["(: cnet_isa_a1fe5d8f43 (IsA unwritten_law practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "up is a kind of direction", "pln": ["(: cnet_isa_2ecbffb5e8 (IsA up direction) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "up bow is a kind of bow", "pln": ["(: cnet_isa_db1d047ec9 (IsA up_bow bow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "up quark is a kind of quark", "pln": ["(: cnet_isa_22ae3d1d8b (IsA up_quark quark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "up tick is a kind of increase", "pln": ["(: cnet_isa_b077e11b43 (IsA up_tick increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upbeat is a kind of style of music", "pln": ["(: cnet_isa_bceadb690d (IsA upbeat style_of_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upbeat is a kind of rhythm", "pln": ["(: cnet_isa_087dd6d2ac (IsA upbeat rhythm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upbraider is a kind of authority", "pln": ["(: cnet_isa_75183b2dd9 (IsA upbraider authority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "upbringing is a kind of inheritance", "pln": ["(: cnet_isa_f3bc4d4526 (IsA upbringing inheritance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upcast is a kind of air passage", "pln": ["(: cnet_isa_b0bb398600 (IsA upcast air_passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "update is a kind of activity", "pln": ["(: cnet_isa_dda46b9f60 (IsA update activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "update is a kind of information", "pln": ["(: cnet_isa_fb317f95a6 (IsA update information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "updating is a kind of change", "pln": ["(: cnet_isa_5e4070452d (IsA updating change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "updraft is a kind of draft", "pln": ["(: cnet_isa_25d2e631bd (IsA updraft draft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upgrade is a kind of improvement", "pln": ["(: cnet_isa_acd2cf13c2 (IsA upgrade improvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "upgrade is a kind of hardware", "pln": ["(: cnet_isa_18e49be539 (IsA upgrade hardware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upgrade is a kind of grade", "pln": ["(: cnet_isa_f067b343ae (IsA upgrade grade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upgrade is a kind of reservation", "pln": ["(: cnet_isa_3466ead89c (IsA upgrade reservation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upgrade is a kind of software", "pln": ["(: cnet_isa_725c587014 (IsA upgrade software) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upheaval is a kind of rise", "pln": ["(: cnet_isa_8c35e3a93f (IsA upheaval rise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uphill is a kind of ascent", "pln": ["(: cnet_isa_3fad28a22f (IsA uphill ascent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upholder is a kind of supporter", "pln": ["(: cnet_isa_39a9ca48a9 (IsA upholder supporter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upholsterer is a kind of craftsman", "pln": ["(: cnet_isa_8927cdd3cb (IsA upholsterer craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upholstery is a kind of trade", "pln": ["(: cnet_isa_340db23722 (IsA upholstery trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upholstery is a kind of covering", "pln": ["(: cnet_isa_6bab9c6058 (IsA upholstery covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "upholstery material is a kind of fabric", "pln": ["(: cnet_isa_fb57352fdd (IsA upholstery_material fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upholstery needle is a kind of sewing needle", "pln": ["(: cnet_isa_3aed528c18 (IsA upholstery_needle sewing_needle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upland cotton is a kind of cotton", "pln": ["(: cnet_isa_bea1bcf9c9 (IsA upland_cotton cotton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upland sandpiper is a kind of sandpiper", "pln": ["(: cnet_isa_2f22879ba8 (IsA upland_sandpiper sandpiper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "upland white aster is a kind of aster", "pln": ["(: cnet_isa_ca89cae118 (IsA upland_white_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uplift is a kind of brassiere", "pln": ["(: cnet_isa_e069e39dda (IsA uplift brassiere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uplifting is a kind of rise", "pln": ["(: cnet_isa_a0b274843a (IsA uplifting rise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uplink is a kind of transmission", "pln": ["(: cnet_isa_c075e3a428 (IsA uplink transmission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upper is a kind of piece of leather", "pln": ["(: cnet_isa_eb2d3b7de3 (IsA upper piece_of_leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upper berth is a kind of berth", "pln": ["(: cnet_isa_3161928f4c (IsA upper_berth berth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upper bound is a kind of boundary", "pln": ["(: cnet_isa_bf25c0aff2 (IsA upper_bound boundary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upper class is a kind of class", "pln": ["(: cnet_isa_bf8b680d9b (IsA upper_class class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upper deck is a kind of deck", "pln": ["(: cnet_isa_07d7d41a25 (IsA upper_deck deck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upper hand is a kind of superiority", "pln": ["(: cnet_isa_2b1e74e030 (IsA upper_hand superiority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upper jaw is a kind of jaw", "pln": ["(: cnet_isa_a5294b512f (IsA upper_jaw jaw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upper limit is a kind of limit", "pln": ["(: cnet_isa_14f20eedcd (IsA upper_limit limit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upper mantle is a kind of layer", "pln": ["(: cnet_isa_ecb7a5b259 (IsA upper_mantle layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upper respiratory infection is a kind of respiratory tract infection", "pln": ["(: cnet_isa_ade908198d (IsA upper_respiratory_infection respiratory_tract_infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upper respiratory tract is a kind of respiratory tract", "pln": ["(: cnet_isa_47a960bebb (IsA upper_respiratory_tract respiratory_tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upper surface is a kind of side", "pln": ["(: cnet_isa_68bcc13ef3 (IsA upper_surface side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uppercut is a kind of punch", "pln": ["(: cnet_isa_9fb2b669d1 (IsA uppercut punch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uppercut is a kind of blow", "pln": ["(: cnet_isa_e86c0c76fe (IsA uppercut blow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uppityness is a kind of presumption", "pln": ["(: cnet_isa_bac343b059 (IsA uppityness presumption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upright is a kind of piano", "pln": ["(: cnet_isa_b71376e4e8 (IsA upright piano) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "upright is a kind of structural member", "pln": ["(: cnet_isa_3cf8395395 (IsA upright structural_member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uprightness is a kind of righteousness", "pln": ["(: cnet_isa_57c09a7dff (IsA uprightness righteousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upset is a kind of disturbance", "pln": ["(: cnet_isa_ae6eaa61cd (IsA upset disturbance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upset is a kind of inversion", "pln": ["(: cnet_isa_3ea72b2a4a (IsA upset inversion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upset is a kind of tool", "pln": ["(: cnet_isa_528787f892 (IsA upset tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upset price is a kind of asking price", "pln": ["(: cnet_isa_511a57bac5 (IsA upset_price asking_price) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upsetter is a kind of winner", "pln": ["(: cnet_isa_92b7379cce (IsA upsetter winner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "upside down cake is a kind of cake", "pln": ["(: cnet_isa_c4abc6e12f (IsA upside_down_cake cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upsilon is a kind of letter", "pln": ["(: cnet_isa_5d7c4ad362 (IsA upsilon letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upstage is a kind of part", "pln": ["(: cnet_isa_f2e407a364 (IsA upstage part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "upstager is a kind of actor", "pln": ["(: cnet_isa_46e8f658d2 (IsA upstager actor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upstair is a kind of part", "pln": ["(: cnet_isa_c9db488b27 (IsA upstair part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upstart is a kind of unpleasant person", "pln": ["(: cnet_isa_2d2c291d01 (IsA upstart unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upstroke is a kind of stroke", "pln": ["(: cnet_isa_1774e498a2 (IsA upstroke stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uptake is a kind of human process", "pln": ["(: cnet_isa_6d43162c5f (IsA uptake human_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uptick is a kind of transaction", "pln": ["(: cnet_isa_d36f96e104 (IsA uptick transaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uptime is a kind of time period", "pln": ["(: cnet_isa_c203755adb (IsA uptime time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uptown is a kind of residential district", "pln": ["(: cnet_isa_567b7d16c8 (IsA uptown residential_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upturn is a kind of improvement", "pln": ["(: cnet_isa_9895dd9f5c (IsA upturn improvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upupa is a kind of bird genus", "pln": ["(: cnet_isa_4bbdf740e5 (IsA upupa bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "upupidae is a kind of bird family", "pln": ["(: cnet_isa_67820eea9d (IsA upupidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uracil is a kind of nucleotide", "pln": ["(: cnet_isa_03214dde45 (IsA uracil nucleotide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ural altaic is a kind of natural language", "pln": ["(: cnet_isa_4e4bf99957 (IsA ural_altaic natural_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uralic is a kind of ural altaic", "pln": ["(: cnet_isa_4668d43308 (IsA uralic ural_altaic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uraninite is a kind of uranium ore", "pln": ["(: cnet_isa_a1ef05fd62 (IsA uraninite uranium_ore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "uranium is a kind of element", "pln": ["(: cnet_isa_c708d6d86f (IsA uranium element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uranium is a kind of metallic element", "pln": ["(: cnet_isa_0630455b61 (IsA uranium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uranium 235 is a kind of uranium", "pln": ["(: cnet_isa_12475a2015 (IsA uranium_235 uranium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uranium 238 is a kind of uranium", "pln": ["(: cnet_isa_39d2de6ae3 (IsA uranium_238 uranium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "uranium ore is a kind of ore", "pln": ["(: cnet_isa_62805dcb8c (IsA uranium_ore ore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uranoplasty is a kind of operation", "pln": ["(: cnet_isa_cc50d379b3 (IsA uranoplasty operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uranoscopidae is a kind of fish family", "pln": ["(: cnet_isa_48b45c64e1 (IsA uranoscopidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uranus is a kind of planet", "pln": ["(: cnet_isa_6e05783c2e (IsA uranus planet) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uranus is a kind of planet in solar system", "pln": ["(: cnet_isa_e618065d12 (IsA uranus planet_in_solar_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uranyl is a kind of group", "pln": ["(: cnet_isa_637f33b83f (IsA uranyl group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uranyl nitrate is a kind of nitrate", "pln": ["(: cnet_isa_fb5ed41bb5 (IsA uranyl_nitrate nitrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uranyl oxalate is a kind of oxalate", "pln": ["(: cnet_isa_192bb80b91 (IsA uranyl_oxalate oxalate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urate is a kind of salt", "pln": ["(: cnet_isa_d82da50c75 (IsA urate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uratemia is a kind of blood disease", "pln": ["(: cnet_isa_d6e813a743 (IsA uratemia blood_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uratemia is a kind of symptom", "pln": ["(: cnet_isa_9dd8d26879 (IsA uratemia symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uraturia is a kind of symptom", "pln": ["(: cnet_isa_4f1adb39ac (IsA uraturia symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urban area is a kind of geographical area", "pln": ["(: cnet_isa_2dd2afa798 (IsA urban_area geographical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urban guerrilla is a kind of guerrilla", "pln": ["(: cnet_isa_1542148639 (IsA urban_guerrilla guerrilla) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urban legend is a kind of report", "pln": ["(: cnet_isa_204b31529e (IsA urban_legend report) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urban planning is a kind of architecture", "pln": ["(: cnet_isa_bcbd1f98f5 (IsA urban_planning architecture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "urban renewal is a kind of reclamation", "pln": ["(: cnet_isa_8a43abd609 (IsA urban_renewal reclamation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urbanity is a kind of courtesy", "pln": ["(: cnet_isa_33eac59c1c (IsA urbanity courtesy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urbanity is a kind of quality", "pln": ["(: cnet_isa_8e0d662e1b (IsA urbanity quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urbanization is a kind of social process", "pln": ["(: cnet_isa_b99621e536 (IsA urbanization social_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urbanization is a kind of condition", "pln": ["(: cnet_isa_a713105853 (IsA urbanization condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urceole is a kind of vessel", "pln": ["(: cnet_isa_373900831a (IsA urceole vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urchin is a kind of child", "pln": ["(: cnet_isa_5e48bcb19f (IsA urchin child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urdu is a kind of sanskrit", "pln": ["(: cnet_isa_a94206a7c1 (IsA urdu sanskrit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urea is a kind of organic compound", "pln": ["(: cnet_isa_2dfde8b6a2 (IsA urea organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "urea formaldehyde resin is a kind of synthetic resin", "pln": ["(: cnet_isa_2844255d2b (IsA urea_formaldehyde_resin synthetic_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "uredinales is a kind of fungus order", "pln": ["(: cnet_isa_283c361626 (IsA uredinales fungus_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urease is a kind of enzyme", "pln": ["(: cnet_isa_826295d8c5 (IsA urease enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uredinale is a kind of fungus order", "pln": ["(: cnet_isa_9207db9760 (IsA uredinale fungus_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uremia is a kind of pathology", "pln": ["(: cnet_isa_c02cb35509 (IsA uremia pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ureter is a kind of duct", "pln": ["(: cnet_isa_2f9c15c81b (IsA ureter duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ureteritis is a kind of inflammation", "pln": ["(: cnet_isa_987a5c0f4d (IsA ureteritis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ureterocele is a kind of prolapse", "pln": ["(: cnet_isa_f559ce1515 (IsA ureterocele prolapse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ureterorenal reflux is a kind of reflux", "pln": ["(: cnet_isa_f04b4d658d (IsA ureterorenal_reflux reflux) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ureterostenosis is a kind of stenosis", "pln": ["(: cnet_isa_b65f9c4a9c (IsA ureterostenosis stenosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urethane is a kind of ester", "pln": ["(: cnet_isa_f30825c9e2 (IsA urethane ester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urethra is a kind of duct", "pln": ["(: cnet_isa_20a65a6858 (IsA urethra duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urethral orifice is a kind of orifice", "pln": ["(: cnet_isa_29139805a2 (IsA urethral_orifice orifice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urethral sphincter is a kind of sphincter", "pln": ["(: cnet_isa_9846e6218d (IsA urethral_sphincter sphincter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urethritis is a kind of urinary tract infection", "pln": ["(: cnet_isa_16000244e0 (IsA urethritis urinary_tract_infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urethrocele is a kind of prolapse", "pln": ["(: cnet_isa_c0701ed259 (IsA urethrocele prolapse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urge is a kind of desire", "pln": ["(: cnet_isa_3c8ddb7e2a (IsA urge desire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urge is a kind of motivation", "pln": ["(: cnet_isa_241dc8e828 (IsA urge motivation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urge incontinence is a kind of enuresis", "pln": ["(: cnet_isa_23b979e51c (IsA urge_incontinence enuresis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urgency is a kind of importance", "pln": ["(: cnet_isa_c4ea7ee762 (IsA urgency importance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urgency is a kind of necessity", "pln": ["(: cnet_isa_6f7cebb8e5 (IsA urgency necessity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urgency is a kind of situation", "pln": ["(: cnet_isa_1259d2cacb (IsA urgency situation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "urginea is a kind of liliid monocot genus", "pln": ["(: cnet_isa_47c1bdfdd6 (IsA urginea liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urging is a kind of advocacy", "pln": ["(: cnet_isa_a28ebfbace (IsA urging advocacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uria is a kind of bird genus", "pln": ["(: cnet_isa_ee90711e12 (IsA uria bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uriah is a kind of soldier", "pln": ["(: cnet_isa_f39d7280bc (IsA uriah soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urial is a kind of wild sheep", "pln": ["(: cnet_isa_4a7a679cf9 (IsA urial wild_sheep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uric acid is a kind of acid", "pln": ["(: cnet_isa_1b3a47d608 (IsA uric_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uricaciduria is a kind of blood disease", "pln": ["(: cnet_isa_e4a4e0acb5 (IsA uricaciduria blood_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uricaciduria is a kind of symptom", "pln": ["(: cnet_isa_f9779d938f (IsA uricaciduria symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urim and thummim is a kind of answer", "pln": ["(: cnet_isa_08bd110aa1 (IsA urim_and_thummim answer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urinal is a kind of plumbing fixture", "pln": ["(: cnet_isa_b9b4f8a2de (IsA urinal plumbing_fixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "urinalysis is a kind of chemical analysis", "pln": ["(: cnet_isa_70bf211a73 (IsA urinalysis chemical_analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urinalysis is a kind of diagnosis", "pln": ["(: cnet_isa_a17dc7ace0 (IsA urinalysis diagnosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urinary bladder is a kind of bladder", "pln": ["(: cnet_isa_a3448b7925 (IsA urinary_bladder bladder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urinary hesitancy is a kind of difficulty", "pln": ["(: cnet_isa_9814490f0f (IsA urinary_hesitancy difficulty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "urinary retention is a kind of retentiveness", "pln": ["(: cnet_isa_849e558643 (IsA urinary_retention retentiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urinary tract is a kind of tract", "pln": ["(: cnet_isa_7eebfa2bdc (IsA urinary_tract tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urinary tract infection is a kind of inflammatory disease", "pln": ["(: cnet_isa_1badd82fe9 (IsA urinary_tract_infection inflammatory_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urine is a kind of bodily fluid", "pln": ["(: cnet_isa_89c0fb3fe5 (IsA urine bodily_fluid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urine is a kind of body waste", "pln": ["(: cnet_isa_6bc2663610 (IsA urine body_waste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "url is a kind of address", "pln": ["(: cnet_isa_75bbe98b6b (IsA url address) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urn is a kind of pot", "pln": ["(: cnet_isa_eaf72a0975 (IsA urn pot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urn is a kind of vase", "pln": ["(: cnet_isa_d0f061e4b0 (IsA urn vase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urnula craterium is a kind of discomycete", "pln": ["(: cnet_isa_f47f384930 (IsA urnula_craterium discomycete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urobilin is a kind of animal pigment", "pln": ["(: cnet_isa_77420eefd7 (IsA urobilin animal_pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urobilinogen is a kind of chromogen", "pln": ["(: cnet_isa_96e37ed634 (IsA urobilinogen chromogen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urocele is a kind of extravasation", "pln": ["(: cnet_isa_f85367e6db (IsA urocele extravasation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urochesia is a kind of defecation", "pln": ["(: cnet_isa_2e646c111a (IsA urochesia defecation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urochord is a kind of notochord", "pln": ["(: cnet_isa_2f796ec46b (IsA urochord notochord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urochordata is a kind of phylum", "pln": ["(: cnet_isa_8fc38f39cc (IsA urochordata phylum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urocyon is a kind of mammal genus", "pln": ["(: cnet_isa_25561ab9db (IsA urocyon mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "urocystis is a kind of fungus genus", "pln": ["(: cnet_isa_4a191a193a (IsA urocystis fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urodele is a kind of amphibian", "pln": ["(: cnet_isa_ce39d0ed99 (IsA urodele amphibian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urodella is a kind of animal order", "pln": ["(: cnet_isa_af4ea94d40 (IsA urodella animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urodynia is a kind of pain", "pln": ["(: cnet_isa_3cbfd40a97 (IsA urodynia pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urogenital system is a kind of system", "pln": ["(: cnet_isa_22096fee2a (IsA urogenital_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urolith is a kind of calculus", "pln": ["(: cnet_isa_23e7537267 (IsA urolith calculus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urologist is a kind of specialist", "pln": ["(: cnet_isa_0e8057d349 (IsA urologist specialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urology is a kind of medicine", "pln": ["(: cnet_isa_d4cf733236 (IsA urology medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uropathy is a kind of pathology", "pln": ["(: cnet_isa_f084f3d3d4 (IsA uropathy pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urophycis is a kind of fish genus", "pln": ["(: cnet_isa_fa3a318474 (IsA urophycis fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uropsilus is a kind of mammal genus", "pln": ["(: cnet_isa_c9e34b3965 (IsA uropsilus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uropygial gland is a kind of oil gland", "pln": ["(: cnet_isa_c6ac394548 (IsA uropygial_gland oil_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uropygium is a kind of tail", "pln": ["(: cnet_isa_a75f7f38bc (IsA uropygium tail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urosaurus is a kind of reptile genus", "pln": ["(: cnet_isa_a158ab9cbe (IsA urosaurus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ursidae is a kind of mammal family", "pln": ["(: cnet_isa_a2befcb89c (IsA ursidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ursinia is a kind of flower", "pln": ["(: cnet_isa_95d1f2aa25 (IsA ursinia flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ursus is a kind of mammal genus", "pln": ["(: cnet_isa_899e13398e (IsA ursus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urtica is a kind of dicot genus", "pln": ["(: cnet_isa_b1a6fe7926 (IsA urtica dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urticaceae is a kind of dicot family", "pln": ["(: cnet_isa_7968455959 (IsA urticaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urticale is a kind of plant order", "pln": ["(: cnet_isa_f35509f32d (IsA urticale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urtication is a kind of cutaneous sensation", "pln": ["(: cnet_isa_69e428cbea (IsA urtication cutaneous_sensation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urtication is a kind of hypersensitivity reaction", "pln": ["(: cnet_isa_af31533dc2 (IsA urtication hypersensitivity_reaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "urtication is a kind of rash", "pln": ["(: cnet_isa_0c2f2c3d73 (IsA urtication rash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uruguay potato is a kind of potato", "pln": ["(: cnet_isa_fe174f6594 (IsA uruguay_potato potato) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uruguay potato is a kind of vine", "pln": ["(: cnet_isa_deec992cc5 (IsA uruguay_potato vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uruguayan is a kind of south american", "pln": ["(: cnet_isa_9e7fb1b1fb (IsA uruguayan south_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uruguayan monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_85569a2ac0 (IsA uruguayan_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uruguayan peso is a kind of uruguayan monetary unit", "pln": ["(: cnet_isa_dd80ae8cd7 (IsA uruguayan_peso uruguayan_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "us capital is a kind of in washington dc", "pln": ["(: cnet_isa_967d936497 (IsA us_capital in_washington_dc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "usa is a kind of country", "pln": ["(: cnet_isa_7d5fdf9ed5 (IsA usa country) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "usage is a kind of language", "pln": ["(: cnet_isa_ae4e3e7418 (IsA usage language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "usance is a kind of time period", "pln": ["(: cnet_isa_ae10ae91bb (IsA usance time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "usbeg is a kind of turki", "pln": ["(: cnet_isa_c796ecb1ff (IsA usbeg turki) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "usc is a kind of university in los angele", "pln": ["(: cnet_isa_3b35394e64 (IsA usc university_in_los_angele) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "use is a kind of activity", "pln": ["(: cnet_isa_32ea9e9e37 (IsA use activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "use is a kind of utility", "pln": ["(: cnet_isa_c89b9079f4 (IsA use utility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "use is a kind of legal right", "pln": ["(: cnet_isa_88839e853b (IsA use legal_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "use immunity is a kind of exemption", "pln": ["(: cnet_isa_7b6527bbd5 (IsA use_immunity exemption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "used car lot is a kind of parking lot", "pln": ["(: cnet_isa_0f35ad08d4 (IsA used_car_lot parking_lot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "user is a kind of person", "pln": ["(: cnet_isa_e3ae83abe0 (IsA user person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "usher is a kind of escort", "pln": ["(: cnet_isa_374ab6b4a4 (IsA usher escort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "usher is a kind of official", "pln": ["(: cnet_isa_e47ebad939 (IsA usher official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "usherette is a kind of usher", "pln": ["(: cnet_isa_727be346e4 (IsA usherette usher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ushering in is a kind of introduction", "pln": ["(: cnet_isa_8771332862 (IsA ushering_in introduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "usnea is a kind of fungus genus", "pln": ["(: cnet_isa_96a60e8235 (IsA usnea fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "usneaceae is a kind of fungus family", "pln": ["(: cnet_isa_771cfb4f93 (IsA usneaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ussr is a kind of country", "pln": ["(: cnet_isa_2886974050 (IsA ussr country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ussr is a kind of no longer country", "pln": ["(: cnet_isa_26c23fb6c0 (IsA ussr no_longer_country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ustilaginaceae is a kind of fungus family", "pln": ["(: cnet_isa_733c640bd3 (IsA ustilaginaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ustilaginale is a kind of fungus order", "pln": ["(: cnet_isa_9e8459cc73 (IsA ustilaginale fungus_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ustilaginoidea is a kind of fungus genus", "pln": ["(: cnet_isa_09c8f3a6d3 (IsA ustilaginoidea fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ustilago is a kind of fungus genus", "pln": ["(: cnet_isa_84b676a0f5 (IsA ustilago fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "usualness is a kind of commonness", "pln": ["(: cnet_isa_60f9a6dcdd (IsA usualness commonness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "usufruct is a kind of legal right", "pln": ["(: cnet_isa_bc661a071e (IsA usufruct legal_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "usufructuary is a kind of user", "pln": ["(: cnet_isa_fdf1d5251a (IsA usufructuary user) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "usuli is a kind of religious movement", "pln": ["(: cnet_isa_611c4e9ae6 (IsA usuli religious_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "usurer is a kind of lender", "pln": ["(: cnet_isa_5efbde6bae (IsA usurer lender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "usurer is a kind of shark", "pln": ["(: cnet_isa_be7b28e3d3 (IsA usurer shark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "usurpation is a kind of capture", "pln": ["(: cnet_isa_3f16bd96f0 (IsA usurpation capture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "usurper is a kind of wrongdoer", "pln": ["(: cnet_isa_1586585413 (IsA usurper wrongdoer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "usury is a kind of lending", "pln": ["(: cnet_isa_9728d06e56 (IsA usury lending) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "usury is a kind of interest rate", "pln": ["(: cnet_isa_abc3435306 (IsA usury interest_rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uta is a kind of reptile genus", "pln": ["(: cnet_isa_17705fd8da (IsA uta reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "utah is a kind of state", "pln": ["(: cnet_isa_a235e0e7d6 (IsA utah state) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "utahan is a kind of american", "pln": ["(: cnet_isa_4c50e8ea5a (IsA utahan american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "utahraptor is a kind of maniraptor", "pln": ["(: cnet_isa_458514865c (IsA utahraptor maniraptor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ute is a kind of shoshonean", "pln": ["(: cnet_isa_a47bc92dde (IsA ute shoshonean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ute is a kind of shoshoni", "pln": ["(: cnet_isa_4baf586a39 (IsA ute shoshoni) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "utensil is a kind of implement", "pln": ["(: cnet_isa_9ea1d53917 (IsA utensil implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uterine artery is a kind of artery", "pln": ["(: cnet_isa_d7028e9b02 (IsA uterine_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "uterine cavity is a kind of cavity", "pln": ["(: cnet_isa_fdf3e259ad (IsA uterine_cavity cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "uterine contraction is a kind of contraction", "pln": ["(: cnet_isa_75b9b1eb97 (IsA uterine_contraction contraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uterine vein is a kind of vein", "pln": ["(: cnet_isa_aec6aa4280 (IsA uterine_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uterus is a kind of female internal reproductive organ", "pln": ["(: cnet_isa_31bac59d77 (IsA uterus female_internal_reproductive_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "utilitarian is a kind of moralist", "pln": ["(: cnet_isa_03ee958f88 (IsA utilitarian moralist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "utilitarianism is a kind of doctrine", "pln": ["(: cnet_isa_72be11f011 (IsA utilitarianism doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "utility is a kind of service", "pln": ["(: cnet_isa_daea880900 (IsA utility service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "utility is a kind of facility", "pln": ["(: cnet_isa_d97cd1de52 (IsA utility facility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "utility is a kind of quality", "pln": ["(: cnet_isa_d4bf587359 (IsA utility quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "utility is a kind of system of measurement", "pln": ["(: cnet_isa_a3060769e0 (IsA utility system_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "utility bond is a kind of municipal bond", "pln": ["(: cnet_isa_0990192a76 (IsA utility_bond municipal_bond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "utility man is a kind of ballplayer", "pln": ["(: cnet_isa_7b6a1c23f6 (IsA utility_man ballplayer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "utility man is a kind of workman", "pln": ["(: cnet_isa_7fadd0660b (IsA utility_man workman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "utility program is a kind of program", "pln": ["(: cnet_isa_a3281ef319 (IsA utility_program program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "utility routine is a kind of routine", "pln": ["(: cnet_isa_fd45db549d (IsA utility_routine routine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "utilization is a kind of state", "pln": ["(: cnet_isa_cd4421e1e6 (IsA utilization state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "utilizer is a kind of user", "pln": ["(: cnet_isa_af9ff3141b (IsA utilizer user) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "utmost is a kind of limit", "pln": ["(: cnet_isa_e48604dbba (IsA utmost limit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uto aztecan is a kind of amerind", "pln": ["(: cnet_isa_9b591979f8 (IsA uto_aztecan amerind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "utopia is a kind of place", "pln": ["(: cnet_isa_f1a301f5e6 (IsA utopia place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "utopia is a kind of imaginary place", "pln": ["(: cnet_isa_dfee16447e (IsA utopia imaginary_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "utopia is a kind of fiction", "pln": ["(: cnet_isa_7245a9a966 (IsA utopia fiction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "utopia is a kind of state", "pln": ["(: cnet_isa_2db6f2ef9d (IsA utopia state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "utopian is a kind of reformer", "pln": ["(: cnet_isa_e717e58549 (IsA utopian reformer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "utopian socialism is a kind of socialism", "pln": ["(: cnet_isa_3c771987fa (IsA utopian_socialism socialism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "utopianism is a kind of political orientation", "pln": ["(: cnet_isa_83d95a5a47 (IsA utopianism political_orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "utricle is a kind of pouch", "pln": ["(: cnet_isa_5af1966a8c (IsA utricle pouch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "utricularia is a kind of plant genus", "pln": ["(: cnet_isa_2d2cac69df (IsA utricularia plant_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "utterance is a kind of auditory communication", "pln": ["(: cnet_isa_a639504626 (IsA utterance auditory_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "utterer is a kind of deceiver", "pln": ["(: cnet_isa_938eccb9ca (IsA utterer deceiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "utterer is a kind of organism", "pln": ["(: cnet_isa_1e72f4c879 (IsA utterer organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uttering cry is a kind of making sound", "pln": ["(: cnet_isa_2195861d24 (IsA uttering_cry making_sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uvea is a kind of structure", "pln": ["(: cnet_isa_3ab7fcb6be (IsA uvea structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uveitis is a kind of inflammation", "pln": ["(: cnet_isa_b4d48348a8 (IsA uveitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uveoscleral pathway is a kind of tubule", "pln": ["(: cnet_isa_0414d4cc76 (IsA uveoscleral_pathway tubule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uvula is a kind of flap", "pln": ["(: cnet_isa_20cc70626a (IsA uvula flap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uvularia is a kind of liliid monocot genus", "pln": ["(: cnet_isa_1b63d0009e (IsA uvularia liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uvulariaceae is a kind of liliid monocot family", "pln": ["(: cnet_isa_19324ccedd (IsA uvulariaceae liliid_monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uvulitis is a kind of inflammation", "pln": ["(: cnet_isa_2d95e2dc01 (IsA uvulitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uxor is a kind of wife", "pln": ["(: cnet_isa_3fb0331969 (IsA uxor wife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "uxoricide is a kind of murder", "pln": ["(: cnet_isa_8be53e245f (IsA uxoricide murder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uxoricide is a kind of husband", "pln": ["(: cnet_isa_b0ffb8ce53 (IsA uxoricide husband) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uxoriousness is a kind of affectionateness", "pln": ["(: cnet_isa_4095368d1b (IsA uxoriousness affectionateness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "uzbek is a kind of turki", "pln": ["(: cnet_isa_2a51800f5b (IsA uzbek turki) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "v c r and t v is a kind of both acronyms", "pln": ["(: cnet_isa_1a52270741 (IsA v_c_r_and_t_v both_acronyms) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uzbekistani monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_6f2d9c8c17 (IsA uzbekistani_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "uzi is a kind of submachine gun", "pln": ["(: cnet_isa_1d9de65cae (IsA uzi submachine_gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "v is a kind of letter", "pln": ["(: cnet_isa_c7a1f65d37 (IsA v letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "v 8 juice is a kind of juice", "pln": ["(: cnet_isa_04d47bf855 (IsA v_8_juice juice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "v c r and t v is a kind of both acronym", "pln": ["(: cnet_isa_324dffb20a (IsA v_c_r_and_t_v both_acronym) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "v day is a kind of day", "pln": ["(: cnet_isa_48c6dae369 (IsA v_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "v neck is a kind of neck", "pln": ["(: cnet_isa_9e8acd544c (IsA v_neck neck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "v sign is a kind of gesture", "pln": ["(: cnet_isa_0654ca49f6 (IsA v_sign gesture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vac is a kind of vacation", "pln": ["(: cnet_isa_e6ecb49f5e (IsA vac vacation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vacancy is a kind of emptiness", "pln": ["(: cnet_isa_d481a5e8ef (IsA vacancy emptiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vacancy rate is a kind of percentage", "pln": ["(: cnet_isa_dbf5edad7b (IsA vacancy_rate percentage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vacant lot is a kind of lot", "pln": ["(: cnet_isa_1b63dd50b0 (IsA vacant_lot lot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vacation is a kind of abrogation", "pln": ["(: cnet_isa_4048930c4c (IsA vacation abrogation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vacation is a kind of leisure", "pln": ["(: cnet_isa_8782fc54a3 (IsA vacation leisure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vacation home is a kind of dwelling", "pln": ["(: cnet_isa_1450bad207 (IsA vacation_home dwelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vacationer is a kind of nonworker", "pln": ["(: cnet_isa_2e248c4fc5 (IsA vacationer nonworker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vacationing is a kind of leisure", "pln": ["(: cnet_isa_cb0ea45570 (IsA vacationing leisure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vaccaria is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_89612a1050 (IsA vaccaria caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vaccination is a kind of scar", "pln": ["(: cnet_isa_b4bbe4f253 (IsA vaccination scar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vaccine is a kind of immunogen", "pln": ["(: cnet_isa_14a2446fb6 (IsA vaccine immunogen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vaccinee is a kind of patient", "pln": ["(: cnet_isa_012efa978a (IsA vaccinee patient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vaccinia is a kind of infection", "pln": ["(: cnet_isa_c27406a6e2 (IsA vaccinia infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vaccinium is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_b160b45e81 (IsA vaccinium dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vacuity is a kind of emptiness", "pln": ["(: cnet_isa_562f58000e (IsA vacuity emptiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vacuole is a kind of cavity", "pln": ["(: cnet_isa_30e3f3bd00 (IsA vacuole cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vacuolization is a kind of condition", "pln": ["(: cnet_isa_271b29e589 (IsA vacuolization condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vacuousness is a kind of stupidity", "pln": ["(: cnet_isa_f633e1c59a (IsA vacuousness stupidity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vacuum is a kind of home appliance", "pln": ["(: cnet_isa_d1a1736e34 (IsA vacuum home_appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vacuum is a kind of region", "pln": ["(: cnet_isa_759a48cf0f (IsA vacuum region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vacuum chamber is a kind of chamber", "pln": ["(: cnet_isa_9349b34e38 (IsA vacuum_chamber chamber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vacuum flask is a kind of flask", "pln": ["(: cnet_isa_63020cb812 (IsA vacuum_flask flask) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vacuum gauge is a kind of gauge", "pln": ["(: cnet_isa_e07edb20b5 (IsA vacuum_gauge gauge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vagabond is a kind of object", "pln": ["(: cnet_isa_771dd64e14 (IsA vagabond object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vagary is a kind of change", "pln": ["(: cnet_isa_1bf13398d0 (IsA vagary change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vagina is a kind of duct", "pln": ["(: cnet_isa_c7fcc3ec63 (IsA vagina duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vaginal artery is a kind of artery", "pln": ["(: cnet_isa_3cf823a146 (IsA vaginal_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vaginal discharge is a kind of discharge", "pln": ["(: cnet_isa_d84ef03db9 (IsA vaginal_discharge discharge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vaginal smear is a kind of smear", "pln": ["(: cnet_isa_0b4fccd4b8 (IsA vaginal_smear smear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vagina is a kind of genital", "pln": ["(: cnet_isa_06c1695bd4 (IsA vagina genital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vaginismus is a kind of contraction", "pln": ["(: cnet_isa_499ca7112e (IsA vaginismus contraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vaginitis is a kind of inflammation", "pln": ["(: cnet_isa_6ec8d81605 (IsA vaginitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vagrancy is a kind of homelessness", "pln": ["(: cnet_isa_836ca9a20c (IsA vagrancy homelessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vagrant is a kind of poor person", "pln": ["(: cnet_isa_3e3c239dbc (IsA vagrant poor_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vagrant is a kind of wanderer", "pln": ["(: cnet_isa_02b7ca206c (IsA vagrant wanderer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vagueness is a kind of indistinctness", "pln": ["(: cnet_isa_261a07f3ac (IsA vagueness indistinctness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vagueness is a kind of unclearness", "pln": ["(: cnet_isa_015012157e (IsA vagueness unclearness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vagus is a kind of cranial nerve", "pln": ["(: cnet_isa_a26077aa9b (IsA vagus cranial_nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vaishnava is a kind of hindoo", "pln": ["(: cnet_isa_090cc2d3fd (IsA vaishnava hindoo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vaishnavism is a kind of hinduism", "pln": ["(: cnet_isa_cc7726ea5c (IsA vaishnavism hinduism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vaishnavism is a kind of sect", "pln": ["(: cnet_isa_ca8dab65f6 (IsA vaishnavism sect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vaisya is a kind of varna", "pln": ["(: cnet_isa_31039a815f (IsA vaisya varna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vaisya is a kind of hindustani", "pln": ["(: cnet_isa_1a8dfca12e (IsA vaisya hindustani) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vajra is a kind of hindu deity", "pln": ["(: cnet_isa_3479799a03 (IsA vajra hindu_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "val kilmer is a kind of actor", "pln": ["(: cnet_isa_aff6fe8acd (IsA val_kilmer actor) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "valediction is a kind of farewell", "pln": ["(: cnet_isa_7578eb8aba (IsA valediction farewell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valediction is a kind of oratory", "pln": ["(: cnet_isa_d7b8547b20 (IsA valediction oratory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valedictorian is a kind of scholar", "pln": ["(: cnet_isa_94eae68cef (IsA valedictorian scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valence is a kind of power", "pln": ["(: cnet_isa_499a1a72f9 (IsA valence power) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valence electron is a kind of electron", "pln": ["(: cnet_isa_b7d69d8754 (IsA valence_electron electron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valencia orange is a kind of sweet orange", "pln": ["(: cnet_isa_77fde7dfb3 (IsA valencia_orange sweet_orange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valencienne lace is a kind of pillow lace", "pln": ["(: cnet_isa_e5de3d00bc (IsA valencienne_lace pillow_lace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valency is a kind of chemical phenomenon", "pln": ["(: cnet_isa_1f8f20b0aa (IsA valency chemical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valentine is a kind of greeting card", "pln": ["(: cnet_isa_fd24af0628 (IsA valentine greeting_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valentine is a kind of sweetheart", "pln": ["(: cnet_isa_db81455c0d (IsA valentine sweetheart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valentine day is a kind of day", "pln": ["(: cnet_isa_2133c8c6d1 (IsA valentine_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valerian is a kind of flower", "pln": ["(: cnet_isa_d2974fb4ba (IsA valerian flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valeriana is a kind of asterid dicot genus", "pln": ["(: cnet_isa_52900cccda (IsA valeriana asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valerianaceae is a kind of asterid dicot family", "pln": ["(: cnet_isa_b01399dde1 (IsA valerianaceae asterid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valerianella is a kind of asterid dicot genus", "pln": ["(: cnet_isa_c73b60eb30 (IsA valerianella asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valeric acid is a kind of carboxylic acid", "pln": ["(: cnet_isa_2e4962cf92 (IsA valeric_acid carboxylic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valet is a kind of body servant", "pln": ["(: cnet_isa_1fa505a67e (IsA valet body_servant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valet is a kind of manservant", "pln": ["(: cnet_isa_1e182edc3e (IsA valet manservant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valet parking is a kind of service", "pln": ["(: cnet_isa_383064eb91 (IsA valet_parking service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valetudinarian is a kind of sick person", "pln": ["(: cnet_isa_303428ccb6 (IsA valetudinarian sick_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valgus is a kind of deformity", "pln": ["(: cnet_isa_093e2ce0f4 (IsA valgus deformity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valhalla is a kind of heaven", "pln": ["(: cnet_isa_044f7814bf (IsA valhalla heaven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vali is a kind of norse deity", "pln": ["(: cnet_isa_4269a3ff69 (IsA vali norse_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "validation is a kind of determination", "pln": ["(: cnet_isa_e7f470f518 (IsA validation determination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "validity is a kind of legality", "pln": ["(: cnet_isa_737deab02e (IsA validity legality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "valine is a kind of essential amino acid", "pln": ["(: cnet_isa_d80fe05a7c (IsA valine essential_amino_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valise is a kind of overnighter", "pln": ["(: cnet_isa_2be919cf60 (IsA valise overnighter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "valley is a kind of natural depression", "pln": ["(: cnet_isa_d6285b4d3e (IsA valley natural_depression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valley girl is a kind of girl", "pln": ["(: cnet_isa_a1f44fd066 (IsA valley_girl girl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valley pocket gopher is a kind of gopher", "pln": ["(: cnet_isa_4c2d5998e0 (IsA valley_pocket_gopher gopher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vallisneria is a kind of monocot genus", "pln": ["(: cnet_isa_db5db6c8a3 (IsA vallisneria monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valois is a kind of dynasty", "pln": ["(: cnet_isa_d65810a8de (IsA valois dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valuable is a kind of treasure", "pln": ["(: cnet_isa_9f7df242fe (IsA valuable treasure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "valuation is a kind of price", "pln": ["(: cnet_isa_5f9bf7f735 (IsA valuation price) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valuation reserve is a kind of reserve account", "pln": ["(: cnet_isa_116e56bb0c (IsA valuation_reserve reserve_account) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "value is a kind of color property", "pln": ["(: cnet_isa_d744a2222e (IsA value color_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "value is a kind of worth", "pln": ["(: cnet_isa_8aaa1bd786 (IsA value worth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "value is a kind of ideal", "pln": ["(: cnet_isa_9176514ca9 (IsA value ideal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "value is a kind of numerical quantity", "pln": ["(: cnet_isa_86e2103906 (IsA value numerical_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "value is a kind of duration", "pln": ["(: cnet_isa_7b3efacd65 (IsA value duration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "value is a kind of measure", "pln": ["(: cnet_isa_aaceada08a (IsA value measure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "value judgment is a kind of judgment", "pln": ["(: cnet_isa_b83b75e8ef (IsA value_judgment judgment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "value statement is a kind of statement", "pln": ["(: cnet_isa_6000814a97 (IsA value_statement statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valuelessness is a kind of worthlessness", "pln": ["(: cnet_isa_28abeb5940 (IsA valuelessness worthlessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valuer is a kind of appraiser", "pln": ["(: cnet_isa_1dd3ce171e (IsA valuer appraiser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "value is a kind of belief", "pln": ["(: cnet_isa_9600d72672 (IsA value belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valve is a kind of shell", "pln": ["(: cnet_isa_f6dc3a8f13 (IsA valve shell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valve is a kind of control", "pln": ["(: cnet_isa_b04d11114f (IsA valve control) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valve is a kind of device", "pln": ["(: cnet_isa_e4e2b398c5 (IsA valve device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valve is a kind of structure", "pln": ["(: cnet_isa_b1fbe488cf (IsA valve structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valve in head engine is a kind of internal combustion engine", "pln": ["(: cnet_isa_690298370a (IsA valve_in_head_engine internal_combustion_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valvotomy is a kind of incision", "pln": ["(: cnet_isa_3354fd9121 (IsA valvotomy incision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valvular heart disease is a kind of heart disease", "pln": ["(: cnet_isa_c1706b2c86 (IsA valvular_heart_disease heart_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "valvular incompetence is a kind of incompetence", "pln": ["(: cnet_isa_d6751144db (IsA valvular_incompetence incompetence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valvule is a kind of valve", "pln": ["(: cnet_isa_864855e9b5 (IsA valvule valve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "valvulitis is a kind of inflammation", "pln": ["(: cnet_isa_be527ca155 (IsA valvulitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vambrace is a kind of cannon", "pln": ["(: cnet_isa_babeace5b7 (IsA vambrace cannon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vamp is a kind of piece of leather", "pln": ["(: cnet_isa_a79a88af8d (IsA vamp piece_of_leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vamp is a kind of accompaniment", "pln": ["(: cnet_isa_9203121024 (IsA vamp accompaniment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vampire is a kind of fictional creature drink blood", "pln": ["(: cnet_isa_435f7a8c2d (IsA vampire fictional_creature_drink_blood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vampire is a kind of evil spirit", "pln": ["(: cnet_isa_e1354d86ef (IsA vampire evil_spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vampire bat is a kind of carnivorous bat", "pln": ["(: cnet_isa_4cb767d4df (IsA vampire_bat carnivorous_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vampire is a kind of fictional monster", "pln": ["(: cnet_isa_ffa93e47b2 (IsA vampire fictional_monster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vampire is a kind of legendary creature drink human blood", "pln": ["(: cnet_isa_c6a8259742 (IsA vampire legendary_creature_drink_human_blood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vampire is a kind of legend", "pln": ["(: cnet_isa_fc3f194c47 (IsA vampire legend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vampirism is a kind of action", "pln": ["(: cnet_isa_f314894529 (IsA vampirism action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vampirism is a kind of belief", "pln": ["(: cnet_isa_9a1a896ffe (IsA vampirism belief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "van is a kind of camper", "pln": ["(: cnet_isa_c610c8c67f (IsA van camper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "van is a kind of car", "pln": ["(: cnet_isa_152d4f4818 (IsA van car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "van is a kind of truck", "pln": ["(: cnet_isa_4b1daba4f0 (IsA van truck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "van der waal s force is a kind of attraction", "pln": ["(: cnet_isa_ded0566aad (IsA van_der_waal_s_force attraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vanadate is a kind of salt", "pln": ["(: cnet_isa_14152b1fd1 (IsA vanadate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vanadinite is a kind of mineral", "pln": ["(: cnet_isa_5ce6f599e8 (IsA vanadinite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vanadium is a kind of metallic element", "pln": ["(: cnet_isa_1643267b6f (IsA vanadium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vanadium pentoxide is a kind of oxyacid", "pln": ["(: cnet_isa_ed4bc3ffaf (IsA vanadium_pentoxide oxyacid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vanadium steel is a kind of alloy steel", "pln": ["(: cnet_isa_ce5c2e9925 (IsA vanadium_steel alloy_steel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vancouver is a kind of in canada", "pln": ["(: cnet_isa_a66d8af3fd (IsA vancouver in_canada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vanda is a kind of orchid", "pln": ["(: cnet_isa_1914f80c82 (IsA vanda orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vandal is a kind of destroyer", "pln": ["(: cnet_isa_3ef76fedb6 (IsA vandal destroyer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vandal is a kind of savage", "pln": ["(: cnet_isa_02a22f3656 (IsA vandal savage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vandalism is a kind of destruction", "pln": ["(: cnet_isa_f67617fd79 (IsA vandalism destruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vandalism is a kind of mischief", "pln": ["(: cnet_isa_9a1c432f40 (IsA vandalism mischief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vanderbilt is a kind of university", "pln": ["(: cnet_isa_5fe8085761 (IsA vanderbilt university) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vandyke beard is a kind of beard", "pln": ["(: cnet_isa_a68143afee (IsA vandyke_beard beard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vandyke brown is a kind of brown", "pln": ["(: cnet_isa_8b5a754fa5 (IsA vandyke_brown brown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vane is a kind of blade", "pln": ["(: cnet_isa_491f468cbd (IsA vane blade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vane is a kind of fin", "pln": ["(: cnet_isa_310d2e3130 (IsA vane fin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vanellus is a kind of bird genus", "pln": ["(: cnet_isa_3400580b67 (IsA vanellus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vanessa is a kind of arthropod genus", "pln": ["(: cnet_isa_9ed225d561 (IsA vanessa arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vanguard is a kind of position", "pln": ["(: cnet_isa_4f59721ff0 (IsA vanguard position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vanguard is a kind of army unit", "pln": ["(: cnet_isa_f5898cced6 (IsA vanguard army_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vangueria is a kind of asterid dicot genus", "pln": ["(: cnet_isa_a6d99cb4d6 (IsA vangueria asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vanilla is a kind of relish", "pln": ["(: cnet_isa_cac63cb9b1 (IsA vanilla relish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vanilla is a kind of flavorer", "pln": ["(: cnet_isa_1bf5c3abe0 (IsA vanilla flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vanilla is a kind of orchid", "pln": ["(: cnet_isa_a955ef4877 (IsA vanilla orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vanilla bean is a kind of flavorer", "pln": ["(: cnet_isa_e684b00ce7 (IsA vanilla_bean flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vanilla ice cream is a kind of ice cream", "pln": ["(: cnet_isa_ca643d4f5a (IsA vanilla_ice_cream ice_cream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vanilla orchid is a kind of vanilla", "pln": ["(: cnet_isa_26ba921c9c (IsA vanilla_orchid vanilla) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vanilla pudding is a kind of pudding", "pln": ["(: cnet_isa_237f7a2729 (IsA vanilla_pudding pudding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vanillin is a kind of compound", "pln": ["(: cnet_isa_98cfde1785 (IsA vanillin compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vanir is a kind of norse deity", "pln": ["(: cnet_isa_9058c2ff55 (IsA vanir norse_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vanisher is a kind of person", "pln": ["(: cnet_isa_bd74aee0d0 (IsA vanisher person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vanishing is a kind of disappearance", "pln": ["(: cnet_isa_8af227cd24 (IsA vanishing disappearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vanishing point is a kind of appearance", "pln": ["(: cnet_isa_3c4c194754 (IsA vanishing_point appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vanishing point is a kind of point", "pln": ["(: cnet_isa_d17f248d9c (IsA vanishing_point point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vanity is a kind of worthlessness", "pln": ["(: cnet_isa_35a2caec63 (IsA vanity worthlessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vanity fair is a kind of life style", "pln": ["(: cnet_isa_411b636e24 (IsA vanity_fair life_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vantage is a kind of position", "pln": ["(: cnet_isa_fdf0210865 (IsA vantage position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vantage point is a kind of vantage", "pln": ["(: cnet_isa_a9023f7333 (IsA vantage_point vantage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vapor is a kind of suspension", "pln": ["(: cnet_isa_c3d8da730a (IsA vapor suspension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vapor density is a kind of relative density", "pln": ["(: cnet_isa_4dac99a673 (IsA vapor_density relative_density) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vapor lock is a kind of blockage", "pln": ["(: cnet_isa_d2fb743333 (IsA vapor_lock blockage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vapor pressure is a kind of pressure", "pln": ["(: cnet_isa_0b832c9d02 (IsA vapor_pressure pressure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vaporiser is a kind of device", "pln": ["(: cnet_isa_9364e09d88 (IsA vaporiser device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vaporization is a kind of annihilation", "pln": ["(: cnet_isa_29f824fe97 (IsA vaporization annihilation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vaporization is a kind of phase change", "pln": ["(: cnet_isa_cf55f4ff09 (IsA vaporization phase_change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vaquero is a kind of cowboy", "pln": ["(: cnet_isa_bb8a44bd34 (IsA vaquero cowboy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vaquita is a kind of porpoise", "pln": ["(: cnet_isa_7fd53644c8 (IsA vaquita porpoise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vara is a kind of linear unit", "pln": ["(: cnet_isa_c5328d7b02 (IsA vara linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "varanidae is a kind of reptile family", "pln": ["(: cnet_isa_0c4ecfe66b (IsA varanidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "varanus is a kind of reptile genus", "pln": ["(: cnet_isa_b50a7b237a (IsA varanus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "variability is a kind of changeableness", "pln": ["(: cnet_isa_f956aec63d (IsA variability changeableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "variable is a kind of quantity", "pln": ["(: cnet_isa_7ee195c6cc (IsA variable quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "variable is a kind of symbol", "pln": ["(: cnet_isa_9a0c671e52 (IsA variable symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "variable is a kind of thing", "pln": ["(: cnet_isa_969ae5cb76 (IsA variable thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "variable pitch propeller is a kind of propeller", "pln": ["(: cnet_isa_7f8d4d7d8b (IsA variable_pitch_propeller propeller) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "variable star is a kind of star", "pln": ["(: cnet_isa_131610b3d0 (IsA variable_star star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "variance is a kind of dispensation", "pln": ["(: cnet_isa_18f3b91428 (IsA variance dispensation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "variance is a kind of moment", "pln": ["(: cnet_isa_2518fcab50 (IsA variance moment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "variation is a kind of activity", "pln": ["(: cnet_isa_d55a1ecfbc (IsA variation activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "variation is a kind of change", "pln": ["(: cnet_isa_e8469a42bd (IsA variation change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "variation is a kind of thing", "pln": ["(: cnet_isa_8e62008ab0 (IsA variation thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "variation is a kind of perturbation", "pln": ["(: cnet_isa_e40d107883 (IsA variation perturbation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "variation is a kind of theme", "pln": ["(: cnet_isa_8e7ca0b6ef (IsA variation theme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "variation is a kind of process", "pln": ["(: cnet_isa_aa155bf24a (IsA variation process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "varicella zoster virus is a kind of herpe", "pln": ["(: cnet_isa_7da55549c9 (IsA varicella_zoster_virus herpe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "varicocele is a kind of dilatation", "pln": ["(: cnet_isa_e09dbfde96 (IsA varicocele dilatation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "varicose vein is a kind of varicosity", "pln": ["(: cnet_isa_ecc22264c0 (IsA varicose_vein varicosity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "varicose vein is a kind of vein", "pln": ["(: cnet_isa_a791aa6478 (IsA varicose_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "varicosis is a kind of pathology", "pln": ["(: cnet_isa_6eec054d01 (IsA varicosis pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "varicosity is a kind of varix", "pln": ["(: cnet_isa_36b29a6bac (IsA varicosity varix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "varied lorikeet is a kind of lorikeet", "pln": ["(: cnet_isa_8afb006cc9 (IsA varied_lorikeet lorikeet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "variedness is a kind of variability", "pln": ["(: cnet_isa_a4d0454ddf (IsA variedness variability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "variegated horsetail is a kind of horsetail", "pln": ["(: cnet_isa_231c0c6372 (IsA variegated_horsetail horsetail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "variegation is a kind of variability", "pln": ["(: cnet_isa_0054db7c81 (IsA variegation variability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "varietal wine is a kind of wine", "pln": ["(: cnet_isa_6d7146ca8c (IsA varietal_wine wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "variety is a kind of difference", "pln": ["(: cnet_isa_070137fe67 (IsA variety difference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "variety is a kind of taxonomic group", "pln": ["(: cnet_isa_ecc50bc892 (IsA variety taxonomic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "variety meat is a kind of meat", "pln": ["(: cnet_isa_0dacc864bd (IsA variety_meat meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "variety show is a kind of show", "pln": ["(: cnet_isa_6e09246640 (IsA variety_show show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "variola major is a kind of variola virus", "pln": ["(: cnet_isa_6bf38273ff (IsA variola_major variola_virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "variola minor is a kind of variola virus", "pln": ["(: cnet_isa_fd2805c456 (IsA variola_minor variola_virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "variola virus is a kind of poxvirus", "pln": ["(: cnet_isa_e8551a64da (IsA variola_virus poxvirus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "variolation is a kind of inoculating", "pln": ["(: cnet_isa_9765ddfa28 (IsA variolation inoculating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "variometer is a kind of measuring instrument", "pln": ["(: cnet_isa_a5c978f878 (IsA variometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "variorum is a kind of edition", "pln": ["(: cnet_isa_ddef91adfa (IsA variorum edition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "variously leaved pondweed is a kind of pondweed", "pln": ["(: cnet_isa_9985acb58a (IsA variously_leaved_pondweed pondweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "varix is a kind of abnormality", "pln": ["(: cnet_isa_5c7d8b2641 (IsA varix abnormality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "varmint is a kind of animal", "pln": ["(: cnet_isa_59c9951cc3 (IsA varmint animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "varna is a kind of group", "pln": ["(: cnet_isa_85b317f572 (IsA varna group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "varnish is a kind of coating", "pln": ["(: cnet_isa_e3a0e8d148 (IsA varnish coating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "varnish tree is a kind of poisonous plant", "pln": ["(: cnet_isa_1b8c7ad522 (IsA varnish_tree poisonous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "varnisher is a kind of finisher", "pln": ["(: cnet_isa_d3b2fc2a5c (IsA varnisher finisher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "varsity is a kind of team", "pln": ["(: cnet_isa_dfabc75188 (IsA varsity team) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "varsity is a kind of university", "pln": ["(: cnet_isa_2d0bf45245 (IsA varsity university) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "varus is a kind of deformity", "pln": ["(: cnet_isa_1595fab6e5 (IsA varus deformity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vas deferen is a kind of duct", "pln": ["(: cnet_isa_230adcef29 (IsA vas_deferen duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vasa efferentia is a kind of tubule", "pln": ["(: cnet_isa_89349934e4 (IsA vasa_efferentia tubule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vasa vasorum is a kind of blood vessel", "pln": ["(: cnet_isa_094b3c511b (IsA vasa_vasorum blood_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vascular bundle is a kind of vascular tissue", "pln": ["(: cnet_isa_7bb4ec0bf9 (IsA vascular_bundle vascular_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vascular plant is a kind of plant", "pln": ["(: cnet_isa_41d1353aeb (IsA vascular_plant plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vascular ray is a kind of vascular tissue", "pln": ["(: cnet_isa_3b7f5c59e8 (IsA vascular_ray vascular_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vascular structure is a kind of structure", "pln": ["(: cnet_isa_3d3df68f15 (IsA vascular_structure structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vascular system is a kind of system", "pln": ["(: cnet_isa_1a396ded8f (IsA vascular_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vascular tissue is a kind of plant tissue", "pln": ["(: cnet_isa_0a44d1fbd4 (IsA vascular_tissue plant_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vascularity is a kind of property", "pln": ["(: cnet_isa_c6b97e0291 (IsA vascularity property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vascularization is a kind of organic process", "pln": ["(: cnet_isa_64706b238d (IsA vascularization organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vasculitis is a kind of inflammation", "pln": ["(: cnet_isa_0bfb725476 (IsA vasculitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vase is a kind of container", "pln": ["(: cnet_isa_fad3cd58d6 (IsA vase container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vase is a kind of jar", "pln": ["(: cnet_isa_71ff56217a (IsA vase jar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vasectomy is a kind of sterilization technique", "pln": ["(: cnet_isa_13c6368cb7 (IsA vasectomy sterilization_technique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vasectomy is a kind of ablation", "pln": ["(: cnet_isa_e1a3764865 (IsA vasectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vasectomy is a kind of surgical contraception", "pln": ["(: cnet_isa_8b460ca9cd (IsA vasectomy surgical_contraception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vasoconstriction is a kind of constriction", "pln": ["(: cnet_isa_f7734b7d6f (IsA vasoconstriction constriction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vasoconstrictor is a kind of drug", "pln": ["(: cnet_isa_ef9dbb68b7 (IsA vasoconstrictor drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vasoconstrictor is a kind of agent", "pln": ["(: cnet_isa_6c9043f1ec (IsA vasoconstrictor agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vasodilation is a kind of dilation", "pln": ["(: cnet_isa_d43c2ede6d (IsA vasodilation dilation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vasodilator is a kind of dilator", "pln": ["(: cnet_isa_5f77ef77a1 (IsA vasodilator dilator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vasopressin is a kind of hormone", "pln": ["(: cnet_isa_962e35317c (IsA vasopressin hormone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vasopressin is a kind of vasoconstrictor", "pln": ["(: cnet_isa_45fa8389ac (IsA vasopressin vasoconstrictor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vasopressor is a kind of vasoconstrictor", "pln": ["(: cnet_isa_1e94041e99 (IsA vasopressor vasoconstrictor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vasotomy is a kind of incision", "pln": ["(: cnet_isa_dce44d8ed1 (IsA vasotomy incision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vasovasostomy is a kind of operation", "pln": ["(: cnet_isa_b516481e7b (IsA vasovasostomy operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vasovesiculitis is a kind of inflammation", "pln": ["(: cnet_isa_ccf868d77b (IsA vasovesiculitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vassal is a kind of follower", "pln": ["(: cnet_isa_b503de38d7 (IsA vassal follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vat is a kind of excise", "pln": ["(: cnet_isa_e0093e2b30 (IsA vat excise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vat dye is a kind of dye", "pln": ["(: cnet_isa_5c2b797554 (IsA vat_dye dye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vatican is a kind of in italy", "pln": ["(: cnet_isa_9223f67ee4 (IsA vatican in_italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vatican council is a kind of council", "pln": ["(: cnet_isa_ee8bc9c17a (IsA vatican_council council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vaudeville is a kind of variety show", "pln": ["(: cnet_isa_3263efdd33 (IsA vaudeville variety_show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vaudevillian is a kind of performer", "pln": ["(: cnet_isa_4e82a7a4d3 (IsA vaudevillian performer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vault is a kind of jump", "pln": ["(: cnet_isa_e6738bfac5 (IsA vault jump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vault is a kind of burial chamber", "pln": ["(: cnet_isa_eefc74c9ac (IsA vault burial_chamber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vault is a kind of roof", "pln": ["(: cnet_isa_7f55ce085e (IsA vault roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vault is a kind of strongroom", "pln": ["(: cnet_isa_e85acbc2b3 (IsA vault strongroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vaulter is a kind of athlete", "pln": ["(: cnet_isa_ad22f1a1ca (IsA vaulter athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vaulting is a kind of structure", "pln": ["(: cnet_isa_155c0f768b (IsA vaulting structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vaulting horse is a kind of horse", "pln": ["(: cnet_isa_7c5e52adbc (IsA vaulting_horse horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vaunt is a kind of boast", "pln": ["(: cnet_isa_601866aa58 (IsA vaunt boast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "veadar is a kind of jewish calendar month", "pln": ["(: cnet_isa_027145945a (IsA veadar jewish_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "veal is a kind of meat", "pln": ["(: cnet_isa_fd8606e83c (IsA veal meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "veal cordon bleu is a kind of dish", "pln": ["(: cnet_isa_233784986e (IsA veal_cordon_bleu dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "veal parmesan is a kind of dish", "pln": ["(: cnet_isa_45d56f7990 (IsA veal_parmesan dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "veal roast is a kind of roast", "pln": ["(: cnet_isa_613d50c93f (IsA veal_roast roast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "veal scallopini is a kind of scallopine", "pln": ["(: cnet_isa_49a84e5ffa (IsA veal_scallopini scallopine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vector is a kind of variable", "pln": ["(: cnet_isa_4dc8c171f1 (IsA vector variable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vector is a kind of virus", "pln": ["(: cnet_isa_9d657d395d (IsA vector virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vector is a kind of agent", "pln": ["(: cnet_isa_8fb9112b72 (IsA vector agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vector is a kind of straight line", "pln": ["(: cnet_isa_ba4ca471d5 (IsA vector straight_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vector algebra is a kind of algebra", "pln": ["(: cnet_isa_34a6647c46 (IsA vector_algebra algebra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vector borne transmission is a kind of indirect transmission", "pln": ["(: cnet_isa_88fa309e00 (IsA vector_borne_transmission indirect_transmission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vector product is a kind of vector", "pln": ["(: cnet_isa_ef648dea9f (IsA vector_product vector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vector sum is a kind of vector", "pln": ["(: cnet_isa_aa8464ebff (IsA vector_sum vector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vedalia is a kind of ladybug", "pln": ["(: cnet_isa_27bf888401 (IsA vedalia ladybug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vedanta is a kind of hinduism", "pln": ["(: cnet_isa_89c9ef0617 (IsA vedanta hinduism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vedic literature is a kind of sacred text", "pln": ["(: cnet_isa_a7beaae98c (IsA vedic_literature sacred_text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vedism is a kind of hinduism", "pln": ["(: cnet_isa_fbed627699 (IsA vedism hinduism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vedist is a kind of scholar", "pln": ["(: cnet_isa_c543517cc3 (IsA vedist scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "veery is a kind of thrush", "pln": ["(: cnet_isa_1017311a40 (IsA veery thrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vegan is a kind of vegetarian", "pln": ["(: cnet_isa_a038a93526 (IsA vegan vegetarian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vegan is a kind of people who consume no animal product", "pln": ["(: cnet_isa_f7486bc339 (IsA vegan people_who_consume_no_animal_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vegetable is a kind of produce", "pln": ["(: cnet_isa_f468a70037 (IsA vegetable produce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vegetable is a kind of herb", "pln": ["(: cnet_isa_8d4b99c6cf (IsA vegetable herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vegetable matter is a kind of substance", "pln": ["(: cnet_isa_b664d72dc2 (IsA vegetable_matter substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vegetable oil is a kind of edible fat", "pln": ["(: cnet_isa_c1c6cede67 (IsA vegetable_oil edible_fat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vegetable sheep is a kind of herb", "pln": ["(: cnet_isa_d938dfdc1a (IsA vegetable_sheep herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vegetable tallow is a kind of plant material", "pln": ["(: cnet_isa_c4900f2b6a (IsA vegetable_tallow plant_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vegetable wax is a kind of wax", "pln": ["(: cnet_isa_eb3a90fae5 (IsA vegetable_wax wax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vegetable is a kind of food", "pln": ["(: cnet_isa_ac3689fa80 (IsA vegetable food) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vegetable is a kind of plant", "pln": ["(: cnet_isa_e06a81aa57 (IsA vegetable plant) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vegetable and tree is a kind of plant", "pln": ["(: cnet_isa_7e6fa43a50 (IsA vegetable_and_tree plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vegetarian is a kind of eater", "pln": ["(: cnet_isa_84e0fd5b65 (IsA vegetarian eater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vegetarianism is a kind of diet", "pln": ["(: cnet_isa_75b6ca774e (IsA vegetarianism diet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vegetation is a kind of quiescence", "pln": ["(: cnet_isa_2fb17f2562 (IsA vegetation quiescence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vegetation is a kind of excrescence", "pln": ["(: cnet_isa_b37022f6b7 (IsA vegetation excrescence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vegetation is a kind of collection", "pln": ["(: cnet_isa_5af0d8913a (IsA vegetation collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vegetation is a kind of growth", "pln": ["(: cnet_isa_9ced9ae321 (IsA vegetation growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vehemence is a kind of intensity", "pln": ["(: cnet_isa_275d001c03 (IsA vehemence intensity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vehicle is a kind of machine", "pln": ["(: cnet_isa_7e91fc8d24 (IsA vehicle machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vehicle is a kind of conveyance", "pln": ["(: cnet_isa_d387bae28e (IsA vehicle conveyance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vehicle is a kind of medium", "pln": ["(: cnet_isa_a18d97929d (IsA vehicle medium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vehicle is a kind of substance", "pln": ["(: cnet_isa_fefd74e561 (IsA vehicle substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vehicle borne transmission is a kind of indirect transmission", "pln": ["(: cnet_isa_66b181ff74 (IsA vehicle_borne_transmission indirect_transmission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vehicular traffic is a kind of traffic", "pln": ["(: cnet_isa_cf3320cc6d (IsA vehicular_traffic traffic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vein is a kind of rib", "pln": ["(: cnet_isa_414a4bd3f0 (IsA vein rib) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vein is a kind of blood vessel", "pln": ["(: cnet_isa_ba5fbb3dcc (IsA vein blood_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vein is a kind of expressive style", "pln": ["(: cnet_isa_8f0858f5cf (IsA vein expressive_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vein is a kind of geological formation", "pln": ["(: cnet_isa_2aeeed57e0 (IsA vein geological_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vein is a kind of vascular bundle", "pln": ["(: cnet_isa_734658f6d8 (IsA vein vascular_bundle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vein of penis is a kind of vein", "pln": ["(: cnet_isa_825e882da8 (IsA vein_of_penis vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "velar consonant is a kind of consonant", "pln": ["(: cnet_isa_9a40a3d7d4 (IsA velar_consonant consonant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "veld is a kind of grassland", "pln": ["(: cnet_isa_073e8faffe (IsA veld grassland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "velleity is a kind of volition", "pln": ["(: cnet_isa_fd2d4b8f5c (IsA velleity volition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "velleity is a kind of wish", "pln": ["(: cnet_isa_e8ed0905b0 (IsA velleity wish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vellum is a kind of parchment", "pln": ["(: cnet_isa_c9bf1a31b4 (IsA vellum parchment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vellum is a kind of writing paper", "pln": ["(: cnet_isa_687cad3331 (IsA vellum writing_paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "velocipede is a kind of bicycle", "pln": ["(: cnet_isa_fb95779930 (IsA velocipede bicycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "velociraptor is a kind of maniraptor", "pln": ["(: cnet_isa_9d847ef39d (IsA velociraptor maniraptor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "velodrome is a kind of racetrack", "pln": ["(: cnet_isa_0b311c6277 (IsA velodrome racetrack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "velour is a kind of fabric", "pln": ["(: cnet_isa_8508c1535a (IsA velour fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "veloute is a kind of sauce", "pln": ["(: cnet_isa_10631102a5 (IsA veloute sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "velveeta is a kind of cheese", "pln": ["(: cnet_isa_0705250ccd (IsA velveeta cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "velvet is a kind of soft fuzzy fabric", "pln": ["(: cnet_isa_2559ee0938 (IsA velvet soft_fuzzy_fabric) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "velvet is a kind of fabric", "pln": ["(: cnet_isa_a75b679b5d (IsA velvet fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "velvet ant is a kind of wasp", "pln": ["(: cnet_isa_7f69ac710a (IsA velvet_ant wasp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "velvet bent is a kind of bent", "pln": ["(: cnet_isa_7b739bcc2a (IsA velvet_bent bent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "velvet grass is a kind of grass", "pln": ["(: cnet_isa_28e2965126 (IsA velvet_grass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "velvet plant is a kind of houseplant", "pln": ["(: cnet_isa_ae6908224f (IsA velvet_plant houseplant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "velveteen is a kind of fabric", "pln": ["(: cnet_isa_9954acf00c (IsA velveteen fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "velvetleaf is a kind of mallow", "pln": ["(: cnet_isa_8952f21c7f (IsA velvetleaf mallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "venae palpebrales is a kind of vein", "pln": ["(: cnet_isa_3c8307e0cb (IsA venae_palpebrales vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vena bulbi penis is a kind of vein", "pln": ["(: cnet_isa_c28681c9c8 (IsA vena_bulbi_penis vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vena bulbi vestibuli is a kind of vein", "pln": ["(: cnet_isa_10762f5ed4 (IsA vena_bulbi_vestibuli vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vena canaliculi cochleae is a kind of vein", "pln": ["(: cnet_isa_3a93ebff3f (IsA vena_canaliculi_cochleae vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vena cava is a kind of vein", "pln": ["(: cnet_isa_d01d689fca (IsA vena_cava vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vena dorsalis clitoridis profunda is a kind of clitoral vein", "pln": ["(: cnet_isa_b099b6290a (IsA vena_dorsalis_clitoridis_profunda clitoral_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vena profunda penis is a kind of vein of penis", "pln": ["(: cnet_isa_69e37695fa (IsA vena_profunda_penis vein_of_penis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venae dorsale clitoridis superficiale is a kind of clitoral vein", "pln": ["(: cnet_isa_0643db7543 (IsA venae_dorsale_clitoridis_superficiale clitoral_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venae dorsale penis profunda is a kind of vein of penis", "pln": ["(: cnet_isa_855fb4e3ef (IsA venae_dorsale_penis_profunda vein_of_penis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venae dorsale penis superficiale is a kind of vein of penis", "pln": ["(: cnet_isa_42a5926d09 (IsA venae_dorsale_penis_superficiale vein_of_penis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venae interlobulare hepatis is a kind of vein", "pln": ["(: cnet_isa_5f5dbc17fe (IsA venae_interlobulare_hepatis vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venae interlobulare renis is a kind of venae renis", "pln": ["(: cnet_isa_280649d72d (IsA venae_interlobulare_renis venae_renis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venae labiale anteriore is a kind of labial vein", "pln": ["(: cnet_isa_9b4e100f2f (IsA venae_labiale_anteriore labial_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venae labiale posteriore is a kind of labial vein", "pln": ["(: cnet_isa_cb7f70092c (IsA venae_labiale_posteriore labial_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venae palpebrale is a kind of vein", "pln": ["(: cnet_isa_7227df3fc9 (IsA venae_palpebrale vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venae profundae clitoridis is a kind of clitoral vein", "pln": ["(: cnet_isa_c8933cccbb (IsA venae_profundae_clitoridis clitoral_vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venae renis is a kind of vein", "pln": ["(: cnet_isa_4372e1c164 (IsA venae_renis vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venality is a kind of corruptness", "pln": ["(: cnet_isa_fa5dda3533 (IsA venality corruptness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venation is a kind of arrangement", "pln": ["(: cnet_isa_da65fc34aa (IsA venation arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venation is a kind of system", "pln": ["(: cnet_isa_314d76c1d0 (IsA venation system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vendemiaire is a kind of revolutionary calendar month", "pln": ["(: cnet_isa_9b8e0e7e16 (IsA vendemiaire revolutionary_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vendetta is a kind of feud", "pln": ["(: cnet_isa_447d3b60c2 (IsA vendetta feud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vending is a kind of selling", "pln": ["(: cnet_isa_cfff0a6d7a (IsA vending selling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vending machine is a kind of slot machine", "pln": ["(: cnet_isa_79c30a31c7 (IsA vending_machine slot_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "veneer is a kind of coating", "pln": ["(: cnet_isa_9c709c964c (IsA veneer coating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "veneering is a kind of lamination", "pln": ["(: cnet_isa_c4494ffa33 (IsA veneering lamination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venerableness is a kind of honorableness", "pln": ["(: cnet_isa_30ac25af93 (IsA venerableness honorableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venerator is a kind of admirer", "pln": ["(: cnet_isa_6e6e1c2a1d (IsA venerator admirer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venereal disease is a kind of contagious disease", "pln": ["(: cnet_isa_b4d4badbf9 (IsA venereal_disease contagious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "veneridae is a kind of mollusk family", "pln": ["(: cnet_isa_756d9d742f (IsA veneridae mollusk_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venesection is a kind of bloodletting", "pln": ["(: cnet_isa_ef68163ed4 (IsA venesection bloodletting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venesection is a kind of incision", "pln": ["(: cnet_isa_91b1a63c8e (IsA venesection incision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venetian is a kind of italian", "pln": ["(: cnet_isa_3eedacb7d7 (IsA venetian italian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venetian blind is a kind of window blind", "pln": ["(: cnet_isa_33511c7df1 (IsA venetian_blind window_blind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venetian glass is a kind of glassware", "pln": ["(: cnet_isa_fafe5271cc (IsA venetian_glass glassware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "venetian sumac is a kind of smoke tree", "pln": ["(: cnet_isa_fabc8fba4f (IsA venetian_sumac smoke_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venezuelan is a kind of south american", "pln": ["(: cnet_isa_88b3eaf77c (IsA venezuelan south_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venezuelan monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_a53928919c (IsA venezuelan_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vengeance is a kind of retaliation", "pln": ["(: cnet_isa_817879e9c8 (IsA vengeance retaliation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venial sin is a kind of sin", "pln": ["(: cnet_isa_83e7b17bc1 (IsA venial_sin sin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venipuncture is a kind of puncture", "pln": ["(: cnet_isa_9ae6416605 (IsA venipuncture puncture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venire facia is a kind of writ", "pln": ["(: cnet_isa_1e873c82fc (IsA venire_facia writ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venison is a kind of game", "pln": ["(: cnet_isa_a77e32a188 (IsA venison game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venn diagram is a kind of diagram", "pln": ["(: cnet_isa_f804e24575 (IsA venn_diagram diagram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venogram is a kind of roentgenogram", "pln": ["(: cnet_isa_de4e445718 (IsA venogram roentgenogram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venography is a kind of arthrography", "pln": ["(: cnet_isa_5ed01fcca7 (IsA venography arthrography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venom is a kind of animal toxin", "pln": ["(: cnet_isa_4a4e06c7dd (IsA venom animal_toxin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venomous lizard is a kind of lizard", "pln": ["(: cnet_isa_eb6cf57802 (IsA venomous_lizard lizard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venous blood is a kind of blood", "pln": ["(: cnet_isa_e7a0735ba4 (IsA venous_blood blood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venous pressure is a kind of blood pressure", "pln": ["(: cnet_isa_6a8d71db7c (IsA venous_pressure blood_pressure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venous sinus is a kind of duct", "pln": ["(: cnet_isa_2a16668f45 (IsA venous_sinus duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vent is a kind of orifice", "pln": ["(: cnet_isa_4159485a48 (IsA vent orifice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vent is a kind of hole", "pln": ["(: cnet_isa_d0b5140e69 (IsA vent hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vent is a kind of slit", "pln": ["(: cnet_isa_9e331eb445 (IsA vent slit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vent is a kind of crack", "pln": ["(: cnet_isa_f1c7777b70 (IsA vent crack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venter is a kind of body part", "pln": ["(: cnet_isa_0d9a565e98 (IsA venter body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "venter is a kind of uterus", "pln": ["(: cnet_isa_46208faaed (IsA venter uterus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venter is a kind of speaker", "pln": ["(: cnet_isa_98d60d6695 (IsA venter speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ventilation is a kind of improvement", "pln": ["(: cnet_isa_e7908cc703 (IsA ventilation improvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ventilation is a kind of mechanical system", "pln": ["(: cnet_isa_13fc612f5e (IsA ventilation mechanical_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ventilation shaft is a kind of air passage", "pln": ["(: cnet_isa_89df1c4030 (IsA ventilation_shaft air_passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ventilation shaft is a kind of shaft", "pln": ["(: cnet_isa_590a5e8680 (IsA ventilation_shaft shaft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ventilator is a kind of device", "pln": ["(: cnet_isa_782d3ea0b3 (IsA ventilator device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ventose is a kind of revolutionary calendar month", "pln": ["(: cnet_isa_75f7d22a79 (IsA ventose revolutionary_calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ventricle is a kind of cavity", "pln": ["(: cnet_isa_0aa9339d6b (IsA ventricle cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ventricle is a kind of chamber", "pln": ["(: cnet_isa_800637f7d3 (IsA ventricle chamber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ventricular aneurysm is a kind of aneurysm", "pln": ["(: cnet_isa_92359624b8 (IsA ventricular_aneurysm aneurysm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ventricular fibrillation is a kind of cardiac arrhythmia", "pln": ["(: cnet_isa_9184ab69f8 (IsA ventricular_fibrillation cardiac_arrhythmia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ventricular fibrillation is a kind of fibrillation", "pln": ["(: cnet_isa_3fdf85c82c (IsA ventricular_fibrillation fibrillation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ventricular septal defect is a kind of septal defect", "pln": ["(: cnet_isa_cd9a585750 (IsA ventricular_septal_defect septal_defect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ventriloquism is a kind of art", "pln": ["(: cnet_isa_ceae02d318 (IsA ventriloquism art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ventriloquist s dummy is a kind of dummy", "pln": ["(: cnet_isa_edc1bc4839 (IsA ventriloquist_s_dummy dummy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ventriloquist is a kind of performer", "pln": ["(: cnet_isa_3b6016daa7 (IsA ventriloquist performer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venture is a kind of commercial enterprise", "pln": ["(: cnet_isa_a1937b07df (IsA venture commercial_enterprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "venture is a kind of undertaking", "pln": ["(: cnet_isa_6b20781210 (IsA venture undertaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venture capital is a kind of capital", "pln": ["(: cnet_isa_11e6e85c44 (IsA venture_capital capital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "venture capitalism is a kind of capitalism", "pln": ["(: cnet_isa_7a333801f2 (IsA venture_capitalism capitalism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venture capitalist is a kind of speculator", "pln": ["(: cnet_isa_2096d35233 (IsA venture_capitalist speculator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venturer is a kind of merchant", "pln": ["(: cnet_isa_4635ece95e (IsA venturer merchant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venturi is a kind of tube", "pln": ["(: cnet_isa_dd0426c867 (IsA venturi tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venturi tube is a kind of measuring instrument", "pln": ["(: cnet_isa_a92b865f42 (IsA venturi_tube measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venue is a kind of jurisdiction", "pln": ["(: cnet_isa_b34637fb8c (IsA venue jurisdiction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venue is a kind of scene", "pln": ["(: cnet_isa_329a737f89 (IsA venue scene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venule is a kind of vein", "pln": ["(: cnet_isa_0162294bce (IsA venule vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venus s flower basket is a kind of glass sponge", "pln": ["(: cnet_isa_0ed65f7aee (IsA venus_s_flower_basket glass_sponge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venus s flytrap is a kind of carnivorous plant", "pln": ["(: cnet_isa_4e25eeb16a (IsA venus_s_flytrap carnivorous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venus s girdle is a kind of ctenophore", "pln": ["(: cnet_isa_74ee4fed9c (IsA venus_s_girdle ctenophore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venus is a kind of planet", "pln": ["(: cnet_isa_1da23a9834 (IsA venus planet) (STV 1.0 0.9791))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "venus is a kind of planet in solar system", "pln": ["(: cnet_isa_c7ec4cc762 (IsA venus planet_in_solar_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venus is a kind of mollusk genus", "pln": ["(: cnet_isa_55bd46dca8 (IsA venus mollusk_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venus fly trap is a kind of carnivore", "pln": ["(: cnet_isa_930eb863e8 (IsA venus_fly_trap carnivore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "venus flytrap is a kind of plant", "pln": ["(: cnet_isa_5975b650a6 (IsA venus_flytrap plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "venus slipper is a kind of orchid", "pln": ["(: cnet_isa_c227eb2721 (IsA venus_slipper orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vep is a kind of baltic finnic", "pln": ["(: cnet_isa_8576bb2279 (IsA vep baltic_finnic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vepsian is a kind of russian", "pln": ["(: cnet_isa_c92f98b4f5 (IsA vepsian russian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "veracity is a kind of truthfulness", "pln": ["(: cnet_isa_7820250d8a (IsA veracity truthfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "veranda is a kind of porch", "pln": ["(: cnet_isa_c9c6632eb3 (IsA veranda porch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "veratrum is a kind of liliid monocot genus", "pln": ["(: cnet_isa_5711b7253a (IsA veratrum liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verb is a kind of action word", "pln": ["(: cnet_isa_e561f8fca5 (IsA verb action_word) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "verb is a kind of part of speech", "pln": ["(: cnet_isa_c8fa87bb2f (IsA verb part_of_speech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verb is a kind of word", "pln": ["(: cnet_isa_9f7333807e (IsA verb word) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verb is a kind of word referring to action", "pln": ["(: cnet_isa_83dda61d03 (IsA verb word_referring_to_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verb is a kind of content word", "pln": ["(: cnet_isa_f4d2a0476b (IsA verb content_word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verb is a kind of major form class", "pln": ["(: cnet_isa_3ef16f1db6 (IsA verb major_form_class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verbal creation is a kind of creating by mental act", "pln": ["(: cnet_isa_10db30881c (IsA verbal_creation creating_by_mental_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verbal intelligence is a kind of intelligence", "pln": ["(: cnet_isa_2653397f35 (IsA verbal_intelligence intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verbal noun is a kind of common noun", "pln": ["(: cnet_isa_b5530ddbf2 (IsA verbal_noun common_noun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verbalisation is a kind of activity", "pln": ["(: cnet_isa_db2afc6023 (IsA verbalisation activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verbalization is a kind of wording", "pln": ["(: cnet_isa_fac3c783c9 (IsA verbalization wording) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verbascum is a kind of asterid dicot genus", "pln": ["(: cnet_isa_d65593dfaf (IsA verbascum asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verbena is a kind of plant", "pln": ["(: cnet_isa_92ab1eca68 (IsA verbena plant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verbena is a kind of flower", "pln": ["(: cnet_isa_eaff2bbdb6 (IsA verbena flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verbenaceae is a kind of asterid dicot family", "pln": ["(: cnet_isa_317b99d842 (IsA verbenaceae asterid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verbesina is a kind of asterid dicot genus", "pln": ["(: cnet_isa_225ba9700a (IsA verbesina asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verbiage is a kind of verboseness", "pln": ["(: cnet_isa_484c899579 (IsA verbiage verboseness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verbolatry is a kind of idolatry", "pln": ["(: cnet_isa_2e4a3735da (IsA verbolatry idolatry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verboseness is a kind of expressive style", "pln": ["(: cnet_isa_870fd32ac9 (IsA verboseness expressive_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verd antique is a kind of marble", "pln": ["(: cnet_isa_a2b7a555d9 (IsA verd_antique marble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verdicchio is a kind of white wine", "pln": ["(: cnet_isa_f5dce8537d (IsA verdicchio white_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verdicchio is a kind of vinifera", "pln": ["(: cnet_isa_132c6edf3d (IsA verdicchio vinifera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verdict is a kind of finding", "pln": ["(: cnet_isa_d1b771336e (IsA verdict finding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verdigris is a kind of patina", "pln": ["(: cnet_isa_187ab94ab7 (IsA verdigris patina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verdigris is a kind of pigment", "pln": ["(: cnet_isa_b891ad5ed3 (IsA verdigris pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verdin is a kind of titmouse", "pln": ["(: cnet_isa_37b503f7ea (IsA verdin titmouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verge is a kind of border", "pln": ["(: cnet_isa_a27153bf59 (IsA verge border) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verge is a kind of limit", "pln": ["(: cnet_isa_8f5c2dc464 (IsA verge limit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verger is a kind of caretaker", "pln": ["(: cnet_isa_ed2782578c (IsA verger caretaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verger is a kind of church officer", "pln": ["(: cnet_isa_e94895421a (IsA verger church_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verification is a kind of affidavit", "pln": ["(: cnet_isa_0b9eb27c48 (IsA verification affidavit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verisimilitude is a kind of semblance", "pln": ["(: cnet_isa_b065493ec4 (IsA verisimilitude semblance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verity is a kind of truth", "pln": ["(: cnet_isa_d11d90ecb6 (IsA verity truth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vermicelli is a kind of pasta", "pln": ["(: cnet_isa_38f44e271d (IsA vermicelli pasta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vermicide is a kind of agent", "pln": ["(: cnet_isa_5133d88368 (IsA vermicide agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vermicide is a kind of medicine", "pln": ["(: cnet_isa_6a1d08b4dd (IsA vermicide medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vermiculation is a kind of carving", "pln": ["(: cnet_isa_4ae14da99c (IsA vermiculation carving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vermiculation is a kind of embellishment", "pln": ["(: cnet_isa_3d49034640 (IsA vermiculation embellishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vermiculite is a kind of mineral", "pln": ["(: cnet_isa_576b194d33 (IsA vermiculite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vermifuge is a kind of medicine", "pln": ["(: cnet_isa_b89c8e1d3d (IsA vermifuge medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vermillion flycatcher is a kind of new world flycatcher", "pln": ["(: cnet_isa_31d15aca1b (IsA vermillion_flycatcher new_world_flycatcher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vermillion rockfish is a kind of rockfish", "pln": ["(: cnet_isa_e69cc877ba (IsA vermillion_rockfish rockfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vermin is a kind of pest", "pln": ["(: cnet_isa_1dd9527975 (IsA vermin pest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vermin is a kind of bad person", "pln": ["(: cnet_isa_4d7a42564a (IsA vermin bad_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vermis is a kind of neural structure", "pln": ["(: cnet_isa_8345f49ffa (IsA vermis neural_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vermont is a kind of state", "pln": ["(: cnet_isa_e028a9629d (IsA vermont state) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vermonter is a kind of american", "pln": ["(: cnet_isa_2639fc4b26 (IsA vermonter american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vermouth is a kind of wine", "pln": ["(: cnet_isa_992907f323 (IsA vermouth wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vernacular is a kind of non standard speech", "pln": ["(: cnet_isa_abd13c8025 (IsA vernacular non_standard_speech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vernal equinox is a kind of equinoctial point", "pln": ["(: cnet_isa_892b9c7106 (IsA vernal_equinox equinoctial_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vernal equinox is a kind of equinox", "pln": ["(: cnet_isa_ab93e6a5f0 (IsA vernal_equinox equinox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vernal witch hazel is a kind of witch hazel", "pln": ["(: cnet_isa_3c67a2bf1f (IsA vernal_witch_hazel witch_hazel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vernation is a kind of arrangement", "pln": ["(: cnet_isa_3392f8d997 (IsA vernation arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verner s law is a kind of sound law", "pln": ["(: cnet_isa_98e6fb4576 (IsA verner_s_law sound_law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vernier caliper is a kind of caliper", "pln": ["(: cnet_isa_4afe47fef3 (IsA vernier_caliper caliper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vernier scale is a kind of scale", "pln": ["(: cnet_isa_64a8bfb7fe (IsA vernier_scale scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vernix is a kind of material", "pln": ["(: cnet_isa_3420ebfdb4 (IsA vernix material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "veronica is a kind of flower", "pln": ["(: cnet_isa_0c019ce25d (IsA veronica flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verpa is a kind of morel", "pln": ["(: cnet_isa_68432b4235 (IsA verpa morel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verpa bohemica is a kind of verpa", "pln": ["(: cnet_isa_68cb82e9e2 (IsA verpa_bohemica verpa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "verpa conica is a kind of verpa", "pln": ["(: cnet_isa_f2f3832c81 (IsA verpa_conica verpa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "versaille is a kind of palace in france", "pln": ["(: cnet_isa_6f26ab7be0 (IsA versaille palace_in_france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "versatility is a kind of skillfulness", "pln": ["(: cnet_isa_0e3d664d31 (IsA versatility skillfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verse is a kind of line", "pln": ["(: cnet_isa_c20bd987bd (IsA verse line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verse is a kind of poem", "pln": ["(: cnet_isa_6d8657c17a (IsA verse poem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "versicle is a kind of poem", "pln": ["(: cnet_isa_325898e3fb (IsA versicle poem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "versification is a kind of adaptation", "pln": ["(: cnet_isa_12088178ed (IsA versification adaptation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "versification is a kind of form", "pln": ["(: cnet_isa_df38918c08 (IsA versification form) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "versification is a kind of writing", "pln": ["(: cnet_isa_6e0433a5ee (IsA versification writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "version is a kind of turn", "pln": ["(: cnet_isa_0207feedef (IsA version turn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "version is a kind of type", "pln": ["(: cnet_isa_feee10a034 (IsA version type) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "version is a kind of interpretation", "pln": ["(: cnet_isa_e14dc85697 (IsA version interpretation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verso is a kind of page", "pln": ["(: cnet_isa_2386c85cdc (IsA verso page) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verst is a kind of linear unit", "pln": ["(: cnet_isa_c19bf866b9 (IsA verst linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vertebra is a kind of bone", "pln": ["(: cnet_isa_a4cb7e3376 (IsA vertebra bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vertebral artery is a kind of artery", "pln": ["(: cnet_isa_ba9d0e8349 (IsA vertebral_artery artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vertebral vein is a kind of vein", "pln": ["(: cnet_isa_449efea887 (IsA vertebral_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vertebrata is a kind of phylum", "pln": ["(: cnet_isa_bebc9241fe (IsA vertebrata phylum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vertebrate is a kind of chordate", "pln": ["(: cnet_isa_cfedb8bc6d (IsA vertebrate chordate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vertebrate foot is a kind of extremity", "pln": ["(: cnet_isa_822ebcafd4 (IsA vertebrate_foot extremity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vertebrate paleontology is a kind of paleontology", "pln": ["(: cnet_isa_c26578968b (IsA vertebrate_paleontology paleontology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vertex is a kind of intersection", "pln": ["(: cnet_isa_2f01c52ec6 (IsA vertex intersection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vertex is a kind of extreme point", "pln": ["(: cnet_isa_6899dd3d20 (IsA vertex extreme_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vertical is a kind of orientation", "pln": ["(: cnet_isa_5c46576e87 (IsA vertical orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vertical angle is a kind of angle", "pln": ["(: cnet_isa_4569e3bfc0 (IsA vertical_angle angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vertical bank is a kind of bank", "pln": ["(: cnet_isa_a6cca32087 (IsA vertical_bank bank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vertical circle is a kind of great circle", "pln": ["(: cnet_isa_a24ea4af74 (IsA vertical_circle great_circle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vertical file is a kind of file", "pln": ["(: cnet_isa_9d683d89fc (IsA vertical_file file) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vertical integration is a kind of consolidation", "pln": ["(: cnet_isa_5d9885280c (IsA vertical_integration consolidation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vertical section is a kind of mechanical drawing", "pln": ["(: cnet_isa_b1a436cfa9 (IsA vertical_section mechanical_drawing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vertical stabilizer is a kind of stabilizer", "pln": ["(: cnet_isa_50437b640d (IsA vertical_stabilizer stabilizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vertical surface is a kind of surface", "pln": ["(: cnet_isa_ecbd324bdb (IsA vertical_surface surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vertical tail is a kind of airfoil", "pln": ["(: cnet_isa_2396b55a14 (IsA vertical_tail airfoil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verticality is a kind of position", "pln": ["(: cnet_isa_9f67f09619 (IsA verticality position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verticil is a kind of coil", "pln": ["(: cnet_isa_d5e9afa99d (IsA verticil coil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verticilliosis is a kind of wilt", "pln": ["(: cnet_isa_d12eed642a (IsA verticilliosis wilt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "verticillium is a kind of fungus", "pln": ["(: cnet_isa_8bdde09c67 (IsA verticillium fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vervet is a kind of guenon", "pln": ["(: cnet_isa_c7a1fe0977 (IsA vervet guenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "very high frequency is a kind of radio frequency", "pln": ["(: cnet_isa_04bdcd1528 (IsA very_high_frequency radio_frequency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "very important person is a kind of important person", "pln": ["(: cnet_isa_277d5e04ad (IsA very_important_person important_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "very light is a kind of flare", "pln": ["(: cnet_isa_6497b66c35 (IsA very_light flare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "very low density lipoprotein is a kind of lipoprotein", "pln": ["(: cnet_isa_cd21c76d06 (IsA very_low_density_lipoprotein lipoprotein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "very low frequency is a kind of radio frequency", "pln": ["(: cnet_isa_555cbdb763 (IsA very_low_frequency radio_frequency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "very pistol is a kind of pistol", "pln": ["(: cnet_isa_16a31fbd25 (IsA very_pistol pistol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "very reverend is a kind of title", "pln": ["(: cnet_isa_6e51307c87 (IsA very_reverend title) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vesical vein is a kind of vein", "pln": ["(: cnet_isa_c505bd8d2a (IsA vesical_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vesicant is a kind of chemical agent", "pln": ["(: cnet_isa_6bddffbada (IsA vesicant chemical_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vesicaria is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_963b50e0c0 (IsA vesicaria dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vesicle is a kind of sac", "pln": ["(: cnet_isa_7f3878b19d (IsA vesicle sac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vesicoureteral reflux is a kind of reflux", "pln": ["(: cnet_isa_7c425c5e25 (IsA vesicoureteral_reflux reflux) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vesicular stomatitis is a kind of stomatitis", "pln": ["(: cnet_isa_88705cccfc (IsA vesicular_stomatitis stomatitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vesiculation is a kind of organic process", "pln": ["(: cnet_isa_44d98e785f (IsA vesiculation organic_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vesiculitis is a kind of inflammation", "pln": ["(: cnet_isa_0a7ba8899e (IsA vesiculitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vesiculovirus is a kind of animal virus", "pln": ["(: cnet_isa_36f4f9115b (IsA vesiculovirus animal_virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vespa is a kind of arthropod genus", "pln": ["(: cnet_isa_3e86c855a0 (IsA vespa arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vesper is a kind of service", "pln": ["(: cnet_isa_4a2809097a (IsA vesper service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vesper sparrow is a kind of new world sparrow", "pln": ["(: cnet_isa_25a394a08b (IsA vesper_sparrow new_world_sparrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vesper is a kind of canonical hour", "pln": ["(: cnet_isa_9bacd211db (IsA vesper canonical_hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vespertilian bat is a kind of carnivorous bat", "pln": ["(: cnet_isa_0be3b6eba3 (IsA vespertilian_bat carnivorous_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vespertilio is a kind of mammal genus", "pln": ["(: cnet_isa_5b8a32824e (IsA vespertilio mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vespertilionidae is a kind of mammal family", "pln": ["(: cnet_isa_95ab03d67b (IsA vespertilionidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vespid is a kind of wasp", "pln": ["(: cnet_isa_6bd47b02f6 (IsA vespid wasp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vespidae is a kind of arthropod family", "pln": ["(: cnet_isa_fbe4c7eb6b (IsA vespidae arthropod_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vespula is a kind of arthropod genus", "pln": ["(: cnet_isa_4e25363805 (IsA vespula arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vessel is a kind of container", "pln": ["(: cnet_isa_577881c4e5 (IsA vessel container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vessel is a kind of craft", "pln": ["(: cnet_isa_6568924f45 (IsA vessel craft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vessel is a kind of tube", "pln": ["(: cnet_isa_f4abf4f8a4 (IsA vessel tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vest is a kind of garment", "pln": ["(: cnet_isa_18981b239b (IsA vest garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vest pocket is a kind of pocket", "pln": ["(: cnet_isa_3068ccc74b (IsA vest_pocket pocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vestal is a kind of woman", "pln": ["(: cnet_isa_add45ae641 (IsA vestal woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vestal virgin is a kind of votary", "pln": ["(: cnet_isa_4838ba8c12 (IsA vestal_virgin votary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vested interest is a kind of interest", "pln": ["(: cnet_isa_fe8903bcf8 (IsA vested_interest interest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vestibular apparatus is a kind of sensory system", "pln": ["(: cnet_isa_2a573f8d0c (IsA vestibular_apparatus sensory_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vestibular gland is a kind of exocrine gland", "pln": ["(: cnet_isa_b06646a3a0 (IsA vestibular_gland exocrine_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vestibular vein is a kind of vein", "pln": ["(: cnet_isa_af052dcdbb (IsA vestibular_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vestibule is a kind of cavity", "pln": ["(: cnet_isa_23543f4436 (IsA vestibule cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vestibule of ear is a kind of vestibule", "pln": ["(: cnet_isa_ce76eb0e61 (IsA vestibule_of_ear vestibule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vestibule of vagina is a kind of vestibule", "pln": ["(: cnet_isa_defa49e232 (IsA vestibule_of_vagina vestibule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vestiture is a kind of clothing", "pln": ["(: cnet_isa_392b09e143 (IsA vestiture clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vestment is a kind of gown", "pln": ["(: cnet_isa_a240acffda (IsA vestment gown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vestry is a kind of room", "pln": ["(: cnet_isa_1fcf1182a2 (IsA vestry room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vestry is a kind of committee", "pln": ["(: cnet_isa_b90fd87317 (IsA vestry committee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vestryman is a kind of church officer", "pln": ["(: cnet_isa_54f4c9fde9 (IsA vestryman church_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vestrywoman is a kind of church officer", "pln": ["(: cnet_isa_4645f1defd (IsA vestrywoman church_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vesture is a kind of covering", "pln": ["(: cnet_isa_08e042b951 (IsA vesture covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vesuvianite is a kind of mineral", "pln": ["(: cnet_isa_a331b9d0f2 (IsA vesuvianite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vetch is a kind of legume", "pln": ["(: cnet_isa_c06e0883e6 (IsA vetch legume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vetchling is a kind of vine", "pln": ["(: cnet_isa_4fecf2faa3 (IsA vetchling vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "veteran is a kind of expert", "pln": ["(: cnet_isa_eff61aef0a (IsA veteran expert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "veteran is a kind of serviceman", "pln": ["(: cnet_isa_d5b9ae4a3b (IsA veteran serviceman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "veteran day is a kind of legal holiday", "pln": ["(: cnet_isa_4d9959e4e5 (IsA veteran_day legal_holiday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "veteran of foreign war is a kind of association", "pln": ["(: cnet_isa_b39ee4b5b0 (IsA veteran_of_foreign_war association) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "veterinarian is a kind of doctor", "pln": ["(: cnet_isa_ee12bddaca (IsA veterinarian doctor) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "veterinary medicine is a kind of medicine", "pln": ["(: cnet_isa_e4d0763163 (IsA veterinary_medicine medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "veterinary school is a kind of school", "pln": ["(: cnet_isa_6e6151da5e (IsA veterinary_school school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "veto is a kind of vote", "pln": ["(: cnet_isa_1814048168 (IsA veto vote) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "veto is a kind of power", "pln": ["(: cnet_isa_522ed3b9ab (IsA veto power) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vexatious litigation is a kind of litigation", "pln": ["(: cnet_isa_a8360d9cee (IsA vexatious_litigation litigation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viability is a kind of practicality", "pln": ["(: cnet_isa_9cf52c2cdc (IsA viability practicality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viability is a kind of property", "pln": ["(: cnet_isa_019895821a (IsA viability property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viaduct is a kind of bridge", "pln": ["(: cnet_isa_bff9d3d238 (IsA viaduct bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viand is a kind of dish", "pln": ["(: cnet_isa_c0659f2900 (IsA viand dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viatical settlement is a kind of liquidation", "pln": ["(: cnet_isa_ef524da5e2 (IsA viatical_settlement liquidation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viatical settlement is a kind of advance death benefit", "pln": ["(: cnet_isa_eae930e28e (IsA viatical_settlement advance_death_benefit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viatication is a kind of buying", "pln": ["(: cnet_isa_c28d4c950d (IsA viatication buying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vibe is a kind of motion", "pln": ["(: cnet_isa_9867bac81e (IsA vibe motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vibist is a kind of musician", "pln": ["(: cnet_isa_ef7a75151a (IsA vibist musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vibraphone is a kind of percussion instrument", "pln": ["(: cnet_isa_a08f39b3ca (IsA vibraphone percussion_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vibration is a kind of motion", "pln": ["(: cnet_isa_38ea64ed45 (IsA vibration motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vibration is a kind of air", "pln": ["(: cnet_isa_d8a401d8c0 (IsA vibration air) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vibrato is a kind of sound", "pln": ["(: cnet_isa_436e411492 (IsA vibrato sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vibrator is a kind of mechanical device", "pln": ["(: cnet_isa_b3c80bcf3c (IsA vibrator mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vibrio is a kind of eubacteria", "pln": ["(: cnet_isa_12d06b9268 (IsA vibrio eubacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vibrio fetus is a kind of vibrio", "pln": ["(: cnet_isa_75b5cd3da5 (IsA vibrio_fetus vibrio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viburnum is a kind of asterid dicot genus", "pln": ["(: cnet_isa_6ae420ecbb (IsA viburnum asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vicar is a kind of clergyman", "pln": ["(: cnet_isa_094eb1d370 (IsA vicar clergyman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vicar is a kind of priest", "pln": ["(: cnet_isa_66b730e71e (IsA vicar priest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vicar apostolic is a kind of bishop", "pln": ["(: cnet_isa_5247683087 (IsA vicar_apostolic bishop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vicar general is a kind of deputy", "pln": ["(: cnet_isa_a78bbea491 (IsA vicar_general deputy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vicariate is a kind of institution", "pln": ["(: cnet_isa_1faf58e705 (IsA vicariate institution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vice is a kind of transgression", "pln": ["(: cnet_isa_ca002c7902 (IsA vice transgression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vice admiral is a kind of flag officer", "pln": ["(: cnet_isa_3ddbcc0be5 (IsA vice_admiral flag_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vice chairman is a kind of president", "pln": ["(: cnet_isa_7846af5ace (IsA vice_chairman president) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vice chancellor is a kind of administrator", "pln": ["(: cnet_isa_8f26802f0d (IsA vice_chancellor administrator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vice crime is a kind of crime", "pln": ["(: cnet_isa_c6c584ba93 (IsA vice_crime crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vice presidency is a kind of position", "pln": ["(: cnet_isa_2292561913 (IsA vice_presidency position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vice president is a kind of executive", "pln": ["(: cnet_isa_1084eb6034 (IsA vice_president executive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vice president of united state is a kind of vice president", "pln": ["(: cnet_isa_f5b234c801 (IsA vice_president_of_united_state vice_president) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vice presidential term is a kind of tenure", "pln": ["(: cnet_isa_7776706eb4 (IsA vice_presidential_term tenure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vice regent is a kind of deputy", "pln": ["(: cnet_isa_12fb4369f3 (IsA vice_regent deputy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vice squad is a kind of police squad", "pln": ["(: cnet_isa_c731fac0f4 (IsA vice_squad police_squad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vicegerent is a kind of deputy", "pln": ["(: cnet_isa_cd07a8dab1 (IsA vicegerent deputy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vicereine is a kind of wife", "pln": ["(: cnet_isa_fd0715779a (IsA vicereine wife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viceroy is a kind of nymphalid", "pln": ["(: cnet_isa_d8569fc2dd (IsA viceroy nymphalid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viceroy is a kind of governor", "pln": ["(: cnet_isa_5499961a2a (IsA viceroy governor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viceroyalty is a kind of jurisdiction", "pln": ["(: cnet_isa_54b08ef985 (IsA viceroyalty jurisdiction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viceroyship is a kind of position", "pln": ["(: cnet_isa_bde6e3dbae (IsA viceroyship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vichy water is a kind of mineral water", "pln": ["(: cnet_isa_dbb86f7bcc (IsA vichy_water mineral_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vichyssoise is a kind of soup", "pln": ["(: cnet_isa_ddde4e479f (IsA vichyssoise soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vicia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_c3dd845049 (IsA vicia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vicinity is a kind of section", "pln": ["(: cnet_isa_2428424803 (IsA vicinity section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vicious circle is a kind of specious argument", "pln": ["(: cnet_isa_d8fa1279f5 (IsA vicious_circle specious_argument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vicious circle is a kind of positive feedback", "pln": ["(: cnet_isa_b58010beca (IsA vicious_circle positive_feedback) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vicissitude is a kind of mutability", "pln": ["(: cnet_isa_c11461278f (IsA vicissitude mutability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vicissitude is a kind of variation", "pln": ["(: cnet_isa_a55997a578 (IsA vicissitude variation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "victim is a kind of person", "pln": ["(: cnet_isa_e503fb44c2 (IsA victim person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "victim is a kind of unfortunate", "pln": ["(: cnet_isa_34e4fe6e46 (IsA victim unfortunate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "victimization is a kind of adversity", "pln": ["(: cnet_isa_bb4c22de24 (IsA victimization adversity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "victimizer is a kind of bad person", "pln": ["(: cnet_isa_eb4b150fcb (IsA victimizer bad_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "victimless crime is a kind of crime", "pln": ["(: cnet_isa_90e2ea4fa8 (IsA victimless_crime crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "victor is a kind of combatant", "pln": ["(: cnet_isa_b35e773afa (IsA victor combatant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "victoria cross is a kind of decoration", "pln": ["(: cnet_isa_66dbef1853 (IsA victoria_cross decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "victoria day is a kind of legal holiday", "pln": ["(: cnet_isa_628ae4851e (IsA victoria_day legal_holiday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "victoria plum is a kind of plum", "pln": ["(: cnet_isa_7f2564d302 (IsA victoria_plum plum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "victoria sandwich is a kind of cake", "pln": ["(: cnet_isa_ff97fcfe35 (IsA victoria_sandwich cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "victorian is a kind of person", "pln": ["(: cnet_isa_09f9db6f38 (IsA victorian person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "victorian architecture is a kind of architectural style", "pln": ["(: cnet_isa_b713351d55 (IsA victorian_architecture architectural_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "victoriana is a kind of collection", "pln": ["(: cnet_isa_3deee088f3 (IsA victoriana collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "victory is a kind of when one opponent defeat another", "pln": ["(: cnet_isa_4e5f48fa26 (IsA victory when_one_opponent_defeat_another) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "victory is a kind of ending", "pln": ["(: cnet_isa_f45b1e303b (IsA victory ending) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "victory is a kind of success", "pln": ["(: cnet_isa_d5365fadfa (IsA victory success) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "victory celebration is a kind of celebration", "pln": ["(: cnet_isa_046e9531d7 (IsA victory_celebration celebration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "victory garden is a kind of kitchen garden", "pln": ["(: cnet_isa_f2c9f36c1b (IsA victory_garden kitchen_garden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "victory lap is a kind of lap", "pln": ["(: cnet_isa_6877cfdad9 (IsA victory_lap lap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "victualer is a kind of host", "pln": ["(: cnet_isa_89c57e9394 (IsA victualer host) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vicugna is a kind of mammal genus", "pln": ["(: cnet_isa_78aeea92b6 (IsA vicugna mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vicuna is a kind of even toed ungulate", "pln": ["(: cnet_isa_dbc406c6af (IsA vicuna even_toed_ungulate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vicuna is a kind of fabric", "pln": ["(: cnet_isa_1600995dda (IsA vicuna fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vicuna is a kind of wool", "pln": ["(: cnet_isa_a06620e189 (IsA vicuna wool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vidalia onion is a kind of onion", "pln": ["(: cnet_isa_801a7cb827 (IsA vidalia_onion onion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "video is a kind of visual communication", "pln": ["(: cnet_isa_8a2f973454 (IsA video visual_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "video digitizing is a kind of photography", "pln": ["(: cnet_isa_2dd0a6321a (IsA video_digitizing photography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "video ipod is a kind of ipod", "pln": ["(: cnet_isa_a49082f7a0 (IsA video_ipod ipod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "video recording is a kind of recording", "pln": ["(: cnet_isa_594e351084 (IsA video_recording recording) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "video tape is a kind of form of recordable media", "pln": ["(: cnet_isa_922aa51529 (IsA video_tape form_of_recordable_media) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "videocassette is a kind of cassette", "pln": ["(: cnet_isa_441728fa58 (IsA videocassette cassette) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "videocassette is a kind of video recording", "pln": ["(: cnet_isa_8b651c9a13 (IsA videocassette video_recording) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "videocassette recorder is a kind of tape recorder", "pln": ["(: cnet_isa_df43508a6f (IsA videocassette_recorder tape_recorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "videodisk is a kind of optical disk", "pln": ["(: cnet_isa_d0848c4249 (IsA videodisk optical_disk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "videotape is a kind of magnetic tape", "pln": ["(: cnet_isa_2eeefc0ba7 (IsA videotape magnetic_tape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "videotape is a kind of tape", "pln": ["(: cnet_isa_3fb9d96136 (IsA videotape tape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "videotape is a kind of video recording", "pln": ["(: cnet_isa_ee7e44693b (IsA videotape video_recording) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vidua is a kind of bird genus", "pln": ["(: cnet_isa_b3f79d8484 (IsA vidua bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vienna sausage is a kind of frank", "pln": ["(: cnet_isa_cb868f7484 (IsA vienna_sausage frank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vietnam is a kind of country", "pln": ["(: cnet_isa_6058cae6bb (IsA vietnam country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vietnam is a kind of in asia", "pln": ["(: cnet_isa_e45a1d9ce9 (IsA vietnam in_asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vietnamese is a kind of mon khmer", "pln": ["(: cnet_isa_af80e2ffd0 (IsA vietnamese mon_khmer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vietnamese monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_f4c72d9701 (IsA vietnamese_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "view is a kind of look", "pln": ["(: cnet_isa_ad074c1543 (IsA view look) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "view is a kind of appearance", "pln": ["(: cnet_isa_4433d4c4a1 (IsA view appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "view is a kind of purpose", "pln": ["(: cnet_isa_b379da277e (IsA view purpose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "view is a kind of visual percept", "pln": ["(: cnet_isa_9df8637a26 (IsA view visual_percept) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "view is a kind of range", "pln": ["(: cnet_isa_dd880ba8fb (IsA view range) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "view angle is a kind of angle", "pln": ["(: cnet_isa_5ea183ba6c (IsA view_angle angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viewer is a kind of optical device", "pln": ["(: cnet_isa_bcd1fe2fdb (IsA viewer optical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viewgraph is a kind of foil", "pln": ["(: cnet_isa_1a3732a894 (IsA viewgraph foil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viewing audience is a kind of audience", "pln": ["(: cnet_isa_134c2f3832 (IsA viewing_audience audience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "viewing televsion is a kind of passive activity", "pln": ["(: cnet_isa_6a02d1bfd1 (IsA viewing_televsion passive_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vigil is a kind of wakefulness", "pln": ["(: cnet_isa_10dcaed795 (IsA vigil wakefulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vigil is a kind of rite", "pln": ["(: cnet_isa_d82e6095ed (IsA vigil rite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vigil light is a kind of candle", "pln": ["(: cnet_isa_4e393b213a (IsA vigil_light candle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vigilance committee is a kind of committee", "pln": ["(: cnet_isa_365e8506a1 (IsA vigilance_committee committee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vigilante is a kind of volunteer", "pln": ["(: cnet_isa_ed40fd7f4d (IsA vigilante volunteer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vigilantism is a kind of law enforcement", "pln": ["(: cnet_isa_691dacb4fd (IsA vigilantism law_enforcement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vigna is a kind of rosid dicot genus", "pln": ["(: cnet_isa_43ab6783b5 (IsA vigna rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vignette is a kind of picture", "pln": ["(: cnet_isa_108dd27b60 (IsA vignette picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vignette is a kind of sketch", "pln": ["(: cnet_isa_d3a8508eae (IsA vignette sketch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vigor is a kind of strength", "pln": ["(: cnet_isa_8f043cb2d1 (IsA vigor strength) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viking is a kind of northman", "pln": ["(: cnet_isa_717227d827 (IsA viking northman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "villa is a kind of country house", "pln": ["(: cnet_isa_5ffd30788d (IsA villa country_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "villa is a kind of house", "pln": ["(: cnet_isa_f00ffc9f0e (IsA villa house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "village is a kind of town", "pln": ["(: cnet_isa_120aa666b2 (IsA village town) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "village is a kind of community", "pln": ["(: cnet_isa_8663051a00 (IsA village community) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "village is a kind of settlement", "pln": ["(: cnet_isa_c5e54c9578 (IsA village settlement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "village green is a kind of park", "pln": ["(: cnet_isa_ae3ae83009 (IsA village_green park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "villager is a kind of inhabitant", "pln": ["(: cnet_isa_1a0d1a8768 (IsA villager inhabitant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "villain is a kind of character", "pln": ["(: cnet_isa_210454f7ef (IsA villain character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "villain is a kind of unwelcome person", "pln": ["(: cnet_isa_5f9e314fdb (IsA villain unwelcome_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "villainess is a kind of villain", "pln": ["(: cnet_isa_45f1e8353d (IsA villainess villain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "villainy is a kind of transgression", "pln": ["(: cnet_isa_53250d256a (IsA villainy transgression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "villainy is a kind of evil", "pln": ["(: cnet_isa_6dbd8ed819 (IsA villainy evil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "villeinage is a kind of tenure", "pln": ["(: cnet_isa_6caab5399b (IsA villeinage tenure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "villeinage is a kind of legal status", "pln": ["(: cnet_isa_7bff1f3cf6 (IsA villeinage legal_status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "villeinage is a kind of servitude", "pln": ["(: cnet_isa_05bd7bfcb4 (IsA villeinage servitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "villus is a kind of process", "pln": ["(: cnet_isa_2824fc087c (IsA villus process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viminaria is a kind of rosid dicot genus", "pln": ["(: cnet_isa_c52a809a97 (IsA viminaria rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vin ordinaire is a kind of table wine", "pln": ["(: cnet_isa_5e8e8a1972 (IsA vin_ordinaire table_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vinca is a kind of dicot genus", "pln": ["(: cnet_isa_040dd49f8d (IsA vinca dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vincent s angina is a kind of angina", "pln": ["(: cnet_isa_b1712b8094 (IsA vincent_s_angina angina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vincent s angina is a kind of contagious disease", "pln": ["(: cnet_isa_b6e153e161 (IsA vincent_s_angina contagious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vincetoxicum is a kind of dicot genus", "pln": ["(: cnet_isa_b481e3e362 (IsA vincetoxicum dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vindication is a kind of clearing", "pln": ["(: cnet_isa_2d5bdf279b (IsA vindication clearing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vindictiveness is a kind of malevolence", "pln": ["(: cnet_isa_0847151b1e (IsA vindictiveness malevolence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vine is a kind of plant", "pln": ["(: cnet_isa_641dadad66 (IsA vine plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vine is a kind of vascular plant", "pln": ["(: cnet_isa_03bbe85e54 (IsA vine vascular_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vine maple is a kind of maple", "pln": ["(: cnet_isa_e8f18995ee (IsA vine_maple maple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vine snake is a kind of colubrid snake", "pln": ["(: cnet_isa_b985ac1d6a (IsA vine_snake colubrid_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vinegar is a kind of liquid", "pln": ["(: cnet_isa_1eae664c2d (IsA vinegar liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vinegar is a kind of mild acid", "pln": ["(: cnet_isa_1d85109587 (IsA vinegar mild_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vinegar is a kind of weak acid", "pln": ["(: cnet_isa_66d33bb5a4 (IsA vinegar weak_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vinegar is a kind of condiment", "pln": ["(: cnet_isa_77427b33b2 (IsA vinegar condiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vinegar is a kind of acetic acid", "pln": ["(: cnet_isa_0a93631bd1 (IsA vinegar acetic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vinegar eel is a kind of eelworm", "pln": ["(: cnet_isa_98ca0bf95e (IsA vinegar_eel eelworm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vinegar fly is a kind of fruit fly", "pln": ["(: cnet_isa_3141f5500f (IsA vinegar_fly fruit_fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vinegariness is a kind of sourness", "pln": ["(: cnet_isa_d55473c67c (IsA vinegariness sourness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vinegarroon is a kind of whip scorpion", "pln": ["(: cnet_isa_cbcf2df11c (IsA vinegarroon whip_scorpion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vineyard is a kind of place", "pln": ["(: cnet_isa_42528028af (IsA vineyard place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vineyard is a kind of farm", "pln": ["(: cnet_isa_5b4536c780 (IsA vineyard farm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viniculture is a kind of trade", "pln": ["(: cnet_isa_daed9d6daf (IsA viniculture trade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vinifera is a kind of grape", "pln": ["(: cnet_isa_891d2f00ec (IsA vinifera grape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vinifera grape is a kind of grape", "pln": ["(: cnet_isa_9b90d5f5a3 (IsA vinifera_grape grape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vinification is a kind of zymosis", "pln": ["(: cnet_isa_e69f971189 (IsA vinification zymosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vintage is a kind of oldness", "pln": ["(: cnet_isa_3c4745af8e (IsA vintage oldness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vintage is a kind of wine", "pln": ["(: cnet_isa_be8220b548 (IsA vintage wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vintager is a kind of harvester", "pln": ["(: cnet_isa_ce0ce80528 (IsA vintager harvester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vintner is a kind of person", "pln": ["(: cnet_isa_1d33d92cf4 (IsA vintner person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vintner is a kind of maker", "pln": ["(: cnet_isa_85fb35f424 (IsA vintner maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vintner is a kind of merchant", "pln": ["(: cnet_isa_331f03db65 (IsA vintner merchant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vinyl is a kind of chemical", "pln": ["(: cnet_isa_2d884c31bd (IsA vinyl chemical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vinyl is a kind of organic chemical", "pln": ["(: cnet_isa_a5d596bae1 (IsA vinyl organic_chemical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vinyl is a kind of plastic", "pln": ["(: cnet_isa_01159778b4 (IsA vinyl plastic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vinyl is a kind of synthetic fiber", "pln": ["(: cnet_isa_0c288da386 (IsA vinyl synthetic_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vinyl is a kind of group", "pln": ["(: cnet_isa_caa82c06e9 (IsA vinyl group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vinyl polymer is a kind of synthetic resin", "pln": ["(: cnet_isa_3f6c2386e2 (IsA vinyl_polymer synthetic_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viol is a kind of bowed stringed instrument", "pln": ["(: cnet_isa_b2a2468445 (IsA viol bowed_stringed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viola is a kind of instrument", "pln": ["(: cnet_isa_09d3bd2580 (IsA viola instrument) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viola is a kind of musical instrument", "pln": ["(: cnet_isa_f3470594d5 (IsA viola musical_instrument) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viola is a kind of bowed stringed instrument", "pln": ["(: cnet_isa_d11d7bdbc8 (IsA viola bowed_stringed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viola is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_37e98eac9a (IsA viola dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viola is a kind of herb", "pln": ["(: cnet_isa_9deed837a5 (IsA viola herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viola d amore is a kind of viol", "pln": ["(: cnet_isa_98743c132d (IsA viola_d_amore viol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viola da braccio is a kind of viol", "pln": ["(: cnet_isa_8823ed0225 (IsA viola_da_braccio viol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viola da gamba is a kind of viol", "pln": ["(: cnet_isa_52aeb73b11 (IsA viola_da_gamba viol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "violaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_062213cb09 (IsA violaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "violation is a kind of wrongdoing", "pln": ["(: cnet_isa_4e69d75951 (IsA violation wrongdoing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "violator is a kind of criminal", "pln": ["(: cnet_isa_ca61ff891b (IsA violator criminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "violator is a kind of libertine", "pln": ["(: cnet_isa_96ca38d755 (IsA violator libertine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "violence is a kind of aggression", "pln": ["(: cnet_isa_9f12efe45a (IsA violence aggression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "violence is a kind of turbulence", "pln": ["(: cnet_isa_cce94d6ec8 (IsA violence turbulence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "violet is a kind of flower", "pln": ["(: cnet_isa_09bebd37a1 (IsA violet flower) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "violet is a kind of purple", "pln": ["(: cnet_isa_51f88ec4e4 (IsA violet purple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "violet is a kind of viola", "pln": ["(: cnet_isa_2ac1dcfdba (IsA violet viola) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "violet flowered petunia is a kind of petunia", "pln": ["(: cnet_isa_82de6e1faa (IsA violet_flowered_petunia petunia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "violet suksdorfia is a kind of suksdorfia", "pln": ["(: cnet_isa_6030db8a6c (IsA violet_suksdorfia suksdorfia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "violet wood sorrel is a kind of oxalis", "pln": ["(: cnet_isa_f3b36e2779 (IsA violet_wood_sorrel oxalis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "violin is a kind of bowed stringed instrument", "pln": ["(: cnet_isa_4fc7b3a9d0 (IsA violin bowed_stringed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "violin family is a kind of class", "pln": ["(: cnet_isa_16b8ef0520 (IsA violin_family class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "violin lesson is a kind of music lesson", "pln": ["(: cnet_isa_f273b19bff (IsA violin_lesson music_lesson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "violin maker is a kind of maker", "pln": ["(: cnet_isa_697758f7ae (IsA violin_maker maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "violin section is a kind of string section", "pln": ["(: cnet_isa_9a28e0b9da (IsA violin_section string_section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "violinist is a kind of musician", "pln": ["(: cnet_isa_a70b8934f6 (IsA violinist musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "violist is a kind of musician", "pln": ["(: cnet_isa_a7153eb6ab (IsA violist musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viper is a kind of snake", "pln": ["(: cnet_isa_e1cb431db0 (IsA viper snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vipera is a kind of reptile genus", "pln": ["(: cnet_isa_1294d98856 (IsA vipera reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viperidae is a kind of reptile family", "pln": ["(: cnet_isa_f6de0e8817 (IsA viperidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viperine grass snake is a kind of grass snake", "pln": ["(: cnet_isa_5333689c81 (IsA viperine_grass_snake grass_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "virago is a kind of shrew", "pln": ["(: cnet_isa_98fa404649 (IsA virago shrew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viral delivery vector is a kind of transducing vector", "pln": ["(: cnet_isa_ef3f411afb (IsA viral_delivery_vector transducing_vector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "viral hepatitis is a kind of hepatitis", "pln": ["(: cnet_isa_89e5f2ec6e (IsA viral_hepatitis hepatitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viral infection is a kind of infection", "pln": ["(: cnet_isa_e9c6ab437d (IsA viral_infection infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viral pneumonia is a kind of pneumonia", "pln": ["(: cnet_isa_05d5717cdc (IsA viral_pneumonia pneumonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viral pneumonia is a kind of viral infection", "pln": ["(: cnet_isa_0cf5797a0a (IsA viral_pneumonia viral_infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viremia is a kind of pathology", "pln": ["(: cnet_isa_87b8582603 (IsA viremia pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vireo is a kind of oscine", "pln": ["(: cnet_isa_82a94d0fb6 (IsA vireo oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vireonidae is a kind of bird family", "pln": ["(: cnet_isa_9654afac0e (IsA vireonidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virga is a kind of precipitation", "pln": ["(: cnet_isa_1df4b80eea (IsA virga precipitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virgilia is a kind of rosid dicot genus", "pln": ["(: cnet_isa_693cbc579e (IsA virgilia rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virgin s bower is a kind of clematis", "pln": ["(: cnet_isa_57651ea2e6 (IsA virgin_s_bower clematis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virgin is a kind of person", "pln": ["(: cnet_isa_aad7c893e3 (IsA virgin person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "virgin is a kind of innocent", "pln": ["(: cnet_isa_f82004b3c5 (IsA virgin innocent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virgin birth is a kind of theological doctrine", "pln": ["(: cnet_isa_47c4454410 (IsA virgin_birth theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virgin mary is a kind of bloody mary", "pln": ["(: cnet_isa_2178e80a09 (IsA virgin_mary bloody_mary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virgin wool is a kind of wool", "pln": ["(: cnet_isa_3bfbca64dd (IsA virgin_wool wool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virginal is a kind of harpsichord", "pln": ["(: cnet_isa_ca2e54a242 (IsA virginal harpsichord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virginia is a kind of state", "pln": ["(: cnet_isa_d74b164495 (IsA virginia state) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virginia bluebell is a kind of herb", "pln": ["(: cnet_isa_35c710b52d (IsA virginia_bluebell herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virginia chain fern is a kind of chain fern", "pln": ["(: cnet_isa_c836d3188e (IsA virginia_chain_fern chain_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virginia creeper is a kind of vine", "pln": ["(: cnet_isa_72f355a6d6 (IsA virginia_creeper vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virginia crownbeard is a kind of crownbeard", "pln": ["(: cnet_isa_4af70e8edb (IsA virginia_crownbeard crownbeard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "virginia deer is a kind of deer", "pln": ["(: cnet_isa_0a7388a569 (IsA virginia_deer deer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "virginia reel is a kind of longways", "pln": ["(: cnet_isa_3cb2ea82b9 (IsA virginia_reel longways) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virginia ham is a kind of ham", "pln": ["(: cnet_isa_fe041b6bc8 (IsA virginia_ham ham) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virginia mallow is a kind of mallow", "pln": ["(: cnet_isa_f46235727f (IsA virginia_mallow mallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virginia oyster is a kind of oyster", "pln": ["(: cnet_isa_389bbf9fb2 (IsA virginia_oyster oyster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virginia reel is a kind of longway", "pln": ["(: cnet_isa_c29b8691f2 (IsA virginia_reel longway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virginia snakeroot is a kind of birthwort", "pln": ["(: cnet_isa_77006b7ddb (IsA virginia_snakeroot birthwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virginia spring beauty is a kind of flower", "pln": ["(: cnet_isa_b0550f3c59 (IsA virginia_spring_beauty flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virginia strawberry is a kind of strawberry", "pln": ["(: cnet_isa_d1ec2dd931 (IsA virginia_strawberry strawberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virginia thimbleweed is a kind of thimbleweed", "pln": ["(: cnet_isa_30af094028 (IsA virginia_thimbleweed thimbleweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virginia waterleaf is a kind of waterleaf", "pln": ["(: cnet_isa_2524cb3e3a (IsA virginia_waterleaf waterleaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virginian is a kind of american", "pln": ["(: cnet_isa_d8549aeb23 (IsA virginian american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virginian stock is a kind of flower", "pln": ["(: cnet_isa_dab2001c30 (IsA virginian_stock flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virginian witch hazel is a kind of witch hazel", "pln": ["(: cnet_isa_2afa1929b7 (IsA virginian_witch_hazel witch_hazel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virginity is a kind of condition", "pln": ["(: cnet_isa_f70dea996f (IsA virginity condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viricide is a kind of agent", "pln": ["(: cnet_isa_7aa0d94579 (IsA viricide agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virilism is a kind of sex characteristic", "pln": ["(: cnet_isa_a8289c7447 (IsA virilism sex_characteristic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virility is a kind of maleness", "pln": ["(: cnet_isa_e51622c146 (IsA virility maleness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virility drug is a kind of drug", "pln": ["(: cnet_isa_8055b6422a (IsA virility_drug drug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virino is a kind of particle", "pln": ["(: cnet_isa_3b8d761a27 (IsA virino particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "virion is a kind of particle", "pln": ["(: cnet_isa_884a17cf6f (IsA virion particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viroid is a kind of plant virus", "pln": ["(: cnet_isa_be91617453 (IsA viroid plant_virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virologist is a kind of microbiologist", "pln": ["(: cnet_isa_195caae9d9 (IsA virologist microbiologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virology is a kind of medicine", "pln": ["(: cnet_isa_ce01162a2d (IsA virology medicine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "virtu is a kind of objet d art", "pln": ["(: cnet_isa_0e9a657089 (IsA virtu objet_d_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virtu is a kind of quality", "pln": ["(: cnet_isa_d3e13e607e (IsA virtu quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "virtu is a kind of taste", "pln": ["(: cnet_isa_4e7702a574 (IsA virtu taste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "virus is a kind of program replicates", "pln": ["(: cnet_isa_fc6bf5847a (IsA virus program_replicates) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virtual human is a kind of software can emulate human behaviour and communication", "pln": ["(: cnet_isa_2239c98d9c (IsA virtual_human software_can_emulate_human_behaviour_and_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virtual image is a kind of reflection", "pln": ["(: cnet_isa_0bfbb01eb4 (IsA virtual_image reflection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virtual memory is a kind of memory", "pln": ["(: cnet_isa_772fc64866 (IsA virtual_memory memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virtual reality is a kind of computer game", "pln": ["(: cnet_isa_86efae58bd (IsA virtual_reality computer_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virtue is a kind of good thing to have", "pln": ["(: cnet_isa_6886c4f3e0 (IsA virtue good_thing_to_have) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virtue is a kind of good", "pln": ["(: cnet_isa_b16ab6a67c (IsA virtue good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virtue is a kind of morality", "pln": ["(: cnet_isa_1ce84076d3 (IsA virtue morality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virtuosity is a kind of skill", "pln": ["(: cnet_isa_49d2862486 (IsA virtuosity skill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virtuoso is a kind of musician", "pln": ["(: cnet_isa_23ff151238 (IsA virtuoso musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virulence is a kind of hostility", "pln": ["(: cnet_isa_cf5f0c95a1 (IsA virulence hostility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virulence is a kind of harmfulness", "pln": ["(: cnet_isa_09db7d525c (IsA virulence harmfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virus is a kind of program replicate", "pln": ["(: cnet_isa_23fc814349 (IsA virus program_replicate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virus is a kind of malevolent program", "pln": ["(: cnet_isa_a3e5ff0fd5 (IsA virus malevolent_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virus is a kind of representation", "pln": ["(: cnet_isa_6be5b031d9 (IsA virus representation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virus is a kind of infectious agent", "pln": ["(: cnet_isa_fb6cb67c72 (IsA virus infectious_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virus is a kind of microorganism", "pln": ["(: cnet_isa_ec5aa656a9 (IsA virus microorganism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "virus is a kind of almost inconceivably small", "pln": ["(: cnet_isa_22f3ff012e (IsA virus almost_inconceivably_small) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visa is a kind of credit card", "pln": ["(: cnet_isa_6f26adc547 (IsA visa credit_card) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visa is a kind of credit card company", "pln": ["(: cnet_isa_82414c902e (IsA visa credit_card_company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visa is a kind of sanction", "pln": ["(: cnet_isa_2ad8c704d2 (IsA visa sanction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viscaceae is a kind of dilleniid dicot family", "pln": ["(: cnet_isa_c4e00dfb23 (IsA viscaceae dilleniid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viscacha is a kind of rodent", "pln": ["(: cnet_isa_ac52f40054 (IsA viscacha rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "viscera is a kind of internal organ", "pln": ["(: cnet_isa_163fc13b09 (IsA viscera internal_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visceral leishmaniasis is a kind of leishmaniasis", "pln": ["(: cnet_isa_1bebc98f5d (IsA visceral_leishmaniasis leishmaniasis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visceral pleura is a kind of pleura", "pln": ["(: cnet_isa_81d308b1b9 (IsA visceral_pleura pleura) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viscometer is a kind of measuring instrument", "pln": ["(: cnet_isa_6eb1d90b5a (IsA viscometer measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viscometry is a kind of measurement", "pln": ["(: cnet_isa_3a29a9ace1 (IsA viscometry measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viscose rayon is a kind of rayon", "pln": ["(: cnet_isa_e33eccef96 (IsA viscose_rayon rayon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viscosity is a kind of consistency", "pln": ["(: cnet_isa_b7ea8c666b (IsA viscosity consistency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viscount is a kind of nobleman", "pln": ["(: cnet_isa_4809d58400 (IsA viscount nobleman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viscount is a kind of peer", "pln": ["(: cnet_isa_f15b1b0dc4 (IsA viscount peer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viscountcy is a kind of title", "pln": ["(: cnet_isa_d12006cf84 (IsA viscountcy title) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viscountcy is a kind of rank", "pln": ["(: cnet_isa_986860273d (IsA viscountcy rank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viscountess is a kind of peer", "pln": ["(: cnet_isa_102fe79a11 (IsA viscountess peer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viscountess is a kind of wife", "pln": ["(: cnet_isa_53ecdf1f74 (IsA viscountess wife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viscounty is a kind of domain", "pln": ["(: cnet_isa_4f5f5eb032 (IsA viscounty domain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viscum is a kind of dilleniid dicot genus", "pln": ["(: cnet_isa_00d8fea736 (IsA viscum dilleniid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vise is a kind of holding device", "pln": ["(: cnet_isa_466be727ba (IsA vise holding_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visibility is a kind of clearness", "pln": ["(: cnet_isa_85f29dc3aa (IsA visibility clearness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "visibility is a kind of perceptibility", "pln": ["(: cnet_isa_dfe2aa92b4 (IsA visibility perceptibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visibility is a kind of salience", "pln": ["(: cnet_isa_29d332b486 (IsA visibility salience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visible spectrum is a kind of spectrum", "pln": ["(: cnet_isa_d5a888d792 (IsA visible_spectrum spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visible speech is a kind of spectrogram", "pln": ["(: cnet_isa_5be9a33322 (IsA visible_speech spectrogram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visible speech is a kind of phonetic alphabet", "pln": ["(: cnet_isa_7ad481fdf5 (IsA visible_speech phonetic_alphabet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visigoth is a kind of goth", "pln": ["(: cnet_isa_7471b0152f (IsA visigoth goth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vision is a kind of imagination", "pln": ["(: cnet_isa_aa6fa92326 (IsA vision imagination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vision is a kind of sensation", "pln": ["(: cnet_isa_e77efc3d4d (IsA vision sensation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vision is a kind of experience", "pln": ["(: cnet_isa_f879d3d136 (IsA vision experience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visionary is a kind of intellectual", "pln": ["(: cnet_isa_d55042a960 (IsA visionary intellectual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visionary is a kind of person", "pln": ["(: cnet_isa_2803568539 (IsA visionary person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visit is a kind of meeting", "pln": ["(: cnet_isa_0ece34d75c (IsA visit meeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visitation is a kind of visit", "pln": ["(: cnet_isa_be6c75170e (IsA visitation visit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visitation is a kind of calamity", "pln": ["(: cnet_isa_a1223d279e (IsA visitation calamity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visitation right is a kind of legal right", "pln": ["(: cnet_isa_dc8cc32f51 (IsA visitation_right legal_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visiting is a kind of visit", "pln": ["(: cnet_isa_33e396b2d8 (IsA visiting visit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visiting fireman is a kind of visitor", "pln": ["(: cnet_isa_16d7ca59fb (IsA visiting_fireman visitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visiting nurse is a kind of nurse", "pln": ["(: cnet_isa_ad6f1d7eab (IsA visiting_nurse nurse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visiting professor is a kind of professor", "pln": ["(: cnet_isa_ed99f44398 (IsA visiting_professor professor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "visitor is a kind of traveler", "pln": ["(: cnet_isa_d3e49e8044 (IsA visitor traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "visor is a kind of armor plate", "pln": ["(: cnet_isa_1f70293cf8 (IsA visor armor_plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visual agnosia is a kind of agnosia", "pln": ["(: cnet_isa_8cfc544f7d (IsA visual_agnosia agnosia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visual aphasia is a kind of aphasia", "pln": ["(: cnet_isa_33a1c1c3f9 (IsA visual_aphasia aphasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visual area is a kind of cortical area", "pln": ["(: cnet_isa_3b7fb1e33c (IsA visual_area cortical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visual cell is a kind of somatic cell", "pln": ["(: cnet_isa_4a9f814c18 (IsA visual_cell somatic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "visual communication is a kind of communication", "pln": ["(: cnet_isa_49d34b40a8 (IsA visual_communication communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visual display unit is a kind of display", "pln": ["(: cnet_isa_5a54f09de5 (IsA visual_display_unit display) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visual field is a kind of visual percept", "pln": ["(: cnet_isa_4369bd507f (IsA visual_field visual_percept) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visual hallucination is a kind of hallucination", "pln": ["(: cnet_isa_b81c554e28 (IsA visual_hallucination hallucination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visual image is a kind of image", "pln": ["(: cnet_isa_a60989a7ef (IsA visual_image image) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visual impairment is a kind of disability", "pln": ["(: cnet_isa_19fa8d924d (IsA visual_impairment disability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "visual percept is a kind of percept", "pln": ["(: cnet_isa_1ab30e42a3 (IsA visual_percept percept) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visual perception is a kind of perception", "pln": ["(: cnet_isa_7b20a2588a (IsA visual_perception perception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visual property is a kind of property", "pln": ["(: cnet_isa_43cee21961 (IsA visual_property property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visual purple is a kind of photopigment", "pln": ["(: cnet_isa_5a62443c8b (IsA visual_purple photopigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visual range is a kind of visibility", "pln": ["(: cnet_isa_7f9c526c54 (IsA visual_range visibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visual signal is a kind of signal", "pln": ["(: cnet_isa_a3badbbc2b (IsA visual_signal signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visual space is a kind of visual perception", "pln": ["(: cnet_isa_53bdc771db (IsA visual_space visual_perception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visual system is a kind of sensory system", "pln": ["(: cnet_isa_b1cf77cc26 (IsA visual_system sensory_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visualizer is a kind of perceiver", "pln": ["(: cnet_isa_60fbebbcec (IsA visualizer perceiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "visually impaired person is a kind of person", "pln": ["(: cnet_isa_baec53ffb6 (IsA visually_impaired_person person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vitaceae is a kind of dicot family", "pln": ["(: cnet_isa_353daa0108 (IsA vitaceae dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vital capacity is a kind of capacity", "pln": ["(: cnet_isa_f33300612a (IsA vital_capacity capacity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vital capacity is a kind of diagnostic test", "pln": ["(: cnet_isa_0c1d24b9ea (IsA vital_capacity diagnostic_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vital organ is a kind of organ", "pln": ["(: cnet_isa_6eb79688ea (IsA vital_organ organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vital principle is a kind of causal agent", "pln": ["(: cnet_isa_89dae3f700 (IsA vital_principle causal_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vital sign is a kind of sign", "pln": ["(: cnet_isa_5f0812f7ea (IsA vital_sign sign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vital statistic is a kind of statistic", "pln": ["(: cnet_isa_3c8d80c387 (IsA vital_statistic statistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vitalism is a kind of philosophical doctrine", "pln": ["(: cnet_isa_951ad5fe08 (IsA vitalism philosophical_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vitalist is a kind of believer", "pln": ["(: cnet_isa_fda12c2da8 (IsA vitalist believer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vitality is a kind of energy", "pln": ["(: cnet_isa_493b7d217a (IsA vitality energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vitalization is a kind of physiological state", "pln": ["(: cnet_isa_7776569452 (IsA vitalization physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vitalness is a kind of essentiality", "pln": ["(: cnet_isa_5015041601 (IsA vitalness essentiality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vitamin is a kind of fat soluble vitamin", "pln": ["(: cnet_isa_c3023a7094 (IsA vitamin fat_soluble_vitamin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vitamin is a kind of nutriment", "pln": ["(: cnet_isa_076431283c (IsA vitamin nutriment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vitamin a1 is a kind of vitamin", "pln": ["(: cnet_isa_b6003ce126 (IsA vitamin_a1 vitamin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vitamin a2 is a kind of vitamin", "pln": ["(: cnet_isa_d02c03dc80 (IsA vitamin_a2 vitamin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vitamin b1 is a kind of b complex vitamin", "pln": ["(: cnet_isa_59cb2c2be0 (IsA vitamin_b1 b_complex_vitamin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vitamin b12 is a kind of b complex vitamin", "pln": ["(: cnet_isa_c1b47079c7 (IsA vitamin_b12 b_complex_vitamin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vitamin b2 is a kind of b complex vitamin", "pln": ["(: cnet_isa_4bcb56eb85 (IsA vitamin_b2 b_complex_vitamin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vitamin b6 is a kind of b complex vitamin", "pln": ["(: cnet_isa_a3cfb5d50e (IsA vitamin_b6 b_complex_vitamin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vitamin bc is a kind of b complex vitamin", "pln": ["(: cnet_isa_7e81609ce8 (IsA vitamin_bc b_complex_vitamin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vitamin c is a kind of antioxidant", "pln": ["(: cnet_isa_7dffaa04ee (IsA vitamin_c antioxidant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vitamin c is a kind of water soluble vitamin", "pln": ["(: cnet_isa_59f59df0f9 (IsA vitamin_c water_soluble_vitamin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vitamin d is a kind of fat soluble vitamin", "pln": ["(: cnet_isa_cb71f72c19 (IsA vitamin_d fat_soluble_vitamin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vitamin e is a kind of antioxidant", "pln": ["(: cnet_isa_abeabd3295 (IsA vitamin_e antioxidant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vitamin e is a kind of fat soluble vitamin", "pln": ["(: cnet_isa_d522ee78ed (IsA vitamin_e fat_soluble_vitamin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vitamin k is a kind of fat soluble vitamin", "pln": ["(: cnet_isa_30ac1f5f07 (IsA vitamin_k fat_soluble_vitamin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vitamin k1 is a kind of vitamin k", "pln": ["(: cnet_isa_a188bac993 (IsA vitamin_k1 vitamin_k) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vitamin k3 is a kind of vitamin k", "pln": ["(: cnet_isa_8e2f7e2d58 (IsA vitamin_k3 vitamin_k) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vitamin p is a kind of water soluble vitamin", "pln": ["(: cnet_isa_c3e8a9d3f2 (IsA vitamin_p water_soluble_vitamin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vitamin pill is a kind of dietary supplement", "pln": ["(: cnet_isa_0ff916a68b (IsA vitamin_pill dietary_supplement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vitamin pill is a kind of pill", "pln": ["(: cnet_isa_13f2232829 (IsA vitamin_pill pill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vitelline circulation is a kind of circulation", "pln": ["(: cnet_isa_cf7981075d (IsA vitelline_circulation circulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vithar is a kind of norse deity", "pln": ["(: cnet_isa_7a2cb5615e (IsA vithar norse_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vitiation is a kind of nullification", "pln": ["(: cnet_isa_440bf8e7f2 (IsA vitiation nullification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viticulture is a kind of culture", "pln": ["(: cnet_isa_6dfd2341fe (IsA viticulture culture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viticulturist is a kind of agriculturist", "pln": ["(: cnet_isa_81162ef213 (IsA viticulturist agriculturist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vitiligo is a kind of skin disease", "pln": ["(: cnet_isa_349f1a2a53 (IsA vitiligo skin_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vitis is a kind of dicot genus", "pln": ["(: cnet_isa_bd779d0eb5 (IsA vitis dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vitrectomy is a kind of eye operation", "pln": ["(: cnet_isa_70de310c03 (IsA vitrectomy eye_operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vitreous humor is a kind of liquid body substance", "pln": ["(: cnet_isa_b1cad915d7 (IsA vitreous_humor liquid_body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vitrification is a kind of natural process", "pln": ["(: cnet_isa_731318b084 (IsA vitrification natural_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vitrification is a kind of solid", "pln": ["(: cnet_isa_bf165b407f (IsA vitrification solid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vitriol is a kind of acid", "pln": ["(: cnet_isa_bf95c0fac1 (IsA vitriol acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vittaria is a kind of fern genus", "pln": ["(: cnet_isa_f9dec1ef89 (IsA vittaria fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vittariaceae is a kind of fern family", "pln": ["(: cnet_isa_89bedb128b (IsA vittariaceae fern_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vituperation is a kind of abuse", "pln": ["(: cnet_isa_e0bfac30ee (IsA vituperation abuse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vivacity is a kind of high spiritedness", "pln": ["(: cnet_isa_a49e370e64 (IsA vivacity high_spiritedness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vivarium is a kind of enclosure", "pln": ["(: cnet_isa_76fc962d15 (IsA vivarium enclosure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viverra is a kind of mammal genus", "pln": ["(: cnet_isa_f495bc4243 (IsA viverra mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viverricula is a kind of mammal genus", "pln": ["(: cnet_isa_acbf788d65 (IsA viverricula mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viverridae is a kind of mammal family", "pln": ["(: cnet_isa_c90cee0bdf (IsA viverridae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viverrine is a kind of carnivore", "pln": ["(: cnet_isa_d84c6e7168 (IsA viverrine carnivore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vivification is a kind of energizing", "pln": ["(: cnet_isa_eb96ab6834 (IsA vivification energizing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viviparous eelpout is a kind of eelpout", "pln": ["(: cnet_isa_5774a2f1a5 (IsA viviparous_eelpout eelpout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vivisection is a kind of operation", "pln": ["(: cnet_isa_332097c7c0 (IsA vivisection operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vivisectionist is a kind of biologist", "pln": ["(: cnet_isa_1a2a09b1db (IsA vivisectionist biologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vixen is a kind of fox", "pln": ["(: cnet_isa_09d44e7021 (IsA vixen fox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vixen is a kind of unpleasant woman", "pln": ["(: cnet_isa_dc94904d91 (IsA vixen unpleasant_woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vizier is a kind of official", "pln": ["(: cnet_isa_07c4020e9d (IsA vizier official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "viziership is a kind of position", "pln": ["(: cnet_isa_f05907366a (IsA viziership position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vizla is a kind of pointer", "pln": ["(: cnet_isa_6742c2e826 (IsA vizla pointer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vocable is a kind of word", "pln": ["(: cnet_isa_dda48a490e (IsA vocable word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vocabulary is a kind of frame of reference", "pln": ["(: cnet_isa_e3ae152599 (IsA vocabulary frame_of_reference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vocabulary is a kind of cognition", "pln": ["(: cnet_isa_86dd6f24be (IsA vocabulary cognition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vocabulary is a kind of wordbook", "pln": ["(: cnet_isa_daa48b4791 (IsA vocabulary wordbook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vocal cord is a kind of fold", "pln": ["(: cnet_isa_e6209fc3df (IsA vocal_cord fold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vocal music is a kind of music", "pln": ["(: cnet_isa_bb964286b1 (IsA vocal_music music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vocalist is a kind of musician", "pln": ["(: cnet_isa_289287729a (IsA vocalist musician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vocational program is a kind of educational program", "pln": ["(: cnet_isa_22c30095cd (IsA vocational_program educational_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vocational rehabilitation is a kind of rehabilitation", "pln": ["(: cnet_isa_7f7e85d37c (IsA vocational_rehabilitation rehabilitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vocational rehabilitation program is a kind of rehabilitation program", "pln": ["(: cnet_isa_a912e3efb2 (IsA vocational_rehabilitation_program rehabilitation_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vocational training is a kind of education", "pln": ["(: cnet_isa_4e852a7c76 (IsA vocational_training education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vocative is a kind of oblique", "pln": ["(: cnet_isa_24ab01e2a7 (IsA vocative oblique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vociferator is a kind of speaker", "pln": ["(: cnet_isa_4bcf3be0c9 (IsA vociferator speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vodka is a kind of alcohol", "pln": ["(: cnet_isa_d2e616bf68 (IsA vodka alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vodka is a kind of liquor", "pln": ["(: cnet_isa_629e8e0e8c (IsA vodka liquor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vodka martini is a kind of martini", "pln": ["(: cnet_isa_768d663910 (IsA vodka_martini martini) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vogue is a kind of taste", "pln": ["(: cnet_isa_101b93c3e4 (IsA vogue taste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voice is a kind of mean", "pln": ["(: cnet_isa_9a4dac1dac (IsA voice mean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voice is a kind of physical ability", "pln": ["(: cnet_isa_344272ee29 (IsA voice physical_ability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voice is a kind of sound", "pln": ["(: cnet_isa_1aba6bdf7d (IsA voice sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voice is a kind of communication", "pln": ["(: cnet_isa_020ed82351 (IsA voice communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voice is a kind of grammatical relation", "pln": ["(: cnet_isa_d96f3fa7f7 (IsA voice grammatical_relation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voice is a kind of singer", "pln": ["(: cnet_isa_a4c0584b23 (IsA voice singer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voice mail is a kind of telephone", "pln": ["(: cnet_isa_9c2d965882 (IsA voice_mail telephone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voice over is a kind of voice", "pln": ["(: cnet_isa_10a3eea927 (IsA voice_over voice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voice part is a kind of part", "pln": ["(: cnet_isa_41e1986961 (IsA voice_part part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voicelessness is a kind of powerlessness", "pln": ["(: cnet_isa_dcb1b53d02 (IsA voicelessness powerlessness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voiceprint is a kind of biometric identification", "pln": ["(: cnet_isa_8ecfa26726 (IsA voiceprint biometric_identification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voicer is a kind of skilled worker", "pln": ["(: cnet_isa_d20cc0c943 (IsA voicer skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voicer is a kind of speaker", "pln": ["(: cnet_isa_eed716c832 (IsA voicer speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voicing is a kind of adjustment", "pln": ["(: cnet_isa_ec127dd897 (IsA voicing adjustment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "void is a kind of space", "pln": ["(: cnet_isa_1e95e40b94 (IsA void space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voider is a kind of chain mail", "pln": ["(: cnet_isa_990a201b42 (IsA voider chain_mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voile is a kind of fabric", "pln": ["(: cnet_isa_977ebd73cf (IsA voile fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vol au vent is a kind of pastry", "pln": ["(: cnet_isa_45a0f8dd29 (IsA vol_au_vent pastry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volapuk is a kind of artificial language", "pln": ["(: cnet_isa_1cd1aaea41 (IsA volapuk artificial_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volatile is a kind of substance", "pln": ["(: cnet_isa_02e595a26d (IsA volatile substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volatile storage is a kind of memory", "pln": ["(: cnet_isa_31478e0391 (IsA volatile_storage memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volatility is a kind of chemical property", "pln": ["(: cnet_isa_a547202d08 (IsA volatility chemical_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "volatility is a kind of irresoluteness", "pln": ["(: cnet_isa_9786bd61d2 (IsA volatility irresoluteness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "volcanic crater is a kind of geological formation", "pln": ["(: cnet_isa_4a6f736959 (IsA volcanic_crater geological_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volcanic eruption is a kind of discharge", "pln": ["(: cnet_isa_57bed5776e (IsA volcanic_eruption discharge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volcanic glass is a kind of volcanic rock", "pln": ["(: cnet_isa_66a6cbc113 (IsA volcanic_glass volcanic_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volcanic rock is a kind of igneous rock", "pln": ["(: cnet_isa_7c3cb444f5 (IsA volcanic_rock igneous_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volcanism is a kind of geological phenomenon", "pln": ["(: cnet_isa_0bb82a4e7a (IsA volcanism geological_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "volcano is a kind of mountain", "pln": ["(: cnet_isa_f65a761458 (IsA volcano mountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volcanology is a kind of geophysic", "pln": ["(: cnet_isa_40b84079b6 (IsA volcanology geophysic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vole is a kind of wood rat", "pln": ["(: cnet_isa_5e4bb93983 (IsA vole wood_rat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volgaic is a kind of fennic", "pln": ["(: cnet_isa_4e8030d0bd (IsA volgaic fennic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volition is a kind of choice", "pln": ["(: cnet_isa_c01c675a00 (IsA volition choice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volition is a kind of faculty", "pln": ["(: cnet_isa_8a22f0cd27 (IsA volition faculty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volkswagen is a kind of car", "pln": ["(: cnet_isa_f3f67fbf57 (IsA volkswagen car) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volley is a kind of return", "pln": ["(: cnet_isa_4561fc15e6 (IsA volley return) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volleyball is a kind of sport", "pln": ["(: cnet_isa_8067e8f38c (IsA volleyball sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volleyball is a kind of court game", "pln": ["(: cnet_isa_1a0a8420ed (IsA volleyball court_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volleyball is a kind of ball", "pln": ["(: cnet_isa_377b1618de (IsA volleyball ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volleyball court is a kind of court", "pln": ["(: cnet_isa_fa117fb24a (IsA volleyball_court court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volleyball net is a kind of net", "pln": ["(: cnet_isa_6b5ed14791 (IsA volleyball_net net) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volleyball player is a kind of player", "pln": ["(: cnet_isa_4363fba827 (IsA volleyball_player player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volt is a kind of potential unit", "pln": ["(: cnet_isa_cc677db7b8 (IsA volt potential_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volt ampere is a kind of power unit", "pln": ["(: cnet_isa_536b171f53 (IsA volt_ampere power_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voltage is a kind of electrical pressure", "pln": ["(: cnet_isa_ce08b7dc42 (IsA voltage electrical_pressure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voltage is a kind of measure of electricity", "pln": ["(: cnet_isa_39a19fcb06 (IsA voltage measure_of_electricity) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voltage is a kind of electrical phenomenon", "pln": ["(: cnet_isa_514b735fc5 (IsA voltage electrical_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voltage drop is a kind of drop", "pln": ["(: cnet_isa_3d71287f47 (IsA voltage_drop drop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voltage regulator is a kind of transformer", "pln": ["(: cnet_isa_d690dba247 (IsA voltage_regulator transformer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "voltaic battery is a kind of battery", "pln": ["(: cnet_isa_68d63f040b (IsA voltaic_battery battery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voltaic cell is a kind of cell", "pln": ["(: cnet_isa_7e620f8f35 (IsA voltaic_cell cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voltaic pile is a kind of battery", "pln": ["(: cnet_isa_92845279c2 (IsA voltaic_pile battery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voltmeter is a kind of meter", "pln": ["(: cnet_isa_da23404563 (IsA voltmeter meter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "volume is a kind of sound property", "pln": ["(: cnet_isa_8a94405925 (IsA volume sound_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volume is a kind of publication", "pln": ["(: cnet_isa_a58f2f6c6b (IsA volume publication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volume is a kind of measure", "pln": ["(: cnet_isa_52b6fb02db (IsA volume measure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volume unit is a kind of unit of measurement", "pln": ["(: cnet_isa_ba86082eb9 (IsA volume_unit unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volumeter is a kind of meter", "pln": ["(: cnet_isa_aea61f7c15 (IsA volumeter meter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volumetric analysis is a kind of quantitative analysis", "pln": ["(: cnet_isa_abbebbab21 (IsA volumetric_analysis quantitative_analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voluntary is a kind of solo", "pln": ["(: cnet_isa_1d05abbcd8 (IsA voluntary solo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voluntary muscle is a kind of skeletal muscle", "pln": ["(: cnet_isa_571ddb89e3 (IsA voluntary_muscle skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volunteer is a kind of serviceman", "pln": ["(: cnet_isa_0f44d3700b (IsA volunteer serviceman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volunteer is a kind of american", "pln": ["(: cnet_isa_2e871fe6c5 (IsA volunteer american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volunteer is a kind of worker", "pln": ["(: cnet_isa_4bf18c4003 (IsA volunteer worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voluptuary is a kind of sensualist", "pln": ["(: cnet_isa_0842ea02f5 (IsA voluptuary sensualist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "volution is a kind of turning", "pln": ["(: cnet_isa_ad801f55f0 (IsA volution turning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volva is a kind of plant part", "pln": ["(: cnet_isa_ba81201689 (IsA volva plant_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "volvaria is a kind of fungus genus", "pln": ["(: cnet_isa_2253f39eb9 (IsA volvaria fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "volvaria bombycina is a kind of fungus", "pln": ["(: cnet_isa_850c5ff1b0 (IsA volvaria_bombycina fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volvariaceae is a kind of fungus family", "pln": ["(: cnet_isa_af3b87d8fc (IsA volvariaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volvariella is a kind of fungus genus", "pln": ["(: cnet_isa_eff2cf1bd0 (IsA volvariella fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volvariella bombycina is a kind of agaric", "pln": ["(: cnet_isa_f6b4091ba3 (IsA volvariella_bombycina agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volvo is a kind of car", "pln": ["(: cnet_isa_1c25a584d7 (IsA volvo car) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volvocaceae is a kind of protoctist family", "pln": ["(: cnet_isa_2fb1da4519 (IsA volvocaceae protoctist_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volvocale is a kind of protoctist order", "pln": ["(: cnet_isa_e3b9aab9b6 (IsA volvocale protoctist_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volvox is a kind of protoctist genus", "pln": ["(: cnet_isa_25617beaff (IsA volvox protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "volvulus is a kind of pathology", "pln": ["(: cnet_isa_cc6e44f923 (IsA volvulus pathology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vombatidae is a kind of mammal family", "pln": ["(: cnet_isa_d46728c811 (IsA vombatidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vomer is a kind of bone", "pln": ["(: cnet_isa_3d8543b958 (IsA vomer bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vomit is a kind of expulsion", "pln": ["(: cnet_isa_e89d5fda45 (IsA vomit expulsion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vomit is a kind of reflex", "pln": ["(: cnet_isa_f934d96d4b (IsA vomit reflex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vomit is a kind of body waste", "pln": ["(: cnet_isa_52f854ed53 (IsA vomit body_waste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vomiter is a kind of sick person", "pln": ["(: cnet_isa_79f0c3da91 (IsA vomiter sick_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vomitory is a kind of entrance", "pln": ["(: cnet_isa_7aafa0b37d (IsA vomitory entrance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "von neumann machine is a kind of digital computer", "pln": ["(: cnet_isa_a69edbf9d0 (IsA von_neumann_machine digital_computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "von willebrand s disease is a kind of hemophilia", "pln": ["(: cnet_isa_c9ea28ec97 (IsA von_willebrand_s_disease hemophilia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voodoo is a kind of cult", "pln": ["(: cnet_isa_09b2c2fc3f (IsA voodoo cult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vortex vein is a kind of vein", "pln": ["(: cnet_isa_dadd2de438 (IsA vortex_vein vein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vorticella is a kind of ciliate", "pln": ["(: cnet_isa_85173a5173 (IsA vorticella ciliate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "votary is a kind of disciple", "pln": ["(: cnet_isa_a349f41605 (IsA votary disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "votary is a kind of priest", "pln": ["(: cnet_isa_36de86862e (IsA votary priest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "votary is a kind of religious", "pln": ["(: cnet_isa_9f4e199dee (IsA votary religious) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vote is a kind of choice", "pln": ["(: cnet_isa_01b2c24c53 (IsA vote choice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vote is a kind of group action", "pln": ["(: cnet_isa_7845b0525e (IsA vote group_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vote is a kind of numerical quantity", "pln": ["(: cnet_isa_6feaa7a636 (IsA vote numerical_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vote is a kind of body", "pln": ["(: cnet_isa_76346d151f (IsA vote body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vote of confidence is a kind of encouragement", "pln": ["(: cnet_isa_814d864f08 (IsA vote_of_confidence encouragement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voter is a kind of citizen", "pln": ["(: cnet_isa_487a176b56 (IsA voter citizen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voting age is a kind of age", "pln": ["(: cnet_isa_d299c47da4 (IsA voting_age age) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "voting booth is a kind of booth", "pln": ["(: cnet_isa_07599a4ef7 (IsA voting_booth booth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "voting machine is a kind of mechanical device", "pln": ["(: cnet_isa_d6fc2f85d4 (IsA voting_machine mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voting precinct is a kind of precinct", "pln": ["(: cnet_isa_cfe1a76f7f (IsA voting_precinct precinct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voting record of politician is a kind of matter of public interest", "pln": ["(: cnet_isa_b7b14cd39b (IsA voting_record_of_politician matter_of_public_interest) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voting right is a kind of right", "pln": ["(: cnet_isa_0df232ac68 (IsA voting_right right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "voting stock is a kind of stock", "pln": ["(: cnet_isa_734ec80891 (IsA voting_stock stock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voting system is a kind of legal system", "pln": ["(: cnet_isa_8f49b53a9f (IsA voting_system legal_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voting trust is a kind of trust", "pln": ["(: cnet_isa_c9bf82d2af (IsA voting_trust trust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "votyak is a kind of russian", "pln": ["(: cnet_isa_cb98222b2c (IsA votyak russian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vouchee is a kind of party", "pln": ["(: cnet_isa_0b3ab8e059 (IsA vouchee party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voucher is a kind of document", "pln": ["(: cnet_isa_018be55af6 (IsA voucher document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voucher is a kind of supporter", "pln": ["(: cnet_isa_bf279a8796 (IsA voucher supporter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vouge is a kind of pike", "pln": ["(: cnet_isa_63fd57a6f1 (IsA vouge pike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voussoir is a kind of building block", "pln": ["(: cnet_isa_1cd29023fd (IsA voussoir building_block) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vouvray is a kind of white wine", "pln": ["(: cnet_isa_c73baf4d21 (IsA vouvray white_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vow is a kind of assurance", "pln": ["(: cnet_isa_14b33f8ce0 (IsA vow assurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vowel is a kind of letter", "pln": ["(: cnet_isa_8c39f98322 (IsA vowel letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vowel is a kind of phone", "pln": ["(: cnet_isa_a2f94d5ea4 (IsA vowel phone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vowel point is a kind of vowel", "pln": ["(: cnet_isa_e7404f5604 (IsA vowel_point vowel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vowel system is a kind of phonemic system", "pln": ["(: cnet_isa_71ecb8e695 (IsA vowel_system phonemic_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vower is a kind of promiser", "pln": ["(: cnet_isa_8b88e4a659 (IsA vower promiser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vox angelica is a kind of organ stop", "pln": ["(: cnet_isa_bd0cd5dd14 (IsA vox_angelica organ_stop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vox humana is a kind of reed stop", "pln": ["(: cnet_isa_3704a779cf (IsA vox_humana reed_stop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voyage is a kind of journey", "pln": ["(: cnet_isa_97d702b0bd (IsA voyage journey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voyager is a kind of traveler", "pln": ["(: cnet_isa_4df3723d27 (IsA voyager traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voyeur is a kind of spectator", "pln": ["(: cnet_isa_0c18a36f6d (IsA voyeur spectator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "voyeurism is a kind of paraphilia", "pln": ["(: cnet_isa_775664f982 (IsA voyeurism paraphilia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vroom is a kind of sound", "pln": ["(: cnet_isa_717ad123da (IsA vroom sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vulcanization is a kind of processing", "pln": ["(: cnet_isa_a6234561fb (IsA vulcanization processing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vulcanizer is a kind of skilled worker", "pln": ["(: cnet_isa_f24b135df2 (IsA vulcanizer skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vulgar latin is a kind of low latin", "pln": ["(: cnet_isa_b5d36681e9 (IsA vulgar_latin low_latin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vulgarian is a kind of unpleasant person", "pln": ["(: cnet_isa_34d20f1f64 (IsA vulgarian unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vulgarization is a kind of degradation", "pln": ["(: cnet_isa_705d600414 (IsA vulgarization degradation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vulgarizer is a kind of debaser", "pln": ["(: cnet_isa_a40c5445ca (IsA vulgarizer debaser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vulnerability is a kind of weakness", "pln": ["(: cnet_isa_ce29a752f7 (IsA vulnerability weakness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vulnerability is a kind of danger", "pln": ["(: cnet_isa_ce9688e235 (IsA vulnerability danger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vulpe is a kind of mammal genus", "pln": ["(: cnet_isa_49403088b3 (IsA vulpe mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vultur is a kind of bird genus", "pln": ["(: cnet_isa_74e72272aa (IsA vultur bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vulture is a kind of bird", "pln": ["(: cnet_isa_eed14d56c9 (IsA vulture bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vulture is a kind of bird of prey", "pln": ["(: cnet_isa_d07eebf9d0 (IsA vulture bird_of_prey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vulva is a kind of female genitalia", "pln": ["(: cnet_isa_69c7d51372 (IsA vulva female_genitalia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vulvectomy is a kind of ablation", "pln": ["(: cnet_isa_a638943a54 (IsA vulvectomy ablation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vulvitis is a kind of inflammation", "pln": ["(: cnet_isa_db72262a01 (IsA vulvitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "vulvovaginitis is a kind of inflammation", "pln": ["(: cnet_isa_861da08104 (IsA vulvovaginitis inflammation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "vx gas is a kind of nerve gas", "pln": ["(: cnet_isa_b4a99daefd (IsA vx_gas nerve_gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "w is a kind of letter", "pln": ["(: cnet_isa_34d6966d43 (IsA w letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wac is a kind of soldier", "pln": ["(: cnet_isa_4e5af34bb5 (IsA wac soldier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wac is a kind of woman", "pln": ["(: cnet_isa_5e586072e3 (IsA wac woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "waders is a kind of hip boot", "pln": ["(: cnet_isa_b7e34f789e (IsA waders hip_boot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wad is a kind of material", "pln": ["(: cnet_isa_819840781c (IsA wad material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waddle is a kind of gait", "pln": ["(: cnet_isa_eb9720c655 (IsA waddle gait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waddler is a kind of pedestrian", "pln": ["(: cnet_isa_92a3dd3c93 (IsA waddler pedestrian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wader is a kind of hip boot", "pln": ["(: cnet_isa_014dea9c02 (IsA wader hip_boot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wadi is a kind of gully", "pln": ["(: cnet_isa_4597544e12 (IsA wadi gully) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wading is a kind of walk", "pln": ["(: cnet_isa_456c77390f (IsA wading walk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wading bird is a kind of aquatic bird", "pln": ["(: cnet_isa_08ebb200a4 (IsA wading_bird aquatic_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wading pool is a kind of pool", "pln": ["(: cnet_isa_f1025cd2c1 (IsA wading_pool pool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wafer is a kind of bread", "pln": ["(: cnet_isa_3900cd259c (IsA wafer bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wafer is a kind of cookie", "pln": ["(: cnet_isa_b6417a43ad (IsA wafer cookie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wafer is a kind of paste", "pln": ["(: cnet_isa_d1c785bff9 (IsA wafer paste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waffle is a kind of cake", "pln": ["(: cnet_isa_0abed7d50b (IsA waffle cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waffle iron is a kind of kitchen appliance", "pln": ["(: cnet_isa_25420ee800 (IsA waffle_iron kitchen_appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waffler is a kind of communicator", "pln": ["(: cnet_isa_904c9d7fca (IsA waffler communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wag is a kind of agitation", "pln": ["(: cnet_isa_cefcd8f164 (IsA wag agitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wag is a kind of humorist", "pln": ["(: cnet_isa_02b7a569e8 (IsA wag humorist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wage is a kind of regular payment", "pln": ["(: cnet_isa_32bfed7462 (IsA wage regular_payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wage claim is a kind of demand", "pln": ["(: cnet_isa_2add29e71b (IsA wage_claim demand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wage concession is a kind of concession", "pln": ["(: cnet_isa_7d14efc718 (IsA wage_concession concession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wage floor is a kind of floor", "pln": ["(: cnet_isa_f7f21c861c (IsA wage_floor floor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wage freeze is a kind of freeze", "pln": ["(: cnet_isa_3e9cc0a83c (IsA wage_freeze freeze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wage scale is a kind of scale", "pln": ["(: cnet_isa_be9903bafc (IsA wage_scale scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wage setter is a kind of economic condition", "pln": ["(: cnet_isa_d224451fa3 (IsA wage_setter economic_condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wage is a kind of consequence", "pln": ["(: cnet_isa_5d4dd036c7 (IsA wage consequence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waggery is a kind of fun", "pln": ["(: cnet_isa_d928a0351e (IsA waggery fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wagner is a kind of music", "pln": ["(: cnet_isa_4133a24b89 (IsA wagner music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wagnerian is a kind of follower", "pln": ["(: cnet_isa_572177c508 (IsA wagnerian follower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wagon is a kind of wheeled vehicle", "pln": ["(: cnet_isa_08e1964a2f (IsA wagon wheeled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wagon tire is a kind of tire", "pln": ["(: cnet_isa_216135f5ba (IsA wagon_tire tire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wagon wheel is a kind of wheel", "pln": ["(: cnet_isa_99af78bb40 (IsA wagon_wheel wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wagoner is a kind of driver", "pln": ["(: cnet_isa_6fe03e3112 (IsA wagoner driver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wagonwright is a kind of wright", "pln": ["(: cnet_isa_8d194b7085 (IsA wagonwright wright) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wagtail is a kind of oscine", "pln": ["(: cnet_isa_c23fbb013d (IsA wagtail oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wahabi is a kind of moslem", "pln": ["(: cnet_isa_d6c7d4a970 (IsA wahabi moslem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wahabism is a kind of radical form of islam", "pln": ["(: cnet_isa_c5783663df (IsA wahabism radical_form_of_islam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wahhabism is a kind of islam", "pln": ["(: cnet_isa_a95dd9af05 (IsA wahhabism islam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wahoo is a kind of mackerel", "pln": ["(: cnet_isa_d23abcc504 (IsA wahoo mackerel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wahoo is a kind of shrub", "pln": ["(: cnet_isa_6a74ca3608 (IsA wahoo shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waif is a kind of child", "pln": ["(: cnet_isa_4d2d7af671 (IsA waif child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wailer is a kind of mourner", "pln": ["(: cnet_isa_0c04b4b107 (IsA wailer mourner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wailer is a kind of speaker", "pln": ["(: cnet_isa_fc3d9e07b2 (IsA wailer speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wailing is a kind of crying", "pln": ["(: cnet_isa_75f9c45685 (IsA wailing crying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wain is a kind of wagon", "pln": ["(: cnet_isa_73f32c1bb1 (IsA wain wagon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wainscot is a kind of panel", "pln": ["(: cnet_isa_fd5fa5c219 (IsA wainscot panel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wainscoting is a kind of wall", "pln": ["(: cnet_isa_aab114a22e (IsA wainscoting wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "waist is a kind of area", "pln": ["(: cnet_isa_62c0308a2f (IsA waist area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waist pack is a kind of pouch", "pln": ["(: cnet_isa_c4a9dd0a86 (IsA waist_pack pouch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wait is a kind of inactivity", "pln": ["(: cnet_isa_757fb8bd18 (IsA wait inactivity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waiter is a kind of dining room attendant", "pln": ["(: cnet_isa_138b8a8a3e (IsA waiter dining_room_attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waiter is a kind of person", "pln": ["(: cnet_isa_4665c0edd6 (IsA waiter person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waiting game is a kind of scheme", "pln": ["(: cnet_isa_f09d718d01 (IsA waiting_game scheme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waiting list is a kind of roll", "pln": ["(: cnet_isa_f8e7d3793a (IsA waiting_list roll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waitress is a kind of waiter", "pln": ["(: cnet_isa_65f76dbe0c (IsA waitress waiter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wakashan is a kind of mosan", "pln": ["(: cnet_isa_32ef50910b (IsA wakashan mosan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wakashan is a kind of native american", "pln": ["(: cnet_isa_5e67e4004f (IsA wakashan native_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wake is a kind of vigil", "pln": ["(: cnet_isa_062877cdef (IsA wake vigil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wake is a kind of wave", "pln": ["(: cnet_isa_167fe3918b (IsA wake wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wake board is a kind of board", "pln": ["(: cnet_isa_a3c01be3f4 (IsA wake_board board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wake up call is a kind of call", "pln": ["(: cnet_isa_65e9256995 (IsA wake_up_call call) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wake up call is a kind of warning", "pln": ["(: cnet_isa_b4ca813b5e (IsA wake_up_call warning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wakefulness is a kind of physiological state", "pln": ["(: cnet_isa_3b44b1cff4 (IsA wakefulness physiological_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wakefulness is a kind of waking", "pln": ["(: cnet_isa_d6cd1543d5 (IsA wakefulness waking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wakefulness is a kind of temporary state", "pln": ["(: cnet_isa_917cd7f8ba (IsA wakefulness temporary_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waker is a kind of attendant", "pln": ["(: cnet_isa_996a715971 (IsA waker attendant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waker is a kind of person", "pln": ["(: cnet_isa_274425b366 (IsA waker person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waking is a kind of consciousness", "pln": ["(: cnet_isa_212a8b74f4 (IsA waking consciousness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walapai is a kind of yuman", "pln": ["(: cnet_isa_e6bd458026 (IsA walapai yuman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "walbiri is a kind of australian", "pln": ["(: cnet_isa_35c38b156c (IsA walbiri australian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waldens is a kind of sect", "pln": ["(: cnet_isa_39812d09fd (IsA waldens sect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "waldorf salad is a kind of fruit salad", "pln": ["(: cnet_isa_6e02c025bf (IsA waldorf_salad fruit_salad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wale is a kind of board", "pln": ["(: cnet_isa_19812e357f (IsA wale board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wale is a kind of injury", "pln": ["(: cnet_isa_7389e342c5 (IsA wale injury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "walk is a kind of gait", "pln": ["(: cnet_isa_04c9f6ccd5 (IsA walk gait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walk is a kind of locomotion", "pln": ["(: cnet_isa_dafce14bdc (IsA walk locomotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walk is a kind of travel", "pln": ["(: cnet_isa_c0eddc2894 (IsA walk travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walk is a kind of path", "pln": ["(: cnet_isa_052302c623 (IsA walk path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walk is a kind of carriage", "pln": ["(: cnet_isa_be8fac6c51 (IsA walk carriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walk in is a kind of room", "pln": ["(: cnet_isa_9a52f04d30 (IsA walk_in room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walk in is a kind of victory", "pln": ["(: cnet_isa_ff48d570f3 (IsA walk_in victory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walk in is a kind of deserter", "pln": ["(: cnet_isa_4e3e4dab31 (IsA walk_in deserter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walk in is a kind of person", "pln": ["(: cnet_isa_5af0e72cf6 (IsA walk_in person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walk in is a kind of secret agent", "pln": ["(: cnet_isa_798efca5dd (IsA walk_in secret_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walk of life is a kind of career", "pln": ["(: cnet_isa_09f9836092 (IsA walk_of_life career) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walk on is a kind of actor", "pln": ["(: cnet_isa_406f6ea9b3 (IsA walk_on actor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walk through is a kind of rehearsal", "pln": ["(: cnet_isa_dd4bc21c23 (IsA walk_through rehearsal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walk through is a kind of walk", "pln": ["(: cnet_isa_bcf7d1bf78 (IsA walk_through walk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walk through is a kind of passageway", "pln": ["(: cnet_isa_29730a44f8 (IsA walk_through passageway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "walk through is a kind of explanation", "pln": ["(: cnet_isa_afc6bd4977 (IsA walk_through explanation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walk up is a kind of apartment building", "pln": ["(: cnet_isa_6c0f93b4eb (IsA walk_up apartment_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walk up apartment is a kind of apartment", "pln": ["(: cnet_isa_8516d29c3d (IsA walk_up_apartment apartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walkabout is a kind of amble", "pln": ["(: cnet_isa_d3c0e4b408 (IsA walkabout amble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walkabout is a kind of tour", "pln": ["(: cnet_isa_a6ab548f89 (IsA walkabout tour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walkabout is a kind of walk", "pln": ["(: cnet_isa_e5ca40150c (IsA walkabout walk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walker is a kind of who walk", "pln": ["(: cnet_isa_f02196b93f (IsA walker who_walk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walker is a kind of framework", "pln": ["(: cnet_isa_c342f76062 (IsA walker framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walker is a kind of shoe", "pln": ["(: cnet_isa_56b8ccda53 (IsA walker shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walker hound is a kind of foxhound", "pln": ["(: cnet_isa_747829d361 (IsA walker_hound foxhound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walkie talkie is a kind of radio link", "pln": ["(: cnet_isa_a5dee0c8d2 (IsA walkie_talkie radio_link) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walking is a kind of aerobic activity", "pln": ["(: cnet_isa_605c4a1b99 (IsA walking aerobic_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walking is a kind of exercise", "pln": ["(: cnet_isa_0113555bdd (IsA walking exercise) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walking is a kind of form of exercise", "pln": ["(: cnet_isa_c4463f26e1 (IsA walking form_of_exercise) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walking is a kind of good exercise", "pln": ["(: cnet_isa_db73243ccb (IsA walking good_exercise) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walking delegate is a kind of union representative", "pln": ["(: cnet_isa_d963fa060a (IsA walking_delegate union_representative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walking fern is a kind of spleenwort", "pln": ["(: cnet_isa_e6e7a51f39 (IsA walking_fern spleenwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walking leaf is a kind of phasmid", "pln": ["(: cnet_isa_b6b49c75c0 (IsA walking_leaf phasmid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walking paper is a kind of dismissal", "pln": ["(: cnet_isa_934285e3b7 (IsA walking_paper dismissal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walking shoe is a kind of shoe", "pln": ["(: cnet_isa_783299d544 (IsA walking_shoe shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "walking stick is a kind of phasmid", "pln": ["(: cnet_isa_5270fc4ce8 (IsA walking_stick phasmid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walking stick is a kind of stick", "pln": ["(: cnet_isa_86da50371d (IsA walking_stick stick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walkout is a kind of protest", "pln": ["(: cnet_isa_f8c7ca3f52 (IsA walkout protest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walkout is a kind of strike", "pln": ["(: cnet_isa_0eae7af13d (IsA walkout strike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walkover is a kind of acrobatic stunt", "pln": ["(: cnet_isa_21d45dd354 (IsA walkover acrobatic_stunt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wall is a kind of part of building", "pln": ["(: cnet_isa_3d56c9acd6 (IsA wall part_of_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wall is a kind of stratum", "pln": ["(: cnet_isa_1e1e1e97b2 (IsA wall stratum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wall is a kind of fence", "pln": ["(: cnet_isa_42a3ddb0f3 (IsA wall fence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wall is a kind of layer", "pln": ["(: cnet_isa_5fa004bcd7 (IsA wall layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wall is a kind of partition", "pln": ["(: cnet_isa_c39402fadb (IsA wall partition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wall is a kind of geological formation", "pln": ["(: cnet_isa_71fea71822 (IsA wall geological_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wall is a kind of object", "pln": ["(: cnet_isa_65717fed68 (IsA wall object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wall is a kind of difficulty", "pln": ["(: cnet_isa_5f9c05c798 (IsA wall difficulty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wall clock is a kind of clock", "pln": ["(: cnet_isa_739e56ff59 (IsA wall_clock clock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wall creeper is a kind of creeper", "pln": ["(: cnet_isa_e7ae21bf76 (IsA wall_creeper creeper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wall germander is a kind of germander", "pln": ["(: cnet_isa_455604ebf4 (IsA wall_germander germander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wall panel is a kind of paneling", "pln": ["(: cnet_isa_4f34227044 (IsA wall_panel paneling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wall pepper is a kind of stonecrop", "pln": ["(: cnet_isa_2eb85099b8 (IsA wall_pepper stonecrop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wall plate is a kind of plate", "pln": ["(: cnet_isa_92c0a6cb38 (IsA wall_plate plate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wall rock is a kind of rock", "pln": ["(: cnet_isa_da2097a34a (IsA wall_rock rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wall rocket is a kind of herb", "pln": ["(: cnet_isa_fc62d99def (IsA wall_rocket herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wall rue is a kind of spleenwort", "pln": ["(: cnet_isa_64eb81ce28 (IsA wall_rue spleenwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wall socket is a kind of receptacle", "pln": ["(: cnet_isa_1d84210caa (IsA wall_socket receptacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wall street is a kind of market", "pln": ["(: cnet_isa_bbc3baa0db (IsA wall_street market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wall tent is a kind of canva tent", "pln": ["(: cnet_isa_4aadf6d715 (IsA wall_tent canva_tent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wall unit is a kind of furniture", "pln": ["(: cnet_isa_2b9b85eac5 (IsA wall_unit furniture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wallaby is a kind of kangaroo", "pln": ["(: cnet_isa_69ee6f5e39 (IsA wallaby kangaroo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wallah is a kind of worker", "pln": ["(: cnet_isa_f721504923 (IsA wallah worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wallboard is a kind of board", "pln": ["(: cnet_isa_4b5bd013cc (IsA wallboard board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wallet is a kind of case", "pln": ["(: cnet_isa_a8d7e59923 (IsA wallet case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walleye is a kind of pike perch", "pln": ["(: cnet_isa_1c7e64e97b (IsA walleye pike_perch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walleye is a kind of strabismus", "pln": ["(: cnet_isa_87018074b4 (IsA walleye strabismus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wallflower is a kind of shy person", "pln": ["(: cnet_isa_f141d0ff8d (IsA wallflower shy_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wallflower is a kind of flower", "pln": ["(: cnet_isa_7416f64cc9 (IsA wallflower flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walloon is a kind of french", "pln": ["(: cnet_isa_34f6619f76 (IsA walloon french) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walloon is a kind of belgian", "pln": ["(: cnet_isa_ef22ace7eb (IsA walloon belgian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walloon is a kind of ethnic group", "pln": ["(: cnet_isa_5640e1bbcb (IsA walloon ethnic_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wallop is a kind of blow", "pln": ["(: cnet_isa_59d72101c7 (IsA wallop blow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walloper is a kind of hitter", "pln": ["(: cnet_isa_1bec5f641b (IsA walloper hitter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walloper is a kind of winner", "pln": ["(: cnet_isa_32ab68340c (IsA walloper winner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wallow is a kind of axial rotation", "pln": ["(: cnet_isa_cade14efcb (IsA wallow axial_rotation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wallow is a kind of mud puddle", "pln": ["(: cnet_isa_36ff6ccae6 (IsA wallow mud_puddle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wallpaper is a kind of paper", "pln": ["(: cnet_isa_93ef4c1b0e (IsA wallpaper paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wallpaperer is a kind of skilled worker", "pln": ["(: cnet_isa_8b47320b8c (IsA wallpaperer skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wally is a kind of fool", "pln": ["(: cnet_isa_07e67193af (IsA wally fool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walnut is a kind of specy", "pln": ["(: cnet_isa_3b9aaee3d1 (IsA walnut specy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walnut is a kind of edible nut", "pln": ["(: cnet_isa_e31d6bd515 (IsA walnut edible_nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walnut is a kind of nut tree", "pln": ["(: cnet_isa_5558935418 (IsA walnut nut_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walnut is a kind of wood", "pln": ["(: cnet_isa_6bc4af86f0 (IsA walnut wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walnut blight is a kind of blight", "pln": ["(: cnet_isa_86960bd2d1 (IsA walnut_blight blight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walnut oil is a kind of vegetable oil", "pln": ["(: cnet_isa_88f5d0fda9 (IsA walnut_oil vegetable_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walpurgis night is a kind of day", "pln": ["(: cnet_isa_f734cb4ae6 (IsA walpurgis_night day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walrus is a kind of pinniped mammal", "pln": ["(: cnet_isa_74db3c4a57 (IsA walrus pinniped_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walrus mustache is a kind of mustache", "pln": ["(: cnet_isa_528d1f3345 (IsA walrus_mustache mustache) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "walter cronkite is a kind of broadcast journalist", "pln": ["(: cnet_isa_c6973181fe (IsA walter_cronkite broadcast_journalist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waltz is a kind of ballroom dancing", "pln": ["(: cnet_isa_515f239335 (IsA waltz ballroom_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waltz is a kind of dance music", "pln": ["(: cnet_isa_7f0570bb9f (IsA waltz dance_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waltzer is a kind of dancer", "pln": ["(: cnet_isa_9f68a7e0c1 (IsA waltzer dancer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wampanoag is a kind of algonquin", "pln": ["(: cnet_isa_dd1a163a49 (IsA wampanoag algonquin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wampum is a kind of bead", "pln": ["(: cnet_isa_8e9b50c210 (IsA wampum bead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wand is a kind of rod", "pln": ["(: cnet_isa_a2e4d626e0 (IsA wand rod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wand is a kind of branchlet", "pln": ["(: cnet_isa_ce0a21ed98 (IsA wand branchlet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wanderer is a kind of traveler", "pln": ["(: cnet_isa_b2a7d5487c (IsA wanderer traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wandering is a kind of travel", "pln": ["(: cnet_isa_74e510b022 (IsA wandering travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wandering albatross is a kind of albatross", "pln": ["(: cnet_isa_84896d40aa (IsA wandering_albatross albatross) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wandering jew is a kind of israelite", "pln": ["(: cnet_isa_0d590eb803 (IsA wandering_jew israelite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wanderlust is a kind of urge", "pln": ["(: cnet_isa_e130a464e2 (IsA wanderlust urge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wandflower is a kind of flower", "pln": ["(: cnet_isa_b6c19c3018 (IsA wandflower flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wangle is a kind of contrivance", "pln": ["(: cnet_isa_b64e99dfc9 (IsA wangle contrivance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "waning is a kind of decrease", "pln": ["(: cnet_isa_73d8511469 (IsA waning decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wankel engine is a kind of rotary engine", "pln": ["(: cnet_isa_e5f1352af6 (IsA wankel_engine rotary_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "want ad is a kind of classified ad", "pln": ["(: cnet_isa_30261ea9f1 (IsA want_ad classified_ad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wanted notice is a kind of announcement", "pln": ["(: cnet_isa_448748bf81 (IsA wanted_notice announcement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wanter is a kind of person", "pln": ["(: cnet_isa_42f30da5f9 (IsA wanter person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wanton is a kind of sensualist", "pln": ["(: cnet_isa_0e19a5e807 (IsA wanton sensualist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wapiti is a kind of deer", "pln": ["(: cnet_isa_466cc85809 (IsA wapiti deer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "war is a kind of bad thing", "pln": ["(: cnet_isa_9fbb820f36 (IsA war bad_thing) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "war is a kind of common event", "pln": ["(: cnet_isa_5a4c644815 (IsA war common_event) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "war is a kind of hell", "pln": ["(: cnet_isa_491ba05742 (IsA war hell) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "war is a kind of campaign", "pln": ["(: cnet_isa_e230a0c932 (IsA war campaign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "war is a kind of conflict", "pln": ["(: cnet_isa_e1602db1d0 (IsA war conflict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "war is a kind of military action", "pln": ["(: cnet_isa_86f71e8f90 (IsA war military_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "war is a kind of hostility", "pln": ["(: cnet_isa_b81848a53a (IsA war hostility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "war and violence is a kind of bad thing", "pln": ["(: cnet_isa_6a971eb1ad (IsA war_and_violence bad_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "war baby is a kind of baby", "pln": ["(: cnet_isa_a2e1a6fbc4 (IsA war_baby baby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "war bride is a kind of bride", "pln": ["(: cnet_isa_88826ed29a (IsA war_bride bride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "war chest is a kind of fund", "pln": ["(: cnet_isa_be901ed6e7 (IsA war_chest fund) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "war cloud is a kind of augury", "pln": ["(: cnet_isa_18350800be (IsA war_cloud augury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "war correspondent is a kind of correspondent", "pln": ["(: cnet_isa_fcab043873 (IsA war_correspondent correspondent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "war crime is a kind of crime", "pln": ["(: cnet_isa_3a70f9dd49 (IsA war_crime crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "war criminal is a kind of wrongdoer", "pln": ["(: cnet_isa_a9acba1a1d (IsA war_criminal wrongdoer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "war cry is a kind of cry", "pln": ["(: cnet_isa_3411b8837c (IsA war_cry cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "war cry is a kind of motto", "pln": ["(: cnet_isa_b23e9a4885 (IsA war_cry motto) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "war dance is a kind of ritual dancing", "pln": ["(: cnet_isa_f044d1ff69 (IsA war_dance ritual_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "war department is a kind of executive department", "pln": ["(: cnet_isa_6b1a4f4cc9 (IsA war_department executive_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "war game is a kind of simulation", "pln": ["(: cnet_isa_fc2876983f (IsA war_game simulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "war god is a kind of deity", "pln": ["(: cnet_isa_da30fca807 (IsA war_god deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "war paint is a kind of adornment", "pln": ["(: cnet_isa_d976d99a26 (IsA war_paint adornment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "war paint is a kind of array", "pln": ["(: cnet_isa_bccb3b8b7b (IsA war_paint array) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "war party is a kind of party", "pln": ["(: cnet_isa_1f4fde67a6 (IsA war_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "war power is a kind of office", "pln": ["(: cnet_isa_44c0f29e6a (IsA war_power office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "war room is a kind of room", "pln": ["(: cnet_isa_d42e52e45b (IsA war_room room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "war widow is a kind of widow", "pln": ["(: cnet_isa_7236745070 (IsA war_widow widow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "war zone is a kind of place", "pln": ["(: cnet_isa_6c2e758a07 (IsA war_zone place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "war zone is a kind of combat zone", "pln": ["(: cnet_isa_13c40ee8e4 (IsA war_zone combat_zone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "waratah is a kind of shrub", "pln": ["(: cnet_isa_bdbce591d8 (IsA waratah shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warble is a kind of animal disease", "pln": ["(: cnet_isa_7e9add994d (IsA warble animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warble fly is a kind of gadfly", "pln": ["(: cnet_isa_0322984e20 (IsA warble_fly gadfly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warbler is a kind of oscine", "pln": ["(: cnet_isa_ef2e66100a (IsA warbler oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warbler is a kind of singer", "pln": ["(: cnet_isa_93177a28f9 (IsA warbler singer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ward is a kind of block", "pln": ["(: cnet_isa_dbad63befd (IsA ward block) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ward is a kind of administrative district", "pln": ["(: cnet_isa_69221804eb (IsA ward administrative_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ward is a kind of person", "pln": ["(: cnet_isa_6213ff3bcf (IsA ward person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warden is a kind of lawman", "pln": ["(: cnet_isa_219e01bf9b (IsA warden lawman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wardenship is a kind of position", "pln": ["(: cnet_isa_defcd303c6 (IsA wardenship position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wardership is a kind of position", "pln": ["(: cnet_isa_b6fa74d87c (IsA wardership position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wardress is a kind of warden", "pln": ["(: cnet_isa_044c125bbb (IsA wardress warden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "wardrobe is a kind of container for clothes", "pln": ["(: cnet_isa_08849862f1 (IsA wardrobe container_for_clothes) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "wardroom is a kind of military quarters", "pln": ["(: cnet_isa_88438dc517 (IsA wardroom military_quarters) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wardrobe is a kind of collection of clothe", "pln": ["(: cnet_isa_a417be5b3d (IsA wardrobe collection_of_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wardrobe is a kind of collection of clothing", "pln": ["(: cnet_isa_85b5a36c64 (IsA wardrobe collection_of_clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wardrobe is a kind of container for clothe", "pln": ["(: cnet_isa_2653681c09 (IsA wardrobe container_for_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wardrobe is a kind of collection", "pln": ["(: cnet_isa_76a438f445 (IsA wardrobe collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wardrobe is a kind of furniture", "pln": ["(: cnet_isa_d24a1a44c0 (IsA wardrobe furniture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wardroom is a kind of military quarter", "pln": ["(: cnet_isa_b4b4b42a12 (IsA wardroom military_quarter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ware is a kind of article", "pln": ["(: cnet_isa_f39e0a79ef (IsA ware article) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "warehouse is a kind of storehouse", "pln": ["(: cnet_isa_50e06ab87a (IsA warehouse storehouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warehouseman s lien is a kind of lien", "pln": ["(: cnet_isa_9d74798378 (IsA warehouseman_s_lien lien) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warehouser is a kind of workman", "pln": ["(: cnet_isa_9358afef23 (IsA warehouser workman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warhead is a kind of explosive", "pln": ["(: cnet_isa_bf162ece63 (IsA warhead explosive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warhorse is a kind of saddle horse", "pln": ["(: cnet_isa_310c7bea45 (IsA warhorse saddle_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warhorse is a kind of work of art", "pln": ["(: cnet_isa_c6d1f83318 (IsA warhorse work_of_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wariness is a kind of circumspection", "pln": ["(: cnet_isa_a7805dbe86 (IsA wariness circumspection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warji is a kind of west chadic", "pln": ["(: cnet_isa_1b055e1e3a (IsA warji west_chadic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warlock is a kind of witch", "pln": ["(: cnet_isa_56b51320c5 (IsA warlock witch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warlord is a kind of military leader", "pln": ["(: cnet_isa_40e19d4518 (IsA warlord military_leader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warm front is a kind of front", "pln": ["(: cnet_isa_a646c644cf (IsA warm_front front) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warm up is a kind of preparation", "pln": ["(: cnet_isa_03404d459e (IsA warm_up preparation) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warmheartedness is a kind of lovingness", "pln": ["(: cnet_isa_d3bc7ba06f (IsA warmheartedness lovingness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warming pan is a kind of pan", "pln": ["(: cnet_isa_e76b5cebe9 (IsA warming_pan pan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warmongering is a kind of hawkishness", "pln": ["(: cnet_isa_0f86a4e002 (IsA warmongering hawkishness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warmth is a kind of hotness", "pln": ["(: cnet_isa_c69b0646dc (IsA warmth hotness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "warner is a kind of communicator", "pln": ["(: cnet_isa_35d0f7462d (IsA warner communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warning is a kind of informing", "pln": ["(: cnet_isa_d68a155fae (IsA warning informing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warning is a kind of telling", "pln": ["(: cnet_isa_eba7e0a903 (IsA warning telling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "warning of attack is a kind of tactical warning", "pln": ["(: cnet_isa_ac16ecf4ff (IsA warning_of_attack tactical_warning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warning of war is a kind of strategic warning", "pln": ["(: cnet_isa_c2e06951e4 (IsA warning_of_war strategic_warning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warp is a kind of thread", "pln": ["(: cnet_isa_1aef64e8d6 (IsA warp thread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warp is a kind of distortion", "pln": ["(: cnet_isa_9fee637b74 (IsA warp distortion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warp is a kind of distorted shape", "pln": ["(: cnet_isa_d71044a275 (IsA warp distorted_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warpath is a kind of way", "pln": ["(: cnet_isa_201874d450 (IsA warpath way) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warpath is a kind of belligerence", "pln": ["(: cnet_isa_17eca590fc (IsA warpath belligerence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warplane is a kind of heavier than air craft", "pln": ["(: cnet_isa_c877eaaf17 (IsA warplane heavier_than_air_craft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warplane is a kind of military vehicle", "pln": ["(: cnet_isa_dccd5a87e5 (IsA warplane military_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warrant is a kind of writ", "pln": ["(: cnet_isa_30aa69a10b (IsA warrant writ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warrant is a kind of security", "pln": ["(: cnet_isa_036b0da3e3 (IsA warrant security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warrant officer is a kind of military officer", "pln": ["(: cnet_isa_9e4315fe19 (IsA warrant_officer military_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warrantee is a kind of customer", "pln": ["(: cnet_isa_df18dc035b (IsA warrantee customer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warrantee is a kind of recipient", "pln": ["(: cnet_isa_cbb08fbc80 (IsA warrantee recipient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warren is a kind of animal group", "pln": ["(: cnet_isa_2118f8c127 (IsA warren animal_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warren is a kind of residential district", "pln": ["(: cnet_isa_d9b55cbd6c (IsA warren residential_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warren is a kind of burrow", "pln": ["(: cnet_isa_e3cf15a95d (IsA warren burrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warrener is a kind of gamekeeper", "pln": ["(: cnet_isa_17aba35cee (IsA warrener gamekeeper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warrigal is a kind of wild horse", "pln": ["(: cnet_isa_9cd5b146ba (IsA warrigal wild_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warrior is a kind of person", "pln": ["(: cnet_isa_43cd995c38 (IsA warrior person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warship is a kind of military vehicle", "pln": ["(: cnet_isa_3fb6f20ef4 (IsA warship military_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "warship is a kind of ship", "pln": ["(: cnet_isa_d214d8caf4 (IsA warship ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wart is a kind of bulge", "pln": ["(: cnet_isa_7f732a732c (IsA wart bulge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wart is a kind of blemish", "pln": ["(: cnet_isa_34a39bffe1 (IsA wart blemish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wart is a kind of keratosis", "pln": ["(: cnet_isa_ea686606f3 (IsA wart keratosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wart is a kind of imperfection", "pln": ["(: cnet_isa_d6f77d694e (IsA wart imperfection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "warthog is a kind of swine", "pln": ["(: cnet_isa_c01ba854e5 (IsA warthog swine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wartime is a kind of time period", "pln": ["(: cnet_isa_f0b30c21d7 (IsA wartime time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wasabi is a kind of condiment", "pln": ["(: cnet_isa_02ac9d3a55 (IsA wasabi condiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wasabi is a kind of herb", "pln": ["(: cnet_isa_fcb78893a9 (IsA wasabi herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wash is a kind of business activity", "pln": ["(: cnet_isa_cd6d01e03e (IsA wash business_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wash is a kind of work", "pln": ["(: cnet_isa_15b3469600 (IsA wash work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wash is a kind of water base paint", "pln": ["(: cnet_isa_6e4f4d4c64 (IsA wash water_base_paint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wash is a kind of watercolor", "pln": ["(: cnet_isa_aa8b2099f5 (IsA wash watercolor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wash is a kind of streambed", "pln": ["(: cnet_isa_755ca3184c (IsA wash streambed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wash and wear is a kind of fabric", "pln": ["(: cnet_isa_83fd8a2b3a (IsA wash_and_wear fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wash leather is a kind of chamois", "pln": ["(: cnet_isa_5246ab5bcc (IsA wash_leather chamois) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "washbasin is a kind of basin", "pln": ["(: cnet_isa_afc3a51c97 (IsA washbasin basin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "washbasin is a kind of sink", "pln": ["(: cnet_isa_9c2e2c3446 (IsA washbasin sink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "washboard is a kind of device", "pln": ["(: cnet_isa_2ea4fd4625 (IsA washboard device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "washboard is a kind of protective covering", "pln": ["(: cnet_isa_080b808a09 (IsA washboard protective_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "washcloth is a kind of bath linen", "pln": ["(: cnet_isa_7aba29f880 (IsA washcloth bath_linen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "washday is a kind of day", "pln": ["(: cnet_isa_04e0ece66c (IsA washday day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "washer is a kind of seal", "pln": ["(: cnet_isa_11c2ee3c41 (IsA washer seal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "washer is a kind of white good", "pln": ["(: cnet_isa_4eab98cd87 (IsA washer white_good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "washer is a kind of worker", "pln": ["(: cnet_isa_234fb97391 (IsA washer worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "washerman is a kind of washer", "pln": ["(: cnet_isa_2dd619e5be (IsA washerman washer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "washhouse is a kind of laundry", "pln": ["(: cnet_isa_a85b1ae9c4 (IsA washhouse laundry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "washing machine is a kind of machine", "pln": ["(: cnet_isa_1dd78bf3bc (IsA washing_machine machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "washing up is a kind of wash", "pln": ["(: cnet_isa_12a92410bc (IsA washing_up wash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "washington s birthday is a kind of day", "pln": ["(: cnet_isa_d12ad6d6ee (IsA washington_s_birthday day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "washington is a kind of state", "pln": ["(: cnet_isa_fba6e5262f (IsA washington state) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "washington monument is a kind of obelisk", "pln": ["(: cnet_isa_3cf08be2bd (IsA washington_monument obelisk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "washingtonian is a kind of american", "pln": ["(: cnet_isa_979fa075be (IsA washingtonian american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "washout is a kind of soil erosion", "pln": ["(: cnet_isa_bdca35723a (IsA washout soil_erosion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "washout is a kind of groove", "pln": ["(: cnet_isa_b45b71a930 (IsA washout groove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "washroom is a kind of toilet", "pln": ["(: cnet_isa_81b5a11e1a (IsA washroom toilet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "washstand is a kind of furniture", "pln": ["(: cnet_isa_817eb25fd3 (IsA washstand furniture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "washtub is a kind of tub", "pln": ["(: cnet_isa_a053179f96 (IsA washtub tub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "washup is a kind of cleaning", "pln": ["(: cnet_isa_c615f9a869 (IsA washup cleaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "washup is a kind of wash", "pln": ["(: cnet_isa_0169852c9c (IsA washup wash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "washwoman is a kind of washer", "pln": ["(: cnet_isa_a1df47fd54 (IsA washwoman washer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wasp s nest is a kind of nidus", "pln": ["(: cnet_isa_d39c68da37 (IsA wasp_s_nest nidus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wasp is a kind of insect", "pln": ["(: cnet_isa_ebde3958fe (IsA wasp insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wasp is a kind of hymenopterous insect", "pln": ["(: cnet_isa_ff92d64979 (IsA wasp hymenopterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wasp waist is a kind of waist", "pln": ["(: cnet_isa_9fe45038d7 (IsA wasp_waist waist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wassail is a kind of punch", "pln": ["(: cnet_isa_4739319c7f (IsA wassail punch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wassailer is a kind of drinker", "pln": ["(: cnet_isa_84cdcfa2a8 (IsA wassailer drinker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wassermann test is a kind of complement fixation test", "pln": ["(: cnet_isa_f66c6bfd89 (IsA wassermann_test complement_fixation_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wastage is a kind of loss", "pln": ["(: cnet_isa_ff733c262c (IsA wastage loss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wastage is a kind of decrease", "pln": ["(: cnet_isa_186ebca7a0 (IsA wastage decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waste is a kind of activity", "pln": ["(: cnet_isa_33681a9285 (IsA waste activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waste is a kind of act", "pln": ["(: cnet_isa_08fc4e98b0 (IsA waste act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waste is a kind of material", "pln": ["(: cnet_isa_658575fa11 (IsA waste material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "waste of effort is a kind of waste", "pln": ["(: cnet_isa_ef9741809f (IsA waste_of_effort waste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waste of material is a kind of waste", "pln": ["(: cnet_isa_5252c83d44 (IsA waste_of_material waste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waste of money is a kind of waste", "pln": ["(: cnet_isa_d033237fc7 (IsA waste_of_money waste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "waste of time is a kind of waste", "pln": ["(: cnet_isa_87a485e557 (IsA waste_of_time waste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "waste paper is a kind of paper", "pln": ["(: cnet_isa_1dcb9f670c (IsA waste_paper paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wastepaper basket is a kind of container", "pln": ["(: cnet_isa_bae2193272 (IsA wastepaper_basket container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wastrel is a kind of prodigal", "pln": ["(: cnet_isa_25d3c425d6 (IsA wastrel prodigal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watch is a kind of chronometer", "pln": ["(: cnet_isa_62d5711735 (IsA watch chronometer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watch is a kind of clock", "pln": ["(: cnet_isa_70da028591 (IsA watch clock) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watch is a kind of surveillance", "pln": ["(: cnet_isa_7e21c674e7 (IsA watch surveillance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watch is a kind of timepiece", "pln": ["(: cnet_isa_4827da7e96 (IsA watch timepiece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watch is a kind of shift", "pln": ["(: cnet_isa_657f7a5102 (IsA watch shift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watch is a kind of time period", "pln": ["(: cnet_isa_5184c11a3d (IsA watch time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watch cap is a kind of cap", "pln": ["(: cnet_isa_9cd3c4d1b4 (IsA watch_cap cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watch case is a kind of case", "pln": ["(: cnet_isa_923dcbccb7 (IsA watch_case case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watch fire is a kind of visual signal", "pln": ["(: cnet_isa_2aaea16d99 (IsA watch_fire visual_signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watch glass is a kind of dish", "pln": ["(: cnet_isa_e4f0b397c5 (IsA watch_glass dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watch key is a kind of winder", "pln": ["(: cnet_isa_2ea9002d2a (IsA watch_key winder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watch night is a kind of service", "pln": ["(: cnet_isa_ea9c3fba83 (IsA watch_night service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watchband is a kind of band", "pln": ["(: cnet_isa_e6265271dd (IsA watchband band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watchdog is a kind of working dog", "pln": ["(: cnet_isa_48496fc5e3 (IsA watchdog working_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watchdog is a kind of defender", "pln": ["(: cnet_isa_d99ab29952 (IsA watchdog defender) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watcher is a kind of person", "pln": ["(: cnet_isa_677e0b8894 (IsA watcher person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watchfulness is a kind of attentiveness", "pln": ["(: cnet_isa_97af060186 (IsA watchfulness attentiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watchfulness is a kind of attention", "pln": ["(: cnet_isa_8c2599443b (IsA watchfulness attention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watching tv is a kind of passive activity", "pln": ["(: cnet_isa_9050fe75e5 (IsA watching_tv passive_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watchmaker is a kind of maker", "pln": ["(: cnet_isa_a50beafa95 (IsA watchmaker maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watchman is a kind of guard", "pln": ["(: cnet_isa_ad9f66f75a (IsA watchman guard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watchtower is a kind of tower", "pln": ["(: cnet_isa_a202f2b11a (IsA watchtower tower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "water is a kind of chemical", "pln": ["(: cnet_isa_669d31a05a (IsA water chemical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water is a kind of fluid", "pln": ["(: cnet_isa_ba91a2bae9 (IsA water fluid) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water is a kind of heavier than air", "pln": ["(: cnet_isa_5c30b4a28f (IsA water heavier_than_air) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water is a kind of life", "pln": ["(: cnet_isa_877187feaa (IsA water life) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "water is a kind of molecule", "pln": ["(: cnet_isa_2fd8401c78 (IsA water molecule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water is a kind of not air", "pln": ["(: cnet_isa_9a3c206472 (IsA water not_air) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water is a kind of reflective surface", "pln": ["(: cnet_isa_f5a1359512 (IsA water reflective_surface) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water is a kind of solvent", "pln": ["(: cnet_isa_0b963d77d9 (IsA water solvent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water is a kind of food", "pln": ["(: cnet_isa_e08ff48534 (IsA water food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water is a kind of nutrient", "pln": ["(: cnet_isa_d23f21455a (IsA water nutrient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water is a kind of binary compound", "pln": ["(: cnet_isa_6f62f49f90 (IsA water binary_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water is a kind of element", "pln": ["(: cnet_isa_e9cd3c5a3c (IsA water element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water aven is a kind of aven", "pln": ["(: cnet_isa_8214eb3cc5 (IsA water_aven aven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water back is a kind of water heater", "pln": ["(: cnet_isa_3011cceab7 (IsA water_back water_heater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water base paint is a kind of paint", "pln": ["(: cnet_isa_87d6e19e3e (IsA water_base_paint paint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water bearer is a kind of person", "pln": ["(: cnet_isa_3045cfa5d9 (IsA water_bearer person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water bed is a kind of bed", "pln": ["(: cnet_isa_584f5b3d60 (IsA water_bed bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water beetle is a kind of beetle", "pln": ["(: cnet_isa_8f747b0af9 (IsA water_beetle beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water biscuit is a kind of cracker", "pln": ["(: cnet_isa_c129f3c4a8 (IsA water_biscuit cracker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water blister is a kind of blister", "pln": ["(: cnet_isa_45214479ac (IsA water_blister blister) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water boatman is a kind of water bug", "pln": ["(: cnet_isa_617ab39095 (IsA water_boatman water_bug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water bottle is a kind of bottle", "pln": ["(: cnet_isa_2db617610c (IsA water_bottle bottle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water boy is a kind of assistant", "pln": ["(: cnet_isa_c517f3eba1 (IsA water_boy assistant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water buffalo is a kind of old world buffalo", "pln": ["(: cnet_isa_8cc244822a (IsA water_buffalo old_world_buffalo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water bug is a kind of heteropterous insect", "pln": ["(: cnet_isa_788a12c315 (IsA water_bug heteropterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water butt is a kind of butt", "pln": ["(: cnet_isa_463238537d (IsA water_butt butt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water caltrop is a kind of water chestnut", "pln": ["(: cnet_isa_9930016c01 (IsA water_caltrop water_chestnut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water cannon is a kind of hose", "pln": ["(: cnet_isa_fb3d4ee62e (IsA water_cannon hose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water carpet is a kind of golden saxifrage", "pln": ["(: cnet_isa_6fb7ad222a (IsA water_carpet golden_saxifrage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "water cart is a kind of cart", "pln": ["(: cnet_isa_69e6976120 (IsA water_cart cart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water chestnut is a kind of tuber", "pln": ["(: cnet_isa_c5b0cc4b25 (IsA water_chestnut tuber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water chestnut is a kind of aquatic plant", "pln": ["(: cnet_isa_4ec562c8fb (IsA water_chestnut aquatic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "water chestnut is a kind of spike rush", "pln": ["(: cnet_isa_086f2778fe (IsA water_chestnut spike_rush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "water chevrotain is a kind of chevrotain", "pln": ["(: cnet_isa_9524ef9464 (IsA water_chevrotain chevrotain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water chinquapin is a kind of edible seed", "pln": ["(: cnet_isa_52cb5a5af2 (IsA water_chinquapin edible_seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water chinquapin is a kind of water lily", "pln": ["(: cnet_isa_f73b36538f (IsA water_chinquapin water_lily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "water chute is a kind of chute", "pln": ["(: cnet_isa_13d26997b8 (IsA water_chute chute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water clock is a kind of clock", "pln": ["(: cnet_isa_60809175ee (IsA water_clock clock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water closet is a kind of toilet", "pln": ["(: cnet_isa_28df582f44 (IsA water_closet toilet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water clover is a kind of clover fern", "pln": ["(: cnet_isa_4743c80743 (IsA water_clover clover_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "water colour is a kind of painting", "pln": ["(: cnet_isa_8060f7cb55 (IsA water_colour painting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water company is a kind of utility", "pln": ["(: cnet_isa_6780c1acef (IsA water_company utility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water conservation is a kind of conservation", "pln": ["(: cnet_isa_eb822b9da2 (IsA water_conservation conservation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water cooled reactor is a kind of nuclear reactor", "pln": ["(: cnet_isa_e0ef31ba09 (IsA water_cooled_reactor nuclear_reactor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water cooler is a kind of device", "pln": ["(: cnet_isa_f5533121a2 (IsA water_cooler device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water crowfoot is a kind of aquatic plant", "pln": ["(: cnet_isa_67e1196dd8 (IsA water_crowfoot aquatic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water development is a kind of exploitation", "pln": ["(: cnet_isa_8862f34b13 (IsA water_development exploitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water dog is a kind of sporting dog", "pln": ["(: cnet_isa_59c9b6ebbe (IsA water_dog sporting_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water dog is a kind of sailor", "pln": ["(: cnet_isa_0481b99879 (IsA water_dog sailor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water dropwort is a kind of poisonous plant", "pln": ["(: cnet_isa_f7784723eb (IsA water_dropwort poisonous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water elm is a kind of elm", "pln": ["(: cnet_isa_7a64159ac2 (IsA water_elm elm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water faucet is a kind of faucet", "pln": ["(: cnet_isa_bc3e61e45b (IsA water_faucet faucet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water faucet is a kind of plumbing fixture", "pln": ["(: cnet_isa_0aee639127 (IsA water_faucet plumbing_fixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water fennel is a kind of poisonous plant", "pln": ["(: cnet_isa_0ead408235 (IsA water_fennel poisonous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water filter is a kind of filter", "pln": ["(: cnet_isa_b49338e761 (IsA water_filter filter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "water gap is a kind of col", "pln": ["(: cnet_isa_45222bf453 (IsA water_gap col) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water gas is a kind of fuel", "pln": ["(: cnet_isa_1e61c8bda5 (IsA water_gas fuel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "water gas is a kind of gas", "pln": ["(: cnet_isa_8b62abab04 (IsA water_gas gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water gauge is a kind of gauge", "pln": ["(: cnet_isa_5a36f8c887 (IsA water_gauge gauge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water gillyflower is a kind of featherfoil", "pln": ["(: cnet_isa_f8c1c4eee1 (IsA water_gillyflower featherfoil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water glass is a kind of glass", "pln": ["(: cnet_isa_6eead04ddc (IsA water_glass glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water gum is a kind of tupelo", "pln": ["(: cnet_isa_e1bbefc63b (IsA water_gum tupelo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water hammer is a kind of bang", "pln": ["(: cnet_isa_cbe7e244fd (IsA water_hammer bang) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water hazard is a kind of hazard", "pln": ["(: cnet_isa_4f58d646a1 (IsA water_hazard hazard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "water heater is a kind of heater", "pln": ["(: cnet_isa_81ad7ec15e (IsA water_heater heater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water heater is a kind of tank", "pln": ["(: cnet_isa_0f159a897d (IsA water_heater tank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water hemlock is a kind of poisonous plant", "pln": ["(: cnet_isa_663f338f8f (IsA water_hemlock poisonous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water hickory is a kind of hickory", "pln": ["(: cnet_isa_048fd37b5a (IsA water_hickory hickory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water hole is a kind of pond", "pln": ["(: cnet_isa_63d99c394e (IsA water_hole pond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water horehound is a kind of herb", "pln": ["(: cnet_isa_c7d0a408eb (IsA water_horehound herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "water hyacinth is a kind of aquatic plant", "pln": ["(: cnet_isa_0adc79575c (IsA water_hyacinth aquatic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water jacket is a kind of vessel", "pln": ["(: cnet_isa_7178720b8b (IsA water_jacket vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water jug is a kind of jug", "pln": ["(: cnet_isa_e760354fbb (IsA water_jug jug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water jump is a kind of obstacle", "pln": ["(: cnet_isa_85ac589771 (IsA water_jump obstacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water jump is a kind of pool", "pln": ["(: cnet_isa_60f7216ccc (IsA water_jump pool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water level is a kind of water gauge", "pln": ["(: cnet_isa_e599877eec (IsA water_level water_gauge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water level is a kind of elevation", "pln": ["(: cnet_isa_3a8121b750 (IsA water_level elevation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water lily is a kind of aquatic plant", "pln": ["(: cnet_isa_463aa2fe1f (IsA water_lily aquatic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water line is a kind of line", "pln": ["(: cnet_isa_c7640a33ba (IsA water_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water lobelia is a kind of lobelia", "pln": ["(: cnet_isa_8fc8d43d27 (IsA water_lobelia lobelia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water locust is a kind of locust tree", "pln": ["(: cnet_isa_559eea041c (IsA water_locust locust_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "water main is a kind of main", "pln": ["(: cnet_isa_ad127052a7 (IsA water_main main) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water meter is a kind of meter", "pln": ["(: cnet_isa_fb24c40290 (IsA water_meter meter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water milfoil is a kind of aquatic plant", "pln": ["(: cnet_isa_e38e6f3eac (IsA water_milfoil aquatic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water mill is a kind of mill", "pln": ["(: cnet_isa_1c330eaebe (IsA water_mill mill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water mint is a kind of mint", "pln": ["(: cnet_isa_387b3bd95b (IsA water_mint mint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water moccasin is a kind of pit viper", "pln": ["(: cnet_isa_7913189fb3 (IsA water_moccasin pit_viper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water moccasin is a kind of water snake", "pln": ["(: cnet_isa_399e265173 (IsA water_moccasin water_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water mold is a kind of mold", "pln": ["(: cnet_isa_a0331d9d71 (IsA water_mold mold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water nymph is a kind of nymph", "pln": ["(: cnet_isa_bab1ab6542 (IsA water_nymph nymph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water nymph is a kind of water lily", "pln": ["(: cnet_isa_e3fdef8b31 (IsA water_nymph water_lily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water oak is a kind of oak", "pln": ["(: cnet_isa_ecc6f8ba91 (IsA water_oak oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water of crystallization is a kind of water", "pln": ["(: cnet_isa_e2a6f1eef5 (IsA water_of_crystallization water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water on knee is a kind of hydrarthrosis", "pln": ["(: cnet_isa_3b8f493efd (IsA water_on_knee hydrarthrosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water ouzel is a kind of oscine", "pln": ["(: cnet_isa_d215348760 (IsA water_ouzel oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water parsnip is a kind of marsh plant", "pln": ["(: cnet_isa_aa2f5fbb6b (IsA water_parsnip marsh_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "water pimpernel is a kind of aquatic plant", "pln": ["(: cnet_isa_484fe2a7c4 (IsA water_pimpernel aquatic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water pistol is a kind of plaything", "pln": ["(: cnet_isa_aa73455f40 (IsA water_pistol plaything) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water plantain is a kind of marsh plant", "pln": ["(: cnet_isa_b98f820d95 (IsA water_plantain marsh_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water pollution is a kind of pollution", "pln": ["(: cnet_isa_dd4b72fd57 (IsA water_pollution pollution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water polo is a kind of game", "pln": ["(: cnet_isa_f73f602b93 (IsA water_polo game) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water polo is a kind of sport", "pln": ["(: cnet_isa_f851715a96 (IsA water_polo sport) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "water polo is a kind of athletic game", "pln": ["(: cnet_isa_745b094e2d (IsA water_polo athletic_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water pump is a kind of pump", "pln": ["(: cnet_isa_ca20fa0896 (IsA water_pump pump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water rat is a kind of rodent", "pln": ["(: cnet_isa_f6ba023c0d (IsA water_rat rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water rate is a kind of charge", "pln": ["(: cnet_isa_95e4e3dec6 (IsA water_rate charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water right is a kind of right", "pln": ["(: cnet_isa_4e7af5dd8b (IsA water_right right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water sapphire is a kind of cordierite", "pln": ["(: cnet_isa_053055bcc5 (IsA water_sapphire cordierite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "water sapphire is a kind of transparent gem", "pln": ["(: cnet_isa_2a40dc8396 (IsA water_sapphire transparent_gem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "water scooter is a kind of motorboat", "pln": ["(: cnet_isa_eb01031f16 (IsA water_scooter motorboat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water scorpion is a kind of water bug", "pln": ["(: cnet_isa_5907f08f21 (IsA water_scorpion water_bug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water shamrock is a kind of aquatic plant", "pln": ["(: cnet_isa_80c7643f38 (IsA water_shamrock aquatic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water shield is a kind of water lily", "pln": ["(: cnet_isa_9cc6c52eb8 (IsA water_shield water_lily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water shrew is a kind of shrew", "pln": ["(: cnet_isa_5d24358f43 (IsA water_shrew shrew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water ski is a kind of ski", "pln": ["(: cnet_isa_bb311b9e93 (IsA water_ski ski) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water skiing is a kind of water sport", "pln": ["(: cnet_isa_60394189f6 (IsA water_skiing water_sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water snake is a kind of colubrid snake", "pln": ["(: cnet_isa_546a7a7b91 (IsA water_snake colubrid_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water softener is a kind of softener", "pln": ["(: cnet_isa_edd728a441 (IsA water_softener softener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water soluble vitamin is a kind of vitamin", "pln": ["(: cnet_isa_b32b40f46e (IsA water_soluble_vitamin vitamin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water spaniel is a kind of spaniel", "pln": ["(: cnet_isa_c41166c59e (IsA water_spaniel spaniel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water speedwell is a kind of aquatic plant", "pln": ["(: cnet_isa_ee348c808c (IsA water_speedwell aquatic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water sport is a kind of sport", "pln": ["(: cnet_isa_141a960f30 (IsA water_sport sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water sprite is a kind of fairy", "pln": ["(: cnet_isa_466993641d (IsA water_sprite fairy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water star grass is a kind of aquatic plant", "pln": ["(: cnet_isa_1aa4171fc5 (IsA water_star_grass aquatic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water starwort is a kind of aquatic plant", "pln": ["(: cnet_isa_52ef461268 (IsA water_starwort aquatic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water strider is a kind of water bug", "pln": ["(: cnet_isa_3812763c9a (IsA water_strider water_bug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "water system is a kind of facility", "pln": ["(: cnet_isa_7d430a1e88 (IsA water_system facility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water system is a kind of system", "pln": ["(: cnet_isa_fcd9107865 (IsA water_system system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water table is a kind of geological formation", "pln": ["(: cnet_isa_e6934810a3 (IsA water_table geological_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water thrush is a kind of new world warbler", "pln": ["(: cnet_isa_098b989f24 (IsA water_thrush new_world_warbler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water tower is a kind of reservoir", "pln": ["(: cnet_isa_0502c51072 (IsA water_tower reservoir) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water travel is a kind of travel", "pln": ["(: cnet_isa_2693e18870 (IsA water_travel travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water turkey is a kind of snakebird", "pln": ["(: cnet_isa_c9b410c664 (IsA water_turkey snakebird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "water vapor is a kind of vapor", "pln": ["(: cnet_isa_5a341da89d (IsA water_vapor vapor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water vascular system is a kind of vascular system", "pln": ["(: cnet_isa_6a64bab78f (IsA water_vascular_system vascular_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water violet is a kind of featherfoil", "pln": ["(: cnet_isa_4c29b06ed3 (IsA water_violet featherfoil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water vole is a kind of vole", "pln": ["(: cnet_isa_6aead1029b (IsA water_vole vole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water wagon is a kind of wagon", "pln": ["(: cnet_isa_644e6b57da (IsA water_wagon wagon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "water wing is a kind of life preserver", "pln": ["(: cnet_isa_ec0fbf458a (IsA water_wing life_preserver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "water witch is a kind of diviner", "pln": ["(: cnet_isa_ff8d234e48 (IsA water_witch diviner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waterbuck is a kind of antelope", "pln": ["(: cnet_isa_03824dd9a1 (IsA waterbuck antelope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watercolor is a kind of painting", "pln": ["(: cnet_isa_969ef19e69 (IsA watercolor painting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watercolor is a kind of water base paint", "pln": ["(: cnet_isa_cbc713595e (IsA watercolor water_base_paint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watercolor is a kind of pigment", "pln": ["(: cnet_isa_41aeeeaacb (IsA watercolor pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watercolorist is a kind of painter", "pln": ["(: cnet_isa_07ed487ef5 (IsA watercolorist painter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watercourse is a kind of way", "pln": ["(: cnet_isa_3d6830dd4e (IsA watercourse way) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "watercourse is a kind of channel", "pln": ["(: cnet_isa_d47e3c8bfa (IsA watercourse channel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watercraft is a kind of craft", "pln": ["(: cnet_isa_f552fe2a9f (IsA watercraft craft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watercress is a kind of cress", "pln": ["(: cnet_isa_e7a5ee6b1e (IsA watercress cress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waterdog is a kind of ambystomid", "pln": ["(: cnet_isa_27a2adb6cc (IsA waterdog ambystomid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watered stock is a kind of stock", "pln": ["(: cnet_isa_d2f54d424a (IsA watered_stock stock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waterer is a kind of farmhand", "pln": ["(: cnet_isa_7aefce99e6 (IsA waterer farmhand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waterfall is a kind of body of water", "pln": ["(: cnet_isa_a127a2c28b (IsA waterfall body_of_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waterfowl is a kind of aquatic bird", "pln": ["(: cnet_isa_5c7a753d6c (IsA waterfowl aquatic_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waterfront is a kind of city district", "pln": ["(: cnet_isa_155b9ae32a (IsA waterfront city_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waterhouse friderichsen syndrome is a kind of syndrome", "pln": ["(: cnet_isa_94194f0a4a (IsA waterhouse_friderichsen_syndrome syndrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wateriness is a kind of meagerness", "pln": ["(: cnet_isa_633bf58f6b (IsA wateriness meagerness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wateriness is a kind of thinness", "pln": ["(: cnet_isa_d0dd7fbed9 (IsA wateriness thinness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watering is a kind of wetting", "pln": ["(: cnet_isa_f2a850ad10 (IsA watering wetting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watering can is a kind of container", "pln": ["(: cnet_isa_583ed9bc4a (IsA watering_can container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watering cart is a kind of water cart", "pln": ["(: cnet_isa_a71ad4864d (IsA watering_cart water_cart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watering place is a kind of resort area", "pln": ["(: cnet_isa_f71bb71f73 (IsA watering_place resort_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waterleaf is a kind of herb", "pln": ["(: cnet_isa_71d64839f5 (IsA waterleaf herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waterline is a kind of line", "pln": ["(: cnet_isa_26f7e3ec3f (IsA waterline line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waterloo is a kind of defeat", "pln": ["(: cnet_isa_d7a7ce23bb (IsA waterloo defeat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watermark is a kind of marker", "pln": ["(: cnet_isa_9d332854e7 (IsA watermark marker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watermeal is a kind of duckweed", "pln": ["(: cnet_isa_78d76bc712 (IsA watermeal duckweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watermelon is a kind of fruit", "pln": ["(: cnet_isa_f86c7c35be (IsA watermelon fruit) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watermelon is a kind of melon", "pln": ["(: cnet_isa_cbb266860c (IsA watermelon melon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watermelon begonia is a kind of peperomia", "pln": ["(: cnet_isa_c6df17b9dd (IsA watermelon_begonia peperomia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waterpower is a kind of power", "pln": ["(: cnet_isa_91e429a271 (IsA waterpower power) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waterproof is a kind of fabric", "pln": ["(: cnet_isa_94dad403b2 (IsA waterproof fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waterproofing is a kind of protection", "pln": ["(: cnet_isa_7ada992e28 (IsA waterproofing protection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waterproofing is a kind of coating", "pln": ["(: cnet_isa_2135ad45ed (IsA waterproofing coating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watershed is a kind of line", "pln": ["(: cnet_isa_7c20e606f9 (IsA watershed line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waterside is a kind of bank", "pln": ["(: cnet_isa_5ffff329e0 (IsA waterside bank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waterskin is a kind of skin", "pln": ["(: cnet_isa_373e42a12a (IsA waterskin skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waterspout is a kind of conduit", "pln": ["(: cnet_isa_5f20708954 (IsA waterspout conduit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waterspout is a kind of tornado", "pln": ["(: cnet_isa_4ea4dacc82 (IsA waterspout tornado) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waterway is a kind of body of water", "pln": ["(: cnet_isa_e9ab9eb8c7 (IsA waterway body_of_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waterweed is a kind of aquatic plant", "pln": ["(: cnet_isa_d8ab88f7b7 (IsA waterweed aquatic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waterwheel is a kind of wheel", "pln": ["(: cnet_isa_88d15536b3 (IsA waterwheel wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waterwheel plant is a kind of carnivorous plant", "pln": ["(: cnet_isa_e5e53b2e65 (IsA waterwheel_plant carnivorous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waterwork is a kind of workplace", "pln": ["(: cnet_isa_df820de2b9 (IsA waterwork workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wat is a kind of telephone line", "pln": ["(: cnet_isa_47ea00e3f9 (IsA wat telephone_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watt is a kind of power unit", "pln": ["(: cnet_isa_9dc5971dc0 (IsA watt power_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watt hour is a kind of work unit", "pln": ["(: cnet_isa_60595552a6 (IsA watt_hour work_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wattage is a kind of voltage mulitplied by amperage", "pln": ["(: cnet_isa_437c164ee3 (IsA wattage voltage_mulitplied_by_amperage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wattle is a kind of framework", "pln": ["(: cnet_isa_7332cb7d9f (IsA wattle framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wattle is a kind of caruncle", "pln": ["(: cnet_isa_c75feeb2af (IsA wattle caruncle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wattle is a kind of acacia", "pln": ["(: cnet_isa_3c677d8682 (IsA wattle acacia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wattle and daub is a kind of building material", "pln": ["(: cnet_isa_220a34baa0 (IsA wattle_and_daub building_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wattmeter is a kind of measuring instrument", "pln": ["(: cnet_isa_8721ac86a4 (IsA wattmeter measuring_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "watutsi is a kind of bantu", "pln": ["(: cnet_isa_97612082b6 (IsA watutsi bantu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wave is a kind of motion", "pln": ["(: cnet_isa_c6ff24417a (IsA wave motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wave is a kind of hairdo", "pln": ["(: cnet_isa_da55bbcada (IsA wave hairdo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wave is a kind of gesture", "pln": ["(: cnet_isa_cdf6cae878 (IsA wave gesture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wave is a kind of movement", "pln": ["(: cnet_isa_679c55f0d7 (IsA wave movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wave is a kind of rise", "pln": ["(: cnet_isa_71bc970ff2 (IsA wave rise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wave is a kind of reservist", "pln": ["(: cnet_isa_992b357b3e (IsA wave reservist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wave is a kind of woman", "pln": ["(: cnet_isa_e37dda330f (IsA wave woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wave is a kind of weather", "pln": ["(: cnet_isa_59acd5cedb (IsA wave weather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wave is a kind of curve", "pln": ["(: cnet_isa_e6e05b90d0 (IsA wave curve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wave angle is a kind of angle", "pln": ["(: cnet_isa_1eb0513ae2 (IsA wave_angle angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wave equation is a kind of differential equation", "pln": ["(: cnet_isa_50376a3c4b (IsA wave_equation differential_equation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wave form is a kind of wave", "pln": ["(: cnet_isa_23f4dd4476 (IsA wave_form wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wave front is a kind of propagation", "pln": ["(: cnet_isa_aff873bb1f (IsA wave_front propagation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "wave train is a kind of series", "pln": ["(: cnet_isa_babe84244a (IsA wave_train series) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wave front is a kind of surface", "pln": ["(: cnet_isa_92bc07a223 (IsA wave_front surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wave mechanic is a kind of quantum mechanic", "pln": ["(: cnet_isa_07e22949b7 (IsA wave_mechanic quantum_mechanic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wave number is a kind of frequency", "pln": ["(: cnet_isa_b4d8a6ace2 (IsA wave_number frequency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wave theory is a kind of scientific theory", "pln": ["(: cnet_isa_a8dc4b01b2 (IsA wave_theory scientific_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wave train is a kind of sery", "pln": ["(: cnet_isa_81b016914d (IsA wave_train sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wave vector is a kind of vector", "pln": ["(: cnet_isa_b0c5b92340 (IsA wave_vector vector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waveguide is a kind of conductor", "pln": ["(: cnet_isa_fa0c1ae1d0 (IsA waveguide conductor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wavelength is a kind of distance", "pln": ["(: cnet_isa_3a07ad6dd4 (IsA wavelength distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wavelength is a kind of orientation", "pln": ["(: cnet_isa_9fe29e619f (IsA wavelength orientation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waver is a kind of motion", "pln": ["(: cnet_isa_17fdd53031 (IsA waver motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waver is a kind of communicator", "pln": ["(: cnet_isa_0c089d7697 (IsA waver communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waverer is a kind of coward", "pln": ["(: cnet_isa_7d015c9811 (IsA waverer coward) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waviness is a kind of unevenness", "pln": ["(: cnet_isa_18d44cf159 (IsA waviness unevenness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wavy leaved aster is a kind of aster", "pln": ["(: cnet_isa_c2724440a4 (IsA wavy_leaved_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waw is a kind of letter", "pln": ["(: cnet_isa_7099aee5d8 (IsA waw letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wax is a kind of lipid", "pln": ["(: cnet_isa_c726275a4c (IsA wax lipid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wax bean is a kind of fresh bean", "pln": ["(: cnet_isa_0c5138bab7 (IsA wax_bean fresh_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wax bean is a kind of common bean", "pln": ["(: cnet_isa_435daab92f (IsA wax_bean common_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wax begonia is a kind of begonia", "pln": ["(: cnet_isa_7132f12c35 (IsA wax_begonia begonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wax chandler is a kind of chandler", "pln": ["(: cnet_isa_384502b891 (IsA wax_chandler chandler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wax insect is a kind of scale insect", "pln": ["(: cnet_isa_fb427710ca (IsA wax_insect scale_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wax myrtle is a kind of shrub", "pln": ["(: cnet_isa_15c92fdf1b (IsA wax_myrtle shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wax palm is a kind of feather palm", "pln": ["(: cnet_isa_f1a0b7d690 (IsA wax_palm feather_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wax paper is a kind of paper", "pln": ["(: cnet_isa_7af7ceab4b (IsA wax_paper paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wax plant is a kind of hoya", "pln": ["(: cnet_isa_2396d178da (IsA wax_plant hoya) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waxflower is a kind of air plant", "pln": ["(: cnet_isa_e3deb0d6d3 (IsA waxflower air_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "waxiness is a kind of quality", "pln": ["(: cnet_isa_0b29a87897 (IsA waxiness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waxing is a kind of application", "pln": ["(: cnet_isa_dee29eb034 (IsA waxing application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waxing is a kind of increase", "pln": ["(: cnet_isa_25fd7c96b2 (IsA waxing increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waxmallow is a kind of mallow", "pln": ["(: cnet_isa_643db0fabd (IsA waxmallow mallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "waxwing is a kind of oscine", "pln": ["(: cnet_isa_04dc14a70b (IsA waxwing oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waxwork is a kind of effigy", "pln": ["(: cnet_isa_59ebe3280f (IsA waxwork effigy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "waxycap is a kind of agaric", "pln": ["(: cnet_isa_176e81da0d (IsA waxycap agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "way is a kind of course", "pln": ["(: cnet_isa_c4aa2242a8 (IsA way course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "way is a kind of journey", "pln": ["(: cnet_isa_f437bfeeb2 (IsA way journey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "way is a kind of artifact", "pln": ["(: cnet_isa_ed18edf5f4 (IsA way artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "way is a kind of distance", "pln": ["(: cnet_isa_5394ddfa2d (IsA way distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "way is a kind of category", "pln": ["(: cnet_isa_3d74d81e13 (IsA way category) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "way is a kind of choice", "pln": ["(: cnet_isa_f35d38b0d0 (IsA way choice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "way is a kind of share", "pln": ["(: cnet_isa_5615f13d37 (IsA way share) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "way is a kind of condition", "pln": ["(: cnet_isa_930f927409 (IsA way condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wayfarer is a kind of pedestrian", "pln": ["(: cnet_isa_3751f222f6 (IsA wayfarer pedestrian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wayfarer is a kind of traveler", "pln": ["(: cnet_isa_56447206e7 (IsA wayfarer traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wayfaring is a kind of travel", "pln": ["(: cnet_isa_9f8679c68a (IsA wayfaring travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wayfaring tree is a kind of shrub", "pln": ["(: cnet_isa_140304aefe (IsA wayfaring_tree shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "way is a kind of structure", "pln": ["(: cnet_isa_9a905736de (IsA way structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "way and mean is a kind of resource", "pln": ["(: cnet_isa_5b81e7e2b8 (IsA way_and_mean resource) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "way and mean committee is a kind of standing committee", "pln": ["(: cnet_isa_6b6acaedb7 (IsA way_and_mean_committee standing_committee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "way of world is a kind of behavior", "pln": ["(: cnet_isa_4172cefa7a (IsA way_of_world behavior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wayside is a kind of edge", "pln": ["(: cnet_isa_d76f1c8b83 (IsA wayside edge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "we is a kind of all mutant", "pln": ["(: cnet_isa_a27c0db123 (IsA we all_mutant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weak interaction is a kind of interaction", "pln": ["(: cnet_isa_62e5211572 (IsA weak_interaction interaction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weak part is a kind of weakness", "pln": ["(: cnet_isa_48a4ae1969 (IsA weak_part weakness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weak point is a kind of liability", "pln": ["(: cnet_isa_ff3a6e67e2 (IsA weak_point liability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weakener is a kind of agent", "pln": ["(: cnet_isa_e14f2acbd1 (IsA weakener agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weakening is a kind of decrease", "pln": ["(: cnet_isa_09f3da5529 (IsA weakening decrease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weakening is a kind of transformation", "pln": ["(: cnet_isa_67ea9bae28 (IsA weakening transformation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weakfish is a kind of sea trout", "pln": ["(: cnet_isa_6efcc1c939 (IsA weakfish sea_trout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weakfish is a kind of saltwater fish", "pln": ["(: cnet_isa_a6e50a969a (IsA weakfish saltwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weakling is a kind of person", "pln": ["(: cnet_isa_28555f1307 (IsA weakling person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weakly interacting massive particle is a kind of elementary particle", "pln": ["(: cnet_isa_80eb2124e2 (IsA weakly_interacting_massive_particle elementary_particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weakness is a kind of property", "pln": ["(: cnet_isa_7f6b08f26d (IsA weakness property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weakness is a kind of preference", "pln": ["(: cnet_isa_b3ffa9b218 (IsA weakness preference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weakness is a kind of misfortune", "pln": ["(: cnet_isa_51bfa2b2b6 (IsA weakness misfortune) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weald is a kind of country", "pln": ["(: cnet_isa_565752cf7a (IsA weald country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wealth is a kind of abundance", "pln": ["(: cnet_isa_7945926a53 (IsA wealth abundance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wealth is a kind of material resource", "pln": ["(: cnet_isa_e96aa1ef37 (IsA wealth material_resource) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wealth is a kind of property", "pln": ["(: cnet_isa_6b1d3fd91b (IsA wealth property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wealth is a kind of financial condition", "pln": ["(: cnet_isa_1fa33f3132 (IsA wealth financial_condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weaning is a kind of substitution", "pln": ["(: cnet_isa_0ebd202101 (IsA weaning substitution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weapon is a kind of instrument", "pln": ["(: cnet_isa_8e4de36621 (IsA weapon instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weapon is a kind of persuasion", "pln": ["(: cnet_isa_13e5bea44a (IsA weapon persuasion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weapon of mass destruction is a kind of weapon", "pln": ["(: cnet_isa_fcab68e527 (IsA weapon_of_mass_destruction weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weaponry is a kind of instrumentality", "pln": ["(: cnet_isa_8b825fbe06 (IsA weaponry instrumentality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weapon carrier is a kind of military vehicle", "pln": ["(: cnet_isa_69e88b42bd (IsA weapon_carrier military_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weapon carrier is a kind of self propelled vehicle", "pln": ["(: cnet_isa_ffc10bde32 (IsA weapon_carrier self_propelled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weapon plutonium is a kind of plutonium 239", "pln": ["(: cnet_isa_6c6ed432e8 (IsA weapon_plutonium plutonium_239) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wear is a kind of act", "pln": ["(: cnet_isa_54f841cd69 (IsA wear act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wear is a kind of deterioration", "pln": ["(: cnet_isa_744aa0cff0 (IsA wear deterioration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wearer is a kind of user", "pln": ["(: cnet_isa_32c146634e (IsA wearer user) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weasel is a kind of musteline mammal", "pln": ["(: cnet_isa_0bc809ea25 (IsA weasel musteline_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weasel is a kind of person", "pln": ["(: cnet_isa_c330b46ee5 (IsA weasel person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weasel word is a kind of reservation", "pln": ["(: cnet_isa_e0d021d0ce (IsA weasel_word reservation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weasel is a kind of animal", "pln": ["(: cnet_isa_3f9c521c6b (IsA weasel animal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weather is a kind of atmospheric phenomenon", "pln": ["(: cnet_isa_d3983f2531 (IsA weather atmospheric_phenomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weather bureau is a kind of administrative unit", "pln": ["(: cnet_isa_7a58cafadd (IsA weather_bureau administrative_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weather deck is a kind of upper deck", "pln": ["(: cnet_isa_eb025d63b6 (IsA weather_deck upper_deck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weather forecast is a kind of prognosis", "pln": ["(: cnet_isa_40dbbef676 (IsA weather_forecast prognosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weather map is a kind of map", "pln": ["(: cnet_isa_8bda9ed68d (IsA weather_map map) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weather radar is a kind of radar", "pln": ["(: cnet_isa_0c78c0039e (IsA weather_radar radar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weather satellite is a kind of satellite", "pln": ["(: cnet_isa_568bf71dc2 (IsA weather_satellite satellite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weather ship is a kind of vessel", "pln": ["(: cnet_isa_cf43c22875 (IsA weather_ship vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weather strip is a kind of strip", "pln": ["(: cnet_isa_c6a53fda2a (IsA weather_strip strip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weathercock is a kind of weathervane", "pln": ["(: cnet_isa_a0f22cd8c1 (IsA weathercock weathervane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weatherglass is a kind of barometer", "pln": ["(: cnet_isa_f15204e43e (IsA weatherglass barometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weatherliness is a kind of maneuverability", "pln": ["(: cnet_isa_eb9006d115 (IsA weatherliness maneuverability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weatherman is a kind of meteorologist", "pln": ["(: cnet_isa_ac548a0e00 (IsA weatherman meteorologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weathervane is a kind of mechanical device", "pln": ["(: cnet_isa_a118eda03c (IsA weathervane mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weave is a kind of design", "pln": ["(: cnet_isa_3e71ab6afb (IsA weave design) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weaver is a kind of oscine", "pln": ["(: cnet_isa_0a0620b50a (IsA weaver oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weaver is a kind of craftsman", "pln": ["(: cnet_isa_cb29311966 (IsA weaver craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weaving is a kind of handicraft", "pln": ["(: cnet_isa_9d5c53605f (IsA weaving handicraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "web is a kind of membrane", "pln": ["(: cnet_isa_1659950654 (IsA web membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "web is a kind of fabric", "pln": ["(: cnet_isa_c06725c0ad (IsA web fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "web is a kind of trap", "pln": ["(: cnet_isa_9008cacd6b (IsA web trap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "web is a kind of object", "pln": ["(: cnet_isa_9f3f217b7c (IsA web object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "web log is a kind of diary", "pln": ["(: cnet_isa_eec600cb48 (IsA web_log diary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "web page is a kind of text file", "pln": ["(: cnet_isa_b1b340fe2b (IsA web_page text_file) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "web site is a kind of computer", "pln": ["(: cnet_isa_ce29978fec (IsA web_site computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "web spinner is a kind of insect", "pln": ["(: cnet_isa_ee7463a367 (IsA web_spinner insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "web spinning mite is a kind of mite", "pln": ["(: cnet_isa_eda9c327df (IsA web_spinning_mite mite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "web toed salamander is a kind of salamander", "pln": ["(: cnet_isa_3914414335 (IsA web_toed_salamander salamander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "webbed foot is a kind of bird s foot", "pln": ["(: cnet_isa_499b9d6b8a (IsA webbed_foot bird_s_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "webbing is a kind of fabric", "pln": ["(: cnet_isa_eb2e7987e5 (IsA webbing fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "webbing is a kind of tape", "pln": ["(: cnet_isa_3ce8751121 (IsA webbing tape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "webbing is a kind of web", "pln": ["(: cnet_isa_9b3ab94451 (IsA webbing web) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "webbing clothe moth is a kind of clothe moth", "pln": ["(: cnet_isa_bc469d4258 (IsA webbing_clothe_moth clothe_moth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "webcam is a kind of digital camera", "pln": ["(: cnet_isa_a46154ce2f (IsA webcam digital_camera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weber s law is a kind of law", "pln": ["(: cnet_isa_dc1f7819ce (IsA weber_s_law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weber is a kind of flux unit", "pln": ["(: cnet_isa_e38f9ceea3 (IsA weber flux_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "webfoot is a kind of animal foot", "pln": ["(: cnet_isa_6526a05000 (IsA webfoot animal_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "webmaster is a kind of technician", "pln": ["(: cnet_isa_356924338c (IsA webmaster technician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "webworm is a kind of caterpillar", "pln": ["(: cnet_isa_9aa565c406 (IsA webworm caterpillar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "webworm moth is a kind of lasiocampid", "pln": ["(: cnet_isa_15a4f0c615 (IsA webworm_moth lasiocampid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wedding is a kind of ceremony", "pln": ["(: cnet_isa_eb97d8e6fa (IsA wedding ceremony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wedding is a kind of party", "pln": ["(: cnet_isa_087ef946ab (IsA wedding party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wedding anniversary is a kind of anniversary", "pln": ["(: cnet_isa_71b6e64b61 (IsA wedding_anniversary anniversary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wedding cake is a kind of cake", "pln": ["(: cnet_isa_c107426468 (IsA wedding_cake cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wedding day is a kind of day", "pln": ["(: cnet_isa_f50b420066 (IsA wedding_day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wedding guest is a kind of guest", "pln": ["(: cnet_isa_061866dbec (IsA wedding_guest guest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wedding march is a kind of processional march", "pln": ["(: cnet_isa_7d57dc8479 (IsA wedding_march processional_march) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wedding night is a kind of night", "pln": ["(: cnet_isa_0831b23d34 (IsA wedding_night night) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wedding picture is a kind of picture", "pln": ["(: cnet_isa_784759c338 (IsA wedding_picture picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wedding present is a kind of present", "pln": ["(: cnet_isa_c6a1a6fd19 (IsA wedding_present present) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wedding reception is a kind of reception", "pln": ["(: cnet_isa_a2d2e165e4 (IsA wedding_reception reception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wedding ring is a kind of ring", "pln": ["(: cnet_isa_bbdfa06455 (IsA wedding_ring ring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wedge is a kind of inclined plane", "pln": ["(: cnet_isa_870ee05de7 (IsA wedge inclined_plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wedge is a kind of iron", "pln": ["(: cnet_isa_334ca6b644 (IsA wedge iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wedge is a kind of triangle", "pln": ["(: cnet_isa_76828d4a02 (IsA wedge triangle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wedge bone is a kind of cut of beef", "pln": ["(: cnet_isa_ce5c3dbd6c (IsA wedge_bone cut_of_beef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wedge heel is a kind of heel", "pln": ["(: cnet_isa_a91c192c6a (IsA wedge_heel heel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wedgie is a kind of shoe", "pln": ["(: cnet_isa_b68b7f5a8a (IsA wedgie shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wednesday is a kind of weekday", "pln": ["(: cnet_isa_b0dd9c7787 (IsA wednesday weekday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wee is a kind of time", "pln": ["(: cnet_isa_4c34b2a741 (IsA wee time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wee small voice is a kind of conscience", "pln": ["(: cnet_isa_36f1650ce9 (IsA wee_small_voice conscience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weeb is a kind of egg", "pln": ["(: cnet_isa_1b6ff7d048 (IsA weeb egg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weed is a kind of vascular plant", "pln": ["(: cnet_isa_1eddd20587 (IsA weed vascular_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weeder is a kind of hand tool", "pln": ["(: cnet_isa_94c19a8697 (IsA weeder hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weeder is a kind of farmhand", "pln": ["(: cnet_isa_94b7979ada (IsA weeder farmhand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weed is a kind of band", "pln": ["(: cnet_isa_654dfbe5c5 (IsA weed band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weed is a kind of garment", "pln": ["(: cnet_isa_7e050794d2 (IsA weed garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "week is a kind of measurement of time", "pln": ["(: cnet_isa_24b448abd9 (IsA week measurement_of_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "week is a kind of time period", "pln": ["(: cnet_isa_4f3c26ceba (IsA week time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "week from monday is a kind of week", "pln": ["(: cnet_isa_deffd13d84 (IsA week_from_monday week) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "weekday is a kind of day of week", "pln": ["(: cnet_isa_00031b9d13 (IsA weekday day_of_week) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weekend is a kind of time period", "pln": ["(: cnet_isa_c050790be9 (IsA weekend time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weekend warrior is a kind of reservist", "pln": ["(: cnet_isa_3dbd72ab1f (IsA weekend_warrior reservist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weekend warrior is a kind of homeowner", "pln": ["(: cnet_isa_ad03ba543d (IsA weekend_warrior homeowner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weekender is a kind of bag", "pln": ["(: cnet_isa_fde32c7226 (IsA weekender bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weekender is a kind of vacationer", "pln": ["(: cnet_isa_ab040f5851 (IsA weekender vacationer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weekly is a kind of sery", "pln": ["(: cnet_isa_98971973fa (IsA weekly sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weeknight is a kind of night", "pln": ["(: cnet_isa_7623bffd59 (IsA weeknight night) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weeper is a kind of mourner", "pln": ["(: cnet_isa_90543b44a4 (IsA weeper mourner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weeper is a kind of unfortunate", "pln": ["(: cnet_isa_3e63d98f08 (IsA weeper unfortunate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weepiness is a kind of sadness", "pln": ["(: cnet_isa_60e9e11d5d (IsA weepiness sadness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weeping beech is a kind of beech", "pln": ["(: cnet_isa_a63a0a1559 (IsA weeping_beech beech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weeping love grass is a kind of love grass", "pln": ["(: cnet_isa_e1a0510052 (IsA weeping_love_grass love_grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weeping spruce is a kind of spruce", "pln": ["(: cnet_isa_c7def1fdaa (IsA weeping_spruce spruce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weeping tree broom is a kind of broom", "pln": ["(: cnet_isa_f1b0a651b1 (IsA weeping_tree_broom broom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weeping willow is a kind of willow", "pln": ["(: cnet_isa_eebedf85f6 (IsA weeping_willow willow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weevil is a kind of beetle", "pln": ["(: cnet_isa_090b33206d (IsA weevil beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wei is a kind of dynasty", "pln": ["(: cnet_isa_08a88c7060 (IsA wei dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weigela is a kind of shrub", "pln": ["(: cnet_isa_6b77d11aa3 (IsA weigela shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weighbridge is a kind of scale", "pln": ["(: cnet_isa_c84a047218 (IsA weighbridge scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weigher is a kind of official", "pln": ["(: cnet_isa_75f1f9a8b2 (IsA weigher official) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weight is a kind of artifact", "pln": ["(: cnet_isa_41be691c5d (IsA weight artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weight is a kind of sport equipment", "pln": ["(: cnet_isa_6c8c25c30c (IsA weight sport_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weight is a kind of importance", "pln": ["(: cnet_isa_5e7604c3c6 (IsA weight importance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weight is a kind of physical property", "pln": ["(: cnet_isa_3cd06be66a (IsA weight physical_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "weight is a kind of oppression", "pln": ["(: cnet_isa_d56686c5ea (IsA weight oppression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weight is a kind of coefficient", "pln": ["(: cnet_isa_4819ae9dbe (IsA weight coefficient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weight gaining is a kind of bodybuilding", "pln": ["(: cnet_isa_593735f0f7 (IsA weight_gaining bodybuilding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weight lifting is a kind of form of exercise", "pln": ["(: cnet_isa_964aa48794 (IsA weight_lifting form_of_exercise) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weight unit is a kind of unit of measurement", "pln": ["(: cnet_isa_536f4c52e7 (IsA weight_unit unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "weightlifter is a kind of athlete", "pln": ["(: cnet_isa_15a51bd7e4 (IsA weightlifter athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weightlifting is a kind of bodybuilding", "pln": ["(: cnet_isa_1b7497ae28 (IsA weightlifting bodybuilding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weil s disease is a kind of swamp fever", "pln": ["(: cnet_isa_9c81e0b999 (IsA weil_s_disease swamp_fever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "weimar republic is a kind of democracy", "pln": ["(: cnet_isa_d4c725ec62 (IsA weimar_republic democracy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weimaraner is a kind of hound", "pln": ["(: cnet_isa_1e6f7bffc3 (IsA weimaraner hound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weir is a kind of dam", "pln": ["(: cnet_isa_a1a6f6a583 (IsA weir dam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weir is a kind of fence", "pln": ["(: cnet_isa_b119032759 (IsA weir fence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weird is a kind of anglo saxon deity", "pln": ["(: cnet_isa_50204c86e0 (IsA weird anglo_saxon_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weird sister is a kind of norse deity", "pln": ["(: cnet_isa_48f6c2819b (IsA weird_sister norse_deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weissbier is a kind of ale", "pln": ["(: cnet_isa_34089edf99 (IsA weissbier ale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weizenbier is a kind of weissbier", "pln": ["(: cnet_isa_15610b8a86 (IsA weizenbier weissbier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weizenbock is a kind of weissbier", "pln": ["(: cnet_isa_7e13145428 (IsA weizenbock weissbier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weka is a kind of rail", "pln": ["(: cnet_isa_0201caf52e (IsA weka rail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "welcher is a kind of swindler", "pln": ["(: cnet_isa_f08a061016 (IsA welcher swindler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "welcome is a kind of greeting", "pln": ["(: cnet_isa_54c6d40352 (IsA welcome greeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "welcome is a kind of acceptance", "pln": ["(: cnet_isa_fb57409cee (IsA welcome acceptance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "welcome wagon is a kind of wheeled vehicle", "pln": ["(: cnet_isa_85cd90e168 (IsA welcome_wagon wheeled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "welcoming committee is a kind of committee", "pln": ["(: cnet_isa_916d78165f (IsA welcoming_committee committee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weld is a kind of joint", "pln": ["(: cnet_isa_32b67b7bb1 (IsA weld joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "welder s mask is a kind of mask", "pln": ["(: cnet_isa_ff7da7311a (IsA welder_s_mask mask) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "welder is a kind of craftsman", "pln": ["(: cnet_isa_2097b2febb (IsA welder craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "welding is a kind of fastening", "pln": ["(: cnet_isa_24e89005cb (IsA welding fastening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "weldment is a kind of assembly", "pln": ["(: cnet_isa_77ab3e6980 (IsA weldment assembly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "welfare case is a kind of case", "pln": ["(: cnet_isa_a3ae35111d (IsA welfare_case case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "welfare state is a kind of state", "pln": ["(: cnet_isa_a14faaa94b (IsA welfare_state state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "welfare work is a kind of work", "pln": ["(: cnet_isa_3c0eb82056 (IsA welfare_work work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "well is a kind of compartment", "pln": ["(: cnet_isa_5bba84850a (IsA well compartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "well is a kind of excavation", "pln": ["(: cnet_isa_3937aa3321 (IsA well excavation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "well is a kind of shaft", "pln": ["(: cnet_isa_91e80df97a (IsA well shaft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "well is a kind of vessel", "pln": ["(: cnet_isa_cff6f51a68 (IsA well vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "well is a kind of source", "pln": ["(: cnet_isa_c84b7ecb67 (IsA well source) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "well point is a kind of tube", "pln": ["(: cnet_isa_3ebdda9b0e (IsA well_point tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "well wishing is a kind of greeting", "pln": ["(: cnet_isa_076d633c3c (IsA well_wishing greeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wellbeing is a kind of prosperity", "pln": ["(: cnet_isa_f7669a8807 (IsA wellbeing prosperity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wellerism is a kind of rhetorical device", "pln": ["(: cnet_isa_8624423a16 (IsA wellerism rhetorical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wellhead is a kind of structure", "pln": ["(: cnet_isa_7941802ae9 (IsA wellhead structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wellhead is a kind of beginning", "pln": ["(: cnet_isa_e1563d97cf (IsA wellhead beginning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "welsh is a kind of cattle", "pln": ["(: cnet_isa_674563df9d (IsA welsh cattle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "welsh is a kind of brythonic", "pln": ["(: cnet_isa_46920b7083 (IsA welsh brythonic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "welsh onion is a kind of onion", "pln": ["(: cnet_isa_f3444faa67 (IsA welsh_onion onion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "welsh pony is a kind of pony", "pln": ["(: cnet_isa_ea5b8c9366 (IsA welsh_pony pony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "welsh poppy is a kind of poppy", "pln": ["(: cnet_isa_992d1eaf29 (IsA welsh_poppy poppy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "welsh rarebit is a kind of dish", "pln": ["(: cnet_isa_6408c97d98 (IsA welsh_rarebit dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "welsh springer spaniel is a kind of springer spaniel", "pln": ["(: cnet_isa_dfca7768e5 (IsA welsh_springer_spaniel springer_spaniel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "welsh terrier is a kind of wirehair", "pln": ["(: cnet_isa_03d0358625 (IsA welsh_terrier wirehair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "welt is a kind of seam", "pln": ["(: cnet_isa_db52883414 (IsA welt seam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "weltanschauung is a kind of position", "pln": ["(: cnet_isa_749791c4d6 (IsA weltanschauung position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "welted thistle is a kind of thistle", "pln": ["(: cnet_isa_6a6282d6c9 (IsA welted_thistle thistle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "welterweight is a kind of boxer", "pln": ["(: cnet_isa_ec76994ffa (IsA welterweight boxer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "welterweight is a kind of prizefighter", "pln": ["(: cnet_isa_c6ce1a1bdf (IsA welterweight prizefighter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "welterweight is a kind of wrestler", "pln": ["(: cnet_isa_ecf1a6b8ee (IsA welterweight wrestler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "welterweight is a kind of weight unit", "pln": ["(: cnet_isa_9b0fab3e49 (IsA welterweight weight_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "welwitschia is a kind of gymnosperm", "pln": ["(: cnet_isa_4105338d49 (IsA welwitschia gymnosperm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "welwitschiaceae is a kind of gymnosperm family", "pln": ["(: cnet_isa_4722c995e4 (IsA welwitschiaceae gymnosperm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wencher is a kind of adulterer", "pln": ["(: cnet_isa_ae0b604780 (IsA wencher adulterer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wendy s is a kind of fast food resturant", "pln": ["(: cnet_isa_ef27d208cd (IsA wendy_s fast_food_resturant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "werdnig hoffman disease is a kind of autosomal recessive disease", "pln": ["(: cnet_isa_c4d75b3623 (IsA werdnig_hoffman_disease autosomal_recessive_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "werewolf is a kind of monster", "pln": ["(: cnet_isa_e842ce9544 (IsA werewolf monster) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "werewolf is a kind of mythical monster", "pln": ["(: cnet_isa_ec38349dd7 (IsA werewolf mythical_monster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wernicke s aphasia is a kind of aphasia", "pln": ["(: cnet_isa_3a47c5e6e3 (IsA wernicke_s_aphasia aphasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wernicke s area is a kind of center", "pln": ["(: cnet_isa_b5000172ee (IsA wernicke_s_area center) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wernicke s encephalopathy is a kind of brain disorder", "pln": ["(: cnet_isa_2f64f63317 (IsA wernicke_s_encephalopathy brain_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wesleyan is a kind of methodist", "pln": ["(: cnet_isa_3e556433a0 (IsA wesleyan methodist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wesleyan methodist church is a kind of methodist denomination", "pln": ["(: cnet_isa_02c3f9ad24 (IsA wesleyan_methodist_church methodist_denomination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wesleyanism is a kind of protestantism", "pln": ["(: cnet_isa_c6254a4b16 (IsA wesleyanism protestantism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "west is a kind of cardinal compass point", "pln": ["(: cnet_isa_671618c5c3 (IsA west cardinal_compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "west is a kind of direction", "pln": ["(: cnet_isa_cc7bf37642 (IsA west direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "west is a kind of location", "pln": ["(: cnet_isa_3652367843 (IsA west location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "west african is a kind of niger congo", "pln": ["(: cnet_isa_857419936b (IsA west_african niger_congo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "west berliner is a kind of berliner", "pln": ["(: cnet_isa_9bdf4e89e0 (IsA west_berliner berliner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "west by north is a kind of compass point", "pln": ["(: cnet_isa_8f5d8dabef (IsA west_by_north compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "west by south is a kind of compass point", "pln": ["(: cnet_isa_8a6d9e370d (IsA west_by_south compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "west chadic is a kind of chad", "pln": ["(: cnet_isa_6e3287cb2f (IsA west_chadic chad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "west germanic is a kind of germanic", "pln": ["(: cnet_isa_755bfdf8bc (IsA west_germanic germanic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "west highland white terrier is a kind of terrier", "pln": ["(: cnet_isa_6d98ce067d (IsA west_highland_white_terrier terrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "west indian is a kind of american", "pln": ["(: cnet_isa_d0b88b5a8d (IsA west_indian american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "west indian jasmine is a kind of frangipani", "pln": ["(: cnet_isa_6d609f4fbb (IsA west_indian_jasmine frangipani) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "west midland is a kind of middle english", "pln": ["(: cnet_isa_945c0d1510 (IsA west_midland middle_english) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "west nile encephalitis is a kind of encephalitis", "pln": ["(: cnet_isa_572ecb35e8 (IsA west_nile_encephalitis encephalitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "west nile virus is a kind of flavivirus", "pln": ["(: cnet_isa_dda3fdc880 (IsA west_nile_virus flavivirus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "west northwest is a kind of compass point", "pln": ["(: cnet_isa_66c32350f7 (IsA west_northwest compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "west saxon is a kind of old english", "pln": ["(: cnet_isa_4dd4441243 (IsA west_saxon old_english) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "west saxon is a kind of saxon", "pln": ["(: cnet_isa_6693a67ea1 (IsA west_saxon saxon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "west side is a kind of side", "pln": ["(: cnet_isa_272fe50bf6 (IsA west_side side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "west sider is a kind of new yorker", "pln": ["(: cnet_isa_670ee31a54 (IsA west_sider new_yorker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "west southwest is a kind of compass point", "pln": ["(: cnet_isa_8c17bfe2e8 (IsA west_southwest compass_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "west virginia is a kind of state", "pln": ["(: cnet_isa_48a49083a6 (IsA west_virginia state) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "west virginian is a kind of american", "pln": ["(: cnet_isa_101addbb6d (IsA west_virginian american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "west wind is a kind of wind", "pln": ["(: cnet_isa_da47c59527 (IsA west_wind wind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western is a kind of feature", "pln": ["(: cnet_isa_763f412e5e (IsA western feature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western is a kind of sandwich", "pln": ["(: cnet_isa_89967dda14 (IsA western sandwich) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western australia coral pea is a kind of vine", "pln": ["(: cnet_isa_a818282f91 (IsA western_australia_coral_pea vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western big eared bat is a kind of long eared bat", "pln": ["(: cnet_isa_4729a15ac3 (IsA western_big_eared_bat long_eared_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western blackberry is a kind of blackberry", "pln": ["(: cnet_isa_d1e7dbdc84 (IsA western_blackberry blackberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "western blind snake is a kind of blind snake", "pln": ["(: cnet_isa_3b4f59bb37 (IsA western_blind_snake blind_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western box turtle is a kind of box turtle", "pln": ["(: cnet_isa_bdce2fdd40 (IsA western_box_turtle box_turtle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western buttercup is a kind of buttercup", "pln": ["(: cnet_isa_8759cc109b (IsA western_buttercup buttercup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western chimpanzee is a kind of chimpanzee", "pln": ["(: cnet_isa_196072c46f (IsA western_chimpanzee chimpanzee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western chokecherry is a kind of chokecherry", "pln": ["(: cnet_isa_dbfff21bb1 (IsA western_chokecherry chokecherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western coral snake is a kind of coral snake", "pln": ["(: cnet_isa_805f0d839e (IsA western_coral_snake coral_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western culture is a kind of culture", "pln": ["(: cnet_isa_3632d66786 (IsA western_culture culture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western diamondback is a kind of rattlesnake", "pln": ["(: cnet_isa_b8fcfdc159 (IsA western_diamondback rattlesnake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western fence lizard is a kind of fence lizard", "pln": ["(: cnet_isa_ab8b5227dd (IsA western_fence_lizard fence_lizard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western gray squirrel is a kind of tree squirrel", "pln": ["(: cnet_isa_c028a725c0 (IsA western_gray_squirrel tree_squirrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western hemisphere is a kind of hemisphere", "pln": ["(: cnet_isa_27386384b6 (IsA western_hemisphere hemisphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western hemlock is a kind of hemlock", "pln": ["(: cnet_isa_9beba89277 (IsA western_hemlock hemlock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western holly fern is a kind of holly fern", "pln": ["(: cnet_isa_53faad3d4c (IsA western_holly_fern holly_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western lady tress is a kind of lady tress", "pln": ["(: cnet_isa_219d38ea27 (IsA western_lady_tress lady_tress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western larch is a kind of larch", "pln": ["(: cnet_isa_1b8606f710 (IsA western_larch larch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western lowland gorilla is a kind of gorilla", "pln": ["(: cnet_isa_6f508165c4 (IsA western_lowland_gorilla gorilla) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western malayo polynesian is a kind of malayo polynesian", "pln": ["(: cnet_isa_599c6aee7c (IsA western_malayo_polynesian malayo_polynesian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western meadowlark is a kind of meadowlark", "pln": ["(: cnet_isa_f0372b2c4a (IsA western_meadowlark meadowlark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western mountain ash is a kind of mountain ash", "pln": ["(: cnet_isa_cda1261cec (IsA western_mountain_ash mountain_ash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western mugwort is a kind of mugwort", "pln": ["(: cnet_isa_58a1ca4c3f (IsA western_mugwort mugwort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western narrow mouthed toad is a kind of frog", "pln": ["(: cnet_isa_bff2d3a4b9 (IsA western_narrow_mouthed_toad frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western omelet is a kind of firm omelet", "pln": ["(: cnet_isa_544c4494dd (IsA western_omelet firm_omelet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western pasqueflower is a kind of pasqueflower", "pln": ["(: cnet_isa_f932aaa267 (IsA western_pasqueflower pasqueflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western pipistrel is a kind of vespertilian bat", "pln": ["(: cnet_isa_66eee77444 (IsA western_pipistrel vespertilian_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western poison oak is a kind of poisonous plant", "pln": ["(: cnet_isa_69f0d7d195 (IsA western_poison_oak poisonous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "western poppy is a kind of poppy", "pln": ["(: cnet_isa_0c77d837a2 (IsA western_poppy poppy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western ragweed is a kind of ragweed", "pln": ["(: cnet_isa_31f6ed2e30 (IsA western_ragweed ragweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western red backed salamander is a kind of salamander", "pln": ["(: cnet_isa_4a4027d7d8 (IsA western_red_backed_salamander salamander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western red cedar is a kind of arborvitae", "pln": ["(: cnet_isa_d157932455 (IsA western_red_cedar arborvitae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western redbud is a kind of shrub", "pln": ["(: cnet_isa_d648d66709 (IsA western_redbud shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western ribbon snake is a kind of garter snake", "pln": ["(: cnet_isa_8a786e4eb7 (IsA western_ribbon_snake garter_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western samoan monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_775ab11aff (IsA western_samoan_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western sand cherry is a kind of subshrub", "pln": ["(: cnet_isa_5ab8e8a3be (IsA western_sand_cherry subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western saxifrage is a kind of saxifrage", "pln": ["(: cnet_isa_138cf348d4 (IsA western_saxifrage saxifrage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western silvery aster is a kind of aster", "pln": ["(: cnet_isa_2db6435919 (IsA western_silvery_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western skink is a kind of skink", "pln": ["(: cnet_isa_aef54cef51 (IsA western_skink skink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western spadefoot is a kind of spadefoot", "pln": ["(: cnet_isa_7ba7ce60d1 (IsA western_spadefoot spadefoot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western tanager is a kind of tanager", "pln": ["(: cnet_isa_fd6caab396 (IsA western_tanager tanager) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "western toad is a kind of true toad", "pln": ["(: cnet_isa_eaf4d47452 (IsA western_toad true_toad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western wall flower is a kind of flower", "pln": ["(: cnet_isa_1071e95499 (IsA western_wall_flower flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western wheatgrass is a kind of wheatgrass", "pln": ["(: cnet_isa_b35ec695d0 (IsA western_wheatgrass wheatgrass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western whiptail is a kind of whiptail", "pln": ["(: cnet_isa_cd9a6aaeba (IsA western_whiptail whiptail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "western white pine is a kind of white pine", "pln": ["(: cnet_isa_8f7abd82d1 (IsA western_white_pine white_pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "western wood pewee is a kind of pewee", "pln": ["(: cnet_isa_1ca6747942 (IsA western_wood_pewee pewee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "westerner is a kind of inhabitant", "pln": ["(: cnet_isa_e01c517ff9 (IsA westerner inhabitant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "westernization is a kind of assimilation", "pln": ["(: cnet_isa_05e33c6f0b (IsA westernization assimilation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "westland pine is a kind of conifer", "pln": ["(: cnet_isa_9d85db6d6f (IsA westland_pine conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wet bar is a kind of bar", "pln": ["(: cnet_isa_cc8e867655 (IsA wet_bar bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wet bulb thermometer is a kind of thermometer", "pln": ["(: cnet_isa_8b65736f48 (IsA wet_bulb_thermometer thermometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wet cell is a kind of voltaic cell", "pln": ["(: cnet_isa_c2edd6a7b8 (IsA wet_cell voltaic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wet dream is a kind of dream", "pln": ["(: cnet_isa_2dcb3beff0 (IsA wet_dream dream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wet fly is a kind of fly", "pln": ["(: cnet_isa_554cd2284a (IsA wet_fly fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wet nurse is a kind of nanny", "pln": ["(: cnet_isa_19e9bf923d (IsA wet_nurse nanny) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wet suit is a kind of garment", "pln": ["(: cnet_isa_e944e81e95 (IsA wet_suit garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wether is a kind of sheep", "pln": ["(: cnet_isa_d3f6d4ac3a (IsA wether sheep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wetland is a kind of land", "pln": ["(: cnet_isa_9f3f0b979f (IsA wetland land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wetness is a kind of condition", "pln": ["(: cnet_isa_54a618c5d1 (IsA wetness condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wetter is a kind of workman", "pln": ["(: cnet_isa_99d846afe2 (IsA wetter workman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wetting is a kind of change of state", "pln": ["(: cnet_isa_d38cf51cb8 (IsA wetting change_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wetting agent is a kind of chemical agent", "pln": ["(: cnet_isa_f10fbd71b6 (IsA wetting_agent chemical_agent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whack is a kind of sound", "pln": ["(: cnet_isa_f2e99fd7e4 (IsA whack sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whacker is a kind of thing", "pln": ["(: cnet_isa_9e8d60ccad (IsA whacker thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whale is a kind of mammal", "pln": ["(: cnet_isa_4c1e2311c3 (IsA whale mammal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whale is a kind of marine mammal", "pln": ["(: cnet_isa_73bc5ad2dd (IsA whale marine_mammal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whale is a kind of cetacean", "pln": ["(: cnet_isa_4056d72f73 (IsA whale cetacean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whale louse is a kind of amphipod", "pln": ["(: cnet_isa_11da1c45f1 (IsA whale_louse amphipod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whale oil is a kind of animal oil", "pln": ["(: cnet_isa_2620229f6a (IsA whale_oil animal_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whale shark is a kind of shark", "pln": ["(: cnet_isa_1301a1e9b9 (IsA whale_shark shark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whale sucker is a kind of remora", "pln": ["(: cnet_isa_ec232c15d0 (IsA whale_sucker remora) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whaleboat is a kind of sea boat", "pln": ["(: cnet_isa_ea8f49e790 (IsA whaleboat sea_boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whalebone is a kind of horn", "pln": ["(: cnet_isa_f8592b1f05 (IsA whalebone horn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "whaler is a kind of ship", "pln": ["(: cnet_isa_6cd76c1c87 (IsA whaler ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whaler is a kind of mariner", "pln": ["(: cnet_isa_39e2c67461 (IsA whaler mariner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whale is a kind of large marine mammal", "pln": ["(: cnet_isa_79b7e37e7d (IsA whale large_marine_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whaling gun is a kind of gun", "pln": ["(: cnet_isa_5287968a67 (IsA whaling_gun gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whammy is a kind of reverse", "pln": ["(: cnet_isa_b3eaaf3fd7 (IsA whammy reverse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wharf rat is a kind of brown rat", "pln": ["(: cnet_isa_23265402d1 (IsA wharf_rat brown_rat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wharf rat is a kind of sneak thief", "pln": ["(: cnet_isa_f226176189 (IsA wharf_rat sneak_thief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wharfage is a kind of fee", "pln": ["(: cnet_isa_b08b998d2b (IsA wharfage fee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "what for is a kind of rebuke", "pln": ["(: cnet_isa_310bdd0852 (IsA what_for rebuke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whatchamacallit is a kind of object", "pln": ["(: cnet_isa_37368c0cfb (IsA whatchamacallit object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheat is a kind of grain", "pln": ["(: cnet_isa_c8b74efa2e (IsA wheat grain) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheat is a kind of grass", "pln": ["(: cnet_isa_37c47cfe6e (IsA wheat grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheat is a kind of cereal", "pln": ["(: cnet_isa_4c89f4eac8 (IsA wheat cereal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheat berry is a kind of grain", "pln": ["(: cnet_isa_76a6be8f09 (IsA wheat_berry grain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheat flag smut is a kind of flag smut fungus", "pln": ["(: cnet_isa_5aa6c6a506 (IsA wheat_flag_smut flag_smut_fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wheat flour is a kind of flour", "pln": ["(: cnet_isa_401972b1ea (IsA wheat_flour flour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheat future is a kind of future", "pln": ["(: cnet_isa_9e54f8a6fe (IsA wheat_future future) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheat germ is a kind of nutriment", "pln": ["(: cnet_isa_54074345b2 (IsA wheat_germ nutriment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wheat gluten is a kind of gluten", "pln": ["(: cnet_isa_952fde0b3f (IsA wheat_gluten gluten) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheat rust is a kind of rust", "pln": ["(: cnet_isa_dfd62e5cf3 (IsA wheat_rust rust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheat scab is a kind of head blight", "pln": ["(: cnet_isa_6ef52fe737 (IsA wheat_scab head_blight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheatear is a kind of thrush", "pln": ["(: cnet_isa_81e865709b (IsA wheatear thrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheatfield is a kind of grainfield", "pln": ["(: cnet_isa_b836eefbe1 (IsA wheatfield grainfield) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheatflake is a kind of cold cereal", "pln": ["(: cnet_isa_1ea57f25c7 (IsA wheatflake cold_cereal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheatgrass is a kind of grass", "pln": ["(: cnet_isa_a058f89355 (IsA wheatgrass grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wheatstone bridge is a kind of bridge", "pln": ["(: cnet_isa_18daca22ba (IsA wheatstone_bridge bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheatworm is a kind of nematode", "pln": ["(: cnet_isa_a81f3d3628 (IsA wheatworm nematode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheedler is a kind of persuader", "pln": ["(: cnet_isa_678d28b074 (IsA wheedler persuader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheel is a kind of helm", "pln": ["(: cnet_isa_c7ede41c0e (IsA wheel helm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheel is a kind of machine", "pln": ["(: cnet_isa_730dd11b4c (IsA wheel machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheel is a kind of force", "pln": ["(: cnet_isa_d7d39cf8b7 (IsA wheel force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wheel and axle is a kind of hoist", "pln": ["(: cnet_isa_6870327634 (IsA wheel_and_axle hoist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheel bug is a kind of assassin bug", "pln": ["(: cnet_isa_f95a13c061 (IsA wheel_bug assassin_bug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheel chart is a kind of slide chart", "pln": ["(: cnet_isa_6879e5fb1b (IsA wheel_chart slide_chart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wheel horse is a kind of draft horse", "pln": ["(: cnet_isa_ba9bdb06e4 (IsA wheel_horse draft_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheel lock is a kind of gunlock", "pln": ["(: cnet_isa_dd228f71d7 (IsA wheel_lock gunlock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheel tree is a kind of tree", "pln": ["(: cnet_isa_0b513cab1f (IsA wheel_tree tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheelbase is a kind of distance", "pln": ["(: cnet_isa_4553c6132e (IsA wheelbase distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheelchair is a kind of chair", "pln": ["(: cnet_isa_bc9f02e4ec (IsA wheelchair chair) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheeled vehicle is a kind of container", "pln": ["(: cnet_isa_d321d8f0fa (IsA wheeled_vehicle container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheeled vehicle is a kind of vehicle", "pln": ["(: cnet_isa_f510c5f825 (IsA wheeled_vehicle vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheeler is a kind of marcher", "pln": ["(: cnet_isa_b9d09a5d85 (IsA wheeler marcher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheeling is a kind of propulsion", "pln": ["(: cnet_isa_a3a192278e (IsA wheeling propulsion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheelwork is a kind of mechanical device", "pln": ["(: cnet_isa_3ba0c45622 (IsA wheelwork mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheelwright is a kind of wright", "pln": ["(: cnet_isa_52ee41287b (IsA wheelwright wright) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheeze is a kind of breathing", "pln": ["(: cnet_isa_37ee5fa20a (IsA wheeze breathing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheeze is a kind of scheme", "pln": ["(: cnet_isa_942eb4dfcc (IsA wheeze scheme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wheeziness is a kind of symptom", "pln": ["(: cnet_isa_91f0dbd195 (IsA wheeziness symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whelk is a kind of seasnail", "pln": ["(: cnet_isa_e45f7a2637 (IsA whelk seasnail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whelk is a kind of seafood", "pln": ["(: cnet_isa_189b856094 (IsA whelk seafood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whereabout is a kind of location", "pln": ["(: cnet_isa_cb51be8abc (IsA whereabout location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wherewithal is a kind of mean", "pln": ["(: cnet_isa_a886c5a040 (IsA wherewithal mean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wherry is a kind of barge", "pln": ["(: cnet_isa_6ee154cba4 (IsA wherry barge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wherry is a kind of dinghy", "pln": ["(: cnet_isa_b00804daca (IsA wherry dinghy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whetstone is a kind of stone", "pln": ["(: cnet_isa_36dca86fc0 (IsA whetstone stone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whey is a kind of dairy product", "pln": ["(: cnet_isa_26ad16753e (IsA whey dairy_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whey is a kind of serum", "pln": ["(: cnet_isa_2b7d04a897 (IsA whey serum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whiff is a kind of strikeout", "pln": ["(: cnet_isa_72dfcff409 (IsA whiff strikeout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whiff is a kind of lefteye flounder", "pln": ["(: cnet_isa_6f60bc1b50 (IsA whiff lefteye_flounder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whiffer is a kind of batter", "pln": ["(: cnet_isa_8846cde2a5 (IsA whiffer batter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whiffletree is a kind of crossbar", "pln": ["(: cnet_isa_22bd4dd4f7 (IsA whiffletree crossbar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whig is a kind of englishman", "pln": ["(: cnet_isa_337c1ef977 (IsA whig englishman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whig is a kind of liberal", "pln": ["(: cnet_isa_677ccd95ff (IsA whig liberal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "whig is a kind of politician", "pln": ["(: cnet_isa_cd1d77702d (IsA whig politician) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whig is a kind of supporter", "pln": ["(: cnet_isa_ac180cfadf (IsA whig supporter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whig party is a kind of party", "pln": ["(: cnet_isa_c03fb66759 (IsA whig_party party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "while is a kind of time", "pln": ["(: cnet_isa_b7b69f1fae (IsA while time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whimper is a kind of complaint", "pln": ["(: cnet_isa_82fae4adf6 (IsA whimper complaint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whinchat is a kind of old world chat", "pln": ["(: cnet_isa_57643d5777 (IsA whinchat old_world_chat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whiner is a kind of unpleasant person", "pln": ["(: cnet_isa_fcb1e8eb28 (IsA whiner unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whinstone is a kind of rock", "pln": ["(: cnet_isa_8229011a42 (IsA whinstone rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whip is a kind of blow", "pln": ["(: cnet_isa_8e4aa2088e (IsA whip blow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whip is a kind of instrument", "pln": ["(: cnet_isa_79a6c3c73a (IsA whip instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whip is a kind of dessert", "pln": ["(: cnet_isa_936b31fca7 (IsA whip dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whip is a kind of flexibility", "pln": ["(: cnet_isa_9c35c7b967 (IsA whip flexibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whip is a kind of legislator", "pln": ["(: cnet_isa_46ae49a663 (IsA whip legislator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "whip round is a kind of solicitation", "pln": ["(: cnet_isa_e8520eb118 (IsA whip_round solicitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whip scorpion is a kind of arachnid", "pln": ["(: cnet_isa_ad93aa34e8 (IsA whip_scorpion arachnid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "whip snake is a kind of colubrid snake", "pln": ["(: cnet_isa_26672769f3 (IsA whip_snake colubrid_snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whipcord is a kind of cord", "pln": ["(: cnet_isa_c0e1cdc6a6 (IsA whipcord cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whipcord is a kind of fabric", "pln": ["(: cnet_isa_63bae44eb3 (IsA whipcord fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whiplash is a kind of injury", "pln": ["(: cnet_isa_a7c2c12fef (IsA whiplash injury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "whipped cream is a kind of topping", "pln": ["(: cnet_isa_6cb297fa7c (IsA whipped_cream topping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whipper in is a kind of assistant", "pln": ["(: cnet_isa_98b31eecb1 (IsA whipper_in assistant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whippersnapper is a kind of cipher", "pln": ["(: cnet_isa_881b134efc (IsA whippersnapper cipher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whippet is a kind of greyhound", "pln": ["(: cnet_isa_c27bea9ed4 (IsA whippet greyhound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whipping is a kind of beating", "pln": ["(: cnet_isa_31f89e7d7b (IsA whipping beating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whipping cream is a kind of cream", "pln": ["(: cnet_isa_8526960ccb (IsA whipping_cream cream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whipping post is a kind of post", "pln": ["(: cnet_isa_ec7c3e1385 (IsA whipping_post post) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whipping top is a kind of top", "pln": ["(: cnet_isa_4337b6f3b0 (IsA whipping_top top) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whipple s penstemon is a kind of wildflower", "pln": ["(: cnet_isa_85993efe74 (IsA whipple_s_penstemon wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "whippoorwill is a kind of goatsucker", "pln": ["(: cnet_isa_94c9bf393f (IsA whippoorwill goatsucker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "whipstitch is a kind of embroidery stitch", "pln": ["(: cnet_isa_72b922a9a2 (IsA whipstitch embroidery_stitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "whiskey on rocks is a kind of drink", "pln": ["(: cnet_isa_1e1ecb7a70 (IsA whiskey_on_rocks drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whiptail is a kind of teiid lizard", "pln": ["(: cnet_isa_b857f25af8 (IsA whiptail teiid_lizard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whir is a kind of sound", "pln": ["(: cnet_isa_d836bf8136 (IsA whir sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whirl is a kind of movement", "pln": ["(: cnet_isa_6ecf273476 (IsA whirl movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whirl is a kind of round shape", "pln": ["(: cnet_isa_1d79883ab0 (IsA whirl round_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whirler is a kind of mechanism", "pln": ["(: cnet_isa_1d6d70eeb1 (IsA whirler mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whirligig beetle is a kind of beetle", "pln": ["(: cnet_isa_e0a3d5650e (IsA whirligig_beetle beetle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whirling dervish is a kind of dervish", "pln": ["(: cnet_isa_f15260cff0 (IsA whirling_dervish dervish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whirlpool is a kind of current", "pln": ["(: cnet_isa_1536bce150 (IsA whirlpool current) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whirlwind is a kind of windstorm", "pln": ["(: cnet_isa_0ed72fcc58 (IsA whirlwind windstorm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whisk is a kind of broom", "pln": ["(: cnet_isa_3b03c2d66d (IsA whisk broom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whisk is a kind of mixer", "pln": ["(: cnet_isa_e7bacd0979 (IsA whisk mixer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whisk fern is a kind of fern ally", "pln": ["(: cnet_isa_0d119f0c33 (IsA whisk_fern fern_ally) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whisker is a kind of hair", "pln": ["(: cnet_isa_0ab94ca0ae (IsA whisker hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whiskey is a kind of liquor", "pln": ["(: cnet_isa_283635a87d (IsA whiskey liquor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whiskey bottle is a kind of bottle", "pln": ["(: cnet_isa_e54ebd270d (IsA whiskey_bottle bottle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whiskey jug is a kind of jug", "pln": ["(: cnet_isa_0635b8dcff (IsA whiskey_jug jug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whiskey neat is a kind of drink", "pln": ["(: cnet_isa_2cee3b09e3 (IsA whiskey_neat drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whiskey on rock is a kind of drink", "pln": ["(: cnet_isa_6c76175c8f (IsA whiskey_on_rock drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "whiskey sour is a kind of sour", "pln": ["(: cnet_isa_9538967338 (IsA whiskey_sour sour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whisper is a kind of speaking", "pln": ["(: cnet_isa_7a3c2fedb7 (IsA whisper speaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "whisperer is a kind of speaker", "pln": ["(: cnet_isa_a55cb6fd87 (IsA whisperer speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "whispering campaign is a kind of campaigning", "pln": ["(: cnet_isa_c6daf5e403 (IsA whispering_campaign campaigning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whispering gallery is a kind of dome", "pln": ["(: cnet_isa_c092502cf1 (IsA whispering_gallery dome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whist is a kind of card game", "pln": ["(: cnet_isa_3b86856a90 (IsA whist card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whist drive is a kind of party", "pln": ["(: cnet_isa_249481c6de (IsA whist_drive party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whistle is a kind of acoustic device", "pln": ["(: cnet_isa_2fecd7b7a3 (IsA whistle acoustic_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "whistle is a kind of signaling device", "pln": ["(: cnet_isa_daab573117 (IsA whistle signaling_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whistle is a kind of wind instrument", "pln": ["(: cnet_isa_5e58f3dbb6 (IsA whistle wind_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whistle is a kind of signal", "pln": ["(: cnet_isa_b53c56e3bc (IsA whistle signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whistle is a kind of sound", "pln": ["(: cnet_isa_4bdea31434 (IsA whistle sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whistle blower is a kind of informant", "pln": ["(: cnet_isa_3cbdfba5f9 (IsA whistle_blower informant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whistle buoy is a kind of acoustic buoy", "pln": ["(: cnet_isa_db010fbb31 (IsA whistle_buoy acoustic_buoy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whistle stop is a kind of railway station", "pln": ["(: cnet_isa_be574ecf8f (IsA whistle_stop railway_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whistle stop tour is a kind of tour", "pln": ["(: cnet_isa_d5fdf61734 (IsA whistle_stop_tour tour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whistler is a kind of signaler", "pln": ["(: cnet_isa_0da972fb36 (IsA whistler signaler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whistling is a kind of music", "pln": ["(: cnet_isa_0ee2dc8c57 (IsA whistling music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whistling swan is a kind of tundra swan", "pln": ["(: cnet_isa_4b8e09aab2 (IsA whistling_swan tundra_swan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whit tuesday is a kind of tuesday", "pln": ["(: cnet_isa_c80d7f2921 (IsA whit_tuesday tuesday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white is a kind of color", "pln": ["(: cnet_isa_be463257de (IsA white color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white is a kind of colour", "pln": ["(: cnet_isa_be6ea96971 (IsA white colour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white is a kind of achromatic color", "pln": ["(: cnet_isa_c29aeef35d (IsA white achromatic_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white is a kind of man", "pln": ["(: cnet_isa_9d9055dacb (IsA white man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white admiral is a kind of nymphalid", "pln": ["(: cnet_isa_127fa5808f (IsA white_admiral nymphalid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white alder is a kind of alder", "pln": ["(: cnet_isa_cecbd82dc8 (IsA white_alder alder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white and black is a kind of opposite color", "pln": ["(: cnet_isa_101dd11f3d (IsA white_and_black opposite_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white anglo saxon protestant is a kind of protestant", "pln": ["(: cnet_isa_03c9eaac86 (IsA white_anglo_saxon_protestant protestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "white anglo saxon protestant is a kind of white person", "pln": ["(: cnet_isa_4caa966a66 (IsA white_anglo_saxon_protestant white_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "white ash is a kind of ash", "pln": ["(: cnet_isa_c1f68ab2b8 (IsA white_ash ash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white baneberry is a kind of baneberry", "pln": ["(: cnet_isa_a7b1f5f3e7 (IsA white_baneberry baneberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "white basswood is a kind of linden", "pln": ["(: cnet_isa_83b48604af (IsA white_basswood linden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white bellied swallow is a kind of swallow", "pln": ["(: cnet_isa_931658050f (IsA white_bellied_swallow swallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white berry yew is a kind of yew", "pln": ["(: cnet_isa_fbb9afdef3 (IsA white_berry_yew yew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "white book is a kind of report", "pln": ["(: cnet_isa_f698804ff8 (IsA white_book report) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white bread is a kind of bread", "pln": ["(: cnet_isa_a511d7c445 (IsA white_bread bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white breasted nuthatch is a kind of nuthatch", "pln": ["(: cnet_isa_e7f1f17599 (IsA white_breasted_nuthatch nuthatch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white broom is a kind of broom", "pln": ["(: cnet_isa_1960701730 (IsA white_broom broom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white bryony is a kind of bryony", "pln": ["(: cnet_isa_40f1c3eb81 (IsA white_bryony bryony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "white cake is a kind of cake", "pln": ["(: cnet_isa_4bb98c97f3 (IsA white_cake cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white cama is a kind of death cama", "pln": ["(: cnet_isa_f84537cd3b (IsA white_cama death_cama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white campion is a kind of silene", "pln": ["(: cnet_isa_41d2e785e6 (IsA white_campion silene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white chinned petrel is a kind of petrel", "pln": ["(: cnet_isa_72018557c6 (IsA white_chinned_petrel petrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white chocolate is a kind of chocolate", "pln": ["(: cnet_isa_8fb44008c5 (IsA white_chocolate chocolate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white clover is a kind of clover", "pln": ["(: cnet_isa_8d568d2347 (IsA white_clover clover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white coat hypertension is a kind of high blood pressure", "pln": ["(: cnet_isa_9ce6070990 (IsA white_coat_hypertension high_blood_pressure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white crappie is a kind of crappie", "pln": ["(: cnet_isa_e8b392c494 (IsA white_crappie crappie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white croaker is a kind of croaker", "pln": ["(: cnet_isa_ea66abae61 (IsA white_croaker croaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white crowned sparrow is a kind of new world sparrow", "pln": ["(: cnet_isa_365e6c3497 (IsA white_crowned_sparrow new_world_sparrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white currant is a kind of currant", "pln": ["(: cnet_isa_8fe0f75b39 (IsA white_currant currant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white cypress pine is a kind of cypress pine", "pln": ["(: cnet_isa_2251e7a9dc (IsA white_cypress_pine cypress_pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white dead nettle is a kind of dead nettle", "pln": ["(: cnet_isa_b6b348bb74 (IsA white_dead_nettle dead_nettle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white dipladenia is a kind of liana", "pln": ["(: cnet_isa_62919da4fd (IsA white_dipladenia liana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "white dogtooth violet is a kind of dogtooth violet", "pln": ["(: cnet_isa_1560ffebd3 (IsA white_dogtooth_violet dogtooth_violet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white dwarf is a kind of star", "pln": ["(: cnet_isa_b99e2cf77b (IsA white_dwarf star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white elephant is a kind of indian elephant", "pln": ["(: cnet_isa_a1782c3342 (IsA white_elephant indian_elephant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white elephant is a kind of possession", "pln": ["(: cnet_isa_6f3a6f343f (IsA white_elephant possession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white false indigo is a kind of wild indigo", "pln": ["(: cnet_isa_9aae106547 (IsA white_false_indigo wild_indigo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white feather is a kind of symbol", "pln": ["(: cnet_isa_5cc2e2ef56 (IsA white_feather symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "white fir is a kind of silver fir", "pln": ["(: cnet_isa_1d2fa0f4bc (IsA white_fir silver_fir) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white flag is a kind of flag", "pln": ["(: cnet_isa_456814c7bc (IsA white_flag flag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white footed mouse is a kind of wood mouse", "pln": ["(: cnet_isa_9fd9f45de9 (IsA white_footed_mouse wood_mouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white friar is a kind of friar", "pln": ["(: cnet_isa_134c2d15ed (IsA white_friar friar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white fringed orchis is a kind of fringed orchis", "pln": ["(: cnet_isa_72f1968591 (IsA white_fringed_orchis fringed_orchis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white fritillary is a kind of fritillary", "pln": ["(: cnet_isa_38c5136ff2 (IsA white_fritillary fritillary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white fungus is a kind of fungus", "pln": ["(: cnet_isa_07f4f98016 (IsA white_fungus fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white globe lily is a kind of globe lily", "pln": ["(: cnet_isa_4ef6c83b5f (IsA white_globe_lily globe_lily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "white gold is a kind of alloy", "pln": ["(: cnet_isa_5d33dbf369 (IsA white_gold alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white good is a kind of drygood", "pln": ["(: cnet_isa_330285c2be (IsA white_good drygood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white good is a kind of home appliance", "pln": ["(: cnet_isa_ee3534204a (IsA white_good home_appliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white headed stilt is a kind of stilt", "pln": ["(: cnet_isa_c438944764 (IsA white_headed_stilt stilt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white heat is a kind of hotness", "pln": ["(: cnet_isa_87f59bf270 (IsA white_heat hotness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white heather is a kind of heath", "pln": ["(: cnet_isa_1777bc0a53 (IsA white_heather heath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white hellebore is a kind of hellebore", "pln": ["(: cnet_isa_feee12e571 (IsA white_hellebore hellebore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white honeysuckle is a kind of honeysuckle", "pln": ["(: cnet_isa_cce4311a1a (IsA white_honeysuckle honeysuckle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white hope is a kind of hope", "pln": ["(: cnet_isa_68025ac13f (IsA white_hope hope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white house is a kind of in washington d c", "pln": ["(: cnet_isa_859cd1ceaa (IsA white_house in_washington_d_c) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white house is a kind of where president live", "pln": ["(: cnet_isa_ee775e2a5b (IsA white_house where_president_live) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white house is a kind of executive department", "pln": ["(: cnet_isa_c708084674 (IsA white_house executive_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white knight is a kind of company", "pln": ["(: cnet_isa_e25dd38f99 (IsA white_knight company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white lead is a kind of pigment", "pln": ["(: cnet_isa_de3a018d9d (IsA white_lead pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white leather is a kind of leather", "pln": ["(: cnet_isa_8ee706595e (IsA white_leather leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "white leaved rockrose is a kind of rockrose", "pln": ["(: cnet_isa_d2644452fd (IsA white_leaved_rockrose rockrose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white lettuce is a kind of rattlesnake root", "pln": ["(: cnet_isa_0efe2c17d2 (IsA white_lettuce rattlesnake_root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white lie is a kind of lie", "pln": ["(: cnet_isa_595e7f415c (IsA white_lie lie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white line is a kind of reference point", "pln": ["(: cnet_isa_28afde9397 (IsA white_line reference_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white lipped peccary is a kind of peccary", "pln": ["(: cnet_isa_2c74b52d18 (IsA white_lipped_peccary peccary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white lupine is a kind of lupine", "pln": ["(: cnet_isa_c147a13fcd (IsA white_lupine lupine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white magic is a kind of magic", "pln": ["(: cnet_isa_e0c91dccb6 (IsA white_magic magic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "white maire is a kind of olive tree", "pln": ["(: cnet_isa_73af1562b5 (IsA white_maire olive_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white mallee is a kind of mallee", "pln": ["(: cnet_isa_d291831f33 (IsA white_mallee mallee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white man s burden is a kind of duty", "pln": ["(: cnet_isa_72fb921c79 (IsA white_man_s_burden duty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white man is a kind of man", "pln": ["(: cnet_isa_8f6513c2d8 (IsA white_man man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white man is a kind of white person", "pln": ["(: cnet_isa_64dd68980d (IsA white_man white_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white mangrove is a kind of tree", "pln": ["(: cnet_isa_d56b22b51c (IsA white_mangrove tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "white marlin is a kind of marlin", "pln": ["(: cnet_isa_8fd7a94cc3 (IsA white_marlin marlin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white matter is a kind of nervous tissue", "pln": ["(: cnet_isa_f287b2e9c0 (IsA white_matter nervous_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white metal is a kind of alloy", "pln": ["(: cnet_isa_88cbcaf319 (IsA white_metal alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white milkweed is a kind of milkweed", "pln": ["(: cnet_isa_7e82d4c767 (IsA white_milkweed milkweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white mountain ash is a kind of eucalyptus", "pln": ["(: cnet_isa_4ca7bb88c0 (IsA white_mountain_ash eucalyptus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white mulberry is a kind of mulberry", "pln": ["(: cnet_isa_30acb40766 (IsA white_mulberry mulberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "white mullein is a kind of mullein", "pln": ["(: cnet_isa_91aa613284 (IsA white_mullein mullein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white mullet is a kind of mullet", "pln": ["(: cnet_isa_9fe0b7e9dd (IsA white_mullet mullet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white mustard is a kind of mustard", "pln": ["(: cnet_isa_12034c1e43 (IsA white_mustard mustard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white noise is a kind of noise", "pln": ["(: cnet_isa_7224f92cbc (IsA white_noise noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white oak is a kind of oak", "pln": ["(: cnet_isa_85aadd5eb8 (IsA white_oak oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white page is a kind of phonebook", "pln": ["(: cnet_isa_97abeac9ea (IsA white_page phonebook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "white pelican is a kind of pelican", "pln": ["(: cnet_isa_b7117738ac (IsA white_pelican pelican) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white pepper is a kind of pepper", "pln": ["(: cnet_isa_cb4d36486e (IsA white_pepper pepper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white perch is a kind of serranid fish", "pln": ["(: cnet_isa_f6e02e6dfa (IsA white_perch serranid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white person is a kind of person", "pln": ["(: cnet_isa_158fd4087d (IsA white_person person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white pine is a kind of pine", "pln": ["(: cnet_isa_11cee88f29 (IsA white_pine pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white poplar is a kind of poplar", "pln": ["(: cnet_isa_3b5e12ee07 (IsA white_poplar poplar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white prairie aster is a kind of aster", "pln": ["(: cnet_isa_4292268b38 (IsA white_prairie_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white rayed mule s ear is a kind of wildflower", "pln": ["(: cnet_isa_cb486050a9 (IsA white_rayed_mule_s_ear wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white rhinocero is a kind of rhinocero", "pln": ["(: cnet_isa_cf7d726a3c (IsA white_rhinocero rhinocero) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white rice is a kind of rice", "pln": ["(: cnet_isa_75c258aa75 (IsA white_rice rice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white rocket is a kind of herb", "pln": ["(: cnet_isa_e73922b033 (IsA white_rocket herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white rumped shrike is a kind of butcherbird", "pln": ["(: cnet_isa_bff9f0ef5b (IsA white_rumped_shrike butcherbird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white russian is a kind of cocktail", "pln": ["(: cnet_isa_42f36d5b92 (IsA white_russian cocktail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white rust is a kind of fungus", "pln": ["(: cnet_isa_6424102cf9 (IsA white_rust fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "white sale is a kind of sale", "pln": ["(: cnet_isa_b106f1cb0e (IsA white_sale sale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white sauce is a kind of sauce", "pln": ["(: cnet_isa_1399d4f7bb (IsA white_sauce sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white separatism is a kind of segregation", "pln": ["(: cnet_isa_b94753ad69 (IsA white_separatism segregation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white separatist is a kind of separatist", "pln": ["(: cnet_isa_ddccc00459 (IsA white_separatist separatist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white slave is a kind of prostitute", "pln": ["(: cnet_isa_0eda3e6f81 (IsA white_slave prostitute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white slaver is a kind of slaver", "pln": ["(: cnet_isa_9943a94810 (IsA white_slaver slaver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white slime mushroom is a kind of slime mushroom", "pln": ["(: cnet_isa_17fbf0f382 (IsA white_slime_mushroom slime_mushroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white snakeroot is a kind of herb", "pln": ["(: cnet_isa_949170d8ab (IsA white_snakeroot herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "white snapdragon is a kind of snapdragon", "pln": ["(: cnet_isa_ddf69f7ddf (IsA white_snapdragon snapdragon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white spruce is a kind of spruce", "pln": ["(: cnet_isa_cc4a24970c (IsA white_spruce spruce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white squire is a kind of white knight", "pln": ["(: cnet_isa_e00e0c7d5e (IsA white_squire white_knight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "white stork is a kind of stork", "pln": ["(: cnet_isa_0cd281bd07 (IsA white_stork stork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white stringybark is a kind of stringybark", "pln": ["(: cnet_isa_9cba2d9795 (IsA white_stringybark stringybark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white supremacist is a kind of agent non geographical", "pln": ["(: cnet_isa_587d69ec73 (IsA white_supremacist agent_non_geographical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "white supremacist is a kind of organization", "pln": ["(: cnet_isa_090d03e2e1 (IsA white_supremacist organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white supremacist is a kind of supremacist", "pln": ["(: cnet_isa_0d11b6de10 (IsA white_supremacist supremacist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white supremacy is a kind of racism", "pln": ["(: cnet_isa_3fcba4b8b0 (IsA white_supremacy racism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white sweet clover is a kind of melilotus", "pln": ["(: cnet_isa_0ded1f4be0 (IsA white_sweet_clover melilotus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white tai is a kind of tai", "pln": ["(: cnet_isa_1321fee8d0 (IsA white_tai tai) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white tailed jackrabbit is a kind of jackrabbit", "pln": ["(: cnet_isa_84b4519c55 (IsA white_tailed_jackrabbit jackrabbit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white tailed kite is a kind of kite", "pln": ["(: cnet_isa_ca4920d026 (IsA white_tailed_kite kite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white throated sparrow is a kind of new world sparrow", "pln": ["(: cnet_isa_d87f094ec3 (IsA white_throated_sparrow new_world_sparrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white tie is a kind of bow tie", "pln": ["(: cnet_isa_465b080d42 (IsA white_tie bow_tie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white topped aster is a kind of flower", "pln": ["(: cnet_isa_d02bf8f308 (IsA white_topped_aster flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white trash is a kind of poor person", "pln": ["(: cnet_isa_14d3ed41f2 (IsA white_trash poor_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white trash is a kind of white person", "pln": ["(: cnet_isa_77aa61cea5 (IsA white_trash white_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "white turnip is a kind of turnip", "pln": ["(: cnet_isa_85cf6b16f9 (IsA white_turnip turnip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white water is a kind of foam", "pln": ["(: cnet_isa_1508d97e2b (IsA white_water foam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white whale is a kind of dolphin", "pln": ["(: cnet_isa_803a653391 (IsA white_whale dolphin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white willow is a kind of willow", "pln": ["(: cnet_isa_f161c7ccc1 (IsA white_willow willow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white wine is a kind of wine", "pln": ["(: cnet_isa_0b5e7869bb (IsA white_wine wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "white wolf is a kind of wolf", "pln": ["(: cnet_isa_6824aee685 (IsA white_wolf wolf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white woman is a kind of white person", "pln": ["(: cnet_isa_c24ff0590f (IsA white_woman white_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white woman is a kind of woman", "pln": ["(: cnet_isa_90740e97a8 (IsA white_woman woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white wood aster is a kind of wood aster", "pln": ["(: cnet_isa_6bba6f7739 (IsA white_wood_aster wood_aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white yam is a kind of yam", "pln": ["(: cnet_isa_98ec0eb0f4 (IsA white_yam yam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "white zinnia is a kind of zinnia", "pln": ["(: cnet_isa_51046eb8e2 (IsA white_zinnia zinnia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whitebait is a kind of young fish", "pln": ["(: cnet_isa_2c5f9f78ff (IsA whitebait young_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whitebait is a kind of herring", "pln": ["(: cnet_isa_9180655616 (IsA whitebait herring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whitebark pine is a kind of white pine", "pln": ["(: cnet_isa_d5c0dacb1f (IsA whitebark_pine white_pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whiteboard is a kind of board", "pln": ["(: cnet_isa_3b9502975a (IsA whiteboard board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whitecap is a kind of wave", "pln": ["(: cnet_isa_e5eaef23c6 (IsA whitecap wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whitecup is a kind of cupflower", "pln": ["(: cnet_isa_074f73137f (IsA whitecup cupflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whited sepulcher is a kind of hypocrite", "pln": ["(: cnet_isa_8218650a20 (IsA whited_sepulcher hypocrite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whiteface is a kind of clown", "pln": ["(: cnet_isa_2e6262c064 (IsA whiteface clown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whitefish is a kind of food fish", "pln": ["(: cnet_isa_f046ea38e5 (IsA whitefish food_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whitefish is a kind of soft finned fish", "pln": ["(: cnet_isa_f50a6a6981 (IsA whitefish soft_finned_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whitefish is a kind of freshwater fish", "pln": ["(: cnet_isa_105d3e0258 (IsA whitefish freshwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whitefish is a kind of seafood", "pln": ["(: cnet_isa_a8c54464c9 (IsA whitefish seafood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whitefly is a kind of homopterous insect", "pln": ["(: cnet_isa_e5d8ce1b76 (IsA whitefly homopterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whitehall is a kind of civil service", "pln": ["(: cnet_isa_0aed970343 (IsA whitehall civil_service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whitehead is a kind of blemish", "pln": ["(: cnet_isa_c8dde0fba2 (IsA whitehead blemish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whitelash is a kind of backlash", "pln": ["(: cnet_isa_9cf3a9c545 (IsA whitelash backlash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whiteness is a kind of complexion", "pln": ["(: cnet_isa_4132e64855 (IsA whiteness complexion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whitening is a kind of change of color", "pln": ["(: cnet_isa_b4a2efd70a (IsA whitening change_of_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whiteout is a kind of snow", "pln": ["(: cnet_isa_52c9b5ae0e (IsA whiteout snow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whitetail prairie dog is a kind of prairie dog", "pln": ["(: cnet_isa_b966528204 (IsA whitetail_prairie_dog prairie_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whitethorn is a kind of hawthorn", "pln": ["(: cnet_isa_68cb5fc29d (IsA whitethorn hawthorn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whitetip shark is a kind of requiem shark", "pln": ["(: cnet_isa_654fc18689 (IsA whitetip_shark requiem_shark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whitetip shark is a kind of smooth dogfish", "pln": ["(: cnet_isa_7c986b4843 (IsA whitetip_shark smooth_dogfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "whitewash is a kind of clearing", "pln": ["(: cnet_isa_b1df5c403f (IsA whitewash clearing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whitewash is a kind of wash", "pln": ["(: cnet_isa_1e414694d9 (IsA whitewash wash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whitewash is a kind of defeat", "pln": ["(: cnet_isa_8cc0916b3b (IsA whitewash defeat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whitey is a kind of white person", "pln": ["(: cnet_isa_d5053c2697 (IsA whitey white_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whiting is a kind of gadoid", "pln": ["(: cnet_isa_398bb7d3e2 (IsA whiting gadoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "whiting is a kind of percoid fish", "pln": ["(: cnet_isa_64dbd9b586 (IsA whiting percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whiting is a kind of sciaenid fish", "pln": ["(: cnet_isa_471dac4e88 (IsA whiting sciaenid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whiting is a kind of saltwater fish", "pln": ["(: cnet_isa_40121bfe18 (IsA whiting saltwater_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whitlow grass is a kind of draba", "pln": ["(: cnet_isa_5596bec692 (IsA whitlow_grass draba) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whitlowwort is a kind of groundcover", "pln": ["(: cnet_isa_8d553e3037 (IsA whitlowwort groundcover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whitmonday is a kind of monday", "pln": ["(: cnet_isa_d8ccafcd54 (IsA whitmonday monday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whitsun is a kind of season", "pln": ["(: cnet_isa_962349e4de (IsA whitsun season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whittler is a kind of idler", "pln": ["(: cnet_isa_bcab6ae2b3 (IsA whittler idler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whiz is a kind of sound", "pln": ["(: cnet_isa_9d5e721833 (IsA whiz sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whizbang is a kind of firecracker", "pln": ["(: cnet_isa_baa849cc2e (IsA whizbang firecracker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whizbang is a kind of shell", "pln": ["(: cnet_isa_578b5b522a (IsA whizbang shell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "who follow idle pursuit is a kind of fool", "pln": ["(: cnet_isa_1d3ed136ba (IsA who_follow_idle_pursuit fool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whole is a kind of object", "pln": ["(: cnet_isa_96605b7f22 (IsA whole object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whole is a kind of concept", "pln": ["(: cnet_isa_33b03d6907 (IsA whole concept) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whole blood is a kind of blood", "pln": ["(: cnet_isa_cac461bd42 (IsA whole_blood blood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whole gale is a kind of gale", "pln": ["(: cnet_isa_828fbb6b6e (IsA whole_gale gale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whole life insurance is a kind of life insurance", "pln": ["(: cnet_isa_083cd7ecff (IsA whole_life_insurance life_insurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "whole milk is a kind of milk", "pln": ["(: cnet_isa_05c662827d (IsA whole_milk milk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whole note is a kind of note", "pln": ["(: cnet_isa_6826115ac1 (IsA whole_note note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whole rest is a kind of rest", "pln": ["(: cnet_isa_a1df71bd63 (IsA whole_rest rest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whole shebang is a kind of entirety", "pln": ["(: cnet_isa_5b4a8a815d (IsA whole_shebang entirety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whole snipe is a kind of snipe", "pln": ["(: cnet_isa_1a2ce0b86f (IsA whole_snipe snipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whole wheat flour is a kind of wheat flour", "pln": ["(: cnet_isa_b21910a17c (IsA whole_wheat_flour wheat_flour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whole word method is a kind of teaching reading", "pln": ["(: cnet_isa_d591837474 (IsA whole_word_method teaching_reading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wholeheartedness is a kind of willingness", "pln": ["(: cnet_isa_61c60e710c (IsA wholeheartedness willingness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wholeness is a kind of good health", "pln": ["(: cnet_isa_5f2414259f (IsA wholeness good_health) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wholesale is a kind of selling", "pln": ["(: cnet_isa_0775f10d38 (IsA wholesale selling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wholesomeness is a kind of quality", "pln": ["(: cnet_isa_b130e14090 (IsA wholesomeness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "whoop is a kind of cry", "pln": ["(: cnet_isa_a3080b52f3 (IsA whoop cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whoopee is a kind of revel", "pln": ["(: cnet_isa_bd8a426c6b (IsA whoopee revel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whooper is a kind of swan", "pln": ["(: cnet_isa_bcd9b6b784 (IsA whooper swan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whooping cough is a kind of infectious disease", "pln": ["(: cnet_isa_8f96ddc541 (IsA whooping_cough infectious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whooping cough is a kind of respiratory disease", "pln": ["(: cnet_isa_3bb4db8232 (IsA whooping_cough respiratory_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whooping crane is a kind of crane", "pln": ["(: cnet_isa_bd0005a19e (IsA whooping_crane crane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whopper is a kind of lie", "pln": ["(: cnet_isa_a70ef0606e (IsA whopper lie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whorehouse is a kind of building", "pln": ["(: cnet_isa_c3c019101c (IsA whorehouse building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whoremaster is a kind of customer", "pln": ["(: cnet_isa_52f1682a02 (IsA whoremaster customer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whoremaster is a kind of pimp", "pln": ["(: cnet_isa_5b450acf7b (IsA whoremaster pimp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whorled aster is a kind of aster", "pln": ["(: cnet_isa_5872318831 (IsA whorled_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whorled caraway is a kind of caraway", "pln": ["(: cnet_isa_2258f96f45 (IsA whorled_caraway caraway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whorled loosestrife is a kind of loosestrife", "pln": ["(: cnet_isa_372dcb0d15 (IsA whorled_loosestrife loosestrife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whorled milkweed is a kind of milkweed", "pln": ["(: cnet_isa_e407bd60e8 (IsA whorled_milkweed milkweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "why is a kind of reason", "pln": ["(: cnet_isa_dbfc449b5c (IsA why reason) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "whydah is a kind of weaver", "pln": ["(: cnet_isa_a072a286fe (IsA whydah weaver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wicca is a kind of pagan religion", "pln": ["(: cnet_isa_8adde929e2 (IsA wicca pagan_religion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wicca is a kind of religion", "pln": ["(: cnet_isa_fdbdf6f358 (IsA wicca religion) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wicca is a kind of cult", "pln": ["(: cnet_isa_29ce9a1712 (IsA wicca cult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wiccan is a kind of pagan", "pln": ["(: cnet_isa_01a5b892ec (IsA wiccan pagan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wichita is a kind of caddo", "pln": ["(: cnet_isa_60bdda06ad (IsA wichita caddo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wick is a kind of cord", "pln": ["(: cnet_isa_d62f580409 (IsA wick cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wicker is a kind of work", "pln": ["(: cnet_isa_64d02be762 (IsA wicker work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wicker is a kind of wood", "pln": ["(: cnet_isa_51f7e0ec69 (IsA wicker wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wicker basket is a kind of basket", "pln": ["(: cnet_isa_21a5b1a3f4 (IsA wicker_basket basket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wicket is a kind of cricket equipment", "pln": ["(: cnet_isa_a289351e04 (IsA wicket cricket_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wicket is a kind of croquet equipment", "pln": ["(: cnet_isa_345f024e32 (IsA wicket croquet_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wicket is a kind of gate", "pln": ["(: cnet_isa_ec5409c9ee (IsA wicket gate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wicket is a kind of opening", "pln": ["(: cnet_isa_28b62923da (IsA wicket opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wicket keeper is a kind of cricketer", "pln": ["(: cnet_isa_048728c896 (IsA wicket_keeper cricketer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wickiup is a kind of lodge", "pln": ["(: cnet_isa_ea62cd60d9 (IsA wickiup lodge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "widal test is a kind of agglutination test", "pln": ["(: cnet_isa_86f8f2af69 (IsA widal_test agglutination_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wide angle len is a kind of camera len", "pln": ["(: cnet_isa_ac281e6121 (IsA wide_angle_len camera_len) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wide area network is a kind of computer network", "pln": ["(: cnet_isa_12dc5d9284 (IsA wide_area_network computer_network) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wide screen is a kind of screen", "pln": ["(: cnet_isa_1d635de0bd (IsA wide_screen screen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wide wale is a kind of cord", "pln": ["(: cnet_isa_57f8bdcdb3 (IsA wide_wale cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "widebody aircraft is a kind of airliner", "pln": ["(: cnet_isa_7d0a40b15b (IsA widebody_aircraft airliner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "widegrip pushup is a kind of pushup", "pln": ["(: cnet_isa_9338fcba64 (IsA widegrip_pushup pushup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wideness is a kind of width", "pln": ["(: cnet_isa_37098bb729 (IsA wideness width) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "widening is a kind of change of shape", "pln": ["(: cnet_isa_77e97e4353 (IsA widening change_of_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "widening is a kind of increase", "pln": ["(: cnet_isa_d537e2bb54 (IsA widening increase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "widgeon is a kind of duck", "pln": ["(: cnet_isa_00a549a9a2 (IsA widgeon duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "widow s peak is a kind of point", "pln": ["(: cnet_isa_cebae2116a (IsA widow_s_peak point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "widow s walk is a kind of lookout", "pln": ["(: cnet_isa_ac331c535d (IsA widow_s_walk lookout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "widow is a kind of woman", "pln": ["(: cnet_isa_1f58198a33 (IsA widow woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "widower is a kind of man", "pln": ["(: cnet_isa_41c29feca4 (IsA widower man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "widowhood is a kind of marital status", "pln": ["(: cnet_isa_85afce154b (IsA widowhood marital_status) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "widowhood is a kind of time of life", "pln": ["(: cnet_isa_282700036d (IsA widowhood time_of_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "width is a kind of dimension", "pln": ["(: cnet_isa_8559f2e1a4 (IsA width dimension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wiener roast is a kind of cookout", "pln": ["(: cnet_isa_61a5b8d851 (IsA wiener_roast cookout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wiesenboden is a kind of soil", "pln": ["(: cnet_isa_43b00d4c10 (IsA wiesenboden soil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wife is a kind of spouse", "pln": ["(: cnet_isa_226a09b399 (IsA wife spouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wife is a kind of woman", "pln": ["(: cnet_isa_90a40330b4 (IsA wife woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wig is a kind of hairpiece", "pln": ["(: cnet_isa_998e9c7a0c (IsA wig hairpiece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wig is a kind of chiding", "pln": ["(: cnet_isa_e5560e1d3c (IsA wig chiding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wiggle is a kind of motion", "pln": ["(: cnet_isa_d56e186353 (IsA wiggle motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wiggle room is a kind of flexibility", "pln": ["(: cnet_isa_e6b7b17355 (IsA wiggle_room flexibility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wiggler is a kind of larva", "pln": ["(: cnet_isa_dd943e2940 (IsA wiggler larva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wiggler is a kind of person", "pln": ["(: cnet_isa_5dd0463e40 (IsA wiggler person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wiggliness is a kind of looseness", "pln": ["(: cnet_isa_7cf9538607 (IsA wiggliness looseness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wight is a kind of county", "pln": ["(: cnet_isa_afad3ba719 (IsA wight county) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wigmaker is a kind of maker", "pln": ["(: cnet_isa_c651dd38e6 (IsA wigmaker maker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wigwam is a kind of lodge", "pln": ["(: cnet_isa_70ec68830b (IsA wigwam lodge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wiki is a kind of website", "pln": ["(: cnet_isa_c456ada8df (IsA wiki website) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild is a kind of state", "pln": ["(: cnet_isa_3c63a0eef2 (IsA wild state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wild angelica is a kind of angelica", "pln": ["(: cnet_isa_ed81bdb45a (IsA wild_angelica angelica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild apple is a kind of apple tree", "pln": ["(: cnet_isa_43b4a182c8 (IsA wild_apple apple_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild ass is a kind of ass", "pln": ["(: cnet_isa_bc1f616da6 (IsA wild_ass ass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild basil is a kind of herb", "pln": ["(: cnet_isa_a72d8abbcb (IsA wild_basil herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild boar is a kind of swine", "pln": ["(: cnet_isa_46be93f720 (IsA wild_boar swine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild buckwheat is a kind of eriogonum", "pln": ["(: cnet_isa_36218fe32e (IsA wild_buckwheat eriogonum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild cabbage is a kind of crucifer", "pln": ["(: cnet_isa_1c4a96a9e8 (IsA wild_cabbage crucifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild calla is a kind of marsh plant", "pln": ["(: cnet_isa_5d7ba646b7 (IsA wild_calla marsh_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild card is a kind of playing card", "pln": ["(: cnet_isa_630af0237a (IsA wild_card playing_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild card is a kind of factor", "pln": ["(: cnet_isa_5b7ab76eb4 (IsA wild_card factor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild carrot is a kind of wildflower", "pln": ["(: cnet_isa_8937518155 (IsA wild_carrot wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild celery is a kind of herb", "pln": ["(: cnet_isa_3d4582ed08 (IsA wild_celery herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild cherry is a kind of cherry", "pln": ["(: cnet_isa_dcbe3e312c (IsA wild_cherry cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild cherry is a kind of fruit", "pln": ["(: cnet_isa_8fa9bcdabf (IsA wild_cherry fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild china tree is a kind of soapberry", "pln": ["(: cnet_isa_4ed4e09b9c (IsA wild_china_tree soapberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wild cinnamon is a kind of shrub", "pln": ["(: cnet_isa_3a70cc6d92 (IsA wild_cinnamon shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild cotton is a kind of cotton", "pln": ["(: cnet_isa_891fce30a4 (IsA wild_cotton cotton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild crab is a kind of wild apple", "pln": ["(: cnet_isa_5a7140e009 (IsA wild_crab wild_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild dog is a kind of canine", "pln": ["(: cnet_isa_ee79224efd (IsA wild_dog canine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild duck is a kind of duck", "pln": ["(: cnet_isa_00af557c84 (IsA wild_duck duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild fig is a kind of tree", "pln": ["(: cnet_isa_759f23d420 (IsA wild_fig tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild garlic is a kind of alliaceous plant", "pln": ["(: cnet_isa_06276e9aae (IsA wild_garlic alliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild geranium is a kind of cranesbill", "pln": ["(: cnet_isa_56ed907cf8 (IsA wild_geranium cranesbill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild ginger is a kind of herb", "pln": ["(: cnet_isa_8cdf775b66 (IsA wild_ginger herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild goat is a kind of goat", "pln": ["(: cnet_isa_3ec4ecd08d (IsA wild_goat goat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild goose chase is a kind of pursuit", "pln": ["(: cnet_isa_c3248a62c1 (IsA wild_goose_chase pursuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild hollyhock is a kind of mallow", "pln": ["(: cnet_isa_97477c1efd (IsA wild_hollyhock mallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild horse is a kind of horse", "pln": ["(: cnet_isa_8a116df4db (IsA wild_horse horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild hyacinth is a kind of cama", "pln": ["(: cnet_isa_70b33beb7b (IsA wild_hyacinth cama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild hyacinth is a kind of liliaceous plant", "pln": ["(: cnet_isa_87822f110a (IsA wild_hyacinth liliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild hydrangea is a kind of hydrangea", "pln": ["(: cnet_isa_72bfbd7e7d (IsA wild_hydrangea hydrangea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild indigo is a kind of woody plant", "pln": ["(: cnet_isa_0e15df9cb4 (IsA wild_indigo woody_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild leek is a kind of alliaceous plant", "pln": ["(: cnet_isa_f9996767b5 (IsA wild_leek alliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild licorice is a kind of bedstraw", "pln": ["(: cnet_isa_ca4a14500c (IsA wild_licorice bedstraw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild licorice is a kind of herb", "pln": ["(: cnet_isa_a9ff27178c (IsA wild_licorice herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild licorice is a kind of milk vetch", "pln": ["(: cnet_isa_68e5f2baa5 (IsA wild_licorice milk_vetch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild lily of valley is a kind of wintergreen", "pln": ["(: cnet_isa_92b16ce6fb (IsA wild_lily_of_valley wintergreen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild lupine is a kind of subshrub", "pln": ["(: cnet_isa_2e204b5fc6 (IsA wild_lupine subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild madder is a kind of bedstraw", "pln": ["(: cnet_isa_fea04308ea (IsA wild_madder bedstraw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild man is a kind of primitive", "pln": ["(: cnet_isa_72365ef2ac (IsA wild_man primitive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild mango is a kind of fruit tree", "pln": ["(: cnet_isa_604bb64683 (IsA wild_mango fruit_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild medlar is a kind of tree", "pln": ["(: cnet_isa_df76497ddf (IsA wild_medlar tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild oat is a kind of oat", "pln": ["(: cnet_isa_e98f855e3c (IsA wild_oat oat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild olive is a kind of oleaster", "pln": ["(: cnet_isa_9f2fb3c012 (IsA wild_olive oleaster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild onion is a kind of alliaceous plant", "pln": ["(: cnet_isa_b9763d7ed8 (IsA wild_onion alliaceous_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild pansy is a kind of viola", "pln": ["(: cnet_isa_d347091284 (IsA wild_pansy viola) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild parsley is a kind of umbellifer", "pln": ["(: cnet_isa_5c53a061db (IsA wild_parsley umbellifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild parsnip is a kind of parsnip", "pln": ["(: cnet_isa_b44d4781f8 (IsA wild_parsnip parsnip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild parsnip is a kind of weed", "pln": ["(: cnet_isa_cdfcec0e26 (IsA wild_parsnip weed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wild pea is a kind of legume", "pln": ["(: cnet_isa_7004488c79 (IsA wild_pea legume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild peach is a kind of shrub", "pln": ["(: cnet_isa_b3082818a9 (IsA wild_peach shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild pink is a kind of silene", "pln": ["(: cnet_isa_6b48e3a58b (IsA wild_pink silene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild pitch is a kind of pitch", "pln": ["(: cnet_isa_ffba7eb922 (IsA wild_pitch pitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild plum is a kind of plum", "pln": ["(: cnet_isa_830bcfccce (IsA wild_plum plum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild potato is a kind of vine", "pln": ["(: cnet_isa_5c1c36b771 (IsA wild_potato vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wild potato vine is a kind of morning glory", "pln": ["(: cnet_isa_68c8dcaf2d (IsA wild_potato_vine morning_glory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild raspberry is a kind of red raspberry", "pln": ["(: cnet_isa_11792bd4a4 (IsA wild_raspberry red_raspberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild red oat is a kind of oat", "pln": ["(: cnet_isa_d47c72ddfb (IsA wild_red_oat oat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild rice is a kind of grain", "pln": ["(: cnet_isa_27d017b084 (IsA wild_rice grain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild rice is a kind of cereal", "pln": ["(: cnet_isa_3f7ad137d5 (IsA wild_rice cereal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild rosemary is a kind of shrub", "pln": ["(: cnet_isa_ae8152de36 (IsA wild_rosemary shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild rye is a kind of grass", "pln": ["(: cnet_isa_094b098005 (IsA wild_rye grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild sage is a kind of sage", "pln": ["(: cnet_isa_8bf4ade437 (IsA wild_sage sage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild sarsaparilla is a kind of subshrub", "pln": ["(: cnet_isa_9d2c343e38 (IsA wild_sarsaparilla subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild senna is a kind of herb", "pln": ["(: cnet_isa_afeab605d5 (IsA wild_senna herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild service tree is a kind of service tree", "pln": ["(: cnet_isa_f5942db050 (IsA wild_service_tree service_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild sheep is a kind of bovid", "pln": ["(: cnet_isa_bbb9458481 (IsA wild_sheep bovid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild spinach is a kind of green", "pln": ["(: cnet_isa_3ff627087e (IsA wild_spinach green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild spurge is a kind of spurge", "pln": ["(: cnet_isa_192fd7fa46 (IsA wild_spurge spurge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild strawberry is a kind of strawberry", "pln": ["(: cnet_isa_b7b9579880 (IsA wild_strawberry strawberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild tamarind is a kind of tree", "pln": ["(: cnet_isa_582feea736 (IsA wild_tamarind tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild teasel is a kind of teasel", "pln": ["(: cnet_isa_19df4a5be6 (IsA wild_teasel teasel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild thyme is a kind of thyme", "pln": ["(: cnet_isa_dff8640d4b (IsA wild_thyme thyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild tobacco is a kind of tobacco", "pln": ["(: cnet_isa_5c47e40611 (IsA wild_tobacco tobacco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild vanilla is a kind of herb", "pln": ["(: cnet_isa_6103a968e6 (IsA wild_vanilla herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild west show is a kind of show", "pln": ["(: cnet_isa_674f03e7eb (IsA wild_west_show show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild wheat is a kind of wheat", "pln": ["(: cnet_isa_c1b7ed8cdc (IsA wild_wheat wheat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wild yam is a kind of vine", "pln": ["(: cnet_isa_4258f9bc53 (IsA wild_yam vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wildcat is a kind of cat", "pln": ["(: cnet_isa_ad76286064 (IsA wildcat cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wildcat strike is a kind of strike", "pln": ["(: cnet_isa_45a9df70e0 (IsA wildcat_strike strike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wildcat well is a kind of oil well", "pln": ["(: cnet_isa_d91c5a6377 (IsA wildcat_well oil_well) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wildcatter is a kind of oilman", "pln": ["(: cnet_isa_0a1f9fe241 (IsA wildcatter oilman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wilderness is a kind of profusion", "pln": ["(: cnet_isa_3332b43bd7 (IsA wilderness profusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wilderness is a kind of geographical area", "pln": ["(: cnet_isa_9af2612e73 (IsA wilderness geographical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wilderness is a kind of disfavor", "pln": ["(: cnet_isa_4f4de623ac (IsA wilderness disfavor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wildfire is a kind of conflagration", "pln": ["(: cnet_isa_cc4d5cb02c (IsA wildfire conflagration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wildflower is a kind of angiosperm", "pln": ["(: cnet_isa_24ec11c270 (IsA wildflower angiosperm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wildflower is a kind of wilding", "pln": ["(: cnet_isa_67144a36fd (IsA wildflower wilding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wildfowl is a kind of bird", "pln": ["(: cnet_isa_85320595f4 (IsA wildfowl bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wilding is a kind of rampage", "pln": ["(: cnet_isa_1bcdbbc8a9 (IsA wilding rampage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wilding is a kind of plant", "pln": ["(: cnet_isa_ee18c6cd91 (IsA wilding plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wildlife is a kind of life", "pln": ["(: cnet_isa_6693ba2aa7 (IsA wildlife life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wildness is a kind of intractability", "pln": ["(: cnet_isa_52695f98c9 (IsA wildness intractability) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wildness is a kind of unruliness", "pln": ["(: cnet_isa_94b069f298 (IsA wildness unruliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wildness is a kind of passion", "pln": ["(: cnet_isa_6c7d599b0e (IsA wildness passion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "will is a kind of purpose", "pln": ["(: cnet_isa_5684db3fa4 (IsA will purpose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "will is a kind of legal document", "pln": ["(: cnet_isa_ccf36e4edb (IsA will legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "will o wisp is a kind of illusion", "pln": ["(: cnet_isa_b82350fcad (IsA will_o_wisp illusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "willet is a kind of tattler", "pln": ["(: cnet_isa_90ad19d4af (IsA willet tattler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "william gibson is a kind of writer", "pln": ["(: cnet_isa_750f5d240a (IsA william_gibson writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "william syndrome is a kind of syndrome", "pln": ["(: cnet_isa_07d86de7f5 (IsA william_syndrome syndrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "willy is a kind of edginess", "pln": ["(: cnet_isa_669f1921c3 (IsA willy edginess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "willingness is a kind of disposition", "pln": ["(: cnet_isa_ab0ceb1084 (IsA willingness disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "willow is a kind of textile machine", "pln": ["(: cnet_isa_fdaecefb4f (IsA willow textile_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "willow is a kind of tree", "pln": ["(: cnet_isa_7637c18602 (IsA willow tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "willow aster is a kind of aster", "pln": ["(: cnet_isa_cd0027ecc9 (IsA willow_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "willow oak is a kind of oak", "pln": ["(: cnet_isa_ac6a809cfa (IsA willow_oak oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "willowherb is a kind of herb", "pln": ["(: cnet_isa_43e9934210 (IsA willowherb herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "willowware is a kind of chinaware", "pln": ["(: cnet_isa_c0d87ee4a0 (IsA willowware chinaware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wilm tumor is a kind of sarcoma", "pln": ["(: cnet_isa_0e006e24fe (IsA wilm_tumor sarcoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wilson s phalarope is a kind of phalarope", "pln": ["(: cnet_isa_ce2b8fe748 (IsA wilson_s_phalarope phalarope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wilson s snipe is a kind of snipe", "pln": ["(: cnet_isa_80a99e7c01 (IsA wilson_s_snipe snipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wilson s warbler is a kind of new world warbler", "pln": ["(: cnet_isa_cb35eff702 (IsA wilson_s_warbler new_world_warbler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wilt is a kind of weakening", "pln": ["(: cnet_isa_a37ce7c156 (IsA wilt weakening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wilt is a kind of plant disease", "pln": ["(: cnet_isa_69e8ac7a26 (IsA wilt plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wilton is a kind of rug", "pln": ["(: cnet_isa_bc072dc4ec (IsA wilton rug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wimp is a kind of weakling", "pln": ["(: cnet_isa_4af9870610 (IsA wimp weakling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wimple is a kind of headdress", "pln": ["(: cnet_isa_f72dd09480 (IsA wimple headdress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "win is a kind of victory", "pln": ["(: cnet_isa_220076665a (IsA win victory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wince is a kind of startle", "pln": ["(: cnet_isa_ca81a82057 (IsA wince startle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wince is a kind of facial expression", "pln": ["(: cnet_isa_bc5ea75af1 (IsA wince facial_expression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wincey is a kind of fabric", "pln": ["(: cnet_isa_283cd6b769 (IsA wincey fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winceyette is a kind of flannelette", "pln": ["(: cnet_isa_00e395b903 (IsA winceyette flannelette) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winch is a kind of lifting device", "pln": ["(: cnet_isa_d655c7e9cf (IsA winch lifting_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winchester college is a kind of public school", "pln": ["(: cnet_isa_cd75b01c0b (IsA winchester_college public_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wind is a kind of air moving", "pln": ["(: cnet_isa_ed8e418120 (IsA wind air_moving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wind is a kind of blowing", "pln": ["(: cnet_isa_b24e060978 (IsA wind blowing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wind is a kind of moving air", "pln": ["(: cnet_isa_50ee20591b (IsA wind moving_air) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wind is a kind of exhalation", "pln": ["(: cnet_isa_93fadf3d1c (IsA wind exhalation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wind is a kind of rotation", "pln": ["(: cnet_isa_085f1dcc2a (IsA wind rotation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wind is a kind of talk", "pln": ["(: cnet_isa_e2f985fbcd (IsA wind talk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wind is a kind of influence", "pln": ["(: cnet_isa_bac2d5b7ef (IsA wind influence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wind is a kind of weather", "pln": ["(: cnet_isa_40036dcab6 (IsA wind weather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wind chime is a kind of decoration", "pln": ["(: cnet_isa_37b90da76b (IsA wind_chime decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wind farm is a kind of power station", "pln": ["(: cnet_isa_b735db02c0 (IsA wind_farm power_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wind gap is a kind of col", "pln": ["(: cnet_isa_e511c66ecc (IsA wind_gap col) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wind generation is a kind of alternative energy", "pln": ["(: cnet_isa_9561bd0e9b (IsA wind_generation alternative_energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wind instrument is a kind of musical instrument", "pln": ["(: cnet_isa_01d9759c00 (IsA wind_instrument musical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wind poppy is a kind of poppy", "pln": ["(: cnet_isa_85525825dc (IsA wind_poppy poppy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wind rose is a kind of weather map", "pln": ["(: cnet_isa_abed70c18b (IsA wind_rose weather_map) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wind tee is a kind of weathervane", "pln": ["(: cnet_isa_4f6968ad57 (IsA wind_tee weathervane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wind tunnel is a kind of structure", "pln": ["(: cnet_isa_5fd2f21bae (IsA wind_tunnel structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wind turbine is a kind of turbine", "pln": ["(: cnet_isa_67a82d07b6 (IsA wind_turbine turbine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "windage is a kind of deflection", "pln": ["(: cnet_isa_73670fdf94 (IsA windage deflection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "windage is a kind of diameter", "pln": ["(: cnet_isa_32ab8fb412 (IsA windage diameter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "windage is a kind of exposure", "pln": ["(: cnet_isa_e7688c288a (IsA windage exposure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "windage is a kind of drag", "pln": ["(: cnet_isa_f788824078 (IsA windage drag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "windbreak is a kind of hedge", "pln": ["(: cnet_isa_aa4e04c8f7 (IsA windbreak hedge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "windburn is a kind of erythema", "pln": ["(: cnet_isa_66c448f9bd (IsA windburn erythema) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winder is a kind of mechanical device", "pln": ["(: cnet_isa_21c6f53067 (IsA winder mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winder is a kind of worker", "pln": ["(: cnet_isa_033cffb1eb (IsA winder worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "windfall is a kind of edible fruit", "pln": ["(: cnet_isa_78cc950664 (IsA windfall edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "windfall profit is a kind of net income", "pln": ["(: cnet_isa_0d9ca893e5 (IsA windfall_profit net_income) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "windjammer is a kind of sailing vessel", "pln": ["(: cnet_isa_0a529b9173 (IsA windjammer sailing_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "windmill is a kind of generator", "pln": ["(: cnet_isa_d5d293cd29 (IsA windmill generator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "windmill is a kind of mill", "pln": ["(: cnet_isa_9d28da974f (IsA windmill mill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "windmill grass is a kind of finger grass", "pln": ["(: cnet_isa_6e1cee816b (IsA windmill_grass finger_grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "window is a kind of framework", "pln": ["(: cnet_isa_26e8258548 (IsA window framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "window is a kind of opening", "pln": ["(: cnet_isa_a8aad824b7 (IsA window opening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "window is a kind of panel", "pln": ["(: cnet_isa_50ed91f9f9 (IsA window panel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "window is a kind of display", "pln": ["(: cnet_isa_aae8b3550d (IsA window display) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "window is a kind of time period", "pln": ["(: cnet_isa_4cef19c384 (IsA window time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "window blind is a kind of blind", "pln": ["(: cnet_isa_ca0b6f840c (IsA window_blind blind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "window box is a kind of box", "pln": ["(: cnet_isa_b01db0dc36 (IsA window_box box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "window cleaner is a kind of cleaner", "pln": ["(: cnet_isa_dfcce4b827 (IsA window_cleaner cleaner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "window dresser is a kind of craftsman", "pln": ["(: cnet_isa_36abed603d (IsA window_dresser craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "window dressing is a kind of decoration", "pln": ["(: cnet_isa_7753e575e9 (IsA window_dressing decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "window envelope is a kind of envelope", "pln": ["(: cnet_isa_1df6788482 (IsA window_envelope envelope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "window frame is a kind of framework", "pln": ["(: cnet_isa_918ef5a42a (IsA window_frame framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "window oyster is a kind of oyster", "pln": ["(: cnet_isa_eb048508b4 (IsA window_oyster oyster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "window screen is a kind of screen", "pln": ["(: cnet_isa_db239ff1a2 (IsA window_screen screen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "window seat is a kind of bench", "pln": ["(: cnet_isa_b8465c44f8 (IsA window_seat bench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "window shade is a kind of window blind", "pln": ["(: cnet_isa_f4b97b14c6 (IsA window_shade window_blind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "window washer is a kind of washer", "pln": ["(: cnet_isa_69ba131487 (IsA window_washer washer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "window washing is a kind of wash", "pln": ["(: cnet_isa_8682aa83f0 (IsA window_washing wash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "windowpane is a kind of lefteye flounder", "pln": ["(: cnet_isa_af9e412372 (IsA windowpane lefteye_flounder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "windowpane is a kind of pane", "pln": ["(: cnet_isa_911aebf1ed (IsA windowpane pane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "window is a kind of operating system", "pln": ["(: cnet_isa_e03b85ceaf (IsA window operating_system) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "windowsill is a kind of sill", "pln": ["(: cnet_isa_6fe692f724 (IsA windowsill sill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "windshield is a kind of screen", "pln": ["(: cnet_isa_466390a208 (IsA windshield screen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "windshield wiper is a kind of mechanical device", "pln": ["(: cnet_isa_e19f64b40c (IsA windshield_wiper mechanical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "windsock is a kind of visual signal", "pln": ["(: cnet_isa_e5373c171c (IsA windsock visual_signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "windsor is a kind of dynasty", "pln": ["(: cnet_isa_86df36533d (IsA windsor dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "windsor chair is a kind of straight chair", "pln": ["(: cnet_isa_dbbfeb09d1 (IsA windsor_chair straight_chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "windsor green is a kind of chrome green", "pln": ["(: cnet_isa_4c57bbe9a6 (IsA windsor_green chrome_green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "windsor knot is a kind of slipknot", "pln": ["(: cnet_isa_f73d98ad43 (IsA windsor_knot slipknot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "windsor tie is a kind of necktie", "pln": ["(: cnet_isa_25cf56d72a (IsA windsor_tie necktie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "windstorm is a kind of storm", "pln": ["(: cnet_isa_d6f5deebf9 (IsA windstorm storm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "windward is a kind of direction", "pln": ["(: cnet_isa_744592a778 (IsA windward direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "windward is a kind of windward", "pln": ["(: cnet_isa_4a5932c259 (IsA windward windward) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "windward is a kind of side", "pln": ["(: cnet_isa_ecae30c016 (IsA windward side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wine is a kind of alcoholic beverage", "pln": ["(: cnet_isa_bb072e8859 (IsA wine alcoholic_beverage) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wine is a kind of alcoholic drink", "pln": ["(: cnet_isa_4061fba0c1 (IsA wine alcoholic_drink) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wine is a kind of beverage", "pln": ["(: cnet_isa_b698e62851 (IsA wine beverage) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wine is a kind of fermented grape juice", "pln": ["(: cnet_isa_7e5e9e3f99 (IsA wine fermented_grape_juice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wine is a kind of dark red", "pln": ["(: cnet_isa_9b5d76136f (IsA wine dark_red) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wine is a kind of alcohol", "pln": ["(: cnet_isa_c3b8fc5b32 (IsA wine alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wine bar is a kind of bar", "pln": ["(: cnet_isa_72bda7aa47 (IsA wine_bar bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wine bottle is a kind of bottle", "pln": ["(: cnet_isa_74fe18a3b1 (IsA wine_bottle bottle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wine bucket is a kind of bucket", "pln": ["(: cnet_isa_f985563c8f (IsA wine_bucket bucket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wine cask is a kind of barrel", "pln": ["(: cnet_isa_49173e5548 (IsA wine_cask barrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wine maker s yeast is a kind of yeast", "pln": ["(: cnet_isa_11d713be06 (IsA wine_maker_s_yeast yeast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wine palm is a kind of sago palm", "pln": ["(: cnet_isa_b57182964b (IsA wine_palm sago_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wine sauce is a kind of sauce", "pln": ["(: cnet_isa_8a1d6d54cc (IsA wine_sauce sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wine taster is a kind of taster", "pln": ["(: cnet_isa_c78f807954 (IsA wine_taster taster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wine tasting is a kind of gathering", "pln": ["(: cnet_isa_511433c362 (IsA wine_tasting gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wine vinegar is a kind of vinegar", "pln": ["(: cnet_isa_afd3cd4f72 (IsA wine_vinegar vinegar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wineberry is a kind of raspberry", "pln": ["(: cnet_isa_d06c707bde (IsA wineberry raspberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wineglass is a kind of glass", "pln": ["(: cnet_isa_29aba20dee (IsA wineglass glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wineglass heel is a kind of heel", "pln": ["(: cnet_isa_a02ea55e8a (IsA wineglass_heel heel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winepress is a kind of press", "pln": ["(: cnet_isa_93895550a2 (IsA winepress press) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winery is a kind of factory", "pln": ["(: cnet_isa_a7aec597a0 (IsA winery factory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winery is a kind of place", "pln": ["(: cnet_isa_cbddf11083 (IsA winery place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winery is a kind of establishment", "pln": ["(: cnet_isa_556559325a (IsA winery establishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winery is a kind of plant", "pln": ["(: cnet_isa_1de8477e89 (IsA winery plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "winesap is a kind of eating apple", "pln": ["(: cnet_isa_5bb28258f2 (IsA winesap eating_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wineskin is a kind of skin", "pln": ["(: cnet_isa_f0fc8e66ce (IsA wineskin skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wing is a kind of organ", "pln": ["(: cnet_isa_24602cd05d (IsA wing organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wing is a kind of airfoil", "pln": ["(: cnet_isa_0b0d1bfcd2 (IsA wing airfoil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wing is a kind of stage", "pln": ["(: cnet_isa_7920717d1c (IsA wing stage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wing is a kind of helping", "pln": ["(: cnet_isa_94f237a4f2 (IsA wing helping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wing is a kind of social group", "pln": ["(: cnet_isa_6081d761ff (IsA wing social_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wing is a kind of position", "pln": ["(: cnet_isa_2e44897e96 (IsA wing position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wing is a kind of air unit", "pln": ["(: cnet_isa_35880ce542 (IsA wing air_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wing is a kind of hockey player", "pln": ["(: cnet_isa_98b25d1ff5 (IsA wing hockey_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wing case is a kind of wing", "pln": ["(: cnet_isa_c310c9f9af (IsA wing_case wing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wing chair is a kind of easy chair", "pln": ["(: cnet_isa_1bc5081c9f (IsA wing_chair easy_chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wing commander is a kind of commanding officer", "pln": ["(: cnet_isa_b3ca3e35c6 (IsA wing_commander commanding_officer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wing loading is a kind of loading", "pln": ["(: cnet_isa_76d0efe681 (IsA wing_loading loading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wing nut is a kind of nut", "pln": ["(: cnet_isa_9d363852be (IsA wing_nut nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wing nut is a kind of nut tree", "pln": ["(: cnet_isa_073b01f90f (IsA wing_nut nut_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wing shooting is a kind of shooting", "pln": ["(: cnet_isa_778b353b25 (IsA wing_shooting shooting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wing tip is a kind of shoe", "pln": ["(: cnet_isa_5110cbaa99 (IsA wing_tip shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wing tip is a kind of toecap", "pln": ["(: cnet_isa_70d0a3cc84 (IsA wing_tip toecap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wingback is a kind of back", "pln": ["(: cnet_isa_c9c507b212 (IsA wingback back) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winged bean is a kind of vine", "pln": ["(: cnet_isa_cf35cc8abd (IsA winged_bean vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winged elm is a kind of elm", "pln": ["(: cnet_isa_e6ec39b539 (IsA winged_elm elm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winged everlasting is a kind of ammobium", "pln": ["(: cnet_isa_fc61f571b8 (IsA winged_everlasting ammobium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winged pea is a kind of herb", "pln": ["(: cnet_isa_cfa87a3513 (IsA winged_pea herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winged pigweed is a kind of shrub", "pln": ["(: cnet_isa_9c60b84bdf (IsA winged_pigweed shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winged spindle tree is a kind of spindle tree", "pln": ["(: cnet_isa_affd147579 (IsA winged_spindle_tree spindle_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "winger is a kind of athlete", "pln": ["(: cnet_isa_f4d898b4a0 (IsA winger athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wingman is a kind of pilot", "pln": ["(: cnet_isa_e826489fea (IsA wingman pilot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wing is a kind of mean", "pln": ["(: cnet_isa_720c655d36 (IsA wing mean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wing is a kind of insignia", "pln": ["(: cnet_isa_bea2872b83 (IsA wing insignia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wingspan is a kind of distance", "pln": ["(: cnet_isa_8c6048b257 (IsA wingspan distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wingspread is a kind of distance", "pln": ["(: cnet_isa_b03819b85b (IsA wingspread distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wingstem is a kind of crownbeard", "pln": ["(: cnet_isa_8a272a5d9a (IsA wingstem crownbeard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wink is a kind of facial expression", "pln": ["(: cnet_isa_d54268ec64 (IsA wink facial_expression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winker is a kind of blind", "pln": ["(: cnet_isa_e6a6b5bcf0 (IsA winker blind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winker is a kind of person", "pln": ["(: cnet_isa_41e772a821 (IsA winker person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winnebago is a kind of siouan", "pln": ["(: cnet_isa_8a663626d7 (IsA winnebago siouan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winner s circle is a kind of area", "pln": ["(: cnet_isa_497d600b50 (IsA winner_s_circle area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winner is a kind of contestant", "pln": ["(: cnet_isa_1138e80dd1 (IsA winner contestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winner is a kind of gambler", "pln": ["(: cnet_isa_d8394ae383 (IsA winner gambler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winning is a kind of spectacular feeling", "pln": ["(: cnet_isa_59d3d432ab (IsA winning spectacular_feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winning is a kind of success", "pln": ["(: cnet_isa_bee57f4727 (IsA winning success) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winning post is a kind of post", "pln": ["(: cnet_isa_f8ab183567 (IsA winning_post post) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winning prize is a kind of wonderful sensation", "pln": ["(: cnet_isa_3ebd1dfd26 (IsA winning_prize wonderful_sensation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winning streak is a kind of streak", "pln": ["(: cnet_isa_acc84105eb (IsA winning_streak streak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winning is a kind of financial gain", "pln": ["(: cnet_isa_e28e9c1359 (IsA winning financial_gain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winnipeg is a kind of in canada", "pln": ["(: cnet_isa_f591ea0171 (IsA winnipeg in_canada) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "winnow is a kind of separation", "pln": ["(: cnet_isa_58a0ccf337 (IsA winnow separation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winsomeness is a kind of appeal", "pln": ["(: cnet_isa_d4fc3d6e47 (IsA winsomeness appeal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winter s bark is a kind of bark", "pln": ["(: cnet_isa_3c83b1c509 (IsA winter_s_bark bark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winter s bark is a kind of tree", "pln": ["(: cnet_isa_aa8ea47704 (IsA winter_s_bark tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winter is a kind of colder than summer", "pln": ["(: cnet_isa_cb4673656f (IsA winter colder_than_summer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winter is a kind of season", "pln": ["(: cnet_isa_bd842142dc (IsA winter season) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winter is a kind of seasonal condition", "pln": ["(: cnet_isa_8a3ba4134f (IsA winter seasonal_condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winter is a kind of very cold season", "pln": ["(: cnet_isa_be72775375 (IsA winter very_cold_season) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winter aconite is a kind of herb", "pln": ["(: cnet_isa_9b05545d8a (IsA winter_aconite herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winter cress is a kind of cress", "pln": ["(: cnet_isa_654de50d12 (IsA winter_cress cress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winter crookneck is a kind of winter squash", "pln": ["(: cnet_isa_53413bd010 (IsA winter_crookneck winter_squash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "winter crookneck squash is a kind of winter squash", "pln": ["(: cnet_isa_c12b717807 (IsA winter_crookneck_squash winter_squash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winter currant is a kind of currant", "pln": ["(: cnet_isa_d57b48d0fb (IsA winter_currant currant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winter flounder is a kind of righteye flounder", "pln": ["(: cnet_isa_f4191258f7 (IsA winter_flounder righteye_flounder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winter hazel is a kind of shrub", "pln": ["(: cnet_isa_f439fcab0e (IsA winter_hazel shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winter heath is a kind of erica", "pln": ["(: cnet_isa_52fd1fa3c6 (IsA winter_heath erica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winter heliotrope is a kind of herb", "pln": ["(: cnet_isa_76cf382962 (IsA winter_heliotrope herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "winter jasmine is a kind of jasmine", "pln": ["(: cnet_isa_e6fd45475f (IsA winter_jasmine jasmine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winter melon is a kind of muskmelon", "pln": ["(: cnet_isa_1395c9863b (IsA winter_melon muskmelon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "winter melon is a kind of sweet melon", "pln": ["(: cnet_isa_44c1578692 (IsA winter_melon sweet_melon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winter mushroom is a kind of agaric", "pln": ["(: cnet_isa_af2c40f1b0 (IsA winter_mushroom agaric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winter olympic game is a kind of olympic game", "pln": ["(: cnet_isa_d75cfa19dc (IsA winter_olympic_game olympic_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winter purslane is a kind of indian lettuce", "pln": ["(: cnet_isa_081f9f2046 (IsA winter_purslane indian_lettuce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winter savory is a kind of savory", "pln": ["(: cnet_isa_ddbba94b11 (IsA winter_savory savory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winter solstice is a kind of solstice", "pln": ["(: cnet_isa_db349dc200 (IsA winter_solstice solstice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winter squash is a kind of squash", "pln": ["(: cnet_isa_034082bc84 (IsA winter_squash squash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "winter sweet is a kind of shrub", "pln": ["(: cnet_isa_b1f586e2fa (IsA winter_sweet shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winter urn is a kind of sarcosomataceae", "pln": ["(: cnet_isa_4d0cd50502 (IsA winter_urn sarcosomataceae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "winter wren is a kind of wren", "pln": ["(: cnet_isa_31a3ae5968 (IsA winter_wren wren) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "winteraceae is a kind of magnoliid dicot family", "pln": ["(: cnet_isa_e6e6b44b98 (IsA winteraceae magnoliid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wintergreen is a kind of berry", "pln": ["(: cnet_isa_d5d5ffc8c6 (IsA wintergreen berry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wintergreen is a kind of herb", "pln": ["(: cnet_isa_deacbbc6c2 (IsA wintergreen herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wintergreen oil is a kind of flavorer", "pln": ["(: cnet_isa_255dea570a (IsA wintergreen_oil flavorer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wintun is a kind of copehan", "pln": ["(: cnet_isa_942f9d5299 (IsA wintun copehan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wintun is a kind of penutian", "pln": ["(: cnet_isa_2e9699c1b6 (IsA wintun penutian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wipeout is a kind of spill", "pln": ["(: cnet_isa_0ddb185108 (IsA wipeout spill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wiper is a kind of contact", "pln": ["(: cnet_isa_2f80e70de2 (IsA wiper contact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wiper is a kind of worker", "pln": ["(: cnet_isa_8f648ac0f6 (IsA wiper worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wiper motor is a kind of electric motor", "pln": ["(: cnet_isa_133c3424fb (IsA wiper_motor electric_motor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wire is a kind of conductor", "pln": ["(: cnet_isa_5769f74a16 (IsA wire conductor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wire is a kind of ligament", "pln": ["(: cnet_isa_7b6f2ce105 (IsA wire ligament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wire is a kind of finishing line", "pln": ["(: cnet_isa_b0e5ccfbae (IsA wire finishing_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wire cloth is a kind of fabric", "pln": ["(: cnet_isa_269569c78e (IsA wire_cloth fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wire cutter is a kind of edge tool", "pln": ["(: cnet_isa_eefe35eb15 (IsA wire_cutter edge_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wire gauge is a kind of gauge", "pln": ["(: cnet_isa_98b16fdb7c (IsA wire_gauge gauge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wire glass is a kind of glass", "pln": ["(: cnet_isa_fad0fdf662 (IsA wire_glass glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wire haired fox terrier is a kind of fox terrier", "pln": ["(: cnet_isa_15ffef2149 (IsA wire_haired_fox_terrier fox_terrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wire matrix printer is a kind of dot matrix printer", "pln": ["(: cnet_isa_15d02b75d6 (IsA wire_matrix_printer dot_matrix_printer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wire matrix printer is a kind of impact printer", "pln": ["(: cnet_isa_46893f5b64 (IsA wire_matrix_printer impact_printer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wire puller is a kind of hustler", "pln": ["(: cnet_isa_d6ba9df733 (IsA wire_puller hustler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wire recorder is a kind of magnetic recorder", "pln": ["(: cnet_isa_151fa2bfc5 (IsA wire_recorder magnetic_recorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wire stripper is a kind of hand tool", "pln": ["(: cnet_isa_4c05f7b2bf (IsA wire_stripper hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wired is a kind of magazine", "pln": ["(: cnet_isa_03f8db5ed4 (IsA wired magazine) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wirehair is a kind of terrier", "pln": ["(: cnet_isa_efd6f2f66f (IsA wirehair terrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wireless is a kind of telecommunication", "pln": ["(: cnet_isa_d590456c24 (IsA wireless telecommunication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wireless local area network is a kind of local area network", "pln": ["(: cnet_isa_1166e7af50 (IsA wireless_local_area_network local_area_network) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wireman is a kind of skilled worker", "pln": ["(: cnet_isa_fe2b09d0b0 (IsA wireman skilled_worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wirer is a kind of communicator", "pln": ["(: cnet_isa_e00a035786 (IsA wirer communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wiretap is a kind of investigation", "pln": ["(: cnet_isa_33010ccc63 (IsA wiretap investigation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wirework is a kind of net", "pln": ["(: cnet_isa_44885f2266 (IsA wirework net) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wireworm is a kind of larva", "pln": ["(: cnet_isa_aece527757 (IsA wireworm larva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wiriness is a kind of leanness", "pln": ["(: cnet_isa_ba4b984cb2 (IsA wiriness leanness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wiring is a kind of manual labor", "pln": ["(: cnet_isa_bae24123a9 (IsA wiring manual_labor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wiring is a kind of circuit", "pln": ["(: cnet_isa_9a4733263c (IsA wiring circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wiring diagram is a kind of schematic", "pln": ["(: cnet_isa_f45b1d6bf6 (IsA wiring_diagram schematic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wisconsin is a kind of state", "pln": ["(: cnet_isa_ff30d5a80d (IsA wisconsin state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wisconsin weeping willow is a kind of willow", "pln": ["(: cnet_isa_02c9bcb6d7 (IsA wisconsin_weeping_willow willow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wisdom is a kind of good", "pln": ["(: cnet_isa_6b209f6881 (IsA wisdom good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wisdom is a kind of trait", "pln": ["(: cnet_isa_d06b1d27fa (IsA wisdom trait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wisdom is a kind of content", "pln": ["(: cnet_isa_0341d678fa (IsA wisdom content) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wisdom is a kind of know how", "pln": ["(: cnet_isa_12f630eff7 (IsA wisdom know_how) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wisdom tooth is a kind of molar", "pln": ["(: cnet_isa_ec21b3347b (IsA wisdom_tooth molar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wise is a kind of manner", "pln": ["(: cnet_isa_7b2cfc5439 (IsA wise manner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wise guy is a kind of upstart", "pln": ["(: cnet_isa_d99d49083f (IsA wise_guy upstart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wisecrack is a kind of remark", "pln": ["(: cnet_isa_fdc8bb8cd9 (IsA wisecrack remark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wisent is a kind of bison", "pln": ["(: cnet_isa_ec230da851 (IsA wisent bison) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wish is a kind of preference", "pln": ["(: cnet_isa_cc79b8e61c (IsA wish preference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wish is a kind of request", "pln": ["(: cnet_isa_44be6ad34a (IsA wish request) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wish is a kind of desire", "pln": ["(: cnet_isa_b68ada4e60 (IsA wish desire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wish list is a kind of list", "pln": ["(: cnet_isa_c8a613ad7b (IsA wish_list list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wish wash is a kind of beverage", "pln": ["(: cnet_isa_45575e1607 (IsA wish_wash beverage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wishbone is a kind of furcula", "pln": ["(: cnet_isa_ed804c9e9f (IsA wishbone furcula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wishful thinking is a kind of illusion", "pln": ["(: cnet_isa_f4c4f73dfc (IsA wishful_thinking illusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wishfulness is a kind of longing", "pln": ["(: cnet_isa_c2489f4d4d (IsA wishfulness longing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wishing cap is a kind of cap", "pln": ["(: cnet_isa_5f3785281a (IsA wishing_cap cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wisp is a kind of flock", "pln": ["(: cnet_isa_543639271b (IsA wisp flock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wisp is a kind of package", "pln": ["(: cnet_isa_3f72091056 (IsA wisp package) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wisp is a kind of tuft", "pln": ["(: cnet_isa_a5ce73dbe3 (IsA wisp tuft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wisp is a kind of small person", "pln": ["(: cnet_isa_15b4988dad (IsA wisp small_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wisteria is a kind of vine", "pln": ["(: cnet_isa_fadd3966e4 (IsA wisteria vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wistfulness is a kind of longing", "pln": ["(: cnet_isa_8793abd924 (IsA wistfulness longing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wit is a kind of message", "pln": ["(: cnet_isa_a8551cab47 (IsA wit message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "witch is a kind of imaginary being", "pln": ["(: cnet_isa_80671cfddb (IsA witch imaginary_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "witch doctor is a kind of sorcerer", "pln": ["(: cnet_isa_d730ed1005 (IsA witch_doctor sorcerer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "witch elm is a kind of elm", "pln": ["(: cnet_isa_55933a9f8e (IsA witch_elm elm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "witch hazel is a kind of lotion", "pln": ["(: cnet_isa_19769a6a74 (IsA witch_hazel lotion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "witch hazel is a kind of shrub", "pln": ["(: cnet_isa_2c7f124cb2 (IsA witch_hazel shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "witch hunt is a kind of harassment", "pln": ["(: cnet_isa_99917fdb10 (IsA witch_hunt harassment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "witch hunter is a kind of tormentor", "pln": ["(: cnet_isa_2977219718 (IsA witch_hunter tormentor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "witchcraft is a kind of sorcery", "pln": ["(: cnet_isa_89d2930686 (IsA witchcraft sorcery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "witche brew is a kind of assortment", "pln": ["(: cnet_isa_e1b71701ad (IsA witche_brew assortment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "witche broom is a kind of tuft", "pln": ["(: cnet_isa_a4273d5c1c (IsA witche_broom tuft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "witche butter is a kind of jelly fungus", "pln": ["(: cnet_isa_0922ebecb7 (IsA witche_butter jelly_fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "witchgrass is a kind of panic grass", "pln": ["(: cnet_isa_83811d81f7 (IsA witchgrass panic_grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "witching is a kind of practice", "pln": ["(: cnet_isa_44b183bed4 (IsA witching practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "withdrawal is a kind of departure", "pln": ["(: cnet_isa_92f974d55e (IsA withdrawal departure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "withdrawal is a kind of removal", "pln": ["(: cnet_isa_3f8124be66 (IsA withdrawal removal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "withdrawal is a kind of separation", "pln": ["(: cnet_isa_3900fb8db0 (IsA withdrawal separation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "withdrawal is a kind of termination", "pln": ["(: cnet_isa_0f5fdcc931 (IsA withdrawal termination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "withdrawal is a kind of retraction", "pln": ["(: cnet_isa_c85e451b05 (IsA withdrawal retraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "withdrawal is a kind of indifference", "pln": ["(: cnet_isa_1c0f5dfb73 (IsA withdrawal indifference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "withdrawal symptom is a kind of symptom", "pln": ["(: cnet_isa_9421a7a1c1 (IsA withdrawal_symptom symptom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "withdrawer is a kind of authority", "pln": ["(: cnet_isa_cec468e945 (IsA withdrawer authority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "withdrawer is a kind of contestant", "pln": ["(: cnet_isa_8e816d4739 (IsA withdrawer contestant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "withdrawer is a kind of depositor", "pln": ["(: cnet_isa_5f7d25654e (IsA withdrawer depositor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "withdrawer is a kind of drug addict", "pln": ["(: cnet_isa_30cf23823d (IsA withdrawer drug_addict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "withdrawer is a kind of individualist", "pln": ["(: cnet_isa_dd073f4aab (IsA withdrawer individualist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "withdrawer is a kind of student", "pln": ["(: cnet_isa_9a0d01e621 (IsA withdrawer student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "withe is a kind of band", "pln": ["(: cnet_isa_0c741aa3ef (IsA withe band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "withe is a kind of branchlet", "pln": ["(: cnet_isa_c160bea473 (IsA withe branchlet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wither is a kind of body part", "pln": ["(: cnet_isa_affefe7590 (IsA wither body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "withholder is a kind of person", "pln": ["(: cnet_isa_a51426d72e (IsA withholder person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "withholder is a kind of restrainer", "pln": ["(: cnet_isa_54d7491f8a (IsA withholder restrainer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "withholding is a kind of retention", "pln": ["(: cnet_isa_6270913534 (IsA withholding retention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "withholding is a kind of subtraction", "pln": ["(: cnet_isa_3224d23ae0 (IsA withholding subtraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "withholding tax is a kind of income tax", "pln": ["(: cnet_isa_6afd143f7e (IsA withholding_tax income_tax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "withstander is a kind of adversary", "pln": ["(: cnet_isa_b2a05ec855 (IsA withstander adversary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "witness is a kind of testimony", "pln": ["(: cnet_isa_b454d437e9 (IsA witness testimony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "witness is a kind of person", "pln": ["(: cnet_isa_ebc9ab6980 (IsA witness person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "witness is a kind of signer", "pln": ["(: cnet_isa_da55cec725 (IsA witness signer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "witness is a kind of perceiver", "pln": ["(: cnet_isa_ce777180c4 (IsA witness perceiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "witness is a kind of speaker", "pln": ["(: cnet_isa_bb544be89c (IsA witness speaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "witness box is a kind of box", "pln": ["(: cnet_isa_805ec650b0 (IsA witness_box box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wit is a kind of intelligence", "pln": ["(: cnet_isa_f4a9d4b811 (IsA wit intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wittol is a kind of cuckold", "pln": ["(: cnet_isa_bd8077f5a0 (IsA wittol cuckold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woad is a kind of herb", "pln": ["(: cnet_isa_6bcebc08d5 (IsA woad herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woad is a kind of dye", "pln": ["(: cnet_isa_efc8867e37 (IsA woad dye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wobble is a kind of movement", "pln": ["(: cnet_isa_c26224fa12 (IsA wobble movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wobbler is a kind of thing", "pln": ["(: cnet_isa_322b64747b (IsA wobbler thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wobbly is a kind of radical", "pln": ["(: cnet_isa_ce1d325ad7 (IsA wobbly radical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woe is a kind of mournfulness", "pln": ["(: cnet_isa_3bf1b2d3fd (IsA woe mournfulness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wog is a kind of person of color", "pln": ["(: cnet_isa_f64c709288 (IsA wog person_of_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wok is a kind of cooking pot", "pln": ["(: cnet_isa_c1da89f632 (IsA wok cooking_pot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wok is a kind of pan", "pln": ["(: cnet_isa_6b7eacd789 (IsA wok pan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wold is a kind of country", "pln": ["(: cnet_isa_4881ca6e42 (IsA wold country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wolf is a kind of canine", "pln": ["(: cnet_isa_0edee88b19 (IsA wolf canine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wolf is a kind of womanizer", "pln": ["(: cnet_isa_59988ee05d (IsA wolf womanizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wolf boy is a kind of wild man", "pln": ["(: cnet_isa_e641ba8077 (IsA wolf_boy wild_man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wolf pack is a kind of fleet", "pln": ["(: cnet_isa_b57f495df3 (IsA wolf_pack fleet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wolf pack is a kind of pack", "pln": ["(: cnet_isa_2a33b90c47 (IsA wolf_pack pack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wolf pup is a kind of wolf", "pln": ["(: cnet_isa_f2f5c277d6 (IsA wolf_pup wolf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wolf pup is a kind of young mammal", "pln": ["(: cnet_isa_b0b4a8c528 (IsA wolf_pup young_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wolf spider is a kind of spider", "pln": ["(: cnet_isa_008e8de699 (IsA wolf_spider spider) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wolffia is a kind of monocot genus", "pln": ["(: cnet_isa_e54734c0dd (IsA wolffia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wolffiella is a kind of monocot genus", "pln": ["(: cnet_isa_7dd3b33288 (IsA wolffiella monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wolffish is a kind of blennioid fish", "pln": ["(: cnet_isa_b0b99ffeb2 (IsA wolffish blennioid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wolfhound is a kind of hound", "pln": ["(: cnet_isa_a1768aac38 (IsA wolfhound hound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wolframite is a kind of mineral", "pln": ["(: cnet_isa_6e35f10651 (IsA wolframite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wolfsbane is a kind of aconite", "pln": ["(: cnet_isa_dd433cb1d3 (IsA wolfsbane aconite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wollastonite is a kind of mineral", "pln": ["(: cnet_isa_eb946a737f (IsA wollastonite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wollemi pine is a kind of conifer", "pln": ["(: cnet_isa_1da66dbd75 (IsA wollemi_pine conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wolof is a kind of west african", "pln": ["(: cnet_isa_36215e7d1f (IsA wolof west_african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wolstonian glaciation is a kind of glaciation", "pln": ["(: cnet_isa_56d9a20cbe (IsA wolstonian_glaciation glaciation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wolverine is a kind of musteline mammal", "pln": ["(: cnet_isa_e95aacf6da (IsA wolverine musteline_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wolverine is a kind of american", "pln": ["(: cnet_isa_4e85e2e7c9 (IsA wolverine american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woman s clothing is a kind of clothing", "pln": ["(: cnet_isa_13b85acd36 (IsA woman_s_clothing clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woman is a kind of adult", "pln": ["(: cnet_isa_6daf5d33a7 (IsA woman adult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woman is a kind of female", "pln": ["(: cnet_isa_df6145ff5e (IsA woman female) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "womanhood is a kind of position", "pln": ["(: cnet_isa_ca69ce317d (IsA womanhood position) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "womanhood is a kind of class", "pln": ["(: cnet_isa_fe8a662d0d (IsA womanhood class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "womanhood is a kind of adulthood", "pln": ["(: cnet_isa_b5cf7137b1 (IsA womanhood adulthood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "womanizer is a kind of libertine", "pln": ["(: cnet_isa_032bf88ef6 (IsA womanizer libertine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "womanizer is a kind of man", "pln": ["(: cnet_isa_9775e7b9f2 (IsA womanizer man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "womankind is a kind of people", "pln": ["(: cnet_isa_210bb1c0a7 (IsA womankind people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "womanliness is a kind of femininity", "pln": ["(: cnet_isa_03f0dcefdd (IsA womanliness femininity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wombat is a kind of marsupial", "pln": ["(: cnet_isa_a01f6a0422 (IsA wombat marsupial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "women s army corp is a kind of corp", "pln": ["(: cnet_isa_ee18195b59 (IsA women_s_army_corp corp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "won lost record is a kind of record", "pln": ["(: cnet_isa_e9373d96b4 (IsA won_lost_record record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "won ton is a kind of dumpling", "pln": ["(: cnet_isa_0be1ac4d8e (IsA won_ton dumpling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "won ton is a kind of soup", "pln": ["(: cnet_isa_cd96b3c2e6 (IsA won_ton soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wonder is a kind of happening", "pln": ["(: cnet_isa_cc30466b61 (IsA wonder happening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wonder is a kind of astonishment", "pln": ["(: cnet_isa_81eab06373 (IsA wonder astonishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wonder boy is a kind of man", "pln": ["(: cnet_isa_24940535b1 (IsA wonder_boy man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wonder woman is a kind of woman", "pln": ["(: cnet_isa_363a9dd175 (IsA wonder_woman woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wonderer is a kind of admirer", "pln": ["(: cnet_isa_ea3339f778 (IsA wonderer admirer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wonderer is a kind of intellectual", "pln": ["(: cnet_isa_97d3d5de94 (IsA wonderer intellectual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wonderland is a kind of imaginary place", "pln": ["(: cnet_isa_0d393c4222 (IsA wonderland imaginary_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wonderland is a kind of land", "pln": ["(: cnet_isa_024d056e65 (IsA wonderland land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood s metal is a kind of alloy", "pln": ["(: cnet_isa_c3179a22b4 (IsA wood_s_metal alloy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood is a kind of fuel", "pln": ["(: cnet_isa_19dc7f9a90 (IsA wood fuel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood is a kind of material", "pln": ["(: cnet_isa_e747a82a22 (IsA wood material) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood is a kind of renewable resource", "pln": ["(: cnet_isa_8b1cbfcfd6 (IsA wood renewable_resource) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood is a kind of golf club", "pln": ["(: cnet_isa_bd058c3ea8 (IsA wood golf_club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood is a kind of plant material", "pln": ["(: cnet_isa_901e15539f (IsA wood plant_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood anemone is a kind of anemone", "pln": ["(: cnet_isa_b8eb3fcf27 (IsA wood_anemone anemone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood ant is a kind of ant", "pln": ["(: cnet_isa_8fc607afa8 (IsA wood_ant ant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood aster is a kind of aster", "pln": ["(: cnet_isa_6e4d22de4e (IsA wood_aster aster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood chisel is a kind of chisel", "pln": ["(: cnet_isa_546381552a (IsA wood_chisel chisel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood drake is a kind of wood duck", "pln": ["(: cnet_isa_52c54e57aa (IsA wood_drake wood_duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood duck is a kind of duck", "pln": ["(: cnet_isa_31cc2da94b (IsA wood_duck duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood fern is a kind of fern", "pln": ["(: cnet_isa_9de968b5b1 (IsA wood_fern fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood frog is a kind of true frog", "pln": ["(: cnet_isa_b5e4aa328b (IsA wood_frog true_frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood grain is a kind of grain", "pln": ["(: cnet_isa_a05d82a9fc (IsA wood_grain grain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood hoopoe is a kind of coraciiform bird", "pln": ["(: cnet_isa_0fa702f329 (IsA wood_hoopoe coraciiform_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood horsetail is a kind of horsetail", "pln": ["(: cnet_isa_ee0e68ce9a (IsA wood_horsetail horsetail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood ibis is a kind of ibis", "pln": ["(: cnet_isa_406d84787a (IsA wood_ibis ibis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood ibis is a kind of stork", "pln": ["(: cnet_isa_125b64ed01 (IsA wood_ibis stork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood lily is a kind of lily", "pln": ["(: cnet_isa_12af4767ee (IsA wood_lily lily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood meadowgrass is a kind of meadowgrass", "pln": ["(: cnet_isa_879d32434e (IsA wood_meadowgrass meadowgrass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood mint is a kind of herb", "pln": ["(: cnet_isa_96664cba31 (IsA wood_mint herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood mouse is a kind of mouse", "pln": ["(: cnet_isa_01eedf0a1a (IsA wood_mouse mouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood nettle is a kind of nettle", "pln": ["(: cnet_isa_58fc69bb7a (IsA wood_nettle nettle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood pigeon is a kind of pigeon", "pln": ["(: cnet_isa_888f1ce0c2 (IsA wood_pigeon pigeon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood pulp is a kind of pulp", "pln": ["(: cnet_isa_3fa7becde7 (IsA wood_pulp pulp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood rabbit is a kind of rabbit", "pln": ["(: cnet_isa_39cd339aef (IsA wood_rabbit rabbit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood rat is a kind of rodent", "pln": ["(: cnet_isa_d6523d4226 (IsA wood_rat rodent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood sage is a kind of germander", "pln": ["(: cnet_isa_08e2ea4f2b (IsA wood_sage germander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood spurge is a kind of spurge", "pln": ["(: cnet_isa_47919ebce0 (IsA wood_spurge spurge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood sugar is a kind of carbohydrate", "pln": ["(: cnet_isa_e0a3043069 (IsA wood_sugar carbohydrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood swallow is a kind of oscine", "pln": ["(: cnet_isa_fe1cb90cd9 (IsA wood_swallow oscine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood tar is a kind of natural resin", "pln": ["(: cnet_isa_0809e45d49 (IsA wood_tar natural_resin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood thrush is a kind of thrush", "pln": ["(: cnet_isa_19623512d2 (IsA wood_thrush thrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood tick is a kind of hard tick", "pln": ["(: cnet_isa_52a3d6c82c (IsA wood_tick hard_tick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood vise is a kind of vise", "pln": ["(: cnet_isa_a931bf9804 (IsA wood_vise vise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wood warbler is a kind of old world warbler", "pln": ["(: cnet_isa_9be42bd1a6 (IsA wood_warbler old_world_warbler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodbine is a kind of honeysuckle", "pln": ["(: cnet_isa_369f25f748 (IsA woodbine honeysuckle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodborer is a kind of invertebrate", "pln": ["(: cnet_isa_ae528bf5ff (IsA woodborer invertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodcarver is a kind of woodworker", "pln": ["(: cnet_isa_c68c094180 (IsA woodcarver woodworker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodcarving is a kind of carving", "pln": ["(: cnet_isa_35dbde5572 (IsA woodcarving carving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodcock is a kind of shorebird", "pln": ["(: cnet_isa_f9c179870f (IsA woodcock shorebird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodcraft is a kind of craft", "pln": ["(: cnet_isa_568455fafb (IsA woodcraft craft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodcraft is a kind of experience", "pln": ["(: cnet_isa_82fff9ad9e (IsA woodcraft experience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodcut is a kind of engraving", "pln": ["(: cnet_isa_87be87eccc (IsA woodcut engraving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodcutter is a kind of laborer", "pln": ["(: cnet_isa_abbf8f0525 (IsA woodcutter laborer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wooden spoon is a kind of booby prize", "pln": ["(: cnet_isa_c5ebe35411 (IsA wooden_spoon booby_prize) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wooden spoon is a kind of spoon", "pln": ["(: cnet_isa_19016554ee (IsA wooden_spoon spoon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wooden spoon is a kind of woodenware", "pln": ["(: cnet_isa_7e8efd0268 (IsA wooden_spoon woodenware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodenness is a kind of awkwardness", "pln": ["(: cnet_isa_dc1a533dd5 (IsA woodenness awkwardness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "woodenware is a kind of ware", "pln": ["(: cnet_isa_539d4db65f (IsA woodenware ware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodhewer is a kind of tyrannid", "pln": ["(: cnet_isa_329234a644 (IsA woodhewer tyrannid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodland caribou is a kind of caribou", "pln": ["(: cnet_isa_fb4e6544df (IsA woodland_caribou caribou) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodland oxeye is a kind of oxeye", "pln": ["(: cnet_isa_c38026db05 (IsA woodland_oxeye oxeye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "woodland star is a kind of flower", "pln": ["(: cnet_isa_7c0e74e8dc (IsA woodland_star flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodlouse is a kind of isopod", "pln": ["(: cnet_isa_3917e7ae6c (IsA woodlouse isopod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodpecker is a kind of bird", "pln": ["(: cnet_isa_78b5c27954 (IsA woodpecker bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodpecker is a kind of piciform bird", "pln": ["(: cnet_isa_e2786150aa (IsA woodpecker piciform_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodpile is a kind of pile", "pln": ["(: cnet_isa_299202391b (IsA woodpile pile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "woodruff is a kind of subshrub", "pln": ["(: cnet_isa_0a7afbad8d (IsA woodruff subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodscrew is a kind of screw", "pln": ["(: cnet_isa_efe4f62a26 (IsA woodscrew screw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodshed is a kind of shed", "pln": ["(: cnet_isa_6af1441782 (IsA woodshed shed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodsia is a kind of fern", "pln": ["(: cnet_isa_6c934fed6f (IsA woodsia fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodsiness is a kind of quality", "pln": ["(: cnet_isa_2418c01984 (IsA woodsiness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodsman is a kind of rustic", "pln": ["(: cnet_isa_8045ca8cbe (IsA woodsman rustic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodwardia is a kind of fern genus", "pln": ["(: cnet_isa_813a85d473 (IsA woodwardia fern_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodwaxen is a kind of broom", "pln": ["(: cnet_isa_a749e0f2d7 (IsA woodwaxen broom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodwind is a kind of instrument", "pln": ["(: cnet_isa_152b39c690 (IsA woodwind instrument) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodwind is a kind of musical instrument", "pln": ["(: cnet_isa_198ace38b0 (IsA woodwind musical_instrument) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodwind is a kind of wind instrument", "pln": ["(: cnet_isa_a787a1672b (IsA woodwind wind_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodwind family is a kind of class", "pln": ["(: cnet_isa_cb121511ad (IsA woodwind_family class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodwork is a kind of work", "pln": ["(: cnet_isa_b08b45bba3 (IsA woodwork work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodworker is a kind of craftsman", "pln": ["(: cnet_isa_30121648b4 (IsA woodworker craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodworking is a kind of hobby", "pln": ["(: cnet_isa_50e36790b2 (IsA woodworking hobby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woodworm is a kind of worm", "pln": ["(: cnet_isa_e15f6133e8 (IsA woodworm worm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woody plant is a kind of vascular plant", "pln": ["(: cnet_isa_a408228627 (IsA woody_plant vascular_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woof is a kind of thread", "pln": ["(: cnet_isa_00ad2e007f (IsA woof thread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woofer is a kind of loudspeaker", "pln": ["(: cnet_isa_ced5449183 (IsA woofer loudspeaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wool is a kind of material", "pln": ["(: cnet_isa_09610a5fa0 (IsA wool material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wool is a kind of natural fiber", "pln": ["(: cnet_isa_4b2ab72b2f (IsA wool natural_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wool is a kind of coat", "pln": ["(: cnet_isa_68551d2bf1 (IsA wool coat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wool is a kind of fabric", "pln": ["(: cnet_isa_0b3c8f24e3 (IsA wool fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wool is a kind of animal fiber", "pln": ["(: cnet_isa_adf6deea22 (IsA wool animal_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wool grass is a kind of sedge", "pln": ["(: cnet_isa_ac4956fa84 (IsA wool_grass sedge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wool oil is a kind of animal oil", "pln": ["(: cnet_isa_4d26aa5b99 (IsA wool_oil animal_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wool stapler is a kind of distributor", "pln": ["(: cnet_isa_4c7a67dd97 (IsA wool_stapler distributor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wool stapler is a kind of grader", "pln": ["(: cnet_isa_f33bb194e5 (IsA wool_stapler grader) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woolgathering is a kind of dream", "pln": ["(: cnet_isa_70fd0cb5b7 (IsA woolgathering dream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woolly adelgid is a kind of adelgid", "pln": ["(: cnet_isa_115cd9a743 (IsA woolly_adelgid adelgid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woolly alder aphid is a kind of woolly aphid", "pln": ["(: cnet_isa_9f7462cb45 (IsA woolly_alder_aphid woolly_aphid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woolly aphid is a kind of aphid", "pln": ["(: cnet_isa_d55a4336f8 (IsA woolly_aphid aphid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woolly apple aphid is a kind of woolly aphid", "pln": ["(: cnet_isa_2195184602 (IsA woolly_apple_aphid woolly_aphid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woolly bear is a kind of caterpillar", "pln": ["(: cnet_isa_450e074b6c (IsA woolly_bear caterpillar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woolly bear moth is a kind of woolly bear", "pln": ["(: cnet_isa_7d2315b545 (IsA woolly_bear_moth woolly_bear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woolly daisy is a kind of wildflower", "pln": ["(: cnet_isa_170f662f01 (IsA woolly_daisy wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woolly indris is a kind of lemur", "pln": ["(: cnet_isa_acbe20a09b (IsA woolly_indris lemur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woolly mammoth is a kind of mammoth", "pln": ["(: cnet_isa_aa31b7febe (IsA woolly_mammoth mammoth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woolly monkey is a kind of new world monkey", "pln": ["(: cnet_isa_14d5ed5c60 (IsA woolly_monkey new_world_monkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woolly rhinocero is a kind of rhinocero", "pln": ["(: cnet_isa_dd4a9a7d6d (IsA woolly_rhinocero rhinocero) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woolly sunflower is a kind of wildflower", "pln": ["(: cnet_isa_5c23499086 (IsA woolly_sunflower wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "woolly thistle is a kind of plume thistle", "pln": ["(: cnet_isa_76ad7b62ca (IsA woolly_thistle plume_thistle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wooly lip fern is a kind of lip fern", "pln": ["(: cnet_isa_9dae76d3b1 (IsA wooly_lip_fern lip_fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wop is a kind of italian", "pln": ["(: cnet_isa_f3fed39bf4 (IsA wop italian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "worcester sauce is a kind of sauce", "pln": ["(: cnet_isa_bc4c6b65e8 (IsA worcester_sauce sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "word is a kind of piece of sentence", "pln": ["(: cnet_isa_fb16770323 (IsA word piece_of_sentence) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "word is a kind of language unit", "pln": ["(: cnet_isa_8a7e6c05c9 (IsA word language_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "word is a kind of order", "pln": ["(: cnet_isa_02f72a63bd (IsA word order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "word is a kind of statement", "pln": ["(: cnet_isa_04bafb214a (IsA word statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "word is a kind of computer memory unit", "pln": ["(: cnet_isa_5358524cbf (IsA word computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "word division is a kind of division", "pln": ["(: cnet_isa_16da971b86 (IsA word_division division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "word finder is a kind of thesaurus", "pln": ["(: cnet_isa_de91f73ad9 (IsA word_finder thesaurus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "word game is a kind of parlor game", "pln": ["(: cnet_isa_8f120337c5 (IsA word_game parlor_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "word meaning is a kind of sense", "pln": ["(: cnet_isa_0de462470f (IsA word_meaning sense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "word of god is a kind of gospel", "pln": ["(: cnet_isa_27afac83a4 (IsA word_of_god gospel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "word of god is a kind of manifestation", "pln": ["(: cnet_isa_e75b2ebdbe (IsA word_of_god manifestation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "word order is a kind of ordering", "pln": ["(: cnet_isa_e969fbccb1 (IsA word_order ordering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "word painter is a kind of writer", "pln": ["(: cnet_isa_6e83195198 (IsA word_painter writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "word picture is a kind of description", "pln": ["(: cnet_isa_c4624e8de0 (IsA word_picture description) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "word play is a kind of play", "pln": ["(: cnet_isa_b95789ab5f (IsA word_play play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "word processing is a kind of data processing", "pln": ["(: cnet_isa_c9e9f7af50 (IsA word_processing data_processing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "word processor is a kind of application", "pln": ["(: cnet_isa_2bf2404c61 (IsA word_processor application) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "word salad is a kind of incoherence", "pln": ["(: cnet_isa_11a408191d (IsA word_salad incoherence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "word square is a kind of puzzle", "pln": ["(: cnet_isa_db310bf90c (IsA word_square puzzle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "word stress is a kind of stress", "pln": ["(: cnet_isa_210a13d133 (IsA word_stress stress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wordbook is a kind of reference book", "pln": ["(: cnet_isa_66cd9239f5 (IsA wordbook reference_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wording is a kind of formulation", "pln": ["(: cnet_isa_4325fdf09a (IsA wording formulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wordmonger is a kind of writer", "pln": ["(: cnet_isa_83e9244f5b (IsA wordmonger writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wordnet is a kind of lexical database", "pln": ["(: cnet_isa_33560eaff2 (IsA wordnet lexical_database) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "word is a kind of language", "pln": ["(: cnet_isa_0ed48937d1 (IsA word language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "word is a kind of speech", "pln": ["(: cnet_isa_d424d83abe (IsA word speech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "word per minute is a kind of rate", "pln": ["(: cnet_isa_0ce392e2ae (IsA word_per_minute rate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wordsmith is a kind of writer", "pln": ["(: cnet_isa_fadb1fdaeb (IsA wordsmith writer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "work is a kind of cooperative activity", "pln": ["(: cnet_isa_76293cf5ee (IsA work cooperative_activity) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "work is a kind of activity", "pln": ["(: cnet_isa_37ebdfb075 (IsA work activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "work is a kind of product", "pln": ["(: cnet_isa_c4a1ac66e3 (IsA work product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "work is a kind of energy", "pln": ["(: cnet_isa_4adfa8c3eb (IsA work energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "work animal is a kind of animal", "pln": ["(: cnet_isa_b1113d8502 (IsA work_animal animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "work camp is a kind of camp", "pln": ["(: cnet_isa_5d31253eb0 (IsA work_camp camp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "work clothing is a kind of clothing", "pln": ["(: cnet_isa_93d65fd220 (IsA work_clothing clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "work flow is a kind of advancement", "pln": ["(: cnet_isa_c3bc1ffea0 (IsA work_flow advancement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "work force is a kind of force", "pln": ["(: cnet_isa_c1b75bf737 (IsA work_force force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "work in is a kind of demonstration", "pln": ["(: cnet_isa_5d22deebd5 (IsA work_in demonstration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "work in progress is a kind of work", "pln": ["(: cnet_isa_8bbd964d25 (IsA work_in_progress work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "work of art is a kind of art", "pln": ["(: cnet_isa_7fa0a1f0c5 (IsA work_of_art art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "work shirt is a kind of shirt", "pln": ["(: cnet_isa_04c3ae6ea2 (IsA work_shirt shirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "work shirt is a kind of workwear", "pln": ["(: cnet_isa_d928ec80a6 (IsA work_shirt workwear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "work song is a kind of song", "pln": ["(: cnet_isa_67ef580e80 (IsA work_song song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "work study program is a kind of education", "pln": ["(: cnet_isa_a6609ea3e4 (IsA work_study_program education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "work surface is a kind of surface", "pln": ["(: cnet_isa_fa989783b2 (IsA work_surface surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "work time is a kind of time period", "pln": ["(: cnet_isa_5475c3f787 (IsA work_time time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "work to rule is a kind of job action", "pln": ["(: cnet_isa_ce2e836090 (IsA work_to_rule job_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "work unit is a kind of unit of measurement", "pln": ["(: cnet_isa_5a4db832b0 (IsA work_unit unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "workaholic is a kind of compulsive", "pln": ["(: cnet_isa_6971535b98 (IsA workaholic compulsive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "workaholism is a kind of compulsiveness", "pln": ["(: cnet_isa_2c353d61a1 (IsA workaholism compulsiveness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "workbasket is a kind of container", "pln": ["(: cnet_isa_bde3d99b6d (IsA workbasket container) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "workbench is a kind of worktable", "pln": ["(: cnet_isa_69e053525f (IsA workbench worktable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "workboard is a kind of board", "pln": ["(: cnet_isa_e9a61aab58 (IsA workboard board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "workbook is a kind of book", "pln": ["(: cnet_isa_7716b9fe6a (IsA workbook book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "workday is a kind of day", "pln": ["(: cnet_isa_91d13fa221 (IsA workday day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "workday is a kind of weekday", "pln": ["(: cnet_isa_991b3a8de4 (IsA workday weekday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worker is a kind of insect", "pln": ["(: cnet_isa_9151c92d6c (IsA worker insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worker is a kind of person", "pln": ["(: cnet_isa_dbfc6ff973 (IsA worker person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "worker bee is a kind of worker", "pln": ["(: cnet_isa_8a83766802 (IsA worker_bee worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "workhorse is a kind of horse", "pln": ["(: cnet_isa_740f572ce2 (IsA workhorse horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "workhorse is a kind of machine", "pln": ["(: cnet_isa_eeb1d89755 (IsA workhorse machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "workhouse is a kind of jail", "pln": ["(: cnet_isa_04ee9202a8 (IsA workhouse jail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "workhouse is a kind of poorhouse", "pln": ["(: cnet_isa_0688083301 (IsA workhouse poorhouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "working is a kind of excavation", "pln": ["(: cnet_isa_fb6858eb5c (IsA working excavation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "working agreement is a kind of agreement", "pln": ["(: cnet_isa_6cf2af0591 (IsA working_agreement agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "working dog is a kind of dog", "pln": ["(: cnet_isa_00f0ef00d2 (IsA working_dog dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "working girl is a kind of girl", "pln": ["(: cnet_isa_d0a90615f1 (IsA working_girl girl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "working girl is a kind of worker", "pln": ["(: cnet_isa_c6dbb980c5 (IsA working_girl worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "working group is a kind of unit", "pln": ["(: cnet_isa_87086e4d9f (IsA working_group unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "working memory is a kind of memory", "pln": ["(: cnet_isa_a5c6e0b3cc (IsA working_memory memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "working paper is a kind of legal document", "pln": ["(: cnet_isa_596bcb0dc1 (IsA working_paper legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "working paper is a kind of record", "pln": ["(: cnet_isa_7e4d80fe8e (IsA working_paper record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "working principle is a kind of rule", "pln": ["(: cnet_isa_f1576dec48 (IsA working_principle rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "workload is a kind of employment", "pln": ["(: cnet_isa_9a63b42428 (IsA workload employment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "works is a kind of mechanism", "pln": ["(: cnet_isa_a8bc2e8898 (IsA works mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "workman is a kind of employee", "pln": ["(: cnet_isa_98fad64ff9 (IsA workman employee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "workmate is a kind of worker", "pln": ["(: cnet_isa_6dac3cad4c (IsA workmate worker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "workmen s compensation is a kind of compensation", "pln": ["(: cnet_isa_f5e73564d8 (IsA workmen_s_compensation compensation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "workpiece is a kind of work", "pln": ["(: cnet_isa_2f06a6ada1 (IsA workpiece work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "workplace is a kind of geographic point", "pln": ["(: cnet_isa_fc0663c788 (IsA workplace geographic_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "workplace is a kind of often office", "pln": ["(: cnet_isa_6f396b1917 (IsA workplace often_office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "workroom is a kind of room", "pln": ["(: cnet_isa_58cb25e098 (IsA workroom room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "work is a kind of mechanism", "pln": ["(: cnet_isa_ad59507e0c (IsA work mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "work council is a kind of council", "pln": ["(: cnet_isa_dbdcf8a993 (IsA work_council council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "work program is a kind of program", "pln": ["(: cnet_isa_ae27939bb8 (IsA work_program program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worksheet is a kind of sheet", "pln": ["(: cnet_isa_c53c1fe9c7 (IsA worksheet sheet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worksheet is a kind of written record", "pln": ["(: cnet_isa_d01a9557be (IsA worksheet written_record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "workshop is a kind of course", "pln": ["(: cnet_isa_d7f17fd1c8 (IsA workshop course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "workshop is a kind of workplace", "pln": ["(: cnet_isa_bf2b682723 (IsA workshop workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "workspace is a kind of space", "pln": ["(: cnet_isa_3240119466 (IsA workspace space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "workstation is a kind of digital computer", "pln": ["(: cnet_isa_86579dac04 (IsA workstation digital_computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worktable is a kind of table", "pln": ["(: cnet_isa_8b9c4bc929 (IsA worktable table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "workwear is a kind of apparel", "pln": ["(: cnet_isa_ae27162efb (IsA workwear apparel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "workweek is a kind of work time", "pln": ["(: cnet_isa_0d3a0fcb2e (IsA workweek work_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "world is a kind of big place", "pln": ["(: cnet_isa_19e9f1cbc5 (IsA world big_place) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "world is a kind of where live", "pln": ["(: cnet_isa_c0cca509fc (IsA world where_live) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "world is a kind of group", "pln": ["(: cnet_isa_8a7376e945 (IsA world group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "world is a kind of homo", "pln": ["(: cnet_isa_cafc60540f (IsA world homo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "world is a kind of experience", "pln": ["(: cnet_isa_238315d018 (IsA world experience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "world is a kind of class", "pln": ["(: cnet_isa_d4f82779c1 (IsA world class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "world is a kind of part", "pln": ["(: cnet_isa_aae6e1350e (IsA world part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "world affair is a kind of affair", "pln": ["(: cnet_isa_d1e03cbc1b (IsA world_affair affair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "world beater is a kind of rival", "pln": ["(: cnet_isa_1cf7693ae1 (IsA world_beater rival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "world council is a kind of council", "pln": ["(: cnet_isa_71e6c3e060 (IsA world_council council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "world council of churche is a kind of world council", "pln": ["(: cnet_isa_f907a2e944 (IsA world_council_of_churche world_council) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "world cup is a kind of tournament", "pln": ["(: cnet_isa_84108776f4 (IsA world_cup tournament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "world health organization is a kind of united nation agency", "pln": ["(: cnet_isa_efc5da1bd6 (IsA world_health_organization united_nation_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "world meteorological organization is a kind of united nation agency", "pln": ["(: cnet_isa_363c861bf7 (IsA world_meteorological_organization united_nation_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "world organization is a kind of alliance", "pln": ["(: cnet_isa_c02060a87c (IsA world_organization alliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "world peace is a kind of big issue with politicion", "pln": ["(: cnet_isa_4c8e68d118 (IsA world_peace big_issue_with_politicion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "world power is a kind of state", "pln": ["(: cnet_isa_5569569027 (IsA world_power state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "world premiere is a kind of performance", "pln": ["(: cnet_isa_292842d60d (IsA world_premiere performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "world record is a kind of record", "pln": ["(: cnet_isa_6b8bbc68ed (IsA world_record record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "world sery is a kind of playoff", "pln": ["(: cnet_isa_c7e9356c2e (IsA world_sery playoff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "world sery is a kind of sery", "pln": ["(: cnet_isa_1967a6b119 (IsA world_sery sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "world trade organization is a kind of world organization", "pln": ["(: cnet_isa_0a2da8b0b6 (IsA world_trade_organization world_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "world war is a kind of war", "pln": ["(: cnet_isa_b2f199df17 (IsA world_war war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "world weariness is a kind of melancholy", "pln": ["(: cnet_isa_dc0c3a16e8 (IsA world_weariness melancholy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "world wide web is a kind of computer network", "pln": ["(: cnet_isa_6b5fbc2785 (IsA world_wide_web computer_network) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worldliness is a kind of outwardness", "pln": ["(: cnet_isa_e30878a302 (IsA worldliness outwardness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worldling is a kind of person", "pln": ["(: cnet_isa_65616d53df (IsA worldling person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worldly concern is a kind of concern", "pln": ["(: cnet_isa_c2bf003aa8 (IsA worldly_concern concern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worldly possession is a kind of commodity", "pln": ["(: cnet_isa_0864c3207b (IsA worldly_possession commodity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worldly possession is a kind of property", "pln": ["(: cnet_isa_8500dab48b (IsA worldly_possession property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worm is a kind of animal", "pln": ["(: cnet_isa_0fda973cbb (IsA worm animal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worm is a kind of invertebrate", "pln": ["(: cnet_isa_5a45345ffa (IsA worm invertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "worm is a kind of screw", "pln": ["(: cnet_isa_503a7402ed (IsA worm screw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worm is a kind of malevolent program", "pln": ["(: cnet_isa_12d9dfbd39 (IsA worm malevolent_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "worm is a kind of unpleasant person", "pln": ["(: cnet_isa_fde37ee976 (IsA worm unpleasant_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worm family is a kind of family", "pln": ["(: cnet_isa_05d3e33b29 (IsA worm_family family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worm fence is a kind of rail fence", "pln": ["(: cnet_isa_ed2deed42d (IsA worm_fence rail_fence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worm fish is a kind of percoid fish", "pln": ["(: cnet_isa_c563f4b7c6 (IsA worm_fish percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worm gear is a kind of gear", "pln": ["(: cnet_isa_b2010199eb (IsA worm_gear gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worm genus is a kind of genus", "pln": ["(: cnet_isa_1921be3e34 (IsA worm_genus genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worm lizard is a kind of lizard", "pln": ["(: cnet_isa_879c97ae91 (IsA worm_lizard lizard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worm wheel is a kind of gear", "pln": ["(: cnet_isa_3a157de765 (IsA worm_wheel gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wormcast is a kind of fossil", "pln": ["(: cnet_isa_65437088f6 (IsA wormcast fossil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wormcast is a kind of body waste", "pln": ["(: cnet_isa_4fea0b6540 (IsA wormcast body_waste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wormhole is a kind of hole", "pln": ["(: cnet_isa_21dfcf0a0c (IsA wormhole hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wormian bone is a kind of bone", "pln": ["(: cnet_isa_b8d784a623 (IsA wormian_bone bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wormseed mustard is a kind of weed", "pln": ["(: cnet_isa_e3b6c199d4 (IsA wormseed_mustard weed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wormwood is a kind of subshrub", "pln": ["(: cnet_isa_e865a87835 (IsA wormwood subshrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wormwood oil is a kind of essential oil", "pln": ["(: cnet_isa_e705be50dc (IsA wormwood_oil essential_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wormwood sage is a kind of wormwood", "pln": ["(: cnet_isa_f5e4b7bbe7 (IsA wormwood_sage wormwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worn spot is a kind of spot", "pln": ["(: cnet_isa_cae092ee10 (IsA worn_spot spot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worrier is a kind of spoilsport", "pln": ["(: cnet_isa_7c4ff04d6f (IsA worrier spoilsport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worry is a kind of anxiety", "pln": ["(: cnet_isa_dc185b28cf (IsA worry anxiety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "worrying is a kind of agitation", "pln": ["(: cnet_isa_b71bd44fa6 (IsA worrying agitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worse is a kind of bad", "pln": ["(: cnet_isa_0addc41c73 (IsA worse bad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worsening is a kind of change of state", "pln": ["(: cnet_isa_0d2787cae3 (IsA worsening change_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worship is a kind of activity", "pln": ["(: cnet_isa_d70b6f88b8 (IsA worship activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worship is a kind of love", "pln": ["(: cnet_isa_dd91791799 (IsA worship love) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worshiper is a kind of admirer", "pln": ["(: cnet_isa_0d56bba38c (IsA worshiper admirer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worst is a kind of attempt", "pln": ["(: cnet_isa_8c25c59b22 (IsA worst attempt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worst is a kind of evil", "pln": ["(: cnet_isa_71046c1eb0 (IsA worst evil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worst is a kind of result", "pln": ["(: cnet_isa_a9dbb4fb5e (IsA worst result) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worsted is a kind of fabric", "pln": ["(: cnet_isa_f32c73d8a7 (IsA worsted fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worsted is a kind of thread", "pln": ["(: cnet_isa_9e8885ac14 (IsA worsted thread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wort is a kind of malt", "pln": ["(: cnet_isa_db6df28786 (IsA wort malt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wort is a kind of herb", "pln": ["(: cnet_isa_d2ddda62e2 (IsA wort herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worth is a kind of quality", "pln": ["(: cnet_isa_ff0da44113 (IsA worth quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worth is a kind of indefinite quantity", "pln": ["(: cnet_isa_ba4fa30eaa (IsA worth indefinite_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worthiness is a kind of good", "pln": ["(: cnet_isa_55fab12c0c (IsA worthiness good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worthless object is a kind of object", "pln": ["(: cnet_isa_a20445bbd9 (IsA worthless_object object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worthlessness is a kind of inutility", "pln": ["(: cnet_isa_4c8779ae47 (IsA worthlessness inutility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worthlessness is a kind of quality", "pln": ["(: cnet_isa_ae10fc690b (IsA worthlessness quality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worthwhileness is a kind of worth", "pln": ["(: cnet_isa_d1ea45b30a (IsA worthwhileness worth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "worthy is a kind of important person", "pln": ["(: cnet_isa_d4e2d5fbe4 (IsA worthy important_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wound is a kind of damage", "pln": ["(: cnet_isa_f62f5646a5 (IsA wound damage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wound is a kind of distress", "pln": ["(: cnet_isa_623ca0f29a (IsA wound distress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wound is a kind of personnel casualty", "pln": ["(: cnet_isa_48c7eaecda (IsA wound personnel_casualty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wound is a kind of injury", "pln": ["(: cnet_isa_d3ae1fa37b (IsA wound injury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wound tumor virus is a kind of tumor virus", "pln": ["(: cnet_isa_833044b6ff (IsA wound_tumor_virus tumor_virus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wounded is a kind of people", "pln": ["(: cnet_isa_5a53c7adc0 (IsA wounded people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wove paper is a kind of writing paper", "pln": ["(: cnet_isa_8a831b299b (IsA wove_paper writing_paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrack is a kind of seaweed", "pln": ["(: cnet_isa_4950416bdd (IsA wrack seaweed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrack is a kind of destruction", "pln": ["(: cnet_isa_70f1a1fd85 (IsA wrack destruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrangler is a kind of debater", "pln": ["(: cnet_isa_be2feee36a (IsA wrangler debater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wrap is a kind of cloak", "pln": ["(: cnet_isa_809eb7b2b9 (IsA wrap cloak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrap is a kind of sandwich", "pln": ["(: cnet_isa_cdf427e903 (IsA wrap sandwich) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wraparound is a kind of garment", "pln": ["(: cnet_isa_97fee51bcd (IsA wraparound garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrapper is a kind of material", "pln": ["(: cnet_isa_204c4d611f (IsA wrapper material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrapping is a kind of covering", "pln": ["(: cnet_isa_6669fe1d8c (IsA wrapping covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrapping paper is a kind of paper", "pln": ["(: cnet_isa_f42c860cc5 (IsA wrapping_paper paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrasse is a kind of percoid fish", "pln": ["(: cnet_isa_6f55338935 (IsA wrasse percoid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrath is a kind of mortal sin", "pln": ["(: cnet_isa_b6c47c5565 (IsA wrath mortal_sin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wrath is a kind of fury", "pln": ["(: cnet_isa_47e0c86f22 (IsA wrath fury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wreath is a kind of flower arrangement", "pln": ["(: cnet_isa_9d87f253bb (IsA wreath flower_arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wreck is a kind of serious accident", "pln": ["(: cnet_isa_1c7d3427eb (IsA wreck serious_accident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wreck is a kind of ship", "pln": ["(: cnet_isa_045c4cfa9b (IsA wreck ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wreck is a kind of decline", "pln": ["(: cnet_isa_d7d1fc6838 (IsA wreck decline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wreckage is a kind of part", "pln": ["(: cnet_isa_bb2c0caa68 (IsA wreckage part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrecker is a kind of laborer", "pln": ["(: cnet_isa_738d56ad51 (IsA wrecker laborer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wren is a kind of bird", "pln": ["(: cnet_isa_f09b653dc8 (IsA wren bird) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wren is a kind of passerine", "pln": ["(: cnet_isa_34f64f83e1 (IsA wren passerine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wren tit is a kind of titmouse", "pln": ["(: cnet_isa_146f5b6fd7 (IsA wren_tit titmouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wren warbler is a kind of old world warbler", "pln": ["(: cnet_isa_aad590863e (IsA wren_warbler old_world_warbler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrench is a kind of hand tool", "pln": ["(: cnet_isa_ab58f23eb3 (IsA wrench hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrench is a kind of injury", "pln": ["(: cnet_isa_3c1f3d9305 (IsA wrench injury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrester is a kind of puller", "pln": ["(: cnet_isa_b3494ee531 (IsA wrester puller) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrestle is a kind of struggle", "pln": ["(: cnet_isa_7eda714856 (IsA wrestle struggle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrestler is a kind of combatant", "pln": ["(: cnet_isa_a7edd9afb3 (IsA wrestler combatant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrestling is a kind of sport", "pln": ["(: cnet_isa_6d405b871b (IsA wrestling sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrestling is a kind of contact sport", "pln": ["(: cnet_isa_5be22d2d43 (IsA wrestling contact_sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrestling hold is a kind of clasp", "pln": ["(: cnet_isa_6a1161a5c1 (IsA wrestling_hold clasp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrestling mat is a kind of mat", "pln": ["(: cnet_isa_e01e954e11 (IsA wrestling_mat mat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wrestling match is a kind of match", "pln": ["(: cnet_isa_0f518112d1 (IsA wrestling_match match) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrestling ring is a kind of ring", "pln": ["(: cnet_isa_f03900bc86 (IsA wrestling_ring ring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wretch is a kind of reprobate", "pln": ["(: cnet_isa_782161e911 (IsA wretch reprobate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wretchedness is a kind of inferiority", "pln": ["(: cnet_isa_155dca3ac5 (IsA wretchedness inferiority) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wretchedness is a kind of discomfort", "pln": ["(: cnet_isa_8e8429fe03 (IsA wretchedness discomfort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wright is a kind of craftsman", "pln": ["(: cnet_isa_7fcccdbabf (IsA wright craftsman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wringer is a kind of clothe dryer", "pln": ["(: cnet_isa_ec93fca195 (IsA wringer clothe_dryer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrinkle is a kind of difficulty", "pln": ["(: cnet_isa_91cfdfb02e (IsA wrinkle difficulty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wrinkle is a kind of method", "pln": ["(: cnet_isa_9477829fb5 (IsA wrinkle method) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrinkle is a kind of depression", "pln": ["(: cnet_isa_39fc5c0b2d (IsA wrinkle depression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrist is a kind of gliding joint", "pln": ["(: cnet_isa_5511237c2e (IsA wrist gliding_joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrist pad is a kind of protective garment", "pln": ["(: cnet_isa_26a799db40 (IsA wrist_pad protective_garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrist pin is a kind of pin", "pln": ["(: cnet_isa_dd81688005 (IsA wrist_pin pin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wristband is a kind of band", "pln": ["(: cnet_isa_454da84e52 (IsA wristband band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wristlet is a kind of band", "pln": ["(: cnet_isa_0eba6aa5c2 (IsA wristlet band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wristwatch is a kind of portable clock", "pln": ["(: cnet_isa_abfe099f9a (IsA wristwatch portable_clock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wristwatch is a kind of watch", "pln": ["(: cnet_isa_fc32e5efa7 (IsA wristwatch watch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "writ is a kind of legal document", "pln": ["(: cnet_isa_17315f4a02 (IsA writ legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "writ of detinue is a kind of writ", "pln": ["(: cnet_isa_eee038a974 (IsA writ_of_detinue writ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "writ of election is a kind of writ", "pln": ["(: cnet_isa_181ab973b0 (IsA writ_of_election writ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "writ of error is a kind of writ", "pln": ["(: cnet_isa_b0f55b6f16 (IsA writ_of_error writ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "writ of prohibition is a kind of writ", "pln": ["(: cnet_isa_07ccc99b45 (IsA writ_of_prohibition writ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "writ of right is a kind of writ", "pln": ["(: cnet_isa_35c86845b2 (IsA writ_of_right writ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "write in is a kind of vote", "pln": ["(: cnet_isa_de52fdb580 (IsA write_in vote) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "write in candidate is a kind of campaigner", "pln": ["(: cnet_isa_443c0c4e2b (IsA write_in_candidate campaigner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "write off is a kind of depreciation", "pln": ["(: cnet_isa_5dccaba2b9 (IsA write_off depreciation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "write off is a kind of cancellation", "pln": ["(: cnet_isa_2522796a9e (IsA write_off cancellation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "writer s block is a kind of block", "pln": ["(: cnet_isa_d138fa5b08 (IsA writer_s_block block) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "writer s cramp is a kind of spasm", "pln": ["(: cnet_isa_6475d04525 (IsA writer_s_cramp spasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "writer s name is a kind of name", "pln": ["(: cnet_isa_50b8466eec (IsA writer_s_name name) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "writer is a kind of communicator", "pln": ["(: cnet_isa_322a41e222 (IsA writer communicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "writer is a kind of literate", "pln": ["(: cnet_isa_bac4e5a212 (IsA writer literate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "writing is a kind of form of communication", "pln": ["(: cnet_isa_813392b3fe (IsA writing form_of_communication) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "writing is a kind of important communication skill", "pln": ["(: cnet_isa_2d901dac53 (IsA writing important_communication_skill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "writing is a kind of sery of mark on paper", "pln": ["(: cnet_isa_0275b4864a (IsA writing sery_of_mark_on_paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "writing is a kind of way to store information", "pln": ["(: cnet_isa_89a91b69f3 (IsA writing way_to_store_information) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "writing is a kind of activity", "pln": ["(: cnet_isa_d678119bcd (IsA writing activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "writing is a kind of verbal creation", "pln": ["(: cnet_isa_a88c8c1441 (IsA writing verbal_creation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "writing is a kind of oeuvre", "pln": ["(: cnet_isa_99c319e984 (IsA writing oeuvre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "writing is a kind of written communication", "pln": ["(: cnet_isa_e6571f0626 (IsA writing written_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "writing arm is a kind of arm", "pln": ["(: cnet_isa_05f19d668c (IsA writing_arm arm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "writing board is a kind of work surface", "pln": ["(: cnet_isa_dc6b4f3077 (IsA writing_board work_surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "writing desk is a kind of case", "pln": ["(: cnet_isa_720bb4f85e (IsA writing_desk case) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "writing desk is a kind of desk", "pln": ["(: cnet_isa_64319518d2 (IsA writing_desk desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "writing implement is a kind of implement", "pln": ["(: cnet_isa_1d9a057072 (IsA writing_implement implement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "writing ink is a kind of ink", "pln": ["(: cnet_isa_c874e373d0 (IsA writing_ink ink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "writing paper is a kind of paper", "pln": ["(: cnet_isa_ec1fe30720 (IsA writing_paper paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "writing style is a kind of expressive style", "pln": ["(: cnet_isa_5837cf7949 (IsA writing_style expressive_style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "written agreement is a kind of agreement", "pln": ["(: cnet_isa_04177997a1 (IsA written_agreement agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "written agreement is a kind of legal document", "pln": ["(: cnet_isa_6b7c62b518 (IsA written_agreement legal_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "written assignment is a kind of assignment", "pln": ["(: cnet_isa_badde8f7ca (IsA written_assignment assignment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "written communication is a kind of communication", "pln": ["(: cnet_isa_a453637ef1 (IsA written_communication communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "written record is a kind of record", "pln": ["(: cnet_isa_58df42afff (IsA written_record record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "written symbol is a kind of symbol", "pln": ["(: cnet_isa_221a25ac7b (IsA written_symbol symbol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "written word is a kind of word", "pln": ["(: cnet_isa_98ca574851 (IsA written_word word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrong is a kind of injury", "pln": ["(: cnet_isa_28949da7a7 (IsA wrong injury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrong is a kind of injustice", "pln": ["(: cnet_isa_145cd2cf9b (IsA wrong injustice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrong site surgery is a kind of operation", "pln": ["(: cnet_isa_5796319edb (IsA wrong_site_surgery operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrongdoer is a kind of bad person", "pln": ["(: cnet_isa_0a4a382f09 (IsA wrongdoer bad_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrongdoing is a kind of activity", "pln": ["(: cnet_isa_ce18378ca3 (IsA wrongdoing activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrongful death is a kind of death", "pln": ["(: cnet_isa_f246a7ee74 (IsA wrongful_death death) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrongness is a kind of immorality", "pln": ["(: cnet_isa_982eb2fa12 (IsA wrongness immorality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrought iron is a kind of iron", "pln": ["(: cnet_isa_c1a3be17c7 (IsA wrought_iron iron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wrymouth is a kind of blennioid fish", "pln": ["(: cnet_isa_8b345973b4 (IsA wrymouth blennioid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wryneck is a kind of woodpecker", "pln": ["(: cnet_isa_88c7df44c0 (IsA wryneck woodpecker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "wu is a kind of chinese", "pln": ["(: cnet_isa_552b26e051 (IsA wu chinese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wulfenite is a kind of mineral", "pln": ["(: cnet_isa_7beec72e4b (IsA wulfenite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wurtzite is a kind of mineral", "pln": ["(: cnet_isa_8ab352ce96 (IsA wurtzite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wykehamist is a kind of student", "pln": ["(: cnet_isa_9f80a75f67 (IsA wykehamist student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wynnea is a kind of fungus genus", "pln": ["(: cnet_isa_4d94ea4a62 (IsA wynnea fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wynnea americana is a kind of fungus", "pln": ["(: cnet_isa_3084f73f34 (IsA wynnea_americana fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wynnea sparassoide is a kind of fungus", "pln": ["(: cnet_isa_6e2a1e9901 (IsA wynnea_sparassoide fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wyoming is a kind of state", "pln": ["(: cnet_isa_87890dc30a (IsA wyoming state) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wyomingite is a kind of american", "pln": ["(: cnet_isa_85a98547ff (IsA wyomingite american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "wyvern is a kind of dragon", "pln": ["(: cnet_isa_910f5f748b (IsA wyvern dragon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "x is a kind of letter", "pln": ["(: cnet_isa_7fec94147a (IsA x letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "x axis is a kind of coordinate axis", "pln": ["(: cnet_isa_a48e60d75a (IsA x_axis coordinate_axis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "x chromosome is a kind of sex chromosome", "pln": ["(: cnet_isa_cec9a53109 (IsA x_chromosome sex_chromosome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "x linked dominant inheritance is a kind of inheritance", "pln": ["(: cnet_isa_8dacd4ff5f (IsA x_linked_dominant_inheritance inheritance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "x linked gene is a kind of gene", "pln": ["(: cnet_isa_a6823665fc (IsA x_linked_gene gene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "x linked recessive inheritance is a kind of inheritance", "pln": ["(: cnet_isa_748ed01bcb (IsA x_linked_recessive_inheritance inheritance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "x linked scid is a kind of severe combined immunodeficiency", "pln": ["(: cnet_isa_9722de7854 (IsA x_linked_scid severe_combined_immunodeficiency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "x men is a kind of team of mutant", "pln": ["(: cnet_isa_4d61d3bc6c (IsA x_men team_of_mutant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "x or circuit is a kind of gate", "pln": ["(: cnet_isa_ec666d980d (IsA x_or_circuit gate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "x ray is a kind of electromagnetic radiation", "pln": ["(: cnet_isa_d077885f7a (IsA x_ray electromagnetic_radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "x ray is a kind of ionizing radiation", "pln": ["(: cnet_isa_f2b23e1c99 (IsA x_ray ionizing_radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "x ray diffraction is a kind of diffraction", "pln": ["(: cnet_isa_34e37f786d (IsA x_ray_diffraction diffraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "x ray film is a kind of film", "pln": ["(: cnet_isa_6916b8a1ec (IsA x_ray_film film) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "x ray machine is a kind of apparatus", "pln": ["(: cnet_isa_23c6325918 (IsA x_ray_machine apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "x ray therapy is a kind of radiotherapy", "pln": ["(: cnet_isa_5452d0f3c0 (IsA x_ray_therapy radiotherapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "x ray tube is a kind of tube", "pln": ["(: cnet_isa_8fbf2143b3 (IsA x_ray_tube tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "x raying is a kind of imaging", "pln": ["(: cnet_isa_8b59d4e994 (IsA x_raying imaging) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xanthate is a kind of salt", "pln": ["(: cnet_isa_70f56ea2f0 (IsA xanthate salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "xanthelasma is a kind of xanthoma", "pln": ["(: cnet_isa_c7053a455f (IsA xanthelasma xanthoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "xanthic acid is a kind of acid", "pln": ["(: cnet_isa_4f0425b4de (IsA xanthic_acid acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xanthine is a kind of organic compound", "pln": ["(: cnet_isa_420d2f4599 (IsA xanthine organic_compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xanthium is a kind of asterid dicot genus", "pln": ["(: cnet_isa_e65810af1f (IsA xanthium asterid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xanthoma is a kind of skin disease", "pln": ["(: cnet_isa_63e229b766 (IsA xanthoma skin_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xanthoma disseminatum is a kind of xanthoma", "pln": ["(: cnet_isa_56136df665 (IsA xanthoma_disseminatum xanthoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "xanthomatosis is a kind of xanthoma", "pln": ["(: cnet_isa_1bb9a6bb8d (IsA xanthomatosis xanthoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xanthomonad is a kind of eubacteria", "pln": ["(: cnet_isa_986597e1f8 (IsA xanthomonad eubacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xanthomona is a kind of bacteria genus", "pln": ["(: cnet_isa_96f7ad0719 (IsA xanthomona bacteria_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xanthophyceae is a kind of class", "pln": ["(: cnet_isa_1ce6db64fd (IsA xanthophyceae class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xanthophyll is a kind of carotenoid", "pln": ["(: cnet_isa_0a799272e7 (IsA xanthophyll carotenoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xanthopsia is a kind of visual impairment", "pln": ["(: cnet_isa_490dd94270 (IsA xanthopsia visual_impairment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xanthorrhoeaceae is a kind of liliid monocot family", "pln": ["(: cnet_isa_a7947aba01 (IsA xanthorrhoeaceae liliid_monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xanthorroea is a kind of liliid monocot genus", "pln": ["(: cnet_isa_227b81864f (IsA xanthorroea liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xanthosis is a kind of skin disease", "pln": ["(: cnet_isa_9939cfee38 (IsA xanthosis skin_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xanthosoma is a kind of monocot genus", "pln": ["(: cnet_isa_c7bc6020d5 (IsA xanthosoma monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xantusiidae is a kind of reptile family", "pln": ["(: cnet_isa_8499d4cae2 (IsA xantusiidae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xenarthra is a kind of animal order", "pln": ["(: cnet_isa_4289b5b5b7 (IsA xenarthra animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xenicidae is a kind of bird family", "pln": ["(: cnet_isa_f9f5fb3d26 (IsA xenicidae bird_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xenicus is a kind of bird genus", "pln": ["(: cnet_isa_3d3ab10b4b (IsA xenicus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xenolith is a kind of rock", "pln": ["(: cnet_isa_562b5d2fb1 (IsA xenolith rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xenon is a kind of element", "pln": ["(: cnet_isa_702f4d501f (IsA xenon element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xenon is a kind of gas", "pln": ["(: cnet_isa_4d7b291e98 (IsA xenon gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xenon is a kind of chemical element", "pln": ["(: cnet_isa_cfa59844a2 (IsA xenon chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xenon is a kind of noble gas", "pln": ["(: cnet_isa_6a23e3e3eb (IsA xenon noble_gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xenophobia is a kind of social phobia", "pln": ["(: cnet_isa_c9db36abc5 (IsA xenophobia social_phobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xenopodidae is a kind of amphibian family", "pln": ["(: cnet_isa_dd7484e6bf (IsA xenopodidae amphibian_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xenopus is a kind of amphibian genus", "pln": ["(: cnet_isa_57769c3117 (IsA xenopus amphibian_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xenorhyncus is a kind of bird genus", "pln": ["(: cnet_isa_b1a9b678f5 (IsA xenorhyncus bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xenosauridae is a kind of reptile family", "pln": ["(: cnet_isa_550564bf0c (IsA xenosauridae reptile_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "xenosaurus is a kind of reptile genus", "pln": ["(: cnet_isa_293b47aa9b (IsA xenosaurus reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xenotime is a kind of mineral", "pln": ["(: cnet_isa_9587db6f37 (IsA xenotime mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xenotransplant is a kind of transplant", "pln": ["(: cnet_isa_db794edbfd (IsA xenotransplant transplant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "xeranthemum is a kind of flower", "pln": ["(: cnet_isa_6452ff567d (IsA xeranthemum flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xerobate is a kind of reptile genus", "pln": ["(: cnet_isa_3b0739487c (IsA xerobate reptile_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xeroderma is a kind of ichthyosis", "pln": ["(: cnet_isa_f7aa27171d (IsA xeroderma ichthyosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "xeroderma pigmentosum is a kind of xeroderma", "pln": ["(: cnet_isa_41cc2ea0ba (IsA xeroderma_pigmentosum xeroderma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xerographic printer is a kind of page printer", "pln": ["(: cnet_isa_f418530235 (IsA xerographic_printer page_printer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xerography is a kind of photography", "pln": ["(: cnet_isa_b99fedd73d (IsA xerography photography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "xerophthalmia is a kind of dryness", "pln": ["(: cnet_isa_76f2e9ff2f (IsA xerophthalmia dryness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "xiphias is a kind of fish genus", "pln": ["(: cnet_isa_62018c186a (IsA xiphias fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xerophyllum is a kind of liliid monocot genus", "pln": ["(: cnet_isa_0e67725187 (IsA xerophyllum liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xeroradiography is a kind of radiography", "pln": ["(: cnet_isa_8481bf9ed2 (IsA xeroradiography radiography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xerostomia is a kind of dryness", "pln": ["(: cnet_isa_0558cef97f (IsA xerostomia dryness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xerox is a kind of copy", "pln": ["(: cnet_isa_7f2a02d403 (IsA xerox copy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xerox is a kind of duplicator", "pln": ["(: cnet_isa_265fd45d96 (IsA xerox duplicator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xhosa is a kind of nguni", "pln": ["(: cnet_isa_c0cadaf3f8 (IsA xhosa nguni) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xhosa is a kind of african", "pln": ["(: cnet_isa_54e02250a7 (IsA xhosa african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xi is a kind of letter", "pln": ["(: cnet_isa_1f15866d0d (IsA xi letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xiphia is a kind of fish genus", "pln": ["(: cnet_isa_a70dd7fc05 (IsA xiphia fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xiphiidae is a kind of fish family", "pln": ["(: cnet_isa_6a2abd4d74 (IsA xiphiidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xiphoid process is a kind of bone", "pln": ["(: cnet_isa_7415d495e6 (IsA xiphoid_process bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xiphosura is a kind of animal order", "pln": ["(: cnet_isa_1ee3092ae1 (IsA xiphosura animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xx is a kind of sex chromosome", "pln": ["(: cnet_isa_cb542c7184 (IsA xx sex_chromosome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xxx is a kind of sex chromosome", "pln": ["(: cnet_isa_c01c820b95 (IsA xxx sex_chromosome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xxy is a kind of sex chromosome", "pln": ["(: cnet_isa_73e8ad3f40 (IsA xxy sex_chromosome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xy is a kind of sex chromosome", "pln": ["(: cnet_isa_062b6c28df (IsA xy sex_chromosome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xylaria is a kind of fungus genus", "pln": ["(: cnet_isa_8388592840 (IsA xylaria fungus_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xylariaceae is a kind of fungus family", "pln": ["(: cnet_isa_b1734f2ee1 (IsA xylariaceae fungus_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xylem is a kind of vascular tissue", "pln": ["(: cnet_isa_10aa1e7fc3 (IsA xylem vascular_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xylene is a kind of solvent", "pln": ["(: cnet_isa_7caa6d8cb1 (IsA xylene solvent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xylocopa is a kind of arthropod genus", "pln": ["(: cnet_isa_90699d23cb (IsA xylocopa arthropod_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xylomelum is a kind of dicot genus", "pln": ["(: cnet_isa_d71a305499 (IsA xylomelum dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xylophone is a kind of instrument", "pln": ["(: cnet_isa_04a42850f9 (IsA xylophone instrument) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "xylophone is a kind of instrument of music", "pln": ["(: cnet_isa_fbdd5b30bd (IsA xylophone instrument_of_music) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xylophone is a kind of percussion instrument", "pln": ["(: cnet_isa_20b0aff910 (IsA xylophone percussion_instrument) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xylophonist is a kind of percussionist", "pln": ["(: cnet_isa_f02ea24a84 (IsA xylophonist percussionist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xylopia is a kind of magnoliid dicot genus", "pln": ["(: cnet_isa_d04f0fc0f6 (IsA xylopia magnoliid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xylosma is a kind of shrub", "pln": ["(: cnet_isa_720af63ee0 (IsA xylosma shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xyphophorus is a kind of fish genus", "pln": ["(: cnet_isa_64d4293855 (IsA xyphophorus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xyridaceae is a kind of monocot family", "pln": ["(: cnet_isa_11435110c9 (IsA xyridaceae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xyridale is a kind of plant order", "pln": ["(: cnet_isa_1c293fffa4 (IsA xyridale plant_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xyris is a kind of monocot genus", "pln": ["(: cnet_isa_b92c819e50 (IsA xyris monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "xyy is a kind of sex chromosome", "pln": ["(: cnet_isa_830c687893 (IsA xyy sex_chromosome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "y is a kind of letter", "pln": ["(: cnet_isa_5a64ae95a5 (IsA y letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "y2k is a kind of year", "pln": ["(: cnet_isa_80bba3df01 (IsA y2k year) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "y axis is a kind of coordinate axis", "pln": ["(: cnet_isa_9f34f5a66b (IsA y_axis coordinate_axis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "y chromosome is a kind of sex chromosome", "pln": ["(: cnet_isa_a61cff3ac2 (IsA y_chromosome sex_chromosome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "y linked gene is a kind of gene", "pln": ["(: cnet_isa_82f4146d24 (IsA y_linked_gene gene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yacca is a kind of conifer", "pln": ["(: cnet_isa_b913bcc9ba (IsA yacca conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yacht is a kind of vessel", "pln": ["(: cnet_isa_e0c06bb20f (IsA yacht vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yacht chair is a kind of folding chair", "pln": ["(: cnet_isa_8a8fa5e072 (IsA yacht_chair folding_chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yacht club is a kind of club", "pln": ["(: cnet_isa_c083379b63 (IsA yacht_club club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yacht racing is a kind of extremely expensive sport", "pln": ["(: cnet_isa_46a467ae88 (IsA yacht_racing extremely_expensive_sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yachtsman is a kind of sailor", "pln": ["(: cnet_isa_921c4f16f6 (IsA yachtsman sailor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yagi is a kind of directional antenna", "pln": ["(: cnet_isa_745f97f826 (IsA yagi directional_antenna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yahi is a kind of yanan", "pln": ["(: cnet_isa_f70eecc4e2 (IsA yahi yanan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yahi is a kind of hoka", "pln": ["(: cnet_isa_29d379ac4b (IsA yahi hoka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yak s milk is a kind of milk", "pln": ["(: cnet_isa_b0161aadce (IsA yak_s_milk milk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yak is a kind of ox", "pln": ["(: cnet_isa_3e1c36689b (IsA yak ox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yak is a kind of talk", "pln": ["(: cnet_isa_60f8fa4302 (IsA yak talk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yak butter is a kind of butter", "pln": ["(: cnet_isa_cf382c76ae (IsA yak_butter butter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "yakut is a kind of turki", "pln": ["(: cnet_isa_6b922c6eb5 (IsA yakut turki) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yakuza is a kind of organized crime", "pln": ["(: cnet_isa_bf2a8b1ad1 (IsA yakuza organized_crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yakuza is a kind of gangster", "pln": ["(: cnet_isa_9671bef4be (IsA yakuza gangster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yam is a kind of root vegetable", "pln": ["(: cnet_isa_4a3938537a (IsA yam root_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yam is a kind of sweet potato", "pln": ["(: cnet_isa_5116295486 (IsA yam sweet_potato) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yam is a kind of tuber", "pln": ["(: cnet_isa_6c818fc4d8 (IsA yam tuber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yam is a kind of vine", "pln": ["(: cnet_isa_9f7001616e (IsA yam vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yam bean is a kind of vine", "pln": ["(: cnet_isa_c92496e98d (IsA yam_bean vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yana is a kind of yanan", "pln": ["(: cnet_isa_66c8e68997 (IsA yana yanan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yana is a kind of hoka", "pln": ["(: cnet_isa_5a9382ba5c (IsA yana hoka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yanan is a kind of hokan", "pln": ["(: cnet_isa_505d8e045b (IsA yanan hokan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yang is a kind of principle", "pln": ["(: cnet_isa_1994f2a477 (IsA yang principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yank is a kind of american", "pln": ["(: cnet_isa_427b0ae2b8 (IsA yank american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yankee doodle is a kind of american", "pln": ["(: cnet_isa_086d38521d (IsA yankee_doodle american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yanker is a kind of puller", "pln": ["(: cnet_isa_eebf6ce8df (IsA yanker puller) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "yard is a kind of area of land", "pln": ["(: cnet_isa_0bf2c0a298 (IsA yard area_of_land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yard is a kind of unit of measurement", "pln": ["(: cnet_isa_0c9e3ab585 (IsA yard unit_of_measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yard is a kind of enclosure", "pln": ["(: cnet_isa_63f3086662 (IsA yard enclosure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yard is a kind of field", "pln": ["(: cnet_isa_ff1b25c62e (IsA yard field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yard is a kind of spar", "pln": ["(: cnet_isa_7f4344d1bc (IsA yard spar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "yard is a kind of tract", "pln": ["(: cnet_isa_1aeca6b282 (IsA yard tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yard is a kind of linear unit", "pln": ["(: cnet_isa_eda83ab10f (IsA yard linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yard bird is a kind of recruit", "pln": ["(: cnet_isa_0936f44d15 (IsA yard_bird recruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yard donkey is a kind of winch", "pln": ["(: cnet_isa_4f2034f08a (IsA yard_donkey winch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yard good is a kind of merchandise", "pln": ["(: cnet_isa_2464a99395 (IsA yard_good merchandise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yard line is a kind of line", "pln": ["(: cnet_isa_8edc79b99f (IsA yard_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yard marker is a kind of marker", "pln": ["(: cnet_isa_1d024bfbc0 (IsA yard_marker marker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yardage is a kind of distance", "pln": ["(: cnet_isa_55fc87bb8c (IsA yardage distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yardarm is a kind of end", "pln": ["(: cnet_isa_ac275163eb (IsA yardarm end) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yarder is a kind of linear unit", "pln": ["(: cnet_isa_f1feb45dce (IsA yarder linear_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yardgrass is a kind of millet", "pln": ["(: cnet_isa_463332f152 (IsA yardgrass millet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yardie is a kind of gangster", "pln": ["(: cnet_isa_47923d664a (IsA yardie gangster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yardman is a kind of laborer", "pln": ["(: cnet_isa_847d1ef781 (IsA yardman laborer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "yardman is a kind of trainman", "pln": ["(: cnet_isa_29ab0f6658 (IsA yardman trainman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yardmaster is a kind of dispatcher", "pln": ["(: cnet_isa_91f2604f85 (IsA yardmaster dispatcher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yardmaster is a kind of trainman", "pln": ["(: cnet_isa_c70168a30d (IsA yardmaster trainman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yardstick is a kind of rule", "pln": ["(: cnet_isa_349c336ff8 (IsA yardstick rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yardstick is a kind of standard", "pln": ["(: cnet_isa_8ade009bfa (IsA yardstick standard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yarmulke is a kind of skullcap", "pln": ["(: cnet_isa_ecfdce2916 (IsA yarmulke skullcap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "yarrow is a kind of achillea", "pln": ["(: cnet_isa_710ba06d6c (IsA yarrow achillea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yashmak is a kind of head covering", "pln": ["(: cnet_isa_4ac69ef068 (IsA yashmak head_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yataghan is a kind of knife", "pln": ["(: cnet_isa_b1bc7a0758 (IsA yataghan knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yaupon holly is a kind of holly", "pln": ["(: cnet_isa_22e1c035dd (IsA yaupon_holly holly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yautia is a kind of arum", "pln": ["(: cnet_isa_dd6f160de3 (IsA yautia arum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yavapai is a kind of yuman", "pln": ["(: cnet_isa_8400679da8 (IsA yavapai yuman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yavapai is a kind of hoka", "pln": ["(: cnet_isa_879fb6a268 (IsA yavapai hoka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yaw is a kind of turning", "pln": ["(: cnet_isa_feb87e008c (IsA yaw turning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yawl is a kind of sailing vessel", "pln": ["(: cnet_isa_c143561c99 (IsA yawl sailing_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yawl is a kind of small boat", "pln": ["(: cnet_isa_458b48f0d0 (IsA yawl small_boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yawn is a kind of reflex", "pln": ["(: cnet_isa_c88f6fa920 (IsA yawn reflex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yawner is a kind of person", "pln": ["(: cnet_isa_dda44d5fc6 (IsA yawner person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yaw is a kind of infectious disease", "pln": ["(: cnet_isa_98d133462f (IsA yaw infectious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yay is a kind of tai", "pln": ["(: cnet_isa_c16dbcee8a (IsA yay tai) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yb is a kind of computer memory unit", "pln": ["(: cnet_isa_abb421e317 (IsA yb computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yea is a kind of affirmative", "pln": ["(: cnet_isa_12ac708762 (IsA yea affirmative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "year is a kind of 365 day", "pln": ["(: cnet_isa_dc0b4db6fc (IsA year 365_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "year is a kind of time period", "pln": ["(: cnet_isa_651319ae01 (IsA year time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "year dot is a kind of long time", "pln": ["(: cnet_isa_95470e6914 (IsA year_dot long_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "year end is a kind of end", "pln": ["(: cnet_isa_940373421d (IsA year_end end) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "year of grace is a kind of year", "pln": ["(: cnet_isa_44140b9e97 (IsA year_of_grace year) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yearbook is a kind of book", "pln": ["(: cnet_isa_6b4d4aeadb (IsA yearbook book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yearling is a kind of placental", "pln": ["(: cnet_isa_3ff04c0363 (IsA yearling placental) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yearling is a kind of racehorse", "pln": ["(: cnet_isa_d44643a3f1 (IsA yearling racehorse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "yeast is a kind of ingredient in bread", "pln": ["(: cnet_isa_85ce75d764 (IsA yeast ingredient_in_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yeast is a kind of single celled plant", "pln": ["(: cnet_isa_1bbb41fe9c (IsA yeast single_celled_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yeast is a kind of fungus", "pln": ["(: cnet_isa_df1751440b (IsA yeast fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yeast is a kind of leaven", "pln": ["(: cnet_isa_8730a86f4e (IsA yeast leaven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "yeast cake is a kind of yeast", "pln": ["(: cnet_isa_6a1a46e26c (IsA yeast_cake yeast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yelling is a kind of cry", "pln": ["(: cnet_isa_455b4bd8f5 (IsA yelling cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow is a kind of color", "pln": ["(: cnet_isa_154548d65f (IsA yellow color) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "yellow is a kind of colour", "pln": ["(: cnet_isa_6402484592 (IsA yellow colour) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow is a kind of primary color", "pln": ["(: cnet_isa_88a8e6a9d6 (IsA yellow primary_color) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow is a kind of chromatic color", "pln": ["(: cnet_isa_f6ee2f1b19 (IsA yellow chromatic_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow adder s tongue is a kind of dogtooth violet", "pln": ["(: cnet_isa_8cffab4fdf (IsA yellow_adder_s_tongue dogtooth_violet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow aven is a kind of aven", "pln": ["(: cnet_isa_2d8ceb16ce (IsA yellow_aven aven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow bass is a kind of serranid fish", "pln": ["(: cnet_isa_676f404094 (IsA yellow_bass serranid_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow bedstraw is a kind of bedstraw", "pln": ["(: cnet_isa_c22c0a644a (IsA yellow_bedstraw bedstraw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "yellow bellied sapsucker is a kind of sapsucker", "pln": ["(: cnet_isa_5e800d4121 (IsA yellow_bellied_sapsucker sapsucker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow bell is a kind of herb", "pln": ["(: cnet_isa_f8a70b99ff (IsA yellow_bell herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow bile is a kind of liquid body substance", "pln": ["(: cnet_isa_af98defe23 (IsA yellow_bile liquid_body_substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow birch is a kind of birch", "pln": ["(: cnet_isa_705bea2f8c (IsA yellow_birch birch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow blue dichromacy is a kind of dichromacy", "pln": ["(: cnet_isa_3b685c01b9 (IsA yellow_blue_dichromacy dichromacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow breasted bunting is a kind of bunting", "pln": ["(: cnet_isa_26e443286c (IsA yellow_breasted_bunting bunting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow breasted chat is a kind of new world chat", "pln": ["(: cnet_isa_346193731c (IsA yellow_breasted_chat new_world_chat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow bristlegrass is a kind of foxtail", "pln": ["(: cnet_isa_9eb637bbc9 (IsA yellow_bristlegrass foxtail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "yellow chamomile is a kind of composite", "pln": ["(: cnet_isa_773e5c5bc5 (IsA yellow_chamomile composite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow clintonia is a kind of clintonia", "pln": ["(: cnet_isa_b6ba87448a (IsA yellow_clintonia clintonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow colicroot is a kind of colicroot", "pln": ["(: cnet_isa_ed8009cd76 (IsA yellow_colicroot colicroot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow crowned night heron is a kind of night heron", "pln": ["(: cnet_isa_b0b52fc378 (IsA yellow_crowned_night_heron night_heron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow cypress is a kind of cedar", "pln": ["(: cnet_isa_c27dc147ab (IsA yellow_cypress cedar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow dog contract is a kind of labor contract", "pln": ["(: cnet_isa_ae1b62496e (IsA yellow_dog_contract labor_contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow dwarf is a kind of plant disease", "pln": ["(: cnet_isa_99b4f2cad6 (IsA yellow_dwarf plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow dwarf of potato is a kind of yellow dwarf", "pln": ["(: cnet_isa_fbfb8c53d5 (IsA yellow_dwarf_of_potato yellow_dwarf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow eyed grass is a kind of marsh plant", "pln": ["(: cnet_isa_9beb68537b (IsA yellow_eyed_grass marsh_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "yellow fever mosquito is a kind of mosquito", "pln": ["(: cnet_isa_8c5c15e37d (IsA yellow_fever_mosquito mosquito) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow foxglove is a kind of foxglove", "pln": ["(: cnet_isa_3055722d11 (IsA yellow_foxglove foxglove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow giant hyssop is a kind of giant hyssop", "pln": ["(: cnet_isa_e90f86937b (IsA yellow_giant_hyssop giant_hyssop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow globe lily is a kind of globe lily", "pln": ["(: cnet_isa_97417c38ba (IsA yellow_globe_lily globe_lily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow goatfish is a kind of goatfish", "pln": ["(: cnet_isa_cfd43a8ced (IsA yellow_goatfish goatfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow green is a kind of green", "pln": ["(: cnet_isa_acb50bbbd0 (IsA yellow_green green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "yellow green algae is a kind of alga", "pln": ["(: cnet_isa_016e0d671e (IsA yellow_green_algae alga) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow henbane is a kind of ground cherry", "pln": ["(: cnet_isa_8567b616ec (IsA yellow_henbane ground_cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow honeysuckle is a kind of honeysuckle", "pln": ["(: cnet_isa_af4551981e (IsA yellow_honeysuckle honeysuckle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow iris is a kind of iris", "pln": ["(: cnet_isa_ef47739d56 (IsA yellow_iris iris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow jack is a kind of jack", "pln": ["(: cnet_isa_e579119210 (IsA yellow_jack jack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow jack is a kind of flag", "pln": ["(: cnet_isa_085afe7628 (IsA yellow_jack flag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "yellow jack is a kind of infectious disease", "pln": ["(: cnet_isa_f5e5dba273 (IsA yellow_jack infectious_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "yellow jacket is a kind of hornet", "pln": ["(: cnet_isa_a9f57d606e (IsA yellow_jacket hornet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow jasmine is a kind of vine", "pln": ["(: cnet_isa_c5f0b0cce0 (IsA yellow_jasmine vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow journalism is a kind of journalism", "pln": ["(: cnet_isa_afe7a16cce (IsA yellow_journalism journalism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow lady s slipper is a kind of lady s slipper", "pln": ["(: cnet_isa_2316cd324f (IsA yellow_lady_s_slipper lady_s_slipper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow leaf sickle pine is a kind of conifer", "pln": ["(: cnet_isa_dc104e0e8e (IsA yellow_leaf_sickle_pine conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow light is a kind of traffic light", "pln": ["(: cnet_isa_863804de4e (IsA yellow_light traffic_light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow loosestrife is a kind of loosestrife", "pln": ["(: cnet_isa_47ab67ad66 (IsA yellow_loosestrife loosestrife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow lupine is a kind of lupine", "pln": ["(: cnet_isa_8b1e6c4dd5 (IsA yellow_lupine lupine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow mariposa tulip is a kind of mariposa", "pln": ["(: cnet_isa_976f9e5290 (IsA yellow_mariposa_tulip mariposa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow marrow is a kind of marrow", "pln": ["(: cnet_isa_bf339a7713 (IsA yellow_marrow marrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow mountain saxifrage is a kind of saxifrage", "pln": ["(: cnet_isa_22be8a4f70 (IsA yellow_mountain_saxifrage saxifrage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow ocher is a kind of ocher", "pln": ["(: cnet_isa_c38330b0b5 (IsA yellow_ocher ocher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow oleander is a kind of shrub", "pln": ["(: cnet_isa_de5d1d117d (IsA yellow_oleander shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow page is a kind of phonebook", "pln": ["(: cnet_isa_28d919f8e8 (IsA yellow_page phonebook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow perch is a kind of perch", "pln": ["(: cnet_isa_10a45d8bba (IsA yellow_perch perch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow peril is a kind of menace", "pln": ["(: cnet_isa_ef5b445402 (IsA yellow_peril menace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow pimpernel is a kind of loosestrife", "pln": ["(: cnet_isa_dbff4205a7 (IsA yellow_pimpernel loosestrife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow pine is a kind of pine", "pln": ["(: cnet_isa_4db276ae57 (IsA yellow_pine pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow ribbon is a kind of sign of rememberance", "pln": ["(: cnet_isa_215b81e4b9 (IsA yellow_ribbon sign_of_rememberance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow rocket is a kind of weed", "pln": ["(: cnet_isa_a03a0d5a04 (IsA yellow_rocket weed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow rubber duck is a kind of common bath toy", "pln": ["(: cnet_isa_f30114efde (IsA yellow_rubber_duck common_bath_toy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow salsify is a kind of wildflower", "pln": ["(: cnet_isa_8c0ce52523 (IsA yellow_salsify wildflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "yellow sand verbena is a kind of sand verbena", "pln": ["(: cnet_isa_d936335830 (IsA yellow_sand_verbena sand_verbena) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "yellow shafted flicker is a kind of flicker", "pln": ["(: cnet_isa_211896a8a3 (IsA yellow_shafted_flicker flicker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow spiny daisy is a kind of goldenbush", "pln": ["(: cnet_isa_c146e0a552 (IsA yellow_spiny_daisy goldenbush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow spot is a kind of plant disease", "pln": ["(: cnet_isa_7a036cbeb8 (IsA yellow_spot plant_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "yellow spot fungus is a kind of fungus", "pln": ["(: cnet_isa_e7ba88af30 (IsA yellow_spot_fungus fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow squash is a kind of summer squash", "pln": ["(: cnet_isa_395da99db4 (IsA yellow_squash summer_squash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow sweet clover is a kind of melilotus", "pln": ["(: cnet_isa_de3d66d6dd (IsA yellow_sweet_clover melilotus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow throated marten is a kind of marten", "pln": ["(: cnet_isa_0967d3b577 (IsA yellow_throated_marten marten) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow twining snapdragon is a kind of snapdragon", "pln": ["(: cnet_isa_c3563687c9 (IsA yellow_twining_snapdragon snapdragon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "yellow warbler is a kind of new world warbler", "pln": ["(: cnet_isa_204388e912 (IsA yellow_warbler new_world_warbler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellow water lily is a kind of water lily", "pln": ["(: cnet_isa_c39d87f8c0 (IsA yellow_water_lily water_lily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellowbelly marmot is a kind of marmot", "pln": ["(: cnet_isa_927931d7a4 (IsA yellowbelly_marmot marmot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "yellowcake is a kind of compound", "pln": ["(: cnet_isa_eb39c0722f (IsA yellowcake compound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "yellowfin is a kind of tuna", "pln": ["(: cnet_isa_a5de592d05 (IsA yellowfin tuna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellowfin croaker is a kind of croaker", "pln": ["(: cnet_isa_4a25074392 (IsA yellowfin_croaker croaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellowfin mojarra is a kind of mojarra", "pln": ["(: cnet_isa_25fde163f5 (IsA yellowfin_mojarra mojarra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellowhammer is a kind of bunting", "pln": ["(: cnet_isa_c4aa86472a (IsA yellowhammer bunting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellowish brown is a kind of brown", "pln": ["(: cnet_isa_3331d06e5d (IsA yellowish_brown brown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellowish pink is a kind of pink", "pln": ["(: cnet_isa_4ee198fe1d (IsA yellowish_pink pink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellowleg is a kind of sandpiper", "pln": ["(: cnet_isa_4dfc863b09 (IsA yellowleg sandpiper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellowtail is a kind of jack", "pln": ["(: cnet_isa_cdac333b4b (IsA yellowtail jack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellowtail is a kind of snapper", "pln": ["(: cnet_isa_5c9ef7eb4f (IsA yellowtail snapper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellowtail flounder is a kind of righteye flounder", "pln": ["(: cnet_isa_f3d80c51a6 (IsA yellowtail_flounder righteye_flounder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellowtail flounder is a kind of flounder", "pln": ["(: cnet_isa_70436ad422 (IsA yellowtail_flounder flounder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "yellowthroat is a kind of new world warbler", "pln": ["(: cnet_isa_e02355dec3 (IsA yellowthroat new_world_warbler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellowwood is a kind of tree", "pln": ["(: cnet_isa_ef892cd55c (IsA yellowwood tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yellowwood is a kind of wood", "pln": ["(: cnet_isa_7a7ee6a25f (IsA yellowwood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yelp is a kind of cry", "pln": ["(: cnet_isa_600ba2a012 (IsA yelp cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yemeni is a kind of arabian", "pln": ["(: cnet_isa_c1d0e5b428 (IsA yemeni arabian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yemeni fil is a kind of yemeni monetary unit", "pln": ["(: cnet_isa_3d013a6598 (IsA yemeni_fil yemeni_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yemeni monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_4090ddb72b (IsA yemeni_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yemeni rial is a kind of yemeni monetary unit", "pln": ["(: cnet_isa_ee0b20b35c (IsA yemeni_rial yemeni_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yen is a kind of japanese monetary unit", "pln": ["(: cnet_isa_56b4b91b66 (IsA yen japanese_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yeniseian is a kind of russian", "pln": ["(: cnet_isa_c92f6e4dc3 (IsA yeniseian russian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yenta is a kind of gossip", "pln": ["(: cnet_isa_f9d0760acd (IsA yenta gossip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yenta is a kind of shrew", "pln": ["(: cnet_isa_193d08597e (IsA yenta shrew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yeoman is a kind of bodyguard", "pln": ["(: cnet_isa_d431025fae (IsA yeoman bodyguard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yeoman is a kind of freeholder", "pln": ["(: cnet_isa_2338cc80ea (IsA yeoman freeholder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yeomanry is a kind of class", "pln": ["(: cnet_isa_b9d6429828 (IsA yeomanry class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yeomanry is a kind of home guard", "pln": ["(: cnet_isa_e29eb6270e (IsA yeomanry home_guard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yerba buena is a kind of herb", "pln": ["(: cnet_isa_7c92ea85f7 (IsA yerba_buena herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yerba mansa is a kind of herb", "pln": ["(: cnet_isa_131ec4946c (IsA yerba_mansa herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yerba santa is a kind of shrub", "pln": ["(: cnet_isa_86f8dd855e (IsA yerba_santa shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yersinia pestis is a kind of bacillus", "pln": ["(: cnet_isa_5ed503a747 (IsA yersinia_pestis bacillus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yes is a kind of affirmative", "pln": ["(: cnet_isa_54566d7409 (IsA yes affirmative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yes no question is a kind of question", "pln": ["(: cnet_isa_da19d793a2 (IsA yes_no_question question) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yeshiva is a kind of academy", "pln": ["(: cnet_isa_ed94d77601 (IsA yeshiva academy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yesterday is a kind of day", "pln": ["(: cnet_isa_da88087a72 (IsA yesterday day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yesterday is a kind of past", "pln": ["(: cnet_isa_7ee89027b6 (IsA yesterday past) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "yew is a kind of conifer", "pln": ["(: cnet_isa_8a769c9306 (IsA yew conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yew is a kind of wood", "pln": ["(: cnet_isa_74dc2c04ae (IsA yew wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yiddish is a kind of german", "pln": ["(: cnet_isa_51e06f208f (IsA yiddish german) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yield is a kind of product", "pln": ["(: cnet_isa_bfc3327357 (IsA yield product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yin is a kind of principle", "pln": ["(: cnet_isa_71b0457b41 (IsA yin principle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yip is a kind of tension", "pln": ["(: cnet_isa_a0ebf8ed40 (IsA yip tension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ylem is a kind of substance", "pln": ["(: cnet_isa_eff48590db (IsA ylem substance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "yo yo is a kind of toy", "pln": ["(: cnet_isa_81b171dedf (IsA yo_yo toy) (STV 1.0 0.9898))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yo yo is a kind of plaything", "pln": ["(: cnet_isa_320b013ffa (IsA yo_yo plaything) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yobibit is a kind of computer memory unit", "pln": ["(: cnet_isa_fc57fcf527 (IsA yobibit computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yodel is a kind of cry", "pln": ["(: cnet_isa_3898fc7191 (IsA yodel cry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yodeling is a kind of singing", "pln": ["(: cnet_isa_baf72a5539 (IsA yodeling singing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yodeller is a kind of singer", "pln": ["(: cnet_isa_a1b617f2bb (IsA yodeller singer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yodh is a kind of letter", "pln": ["(: cnet_isa_5f7a59c71d (IsA yodh letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yoga is a kind of body training", "pln": ["(: cnet_isa_347534442c (IsA yoga body_training) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yoga is a kind of exercise", "pln": ["(: cnet_isa_a05120889b (IsA yoga exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "yoga is a kind of discipline", "pln": ["(: cnet_isa_554e0b872d (IsA yoga discipline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yogacara is a kind of mahayana", "pln": ["(: cnet_isa_ad829e4f9e (IsA yogacara mahayana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yogi is a kind of philosopher", "pln": ["(: cnet_isa_48152d3b86 (IsA yogi philosopher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yogurt is a kind of dairy product", "pln": ["(: cnet_isa_7afee2f3ea (IsA yogurt dairy_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yogurt is a kind of food", "pln": ["(: cnet_isa_1c3f560556 (IsA yogurt food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yoke is a kind of connection", "pln": ["(: cnet_isa_3895dd2633 (IsA yoke connection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yoke is a kind of fabric", "pln": ["(: cnet_isa_6017faf591 (IsA yoke fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yoke is a kind of stable gear", "pln": ["(: cnet_isa_aec81b1212 (IsA yoke stable_gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "yoke is a kind of support", "pln": ["(: cnet_isa_be0d48f73a (IsA yoke support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yoke is a kind of pair", "pln": ["(: cnet_isa_f1d556a5c2 (IsA yoke pair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "yoke is a kind of oppression", "pln": ["(: cnet_isa_99cb2fd901 (IsA yoke oppression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yokel is a kind of rustic", "pln": ["(: cnet_isa_2d98e7cf91 (IsA yokel rustic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yokut is a kind of penutian", "pln": ["(: cnet_isa_6f1b3af714 (IsA yokut penutian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yolk is a kind of food", "pln": ["(: cnet_isa_1028a1c859 (IsA yolk food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yolk sac is a kind of sac", "pln": ["(: cnet_isa_1c9d850fdd (IsA yolk_sac sac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yom kippur is a kind of high holy day", "pln": ["(: cnet_isa_6035fdbc7e (IsA yom_kippur high_holy_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yom kippur is a kind of major fast day", "pln": ["(: cnet_isa_26fcb0722a (IsA yom_kippur major_fast_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yore is a kind of past", "pln": ["(: cnet_isa_352832c806 (IsA yore past) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "york is a kind of example of city", "pln": ["(: cnet_isa_1a4452e30b (IsA york example_of_city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "york is a kind of dynasty", "pln": ["(: cnet_isa_7da8d097b4 (IsA york dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "york is a kind of royalty", "pln": ["(: cnet_isa_e2e6ec579c (IsA york royalty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yorkshire is a kind of county", "pln": ["(: cnet_isa_e9ac81c6a1 (IsA yorkshire county) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yorkshire pudding is a kind of quick bread", "pln": ["(: cnet_isa_da0833ec24 (IsA yorkshire_pudding quick_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yorkshire terrier is a kind of terrier", "pln": ["(: cnet_isa_17f207541c (IsA yorkshire_terrier terrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yoruba is a kind of kwa", "pln": ["(: cnet_isa_d91b6a808e (IsA yoruba kwa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yoruba is a kind of nigerian", "pln": ["(: cnet_isa_82aa119849 (IsA yoruba nigerian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yosemite toad is a kind of true toad", "pln": ["(: cnet_isa_b158db6e61 (IsA yosemite_toad true_toad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yottabit is a kind of computer memory unit", "pln": ["(: cnet_isa_2afb79078f (IsA yottabit computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yottabyte is a kind of computer memory unit", "pln": ["(: cnet_isa_79edbe49b9 (IsA yottabyte computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "young s modulus is a kind of coefficient of elasticity", "pln": ["(: cnet_isa_0d8dd9ba6d (IsA young_s_modulus coefficient_of_elasticity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "young is a kind of animal", "pln": ["(: cnet_isa_e677375b8c (IsA young animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "young is a kind of age group", "pln": ["(: cnet_isa_bc462341ad (IsA young age_group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "young bird is a kind of young", "pln": ["(: cnet_isa_5a88103a11 (IsA young_bird young) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "young buck is a kind of adolescent", "pln": ["(: cnet_isa_2edd4fe3cc (IsA young_buck adolescent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "young buck is a kind of man", "pln": ["(: cnet_isa_9fd7f0d938 (IsA young_buck man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "young fish is a kind of fish", "pln": ["(: cnet_isa_186ce30781 (IsA young_fish fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "young fish is a kind of young", "pln": ["(: cnet_isa_41afb14b53 (IsA young_fish young) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "young mammal is a kind of young", "pln": ["(: cnet_isa_cc1b38e3e4 (IsA young_mammal young) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "young person is a kind of juvenile", "pln": ["(: cnet_isa_c456cf4899 (IsA young_person juvenile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "young turk is a kind of insurgent", "pln": ["(: cnet_isa_1a14239d26 (IsA young_turk insurgent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "young turk is a kind of radical", "pln": ["(: cnet_isa_5b63fe1b1b (IsA young_turk radical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "youngness is a kind of age", "pln": ["(: cnet_isa_430bf61b4c (IsA youngness age) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "youth is a kind of youngness", "pln": ["(: cnet_isa_c38372bf9c (IsA youth youngness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "youth is a kind of maturity", "pln": ["(: cnet_isa_ce078fd441 (IsA youth maturity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "youth is a kind of time of life", "pln": ["(: cnet_isa_a74ff60e58 (IsA youth time_of_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "youth is a kind of time period", "pln": ["(: cnet_isa_9bbdcbd54a (IsA youth time_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "youth culture is a kind of coeval", "pln": ["(: cnet_isa_eebe77efbf (IsA youth_culture coeval) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "youth culture is a kind of subculture", "pln": ["(: cnet_isa_14934528cf (IsA youth_culture subculture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "youth gang is a kind of gang", "pln": ["(: cnet_isa_770630aeeb (IsA youth_gang gang) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "youth movement is a kind of campaign", "pln": ["(: cnet_isa_438b9385ec (IsA youth_movement campaign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "youth subculture is a kind of youth culture", "pln": ["(: cnet_isa_28c1c5f211 (IsA youth_subculture youth_culture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yoyo is a kind of toy", "pln": ["(: cnet_isa_cf930fd941 (IsA yoyo toy) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yquem is a kind of white wine", "pln": ["(: cnet_isa_c59a610f07 (IsA yquem white_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ytterbium is a kind of metallic element", "pln": ["(: cnet_isa_5fd6fe2932 (IsA ytterbium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yttrium is a kind of metallic element", "pln": ["(: cnet_isa_e82f321aee (IsA yttrium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yuan is a kind of dynasty", "pln": ["(: cnet_isa_35fb084b24 (IsA yuan dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yuan is a kind of chinese monetary unit", "pln": ["(: cnet_isa_a3856897a0 (IsA yuan chinese_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yucatec is a kind of maya", "pln": ["(: cnet_isa_9706994f83 (IsA yucatec maya) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yucateco is a kind of mayan", "pln": ["(: cnet_isa_274076a419 (IsA yucateco mayan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yucca is a kind of shrub", "pln": ["(: cnet_isa_331db079dd (IsA yucca shrub) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yue is a kind of chinese", "pln": ["(: cnet_isa_2e76fd9add (IsA yue chinese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yugoslavian dinar is a kind of yugoslavian monetary unit", "pln": ["(: cnet_isa_4db443c373 (IsA yugoslavian_dinar yugoslavian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yugoslavian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_99da862d61 (IsA yugoslavian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yukon white birch is a kind of birch", "pln": ["(: cnet_isa_004aec5cf0 (IsA yukon_white_birch birch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yule log is a kind of backlog", "pln": ["(: cnet_isa_6d431e4b06 (IsA yule_log backlog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yuma is a kind of yuman", "pln": ["(: cnet_isa_d90db0bdca (IsA yuma yuman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yuma is a kind of hoka", "pln": ["(: cnet_isa_aac1e914a8 (IsA yuma hoka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yuman is a kind of hokan", "pln": ["(: cnet_isa_925a264f41 (IsA yuman hokan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yuppie is a kind of professional", "pln": ["(: cnet_isa_782f0281a6 (IsA yuppie professional) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "yurt is a kind of dwelling", "pln": ["(: cnet_isa_fc1ba9a208 (IsA yurt dwelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "z is a kind of letter", "pln": ["(: cnet_isa_1dcf20c772 (IsA z letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "z axis is a kind of coordinate axis", "pln": ["(: cnet_isa_83054da485 (IsA z_axis coordinate_axis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zaar is a kind of west chadic", "pln": ["(: cnet_isa_a1b2a75c20 (IsA zaar west_chadic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zabaglione is a kind of dessert", "pln": ["(: cnet_isa_1b056ccd0a (IsA zabaglione dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zaglossus is a kind of mammal genus", "pln": ["(: cnet_isa_3a0716733b (IsA zaglossus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zaire is a kind of zairese monetary unit", "pln": ["(: cnet_isa_3a3ebdcf50 (IsA zaire zairese_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zairean is a kind of african", "pln": ["(: cnet_isa_07f549e132 (IsA zairean african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zairese monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_70c40ac803 (IsA zairese_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zakat is a kind of charity", "pln": ["(: cnet_isa_d488432676 (IsA zakat charity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zakat is a kind of pillar of islam", "pln": ["(: cnet_isa_fdc6ef4220 (IsA zakat pillar_of_islam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zalophus is a kind of mammal genus", "pln": ["(: cnet_isa_cde19df71b (IsA zalophus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zambian is a kind of african", "pln": ["(: cnet_isa_37f1f03416 (IsA zambian african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zambian kwacha is a kind of zambian monetary unit", "pln": ["(: cnet_isa_78703163b8 (IsA zambian_kwacha zambian_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zambian monetary unit is a kind of monetary unit", "pln": ["(: cnet_isa_ea411b4d70 (IsA zambian_monetary_unit monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zamia is a kind of cycad", "pln": ["(: cnet_isa_c21a228b3f (IsA zamia cycad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zamiaceae is a kind of gymnosperm family", "pln": ["(: cnet_isa_c7909d2f86 (IsA zamiaceae gymnosperm_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zannichellia is a kind of monocot genus", "pln": ["(: cnet_isa_3ba1f41d5f (IsA zannichellia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zannichelliaceae is a kind of monocot family", "pln": ["(: cnet_isa_d1d95e31ce (IsA zannichelliaceae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zantedeschia is a kind of monocot genus", "pln": ["(: cnet_isa_06cba6271f (IsA zantedeschia monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zanthoxylum is a kind of rosid dicot genus", "pln": ["(: cnet_isa_a3c7ceb486 (IsA zanthoxylum rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zany is a kind of clown", "pln": ["(: cnet_isa_8a57798e2f (IsA zany clown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zanzibar copal is a kind of copal", "pln": ["(: cnet_isa_c09b21269c (IsA zanzibar_copal copal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zap is a kind of event", "pln": ["(: cnet_isa_0d3b652d6e (IsA zap event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zapodidae is a kind of mammal family", "pln": ["(: cnet_isa_9026add399 (IsA zapodidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zapotec is a kind of uto aztecan", "pln": ["(: cnet_isa_a706cb899e (IsA zapotec uto_aztecan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zapotecan is a kind of native american", "pln": ["(: cnet_isa_bed5feb054 (IsA zapotecan native_american) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zapper is a kind of electrical device", "pln": ["(: cnet_isa_e616250766 (IsA zapper electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zapus is a kind of mammal genus", "pln": ["(: cnet_isa_02ef6970ce (IsA zapus mammal_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zarf is a kind of holder", "pln": ["(: cnet_isa_9693b0c7e7 (IsA zarf holder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zayin is a kind of letter", "pln": ["(: cnet_isa_c4850079b4 (IsA zayin letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zb is a kind of computer memory unit", "pln": ["(: cnet_isa_5bf6ecb662 (IsA zb computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zea is a kind of monocot genus", "pln": ["(: cnet_isa_dd625da15f (IsA zea monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zeal is a kind of ardor", "pln": ["(: cnet_isa_04dc3961a1 (IsA zeal ardor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zealander is a kind of dane", "pln": ["(: cnet_isa_d12b1eba36 (IsA zealander dane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zealot is a kind of israelite", "pln": ["(: cnet_isa_8ba6a96c38 (IsA zealot israelite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zeaxanthin is a kind of carotenoid", "pln": ["(: cnet_isa_f0e983a085 (IsA zeaxanthin carotenoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "zebibit is a kind of computer memory unit", "pln": ["(: cnet_isa_666f4a9861 (IsA zebibit computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zebra is a kind of equine", "pln": ["(: cnet_isa_4ff6c604ed (IsA zebra equine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "zebra finch is a kind of grassfinch", "pln": ["(: cnet_isa_5d251111f3 (IsA zebra_finch grassfinch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zebra mussel is a kind of freshwater mussel", "pln": ["(: cnet_isa_c0c0e77b4b (IsA zebra_mussel freshwater_mussel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zebra orchid is a kind of caladenia", "pln": ["(: cnet_isa_59cc25637b (IsA zebra_orchid caladenia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zebra tailed lizard is a kind of iguanid", "pln": ["(: cnet_isa_d6c7202932 (IsA zebra_tailed_lizard iguanid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zebrawood is a kind of tree", "pln": ["(: cnet_isa_ae663dce80 (IsA zebrawood tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zebrawood is a kind of wood", "pln": ["(: cnet_isa_f4a729e6b3 (IsA zebrawood wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zebu is a kind of brahman", "pln": ["(: cnet_isa_8f264f986f (IsA zebu brahman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zeidae is a kind of fish family", "pln": ["(: cnet_isa_c50e1945be (IsA zeidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zeitgeist is a kind of spirit", "pln": ["(: cnet_isa_8cba176c50 (IsA zeitgeist spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zen is a kind of buddhism", "pln": ["(: cnet_isa_2087c1917a (IsA zen buddhism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zen buddhist is a kind of disciple", "pln": ["(: cnet_isa_cfd3f5d88a (IsA zen_buddhist disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "zenaidura is a kind of bird genus", "pln": ["(: cnet_isa_1cbf2e25af (IsA zenaidura bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} -{"nl": "zeroth law of thermodynamics is a kind of law of thermodynamics", "pln": ["(: cnet_isa_5000a73a98 (IsA zeroth_law_of_thermodynamics law_of_thermodynamics) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zenith is a kind of celestial point", "pln": ["(: cnet_isa_a6509b06ee (IsA zenith celestial_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zeolite is a kind of mineral", "pln": ["(: cnet_isa_5cd2dbb2ec (IsA zeolite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zeolite is a kind of water softener", "pln": ["(: cnet_isa_f6ece391da (IsA zeolite water_softener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zeomorphi is a kind of animal order", "pln": ["(: cnet_isa_a5210f23ba (IsA zeomorphi animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zero is a kind of number", "pln": ["(: cnet_isa_e49379fa4e (IsA zero number) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zero is a kind of sight setting", "pln": ["(: cnet_isa_dd190887fb (IsA zero sight_setting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zero is a kind of numerical quantity", "pln": ["(: cnet_isa_fe52469f2c (IsA zero numerical_quantity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zero is a kind of digit", "pln": ["(: cnet_isa_3adc92131d (IsA zero digit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zero coupon bond is a kind of bond", "pln": ["(: cnet_isa_f2b006980b (IsA zero_coupon_bond bond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zero coupon bond is a kind of zero coupon security", "pln": ["(: cnet_isa_31fc065c70 (IsA zero_coupon_bond zero_coupon_security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zero coupon security is a kind of security", "pln": ["(: cnet_isa_cc270259d1 (IsA zero_coupon_security security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zero hour is a kind of hour", "pln": ["(: cnet_isa_e730a1e3e2 (IsA zero_hour hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zero sum game is a kind of game", "pln": ["(: cnet_isa_23a2bd2c38 (IsA zero_sum_game game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zero tolerance is a kind of intolerance", "pln": ["(: cnet_isa_01897ab990 (IsA zero_tolerance intolerance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zero tolerance policy is a kind of policy", "pln": ["(: cnet_isa_ddaa2c5d1f (IsA zero_tolerance_policy policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zeroth law of thermodynamic is a kind of law of thermodynamic", "pln": ["(: cnet_isa_7858d5416b (IsA zeroth_law_of_thermodynamic law_of_thermodynamic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "zeta is a kind of letter", "pln": ["(: cnet_isa_dee74782d4 (IsA zeta letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zettabit is a kind of computer memory unit", "pln": ["(: cnet_isa_aedf6e2498 (IsA zettabit computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "zettabyte is a kind of computer memory unit", "pln": ["(: cnet_isa_d9830e005f (IsA zettabyte computer_memory_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zeugma is a kind of trope", "pln": ["(: cnet_isa_a4b367caab (IsA zeugma trope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zeus is a kind of fish genus", "pln": ["(: cnet_isa_6bd228e249 (IsA zeus fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zhou is a kind of dynasty", "pln": ["(: cnet_isa_d5988bd027 (IsA zhou dynasty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zhuang is a kind of tai", "pln": ["(: cnet_isa_b6109ef5b8 (IsA zhuang tai) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ziegfeld folly is a kind of folly", "pln": ["(: cnet_isa_bb09b1771b (IsA ziegfeld_folly folly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zigadenus is a kind of liliid monocot genus", "pln": ["(: cnet_isa_9287e3f72b (IsA zigadenus liliid_monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ziggurat is a kind of temple", "pln": ["(: cnet_isa_1da694b695 (IsA ziggurat temple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zigzag is a kind of angular shape", "pln": ["(: cnet_isa_661b47ec4c (IsA zigzag angular_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "zigzag goldenrod is a kind of goldenrod", "pln": ["(: cnet_isa_a472c872b7 (IsA zigzag_goldenrod goldenrod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zill is a kind of cymbal", "pln": ["(: cnet_isa_43005c9d29 (IsA zill cymbal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zimbabwe is a kind of country", "pln": ["(: cnet_isa_480706f4f0 (IsA zimbabwe country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "zimbabwean is a kind of african", "pln": ["(: cnet_isa_0e04d7991f (IsA zimbabwean african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zimbabwean dollar is a kind of dollar", "pln": ["(: cnet_isa_d4c6b3c5de (IsA zimbabwean_dollar dollar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zinc is a kind of metallic element", "pln": ["(: cnet_isa_108c3fa38a (IsA zinc metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zinc blende is a kind of mineral", "pln": ["(: cnet_isa_dc92d30fd9 (IsA zinc_blende mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zinc cadmium sulfide is a kind of cadmium sulfide", "pln": ["(: cnet_isa_8a5c66e19e (IsA zinc_cadmium_sulfide cadmium_sulfide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "zinc deficiency is a kind of deficiency disease", "pln": ["(: cnet_isa_73084d1dfe (IsA zinc_deficiency deficiency_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zinc ointment is a kind of ointment", "pln": ["(: cnet_isa_01f861d2c9 (IsA zinc_ointment ointment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zinc oxide is a kind of oxide", "pln": ["(: cnet_isa_fb26282728 (IsA zinc_oxide oxide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zinc sulfate is a kind of sulfate", "pln": ["(: cnet_isa_f1893e1e0c (IsA zinc_sulfate sulfate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zinc sulphide is a kind of sulfide", "pln": ["(: cnet_isa_794ba8c768 (IsA zinc_sulphide sulfide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zinc white is a kind of pigment", "pln": ["(: cnet_isa_e571288f4d (IsA zinc_white pigment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zinfandel is a kind of red wine", "pln": ["(: cnet_isa_a62e468516 (IsA zinfandel red_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zinfandel is a kind of vinifera", "pln": ["(: cnet_isa_edb79b5a84 (IsA zinfandel vinifera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zing is a kind of sound", "pln": ["(: cnet_isa_ffdf5a083e (IsA zing sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zinger is a kind of remark", "pln": ["(: cnet_isa_7d79827a09 (IsA zinger remark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "zingiber is a kind of monocot genus", "pln": ["(: cnet_isa_fa9da9e459 (IsA zingiber monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zingiberaceae is a kind of monocot family", "pln": ["(: cnet_isa_5ac0cefafb (IsA zingiberaceae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zinjanthropus is a kind of australopithecine", "pln": ["(: cnet_isa_0c34c1aaa2 (IsA zinjanthropus australopithecine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zinkenite is a kind of mineral", "pln": ["(: cnet_isa_43c1993bb8 (IsA zinkenite mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zinnia is a kind of flower", "pln": ["(: cnet_isa_9bca6f2c97 (IsA zinnia flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zinnwaldite is a kind of mica", "pln": ["(: cnet_isa_b906b77eb9 (IsA zinnwaldite mica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zionism is a kind of policy", "pln": ["(: cnet_isa_2d6061b80b (IsA zionism policy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zionism is a kind of movement", "pln": ["(: cnet_isa_6172c0ccc2 (IsA zionism movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zionist is a kind of israelite", "pln": ["(: cnet_isa_8e8ed4623a (IsA zionist israelite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zip code is a kind of postal code", "pln": ["(: cnet_isa_a8828f174a (IsA zip_code postal_code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zip code is a kind of code", "pln": ["(: cnet_isa_a8876d3437 (IsA zip_code code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zip gun is a kind of pistol", "pln": ["(: cnet_isa_5b147744de (IsA zip_gun pistol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ziphiidae is a kind of mammal family", "pln": ["(: cnet_isa_6d34fa1573 (IsA ziphiidae mammal_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zircon is a kind of mineral", "pln": ["(: cnet_isa_d041c5f746 (IsA zircon mineral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zirconium is a kind of metallic element", "pln": ["(: cnet_isa_478174c67c (IsA zirconium metallic_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zirconium oxide is a kind of oxide", "pln": ["(: cnet_isa_d79482e2fe (IsA zirconium_oxide oxide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zit is a kind of pimple", "pln": ["(: cnet_isa_62a21b8e53 (IsA zit pimple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zither is a kind of instrument", "pln": ["(: cnet_isa_8d1f78f47d (IsA zither instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zither is a kind of musical instrument", "pln": ["(: cnet_isa_29b1888771 (IsA zither musical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zither is a kind of stringed instrument", "pln": ["(: cnet_isa_56f99b959d (IsA zither stringed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ziti is a kind of pasta", "pln": ["(: cnet_isa_bbb0fc367c (IsA ziti pasta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zizania is a kind of monocot genus", "pln": ["(: cnet_isa_54a87dc6e2 (IsA zizania monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "ziziphus is a kind of dicot genus", "pln": ["(: cnet_isa_60b64a74e8 (IsA ziziphus dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zizz is a kind of nap", "pln": ["(: cnet_isa_9d85cf0dcb (IsA zizz nap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zizz is a kind of sound", "pln": ["(: cnet_isa_0518a9ac55 (IsA zizz sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zloty is a kind of polish monetary unit", "pln": ["(: cnet_isa_413784dce5 (IsA zloty polish_monetary_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zoanthropy is a kind of delusion", "pln": ["(: cnet_isa_651e34f26a (IsA zoanthropy delusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zoarce is a kind of fish genus", "pln": ["(: cnet_isa_906c036311 (IsA zoarce fish_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zoarcidae is a kind of fish family", "pln": ["(: cnet_isa_a29f0fc5a0 (IsA zoarcidae fish_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zodiac is a kind of diagram", "pln": ["(: cnet_isa_16b04be2f8 (IsA zodiac diagram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zodiac is a kind of region", "pln": ["(: cnet_isa_93e9414b2f (IsA zodiac region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zodiacal light is a kind of reflection", "pln": ["(: cnet_isa_783883e7a0 (IsA zodiacal_light reflection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zollinger ellison syndrome is a kind of syndrome", "pln": ["(: cnet_isa_de40031d39 (IsA zollinger_ellison_syndrome syndrome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zombi is a kind of dead person", "pln": ["(: cnet_isa_52c289a945 (IsA zombi dead_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zombi is a kind of deity", "pln": ["(: cnet_isa_4c2ad0724f (IsA zombi deity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zombi is a kind of spirit", "pln": ["(: cnet_isa_8fee5fb73b (IsA zombi spirit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zombie is a kind of monster", "pln": ["(: cnet_isa_5808210183 (IsA zombie monster) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zombie is a kind of undead", "pln": ["(: cnet_isa_0c8ae8692a (IsA zombie undead) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zombie is a kind of highball", "pln": ["(: cnet_isa_9a95fedbd9 (IsA zombie highball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zona pellucida is a kind of zone", "pln": ["(: cnet_isa_d07481bdab (IsA zona_pellucida zone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zone is a kind of structure", "pln": ["(: cnet_isa_2630d9e0fb (IsA zone structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zone is a kind of geographical area", "pln": ["(: cnet_isa_c35ef8ad1c (IsA zone geographical_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zone is a kind of region", "pln": ["(: cnet_isa_9ee48ec1eb (IsA zone region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "zone is a kind of topographic point", "pln": ["(: cnet_isa_25ed22a41c (IsA zone topographic_point) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "zone fire is a kind of artillery fire", "pln": ["(: cnet_isa_d5ecf83d8d (IsA zone_fire artillery_fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zone of interior is a kind of region", "pln": ["(: cnet_isa_bb08b2c131 (IsA zone_of_interior region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zoning is a kind of division", "pln": ["(: cnet_isa_f99b6b25dc (IsA zoning division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "zoning board is a kind of board", "pln": ["(: cnet_isa_b2a636bc74 (IsA zoning_board board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zoning commission is a kind of committee", "pln": ["(: cnet_isa_ee364c9d0e (IsA zoning_commission committee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zonotrichia is a kind of bird genus", "pln": ["(: cnet_isa_230fee5c63 (IsA zonotrichia bird_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zonule is a kind of zone", "pln": ["(: cnet_isa_74cccae8c9 (IsA zonule zone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "zoo keeper is a kind of custodian", "pln": ["(: cnet_isa_7995ff3792 (IsA zoo_keeper custodian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zooid is a kind of organism", "pln": ["(: cnet_isa_294e7b02f1 (IsA zooid organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "zoolatry is a kind of worship", "pln": ["(: cnet_isa_bb2d21032e (IsA zoolatry worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zoologist is a kind of biologist", "pln": ["(: cnet_isa_358db9de6a (IsA zoologist biologist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zoology is a kind of biology", "pln": ["(: cnet_isa_17172808e7 (IsA zoology biology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "zoomastigina is a kind of class", "pln": ["(: cnet_isa_17788a826f (IsA zoomastigina class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zoomastigote is a kind of flagellate", "pln": ["(: cnet_isa_68dcaf008d (IsA zoomastigote flagellate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "zoomorphism is a kind of attribution", "pln": ["(: cnet_isa_5767892b07 (IsA zoomorphism attribution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zoonosis is a kind of animal disease", "pln": ["(: cnet_isa_74c92a8ea1 (IsA zoonosis animal_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zoophilia is a kind of paraphilia", "pln": ["(: cnet_isa_e9b7d238eb (IsA zoophilia paraphilia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zoophobia is a kind of simple phobia", "pln": ["(: cnet_isa_e5c7490348 (IsA zoophobia simple_phobia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zoophyte is a kind of invertebrate", "pln": ["(: cnet_isa_0d43c00310 (IsA zoophyte invertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zooplankton is a kind of animal", "pln": ["(: cnet_isa_2ee17fbe2c (IsA zooplankton animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zoopsia is a kind of visual hallucination", "pln": ["(: cnet_isa_67e262fab7 (IsA zoopsia visual_hallucination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zoospore is a kind of spore", "pln": ["(: cnet_isa_ffc0428b41 (IsA zoospore spore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zoot suit is a kind of suit", "pln": ["(: cnet_isa_97d3549579 (IsA zoot_suit suit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zorak is a kind of one space ghost s enemy", "pln": ["(: cnet_isa_175716a7ab (IsA zorak one_space_ghost_s_enemy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zorak is a kind of space ghost s enemy", "pln": ["(: cnet_isa_2e9ca04acb (IsA zorak space_ghost_s_enemy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zoril is a kind of muishond", "pln": ["(: cnet_isa_a59bc1fc69 (IsA zoril muishond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zork is a kind of game", "pln": ["(: cnet_isa_3cdc4350d6 (IsA zork game) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zoroastrian is a kind of disciple", "pln": ["(: cnet_isa_1572a3d020 (IsA zoroastrian disciple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "zoroastrianism is a kind of religion", "pln": ["(: cnet_isa_53cacb60e3 (IsA zoroastrianism religion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zostera is a kind of monocot genus", "pln": ["(: cnet_isa_a8c316c698 (IsA zostera monocot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zosteraceae is a kind of monocot family", "pln": ["(: cnet_isa_4c23bdc56b (IsA zosteraceae monocot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zoysia is a kind of grass", "pln": ["(: cnet_isa_d9d62e1d0a (IsA zoysia grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zucchini is a kind of summer squash", "pln": ["(: cnet_isa_7c64ad546e (IsA zucchini summer_squash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zucchini is a kind of marrow", "pln": ["(: cnet_isa_07f0e97615 (IsA zucchini marrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zulu is a kind of nguni", "pln": ["(: cnet_isa_24a6d2b8b7 (IsA zulu nguni) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zulu is a kind of african", "pln": ["(: cnet_isa_7ce694b459 (IsA zulu african) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zuni is a kind of pueblo", "pln": ["(: cnet_isa_8fc8d3a53b (IsA zuni pueblo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zurvanism is a kind of heresy", "pln": ["(: cnet_isa_90071fd253 (IsA zurvanism heresy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zurvanism is a kind of theological doctrine", "pln": ["(: cnet_isa_f11a0f1525 (IsA zurvanism theological_doctrine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zurvanism is a kind of sect", "pln": ["(: cnet_isa_447280df57 (IsA zurvanism sect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zwieback is a kind of toast", "pln": ["(: cnet_isa_bb36def5cd (IsA zwieback toast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zydeco is a kind of country music", "pln": ["(: cnet_isa_9f8c8d030a (IsA zydeco country_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zygnema is a kind of protoctist genus", "pln": ["(: cnet_isa_8fafe4790d (IsA zygnema protoctist_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zygnemataceae is a kind of protoctist family", "pln": ["(: cnet_isa_98afa308ec (IsA zygnemataceae protoctist_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zygnematale is a kind of animal order", "pln": ["(: cnet_isa_c509ebbbc5 (IsA zygnematale animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zygocactus is a kind of caryophylloid dicot genus", "pln": ["(: cnet_isa_6926a2b86e (IsA zygocactus caryophylloid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} {"nl": "zygodactyl foot is a kind of bird s foot", "pln": ["(: cnet_isa_bb35faa7af (IsA zygodactyl_foot bird_s_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zygoma is a kind of bone", "pln": ["(: cnet_isa_5902222c22 (IsA zygoma bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zygomatic process is a kind of process", "pln": ["(: cnet_isa_e1a60a73a0 (IsA zygomatic_process process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zygomycete is a kind of class", "pln": ["(: cnet_isa_28700b0b5c (IsA zygomycete class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zygomycota is a kind of division", "pln": ["(: cnet_isa_9d5967bd15 (IsA zygomycota division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zygophyllaceae is a kind of rosid dicot family", "pln": ["(: cnet_isa_47f15f6d14 (IsA zygophyllaceae rosid_dicot_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zygophyllum is a kind of rosid dicot genus", "pln": ["(: cnet_isa_ea801f12c1 (IsA zygophyllum rosid_dicot_genus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zygoptera is a kind of animal order", "pln": ["(: cnet_isa_622f8836ee (IsA zygoptera animal_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zygospore is a kind of spore", "pln": ["(: cnet_isa_1273c12c98 (IsA zygospore spore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zygote is a kind of cell", "pln": ["(: cnet_isa_580e8db4a9 (IsA zygote cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zygotene is a kind of phase", "pln": ["(: cnet_isa_fed9dcf2e1 (IsA zygotene phase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zymase is a kind of enzyme", "pln": ["(: cnet_isa_e401ff4712 (IsA zymase enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zymosis is a kind of infection", "pln": ["(: cnet_isa_730c60c2fe (IsA zymosis infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zymosis is a kind of chemical process", "pln": ["(: cnet_isa_a0a2c327ec (IsA zymosis chemical_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "zymurgy is a kind of biochemistry", "pln": ["(: cnet_isa_dd327ae4c0 (IsA zymurgy biochemistry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "IsA"} +{"nl": "ammonia is made of nitrogen and hydrogen", "pln": ["(: cnet_madeof_e2865e6660 (MadeOf ammonia nitrogen_and_hydrogen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "animated flesh of dead person is made of cell", "pln": ["(: cnet_madeof_cec957ceaa (MadeOf animated_flesh_of_dead_person cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "atom is made of subatomic particle", "pln": ["(: cnet_madeof_450c993e74 (MadeOf atom subatomic_particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} {"nl": "banana pudding is made of banana", "pln": ["(: cnet_madeof_29ec46c65c (MadeOf banana_pudding banana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "bicycle is made of metal", "pln": ["(: cnet_madeof_ea8c78486b (MadeOf bicycle metal) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "book is made of paper", "pln": ["(: cnet_madeof_513eccc959 (MadeOf book paper) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} {"nl": "bottle is made of plastic", "pln": ["(: cnet_madeof_d12b4b900d (MadeOf bottle plastic) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "bottle is made of green glass", "pln": ["(: cnet_madeof_d44506b063 (MadeOf bottle green_glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "brain is made of neuron", "pln": ["(: cnet_madeof_db82c95e80 (MadeOf brain neuron) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "brick is made of clay", "pln": ["(: cnet_madeof_644ea31c73 (MadeOf brick clay) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "cheese is made of milk", "pln": ["(: cnet_madeof_9e79192302 (MadeOf cheese milk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "closet is made of wood", "pln": ["(: cnet_madeof_55bb907d3f (MadeOf closet wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "cloth is made of fiber", "pln": ["(: cnet_madeof_ee8e087f17 (MadeOf cloth fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "community is made of political ideology", "pln": ["(: cnet_madeof_8d8279dedb (MadeOf community political_ideology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "computer is made of hardware", "pln": ["(: cnet_madeof_0313b38930 (MadeOf computer hardware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "computer mice is made of plastic", "pln": ["(: cnet_madeof_e88e0bd75b (MadeOf computer_mice plastic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} {"nl": "computer program is made of source code", "pln": ["(: cnet_madeof_f32ef081fd (MadeOf computer_program source_code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "cotton candy is made of sugar", "pln": ["(: cnet_madeof_2a9a4794ae (MadeOf cotton_candy sugar) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "crt is made of glass", "pln": ["(: cnet_madeof_46eccf9739 (MadeOf crt glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "data is made of bit", "pln": ["(: cnet_madeof_0488f0cf58 (MadeOf data bit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "diamond is made of carbon", "pln": ["(: cnet_madeof_fa57d2e73c (MadeOf diamond carbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "digital data is made of bit", "pln": ["(: cnet_madeof_10e2844e70 (MadeOf digital_data bit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "electricity is made of electron", "pln": ["(: cnet_madeof_1f8aac0b89 (MadeOf electricity electron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "electricity is made of flow of electron", "pln": ["(: cnet_madeof_082b193652 (MadeOf electricity flow_of_electron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "envelope is made of paper", "pln": ["(: cnet_madeof_9cf35d7c02 (MadeOf envelope paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "fabric is made of fiber", "pln": ["(: cnet_madeof_23d364961a (MadeOf fabric fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "furniture is made of wood", "pln": ["(: cnet_madeof_34ce4fc9fb (MadeOf furniture wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "glass is made of sand", "pln": ["(: cnet_madeof_64e164b2dc (MadeOf glass sand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "gnocchi is made of potato", "pln": ["(: cnet_madeof_6879c4dff4 (MadeOf gnocchi potato) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "government is made of political ideology", "pln": ["(: cnet_madeof_796288d004 (MadeOf government political_ideology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "guitar is made of string", "pln": ["(: cnet_madeof_01e31a8740 (MadeOf guitar string) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "heroin is made of diamorphine", "pln": ["(: cnet_madeof_0cf52758c2 (MadeOf heroin diamorphine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "heroin is made of poppy flower", "pln": ["(: cnet_madeof_615317dc38 (MadeOf heroin poppy_flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "house is made of room", "pln": ["(: cnet_madeof_4ae46d61db (MadeOf house room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "house is made of wood", "pln": ["(: cnet_madeof_4e98098a0f (MadeOf house wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "human body is made of molecule", "pln": ["(: cnet_madeof_3fe977d876 (MadeOf human_body molecule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "ice is made of water", "pln": ["(: cnet_madeof_25070f1a87 (MadeOf ice water) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} {"nl": "index card is made of paper", "pln": ["(: cnet_madeof_4070c145f2 (MadeOf index_card paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} -{"nl": "laser is made of photons", "pln": ["(: cnet_madeof_e2a128f0b8 (MadeOf laser photons) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "indica is made of cannabis", "pln": ["(: cnet_madeof_8567bcc893 (MadeOf indica cannabis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "ipod is made of microchip and plastic", "pln": ["(: cnet_madeof_47793bc3b7 (MadeOf ipod microchip_and_plastic) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "jean is made of denim", "pln": ["(: cnet_madeof_8bc6c84b70 (MadeOf jean denim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "john safran is made of cell", "pln": ["(: cnet_madeof_b6e3711306 (MadeOf john_safran cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "katana is made of steel", "pln": ["(: cnet_madeof_ce3411f817 (MadeOf katana steel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "laser is made of photon", "pln": ["(: cnet_madeof_8abdf8ce99 (MadeOf laser photon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "len is made of glass", "pln": ["(: cnet_madeof_a3632ecf64 (MadeOf len glass) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "lens is made of glass", "pln": ["(: cnet_madeof_b216b22c76 (MadeOf lens glass) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "letter is made of paper", "pln": ["(: cnet_madeof_59fb04758e (MadeOf letter paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "light is made of energy", "pln": ["(: cnet_madeof_2fea9ef3dc (MadeOf light energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "lubrication is made of oil", "pln": ["(: cnet_madeof_c959b153c9 (MadeOf lubrication oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "many bottle is made of glass", "pln": ["(: cnet_madeof_ee5c19d73d (MadeOf many_bottle glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "matter is made of particle", "pln": ["(: cnet_madeof_132152d794 (MadeOf matter particle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} {"nl": "mead is made of fermented honey water", "pln": ["(: cnet_madeof_9d3707a51f (MadeOf mead fermented_honey_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} -{"nl": "penis is made of cells", "pln": ["(: cnet_madeof_46c8108647 (MadeOf penis cells) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} -{"nl": "room is made of four walls", "pln": ["(: cnet_madeof_e84757afec (MadeOf room four_walls) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "mind is made of subjective thought", "pln": ["(: cnet_madeof_dbdf6d52ac (MadeOf mind subjective_thought) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "mozart music is made of musical composition", "pln": ["(: cnet_madeof_a8e1cac25a (MadeOf mozart_music musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "music is made of sound", "pln": ["(: cnet_madeof_9e7834ba10 (MadeOf music sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "nail is made of keratin", "pln": ["(: cnet_madeof_13a8205bd3 (MadeOf nail keratin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "newspaper is made of ink and paper", "pln": ["(: cnet_madeof_37480463c0 (MadeOf newspaper ink_and_paper) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "ocean is made of water", "pln": ["(: cnet_madeof_1e5fb883f3 (MadeOf ocean water) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "outfit is made of clothe", "pln": ["(: cnet_madeof_38d44b387a (MadeOf outfit clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "page is made of paper with word on", "pln": ["(: cnet_madeof_de92b49444 (MadeOf page paper_with_word_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "paper is made of tree", "pln": ["(: cnet_madeof_87284f495d (MadeOf paper tree) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "peanut butter is made of peanut", "pln": ["(: cnet_madeof_11b5f7f7d1 (MadeOf peanut_butter peanut) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "pen is made of plastic", "pln": ["(: cnet_madeof_6c3253d77f (MadeOf pen plastic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "pencil is made of wood", "pln": ["(: cnet_madeof_9ec45d72e7 (MadeOf pencil wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "penis is made of cell", "pln": ["(: cnet_madeof_1c3425012f (MadeOf penis cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "penis is made of flesh", "pln": ["(: cnet_madeof_ee8bd22447 (MadeOf penis flesh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "pillow is made of feather", "pln": ["(: cnet_madeof_293bcbc4e3 (MadeOf pillow feather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "porn is made of naked people", "pln": ["(: cnet_madeof_f8729d3a9d (MadeOf porn naked_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "revolution is made of sentient being", "pln": ["(: cnet_madeof_9f913c20ec (MadeOf revolution sentient_being) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "room is made of four wall", "pln": ["(: cnet_madeof_ee0e9cbb26 (MadeOf room four_wall) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "sativa is made of cannabis", "pln": ["(: cnet_madeof_440f11b1ce (MadeOf sativa cannabis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "sausage is made of meat", "pln": ["(: cnet_madeof_8bcb6fa557 (MadeOf sausage meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "semen is made of sperm cell", "pln": ["(: cnet_madeof_8bb90689eb (MadeOf semen sperm_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "set is made of element", "pln": ["(: cnet_madeof_4805c5bb52 (MadeOf set element) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "set is made of member", "pln": ["(: cnet_madeof_4d0ce31f1f (MadeOf set member) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "silverware is made of metal", "pln": ["(: cnet_madeof_727ba424df (MadeOf silverware metal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "soccer ball is made of leather", "pln": ["(: cnet_madeof_c6f4c66904 (MadeOf soccer_ball leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "socialism is made of socialist", "pln": ["(: cnet_madeof_c66e4e6c16 (MadeOf socialism socialist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "sock is made of thread", "pln": ["(: cnet_madeof_a5fa21df97 (MadeOf sock thread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "spring is made of metal", "pln": ["(: cnet_madeof_f4dec3fea6 (MadeOf spring metal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "steel is made of iron", "pln": ["(: cnet_madeof_3027ce7616 (MadeOf steel iron) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "sword is made of steel", "pln": ["(: cnet_madeof_b28a580ea2 (MadeOf sword steel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "system of abstract thought is made of abstraction", "pln": ["(: cnet_madeof_6db3d61e79 (MadeOf system_of_abstract_thought abstraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "system of abstract thought is made of ideal", "pln": ["(: cnet_madeof_8898949dc8 (MadeOf system_of_abstract_thought ideal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "table is made of wood", "pln": ["(: cnet_madeof_9f9af4607e (MadeOf table wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "telephone pole is made of wood", "pln": ["(: cnet_madeof_3528211496 (MadeOf telephone_pole wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "toast is made of bread", "pln": ["(: cnet_madeof_a396548e3b (MadeOf toast bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} {"nl": "tortilla is made of corn or flour", "pln": ["(: cnet_madeof_dd778c2951 (MadeOf tortilla corn_or_flour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "tree is made of wood", "pln": ["(: cnet_madeof_1ba2e949f4 (MadeOf tree wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "tree plant and is made of wood", "pln": ["(: cnet_madeof_187e586db1 (MadeOf tree_plant_and wood) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "trust is made of honesty", "pln": ["(: cnet_madeof_8a7c3ce0ec (MadeOf trust honesty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "tv is made of glass", "pln": ["(: cnet_madeof_11d3328d53 (MadeOf tv glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "tv is made of plastic", "pln": ["(: cnet_madeof_3b37869af7 (MadeOf tv plastic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "u f o is made of alien material", "pln": ["(: cnet_madeof_7646719f46 (MadeOf u_f_o alien_material) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "universe is made of string", "pln": ["(: cnet_madeof_c4c0b884af (MadeOf universe string) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "utopia is made of community", "pln": ["(: cnet_madeof_9ef572f9f9 (MadeOf utopia community) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "utopia is made of equality for everyone", "pln": ["(: cnet_madeof_f0e9d30a4c (MadeOf utopia equality_for_everyone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} {"nl": "water is made of h2o", "pln": ["(: cnet_madeof_3ae98f5ae2 (MadeOf water h2o) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} -{"nl": "whorehouse is made of rooms", "pln": ["(: cnet_madeof_73f4c61fea (MadeOf whorehouse rooms) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "water is made of oxygen", "pln": ["(: cnet_madeof_9c3690ac00 (MadeOf water oxygen) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "wedding ring is made of gold", "pln": ["(: cnet_madeof_a027efb654 (MadeOf wedding_ring gold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "whorehouse is made of room", "pln": ["(: cnet_madeof_ab1f121a55 (MadeOf whorehouse room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "wind is made of air", "pln": ["(: cnet_madeof_acdcd6f8a6 (MadeOf wind air) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "wine is made of fruit", "pln": ["(: cnet_madeof_bd6c269c5c (MadeOf wine fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "written word is made of character", "pln": ["(: cnet_madeof_639b5b2c9d (MadeOf written_word character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "zombie is made of cell", "pln": ["(: cnet_madeof_6403199856 (MadeOf zombie cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "MadeOf"} +{"nl": "9 11 is part of september", "pln": ["(: cnet_partof_ce6d3dd31e (PartOf 9_11 september) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "a is part of alphabet", "pln": ["(: cnet_partof_f1d40c049b (PartOf a alphabet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aachen is part of germany", "pln": ["(: cnet_partof_ba8557f954 (PartOf aachen germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aalborg is part of denmark", "pln": ["(: cnet_partof_ebe9e66e11 (PartOf aalborg denmark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aare is part of switzerland", "pln": ["(: cnet_partof_16f0a2cf3d (PartOf aare switzerland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ab is part of jewish calendar", "pln": ["(: cnet_partof_a7d8ed2b2a (PartOf ab jewish_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "abadan is part of iran", "pln": ["(: cnet_partof_b3d95cf9ab (PartOf abadan iran) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "abdomen is part of torso", "pln": ["(: cnet_partof_190d4cc6b4 (PartOf abdomen torso) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "abdominal is part of abdomen", "pln": ["(: cnet_partof_ae202525e0 (PartOf abdominal abdomen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "abdominal aorta is part of abdomen", "pln": ["(: cnet_partof_1cd65cd50f (PartOf abdominal_aorta abdomen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "abdominal cavity is part of abdomen", "pln": ["(: cnet_partof_2d27b1bdda (PartOf abdominal_cavity abdomen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "abdominal wall is part of abdomen", "pln": ["(: cnet_partof_567a06a9a1 (PartOf abdominal_wall abdomen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aberdare is part of wale", "pln": ["(: cnet_partof_8ab3dd33ec (PartOf aberdare wale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aberdeen is part of maryland", "pln": ["(: cnet_partof_914aeba0ea (PartOf aberdeen maryland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "aberdeen is part of scotland", "pln": ["(: cnet_partof_bcd1bc8cfd (PartOf aberdeen scotland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aberdeen is part of south dakota", "pln": ["(: cnet_partof_aca98ceadf (PartOf aberdeen south_dakota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aberdeen is part of washington", "pln": ["(: cnet_partof_43228ca1f0 (PartOf aberdeen washington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "abhenry is part of henry", "pln": ["(: cnet_partof_356a245936 (PartOf abhenry henry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "abidjan is part of ivory coast", "pln": ["(: cnet_partof_1cd4b1a01e (PartOf abidjan ivory_coast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "abilene is part of kansa", "pln": ["(: cnet_partof_d424130c3e (PartOf abilene kansa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "abilene is part of texa", "pln": ["(: cnet_partof_8cea43a417 (PartOf abilene texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "abkhaz is part of georgia", "pln": ["(: cnet_partof_d16680bd0a (PartOf abkhaz georgia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "abohm is part of ohm", "pln": ["(: cnet_partof_328ee9ac28 (PartOf abohm ohm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "abomasum is part of ruminant", "pln": ["(: cnet_partof_9fd0625e02 (PartOf abomasum ruminant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "abruzzi is part of italy", "pln": ["(: cnet_partof_47d8a0494a (PartOf abruzzi italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "absolution is part of penance", "pln": ["(: cnet_partof_8e30cb2408 (PartOf absolution penance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "acadia is part of maritime provinces", "pln": ["(: cnet_partof_8e412570b9 (PartOf acadia maritime_provinces) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "absorption is part of extinction", "pln": ["(: cnet_partof_08f8d3f546 (PartOf absorption extinction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "abu dhabi is part of united arab emirate", "pln": ["(: cnet_partof_0504212371 (PartOf abu_dhabi united_arab_emirate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "abuja is part of nigeria", "pln": ["(: cnet_partof_c8564a0894 (PartOf abuja nigeria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "abukir is part of mediterranean", "pln": ["(: cnet_partof_23bd73bb71 (PartOf abukir mediterranean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "abvolt is part of volt", "pln": ["(: cnet_partof_a24b08803d (PartOf abvolt volt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "abwatt is part of milliwatt", "pln": ["(: cnet_partof_aa673bf395 (PartOf abwatt milliwatt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "abydo is part of turkey", "pln": ["(: cnet_partof_b13712de35 (PartOf abydo turkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "academic gown is part of academic costume", "pln": ["(: cnet_partof_21dea5e205 (PartOf academic_gown academic_costume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "acadia is part of maritime province", "pln": ["(: cnet_partof_7c5c336d16 (PartOf acadia maritime_province) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "acadia national park is part of maine", "pln": ["(: cnet_partof_72166fd70e (PartOf acadia_national_park maine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "acantholysis is part of pemphigus", "pln": ["(: cnet_partof_388d97cb8c (PartOf acantholysis pemphigus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "acanthosis is part of psoriasis", "pln": ["(: cnet_partof_1dc6a01fa3 (PartOf acanthosis psoriasis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "acapulco is part of mexico", "pln": ["(: cnet_partof_913098ba12 (PartOf acapulco mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "acapulco gold is part of marijuana", "pln": ["(: cnet_partof_25f20cbe4b (PartOf acapulco_gold marijuana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "acardia is part of monster", "pln": ["(: cnet_partof_a4c1c733ba (PartOf acardia monster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "accelerator is part of airplane", "pln": ["(: cnet_partof_a0bd83b919 (PartOf accelerator airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "accelerator is part of car", "pln": ["(: cnet_partof_02d9eef7b2 (PartOf accelerator car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "accelerator is part of fuel system", "pln": ["(: cnet_partof_81509dceb9 (PartOf accelerator fuel_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "accessory cephalic vein is part of forearm", "pln": ["(: cnet_partof_7886abb02e (PartOf accessory_cephalic_vein forearm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "accra is part of ghana", "pln": ["(: cnet_partof_cebd0ff226 (PartOf accra ghana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "acephalia is part of monster", "pln": ["(: cnet_partof_684bb99553 (PartOf acephalia monster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "acerola is part of barbado cherry", "pln": ["(: cnet_partof_9f9d573035 (PartOf acerola barbado_cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "acetabulum is part of hipbone", "pln": ["(: cnet_partof_1b02df6f38 (PartOf acetabulum hipbone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "acetate disk is part of phonograph record", "pln": ["(: cnet_partof_71ecb48db6 (PartOf acetate_disk phonograph_record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "achaea is part of greece", "pln": ["(: cnet_partof_57007ae39c (PartOf achaea greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "acheron is part of hel", "pln": ["(: cnet_partof_72d038b173 (PartOf acheron hel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "achille tendon is part of calf", "pln": ["(: cnet_partof_b3f7b82834 (PartOf achille_tendon calf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "achille tendon is part of heel", "pln": ["(: cnet_partof_959a2876b8 (PartOf achille_tendon heel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "achromatin is part of nucleus", "pln": ["(: cnet_partof_6810df81d7 (PartOf achromatin nucleus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "acinus is part of gland", "pln": ["(: cnet_partof_3511850bba (PartOf acinus gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ackee is part of akee", "pln": ["(: cnet_partof_fb07086949 (PartOf ackee akee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aconcagua is part of ande", "pln": ["(: cnet_partof_02495ff3a4 (PartOf aconcagua ande) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aconcagua is part of argentina", "pln": ["(: cnet_partof_a91fd2e2d7 (PartOf aconcagua argentina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "acorn is part of oak", "pln": ["(: cnet_partof_51166da1c7 (PartOf acorn oak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "acorn squash is part of acorn squash", "pln": ["(: cnet_partof_cbb512ea27 (PartOf acorn_squash acorn_squash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "acoustic delay line is part of acoustic storage", "pln": ["(: cnet_partof_eabe022c0a (PartOf acoustic_delay_line acoustic_storage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "acoustic nerve is part of auditory system", "pln": ["(: cnet_partof_7be7aa31a2 (PartOf acoustic_nerve auditory_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "acre is part of brazil", "pln": ["(: cnet_partof_3af872638a (PartOf acre brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "acre is part of israel", "pln": ["(: cnet_partof_8b2f28a5ee (PartOf acre israel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "acrobatic stunt is part of acrobatic", "pln": ["(: cnet_partof_98d08e4da1 (PartOf acrobatic_stunt acrobatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "acromion is part of scapula", "pln": ["(: cnet_partof_5874c9a143 (PartOf acromion scapula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "acrosome is part of sperm", "pln": ["(: cnet_partof_c0ef3051e9 (PartOf acrosome sperm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "act is part of ballet", "pln": ["(: cnet_partof_a237075f10 (PartOf act ballet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "act is part of opera", "pln": ["(: cnet_partof_dc6daecf2f (PartOf act opera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "act is part of play", "pln": ["(: cnet_partof_00ef832c6e (PartOf act play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "acting is part of performance", "pln": ["(: cnet_partof_b589e0a055 (PartOf acting performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "actinic radiation is part of electromagnetic spectrum", "pln": ["(: cnet_partof_ad3de78694 (PartOf actinic_radiation electromagnetic_spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "action is part of gun", "pln": ["(: cnet_partof_9eef9368e2 (PartOf action gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "action is part of keyboard", "pln": ["(: cnet_partof_69f7531447 (PartOf action keyboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "actium is part of greece", "pln": ["(: cnet_partof_b8e883028b (PartOf actium greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "active site is part of antibody", "pln": ["(: cnet_partof_e40e462fee (PartOf active_site antibody) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "active site is part of enzyme", "pln": ["(: cnet_partof_4451f953f9 (PartOf active_site enzyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "actor s line is part of dialogue", "pln": ["(: cnet_partof_2961b2c1c2 (PartOf actor_s_line dialogue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "act of apostle is part of new testament", "pln": ["(: cnet_partof_9cd18bb425 (PartOf act_of_apostle new_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "adagio is part of pas de deux", "pln": ["(: cnet_partof_c70d4c1a4e (PartOf adagio pas_de_deux) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "adam s peak is part of sri lanka", "pln": ["(: cnet_partof_7184b7b7b4 (PartOf adam_s_peak sri_lanka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "adam is part of cascade", "pln": ["(: cnet_partof_4d1ac50592 (PartOf adam cascade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "adam is part of washington", "pln": ["(: cnet_partof_545ce28d0c (PartOf adam washington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "adana is part of turkey", "pln": ["(: cnet_partof_729eeb6fea (PartOf adana turkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "adaptation is part of evolution", "pln": ["(: cnet_partof_3a39e9585f (PartOf adaptation evolution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "adar is part of jewish calendar", "pln": ["(: cnet_partof_19a1bb56b8 (PartOf adar jewish_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "addendum is part of back matter", "pln": ["(: cnet_partof_6940e794e2 (PartOf addendum back_matter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "adding machine is part of cash register", "pln": ["(: cnet_partof_9b5989fe3b (PartOf adding_machine cash_register) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "addis ababa is part of ethiopia", "pln": ["(: cnet_partof_b45646f4d6 (PartOf addis_ababa ethiopia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "addition to esther is part of apocrypha", "pln": ["(: cnet_partof_27b2cd325e (PartOf addition_to_esther apocrypha) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "address is part of letter", "pln": ["(: cnet_partof_837d7e8b50 (PartOf address letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "adelaide is part of south australia", "pln": ["(: cnet_partof_e0ce7bd323 (PartOf adelaide south_australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "adelie coast is part of antarctica", "pln": ["(: cnet_partof_d4dadf07aa (PartOf adelie_coast antarctica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aden is part of yemen", "pln": ["(: cnet_partof_8595ae6756 (PartOf aden yemen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "adige is part of italy", "pln": ["(: cnet_partof_f531b43453 (PartOf adige italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "adirondack is part of new york", "pln": ["(: cnet_partof_9df40cd0d7 (PartOf adirondack new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "adit is part of mine", "pln": ["(: cnet_partof_65da10690b (PartOf adit mine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "adjective is part of adjective", "pln": ["(: cnet_partof_3733ece2e3 (PartOf adjective adjective) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "administration is part of government", "pln": ["(: cnet_partof_57d8fd5e20 (PartOf administration government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "admiralty island is part of alexander archipelago", "pln": ["(: cnet_partof_f4f2b1e307 (PartOf admiralty_island alexander_archipelago) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "admiralty island is part of bismarck archipelago", "pln": ["(: cnet_partof_b77291e93f (PartOf admiralty_island bismarck_archipelago) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "admiralty range is part of antarctica", "pln": ["(: cnet_partof_e857cd0a2a (PartOf admiralty_range antarctica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "adolescence is part of youth", "pln": ["(: cnet_partof_5ae25eb81d (PartOf adolescence youth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "adrenal cortex is part of adrenal gland", "pln": ["(: cnet_partof_535e3c4833 (PartOf adrenal_cortex adrenal_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "adrenal gland is part of kidney", "pln": ["(: cnet_partof_db87c44fd5 (PartOf adrenal_gland kidney) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "adrenal medulla is part of adrenal gland", "pln": ["(: cnet_partof_219a774216 (PartOf adrenal_medulla adrenal_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "adriatic is part of mediterranean", "pln": ["(: cnet_partof_663acc4336 (PartOf adriatic mediterranean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "adult body is part of adult", "pln": ["(: cnet_partof_23a730715e (PartOf adult_body adult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "adult female body is part of woman", "pln": ["(: cnet_partof_86d1f96332 (PartOf adult_female_body woman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "adult male body is part of man", "pln": ["(: cnet_partof_d258441868 (PartOf adult_male_body man) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "advanced research and development activity is part of intelligence community", "pln": ["(: cnet_partof_78ebfaabb0 (PartOf advanced_research_and_development_activity intelligence_community) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "advantage is part of tennis", "pln": ["(: cnet_partof_740f3d4922 (PartOf advantage tennis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "advent is part of church calendar", "pln": ["(: cnet_partof_89e5a61cf3 (PartOf advent church_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "advent sunday is part of advent", "pln": ["(: cnet_partof_b77466b2f2 (PartOf advent_sunday advent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "adverb is part of adverb", "pln": ["(: cnet_partof_7e408c0dc6 (PartOf adverb adverb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "advice and consent is part of united state constitution", "pln": ["(: cnet_partof_27a5dfe412 (PartOf advice_and_consent united_state_constitution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "adzhar is part of georgia", "pln": ["(: cnet_partof_a03eef527e (PartOf adzhar georgia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aeciospore is part of rust", "pln": ["(: cnet_partof_8a604cabc8 (PartOf aeciospore rust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "aecium is part of rust", "pln": ["(: cnet_partof_ef8dcaa5e0 (PartOf aecium rust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "aegates isles is part of punic war", "pln": ["(: cnet_partof_e46603c0f2 (PartOf aegates_isles punic_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aegate isle is part of punic war", "pln": ["(: cnet_partof_c3dc5d770d (PartOf aegate_isle punic_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aegean is part of mediterranean", "pln": ["(: cnet_partof_7f7262202f (PartOf aegean mediterranean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aegean island is part of aegean", "pln": ["(: cnet_partof_a810c90870 (PartOf aegean_island aegean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aegina is part of greece", "pln": ["(: cnet_partof_f33962177c (PartOf aegina greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aegospotami is part of peloponnesian war", "pln": ["(: cnet_partof_ff94c9a8af (PartOf aegospotami peloponnesian_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aegospotami is part of turkey", "pln": ["(: cnet_partof_639e54011f (PartOf aegospotami turkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "aeolis is part of asia minor", "pln": ["(: cnet_partof_b5a0dfa7ad (PartOf aeolis asia_minor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aerospace is part of space", "pln": ["(: cnet_partof_9bac774f87 (PartOf aerospace space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "afferent fiber is part of sensory nerve", "pln": ["(: cnet_partof_8a3042435d (PartOf afferent_fiber sensory_nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "affix is part of word", "pln": ["(: cnet_partof_cc9c6f3107 (PartOf affix word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "afghanistan is part of asia", "pln": ["(: cnet_partof_a378ba0c13 (PartOf afghanistan asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "africa is part of eastern hemisphere", "pln": ["(: cnet_partof_77becdc98e (PartOf africa eastern_hemisphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "african country is part of africa", "pln": ["(: cnet_partof_95df37b6c1 (PartOf african_country africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "afterburner is part of turbojet", "pln": ["(: cnet_partof_5229368df8 (PartOf afterburner turbojet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "age is part of life", "pln": ["(: cnet_partof_146834e68d (PartOf age life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "agenda item is part of agenda", "pln": ["(: cnet_partof_ff462dc6fe (PartOf agenda_item agenda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aggression is part of war", "pln": ["(: cnet_partof_f0eb6ebf3a (PartOf aggression war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aghan is part of hindu calendar", "pln": ["(: cnet_partof_abfdee3e69 (PartOf aghan hindu_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aglet is part of shoelace", "pln": ["(: cnet_partof_560ec618ad (PartOf aglet shoelace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "agora is part of shekel", "pln": ["(: cnet_partof_449a3a4e5d (PartOf agora shekel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "agra is part of india", "pln": ["(: cnet_partof_4f4fe06bfe (PartOf agra india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "agrigento is part of sicily", "pln": ["(: cnet_partof_91e30b9841 (PartOf agrigento sicily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "agrobiology is part of agronomy", "pln": ["(: cnet_partof_576b2b611f (PartOf agrobiology agronomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "agrology is part of agronomy", "pln": ["(: cnet_partof_9c5fe96c1b (PartOf agrology agronomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "air combat command is part of united states air force", "pln": ["(: cnet_partof_aa157ab099 (PartOf air_combat_command united_states_air_force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "air force space command is part of united states air force", "pln": ["(: cnet_partof_c83351e995 (PartOf air_force_space_command united_states_air_force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ague is part of malaria", "pln": ["(: cnet_partof_f6188da6e8 (PartOf ague malaria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ahuehuete is part of mexico", "pln": ["(: cnet_partof_13caad41f2 (PartOf ahuehuete mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aileron is part of wing", "pln": ["(: cnet_partof_a22cc103b7 (PartOf aileron wing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "air bag is part of car", "pln": ["(: cnet_partof_f37384c225 (PartOf air_bag car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "air combat command is part of united state air force", "pln": ["(: cnet_partof_d0d8b55fe1 (PartOf air_combat_command united_state_air_force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "air filter is part of ventilator", "pln": ["(: cnet_partof_011ec6bd5f (PartOf air_filter ventilator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "air force intelligence surveillance and reconnaissance is part of united state air force", "pln": ["(: cnet_partof_2017126f74 (PartOf air_force_intelligence_surveillance_and_reconnaissance united_state_air_force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "air force research laboratory is part of united state air force", "pln": ["(: cnet_partof_17b21dd367 (PartOf air_force_research_laboratory united_state_air_force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "air force space command is part of united state air force", "pln": ["(: cnet_partof_617ac46435 (PartOf air_force_space_command united_state_air_force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "air horn is part of carburetor", "pln": ["(: cnet_partof_785c3eb193 (PartOf air_horn carburetor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "air intake is part of carburetor", "pln": ["(: cnet_partof_90855d9dc1 (PartOf air_intake carburetor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "air national guard is part of united state air force", "pln": ["(: cnet_partof_0f0c2ebcb3 (PartOf air_national_guard united_state_air_force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "air sac is part of bird", "pln": ["(: cnet_partof_1f5df4c492 (PartOf air_sac bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "air sac is part of insect", "pln": ["(: cnet_partof_eb87fae6b2 (PartOf air_sac insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "air terminal is part of airport", "pln": ["(: cnet_partof_d418f0eb9c (PartOf air_terminal airport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "airbrake is part of motor vehicle", "pln": ["(: cnet_partof_bf9dedc2c5 (PartOf airbrake motor_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aircraft engine is part of aircraft", "pln": ["(: cnet_partof_ed8b88d95b (PartOf aircraft_engine aircraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "airdock is part of airport", "pln": ["(: cnet_partof_06a7d2b3b2 (PartOf airdock airport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aire is part of england", "pln": ["(: cnet_partof_e306ef53e5 (PartOf aire england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "airfield is part of transportation system", "pln": ["(: cnet_partof_6444ce2597 (PartOf airfield transportation_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "airplane propeller is part of propeller plane", "pln": ["(: cnet_partof_3dbf6f5e03 (PartOf airplane_propeller propeller_plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "airspace is part of atmosphere", "pln": ["(: cnet_partof_59dd6b3186 (PartOf airspace atmosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "akron is part of ohio", "pln": ["(: cnet_partof_02ca890323 (PartOf akron ohio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "al ladhiqiyah is part of syria", "pln": ["(: cnet_partof_7f0e17f42a (PartOf al_ladhiqiyah syria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "aland islands is part of finland", "pln": ["(: cnet_partof_dcdd10c4a0 (PartOf aland_islands finland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ala is part of insect", "pln": ["(: cnet_partof_e0609cc137 (PartOf ala insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "alabama is part of deep south", "pln": ["(: cnet_partof_b36a9fb37a (PartOf alabama deep_south) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "alabama is part of gulf state", "pln": ["(: cnet_partof_41776552ce (PartOf alabama gulf_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "alabama is part of united state", "pln": ["(: cnet_partof_356532d7d3 (PartOf alabama united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "alabama is part of alabama", "pln": ["(: cnet_partof_6763fb2cd3 (PartOf alabama alabama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aland island is part of finland", "pln": ["(: cnet_partof_fb2cc12e6d (PartOf aland_island finland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aland island is part of gulf of bothnia", "pln": ["(: cnet_partof_e27b5c3e07 (PartOf aland_island gulf_of_bothnia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "alaska is part of united state", "pln": ["(: cnet_partof_4df85c4f6f (PartOf alaska united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "alaska king crab is part of king crab", "pln": ["(: cnet_partof_8bfa08f6d8 (PartOf alaska_king_crab king_crab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "alaska peninsula is part of alaska", "pln": ["(: cnet_partof_e5b78152a7 (PartOf alaska_peninsula alaska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "alaska range is part of alaska", "pln": ["(: cnet_partof_daee4c217b (PartOf alaska_range alaska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "alaskan pipeline is part of alaska", "pln": ["(: cnet_partof_b01fb39c6a (PartOf alaskan_pipeline alaska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "albacore is part of albacore", "pln": ["(: cnet_partof_d9b42f5dc8 (PartOf albacore albacore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "albania is part of balkan peninsula", "pln": ["(: cnet_partof_862b0812ff (PartOf albania balkan_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "albany is part of georgia", "pln": ["(: cnet_partof_7b22a17775 (PartOf albany georgia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "albany is part of new york", "pln": ["(: cnet_partof_bebc04ccba (PartOf albany new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "alberta is part of canada", "pln": ["(: cnet_partof_539cb28d4c (PartOf alberta canada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "albuquerque is part of new mexico", "pln": ["(: cnet_partof_0d7f23f436 (PartOf albuquerque new_mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aleppo is part of syria", "pln": ["(: cnet_partof_775547bbdf (PartOf aleppo syria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aleutian island is part of alaska", "pln": ["(: cnet_partof_b4d1671020 (PartOf aleutian_island alaska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aleutian island is part of pacific", "pln": ["(: cnet_partof_e1c3b6e0c9 (PartOf aleutian_island pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "alewife is part of alewife", "pln": ["(: cnet_partof_63a8e96bdd (PartOf alewife alewife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "alexander archipelago is part of alaska", "pln": ["(: cnet_partof_0cc67e654b (PartOf alexander_archipelago alaska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "alexandria is part of egypt", "pln": ["(: cnet_partof_fa03b01106 (PartOf alexandria egypt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "alexandria is part of louisiana", "pln": ["(: cnet_partof_f89d6b959a (PartOf alexandria louisiana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "alfalfa is part of alfalfa", "pln": ["(: cnet_partof_0acc99f67d (PartOf alfalfa alfalfa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "algarroba is part of algarroba", "pln": ["(: cnet_partof_cb64f34d0d (PartOf algarroba algarroba) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "algeria is part of maghreb", "pln": ["(: cnet_partof_f530b24599 (PartOf algeria maghreb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "algerian centime is part of algerian dinar", "pln": ["(: cnet_partof_55a5d001e4 (PartOf algerian_centime algerian_dinar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "algier is part of algeria", "pln": ["(: cnet_partof_7612e3d038 (PartOf algier algeria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "alhambra is part of granada", "pln": ["(: cnet_partof_8af37e293f (PartOf alhambra granada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "alidade is part of theodolite", "pln": ["(: cnet_partof_01a3db158a (PartOf alidade theodolite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "alimentary canal is part of digestive system", "pln": ["(: cnet_partof_6224dee97f (PartOf alimentary_canal digestive_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "all saint day is part of november", "pln": ["(: cnet_partof_e4eb2eb8cf (PartOf all_saint_day november) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "all soul day is part of november", "pln": ["(: cnet_partof_200fb5074a (PartOf all_soul_day november) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "allegheny is part of appalachian", "pln": ["(: cnet_partof_cdd7dc194b (PartOf allegheny appalachian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "allegheny is part of pennsylvania", "pln": ["(: cnet_partof_89ffcbf32d (PartOf allegheny pennsylvania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "allegheny is part of virginia", "pln": ["(: cnet_partof_8b97063d4f (PartOf allegheny virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "allegheny is part of west virginia", "pln": ["(: cnet_partof_1d7e764643 (PartOf allegheny west_virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "allegheny is part of new york", "pln": ["(: cnet_partof_08fc8ddb57 (PartOf allegheny new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "allentown is part of pennsylvania", "pln": ["(: cnet_partof_40cbb02676 (PartOf allentown pennsylvania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "allied command atlantic is part of north atlantic treaty organization", "pln": ["(: cnet_partof_efa4076ceb (PartOf allied_command_atlantic north_atlantic_treaty_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "allied command europe is part of north atlantic treaty organization", "pln": ["(: cnet_partof_7ec1dd8073 (PartOf allied_command_europe north_atlantic_treaty_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "allspice is part of allspice", "pln": ["(: cnet_partof_b16ac9c91b (PartOf allspice allspice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "almaty is part of kazakhstan", "pln": ["(: cnet_partof_5186413f23 (PartOf almaty kazakhstan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "almond is part of almond", "pln": ["(: cnet_partof_d64b7a7500 (PartOf almond almond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "alpena is part of michigan", "pln": ["(: cnet_partof_9429e36ece (PartOf alpena michigan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "alpha receptor is part of sympathetic nervous system", "pln": ["(: cnet_partof_04477410ac (PartOf alpha_receptor sympathetic_nervous_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "altai mountains is part of asia", "pln": ["(: cnet_partof_31bc1eb9b8 (PartOf altai_mountains asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "alp is part of austria", "pln": ["(: cnet_partof_cfef13c79e (PartOf alp austria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "alp is part of france", "pln": ["(: cnet_partof_059aa3fe97 (PartOf alp france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "alp is part of italy", "pln": ["(: cnet_partof_514a1f0966 (PartOf alp italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "alp is part of switzerland", "pln": ["(: cnet_partof_97e42e68e4 (PartOf alp switzerland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "alsace is part of france", "pln": ["(: cnet_partof_9a4b0b1d30 (PartOf alsace france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "altai mountain is part of asia", "pln": ["(: cnet_partof_813c8a828b (PartOf altai_mountain asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "alternator is part of electrical system", "pln": ["(: cnet_partof_11c1d2d9a7 (PartOf alternator electrical_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "altoona is part of pennsylvania", "pln": ["(: cnet_partof_50bbbfc807 (PartOf altoona pennsylvania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "alula is part of fly", "pln": ["(: cnet_partof_f4365fb7a0 (PartOf alula fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "alveolar arch is part of jaw", "pln": ["(: cnet_partof_12cbd19a38 (PartOf alveolar_arch jaw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "alveolar artery is part of alveolar ridge", "pln": ["(: cnet_partof_1e7083def4 (PartOf alveolar_artery alveolar_ridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "alveolar bed is part of lung", "pln": ["(: cnet_partof_93808bb97c (PartOf alveolar_bed lung) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "alveolar ridge is part of jaw", "pln": ["(: cnet_partof_4a54d7aa21 (PartOf alveolar_ridge jaw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "alveolus is part of lung", "pln": ["(: cnet_partof_6fbef62fe4 (PartOf alveolus lung) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "amarelle is part of amarelle", "pln": ["(: cnet_partof_8e0c24e029 (PartOf amarelle amarelle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "amarillo is part of texa", "pln": ["(: cnet_partof_e2f20dfb9b (PartOf amarillo texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "amazon is part of brazil", "pln": ["(: cnet_partof_f389433cee (PartOf amazon brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "amazon is part of peru", "pln": ["(: cnet_partof_921b44d679 (PartOf amazon peru) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ambulacrum is part of echinoderm", "pln": ["(: cnet_partof_53b2d3e6a5 (PartOf ambulacrum echinoderm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "amen corner is part of church", "pln": ["(: cnet_partof_2e02a78b40 (PartOf amen_corner church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "american fall is part of new york", "pln": ["(: cnet_partof_819f4f6609 (PartOf american_fall new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "american fall is part of niagara", "pln": ["(: cnet_partof_6357ae401b (PartOf american_fall niagara) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "american indian day is part of september", "pln": ["(: cnet_partof_8a367b89b2 (PartOf american_indian_day september) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "american lobster is part of american lobster", "pln": ["(: cnet_partof_1b086a7f1c (PartOf american_lobster american_lobster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "american samoa is part of samoa", "pln": ["(: cnet_partof_7698ab2d1a (PartOf american_samoa samoa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "american smelt is part of rainbow smelt", "pln": ["(: cnet_partof_26ae307a80 (PartOf american_smelt rainbow_smelt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "american state is part of united state", "pln": ["(: cnet_partof_758774c1ed (PartOf american_state united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "amman is part of jordan", "pln": ["(: cnet_partof_fa66409759 (PartOf amman jordan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "amnion is part of amniote", "pln": ["(: cnet_partof_ae49903042 (PartOf amnion amniote) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "amnion is part of fetal membrane", "pln": ["(: cnet_partof_cf7abe548a (PartOf amnion fetal_membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "amniotic fluid is part of amniotic cavity", "pln": ["(: cnet_partof_a881881a67 (PartOf amniotic_fluid amniotic_cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "amo is part of old testament", "pln": ["(: cnet_partof_fdca7e2688 (PartOf amo old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "amo is part of prophet", "pln": ["(: cnet_partof_386d108bc4 (PartOf amo prophet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ampere is part of abampere", "pln": ["(: cnet_partof_baaa41914d (PartOf ampere abampere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ampere minute is part of ampere hour", "pln": ["(: cnet_partof_f9138c2f6b (PartOf ampere_minute ampere_hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "amplifier is part of public address system", "pln": ["(: cnet_partof_4494fa38e4 (PartOf amplifier public_address_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "amplifier is part of radio receiver", "pln": ["(: cnet_partof_baceaddcd1 (PartOf amplifier radio_receiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "amplifier is part of stereo", "pln": ["(: cnet_partof_fb9d09caeb (PartOf amplifier stereo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ampulla is part of duct", "pln": ["(: cnet_partof_2e15cf6f34 (PartOf ampulla duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "amsterdam is part of netherland", "pln": ["(: cnet_partof_75122b233b (PartOf amsterdam netherland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "amur is part of china", "pln": ["(: cnet_partof_824d44cda5 (PartOf amur china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "amur is part of russia", "pln": ["(: cnet_partof_184d36ff45 (PartOf amur russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "amygdala is part of brain", "pln": ["(: cnet_partof_226a1d29bc (PartOf amygdala brain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "amygdala is part of limbic system", "pln": ["(: cnet_partof_b5726c3780 (PartOf amygdala limbic_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "amygdala is part of temporal lobe", "pln": ["(: cnet_partof_8bacd9d069 (PartOf amygdala temporal_lobe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "anabolism is part of metabolism", "pln": ["(: cnet_partof_dcff6f525f (PartOf anabolism metabolism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "anaheim is part of california", "pln": ["(: cnet_partof_a16f595b57 (PartOf anaheim california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "anal sphincter is part of anus", "pln": ["(: cnet_partof_5ccd6017d0 (PartOf anal_sphincter anus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "anal stage is part of childhood", "pln": ["(: cnet_partof_77a87c6cf8 (PartOf anal_stage childhood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "anaphase is part of meiosis", "pln": ["(: cnet_partof_bd2b3749b4 (PartOf anaphase meiosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "anchor is part of vessel", "pln": ["(: cnet_partof_8b97a6dd8a (PartOf anchor vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "anchorage is part of alaska", "pln": ["(: cnet_partof_743ddced5e (PartOf anchorage alaska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "anchorage is part of seaport", "pln": ["(: cnet_partof_b072df5e04 (PartOf anchorage seaport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "anchovy pear is part of anchovy pear", "pln": ["(: cnet_partof_a371e4baaa (PartOf anchovy_pear anchovy_pear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ancohuma is part of ande", "pln": ["(: cnet_partof_f76080bf51 (PartOf ancohuma ande) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ancohuma is part of bolivia", "pln": ["(: cnet_partof_6eb585d42b (PartOf ancohuma bolivia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "anconeous muscle is part of forearm", "pln": ["(: cnet_partof_ff1ed310f0 (PartOf anconeous_muscle forearm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "andalusia is part of spain", "pln": ["(: cnet_partof_bb0b62ed83 (PartOf andalusia spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "andaman sea is part of bay of bengal", "pln": ["(: cnet_partof_17af801d16 (PartOf andaman_sea bay_of_bengal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ande is part of argentina", "pln": ["(: cnet_partof_c3b8072f4e (PartOf ande argentina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ande is part of bolivia", "pln": ["(: cnet_partof_e577714106 (PartOf ande bolivia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ande is part of chile", "pln": ["(: cnet_partof_d475944dab (PartOf ande chile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ande is part of colombia", "pln": ["(: cnet_partof_ccc7bc15e5 (PartOf ande colombia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ande is part of ecuador", "pln": ["(: cnet_partof_a71d895360 (PartOf ande ecuador) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ande is part of peru", "pln": ["(: cnet_partof_b890636eaf (PartOf ande peru) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "andhra pradesh is part of india", "pln": ["(: cnet_partof_4c627beb99 (PartOf andhra_pradesh india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "andorra is part of europe", "pln": ["(: cnet_partof_91ce2254f4 (PartOf andorra europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "andorra is part of iberian peninsula", "pln": ["(: cnet_partof_ec155dc847 (PartOf andorra iberian_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "aneroid barometer is part of altimeter", "pln": ["(: cnet_partof_1994fb69aa (PartOf aneroid_barometer altimeter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "angel is part of venezuela", "pln": ["(: cnet_partof_103cdd058b (PartOf angel venezuela) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "anglesey is part of wale", "pln": ["(: cnet_partof_49d172ef5d (PartOf anglesey wale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "angola is part of africa", "pln": ["(: cnet_partof_4d6516fee1 (PartOf angola africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "angostura bridge is part of ciudad bolivar", "pln": ["(: cnet_partof_69b4ad70a4 (PartOf angostura_bridge ciudad_bolivar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "angstrom is part of nanometer", "pln": ["(: cnet_partof_913371a87e (PartOf angstrom nanometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "anguilla is part of west indy", "pln": ["(: cnet_partof_b2866fbd97 (PartOf anguilla west_indy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "animal is part of ecology", "pln": ["(: cnet_partof_a79e5515ca (PartOf animal ecology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "animal leg is part of biped", "pln": ["(: cnet_partof_64cee047ae (PartOf animal_leg biped) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "animal leg is part of quadruped", "pln": ["(: cnet_partof_602349633c (PartOf animal_leg quadruped) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "anise is part of anise", "pln": ["(: cnet_partof_adc72d2855 (PartOf anise anise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "anjou is part of france", "pln": ["(: cnet_partof_50a1d9bfcf (PartOf anjou france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ankara is part of turkey", "pln": ["(: cnet_partof_8a704fde6d (PartOf ankara turkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ankle is part of leg", "pln": ["(: cnet_partof_d12d2ef91f (PartOf ankle leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "anklebone is part of ankle", "pln": ["(: cnet_partof_6832c38a58 (PartOf anklebone ankle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ann arbor is part of michigan", "pln": ["(: cnet_partof_729b7075b4 (PartOf ann_arbor michigan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "annaba is part of algeria", "pln": ["(: cnet_partof_f1e4942e1b (PartOf annaba algeria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "annapolis is part of maryland", "pln": ["(: cnet_partof_6d26045d79 (PartOf annapolis maryland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "annapurna is part of himalaya", "pln": ["(: cnet_partof_4828cff76e (PartOf annapurna himalaya) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "annapurna is part of nepal", "pln": ["(: cnet_partof_bb242a04f5 (PartOf annapurna nepal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "annex is part of building", "pln": ["(: cnet_partof_e913106798 (PartOf annex building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "annulus is part of partial veil", "pln": ["(: cnet_partof_32a2402c4a (PartOf annulus partial_veil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "annunciation is part of march", "pln": ["(: cnet_partof_6bd0805eab (PartOf annunciation march) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "anode is part of electrolytic cell", "pln": ["(: cnet_partof_5783833327 (PartOf anode electrolytic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "anode is part of storage battery", "pln": ["(: cnet_partof_905c3d6eb9 (PartOf anode storage_battery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "anode is part of tube", "pln": ["(: cnet_partof_ddf4c08fdc (PartOf anode tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "anode is part of voltaic cell", "pln": ["(: cnet_partof_4cf5f30086 (PartOf anode voltaic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "antalya is part of turkey", "pln": ["(: cnet_partof_0b7bdfd47d (PartOf antalya turkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "antananarivo is part of madagascar", "pln": ["(: cnet_partof_739793959f (PartOf antananarivo madagascar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "antarctic ocean is part of antarctic", "pln": ["(: cnet_partof_06d5425ae5 (PartOf antarctic_ocean antarctic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "antarctic ocean is part of atlantic", "pln": ["(: cnet_partof_f6dcbe1052 (PartOf antarctic_ocean atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "antarctic ocean is part of indian ocean", "pln": ["(: cnet_partof_4aca969c01 (PartOf antarctic_ocean indian_ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "antarctic ocean is part of pacific", "pln": ["(: cnet_partof_f6175f9f94 (PartOf antarctic_ocean pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "antarctic peninsula is part of antarctica", "pln": ["(: cnet_partof_7a8635f32d (PartOf antarctic_peninsula antarctica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "antarctica is part of antarctic", "pln": ["(: cnet_partof_5a016fea8f (PartOf antarctica antarctic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "antenna is part of radio", "pln": ["(: cnet_partof_38d2991c18 (PartOf antenna radio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "antenna is part of receiver", "pln": ["(: cnet_partof_93f63c660c (PartOf antenna receiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "antenna is part of transmitter", "pln": ["(: cnet_partof_ee326665b5 (PartOf antenna transmitter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "anterior horn is part of spinal nerve root", "pln": ["(: cnet_partof_bb090109c9 (PartOf anterior_horn spinal_nerve_root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "anterior pituitary is part of pituitary", "pln": ["(: cnet_partof_f2ee2d44c2 (PartOf anterior_pituitary pituitary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "anteroom is part of building", "pln": ["(: cnet_partof_5affbfc9d4 (PartOf anteroom building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "anther is part of stamen", "pln": ["(: cnet_partof_f7a223279c (PartOf anther stamen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "anticlimax is part of story", "pln": ["(: cnet_partof_a267129143 (PartOf anticlimax story) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "antigenic determinant is part of antigen", "pln": ["(: cnet_partof_213bbf952c (PartOf antigenic_determinant antigen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "antigua is part of antigua and barbuda", "pln": ["(: cnet_partof_75bd81883e (PartOf antigua antigua_and_barbuda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "antigua and barbuda is part of caribbean", "pln": ["(: cnet_partof_4121f4267f (PartOf antigua_and_barbuda caribbean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "antigua and barbuda is part of leeward island", "pln": ["(: cnet_partof_afc397f2c6 (PartOf antigua_and_barbuda leeward_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "antille is part of west indy", "pln": ["(: cnet_partof_9cf93948e4 (PartOf antille west_indy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "antioch is part of turkey", "pln": ["(: cnet_partof_dd4244b686 (PartOf antioch turkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "antiphrasis is part of irony", "pln": ["(: cnet_partof_227469d38d (PartOf antiphrasis irony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "antiquark is part of hadron", "pln": ["(: cnet_partof_df5dc83282 (PartOf antiquark hadron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "antiquity is part of history", "pln": ["(: cnet_partof_00149578bd (PartOf antiquity history) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "antistrophe is part of lyric", "pln": ["(: cnet_partof_e13481f91b (PartOf antistrophe lyric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "antler is part of deer", "pln": ["(: cnet_partof_ee2e25ff3a (PartOf antler deer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "antler is part of moose", "pln": ["(: cnet_partof_77f33a3cf8 (PartOf antler moose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "antofagasta is part of chile", "pln": ["(: cnet_partof_8bae91cb11 (PartOf antofagasta chile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "antonine wall is part of scotland", "pln": ["(: cnet_partof_8499088fe2 (PartOf antonine_wall scotland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "antwerpen is part of belgium", "pln": ["(: cnet_partof_3f1af36f1c (PartOf antwerpen belgium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "anus is part of body", "pln": ["(: cnet_partof_24b387a626 (PartOf anus body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "anus is part of human body", "pln": ["(: cnet_partof_3a8ab72176 (PartOf anus human_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "anus is part of normal human body", "pln": ["(: cnet_partof_e5f912b141 (PartOf anus normal_human_body) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "anus is part of rectum", "pln": ["(: cnet_partof_662fa19fda (PartOf anus rectum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "anvil is part of forge", "pln": ["(: cnet_partof_0c9292f62f (PartOf anvil forge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "anzio is part of italy", "pln": ["(: cnet_partof_3f77e01c7b (PartOf anzio italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "apalachicola is part of florida", "pln": ["(: cnet_partof_23a4c8e105 (PartOf apalachicola florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "apartment is part of apartment building", "pln": ["(: cnet_partof_73d796ffbe (PartOf apartment apartment_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "apeldoorn is part of netherland", "pln": ["(: cnet_partof_db5116f4d0 (PartOf apeldoorn netherland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "apennine is part of italy", "pln": ["(: cnet_partof_9fd91b817d (PartOf apennine italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aperture is part of camera", "pln": ["(: cnet_partof_d5d21e8eec (PartOf aperture camera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aperture is part of telescope", "pln": ["(: cnet_partof_b527d00c30 (PartOf aperture telescope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aperture is part of eye", "pln": ["(: cnet_partof_098e89d568 (PartOf aperture eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "apex is part of celestial sphere", "pln": ["(: cnet_partof_850cd1eebd (PartOf apex celestial_sphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "apia is part of samoa", "pln": ["(: cnet_partof_013a29acc4 (PartOf apia samoa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "apoapsis is part of orbit", "pln": ["(: cnet_partof_5a0570290d (PartOf apoapsis orbit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "apocrypha is part of old testament", "pln": ["(: cnet_partof_8de36fb17c (PartOf apocrypha old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "apodeme is part of arthropod", "pln": ["(: cnet_partof_e16025d254 (PartOf apodeme arthropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "apophysis is part of vertebra", "pln": ["(: cnet_partof_6e707ee06a (PartOf apophysis vertebra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "appalachia is part of appalachian", "pln": ["(: cnet_partof_776937cea8 (PartOf appalachia appalachian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "appalachian is part of east", "pln": ["(: cnet_partof_0d640b63ca (PartOf appalachian east) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "appendicular skeleton is part of endoskeleton", "pln": ["(: cnet_partof_24e42097a1 (PartOf appendicular_skeleton endoskeleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "appendix is part of cecum", "pln": ["(: cnet_partof_8a94dc4496 (PartOf appendix cecum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "appian way is part of italy", "pln": ["(: cnet_partof_2a812ed4e8 (PartOf appian_way italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "applause is part of ovation", "pln": ["(: cnet_partof_f4b5027eb0 (PartOf applause ovation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "apple is part of apple", "pln": ["(: cnet_partof_da23673b54 (PartOf apple apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "appleton is part of wisconsin", "pln": ["(: cnet_partof_5c82aa659a (PartOf appleton wisconsin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "appleton layer is part of ionosphere", "pln": ["(: cnet_partof_ee9a1ae471 (PartOf appleton_layer ionosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "approach path is part of traffic pattern", "pln": ["(: cnet_partof_e00ea4ed7c (PartOf approach_path traffic_pattern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "apricot is part of common apricot", "pln": ["(: cnet_partof_25236e65ff (PartOf apricot common_apricot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "april is part of gregorian calendar", "pln": ["(: cnet_partof_bfbe1e9e30 (PartOf april gregorian_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "april fool is part of april", "pln": ["(: cnet_partof_74397951cb (PartOf april_fool april) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "apron is part of airfield", "pln": ["(: cnet_partof_4930514cf1 (PartOf apron airfield) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "apron is part of fairway", "pln": ["(: cnet_partof_45e933e0b3 (PartOf apron fairway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "apron string is part of apron", "pln": ["(: cnet_partof_d25c62421d (PartOf apron_string apron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "apse is part of church", "pln": ["(: cnet_partof_bef23dc7c6 (PartOf apse church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aqaba is part of jordan", "pln": ["(: cnet_partof_f27946b709 (PartOf aqaba jordan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "aquarius is part of zodiac", "pln": ["(: cnet_partof_c8d95563ba (PartOf aquarius zodiac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "architectonics is part of architecture", "pln": ["(: cnet_partof_8dfe30dd31 (PartOf architectonics architecture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aquila is part of abruzzi", "pln": ["(: cnet_partof_3a59c67f06 (PartOf aquila abruzzi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aquitaine is part of france", "pln": ["(: cnet_partof_8fe4ad46a0 (PartOf aquitaine france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arabian desert is part of arabian peninsula", "pln": ["(: cnet_partof_b856e4535f (PartOf arabian_desert arabian_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arabian peninsula is part of asia", "pln": ["(: cnet_partof_0e1c789004 (PartOf arabian_peninsula asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arabian sea is part of indian ocean", "pln": ["(: cnet_partof_8d0b8eaded (PartOf arabian_sea indian_ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arachnoid is part of leptomeninge", "pln": ["(: cnet_partof_b58e05d3e0 (PartOf arachnoid leptomeninge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arafura sea is part of pacific", "pln": ["(: cnet_partof_3fdaaa9d3c (PartOf arafura_sea pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aragon is part of spain", "pln": ["(: cnet_partof_bf9349d90c (PartOf aragon spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "araguaia is part of brazil", "pln": ["(: cnet_partof_e9cbe3516f (PartOf araguaia brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aran island is part of galway bay", "pln": ["(: cnet_partof_d5dd1b5db4 (PartOf aran_island galway_bay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aran island is part of ireland", "pln": ["(: cnet_partof_90e87f8d0c (PartOf aran_island ireland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ararat is part of turkey", "pln": ["(: cnet_partof_32eba628c8 (PartOf ararat turkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ara is part of armenia", "pln": ["(: cnet_partof_77588fa7a4 (PartOf ara armenia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ara is part of turkey", "pln": ["(: cnet_partof_8ae2ef4d00 (PartOf ara turkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arauca is part of colombia", "pln": ["(: cnet_partof_c8dde7f602 (PartOf arauca colombia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arauca is part of venezuela", "pln": ["(: cnet_partof_fcdcb69e5c (PartOf arauca venezuela) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arbitration clause is part of contract", "pln": ["(: cnet_partof_04401d4815 (PartOf arbitration_clause contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arc is part of circle", "pln": ["(: cnet_partof_a3b58d39fc (PartOf arc circle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arc is part of sector", "pln": ["(: cnet_partof_91bb2ded30 (PartOf arc sector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arcadia is part of greece", "pln": ["(: cnet_partof_6af5a14aff (PartOf arcadia greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arch is part of aqueduct", "pln": ["(: cnet_partof_29eb1ca55e (PartOf arch aqueduct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arch is part of arcade", "pln": ["(: cnet_partof_1707a33e12 (PartOf arch arcade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arch is part of bridge", "pln": ["(: cnet_partof_5f24810398 (PartOf arch bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arch is part of wall", "pln": ["(: cnet_partof_1060c9fe08 (PartOf arch wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "archean is part of precambrian", "pln": ["(: cnet_partof_7b84dda664 (PartOf archean precambrian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "archenteron is part of gastrula", "pln": ["(: cnet_partof_83e6013374 (PartOf archenteron gastrula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arche national park is part of utah", "pln": ["(: cnet_partof_30178d5408 (PartOf arche_national_park utah) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "architectonic is part of architecture", "pln": ["(: cnet_partof_263c2c6443 (PartOf architectonic architecture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "architrave is part of entablature", "pln": ["(: cnet_partof_ffa0bbe10f (PartOf architrave entablature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arctic archipelago is part of canada", "pln": ["(: cnet_partof_47d4f405a8 (PartOf arctic_archipelago canada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arcuate artery is part of foot", "pln": ["(: cnet_partof_19d0d987c3 (PartOf arcuate_artery foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arcuate artery of kidney is part of kidney", "pln": ["(: cnet_partof_937eba4c5f (PartOf arcuate_artery_of_kidney kidney) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arcuate vein of kidney is part of kidney", "pln": ["(: cnet_partof_a5b294b0b9 (PartOf arcuate_vein_of_kidney kidney) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ardenne is part of champagne", "pln": ["(: cnet_partof_daad4b9e15 (PartOf ardenne champagne) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "are is part of hectare", "pln": ["(: cnet_partof_9150dbe270 (PartOf are hectare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "argos is part of greece", "pln": ["(: cnet_partof_3749a77656 (PartOf argos greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "area of cardiac dullness is part of thorax", "pln": ["(: cnet_partof_f6afea053e (PartOf area_of_cardiac_dullness thorax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "areola is part of breast", "pln": ["(: cnet_partof_cdb555df7e (PartOf areola breast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "areopagus is part of athen", "pln": ["(: cnet_partof_2bd49d7ff7 (PartOf areopagus athen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arequipa is part of peru", "pln": ["(: cnet_partof_56d14e8ac7 (PartOf arequipa peru) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "argentina is part of south america", "pln": ["(: cnet_partof_054c6bddd7 (PartOf argentina south_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "argo is part of greece", "pln": ["(: cnet_partof_04e0434ae6 (PartOf argo greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "argun river is part of asia", "pln": ["(: cnet_partof_52cc275b9a (PartOf argun_river asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "arhus is part of denmark", "pln": ["(: cnet_partof_0764bfaa1f (PartOf arhus denmark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aria is part of opera", "pln": ["(: cnet_partof_4752e9765f (PartOf aria opera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ariana is part of tunisia", "pln": ["(: cnet_partof_ed95207480 (PartOf ariana tunisia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ary is part of zodiac", "pln": ["(: cnet_partof_7fddb2f3cb (PartOf ary zodiac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arizona is part of southwest", "pln": ["(: cnet_partof_e16160ab81 (PartOf arizona southwest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arizona is part of united state", "pln": ["(: cnet_partof_3d7c9fae0f (PartOf arizona united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arkansa is part of united state", "pln": ["(: cnet_partof_d14c8a61d9 (PartOf arkansa united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arkansa is part of arkansa", "pln": ["(: cnet_partof_e18c1f85a0 (PartOf arkansa arkansa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arkansa is part of colorado", "pln": ["(: cnet_partof_0a08c6a819 (PartOf arkansa colorado) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arkansa is part of kansa", "pln": ["(: cnet_partof_f21ac1aeb0 (PartOf arkansa kansa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arkansa is part of oklahoma", "pln": ["(: cnet_partof_5c42755e9b (PartOf arkansa oklahoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arlington is part of texa", "pln": ["(: cnet_partof_1ef6faefd1 (PartOf arlington texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arm is part of body", "pln": ["(: cnet_partof_c60c487f03 (PartOf arm body) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arm is part of armchair", "pln": ["(: cnet_partof_8968a0a2fc (PartOf arm armchair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arm is part of homo", "pln": ["(: cnet_partof_b5595fb680 (PartOf arm homo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arm bone is part of arm", "pln": ["(: cnet_partof_9b4c97cc11 (PartOf arm_bone arm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "arm bone is part of endoskeleton", "pln": ["(: cnet_partof_4019f85f01 (PartOf arm_bone endoskeleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "armature is part of electric motor", "pln": ["(: cnet_partof_113197779e (PartOf armature electric_motor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "armature is part of electromagnet", "pln": ["(: cnet_partof_ca3e7fa228 (PartOf armature electromagnet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "armed force day is part of may", "pln": ["(: cnet_partof_3938c33f15 (PartOf armed_force_day may) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "armenia is part of transcaucasia", "pln": ["(: cnet_partof_12dbd1eafb (PartOf armenia transcaucasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "armenian church is part of armenia", "pln": ["(: cnet_partof_3c39beafdc (PartOf armenian_church armenia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "armet is part of body armor", "pln": ["(: cnet_partof_5c140c9e9d (PartOf armet body_armor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "armhole is part of garment", "pln": ["(: cnet_partof_0a4091b4cf (PartOf armhole garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "armpit is part of shoulder", "pln": ["(: cnet_partof_08fa447eaa (PartOf armpit shoulder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "armrest is part of car door", "pln": ["(: cnet_partof_ead2c0f6c9 (PartOf armrest car_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "army high performance computing research center is part of united state army", "pln": ["(: cnet_partof_ccf4c25e10 (PartOf army_high_performance_computing_research_center united_state_army) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "army intelligence is part of united state army", "pln": ["(: cnet_partof_502451e726 (PartOf army_intelligence united_state_army) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "army national guard is part of united state army", "pln": ["(: cnet_partof_ac3f5fc6b0 (PartOf army_national_guard united_state_army) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arnhem is part of netherland", "pln": ["(: cnet_partof_1f0a67d9d2 (PartOf arnhem netherland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arno is part of italy", "pln": ["(: cnet_partof_f37f724ec6 (PartOf arno italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arrester is part of aircraft carrier", "pln": ["(: cnet_partof_9bdf378f03 (PartOf arrester aircraft_carrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arrow is part of bow and arrow", "pln": ["(: cnet_partof_6fadec1896 (PartOf arrow bow_and_arrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arrowhead is part of arrow", "pln": ["(: cnet_partof_8cbf872add (PartOf arrowhead arrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "arthromere is part of arthropod", "pln": ["(: cnet_partof_b3c753d570 (PartOf arthromere arthropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "artichoke is part of artichoke", "pln": ["(: cnet_partof_084bfe5810 (PartOf artichoke artichoke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "artichoke heart is part of artichoke", "pln": ["(: cnet_partof_5d6e9cb60d (PartOf artichoke_heart artichoke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "article is part of document", "pln": ["(: cnet_partof_55cac14dd1 (PartOf article document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "article of incorporation is part of charter", "pln": ["(: cnet_partof_9b98d2197f (PartOf article_of_incorporation charter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "articular muscle is part of joint", "pln": ["(: cnet_partof_21b54e8e43 (PartOf articular_muscle joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "articulatory system is part of body", "pln": ["(: cnet_partof_990db4e41a (PartOf articulatory_system body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "artificial respiration is part of cardiopulmonary resuscitation", "pln": ["(: cnet_partof_702976acb5 (PartOf artificial_respiration cardiopulmonary_resuscitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "artillery is part of battery", "pln": ["(: cnet_partof_0193a56a3d (PartOf artillery battery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "artois is part of france", "pln": ["(: cnet_partof_0028e9bd5a (PartOf artois france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "artwork is part of publication", "pln": ["(: cnet_partof_75f63f6693 (PartOf artwork publication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aruba is part of netherland antille", "pln": ["(: cnet_partof_d7d02c9fd1 (PartOf aruba netherland_antille) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "arum is part of cuckoopint", "pln": ["(: cnet_partof_7dc8cf63b3 (PartOf arum cuckoopint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "arytenoid is part of larynx", "pln": ["(: cnet_partof_80087c2392 (PartOf arytenoid larynx) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "asahikawa is part of hokkaido", "pln": ["(: cnet_partof_d143356ba6 (PartOf asahikawa hokkaido) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "asahikawa is part of japan", "pln": ["(: cnet_partof_35e5b580b0 (PartOf asahikawa japan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "asama is part of honshu", "pln": ["(: cnet_partof_b743c42ea4 (PartOf asama honshu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "asama is part of japan", "pln": ["(: cnet_partof_fd67386a2e (PartOf asama japan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "asarh is part of hindu calendar", "pln": ["(: cnet_partof_b8390e4bc7 (PartOf asarh hindu_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ascending artery is part of ascending colon", "pln": ["(: cnet_partof_ce4c5d696a (PartOf ascending_artery ascending_colon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ascending colon is part of large intestine", "pln": ["(: cnet_partof_ac1a609f93 (PartOf ascending_colon large_intestine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ascii character is part of american standard code for information interchange", "pln": ["(: cnet_partof_ced74edeff (PartOf ascii_character american_standard_code_for_information_interchange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ascocarp is part of ascomycete", "pln": ["(: cnet_partof_5a65bcdf25 (PartOf ascocarp ascomycete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ascus is part of ascomycete", "pln": ["(: cnet_partof_93859b929c (PartOf ascus ascomycete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ash key is part of ash", "pln": ["(: cnet_partof_c8c72280fd (PartOf ash_key ash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ash wednesday is part of lent", "pln": ["(: cnet_partof_22d977b8f7 (PartOf ash_wednesday lent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "asheville is part of north carolina", "pln": ["(: cnet_partof_5893048a25 (PartOf asheville north_carolina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "ashkhabad is part of turkmenistan", "pln": ["(: cnet_partof_6d79fdd6d8 (PartOf ashkhabad turkmenistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "asia is part of eurasia", "pln": ["(: cnet_partof_7a56229fe1 (PartOf asia eurasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "asia minor is part of asia", "pln": ["(: cnet_partof_e1d60875c8 (PartOf asia_minor asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "asian country is part of asia", "pln": ["(: cnet_partof_1397b14160 (PartOf asian_country asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "asian russia is part of asia", "pln": ["(: cnet_partof_7edfe657fa (PartOf asian_russia asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "asin is part of hindu calendar", "pln": ["(: cnet_partof_896720d461 (PartOf asin hindu_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "asmara is part of eritrea", "pln": ["(: cnet_partof_754944e7e8 (PartOf asmara eritrea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "asparagus is part of asparagus", "pln": ["(: cnet_partof_727926be74 (PartOf asparagus asparagus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "asper is part of kuru", "pln": ["(: cnet_partof_3c5b00e293 (PartOf asper kuru) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "assam is part of india", "pln": ["(: cnet_partof_8f9d1a1d32 (PartOf assam india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "assault is part of attack", "pln": ["(: cnet_partof_052da716f7 (PartOf assault attack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "assumption is part of august", "pln": ["(: cnet_partof_cbb3aa1de5 (PartOf assumption august) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "assur is part of assyria", "pln": ["(: cnet_partof_fc365a71b5 (PartOf assur assyria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "assur is part of iraq", "pln": ["(: cnet_partof_cc3222154e (PartOf assur iraq) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "assyria is part of iraq", "pln": ["(: cnet_partof_03b433af3a (PartOf assyria iraq) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "athens is part of georgia", "pln": ["(: cnet_partof_c0a48ee567 (PartOf athens georgia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "atlas mountains is part of tunisia", "pln": ["(: cnet_partof_13ce81e7db (PartOf atlas_mountains tunisia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "assyria is part of mesopotamia", "pln": ["(: cnet_partof_f2a6dd5564 (PartOf assyria mesopotamia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "astatic coil is part of astatic galvanometer", "pln": ["(: cnet_partof_a78f62ca66 (PartOf astatic_coil astatic_galvanometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "asterion is part of cranium", "pln": ["(: cnet_partof_6d5851ddc5 (PartOf asterion cranium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "asteroid belt is part of interplanetary space", "pln": ["(: cnet_partof_59fa8ca028 (PartOf asteroid_belt interplanetary_space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "asthenosphere is part of crust", "pln": ["(: cnet_partof_0121e252b4 (PartOf asthenosphere crust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "astrakhan is part of russia", "pln": ["(: cnet_partof_a128c203d9 (PartOf astrakhan russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "astrocyte is part of astroglia", "pln": ["(: cnet_partof_cbf2479bf2 (PartOf astrocyte astroglia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "asuncion is part of paraguay", "pln": ["(: cnet_partof_8a32ebe238 (PartOf asuncion paraguay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aswan is part of egypt", "pln": ["(: cnet_partof_5b2cece06f (PartOf aswan egypt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aswan high dam is part of egypt", "pln": ["(: cnet_partof_ed40da5e11 (PartOf aswan_high_dam egypt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "asynclitism is part of parturiency", "pln": ["(: cnet_partof_eb006f2b29 (PartOf asynclitism parturiency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "at is part of kip", "pln": ["(: cnet_partof_587f794878 (PartOf at kip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "atacama desert is part of chile", "pln": ["(: cnet_partof_e5518e0a3b (PartOf atacama_desert chile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ataxia is part of spinocerebellar disorder", "pln": ["(: cnet_partof_3525c59270 (PartOf ataxia spinocerebellar_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "athen is part of georgia", "pln": ["(: cnet_partof_79c40b9948 (PartOf athen georgia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "athen is part of greece", "pln": ["(: cnet_partof_c0fb83ded7 (PartOf athen greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "athen is part of ohio", "pln": ["(: cnet_partof_053c3f0d15 (PartOf athen ohio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "atho is part of greece", "pln": ["(: cnet_partof_d9a4465dd8 (PartOf atho greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "atlanta is part of american civil war", "pln": ["(: cnet_partof_7e3039fa31 (PartOf atlanta american_civil_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "atlanta is part of georgia", "pln": ["(: cnet_partof_6a7a9863a9 (PartOf atlanta georgia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "atlantic city is part of new jersey", "pln": ["(: cnet_partof_5813e89cdd (PartOf atlantic_city new_jersey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "atlantic coast is part of atlantic", "pln": ["(: cnet_partof_500028525c (PartOf atlantic_coast atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "atlantic salmon is part of atlantic salmon", "pln": ["(: cnet_partof_508331cf01 (PartOf atlantic_salmon atlantic_salmon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "atla mountain is part of algeria", "pln": ["(: cnet_partof_da11c7de3c (PartOf atla_mountain algeria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "atla mountain is part of morocco", "pln": ["(: cnet_partof_7516706f37 (PartOf atla_mountain morocco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "atla mountain is part of tunisia", "pln": ["(: cnet_partof_469d736d5b (PartOf atla_mountain tunisia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "atmosphere is part of earth", "pln": ["(: cnet_partof_e70ceec31a (PartOf atmosphere earth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "atom is part of molecule", "pln": ["(: cnet_partof_29363973fd (PartOf atom molecule) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "atom is part of chemical element", "pln": ["(: cnet_partof_f8b7b0e2b7 (PartOf atom chemical_element) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "atomic energy commission is part of executive branch", "pln": ["(: cnet_partof_b11bbd7ef5 (PartOf atomic_energy_commission executive_branch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "atomic theory is part of nuclear physic", "pln": ["(: cnet_partof_a6993c8328 (PartOf atomic_theory nuclear_physic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "atomic warhead is part of nuclear weapon", "pln": ["(: cnet_partof_acc6734f0b (PartOf atomic_warhead nuclear_weapon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "attic is part of house", "pln": ["(: cnet_partof_a91b5bad4f (PartOf attic house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "attic is part of entablature", "pln": ["(: cnet_partof_5fcea52db7 (PartOf attic entablature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "attica is part of greece", "pln": ["(: cnet_partof_0222e1e8ca (PartOf attica greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "attosecond is part of femtosecond", "pln": ["(: cnet_partof_30e281b00d (PartOf attosecond femtosecond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "auckland is part of new zealand", "pln": ["(: cnet_partof_e0fad20b33 (PartOf auckland new_zealand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "audio is part of television", "pln": ["(: cnet_partof_00476fd8ee (PartOf audio television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "auditorium is part of concert hall", "pln": ["(: cnet_partof_2222ec2ff3 (PartOf auditorium concert_hall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "auditory apparatus is part of auditory system", "pln": ["(: cnet_partof_de3ba80f7e (PartOf auditory_apparatus auditory_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "auditory meatus is part of external ear", "pln": ["(: cnet_partof_a605305d73 (PartOf auditory_meatus external_ear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "august is part of gregorian calendar", "pln": ["(: cnet_partof_d2fbcffa9d (PartOf august gregorian_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "augusta is part of georgia", "pln": ["(: cnet_partof_316e37304c (PartOf augusta georgia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "augusta is part of maine", "pln": ["(: cnet_partof_4f7cce5719 (PartOf augusta maine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aunt is part of family", "pln": ["(: cnet_partof_8a583319e1 (PartOf aunt family) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aurar is part of icelandic krona", "pln": ["(: cnet_partof_c50c4454f0 (PartOf aurar icelandic_krona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "aureole is part of nimbus", "pln": ["(: cnet_partof_5432309bb2 (PartOf aureole nimbus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "auricle is part of atrium cordis", "pln": ["(: cnet_partof_76805d400b (PartOf auricle atrium_cordis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "auricle is part of external ear", "pln": ["(: cnet_partof_424bdf45a5 (PartOf auricle external_ear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "australian alps is part of great dividing range", "pln": ["(: cnet_partof_35d1485e27 (PartOf australian_alps great_dividing_range) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "auricula is part of atrium cordis", "pln": ["(: cnet_partof_354753ff14 (PartOf auricula atrium_cordis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "auricular artery is part of ear", "pln": ["(: cnet_partof_026a81e9b8 (PartOf auricular_artery ear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "auriculare is part of auditory meatus", "pln": ["(: cnet_partof_dedabbb018 (PartOf auriculare auditory_meatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "auschwitz is part of poland", "pln": ["(: cnet_partof_6003ba6d06 (PartOf auschwitz poland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "austerlitz is part of napoleonic war", "pln": ["(: cnet_partof_10e91d68c6 (PartOf austerlitz napoleonic_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "austerlitz is part of czech republic", "pln": ["(: cnet_partof_1994ade8d2 (PartOf austerlitz czech_republic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "austin is part of texa", "pln": ["(: cnet_partof_d9e1579ed3 (PartOf austin texa) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "australasia is part of pacific", "pln": ["(: cnet_partof_a08329781b (PartOf australasia pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "australia is part of australia", "pln": ["(: cnet_partof_888bec0395 (PartOf australia australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "australia is part of eastern hemisphere", "pln": ["(: cnet_partof_3b2d101819 (PartOf australia eastern_hemisphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "australia is part of southern hemisphere", "pln": ["(: cnet_partof_2324dd4c25 (PartOf australia southern_hemisphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "australian alp is part of australia", "pln": ["(: cnet_partof_890811f7f2 (PartOf australian_alp australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "australian alp is part of great dividing range", "pln": ["(: cnet_partof_8e68fcc675 (PartOf australian_alp great_dividing_range) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "australian desert is part of australia", "pln": ["(: cnet_partof_f458c7b002 (PartOf australian_desert australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "australian state is part of australia", "pln": ["(: cnet_partof_05735970c3 (PartOf australian_state australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "austria is part of europe", "pln": ["(: cnet_partof_1190ba9ee9 (PartOf austria europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "austria hungary is part of europe", "pln": ["(: cnet_partof_b9a0d0d0b0 (PartOf austria_hungary europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "austronesia is part of pacific", "pln": ["(: cnet_partof_d4dbc5b773 (PartOf austronesia pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "auto accessory is part of car", "pln": ["(: cnet_partof_97ba9933d5 (PartOf auto_accessory car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "autoimmunity is part of autoimmune disease", "pln": ["(: cnet_partof_9ee538986b (PartOf autoimmunity autoimmune_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "automobile engine is part of car", "pln": ["(: cnet_partof_4a2e6fffa0 (PartOf automobile_engine car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "automobile horn is part of car", "pln": ["(: cnet_partof_132521400f (PartOf automobile_horn car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "autonomic ganglion is part of autonomic nervous system", "pln": ["(: cnet_partof_2c276cd06a (PartOf autonomic_ganglion autonomic_nervous_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "autonomic nervous system is part of nervous system", "pln": ["(: cnet_partof_c9635c8128 (PartOf autonomic_nervous_system nervous_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "autumnal equinox is part of fall", "pln": ["(: cnet_partof_7f111c3dbf (PartOf autumnal_equinox fall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "autumnal equinox is part of september", "pln": ["(: cnet_partof_54836d5336 (PartOf autumnal_equinox september) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "auvergne is part of france", "pln": ["(: cnet_partof_f3a3c4c765 (PartOf auvergne france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "avignon is part of france", "pln": ["(: cnet_partof_9f237e0c99 (PartOf avignon france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "avo is part of pataca", "pln": ["(: cnet_partof_4b409dfe2f (PartOf avo pataca) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "avocado is part of avocado", "pln": ["(: cnet_partof_9e4fe3cb15 (PartOf avocado avocado) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "avoirdupois unit is part of avoirdupois", "pln": ["(: cnet_partof_4ed21cbfe3 (PartOf avoirdupois_unit avoirdupois) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "avoirdupois unit is part of british imperial system", "pln": ["(: cnet_partof_9d7eb55448 (PartOf avoirdupois_unit british_imperial_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "avon is part of england", "pln": ["(: cnet_partof_d7558a607a (PartOf avon england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ax handle is part of ax", "pln": ["(: cnet_partof_44999d2b1f (PartOf ax_handle ax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ax head is part of ax", "pln": ["(: cnet_partof_cdfc91e64b (PartOf ax_head ax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "axial skeleton is part of endoskeleton", "pln": ["(: cnet_partof_e816af7a86 (PartOf axial_skeleton endoskeleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "axillary artery is part of armpit", "pln": ["(: cnet_partof_a61d23d8a5 (PartOf axillary_artery armpit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "axle is part of wheeled vehicle", "pln": ["(: cnet_partof_1ccde3867e (PartOf axle wheeled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "axletree is part of carriage", "pln": ["(: cnet_partof_73c916feab (PartOf axletree carriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "axletree is part of cart", "pln": ["(: cnet_partof_11cf01ceff (PartOf axletree cart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "axletree is part of wagon", "pln": ["(: cnet_partof_16454c6a43 (PartOf axletree wagon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "axolemma is part of medullary sheath", "pln": ["(: cnet_partof_285462d93e (PartOf axolemma medullary_sheath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "axon is part of nerve cell", "pln": ["(: cnet_partof_6c6b5cab28 (PartOf axon nerve_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "azerbaijan is part of transcaucasia", "pln": ["(: cnet_partof_2f40f2612c (PartOf azerbaijan transcaucasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "azore is part of portugal", "pln": ["(: cnet_partof_20570186c0 (PartOf azore portugal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "babassu nut is part of babassu", "pln": ["(: cnet_partof_34185f8a2d (PartOf babassu_nut babassu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "babylon is part of mesopotamia", "pln": ["(: cnet_partof_d3095863ce (PartOf babylon mesopotamia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "babylonia is part of iraq", "pln": ["(: cnet_partof_cee0d0d057 (PartOf babylonia iraq) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "babylonia is part of mesopotamia", "pln": ["(: cnet_partof_87de224a1b (PartOf babylonia mesopotamia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "baccalaureate is part of commencement", "pln": ["(: cnet_partof_15acdc79fb (PartOf baccalaureate commencement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "back is part of car seat", "pln": ["(: cnet_partof_9d5f60412b (PartOf back car_seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "back is part of chair", "pln": ["(: cnet_partof_26983635d2 (PartOf back chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "back is part of torso", "pln": ["(: cnet_partof_7b5369048c (PartOf back torso) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "backbeat is part of rock n roll", "pln": ["(: cnet_partof_0351e18150 (PartOf backbeat rock_n_roll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "backbone is part of book", "pln": ["(: cnet_partof_2386c28566 (PartOf backbone book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "backbone is part of net", "pln": ["(: cnet_partof_0561952bab (PartOf backbone net) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "backing is part of framework", "pln": ["(: cnet_partof_3a0b21e061 (PartOf backing framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "backplate is part of cuirass", "pln": ["(: cnet_partof_b677b4d5c0 (PartOf backplate cuirass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "backspace key is part of typewriter keyboard", "pln": ["(: cnet_partof_98fdd2e611 (PartOf backspace_key typewriter_keyboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bacon rind is part of bacon", "pln": ["(: cnet_partof_eefe074bc3 (PartOf bacon_rind bacon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bad land is part of nebraska", "pln": ["(: cnet_partof_dbb96769a9 (PartOf bad_land nebraska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bad land is part of south dakota", "pln": ["(: cnet_partof_87523accd2 (PartOf bad_land south_dakota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "badland national park is part of south dakota", "pln": ["(: cnet_partof_b49aee7ef5 (PartOf badland_national_park south_dakota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "baffin island is part of arctic ocean", "pln": ["(: cnet_partof_f4b14e2ba1 (PartOf baffin_island arctic_ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "baffin island is part of canada", "pln": ["(: cnet_partof_7021d6fb51 (PartOf baffin_island canada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "baghdad is part of iraq", "pln": ["(: cnet_partof_3f0bea085a (PartOf baghdad iraq) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bahama is part of caribbean", "pln": ["(: cnet_partof_75a8a2013f (PartOf bahama caribbean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bahama is part of west indy", "pln": ["(: cnet_partof_336b75de5e (PartOf bahama west_indy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bahrain is part of asia", "pln": ["(: cnet_partof_957216b108 (PartOf bahrain asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bahrain is part of gulf state", "pln": ["(: cnet_partof_317676044d (PartOf bahrain gulf_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bahrain is part of persian gulf", "pln": ["(: cnet_partof_7d1456fc3f (PartOf bahrain persian_gulf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "baisakh is part of hindu calendar", "pln": ["(: cnet_partof_4e3efe9f70 (PartOf baisakh hindu_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bait is part of trap", "pln": ["(: cnet_partof_f91b95e1ee (PartOf bait trap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "baiza is part of riyal omani", "pln": ["(: cnet_partof_59aa7a265f (PartOf baiza riyal_omani) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bakersfield is part of california", "pln": ["(: cnet_partof_671cc1f5bc (PartOf bakersfield california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "baku is part of azerbaijan", "pln": ["(: cnet_partof_f9f472152b (PartOf baku azerbaijan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "balance is part of account", "pln": ["(: cnet_partof_3a3e79bca8 (PartOf balance account) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "balance wheel is part of timepiece", "pln": ["(: cnet_partof_4e29fc8e8a (PartOf balance_wheel timepiece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "balaton is part of hungary", "pln": ["(: cnet_partof_b074ae549b (PartOf balaton hungary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "balearic island is part of spain", "pln": ["(: cnet_partof_c0d15a01e7 (PartOf balearic_island spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bali is part of indonesia", "pln": ["(: cnet_partof_5c662100c6 (PartOf bali indonesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "balk is part of pool table", "pln": ["(: cnet_partof_4065677b0d (PartOf balk pool_table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "balkan country is part of balkan peninsula", "pln": ["(: cnet_partof_abaefa53d9 (PartOf balkan_country balkan_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "balkan peninsula is part of europe", "pln": ["(: cnet_partof_8b25c0cbae (PartOf balkan_peninsula europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "balkan war is part of balkan peninsula", "pln": ["(: cnet_partof_e19c7edfc6 (PartOf balkan_war balkan_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "balkan is part of balkan peninsula", "pln": ["(: cnet_partof_97d1a16b9f (PartOf balkan balkan_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ball is part of hand", "pln": ["(: cnet_partof_4861f983e2 (PartOf ball hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ball is part of sole", "pln": ["(: cnet_partof_fa2d3466d6 (PartOf ball sole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ball field is part of ballpark", "pln": ["(: cnet_partof_261dcde411 (PartOf ball_field ballpark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ballistic missile defense organization is part of department of defense", "pln": ["(: cnet_partof_b63be4b27c (PartOf ballistic_missile_defense_organization department_of_defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ballistocardiogram is part of checkup", "pln": ["(: cnet_partof_3b76986b45 (PartOf ballistocardiogram checkup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ballistocardiograph is part of cardiac monitor", "pln": ["(: cnet_partof_3208fc70e4 (PartOf ballistocardiograph cardiac_monitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "balmoral castle is part of scotland", "pln": ["(: cnet_partof_1059770227 (PartOf balmoral_castle scotland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "baltic state is part of europe", "pln": ["(: cnet_partof_1c6031bbf1 (PartOf baltic_state europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "baltimore is part of maryland", "pln": ["(: cnet_partof_06678add04 (PartOf baltimore maryland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "baluster is part of bannister", "pln": ["(: cnet_partof_ce4d08b45b (PartOf baluster bannister) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bam is part of iran", "pln": ["(: cnet_partof_184c210add (PartOf bam iran) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bamako is part of mali", "pln": ["(: cnet_partof_d9f12549c9 (PartOf bamako mali) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bamboo shoot is part of common bamboo", "pln": ["(: cnet_partof_6fc6a9fba2 (PartOf bamboo_shoot common_bamboo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ban is part of leu", "pln": ["(: cnet_partof_981ac358cd (PartOf ban leu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "banana is part of dwarf banana", "pln": ["(: cnet_partof_3a946f74cd (PartOf banana dwarf_banana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "banana is part of edible banana", "pln": ["(: cnet_partof_183a669cbe (PartOf banana edible_banana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "band is part of garment", "pln": ["(: cnet_partof_c005ba32f1 (PartOf band garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bandung is part of java", "pln": ["(: cnet_partof_75dcb6e0f1 (PartOf bandung java) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "baneberry is part of baneberry", "pln": ["(: cnet_partof_01f40595bd (PartOf baneberry baneberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "banff is part of alberta", "pln": ["(: cnet_partof_7ae0dfff51 (PartOf banff alberta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bangalore is part of india", "pln": ["(: cnet_partof_f9e73e659a (PartOf bangalore india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bangkok is part of thailand", "pln": ["(: cnet_partof_b4a9509993 (PartOf bangkok thailand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bangladesh is part of asia", "pln": ["(: cnet_partof_594be9fc91 (PartOf bangladesh asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bangor is part of maine", "pln": ["(: cnet_partof_ad8318aac6 (PartOf bangor maine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bangor is part of northern ireland", "pln": ["(: cnet_partof_1ac25069b4 (PartOf bangor northern_ireland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bangor is part of wale", "pln": ["(: cnet_partof_2aedf1e74d (PartOf bangor wale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bangui is part of central african republic", "pln": ["(: cnet_partof_1b186c5e99 (PartOf bangui central_african_republic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "banjul is part of gambia", "pln": ["(: cnet_partof_7b3774e04d (PartOf banjul gambia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bannister is part of balcony", "pln": ["(: cnet_partof_c58157a405 (PartOf bannister balcony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "baptist denomination is part of baptist church", "pln": ["(: cnet_partof_6f99cc989c (PartOf baptist_denomination baptist_church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bar is part of goal", "pln": ["(: cnet_partof_f8542d3501 (PartOf bar goal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bar is part of horizontal bar", "pln": ["(: cnet_partof_61371a9db1 (PartOf bar horizontal_bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bar is part of parallel bar", "pln": ["(: cnet_partof_2c7e88099f (PartOf bar parallel_bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bar is part of court", "pln": ["(: cnet_partof_db405d9dde (PartOf bar court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "barb is part of vane", "pln": ["(: cnet_partof_68800eb6bd (PartOf barb vane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "barb is part of arrowhead", "pln": ["(: cnet_partof_ef64a93e7e (PartOf barb arrowhead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "barb is part of barbed wire", "pln": ["(: cnet_partof_cf3e4d74e4 (PartOf barb barbed_wire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "barb is part of hook", "pln": ["(: cnet_partof_0b8f4857e2 (PartOf barb hook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "barb is part of spear", "pln": ["(: cnet_partof_5c3ef00817 (PartOf barb spear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "barbado is part of barbado", "pln": ["(: cnet_partof_e8a9d650a2 (PartOf barbado barbado) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "barbado is part of caribbean", "pln": ["(: cnet_partof_6c110a1416 (PartOf barbado caribbean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "barbado is part of lesser antille", "pln": ["(: cnet_partof_43cff72838 (PartOf barbado lesser_antille) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "barbado gooseberry is part of barbado gooseberry", "pln": ["(: cnet_partof_ca3ee87c93 (PartOf barbado_gooseberry barbado_gooseberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "barbary is part of africa", "pln": ["(: cnet_partof_4cd2ede81b (PartOf barbary africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "barbary coast is part of barbary", "pln": ["(: cnet_partof_e71e3db0cc (PartOf barbary_coast barbary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "barber chair is part of barbershop", "pln": ["(: cnet_partof_48c5355c4e (PartOf barber_chair barbershop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "barbuda is part of antigua and barbuda", "pln": ["(: cnet_partof_f4060f83f7 (PartOf barbuda antigua_and_barbuda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "barcelona is part of spain", "pln": ["(: cnet_partof_592e9aa511 (PartOf barcelona spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "barent sea is part of arctic ocean", "pln": ["(: cnet_partof_2cb7fafc81 (PartOf barent_sea arctic_ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bari is part of puglia", "pln": ["(: cnet_partof_8e421b6c2f (PartOf bari puglia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bark is part of tree", "pln": ["(: cnet_partof_fe5e7c4617 (PartOf bark tree) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bark is part of branch", "pln": ["(: cnet_partof_fa9659487a (PartOf bark branch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bark is part of root", "pln": ["(: cnet_partof_3f1c79ae7b (PartOf bark root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bark is part of trunk", "pln": ["(: cnet_partof_bd2a8f13d8 (PartOf bark trunk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "barley is part of common barley", "pln": ["(: cnet_partof_d836482e79 (PartOf barley common_barley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "barleycorn is part of common barley", "pln": ["(: cnet_partof_ddeb3b969d (PartOf barleycorn common_barley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "barranquilla is part of colombia", "pln": ["(: cnet_partof_915b82264f (PartOf barranquilla colombia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "barrel is part of gun", "pln": ["(: cnet_partof_fff8327c00 (PartOf barrel gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "barrel is part of hogshead", "pln": ["(: cnet_partof_3259b22304 (PartOf barrel hogshead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "barroom is part of public house", "pln": ["(: cnet_partof_e069bc4939 (PartOf barroom public_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "barstow is part of california", "pln": ["(: cnet_partof_71ae0a1d72 (PartOf barstow california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bartholin s gland is part of female reproductive system", "pln": ["(: cnet_partof_0de8dcdbc0 (PartOf bartholin_s_gland female_reproductive_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bartlesville is part of oklahoma", "pln": ["(: cnet_partof_fb6bffadfa (PartOf bartlesville oklahoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "baruch is part of apocrypha", "pln": ["(: cnet_partof_5895007fd9 (PartOf baruch apocrypha) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "barye is part of bar", "pln": ["(: cnet_partof_582ef48ced (PartOf barye bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "basal ganglion is part of diencephalon", "pln": ["(: cnet_partof_fd2b72e63d (PartOf basal_ganglion diencephalon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "basal ganglion is part of pyramidal tract", "pln": ["(: cnet_partof_b8054ce01f (PartOf basal_ganglion pyramidal_tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "base is part of baseball diamond", "pln": ["(: cnet_partof_e79ab40226 (PartOf base baseball_diamond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "base is part of box", "pln": ["(: cnet_partof_5c7b43a55c (PartOf base box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "base is part of lamp", "pln": ["(: cnet_partof_9de614a7c4 (PartOf base lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "base is part of vessel", "pln": ["(: cnet_partof_f5cf374aa2 (PartOf base vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "base is part of transistor", "pln": ["(: cnet_partof_2a3a7507f5 (PartOf base transistor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "base pair is part of deoxyribonucleic acid", "pln": ["(: cnet_partof_d0b9985d87 (PartOf base_pair deoxyribonucleic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "baseball diamond is part of ball field", "pln": ["(: cnet_partof_d27607f68b (PartOf baseball_diamond ball_field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "basel is part of switzerland", "pln": ["(: cnet_partof_a3eb230bfe (PartOf basel switzerland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "basidiocarp is part of basidiomycete", "pln": ["(: cnet_partof_34f59d878a (PartOf basidiocarp basidiomycete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "basil is part of common basil", "pln": ["(: cnet_partof_3c59bdc7d2 (PartOf basil common_basil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "basilar artery is part of head", "pln": ["(: cnet_partof_79a67f2588 (PartOf basilar_artery head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "basilar membrane is part of cochlea", "pln": ["(: cnet_partof_596bd08f37 (PartOf basilar_membrane cochlea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "basilic vein is part of forearm", "pln": ["(: cnet_partof_dcf81474df (PartOf basilic_vein forearm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "basilicata is part of italy", "pln": ["(: cnet_partof_27ae9a16f3 (PartOf basilicata italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "basinet is part of body armor", "pln": ["(: cnet_partof_df39eef1c2 (PartOf basinet body_armor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "basis is part of explanation", "pln": ["(: cnet_partof_8600fb6e47 (PartOf basis explanation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "basketball play is part of basketball", "pln": ["(: cnet_partof_6230aaf41c (PartOf basketball_play basketball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "basketball shot is part of basketball", "pln": ["(: cnet_partof_7a4d173843 (PartOf basketball_shot basketball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "basra is part of iraq", "pln": ["(: cnet_partof_768682eb8f (PartOf basra iraq) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "basse normandie is part of normandie", "pln": ["(: cnet_partof_f7990081a6 (PartOf basse_normandie normandie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "basseterre is part of saint kitt and nevis", "pln": ["(: cnet_partof_3f8deb7040 (PartOf basseterre saint_kitt_and_nevis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bastard wing is part of wing", "pln": ["(: cnet_partof_fc984028ac (PartOf bastard_wing wing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bastille is part of paris", "pln": ["(: cnet_partof_ef1f2bff19 (PartOf bastille paris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bastille day is part of july", "pln": ["(: cnet_partof_99f0766881 (PartOf bastille_day july) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "basting is part of roasting", "pln": ["(: cnet_partof_749feb3796 (PartOf basting roasting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bataan is part of world war ii", "pln": ["(: cnet_partof_8c5c50d786 (PartOf bataan world_war_ii) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bath is part of england", "pln": ["(: cnet_partof_f000f74247 (PartOf bath england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bath is part of homer", "pln": ["(: cnet_partof_755e4c1edc (PartOf bath homer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bathroom is part of dwelling", "pln": ["(: cnet_partof_a813124ad3 (PartOf bathroom dwelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bathtub is part of bathroom", "pln": ["(: cnet_partof_269bcdf751 (PartOf bathtub bathroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "batna is part of algeria", "pln": ["(: cnet_partof_f86378e756 (PartOf batna algeria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "baton rouge is part of louisiana", "pln": ["(: cnet_partof_e6b004ccdc (PartOf baton_rouge louisiana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "baton rouge bridge is part of baton rouge", "pln": ["(: cnet_partof_cfe20be146 (PartOf baton_rouge_bridge baton_rouge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "batter s box is part of baseball diamond", "pln": ["(: cnet_partof_fdc3929797 (PartOf batter_s_box baseball_diamond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "battery is part of baseball team", "pln": ["(: cnet_partof_f4c2744548 (PartOf battery baseball_team) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "battle is part of war", "pln": ["(: cnet_partof_c2b216e134 (PartOf battle war) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "battle ax is part of halberd", "pln": ["(: cnet_partof_30931c0362 (PartOf battle_ax halberd) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "battle of ardenne bulge is part of world war ii", "pln": ["(: cnet_partof_5ad8f99096 (PartOf battle_of_ardenne_bulge world_war_ii) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "battle of britain is part of world war ii", "pln": ["(: cnet_partof_b11ce8a35a (PartOf battle_of_britain world_war_ii) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "battle of marne is part of world war i", "pln": ["(: cnet_partof_3937154c9f (PartOf battle_of_marne world_war_i) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "battle of wake is part of world war ii", "pln": ["(: cnet_partof_2a2fa991fa (PartOf battle_of_wake world_war_ii) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "battlefront is part of battlefield", "pln": ["(: cnet_partof_29608701f5 (PartOf battlefront battlefield) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "battlement is part of fortress", "pln": ["(: cnet_partof_64cd4d0414 (PartOf battlement fortress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bavaria is part of germany", "pln": ["(: cnet_partof_d65d68778b (PartOf bavaria germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bay is part of aircraft", "pln": ["(: cnet_partof_7a066349f5 (PartOf bay aircraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bay is part of ship", "pln": ["(: cnet_partof_83b9d6f636 (PartOf bay ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bay is part of sea", "pln": ["(: cnet_partof_6d77f2cf2b (PartOf bay sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bay leaf is part of true laurel", "pln": ["(: cnet_partof_d3cec6590c (PartOf bay_leaf true_laurel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bay of bengal is part of indian ocean", "pln": ["(: cnet_partof_f52dfbd624 (PartOf bay_of_bengal indian_ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bay of biscay is part of atlantic", "pln": ["(: cnet_partof_3c96c059e6 (PartOf bay_of_biscay atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bay of campeche is part of gulf of mexico", "pln": ["(: cnet_partof_e25361a750 (PartOf bay_of_campeche gulf_of_mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bay of campeche is part of mexico", "pln": ["(: cnet_partof_cf2922ddee (PartOf bay_of_campeche mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bay of fundy is part of atlantic", "pln": ["(: cnet_partof_f0b6c74be3 (PartOf bay_of_fundy atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bay of naple is part of italy", "pln": ["(: cnet_partof_6d718a2460 (PartOf bay_of_naple italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bay scallop is part of bay scallop", "pln": ["(: cnet_partof_affa9f3c17 (PartOf bay_scallop bay_scallop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bayonne is part of new jersey", "pln": ["(: cnet_partof_e8ca3b56b4 (PartOf bayonne new_jersey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bayonne bridge is part of bayonne", "pln": ["(: cnet_partof_fe10785ef3 (PartOf bayonne_bridge bayonne) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "beach is part of shore", "pln": ["(: cnet_partof_46cb83d68e (PartOf beach shore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "beach plum is part of beach plum", "pln": ["(: cnet_partof_f020c8bd18 (PartOf beach_plum beach_plum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "beacon hill is part of boston", "pln": ["(: cnet_partof_ef9ba530c3 (PartOf beacon_hill boston) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "beak is part of bird", "pln": ["(: cnet_partof_0687cdbbad (PartOf beak bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bean is part of bean", "pln": ["(: cnet_partof_c10cc688dc (PartOf bean bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "beard is part of goat", "pln": ["(: cnet_partof_5d1e80acf0 (PartOf beard goat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "beard is part of adult male body", "pln": ["(: cnet_partof_4f73f08fa5 (PartOf beard adult_male_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "beard is part of face", "pln": ["(: cnet_partof_6caf2d38b5 (PartOf beard face) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bearing is part of rotating mechanism", "pln": ["(: cnet_partof_2c17fe0c69 (PartOf bearing rotating_mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "beatitude is part of sermon on mount", "pln": ["(: cnet_partof_e566ea0237 (PartOf beatitude sermon_on_mount) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "beat per minute is part of music", "pln": ["(: cnet_partof_d91db6db10 (PartOf beat_per_minute music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "beaufort sea is part of arctic ocean", "pln": ["(: cnet_partof_b7ff4b9622 (PartOf beaufort_sea arctic_ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "beaumont is part of texa", "pln": ["(: cnet_partof_1cf7a5863f (PartOf beaumont texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "beaver is part of helmet", "pln": ["(: cnet_partof_979a93359b (PartOf beaver helmet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "beckley is part of west virginia", "pln": ["(: cnet_partof_e4b45be8af (PartOf beckley west_virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bed is part of bedroom", "pln": ["(: cnet_partof_7d29ffef3c (PartOf bed bedroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bed is part of press", "pln": ["(: cnet_partof_f7483f3bce (PartOf bed press) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bedpost is part of bedstead", "pln": ["(: cnet_partof_454c6599a5 (PartOf bedpost bedstead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bedroom is part of dwelling", "pln": ["(: cnet_partof_8d58d51a7a (PartOf bedroom dwelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bedspring is part of bedstead", "pln": ["(: cnet_partof_d5bccf5228 (PartOf bedspring bedstead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bedstead is part of bed", "pln": ["(: cnet_partof_aae85a21fc (PartOf bedstead bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "beechnut is part of beech", "pln": ["(: cnet_partof_2594e478bb (PartOf beechnut beech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "beef is part of cattle", "pln": ["(: cnet_partof_d03be1256e (PartOf beef cattle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "beef loin is part of beef", "pln": ["(: cnet_partof_9b42d92ae5 (PartOf beef_loin beef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "beehive is part of apiary", "pln": ["(: cnet_partof_fb58dfc810 (PartOf beehive apiary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "beet is part of beetroot", "pln": ["(: cnet_partof_c49f2ad0b9 (PartOf beet beetroot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "beet green is part of beetroot", "pln": ["(: cnet_partof_41c37d2d48 (PartOf beet_green beetroot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "beijing is part of china", "pln": ["(: cnet_partof_654cb53e99 (PartOf beijing china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "beira is part of mozambique", "pln": ["(: cnet_partof_9cbda3dc94 (PartOf beira mozambique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "beirut is part of lebanon", "pln": ["(: cnet_partof_fbdb44a5e8 (PartOf beirut lebanon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bel and dragon is part of apocrypha", "pln": ["(: cnet_partof_5a30e1ff2a (PartOf bel_and_dragon apocrypha) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "belarus is part of europe", "pln": ["(: cnet_partof_596e2f0659 (PartOf belarus europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "belem is part of brazil", "pln": ["(: cnet_partof_c058b59e30 (PartOf belem brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "belfast is part of northern ireland", "pln": ["(: cnet_partof_8704e4dd7c (PartOf belfast northern_ireland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "belfry is part of bell tower", "pln": ["(: cnet_partof_ec63f68a2a (PartOf belfry bell_tower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "belgian endive is part of endive", "pln": ["(: cnet_partof_a4e8da9133 (PartOf belgian_endive endive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "belgium is part of europe", "pln": ["(: cnet_partof_09e0bfae32 (PartOf belgium europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "belgrade is part of serbia", "pln": ["(: cnet_partof_52c9468396 (PartOf belgrade serbia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "belgrade is part of yugoslavia", "pln": ["(: cnet_partof_9b6194c5ab (PartOf belgrade yugoslavia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "belize is part of central america", "pln": ["(: cnet_partof_2403301fef (PartOf belize central_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bell is part of blunderbuss", "pln": ["(: cnet_partof_21b706c259 (PartOf bell blunderbuss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bell is part of funnel", "pln": ["(: cnet_partof_73bcfb2f42 (PartOf bell funnel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bell is part of wind instrument", "pln": ["(: cnet_partof_c6af4d8865 (PartOf bell wind_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bell apple is part of jamaica honeysuckle", "pln": ["(: cnet_partof_9d7184fa92 (PartOf bell_apple jamaica_honeysuckle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "belle isle cress is part of barbarea", "pln": ["(: cnet_partof_9b01e3a0b3 (PartOf belle_isle_cress barbarea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bellingham is part of washington", "pln": ["(: cnet_partof_b2a1da81bd (PartOf bellingham washington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "belly is part of vertebrate", "pln": ["(: cnet_partof_1bf7fc9209 (PartOf belly vertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "belly is part of torso", "pln": ["(: cnet_partof_b5378f6f5a (PartOf belly torso) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "belmont park is part of elmont", "pln": ["(: cnet_partof_8cdb69fed4 (PartOf belmont_park elmont) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "belo horizonte is part of brazil", "pln": ["(: cnet_partof_193d0f21e2 (PartOf belo_horizonte brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "belt buckle is part of belt", "pln": ["(: cnet_partof_a6a885f0b0 (PartOf belt_buckle belt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "beluga caviar is part of beluga", "pln": ["(: cnet_partof_d1dcb69dbc (PartOf beluga_caviar beluga) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bemidji is part of minnesota", "pln": ["(: cnet_partof_57a63123f7 (PartOf bemidji minnesota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ben sira is part of apocrypha", "pln": ["(: cnet_partof_706fc32916 (PartOf ben_sira apocrypha) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ben sira is part of sapiential book", "pln": ["(: cnet_partof_747982eddc (PartOf ben_sira sapiential_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bench is part of court", "pln": ["(: cnet_partof_a4e5f3db2c (PartOf bench court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bench is part of team", "pln": ["(: cnet_partof_46a4dd3971 (PartOf bench team) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bend is part of oregon", "pln": ["(: cnet_partof_cc34630bfc (PartOf bend oregon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bend is part of road", "pln": ["(: cnet_partof_94d8365fda (PartOf bend road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "benghazi is part of libya", "pln": ["(: cnet_partof_f9d5802eb7 (PartOf benghazi libya) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "benin is part of africa", "pln": ["(: cnet_partof_d50daa1718 (PartOf benin africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "benjamin franklin bridge is part of philadelphia", "pln": ["(: cnet_partof_b51b04d872 (PartOf benjamin_franklin_bridge philadelphia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bennington is part of vermont", "pln": ["(: cnet_partof_5c8cdd45b2 (PartOf bennington vermont) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bergen is part of norway", "pln": ["(: cnet_partof_f8fffd6caf (PartOf bergen norway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bering sea is part of pacific", "pln": ["(: cnet_partof_d3b65c9b24 (PartOf bering_sea pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "berkeley is part of california", "pln": ["(: cnet_partof_b6739c3775 (PartOf berkeley california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "berkshire is part of england", "pln": ["(: cnet_partof_882851c817 (PartOf berkshire england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "berkshire is part of massachusett", "pln": ["(: cnet_partof_798acd1a8a (PartOf berkshire massachusett) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "berlin is part of germany", "pln": ["(: cnet_partof_e8eb02714e (PartOf berlin germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bermuda is part of atlantic", "pln": ["(: cnet_partof_b34e3b839e (PartOf bermuda atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bermuda triangle is part of atlantic", "pln": ["(: cnet_partof_6cfb7400aa (PartOf bermuda_triangle atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bern is part of switzerland", "pln": ["(: cnet_partof_04c1964101 (PartOf bern switzerland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "berry is part of berry", "pln": ["(: cnet_partof_197b5c1f77 (PartOf berry berry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bessemer converter is part of steel mill", "pln": ["(: cnet_partof_c2f220ba28 (PartOf bessemer_converter steel_mill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "beta receptor is part of sympathetic nervous system", "pln": ["(: cnet_partof_d8341306f4 (PartOf beta_receptor sympathetic_nervous_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "betel nut is part of betel palm", "pln": ["(: cnet_partof_6df9c5b5f4 (PartOf betel_nut betel_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bethlehem is part of pennsylvania", "pln": ["(: cnet_partof_d85907dc18 (PartOf bethlehem pennsylvania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bethlehem is part of west bank", "pln": ["(: cnet_partof_5072420cea (PartOf bethlehem west_bank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "beverly hill is part of california", "pln": ["(: cnet_partof_8cc69f9000 (PartOf beverly_hill california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bhadon is part of hindu calendar", "pln": ["(: cnet_partof_830c1405b7 (PartOf bhadon hindu_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bhagavad gita is part of mahabharata", "pln": ["(: cnet_partof_0c4bd897a0 (PartOf bhagavad_gita mahabharata) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bhang is part of indian hemp", "pln": ["(: cnet_partof_80a08097c6 (PartOf bhang indian_hemp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bhutan is part of asia", "pln": ["(: cnet_partof_b5bd33da04 (PartOf bhutan asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bib is part of apron", "pln": ["(: cnet_partof_6eeacb662c (PartOf bib apron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bicep brachii is part of arm", "pln": ["(: cnet_partof_0d08b43c67 (PartOf bicep_brachii arm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bicycle seat is part of bicycle", "pln": ["(: cnet_partof_57098c74e3 (PartOf bicycle_seat bicycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bicycle wheel is part of bicycle", "pln": ["(: cnet_partof_c728ecc70e (PartOf bicycle_wheel bicycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bid is part of bridge", "pln": ["(: cnet_partof_a46baef84e (PartOf bid bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bifurcation is part of bifurcation", "pln": ["(: cnet_partof_acddbcad3d (PartOf bifurcation bifurcation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "big ben is part of london", "pln": ["(: cnet_partof_2638a52823 (PartOf big_ben london) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "big bend is part of texa", "pln": ["(: cnet_partof_82851c6b6d (PartOf big_bend texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "big bend national park is part of texa", "pln": ["(: cnet_partof_ea83201ce2 (PartOf big_bend_national_park texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "big board is part of new york stock exchange", "pln": ["(: cnet_partof_5e37cdef0b (PartOf big_board new_york_stock_exchange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "big dipper is part of great bear", "pln": ["(: cnet_partof_1ae9a54803 (PartOf big_dipper great_bear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "big sioux river is part of south dakota", "pln": ["(: cnet_partof_a6a34c6e9f (PartOf big_sioux_river south_dakota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "big sur is part of california", "pln": ["(: cnet_partof_ad84fde291 (PartOf big_sur california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "big toe is part of foot", "pln": ["(: cnet_partof_302002fc65 (PartOf big_toe foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bighorn is part of montana", "pln": ["(: cnet_partof_f9dc7588ce (PartOf bighorn montana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bighorn is part of wyoming", "pln": ["(: cnet_partof_407c14f723 (PartOf bighorn wyoming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bight is part of rope", "pln": ["(: cnet_partof_3e9f8bd703 (PartOf bight rope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bight of benin is part of gulf of guinea", "pln": ["(: cnet_partof_ab13c824b4 (PartOf bight_of_benin gulf_of_guinea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bihar is part of india", "pln": ["(: cnet_partof_2574649898 (PartOf bihar india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bikini is part of marshall island", "pln": ["(: cnet_partof_680a5cbd69 (PartOf bikini marshall_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bilberry is part of bilberry", "pln": ["(: cnet_partof_b182b865db (PartOf bilberry bilberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bilge is part of vessel", "pln": ["(: cnet_partof_85998540f4 (PartOf bilge vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bilge keel is part of vessel", "pln": ["(: cnet_partof_6f6f763fa4 (PartOf bilge_keel vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bilge pump is part of ship", "pln": ["(: cnet_partof_6ee1f848fb (PartOf bilge_pump ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bilge well is part of ship", "pln": ["(: cnet_partof_44a14b765b (PartOf bilge_well ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "biliary ductule is part of liver", "pln": ["(: cnet_partof_f27e8cebe2 (PartOf biliary_ductule liver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bill is part of baseball cap", "pln": ["(: cnet_partof_de934bc7eb (PartOf bill baseball_cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bill is part of kepi", "pln": ["(: cnet_partof_ccbdf5c4e4 (PartOf bill kepi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bill acceptor is part of vending machine", "pln": ["(: cnet_partof_7a4e5983ff (PartOf bill_acceptor vending_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bill of particular is part of pleading", "pln": ["(: cnet_partof_aa38a59181 (PartOf bill_of_particular pleading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bill of right is part of united state constitution", "pln": ["(: cnet_partof_6dea08e129 (PartOf bill_of_right united_state_constitution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "billing is part of montana", "pln": ["(: cnet_partof_0ad874f80f (PartOf billing montana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "biloxi is part of mississippi", "pln": ["(: cnet_partof_ab5fca50a1 (PartOf biloxi mississippi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bimetallic strip is part of thermostat", "pln": ["(: cnet_partof_65b4aca1b8 (PartOf bimetallic_strip thermostat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "binary operation is part of group", "pln": ["(: cnet_partof_fcaecce5b3 (PartOf binary_operation group) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "binding is part of book", "pln": ["(: cnet_partof_82c0cc0ea0 (PartOf binding book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "binghamton is part of new york", "pln": ["(: cnet_partof_d0402fcefb (PartOf binghamton new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "binomial theorem is part of probability theory", "pln": ["(: cnet_partof_bed11be637 (PartOf binomial_theorem probability_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bioko is part of equatorial guinea", "pln": ["(: cnet_partof_8aa19da4ee (PartOf bioko equatorial_guinea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "bios is part of computer", "pln": ["(: cnet_partof_0bb7d1941b (PartOf bios computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bioko is part of gulf of guinea", "pln": ["(: cnet_partof_436d657c7e (PartOf bioko gulf_of_guinea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bio is part of computer", "pln": ["(: cnet_partof_3866a5801a (PartOf bio computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "biosphere is part of planet", "pln": ["(: cnet_partof_8fbd8ab437 (PartOf biosphere planet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bird s foot is part of bird", "pln": ["(: cnet_partof_ea918d82eb (PartOf bird_s_foot bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bird is part of bird", "pln": ["(: cnet_partof_10fc61d8c6 (PartOf bird bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bird shot is part of shotgun shell", "pln": ["(: cnet_partof_64a7c59578 (PartOf bird_shot shotgun_shell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "birmingham is part of alabama", "pln": ["(: cnet_partof_6bb537ad1f (PartOf birmingham alabama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "birmingham is part of england", "pln": ["(: cnet_partof_6cd56b1952 (PartOf birmingham england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "birth is part of human experience", "pln": ["(: cnet_partof_23c973d429 (PartOf birth human_experience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "birth is part of life", "pln": ["(: cnet_partof_593c8d66d0 (PartOf birth life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "biscayne bay is part of atlantic", "pln": ["(: cnet_partof_eaef05df2b (PartOf biscayne_bay atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "biscayne bay is part of florida", "pln": ["(: cnet_partof_bd748412e0 (PartOf biscayne_bay florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "biscayne national park is part of florida", "pln": ["(: cnet_partof_40b275343d (PartOf biscayne_national_park florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bishkek is part of kyrgyzstan", "pln": ["(: cnet_partof_58011d1150 (PartOf bishkek kyrgyzstan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bismarck is part of north dakota", "pln": ["(: cnet_partof_8e0cbf2edb (PartOf bismarck north_dakota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bismarck archipelago is part of melanesia", "pln": ["(: cnet_partof_9fddf55f16 (PartOf bismarck_archipelago melanesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bismarck archipelago is part of papua new guinea", "pln": ["(: cnet_partof_66176a53fb (PartOf bismarck_archipelago papua_new_guinea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bismarck sea is part of world war ii", "pln": ["(: cnet_partof_7611016f78 (PartOf bismarck_sea world_war_ii) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bissau is part of guinea bissau", "pln": ["(: cnet_partof_5abfa6a03b (PartOf bissau guinea_bissau) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bit is part of byte", "pln": ["(: cnet_partof_34656b3f00 (PartOf bit byte) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bit is part of bridle", "pln": ["(: cnet_partof_b915b2d0f2 (PartOf bit bridle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bit is part of drill", "pln": ["(: cnet_partof_d2c7427bea (PartOf bit drill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bit is part of key", "pln": ["(: cnet_partof_9435b15351 (PartOf bit key) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bithynia is part of asia minor", "pln": ["(: cnet_partof_fa7a01b2d5 (PartOf bithynia asia_minor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bitter end is part of line", "pln": ["(: cnet_partof_a3dd58b602 (PartOf bitter_end line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bitter orange is part of sour orange", "pln": ["(: cnet_partof_35b9cd14ec (PartOf bitter_orange sour_orange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bitthead is part of bollard", "pln": ["(: cnet_partof_b48de4baa1 (PartOf bitthead bollard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "black currant is part of black currant", "pln": ["(: cnet_partof_28643724ab (PartOf black_currant black_currant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "black economy is part of economy", "pln": ["(: cnet_partof_d00f4b5cd6 (PartOf black_economy economy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "black eyed pea is part of cowpea", "pln": ["(: cnet_partof_c8636fb824 (PartOf black_eyed_pea cowpea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "black hill is part of south dakota", "pln": ["(: cnet_partof_4ffe20e851 (PartOf black_hill south_dakota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "black hill is part of wyoming", "pln": ["(: cnet_partof_786ed25684 (PartOf black_hill wyoming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "black rock desert is part of nevada", "pln": ["(: cnet_partof_b67bd7cf02 (PartOf black_rock_desert nevada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "black walnut is part of black walnut", "pln": ["(: cnet_partof_c420ad6b59 (PartOf black_walnut black_walnut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blackberry is part of true blackberry", "pln": ["(: cnet_partof_76a4e3cf53 (PartOf blackberry true_blackberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blackberry is part of western blackberry", "pln": ["(: cnet_partof_703a23625f (PartOf blackberry western_blackberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blackhead is part of skin", "pln": ["(: cnet_partof_2cad34b999 (PartOf blackhead skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blackpool is part of england", "pln": ["(: cnet_partof_0dd23b0ae8 (PartOf blackpool england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blacksburg is part of virginia", "pln": ["(: cnet_partof_54861992cd (PartOf blacksburg virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bladder is part of human body", "pln": ["(: cnet_partof_048685887e (PartOf bladder human_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bladder is part of football", "pln": ["(: cnet_partof_515c633533 (PartOf bladder football) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bladder sphincter is part of urinary bladder", "pln": ["(: cnet_partof_dadf310345 (PartOf bladder_sphincter urinary_bladder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blade is part of fan", "pln": ["(: cnet_partof_8244bc902a (PartOf blade fan) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blade is part of knife", "pln": ["(: cnet_partof_0193047852 (PartOf blade knife) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "blade is part of ax", "pln": ["(: cnet_partof_111c5127af (PartOf blade ax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blade is part of helicopter", "pln": ["(: cnet_partof_635b16c6df (PartOf blade helicopter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blade is part of ice skate", "pln": ["(: cnet_partof_6981b090eb (PartOf blade ice_skate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blade is part of lawn mower", "pln": ["(: cnet_partof_17df2a7e14 (PartOf blade lawn_mower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blade is part of oar", "pln": ["(: cnet_partof_93e47fb6d2 (PartOf blade oar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blade is part of propeller", "pln": ["(: cnet_partof_59346aaf92 (PartOf blade propeller) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blade is part of scissor", "pln": ["(: cnet_partof_72c5de3b45 (PartOf blade scissor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blade is part of spatula", "pln": ["(: cnet_partof_bc534e3f82 (PartOf blade spatula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blade is part of sword", "pln": ["(: cnet_partof_a8c1262975 (PartOf blade sword) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blade is part of turbine", "pln": ["(: cnet_partof_37d62cd896 (PartOf blade turbine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blade is part of windmill", "pln": ["(: cnet_partof_0c39a899f1 (PartOf blade windmill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blade is part of chuck", "pln": ["(: cnet_partof_28b8a54e0b (PartOf blade chuck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blanket is part of breeder reactor", "pln": ["(: cnet_partof_3a1f67783a (PartOf blanket breeder_reactor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blantyre is part of malawi", "pln": ["(: cnet_partof_318a55f08b (PartOf blantyre malawi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blast furnace is part of steel mill", "pln": ["(: cnet_partof_28a58df914 (PartOf blast_furnace steel_mill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blastocoel is part of blastosphere", "pln": ["(: cnet_partof_9fcbf93fe4 (PartOf blastocoel blastosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "blastopore is part of archenteron", "pln": ["(: cnet_partof_7c96fb042a (PartOf blastopore archenteron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blenheim is part of war of spanish succession", "pln": ["(: cnet_partof_e2d84c4cd2 (PartOf blenheim war_of_spanish_succession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blida is part of algeria", "pln": ["(: cnet_partof_940688038b (PartOf blida algeria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blind spot is part of retina", "pln": ["(: cnet_partof_ff2b7d05c1 (PartOf blind_spot retina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blinker is part of electrical system", "pln": ["(: cnet_partof_740cd29050 (PartOf blinker electrical_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bloemfontein is part of south africa", "pln": ["(: cnet_partof_86941b6d15 (PartOf bloemfontein south_africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "blood is part of body", "pln": ["(: cnet_partof_55047891bf (PartOf blood body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "blood cell is part of blood", "pln": ["(: cnet_partof_ff60fc78fc (PartOf blood_cell blood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blood pressure is part of circulation", "pln": ["(: cnet_partof_0d2e180ea0 (PartOf blood_pressure circulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blood vessel is part of circulatory system", "pln": ["(: cnet_partof_589f0c78ba (PartOf blood_vessel circulatory_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bloodstream is part of circulatory system", "pln": ["(: cnet_partof_868782b705 (PartOf bloodstream circulatory_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bloom is part of youth", "pln": ["(: cnet_partof_c7c4318148 (PartOf bloom youth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bloomington is part of indiana", "pln": ["(: cnet_partof_d3603cbd08 (PartOf bloomington indiana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bloomsbury is part of london", "pln": ["(: cnet_partof_94c86a2af4 (PartOf bloomsbury london) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blow is part of fight", "pln": ["(: cnet_partof_bde1373dc3 (PartOf blow fight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blowfish is part of puffer", "pln": ["(: cnet_partof_7c86df2fbf (PartOf blowfish puffer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "blowhole is part of cetacean", "pln": ["(: cnet_partof_bbeec1c21c (PartOf blowhole cetacean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "blue ridge mountains is part of appalachians", "pln": ["(: cnet_partof_f5e172a2be (PartOf blue_ridge_mountains appalachians) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blue crab is part of blue crab", "pln": ["(: cnet_partof_e051735e23 (PartOf blue_crab blue_crab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blue note is part of blue", "pln": ["(: cnet_partof_aae8a9de3b (PartOf blue_note blue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blue ridge mountain is part of appalachian", "pln": ["(: cnet_partof_360c0e5ec3 (PartOf blue_ridge_mountain appalachian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blue ridge mountain is part of north carolina", "pln": ["(: cnet_partof_b7bb5bef6f (PartOf blue_ridge_mountain north_carolina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blue ridge mountain is part of pennsylvania", "pln": ["(: cnet_partof_6c66e984c8 (PartOf blue_ridge_mountain pennsylvania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blue ridge mountain is part of virginia", "pln": ["(: cnet_partof_82d2908a19 (PartOf blue_ridge_mountain virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blueberry is part of dwarf bilberry", "pln": ["(: cnet_partof_40b85bdf50 (PartOf blueberry dwarf_bilberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "blueberry is part of high bush blueberry", "pln": ["(: cnet_partof_94c9bb9328 (PartOf blueberry high_bush_blueberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bluefin is part of bluefin", "pln": ["(: cnet_partof_f722a025bf (PartOf bluefin bluefin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bluefish is part of bluefish", "pln": ["(: cnet_partof_6f80ceddfd (PartOf bluefish bluefish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bluepoint is part of bluepoint", "pln": ["(: cnet_partof_3f5dd2499c (PartOf bluepoint bluepoint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bo hai is part of china", "pln": ["(: cnet_partof_3ee28c8586 (PartOf bo_hai china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bo hai is part of yellow sea", "pln": ["(: cnet_partof_c2f41c97a8 (PartOf bo_hai yellow_sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "board is part of ice hockey rink", "pln": ["(: cnet_partof_d7e2723c0e (PartOf board ice_hockey_rink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "boat whistle is part of boat", "pln": ["(: cnet_partof_4f574d7d12 (PartOf boat_whistle boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bob is part of pendulum", "pln": ["(: cnet_partof_83fb01039c (PartOf bob pendulum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bodice is part of dress", "pln": ["(: cnet_partof_13452e82f6 (PartOf bodice dress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "body is part of address", "pln": ["(: cnet_partof_9cc6fd252c (PartOf body address) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "body is part of narration", "pln": ["(: cnet_partof_81408162de (PartOf body narration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "body hair is part of homo", "pln": ["(: cnet_partof_507dc2d649 (PartOf body_hair homo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "body of water is part of hydrosphere", "pln": ["(: cnet_partof_399e9fcf3c (PartOf body_of_water hydrosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "body of water is part of surface", "pln": ["(: cnet_partof_ad642ee584 (PartOf body_of_water surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "body part is part of organism", "pln": ["(: cnet_partof_091001bfb0 (PartOf body_part organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "body substance is part of body", "pln": ["(: cnet_partof_330d428ca1 (PartOf body_substance body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bodywork is part of motor vehicle", "pln": ["(: cnet_partof_59a0b9cfd6 (PartOf bodywork motor_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "boeotia is part of greece", "pln": ["(: cnet_partof_ad0656b54c (PartOf boeotia greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bogota is part of colombia", "pln": ["(: cnet_partof_17641d1d79 (PartOf bogota colombia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bohemian is part of czech republic", "pln": ["(: cnet_partof_831ae40b26 (PartOf bohemian czech_republic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "boiler is part of heating system", "pln": ["(: cnet_partof_f08153ff73 (PartOf boiler heating_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "boiler is part of steam engine", "pln": ["(: cnet_partof_6583fb320a (PartOf boiler steam_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "boilerplate is part of contract", "pln": ["(: cnet_partof_3af3040041 (PartOf boilerplate contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "boise is part of idaho", "pln": ["(: cnet_partof_9a31855081 (PartOf boise idaho) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bolivia is part of south america", "pln": ["(: cnet_partof_4dfe3f9d73 (PartOf bolivia south_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bollard is part of pier", "pln": ["(: cnet_partof_b1e239634c (PartOf bollard pier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bologna is part of emilia romagna", "pln": ["(: cnet_partof_f8803ea9ca (PartOf bologna emilia_romagna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bolt is part of lock", "pln": ["(: cnet_partof_5e438a8d11 (PartOf bolt lock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bolt is part of nut and bolt", "pln": ["(: cnet_partof_78222addb4 (PartOf bolt nut_and_bolt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bolt is part of rifle", "pln": ["(: cnet_partof_ffedfdfa65 (PartOf bolt rifle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bolzano is part of italy", "pln": ["(: cnet_partof_b02753f45d (PartOf bolzano italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bomb rack is part of bomber", "pln": ["(: cnet_partof_2fc4a2ac2b (PartOf bomb_rack bomber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bomblet is part of cluster bomb", "pln": ["(: cnet_partof_e779416990 (PartOf bomblet cluster_bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bonaire is part of netherland antille", "pln": ["(: cnet_partof_4da9f02f9a (PartOf bonaire netherland_antille) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bonduc nut is part of bonduc", "pln": ["(: cnet_partof_c22f7a4210 (PartOf bonduc_nut bonduc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bone is part of endoskeleton", "pln": ["(: cnet_partof_bb2df4fa75 (PartOf bone endoskeleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bone cell is part of bone", "pln": ["(: cnet_partof_36d7185fb1 (PartOf bone_cell bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bone oil is part of bone fat", "pln": ["(: cnet_partof_36df4c059a (PartOf bone_oil bone_fat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bonete is part of ande", "pln": ["(: cnet_partof_6034d3485b (PartOf bonete ande) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bonete is part of argentina", "pln": ["(: cnet_partof_6e773a34b9 (PartOf bonete argentina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bonito is part of bonito", "pln": ["(: cnet_partof_ad7fbbd984 (PartOf bonito bonito) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bonn is part of germany", "pln": ["(: cnet_partof_7614da08fc (PartOf bonn germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bonus is part of incentive program", "pln": ["(: cnet_partof_b595c7d107 (PartOf bonus incentive_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bony labyrinth is part of inner ear", "pln": ["(: cnet_partof_fd6e02709f (PartOf bony_labyrinth inner_ear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "book is part of library", "pln": ["(: cnet_partof_663038c852 (PartOf book library) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "book is part of text", "pln": ["(: cnet_partof_1e5231e238 (PartOf book text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "boom is part of sailing vessel", "pln": ["(: cnet_partof_f2129cae56 (PartOf boom sailing_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "booster is part of multistage rocket", "pln": ["(: cnet_partof_e662aad35e (PartOf booster multistage_rocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "booster is part of communication system", "pln": ["(: cnet_partof_64a1e5ec00 (PartOf booster communication_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "boot is part of car", "pln": ["(: cnet_partof_c215c8f30b (PartOf boot car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bootlace is part of boot", "pln": ["(: cnet_partof_325fcaff7a (PartOf bootlace boot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bootleg is part of boot", "pln": ["(: cnet_partof_75405532fa (PartOf bootleg boot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "borage is part of borage", "pln": ["(: cnet_partof_9267239603 (PartOf borage borage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bordeaux is part of france", "pln": ["(: cnet_partof_3e2af10a5a (PartOf bordeaux france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "borneo is part of malay archipelago", "pln": ["(: cnet_partof_b83d6ef2ea (PartOf borneo malay_archipelago) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "borodino is part of napoleonic war", "pln": ["(: cnet_partof_7e85f6cc98 (PartOf borodino napoleonic_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "boron chamber is part of boron counter tube", "pln": ["(: cnet_partof_65cb688ebf (PartOf boron_chamber boron_counter_tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "borscht circuit is part of catskill", "pln": ["(: cnet_partof_dcb17326a8 (PartOf borscht_circuit catskill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bosnia is part of bosnia and herzegovina", "pln": ["(: cnet_partof_39863c7edb (PartOf bosnia bosnia_and_herzegovina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bosom is part of garment", "pln": ["(: cnet_partof_5a3e4c0ed1 (PartOf bosom garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bosporus is part of turkey", "pln": ["(: cnet_partof_79c318929e (PartOf bosporus turkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bosporus bridge is part of istanbul", "pln": ["(: cnet_partof_ab2e8be1ed (PartOf bosporus_bridge istanbul) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "boston is part of massachusett", "pln": ["(: cnet_partof_2580ebf6ea (PartOf boston massachusett) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "boston harbor is part of boston", "pln": ["(: cnet_partof_00ef17d80c (PartOf boston_harbor boston) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bosworth field is part of war of ros", "pln": ["(: cnet_partof_fd1738567b (PartOf bosworth_field war_of_ros) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "botswana is part of africa", "pln": ["(: cnet_partof_28f6aa8ca9 (PartOf botswana africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bottle is part of bottle of wine", "pln": ["(: cnet_partof_f6d5afb601 (PartOf bottle bottle_of_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bottlecap is part of bottle", "pln": ["(: cnet_partof_dcc523a008 (PartOf bottlecap bottle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bottom is part of inning", "pln": ["(: cnet_partof_2b963f22c6 (PartOf bottom inning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bottom line is part of audited account", "pln": ["(: cnet_partof_4bad46efc9 (PartOf bottom_line audited_account) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bougainville is part of papua new guinea", "pln": ["(: cnet_partof_52880ad461 (PartOf bougainville papua_new_guinea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bougainville is part of solomon island", "pln": ["(: cnet_partof_5120f08a1b (PartOf bougainville solomon_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "boulder is part of colorado", "pln": ["(: cnet_partof_e21a6d0f69 (PartOf boulder colorado) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bourgogne is part of france", "pln": ["(: cnet_partof_2a8286a041 (PartOf bourgogne france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bouvet island is part of south atlantic", "pln": ["(: cnet_partof_0886221863 (PartOf bouvet_island south_atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bow is part of bow and arrow", "pln": ["(: cnet_partof_882c11f02c (PartOf bow bow_and_arrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bow is part of vessel", "pln": ["(: cnet_partof_70416a71e3 (PartOf bow vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bowery is part of manhattan", "pln": ["(: cnet_partof_b8ab5e038f (PartOf bowery manhattan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bowl is part of lawn bowling", "pln": ["(: cnet_partof_638fdf8c5b (PartOf bowl lawn_bowling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bowl is part of pipe", "pln": ["(: cnet_partof_3469b89737 (PartOf bowl pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bowling alley is part of bowling equipment", "pln": ["(: cnet_partof_d8d656c89d (PartOf bowling_alley bowling_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bowling ball is part of bowling equipment", "pln": ["(: cnet_partof_d24391922f (PartOf bowling_ball bowling_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bowling green is part of kentucky", "pln": ["(: cnet_partof_1204b62bb5 (PartOf bowling_green kentucky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bowling shoe is part of bowling equipment", "pln": ["(: cnet_partof_e24666fab5 (PartOf bowling_shoe bowling_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bowman s capsule is part of malpighian body", "pln": ["(: cnet_partof_a497becf8d (PartOf bowman_s_capsule malpighian_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bowstring is part of bow", "pln": ["(: cnet_partof_328e470227 (PartOf bowstring bow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "box is part of balcony", "pln": ["(: cnet_partof_f0da71c510 (PartOf box balcony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "box is part of ball field", "pln": ["(: cnet_partof_9b174367d1 (PartOf box ball_field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "box is part of coach", "pln": ["(: cnet_partof_9b117c27cf (PartOf box coach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "box office is part of theater", "pln": ["(: cnet_partof_3d913823f9 (PartOf box_office theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "box pleat is part of skirt", "pln": ["(: cnet_partof_17113fd051 (PartOf box_pleat skirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "box seat is part of box", "pln": ["(: cnet_partof_dc15f1f8c7 (PartOf box_seat box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "box seat is part of grandstand", "pln": ["(: cnet_partof_95bc2b6d85 (PartOf box_seat grandstand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "boxing day is part of christma", "pln": ["(: cnet_partof_fc26b6779c (PartOf boxing_day christma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "boyne is part of war of grand alliance", "pln": ["(: cnet_partof_c0dd4bcb1a (PartOf boyne war_of_grand_alliance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "boysenberry is part of boysenberry", "pln": ["(: cnet_partof_07079a1988 (PartOf boysenberry boysenberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bozeman is part of montana", "pln": ["(: cnet_partof_c218ae3a59 (PartOf bozeman montana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brace is part of brace and bit", "pln": ["(: cnet_partof_0961ed205b (PartOf brace brace_and_bit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brace is part of framework", "pln": ["(: cnet_partof_9a6a8fa572 (PartOf brace framework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brachial artery is part of arm", "pln": ["(: cnet_partof_82663a8068 (PartOf brachial_artery arm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bract is part of inflorescence", "pln": ["(: cnet_partof_3a8aa128fd (PartOf bract inflorescence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "braga is part of portugal", "pln": ["(: cnet_partof_a947ef34ec (PartOf braga portugal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brahmaputra is part of bangladesh", "pln": ["(: cnet_partof_26467aee6b (PartOf brahmaputra bangladesh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brahmaputra is part of china", "pln": ["(: cnet_partof_8bd114093d (PartOf brahmaputra china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brahmaputra is part of india", "pln": ["(: cnet_partof_79d1d7b601 (PartOf brahmaputra india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "brain is part of body", "pln": ["(: cnet_partof_8db6d7b230 (PartOf brain body) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "brain is part of human body", "pln": ["(: cnet_partof_ae18ddd447 (PartOf brain human_body) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "break is part of billiards", "pln": ["(: cnet_partof_46fe5f4fee (PartOf break billiards) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brain is part of person", "pln": ["(: cnet_partof_846d6a9344 (PartOf brain person) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brain is part of central nervous system", "pln": ["(: cnet_partof_343b5f8829 (PartOf brain central_nervous_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brain is part of head", "pln": ["(: cnet_partof_639a3dc3ce (PartOf brain head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brain cell is part of brain", "pln": ["(: cnet_partof_d5bd29d97e (PartOf brain_cell brain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brainstem is part of brain", "pln": ["(: cnet_partof_350048e4fd (PartOf brainstem brain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brake is part of wheeled vehicle", "pln": ["(: cnet_partof_ec0a631989 (PartOf brake wheeled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brake band is part of brake system", "pln": ["(: cnet_partof_df7e31f1de (PartOf brake_band brake_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brake cylinder is part of hydraulic brake", "pln": ["(: cnet_partof_fdcdb2b748 (PartOf brake_cylinder hydraulic_brake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brake disk is part of disk brake", "pln": ["(: cnet_partof_e1ae034c5f (PartOf brake_disk disk_brake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brake drum is part of drum brake", "pln": ["(: cnet_partof_2f3f906c87 (PartOf brake_drum drum_brake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brake lining is part of brake shoe", "pln": ["(: cnet_partof_314de0fac9 (PartOf brake_lining brake_shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brake pad is part of disk brake", "pln": ["(: cnet_partof_bdb239b080 (PartOf brake_pad disk_brake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brake pedal is part of hydraulic brake", "pln": ["(: cnet_partof_673da34201 (PartOf brake_pedal hydraulic_brake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brake shoe is part of drum brake", "pln": ["(: cnet_partof_23462532b7 (PartOf brake_shoe drum_brake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brake system is part of motor vehicle", "pln": ["(: cnet_partof_5fccf1b0df (PartOf brake_system motor_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "branch is part of furcation", "pln": ["(: cnet_partof_9b3f276070 (PartOf branch furcation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brandenburg is part of germany", "pln": ["(: cnet_partof_addc8e1128 (PartOf brandenburg germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brandenburg is part of prussia", "pln": ["(: cnet_partof_07b8b8ab25 (PartOf brandenburg prussia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brasilia is part of brazil", "pln": ["(: cnet_partof_f51f8aafcf (PartOf brasilia brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brasov is part of romania", "pln": ["(: cnet_partof_0d6897d9f4 (PartOf brasov romania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brassard is part of body armor", "pln": ["(: cnet_partof_49c9ed8d72 (PartOf brassard body_armor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bratislava is part of slovakia", "pln": ["(: cnet_partof_57278a7f5e (PartOf bratislava slovakia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brattleboro is part of vermont", "pln": ["(: cnet_partof_1d5e315eb8 (PartOf brattleboro vermont) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "braunschweig is part of germany", "pln": ["(: cnet_partof_e2c1a8be1e (PartOf braunschweig germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brazil is part of south america", "pln": ["(: cnet_partof_9b9c381f23 (PartOf brazil south_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brazil nut is part of brazil nut", "pln": ["(: cnet_partof_eb7ae81ab2 (PartOf brazil_nut brazil_nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brazo is part of new mexico", "pln": ["(: cnet_partof_ece0486027 (PartOf brazo new_mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brazo is part of texa", "pln": ["(: cnet_partof_a7492446b0 (PartOf brazo texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brazzaville is part of congo", "pln": ["(: cnet_partof_a8a72cbc6b (PartOf brazzaville congo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bread is part of sandwich", "pln": ["(: cnet_partof_2ecb39c77f (PartOf bread sandwich) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "breadfruit is part of breadfruit", "pln": ["(: cnet_partof_3ea139c26e (PartOf breadfruit breadfruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "break is part of billiard", "pln": ["(: cnet_partof_49afeab594 (PartOf break billiard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "break is part of pool", "pln": ["(: cnet_partof_0feec0e06f (PartOf break pool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bream is part of freshwater bream", "pln": ["(: cnet_partof_6a31016b01 (PartOf bream freshwater_bream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bream is part of sea bream", "pln": ["(: cnet_partof_eb091dde55 (PartOf bream sea_bream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "breast is part of adult female body", "pln": ["(: cnet_partof_d42c743a69 (PartOf breast adult_female_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "breast is part of thorax", "pln": ["(: cnet_partof_fb66bce850 (PartOf breast thorax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "breast is part of chicken", "pln": ["(: cnet_partof_ec4d3e6884 (PartOf breast chicken) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "breast is part of turkey", "pln": ["(: cnet_partof_8f9da58edf (PartOf breast turkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "breast pocket is part of coat", "pln": ["(: cnet_partof_6e9e41e92d (PartOf breast_pocket coat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "breastplate is part of body armor", "pln": ["(: cnet_partof_eff45cd799 (PartOf breastplate body_armor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "breech is part of barrel", "pln": ["(: cnet_partof_16b3f5c39c (PartOf breech barrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "breechblock is part of breech", "pln": ["(: cnet_partof_403a3f7991 (PartOf breechblock breech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "breed s hill is part of charlestown", "pln": ["(: cnet_partof_414ccedaaf (PartOf breed_s_hill charlestown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bremen is part of germany", "pln": ["(: cnet_partof_b897b72724 (PartOf bremen germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bremerhaven is part of germany", "pln": ["(: cnet_partof_eebf0b79ff (PartOf bremerhaven germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brenner pass is part of austria", "pln": ["(: cnet_partof_ede3131f6d (PartOf brenner_pass austria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brenner pass is part of italy", "pln": ["(: cnet_partof_6e008382a9 (PartOf brenner_pass italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brescia is part of italy", "pln": ["(: cnet_partof_4bbd4cc5e2 (PartOf brescia italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brest is part of france", "pln": ["(: cnet_partof_f5361de341 (PartOf brest france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bretagne is part of france", "pln": ["(: cnet_partof_c27f34d601 (PartOf bretagne france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "briarroot is part of tree heath", "pln": ["(: cnet_partof_5151cbf805 (PartOf briarroot tree_heath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bridge is part of spectacle", "pln": ["(: cnet_partof_0ca5959c5a (PartOf bridge spectacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bridge is part of stringed instrument", "pln": ["(: cnet_partof_382b23e39c (PartOf bridge stringed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bridge is part of transportation system", "pln": ["(: cnet_partof_c0f3b56ccd (PartOf bridge transportation_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bridge is part of nose", "pln": ["(: cnet_partof_b2e7f04106 (PartOf bridge nose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bridgeport is part of connecticut", "pln": ["(: cnet_partof_1f95a149b7 (PartOf bridgeport connecticut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bridgetown is part of barbado", "pln": ["(: cnet_partof_31a910d1a6 (PartOf bridgetown barbado) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bridle is part of harness", "pln": ["(: cnet_partof_11db5aa8e0 (PartOf bridle harness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brighton is part of england", "pln": ["(: cnet_partof_6cbd296039 (PartOf brighton england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "brim is part of hat", "pln": ["(: cnet_partof_ab06eb8feb (PartOf brim hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "british virgin islands is part of virgin islands", "pln": ["(: cnet_partof_b6daf31f5d (PartOf british_virgin_islands virgin_islands) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brim is part of vessel", "pln": ["(: cnet_partof_79e54d3f0b (PartOf brim vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brindisi is part of italy", "pln": ["(: cnet_partof_6fdcf7c3ff (PartOf brindisi italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brisbane is part of queensland", "pln": ["(: cnet_partof_bfc4b0d591 (PartOf brisbane queensland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bristle is part of brush", "pln": ["(: cnet_partof_bb1c4c6906 (PartOf bristle brush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bristol is part of england", "pln": ["(: cnet_partof_a7aa13ca8f (PartOf bristol england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bristol channel is part of atlantic", "pln": ["(: cnet_partof_c8dbbe2ff7 (PartOf bristol_channel atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "british columbia is part of canada", "pln": ["(: cnet_partof_b070971f60 (PartOf british_columbia canada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "british isle is part of atlantic", "pln": ["(: cnet_partof_aa64f5d589 (PartOf british_isle atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "british thermal unit is part of therm", "pln": ["(: cnet_partof_b63d715bb2 (PartOf british_thermal_unit therm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "british virgin island is part of virgin island", "pln": ["(: cnet_partof_a17ab842aa (PartOf british_virgin_island virgin_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "british west africa is part of west africa", "pln": ["(: cnet_partof_009d892149 (PartOf british_west_africa west_africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brno is part of czech republic", "pln": ["(: cnet_partof_3ddc10c023 (PartOf brno czech_republic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "broad bean is part of broad bean", "pln": ["(: cnet_partof_e7a2f4d9ac (PartOf broad_bean broad_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "broadcasting studio is part of radio station", "pln": ["(: cnet_partof_544ef982b1 (PartOf broadcasting_studio radio_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "broadcasting studio is part of television station", "pln": ["(: cnet_partof_7c786697d8 (PartOf broadcasting_studio television_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "broadway is part of manhattan", "pln": ["(: cnet_partof_e7670272cb (PartOf broadway manhattan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "broca s area is part of language area", "pln": ["(: cnet_partof_dcb091c742 (PartOf broca_s_area language_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "broccoli is part of broccoli", "pln": ["(: cnet_partof_919aa92b10 (PartOf broccoli broccoli) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "broccoli rabe is part of broccoli raab", "pln": ["(: cnet_partof_c9f44fbaec (PartOf broccoli_rabe broccoli_raab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bronchial artery is part of lung", "pln": ["(: cnet_partof_97a0387c4c (PartOf bronchial_artery lung) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bronchiole is part of lower respiratory tract", "pln": ["(: cnet_partof_3a0bc97782 (PartOf bronchiole lower_respiratory_tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bronchospasm is part of asthma", "pln": ["(: cnet_partof_167701c44f (PartOf bronchospasm asthma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bronchospasm is part of bronchitis", "pln": ["(: cnet_partof_935f312574 (PartOf bronchospasm bronchitis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bronchus is part of lower respiratory tract", "pln": ["(: cnet_partof_577396f5a4 (PartOf bronchus lower_respiratory_tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bronco busting is part of rodeo", "pln": ["(: cnet_partof_f759563b9f (PartOf bronco_busting rodeo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bronx is part of new york", "pln": ["(: cnet_partof_d62957d6b4 (PartOf bronx new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bronx whitestone bridge is part of new york", "pln": ["(: cnet_partof_3ca2d80768 (PartOf bronx_whitestone_bridge new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bronze age is part of prehistory", "pln": ["(: cnet_partof_8dd1567cd6 (PartOf bronze_age prehistory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brook trout is part of brook trout", "pln": ["(: cnet_partof_172d323601 (PartOf brook_trout brook_trout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brooklyn is part of new york", "pln": ["(: cnet_partof_5c0e401602 (PartOf brooklyn new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "brooklyn bridge is part of new york", "pln": ["(: cnet_partof_3889cb0b22 (PartOf brooklyn_bridge new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "bryan is part of texas", "pln": ["(: cnet_partof_777ad8720d (PartOf bryan texas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "broomstick is part of broom", "pln": ["(: cnet_partof_832cb68222 (PartOf broomstick broom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brother is part of family", "pln": ["(: cnet_partof_995faf387c (PartOf brother family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brow is part of face", "pln": ["(: cnet_partof_8152f80ac1 (PartOf brow face) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brown university is part of rhode island", "pln": ["(: cnet_partof_498a96eb8b (PartOf brown_university rhode_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brownsville is part of texa", "pln": ["(: cnet_partof_2d7097cd84 (PartOf brownsville texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bruge is part of belgium", "pln": ["(: cnet_partof_a8e145efc8 (PartOf bruge belgium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brumaire is part of revolutionary calendar", "pln": ["(: cnet_partof_19434a5fd6 (PartOf brumaire revolutionary_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brunei is part of borneo", "pln": ["(: cnet_partof_37eff79aac (PartOf brunei borneo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brunswick is part of maine", "pln": ["(: cnet_partof_57451ffa62 (PartOf brunswick maine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brush is part of electric motor", "pln": ["(: cnet_partof_f39b729646 (PartOf brush electric_motor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brush is part of generator", "pln": ["(: cnet_partof_a0cb6a29f8 (PartOf brush generator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "brussel sprout is part of brussel sprout", "pln": ["(: cnet_partof_b967343c24 (PartOf brussel_sprout brussel_sprout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bruxelle is part of belgium", "pln": ["(: cnet_partof_b7cbf57339 (PartOf bruxelle belgium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bryan is part of texa", "pln": ["(: cnet_partof_544007262d (PartOf bryan texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bryce canyon national park is part of utah", "pln": ["(: cnet_partof_2573d8d5c1 (PartOf bryce_canyon_national_park utah) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "buccal artery is part of cheek", "pln": ["(: cnet_partof_5d2efa80e1 (PartOf buccal_artery cheek) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "buccal cavity is part of mouth", "pln": ["(: cnet_partof_cf531df2d8 (PartOf buccal_cavity mouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bucharest is part of romania", "pln": ["(: cnet_partof_d779325f39 (PartOf bucharest romania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "buchenwald is part of germany", "pln": ["(: cnet_partof_c5703cab2a (PartOf buchenwald germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bucket is part of waterwheel", "pln": ["(: cnet_partof_6de0c6432c (PartOf bucket waterwheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "buckingham palace is part of westminster", "pln": ["(: cnet_partof_bee9d74926 (PartOf buckingham_palace westminster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "buckthorn berry is part of buckthorn", "pln": ["(: cnet_partof_c6733a8e01 (PartOf buckthorn_berry buckthorn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "buckwheat is part of buckwheat", "pln": ["(: cnet_partof_74ebdc4e3f (PartOf buckwheat buckwheat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "budapest is part of hungary", "pln": ["(: cnet_partof_3bf36d7bc3 (PartOf budapest hungary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "buena vista is part of mexican war", "pln": ["(: cnet_partof_3e08229ab7 (PartOf buena_vista mexican_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "buffer is part of emacs", "pln": ["(: cnet_partof_4f0043513d (PartOf buffer emacs) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bueno aire is part of argentina", "pln": ["(: cnet_partof_d4b7e5ea18 (PartOf bueno_aire argentina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "buffalo is part of american bison", "pln": ["(: cnet_partof_b9efeb83ec (PartOf buffalo american_bison) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "buffalo is part of new york", "pln": ["(: cnet_partof_b701ba1198 (PartOf buffalo new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "buffalo nut is part of rabbitwood", "pln": ["(: cnet_partof_5036951bbb (PartOf buffalo_nut rabbitwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "buffalofish is part of buffalo fish", "pln": ["(: cnet_partof_8a87cf235a (PartOf buffalofish buffalo_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "buffer is part of emac", "pln": ["(: cnet_partof_e03e89ec03 (PartOf buffer emac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "buffer is part of car", "pln": ["(: cnet_partof_d758e55541 (PartOf buffer car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "buffer is part of random access memory", "pln": ["(: cnet_partof_ccd9f764b6 (PartOf buffer random_access_memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "buffet is part of dining room", "pln": ["(: cnet_partof_d68378fc46 (PartOf buffet dining_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "buffing wheel is part of buffer", "pln": ["(: cnet_partof_2a2e5ac360 (PartOf buffing_wheel buffer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "buganda is part of uganda", "pln": ["(: cnet_partof_578f1f2da5 (PartOf buganda uganda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bujumbura is part of burundi", "pln": ["(: cnet_partof_07a711bc07 (PartOf bujumbura burundi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bulawayo is part of zimbabwe", "pln": ["(: cnet_partof_04b834f5af (PartOf bulawayo zimbabwe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bulb is part of mercury thermometer", "pln": ["(: cnet_partof_05ca26d461 (PartOf bulb mercury_thermometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bulb is part of syringe", "pln": ["(: cnet_partof_405d85e2f9 (PartOf bulb syringe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bulgaria is part of europe", "pln": ["(: cnet_partof_800c942cda (PartOf bulgaria europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bulgur is part of tabbouleh", "pln": ["(: cnet_partof_36fdde04c0 (PartOf bulgur tabbouleh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bulkhead is part of ship", "pln": ["(: cnet_partof_2f46b9a933 (PartOf bulkhead ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bull s eye is part of target", "pln": ["(: cnet_partof_865097f378 (PartOf bull_s_eye target) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bull run is part of american civil war", "pln": ["(: cnet_partof_88eff8b88f (PartOf bull_run american_civil_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bull run is part of virginia", "pln": ["(: cnet_partof_6bc1d3390c (PartOf bull_run virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bulldog clip is part of clip lead", "pln": ["(: cnet_partof_e533402e87 (PartOf bulldog_clip clip_lead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bullet is part of cartridge", "pln": ["(: cnet_partof_680c26ba64 (PartOf bullet cartridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bullock s heart is part of bullock s heart", "pln": ["(: cnet_partof_1d3706ffe0 (PartOf bullock_s_heart bullock_s_heart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bullpen is part of ballpark", "pln": ["(: cnet_partof_2f2ab5117a (PartOf bullpen ballpark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bulwark is part of ship", "pln": ["(: cnet_partof_a0224a36b0 (PartOf bulwark ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bumper is part of car", "pln": ["(: cnet_partof_189b4099b5 (PartOf bumper car) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bumper is part of truck", "pln": ["(: cnet_partof_5437f3caf2 (PartOf bumper truck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bumper guard is part of bumper", "pln": ["(: cnet_partof_71b3cbe9ec (PartOf bumper_guard bumper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bung is part of barrel", "pln": ["(: cnet_partof_cfb8677cf0 (PartOf bung barrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bunker is part of golf course", "pln": ["(: cnet_partof_14543bbd9c (PartOf bunker golf_course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bunker hill is part of american revolution", "pln": ["(: cnet_partof_20454519e1 (PartOf bunker_hill american_revolution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "buntal is part of talipot", "pln": ["(: cnet_partof_5a6a561f32 (PartOf buntal talipot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bunya bunya is part of bunya bunya", "pln": ["(: cnet_partof_5f2d0de02f (PartOf bunya_bunya bunya_bunya) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "bureau of alcohol tobacco and firearms is part of department of treasury", "pln": ["(: cnet_partof_71f972298d (PartOf bureau_of_alcohol_tobacco_and_firearms department_of_treasury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bur is part of dentist s drill", "pln": ["(: cnet_partof_ccfc2e7f5d (PartOf bur dentist_s_drill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bureau of alcohol tobacco and firearm is part of department of treasury", "pln": ["(: cnet_partof_9a19b59ab0 (PartOf bureau_of_alcohol_tobacco_and_firearm department_of_treasury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "bureau of census is part of department of commerce", "pln": ["(: cnet_partof_ab8c7868b8 (PartOf bureau_of_census department_of_commerce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bureau of custom is part of department of treasury", "pln": ["(: cnet_partof_09c5d04eea (PartOf bureau_of_custom department_of_treasury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bureau of diplomatic security is part of department of state", "pln": ["(: cnet_partof_c34f9cc74e (PartOf bureau_of_diplomatic_security department_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bureau of engraving and printing is part of department of treasury", "pln": ["(: cnet_partof_5e3a282edc (PartOf bureau_of_engraving_and_printing department_of_treasury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bureau of intelligence and research is part of department of state", "pln": ["(: cnet_partof_d6a7b1defc (PartOf bureau_of_intelligence_and_research department_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bureau of justice assistance is part of department of justice", "pln": ["(: cnet_partof_4b02fe7fc0 (PartOf bureau_of_justice_assistance department_of_justice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bureau of justice statistic is part of department of justice", "pln": ["(: cnet_partof_5f63a26515 (PartOf bureau_of_justice_statistic department_of_justice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "burl is part of tree", "pln": ["(: cnet_partof_c0283a5e4e (PartOf burl tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "burlington is part of vermont", "pln": ["(: cnet_partof_a277462760 (PartOf burlington vermont) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "burn center is part of hospital", "pln": ["(: cnet_partof_aa3b4a319e (PartOf burn_center hospital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bursa is part of turkey", "pln": ["(: cnet_partof_345985381c (PartOf bursa turkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bursa omentalis is part of peritoneal cavity", "pln": ["(: cnet_partof_5e861b013e (PartOf bursa_omentalis peritoneal_cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "burundi is part of africa", "pln": ["(: cnet_partof_cc761f2d3d (PartOf burundi africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "burundi is part of east africa", "pln": ["(: cnet_partof_237b0e44af (PartOf burundi east_africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bus stop is part of bus route", "pln": ["(: cnet_partof_21ea43a676 (PartOf bus_stop bus_route) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "busbar is part of computer", "pln": ["(: cnet_partof_f3be095f09 (PartOf busbar computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "busbar is part of local area network", "pln": ["(: cnet_partof_7b3223e92c (PartOf busbar local_area_network) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "busbar is part of power station", "pln": ["(: cnet_partof_8b00127aff (PartOf busbar power_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bushel is part of quarter", "pln": ["(: cnet_partof_89c752c8b0 (PartOf bushel quarter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "business activity is part of commercial enterprise", "pln": ["(: cnet_partof_5895ca21c9 (PartOf business_activity commercial_enterprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "butte is part of montana", "pln": ["(: cnet_partof_6f266bbfaa (PartOf butte montana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "butterfish is part of butterfish", "pln": ["(: cnet_partof_6f933b1243 (PartOf butterfish butterfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "butterfish is part of rock gunnel", "pln": ["(: cnet_partof_e7753dca61 (PartOf butterfish rock_gunnel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "butterfly valve is part of carburetor", "pln": ["(: cnet_partof_1bdb623737 (PartOf butterfly_valve carburetor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "butterhead lettuce is part of head lettuce", "pln": ["(: cnet_partof_df634c97d0 (PartOf butterhead_lettuce head_lettuce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "butternut is part of butternut", "pln": ["(: cnet_partof_b347703456 (PartOf butternut butternut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "butternut squash is part of butternut squash", "pln": ["(: cnet_partof_5340a627b7 (PartOf butternut_squash butternut_squash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "buttock is part of torso", "pln": ["(: cnet_partof_3fa9228382 (PartOf buttock torso) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "buttonhole is part of garment", "pln": ["(: cnet_partof_ee1f5b6a0d (PartOf buttonhole garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "butut is part of dalasi", "pln": ["(: cnet_partof_d7d78966ad (PartOf butut dalasi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "buzzard bay is part of atlantic", "pln": ["(: cnet_partof_de17790831 (PartOf buzzard_bay atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "byblo is part of lebanon", "pln": ["(: cnet_partof_d0144ae2d9 (PartOf byblo lebanon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "bydgoszcz is part of poland", "pln": ["(: cnet_partof_9fe8094b3e (PartOf bydgoszcz poland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "byte is part of word", "pln": ["(: cnet_partof_7f0dd6ee46 (PartOf byte word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "byzantine empire is part of roman empire", "pln": ["(: cnet_partof_baf858ce76 (PartOf byzantine_empire roman_empire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "byzantium is part of byzantine empire", "pln": ["(: cnet_partof_5dc4db06c6 (PartOf byzantium byzantine_empire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cab is part of motor vehicle", "pln": ["(: cnet_partof_0557d6a03b (PartOf cab motor_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "cabbage is part of cabbage", "pln": ["(: cnet_partof_be6e8c9777 (PartOf cabbage cabbage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cabin is part of aircraft", "pln": ["(: cnet_partof_56ec3ed26e (PartOf cabin aircraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cabin is part of liner", "pln": ["(: cnet_partof_8be154be98 (PartOf cabin liner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cabin is part of spacecraft", "pln": ["(: cnet_partof_3223fe39b6 (PartOf cabin spacecraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "cabinet is part of locker room", "pln": ["(: cnet_partof_4cf59e5428 (PartOf cabinet locker_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cable is part of cable", "pln": ["(: cnet_partof_f52ff6b974 (PartOf cable cable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cable is part of suspension bridge", "pln": ["(: cnet_partof_1f102f058b (PartOf cable suspension_bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cable is part of telephone system", "pln": ["(: cnet_partof_21b7a7794d (PartOf cable telephone_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cable car is part of cable railway", "pln": ["(: cnet_partof_102f881754 (PartOf cable_car cable_railway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cachi is part of ande", "pln": ["(: cnet_partof_8a72e254e8 (PartOf cachi ande) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cachi is part of argentina", "pln": ["(: cnet_partof_fc57655460 (PartOf cachi argentina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cadiz is part of spain", "pln": ["(: cnet_partof_9091665b03 (PartOf cadiz spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "caesarea is part of israel", "pln": ["(: cnet_partof_f8d8ab7452 (PartOf caesarea israel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cairo is part of egypt", "pln": ["(: cnet_partof_c69d80e8d3 (PartOf cairo egypt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cairo is part of illinois", "pln": ["(: cnet_partof_1bb72a26a4 (PartOf cairo illinois) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cajan pea is part of pigeon pea", "pln": ["(: cnet_partof_bfb4ba7483 (PartOf cajan_pea pigeon_pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "calabar bean is part of calabar bean vine", "pln": ["(: cnet_partof_cc89eb8216 (PartOf calabar_bean calabar_bean_vine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "calabria is part of italy", "pln": ["(: cnet_partof_693666961a (PartOf calabria italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "calais is part of france", "pln": ["(: cnet_partof_e7fb997702 (PartOf calais france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "calamus is part of sweet flag", "pln": ["(: cnet_partof_4ba8145b52 (PartOf calamus sweet_flag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "calash is part of chaise", "pln": ["(: cnet_partof_aa5065e687 (PartOf calash chaise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "calcarine sulcus is part of occipital lobe", "pln": ["(: cnet_partof_2d51947cec (PartOf calcarine_sulcus occipital_lobe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "caledonia is part of scotland", "pln": ["(: cnet_partof_26212b2e7a (PartOf caledonia scotland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "caledonian canal is part of scotland", "pln": ["(: cnet_partof_a829ceb2b5 (PartOf caledonian_canal scotland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "calendar day is part of week", "pln": ["(: cnet_partof_388642c8d5 (PartOf calendar_day week) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "calf is part of shank", "pln": ["(: cnet_partof_5463d6f99a (PartOf calf shank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "calf roping is part of rodeo", "pln": ["(: cnet_partof_cc054c0f96 (PartOf calf_roping rodeo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "calgary is part of canada", "pln": ["(: cnet_partof_07418efdb7 (PartOf calgary canada) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "calgary is part of alberta", "pln": ["(: cnet_partof_8c3430a92c (PartOf calgary alberta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "cali is part of colombia", "pln": ["(: cnet_partof_6cddc41d08 (PartOf cali colombia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "california is part of u s", "pln": ["(: cnet_partof_7ebbba58b2 (PartOf california u_s) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "california is part of united state of america", "pln": ["(: cnet_partof_44138df6f7 (PartOf california united_state_of_america) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "california is part of southwest", "pln": ["(: cnet_partof_ea19e9b630 (PartOf california southwest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "california is part of united state", "pln": ["(: cnet_partof_54682c2e2e (PartOf california united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "call is part of card game", "pln": ["(: cnet_partof_a7de6e6132 (PartOf call card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "call option is part of straddle", "pln": ["(: cnet_partof_0e8ab66a11 (PartOf call_option straddle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "calm air is part of beaufort scale", "pln": ["(: cnet_partof_74aa1d43a4 (PartOf calm_air beaufort_scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "caloocan is part of philippine", "pln": ["(: cnet_partof_eccb813349 (PartOf caloocan philippine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "caloosahatchee canal is part of florida", "pln": ["(: cnet_partof_c70dc6952d (PartOf caloosahatchee_canal florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "caloosahatchee river is part of florida", "pln": ["(: cnet_partof_f3a703a3d6 (PartOf caloosahatchee_river florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "calorie is part of calorie", "pln": ["(: cnet_partof_5824e0e129 (PartOf calorie calorie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "calvaria is part of cranium", "pln": ["(: cnet_partof_0c83ae9baa (PartOf calvaria cranium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "calvary is part of jerusalem", "pln": ["(: cnet_partof_f7c23395d1 (PartOf calvary jerusalem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "calyx is part of perianth", "pln": ["(: cnet_partof_6f4477f272 (PartOf calyx perianth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "cam is part of england", "pln": ["(: cnet_partof_c8940ecc0f (PartOf cam england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "camail is part of basinet", "pln": ["(: cnet_partof_b682d89709 (PartOf camail basinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cambium is part of periosteum", "pln": ["(: cnet_partof_3fb717ce3f (PartOf cambium periosteum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cambodia is part of south east asia", "pln": ["(: cnet_partof_962f1691a5 (PartOf cambodia south_east_asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cambodia is part of indochina", "pln": ["(: cnet_partof_d025828381 (PartOf cambodia indochina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "cambrian is part of paleozoic", "pln": ["(: cnet_partof_d97ce8514e (PartOf cambrian paleozoic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cambridge is part of england", "pln": ["(: cnet_partof_ae32bf004e (PartOf cambridge england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cambridge is part of massachusett", "pln": ["(: cnet_partof_405c52debc (PartOf cambridge massachusett) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cambridge university is part of cambridge", "pln": ["(: cnet_partof_c4f22f09be (PartOf cambridge_university cambridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "camden is part of new jersey", "pln": ["(: cnet_partof_38d22915a4 (PartOf camden new_jersey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "camera len is part of camera", "pln": ["(: cnet_partof_79b36176ea (PartOf camera_len camera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "camera len is part of television camera", "pln": ["(: cnet_partof_66702c89d4 (PartOf camera_len television_camera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "camera lucida is part of microscope", "pln": ["(: cnet_partof_3b60155105 (PartOf camera_lucida microscope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cameroon is part of africa", "pln": ["(: cnet_partof_b085305805 (PartOf cameroon africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cameroon is part of cameroon", "pln": ["(: cnet_partof_44f470af74 (PartOf cameroon cameroon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "campania is part of italy", "pln": ["(: cnet_partof_ed6a8e8216 (PartOf campania italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "campeche is part of campeche", "pln": ["(: cnet_partof_9b0f769adf (PartOf campeche campeche) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "camshaft is part of engine", "pln": ["(: cnet_partof_c3b86ad04c (PartOf camshaft engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "canada is part of north america", "pln": ["(: cnet_partof_52027f6647 (PartOf canada north_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "canadian is part of new mexico", "pln": ["(: cnet_partof_c54211f592 (PartOf canadian new_mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "canadian falls is part of niagara", "pln": ["(: cnet_partof_5430ad3855 (PartOf canadian_falls niagara) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "canadian falls is part of ontario", "pln": ["(: cnet_partof_27a29edb54 (PartOf canadian_falls ontario) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "canadian is part of oklahoma", "pln": ["(: cnet_partof_a0f468e550 (PartOf canadian oklahoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "canadian is part of texa", "pln": ["(: cnet_partof_948975fb43 (PartOf canadian texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "canadian bacon is part of pork loin", "pln": ["(: cnet_partof_1428596959 (PartOf canadian_bacon pork_loin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "canadian fall is part of niagara", "pln": ["(: cnet_partof_1d11d2706e (PartOf canadian_fall niagara) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "canadian fall is part of ontario", "pln": ["(: cnet_partof_3a93a8ced9 (PartOf canadian_fall ontario) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "canary island is part of spain", "pln": ["(: cnet_partof_8b56b53ac6 (PartOf canary_island spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "canberra is part of australia", "pln": ["(: cnet_partof_67891babb6 (PartOf canberra australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cancer is part of zodiac", "pln": ["(: cnet_partof_c52219e87b (PartOf cancer zodiac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cancer cell is part of malignancy", "pln": ["(: cnet_partof_813ee3618c (PartOf cancer_cell malignancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "cancun is part of quintana roo", "pln": ["(: cnet_partof_0ad85f5791 (PartOf cancun quintana_roo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "candida albican is part of candidiasis", "pln": ["(: cnet_partof_0ded5dd38c (PartOf candida_albican candidiasis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "candlema is part of february", "pln": ["(: cnet_partof_c6809be209 (PartOf candlema february) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "candlenut is part of candlenut", "pln": ["(: cnet_partof_ca84afe197 (PartOf candlenut candlenut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "candlewick is part of candle", "pln": ["(: cnet_partof_524258b73e (PartOf candlewick candle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "canella is part of wild cinnamon", "pln": ["(: cnet_partof_c007f753b9 (PartOf canella wild_cinnamon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "canistel is part of canistel", "pln": ["(: cnet_partof_a78015e8f3 (PartOf canistel canistel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cannabis is part of cannabis", "pln": ["(: cnet_partof_088e63d11c (PartOf cannabis cannabis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cannae is part of punic war", "pln": ["(: cnet_partof_6b3bf00ad9 (PartOf cannae punic_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "canne is part of france", "pln": ["(: cnet_partof_2b3022d13a (PartOf canne france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cannon is part of animal leg", "pln": ["(: cnet_partof_3bc0d4e441 (PartOf cannon animal_leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cannon is part of ungulate", "pln": ["(: cnet_partof_3addc60cf8 (PartOf cannon ungulate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cannon is part of bomber", "pln": ["(: cnet_partof_2226f1a1dc (PartOf cannon bomber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cannon is part of tank", "pln": ["(: cnet_partof_db97b66581 (PartOf cannon tank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cannon is part of body armor", "pln": ["(: cnet_partof_888fcbed3f (PartOf cannon body_armor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cannon bone is part of cannon", "pln": ["(: cnet_partof_f88413b2e3 (PartOf cannon_bone cannon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "canopy is part of cockpit", "pln": ["(: cnet_partof_67ada2217c (PartOf canopy cockpit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "canopy is part of parachute", "pln": ["(: cnet_partof_b6eb0a1d3b (PartOf canopy parachute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cantabrian mountain is part of spain", "pln": ["(: cnet_partof_c1c0d4f37d (PartOf cantabrian_mountain spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cantaloup is part of cantaloupe", "pln": ["(: cnet_partof_4b2f464c64 (PartOf cantaloup cantaloupe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "canterbury is part of kent", "pln": ["(: cnet_partof_1006a760e9 (PartOf canterbury kent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "canthus is part of eye", "pln": ["(: cnet_partof_fbf54506de (PartOf canthus eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cantle is part of saddle", "pln": ["(: cnet_partof_c980ec8e63 (PartOf cantle saddle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "canto is part of poem", "pln": ["(: cnet_partof_30f6e66f01 (PartOf canto poem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "canva is part of ring", "pln": ["(: cnet_partof_435aa27508 (PartOf canva ring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "canyonland national park is part of utah", "pln": ["(: cnet_partof_5bce7d27b3 (PartOf canyonland_national_park utah) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "canyonside is part of canyon", "pln": ["(: cnet_partof_292eca06a2 (PartOf canyonside canyon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "cap is part of fungus", "pln": ["(: cnet_partof_09da1691d1 (PartOf cap fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "capacitor is part of circuit", "pln": ["(: cnet_partof_9e93be4c6f (PartOf capacitor circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "capacitor is part of distributor", "pln": ["(: cnet_partof_62ce107983 (PartOf capacitor distributor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cape ann is part of massachusett", "pln": ["(: cnet_partof_e57f06965d (PartOf cape_ann massachusett) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cape breton island is part of nova scotia", "pln": ["(: cnet_partof_0a62bae1c8 (PartOf cape_breton_island nova_scotia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cape canaveral is part of florida", "pln": ["(: cnet_partof_31d6f46660 (PartOf cape_canaveral florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cape cod is part of massachusett", "pln": ["(: cnet_partof_63a7ce8041 (PartOf cape_cod massachusett) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cape cod bay is part of massachusett bay", "pln": ["(: cnet_partof_2f194ce828 (PartOf cape_cod_bay massachusett_bay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cape cod canal is part of massachusett", "pln": ["(: cnet_partof_5f6324e41b (PartOf cape_cod_canal massachusett) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cape fear is part of north carolina", "pln": ["(: cnet_partof_8b4a69f84b (PartOf cape_fear north_carolina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cape fear river is part of north carolina", "pln": ["(: cnet_partof_b28cfb0fc0 (PartOf cape_fear_river north_carolina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "cape flattery is part of washington", "pln": ["(: cnet_partof_51957d23c3 (PartOf cape_flattery washington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "cape sable is part of everglades national park", "pln": ["(: cnet_partof_670001046c (PartOf cape_sable everglades_national_park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cape froward is part of chile", "pln": ["(: cnet_partof_15e3d75ef6 (PartOf cape_froward chile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cape girardeau is part of missouri", "pln": ["(: cnet_partof_ca2f774d79 (PartOf cape_girardeau missouri) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cape hattera is part of north carolina", "pln": ["(: cnet_partof_29f60c1d14 (PartOf cape_hattera north_carolina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cape horn is part of chile", "pln": ["(: cnet_partof_1569f0d513 (PartOf cape_horn chile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cape may is part of new jersey", "pln": ["(: cnet_partof_723488651e (PartOf cape_may new_jersey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cape passero is part of sicily", "pln": ["(: cnet_partof_f983364e4a (PartOf cape_passero sicily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cape province is part of south africa", "pln": ["(: cnet_partof_99d92afdf6 (PartOf cape_province south_africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cape sable is part of everglade national park", "pln": ["(: cnet_partof_9dca609c0b (PartOf cape_sable everglade_national_park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cape sable is part of nova scotia", "pln": ["(: cnet_partof_e82fa32a8e (PartOf cape_sable nova_scotia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cape town is part of south africa", "pln": ["(: cnet_partof_081f2d3e7f (PartOf cape_town south_africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cape trafalgar is part of spain", "pln": ["(: cnet_partof_881dec9c48 (PartOf cape_trafalgar spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cape verde is part of cape verde island", "pln": ["(: cnet_partof_e03dcbad71 (PartOf cape_verde cape_verde_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cape verde island is part of atlantic", "pln": ["(: cnet_partof_97d61ff51e (PartOf cape_verde_island atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cape york is part of australia", "pln": ["(: cnet_partof_999059e127 (PartOf cape_york australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cape york is part of cape york peninsula", "pln": ["(: cnet_partof_0858ad70b7 (PartOf cape_york cape_york_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cape york peninsula is part of australia", "pln": ["(: cnet_partof_01325d8ac2 (PartOf cape_york_peninsula australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cape york peninsula is part of queensland", "pln": ["(: cnet_partof_6bca38a1bf (PartOf cape_york_peninsula queensland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "caper is part of common caper", "pln": ["(: cnet_partof_5398867c3d (PartOf caper common_caper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "capillary is part of thermometer", "pln": ["(: cnet_partof_28fcee2b65 (PartOf capillary thermometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "capital is part of column", "pln": ["(: cnet_partof_504035ee7b (PartOf capital column) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "capital account is part of balance of payment", "pln": ["(: cnet_partof_3e2825b69c (PartOf capital_account balance_of_payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "capital of malaysia is part of malaysia", "pln": ["(: cnet_partof_ac49005f9b (PartOf capital_of_malaysia malaysia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "capitol is part of washington", "pln": ["(: cnet_partof_b3ff98f7b3 (PartOf capitol washington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "capitol hill is part of washington", "pln": ["(: cnet_partof_f48d4f03b6 (PartOf capitol_hill washington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "capitol reef national park is part of utah", "pln": ["(: cnet_partof_c3715a8ff9 (PartOf capitol_reef_national_park utah) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "caporetto is part of world war i", "pln": ["(: cnet_partof_9260755c3b (PartOf caporetto world_war_i) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cappadocia is part of asia minor", "pln": ["(: cnet_partof_a0c2ba87c7 (PartOf cappadocia asia_minor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "capri is part of campania", "pln": ["(: cnet_partof_004313c423 (PartOf capri campania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "capricornus is part of zodiac", "pln": ["(: cnet_partof_f16d5a0d0d (PartOf capricornus zodiac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "capsid is part of virion", "pln": ["(: cnet_partof_224b911b09 (PartOf capsid virion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "capstone is part of wall", "pln": ["(: cnet_partof_8749798cf0 (PartOf capstone wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "caption is part of illustration", "pln": ["(: cnet_partof_d5cfe3d104 (PartOf caption illustration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "capulin is part of capulin", "pln": ["(: cnet_partof_2ca86c225c (PartOf capulin capulin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "car is part of airship", "pln": ["(: cnet_partof_d72cf8ca95 (PartOf car airship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "car is part of elevator", "pln": ["(: cnet_partof_396deb9af4 (PartOf car elevator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "car battery is part of electrical system", "pln": ["(: cnet_partof_0d2510c14a (PartOf car_battery electrical_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "car door is part of car", "pln": ["(: cnet_partof_44c6e3e638 (PartOf car_door car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "car horn is part of car", "pln": ["(: cnet_partof_0bd9e6784b (PartOf car_horn car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "car mirror is part of car", "pln": ["(: cnet_partof_db35cfab55 (PartOf car_mirror car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "car seat is part of car", "pln": ["(: cnet_partof_c3581bc7e7 (PartOf car_seat car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "car wheel is part of motor vehicle", "pln": ["(: cnet_partof_f08d8ac483 (PartOf car_wheel motor_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "car window is part of car", "pln": ["(: cnet_partof_78c7bfea5c (PartOf car_window car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "caraca is part of venezuela", "pln": ["(: cnet_partof_09bdd6ceb7 (PartOf caraca venezuela) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carambola is part of carambola", "pln": ["(: cnet_partof_603a73317a (PartOf carambola carambola) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carapace is part of arthropod", "pln": ["(: cnet_partof_2335fb9076 (PartOf carapace arthropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carapace is part of mollusk", "pln": ["(: cnet_partof_0d362c0aaf (PartOf carapace mollusk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carapace is part of turtle", "pln": ["(: cnet_partof_760d1f29cf (PartOf carapace turtle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carat is part of gram", "pln": ["(: cnet_partof_34fb4aafab (PartOf carat gram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "caraway is part of caraway", "pln": ["(: cnet_partof_1680a5a9f0 (PartOf caraway caraway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "caraway seed is part of caraway", "pln": ["(: cnet_partof_34afd7d7a6 (PartOf caraway_seed caraway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carbondale is part of illinois", "pln": ["(: cnet_partof_b4a157afec (PartOf carbondale illinois) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carboniferous is part of paleozoic", "pln": ["(: cnet_partof_7756e5b51c (PartOf carboniferous paleozoic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carburator is part of car", "pln": ["(: cnet_partof_e656dada72 (PartOf carburator car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carburetor is part of fuel system", "pln": ["(: cnet_partof_97b40ce014 (PartOf carburetor fuel_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "card swipe is part of vending machine", "pln": ["(: cnet_partof_ce65bc9b86 (PartOf card_swipe vending_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cardamom is part of cardamom", "pln": ["(: cnet_partof_25117bc849 (PartOf cardamom cardamom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cardiac massage is part of cardiopulmonary resuscitation", "pln": ["(: cnet_partof_fac7985465 (PartOf cardiac_massage cardiopulmonary_resuscitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cardiac muscle is part of heart", "pln": ["(: cnet_partof_dd40c041f0 (PartOf cardiac_muscle heart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cardiac sphincter is part of esophagus", "pln": ["(: cnet_partof_c9f03fb57c (PartOf cardiac_sphincter esophagus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cardiff is part of wale", "pln": ["(: cnet_partof_febfa369ce (PartOf cardiff wale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cardiograph is part of cardiac monitor", "pln": ["(: cnet_partof_49145f54b7 (PartOf cardiograph cardiac_monitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cardoon is part of cardoon", "pln": ["(: cnet_partof_4044709a8b (PartOf cardoon cardoon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cargo area is part of ship", "pln": ["(: cnet_partof_9e98e48544 (PartOf cargo_area ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "caribbean island is part of caribbean", "pln": ["(: cnet_partof_291e75bdc5 (PartOf caribbean_island caribbean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carina is part of argo", "pln": ["(: cnet_partof_8e2ff7e267 (PartOf carina argo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carina fornicis is part of fornix", "pln": ["(: cnet_partof_5e0400f43b (PartOf carina_fornicis fornix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carissa plum is part of natal plum", "pln": ["(: cnet_partof_a3d125688b (PartOf carissa_plum natal_plum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carlsbad is part of new mexico", "pln": ["(: cnet_partof_08db904ba3 (PartOf carlsbad new_mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carlsbad cavern is part of new mexico", "pln": ["(: cnet_partof_e19c911479 (PartOf carlsbad_cavern new_mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carlsbad cavern national park is part of new mexico", "pln": ["(: cnet_partof_0f9baec3e7 (PartOf carlsbad_cavern_national_park new_mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carnegie mellon university is part of pittsburgh", "pln": ["(: cnet_partof_74115059fe (PartOf carnegie_mellon_university pittsburgh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carob is part of carob", "pln": ["(: cnet_partof_df6227da3f (PartOf carob carob) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carolina is part of south", "pln": ["(: cnet_partof_f214c12cfa (PartOf carolina south) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "caroline island is part of micronesia", "pln": ["(: cnet_partof_19edf34c96 (PartOf caroline_island micronesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carom is part of billiard", "pln": ["(: cnet_partof_8dbefad9fc (PartOf carom billiard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carom is part of pool", "pln": ["(: cnet_partof_f11f1e0406 (PartOf carom pool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carotid artery is part of neck", "pln": ["(: cnet_partof_c1998e79f2 (PartOf carotid_artery neck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "carp is part of domestic carp", "pln": ["(: cnet_partof_3a55100fb3 (PartOf carp domestic_carp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "cascades is part of coast range", "pln": ["(: cnet_partof_33ae2d2dd9 (PartOf cascades coast_range) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "cast is part of craps", "pln": ["(: cnet_partof_d7f8fbaa3b (PartOf cast craps) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carpal bone is part of wrist", "pln": ["(: cnet_partof_e98c0ea786 (PartOf carpal_bone wrist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carpal tunnel is part of wrist", "pln": ["(: cnet_partof_187c1c7333 (PartOf carpal_tunnel wrist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carpathian is part of poland", "pln": ["(: cnet_partof_c4613171db (PartOf carpathian poland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carpathian is part of romania", "pln": ["(: cnet_partof_b1827aefba (PartOf carpathian romania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carpathian is part of slovakia", "pln": ["(: cnet_partof_1fd7450c47 (PartOf carpathian slovakia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carpathian is part of ukraine", "pln": ["(: cnet_partof_7baddca280 (PartOf carpathian ukraine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carpel is part of flower", "pln": ["(: cnet_partof_6374705ade (PartOf carpel flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carpospore is part of red algae", "pln": ["(: cnet_partof_14b7d7b606 (PartOf carpospore red_algae) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carrel is part of library", "pln": ["(: cnet_partof_08dd6519aa (PartOf carrel library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carriage is part of lathe", "pln": ["(: cnet_partof_3aa2125535 (PartOf carriage lathe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carriage is part of typewriter", "pln": ["(: cnet_partof_e337cbbf8e (PartOf carriage typewriter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carriageway is part of expressway", "pln": ["(: cnet_partof_56b77f0751 (PartOf carriageway expressway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carrot is part of carrot", "pln": ["(: cnet_partof_3af50642fe (PartOf carrot carrot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carson city is part of nevada", "pln": ["(: cnet_partof_d09574babb (PartOf carson_city nevada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cartagena is part of colombia", "pln": ["(: cnet_partof_eed2a22e6d (PartOf cartagena colombia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cartagena is part of spain", "pln": ["(: cnet_partof_d1087a3902 (PartOf cartagena spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "carthage is part of phoenicia", "pln": ["(: cnet_partof_3d736cbe28 (PartOf carthage phoenicia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cartoon is part of publication", "pln": ["(: cnet_partof_a4e09bf87a (PartOf cartoon publication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cartridge is part of record player", "pln": ["(: cnet_partof_7c0c3ab0ac (PartOf cartridge record_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cartridge ejector is part of gun", "pln": ["(: cnet_partof_10ef121017 (PartOf cartridge_ejector gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cartridge extractor is part of gun", "pln": ["(: cnet_partof_cbde88f230 (PartOf cartridge_extractor gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cartridge holder is part of gun", "pln": ["(: cnet_partof_986bdd53a6 (PartOf cartridge_holder gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cartwheel is part of cart", "pln": ["(: cnet_partof_b54c2efcf9 (PartOf cartwheel cart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "casablanca is part of morocco", "pln": ["(: cnet_partof_93a554cdc3 (PartOf casablanca morocco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cascade is part of coast range", "pln": ["(: cnet_partof_20bf141be2 (PartOf cascade coast_range) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cascade is part of northwest", "pln": ["(: cnet_partof_7ac6fced53 (PartOf cascade northwest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cascara is part of cascara buckthorn", "pln": ["(: cnet_partof_8e51dfc9bf (PartOf cascara cascara_buckthorn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cascarilla bark is part of cascarilla", "pln": ["(: cnet_partof_bb89865f27 (PartOf cascarilla_bark cascarilla) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cashew is part of cashew", "pln": ["(: cnet_partof_11596dd9f5 (PartOf cashew cashew) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "casing is part of doorway", "pln": ["(: cnet_partof_9b08945528 (PartOf casing doorway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "casing is part of pneumatic tire", "pln": ["(: cnet_partof_53db5f989e (PartOf casing pneumatic_tire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "casing is part of window", "pln": ["(: cnet_partof_1eef5773bb (PartOf casing window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "casper is part of wyoming", "pln": ["(: cnet_partof_e32d5201ad (PartOf casper wyoming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "caspian is part of iran", "pln": ["(: cnet_partof_89d1249fd3 (PartOf caspian iran) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "caspian is part of soviet union", "pln": ["(: cnet_partof_0b304cff95 (PartOf caspian soviet_union) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "casque is part of body armor", "pln": ["(: cnet_partof_1e2064204c (PartOf casque body_armor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cassava is part of bitter cassava", "pln": ["(: cnet_partof_7bf2312115 (PartOf cassava bitter_cassava) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cassette tape is part of cassette", "pln": ["(: cnet_partof_c715722c79 (PartOf cassette_tape cassette) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cassia bark is part of cassia", "pln": ["(: cnet_partof_6fecb40216 (PartOf cassia_bark cassia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cast is part of crap", "pln": ["(: cnet_partof_a791b59488 (PartOf cast crap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "caste is part of colony", "pln": ["(: cnet_partof_97c6149a5f (PartOf caste colony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "castile is part of spain", "pln": ["(: cnet_partof_0097702f6f (PartOf castile spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "castor bean is part of castor oil plant", "pln": ["(: cnet_partof_75aff67b3c (PartOf castor_bean castor_oil_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "castry is part of saint lucia", "pln": ["(: cnet_partof_e6c0a7f5c9 (PartOf castry saint_lucia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "casualty care research center is part of department of defense", "pln": ["(: cnet_partof_ac8ff75860 (PartOf casualty_care_research_center department_of_defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "catabolism is part of metabolism", "pln": ["(: cnet_partof_8603997b08 (PartOf catabolism metabolism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cataloged procedure is part of library", "pln": ["(: cnet_partof_6b30c31167 (PartOf cataloged_procedure library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "catalonia is part of spain", "pln": ["(: cnet_partof_524b32fb5f (PartOf catalonia spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "catalytic cracker is part of oil refinery", "pln": ["(: cnet_partof_2934547fa9 (PartOf catalytic_cracker oil_refinery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cataract canyon is part of arizona", "pln": ["(: cnet_partof_87329fb320 (PartOf cataract_canyon arizona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "catatonia is part of catatonic schizophrenia", "pln": ["(: cnet_partof_c72ec9aea2 (PartOf catatonia catatonic_schizophrenia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cathedra is part of cathedral", "pln": ["(: cnet_partof_c7b383cb0c (PartOf cathedra cathedral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cathode is part of electrolytic cell", "pln": ["(: cnet_partof_aef777ac33 (PartOf cathode electrolytic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "cathode is part of storage battery", "pln": ["(: cnet_partof_a954475d4d (PartOf cathode storage_battery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "catskills is part of appalachians", "pln": ["(: cnet_partof_501353712e (PartOf catskills appalachians) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cathode is part of tube", "pln": ["(: cnet_partof_c59e9cea37 (PartOf cathode tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cathode is part of voltaic cell", "pln": ["(: cnet_partof_42385f2001 (PartOf cathode voltaic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cathode ray tube is part of computer", "pln": ["(: cnet_partof_c857fb7e14 (PartOf cathode_ray_tube computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cathode ray tube is part of oscilloscope", "pln": ["(: cnet_partof_74f16cdb9c (PartOf cathode_ray_tube oscilloscope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cathode ray tube is part of television", "pln": ["(: cnet_partof_b12c0b3309 (PartOf cathode_ray_tube television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "catskill is part of appalachian", "pln": ["(: cnet_partof_f9a3150336 (PartOf catskill appalachian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "catskill is part of new york", "pln": ["(: cnet_partof_28b4bdca26 (PartOf catskill new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "caucasus is part of caucasia", "pln": ["(: cnet_partof_29635eecb7 (PartOf caucasus caucasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "caudal appendage is part of vertebrate", "pln": ["(: cnet_partof_0dc82ddd05 (PartOf caudal_appendage vertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "caudate nucleus is part of corpus striatum", "pln": ["(: cnet_partof_d6de264490 (PartOf caudate_nucleus corpus_striatum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "caul is part of placenta", "pln": ["(: cnet_partof_c286c236a0 (PartOf caul placenta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cauliflower is part of cauliflower", "pln": ["(: cnet_partof_caa7be2c93 (PartOf cauliflower cauliflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cavity is part of body", "pln": ["(: cnet_partof_bd83048960 (PartOf cavity body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cayman island is part of west indy", "pln": ["(: cnet_partof_6644c48703 (PartOf cayman_island west_indy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cd drive is part of cd player", "pln": ["(: cnet_partof_847abc6b48 (PartOf cd_drive cd_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cebu is part of philippine", "pln": ["(: cnet_partof_75c41990c4 (PartOf cebu philippine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cecum is part of large intestine", "pln": ["(: cnet_partof_15c76f14bd (PartOf cecum large_intestine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cedar rapid is part of iowa", "pln": ["(: cnet_partof_5ce722720a (PartOf cedar_rapid iowa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ceiling is part of hallway", "pln": ["(: cnet_partof_7dd014f108 (PartOf ceiling hallway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ceiling is part of room", "pln": ["(: cnet_partof_315cf0e5ae (PartOf ceiling room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "celebe is part of indonesia", "pln": ["(: cnet_partof_bd39895113 (PartOf celebe indonesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "celeriac is part of celeriac", "pln": ["(: cnet_partof_3b7edcce40 (PartOf celeriac celeriac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "celery is part of celery", "pln": ["(: cnet_partof_eea1e21aca (PartOf celery celery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "celery seed is part of celery", "pln": ["(: cnet_partof_32bcb9ac13 (PartOf celery_seed celery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "celery stick is part of celery", "pln": ["(: cnet_partof_ed124e7c9e (PartOf celery_stick celery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "celestial body is part of universe", "pln": ["(: cnet_partof_eeef3ee353 (PartOf celestial_body universe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "celestial point is part of celestial sphere", "pln": ["(: cnet_partof_35b8bc3f53 (PartOf celestial_point celestial_sphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cell is part of cellblock", "pln": ["(: cnet_partof_296e683cb1 (PartOf cell cellblock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cell is part of convent", "pln": ["(: cnet_partof_3f20651c44 (PartOf cell convent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cell is part of monastery", "pln": ["(: cnet_partof_17841fafbd (PartOf cell monastery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "cell is part of organism", "pln": ["(: cnet_partof_fd0ea0889e (PartOf cell organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cell wall is part of cell", "pln": ["(: cnet_partof_b7735e0136 (PartOf cell_wall cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cell wall is part of plant cell", "pln": ["(: cnet_partof_b56f489fe0 (PartOf cell_wall plant_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cellblock is part of prison", "pln": ["(: cnet_partof_1ad72add28 (PartOf cellblock prison) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "celtuce is part of celtuce", "pln": ["(: cnet_partof_ac4381e25f (PartOf celtuce celtuce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cembra nut is part of swiss pine", "pln": ["(: cnet_partof_14dcd6cc55 (PartOf cembra_nut swiss_pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cementum is part of root", "pln": ["(: cnet_partof_dd9c0dfe3c (PartOf cementum root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cenozoic is part of phanerozoic", "pln": ["(: cnet_partof_ef01b11474 (PartOf cenozoic phanerozoic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cent is part of birr", "pln": ["(: cnet_partof_549aecc1a5 (PartOf cent birr) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cent is part of british shilling", "pln": ["(: cnet_partof_7b09b430f1 (PartOf cent british_shilling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cent is part of dollar", "pln": ["(: cnet_partof_ce8fb085f1 (PartOf cent dollar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cent is part of guilder", "pln": ["(: cnet_partof_b6ce0709ec (PartOf cent guilder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cent is part of leone", "pln": ["(: cnet_partof_4e71cb6b56 (PartOf cent leone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cent is part of lilangeni", "pln": ["(: cnet_partof_70d1008666 (PartOf cent lilangeni) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cent is part of mauritian rupee", "pln": ["(: cnet_partof_17da482a2e (PartOf cent mauritian_rupee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cent is part of rand", "pln": ["(: cnet_partof_01f2aea4e9 (PartOf cent rand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cent is part of seychelle rupee", "pln": ["(: cnet_partof_15635d350d (PartOf cent seychelle_rupee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centavo is part of austral", "pln": ["(: cnet_partof_ca54c3b32b (PartOf centavo austral) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "centavo is part of boliviano", "pln": ["(: cnet_partof_e69a1e03e4 (PartOf centavo boliviano) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centavo is part of cape verde escudo", "pln": ["(: cnet_partof_d7d2a796d7 (PartOf centavo cape_verde_escudo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "centavo is part of colombian peso", "pln": ["(: cnet_partof_f9e1e48c7d (PartOf centavo colombian_peso) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centavo is part of colon", "pln": ["(: cnet_partof_fecdeccf4b (PartOf centavo colon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centavo is part of cordoba", "pln": ["(: cnet_partof_bc97abf5d8 (PartOf centavo cordoba) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centavo is part of cuban peso", "pln": ["(: cnet_partof_7e1880596f (PartOf centavo cuban_peso) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centavo is part of dobra", "pln": ["(: cnet_partof_51571bdfab (PartOf centavo dobra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centavo is part of dominican peso", "pln": ["(: cnet_partof_22d14fd1fd (PartOf centavo dominican_peso) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "centavo is part of guinea bissau peso", "pln": ["(: cnet_partof_026a6bf515 (PartOf centavo guinea_bissau_peso) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centavo is part of lempira", "pln": ["(: cnet_partof_7738d6a868 (PartOf centavo lempira) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centavo is part of metical", "pln": ["(: cnet_partof_884a4094c6 (PartOf centavo metical) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centavo is part of mexican peso", "pln": ["(: cnet_partof_0ffbdf9e0c (PartOf centavo mexican_peso) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centavo is part of philippine peso", "pln": ["(: cnet_partof_e96baa3090 (PartOf centavo philippine_peso) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "centavo is part of portuguese escudo", "pln": ["(: cnet_partof_14c75d43e6 (PartOf centavo portuguese_escudo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "center for disease control and prevention is part of department of health and human services", "pln": ["(: cnet_partof_4174601217 (PartOf center_for_disease_control_and_prevention department_of_health_and_human_services) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centavo is part of quetzal", "pln": ["(: cnet_partof_9bf066b746 (PartOf centavo quetzal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centavo is part of real", "pln": ["(: cnet_partof_7c43f14d0c (PartOf centavo real) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centavo is part of sucre", "pln": ["(: cnet_partof_b223b72a14 (PartOf centavo sucre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centavo is part of uruguayan peso", "pln": ["(: cnet_partof_d3aa84a55e (PartOf centavo uruguayan_peso) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "center field is part of outfield", "pln": ["(: cnet_partof_1898ae5b94 (PartOf center_field outfield) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "center for disease control and prevention is part of atlanta", "pln": ["(: cnet_partof_b1aef99ec3 (PartOf center_for_disease_control_and_prevention atlanta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "center for disease control and prevention is part of department of health and human service", "pln": ["(: cnet_partof_bc97a5e5da (PartOf center_for_disease_control_and_prevention department_of_health_and_human_service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "center spread is part of magazine", "pln": ["(: cnet_partof_52622c1423 (PartOf center_spread magazine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centerboard is part of sailboat", "pln": ["(: cnet_partof_9ec07f7e18 (PartOf centerboard sailboat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centesimo is part of balboa", "pln": ["(: cnet_partof_4b5face5c4 (PartOf centesimo balboa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centesimo is part of chilean peso", "pln": ["(: cnet_partof_13373523cd (PartOf centesimo chilean_peso) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centesimo is part of lira", "pln": ["(: cnet_partof_d840be7aed (PartOf centesimo lira) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "centesimo is part of uruguayan peso", "pln": ["(: cnet_partof_66462e8113 (PartOf centesimo uruguayan_peso) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centiliter is part of deciliter", "pln": ["(: cnet_partof_78e6c02e36 (PartOf centiliter deciliter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centime is part of algerian dinar", "pln": ["(: cnet_partof_2a5921a029 (PartOf centime algerian_dinar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centime is part of belgian franc", "pln": ["(: cnet_partof_09903aa15a (PartOf centime belgian_franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centime is part of burkina faso franc", "pln": ["(: cnet_partof_8037eaff12 (PartOf centime burkina_faso_franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centime is part of burundi franc", "pln": ["(: cnet_partof_d0de5edc2b (PartOf centime burundi_franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centime is part of cameroon franc", "pln": ["(: cnet_partof_8cd7a460d3 (PartOf centime cameroon_franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centime is part of chadian franc", "pln": ["(: cnet_partof_d127a58953 (PartOf centime chadian_franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centime is part of congo franc", "pln": ["(: cnet_partof_eac5cb18d1 (PartOf centime congo_franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centime is part of franc", "pln": ["(: cnet_partof_aab037e157 (PartOf centime franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centime is part of gabon franc", "pln": ["(: cnet_partof_10fb0ed8cb (PartOf centime gabon_franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centime is part of ivory coast franc", "pln": ["(: cnet_partof_c8db67ce48 (PartOf centime ivory_coast_franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centime is part of luxembourg franc", "pln": ["(: cnet_partof_be0948e269 (PartOf centime luxembourg_franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centime is part of mali franc", "pln": ["(: cnet_partof_d20633616f (PartOf centime mali_franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "centime is part of moroccan dirham", "pln": ["(: cnet_partof_4958ab1527 (PartOf centime moroccan_dirham) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centime is part of niger franc", "pln": ["(: cnet_partof_2591a1d5e0 (PartOf centime niger_franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centime is part of rwanda franc", "pln": ["(: cnet_partof_b93c8dec35 (PartOf centime rwanda_franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "centime is part of senegalese franc", "pln": ["(: cnet_partof_550227ac21 (PartOf centime senegalese_franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centime is part of swiss franc", "pln": ["(: cnet_partof_83725bcdfc (PartOf centime swiss_franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centime is part of togo franc", "pln": ["(: cnet_partof_0b18285cb1 (PartOf centime togo_franc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centimeter is part of decimeter", "pln": ["(: cnet_partof_87fa34cb45 (PartOf centimeter decimeter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centimo is part of bolivar", "pln": ["(: cnet_partof_fbaf4be224 (PartOf centimo bolivar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centimo is part of colon", "pln": ["(: cnet_partof_44f462c214 (PartOf centimo colon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centimo is part of guarani", "pln": ["(: cnet_partof_2a107c91be (PartOf centimo guarani) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centimo is part of peseta", "pln": ["(: cnet_partof_b0aa6af431 (PartOf centimo peseta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centner is part of hundredweight", "pln": ["(: cnet_partof_661e6c561e (PartOf centner hundredweight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "central is part of telephone system", "pln": ["(: cnet_partof_3e28c9b4b1 (PartOf central telephone_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "central african republic is part of africa", "pln": ["(: cnet_partof_b2beeb5829 (PartOf central_african_republic africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "central america is part of america", "pln": ["(: cnet_partof_e8248805f1 (PartOf central_america america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "central america is part of latin america", "pln": ["(: cnet_partof_284c7545d9 (PartOf central_america latin_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "central america is part of north america", "pln": ["(: cnet_partof_3e245f1a3d (PartOf central_america north_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "central american country is part of central america", "pln": ["(: cnet_partof_3d09cdfb27 (PartOf central_american_country central_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "central artery of retina is part of eye", "pln": ["(: cnet_partof_6fe6d0b969 (PartOf central_artery_of_retina eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "central nervous system is part of nervous system", "pln": ["(: cnet_partof_1eb4606a63 (PartOf central_nervous_system nervous_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "central park is part of manhattan", "pln": ["(: cnet_partof_c99d88c9c0 (PartOf central_park manhattan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "central processing unit is part of computer", "pln": ["(: cnet_partof_274257bb98 (PartOf central_processing_unit computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centre is part of france", "pln": ["(: cnet_partof_5bd5780650 (PartOf centre france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centromere is part of chromosome", "pln": ["(: cnet_partof_ade01851a2 (PartOf centromere chromosome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "centrum is part of vertebra", "pln": ["(: cnet_partof_28da333a6b (PartOf centrum vertebra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "century is part of millennium", "pln": ["(: cnet_partof_6bef0c4c35 (PartOf century millennium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cephalic vein is part of arm", "pln": ["(: cnet_partof_aea53b5c9f (PartOf cephalic_vein arm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cerebellar artery is part of cerebellum", "pln": ["(: cnet_partof_efa953d4d5 (PartOf cerebellar_artery cerebellum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cerebellar hemisphere is part of cerebellum", "pln": ["(: cnet_partof_81b00b9164 (PartOf cerebellar_hemisphere cerebellum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cerebellum is part of brain", "pln": ["(: cnet_partof_a7d4f607ca (PartOf cerebellum brain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cerebellum is part of hindbrain", "pln": ["(: cnet_partof_31c0953035 (PartOf cerebellum hindbrain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cerebral cortex is part of cerebrum", "pln": ["(: cnet_partof_aaca9f64f3 (PartOf cerebral_cortex cerebrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cerebral hemorrhage is part of stroke", "pln": ["(: cnet_partof_c573fbfccc (PartOf cerebral_hemorrhage stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cerebrum is part of telencephalon", "pln": ["(: cnet_partof_fe11710327 (PartOf cerebrum telencephalon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ceriman is part of ceriman", "pln": ["(: cnet_partof_e43e1dc7a5 (PartOf ceriman ceriman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "certificate of incorporation is part of charter", "pln": ["(: cnet_partof_a151418d7a (PartOf certificate_of_incorporation charter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cervical artery is part of neck", "pln": ["(: cnet_partof_d0e9c89f27 (PartOf cervical_artery neck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cervical smear is part of pap test", "pln": ["(: cnet_partof_7f55be2ca0 (PartOf cervical_smear pap_test) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cervical vertebra is part of neck", "pln": ["(: cnet_partof_4dee02a0a1 (PartOf cervical_vertebra neck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "cervix is part of uterus", "pln": ["(: cnet_partof_a3862a33b2 (PartOf cervix uterus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ceylon is part of indian ocean", "pln": ["(: cnet_partof_78c5177b2b (PartOf ceylon indian_ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chablis is part of france", "pln": ["(: cnet_partof_86f4136087 (PartOf chablis france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chad is part of africa", "pln": ["(: cnet_partof_22fe0d6799 (PartOf chad africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chain is part of bicycle", "pln": ["(: cnet_partof_1b046d0af8 (PartOf chain bicycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chain is part of chain printer", "pln": ["(: cnet_partof_b156684e8d (PartOf chain chain_printer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chain is part of chain tong", "pln": ["(: cnet_partof_a0ba732027 (PartOf chain chain_tong) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "chain is part of molecule", "pln": ["(: cnet_partof_ac462f04c9 (PartOf chain molecule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chair is part of funiture", "pln": ["(: cnet_partof_4f667e17a0 (PartOf chair funiture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chait is part of hindu calendar", "pln": ["(: cnet_partof_2691aaaa1d (PartOf chait hindu_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "chalaza is part of egg", "pln": ["(: cnet_partof_34d37b2bc2 (PartOf chalaza egg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chalaza is part of ovule", "pln": ["(: cnet_partof_199b1bccd7 (PartOf chalaza ovule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chalcedon is part of istanbul", "pln": ["(: cnet_partof_cec7f050b5 (PartOf chalcedon istanbul) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chaldea is part of iraq", "pln": ["(: cnet_partof_299fb38a47 (PartOf chaldea iraq) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chaldea is part of mesopotamia", "pln": ["(: cnet_partof_27e5d62095 (PartOf chaldea mesopotamia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "champagne is part of france", "pln": ["(: cnet_partof_b805bac8ee (PartOf champagne france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "champaign is part of illinois", "pln": ["(: cnet_partof_b1f54c8185 (PartOf champaign illinois) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "champ elysee is part of paris", "pln": ["(: cnet_partof_3657b9c02e (PartOf champ_elysee paris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chancel is part of church", "pln": ["(: cnet_partof_c42004c38a (PartOf chancel church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chancellorsville is part of american civil war", "pln": ["(: cnet_partof_d207e07a19 (PartOf chancellorsville american_civil_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chancellorsville is part of virginia", "pln": ["(: cnet_partof_493106ebaf (PartOf chancellorsville virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "chancre is part of syphilis", "pln": ["(: cnet_partof_b25c7aed05 (PartOf chancre syphilis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chancre is part of tularemia", "pln": ["(: cnet_partof_fb18b35426 (PartOf chancre tularemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chang jiang is part of china", "pln": ["(: cnet_partof_0f03c11f25 (PartOf chang_jiang china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "change slot is part of vending machine", "pln": ["(: cnet_partof_399ff7f940 (PartOf change_slot vending_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "changtzu is part of himalaya", "pln": ["(: cnet_partof_05b4a1f547 (PartOf changtzu himalaya) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "changtzu is part of nepal", "pln": ["(: cnet_partof_c75c7023dc (PartOf changtzu nepal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "changtzu is part of tibet", "pln": ["(: cnet_partof_338e61769e (PartOf changtzu tibet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "channel island is part of british isle", "pln": ["(: cnet_partof_727d7f1115 (PartOf channel_island british_isle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "channel island is part of english channel", "pln": ["(: cnet_partof_d4e66bf39a (PartOf channel_island english_channel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "channel island national park is part of california", "pln": ["(: cnet_partof_d1acd38049 (PartOf channel_island_national_park california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chanter is part of bagpipe", "pln": ["(: cnet_partof_587b26ffbd (PartOf chanter bagpipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "chao phraya is part of thailand", "pln": ["(: cnet_partof_f2e3a8cd2a (PartOf chao_phraya thailand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "charade is part of charades", "pln": ["(: cnet_partof_c9be82c612 (PartOf charade charades) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chapel hill is part of north carolina", "pln": ["(: cnet_partof_33ea44b546 (PartOf chapel_hill north_carolina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chapter is part of book", "pln": ["(: cnet_partof_3255dd84b8 (PartOf chapter book) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chapter is part of of book", "pln": ["(: cnet_partof_ca55a5bd8f (PartOf chapter of_book) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chapter is part of text", "pln": ["(: cnet_partof_5cc464b73d (PartOf chapter text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chapultepec is part of mexican war", "pln": ["(: cnet_partof_89ed997ef8 (PartOf chapultepec mexican_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "character is part of personality", "pln": ["(: cnet_partof_525eab7e3b (PartOf character personality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "characteristic is part of nature", "pln": ["(: cnet_partof_1172a229bb (PartOf characteristic nature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "charade is part of charade", "pln": ["(: cnet_partof_eb331a2307 (PartOf charade charade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chard is part of chard", "pln": ["(: cnet_partof_dda9ed1e6f (PartOf chard chard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "charge is part of indictment", "pln": ["(: cnet_partof_67d7faaa35 (PartOf charge indictment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "charleroi is part of belgium", "pln": ["(: cnet_partof_5bd381d0cf (PartOf charleroi belgium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "charle is part of massachusett", "pln": ["(: cnet_partof_26be37af7c (PartOf charle massachusett) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "charleston is part of south carolina", "pln": ["(: cnet_partof_fedfdd9346 (PartOf charleston south_carolina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "charleston is part of west virginia", "pln": ["(: cnet_partof_9c1fc39249 (PartOf charleston west_virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "charlestown is part of boston", "pln": ["(: cnet_partof_e43c7802d1 (PartOf charlestown boston) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "charlestown navy yard is part of boston", "pln": ["(: cnet_partof_90badad398 (PartOf charlestown_navy_yard boston) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "charlotte is part of north carolina", "pln": ["(: cnet_partof_44c7c44f44 (PartOf charlotte north_carolina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "charlottetown is part of prince edward island", "pln": ["(: cnet_partof_39222e3aed (PartOf charlottetown prince_edward_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chartre is part of france", "pln": ["(: cnet_partof_5a5fd54b47 (PartOf chartre france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chartre cathedral is part of chartre", "pln": ["(: cnet_partof_048151d9f1 (PartOf chartre_cathedral chartre) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chassis is part of motor vehicle", "pln": ["(: cnet_partof_50d8e41648 (PartOf chassis motor_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chattahoochee is part of georgia", "pln": ["(: cnet_partof_b9bdd6d70c (PartOf chattahoochee georgia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chattanooga is part of american civil war", "pln": ["(: cnet_partof_f08e47e937 (PartOf chattanooga american_civil_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chattanooga is part of tennessee", "pln": ["(: cnet_partof_61cca48c8d (PartOf chattanooga tennessee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chechnya is part of russia", "pln": ["(: cnet_partof_53e9ab1646 (PartOf chechnya russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "check is part of ice hockey", "pln": ["(: cnet_partof_9f52ebb48c (PartOf check ice_hockey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "checkerboard is part of checker", "pln": ["(: cnet_partof_fee84c9c41 (PartOf checkerboard checker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "checkerboard is part of chess", "pln": ["(: cnet_partof_49e5a5f97f (PartOf checkerboard chess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cheddar is part of england", "pln": ["(: cnet_partof_48d29db7c1 (PartOf cheddar england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cheek is part of face", "pln": ["(: cnet_partof_90db560ab7 (PartOf cheek face) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cheek muscle is part of cheek", "pln": ["(: cnet_partof_10510a8811 (PartOf cheek_muscle cheek) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cheekbone is part of skull", "pln": ["(: cnet_partof_9034515a7c (PartOf cheekbone skull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cheekpiece is part of bridle", "pln": ["(: cnet_partof_dc83ef4617 (PartOf cheekpiece bridle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cheerfulness is part of disposition", "pln": ["(: cnet_partof_93e2064b69 (PartOf cheerfulness disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cheese rind is part of cheese", "pln": ["(: cnet_partof_6a62ee19ba (PartOf cheese_rind cheese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "chelyabinsk is part of russia", "pln": ["(: cnet_partof_66b29539fa (PartOf chelyabinsk russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chemical notation is part of formula", "pln": ["(: cnet_partof_a8bab01f32 (PartOf chemical_notation formula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chemnitz is part of germany", "pln": ["(: cnet_partof_6cef59ea43 (PartOf chemnitz germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chennai is part of india", "pln": ["(: cnet_partof_5cce5cd29e (PartOf chennai india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cherbourg is part of france", "pln": ["(: cnet_partof_e89c579149 (PartOf cherbourg france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cherepovet is part of russia", "pln": ["(: cnet_partof_e322db2cdd (PartOf cherepovet russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "cherimoya is part of cherimoya", "pln": ["(: cnet_partof_5972a4dfde (PartOf cherimoya cherimoya) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chernobyl is part of ukraine", "pln": ["(: cnet_partof_07bbad246a (PartOf chernobyl ukraine) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cherry is part of cherry", "pln": ["(: cnet_partof_e5b0a2e035 (PartOf cherry cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cherry tomato is part of cherry tomato", "pln": ["(: cnet_partof_cdef28426e (PartOf cherry_tomato cherry_tomato) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "chervil is part of chervil", "pln": ["(: cnet_partof_43c5e06739 (PartOf chervil chervil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chesapeake bay is part of atlantic", "pln": ["(: cnet_partof_63074b0c97 (PartOf chesapeake_bay atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chesapeake bay is part of maryland", "pln": ["(: cnet_partof_f26a2daabf (PartOf chesapeake_bay maryland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chesapeake bay is part of virginia", "pln": ["(: cnet_partof_a5b1115118 (PartOf chesapeake_bay virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chess move is part of chess", "pln": ["(: cnet_partof_54ae4dba91 (PartOf chess_move chess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chessboard is part of chess set", "pln": ["(: cnet_partof_d3347b2f79 (PartOf chessboard chess_set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chessman is part of chess set", "pln": ["(: cnet_partof_e44e52184b (PartOf chessman chess_set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chest is part of person", "pln": ["(: cnet_partof_ab70524333 (PartOf chest person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chest cavity is part of thorax", "pln": ["(: cnet_partof_8e0ccb6046 (PartOf chest_cavity thorax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chester is part of pennsylvania", "pln": ["(: cnet_partof_1d92a6d879 (PartOf chester pennsylvania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chestnut is part of chestnut", "pln": ["(: cnet_partof_8d9cc01754 (PartOf chestnut chestnut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chetrum is part of ngultrum", "pln": ["(: cnet_partof_75d3a35d88 (PartOf chetrum ngultrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cheviot hill is part of england", "pln": ["(: cnet_partof_50767fc822 (PartOf cheviot_hill england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cheviot hill is part of scotland", "pln": ["(: cnet_partof_67f40e4d55 (PartOf cheviot_hill scotland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chew is part of eating", "pln": ["(: cnet_partof_100240a633 (PartOf chew eating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cheyenne is part of wyoming", "pln": ["(: cnet_partof_ea9a92d9ef (PartOf cheyenne wyoming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chicago is part of illinois", "pln": ["(: cnet_partof_9e13e044c7 (PartOf chicago illinois) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chickamauga is part of american civil war", "pln": ["(: cnet_partof_3ae5d2ad2b (PartOf chickamauga american_civil_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chicken is part of chicken", "pln": ["(: cnet_partof_2a10af4eef (PartOf chicken chicken) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chicken wing is part of chicken", "pln": ["(: cnet_partof_75fd596bec (PartOf chicken_wing chicken) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chickpea is part of chickpea", "pln": ["(: cnet_partof_6f2488f00b (PartOf chickpea chickpea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chicory is part of chicory", "pln": ["(: cnet_partof_b42053cea2 (PartOf chicory chicory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chicory escarole is part of endive", "pln": ["(: cnet_partof_e68e3bece2 (PartOf chicory_escarole endive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chihuahua is part of chihuahua", "pln": ["(: cnet_partof_569e0f689f (PartOf chihuahua chihuahua) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chihuahuan desert is part of arizona", "pln": ["(: cnet_partof_b322b86325 (PartOf chihuahuan_desert arizona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chihuahuan desert is part of mexico", "pln": ["(: cnet_partof_92d21cbf22 (PartOf chihuahuan_desert mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chihuahuan desert is part of new mexico", "pln": ["(: cnet_partof_e2ee74993c (PartOf chihuahuan_desert new_mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chihuahuan desert is part of texa", "pln": ["(: cnet_partof_39a39d8176 (PartOf chihuahuan_desert texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "child s body is part of child", "pln": ["(: cnet_partof_5907930c15 (PartOf child_s_body child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chile is part of south america", "pln": ["(: cnet_partof_ebdafe7ce0 (PartOf chile south_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "chili is part of cayenne", "pln": ["(: cnet_partof_9734dc6227 (PartOf chili cayenne) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chiloe is part of chile", "pln": ["(: cnet_partof_787644b89a (PartOf chiloe chile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chimborazo is part of ande", "pln": ["(: cnet_partof_7072ed4bba (PartOf chimborazo ande) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chimborazo is part of ecuador", "pln": ["(: cnet_partof_d1131fd6a4 (PartOf chimborazo ecuador) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chimneystack is part of chimney", "pln": ["(: cnet_partof_504ec9c23c (PartOf chimneystack chimney) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chin is part of face", "pln": ["(: cnet_partof_3a5dd9f8f3 (PartOf chin face) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chin rest is part of violin", "pln": ["(: cnet_partof_004a0a5d1a (PartOf chin_rest violin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "china is part of asia", "pln": ["(: cnet_partof_0a317983fb (PartOf china asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chincapin is part of allegheny chinkapin", "pln": ["(: cnet_partof_ac605aabc6 (PartOf chincapin allegheny_chinkapin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "chincapin is part of ozark chinkapin", "pln": ["(: cnet_partof_3f38a3eecf (PartOf chincapin ozark_chinkapin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chinese anise is part of star anise", "pln": ["(: cnet_partof_75289e96b1 (PartOf chinese_anise star_anise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chinese wall is part of china", "pln": ["(: cnet_partof_e651da9e7f (PartOf chinese_wall china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chinook salmon is part of chinook", "pln": ["(: cnet_partof_0f1d9350a9 (PartOf chinook_salmon chinook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chio is part of greece", "pln": ["(: cnet_partof_ef490f416c (PartOf chio greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "chip is part of computer", "pln": ["(: cnet_partof_73b0191156 (PartOf chip computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "chop suey greens is part of chop suey greens", "pln": ["(: cnet_partof_8c87b8dd37 (PartOf chop_suey_greens chop_suey_greens) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chisholm trail is part of kansa", "pln": ["(: cnet_partof_827e8f0207 (PartOf chisholm_trail kansa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chisholm trail is part of texa", "pln": ["(: cnet_partof_f809d5c884 (PartOf chisholm_trail texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chittagong is part of bangladesh", "pln": ["(: cnet_partof_f8b2e6fda3 (PartOf chittagong bangladesh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chive is part of chive", "pln": ["(: cnet_partof_5b3e9aa45f (PartOf chive chive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "choir is part of chancel", "pln": ["(: cnet_partof_a8c264fb78 (PartOf choir chancel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "choke is part of circuit", "pln": ["(: cnet_partof_ab390c3246 (PartOf choke circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "choke is part of fuel system", "pln": ["(: cnet_partof_f6c412e840 (PartOf choke fuel_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chokecherry is part of chokecherry", "pln": ["(: cnet_partof_f15cbfee92 (PartOf chokecherry chokecherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chon is part of north korean won", "pln": ["(: cnet_partof_73a8d19fd5 (PartOf chon north_korean_won) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chon is part of south korean won", "pln": ["(: cnet_partof_56d6a92ffd (PartOf chon south_korean_won) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chondrule is part of chondrite", "pln": ["(: cnet_partof_57728da3e3 (PartOf chondrule chondrite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chongqing is part of china", "pln": ["(: cnet_partof_168ad7d00b (PartOf chongqing china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chop suey green is part of chop suey green", "pln": ["(: cnet_partof_b2f014b145 (PartOf chop_suey_green chop_suey_green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chorion is part of amniote", "pln": ["(: cnet_partof_d49813d5d9 (PartOf chorion amniote) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chorion is part of fetal membrane", "pln": ["(: cnet_partof_63e89bbe9a (PartOf chorion fetal_membrane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chorionic villus is part of chorion", "pln": ["(: cnet_partof_02020d09b1 (PartOf chorionic_villus chorion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "choroid is part of eye", "pln": ["(: cnet_partof_ececa7f49b (PartOf choroid eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "choroidal artery is part of choroid plexus", "pln": ["(: cnet_partof_265a2eed1a (PartOf choroidal_artery choroid_plexus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "christchurch is part of new zealand", "pln": ["(: cnet_partof_74d1be9619 (PartOf christchurch new_zealand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "christma is part of december", "pln": ["(: cnet_partof_c9220643e6 (PartOf christma december) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "christma is part of january", "pln": ["(: cnet_partof_7bac3c822b (PartOf christma january) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chromatid is part of chromosome", "pln": ["(: cnet_partof_dfd199ffea (PartOf chromatid chromosome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chromatin is part of chromosome", "pln": ["(: cnet_partof_cbe83a78ac (PartOf chromatin chromosome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chromatin is part of nucleus", "pln": ["(: cnet_partof_151d5172a2 (PartOf chromatin nucleus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chromophore is part of dye", "pln": ["(: cnet_partof_8efa0beca7 (PartOf chromophore dye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chromosome is part of nucleus", "pln": ["(: cnet_partof_94349c783c (PartOf chromosome nucleus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chromosphere is part of sun", "pln": ["(: cnet_partof_ede31f8f51 (PartOf chromosphere sun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chrysanthemum is part of chrysanthemum", "pln": ["(: cnet_partof_305fc28626 (PartOf chrysanthemum chrysanthemum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "chuck is part of drill", "pln": ["(: cnet_partof_1e895f2efc (PartOf chuck drill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chuck is part of electric drill", "pln": ["(: cnet_partof_c41afd8b9d (PartOf chuck electric_drill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chuck is part of lathe", "pln": ["(: cnet_partof_80ffc6c0ea (PartOf chuck lathe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chuck is part of side of beef", "pln": ["(: cnet_partof_47c338943f (PartOf chuck side_of_beef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chukchi sea is part of arctic ocean", "pln": ["(: cnet_partof_3ea6aed043 (PartOf chukchi_sea arctic_ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chukka is part of playing period", "pln": ["(: cnet_partof_ea0443fccd (PartOf chukka playing_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "chula vista is part of california", "pln": ["(: cnet_partof_71c1514848 (PartOf chula_vista california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "church is part of christendom", "pln": ["(: cnet_partof_dff08b0621 (PartOf church christendom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "church tower is part of church", "pln": ["(: cnet_partof_3af12bd40c (PartOf church_tower church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "churchill is part of manitoba", "pln": ["(: cnet_partof_1da71f9138 (PartOf churchill manitoba) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "churchill down is part of louisville", "pln": ["(: cnet_partof_27faa1a056 (PartOf churchill_down louisville) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cigar butt is part of cigar", "pln": ["(: cnet_partof_12714cd87e (PartOf cigar_butt cigar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cigarette butt is part of cigarette", "pln": ["(: cnet_partof_4b3cc1dcf9 (PartOf cigarette_butt cigarette) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ciliary artery is part of eye", "pln": ["(: cnet_partof_0b9fd8cf71 (PartOf ciliary_artery eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ciliary body is part of eye", "pln": ["(: cnet_partof_6f02ac30f3 (PartOf ciliary_body eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cimarron is part of new mexico", "pln": ["(: cnet_partof_f9c9849a02 (PartOf cimarron new_mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cimarron is part of oklahoma", "pln": ["(: cnet_partof_4ba5947e94 (PartOf cimarron oklahoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cinch is part of harness", "pln": ["(: cnet_partof_4ec309cb5e (PartOf cinch harness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cinchona bark is part of cinchona", "pln": ["(: cnet_partof_cb5c7ae47f (PartOf cinchona_bark cinchona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cincinnati is part of ohio", "pln": ["(: cnet_partof_801a3ed24e (PartOf cincinnati ohio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cingulate gyrus is part of limbic system", "pln": ["(: cnet_partof_7c35144806 (PartOf cingulate_gyrus limbic_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cinnamon is part of cinnamon", "pln": ["(: cnet_partof_277182da74 (PartOf cinnamon cinnamon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cinnamon bark is part of saigon cinnamon", "pln": ["(: cnet_partof_123039fd36 (PartOf cinnamon_bark saigon_cinnamon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "circle is part of theater", "pln": ["(: cnet_partof_7dfb3a0b29 (PartOf circle theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "circle of willis is part of brain", "pln": ["(: cnet_partof_041fcf3746 (PartOf circle_of_willis brain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "circuit is part of electronic equipment", "pln": ["(: cnet_partof_71f9e300bd (PartOf circuit electronic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "circulatory system is part of body", "pln": ["(: cnet_partof_336475a424 (PartOf circulatory_system body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "circumflex artery of thigh is part of thigh", "pln": ["(: cnet_partof_f55b341af3 (PartOf circumflex_artery_of_thigh thigh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "circumflex humeral artery is part of shoulder", "pln": ["(: cnet_partof_f3c4724551 (PartOf circumflex_humeral_artery shoulder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "circumflex scapular artery is part of shoulder", "pln": ["(: cnet_partof_a49f3df117 (PartOf circumflex_scapular_artery shoulder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "circus tent is part of circus", "pln": ["(: cnet_partof_d4e334efe2 (PartOf circus_tent circus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "citation form is part of lexical entry", "pln": ["(: cnet_partof_cea920bfa9 (PartOf citation_form lexical_entry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "citizenship day is part of september", "pln": ["(: cnet_partof_7dc2446601 (PartOf citizenship_day september) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "citlaltepetl is part of mexico", "pln": ["(: cnet_partof_c5dd7035fa (PartOf citlaltepetl mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "citrange is part of citrange", "pln": ["(: cnet_partof_2734a2d59a (PartOf citrange citrange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "citron is part of citron", "pln": ["(: cnet_partof_85b72f5745 (PartOf citron citron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "citrus is part of citrus", "pln": ["(: cnet_partof_1fa1832dc3 (PartOf citrus citrus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "city center is part of city", "pln": ["(: cnet_partof_807806c671 (PartOf city_center city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "city district is part of city", "pln": ["(: cnet_partof_db0dbbef00 (PartOf city_district city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "city limit is part of city", "pln": ["(: cnet_partof_2122d61eb3 (PartOf city_limit city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "city limit is part of town", "pln": ["(: cnet_partof_587adacc56 (PartOf city_limit town) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "city of london is part of london", "pln": ["(: cnet_partof_640bac5c93 (PartOf city_of_london london) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ciudad bolivar is part of venezuela", "pln": ["(: cnet_partof_4bedef77ec (PartOf ciudad_bolivar venezuela) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ciudad juarez is part of mexico", "pln": ["(: cnet_partof_a398ceb9e1 (PartOf ciudad_juarez mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ciudad victoria is part of mexico", "pln": ["(: cnet_partof_9d8cee6d4e (PartOf ciudad_victoria mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "civic center is part of city", "pln": ["(: cnet_partof_b25a47f4e5 (PartOf civic_center city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "clam is part of clam", "pln": ["(: cnet_partof_651b3b1f17 (PartOf clam clam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "clapper is part of bell", "pln": ["(: cnet_partof_d98218678f (PartOf clapper bell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "claque is part of house", "pln": ["(: cnet_partof_fc7676b247 (PartOf claque house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "clarksburg is part of west virginia", "pln": ["(: cnet_partof_9c0306a9ff (PartOf clarksburg west_virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "clary sage is part of clary sage", "pln": ["(: cnet_partof_68acf53e3c (PartOf clary_sage clary_sage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "clasp is part of bag", "pln": ["(: cnet_partof_e0194ce5df (PartOf clasp bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "clasp is part of bracelet", "pln": ["(: cnet_partof_b952710d75 (PartOf clasp bracelet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "class is part of society", "pln": ["(: cnet_partof_5780c7faa4 (PartOf class society) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "classroom is part of school", "pln": ["(: cnet_partof_e43706d781 (PartOf classroom school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "classroom project is part of education", "pln": ["(: cnet_partof_666182c087 (PartOf classroom_project education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "classwork is part of education", "pln": ["(: cnet_partof_1bf24b27cf (PartOf classwork education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "clast is part of clastic rock", "pln": ["(: cnet_partof_fe86889335 (PartOf clast clastic_rock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "clause is part of sentence", "pln": ["(: cnet_partof_6e80aa4711 (PartOf clause sentence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "clavicle is part of endoskeleton", "pln": ["(: cnet_partof_36712f1821 (PartOf clavicle endoskeleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "claw is part of crustacean", "pln": ["(: cnet_partof_290cc0a042 (PartOf claw crustacean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "cleanup is part of batting order", "pln": ["(: cnet_partof_26023a1a3c (PartOf cleanup batting_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cleat is part of cleat", "pln": ["(: cnet_partof_818b8636ad (PartOf cleat cleat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cleavage is part of pregnancy", "pln": ["(: cnet_partof_2301f30055 (PartOf cleavage pregnancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "cleveland is part of ohio", "pln": ["(: cnet_partof_7275f6b19f (PartOf cleveland ohio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "clichy is part of paris", "pln": ["(: cnet_partof_a5e6b25f79 (PartOf clichy paris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "climacteric is part of middle age", "pln": ["(: cnet_partof_df5cdbc3c1 (PartOf climacteric middle_age) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "climax is part of story", "pln": ["(: cnet_partof_2f7ab99917 (PartOf climax story) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "clinch is part of bolt", "pln": ["(: cnet_partof_d1faed06e0 (PartOf clinch bolt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "clinch is part of nail", "pln": ["(: cnet_partof_d07b3c09ba (PartOf clinch nail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "clinch is part of rivet", "pln": ["(: cnet_partof_76b76d1d15 (PartOf clinch rivet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "clinch river is part of tennessee", "pln": ["(: cnet_partof_e36897da75 (PartOf clinch_river tennessee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "clinch river is part of virginia", "pln": ["(: cnet_partof_005ea447f9 (PartOf clinch_river virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "clinic is part of hospital", "pln": ["(: cnet_partof_a6c9d7298a (PartOf clinic hospital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "clinton is part of iowa", "pln": ["(: cnet_partof_2d67afc255 (PartOf clinton iowa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "clitoris is part of vulva", "pln": ["(: cnet_partof_4304ec4d15 (PartOf clitoris vulva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "clock face is part of clock", "pln": ["(: cnet_partof_a4700b128e (PartOf clock_face clock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cloud is part of sky", "pln": ["(: cnet_partof_a54f904f3f (PartOf cloud sky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "clove is part of clove", "pln": ["(: cnet_partof_f349e5ebb2 (PartOf clove clove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "clubroom is part of clubhouse", "pln": ["(: cnet_partof_31c8f82776 (PartOf clubroom clubhouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "clutch is part of car", "pln": ["(: cnet_partof_c3878d2b21 (PartOf clutch car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "clutch is part of clutch", "pln": ["(: cnet_partof_07b9898c64 (PartOf clutch clutch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "clutch is part of transmission", "pln": ["(: cnet_partof_5b42ecbdb1 (PartOf clutch transmission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "clyde is part of scotland", "pln": ["(: cnet_partof_322f7c5bf0 (PartOf clyde scotland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "clypeus is part of insect", "pln": ["(: cnet_partof_9359260acb (PartOf clypeus insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cn tower is part of toronto", "pln": ["(: cnet_partof_b7e33e39e2 (PartOf cn_tower toronto) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coahuila is part of mexico", "pln": ["(: cnet_partof_0cfce660b6 (PartOf coahuila mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coal mine is part of colliery", "pln": ["(: cnet_partof_56f41feda1 (PartOf coal_mine colliery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coalface is part of coal seam", "pln": ["(: cnet_partof_2bc510511b (PartOf coalface coal_seam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coast range is part of north america", "pln": ["(: cnet_partof_99e2edf55b (PartOf coast_range north_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coaster brake is part of bicycle", "pln": ["(: cnet_partof_d8d10a1b96 (PartOf coaster_brake bicycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coat is part of mammal", "pln": ["(: cnet_partof_1b4c2a1763 (PartOf coat mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coat button is part of coat", "pln": ["(: cnet_partof_89817d08a2 (PartOf coat_button coat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coat land is part of antarctica", "pln": ["(: cnet_partof_d986cd4f1e (PartOf coat_land antarctica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coattail is part of coat", "pln": ["(: cnet_partof_26aa9b27cd (PartOf coattail coat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coccygeal vertebra is part of coccyx", "pln": ["(: cnet_partof_5677c922be (PartOf coccygeal_vertebra coccyx) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coccyx is part of pelvis", "pln": ["(: cnet_partof_44096d2ea0 (PartOf coccyx pelvis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coccyx is part of spinal column", "pln": ["(: cnet_partof_2ff44654cc (PartOf coccyx spinal_column) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cochlea is part of inner ear", "pln": ["(: cnet_partof_123223c723 (PartOf cochlea inner_ear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cockle is part of edible cockle", "pln": ["(: cnet_partof_f8afb9d98a (PartOf cockle edible_cockle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cockpit is part of aircraft", "pln": ["(: cnet_partof_b100a47850 (PartOf cockpit aircraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cockpit is part of racer", "pln": ["(: cnet_partof_6650e763e8 (PartOf cockpit racer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cocoa plum is part of coco plum", "pln": ["(: cnet_partof_c549bd870e (PartOf cocoa_plum coco_plum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "coconut is part of coconut", "pln": ["(: cnet_partof_f0637983b3 (PartOf coconut coconut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cocozelle is part of cocozelle", "pln": ["(: cnet_partof_f02eed2662 (PartOf cocozelle cocozelle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cocytus is part of hel", "pln": ["(: cnet_partof_bf8e4c34ab (PartOf cocytus hel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cod is part of atlantic cod", "pln": ["(: cnet_partof_80805ec14c (PartOf cod atlantic_cod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "codicil is part of will", "pln": ["(: cnet_partof_35418d320b (PartOf codicil will) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "codpiece is part of breeche", "pln": ["(: cnet_partof_0142d8de0b (PartOf codpiece breeche) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coelenteron is part of coelenterate", "pln": ["(: cnet_partof_77992c30a2 (PartOf coelenteron coelenterate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coeur d alene is part of idaho", "pln": ["(: cnet_partof_a314c591bf (PartOf coeur_d_alene idaho) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coeur d alene lake is part of idaho", "pln": ["(: cnet_partof_172cba9894 (PartOf coeur_d_alene_lake idaho) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coffee bean is part of coffee", "pln": ["(: cnet_partof_a32c60fb82 (PartOf coffee_bean coffee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coffey still is part of distillery", "pln": ["(: cnet_partof_b247308b56 (PartOf coffey_still distillery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cog is part of gear", "pln": ["(: cnet_partof_52abf1b3bc (PartOf cog gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cognitive neuroscience is part of cognitive science", "pln": ["(: cnet_partof_8eac9cb32c (PartOf cognitive_neuroscience cognitive_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cognitive psychology is part of cognitive science", "pln": ["(: cnet_partof_d6f0f2349f (PartOf cognitive_psychology cognitive_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cohune nut is part of cohune palm", "pln": ["(: cnet_partof_ac996a7053 (PartOf cohune_nut cohune_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coin box is part of slot machine", "pln": ["(: cnet_partof_9d49b2a89b (PartOf coin_box slot_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coin return is part of vending machine", "pln": ["(: cnet_partof_ac58ce38ae (PartOf coin_return vending_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coin slot is part of vending machine", "pln": ["(: cnet_partof_406dd48dfc (PartOf coin_slot vending_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "coin slot is part of slot machine", "pln": ["(: cnet_partof_e42747f63a (PartOf coin_slot slot_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cold sweat is part of fear", "pln": ["(: cnet_partof_8d9dbb42c3 (PartOf cold_sweat fear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "colic artery is part of abdomen", "pln": ["(: cnet_partof_47264fa69a (PartOf colic_artery abdomen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "colima is part of mexico", "pln": ["(: cnet_partof_c057f9b46d (PartOf colima mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "collar is part of neck", "pln": ["(: cnet_partof_252184778b (PartOf collar neck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "collector is part of transistor", "pln": ["(: cnet_partof_2299fa1966 (PartOf collector transistor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "college is part of academia", "pln": ["(: cnet_partof_6c2dba5721 (PartOf college academia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "collet is part of mounting", "pln": ["(: cnet_partof_7c6b30fbda (PartOf collet mounting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "collimator is part of spectroscope", "pln": ["(: cnet_partof_8aea6a25b3 (PartOf collimator spectroscope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cologne is part of germany", "pln": ["(: cnet_partof_693b9d22e9 (PartOf cologne germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "colombia is part of south america", "pln": ["(: cnet_partof_4e97701f05 (PartOf colombia south_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "colombo is part of sri lanka", "pln": ["(: cnet_partof_935b048f2a (PartOf colombo sri_lanka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "colon is part of panama", "pln": ["(: cnet_partof_ce44b45489 (PartOf colon panama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "colony is part of united state", "pln": ["(: cnet_partof_742e1e2d5c (PartOf colony united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "color tube is part of color television", "pln": ["(: cnet_partof_35390a7f96 (PartOf color_tube color_television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "colorado is part of united state", "pln": ["(: cnet_partof_9d707a0fca (PartOf colorado united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "colorado is part of arizona", "pln": ["(: cnet_partof_d844ab30b4 (PartOf colorado arizona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "colorado is part of colorado", "pln": ["(: cnet_partof_6c30a859f8 (PartOf colorado colorado) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "colorado is part of mexico", "pln": ["(: cnet_partof_48b3719e52 (PartOf colorado mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "colorado is part of nevada", "pln": ["(: cnet_partof_5ebff56e17 (PartOf colorado nevada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "colorado is part of texa", "pln": ["(: cnet_partof_69a5fee91a (PartOf colorado texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "colorado is part of utah", "pln": ["(: cnet_partof_aba8b52ac3 (PartOf colorado utah) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "colorado desert is part of california", "pln": ["(: cnet_partof_34dfcaf0de (PartOf colorado_desert california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "colorado plateau is part of arizona", "pln": ["(: cnet_partof_3f49eb0c59 (PartOf colorado_plateau arizona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "colorado plateau is part of colorado", "pln": ["(: cnet_partof_2995308889 (PartOf colorado_plateau colorado) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "colorado plateau is part of new mexico", "pln": ["(: cnet_partof_3e091f3418 (PartOf colorado_plateau new_mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "colorado plateau is part of utah", "pln": ["(: cnet_partof_bd76b54c56 (PartOf colorado_plateau utah) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "colorado spring is part of colorado", "pln": ["(: cnet_partof_c04a58db92 (PartOf colorado_spring colorado) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "colossae is part of phrygia", "pln": ["(: cnet_partof_8025a1cb1c (PartOf colossae phrygia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "colosseum is part of rome", "pln": ["(: cnet_partof_3837dd9465 (PartOf colosseum rome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "colter is part of moldboard plow", "pln": ["(: cnet_partof_b03408e00f (PartOf colter moldboard_plow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "columbia is part of missouri", "pln": ["(: cnet_partof_268e6e05da (PartOf columbia missouri) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "columbia is part of south carolina", "pln": ["(: cnet_partof_1aa2ca86aa (PartOf columbia south_carolina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "columbia is part of tennessee", "pln": ["(: cnet_partof_407a5f5a55 (PartOf columbia tennessee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "columbia is part of canada", "pln": ["(: cnet_partof_128256db41 (PartOf columbia canada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "columbia is part of washington", "pln": ["(: cnet_partof_62d66a8a72 (PartOf columbia washington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "columbia university is part of new york", "pln": ["(: cnet_partof_16aa549705 (PartOf columbia_university new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "columbus is part of mississippi", "pln": ["(: cnet_partof_24a49d71f8 (PartOf columbus mississippi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "columbus is part of ohio", "pln": ["(: cnet_partof_93752eb5d9 (PartOf columbus ohio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "columbus day is part of october", "pln": ["(: cnet_partof_b375e923b8 (PartOf columbus_day october) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "column is part of temple", "pln": ["(: cnet_partof_064e85baab (PartOf column temple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "column is part of newspaper", "pln": ["(: cnet_partof_d7a19b7c63 (PartOf column newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coma is part of comet", "pln": ["(: cnet_partof_97e63e2c87 (PartOf coma comet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "comb is part of ctenophore", "pln": ["(: cnet_partof_19fc21b11c (PartOf comb ctenophore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "comb is part of gallinaceous bird", "pln": ["(: cnet_partof_c4732d172f (PartOf comb gallinaceous_bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "combat is part of war", "pln": ["(: cnet_partof_ae19c51320 (PartOf combat war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "combat zone is part of field", "pln": ["(: cnet_partof_350c8f105e (PartOf combat_zone field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "comfrey is part of common comfrey", "pln": ["(: cnet_partof_b0493193bc (PartOf comfrey common_comfrey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "comic strip is part of comic book", "pln": ["(: cnet_partof_71f122b76d (PartOf comic_strip comic_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "comic strip is part of newspaper", "pln": ["(: cnet_partof_2901d7ce54 (PartOf comic_strip newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "command processing overhead time is part of access time", "pln": ["(: cnet_partof_e2bba654f0 (PartOf command_processing_overhead_time access_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "commercial enterprise is part of market", "pln": ["(: cnet_partof_c18d208116 (PartOf commercial_enterprise market) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "commodore john barry bridge is part of chester", "pln": ["(: cnet_partof_f10eaeb60d (PartOf commodore_john_barry_bridge chester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "common bean is part of common bean", "pln": ["(: cnet_partof_5aa2b4d9fc (PartOf common_bean common_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "common bile duct is part of liver", "pln": ["(: cnet_partof_de04d74cc7 (PartOf common_bile_duct liver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "commonwealth day is part of may", "pln": ["(: cnet_partof_cfefef636c (PartOf commonwealth_day may) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "communicating artery is part of brain", "pln": ["(: cnet_partof_9bd661f15b (PartOf communicating_artery brain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "communication system is part of infrastructure", "pln": ["(: cnet_partof_f3973375bf (PartOf communication_system infrastructure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "comoros is part of comoro islands", "pln": ["(: cnet_partof_0106ee6a9a (PartOf comoros comoro_islands) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "communication satellite is part of communication system", "pln": ["(: cnet_partof_1035a00fba (PartOf communication_satellite communication_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "communion is part of holy eucharist", "pln": ["(: cnet_partof_a20f06fbf2 (PartOf communion holy_eucharist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "comoro island is part of indian ocean", "pln": ["(: cnet_partof_ab1662f1a6 (PartOf comoro_island indian_ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "comoro is part of comoro island", "pln": ["(: cnet_partof_0f05408405 (PartOf comoro comoro_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "complement is part of immune response", "pln": ["(: cnet_partof_d9f60cb39f (PartOf complement immune_response) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "comptroller of currency is part of department of treasury", "pln": ["(: cnet_partof_3c28dfa8ae (PartOf comptroller_of_currency department_of_treasury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "computer is part of platform", "pln": ["(: cnet_partof_0aa86372ac (PartOf computer platform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "computer accessory is part of computer", "pln": ["(: cnet_partof_4303988f8c (PartOf computer_accessory computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "computer circuit is part of computer", "pln": ["(: cnet_partof_893a4e7fb8 (PartOf computer_circuit computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "computer science is part of information science", "pln": ["(: cnet_partof_aecc3de764 (PartOf computer_science information_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "conakry is part of guinea", "pln": ["(: cnet_partof_1cc6074d1d (PartOf conakry guinea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "conclusion is part of address", "pln": ["(: cnet_partof_0acb13c975 (PartOf conclusion address) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "conclusion is part of narration", "pln": ["(: cnet_partof_c477d2feb1 (PartOf conclusion narration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "conclusion is part of syllogism", "pln": ["(: cnet_partof_b1ad52b8e2 (PartOf conclusion syllogism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "concord is part of massachusett", "pln": ["(: cnet_partof_8371966a5e (PartOf concord massachusett) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "concord is part of new hampshire", "pln": ["(: cnet_partof_9ba834aae6 (PartOf concord new_hampshire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "concrete jungle is part of city", "pln": ["(: cnet_partof_d59a3096da (PartOf concrete_jungle city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "condenser is part of still", "pln": ["(: cnet_partof_409826680f (PartOf condenser still) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "condition is part of experiment", "pln": ["(: cnet_partof_03f2d68e64 (PartOf condition experiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "condition is part of agreement", "pln": ["(: cnet_partof_9ec43b609a (PartOf condition agreement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "condominium is part of condominium", "pln": ["(: cnet_partof_0637deb34a (PartOf condominium condominium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "condylar process is part of lower jaw", "pln": ["(: cnet_partof_23b106970c (PartOf condylar_process lower_jaw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "condyle is part of bone", "pln": ["(: cnet_partof_a2d3d9166f (PartOf condyle bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "condylion is part of ramus", "pln": ["(: cnet_partof_cbaf3ace1f (PartOf condylion ramus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cone is part of retina", "pln": ["(: cnet_partof_e7788db987 (PartOf cone retina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cone is part of club moss", "pln": ["(: cnet_partof_3f7018dd22 (PartOf cone club_moss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cone is part of conifer", "pln": ["(: cnet_partof_8dd06fcee0 (PartOf cone conifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cone is part of horsetail", "pln": ["(: cnet_partof_223956e68d (PartOf cone horsetail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coney island is part of brooklyn", "pln": ["(: cnet_partof_cb505bff33 (PartOf coney_island brooklyn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "conference table is part of conference room", "pln": ["(: cnet_partof_c7f31b10a1 (PartOf conference_table conference_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "congo is part of africa", "pln": ["(: cnet_partof_801239899a (PartOf congo africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "connecticut is part of united states", "pln": ["(: cnet_partof_21fc4ce4cd (PartOf connecticut united_states) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "contents is part of publication", "pln": ["(: cnet_partof_c89082fd8b (PartOf contents publication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "congo is part of congo", "pln": ["(: cnet_partof_506c2cc263 (PartOf congo congo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "congress is part of legislature", "pln": ["(: cnet_partof_d3db5dbd14 (PartOf congress legislature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "congressional district is part of american state", "pln": ["(: cnet_partof_e73a9be7bc (PartOf congressional_district american_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "conjunctiva is part of eye", "pln": ["(: cnet_partof_37aab212b2 (PartOf conjunctiva eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "conjunctiva is part of eyelid", "pln": ["(: cnet_partof_930416f5dd (PartOf conjunctiva eyelid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "connecticut is part of new england", "pln": ["(: cnet_partof_8b2c24397c (PartOf connecticut new_england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "connecticut is part of united state", "pln": ["(: cnet_partof_74af679e82 (PartOf connecticut united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "conning tower is part of submarine", "pln": ["(: cnet_partof_806b09ddb5 (PartOf conning_tower submarine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "conning tower is part of warship", "pln": ["(: cnet_partof_447c1f61b1 (PartOf conning_tower warship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "constantina is part of romania", "pln": ["(: cnet_partof_187d3b892f (PartOf constantina romania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "constantine is part of algeria", "pln": ["(: cnet_partof_e468d67b23 (PartOf constantine algeria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "constituent is part of sentence", "pln": ["(: cnet_partof_883014a711 (PartOf constituent sentence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "content is part of publication", "pln": ["(: cnet_partof_25f72556b4 (PartOf content publication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "continent is part of europe", "pln": ["(: cnet_partof_8f5353040a (PartOf continent europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "contract is part of bridge", "pln": ["(: cnet_partof_45efe54d56 (PartOf contract bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "control account is part of general ledger", "pln": ["(: cnet_partof_9b34a7a011 (PartOf control_account general_ledger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "control condition is part of experiment", "pln": ["(: cnet_partof_b3f09b2f6c (PartOf control_condition experiment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "control rod is part of nuclear reactor", "pln": ["(: cnet_partof_bdbdac539d (PartOf control_rod nuclear_reactor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "control tower is part of airport", "pln": ["(: cnet_partof_084f32baa9 (PartOf control_tower airport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "convent is part of sect", "pln": ["(: cnet_partof_372fa0cb7c (PartOf convent sect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "convergent thinking is part of problem solving", "pln": ["(: cnet_partof_27e2ce6776 (PartOf convergent_thinking problem_solving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "conveyer belt is part of production line", "pln": ["(: cnet_partof_b675c25cd8 (PartOf conveyer_belt production_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cook strait is part of new zealand", "pln": ["(: cnet_partof_28f839014a (PartOf cook_strait new_zealand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cooling system is part of motor vehicle", "pln": ["(: cnet_partof_b97961e28f (PartOf cooling_system motor_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cooper union is part of new york", "pln": ["(: cnet_partof_0a7cd06bc5 (PartOf cooper_union new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cooperstown is part of new york", "pln": ["(: cnet_partof_de3ed045f9 (PartOf cooperstown new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "coordinate axis is part of coordinate system", "pln": ["(: cnet_partof_df0706b875 (PartOf coordinate_axis coordinate_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coordinate clause is part of complex sentence", "pln": ["(: cnet_partof_3b7afdc26a (PartOf coordinate_clause complex_sentence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "coosa is part of alabama", "pln": ["(: cnet_partof_9f58f80e62 (PartOf coosa alabama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "coosa is part of georgia", "pln": ["(: cnet_partof_084127a00c (PartOf coosa georgia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "copenhagen is part of denmark", "pln": ["(: cnet_partof_f6cb759aea (PartOf copenhagen denmark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "copepod is part of plankton", "pln": ["(: cnet_partof_ff58a47ed1 (PartOf copepod plankton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coquilla nut is part of piassava palm", "pln": ["(: cnet_partof_577da02092 (PartOf coquilla_nut piassava_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coral is part of lobster", "pln": ["(: cnet_partof_3c8fa87b86 (PartOf coral lobster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coral sea is part of world war ii", "pln": ["(: cnet_partof_2f46f11315 (PartOf coral_sea world_war_ii) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "coral sea is part of pacific", "pln": ["(: cnet_partof_f66902dfd1 (PartOf coral_sea pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cordoba is part of argentina", "pln": ["(: cnet_partof_fb588c08a8 (PartOf cordoba argentina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cordoba is part of spain", "pln": ["(: cnet_partof_18a4e29898 (PartOf cordoba spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "core is part of magnet", "pln": ["(: cnet_partof_cf3e6a5afe (PartOf core magnet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "core is part of nuclear reactor", "pln": ["(: cnet_partof_82f05756e6 (PartOf core nuclear_reactor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "core bit is part of core drill", "pln": ["(: cnet_partof_4c1cf2ec2e (PartOf core_bit core_drill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coriander is part of coriander", "pln": ["(: cnet_partof_e2158dbb3e (PartOf coriander coriander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "corinth is part of greece", "pln": ["(: cnet_partof_dc97e92648 (PartOf corinth greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cork is part of wine bottle", "pln": ["(: cnet_partof_8103a9908a (PartOf cork wine_bottle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cork is part of ireland", "pln": ["(: cnet_partof_3537b90f77 (PartOf cork ireland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "corn is part of corn", "pln": ["(: cnet_partof_96f8a588fc (PartOf corn corn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "corn stalk is part of corn", "pln": ["(: cnet_partof_fa633143d6 (PartOf corn_stalk corn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "corncob is part of corn", "pln": ["(: cnet_partof_9619a41038 (PartOf corncob corn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cornea is part of eye", "pln": ["(: cnet_partof_1f870b25fc (PartOf cornea eye) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "cornell university is part of new york", "pln": ["(: cnet_partof_d9af00f43c (PartOf cornell_university new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "corner is part of building", "pln": ["(: cnet_partof_130894a60e (PartOf corner building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "cornerstone is part of building", "pln": ["(: cnet_partof_1b90e7e2e9 (PartOf cornerstone building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cornice is part of entablature", "pln": ["(: cnet_partof_d50a411869 (PartOf cornice entablature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cornwall is part of england", "pln": ["(: cnet_partof_ac20085c90 (PartOf cornwall england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "corolla is part of perianth", "pln": ["(: cnet_partof_f74692fb03 (PartOf corolla perianth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "corona is part of corolla", "pln": ["(: cnet_partof_476ca975ea (PartOf corona corolla) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coronal suture is part of cranium", "pln": ["(: cnet_partof_83e4c80861 (PartOf coronal_suture cranium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coronary artery is part of heart", "pln": ["(: cnet_partof_b2b17151a0 (PartOf coronary_artery heart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coronary care unit is part of hospital", "pln": ["(: cnet_partof_5045e723d3 (PartOf coronary_care_unit hospital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coronary thrombosis is part of heart attack", "pln": ["(: cnet_partof_c52f3d2b5c (PartOf coronary_thrombosis heart_attack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coronet is part of pastern", "pln": ["(: cnet_partof_ef4c22445c (PartOf coronet pastern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coronion is part of coronoid process of mandible", "pln": ["(: cnet_partof_c903c52a84 (PartOf coronion coronoid_process_of_mandible) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coronoid process is part of bone", "pln": ["(: cnet_partof_dc4e5daf46 (PartOf coronoid_process bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coronoid process of mandible is part of lower jaw", "pln": ["(: cnet_partof_3fd767b9e5 (PartOf coronoid_process_of_mandible lower_jaw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coropuna is part of ande", "pln": ["(: cnet_partof_b829a2f7fc (PartOf coropuna ande) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coropuna is part of peru", "pln": ["(: cnet_partof_c121418ee7 (PartOf coropuna peru) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "corpus is part of body part", "pln": ["(: cnet_partof_0aa7a58ff5 (PartOf corpus body_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "corpus callosum is part of forebrain", "pln": ["(: cnet_partof_0e7c9430e3 (PartOf corpus_callosum forebrain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "corpus christi is part of texa", "pln": ["(: cnet_partof_ac9625074f (PartOf corpus_christi texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "corpus luteum is part of graafian follicle", "pln": ["(: cnet_partof_6212f3a4fc (PartOf corpus_luteum graafian_follicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "correlation is part of correlational analysis", "pln": ["(: cnet_partof_2d6eeb15bc (PartOf correlation correlational_analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "corse is part of france", "pln": ["(: cnet_partof_6fda0df0ab (PartOf corse france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "corse is part of mediterranean", "pln": ["(: cnet_partof_8e67d36ce2 (PartOf corse mediterranean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cortical area is part of cerebral cortex", "pln": ["(: cnet_partof_999d27846a (PartOf cortical_area cerebral_cortex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cosmic ray is part of cosmic radiation", "pln": ["(: cnet_partof_100f6768e9 (PartOf cosmic_ray cosmic_radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "costa rica is part of central america", "pln": ["(: cnet_partof_93447c504f (PartOf costa_rica central_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "costal cartilage is part of rib", "pln": ["(: cnet_partof_f0034e9106 (PartOf costal_cartilage rib) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "costmary is part of costmary", "pln": ["(: cnet_partof_24e6b81abc (PartOf costmary costmary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cotacachi is part of ecuador", "pln": ["(: cnet_partof_518a8616f1 (PartOf cotacachi ecuador) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cotonou is part of benin", "pln": ["(: cnet_partof_058d385d9d (PartOf cotonou benin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "cotopaxi is part of ecuador", "pln": ["(: cnet_partof_eea9be6fe6 (PartOf cotopaxi ecuador) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cotswold is part of england", "pln": ["(: cnet_partof_0cf0fd7237 (PartOf cotswold england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cottonseed is part of cotton", "pln": ["(: cnet_partof_4a951b0249 (PartOf cottonseed cotton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "couchette is part of passenger train", "pln": ["(: cnet_partof_a9660cc50a (PartOf couchette passenger_train) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cough is part of respiratory disease", "pln": ["(: cnet_partof_6346345f53 (PartOf cough respiratory_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coulomb is part of abcoulomb", "pln": ["(: cnet_partof_e683a780eb (PartOf coulomb abcoulomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coulomb is part of ampere minute", "pln": ["(: cnet_partof_7d7296b18f (PartOf coulomb ampere_minute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "countenance is part of human head", "pln": ["(: cnet_partof_0f1f644ba0 (PartOf countenance human_head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "counter is part of boot", "pln": ["(: cnet_partof_26fa58a248 (PartOf counter boot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "counter is part of shoe", "pln": ["(: cnet_partof_d8113f74f2 (PartOf counter shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "counterterrorist center is part of central intelligence agency", "pln": ["(: cnet_partof_da11a93216 (PartOf counterterrorist_center central_intelligence_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "countertop is part of counter", "pln": ["(: cnet_partof_becd7df81c (PartOf countertop counter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "county seat is part of county", "pln": ["(: cnet_partof_c900bd80db (PartOf county_seat county) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "county town is part of shire", "pln": ["(: cnet_partof_9b65bf3d92 (PartOf county_town shire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coup de theatre is part of production", "pln": ["(: cnet_partof_c12c356ffe (PartOf coup_de_theatre production) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "course is part of wall", "pln": ["(: cnet_partof_72891358ba (PartOf course wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "course is part of meal", "pln": ["(: cnet_partof_0a73180dd8 (PartOf course meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "course of lecture is part of course of study", "pln": ["(: cnet_partof_4c61321c6e (PartOf course_of_lecture course_of_study) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "course session is part of course", "pln": ["(: cnet_partof_9bfc58cc8e (PartOf course_session course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "criminal investigation command is part of united states army", "pln": ["(: cnet_partof_546b34426e (PartOf criminal_investigation_command united_states_army) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coursework is part of course", "pln": ["(: cnet_partof_95846a6f32 (PartOf coursework course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "court is part of building", "pln": ["(: cnet_partof_bcc5c9cce5 (PartOf court building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "court is part of courthouse", "pln": ["(: cnet_partof_b6d013e647 (PartOf court courthouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "coventry is part of england", "pln": ["(: cnet_partof_d22f34b028 (PartOf coventry england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cover glass is part of slide", "pln": ["(: cnet_partof_426ededad5 (PartOf cover_glass slide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cowage is part of cowage", "pln": ["(: cnet_partof_0189427a24 (PartOf cowage cowage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cowpea is part of cowpea", "pln": ["(: cnet_partof_908cd540a1 (PartOf cowpea cowpea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cowpen is part of american revolution", "pln": ["(: cnet_partof_c0eba5e430 (PartOf cowpen american_revolution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cowper s gland is part of male reproductive system", "pln": ["(: cnet_partof_c5fa250792 (PartOf cowper_s_gland male_reproductive_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cpu is part of computer", "pln": ["(: cnet_partof_3107d52f83 (PartOf cpu computer) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cpu board is part of central processing unit", "pln": ["(: cnet_partof_c4f7bb7fba (PartOf cpu_board central_processing_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crab is part of crab cocktail", "pln": ["(: cnet_partof_240dcf8a01 (PartOf crab crab_cocktail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crab apple is part of crab apple", "pln": ["(: cnet_partof_97498a31d9 (PartOf crab_apple crab_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cracow is part of poland", "pln": ["(: cnet_partof_15bcc5afcc (PartOf cracow poland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cranberry is part of american cranberry", "pln": ["(: cnet_partof_80fcff8ff0 (PartOf cranberry american_cranberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "craniometric point is part of skull", "pln": ["(: cnet_partof_884f640118 (PartOf craniometric_point skull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cranium is part of skull", "pln": ["(: cnet_partof_46133f4d46 (PartOf cranium skull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crankcase is part of reciprocating engine", "pln": ["(: cnet_partof_8709138a0e (PartOf crankcase reciprocating_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crankshaft is part of reciprocating engine", "pln": ["(: cnet_partof_79586db48e (PartOf crankshaft reciprocating_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crappie is part of crappie", "pln": ["(: cnet_partof_5160557f08 (PartOf crappie crappie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crater lake national park is part of oregon", "pln": ["(: cnet_partof_18e7fcf588 (PartOf crater_lake_national_park oregon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "craton is part of continent", "pln": ["(: cnet_partof_da5a6d6985 (PartOf craton continent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crawlspace is part of building", "pln": ["(: cnet_partof_32ce1a4dd3 (PartOf crawlspace building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crayfish is part of american crayfish", "pln": ["(: cnet_partof_89a1b70631 (PartOf crayfish american_crayfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crayfish is part of old world crayfish", "pln": ["(: cnet_partof_a3ccf152c5 (PartOf crayfish old_world_crayfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "creating division is part of stigma", "pln": ["(: cnet_partof_389bc709ad (PartOf creating_division stigma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crecy is part of hundred year war", "pln": ["(: cnet_partof_bfe05a49a0 (PartOf crecy hundred_year_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "credit is part of movie", "pln": ["(: cnet_partof_93c03fb516 (PartOf credit movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cremona is part of lombardy", "pln": ["(: cnet_partof_34debcb2c8 (PartOf cremona lombardy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crenel is part of battlement", "pln": ["(: cnet_partof_0edcc89924 (PartOf crenel battlement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crest is part of coat of arm", "pln": ["(: cnet_partof_0c8db8bac2 (PartOf crest coat_of_arm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cretaceous is part of mesozoic", "pln": ["(: cnet_partof_6fd5f77dc2 (PartOf cretaceous mesozoic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crete is part of greece", "pln": ["(: cnet_partof_4f4492b6cf (PartOf crete greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crete is part of mediterranean", "pln": ["(: cnet_partof_4835aff35d (PartOf crete mediterranean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crib is part of cribbage", "pln": ["(: cnet_partof_d741d09e57 (PartOf crib cribbage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crimea is part of ukraine", "pln": ["(: cnet_partof_ac823a364d (PartOf crimea ukraine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "criminal investigation command is part of united state army", "pln": ["(: cnet_partof_885e51e7da (PartOf criminal_investigation_command united_state_army) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crisphead lettuce is part of head lettuce", "pln": ["(: cnet_partof_0084b5682f (PartOf crisphead_lettuce head_lettuce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "croaker is part of croaker", "pln": ["(: cnet_partof_f3d0a6bf0a (PartOf croaker croaker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "croatia is part of balkan peninsula", "pln": ["(: cnet_partof_5ee6da5e23 (PartOf croatia balkan_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crop is part of whip", "pln": ["(: cnet_partof_8851ca6a3a (PartOf crop whip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cross country riding is part of three day event", "pln": ["(: cnet_partof_956b265b89 (PartOf cross_country_riding three_day_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cross hair is part of reticle", "pln": ["(: cnet_partof_9cd353e711 (PartOf cross_hair reticle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cross question is part of cross examination", "pln": ["(: cnet_partof_6ca03c21be (PartOf cross_question cross_examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crossbar is part of goalpost", "pln": ["(: cnet_partof_008c3ac481 (PartOf crossbar goalpost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crosshead is part of steam engine", "pln": ["(: cnet_partof_a89a1f5ffa (PartOf crosshead steam_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "crossing over is part of diplotene", "pln": ["(: cnet_partof_89c9b4f853 (PartOf crossing_over diplotene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crotaphion is part of sphenoid bone", "pln": ["(: cnet_partof_b9f5c1dcf0 (PartOf crotaphion sphenoid_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crotch is part of body", "pln": ["(: cnet_partof_5ca6985912 (PartOf crotch body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crow s nest is part of ship", "pln": ["(: cnet_partof_bcfce5ec41 (PartOf crow_s_nest ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crown is part of hat", "pln": ["(: cnet_partof_c7c00d9cc7 (PartOf crown hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crown is part of road", "pln": ["(: cnet_partof_e07bf0046e (PartOf crown road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crown is part of tooth", "pln": ["(: cnet_partof_711d78c92b (PartOf crown tooth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crown is part of tree", "pln": ["(: cnet_partof_1efb40515d (PartOf crown tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cruciferous vegetable is part of crucifer", "pln": ["(: cnet_partof_441d75f76f (PartOf cruciferous_vegetable crucifer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crumb is part of baked good", "pln": ["(: cnet_partof_0dab202d51 (PartOf crumb baked_good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crus is part of leg", "pln": ["(: cnet_partof_db1afa15c2 (PartOf crus leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crust is part of lithosphere", "pln": ["(: cnet_partof_f6fb9d531d (PartOf crust lithosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crystal is part of crystal counter", "pln": ["(: cnet_partof_d96839b83c (PartOf crystal crystal_counter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crystal is part of crystal detector", "pln": ["(: cnet_partof_67eeed7947 (PartOf crystal crystal_detector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "crystal is part of crystal microphone", "pln": ["(: cnet_partof_20892a63fd (PartOf crystal crystal_microphone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "crystal is part of crystal pickup", "pln": ["(: cnet_partof_727cecbbd2 (PartOf crystal crystal_pickup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "crystal is part of watch", "pln": ["(: cnet_partof_3b094713fa (PartOf crystal watch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ctene is part of ctenophore", "pln": ["(: cnet_partof_0c6102dadb (PartOf ctene ctenophore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cuba is part of caribbean", "pln": ["(: cnet_partof_5076d51808 (PartOf cuba caribbean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cuba is part of cuba", "pln": ["(: cnet_partof_e8c3eb3ac6 (PartOf cuba cuba) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cuba is part of greater antille", "pln": ["(: cnet_partof_520959d78d (PartOf cuba greater_antille) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cubeb is part of cubeb", "pln": ["(: cnet_partof_12c342da7e (PartOf cubeb cubeb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cubic millimeter is part of milliliter", "pln": ["(: cnet_partof_f8ec478d28 (PartOf cubic_millimeter milliliter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cubitiere is part of body armor", "pln": ["(: cnet_partof_6a15b78be9 (PartOf cubitiere body_armor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "cuboid bone is part of tarsus", "pln": ["(: cnet_partof_b5221fa8ad (PartOf cuboid_bone tarsus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cucumber is part of cucumber", "pln": ["(: cnet_partof_0efda49f99 (PartOf cucumber cucumber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cuddy is part of small ship", "pln": ["(: cnet_partof_16b4f71023 (PartOf cuddy small_ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cuff is part of leg", "pln": ["(: cnet_partof_3e313d152c (PartOf cuff leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cuff is part of sleeve", "pln": ["(: cnet_partof_b8cc7ff205 (PartOf cuff sleeve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "cuisse is part of body armor", "pln": ["(: cnet_partof_a7f02355d4 (PartOf cuisse body_armor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "culebra is part of puerto rico", "pln": ["(: cnet_partof_28732ed3d4 (PartOf culebra puerto_rico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "culiacan is part of mexico", "pln": ["(: cnet_partof_a7344b1353 (PartOf culiacan mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cullis is part of building", "pln": ["(: cnet_partof_c7a56e7dae (PartOf cullis building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cumana is part of venezuela", "pln": ["(: cnet_partof_074aa36a91 (PartOf cumana venezuela) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cumberland is part of kentucky", "pln": ["(: cnet_partof_a309e5df02 (PartOf cumberland kentucky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cumberland is part of tennessee", "pln": ["(: cnet_partof_7ed0d4dea6 (PartOf cumberland tennessee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cumberland gap is part of cumberland mountain", "pln": ["(: cnet_partof_1530996c1a (PartOf cumberland_gap cumberland_mountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cumberland mountain is part of appalachian", "pln": ["(: cnet_partof_d0752aaf8e (PartOf cumberland_mountain appalachian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cumbria is part of england", "pln": ["(: cnet_partof_a69a75eda0 (PartOf cumbria england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cumbria is part of scotland", "pln": ["(: cnet_partof_5b790ada69 (PartOf cumbria scotland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cumin is part of cumin", "pln": ["(: cnet_partof_040bd4e972 (PartOf cumin cumin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cumin is part of cuminum", "pln": ["(: cnet_partof_51195da19c (PartOf cumin cuminum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cup is part of pint", "pln": ["(: cnet_partof_83822fb216 (PartOf cup pint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cupule is part of acorn", "pln": ["(: cnet_partof_f00f698b5f (PartOf cupule acorn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cuquenan is part of venezuela", "pln": ["(: cnet_partof_3012f01126 (PartOf cuquenan venezuela) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "curacao is part of netherland antille", "pln": ["(: cnet_partof_0392481945 (PartOf curacao netherland_antille) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "curbstone is part of curb", "pln": ["(: cnet_partof_65a7a5f3bf (PartOf curbstone curb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "curettage is part of dilation and curettage", "pln": ["(: cnet_partof_ed8c8593d8 (PartOf curettage dilation_and_curettage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "curia is part of roman catholic", "pln": ["(: cnet_partof_3df4bd9f1c (PartOf curia roman_catholic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "curitiba is part of brazil", "pln": ["(: cnet_partof_79b0b1ced2 (PartOf curitiba brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "curl curl is part of sydney", "pln": ["(: cnet_partof_0254ff89e8 (PartOf curl_curl sydney) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "current account is part of balance of payment", "pln": ["(: cnet_partof_6ed2fc6d43 (PartOf current_account balance_of_payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "curve is part of graph", "pln": ["(: cnet_partof_4c716709bb (PartOf curve graph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cushaw is part of cushaw", "pln": ["(: cnet_partof_3af3bc669a (PartOf cushaw cushaw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cushaw is part of cucurbita", "pln": ["(: cnet_partof_de53324486 (PartOf cushaw cucurbita) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cusk is part of cusk", "pln": ["(: cnet_partof_ee27e55b55 (PartOf cusk cusk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cusp is part of heart valve", "pln": ["(: cnet_partof_5208b9fb9a (PartOf cusp heart_valve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cusp is part of tooth", "pln": ["(: cnet_partof_a3e033b3b4 (PartOf cusp tooth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "custard apple is part of custard apple", "pln": ["(: cnet_partof_16eedb0585 (PartOf custard_apple custard_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cut is part of card game", "pln": ["(: cnet_partof_893ab2ad81 (PartOf cut card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cut is part of loot", "pln": ["(: cnet_partof_100a5281b1 (PartOf cut loot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cut of beef is part of beef", "pln": ["(: cnet_partof_d38f455c47 (PartOf cut_of_beef beef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cut of lamb is part of lamb", "pln": ["(: cnet_partof_f53ee37d6e (PartOf cut_of_lamb lamb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cut of pork is part of pork", "pln": ["(: cnet_partof_6140f31786 (PartOf cut_of_pork pork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cut of veal is part of veal", "pln": ["(: cnet_partof_feef951f24 (PartOf cut_of_veal veal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cyanosis is part of carbon monoxide poisoning", "pln": ["(: cnet_partof_0293e73959 (PartOf cyanosis carbon_monoxide_poisoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cyclade is part of greece", "pln": ["(: cnet_partof_a182ed0bf1 (PartOf cyclade greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cylinder is part of compressor", "pln": ["(: cnet_partof_e07a41c67c (PartOf cylinder compressor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cylinder is part of engine block", "pln": ["(: cnet_partof_b8ed1af815 (PartOf cylinder engine_block) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cylinder is part of pump", "pln": ["(: cnet_partof_1f62620353 (PartOf cylinder pump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cynoscephalae is part of thessalia", "pln": ["(: cnet_partof_72be4c6470 (PartOf cynoscephalae thessalia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cyprus is part of cyprus", "pln": ["(: cnet_partof_3f33eb85e9 (PartOf cyprus cyprus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cyprus is part of mediterranean", "pln": ["(: cnet_partof_8f7234de4b (PartOf cyprus mediterranean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "cytokinesis is part of meiosis", "pln": ["(: cnet_partof_ad43423ef2 (PartOf cytokinesis meiosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cytokinesis is part of mitosis", "pln": ["(: cnet_partof_885c13db6e (PartOf cytokinesis mitosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cytoplasm is part of cell", "pln": ["(: cnet_partof_017696d322 (PartOf cytoplasm cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "cytoskeleton is part of cytoplasm", "pln": ["(: cnet_partof_50fbed3ec4 (PartOf cytoskeleton cytoplasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "cytostome is part of protozoan", "pln": ["(: cnet_partof_5f1ee1392d (PartOf cytostome protozoan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "czech republic is part of europe", "pln": ["(: cnet_partof_4e180179f1 (PartOf czech_republic europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "czechoslovakia is part of europe", "pln": ["(: cnet_partof_662e53a364 (PartOf czechoslovakia europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "czestochowa is part of poland", "pln": ["(: cnet_partof_8f18ecbc44 (PartOf czestochowa poland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "d is part of alphabet", "pln": ["(: cnet_partof_7ed5293337 (PartOf d alphabet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "d layer is part of ionosphere", "pln": ["(: cnet_partof_bb664e4305 (PartOf d_layer ionosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dachau is part of germany", "pln": ["(: cnet_partof_338df64d01 (PartOf dachau germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dado is part of pedestal", "pln": ["(: cnet_partof_1499884f72 (PartOf dado pedestal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dail eireann is part of oireachta", "pln": ["(: cnet_partof_fa4d5a4963 (PartOf dail_eireann oireachta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dairen is part of china", "pln": ["(: cnet_partof_d2d7ec7335 (PartOf dairen china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dairen is part of luda", "pln": ["(: cnet_partof_77689206e8 (PartOf dairen luda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "daisy print wheel is part of daisywheel printer", "pln": ["(: cnet_partof_9f2dfdc636 (PartOf daisy_print_wheel daisywheel_printer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dakar is part of senegal", "pln": ["(: cnet_partof_c8d16d67c8 (PartOf dakar senegal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dakota is part of united state", "pln": ["(: cnet_partof_efdb3ba074 (PartOf dakota united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dalla is part of texa", "pln": ["(: cnet_partof_dcf4f80cda (PartOf dalla texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "damascus is part of syria", "pln": ["(: cnet_partof_dcd09230d1 (PartOf damascus syria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "damper is part of chimney", "pln": ["(: cnet_partof_865baaa4cb (PartOf damper chimney) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "damper block is part of piano action", "pln": ["(: cnet_partof_a446598e84 (PartOf damper_block piano_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "damson is part of damson plum", "pln": ["(: cnet_partof_08bc635a7c (PartOf damson damson_plum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "dance step is part of step dancing", "pln": ["(: cnet_partof_301f3a36c0 (PartOf dance_step step_dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dandelion green is part of common dandelion", "pln": ["(: cnet_partof_3561e76455 (PartOf dandelion_green common_dandelion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "daniel is part of hagiographa", "pln": ["(: cnet_partof_5c8069bc8b (PartOf daniel hagiographa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "daniel is part of old testament", "pln": ["(: cnet_partof_37fa4b1248 (PartOf daniel old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "danube is part of austria", "pln": ["(: cnet_partof_d538b407c8 (PartOf danube austria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "danube is part of bulgaria", "pln": ["(: cnet_partof_2cfa09497f (PartOf danube bulgaria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "danube is part of czechoslovakia", "pln": ["(: cnet_partof_c84037a0ae (PartOf danube czechoslovakia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "danube is part of germany", "pln": ["(: cnet_partof_12882a2a75 (PartOf danube germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "danube is part of hungary", "pln": ["(: cnet_partof_81a3fc3d77 (PartOf danube hungary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "danube is part of romania", "pln": ["(: cnet_partof_e07576aab2 (PartOf danube romania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "danube is part of ukraine", "pln": ["(: cnet_partof_72ce5995b5 (PartOf danube ukraine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "danube is part of yugoslavia", "pln": ["(: cnet_partof_b0c7e75f43 (PartOf danube yugoslavia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dar es salaam is part of tanzania", "pln": ["(: cnet_partof_750a45eee4 (PartOf dar_es_salaam tanzania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dardanelle is part of world war i", "pln": ["(: cnet_partof_ac32cecf4b (PartOf dardanelle world_war_i) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dardanelle is part of turkey", "pln": ["(: cnet_partof_f58b444391 (PartOf dardanelle turkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "darfur is part of sudan", "pln": ["(: cnet_partof_92763e3c23 (PartOf darfur sudan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dark meat is part of bird", "pln": ["(: cnet_partof_a90c023ec2 (PartOf dark_meat bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dark meat is part of drumstick", "pln": ["(: cnet_partof_46c284a88e (PartOf dark_meat drumstick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dark meat is part of second joint", "pln": ["(: cnet_partof_3cdd764109 (PartOf dark_meat second_joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "darling is part of australia", "pln": ["(: cnet_partof_248d395ecd (PartOf darling australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dart is part of garment", "pln": ["(: cnet_partof_3198a9297d (PartOf dart garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dartmouth college is part of new hampshire", "pln": ["(: cnet_partof_919c294ca2 (PartOf dartmouth_college new_hampshire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "darwin is part of northern territory", "pln": ["(: cnet_partof_7b2905f001 (PartOf darwin northern_territory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "daryacheh ye orumiyeh is part of iran", "pln": ["(: cnet_partof_1ac76f7ce7 (PartOf daryacheh_ye_orumiyeh iran) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dash is part of morse", "pln": ["(: cnet_partof_20f8baa462 (PartOf dash morse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dasht e lut is part of iran", "pln": ["(: cnet_partof_e82f3dc020 (PartOf dasht_e_lut iran) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "data converter is part of computer", "pln": ["(: cnet_partof_2fc295b894 (PartOf data_converter computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "date is part of date palm", "pln": ["(: cnet_partof_476cafd856 (PartOf date date_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dateline is part of dispatch", "pln": ["(: cnet_partof_1b7e76a8e4 (PartOf dateline dispatch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "daugavpil is part of latvia", "pln": ["(: cnet_partof_cc5b416660 (PartOf daugavpil latvia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "davenport is part of iowa", "pln": ["(: cnet_partof_9dd9ba5c0d (PartOf davenport iowa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "davit is part of ship", "pln": ["(: cnet_partof_ca5a4e5baa (PartOf davit ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dawson is part of yukon", "pln": ["(: cnet_partof_4bc99e8070 (PartOf dawson yukon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "day is part of month", "pln": ["(: cnet_partof_0eccb6274b (PartOf day month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "day is part of day", "pln": ["(: cnet_partof_2e846f6817 (PartOf day day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "day of week is part of week", "pln": ["(: cnet_partof_19856c5b65 (PartOf day_of_week week) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dayton is part of ohio", "pln": ["(: cnet_partof_b1a93819ec (PartOf dayton ohio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "daytona beach is part of florida", "pln": ["(: cnet_partof_c09abacd8e (PartOf daytona_beach florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dead sea is part of israel", "pln": ["(: cnet_partof_cb5b2f154b (PartOf dead_sea israel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dead sea is part of jordan", "pln": ["(: cnet_partof_00136a7af6 (PartOf dead_sea jordan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "deadlight is part of porthole", "pln": ["(: cnet_partof_b4d0361cc3 (PartOf deadlight porthole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "deal is part of card game", "pln": ["(: cnet_partof_65ec791993 (PartOf deal card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "death is part of human experience", "pln": ["(: cnet_partof_6dcfd080a1 (PartOf death human_experience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "death is part of life", "pln": ["(: cnet_partof_d53379927c (PartOf death life) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "death valley is part of california", "pln": ["(: cnet_partof_16a7fa9698 (PartOf death_valley california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "death valley is part of mojave", "pln": ["(: cnet_partof_c91b5ea79b (PartOf death_valley mojave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "death valley is part of nevada", "pln": ["(: cnet_partof_88eee90273 (PartOf death_valley nevada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "decade is part of century", "pln": ["(: cnet_partof_74310c3848 (PartOf decade century) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "decameter is part of hectometer", "pln": ["(: cnet_partof_4976ccb8da (PartOf decameter hectometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "decatur is part of alabama", "pln": ["(: cnet_partof_5a4155debd (PartOf decatur alabama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "decatur is part of illinois", "pln": ["(: cnet_partof_e86a5b3b1f (PartOf decatur illinois) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "december is part of gregorian calendar", "pln": ["(: cnet_partof_19eb458e75 (PartOf december gregorian_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "decigram is part of carat", "pln": ["(: cnet_partof_137cd9fbcc (PartOf decigram carat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "deciliter is part of liter", "pln": ["(: cnet_partof_e9b3080b85 (PartOf deciliter liter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "decimeter is part of meter", "pln": ["(: cnet_partof_ba0b7cb321 (PartOf decimeter meter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "deck is part of ship", "pln": ["(: cnet_partof_8efcdc4d98 (PartOf deck ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "deck house is part of upper deck", "pln": ["(: cnet_partof_d83ad2221e (PartOf deck_house upper_deck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "deep south is part of south", "pln": ["(: cnet_partof_60fa04a763 (PartOf deep_south south) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "deep space is part of outer space", "pln": ["(: cnet_partof_ac5a83cfc7 (PartOf deep_space outer_space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "defense is part of trial", "pln": ["(: cnet_partof_52209b6c97 (PartOf defense trial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "defense advanced research project agency is part of department of defense", "pln": ["(: cnet_partof_dc293597b4 (PartOf defense_advanced_research_project_agency department_of_defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "defense information system agency is part of department of defense", "pln": ["(: cnet_partof_00ce308440 (PartOf defense_information_system_agency department_of_defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "defense intelligence agency is part of department of defense", "pln": ["(: cnet_partof_5fb6bddf0e (PartOf defense_intelligence_agency department_of_defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "defense logistic agency is part of department of defense", "pln": ["(: cnet_partof_90016180bc (PartOf defense_logistic_agency department_of_defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "defense reutilization and marketing service is part of defense logistic agency", "pln": ["(: cnet_partof_69d0968477 (PartOf defense_reutilization_and_marketing_service defense_logistic_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "defense technical information center is part of department of defense", "pln": ["(: cnet_partof_3de91d6c09 (PartOf defense_technical_information_center department_of_defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "degree is part of oxtant", "pln": ["(: cnet_partof_4a352e0741 (PartOf degree oxtant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "degree is part of sextant", "pln": ["(: cnet_partof_0c3d9c055f (PartOf degree sextant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dehydration is part of plastination", "pln": ["(: cnet_partof_756fd87d7e (PartOf dehydration plastination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dekagram is part of hectogram", "pln": ["(: cnet_partof_3c164740eb (PartOf dekagram hectogram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dekaliter is part of hectoliter", "pln": ["(: cnet_partof_47b3f47e21 (PartOf dekaliter hectoliter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "del rio is part of texa", "pln": ["(: cnet_partof_2faeab3419 (PartOf del_rio texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "delaware is part of mid atlantic state", "pln": ["(: cnet_partof_a2d45b7a03 (PartOf delaware mid_atlantic_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "delaware is part of united state", "pln": ["(: cnet_partof_e18748b321 (PartOf delaware united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "delaware is part of delaware", "pln": ["(: cnet_partof_3715061379 (PartOf delaware delaware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "delaware is part of new york", "pln": ["(: cnet_partof_bae4dc9751 (PartOf delaware new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "delaware bay is part of atlantic", "pln": ["(: cnet_partof_f2111d13f0 (PartOf delaware_bay atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "delaware bay is part of delaware", "pln": ["(: cnet_partof_3ded9f30f2 (PartOf delaware_bay delaware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "delaware bay is part of new jersey", "pln": ["(: cnet_partof_54dbad31f6 (PartOf delaware_bay new_jersey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "delaware memorial bridge is part of wilmington", "pln": ["(: cnet_partof_8320c16da6 (PartOf delaware_memorial_bridge wilmington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "delayed action is part of camera", "pln": ["(: cnet_partof_c7d2be6528 (PartOf delayed_action camera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "delusions of grandeur is part of megalomania", "pln": ["(: cnet_partof_b770963e24 (PartOf delusions_of_grandeur megalomania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "delhi is part of india", "pln": ["(: cnet_partof_a27fd75a1d (PartOf delhi india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "delivery is part of childbirth", "pln": ["(: cnet_partof_00fb6c9413 (PartOf delivery childbirth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "delphi is part of greece", "pln": ["(: cnet_partof_cf0740ae34 (PartOf delphi greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "deltoid is part of rotator cuff", "pln": ["(: cnet_partof_bf694748f2 (PartOf deltoid rotator_cuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "deltoid tuberosity is part of humerus", "pln": ["(: cnet_partof_66ac88b755 (PartOf deltoid_tuberosity humerus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "delusion of grandeur is part of megalomania", "pln": ["(: cnet_partof_1e96b5399c (PartOf delusion_of_grandeur megalomania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "demavend is part of iran", "pln": ["(: cnet_partof_48a9cc5232 (PartOf demavend iran) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "demerara is part of guyana", "pln": ["(: cnet_partof_83cade1fe7 (PartOf demerara guyana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "demineralization is part of osteomalacia", "pln": ["(: cnet_partof_40a5ec6cfe (PartOf demineralization osteomalacia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "demyelination is part of multiple sclerosis", "pln": ["(: cnet_partof_eac76caa81 (PartOf demyelination multiple_sclerosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "den is part of dwelling", "pln": ["(: cnet_partof_ac08551a91 (PartOf den dwelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "denali fault is part of alaska", "pln": ["(: cnet_partof_f2556ce66b (PartOf denali_fault alaska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "denali national park is part of alaska", "pln": ["(: cnet_partof_a1e25a590d (PartOf denali_national_park alaska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dendrite is part of nerve cell", "pln": ["(: cnet_partof_dc5e3e82be (PartOf dendrite nerve_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "denmark is part of jutland", "pln": ["(: cnet_partof_09557b04ea (PartOf denmark jutland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dentate nucleus is part of cerebellum", "pln": ["(: cnet_partof_ab16a67dc1 (PartOf dentate_nucleus cerebellum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dentine is part of tooth", "pln": ["(: cnet_partof_42b09614d3 (PartOf dentine tooth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dentition is part of mouth", "pln": ["(: cnet_partof_05f150ff39 (PartOf dentition mouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "denver is part of colorado", "pln": ["(: cnet_partof_ad962b654b (PartOf denver colorado) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "department of defense laboratory system is part of department of defense", "pln": ["(: cnet_partof_6fac0f1c54 (PartOf department_of_defense_laboratory_system department_of_defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "department of energy intelligence is part of department of energy", "pln": ["(: cnet_partof_01b49c9d5f (PartOf department_of_energy_intelligence department_of_energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dermis is part of skin", "pln": ["(: cnet_partof_a6f01fc41c (PartOf dermis skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "des moine is part of iowa", "pln": ["(: cnet_partof_bbc8e0d163 (PartOf des_moine iowa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "descending colon is part of large intestine", "pln": ["(: cnet_partof_7f38fae531 (PartOf descending_colon large_intestine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "detector is part of radio receiver", "pln": ["(: cnet_partof_67cd530564 (PartOf detector radio_receiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "detroit is part of michigan", "pln": ["(: cnet_partof_421514a451 (PartOf detroit michigan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "detroit river is part of michigan", "pln": ["(: cnet_partof_dfe283180f (PartOf detroit_river michigan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "deuteronomy is part of torah", "pln": ["(: cnet_partof_97d507ecc4 (PartOf deuteronomy torah) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "devon is part of england", "pln": ["(: cnet_partof_371ba4cd76 (PartOf devon england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "devonian is part of paleozoic", "pln": ["(: cnet_partof_402ae934ef (PartOf devonian paleozoic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dewberry is part of european dewberry", "pln": ["(: cnet_partof_a7f75edec4 (PartOf dewberry european_dewberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dewberry is part of northern dewberry", "pln": ["(: cnet_partof_481c9e6ce5 (PartOf dewberry northern_dewberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dewlap is part of neck", "pln": ["(: cnet_partof_98d2bea150 (PartOf dewlap neck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dhahran is part of saudi arabia", "pln": ["(: cnet_partof_aaf8f8699f (PartOf dhahran saudi_arabia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dhaka is part of bangladesh", "pln": ["(: cnet_partof_3e03c21250 (PartOf dhaka bangladesh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dhaulagiri is part of himalaya", "pln": ["(: cnet_partof_7ba553ae53 (PartOf dhaulagiri himalaya) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dhaulagiri is part of nepal", "pln": ["(: cnet_partof_ae355d5924 (PartOf dhaulagiri nepal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dhu l hijja is part of islamic calendar", "pln": ["(: cnet_partof_0ca0686d44 (PartOf dhu_l_hijja islamic_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dhu l qa dah is part of islamic calendar", "pln": ["(: cnet_partof_0523a419bb (PartOf dhu_l_qa_dah islamic_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "diagnostic procedure is part of medical diagnosis", "pln": ["(: cnet_partof_4e4b0cf99e (PartOf diagnostic_procedure medical_diagnosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "diagonal is part of checkerboard", "pln": ["(: cnet_partof_4b281225ba (PartOf diagonal checkerboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "diagonal is part of square matrix", "pln": ["(: cnet_partof_daf4a0cc51 (PartOf diagonal square_matrix) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "diakinesis is part of prophase", "pln": ["(: cnet_partof_59d5857074 (PartOf diakinesis prophase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dial is part of dial telephone", "pln": ["(: cnet_partof_6174e3bf5e (PartOf dial dial_telephone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dial is part of timepiece", "pln": ["(: cnet_partof_26f9dced7a (PartOf dial timepiece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dialog box is part of graphical user interface", "pln": ["(: cnet_partof_51321f6630 (PartOf dialog_box graphical_user_interface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "diamond point is part of stylus", "pln": ["(: cnet_partof_96a99e57dd (PartOf diamond_point stylus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "diaphragm is part of torso", "pln": ["(: cnet_partof_7388a9149d (PartOf diaphragm torso) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "diaphragm is part of camera", "pln": ["(: cnet_partof_a9dfdb0afe (PartOf diaphragm camera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "diaphragm is part of electro acoustic transducer", "pln": ["(: cnet_partof_58243dfe4b (PartOf diaphragm electro_acoustic_transducer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "diarrhea is part of dysentery", "pln": ["(: cnet_partof_15983e6baa (PartOf diarrhea dysentery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dickey is part of shirt", "pln": ["(: cnet_partof_1d7d854884 (PartOf dickey shirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "diencephalon is part of forebrain", "pln": ["(: cnet_partof_f2d6a88007 (PartOf diencephalon forebrain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "diesel is part of diesel locomotive", "pln": ["(: cnet_partof_3284a2ff5e (PartOf diesel diesel_locomotive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "diffuser is part of lamp", "pln": ["(: cnet_partof_4495a5bcc8 (PartOf diffuser lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "diffuser is part of lighting fixture", "pln": ["(: cnet_partof_522255c3e1 (PartOf diffuser lighting_fixture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "digestive gland is part of digestive system", "pln": ["(: cnet_partof_dd60367b34 (PartOf digestive_gland digestive_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "digestive juice is part of digestive system", "pln": ["(: cnet_partof_40da3e2435 (PartOf digestive_juice digestive_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "digestive system is part of body", "pln": ["(: cnet_partof_b42a8f586f (PartOf digestive_system body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "digit is part of vertebrate", "pln": ["(: cnet_partof_7ec3a209cb (PartOf digit vertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "digital artery is part of foot", "pln": ["(: cnet_partof_de4ffcf3a2 (PartOf digital_artery foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "digital artery is part of hand", "pln": ["(: cnet_partof_e1c5fe40ce (PartOf digital_artery hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "digital display is part of digital voltmeter", "pln": ["(: cnet_partof_f73406d9f5 (PartOf digital_display digital_voltmeter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "digital display is part of digital watch", "pln": ["(: cnet_partof_4d215881a2 (PartOf digital_display digital_watch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dijon is part of france", "pln": ["(: cnet_partof_f85beab980 (PartOf dijon france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dika nut is part of wild mango", "pln": ["(: cnet_partof_3e136b074f (PartOf dika_nut wild_mango) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dill is part of dill", "pln": ["(: cnet_partof_fee63bc55f (PartOf dill dill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dill seed is part of dill", "pln": ["(: cnet_partof_c38c5afa66 (PartOf dill_seed dill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dinette is part of dwelling", "pln": ["(: cnet_partof_7ac9b13c4b (PartOf dinette dwelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dining room is part of dwelling", "pln": ["(: cnet_partof_d23addfb21 (PartOf dining_room dwelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "dining room table is part of dining room", "pln": ["(: cnet_partof_837865b09a (PartOf dining_room_table dining_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "diplotene is part of prophase", "pln": ["(: cnet_partof_6cbad8dc14 (PartOf diplotene prophase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dipylon gate is part of athen", "pln": ["(: cnet_partof_fb74ac2412 (PartOf dipylon_gate athen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "discard is part of card game", "pln": ["(: cnet_partof_f4f1e7acbd (PartOf discard card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dish is part of radar", "pln": ["(: cnet_partof_e6220a3185 (PartOf dish radar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dish is part of radio telescope", "pln": ["(: cnet_partof_c790e05731 (PartOf dish radio_telescope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dish is part of meal", "pln": ["(: cnet_partof_a7f86713bd (PartOf dish meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "disk cache is part of computer", "pln": ["(: cnet_partof_cc82a5def7 (PartOf disk_cache computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "disk drive is part of computer", "pln": ["(: cnet_partof_f06442dd2c (PartOf disk_drive computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "diskette is part of computer", "pln": ["(: cnet_partof_7195cdea08 (PartOf diskette computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "disneyland is part of anaheim", "pln": ["(: cnet_partof_64efbee96e (PartOf disneyland anaheim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "display window is part of shopfront", "pln": ["(: cnet_partof_b77cfc3eea (PartOf display_window shopfront) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "distaff is part of spinning wheel", "pln": ["(: cnet_partof_7290135797 (PartOf distaff spinning_wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "distribution is part of marketing", "pln": ["(: cnet_partof_6fdb983c0a (PartOf distribution marketing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "distributor is part of ignition", "pln": ["(: cnet_partof_9a8658034a (PartOf distributor ignition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "distributor cam is part of distributor", "pln": ["(: cnet_partof_158b9f4ae0 (PartOf distributor_cam distributor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "distributor cap is part of distributor", "pln": ["(: cnet_partof_d722937c5f (PartOf distributor_cap distributor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "distributor point is part of distributor", "pln": ["(: cnet_partof_f448d2e0ad (PartOf distributor_point distributor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "district of columbia is part of united state", "pln": ["(: cnet_partof_a8958a6a2c (PartOf district_of_columbia united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "divergent thinking is part of creativity", "pln": ["(: cnet_partof_ed3a985649 (PartOf divergent_thinking creativity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "divi divi is part of divi divi", "pln": ["(: cnet_partof_f72ad688f1 (PartOf divi_divi divi_divi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "diving is part of swimming meet", "pln": ["(: cnet_partof_fa4f88eee8 (PartOf diving swimming_meet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "djanet is part of algeria", "pln": ["(: cnet_partof_8d2f442e79 (PartOf djanet algeria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "djibouti is part of africa", "pln": ["(: cnet_partof_20a62a2383 (PartOf djibouti africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "djibouti is part of djibouti", "pln": ["(: cnet_partof_916517e905 (PartOf djibouti djibouti) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "djibouti is part of somali peninsula", "pln": ["(: cnet_partof_9cb86405af (PartOf djibouti somali_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dnieper is part of belarus", "pln": ["(: cnet_partof_e180dac1dd (PartOf dnieper belarus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dnieper is part of russia", "pln": ["(: cnet_partof_235eb0ccb6 (PartOf dnieper russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dnieper is part of ukraine", "pln": ["(: cnet_partof_d7769820c5 (PartOf dnieper ukraine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "do si do is part of square dance", "pln": ["(: cnet_partof_a6976b30f3 (PartOf do_si_do square_dance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dock is part of tail", "pln": ["(: cnet_partof_8a9e8e0f8f (PartOf dock tail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dock is part of seaport", "pln": ["(: cnet_partof_e19693f133 (PartOf dock seaport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dodecanese is part of greece", "pln": ["(: cnet_partof_d6a988733e (PartOf dodecanese greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dodge city is part of kansa", "pln": ["(: cnet_partof_6651be6c4c (PartOf dodge_city kansa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dodoma is part of tanzania", "pln": ["(: cnet_partof_0ad2697ad9 (PartOf dodoma tanzania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dog day is part of summer", "pln": ["(: cnet_partof_5049a88f30 (PartOf dog_day summer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dog ear is part of page", "pln": ["(: cnet_partof_971d99e6b1 (PartOf dog_ear page) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "doha is part of qatar", "pln": ["(: cnet_partof_5eceb2fe0c (PartOf doha qatar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dokdo is part of territory of korea", "pln": ["(: cnet_partof_2bd2fc4411 (PartOf dokdo territory_of_korea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "dolman sleeve is part of dolman", "pln": ["(: cnet_partof_7c5a396b71 (PartOf dolman_sleeve dolman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "dominica is part of windward islands", "pln": ["(: cnet_partof_18f62eca40 (PartOf dominica windward_islands) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dolomite alp is part of alp", "pln": ["(: cnet_partof_1a482dba01 (PartOf dolomite_alp alp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dolomite alp is part of italy", "pln": ["(: cnet_partof_d09dbc4712 (PartOf dolomite_alp italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dolphin kick is part of butterfly", "pln": ["(: cnet_partof_8b2f02ac88 (PartOf dolphin_kick butterfly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dolphinfish is part of dolphinfish", "pln": ["(: cnet_partof_4c332eda7a (PartOf dolphinfish dolphinfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "domain is part of country", "pln": ["(: cnet_partof_4e5bcad37e (PartOf domain country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dominica is part of caribbean", "pln": ["(: cnet_partof_38e03e6cb7 (PartOf dominica caribbean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dominica is part of dominica", "pln": ["(: cnet_partof_4c65cacd7a (PartOf dominica dominica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dominica is part of windward island", "pln": ["(: cnet_partof_d4b89b8216 (PartOf dominica windward_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dominican republic is part of caribbean", "pln": ["(: cnet_partof_b273a5db4b (PartOf dominican_republic caribbean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dominican republic is part of hispaniola", "pln": ["(: cnet_partof_6ba2ab64ea (PartOf dominican_republic hispaniola) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "dominion day is part of july", "pln": ["(: cnet_partof_62b6361060 (PartOf dominion_day july) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "donets basin is part of ukraine", "pln": ["(: cnet_partof_77a86f0c91 (PartOf donets_basin ukraine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "domino is part of fancy dress", "pln": ["(: cnet_partof_a969b79fb7 (PartOf domino fancy_dress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "don is part of russia", "pln": ["(: cnet_partof_2e5e5a0f65 (PartOf don russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "donet basin is part of ukraine", "pln": ["(: cnet_partof_805686ea01 (PartOf donet_basin ukraine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "donetsk is part of ukraine", "pln": ["(: cnet_partof_7c7682e60a (PartOf donetsk ukraine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "donner pass is part of california", "pln": ["(: cnet_partof_8480c751bd (PartOf donner_pass california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "donner pass is part of sierra nevada", "pln": ["(: cnet_partof_e36b1b76c1 (PartOf donner_pass sierra_nevada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "door is part of doorway", "pln": ["(: cnet_partof_88b459740c (PartOf door doorway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "doorframe is part of doorway", "pln": ["(: cnet_partof_0078841d5e (PartOf doorframe doorway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "doorjamb is part of doorframe", "pln": ["(: cnet_partof_ef4889b369 (PartOf doorjamb doorframe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "doorknob is part of door", "pln": ["(: cnet_partof_d7e13fe0bd (PartOf doorknob door) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "doorknob is part of exterior door", "pln": ["(: cnet_partof_f465cb0426 (PartOf doorknob exterior_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "doorlock is part of car door", "pln": ["(: cnet_partof_a09ab755d1 (PartOf doorlock car_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "doorlock is part of exterior door", "pln": ["(: cnet_partof_6fb21a85fc (PartOf doorlock exterior_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "doorsill is part of doorway", "pln": ["(: cnet_partof_e012c6e8a7 (PartOf doorsill doorway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "doorway is part of wall", "pln": ["(: cnet_partof_9b1ed10798 (PartOf doorway wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "doris is part of greece", "pln": ["(: cnet_partof_b6eaa05589 (PartOf doris greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dormition is part of august", "pln": ["(: cnet_partof_d9d8d7ee8f (PartOf dormition august) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "dortmund is part of germany", "pln": ["(: cnet_partof_6c33099241 (PartOf dortmund germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dot is part of morse", "pln": ["(: cnet_partof_0cc127afc9 (PartOf dot morse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "douala is part of cameroon", "pln": ["(: cnet_partof_82cc473583 (PartOf douala cameroon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "double breasted jacket is part of double breasted suit", "pln": ["(: cnet_partof_62b63d1829 (PartOf double_breasted_jacket double_breasted_suit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "double reed is part of double reed instrument", "pln": ["(: cnet_partof_2a25734e40 (PartOf double_reed double_reed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "doubling is part of card game", "pln": ["(: cnet_partof_4f54ebdb50 (PartOf doubling card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "doubt is part of human experience", "pln": ["(: cnet_partof_20ff3458f3 (PartOf doubt human_experience) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dover is part of delaware", "pln": ["(: cnet_partof_a558a328cb (PartOf dover delaware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "downing street is part of westminster", "pln": ["(: cnet_partof_9d339f6824 (PartOf downing_street westminster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "downstage is part of theater stage", "pln": ["(: cnet_partof_ed3540312f (PartOf downstage theater_stage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "doxology is part of christian liturgy", "pln": ["(: cnet_partof_595a45e198 (PartOf doxology christian_liturgy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "drain basket is part of sink", "pln": ["(: cnet_partof_f1d6055232 (PartOf drain_basket sink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "dram is part of ounce", "pln": ["(: cnet_partof_695571dab8 (PartOf dram ounce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dramatic composition is part of dramaturgy", "pln": ["(: cnet_partof_98afa357ea (PartOf dramatic_composition dramaturgy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "drawer is part of buffet", "pln": ["(: cnet_partof_185c034f4e (PartOf drawer buffet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "drawer is part of chest of drawer", "pln": ["(: cnet_partof_904388c94d (PartOf drawer chest_of_drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "drawer is part of chiffonier", "pln": ["(: cnet_partof_b477603d48 (PartOf drawer chiffonier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "drawer is part of desk", "pln": ["(: cnet_partof_6dc315b99a (PartOf drawer desk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "drawing room is part of sleeping car", "pln": ["(: cnet_partof_2240b379d6 (PartOf drawing_room sleeping_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "drawstring is part of drawstring bag", "pln": ["(: cnet_partof_865c61074a (PartOf drawstring drawstring_bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dream is part of sleeping", "pln": ["(: cnet_partof_1ed5cf7acd (PartOf dream sleeping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dredge is part of dredger", "pln": ["(: cnet_partof_90467cb21d (PartOf dredge dredger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dredging bucket is part of dredge", "pln": ["(: cnet_partof_2c3748a84f (PartOf dredging_bucket dredge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dresden is part of germany", "pln": ["(: cnet_partof_b264afc499 (PartOf dresden germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dressage is part of three day event", "pln": ["(: cnet_partof_4872689f4b (PartOf dressage three_day_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dressing room is part of bathhouse", "pln": ["(: cnet_partof_e2fe415b57 (PartOf dressing_room bathhouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "dressing room is part of dwelling", "pln": ["(: cnet_partof_188c4f4a23 (PartOf dressing_room dwelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "dressing room is part of theater", "pln": ["(: cnet_partof_6598a6890a (PartOf dressing_room theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "drinking age is part of adulthood", "pln": ["(: cnet_partof_a95075eaec (PartOf drinking_age adulthood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "drip loop is part of line", "pln": ["(: cnet_partof_ef9929b4e1 (PartOf drip_loop line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "drip pan is part of refrigerator", "pln": ["(: cnet_partof_e15b992285 (PartOf drip_pan refrigerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "drive line is part of motor vehicle", "pln": ["(: cnet_partof_7e33a476a5 (PartOf drive_line motor_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "driveshaft is part of drive line", "pln": ["(: cnet_partof_044ee1dab0 (PartOf driveshaft drive_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "driving wheel is part of drive line", "pln": ["(: cnet_partof_9f1a2394a5 (PartOf driving_wheel drive_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "drogheda is part of english civil war", "pln": ["(: cnet_partof_8e8c13462c (PartOf drogheda english_civil_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "drone is part of bagpipe", "pln": ["(: cnet_partof_684dc178dd (PartOf drone bagpipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "drop forge is part of forge", "pln": ["(: cnet_partof_2c0dc8d27a (PartOf drop_forge forge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "drop leaf is part of drop leaf table", "pln": ["(: cnet_partof_73434bd39c (PartOf drop_leaf drop_leaf_table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "drug is part of pharmacopoeia", "pln": ["(: cnet_partof_3d355d2fb7 (PartOf drug pharmacopoeia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "drug enforcement administration is part of department of justice", "pln": ["(: cnet_partof_6083960dbc (PartOf drug_enforcement_administration department_of_justice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "drumhead is part of drum", "pln": ["(: cnet_partof_c2d93a5da2 (PartOf drumhead drum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "drumstick is part of bird", "pln": ["(: cnet_partof_bbb1ce1cae (PartOf drumstick bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dry bulb thermometer is part of psychrometer", "pln": ["(: cnet_partof_c189fb7e5d (PartOf dry_bulb_thermometer psychrometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dry cell is part of dry battery", "pln": ["(: cnet_partof_c9f57251a1 (PartOf dry_cell dry_battery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dry dock is part of shipyard", "pln": ["(: cnet_partof_e45bc6e754 (PartOf dry_dock shipyard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dubai is part of united arab emirate", "pln": ["(: cnet_partof_39e6075e43 (PartOf dubai united_arab_emirate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dublin is part of ireland", "pln": ["(: cnet_partof_54baf82e13 (PartOf dublin ireland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dubrovnik is part of croatia", "pln": ["(: cnet_partof_39d9e4ef91 (PartOf dubrovnik croatia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dubuque is part of iowa", "pln": ["(: cnet_partof_db6711f0df (PartOf dubuque iowa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "duck is part of duck", "pln": ["(: cnet_partof_d8373be1a6 (PartOf duck duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "duck down is part of duck", "pln": ["(: cnet_partof_27b2f191be (PartOf duck_down duck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "duct is part of vascular plant", "pln": ["(: cnet_partof_7733295f29 (PartOf duct vascular_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ductus arteriosus is part of fetus", "pln": ["(: cnet_partof_6ed0610f34 (PartOf ductus_arteriosus fetus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dug is part of female mammal", "pln": ["(: cnet_partof_0c2ebba073 (PartOf dug female_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dugout is part of ballpark", "pln": ["(: cnet_partof_7034112c45 (PartOf dugout ballpark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "duke university is part of durham", "pln": ["(: cnet_partof_19c5f43b05 (PartOf duke_university durham) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "duluth is part of minnesota", "pln": ["(: cnet_partof_e9461e58f9 (PartOf duluth minnesota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dungeness crab is part of dungeness crab", "pln": ["(: cnet_partof_cc9bf24e40 (PartOf dungeness_crab dungeness_crab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dunkirk is part of world war ii", "pln": ["(: cnet_partof_d8f95d1ee1 (PartOf dunkirk world_war_ii) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "durango is part of mexico", "pln": ["(: cnet_partof_4b9dc6d248 (PartOf durango mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "durban is part of south africa", "pln": ["(: cnet_partof_7b01297baf (PartOf durban south_africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "durham is part of north carolina", "pln": ["(: cnet_partof_7d460ee9d3 (PartOf durham north_carolina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "durian is part of durian", "pln": ["(: cnet_partof_79a04051b0 (PartOf durian durian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "durre is part of albania", "pln": ["(: cnet_partof_40ccd834db (PartOf durre albania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dushanbe is part of tajikistan", "pln": ["(: cnet_partof_9d8b8a6dcb (PartOf dushanbe tajikistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dusseldorf is part of germany", "pln": ["(: cnet_partof_f8c3227217 (PartOf dusseldorf germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dust bag is part of vacuum", "pln": ["(: cnet_partof_3676102006 (PartOf dust_bag vacuum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dust bowl is part of great plain", "pln": ["(: cnet_partof_d8255e5d8d (PartOf dust_bowl great_plain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "dyne is part of newton", "pln": ["(: cnet_partof_f0593ebeec (PartOf dyne newton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ear is part of auditory system", "pln": ["(: cnet_partof_e44829f4dd (PartOf ear auditory_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ear is part of head", "pln": ["(: cnet_partof_c1a3bd9da7 (PartOf ear head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "ear is part of vestibular apparatus", "pln": ["(: cnet_partof_b1efd6a65d (PartOf ear vestibular_apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ear is part of corn", "pln": ["(: cnet_partof_1946f57a8d (PartOf ear corn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eardrum is part of ear", "pln": ["(: cnet_partof_530ac5f744 (PartOf eardrum ear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "earflap is part of cap", "pln": ["(: cnet_partof_449bf335c0 (PartOf earflap cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "eaves is part of roof", "pln": ["(: cnet_partof_3c3378ad7d (PartOf eaves roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "earlobe is part of auricle", "pln": ["(: cnet_partof_ed2398ce76 (PartOf earlobe auricle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "early morning hour is part of morning", "pln": ["(: cnet_partof_911c656773 (PartOf early_morning_hour morning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "early warning radar is part of early warning system", "pln": ["(: cnet_partof_df873455c2 (PartOf early_warning_radar early_warning_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "earth is part of solar system", "pln": ["(: cnet_partof_00caff29b4 (PartOf earth solar_system) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "earth is part of universe", "pln": ["(: cnet_partof_a21b41a2d9 (PartOf earth universe) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "east is part of united state", "pln": ["(: cnet_partof_87a8976dd6 (PartOf east united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "east africa is part of africa", "pln": ["(: cnet_partof_9b63a97ca8 (PartOf east_africa africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "east anglia is part of england", "pln": ["(: cnet_partof_9d5636fdf9 (PartOf east_anglia england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "east china sea is part of pacific", "pln": ["(: cnet_partof_98d0502c6e (PartOf east_china_sea pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "east coast is part of east", "pln": ["(: cnet_partof_b2e4196cf2 (PartOf east_coast east) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "east malaysia is part of borneo", "pln": ["(: cnet_partof_abdb8c3ae6 (PartOf east_malaysia borneo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "east malaysia is part of malaysia", "pln": ["(: cnet_partof_715dc3b17a (PartOf east_malaysia malaysia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "east river is part of new york", "pln": ["(: cnet_partof_34b0351e22 (PartOf east_river new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "east saint louis is part of illinois", "pln": ["(: cnet_partof_07d69ef9b5 (PartOf east_saint_louis illinois) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "east sussex is part of england", "pln": ["(: cnet_partof_3563be75a3 (PartOf east_sussex england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "east timor is part of southeast asia", "pln": ["(: cnet_partof_d10d63857f (PartOf east_timor southeast_asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "east timor is part of timor", "pln": ["(: cnet_partof_a4c254977c (PartOf east_timor timor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eastern desert is part of arabian desert", "pln": ["(: cnet_partof_47bf58b25e (PartOf eastern_desert arabian_desert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eastern desert is part of egypt", "pln": ["(: cnet_partof_bfd05576b7 (PartOf eastern_desert egypt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eau claire is part of wisconsin", "pln": ["(: cnet_partof_e2f4f52721 (PartOf eau_claire wisconsin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eave is part of roof", "pln": ["(: cnet_partof_22e3708ae9 (PartOf eave roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ebb is part of ebbtide", "pln": ["(: cnet_partof_3eb90530ea (PartOf ebb ebbtide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ebro is part of spain", "pln": ["(: cnet_partof_897c017b8b (PartOf ebro spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ecclesiaste is part of hagiographa", "pln": ["(: cnet_partof_bbc122079e (PartOf ecclesiaste hagiographa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ecclesiaste is part of old testament", "pln": ["(: cnet_partof_b5a4442a6c (PartOf ecclesiaste old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ecclesiaste is part of sapiential book", "pln": ["(: cnet_partof_eef23d16e3 (PartOf ecclesiaste sapiential_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "economic theory is part of economic", "pln": ["(: cnet_partof_d69c3543c7 (PartOf economic_theory economic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ecuador is part of south america", "pln": ["(: cnet_partof_831795cd44 (PartOf ecuador south_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "edging is part of fabric", "pln": ["(: cnet_partof_e54bdf65cb (PartOf edging fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "edging is part of rug", "pln": ["(: cnet_partof_47b89f7dbb (PartOf edging rug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "edging is part of tapestry", "pln": ["(: cnet_partof_f17f6acf60 (PartOf edging tapestry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "edinburgh is part of lothian region", "pln": ["(: cnet_partof_604dba996b (PartOf edinburgh lothian_region) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "edirne is part of turkey", "pln": ["(: cnet_partof_dab8f3021c (PartOf edirne turkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "edmonton is part of alberta", "pln": ["(: cnet_partof_1399bcc03e (PartOf edmonton alberta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eel is part of common eel", "pln": ["(: cnet_partof_7b053621a5 (PartOf eel common_eel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "effacement is part of parturiency", "pln": ["(: cnet_partof_c8dc3ccd67 (PartOf effacement parturiency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "efferent fiber is part of motor nerve", "pln": ["(: cnet_partof_9b4ec0cf71 (PartOf efferent_fiber motor_nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "effleurage is part of lamaze method of childbirth", "pln": ["(: cnet_partof_caea133bdf (PartOf effleurage lamaze_method_of_childbirth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "egadi island is part of mediterranean", "pln": ["(: cnet_partof_8f5119caec (PartOf egadi_island mediterranean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "egadi island is part of sicily", "pln": ["(: cnet_partof_225ffe902d (PartOf egadi_island sicily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "egg white is part of egg", "pln": ["(: cnet_partof_f963d5b979 (PartOf egg_white egg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "egg yolk is part of egg", "pln": ["(: cnet_partof_1a1a01321a (PartOf egg_yolk egg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eggplant is part of eggplant", "pln": ["(: cnet_partof_76ff880c28 (PartOf eggplant eggplant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "egress is part of eclipse", "pln": ["(: cnet_partof_2a455bc9da (PartOf egress eclipse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "eighteenth amendment is part of united states constitution", "pln": ["(: cnet_partof_7ea546cde8 (PartOf eighteenth_amendment united_states_constitution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "egypt is part of africa", "pln": ["(: cnet_partof_151a50c9f0 (PartOf egypt africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "egypt is part of middle east", "pln": ["(: cnet_partof_6dccf4fa79 (PartOf egypt middle_east) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ehadhamen is part of tunisia", "pln": ["(: cnet_partof_d2962af60f (PartOf ehadhamen tunisia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eiderdown is part of eider", "pln": ["(: cnet_partof_d0c0cf2d95 (PartOf eiderdown eider) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eiffel tower is part of paris", "pln": ["(: cnet_partof_1dbc552164 (PartOf eiffel_tower paris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eighteenth amendment is part of united state constitution", "pln": ["(: cnet_partof_6e5a3bbeb5 (PartOf eighteenth_amendment united_state_constitution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eighty is part of old age", "pln": ["(: cnet_partof_660ef1e941 (PartOf eighty old_age) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eindhoven is part of netherland", "pln": ["(: cnet_partof_f77e99d0ad (PartOf eindhoven netherland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ejaculatory duct is part of seminal duct", "pln": ["(: cnet_partof_9c17199dc1 (PartOf ejaculatory_duct seminal_duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ejection seat is part of cockpit", "pln": ["(: cnet_partof_eb3f8a4db2 (PartOf ejection_seat cockpit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "el aaium is part of morocco", "pln": ["(: cnet_partof_cfd801b025 (PartOf el_aaium morocco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "el alamein is part of world war ii", "pln": ["(: cnet_partof_f11172b2b5 (PartOf el_alamein world_war_ii) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "el alamein is part of egypt", "pln": ["(: cnet_partof_ea56effbcf (PartOf el_alamein egypt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "el libertador is part of ande", "pln": ["(: cnet_partof_75962786f1 (PartOf el_libertador ande) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "el libertador is part of argentina", "pln": ["(: cnet_partof_3b5395746a (PartOf el_libertador argentina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "el misti is part of peru", "pln": ["(: cnet_partof_e98e486035 (PartOf el_misti peru) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "el muerto is part of ande", "pln": ["(: cnet_partof_97a2748951 (PartOf el_muerto ande) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "el muerto is part of argentina", "pln": ["(: cnet_partof_c529eb2a25 (PartOf el_muerto argentina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "el muerto is part of chile", "pln": ["(: cnet_partof_bf283e050d (PartOf el_muerto chile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "el paso is part of texa", "pln": ["(: cnet_partof_26c32b1d77 (PartOf el_paso texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "el salvador is part of central america", "pln": ["(: cnet_partof_2697731093 (PartOf el_salvador central_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "elbe is part of europe", "pln": ["(: cnet_partof_21d92aa5dc (PartOf elbe europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "elbow is part of foreleg", "pln": ["(: cnet_partof_b45934811f (PartOf elbow foreleg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "elbow is part of sleeve", "pln": ["(: cnet_partof_19a2745d8e (PartOf elbow sleeve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "elbow is part of arm", "pln": ["(: cnet_partof_39025cf91b (PartOf elbow arm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "elderberry is part of american elder", "pln": ["(: cnet_partof_ceee83d83f (PartOf elderberry american_elder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "electric drill is part of drill press", "pln": ["(: cnet_partof_b0b6068532 (PartOf electric_drill drill_press) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "electric main is part of grid", "pln": ["(: cnet_partof_3118d0033e (PartOf electric_main grid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "electric motor is part of drum sander", "pln": ["(: cnet_partof_f79e157b11 (PartOf electric_motor drum_sander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "electric motor is part of electric clock", "pln": ["(: cnet_partof_fca008a556 (PartOf electric_motor electric_clock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "electric motor is part of electric drill", "pln": ["(: cnet_partof_9861ce4c96 (PartOf electric_motor electric_drill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "electric motor is part of electric fan", "pln": ["(: cnet_partof_8bc200b804 (PartOf electric_motor electric_fan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "electric motor is part of electric hammer", "pln": ["(: cnet_partof_bde267310a (PartOf electric_motor electric_hammer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "electric motor is part of electric locomotive", "pln": ["(: cnet_partof_c11e56aff5 (PartOf electric_motor electric_locomotive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "electric motor is part of electric mixer", "pln": ["(: cnet_partof_ab3314a866 (PartOf electric_motor electric_mixer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "electric motor is part of electric refrigerator", "pln": ["(: cnet_partof_c436ccebcb (PartOf electric_motor electric_refrigerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "electric motor is part of electric toothbrush", "pln": ["(: cnet_partof_b9b4efa0e0 (PartOf electric_motor electric_toothbrush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "electric motor is part of electric typewriter", "pln": ["(: cnet_partof_1da614ff0e (PartOf electric_motor electric_typewriter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "electric motor is part of self starter", "pln": ["(: cnet_partof_1189485661 (PartOf electric_motor self_starter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "electric motor is part of trolleybus", "pln": ["(: cnet_partof_70af638754 (PartOf electric_motor trolleybus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "electric socket is part of lamp", "pln": ["(: cnet_partof_458ca6717f (PartOf electric_socket lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "electrical system is part of motor vehicle", "pln": ["(: cnet_partof_84b7f7ae47 (PartOf electrical_system motor_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "electrocardiogram is part of checkup", "pln": ["(: cnet_partof_a12068fd32 (PartOf electrocardiogram checkup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "electrode is part of battery", "pln": ["(: cnet_partof_2070a20e4c (PartOf electrode battery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "electrode is part of electrolytic cell", "pln": ["(: cnet_partof_24f7c5dc7e (PartOf electrode electrolytic_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "electrode is part of electronic equipment", "pln": ["(: cnet_partof_e6e54eccbf (PartOf electrode electronic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "electrode is part of tube", "pln": ["(: cnet_partof_8a33ebb17f (PartOf electrode tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "electromagnet is part of electric bell", "pln": ["(: cnet_partof_38974fc734 (PartOf electromagnet electric_bell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "electromagnet is part of relay", "pln": ["(: cnet_partof_372a292dc0 (PartOf electromagnet relay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "electron is part of atom", "pln": ["(: cnet_partof_4f028da4c5 (PartOf electron atom) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "electron gun is part of cathode ray tube", "pln": ["(: cnet_partof_8fd583c3b6 (PartOf electron_gun cathode_ray_tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "electron gun is part of electron microscope", "pln": ["(: cnet_partof_1bbd6e5ab2 (PartOf electron_gun electron_microscope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "elementary particle is part of atom", "pln": ["(: cnet_partof_a6ba88e46e (PartOf elementary_particle atom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "elevator is part of building", "pln": ["(: cnet_partof_11155ab122 (PartOf elevator building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "elevator is part of horizontal tail", "pln": ["(: cnet_partof_884d850af8 (PartOf elevator horizontal_tail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "elizabeth river is part of virginia", "pln": ["(: cnet_partof_e7abed6c03 (PartOf elizabeth_river virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ellis island is part of new jersey", "pln": ["(: cnet_partof_76e3042eab (PartOf ellis_island new_jersey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "elmont is part of long island", "pln": ["(: cnet_partof_89711e3c04 (PartOf elmont long_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "elul is part of jewish calendar", "pln": ["(: cnet_partof_931f9ee24c (PartOf elul jewish_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "em is part of inch", "pln": ["(: cnet_partof_804f342ec4 (PartOf em inch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "embolism is part of calendar", "pln": ["(: cnet_partof_0537eaf2a9 (PartOf embolism calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "embolus is part of embolism", "pln": ["(: cnet_partof_5b664d087c (PartOf embolus embolism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "emilia romagna is part of italy", "pln": ["(: cnet_partof_9d816ce1a0 (PartOf emilia_romagna italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "emitter is part of transistor", "pln": ["(: cnet_partof_3eb98c9baa (PartOf emitter transistor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "emotion is part of mind", "pln": ["(: cnet_partof_3d214025a2 (PartOf emotion mind) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "empire state building is part of new york", "pln": ["(: cnet_partof_137b0dc750 (PartOf empire_state_building new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "employee is part of company", "pln": ["(: cnet_partof_14f8d5a7d3 (PartOf employee company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "en is part of em", "pln": ["(: cnet_partof_036a21b918 (PartOf en em) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "enamel is part of crown", "pln": ["(: cnet_partof_c0225f919f (PartOf enamel crown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "encolure is part of horse", "pln": ["(: cnet_partof_7e3a9f8b63 (PartOf encolure horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "end plate is part of effector", "pln": ["(: cnet_partof_acb43c36c2 (PartOf end_plate effector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "enderby land is part of antarctica", "pln": ["(: cnet_partof_a67008ea7b (PartOf enderby_land antarctica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "endocranium is part of skull", "pln": ["(: cnet_partof_75330468c4 (PartOf endocranium skull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "endocrine gland is part of endocrine system", "pln": ["(: cnet_partof_9cc646400c (PartOf endocrine_gland endocrine_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "endocrine system is part of body", "pln": ["(: cnet_partof_f4cd96ebc8 (PartOf endocrine_system body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "endolymph is part of inner ear", "pln": ["(: cnet_partof_6152a039dd (PartOf endolymph inner_ear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "endometrium is part of uterus", "pln": ["(: cnet_partof_64298b62f3 (PartOf endometrium uterus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "endosperm is part of seed", "pln": ["(: cnet_partof_e9933ee7fb (PartOf endosperm seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "endosteum is part of long bone", "pln": ["(: cnet_partof_2f01bf4268 (PartOf endosteum long_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "energid is part of cell", "pln": ["(: cnet_partof_9be033e390 (PartOf energid cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "engine is part of automobile", "pln": ["(: cnet_partof_c2282bc9e8 (PartOf engine automobile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "engine is part of car", "pln": ["(: cnet_partof_dc637b9bdb (PartOf engine car) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "engine block is part of internal combustion engine", "pln": ["(: cnet_partof_eefbac57e7 (PartOf engine_block internal_combustion_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "engine block is part of reciprocating engine", "pln": ["(: cnet_partof_05dffa503a (PartOf engine_block reciprocating_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "england is part of europe", "pln": ["(: cnet_partof_eff391024a (PartOf england europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "england is part of united kingdom", "pln": ["(: cnet_partof_5bc8f6236c (PartOf england united_kingdom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "english channel is part of atlantic", "pln": ["(: cnet_partof_f87a7fb958 (PartOf english_channel atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "enid is part of oklahoma", "pln": ["(: cnet_partof_7734aad689 (PartOf enid oklahoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eniwetok is part of world war ii", "pln": ["(: cnet_partof_e543ce3724 (PartOf eniwetok world_war_ii) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eniwetok is part of marshall island", "pln": ["(: cnet_partof_117934c0a3 (PartOf eniwetok marshall_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "entablature is part of temple", "pln": ["(: cnet_partof_7844eaf422 (PartOf entablature temple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "entasis is part of column", "pln": ["(: cnet_partof_a475f8c4cf (PartOf entasis column) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "entebbe is part of uganda", "pln": ["(: cnet_partof_b1324cf3b1 (PartOf entebbe uganda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "entomion is part of parietal bone", "pln": ["(: cnet_partof_2bd7baa508 (PartOf entomion parietal_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "envelope is part of balloon", "pln": ["(: cnet_partof_0b4ea6c091 (PartOf envelope balloon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eocene is part of tertiary", "pln": ["(: cnet_partof_bcd83ac962 (PartOf eocene tertiary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eolithic age is part of stone age", "pln": ["(: cnet_partof_ba04c8c351 (PartOf eolithic_age stone_age) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "epauliere is part of body armor", "pln": ["(: cnet_partof_6ebd4a9140 (PartOf epauliere body_armor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ephah is part of homer", "pln": ["(: cnet_partof_971ca6211c (PartOf ephah homer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ephesus is part of asia minor", "pln": ["(: cnet_partof_aeeae6ee76 (PartOf ephesus asia_minor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "epicanthus is part of eye", "pln": ["(: cnet_partof_229ec00471 (PartOf epicanthus eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "epicardia is part of esophagus", "pln": ["(: cnet_partof_b45a6328c7 (PartOf epicardia esophagus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "epicardium is part of pericardium", "pln": ["(: cnet_partof_a87761fee1 (PartOf epicardium pericardium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "epidermal cell is part of epidermis", "pln": ["(: cnet_partof_fa2b9e3dd8 (PartOf epidermal_cell epidermis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "epidermis is part of skin", "pln": ["(: cnet_partof_7d98b0daaf (PartOf epidermis skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "epididymis is part of seminal duct", "pln": ["(: cnet_partof_0c0a863e1c (PartOf epididymis seminal_duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "epididymis is part of testis", "pln": ["(: cnet_partof_8173c8c4ce (PartOf epididymis testis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "epiglottis is part of trachea", "pln": ["(: cnet_partof_efdac401f4 (PartOf epiglottis trachea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "epileptic seizure is part of epilepsy", "pln": ["(: cnet_partof_87d5639f0c (PartOf epileptic_seizure epilepsy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "epilogue is part of writing", "pln": ["(: cnet_partof_1a7207ae57 (PartOf epilogue writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "epiphany is part of january", "pln": ["(: cnet_partof_d14240e411 (PartOf epiphany january) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "epirus is part of albania", "pln": ["(: cnet_partof_20ca4239bf (PartOf epirus albania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "epirus is part of greece", "pln": ["(: cnet_partof_bcea6d069e (PartOf epirus greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "episode is part of serial", "pln": ["(: cnet_partof_c5b7c93866 (PartOf episode serial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "epistle is part of new testament", "pln": ["(: cnet_partof_b8214de16e (PartOf epistle new_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "epistle of jame is part of new testament", "pln": ["(: cnet_partof_1f1dcf9b5c (PartOf epistle_of_jame new_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "epistle of jude is part of new testament", "pln": ["(: cnet_partof_e2d446117c (PartOf epistle_of_jude new_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "epistle to hebrews is part of new testament", "pln": ["(: cnet_partof_50191a0fa2 (PartOf epistle_to_hebrews new_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "epistle of paul apostle to colossian is part of new testament", "pln": ["(: cnet_partof_2d0e43d176 (PartOf epistle_of_paul_apostle_to_colossian new_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "epistle of paul apostle to ephesian is part of new testament", "pln": ["(: cnet_partof_053ac1765d (PartOf epistle_of_paul_apostle_to_ephesian new_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "epistle of paul apostle to galatian is part of new testament", "pln": ["(: cnet_partof_9348da7e44 (PartOf epistle_of_paul_apostle_to_galatian new_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "epistle of paul apostle to philippian is part of new testament", "pln": ["(: cnet_partof_8974ebabce (PartOf epistle_of_paul_apostle_to_philippian new_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "epistle of paul apostle to roman is part of new testament", "pln": ["(: cnet_partof_8e8dd9addb (PartOf epistle_of_paul_apostle_to_roman new_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "epistle of paul apostle to titus is part of new testament", "pln": ["(: cnet_partof_58b88755bc (PartOf epistle_of_paul_apostle_to_titus new_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "epistle to hebrew is part of new testament", "pln": ["(: cnet_partof_2c2dc0c992 (PartOf epistle_to_hebrew new_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "epithelial cell is part of epithelium", "pln": ["(: cnet_partof_0596646fdf (PartOf epithelial_cell epithelium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "epoch is part of period", "pln": ["(: cnet_partof_95b1473f8a (PartOf epoch period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "equality for everyone is part of communism", "pln": ["(: cnet_partof_4f68edb9c7 (PartOf equality_for_everyone communism) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "equality for everyone is part of democracy", "pln": ["(: cnet_partof_b76a779b75 (PartOf equality_for_everyone democracy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "equatorial guinea is part of africa", "pln": ["(: cnet_partof_6bcdaba324 (PartOf equatorial_guinea africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "era is part of eon", "pln": ["(: cnet_partof_23b29faed8 (PartOf era eon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "erectile tissue is part of erectile organ", "pln": ["(: cnet_partof_cd42165db2 (PartOf erectile_tissue erectile_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "erg is part of joule", "pln": ["(: cnet_partof_f10c7885e3 (PartOf erg joule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "erie is part of pennsylvania", "pln": ["(: cnet_partof_0defc7b846 (PartOf erie pennsylvania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "erie canal is part of new york", "pln": ["(: cnet_partof_5bef333b42 (PartOf erie_canal new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "erie canal is part of new york state barge canal", "pln": ["(: cnet_partof_a09d9963d9 (PartOf erie_canal new_york_state_barge_canal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eritrea is part of somali peninsula", "pln": ["(: cnet_partof_a50347b897 (PartOf eritrea somali_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "erythema nodosum leprosum is part of leprosy", "pln": ["(: cnet_partof_93ae28240a (PartOf erythema_nodosum_leprosum leprosy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "escape hatch is part of airplane", "pln": ["(: cnet_partof_7163bfec72 (PartOf escape_hatch airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "escape hatch is part of submarine", "pln": ["(: cnet_partof_29455f283f (PartOf escape_hatch submarine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "escape wheel is part of escapement", "pln": ["(: cnet_partof_07b1f506ed (PartOf escape_wheel escapement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "escapement is part of timepiece", "pln": ["(: cnet_partof_0ee5fcf8c7 (PartOf escapement timepiece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "escutcheon is part of stern", "pln": ["(: cnet_partof_33b447ab52 (PartOf escutcheon stern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "esophagus is part of alimentary canal", "pln": ["(: cnet_partof_06dc1677b5 (PartOf esophagus alimentary_canal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "espoo is part of finland", "pln": ["(: cnet_partof_5e2463dd06 (PartOf espoo finland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "essen is part of germany", "pln": ["(: cnet_partof_4667a61bd1 (PartOf essen germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "essex is part of england", "pln": ["(: cnet_partof_c865fff017 (PartOf essex england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "estate is part of state", "pln": ["(: cnet_partof_d11eb6db51 (PartOf estate state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "esther is part of hagiographa", "pln": ["(: cnet_partof_13d14c95d0 (PartOf esther hagiographa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "esther is part of old testament", "pln": ["(: cnet_partof_b14ec54e2d (PartOf esther old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "estivation is part of flower bud", "pln": ["(: cnet_partof_26a7dec325 (PartOf estivation flower_bud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "estonia is part of europe", "pln": ["(: cnet_partof_95659bdd83 (PartOf estonia europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "estuary is part of river", "pln": ["(: cnet_partof_7ec21e1371 (PartOf estuary river) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ethernet cable is part of ethernet", "pln": ["(: cnet_partof_43e82d5b4a (PartOf ethernet_cable ethernet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ethiopia is part of africa", "pln": ["(: cnet_partof_ce0543902b (PartOf ethiopia africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "ethiopia is part of somali peninsula", "pln": ["(: cnet_partof_4185bc38f7 (PartOf ethiopia somali_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ethmoid is part of cranium", "pln": ["(: cnet_partof_a8126e7003 (PartOf ethmoid cranium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ethmoidal artery is part of nose", "pln": ["(: cnet_partof_1cb39c3f6e (PartOf ethmoidal_artery nose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "etna is part of sicily", "pln": ["(: cnet_partof_cdb1a3d04d (PartOf etna sicily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eton college is part of berkshire", "pln": ["(: cnet_partof_43397c68d6 (PartOf eton_college berkshire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "etruria is part of italy", "pln": ["(: cnet_partof_363fedf8cd (PartOf etruria italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eugene is part of oregon", "pln": ["(: cnet_partof_13d884553b (PartOf eugene oregon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "euphrate is part of iraq", "pln": ["(: cnet_partof_53e39a1209 (PartOf euphrate iraq) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "euphrate is part of syria", "pln": ["(: cnet_partof_17c50afb27 (PartOf euphrate syria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "euphrate is part of turkey", "pln": ["(: cnet_partof_49313f4cff (PartOf euphrate turkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "eurasia is part of eastern hemisphere", "pln": ["(: cnet_partof_26f3763f36 (PartOf eurasia eastern_hemisphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eurasia is part of northern hemisphere", "pln": ["(: cnet_partof_fe92f0f7bb (PartOf eurasia northern_hemisphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eureka is part of california", "pln": ["(: cnet_partof_2117a7203e (PartOf eureka california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "europe is part of eurasia", "pln": ["(: cnet_partof_56e360bc7e (PartOf europe eurasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "europe is part of occident", "pln": ["(: cnet_partof_182c8ab0d3 (PartOf europe occident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "european country is part of europe", "pln": ["(: cnet_partof_ef275f3f55 (PartOf european_country europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "european russia is part of europe", "pln": ["(: cnet_partof_bbf8a3c802 (PartOf european_russia europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "european russia is part of russia", "pln": ["(: cnet_partof_39c09af1fa (PartOf european_russia russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "european smelt is part of sparling", "pln": ["(: cnet_partof_7a7221215b (PartOf european_smelt sparling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eustachian tube is part of middle ear", "pln": ["(: cnet_partof_41d672fdf3 (PartOf eustachian_tube middle_ear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "evansville is part of indiana", "pln": ["(: cnet_partof_c8ec0b42a2 (PartOf evansville indiana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "evening is part of night", "pln": ["(: cnet_partof_ac1341ea74 (PartOf evening night) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "everest is part of himalaya", "pln": ["(: cnet_partof_bca7f521aa (PartOf everest himalaya) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "everest is part of nepal", "pln": ["(: cnet_partof_dacb9124a6 (PartOf everest nepal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "everest is part of tibet", "pln": ["(: cnet_partof_c384c51448 (PartOf everest tibet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "everglade is part of florida", "pln": ["(: cnet_partof_d009adddd3 (PartOf everglade florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "everglade national park is part of florida", "pln": ["(: cnet_partof_bf18496ad4 (PartOf everglade_national_park florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "evocation is part of exorcism", "pln": ["(: cnet_partof_62d8ad2418 (PartOf evocation exorcism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "exabit is part of zettabit", "pln": ["(: cnet_partof_5c09739ae2 (PartOf exabit zettabit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "exabyte is part of zb", "pln": ["(: cnet_partof_d3cdd5c8f2 (PartOf exabyte zb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "exaltation is part of zodiac", "pln": ["(: cnet_partof_2e9cdaeba2 (PartOf exaltation zodiac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "exbibit is part of zebibit", "pln": ["(: cnet_partof_337f11cf26 (PartOf exbibit zebibit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "exbibyte is part of zettabyte", "pln": ["(: cnet_partof_2eac6ec961 (PartOf exbibyte zettabyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "excretory organ is part of urogenital system", "pln": ["(: cnet_partof_9f953cb265 (PartOf excretory_organ urogenital_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "execution is part of data processing", "pln": ["(: cnet_partof_7e08ad95b7 (PartOf execution data_processing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "executive agency is part of executive branch", "pln": ["(: cnet_partof_43988cf96e (PartOf executive_agency executive_branch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "exhalation is part of breathing", "pln": ["(: cnet_partof_6a25f7f0fe (PartOf exhalation breathing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "exhaust is part of automobile engine", "pln": ["(: cnet_partof_9c2cc13794 (PartOf exhaust automobile_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "exhaust manifold is part of exhaust", "pln": ["(: cnet_partof_7c2e19cdc8 (PartOf exhaust_manifold exhaust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "exhaust pipe is part of exhaust", "pln": ["(: cnet_partof_a43cd73a7e (PartOf exhaust_pipe exhaust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "exhaust valve is part of exhaust", "pln": ["(: cnet_partof_0f06057134 (PartOf exhaust_valve exhaust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "exodus is part of old testament", "pln": ["(: cnet_partof_05863ac55c (PartOf exodus old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "exodus is part of torah", "pln": ["(: cnet_partof_2c2c99f406 (PartOf exodus torah) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "exophthalmo is part of hyperthyroidism", "pln": ["(: cnet_partof_eb870b47bc (PartOf exophthalmo hyperthyroidism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "exosphere is part of atmosphere", "pln": ["(: cnet_partof_794a2f3a46 (PartOf exosphere atmosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "explanan is part of explanation", "pln": ["(: cnet_partof_5aabf0d21e (PartOf explanan explanation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "explicandum is part of explanation", "pln": ["(: cnet_partof_5abde4eb84 (PartOf explicandum explanation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "explosive is part of explosive device", "pln": ["(: cnet_partof_c68bd4edaf (PartOf explosive explosive_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "extension is part of filename", "pln": ["(: cnet_partof_986b1a60ea (PartOf extension filename) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "extension course is part of extension", "pln": ["(: cnet_partof_b41ee04ebc (PartOf extension_course extension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "exterior door is part of building", "pln": ["(: cnet_partof_cff9f6cc48 (PartOf exterior_door building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "external ear is part of auditory apparatus", "pln": ["(: cnet_partof_97e5ba3554 (PartOf external_ear auditory_apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "extraterrestrial object is part of universe", "pln": ["(: cnet_partof_bd60828392 (PartOf extraterrestrial_object universe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "extremely high frequency is part of electromagnetic spectrum", "pln": ["(: cnet_partof_5b2d2b45fb (PartOf extremely_high_frequency electromagnetic_spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "extremely low frequency is part of electromagnetic spectrum", "pln": ["(: cnet_partof_cb4bd781b2 (PartOf extremely_low_frequency electromagnetic_spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "extremity is part of limb", "pln": ["(: cnet_partof_9cccc42cce (PartOf extremity limb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eye is part of face", "pln": ["(: cnet_partof_d12debff2c (PartOf eye face) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eye is part of head", "pln": ["(: cnet_partof_ad5c3fe303 (PartOf eye head) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "eye is part of needle", "pln": ["(: cnet_partof_3e8389b34f (PartOf eye needle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eye is part of visual system", "pln": ["(: cnet_partof_ca18440b70 (PartOf eye visual_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eye socket is part of skull", "pln": ["(: cnet_partof_c164969adf (PartOf eye_socket skull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eyeball is part of eye", "pln": ["(: cnet_partof_8bf5ebe3d2 (PartOf eyeball eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eyebrow is part of face", "pln": ["(: cnet_partof_62a0719026 (PartOf eyebrow face) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "eyelash is part of eyelid", "pln": ["(: cnet_partof_8484bb0636 (PartOf eyelash eyelid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eyelet is part of boot", "pln": ["(: cnet_partof_1fa5b962ad (PartOf eyelet boot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eyelet is part of curtain", "pln": ["(: cnet_partof_5a8a22bbae (PartOf eyelet curtain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eyelet is part of garment", "pln": ["(: cnet_partof_b23d36d948 (PartOf eyelet garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eyelid is part of eye", "pln": ["(: cnet_partof_b3fa9906f7 (PartOf eyelid eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eyepiece is part of binocular", "pln": ["(: cnet_partof_d3fc34d0d2 (PartOf eyepiece binocular) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eyepiece is part of light microscope", "pln": ["(: cnet_partof_2c0c59dfc2 (PartOf eyepiece light_microscope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "eyepiece is part of optical telescope", "pln": ["(: cnet_partof_287e9aec97 (PartOf eyepiece optical_telescope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eyepiece is part of sight", "pln": ["(: cnet_partof_49048d1403 (PartOf eyepiece sight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "eyre is part of australia", "pln": ["(: cnet_partof_050b29ff6c (PartOf eyre australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "eyre peninsula is part of australia", "pln": ["(: cnet_partof_c95e3eed8a (PartOf eyre_peninsula australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "ezekiel is part of old testament", "pln": ["(: cnet_partof_0070b4d9dd (PartOf ezekiel old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ezekiel is part of prophet", "pln": ["(: cnet_partof_f69ec2411e (PartOf ezekiel prophet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "ezra is part of hagiographa", "pln": ["(: cnet_partof_a6d64f1ad7 (PartOf ezra hagiographa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ezra is part of old testament", "pln": ["(: cnet_partof_97278ddbd3 (PartOf ezra old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "face is part of clock", "pln": ["(: cnet_partof_93b9646736 (PartOf face clock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "face is part of golf club head", "pln": ["(: cnet_partof_7382d35742 (PartOf face golf_club_head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "face is part of head", "pln": ["(: cnet_partof_f3d46491d8 (PartOf face head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "face is part of playing card", "pln": ["(: cnet_partof_1e05acaeea (PartOf face playing_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "face is part of racket", "pln": ["(: cnet_partof_576cf62091 (PartOf face racket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "face is part of watch", "pln": ["(: cnet_partof_c9e4abedff (PartOf face watch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "face is part of animal", "pln": ["(: cnet_partof_d7208f2c71 (PartOf face animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "face is part of homo", "pln": ["(: cnet_partof_1c481fc2f1 (PartOf face homo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "falkland islands is part of atlantic", "pln": ["(: cnet_partof_2bc504bc31 (PartOf falkland_islands atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "face guard is part of football helmet", "pln": ["(: cnet_partof_7361063c49 (PartOf face_guard football_helmet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "face off is part of ice hockey", "pln": ["(: cnet_partof_9e29984b6b (PartOf face_off ice_hockey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "facial is part of face", "pln": ["(: cnet_partof_40601c7ffe (PartOf facial face) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "facial muscle is part of face", "pln": ["(: cnet_partof_5ba2a7fb1a (PartOf facial_muscle face) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "facial vein is part of face", "pln": ["(: cnet_partof_1e91e2d71a (PartOf facial_vein face) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "facing is part of collar", "pln": ["(: cnet_partof_381ba771a2 (PartOf facing collar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "facing is part of cuff", "pln": ["(: cnet_partof_d73e25b80c (PartOf facing cuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "faggot stitch is part of faggoting", "pln": ["(: cnet_partof_6c10c727ba (PartOf faggot_stitch faggoting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fairway is part of golf course", "pln": ["(: cnet_partof_f2b71e9e2e (PartOf fairway golf_course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "faisalabad is part of pakistan", "pln": ["(: cnet_partof_31ccdea4f3 (PartOf faisalabad pakistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "falkland island is part of atlantic", "pln": ["(: cnet_partof_1b20e72f26 (PartOf falkland_island atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fall is part of wrestling match", "pln": ["(: cnet_partof_5580906643 (PartOf fall wrestling_match) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fall board is part of piano", "pln": ["(: cnet_partof_06c13a4a62 (PartOf fall_board piano) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fallopian tube is part of female reproductive system", "pln": ["(: cnet_partof_f01d5a3e8f (PartOf fallopian_tube female_reproductive_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fallopian tube is part of uterus", "pln": ["(: cnet_partof_f1bde86035 (PartOf fallopian_tube uterus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "false face is part of fancy dress", "pln": ["(: cnet_partof_e0d693d7c4 (PartOf false_face fancy_dress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "family history is part of medical history", "pln": ["(: cnet_partof_17db143f8f (PartOf family_history medical_history) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "family room is part of dwelling", "pln": ["(: cnet_partof_b1a2c43e4f (PartOf family_room dwelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fan is part of cooling system", "pln": ["(: cnet_partof_da77b223f9 (PartOf fan cooling_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fan belt is part of cooling system", "pln": ["(: cnet_partof_e4e2839b23 (PartOf fan_belt cooling_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fan blade is part of electric fan", "pln": ["(: cnet_partof_223f38b15a (PartOf fan_blade electric_fan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "fan letter is part of fan mail", "pln": ["(: cnet_partof_401357238e (PartOf fan_letter fan_mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "fan tracery is part of fan vaulting", "pln": ["(: cnet_partof_93bfca2422 (PartOf fan_tracery fan_vaulting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fantail is part of afterdeck", "pln": ["(: cnet_partof_4893397909 (PartOf fantail afterdeck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "far east is part of east", "pln": ["(: cnet_partof_477f90623c (PartOf far_east east) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "farad is part of abfarad", "pln": ["(: cnet_partof_7b32f38e84 (PartOf farad abfarad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fargo is part of north dakota", "pln": ["(: cnet_partof_cb19c552b7 (PartOf fargo north_dakota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "farmhouse is part of farm", "pln": ["(: cnet_partof_25d85e1389 (PartOf farmhouse farm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "farmington is part of connecticut", "pln": ["(: cnet_partof_f5c095fa63 (PartOf farmington connecticut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "farmington is part of new mexico", "pln": ["(: cnet_partof_820af82572 (PartOf farmington new_mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "farmyard is part of farm", "pln": ["(: cnet_partof_f36bf32c4f (PartOf farmyard farm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "faroe island is part of atlantic", "pln": ["(: cnet_partof_3beb40bee0 (PartOf faroe_island atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fate is part of supernatural", "pln": ["(: cnet_partof_8f24b7e844 (PartOf fate supernatural) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "father s day is part of june", "pln": ["(: cnet_partof_07754e40ce (PartOf father_s_day june) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "faubourg is part of new orlean", "pln": ["(: cnet_partof_d3adb4806a (PartOf faubourg new_orlean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fauld is part of body armor", "pln": ["(: cnet_partof_4376f12860 (PartOf fauld body_armor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fault line is part of fault", "pln": ["(: cnet_partof_4f088f9111 (PartOf fault_line fault) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fayetteville is part of arkansa", "pln": ["(: cnet_partof_6e6d5141b5 (PartOf fayetteville arkansa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fayetteville is part of north carolina", "pln": ["(: cnet_partof_710e257727 (PartOf fayetteville north_carolina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fayetteville is part of west virginia", "pln": ["(: cnet_partof_e574a665d0 (PartOf fayetteville west_virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "feast day is part of religious festival", "pln": ["(: cnet_partof_e457cf24c0 (PartOf feast_day religious_festival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "federal protective service is part of general services administration", "pln": ["(: cnet_partof_1082b47a77 (PartOf federal_protective_service general_services_administration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "feather is part of rowing", "pln": ["(: cnet_partof_2563a1e6da (PartOf feather rowing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "feather is part of bird", "pln": ["(: cnet_partof_8a30a425d1 (PartOf feather bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "feature is part of face", "pln": ["(: cnet_partof_e1a92e4c5c (PartOf feature face) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "feature is part of magazine", "pln": ["(: cnet_partof_7650a45844 (PartOf feature magazine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "feature is part of newspaper", "pln": ["(: cnet_partof_93bb000b0e (PartOf feature newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "february is part of gregorian calendar", "pln": ["(: cnet_partof_9fecc9a315 (PartOf february gregorian_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "federal aviation agency is part of department of transportation", "pln": ["(: cnet_partof_61a1f7a478 (PartOf federal_aviation_agency department_of_transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "federal bureau of investigation is part of department of justice", "pln": ["(: cnet_partof_4268391b0f (PartOf federal_bureau_of_investigation department_of_justice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "federal bureau of prison is part of department of justice", "pln": ["(: cnet_partof_9d3d2c204d (PartOf federal_bureau_of_prison department_of_justice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "federal court is part of federal judiciary", "pln": ["(: cnet_partof_32fc8b624b (PartOf federal_court federal_judiciary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "federal emergency management agency is part of homeland security", "pln": ["(: cnet_partof_9865942c8a (PartOf federal_emergency_management_agency homeland_security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "federal housing administration is part of department of housing and urban development", "pln": ["(: cnet_partof_548200f461 (PartOf federal_housing_administration department_of_housing_and_urban_development) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "federal law enforcement training center is part of homeland security", "pln": ["(: cnet_partof_c4bee94572 (PartOf federal_law_enforcement_training_center homeland_security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "federal protective service is part of general service administration", "pln": ["(: cnet_partof_af87deb80d (PartOf federal_protective_service general_service_administration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "feijoa is part of feijoa", "pln": ["(: cnet_partof_f7fc37eeb8 (PartOf feijoa feijoa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "felloe is part of wheel", "pln": ["(: cnet_partof_94bbc182e2 (PartOf felloe wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fellow is part of couple", "pln": ["(: cnet_partof_f3924d79df (PartOf fellow couple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "female body is part of female", "pln": ["(: cnet_partof_2054734821 (PartOf female_body female) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "female chest is part of female body", "pln": ["(: cnet_partof_1de640a904 (PartOf female_chest female_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "female genitalia is part of female body", "pln": ["(: cnet_partof_ae786229c8 (PartOf female_genitalia female_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "female genitalia is part of female reproductive system", "pln": ["(: cnet_partof_86619eb8bd (PartOf female_genitalia female_reproductive_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "female internal reproductive organ is part of female body", "pln": ["(: cnet_partof_07f66eb793 (PartOf female_internal_reproductive_organ female_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "female reproductive system is part of female body", "pln": ["(: cnet_partof_eb5b2852ec (PartOf female_reproductive_system female_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "femoral artery is part of thigh", "pln": ["(: cnet_partof_c438bac0c9 (PartOf femoral_artery thigh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "femoral nerve is part of thigh", "pln": ["(: cnet_partof_1d1b781316 (PartOf femoral_nerve thigh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "femoral vein is part of thigh", "pln": ["(: cnet_partof_c89e0e5c3e (PartOf femoral_vein thigh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "femtometer is part of picometer", "pln": ["(: cnet_partof_c9044ab1ee (PartOf femtometer picometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "femtosecond is part of picosecond", "pln": ["(: cnet_partof_43676ea7e4 (PartOf femtosecond picosecond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "femtovolt is part of volt", "pln": ["(: cnet_partof_7148576d06 (PartOf femtovolt volt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "femur is part of thigh", "pln": ["(: cnet_partof_45c701107c (PartOf femur thigh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fen is part of jiao", "pln": ["(: cnet_partof_0f9ce0f333 (PartOf fen jiao) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "fence is part of fence line", "pln": ["(: cnet_partof_5385980cd7 (PartOf fence fence_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "fender is part of car", "pln": ["(: cnet_partof_d2617284f8 (PartOf fender car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fender is part of locomotive", "pln": ["(: cnet_partof_5ec0e50ceb (PartOf fender locomotive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fenestra is part of ear", "pln": ["(: cnet_partof_59f13c3c67 (PartOf fenestra ear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fennel is part of common fennel", "pln": ["(: cnet_partof_2f90a62f40 (PartOf fennel common_fennel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fennel is part of florence fennel", "pln": ["(: cnet_partof_dfdfc495fe (PartOf fennel florence_fennel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fennel seed is part of common fennel", "pln": ["(: cnet_partof_16e3801635 (PartOf fennel_seed common_fennel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fenugreek is part of fenugreek", "pln": ["(: cnet_partof_687162fd7f (PartOf fenugreek fenugreek) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fern seed is part of fern", "pln": ["(: cnet_partof_0d481fb8f0 (PartOf fern_seed fern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ferrara is part of italy", "pln": ["(: cnet_partof_38c627cf6f (PartOf ferrara italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fertile crescent is part of middle east", "pln": ["(: cnet_partof_da64bcf6e9 (PartOf fertile_crescent middle_east) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fertile period is part of menstrual cycle", "pln": ["(: cnet_partof_7a89d3cd2d (PartOf fertile_period menstrual_cycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fetlock is part of horse s foot", "pln": ["(: cnet_partof_1ae5a145bc (PartOf fetlock horse_s_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fez is part of morocco", "pln": ["(: cnet_partof_7476e23991 (PartOf fez morocco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fiber bundle is part of nervous system", "pln": ["(: cnet_partof_8c51944568 (PartOf fiber_bundle nervous_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fiber optic cable is part of fiber optic transmission system", "pln": ["(: cnet_partof_3d4ea6ed7d (PartOf fiber_optic_cable fiber_optic_transmission_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fibrosis is part of pneumoconiosis", "pln": ["(: cnet_partof_1cc4b83ab4 (PartOf fibrosis pneumoconiosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "fibrous astrocyte is part of white matter", "pln": ["(: cnet_partof_bdab272526 (PartOf fibrous_astrocyte white_matter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "fibula is part of leg", "pln": ["(: cnet_partof_34c777aaa6 (PartOf fibula leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fiddlestick is part of violin", "pln": ["(: cnet_partof_da7696d669 (PartOf fiddlestick violin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "field is part of theater of war", "pln": ["(: cnet_partof_8d4ea26019 (PartOf field theater_of_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "field event is part of track meet", "pln": ["(: cnet_partof_d34be7392e (PartOf field_event track_meet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "field house is part of stadium", "pln": ["(: cnet_partof_a62829f5be (PartOf field_house stadium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "field magnet is part of dynamo", "pln": ["(: cnet_partof_3d89af5be5 (PartOf field_magnet dynamo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "field magnet is part of electric motor", "pln": ["(: cnet_partof_4f7da1ef99 (PartOf field_magnet electric_motor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "field pea is part of field pea", "pln": ["(: cnet_partof_9d59d14af8 (PartOf field_pea field_pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fifth amendment is part of bill of right", "pln": ["(: cnet_partof_dd3858f714 (PartOf fifth_amendment bill_of_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fifth avenue is part of manhattan", "pln": ["(: cnet_partof_2cdca860d0 (PartOf fifth_avenue manhattan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fifty is part of adulthood", "pln": ["(: cnet_partof_cabf72fce7 (PartOf fifty adulthood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "fig is part of fig", "pln": ["(: cnet_partof_e08156eb2a (PartOf fig fig) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fiji is part of fiji island", "pln": ["(: cnet_partof_a4e1fc4c55 (PartOf fiji fiji_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fiji island is part of melanesia", "pln": ["(: cnet_partof_516d43ba48 (PartOf fiji_island melanesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "filament is part of light bulb", "pln": ["(: cnet_partof_15ef0e27d0 (PartOf filament light_bulb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "filler is part of cigar", "pln": ["(: cnet_partof_50b1172008 (PartOf filler cigar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "filler is part of forint", "pln": ["(: cnet_partof_4dc312adba (PartOf filler forint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fillet is part of beef tenderloin", "pln": ["(: cnet_partof_ac9c7b8d4e (PartOf fillet beef_tenderloin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "film clip is part of telecast", "pln": ["(: cnet_partof_cb2f844bd9 (PartOf film_clip telecast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "film industry is part of entertainment industry", "pln": ["(: cnet_partof_c2dcc6d9b4 (PartOf film_industry entertainment_industry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fil is part of bahrain dinar", "pln": ["(: cnet_partof_25803677b4 (PartOf fil bahrain_dinar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fil is part of iraqi dinar", "pln": ["(: cnet_partof_21fdde5d4f (PartOf fil iraqi_dinar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fil is part of jordanian dinar", "pln": ["(: cnet_partof_35b1e6b583 (PartOf fil jordanian_dinar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fil is part of kuwaiti dirham", "pln": ["(: cnet_partof_a4d2480c7a (PartOf fil kuwaiti_dirham) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "filter tip is part of filter tipped cigarette", "pln": ["(: cnet_partof_e0c2092b3a (PartOf filter_tip filter_tipped_cigarette) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fin is part of fish", "pln": ["(: cnet_partof_bf7ae3f359 (PartOf fin fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fin is part of ship", "pln": ["(: cnet_partof_705170b581 (PartOf fin ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fin keel is part of keel", "pln": ["(: cnet_partof_df5eb2318d (PartOf fin_keel keel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "final is part of elimination tournament", "pln": ["(: cnet_partof_8c0b055c79 (PartOf final elimination_tournament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "final period is part of playing period", "pln": ["(: cnet_partof_499b56b953 (PartOf final_period playing_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "finale is part of musical composition", "pln": ["(: cnet_partof_0e62a422a9 (PartOf finale musical_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "finale is part of performance", "pln": ["(: cnet_partof_2b5213f7d3 (PartOf finale performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "financial center is part of city", "pln": ["(: cnet_partof_1988a6dd98 (PartOf financial_center city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "financial crime enforcement network is part of department of treasury", "pln": ["(: cnet_partof_5c020da00b (PartOf financial_crime_enforcement_network department_of_treasury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "financial management service is part of department of treasury", "pln": ["(: cnet_partof_c5e483e3eb (PartOf financial_management_service department_of_treasury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "finder is part of camera", "pln": ["(: cnet_partof_7317a703ad (PartOf finder camera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "finder is part of gunsight", "pln": ["(: cnet_partof_40292657ce (PartOf finder gunsight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "finder is part of telescope", "pln": ["(: cnet_partof_a20244d423 (PartOf finder telescope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "fine print is part of contract", "pln": ["(: cnet_partof_01ffb3e4d0 (PartOf fine_print contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fine structure is part of atomic spectrum", "pln": ["(: cnet_partof_5bfd8ad9dd (PartOf fine_structure atomic_spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fingal s cave is part of staffa", "pln": ["(: cnet_partof_6af23f70fd (PartOf fingal_s_cave staffa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "finger is part of glove", "pln": ["(: cnet_partof_379219128e (PartOf finger glove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "finger is part of hand", "pln": ["(: cnet_partof_4ea4138b9b (PartOf finger hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "finger hole is part of bowling ball", "pln": ["(: cnet_partof_63fa45a43e (PartOf finger_hole bowling_ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "finger hole is part of dial", "pln": ["(: cnet_partof_206eff1a53 (PartOf finger_hole dial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "finger hole is part of woodwind", "pln": ["(: cnet_partof_f9f590889f (PartOf finger_hole woodwind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fingerboard is part of banjo", "pln": ["(: cnet_partof_77f406cda9 (PartOf fingerboard banjo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fingerboard is part of bowed stringed instrument", "pln": ["(: cnet_partof_289bfc29b6 (PartOf fingerboard bowed_stringed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fingerboard is part of guitar", "pln": ["(: cnet_partof_7695f6b48f (PartOf fingerboard guitar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fingerboard is part of lute", "pln": ["(: cnet_partof_d42d886ae5 (PartOf fingerboard lute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fingerboard is part of mandolin", "pln": ["(: cnet_partof_3e4a321ffe (PartOf fingerboard mandolin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fingering is part of musical performance", "pln": ["(: cnet_partof_190d8dc836 (PartOf fingering musical_performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fingernail is part of hand", "pln": ["(: cnet_partof_8406a80606 (PartOf fingernail hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fingernail is part of finger", "pln": ["(: cnet_partof_5e59275529 (PartOf fingernail finger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fingerprint is part of finger", "pln": ["(: cnet_partof_f055a473aa (PartOf fingerprint finger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fingertip is part of finger", "pln": ["(: cnet_partof_5cab0a1003 (PartOf fingertip finger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "finland is part of europe", "pln": ["(: cnet_partof_888d6c82e6 (PartOf finland europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fir cone is part of fir", "pln": ["(: cnet_partof_4b74ee2a8e (PartOf fir_cone fir) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fire control is part of shooting", "pln": ["(: cnet_partof_da5ca35d40 (PartOf fire_control shooting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fire iron is part of fireplace", "pln": ["(: cnet_partof_b959660c4d (PartOf fire_iron fireplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fire station is part of infrastructure", "pln": ["(: cnet_partof_cd262aef40 (PartOf fire_station infrastructure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fireball is part of nuclear explosion", "pln": ["(: cnet_partof_926a302ae4 (PartOf fireball nuclear_explosion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "firebox is part of steam locomotive", "pln": ["(: cnet_partof_c339b99af2 (PartOf firebox steam_locomotive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "firenze is part of tuscany", "pln": ["(: cnet_partof_43607e247d (PartOf firenze tuscany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fireplace is part of chimney", "pln": ["(: cnet_partof_32a1f4c5df (PartOf fireplace chimney) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "firing chamber is part of gun", "pln": ["(: cnet_partof_cea1e53db5 (PartOf firing_chamber gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "firing pin is part of firearm", "pln": ["(: cnet_partof_62df6fceba (PartOf firing_pin firearm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "firkin is part of kilderkin", "pln": ["(: cnet_partof_0438453ef2 (PartOf firkin kilderkin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "first amendment is part of bill of right", "pln": ["(: cnet_partof_a66121ebe4 (PartOf first_amendment bill_of_right) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "first epistle of john is part of new testament", "pln": ["(: cnet_partof_51baaeee1a (PartOf first_epistle_of_john new_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "first epistle of paul apostle to corinthian is part of new testament", "pln": ["(: cnet_partof_bcd1fd91d4 (PartOf first_epistle_of_paul_apostle_to_corinthian new_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "first epistle of paul apostle to thessalonian is part of new testament", "pln": ["(: cnet_partof_8722b17f04 (PartOf first_epistle_of_paul_apostle_to_thessalonian new_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "first epistle of paul apostle to timothy is part of new testament", "pln": ["(: cnet_partof_660abf38f4 (PartOf first_epistle_of_paul_apostle_to_timothy new_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "first epistle of peter is part of new testament", "pln": ["(: cnet_partof_bb77500f4e (PartOf first_epistle_of_peter new_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "first gear is part of car", "pln": ["(: cnet_partof_c7f290f931 (PartOf first_gear car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "first period is part of playing period", "pln": ["(: cnet_partof_2e62e1b9a6 (PartOf first_period playing_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "first visual area is part of occipital lobe", "pln": ["(: cnet_partof_6c0db29623 (PartOf first_visual_area occipital_lobe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "firth of clyde is part of scotland", "pln": ["(: cnet_partof_5405cf140f (PartOf firth_of_clyde scotland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "firth of forth is part of scotland", "pln": ["(: cnet_partof_95eca4ceae (PartOf firth_of_forth scotland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fish scale is part of fish", "pln": ["(: cnet_partof_75e7efd85e (PartOf fish_scale fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fishbone is part of fish", "pln": ["(: cnet_partof_bbb1d2945d (PartOf fishbone fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fissure of rolando is part of cerebrum", "pln": ["(: cnet_partof_03e76e6780 (PartOf fissure_of_rolando cerebrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fissure of sylvius is part of cerebrum", "pln": ["(: cnet_partof_2a0e69d65a (PartOf fissure_of_sylvius cerebrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fixation is part of plastination", "pln": ["(: cnet_partof_c2c6d68602 (PartOf fixation plastination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "flag is part of deer", "pln": ["(: cnet_partof_af7a74df2c (PartOf flag deer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "flag is part of dog", "pln": ["(: cnet_partof_dacad64994 (PartOf flag dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "flag day is part of june", "pln": ["(: cnet_partof_b721fc4b59 (PartOf flag_day june) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "flagellum is part of eubacteria", "pln": ["(: cnet_partof_56497ec34b (PartOf flagellum eubacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "flagellum is part of sperm", "pln": ["(: cnet_partof_6aedc5bf9c (PartOf flagellum sperm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "flagstaff is part of arizona", "pln": ["(: cnet_partof_e66d2046d1 (PartOf flagstaff arizona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "flame cell is part of flatworm", "pln": ["(: cnet_partof_bb7344b478 (PartOf flame_cell flatworm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "flaminian way is part of italy", "pln": ["(: cnet_partof_9b30f20166 (PartOf flaminian_way italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "flander is part of europe", "pln": ["(: cnet_partof_9900466c88 (PartOf flander europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "flander is part of holy roman empire", "pln": ["(: cnet_partof_5d7e30c124 (PartOf flander holy_roman_empire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "flank is part of quadruped", "pln": ["(: cnet_partof_2b045599ff (PartOf flank quadruped) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "flank steak is part of flank", "pln": ["(: cnet_partof_401836e252 (PartOf flank_steak flank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "flap is part of wing", "pln": ["(: cnet_partof_f1621cd5af (PartOf flap wing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "flash is part of flash camera", "pln": ["(: cnet_partof_412fb97e26 (PartOf flash flash_camera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "flashlight battery is part of flashlight", "pln": ["(: cnet_partof_9c893446c7 (PartOf flashlight_battery flashlight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "flat is part of mise en scene", "pln": ["(: cnet_partof_df03bdf588 (PartOf flat mise_en_scene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "flat bone is part of sirloin", "pln": ["(: cnet_partof_7b478d150a (PartOf flat_bone sirloin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "flat panel display is part of portable computer", "pln": ["(: cnet_partof_3af82b4b7b (PartOf flat_panel_display portable_computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "flavor strip is part of vending machine", "pln": ["(: cnet_partof_d222874de2 (PartOf flavor_strip vending_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fleet is part of airline", "pln": ["(: cnet_partof_faa3f3593a (PartOf fleet airline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fleet is part of bus line", "pln": ["(: cnet_partof_ed4a16ad7c (PartOf fleet bus_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fleet street is part of london", "pln": ["(: cnet_partof_1d74776d63 (PartOf fleet_street london) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "flight deck is part of aircraft carrier", "pln": ["(: cnet_partof_5de3d397f7 (PartOf flight_deck aircraft_carrier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "flight feather is part of wing", "pln": ["(: cnet_partof_ea6e4c83d1 (PartOf flight_feather wing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "flight line is part of airfield", "pln": ["(: cnet_partof_d22cb615af (PartOf flight_line airfield) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "flint is part of michigan", "pln": ["(: cnet_partof_29ddcd6e50 (PartOf flint michigan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "flint is part of georgia", "pln": ["(: cnet_partof_b06584221f (PartOf flint georgia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "flintlock is part of flintlock", "pln": ["(: cnet_partof_4ab2234e1e (PartOf flintlock flintlock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "flipper is part of aquatic mammal", "pln": ["(: cnet_partof_3114b7aa72 (PartOf flipper aquatic_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "flipper is part of aquatic vertebrate", "pln": ["(: cnet_partof_bc09734d31 (PartOf flipper aquatic_vertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "flitch is part of side of pork", "pln": ["(: cnet_partof_b98d474819 (PartOf flitch side_of_pork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "florida is part of united states", "pln": ["(: cnet_partof_03e7fcb5b2 (PartOf florida united_states) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "flodden is part of northumberland", "pln": ["(: cnet_partof_29caa08012 (PartOf flodden northumberland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "flood is part of photographic equipment", "pln": ["(: cnet_partof_c9d3ca0daf (PartOf flood photographic_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "floor is part of room", "pln": ["(: cnet_partof_f0e13f3326 (PartOf floor room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "floor is part of building", "pln": ["(: cnet_partof_30e1eb6bba (PartOf floor building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "floor is part of exchange", "pln": ["(: cnet_partof_0bcf100c3f (PartOf floor exchange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "floor is part of hallway", "pln": ["(: cnet_partof_f9497c74e6 (PartOf floor hallway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "floor is part of cave", "pln": ["(: cnet_partof_f662589f74 (PartOf floor cave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "floor is part of lake", "pln": ["(: cnet_partof_109a6eaa17 (PartOf floor lake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "floorboard is part of car", "pln": ["(: cnet_partof_d2851e0b65 (PartOf floorboard car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "floral leaf is part of flower", "pln": ["(: cnet_partof_d71233d2ce (PartOf floral_leaf flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "floreal is part of revolutionary calendar", "pln": ["(: cnet_partof_27ead51d64 (PartOf floreal revolutionary_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "florence is part of south carolina", "pln": ["(: cnet_partof_bf915cf358 (PartOf florence south_carolina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "florida is part of united state", "pln": ["(: cnet_partof_09fe1ec883 (PartOf florida united_state) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "florida is part of gulf state", "pln": ["(: cnet_partof_60b6ddd3e1 (PartOf florida gulf_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "flower is part of angiosperm", "pln": ["(: cnet_partof_69704aef27 (PartOf flower angiosperm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fluid drive is part of transmission", "pln": ["(: cnet_partof_2771326633 (PartOf fluid_drive transmission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "fluidounce is part of gill", "pln": ["(: cnet_partof_a1b9a99b4e (PartOf fluidounce gill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fluidram is part of fluidounce", "pln": ["(: cnet_partof_36ba8031d1 (PartOf fluidram fluidounce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fluke is part of cetacean", "pln": ["(: cnet_partof_238e9541af (PartOf fluke cetacean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fluke is part of anchor", "pln": ["(: cnet_partof_b26facf6b0 (PartOf fluke anchor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fluke is part of harpoon", "pln": ["(: cnet_partof_2ef1db0d36 (PartOf fluke harpoon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "flutter kick is part of backstroke", "pln": ["(: cnet_partof_7bc5624c16 (PartOf flutter_kick backstroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "flutter kick is part of crawl", "pln": ["(: cnet_partof_b24be1d156 (PartOf flutter_kick crawl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fly is part of garment", "pln": ["(: cnet_partof_b77d82df1c (PartOf fly garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "focal seizure is part of cortical epilepsy", "pln": ["(: cnet_partof_52064f794c (PartOf focal_seizure cortical_epilepsy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "focus is part of focal infection", "pln": ["(: cnet_partof_58a42e4248 (PartOf focus focal_infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "foible is part of sword", "pln": ["(: cnet_partof_322f90cd39 (PartOf foible sword) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "folktale is part of folklore", "pln": ["(: cnet_partof_989718627e (PartOf folktale folklore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "follow through is part of stroke", "pln": ["(: cnet_partof_aa2d9bb183 (PartOf follow_through stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fontanelle is part of child s body", "pln": ["(: cnet_partof_a76bd28c4d (PartOf fontanelle child_s_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fontanelle is part of cranium", "pln": ["(: cnet_partof_2b54e51815 (PartOf fontanelle cranium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fontenoy is part of war of austrian succession", "pln": ["(: cnet_partof_6eb15d2a38 (PartOf fontenoy war_of_austrian_succession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "food is part of food", "pln": ["(: cnet_partof_10486098c3 (PartOf food food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "food and drug administration is part of department of health and human service", "pln": ["(: cnet_partof_d529df4893 (PartOf food_and_drug_administration department_of_health_and_human_service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "food chain is part of food web", "pln": ["(: cnet_partof_40b5c58868 (PartOf food_chain food_web) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "food court is part of plaza", "pln": ["(: cnet_partof_77ba85a129 (PartOf food_court plaza) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "foot is part of body", "pln": ["(: cnet_partof_892d2f2283 (PartOf foot body) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "foot is part of invertebrate", "pln": ["(: cnet_partof_b32ac00b63 (PartOf foot invertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "foot is part of leg", "pln": ["(: cnet_partof_b290e12313 (PartOf foot leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "foot is part of homo", "pln": ["(: cnet_partof_756c19e1d8 (PartOf foot homo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "foot is part of yard", "pln": ["(: cnet_partof_f9a6840c1a (PartOf foot yard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "foot pound is part of foot ton", "pln": ["(: cnet_partof_5c40c898fe (PartOf foot_pound foot_ton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "football field is part of football stadium", "pln": ["(: cnet_partof_c6c4424e3b (PartOf football_field football_stadium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "footboard is part of bedstead", "pln": ["(: cnet_partof_1370dc616a (PartOf footboard bedstead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "footfault is part of tennis", "pln": ["(: cnet_partof_25a9400f7b (PartOf footfault tennis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "footlight is part of proscenium", "pln": ["(: cnet_partof_7eaade63bb (PartOf footlight proscenium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "footplate is part of locomotive", "pln": ["(: cnet_partof_3a2523e53d (PartOf footplate locomotive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "footwall is part of inclined fault", "pln": ["(: cnet_partof_fcda5d2c24 (PartOf footwall inclined_fault) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "foramen magnum is part of cranium", "pln": ["(: cnet_partof_2402104d59 (PartOf foramen_magnum cranium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "forbidden city is part of beijing", "pln": ["(: cnet_partof_8a22aa82dc (PartOf forbidden_city beijing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "ford is part of stream", "pln": ["(: cnet_partof_25f21b2c86 (PartOf ford stream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fore edge is part of book", "pln": ["(: cnet_partof_1394530d58 (PartOf fore_edge book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "forearm is part of arm", "pln": ["(: cnet_partof_6aad85544e (PartOf forearm arm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "forebrain is part of brain", "pln": ["(: cnet_partof_be9b5b2efc (PartOf forebrain brain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "forecastle is part of ship", "pln": ["(: cnet_partof_4ebfe9fbfc (PartOf forecastle ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "foredeck is part of weather deck", "pln": ["(: cnet_partof_a21165c702 (PartOf foredeck weather_deck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "forefoot is part of quadruped", "pln": ["(: cnet_partof_f8b0b09d03 (PartOf forefoot quadruped) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "foreground is part of screen", "pln": ["(: cnet_partof_8ea746c117 (PartOf foreground screen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "foreign intelligence surveillance court is part of federal judiciary", "pln": ["(: cnet_partof_71406274cc (PartOf foreign_intelligence_surveillance_court federal_judiciary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "foreign service is part of department of state", "pln": ["(: cnet_partof_97b9058200 (PartOf foreign_service department_of_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "foreleg is part of quadruped", "pln": ["(: cnet_partof_d9bfeee7b4 (PartOf foreleg quadruped) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "forelock is part of encolure", "pln": ["(: cnet_partof_ecbb335b8b (PartOf forelock encolure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "forepaw is part of forelimb", "pln": ["(: cnet_partof_5449ffe756 (PartOf forepaw forelimb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "foreshore is part of seashore", "pln": ["(: cnet_partof_d507e952e7 (PartOf foreshore seashore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "foreskin is part of penis", "pln": ["(: cnet_partof_81c576c686 (PartOf foreskin penis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "foreword is part of text", "pln": ["(: cnet_partof_fcce4122b6 (PartOf foreword text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "form is part of percept", "pln": ["(: cnet_partof_e17b4b4390 (PartOf form percept) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "format is part of publication", "pln": ["(: cnet_partof_3f74c71a2f (PartOf format publication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fornix is part of limbic system", "pln": ["(: cnet_partof_57a0ad2af8 (PartOf fornix limbic_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fort lauderdale is part of florida", "pln": ["(: cnet_partof_d3f8fb3704 (PartOf fort_lauderdale florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fort meade is part of maryland", "pln": ["(: cnet_partof_2d2c8e7689 (PartOf fort_meade maryland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fort myer is part of florida", "pln": ["(: cnet_partof_b016654c11 (PartOf fort_myer florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fort smith is part of arkansa", "pln": ["(: cnet_partof_dc64bbf168 (PartOf fort_smith arkansa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fort ticonderoga is part of american revolution", "pln": ["(: cnet_partof_f4c04e29db (PartOf fort_ticonderoga american_revolution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fort wayne is part of indiana", "pln": ["(: cnet_partof_e84dee984f (PartOf fort_wayne indiana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fort worth is part of texa", "pln": ["(: cnet_partof_5ceb3358ed (PartOf fort_worth texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "forte is part of sword", "pln": ["(: cnet_partof_223229a81b (PartOf forte sword) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "forth river is part of scotland", "pln": ["(: cnet_partof_30b9f1237f (PartOf forth_river scotland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "forty is part of adulthood", "pln": ["(: cnet_partof_597b4404e7 (PartOf forty adulthood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "foul line is part of ball field", "pln": ["(: cnet_partof_ecbdb615f3 (PartOf foul_line ball_field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "foul line is part of bowling alley", "pln": ["(: cnet_partof_7ea7398cc7 (PartOf foul_line bowling_alley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "foul line is part of key", "pln": ["(: cnet_partof_33e17e5f6e (PartOf foul_line key) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "foundation is part of structure", "pln": ["(: cnet_partof_a87f8ca688 (PartOf foundation structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "foundation stone is part of building", "pln": ["(: cnet_partof_e9beb1621c (PartOf foundation_stone building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fourteenth amendment is part of united state constitution", "pln": ["(: cnet_partof_fe0d6ad10a (PartOf fourteenth_amendment united_state_constitution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fovea is part of retina", "pln": ["(: cnet_partof_d679ef8370 (PartOf fovea retina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fox grape is part of fox grape", "pln": ["(: cnet_partof_5bcc903973 (PartOf fox_grape fox_grape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fox river is part of wisconsin", "pln": ["(: cnet_partof_273bc291b6 (PartOf fox_river wisconsin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "foyer is part of house", "pln": ["(: cnet_partof_742caef3ee (PartOf foyer house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fragmentation bomb is part of cluster bomb", "pln": ["(: cnet_partof_ee5e7b20b4 (PartOf fragmentation_bomb cluster_bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "frame is part of picture", "pln": ["(: cnet_partof_12408b0cea (PartOf frame picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "frame is part of bowling", "pln": ["(: cnet_partof_0a45826eec (PartOf frame bowling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "frame is part of comic strip", "pln": ["(: cnet_partof_9f6866ad96 (PartOf frame comic_strip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "france is part of europe", "pln": ["(: cnet_partof_67833bb36c (PartOf france europe) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "franche comte is part of france", "pln": ["(: cnet_partof_75c4acdf53 (PartOf franche_comte france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "frank is part of hotdog", "pln": ["(: cnet_partof_c4e15c4ab5 (PartOf frank hotdog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "frankfort is part of kentucky", "pln": ["(: cnet_partof_851d65f3d2 (PartOf frankfort kentucky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "frankfurt is part of germany", "pln": ["(: cnet_partof_d193d4e192 (PartOf frankfurt germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "frankfurt on main is part of germany", "pln": ["(: cnet_partof_372afec817 (PartOf frankfurt_on_main germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "frankfurter bun is part of hotdog", "pln": ["(: cnet_partof_8400dc33a0 (PartOf frankfurter_bun hotdog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "freckle is part of skin", "pln": ["(: cnet_partof_49638c3043 (PartOf freckle skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "frederick is part of maryland", "pln": ["(: cnet_partof_da49762776 (PartOf frederick maryland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fredericksburg is part of american civil war", "pln": ["(: cnet_partof_1c815cef38 (PartOf fredericksburg american_civil_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fredericksburg is part of virginia", "pln": ["(: cnet_partof_b64a6c0034 (PartOf fredericksburg virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fredericton is part of new brunswick", "pln": ["(: cnet_partof_45c3e4dceb (PartOf fredericton new_brunswick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "free nerve ending is part of skin", "pln": ["(: cnet_partof_3eb7a0de94 (PartOf free_nerve_ending skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "free reed is part of free reed instrument", "pln": ["(: cnet_partof_0323738a9a (PartOf free_reed free_reed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "free state is part of south africa", "pln": ["(: cnet_partof_373f5a7c6a (PartOf free_state south_africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "free state is part of union", "pln": ["(: cnet_partof_d90d6f6587 (PartOf free_state union) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "free throw lane is part of basketball court", "pln": ["(: cnet_partof_f42ab67c13 (PartOf free_throw_lane basketball_court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "freeboard deck is part of cargo ship", "pln": ["(: cnet_partof_bff60a662c (PartOf freeboard_deck cargo_ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "frisian islands is part of denmark", "pln": ["(: cnet_partof_e9f80ba008 (PartOf frisian_islands denmark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "freetown is part of sierra leone", "pln": ["(: cnet_partof_9bc3676f63 (PartOf freetown sierra_leone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "french and indian war is part of seven year war", "pln": ["(: cnet_partof_39e4417922 (PartOf french_and_indian_war seven_year_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "french indochina is part of indochina", "pln": ["(: cnet_partof_6bfb24a5d5 (PartOf french_indochina indochina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "french polynesia is part of polynesia", "pln": ["(: cnet_partof_3f940b3aa9 (PartOf french_polynesia polynesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "french region is part of france", "pln": ["(: cnet_partof_5b64d3e8f2 (PartOf french_region france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "french riviera is part of riviera", "pln": ["(: cnet_partof_d52e12233b (PartOf french_riviera riviera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "french sorrel is part of french sorrel", "pln": ["(: cnet_partof_362ed462c3 (PartOf french_sorrel french_sorrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "french west indy is part of west indy", "pln": ["(: cnet_partof_72b71132ac (PartOf french_west_indy west_indy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fresh breeze is part of beaufort scale", "pln": ["(: cnet_partof_96f445b426 (PartOf fresh_breeze beaufort_scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fresh gale is part of beaufort scale", "pln": ["(: cnet_partof_7ab66c61c0 (PartOf fresh_gale beaufort_scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "freshwater bass is part of freshwater bass", "pln": ["(: cnet_partof_f9d6325722 (PartOf freshwater_bass freshwater_bass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fresnel len is part of headlight", "pln": ["(: cnet_partof_2070426006 (PartOf fresnel_len headlight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fresnel len is part of searchlight", "pln": ["(: cnet_partof_2c2ebd7c8d (PartOf fresnel_len searchlight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fresno is part of california", "pln": ["(: cnet_partof_8da2e70a4b (PartOf fresno california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "friesland is part of frisia", "pln": ["(: cnet_partof_cd5167f227 (PartOf friesland frisia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "friesland is part of netherland", "pln": ["(: cnet_partof_9f70afae49 (PartOf friesland netherland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "frieze is part of entablature", "pln": ["(: cnet_partof_b6428207a3 (PartOf frieze entablature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "frimaire is part of revolutionary calendar", "pln": ["(: cnet_partof_73962bdd05 (PartOf frimaire revolutionary_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "frisia is part of europe", "pln": ["(: cnet_partof_437192d0e6 (PartOf frisia europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "frisian island is part of denmark", "pln": ["(: cnet_partof_d0d18efec2 (PartOf frisian_island denmark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "frisian island is part of germany", "pln": ["(: cnet_partof_4ae951fc43 (PartOf frisian_island germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "frisian island is part of netherland", "pln": ["(: cnet_partof_e95c943cfd (PartOf frisian_island netherland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "friuli venezia giulia is part of italy", "pln": ["(: cnet_partof_1affbf7afd (PartOf friuli_venezia_giulia italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "frog kick is part of breaststroke", "pln": ["(: cnet_partof_d032609e7f (PartOf frog_kick breaststroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "frog leg is part of true frog", "pln": ["(: cnet_partof_8019fff60f (PartOf frog_leg true_frog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "frontal area is part of cerebral cortex", "pln": ["(: cnet_partof_91536e4581 (PartOf frontal_area cerebral_cortex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "frontal bone is part of cranium", "pln": ["(: cnet_partof_e126f6d7bf (PartOf frontal_bone cranium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "frontal eminence is part of frontal bone", "pln": ["(: cnet_partof_4c890722ae (PartOf frontal_eminence frontal_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "frontal gyrus is part of frontal area", "pln": ["(: cnet_partof_9321d00605 (PartOf frontal_gyrus frontal_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "frontal lobe is part of brain", "pln": ["(: cnet_partof_9cb3098e3d (PartOf frontal_lobe brain) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "frontal suture is part of cranium", "pln": ["(: cnet_partof_b84cf12b6e (PartOf frontal_suture cranium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fructidor is part of revolutionary calendar", "pln": ["(: cnet_partof_7ed71ef405 (PartOf fructidor revolutionary_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fuego is part of guatemala", "pln": ["(: cnet_partof_c3776001a6 (PartOf fuego guatemala) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fuel filter is part of fuel system", "pln": ["(: cnet_partof_fe61cd6b28 (PartOf fuel_filter fuel_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fuel gauge is part of fuel system", "pln": ["(: cnet_partof_9b0d2830af (PartOf fuel_gauge fuel_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fuel line is part of fuel system", "pln": ["(: cnet_partof_57afde2ff6 (PartOf fuel_line fuel_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fuel system is part of aircraft", "pln": ["(: cnet_partof_44cc1ec09c (PartOf fuel_system aircraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fuel system is part of motor vehicle", "pln": ["(: cnet_partof_719259e8f4 (PartOf fuel_system motor_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fuji is part of japan", "pln": ["(: cnet_partof_1492f6414a (PartOf fuji japan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fukuoka is part of japan", "pln": ["(: cnet_partof_7cf72f9672 (PartOf fukuoka japan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fukuoka is part of kyushu", "pln": ["(: cnet_partof_49bab7a92b (PartOf fukuoka kyushu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fulcrum is part of lever", "pln": ["(: cnet_partof_004396338e (PartOf fulcrum lever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "full moon is part of month", "pln": ["(: cnet_partof_ef0fa265e0 (PartOf full_moon month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "funafuti is part of tuvalu", "pln": ["(: cnet_partof_56ef80f273 (PartOf funafuti tuvalu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "funnel is part of ship", "pln": ["(: cnet_partof_35dcdac180 (PartOf funnel ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "funny bone is part of elbow", "pln": ["(: cnet_partof_f1d54eb626 (PartOf funny_bone elbow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "furcula is part of bird", "pln": ["(: cnet_partof_466889b215 (PartOf furcula bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "furlong is part of mile", "pln": ["(: cnet_partof_127148cbad (PartOf furlong mile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fusee drive is part of clock", "pln": ["(: cnet_partof_ba00b3592d (PartOf fusee_drive clock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "fuselage is part of airplane", "pln": ["(: cnet_partof_4e7dc23884 (PartOf fuselage airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gabon is part of africa", "pln": ["(: cnet_partof_7881a8958d (PartOf gabon africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gaborone is part of botswana", "pln": ["(: cnet_partof_8874795586 (PartOf gaborone botswana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "gaddi is part of musnud", "pln": ["(: cnet_partof_6a4ecb9632 (PartOf gaddi musnud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gadsden is part of alabama", "pln": ["(: cnet_partof_94301981d4 (PartOf gadsden alabama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gaff is part of sailing vessel", "pln": ["(: cnet_partof_3cc9dd6418 (PartOf gaff sailing_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gaffsail is part of sailing vessel", "pln": ["(: cnet_partof_508a10944e (PartOf gaffsail sailing_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "gafsa is part of tunisia", "pln": ["(: cnet_partof_76734f9a44 (PartOf gafsa tunisia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "galan is part of andes", "pln": ["(: cnet_partof_f470023a7e (PartOf galan andes) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gainesville is part of florida", "pln": ["(: cnet_partof_d105b358c8 (PartOf gainesville florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "galan is part of ande", "pln": ["(: cnet_partof_4b3e0924db (PartOf galan ande) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "galan is part of argentina", "pln": ["(: cnet_partof_742a2d9eed (PartOf galan argentina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "galapago island is part of ecuador", "pln": ["(: cnet_partof_283f808f81 (PartOf galapago_island ecuador) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "galatia is part of asia minor", "pln": ["(: cnet_partof_3962fc0c21 (PartOf galatia asia_minor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "galaxy is part of universe", "pln": ["(: cnet_partof_2f361bdc45 (PartOf galaxy universe) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "galbulus is part of cypress", "pln": ["(: cnet_partof_d96a62d2fe (PartOf galbulus cypress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "galera is part of colombia", "pln": ["(: cnet_partof_a286c629eb (PartOf galera colombia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "galicia is part of spain", "pln": ["(: cnet_partof_ed97b07cb6 (PartOf galicia spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "galilee is part of israel", "pln": ["(: cnet_partof_7848243e71 (PartOf galilee israel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gallbladder is part of thorax", "pln": ["(: cnet_partof_0df2d01b24 (PartOf gallbladder thorax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "galley is part of airliner", "pln": ["(: cnet_partof_6038282a64 (PartOf galley airliner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "galley is part of ship", "pln": ["(: cnet_partof_518a623509 (PartOf galley ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gallon is part of barrel", "pln": ["(: cnet_partof_0e303fbe89 (PartOf gallon barrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gallon is part of bushel", "pln": ["(: cnet_partof_ec0120db6e (PartOf gallon bushel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gallon is part of firkin", "pln": ["(: cnet_partof_1ca030db69 (PartOf gallon firkin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "galloway is part of scotland", "pln": ["(: cnet_partof_3a4de744a0 (PartOf galloway scotland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gallup is part of new mexico", "pln": ["(: cnet_partof_2021e1a19d (PartOf gallup new_mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "galvanic skin response is part of lie detector", "pln": ["(: cnet_partof_2e90ac8109 (PartOf galvanic_skin_response lie_detector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "galveston is part of texa", "pln": ["(: cnet_partof_65d9478d17 (PartOf galveston texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "galveston bay is part of gulf of mexico", "pln": ["(: cnet_partof_322a3aaebf (PartOf galveston_bay gulf_of_mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "galveston bay is part of texa", "pln": ["(: cnet_partof_16a1990309 (PartOf galveston_bay texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "galveston island is part of texa", "pln": ["(: cnet_partof_9b72b1be19 (PartOf galveston_island texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "galway is part of ireland", "pln": ["(: cnet_partof_7b1b824483 (PartOf galway ireland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "galway bay is part of atlantic", "pln": ["(: cnet_partof_f49764cceb (PartOf galway_bay atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gambia is part of africa", "pln": ["(: cnet_partof_b5f1c221ae (PartOf gambia africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gambier island is part of french polynesia", "pln": ["(: cnet_partof_7be2d1d692 (PartOf gambier_island french_polynesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "game is part of set", "pln": ["(: cnet_partof_f829d76570 (PartOf game set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gamma is part of oersted", "pln": ["(: cnet_partof_a9e6e5255a (PartOf gamma oersted) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gamma radiation is part of electromagnetic spectrum", "pln": ["(: cnet_partof_c6142b9b03 (PartOf gamma_radiation electromagnetic_spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "gammon is part of flitch", "pln": ["(: cnet_partof_b408f2d0dd (PartOf gammon flitch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gan jiang is part of china", "pln": ["(: cnet_partof_4ec721272d (PartOf gan_jiang china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gange is part of bangladesh", "pln": ["(: cnet_partof_73ac2b519c (PartOf gange bangladesh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gange is part of india", "pln": ["(: cnet_partof_cf38e1fb20 (PartOf gange india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ganglion is part of nervous system", "pln": ["(: cnet_partof_66f87deb34 (PartOf ganglion nervous_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gansu is part of china", "pln": ["(: cnet_partof_1d30b5973b (PartOf gansu china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gansu is part of silk road", "pln": ["(: cnet_partof_325920c894 (PartOf gansu silk_road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "garambulla is part of garambulla", "pln": ["(: cnet_partof_e4ea9016bd (PartOf garambulla garambulla) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "garden is part of house", "pln": ["(: cnet_partof_7621bce6b6 (PartOf garden house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "garden cress is part of common garden cress", "pln": ["(: cnet_partof_4c1894a7e8 (PartOf garden_cress common_garden_cress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "garden pea is part of garden pea", "pln": ["(: cnet_partof_a4cd7009fa (PartOf garden_pea garden_pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "garland is part of texa", "pln": ["(: cnet_partof_0e046d29ee (PartOf garland texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "garlic is part of garlic", "pln": ["(: cnet_partof_99ecc0522f (PartOf garlic garlic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "garlic chive is part of garlic chive", "pln": ["(: cnet_partof_1e5dfd6cfe (PartOf garlic_chive garlic_chive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "garonne is part of france", "pln": ["(: cnet_partof_a1dc56ae31 (PartOf garonne france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "gary is part of indiana", "pln": ["(: cnet_partof_af8534e79f (PartOf gary indiana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gas main is part of gas system", "pln": ["(: cnet_partof_0cea9fad96 (PartOf gas_main gas_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gas ring is part of gas range", "pln": ["(: cnet_partof_520a50b96f (PartOf gas_ring gas_range) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gas system is part of infrastructure", "pln": ["(: cnet_partof_6355cede36 (PartOf gas_system infrastructure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "gas tank is part of fuel system", "pln": ["(: cnet_partof_4f9417c27a (PartOf gas_tank fuel_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gas turbine is part of gas turbine ship", "pln": ["(: cnet_partof_36b9aa5d66 (PartOf gas_turbine gas_turbine_ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "gas turbine is part of turbojet", "pln": ["(: cnet_partof_558eb4dd31 (PartOf gas_turbine turbojet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gascogne is part of france", "pln": ["(: cnet_partof_971c5ec20b (PartOf gascogne france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gasherbrum is part of karakoram", "pln": ["(: cnet_partof_2e27491e4d (PartOf gasherbrum karakoram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gaskin is part of hind leg", "pln": ["(: cnet_partof_802be1e4e5 (PartOf gaskin hind_leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gaskin is part of horse", "pln": ["(: cnet_partof_eb45332e6c (PartOf gaskin horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gasoline engine is part of car", "pln": ["(: cnet_partof_9bb04181ec (PartOf gasoline_engine car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gasoline gauge is part of fuel system", "pln": ["(: cnet_partof_ec98ebb0b3 (PartOf gasoline_gauge fuel_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gastric artery is part of stomach", "pln": ["(: cnet_partof_67a8c1663c (PartOf gastric_artery stomach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gastric vein is part of stomach", "pln": ["(: cnet_partof_2e32683019 (PartOf gastric_vein stomach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gastrocnemius is part of calf", "pln": ["(: cnet_partof_d9b9df514f (PartOf gastrocnemius calf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "gastroomental vein is part of stomach", "pln": ["(: cnet_partof_787484abed (PartOf gastroomental_vein stomach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "gastrulation is part of growth", "pln": ["(: cnet_partof_a6ba1e7720 (PartOf gastrulation growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gate is part of air terminal", "pln": ["(: cnet_partof_f64d292aae (PartOf gate air_terminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gate of arctic national park is part of alaska", "pln": ["(: cnet_partof_84aa15610f (PartOf gate_of_arctic_national_park alaska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gauntlet is part of body armor", "pln": ["(: cnet_partof_0265228e1c (PartOf gauntlet body_armor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gauss is part of tesla", "pln": ["(: cnet_partof_caa607b143 (PartOf gauss tesla) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gauze is part of bandage", "pln": ["(: cnet_partof_da17f85686 (PartOf gauze bandage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gauze is part of surgical dressing", "pln": ["(: cnet_partof_be12117cc1 (PartOf gauze surgical_dressing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gaza strip is part of israel", "pln": ["(: cnet_partof_dab585c6dd (PartOf gaza_strip israel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gazetteer is part of atla", "pln": ["(: cnet_partof_f4c023fc29 (PartOf gazetteer atla) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gb is part of tb", "pln": ["(: cnet_partof_6e35a471c4 (PartOf gb tb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gdansk is part of poland", "pln": ["(: cnet_partof_89ec7588e7 (PartOf gdansk poland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gearbox is part of transmission", "pln": ["(: cnet_partof_176907f166 (PartOf gearbox transmission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gearing is part of engine", "pln": ["(: cnet_partof_399762c470 (PartOf gearing engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gearshift is part of motor vehicle", "pln": ["(: cnet_partof_dec9e1db5f (PartOf gearshift motor_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "geiger tube is part of geiger counter", "pln": ["(: cnet_partof_d64a5f19b1 (PartOf geiger_tube geiger_counter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gem is part of jewelry", "pln": ["(: cnet_partof_973182e4f9 (PartOf gem jewelry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "gemara is part of talmud", "pln": ["(: cnet_partof_cf13a19c29 (PartOf gemara talmud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gemini is part of zodiac", "pln": ["(: cnet_partof_56943182fa (PartOf gemini zodiac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gene is part of chromosome", "pln": ["(: cnet_partof_ab866937f4 (PartOf gene chromosome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gene is part of deoxyribonucleic acid", "pln": ["(: cnet_partof_f9ced14750 (PartOf gene deoxyribonucleic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "general delivery is part of post office", "pln": ["(: cnet_partof_09b1ea32e2 (PartOf general_delivery post_office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "genesis is part of old testament", "pln": ["(: cnet_partof_12e34bd76a (PartOf genesis old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "genesis is part of torah", "pln": ["(: cnet_partof_f00461327f (PartOf genesis torah) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "geneva is part of switzerland", "pln": ["(: cnet_partof_45c21c84b6 (PartOf geneva switzerland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "genicular vein is part of knee", "pln": ["(: cnet_partof_f6be9ebd12 (PartOf genicular_vein knee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "geniculate body is part of thalamus", "pln": ["(: cnet_partof_83eb1d6e5b (PartOf geniculate_body thalamus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "genip is part of spanish lime", "pln": ["(: cnet_partof_a9dfa7fa39 (PartOf genip spanish_lime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "genipap is part of genipap fruit", "pln": ["(: cnet_partof_a0eadf2144 (PartOf genipap genipap_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "genital stage is part of adolescence", "pln": ["(: cnet_partof_09ce39b2f0 (PartOf genital_stage adolescence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "genoa is part of liguria", "pln": ["(: cnet_partof_64825ee9ac (PartOf genoa liguria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gent is part of belgium", "pln": ["(: cnet_partof_de0e7491c3 (PartOf gent belgium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gentle breeze is part of beaufort scale", "pln": ["(: cnet_partof_6e202e1b88 (PartOf gentle_breeze beaufort_scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "george town is part of cayman island", "pln": ["(: cnet_partof_d3a131f9e9 (PartOf george_town cayman_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "george washington bridge is part of new york", "pln": ["(: cnet_partof_eddd9d4949 (PartOf george_washington_bridge new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "georgetown is part of guyana", "pln": ["(: cnet_partof_533b68c1fb (PartOf georgetown guyana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "georgetown is part of washington", "pln": ["(: cnet_partof_c24723912f (PartOf georgetown washington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "georgia is part of deep south", "pln": ["(: cnet_partof_b132bde966 (PartOf georgia deep_south) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "georgia is part of south", "pln": ["(: cnet_partof_52e085d36b (PartOf georgia south) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "georgia is part of transcaucasia", "pln": ["(: cnet_partof_f4d5ce3988 (PartOf georgia transcaucasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "georgia is part of united state", "pln": ["(: cnet_partof_0c26a9ab31 (PartOf georgia united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "germany is part of europe", "pln": ["(: cnet_partof_34ce1fafdd (PartOf germany europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "germinal is part of revolutionary calendar", "pln": ["(: cnet_partof_675fed5604 (PartOf germinal revolutionary_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gestalt law of organization is part of gestalt psychology", "pln": ["(: cnet_partof_9e7950d118 (PartOf gestalt_law_of_organization gestalt_psychology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gestapo is part of schutzstaffel", "pln": ["(: cnet_partof_c1da91edad (PartOf gestapo schutzstaffel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gettysburg is part of american civil war", "pln": ["(: cnet_partof_1cbb942d92 (PartOf gettysburg american_civil_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gettysburg is part of pennsylvania", "pln": ["(: cnet_partof_76fc8f02bd (PartOf gettysburg pennsylvania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ghana is part of africa", "pln": ["(: cnet_partof_9ec77a427b (PartOf ghana africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "giant cane is part of canebrake", "pln": ["(: cnet_partof_55b6082d75 (PartOf giant_cane canebrake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gibibit is part of tebibit", "pln": ["(: cnet_partof_88d7984858 (PartOf gibibit tebibit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "giblet is part of bird", "pln": ["(: cnet_partof_1be376482e (PartOf giblet bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gibraltar is part of europe", "pln": ["(: cnet_partof_e948997515 (PartOf gibraltar europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gibraltar is part of pillar of hercule", "pln": ["(: cnet_partof_0a1e8d0e2c (PartOf gibraltar pillar_of_hercule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gibson desert is part of australia", "pln": ["(: cnet_partof_c18ded4024 (PartOf gibson_desert australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gibson desert is part of australian desert", "pln": ["(: cnet_partof_c5866495d8 (PartOf gibson_desert australian_desert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gig is part of fishing gear", "pln": ["(: cnet_partof_cb6fe55794 (PartOf gig fishing_gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gigabit is part of terabit", "pln": ["(: cnet_partof_a2881bb155 (PartOf gigabit terabit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gigabyte is part of terabyte", "pln": ["(: cnet_partof_2825c5f986 (PartOf gigabyte terabyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gila is part of arizona", "pln": ["(: cnet_partof_afcc98a4a0 (PartOf gila arizona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gila is part of new mexico", "pln": ["(: cnet_partof_62e0fd18c1 (PartOf gila new_mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gila desert is part of arizona", "pln": ["(: cnet_partof_0cd658d013 (PartOf gila_desert arizona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gilbert and ellice island is part of micronesia", "pln": ["(: cnet_partof_01ccb3173a (PartOf gilbert_and_ellice_island micronesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gilbert island is part of kiribati", "pln": ["(: cnet_partof_9f4581f3bb (PartOf gilbert_island kiribati) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gill is part of cup", "pln": ["(: cnet_partof_4dfdbec87e (PartOf gill cup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gill is part of pint", "pln": ["(: cnet_partof_0c759978a9 (PartOf gill pint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ginger is part of common ginger", "pln": ["(: cnet_partof_22a313f8b5 (PartOf ginger common_ginger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gingiva is part of mouth", "pln": ["(: cnet_partof_0f18ff76b2 (PartOf gingiva mouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "ginseng is part of american ginseng", "pln": ["(: cnet_partof_599791cb28 (PartOf ginseng american_ginseng) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ginseng is part of ginseng", "pln": ["(: cnet_partof_dc958ac55e (PartOf ginseng ginseng) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "giza is part of egypt", "pln": ["(: cnet_partof_da8319c946 (PartOf giza egypt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "glabella is part of frontal bone", "pln": ["(: cnet_partof_d451de31ff (PartOf glabella frontal_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gladiolus is part of sternum", "pln": ["(: cnet_partof_6c912c25e3 (PartOf gladiolus sternum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "glan is part of penis", "pln": ["(: cnet_partof_30c6f4b484 (PartOf glan penis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "glan clitoridis is part of clitoris", "pln": ["(: cnet_partof_c9d55d6a96 (PartOf glan_clitoridis clitoris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "glan penis is part of penis", "pln": ["(: cnet_partof_8c90de1f94 (PartOf glan_penis penis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "glasgow is part of scotland", "pln": ["(: cnet_partof_4393e9c96b (PartOf glasgow scotland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "glass is part of window", "pln": ["(: cnet_partof_26d8940eb1 (PartOf glass window) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "glass is part of glass", "pln": ["(: cnet_partof_708a21db7b (PartOf glass glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gleba is part of sporophore", "pln": ["(: cnet_partof_c8c7c0fbb2 (PartOf gleba sporophore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "glen canyon dam is part of arizona", "pln": ["(: cnet_partof_329ee6f71b (PartOf glen_canyon_dam arizona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "glenoid fossa is part of scapula", "pln": ["(: cnet_partof_5c5e66fd34 (PartOf glenoid_fossa scapula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "glenoid fossa is part of temporal bone", "pln": ["(: cnet_partof_f42b4d0e12 (PartOf glenoid_fossa temporal_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "glomerulus is part of malpighian body", "pln": ["(: cnet_partof_030a297d8f (PartOf glomerulus malpighian_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "glottis is part of larynx", "pln": ["(: cnet_partof_07dc7a13ff (PartOf glottis larynx) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "gloucester is part of massachusetts", "pln": ["(: cnet_partof_634a1c0ea4 (PartOf gloucester massachusetts) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gloucester is part of england", "pln": ["(: cnet_partof_00dfa85a8a (PartOf gloucester england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gloucester is part of massachusett", "pln": ["(: cnet_partof_9e82ae1535 (PartOf gloucester massachusett) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gloucestershire is part of england", "pln": ["(: cnet_partof_90f4b1fa69 (PartOf gloucestershire england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "glove compartment is part of car", "pln": ["(: cnet_partof_84634b5a11 (PartOf glove_compartment car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gluteal artery is part of hip", "pln": ["(: cnet_partof_cf06198c38 (PartOf gluteal_artery hip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gluteus is part of buttock", "pln": ["(: cnet_partof_8781688839 (PartOf gluteus buttock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "glyceride is part of fat", "pln": ["(: cnet_partof_ce5a756aaf (PartOf glyceride fat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gnathion is part of lower jaw", "pln": ["(: cnet_partof_3b81b03dbe (PartOf gnathion lower_jaw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "gnomon is part of sundial", "pln": ["(: cnet_partof_2d04683def (PartOf gnomon sundial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "goa is part of india", "pln": ["(: cnet_partof_fce0ca9669 (PartOf goa india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "goa bean is part of winged bean", "pln": ["(: cnet_partof_c2ad919127 (PartOf goa_bean winged_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "goal is part of plan of action", "pln": ["(: cnet_partof_e94b55cba4 (PartOf goal plan_of_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "goalpost is part of goal", "pln": ["(: cnet_partof_e0ebfde0c9 (PartOf goalpost goal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "goatee is part of chin", "pln": ["(: cnet_partof_bab62a81f1 (PartOf goatee chin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gobi is part of china", "pln": ["(: cnet_partof_3a3846ea70 (PartOf gobi china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gobi is part of mongolia", "pln": ["(: cnet_partof_e7d5fc809d (PartOf gobi mongolia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "god is part of religion", "pln": ["(: cnet_partof_c1d1fc08de (PartOf god religion) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "golan height is part of israel", "pln": ["(: cnet_partof_49c7bcf41a (PartOf golan_height israel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "golden gate is part of california", "pln": ["(: cnet_partof_862519f32a (PartOf golden_gate california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "golden gate bridge is part of san francisco", "pln": ["(: cnet_partof_449633588e (PartOf golden_gate_bridge san_francisco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "golden gram is part of mung", "pln": ["(: cnet_partof_0ebb2dfc74 (PartOf golden_gram mung) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "goldsboro is part of north carolina", "pln": ["(: cnet_partof_2cba8d473a (PartOf goldsboro north_carolina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "golf club head is part of golf club", "pln": ["(: cnet_partof_8d3bba15f6 (PartOf golf_club_head golf_club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "golgi s cell is part of cerebral cortex", "pln": ["(: cnet_partof_267e6ce5ec (PartOf golgi_s_cell cerebral_cortex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "golgi s cell is part of spinal cord", "pln": ["(: cnet_partof_427c14881e (PartOf golgi_s_cell spinal_cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "golgi body is part of cytoplasm", "pln": ["(: cnet_partof_684b556d83 (PartOf golgi_body cytoplasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "goma is part of congo", "pln": ["(: cnet_partof_25ed877042 (PartOf goma congo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gomorrah is part of israel", "pln": ["(: cnet_partof_ca2cef14cd (PartOf gomorrah israel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gondwanaland is part of southern hemisphere", "pln": ["(: cnet_partof_299bc9f6df (PartOf gondwanaland southern_hemisphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gonion is part of lower jaw", "pln": ["(: cnet_partof_ac06708066 (PartOf gonion lower_jaw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "good friday is part of lent", "pln": ["(: cnet_partof_5aacc85f53 (PartOf good_friday lent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "goose is part of goose", "pln": ["(: cnet_partof_56d1f10eb0 (PartOf goose goose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "goose down is part of goose", "pln": ["(: cnet_partof_a1b3b1ec39 (PartOf goose_down goose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gooseberry is part of gooseberry", "pln": ["(: cnet_partof_3a459e1c6c (PartOf gooseberry gooseberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gore is part of full skirt", "pln": ["(: cnet_partof_4df7d33544 (PartOf gore full_skirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gore is part of gaiter", "pln": ["(: cnet_partof_66dfe6202c (PartOf gore gaiter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gore is part of umbrella", "pln": ["(: cnet_partof_e54a5875f6 (PartOf gore umbrella) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gorget is part of body armor", "pln": ["(: cnet_partof_5cc87d57d8 (PartOf gorget body_armor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gosainthan is part of himalaya", "pln": ["(: cnet_partof_0e46a43f32 (PartOf gosainthan himalaya) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "gosainthan is part of tibet", "pln": ["(: cnet_partof_6ac7a805e1 (PartOf gosainthan tibet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gospel is part of new testament", "pln": ["(: cnet_partof_79ac49d9e9 (PartOf gospel new_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gota canal is part of sweden", "pln": ["(: cnet_partof_cbca9e6612 (PartOf gota_canal sweden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "goteborg is part of sweden", "pln": ["(: cnet_partof_9e34e840d9 (PartOf goteborg sweden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gothenburg is part of sweden", "pln": ["(: cnet_partof_6a088833d7 (PartOf gothenburg sweden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "governador valadare is part of brazil", "pln": ["(: cnet_partof_4b92d981e6 (PartOf governador_valadare brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "graafian follicle is part of ovary", "pln": ["(: cnet_partof_3eb6506d28 (PartOf graafian_follicle ovary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "grad is part of quadrant", "pln": ["(: cnet_partof_eb2abd0ca3 (PartOf grad quadrant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "grain is part of decigram", "pln": ["(: cnet_partof_518975b44b (PartOf grain decigram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "grain is part of dram", "pln": ["(: cnet_partof_9e504d258a (PartOf grain dram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "grain is part of pennyweight", "pln": ["(: cnet_partof_56a5cedb0a (PartOf grain pennyweight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "grain is part of scruple", "pln": ["(: cnet_partof_d012796dd9 (PartOf grain scruple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gram is part of dekagram", "pln": ["(: cnet_partof_5248f7cea8 (PartOf gram dekagram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "grammatical meaning is part of function word", "pln": ["(: cnet_partof_451f0a6e8f (PartOf grammatical_meaning function_word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gran santiago is part of chile", "pln": ["(: cnet_partof_a209ffcbe2 (PartOf gran_santiago chile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "granada is part of andalusia", "pln": ["(: cnet_partof_6ff2e7ae6c (PartOf granada andalusia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "granadilla is part of granadilla", "pln": ["(: cnet_partof_495521a9a6 (PartOf granadilla granadilla) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "grand canal is part of china", "pln": ["(: cnet_partof_a0c96b06a6 (PartOf grand_canal china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "grand canal is part of venice", "pln": ["(: cnet_partof_adff4d6fdb (PartOf grand_canal venice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "grand canyon is part of arizona", "pln": ["(: cnet_partof_939b6ccec3 (PartOf grand_canyon arizona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "grand canyon is part of colorado plateau", "pln": ["(: cnet_partof_f4f1a9569f (PartOf grand_canyon colorado_plateau) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "grand canyon national park is part of arizona", "pln": ["(: cnet_partof_8e381b547a (PartOf grand_canyon_national_park arizona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "grand island is part of nebraska", "pln": ["(: cnet_partof_5af9dd9138 (PartOf grand_island nebraska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "grand rapid is part of michigan", "pln": ["(: cnet_partof_974c682f7a (PartOf grand_rapid michigan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "grand river is part of michigan", "pln": ["(: cnet_partof_3c7ccda688 (PartOf grand_river michigan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "grand teton is part of teton range", "pln": ["(: cnet_partof_f13fd0149b (PartOf grand_teton teton_range) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "grand teton national park is part of wyoming", "pln": ["(: cnet_partof_9609458d04 (PartOf grand_teton_national_park wyoming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "grandma is part of family", "pln": ["(: cnet_partof_7b1d869f0c (PartOf grandma family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "grape is part of grape", "pln": ["(: cnet_partof_94ba21bc3c (PartOf grape grape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "grapefruit is part of grapefruit", "pln": ["(: cnet_partof_dff0e895ea (PartOf grapefruit grapefruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "grapefruit peel is part of grapefruit", "pln": ["(: cnet_partof_12d681a0c9 (PartOf grapefruit_peel grapefruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "grate is part of furnace", "pln": ["(: cnet_partof_389437287d (PartOf grate furnace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "grate is part of stove", "pln": ["(: cnet_partof_8fa65357e0 (PartOf grate stove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gravestone is part of grave", "pln": ["(: cnet_partof_16524a256c (PartOf gravestone grave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gravitational constant is part of law of gravitation", "pln": ["(: cnet_partof_720a42933f (PartOf gravitational_constant law_of_gravitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "graz is part of austria", "pln": ["(: cnet_partof_4078402f1e (PartOf graz austria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "great australian bight is part of australia", "pln": ["(: cnet_partof_ac2d5c8c88 (PartOf great_australian_bight australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "great barrier reef is part of australia", "pln": ["(: cnet_partof_0cd885da36 (PartOf great_barrier_reef australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "great britain is part of british isle", "pln": ["(: cnet_partof_e81cf983ec (PartOf great_britain british_isle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "great divide is part of continental divide", "pln": ["(: cnet_partof_5888e79fb2 (PartOf great_divide continental_divide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "great dividing range is part of australia", "pln": ["(: cnet_partof_47b5016836 (PartOf great_dividing_range australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "great fall is part of montana", "pln": ["(: cnet_partof_7224b9c576 (PartOf great_fall montana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "great hall is part of palace", "pln": ["(: cnet_partof_91164c927b (PartOf great_hall palace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "great indian desert is part of india", "pln": ["(: cnet_partof_1da6a398e9 (PartOf great_indian_desert india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "great indian desert is part of pakistan", "pln": ["(: cnet_partof_0d6836e254 (PartOf great_indian_desert pakistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "great lake is part of canada", "pln": ["(: cnet_partof_ece9610667 (PartOf great_lake canada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "great lake is part of united state", "pln": ["(: cnet_partof_2f1aa0aa32 (PartOf great_lake united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "great plain is part of north america", "pln": ["(: cnet_partof_8ded20e002 (PartOf great_plain north_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "great pumpkin is part of halloween", "pln": ["(: cnet_partof_430786ae0a (PartOf great_pumpkin halloween) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "great rift valley is part of africa", "pln": ["(: cnet_partof_25569384a8 (PartOf great_rift_valley africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "great rift valley is part of asia", "pln": ["(: cnet_partof_6fa5b84be4 (PartOf great_rift_valley asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "great salt desert is part of iran", "pln": ["(: cnet_partof_d0543814a6 (PartOf great_salt_desert iran) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "great salt lake is part of utah", "pln": ["(: cnet_partof_e188b06792 (PartOf great_salt_lake utah) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "great sandy desert is part of australia", "pln": ["(: cnet_partof_3828a3a7fa (PartOf great_sandy_desert australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "great sandy desert is part of australian desert", "pln": ["(: cnet_partof_162ed21d0c (PartOf great_sandy_desert australian_desert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "great slave lake is part of northwest territory", "pln": ["(: cnet_partof_a1307fdf94 (PartOf great_slave_lake northwest_territory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "great smoky mountain is part of appalachian", "pln": ["(: cnet_partof_d9da220a40 (PartOf great_smoky_mountain appalachian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "great smoky mountain national park is part of north carolina", "pln": ["(: cnet_partof_ebd852a7ec (PartOf great_smoky_mountain_national_park north_carolina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "great smoky mountain national park is part of tennessee", "pln": ["(: cnet_partof_bd5a0b8807 (PartOf great_smoky_mountain_national_park tennessee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "great victoria desert is part of australia", "pln": ["(: cnet_partof_390ef2ad54 (PartOf great_victoria_desert australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "great victoria desert is part of australian desert", "pln": ["(: cnet_partof_377eba9873 (PartOf great_victoria_desert australian_desert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "greater antille is part of antille", "pln": ["(: cnet_partof_ce6143091c (PartOf greater_antille antille) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "greater new orlean bridge is part of new orlean", "pln": ["(: cnet_partof_e5c801f9c6 (PartOf greater_new_orlean_bridge new_orlean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "greater sunda island is part of sunda island", "pln": ["(: cnet_partof_41b871b464 (PartOf greater_sunda_island sunda_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "greave is part of body armor", "pln": ["(: cnet_partof_3a4784ddd9 (PartOf greave body_armor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "greece is part of europe", "pln": ["(: cnet_partof_037d67fa55 (PartOf greece europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "green is part of golf course", "pln": ["(: cnet_partof_f0c99982c6 (PartOf green golf_course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "green is part of utah", "pln": ["(: cnet_partof_b253909e39 (PartOf green utah) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "green is part of wyoming", "pln": ["(: cnet_partof_0cb1ea7787 (PartOf green wyoming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "green bay is part of wisconsin", "pln": ["(: cnet_partof_d2796c131b (PartOf green_bay wisconsin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "green gland is part of crustacean", "pln": ["(: cnet_partof_4244b2628d (PartOf green_gland crustacean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "green mountain is part of appalachian", "pln": ["(: cnet_partof_4243409af7 (PartOf green_mountain appalachian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "green mountain is part of vermont", "pln": ["(: cnet_partof_28967bc1c7 (PartOf green_mountain vermont) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "greenland is part of arctic ocean", "pln": ["(: cnet_partof_57556fbdc9 (PartOf greenland arctic_ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "greenland is part of atlantic", "pln": ["(: cnet_partof_094ca7d85a (PartOf greenland atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "greenland sea is part of arctic ocean", "pln": ["(: cnet_partof_235d6a19fc (PartOf greenland_sea arctic_ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "greenroom is part of theater", "pln": ["(: cnet_partof_f7aa8297ba (PartOf greenroom theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "greensboro is part of north carolina", "pln": ["(: cnet_partof_554efdcd89 (PartOf greensboro north_carolina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "greenville is part of mississippi", "pln": ["(: cnet_partof_5a56d0d58a (PartOf greenville mississippi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "greenville is part of north carolina", "pln": ["(: cnet_partof_c69ca46460 (PartOf greenville north_carolina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "greenville is part of south carolina", "pln": ["(: cnet_partof_6532bce4c0 (PartOf greenville south_carolina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "greenwich is part of london", "pln": ["(: cnet_partof_47cb28d3c4 (PartOf greenwich london) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "greenwich village is part of new york", "pln": ["(: cnet_partof_9d58c9f80a (PartOf greenwich_village new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gregorian calendar month is part of gregorian calendar", "pln": ["(: cnet_partof_396a48c683 (PartOf gregorian_calendar_month gregorian_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "grenada is part of windward island", "pln": ["(: cnet_partof_94778204ba (PartOf grenada windward_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "grenoble is part of france", "pln": ["(: cnet_partof_5559805020 (PartOf grenoble france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "grid is part of infrastructure", "pln": ["(: cnet_partof_90f1a1c4d3 (PartOf grid infrastructure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "grid is part of tube", "pln": ["(: cnet_partof_f34b3eb598 (PartOf grid tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "grille is part of car", "pln": ["(: cnet_partof_55a0936a9e (PartOf grille car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "groin is part of loins", "pln": ["(: cnet_partof_8c9df65c17 (PartOf groin loins) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "grinding wheel is part of grinder", "pln": ["(: cnet_partof_c5bcec5b91 (PartOf grinding_wheel grinder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "groin is part of loin", "pln": ["(: cnet_partof_0ea0f75b1c (PartOf groin loin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "groschen is part of schilling", "pln": ["(: cnet_partof_c7c904fd8e (PartOf groschen schilling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "grosz is part of zloty", "pln": ["(: cnet_partof_940305994c (PartOf grosz zloty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ground beef is part of hamburger", "pln": ["(: cnet_partof_e6df413573 (PartOf ground_beef hamburger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ground zero is part of new york", "pln": ["(: cnet_partof_9402cb3ef2 (PartOf ground_zero new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "groundhog day is part of february", "pln": ["(: cnet_partof_b9b48d5070 (PartOf groundhog_day february) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "groundnut is part of groundnut", "pln": ["(: cnet_partof_959446eb48 (PartOf groundnut groundnut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "group is part of molecule", "pln": ["(: cnet_partof_b7f663577d (PartOf group molecule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "grouper is part of grouper", "pln": ["(: cnet_partof_d6ae82c80b (PartOf grouper grouper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "grouse is part of grouse", "pln": ["(: cnet_partof_92956cfba0 (PartOf grouse grouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "grozny is part of russia", "pln": ["(: cnet_partof_7397750a78 (PartOf grozny russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "grugru nut is part of grugru", "pln": ["(: cnet_partof_2d27f70367 (PartOf grugru_nut grugru) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "guadalajara is part of mexico", "pln": ["(: cnet_partof_ed6f7df4bd (PartOf guadalajara mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "guadalcanal is part of world war ii", "pln": ["(: cnet_partof_2a35aa1f90 (PartOf guadalcanal world_war_ii) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "guadalcanal is part of solomon", "pln": ["(: cnet_partof_273f05a10b (PartOf guadalcanal solomon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "guadalupe island is part of pacific", "pln": ["(: cnet_partof_38121a1766 (PartOf guadalupe_island pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "guadalupe mountain is part of new mexico", "pln": ["(: cnet_partof_59ba9572d8 (PartOf guadalupe_mountain new_mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "guadalupe mountain is part of texa", "pln": ["(: cnet_partof_8da50869d6 (PartOf guadalupe_mountain texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "guadalupe mountain national park is part of texa", "pln": ["(: cnet_partof_12b007d2e4 (PartOf guadalupe_mountain_national_park texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "guadeloupe is part of leeward island", "pln": ["(: cnet_partof_48e88dc579 (PartOf guadeloupe leeward_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "guallatiri is part of chile", "pln": ["(: cnet_partof_d2bb8f0df3 (PartOf guallatiri chile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "guam is part of mariana island", "pln": ["(: cnet_partof_36e9354048 (PartOf guam mariana_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "guantanamo is part of cuba", "pln": ["(: cnet_partof_6d78a8e643 (PartOf guantanamo cuba) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "guard is part of cortege", "pln": ["(: cnet_partof_9d2fa75770 (PartOf guard cortege) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "guard hair is part of fur", "pln": ["(: cnet_partof_6fa47ba445 (PartOf guard_hair fur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "guatemala is part of central america", "pln": ["(: cnet_partof_5ba95a85eb (PartOf guatemala central_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "guatemala city is part of guatemala", "pln": ["(: cnet_partof_7e5c38f07a (PartOf guatemala_city guatemala) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "guava is part of guava", "pln": ["(: cnet_partof_87fc45f729 (PartOf guava guava) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "guayaquil is part of ecuador", "pln": ["(: cnet_partof_48f0343805 (PartOf guayaquil ecuador) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "guiana is part of south america", "pln": ["(: cnet_partof_bd41f58f98 (PartOf guiana south_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "guiana highland is part of south america", "pln": ["(: cnet_partof_2217982454 (PartOf guiana_highland south_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "guidance system is part of guided missile", "pln": ["(: cnet_partof_1baa0606a9 (PartOf guidance_system guided_missile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "guimpe is part of nun s habit", "pln": ["(: cnet_partof_789faafce2 (PartOf guimpe nun_s_habit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "guinea is part of africa", "pln": ["(: cnet_partof_d361092f9f (PartOf guinea africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "guinea bissau is part of africa", "pln": ["(: cnet_partof_155e5e136a (PartOf guinea_bissau africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "guinea hen is part of guinea fowl", "pln": ["(: cnet_partof_5422cb4b82 (PartOf guinea_hen guinea_fowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gujarat is part of india", "pln": ["(: cnet_partof_df0583d006 (PartOf gujarat india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gulf is part of sea", "pln": ["(: cnet_partof_093ea32349 (PartOf gulf sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gulf coast is part of gulf of mexico", "pln": ["(: cnet_partof_6f07ef9f52 (PartOf gulf_coast gulf_of_mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gulf of aden is part of indian ocean", "pln": ["(: cnet_partof_4da1f45cf3 (PartOf gulf_of_aden indian_ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gulf of alaska is part of pacific", "pln": ["(: cnet_partof_c9772114ab (PartOf gulf_of_alaska pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gulf of antalya is part of mediterranean", "pln": ["(: cnet_partof_812b317358 (PartOf gulf_of_antalya mediterranean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gulf of aqaba is part of red sea", "pln": ["(: cnet_partof_b03d785afc (PartOf gulf_of_aqaba red_sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gulf of bothnia is part of baltic", "pln": ["(: cnet_partof_f4318e1839 (PartOf gulf_of_bothnia baltic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gulf of california is part of mexico", "pln": ["(: cnet_partof_3c6568b0ec (PartOf gulf_of_california mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gulf of carpentaria is part of australia", "pln": ["(: cnet_partof_7ce0983753 (PartOf gulf_of_carpentaria australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gulf of corinth is part of ionian sea", "pln": ["(: cnet_partof_41ad4d12a4 (PartOf gulf_of_corinth ionian_sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gulf of finland is part of baltic", "pln": ["(: cnet_partof_be8da7d5b4 (PartOf gulf_of_finland baltic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "gulf of guinea is part of atlantic", "pln": ["(: cnet_partof_6735dc835b (PartOf gulf_of_guinea atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gulf of martaban is part of andaman sea", "pln": ["(: cnet_partof_254ac74fe4 (PartOf gulf_of_martaban andaman_sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gulf of mexico is part of atlantic", "pln": ["(: cnet_partof_1767727341 (PartOf gulf_of_mexico atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gulf of ob is part of kara sea", "pln": ["(: cnet_partof_ed3c875c3d (PartOf gulf_of_ob kara_sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "gulf of ob is part of siberia", "pln": ["(: cnet_partof_3aeba3ed86 (PartOf gulf_of_ob siberia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gulf of oman is part of arabian sea", "pln": ["(: cnet_partof_ee7b940e11 (PartOf gulf_of_oman arabian_sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gulf of riga is part of baltic", "pln": ["(: cnet_partof_11656b478a (PartOf gulf_of_riga baltic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gulf of saint lawrence is part of atlantic", "pln": ["(: cnet_partof_4c09a264fe (PartOf gulf_of_saint_lawrence atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gulf of sidra is part of mediterranean", "pln": ["(: cnet_partof_fe01901644 (PartOf gulf_of_sidra mediterranean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gulf of suez is part of red sea", "pln": ["(: cnet_partof_8ff1ea7b13 (PartOf gulf_of_suez red_sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gulf of tehuantepec is part of mexico", "pln": ["(: cnet_partof_6fe0095741 (PartOf gulf_of_tehuantepec mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gulf of tehuantepec is part of pacific", "pln": ["(: cnet_partof_c9097de947 (PartOf gulf_of_tehuantepec pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gulf of thailand is part of south china sea", "pln": ["(: cnet_partof_48ed8422e8 (PartOf gulf_of_thailand south_china_sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gulf of venice is part of adriatic", "pln": ["(: cnet_partof_fde9a0f7f2 (PartOf gulf_of_venice adriatic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gulf state is part of south", "pln": ["(: cnet_partof_d16a96c99b (PartOf gulf_state south) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gulu is part of uganda", "pln": ["(: cnet_partof_7501858449 (PartOf gulu uganda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gumbo is part of okra", "pln": ["(: cnet_partof_0ca306223d (PartOf gumbo okra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gun enclosure is part of tank", "pln": ["(: cnet_partof_d64c1f0fce (PartOf gun_enclosure tank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gun muzzle is part of gun", "pln": ["(: cnet_partof_544cbecf98 (PartOf gun_muzzle gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gun powder is part of firework", "pln": ["(: cnet_partof_bb98dc96db (PartOf gun_powder firework) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gun trigger is part of gun", "pln": ["(: cnet_partof_77c20e784d (PartOf gun_trigger gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gunflint is part of flintlock", "pln": ["(: cnet_partof_a7e8b486e5 (PartOf gunflint flintlock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gunlock is part of gun", "pln": ["(: cnet_partof_dbe7c3f05e (PartOf gunlock gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gunsight is part of gun", "pln": ["(: cnet_partof_98b4c41e45 (PartOf gunsight gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "gunter s chain is part of furlong", "pln": ["(: cnet_partof_f84672b3a5 (PartOf gunter_s_chain furlong) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gusset is part of garment", "pln": ["(: cnet_partof_eff364cbcd (PartOf gusset garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "gutter is part of gable roof", "pln": ["(: cnet_partof_2b795523b8 (PartOf gutter gable_roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "guy is part of tent", "pln": ["(: cnet_partof_cad8d840d6 (PartOf guy tent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "guyana is part of guiana", "pln": ["(: cnet_partof_fd8377923b (PartOf guyana guiana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gynostegium is part of stamen", "pln": ["(: cnet_partof_989b2ff138 (PartOf gynostegium stamen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "gyroscope is part of gyrocompass", "pln": ["(: cnet_partof_8698949e03 (PartOf gyroscope gyrocompass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "gyroscope is part of gyrostabilizer", "pln": ["(: cnet_partof_de13a71a34 (PartOf gyroscope gyrostabilizer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gyrostabilizer is part of ship", "pln": ["(: cnet_partof_59afe2e951 (PartOf gyrostabilizer ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "gyrus is part of cerebrum", "pln": ["(: cnet_partof_1d41d56704 (PartOf gyrus cerebrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "habakkuk is part of old testament", "pln": ["(: cnet_partof_8130d99ed2 (PartOf habakkuk old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "habakkuk is part of prophet", "pln": ["(: cnet_partof_8459306836 (PartOf habakkuk prophet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hacienda is part of hacienda", "pln": ["(: cnet_partof_a40e816dcc (PartOf hacienda hacienda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "haddock is part of haddock", "pln": ["(: cnet_partof_3d443e2e68 (PartOf haddock haddock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "hadrian s wall is part of england", "pln": ["(: cnet_partof_969842c17f (PartOf hadrian_s_wall england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "haft is part of awl", "pln": ["(: cnet_partof_b5aa5c1cee (PartOf haft awl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "haft is part of ax", "pln": ["(: cnet_partof_e1b6ed5bfa (PartOf haft ax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "haft is part of dagger", "pln": ["(: cnet_partof_66fcc995d9 (PartOf haft dagger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "haft is part of file", "pln": ["(: cnet_partof_8322a8fd62 (PartOf haft file) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "haft is part of knife", "pln": ["(: cnet_partof_d2d4dffa1d (PartOf haft knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "haft is part of sickle", "pln": ["(: cnet_partof_cd603f585a (PartOf haft sickle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "haft is part of sword", "pln": ["(: cnet_partof_eed3c20e48 (PartOf haft sword) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hagberry is part of hagberry tree", "pln": ["(: cnet_partof_31139ca04a (PartOf hagberry hagberry_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hagerstown is part of maryland", "pln": ["(: cnet_partof_14873630c6 (PartOf hagerstown maryland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "haggai is part of old testament", "pln": ["(: cnet_partof_5543ef8195 (PartOf haggai old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "haggai is part of prophet", "pln": ["(: cnet_partof_61285b4f88 (PartOf haggai prophet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hagia sophia is part of istanbul", "pln": ["(: cnet_partof_75170aadc0 (PartOf hagia_sophia istanbul) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hagiographa is part of tanakh", "pln": ["(: cnet_partof_07feedcab2 (PartOf hagiographa tanakh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hague is part of netherland", "pln": ["(: cnet_partof_e918dad91c (PartOf hague netherland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "haifa is part of israel", "pln": ["(: cnet_partof_72eb3522a4 (PartOf haifa israel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hailstone is part of hail", "pln": ["(: cnet_partof_b0e6ea9db3 (PartOf hailstone hail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "haiphong is part of vietnam", "pln": ["(: cnet_partof_9d88647b43 (PartOf haiphong vietnam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hair is part of head", "pln": ["(: cnet_partof_48c13c8467 (PartOf hair head) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hair is part of integumentary system", "pln": ["(: cnet_partof_fdc9708796 (PartOf hair integumentary_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hair is part of mammal", "pln": ["(: cnet_partof_c0b99d271b (PartOf hair mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hair cell is part of organ of corti", "pln": ["(: cnet_partof_1434c8ae7f (PartOf hair_cell organ_of_corti) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hairline is part of hair", "pln": ["(: cnet_partof_a11db93518 (PartOf hairline hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hairspring is part of timepiece", "pln": ["(: cnet_partof_43adb97a9b (PartOf hairspring timepiece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "haiti is part of caribbean", "pln": ["(: cnet_partof_f159338c12 (PartOf haiti caribbean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "haiti is part of hispaniola", "pln": ["(: cnet_partof_3088729ce8 (PartOf haiti hispaniola) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "haitian centime is part of gourde", "pln": ["(: cnet_partof_2e0fb860d1 (PartOf haitian_centime gourde) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "haleakala national park is part of hawaii", "pln": ["(: cnet_partof_2403cd60c8 (PartOf haleakala_national_park hawaii) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "haler is part of koruna", "pln": ["(: cnet_partof_d65ab6566d (PartOf haler koruna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "half is part of basketball", "pln": ["(: cnet_partof_45c6a1dd2d (PartOf half basketball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "half is part of football", "pln": ["(: cnet_partof_ab9d115113 (PartOf half football) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "half is part of playing period", "pln": ["(: cnet_partof_a73e1f471c (PartOf half playing_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "half century is part of century", "pln": ["(: cnet_partof_ceb02d2326 (PartOf half_century century) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "half hour is part of hour", "pln": ["(: cnet_partof_63cdbacccd (PartOf half_hour hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "half mile is part of mile", "pln": ["(: cnet_partof_8e06ae1e96 (PartOf half_mile mile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "half moon is part of nail", "pln": ["(: cnet_partof_57bba6d537 (PartOf half_moon nail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "half moon is part of month", "pln": ["(: cnet_partof_e7f15e934d (PartOf half_moon month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "half pound is part of pound", "pln": ["(: cnet_partof_596f72aa8a (PartOf half_pound pound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "half sole is part of footwear", "pln": ["(: cnet_partof_a29ee01d20 (PartOf half_sole footwear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "halibut is part of halibut", "pln": ["(: cnet_partof_c599c05ff0 (PartOf halibut halibut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "halicarnassus is part of turkey", "pln": ["(: cnet_partof_2af72c11ec (PartOf halicarnassus turkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "halifax is part of nova scotia", "pln": ["(: cnet_partof_f02dd1f4de (PartOf halifax nova_scotia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "halle is part of germany", "pln": ["(: cnet_partof_20b5c2db6f (PartOf halle germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "halter is part of dipterous insect", "pln": ["(: cnet_partof_8d921925a3 (PartOf halter dipterous_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "halter is part of harness", "pln": ["(: cnet_partof_bb6c02da9c (PartOf halter harness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hambourg is part of germany", "pln": ["(: cnet_partof_c1ed02b225 (PartOf hambourg germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hamburg is part of germany", "pln": ["(: cnet_partof_91091d3cf6 (PartOf hamburg germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hame is part of collar", "pln": ["(: cnet_partof_fdcbc0130b (PartOf hame collar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hamelin is part of germany", "pln": ["(: cnet_partof_cfc87770af (PartOf hamelin germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hamilton is part of ontario", "pln": ["(: cnet_partof_d463833860 (PartOf hamilton ontario) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hammer is part of gunlock", "pln": ["(: cnet_partof_002e58e62e (PartOf hammer gunlock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hammer is part of piano action", "pln": ["(: cnet_partof_96fc3387ff (PartOf hammer piano_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hammer head is part of hammer", "pln": ["(: cnet_partof_960d9ef379 (PartOf hammer_head hammer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hammerhead is part of hammer", "pln": ["(: cnet_partof_8152745e1f (PartOf hammerhead hammer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hampshire is part of england", "pln": ["(: cnet_partof_4cc51c2d65 (PartOf hampshire england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hampton road is part of american civil war", "pln": ["(: cnet_partof_8f64b8a1d4 (PartOf hampton_road american_civil_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hampton road is part of virginia", "pln": ["(: cnet_partof_8f29ae905e (PartOf hampton_road virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hand is part of arm", "pln": ["(: cnet_partof_3831c7e198 (PartOf hand arm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hand is part of body", "pln": ["(: cnet_partof_8071ffd3bc (PartOf hand body) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hand is part of timepiece", "pln": ["(: cnet_partof_e9be79af4b (PartOf hand timepiece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hand is part of homo", "pln": ["(: cnet_partof_5f393d532e (PartOf hand homo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hand brake is part of motor vehicle", "pln": ["(: cnet_partof_33d4e58645 (PartOf hand_brake motor_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handy peak is part of san juan mountain", "pln": ["(: cnet_partof_4d439b3d6e (PartOf handy_peak san_juan_mountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handle is part of door", "pln": ["(: cnet_partof_87a2f09360 (PartOf handle door) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handle is part of hammer", "pln": ["(: cnet_partof_0dd3a19733 (PartOf handle hammer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handle is part of aspergill", "pln": ["(: cnet_partof_417dc152d3 (PartOf handle aspergill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handle is part of baggage", "pln": ["(: cnet_partof_e1e3fe282f (PartOf handle baggage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handle is part of baseball bat", "pln": ["(: cnet_partof_cabc361554 (PartOf handle baseball_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handle is part of briefcase", "pln": ["(: cnet_partof_f3e843d20b (PartOf handle briefcase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handle is part of brush", "pln": ["(: cnet_partof_da31e381c4 (PartOf handle brush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handle is part of carpet beater", "pln": ["(: cnet_partof_2ab5d18bf0 (PartOf handle carpet_beater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handle is part of carrycot", "pln": ["(: cnet_partof_23d7f96fbb (PartOf handle carrycot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handle is part of cheese cutter", "pln": ["(: cnet_partof_aa1f280414 (PartOf handle cheese_cutter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "handle is part of coffee cup", "pln": ["(: cnet_partof_cb98d18ed4 (PartOf handle coffee_cup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handle is part of coffeepot", "pln": ["(: cnet_partof_bf3ca92622 (PartOf handle coffeepot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handle is part of cricket bat", "pln": ["(: cnet_partof_ca3a6f6402 (PartOf handle cricket_bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handle is part of cutlery", "pln": ["(: cnet_partof_b196c1cd19 (PartOf handle cutlery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handle is part of edge tool", "pln": ["(: cnet_partof_31d535728a (PartOf handle edge_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handle is part of faucet", "pln": ["(: cnet_partof_a554c42d96 (PartOf handle faucet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handle is part of frying pan", "pln": ["(: cnet_partof_b6768c6f33 (PartOf handle frying_pan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "handle is part of hand tool", "pln": ["(: cnet_partof_14a2a0c8fd (PartOf handle hand_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "hastings is part of east sussex", "pln": ["(: cnet_partof_a51bc6ba57 (PartOf hastings east_sussex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "hatteras island is part of north carolina", "pln": ["(: cnet_partof_a98b1060ba (PartOf hatteras_island north_carolina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handle is part of handbarrow", "pln": ["(: cnet_partof_24971668c6 (PartOf handle handbarrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handle is part of handcart", "pln": ["(: cnet_partof_0d572de74e (PartOf handle handcart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handle is part of handlebar", "pln": ["(: cnet_partof_437b15e399 (PartOf handle handlebar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handle is part of handset", "pln": ["(: cnet_partof_15b2befec5 (PartOf handle handset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handle is part of ladle", "pln": ["(: cnet_partof_e6e587f90a (PartOf handle ladle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handle is part of mug", "pln": ["(: cnet_partof_0d1bc52c2a (PartOf handle mug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handle is part of racket", "pln": ["(: cnet_partof_b3b7bcc48b (PartOf handle racket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handle is part of saucepan", "pln": ["(: cnet_partof_d00e0b33bf (PartOf handle saucepan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handle is part of spatula", "pln": ["(: cnet_partof_bb32095d07 (PartOf handle spatula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handle is part of teacup", "pln": ["(: cnet_partof_64f1bb22da (PartOf handle teacup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handle is part of umbrella", "pln": ["(: cnet_partof_1e99fad38b (PartOf handle umbrella) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handle is part of watering can", "pln": ["(: cnet_partof_29e68b6b13 (PartOf handle watering_can) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handlebar is part of bicycle", "pln": ["(: cnet_partof_08200e5f38 (PartOf handlebar bicycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handwheel is part of lathe", "pln": ["(: cnet_partof_ee6645ddbc (PartOf handwheel lathe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handwheel is part of standing press", "pln": ["(: cnet_partof_a0c0a4cc60 (PartOf handwheel standing_press) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "handwheel is part of valve", "pln": ["(: cnet_partof_ab67848ea8 (PartOf handwheel valve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hanging garden of babylon is part of babylon", "pln": ["(: cnet_partof_388f4f65c9 (PartOf hanging_garden_of_babylon babylon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hanging wall is part of inclined fault", "pln": ["(: cnet_partof_7cc6ecc661 (PartOf hanging_wall inclined_fault) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hangman s rope is part of gallow", "pln": ["(: cnet_partof_de1a8a251d (PartOf hangman_s_rope gallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hangzhou is part of china", "pln": ["(: cnet_partof_5070b042a9 (PartOf hangzhou china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hannibal is part of missouri", "pln": ["(: cnet_partof_b9778d76b5 (PartOf hannibal missouri) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hannover is part of germany", "pln": ["(: cnet_partof_66a3f5a7fb (PartOf hannover germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hanoi is part of vietnam", "pln": ["(: cnet_partof_a7d9f64ca4 (PartOf hanoi vietnam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hanukkah is part of kislev", "pln": ["(: cnet_partof_80d0d9590f (PartOf hanukkah kislev) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hanukkah is part of tebet", "pln": ["(: cnet_partof_3570ca7a86 (PartOf hanukkah tebet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hao is part of dong", "pln": ["(: cnet_partof_25d9f2f7d2 (PartOf hao dong) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "harare is part of zimbabwe", "pln": ["(: cnet_partof_63202b4e3e (PartOf harare zimbabwe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hard disc is part of disk drive", "pln": ["(: cnet_partof_95531f8b1b (PartOf hard_disc disk_drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hard palate is part of palate", "pln": ["(: cnet_partof_0b68a85479 (PartOf hard_palate palate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hard palate is part of upper jaw", "pln": ["(: cnet_partof_ce7b8e7ffc (PartOf hard_palate upper_jaw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hardening is part of plastination", "pln": ["(: cnet_partof_37feb6a911 (PartOf hardening plastination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hardware is part of computer", "pln": ["(: cnet_partof_06c00ba9e4 (PartOf hardware computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hargeisa is part of somalia", "pln": ["(: cnet_partof_ebd9c1024c (PartOf hargeisa somalia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "harlem is part of manhattan", "pln": ["(: cnet_partof_108fdd43f6 (PartOf harlem manhattan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "harlem river is part of new york", "pln": ["(: cnet_partof_0fb5f96895 (PartOf harlem_river new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "harley street is part of london", "pln": ["(: cnet_partof_bcc6290930 (PartOf harley_street london) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "harness is part of parachute", "pln": ["(: cnet_partof_746d998ca5 (PartOf harness parachute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "harper s ferry is part of west virginia", "pln": ["(: cnet_partof_4e1ee430c7 (PartOf harper_s_ferry west_virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "harpoon line is part of harpoon", "pln": ["(: cnet_partof_66b9bfeae6 (PartOf harpoon_line harpoon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "harrisburg is part of pennsylvania", "pln": ["(: cnet_partof_80082218b8 (PartOf harrisburg pennsylvania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hartford is part of connecticut", "pln": ["(: cnet_partof_a7ac17e1d2 (PartOf hartford connecticut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "harvard university is part of cambridge", "pln": ["(: cnet_partof_a6e9b61aaa (PartOf harvard_university cambridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "harvest is part of farming", "pln": ["(: cnet_partof_51895616b4 (PartOf harvest farming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hashish is part of indian hemp", "pln": ["(: cnet_partof_37dc103430 (PartOf hashish indian_hemp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hasting is part of norman conquest", "pln": ["(: cnet_partof_d8d53a49a0 (PartOf hasting norman_conquest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hasting is part of east sussex", "pln": ["(: cnet_partof_8cf9158611 (PartOf hasting east_sussex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hatband is part of hat", "pln": ["(: cnet_partof_736101bd5e (PartOf hatband hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hatch is part of hatchway", "pln": ["(: cnet_partof_0e1661099b (PartOf hatch hatchway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hattera island is part of north carolina", "pln": ["(: cnet_partof_b65d5448e4 (PartOf hattera_island north_carolina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "hattiesburg is part of mississippi", "pln": ["(: cnet_partof_f750b9c442 (PartOf hattiesburg mississippi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "hays is part of kansas", "pln": ["(: cnet_partof_230ca74a78 (PartOf hays kansas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "haunch is part of quadruped", "pln": ["(: cnet_partof_3fcd488b7b (PartOf haunch quadruped) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "haunch is part of torso", "pln": ["(: cnet_partof_70703a1761 (PartOf haunch torso) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "haute normandie is part of normandie", "pln": ["(: cnet_partof_985b4ece23 (PartOf haute_normandie normandie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "havana is part of cuba", "pln": ["(: cnet_partof_b75c0570bc (PartOf havana cuba) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hawaii is part of hawaiian island", "pln": ["(: cnet_partof_a170570b1f (PartOf hawaii hawaiian_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hawaii is part of united state", "pln": ["(: cnet_partof_022a2f92b1 (PartOf hawaii united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hawaii volcanoe national park is part of hawaii", "pln": ["(: cnet_partof_1c56685e0b (PartOf hawaii_volcanoe_national_park hawaii) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hawaiian island is part of polynesia", "pln": ["(: cnet_partof_307da3c71c (PartOf hawaiian_island polynesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hayloft is part of barn", "pln": ["(: cnet_partof_e0bcc89201 (PartOf hayloft barn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hay is part of kansa", "pln": ["(: cnet_partof_aa35564681 (PartOf hay kansa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "hazard is part of golf course", "pln": ["(: cnet_partof_7ea7f82a89 (PartOf hazard golf_course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hazelnut is part of hazelnut", "pln": ["(: cnet_partof_700b0044b8 (PartOf hazelnut hazelnut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "head is part of animal", "pln": ["(: cnet_partof_ec4a222ea5 (PartOf head animal) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "head is part of people", "pln": ["(: cnet_partof_fa70f15440 (PartOf head people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "head is part of bolt", "pln": ["(: cnet_partof_c0ea92ea76 (PartOf head bolt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "head is part of coin", "pln": ["(: cnet_partof_5d580f1ae1 (PartOf head coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "head is part of hammer", "pln": ["(: cnet_partof_0b0ec71259 (PartOf head hammer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "head is part of nail", "pln": ["(: cnet_partof_8165fae747 (PartOf head nail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "head is part of pin", "pln": ["(: cnet_partof_8e316fe06a (PartOf head pin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "head is part of ram", "pln": ["(: cnet_partof_be7ba68213 (PartOf head ram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "head is part of screw", "pln": ["(: cnet_partof_ed5628c9be (PartOf head screw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "head is part of body", "pln": ["(: cnet_partof_a87cfe085c (PartOf head body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "head is part of skeletal muscle", "pln": ["(: cnet_partof_fb7d336cb1 (PartOf head skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "head is part of abscess", "pln": ["(: cnet_partof_352536459d (PartOf head abscess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "headboard is part of bedstead", "pln": ["(: cnet_partof_60d4d902bf (PartOf headboard bedstead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "header is part of wall", "pln": ["(: cnet_partof_b14db67fa7 (PartOf header wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "headgear is part of harness", "pln": ["(: cnet_partof_6c3975d871 (PartOf headgear harness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "headlight is part of electrical system", "pln": ["(: cnet_partof_41bc66212c (PartOf headlight electrical_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "headline is part of newspaper", "pln": ["(: cnet_partof_eca6023523 (PartOf headline newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "headquarter staff is part of headquarter", "pln": ["(: cnet_partof_9472a4f2b4 (PartOf headquarter_staff headquarter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "headrest is part of car seat", "pln": ["(: cnet_partof_9f34a4f52f (PartOf headrest car_seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "headshot is part of soccer", "pln": ["(: cnet_partof_e217aab2ab (PartOf headshot soccer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "headstall is part of bridle", "pln": ["(: cnet_partof_63c69d62a0 (PartOf headstall bridle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "headword is part of lexical entry", "pln": ["(: cnet_partof_6d4bbfb357 (PartOf headword lexical_entry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "headword is part of phrase", "pln": ["(: cnet_partof_ac9c785f6c (PartOf headword phrase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "heart is part of body", "pln": ["(: cnet_partof_fd1cec94dd (PartOf heart body) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "heart is part of circulatory system", "pln": ["(: cnet_partof_bc8adf1693 (PartOf heart circulatory_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "heart is part of human body", "pln": ["(: cnet_partof_c4c50ce064 (PartOf heart human_body) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "heart valve is part of heart", "pln": ["(: cnet_partof_846843b55f (PartOf heart_valve heart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hearth is part of fireplace", "pln": ["(: cnet_partof_c550369df4 (PartOf hearth fireplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hearthstone is part of fireplace", "pln": ["(: cnet_partof_c4f0dad0cf (PartOf hearthstone fireplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "heat shield is part of spacecraft", "pln": ["(: cnet_partof_1ba048120c (PartOf heat_shield spacecraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "heating element is part of electric heater", "pln": ["(: cnet_partof_8c4981e575 (PartOf heating_element electric_heater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "heating element is part of electric range", "pln": ["(: cnet_partof_988b1b9e46 (PartOf heating_element electric_range) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "heating element is part of gas range", "pln": ["(: cnet_partof_ef33825e09 (PartOf heating_element gas_range) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "heating system is part of building", "pln": ["(: cnet_partof_a94e37ce9a (PartOf heating_system building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "heaviside layer is part of ionosphere", "pln": ["(: cnet_partof_c37d0ea780 (PartOf heaviside_layer ionosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hebei is part of china", "pln": ["(: cnet_partof_42e76b3ebd (PartOf hebei china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hebride is part of scotland", "pln": ["(: cnet_partof_57b88e49f2 (PartOf hebride scotland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hectogram is part of kilogram", "pln": ["(: cnet_partof_5e0a790042 (PartOf hectogram kilogram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hectoliter is part of kiloliter", "pln": ["(: cnet_partof_4b2d5f5065 (PartOf hectoliter kiloliter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hectometer is part of kilometer", "pln": ["(: cnet_partof_9615b64c00 (PartOf hectometer kilometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "heel is part of boot", "pln": ["(: cnet_partof_d6a0f8c935 (PartOf heel boot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "heel is part of shoe", "pln": ["(: cnet_partof_f3ffe64b01 (PartOf heel shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "heel is part of foot", "pln": ["(: cnet_partof_e9b66772d3 (PartOf heel foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "heel is part of loaf of bread", "pln": ["(: cnet_partof_fc47af3243 (PartOf heel loaf_of_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "heel is part of golf club head", "pln": ["(: cnet_partof_c67accfa6c (PartOf heel golf_club_head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "heelbone is part of foot", "pln": ["(: cnet_partof_1101f956ab (PartOf heelbone foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "heirloom is part of inheritance", "pln": ["(: cnet_partof_2708bc975e (PartOf heirloom inheritance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hejaz is part of arabian peninsula", "pln": ["(: cnet_partof_8a7810572c (PartOf hejaz arabian_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hejaz is part of saudi arabia", "pln": ["(: cnet_partof_bfbfcf05b8 (PartOf hejaz saudi_arabia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "helena is part of montana", "pln": ["(: cnet_partof_eb20cc23e0 (PartOf helena montana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "heliosphere is part of milky way", "pln": ["(: cnet_partof_cc1647439e (PartOf heliosphere milky_way) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hell s kitchen is part of manhattan", "pln": ["(: cnet_partof_9e515e0b09 (PartOf hell_s_kitchen manhattan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "helm is part of motorboat", "pln": ["(: cnet_partof_e2943010f2 (PartOf helm motorboat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "helm is part of sailing vessel", "pln": ["(: cnet_partof_1be878f12d (PartOf helm sailing_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "helm is part of ship", "pln": ["(: cnet_partof_90c6d489b0 (PartOf helm ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "helm is part of tugboat", "pln": ["(: cnet_partof_8ef2d36dd2 (PartOf helm tugboat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "helmet is part of body armor", "pln": ["(: cnet_partof_719ca9f42b (PartOf helmet body_armor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "helping is part of meal", "pln": ["(: cnet_partof_311617f2e7 (PartOf helping meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "helsinki is part of finland", "pln": ["(: cnet_partof_588b0a2eda (PartOf helsinki finland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hem is part of fabric", "pln": ["(: cnet_partof_66099f42c4 (PartOf hem fabric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hemal arch is part of centrum", "pln": ["(: cnet_partof_2ec5558b2c (PartOf hemal_arch centrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hemisphere is part of cerebrum", "pln": ["(: cnet_partof_438750bf2d (PartOf hemisphere cerebrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hemisphere is part of earth", "pln": ["(: cnet_partof_3872a91659 (PartOf hemisphere earth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "hemline is part of coat", "pln": ["(: cnet_partof_a8dff1cf7a (PartOf hemline coat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "hemline is part of dress", "pln": ["(: cnet_partof_eda8834153 (PartOf hemline dress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hemline is part of skirt", "pln": ["(: cnet_partof_e6059c9fe4 (PartOf hemline skirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hemostasis is part of operation", "pln": ["(: cnet_partof_90cd8b9c23 (PartOf hemostasis operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hepatic artery is part of liver", "pln": ["(: cnet_partof_c3c0d7e447 (PartOf hepatic_artery liver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hepatic duct is part of liver", "pln": ["(: cnet_partof_79217648c0 (PartOf hepatic_duct liver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hepatic lobe is part of liver", "pln": ["(: cnet_partof_5e191ef754 (PartOf hepatic_lobe liver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hepatic vein is part of liver", "pln": ["(: cnet_partof_8c124b101e (PartOf hepatic_vein liver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "herat is part of afghanistan", "pln": ["(: cnet_partof_a9cd48c944 (PartOf herat afghanistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "herculaneum is part of italy", "pln": ["(: cnet_partof_75cb9122fb (PartOf herculaneum italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hermosillo is part of mexico", "pln": ["(: cnet_partof_5b73afed39 (PartOf hermosillo mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "herring is part of herring", "pln": ["(: cnet_partof_d1c2bde3d8 (PartOf herring herring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hertfordshire is part of england", "pln": ["(: cnet_partof_5cea69cf94 (PartOf hertfordshire england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hertz is part of kilohertz", "pln": ["(: cnet_partof_280cc64e75 (PartOf hertz kilohertz) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "heshvan is part of jewish calendar", "pln": ["(: cnet_partof_ab374cbdf1 (PartOf heshvan jewish_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hibbing is part of minnesota", "pln": ["(: cnet_partof_ca612c92a4 (PartOf hibbing minnesota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hickory nut is part of big shellbark", "pln": ["(: cnet_partof_df11b4da2b (PartOf hickory_nut big_shellbark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hickory nut is part of shagbark", "pln": ["(: cnet_partof_f4c1505919 (PartOf hickory_nut shagbark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hierarchy is part of administration", "pln": ["(: cnet_partof_25d9878b65 (PartOf hierarchy administration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hierarchy is part of system", "pln": ["(: cnet_partof_1d69c0cc8a (PartOf hierarchy system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "high is part of anticyclone", "pln": ["(: cnet_partof_260e141f4b (PartOf high anticyclone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "high frequency is part of electromagnetic spectrum", "pln": ["(: cnet_partof_38ef6588c4 (PartOf high_frequency electromagnetic_spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "high gear is part of car", "pln": ["(: cnet_partof_a43b19f087 (PartOf high_gear car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "high point is part of experience", "pln": ["(: cnet_partof_a008fac20b (PartOf high_point experience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "high renaissance is part of renaissance", "pln": ["(: cnet_partof_3919894ff2 (PartOf high_renaissance renaissance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "high sea is part of main", "pln": ["(: cnet_partof_2a6b08b73c (PartOf high_sea main) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "high table is part of dining hall", "pln": ["(: cnet_partof_24aa5d67c7 (PartOf high_table dining_hall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "highland is part of scotland", "pln": ["(: cnet_partof_add0b9b2ea (PartOf highland scotland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hillside is part of hill", "pln": ["(: cnet_partof_5f4557c55c (PartOf hillside hill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hilo is part of hawaii", "pln": ["(: cnet_partof_3b30f91c7e (PartOf hilo hawaii) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hilt is part of dagger", "pln": ["(: cnet_partof_389a0409b2 (PartOf hilt dagger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hilt is part of sword", "pln": ["(: cnet_partof_c2658ea123 (PartOf hilt sword) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "himalaya is part of india", "pln": ["(: cnet_partof_25314eb4de (PartOf himalaya india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "himalaya is part of nepal", "pln": ["(: cnet_partof_cfd1b61c7d (PartOf himalaya nepal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "himalaya is part of tibet", "pln": ["(: cnet_partof_ee227ed335 (PartOf himalaya tibet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hind leg is part of quadruped", "pln": ["(: cnet_partof_da4ab3dd2a (PartOf hind_leg quadruped) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hindbrain is part of brain", "pln": ["(: cnet_partof_98c76af09f (PartOf hindbrain brain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hindfoot is part of quadruped", "pln": ["(: cnet_partof_0de492530b (PartOf hindfoot quadruped) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hindgut is part of intestine", "pln": ["(: cnet_partof_62dee275a4 (PartOf hindgut intestine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hindquarter is part of bird", "pln": ["(: cnet_partof_a1f3f91746 (PartOf hindquarter bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hindquarter is part of quadruped", "pln": ["(: cnet_partof_69b1fea04c (PartOf hindquarter quadruped) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hindu calendar month is part of hindu calendar", "pln": ["(: cnet_partof_d09a7ee874 (PartOf hindu_calendar_month hindu_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hindu kush is part of afghanistan", "pln": ["(: cnet_partof_95aec285b9 (PartOf hindu_kush afghanistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hindu kush is part of pakistan", "pln": ["(: cnet_partof_3dd8024d02 (PartOf hindu_kush pakistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hindustan is part of india", "pln": ["(: cnet_partof_f4c6517f73 (PartOf hindustan india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hinge is part of bi fold door", "pln": ["(: cnet_partof_74018cfad8 (PartOf hinge bi_fold_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hinge is part of car door", "pln": ["(: cnet_partof_93802b7db9 (PartOf hinge car_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hinge is part of exterior door", "pln": ["(: cnet_partof_ed9be19caf (PartOf hinge exterior_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hinge is part of french door", "pln": ["(: cnet_partof_92fe928d4c (PartOf hinge french_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hinge is part of gate", "pln": ["(: cnet_partof_60acc0996d (PartOf hinge gate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hinge is part of swing door", "pln": ["(: cnet_partof_7426edbaa7 (PartOf hinge swing_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hip is part of hip roof", "pln": ["(: cnet_partof_47d9bb3c9f (PartOf hip hip_roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hip is part of pelvis", "pln": ["(: cnet_partof_6b00f3da6c (PartOf hip pelvis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hip is part of thigh", "pln": ["(: cnet_partof_656bf90bea (PartOf hip thigh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hip is part of torso", "pln": ["(: cnet_partof_201da2dd6a (PartOf hip torso) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hip is part of rose", "pln": ["(: cnet_partof_7bd0c17811 (PartOf hip rose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hip pocket is part of pair of trouser", "pln": ["(: cnet_partof_6dfa5bb12d (PartOf hip_pocket pair_of_trouser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hip socket is part of joint", "pln": ["(: cnet_partof_b7862c6e7d (PartOf hip_socket joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hipbone is part of pelvis", "pln": ["(: cnet_partof_5370b09252 (PartOf hipbone pelvis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hipline is part of garment", "pln": ["(: cnet_partof_d3eafe2348 (PartOf hipline garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hippo is part of algeria", "pln": ["(: cnet_partof_b48d3dfece (PartOf hippo algeria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hippocampus is part of limbic system", "pln": ["(: cnet_partof_50735917ea (PartOf hippocampus limbic_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hiroshima is part of honshu", "pln": ["(: cnet_partof_d277253f7c (PartOf hiroshima honshu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hispaniola is part of greater antille", "pln": ["(: cnet_partof_73cc18ff38 (PartOf hispaniola greater_antille) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "histiocyte is part of connective tissue", "pln": ["(: cnet_partof_5b4fe61e21 (PartOf histiocyte connective_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "ho chi minh city is part of vietnam", "pln": ["(: cnet_partof_cd7af38236 (PartOf ho_chi_minh_city vietnam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hobart is part of tasmania", "pln": ["(: cnet_partof_3c0a3d820f (PartOf hobart tasmania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "hock is part of hind leg", "pln": ["(: cnet_partof_2c67d7af44 (PartOf hock hind_leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "hohenlinden is part of napoleonic wars", "pln": ["(: cnet_partof_3f2f9bd22e (PartOf hohenlinden napoleonic_wars) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "holy of holies is part of tabernacle", "pln": ["(: cnet_partof_b39694a28a (PartOf holy_of_holies tabernacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hock is part of ungulate", "pln": ["(: cnet_partof_46a6c12562 (PartOf hock ungulate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hodeida is part of yemen", "pln": ["(: cnet_partof_4c9923f158 (PartOf hodeida yemen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hoe handle is part of hoe", "pln": ["(: cnet_partof_799a54311a (PartOf hoe_handle hoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hog plum is part of chickasaw plum", "pln": ["(: cnet_partof_818bcdea53 (PartOf hog_plum chickasaw_plum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hog plum is part of hog plum", "pln": ["(: cnet_partof_521a8623d3 (PartOf hog_plum hog_plum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hohenlinden is part of napoleonic war", "pln": ["(: cnet_partof_279e1fbd70 (PartOf hohenlinden napoleonic_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hohenlinden is part of bavaria", "pln": ["(: cnet_partof_5bad0b7ab2 (PartOf hohenlinden bavaria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hohhot is part of inner mongolia", "pln": ["(: cnet_partof_bc120c383e (PartOf hohhot inner_mongolia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hokkaido is part of japan", "pln": ["(: cnet_partof_d8c5e50408 (PartOf hokkaido japan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hole is part of golf course", "pln": ["(: cnet_partof_b87246feac (PartOf hole golf_course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "holocene is part of quaternary", "pln": ["(: cnet_partof_0f983efd49 (PartOf holocene quaternary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "holy of holy is part of tabernacle", "pln": ["(: cnet_partof_d82dda8dc0 (PartOf holy_of_holy tabernacle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "holy roman empire is part of europe", "pln": ["(: cnet_partof_c0d6692938 (PartOf holy_roman_empire europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "holy see is part of rome", "pln": ["(: cnet_partof_0fae1b2b72 (PartOf holy_see rome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "holy sepulcher is part of jerusalem", "pln": ["(: cnet_partof_e467f682f6 (PartOf holy_sepulcher jerusalem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "holy week is part of church calendar", "pln": ["(: cnet_partof_9e04303871 (PartOf holy_week church_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "homeboy is part of youth gang", "pln": ["(: cnet_partof_9f84faee0c (PartOf homeboy youth_gang) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "homerun wall is part of baseball stadium", "pln": ["(: cnet_partof_23a4c5bf14 (PartOf homerun_wall baseball_stadium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "homework is part of education", "pln": ["(: cnet_partof_17bf6fe685 (PartOf homework education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "homing device is part of guided missile", "pln": ["(: cnet_partof_5178c3e678 (PartOf homing_device guided_missile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "homyel is part of belarus", "pln": ["(: cnet_partof_c25ab722b0 (PartOf homyel belarus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hondura is part of central america", "pln": ["(: cnet_partof_ba716aab6e (PartOf hondura central_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "honesty is part of integrity", "pln": ["(: cnet_partof_d82948c343 (PartOf honesty integrity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "honeycomb is part of beehive", "pln": ["(: cnet_partof_89f35a3cb8 (PartOf honeycomb beehive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hong kong is part of china", "pln": ["(: cnet_partof_9d434c1002 (PartOf hong_kong china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "honiara is part of solomon island", "pln": ["(: cnet_partof_0cb38efa10 (PartOf honiara solomon_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "honolulu is part of oahu", "pln": ["(: cnet_partof_7b93a2c4e2 (PartOf honolulu oahu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "honshu is part of japan", "pln": ["(: cnet_partof_f3853b6f2c (PartOf honshu japan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hood is part of airplane", "pln": ["(: cnet_partof_1ead307ff3 (PartOf hood airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hood is part of car", "pln": ["(: cnet_partof_0e63524178 (PartOf hood car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hood is part of plant", "pln": ["(: cnet_partof_6e8e11444c (PartOf hood plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hood ornament is part of hood", "pln": ["(: cnet_partof_ec1538f95c (PartOf hood_ornament hood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hoof is part of hoof", "pln": ["(: cnet_partof_fef52299a6 (PartOf hoof hoof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hoof is part of ungulate", "pln": ["(: cnet_partof_a61bd2391a (PartOf hoof ungulate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hook is part of coat hanger", "pln": ["(: cnet_partof_187199d738 (PartOf hook coat_hanger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "hook is part of grapnel", "pln": ["(: cnet_partof_548f64d7a7 (PartOf hook grapnel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hook of holland is part of netherland", "pln": ["(: cnet_partof_8d7a65e5b5 (PartOf hook_of_holland netherland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "hoop is part of barrel", "pln": ["(: cnet_partof_febc5ae12d (PartOf hoop barrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "housatonic is part of massachusetts", "pln": ["(: cnet_partof_42bee6278f (PartOf housatonic massachusetts) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hoop is part of hoopskirt", "pln": ["(: cnet_partof_28848df2e0 (PartOf hoop hoopskirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hoop is part of wagon wheel", "pln": ["(: cnet_partof_f4f103907b (PartOf hoop wagon_wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hoover dam is part of nevada", "pln": ["(: cnet_partof_8c5e42ed87 (PartOf hoover_dam nevada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "horizon is part of perspective", "pln": ["(: cnet_partof_e177f621ff (PartOf horizon perspective) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "horizon is part of profile", "pln": ["(: cnet_partof_de380cc57b (PartOf horizon profile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "horizontal stabilizer is part of horizontal tail", "pln": ["(: cnet_partof_585a909bd9 (PartOf horizontal_stabilizer horizontal_tail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "horizontal tail is part of tail", "pln": ["(: cnet_partof_8a645742cc (PartOf horizontal_tail tail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "horn is part of car", "pln": ["(: cnet_partof_e76e5908f9 (PartOf horn car) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "horn is part of bull", "pln": ["(: cnet_partof_e8e61bcf0e (PartOf horn bull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "horn is part of goat", "pln": ["(: cnet_partof_4766d7b589 (PartOf horn goat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "horn is part of ram", "pln": ["(: cnet_partof_c1a5cd035c (PartOf horn ram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "horn is part of stock saddle", "pln": ["(: cnet_partof_b4199b30c3 (PartOf horn stock_saddle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "horn button is part of automobile horn", "pln": ["(: cnet_partof_c8118e2150 (PartOf horn_button automobile_horn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "horse s foot is part of horse", "pln": ["(: cnet_partof_328a4841b4 (PartOf horse_s_foot horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "horseback is part of horse", "pln": ["(: cnet_partof_d220a7c511 (PartOf horseback horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "horsemeat is part of horse", "pln": ["(: cnet_partof_1d14652297 (PartOf horsemeat horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "horseradish is part of horseradish", "pln": ["(: cnet_partof_3155cad7a5 (PartOf horseradish horseradish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hosea is part of old testament", "pln": ["(: cnet_partof_f9d7f1313b (PartOf hosea old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hosea is part of prophet", "pln": ["(: cnet_partof_f54102c779 (PartOf hosea prophet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hospital room is part of hospital", "pln": ["(: cnet_partof_66144402f1 (PartOf hospital_room hospital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hot spring is part of arkansa", "pln": ["(: cnet_partof_2b31e76c5c (PartOf hot_spring arkansa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hot spring national park is part of arkansa", "pln": ["(: cnet_partof_a405dd8a8d (PartOf hot_spring_national_park arkansa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hotel room is part of hotel", "pln": ["(: cnet_partof_7f5d4a9575 (PartOf hotel_room hotel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hottentot bread is part of elephant s foot", "pln": ["(: cnet_partof_f86acedcf6 (PartOf hottentot_bread elephant_s_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "houghton is part of michigan", "pln": ["(: cnet_partof_cfe5cf1447 (PartOf houghton michigan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hour is part of day", "pln": ["(: cnet_partof_410a7a8dad (PartOf hour day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "housatonic is part of connecticut", "pln": ["(: cnet_partof_df6b798ba9 (PartOf housatonic connecticut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "housatonic is part of massachusett", "pln": ["(: cnet_partof_ed49dbc631 (PartOf housatonic massachusett) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hous of parliament is part of westminster", "pln": ["(: cnet_partof_30437c2f89 (PartOf hous_of_parliament westminster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "housing development is part of residential district", "pln": ["(: cnet_partof_a8f0f830a9 (PartOf housing_development residential_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "housing estate is part of residential district", "pln": ["(: cnet_partof_95350f4d8e (PartOf housing_estate residential_district) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "houston is part of texa", "pln": ["(: cnet_partof_7e8a8274a6 (PartOf houston texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "huainaputina is part of peru", "pln": ["(: cnet_partof_73d2271afa (PartOf huainaputina peru) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "huang he is part of china", "pln": ["(: cnet_partof_837e16e31c (PartOf huang_he china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "huascaran is part of ande", "pln": ["(: cnet_partof_c3bdf2e5ae (PartOf huascaran ande) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "huascaran is part of peru", "pln": ["(: cnet_partof_6c538d92d7 (PartOf huascaran peru) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "hub is part of car wheel", "pln": ["(: cnet_partof_3170b82b6c (PartOf hub car_wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hub is part of electric fan", "pln": ["(: cnet_partof_b975e5cf9c (PartOf hub electric_fan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hub is part of propeller", "pln": ["(: cnet_partof_82ced5ec1d (PartOf hub propeller) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hubbard is part of alaska", "pln": ["(: cnet_partof_ec9f3a8b45 (PartOf hubbard alaska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hubbard is part of coast range", "pln": ["(: cnet_partof_9db3c5e8a0 (PartOf hubbard coast_range) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hubbard squash is part of hubbard squash", "pln": ["(: cnet_partof_9432f0211c (PartOf hubbard_squash hubbard_squash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "hubcap is part of car wheel", "pln": ["(: cnet_partof_2962dd3d7b (PartOf hubcap car_wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "huckleberry is part of black huckleberry", "pln": ["(: cnet_partof_53ee73890b (PartOf huckleberry black_huckleberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "huddersfield is part of west yorkshire", "pln": ["(: cnet_partof_3587cd5a8e (PartOf huddersfield west_yorkshire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hudson is part of new york", "pln": ["(: cnet_partof_906a111aea (PartOf hudson new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hudson bay is part of canada", "pln": ["(: cnet_partof_bdcb70df05 (PartOf hudson_bay canada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "huitre is part of oyster", "pln": ["(: cnet_partof_626621079c (PartOf huitre oyster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hull is part of vessel", "pln": ["(: cnet_partof_23e0af3660 (PartOf hull vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hull is part of england", "pln": ["(: cnet_partof_89f5b8f092 (PartOf hull england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "human is part of ecology", "pln": ["(: cnet_partof_451b5e0f03 (PartOf human ecology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "human body is part of homo", "pln": ["(: cnet_partof_1315892596 (PartOf human_body homo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "human body is part of person", "pln": ["(: cnet_partof_45f32b61dc (PartOf human_body person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "human head is part of homo", "pln": ["(: cnet_partof_86b12e09c4 (PartOf human_head homo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "humber is part of england", "pln": ["(: cnet_partof_fdfdeb3cb7 (PartOf humber england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "humber bridge is part of hull", "pln": ["(: cnet_partof_caa69013ec (PartOf humber_bridge hull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "humerus is part of arm", "pln": ["(: cnet_partof_bb7c1b3fd6 (PartOf humerus arm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hunan is part of china", "pln": ["(: cnet_partof_4da65f67d4 (PartOf hunan china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hundredweight is part of long ton", "pln": ["(: cnet_partof_903aad91b0 (PartOf hundredweight long_ton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hundredweight is part of quintal", "pln": ["(: cnet_partof_6785bc7650 (PartOf hundredweight quintal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hundredweight is part of short ton", "pln": ["(: cnet_partof_143d041e42 (PartOf hundredweight short_ton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hungary is part of europe", "pln": ["(: cnet_partof_a89809058b (PartOf hungary europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hunter point is part of san francisco", "pln": ["(: cnet_partof_a180915c58 (PartOf hunter_point san_francisco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "huntington is part of west virginia", "pln": ["(: cnet_partof_65009548f4 (PartOf huntington west_virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "huntsville is part of alabama", "pln": ["(: cnet_partof_47779aed49 (PartOf huntsville alabama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hurricane is part of beaufort scale", "pln": ["(: cnet_partof_b220e2216b (PartOf hurricane beaufort_scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hurricane deck is part of passenger ship", "pln": ["(: cnet_partof_bb0d78c5d9 (PartOf hurricane_deck passenger_ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hyderabad is part of india", "pln": ["(: cnet_partof_074714dfb7 (PartOf hyderabad india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hyderabad is part of pakistan", "pln": ["(: cnet_partof_0b927dc270 (PartOf hyderabad pakistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hydrazine is part of rocket fuel", "pln": ["(: cnet_partof_7d34cb4185 (PartOf hydrazine rocket_fuel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hydrogen is part of water", "pln": ["(: cnet_partof_968688fbbf (PartOf hydrogen water) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hydrogen ion is part of hydrogen atom", "pln": ["(: cnet_partof_eb8976af63 (PartOf hydrogen_ion hydrogen_atom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hydrosphere is part of earth", "pln": ["(: cnet_partof_86e5db647f (PartOf hydrosphere earth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "hymen is part of vagina", "pln": ["(: cnet_partof_9d5c6ff125 (PartOf hymen vagina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hymenium is part of fungus", "pln": ["(: cnet_partof_a9ceada118 (PartOf hymenium fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hyperactivity is part of attention deficit disorder", "pln": ["(: cnet_partof_45f5a3bf61 (PartOf hyperactivity attention_deficit_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hyperbilirubinemia is part of jaundice", "pln": ["(: cnet_partof_1f296a5ee2 (PartOf hyperbilirubinemia jaundice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hypercapnia is part of asphyxia", "pln": ["(: cnet_partof_ffe86e0126 (PartOf hypercapnia asphyxia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hyperpituitarism is part of acromegaly", "pln": ["(: cnet_partof_28b2291491 (PartOf hyperpituitarism acromegaly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hyperpituitarism is part of giantism", "pln": ["(: cnet_partof_520044289c (PartOf hyperpituitarism giantism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hypertext is part of object oriented database", "pln": ["(: cnet_partof_5134da3945 (PartOf hypertext object_oriented_database) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hypha is part of mycelium", "pln": ["(: cnet_partof_0f019e6565 (PartOf hypha mycelium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hypobasidium is part of basidium", "pln": ["(: cnet_partof_7f288ed15b (PartOf hypobasidium basidium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hypochondrium is part of abdomen", "pln": ["(: cnet_partof_3dcef99de2 (PartOf hypochondrium abdomen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hypodermic needle is part of hypodermic syringe", "pln": ["(: cnet_partof_2b16d31716 (PartOf hypodermic_needle hypodermic_syringe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hypodermis is part of body covering", "pln": ["(: cnet_partof_a92770cd64 (PartOf hypodermis body_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "hypoglycemia is part of insulin shock", "pln": ["(: cnet_partof_7546c74686 (PartOf hypoglycemia insulin_shock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hypophyseal stalk is part of pituitary", "pln": ["(: cnet_partof_210f4a9d0a (PartOf hypophyseal_stalk pituitary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hypopigmentation is part of leukoderma", "pln": ["(: cnet_partof_57cb2cffd7 (PartOf hypopigmentation leukoderma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "hypopigmentation is part of vitiligo", "pln": ["(: cnet_partof_03509c20f2 (PartOf hypopigmentation vitiligo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hypotenuse is part of right triangle", "pln": ["(: cnet_partof_db70bff455 (PartOf hypotenuse right_triangle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hypothalamus is part of diencephalon", "pln": ["(: cnet_partof_16abe46873 (PartOf hypothalamus diencephalon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hypothesis is part of theory", "pln": ["(: cnet_partof_afc1aecf2c (PartOf hypothesis theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hypoxia is part of asphyxia", "pln": ["(: cnet_partof_e252242c66 (PartOf hypoxia asphyxia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hyssop is part of hyssop", "pln": ["(: cnet_partof_cf61406bc6 (PartOf hyssop hyssop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "hysterotomy is part of cesarean delivery", "pln": ["(: cnet_partof_55e04c5109 (PartOf hysterotomy cesarean_delivery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "i chronicle is part of hagiographa", "pln": ["(: cnet_partof_91c3b0ef66 (PartOf i_chronicle hagiographa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "i chronicle is part of old testament", "pln": ["(: cnet_partof_5197030ff3 (PartOf i_chronicle old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "i chronicle is part of paralipomenon", "pln": ["(: cnet_partof_3e657a80b1 (PartOf i_chronicle paralipomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "i esdra is part of apocrypha", "pln": ["(: cnet_partof_b451464c93 (PartOf i_esdra apocrypha) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "i king is part of old testament", "pln": ["(: cnet_partof_deb8703879 (PartOf i_king old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "i king is part of prophet", "pln": ["(: cnet_partof_7078f0e372 (PartOf i_king prophet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "i maccabee is part of apocrypha", "pln": ["(: cnet_partof_cc6dd0bd36 (PartOf i_maccabee apocrypha) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "i samuel is part of old testament", "pln": ["(: cnet_partof_d163e94f0b (PartOf i_samuel old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "i samuel is part of prophet", "pln": ["(: cnet_partof_a457807c6f (PartOf i_samuel prophet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ibadan is part of nigeria", "pln": ["(: cnet_partof_d3ddcf8ff0 (PartOf ibadan nigeria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "iberian peninsula is part of europe", "pln": ["(: cnet_partof_502b0d8973 (PartOf iberian_peninsula europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ice age is part of prehistory", "pln": ["(: cnet_partof_7d2e2a37db (PartOf ice_age prehistory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "ice crystal is part of precipitation", "pln": ["(: cnet_partof_8253327534 (PartOf ice_crystal precipitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "idaho falls is part of idaho", "pln": ["(: cnet_partof_5282ae07ca (PartOf idaho_falls idaho) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ice maker is part of electric refrigerator", "pln": ["(: cnet_partof_13e169a24e (PartOf ice_maker electric_refrigerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "icefall is part of glacier", "pln": ["(: cnet_partof_85411c6aff (PartOf icefall glacier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "iceland is part of atlantic", "pln": ["(: cnet_partof_d2c51981b1 (PartOf iceland atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "iceland is part of europe", "pln": ["(: cnet_partof_c307f7a35d (PartOf iceland europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "iceland is part of iceland", "pln": ["(: cnet_partof_861dfabb78 (PartOf iceland iceland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "icon is part of graphical user interface", "pln": ["(: cnet_partof_4cb2387cec (PartOf icon graphical_user_interface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "id is part of unconscious mind", "pln": ["(: cnet_partof_4576878d01 (PartOf id unconscious_mind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "idaho is part of united state", "pln": ["(: cnet_partof_6e7fa48260 (PartOf idaho united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "idaho fall is part of idaho", "pln": ["(: cnet_partof_30e900a79b (PartOf idaho_fall idaho) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "idiot light is part of control panel", "pln": ["(: cnet_partof_7f75d99a93 (PartOf idiot_light control_panel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "iditarod trail is part of alaska", "pln": ["(: cnet_partof_4d92db05bc (PartOf iditarod_trail alaska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "ignition is part of electrical system", "pln": ["(: cnet_partof_0a3070b8b6 (PartOf ignition electrical_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ignition coil is part of ignition", "pln": ["(: cnet_partof_376aa09b16 (PartOf ignition_coil ignition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ignition switch is part of ignition", "pln": ["(: cnet_partof_55f4fe2c7d (PartOf ignition_switch ignition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "iguazu is part of argentina", "pln": ["(: cnet_partof_6885dede61 (PartOf iguazu argentina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "iguazu is part of brazil", "pln": ["(: cnet_partof_fb632c4e23 (PartOf iguazu brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ii chronicle is part of hagiographa", "pln": ["(: cnet_partof_f04480a9df (PartOf ii_chronicle hagiographa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ii chronicle is part of old testament", "pln": ["(: cnet_partof_bc4dc21737 (PartOf ii_chronicle old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ii chronicle is part of paralipomenon", "pln": ["(: cnet_partof_c8fedce343 (PartOf ii_chronicle paralipomenon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ii esdra is part of apocrypha", "pln": ["(: cnet_partof_9ab46cd803 (PartOf ii_esdra apocrypha) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ii king is part of old testament", "pln": ["(: cnet_partof_796c27848e (PartOf ii_king old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ii king is part of prophet", "pln": ["(: cnet_partof_c515b34201 (PartOf ii_king prophet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ii maccabee is part of apocrypha", "pln": ["(: cnet_partof_76f0721999 (PartOf ii_maccabee apocrypha) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ii samuel is part of old testament", "pln": ["(: cnet_partof_d56f898ed4 (PartOf ii_samuel old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ii samuel is part of prophet", "pln": ["(: cnet_partof_ed86217844 (PartOf ii_samuel prophet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ijssel is part of netherland", "pln": ["(: cnet_partof_294db83a69 (PartOf ijssel netherland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ijsselmeer is part of netherland", "pln": ["(: cnet_partof_56ba5281d8 (PartOf ijsselmeer netherland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ilama is part of ilama", "pln": ["(: cnet_partof_2042248ce5 (PartOf ilama ilama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ile de france is part of france", "pln": ["(: cnet_partof_7cd88101e0 (PartOf ile_de_france france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ile st louis is part of paris", "pln": ["(: cnet_partof_a1f10c2bb3 (PartOf ile_st_louis paris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ileal artery is part of small intestine", "pln": ["(: cnet_partof_34109e2382 (PartOf ileal_artery small_intestine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "iliac artery is part of ilium", "pln": ["(: cnet_partof_950bcc0cd1 (PartOf iliac_artery ilium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ilium is part of pelvis", "pln": ["(: cnet_partof_be664c94d8 (PartOf ilium pelvis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "illampu is part of ande", "pln": ["(: cnet_partof_af590de894 (PartOf illampu ande) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "illampu is part of bolivia", "pln": ["(: cnet_partof_b21e477ec5 (PartOf illampu bolivia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "illimani is part of ande", "pln": ["(: cnet_partof_7d486174ea (PartOf illimani ande) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "illimani is part of bolivia", "pln": ["(: cnet_partof_a034743118 (PartOf illimani bolivia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "illinois is part of midwest", "pln": ["(: cnet_partof_7145a26983 (PartOf illinois midwest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "illinois is part of united state", "pln": ["(: cnet_partof_cb9f70fc14 (PartOf illinois united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "illinois river is part of illinois", "pln": ["(: cnet_partof_a45246d1b4 (PartOf illinois_river illinois) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "imaginary part is part of complex number", "pln": ["(: cnet_partof_2999f95f0c (PartOf imaginary_part complex_number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "immigration and naturalization service is part of homeland security", "pln": ["(: cnet_partof_695f2d0788 (PartOf immigration_and_naturalization_service homeland_security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "impeller is part of rotor", "pln": ["(: cnet_partof_a0dd27a780 (PartOf impeller rotor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "implosion is part of stop consonant", "pln": ["(: cnet_partof_281d41002e (PartOf implosion stop_consonant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "impregnation is part of plastination", "pln": ["(: cnet_partof_f59310db67 (PartOf impregnation plastination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "inaugural address is part of inauguration", "pln": ["(: cnet_partof_b1e367a31b (PartOf inaugural_address inauguration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "inauguration day is part of january", "pln": ["(: cnet_partof_d9b46ea54c (PartOf inauguration_day january) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "inch is part of foot", "pln": ["(: cnet_partof_895dd94742 (PartOf inch foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "inchon is part of korean war", "pln": ["(: cnet_partof_8b166479d2 (PartOf inchon korean_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "inchon is part of south korea", "pln": ["(: cnet_partof_76d962c471 (PartOf inchon south_korea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "incident is part of episode", "pln": ["(: cnet_partof_1db4ce95ed (PartOf incident episode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "incision is part of operation", "pln": ["(: cnet_partof_2412ef452c (PartOf incision operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "incubation is part of infection", "pln": ["(: cnet_partof_725cbc6dae (PartOf incubation infection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "incus is part of middle ear", "pln": ["(: cnet_partof_4598698a75 (PartOf incus middle_ear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "independence is part of missouri", "pln": ["(: cnet_partof_29f983d24f (PartOf independence missouri) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "independence day is part of july", "pln": ["(: cnet_partof_e4849229e6 (PartOf independence_day july) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "independence hall is part of philadelphia", "pln": ["(: cnet_partof_38edd8d2f5 (PartOf independence_hall philadelphia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "index is part of back matter", "pln": ["(: cnet_partof_153c1d7b5f (PartOf index back_matter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "india is part of asia", "pln": ["(: cnet_partof_069e8f951a (PartOf india asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "indian summer is part of fall", "pln": ["(: cnet_partof_70d0141bcc (PartOf indian_summer fall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "indiana is part of corn belt", "pln": ["(: cnet_partof_8a30c1a5e6 (PartOf indiana corn_belt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "indiana is part of midwest", "pln": ["(: cnet_partof_2974f032a9 (PartOf indiana midwest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "indiana is part of united state", "pln": ["(: cnet_partof_ed134bf621 (PartOf indiana united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "indianapolis is part of indiana", "pln": ["(: cnet_partof_5ccef316ad (PartOf indianapolis indiana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "indigirka is part of siberia", "pln": ["(: cnet_partof_a5e6396e4d (PartOf indigirka siberia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "indochina is part of southeast asia", "pln": ["(: cnet_partof_ccf40c9b56 (PartOf indochina southeast_asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "indonesia is part of austronesia", "pln": ["(: cnet_partof_00fcd83112 (PartOf indonesia austronesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "indonesia is part of southeast asia", "pln": ["(: cnet_partof_b7ac8f2832 (PartOf indonesia southeast_asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "indonesian borneo is part of borneo", "pln": ["(: cnet_partof_fcfbf50c0e (PartOf indonesian_borneo borneo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "indonesian borneo is part of indonesia", "pln": ["(: cnet_partof_893725b0eb (PartOf indonesian_borneo indonesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "induction coil is part of transformer", "pln": ["(: cnet_partof_383a6a8e8e (PartOf induction_coil transformer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "indus is part of pakistan", "pln": ["(: cnet_partof_5a7daf2ca6 (PartOf indus pakistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "indusium is part of sorus", "pln": ["(: cnet_partof_8608197803 (PartOf indusium sorus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "inertial guidance system is part of autopilot", "pln": ["(: cnet_partof_038ea72627 (PartOf inertial_guidance_system autopilot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "inertial guidance system is part of spacecraft", "pln": ["(: cnet_partof_1b53f92554 (PartOf inertial_guidance_system spacecraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "inferior colliculus is part of midbrain", "pln": ["(: cnet_partof_e3da29949c (PartOf inferior_colliculus midbrain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "inflammation is part of inflammatory disease", "pln": ["(: cnet_partof_40768d8cc5 (PartOf inflammation inflammatory_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "infrared is part of infrared spectrum", "pln": ["(: cnet_partof_72f2982e93 (PartOf infrared infrared_spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "infrared spectrum is part of electromagnetic spectrum", "pln": ["(: cnet_partof_538b77e09b (PartOf infrared_spectrum electromagnetic_spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "infrastructure is part of system", "pln": ["(: cnet_partof_0a6df822f9 (PartOf infrastructure system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "infundibulum is part of diencephalon", "pln": ["(: cnet_partof_af84f28e07 (PartOf infundibulum diencephalon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ingleside is part of san francisco", "pln": ["(: cnet_partof_eefe93f1ea (PartOf ingleside san_francisco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ingredient is part of dish", "pln": ["(: cnet_partof_df11eefedb (PartOf ingredient dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ingress is part of eclipse", "pln": ["(: cnet_partof_e397366a82 (PartOf ingress eclipse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "inhalation is part of breathing", "pln": ["(: cnet_partof_766dcc439c (PartOf inhalation breathing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "inion is part of occipital bone", "pln": ["(: cnet_partof_eb7bd0d3f4 (PartOf inion occipital_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ink is part of pen", "pln": ["(: cnet_partof_3ce4fc6450 (PartOf ink pen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ink cartridge is part of electrostatic printer", "pln": ["(: cnet_partof_f78c66bb76 (PartOf ink_cartridge electrostatic_printer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ink cartridge is part of fountain pen", "pln": ["(: cnet_partof_9bbf5149dc (PartOf ink_cartridge fountain_pen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "inland passage is part of alaska", "pln": ["(: cnet_partof_af0b08098e (PartOf inland_passage alaska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "inland passage is part of british columbia", "pln": ["(: cnet_partof_e0a25a00a6 (PartOf inland_passage british_columbia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "inland passage is part of washington", "pln": ["(: cnet_partof_9568ed6117 (PartOf inland_passage washington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "inland sea is part of pacific", "pln": ["(: cnet_partof_8d5fba573d (PartOf inland_sea pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "inlet is part of lake", "pln": ["(: cnet_partof_ffd1f6fd09 (PartOf inlet lake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "inlet is part of sea", "pln": ["(: cnet_partof_5c1df18950 (PartOf inlet sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "inlet manifold is part of gasoline engine", "pln": ["(: cnet_partof_6591e3f6a1 (PartOf inlet_manifold gasoline_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "inner city is part of city", "pln": ["(: cnet_partof_052095330f (PartOf inner_city city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "inner ear is part of auditory apparatus", "pln": ["(: cnet_partof_2b4744ad08 (PartOf inner_ear auditory_apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "inner hebride is part of hebride", "pln": ["(: cnet_partof_cdf1234368 (PartOf inner_hebride hebride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "inner mongolia is part of china", "pln": ["(: cnet_partof_b8ffc9fe32 (PartOf inner_mongolia china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "inner tube is part of pneumatic tire", "pln": ["(: cnet_partof_84c137437f (PartOf inner_tube pneumatic_tire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "inning is part of playing period", "pln": ["(: cnet_partof_e793729131 (PartOf inning playing_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "inning is part of cricket", "pln": ["(: cnet_partof_ecbff35e6c (PartOf inning cricket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "innsbruck is part of austria", "pln": ["(: cnet_partof_7569848a4e (PartOf innsbruck austria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "input routine is part of input program", "pln": ["(: cnet_partof_b6221b0a89 (PartOf input_routine input_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "insemination is part of sexual intercourse", "pln": ["(: cnet_partof_8e81b959da (PartOf insemination sexual_intercourse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "inside track is part of racetrack", "pln": ["(: cnet_partof_fc9fd738ae (PartOf inside_track racetrack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "insole is part of boot", "pln": ["(: cnet_partof_194c61ae7f (PartOf insole boot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "insole is part of shoe", "pln": ["(: cnet_partof_3103d2b113 (PartOf insole shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "inspiration is part of problem solving", "pln": ["(: cnet_partof_4bfe39021a (PartOf inspiration problem_solving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "installment is part of sery", "pln": ["(: cnet_partof_9be6ef7bed (PartOf installment sery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "instep is part of boot", "pln": ["(: cnet_partof_cc2a1f684e (PartOf instep boot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "instep is part of shoe", "pln": ["(: cnet_partof_8948501a37 (PartOf instep shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "instep is part of stocking", "pln": ["(: cnet_partof_ac29fab659 (PartOf instep stocking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "instep is part of foot", "pln": ["(: cnet_partof_dd4eaf9b8b (PartOf instep foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "instruction is part of program", "pln": ["(: cnet_partof_0aab270f30 (PartOf instruction program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "instrumentality is part of government department", "pln": ["(: cnet_partof_02a8382e79 (PartOf instrumentality government_department) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "intake manifold is part of fuel system", "pln": ["(: cnet_partof_1ee2c5c8d7 (PartOf intake_manifold fuel_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "intake valve is part of cylinder", "pln": ["(: cnet_partof_d6002466c7 (PartOf intake_valve cylinder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "integrated circuit is part of chip", "pln": ["(: cnet_partof_3ead5dc5c5 (PartOf integrated_circuit chip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "integrity is part of character", "pln": ["(: cnet_partof_06fc8ba024 (PartOf integrity character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "intensive care unit is part of hospital", "pln": ["(: cnet_partof_58c4bf9ac9 (PartOf intensive_care_unit hospital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "intercapitular vein is part of foot", "pln": ["(: cnet_partof_753c0ab11b (PartOf intercapitular_vein foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "intercapitular vein is part of hand", "pln": ["(: cnet_partof_bf1999b20f (PartOf intercapitular_vein hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "interchange is part of highway", "pln": ["(: cnet_partof_f1e33177e4 (PartOf interchange highway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "intergalactic space is part of outer space", "pln": ["(: cnet_partof_c164946cb3 (PartOf intergalactic_space outer_space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "interior door is part of building", "pln": ["(: cnet_partof_08f1e05e71 (PartOf interior_door building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "interlaken is part of switzerland", "pln": ["(: cnet_partof_87e8778132 (PartOf interlaken switzerland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "intermaxillary suture is part of upper jaw", "pln": ["(: cnet_partof_72692fc57a (PartOf intermaxillary_suture upper_jaw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "internal combustion engine is part of motor vehicle", "pln": ["(: cnet_partof_e5e420f00d (PartOf internal_combustion_engine motor_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "internal combustion engine is part of motorboat", "pln": ["(: cnet_partof_7bd0fb2255 (PartOf internal_combustion_engine motorboat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "internal revenue service is part of department of treasury", "pln": ["(: cnet_partof_7ff64eaece (PartOf internal_revenue_service department_of_treasury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "internasal suture is part of nose", "pln": ["(: cnet_partof_9803b8be64 (PartOf internasal_suture nose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "internet is part of modern communication system", "pln": ["(: cnet_partof_4de638050d (PartOf internet modern_communication_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "internode is part of stalk", "pln": ["(: cnet_partof_47cf90c71a (PartOf internode stalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "interplanetary dust is part of interplanetary medium", "pln": ["(: cnet_partof_68648f73a6 (PartOf interplanetary_dust interplanetary_medium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "interplanetary gas is part of interplanetary medium", "pln": ["(: cnet_partof_d4458d3d68 (PartOf interplanetary_gas interplanetary_medium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "interplanetary medium is part of solar system", "pln": ["(: cnet_partof_e8d7175327 (PartOf interplanetary_medium solar_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "interplanetary space is part of outer space", "pln": ["(: cnet_partof_092905c238 (PartOf interplanetary_space outer_space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "intersection is part of road", "pln": ["(: cnet_partof_3dbf9f7897 (PartOf intersection road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "interstellar space is part of outer space", "pln": ["(: cnet_partof_105aa9e4cd (PartOf interstellar_space outer_space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "intervertebral disc is part of spinal column", "pln": ["(: cnet_partof_04ce76e8d7 (PartOf intervertebral_disc spinal_column) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "intestine is part of human body", "pln": ["(: cnet_partof_2ed314a4b8 (PartOf intestine human_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "intestine is part of abdomen", "pln": ["(: cnet_partof_31919379eb (PartOf intestine abdomen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "introduction is part of address", "pln": ["(: cnet_partof_7c39d44b1c (PartOf introduction address) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "introduction is part of narration", "pln": ["(: cnet_partof_8e6de60de5 (PartOf introduction narration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "inventory item is part of inventory", "pln": ["(: cnet_partof_a8f5ec3d8f (PartOf inventory_item inventory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "invocation is part of service", "pln": ["(: cnet_partof_5dea2c05f6 (PartOf invocation service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "iodopsin is part of cone", "pln": ["(: cnet_partof_cc67fcd129 (PartOf iodopsin cone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ionia is part of asia minor", "pln": ["(: cnet_partof_dcca131844 (PartOf ionia asia_minor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ionian sea is part of mediterranean", "pln": ["(: cnet_partof_8baa7cc614 (PartOf ionian_sea mediterranean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ionosphere is part of atmosphere", "pln": ["(: cnet_partof_b87890bc91 (PartOf ionosphere atmosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "iowa is part of corn belt", "pln": ["(: cnet_partof_2b06a43668 (PartOf iowa corn_belt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "iowa is part of midwest", "pln": ["(: cnet_partof_d6f5fb7aa0 (PartOf iowa midwest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "iowa is part of united state", "pln": ["(: cnet_partof_b5ebf1f7a7 (PartOf iowa united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "iran is part of asia", "pln": ["(: cnet_partof_3c84504359 (PartOf iran asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "iran is part of gulf state", "pln": ["(: cnet_partof_8cb26a1786 (PartOf iran gulf_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "iran is part of middle east", "pln": ["(: cnet_partof_d01a6def65 (PartOf iran middle_east) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "iranian dinar is part of iranian rial", "pln": ["(: cnet_partof_ee2328d759 (PartOf iranian_dinar iranian_rial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "iraq is part of asia", "pln": ["(: cnet_partof_ee9bfddeda (PartOf iraq asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "iraq is part of gulf states", "pln": ["(: cnet_partof_ffc41c560a (PartOf iraq gulf_states) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "iraq is part of gulf state", "pln": ["(: cnet_partof_cc6fff882b (PartOf iraq gulf_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "iraq is part of middle east", "pln": ["(: cnet_partof_d52e3ade70 (PartOf iraq middle_east) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "iraqi kurdistan is part of iraq", "pln": ["(: cnet_partof_9e872b6662 (PartOf iraqi_kurdistan iraq) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "iraqi kurdistan is part of kurdistan", "pln": ["(: cnet_partof_abadf44712 (PartOf iraqi_kurdistan kurdistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ireland is part of british isle", "pln": ["(: cnet_partof_c6c8c0e49f (PartOf ireland british_isle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ireland is part of europe", "pln": ["(: cnet_partof_406ccacaa2 (PartOf ireland europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ireland is part of ireland", "pln": ["(: cnet_partof_4c4e87fb51 (PartOf ireland ireland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "iris is part of eye", "pln": ["(: cnet_partof_83c2d8c8d5 (PartOf iris eye) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "irish sea is part of north atlantic", "pln": ["(: cnet_partof_ef0c79435c (PartOf irish_sea north_atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "iron age is part of prehistory", "pln": ["(: cnet_partof_ca0e0d7748 (PartOf iron_age prehistory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "irtish is part of siberia", "pln": ["(: cnet_partof_158ced7122 (PartOf irtish siberia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "isaiah is part of old testament", "pln": ["(: cnet_partof_531904cd55 (PartOf isaiah old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "isaiah is part of prophet", "pln": ["(: cnet_partof_67feebe8e4 (PartOf isaiah prophet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ischia is part of campania", "pln": ["(: cnet_partof_dcba7358b1 (PartOf ischia campania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ischium is part of hip", "pln": ["(: cnet_partof_2c0b5ea545 (PartOf ischium hip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ischium is part of pelvis", "pln": ["(: cnet_partof_6f07e6630c (PartOf ischium pelvis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "isere is part of france", "pln": ["(: cnet_partof_ddc21aa9aa (PartOf isere france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "isfahan is part of iran", "pln": ["(: cnet_partof_e20d6b076b (PartOf isfahan iran) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "islamabad is part of pakistan", "pln": ["(: cnet_partof_661db6abcc (PartOf islamabad pakistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "islamic calendar month is part of islamic calendar", "pln": ["(: cnet_partof_756ea5a9b3 (PartOf islamic_calendar_month islamic_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "island of langerhan is part of pancrea", "pln": ["(: cnet_partof_a2be0484cd (PartOf island_of_langerhan pancrea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "islay is part of inner hebride", "pln": ["(: cnet_partof_c2e6097008 (PartOf islay inner_hebride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "isle of skye is part of inner hebride", "pln": ["(: cnet_partof_eae4d7469f (PartOf isle_of_skye inner_hebride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "isle royal national park is part of michigan", "pln": ["(: cnet_partof_b06d6d8595 (PartOf isle_royal_national_park michigan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "isobar is part of weather map", "pln": ["(: cnet_partof_733fe197ca (PartOf isobar weather_map) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "isotherm is part of weather map", "pln": ["(: cnet_partof_7a40798f95 (PartOf isotherm weather_map) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "israel is part of middle east", "pln": ["(: cnet_partof_a9c5bdf487 (PartOf israel middle_east) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "istanbul is part of turkey", "pln": ["(: cnet_partof_70ff651bcb (PartOf istanbul turkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "italian peninsula is part of italy", "pln": ["(: cnet_partof_a786016d35 (PartOf italian_peninsula italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "italian renaissance is part of renaissance", "pln": ["(: cnet_partof_f3dcf85f1c (PartOf italian_renaissance renaissance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "italy is part of europe", "pln": ["(: cnet_partof_03c61afa9d (PartOf italy europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "item is part of list", "pln": ["(: cnet_partof_19e36a78c4 (PartOf item list) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ithaca is part of greece", "pln": ["(: cnet_partof_a7380879d0 (PartOf ithaca greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ithaca is part of new york", "pln": ["(: cnet_partof_7f8663ad4a (PartOf ithaca new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ivory coast is part of africa", "pln": ["(: cnet_partof_5b4d5f38ae (PartOf ivory_coast africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ivory nut is part of ivory palm", "pln": ["(: cnet_partof_e64bb61490 (PartOf ivory_nut ivory_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "iwo is part of world war ii", "pln": ["(: cnet_partof_69779525b8 (PartOf iwo world_war_ii) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "iwo jima is part of japan", "pln": ["(: cnet_partof_e94c8a83bb (PartOf iwo_jima japan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "iyar is part of jewish calendar", "pln": ["(: cnet_partof_c0d7e5c56c (PartOf iyar jewish_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "izmir is part of turkey", "pln": ["(: cnet_partof_87ea402d18 (PartOf izmir turkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jabalpur is part of india", "pln": ["(: cnet_partof_9de1674589 (PartOf jabalpur india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jaboticaba is part of jaboticaba", "pln": ["(: cnet_partof_28e768f791 (PartOf jaboticaba jaboticaba) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jack is part of lawn bowling", "pln": ["(: cnet_partof_1793667aa3 (PartOf jack lawn_bowling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "jacket is part of potato", "pln": ["(: cnet_partof_7b5e8edbbb (PartOf jacket potato) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jackfruit is part of jackfruit", "pln": ["(: cnet_partof_88a74c1d3a (PartOf jackfruit jackfruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jackson is part of michigan", "pln": ["(: cnet_partof_f3194dd6ee (PartOf jackson michigan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jackson is part of mississippi", "pln": ["(: cnet_partof_be12c7e0d6 (PartOf jackson mississippi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jackson is part of tennessee", "pln": ["(: cnet_partof_2bb510eb2d (PartOf jackson tennessee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jackson is part of wyoming", "pln": ["(: cnet_partof_4dd44be23c (PartOf jackson wyoming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jacksonville is part of florida", "pln": ["(: cnet_partof_0e3cd9e04b (PartOf jacksonville florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jaffa is part of tel aviv", "pln": ["(: cnet_partof_bea21490f0 (PartOf jaffa tel_aviv) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jag is part of garment", "pln": ["(: cnet_partof_55b2b54ffa (PartOf jag garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jakarta is part of java", "pln": ["(: cnet_partof_c707af6c21 (PartOf jakarta java) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "jalalabad is part of afghanistan", "pln": ["(: cnet_partof_9950ce0243 (PartOf jalalabad afghanistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "jamaica is part of greater antilles", "pln": ["(: cnet_partof_831e81a31f (PartOf jamaica greater_antilles) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jamaica is part of caribbean", "pln": ["(: cnet_partof_0b72de4b92 (PartOf jamaica caribbean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jamaica is part of greater antille", "pln": ["(: cnet_partof_6cb42ea069 (PartOf jamaica greater_antille) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jamaica is part of jamaica", "pln": ["(: cnet_partof_aaead918da (PartOf jamaica jamaica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jamb is part of window frame", "pln": ["(: cnet_partof_e3e8a3f5b5 (PartOf jamb window_frame) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jame is part of north dakota", "pln": ["(: cnet_partof_13a6482609 (PartOf jame north_dakota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jame is part of south dakota", "pln": ["(: cnet_partof_48ac6eaa2e (PartOf jame south_dakota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jame is part of virginia", "pln": ["(: cnet_partof_43d4304aa2 (PartOf jame virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jame bay is part of ontario", "pln": ["(: cnet_partof_b76adfc39a (PartOf jame_bay ontario) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jame bay is part of quebec", "pln": ["(: cnet_partof_615e4fa0d3 (PartOf jame_bay quebec) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jamestown is part of virginia", "pln": ["(: cnet_partof_261dc4a24e (PartOf jamestown virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "january is part of gregorian calendar", "pln": ["(: cnet_partof_fcca642c4f (PartOf january gregorian_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "japan is part of asia", "pln": ["(: cnet_partof_9d1b7b0edd (PartOf japan asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "japan is part of pacific", "pln": ["(: cnet_partof_470e9698bb (PartOf japan pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "java is part of indonesia", "pln": ["(: cnet_partof_a43a775cc4 (PartOf java indonesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "jaw is part of bulldog clip", "pln": ["(: cnet_partof_f8f45f6c54 (PartOf jaw bulldog_clip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "jaw is part of pliers", "pln": ["(: cnet_partof_159261e35e (PartOf jaw pliers) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jaw is part of chuck", "pln": ["(: cnet_partof_5fb87ba158 (PartOf jaw chuck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jaw is part of plier", "pln": ["(: cnet_partof_92ed7cfff9 (PartOf jaw plier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jaw is part of vise", "pln": ["(: cnet_partof_4c18bd5d8d (PartOf jaw vise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jaw is part of wrench", "pln": ["(: cnet_partof_ead45034fe (PartOf jaw wrench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jaw is part of face", "pln": ["(: cnet_partof_a3a9780a50 (PartOf jaw face) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jaw is part of skull", "pln": ["(: cnet_partof_4e2c2f6819 (PartOf jaw skull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jebel musa is part of morocco", "pln": ["(: cnet_partof_aa4e4312b8 (PartOf jebel_musa morocco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jebel musa is part of pillar of hercule", "pln": ["(: cnet_partof_4a4f838bab (PartOf jebel_musa pillar_of_hercule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jeddah is part of saudi arabia", "pln": ["(: cnet_partof_d807f61dbc (PartOf jeddah saudi_arabia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jefferson city is part of missouri", "pln": ["(: cnet_partof_d2641f707e (PartOf jefferson_city missouri) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jefferson davis birthday is part of june", "pln": ["(: cnet_partof_3b803e3ed4 (PartOf jefferson_davis_birthday june) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jejunal artery is part of small intestine", "pln": ["(: cnet_partof_07c336ffb6 (PartOf jejunal_artery small_intestine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jena is part of napoleonic war", "pln": ["(: cnet_partof_56b393820d (PartOf jena napoleonic_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jeremiah is part of old testament", "pln": ["(: cnet_partof_35812fae47 (PartOf jeremiah old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jeremiah is part of prophet", "pln": ["(: cnet_partof_e38df49d5a (PartOf jeremiah prophet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jerez is part of spain", "pln": ["(: cnet_partof_380b48f7e2 (PartOf jerez spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "jericho is part of west bank", "pln": ["(: cnet_partof_981508db1d (PartOf jericho west_bank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "jerk is part of clean and jerk", "pln": ["(: cnet_partof_9552cd89f7 (PartOf jerk clean_and_jerk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jersey city is part of new jersey", "pln": ["(: cnet_partof_3ebbb4350b (PartOf jersey_city new_jersey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jerusalem is part of israel", "pln": ["(: cnet_partof_adae3949bd (PartOf jerusalem israel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jerusalem artichoke is part of jerusalem artichoke", "pln": ["(: cnet_partof_f5a6fffa3e (PartOf jerusalem_artichoke jerusalem_artichoke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "jesus is part of christianity", "pln": ["(: cnet_partof_cbdef2a761 (PartOf jesus christianity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jet engine is part of jet", "pln": ["(: cnet_partof_aede886300 (PartOf jet_engine jet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "jeth is part of hindu calendar", "pln": ["(: cnet_partof_75678e5d59 (PartOf jeth hindu_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jewish calendar month is part of jewish calendar", "pln": ["(: cnet_partof_9791887454 (PartOf jewish_calendar_month jewish_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jiao is part of yuan", "pln": ["(: cnet_partof_acc48d47f8 (PartOf jiao yuan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "jinja is part of uganda", "pln": ["(: cnet_partof_1fc1147ac2 (PartOf jinja uganda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "joao pessoa is part of brazil", "pln": ["(: cnet_partof_58a7b21378 (PartOf joao_pessoa brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "job is part of hagiographa", "pln": ["(: cnet_partof_5300259e63 (PartOf job hagiographa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "job is part of old testament", "pln": ["(: cnet_partof_c371628d44 (PartOf job old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jodhpur is part of riding habit", "pln": ["(: cnet_partof_a96a9e8e6a (PartOf jodhpur riding_habit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "joel is part of old testament", "pln": ["(: cnet_partof_5f3606ab2f (PartOf joel old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "joel is part of prophet", "pln": ["(: cnet_partof_55148542da (PartOf joel prophet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "johannesburg is part of south africa", "pln": ["(: cnet_partof_d59854f86e (PartOf johannesburg south_africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "john is part of new testament", "pln": ["(: cnet_partof_32d05bfcd5 (PartOf john new_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "john safran is part of entertainment world", "pln": ["(: cnet_partof_9e6887019a (PartOf john_safran entertainment_world) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "john hopkin is part of baltimore", "pln": ["(: cnet_partof_6a615dbc54 (PartOf john_hopkin baltimore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "johnson city is part of tennessee", "pln": ["(: cnet_partof_fe5bf05b6e (PartOf johnson_city tennessee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "johore is part of malaysia", "pln": ["(: cnet_partof_0a632ac095 (PartOf johore malaysia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "joint is part of skeleton", "pln": ["(: cnet_partof_0a70e6fa5b (PartOf joint skeleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "joint is part of articulatory system", "pln": ["(: cnet_partof_9e1d1d1a72 (PartOf joint articulatory_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "joint is part of endoskeleton", "pln": ["(: cnet_partof_5196b8aee8 (PartOf joint endoskeleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jonah is part of old testament", "pln": ["(: cnet_partof_2d7448adbf (PartOf jonah old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jonah is part of prophet", "pln": ["(: cnet_partof_46825afad4 (PartOf jonah prophet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jonesboro is part of arkansa", "pln": ["(: cnet_partof_cce72ce844 (PartOf jonesboro arkansa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jordan is part of asia", "pln": ["(: cnet_partof_7aab63c033 (PartOf jordan asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jordan is part of middle east", "pln": ["(: cnet_partof_93b84a9234 (PartOf jordan middle_east) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jordan is part of palestine", "pln": ["(: cnet_partof_a5bdb4b150 (PartOf jordan palestine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "joshua is part of old testament", "pln": ["(: cnet_partof_cdc04aba10 (PartOf joshua old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "joshua is part of prophet", "pln": ["(: cnet_partof_56ea879ca2 (PartOf joshua prophet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "joust is part of tournament", "pln": ["(: cnet_partof_9c2439514b (PartOf joust tournament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "jowl is part of face", "pln": ["(: cnet_partof_be1c242d63 (PartOf jowl face) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "judah is part of palestine", "pln": ["(: cnet_partof_bd636893ac (PartOf judah palestine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "judaism is part of jewry", "pln": ["(: cnet_partof_6de1cc0b0d (PartOf judaism jewry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "judea is part of palestine", "pln": ["(: cnet_partof_1ec27753de (PartOf judea palestine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "judge is part of old testament", "pln": ["(: cnet_partof_1c433c4dc1 (PartOf judge old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "judge is part of prophet", "pln": ["(: cnet_partof_849f4ef6fb (PartOf judge prophet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "judiciary is part of government", "pln": ["(: cnet_partof_22300a4a65 (PartOf judiciary government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "judith is part of apocrypha", "pln": ["(: cnet_partof_15bdb8d1ff (PartOf judith apocrypha) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jugale is part of cheekbone", "pln": ["(: cnet_partof_7abe037426 (PartOf jugale cheekbone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "jugular vein is part of neck", "pln": ["(: cnet_partof_a2950022f2 (PartOf jugular_vein neck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "juniper berries is part of common juniper", "pln": ["(: cnet_partof_45897f773e (PartOf juniper_berries common_juniper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "kamet is part of himalayas", "pln": ["(: cnet_partof_e9b1af97f1 (PartOf kamet himalayas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jujube is part of jujube", "pln": ["(: cnet_partof_5c7175434d (PartOf jujube jujube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "july is part of gregorian calendar", "pln": ["(: cnet_partof_049e55c6e2 (PartOf july gregorian_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jumada i is part of islamic calendar", "pln": ["(: cnet_partof_290d2632a2 (PartOf jumada_i islamic_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jumada ii is part of islamic calendar", "pln": ["(: cnet_partof_70c81a21f5 (PartOf jumada_ii islamic_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jumping bean is part of sebastiana", "pln": ["(: cnet_partof_da849f4bdf (PartOf jumping_bean sebastiana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "june is part of gregorian calendar", "pln": ["(: cnet_partof_5e22d53793 (PartOf june gregorian_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "juneau is part of alaska", "pln": ["(: cnet_partof_f25b7975e1 (PartOf juneau alaska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "juniper berry is part of common juniper", "pln": ["(: cnet_partof_ee3d0e4acd (PartOf juniper_berry common_juniper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "juniper berry is part of juniper", "pln": ["(: cnet_partof_d8a70e589d (PartOf juniper_berry juniper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jurassic is part of mesozoic", "pln": ["(: cnet_partof_8d74780148 (PartOf jurassic mesozoic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jury box is part of court", "pln": ["(: cnet_partof_a5a864466c (PartOf jury_box court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "jutland is part of world war i", "pln": ["(: cnet_partof_3466b64ca3 (PartOf jutland world_war_i) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "juvenile body is part of juvenile", "pln": ["(: cnet_partof_0ead8fcdee (PartOf juvenile_body juvenile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "k2 is part of karakoram", "pln": ["(: cnet_partof_79fcaabf5a (PartOf k2 karakoram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kaaba is part of mecca", "pln": ["(: cnet_partof_9426db7f94 (PartOf kaaba mecca) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kabul is part of afghanistan", "pln": ["(: cnet_partof_6a6887cf93 (PartOf kabul afghanistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kahoolawe is part of hawaiian island", "pln": ["(: cnet_partof_3b6caffb49 (PartOf kahoolawe hawaiian_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kai apple is part of kei apple", "pln": ["(: cnet_partof_54e55b8af9 (PartOf kai_apple kei_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kalahari is part of botswana", "pln": ["(: cnet_partof_79668fae7c (PartOf kalahari botswana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kalahari is part of namibia", "pln": ["(: cnet_partof_73965f31aa (PartOf kalahari namibia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kalahari is part of south africa", "pln": ["(: cnet_partof_c7a0a290ff (PartOf kalahari south_africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kaluga is part of russia", "pln": ["(: cnet_partof_171de6ccbc (PartOf kaluga russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kamchatka peninsula is part of siberia", "pln": ["(: cnet_partof_10eec3bf6c (PartOf kamchatka_peninsula siberia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kamet is part of himalaya", "pln": ["(: cnet_partof_1610ad5a74 (PartOf kamet himalaya) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "kamet is part of india", "pln": ["(: cnet_partof_d810564e57 (PartOf kamet india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kammon strait bridge is part of japan", "pln": ["(: cnet_partof_9885ef1b90 (PartOf kammon_strait_bridge japan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kampala is part of buganda", "pln": ["(: cnet_partof_aa648f0c20 (PartOf kampala buganda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kananga is part of congo", "pln": ["(: cnet_partof_4d96dcf1f1 (PartOf kananga congo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kanara is part of india", "pln": ["(: cnet_partof_046dfe234b (PartOf kanara india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kanawha is part of west virginia", "pln": ["(: cnet_partof_34e597a473 (PartOf kanawha west_virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kanchenjunga is part of himalaya", "pln": ["(: cnet_partof_9af3df15ae (PartOf kanchenjunga himalaya) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kanchenjunga is part of nepal", "pln": ["(: cnet_partof_60fed8ea9e (PartOf kanchenjunga nepal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kanchenjunga is part of tibet", "pln": ["(: cnet_partof_de73fab7a9 (PartOf kanchenjunga tibet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kandahar is part of afghanistan", "pln": ["(: cnet_partof_598c932ee2 (PartOf kandahar afghanistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "kandy is part of sri lanka", "pln": ["(: cnet_partof_24166d60a6 (PartOf kandy sri_lanka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "kansas city is part of kansas", "pln": ["(: cnet_partof_b9ddb5365b (PartOf kansas_city kansas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kansa is part of united state", "pln": ["(: cnet_partof_fdca19909d (PartOf kansa united_state) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kansa is part of midwest", "pln": ["(: cnet_partof_36f8adbd02 (PartOf kansa midwest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kansa is part of kansa", "pln": ["(: cnet_partof_1d9771aa6d (PartOf kansa kansa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kansa city is part of kansa", "pln": ["(: cnet_partof_8079047553 (PartOf kansa_city kansa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kansa city is part of missouri", "pln": ["(: cnet_partof_ac29cc3418 (PartOf kansa_city missouri) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kara sea is part of arctic ocean", "pln": ["(: cnet_partof_909dc21de0 (PartOf kara_sea arctic_ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "karachi is part of pakistan", "pln": ["(: cnet_partof_9845555ed6 (PartOf karachi pakistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "karakoram is part of kashmir", "pln": ["(: cnet_partof_c1e54bd8f1 (PartOf karakoram kashmir) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "karelia is part of finland", "pln": ["(: cnet_partof_8e1f024451 (PartOf karelia finland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "karelia is part of russia", "pln": ["(: cnet_partof_011e6cad18 (PartOf karelia russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "karnataka is part of india", "pln": ["(: cnet_partof_bb8c47ecff (PartOf karnataka india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kartik is part of hindu calendar", "pln": ["(: cnet_partof_f7d978eee1 (PartOf kartik hindu_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "karyokinesis is part of meiosis", "pln": ["(: cnet_partof_8a1afb23aa (PartOf karyokinesis meiosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "karyokinesis is part of mitosis", "pln": ["(: cnet_partof_6a8ff88946 (PartOf karyokinesis mitosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kasai is part of angola", "pln": ["(: cnet_partof_5d9b0e110f (PartOf kasai angola) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kasai is part of congo", "pln": ["(: cnet_partof_30eff67cf4 (PartOf kasai congo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kashmir is part of india", "pln": ["(: cnet_partof_e07d4b1683 (PartOf kashmir india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kashmir is part of pakistan", "pln": ["(: cnet_partof_6b29f09418 (PartOf kashmir pakistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kathmandu is part of nepal", "pln": ["(: cnet_partof_12e1b97424 (PartOf kathmandu nepal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "katmai national park is part of alaska", "pln": ["(: cnet_partof_24dc7afddd (PartOf katmai_national_park alaska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "katowice is part of poland", "pln": ["(: cnet_partof_c5dbd9602f (PartOf katowice poland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "katsina is part of nigeria", "pln": ["(: cnet_partof_0de9612868 (PartOf katsina nigeria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kattegatt is part of north sea", "pln": ["(: cnet_partof_d77925da31 (PartOf kattegatt north_sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kauai is part of hawaiian island", "pln": ["(: cnet_partof_3b02cd05d3 (PartOf kauai hawaiian_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kauna is part of lithuania", "pln": ["(: cnet_partof_d6cd659d46 (PartOf kauna lithuania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kazakhstan is part of asia", "pln": ["(: cnet_partof_b8273aa830 (PartOf kazakhstan asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kazan is part of russia", "pln": ["(: cnet_partof_4aa8719e1f (PartOf kazan russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kb is part of mb", "pln": ["(: cnet_partof_1c1e6de799 (PartOf kb mb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kedah is part of malaysia", "pln": ["(: cnet_partof_99f951cf3e (PartOf kedah malaysia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "keel is part of hull", "pln": ["(: cnet_partof_e3aa93ef6d (PartOf keel hull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "keel is part of carinate", "pln": ["(: cnet_partof_b4e914763d (PartOf keel carinate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "keelson is part of hull", "pln": ["(: cnet_partof_7e45bc527b (PartOf keelson hull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "keep is part of castle", "pln": ["(: cnet_partof_f8d69a3f72 (PartOf keep castle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kelantan is part of malaysia", "pln": ["(: cnet_partof_0dd0139931 (PartOf kelantan malaysia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kenaf is part of kenaf", "pln": ["(: cnet_partof_0ce71527dd (PartOf kenaf kenaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kenai fjord national park is part of alaska", "pln": ["(: cnet_partof_cd29208904 (PartOf kenai_fjord_national_park alaska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "kennedy is part of long island", "pln": ["(: cnet_partof_faa4c12bc1 (PartOf kennedy long_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kennesaw mountain is part of american civil war", "pln": ["(: cnet_partof_9a6d5cf040 (PartOf kennesaw_mountain american_civil_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kennewick is part of washington", "pln": ["(: cnet_partof_6c2f41f0fd (PartOf kennewick washington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kent is part of england", "pln": ["(: cnet_partof_0a7f29e8a9 (PartOf kent england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kentucky is part of united state", "pln": ["(: cnet_partof_49a92857d4 (PartOf kentucky united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "kenya is part of africa", "pln": ["(: cnet_partof_703c14870d (PartOf kenya africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kenya is part of east africa", "pln": ["(: cnet_partof_45aa7eb5e7 (PartOf kenya east_africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kerbala is part of iraq", "pln": ["(: cnet_partof_3c849f6cb3 (PartOf kerbala iraq) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kernel is part of operating system", "pln": ["(: cnet_partof_1dd4365f95 (PartOf kernel operating_system) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kernel is part of seed", "pln": ["(: cnet_partof_3568a2f0d5 (PartOf kernel seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ketembilla is part of ketembilla", "pln": ["(: cnet_partof_b323d0146d (PartOf ketembilla ketembilla) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ketoacidosis is part of type i diabete", "pln": ["(: cnet_partof_e920c38715 (PartOf ketoacidosis type_i_diabete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "key is part of action", "pln": ["(: cnet_partof_4900a767c4 (PartOf key action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "key is part of basketball court", "pln": ["(: cnet_partof_52e5f1fa88 (PartOf key basketball_court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "key is part of florida", "pln": ["(: cnet_partof_b8b000949c (PartOf key florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "key west is part of florida", "pln": ["(: cnet_partof_c494665754 (PartOf key_west florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "key word is part of index", "pln": ["(: cnet_partof_6c501ac171 (PartOf key_word index) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "keyboard is part of computer", "pln": ["(: cnet_partof_818ee91daa (PartOf keyboard computer) (STV 1.0 0.9804))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "keyboard is part of computer system", "pln": ["(: cnet_partof_7adcd55948 (PartOf keyboard computer_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "keyboard is part of piano", "pln": ["(: cnet_partof_a8def18c95 (PartOf keyboard piano) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "keyboard is part of organ", "pln": ["(: cnet_partof_3729cf6fe8 (PartOf keyboard organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "keyboard is part of terminal", "pln": ["(: cnet_partof_cfaa1b2a16 (PartOf keyboard terminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "keyboard is part of typesetting machine", "pln": ["(: cnet_partof_1200b93507 (PartOf keyboard typesetting_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "keyboard is part of typewriter", "pln": ["(: cnet_partof_94ee9a3ea4 (PartOf keyboard typewriter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "keyhole is part of lock", "pln": ["(: cnet_partof_14d7e2af1a (PartOf keyhole lock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "keynote is part of keynote speech", "pln": ["(: cnet_partof_7242b9dedf (PartOf keynote keynote_speech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "key is part of piano", "pln": ["(: cnet_partof_b738b03897 (PartOf key piano) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "keystone is part of arch", "pln": ["(: cnet_partof_6a0222d64f (PartOf keystone arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "khabarovsk is part of khabarovsk", "pln": ["(: cnet_partof_a4a88fda75 (PartOf khabarovsk khabarovsk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "khabarovsk is part of russia", "pln": ["(: cnet_partof_41581d0e04 (PartOf khabarovsk russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "khabarovsk is part of siberia", "pln": ["(: cnet_partof_876e23ff31 (PartOf khabarovsk siberia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kharkov is part of ukraine", "pln": ["(: cnet_partof_9b53f9a0fd (PartOf kharkov ukraine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "khartoum is part of sudan", "pln": ["(: cnet_partof_1acb482721 (PartOf khartoum sudan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "khoum is part of ouguiya", "pln": ["(: cnet_partof_0f62b75b65 (PartOf khoum ouguiya) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "khyber pass is part of afghanistan", "pln": ["(: cnet_partof_c101dd8683 (PartOf khyber_pass afghanistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "khyber pass is part of hindu kush", "pln": ["(: cnet_partof_4fee19b264 (PartOf khyber_pass hindu_kush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "khyber pass is part of pakistan", "pln": ["(: cnet_partof_dd1b4fdd6d (PartOf khyber_pass pakistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kibibit is part of mebibit", "pln": ["(: cnet_partof_ea12a976b0 (PartOf kibibit mebibit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kick pleat is part of skirt", "pln": ["(: cnet_partof_c387056f8b (PartOf kick_pleat skirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kick starter is part of motorcycle", "pln": ["(: cnet_partof_e451a6b0aa (PartOf kick_starter motorcycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kick up is part of handstand", "pln": ["(: cnet_partof_ad5320f11d (PartOf kick_up handstand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kickstand is part of bicycle", "pln": ["(: cnet_partof_6d714bf597 (PartOf kickstand bicycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kickstand is part of motorcycle", "pln": ["(: cnet_partof_b9e64dc3ef (PartOf kickstand motorcycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kidney is part of human body", "pln": ["(: cnet_partof_af992d054f (PartOf kidney human_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kidney is part of of human body", "pln": ["(: cnet_partof_deb055d659 (PartOf kidney of_human_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kidney is part of urinary tract", "pln": ["(: cnet_partof_dad2309ab6 (PartOf kidney urinary_tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kigali is part of rwanda", "pln": ["(: cnet_partof_fc105f511d (PartOf kigali rwanda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kilimanjaro is part of tanzania", "pln": ["(: cnet_partof_b2324c4835 (PartOf kilimanjaro tanzania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "killer is part of community", "pln": ["(: cnet_partof_19a2fb0064 (PartOf killer community) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kilobit is part of megabit", "pln": ["(: cnet_partof_141c1800fc (PartOf kilobit megabit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kilobyte is part of megabyte", "pln": ["(: cnet_partof_119840183c (PartOf kilobyte megabyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kilogram is part of myriagram", "pln": ["(: cnet_partof_0b17bc242d (PartOf kilogram myriagram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kilohertz is part of megahertz", "pln": ["(: cnet_partof_0378b51409 (PartOf kilohertz megahertz) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kiloliter is part of cubic kilometer", "pln": ["(: cnet_partof_fd97f93e44 (PartOf kiloliter cubic_kilometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kilometer is part of myriameter", "pln": ["(: cnet_partof_88d72bac81 (PartOf kilometer myriameter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kiloton is part of megaton", "pln": ["(: cnet_partof_2a0be39b55 (PartOf kiloton megaton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "kilowatt is part of megawatt", "pln": ["(: cnet_partof_2eaed7e2ea (PartOf kilowatt megawatt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kimberley is part of south africa", "pln": ["(: cnet_partof_6e2afabeb2 (PartOf kimberley south_africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kinescope is part of television receiver", "pln": ["(: cnet_partof_276a400f96 (PartOf kinescope television_receiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kingfish is part of cero", "pln": ["(: cnet_partof_68a7e273a2 (PartOf kingfish cero) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kingfish is part of kingfish", "pln": ["(: cnet_partof_3f2d33c715 (PartOf kingfish kingfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "king canyon national park is part of california", "pln": ["(: cnet_partof_fbc80af6db (PartOf king_canyon_national_park california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "kingston is part of jamaica", "pln": ["(: cnet_partof_41c24d84e1 (PartOf kingston jamaica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kingston is part of new york", "pln": ["(: cnet_partof_a0e67e1c6d (PartOf kingston new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kingston is part of ontario", "pln": ["(: cnet_partof_f937042f8b (PartOf kingston ontario) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kingstown is part of saint vincent", "pln": ["(: cnet_partof_b243a191fc (PartOf kingstown saint_vincent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kinshasa is part of congo", "pln": ["(: cnet_partof_52a3b1967a (PartOf kinshasa congo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kiribati is part of micronesia", "pln": ["(: cnet_partof_de6abbb96e (PartOf kiribati micronesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kirkuk is part of iraq", "pln": ["(: cnet_partof_6e1df13b7b (PartOf kirkuk iraq) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kishinev is part of moldova", "pln": ["(: cnet_partof_8a50cde59a (PartOf kishinev moldova) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kislev is part of jewish calendar", "pln": ["(: cnet_partof_1cacc4fcb9 (PartOf kislev jewish_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kissimmee river is part of florida", "pln": ["(: cnet_partof_b071163a9f (PartOf kissimmee_river florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kisumu is part of kenya", "pln": ["(: cnet_partof_4f494fabd7 (PartOf kisumu kenya) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "kitakyushu is part of japan", "pln": ["(: cnet_partof_a4e1cae23d (PartOf kitakyushu japan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kitakyushu is part of kyushu", "pln": ["(: cnet_partof_7d2b5cd1a7 (PartOf kitakyushu kyushu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kitchen is part of dwelling", "pln": ["(: cnet_partof_312f861862 (PartOf kitchen dwelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kitchenette is part of apartment", "pln": ["(: cnet_partof_b67dc3c18a (PartOf kitchenette apartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kite tail is part of kite", "pln": ["(: cnet_partof_4ccff3d806 (PartOf kite_tail kite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kivu is part of congo", "pln": ["(: cnet_partof_f8e86a992e (PartOf kivu congo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kivu is part of rwanda", "pln": ["(: cnet_partof_57583ee37f (PartOf kivu rwanda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kiwi is part of chinese gooseberry", "pln": ["(: cnet_partof_98c956ce44 (PartOf kiwi chinese_gooseberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kizil kum is part of uzbekistan", "pln": ["(: cnet_partof_cd3145f0ad (PartOf kizil_kum uzbekistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "klaipeda is part of lithuania", "pln": ["(: cnet_partof_75ea2f87b9 (PartOf klaipeda lithuania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "klamath is part of california", "pln": ["(: cnet_partof_ffcb278b36 (PartOf klamath california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "klamath is part of oregon", "pln": ["(: cnet_partof_849db22573 (PartOf klamath oregon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "klamath fall is part of oregon", "pln": ["(: cnet_partof_3a453a3018 (PartOf klamath_fall oregon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "klondike is part of yukon", "pln": ["(: cnet_partof_cc7b522488 (PartOf klondike yukon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "klyuchevskaya is part of kamchatka peninsula", "pln": ["(: cnet_partof_50491f4516 (PartOf klyuchevskaya kamchatka_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "knee is part of leg", "pln": ["(: cnet_partof_1434e72ad2 (PartOf knee leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "knee piece is part of body armor", "pln": ["(: cnet_partof_a7b57e1c5f (PartOf knee_piece body_armor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "knife blade is part of knife", "pln": ["(: cnet_partof_f9c43ba36d (PartOf knife_blade knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "knife edge is part of blade", "pln": ["(: cnet_partof_648e383e22 (PartOf knife_edge blade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "knife edge is part of edge tool", "pln": ["(: cnet_partof_8012807b58 (PartOf knife_edge edge_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "knob is part of hilt", "pln": ["(: cnet_partof_ca2410ea1c (PartOf knob hilt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "knock knee is part of leg", "pln": ["(: cnet_partof_3fb611cf37 (PartOf knock_knee leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "knock on is part of rugby", "pln": ["(: cnet_partof_7bc84062d1 (PartOf knock_on rugby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "knocker is part of front door", "pln": ["(: cnet_partof_83ccf4143b (PartOf knocker front_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "knot is part of board", "pln": ["(: cnet_partof_beaf27f632 (PartOf knot board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "knothole is part of board", "pln": ["(: cnet_partof_2649af09fc (PartOf knothole board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "knoxville is part of tennessee", "pln": ["(: cnet_partof_09b5f8957e (PartOf knoxville tennessee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "knuckle is part of finger", "pln": ["(: cnet_partof_c7a8401970 (PartOf knuckle finger) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kobe is part of honshu", "pln": ["(: cnet_partof_1302cae3e5 (PartOf kobe honshu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kobo is part of naira", "pln": ["(: cnet_partof_c86c56a379 (PartOf kobo naira) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kobuk valley national park is part of alaska", "pln": ["(: cnet_partof_6b89b7c90a (PartOf kobuk_valley_national_park alaska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kodiak is part of alaska", "pln": ["(: cnet_partof_79a4a10f02 (PartOf kodiak alaska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kohlrabi is part of kohlrabi", "pln": ["(: cnet_partof_2b883be9d1 (PartOf kohlrabi kohlrabi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kola nut is part of kola", "pln": ["(: cnet_partof_6788a9363d (PartOf kola_nut kola) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kola peninsula is part of russia", "pln": ["(: cnet_partof_e2904269a1 (PartOf kola_peninsula russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kolkata is part of india", "pln": ["(: cnet_partof_213d87fe52 (PartOf kolkata india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kolonia is part of micronesia", "pln": ["(: cnet_partof_d4c1f89546 (PartOf kolonia micronesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kopek is part of ruble", "pln": ["(: cnet_partof_2f50d47ab2 (PartOf kopek ruble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "kopiyka is part of hryvnia", "pln": ["(: cnet_partof_46711be998 (PartOf kopiyka hryvnia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kordofan is part of sudan", "pln": ["(: cnet_partof_585efde26d (PartOf kordofan sudan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "korea is part of asia", "pln": ["(: cnet_partof_4f5314cdb2 (PartOf korea asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "korea bay is part of yellow sea", "pln": ["(: cnet_partof_6779c64174 (PartOf korea_bay yellow_sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kosovo is part of serbia", "pln": ["(: cnet_partof_b1301f591f (PartOf kosovo serbia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "krakatau is part of indonesia", "pln": ["(: cnet_partof_c7853fa7a3 (PartOf krakatau indonesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kreb cycle is part of metabolism", "pln": ["(: cnet_partof_dc1b315f27 (PartOf kreb_cycle metabolism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kremlin is part of moscow", "pln": ["(: cnet_partof_d66eac4df3 (PartOf kremlin moscow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kuala lumpur is part of malaysia", "pln": ["(: cnet_partof_ac480f3a60 (PartOf kuala_lumpur malaysia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kuangchou is part of china", "pln": ["(: cnet_partof_9ac346018b (PartOf kuangchou china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kumasi is part of ghana", "pln": ["(: cnet_partof_add89278c6 (PartOf kumasi ghana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kumquat is part of kumquat", "pln": ["(: cnet_partof_953f9307da (PartOf kumquat kumquat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kunlun is part of china", "pln": ["(: cnet_partof_a5b270195b (PartOf kunlun china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kupffer s cell is part of liver", "pln": ["(: cnet_partof_c2881cdc6c (PartOf kupffer_s_cell liver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kura is part of asia", "pln": ["(: cnet_partof_6223c1303d (PartOf kura asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kurd is part of kurdistan", "pln": ["(: cnet_partof_5680a32abf (PartOf kurd kurdistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kurdistan is part of iran", "pln": ["(: cnet_partof_54db0bc9d7 (PartOf kurdistan iran) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kurdistan is part of iraq", "pln": ["(: cnet_partof_7519dfc66d (PartOf kurdistan iraq) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kurdistan is part of syria", "pln": ["(: cnet_partof_edff9dcf77 (PartOf kurdistan syria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kurdistan is part of turkey", "pln": ["(: cnet_partof_d8b5a017ab (PartOf kurdistan turkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kursk is part of russia", "pln": ["(: cnet_partof_e32ed72492 (PartOf kursk russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kuru is part of lira", "pln": ["(: cnet_partof_b1061e34c6 (PartOf kuru lira) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kuwait is part of asia", "pln": ["(: cnet_partof_7ad49dadd2 (PartOf kuwait asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kuwait is part of gulf state", "pln": ["(: cnet_partof_8861bf1f2e (PartOf kuwait gulf_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kuwait is part of kuwait", "pln": ["(: cnet_partof_c2e23ae23d (PartOf kuwait kuwait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kuwait is part of middle east", "pln": ["(: cnet_partof_077626dc09 (PartOf kuwait middle_east) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kuwaiti dirham is part of kuwaiti dinar", "pln": ["(: cnet_partof_2909c11438 (PartOf kuwaiti_dirham kuwaiti_dinar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kwajalein is part of world war ii", "pln": ["(: cnet_partof_8d48cefe38 (PartOf kwajalein world_war_ii) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kwajalein is part of marshall island", "pln": ["(: cnet_partof_637e85d3cb (PartOf kwajalein marshall_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kwangju is part of south korea", "pln": ["(: cnet_partof_e23c0af51a (PartOf kwangju south_korea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kyoto is part of honshu", "pln": ["(: cnet_partof_1e038bc7ad (PartOf kyoto honshu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kyoto is part of japan", "pln": ["(: cnet_partof_4acea335d5 (PartOf kyoto japan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kyrgyzstan is part of asia", "pln": ["(: cnet_partof_3a93b6a834 (PartOf kyrgyzstan asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kyushu is part of japan", "pln": ["(: cnet_partof_6dfbe936b2 (PartOf kyushu japan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "kyyiv is part of ukraine", "pln": ["(: cnet_partof_6de81b0b97 (PartOf kyyiv ukraine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "la crosse is part of wisconsin", "pln": ["(: cnet_partof_eafc63df30 (PartOf la_crosse wisconsin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "la paz is part of bolivia", "pln": ["(: cnet_partof_8149886a71 (PartOf la_paz bolivia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "la spezia is part of liguria", "pln": ["(: cnet_partof_5a377150da (PartOf la_spezia liguria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lab bench is part of lab", "pln": ["(: cnet_partof_9f1ac4884a (PartOf lab_bench lab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "labia majora is part of vulva", "pln": ["(: cnet_partof_2fb6a7ae61 (PartOf labia_majora vulva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "labia minora is part of vulva", "pln": ["(: cnet_partof_6cf908e856 (PartOf labia_minora vulva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "labial artery is part of lip", "pln": ["(: cnet_partof_5e16e2c2ae (PartOf labial_artery lip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "labial vein is part of lip", "pln": ["(: cnet_partof_decc3542b6 (PartOf labial_vein lip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "labial vein is part of vulva", "pln": ["(: cnet_partof_b99c0d50dc (PartOf labial_vein vulva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "labium is part of vulva", "pln": ["(: cnet_partof_0447712f04 (PartOf labium vulva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "labor day is part of september", "pln": ["(: cnet_partof_b079c2a482 (PartOf labor_day september) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "labrador is part of labrador ungava peninsula", "pln": ["(: cnet_partof_53f4344d6f (PartOf labrador labrador_ungava_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "labrador is part of newfoundland and labrador", "pln": ["(: cnet_partof_41e19dfe78 (PartOf labrador newfoundland_and_labrador) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "labrador sea is part of atlantic", "pln": ["(: cnet_partof_d57504e0bb (PartOf labrador_sea atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "labrador ungava peninsula is part of canada", "pln": ["(: cnet_partof_e0093d95a7 (PartOf labrador_ungava_peninsula canada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "labyrinth of mino is part of crete", "pln": ["(: cnet_partof_fb719bac99 (PartOf labyrinth_of_mino crete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "labyrinthine artery is part of inner ear", "pln": ["(: cnet_partof_f48b11672f (PartOf labyrinthine_artery inner_ear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "labyrinthine vein is part of inner ear", "pln": ["(: cnet_partof_95ecd9f0f3 (PartOf labyrinthine_vein inner_ear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lace is part of shoe", "pln": ["(: cnet_partof_26bc82e32d (PartOf lace shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "laconia is part of greece", "pln": ["(: cnet_partof_09522f447a (PartOf laconia greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "lacrimal apparatus is part of eye", "pln": ["(: cnet_partof_406fb6dca7 (PartOf lacrimal_apparatus eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lacrimal artery is part of eye", "pln": ["(: cnet_partof_50a5b48d9c (PartOf lacrimal_artery eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lacrimal bone is part of eye socket", "pln": ["(: cnet_partof_633e4b65c7 (PartOf lacrimal_bone eye_socket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lacrimal duct is part of lacrimal apparatus", "pln": ["(: cnet_partof_cd3f5fb818 (PartOf lacrimal_duct lacrimal_apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lacrimal gland is part of lacrimal apparatus", "pln": ["(: cnet_partof_f84c5edf39 (PartOf lacrimal_gland lacrimal_apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lacrimal sac is part of lacrimal apparatus", "pln": ["(: cnet_partof_fcad93ec36 (PartOf lacrimal_sac lacrimal_apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lacrimal vein is part of eye", "pln": ["(: cnet_partof_f20f9a0130 (PartOf lacrimal_vein eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lactiferous duct is part of breast", "pln": ["(: cnet_partof_0e9d7ef608 (PartOf lactiferous_duct breast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ladder back is part of ladder back", "pln": ["(: cnet_partof_0d613c88a3 (PartOf ladder_back ladder_back) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lady chapel is part of church", "pln": ["(: cnet_partof_5015a6bf89 (PartOf lady_chapel church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "lafayette is part of indiana", "pln": ["(: cnet_partof_7ed09fd2a8 (PartOf lafayette indiana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lafayette is part of louisiana", "pln": ["(: cnet_partof_9841af4f78 (PartOf lafayette louisiana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lag b omer is part of iyar", "pln": ["(: cnet_partof_2b10fc6c73 (PartOf lag_b_omer iyar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lago is part of nigeria", "pln": ["(: cnet_partof_5b616a6fad (PartOf lago nigeria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lahore is part of pakistan", "pln": ["(: cnet_partof_da1296b10d (PartOf lahore pakistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake baikal is part of siberia", "pln": ["(: cnet_partof_cf4bff196a (PartOf lake_baikal siberia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake chad is part of africa", "pln": ["(: cnet_partof_f5a2221dfa (PartOf lake_chad africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "lake champlain is part of new york", "pln": ["(: cnet_partof_838e032863 (PartOf lake_champlain new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake champlain is part of quebec", "pln": ["(: cnet_partof_8cf409e0e1 (PartOf lake_champlain quebec) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake champlain is part of vermont", "pln": ["(: cnet_partof_d2ce2829fd (PartOf lake_champlain vermont) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake chelan is part of washington", "pln": ["(: cnet_partof_7d76c6d2a2 (PartOf lake_chelan washington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake clark national park is part of alaska", "pln": ["(: cnet_partof_7fb3442fbb (PartOf lake_clark_national_park alaska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake constance is part of germany", "pln": ["(: cnet_partof_a44dd7f65a (PartOf lake_constance germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake district is part of cumbria", "pln": ["(: cnet_partof_c5d862a31e (PartOf lake_district cumbria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake district is part of england", "pln": ["(: cnet_partof_65a72d6ace (PartOf lake_district england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake edward is part of congo", "pln": ["(: cnet_partof_d2e42efa55 (PartOf lake_edward congo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake edward is part of uganda", "pln": ["(: cnet_partof_bf686477cc (PartOf lake_edward uganda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake erie is part of great lake", "pln": ["(: cnet_partof_a26e0a2742 (PartOf lake_erie great_lake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake geneva is part of france", "pln": ["(: cnet_partof_5382486263 (PartOf lake_geneva france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake geneva is part of switzerland", "pln": ["(: cnet_partof_c763bccdef (PartOf lake_geneva switzerland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake herring is part of cisco", "pln": ["(: cnet_partof_cd1f83e521 (PartOf lake_herring cisco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake huron is part of great lake", "pln": ["(: cnet_partof_b975d5a94b (PartOf lake_huron great_lake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "lake ilmen is part of russia", "pln": ["(: cnet_partof_8928ed8d44 (PartOf lake_ilmen russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "lake ladoga is part of russia", "pln": ["(: cnet_partof_89ebe39641 (PartOf lake_ladoga russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake malawi is part of malawi", "pln": ["(: cnet_partof_5dc9001467 (PartOf lake_malawi malawi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake malawi is part of mozambique", "pln": ["(: cnet_partof_5dfcec67c0 (PartOf lake_malawi mozambique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake malawi is part of tanzania", "pln": ["(: cnet_partof_c6bd2cfb20 (PartOf lake_malawi tanzania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake mead is part of arizona", "pln": ["(: cnet_partof_ff616a82af (PartOf lake_mead arizona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake mead is part of nevada", "pln": ["(: cnet_partof_c67aaa014e (PartOf lake_mead nevada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake michigan is part of great lake", "pln": ["(: cnet_partof_ca7ed0a6f8 (PartOf lake_michigan great_lake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake nasser is part of egypt", "pln": ["(: cnet_partof_eee20e891d (PartOf lake_nasser egypt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "lake onega is part of russia", "pln": ["(: cnet_partof_e3cd27fd1d (PartOf lake_onega russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake ontario is part of great lake", "pln": ["(: cnet_partof_010eb5e441 (PartOf lake_ontario great_lake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake powell is part of arizona", "pln": ["(: cnet_partof_6f0a71bad8 (PartOf lake_powell arizona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake powell is part of utah", "pln": ["(: cnet_partof_6c369b93e7 (PartOf lake_powell utah) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake st clair is part of michigan", "pln": ["(: cnet_partof_4a84172191 (PartOf lake_st_clair michigan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake st clair is part of ontario", "pln": ["(: cnet_partof_455c7869df (PartOf lake_st_clair ontario) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake superior is part of great lake", "pln": ["(: cnet_partof_51118b1bf2 (PartOf lake_superior great_lake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake tahoe is part of california", "pln": ["(: cnet_partof_3d0e231173 (PartOf lake_tahoe california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake tahoe is part of nevada", "pln": ["(: cnet_partof_46cead534f (PartOf lake_tahoe nevada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake tana is part of ethiopia", "pln": ["(: cnet_partof_f442360eff (PartOf lake_tana ethiopia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake tanganyika is part of africa", "pln": ["(: cnet_partof_6a3f4da1df (PartOf lake_tanganyika africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake trasimenus is part of punic war", "pln": ["(: cnet_partof_50e7a46c47 (PartOf lake_trasimenus punic_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "lake trout is part of lake trout", "pln": ["(: cnet_partof_123676b806 (PartOf lake_trout lake_trout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake vanern is part of sweden", "pln": ["(: cnet_partof_470cf3f9ca (PartOf lake_vanern sweden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake victoria is part of africa", "pln": ["(: cnet_partof_d425430348 (PartOf lake_victoria africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lake volta is part of ghana", "pln": ["(: cnet_partof_2a515d1946 (PartOf lake_volta ghana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lamb s quarter is part of lamb s quarter", "pln": ["(: cnet_partof_6e80e5659b (PartOf lamb_s_quarter lamb_s_quarter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "lamb is part of domestic sheep", "pln": ["(: cnet_partof_0598e0ec99 (PartOf lamb domestic_sheep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lamboid suture is part of cranium", "pln": ["(: cnet_partof_928b994d8c (PartOf lamboid_suture cranium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lamella is part of bone", "pln": ["(: cnet_partof_6d25dd93ce (PartOf lamella bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lamentation is part of hagiographa", "pln": ["(: cnet_partof_1649a13961 (PartOf lamentation hagiographa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lamentation is part of old testament", "pln": ["(: cnet_partof_b9f2e1a974 (PartOf lamentation old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lamp chimney is part of oil lamp", "pln": ["(: cnet_partof_0046fb0b10 (PartOf lamp_chimney oil_lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "lamp house is part of movie projector", "pln": ["(: cnet_partof_f83b01cf2f (PartOf lamp_house movie_projector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "lamppost is part of streetlight", "pln": ["(: cnet_partof_f63a25dfbd (PartOf lamppost streetlight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lampshade is part of lamp", "pln": ["(: cnet_partof_e6f4eec8f7 (PartOf lampshade lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lanai is part of hawaiian island", "pln": ["(: cnet_partof_4300227101 (PartOf lanai hawaiian_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lancashire is part of england", "pln": ["(: cnet_partof_b29f9b2203 (PartOf lancashire england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "lancaster is part of england", "pln": ["(: cnet_partof_75681b478b (PartOf lancaster england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "land is part of earth", "pln": ["(: cnet_partof_40605ded62 (PartOf land earth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lander is part of wyoming", "pln": ["(: cnet_partof_2446c0fd71 (PartOf lander wyoming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "landing is part of seaport", "pln": ["(: cnet_partof_7581a9a199 (PartOf landing seaport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "landing is part of stairway", "pln": ["(: cnet_partof_3ac0c24f9f (PartOf landing stairway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "landing approach is part of landing", "pln": ["(: cnet_partof_d8c604d26d (PartOf landing_approach landing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "landing gear is part of airplane", "pln": ["(: cnet_partof_6eb7eef465 (PartOf landing_gear airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "landing skid is part of helicopter", "pln": ["(: cnet_partof_5e64e18662 (PartOf landing_skid helicopter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "landing stage is part of landing", "pln": ["(: cnet_partof_cdeb642367 (PartOf landing_stage landing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "landside is part of moldboard plow", "pln": ["(: cnet_partof_fc16943f3b (PartOf landside moldboard_plow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "language area is part of left hemisphere", "pln": ["(: cnet_partof_50a86bddb7 (PartOf language_area left_hemisphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "language unit is part of string", "pln": ["(: cnet_partof_346e52e59a (PartOf language_unit string) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "languedoc roussillon is part of france", "pln": ["(: cnet_partof_9b598d4290 (PartOf languedoc_roussillon france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lanseh is part of lanseh tree", "pln": ["(: cnet_partof_c4f58cc211 (PartOf lanseh lanseh_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lansing is part of michigan", "pln": ["(: cnet_partof_02562f96b6 (PartOf lansing michigan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lanzhou is part of gansu", "pln": ["(: cnet_partof_9dd9c03233 (PartOf lanzhou gansu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lao is part of indochina", "pln": ["(: cnet_partof_fc08c02818 (PartOf lao indochina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lap is part of pair of trouser", "pln": ["(: cnet_partof_ace3ca8007 (PartOf lap pair_of_trouser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lap is part of skirt", "pln": ["(: cnet_partof_2206aa94ed (PartOf lap skirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lappland is part of europe", "pln": ["(: cnet_partof_ae31d3a6f9 (PartOf lappland europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "laptev sea is part of arctic ocean", "pln": ["(: cnet_partof_bd7eefbf21 (PartOf laptev_sea arctic_ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "laramie is part of wyoming", "pln": ["(: cnet_partof_95291e6f92 (PartOf laramie wyoming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "laredo is part of texa", "pln": ["(: cnet_partof_4cdf06f2ca (PartOf laredo texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "large intestine is part of alimentary canal", "pln": ["(: cnet_partof_397dc37efc (PartOf large_intestine alimentary_canal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "largemouth bass is part of largemouth", "pln": ["(: cnet_partof_5b54690cad (PartOf largemouth_bass largemouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "laryngeal artery is part of larynx", "pln": ["(: cnet_partof_955b866c26 (PartOf laryngeal_artery larynx) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "laryngeal vein is part of larynx", "pln": ["(: cnet_partof_443ca9bffc (PartOf laryngeal_vein larynx) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "laryngopharynx is part of throat", "pln": ["(: cnet_partof_a74e2e8e86 (PartOf laryngopharynx throat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "larynx is part of human body", "pln": ["(: cnet_partof_f2330a47e1 (PartOf larynx human_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "larynx is part of upper respiratory tract", "pln": ["(: cnet_partof_a1269709bf (PartOf larynx upper_respiratory_tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "las cruce is part of new mexico", "pln": ["(: cnet_partof_7879cfb3a9 (PartOf las_cruce new_mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "las vega is part of nevada", "pln": ["(: cnet_partof_739383b1b5 (PartOf las_vega nevada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lascar is part of chile", "pln": ["(: cnet_partof_e784e3ed38 (PartOf lascar chile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lascaux is part of france", "pln": ["(: cnet_partof_99082e1847 (PartOf lascaux france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "laser is part of photocoagulator", "pln": ["(: cnet_partof_c66416d4f5 (PartOf laser photocoagulator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lash is part of whip", "pln": ["(: cnet_partof_51c718fc97 (PartOf lash whip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lashkar e jhangvi is part of sipah e sahaba", "pln": ["(: cnet_partof_a7f1330446 (PartOf lashkar_e_jhangvi sipah_e_sahaba) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lassen volcanic national park is part of california", "pln": ["(: cnet_partof_0b8cc2a393 (PartOf lassen_volcanic_national_park california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "late night hour is part of night", "pln": ["(: cnet_partof_b1e1eca843 (PartOf late_night_hour night) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lateen is part of lateen rig", "pln": ["(: cnet_partof_364f7b80f5 (PartOf lateen lateen_rig) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lateen rig is part of dhow", "pln": ["(: cnet_partof_be85a9b73c (PartOf lateen_rig dhow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "latency stage is part of childhood", "pln": ["(: cnet_partof_ec79a2660d (PartOf latency_stage childhood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lateral condyle is part of femur", "pln": ["(: cnet_partof_198f4f2aa5 (PartOf lateral_condyle femur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lateral line is part of amphibian", "pln": ["(: cnet_partof_63ea5d34e2 (PartOf lateral_line amphibian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "lateral line is part of fish", "pln": ["(: cnet_partof_a972393039 (PartOf lateral_line fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lateran is part of rome", "pln": ["(: cnet_partof_1e0b92f307 (PartOf lateran rome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lateran palace is part of lateran", "pln": ["(: cnet_partof_a6613d857b (PartOf lateran_palace lateran) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lath is part of lattice", "pln": ["(: cnet_partof_79339f9ad3 (PartOf lath lattice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "latisimus dorsi is part of back", "pln": ["(: cnet_partof_28d2b8009b (PartOf latisimus_dorsi back) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "latium is part of italy", "pln": ["(: cnet_partof_93f83af4b6 (PartOf latium italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "latvia is part of europe", "pln": ["(: cnet_partof_40e0c3b778 (PartOf latvia europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "laudo is part of ande", "pln": ["(: cnet_partof_9a744abd9d (PartOf laudo ande) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "laudo is part of argentina", "pln": ["(: cnet_partof_8a3400328d (PartOf laudo argentina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "launching pad is part of launching site", "pln": ["(: cnet_partof_7f99e89f3b (PartOf launching_pad launching_site) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "laurasia is part of northern hemisphere", "pln": ["(: cnet_partof_3e7b97cacb (PartOf laurasia northern_hemisphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "laurentian highland is part of canada", "pln": ["(: cnet_partof_52ac402b91 (PartOf laurentian_highland canada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lausanne is part of switzerland", "pln": ["(: cnet_partof_b72c96626c (PartOf lausanne switzerland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "law is part of theory", "pln": ["(: cnet_partof_ff7f06be01 (PartOf law theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "law is part of law", "pln": ["(: cnet_partof_0df0989b81 (PartOf law law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "law of gravitation is part of theory of gravitation", "pln": ["(: cnet_partof_e49dd91336 (PartOf law_of_gravitation theory_of_gravitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lawrence is part of kansa", "pln": ["(: cnet_partof_965113b68f (PartOf lawrence kansa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lawton is part of oklahoma", "pln": ["(: cnet_partof_96f90fb9b6 (PartOf lawton oklahoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "layer is part of laminate", "pln": ["(: cnet_partof_7ab56888fb (PartOf layer laminate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "le havre is part of france", "pln": ["(: cnet_partof_094f66e3e1 (PartOf le_havre france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "lead is part of card game", "pln": ["(: cnet_partof_c931329bc1 (PartOf lead card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "lead is part of lead pencil", "pln": ["(: cnet_partof_94d60e0313 (PartOf lead lead_pencil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lead is part of new article", "pln": ["(: cnet_partof_9da3806e2c (PartOf lead new_article) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leading edge is part of airfoil", "pln": ["(: cnet_partof_240944583f (PartOf leading_edge airfoil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leading question is part of cross examination", "pln": ["(: cnet_partof_e82c24162b (PartOf leading_question cross_examination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leaf is part of tree", "pln": ["(: cnet_partof_691be51c04 (PartOf leaf tree) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leaf is part of dinner table", "pln": ["(: cnet_partof_4310e2e452 (PartOf leaf dinner_table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leaf is part of written communication", "pln": ["(: cnet_partof_85338ad00e (PartOf leaf written_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leaf lettuce is part of leaf lettuce", "pln": ["(: cnet_partof_20f84d6f33 (PartOf leaf_lettuce leaf_lettuce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leaf node is part of stalk", "pln": ["(: cnet_partof_b9965ca52f (PartOf leaf_node stalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leaf shape is part of leaf", "pln": ["(: cnet_partof_4a7936d4bf (PartOf leaf_shape leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leaning tower is part of pisa", "pln": ["(: cnet_partof_f603931f1d (PartOf leaning_tower pisa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leap day is part of february", "pln": ["(: cnet_partof_530e2df61e (PartOf leap_day february) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lebanon is part of asia", "pln": ["(: cnet_partof_c408a68764 (PartOf lebanon asia) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lebanon is part of middle east", "pln": ["(: cnet_partof_f100d7436a (PartOf lebanon middle_east) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "lecture is part of course", "pln": ["(: cnet_partof_152ebc416c (PartOf lecture course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lecture demonstration is part of lecture", "pln": ["(: cnet_partof_e7dace8935 (PartOf lecture_demonstration lecture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ledger board is part of railing", "pln": ["(: cnet_partof_47d8f72995 (PartOf ledger_board railing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ledger line is part of musical notation", "pln": ["(: cnet_partof_5b3f689809 (PartOf ledger_line musical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leed is part of west yorkshire", "pln": ["(: cnet_partof_92882083b2 (PartOf leed west_yorkshire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leek is part of leek", "pln": ["(: cnet_partof_1963fcdfa1 (PartOf leek leek) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leeward island is part of lesser antille", "pln": ["(: cnet_partof_0e7aaf0372 (PartOf leeward_island lesser_antille) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "left bank is part of paris", "pln": ["(: cnet_partof_4f49a131d8 (PartOf left_bank paris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "left ear is part of person", "pln": ["(: cnet_partof_42f0062a4e (PartOf left_ear person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "left field is part of outfield", "pln": ["(: cnet_partof_c27ee3c5dc (PartOf left_field outfield) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "left hand is part of person", "pln": ["(: cnet_partof_3700e6794d (PartOf left_hand person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "left leg is part of person", "pln": ["(: cnet_partof_cddb709f25 (PartOf left_leg person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leg is part of chair", "pln": ["(: cnet_partof_751fa0d037 (PartOf leg chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leg is part of table", "pln": ["(: cnet_partof_0e6a488261 (PartOf leg table) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leg is part of cot", "pln": ["(: cnet_partof_4d40b78f0d (PartOf leg cot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leg is part of four poster", "pln": ["(: cnet_partof_a11eeef451 (PartOf leg four_poster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "leg is part of grand piano", "pln": ["(: cnet_partof_c786a91c44 (PartOf leg grand_piano) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leg is part of hospital bed", "pln": ["(: cnet_partof_03916e1ce6 (PartOf leg hospital_bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leg is part of pair of trouser", "pln": ["(: cnet_partof_522e7842fa (PartOf leg pair_of_trouser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "leg is part of spinning wheel", "pln": ["(: cnet_partof_02d703c1cc (PartOf leg spinning_wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leg is part of tripod", "pln": ["(: cnet_partof_8f6a9175ce (PartOf leg tripod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leg is part of body", "pln": ["(: cnet_partof_d4ca560388 (PartOf leg body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leg bone is part of endoskeleton", "pln": ["(: cnet_partof_804dc1f10f (PartOf leg_bone endoskeleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "leg bone is part of leg", "pln": ["(: cnet_partof_d785750d9e (PartOf leg_bone leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "legislation is part of statute book", "pln": ["(: cnet_partof_a10321135d (PartOf legislation statute_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "legume is part of legume", "pln": ["(: cnet_partof_0e893cf79c (PartOf legume legume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lehigh river is part of pennsylvania", "pln": ["(: cnet_partof_896a1309cd (PartOf lehigh_river pennsylvania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leicester is part of england", "pln": ["(: cnet_partof_890425cf45 (PartOf leicester england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leicester is part of leicestershire", "pln": ["(: cnet_partof_14aa6a3543 (PartOf leicester leicestershire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leicestershire is part of england", "pln": ["(: cnet_partof_159325eaea (PartOf leicestershire england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leiden is part of netherland", "pln": ["(: cnet_partof_eb90a6e9f5 (PartOf leiden netherland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leipzig is part of germany", "pln": ["(: cnet_partof_737a67ad3d (PartOf leipzig germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lemno is part of aegean", "pln": ["(: cnet_partof_8d9637bd69 (PartOf lemno aegean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lemno is part of greece", "pln": ["(: cnet_partof_bc68232b95 (PartOf lemno greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lemon is part of lemon", "pln": ["(: cnet_partof_47afef4bbb (PartOf lemon lemon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lemon balm is part of lemon balm", "pln": ["(: cnet_partof_c5d5f5d680 (PartOf lemon_balm lemon_balm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lemon peel is part of lemon", "pln": ["(: cnet_partof_67b3018a8a (PartOf lemon_peel lemon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lemon sole is part of lemon sole", "pln": ["(: cnet_partof_56b5fa35d1 (PartOf lemon_sole lemon_sole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lemon sole is part of winter flounder", "pln": ["(: cnet_partof_eb09b10f52 (PartOf lemon_sole winter_flounder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lemonwood is part of lemonwood", "pln": ["(: cnet_partof_b400871cfc (PartOf lemonwood lemonwood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lena is part of siberia", "pln": ["(: cnet_partof_ec31b10da7 (PartOf lena siberia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "len is part of camera", "pln": ["(: cnet_partof_d01a511be8 (PartOf len camera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "len is part of eye", "pln": ["(: cnet_partof_f2c25f1cfd (PartOf len eye) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "len is part of eyeglass", "pln": ["(: cnet_partof_8ef7ad61f5 (PartOf len eyeglass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "len is part of optical instrument", "pln": ["(: cnet_partof_0953fc2501 (PartOf len optical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "len capsule is part of len", "pln": ["(: cnet_partof_c2eabe4f41 (PartOf len_capsule len) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "len cortex is part of len", "pln": ["(: cnet_partof_db03da97e2 (PartOf len_cortex len) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "len hood is part of camera", "pln": ["(: cnet_partof_c3ea7cae03 (PartOf len_hood camera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "len hood is part of television camera", "pln": ["(: cnet_partof_251c8a73a8 (PartOf len_hood television_camera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lent is part of church calendar", "pln": ["(: cnet_partof_576a473e6a (PartOf lent church_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lenticular nucleus is part of corpus striatum", "pln": ["(: cnet_partof_90d00e9bbb (PartOf lenticular_nucleus corpus_striatum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lentil is part of lentil", "pln": ["(: cnet_partof_b48910e703 (PartOf lentil lentil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leo is part of zodiac", "pln": ["(: cnet_partof_b913041b52 (PartOf leo zodiac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leon is part of mexico", "pln": ["(: cnet_partof_70d5098073 (PartOf leon mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "leon is part of spain", "pln": ["(: cnet_partof_d220896b4a (PartOf leon spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lepton is part of drachma", "pln": ["(: cnet_partof_0503d0cf0d (PartOf lepton drachma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leptotene is part of prophase", "pln": ["(: cnet_partof_d98cab16a6 (PartOf leptotene prophase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lesbo is part of aeolis", "pln": ["(: cnet_partof_acc858d2f2 (PartOf lesbo aeolis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lesbo is part of greece", "pln": ["(: cnet_partof_45768c88fb (PartOf lesbo greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lesotho is part of africa", "pln": ["(: cnet_partof_263677e4e4 (PartOf lesotho africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lesser antille is part of antille", "pln": ["(: cnet_partof_832cf9e1fa (PartOf lesser_antille antille) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lesser sunda island is part of sunda island", "pln": ["(: cnet_partof_1acc1b7410 (PartOf lesser_sunda_island sunda_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lesson is part of course", "pln": ["(: cnet_partof_69124744f1 (PartOf lesson course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lesson is part of education", "pln": ["(: cnet_partof_848e7e5917 (PartOf lesson education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lethe is part of hel", "pln": ["(: cnet_partof_cf85ce1f9e (PartOf lethe hel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "letter is part of alphabet", "pln": ["(: cnet_partof_52a5ee0dc9 (PartOf letter alphabet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "letter is part of word", "pln": ["(: cnet_partof_2f3d5803e3 (PartOf letter word) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "letter is part of correspondence", "pln": ["(: cnet_partof_3a751ead7c (PartOf letter correspondence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "letter is part of mail", "pln": ["(: cnet_partof_ee9118ad98 (PartOf letter mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "letter is part of spelling", "pln": ["(: cnet_partof_20646aaa3e (PartOf letter spelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "letter of jeremiah is part of apocrypha", "pln": ["(: cnet_partof_0dd4573f29 (PartOf letter_of_jeremiah apocrypha) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lettuce is part of salad", "pln": ["(: cnet_partof_d67fce7d99 (PartOf lettuce salad) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lettuce is part of garden lettuce", "pln": ["(: cnet_partof_c9b603917c (PartOf lettuce garden_lettuce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "levant is part of middle east", "pln": ["(: cnet_partof_9e21a3dc3a (PartOf levant middle_east) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "level is part of carpenter s level", "pln": ["(: cnet_partof_f1aab29b81 (PartOf level carpenter_s_level) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "level is part of surveyor s level", "pln": ["(: cnet_partof_3794218285 (PartOf level surveyor_s_level) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lever is part of lever lock", "pln": ["(: cnet_partof_25124ccef8 (PartOf lever lever_lock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "leviticus is part of old testament", "pln": ["(: cnet_partof_3b161e0257 (PartOf leviticus old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leviticus is part of torah", "pln": ["(: cnet_partof_e1708e5657 (PartOf leviticus torah) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lewiston is part of idaho", "pln": ["(: cnet_partof_c94ae5b9f1 (PartOf lewiston idaho) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lewiston is part of maine", "pln": ["(: cnet_partof_8318f4450f (PartOf lewiston maine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lexical entry is part of dictionary", "pln": ["(: cnet_partof_bd9ee41bc9 (PartOf lexical_entry dictionary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lexical meaning is part of content word", "pln": ["(: cnet_partof_2c28532b6c (PartOf lexical_meaning content_word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "lexington is part of american revolution", "pln": ["(: cnet_partof_294749dd56 (PartOf lexington american_revolution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lexington is part of kentucky", "pln": ["(: cnet_partof_15270885be (PartOf lexington kentucky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lexington is part of massachusett", "pln": ["(: cnet_partof_a0eb750b68 (PartOf lexington massachusett) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lexis is part of language", "pln": ["(: cnet_partof_90d001935f (PartOf lexis language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "leyte is part of world war ii", "pln": ["(: cnet_partof_763b423b0c (PartOf leyte world_war_ii) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lhasa is part of tibet", "pln": ["(: cnet_partof_aecb052343 (PartOf lhasa tibet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lhotse is part of himalaya", "pln": ["(: cnet_partof_879ed2e3e0 (PartOf lhotse himalaya) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lhotse is part of nepal", "pln": ["(: cnet_partof_dcae35c8e8 (PartOf lhotse nepal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lhotse is part of tibet", "pln": ["(: cnet_partof_756eb78f6f (PartOf lhotse tibet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "liaodong peninsula is part of china", "pln": ["(: cnet_partof_f7c5a77ec3 (PartOf liaodong_peninsula china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "liberia is part of africa", "pln": ["(: cnet_partof_5dfda4a366 (PartOf liberia africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "liberty island is part of new york", "pln": ["(: cnet_partof_4542867e7f (PartOf liberty_island new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "liberty island is part of new york bay", "pln": ["(: cnet_partof_a2f545a105 (PartOf liberty_island new_york_bay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "libra is part of zodiac", "pln": ["(: cnet_partof_6532f04617 (PartOf libra zodiac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "library is part of house", "pln": ["(: cnet_partof_904f1a3ad8 (PartOf library house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "library program is part of library", "pln": ["(: cnet_partof_587c73cb86 (PartOf library_program library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "library routine is part of library", "pln": ["(: cnet_partof_f14fb78d44 (PartOf library_routine library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "libreville is part of gabon", "pln": ["(: cnet_partof_9be8e3cc42 (PartOf libreville gabon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "libya is part of africa", "pln": ["(: cnet_partof_fdeab2b610 (PartOf libya africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "libyan desert is part of egypt", "pln": ["(: cnet_partof_019c50de3a (PartOf libyan_desert egypt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "libyan desert is part of libya", "pln": ["(: cnet_partof_c5d1155001 (PartOf libyan_desert libya) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "libyan desert is part of sahara", "pln": ["(: cnet_partof_9ad51a7337 (PartOf libyan_desert sahara) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "libyan desert is part of sudan", "pln": ["(: cnet_partof_b3f3fef515 (PartOf libyan_desert sudan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "libyan dirham is part of libyan dinar", "pln": ["(: cnet_partof_98429d623d (PartOf libyan_dirham libyan_dinar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "licorice root is part of licorice", "pln": ["(: cnet_partof_05cfd7cd37 (PartOf licorice_root licorice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lid is part of jar", "pln": ["(: cnet_partof_722c96927a (PartOf lid jar) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "lid is part of box", "pln": ["(: cnet_partof_df7ca58b11 (PartOf lid box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lid is part of chest", "pln": ["(: cnet_partof_047f0fcfb5 (PartOf lid chest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "liechtenstein is part of europe", "pln": ["(: cnet_partof_52148369e2 (PartOf liechtenstein europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "liege is part of belgium", "pln": ["(: cnet_partof_0410c24b61 (PartOf liege belgium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lienal artery is part of spleen", "pln": ["(: cnet_partof_a74096575b (PartOf lienal_artery spleen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "liepaja is part of latvia", "pln": ["(: cnet_partof_e498a37c25 (PartOf liepaja latvia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lift is part of heel", "pln": ["(: cnet_partof_3c9bebc276 (PartOf lift heel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ligament is part of muscular structure", "pln": ["(: cnet_partof_154648b270 (PartOf ligament muscular_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "light is part of electromagnetic spectrum", "pln": ["(: cnet_partof_66b3d919b3 (PartOf light electromagnetic_spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "light air is part of beaufort scale", "pln": ["(: cnet_partof_cc46c2cece (PartOf light_air beaufort_scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "light breeze is part of beaufort scale", "pln": ["(: cnet_partof_f12e49ce9b (PartOf light_breeze beaufort_scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "light emitting diode is part of digital display", "pln": ["(: cnet_partof_b0052fc52e (PartOf light_emitting_diode digital_display) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "light hour is part of light year", "pln": ["(: cnet_partof_382ef15c9f (PartOf light_hour light_year) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "light minute is part of light year", "pln": ["(: cnet_partof_2c213f8622 (PartOf light_minute light_year) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "light reaction is part of photosynthesis", "pln": ["(: cnet_partof_7c65f04dab (PartOf light_reaction photosynthesis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "light second is part of light year", "pln": ["(: cnet_partof_7e7dbea8f7 (PartOf light_second light_year) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "light out is part of night", "pln": ["(: cnet_partof_30e9d8f2a0 (PartOf light_out night) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ligne is part of inch", "pln": ["(: cnet_partof_9bdbb3ed10 (PartOf ligne inch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "liguria is part of italy", "pln": ["(: cnet_partof_ae7a1873a5 (PartOf liguria italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ligurian sea is part of mediterranean", "pln": ["(: cnet_partof_e3999926ac (PartOf ligurian_sea mediterranean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "likuta is part of zaire", "pln": ["(: cnet_partof_a8bb3aa030 (PartOf likuta zaire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "lille is part of france", "pln": ["(: cnet_partof_9a93aef936 (PartOf lille france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lilongwe is part of malawi", "pln": ["(: cnet_partof_03e9fe7efa (PartOf lilongwe malawi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lily pad is part of water lily", "pln": ["(: cnet_partof_291046f03e (PartOf lily_pad water_lily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lima is part of peru", "pln": ["(: cnet_partof_5b5ba84ec1 (PartOf lima peru) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lima bean is part of lima bean", "pln": ["(: cnet_partof_6989e37661 (PartOf lima_bean lima_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "limb is part of bow", "pln": ["(: cnet_partof_4e6b6bdfed (PartOf limb bow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "limb is part of octant", "pln": ["(: cnet_partof_0a3843422b (PartOf limb octant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "limb is part of sextant", "pln": ["(: cnet_partof_642a4a8010 (PartOf limb sextant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "limb is part of appendicular skeleton", "pln": ["(: cnet_partof_f306491517 (PartOf limb appendicular_skeleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "limb is part of tree", "pln": ["(: cnet_partof_1560112279 (PartOf limb tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "lime is part of lime", "pln": ["(: cnet_partof_845d59937b (PartOf lime lime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "limeira is part of brazil", "pln": ["(: cnet_partof_05fc5f7e03 (PartOf limeira brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "limerick is part of ireland", "pln": ["(: cnet_partof_9788c806f2 (PartOf limerick ireland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "limousin is part of france", "pln": ["(: cnet_partof_f56192a64e (PartOf limousin france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "limpopo is part of mozambique", "pln": ["(: cnet_partof_f2ce2613ae (PartOf limpopo mozambique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "limpopo is part of south africa", "pln": ["(: cnet_partof_726ebfed20 (PartOf limpopo south_africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lincoln s birthday is part of february", "pln": ["(: cnet_partof_c29761c49c (PartOf lincoln_s_birthday february) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lincoln is part of nebraska", "pln": ["(: cnet_partof_8d3b928a7e (PartOf lincoln nebraska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lincoln memorial is part of washington", "pln": ["(: cnet_partof_061a0c49f9 (PartOf lincoln_memorial washington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lincolnshire is part of england", "pln": ["(: cnet_partof_26e9b05a4c (PartOf lincolnshire england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lindesne is part of norway", "pln": ["(: cnet_partof_35dc17907f (PartOf lindesne norway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "line is part of transportation system", "pln": ["(: cnet_partof_ad46f359c0 (PartOf line transportation_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "line is part of letter", "pln": ["(: cnet_partof_6fc5d1c6e4 (PartOf line letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "line is part of stanza", "pln": ["(: cnet_partof_cf8ad3a652 (PartOf line stanza) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "line is part of electromagnetic spectrum", "pln": ["(: cnet_partof_6ea3d7b33e (PartOf line electromagnetic_spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "line item is part of appropriation bill", "pln": ["(: cnet_partof_a00bc18929 (PartOf line_item appropriation_bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "line of control is part of kashmir", "pln": ["(: cnet_partof_df82c4065f (PartOf line_of_control kashmir) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "line of poetry is part of couplet", "pln": ["(: cnet_partof_3a4effb622 (PartOf line_of_poetry couplet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "line of poetry is part of poem", "pln": ["(: cnet_partof_e9bdeeb8b3 (PartOf line_of_poetry poem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "liner is part of garment", "pln": ["(: cnet_partof_b387247f1b (PartOf liner garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lingcod is part of lingcod", "pln": ["(: cnet_partof_c52ff3210b (PartOf lingcod lingcod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lingonberry is part of cowberry", "pln": ["(: cnet_partof_dbd7f46e1b (PartOf lingonberry cowberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lingual artery is part of mouth", "pln": ["(: cnet_partof_659b2e67d6 (PartOf lingual_artery mouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lingual vein is part of mouth", "pln": ["(: cnet_partof_8ced515d86 (PartOf lingual_vein mouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "linguistic is part of cognitive science", "pln": ["(: cnet_partof_98f60b6bf4 (PartOf linguistic cognitive_science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "linin is part of nucleus", "pln": ["(: cnet_partof_bddd56de88 (PartOf linin nucleus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "link is part of chain", "pln": ["(: cnet_partof_eb4fe6b64a (PartOf link chain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "linz is part of austria", "pln": ["(: cnet_partof_3183f66f1a (PartOf linz austria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lip is part of mouth", "pln": ["(: cnet_partof_ce497b73c5 (PartOf lip mouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lisbon is part of portugal", "pln": ["(: cnet_partof_f8712a9ba4 (PartOf lisbon portugal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "litany is part of book of common prayer", "pln": ["(: cnet_partof_89c2c241b3 (PartOf litany book_of_common_prayer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "litchi is part of litchi", "pln": ["(: cnet_partof_ea3b737be3 (PartOf litchi litchi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "liter is part of dekaliter", "pln": ["(: cnet_partof_aeb7d7ce1a (PartOf liter dekaliter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lithosphere is part of earth", "pln": ["(: cnet_partof_1a6a9e0a9e (PartOf lithosphere earth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "little bighorn is part of montana", "pln": ["(: cnet_partof_28cbff12b9 (PartOf little_bighorn montana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "little bighorn is part of wyoming", "pln": ["(: cnet_partof_fba50ae1ec (PartOf little_bighorn wyoming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "little dipper is part of little bear", "pln": ["(: cnet_partof_99bce8f23f (PartOf little_dipper little_bear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "little missouri is part of montana", "pln": ["(: cnet_partof_839bafb919 (PartOf little_missouri montana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "little missouri is part of north dakota", "pln": ["(: cnet_partof_37fd9fd8e4 (PartOf little_missouri north_dakota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "little missouri is part of south dakota", "pln": ["(: cnet_partof_43397d2299 (PartOf little_missouri south_dakota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "little missouri is part of wyoming", "pln": ["(: cnet_partof_81d86c2f84 (PartOf little_missouri wyoming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "little rock is part of arkansa", "pln": ["(: cnet_partof_75bc6654d0 (PartOf little_rock arkansa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "little sioux river is part of iowa", "pln": ["(: cnet_partof_d75d486908 (PartOf little_sioux_river iowa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "little sioux river is part of minnesota", "pln": ["(: cnet_partof_6878567d1c (PartOf little_sioux_river minnesota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "little toe is part of foot", "pln": ["(: cnet_partof_0a96bef1a8 (PartOf little_toe foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "little wabash is part of illinois", "pln": ["(: cnet_partof_fe64d30022 (PartOf little_wabash illinois) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "live axle is part of drive line", "pln": ["(: cnet_partof_f8b970a1ae (PartOf live_axle drive_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "liver is part of body", "pln": ["(: cnet_partof_6288f219ed (PartOf liver body) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "liver is part of human body", "pln": ["(: cnet_partof_7dbe40a5ff (PartOf liver human_body) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "liver is part of circulatory system", "pln": ["(: cnet_partof_e2957b384e (PartOf liver circulatory_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "liver is part of digestive system", "pln": ["(: cnet_partof_ff73c3cd7e (PartOf liver digestive_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "liver spot is part of skin", "pln": ["(: cnet_partof_788024bb2a (PartOf liver_spot skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "liverpool is part of england", "pln": ["(: cnet_partof_a103f7b0e4 (PartOf liverpool england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "living room is part of house", "pln": ["(: cnet_partof_265c1bd856 (PartOf living_room house) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "living room is part of dwelling", "pln": ["(: cnet_partof_564c25906b (PartOf living_room dwelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "livonia is part of estonia", "pln": ["(: cnet_partof_d302e63b20 (PartOf livonia estonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "livonia is part of latvia", "pln": ["(: cnet_partof_c565ef3df1 (PartOf livonia latvia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ljubljana is part of slovenia", "pln": ["(: cnet_partof_67337e55b8 (PartOf ljubljana slovenia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "llano estacado is part of great plain", "pln": ["(: cnet_partof_7d9de1fe63 (PartOf llano_estacado great_plain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "llano estacado is part of new mexico", "pln": ["(: cnet_partof_dc198d6e9d (PartOf llano_estacado new_mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "llano estacado is part of oklahoma", "pln": ["(: cnet_partof_bae1e6adc3 (PartOf llano_estacado oklahoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "llano estacado is part of texa", "pln": ["(: cnet_partof_d94ae85764 (PartOf llano_estacado texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "llullaillaco is part of ande", "pln": ["(: cnet_partof_680927fa80 (PartOf llullaillaco ande) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "llullaillaco is part of argentina", "pln": ["(: cnet_partof_27e84b9707 (PartOf llullaillaco argentina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "llullaillaco is part of chile", "pln": ["(: cnet_partof_4a94faec9d (PartOf llullaillaco chile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lobe is part of organ", "pln": ["(: cnet_partof_3b14df0e19 (PartOf lobe organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lobe is part of leaf", "pln": ["(: cnet_partof_09d1318968 (PartOf lobe leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lobe is part of radiation pattern", "pln": ["(: cnet_partof_31ce13f20e (PartOf lobe radiation_pattern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "lobe of lung is part of lung", "pln": ["(: cnet_partof_ab9b316ea1 (PartOf lobe_of_lung lung) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lobito is part of angola", "pln": ["(: cnet_partof_bc64133140 (PartOf lobito angola) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lobster is part of true lobster", "pln": ["(: cnet_partof_22736139c5 (PartOf lobster true_lobster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "local oscillator is part of heterodyne receiver", "pln": ["(: cnet_partof_a06a93c889 (PartOf local_oscillator heterodyne_receiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "location is part of space", "pln": ["(: cnet_partof_59d01425c0 (PartOf location space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "loch achray is part of scotland", "pln": ["(: cnet_partof_9e70331437 (PartOf loch_achray scotland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "loch linnhe is part of scotland", "pln": ["(: cnet_partof_661f230c98 (PartOf loch_linnhe scotland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "loch ness is part of scotland", "pln": ["(: cnet_partof_11e82483e5 (PartOf loch_ness scotland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lock is part of canal", "pln": ["(: cnet_partof_c3e3c34261 (PartOf lock canal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lock is part of door", "pln": ["(: cnet_partof_309097f3ba (PartOf lock door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lock is part of drawer", "pln": ["(: cnet_partof_e2e924e92b (PartOf lock drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lock is part of firearm", "pln": ["(: cnet_partof_dddac940df (PartOf lock firearm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lock is part of gate", "pln": ["(: cnet_partof_0cb72dc845 (PartOf lock gate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lock is part of ignition switch", "pln": ["(: cnet_partof_dcfb5f3869 (PartOf lock ignition_switch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lock is part of lid", "pln": ["(: cnet_partof_924a4c31e2 (PartOf lock lid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lock is part of hairdo", "pln": ["(: cnet_partof_6681bdb472 (PartOf lock hairdo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lockage is part of canal", "pln": ["(: cnet_partof_325dbfeee6 (PartOf lockage canal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "locker room is part of athletic facility", "pln": ["(: cnet_partof_928bd5fbe8 (PartOf locker_room athletic_facility) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "locker room is part of workplace", "pln": ["(: cnet_partof_134d3b6c8c (PartOf locker_room workplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lodi is part of cal", "pln": ["(: cnet_partof_b63cd01dba (PartOf lodi cal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lodz is part of poland", "pln": ["(: cnet_partof_9db399c898 (PartOf lodz poland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "lofoten is part of norway", "pln": ["(: cnet_partof_97d5727d7d (PartOf lofoten norway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lofoten is part of norwegian sea", "pln": ["(: cnet_partof_24e3c3cbf0 (PartOf lofoten norwegian_sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "loft is part of house", "pln": ["(: cnet_partof_4103065d3e (PartOf loft house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "log is part of ship", "pln": ["(: cnet_partof_d4093958ad (PartOf log ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "log line is part of log", "pln": ["(: cnet_partof_db6bb62be2 (PartOf log_line log) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "logan is part of st elia range", "pln": ["(: cnet_partof_ef73b72967 (PartOf logan st_elia_range) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "logan is part of yukon", "pln": ["(: cnet_partof_686281a917 (PartOf logan yukon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "loganberry is part of loganberry", "pln": ["(: cnet_partof_ce3edcef43 (PartOf loganberry loganberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "loge is part of mezzanine", "pln": ["(: cnet_partof_9b56d0da8d (PartOf loge mezzanine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "loin is part of homo", "pln": ["(: cnet_partof_b1828e9420 (PartOf loin homo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "loin is part of quadruped", "pln": ["(: cnet_partof_9bcdd12060 (PartOf loin quadruped) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "loin of lamb is part of lamb", "pln": ["(: cnet_partof_ce08a5280c (PartOf loin_of_lamb lamb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "loin is part of torso", "pln": ["(: cnet_partof_40dcbe5654 (PartOf loin torso) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "loire is part of france", "pln": ["(: cnet_partof_f2ed328d77 (PartOf loire france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "loire valley is part of france", "pln": ["(: cnet_partof_1040054798 (PartOf loire_valley france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lombard street is part of london", "pln": ["(: cnet_partof_5063b85cf6 (PartOf lombard_street london) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lombardy is part of italy", "pln": ["(: cnet_partof_24992d4fc4 (PartOf lombardy italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lome is part of togo", "pln": ["(: cnet_partof_553b0b0e20 (PartOf lome togo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "london is part of england", "pln": ["(: cnet_partof_1352508867 (PartOf london england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "long beach is part of california", "pln": ["(: cnet_partof_3c6db969a2 (PartOf long_beach california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "long island is part of new york", "pln": ["(: cnet_partof_74cfba23dd (PartOf long_island new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "long island sound is part of atlantic", "pln": ["(: cnet_partof_fc5e00be1b (PartOf long_island_sound atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "long island sound is part of connecticut", "pln": ["(: cnet_partof_6b12ad4775 (PartOf long_island_sound connecticut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "long island sound is part of long island", "pln": ["(: cnet_partof_734b1be96e (PartOf long_island_sound long_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "long suit is part of hand", "pln": ["(: cnet_partof_78d45c5d63 (PartOf long_suit hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "longanberry is part of longan", "pln": ["(: cnet_partof_feb63f61dd (PartOf longanberry longan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "loofa is part of luffa", "pln": ["(: cnet_partof_e26f9bda1d (PartOf loofa luffa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "loquat is part of loquat", "pln": ["(: cnet_partof_00145abfe6 (PartOf loquat loquat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "los alamos is part of new mexico", "pln": ["(: cnet_partof_dbd89d4b9e (PartOf los_alamos new_mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lord s prayer is part of sermon on mount", "pln": ["(: cnet_partof_a38eecb768 (PartOf lord_s_prayer sermon_on_mount) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lorraine is part of france", "pln": ["(: cnet_partof_f6e07e3d5f (PartOf lorraine france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "los alamo is part of new mexico", "pln": ["(: cnet_partof_87e59b0dee (PartOf los_alamo new_mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "los angele is part of california", "pln": ["(: cnet_partof_d2c4ce7698 (PartOf los_angele california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lothian region is part of scotland", "pln": ["(: cnet_partof_859495fc4a (PartOf lothian_region scotland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lotus position is part of yoga", "pln": ["(: cnet_partof_b487ee8c58 (PartOf lotus_position yoga) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "loudspeaker is part of public address system", "pln": ["(: cnet_partof_3ddb19f119 (PartOf loudspeaker public_address_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "louisiana is part of deep south", "pln": ["(: cnet_partof_f4bc8ccec6 (PartOf louisiana deep_south) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "louisiana is part of gulf state", "pln": ["(: cnet_partof_3c4b4bf82f (PartOf louisiana gulf_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "louisiana is part of south", "pln": ["(: cnet_partof_68fc41df67 (PartOf louisiana south) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "louisiana is part of united state", "pln": ["(: cnet_partof_77fa457af0 (PartOf louisiana united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "louisiana purchase is part of united state", "pln": ["(: cnet_partof_2d303bc8ae (PartOf louisiana_purchase united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "louisville is part of kentucky", "pln": ["(: cnet_partof_3e5b62e84a (PartOf louisville kentucky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "louver is part of jalousie", "pln": ["(: cnet_partof_88b9154523 (PartOf louver jalousie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "louvre is part of paris", "pln": ["(: cnet_partof_d43e748dbe (PartOf louvre paris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lovage is part of lovage", "pln": ["(: cnet_partof_98ff1f6c38 (PartOf lovage lovage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "loving is part of living", "pln": ["(: cnet_partof_a6b3494425 (PartOf loving living) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "low is part of cyclone", "pln": ["(: cnet_partof_95f3701b32 (PartOf low cyclone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "low country is part of europe", "pln": ["(: cnet_partof_3208b70882 (PartOf low_country europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "low frequency is part of electromagnetic spectrum", "pln": ["(: cnet_partof_176a95914c (PartOf low_frequency electromagnetic_spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lower california is part of mexico", "pln": ["(: cnet_partof_cd6b3ff761 (PartOf lower_california mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lower egypt is part of egypt", "pln": ["(: cnet_partof_8f8117f447 (PartOf lower_egypt egypt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lower mantle is part of mantle", "pln": ["(: cnet_partof_62c255f5ec (PartOf lower_mantle mantle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lower paleolithic is part of paleolithic age", "pln": ["(: cnet_partof_d1b7a342f8 (PartOf lower_paleolithic paleolithic_age) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lower peninsula is part of michigan", "pln": ["(: cnet_partof_f274f7e82d (PartOf lower_peninsula michigan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lower saxony is part of germany", "pln": ["(: cnet_partof_41a92a6379 (PartOf lower_saxony germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lower tunguska is part of siberia", "pln": ["(: cnet_partof_494b4b8b4f (PartOf lower_tunguska siberia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lowland is part of scotland", "pln": ["(: cnet_partof_2426023e2f (PartOf lowland scotland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "luanda is part of angola", "pln": ["(: cnet_partof_559188e0f0 (PartOf luanda angola) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lubavitch is part of belarus", "pln": ["(: cnet_partof_5dbe4e8af2 (PartOf lubavitch belarus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lubber s hole is part of ship", "pln": ["(: cnet_partof_7b944840ad (PartOf lubber_s_hole ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lubbock is part of texa", "pln": ["(: cnet_partof_370db031bc (PartOf lubbock texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lubeck is part of germany", "pln": ["(: cnet_partof_28380d355f (PartOf lubeck germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "lublin is part of poland", "pln": ["(: cnet_partof_a96a6f061c (PartOf lublin poland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lubricating system is part of internal combustion engine", "pln": ["(: cnet_partof_2dd5b8f8bf (PartOf lubricating_system internal_combustion_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lubumbashi is part of congo", "pln": ["(: cnet_partof_ae871b6c31 (PartOf lubumbashi congo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lucknow is part of india", "pln": ["(: cnet_partof_bba7e3463d (PartOf lucknow india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "luda is part of china", "pln": ["(: cnet_partof_97da0d6f2f (PartOf luda china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "luff is part of fore and aft sail", "pln": ["(: cnet_partof_cf0f302539 (PartOf luff fore_and_aft_sail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lufkin is part of texa", "pln": ["(: cnet_partof_cf1b760fb5 (PartOf lufkin texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lug is part of lug wrench", "pln": ["(: cnet_partof_d01c522bc2 (PartOf lug lug_wrench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lugsail is part of junk", "pln": ["(: cnet_partof_269a211872 (PartOf lugsail junk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lugsail is part of lugger", "pln": ["(: cnet_partof_df82e75622 (PartOf lugsail lugger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "luke is part of new testament", "pln": ["(: cnet_partof_20853181e4 (PartOf luke new_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lule burga is part of balkan war", "pln": ["(: cnet_partof_0ce760d8ea (PartOf lule_burga balkan_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lumbar vertebra is part of back", "pln": ["(: cnet_partof_147f3e8a3d (PartOf lumbar_vertebra back) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lunar month is part of lunar year", "pln": ["(: cnet_partof_fb6daac08a (PartOf lunar_month lunar_year) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lund is part of sweden", "pln": ["(: cnet_partof_454ba92d6f (PartOf lund sweden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lunette is part of vault", "pln": ["(: cnet_partof_1da3df9b10 (PartOf lunette vault) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lung is part of human body", "pln": ["(: cnet_partof_cb79507614 (PartOf lung human_body) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lung is part of lower respiratory tract", "pln": ["(: cnet_partof_79f6848618 (PartOf lung lower_respiratory_tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "luoyang is part of china", "pln": ["(: cnet_partof_bcbc550a09 (PartOf luoyang china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lusaka is part of zambia", "pln": ["(: cnet_partof_9549f2b2f8 (PartOf lusaka zambia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lushun is part of china", "pln": ["(: cnet_partof_36f9991e87 (PartOf lushun china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lushun is part of luda", "pln": ["(: cnet_partof_912ee195fb (PartOf lushun luda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lusitania is part of portugal", "pln": ["(: cnet_partof_b6aad6fa92 (PartOf lusitania portugal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lusitania is part of spain", "pln": ["(: cnet_partof_eabe05de32 (PartOf lusitania spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lutzen is part of thirty year war", "pln": ["(: cnet_partof_4b141efeed (PartOf lutzen thirty_year_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lux is part of phot", "pln": ["(: cnet_partof_21784a36e5 (PartOf lux phot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "luxembourg is part of europe", "pln": ["(: cnet_partof_343b1b8f0b (PartOf luxembourg europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "luxembourg ville is part of luxembourg", "pln": ["(: cnet_partof_3583751341 (PartOf luxembourg_ville luxembourg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "luxor is part of egypt", "pln": ["(: cnet_partof_7eddea6a0d (PartOf luxor egypt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "luzon is part of philippine", "pln": ["(: cnet_partof_cbe7e89505 (PartOf luzon philippine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lwei is part of kwanza", "pln": ["(: cnet_partof_44a23defb9 (PartOf lwei kwanza) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lycia is part of asia minor", "pln": ["(: cnet_partof_432966ff1a (PartOf lycia asia_minor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lydia is part of asia minor", "pln": ["(: cnet_partof_0cf8af0ce4 (PartOf lydia asia_minor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lymph is part of circulatory system", "pln": ["(: cnet_partof_8b07aa09d8 (PartOf lymph circulatory_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lymph node is part of circulatory system", "pln": ["(: cnet_partof_939df483a1 (PartOf lymph_node circulatory_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lymph node is part of immune system", "pln": ["(: cnet_partof_88717d9761 (PartOf lymph_node immune_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lymph vessel is part of lymphatic system", "pln": ["(: cnet_partof_87cd5716cd (PartOf lymph_vessel lymphatic_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lymphatic system is part of body", "pln": ["(: cnet_partof_313bef6c86 (PartOf lymphatic_system body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lymphatic tissue is part of lymphatic system", "pln": ["(: cnet_partof_34651d1aa7 (PartOf lymphatic_tissue lymphatic_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "lymphocyte is part of lymphatic system", "pln": ["(: cnet_partof_ee3064a83e (PartOf lymphocyte lymphatic_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lynchburg is part of virginia", "pln": ["(: cnet_partof_7030c8fd2c (PartOf lynchburg virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lyon is part of france", "pln": ["(: cnet_partof_3ad2161a8e (PartOf lyon france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lyon is part of lyonnais", "pln": ["(: cnet_partof_41180fce5d (PartOf lyon lyonnais) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lyonnais is part of rhone alpe", "pln": ["(: cnet_partof_f9a50966ab (PartOf lyonnais rhone_alpe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "lyric is part of song", "pln": ["(: cnet_partof_9f26d5029a (PartOf lyric song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "macadamia nut is part of macadamia nut", "pln": ["(: cnet_partof_e7fdbf8e67 (PartOf macadamia_nut macadamia_nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "macedon is part of balkan peninsula", "pln": ["(: cnet_partof_331701c1d9 (PartOf macedon balkan_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "macedonia is part of balkan peninsula", "pln": ["(: cnet_partof_c2f6934608 (PartOf macedonia balkan_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "machu picchu is part of peru", "pln": ["(: cnet_partof_0c8c3d9220 (PartOf machu_picchu peru) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mackenzie is part of canada", "pln": ["(: cnet_partof_26253b1117 (PartOf mackenzie canada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mackerel is part of common mackerel", "pln": ["(: cnet_partof_d24933f322 (PartOf mackerel common_mackerel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mackinac bridge is part of michigan", "pln": ["(: cnet_partof_c38937aaa8 (PartOf mackinac_bridge michigan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "macon is part of georgia", "pln": ["(: cnet_partof_2090ba923e (PartOf macon georgia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "macula is part of retina", "pln": ["(: cnet_partof_39232f6c40 (PartOf macula retina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "macule is part of skin", "pln": ["(: cnet_partof_ef817e89df (PartOf macule skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "madagascar is part of africa", "pln": ["(: cnet_partof_7de29e55ef (PartOf madagascar africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "madagascar is part of indian ocean", "pln": ["(: cnet_partof_2e110d11a1 (PartOf madagascar indian_ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "madagascar is part of madagascar", "pln": ["(: cnet_partof_f87c7beaf6 (PartOf madagascar madagascar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "madeira is part of madeira island", "pln": ["(: cnet_partof_7d8da65c9d (PartOf madeira madeira_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "madeira is part of brazil", "pln": ["(: cnet_partof_4b4893efe7 (PartOf madeira brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "madeira island is part of portugal", "pln": ["(: cnet_partof_b890968272 (PartOf madeira_island portugal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "madison is part of wisconsin", "pln": ["(: cnet_partof_3a0c977479 (PartOf madison wisconsin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "madrid is part of spain", "pln": ["(: cnet_partof_0c11ef9f60 (PartOf madrid spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "magazine is part of camera", "pln": ["(: cnet_partof_bb49da1a4f (PartOf magazine camera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "magazine article is part of magazine", "pln": ["(: cnet_partof_4c04319e07 (PartOf magazine_article magazine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "magdalena is part of colombia", "pln": ["(: cnet_partof_671de56e17 (PartOf magdalena colombia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "magh is part of hindu calendar", "pln": ["(: cnet_partof_9c8635dc98 (PartOf magh hindu_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "maghreb is part of africa", "pln": ["(: cnet_partof_d22b8468f7 (PartOf maghreb africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "maginot line is part of france", "pln": ["(: cnet_partof_4a8c61f667 (PartOf maginot_line france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "magnetic bottle is part of tokamak", "pln": ["(: cnet_partof_ed4cd1a98f (PartOf magnetic_bottle tokamak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "magnetic core is part of magnetic core memory", "pln": ["(: cnet_partof_f44193a9ac (PartOf magnetic_core magnetic_core_memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "magnetic core is part of random access memory", "pln": ["(: cnet_partof_5a311307ad (PartOf magnetic_core random_access_memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "magnetic head is part of tape recorder", "pln": ["(: cnet_partof_f2e34498a7 (PartOf magnetic_head tape_recorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "magnetic needle is part of magnetic compass", "pln": ["(: cnet_partof_299b7e41be (PartOf magnetic_needle magnetic_compass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "magnetic stripe is part of credit card", "pln": ["(: cnet_partof_3aa74df592 (PartOf magnetic_stripe credit_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "magnetic stripe is part of debit card", "pln": ["(: cnet_partof_45d33cb27e (PartOf magnetic_stripe debit_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "magneto is part of ignition", "pln": ["(: cnet_partof_35eb951d41 (PartOf magneto ignition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "magnolia is part of magnolia", "pln": ["(: cnet_partof_66dfdafe5c (PartOf magnolia magnolia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "maharashtra is part of india", "pln": ["(: cnet_partof_229b9ba320 (PartOf maharashtra india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "maiduguri is part of nigeria", "pln": ["(: cnet_partof_41c614f254 (PartOf maiduguri nigeria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "main is part of infrastructure", "pln": ["(: cnet_partof_6c0b1fd540 (PartOf main infrastructure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "main is part of hydrosphere", "pln": ["(: cnet_partof_490028713d (PartOf main hydrosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "main clause is part of complex sentence", "pln": ["(: cnet_partof_7193b16709 (PartOf main_clause complex_sentence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "maine is part of new england", "pln": ["(: cnet_partof_c036c2fe81 (PartOf maine new_england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "maine is part of united state", "pln": ["(: cnet_partof_25d1ac903a (PartOf maine united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mainspring is part of clockwork", "pln": ["(: cnet_partof_1c5d969541 (PartOf mainspring clockwork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "major premise is part of syllogism", "pln": ["(: cnet_partof_876901be69 (PartOf major_premise syllogism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "major term is part of conclusion", "pln": ["(: cnet_partof_49b05b1703 (PartOf major_term conclusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "major term is part of major premise", "pln": ["(: cnet_partof_0c34f50c88 (PartOf major_term major_premise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "majorca is part of balearic island", "pln": ["(: cnet_partof_301166ece4 (PartOf majorca balearic_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "majorca is part of spain", "pln": ["(: cnet_partof_2f41befa1a (PartOf majorca spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "majority is part of adulthood", "pln": ["(: cnet_partof_dbf5f48859 (PartOf majority adulthood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "makalu is part of himalaya", "pln": ["(: cnet_partof_5e9c9a251d (PartOf makalu himalaya) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "makalu is part of nepal", "pln": ["(: cnet_partof_23ed813044 (PartOf makalu nepal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "makalu is part of tibet", "pln": ["(: cnet_partof_f2a4bca376 (PartOf makalu tibet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "malabo is part of bioko", "pln": ["(: cnet_partof_016f0ff276 (PartOf malabo bioko) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "malacca is part of malaysia", "pln": ["(: cnet_partof_94c9d58a8a (PartOf malacca malaysia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "malacca is part of rattan", "pln": ["(: cnet_partof_70a526923f (PartOf malacca rattan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "malaga is part of spain", "pln": ["(: cnet_partof_41d13756de (PartOf malaga spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "malawi is part of africa", "pln": ["(: cnet_partof_a206aa7055 (PartOf malawi africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "malay archipelago is part of pacific", "pln": ["(: cnet_partof_5b08d0e975 (PartOf malay_archipelago pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "malay peninsula is part of asia", "pln": ["(: cnet_partof_959dabedd3 (PartOf malay_peninsula asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "malaysia is part of indochina", "pln": ["(: cnet_partof_783557a202 (PartOf malaysia indochina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "malaysia is part of malay peninsula", "pln": ["(: cnet_partof_2c9740f215 (PartOf malaysia malay_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "malaysia is part of malaysia", "pln": ["(: cnet_partof_25eab7a452 (PartOf malaysia malaysia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "malaysian state is part of malaysia", "pln": ["(: cnet_partof_6f4d4f5eae (PartOf malaysian_state malaysia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "maldive is part of indian ocean", "pln": ["(: cnet_partof_99e15081fb (PartOf maldive indian_ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "maldive is part of maldive", "pln": ["(: cnet_partof_8df8d27f6a (PartOf maldive maldive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "male is part of maldive", "pln": ["(: cnet_partof_602fbf32e3 (PartOf male maldive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "male body is part of male", "pln": ["(: cnet_partof_089dbd3474 (PartOf male_body male) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "male chest is part of male body", "pln": ["(: cnet_partof_61e91df12e (PartOf male_chest male_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "male genitalia is part of male body", "pln": ["(: cnet_partof_9653d8cbd6 (PartOf male_genitalia male_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "male genitalia is part of male reproductive system", "pln": ["(: cnet_partof_a8d15bb3b9 (PartOf male_genitalia male_reproductive_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "male internal reproductive organ is part of male body", "pln": ["(: cnet_partof_f50474fa32 (PartOf male_internal_reproductive_organ male_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "male reproductive gland is part of male genitalia", "pln": ["(: cnet_partof_335712b997 (PartOf male_reproductive_gland male_genitalia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "male reproductive system is part of male body", "pln": ["(: cnet_partof_f7e4763f6a (PartOf male_reproductive_system male_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mali is part of africa", "pln": ["(: cnet_partof_b5728217a0 (PartOf mali africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mallet is part of percussion instrument", "pln": ["(: cnet_partof_1205bd85b1 (PartOf mallet percussion_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "malleus is part of middle ear", "pln": ["(: cnet_partof_d2693b24b2 (PartOf malleus middle_ear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "malmo is part of sweden", "pln": ["(: cnet_partof_79aa6bdd65 (PartOf malmo sweden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "malpighian body is part of nephron", "pln": ["(: cnet_partof_f78dc2fbf3 (PartOf malpighian_body nephron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "malta is part of malta", "pln": ["(: cnet_partof_7a5f59d646 (PartOf malta malta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "malta is part of mediterranean", "pln": ["(: cnet_partof_8babacb815 (PartOf malta mediterranean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mamey is part of mammee apple", "pln": ["(: cnet_partof_0251fd60d9 (PartOf mamey mammee_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mamillary body is part of diencephalon", "pln": ["(: cnet_partof_95412399f3 (PartOf mamillary_body diencephalon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mammary gland is part of female mammal", "pln": ["(: cnet_partof_86b27df1de (PartOf mammary_gland female_mammal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mammoth cave national park is part of kentucky", "pln": ["(: cnet_partof_070b5fa5f3 (PartOf mammoth_cave_national_park kentucky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "man is part of british isle", "pln": ["(: cnet_partof_fd0b04c838 (PartOf man british_isle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "man hour is part of workday", "pln": ["(: cnet_partof_c340255ff6 (PartOf man_hour workday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "managua is part of nicaragua", "pln": ["(: cnet_partof_9dc8d2605c (PartOf managua nicaragua) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "manama is part of bahrain", "pln": ["(: cnet_partof_7dd6ec08b4 (PartOf manama bahrain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "manchester is part of england", "pln": ["(: cnet_partof_336f827be3 (PartOf manchester england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "manchester is part of new hampshire", "pln": ["(: cnet_partof_0ae61ba609 (PartOf manchester new_hampshire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "manchuria is part of china", "pln": ["(: cnet_partof_43e8315e17 (PartOf manchuria china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mandalay is part of myanmar", "pln": ["(: cnet_partof_9f746ec56a (PartOf mandalay myanmar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mandarin is part of mandarin", "pln": ["(: cnet_partof_af11c6a8b8 (PartOf mandarin mandarin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mandible is part of jaw", "pln": ["(: cnet_partof_c2359cb0ed (PartOf mandible jaw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mandibular notch is part of lower jaw", "pln": ["(: cnet_partof_732fbb1978 (PartOf mandibular_notch lower_jaw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "mandrake root is part of mandrake", "pln": ["(: cnet_partof_8f0a59a63a (PartOf mandrake_root mandrake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mane is part of lion", "pln": ["(: cnet_partof_a25c80b340 (PartOf mane lion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mane is part of homo", "pln": ["(: cnet_partof_2bd56f3b9a (PartOf mane homo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "maneuver is part of athletic game", "pln": ["(: cnet_partof_934be96d74 (PartOf maneuver athletic_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "maneuver is part of military training", "pln": ["(: cnet_partof_0f0185353f (PartOf maneuver military_training) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mango is part of mango", "pln": ["(: cnet_partof_c0b0fe80e3 (PartOf mango mango) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mangosteen is part of mangosteen", "pln": ["(: cnet_partof_a7c6adf0a7 (PartOf mangosteen mangosteen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "manhattan is part of new york", "pln": ["(: cnet_partof_9e58abe759 (PartOf manhattan new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "manhattan island is part of new york", "pln": ["(: cnet_partof_3e66909de7 (PartOf manhattan_island new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "manhattan project is part of executive branch", "pln": ["(: cnet_partof_936426c54d (PartOf manhattan_project executive_branch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "manhole cover is part of manhole", "pln": ["(: cnet_partof_1719afe8c7 (PartOf manhole_cover manhole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "manila is part of philippine", "pln": ["(: cnet_partof_938bc93537 (PartOf manila philippine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "manila bay is part of spanish american war", "pln": ["(: cnet_partof_2bf8ea28fe (PartOf manila_bay spanish_american_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "manipur is part of india", "pln": ["(: cnet_partof_2683661244 (PartOf manipur india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "manitoba is part of canada", "pln": ["(: cnet_partof_51467af380 (PartOf manitoba canada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mankato is part of minnesota", "pln": ["(: cnet_partof_c3fd5338d5 (PartOf mankato minnesota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mankind is part of nature", "pln": ["(: cnet_partof_c9006f5fb7 (PartOf mankind nature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "manner of speaking is part of paralanguage", "pln": ["(: cnet_partof_f309557a84 (PartOf manner_of_speaking paralanguage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mannheim is part of germany", "pln": ["(: cnet_partof_8a56611d21 (PartOf mannheim germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "manor hall is part of mansion", "pln": ["(: cnet_partof_c7e06e1b73 (PartOf manor_hall mansion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mansfield is part of ohio", "pln": ["(: cnet_partof_395ca6a7ad (PartOf mansfield ohio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mantel is part of fireplace", "pln": ["(: cnet_partof_c6f6b8b0aa (PartOf mantel fireplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mantle is part of lithosphere", "pln": ["(: cnet_partof_e84cc5eeaa (PartOf mantle lithosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "manual alphabet is part of asl", "pln": ["(: cnet_partof_f14334cded (PartOf manual_alphabet asl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "manubrium is part of sternum", "pln": ["(: cnet_partof_00dbd4bab4 (PartOf manubrium sternum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "maputo is part of mozambique", "pln": ["(: cnet_partof_2a3fdaad62 (PartOf maputo mozambique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "marabou is part of marabou", "pln": ["(: cnet_partof_6eead13c84 (PartOf marabou marabou) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "maracaibo is part of venezuela", "pln": ["(: cnet_partof_805a9b9dcc (PartOf maracaibo venezuela) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "maracay is part of venezuela", "pln": ["(: cnet_partof_139e13b346 (PartOf maracay venezuela) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "marang is part of marang", "pln": ["(: cnet_partof_051729eebe (PartOf marang marang) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "marasca is part of marasca", "pln": ["(: cnet_partof_ee2ed6fa34 (PartOf marasca marasca) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "march is part of gregorian calendar", "pln": ["(: cnet_partof_a22081d2a9 (PartOf march gregorian_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "marche is part of italy", "pln": ["(: cnet_partof_4f5298b58a (PartOf marche italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mardi gra is part of new orlean", "pln": ["(: cnet_partof_981d78c2bc (PartOf mardi_gra new_orlean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mardi gra is part of shrovetide", "pln": ["(: cnet_partof_e244ec4d35 (PartOf mardi_gra shrovetide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "marengo is part of napoleonic war", "pln": ["(: cnet_partof_d003aa8a00 (PartOf marengo napoleonic_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "margin is part of page", "pln": ["(: cnet_partof_0c0233b2ab (PartOf margin page) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mariana island is part of micronesia", "pln": ["(: cnet_partof_a09ed40a3c (PartOf mariana_island micronesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mariehamn is part of finland", "pln": ["(: cnet_partof_b27929112f (PartOf mariehamn finland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "marine corp intelligence activity is part of united state marine corp", "pln": ["(: cnet_partof_994efd0277 (PartOf marine_corp_intelligence_activity united_state_marine_corp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "maritime province is part of canada", "pln": ["(: cnet_partof_01079658f5 (PartOf maritime_province canada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "marjoram is part of oregano", "pln": ["(: cnet_partof_9be2800b1f (PartOf marjoram oregano) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mark is part of new testament", "pln": ["(: cnet_partof_c7d472a262 (PartOf mark new_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "marquesa island is part of french polynesia", "pln": ["(: cnet_partof_52a82015ce (PartOf marquesa_island french_polynesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "marquette is part of michigan", "pln": ["(: cnet_partof_2d70f81c57 (PartOf marquette michigan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "marrakesh is part of morocco", "pln": ["(: cnet_partof_58d24daa07 (PartOf marrakesh morocco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "marrow is part of bone", "pln": ["(: cnet_partof_08045b8409 (PartOf marrow bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "marrow is part of immune system", "pln": ["(: cnet_partof_9ffa0b4314 (PartOf marrow immune_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "marrow is part of marrow", "pln": ["(: cnet_partof_bbfbb9fd82 (PartOf marrow marrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "marrow is part of marrowbone", "pln": ["(: cnet_partof_754db3b227 (PartOf marrow marrowbone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "marseille is part of france", "pln": ["(: cnet_partof_a4fd44a75e (PartOf marseille france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "marshall island is part of marshall island", "pln": ["(: cnet_partof_1f29e2ba8c (PartOf marshall_island marshall_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "marshall island is part of micronesia", "pln": ["(: cnet_partof_bb786fbd42 (PartOf marshall_island micronesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "marston moor is part of english civil war", "pln": ["(: cnet_partof_0a32ae6058 (PartOf marston_moor english_civil_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "marston moor is part of england", "pln": ["(: cnet_partof_421b8e243b (PartOf marston_moor england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "massachusetts institute of technology is part of cambridge", "pln": ["(: cnet_partof_e7e2f4e39e (PartOf massachusetts_institute_of_technology cambridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "martin luther king jr s birthday is part of january", "pln": ["(: cnet_partof_ed3412018f (PartOf martin_luther_king_jr_s_birthday january) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "martingale is part of harness", "pln": ["(: cnet_partof_e430f09119 (PartOf martingale harness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "martinique is part of windward island", "pln": ["(: cnet_partof_8b7d469b51 (PartOf martinique windward_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "martinma is part of november", "pln": ["(: cnet_partof_1cabcec59b (PartOf martinma november) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "maryland is part of mid atlantic state", "pln": ["(: cnet_partof_63275e77c1 (PartOf maryland mid_atlantic_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "maryland is part of south", "pln": ["(: cnet_partof_669a9862b9 (PartOf maryland south) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "maryland is part of united state", "pln": ["(: cnet_partof_a401f8f98a (PartOf maryland united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "maseru is part of lesotho", "pln": ["(: cnet_partof_d034812368 (PartOf maseru lesotho) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mashhad is part of iran", "pln": ["(: cnet_partof_ad9f85da1d (PartOf mashhad iran) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mason city is part of iowa", "pln": ["(: cnet_partof_7a19d83f48 (PartOf mason_city iowa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "masonry is part of construction", "pln": ["(: cnet_partof_005a4a307a (PartOf masonry construction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mass is part of high mass", "pln": ["(: cnet_partof_1c1865a8cf (PartOf mass high_mass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "massachusett is part of new england", "pln": ["(: cnet_partof_1da622da70 (PartOf massachusett new_england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "massachusett is part of united state", "pln": ["(: cnet_partof_669a1d8d64 (PartOf massachusett united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "massachusett bay is part of atlantic", "pln": ["(: cnet_partof_48741c88b1 (PartOf massachusett_bay atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "massachusett institute of technology is part of cambridge", "pln": ["(: cnet_partof_bc5f9ffe82 (PartOf massachusett_institute_of_technology cambridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "massawa is part of eritrea", "pln": ["(: cnet_partof_0a52d348e2 (PartOf massawa eritrea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "masse is part of billiard", "pln": ["(: cnet_partof_182064054e (PartOf masse billiard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "masse is part of pool", "pln": ["(: cnet_partof_0f5dab4cbb (PartOf masse pool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "massif is part of range", "pln": ["(: cnet_partof_107f53636c (PartOf massif range) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "massif central is part of france", "pln": ["(: cnet_partof_a8a1992847 (PartOf massif_central france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mast is part of sailing vessel", "pln": ["(: cnet_partof_6cde4da2bb (PartOf mast sailing_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mast cell is part of connective tissue", "pln": ["(: cnet_partof_a2689c67ad (PartOf mast_cell connective_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "masthead is part of mast", "pln": ["(: cnet_partof_8567fe6dfe (PartOf masthead mast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mastoid is part of temporal bone", "pln": ["(: cnet_partof_93d362131f (PartOf mastoid temporal_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mastoidale is part of mastoid", "pln": ["(: cnet_partof_99b12b7365 (PartOf mastoidale mastoid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "masturbation is part of people s sexual repertoire", "pln": ["(: cnet_partof_1e93a04f49 (PartOf masturbation people_s_sexual_repertoire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "matamoro is part of mexico", "pln": ["(: cnet_partof_78486b2f03 (PartOf matamoro mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "matchstick is part of match", "pln": ["(: cnet_partof_d416f89b74 (PartOf matchstick match) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mathematical notation is part of mathematical statement", "pln": ["(: cnet_partof_d49f027316 (PartOf mathematical_notation mathematical_statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "matrix is part of bone", "pln": ["(: cnet_partof_5525eb4794 (PartOf matrix bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "matrix is part of cartilage", "pln": ["(: cnet_partof_995035b1df (PartOf matrix cartilage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "matrix is part of connective tissue", "pln": ["(: cnet_partof_5093cfcb55 (PartOf matrix connective_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "matrix is part of nail", "pln": ["(: cnet_partof_cbe8e8c7e0 (PartOf matrix nail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "matterhorn is part of alp", "pln": ["(: cnet_partof_3338792a5f (PartOf matterhorn alp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "matterhorn is part of italy", "pln": ["(: cnet_partof_006cef66a9 (PartOf matterhorn italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "matterhorn is part of switzerland", "pln": ["(: cnet_partof_789316c825 (PartOf matterhorn switzerland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "matthew is part of new testament", "pln": ["(: cnet_partof_871e47e3ed (PartOf matthew new_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "mattress is part of bed", "pln": ["(: cnet_partof_7bd9f1f064 (PartOf mattress bed) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "maui is part of hawaiian island", "pln": ["(: cnet_partof_be6d881ca1 (PartOf maui hawaiian_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mauna kea is part of hawaii", "pln": ["(: cnet_partof_16a4cd06de (PartOf mauna_kea hawaii) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mauna loa is part of hawaii", "pln": ["(: cnet_partof_5ad551dd73 (PartOf mauna_loa hawaii) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mauritania is part of africa", "pln": ["(: cnet_partof_84f7be9c66 (PartOf mauritania africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mauritius is part of indian ocean", "pln": ["(: cnet_partof_c3baae3710 (PartOf mauritius indian_ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mauritius is part of mauritius", "pln": ["(: cnet_partof_4817c63d8f (PartOf mauritius mauritius) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "maxwell is part of weber", "pln": ["(: cnet_partof_ef091df20e (PartOf maxwell weber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "may is part of gregorian calendar", "pln": ["(: cnet_partof_b5a54bf013 (PartOf may gregorian_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "may apple is part of mayapple", "pln": ["(: cnet_partof_3406774af9 (PartOf may_apple mayapple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "may day is part of may", "pln": ["(: cnet_partof_cf8c9ecc34 (PartOf may_day may) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mayenne is part of pay de la loire", "pln": ["(: cnet_partof_672369f0f3 (PartOf mayenne pay_de_la_loire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mazar i sharif is part of afghanistan", "pln": ["(: cnet_partof_f515a26db9 (PartOf mazar_i_sharif afghanistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mazatlan is part of mexico", "pln": ["(: cnet_partof_b2f7b67659 (PartOf mazatlan mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mb is part of gb", "pln": ["(: cnet_partof_b48c4228d5 (PartOf mb gb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mbabane is part of swaziland", "pln": ["(: cnet_partof_9afd8a9166 (PartOf mbabane swaziland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mbeya is part of tanzania", "pln": ["(: cnet_partof_c856249b49 (PartOf mbeya tanzania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mcalester is part of oklahoma", "pln": ["(: cnet_partof_c5940249ac (PartOf mcalester oklahoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mcallen is part of texa", "pln": ["(: cnet_partof_d6bd678807 (PartOf mcallen texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mckinley is part of alaska", "pln": ["(: cnet_partof_534caa6d58 (PartOf mckinley alaska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mckinley is part of alaska range", "pln": ["(: cnet_partof_9e61fb9b1b (PartOf mckinley alaska_range) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "meander is part of stream", "pln": ["(: cnet_partof_933cd583ed (PartOf meander stream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mebibit is part of gibibit", "pln": ["(: cnet_partof_cfe5b8b5ce (PartOf mebibit gibibit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mecca is part of hejaz", "pln": ["(: cnet_partof_1d3daee723 (PartOf mecca hejaz) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mecca is part of saudi arabia", "pln": ["(: cnet_partof_f1ef382949 (PartOf mecca saudi_arabia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "medan is part of sumatra", "pln": ["(: cnet_partof_c756499992 (PartOf medan sumatra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "medellin is part of colombia", "pln": ["(: cnet_partof_d07a7e02ed (PartOf medellin colombia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "medford is part of massachusett", "pln": ["(: cnet_partof_8ec31bcaee (PartOf medford massachusett) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "medford is part of oregon", "pln": ["(: cnet_partof_894ef996c4 (PartOf medford oregon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "media lab is part of mit", "pln": ["(: cnet_partof_78a784ac41 (PartOf media_lab mit) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "medial condyle is part of femur", "pln": ["(: cnet_partof_cb83a4a23d (PartOf medial_condyle femur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mediastinum is part of chest cavity", "pln": ["(: cnet_partof_87f18c740c (PartOf mediastinum chest_cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "medical center is part of city", "pln": ["(: cnet_partof_bc2ffa4d7d (PartOf medical_center city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "medical diagnosis is part of medical care", "pln": ["(: cnet_partof_85c36c86b8 (PartOf medical_diagnosis medical_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "medina is part of hejaz", "pln": ["(: cnet_partof_8e3dca77a8 (PartOf medina hejaz) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "medina is part of saudi arabia", "pln": ["(: cnet_partof_1b7cf843f5 (PartOf medina saudi_arabia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "medium frequency is part of electromagnetic spectrum", "pln": ["(: cnet_partof_3e4b72fc1c (PartOf medium_frequency electromagnetic_spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "medlar is part of medlar", "pln": ["(: cnet_partof_ab96027adf (PartOf medlar medlar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "medlar is part of wild medlar", "pln": ["(: cnet_partof_75432e46ac (PartOf medlar wild_medlar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "medulla oblongata is part of brainstem", "pln": ["(: cnet_partof_d3d5258906 (PartOf medulla_oblongata brainstem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "medullary sheath is part of medullated nerve fiber", "pln": ["(: cnet_partof_00222057d0 (PartOf medullary_sheath medullated_nerve_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "megabit is part of gigabit", "pln": ["(: cnet_partof_37956af8e4 (PartOf megabit gigabit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "megabyte is part of gigabyte", "pln": ["(: cnet_partof_c1768d0f60 (PartOf megabyte gigabyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "megaflop is part of teraflop", "pln": ["(: cnet_partof_748ff76237 (PartOf megaflop teraflop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mekong is part of cambodia", "pln": ["(: cnet_partof_2e64c8f2cc (PartOf mekong cambodia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "mekong is part of china", "pln": ["(: cnet_partof_f99c37bfb8 (PartOf mekong china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mekong is part of lao", "pln": ["(: cnet_partof_44dde4f0a0 (PartOf mekong lao) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mekong is part of myanmar", "pln": ["(: cnet_partof_f9ab1ff1e4 (PartOf mekong myanmar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mekong is part of thailand", "pln": ["(: cnet_partof_365390f5fa (PartOf mekong thailand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "melanesia is part of austronesia", "pln": ["(: cnet_partof_373d304df6 (PartOf melanesia austronesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "melanesia is part of oceania", "pln": ["(: cnet_partof_848c53fc5e (PartOf melanesia oceania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "melbourne is part of florida", "pln": ["(: cnet_partof_f93ba9c160 (PartOf melbourne florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "melbourne is part of victoria", "pln": ["(: cnet_partof_77297cc1c5 (PartOf melbourne victoria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "melon is part of melon", "pln": ["(: cnet_partof_f68e154786 (PartOf melon melon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "membranous labyrinth is part of inner ear", "pln": ["(: cnet_partof_ea1f64e947 (PartOf membranous_labyrinth inner_ear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "memorial day is part of may", "pln": ["(: cnet_partof_ead055217e (PartOf memorial_day may) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "memory is part of computer", "pln": ["(: cnet_partof_649b3d3661 (PartOf memory computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "memphis is part of egypt", "pln": ["(: cnet_partof_c640c0ead2 (PartOf memphis egypt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "memphis is part of tennessee", "pln": ["(: cnet_partof_f9fab8f449 (PartOf memphis tennessee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "menai strait is part of wale", "pln": ["(: cnet_partof_3ea7dae273 (PartOf menai_strait wale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mendenhall glacier is part of alaska", "pln": ["(: cnet_partof_385817c399 (PartOf mendenhall_glacier alaska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "menopause is part of middle age", "pln": ["(: cnet_partof_78b304508f (PartOf menopause middle_age) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "menorrhea is part of adult female body", "pln": ["(: cnet_partof_926f514dc4 (PartOf menorrhea adult_female_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "menstrual phase is part of menstrual cycle", "pln": ["(: cnet_partof_be2058dffb (PartOf menstrual_phase menstrual_cycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mentum is part of insect", "pln": ["(: cnet_partof_18f92a3b72 (PartOf mentum insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mentum is part of orchid", "pln": ["(: cnet_partof_11fbd0f538 (PartOf mentum orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mercedario is part of ande", "pln": ["(: cnet_partof_92fb7382d7 (PartOf mercedario ande) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mercedario is part of argentina", "pln": ["(: cnet_partof_4129f7a20e (PartOf mercedario argentina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "merchandise is part of mercantile establishment", "pln": ["(: cnet_partof_13be6751bf (PartOf merchandise mercantile_establishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mercury fulminate is part of blasting cap", "pln": ["(: cnet_partof_c4afacbc6e (PartOf mercury_fulminate blasting_cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mercury fulminate is part of percussion cap", "pln": ["(: cnet_partof_95d8e517ee (PartOf mercury_fulminate percussion_cap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "merida is part of yucatan", "pln": ["(: cnet_partof_e684948360 (PartOf merida yucatan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "meridian is part of mississippi", "pln": ["(: cnet_partof_60c7dc5de9 (PartOf meridian mississippi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "merlon is part of battlement", "pln": ["(: cnet_partof_1dc5699351 (PartOf merlon battlement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "merrimack is part of massachusett", "pln": ["(: cnet_partof_75a5cf4397 (PartOf merrimack massachusett) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "merrimack is part of new hampshire", "pln": ["(: cnet_partof_950d8ce5cb (PartOf merrimack new_hampshire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mesa is part of arizona", "pln": ["(: cnet_partof_72427c87e3 (PartOf mesa arizona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mesa verde national park is part of colorado", "pln": ["(: cnet_partof_48d820426b (PartOf mesa_verde_national_park colorado) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mesabi range is part of minnesota", "pln": ["(: cnet_partof_921d033d86 (PartOf mesabi_range minnesota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mesasamkranti is part of magh", "pln": ["(: cnet_partof_d0fb0c9c3d (PartOf mesasamkranti magh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mescal button is part of mescal", "pln": ["(: cnet_partof_4e23cec9e3 (PartOf mescal_button mescal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mesh is part of inch", "pln": ["(: cnet_partof_433540857f (PartOf mesh inch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mesoamerica is part of north america", "pln": ["(: cnet_partof_7df5df6e20 (PartOf mesoamerica north_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mesolithic age is part of stone age", "pln": ["(: cnet_partof_649923fab3 (PartOf mesolithic_age stone_age) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mesopotamia is part of iraq", "pln": ["(: cnet_partof_932088f541 (PartOf mesopotamia iraq) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mesosphere is part of atmosphere", "pln": ["(: cnet_partof_5f39c74576 (PartOf mesosphere atmosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "messidor is part of revolutionary calendar", "pln": ["(: cnet_partof_6d48e2c703 (PartOf messidor revolutionary_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "messina is part of sicily", "pln": ["(: cnet_partof_ae8f7c891f (PartOf messina sicily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "metacarpal is part of metacarpus", "pln": ["(: cnet_partof_0c9e378fec (PartOf metacarpal metacarpus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "metacarpal artery is part of hand", "pln": ["(: cnet_partof_eb0b3c2c76 (PartOf metacarpal_artery hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "metacarpal vein is part of hand", "pln": ["(: cnet_partof_768b06c506 (PartOf metacarpal_vein hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "metacarpus is part of hand", "pln": ["(: cnet_partof_3e766c00ad (PartOf metacarpus hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "metaphase is part of meiosis", "pln": ["(: cnet_partof_0147cfe27c (PartOf metaphase meiosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "metaphase is part of mitosis", "pln": ["(: cnet_partof_5b33362989 (PartOf metaphase mitosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "metaphysis is part of long bone", "pln": ["(: cnet_partof_f4443bb9ac (PartOf metaphysis long_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "metatarsal is part of metatarsus", "pln": ["(: cnet_partof_4195eae21c (PartOf metatarsal metatarsus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "metatarsal artery is part of foot", "pln": ["(: cnet_partof_2ba9d2276b (PartOf metatarsal_artery foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "metatarsal vein is part of foot", "pln": ["(: cnet_partof_67740a1cf6 (PartOf metatarsal_vein foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "metatarsus is part of vertebrate foot", "pln": ["(: cnet_partof_c85b28be28 (PartOf metatarsus vertebrate_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "metaurus river is part of punic war", "pln": ["(: cnet_partof_d9f70e4e28 (PartOf metaurus_river punic_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "meteor is part of meteor shower", "pln": ["(: cnet_partof_4190ecc86c (PartOf meteor meteor_shower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "meter is part of decameter", "pln": ["(: cnet_partof_59ed1ae43e (PartOf meter decameter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "methodist denomination is part of methodist church", "pln": ["(: cnet_partof_3b51c9919c (PartOf methodist_denomination methodist_church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "metopion is part of frontal bone", "pln": ["(: cnet_partof_b7dc4a1df0 (PartOf metopion frontal_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "metric weight unit is part of metric system", "pln": ["(: cnet_partof_86bfc8bdf1 (PartOf metric_weight_unit metric_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "meuse is part of world war i", "pln": ["(: cnet_partof_9625e2a1ff (PartOf meuse world_war_i) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "meuse is part of belgium", "pln": ["(: cnet_partof_c7b59cd7dd (PartOf meuse belgium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "meuse is part of france", "pln": ["(: cnet_partof_a80acdced8 (PartOf meuse france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "meuse is part of netherland", "pln": ["(: cnet_partof_ced1e8acb6 (PartOf meuse netherland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mexicali is part of mexico", "pln": ["(: cnet_partof_9a129dca48 (PartOf mexicali mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mexico is part of mesoamerica", "pln": ["(: cnet_partof_33acb5d070 (PartOf mexico mesoamerica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mexico city is part of mexico", "pln": ["(: cnet_partof_3a18e03c48 (PartOf mexico_city mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mezereum is part of mezereon", "pln": ["(: cnet_partof_fd92b34c00 (PartOf mezereum mezereon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mezuzah is part of deuteronomy", "pln": ["(: cnet_partof_90c418ca02 (PartOf mezuzah deuteronomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "miami is part of florida", "pln": ["(: cnet_partof_e00a06882f (PartOf miami florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "miami beach is part of florida", "pln": ["(: cnet_partof_ab551e6eb6 (PartOf miami_beach florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "micah is part of old testament", "pln": ["(: cnet_partof_5b85ffd8fd (PartOf micah old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "micah is part of prophet", "pln": ["(: cnet_partof_093da26f76 (PartOf micah prophet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "michaelma is part of september", "pln": ["(: cnet_partof_03d965959c (PartOf michaelma september) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "michigan is part of midwest", "pln": ["(: cnet_partof_23d88c9717 (PartOf michigan midwest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "michigan is part of united state", "pln": ["(: cnet_partof_791594fd8a (PartOf michigan united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "microcytosis is part of microcytic anemia", "pln": ["(: cnet_partof_60b24f4674 (PartOf microcytosis microcytic_anemia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "microfarad is part of millifarad", "pln": ["(: cnet_partof_3100c16490 (PartOf microfarad millifarad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "microgauss is part of gauss", "pln": ["(: cnet_partof_98414302a2 (PartOf microgauss gauss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "microgliacyte is part of microglia", "pln": ["(: cnet_partof_6458b7c413 (PartOf microgliacyte microglia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "microgram is part of milligram", "pln": ["(: cnet_partof_0b6746b675 (PartOf microgram milligram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "micron is part of millimeter", "pln": ["(: cnet_partof_1ee9e00a24 (PartOf micron millimeter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "micronesia is part of austronesia", "pln": ["(: cnet_partof_a730290111 (PartOf micronesia austronesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "micronesia is part of micronesia", "pln": ["(: cnet_partof_5604ab64fa (PartOf micronesia micronesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "micronesia is part of oceania", "pln": ["(: cnet_partof_1480318b21 (PartOf micronesia oceania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "microprocessor is part of personal computer", "pln": ["(: cnet_partof_6fc7e4049b (PartOf microprocessor personal_computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "micropyle is part of ovule", "pln": ["(: cnet_partof_80d3fdac11 (PartOf micropyle ovule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "microradian is part of milliradian", "pln": ["(: cnet_partof_63f40392d5 (PartOf microradian milliradian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "microsecond is part of millisecond", "pln": ["(: cnet_partof_4c985c6295 (PartOf microsecond millisecond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "microsome is part of cytoplasm", "pln": ["(: cnet_partof_ffd86c998b (PartOf microsome cytoplasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "microvolt is part of volt", "pln": ["(: cnet_partof_2f13d30e8e (PartOf microvolt volt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "microwave is part of electromagnetic spectrum", "pln": ["(: cnet_partof_f5ed82dafb (PartOf microwave electromagnetic_spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "microwave spectrum is part of electromagnetic spectrum", "pln": ["(: cnet_partof_09ebd873bf (PartOf microwave_spectrum electromagnetic_spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mid april is part of april", "pln": ["(: cnet_partof_4bcd279cd6 (PartOf mid_april april) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mid atlantic ridge is part of atlantic", "pln": ["(: cnet_partof_0e6e8aa35a (PartOf mid_atlantic_ridge atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mid atlantic state is part of united state", "pln": ["(: cnet_partof_b7c2b546ac (PartOf mid_atlantic_state united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mid august is part of august", "pln": ["(: cnet_partof_b7744fa76b (PartOf mid_august august) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mid december is part of december", "pln": ["(: cnet_partof_9be203246a (PartOf mid_december december) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mid february is part of february", "pln": ["(: cnet_partof_e67940e6b2 (PartOf mid_february february) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mid january is part of january", "pln": ["(: cnet_partof_ab8e4c4ac8 (PartOf mid_january january) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mid july is part of july", "pln": ["(: cnet_partof_65227e2dc7 (PartOf mid_july july) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mid june is part of june", "pln": ["(: cnet_partof_b9b451bb0b (PartOf mid_june june) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "mid march is part of march", "pln": ["(: cnet_partof_e69f93844e (PartOf mid_march march) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mid may is part of may", "pln": ["(: cnet_partof_f136218620 (PartOf mid_may may) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mid november is part of november", "pln": ["(: cnet_partof_c86af7adb3 (PartOf mid_november november) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mid october is part of october", "pln": ["(: cnet_partof_8df54397a0 (PartOf mid_october october) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "mid september is part of september", "pln": ["(: cnet_partof_ec22b8abde (PartOf mid_september september) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "midafternoon is part of afternoon", "pln": ["(: cnet_partof_a26f8c8216 (PartOf midafternoon afternoon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "midbrain is part of brain", "pln": ["(: cnet_partof_062c0b9a9c (PartOf midbrain brain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "middle is part of torso", "pln": ["(: cnet_partof_74566642a8 (PartOf middle torso) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "middle age is part of adulthood", "pln": ["(: cnet_partof_4ce8bde959 (PartOf middle_age adulthood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "middle age is part of history", "pln": ["(: cnet_partof_ea195189cc (PartOf middle_age history) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "middle ear is part of auditory apparatus", "pln": ["(: cnet_partof_e0270ba64f (PartOf middle_ear auditory_apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "middle paleolithic is part of paleolithic age", "pln": ["(: cnet_partof_ab4c423439 (PartOf middle_paleolithic paleolithic_age) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "middle term is part of major premise", "pln": ["(: cnet_partof_880e2e722a (PartOf middle_term major_premise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "middle term is part of minor premise", "pln": ["(: cnet_partof_1091429dc0 (PartOf middle_term minor_premise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "midfield is part of playing field", "pln": ["(: cnet_partof_041b49ae4c (PartOf midfield playing_field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "midi is part of france", "pln": ["(: cnet_partof_04b2ab7b78 (PartOf midi france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "midi pyrenee is part of france", "pln": ["(: cnet_partof_4a02e83e6f (PartOf midi_pyrenee france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "midland is part of country", "pln": ["(: cnet_partof_dee82b01d5 (PartOf midland country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "midland is part of texa", "pln": ["(: cnet_partof_0e2ea274ea (PartOf midland texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "midnight is part of night", "pln": ["(: cnet_partof_c44a0c17ea (PartOf midnight night) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "midstream is part of stream", "pln": ["(: cnet_partof_bdf489895b (PartOf midstream stream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "midsummer day is part of june", "pln": ["(: cnet_partof_ec8cac3db3 (PartOf midsummer_day june) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "midsummer eve is part of june", "pln": ["(: cnet_partof_16c88a95fc (PartOf midsummer_eve june) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "midterm is part of gestation", "pln": ["(: cnet_partof_7c8cb5c6bf (PartOf midterm gestation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "midterm is part of term", "pln": ["(: cnet_partof_e9ba061730 (PartOf midterm term) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "midway is part of world war ii", "pln": ["(: cnet_partof_c597e45573 (PartOf midway world_war_ii) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "midway is part of carnival", "pln": ["(: cnet_partof_0251f5dbd0 (PartOf midway carnival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "midway island is part of hawaiian island", "pln": ["(: cnet_partof_ec01638c87 (PartOf midway_island hawaiian_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "midweek is part of week", "pln": ["(: cnet_partof_3d5c510c20 (PartOf midweek week) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "midwest is part of united state", "pln": ["(: cnet_partof_7b1761c050 (PartOf midwest united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "midwinter is part of winter", "pln": ["(: cnet_partof_a4ce35ad9f (PartOf midwinter winter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mihrab is part of mosque", "pln": ["(: cnet_partof_0312d4e206 (PartOf mihrab mosque) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "mihrab is part of prayer rug", "pln": ["(: cnet_partof_a5f3324789 (PartOf mihrab prayer_rug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mil is part of cypriot pound", "pln": ["(: cnet_partof_ae88bb914e (PartOf mil cypriot_pound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mil is part of inch", "pln": ["(: cnet_partof_e16c49d76d (PartOf mil inch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "milan is part of lombardy", "pln": ["(: cnet_partof_8057c2c502 (PartOf milan lombardy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mile is part of league", "pln": ["(: cnet_partof_eb9d113f0c (PartOf mile league) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "military drill is part of military training", "pln": ["(: cnet_partof_58f9985014 (PartOf military_drill military_training) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "military quarter is part of military post", "pln": ["(: cnet_partof_3a6aa49615 (PartOf military_quarter military_post) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "milk is part of montana", "pln": ["(: cnet_partof_3e8ab765f7 (PartOf milk montana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "milliampere is part of ampere", "pln": ["(: cnet_partof_c470901f68 (PartOf milliampere ampere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "millibar is part of bar", "pln": ["(: cnet_partof_31d4b71798 (PartOf millibar bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "millicurie is part of curie", "pln": ["(: cnet_partof_6336dd7401 (PartOf millicurie curie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "millifarad is part of farad", "pln": ["(: cnet_partof_a40bf132ff (PartOf millifarad farad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "milligram is part of grain", "pln": ["(: cnet_partof_e978d9e418 (PartOf milligram grain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "millihenry is part of henry", "pln": ["(: cnet_partof_91b95b8991 (PartOf millihenry henry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "milliliter is part of centiliter", "pln": ["(: cnet_partof_d0caed795e (PartOf milliliter centiliter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "millime is part of tunisian dirham", "pln": ["(: cnet_partof_5aa947036e (PartOf millime tunisian_dirham) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "millimeter is part of centimeter", "pln": ["(: cnet_partof_6526db69de (PartOf millimeter centimeter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "milliradian is part of radian", "pln": ["(: cnet_partof_ced8a32eb4 (PartOf milliradian radian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "millisecond is part of second", "pln": ["(: cnet_partof_6687b56442 (PartOf millisecond second) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "millivolt is part of volt", "pln": ["(: cnet_partof_eae5f579af (PartOf millivolt volt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "milliwatt is part of watt", "pln": ["(: cnet_partof_b8836ed445 (PartOf milliwatt watt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "millstone is part of gristmill", "pln": ["(: cnet_partof_19f11320b4 (PartOf millstone gristmill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "millwheel is part of water mill", "pln": ["(: cnet_partof_337f42a638 (PartOf millwheel water_mill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "milt is part of fish", "pln": ["(: cnet_partof_6524407e3e (PartOf milt fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "milwaukee is part of wisconsin", "pln": ["(: cnet_partof_c94a9d53bd (PartOf milwaukee wisconsin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mimesis is part of hysteria", "pln": ["(: cnet_partof_857f0653ce (PartOf mimesis hysteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "minamata bay is part of kyushu", "pln": ["(: cnet_partof_b9f89ee265 (PartOf minamata_bay kyushu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "minaret is part of mosque", "pln": ["(: cnet_partof_d5362dd41f (PartOf minaret mosque) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "minato ohashi bridge is part of osaka", "pln": ["(: cnet_partof_c1bf157f35 (PartOf minato_ohashi_bridge osaka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "mississippi is part of gulf states", "pln": ["(: cnet_partof_e075989533 (PartOf mississippi gulf_states) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mindanao is part of philippine", "pln": ["(: cnet_partof_71068fd339 (PartOf mindanao philippine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "minden is part of seven year war", "pln": ["(: cnet_partof_7094b1a5e9 (PartOf minden seven_year_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mindoro is part of philippine", "pln": ["(: cnet_partof_f64f786837 (PartOf mindoro philippine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mine is part of colliery", "pln": ["(: cnet_partof_3c76129073 (PartOf mine colliery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mineshaft is part of mine", "pln": ["(: cnet_partof_e5ebac7f42 (PartOf mineshaft mine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "minim is part of fluidram", "pln": ["(: cnet_partof_640b336c91 (PartOf minim fluidram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "minister is part of cabinet", "pln": ["(: cnet_partof_041f2ae42f (PartOf minister cabinet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "minneapolis is part of minnesota", "pln": ["(: cnet_partof_c44e9bdabd (PartOf minneapolis minnesota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "minnesota is part of midwest", "pln": ["(: cnet_partof_75eb301c62 (PartOf minnesota midwest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "minnesota is part of united state", "pln": ["(: cnet_partof_cee5920ef0 (PartOf minnesota united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "minor premise is part of syllogism", "pln": ["(: cnet_partof_7e3c2ad47b (PartOf minor_premise syllogism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "minor term is part of conclusion", "pln": ["(: cnet_partof_90a5f2cfdd (PartOf minor_term conclusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "minor term is part of minor premise", "pln": ["(: cnet_partof_78ee9a7609 (PartOf minor_term minor_premise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "minsk is part of belarus", "pln": ["(: cnet_partof_f3140e80c9 (PartOf minsk belarus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "minster is part of monastery", "pln": ["(: cnet_partof_d02fc86656 (PartOf minster monastery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mint is part of mint", "pln": ["(: cnet_partof_cbea58535e (PartOf mint mint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "minute is part of hour", "pln": ["(: cnet_partof_cd918c3928 (PartOf minute hour) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "minute is part of degree", "pln": ["(: cnet_partof_d38d826a24 (PartOf minute degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "minute is part of minute book", "pln": ["(: cnet_partof_f8e2288c9f (PartOf minute minute_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "miocene is part of tertiary", "pln": ["(: cnet_partof_a45f67ee2a (PartOf miocene tertiary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "miscue is part of billiard", "pln": ["(: cnet_partof_b5f8b93750 (PartOf miscue billiard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "miscue is part of pool", "pln": ["(: cnet_partof_8125251b55 (PartOf miscue pool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mishna is part of talmud", "pln": ["(: cnet_partof_d269adfb8f (PartOf mishna talmud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mississippi is part of deep south", "pln": ["(: cnet_partof_594ec5b300 (PartOf mississippi deep_south) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mississippi is part of gulf state", "pln": ["(: cnet_partof_3cd0fa2500 (PartOf mississippi gulf_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mississippi is part of south", "pln": ["(: cnet_partof_d0f8b72a42 (PartOf mississippi south) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mississippi is part of united state", "pln": ["(: cnet_partof_c92c5bf9ef (PartOf mississippi united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mississippian is part of carboniferous", "pln": ["(: cnet_partof_5e1498b7fb (PartOf mississippian carboniferous) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "missoula is part of montana", "pln": ["(: cnet_partof_0fc4f203b8 (PartOf missoula montana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "missouri is part of united state", "pln": ["(: cnet_partof_2b1fb6a19e (PartOf missouri united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "missouri is part of midwest", "pln": ["(: cnet_partof_8b4a39dff9 (PartOf missouri midwest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mixer is part of mixed drink", "pln": ["(: cnet_partof_ae11c90646 (PartOf mixer mixed_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "mobile is part of alabama", "pln": ["(: cnet_partof_5fcf981fce (PartOf mobile alabama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mobile bay is part of alabama", "pln": ["(: cnet_partof_345b106f40 (PartOf mobile_bay alabama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mobile bay is part of gulf of mexico", "pln": ["(: cnet_partof_a68032ebb2 (PartOf mobile_bay gulf_of_mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "modality is part of physical therapy", "pln": ["(: cnet_partof_887dca14cb (PartOf modality physical_therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "moderate breeze is part of beaufort scale", "pln": ["(: cnet_partof_688e7ac88a (PartOf moderate_breeze beaufort_scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "moderate gale is part of beaufort scale", "pln": ["(: cnet_partof_4d27adb769 (PartOf moderate_gale beaufort_scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "moderator is part of nuclear reactor", "pln": ["(: cnet_partof_98c4d5b70e (PartOf moderator nuclear_reactor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "modifier is part of phrase", "pln": ["(: cnet_partof_665c88b59e (PartOf modifier phrase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "modiolus is part of cochlea", "pln": ["(: cnet_partof_6a7d7b581c (PartOf modiolus cochlea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "module is part of spacecraft", "pln": ["(: cnet_partof_1c26a208a9 (PartOf module spacecraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "module is part of system", "pln": ["(: cnet_partof_a97ebae6cb (PartOf module system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mogadishu is part of somalia", "pln": ["(: cnet_partof_80d18bcac4 (PartOf mogadishu somalia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mohawk river is part of new york", "pln": ["(: cnet_partof_75ec78e5b0 (PartOf mohawk_river new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mojave is part of arizona", "pln": ["(: cnet_partof_9af12211ed (PartOf mojave arizona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mojave is part of california", "pln": ["(: cnet_partof_38e82fb2e9 (PartOf mojave california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "moldboard is part of moldboard plow", "pln": ["(: cnet_partof_3c7b56653a (PartOf moldboard moldboard_plow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "molding is part of picture frame", "pln": ["(: cnet_partof_cb209767aa (PartOf molding picture_frame) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "moldova is part of europe", "pln": ["(: cnet_partof_b4cda1637e (PartOf moldova europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "moline is part of illinois", "pln": ["(: cnet_partof_76a9e75703 (PartOf moline illinois) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "molise is part of italy", "pln": ["(: cnet_partof_25b8db364d (PartOf molise italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "molokai is part of hawaiian island", "pln": ["(: cnet_partof_a1ffab0a6d (PartOf molokai hawaiian_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "molucca is part of indonesia", "pln": ["(: cnet_partof_8ed2e3a2fe (PartOf molucca indonesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mombasa is part of kenya", "pln": ["(: cnet_partof_c2c7af1dd5 (PartOf mombasa kenya) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "mombin is part of mombin", "pln": ["(: cnet_partof_03a9532eba (PartOf mombin mombin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "moment of couple is part of couple", "pln": ["(: cnet_partof_a414d0ba6e (PartOf moment_of_couple couple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "moment of truth is part of bullfighting", "pln": ["(: cnet_partof_a9613b1ba4 (PartOf moment_of_truth bullfighting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "monaco is part of europe", "pln": ["(: cnet_partof_cb491b08a2 (PartOf monaco europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "monaco ville is part of monaco", "pln": ["(: cnet_partof_a22449e2b8 (PartOf monaco_ville monaco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "money is part of money supply", "pln": ["(: cnet_partof_201a7ac724 (PartOf money money_supply) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mongo is part of tugrik", "pln": ["(: cnet_partof_0b8f48eae9 (PartOf mongo tugrik) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mongolia is part of asia", "pln": ["(: cnet_partof_6fa236f7bc (PartOf mongolia asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mongolia is part of mongolia", "pln": ["(: cnet_partof_b4e9de4432 (PartOf mongolia mongolia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "monitor is part of computer", "pln": ["(: cnet_partof_8b1e867d1a (PartOf monitor computer) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "monitor is part of computer system", "pln": ["(: cnet_partof_290ab0290d (PartOf monitor computer_system) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "monitor is part of television", "pln": ["(: cnet_partof_740d355c28 (PartOf monitor television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "monkfish is part of goosefish", "pln": ["(: cnet_partof_6416e63677 (PartOf monkfish goosefish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "monmouth court house is part of american revolution", "pln": ["(: cnet_partof_ef26c77b16 (PartOf monmouth_court_house american_revolution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "monongahela is part of pennsylvania", "pln": ["(: cnet_partof_665dc9520e (PartOf monongahela pennsylvania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "monongahela is part of west virginia", "pln": ["(: cnet_partof_a6f1144d07 (PartOf monongahela west_virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mononuclear phagocyte system is part of reticuloendothelial system", "pln": ["(: cnet_partof_3dcba3100c (PartOf mononuclear_phagocyte_system reticuloendothelial_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "monroe is part of louisiana", "pln": ["(: cnet_partof_0c3ec261c7 (PartOf monroe louisiana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "monroe is part of michigan", "pln": ["(: cnet_partof_14776344c2 (PartOf monroe michigan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "monrovia is part of liberia", "pln": ["(: cnet_partof_dcd41e45f2 (PartOf monrovia liberia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "mons is part of vulva", "pln": ["(: cnet_partof_98d2bc01bc (PartOf mons vulva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mon is part of pube", "pln": ["(: cnet_partof_bd5ca2ace3 (PartOf mon pube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mon is part of vulva", "pln": ["(: cnet_partof_d5de1f864c (PartOf mon vulva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mont blanc is part of alp", "pln": ["(: cnet_partof_7a2af0725d (PartOf mont_blanc alp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "mont blanc is part of france", "pln": ["(: cnet_partof_b5e97ce817 (PartOf mont_blanc france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mont blanc is part of italy", "pln": ["(: cnet_partof_ce07c78d9b (PartOf mont_blanc italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "montana is part of united state", "pln": ["(: cnet_partof_0ac5d2908f (PartOf montana united_state) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "monte carlo is part of monaco", "pln": ["(: cnet_partof_c18221b26c (PartOf monte_carlo monaco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "montego bay is part of jamaica", "pln": ["(: cnet_partof_651a958ff1 (PartOf montego_bay jamaica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "montenegro is part of balkan peninsula", "pln": ["(: cnet_partof_662addaaa2 (PartOf montenegro balkan_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "montenegro is part of yugoslavia", "pln": ["(: cnet_partof_13702cc8d0 (PartOf montenegro yugoslavia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "monterey is part of california", "pln": ["(: cnet_partof_1b23592638 (PartOf monterey california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "monterey bay is part of california", "pln": ["(: cnet_partof_fdc40e5f49 (PartOf monterey_bay california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "monterrey is part of mexico", "pln": ["(: cnet_partof_78518db7ca (PartOf monterrey mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "montevideo is part of uruguay", "pln": ["(: cnet_partof_a513b20448 (PartOf montevideo uruguay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "montgomery is part of alabama", "pln": ["(: cnet_partof_1879232d08 (PartOf montgomery alabama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "month is part of year", "pln": ["(: cnet_partof_26bd2f2198 (PartOf month year) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "montmartre is part of paris", "pln": ["(: cnet_partof_9f0d781030 (PartOf montmartre paris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "montpelier is part of vermont", "pln": ["(: cnet_partof_0c48defde0 (PartOf montpelier vermont) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "montreal is part of quebec", "pln": ["(: cnet_partof_df5ab6cc67 (PartOf montreal quebec) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "montserrat is part of west indy", "pln": ["(: cnet_partof_a6f953bc93 (PartOf montserrat west_indy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "moonbeam is part of moonlight", "pln": ["(: cnet_partof_27d5a227dd (PartOf moonbeam moonlight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mop handle is part of swab", "pln": ["(: cnet_partof_db82ba41d9 (PartOf mop_handle swab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "moraine is part of glacier", "pln": ["(: cnet_partof_527aa17a96 (PartOf moraine glacier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "moravia is part of czech republic", "pln": ["(: cnet_partof_d378ba09e7 (PartOf moravia czech_republic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "moreau river is part of south dakota", "pln": ["(: cnet_partof_c707341714 (PartOf moreau_river south_dakota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "morello is part of morello", "pln": ["(: cnet_partof_d0a3580738 (PartOf morello morello) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "moreton bay is part of australia", "pln": ["(: cnet_partof_ec6f55050a (PartOf moreton_bay australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "moreton bay is part of queensland", "pln": ["(: cnet_partof_05e556dec5 (PartOf moreton_bay queensland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "morgan city is part of louisiana", "pln": ["(: cnet_partof_be85ef9869 (PartOf morgan_city louisiana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "morgantown is part of kentucky", "pln": ["(: cnet_partof_5caacb3b77 (PartOf morgantown kentucky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "morgantown is part of west virginia", "pln": ["(: cnet_partof_90964d84d8 (PartOf morgantown west_virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mormon tabernacle is part of utah", "pln": ["(: cnet_partof_ce8410b6ff (PartOf mormon_tabernacle utah) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "morning is part of day", "pln": ["(: cnet_partof_e801145795 (PartOf morning day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "morning sickness is part of pregnancy", "pln": ["(: cnet_partof_e1e54026f1 (PartOf morning_sickness pregnancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "morocco is part of maghreb", "pln": ["(: cnet_partof_831c13dba4 (PartOf morocco maghreb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "moron is part of argentina", "pln": ["(: cnet_partof_115737b317 (PartOf moron argentina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "morristown is part of new jersey", "pln": ["(: cnet_partof_68e94dc1da (PartOf morristown new_jersey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mortarboard is part of academic costume", "pln": ["(: cnet_partof_3a1d944d16 (PartOf mortarboard academic_costume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mortise is part of mortise joint", "pln": ["(: cnet_partof_20d672ffdd (PartOf mortise mortise_joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mosaic is part of television camera", "pln": ["(: cnet_partof_1a27048b82 (PartOf mosaic television_camera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "moscow is part of russia", "pln": ["(: cnet_partof_ca1c2f5d82 (PartOf moscow russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mosul is part of iraq", "pln": ["(: cnet_partof_860d0e922d (PartOf mosul iraq) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "motel room is part of motel", "pln": ["(: cnet_partof_64404bcd55 (PartOf motel_room motel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "mother s day is part of may", "pln": ["(: cnet_partof_fe78a75be7 (PartOf mother_s_day may) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "motherboard is part of computer", "pln": ["(: cnet_partof_5528c31c0a (PartOf motherboard computer) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "motor neuron is part of motor nerve", "pln": ["(: cnet_partof_7ed14be71b (PartOf motor_neuron motor_nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mound is part of baseball diamond", "pln": ["(: cnet_partof_d6a841fa9a (PartOf mound baseball_diamond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mount bartle frere is part of queensland", "pln": ["(: cnet_partof_77f3097d1d (PartOf mount_bartle_frere queensland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mount carmel is part of israel", "pln": ["(: cnet_partof_e4fa4bb5e7 (PartOf mount_carmel israel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mount communism is part of tajikistan", "pln": ["(: cnet_partof_70044f64d7 (PartOf mount_communism tajikistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mount elbert is part of rocky", "pln": ["(: cnet_partof_5faee953b1 (PartOf mount_elbert rocky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mount rainier national park is part of washington", "pln": ["(: cnet_partof_970c7a3542 (PartOf mount_rainier_national_park washington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mount saint helen is part of cascade", "pln": ["(: cnet_partof_dad55db01c (PartOf mount_saint_helen cascade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mount saint helen is part of washington", "pln": ["(: cnet_partof_3edeee3967 (PartOf mount_saint_helen washington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "mount vernon is part of virginia", "pln": ["(: cnet_partof_13123c7b03 (PartOf mount_vernon virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mountain peak is part of mountain", "pln": ["(: cnet_partof_22af1a7e43 (PartOf mountain_peak mountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mountainside is part of mountain", "pln": ["(: cnet_partof_5b9d43950b (PartOf mountainside mountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mouse is part of computer", "pln": ["(: cnet_partof_8565cc80d2 (PartOf mouse computer) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mouse button is part of mouse", "pln": ["(: cnet_partof_df2b1ea651 (PartOf mouse_button mouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mouth is part of bottle", "pln": ["(: cnet_partof_4334c60b0c (PartOf mouth bottle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mouth is part of jar", "pln": ["(: cnet_partof_f3ea6d294f (PartOf mouth jar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mouth is part of face", "pln": ["(: cnet_partof_27a62cf1ea (PartOf mouth face) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mouth is part of mouth", "pln": ["(: cnet_partof_2a4771975a (PartOf mouth mouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mouth hole is part of ski mask", "pln": ["(: cnet_partof_3254bcb383 (PartOf mouth_hole ski_mask) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mouthpiece is part of cigarette holder", "pln": ["(: cnet_partof_d2fc22338b (PartOf mouthpiece cigarette_holder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mouthpiece is part of pipe", "pln": ["(: cnet_partof_584d2bee57 (PartOf mouthpiece pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mouthpiece is part of respirator", "pln": ["(: cnet_partof_5ae3895dbc (PartOf mouthpiece respirator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mouthpiece is part of telephone", "pln": ["(: cnet_partof_79d4dacb49 (PartOf mouthpiece telephone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mouthpiece is part of wind instrument", "pln": ["(: cnet_partof_6bb57079f9 (PartOf mouthpiece wind_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mouton is part of domestic sheep", "pln": ["(: cnet_partof_b700ef83a1 (PartOf mouton domestic_sheep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "movement is part of clock", "pln": ["(: cnet_partof_1657498b29 (PartOf movement clock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "movement is part of watch", "pln": ["(: cnet_partof_096eca43f1 (PartOf movement watch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "movement is part of sonata", "pln": ["(: cnet_partof_fe50a9967b (PartOf movement sonata) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "mozambique is part of africa", "pln": ["(: cnet_partof_12b2a4e51c (PartOf mozambique africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mozambique channel is part of indian ocean", "pln": ["(: cnet_partof_c4e23c9537 (PartOf mozambique_channel indian_ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mudguard is part of bicycle", "pln": ["(: cnet_partof_04620ab9c9 (PartOf mudguard bicycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mudguard is part of motorcycle", "pln": ["(: cnet_partof_5d1d12527a (PartOf mudguard motorcycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "muharram is part of islamic calendar", "pln": ["(: cnet_partof_558565b491 (PartOf muharram islamic_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "mukalla is part of yemen", "pln": ["(: cnet_partof_49ee699bff (PartOf mukalla yemen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "mulberry is part of mulberry", "pln": ["(: cnet_partof_83da906a0a (PartOf mulberry mulberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mull is part of inner hebride", "pln": ["(: cnet_partof_589a328ee0 (PartOf mull inner_hebride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mullet is part of mullet", "pln": ["(: cnet_partof_48265c89a2 (PartOf mullet mullet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mullion is part of window", "pln": ["(: cnet_partof_0c545a965b (PartOf mullion window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mumbai is part of india", "pln": ["(: cnet_partof_714197e542 (PartOf mumbai india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "muncie is part of indiana", "pln": ["(: cnet_partof_a5674eb388 (PartOf muncie indiana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mung is part of mung", "pln": ["(: cnet_partof_ac13988dc3 (PartOf mung mung) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "munich is part of bavaria", "pln": ["(: cnet_partof_e2e4353654 (PartOf munich bavaria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "murmansk is part of russia", "pln": ["(: cnet_partof_ee8a241e85 (PartOf murmansk russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "murray is part of australia", "pln": ["(: cnet_partof_1a55ba7220 (PartOf murray australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "murrumbidgee is part of australia", "pln": ["(: cnet_partof_7ae2e5fe54 (PartOf murrumbidgee australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "muscadine is part of muscadine", "pln": ["(: cnet_partof_569d67cba9 (PartOf muscadine muscadine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "muscat is part of oman", "pln": ["(: cnet_partof_f5405fa6d0 (PartOf muscat oman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "muscle is part of body", "pln": ["(: cnet_partof_be20548422 (PartOf muscle body) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "muscle is part of muscular structure", "pln": ["(: cnet_partof_9d004f9f0c (PartOf muscle muscular_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "muscle cell is part of muscle", "pln": ["(: cnet_partof_c4c4efa07e (PartOf muscle_cell muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "muscovy is part of russia", "pln": ["(: cnet_partof_9e5872b9c1 (PartOf muscovy russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "muscular structure is part of musculoskeletal system", "pln": ["(: cnet_partof_7a3daa058c (PartOf muscular_structure musculoskeletal_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "musculoskeletal system is part of body", "pln": ["(: cnet_partof_c759124076 (PartOf musculoskeletal_system body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "musculus abductor digiti minimi manus is part of pinkie", "pln": ["(: cnet_partof_43604bf563 (PartOf musculus_abductor_digiti_minimi_manus pinkie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "musculus abductor pollicis is part of thumb", "pln": ["(: cnet_partof_8348afa0f6 (PartOf musculus_abductor_pollicis thumb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "musculus adductor brevis is part of thigh", "pln": ["(: cnet_partof_56b0439746 (PartOf musculus_adductor_brevis thigh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "musculus adductor longus is part of thigh", "pln": ["(: cnet_partof_ddc18530d9 (PartOf musculus_adductor_longus thigh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "musculus adductor magnus is part of thigh", "pln": ["(: cnet_partof_8a8b0d0a9c (PartOf musculus_adductor_magnus thigh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "musculus articularis cubiti is part of elbow", "pln": ["(: cnet_partof_54dc522df2 (PartOf musculus_articularis_cubiti elbow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "musculus articularis genus is part of knee", "pln": ["(: cnet_partof_7ae36dd8c2 (PartOf musculus_articularis_genus knee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "musculus bicep femoris is part of thigh", "pln": ["(: cnet_partof_484af3a3c1 (PartOf musculus_bicep_femoris thigh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "musculus sphincter ani externus is part of anal sphincter", "pln": ["(: cnet_partof_4db7077495 (PartOf musculus_sphincter_ani_externus anal_sphincter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "musculus sphincter ani internus is part of anal sphincter", "pln": ["(: cnet_partof_1987095266 (PartOf musculus_sphincter_ani_internus anal_sphincter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "musculus sphincter ductus choledochi is part of common bile duct", "pln": ["(: cnet_partof_123b511d16 (PartOf musculus_sphincter_ductus_choledochi common_bile_duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "musculus sphincter ductus pancreatici is part of pancreatic duct", "pln": ["(: cnet_partof_2e969699e7 (PartOf musculus_sphincter_ductus_pancreatici pancreatic_duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "mushroom is part of stuffed mushroom", "pln": ["(: cnet_partof_62ffc4d5bd (PartOf mushroom stuffed_mushroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "musical notation is part of score", "pln": ["(: cnet_partof_19601dcc63 (PartOf musical_notation score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "muskellunge is part of muskellunge", "pln": ["(: cnet_partof_c0c3c123dd (PartOf muskellunge muskellunge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "muskmelon is part of sweet melon", "pln": ["(: cnet_partof_93c690f3da (PartOf muskmelon sweet_melon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "muskogee is part of oklahoma", "pln": ["(: cnet_partof_f3bfd7c03a (PartOf muskogee oklahoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mussel is part of edible mussel", "pln": ["(: cnet_partof_2e64fbaf3f (PartOf mussel edible_mussel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mustache is part of beard", "pln": ["(: cnet_partof_88dcd8bdbb (PartOf mustache beard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mustard seed is part of black mustard", "pln": ["(: cnet_partof_e9bda75091 (PartOf mustard_seed black_mustard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mustard seed is part of white mustard", "pln": ["(: cnet_partof_ba61a16c5d (PartOf mustard_seed white_mustard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mutagenesis is part of mutation", "pln": ["(: cnet_partof_942f5e0afc (PartOf mutagenesis mutation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "muztagh is part of kunlun", "pln": ["(: cnet_partof_11798423e3 (PartOf muztagh kunlun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "muzzle is part of head", "pln": ["(: cnet_partof_7369e9cc45 (PartOf muzzle head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mwanza is part of tanzania", "pln": ["(: cnet_partof_942a6ad0ab (PartOf mwanza tanzania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "myanmar is part of indochina", "pln": ["(: cnet_partof_80ec706352 (PartOf myanmar indochina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "myanmar is part of malay peninsula", "pln": ["(: cnet_partof_7fb3f52f76 (PartOf myanmar malay_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mycelium is part of fungus", "pln": ["(: cnet_partof_2b873748b9 (PartOf mycelium fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "mycenae is part of greece", "pln": ["(: cnet_partof_99d2042169 (PartOf mycenae greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "myelencephalon is part of hindbrain", "pln": ["(: cnet_partof_d85d919830 (PartOf myelencephalon hindbrain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "myocardial infarction is part of heart attack", "pln": ["(: cnet_partof_79c1c4803e (PartOf myocardial_infarction heart_attack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "myofibril is part of striated muscle cell", "pln": ["(: cnet_partof_35ce1a53c4 (PartOf myofibril striated_muscle_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "myometrium is part of uterus", "pln": ["(: cnet_partof_532ec6e630 (PartOf myometrium uterus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "myriagram is part of centner", "pln": ["(: cnet_partof_0f914c25c0 (PartOf myriagram centner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "mysore is part of india", "pln": ["(: cnet_partof_833f121788 (PartOf mysore india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "n djamena is part of chad", "pln": ["(: cnet_partof_dd58852ad1 (PartOf n_djamena chad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nablus is part of west bank", "pln": ["(: cnet_partof_1ac8cd3e48 (PartOf nablus west_bank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nacimiento is part of ande", "pln": ["(: cnet_partof_c2be56defa (PartOf nacimiento ande) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nacimiento is part of argentina", "pln": ["(: cnet_partof_007fdfc5c7 (PartOf nacimiento argentina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nadir is part of celestial sphere", "pln": ["(: cnet_partof_a327661380 (PartOf nadir celestial_sphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nafud is part of saudi arabia", "pln": ["(: cnet_partof_af5f4c642c (PartOf nafud saudi_arabia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nag hammadi is part of upper egypt", "pln": ["(: cnet_partof_654f3a0805 (PartOf nag_hammadi upper_egypt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nagano is part of honshu", "pln": ["(: cnet_partof_ce378b6fb6 (PartOf nagano honshu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nagano is part of japan", "pln": ["(: cnet_partof_6523a1d5c7 (PartOf nagano japan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nagasaki is part of japan", "pln": ["(: cnet_partof_70c340a4f5 (PartOf nagasaki japan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nagasaki is part of kyushu", "pln": ["(: cnet_partof_89a0b9f805 (PartOf nagasaki kyushu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nagoya is part of honshu", "pln": ["(: cnet_partof_42da7af699 (PartOf nagoya honshu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nagoya is part of japan", "pln": ["(: cnet_partof_78bc635ea1 (PartOf nagoya japan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "naha city is part of japan", "pln": ["(: cnet_partof_a379cb4486 (PartOf naha_city japan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "naha city is part of okinawa", "pln": ["(: cnet_partof_9dba748012 (PartOf naha_city okinawa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "nahum is part of old testament", "pln": ["(: cnet_partof_49f0433077 (PartOf nahum old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "nanga parbat is part of himalayas", "pln": ["(: cnet_partof_e6e49861cb (PartOf nanga_parbat himalayas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "national institutes of health is part of department of health and human services", "pln": ["(: cnet_partof_42abd8b4cc (PartOf national_institutes_of_health department_of_health_and_human_services) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nahum is part of prophet", "pln": ["(: cnet_partof_7985c8079f (PartOf nahum prophet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nail is part of house", "pln": ["(: cnet_partof_b6570cfb26 (PartOf nail house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nail is part of digit", "pln": ["(: cnet_partof_04a2dd39a4 (PartOf nail digit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nail is part of integumentary system", "pln": ["(: cnet_partof_86967046fd (PartOf nail integumentary_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nailhead is part of nail", "pln": ["(: cnet_partof_5c53fbc964 (PartOf nailhead nail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nairobi is part of kenya", "pln": ["(: cnet_partof_36b2f2a5db (PartOf nairobi kenya) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nakuru is part of kenya", "pln": ["(: cnet_partof_d5da5b675a (PartOf nakuru kenya) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nalchik is part of russia", "pln": ["(: cnet_partof_76ad508042 (PartOf nalchik russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "namib desert is part of namibia", "pln": ["(: cnet_partof_a880332ef2 (PartOf namib_desert namibia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "namibia is part of africa", "pln": ["(: cnet_partof_6b21107c7e (PartOf namibia africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "namoi is part of australia", "pln": ["(: cnet_partof_e09580c8df (PartOf namoi australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nampa is part of idaho", "pln": ["(: cnet_partof_b6febb5dc9 (PartOf nampa idaho) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "namur is part of belgium", "pln": ["(: cnet_partof_4ef9435bd8 (PartOf namur belgium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nan is part of thailand", "pln": ["(: cnet_partof_70a834f2de (PartOf nan thailand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nan ling is part of china", "pln": ["(: cnet_partof_36dadfe556 (PartOf nan_ling china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nanaimo is part of british columbia", "pln": ["(: cnet_partof_d42b9d7b0d (PartOf nanaimo british_columbia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nanchang is part of china", "pln": ["(: cnet_partof_b6d46f3665 (PartOf nanchang china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nancy is part of france", "pln": ["(: cnet_partof_61e50a70ae (PartOf nancy france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nanda devi is part of himalaya", "pln": ["(: cnet_partof_ed5e8b70ab (PartOf nanda_devi himalaya) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nanda devi is part of india", "pln": ["(: cnet_partof_8cc95a02a0 (PartOf nanda_devi india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nanga parbat is part of himalaya", "pln": ["(: cnet_partof_73a2b6399c (PartOf nanga_parbat himalaya) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nanga parbat is part of kashmir", "pln": ["(: cnet_partof_38e9b3a386 (PartOf nanga_parbat kashmir) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nanjing is part of china", "pln": ["(: cnet_partof_306d56e850 (PartOf nanjing china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nanning is part of china", "pln": ["(: cnet_partof_f36bdccd62 (PartOf nanning china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nanogram is part of microgram", "pln": ["(: cnet_partof_6314d9321a (PartOf nanogram microgram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nanometer is part of micron", "pln": ["(: cnet_partof_569ee4f1de (PartOf nanometer micron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nanosecond is part of microsecond", "pln": ["(: cnet_partof_b8d5a3b2d7 (PartOf nanosecond microsecond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nanovolt is part of volt", "pln": ["(: cnet_partof_0865b56bbe (PartOf nanovolt volt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nante is part of france", "pln": ["(: cnet_partof_3319438489 (PartOf nante france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nape is part of neck", "pln": ["(: cnet_partof_240db968c6 (PartOf nape neck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "naple is part of campania", "pln": ["(: cnet_partof_e6440508ad (PartOf naple campania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "narragansett bay is part of rhode island", "pln": ["(: cnet_partof_d41e43dcd0 (PartOf narragansett_bay rhode_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "narthex is part of basilica", "pln": ["(: cnet_partof_be8079b135 (PartOf narthex basilica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "narthex is part of church", "pln": ["(: cnet_partof_45b84d898c (PartOf narthex church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nasal is part of bridge", "pln": ["(: cnet_partof_3fc9ac990b (PartOf nasal bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nasal cavity is part of nose", "pln": ["(: cnet_partof_4dda9c64da (PartOf nasal_cavity nose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nasal cavity is part of upper respiratory tract", "pln": ["(: cnet_partof_c17fdef6f2 (PartOf nasal_cavity upper_respiratory_tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "naseby is part of english civil war", "pln": ["(: cnet_partof_d04762a3f6 (PartOf naseby english_civil_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "naseby is part of northamptonshire", "pln": ["(: cnet_partof_bde7e78fcc (PartOf naseby northamptonshire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nashville is part of tennessee", "pln": ["(: cnet_partof_6d0819eae9 (PartOf nashville tennessee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nasopharynx is part of throat", "pln": ["(: cnet_partof_3336748342 (PartOf nasopharynx throat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nassau is part of bahama", "pln": ["(: cnet_partof_ff506e12cf (PartOf nassau bahama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nasturtium is part of nasturtium", "pln": ["(: cnet_partof_12f3695ef0 (PartOf nasturtium nasturtium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "natal is part of brazil", "pln": ["(: cnet_partof_3ab0d4b22e (PartOf natal brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "natal is part of south africa", "pln": ["(: cnet_partof_9bd8b442da (PartOf natal south_africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "natchez is part of mississippi", "pln": ["(: cnet_partof_ed0eddd371 (PartOf natchez mississippi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "national baseball hall of fame is part of cooperstown", "pln": ["(: cnet_partof_f0bc08b0ed (PartOf national_baseball_hall_of_fame cooperstown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "national climatic data center is part of national oceanic and atmospheric administration", "pln": ["(: cnet_partof_263097df3a (PartOf national_climatic_data_center national_oceanic_and_atmospheric_administration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "national geospatial intelligence agency is part of department of defense", "pln": ["(: cnet_partof_5c86ce2d07 (PartOf national_geospatial_intelligence_agency department_of_defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "national guard bureau is part of national guard", "pln": ["(: cnet_partof_223aa3075b (PartOf national_guard_bureau national_guard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "national institute of justice is part of department of justice", "pln": ["(: cnet_partof_4824f69de0 (PartOf national_institute_of_justice department_of_justice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "national institute of standard and technology is part of technology administration", "pln": ["(: cnet_partof_7162dc7391 (PartOf national_institute_of_standard_and_technology technology_administration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "national institute of health is part of department of health and human service", "pln": ["(: cnet_partof_26f0031a5e (PartOf national_institute_of_health department_of_health_and_human_service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "national library of medicine is part of national institute of health", "pln": ["(: cnet_partof_a84c93c5eb (PartOf national_library_of_medicine national_institute_of_health) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "national oceanic and atmospheric administration is part of department of commerce", "pln": ["(: cnet_partof_e6ab34449c (PartOf national_oceanic_and_atmospheric_administration department_of_commerce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "national park service is part of department of interior", "pln": ["(: cnet_partof_07748cede7 (PartOf national_park_service department_of_interior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "national reconnaissance office is part of department of defense", "pln": ["(: cnet_partof_51e326e522 (PartOf national_reconnaissance_office department_of_defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "national security agency is part of department of defense", "pln": ["(: cnet_partof_3bdc563eb4 (PartOf national_security_agency department_of_defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "national technical information service is part of technology administration", "pln": ["(: cnet_partof_b902d2b822 (PartOf national_technical_information_service technology_administration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "national weather service is part of national oceanic and atmospheric administration", "pln": ["(: cnet_partof_7c9763472b (PartOf national_weather_service national_oceanic_and_atmospheric_administration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nature is part of personality", "pln": ["(: cnet_partof_a9bd3a420f (PartOf nature personality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nauru is part of micronesia", "pln": ["(: cnet_partof_63846ed94d (PartOf nauru micronesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nauru is part of nauru", "pln": ["(: cnet_partof_697e5a1317 (PartOf nauru nauru) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "naval air warfare center weapon division is part of united state navy", "pln": ["(: cnet_partof_a374216d10 (PartOf naval_air_warfare_center_weapon_division united_state_navy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "naval gun is part of warship", "pln": ["(: cnet_partof_875ed22c9e (PartOf naval_gun warship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "naval research laboratory is part of united state navy", "pln": ["(: cnet_partof_b5b70b7433 (PartOf naval_research_laboratory united_state_navy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "naval special warfare is part of united state navy", "pln": ["(: cnet_partof_2e7bbf5a47 (PartOf naval_special_warfare united_state_navy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "naval surface warfare center is part of united state navy", "pln": ["(: cnet_partof_9625aa6dc7 (PartOf naval_surface_warfare_center united_state_navy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "naval underwater warfare center is part of united state navy", "pln": ["(: cnet_partof_b18ff7e5fa (PartOf naval_underwater_warfare_center united_state_navy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nave is part of church", "pln": ["(: cnet_partof_c8a89699f0 (PartOf nave church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "navel is part of abdomen", "pln": ["(: cnet_partof_ca025214ad (PartOf navel abdomen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "navigation light is part of airplane", "pln": ["(: cnet_partof_10484738b8 (PartOf navigation_light airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nazareth is part of galilee", "pln": ["(: cnet_partof_0d84944411 (PartOf nazareth galilee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nebraska is part of midwest", "pln": ["(: cnet_partof_c2801cc33a (PartOf nebraska midwest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nebraska is part of united state", "pln": ["(: cnet_partof_02ee4b3942 (PartOf nebraska united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "neck is part of garment", "pln": ["(: cnet_partof_6cd61183d8 (PartOf neck garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "neck is part of body", "pln": ["(: cnet_partof_e934c1353d (PartOf neck body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "neckar is part of germany", "pln": ["(: cnet_partof_a46e2d17f5 (PartOf neckar germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "neckband is part of sweater", "pln": ["(: cnet_partof_dcf1531938 (PartOf neckband sweater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "neckline is part of blouse", "pln": ["(: cnet_partof_0722221ac2 (PartOf neckline blouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "neckline is part of dress", "pln": ["(: cnet_partof_78842bf9da (PartOf neckline dress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "neckline is part of sweater", "pln": ["(: cnet_partof_634da26d34 (PartOf neckline sweater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nectarine is part of nectarine", "pln": ["(: cnet_partof_f35057ca9a (PartOf nectarine nectarine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "neem seed is part of neem", "pln": ["(: cnet_partof_0ce2f00009 (PartOf neem_seed neem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "neencephalon is part of brain", "pln": ["(: cnet_partof_49d897f43d (PartOf neencephalon brain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "negeri sembilan is part of malaysia", "pln": ["(: cnet_partof_8a11bb90e7 (PartOf negeri_sembilan malaysia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "negev is part of israel", "pln": ["(: cnet_partof_7f01ff432b (PartOf negev israel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "nehemiah is part of hagiographa", "pln": ["(: cnet_partof_2e4b37bdbb (PartOf nehemiah hagiographa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nehemiah is part of old testament", "pln": ["(: cnet_partof_daa8f0219c (PartOf nehemiah old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nejd is part of arabian peninsula", "pln": ["(: cnet_partof_3835e58d8c (PartOf nejd arabian_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nejd is part of saudi arabia", "pln": ["(: cnet_partof_d0b45a7e93 (PartOf nejd saudi_arabia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nemea is part of greece", "pln": ["(: cnet_partof_01866b9c62 (PartOf nemea greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "neolithic age is part of stone age", "pln": ["(: cnet_partof_1634ba5915 (PartOf neolithic_age stone_age) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "neosho is part of kansa", "pln": ["(: cnet_partof_664f59a88f (PartOf neosho kansa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "neosho is part of oklahoma", "pln": ["(: cnet_partof_3cca3e9691 (PartOf neosho oklahoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nepal is part of asia", "pln": ["(: cnet_partof_f61ccea544 (PartOf nepal asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nephron is part of kidney", "pln": ["(: cnet_partof_fc6eda0b28 (PartOf nephron kidney) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nerve is part of human body", "pln": ["(: cnet_partof_c54d2f8bcb (PartOf nerve human_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "nerve cell is part of nervous system", "pln": ["(: cnet_partof_d91ef29164 (PartOf nerve_cell nervous_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nerve ending is part of axon", "pln": ["(: cnet_partof_cc8177cd7f (PartOf nerve_ending axon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nerve fiber is part of nerve", "pln": ["(: cnet_partof_da7bb6d307 (PartOf nerve_fiber nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nervous system is part of body", "pln": ["(: cnet_partof_80d89dfdc8 (PartOf nervous_system body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nervous tissue is part of nervous system", "pln": ["(: cnet_partof_ee1e3f0704 (PartOf nervous_tissue nervous_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nessie is part of loch ness", "pln": ["(: cnet_partof_c2f7607f2e (PartOf nessie loch_ness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "net melon is part of net melon", "pln": ["(: cnet_partof_79ba800cf4 (PartOf net_melon net_melon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "netherland is part of europe", "pln": ["(: cnet_partof_91f5ef2c19 (PartOf netherland europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "netherland antille is part of lesser antille", "pln": ["(: cnet_partof_8682c18649 (PartOf netherland_antille lesser_antille) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "neural arch is part of centrum", "pln": ["(: cnet_partof_68419e44de (PartOf neural_arch centrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "neural network is part of nervous system", "pln": ["(: cnet_partof_d61188f8f5 (PartOf neural_network nervous_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "neuroepithelium is part of inner ear", "pln": ["(: cnet_partof_65b4c73e19 (PartOf neuroepithelium inner_ear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "neuroepithelium is part of nasal cavity", "pln": ["(: cnet_partof_bc8670ef64 (PartOf neuroepithelium nasal_cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "nevis is part of saint kitts and nevis", "pln": ["(: cnet_partof_e9c9fd4c6e (PartOf nevis saint_kitts_and_nevis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "neuroepithelium is part of retina", "pln": ["(: cnet_partof_efabe705ba (PartOf neuroepithelium retina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "neuroepithelium is part of tastebud", "pln": ["(: cnet_partof_cac93c921f (PartOf neuroepithelium tastebud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "neuroglia is part of central nervous system", "pln": ["(: cnet_partof_99793d9dc2 (PartOf neuroglia central_nervous_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "neurogliacyte is part of neuroglia", "pln": ["(: cnet_partof_0d1635eb1d (PartOf neurogliacyte neuroglia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "neurolemma is part of nerve fiber", "pln": ["(: cnet_partof_65ea962b5a (PartOf neurolemma nerve_fiber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "neuron is part of brain", "pln": ["(: cnet_partof_967cba7c30 (PartOf neuron brain) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "neuron is part of cerebral cortex", "pln": ["(: cnet_partof_9d47894aee (PartOf neuron cerebral_cortex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "neutron is part of atom", "pln": ["(: cnet_partof_b56d25ee21 (PartOf neutron atom) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "neva is part of russia", "pln": ["(: cnet_partof_f2b3979932 (PartOf neva russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nevada is part of southwest", "pln": ["(: cnet_partof_6115f5ade3 (PartOf nevada southwest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nevada is part of united state", "pln": ["(: cnet_partof_806badb048 (PartOf nevada united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "neve is part of glacier", "pln": ["(: cnet_partof_c04b08b794 (PartOf neve glacier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "never never is part of australian desert", "pln": ["(: cnet_partof_014aece750 (PartOf never_never australian_desert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nevis is part of saint kitt and nevis", "pln": ["(: cnet_partof_9151901ec9 (PartOf nevis saint_kitt_and_nevis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new amsterdam is part of new york", "pln": ["(: cnet_partof_b51d36796d (PartOf new_amsterdam new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new britain is part of bismarck archipelago", "pln": ["(: cnet_partof_93e6ef0c2d (PartOf new_britain bismarck_archipelago) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new brunswick is part of maritime province", "pln": ["(: cnet_partof_b939233179 (PartOf new_brunswick maritime_province) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new brunswick is part of new jersey", "pln": ["(: cnet_partof_93155bafaf (PartOf new_brunswick new_jersey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new caledonia is part of melanesia", "pln": ["(: cnet_partof_76699e4f19 (PartOf new_caledonia melanesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new england is part of united state", "pln": ["(: cnet_partof_5608bda741 (PartOf new_england united_state) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new forest is part of hampshire", "pln": ["(: cnet_partof_253000a234 (PartOf new_forest hampshire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new guinea is part of pacific", "pln": ["(: cnet_partof_64f594384f (PartOf new_guinea pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new hampshire is part of new england", "pln": ["(: cnet_partof_cbe38c2cde (PartOf new_hampshire new_england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new hampshire is part of united state", "pln": ["(: cnet_partof_1a68845eb9 (PartOf new_hampshire united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new haven is part of connecticut", "pln": ["(: cnet_partof_f2aee9dc9e (PartOf new_haven connecticut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new ireland is part of bismarck archipelago", "pln": ["(: cnet_partof_3cc4a3fa72 (PartOf new_ireland bismarck_archipelago) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new jersey is part of mid atlantic state", "pln": ["(: cnet_partof_51d11206bf (PartOf new_jersey mid_atlantic_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new jersey is part of united state", "pln": ["(: cnet_partof_3ee0f70fc6 (PartOf new_jersey united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new london is part of connecticut", "pln": ["(: cnet_partof_4f8a1250ff (PartOf new_london connecticut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new mexico is part of southwest", "pln": ["(: cnet_partof_e9be28ed5e (PartOf new_mexico southwest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new mexico is part of united state", "pln": ["(: cnet_partof_1b1f476a81 (PartOf new_mexico united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new moon is part of month", "pln": ["(: cnet_partof_fd9822464c (PartOf new_moon month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new netherland is part of new york", "pln": ["(: cnet_partof_0da5c38d7e (PartOf new_netherland new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new orlean is part of louisiana", "pln": ["(: cnet_partof_021c36d9b3 (PartOf new_orlean louisiana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new river is part of united state", "pln": ["(: cnet_partof_abbd762c7a (PartOf new_river united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new river gorge bridge is part of fayetteville", "pln": ["(: cnet_partof_7ecb8f3666 (PartOf new_river_gorge_bridge fayetteville) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new siberian island is part of arctic ocean", "pln": ["(: cnet_partof_a0586f2a8f (PartOf new_siberian_island arctic_ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new south wale is part of australia", "pln": ["(: cnet_partof_e103484c06 (PartOf new_south_wale australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new testament is part of bible", "pln": ["(: cnet_partof_65398c768a (PartOf new_testament bible) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new year s day is part of january", "pln": ["(: cnet_partof_8b6ca63b7a (PartOf new_year_s_day january) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new year s eve is part of december", "pln": ["(: cnet_partof_180906dd61 (PartOf new_year_s_eve december) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new york is part of mid atlantic state", "pln": ["(: cnet_partof_2957e9efd8 (PartOf new_york mid_atlantic_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new york is part of new york", "pln": ["(: cnet_partof_44481b48d0 (PartOf new_york new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new york is part of united state", "pln": ["(: cnet_partof_bc8fc83ef0 (PartOf new_york united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "new york bay is part of atlantic", "pln": ["(: cnet_partof_fccd87f5f0 (PartOf new_york_bay atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "news is part of media", "pln": ["(: cnet_partof_8c9aa45de4 (PartOf news media) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "news article is part of newspaper", "pln": ["(: cnet_partof_0fc877a048 (PartOf news_article newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new york bay is part of new york", "pln": ["(: cnet_partof_24ae3ee4fe (PartOf new_york_bay new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new york city is part of new york state", "pln": ["(: cnet_partof_43f3318350 (PartOf new_york_city new_york_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new zealand is part of new zealand", "pln": ["(: cnet_partof_892c696e4f (PartOf new_zealand new_zealand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new zealand is part of pacific", "pln": ["(: cnet_partof_4a1f4d4697 (PartOf new_zealand pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "newark is part of new jersey", "pln": ["(: cnet_partof_60b780408f (PartOf newark new_jersey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "newburgh is part of new york", "pln": ["(: cnet_partof_5dbdfe5b58 (PartOf newburgh new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "newcastle is part of england", "pln": ["(: cnet_partof_19300dba6f (PartOf newcastle england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "newfoundland is part of atlantic", "pln": ["(: cnet_partof_1871b7d7ba (PartOf newfoundland atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "newfoundland and labrador is part of canada", "pln": ["(: cnet_partof_42bf5626b7 (PartOf newfoundland_and_labrador canada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "newgate is part of london", "pln": ["(: cnet_partof_172ed9c58e (PartOf newgate london) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "newport is part of rhode island", "pln": ["(: cnet_partof_fd9e3360df (PartOf newport rhode_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "newport is part of wale", "pln": ["(: cnet_partof_5b79257cd8 (PartOf newport wale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "newport new is part of virginia", "pln": ["(: cnet_partof_0708c5b40e (PartOf newport_new virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new is part of media", "pln": ["(: cnet_partof_cc3450b006 (PartOf new media) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new article is part of newspaper", "pln": ["(: cnet_partof_00732d3bba (PartOf new_article newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "new item is part of newspaper", "pln": ["(: cnet_partof_0e05adbef8 (PartOf new_item newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "newton is part of sthene", "pln": ["(: cnet_partof_c924db9319 (PartOf newton sthene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ngwee is part of zambian kwacha", "pln": ["(: cnet_partof_c3bde838fe (PartOf ngwee zambian_kwacha) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "niagara is part of canada", "pln": ["(: cnet_partof_3483fd3730 (PartOf niagara canada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "niagara is part of new york", "pln": ["(: cnet_partof_2ed0aabe60 (PartOf niagara new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "niagara is part of niagara", "pln": ["(: cnet_partof_263237c3ad (PartOf niagara niagara) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "niagara is part of ontario", "pln": ["(: cnet_partof_f727a956ae (PartOf niagara ontario) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "niagara is part of united state", "pln": ["(: cnet_partof_2669ad98bc (PartOf niagara united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "niagara fall is part of new york", "pln": ["(: cnet_partof_a1df6b6e56 (PartOf niagara_fall new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "niamey is part of niger", "pln": ["(: cnet_partof_cbcef5db96 (PartOf niamey niger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nib is part of pen", "pln": ["(: cnet_partof_bb76c1f725 (PartOf nib pen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nicaea is part of bithynia", "pln": ["(: cnet_partof_7c5f3baf65 (PartOf nicaea bithynia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nicaragua is part of central america", "pln": ["(: cnet_partof_7075fc1cad (PartOf nicaragua central_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nice is part of france", "pln": ["(: cnet_partof_1698f3d6a2 (PartOf nice france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nicosia is part of cyprus", "pln": ["(: cnet_partof_9caf0adc37 (PartOf nicosia cyprus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nictitating membrane is part of eye", "pln": ["(: cnet_partof_3b81f9f63f (PartOf nictitating_membrane eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "niger is part of africa", "pln": ["(: cnet_partof_825d2782c0 (PartOf niger africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "niger is part of benin", "pln": ["(: cnet_partof_e27222b251 (PartOf niger benin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "niger is part of guinea", "pln": ["(: cnet_partof_1bd91d9d7a (PartOf niger guinea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "niger is part of mali", "pln": ["(: cnet_partof_16cf7e338c (PartOf niger mali) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "niger is part of niger", "pln": ["(: cnet_partof_a85dd44586 (PartOf niger niger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "niger is part of nigeria", "pln": ["(: cnet_partof_cd40586050 (PartOf niger nigeria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nigeria is part of africa", "pln": ["(: cnet_partof_06dbbe0073 (PartOf nigeria africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "night is part of day", "pln": ["(: cnet_partof_a02d73ee7d (PartOf night day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nightcap is part of twin bill", "pln": ["(: cnet_partof_b49018852c (PartOf nightcap twin_bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "nightcap is part of nightgown", "pln": ["(: cnet_partof_ac52ee130f (PartOf nightcap nightgown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nihau is part of hawaiian island", "pln": ["(: cnet_partof_503ca2909f (PartOf nihau hawaiian_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nijmegen is part of netherland", "pln": ["(: cnet_partof_f1c478a631 (PartOf nijmegen netherland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nile is part of egypt", "pln": ["(: cnet_partof_b95f9ccae7 (PartOf nile egypt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nile is part of sudan", "pln": ["(: cnet_partof_a340800e71 (PartOf nile sudan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nile is part of uganda", "pln": ["(: cnet_partof_e2ef21813e (PartOf nile uganda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nilgiri hill is part of india", "pln": ["(: cnet_partof_06b94bf76b (PartOf nilgiri_hill india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nineteenth amendment is part of united state constitution", "pln": ["(: cnet_partof_ec70de030f (PartOf nineteenth_amendment united_state_constitution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ninety is part of old age", "pln": ["(: cnet_partof_65db8ed475 (PartOf ninety old_age) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nineveh is part of assyria", "pln": ["(: cnet_partof_ae7a397b99 (PartOf nineveh assyria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nineveh is part of iraq", "pln": ["(: cnet_partof_31a7537f10 (PartOf nineveh iraq) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "niobrara is part of united state", "pln": ["(: cnet_partof_b7dc01d69e (PartOf niobrara united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "nipple is part of nursing bottle", "pln": ["(: cnet_partof_75ebee80c3 (PartOf nipple nursing_bottle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "nogales is part of arizona", "pln": ["(: cnet_partof_50ff439d6a (PartOf nogales arizona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "nogales is part of mexico", "pln": ["(: cnet_partof_065487f92f (PartOf nogales mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nipple is part of mammary gland", "pln": ["(: cnet_partof_c822ed77e2 (PartOf nipple mammary_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nisan is part of jewish calendar", "pln": ["(: cnet_partof_f9601a2a62 (PartOf nisan jewish_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nivose is part of revolutionary calendar", "pln": ["(: cnet_partof_33eed22a11 (PartOf nivose revolutionary_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nizhnyi novgorod is part of russia", "pln": ["(: cnet_partof_14bdef12c7 (PartOf nizhnyi_novgorod russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nob hill is part of san francisco", "pln": ["(: cnet_partof_da1e0920eb (PartOf nob_hill san_francisco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nocturnal emission is part of wet dream", "pln": ["(: cnet_partof_4c8d7b5763 (PartOf nocturnal_emission wet_dream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "node is part of computer network", "pln": ["(: cnet_partof_cfceb3b5b3 (PartOf node computer_network) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nogale is part of arizona", "pln": ["(: cnet_partof_1164cdf29d (PartOf nogale arizona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nogale is part of mexico", "pln": ["(: cnet_partof_150ead336a (PartOf nogale mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nome is part of alaska", "pln": ["(: cnet_partof_3b9e8e2e2c (PartOf nome alaska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "non nucleoside reverse transcriptase inhibitor is part of drug cocktail", "pln": ["(: cnet_partof_86ea9ec1f6 (PartOf non_nucleoside_reverse_transcriptase_inhibitor drug_cocktail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nonproliferation center is part of central intelligence agency", "pln": ["(: cnet_partof_4769f55897 (PartOf nonproliferation_center central_intelligence_agency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "noon is part of day", "pln": ["(: cnet_partof_9266fe1749 (PartOf noon day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "noose is part of hangman s rope", "pln": ["(: cnet_partof_16be066140 (PartOf noose hangman_s_rope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "noose is part of lasso", "pln": ["(: cnet_partof_e92bf40bf7 (PartOf noose lasso) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nord pas de calais is part of france", "pln": ["(: cnet_partof_e03ec1b492 (PartOf nord_pas_de_calais france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "norfolk is part of virginia", "pln": ["(: cnet_partof_79067ce4f2 (PartOf norfolk virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "norfolk island is part of australia", "pln": ["(: cnet_partof_3ebb9a8a05 (PartOf norfolk_island australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "normandie is part of france", "pln": ["(: cnet_partof_9b4f766102 (PartOf normandie france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "north is part of united state", "pln": ["(: cnet_partof_e9e2e31522 (PartOf north united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "north africa is part of africa", "pln": ["(: cnet_partof_8d9c6c59ac (PartOf north_africa africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "north america is part of america", "pln": ["(: cnet_partof_24b6181d34 (PartOf north_america america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "north america is part of northern hemisphere", "pln": ["(: cnet_partof_7fe728cef9 (PartOf north_america northern_hemisphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "north america is part of occident", "pln": ["(: cnet_partof_5a5bff5fcb (PartOf north_america occident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "north america is part of western hemisphere", "pln": ["(: cnet_partof_373f0eec4b (PartOf north_america western_hemisphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "north american country is part of north america", "pln": ["(: cnet_partof_78791597f2 (PartOf north_american_country north_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "north atlantic is part of atlantic", "pln": ["(: cnet_partof_b9626b0e3b (PartOf north_atlantic atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "north atlantic council is part of north atlantic treaty organization", "pln": ["(: cnet_partof_c1ed22b93d (PartOf north_atlantic_council north_atlantic_treaty_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "north carolina is part of carolina", "pln": ["(: cnet_partof_ffad47a470 (PartOf north_carolina carolina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "north carolina is part of south", "pln": ["(: cnet_partof_9047aaf6be (PartOf north_carolina south) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "north carolina is part of united state", "pln": ["(: cnet_partof_8722e52758 (PartOf north_carolina united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "north cascade national park is part of washington", "pln": ["(: cnet_partof_ada5e09a89 (PartOf north_cascade_national_park washington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "north dakota is part of dakota", "pln": ["(: cnet_partof_f4ceacb1dd (PartOf north_dakota dakota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "north dakota is part of united state", "pln": ["(: cnet_partof_ba9ed1c6bc (PartOf north_dakota united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "north island is part of new zealand", "pln": ["(: cnet_partof_6cf1093ae8 (PartOf north_island new_zealand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "north korea is part of asia", "pln": ["(: cnet_partof_393298048b (PartOf north_korea asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "north korea is part of korea", "pln": ["(: cnet_partof_f1d89e0e9d (PartOf north_korea korea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "north pacific is part of pacific", "pln": ["(: cnet_partof_e2e68e7c2f (PartOf north_pacific pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "north peak is part of alaska range", "pln": ["(: cnet_partof_39ef7a56c7 (PartOf north_peak alaska_range) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "north platte is part of nebraska", "pln": ["(: cnet_partof_b13bcce1e0 (PartOf north_platte nebraska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "north platte is part of colorado", "pln": ["(: cnet_partof_01367e32f0 (PartOf north_platte colorado) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "north platte is part of wyoming", "pln": ["(: cnet_partof_939c97331f (PartOf north_platte wyoming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "north sea is part of atlantic", "pln": ["(: cnet_partof_2c84e38ec7 (PartOf north_sea atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "north vietnam is part of vietnam", "pln": ["(: cnet_partof_cac49582c9 (PartOf north_vietnam vietnam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "north yorkshire is part of england", "pln": ["(: cnet_partof_8563954ee6 (PartOf north_yorkshire england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "northampton is part of northamptonshire", "pln": ["(: cnet_partof_efb2070989 (PartOf northampton northamptonshire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "northamptonshire is part of england", "pln": ["(: cnet_partof_096311f786 (PartOf northamptonshire england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "northeast is part of east", "pln": ["(: cnet_partof_c695530b13 (PartOf northeast east) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "northern europe is part of europe", "pln": ["(: cnet_partof_707b7ea62e (PartOf northern_europe europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "northern ireland is part of europe", "pln": ["(: cnet_partof_83f3949afb (PartOf northern_ireland europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "northern ireland is part of ireland", "pln": ["(: cnet_partof_c9304b40da (PartOf northern_ireland ireland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "northern ireland is part of united kingdom", "pln": ["(: cnet_partof_deb1b28aa8 (PartOf northern_ireland united_kingdom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "northern mariana is part of mariana island", "pln": ["(: cnet_partof_6da085028d (PartOf northern_mariana mariana_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "northern territory is part of australia", "pln": ["(: cnet_partof_d6a9ed8cf1 (PartOf northern_territory australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "northumberland is part of england", "pln": ["(: cnet_partof_77beaeac26 (PartOf northumberland england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "northumbria is part of england", "pln": ["(: cnet_partof_2a3c94bbc3 (PartOf northumbria england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "northwest is part of west", "pln": ["(: cnet_partof_29f465d9b9 (PartOf northwest west) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "northwest territory is part of canada", "pln": ["(: cnet_partof_e5b95910e6 (PartOf northwest_territory canada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "norwegian lobster is part of norway lobster", "pln": ["(: cnet_partof_dae8687ec4 (PartOf norwegian_lobster norway_lobster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "norwegian sea is part of atlantic", "pln": ["(: cnet_partof_0598b62390 (PartOf norwegian_sea atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nose is part of head", "pln": ["(: cnet_partof_e7ab98fea2 (PartOf nose head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nose is part of aircraft", "pln": ["(: cnet_partof_b3011b983b (PartOf nose aircraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "nose is part of missile", "pln": ["(: cnet_partof_e8a4ac458f (PartOf nose missile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nose is part of face", "pln": ["(: cnet_partof_8a576058a5 (PartOf nose face) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nose is part of upper respiratory tract", "pln": ["(: cnet_partof_5124bc481c (PartOf nose upper_respiratory_tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nose cone is part of heat shield", "pln": ["(: cnet_partof_a81d253d34 (PartOf nose_cone heat_shield) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "noseband is part of bridle", "pln": ["(: cnet_partof_21ad139040 (PartOf noseband bridle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nosepiece is part of body armor", "pln": ["(: cnet_partof_fe3fde8872 (PartOf nosepiece body_armor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nosewheel is part of landing gear", "pln": ["(: cnet_partof_6eb23248c2 (PartOf nosewheel landing_gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nostril is part of nose", "pln": ["(: cnet_partof_a676304e10 (PartOf nostril nose) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "note is part of music", "pln": ["(: cnet_partof_00e965d8b3 (PartOf note music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nouakchott is part of mauritania", "pln": ["(: cnet_partof_79d958e4cb (PartOf nouakchott mauritania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "noun is part of sentence", "pln": ["(: cnet_partof_44859b0cca (PartOf noun sentence) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "nova scotia is part of maritime provinces", "pln": ["(: cnet_partof_95b33b1ea6 (PartOf nova_scotia maritime_provinces) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "noun is part of noun", "pln": ["(: cnet_partof_084210ed1a (PartOf noun noun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nova lisboa is part of angola", "pln": ["(: cnet_partof_9e8e0c218b (PartOf nova_lisboa angola) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nova scotia is part of maritime province", "pln": ["(: cnet_partof_98e15e7ad5 (PartOf nova_scotia maritime_province) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nova scotia is part of nova scotia", "pln": ["(: cnet_partof_fcc71cf70c (PartOf nova_scotia nova_scotia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "novaya zemlya is part of russia", "pln": ["(: cnet_partof_42be08d111 (PartOf novaya_zemlya russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "november is part of gregorian calendar", "pln": ["(: cnet_partof_c146adc628 (PartOf november gregorian_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "november 5 is part of november", "pln": ["(: cnet_partof_a63baa0ace (PartOf november_5 november) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "novgorod is part of russia", "pln": ["(: cnet_partof_9562e06d25 (PartOf novgorod russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "novosibirsk is part of russia", "pln": ["(: cnet_partof_0b9d5806b8 (PartOf novosibirsk russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nozzle is part of gas burner", "pln": ["(: cnet_partof_63c8432df6 (PartOf nozzle gas_burner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nozzle is part of oilcan", "pln": ["(: cnet_partof_8bea1b22b7 (PartOf nozzle oilcan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nozzle is part of sprinkler system", "pln": ["(: cnet_partof_d978640849 (PartOf nozzle sprinkler_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nubia is part of africa", "pln": ["(: cnet_partof_40ba845025 (PartOf nubia africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "nubian desert is part of arabian desert", "pln": ["(: cnet_partof_e6598e05a1 (PartOf nubian_desert arabian_desert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "numbers is part of old testament", "pln": ["(: cnet_partof_14182558cd (PartOf numbers old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nubian desert is part of sudan", "pln": ["(: cnet_partof_184ced26c9 (PartOf nubian_desert sudan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nucellus is part of ovule", "pln": ["(: cnet_partof_2d2775cb64 (PartOf nucellus ovule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nucleic acid is part of deoxyribonucleic acid", "pln": ["(: cnet_partof_331c40fa16 (PartOf nucleic_acid deoxyribonucleic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nucleic acid is part of ribonucleic acid", "pln": ["(: cnet_partof_c3173bbf42 (PartOf nucleic_acid ribonucleic_acid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nucleolus is part of nucleus", "pln": ["(: cnet_partof_e83e3d7809 (PartOf nucleolus nucleus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nucleolus organizer is part of chromosome", "pln": ["(: cnet_partof_19a0f7b878 (PartOf nucleolus_organizer chromosome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nucleon is part of nucleus", "pln": ["(: cnet_partof_260b33d106 (PartOf nucleon nucleus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nucleoside reverse transcriptase inhibitor is part of drug cocktail", "pln": ["(: cnet_partof_183e46c82e (PartOf nucleoside_reverse_transcriptase_inhibitor drug_cocktail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nucleus is part of cell", "pln": ["(: cnet_partof_adc26109fc (PartOf nucleus cell) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nucleus is part of comet", "pln": ["(: cnet_partof_fcf53e0dcc (PartOf nucleus comet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nucleus is part of atom", "pln": ["(: cnet_partof_55c6c25aae (PartOf nucleus atom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "null set is part of all set", "pln": ["(: cnet_partof_248068c10e (PartOf null_set all_set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nullarbor plain is part of australia", "pln": ["(: cnet_partof_4e849c1455 (PartOf nullarbor_plain australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "number is part of scale", "pln": ["(: cnet_partof_edb3f93eea (PartOf number scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "number is part of old testament", "pln": ["(: cnet_partof_77570c7fcc (PartOf number old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "number is part of torah", "pln": ["(: cnet_partof_df69952046 (PartOf number torah) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "numidia is part of north africa", "pln": ["(: cnet_partof_dcad2071d8 (PartOf numidia north_africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nunavut is part of canada", "pln": ["(: cnet_partof_d873b903d9 (PartOf nunavut canada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nuptse is part of himalaya", "pln": ["(: cnet_partof_b68b9fe1c3 (PartOf nuptse himalaya) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "nuptse is part of nepal", "pln": ["(: cnet_partof_eabb3af671 (PartOf nuptse nepal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nuptse is part of tibet", "pln": ["(: cnet_partof_5ba2f98d06 (PartOf nuptse tibet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nuremberg is part of germany", "pln": ["(: cnet_partof_06aa6205b1 (PartOf nuremberg germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nut is part of nut and bolt", "pln": ["(: cnet_partof_103a57c30a (PartOf nut nut_and_bolt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nutmeg is part of nutmeg", "pln": ["(: cnet_partof_73ce739d94 (PartOf nutmeg nutmeg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nyala is part of sudan", "pln": ["(: cnet_partof_644d17e828 (PartOf nyala sudan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nyamuragira is part of congo", "pln": ["(: cnet_partof_787638423f (PartOf nyamuragira congo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nybble is part of byte", "pln": ["(: cnet_partof_df12b61f8e (PartOf nybble byte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "nyiragongo is part of congo", "pln": ["(: cnet_partof_25e77a50a2 (PartOf nyiragongo congo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "o is part of alphabet", "pln": ["(: cnet_partof_2d65823a4a (PartOf o alphabet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oahu is part of hawaiian island", "pln": ["(: cnet_partof_f9ac9f1b95 (PartOf oahu hawaiian_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oakland is part of california", "pln": ["(: cnet_partof_44be323216 (PartOf oakland california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oasis is part of desert", "pln": ["(: cnet_partof_4f708e129f (PartOf oasis desert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oast is part of oast house", "pln": ["(: cnet_partof_e312d692a9 (PartOf oast oast_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oat is part of cereal oat", "pln": ["(: cnet_partof_57ac1b073a (PartOf oat cereal_oat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oaxaca is part of mexico", "pln": ["(: cnet_partof_6f424c63f5 (PartOf oaxaca mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "ob is part of siberia", "pln": ["(: cnet_partof_cdecbdf2d2 (PartOf ob siberia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "obadiah is part of old testament", "pln": ["(: cnet_partof_f363e67421 (PartOf obadiah old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "obadiah is part of prophet", "pln": ["(: cnet_partof_8e80957285 (PartOf obadiah prophet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "object oriented database management system is part of hypermedia", "pln": ["(: cnet_partof_d62fa65c47 (PartOf object_oriented_database_management_system hypermedia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "objective is part of compound microscope", "pln": ["(: cnet_partof_af16f797de (PartOf objective compound_microscope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "objective is part of optical telescope", "pln": ["(: cnet_partof_d260d750c8 (PartOf objective optical_telescope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "obolus is part of gram", "pln": ["(: cnet_partof_f059643f0f (PartOf obolus gram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "obverse is part of coin", "pln": ["(: cnet_partof_85bec4138a (PartOf obverse coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "occipital bone is part of cranium", "pln": ["(: cnet_partof_6d4f07634b (PartOf occipital_bone cranium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "occipital gyrus is part of occipital lobe", "pln": ["(: cnet_partof_b59ad84c07 (PartOf occipital_gyrus occipital_lobe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "occipital lobe is part of cerebral cortex", "pln": ["(: cnet_partof_c9bc846c7a (PartOf occipital_lobe cerebral_cortex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "occipital protuberance is part of occipital bone", "pln": ["(: cnet_partof_03f6a66693 (PartOf occipital_protuberance occipital_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "occipitomastoid suture is part of cranium", "pln": ["(: cnet_partof_95bf5ed67d (PartOf occipitomastoid_suture cranium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "occiput is part of human head", "pln": ["(: cnet_partof_a99d04352f (PartOf occiput human_head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "occupational safety and health administration is part of department of labor", "pln": ["(: cnet_partof_d86a0bbe30 (PartOf occupational_safety_and_health_administration department_of_labor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ocean is part of hydrosphere", "pln": ["(: cnet_partof_81983786e4 (PartOf ocean hydrosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oceania is part of pacific", "pln": ["(: cnet_partof_1ad7086712 (PartOf oceania pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "october is part of gregorian calendar", "pln": ["(: cnet_partof_e4259d3fd6 (PartOf october gregorian_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "octopus is part of octopus", "pln": ["(: cnet_partof_4430e49689 (PartOf octopus octopus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "ocular muscle is part of eye", "pln": ["(: cnet_partof_879ba8fe34 (PartOf ocular_muscle eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oder is part of germany", "pln": ["(: cnet_partof_2209df79a5 (PartOf oder germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oder is part of poland", "pln": ["(: cnet_partof_5d44e0b790 (PartOf oder poland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "odessa is part of texa", "pln": ["(: cnet_partof_088bdfc264 (PartOf odessa texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "odessa is part of ukraine", "pln": ["(: cnet_partof_4f41c75894 (PartOf odessa ukraine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "odometer is part of motor vehicle", "pln": ["(: cnet_partof_af46314fc1 (PartOf odometer motor_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "odontoid process is part of axis", "pln": ["(: cnet_partof_a1cc941544 (PartOf odontoid_process axis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "off broadway is part of manhattan", "pln": ["(: cnet_partof_2f4d34b864 (PartOf off_broadway manhattan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "off line equipment is part of computer system", "pln": ["(: cnet_partof_4063a08004 (PartOf off_line_equipment computer_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "offertory is part of holy eucharist", "pln": ["(: cnet_partof_7454918622 (PartOf offertory holy_eucharist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "office is part of office building", "pln": ["(: cnet_partof_a83ec04d28 (PartOf office office_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "office of inspector general is part of federal trade commission", "pln": ["(: cnet_partof_119d26085e (PartOf office_of_inspector_general federal_trade_commission) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "office of intelligence support is part of department of treasury", "pln": ["(: cnet_partof_642920721c (PartOf office_of_intelligence_support department_of_treasury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "office of naval intelligence is part of united state navy", "pln": ["(: cnet_partof_6e449197a2 (PartOf office_of_naval_intelligence united_state_navy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "offing is part of main", "pln": ["(: cnet_partof_2a803de0ef (PartOf offing main) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "ogden is part of utah", "pln": ["(: cnet_partof_fb8516908f (PartOf ogden utah) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ohio is part of midwest", "pln": ["(: cnet_partof_4477574448 (PartOf ohio midwest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ohio is part of united state", "pln": ["(: cnet_partof_569d06632c (PartOf ohio united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ohio state university is part of columbus", "pln": ["(: cnet_partof_ce3ebfcf21 (PartOf ohio_state_university columbus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ohm is part of megohm", "pln": ["(: cnet_partof_94e64d4f4f (PartOf ohm megohm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oil filter is part of lubricating system", "pln": ["(: cnet_partof_5ff23474af (PartOf oil_filter lubricating_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oil pump is part of lubricating system", "pln": ["(: cnet_partof_f3b10d4f4c (PartOf oil_pump lubricating_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ojo del salado is part of ande", "pln": ["(: cnet_partof_84d72d0c27 (PartOf ojo_del_salado ande) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ojo del salado is part of argentina", "pln": ["(: cnet_partof_7b5c8efa93 (PartOf ojo_del_salado argentina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ojo del salado is part of chile", "pln": ["(: cnet_partof_0222a5c41b (PartOf ojo_del_salado chile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "okeechobee is part of florida", "pln": ["(: cnet_partof_56848975a4 (PartOf okeechobee florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "okefenokee swamp is part of florida", "pln": ["(: cnet_partof_1f772dd9ce (PartOf okefenokee_swamp florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "okefenokee swamp is part of georgia", "pln": ["(: cnet_partof_b3820dcd17 (PartOf okefenokee_swamp georgia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "okinawa is part of world war ii", "pln": ["(: cnet_partof_dd80698bf4 (PartOf okinawa world_war_ii) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "okinawa is part of ryukyu island", "pln": ["(: cnet_partof_13ece40bf7 (PartOf okinawa ryukyu_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oklahoma is part of united state", "pln": ["(: cnet_partof_235449d471 (PartOf oklahoma united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oklahoma city is part of oklahoma", "pln": ["(: cnet_partof_1a2e4b54bd (PartOf oklahoma_city oklahoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "okra is part of okra", "pln": ["(: cnet_partof_5ce26f55eb (PartOf okra okra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ola is part of talipot", "pln": ["(: cnet_partof_4e9ac4917a (PartOf ola talipot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "old bailey is part of london", "pln": ["(: cnet_partof_70d6837365 (PartOf old_bailey london) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "old faithful is part of yellowstone national park", "pln": ["(: cnet_partof_ee09b3699f (PartOf old_faithful yellowstone_national_park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "old testament is part of bible", "pln": ["(: cnet_partof_c0bbe4562a (PartOf old_testament bible) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "old world is part of eastern hemisphere", "pln": ["(: cnet_partof_d70162ed1a (PartOf old_world eastern_hemisphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "olduvai gorge is part of tanzania", "pln": ["(: cnet_partof_190f9e2d8e (PartOf olduvai_gorge tanzania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "olecranon is part of ulna", "pln": ["(: cnet_partof_ffd1c30f30 (PartOf olecranon ulna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "olfactory bulb is part of rhinencephalon", "pln": ["(: cnet_partof_d2c8cd2c0f (PartOf olfactory_bulb rhinencephalon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "olfactory nerve is part of sensory system", "pln": ["(: cnet_partof_c6b5895a3e (PartOf olfactory_nerve sensory_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oligocene is part of tertiary", "pln": ["(: cnet_partof_f97947e421 (PartOf oligocene tertiary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oligodendrocyte is part of oligodendroglia", "pln": ["(: cnet_partof_d93abde648 (PartOf oligodendrocyte oligodendroglia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oligodendroglia is part of medullary sheath", "pln": ["(: cnet_partof_549742b6e3 (PartOf oligodendroglia medullary_sheath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "olive is part of olive", "pln": ["(: cnet_partof_97021dedde (PartOf olive olive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "olympia is part of peloponnese", "pln": ["(: cnet_partof_b2e377085a (PartOf olympia peloponnese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "olympia is part of washington", "pln": ["(: cnet_partof_a15708dc6e (PartOf olympia washington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "olympic national park is part of washington", "pln": ["(: cnet_partof_af06c28270 (PartOf olympic_national_park washington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "olympus is part of greece", "pln": ["(: cnet_partof_569d9a6540 (PartOf olympus greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "omaha is part of nebraska", "pln": ["(: cnet_partof_26634b0bfa (PartOf omaha nebraska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oman is part of arabian peninsula", "pln": ["(: cnet_partof_d46c3e9029 (PartOf oman arabian_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oman is part of asia", "pln": ["(: cnet_partof_0e3396889e (PartOf oman asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oman is part of gulf state", "pln": ["(: cnet_partof_e41711d61e (PartOf oman gulf_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "omdurman is part of sudan", "pln": ["(: cnet_partof_e8d997ac7e (PartOf omdurman sudan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "omiya is part of honshu", "pln": ["(: cnet_partof_38dd540a57 (PartOf omiya honshu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "omiya is part of japan", "pln": ["(: cnet_partof_78d04cc33f (PartOf omiya japan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ommatidium is part of compound eye", "pln": ["(: cnet_partof_c24e96bce6 (PartOf ommatidium compound_eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "omsk is part of russia", "pln": ["(: cnet_partof_980868cfa2 (PartOf omsk russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "onion is part of onion", "pln": ["(: cnet_partof_90b8dc05d4 (PartOf onion onion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ontario is part of canada", "pln": ["(: cnet_partof_35ad5a0e55 (PartOf ontario canada) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "opening is part of surface", "pln": ["(: cnet_partof_5c39be5833 (PartOf opening surface) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "opening line is part of new article", "pln": ["(: cnet_partof_c7b9499f09 (PartOf opening_line new_article) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "openmind is part of internet", "pln": ["(: cnet_partof_d7f1fcc67c (PartOf openmind internet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "operating expense is part of operating budget", "pln": ["(: cnet_partof_cfc641fe63 (PartOf operating_expense operating_budget) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "operating system is part of platform", "pln": ["(: cnet_partof_ee106c0120 (PartOf operating_system platform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "operation desert storm is part of persian gulf war", "pln": ["(: cnet_partof_a1ce9299d9 (PartOf operation_desert_storm persian_gulf_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "operator gene is part of operon", "pln": ["(: cnet_partof_c9c0a742b6 (PartOf operator_gene operon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ophryon is part of frontal bone", "pln": ["(: cnet_partof_13407d29a9 (PartOf ophryon frontal_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "optic nerve is part of diencephalon", "pln": ["(: cnet_partof_4a41fc89bd (PartOf optic_nerve diencephalon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "optic nerve is part of visual system", "pln": ["(: cnet_partof_9574fe647e (PartOf optic_nerve visual_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "optical fiber is part of fiber optic cable", "pln": ["(: cnet_partof_e4a867350a (PartOf optical_fiber fiber_optic_cable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "optical fiber is part of fiberscope", "pln": ["(: cnet_partof_f9b709c3fa (PartOf optical_fiber fiberscope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oral stage is part of infancy", "pln": ["(: cnet_partof_d26fd19cba (PartOf oral_stage infancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oran is part of algeria", "pln": ["(: cnet_partof_9fe43f86ec (PartOf oran algeria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "orange is part of orange", "pln": ["(: cnet_partof_c561f53b22 (PartOf orange orange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "orange is part of south africa", "pln": ["(: cnet_partof_cd452c6cb1 (PartOf orange south_africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "orange peel is part of orange", "pln": ["(: cnet_partof_8285b66199 (PartOf orange_peel orange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "orchestra is part of theater", "pln": ["(: cnet_partof_8986060bec (PartOf orchestra theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "orchestra pit is part of theater", "pln": ["(: cnet_partof_1ac7114cdd (PartOf orchestra_pit theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "order arm is part of manual of arm", "pln": ["(: cnet_partof_4cfe9aa027 (PartOf order_arm manual_of_arm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ordination is part of holy order", "pln": ["(: cnet_partof_c9a37019c4 (PartOf ordination holy_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ordovician is part of paleozoic", "pln": ["(: cnet_partof_b882a129b2 (PartOf ordovician paleozoic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ore is part of danish krone", "pln": ["(: cnet_partof_f76ce1d76f (PartOf ore danish_krone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ore is part of norwegian krone", "pln": ["(: cnet_partof_cc093be030 (PartOf ore norwegian_krone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ore is part of swedish krona", "pln": ["(: cnet_partof_ff430f33f4 (PartOf ore swedish_krona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oregon is part of united state", "pln": ["(: cnet_partof_15224f94f5 (PartOf oregon united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "organ is part of body", "pln": ["(: cnet_partof_c46b00b610 (PartOf organ body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "organ of corti is part of cochlea", "pln": ["(: cnet_partof_568953c92a (PartOf organ_of_corti cochlea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "organ of hearing is part of ear", "pln": ["(: cnet_partof_b867dade10 (PartOf organ_of_hearing ear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "organ pipe is part of organ", "pln": ["(: cnet_partof_55641f06c1 (PartOf organ_pipe organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "organelle is part of cell", "pln": ["(: cnet_partof_fdfdcb057e (PartOf organelle cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "organ is part of organism", "pln": ["(: cnet_partof_aae071f4ca (PartOf organ organism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "orinoco is part of colombia", "pln": ["(: cnet_partof_19ea253cbd (PartOf orinoco colombia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "orkney islands is part of north sea", "pln": ["(: cnet_partof_f429840d2a (PartOf orkney_islands north_sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "orinoco is part of venezuela", "pln": ["(: cnet_partof_c19189107a (PartOf orinoco venezuela) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "orissa is part of india", "pln": ["(: cnet_partof_c1786ca09a (PartOf orissa india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "orizaba is part of mexico", "pln": ["(: cnet_partof_36e198d2e8 (PartOf orizaba mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "orkney island is part of atlantic", "pln": ["(: cnet_partof_ca5da7b460 (PartOf orkney_island atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "orkney island is part of north sea", "pln": ["(: cnet_partof_9235029e10 (PartOf orkney_island north_sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "orkney island is part of scotland", "pln": ["(: cnet_partof_71fdcf3f33 (PartOf orkney_island scotland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "orlando is part of florida", "pln": ["(: cnet_partof_2dd3328364 (PartOf orlando florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "orleanais is part of france", "pln": ["(: cnet_partof_297b9d70a7 (PartOf orleanais france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "orlean is part of france", "pln": ["(: cnet_partof_9d8811d1f3 (PartOf orlean france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "orly is part of paris", "pln": ["(: cnet_partof_6e46b31450 (PartOf orly paris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "orono is part of maine", "pln": ["(: cnet_partof_b0759cba95 (PartOf orono maine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oropharynx is part of throat", "pln": ["(: cnet_partof_3e6f4ccdc4 (PartOf oropharynx throat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "orphrey is part of vestment", "pln": ["(: cnet_partof_7a6d96b859 (PartOf orphrey vestment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "orumiyeh is part of iran", "pln": ["(: cnet_partof_3e734de20e (PartOf orumiyeh iran) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "osage is part of missouri", "pln": ["(: cnet_partof_336707033a (PartOf osage missouri) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "osaka is part of honshu", "pln": ["(: cnet_partof_ce6f463a47 (PartOf osaka honshu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "osaka is part of japan", "pln": ["(: cnet_partof_799dbcc961 (PartOf osaka japan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "osaka bay is part of japan", "pln": ["(: cnet_partof_93d622acff (PartOf osaka_bay japan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "osaka bay is part of pacific", "pln": ["(: cnet_partof_afc2b2eb9c (PartOf osaka_bay pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oscilloscope is part of cardiac monitor", "pln": ["(: cnet_partof_5d9de1b739 (PartOf oscilloscope cardiac_monitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oscilloscope is part of monitor", "pln": ["(: cnet_partof_ad3c491902 (PartOf oscilloscope monitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oscilloscope is part of radar", "pln": ["(: cnet_partof_68c5fd3984 (PartOf oscilloscope radar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oslo is part of norway", "pln": ["(: cnet_partof_fb4437c0c1 (PartOf oslo norway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "osmosis is part of dialysis", "pln": ["(: cnet_partof_9c4a31973e (PartOf osmosis dialysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ossicle is part of middle ear", "pln": ["(: cnet_partof_f897830927 (PartOf ossicle middle_ear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ostrava is part of czech republic", "pln": ["(: cnet_partof_c8dcd0687b (PartOf ostrava czech_republic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ottawa is part of ontario", "pln": ["(: cnet_partof_51e767bf50 (PartOf ottawa ontario) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ottawa river is part of canada", "pln": ["(: cnet_partof_c2f581a5b7 (PartOf ottawa_river canada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ottoman empire is part of africa", "pln": ["(: cnet_partof_c34e87b143 (PartOf ottoman_empire africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ottoman empire is part of asia", "pln": ["(: cnet_partof_405c95566d (PartOf ottoman_empire asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ottoman empire is part of europe", "pln": ["(: cnet_partof_cee1823de2 (PartOf ottoman_empire europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ottumwa is part of iowa", "pln": ["(: cnet_partof_79dbab19c7 (PartOf ottumwa iowa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ouachita is part of arkansa", "pln": ["(: cnet_partof_9282934268 (PartOf ouachita arkansa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ouachita is part of louisiana", "pln": ["(: cnet_partof_1f312ec797 (PartOf ouachita louisiana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oujda is part of morocco", "pln": ["(: cnet_partof_9d65e9514d (PartOf oujda morocco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ounce is part of pound", "pln": ["(: cnet_partof_fe79b02b48 (PartOf ounce pound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ounce is part of troy pound", "pln": ["(: cnet_partof_112b91f5d0 (PartOf ounce troy_pound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "ouse is part of england", "pln": ["(: cnet_partof_de46efb920 (PartOf ouse england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "outback is part of australian desert", "pln": ["(: cnet_partof_24afd311b9 (PartOf outback australian_desert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "outer hebride is part of hebride", "pln": ["(: cnet_partof_3caf7fdbf9 (PartOf outer_hebride hebride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "outer space is part of aerospace", "pln": ["(: cnet_partof_28677fd4c4 (PartOf outer_space aerospace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "outfield is part of ball field", "pln": ["(: cnet_partof_6975a7b9ec (PartOf outfield ball_field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "output routine is part of output program", "pln": ["(: cnet_partof_2df4b36080 (PartOf output_routine output_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "output to input ratio is part of frequency response", "pln": ["(: cnet_partof_583b155380 (PartOf output_to_input_ratio frequency_response) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "outrigger is part of outrigger canoe", "pln": ["(: cnet_partof_487b1594c3 (PartOf outrigger outrigger_canoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "outsole is part of boot", "pln": ["(: cnet_partof_f07fceba56 (PartOf outsole boot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "outsole is part of shoe", "pln": ["(: cnet_partof_d9e46fd559 (PartOf outsole shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oval office is part of white house", "pln": ["(: cnet_partof_5868d1f622 (PartOf oval_office white_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ovarian artery is part of ovary", "pln": ["(: cnet_partof_6cf7b4fafd (PartOf ovarian_artery ovary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "ovary is part of flower", "pln": ["(: cnet_partof_10529c0add (PartOf ovary flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ovary is part of female reproductive system", "pln": ["(: cnet_partof_a12ee9a298 (PartOf ovary female_reproductive_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "over is part of playing period", "pln": ["(: cnet_partof_9a27824429 (PartOf over playing_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "overhead is part of cabin", "pln": ["(: cnet_partof_5361414041 (PartOf overhead cabin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "overtime is part of athletic game", "pln": ["(: cnet_partof_048a28bd5c (PartOf overtime athletic_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oviedo is part of spain", "pln": ["(: cnet_partof_4aa66369b0 (PartOf oviedo spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ovum is part of female reproductive system", "pln": ["(: cnet_partof_c746304163 (PartOf ovum female_reproductive_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "owensboro is part of kentucky", "pln": ["(: cnet_partof_781ac9123d (PartOf owensboro kentucky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oxford is part of england", "pln": ["(: cnet_partof_24850bc5ba (PartOf oxford england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oxford is part of georgia", "pln": ["(: cnet_partof_838dc52492 (PartOf oxford georgia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oxford university is part of oxford", "pln": ["(: cnet_partof_bc8c27b21f (PartOf oxford_university oxford) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oxidative phosphorylation is part of kreb cycle", "pln": ["(: cnet_partof_1ef7ed2527 (PartOf oxidative_phosphorylation kreb_cycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oxygen is part of air", "pln": ["(: cnet_partof_cd97546cfc (PartOf oxygen air) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "oyster is part of bird", "pln": ["(: cnet_partof_b10e843598 (PartOf oyster bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "oyster plant is part of salsify", "pln": ["(: cnet_partof_b3d7f6cd75 (PartOf oyster_plant salsify) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ozark is part of arkansa", "pln": ["(: cnet_partof_fa04afc085 (PartOf ozark arkansa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ozone hole is part of ozone layer", "pln": ["(: cnet_partof_2ae0d0ff76 (PartOf ozone_hole ozone_layer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ozone layer is part of stratosphere", "pln": ["(: cnet_partof_23ae1e7c01 (PartOf ozone_layer stratosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "p is part of alphabet", "pln": ["(: cnet_partof_e928ba62bd (PartOf p alphabet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pablum is part of soft diet", "pln": ["(: cnet_partof_75431dbf46 (PartOf pablum soft_diet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pace is part of walk", "pln": ["(: cnet_partof_b00d7559de (PartOf pace walk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pachytene is part of prophase", "pln": ["(: cnet_partof_e4632723ba (PartOf pachytene prophase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pacific bell park is part of san francisco", "pln": ["(: cnet_partof_5bc463c390 (PartOf pacific_bell_park san_francisco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pacific coast is part of pacific", "pln": ["(: cnet_partof_4815593d3b (PartOf pacific_coast pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pacific northwest is part of british columbia", "pln": ["(: cnet_partof_5ac2f9ff6a (PartOf pacific_northwest british_columbia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pacific northwest is part of oregon", "pln": ["(: cnet_partof_69d385f6d2 (PartOf pacific_northwest oregon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pacific northwest is part of united state", "pln": ["(: cnet_partof_78030993c2 (PartOf pacific_northwest united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "pacific northwest is part of washington", "pln": ["(: cnet_partof_ea0814acf9 (PartOf pacific_northwest washington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "pages is part of book", "pln": ["(: cnet_partof_4e914ac826 (PartOf pages book) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pacinian corpuscle is part of skin", "pln": ["(: cnet_partof_b9bb10fb28 (PartOf pacinian_corpuscle skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pad is part of finger", "pln": ["(: cnet_partof_8e412c75c3 (PartOf pad finger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pad is part of paw", "pln": ["(: cnet_partof_e1f9566eee (PartOf pad paw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pad is part of aquatic plant", "pln": ["(: cnet_partof_5d68eace0e (PartOf pad aquatic_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "paddle is part of millwheel", "pln": ["(: cnet_partof_3f87a37930 (PartOf paddle millwheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "paddle is part of paddlewheel", "pln": ["(: cnet_partof_07d4c9617c (PartOf paddle paddlewheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "paddle box is part of paddlewheel", "pln": ["(: cnet_partof_6ba5d34421 (PartOf paddle_box paddlewheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "padua is part of veneto", "pln": ["(: cnet_partof_191c178cbe (PartOf padua veneto) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "paducah is part of kentucky", "pln": ["(: cnet_partof_af8e114576 (PartOf paducah kentucky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "page is part of book", "pln": ["(: cnet_partof_e373fe1abe (PartOf page book) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pagination is part of page", "pln": ["(: cnet_partof_56ed4a2c8e (PartOf pagination page) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pago pago is part of american samoa", "pln": ["(: cnet_partof_7be3ab5738 (PartOf pago_pago american_samoa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pahang is part of malaysia", "pln": ["(: cnet_partof_d9bc606ce7 (PartOf pahang malaysia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pain is part of life", "pln": ["(: cnet_partof_4ed00e9080 (PartOf pain life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "painted desert is part of arizona", "pln": ["(: cnet_partof_088fd5555b (PartOf painted_desert arizona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "painting is part of construction", "pln": ["(: cnet_partof_b3677e8e82 (PartOf painting construction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "paisa is part of indian rupee", "pln": ["(: cnet_partof_0fb5bd9233 (PartOf paisa indian_rupee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "paisa is part of nepalese rupee", "pln": ["(: cnet_partof_31da22cd89 (PartOf paisa nepalese_rupee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "paisa is part of pakistani rupee", "pln": ["(: cnet_partof_02764da352 (PartOf paisa pakistani_rupee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "paisa is part of taka", "pln": ["(: cnet_partof_ab1637be10 (PartOf paisa taka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pakistan is part of asia", "pln": ["(: cnet_partof_34f609d60e (PartOf pakistan asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "palate is part of mouth", "pln": ["(: cnet_partof_f992ac4907 (PartOf palate mouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "palatine is part of seven hill of rome", "pln": ["(: cnet_partof_e155cc2cb2 (PartOf palatine seven_hill_of_rome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "palau is part of pacific", "pln": ["(: cnet_partof_f7486da773 (PartOf palau pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "palau is part of palau", "pln": ["(: cnet_partof_a5c1fb946a (PartOf palau palau) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "paleocene is part of tertiary", "pln": ["(: cnet_partof_84b16d963d (PartOf paleocene tertiary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "paleocerebellum is part of cerebellum", "pln": ["(: cnet_partof_07721e31bb (PartOf paleocerebellum cerebellum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "paleolithic age is part of stone age", "pln": ["(: cnet_partof_e68f36927d (PartOf paleolithic_age stone_age) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "palermo is part of sicily", "pln": ["(: cnet_partof_1a15e8a9af (PartOf palermo sicily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "palestine is part of asia", "pln": ["(: cnet_partof_734d702d59 (PartOf palestine asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pall mall is part of london", "pln": ["(: cnet_partof_39b2943f75 (PartOf pall_mall london) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pallette is part of body armor", "pln": ["(: cnet_partof_5b31558dfe (PartOf pallette body_armor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pallidum is part of lenticular nucleus", "pln": ["(: cnet_partof_24fe4a800f (PartOf pallidum lenticular_nucleus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "palm is part of hand", "pln": ["(: cnet_partof_bf80279f7f (PartOf palm hand) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "pancreas is part of human body", "pln": ["(: cnet_partof_85eb46fbe3 (PartOf pancreas human_body) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "pancreatic duct is part of pancreas", "pln": ["(: cnet_partof_a882eba5ca (PartOf pancreatic_duct pancreas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "palm beach is part of florida", "pln": ["(: cnet_partof_734a718891 (PartOf palm_beach florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "palm nut is part of oil palm", "pln": ["(: cnet_partof_091fa94af2 (PartOf palm_nut oil_palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "palo alto is part of california", "pln": ["(: cnet_partof_e5c958d067 (PartOf palo_alto california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pamir mountain is part of afghanistan", "pln": ["(: cnet_partof_cb975b94d3 (PartOf pamir_mountain afghanistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pamir mountain is part of china", "pln": ["(: cnet_partof_d156c2623f (PartOf pamir_mountain china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pamir mountain is part of kyrgyzstan", "pln": ["(: cnet_partof_59d70d5026 (PartOf pamir_mountain kyrgyzstan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pamir mountain is part of pakistan", "pln": ["(: cnet_partof_7da04990e6 (PartOf pamir_mountain pakistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pamir mountain is part of tajikistan", "pln": ["(: cnet_partof_92c3b29b51 (PartOf pamir_mountain tajikistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pampa is part of argentina", "pln": ["(: cnet_partof_98a9d4e563 (PartOf pampa argentina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pan american day is part of april", "pln": ["(: cnet_partof_11cddaee39 (PartOf pan_american_day april) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "panama is part of isthmus of panama", "pln": ["(: cnet_partof_477e06637f (PartOf panama isthmus_of_panama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "panama canal is part of panama", "pln": ["(: cnet_partof_3f283325f9 (PartOf panama_canal panama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "panama canal zone is part of panama", "pln": ["(: cnet_partof_33c1167302 (PartOf panama_canal_zone panama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "panama city is part of florida", "pln": ["(: cnet_partof_c391c37b7b (PartOf panama_city florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "panama city is part of panama", "pln": ["(: cnet_partof_21f29902e0 (PartOf panama_city panama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pancrea is part of human body", "pln": ["(: cnet_partof_b5b83aefd9 (PartOf pancrea human_body) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pancrea is part of digestive system", "pln": ["(: cnet_partof_c0ef37836c (PartOf pancrea digestive_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pancreatic duct is part of pancrea", "pln": ["(: cnet_partof_f91de46b25 (PartOf pancreatic_duct pancrea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pane is part of window", "pln": ["(: cnet_partof_c42d13b165 (PartOf pane window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "paneling is part of exterior door", "pln": ["(: cnet_partof_c70d7afbde (PartOf paneling exterior_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "paneling is part of sliding door", "pln": ["(: cnet_partof_e52f75ee6d (PartOf paneling sliding_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "paneling is part of swing door", "pln": ["(: cnet_partof_7cb0796012 (PartOf paneling swing_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "paneling is part of wall", "pln": ["(: cnet_partof_4bcca3f5dc (PartOf paneling wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "panhandle is part of pan", "pln": ["(: cnet_partof_c00a0c8479 (PartOf panhandle pan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pant leg is part of pair of trouser", "pln": ["(: cnet_partof_6678257300 (PartOf pant_leg pair_of_trouser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "papal state is part of italy", "pln": ["(: cnet_partof_7923ae99b8 (PartOf papal_state italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "papaw is part of pawpaw", "pln": ["(: cnet_partof_f579a8bcba (PartOf papaw pawpaw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "papaya is part of papaya", "pln": ["(: cnet_partof_87f09ee0c2 (PartOf papaya papaya) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "papeete is part of tahiti", "pln": ["(: cnet_partof_6e00a7fc18 (PartOf papeete tahiti) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "papilla is part of sense organ", "pln": ["(: cnet_partof_d8b336cccb (PartOf papilla sense_organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "papillary muscle is part of atrioventricular valve", "pln": ["(: cnet_partof_553a93075e (PartOf papillary_muscle atrioventricular_valve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "papua is part of papua new guinea", "pln": ["(: cnet_partof_4e11a32560 (PartOf papua papua_new_guinea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "papua new guinea is part of new guinea", "pln": ["(: cnet_partof_7c66e22a66 (PartOf papua_new_guinea new_guinea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "para is part of brazil", "pln": ["(: cnet_partof_76ecb87eba (PartOf para brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "para is part of yugoslavian dinar", "pln": ["(: cnet_partof_7ffd14996c (PartOf para yugoslavian_dinar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "parabolic mirror is part of reflecting telescope", "pln": ["(: cnet_partof_6a9023e039 (PartOf parabolic_mirror reflecting_telescope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "parafovea is part of retina", "pln": ["(: cnet_partof_c41c061f66 (PartOf parafovea retina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "paragraph is part of text", "pln": ["(: cnet_partof_37df1ac13b (PartOf paragraph text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "paraguay is part of south america", "pln": ["(: cnet_partof_deaf8a3a99 (PartOf paraguay south_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "paramaribo is part of suriname", "pln": ["(: cnet_partof_4be21f2a06 (PartOf paramaribo suriname) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "parana is part of argentina", "pln": ["(: cnet_partof_9e4183e0b2 (PartOf parana argentina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "parana is part of brazil", "pln": ["(: cnet_partof_bdc1732cf2 (PartOf parana brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "parana is part of paraguay", "pln": ["(: cnet_partof_2a4695f88f (PartOf parana paraguay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "paraph is part of signature", "pln": ["(: cnet_partof_0972e7afcc (PartOf paraph signature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "parasympathetic nervous system is part of autonomic nervous system", "pln": ["(: cnet_partof_0ff9070d15 (PartOf parasympathetic_nervous_system autonomic_nervous_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "parietal bone is part of cranium", "pln": ["(: cnet_partof_10437af20c (PartOf parietal_bone cranium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "parietal gyrus is part of parietal lobe", "pln": ["(: cnet_partof_c807bd7b61 (PartOf parietal_gyrus parietal_lobe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "parietal lobe is part of cerebral cortex", "pln": ["(: cnet_partof_e460403cfe (PartOf parietal_lobe cerebral_cortex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "parietal pericardium is part of pericardium", "pln": ["(: cnet_partof_bbcd7f9d48 (PartOf parietal_pericardium pericardium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "parietomastoid suture is part of cranium", "pln": ["(: cnet_partof_4470a1033a (PartOf parietomastoid_suture cranium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "paris is part of france", "pln": ["(: cnet_partof_59705e85c8 (PartOf paris france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "paris is part of texa", "pln": ["(: cnet_partof_ef9b5b0cc7 (PartOf paris texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "paris university is part of paris", "pln": ["(: cnet_partof_08fc29b0e8 (PartOf paris_university paris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "parish is part of diocese", "pln": ["(: cnet_partof_fd6fe8b350 (PartOf parish diocese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "park is part of urban area", "pln": ["(: cnet_partof_9129555921 (PartOf park urban_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "park avenue is part of manhattan", "pln": ["(: cnet_partof_9be8782057 (PartOf park_avenue manhattan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "parkersburg is part of west virginia", "pln": ["(: cnet_partof_a41ed0bbf2 (PartOf parkersburg west_virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "parnaiba is part of brazil", "pln": ["(: cnet_partof_cd80117038 (PartOf parnaiba brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "parnassus is part of greece", "pln": ["(: cnet_partof_cf696bda29 (PartOf parnassus greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "parotitis is part of mump", "pln": ["(: cnet_partof_bf4bf25eb4 (PartOf parotitis mump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "parquet is part of theater", "pln": ["(: cnet_partof_2e939c2039 (PartOf parquet theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "parquet circle is part of theater", "pln": ["(: cnet_partof_67f6227005 (PartOf parquet_circle theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "par distilis is part of anterior pituitary", "pln": ["(: cnet_partof_de1f587f38 (PartOf par_distilis anterior_pituitary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "par intermedia is part of posterior pituitary", "pln": ["(: cnet_partof_8c7a3587ec (PartOf par_intermedia posterior_pituitary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "parser is part of compiler", "pln": ["(: cnet_partof_3cfc14d618 (PartOf parser compiler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "parsnip is part of cultivated parsnip", "pln": ["(: cnet_partof_3d6b387e46 (PartOf parsnip cultivated_parsnip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "parson s nose is part of bird", "pln": ["(: cnet_partof_2f5dba5669 (PartOf parson_s_nose bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "part is part of whole", "pln": ["(: cnet_partof_57a0555fa2 (PartOf part whole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "part is part of hair", "pln": ["(: cnet_partof_76057ae03e (PartOf part hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "part is part of meronymy", "pln": ["(: cnet_partof_d486691d65 (PartOf part meronymy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "part is part of unit", "pln": ["(: cnet_partof_6572f0b81a (PartOf part unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "parthenon is part of athen", "pln": ["(: cnet_partof_8332edc011 (PartOf parthenon athen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "parthia is part of asia", "pln": ["(: cnet_partof_42e7b08703 (PartOf parthia asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "parturiency is part of pregnancy", "pln": ["(: cnet_partof_451d8c08b0 (PartOf parturiency pregnancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "parturition is part of reproduction", "pln": ["(: cnet_partof_3d9c57be0d (PartOf parturition reproduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pas de deux is part of ballet", "pln": ["(: cnet_partof_497bb7e78c (PartOf pas_de_deux ballet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pas de quatre is part of ballet", "pln": ["(: cnet_partof_b919686e12 (PartOf pas_de_quatre ballet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pas de trois is part of ballet", "pln": ["(: cnet_partof_22dd4eb087 (PartOf pas_de_trois ballet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pasadena is part of california", "pln": ["(: cnet_partof_635ac98d3b (PartOf pasadena california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pass is part of range", "pln": ["(: cnet_partof_0d3d9c1131 (PartOf pass range) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "passage is part of text", "pln": ["(: cnet_partof_4916ad2d81 (PartOf passage text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "passion fruit is part of passionflower", "pln": ["(: cnet_partof_ca334d46d8 (PartOf passion_fruit passionflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "past is part of life", "pln": ["(: cnet_partof_1f475b3d99 (PartOf past life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pastern is part of horse s foot", "pln": ["(: cnet_partof_efdcdfbc78 (PartOf pastern horse_s_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pasture is part of country", "pln": ["(: cnet_partof_ee204c0a37 (PartOf pasture country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "patagonia is part of argentina", "pln": ["(: cnet_partof_4693c32b4b (PartOf patagonia argentina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "patagonia is part of chile", "pln": ["(: cnet_partof_2701ef43b7 (PartOf patagonia chile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "patagonian desert is part of patagonia", "pln": ["(: cnet_partof_bd27520e70 (PartOf patagonian_desert patagonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pate is part of human head", "pln": ["(: cnet_partof_dc5549ef49 (PartOf pate human_head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "patella is part of knee", "pln": ["(: cnet_partof_8515eb37b4 (PartOf patella knee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "patent and trademark office database is part of department of commerce", "pln": ["(: cnet_partof_ea338a511c (PartOf patent_and_trademark_office_database department_of_commerce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "paterson is part of new jersey", "pln": ["(: cnet_partof_fd39dcb339 (PartOf paterson new_jersey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "patio is part of garden", "pln": ["(: cnet_partof_dab784b57a (PartOf patio garden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "patriot s day is part of april", "pln": ["(: cnet_partof_b5fbe37e58 (PartOf patriot_s_day april) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pattypan squash is part of cymling", "pln": ["(: cnet_partof_3ff1e37708 (PartOf pattypan_squash cymling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "paulo afonso is part of brazil", "pln": ["(: cnet_partof_5b42440a3a (PartOf paulo_afonso brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "paw is part of canine", "pln": ["(: cnet_partof_cca38ba385 (PartOf paw canine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "paw is part of feline", "pln": ["(: cnet_partof_857a9cedfc (PartOf paw feline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "pawl is part of ratchet", "pln": ["(: cnet_partof_63bbe547e2 (PartOf pawl ratchet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "paying taxe is part of of life", "pln": ["(: cnet_partof_4a4aa16d7d (PartOf paying_taxe of_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pay de la loire is part of france", "pln": ["(: cnet_partof_7a3bf7022d (PartOf pay_de_la_loire france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pb is part of exabyte", "pln": ["(: cnet_partof_0aa5545c03 (PartOf pb exabyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pc board is part of personal computer", "pln": ["(: cnet_partof_4996f0871f (PartOf pc_board personal_computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pe is part of hebrew alphabet", "pln": ["(: cnet_partof_414fb9a78f (PartOf pe hebrew_alphabet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pea is part of pea", "pln": ["(: cnet_partof_eddcf46253 (PartOf pea pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pea pod is part of pea", "pln": ["(: cnet_partof_dff318f3c6 (PartOf pea_pod pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "peach is part of peach", "pln": ["(: cnet_partof_efd7211fe7 (PartOf peach peach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "peanut is part of peanut", "pln": ["(: cnet_partof_a07e2330d6 (PartOf peanut peanut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pear is part of pear", "pln": ["(: cnet_partof_2ff9403b8e (PartOf pear pear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pearl harbor is part of oahu", "pln": ["(: cnet_partof_29f9ef7b26 (PartOf pearl_harbor oahu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "pearl river is part of mississippi", "pln": ["(: cnet_partof_17d871ffe7 (PartOf pearl_river mississippi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pebibit is part of exbibit", "pln": ["(: cnet_partof_214da8e1e7 (PartOf pebibit exbibit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pecan is part of pecan", "pln": ["(: cnet_partof_3c31311ac4 (PartOf pecan pecan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "peck is part of bushel", "pln": ["(: cnet_partof_be1926c3ec (PartOf peck bushel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "peco is part of new mexico", "pln": ["(: cnet_partof_7707cdb6bc (PartOf peco new_mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "peco is part of texa", "pln": ["(: cnet_partof_115f4c133f (PartOf peco texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pectoral is part of thorax", "pln": ["(: cnet_partof_ffdcb80cbd (PartOf pectoral thorax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "pectoral girdle is part of appendicular skeleton", "pln": ["(: cnet_partof_3c81b714a0 (PartOf pectoral_girdle appendicular_skeleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pedal is part of bicycle", "pln": ["(: cnet_partof_4ce94c74d7 (PartOf pedal bicycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pedal is part of motor vehicle", "pln": ["(: cnet_partof_bcfa9686a6 (PartOf pedal motor_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "pedal is part of organ", "pln": ["(: cnet_partof_d32779f944 (PartOf pedal organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "pedestal is part of column", "pln": ["(: cnet_partof_9f6868887f (PartOf pedestal column) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "peduncle is part of forebrain", "pln": ["(: cnet_partof_d031684e0f (PartOf peduncle forebrain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "peduncle is part of pedunculated polyp", "pln": ["(: cnet_partof_31ad88d49a (PartOf peduncle pedunculated_polyp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pee dee is part of north carolina", "pln": ["(: cnet_partof_e8f159928a (PartOf pee_dee north_carolina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pee dee is part of south carolina", "pln": ["(: cnet_partof_ab58d3d5cf (PartOf pee_dee south_carolina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "peel is part of edible fruit", "pln": ["(: cnet_partof_c5016907c4 (PartOf peel edible_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "peen is part of hammerhead", "pln": ["(: cnet_partof_620f5414b1 (PartOf peen hammerhead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "peg is part of dinghy", "pln": ["(: cnet_partof_d98f0c7eb6 (PartOf peg dinghy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "peg is part of stringed instrument", "pln": ["(: cnet_partof_7a030ec374 (PartOf peg stringed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "peloponnese is part of greece", "pln": ["(: cnet_partof_02e182097a (PartOf peloponnese greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pelvis is part of appendicular skeleton", "pln": ["(: cnet_partof_450e35ab91 (PartOf pelvis appendicular_skeleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pelvis is part of kidney", "pln": ["(: cnet_partof_b909f8a654 (PartOf pelvis kidney) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "penal institution is part of infrastructure", "pln": ["(: cnet_partof_c91b290a98 (PartOf penal_institution infrastructure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "penalty box is part of ice hockey rink", "pln": ["(: cnet_partof_2dc5f3cee3 (PartOf penalty_box ice_hockey_rink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "penang is part of malaysia", "pln": ["(: cnet_partof_e62afa9d93 (PartOf penang malaysia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "pendant is part of necklace", "pln": ["(: cnet_partof_c27776da49 (PartOf pendant necklace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "pendant is part of pendant earring", "pln": ["(: cnet_partof_baf2448320 (PartOf pendant pendant_earring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "penis is part of body", "pln": ["(: cnet_partof_693416df42 (PartOf penis body) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "penis is part of male", "pln": ["(: cnet_partof_446e5e62a0 (PartOf penis male) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "penis is part of normal male human body", "pln": ["(: cnet_partof_2ead46697a (PartOf penis normal_male_human_body) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "penis is part of male genitalia", "pln": ["(: cnet_partof_d4aad9fe37 (PartOf penis male_genitalia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "penis is part of male reproductive system", "pln": ["(: cnet_partof_b968615338 (PartOf penis male_reproductive_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "penni is part of markka", "pln": ["(: cnet_partof_24b05ad199 (PartOf penni markka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pennine is part of england", "pln": ["(: cnet_partof_740c314d7b (PartOf pennine england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pennon is part of bird", "pln": ["(: cnet_partof_67f8c2aa7f (PartOf pennon bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pennsylvania is part of mid atlantic state", "pln": ["(: cnet_partof_577a4ce332 (PartOf pennsylvania mid_atlantic_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pennsylvania is part of united state", "pln": ["(: cnet_partof_5cab0be75e (PartOf pennsylvania united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pennsylvanian is part of carboniferous", "pln": ["(: cnet_partof_6b5f5c7830 (PartOf pennsylvanian carboniferous) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "penny is part of british pound", "pln": ["(: cnet_partof_b106925dc8 (PartOf penny british_pound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "penny is part of irish pound", "pln": ["(: cnet_partof_f1c66a5a75 (PartOf penny irish_pound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pennyweight is part of ounce", "pln": ["(: cnet_partof_37ebc8556f (PartOf pennyweight ounce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "penobscot is part of maine", "pln": ["(: cnet_partof_c57dc2ed1c (PartOf penobscot maine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "penobscot bay is part of atlantic", "pln": ["(: cnet_partof_cf97d703c4 (PartOf penobscot_bay atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pensacola is part of florida", "pln": ["(: cnet_partof_bc7d9945ea (PartOf pensacola florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pentecost is part of whitsun", "pln": ["(: cnet_partof_7b70a74976 (PartOf pentecost whitsun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "peoria is part of illinois", "pln": ["(: cnet_partof_50436046d9 (PartOf peoria illinois) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pepper is part of capsicum", "pln": ["(: cnet_partof_41fa190bd5 (PartOf pepper capsicum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pepper is part of pepper", "pln": ["(: cnet_partof_e68f545e88 (PartOf pepper pepper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "perak is part of malaysia", "pln": ["(: cnet_partof_6d27810512 (PartOf perak malaysia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "perch is part of roost", "pln": ["(: cnet_partof_3bdca28047 (PartOf perch roost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "perch is part of european perch", "pln": ["(: cnet_partof_f5c25be776 (PartOf perch european_perch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "perch is part of yellow perch", "pln": ["(: cnet_partof_2ffea37867 (PartOf perch yellow_perch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "perch is part of furlong", "pln": ["(: cnet_partof_fa0450e836 (PartOf perch furlong) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "perejil is part of mediterranean", "pln": ["(: cnet_partof_740223ccba (PartOf perejil mediterranean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pergamum is part of turkey", "pln": ["(: cnet_partof_d982929407 (PartOf pergamum turkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "perianth is part of flower", "pln": ["(: cnet_partof_7ebf12e7f9 (PartOf perianth flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "periapsis is part of orbit", "pln": ["(: cnet_partof_e18f052b27 (PartOf periapsis orbit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pericarp is part of seed", "pln": ["(: cnet_partof_db43f48d81 (PartOf pericarp seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "perilymph is part of inner ear", "pln": ["(: cnet_partof_e4a04d5570 (PartOf perilymph inner_ear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "period is part of playing period", "pln": ["(: cnet_partof_7fced1ca56 (PartOf period playing_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "period is part of era", "pln": ["(: cnet_partof_84655668a8 (PartOf period era) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "period is part of history", "pln": ["(: cnet_partof_e1b21c0ddd (PartOf period history) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "peripheral is part of computer", "pln": ["(: cnet_partof_16a04c8aff (PartOf peripheral computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "peripheral nervous system is part of nervous system", "pln": ["(: cnet_partof_58122c3ff8 (PartOf peripheral_nervous_system nervous_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "periscope is part of submarine", "pln": ["(: cnet_partof_9b424bb3a4 (PartOf periscope submarine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "peristome is part of invertebrate", "pln": ["(: cnet_partof_d8aab1c168 (PartOf peristome invertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "peristome is part of capsule", "pln": ["(: cnet_partof_fa2995d821 (PartOf peristome capsule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "perlis is part of malaysia", "pln": ["(: cnet_partof_9299e04af0 (PartOf perlis malaysia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "perm is part of russia", "pln": ["(: cnet_partof_f5bc99835f (PartOf perm russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "permian is part of paleozoic", "pln": ["(: cnet_partof_d451f31f80 (PartOf permian paleozoic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "peroneal vein is part of leg", "pln": ["(: cnet_partof_443ec8264c (PartOf peroneal_vein leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "peroration is part of oration", "pln": ["(: cnet_partof_5ae682ceda (PartOf peroration oration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "persepolis is part of iran", "pln": ["(: cnet_partof_73282ea092 (PartOf persepolis iran) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "persia is part of asia", "pln": ["(: cnet_partof_208f304461 (PartOf persia asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "persian gulf is part of arabian sea", "pln": ["(: cnet_partof_e53a84bc2e (PartOf persian_gulf arabian_sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "persimmon is part of american persimmon", "pln": ["(: cnet_partof_74481f360b (PartOf persimmon american_persimmon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "persimmon is part of japanese persimmon", "pln": ["(: cnet_partof_d0a15ead71 (PartOf persimmon japanese_persimmon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "person is part of society", "pln": ["(: cnet_partof_6fba210b2b (PartOf person society) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "personality is part of person", "pln": ["(: cnet_partof_61e2f24424 (PartOf personality person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "perth is part of western australia", "pln": ["(: cnet_partof_48ec00a4a5 (PartOf perth western_australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "peru is part of south america", "pln": ["(: cnet_partof_68decc89ed (PartOf peru south_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pesewa is part of cedi", "pln": ["(: cnet_partof_6f18d5d54e (PartOf pesewa cedi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "peshawar is part of pakistan", "pln": ["(: cnet_partof_b0f3ba2382 (PartOf peshawar pakistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "petabit is part of exabit", "pln": ["(: cnet_partof_984059f0af (PartOf petabit exabit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "petronas towers is part of kuala lumpur", "pln": ["(: cnet_partof_1f0e54e5b4 (PartOf petronas_towers kuala_lumpur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "petabyte is part of exbibyte", "pln": ["(: cnet_partof_c210d98bd1 (PartOf petabyte exbibyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "petal is part of corolla", "pln": ["(: cnet_partof_826a220441 (PartOf petal corolla) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "petersburg is part of american civil war", "pln": ["(: cnet_partof_a6be5de08c (PartOf petersburg american_civil_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "petersburg is part of virginia", "pln": ["(: cnet_partof_ad44a89a36 (PartOf petersburg virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "petit mal epilepsy is part of epilepsia minor", "pln": ["(: cnet_partof_8dd7b6be01 (PartOf petit_mal_epilepsy epilepsia_minor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "petrified forest national park is part of arizona", "pln": ["(: cnet_partof_73798aa02f (PartOf petrified_forest_national_park arizona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "petrona tower is part of kuala lumpur", "pln": ["(: cnet_partof_8d72c68953 (PartOf petrona_tower kuala_lumpur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pfennig is part of mark", "pln": ["(: cnet_partof_ca2d403e86 (PartOf pfennig mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "phagun is part of hindu calendar", "pln": ["(: cnet_partof_b34db94c5c (PartOf phagun hindu_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "phalanx is part of digit", "pln": ["(: cnet_partof_4632154861 (PartOf phalanx digit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "phallic stage is part of childhood", "pln": ["(: cnet_partof_10c86fae48 (PartOf phallic_stage childhood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pharmacopoeia is part of drugstore", "pln": ["(: cnet_partof_59ce363e82 (PartOf pharmacopoeia drugstore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pharyngeal recess is part of throat", "pln": ["(: cnet_partof_5f0777480c (PartOf pharyngeal_recess throat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pharyngeal tonsil is part of throat", "pln": ["(: cnet_partof_6a5a34e23a (PartOf pharyngeal_tonsil throat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "phase is part of cycle", "pln": ["(: cnet_partof_fa6e5ef195 (PartOf phase cycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pheasant is part of ring necked pheasant", "pln": ["(: cnet_partof_70b48b3006 (PartOf pheasant ring_necked_pheasant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "philadelphia is part of pennsylvania", "pln": ["(: cnet_partof_d6ad918570 (PartOf philadelphia pennsylvania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "philippine sea is part of world war ii", "pln": ["(: cnet_partof_6442705877 (PartOf philippine_sea world_war_ii) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "philippine is part of pacific", "pln": ["(: cnet_partof_e36e122948 (PartOf philippine pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "philippine is part of philippine", "pln": ["(: cnet_partof_b32d77f675 (PartOf philippine philippine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "philippine is part of southeast asia", "pln": ["(: cnet_partof_9e72babe19 (PartOf philippine southeast_asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "philistia is part of palestine", "pln": ["(: cnet_partof_cbe4acef6b (PartOf philistia palestine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "phnom penh is part of cambodia", "pln": ["(: cnet_partof_a72ee08253 (PartOf phnom_penh cambodia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "phoenix is part of arizona", "pln": ["(: cnet_partof_e09788941e (PartOf phoenix arizona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "phone is part of utterance", "pln": ["(: cnet_partof_c613316fdc (PartOf phone utterance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "phonetic symbol is part of phonetic transcription", "pln": ["(: cnet_partof_ed0bbb70d7 (PartOf phonetic_symbol phonetic_transcription) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "photocathode is part of photoelectric cell", "pln": ["(: cnet_partof_09f2f0c5e3 (PartOf photocathode photoelectric_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "photon is part of electromagnetic radiation", "pln": ["(: cnet_partof_b1548599b2 (PartOf photon electromagnetic_radiation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "photosphere is part of sun", "pln": ["(: cnet_partof_d11465222d (PartOf photosphere sun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "phrase is part of tune", "pln": ["(: cnet_partof_d32a3db403 (PartOf phrase tune) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "phrygia is part of asia minor", "pln": ["(: cnet_partof_91435be90e (PartOf phrygia asia_minor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pi is part of geometry", "pln": ["(: cnet_partof_773e6b345a (PartOf pi geometry) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pia mater is part of leptomeninge", "pln": ["(: cnet_partof_2e91470748 (PartOf pia_mater leptomeninge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "piano action is part of piano", "pln": ["(: cnet_partof_6c5735a6ed (PartOf piano_action piano) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "piano keyboard is part of accordion", "pln": ["(: cnet_partof_5c5da562fa (PartOf piano_keyboard accordion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "piano keyboard is part of organ", "pln": ["(: cnet_partof_f96c2a115f (PartOf piano_keyboard organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "piano keyboard is part of piano", "pln": ["(: cnet_partof_fbbde0beaa (PartOf piano_keyboard piano) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "piaster is part of egyptian pound", "pln": ["(: cnet_partof_bef40c02ea (PartOf piaster egyptian_pound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "piaster is part of lebanese pound", "pln": ["(: cnet_partof_20686e5705 (PartOf piaster lebanese_pound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "piaster is part of sudanese pound", "pln": ["(: cnet_partof_7027f11837 (PartOf piaster sudanese_pound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "piaster is part of syrian pound", "pln": ["(: cnet_partof_e87c190716 (PartOf piaster syrian_pound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "picardie is part of france", "pln": ["(: cnet_partof_df71b06b19 (PartOf picardie france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "picket is part of picket fence", "pln": ["(: cnet_partof_f742f49857 (PartOf picket picket_fence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pickup is part of transportation", "pln": ["(: cnet_partof_9b1af4f852 (PartOf pickup transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "picofarad is part of microfarad", "pln": ["(: cnet_partof_114491fe9f (PartOf picofarad microfarad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "picometer is part of angstrom", "pln": ["(: cnet_partof_6277eeb13d (PartOf picometer angstrom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "picosecond is part of nanosecond", "pln": ["(: cnet_partof_79834ac6e1 (PartOf picosecond nanosecond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "picovolt is part of volt", "pln": ["(: cnet_partof_334f44aafe (PartOf picovolt volt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "picture plane is part of perspective", "pln": ["(: cnet_partof_79aed8a80f (PartOf picture_plane perspective) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "piece is part of whole", "pln": ["(: cnet_partof_49bcb14ac5 (PartOf piece whole) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "piedmont is part of italy", "pln": ["(: cnet_partof_fb5b95966f (PartOf piedmont italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "piedmont is part of south", "pln": ["(: cnet_partof_c49f61b67c (PartOf piedmont south) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pier is part of wall", "pln": ["(: cnet_partof_7d90f0372c (PartOf pier wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pier is part of bridge", "pln": ["(: cnet_partof_2ef879dde8 (PartOf pier bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pierre is part of south dakota", "pln": ["(: cnet_partof_fb45e3f5df (PartOf pierre south_dakota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pierre laporte bridge is part of quebec", "pln": ["(: cnet_partof_67a22c3b19 (PartOf pierre_laporte_bridge quebec) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pike s peak is part of colorado", "pln": ["(: cnet_partof_b9ab4b09bb (PartOf pike_s_peak colorado) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pike s peak is part of rocky", "pln": ["(: cnet_partof_4514a9d39c (PartOf pike_s_peak rocky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pike is part of pike", "pln": ["(: cnet_partof_5daa9b1467 (PartOf pike pike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pikestaff is part of pike", "pln": ["(: cnet_partof_68f0dea094 (PartOf pikestaff pike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pillar of hercule is part of strait of gibraltar", "pln": ["(: cnet_partof_4cfb958926 (PartOf pillar_of_hercule strait_of_gibraltar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pilothouse is part of bridge", "pln": ["(: cnet_partof_b05c036e32 (PartOf pilothouse bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pilsen is part of czech republic", "pln": ["(: cnet_partof_749b70a45b (PartOf pilsen czech_republic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pilus is part of microorganism", "pln": ["(: cnet_partof_4379806f16 (PartOf pilus microorganism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "pimlico is part of baltimore", "pln": ["(: cnet_partof_426915fc30 (PartOf pimlico baltimore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "pin is part of cylinder lock", "pln": ["(: cnet_partof_7bf6c6b6c3 (PartOf pin cylinder_lock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pin bone is part of sirloin", "pln": ["(: cnet_partof_3d1c203e57 (PartOf pin_bone sirloin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pine bluff is part of arkansa", "pln": ["(: cnet_partof_273c9c17a6 (PartOf pine_bluff arkansa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pine nut is part of nut pine", "pln": ["(: cnet_partof_42df0fe1e9 (PartOf pine_nut nut_pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pine nut is part of stone pine", "pln": ["(: cnet_partof_578554fc85 (PartOf pine_nut stone_pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pineapple is part of pineapple", "pln": ["(: cnet_partof_bd18586250 (PartOf pineapple pineapple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pinecone is part of pine", "pln": ["(: cnet_partof_07253081ac (PartOf pinecone pine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ping is part of thailand", "pln": ["(: cnet_partof_08257eaf9c (PartOf ping thailand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pinger is part of sonar", "pln": ["(: cnet_partof_f41502d193 (PartOf pinger sonar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pinhead is part of pin", "pln": ["(: cnet_partof_34f5da3bf9 (PartOf pinhead pin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pinsk is part of belarus", "pln": ["(: cnet_partof_f654b96c1b (PartOf pinsk belarus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pint is part of quart", "pln": ["(: cnet_partof_a43341139f (PartOf pint quart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pintle is part of hinge", "pln": ["(: cnet_partof_203e516329 (PartOf pintle hinge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pisa is part of tuscany", "pln": ["(: cnet_partof_80a127eff3 (PartOf pisa tuscany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pisce is part of zodiac", "pln": ["(: cnet_partof_3af2aeddf4 (PartOf pisce zodiac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pissis is part of ande", "pln": ["(: cnet_partof_07abd2d71d (PartOf pissis ande) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "pissis is part of argentina", "pln": ["(: cnet_partof_c19ebd505f (PartOf pissis argentina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pistachio is part of pistachio", "pln": ["(: cnet_partof_e9bf899a0b (PartOf pistachio pistachio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "pistil is part of flower", "pln": ["(: cnet_partof_f72131b613 (PartOf pistil flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "piston is part of engine", "pln": ["(: cnet_partof_ac5ebc4f46 (PartOf piston engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "piston is part of reciprocating engine", "pln": ["(: cnet_partof_130825fb48 (PartOf piston reciprocating_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "piston ring is part of piston", "pln": ["(: cnet_partof_536c32dc7d (PartOf piston_ring piston) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "piston rod is part of piston", "pln": ["(: cnet_partof_564bd74bbd (PartOf piston_rod piston) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pit is part of peach", "pln": ["(: cnet_partof_bd2c684201 (PartOf pit peach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pit is part of commodity exchange", "pln": ["(: cnet_partof_cd667ee9eb (PartOf pit commodity_exchange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pit of stomach is part of stomach", "pln": ["(: cnet_partof_2027412d1c (PartOf pit_of_stomach stomach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pita is part of gyro", "pln": ["(: cnet_partof_2cbac2f854 (PartOf pita gyro) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pitahaya is part of pitahaya cactus", "pln": ["(: cnet_partof_6e3871fbf5 (PartOf pitahaya pitahaya_cactus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "pitcher is part of baseball team", "pln": ["(: cnet_partof_82d7c2c2cb (PartOf pitcher baseball_team) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pittsburgh is part of pennsylvania", "pln": ["(: cnet_partof_0ad33453db (PartOf pittsburgh pennsylvania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pittsfield is part of massachusett", "pln": ["(: cnet_partof_b58aa2b235 (PartOf pittsfield massachusett) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pituitary is part of diencephalon", "pln": ["(: cnet_partof_abeb9e8250 (PartOf pituitary diencephalon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pixel is part of raster", "pln": ["(: cnet_partof_78a211d96d (PartOf pixel raster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "place name is part of troponymy", "pln": ["(: cnet_partof_b38f520193 (PartOf place_name troponymy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "placenta is part of uterus", "pln": ["(: cnet_partof_e426f212cc (PartOf placenta uterus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "placenta is part of ovary", "pln": ["(: cnet_partof_57f8e14465 (PartOf placenta ovary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "placket is part of skirt", "pln": ["(: cnet_partof_81f0e62f1f (PartOf placket skirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "plaice is part of plaice", "pln": ["(: cnet_partof_b7894f2fb2 (PartOf plaice plaice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "planchette is part of ouija", "pln": ["(: cnet_partof_02a360dd10 (PartOf planchette ouija) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "plane seat is part of airliner", "pln": ["(: cnet_partof_5a69ab83b5 (PartOf plane_seat airliner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "planetarium is part of planetarium", "pln": ["(: cnet_partof_03b8a51d34 (PartOf planetarium planetarium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "planetary gear is part of epicyclic train", "pln": ["(: cnet_partof_0bc7b1f12f (PartOf planetary_gear epicyclic_train) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "plank is part of platform", "pln": ["(: cnet_partof_eb5ec731d1 (PartOf plank platform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "plano is part of texa", "pln": ["(: cnet_partof_5f42603ceb (PartOf plano texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "plant part is part of plant", "pln": ["(: cnet_partof_d0afa6886b (PartOf plant_part plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "plantain is part of plantain", "pln": ["(: cnet_partof_749dcb2657 (PartOf plantain plantain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "plastron is part of bodice", "pln": ["(: cnet_partof_8d5890edf2 (PartOf plastron bodice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "plastron is part of dress shirt", "pln": ["(: cnet_partof_98d45d548e (PartOf plastron dress_shirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "plastron is part of turtle", "pln": ["(: cnet_partof_6dd04a4155 (PartOf plastron turtle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "plataea is part of boeotia", "pln": ["(: cnet_partof_34ba826216 (PartOf plataea boeotia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "plate is part of structure", "pln": ["(: cnet_partof_e1f89b3a0a (PartOf plate structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "plate is part of tube", "pln": ["(: cnet_partof_8244f7ea50 (PartOf plate tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "platt national park is part of oklahoma", "pln": ["(: cnet_partof_2b73386844 (PartOf platt_national_park oklahoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "platte is part of nebraska", "pln": ["(: cnet_partof_f1a83723f1 (PartOf platte nebraska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "playback is part of recorder", "pln": ["(: cnet_partof_0ef0751dea (PartOf playback recorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "player is part of team", "pln": ["(: cnet_partof_d46aedfbba (PartOf player team) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "playing card is part of deck", "pln": ["(: cnet_partof_6c3bc0ae0c (PartOf playing_card deck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "playing field is part of stadium", "pln": ["(: cnet_partof_31dd1bc067 (PartOf playing_field stadium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "playing period is part of athletic game", "pln": ["(: cnet_partof_74ed29c344 (PartOf playing_period athletic_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "playoff game is part of playoff", "pln": ["(: cnet_partof_fe42ad979d (PartOf playoff_game playoff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "plea is part of trial", "pln": ["(: cnet_partof_2f85cb3c4b (PartOf plea trial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pleistocene is part of quaternary", "pln": ["(: cnet_partof_772157a79e (PartOf pleistocene quaternary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pleura is part of pleural cavity", "pln": ["(: cnet_partof_4d67824d18 (PartOf pleura pleural_cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pliocene is part of tertiary", "pln": ["(: cnet_partof_f4a5442795 (PartOf pliocene tertiary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "plosion is part of stop consonant", "pln": ["(: cnet_partof_04b0150014 (PartOf plosion stop_consonant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "plovdiv is part of bulgaria", "pln": ["(: cnet_partof_2322084cdb (PartOf plovdiv bulgaria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "plowshare is part of moldboard plow", "pln": ["(: cnet_partof_deced9df56 (PartOf plowshare moldboard_plow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "plum is part of plum", "pln": ["(: cnet_partof_e14217254c (PartOf plum plum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "plumb bob is part of plumb line", "pln": ["(: cnet_partof_4814535566 (PartOf plumb_bob plumb_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "plumbing is part of construction", "pln": ["(: cnet_partof_0aff540bb3 (PartOf plumbing construction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "plumbing fixture is part of plumbing", "pln": ["(: cnet_partof_ef8c9254af (PartOf plumbing_fixture plumbing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "plumcot is part of plumcot", "pln": ["(: cnet_partof_78fe64d58f (PartOf plumcot plumcot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "plutonium trigger is part of atom bomb", "pln": ["(: cnet_partof_6824fa701d (PartOf plutonium_trigger atom_bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pluviose is part of revolutionary calendar", "pln": ["(: cnet_partof_668c40e4f5 (PartOf pluviose revolutionary_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "plymouth is part of massachusett", "pln": ["(: cnet_partof_8d8f552a6a (PartOf plymouth massachusett) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "plymouth colony is part of plymouth", "pln": ["(: cnet_partof_dcb61887bc (PartOf plymouth_colony plymouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "plymouth rock is part of plymouth", "pln": ["(: cnet_partof_b4482dfde3 (PartOf plymouth_rock plymouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pneumatic tire is part of bicycle wheel", "pln": ["(: cnet_partof_9e9083c506 (PartOf pneumatic_tire bicycle_wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pneumatic tire is part of car wheel", "pln": ["(: cnet_partof_fd1d7940b4 (PartOf pneumatic_tire car_wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "po is part of italy", "pln": ["(: cnet_partof_f1fff6cf33 (PartOf po italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pobeda peak is part of india", "pln": ["(: cnet_partof_2bb25b7612 (PartOf pobeda_peak india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pobeda peak is part of tien shan", "pln": ["(: cnet_partof_3aacdfc236 (PartOf pobeda_peak tien_shan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pocatello is part of idaho", "pln": ["(: cnet_partof_1245ccc130 (PartOf pocatello idaho) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pock is part of smallpox", "pln": ["(: cnet_partof_e3abcfbfe9 (PartOf pock smallpox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pocket is part of garment", "pln": ["(: cnet_partof_48ddfee4f5 (PartOf pocket garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pocket is part of pool table", "pln": ["(: cnet_partof_bc0b918183 (PartOf pocket pool_table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pocket flap is part of pocket", "pln": ["(: cnet_partof_a56b2118d1 (PartOf pocket_flap pocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "pod is part of airplane", "pln": ["(: cnet_partof_78e5ff4419 (PartOf pod airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "poetic rhythm is part of poem", "pln": ["(: cnet_partof_3aa594f85c (PartOf poetic_rhythm poem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pogonion is part of lower jaw", "pln": ["(: cnet_partof_f2d2d34eee (PartOf pogonion lower_jaw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "point is part of awl", "pln": ["(: cnet_partof_757360e1c7 (PartOf point awl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "point is part of icepick", "pln": ["(: cnet_partof_ec242af8c9 (PartOf point icepick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "point is part of knife", "pln": ["(: cnet_partof_e4d2ce394d (PartOf point knife) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "point is part of needle", "pln": ["(: cnet_partof_380a593823 (PartOf point needle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "point is part of pencil", "pln": ["(: cnet_partof_aa713095d8 (PartOf point pencil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "point is part of pin", "pln": ["(: cnet_partof_9ee8dff184 (PartOf point pin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "point is part of arrow", "pln": ["(: cnet_partof_1a0ecf1699 (PartOf point arrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "point is part of em", "pln": ["(: cnet_partof_f545a65fe0 (PartOf point em) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "point is part of score", "pln": ["(: cnet_partof_15ecb939b5 (PartOf point score) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "point is part of alpenstock", "pln": ["(: cnet_partof_173d2a2bc1 (PartOf point alpenstock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "point is part of arrowhead", "pln": ["(: cnet_partof_58a5f6e8e1 (PartOf point arrowhead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "point is part of cone", "pln": ["(: cnet_partof_f645394b23 (PartOf point cone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "point is part of sword", "pln": ["(: cnet_partof_11e8a73032 (PartOf point sword) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "poitou charente is part of france", "pln": ["(: cnet_partof_c3d89e663e (PartOf poitou_charente france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "poland is part of europe", "pln": ["(: cnet_partof_12583ed844 (PartOf poland europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pole is part of magnet", "pln": ["(: cnet_partof_8a5a2d0c3a (PartOf pole magnet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "political ideology is part of ideology", "pln": ["(: cnet_partof_5aafbd3c98 (PartOf political_ideology ideology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "poll is part of cow", "pln": ["(: cnet_partof_670b9d809a (PartOf poll cow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "poll is part of horse", "pln": ["(: cnet_partof_542b61273e (PartOf poll horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pollack is part of pollack", "pln": ["(: cnet_partof_08eecf1d77 (PartOf pollack pollack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "polling booth is part of polling place", "pln": ["(: cnet_partof_4b3b1a318e (PartOf polling_booth polling_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "polydipsia is part of diabete", "pln": ["(: cnet_partof_8422f66fa2 (PartOf polydipsia diabete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "polynesia is part of austronesia", "pln": ["(: cnet_partof_b425cc6c25 (PartOf polynesia austronesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "polynesia is part of oceania", "pln": ["(: cnet_partof_13e5f4412e (PartOf polynesia oceania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "polyuria is part of diabete", "pln": ["(: cnet_partof_aa483301db (PartOf polyuria diabete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pomegranate is part of pomegranate", "pln": ["(: cnet_partof_6cb4a47627 (PartOf pomegranate pomegranate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pomelo is part of pomelo", "pln": ["(: cnet_partof_3e062dba42 (PartOf pomelo pomelo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pommel is part of pommel horse", "pln": ["(: cnet_partof_058207d5c4 (PartOf pommel pommel_horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pommel is part of saddle", "pln": ["(: cnet_partof_ed3ff43f5e (PartOf pommel saddle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pompano is part of pompano", "pln": ["(: cnet_partof_9b35b68156 (PartOf pompano pompano) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pompeii is part of italy", "pln": ["(: cnet_partof_7162025603 (PartOf pompeii italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pond apple is part of pond apple", "pln": ["(: cnet_partof_7bb206d269 (PartOf pond_apple pond_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pon is part of brainstem", "pln": ["(: cnet_partof_a3d1339bc5 (PartOf pon brainstem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ponte 25 de abril is part of lisbon", "pln": ["(: cnet_partof_3e38f95278 (PartOf ponte_25_de_abril lisbon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pontoon is part of amphibian", "pln": ["(: cnet_partof_5eedd7f059 (PartOf pontoon amphibian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pontoon is part of pontoon bridge", "pln": ["(: cnet_partof_27f05804c2 (PartOf pontoon pontoon_bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pontus is part of asia minor", "pln": ["(: cnet_partof_60fa2404bc (PartOf pontus asia_minor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "popcorn is part of popcorn", "pln": ["(: cnet_partof_0950952586 (PartOf popcorn popcorn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "poplar bluff is part of missouri", "pln": ["(: cnet_partof_f7fa120414 (PartOf poplar_bluff missouri) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "poppet is part of internal combustion engine", "pln": ["(: cnet_partof_b8fa406c91 (PartOf poppet internal_combustion_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "poppy seed is part of opium poppy", "pln": ["(: cnet_partof_d462b5ed68 (PartOf poppy_seed opium_poppy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "porch is part of house", "pln": ["(: cnet_partof_d01457d37c (PartOf porch house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pore is part of skin", "pln": ["(: cnet_partof_25c6eb12c0 (PartOf pore skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "porgy is part of scup", "pln": ["(: cnet_partof_d0ee6b0a92 (PartOf porgy scup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pork is part of hog", "pln": ["(: cnet_partof_216f3f8f5d (PartOf pork hog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pork loin is part of pork", "pln": ["(: cnet_partof_cf729c358a (PartOf pork_loin pork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "port au prince is part of haiti", "pln": ["(: cnet_partof_64ec3e2334 (PartOf port_au_prince haiti) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "port louis is part of mauritius", "pln": ["(: cnet_partof_bf27cc1989 (PartOf port_louis mauritius) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "port moresby is part of papua new guinea", "pln": ["(: cnet_partof_4e4fef25bc (PartOf port_moresby papua_new_guinea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "port of spain is part of trinidad", "pln": ["(: cnet_partof_04bb991cd8 (PartOf port_of_spain trinidad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "port sudan is part of sudan", "pln": ["(: cnet_partof_cfeafc91af (PartOf port_sudan sudan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "port vila is part of vanuatu", "pln": ["(: cnet_partof_d79638e22e (PartOf port_vila vanuatu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "portal vein is part of portal system", "pln": ["(: cnet_partof_c13117491c (PartOf portal_vein portal_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "porterhouse is part of beef loin", "pln": ["(: cnet_partof_38c2f022dc (PartOf porterhouse beef_loin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "porthole is part of fuselage", "pln": ["(: cnet_partof_4454c1bd35 (PartOf porthole fuselage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "porthole is part of ship", "pln": ["(: cnet_partof_1f0e1a86d7 (PartOf porthole ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "portland is part of maine", "pln": ["(: cnet_partof_aeaccefcf7 (PartOf portland maine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "portland is part of oregon", "pln": ["(: cnet_partof_ae3d8730dd (PartOf portland oregon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "porto is part of portugal", "pln": ["(: cnet_partof_cb847aadae (PartOf porto portugal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "porto novo is part of benin", "pln": ["(: cnet_partof_2fb4f031bd (PartOf porto_novo benin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "portrait len is part of portrait camera", "pln": ["(: cnet_partof_f97bb7e59c (PartOf portrait_len portrait_camera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "portsmouth is part of england", "pln": ["(: cnet_partof_495faa2309 (PartOf portsmouth england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "portsmouth is part of new hampshire", "pln": ["(: cnet_partof_0c00738331 (PartOf portsmouth new_hampshire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "portsmouth is part of virginia", "pln": ["(: cnet_partof_6f0fbd5fa3 (PartOf portsmouth virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "portugal is part of europe", "pln": ["(: cnet_partof_b06c0bceb2 (PartOf portugal europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "portugal is part of iberian peninsula", "pln": ["(: cnet_partof_0c723037d8 (PartOf portugal iberian_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "portuguese escudo is part of conto", "pln": ["(: cnet_partof_ea701f347f (PartOf portuguese_escudo conto) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "positive is part of slide", "pln": ["(: cnet_partof_ec83b10031 (PartOf positive slide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "postcentral gyrus is part of parietal lobe", "pln": ["(: cnet_partof_61de791921 (PartOf postcentral_gyrus parietal_lobe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "posterior horn is part of spinal nerve root", "pln": ["(: cnet_partof_90d876aa12 (PartOf posterior_horn spinal_nerve_root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "posterior pituitary is part of pituitary", "pln": ["(: cnet_partof_2c853f909b (PartOf posterior_pituitary pituitary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "postscript is part of letter", "pln": ["(: cnet_partof_2f05db06be (PartOf postscript letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "potato is part of potato", "pln": ["(: cnet_partof_f1d076579c (PartOf potato potato) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "potomac is part of maryland", "pln": ["(: cnet_partof_582e6b8b5a (PartOf potomac maryland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "potomac is part of virginia", "pln": ["(: cnet_partof_64e274aa66 (PartOf potomac virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "potomac is part of west virginia", "pln": ["(: cnet_partof_532119d929 (PartOf potomac west_virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "potsdam is part of germany", "pln": ["(: cnet_partof_ba7ee29c85 (PartOf potsdam germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "poultry is part of domestic fowl", "pln": ["(: cnet_partof_2e882077e8 (PartOf poultry domestic_fowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pound is part of quarter", "pln": ["(: cnet_partof_2af45c3ee2 (PartOf pound quarter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pound is part of stone", "pln": ["(: cnet_partof_dc66890592 (PartOf pound stone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "power brake is part of motor vehicle", "pln": ["(: cnet_partof_1da911d012 (PartOf power_brake motor_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "power line is part of grid", "pln": ["(: cnet_partof_2bb371b126 (PartOf power_line grid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "power station is part of grid", "pln": ["(: cnet_partof_d9397fe654 (PartOf power_station grid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "poyang is part of china", "pln": ["(: cnet_partof_b8333196c3 (PartOf poyang china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "prague is part of czech republic", "pln": ["(: cnet_partof_a306456ca2 (PartOf prague czech_republic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "praia is part of cape verde", "pln": ["(: cnet_partof_68a7055822 (PartOf praia cape_verde) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "prairial is part of revolutionary calendar", "pln": ["(: cnet_partof_ffdfc48699 (PartOf prairial revolutionary_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "prairie gourd is part of prairie gourd", "pln": ["(: cnet_partof_80efd49300 (PartOf prairie_gourd prairie_gourd) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "prawn is part of shrimp", "pln": ["(: cnet_partof_6c63beef93 (PartOf prawn shrimp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "prayer of azariah and song of three children is part of apocrypha", "pln": ["(: cnet_partof_f8b3b66aea (PartOf prayer_of_azariah_and_song_of_three_children apocrypha) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "preamble is part of document", "pln": ["(: cnet_partof_03270e599d (PartOf preamble document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "precentral gyrus is part of frontal area", "pln": ["(: cnet_partof_040ac44686 (PartOf precentral_gyrus frontal_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "predictor is part of antiaircraft", "pln": ["(: cnet_partof_cf883ec0b3 (PartOf predictor antiaircraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "prefrontal lobe is part of cerebral cortex", "pln": ["(: cnet_partof_5d19dd9e54 (PartOf prefrontal_lobe cerebral_cortex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "prepuberty is part of childhood", "pln": ["(: cnet_partof_b9a2f55994 (PartOf prepuberty childhood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "prepuce is part of clitoris", "pln": ["(: cnet_partof_99e9aec27a (PartOf prepuce clitoris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "prepuce is part of penis", "pln": ["(: cnet_partof_6c8947a84a (PartOf prepuce penis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "presbytery is part of church", "pln": ["(: cnet_partof_9f19602262 (PartOf presbytery church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "prescott is part of arizona", "pln": ["(: cnet_partof_816d240d1b (PartOf prescott arizona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "president bush is part of problem", "pln": ["(: cnet_partof_bf52f14d59 (PartOf president_bush problem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "president day is part of february", "pln": ["(: cnet_partof_a4586dad86 (PartOf president_day february) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "press corp is part of press", "pln": ["(: cnet_partof_81aab18559 (PartOf press_corp press) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pressure point is part of skin", "pln": ["(: cnet_partof_a176a51c1b (PartOf pressure_point skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pressure point is part of body", "pln": ["(: cnet_partof_77c545caab (PartOf pressure_point body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pretoria is part of south africa", "pln": ["(: cnet_partof_84d29e2faf (PartOf pretoria south_africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pricket is part of candlestick", "pln": ["(: cnet_partof_a3eb446777 (PartOf pricket candlestick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "prickly pear is part of prickly pear", "pln": ["(: cnet_partof_edcf38c686 (PartOf prickly_pear prickly_pear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "primary coil is part of transformer", "pln": ["(: cnet_partof_bd984f82fd (PartOf primary_coil transformer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "primary tooth is part of child s body", "pln": ["(: cnet_partof_539eb6c58c (PartOf primary_tooth child_s_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "primo is part of duet", "pln": ["(: cnet_partof_57d3bb03e0 (PartOf primo duet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "prince edward island is part of maritime province", "pln": ["(: cnet_partof_6a4822c60f (PartOf prince_edward_island maritime_province) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "princeton is part of new jersey", "pln": ["(: cnet_partof_fd326b24b2 (PartOf princeton new_jersey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "princeton university is part of princeton", "pln": ["(: cnet_partof_2822b7a2c7 (PartOf princeton_university princeton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "principal is part of loan", "pln": ["(: cnet_partof_3e50ca074e (PartOf principal loan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "principality of asturia is part of spain", "pln": ["(: cnet_partof_0d0b4b746d (PartOf principality_of_asturia spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "principe is part of sao tome and principe", "pln": ["(: cnet_partof_a9c7ac1068 (PartOf principe sao_tome_and_principe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "principle is part of ethic", "pln": ["(: cnet_partof_49dc2bcfcd (PartOf principle ethic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "prism is part of biprism", "pln": ["(: cnet_partof_10222c58ae (PartOf prism biprism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "prism is part of spectroscope", "pln": ["(: cnet_partof_a5b5882771 (PartOf prism spectroscope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "prism is part of telescope", "pln": ["(: cnet_partof_212b66a823 (PartOf prism telescope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "proboscis is part of elephant", "pln": ["(: cnet_partof_79a9ef58e8 (PartOf proboscis elephant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "proboscis is part of mammoth", "pln": ["(: cnet_partof_8612a3485d (PartOf proboscis mammoth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "processor is part of computer", "pln": ["(: cnet_partof_092ef63894 (PartOf processor computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "production line is part of factory", "pln": ["(: cnet_partof_79a7045b26 (PartOf production_line factory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "prologue is part of dramatic composition", "pln": ["(: cnet_partof_67fc86ed20 (PartOf prologue dramatic_composition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "prolonge knot is part of prolonge", "pln": ["(: cnet_partof_ae54ade824 (PartOf prolonge_knot prolonge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "promenade is part of ball", "pln": ["(: cnet_partof_05ad06245a (PartOf promenade ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "promenade is part of square dance", "pln": ["(: cnet_partof_6dbd5e85f9 (PartOf promenade square_dance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "promotion is part of marketing", "pln": ["(: cnet_partof_c4a69d45ab (PartOf promotion marketing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "prompt box is part of proscenium", "pln": ["(: cnet_partof_7fd9667509 (PartOf prompt_box proscenium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "prong is part of belt buckle", "pln": ["(: cnet_partof_47d499a8f5 (PartOf prong belt_buckle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "prong is part of buckle", "pln": ["(: cnet_partof_941ea7419a (PartOf prong buckle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "prong is part of fork", "pln": ["(: cnet_partof_3e2db98115 (PartOf prong fork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "prong is part of trident", "pln": ["(: cnet_partof_fc228ae71b (PartOf prong trident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "property is part of mise en scene", "pln": ["(: cnet_partof_3aa0944642 (PartOf property mise_en_scene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "prophase is part of meiosis", "pln": ["(: cnet_partof_e108059e84 (PartOf prophase meiosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "prophase is part of mitosis", "pln": ["(: cnet_partof_725a0e7436 (PartOf prophase mitosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "prophet is part of tanakh", "pln": ["(: cnet_partof_a378752256 (PartOf prophet tanakh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "proportional is part of proportion", "pln": ["(: cnet_partof_4d56df9041 (PartOf proportional proportion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "proprioception is part of somesthesia", "pln": ["(: cnet_partof_b6795b7328 (PartOf proprioception somesthesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "proverbs is part of sapiential book", "pln": ["(: cnet_partof_71b1eb76bb (PartOf proverbs sapiential_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "proscenium is part of theater stage", "pln": ["(: cnet_partof_bc7b2d8800 (PartOf proscenium theater_stage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "proscenium arch is part of proscenium", "pln": ["(: cnet_partof_d6f5be3151 (PartOf proscenium_arch proscenium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "prosecution is part of trial", "pln": ["(: cnet_partof_a9a58d8fb6 (PartOf prosecution trial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "prostate gland is part of male reproductive system", "pln": ["(: cnet_partof_d0a347c203 (PartOf prostate_gland male_reproductive_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "protease inhibitor is part of drug cocktail", "pln": ["(: cnet_partof_fdc18d70dc (PartOf protease_inhibitor drug_cocktail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "proterozoic is part of precambrian", "pln": ["(: cnet_partof_b55e6c73a4 (PartOf proterozoic precambrian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "proton is part of atom", "pln": ["(: cnet_partof_feb1af1d61 (PartOf proton atom) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "proton is part of nucleus", "pln": ["(: cnet_partof_b976f1ae83 (PartOf proton nucleus) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "provence is part of france", "pln": ["(: cnet_partof_7c519f7d04 (PartOf provence france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "proverb is part of hagiographa", "pln": ["(: cnet_partof_d0c98934d2 (PartOf proverb hagiographa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "proverb is part of old testament", "pln": ["(: cnet_partof_2876e09bf1 (PartOf proverb old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "proverb is part of sapiential book", "pln": ["(: cnet_partof_106ec720f6 (PartOf proverb sapiential_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "providence is part of rhode island", "pln": ["(: cnet_partof_92fa047d0e (PartOf providence rhode_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "provo is part of utah", "pln": ["(: cnet_partof_b39b979b41 (PartOf provo utah) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "prudhoe bay is part of alaska", "pln": ["(: cnet_partof_fa4748537c (PartOf prudhoe_bay alaska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "prussia is part of germany", "pln": ["(: cnet_partof_51e305cda4 (PartOf prussia germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "prussia is part of poland", "pln": ["(: cnet_partof_3a398b30b1 (PartOf prussia poland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "psalm is part of old testament", "pln": ["(: cnet_partof_8621a3e199 (PartOf psalm old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "psalm is part of hagiographa", "pln": ["(: cnet_partof_4b6f2af5bd (PartOf psalm hagiographa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "psalter is part of book of common prayer", "pln": ["(: cnet_partof_eeedccd0e4 (PartOf psalter book_of_common_prayer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "psalterium is part of ruminant", "pln": ["(: cnet_partof_aa9c27ed9e (PartOf psalterium ruminant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pterygoid process is part of sphenoid bone", "pln": ["(: cnet_partof_d4e5d98661 (PartOf pterygoid_process sphenoid_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "puberty is part of adolescence", "pln": ["(: cnet_partof_36e7f51934 (PartOf puberty adolescence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pubic hair is part of adult body", "pln": ["(: cnet_partof_d260abc40f (PartOf pubic_hair adult_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pubis is part of pelvis", "pln": ["(: cnet_partof_10f361ff9e (PartOf pubis pelvis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "public square is part of city", "pln": ["(: cnet_partof_dcbdcb7155 (PartOf public_square city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "public transport is part of transportation system", "pln": ["(: cnet_partof_8d83ee6e03 (PartOf public_transport transportation_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "public work is part of infrastructure", "pln": ["(: cnet_partof_f4762600bc (PartOf public_work infrastructure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pudendal cleft is part of vulva", "pln": ["(: cnet_partof_bb280ead19 (PartOf pudendal_cleft vulva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "puebla is part of mexico", "pln": ["(: cnet_partof_ccb971a6a6 (PartOf puebla mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pueblo is part of colorado", "pln": ["(: cnet_partof_8e3d7d69f6 (PartOf pueblo colorado) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "puerto rico is part of caribbean", "pln": ["(: cnet_partof_df6e127fcb (PartOf puerto_rico caribbean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "puerto rico is part of greater antille", "pln": ["(: cnet_partof_02aa5333a6 (PartOf puerto_rico greater_antille) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "puerto rico is part of puerto rico", "pln": ["(: cnet_partof_29002ec2d0 (PartOf puerto_rico puerto_rico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "puff is part of smoke", "pln": ["(: cnet_partof_a03c9e5808 (PartOf puff smoke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "puget sound is part of pacific", "pln": ["(: cnet_partof_c0a114bfae (PartOf puget_sound pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "puget sound is part of washington", "pln": ["(: cnet_partof_5b601c72a6 (PartOf puget_sound washington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "puglia is part of italy", "pln": ["(: cnet_partof_e1f59cd022 (PartOf puglia italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pul is part of afghani", "pln": ["(: cnet_partof_e81ec168aa (PartOf pul afghani) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pulasan is part of pulasan", "pln": ["(: cnet_partof_4426f9da52 (PartOf pulasan pulasan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pull chain is part of flush toilet", "pln": ["(: cnet_partof_46007a131a (PartOf pull_chain flush_toilet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pulley is part of block and tackle", "pln": ["(: cnet_partof_129adbcbb8 (PartOf pulley block_and_tackle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pulmonary stenosis is part of tetralogy of fallot", "pln": ["(: cnet_partof_b8c92b0ea4 (PartOf pulmonary_stenosis tetralogy_of_fallot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pulmonary vein is part of lung", "pln": ["(: cnet_partof_36431626dd (PartOf pulmonary_vein lung) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pulp is part of tooth", "pln": ["(: cnet_partof_b86b10edec (PartOf pulp tooth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pulp cavity is part of tooth", "pln": ["(: cnet_partof_778c77e774 (PartOf pulp_cavity tooth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pulse generator is part of radar", "pln": ["(: cnet_partof_18f9b4fc0d (PartOf pulse_generator radar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pulse generator is part of sonar", "pln": ["(: cnet_partof_a627dae709 (PartOf pulse_generator sonar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pump is part of cooling system", "pln": ["(: cnet_partof_bd5c085ae4 (PartOf pump cooling_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pump is part of fuel system", "pln": ["(: cnet_partof_9a87aa757c (PartOf pump fuel_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pump action is part of rifle", "pln": ["(: cnet_partof_ef1ab28954 (PartOf pump_action rifle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pump action is part of shotgun", "pln": ["(: cnet_partof_618391e983 (PartOf pump_action shotgun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pump room is part of watering place", "pln": ["(: cnet_partof_f0e959a035 (PartOf pump_room watering_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "pumpkin is part of pumpkin", "pln": ["(: cnet_partof_d3dc7eb88b (PartOf pumpkin pumpkin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pumpkin seed is part of pumpkin", "pln": ["(: cnet_partof_f996172a59 (PartOf pumpkin_seed pumpkin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "punch line is part of joke", "pln": ["(: cnet_partof_0df93a5099 (PartOf punch_line joke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "punctuation is part of orthography", "pln": ["(: cnet_partof_f075cb965d (PartOf punctuation orthography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "punjab is part of india", "pln": ["(: cnet_partof_52cd39bef6 (PartOf punjab india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "punjab is part of pakistan", "pln": ["(: cnet_partof_2fd77d024a (PartOf punjab pakistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "punta arena is part of chile", "pln": ["(: cnet_partof_45c5c0ca20 (PartOf punta_arena chile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pupil is part of class", "pln": ["(: cnet_partof_f80ca06326 (PartOf pupil class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pupil is part of eye", "pln": ["(: cnet_partof_49a9d5a6c7 (PartOf pupil eye) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pupil is part of iris", "pln": ["(: cnet_partof_ed3b58e6d8 (PartOf pupil iris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pupillary sphincter is part of eye", "pln": ["(: cnet_partof_28521eb86b (PartOf pupillary_sphincter eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "puppis is part of argo", "pln": ["(: cnet_partof_8507264f84 (PartOf puppis argo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "purace is part of colombia", "pln": ["(: cnet_partof_f02d8ed5fb (PartOf purace colombia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "purim is part of adar", "pln": ["(: cnet_partof_890ab89b16 (PartOf purim adar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "purkinje fiber is part of purkinje network", "pln": ["(: cnet_partof_41bbc9abcf (PartOf purkinje_fiber purkinje_network) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "purse string is part of purse", "pln": ["(: cnet_partof_70047ce2e6 (PartOf purse_string purse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "purulence is part of abscess", "pln": ["(: cnet_partof_70a88845dd (PartOf purulence abscess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "purus is part of brazil", "pln": ["(: cnet_partof_0acec3d0de (PartOf purus brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pus is part of hindu calendar", "pln": ["(: cnet_partof_d4a861dcd7 (PartOf pus hindu_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "pusan is part of south korea", "pln": ["(: cnet_partof_c881536f67 (PartOf pusan south_korea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "push button is part of push button radio", "pln": ["(: cnet_partof_9c1cac018a (PartOf push_button push_button_radio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "put option is part of straddle", "pln": ["(: cnet_partof_88793bf208 (PartOf put_option straddle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "putamen is part of lenticular nucleus", "pln": ["(: cnet_partof_37e08ebbd5 (PartOf putamen lenticular_nucleus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pya is part of kyat", "pln": ["(: cnet_partof_18b6cdd53d (PartOf pya kyat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pyloric sphincter is part of pylorus", "pln": ["(: cnet_partof_0f0a562c5c (PartOf pyloric_sphincter pylorus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pyongyang is part of north korea", "pln": ["(: cnet_partof_e0af2f629c (PartOf pyongyang north_korea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pyramidal tract is part of central nervous system", "pln": ["(: cnet_partof_be53fd9e3a (PartOf pyramidal_tract central_nervous_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pyrenee is part of france", "pln": ["(: cnet_partof_fed4f0f998 (PartOf pyrenee france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pyrenee is part of spain", "pln": ["(: cnet_partof_4d7d615d4e (PartOf pyrenee spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pyriform area is part of rhinencephalon", "pln": ["(: cnet_partof_869f3cb571 (PartOf pyriform_area rhinencephalon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "pyxis is part of argo", "pln": ["(: cnet_partof_b84ab81c5d (PartOf pyxis argo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "qassam brigade is part of hama", "pln": ["(: cnet_partof_7a5861422c (PartOf qassam_brigade hama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "qatar is part of arabian peninsula", "pln": ["(: cnet_partof_22784bd7c0 (PartOf qatar arabian_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "qatar is part of asia", "pln": ["(: cnet_partof_666a7c6dcf (PartOf qatar asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "qatar is part of gulf state", "pln": ["(: cnet_partof_c3afb788d1 (PartOf qatar gulf_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "qatar is part of qatar", "pln": ["(: cnet_partof_cd8f4ede89 (PartOf qatar qatar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "qatari dirham is part of qatari riyal", "pln": ["(: cnet_partof_b4c5f807e2 (PartOf qatari_dirham qatari_riyal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "qindarka is part of lek", "pln": ["(: cnet_partof_5cff6aceb6 (PartOf qindarka lek) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "qoph is part of hebrew alphabet", "pln": ["(: cnet_partof_9088343c0f (PartOf qoph hebrew_alphabet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "quadricep is part of thigh", "pln": ["(: cnet_partof_2e723beb67 (PartOf quadricep thigh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "quahaug is part of quahog", "pln": ["(: cnet_partof_f995502fcc (PartOf quahaug quahog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "quai d orsay is part of left bank", "pln": ["(: cnet_partof_99a7b8c973 (PartOf quai_d_orsay left_bank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "quail is part of quail", "pln": ["(: cnet_partof_8204aa01e4 (PartOf quail quail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "quandong is part of quandong", "pln": ["(: cnet_partof_36076e00d1 (PartOf quandong quandong) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "quandong nut is part of quandong", "pln": ["(: cnet_partof_4d0062d8fb (PartOf quandong_nut quandong) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "quantification is part of predicate calculus", "pln": ["(: cnet_partof_bca0c4a7b1 (PartOf quantification predicate_calculus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "quark is part of hadron", "pln": ["(: cnet_partof_85737ad3e9 (PartOf quark hadron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "quart is part of gallon", "pln": ["(: cnet_partof_e0566feb82 (PartOf quart gallon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "quart is part of peck", "pln": ["(: cnet_partof_1087c46f4a (PartOf quart peck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "quarter is part of upper", "pln": ["(: cnet_partof_693ed4524d (PartOf quarter upper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "quarter is part of playing period", "pln": ["(: cnet_partof_93de7f48c9 (PartOf quarter playing_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "quarter is part of hundredweight", "pln": ["(: cnet_partof_fb3a1f678a (PartOf quarter hundredweight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "quarter is part of hour", "pln": ["(: cnet_partof_54c4e2370b (PartOf quarter hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "quarter is part of school year", "pln": ["(: cnet_partof_4578c420aa (PartOf quarter school_year) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "quarter century is part of century", "pln": ["(: cnet_partof_93bbbe0a6d (PartOf quarter_century century) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "quarter hour is part of hour", "pln": ["(: cnet_partof_cbbe7fb7e4 (PartOf quarter_hour hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "quarter mile is part of mile", "pln": ["(: cnet_partof_37c8706f60 (PartOf quarter_mile mile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "quarter pound is part of pound", "pln": ["(: cnet_partof_869e8afeec (PartOf quarter_pound pound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "quarterdeck is part of weather deck", "pln": ["(: cnet_partof_5a4b82c6e0 (PartOf quarterdeck weather_deck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "quarterfinal is part of elimination tournament", "pln": ["(: cnet_partof_5eccf77cf1 (PartOf quarterfinal elimination_tournament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "quaternary is part of cenozoic", "pln": ["(: cnet_partof_29a1489098 (PartOf quaternary cenozoic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "quattrocento is part of renaissance", "pln": ["(: cnet_partof_d5fb549072 (PartOf quattrocento renaissance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "quebec is part of canada", "pln": ["(: cnet_partof_3c5f5071b9 (PartOf quebec canada) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "quebec is part of quebec", "pln": ["(: cnet_partof_c71a28108e (PartOf quebec quebec) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "quebec bridge is part of quebec", "pln": ["(: cnet_partof_80b6bcd6e9 (PartOf quebec_bridge quebec) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "queen charlotte sound is part of british columbia", "pln": ["(: cnet_partof_28ae6e2f49 (PartOf queen_charlotte_sound british_columbia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "queen maud land is part of antarctica", "pln": ["(: cnet_partof_e7f856c3a7 (PartOf queen_maud_land antarctica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "queen is part of new york", "pln": ["(: cnet_partof_979620e871 (PartOf queen new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "queensboro bridge is part of new york", "pln": ["(: cnet_partof_3a579413ed (PartOf queensboro_bridge new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "queensland is part of australia", "pln": ["(: cnet_partof_4b32248aa2 (PartOf queensland australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "quezon city is part of philippine", "pln": ["(: cnet_partof_459e35a899 (PartOf quezon_city philippine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "quickening is part of pregnancy", "pln": ["(: cnet_partof_ce5e3e9d58 (PartOf quickening pregnancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "quill is part of feather", "pln": ["(: cnet_partof_caec85193d (PartOf quill feather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "quill is part of hedgehog", "pln": ["(: cnet_partof_12f1ec1143 (PartOf quill hedgehog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "quill is part of porcupine", "pln": ["(: cnet_partof_97abf23734 (PartOf quill porcupine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "quince is part of quince", "pln": ["(: cnet_partof_2c6ee66b9c (PartOf quince quince) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "quintal is part of metric ton", "pln": ["(: cnet_partof_cdd2642639 (PartOf quintal metric_ton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "quintana roo is part of mexico", "pln": ["(: cnet_partof_dcb0dfbcbc (PartOf quintana_roo mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "quire is part of ream", "pln": ["(: cnet_partof_0c67963ea8 (PartOf quire ream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "quito is part of ecuador", "pln": ["(: cnet_partof_aa94aed29c (PartOf quito ecuador) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "qum is part of iran", "pln": ["(: cnet_partof_ae07f88995 (PartOf qum iran) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "qurush is part of saudi arabian riyal", "pln": ["(: cnet_partof_6c0b3c968f (PartOf qurush saudi_arabian_riyal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rabat is part of morocco", "pln": ["(: cnet_partof_6047078723 (PartOf rabat morocco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rabbit is part of european rabbit", "pln": ["(: cnet_partof_f7c690bf69 (PartOf rabbit european_rabbit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "rabbit is part of hare", "pln": ["(: cnet_partof_f90afc32ff (PartOf rabbit hare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rabbit is part of wood rabbit", "pln": ["(: cnet_partof_e6324e263d (PartOf rabbit wood_rabbit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rabi i is part of islamic calendar", "pln": ["(: cnet_partof_d7930a2959 (PartOf rabi_i islamic_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rabi ii is part of islamic calendar", "pln": ["(: cnet_partof_2a9e59dc6b (PartOf rabi_ii islamic_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "racine is part of wisconsin", "pln": ["(: cnet_partof_983b8d4624 (PartOf racine wisconsin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "radial vein is part of forearm", "pln": ["(: cnet_partof_4d9ff59b33 (PartOf radial_vein forearm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "radiator is part of car", "pln": ["(: cnet_partof_208c1208a0 (PartOf radiator car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "radiator is part of cooling system", "pln": ["(: cnet_partof_7759a273cb (PartOf radiator cooling_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "radiator is part of heating system", "pln": ["(: cnet_partof_00d843d557 (PartOf radiator heating_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "radiator cap is part of radiator", "pln": ["(: cnet_partof_ab7c59cafb (PartOf radiator_cap radiator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "radiator hose is part of cooling system", "pln": ["(: cnet_partof_122ef0a04f (PartOf radiator_hose cooling_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "radical is part of ideogram", "pln": ["(: cnet_partof_0951cc34f1 (PartOf radical ideogram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "radicle is part of nerve", "pln": ["(: cnet_partof_626c3921db (PartOf radicle nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "radio chassis is part of receiver", "pln": ["(: cnet_partof_d84f65d2ac (PartOf radio_chassis receiver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "radio chassis is part of record player", "pln": ["(: cnet_partof_a59463112a (PartOf radio_chassis record_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "radio frequency is part of electromagnetic spectrum", "pln": ["(: cnet_partof_44dc024e20 (PartOf radio_frequency electromagnetic_spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "radio phonograph is part of audio system", "pln": ["(: cnet_partof_c05f9a5137 (PartOf radio_phonograph audio_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "radio receiver is part of radio", "pln": ["(: cnet_partof_9d5e88de85 (PartOf radio_receiver radio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "radio receiver is part of radio phonograph", "pln": ["(: cnet_partof_241120eea1 (PartOf radio_receiver radio_phonograph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "radio spectrum is part of electromagnetic spectrum", "pln": ["(: cnet_partof_0f0f79658d (PartOf radio_spectrum electromagnetic_spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "radio station is part of communication system", "pln": ["(: cnet_partof_23cfd62451 (PartOf radio_station communication_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "radio transmitter is part of radio", "pln": ["(: cnet_partof_f34b40fd97 (PartOf radio_transmitter radio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "radio wave is part of radio spectrum", "pln": ["(: cnet_partof_7552392a53 (PartOf radio_wave radio_spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "radish is part of radish plant", "pln": ["(: cnet_partof_55030d8f85 (PartOf radish radish_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "radius is part of diameter", "pln": ["(: cnet_partof_4aea7da2a0 (PartOf radius diameter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "radius is part of forearm", "pln": ["(: cnet_partof_95d29417e9 (PartOf radius forearm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "radome is part of airplane", "pln": ["(: cnet_partof_2f79f56ce3 (PartOf radome airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rag day is part of rag", "pln": ["(: cnet_partof_aeaf7812cc (PartOf rag_day rag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "raglan sleeve is part of raglan", "pln": ["(: cnet_partof_33edf0a572 (PartOf raglan_sleeve raglan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "railing is part of bannister", "pln": ["(: cnet_partof_0074367946 (PartOf railing bannister) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "railroad bed is part of line", "pln": ["(: cnet_partof_b68803749d (PartOf railroad_bed line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "railroad track is part of line", "pln": ["(: cnet_partof_25069fa3c8 (PartOf railroad_track line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rainbow is part of sky", "pln": ["(: cnet_partof_4826550bb4 (PartOf rainbow sky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rainbow trout is part of rainbow trout", "pln": ["(: cnet_partof_e1859d7e3b (PartOf rainbow_trout rainbow_trout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "raindrop is part of rain", "pln": ["(: cnet_partof_b2a8661414 (PartOf raindrop rain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rajab is part of islamic calendar", "pln": ["(: cnet_partof_bb70723380 (PartOf rajab islamic_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rakaposhi is part of karakoram", "pln": ["(: cnet_partof_4f08b9f65c (PartOf rakaposhi karakoram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rake handle is part of rake", "pln": ["(: cnet_partof_098814c51a (PartOf rake_handle rake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "raleigh is part of north carolina", "pln": ["(: cnet_partof_8623a90319 (PartOf raleigh north_carolina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ram is part of computer", "pln": ["(: cnet_partof_6419828859 (PartOf ram computer) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ram disk is part of random access memory", "pln": ["(: cnet_partof_b15027cd03 (PartOf ram_disk random_access_memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "ramadan is part of islamic calendar", "pln": ["(: cnet_partof_c0fd1243b2 (PartOf ramadan islamic_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "ramanavami is part of chait", "pln": ["(: cnet_partof_5294d5dbea (PartOf ramanavami chait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "ranier is part of cascades", "pln": ["(: cnet_partof_91406a285d (PartOf ranier cascades) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rambutan is part of rambutan", "pln": ["(: cnet_partof_5d1fb6d89b (PartOf rambutan rambutan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rampart is part of fortification", "pln": ["(: cnet_partof_846164fd9f (PartOf rampart fortification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ranier is part of cascade", "pln": ["(: cnet_partof_81f2b3d544 (PartOf ranier cascade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ranier is part of washington", "pln": ["(: cnet_partof_05ca77afd1 (PartOf ranier washington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ranvier s node is part of medullary sheath", "pln": ["(: cnet_partof_027573214f (PartOf ranvier_s_node medullary_sheath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "raphe is part of scrotum", "pln": ["(: cnet_partof_2f7bc5315e (PartOf raphe scrotum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rapid is part of river", "pln": ["(: cnet_partof_20de07dff6 (PartOf rapid river) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rapid city is part of south dakota", "pln": ["(: cnet_partof_f634d792a1 (PartOf rapid_city south_dakota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "rappahannock river is part of virginia", "pln": ["(: cnet_partof_91ca44cfc1 (PartOf rappahannock_river virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rasht is part of iran", "pln": ["(: cnet_partof_eee17f9a9b (PartOf rasht iran) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "raspberry is part of american raspberry", "pln": ["(: cnet_partof_e102a8aca8 (PartOf raspberry american_raspberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "raspberry is part of black raspberry", "pln": ["(: cnet_partof_7e35186ade (PartOf raspberry black_raspberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "raster is part of display", "pln": ["(: cnet_partof_b13981b43e (PartOf raster display) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rat is part of hairdo", "pln": ["(: cnet_partof_231cd0427f (PartOf rat hairdo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ratchet is part of spiral ratchet screwdriver", "pln": ["(: cnet_partof_44f008f917 (PartOf ratchet spiral_ratchet_screwdriver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ratchet wheel is part of ratchet", "pln": ["(: cnet_partof_c2a2d701b5 (PartOf ratchet_wheel ratchet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ratline is part of ship", "pln": ["(: cnet_partof_d668d17237 (PartOf ratline ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rattle is part of rattlesnake", "pln": ["(: cnet_partof_dfbf4361c7 (PartOf rattle rattlesnake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rawalpindi is part of pakistan", "pln": ["(: cnet_partof_3e6753cb0f (PartOf rawalpindi pakistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "ray is part of fin", "pln": ["(: cnet_partof_cb3c99f196 (PartOf ray fin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ray flower is part of flower head", "pln": ["(: cnet_partof_c679375205 (PartOf ray_flower flower_head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "razorblade is part of razor", "pln": ["(: cnet_partof_d75b79b842 (PartOf razorblade razor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "reading is part of berkshire", "pln": ["(: cnet_partof_49d8457d5b (PartOf reading berkshire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "reading is part of england", "pln": ["(: cnet_partof_1cb307df86 (PartOf reading england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "reading room is part of clubhouse", "pln": ["(: cnet_partof_bfc2765171 (PartOf reading_room clubhouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "reading room is part of library", "pln": ["(: cnet_partof_43e119c861 (PartOf reading_room library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "rear window is part of car", "pln": ["(: cnet_partof_85f59ccf8d (PartOf rear_window car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rebound is part of basketball", "pln": ["(: cnet_partof_38ff5b90a7 (PartOf rebound basketball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "receptacle is part of stalk", "pln": ["(: cnet_partof_f4d2d07a3c (PartOf receptacle stalk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "reception line is part of reception", "pln": ["(: cnet_partof_13e316c953 (PartOf reception_line reception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "recife is part of brazil", "pln": ["(: cnet_partof_f1b6265c26 (PartOf recife brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "record changer is part of record player", "pln": ["(: cnet_partof_8d907e6a06 (PartOf record_changer record_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "record player is part of audio system", "pln": ["(: cnet_partof_4aaab955c4 (PartOf record_player audio_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "rectal artery is part of rectum", "pln": ["(: cnet_partof_ebe439b417 (PartOf rectal_artery rectum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rectum is part of large intestine", "pln": ["(: cnet_partof_99f38ef3cd (PartOf rectum large_intestine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "red is part of louisiana", "pln": ["(: cnet_partof_aac0cd9d4a (PartOf red louisiana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "red is part of oklahoma", "pln": ["(: cnet_partof_07362d696c (PartOf red oklahoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "red is part of texa", "pln": ["(: cnet_partof_e3ff960fd1 (PartOf red texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "red currant is part of red currant", "pln": ["(: cnet_partof_ead0bf6555 (PartOf red_currant red_currant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "red rockfish is part of red rockfish", "pln": ["(: cnet_partof_5725c3c273 (PartOf red_rockfish red_rockfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "red salmon is part of sockeye", "pln": ["(: cnet_partof_b12ee629ab (PartOf red_salmon sockeye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "red sea is part of indian ocean", "pln": ["(: cnet_partof_0b03876163 (PartOf red_sea indian_ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "red snapper is part of red snapper", "pln": ["(: cnet_partof_0a5aa887a4 (PartOf red_snapper red_snapper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "redding is part of california", "pln": ["(: cnet_partof_bf018e5002 (PartOf redding california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "redonda is part of antigua and barbuda", "pln": ["(: cnet_partof_3fd8562d49 (PartOf redonda antigua_and_barbuda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "redwood national park is part of california", "pln": ["(: cnet_partof_09b2273df9 (PartOf redwood_national_park california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "reef is part of sail", "pln": ["(: cnet_partof_77ff7c8b0d (PartOf reef sail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "reel is part of fishing rod", "pln": ["(: cnet_partof_e920c83f2e (PartOf reel fishing_rod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "reformer is part of oil refinery", "pln": ["(: cnet_partof_5269d335ea (PartOf reformer oil_refinery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "refrain is part of song", "pln": ["(: cnet_partof_62031627a7 (PartOf refrain song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "refrigeration system is part of refrigerator", "pln": ["(: cnet_partof_ed829c9155 (PartOf refrigeration_system refrigerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "refrigeration system is part of refrigerator car", "pln": ["(: cnet_partof_e196b3e8f3 (PartOf refrigeration_system refrigerator_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "reggane is part of algeria", "pln": ["(: cnet_partof_dab254789b (PartOf reggane algeria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "regina is part of saskatchewan", "pln": ["(: cnet_partof_3cba3b7c18 (PartOf regina saskatchewan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "register is part of furnace", "pln": ["(: cnet_partof_9aebe63a00 (PartOf register furnace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "register is part of memory", "pln": ["(: cnet_partof_13e7594855 (PartOf register memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "regression is part of regression analysis", "pln": ["(: cnet_partof_0f81b43372 (PartOf regression regression_analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "regression coefficient is part of linear regression", "pln": ["(: cnet_partof_037430522c (PartOf regression_coefficient linear_regression) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "regression equation is part of regression analysis", "pln": ["(: cnet_partof_7b02371978 (PartOf regression_equation regression_analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "regression line is part of regression analysis", "pln": ["(: cnet_partof_bd61a976f1 (PartOf regression_line regression_analysis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "regulation time is part of athletic game", "pln": ["(: cnet_partof_d8b210225e (PartOf regulation_time athletic_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "regulatory gene is part of operon", "pln": ["(: cnet_partof_a6bb49bf56 (PartOf regulatory_gene operon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rein is part of bridle", "pln": ["(: cnet_partof_8fbd604d23 (PartOf rein bridle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "relay is part of circuit", "pln": ["(: cnet_partof_d3ef50a99a (PartOf relay circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "religious holiday is part of church year", "pln": ["(: cnet_partof_d1f4078987 (PartOf religious_holiday church_year) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "remedy is part of treatment", "pln": ["(: cnet_partof_5a104d1d4b (PartOf remedy treatment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "republican is part of kansas", "pln": ["(: cnet_partof_1df8805e6f (PartOf republican kansas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "remise is part of straight thrust", "pln": ["(: cnet_partof_c258f6379a (PartOf remise straight_thrust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "remote control is part of remote control bomb", "pln": ["(: cnet_partof_91f14b9bfe (PartOf remote_control remote_control_bomb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "renaissance is part of history", "pln": ["(: cnet_partof_68b33e09b0 (PartOf renaissance history) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "renal artery is part of kidney", "pln": ["(: cnet_partof_71d31d5f5e (PartOf renal_artery kidney) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "renal cortex is part of kidney", "pln": ["(: cnet_partof_82905e11e4 (PartOf renal_cortex kidney) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "renal vein is part of kidney", "pln": ["(: cnet_partof_1a657f1958 (PartOf renal_vein kidney) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "reno is part of nevada", "pln": ["(: cnet_partof_af851ef75d (PartOf reno nevada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rent seeking is part of economic", "pln": ["(: cnet_partof_9dfd5131db (PartOf rent_seeking economic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "reproductive cell is part of reproductive system", "pln": ["(: cnet_partof_b64bf9b2fb (PartOf reproductive_cell reproductive_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "reproductive organ is part of reproductive system", "pln": ["(: cnet_partof_f1a2df31a1 (PartOf reproductive_organ reproductive_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "reproductive system is part of urogenital system", "pln": ["(: cnet_partof_589e1aa6f2 (PartOf reproductive_system urogenital_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "republican is part of colorado", "pln": ["(: cnet_partof_a1450e7f57 (PartOf republican colorado) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "republican is part of kansa", "pln": ["(: cnet_partof_83842872c8 (PartOf republican kansa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "republican is part of nebraska", "pln": ["(: cnet_partof_4ff1b2f464 (PartOf republican nebraska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "requiem is part of requiem", "pln": ["(: cnet_partof_7f8e165a1e (PartOf requiem requiem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rerebrace is part of body armor", "pln": ["(: cnet_partof_935bbc3278 (PartOf rerebrace body_armor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "reserve clause is part of contract", "pln": ["(: cnet_partof_32697691df (PartOf reserve_clause contract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "reservoir is part of water system", "pln": ["(: cnet_partof_13f3b7da50 (PartOf reservoir water_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "reset button is part of reset", "pln": ["(: cnet_partof_1d2ba31a81 (PartOf reset_button reset) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "resh is part of hebrew alphabet", "pln": ["(: cnet_partof_f4e6086e5e (PartOf resh hebrew_alphabet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "resistor is part of circuit", "pln": ["(: cnet_partof_93c4c48b2a (PartOf resistor circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "resort is part of resort area", "pln": ["(: cnet_partof_232df5b81a (PartOf resort resort_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "resort hotel is part of resort area", "pln": ["(: cnet_partof_74f510a8dc (PartOf resort_hotel resort_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "respiratory center is part of medulla oblongata", "pln": ["(: cnet_partof_1383f082e2 (PartOf respiratory_center medulla_oblongata) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "respiratory center is part of pon", "pln": ["(: cnet_partof_b6191abc21 (PartOf respiratory_center pon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "respiratory organ is part of respiratory system", "pln": ["(: cnet_partof_ea7b27ea8c (PartOf respiratory_organ respiratory_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "respiratory system is part of body", "pln": ["(: cnet_partof_98336e9245 (PartOf respiratory_system body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "respiratory tract is part of respiratory system", "pln": ["(: cnet_partof_1b749c3771 (PartOf respiratory_tract respiratory_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "responsibility is part of character", "pln": ["(: cnet_partof_fc1a0c1e3c (PartOf responsibility character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rete testis is part of testis", "pln": ["(: cnet_partof_d89500ece2 (PartOf rete_testis testis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "reticle is part of eyepiece", "pln": ["(: cnet_partof_389750e2b4 (PartOf reticle eyepiece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "reticular activating system is part of reticular formation", "pln": ["(: cnet_partof_9f38f35fa5 (PartOf reticular_activating_system reticular_formation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "reticular formation is part of brainstem", "pln": ["(: cnet_partof_2914633a10 (PartOf reticular_formation brainstem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "reticuloendothelial system is part of immune system", "pln": ["(: cnet_partof_e0455e2a1e (PartOf reticuloendothelial_system immune_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "reticulum is part of ruminant", "pln": ["(: cnet_partof_a0e7ad2518 (PartOf reticulum ruminant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "retina is part of eye", "pln": ["(: cnet_partof_c5e9d9ea7a (PartOf retina eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "retort is part of still", "pln": ["(: cnet_partof_afd4966ad9 (PartOf retort still) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "return is part of tennis", "pln": ["(: cnet_partof_7d2fb58f13 (PartOf return tennis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "revelation is part of new testament", "pln": ["(: cnet_partof_18038737c4 (PartOf revelation new_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "reverse is part of car", "pln": ["(: cnet_partof_1aff4f55d5 (PartOf reverse car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "reverse is part of coin", "pln": ["(: cnet_partof_c5d6d83142 (PartOf reverse coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "revetment is part of embankment", "pln": ["(: cnet_partof_ee476db824 (PartOf revetment embankment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "revoke is part of card game", "pln": ["(: cnet_partof_ccd6452a66 (PartOf revoke card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "revolutionary calendar month is part of revolutionary calendar", "pln": ["(: cnet_partof_5be4f11db0 (PartOf revolutionary_calendar_month revolutionary_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "reykjavik is part of iceland", "pln": ["(: cnet_partof_4aac01901e (PartOf reykjavik iceland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rheim is part of france", "pln": ["(: cnet_partof_5a7e6e5b74 (PartOf rheim france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rhetorical device is part of rhetoric", "pln": ["(: cnet_partof_167553be0b (PartOf rhetorical_device rhetoric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "rheumatic aortitis is part of rheumatic fever", "pln": ["(: cnet_partof_34dec315d3 (PartOf rheumatic_aortitis rheumatic_fever) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rhine is part of france", "pln": ["(: cnet_partof_87c7029728 (PartOf rhine france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rhine is part of germany", "pln": ["(: cnet_partof_815769ccc0 (PartOf rhine germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rhine is part of netherland", "pln": ["(: cnet_partof_5988910d68 (PartOf rhine netherland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rhine is part of switzerland", "pln": ["(: cnet_partof_57944ec165 (PartOf rhine switzerland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "rhineland is part of germany", "pln": ["(: cnet_partof_0302f6308b (PartOf rhineland germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rhineland palatinate is part of germany", "pln": ["(: cnet_partof_ec7be9f4c6 (PartOf rhineland_palatinate germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rhinion is part of nasal", "pln": ["(: cnet_partof_659fcfb141 (PartOf rhinion nasal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "rhinorrhea is part of cold", "pln": ["(: cnet_partof_6c6a7f92ba (PartOf rhinorrhea cold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "rhodes is part of dodecanese", "pln": ["(: cnet_partof_98bdbd546c (PartOf rhodes dodecanese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rhode island is part of new england", "pln": ["(: cnet_partof_d9fdf33c4d (PartOf rhode_island new_england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rhode island is part of united state", "pln": ["(: cnet_partof_668ccfc326 (PartOf rhode_island united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rhode is part of dodecanese", "pln": ["(: cnet_partof_fda0e9bf3e (PartOf rhode dodecanese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rhode is part of greece", "pln": ["(: cnet_partof_d2158cec52 (PartOf rhode greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "rhone is part of france", "pln": ["(: cnet_partof_322a9aa87b (PartOf rhone france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rhone is part of switzerland", "pln": ["(: cnet_partof_d79781734f (PartOf rhone switzerland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rhone alpe is part of france", "pln": ["(: cnet_partof_69aadb3e2c (PartOf rhone_alpe france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rhyme is part of poem", "pln": ["(: cnet_partof_6faa246e72 (PartOf rhyme poem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "rib is part of hull", "pln": ["(: cnet_partof_d8aac3b967 (PartOf rib hull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rib is part of umbrella", "pln": ["(: cnet_partof_e8e93b47e7 (PartOf rib umbrella) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "rib is part of wing", "pln": ["(: cnet_partof_6586f60d4d (PartOf rib wing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rib is part of vertebrate", "pln": ["(: cnet_partof_12b8eca214 (PartOf rib vertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "rib cage is part of axial skeleton", "pln": ["(: cnet_partof_9547807a0c (PartOf rib_cage axial_skeleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rib cage is part of thorax", "pln": ["(: cnet_partof_f0a1e716ff (PartOf rib_cage thorax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rib roast is part of rib", "pln": ["(: cnet_partof_d4c68e99e4 (PartOf rib_roast rib) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ribbon is part of typewriter", "pln": ["(: cnet_partof_5f951a1315 (PartOf ribbon typewriter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rice is part of cultivated rice", "pln": ["(: cnet_partof_2294bcc396 (PartOf rice cultivated_rice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "richmond is part of virginia", "pln": ["(: cnet_partof_3c33b36d03 (PartOf richmond virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ride is part of amusement park", "pln": ["(: cnet_partof_b5e7d372fc (PartOf ride amusement_park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rider is part of bill", "pln": ["(: cnet_partof_d92c37a2be (PartOf rider bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rider is part of legislative act", "pln": ["(: cnet_partof_9fc4b5eda2 (PartOf rider legislative_act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rider plate is part of hull", "pln": ["(: cnet_partof_8a79c84a14 (PartOf rider_plate hull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "ridge is part of gable roof", "pln": ["(: cnet_partof_44e83284fa (PartOf ridge gable_roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ridge rope is part of ship", "pln": ["(: cnet_partof_389eadc7d6 (PartOf ridge_rope ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "riding bitt is part of ship", "pln": ["(: cnet_partof_8155380148 (PartOf riding_bitt ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "riding boot is part of riding habit", "pln": ["(: cnet_partof_35e6a67dfb (PartOf riding_boot riding_habit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rifle butt is part of rifle", "pln": ["(: cnet_partof_1dddc7e9aa (PartOf rifle_butt rifle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "riga is part of latvia", "pln": ["(: cnet_partof_12b4c52f24 (PartOf riga latvia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "right bank is part of paris", "pln": ["(: cnet_partof_0b209d5ae1 (PartOf right_bank paris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "right ear is part of person", "pln": ["(: cnet_partof_695e9f57f6 (PartOf right_ear person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "right field is part of outfield", "pln": ["(: cnet_partof_d59b370043 (PartOf right_field outfield) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "right hand is part of person", "pln": ["(: cnet_partof_742d080168 (PartOf right_hand person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "right leg is part of person", "pln": ["(: cnet_partof_a137635803 (PartOf right_leg person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rim is part of wheel", "pln": ["(: cnet_partof_838337a52e (PartOf rim wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rima glottidis is part of glottis", "pln": ["(: cnet_partof_e2110135f7 (PartOf rima_glottidis glottis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rinse is part of wash", "pln": ["(: cnet_partof_065f11f9ba (PartOf rinse wash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rio de janeiro is part of brazil", "pln": ["(: cnet_partof_d52227e92b (PartOf rio_de_janeiro brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rio de la plata is part of argentina", "pln": ["(: cnet_partof_26815dc13b (PartOf rio_de_la_plata argentina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rio de la plata is part of uruguay", "pln": ["(: cnet_partof_fdca7aa110 (PartOf rio_de_la_plata uruguay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rio grande is part of mexico", "pln": ["(: cnet_partof_3e153f635a (PartOf rio_grande mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rio grande is part of united state", "pln": ["(: cnet_partof_843fa137cf (PartOf rio_grande united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "riot act is part of criminal law", "pln": ["(: cnet_partof_a60521df34 (PartOf riot_act criminal_law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ripcord is part of balloon", "pln": ["(: cnet_partof_8606c4c44e (PartOf ripcord balloon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ripcord is part of parachute", "pln": ["(: cnet_partof_a6fd8131d1 (PartOf ripcord parachute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ripping chisel is part of ripping bar", "pln": ["(: cnet_partof_81fefd220d (PartOf ripping_chisel ripping_bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "riptide is part of tide", "pln": ["(: cnet_partof_7cb3135e32 (PartOf riptide tide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "riser is part of step", "pln": ["(: cnet_partof_4a0c04d2e4 (PartOf riser step) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ritual dancing is part of ritual", "pln": ["(: cnet_partof_f4a88aa891 (PartOf ritual_dancing ritual) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "river is part of water system", "pln": ["(: cnet_partof_0bfccb3e1a (PartOf river water_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "river prawn is part of long clawed prawn", "pln": ["(: cnet_partof_13e9edc0a1 (PartOf river_prawn long_clawed_prawn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "riverside is part of california", "pln": ["(: cnet_partof_7509fa40be (PartOf riverside california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "riviera is part of france", "pln": ["(: cnet_partof_1b12571988 (PartOf riviera france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "riviera is part of italy", "pln": ["(: cnet_partof_98720d95cc (PartOf riviera italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "riyadh is part of saudi arabia", "pln": ["(: cnet_partof_8f7e1f4258 (PartOf riyadh saudi_arabia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "roadbed is part of road", "pln": ["(: cnet_partof_a07f64c2f5 (PartOf roadbed road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "roanoke is part of virginia", "pln": ["(: cnet_partof_c1e1ab6dac (PartOf roanoke virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rochester is part of minnesota", "pln": ["(: cnet_partof_1cb213b3f0 (PartOf rochester minnesota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rochester is part of new york", "pln": ["(: cnet_partof_7a33d2c7a5 (PartOf rochester new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rock cornish hen is part of rock cornish", "pln": ["(: cnet_partof_4e6e30aadc (PartOf rock_cornish_hen rock_cornish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rock island is part of illinois", "pln": ["(: cnet_partof_d6b458dd10 (PartOf rock_island illinois) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rock spring is part of wyoming", "pln": ["(: cnet_partof_fcfaf05c86 (PartOf rock_spring wyoming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "rocker is part of cradle", "pln": ["(: cnet_partof_02015663ab (PartOf rocker cradle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rocker is part of hobby", "pln": ["(: cnet_partof_d8f9baa2c8 (PartOf rocker hobby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rocker is part of rocking chair", "pln": ["(: cnet_partof_f72637dacf (PartOf rocker rocking_chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rocket is part of rocket", "pln": ["(: cnet_partof_b65cc4e570 (PartOf rocket rocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rockfish is part of rockfish", "pln": ["(: cnet_partof_9141447419 (PartOf rockfish rockfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rockford is part of illinois", "pln": ["(: cnet_partof_bcccfb695b (PartOf rockford illinois) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rocky is part of north america", "pln": ["(: cnet_partof_e6eb52109d (PartOf rocky north_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rocky mountain national park is part of colorado", "pln": ["(: cnet_partof_428ff5795e (PartOf rocky_mountain_national_park colorado) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rocroi is part of thirty year war", "pln": ["(: cnet_partof_2eae734867 (PartOf rocroi thirty_year_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rod is part of eye", "pln": ["(: cnet_partof_5c3d4dc473 (PartOf rod eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rod is part of retina", "pln": ["(: cnet_partof_661407d402 (PartOf rod retina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "roe is part of fish", "pln": ["(: cnet_partof_4bc8d1f00e (PartOf roe fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "roll is part of bowling", "pln": ["(: cnet_partof_92e4bfdd7a (PartOf roll bowling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "roller is part of roller blind", "pln": ["(: cnet_partof_b928b1deea (PartOf roller roller_blind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "roller is part of roller skate", "pln": ["(: cnet_partof_aa0aa7ba5a (PartOf roller roller_skate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "roman empire is part of africa", "pln": ["(: cnet_partof_ea4209a406 (PartOf roman_empire africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "roman empire is part of asia", "pln": ["(: cnet_partof_48fc7d8c7f (PartOf roman_empire asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "roman empire is part of europe", "pln": ["(: cnet_partof_71c000c542 (PartOf roman_empire europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "roman republic is part of europe", "pln": ["(: cnet_partof_1234fcc372 (PartOf roman_republic europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "romania is part of europe", "pln": ["(: cnet_partof_174b4f2e7c (PartOf romania europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rome is part of roman catholic", "pln": ["(: cnet_partof_39a71c2e0c (PartOf rome roman_catholic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rome is part of italy", "pln": ["(: cnet_partof_8650fb9d42 (PartOf rome italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rood screen is part of church", "pln": ["(: cnet_partof_f2ca8366dd (PartOf rood_screen church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "roof is part of building", "pln": ["(: cnet_partof_6f82d852e7 (PartOf roof building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "roof is part of bus", "pln": ["(: cnet_partof_d06a79b5e0 (PartOf roof bus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "roof is part of car", "pln": ["(: cnet_partof_740b9847fb (PartOf roof car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "rossbach is part of seven years war", "pln": ["(: cnet_partof_6c9f0e9516 (PartOf rossbach seven_years_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "roof is part of truck", "pln": ["(: cnet_partof_d45bf91e77 (PartOf roof truck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "roof is part of cave", "pln": ["(: cnet_partof_f58be305b2 (PartOf roof cave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "roof peak is part of roof", "pln": ["(: cnet_partof_bda6c18450 (PartOf roof_peak roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "roofing is part of construction", "pln": ["(: cnet_partof_6a88d4ba8e (PartOf roofing construction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "room is part of building", "pln": ["(: cnet_partof_47563636b9 (PartOf room building) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "room light is part of room", "pln": ["(: cnet_partof_c90c726454 (PartOf room_light room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "roomette is part of sleeping car", "pln": ["(: cnet_partof_3f80fa05a2 (PartOf roomette sleeping_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "root is part of transport system of plant", "pln": ["(: cnet_partof_7a5d6ee3fa (PartOf root transport_system_of_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "root is part of hair", "pln": ["(: cnet_partof_f7e166c7b2 (PartOf root hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "root is part of nail", "pln": ["(: cnet_partof_aec2515727 (PartOf root nail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "root is part of tooth", "pln": ["(: cnet_partof_2fafabeb62 (PartOf root tooth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "root is part of rootage", "pln": ["(: cnet_partof_526aaac5a4 (PartOf root rootage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "root canal is part of pulp cavity", "pln": ["(: cnet_partof_bbf19c8d43 (PartOf root_canal pulp_cavity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "root cap is part of root", "pln": ["(: cnet_partof_4aaefad2f8 (PartOf root_cap root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "root hair is part of root", "pln": ["(: cnet_partof_42f9c3a7c0 (PartOf root_hair root) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rosario is part of argentina", "pln": ["(: cnet_partof_299f5c955b (PartOf rosario argentina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rose apple is part of rose apple", "pln": ["(: cnet_partof_8456ee3d2d (PartOf rose_apple rose_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rose bed is part of rose garden", "pln": ["(: cnet_partof_efa412c79d (PartOf rose_bed rose_garden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "roseau is part of dominica", "pln": ["(: cnet_partof_bc6cad7cc3 (PartOf roseau dominica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rosemary is part of rosemary", "pln": ["(: cnet_partof_d7e00f5660 (PartOf rosemary rosemary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ross sea is part of antarctica", "pln": ["(: cnet_partof_d69d8226b7 (PartOf ross_sea antarctica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rossbach is part of seven year war", "pln": ["(: cnet_partof_88463bf399 (PartOf rossbach seven_year_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "rostock is part of germany", "pln": ["(: cnet_partof_6a96c7fc99 (PartOf rostock germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rostov is part of russia", "pln": ["(: cnet_partof_7238e1b084 (PartOf rostov russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "roswell is part of new mexico", "pln": ["(: cnet_partof_83d9b2904f (PartOf roswell new_mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rotating shaft is part of rotating mechanism", "pln": ["(: cnet_partof_3a802ca056 (PartOf rotating_shaft rotating_mechanism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rotational latency is part of access time", "pln": ["(: cnet_partof_df5b8fe01e (PartOf rotational_latency access_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "rotator cuff is part of shoulder", "pln": ["(: cnet_partof_780a301e4a (PartOf rotator_cuff shoulder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rotogravure is part of newspaper", "pln": ["(: cnet_partof_32a466dfb8 (PartOf rotogravure newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rotor is part of distributor", "pln": ["(: cnet_partof_972ef1e003 (PartOf rotor distributor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rotor is part of electric motor", "pln": ["(: cnet_partof_e8143fa290 (PartOf rotor electric_motor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rotor is part of generator", "pln": ["(: cnet_partof_ff4ff4b822 (PartOf rotor generator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "rotor is part of helicopter", "pln": ["(: cnet_partof_cd77a1aed8 (PartOf rotor helicopter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "rotor is part of jet engine", "pln": ["(: cnet_partof_7d90a35cb6 (PartOf rotor jet_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rotor is part of turbine", "pln": ["(: cnet_partof_146e35b2f3 (PartOf rotor turbine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rotor blade is part of main rotor", "pln": ["(: cnet_partof_94974a3184 (PartOf rotor_blade main_rotor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rotor head is part of main rotor", "pln": ["(: cnet_partof_cbf9116d92 (PartOf rotor_head main_rotor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rotterdam is part of netherland", "pln": ["(: cnet_partof_1c91b00aa5 (PartOf rotterdam netherland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rough is part of golf course", "pln": ["(: cnet_partof_d6445d3d8c (PartOf rough golf_course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "round steak is part of round", "pln": ["(: cnet_partof_4263be7935 (PartOf round_steak round) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "roundel is part of body armor", "pln": ["(: cnet_partof_1b66e1aa4d (PartOf roundel body_armor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "routine is part of program", "pln": ["(: cnet_partof_e7c09175eb (PartOf routine program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "row is part of table", "pln": ["(: cnet_partof_c8ee2a71ca (PartOf row table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rowanberry is part of rowan", "pln": ["(: cnet_partof_e1df2f3c26 (PartOf rowanberry rowan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rowel is part of spur", "pln": ["(: cnet_partof_7ab47531f9 (PartOf rowel spur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rub al khali is part of arabian desert", "pln": ["(: cnet_partof_2a4dcf3116 (PartOf rub_al_khali arabian_desert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rub al khali is part of saudi arabia", "pln": ["(: cnet_partof_2ce1edf0ab (PartOf rub_al_khali saudi_arabia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rubber eraser is part of pencil", "pln": ["(: cnet_partof_0dd3cf81e5 (PartOf rubber_eraser pencil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rudder is part of vertical tail", "pln": ["(: cnet_partof_022ab27c21 (PartOf rudder vertical_tail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rudder is part of vessel", "pln": ["(: cnet_partof_b71cc3e209 (PartOf rudder vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rudder blade is part of rudder", "pln": ["(: cnet_partof_f714f7e149 (PartOf rudder_blade rudder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rudderpost is part of rudder", "pln": ["(: cnet_partof_5391b37f4f (PartOf rudderpost rudder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rue is part of rue", "pln": ["(: cnet_partof_2b137bd47d (PartOf rue rue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ruff is part of bridge", "pln": ["(: cnet_partof_fc914e0b9f (PartOf ruff bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ruhr is part of germany", "pln": ["(: cnet_partof_c94f3e6a91 (PartOf ruhr germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rule is part of book", "pln": ["(: cnet_partof_ad8cf85970 (PartOf rule book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rumble is part of carriage", "pln": ["(: cnet_partof_742c377071 (PartOf rumble carriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rumble seat is part of roadster", "pln": ["(: cnet_partof_f2c678a912 (PartOf rumble_seat roadster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rumen is part of ruminant", "pln": ["(: cnet_partof_ba770eb1c6 (PartOf rumen ruminant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rump roast is part of rump", "pln": ["(: cnet_partof_f08ea867f6 (PartOf rump_roast rump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rump steak is part of rump", "pln": ["(: cnet_partof_b9a37f2ebd (PartOf rump_steak rump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "run up is part of bowling", "pln": ["(: cnet_partof_fad9138bb0 (PartOf run_up bowling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "run up is part of long jump", "pln": ["(: cnet_partof_3f2896626a (PartOf run_up long_jump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "run up is part of pole vault", "pln": ["(: cnet_partof_199074d8f2 (PartOf run_up pole_vault) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rundle is part of ladder", "pln": ["(: cnet_partof_cb56a5e003 (PartOf rundle ladder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rung is part of folding chair", "pln": ["(: cnet_partof_34b709b5af (PartOf rung folding_chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "rung is part of highchair", "pln": ["(: cnet_partof_33663274bf (PartOf rung highchair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "rung is part of rocking chair", "pln": ["(: cnet_partof_ce018fadca (PartOf rung rocking_chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rung is part of straight chair", "pln": ["(: cnet_partof_1d459a069f (PartOf rung straight_chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "runner is part of sled", "pln": ["(: cnet_partof_d70dd95b33 (PartOf runner sled) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "running board is part of car", "pln": ["(: cnet_partof_f6156a764d (PartOf running_board car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "running head is part of book", "pln": ["(: cnet_partof_eaee4ae72e (PartOf running_head book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "runway is part of airfield", "pln": ["(: cnet_partof_feb4b0cbf7 (PartOf runway airfield) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "runway is part of airstrip", "pln": ["(: cnet_partof_3a9e8b6da6 (PartOf runway airstrip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rushmore is part of black hill", "pln": ["(: cnet_partof_c50fa4b434 (PartOf rushmore black_hill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rushmore is part of south dakota", "pln": ["(: cnet_partof_887fcdb5da (PartOf rushmore south_dakota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "russia is part of eurasia", "pln": ["(: cnet_partof_71d647032e (PartOf russia eurasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "russian river is part of california", "pln": ["(: cnet_partof_49c2579fdd (PartOf russian_river california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rustbelt is part of midwest", "pln": ["(: cnet_partof_d34e67daa1 (PartOf rustbelt midwest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rustbelt is part of new england", "pln": ["(: cnet_partof_e60fed5292 (PartOf rustbelt new_england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rutabaga is part of rutabaga", "pln": ["(: cnet_partof_6426d9ea6b (PartOf rutabaga rutabaga) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ruth is part of hagiographa", "pln": ["(: cnet_partof_f9603eeab3 (PartOf ruth hagiographa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ruth is part of old testament", "pln": ["(: cnet_partof_ea1868e9c5 (PartOf ruth old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rutland is part of vermont", "pln": ["(: cnet_partof_cd46118f2c (PartOf rutland vermont) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "rwanda is part of africa", "pln": ["(: cnet_partof_78c136ac16 (PartOf rwanda africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rwanda is part of east africa", "pln": ["(: cnet_partof_769b62ce69 (PartOf rwanda east_africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "rye is part of rye", "pln": ["(: cnet_partof_1da68035d5 (PartOf rye rye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ryukyu island is part of japan", "pln": ["(: cnet_partof_1b36ac46ea (PartOf ryukyu_island japan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saale is part of germany", "pln": ["(: cnet_partof_c7d077b9ad (PartOf saale germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saba is part of netherland antille", "pln": ["(: cnet_partof_0d20a90a6a (PartOf saba netherland_antille) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sabah is part of borneo", "pln": ["(: cnet_partof_b1bd429b81 (PartOf sabah borneo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sabah is part of east malaysia", "pln": ["(: cnet_partof_8c3394395e (PartOf sabah east_malaysia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sabine is part of texa", "pln": ["(: cnet_partof_c7f88da95d (PartOf sabine texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saccule is part of membranous labyrinth", "pln": ["(: cnet_partof_1e0aa0d074 (PartOf saccule membranous_labyrinth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sacral vertebra is part of sacrum", "pln": ["(: cnet_partof_161a7afab6 (PartOf sacral_vertebra sacrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sacramento is part of california", "pln": ["(: cnet_partof_83310bdc91 (PartOf sacramento california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sacramento mountain is part of new mexico", "pln": ["(: cnet_partof_54c12b171f (PartOf sacramento_mountain new_mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "sacramento river is part of california", "pln": ["(: cnet_partof_6b9de8be29 (PartOf sacramento_river california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sacred college is part of roman catholic", "pln": ["(: cnet_partof_45751ee488 (PartOf sacred_college roman_catholic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "sacrum is part of pelvis", "pln": ["(: cnet_partof_381436cf90 (PartOf sacrum pelvis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saddle is part of back", "pln": ["(: cnet_partof_04d7c6decd (PartOf saddle back) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saddle is part of domestic fowl", "pln": ["(: cnet_partof_b0f3cbd34c (PartOf saddle domestic_fowl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saddle is part of shoe", "pln": ["(: cnet_partof_260987d6c5 (PartOf saddle shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saddle horn is part of saddle", "pln": ["(: cnet_partof_feb21e3224 (PartOf saddle_horn saddle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sadhe is part of hebrew alphabet", "pln": ["(: cnet_partof_c7f460d829 (PartOf sadhe hebrew_alphabet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "safar is part of islamic calendar", "pln": ["(: cnet_partof_4b63b33fa8 (PartOf safar islamic_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "safe period is part of menstrual cycle", "pln": ["(: cnet_partof_a790bc0e1c (PartOf safe_period menstrual_cycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "safety catch is part of gun", "pln": ["(: cnet_partof_852ad3fbc9 (PartOf safety_catch gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "saint eustatius is part of netherlands antilles", "pln": ["(: cnet_partof_a4abf81da2 (PartOf saint_eustatius netherlands_antilles) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "safflower seed is part of safflower", "pln": ["(: cnet_partof_b82d339c26 (PartOf safflower_seed safflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saffron is part of saffron", "pln": ["(: cnet_partof_bcedebcc09 (PartOf saffron saffron) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sage is part of common sage", "pln": ["(: cnet_partof_ed7b3e94be (PartOf sage common_sage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sagittal suture is part of cranium", "pln": ["(: cnet_partof_cef8829f93 (PartOf sagittal_suture cranium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sagittarius is part of zodiac", "pln": ["(: cnet_partof_838de8ed0d (PartOf sagittarius zodiac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sahara is part of africa", "pln": ["(: cnet_partof_bca4243e5e (PartOf sahara africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saida is part of lebanon", "pln": ["(: cnet_partof_8cda3c150b (PartOf saida lebanon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sail is part of sailing vessel", "pln": ["(: cnet_partof_2800544d97 (PartOf sail sailing_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sailboat is part of regatta", "pln": ["(: cnet_partof_371928a1b1 (PartOf sailboat regatta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saint s day is part of church year", "pln": ["(: cnet_partof_dd2069f642 (PartOf saint_s_day church_year) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saint agne s eve is part of january", "pln": ["(: cnet_partof_bf13e9732b (PartOf saint_agne_s_eve january) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saint christopher is part of saint kitt and nevis", "pln": ["(: cnet_partof_c469759c9a (PartOf saint_christopher saint_kitt_and_nevis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saint cloud is part of minnesota", "pln": ["(: cnet_partof_5e854d6f28 (PartOf saint_cloud minnesota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saint eustatius is part of netherland antille", "pln": ["(: cnet_partof_31184656c4 (PartOf saint_eustatius netherland_antille) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saint francis is part of arkansa", "pln": ["(: cnet_partof_076df3a26e (PartOf saint_francis arkansa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saint francis is part of missouri", "pln": ["(: cnet_partof_5df7deb9aa (PartOf saint_francis missouri) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saint john is part of new brunswick", "pln": ["(: cnet_partof_474d99ab6f (PartOf saint_john new_brunswick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saint john is part of maine", "pln": ["(: cnet_partof_7a09347914 (PartOf saint_john maine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saint john s is part of newfoundland and labrador", "pln": ["(: cnet_partof_e7e1dc53b3 (PartOf saint_john_s newfoundland_and_labrador) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saint john is part of florida", "pln": ["(: cnet_partof_980c7262f4 (PartOf saint_john florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saint joseph is part of missouri", "pln": ["(: cnet_partof_6e5f0bfab5 (PartOf saint_joseph missouri) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saint joseph is part of march", "pln": ["(: cnet_partof_c38aa0c4bf (PartOf saint_joseph march) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saint kitt and nevis is part of caribbean", "pln": ["(: cnet_partof_12e7fb3e5e (PartOf saint_kitt_and_nevis caribbean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saint kitt and nevis is part of leeward island", "pln": ["(: cnet_partof_2b76079d4d (PartOf saint_kitt_and_nevis leeward_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saint lawrence is part of canada", "pln": ["(: cnet_partof_ddf3a8683b (PartOf saint_lawrence canada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saint lawrence is part of united state", "pln": ["(: cnet_partof_396b9122b7 (PartOf saint_lawrence united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "saint louis is part of missouri", "pln": ["(: cnet_partof_299e20281b (PartOf saint_louis missouri) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saint lucia is part of caribbean", "pln": ["(: cnet_partof_34da4fcfdf (PartOf saint_lucia caribbean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saint lucia is part of saint lucia", "pln": ["(: cnet_partof_79545ffdfa (PartOf saint_lucia saint_lucia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saint lucia is part of windward island", "pln": ["(: cnet_partof_28c43557df (PartOf saint_lucia windward_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saint martin is part of leeward island", "pln": ["(: cnet_partof_1f9e5881bb (PartOf saint_martin leeward_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saint mihiel is part of meuse", "pln": ["(: cnet_partof_de1e777e86 (PartOf saint_mihiel meuse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saint paul is part of minnesota", "pln": ["(: cnet_partof_86ab926da1 (PartOf saint_paul minnesota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saint vincent is part of saint vincent and grenadine", "pln": ["(: cnet_partof_16eea7fd89 (PartOf saint_vincent saint_vincent_and_grenadine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saint vincent and grenadine is part of caribbean", "pln": ["(: cnet_partof_b12885ebe6 (PartOf saint_vincent_and_grenadine caribbean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saint vincent and grenadine is part of windward island", "pln": ["(: cnet_partof_c7ecf4d673 (PartOf saint_vincent_and_grenadine windward_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saint peter and paul is part of june", "pln": ["(: cnet_partof_86db599d2b (PartOf saint_peter_and_paul june) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saipan is part of world war ii", "pln": ["(: cnet_partof_a3867109fb (PartOf saipan world_war_ii) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saipan is part of northern mariana", "pln": ["(: cnet_partof_7fead15995 (PartOf saipan northern_mariana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sajama is part of ande", "pln": ["(: cnet_partof_457115c726 (PartOf sajama ande) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sajama is part of bolivia", "pln": ["(: cnet_partof_900287777c (PartOf sajama bolivia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "salad burnet is part of salad burnet", "pln": ["(: cnet_partof_0dbd040552 (PartOf salad_burnet salad_burnet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "salem is part of india", "pln": ["(: cnet_partof_ca76085329 (PartOf salem india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "salem is part of massachusett", "pln": ["(: cnet_partof_44b8f79648 (PartOf salem massachusett) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "salem is part of oregon", "pln": ["(: cnet_partof_cfcd70c92b (PartOf salem oregon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "salerno is part of world war ii", "pln": ["(: cnet_partof_0113d7ced9 (PartOf salerno world_war_ii) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "salient is part of line of battle", "pln": ["(: cnet_partof_8bc8774d32 (PartOf salient line_of_battle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "salina is part of kansa", "pln": ["(: cnet_partof_b9ad3ae59a (PartOf salina kansa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saliva is part of salivary gland", "pln": ["(: cnet_partof_7c057ad599 (PartOf saliva salivary_gland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "salivary gland is part of digestive system", "pln": ["(: cnet_partof_8f20a5f93c (PartOf salivary_gland digestive_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "salivary gland is part of mouth", "pln": ["(: cnet_partof_cbf37a409b (PartOf salivary_gland mouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "salmon is part of salmon", "pln": ["(: cnet_partof_42c92728b6 (PartOf salmon salmon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "salmon is part of idaho", "pln": ["(: cnet_partof_577fb994e5 (PartOf salmon idaho) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "salsify is part of salsify", "pln": ["(: cnet_partof_9c77eec4cc (PartOf salsify salsify) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "salt lake city is part of utah", "pln": ["(: cnet_partof_f41adccc46 (PartOf salt_lake_city utah) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "salton sea is part of california", "pln": ["(: cnet_partof_8740861f8e (PartOf salton_sea california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "salzburg is part of austria", "pln": ["(: cnet_partof_299d9ef924 (PartOf salzburg austria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sam browne belt is part of military uniform", "pln": ["(: cnet_partof_07fab11ac3 (PartOf sam_browne_belt military_uniform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "samaria is part of palestine", "pln": ["(: cnet_partof_4b3940b821 (PartOf samaria palestine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "samarkand is part of uzbekistan", "pln": ["(: cnet_partof_47d4a9c98b (PartOf samarkand uzbekistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "sambre is part of belgium", "pln": ["(: cnet_partof_e5f7474069 (PartOf sambre belgium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sambre is part of france", "pln": ["(: cnet_partof_e73fd3f0db (PartOf sambre france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "samoa is part of polynesia", "pln": ["(: cnet_partof_b8d878c881 (PartOf samoa polynesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "samoa is part of samoa", "pln": ["(: cnet_partof_f1615c98a1 (PartOf samoa samoa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "san juan mountains is part of colorado", "pln": ["(: cnet_partof_285d2d1a37 (PartOf san_juan_mountains colorado) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "san andrea fault is part of california", "pln": ["(: cnet_partof_55f2ffee72 (PartOf san_andrea_fault california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "san angelo is part of texa", "pln": ["(: cnet_partof_5576a8dac8 (PartOf san_angelo texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "san antonio is part of texa", "pln": ["(: cnet_partof_c94ca03fb4 (PartOf san_antonio texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "san bernardino is part of california", "pln": ["(: cnet_partof_6c6f22852e (PartOf san_bernardino california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "san diego is part of california", "pln": ["(: cnet_partof_226168cee5 (PartOf san_diego california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "san diego bay is part of pacific", "pln": ["(: cnet_partof_d3ee738a73 (PartOf san_diego_bay pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "san diego bay is part of san diego", "pln": ["(: cnet_partof_83904a66f3 (PartOf san_diego_bay san_diego) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "san fernando valley is part of california", "pln": ["(: cnet_partof_210052d6a8 (PartOf san_fernando_valley california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "san francisco is part of california", "pln": ["(: cnet_partof_474c5a1386 (PartOf san_francisco california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "san francisco bay is part of pacific", "pln": ["(: cnet_partof_9871ccd8af (PartOf san_francisco_bay pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "san francisco bay is part of san francisco", "pln": ["(: cnet_partof_d85331e423 (PartOf san_francisco_bay san_francisco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "san joaquin river is part of california", "pln": ["(: cnet_partof_c628e215a1 (PartOf san_joaquin_river california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "san joaquin valley is part of california", "pln": ["(: cnet_partof_983fcd597c (PartOf san_joaquin_valley california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "san jose is part of california", "pln": ["(: cnet_partof_3cf17394d3 (PartOf san_jose california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "san jose is part of costa rica", "pln": ["(: cnet_partof_89cdd69e51 (PartOf san_jose costa_rica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "san juan is part of puerto rico", "pln": ["(: cnet_partof_4b01f5f87b (PartOf san_juan puerto_rico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "san juan hill is part of cuba", "pln": ["(: cnet_partof_39be2d4d2e (PartOf san_juan_hill cuba) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "san juan mountain is part of colorado", "pln": ["(: cnet_partof_651804b3b3 (PartOf san_juan_mountain colorado) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "san juan mountain is part of rocky", "pln": ["(: cnet_partof_dc6650587c (PartOf san_juan_mountain rocky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "san luis potosi is part of mexico", "pln": ["(: cnet_partof_99c987b10c (PartOf san_luis_potosi mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "san marino is part of europe", "pln": ["(: cnet_partof_6b426a4264 (PartOf san_marino europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "san marino is part of italian peninsula", "pln": ["(: cnet_partof_2b6147f174 (PartOf san_marino italian_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "san marino is part of san marino", "pln": ["(: cnet_partof_64d988444e (PartOf san_marino san_marino) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "san mateo is part of california", "pln": ["(: cnet_partof_c31b26acca (PartOf san_mateo california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "san pablo is part of california", "pln": ["(: cnet_partof_f585f212bc (PartOf san_pablo california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "san pedro sula is part of hondura", "pln": ["(: cnet_partof_6eeaeee619 (PartOf san_pedro_sula hondura) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "san salvador is part of el salvador", "pln": ["(: cnet_partof_e6713e0545 (PartOf san_salvador el_salvador) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "san sebastian is part of spain", "pln": ["(: cnet_partof_f81016fe19 (PartOf san_sebastian spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sana is part of yemen", "pln": ["(: cnet_partof_cf36480ae0 (PartOf sana yemen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sandwich is part of meal", "pln": ["(: cnet_partof_916e083db2 (PartOf sandwich meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sangay is part of ecuador", "pln": ["(: cnet_partof_8059a63e88 (PartOf sangay ecuador) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "santa ana is part of california", "pln": ["(: cnet_partof_096fd2a396 (PartOf santa_ana california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "santa ana is part of el salvador", "pln": ["(: cnet_partof_88ef2feb79 (PartOf santa_ana el_salvador) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "santa barbara is part of california", "pln": ["(: cnet_partof_d55d98c64f (PartOf santa_barbara california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "santa catalina is part of los angele", "pln": ["(: cnet_partof_cb326a9bbd (PartOf santa_catalina los_angele) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "santa catalina is part of pacific", "pln": ["(: cnet_partof_04fd53a72f (PartOf santa_catalina pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "santa clara is part of california", "pln": ["(: cnet_partof_f6ab102f29 (PartOf santa_clara california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "santa cruz is part of bolivia", "pln": ["(: cnet_partof_d04f847909 (PartOf santa_cruz bolivia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "santa cruz is part of california", "pln": ["(: cnet_partof_eb62aade5f (PartOf santa_cruz california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "santa fe is part of new mexico", "pln": ["(: cnet_partof_fa1cc9e548 (PartOf santa_fe new_mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "santa fe trail is part of west", "pln": ["(: cnet_partof_02d2a11808 (PartOf santa_fe_trail west) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "santa maria del tule is part of mexico", "pln": ["(: cnet_partof_4a09ebcb7c (PartOf santa_maria_del_tule mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "santiago is part of spanish american war", "pln": ["(: cnet_partof_8b88b43f6e (PartOf santiago spanish_american_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "santiago de cuba is part of cuba", "pln": ["(: cnet_partof_a0427c0847 (PartOf santiago_de_cuba cuba) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "santiago de los caballero is part of dominican republic", "pln": ["(: cnet_partof_a852df018d (PartOf santiago_de_los_caballero dominican_republic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "santo domingo is part of dominican republic", "pln": ["(: cnet_partof_c600541cf8 (PartOf santo_domingo dominican_republic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "santo is part of brazil", "pln": ["(: cnet_partof_0a009fe28f (PartOf santo brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sao bernardo do campo is part of brazil", "pln": ["(: cnet_partof_3a6f3b08bd (PartOf sao_bernardo_do_campo brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sao francisco is part of brazil", "pln": ["(: cnet_partof_c4298390e6 (PartOf sao_francisco brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sao goncalo is part of brazil", "pln": ["(: cnet_partof_3c5ca5d87e (PartOf sao_goncalo brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sao joao de meriti is part of brazil", "pln": ["(: cnet_partof_3078f60896 (PartOf sao_joao_de_meriti brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sao jose dos campo is part of brazil", "pln": ["(: cnet_partof_20f7e00feb (PartOf sao_jose_dos_campo brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sao louis is part of brazil", "pln": ["(: cnet_partof_8ac87eb071 (PartOf sao_louis brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sao paulo is part of brazil", "pln": ["(: cnet_partof_53a9ea6a22 (PartOf sao_paulo brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sao tiago island is part of cape verde island", "pln": ["(: cnet_partof_b53cdc940e (PartOf sao_tiago_island cape_verde_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sao tome is part of sao tome and principe", "pln": ["(: cnet_partof_d77fd7ef02 (PartOf sao_tome sao_tome_and_principe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sao tome and principe is part of atlantic", "pln": ["(: cnet_partof_1bebd3e0f0 (PartOf sao_tome_and_principe atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saone is part of france", "pln": ["(: cnet_partof_e35aa3b0dc (PartOf saone france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saphenous nerve is part of leg", "pln": ["(: cnet_partof_3fc1f5bfa7 (PartOf saphenous_nerve leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saphenous vein is part of leg", "pln": ["(: cnet_partof_c18595d5be (PartOf saphenous_vein leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sapodilla is part of sapodilla", "pln": ["(: cnet_partof_1fec3911a2 (PartOf sapodilla sapodilla) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sapodilla is part of manilkara", "pln": ["(: cnet_partof_79fdb85f25 (PartOf sapodilla manilkara) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sapote is part of marmalade tree", "pln": ["(: cnet_partof_7de9b38238 (PartOf sapote marmalade_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sapporo is part of hokkaido", "pln": ["(: cnet_partof_5e2f1a97e2 (PartOf sapporo hokkaido) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sapporo is part of japan", "pln": ["(: cnet_partof_fb417ba47d (PartOf sapporo japan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saqqara is part of egypt", "pln": ["(: cnet_partof_cbefadf8ed (PartOf saqqara egypt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sarajevo is part of bosnia and herzegovina", "pln": ["(: cnet_partof_3d952aabe9 (PartOf sarajevo bosnia_and_herzegovina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sarasota is part of florida", "pln": ["(: cnet_partof_2656be2471 (PartOf sarasota florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saratoga is part of american revolution", "pln": ["(: cnet_partof_10d6add2b8 (PartOf saratoga american_revolution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saratoga spring is part of new york", "pln": ["(: cnet_partof_6aff646982 (PartOf saratoga_spring new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saratov is part of russia", "pln": ["(: cnet_partof_ada3cca9f7 (PartOf saratov russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sarawak is part of borneo", "pln": ["(: cnet_partof_a1dec799f0 (PartOf sarawak borneo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sarawak is part of east malaysia", "pln": ["(: cnet_partof_60f509ceb3 (PartOf sarawak east_malaysia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sarcomere is part of myofibril", "pln": ["(: cnet_partof_9e1793d1a9 (PartOf sarcomere myofibril) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sarcoplasm is part of myofibril", "pln": ["(: cnet_partof_c5cdf140e8 (PartOf sarcoplasm myofibril) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "sardinia is part of italy", "pln": ["(: cnet_partof_89e4c6310e (PartOf sardinia italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "sassafras is part of sassafras", "pln": ["(: cnet_partof_479e200601 (PartOf sassafras sassafras) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sardinia is part of mediterranean", "pln": ["(: cnet_partof_4cd6386993 (PartOf sardinia mediterranean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sardis is part of turkey", "pln": ["(: cnet_partof_96563f7d4f (PartOf sardis turkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sargasso sea is part of atlantic", "pln": ["(: cnet_partof_aa8f36ac81 (PartOf sargasso_sea atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saronic gulf is part of greece", "pln": ["(: cnet_partof_5b2c38f545 (PartOf saronic_gulf greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sarsaparilla root is part of sarsaparilla", "pln": ["(: cnet_partof_6e4357a96e (PartOf sarsaparilla_root sarsaparilla) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sash is part of window", "pln": ["(: cnet_partof_e2222cba1c (PartOf sash window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sash fastener is part of window", "pln": ["(: cnet_partof_3f55094e36 (PartOf sash_fastener window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sashay is part of square dance", "pln": ["(: cnet_partof_8d53c71970 (PartOf sashay square_dance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saskatchewan is part of canada", "pln": ["(: cnet_partof_11d259a022 (PartOf saskatchewan canada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saskatoon is part of juneberry", "pln": ["(: cnet_partof_ff8aa2aaf3 (PartOf saskatoon juneberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saskatoon is part of saskatchewan", "pln": ["(: cnet_partof_40a5408880 (PartOf saskatoon saskatchewan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saskinbakkal is part of istanbul", "pln": ["(: cnet_partof_d01e7061f9 (PartOf saskinbakkal istanbul) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sassafra is part of sassafra", "pln": ["(: cnet_partof_b1fcd92596 (PartOf sassafra sassafra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "satan is part of christian myth", "pln": ["(: cnet_partof_2586dbfe4d (PartOf satan christian_myth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "satang is part of baht", "pln": ["(: cnet_partof_d47e2666e8 (PartOf satang baht) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "satellite receiver is part of communication satellite", "pln": ["(: cnet_partof_645f14860c (PartOf satellite_receiver communication_satellite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "satellite transmitter is part of communication satellite", "pln": ["(: cnet_partof_95698f5f1f (PartOf satellite_transmitter communication_satellite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "satsuma is part of satsuma", "pln": ["(: cnet_partof_a98cb999c7 (PartOf satsuma satsuma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "saturday is part of weekend", "pln": ["(: cnet_partof_7ade5b2801 (PartOf saturday weekend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sauce is part of dish", "pln": ["(: cnet_partof_13c0d789b8 (PartOf sauce dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saudi arabia is part of arabian peninsula", "pln": ["(: cnet_partof_4505836f30 (PartOf saudi_arabia arabian_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saudi arabia is part of gulf state", "pln": ["(: cnet_partof_40d400e124 (PartOf saudi_arabia gulf_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "saudi arabia is part of middle east", "pln": ["(: cnet_partof_da777ba4b9 (PartOf saudi_arabia middle_east) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sault sainte marie is part of ontario", "pln": ["(: cnet_partof_f299eae5d3 (PartOf sault_sainte_marie ontario) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "savannah is part of georgia", "pln": ["(: cnet_partof_ade126bca0 (PartOf savannah georgia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "savannah is part of south carolina", "pln": ["(: cnet_partof_dddd3d60fc (PartOf savannah south_carolina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "savoy is part of france", "pln": ["(: cnet_partof_044290e4dc (PartOf savoy france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "savoy is part of italy", "pln": ["(: cnet_partof_2bf9f4126c (PartOf savoy italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "savoy is part of switzerland", "pln": ["(: cnet_partof_64d041ea73 (PartOf savoy switzerland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sawan is part of hindu calendar", "pln": ["(: cnet_partof_02a8caba6a (PartOf sawan hindu_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sawtooth is part of saw", "pln": ["(: cnet_partof_5e05d61f03 (PartOf sawtooth saw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sayan mountain is part of siberia", "pln": ["(: cnet_partof_bd976d60c0 (PartOf sayan_mountain siberia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sayeret matkal is part of israeli defense force", "pln": ["(: cnet_partof_8118ae30b8 (PartOf sayeret_matkal israeli_defense_force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scab is part of skin", "pln": ["(: cnet_partof_b93d7f7cea (PartOf scab skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scabland is part of washington", "pln": ["(: cnet_partof_8521db0d33 (PartOf scabland washington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scaffold is part of instrument of execution", "pln": ["(: cnet_partof_3d4910be4f (PartOf scaffold instrument_of_execution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scaffold is part of scaffolding", "pln": ["(: cnet_partof_fec15353b0 (PartOf scaffold scaffolding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scallop is part of scallop", "pln": ["(: cnet_partof_7cbc8ee593 (PartOf scallop scallop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scalp is part of human head", "pln": ["(: cnet_partof_bac92737c3 (PartOf scalp human_head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scandinavia is part of europe", "pln": ["(: cnet_partof_32c0cf5c6d (PartOf scandinavia europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scandinavian country is part of europe", "pln": ["(: cnet_partof_09a9f00ff2 (PartOf scandinavian_country europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scantling is part of building", "pln": ["(: cnet_partof_e9d62e5d6d (PartOf scantling building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scapula is part of endoskeleton", "pln": ["(: cnet_partof_e0ac4ea58f (PartOf scapula endoskeleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scapula is part of shoulder", "pln": ["(: cnet_partof_87abf8dce3 (PartOf scapula shoulder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scapular is part of monastic habit", "pln": ["(: cnet_partof_9e6771c086 (PartOf scapular monastic_habit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scattering is part of extinction", "pln": ["(: cnet_partof_473b17f32e (PartOf scattering extinction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "scene is part of act", "pln": ["(: cnet_partof_a2000c3df6 (PartOf scene act) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "scilly islands is part of england", "pln": ["(: cnet_partof_72550b7744 (PartOf scilly_islands england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scene is part of movie", "pln": ["(: cnet_partof_847ce8cde1 (PartOf scene movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scheldt is part of belgium", "pln": ["(: cnet_partof_235595d6c6 (PartOf scheldt belgium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scheldt is part of france", "pln": ["(: cnet_partof_7ec49898e8 (PartOf scheldt france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "schenectady is part of new york", "pln": ["(: cnet_partof_d81736775c (PartOf schenectady new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "school is part of school system", "pln": ["(: cnet_partof_d6a05e19c0 (PartOf school school_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "school system is part of infrastructure", "pln": ["(: cnet_partof_2ccec46146 (PartOf school_system infrastructure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "school term is part of school year", "pln": ["(: cnet_partof_bef3c5a3d4 (PartOf school_term school_year) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sciatic nerve is part of leg", "pln": ["(: cnet_partof_2bbcfcceee (PartOf sciatic_nerve leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "science is part of scientific knowledge", "pln": ["(: cnet_partof_cad6c26296 (PartOf science scientific_knowledge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scientific theory is part of science", "pln": ["(: cnet_partof_962cbf6d8f (PartOf scientific_theory science) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scilly island is part of england", "pln": ["(: cnet_partof_8ff2d70c9c (PartOf scilly_island england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scissor kick is part of sidestroke", "pln": ["(: cnet_partof_744be6e620 (PartOf scissor_kick sidestroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sclera is part of eye", "pln": ["(: cnet_partof_2454ccdd18 (PartOf sclera eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sclerite is part of arthropod", "pln": ["(: cnet_partof_3876acebdc (PartOf sclerite arthropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scoop is part of backhoe", "pln": ["(: cnet_partof_4b26843518 (PartOf scoop backhoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scoop is part of dredge", "pln": ["(: cnet_partof_95c0e5a1c9 (PartOf scoop dredge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scorpius is part of zodiac", "pln": ["(: cnet_partof_5514299ec8 (PartOf scorpius zodiac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scorzonera is part of black salsify", "pln": ["(: cnet_partof_f009e16d79 (PartOf scorzonera black_salsify) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scotland is part of british isle", "pln": ["(: cnet_partof_c9c4a2c3f9 (PartOf scotland british_isle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scotland is part of europe", "pln": ["(: cnet_partof_a9aa1a107a (PartOf scotland europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "scotland is part of great britain", "pln": ["(: cnet_partof_9713b6dace (PartOf scotland great_britain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scotland is part of united kingdom", "pln": ["(: cnet_partof_f0a2c1747f (PartOf scotland united_kingdom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scrag is part of neck", "pln": ["(: cnet_partof_a09e147b1b (PartOf scrag neck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "screen is part of monitor", "pln": ["(: cnet_partof_67b631e435 (PartOf screen monitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "screen is part of cathode ray tube", "pln": ["(: cnet_partof_fc19061dc6 (PartOf screen cathode_ray_tube) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "screen is part of screen door", "pln": ["(: cnet_partof_80c241d027 (PartOf screen screen_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "screw is part of outboard motor", "pln": ["(: cnet_partof_71e7b06a6a (PartOf screw outboard_motor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "screw is part of ship", "pln": ["(: cnet_partof_50e9c0e2f1 (PartOf screw ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "screw bean is part of screw bean", "pln": ["(: cnet_partof_e0747038eb (PartOf screw_bean screw_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "screw thread is part of screw", "pln": ["(: cnet_partof_cbc707b8fe (PartOf screw_thread screw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scriptorium is part of monastery", "pln": ["(: cnet_partof_db5b8062d0 (PartOf scriptorium monastery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scrotum is part of male genitalia", "pln": ["(: cnet_partof_d2d203af5a (PartOf scrotum male_genitalia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scruple is part of dram", "pln": ["(: cnet_partof_b41e23081c (PartOf scruple dram) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scup is part of scup", "pln": ["(: cnet_partof_293762930b (PartOf scup scup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "scut is part of deer", "pln": ["(: cnet_partof_a5df5cc96e (PartOf scut deer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "scut is part of rabbit", "pln": ["(: cnet_partof_a698a81c29 (PartOf scut rabbit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "scythia is part of eurasia", "pln": ["(: cnet_partof_6716799f08 (PartOf scythia eurasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sea is part of hydrosphere", "pln": ["(: cnet_partof_30d0ba4872 (PartOf sea hydrosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sea anchor is part of ship", "pln": ["(: cnet_partof_2c55cad1f3 (PartOf sea_anchor ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sea bass is part of sea bass", "pln": ["(: cnet_partof_661bbcbd29 (PartOf sea_bass sea_bass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sea of azov is part of black sea", "pln": ["(: cnet_partof_d58a04638c (PartOf sea_of_azov black_sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sea of japan is part of pacific", "pln": ["(: cnet_partof_88b76a2a56 (PartOf sea_of_japan pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sea of okhotsk is part of pacific", "pln": ["(: cnet_partof_77d4804b90 (PartOf sea_of_okhotsk pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "sea scallop is part of sea scallop", "pln": ["(: cnet_partof_ebb3a06a5a (PartOf sea_scallop sea_scallop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "seanad eireann is part of oireachtas", "pln": ["(: cnet_partof_0e8b6e8b64 (PartOf seanad_eireann oireachtas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "second epistle of paul apostle to thessalonians is part of new testament", "pln": ["(: cnet_partof_466c030dfb (PartOf second_epistle_of_paul_apostle_to_thessalonians new_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sea trout is part of brown trout", "pln": ["(: cnet_partof_c970eda474 (PartOf sea_trout brown_trout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sealyham is part of wale", "pln": ["(: cnet_partof_b1db8abb4a (PartOf sealyham wale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "seanad eireann is part of oireachta", "pln": ["(: cnet_partof_966fc8efd2 (PartOf seanad_eireann oireachta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "seaport is part of seafront", "pln": ["(: cnet_partof_2f0abffb23 (PartOf seaport seafront) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sear tower is part of chicago", "pln": ["(: cnet_partof_7186ce7eba (PartOf sear_tower chicago) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "seaside is part of land", "pln": ["(: cnet_partof_9846d58a63 (PartOf seaside land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "seaside is part of ocean", "pln": ["(: cnet_partof_8404c70e28 (PartOf seaside ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "season is part of year", "pln": ["(: cnet_partof_46a432c193 (PartOf season year) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "seasoning is part of cooking", "pln": ["(: cnet_partof_74f5a06125 (PartOf seasoning cooking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "seat is part of pair of trouser", "pln": ["(: cnet_partof_425e937260 (PartOf seat pair_of_trouser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "seat is part of seat", "pln": ["(: cnet_partof_fc0ec51159 (PartOf seat seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "seat is part of skirt", "pln": ["(: cnet_partof_26f600cd9e (PartOf seat skirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "seat belt is part of car seat", "pln": ["(: cnet_partof_624e0a6502 (PartOf seat_belt car_seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "seat belt is part of plane seat", "pln": ["(: cnet_partof_135bb595ae (PartOf seat_belt plane_seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "seattle is part of washington", "pln": ["(: cnet_partof_a768847f39 (PartOf seattle washington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sebaceous gland is part of hair follicle", "pln": ["(: cnet_partof_a24b6e43bd (PartOf sebaceous_gland hair_follicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sebaceous gland is part of integumentary system", "pln": ["(: cnet_partof_693309fa35 (PartOf sebaceous_gland integumentary_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sebastopol is part of crimea", "pln": ["(: cnet_partof_de009d4923 (PartOf sebastopol crimea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "second is part of minute", "pln": ["(: cnet_partof_db32ae6a8b (PartOf second minute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "second balcony is part of balcony", "pln": ["(: cnet_partof_438e329627 (PartOf second_balcony balcony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "second epistel of john is part of new testament", "pln": ["(: cnet_partof_66900a2004 (PartOf second_epistel_of_john new_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "second epistle of paul apostle to corinthian is part of new testament", "pln": ["(: cnet_partof_c6d5c1cc4f (PartOf second_epistle_of_paul_apostle_to_corinthian new_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "second epistle of paul apostle to thessalonian is part of new testament", "pln": ["(: cnet_partof_6d9efa1fac (PartOf second_epistle_of_paul_apostle_to_thessalonian new_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "second epistle of paul apostle to timothy is part of new testament", "pln": ["(: cnet_partof_ad38182f0b (PartOf second_epistle_of_paul_apostle_to_timothy new_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "second epistle of peter is part of new testament", "pln": ["(: cnet_partof_8b29d39856 (PartOf second_epistle_of_peter new_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "second gear is part of motor vehicle", "pln": ["(: cnet_partof_694568a7e4 (PartOf second_gear motor_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "second joint is part of bird", "pln": ["(: cnet_partof_36bc4bfca1 (PartOf second_joint bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "second period is part of playing period", "pln": ["(: cnet_partof_3792577946 (PartOf second_period playing_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "secondary coil is part of transformer", "pln": ["(: cnet_partof_19b6aa214f (PartOf secondary_coil transformer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "secondo is part of duet", "pln": ["(: cnet_partof_e16fb70b8c (PartOf secondo duet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "secretory phase is part of menstrual cycle", "pln": ["(: cnet_partof_579ef238fb (PartOf secretory_phase menstrual_cycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "section is part of whole", "pln": ["(: cnet_partof_2cea67b12f (PartOf section whole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "section is part of citrus", "pln": ["(: cnet_partof_a3e4b94204 (PartOf section citrus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "section is part of band", "pln": ["(: cnet_partof_6a5c466960 (PartOf section band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "section is part of orchestra", "pln": ["(: cnet_partof_7a458e0205 (PartOf section orchestra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "section is part of platoon", "pln": ["(: cnet_partof_aad7cee1c0 (PartOf section platoon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "section is part of slide", "pln": ["(: cnet_partof_9f33341fbd (PartOf section slide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sector is part of economy", "pln": ["(: cnet_partof_f4ccfbba92 (PartOf sector economy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sector is part of society", "pln": ["(: cnet_partof_73623122f8 (PartOf sector society) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sector is part of battlefield", "pln": ["(: cnet_partof_e3887a0a62 (PartOf sector battlefield) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sector is part of allocation unit", "pln": ["(: cnet_partof_0ae8a9ddf0 (PartOf sector allocation_unit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sector is part of block", "pln": ["(: cnet_partof_16c78e471e (PartOf sector block) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sedalia is part of missouri", "pln": ["(: cnet_partof_cb47502638 (PartOf sedalia missouri) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "see is part of diocese", "pln": ["(: cnet_partof_94dbe9701c (PartOf see diocese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "seek time is part of access time", "pln": ["(: cnet_partof_ab51e082cb (PartOf seek_time access_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "seesaw is part of playground", "pln": ["(: cnet_partof_8ecbc989a0 (PartOf seesaw playground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "segregation is part of meiosis", "pln": ["(: cnet_partof_afef47552e (PartOf segregation meiosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "seine is part of france", "pln": ["(: cnet_partof_861308952d (PartOf seine france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "selangor is part of malaysia", "pln": ["(: cnet_partof_c516487696 (PartOf selangor malaysia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "self starter is part of internal combustion engine", "pln": ["(: cnet_partof_f094c487cd (PartOf self_starter internal_combustion_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "selkirk mountain is part of british columbia", "pln": ["(: cnet_partof_a65ef75783 (PartOf selkirk_mountain british_columbia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "selkirk mountain is part of rocky", "pln": ["(: cnet_partof_314d88eb30 (PartOf selkirk_mountain rocky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "selling is part of marketing", "pln": ["(: cnet_partof_117c2a8fcf (PartOf selling marketing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "selma is part of alabama", "pln": ["(: cnet_partof_3695852613 (PartOf selma alabama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "semarang is part of java", "pln": ["(: cnet_partof_3f300507ea (PartOf semarang java) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "semester is part of school year", "pln": ["(: cnet_partof_771ef95b64 (PartOf semester school_year) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "semicircular canal is part of inner ear", "pln": ["(: cnet_partof_82a9610919 (PartOf semicircular_canal inner_ear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "semicircular canal is part of vestibular apparatus", "pln": ["(: cnet_partof_0d11a51a6d (PartOf semicircular_canal vestibular_apparatus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "semifinal is part of elimination tournament", "pln": ["(: cnet_partof_7048118f7f (PartOf semifinal elimination_tournament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "semimajor axis is part of major axis", "pln": ["(: cnet_partof_41522af1b2 (PartOf semimajor_axis major_axis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "semiminor axis is part of minor axis", "pln": ["(: cnet_partof_84a23fe06b (PartOf semiminor_axis minor_axis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "seminal duct is part of scrotum", "pln": ["(: cnet_partof_82ffa400c9 (PartOf seminal_duct scrotum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "seminal vesicle is part of male reproductive system", "pln": ["(: cnet_partof_56f99b1bdd (PartOf seminal_vesicle male_reproductive_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "seminiferous tubule is part of testis", "pln": ["(: cnet_partof_17814a9d4a (PartOf seminiferous_tubule testis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "semitrailer is part of trailer truck", "pln": ["(: cnet_partof_c824a07e04 (PartOf semitrailer trailer_truck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sen is part of riel", "pln": ["(: cnet_partof_3c89cd045a (PartOf sen riel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sen is part of ringgit", "pln": ["(: cnet_partof_9a1dec1b1b (PartOf sen ringgit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sen is part of rupiah", "pln": ["(: cnet_partof_9c93da19b1 (PartOf sen rupiah) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sen is part of yen", "pln": ["(: cnet_partof_0de5cd5ff3 (PartOf sen yen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sene is part of tala", "pln": ["(: cnet_partof_6782be480e (PartOf sene tala) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "senega is part of seneca snakeroot", "pln": ["(: cnet_partof_cdaaafe917 (PartOf senega seneca_snakeroot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "senega is part of senega", "pln": ["(: cnet_partof_bce74f3e30 (PartOf senega senega) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "senegal is part of africa", "pln": ["(: cnet_partof_16b2b4b74e (PartOf senegal africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "seniti is part of pa anga", "pln": ["(: cnet_partof_290e8f3acf (PartOf seniti pa_anga) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "sense organ is part of sensory system", "pln": ["(: cnet_partof_0a24f9db4d (PartOf sense_organ sensory_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sensory neuron is part of sensory nerve", "pln": ["(: cnet_partof_8c04335d55 (PartOf sensory_neuron sensory_nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sensory system is part of body", "pln": ["(: cnet_partof_a4ac9b782a (PartOf sensory_system body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sente is part of loti", "pln": ["(: cnet_partof_757cf3df45 (PartOf sente loti) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sentence is part of paragraph", "pln": ["(: cnet_partof_8e6264af99 (PartOf sentence paragraph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "seoul is part of south korea", "pln": ["(: cnet_partof_c3dead3c5b (PartOf seoul south_korea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sepal is part of calyx", "pln": ["(: cnet_partof_f28b3aeda7 (PartOf sepal calyx) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "september is part of gregorian calendar", "pln": ["(: cnet_partof_f2d2af7de0 (PartOf september gregorian_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sequence is part of movie", "pln": ["(: cnet_partof_2b4bdf7451 (PartOf sequence movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sequoia national park is part of california", "pln": ["(: cnet_partof_20bce6e8b1 (PartOf sequoia_national_park california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "serbia is part of yugoslavia", "pln": ["(: cnet_partof_781f4412e6 (PartOf serbia yugoslavia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "serengeti national park is part of serengeti plain", "pln": ["(: cnet_partof_e63548615e (PartOf serengeti_national_park serengeti_plain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "serengeti plain is part of tanzania", "pln": ["(: cnet_partof_18a568227c (PartOf serengeti_plain tanzania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "serratus is part of torso", "pln": ["(: cnet_partof_6e4c59327e (PartOf serratus torso) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "server is part of computer network", "pln": ["(: cnet_partof_b59e33bef1 (PartOf server computer_network) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "service break is part of tennis", "pln": ["(: cnet_partof_b6d7bf6886 (PartOf service_break tennis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sesame seed is part of sesame", "pln": ["(: cnet_partof_70ca2ba47c (PartOf sesame_seed sesame) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "set is part of communication system", "pln": ["(: cnet_partof_f4ff7106a4 (PartOf set communication_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "set decoration is part of stage set", "pln": ["(: cnet_partof_c4a3cf70b4 (PartOf set_decoration stage_set) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "set point is part of tennis", "pln": ["(: cnet_partof_a68e168ca8 (PartOf set_point tennis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sete queda is part of brazil", "pln": ["(: cnet_partof_f5782a663d (PartOf sete_queda brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sete queda is part of paraguay", "pln": ["(: cnet_partof_91d39014a6 (PartOf sete_queda paraguay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sete queda is part of parana", "pln": ["(: cnet_partof_eb142a0b93 (PartOf sete_queda parana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "setubal is part of portugal", "pln": ["(: cnet_partof_70bc30e577 (PartOf setubal portugal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "seven hill of rome is part of rome", "pln": ["(: cnet_partof_2113f356e7 (PartOf seven_hill_of_rome rome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "seventh avenue is part of manhattan", "pln": ["(: cnet_partof_a3a545c568 (PartOf seventh_avenue manhattan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "seventy is part of old age", "pln": ["(: cnet_partof_7f44336029 (PartOf seventy old_age) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "severn is part of england", "pln": ["(: cnet_partof_76641cf2b7 (PartOf severn england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "severn is part of ontario", "pln": ["(: cnet_partof_9412f7065f (PartOf severn ontario) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "severn is part of wale", "pln": ["(: cnet_partof_73b1a66ff1 (PartOf severn wale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sevilla is part of spain", "pln": ["(: cnet_partof_c3cfe64d28 (PartOf sevilla spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sewage system is part of infrastructure", "pln": ["(: cnet_partof_14328fd0c1 (PartOf sewage_system infrastructure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "seward peninsula is part of alaska", "pln": ["(: cnet_partof_3aff869a0d (PartOf seward_peninsula alaska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sewer is part of sewage system", "pln": ["(: cnet_partof_0a82d8ca24 (PartOf sewer sewage_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sewer main is part of sewage system", "pln": ["(: cnet_partof_37a65d882c (PartOf sewer_main sewage_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sex is part of human experience", "pln": ["(: cnet_partof_e2fce1b537 (PartOf sex human_experience) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sex is part of procreation", "pln": ["(: cnet_partof_2f6c07b236 (PartOf sex procreation) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sex is part of reproductive cycle", "pln": ["(: cnet_partof_134f428ead (PartOf sex reproductive_cycle) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "sextant is part of circumference", "pln": ["(: cnet_partof_c7ccdb225c (PartOf sextant circumference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "seychelles is part of indian ocean", "pln": ["(: cnet_partof_c60bcadfc1 (PartOf seychelles indian_ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "seychelles is part of seychelles", "pln": ["(: cnet_partof_fd6c3b706f (PartOf seychelles seychelles) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "seychelle is part of indian ocean", "pln": ["(: cnet_partof_a84f1bc647 (PartOf seychelle indian_ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "seychelle is part of seychelle", "pln": ["(: cnet_partof_9b20d7cb07 (PartOf seychelle seychelle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "seyhan is part of turkey", "pln": ["(: cnet_partof_bd2ef8de95 (PartOf seyhan turkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sfax is part of tunisia", "pln": ["(: cnet_partof_5e0cb5038c (PartOf sfax tunisia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sha ban is part of islamic calendar", "pln": ["(: cnet_partof_b6904ce35f (PartOf sha_ban islamic_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shackle is part of padlock", "pln": ["(: cnet_partof_6a98061d7d (PartOf shackle padlock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shad is part of common american shad", "pln": ["(: cnet_partof_168082edb3 (PartOf shad common_american_shad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shad roe is part of common american shad", "pln": ["(: cnet_partof_6bf6fabaf4 (PartOf shad_roe common_american_shad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shaft is part of column", "pln": ["(: cnet_partof_415b4ba88b (PartOf shaft column) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shaft is part of building", "pln": ["(: cnet_partof_add92a9b6e (PartOf shaft building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shaft is part of mine", "pln": ["(: cnet_partof_cc047ef62a (PartOf shaft mine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shaft is part of tunnel", "pln": ["(: cnet_partof_492157eb85 (PartOf shaft tunnel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shaft is part of arrow", "pln": ["(: cnet_partof_7fa8b6c958 (PartOf shaft arrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "shag is part of shag rug", "pln": ["(: cnet_partof_c7431d2662 (PartOf shag shag_rug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shallot is part of shallot", "pln": ["(: cnet_partof_996b048b34 (PartOf shallot shallot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shanghai is part of china", "pln": ["(: cnet_partof_492b6ab4c5 (PartOf shanghai china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shank is part of anchor", "pln": ["(: cnet_partof_afa9e5b8ec (PartOf shank anchor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shank is part of bit", "pln": ["(: cnet_partof_63e6b4a96e (PartOf shank bit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shank is part of bolt", "pln": ["(: cnet_partof_d747ce02ad (PartOf shank bolt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shank is part of handle", "pln": ["(: cnet_partof_76d362b3b7 (PartOf shank handle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "shank is part of key", "pln": ["(: cnet_partof_714ca7ca61 (PartOf shank key) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shank is part of nail", "pln": ["(: cnet_partof_dd53430778 (PartOf shank nail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shank is part of pin", "pln": ["(: cnet_partof_5b983ec286 (PartOf shank pin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "shank is part of sole", "pln": ["(: cnet_partof_5421184a02 (PartOf shank sole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shank is part of wineglass", "pln": ["(: cnet_partof_b39a6112ea (PartOf shank wineglass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shank is part of leg", "pln": ["(: cnet_partof_64393581c8 (PartOf shank leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "share is part of net income", "pln": ["(: cnet_partof_5b2326fbfb (PartOf share net_income) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "share is part of stock", "pln": ["(: cnet_partof_d0cc08ec0c (PartOf share stock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shari is part of africa", "pln": ["(: cnet_partof_bfedef865b (PartOf shari africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shasta is part of california", "pln": ["(: cnet_partof_9923293838 (PartOf shasta california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "shawwal is part of islamic calendar", "pln": ["(: cnet_partof_fe8adab299 (PartOf shawwal islamic_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shebat is part of jewish calendar", "pln": ["(: cnet_partof_50ee0c0066 (PartOf shebat jewish_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "sheet is part of ship", "pln": ["(: cnet_partof_70179a80cd (PartOf sheet ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sheet metal work is part of construction", "pln": ["(: cnet_partof_f9378e1f57 (PartOf sheet_metal_work construction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sheffield is part of south yorkshire", "pln": ["(: cnet_partof_3e3bbac316 (PartOf sheffield south_yorkshire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shelf is part of bookcase", "pln": ["(: cnet_partof_3f0147acb8 (PartOf shelf bookcase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shelf is part of buffet", "pln": ["(: cnet_partof_3621a235ff (PartOf shelf buffet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shelf is part of cabinet", "pln": ["(: cnet_partof_7723292588 (PartOf shelf cabinet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shelf is part of chest of drawer", "pln": ["(: cnet_partof_0a617b6d57 (PartOf shelf chest_of_drawer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shelf is part of closet", "pln": ["(: cnet_partof_1cc74d0a7a (PartOf shelf closet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shelf is part of etagere", "pln": ["(: cnet_partof_34aafda00b (PartOf shelf etagere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shelf is part of grocery store", "pln": ["(: cnet_partof_b4fd83a30d (PartOf shelf grocery_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shell is part of egg", "pln": ["(: cnet_partof_7c1c0c4d1f (PartOf shell egg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shell is part of grandfather clock", "pln": ["(: cnet_partof_7a4868c816 (PartOf shell grandfather_clock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "shell bean is part of shell bean", "pln": ["(: cnet_partof_381f2340e6 (PartOf shell_bean shell_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shellfish is part of mollusk", "pln": ["(: cnet_partof_7153a09637 (PartOf shellfish mollusk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shenandoah national park is part of virginia", "pln": ["(: cnet_partof_8a5fa9967a (PartOf shenandoah_national_park virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "shenandoah river is part of virginia", "pln": ["(: cnet_partof_0f16a2c20a (PartOf shenandoah_river virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shenandoah valley is part of virginia", "pln": ["(: cnet_partof_e409f6565d (PartOf shenandoah_valley virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shenyang is part of china", "pln": ["(: cnet_partof_8af7a00aee (PartOf shenyang china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shenzhen is part of china", "pln": ["(: cnet_partof_fb59c1e51a (PartOf shenzhen china) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sherman is part of texa", "pln": ["(: cnet_partof_7fca7a31c2 (PartOf sherman texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sherman is part of colorado", "pln": ["(: cnet_partof_5d11418be6 (PartOf sherman colorado) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shetland is part of atlantic", "pln": ["(: cnet_partof_3c6d1faba1 (PartOf shetland atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shetland is part of scotland", "pln": ["(: cnet_partof_9cee4a179f (PartOf shetland scotland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shift is part of work force", "pln": ["(: cnet_partof_0c91153f07 (PartOf shift work_force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shift is part of workday", "pln": ["(: cnet_partof_bbb98c03e9 (PartOf shift workday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shift key is part of typewriter keyboard", "pln": ["(: cnet_partof_f7089468b2 (PartOf shift_key typewriter_keyboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shikoku is part of japan", "pln": ["(: cnet_partof_9a1223afc6 (PartOf shikoku japan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shiloh is part of american civil war", "pln": ["(: cnet_partof_069919cf27 (PartOf shiloh american_civil_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "shin is part of leg", "pln": ["(: cnet_partof_38f2bd4408 (PartOf shin leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "shin is part of hebrew alphabet", "pln": ["(: cnet_partof_def80072f6 (PartOf shin hebrew_alphabet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shingling is part of construction", "pln": ["(: cnet_partof_8e759f7f15 (PartOf shingling construction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shipside is part of pier", "pln": ["(: cnet_partof_5f41fcb0f4 (PartOf shipside pier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "shiraz is part of iran", "pln": ["(: cnet_partof_9e150c1b9d (PartOf shiraz iran) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shirt is part of outfit", "pln": ["(: cnet_partof_23fdd44e56 (PartOf shirt outfit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shirt button is part of shirt", "pln": ["(: cnet_partof_7065704ce7 (PartOf shirt_button shirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shirtfront is part of shirt", "pln": ["(: cnet_partof_278c8939ae (PartOf shirtfront shirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shirtsleeve is part of shirt", "pln": ["(: cnet_partof_be17a6fa01 (PartOf shirtsleeve shirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "shirttail is part of shirt", "pln": ["(: cnet_partof_4146cbd398 (PartOf shirttail shirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shirttail is part of new article", "pln": ["(: cnet_partof_3cb62849c0 (PartOf shirttail new_article) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shock absorber is part of suspension", "pln": ["(: cnet_partof_341674decb (PartOf shock_absorber suspension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shoe collar is part of boot", "pln": ["(: cnet_partof_cd9b4b7732 (PartOf shoe_collar boot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shoe collar is part of shoe", "pln": ["(: cnet_partof_d668a9ec9b (PartOf shoe_collar shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shoelace is part of shoe", "pln": ["(: cnet_partof_0248727106 (PartOf shoelace shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shop floor is part of factory", "pln": ["(: cnet_partof_25bedd9496 (PartOf shop_floor factory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shopfront is part of shop", "pln": ["(: cnet_partof_51cbe8a1f2 (PartOf shopfront shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shoreline is part of shore", "pln": ["(: cnet_partof_009c723619 (PartOf shoreline shore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "short is part of baseball diamond", "pln": ["(: cnet_partof_d392f58365 (PartOf short baseball_diamond) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "short circuit is part of circuit", "pln": ["(: cnet_partof_cb2349964f (PartOf short_circuit circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "short ton is part of kiloton", "pln": ["(: cnet_partof_252d88fd4f (PartOf short_ton kiloton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shot is part of case shot", "pln": ["(: cnet_partof_c2c1ba39d7 (PartOf shot case_shot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shoulder is part of garment", "pln": ["(: cnet_partof_83890c7e54 (PartOf shoulder garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shoulder is part of road", "pln": ["(: cnet_partof_843c509289 (PartOf shoulder road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shoulder is part of torso", "pln": ["(: cnet_partof_e922aa8ccc (PartOf shoulder torso) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shoulder is part of chuck", "pln": ["(: cnet_partof_ba49f53209 (PartOf shoulder chuck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shoulder board is part of military uniform", "pln": ["(: cnet_partof_33897a0620 (PartOf shoulder_board military_uniform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "shoulder girdle is part of pectoral girdle", "pln": ["(: cnet_partof_083ed4de6f (PartOf shoulder_girdle pectoral_girdle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shoulder patch is part of military uniform", "pln": ["(: cnet_partof_411e14b4c8 (PartOf shoulder_patch military_uniform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shower is part of shower stall", "pln": ["(: cnet_partof_440bf52cd5 (PartOf shower shower_stall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shower curtain is part of shower stall", "pln": ["(: cnet_partof_264d28d762 (PartOf shower_curtain shower_stall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shower stall is part of bathroom", "pln": ["(: cnet_partof_fd6f0694dc (PartOf shower_stall bathroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shower stall is part of shower room", "pln": ["(: cnet_partof_d644b98dd0 (PartOf shower_stall shower_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "showerhead is part of shower", "pln": ["(: cnet_partof_679a93bbf8 (PartOf showerhead shower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "showjumping is part of three day event", "pln": ["(: cnet_partof_ab89d505d1 (PartOf showjumping three_day_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "shreveport is part of louisiana", "pln": ["(: cnet_partof_dc0fb9642f (PartOf shreveport louisiana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shroud is part of parachute", "pln": ["(: cnet_partof_3e8a35f871 (PartOf shroud parachute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shrovetide is part of church calendar", "pln": ["(: cnet_partof_6ccb56956b (PartOf shrovetide church_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "shuffle is part of card game", "pln": ["(: cnet_partof_a675ef024a (PartOf shuffle card_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shunt is part of circuit", "pln": ["(: cnet_partof_5cafbe038a (PartOf shunt circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "shutter is part of camera", "pln": ["(: cnet_partof_348a7e384a (PartOf shutter camera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "shutter is part of double hung window", "pln": ["(: cnet_partof_53230fc4d0 (PartOf shutter double_hung_window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "siamese connection is part of sprinkler system", "pln": ["(: cnet_partof_436c52b62b (PartOf siamese_connection sprinkler_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "siberia is part of russia", "pln": ["(: cnet_partof_88400a7688 (PartOf siberia russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sicily is part of italy", "pln": ["(: cnet_partof_ac0876a1f6 (PartOf sicily italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sicily is part of mediterranean", "pln": ["(: cnet_partof_2fed344333 (PartOf sicily mediterranean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "side is part of torso", "pln": ["(: cnet_partof_47b20ffd34 (PartOf side torso) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "side chapel is part of church", "pln": ["(: cnet_partof_cdf60c727b (PartOf side_chapel church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "side dish is part of meal", "pln": ["(: cnet_partof_9c726cd2f4 (PartOf side_dish meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "siegfried line is part of germany", "pln": ["(: cnet_partof_97573f7229 (PartOf siegfried_line germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sierra leone is part of africa", "pln": ["(: cnet_partof_99169ba5a8 (PartOf sierra_leone africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sierra madre occidental is part of mexico", "pln": ["(: cnet_partof_b6e932fb2e (PartOf sierra_madre_occidental mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sierra madre oriental is part of mexico", "pln": ["(: cnet_partof_2045f5c3b1 (PartOf sierra_madre_oriental mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sierra nevada is part of california", "pln": ["(: cnet_partof_5d5dd6eb3c (PartOf sierra_nevada california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sierra nevada is part of spain", "pln": ["(: cnet_partof_eb393c8c9d (PartOf sierra_nevada spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sieva bean is part of sieva bean", "pln": ["(: cnet_partof_231f123623 (PartOf sieva_bean sieva_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "sieve tube is part of phloem", "pln": ["(: cnet_partof_13cf098261 (PartOf sieve_tube phloem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sight is part of firearm", "pln": ["(: cnet_partof_9a022c81cb (PartOf sight firearm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sight is part of surveying instrument", "pln": ["(: cnet_partof_85548b8e4b (PartOf sight surveying_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sigmoid colon is part of large intestine", "pln": ["(: cnet_partof_5b512b4d04 (PartOf sigmoid_colon large_intestine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sigmoid vein is part of colon", "pln": ["(: cnet_partof_1ba6f55f41 (PartOf sigmoid_vein colon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sign is part of sign language", "pln": ["(: cnet_partof_c049287e72 (PartOf sign sign_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sign is part of disease", "pln": ["(: cnet_partof_ac289f0074 (PartOf sign disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sign of zodiac is part of zodiac", "pln": ["(: cnet_partof_2c0c5de8b0 (PartOf sign_of_zodiac zodiac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "signature is part of book", "pln": ["(: cnet_partof_93a25d070f (PartOf signature book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "signet is part of signet ring", "pln": ["(: cnet_partof_482439fb06 (PartOf signet signet_ring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sikkim is part of india", "pln": ["(: cnet_partof_697fb1de30 (PartOf sikkim india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "silencer is part of exhaust", "pln": ["(: cnet_partof_8ecba45624 (PartOf silencer exhaust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "silesia is part of europe", "pln": ["(: cnet_partof_85252c693a (PartOf silesia europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "silicon valley is part of california", "pln": ["(: cnet_partof_b1be6891a3 (PartOf silicon_valley california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "silk gland is part of silkworm", "pln": ["(: cnet_partof_5602eb6da7 (PartOf silk_gland silkworm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "silurian is part of paleozoic", "pln": ["(: cnet_partof_7599b13820 (PartOf silurian paleozoic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "silver city is part of new mexico", "pln": ["(: cnet_partof_51bc8f4969 (PartOf silver_city new_mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "silver quandong is part of quandong", "pln": ["(: cnet_partof_b6dd033600 (PartOf silver_quandong quandong) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "silver salmon is part of coho", "pln": ["(: cnet_partof_af7c2f6b4a (PartOf silver_salmon coho) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "simpson desert is part of australia", "pln": ["(: cnet_partof_c1d8d3fd22 (PartOf simpson_desert australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sin is part of hebrew alphabet", "pln": ["(: cnet_partof_f8a7f742e8 (PartOf sin hebrew_alphabet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sinai is part of arabian desert", "pln": ["(: cnet_partof_318dff5180 (PartOf sinai arabian_desert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sinai is part of egypt", "pln": ["(: cnet_partof_1e051875e9 (PartOf sinai egypt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sinai is part of sinai", "pln": ["(: cnet_partof_6a011e175d (PartOf sinai sinai) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sinciput is part of human head", "pln": ["(: cnet_partof_c65e92e7e2 (PartOf sinciput human_head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sind is part of pakistan", "pln": ["(: cnet_partof_3955cd489c (PartOf sind pakistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "singapore is part of singapore", "pln": ["(: cnet_partof_53f609abd8 (PartOf singapore singapore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "sioux falls is part of south dakota", "pln": ["(: cnet_partof_793550b185 (PartOf sioux_falls south_dakota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "sixties is part of old age", "pln": ["(: cnet_partof_76968c2ea4 (PartOf sixties old_age) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "singapore is part of south china sea", "pln": ["(: cnet_partof_54155f077d (PartOf singapore south_china_sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "singapore is part of southeast asia", "pln": ["(: cnet_partof_cb330f28bd (PartOf singapore southeast_asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "single breasted jacket is part of single breasted suit", "pln": ["(: cnet_partof_b677b8617e (PartOf single_breasted_jacket single_breasted_suit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sinn fein is part of irish republican army", "pln": ["(: cnet_partof_ba18b412b7 (PartOf sinn_fein irish_republican_army) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sioux city is part of iowa", "pln": ["(: cnet_partof_aa330633fe (PartOf sioux_city iowa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sioux fall is part of south dakota", "pln": ["(: cnet_partof_5eb2d7ae36 (PartOf sioux_fall south_dakota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sirloin is part of beef loin", "pln": ["(: cnet_partof_5ec332247c (PartOf sirloin beef_loin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sirloin steak is part of sirloin", "pln": ["(: cnet_partof_d91a95a212 (PartOf sirloin_steak sirloin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sirloin tip is part of sirloin", "pln": ["(: cnet_partof_5d95840b10 (PartOf sirloin_tip sirloin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sistine chapel is part of rome", "pln": ["(: cnet_partof_18dd34d709 (PartOf sistine_chapel rome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sitka is part of alaska", "pln": ["(: cnet_partof_c77ac67cc3 (PartOf sitka alaska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sivan is part of jewish calendar", "pln": ["(: cnet_partof_dd7c898df7 (PartOf sivan jewish_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sixty is part of old age", "pln": ["(: cnet_partof_16c55f683b (PartOf sixty old_age) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "skagen odde is part of jutland", "pln": ["(: cnet_partof_5b21035462 (PartOf skagen_odde jutland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "skagerrak is part of north sea", "pln": ["(: cnet_partof_66ef92140d (PartOf skagerrak north_sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "skagway is part of alaska", "pln": ["(: cnet_partof_4aaa8b4016 (PartOf skagway alaska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "skeg is part of stern", "pln": ["(: cnet_partof_e10d0d41f6 (PartOf skeg stern) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "skeletal structure is part of skeletal system", "pln": ["(: cnet_partof_7266c4336b (PartOf skeletal_structure skeletal_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "skeletal system is part of musculoskeletal system", "pln": ["(: cnet_partof_412612b3a0 (PartOf skeletal_system musculoskeletal_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "skeleton is part of aircraft", "pln": ["(: cnet_partof_461f4bbb87 (PartOf skeleton aircraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "skeleton is part of building", "pln": ["(: cnet_partof_49adb9b436 (PartOf skeleton building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "society islands is part of french polynesia", "pln": ["(: cnet_partof_7f7ca9ee63 (PartOf society_islands french_polynesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "skeleton is part of ship", "pln": ["(: cnet_partof_6d9de29705 (PartOf skeleton ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "skid is part of chute", "pln": ["(: cnet_partof_d6f3b29df3 (PartOf skid chute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "skin is part of aircraft", "pln": ["(: cnet_partof_be802e756d (PartOf skin aircraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "skin is part of integumentary system", "pln": ["(: cnet_partof_3a0d8de0a3 (PartOf skin integumentary_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "skin cell is part of skin", "pln": ["(: cnet_partof_29579465f4 (PartOf skin_cell skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "skirt is part of garment", "pln": ["(: cnet_partof_72e1f8a06b (PartOf skirt garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "skirt of tass is part of body armor", "pln": ["(: cnet_partof_221d6c71e2 (PartOf skirt_of_tass body_armor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "skopje is part of macedonia", "pln": ["(: cnet_partof_678a40c634 (PartOf skopje macedonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "skull is part of axial skeleton", "pln": ["(: cnet_partof_b08012d262 (PartOf skull axial_skeleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "skull is part of head", "pln": ["(: cnet_partof_4ba16c89d6 (PartOf skull head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "skull and crossbone is part of black flag", "pln": ["(: cnet_partof_c4cfdee07b (PartOf skull_and_crossbone black_flag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sky is part of earth", "pln": ["(: cnet_partof_e56328125d (PartOf sky earth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "slam is part of bridge", "pln": ["(: cnet_partof_4ef0dc14f1 (PartOf slam bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "slapshot is part of ice hockey", "pln": ["(: cnet_partof_59327d2b6e (PartOf slapshot ice_hockey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "slat is part of venetian blind", "pln": ["(: cnet_partof_4e6e8b69f8 (PartOf slat venetian_blind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "slaughter is part of butchery", "pln": ["(: cnet_partof_3110416fea (PartOf slaughter butchery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "slave state is part of confederacy", "pln": ["(: cnet_partof_ed69dba7b2 (PartOf slave_state confederacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sleeve is part of shirt", "pln": ["(: cnet_partof_79122f10b0 (PartOf sleeve shirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sleeve is part of garment", "pln": ["(: cnet_partof_0a14ba6ac6 (PartOf sleeve garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "slide is part of playground", "pln": ["(: cnet_partof_1b9dd38df8 (PartOf slide playground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "slide fastener is part of cardigan", "pln": ["(: cnet_partof_18df04e0f0 (PartOf slide_fastener cardigan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "slide fastener is part of dress", "pln": ["(: cnet_partof_fee6cdef40 (PartOf slide_fastener dress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "slide fastener is part of pair of trouser", "pln": ["(: cnet_partof_d7150a38c9 (PartOf slide_fastener pair_of_trouser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "slide fastener is part of skirt", "pln": ["(: cnet_partof_94aed57f87 (PartOf slide_fastener skirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sliding seat is part of shell", "pln": ["(: cnet_partof_5c765785ca (PartOf sliding_seat shell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "slipknot is part of noose", "pln": ["(: cnet_partof_3ef947ef96 (PartOf slipknot noose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "slipknot is part of snare", "pln": ["(: cnet_partof_99aed811d5 (PartOf slipknot snare) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sloe is part of allegheny plum", "pln": ["(: cnet_partof_f9054ee910 (PartOf sloe allegheny_plum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "slope is part of natural elevation", "pln": ["(: cnet_partof_4bceb03df5 (PartOf slope natural_elevation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "slovakia is part of europe", "pln": ["(: cnet_partof_290c7e3b8a (PartOf slovakia europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sluicegate is part of sluice", "pln": ["(: cnet_partof_ae9eef3444 (PartOf sluicegate sluice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "small is part of back", "pln": ["(: cnet_partof_15d93bd96e (PartOf small back) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "small hour is part of night", "pln": ["(: cnet_partof_882a9ba788 (PartOf small_hour night) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "small intestine is part of alimentary canal", "pln": ["(: cnet_partof_dcfa28f9d8 (PartOf small_intestine alimentary_canal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "smallmouth bass is part of smallmouth", "pln": ["(: cnet_partof_6d576c4d7a (PartOf smallmouth_bass smallmouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "smelt is part of smelt", "pln": ["(: cnet_partof_c18191d98f (PartOf smelt smelt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "smolensk is part of russia", "pln": ["(: cnet_partof_ee28664363 (PartOf smolensk russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "smooth muscle cell is part of smooth muscle", "pln": ["(: cnet_partof_f25b5a665a (PartOf smooth_muscle_cell smooth_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "snake is part of idaho", "pln": ["(: cnet_partof_2b69e26712 (PartOf snake idaho) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "snake is part of oregon", "pln": ["(: cnet_partof_def9effb7c (PartOf snake oregon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "snake is part of washington", "pln": ["(: cnet_partof_e59c6d4031 (PartOf snake washington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "snake is part of wyoming", "pln": ["(: cnet_partof_633f5bea26 (PartOf snake wyoming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "snapper is part of snapper", "pln": ["(: cnet_partof_9262c4756d (PartOf snapper snapper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "snare is part of snare drum", "pln": ["(: cnet_partof_95755c7410 (PartOf snare snare_drum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "snick is part of cricket", "pln": ["(: cnet_partof_80b0e9fbca (PartOf snick cricket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "snorkel is part of submarine", "pln": ["(: cnet_partof_14d40239fe (PartOf snorkel submarine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "snout is part of muzzle", "pln": ["(: cnet_partof_76ffc67b95 (PartOf snout muzzle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "snowflake is part of snow", "pln": ["(: cnet_partof_722f59a863 (PartOf snowflake snow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "snuff is part of candlewick", "pln": ["(: cnet_partof_a0687655cf (PartOf snuff candlewick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sociability is part of personableness", "pln": ["(: cnet_partof_12b1162f18 (PartOf sociability personableness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "society island is part of french polynesia", "pln": ["(: cnet_partof_cfafea0ca8 (PartOf society_island french_polynesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "socket is part of ball and socket joint", "pln": ["(: cnet_partof_21eddf1f13 (PartOf socket ball_and_socket_joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "socket is part of box wrench", "pln": ["(: cnet_partof_2c96a7527a (PartOf socket box_wrench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "socket is part of socket wrench", "pln": ["(: cnet_partof_0b40b649e7 (PartOf socket socket_wrench) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "socket is part of bone", "pln": ["(: cnet_partof_76c6527cb5 (PartOf socket bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sodom is part of israel", "pln": ["(: cnet_partof_82563bc9e7 (PartOf sodom israel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sofia is part of bulgaria", "pln": ["(: cnet_partof_484b44bd50 (PartOf sofia bulgaria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "soft palate is part of palate", "pln": ["(: cnet_partof_399ccb66dc (PartOf soft_palate palate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "soft pedal is part of piano", "pln": ["(: cnet_partof_a240380549 (PartOf soft_pedal piano) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "soft shell clam is part of soft shell clam", "pln": ["(: cnet_partof_3b3f0e3d2a (PartOf soft_shell_clam soft_shell_clam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "soho is part of london", "pln": ["(: cnet_partof_a01b9503d9 (PartOf soho london) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "soho is part of manhattan", "pln": ["(: cnet_partof_0c06bbd68a (PartOf soho manhattan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "soil horizon is part of profile", "pln": ["(: cnet_partof_c2fdfe8044 (PartOf soil_horizon profile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "soisson is part of world war i", "pln": ["(: cnet_partof_f430883f9e (PartOf soisson world_war_i) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "solar array is part of satellite", "pln": ["(: cnet_partof_abd5565166 (PartOf solar_array satellite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "solar cell is part of solar array", "pln": ["(: cnet_partof_3b117a23e1 (PartOf solar_cell solar_array) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "solar dish is part of solar thermal system", "pln": ["(: cnet_partof_6f0c317d10 (PartOf solar_dish solar_thermal_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "solar magnetic field is part of interplanetary medium", "pln": ["(: cnet_partof_c85d7d3ea7 (PartOf solar_magnetic_field interplanetary_medium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "solar plexus is part of sympathetic nervous system", "pln": ["(: cnet_partof_6c6ee69bd8 (PartOf solar_plexus sympathetic_nervous_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "solar system is part of galaxy", "pln": ["(: cnet_partof_d59b608073 (PartOf solar_system galaxy) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "solar system is part of heliosphere", "pln": ["(: cnet_partof_83d742203c (PartOf solar_system heliosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "solar wind is part of interplanetary medium", "pln": ["(: cnet_partof_f7d232ae13 (PartOf solar_wind interplanetary_medium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "soldier is part of army", "pln": ["(: cnet_partof_831fa05e02 (PartOf soldier army) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sole is part of shoe", "pln": ["(: cnet_partof_7b5042b089 (PartOf sole shoe) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sole is part of footwear", "pln": ["(: cnet_partof_29d900cd66 (PartOf sole footwear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sole is part of golf club head", "pln": ["(: cnet_partof_8ad82f011c (PartOf sole golf_club_head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "sole is part of foot", "pln": ["(: cnet_partof_e79422f37a (PartOf sole foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sole is part of sole", "pln": ["(: cnet_partof_9bf429f352 (PartOf sole sole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "soledad is part of colombia", "pln": ["(: cnet_partof_b31d3a87cc (PartOf soledad colombia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "solemnity of mary is part of january", "pln": ["(: cnet_partof_fa41e1a63e (PartOf solemnity_of_mary january) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "solent is part of english channel", "pln": ["(: cnet_partof_03f1283ed3 (PartOf solent english_channel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "soleus is part of calf", "pln": ["(: cnet_partof_caf4c20a70 (PartOf soleus calf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "solfa syllable is part of tonic solfa", "pln": ["(: cnet_partof_a57d05c7c1 (PartOf solfa_syllable tonic_solfa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "solingen is part of germany", "pln": ["(: cnet_partof_e3e0b081b6 (PartOf solingen germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "solleret is part of body armor", "pln": ["(: cnet_partof_5cd64f30bc (PartOf solleret body_armor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "solomon island is part of solomon", "pln": ["(: cnet_partof_9a02ca4f43 (PartOf solomon_island solomon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "solomon is part of melanesia", "pln": ["(: cnet_partof_d039cf3fd8 (PartOf solomon melanesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "solway firth is part of great britain", "pln": ["(: cnet_partof_8a6709aaa3 (PartOf solway_firth great_britain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "somali peninsula is part of africa", "pln": ["(: cnet_partof_c62828e04a (PartOf somali_peninsula africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "somalia is part of africa", "pln": ["(: cnet_partof_90eb93d6de (PartOf somalia africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "somalia is part of somali peninsula", "pln": ["(: cnet_partof_23fe1eec9a (PartOf somalia somali_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sombrero is part of saint kitt and nevis", "pln": ["(: cnet_partof_442ccba2b1 (PartOf sombrero saint_kitt_and_nevis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "somerset is part of england", "pln": ["(: cnet_partof_cb782c2558 (PartOf somerset england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "somme is part of world war i", "pln": ["(: cnet_partof_8a19a6be0d (PartOf somme world_war_i) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "somme is part of world war ii", "pln": ["(: cnet_partof_80393cc3d4 (PartOf somme world_war_ii) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sonar is part of submarine", "pln": ["(: cnet_partof_6b1dcefdc2 (PartOf sonar submarine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sone is part of phon", "pln": ["(: cnet_partof_5cb94bb3d3 (PartOf sone phon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "song of song is part of hagiographa", "pln": ["(: cnet_partof_92db0ded37 (PartOf song_of_song hagiographa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "song of song is part of old testament", "pln": ["(: cnet_partof_22e7eeec5b (PartOf song_of_song old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "song of song is part of sapiential book", "pln": ["(: cnet_partof_3d3ff57703 (PartOf song_of_song sapiential_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sonora gum is part of creosote bush", "pln": ["(: cnet_partof_3182dede08 (PartOf sonora_gum creosote_bush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sonoran desert is part of arizona", "pln": ["(: cnet_partof_7f7f2ff164 (PartOf sonoran_desert arizona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sorb is part of service tree", "pln": ["(: cnet_partof_5eda7f865e (PartOf sorb service_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sorrel is part of sour dock", "pln": ["(: cnet_partof_7eb3f1f040 (PartOf sorrel sour_dock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "souari nut is part of souari", "pln": ["(: cnet_partof_f7159d1485 (PartOf souari_nut souari) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "soudan is part of africa", "pln": ["(: cnet_partof_c57bf0be16 (PartOf soudan africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sound bow is part of bell", "pln": ["(: cnet_partof_33d0077878 (PartOf sound_bow bell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sound hole is part of sounding board", "pln": ["(: cnet_partof_68de3c97cf (PartOf sound_hole sounding_board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sound law is part of historical linguistic", "pln": ["(: cnet_partof_a994fe825c (PartOf sound_law historical_linguistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sounding board is part of piano", "pln": ["(: cnet_partof_eba759558d (PartOf sounding_board piano) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sounding board is part of stringed instrument", "pln": ["(: cnet_partof_753f9b698a (PartOf sounding_board stringed_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sounding lead is part of lead line", "pln": ["(: cnet_partof_c7c8582d2b (PartOf sounding_lead lead_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "soundtrack is part of sound film", "pln": ["(: cnet_partof_11dc87ad23 (PartOf soundtrack sound_film) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sour gourd is part of baobab", "pln": ["(: cnet_partof_3fb3fb0e62 (PartOf sour_gourd baobab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sour gourd is part of cream of tartar tree", "pln": ["(: cnet_partof_4d4e971fe5 (PartOf sour_gourd cream_of_tartar_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "soursop is part of soursop", "pln": ["(: cnet_partof_0cfd173942 (PartOf soursop soursop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sousse is part of tunisia", "pln": ["(: cnet_partof_5b82eb204a (PartOf sousse tunisia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "south is part of united state", "pln": ["(: cnet_partof_34a2e22eb7 (PartOf south united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "south africa is part of africa", "pln": ["(: cnet_partof_d523502159 (PartOf south_africa africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "south america is part of america", "pln": ["(: cnet_partof_f456924260 (PartOf south_america america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "south america is part of occident", "pln": ["(: cnet_partof_98d846a77a (PartOf south_america occident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "south america is part of southern hemisphere", "pln": ["(: cnet_partof_6048d1ea22 (PartOf south_america southern_hemisphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "south america is part of western hemisphere", "pln": ["(: cnet_partof_17e0d11c8e (PartOf south_america western_hemisphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "south american country is part of south america", "pln": ["(: cnet_partof_c64c008904 (PartOf south_american_country south_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "south dakota is part of united states", "pln": ["(: cnet_partof_7e4d385417 (PartOf south_dakota united_states) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "south atlantic is part of atlantic", "pln": ["(: cnet_partof_d9404a013e (PartOf south_atlantic atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "south australia is part of australia", "pln": ["(: cnet_partof_6ea5398ee0 (PartOf south_australia australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "south bend is part of indiana", "pln": ["(: cnet_partof_537aac707e (PartOf south_bend indiana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "south carolina is part of carolina", "pln": ["(: cnet_partof_7b58523b39 (PartOf south_carolina carolina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "south carolina is part of deep south", "pln": ["(: cnet_partof_d5d1d493a6 (PartOf south_carolina deep_south) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "south carolina is part of south", "pln": ["(: cnet_partof_94876893e5 (PartOf south_carolina south) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "south carolina is part of united state", "pln": ["(: cnet_partof_41726204f5 (PartOf south_carolina united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "south china sea is part of pacific", "pln": ["(: cnet_partof_c1af211663 (PartOf south_china_sea pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "south dakota is part of dakota", "pln": ["(: cnet_partof_4f5d1d4731 (PartOf south_dakota dakota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "south dakota is part of united state", "pln": ["(: cnet_partof_b7a523005b (PartOf south_dakota united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "south island is part of new zealand", "pln": ["(: cnet_partof_691bbc859c (PartOf south_island new_zealand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "south korea is part of asia", "pln": ["(: cnet_partof_be100506f0 (PartOf south_korea asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "south korea is part of korea", "pln": ["(: cnet_partof_92e1851d2e (PartOf south_korea korea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "south pacific is part of pacific", "pln": ["(: cnet_partof_f15b3265d8 (PartOf south_pacific pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "south platte is part of colorado", "pln": ["(: cnet_partof_6cac93e135 (PartOf south_platte colorado) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "south platte is part of nebraska", "pln": ["(: cnet_partof_57c8dc6d65 (PartOf south_platte nebraska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "south pole is part of antarctica", "pln": ["(: cnet_partof_b7e211d5b9 (PartOf south_pole antarctica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "south vietnam is part of vietnam", "pln": ["(: cnet_partof_2ad999d58e (PartOf south_vietnam vietnam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "south yorkshire is part of england", "pln": ["(: cnet_partof_4807981706 (PartOf south_yorkshire england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "southeast is part of east", "pln": ["(: cnet_partof_adff61400b (PartOf southeast east) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "southeast asia is part of asia", "pln": ["(: cnet_partof_209f2c9e48 (PartOf southeast_asia asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "southwest is part of west", "pln": ["(: cnet_partof_3add3ecbab (PartOf southwest west) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "soviet russia is part of eurasia", "pln": ["(: cnet_partof_f85d597d6f (PartOf soviet_russia eurasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "soviet russia is part of soviet union", "pln": ["(: cnet_partof_79972e67d7 (PartOf soviet_russia soviet_union) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "soviet socialist republic is part of soviet union", "pln": ["(: cnet_partof_58e1a5b3f0 (PartOf soviet_socialist_republic soviet_union) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "soviet union is part of eurasia", "pln": ["(: cnet_partof_616c73266e (PartOf soviet_union eurasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "soweto is part of south africa", "pln": ["(: cnet_partof_71fac0c200 (PartOf soweto south_africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "soy is part of soy", "pln": ["(: cnet_partof_7715d22fc8 (PartOf soy soy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "space is part of form", "pln": ["(: cnet_partof_2020a8ddd4 (PartOf space form) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "space is part of musical notation", "pln": ["(: cnet_partof_a197891635 (PartOf space musical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "space is part of staff", "pln": ["(: cnet_partof_d2cb4f3d9b (PartOf space staff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "space bar is part of typewriter keyboard", "pln": ["(: cnet_partof_8f8a1a2f8b (PartOf space_bar typewriter_keyboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "space needle is part of seattle", "pln": ["(: cnet_partof_a1e45734fd (PartOf space_needle seattle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spadix is part of spike", "pln": ["(: cnet_partof_fa87369b9a (PartOf spadix spike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spaghetti squash is part of spaghetti squash", "pln": ["(: cnet_partof_13a80e8a98 (PartOf spaghetti_squash spaghetti_squash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spain is part of europe", "pln": ["(: cnet_partof_836a7d7008 (PartOf spain europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spain is part of iberian peninsula", "pln": ["(: cnet_partof_e8f0a9a165 (PartOf spain iberian_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spanish mackerel is part of spanish mackerel", "pln": ["(: cnet_partof_e057393ed0 (PartOf spanish_mackerel spanish_mackerel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spanish needle is part of bur marigold", "pln": ["(: cnet_partof_fe31fa4031 (PartOf spanish_needle bur_marigold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spar is part of ship", "pln": ["(: cnet_partof_2dbecddbbe (PartOf spar ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "spare tire is part of torso", "pln": ["(: cnet_partof_332b766582 (PartOf spare_tire torso) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spark coil is part of ignition", "pln": ["(: cnet_partof_b33f4b0558 (PartOf spark_coil ignition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spark gap is part of ignition", "pln": ["(: cnet_partof_a99ea69e7c (PartOf spark_gap ignition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spark gap is part of induction coil", "pln": ["(: cnet_partof_8a2215c4cf (PartOf spark_gap induction_coil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spark plug is part of ignition", "pln": ["(: cnet_partof_6ccc2236a9 (PartOf spark_plug ignition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "sparrow unit is part of new people s army", "pln": ["(: cnet_partof_0e5cb84beb (PartOf sparrow_unit new_people_s_army) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sparta is part of peloponnese", "pln": ["(: cnet_partof_67076a5d56 (PartOf sparta peloponnese) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "speaker is part of stereo system", "pln": ["(: cnet_partof_9ef908408b (PartOf speaker stereo_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spearhead is part of pike", "pln": ["(: cnet_partof_2fc064e375 (PartOf spearhead pike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spearhead is part of spear", "pln": ["(: cnet_partof_4bb14543db (PartOf spearhead spear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "special force is part of united state army", "pln": ["(: cnet_partof_cd06ca0ff0 (PartOf special_force united_state_army) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spectacle is part of frame", "pln": ["(: cnet_partof_10a217e3ef (PartOf spectacle frame) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spectrum line is part of spectrum", "pln": ["(: cnet_partof_1064d71f8a (PartOf spectrum_line spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "speedometer is part of motor vehicle", "pln": ["(: cnet_partof_19458509b8 (PartOf speedometer motor_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sperm is part of male reproductive system", "pln": ["(: cnet_partof_d41e9d3b7d (PartOf sperm male_reproductive_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "sperm is part of semen", "pln": ["(: cnet_partof_4fe4c09289 (PartOf sperm semen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spermatic cord is part of testis", "pln": ["(: cnet_partof_2e88ca46df (PartOf spermatic_cord testis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sphenion is part of parietal bone", "pln": ["(: cnet_partof_b213e97b8c (PartOf sphenion parietal_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sphenoid bone is part of skull", "pln": ["(: cnet_partof_49031cf647 (PartOf sphenoid_bone skull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spike is part of shoe", "pln": ["(: cnet_partof_dbc2dcc5e3 (PartOf spike shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spinach is part of spinach", "pln": ["(: cnet_partof_a5ccfb544a (PartOf spinach spinach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "spinal canal is part of spinal column", "pln": ["(: cnet_partof_3380f8c569 (PartOf spinal_canal spinal_column) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spinal column is part of axial skeleton", "pln": ["(: cnet_partof_a02fc92651 (PartOf spinal_column axial_skeleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spinal cord is part of central nervous system", "pln": ["(: cnet_partof_8f18b519bc (PartOf spinal_cord central_nervous_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spinal fluid is part of spinal cord", "pln": ["(: cnet_partof_4c65186dc3 (PartOf spinal_fluid spinal_cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spinal fluid is part of ventricle", "pln": ["(: cnet_partof_15b99b76a8 (PartOf spinal_fluid ventricle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spinal vein is part of spinal cord", "pln": ["(: cnet_partof_7e5a95d784 (PartOf spinal_vein spinal_cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spindle is part of drive", "pln": ["(: cnet_partof_9f77166690 (PartOf spindle drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spindle is part of spinning frame", "pln": ["(: cnet_partof_5e682a0e64 (PartOf spindle spinning_frame) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spindle is part of spinning wheel", "pln": ["(: cnet_partof_29d5cb4bd5 (PartOf spindle spinning_wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spine is part of human body", "pln": ["(: cnet_partof_059d2c3ecf (PartOf spine human_body) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spiny lobster is part of spiny lobster", "pln": ["(: cnet_partof_31a30961ab (PartOf spiny_lobster spiny_lobster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spit is part of rack", "pln": ["(: cnet_partof_35ae5b23f1 (PartOf spit rack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spitsbergen is part of svalbard", "pln": ["(: cnet_partof_2388931ca7 (PartOf spitsbergen svalbard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "splanchnic nerve is part of sympathetic nervous system", "pln": ["(: cnet_partof_afacc99076 (PartOf splanchnic_nerve sympathetic_nervous_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "splashboard is part of vehicle", "pln": ["(: cnet_partof_ec8079c7b3 (PartOf splashboard vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "splasher is part of wheeled vehicle", "pln": ["(: cnet_partof_9d632ca6b3 (PartOf splasher wheeled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "splat is part of straight chair", "pln": ["(: cnet_partof_2ca16c325a (PartOf splat straight_chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spleen is part of lymphatic system", "pln": ["(: cnet_partof_fdb1a40ccb (PartOf spleen lymphatic_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "splenic vein is part of spleen", "pln": ["(: cnet_partof_90b4b62c15 (PartOf splenic_vein spleen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "split is part of croatia", "pln": ["(: cnet_partof_3c5965be53 (PartOf split croatia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "split rail is part of rail fence", "pln": ["(: cnet_partof_f15e8c01b4 (PartOf split_rail rail_fence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "spokane is part of washington", "pln": ["(: cnet_partof_11e9ea5ba9 (PartOf spokane washington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spoke is part of bicycle wheel", "pln": ["(: cnet_partof_75e432ff73 (PartOf spoke bicycle_wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spoke is part of cartwheel", "pln": ["(: cnet_partof_6a2d12c333 (PartOf spoke cartwheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spoke is part of wagon wheel", "pln": ["(: cnet_partof_f0df54ce53 (PartOf spoke wagon_wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sport page is part of sport section", "pln": ["(: cnet_partof_8bd4de1165 (PartOf sport_page sport_section) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sport section is part of newspaper", "pln": ["(: cnet_partof_dc639a3c95 (PartOf sport_section newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spot is part of playing card", "pln": ["(: cnet_partof_7baab3c5c4 (PartOf spot playing_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spotsylvania is part of wilderness campaign", "pln": ["(: cnet_partof_e099abb5be (PartOf spotsylvania wilderness_campaign) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spotsylvania is part of virginia", "pln": ["(: cnet_partof_28dd5fcc3a (PartOf spotsylvania virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spout is part of pipe", "pln": ["(: cnet_partof_259a6d3bfc (PartOf spout pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spout is part of watering can", "pln": ["(: cnet_partof_61228ac2fa (PartOf spout watering_can) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sprat is part of brisling", "pln": ["(: cnet_partof_982db5452d (PartOf sprat brisling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "spread is part of publication", "pln": ["(: cnet_partof_8292520344 (PartOf spread publication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "springer is part of arch", "pln": ["(: cnet_partof_e425786e4b (PartOf springer arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "springfield is part of illinois", "pln": ["(: cnet_partof_91f393e57a (PartOf springfield illinois) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "springfield is part of massachusett", "pln": ["(: cnet_partof_9a83715823 (PartOf springfield massachusett) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "springfield is part of missouri", "pln": ["(: cnet_partof_f406152077 (PartOf springfield missouri) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sprit is part of spritsail", "pln": ["(: cnet_partof_ccdb88dc15 (PartOf sprit spritsail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "sprocket is part of bicycle", "pln": ["(: cnet_partof_38cec7a40e (PartOf sprocket bicycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sprocket is part of camera", "pln": ["(: cnet_partof_d4b56a9cf8 (PartOf sprocket camera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "spur is part of boot", "pln": ["(: cnet_partof_c2e2e82d82 (PartOf spur boot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "squab is part of domestic pigeon", "pln": ["(: cnet_partof_9e6808b2f0 (PartOf squab domestic_pigeon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "squad room is part of barrack", "pln": ["(: cnet_partof_4f1eda3723 (PartOf squad_room barrack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "squad room is part of police station", "pln": ["(: cnet_partof_4b426be30e (PartOf squad_room police_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "square is part of checkerboard", "pln": ["(: cnet_partof_c5836dc05a (PartOf square checkerboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "squash is part of squash", "pln": ["(: cnet_partof_efdd8138c4 (PartOf squash squash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "squawk box is part of intercommunication system", "pln": ["(: cnet_partof_230f11a510 (PartOf squawk_box intercommunication_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "squid is part of squid", "pln": ["(: cnet_partof_90d8dfe52a (PartOf squid squid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "squill is part of sea squill", "pln": ["(: cnet_partof_1eecf6df23 (PartOf squill sea_squill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "st augustine is part of florida", "pln": ["(: cnet_partof_aa1af28b61 (PartOf st_augustine florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "st elia range is part of alaska", "pln": ["(: cnet_partof_4db51645a7 (PartOf st_elia_range alaska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "st elia range is part of yukon", "pln": ["(: cnet_partof_c59965c67a (PartOf st_elia_range yukon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "st george s is part of grenada", "pln": ["(: cnet_partof_1a8970d128 (PartOf st_george_s grenada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "st john s is part of antigua and barbuda", "pln": ["(: cnet_partof_c0c5bfa63a (PartOf st_john_s antigua_and_barbuda) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "st petersburg is part of florida", "pln": ["(: cnet_partof_296e20d488 (PartOf st_petersburg florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "st petersburg is part of russia", "pln": ["(: cnet_partof_c62bb26a63 (PartOf st_petersburg russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stabilizer is part of tail", "pln": ["(: cnet_partof_778e812b54 (PartOf stabilizer tail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stabilizer bar is part of car", "pln": ["(: cnet_partof_94648c2d64 (PartOf stabilizer_bar car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stabilizer bar is part of truck", "pln": ["(: cnet_partof_cf992dec72 (PartOf stabilizer_bar truck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stack is part of library", "pln": ["(: cnet_partof_3642c647a6 (PartOf stack library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "staff line is part of musical notation", "pln": ["(: cnet_partof_584cdb00b6 (PartOf staff_line musical_notation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "staff line is part of staff", "pln": ["(: cnet_partof_6b8687018e (PartOf staff_line staff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "staffa is part of inner hebride", "pln": ["(: cnet_partof_e34f21befc (PartOf staffa inner_hebride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stage is part of journey", "pln": ["(: cnet_partof_90189f725e (PartOf stage journey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stage is part of theater", "pln": ["(: cnet_partof_392285f1c6 (PartOf stage theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "stage direction is part of play", "pln": ["(: cnet_partof_43c4b7adbe (PartOf stage_direction play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stage left is part of stage", "pln": ["(: cnet_partof_9e2b7a0299 (PartOf stage_left stage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stage right is part of stage", "pln": ["(: cnet_partof_0e719af692 (PartOf stage_right stage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stage set is part of mise en scene", "pln": ["(: cnet_partof_107db4939e (PartOf stage_set mise_en_scene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stagira is part of greece", "pln": ["(: cnet_partof_f7188f8a9f (PartOf stagira greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stairhead is part of stairway", "pln": ["(: cnet_partof_89df77a4e4 (PartOf stairhead stairway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stairway is part of building", "pln": ["(: cnet_partof_f38eb6722d (PartOf stairway building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stake is part of pool", "pln": ["(: cnet_partof_56a50c35c7 (PartOf stake pool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stalactite is part of cave", "pln": ["(: cnet_partof_c3f4129fc7 (PartOf stalactite cave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stalagmite is part of cave", "pln": ["(: cnet_partof_684e4ab790 (PartOf stalagmite cave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stall is part of stall", "pln": ["(: cnet_partof_dee00a0e57 (PartOf stall stall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stamen is part of flower", "pln": ["(: cnet_partof_e095bffe8f (PartOf stamen flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stamp is part of battery", "pln": ["(: cnet_partof_2c7489720f (PartOf stamp battery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stand is part of ballpark", "pln": ["(: cnet_partof_daff5cf1de (PartOf stand ballpark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stand is part of stadium", "pln": ["(: cnet_partof_752ecd2ad0 (PartOf stand stadium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "standing room is part of stadium", "pln": ["(: cnet_partof_e8787d28c4 (PartOf standing_room stadium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "standing room is part of theater", "pln": ["(: cnet_partof_1fff41a092 (PartOf standing_room theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stanford university is part of palo alto", "pln": ["(: cnet_partof_881c26c731 (PartOf stanford_university palo_alto) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stanza is part of poem", "pln": ["(: cnet_partof_321f92556d (PartOf stanza poem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stape is part of middle ear", "pln": ["(: cnet_partof_2e2545404b (PartOf stape middle_ear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "star is part of galaxy", "pln": ["(: cnet_partof_4c9605a02d (PartOf star galaxy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "statistical method is part of statistics", "pln": ["(: cnet_partof_759537d2da (PartOf statistical_method statistics) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "starter is part of electrical system", "pln": ["(: cnet_partof_6e3f3e0cc6 (PartOf starter electrical_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stassano furnace is part of steel mill", "pln": ["(: cnet_partof_a7375bdeb3 (PartOf stassano_furnace steel_mill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "staten island is part of new york", "pln": ["(: cnet_partof_d656e37ad6 (PartOf staten_island new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "static line is part of parachute", "pln": ["(: cnet_partof_6153df237e (PartOf static_line parachute) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "statistical method is part of statistic", "pln": ["(: cnet_partof_8381563b55 (PartOf statistical_method statistic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stator is part of electric motor", "pln": ["(: cnet_partof_687bb3006c (PartOf stator electric_motor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stator is part of generator", "pln": ["(: cnet_partof_480b28ea02 (PartOf stator generator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stator is part of turbine", "pln": ["(: cnet_partof_65c6bf7900 (PartOf stator turbine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stavanger is part of norway", "pln": ["(: cnet_partof_7159968a7a (PartOf stavanger norway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "stave is part of barrel", "pln": ["(: cnet_partof_4fa82af319 (PartOf stave barrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "steam chest is part of steam engine", "pln": ["(: cnet_partof_283375e3b0 (PartOf steam_chest steam_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "steam engine is part of steam locomotive", "pln": ["(: cnet_partof_6bd45a1d8b (PartOf steam_engine steam_locomotive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "steam engine is part of steamer", "pln": ["(: cnet_partof_a15b14a3c5 (PartOf steam_engine steamer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "steam whistle is part of boiler", "pln": ["(: cnet_partof_9b3c284d1b (PartOf steam_whistle boiler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "steam whistle is part of calliope", "pln": ["(: cnet_partof_659aad0d08 (PartOf steam_whistle calliope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "steer roping is part of rodeo", "pln": ["(: cnet_partof_7f4dacbbc3 (PartOf steer_roping rodeo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "steering is part of seafaring", "pln": ["(: cnet_partof_54fb96f4d7 (PartOf steering seafaring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "steering gear is part of steering system", "pln": ["(: cnet_partof_95dd08105f (PartOf steering_gear steering_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "steering linkage is part of steering system", "pln": ["(: cnet_partof_7d00527187 (PartOf steering_linkage steering_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "steering wheel is part of steering system", "pln": ["(: cnet_partof_9bf1698803 (PartOf steering_wheel steering_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stele is part of axis", "pln": ["(: cnet_partof_bdb1cc6175 (PartOf stele axis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stem is part of flower", "pln": ["(: cnet_partof_78bf70a7d7 (PartOf stem flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stem is part of pipe", "pln": ["(: cnet_partof_ea2b12391d (PartOf stem pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "step is part of stairway", "pln": ["(: cnet_partof_6e846a74d4 (PartOf step stairway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stephanion is part of cranium", "pln": ["(: cnet_partof_4e3302412f (PartOf stephanion cranium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "steradian is part of sphere", "pln": ["(: cnet_partof_c3273bd58d (PartOf steradian sphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "stereotyping people who have condition is part of stigma", "pln": ["(: cnet_partof_1e04dc7fa7 (PartOf stereotyping_people_who_have_condition stigma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stern is part of ship", "pln": ["(: cnet_partof_b5144b62d7 (PartOf stern ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sternocleidomastoid is part of neck", "pln": ["(: cnet_partof_298d3572c3 (PartOf sternocleidomastoid neck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sternum is part of axial skeleton", "pln": ["(: cnet_partof_702da584fb (PartOf sternum axial_skeleton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "sternum is part of thorax", "pln": ["(: cnet_partof_9a46c46ce2 (PartOf sternum thorax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stifle is part of hind leg", "pln": ["(: cnet_partof_8c02759861 (PartOf stifle hind_leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stigma is part of style", "pln": ["(: cnet_partof_3cdb77e89e (PartOf stigma style) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "stirrup is part of saddle", "pln": ["(: cnet_partof_cb3436791b (PartOf stirrup saddle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stock is part of artillery", "pln": ["(: cnet_partof_0f582c9dd0 (PartOf stock artillery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stock is part of cue", "pln": ["(: cnet_partof_32a9ef5973 (PartOf stock cue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stock is part of fishing rod", "pln": ["(: cnet_partof_67092c00c8 (PartOf stock fishing_rod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stock is part of gun", "pln": ["(: cnet_partof_428337872c (PartOf stock gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stock is part of machine gun", "pln": ["(: cnet_partof_9ba05cc592 (PartOf stock machine_gun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stock is part of pistol", "pln": ["(: cnet_partof_ed360ef29a (PartOf stock pistol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "stock is part of whip", "pln": ["(: cnet_partof_2b1234d980 (PartOf stock whip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stockholm is part of sweden", "pln": ["(: cnet_partof_6ea065ed0c (PartOf stockholm sweden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stocking is part of pantyhose", "pln": ["(: cnet_partof_1a76510a98 (PartOf stocking pantyhose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stoma is part of colostomy", "pln": ["(: cnet_partof_6a1108d8f5 (PartOf stoma colostomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stoma is part of tracheostomy", "pln": ["(: cnet_partof_6e0286e50f (PartOf stoma tracheostomy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stomach is part of body", "pln": ["(: cnet_partof_197a4264b5 (PartOf stomach body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "stomach is part of human body", "pln": ["(: cnet_partof_d20376a73e (PartOf stomach human_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stomach is part of alimentary canal", "pln": ["(: cnet_partof_1127bbe6d2 (PartOf stomach alimentary_canal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stomachache is part of indigestion", "pln": ["(: cnet_partof_58a1cde92c (PartOf stomachache indigestion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stone is part of quarter", "pln": ["(: cnet_partof_8c50e8ef32 (PartOf stone quarter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stone age is part of prehistory", "pln": ["(: cnet_partof_02fe50fdd8 (PartOf stone_age prehistory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stone crab is part of stone crab", "pln": ["(: cnet_partof_7cf07e2fad (PartOf stone_crab stone_crab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stony tunguska is part of siberia", "pln": ["(: cnet_partof_e742e01ea1 (PartOf stony_tunguska siberia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stop is part of organ", "pln": ["(: cnet_partof_f90206e2b8 (PartOf stop organ) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stoplight is part of brake system", "pln": ["(: cnet_partof_737104effc (PartOf stoplight brake_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "storage battery grid is part of storage battery", "pln": ["(: cnet_partof_cf7320f68c (PartOf storage_battery_grid storage_battery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "storage cell is part of storage battery", "pln": ["(: cnet_partof_0256bda6b0 (PartOf storage_cell storage_battery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "storage ring is part of accelerator", "pln": ["(: cnet_partof_535ce76ac1 (PartOf storage_ring accelerator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "storage space is part of depository", "pln": ["(: cnet_partof_425653f1f3 (PartOf storage_space depository) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "storm is part of beaufort scale", "pln": ["(: cnet_partof_f2f8a9aa1c (PartOf storm beaufort_scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "storm center is part of storm", "pln": ["(: cnet_partof_9379ad7493 (PartOf storm_center storm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stotinka is part of lev", "pln": ["(: cnet_partof_c8f04664c6 (PartOf stotinka lev) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "straight angle is part of circumference", "pln": ["(: cnet_partof_1854610530 (PartOf straight_angle circumference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "strait of hormuz is part of arabian sea", "pln": ["(: cnet_partof_8a099d2aa2 (PartOf strait_of_hormuz arabian_sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "strand is part of west end", "pln": ["(: cnet_partof_ae63e83bab (PartOf strand west_end) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "strap is part of baggage", "pln": ["(: cnet_partof_088ae6514d (PartOf strap baggage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "strap is part of brace", "pln": ["(: cnet_partof_16218445bf (PartOf strap brace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "strap is part of brassiere", "pln": ["(: cnet_partof_3704efdccf (PartOf strap brassiere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "strap is part of chemise", "pln": ["(: cnet_partof_1b39b26d60 (PartOf strap chemise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "strap is part of golf bag", "pln": ["(: cnet_partof_e623b35764 (PartOf strap golf_bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stratosphere is part of atmosphere", "pln": ["(: cnet_partof_6b68128a07 (PartOf stratosphere atmosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "stratum corneum is part of epidermis", "pln": ["(: cnet_partof_1d1b9e6c1a (PartOf stratum_corneum epidermis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stratum germinativum is part of epidermis", "pln": ["(: cnet_partof_b8932ddb26 (PartOf stratum_germinativum epidermis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stratum granulosum is part of epidermis", "pln": ["(: cnet_partof_7657f061f6 (PartOf stratum_granulosum epidermis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stratum lucidum is part of epidermis", "pln": ["(: cnet_partof_4d31f1211a (PartOf stratum_lucidum epidermis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "strawberry is part of garden strawberry", "pln": ["(: cnet_partof_0160222a98 (PartOf strawberry garden_strawberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "streamer is part of aurora", "pln": ["(: cnet_partof_ef65f9c267 (PartOf streamer aurora) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "street is part of concrete jungle", "pln": ["(: cnet_partof_74090d5b9d (PartOf street concrete_jungle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "streetcar is part of trolley line", "pln": ["(: cnet_partof_12cc0049ca (PartOf streetcar trolley_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stretch is part of racetrack", "pln": ["(: cnet_partof_2285bfe0bf (PartOf stretch racetrack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "striated muscle cell is part of skeletal muscle", "pln": ["(: cnet_partof_345bff89c9 (PartOf striated_muscle_cell skeletal_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "string theory is part of m theory", "pln": ["(: cnet_partof_e4c0e87c66 (PartOf string_theory m_theory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "strong breeze is part of beaufort scale", "pln": ["(: cnet_partof_cef300744b (PartOf strong_breeze beaufort_scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "strong gale is part of beaufort scale", "pln": ["(: cnet_partof_47c3359b78 (PartOf strong_gale beaufort_scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "strong suit is part of bridge hand", "pln": ["(: cnet_partof_5c7501169f (PartOf strong_suit bridge_hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "strophe is part of lyric", "pln": ["(: cnet_partof_be04232732 (PartOf strophe lyric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "structural member is part of structure", "pln": ["(: cnet_partof_6c143c8805 (PartOf structural_member structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "structuralism is part of anthropology", "pln": ["(: cnet_partof_24c7092278 (PartOf structuralism anthropology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "structuralism is part of sociology", "pln": ["(: cnet_partof_7eafd87b07 (PartOf structuralism sociology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "student is part of class", "pln": ["(: cnet_partof_138469dadb (PartOf student class) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "student union is part of campus", "pln": ["(: cnet_partof_8e90cd4030 (PartOf student_union campus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "study is part of house", "pln": ["(: cnet_partof_dcfd110b41 (PartOf study house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "study hall is part of school", "pln": ["(: cnet_partof_fc9ec230f8 (PartOf study_hall school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stuffing nut is part of stuffing box", "pln": ["(: cnet_partof_606a9e7040 (PartOf stuffing_nut stuffing_box) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stump is part of limb", "pln": ["(: cnet_partof_448c23fa67 (PartOf stump limb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stump is part of tooth", "pln": ["(: cnet_partof_d41d1963fd (PartOf stump tooth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "stump is part of wicket", "pln": ["(: cnet_partof_f2aa6f1b95 (PartOf stump wicket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stump is part of tree", "pln": ["(: cnet_partof_b0889049b8 (PartOf stump tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stuttgart is part of germany", "pln": ["(: cnet_partof_0e8bf31bbf (PartOf stuttgart germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "style is part of pistil", "pln": ["(: cnet_partof_90c1b3a28a (PartOf style pistil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stylet is part of tardigrade", "pln": ["(: cnet_partof_c4d3ac8a7e (PartOf stylet tardigrade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "styloid process is part of temporal bone", "pln": ["(: cnet_partof_349666b585 (PartOf styloid_process temporal_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "stylus is part of cartridge", "pln": ["(: cnet_partof_46eb26f9db (PartOf stylus cartridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "styx is part of hel", "pln": ["(: cnet_partof_f84d68db76 (PartOf styx hel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sub saharan africa is part of africa", "pln": ["(: cnet_partof_d4719d9ce5 (PartOf sub_saharan_africa africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "subarachnoid space is part of meninx", "pln": ["(: cnet_partof_defd48611a (PartOf subarachnoid_space meninx) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "subclavian artery is part of clavicle", "pln": ["(: cnet_partof_c1a699afc0 (PartOf subclavian_artery clavicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "subcontinent is part of continent", "pln": ["(: cnet_partof_54392eaedd (PartOf subcontinent continent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "subculture is part of culture", "pln": ["(: cnet_partof_862c9f02e9 (PartOf subculture culture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "subject is part of scene", "pln": ["(: cnet_partof_2785a21426 (PartOf subject scene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "subordinate clause is part of complex sentence", "pln": ["(: cnet_partof_292f626db5 (PartOf subordinate_clause complex_sentence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "substantia nigra is part of midbrain", "pln": ["(: cnet_partof_3430e68cdb (PartOf substantia_nigra midbrain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "subthalamic nucleus is part of subthalamus", "pln": ["(: cnet_partof_a3731fe35d (PartOf subthalamic_nucleus subthalamus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "subthalamus is part of thalamus", "pln": ["(: cnet_partof_55d0862e97 (PartOf subthalamus thalamus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "subtitle is part of movie", "pln": ["(: cnet_partof_ba8a6b3167 (PartOf subtitle movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "suburb is part of outskirt", "pln": ["(: cnet_partof_4c168ef03a (PartOf suburb outskirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "succo is part of tishri", "pln": ["(: cnet_partof_26f39cff70 (PartOf succo tishri) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sucker is part of sucker", "pln": ["(: cnet_partof_ff8b9d6afc (PartOf sucker sucker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "sucre is part of bolivia", "pln": ["(: cnet_partof_7ae7703ed4 (PartOf sucre bolivia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sudan is part of africa", "pln": ["(: cnet_partof_1951ef1f6a (PartOf sudan africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sudbury is part of ontario", "pln": ["(: cnet_partof_b594c171ae (PartOf sudbury ontario) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "suez is part of egypt", "pln": ["(: cnet_partof_e9c07d16ab (PartOf suez egypt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "suez canal is part of egypt", "pln": ["(: cnet_partof_5723bca833 (PartOf suez_canal egypt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sugar is part of candy", "pln": ["(: cnet_partof_cab4570604 (PartOf sugar candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sugarcane is part of sugarcane", "pln": ["(: cnet_partof_38a89020ed (PartOf sugarcane sugarcane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sumatra is part of indonesia", "pln": ["(: cnet_partof_d50f9ee105 (PartOf sumatra indonesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sumer is part of babylonia", "pln": ["(: cnet_partof_4cf388549c (PartOf sumer babylonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "sumer is part of iraq", "pln": ["(: cnet_partof_4a9c9e090b (PartOf sumer iraq) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "summer savory is part of summer savory", "pln": ["(: cnet_partof_23563849d2 (PartOf summer_savory summer_savory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "summer solstice is part of june", "pln": ["(: cnet_partof_4034c8becd (PartOf summer_solstice june) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "summer solstice is part of summer", "pln": ["(: cnet_partof_537f71469f (PartOf summer_solstice summer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "summer squash is part of summer squash", "pln": ["(: cnet_partof_428c33c8f9 (PartOf summer_squash summer_squash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sun city is part of arizona", "pln": ["(: cnet_partof_a4afddf572 (PartOf sun_city arizona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sun gear is part of epicyclic train", "pln": ["(: cnet_partof_2e02829bc0 (PartOf sun_gear epicyclic_train) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "sun river is part of montana", "pln": ["(: cnet_partof_8ca7e2db3e (PartOf sun_river montana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sun valley is part of idaho", "pln": ["(: cnet_partof_daeaa30c6e (PartOf sun_valley idaho) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sunbeam is part of sunlight", "pln": ["(: cnet_partof_118d039511 (PartOf sunbeam sunlight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sunbelt is part of united state", "pln": ["(: cnet_partof_e001b0853c (PartOf sunbelt united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sunburst pleat is part of skirt", "pln": ["(: cnet_partof_1e894d60bb (PartOf sunburst_pleat skirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sunda island is part of malay archipelago", "pln": ["(: cnet_partof_7fd8020c54 (PartOf sunda_island malay_archipelago) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "sunday is part of weekend", "pln": ["(: cnet_partof_a314f2ff3e (PartOf sunday weekend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sunderland is part of england", "pln": ["(: cnet_partof_faf2c5e19f (PartOf sunderland england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sunfish is part of sunfish", "pln": ["(: cnet_partof_b10c1640ee (PartOf sunfish sunfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sunflower seed is part of common sunflower", "pln": ["(: cnet_partof_85eb1705f8 (PartOf sunflower_seed common_sunflower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sunroof is part of car", "pln": ["(: cnet_partof_61c090c956 (PartOf sunroof car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sunset is part of evening", "pln": ["(: cnet_partof_c7cbe8b59c (PartOf sunset evening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "supercharger is part of internal combustion engine", "pln": ["(: cnet_partof_1e56bb8924 (PartOf supercharger internal_combustion_engine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "superego is part of unconscious mind", "pln": ["(: cnet_partof_c1be2611c7 (PartOf superego unconscious_mind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "superhigh frequency is part of electromagnetic spectrum", "pln": ["(: cnet_partof_7782027846 (PartOf superhigh_frequency electromagnetic_spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "superior is part of wisconsin", "pln": ["(: cnet_partof_e1f38c15c3 (PartOf superior wisconsin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "superior colliculus is part of midbrain", "pln": ["(: cnet_partof_d860cd83fe (PartOf superior_colliculus midbrain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "superstructure is part of ship", "pln": ["(: cnet_partof_fd2ecac1a5 (PartOf superstructure ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "supertitle is part of opera", "pln": ["(: cnet_partof_1eb8f51246 (PartOf supertitle opera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "supervisory program is part of operating system", "pln": ["(: cnet_partof_7ab7a85997 (PartOf supervisory_program operating_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "supervisory routine is part of supervisory program", "pln": ["(: cnet_partof_2acda56b67 (PartOf supervisory_routine supervisory_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "supreme headquarter allied power europe is part of north atlantic treaty organization", "pln": ["(: cnet_partof_d65e6070d5 (PartOf supreme_headquarter_allied_power_europe north_atlantic_treaty_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sur is part of lebanon", "pln": ["(: cnet_partof_f6ba4d16b4 (PartOf sur lebanon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sura is part of koran", "pln": ["(: cnet_partof_38c996b75b (PartOf sura koran) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "surface is part of lithosphere", "pln": ["(: cnet_partof_71dc410cec (PartOf surface lithosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "surface to air missile is part of surface to air missile system", "pln": ["(: cnet_partof_a9aac81f33 (PartOf surface_to_air_missile surface_to_air_missile_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "suriname is part of guiana", "pln": ["(: cnet_partof_71b8db7407 (PartOf suriname guiana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "suriname river is part of suriname", "pln": ["(: cnet_partof_c5c6c415ad (PartOf suriname_river suriname) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "surrey is part of england", "pln": ["(: cnet_partof_aa8b27a2d9 (PartOf surrey england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "survivor guilt is part of posttraumatic stress disorder", "pln": ["(: cnet_partof_2d3754c0ae (PartOf survivor_guilt posttraumatic_stress_disorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "susanna is part of apocrypha", "pln": ["(: cnet_partof_9ca95bfe04 (PartOf susanna apocrypha) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "suspension is part of car", "pln": ["(: cnet_partof_93e80f892a (PartOf suspension car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "suspension is part of motor vehicle", "pln": ["(: cnet_partof_c48039f0ac (PartOf suspension motor_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "susquehanna is part of maryland", "pln": ["(: cnet_partof_510c18ab1e (PartOf susquehanna maryland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "susquehanna is part of new york", "pln": ["(: cnet_partof_009f9846d8 (PartOf susquehanna new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "susquehanna is part of pennsylvania", "pln": ["(: cnet_partof_51f392f528 (PartOf susquehanna pennsylvania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sussex is part of england", "pln": ["(: cnet_partof_4fd68f85eb (PartOf sussex england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sustaining pedal is part of piano", "pln": ["(: cnet_partof_1094d5fff4 (PartOf sustaining_pedal piano) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "suturing is part of operation", "pln": ["(: cnet_partof_7fd0328f24 (PartOf suturing operation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "swansea is part of wales", "pln": ["(: cnet_partof_f9d791dfe8 (PartOf swansea wales) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "suva is part of fiji", "pln": ["(: cnet_partof_00e423ee7a (PartOf suva fiji) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "svalbard is part of arctic ocean", "pln": ["(: cnet_partof_73488318af (PartOf svalbard arctic_ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "svalbard is part of norway", "pln": ["(: cnet_partof_96bfb68f83 (PartOf svalbard norway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "swallow tailed coat is part of dress suit", "pln": ["(: cnet_partof_614c9fdc1c (PartOf swallow_tailed_coat dress_suit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "swallow tailed coat is part of morning dress", "pln": ["(: cnet_partof_452550e3b1 (PartOf swallow_tailed_coat morning_dress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "swan s down is part of swan", "pln": ["(: cnet_partof_24a15790f6 (PartOf swan_s_down swan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "swansea is part of wale", "pln": ["(: cnet_partof_64fc77cfdf (PartOf swansea wale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "swaziland is part of africa", "pln": ["(: cnet_partof_b452bb30fd (PartOf swaziland africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sweat gland is part of skin", "pln": ["(: cnet_partof_b9f632af98 (PartOf sweat_gland skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sweat pant is part of sweat suit", "pln": ["(: cnet_partof_fe527f8af5 (PartOf sweat_pant sweat_suit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sweatshirt is part of sweat suit", "pln": ["(: cnet_partof_cd78aaf885 (PartOf sweatshirt sweat_suit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sweeping is part of cleaning up kitchen", "pln": ["(: cnet_partof_e6c0abaf30 (PartOf sweeping cleaning_up_kitchen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sweet calabash is part of sweet calabash", "pln": ["(: cnet_partof_381a2378e0 (PartOf sweet_calabash sweet_calabash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sweet cherry is part of sweet cherry", "pln": ["(: cnet_partof_378ae34a68 (PartOf sweet_cherry sweet_cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sweet cicely is part of sweet cicely", "pln": ["(: cnet_partof_9f90f69e32 (PartOf sweet_cicely sweet_cicely) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sweet corn is part of corn", "pln": ["(: cnet_partof_620ff0f4ac (PartOf sweet_corn corn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sweet orange is part of sweet orange", "pln": ["(: cnet_partof_0e0ee2da4a (PartOf sweet_orange sweet_orange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sweet pepper is part of sweet pepper", "pln": ["(: cnet_partof_6f57ce3314 (PartOf sweet_pepper sweet_pepper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sweet potato is part of sweet potato", "pln": ["(: cnet_partof_c1c83b7225 (PartOf sweet_potato sweet_potato) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sweet woodruff is part of sweet woodruff", "pln": ["(: cnet_partof_16ecf491a6 (PartOf sweet_woodruff sweet_woodruff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sweetsop is part of sweetsop", "pln": ["(: cnet_partof_d71464f56e (PartOf sweetsop sweetsop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "swimmeret is part of isopod", "pln": ["(: cnet_partof_1908d21b75 (PartOf swimmeret isopod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "swimmeret is part of lobster", "pln": ["(: cnet_partof_f007e9a4d5 (PartOf swimmeret lobster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "swimmeret is part of shrimp", "pln": ["(: cnet_partof_c925738aac (PartOf swimmeret shrimp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "swimming event is part of swimming meet", "pln": ["(: cnet_partof_91748c534c (PartOf swimming_event swimming_meet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "swimming kick is part of swimming stroke", "pln": ["(: cnet_partof_5ab5da2377 (PartOf swimming_kick swimming_stroke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "swimming pool is part of lido", "pln": ["(: cnet_partof_d47a646d5e (PartOf swimming_pool lido) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "swing is part of square dance", "pln": ["(: cnet_partof_30b4b9ec7e (PartOf swing square_dance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "swing is part of playground", "pln": ["(: cnet_partof_e22b804a01 (PartOf swing playground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "swiss canton is part of switzerland", "pln": ["(: cnet_partof_6510696e16 (PartOf swiss_canton switzerland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "switchboard is part of telephone system", "pln": ["(: cnet_partof_88a793f957 (PartOf switchboard telephone_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "switzerland is part of europe", "pln": ["(: cnet_partof_70639c6c70 (PartOf switzerland europe) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "swordfish is part of swordfish", "pln": ["(: cnet_partof_641ef49a91 (PartOf swordfish swordfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "syconium is part of fig", "pln": ["(: cnet_partof_b841835e15 (PartOf syconium fig) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "sydney is part of new south wales", "pln": ["(: cnet_partof_f774717f0a (PartOf sydney new_south_wales) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sydney is part of new south wale", "pln": ["(: cnet_partof_fde244e287 (PartOf sydney new_south_wale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sydney harbor bridge is part of sydney", "pln": ["(: cnet_partof_c54c68ea50 (PartOf sydney_harbor_bridge sydney) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "syllable is part of word", "pln": ["(: cnet_partof_e33ef8dfdc (PartOf syllable word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "sympathetic nervous system is part of autonomic nervous system", "pln": ["(: cnet_partof_3321c0925e (PartOf sympathetic_nervous_system autonomic_nervous_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "symphysion is part of lower jaw", "pln": ["(: cnet_partof_fbafe8ea97 (PartOf symphysion lower_jaw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "symptom is part of disease", "pln": ["(: cnet_partof_f7a40a049d (PartOf symptom disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "synapse is part of brain", "pln": ["(: cnet_partof_1d692b1099 (PartOf synapse brain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "synapse is part of nerve", "pln": ["(: cnet_partof_8330c50840 (PartOf synapse nerve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "synapsis is part of leptotene", "pln": ["(: cnet_partof_5d7833f85b (PartOf synapsis leptotene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "syndrome is part of disease", "pln": ["(: cnet_partof_851f41d56c (PartOf syndrome disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "synizesis is part of prophase", "pln": ["(: cnet_partof_b70a60b61b (PartOf synizesis prophase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "synoptic gospel is part of gospel", "pln": ["(: cnet_partof_b2db1306d7 (PartOf synoptic_gospel gospel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "syracuse is part of new york", "pln": ["(: cnet_partof_5d3fe9dc59 (PartOf syracuse new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "syracuse is part of sicily", "pln": ["(: cnet_partof_31a7f284b6 (PartOf syracuse sicily) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "syria is part of asia", "pln": ["(: cnet_partof_32364cec4c (PartOf syria asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "syria is part of middle east", "pln": ["(: cnet_partof_5e124e4489 (PartOf syria middle_east) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "syrian desert is part of arabian desert", "pln": ["(: cnet_partof_382e5def26 (PartOf syrian_desert arabian_desert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "syrian desert is part of iraq", "pln": ["(: cnet_partof_cdf7b80319 (PartOf syrian_desert iraq) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "syrian desert is part of jordan", "pln": ["(: cnet_partof_95eb7fd4d0 (PartOf syrian_desert jordan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "syrian desert is part of saudi arabia", "pln": ["(: cnet_partof_ed19245285 (PartOf syrian_desert saudi_arabia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "syrian desert is part of syria", "pln": ["(: cnet_partof_719043a18b (PartOf syrian_desert syria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "syrinx is part of bird", "pln": ["(: cnet_partof_5c37c71082 (PartOf syrinx bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "szechwan is part of china", "pln": ["(: cnet_partof_c0662dbef1 (PartOf szechwan china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tab key is part of typewriter keyboard", "pln": ["(: cnet_partof_252dddd933 (PartOf tab_key typewriter_keyboard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tabasco is part of tabasco pepper", "pln": ["(: cnet_partof_9bda93f53a (PartOf tabasco tabasco_pepper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tabasco is part of mexico", "pln": ["(: cnet_partof_1f93676749 (PartOf tabasco mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "table of content is part of book", "pln": ["(: cnet_partof_87e084e755 (PartOf table_of_content book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "table rapping is part of seance", "pln": ["(: cnet_partof_600c55131f (PartOf table_rapping seance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "table tipping is part of seance", "pln": ["(: cnet_partof_a0bb4ed648 (PartOf table_tipping seance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tabletop is part of table", "pln": ["(: cnet_partof_ec01f0596b (PartOf tabletop table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tableware is part of table", "pln": ["(: cnet_partof_40ed7af298 (PartOf tableware table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tabora is part of tanzania", "pln": ["(: cnet_partof_e02fd61c2d (PartOf tabora tanzania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tabriz is part of iran", "pln": ["(: cnet_partof_784f4dea47 (PartOf tabriz iran) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tabuk is part of saudi arabia", "pln": ["(: cnet_partof_4effff80bd (PartOf tabuk saudi_arabia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tacoma is part of washington", "pln": ["(: cnet_partof_e054efab0d (PartOf tacoma washington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tacoma narrow bridge is part of tacoma", "pln": ["(: cnet_partof_f179d2c2de (PartOf tacoma_narrow_bridge tacoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "taconic mountain is part of appalachian", "pln": ["(: cnet_partof_4c2445fc6a (PartOf taconic_mountain appalachian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "taconic mountain is part of connecticut", "pln": ["(: cnet_partof_50d6238db4 (PartOf taconic_mountain connecticut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "taconic mountain is part of massachusett", "pln": ["(: cnet_partof_50393b98ee (PartOf taconic_mountain massachusett) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "taconic mountain is part of new york", "pln": ["(: cnet_partof_7f4f9d497d (PartOf taconic_mountain new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "taconic mountain is part of vermont", "pln": ["(: cnet_partof_56fce7a9f7 (PartOf taconic_mountain vermont) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "taegu is part of south korea", "pln": ["(: cnet_partof_60383232d6 (PartOf taegu south_korea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tagus is part of portugal", "pln": ["(: cnet_partof_3b29093446 (PartOf tagus portugal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tagus is part of spain", "pln": ["(: cnet_partof_a8b154b42e (PartOf tagus spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tahiti is part of society island", "pln": ["(: cnet_partof_60880c5c3e (PartOf tahiti society_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "taichung is part of taiwan", "pln": ["(: cnet_partof_848cc6cee0 (PartOf taichung taiwan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "taif is part of saudi arabia", "pln": ["(: cnet_partof_f89cee929f (PartOf taif saudi_arabia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tail is part of cat", "pln": ["(: cnet_partof_a7e6eeb9f0 (PartOf tail cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tail is part of vertebrate", "pln": ["(: cnet_partof_4d8e9359a7 (PartOf tail vertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tail is part of coin", "pln": ["(: cnet_partof_9308fb735e (PartOf tail coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tail is part of fuselage", "pln": ["(: cnet_partof_3720297ba9 (PartOf tail fuselage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tail fin is part of fish", "pln": ["(: cnet_partof_1303276de2 (PartOf tail_fin fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tail fin is part of car", "pln": ["(: cnet_partof_ab25aac7f1 (PartOf tail_fin car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tailgate is part of beach wagon", "pln": ["(: cnet_partof_724e65d20e (PartOf tailgate beach_wagon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tailgate is part of truck", "pln": ["(: cnet_partof_3b060abefd (PartOf tailgate truck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "taillight is part of electrical system", "pln": ["(: cnet_partof_e2d79e1079 (PartOf taillight electrical_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tailpipe is part of exhaust", "pln": ["(: cnet_partof_5cf75619fa (PartOf tailpipe exhaust) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "taimyr peninsula is part of siberia", "pln": ["(: cnet_partof_4913654bff (PartOf taimyr_peninsula siberia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "taipei is part of taiwan", "pln": ["(: cnet_partof_a6a4b8a8ec (PartOf taipei taiwan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "taiwan is part of south china sea", "pln": ["(: cnet_partof_bb0eb0ce1d (PartOf taiwan south_china_sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "taiyuan is part of china", "pln": ["(: cnet_partof_97ea11f4c4 (PartOf taiyuan china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tajikistan is part of asia", "pln": ["(: cnet_partof_06c1a69c37 (PartOf tajikistan asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "takakkaw is part of british columbia", "pln": ["(: cnet_partof_1044fea4f1 (PartOf takakkaw british_columbia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "takedown is part of wrestling match", "pln": ["(: cnet_partof_deb3e3fd3d (PartOf takedown wrestling_match) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "taklamakan desert is part of china", "pln": ["(: cnet_partof_0bd3a33fd2 (PartOf taklamakan_desert china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tallahassee is part of florida", "pln": ["(: cnet_partof_d525518ea0 (PartOf tallahassee florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tallapoosa is part of alabama", "pln": ["(: cnet_partof_d259518bba (PartOf tallapoosa alabama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tallapoosa is part of georgia", "pln": ["(: cnet_partof_c8c97472ae (PartOf tallapoosa georgia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tallinn is part of estonia", "pln": ["(: cnet_partof_3e4aed13e5 (PartOf tallinn estonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "talon is part of bird s foot", "pln": ["(: cnet_partof_eecff78487 (PartOf talon bird_s_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tamale is part of ghana", "pln": ["(: cnet_partof_a3b9f98ca7 (PartOf tamale ghana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "tamarind is part of tamarind", "pln": ["(: cnet_partof_dea409f43b (PartOf tamarind tamarind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tambala is part of malawi kwacha", "pln": ["(: cnet_partof_c4644dca6e (PartOf tambala malawi_kwacha) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tamil eelam is part of sri lanka", "pln": ["(: cnet_partof_52c1227c9a (PartOf tamil_eelam sri_lanka) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tamil nadu is part of india", "pln": ["(: cnet_partof_fcdf88e19b (PartOf tamil_nadu india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tammany hall is part of democratic party", "pln": ["(: cnet_partof_a2b44d7650 (PartOf tammany_hall democratic_party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tammuz is part of jewish calendar", "pln": ["(: cnet_partof_3bc154cc84 (PartOf tammuz jewish_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tampa is part of florida", "pln": ["(: cnet_partof_357bcbbe0c (PartOf tampa florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "tampa bay is part of florida", "pln": ["(: cnet_partof_44f5f243b1 (PartOf tampa_bay florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "tampa bay is part of gulf of mexico", "pln": ["(: cnet_partof_a310d00561 (PartOf tampa_bay gulf_of_mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tampere is part of finland", "pln": ["(: cnet_partof_a51a4aeede (PartOf tampere finland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tampico is part of mexico", "pln": ["(: cnet_partof_f5045ee118 (PartOf tampico mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tanga is part of tanzania", "pln": ["(: cnet_partof_6720d08839 (PartOf tanga tanzania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tanganyika is part of tanzania", "pln": ["(: cnet_partof_1e1858df2f (PartOf tanganyika tanzania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tangelo is part of tangelo", "pln": ["(: cnet_partof_4ba9486b02 (PartOf tangelo tangelo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tangerine is part of tangerine", "pln": ["(: cnet_partof_cda2d25ad2 (PartOf tangerine tangerine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tangier is part of morocco", "pln": ["(: cnet_partof_9306325e6a (PartOf tangier morocco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tangshan is part of china", "pln": ["(: cnet_partof_39d1e39f88 (PartOf tangshan china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tannenberg is part of world war i", "pln": ["(: cnet_partof_efe4e50541 (PartOf tannenberg world_war_i) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tannoy is part of public address system", "pln": ["(: cnet_partof_61d97a03ac (PartOf tannoy public_address_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tanzania is part of africa", "pln": ["(: cnet_partof_59c9fcb9db (PartOf tanzania africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tanzania is part of east africa", "pln": ["(: cnet_partof_d4aa2af2ed (PartOf tanzania east_africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "tao is part of taoism", "pln": ["(: cnet_partof_bdb98096b3 (PartOf tao taoism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tao is part of new mexico", "pln": ["(: cnet_partof_87a8a744dc (PartOf tao new_mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tap is part of barrel", "pln": ["(: cnet_partof_20ebb92cdd (PartOf tap barrel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "tape deck is part of audio system", "pln": ["(: cnet_partof_5713af10d9 (PartOf tape_deck audio_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "tape drive is part of tape deck", "pln": ["(: cnet_partof_c36e60cee1 (PartOf tape_drive tape_deck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "tape drive is part of tape recorder", "pln": ["(: cnet_partof_40c7ce7eb9 (PartOf tape_drive tape_recorder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tappan zee bridge is part of new york", "pln": ["(: cnet_partof_7c5f02ca83 (PartOf tappan_zee_bridge new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tara is part of ireland", "pln": ["(: cnet_partof_91321fb156 (PartOf tara ireland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tarawa is part of world war ii", "pln": ["(: cnet_partof_87dd8ef4dd (PartOf tarawa world_war_ii) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tarawa is part of kiribati", "pln": ["(: cnet_partof_a87c91a20f (PartOf tarawa kiribati) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "taro is part of taro", "pln": ["(: cnet_partof_bd5307552d (PartOf taro taro) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "tarragon is part of tarragon", "pln": ["(: cnet_partof_477af3af2b (PartOf tarragon tarragon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "teens is part of adulthood", "pln": ["(: cnet_partof_9053c991a5 (PartOf teens adulthood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tarsal is part of tarsus", "pln": ["(: cnet_partof_6ee7373b84 (PartOf tarsal tarsus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tarsus is part of vertebrate foot", "pln": ["(: cnet_partof_7ba2b7cc99 (PartOf tarsus vertebrate_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tartary is part of asia", "pln": ["(: cnet_partof_33923b9449 (PartOf tartary asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tartary is part of europe", "pln": ["(: cnet_partof_119375856a (PartOf tartary europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tartu is part of estonia", "pln": ["(: cnet_partof_4340d1799f (PartOf tartu estonia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tashkent is part of uzbekistan", "pln": ["(: cnet_partof_864f987e42 (PartOf tashkent uzbekistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tasman sea is part of pacific", "pln": ["(: cnet_partof_11825d73e6 (PartOf tasman_sea pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tasmania is part of australia", "pln": ["(: cnet_partof_4d7774b078 (PartOf tasmania australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tasset is part of body armor", "pln": ["(: cnet_partof_df1de5ec75 (PartOf tasset body_armor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "taste is part of helping", "pln": ["(: cnet_partof_d04c7816f3 (PartOf taste helping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "taste cell is part of tastebud", "pln": ["(: cnet_partof_d0fd9ad281 (PartOf taste_cell tastebud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tastebud is part of epiglottis", "pln": ["(: cnet_partof_27d4c1baba (PartOf tastebud epiglottis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tastebud is part of palate", "pln": ["(: cnet_partof_ad566a4c62 (PartOf tastebud palate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tastebud is part of throat", "pln": ["(: cnet_partof_d20cf7904e (PartOf tastebud throat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tastebud is part of tongue", "pln": ["(: cnet_partof_1017cd32e8 (PartOf tastebud tongue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "taurus is part of zodiac", "pln": ["(: cnet_partof_59db407d0a (PartOf taurus zodiac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "taw is part of hebrew alphabet", "pln": ["(: cnet_partof_723b8762fb (PartOf taw hebrew_alphabet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "taxiway is part of airfield", "pln": ["(: cnet_partof_6ccee1ce30 (PartOf taxiway airfield) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tb is part of pb", "pln": ["(: cnet_partof_83a04303ec (PartOf tb pb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tbilisi is part of georgia", "pln": ["(: cnet_partof_2695092777 (PartOf tbilisi georgia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tea is part of tea", "pln": ["(: cnet_partof_f6f35fbec4 (PartOf tea tea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tear is part of lacrimal secretion", "pln": ["(: cnet_partof_78b60e79a1 (PartOf tear lacrimal_secretion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tebet is part of jewish calendar", "pln": ["(: cnet_partof_42cbddd7f1 (PartOf tebet jewish_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tebibit is part of pebibit", "pln": ["(: cnet_partof_645f139797 (PartOf tebibit pebibit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "technology administration is part of department of commerce", "pln": ["(: cnet_partof_118252177d (PartOf technology_administration department_of_commerce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tee is part of golf course", "pln": ["(: cnet_partof_a446c86bdb (PartOf tee golf_course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "teen is part of adulthood", "pln": ["(: cnet_partof_98af3ff2c3 (PartOf teen adulthood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tegucigalpa is part of hondura", "pln": ["(: cnet_partof_dacc812ba0 (PartOf tegucigalpa hondura) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "teheran is part of iran", "pln": ["(: cnet_partof_a5bbc1c57b (PartOf teheran iran) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tel aviv is part of israel", "pln": ["(: cnet_partof_af67b0dea3 (PartOf tel_aviv israel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "telemeter is part of space probe", "pln": ["(: cnet_partof_f92e37f991 (PartOf telemeter space_probe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "telencephalon is part of forebrain", "pln": ["(: cnet_partof_7633dab277 (PartOf telencephalon forebrain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "telephone is part of telephone system", "pln": ["(: cnet_partof_e2d87444c0 (PartOf telephone telephone_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "telephone receiver is part of telephone", "pln": ["(: cnet_partof_5768e4944e (PartOf telephone_receiver telephone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "television camera tube is part of television camera", "pln": ["(: cnet_partof_6263b35f57 (PartOf television_camera_tube television_camera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "television equipment is part of television", "pln": ["(: cnet_partof_c540029fa6 (PartOf television_equipment television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "television receiver is part of television", "pln": ["(: cnet_partof_d92a597ef7 (PartOf television_receiver television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "television station is part of communication system", "pln": ["(: cnet_partof_6fcd0d9fbe (PartOf television_station communication_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "television transmitter is part of television", "pln": ["(: cnet_partof_cfb4468aa1 (PartOf television_transmitter television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "telomere is part of chromosome", "pln": ["(: cnet_partof_cd1262f3d3 (PartOf telomere chromosome) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "telophase is part of meiosis", "pln": ["(: cnet_partof_063cd41060 (PartOf telophase meiosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "telophase is part of mitosis", "pln": ["(: cnet_partof_72f13c36de (PartOf telophase mitosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "telpher is part of telpherage", "pln": ["(: cnet_partof_9dc9b7a944 (PartOf telpher telpherage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "temple is part of head", "pln": ["(: cnet_partof_e8713f2060 (PartOf temple head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "temple of apollo is part of delphi", "pln": ["(: cnet_partof_bf3a394ea1 (PartOf temple_of_apollo delphi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "temple of jerusalem is part of jerusalem", "pln": ["(: cnet_partof_5f4d9d0ba6 (PartOf temple_of_jerusalem jerusalem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "temple orange is part of temple orange", "pln": ["(: cnet_partof_a92410aefa (PartOf temple_orange temple_orange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "temporal bone is part of cranium", "pln": ["(: cnet_partof_3290883519 (PartOf temporal_bone cranium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "temporal gyrus is part of temporal lobe", "pln": ["(: cnet_partof_d88a41ea44 (PartOf temporal_gyrus temporal_lobe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "temporal lobe is part of brain", "pln": ["(: cnet_partof_6cfe67c72c (PartOf temporal_lobe brain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "temporal lobe is part of cerebral cortex", "pln": ["(: cnet_partof_816eb2ef4e (PartOf temporal_lobe cerebral_cortex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "temuco is part of chile", "pln": ["(: cnet_partof_e2b3d94761 (PartOf temuco chile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tenderization is part of cooking", "pln": ["(: cnet_partof_16c5429e63 (PartOf tenderization cooking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tendon is part of muscular structure", "pln": ["(: cnet_partof_24d3eee79e (PartOf tendon muscular_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tenerife is part of atlantic", "pln": ["(: cnet_partof_6b9b3504f8 (PartOf tenerife atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tenerife is part of canary island", "pln": ["(: cnet_partof_34957aa028 (PartOf tenerife canary_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tennessee is part of south", "pln": ["(: cnet_partof_7e9e796b24 (PartOf tennessee south) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tennessee is part of united state", "pln": ["(: cnet_partof_0b42c567db (PartOf tennessee united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tennessee is part of kentucky", "pln": ["(: cnet_partof_7b6b77142b (PartOf tennessee kentucky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "tennessee is part of tennessee", "pln": ["(: cnet_partof_6521cddca0 (PartOf tennessee tennessee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "tenon is part of mortise joint", "pln": ["(: cnet_partof_93ad440d39 (PartOf tenon mortise_joint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tent fly is part of fly tent", "pln": ["(: cnet_partof_4ffc83b74e (PartOf tent_fly fly_tent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tenterhook is part of tenter", "pln": ["(: cnet_partof_500e6d766a (PartOf tenterhook tenter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tepic is part of mexico", "pln": ["(: cnet_partof_c2ffef2174 (PartOf tepic mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "terabit is part of petabit", "pln": ["(: cnet_partof_9b66d2e43d (PartOf terabit petabit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "terabyte is part of petabyte", "pln": ["(: cnet_partof_b03bca9ceb (PartOf terabyte petabyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "terengganu is part of malaysia", "pln": ["(: cnet_partof_d8bbe8fa93 (PartOf terengganu malaysia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tere is part of shoulder", "pln": ["(: cnet_partof_c82cfd854e (PartOf tere shoulder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "term is part of proposition", "pln": ["(: cnet_partof_e546a9d358 (PartOf term proposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "term is part of gestation", "pln": ["(: cnet_partof_d77ce53c4b (PartOf term gestation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "terminal is part of battery", "pln": ["(: cnet_partof_33b36a869f (PartOf terminal battery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "terminal is part of electrical device", "pln": ["(: cnet_partof_75bbed631e (PartOf terminal electrical_device) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "terminal is part of transportation system", "pln": ["(: cnet_partof_006e6a8b9a (PartOf terminal transportation_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "territorial is part of militia", "pln": ["(: cnet_partof_fa3fa008a6 (PartOf territorial militia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "territorial water is part of main", "pln": ["(: cnet_partof_a537b55d94 (PartOf territorial_water main) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tertiary is part of cenozoic", "pln": ["(: cnet_partof_c4c74b1010 (PartOf tertiary cenozoic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tessera is part of mosaic", "pln": ["(: cnet_partof_bb4401f858 (PartOf tessera mosaic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "testa is part of seed", "pln": ["(: cnet_partof_ba8d3503fe (PartOf testa seed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "testament is part of bible", "pln": ["(: cnet_partof_3de4630849 (PartOf testament bible) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "testicular artery is part of testis", "pln": ["(: cnet_partof_d2518845ba (PartOf testicular_artery testis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "testicular vein is part of testis", "pln": ["(: cnet_partof_68e9961eaa (PartOf testicular_vein testis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "testis is part of male genitalia", "pln": ["(: cnet_partof_da13c11e97 (PartOf testis male_genitalia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "testis is part of male reproductive system", "pln": ["(: cnet_partof_d0944c11a7 (PartOf testis male_reproductive_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tet is part of january", "pln": ["(: cnet_partof_47b7890b83 (PartOf tet january) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "teton range is part of wyoming", "pln": ["(: cnet_partof_41507b5b84 (PartOf teton_range wyoming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tetri is part of lari", "pln": ["(: cnet_partof_010b1e8f13 (PartOf tetri lari) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "texarkana is part of arkansa", "pln": ["(: cnet_partof_8a88f52d4b (PartOf texarkana arkansa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "texarkana is part of texa", "pln": ["(: cnet_partof_d294c857c4 (PartOf texarkana texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "texa is part of united state of america", "pln": ["(: cnet_partof_fd838ba161 (PartOf texa united_state_of_america) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "texa is part of gulf state", "pln": ["(: cnet_partof_6b1e4ebab1 (PartOf texa gulf_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "texa is part of southwest", "pln": ["(: cnet_partof_b12f81f2c9 (PartOf texa southwest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "texa is part of united state", "pln": ["(: cnet_partof_42ddad1038 (PartOf texa united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "texa independence day is part of march", "pln": ["(: cnet_partof_e0c8a1eac4 (PartOf texa_independence_day march) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "text is part of bible", "pln": ["(: cnet_partof_25455bac8e (PartOf text bible) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "text is part of publication", "pln": ["(: cnet_partof_b026604e40 (PartOf text publication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thailand is part of indochina", "pln": ["(: cnet_partof_fb19106533 (PartOf thailand indochina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thailand is part of malay peninsula", "pln": ["(: cnet_partof_88c694d9f8 (PartOf thailand malay_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "thalamus is part of diencephalon", "pln": ["(: cnet_partof_a748a08b44 (PartOf thalamus diencephalon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thame is part of england", "pln": ["(: cnet_partof_faa7d5492d (PartOf thame england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thanksgiving is part of november", "pln": ["(: cnet_partof_b0f74b263f (PartOf thanksgiving november) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "theater curtain is part of theater stage", "pln": ["(: cnet_partof_5728b6e519 (PartOf theater_curtain theater_stage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "theater stage is part of theater", "pln": ["(: cnet_partof_13e9d16c0d (PartOf theater_stage theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thebe is part of pula", "pln": ["(: cnet_partof_dfa97d91fd (PartOf thebe pula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thebe is part of boeotia", "pln": ["(: cnet_partof_bcf2fe5b62 (PartOf thebe boeotia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thebe is part of egypt", "pln": ["(: cnet_partof_d1ece5327d (PartOf thebe egypt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thenar is part of palm", "pln": ["(: cnet_partof_4074441e39 (PartOf thenar palm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "theodore roosevelt memorial national park is part of north dakota", "pln": ["(: cnet_partof_1b9265ede9 (PartOf theodore_roosevelt_memorial_national_park north_dakota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thermidor is part of revolutionary calendar", "pln": ["(: cnet_partof_366d5db1a5 (PartOf thermidor revolutionary_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thermosphere is part of atmosphere", "pln": ["(: cnet_partof_aa11f23476 (PartOf thermosphere atmosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thermostat is part of cooling system", "pln": ["(: cnet_partof_ead2a4495b (PartOf thermostat cooling_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thermostat is part of incubator", "pln": ["(: cnet_partof_5b375b8a91 (PartOf thermostat incubator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "thessalia is part of greece", "pln": ["(: cnet_partof_8f9a6d1761 (PartOf thessalia greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thessaloniki is part of greece", "pln": ["(: cnet_partof_a75a38dac9 (PartOf thessaloniki greece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "theurgy is part of supernatural", "pln": ["(: cnet_partof_c78cc14748 (PartOf theurgy supernatural) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thick skin is part of pachyderm", "pln": ["(: cnet_partof_53c93cc64b (PartOf thick_skin pachyderm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thigh is part of leg", "pln": ["(: cnet_partof_0703a16dd4 (PartOf thigh leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "third epistel of john is part of new testament", "pln": ["(: cnet_partof_f2a6305407 (PartOf third_epistel_of_john new_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "third eye is part of diencephalon", "pln": ["(: cnet_partof_0099484c51 (PartOf third_eye diencephalon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "third gear is part of car", "pln": ["(: cnet_partof_94755b05e3 (PartOf third_gear car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thirty is part of adulthood", "pln": ["(: cnet_partof_7c660e61e2 (PartOf thirty adulthood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thoracic aorta is part of thorax", "pln": ["(: cnet_partof_1254986224 (PartOf thoracic_aorta thorax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thoracic duct is part of lymphatic system", "pln": ["(: cnet_partof_ca3c8cc54c (PartOf thoracic_duct lymphatic_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thoracic vein is part of thorax", "pln": ["(: cnet_partof_142f4a10c1 (PartOf thoracic_vein thorax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thoracic vertebra is part of back", "pln": ["(: cnet_partof_7ea0215b02 (PartOf thoracic_vertebra back) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thorax is part of insect", "pln": ["(: cnet_partof_318ac33746 (PartOf thorax insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thorax is part of arthropod", "pln": ["(: cnet_partof_fa2a75f905 (PartOf thorax arthropod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "thorax is part of torso", "pln": ["(: cnet_partof_637ae2308e (PartOf thorax torso) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thorax is part of vertebrate", "pln": ["(: cnet_partof_95f12376a1 (PartOf thorax vertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thorshavn is part of faroe island", "pln": ["(: cnet_partof_454cf31574 (PartOf thorshavn faroe_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thoughtfulness is part of character", "pln": ["(: cnet_partof_a5cf1d115d (PartOf thoughtfulness character) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thrace is part of balkan peninsula", "pln": ["(: cnet_partof_cf9060ab32 (PartOf thrace balkan_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thrash is part of treading water", "pln": ["(: cnet_partof_3bae512155 (PartOf thrash treading_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "throat is part of shoe", "pln": ["(: cnet_partof_4e1926c9c2 (PartOf throat shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "throat is part of alimentary canal", "pln": ["(: cnet_partof_c455c9deec (PartOf throat alimentary_canal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "throat is part of neck", "pln": ["(: cnet_partof_a9ef3b4a77 (PartOf throat neck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "throat is part of upper respiratory tract", "pln": ["(: cnet_partof_5fecdd336f (PartOf throat upper_respiratory_tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thrombus is part of thrombosis", "pln": ["(: cnet_partof_9f9ac69fdb (PartOf thrombus thrombosis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thule is part of greenland", "pln": ["(: cnet_partof_8f5d1e9e8d (PartOf thule greenland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thumb is part of glove", "pln": ["(: cnet_partof_bb33c12914 (PartOf thumb glove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thumbhole is part of bowling ball", "pln": ["(: cnet_partof_c064eec144 (PartOf thumbhole bowling_ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thumbhole is part of woodwind", "pln": ["(: cnet_partof_691da626cf (PartOf thumbhole woodwind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thumbnail is part of thumb", "pln": ["(: cnet_partof_0b12a0bbeb (PartOf thumbnail thumb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thunder bay is part of ontario", "pln": ["(: cnet_partof_d23407c685 (PartOf thunder_bay ontario) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thuringia is part of germany", "pln": ["(: cnet_partof_c857060187 (PartOf thuringia germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thwart is part of dinghy", "pln": ["(: cnet_partof_435833e7f9 (PartOf thwart dinghy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thyme is part of common thyme", "pln": ["(: cnet_partof_9ca3576fdb (PartOf thyme common_thyme) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thymus gland is part of immune system", "pln": ["(: cnet_partof_28408ccd3c (PartOf thymus_gland immune_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thymus gland is part of neck", "pln": ["(: cnet_partof_a83fc2617a (PartOf thymus_gland neck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "thyroid cartilage is part of larynx", "pln": ["(: cnet_partof_fe01e6c212 (PartOf thyroid_cartilage larynx) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tianjin is part of china", "pln": ["(: cnet_partof_b96b2f47cc (PartOf tianjin china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tibet is part of asia", "pln": ["(: cnet_partof_c6be9523d7 (PartOf tibet asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "tibia is part of leg", "pln": ["(: cnet_partof_2adab4e9a3 (PartOf tibia leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tibial vein is part of leg", "pln": ["(: cnet_partof_2deb98aad6 (PartOf tibial_vein leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tibialis is part of leg", "pln": ["(: cnet_partof_8572c35247 (PartOf tibialis leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ticino is part of switzerland", "pln": ["(: cnet_partof_e5d0767ad3 (PartOf ticino switzerland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tidal flow is part of tide", "pln": ["(: cnet_partof_5dc116ca7f (PartOf tidal_flow tide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tidal river is part of tidewater", "pln": ["(: cnet_partof_fdf5b4bf84 (PartOf tidal_river tidewater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tidewater is part of south", "pln": ["(: cnet_partof_6bb965862a (PartOf tidewater south) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tie is part of railroad track", "pln": ["(: cnet_partof_2ec1ae98d6 (PartOf tie railroad_track) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tie rod is part of steering linkage", "pln": ["(: cnet_partof_14e74593d0 (PartOf tie_rod steering_linkage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tien shan is part of china", "pln": ["(: cnet_partof_16e53b7188 (PartOf tien_shan china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tien shan is part of india", "pln": ["(: cnet_partof_9e9a9cde04 (PartOf tien_shan india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tien shan is part of russia", "pln": ["(: cnet_partof_ca977a5dca (PartOf tien_shan russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tiered seat is part of amphitheater", "pln": ["(: cnet_partof_b2b226fd60 (PartOf tiered_seat amphitheater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tiered seat is part of stadium", "pln": ["(: cnet_partof_4faaabc902 (PartOf tiered_seat stadium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tiered seat is part of theater", "pln": ["(: cnet_partof_b2420a1085 (PartOf tiered_seat theater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tierra del fuego is part of argentina", "pln": ["(: cnet_partof_71aa76cdd2 (PartOf tierra_del_fuego argentina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tierra del fuego is part of chile", "pln": ["(: cnet_partof_796823f2ac (PartOf tierra_del_fuego chile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tigris is part of iraq", "pln": ["(: cnet_partof_a7b7b34dbb (PartOf tigris iraq) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tigris is part of syria", "pln": ["(: cnet_partof_dee407d206 (PartOf tigris syria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tigris is part of turkey", "pln": ["(: cnet_partof_ffb1f5c34c (PartOf tigris turkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "tijuana is part of lower california", "pln": ["(: cnet_partof_ed7b069e34 (PartOf tijuana lower_california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tile is part of tile roof", "pln": ["(: cnet_partof_93e02e0239 (PartOf tile tile_roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tiller is part of rudder", "pln": ["(: cnet_partof_d4fe5518ba (PartOf tiller rudder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "tilling is part of farming", "pln": ["(: cnet_partof_a97cdcb17d (PartOf tilling farming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "timbuktu is part of mali", "pln": ["(: cnet_partof_4f805d6913 (PartOf timbuktu mali) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "time ball is part of timepiece", "pln": ["(: cnet_partof_84e2f0c7c4 (PartOf time_ball timepiece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "time of life is part of life", "pln": ["(: cnet_partof_0e7a32592a (PartOf time_of_life life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "time out is part of athletic game", "pln": ["(: cnet_partof_702ae1ef99 (PartOf time_out athletic_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "time square is part of manhattan", "pln": ["(: cnet_partof_aa2f87b9ab (PartOf time_square manhattan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "timgad is part of algeria", "pln": ["(: cnet_partof_03be3da8c1 (PartOf timgad algeria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "timimoun is part of algeria", "pln": ["(: cnet_partof_56bdb62bcc (PartOf timimoun algeria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "timor is part of indonesia", "pln": ["(: cnet_partof_56e1e5a0c1 (PartOf timor indonesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "timor sea is part of indian ocean", "pln": ["(: cnet_partof_e5f530301e (PartOf timor_sea indian_ocean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "timothy is part of timothy", "pln": ["(: cnet_partof_d0005b7bf6 (PartOf timothy timothy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tine is part of fork", "pln": ["(: cnet_partof_34f10eb724 (PartOf tine fork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tine is part of pitchfork", "pln": ["(: cnet_partof_9e517aa5e0 (PartOf tine pitchfork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tip off is part of basketball", "pln": ["(: cnet_partof_55ecb9e8f8 (PartOf tip_off basketball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "tiptoe is part of toe", "pln": ["(: cnet_partof_50fa177e24 (PartOf tiptoe toe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tirana is part of albania", "pln": ["(: cnet_partof_db956cf811 (PartOf tirana albania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tire is part of car", "pln": ["(: cnet_partof_d90ca34911 (PartOf tire car) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tirich mir is part of hindu kush", "pln": ["(: cnet_partof_2e33bdea3c (PartOf tirich_mir hindu_kush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tirich mir is part of pakistan", "pln": ["(: cnet_partof_776379efce (PartOf tirich_mir pakistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tishri is part of jewish calendar", "pln": ["(: cnet_partof_fe8b912957 (PartOf tishri jewish_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tivoli is part of italy", "pln": ["(: cnet_partof_9bb7abf379 (PartOf tivoli italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tobago is part of trinidad and tobago", "pln": ["(: cnet_partof_ff9def8aef (PartOf tobago trinidad_and_tobago) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tobago is part of west indy", "pln": ["(: cnet_partof_4609f1b096 (PartOf tobago west_indy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tobit is part of apocrypha", "pln": ["(: cnet_partof_0e8fa9038c (PartOf tobit apocrypha) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tocantin is part of brazil", "pln": ["(: cnet_partof_c7a6129e92 (PartOf tocantin brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "toe is part of foot", "pln": ["(: cnet_partof_c5110f0b13 (PartOf toe foot) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "toe is part of footwear", "pln": ["(: cnet_partof_21f8c4f3e3 (PartOf toe footwear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "toe is part of hoof", "pln": ["(: cnet_partof_8866a0346e (PartOf toe hoof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "toe is part of golf club head", "pln": ["(: cnet_partof_b3e58f8bb4 (PartOf toe golf_club_head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "toe box is part of boot", "pln": ["(: cnet_partof_26cfc3c453 (PartOf toe_box boot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "toe box is part of shoe", "pln": ["(: cnet_partof_4b7e1557f1 (PartOf toe_box shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "toea is part of kina", "pln": ["(: cnet_partof_bb7fdecfb5 (PartOf toea kina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "toecap is part of boot", "pln": ["(: cnet_partof_de8d1079aa (PartOf toecap boot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "toecap is part of shoe", "pln": ["(: cnet_partof_18dad01ac0 (PartOf toecap shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "toenail is part of toe", "pln": ["(: cnet_partof_ed298c3bbb (PartOf toenail toe) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "togo is part of africa", "pln": ["(: cnet_partof_f7daefc6c9 (PartOf togo africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "toilet is part of bathroom", "pln": ["(: cnet_partof_f24476200b (PartOf toilet bathroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "toilet is part of toilet", "pln": ["(: cnet_partof_8ff3b2bbe4 (PartOf toilet toilet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "toilet bowl is part of toilet", "pln": ["(: cnet_partof_a64b98c521 (PartOf toilet_bowl toilet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "toilet seat is part of toilet", "pln": ["(: cnet_partof_d6f2ae69a2 (PartOf toilet_seat toilet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "tokyo is part of honshu", "pln": ["(: cnet_partof_f058896852 (PartOf tokyo honshu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tokyo is part of japan", "pln": ["(: cnet_partof_debc605590 (PartOf tokyo japan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "toledo is part of ohio", "pln": ["(: cnet_partof_61993ef84f (PartOf toledo ohio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "toledo is part of spain", "pln": ["(: cnet_partof_6be82e2323 (PartOf toledo spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tollbooth is part of toll plaza", "pln": ["(: cnet_partof_2187777899 (PartOf tollbooth toll_plaza) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tomalley is part of lobster", "pln": ["(: cnet_partof_3c67671b6e (PartOf tomalley lobster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "tomatillo is part of tomatillo", "pln": ["(: cnet_partof_1a804c3017 (PartOf tomatillo tomatillo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tomato is part of tomato", "pln": ["(: cnet_partof_adc53069f4 (PartOf tomato tomato) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tombigbee is part of alabama", "pln": ["(: cnet_partof_969ab0e0a9 (PartOf tombigbee alabama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tombigbee is part of mississippi", "pln": ["(: cnet_partof_bdc32378b6 (PartOf tombigbee mississippi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tone arm is part of record player", "pln": ["(: cnet_partof_5ef97e00ca (PartOf tone_arm record_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tone system is part of tone language", "pln": ["(: cnet_partof_5a1a9a0f46 (PartOf tone_system tone_language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tonga is part of polynesia", "pln": ["(: cnet_partof_20033c27af (PartOf tonga polynesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tongue is part of mouth", "pln": ["(: cnet_partof_9fdf2ba4bb (PartOf tongue mouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "tongue is part of boot", "pln": ["(: cnet_partof_30c8ee9a4a (PartOf tongue boot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tongue is part of shoe", "pln": ["(: cnet_partof_204c6db7a9 (PartOf tongue shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tongue is part of throat", "pln": ["(: cnet_partof_020f6ae125 (PartOf tongue throat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tonsil is part of nasopharynx", "pln": ["(: cnet_partof_0e2d49f526 (PartOf tonsil nasopharynx) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tooth is part of mouth", "pln": ["(: cnet_partof_978da7229d (PartOf tooth mouth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tooth is part of comb", "pln": ["(: cnet_partof_e54d83a33e (PartOf tooth comb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tooth is part of gear", "pln": ["(: cnet_partof_bff199520c (PartOf tooth gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tooth is part of power saw", "pln": ["(: cnet_partof_3567380225 (PartOf tooth power_saw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "tooth is part of saw", "pln": ["(: cnet_partof_eda39f4844 (PartOf tooth saw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tooth socket is part of alveolar ridge", "pln": ["(: cnet_partof_ab5f6460b2 (PartOf tooth_socket alveolar_ridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "top is part of ship", "pln": ["(: cnet_partof_d16878df5f (PartOf top ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "top is part of inning", "pln": ["(: cnet_partof_dfcf9ebc32 (PartOf top inning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "topeka is part of kansas", "pln": ["(: cnet_partof_08556aa5ab (PartOf topeka kansas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "top billing is part of show bill", "pln": ["(: cnet_partof_9666ba50dd (PartOf top_billing show_bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "top of line is part of line", "pln": ["(: cnet_partof_3188e6cbab (PartOf top_of_line line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "topeka is part of kansa", "pln": ["(: cnet_partof_703368e715 (PartOf topeka kansa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "topping is part of dish", "pln": ["(: cnet_partof_e18b0cfd34 (PartOf topping dish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "topside is part of ship", "pln": ["(: cnet_partof_ef018f2899 (PartOf topside ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "torah is part of old testament", "pln": ["(: cnet_partof_98d3fc56f9 (PartOf torah old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "torah is part of tanakh", "pln": ["(: cnet_partof_a96fa91b8e (PartOf torah tanakh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "toronto is part of ontario", "pln": ["(: cnet_partof_0acde1541c (PartOf toronto ontario) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "torreon is part of mexico", "pln": ["(: cnet_partof_f2dbf4ea30 (PartOf torreon mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "torso is part of body", "pln": ["(: cnet_partof_49c584412d (PartOf torso body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tortilla is part of wrap", "pln": ["(: cnet_partof_6d40e0efd8 (PartOf tortilla wrap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "touch is part of somesthesia", "pln": ["(: cnet_partof_aa60386871 (PartOf touch somesthesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "toulon is part of france", "pln": ["(: cnet_partof_e14005c911 (PartOf toulon france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "toulouse is part of france", "pln": ["(: cnet_partof_e741cf340f (PartOf toulouse france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tour is part of france", "pln": ["(: cnet_partof_71d9daff9f (PartOf tour france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tower of babel is part of babylon", "pln": ["(: cnet_partof_6700f4bb6b (PartOf tower_of_babel babylon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tower of london is part of london", "pln": ["(: cnet_partof_8ee64924ae (PartOf tower_of_london london) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "toyohashi is part of honshu", "pln": ["(: cnet_partof_cc2e61970a (PartOf toyohashi honshu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "toyohashi is part of japan", "pln": ["(: cnet_partof_8333f3f3af (PartOf toyohashi japan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "toyonaki is part of honshu", "pln": ["(: cnet_partof_28112aef4c (PartOf toyonaki honshu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "toyonaki is part of japan", "pln": ["(: cnet_partof_fdb49fdc3b (PartOf toyonaki japan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "toyota is part of honshu", "pln": ["(: cnet_partof_5341ba1583 (PartOf toyota honshu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "toyota is part of japan", "pln": ["(: cnet_partof_ef02857e7f (PartOf toyota japan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trace is part of harness", "pln": ["(: cnet_partof_b99fb6d82f (PartOf trace harness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trachea is part of neck", "pln": ["(: cnet_partof_ba34c912d9 (PartOf trachea neck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trachea is part of respiratory system", "pln": ["(: cnet_partof_29cdb73d74 (PartOf trachea respiratory_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trachea is part of upper respiratory tract", "pln": ["(: cnet_partof_29572b7cc9 (PartOf trachea upper_respiratory_tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tracheid is part of xylem", "pln": ["(: cnet_partof_8ae90b5d04 (PartOf tracheid xylem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tracing routine is part of trace program", "pln": ["(: cnet_partof_34c41d3ad8 (PartOf tracing_routine trace_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "track is part of track meet", "pln": ["(: cnet_partof_1c0743ee92 (PartOf track track_meet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "track is part of railroad track", "pln": ["(: cnet_partof_69d47d2be2 (PartOf track railroad_track) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "track is part of tracked vehicle", "pln": ["(: cnet_partof_da8a7f37c8 (PartOf track tracked_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "track is part of tramline", "pln": ["(: cnet_partof_079dba5793 (PartOf track tramline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "track and field is part of meet", "pln": ["(: cnet_partof_85e845cbe8 (PartOf track_and_field meet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "track event is part of track meet", "pln": ["(: cnet_partof_78093d8334 (PartOf track_event track_meet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tract house is part of tract housing", "pln": ["(: cnet_partof_fc95843fd7 (PartOf tract_house tract_housing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trafalgar is part of napoleonic war", "pln": ["(: cnet_partof_b9cc79d61d (PartOf trafalgar napoleonic_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trafalgar square is part of london", "pln": ["(: cnet_partof_abe401ddf5 (PartOf trafalgar_square london) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "traffic circle is part of road", "pln": ["(: cnet_partof_ceca3398df (PartOf traffic_circle road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "traffic island is part of roadbed", "pln": ["(: cnet_partof_af84d68a0f (PartOf traffic_island roadbed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "traffic lane is part of highway", "pln": ["(: cnet_partof_e69f9a6a2a (PartOf traffic_lane highway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tragus is part of auricle", "pln": ["(: cnet_partof_338140b512 (PartOf tragus auricle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "trailer is part of trailer truck", "pln": ["(: cnet_partof_5aabb28932 (PartOf trailer trailer_truck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trailing edge is part of airfoil", "pln": ["(: cnet_partof_2e9c4fe423 (PartOf trailing_edge airfoil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "train is part of gown", "pln": ["(: cnet_partof_b270505ae6 (PartOf train gown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "training table is part of mess", "pln": ["(: cnet_partof_a4ad47c55f (PartOf training_table mess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trait is part of personality", "pln": ["(: cnet_partof_08cbb2a0c1 (PartOf trait personality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "transcaucasia is part of caucasia", "pln": ["(: cnet_partof_14dfefc1f7 (PartOf transcaucasia caucasia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "transept is part of church", "pln": ["(: cnet_partof_dba7ecff73 (PartOf transept church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "transit line is part of public transit", "pln": ["(: cnet_partof_6f2aaea2bf (PartOf transit_line public_transit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "transmission is part of drive line", "pln": ["(: cnet_partof_2328990645 (PartOf transmission drive_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "transmission control protocol is part of transmission control protocol internet protocol", "pln": ["(: cnet_partof_1ae9968cb8 (PartOf transmission_control_protocol transmission_control_protocol_internet_protocol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "transmission shaft is part of gearbox", "pln": ["(: cnet_partof_03da551f7e (PartOf transmission_shaft gearbox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "transport system is part of plant", "pln": ["(: cnet_partof_efe0aca9d8 (PartOf transport_system plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "transportation is part of commerce", "pln": ["(: cnet_partof_17f921656d (PartOf transportation commerce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "transportation safety administration is part of department of transportation", "pln": ["(: cnet_partof_1a78b3f84b (PartOf transportation_safety_administration department_of_transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "transportation system is part of infrastructure", "pln": ["(: cnet_partof_8640c1b89a (PartOf transportation_system infrastructure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "transvaal is part of south africa", "pln": ["(: cnet_partof_2f068f7e4a (PartOf transvaal south_africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "transylvanian alps is part of carpathians", "pln": ["(: cnet_partof_1b1fff1630 (PartOf transylvanian_alps carpathians) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "transverse colon is part of large intestine", "pln": ["(: cnet_partof_f673a99a25 (PartOf transverse_colon large_intestine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "transverse process is part of vertebra", "pln": ["(: cnet_partof_14176d3728 (PartOf transverse_process vertebra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "transylvania is part of romania", "pln": ["(: cnet_partof_b7318fb9d4 (PartOf transylvania romania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "transylvanian alp is part of carpathian", "pln": ["(: cnet_partof_9e1ac32ea1 (PartOf transylvanian_alp carpathian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "transylvanian alp is part of romania", "pln": ["(: cnet_partof_4fef5ce3b8 (PartOf transylvanian_alp romania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "traversal is part of skiing", "pln": ["(: cnet_partof_bf8e8dd4e2 (PartOf traversal skiing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "traverse city is part of michigan", "pln": ["(: cnet_partof_698a0c8fde (PartOf traverse_city michigan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "tread is part of pneumatic tire", "pln": ["(: cnet_partof_504f3127f2 (PartOf tread pneumatic_tire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tread is part of step", "pln": ["(: cnet_partof_a9cca1110e (PartOf tread step) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tree is part of forest", "pln": ["(: cnet_partof_1886b86957 (PartOf tree forest) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tree is part of forrest", "pln": ["(: cnet_partof_d5cfc42388 (PartOf tree forrest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tremor is part of paralysis agitan", "pln": ["(: cnet_partof_a509bce223 (PartOf tremor paralysis_agitan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trench is part of entrenchment", "pln": ["(: cnet_partof_5dd821159b (PartOf trench entrenchment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trent is part of england", "pln": ["(: cnet_partof_f120d62fe2 (PartOf trent england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trentino alto adige is part of italy", "pln": ["(: cnet_partof_5a55a543cf (PartOf trentino_alto_adige italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trento is part of trentino alto adige", "pln": ["(: cnet_partof_5f3364b01e (PartOf trento trentino_alto_adige) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trenton is part of new jersey", "pln": ["(: cnet_partof_ef92f20c95 (PartOf trenton new_jersey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trestle is part of bridge", "pln": ["(: cnet_partof_f4cd4981de (PartOf trestle bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trestle is part of trestle table", "pln": ["(: cnet_partof_89637dcedf (PartOf trestle trestle_table) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "triassic is part of mesozoic", "pln": ["(: cnet_partof_22c556f75f (PartOf triassic mesozoic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tricep brachii is part of arm", "pln": ["(: cnet_partof_374aaef8b6 (PartOf tricep_brachii arm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trichion is part of brow", "pln": ["(: cnet_partof_4078b4891e (PartOf trichion brow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trigger is part of gun", "pln": ["(: cnet_partof_a50a72afab (PartOf trigger gun) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trimester is part of academic year", "pln": ["(: cnet_partof_6d07f6ba54 (PartOf trimester academic_year) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trimester is part of gestation", "pln": ["(: cnet_partof_295983da2a (PartOf trimester gestation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trimester is part of school year", "pln": ["(: cnet_partof_b34dca319c (PartOf trimester school_year) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trinidad is part of trinidad and tobago", "pln": ["(: cnet_partof_01ce20641e (PartOf trinidad trinidad_and_tobago) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trinidad is part of west indy", "pln": ["(: cnet_partof_40695bb85b (PartOf trinidad west_indy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trinidad and tobago is part of caribbean", "pln": ["(: cnet_partof_491b3c7dad (PartOf trinidad_and_tobago caribbean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trinity river is part of texa", "pln": ["(: cnet_partof_6e16c13344 (PartOf trinity_river texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "triple frontier is part of argentina", "pln": ["(: cnet_partof_04b818dca9 (PartOf triple_frontier argentina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "triple frontier is part of brazil", "pln": ["(: cnet_partof_887fa0079f (PartOf triple_frontier brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "triple frontier is part of paraguay", "pln": ["(: cnet_partof_0c2fe5f26e (PartOf triple_frontier paraguay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tripoli is part of lebanon", "pln": ["(: cnet_partof_e6e144884c (PartOf tripoli lebanon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tripoli is part of libya", "pln": ["(: cnet_partof_5952329819 (PartOf tripoli libya) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trochanter is part of femur", "pln": ["(: cnet_partof_6ff8195612 (PartOf trochanter femur) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "trondheim is part of norway", "pln": ["(: cnet_partof_05d205a7bf (PartOf trondheim norway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trondheim fjord is part of norway", "pln": ["(: cnet_partof_2def19f24e (PartOf trondheim_fjord norway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trophoblast is part of blastosphere", "pln": ["(: cnet_partof_645a8fa205 (PartOf trophoblast blastosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tropopause is part of troposphere", "pln": ["(: cnet_partof_a01d089c84 (PartOf tropopause troposphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "troposphere is part of atmosphere", "pln": ["(: cnet_partof_28d7ea1331 (PartOf troposphere atmosphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "trotter is part of hog", "pln": ["(: cnet_partof_8e4ffbf998 (PartOf trotter hog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trotter is part of sheep", "pln": ["(: cnet_partof_e252641162 (PartOf trotter sheep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trouser is part of pair of trouser", "pln": ["(: cnet_partof_01f6a83641 (PartOf trouser pair_of_trouser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trouser cuff is part of pair of trouser", "pln": ["(: cnet_partof_ae5d013dbc (PartOf trouser_cuff pair_of_trouser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "troy is part of asia minor", "pln": ["(: cnet_partof_888a982e8f (PartOf troy asia_minor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "troy unit is part of troy", "pln": ["(: cnet_partof_40ebffde86 (PartOf troy_unit troy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trunk is part of automobile", "pln": ["(: cnet_partof_f6fd1697d7 (PartOf trunk automobile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trunk is part of tree", "pln": ["(: cnet_partof_c5c873b8c0 (PartOf trunk tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "trunk lid is part of trunk", "pln": ["(: cnet_partof_477e75fe69 (PartOf trunk_lid trunk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "truss is part of truss bridge", "pln": ["(: cnet_partof_5add767db8 (PartOf truss truss_bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tsushima is part of russo japanese war", "pln": ["(: cnet_partof_0becd8f67b (PartOf tsushima russo_japanese_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tuamotu archipelago is part of french polynesia", "pln": ["(: cnet_partof_2aae69eac9 (PartOf tuamotu_archipelago french_polynesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tube is part of circuit", "pln": ["(: cnet_partof_c897da3d20 (PartOf tube circuit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tube foot is part of echinoderm", "pln": ["(: cnet_partof_fb0d5a16f8 (PartOf tube_foot echinoderm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tubuai island is part of french polynesia", "pln": ["(: cnet_partof_d9e33e4f3d (PartOf tubuai_island french_polynesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tucson is part of arizona", "pln": ["(: cnet_partof_64a777f45d (PartOf tucson arizona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tugela is part of natal", "pln": ["(: cnet_partof_e87ffc3daf (PartOf tugela natal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tuilery is part of paris", "pln": ["(: cnet_partof_38b4da37ae (PartOf tuilery paris) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tuille is part of body armor", "pln": ["(: cnet_partof_659251ed49 (PartOf tuille body_armor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tulsa is part of oklahoma", "pln": ["(: cnet_partof_ba6d5568f4 (PartOf tulsa oklahoma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tumbler is part of lock", "pln": ["(: cnet_partof_be06f17ca5 (PartOf tumbler lock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tuna is part of tuna", "pln": ["(: cnet_partof_a452d30874 (PartOf tuna tuna) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "tuner is part of tv", "pln": ["(: cnet_partof_aa0b94fb50 (PartOf tuner tv) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tunis is part of tunisia", "pln": ["(: cnet_partof_a57e35363d (PartOf tunis tunisia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tunisia is part of maghreb", "pln": ["(: cnet_partof_4ea62c092a (PartOf tunisia maghreb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tunisian dirham is part of tunisian dinar", "pln": ["(: cnet_partof_195899d75f (PartOf tunisian_dirham tunisian_dinar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "tupelo is part of mississippi", "pln": ["(: cnet_partof_a213b5fc52 (PartOf tupelo mississippi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tupungatito is part of chile", "pln": ["(: cnet_partof_9d6a913ec1 (PartOf tupungatito chile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tupungato is part of ande", "pln": ["(: cnet_partof_b9c38148d1 (PartOf tupungato ande) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tupungato is part of argentina", "pln": ["(: cnet_partof_b8a542aa07 (PartOf tupungato argentina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tupungato is part of chile", "pln": ["(: cnet_partof_04532f64d3 (PartOf tupungato chile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "turban squash is part of turban squash", "pln": ["(: cnet_partof_dcc80abc4d (PartOf turban_squash turban_squash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "turbinate bone is part of nose", "pln": ["(: cnet_partof_add331018e (PartOf turbinate_bone nose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "turbogenerator is part of power station", "pln": ["(: cnet_partof_b871d57f22 (PartOf turbogenerator power_station) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "turbojet is part of propjet", "pln": ["(: cnet_partof_7928b6da7e (PartOf turbojet propjet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "turbojet is part of turbojet", "pln": ["(: cnet_partof_01acd69330 (PartOf turbojet turbojet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "turbot is part of turbot", "pln": ["(: cnet_partof_212dbc1b1a (PartOf turbot turbot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "turin is part of piedmont", "pln": ["(: cnet_partof_64b750e77a (PartOf turin piedmont) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "turkestan desert is part of turkmenistan", "pln": ["(: cnet_partof_c1d3f07c15 (PartOf turkestan_desert turkmenistan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "turkey is part of asia minor", "pln": ["(: cnet_partof_4b523c0e24 (PartOf turkey asia_minor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "turkey is part of balkan peninsula", "pln": ["(: cnet_partof_401901578d (PartOf turkey balkan_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "turkey is part of middle east", "pln": ["(: cnet_partof_77bfd7b53a (PartOf turkey middle_east) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "turkey wing is part of turkey", "pln": ["(: cnet_partof_4aa40698d8 (PartOf turkey_wing turkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "turkistan is part of asia", "pln": ["(: cnet_partof_d948b148e8 (PartOf turkistan asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "turkmenistan is part of asia", "pln": ["(: cnet_partof_d11c4b52c7 (PartOf turkmenistan asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "turmeric is part of turmeric", "pln": ["(: cnet_partof_11674cca5e (PartOf turmeric turmeric) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "turn is part of playing period", "pln": ["(: cnet_partof_ebd8922150 (PartOf turn playing_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "turnaround is part of driveway", "pln": ["(: cnet_partof_9651cdf2a9 (PartOf turnaround driveway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "turnaround is part of road", "pln": ["(: cnet_partof_e0c95a2d0f (PartOf turnaround road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "turnip is part of turnip plant", "pln": ["(: cnet_partof_ee18447795 (PartOf turnip turnip_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "turnip green is part of turnip", "pln": ["(: cnet_partof_f95918dc30 (PartOf turnip_green turnip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "turnout is part of road", "pln": ["(: cnet_partof_1aaace62a0 (PartOf turnout road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "turntable is part of record player", "pln": ["(: cnet_partof_65d80989a5 (PartOf turntable record_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "turret is part of castle", "pln": ["(: cnet_partof_eac7ce9e0b (PartOf turret castle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "turtleneck collar is part of turtleneck", "pln": ["(: cnet_partof_bce66b189d (PartOf turtleneck_collar turtleneck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tuscaloosa is part of alabama", "pln": ["(: cnet_partof_0f502999f5 (PartOf tuscaloosa alabama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tuscany is part of italy", "pln": ["(: cnet_partof_bfdde422eb (PartOf tuscany italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tusk is part of elephant", "pln": ["(: cnet_partof_364e38b94b (PartOf tusk elephant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tusk is part of tusker", "pln": ["(: cnet_partof_cde39d5dc8 (PartOf tusk tusker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "tusk is part of wild boar", "pln": ["(: cnet_partof_6cce0564a6 (PartOf tusk wild_boar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tuskegee is part of alabama", "pln": ["(: cnet_partof_018382d887 (PartOf tuskegee alabama) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tuvalu is part of micronesia", "pln": ["(: cnet_partof_467db44c76 (PartOf tuvalu micronesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tuvalu is part of tuvalu", "pln": ["(: cnet_partof_73f75def24 (PartOf tuvalu tuvalu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "tuxtla gutierrez is part of mexico", "pln": ["(: cnet_partof_76f0586e8a (PartOf tuxtla_gutierrez mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "twelfth night is part of january", "pln": ["(: cnet_partof_99a45491e6 (PartOf twelfth_night january) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "twenty is part of adulthood", "pln": ["(: cnet_partof_81b1746d52 (PartOf twenty adulthood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "twilight is part of evening", "pln": ["(: cnet_partof_1c298fe789 (PartOf twilight evening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "twin is part of snake", "pln": ["(: cnet_partof_ea1e18a249 (PartOf twin snake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "twin is part of united state", "pln": ["(: cnet_partof_8855d2ff76 (PartOf twin united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "twin city is part of minnesota", "pln": ["(: cnet_partof_97d1d4df20 (PartOf twin_city minnesota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "twin fall is part of idaho", "pln": ["(: cnet_partof_33704de100 (PartOf twin_fall idaho) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tyler is part of texa", "pln": ["(: cnet_partof_e3bb7394bb (PartOf tyler texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "tympanic bone is part of temporal bone", "pln": ["(: cnet_partof_f249d49d64 (PartOf tympanic_bone temporal_bone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "tyne is part of england", "pln": ["(: cnet_partof_f9536a4b99 (PartOf tyne england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "typewriter carriage is part of typewriter", "pln": ["(: cnet_partof_aad7985715 (PartOf typewriter_carriage typewriter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "typewriter keyboard is part of typewriter", "pln": ["(: cnet_partof_92d15df5ba (PartOf typewriter_keyboard typewriter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tyrol is part of austria", "pln": ["(: cnet_partof_7b49d58616 (PartOf tyrol austria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tyrol is part of italy", "pln": ["(: cnet_partof_daad5c8304 (PartOf tyrol italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tyrolean alp is part of alp", "pln": ["(: cnet_partof_4a07d83f63 (PartOf tyrolean_alp alp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tyrolean alp is part of austria", "pln": ["(: cnet_partof_63a90daaec (PartOf tyrolean_alp austria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tyrolean alp is part of italy", "pln": ["(: cnet_partof_6923d45cf5 (PartOf tyrolean_alp italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "tyrrhenian sea is part of mediterranean", "pln": ["(: cnet_partof_c1d25bbd6d (PartOf tyrrhenian_sea mediterranean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "udder is part of cow", "pln": ["(: cnet_partof_44599ab839 (PartOf udder cow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "udder is part of ewe", "pln": ["(: cnet_partof_3efa92582e (PartOf udder ewe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "udder is part of nanny", "pln": ["(: cnet_partof_6fdbc98885 (PartOf udder nanny) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ufa is part of russia", "pln": ["(: cnet_partof_0829389f97 (PartOf ufa russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "uganda is part of africa", "pln": ["(: cnet_partof_471566a57e (PartOf uganda africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "uganda is part of east africa", "pln": ["(: cnet_partof_23a3b88b48 (PartOf uganda east_africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "ukraine is part of europe", "pln": ["(: cnet_partof_2e519e7b10 (PartOf ukraine europe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ulan bator is part of mongolia", "pln": ["(: cnet_partof_401ac9b9fb (PartOf ulan_bator mongolia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ulna is part of forearm", "pln": ["(: cnet_partof_3992d63f32 (PartOf ulna forearm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ulnar nerve is part of arm", "pln": ["(: cnet_partof_150cb707de (PartOf ulnar_nerve arm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ulnar vein is part of forearm", "pln": ["(: cnet_partof_fa405730c9 (PartOf ulnar_vein forearm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ultrahigh frequency is part of electromagnetic spectrum", "pln": ["(: cnet_partof_6b66b07466 (PartOf ultrahigh_frequency electromagnetic_spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ultraviolet spectrum is part of electromagnetic spectrum", "pln": ["(: cnet_partof_15258b01c7 (PartOf ultraviolet_spectrum electromagnetic_spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ulugh muztagh is part of kunlun", "pln": ["(: cnet_partof_ddb89bf588 (PartOf ulugh_muztagh kunlun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "umbilical cord is part of embryo", "pln": ["(: cnet_partof_d3aa29c9ee (PartOf umbilical_cord embryo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "umbilical cord is part of fetus", "pln": ["(: cnet_partof_f0f6ceab1c (PartOf umbilical_cord fetus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "umbilical vein is part of umbilical cord", "pln": ["(: cnet_partof_a2f3025655 (PartOf umbilical_vein umbilical_cord) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "united arab emirates is part of gulf states", "pln": ["(: cnet_partof_81460c5f17 (PartOf united_arab_emirates gulf_states) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "united states naval academy is part of united states navy", "pln": ["(: cnet_partof_36a7d95232 (PartOf united_states_naval_academy united_states_navy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "umbo is part of eardrum", "pln": ["(: cnet_partof_f7fde20db2 (PartOf umbo eardrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "umbria is part of italy", "pln": ["(: cnet_partof_46c9d9555e (PartOf umbria italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "uncheerfulness is part of disposition", "pln": ["(: cnet_partof_5c96961372 (PartOf uncheerfulness disposition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "uncle is part of family", "pln": ["(: cnet_partof_e28f41a9d8 (PartOf uncle family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "uncompahgre peak is part of san juan mountain", "pln": ["(: cnet_partof_6355f7f794 (PartOf uncompahgre_peak san_juan_mountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "underpant is part of pantyhose", "pln": ["(: cnet_partof_27ccaae185 (PartOf underpant pantyhose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "undertide is part of tide", "pln": ["(: cnet_partof_9b769293ea (PartOf undertide tide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "undescended testis is part of cryptorchidy", "pln": ["(: cnet_partof_adc8790850 (PartOf undescended_testis cryptorchidy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "union is part of labor movement", "pln": ["(: cnet_partof_615a457664 (PartOf union labor_movement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "united arab emirate is part of arabian peninsula", "pln": ["(: cnet_partof_44a2fa7be8 (PartOf united_arab_emirate arabian_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "united arab emirate is part of asia", "pln": ["(: cnet_partof_6872ef880f (PartOf united_arab_emirate asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "united arab emirate is part of gulf state", "pln": ["(: cnet_partof_33273340de (PartOf united_arab_emirate gulf_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "united kingdom is part of british isle", "pln": ["(: cnet_partof_ad23c5a8b4 (PartOf united_kingdom british_isle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "united nation day is part of october", "pln": ["(: cnet_partof_9bc01e555d (PartOf united_nation_day october) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "united state is part of north america", "pln": ["(: cnet_partof_e9990a5914 (PartOf united_state north_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "united state air force is part of department of defense", "pln": ["(: cnet_partof_0c0d16dbe5 (PartOf united_state_air_force department_of_defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "united state air force academy is part of united state air force", "pln": ["(: cnet_partof_351f983f08 (PartOf united_state_air_force_academy united_state_air_force) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "united state army is part of department of defense", "pln": ["(: cnet_partof_547eb7cca2 (PartOf united_state_army department_of_defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "united state army criminal investigation laboratory is part of criminal investigation command", "pln": ["(: cnet_partof_2d1d1d8604 (PartOf united_state_army_criminal_investigation_laboratory criminal_investigation_command) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "united state army ranger is part of united state army", "pln": ["(: cnet_partof_886f1e0444 (PartOf united_state_army_ranger united_state_army) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "united state border patrol is part of immigration and naturalization service", "pln": ["(: cnet_partof_e604156b0a (PartOf united_state_border_patrol immigration_and_naturalization_service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "united state coast guard is part of department of transportation", "pln": ["(: cnet_partof_9090637ddb (PartOf united_state_coast_guard department_of_transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "united state fish and wildlife service is part of department of interior", "pln": ["(: cnet_partof_41ba8d15c4 (PartOf united_state_fish_and_wildlife_service department_of_interior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "united state government printing office is part of legislative branch", "pln": ["(: cnet_partof_f5b8092553 (PartOf united_state_government_printing_office legislative_branch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "united state marine corp is part of united state navy", "pln": ["(: cnet_partof_03f0060a41 (PartOf united_state_marine_corp united_state_navy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "united state marshal service is part of department of justice", "pln": ["(: cnet_partof_56ca0b6390 (PartOf united_state_marshal_service department_of_justice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "united state military academy is part of united state army", "pln": ["(: cnet_partof_7985e0a64e (PartOf united_state_military_academy united_state_army) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "united state mint is part of department of treasury", "pln": ["(: cnet_partof_e5cc9ccb0d (PartOf united_state_mint department_of_treasury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "united state naval academy is part of united state navy", "pln": ["(: cnet_partof_794c6feb10 (PartOf united_state_naval_academy united_state_navy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "united state navy is part of department of defense", "pln": ["(: cnet_partof_897f0ef8ba (PartOf united_state_navy department_of_defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "united state postal inspection service is part of united state postal service", "pln": ["(: cnet_partof_de6bca2318 (PartOf united_state_postal_inspection_service united_state_postal_service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "united state president is part of executive branch", "pln": ["(: cnet_partof_0321558bdf (PartOf united_state_president executive_branch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "united state public health service is part of department of health and human service", "pln": ["(: cnet_partof_70e951b8b7 (PartOf united_state_public_health_service department_of_health_and_human_service) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "united state secret service is part of homeland security", "pln": ["(: cnet_partof_aad195848c (PartOf united_state_secret_service homeland_security) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "united state virgin island is part of virgin island", "pln": ["(: cnet_partof_d9669c7181 (PartOf united_state_virgin_island virgin_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "universal joint is part of drive line", "pln": ["(: cnet_partof_629e91d7fc (PartOf universal_joint drive_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "university is part of academia", "pln": ["(: cnet_partof_131300cc6a (PartOf university academia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "university of california at berkeley is part of berkeley", "pln": ["(: cnet_partof_b018a56773 (PartOf university_of_california_at_berkeley berkeley) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "university of chicago is part of chicago", "pln": ["(: cnet_partof_71305e1700 (PartOf university_of_chicago chicago) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "university of michigan is part of ann arbor", "pln": ["(: cnet_partof_f841d990e6 (PartOf university_of_michigan ann_arbor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "university of nebraska is part of lincoln", "pln": ["(: cnet_partof_3d92ee4dd0 (PartOf university_of_nebraska lincoln) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "university of north carolina is part of chapel hill", "pln": ["(: cnet_partof_da34d6a893 (PartOf university_of_north_carolina chapel_hill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "university of pennsylvania is part of pennsylvania", "pln": ["(: cnet_partof_158e127bd9 (PartOf university_of_pennsylvania pennsylvania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "university of pittsburgh is part of pittsburgh", "pln": ["(: cnet_partof_2056b35dbb (PartOf university_of_pittsburgh pittsburgh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "university of sussex is part of east sussex", "pln": ["(: cnet_partof_dc76e84dd1 (PartOf university_of_sussex east_sussex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "university of texa is part of austin", "pln": ["(: cnet_partof_1fa1e7dec5 (PartOf university_of_texa austin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "university of vermont is part of burlington", "pln": ["(: cnet_partof_b707f9fcd0 (PartOf university_of_vermont burlington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "university of washington is part of seattle", "pln": ["(: cnet_partof_52a7f21973 (PartOf university_of_washington seattle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "university of west virginia is part of morgantown", "pln": ["(: cnet_partof_7d69f6fd0c (PartOf university_of_west_virginia morgantown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "university of wisconsin is part of madison", "pln": ["(: cnet_partof_5105af8f94 (PartOf university_of_wisconsin madison) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "upholstery is part of seat", "pln": ["(: cnet_partof_b10fc3dcf2 (PartOf upholstery seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "upper is part of boot", "pln": ["(: cnet_partof_a1e368357c (PartOf upper boot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "upper is part of shoe", "pln": ["(: cnet_partof_23a8dbde6c (PartOf upper shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "upper egypt is part of egypt", "pln": ["(: cnet_partof_95f8723515 (PartOf upper_egypt egypt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "upper mantle is part of mantle", "pln": ["(: cnet_partof_4e43572539 (PartOf upper_mantle mantle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "upper paleolithic is part of paleolithic age", "pln": ["(: cnet_partof_222bb36ece (PartOf upper_paleolithic paleolithic_age) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "upper peninsula is part of michigan", "pln": ["(: cnet_partof_0fbc119b8e (PartOf upper_peninsula michigan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "upper tunguska is part of siberia", "pln": ["(: cnet_partof_4698588887 (PartOf upper_tunguska siberia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "uppsala is part of sweden", "pln": ["(: cnet_partof_6e5b76a74c (PartOf uppsala sweden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "upright is part of goalpost", "pln": ["(: cnet_partof_3b1bd9c926 (PartOf upright goalpost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "upstage is part of stage", "pln": ["(: cnet_partof_b013979ff7 (PartOf upstage stage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "upstair is part of building", "pln": ["(: cnet_partof_9fb6c691d8 (PartOf upstair building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "uptown is part of city", "pln": ["(: cnet_partof_34db668344 (PartOf uptown city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ur is part of sumer", "pln": ["(: cnet_partof_8c651ac97e (PartOf ur sumer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ural is part of russia", "pln": ["(: cnet_partof_6108b50274 (PartOf ural russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "urbana is part of illinois", "pln": ["(: cnet_partof_0d4b48928d (PartOf urbana illinois) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ureter is part of urinary tract", "pln": ["(: cnet_partof_265dee3582 (PartOf ureter urinary_tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ureter is part of urogenital system", "pln": ["(: cnet_partof_b2bd887c9a (PartOf ureter urogenital_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "urethra is part of penis", "pln": ["(: cnet_partof_2a0df3bde4 (PartOf urethra penis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "urethra is part of urinary tract", "pln": ["(: cnet_partof_100c9653be (PartOf urethra urinary_tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "urethra is part of urogenital system", "pln": ["(: cnet_partof_c1cc3671a0 (PartOf urethra urogenital_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "urethra is part of vulva", "pln": ["(: cnet_partof_1dd4f65c08 (PartOf urethra vulva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "urethral orifice is part of urethra", "pln": ["(: cnet_partof_9745f8aeb0 (PartOf urethral_orifice urethra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "urethral orifice is part of vagina", "pln": ["(: cnet_partof_dc0cb0ac9b (PartOf urethral_orifice vagina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "urethral sphincter is part of urethra", "pln": ["(: cnet_partof_15e825d909 (PartOf urethral_sphincter urethra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "urinary bladder is part of urinary tract", "pln": ["(: cnet_partof_7bce0a89e7 (PartOf urinary_bladder urinary_tract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "urinary bladder is part of urogenital system", "pln": ["(: cnet_partof_1ad24a8312 (PartOf urinary_bladder urogenital_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "urinary tract is part of urogenital system", "pln": ["(: cnet_partof_bd756bede9 (PartOf urinary_tract urogenital_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "uropygial gland is part of bird", "pln": ["(: cnet_partof_cf44e1d690 (PartOf uropygial_gland bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "uropygium is part of bird", "pln": ["(: cnet_partof_e624c349f4 (PartOf uropygium bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "urubupunga is part of brazil", "pln": ["(: cnet_partof_8a345ad927 (PartOf urubupunga brazil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "urubupunga is part of parana", "pln": ["(: cnet_partof_02b258d698 (PartOf urubupunga parana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "uruguay is part of south america", "pln": ["(: cnet_partof_4727f39dbd (PartOf uruguay south_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "uruguay potato is part of uruguay potato", "pln": ["(: cnet_partof_121fa3b620 (PartOf uruguay_potato uruguay_potato) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "uruguay river is part of south america", "pln": ["(: cnet_partof_fef237430a (PartOf uruguay_river south_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "utah is part of united state", "pln": ["(: cnet_partof_57aafa4771 (PartOf utah united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "uterine artery is part of uterus", "pln": ["(: cnet_partof_2c776d0f6d (PartOf uterine_artery uterus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "uterine cavity is part of uterus", "pln": ["(: cnet_partof_645c10c3f7 (PartOf uterine_cavity uterus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "uterine contraction is part of parturiency", "pln": ["(: cnet_partof_8a0efc0b99 (PartOf uterine_contraction parturiency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "uterus is part of female reproductive system", "pln": ["(: cnet_partof_7771857e74 (PartOf uterus female_reproductive_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "utica is part of new york", "pln": ["(: cnet_partof_6ada202362 (PartOf utica new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "utica is part of phoenicia", "pln": ["(: cnet_partof_6fd1c33ef5 (PartOf utica phoenicia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "utility routine is part of utility program", "pln": ["(: cnet_partof_809809f65f (PartOf utility_routine utility_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "utrecht is part of netherland", "pln": ["(: cnet_partof_6c4eb8278d (PartOf utrecht netherland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "utricle is part of membranous labyrinth", "pln": ["(: cnet_partof_5d71835e82 (PartOf utricle membranous_labyrinth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "uttar pradesh is part of india", "pln": ["(: cnet_partof_eefcedd857 (PartOf uttar_pradesh india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "uvea is part of eye", "pln": ["(: cnet_partof_5cfbd17e27 (PartOf uvea eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "uveoscleral pathway is part of eye", "pln": ["(: cnet_partof_3bcb2dc055 (PartOf uveoscleral_pathway eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "uvula is part of soft palate", "pln": ["(: cnet_partof_96b8a20560 (PartOf uvula soft_palate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "uzbekistan is part of asia", "pln": ["(: cnet_partof_0fd7ca2359 (PartOf uzbekistan asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vacuole is part of cell", "pln": ["(: cnet_partof_6f70dd6d84 (PartOf vacuole cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vaduz is part of liechtenstein", "pln": ["(: cnet_partof_f092dde860 (PartOf vaduz liechtenstein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vagina is part of female genitalia", "pln": ["(: cnet_partof_555146fd4e (PartOf vagina female_genitalia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vagina is part of female reproductive system", "pln": ["(: cnet_partof_ad4443d94c (PartOf vagina female_reproductive_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vaginal artery is part of vagina", "pln": ["(: cnet_partof_e8327dea1c (PartOf vaginal_artery vagina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vaginitis is part of candidiasis", "pln": ["(: cnet_partof_9478505169 (PartOf vaginitis candidiasis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "valdez is part of alaska", "pln": ["(: cnet_partof_686b7daa3e (PartOf valdez alaska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "valdosta is part of georgia", "pln": ["(: cnet_partof_f3c0c89971 (PartOf valdosta georgia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "valencia is part of spain", "pln": ["(: cnet_partof_9857dde2a0 (PartOf valencia spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "valencia is part of venezuela", "pln": ["(: cnet_partof_1d879fcfa6 (PartOf valencia venezuela) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "valencienne is part of france", "pln": ["(: cnet_partof_73328d8e0d (PartOf valencienne france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "valentine day is part of february", "pln": ["(: cnet_partof_945b35b8dc (PartOf valentine_day february) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "valle d aosta is part of italy", "pln": ["(: cnet_partof_28d11587dc (PartOf valle_d_aosta italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "valletta is part of malta", "pln": ["(: cnet_partof_218d5c3e4a (PartOf valletta malta) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "valparaiso is part of chile", "pln": ["(: cnet_partof_7aebe48f02 (PartOf valparaiso chile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "valve is part of brass", "pln": ["(: cnet_partof_1b4232dc3f (PartOf valve brass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "valve is part of heart", "pln": ["(: cnet_partof_2403d06504 (PartOf valve heart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vambrace is part of body armor", "pln": ["(: cnet_partof_612be94e9e (PartOf vambrace body_armor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vamp is part of upper", "pln": ["(: cnet_partof_37bca58ffd (PartOf vamp upper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "van allen belt is part of earth", "pln": ["(: cnet_partof_202103ba63 (PartOf van_allen_belt earth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vancouver is part of british columbia", "pln": ["(: cnet_partof_d440e78d68 (PartOf vancouver british_columbia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vancouver is part of washington", "pln": ["(: cnet_partof_a0af32cfb8 (PartOf vancouver washington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vancouver island is part of british columbia", "pln": ["(: cnet_partof_2c7c3c03c7 (PartOf vancouver_island british_columbia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vane is part of feather", "pln": ["(: cnet_partof_e91569358c (PartOf vane feather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vane is part of arrow", "pln": ["(: cnet_partof_15c6989c0f (PartOf vane arrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vane is part of missile", "pln": ["(: cnet_partof_572865f3a8 (PartOf vane missile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vanilla bean is part of vanilla orchid", "pln": ["(: cnet_partof_8349d490e2 (PartOf vanilla_bean vanilla_orchid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vanishing point is part of perspective", "pln": ["(: cnet_partof_4d501fd031 (PartOf vanishing_point perspective) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vanua levu is part of fiji island", "pln": ["(: cnet_partof_4a07fcb1eb (PartOf vanua_levu fiji_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vanuatu is part of melanesia", "pln": ["(: cnet_partof_0f815242c9 (PartOf vanuatu melanesia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "variety is part of specy", "pln": ["(: cnet_partof_99ccc96182 (PartOf variety specy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "varna is part of bulgaria", "pln": ["(: cnet_partof_0d04835a2e (PartOf varna bulgaria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vas deferen is part of male reproductive system", "pln": ["(: cnet_partof_ac8caae317 (PartOf vas_deferen male_reproductive_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vas deferen is part of seminal duct", "pln": ["(: cnet_partof_dd8118f1ce (PartOf vas_deferen seminal_duct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vas deferen is part of testis", "pln": ["(: cnet_partof_e3bf404415 (PartOf vas_deferen testis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vasa efferentia is part of epididymis", "pln": ["(: cnet_partof_be15bdb87e (PartOf vasa_efferentia epididymis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vascular system is part of body", "pln": ["(: cnet_partof_ac0a057231 (PartOf vascular_system body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "vascular system is part of vascular plant", "pln": ["(: cnet_partof_fd249263e7 (PartOf vascular_system vascular_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vascular tissue is part of vascular plant", "pln": ["(: cnet_partof_7ad48f1653 (PartOf vascular_tissue vascular_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vascular tissue is part of vascular system", "pln": ["(: cnet_partof_919f71b8f0 (PartOf vascular_tissue vascular_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vatican is part of vatican city", "pln": ["(: cnet_partof_21ab289814 (PartOf vatican vatican_city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vatican city is part of holy see", "pln": ["(: cnet_partof_6bb6054e28 (PartOf vatican_city holy_see) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vault is part of bank", "pln": ["(: cnet_partof_cf58a15363 (PartOf vault bank) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "veadar is part of jewish calendar", "pln": ["(: cnet_partof_df8ebdf045 (PartOf veadar jewish_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "veal is part of calf", "pln": ["(: cnet_partof_32547d713b (PartOf veal calf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vegetable is part of herb", "pln": ["(: cnet_partof_29cb7ab90c (PartOf vegetable herb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vein is part of circulatory system", "pln": ["(: cnet_partof_b689467914 (PartOf vein circulatory_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vela is part of argo", "pln": ["(: cnet_partof_b8b1f00f55 (PartOf vela argo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vena bulbi penis is part of penis", "pln": ["(: cnet_partof_da95e03c40 (PartOf vena_bulbi_penis penis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "venae interlobulare hepatis is part of liver", "pln": ["(: cnet_partof_007e407ee2 (PartOf venae_interlobulare_hepatis liver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "venae interlobulare renis is part of kidney", "pln": ["(: cnet_partof_df332e61e8 (PartOf venae_interlobulare_renis kidney) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "venae palpebrale is part of eyebrow", "pln": ["(: cnet_partof_2e52530601 (PartOf venae_palpebrale eyebrow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "venae renis is part of kidney", "pln": ["(: cnet_partof_c45a5131f2 (PartOf venae_renis kidney) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "venation is part of leaf", "pln": ["(: cnet_partof_e6e6c509f4 (PartOf venation leaf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "venation is part of circulatory system", "pln": ["(: cnet_partof_6fbfa69204 (PartOf venation circulatory_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vendemiaire is part of revolutionary calendar", "pln": ["(: cnet_partof_45ce88b903 (PartOf vendemiaire revolutionary_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "veneto is part of italy", "pln": ["(: cnet_partof_9ab188967b (PartOf veneto italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "venezuela is part of south america", "pln": ["(: cnet_partof_f1116ea574 (PartOf venezuela south_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "venice is part of veneto", "pln": ["(: cnet_partof_cd6e61d75e (PartOf venice veneto) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vent is part of air passage", "pln": ["(: cnet_partof_0335bce4dc (PartOf vent air_passage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "ventilation shaft is part of ventilation", "pln": ["(: cnet_partof_e425f67d9e (PartOf ventilation_shaft ventilation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ventilator is part of ventilation", "pln": ["(: cnet_partof_c3c837761d (PartOf ventilator ventilation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ventose is part of revolutionary calendar", "pln": ["(: cnet_partof_3d95ad0eb1 (PartOf ventose revolutionary_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ventricle is part of brain", "pln": ["(: cnet_partof_ea1c214474 (PartOf ventricle brain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ventricular septal defect is part of tetralogy of fallot", "pln": ["(: cnet_partof_4c8c5706ff (PartOf ventricular_septal_defect tetralogy_of_fallot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "venturi is part of carburetor", "pln": ["(: cnet_partof_f3c384d596 (PartOf venturi carburetor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "veracruz is part of mexico", "pln": ["(: cnet_partof_98e0be9b73 (PartOf veracruz mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "verb is part of predicate", "pln": ["(: cnet_partof_05f17428d1 (PartOf verb predicate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "veterans day is part of november", "pln": ["(: cnet_partof_200c3bab79 (PartOf veterans_day november) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "victoria is part of texas", "pln": ["(: cnet_partof_b57ccd927d (PartOf victoria texas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "verb is part of sentence", "pln": ["(: cnet_partof_e08de7240b (PartOf verb sentence) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "verb is part of verb", "pln": ["(: cnet_partof_ae42acc327 (PartOf verb verb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "verdun is part of world war i", "pln": ["(: cnet_partof_ba38f2d447 (PartOf verdun world_war_i) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vermis is part of cerebellum", "pln": ["(: cnet_partof_cf671fbbe9 (PartOf vermis cerebellum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vermont is part of new england", "pln": ["(: cnet_partof_0e4835c33a (PartOf vermont new_england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vermont is part of united state", "pln": ["(: cnet_partof_8283e9125f (PartOf vermont united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vernal equinox is part of march", "pln": ["(: cnet_partof_6c872a4a53 (PartOf vernal_equinox march) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vernal equinox is part of spring", "pln": ["(: cnet_partof_e9919aed5c (PartOf vernal_equinox spring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vernation is part of leaf bud", "pln": ["(: cnet_partof_74769e611d (PartOf vernation leaf_bud) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "verona is part of veneto", "pln": ["(: cnet_partof_ea3df76f8c (PartOf verona veneto) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "verrazano narrow is part of new york", "pln": ["(: cnet_partof_068f0793be (PartOf verrazano_narrow new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "verrazano narrow bridge is part of new york", "pln": ["(: cnet_partof_03869a71b8 (PartOf verrazano_narrow_bridge new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "versaille is part of france", "pln": ["(: cnet_partof_b120a02d47 (PartOf versaille france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "verse is part of poem", "pln": ["(: cnet_partof_8876fb216b (PartOf verse poem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vertebra is part of spinal column", "pln": ["(: cnet_partof_df3a65a1d1 (PartOf vertebra spinal_column) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vertebrate foot is part of leg", "pln": ["(: cnet_partof_02b21f0c97 (PartOf vertebrate_foot leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vertebrate foot is part of vertebrate", "pln": ["(: cnet_partof_4ec2bacda4 (PartOf vertebrate_foot vertebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vertical stabilizer is part of vertical tail", "pln": ["(: cnet_partof_59c0f218b2 (PartOf vertical_stabilizer vertical_tail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vertical tail is part of tail", "pln": ["(: cnet_partof_474e0ff753 (PartOf vertical_tail tail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "very high frequency is part of electromagnetic spectrum", "pln": ["(: cnet_partof_aa71bbea89 (PartOf very_high_frequency electromagnetic_spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "very low frequency is part of electromagnetic spectrum", "pln": ["(: cnet_partof_d02b62f618 (PartOf very_low_frequency electromagnetic_spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vessel is part of vascular system", "pln": ["(: cnet_partof_90d5717c49 (PartOf vessel vascular_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vest is part of three piece suit", "pln": ["(: cnet_partof_e698ba7c31 (PartOf vest three_piece_suit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vestibule of ear is part of ear", "pln": ["(: cnet_partof_348afc5eeb (PartOf vestibule_of_ear ear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vestibule of vagina is part of vulva", "pln": ["(: cnet_partof_b6a401f41a (PartOf vestibule_of_vagina vulva) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vestry is part of church", "pln": ["(: cnet_partof_64d028825f (PartOf vestry church) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vesuvius is part of italy", "pln": ["(: cnet_partof_c14bab04d0 (PartOf vesuvius italy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "veteran day is part of november", "pln": ["(: cnet_partof_a529bc6d33 (PartOf veteran_day november) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vetluga river is part of russia", "pln": ["(: cnet_partof_cdfb36f662 (PartOf vetluga_river russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "viborg is part of denmark", "pln": ["(: cnet_partof_93ab235383 (PartOf viborg denmark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vicente lopez is part of argentina", "pln": ["(: cnet_partof_5271938b7f (PartOf vicente_lopez argentina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vichy is part of france", "pln": ["(: cnet_partof_cc343bea23 (PartOf vichy france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vicksburg is part of american civil war", "pln": ["(: cnet_partof_72d91da393 (PartOf vicksburg american_civil_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vicksburg is part of mississippi", "pln": ["(: cnet_partof_a55324d369 (PartOf vicksburg mississippi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "victoria is part of australia", "pln": ["(: cnet_partof_f45facd55c (PartOf victoria australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "victoria is part of british columbia", "pln": ["(: cnet_partof_937cafcdac (PartOf victoria british_columbia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "victoria is part of seychelle", "pln": ["(: cnet_partof_81195d40f1 (PartOf victoria seychelle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "victoria is part of texa", "pln": ["(: cnet_partof_1a41a9d59d (PartOf victoria texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "victoria is part of zambezi", "pln": ["(: cnet_partof_b39b3b09c3 (PartOf victoria zambezi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "victoria is part of zambia", "pln": ["(: cnet_partof_f27991e399 (PartOf victoria zambia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "victoria is part of zimbabwe", "pln": ["(: cnet_partof_8e32d25523 (PartOf victoria zimbabwe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "victoria land is part of antarctica", "pln": ["(: cnet_partof_0bfd266f27 (PartOf victoria_land antarctica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vidalia is part of georgia", "pln": ["(: cnet_partof_05408e88f0 (PartOf vidalia georgia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "video is part of television", "pln": ["(: cnet_partof_09e606abce (PartOf video television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vienna is part of austria", "pln": ["(: cnet_partof_35268394fe (PartOf vienna austria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vienne is part of france", "pln": ["(: cnet_partof_bd78fbdf35 (PartOf vienne france) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vientiane is part of lao", "pln": ["(: cnet_partof_5498b7f1f2 (PartOf vientiane lao) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vieque is part of puerto rico", "pln": ["(: cnet_partof_1e34ba5922 (PartOf vieque puerto_rico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vietnam is part of indochina", "pln": ["(: cnet_partof_fbb1e2b100 (PartOf vietnam indochina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "villahermosa is part of mexico", "pln": ["(: cnet_partof_a2c476bdce (PartOf villahermosa mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vilnius is part of lithuania", "pln": ["(: cnet_partof_1a848cffed (PartOf vilnius lithuania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vina del mar is part of chile", "pln": ["(: cnet_partof_1ab5a9eb57 (PartOf vina_del_mar chile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vinifera grape is part of vinifera", "pln": ["(: cnet_partof_9dd3ecb120 (PartOf vinifera_grape vinifera) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "virgin birth is part of christian theology", "pln": ["(: cnet_partof_fd4e10e8ac (PartOf virgin_birth christian_theology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "virginia is part of united states", "pln": ["(: cnet_partof_d1f84a9d1f (PartOf virginia united_states) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "virgin island is part of west indy", "pln": ["(: cnet_partof_21ad233e2f (PartOf virgin_island west_indy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "virgin island national park is part of virgin island", "pln": ["(: cnet_partof_30f6950bb1 (PartOf virgin_island_national_park virgin_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "virginia is part of minnesota", "pln": ["(: cnet_partof_698e0d3408 (PartOf virginia minnesota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "virginia is part of south", "pln": ["(: cnet_partof_b0c8228e96 (PartOf virginia south) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "virginia is part of united state", "pln": ["(: cnet_partof_63e95aaa29 (PartOf virginia united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "virginia beach is part of virginia", "pln": ["(: cnet_partof_bb2fc781c3 (PartOf virginia_beach virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "virgo is part of zodiac", "pln": ["(: cnet_partof_6890bab598 (PartOf virgo zodiac) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "visa is part of passport", "pln": ["(: cnet_partof_f168151d9a (PartOf visa passport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "visayan island is part of philippine", "pln": ["(: cnet_partof_d1e33d710c (PartOf visayan_island philippine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "visible spectrum is part of electromagnetic spectrum", "pln": ["(: cnet_partof_7b70c8ad7a (PartOf visible_spectrum electromagnetic_spectrum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "visor is part of helmet", "pln": ["(: cnet_partof_5c8a9e069a (PartOf visor helmet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vistula is part of poland", "pln": ["(: cnet_partof_fca65346d4 (PartOf vistula poland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "visual cell is part of retina", "pln": ["(: cnet_partof_4608aa1586 (PartOf visual_cell retina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "visual cortex is part of brain", "pln": ["(: cnet_partof_e53360f26b (PartOf visual_cortex brain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "visual purple is part of rod", "pln": ["(: cnet_partof_648da874b6 (PartOf visual_purple rod) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "visual signal is part of visual communication", "pln": ["(: cnet_partof_6da6413d7b (PartOf visual_signal visual_communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "viti levu is part of fiji island", "pln": ["(: cnet_partof_8be82c0840 (PartOf viti_levu fiji_island) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vladivostok is part of russia", "pln": ["(: cnet_partof_48cd026bac (PartOf vladivostok russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vocabulary is part of language", "pln": ["(: cnet_partof_b1c5867326 (PartOf vocabulary language) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vocal cord is part of larynx", "pln": ["(: cnet_partof_5442609317 (PartOf vocal_cord larynx) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "voider is part of body armor", "pln": ["(: cnet_partof_1e35259fa7 (PartOf voider body_armor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "volcanic crater is part of volcano", "pln": ["(: cnet_partof_8ef7440f3c (PartOf volcanic_crater volcano) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "volcano island is part of japan", "pln": ["(: cnet_partof_a2112c5377 (PartOf volcano_island japan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "volcano island is part of pacific", "pln": ["(: cnet_partof_ae0fda03d5 (PartOf volcano_island pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "volga is part of russia", "pln": ["(: cnet_partof_777f6ecf49 (PartOf volga russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "volgograd is part of russia", "pln": ["(: cnet_partof_ce18f463a8 (PartOf volgograd russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "volkhov is part of russia", "pln": ["(: cnet_partof_a5f6d545ab (PartOf volkhov russia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "volt is part of kilovolt", "pln": ["(: cnet_partof_dcca62eef9 (PartOf volt kilovolt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "volt ampere is part of kilovolt ampere", "pln": ["(: cnet_partof_7437df285d (PartOf volt_ampere kilovolt_ampere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "volta is part of ghana", "pln": ["(: cnet_partof_e13a0f0c32 (PartOf volta ghana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "voltage regulator is part of electrical system", "pln": ["(: cnet_partof_1055294b72 (PartOf voltage_regulator electrical_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "voltaic cell is part of voltaic battery", "pln": ["(: cnet_partof_fc1752554d (PartOf voltaic_cell voltaic_battery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "volume unit is part of volume", "pln": ["(: cnet_partof_839af21bc7 (PartOf volume_unit volume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "volva is part of fungus", "pln": ["(: cnet_partof_9a741c7183 (PartOf volva fungus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vomer is part of nasal septum", "pln": ["(: cnet_partof_ed3c5024f2 (PartOf vomer nasal_septum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vomer is part of skull", "pln": ["(: cnet_partof_719ab6dfb1 (PartOf vomer skull) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vomitory is part of amphitheater", "pln": ["(: cnet_partof_5283b12220 (PartOf vomitory amphitheater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "voting age is part of adulthood", "pln": ["(: cnet_partof_20837c5b5f (PartOf voting_age adulthood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "voussoir is part of arch", "pln": ["(: cnet_partof_71f7259641 (PartOf voussoir arch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "voyageur national park is part of minnesota", "pln": ["(: cnet_partof_4b40fd17ed (PartOf voyageur_national_park minnesota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "vulva is part of female reproductive system", "pln": ["(: cnet_partof_0f9c834314 (PartOf vulva female_reproductive_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wabash is part of indiana", "pln": ["(: cnet_partof_cfc54eeb4f (PartOf wabash indiana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wabash is part of ohio", "pln": ["(: cnet_partof_2e985bd6b9 (PartOf wabash ohio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "waco is part of texa", "pln": ["(: cnet_partof_47608eec77 (PartOf waco texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wage is part of payroll", "pln": ["(: cnet_partof_85823c5d58 (PartOf wage payroll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wagga wagga is part of new south wale", "pln": ["(: cnet_partof_ca20ba0ed6 (PartOf wagga_wagga new_south_wale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wagon tire is part of cartwheel", "pln": ["(: cnet_partof_aa8f48032d (PartOf wagon_tire cartwheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wagon tire is part of wagon wheel", "pln": ["(: cnet_partof_36e79d9f88 (PartOf wagon_tire wagon_wheel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "wagon wheel is part of wagon", "pln": ["(: cnet_partof_e09d0ea135 (PartOf wagon_wheel wagon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "wales is part of united kingdom", "pln": ["(: cnet_partof_d321721bfa (PartOf wales united_kingdom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wagram is part of napoleonic war", "pln": ["(: cnet_partof_1b9b18db1c (PartOf wagram napoleonic_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wagram is part of austria", "pln": ["(: cnet_partof_0a82d5a473 (PartOf wagram austria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "waikiki is part of oahu", "pln": ["(: cnet_partof_9cd38a9ad8 (PartOf waikiki oahu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wailing wall is part of jerusalem", "pln": ["(: cnet_partof_b71f685afb (PartOf wailing_wall jerusalem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wainscot is part of wall", "pln": ["(: cnet_partof_ac183c778c (PartOf wainscot wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "waist is part of torso", "pln": ["(: cnet_partof_126bee9642 (PartOf waist torso) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wake island is part of pacific", "pln": ["(: cnet_partof_94dd665e57 (PartOf wake_island pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wale is part of vessel", "pln": ["(: cnet_partof_f210b8a921 (PartOf wale vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wale is part of united kingdom", "pln": ["(: cnet_partof_c689644499 (PartOf wale united_kingdom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "walk up apartment is part of walk up", "pln": ["(: cnet_partof_25c8aa7183 (PartOf walk_up_apartment walk_up) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wall is part of house", "pln": ["(: cnet_partof_cf4f31e7cc (PartOf wall house) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wall is part of structure", "pln": ["(: cnet_partof_0b91f21612 (PartOf wall structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wall is part of building", "pln": ["(: cnet_partof_e63edfe67f (PartOf wall building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "wall is part of hallway", "pln": ["(: cnet_partof_e298bb5ab7 (PartOf wall hallway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wall is part of room", "pln": ["(: cnet_partof_da86301897 (PartOf wall room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wall is part of cave", "pln": ["(: cnet_partof_3a4b053582 (PartOf wall cave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wall panel is part of wall", "pln": ["(: cnet_partof_36d1106b5a (PartOf wall_panel wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wall street is part of manhattan", "pln": ["(: cnet_partof_c778de3725 (PartOf wall_street manhattan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "walla walla is part of washington", "pln": ["(: cnet_partof_47e7b57f6e (PartOf walla_walla washington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "walnut is part of walnut", "pln": ["(: cnet_partof_3f07c33b41 (PartOf walnut walnut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "walt disney world is part of orlando", "pln": ["(: cnet_partof_1e2aa556e9 (PartOf walt_disney_world orlando) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "walt whitman bridge is part of philadelphia", "pln": ["(: cnet_partof_dfb2cfae00 (PartOf walt_whitman_bridge philadelphia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ward is part of hospital", "pln": ["(: cnet_partof_689d2672cd (PartOf ward hospital) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ward is part of municipality", "pln": ["(: cnet_partof_34d8976f93 (PartOf ward municipality) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wardrobe is part of clothing", "pln": ["(: cnet_partof_586a76936c (PartOf wardrobe clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wardrobe is part of costume", "pln": ["(: cnet_partof_78cc372f82 (PartOf wardrobe costume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "warhead is part of guided missile", "pln": ["(: cnet_partof_b85e3ed43c (PartOf warhead guided_missile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "warp is part of weave", "pln": ["(: cnet_partof_fc8f517a9e (PartOf warp weave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "warszawa is part of poland", "pln": ["(: cnet_partof_ae25dd73b9 (PartOf warszawa poland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "washbasin is part of bathroom", "pln": ["(: cnet_partof_26b8672d80 (PartOf washbasin bathroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "washboard is part of vessel", "pln": ["(: cnet_partof_beede3d895 (PartOf washboard vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "washington s birthday is part of february", "pln": ["(: cnet_partof_a230caf7d1 (PartOf washington_s_birthday february) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "washington is part of district of columbia", "pln": ["(: cnet_partof_8004e26bc0 (PartOf washington district_of_columbia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "washington is part of united state", "pln": ["(: cnet_partof_5f0482d84a (PartOf washington united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "washington monument is part of washington", "pln": ["(: cnet_partof_897fd7f7d0 (PartOf washington_monument washington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "watch case is part of watch", "pln": ["(: cnet_partof_9da64a66e8 (PartOf watch_case watch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "water back is part of cookstove", "pln": ["(: cnet_partof_6fb8a0837b (PartOf water_back cookstove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "water back is part of fireplace", "pln": ["(: cnet_partof_1b126e2c02 (PartOf water_back fireplace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "water chestnut is part of water chestnut", "pln": ["(: cnet_partof_221da57588 (PartOf water_chestnut water_chestnut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "water chinquapin is part of water chinquapin", "pln": ["(: cnet_partof_515a33a8ca (PartOf water_chinquapin water_chinquapin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "water hazard is part of golf course", "pln": ["(: cnet_partof_6b029d2ed2 (PartOf water_hazard golf_course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "water main is part of water system", "pln": ["(: cnet_partof_02d04521d4 (PartOf water_main water_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "water pump is part of cooling system", "pln": ["(: cnet_partof_f1cd67cef8 (PartOf water_pump cooling_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "water system is part of infrastructure", "pln": ["(: cnet_partof_1607272368 (PartOf water_system infrastructure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "water vascular system is part of echinoderm", "pln": ["(: cnet_partof_277278774f (PartOf water_vascular_system echinoderm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "waterbury is part of connecticut", "pln": ["(: cnet_partof_6a13002ada (PartOf waterbury connecticut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "waterfall is part of river", "pln": ["(: cnet_partof_ea2a2fff23 (PartOf waterfall river) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "waterford is part of ireland", "pln": ["(: cnet_partof_bcca10b181 (PartOf waterford ireland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "waterloo is part of napoleonic war", "pln": ["(: cnet_partof_f51d41425a (PartOf waterloo napoleonic_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "waterloo is part of belgium", "pln": ["(: cnet_partof_e43abd327e (PartOf waterloo belgium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "watermelon is part of watermelon", "pln": ["(: cnet_partof_d010150a00 (PartOf watermelon watermelon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "watertown is part of new york", "pln": ["(: cnet_partof_bb4ed3f470 (PartOf watertown new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "watertown is part of wisconsin", "pln": ["(: cnet_partof_87fcd781a3 (PartOf watertown wisconsin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "waterwheel is part of water mill", "pln": ["(: cnet_partof_bc3c167772 (PartOf waterwheel water_mill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "watt is part of horsepower", "pln": ["(: cnet_partof_6bdd01310d (PartOf watt horsepower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "watt is part of kilowatt", "pln": ["(: cnet_partof_27ea72f101 (PartOf watt kilowatt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "watt hour is part of kilowatt hour", "pln": ["(: cnet_partof_396a703f38 (PartOf watt_hour kilowatt_hour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wausau is part of wisconsin", "pln": ["(: cnet_partof_39445138fe (PartOf wausau wisconsin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wave is part of ocean", "pln": ["(: cnet_partof_218ab7d28d (PartOf wave ocean) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wave front is part of wave", "pln": ["(: cnet_partof_8761f93374 (PartOf wave_front wave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "waveguide is part of radar", "pln": ["(: cnet_partof_00eafa23b4 (PartOf waveguide radar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "way is part of transportation system", "pln": ["(: cnet_partof_55d29b9eac (PartOf way transportation_system) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "way is part of shipyard", "pln": ["(: cnet_partof_1f60a366fc (PartOf way shipyard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wayside is part of way", "pln": ["(: cnet_partof_f2410600d9 (PartOf wayside way) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "weakfish is part of spotted weakfish", "pln": ["(: cnet_partof_33c12695aa (PartOf weakfish spotted_weakfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "weakfish is part of weakfish", "pln": ["(: cnet_partof_576e4e6f24 (PartOf weakfish weakfish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "weakly interacting massive particle is part of dark matter", "pln": ["(: cnet_partof_3a59853a99 (PartOf weakly_interacting_massive_particle dark_matter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "weapon is part of weaponry", "pln": ["(: cnet_partof_e9c8c8c8d9 (PartOf weapon weaponry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "web is part of webfoot", "pln": ["(: cnet_partof_2cdd8a1cf3 (PartOf web webfoot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "wedding night is part of wedding day", "pln": ["(: cnet_partof_d3954663c0 (PartOf wedding_night wedding_day) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "west indies is part of caribbean", "pln": ["(: cnet_partof_2d4616f563 (PartOf west_indies caribbean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wedge bone is part of sirloin", "pln": ["(: cnet_partof_06e7bf189d (PartOf wedge_bone sirloin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wedge heel is part of wedgie", "pln": ["(: cnet_partof_b8d5eba72e (PartOf wedge_heel wedgie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "week is part of calendar month", "pln": ["(: cnet_partof_e5468e41fa (PartOf week calendar_month) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "weekend is part of week", "pln": ["(: cnet_partof_b0e91365c5 (PartOf weekend week) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "weimar is part of germany", "pln": ["(: cnet_partof_2f432f422b (PartOf weimar germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "weisshorn is part of alp", "pln": ["(: cnet_partof_dc67658b14 (PartOf weisshorn alp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "weisshorn is part of switzerland", "pln": ["(: cnet_partof_3b9ce522d1 (PartOf weisshorn switzerland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wellington is part of new zealand", "pln": ["(: cnet_partof_5c6bb07fee (PartOf wellington new_zealand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wembley is part of london", "pln": ["(: cnet_partof_69122b0ca0 (PartOf wembley london) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wernicke s area is part of language area", "pln": ["(: cnet_partof_71299ccbd2 (PartOf wernicke_s_area language_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "weser river is part of germany", "pln": ["(: cnet_partof_65df573d27 (PartOf weser_river germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wessex is part of england", "pln": ["(: cnet_partof_07013c8ceb (PartOf wessex england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "west is part of united state", "pln": ["(: cnet_partof_a01a7fac57 (PartOf west united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "west africa is part of africa", "pln": ["(: cnet_partof_bf9a019b4f (PartOf west_africa africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "west bank is part of israel", "pln": ["(: cnet_partof_1f6c0e441f (PartOf west_bank israel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "west bengal is part of india", "pln": ["(: cnet_partof_ab3c39a805 (PartOf west_bengal india) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "west berlin is part of berlin", "pln": ["(: cnet_partof_61ecddbc22 (PartOf west_berlin berlin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "west coast is part of west", "pln": ["(: cnet_partof_88ad654a56 (PartOf west_coast west) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "west country is part of england", "pln": ["(: cnet_partof_55c702c269 (PartOf west_country england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "west end is part of london", "pln": ["(: cnet_partof_01c7bc859c (PartOf west_end london) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "west indy is part of atlantic", "pln": ["(: cnet_partof_0af89dc040 (PartOf west_indy atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "west indy is part of caribbean", "pln": ["(: cnet_partof_f8f4c30713 (PartOf west_indy caribbean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "west palm beach is part of florida", "pln": ["(: cnet_partof_5580b328fd (PartOf west_palm_beach florida) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "west point is part of new york", "pln": ["(: cnet_partof_29b09c84a6 (PartOf west_point new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "west sussex is part of england", "pln": ["(: cnet_partof_c4232e0caa (PartOf west_sussex england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "west virginia is part of united state", "pln": ["(: cnet_partof_1b34f7642c (PartOf west_virginia united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "west yorkshire is part of england", "pln": ["(: cnet_partof_9699af78be (PartOf west_yorkshire england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "western australia is part of australia", "pln": ["(: cnet_partof_b72cbd89ed (PartOf western_australia australia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "western roman empire is part of roman empire", "pln": ["(: cnet_partof_d82687aac4 (PartOf western_roman_empire roman_empire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "western sahara is part of morocco", "pln": ["(: cnet_partof_2622034f17 (PartOf western_sahara morocco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "westminster is part of london", "pln": ["(: cnet_partof_ff103201f6 (PartOf westminster london) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "westminster abbey is part of westminster", "pln": ["(: cnet_partof_4d8296bffb (PartOf westminster_abbey westminster) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wet bulb thermometer is part of psychrometer", "pln": ["(: cnet_partof_8906ddb5c2 (PartOf wet_bulb_thermometer psychrometer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wheat is part of common wheat", "pln": ["(: cnet_partof_e43d1db857 (PartOf wheat common_wheat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wheat berry is part of wheat", "pln": ["(: cnet_partof_f85069c90d (PartOf wheat_berry wheat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wheat germ is part of wheat", "pln": ["(: cnet_partof_1cd361aa33 (PartOf wheat_germ wheat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wheel is part of bicycle", "pln": ["(: cnet_partof_5c93ccc6d3 (PartOf wheel bicycle) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wheel is part of car", "pln": ["(: cnet_partof_4ee02a581c (PartOf wheel car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wheel is part of vehicle", "pln": ["(: cnet_partof_37ab2b161f (PartOf wheel vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wheel is part of wheeled vehicle", "pln": ["(: cnet_partof_98b9eeae48 (PartOf wheel wheeled_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wheeler peak is part of new mexico", "pln": ["(: cnet_partof_20f1483120 (PartOf wheeler_peak new_mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wheeler peak is part of rocky", "pln": ["(: cnet_partof_a2d135c55b (PartOf wheeler_peak rocky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wheeling is part of west virginia", "pln": ["(: cnet_partof_14550c0e31 (PartOf wheeling west_virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "whistle stop tour is part of campaigning", "pln": ["(: cnet_partof_e2eca9e160 (PartOf whistle_stop_tour campaigning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "whit tuesday is part of whitsun", "pln": ["(: cnet_partof_dfc560f273 (PartOf whit_tuesday whitsun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "white is part of arkansa", "pln": ["(: cnet_partof_674fb08851 (PartOf white arkansa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "white is part of missouri", "pln": ["(: cnet_partof_d3cef6f48d (PartOf white missouri) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "white house is part of washington", "pln": ["(: cnet_partof_c6bcb00f98 (PartOf white_house washington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "white sea is part of barent sea", "pln": ["(: cnet_partof_c411f3d631 (PartOf white_sea barent_sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "white turnip is part of turnip", "pln": ["(: cnet_partof_45fd0755c4 (PartOf white_turnip turnip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "whitefish is part of whitefish", "pln": ["(: cnet_partof_bd002945df (PartOf whitefish whitefish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "whitehall is part of london", "pln": ["(: cnet_partof_1f19e4e098 (PartOf whitehall london) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "whitehead is part of skin", "pln": ["(: cnet_partof_f260f4e79b (PartOf whitehead skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "whitehorse is part of yukon", "pln": ["(: cnet_partof_689164199c (PartOf whitehorse yukon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "whiting is part of silver hake", "pln": ["(: cnet_partof_b7602a6f7e (PartOf whiting silver_hake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "whiting is part of whiting", "pln": ["(: cnet_partof_8b27590914 (PartOf whiting whiting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "whitmonday is part of whitsun", "pln": ["(: cnet_partof_ca0169ae41 (PartOf whitmonday whitsun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "whitney is part of sierra nevada", "pln": ["(: cnet_partof_013f13433d (PartOf whitney sierra_nevada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "whitsun is part of church calendar", "pln": ["(: cnet_partof_14b6cb89c2 (PartOf whitsun church_calendar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "whole gale is part of beaufort scale", "pln": ["(: cnet_partof_c98a40c7c9 (PartOf whole_gale beaufort_scale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "whore is part of whorehouse", "pln": ["(: cnet_partof_1cc8b0488e (PartOf whore whorehouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wichita is part of kansa", "pln": ["(: cnet_partof_6caf580d5e (PartOf wichita kansa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wichita fall is part of texa", "pln": ["(: cnet_partof_cbf340ec54 (PartOf wichita_fall texa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wick is part of candle", "pln": ["(: cnet_partof_8fdc1cb941 (PartOf wick candle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wick is part of oil lamp", "pln": ["(: cnet_partof_2aa8468beb (PartOf wick oil_lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "widow s peak is part of hairline", "pln": ["(: cnet_partof_e75c11bacd (PartOf widow_s_peak hairline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wight is part of british isle", "pln": ["(: cnet_partof_d3834eb4f2 (PartOf wight british_isle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wight is part of english channel", "pln": ["(: cnet_partof_21955f4042 (PartOf wight english_channel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wild cherry is part of wild cherry", "pln": ["(: cnet_partof_0cbffc27a8 (PartOf wild_cherry wild_cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wild rice is part of wild rice", "pln": ["(: cnet_partof_b9e1490165 (PartOf wild_rice wild_rice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wild spinach is part of good king henry", "pln": ["(: cnet_partof_a3561ccd0e (PartOf wild_spinach good_king_henry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wild spinach is part of lamb s quarter", "pln": ["(: cnet_partof_61a9019927 (PartOf wild_spinach lamb_s_quarter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wilderness campaign is part of american civil war", "pln": ["(: cnet_partof_604aba25b8 (PartOf wilderness_campaign american_civil_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wilke land is part of antarctica", "pln": ["(: cnet_partof_d90ff5e7af (PartOf wilke_land antarctica) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "willamette is part of oregon", "pln": ["(: cnet_partof_7c31a39dd3 (PartOf willamette oregon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "williamstown is part of massachusett", "pln": ["(: cnet_partof_60073d0135 (PartOf williamstown massachusett) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "wilmington is part of delaware", "pln": ["(: cnet_partof_0637fa633d (PartOf wilmington delaware) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wilmington is part of north carolina", "pln": ["(: cnet_partof_94a813892c (PartOf wilmington north_carolina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wilson is part of san juan mountain", "pln": ["(: cnet_partof_6e50ed0c95 (PartOf wilson san_juan_mountain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wimbledon is part of london", "pln": ["(: cnet_partof_3972795554 (PartOf wimbledon london) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "winch is part of ship", "pln": ["(: cnet_partof_2a73356b1b (PartOf winch ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "winchester is part of hampshire", "pln": ["(: cnet_partof_f7778a8d3c (PartOf winchester hampshire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "winchester college is part of winchester", "pln": ["(: cnet_partof_c04c403ef7 (PartOf winchester_college winchester) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wind cave national park is part of south dakota", "pln": ["(: cnet_partof_b9f176afff (PartOf wind_cave_national_park south_dakota) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wind turbine is part of wind farm", "pln": ["(: cnet_partof_0756cd4de4 (PartOf wind_turbine wind_farm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "windhoek is part of namibia", "pln": ["(: cnet_partof_b0d6ee9a52 (PartOf windhoek namibia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "window is part of building", "pln": ["(: cnet_partof_b60b4144bd (PartOf window building) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "window is part of bus", "pln": ["(: cnet_partof_f783eaa2a4 (PartOf window bus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "window is part of car", "pln": ["(: cnet_partof_b4220bab0f (PartOf window car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "window is part of window envelope", "pln": ["(: cnet_partof_98ddc90033 (PartOf window window_envelope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "window is part of computer screen", "pln": ["(: cnet_partof_4351ffd209 (PartOf window computer_screen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "window frame is part of window", "pln": ["(: cnet_partof_47dbc5c698 (PartOf window_frame window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "windowpane is part of window", "pln": ["(: cnet_partof_3aa1f86eb5 (PartOf windowpane window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "windowsill is part of window frame", "pln": ["(: cnet_partof_1fe1a83692 (PartOf windowsill window_frame) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "windshield is part of airplane", "pln": ["(: cnet_partof_82974c7181 (PartOf windshield airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "windshield is part of motor vehicle", "pln": ["(: cnet_partof_dc29214b99 (PartOf windshield motor_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "windshield is part of motorboat", "pln": ["(: cnet_partof_1bfba493ee (PartOf windshield motorboat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "windshield wiper is part of motor vehicle", "pln": ["(: cnet_partof_a206dfcec5 (PartOf windshield_wiper motor_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "windward island is part of lesser antille", "pln": ["(: cnet_partof_927bd24352 (PartOf windward_island lesser_antille) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "windward passage is part of atlantic", "pln": ["(: cnet_partof_c31d1d1de9 (PartOf windward_passage atlantic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wing is part of angel", "pln": ["(: cnet_partof_26059b67df (PartOf wing angel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "wing is part of bat", "pln": ["(: cnet_partof_d0efb04351 (PartOf wing bat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wing is part of bird", "pln": ["(: cnet_partof_5d4d398a3a (PartOf wing bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wing is part of insect", "pln": ["(: cnet_partof_5d121f6ee7 (PartOf wing insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wing is part of airplane", "pln": ["(: cnet_partof_571d982ebf (PartOf wing airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wing is part of division", "pln": ["(: cnet_partof_5879045518 (PartOf wing division) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "wing tip is part of wing tip", "pln": ["(: cnet_partof_bf77780a4d (PartOf wing_tip wing_tip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "winnipeg is part of manitoba", "pln": ["(: cnet_partof_e0089e5547 (PartOf winnipeg manitoba) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "winston salem is part of north carolina", "pln": ["(: cnet_partof_24aac47fc2 (PartOf winston_salem north_carolina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "winter s bark is part of winter s bark", "pln": ["(: cnet_partof_2ac5b53faf (PartOf winter_s_bark winter_s_bark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "winter crookneck squash is part of winter crookneck", "pln": ["(: cnet_partof_c4488609fc (PartOf winter_crookneck_squash winter_crookneck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "winter melon is part of winter melon", "pln": ["(: cnet_partof_30cc7ca069 (PartOf winter_melon winter_melon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "winter savory is part of winter savory", "pln": ["(: cnet_partof_01ddb86397 (PartOf winter_savory winter_savory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "winter solstice is part of winter", "pln": ["(: cnet_partof_c3c8d55277 (PartOf winter_solstice winter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "wisconsin is part of united states", "pln": ["(: cnet_partof_cdf62f5431 (PartOf wisconsin united_states) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "winter squash is part of winter squash", "pln": ["(: cnet_partof_49fae8b8fa (PartOf winter_squash winter_squash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wintergreen is part of teaberry", "pln": ["(: cnet_partof_402e9847fd (PartOf wintergreen teaberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wiper is part of rheostat", "pln": ["(: cnet_partof_d3084100e6 (PartOf wiper rheostat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wiper is part of selector", "pln": ["(: cnet_partof_5c15a6ce51 (PartOf wiper selector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wisconsin is part of midwest", "pln": ["(: cnet_partof_c515fae1fd (PartOf wisconsin midwest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wisconsin is part of united state", "pln": ["(: cnet_partof_36e93cb2f6 (PartOf wisconsin united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wisconsin is part of wisconsin", "pln": ["(: cnet_partof_ebc498aec9 (PartOf wisconsin wisconsin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wisdom of solomon is part of apocrypha", "pln": ["(: cnet_partof_ecfc389a88 (PartOf wisdom_of_solomon apocrypha) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "wisdom of solomon is part of sapiential book", "pln": ["(: cnet_partof_343a5876f8 (PartOf wisdom_of_solomon sapiential_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wishbone is part of bird", "pln": ["(: cnet_partof_35b7e51387 (PartOf wishbone bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wither is part of deer", "pln": ["(: cnet_partof_ee8b19c694 (PartOf wither deer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wither is part of horse", "pln": ["(: cnet_partof_292011bcd5 (PartOf wither horse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wither is part of ox", "pln": ["(: cnet_partof_a12e427046 (PartOf wither ox) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wither is part of sheep", "pln": ["(: cnet_partof_6d8cc430f7 (PartOf wither sheep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "witness box is part of court", "pln": ["(: cnet_partof_68280270f1 (PartOf witness_box court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "witwatersrand is part of transvaal", "pln": ["(: cnet_partof_32d384b328 (PartOf witwatersrand transvaal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "woof is part of weave", "pln": ["(: cnet_partof_26a7511d8a (PartOf woof weave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "worcester is part of england", "pln": ["(: cnet_partof_21dc8e2450 (PartOf worcester england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "worcester is part of massachusett", "pln": ["(: cnet_partof_bfc7865d82 (PartOf worcester massachusett) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "word is part of language", "pln": ["(: cnet_partof_15fbe014c8 (PartOf word language) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "word is part of sentence", "pln": ["(: cnet_partof_977da7368d (PartOf word sentence) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "word is part of kilobyte", "pln": ["(: cnet_partof_40cccf0d7e (PartOf word kilobyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "word division is part of orthography", "pln": ["(: cnet_partof_42fa2f614d (PartOf word_division orthography) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "word order is part of text", "pln": ["(: cnet_partof_fe79d35db7 (PartOf word_order text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "workweek is part of week", "pln": ["(: cnet_partof_159210650a (PartOf workweek week) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "world trade center is part of new york", "pln": ["(: cnet_partof_bb36112909 (PartOf world_trade_center new_york) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "worm is part of worm gear", "pln": ["(: cnet_partof_08e28c0fe0 (PartOf worm worm_gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "worm wheel is part of worm gear", "pln": ["(: cnet_partof_51523c9dba (PartOf worm_wheel worm_gear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wrangell st elia national park is part of alaska", "pln": ["(: cnet_partof_2f3202ad24 (PartOf wrangell_st_elia_national_park alaska) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "wrestling hold is part of wrestling", "pln": ["(: cnet_partof_c852fa83b6 (PartOf wrestling_hold wrestling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "wrinkle is part of skin", "pln": ["(: cnet_partof_8254e1744e (PartOf wrinkle skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wrist is part of arm", "pln": ["(: cnet_partof_c9f67a1107 (PartOf wrist arm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wristband is part of sleeve", "pln": ["(: cnet_partof_1a37895750 (PartOf wristband sleeve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "writer s name is part of by line", "pln": ["(: cnet_partof_6459a1174f (PartOf writer_s_name by_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "writing arm is part of tablet armed chair", "pln": ["(: cnet_partof_c80490362c (PartOf writing_arm tablet_armed_chair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wroclaw is part of poland", "pln": ["(: cnet_partof_a0a64b8a08 (PartOf wroclaw poland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "wuhan is part of china", "pln": ["(: cnet_partof_28fabff451 (PartOf wuhan china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "wyoming is part of united states", "pln": ["(: cnet_partof_6f01057f97 (PartOf wyoming united_states) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wurzburg is part of germany", "pln": ["(: cnet_partof_589137e82f (PartOf wurzburg germany) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "wyoming is part of united state", "pln": ["(: cnet_partof_5e29cdd644 (PartOf wyoming united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "x ray tube is part of x ray machine", "pln": ["(: cnet_partof_a2c681e95c (PartOf x_ray_tube x_ray_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "xian is part of china", "pln": ["(: cnet_partof_76b5d7b0d6 (PartOf xian china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "xinjiang is part of china", "pln": ["(: cnet_partof_89a97db7ad (PartOf xinjiang china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "xiphoid process is part of sternum", "pln": ["(: cnet_partof_c9475663f0 (PartOf xiphoid_process sternum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "xylem is part of woody plant", "pln": ["(: cnet_partof_09e7edbe3b (PartOf xylem woody_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yakima is part of washington", "pln": ["(: cnet_partof_8f62f7d59c (PartOf yakima washington) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yale university is part of new haven", "pln": ["(: cnet_partof_cec021b8f7 (PartOf yale_university new_haven) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yalta is part of crimea", "pln": ["(: cnet_partof_556488646f (PartOf yalta crimea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yalu is part of north korea", "pln": ["(: cnet_partof_a519a001ed (PartOf yalu north_korea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yalu river is part of korean war", "pln": ["(: cnet_partof_ae0535910f (PartOf yalu_river korean_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yam is part of yam", "pln": ["(: cnet_partof_86d9383a76 (PartOf yam yam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yangon is part of myanmar", "pln": ["(: cnet_partof_970ac6f2d3 (PartOf yangon myanmar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yaounde is part of cameroon", "pln": ["(: cnet_partof_300c34bf96 (PartOf yaounde cameroon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yard is part of sailing vessel", "pln": ["(: cnet_partof_bd3fdae7e2 (PartOf yard sailing_vessel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yard is part of chain", "pln": ["(: cnet_partof_aa3b00f0e5 (PartOf yard chain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yard is part of fathom", "pln": ["(: cnet_partof_6e8b418e72 (PartOf yard fathom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "yard is part of lea", "pln": ["(: cnet_partof_c85c6bbcc7 (PartOf yard lea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yard is part of perch", "pln": ["(: cnet_partof_4b4fb47432 (PartOf yard perch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "yardarm is part of yard", "pln": ["(: cnet_partof_7a8a982c33 (PartOf yardarm yard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yazoo is part of mississippi", "pln": ["(: cnet_partof_b9f82d139c (PartOf yazoo mississippi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "year is part of decade", "pln": ["(: cnet_partof_b588ba5bf1 (PartOf year decade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yellow rocket is part of barbarea", "pln": ["(: cnet_partof_175875d47f (PartOf yellow_rocket barbarea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yellow sea is part of pacific", "pln": ["(: cnet_partof_0faf5b408c (PartOf yellow_sea pacific) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yellow squash is part of yellow squash", "pln": ["(: cnet_partof_696a3608f4 (PartOf yellow_squash yellow_squash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yellowknife is part of northwest territory", "pln": ["(: cnet_partof_edf55da8c3 (PartOf yellowknife northwest_territory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yellowstone is part of montana", "pln": ["(: cnet_partof_346d7c8ea3 (PartOf yellowstone montana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yellowstone is part of wyoming", "pln": ["(: cnet_partof_fd15b2cfc9 (PartOf yellowstone wyoming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yellowstone national park is part of idaho", "pln": ["(: cnet_partof_9b4c9bbc4b (PartOf yellowstone_national_park idaho) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yellowstone national park is part of montana", "pln": ["(: cnet_partof_db9f9f3ec9 (PartOf yellowstone_national_park montana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yellowstone national park is part of wyoming", "pln": ["(: cnet_partof_3a5e8b545d (PartOf yellowstone_national_park wyoming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yellowtail flounder is part of yellowtail flounder", "pln": ["(: cnet_partof_24b803e2b4 (PartOf yellowtail_flounder yellowtail_flounder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yemen is part of arabian peninsula", "pln": ["(: cnet_partof_daeba08385 (PartOf yemen arabian_peninsula) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yemen is part of asia", "pln": ["(: cnet_partof_cc8e7c62bf (PartOf yemen asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yenisei is part of siberia", "pln": ["(: cnet_partof_69b475ae3a (PartOf yenisei siberia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yeomanry is part of territorial army", "pln": ["(: cnet_partof_aae3cc24b0 (PartOf yeomanry territorial_army) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yerevan is part of armenia", "pln": ["(: cnet_partof_f9e876576d (PartOf yerevan armenia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yerupaja is part of ande", "pln": ["(: cnet_partof_1d1769588e (PartOf yerupaja ande) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yerupaja is part of peru", "pln": ["(: cnet_partof_33a7146281 (PartOf yerupaja peru) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "yogyakarta is part of java", "pln": ["(: cnet_partof_22ef5209dc (PartOf yogyakarta java) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yoke is part of garment", "pln": ["(: cnet_partof_024c4f8688 (PartOf yoke garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yokohama is part of honshu", "pln": ["(: cnet_partof_5971b26764 (PartOf yokohama honshu) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yokohama is part of japan", "pln": ["(: cnet_partof_981156d7a6 (PartOf yokohama japan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yolk is part of egg", "pln": ["(: cnet_partof_27f868327a (PartOf yolk egg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yorkshire is part of england", "pln": ["(: cnet_partof_28be882b6d (PartOf yorkshire england) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yorktown is part of american revolution", "pln": ["(: cnet_partof_803c258aa4 (PartOf yorktown american_revolution) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yorktown is part of virginia", "pln": ["(: cnet_partof_c027dfdeb1 (PartOf yorktown virginia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yosemite is part of united state", "pln": ["(: cnet_partof_707e8f5aa6 (PartOf yosemite united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "yosemite national park is part of california", "pln": ["(: cnet_partof_60c3bf705a (PartOf yosemite_national_park california) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} -{"nl": "yukon is part of united states", "pln": ["(: cnet_partof_84e3736911 (PartOf yukon united_states) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "youngstown is part of ohio", "pln": ["(: cnet_partof_b7f6f6f0e1 (PartOf youngstown ohio) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "ypre is part of world war i", "pln": ["(: cnet_partof_39a3784b5d (PartOf ypre world_war_i) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yucatan is part of mexico", "pln": ["(: cnet_partof_712faa3047 (PartOf yucatan mexico) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yukon is part of canada", "pln": ["(: cnet_partof_c787f07972 (PartOf yukon canada) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yukon is part of united state", "pln": ["(: cnet_partof_b4680085f6 (PartOf yukon united_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yuma is part of arizona", "pln": ["(: cnet_partof_ba09d5a658 (PartOf yuma arizona) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "yunnan is part of china", "pln": ["(: cnet_partof_e870cf25a3 (PartOf yunnan china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zabrze is part of poland", "pln": ["(: cnet_partof_450991f56c (PartOf zabrze poland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zagreb is part of croatia", "pln": ["(: cnet_partof_be688d4320 (PartOf zagreb croatia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zama is part of punic war", "pln": ["(: cnet_partof_6303d6a2a3 (PartOf zama punic_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zambezi is part of angola", "pln": ["(: cnet_partof_4197b84f6d (PartOf zambezi angola) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zambezi is part of mozambique", "pln": ["(: cnet_partof_c858cf8a5f (PartOf zambezi mozambique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zambezi is part of zambia", "pln": ["(: cnet_partof_3e8e287e39 (PartOf zambezi zambia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zambezi is part of zimbabwe", "pln": ["(: cnet_partof_f5702429da (PartOf zambezi zimbabwe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zambia is part of africa", "pln": ["(: cnet_partof_76cdf5d6d7 (PartOf zambia africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zanzibar is part of tanzania", "pln": ["(: cnet_partof_1f15940dcf (PartOf zanzibar tanzania) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zaragoza is part of spain", "pln": ["(: cnet_partof_aa9a2c2d9e (PartOf zaragoza spain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zaria is part of nigeria", "pln": ["(: cnet_partof_2fb80956f4 (PartOf zaria nigeria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zarqa is part of jordan", "pln": ["(: cnet_partof_c31d4a3979 (PartOf zarqa jordan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zb is part of yb", "pln": ["(: cnet_partof_e295e5c05d (PartOf zb yb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zealand is part of denmark", "pln": ["(: cnet_partof_88efdc3108 (PartOf zealand denmark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zebibit is part of yobibit", "pln": ["(: cnet_partof_bbc4c1ee9e (PartOf zebibit yobibit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zechariah is part of old testament", "pln": ["(: cnet_partof_5f71d80c99 (PartOf zechariah old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zechariah is part of prophet", "pln": ["(: cnet_partof_7d33c6b52d (PartOf zechariah prophet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zenith is part of celestial sphere", "pln": ["(: cnet_partof_33fe49db9d (PartOf zenith celestial_sphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zephaniah is part of old testament", "pln": ["(: cnet_partof_f281b86930 (PartOf zephaniah old_testament) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zephaniah is part of prophet", "pln": ["(: cnet_partof_5a53e3e9bd (PartOf zephaniah prophet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zettabit is part of yottabit", "pln": ["(: cnet_partof_835f91e892 (PartOf zettabit yottabit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zettabyte is part of yottabyte", "pln": ["(: cnet_partof_89b117fe2c (PartOf zettabyte yottabyte) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zhu jiangi is part of china", "pln": ["(: cnet_partof_f7e31c8944 (PartOf zhu_jiangi china) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zimbabwe is part of africa", "pln": ["(: cnet_partof_763e5b0d09 (PartOf zimbabwe africa) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zion is part of jerusalem", "pln": ["(: cnet_partof_491da49ab8 (PartOf zion jerusalem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zion national park is part of utah", "pln": ["(: cnet_partof_d5806cdca4 (PartOf zion_national_park utah) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zip code is part of address", "pln": ["(: cnet_partof_4b4e9642e7 (PartOf zip_code address) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zodiac is part of celestial sphere", "pln": ["(: cnet_partof_ea417c44d2 (PartOf zodiac celestial_sphere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zomba is part of malawi", "pln": ["(: cnet_partof_bfc2316d54 (PartOf zomba malawi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zone of interior is part of theater of war", "pln": ["(: cnet_partof_940a5b84af (PartOf zone_of_interior theater_of_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zucchini is part of zucchini", "pln": ["(: cnet_partof_6916d47480 (PartOf zucchini zucchini) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zuider zee is part of north sea", "pln": ["(: cnet_partof_b824713897 (PartOf zuider_zee north_sea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zurich is part of switzerland", "pln": ["(: cnet_partof_b2ccd19585 (PartOf zurich switzerland) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zygoma is part of cheekbone", "pln": ["(: cnet_partof_056cc0db53 (PartOf zygoma cheekbone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "zygomatic process is part of cheekbone", "pln": ["(: cnet_partof_43b203c2f2 (PartOf zygomatic_process cheekbone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} {"nl": "zygotene is part of prophase", "pln": ["(: cnet_partof_578c19c8d2 (PartOf zygotene prophase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "PartOf"} +{"nl": "accelerator is used for accelerate", "pln": ["(: cnet_usedfor_8103c93752 (UsedFor accelerator accelerate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "accelerator is used for speed", "pln": ["(: cnet_usedfor_c09aac4fb6 (UsedFor accelerator speed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "accommodation is used for staying in", "pln": ["(: cnet_usedfor_fcd4c64dbd (UsedFor accommodation staying_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "accommodation is used for sleeping", "pln": ["(: cnet_usedfor_4f547542d2 (UsedFor accommodation sleeping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "accordion is used for make music", "pln": ["(: cnet_usedfor_7e473af7bc (UsedFor accordion make_music) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "accordion is used for making music", "pln": ["(: cnet_usedfor_618fb890c5 (UsedFor accordion making_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "accordion is used for polka music", "pln": ["(: cnet_usedfor_c05f0ba314 (UsedFor accordion polka_music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "account book is used for keeping track of expens", "pln": ["(: cnet_usedfor_162805fd50 (UsedFor account_book keeping_track_of_expens) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "acne medication is used for clear skin", "pln": ["(: cnet_usedfor_ab4097cb36 (UsedFor acne_medication clear_skin) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "acne medication is used for getting rid of pimple", "pln": ["(: cnet_usedfor_a78b43567a (UsedFor acne_medication getting_rid_of_pimple) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "acne medication is used for getting rid of spot", "pln": ["(: cnet_usedfor_4d1d7f68c0 (UsedFor acne_medication getting_rid_of_spot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "acoustic ceiling is used for reduce echoe", "pln": ["(: cnet_usedfor_109f3a0814 (UsedFor acoustic_ceiling reduce_echoe) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "acoustic guitar is used for folk music", "pln": ["(: cnet_usedfor_a0f53c23ba (UsedFor acoustic_guitar folk_music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "acoustic guitar is used for performing music", "pln": ["(: cnet_usedfor_f43f4bc977 (UsedFor acoustic_guitar performing_music) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "acoustic guitar is used for playing music", "pln": ["(: cnet_usedfor_9357ce39c9 (UsedFor acoustic_guitar playing_music) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "acrylic is used for for painting with", "pln": ["(: cnet_usedfor_1ea343523a (UsedFor acrylic for_painting_with) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "acrylic is used for making paint", "pln": ["(: cnet_usedfor_831dfbe7c0 (UsedFor acrylic making_paint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "acrylic is used for paint picture", "pln": ["(: cnet_usedfor_b79bb037d6 (UsedFor acrylic paint_picture) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "acrylic is used for painting thing", "pln": ["(: cnet_usedfor_e4104e9bbc (UsedFor acrylic painting_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "acting in play is used for entertaining audience", "pln": ["(: cnet_usedfor_7d4e922613 (UsedFor acting_in_play entertaining_audience) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "acting in play is used for portraying charactor", "pln": ["(: cnet_usedfor_0f014e7af8 (UsedFor acting_in_play portraying_charactor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "action figure is used for have fun", "pln": ["(: cnet_usedfor_531b83595a (UsedFor action_figure have_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "action figure is used for play", "pln": ["(: cnet_usedfor_eb4fa08be3 (UsedFor action_figure play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "adding up numbers is used for getting total", "pln": ["(: cnet_usedfor_9902eb1e19 (UsedFor adding_up_numbers getting_total) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "action figure is used for play with", "pln": ["(: cnet_usedfor_43cba238e3 (UsedFor action_figure play_with) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "action figure is used for playing", "pln": ["(: cnet_usedfor_6dbb358e77 (UsedFor action_figure playing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "adding up column of number is used for accountant", "pln": ["(: cnet_usedfor_e86f058960 (UsedFor adding_up_column_of_number accountant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "adding up number is used for building sum", "pln": ["(: cnet_usedfor_aebe1ddaf1 (UsedFor adding_up_number building_sum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "adding up number is used for finding total", "pln": ["(: cnet_usedfor_c31f488479 (UsedFor adding_up_number finding_total) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "adding up number is used for getting sum", "pln": ["(: cnet_usedfor_06459f0a90 (UsedFor adding_up_number getting_sum) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "adding up number is used for getting total", "pln": ["(: cnet_usedfor_a55433c4ba (UsedFor adding_up_number getting_total) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "adding up number is used for totalling", "pln": ["(: cnet_usedfor_825cd8bbe2 (UsedFor adding_up_number totalling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "adhesive bandage is used for cover wound", "pln": ["(: cnet_usedfor_0645abf4c2 (UsedFor adhesive_bandage cover_wound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "adhesive bandage is used for cut", "pln": ["(: cnet_usedfor_955db6e8ec (UsedFor adhesive_bandage cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "advancing into battle is used for attacking enemy", "pln": ["(: cnet_usedfor_3c1802379e (UsedFor advancing_into_battle attacking_enemy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "advancing into battle is used for gaining offensive", "pln": ["(: cnet_usedfor_8c29bfd211 (UsedFor advancing_into_battle gaining_offensive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "advancing into battle is used for going to war", "pln": ["(: cnet_usedfor_df3b8dd39e (UsedFor advancing_into_battle going_to_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "advertisement is used for selling product", "pln": ["(: cnet_usedfor_f1f6bf9cbc (UsedFor advertisement selling_product) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "advertising panel is used for advertising", "pln": ["(: cnet_usedfor_78e209c81d (UsedFor advertising_panel advertising) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "aerial bomb is used for blowing thing up", "pln": ["(: cnet_usedfor_7028bde48c (UsedFor aerial_bomb blowing_thing_up) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "air conditioner is used for cool room", "pln": ["(: cnet_usedfor_bac6cfc62d (UsedFor air_conditioner cool_room) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "air conditioner is used for cooling air", "pln": ["(: cnet_usedfor_2f55ce8944 (UsedFor air_conditioner cooling_air) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "air conditioner is used for cooling room", "pln": ["(: cnet_usedfor_c0cdd2b5bd (UsedFor air_conditioner cooling_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "air conditioning is used for cool down", "pln": ["(: cnet_usedfor_a59c730d9b (UsedFor air_conditioning cool_down) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "air conditioning is used for cooling room", "pln": ["(: cnet_usedfor_3dbb042a56 (UsedFor air_conditioning cooling_room) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "air ticket is used for traveling", "pln": ["(: cnet_usedfor_db3a210720 (UsedFor air_ticket traveling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "aircraft is used for fly", "pln": ["(: cnet_usedfor_1ed81ce8ca (UsedFor aircraft fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "aircraft is used for land", "pln": ["(: cnet_usedfor_f1fe22fc45 (UsedFor aircraft land) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "aircraft is used for transport", "pln": ["(: cnet_usedfor_4ceb874cde (UsedFor aircraft transport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "airline seat is used for sitting in airplane", "pln": ["(: cnet_usedfor_c3d2061c00 (UsedFor airline_seat sitting_in_airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "airplane is used for air transportation", "pln": ["(: cnet_usedfor_68b1e1ba43 (UsedFor airplane air_transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "airplane is used for flight", "pln": ["(: cnet_usedfor_c4951db75b (UsedFor airplane flight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "airplane is used for fly", "pln": ["(: cnet_usedfor_842abc5925 (UsedFor airplane fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "airplane is used for transport", "pln": ["(: cnet_usedfor_097e7d2412 (UsedFor airplane transport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "airplane is used for traveling", "pln": ["(: cnet_usedfor_35ca630161 (UsedFor airplane traveling) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "airplane seat is used for sitting in", "pln": ["(: cnet_usedfor_ee995c49a3 (UsedFor airplane_seat sitting_in) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "aisle is used for getting to seat", "pln": ["(: cnet_usedfor_c77d8b32de (UsedFor aisle getting_to_seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "aisle is used for organize store", "pln": ["(: cnet_usedfor_fd921412ca (UsedFor aisle organize_store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "aisle is used for walking", "pln": ["(: cnet_usedfor_686517f1f7 (UsedFor aisle walking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "aisle is used for walking through", "pln": ["(: cnet_usedfor_9acfbbf4c9 (UsedFor aisle walking_through) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "alarm is used for alarm", "pln": ["(: cnet_usedfor_57fa2eef90 (UsedFor alarm alarm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "alarm is used for alert", "pln": ["(: cnet_usedfor_63afde6378 (UsedFor alarm alert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "alarm is used for ring", "pln": ["(: cnet_usedfor_3cfea7200c (UsedFor alarm ring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "alarm is used for warn", "pln": ["(: cnet_usedfor_029cade017 (UsedFor alarm warn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "alarm clock is used for awaken", "pln": ["(: cnet_usedfor_c2ced39a29 (UsedFor alarm_clock awaken) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "alarm clock is used for clock", "pln": ["(: cnet_usedfor_ccc35cdcf4 (UsedFor alarm_clock clock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "alarm clock is used for clock time", "pln": ["(: cnet_usedfor_7ae766c181 (UsedFor alarm_clock clock_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "alarm clock is used for go off", "pln": ["(: cnet_usedfor_34b5b4a48f (UsedFor alarm_clock go_off) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "alarm clock is used for ring", "pln": ["(: cnet_usedfor_793bf418a6 (UsedFor alarm_clock ring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "album is used for hold photograph", "pln": ["(: cnet_usedfor_34f61d943f (UsedFor album hold_photograph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "album is used for store photograph", "pln": ["(: cnet_usedfor_0cf694db87 (UsedFor album store_photograph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "album is used for storing photograph", "pln": ["(: cnet_usedfor_1919e8fa34 (UsedFor album storing_photograph) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "album is used for play", "pln": ["(: cnet_usedfor_411391b854 (UsedFor album play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "album is used for hearer", "pln": ["(: cnet_usedfor_f96d9e3472 (UsedFor album hearer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "album is used for launch", "pln": ["(: cnet_usedfor_0dd244e890 (UsedFor album launch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "album is used for music", "pln": ["(: cnet_usedfor_0f87652a5f (UsedFor album music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "album is used for sell", "pln": ["(: cnet_usedfor_c5a83b17a9 (UsedFor album sell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "alcohol is used for clean wound", "pln": ["(: cnet_usedfor_d58147a0d4 (UsedFor alcohol clean_wound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "alcohol is used for sterilize instrument", "pln": ["(: cnet_usedfor_f662978474 (UsedFor alcohol sterilize_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "altar is used for pray to god", "pln": ["(: cnet_usedfor_d1fd83be9a (UsedFor altar pray_to_god) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "alto is used for singing", "pln": ["(: cnet_usedfor_c255e5f6a4 (UsedFor alto singing) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "ambulance is used for drive", "pln": ["(: cnet_usedfor_b6b42d1318 (UsedFor ambulance drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ambulance is used for rush", "pln": ["(: cnet_usedfor_eef1d5269f (UsedFor ambulance rush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "ambulance is used for transport", "pln": ["(: cnet_usedfor_5ea2d8c047 (UsedFor ambulance transport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "analysing is used for getting detail", "pln": ["(: cnet_usedfor_fa3b8cf5c3 (UsedFor analysing getting_detail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "analysing is used for learning from", "pln": ["(: cnet_usedfor_91fdeac681 (UsedFor analysing learning_from) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "analysing is used for understanding", "pln": ["(: cnet_usedfor_6bd5ebf52a (UsedFor analysing understanding) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "animal is used for food", "pln": ["(: cnet_usedfor_a8f53f8a02 (UsedFor animal food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "animal is used for killing for food", "pln": ["(: cnet_usedfor_8d4c3daa24 (UsedFor animal killing_for_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "animal is used for pet", "pln": ["(: cnet_usedfor_836f42eddd (UsedFor animal pet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "animal is used for petting", "pln": ["(: cnet_usedfor_f47b0af72e (UsedFor animal petting) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "anime is used for entertainment", "pln": ["(: cnet_usedfor_659280021c (UsedFor anime entertainment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "answering question is used for educating", "pln": ["(: cnet_usedfor_c05363a352 (UsedFor answering_question educating) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "answering question is used for give information", "pln": ["(: cnet_usedfor_ab5735fa91 (UsedFor answering_question give_information) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "answering question is used for giving information", "pln": ["(: cnet_usedfor_92d89314f1 (UsedFor answering_question giving_information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "answering question is used for teaching", "pln": ["(: cnet_usedfor_d709d4ca88 (UsedFor answering_question teaching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "antibiotic is used for kill bacteria", "pln": ["(: cnet_usedfor_aebe980b28 (UsedFor antibiotic kill_bacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "anxious people is used for anxiety", "pln": ["(: cnet_usedfor_89ff374cdb (UsedFor anxious_people anxiety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "apartment building is used for live in", "pln": ["(: cnet_usedfor_50427a42ad (UsedFor apartment_building live_in) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "apartment building is used for living in", "pln": ["(: cnet_usedfor_1d6fcd7531 (UsedFor apartment_building living_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "apartment building is used for people to live in", "pln": ["(: cnet_usedfor_149d545f76 (UsedFor apartment_building people_to_live_in) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "apparatus is used for perform", "pln": ["(: cnet_usedfor_4eafccfd7d (UsedFor apparatus perform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "apparatus is used for serve", "pln": ["(: cnet_usedfor_672e48a7e8 (UsedFor apparatus serve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "apparatus is used for work", "pln": ["(: cnet_usedfor_c25114b9d4 (UsedFor apparatus work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "apple is used for eating", "pln": ["(: cnet_usedfor_ab98504c8f (UsedFor apple eating) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "apple is used for making apple pie", "pln": ["(: cnet_usedfor_dd4ada497c (UsedFor apple making_apple_pie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "apple is used for sate hunger", "pln": ["(: cnet_usedfor_34a82ac435 (UsedFor apple sate_hunger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "applying for job is used for getting job", "pln": ["(: cnet_usedfor_1091410a1d (UsedFor applying_for_job getting_job) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "appointment book is used for remind person of schedule", "pln": ["(: cnet_usedfor_fac04489a9 (UsedFor appointment_book remind_person_of_schedule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "appointment book is used for scheduling", "pln": ["(: cnet_usedfor_b87af92568 (UsedFor appointment_book scheduling) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "aquarium is used for attract", "pln": ["(: cnet_usedfor_96ab0589eb (UsedFor aquarium attract) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "aquarium is used for fish", "pln": ["(: cnet_usedfor_d2fd09c03e (UsedFor aquarium fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "aquarium is used for hold", "pln": ["(: cnet_usedfor_76dbaa86c5 (UsedFor aquarium hold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "aquarium is used for house", "pln": ["(: cnet_usedfor_8d010578b7 (UsedFor aquarium house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "archaeology is used for learning about past", "pln": ["(: cnet_usedfor_32d07cb13e (UsedFor archaeology learning_about_past) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "arm is used for lifting things", "pln": ["(: cnet_usedfor_3a7afcabc3 (UsedFor arm lifting_things) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "architecture is used for regulate behavior", "pln": ["(: cnet_usedfor_fc4a852adc (UsedFor architecture regulate_behavior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "archway is used for pass through", "pln": ["(: cnet_usedfor_189ed0937d (UsedFor archway pass_through) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "area 51 is used for testing aircraft", "pln": ["(: cnet_usedfor_e4812839ca (UsedFor area_51 testing_aircraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "arena is used for competition", "pln": ["(: cnet_usedfor_fd20641151 (UsedFor arena competition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "arena is used for fight", "pln": ["(: cnet_usedfor_da1fab45d5 (UsedFor arena fight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "arena is used for gathering", "pln": ["(: cnet_usedfor_bc2ddb7c46 (UsedFor arena gathering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "arena is used for live concert", "pln": ["(: cnet_usedfor_e512dba409 (UsedFor arena live_concert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "arm is used for holding down", "pln": ["(: cnet_usedfor_f9c400643c (UsedFor arm holding_down) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "arm is used for lifting thing", "pln": ["(: cnet_usedfor_d5dca70c23 (UsedFor arm lifting_thing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "arm is used for wave", "pln": ["(: cnet_usedfor_3d5ca3c862 (UsedFor arm wave) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "arm is used for waving", "pln": ["(: cnet_usedfor_ffe5c0f312 (UsedFor arm waving) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "armchair is used for relaxing in", "pln": ["(: cnet_usedfor_8a48895406 (UsedFor armchair relaxing_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "armchair is used for resting in", "pln": ["(: cnet_usedfor_24552d3e35 (UsedFor armchair resting_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "armchair is used for sitting", "pln": ["(: cnet_usedfor_86a68b0484 (UsedFor armchair sitting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "armchair is used for sitting in", "pln": ["(: cnet_usedfor_41ff0d95cb (UsedFor armchair sitting_in) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "armchair is used for seat", "pln": ["(: cnet_usedfor_13efd4cb54 (UsedFor armchair seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "armchair is used for sitter", "pln": ["(: cnet_usedfor_9e4fe9af99 (UsedFor armchair sitter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "arrow is used for fly", "pln": ["(: cnet_usedfor_09fd228a55 (UsedFor arrow fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "arrow is used for hit", "pln": ["(: cnet_usedfor_83bc51e090 (UsedFor arrow hit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "arrow is used for pierce", "pln": ["(: cnet_usedfor_82f1655af1 (UsedFor arrow pierce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "arrow is used for shoot", "pln": ["(: cnet_usedfor_030f011d55 (UsedFor arrow shoot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "arrow is used for wound", "pln": ["(: cnet_usedfor_14e9a14643 (UsedFor arrow wound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "arrow is used for target", "pln": ["(: cnet_usedfor_78ad1f6b0c (UsedFor arrow target) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "art is used for enjoyment", "pln": ["(: cnet_usedfor_7f04ac09e6 (UsedFor art enjoyment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "art is used for express yourself", "pln": ["(: cnet_usedfor_893443b005 (UsedFor art express_yourself) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "artery is used for carrying blood", "pln": ["(: cnet_usedfor_10db90b9ce (UsedFor artery carrying_blood) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "article is used for reading", "pln": ["(: cnet_usedfor_b5309938a6 (UsedFor article reading) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "article in magazine is used for benefit of reader", "pln": ["(: cnet_usedfor_192969fe75 (UsedFor article_in_magazine benefit_of_reader) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "article in magazine is used for read", "pln": ["(: cnet_usedfor_45836243f6 (UsedFor article_in_magazine read) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "article in magazine is used for telling story", "pln": ["(: cnet_usedfor_37a6b783fa (UsedFor article_in_magazine telling_story) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "article in newspaper is used for reading", "pln": ["(: cnet_usedfor_cdcf367a0c (UsedFor article_in_newspaper reading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "asphalt is used for pave roads", "pln": ["(: cnet_usedfor_38e394ebeb (UsedFor asphalt pave_roads) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "attending class is used for teachers", "pln": ["(: cnet_usedfor_28925e16f9 (UsedFor attending_class teachers) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "baggage is used for taking things on trip", "pln": ["(: cnet_usedfor_c83da24dcd (UsedFor baggage taking_things_on_trip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "bagpipes is used for making music", "pln": ["(: cnet_usedfor_4d54fb0580 (UsedFor bagpipes making_music) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "bagpipes is used for playing music", "pln": ["(: cnet_usedfor_7851ecc40c (UsedFor bagpipes playing_music) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "asphalt is used for pave road", "pln": ["(: cnet_usedfor_1a2dea2bcc (UsedFor asphalt pave_road) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "atlantic ocean is used for sailing on", "pln": ["(: cnet_usedfor_ac871d04d7 (UsedFor atlantic_ocean sailing_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "atlantic ocean is used for shipping", "pln": ["(: cnet_usedfor_04caaf92c4 (UsedFor atlantic_ocean shipping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "atomic explosion is used for mass killing", "pln": ["(: cnet_usedfor_8e6c186614 (UsedFor atomic_explosion mass_killing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "attache case is used for carrying document", "pln": ["(: cnet_usedfor_853eeccec8 (UsedFor attache_case carrying_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "attending class is used for listening to teacher", "pln": ["(: cnet_usedfor_5404dc4bd0 (UsedFor attending_class listening_to_teacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "attending class is used for student", "pln": ["(: cnet_usedfor_3f70b88592 (UsedFor attending_class student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "attending class is used for taking note on subject", "pln": ["(: cnet_usedfor_b6c1021db5 (UsedFor attending_class taking_note_on_subject) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "attending class is used for teacher", "pln": ["(: cnet_usedfor_f27819c4c0 (UsedFor attending_class teacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "attending classical concert is used for pleasure", "pln": ["(: cnet_usedfor_92c78943c5 (UsedFor attending_classical_concert pleasure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "attending lecture is used for learning", "pln": ["(: cnet_usedfor_3d88cf70f3 (UsedFor attending_lecture learning) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "attending meeting is used for making decision", "pln": ["(: cnet_usedfor_074018f722 (UsedFor attending_meeting making_decision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "attending school is used for gaining knowledge", "pln": ["(: cnet_usedfor_691926c892 (UsedFor attending_school gaining_knowledge) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "attending school is used for learning", "pln": ["(: cnet_usedfor_848d2457fc (UsedFor attending_school learning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "attic is used for keep stuff in", "pln": ["(: cnet_usedfor_3428184457 (UsedFor attic keep_stuff_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "attribute is used for describe", "pln": ["(: cnet_usedfor_7d59675234 (UsedFor attribute describe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "attribute is used for describing", "pln": ["(: cnet_usedfor_bce2a4391e (UsedFor attribute describing) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "auditorium is used for assembly", "pln": ["(: cnet_usedfor_3557fce7ab (UsedFor auditorium assembly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "auditorium is used for lecture", "pln": ["(: cnet_usedfor_8a9724b893 (UsedFor auditorium lecture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "auditorium is used for performance", "pln": ["(: cnet_usedfor_eb6a7f6db7 (UsedFor auditorium performance) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "automobile is used for travelling", "pln": ["(: cnet_usedfor_3b919ce89e (UsedFor automobile travelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "automobile horn is used for dissonance", "pln": ["(: cnet_usedfor_e2206059f1 (UsedFor automobile_horn dissonance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "automobile horn is used for honk", "pln": ["(: cnet_usedfor_bbdb89104c (UsedFor automobile_horn honk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "automobile horn is used for sound", "pln": ["(: cnet_usedfor_5ebfe5ea4a (UsedFor automobile_horn sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "awaking is used for starting day", "pln": ["(: cnet_usedfor_bcb31129d6 (UsedFor awaking starting_day) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "baby buggy is used for baby", "pln": ["(: cnet_usedfor_8425362a12 (UsedFor baby_buggy baby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "baby buggy is used for handcart", "pln": ["(: cnet_usedfor_ac9a00f113 (UsedFor baby_buggy handcart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "back garden is used for grow plant in", "pln": ["(: cnet_usedfor_26484334d1 (UsedFor back_garden grow_plant_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "back garden is used for growing vegetable", "pln": ["(: cnet_usedfor_5d3a6954c3 (UsedFor back_garden growing_vegetable) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "back yard is used for grilling steak", "pln": ["(: cnet_usedfor_44065f2460 (UsedFor back_yard grilling_steak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "back yard is used for playing", "pln": ["(: cnet_usedfor_eada242519 (UsedFor back_yard playing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "backyard is used for having barbecue", "pln": ["(: cnet_usedfor_7c0dbf84c1 (UsedFor backyard having_barbecue) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "backyard is used for having party", "pln": ["(: cnet_usedfor_d5725d6336 (UsedFor backyard having_party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bag is used for carrying grocery", "pln": ["(: cnet_usedfor_027ee7fcf4 (UsedFor bag carrying_grocery) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bag is used for carrying thing", "pln": ["(: cnet_usedfor_7ba1e294c0 (UsedFor bag carrying_thing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bag is used for holding many small item together", "pln": ["(: cnet_usedfor_069035b08d (UsedFor bag holding_many_small_item_together) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bag is used for hold", "pln": ["(: cnet_usedfor_f899b98b30 (UsedFor bag hold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bag is used for transport", "pln": ["(: cnet_usedfor_7f2c3e18fe (UsedFor bag transport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bag is used for traveler", "pln": ["(: cnet_usedfor_d21bd0747a (UsedFor bag traveler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bag is used for wearer", "pln": ["(: cnet_usedfor_adf96cb762 (UsedFor bag wearer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "baggage is used for carry clothe", "pln": ["(: cnet_usedfor_ff73e51c00 (UsedFor baggage carry_clothe) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "baggage is used for holding clothe", "pln": ["(: cnet_usedfor_aeca436e06 (UsedFor baggage holding_clothe) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "baggage is used for taking thing on trip", "pln": ["(: cnet_usedfor_dc696ca598 (UsedFor baggage taking_thing_on_trip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "baggage is used for travel", "pln": ["(: cnet_usedfor_4ceddb3e9f (UsedFor baggage travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bagpipe is used for making music", "pln": ["(: cnet_usedfor_830ee7a132 (UsedFor bagpipe making_music) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bagpipe is used for play music", "pln": ["(: cnet_usedfor_d51661c843 (UsedFor bagpipe play_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bagpipe is used for playing music", "pln": ["(: cnet_usedfor_ea973029a1 (UsedFor bagpipe playing_music) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bait is used for catch bass", "pln": ["(: cnet_usedfor_7a9e1527b0 (UsedFor bait catch_bass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bait is used for catch fish", "pln": ["(: cnet_usedfor_bfae1e5b2f (UsedFor bait catch_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "baking cake is used for birthday", "pln": ["(: cnet_usedfor_d4ca3ef67b (UsedFor baking_cake birthday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "baking cake is used for celebrating birthday", "pln": ["(: cnet_usedfor_5f074d9147 (UsedFor baking_cake celebrating_birthday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "baking cake is used for dessert", "pln": ["(: cnet_usedfor_db14603b83 (UsedFor baking_cake dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "baking cake is used for eating", "pln": ["(: cnet_usedfor_f562aa3285 (UsedFor baking_cake eating) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "baking cake is used for special occasion", "pln": ["(: cnet_usedfor_7afdd1ef04 (UsedFor baking_cake special_occasion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "baking oven is used for bake bread", "pln": ["(: cnet_usedfor_e9045f71b6 (UsedFor baking_oven bake_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "baking oven is used for baking", "pln": ["(: cnet_usedfor_b54b7d2331 (UsedFor baking_oven baking) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "baking oven is used for baking cake", "pln": ["(: cnet_usedfor_0a4f4ecb82 (UsedFor baking_oven baking_cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "baking oven is used for cook", "pln": ["(: cnet_usedfor_7b50298e04 (UsedFor baking_oven cook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "baking oven is used for cooky", "pln": ["(: cnet_usedfor_8690fca6fc (UsedFor baking_oven cooky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "baking oven is used for cooking food", "pln": ["(: cnet_usedfor_61b0fedcab (UsedFor baking_oven cooking_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "balalaika is used for make music", "pln": ["(: cnet_usedfor_3d8e900c18 (UsedFor balalaika make_music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "balalaika is used for making music", "pln": ["(: cnet_usedfor_382b6aae77 (UsedFor balalaika making_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "balalaika is used for play russian music", "pln": ["(: cnet_usedfor_0774ae2e20 (UsedFor balalaika play_russian_music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ball is used for bouncing", "pln": ["(: cnet_usedfor_69622988c7 (UsedFor ball bouncing) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ball is used for bowling", "pln": ["(: cnet_usedfor_62285b1034 (UsedFor ball bowling) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ball is used for dancing at", "pln": ["(: cnet_usedfor_c2e68140a0 (UsedFor ball dancing_at) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ball is used for do pilate exercis", "pln": ["(: cnet_usedfor_35bd5cb382 (UsedFor ball do_pilate_exercis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ball is used for having fun", "pln": ["(: cnet_usedfor_da73880c7c (UsedFor ball having_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "ball is used for inflating", "pln": ["(: cnet_usedfor_253559f7db (UsedFor ball inflating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ball is used for play", "pln": ["(: cnet_usedfor_ab08ca8e48 (UsedFor ball play) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ball is used for play with dog", "pln": ["(: cnet_usedfor_2ff5a383f2 (UsedFor ball play_with_dog) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ball is used for playing baseball", "pln": ["(: cnet_usedfor_82ea9802fc (UsedFor ball playing_baseball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ball is used for playing basketball", "pln": ["(: cnet_usedfor_b3ea4e29cf (UsedFor ball playing_basketball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ball is used for playing football", "pln": ["(: cnet_usedfor_7073e3ccc7 (UsedFor ball playing_football) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ball is used for playing game", "pln": ["(: cnet_usedfor_345a2301e6 (UsedFor ball playing_game) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ball is used for rolling", "pln": ["(: cnet_usedfor_44d912908d (UsedFor ball rolling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "ball is used for tennis", "pln": ["(: cnet_usedfor_36eaf574f3 (UsedFor ball tennis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "ball is used for throwing", "pln": ["(: cnet_usedfor_72cca3771e (UsedFor ball throwing) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ball is used for bounce", "pln": ["(: cnet_usedfor_46b9065a69 (UsedFor ball bounce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ball is used for roll", "pln": ["(: cnet_usedfor_f495fbde1d (UsedFor ball roll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "balloon is used for birthday party", "pln": ["(: cnet_usedfor_59ab275e5f (UsedFor balloon birthday_party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "balloon is used for decoration", "pln": ["(: cnet_usedfor_4a562314be (UsedFor balloon decoration) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "balloon is used for opening clogged artery", "pln": ["(: cnet_usedfor_b401c3e778 (UsedFor balloon opening_clogged_artery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ballpoint pen is used for pointing at", "pln": ["(: cnet_usedfor_1a1687ff1e (UsedFor ballpoint_pen pointing_at) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ballpoint pen is used for write thing down", "pln": ["(: cnet_usedfor_314422cd78 (UsedFor ballpoint_pen write_thing_down) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ballpoint pen is used for write with", "pln": ["(: cnet_usedfor_a2154b1bb4 (UsedFor ballpoint_pen write_with) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ballpoint pen is used for writing", "pln": ["(: cnet_usedfor_865da88d8c (UsedFor ballpoint_pen writing) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "band aid is used for cover wound", "pln": ["(: cnet_usedfor_eee0a0d6bc (UsedFor band_aid cover_wound) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "band aid is used for heal wound", "pln": ["(: cnet_usedfor_3ad0c4c4fc (UsedFor band_aid heal_wound) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "band aid is used for putting on cut", "pln": ["(: cnet_usedfor_66e18402ba (UsedFor band_aid putting_on_cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "band aid is used for stopping bleeding", "pln": ["(: cnet_usedfor_cb61dc1a64 (UsedFor band_aid stopping_bleeding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bandage is used for cover wound", "pln": ["(: cnet_usedfor_b4cfaed553 (UsedFor bandage cover_wound) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "banjo is used for making music", "pln": ["(: cnet_usedfor_2916ad7eba (UsedFor banjo making_music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "banjo is used for perform music", "pln": ["(: cnet_usedfor_d76dd4d74c (UsedFor banjo perform_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "banjo is used for strumming", "pln": ["(: cnet_usedfor_d67293c094 (UsedFor banjo strumming) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bank is used for save money", "pln": ["(: cnet_usedfor_43a36d8a09 (UsedFor bank save_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bank is used for store money", "pln": ["(: cnet_usedfor_d0bbbbcafd (UsedFor bank store_money) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bank is used for storing money", "pln": ["(: cnet_usedfor_8f18418a4d (UsedFor bank storing_money) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bar is used for getting drunk", "pln": ["(: cnet_usedfor_c207166172 (UsedFor bar getting_drunk) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "bar is used for protect", "pln": ["(: cnet_usedfor_10f382047a (UsedFor bar protect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bar is used for separate", "pln": ["(: cnet_usedfor_ab6fda9fae (UsedFor bar separate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "bar stool is used for sitting at bar", "pln": ["(: cnet_usedfor_548fe0434f (UsedFor bar_stool sitting_at_bar) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bar stool is used for sitting on", "pln": ["(: cnet_usedfor_0bb3929fe2 (UsedFor bar_stool sitting_on) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "barbecue is used for cooking food", "pln": ["(: cnet_usedfor_dd8f81fe6a (UsedFor barbecue cooking_food) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "barbecue is used for cook", "pln": ["(: cnet_usedfor_ec06e92007 (UsedFor barbecue cook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "barbecue restaurant is used for dining", "pln": ["(: cnet_usedfor_478689c486 (UsedFor barbecue_restaurant dining) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "barbecue restaurant is used for eat food", "pln": ["(: cnet_usedfor_095b1640cd (UsedFor barbecue_restaurant eat_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "barber comb is used for combing hair", "pln": ["(: cnet_usedfor_9fbd125b6e (UsedFor barber_comb combing_hair) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "barber comb is used for cutting hair", "pln": ["(: cnet_usedfor_f966d63f90 (UsedFor barber_comb cutting_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "barber shop is used for get hair trimmed", "pln": ["(: cnet_usedfor_f427981e44 (UsedFor barber_shop get_hair_trimmed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "barber shop is used for get haircut", "pln": ["(: cnet_usedfor_b2f64bd089 (UsedFor barber_shop get_haircut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "barber shop is used for getting hair cut", "pln": ["(: cnet_usedfor_5e6afcf79e (UsedFor barber_shop getting_hair_cut) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "barber shop is used for haircut", "pln": ["(: cnet_usedfor_ae2535cf5d (UsedFor barber_shop haircut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "barbershop is used for get haircut", "pln": ["(: cnet_usedfor_ec9afb58e6 (UsedFor barbershop get_haircut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "barn is used for for giving animal shelter", "pln": ["(: cnet_usedfor_60d9c1150c (UsedFor barn for_giving_animal_shelter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "barn is used for keeping animal", "pln": ["(: cnet_usedfor_bc3130738f (UsedFor barn keeping_animal) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "barn is used for storing farming equipment", "pln": ["(: cnet_usedfor_76959362cb (UsedFor barn storing_farming_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "barn is used for storing hay", "pln": ["(: cnet_usedfor_4227a0e1bc (UsedFor barn storing_hay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "barrel is used for hold", "pln": ["(: cnet_usedfor_7e903189bf (UsedFor barrel hold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "barroom is used for serve", "pln": ["(: cnet_usedfor_46e44950ce (UsedFor barroom serve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "baseball is used for break window", "pln": ["(: cnet_usedfor_353272b796 (UsedFor baseball break_window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "baseball is used for playing baseball", "pln": ["(: cnet_usedfor_7a39b88f13 (UsedFor baseball playing_baseball) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "baseball is used for playing game", "pln": ["(: cnet_usedfor_f67f166319 (UsedFor baseball playing_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "baseball bat is used for hit baseball", "pln": ["(: cnet_usedfor_a0a90cde2b (UsedFor baseball_bat hit_baseball) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "baseball field is used for play baseball", "pln": ["(: cnet_usedfor_f8dd919d8f (UsedFor baseball_field play_baseball) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "baseball field is used for playing baseball", "pln": ["(: cnet_usedfor_0a68bccfb8 (UsedFor baseball_field playing_baseball) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "baseball stadium is used for baseball", "pln": ["(: cnet_usedfor_a8fe183c13 (UsedFor baseball_stadium baseball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "baseball stadium is used for fun", "pln": ["(: cnet_usedfor_10fb870f73 (UsedFor baseball_stadium fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "baseball stadium is used for play baseball", "pln": ["(: cnet_usedfor_4cfbf19ce2 (UsedFor baseball_stadium play_baseball) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "baseball stadium is used for play baseball game", "pln": ["(: cnet_usedfor_fc85594d53 (UsedFor baseball_stadium play_baseball_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "baseball stadium is used for sport", "pln": ["(: cnet_usedfor_659d9c12bf (UsedFor baseball_stadium sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "baseball ticket is used for attending baseball game", "pln": ["(: cnet_usedfor_1c47e14ee9 (UsedFor baseball_ticket attending_baseball_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "baseball ticket is used for going to game", "pln": ["(: cnet_usedfor_f538859da3 (UsedFor baseball_ticket going_to_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "basement is used for store thing", "pln": ["(: cnet_usedfor_8a5f4e473d (UsedFor basement store_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "basket is used for carrying", "pln": ["(: cnet_usedfor_db7e63b8d0 (UsedFor basket carrying) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "basket is used for hold", "pln": ["(: cnet_usedfor_20c4d4860b (UsedFor basket hold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "basket is used for include", "pln": ["(: cnet_usedfor_97d1e453f1 (UsedFor basket include) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "basket of laundry is used for holding dirty clothe", "pln": ["(: cnet_usedfor_7f2c1801eb (UsedFor basket_of_laundry holding_dirty_clothe) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "basket of laundry is used for store dirty clothe", "pln": ["(: cnet_usedfor_6aa88b07aa (UsedFor basket_of_laundry store_dirty_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "basket with handle is used for carrying thing", "pln": ["(: cnet_usedfor_48c3abca69 (UsedFor basket_with_handle carrying_thing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "basketball is used for bounc", "pln": ["(: cnet_usedfor_21345401ef (UsedFor basketball bounc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "basketball is used for throw", "pln": ["(: cnet_usedfor_02fac76588 (UsedFor basketball throw) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "basketball court is used for exercise", "pln": ["(: cnet_usedfor_274beea35f (UsedFor basketball_court exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "basketball court is used for playing basketball game", "pln": ["(: cnet_usedfor_c155199a99 (UsedFor basketball_court playing_basketball_game) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bass is used for eat", "pln": ["(: cnet_usedfor_103fb130c6 (UsedFor bass eat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bass is used for eating", "pln": ["(: cnet_usedfor_8c348faa22 (UsedFor bass eating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bass baritone is used for making music", "pln": ["(: cnet_usedfor_3c8ae6abb4 (UsedFor bass_baritone making_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bass clarinet is used for music making", "pln": ["(: cnet_usedfor_2e736058b5 (UsedFor bass_clarinet music_making) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "bass drum is used for beat", "pln": ["(: cnet_usedfor_e4eb354bf4 (UsedFor bass_drum beat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bass fiddle is used for make music", "pln": ["(: cnet_usedfor_257baf4c04 (UsedFor bass_fiddle make_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bass fiddle is used for making music", "pln": ["(: cnet_usedfor_0533c04242 (UsedFor bass_fiddle making_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bass fiddle is used for music", "pln": ["(: cnet_usedfor_b6343fd6e0 (UsedFor bass_fiddle music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bass fiddle is used for playing music", "pln": ["(: cnet_usedfor_37261dba29 (UsedFor bass_fiddle playing_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bassoon is used for make music", "pln": ["(: cnet_usedfor_d59b0aac90 (UsedFor bassoon make_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "bassoon is used for play music", "pln": ["(: cnet_usedfor_661c8bc694 (UsedFor bassoon play_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bat is used for baseball", "pln": ["(: cnet_usedfor_edd521c2ec (UsedFor bat baseball) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "bat is used for playing baseball", "pln": ["(: cnet_usedfor_0e5f29568a (UsedFor bat playing_baseball) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bath is used for cleansing body", "pln": ["(: cnet_usedfor_54b1c97f73 (UsedFor bath cleansing_body) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bath is used for relaxation", "pln": ["(: cnet_usedfor_f69e96cfdc (UsedFor bath relaxation) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "bath is used for fill", "pln": ["(: cnet_usedfor_8be55c2dca (UsedFor bath fill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bath shower is used for getting clean", "pln": ["(: cnet_usedfor_d69df22020 (UsedFor bath_shower getting_clean) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bathing is used for cleaning body", "pln": ["(: cnet_usedfor_eec7b5dc6b (UsedFor bathing cleaning_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bathing is used for cleansing body", "pln": ["(: cnet_usedfor_fa0ea55297 (UsedFor bathing cleansing_body) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bathing is used for getting body clean", "pln": ["(: cnet_usedfor_3f7e14de66 (UsedFor bathing getting_body_clean) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bathing is used for getting clean", "pln": ["(: cnet_usedfor_eab4120632 (UsedFor bathing getting_clean) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bathing is used for relaxing", "pln": ["(: cnet_usedfor_f00c0977cb (UsedFor bathing relaxing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bathing is used for removing dirt", "pln": ["(: cnet_usedfor_65d3e88f28 (UsedFor bathing removing_dirt) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "bathing is used for smelling nice", "pln": ["(: cnet_usedfor_0346f4815a (UsedFor bathing smelling_nice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bathroom is used for peeing", "pln": ["(: cnet_usedfor_08575f34aa (UsedFor bathroom peeing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bathroom is used for pooping", "pln": ["(: cnet_usedfor_b8ad039383 (UsedFor bathroom pooping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bathroom is used for taking bath", "pln": ["(: cnet_usedfor_59b1aecafe (UsedFor bathroom taking_bath) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bathroom is used for taking shower", "pln": ["(: cnet_usedfor_1696b2008e (UsedFor bathroom taking_shower) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bathroom is used for washing", "pln": ["(: cnet_usedfor_1bbe29c5df (UsedFor bathroom washing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bathroom is used for washing up", "pln": ["(: cnet_usedfor_9af591a157 (UsedFor bathroom washing_up) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bathroom is used for washing up in", "pln": ["(: cnet_usedfor_7bd0ae4d09 (UsedFor bathroom washing_up_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "bathroom with toilet is used for go potty", "pln": ["(: cnet_usedfor_603ebb9cdc (UsedFor bathroom_with_toilet go_potty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bathtub is used for bathing", "pln": ["(: cnet_usedfor_294583aa67 (UsedFor bathtub bathing) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "bathtub is used for soak in", "pln": ["(: cnet_usedfor_397f03debb (UsedFor bathtub soak_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bathtub is used for take bath in", "pln": ["(: cnet_usedfor_f786197942 (UsedFor bathtub take_bath_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "battery is used for power", "pln": ["(: cnet_usedfor_59950602ed (UsedFor battery power) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "battery is used for charge", "pln": ["(: cnet_usedfor_ba646e71d9 (UsedFor battery charge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "battery is used for run", "pln": ["(: cnet_usedfor_f8851a7ade (UsedFor battery run) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "battle is used for fighting", "pln": ["(: cnet_usedfor_5eb6698622 (UsedFor battle fighting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "battle is used for fighting war", "pln": ["(: cnet_usedfor_d4dc4769f3 (UsedFor battle fighting_war) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "battle is used for winning war", "pln": ["(: cnet_usedfor_1f106f2f2b (UsedFor battle winning_war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "bay is used for fishing in", "pln": ["(: cnet_usedfor_7e37322547 (UsedFor bay fishing_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bay is used for sailing", "pln": ["(: cnet_usedfor_cd1a97de62 (UsedFor bay sailing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bay window is used for looking out of", "pln": ["(: cnet_usedfor_9dec47e0c8 (UsedFor bay_window looking_out_of) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bbq is used for cook meat", "pln": ["(: cnet_usedfor_61e6ebf007 (UsedFor bbq cook_meat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "beach towel is used for drying yourself", "pln": ["(: cnet_usedfor_e43af8bcae (UsedFor beach_towel drying_yourself) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "beach towel is used for lying on", "pln": ["(: cnet_usedfor_1d6deaf295 (UsedFor beach_towel lying_on) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "beam is used for support", "pln": ["(: cnet_usedfor_f968a1603b (UsedFor beam support) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "beam is used for support roof", "pln": ["(: cnet_usedfor_d14fb3c3a0 (UsedFor beam support_roof) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "beam is used for supporting roof", "pln": ["(: cnet_usedfor_4fc56dbd61 (UsedFor beam supporting_roof) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "beam is used for hold", "pln": ["(: cnet_usedfor_bf6f38137e (UsedFor beam hold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "beam is used for scan", "pln": ["(: cnet_usedfor_b66709217e (UsedFor beam scan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "beam is used for shine", "pln": ["(: cnet_usedfor_982984ea51 (UsedFor beam shine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bean is used for cooking", "pln": ["(: cnet_usedfor_f0a46a599f (UsedFor bean cooking) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bean is used for grow", "pln": ["(: cnet_usedfor_4ee05a15c3 (UsedFor bean grow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bean bag chair is used for relaxation", "pln": ["(: cnet_usedfor_27aa34f130 (UsedFor bean_bag_chair relaxation) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bean bag chair is used for relaxing", "pln": ["(: cnet_usedfor_08e2034727 (UsedFor bean_bag_chair relaxing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bean bag chair is used for sit in", "pln": ["(: cnet_usedfor_f3817258c1 (UsedFor bean_bag_chair sit_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bean bag chair is used for sitting in", "pln": ["(: cnet_usedfor_ff68d93582 (UsedFor bean_bag_chair sitting_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bean bag chair is used for sitting on", "pln": ["(: cnet_usedfor_4ff218b912 (UsedFor bean_bag_chair sitting_on) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "beanbag is used for play catch", "pln": ["(: cnet_usedfor_91b0d98720 (UsedFor beanbag play_catch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "beanbag is used for playing game", "pln": ["(: cnet_usedfor_080bb40156 (UsedFor beanbag playing_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "beanbag is used for sit in", "pln": ["(: cnet_usedfor_b3ade8d63d (UsedFor beanbag sit_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "beanbag is used for sitting down", "pln": ["(: cnet_usedfor_b2a1404860 (UsedFor beanbag sitting_down) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "beanbag chair is used for relaxing", "pln": ["(: cnet_usedfor_3ceff16836 (UsedFor beanbag_chair relaxing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "beanbag chair is used for sitting", "pln": ["(: cnet_usedfor_c6df1b8cb1 (UsedFor beanbag_chair sitting) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "beanbag chair is used for sitting down", "pln": ["(: cnet_usedfor_fbdf1cdad8 (UsedFor beanbag_chair sitting_down) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "beanie baby is used for collection", "pln": ["(: cnet_usedfor_a583756436 (UsedFor beanie_baby collection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "beauty salon is used for getting manicure", "pln": ["(: cnet_usedfor_6b21d3d08c (UsedFor beauty_salon getting_manicure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "becoming inebriated is used for being social", "pln": ["(: cnet_usedfor_dcbe8dd8f5 (UsedFor becoming_inebriated being_social) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "becoming inebriated is used for feeling good", "pln": ["(: cnet_usedfor_8bf41104d7 (UsedFor becoming_inebriated feeling_good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "becoming inebriated is used for forgetting thing", "pln": ["(: cnet_usedfor_88500e062a (UsedFor becoming_inebriated forgetting_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "becoming inebriated is used for fun", "pln": ["(: cnet_usedfor_b9ae246a4d (UsedFor becoming_inebriated fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "becoming inebriated is used for relaxation", "pln": ["(: cnet_usedfor_96a0134d07 (UsedFor becoming_inebriated relaxation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "becoming more clean is used for removing dirt from body", "pln": ["(: cnet_usedfor_e6214330f9 (UsedFor becoming_more_clean removing_dirt_from_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "becoming scuba diver is used for underwater exploration", "pln": ["(: cnet_usedfor_6d24a028d4 (UsedFor becoming_scuba_diver underwater_exploration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bed is used for fucking in", "pln": ["(: cnet_usedfor_9901aecd0f (UsedFor bed fucking_in) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bed is used for have sex", "pln": ["(: cnet_usedfor_d0d59a36d9 (UsedFor bed have_sex) (STV 1.0 0.9791))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bed is used for having sex in", "pln": ["(: cnet_usedfor_b82597792e (UsedFor bed having_sex_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bed is used for laying down", "pln": ["(: cnet_usedfor_41fb621c51 (UsedFor bed laying_down) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bed is used for lie down", "pln": ["(: cnet_usedfor_715866269b (UsedFor bed lie_down) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bed is used for lying down", "pln": ["(: cnet_usedfor_171ec08fd3 (UsedFor bed lying_down) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bed is used for making love", "pln": ["(: cnet_usedfor_64315cdc59 (UsedFor bed making_love) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bed is used for napping on", "pln": ["(: cnet_usedfor_536d999626 (UsedFor bed napping_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bed is used for reading in", "pln": ["(: cnet_usedfor_f26723601f (UsedFor bed reading_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bed is used for resting", "pln": ["(: cnet_usedfor_721eda7f29 (UsedFor bed resting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bed is used for resting on", "pln": ["(: cnet_usedfor_3df41d1c94 (UsedFor bed resting_on) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bed is used for sit on", "pln": ["(: cnet_usedfor_433bcb1936 (UsedFor bed sit_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bed is used for hold", "pln": ["(: cnet_usedfor_5226a4ed27 (UsedFor bed hold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bed is used for sleep", "pln": ["(: cnet_usedfor_0536fcfb45 (UsedFor bed sleep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bed sheet is used for cover bed", "pln": ["(: cnet_usedfor_79acc2f550 (UsedFor bed_sheet cover_bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bed sheet is used for sleeping on", "pln": ["(: cnet_usedfor_f1d193542d (UsedFor bed_sheet sleeping_on) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "bedroom is used for having sex", "pln": ["(: cnet_usedfor_e8c9028fed (UsedFor bedroom having_sex) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bedroom is used for privacy", "pln": ["(: cnet_usedfor_338beb469b (UsedFor bedroom privacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "beer is used for drinking", "pln": ["(: cnet_usedfor_599975b4b1 (UsedFor beer drinking) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "beer is used for get drunk", "pln": ["(: cnet_usedfor_0ebc8a957a (UsedFor beer get_drunk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "beer mug is used for drink", "pln": ["(: cnet_usedfor_dc673834a3 (UsedFor beer_mug drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "beer mug is used for drink beer from", "pln": ["(: cnet_usedfor_46e785b143 (UsedFor beer_mug drink_beer_from) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "beer mug is used for drinking", "pln": ["(: cnet_usedfor_08e33afd30 (UsedFor beer_mug drinking) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "beer mug is used for drinking beer", "pln": ["(: cnet_usedfor_55d58b184a (UsedFor beer_mug drinking_beer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "beer mug is used for drinking beer from", "pln": ["(: cnet_usedfor_261e2a811f (UsedFor beer_mug drinking_beer_from) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "beer mug is used for filling with beer", "pln": ["(: cnet_usedfor_86bb563090 (UsedFor beer_mug filling_with_beer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "beginning work is used for starting on project", "pln": ["(: cnet_usedfor_140856baf5 (UsedFor beginning_work starting_on_project) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "being full is used for not eating anymore", "pln": ["(: cnet_usedfor_ff078ef8ce (UsedFor being_full not_eating_anymore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bell is used for getting attention", "pln": ["(: cnet_usedfor_0259245fdc (UsedFor bell getting_attention) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bell is used for make noise", "pln": ["(: cnet_usedfor_d84ac83172 (UsedFor bell make_noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bell is used for making noise", "pln": ["(: cnet_usedfor_d5af250e3a (UsedFor bell making_noise) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bell is used for ring", "pln": ["(: cnet_usedfor_2f39b10d22 (UsedFor bell ring) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "bell is used for ringing", "pln": ["(: cnet_usedfor_c8ba3ba6a2 (UsedFor bell ringing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "bells is used for attract people s attention", "pln": ["(: cnet_usedfor_cbaeb750ea (UsedFor bells attract_people_s_attention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "belt is used for holding up pants", "pln": ["(: cnet_usedfor_2500b91cc5 (UsedFor belt holding_up_pants) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bell is used for summoning people", "pln": ["(: cnet_usedfor_8795463f05 (UsedFor bell summoning_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bell is used for toll", "pln": ["(: cnet_usedfor_e954280cb7 (UsedFor bell toll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bell is used for attract people s attention", "pln": ["(: cnet_usedfor_6e97f8478c (UsedFor bell attract_people_s_attention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "belt is used for holding up pant", "pln": ["(: cnet_usedfor_895eb15ed6 (UsedFor belt holding_up_pant) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bench is used for seat", "pln": ["(: cnet_usedfor_fb11534bde (UsedFor bench seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "beverage is used for drinking", "pln": ["(: cnet_usedfor_9cafdf5fd5 (UsedFor beverage drinking) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "bicycle is used for personal transport", "pln": ["(: cnet_usedfor_7986dbd3d4 (UsedFor bicycle personal_transport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "bicycle storage area is used for storing bycycles in", "pln": ["(: cnet_usedfor_2773424062 (UsedFor bicycle_storage_area storing_bycycles_in) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bicycle is used for racing", "pln": ["(: cnet_usedfor_934f0ae3ef (UsedFor bicycle racing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bicycle is used for riding", "pln": ["(: cnet_usedfor_4d85b038d2 (UsedFor bicycle riding) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bicycle is used for transportation", "pln": ["(: cnet_usedfor_0e3abc951f (UsedFor bicycle transportation) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bicycle is used for travelling on", "pln": ["(: cnet_usedfor_3e098ad66f (UsedFor bicycle travelling_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bicycle is used for ride", "pln": ["(: cnet_usedfor_54f7b0cf07 (UsedFor bicycle ride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bicycle is used for rush", "pln": ["(: cnet_usedfor_8e99951662 (UsedFor bicycle rush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bicycle storage area is used for protecting bicycle", "pln": ["(: cnet_usedfor_615ddb0d79 (UsedFor bicycle_storage_area protecting_bicycle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bicycle storage area is used for protecting bycyle from bad weather", "pln": ["(: cnet_usedfor_d76c9a960b (UsedFor bicycle_storage_area protecting_bycyle_from_bad_weather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bicycle storage area is used for store bicycle", "pln": ["(: cnet_usedfor_9f28eaab8a (UsedFor bicycle_storage_area store_bicycle) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bicycle storage area is used for storing bicycle", "pln": ["(: cnet_usedfor_1135fa2b48 (UsedFor bicycle_storage_area storing_bicycle) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bicycle storage area is used for storing bycycle in", "pln": ["(: cnet_usedfor_db919202ab (UsedFor bicycle_storage_area storing_bycycle_in) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bike is used for transport", "pln": ["(: cnet_usedfor_d0a85120d2 (UsedFor bike transport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bill is used for bird to eat with", "pln": ["(: cnet_usedfor_5f200783ad (UsedFor bill bird_to_eat_with) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "billboard is used for advertise product", "pln": ["(: cnet_usedfor_c69b59e910 (UsedFor billboard advertise_product) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "billboard is used for advertisement", "pln": ["(: cnet_usedfor_6cff42a8b0 (UsedFor billboard advertisement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "billboard is used for displaying image", "pln": ["(: cnet_usedfor_d940990858 (UsedFor billboard displaying_image) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "billfold is used for hold money", "pln": ["(: cnet_usedfor_a652f4abd3 (UsedFor billfold hold_money) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "billiard ball is used for playing billiard", "pln": ["(: cnet_usedfor_e719636e39 (UsedFor billiard_ball playing_billiard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bin is used for hold", "pln": ["(: cnet_usedfor_0b58d45e1d (UsedFor bin hold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bird is used for laying egg", "pln": ["(: cnet_usedfor_9fa6344e1a (UsedFor bird laying_egg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bird is used for watching", "pln": ["(: cnet_usedfor_eccc2f6ef0 (UsedFor bird watching) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "birth control pill is used for avoid pregnancy", "pln": ["(: cnet_usedfor_ca24dbb17a (UsedFor birth_control_pill avoid_pregnancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "birth control pill is used for prevent unwanted pregnancy", "pln": ["(: cnet_usedfor_a4a6f211fd (UsedFor birth_control_pill prevent_unwanted_pregnancy) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bishop is used for play chess", "pln": ["(: cnet_usedfor_f9820e887d (UsedFor bishop play_chess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "blade is used for cutting", "pln": ["(: cnet_usedfor_c58d3e1e05 (UsedFor blade cutting) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "blade is used for slit", "pln": ["(: cnet_usedfor_baa3782b01 (UsedFor blade slit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "blanket is used for covering bed", "pln": ["(: cnet_usedfor_758359ba74 (UsedFor blanket covering_bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "blanket is used for sleeping under", "pln": ["(: cnet_usedfor_d4c713a7ee (UsedFor blanket sleeping_under) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "blanket is used for warmth", "pln": ["(: cnet_usedfor_ab383f43f7 (UsedFor blanket warmth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "blanketing is used for cover yourself", "pln": ["(: cnet_usedfor_bb065e8890 (UsedFor blanketing cover_yourself) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "blanketing is used for warm up", "pln": ["(: cnet_usedfor_18ae4cf443 (UsedFor blanketing warm_up) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "blanketing is used for warmth", "pln": ["(: cnet_usedfor_370048ed67 (UsedFor blanketing warmth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bleach is used for whitening", "pln": ["(: cnet_usedfor_bef0eac7d0 (UsedFor bleach whitening) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bleacher is used for sit on", "pln": ["(: cnet_usedfor_0c5966deb0 (UsedFor bleacher sit_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "blow dryer is used for styling hair", "pln": ["(: cnet_usedfor_54555df9ac (UsedFor blow_dryer styling_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "blowdryer is used for drying", "pln": ["(: cnet_usedfor_f8ef0c6b78 (UsedFor blowdryer drying) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "board is used for build", "pln": ["(: cnet_usedfor_9f290c185c (UsedFor board build) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "board is used for building", "pln": ["(: cnet_usedfor_0a250988c0 (UsedFor board building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "board game is used for passing time", "pln": ["(: cnet_usedfor_22af003ab8 (UsedFor board_game passing_time) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "boarding room is used for keeping stuff", "pln": ["(: cnet_usedfor_1358cbaa21 (UsedFor boarding_room keeping_stuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "boarding room is used for stay overnight", "pln": ["(: cnet_usedfor_e1b06eec31 (UsedFor boarding_room stay_overnight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "boat is used for cross water", "pln": ["(: cnet_usedfor_10fe37cb7d (UsedFor boat cross_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "boat is used for fishing", "pln": ["(: cnet_usedfor_c8eebb8d1b (UsedFor boat fishing) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "boat is used for floating on water", "pln": ["(: cnet_usedfor_f043d06d5d (UsedFor boat floating_on_water) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "boat is used for rowing", "pln": ["(: cnet_usedfor_c501df3b4f (UsedFor boat rowing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "boat is used for sailing", "pln": ["(: cnet_usedfor_bf26ba315e (UsedFor boat sailing) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "boat is used for travel", "pln": ["(: cnet_usedfor_5fd7bdb9f7 (UsedFor boat travel) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "boat is used for travel on water", "pln": ["(: cnet_usedfor_b96151d748 (UsedFor boat travel_on_water) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "boat is used for water skiing", "pln": ["(: cnet_usedfor_aaa2ca079b (UsedFor boat water_skiing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "boat is used for watersport", "pln": ["(: cnet_usedfor_a3e3385478 (UsedFor boat watersport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "boat is used for capsize", "pln": ["(: cnet_usedfor_36c1696218 (UsedFor boat capsize) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "boat is used for transport", "pln": ["(: cnet_usedfor_f0af80e857 (UsedFor boat transport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "bobby pin is used for hold hair", "pln": ["(: cnet_usedfor_146db5a636 (UsedFor bobby_pin hold_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bobby pin is used for hold hair in place", "pln": ["(: cnet_usedfor_a863085c9a (UsedFor bobby_pin hold_hair_in_place) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bobby pin is used for picking lock", "pln": ["(: cnet_usedfor_c31b9a710f (UsedFor bobby_pin picking_lock) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bolt is used for fasten", "pln": ["(: cnet_usedfor_e87a5304b9 (UsedFor bolt fasten) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bolt is used for screw", "pln": ["(: cnet_usedfor_f4ca20bf89 (UsedFor bolt screw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bomb is used for blowing thing up", "pln": ["(: cnet_usedfor_2262ae29d4 (UsedFor bomb blowing_thing_up) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "bomb is used for blowing up building", "pln": ["(: cnet_usedfor_ad2375cec9 (UsedFor bomb blowing_up_building) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "bomb is used for destroying things", "pln": ["(: cnet_usedfor_62a9d2d6da (UsedFor bomb destroying_things) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bomb is used for commit genocide", "pln": ["(: cnet_usedfor_66ba84bf4e (UsedFor bomb commit_genocide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bomb is used for destroying thing", "pln": ["(: cnet_usedfor_447eb24434 (UsedFor bomb destroying_thing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bomb is used for kill people", "pln": ["(: cnet_usedfor_bed30f9929 (UsedFor bomb kill_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "bomb is used for killing people", "pln": ["(: cnet_usedfor_1b69913689 (UsedFor bomb killing_people) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bomb is used for scaring people", "pln": ["(: cnet_usedfor_4dd60e6aa8 (UsedFor bomb scaring_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "bomb is used for terror", "pln": ["(: cnet_usedfor_d497f0ffb4 (UsedFor bomb terror) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bomb is used for bombard", "pln": ["(: cnet_usedfor_ab25be5792 (UsedFor bomb bombard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bomb is used for detonate", "pln": ["(: cnet_usedfor_0593f30bdc (UsedFor bomb detonate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bomb is used for go off", "pln": ["(: cnet_usedfor_286e6eba1b (UsedFor bomb go_off) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bomb is used for kill", "pln": ["(: cnet_usedfor_98cac810e0 (UsedFor bomb kill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "bomber is used for detonate", "pln": ["(: cnet_usedfor_114a64964c (UsedFor bomber detonate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bomber is used for kill", "pln": ["(: cnet_usedfor_4848bc410d (UsedFor bomber kill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bomber is used for launch", "pln": ["(: cnet_usedfor_056b555340 (UsedFor bomber launch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bomber is used for take off", "pln": ["(: cnet_usedfor_f1b8844262 (UsedFor bomber take_off) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bone is used for carving into artwork", "pln": ["(: cnet_usedfor_ce5c1b339b (UsedFor bone carving_into_artwork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bone is used for carving into needle", "pln": ["(: cnet_usedfor_71b46208f8 (UsedFor bone carving_into_needle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "bone is used for chewing on by happy dog", "pln": ["(: cnet_usedfor_6a4e7615e7 (UsedFor bone chewing_on_by_happy_dog) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bone is used for giving body structure", "pln": ["(: cnet_usedfor_932d846db2 (UsedFor bone giving_body_structure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bone is used for make bone meal", "pln": ["(: cnet_usedfor_ec318e680a (UsedFor bone make_bone_meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bone is used for making great soup stock", "pln": ["(: cnet_usedfor_28f0ffa074 (UsedFor bone making_great_soup_stock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bone is used for pleasing dog", "pln": ["(: cnet_usedfor_98cf727d78 (UsedFor bone pleasing_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bone is used for producing red blood cell", "pln": ["(: cnet_usedfor_fa37abdf2d (UsedFor bone producing_red_blood_cell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "bone is used for reward dog", "pln": ["(: cnet_usedfor_49c433e46b (UsedFor bone reward_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "booking office is used for selling tickets", "pln": ["(: cnet_usedfor_30fa94a381 (UsedFor booking_office selling_tickets) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "books is used for store information", "pln": ["(: cnet_usedfor_9892bc6608 (UsedFor books store_information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "bottle of vodka is used for making mixed drinks", "pln": ["(: cnet_usedfor_4bc890d074 (UsedFor bottle_of_vodka making_mixed_drinks) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bone is used for structural support", "pln": ["(: cnet_usedfor_63c6b711f0 (UsedFor bone structural_support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bone is used for support", "pln": ["(: cnet_usedfor_c0bdd658d5 (UsedFor bone support) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bone is used for throwing to", "pln": ["(: cnet_usedfor_9ba1e720b3 (UsedFor bone throwing_to) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "book is used for developing perspective", "pln": ["(: cnet_usedfor_ac594863b6 (UsedFor book developing_perspective) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "book is used for education", "pln": ["(: cnet_usedfor_b6ff659bb6 (UsedFor book education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "book is used for entertainment", "pln": ["(: cnet_usedfor_73e28ab814 (UsedFor book entertainment) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "book is used for learn", "pln": ["(: cnet_usedfor_6aa223fee0 (UsedFor book learn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "book is used for learn from", "pln": ["(: cnet_usedfor_3b3854fadc (UsedFor book learn_from) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "book is used for learning", "pln": ["(: cnet_usedfor_40aa39a340 (UsedFor book learning) (STV 1.0 0.9763))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "book is used for recording charge in police register", "pln": ["(: cnet_usedfor_6d97f19d1f (UsedFor book recording_charge_in_police_register) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "book is used for study", "pln": ["(: cnet_usedfor_fced4c5d9e (UsedFor book study) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "book is used for studying", "pln": ["(: cnet_usedfor_064035031c (UsedFor book studying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "book end is used for holding book upright", "pln": ["(: cnet_usedfor_e4de1e1378 (UsedFor book_end holding_book_upright) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "book end is used for keeping book from falling", "pln": ["(: cnet_usedfor_932ff412b0 (UsedFor book_end keeping_book_from_falling) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bookcase is used for store book", "pln": ["(: cnet_usedfor_7fe955350d (UsedFor bookcase store_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bookend is used for keep book from falling over", "pln": ["(: cnet_usedfor_f5a38a9866 (UsedFor bookend keep_book_from_falling_over) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "booking office is used for selling ticket", "pln": ["(: cnet_usedfor_85339f3fcf (UsedFor booking_office selling_ticket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "book is used for reading", "pln": ["(: cnet_usedfor_d6eeae7e28 (UsedFor book reading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "book is used for store information", "pln": ["(: cnet_usedfor_52ba454ee8 (UsedFor book store_information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "book is used for teach", "pln": ["(: cnet_usedfor_246c3497d8 (UsedFor book teach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bookshelf is used for book", "pln": ["(: cnet_usedfor_c2423454b7 (UsedFor bookshelf book) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bookshelf is used for organizing book", "pln": ["(: cnet_usedfor_9ea03bbe1b (UsedFor bookshelf organizing_book) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bookshop is used for buying book in", "pln": ["(: cnet_usedfor_3f3277b2f9 (UsedFor bookshop buying_book_in) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bookstore is used for browsing through book", "pln": ["(: cnet_usedfor_23cb662124 (UsedFor bookstore browsing_through_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bookstore is used for buy book", "pln": ["(: cnet_usedfor_2b410f16b1 (UsedFor bookstore buy_book) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bookstore is used for buying book", "pln": ["(: cnet_usedfor_13f6f8cc87 (UsedFor bookstore buying_book) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "boot is used for walking", "pln": ["(: cnet_usedfor_53fda4cd56 (UsedFor boot walking) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "boot is used for keep feet warm", "pln": ["(: cnet_usedfor_a010fdf820 (UsedFor boot keep_feet_warm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bottle is used for storing liquid", "pln": ["(: cnet_usedfor_777b2c1bb8 (UsedFor bottle storing_liquid) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bottle is used for hold", "pln": ["(: cnet_usedfor_7af13435c3 (UsedFor bottle hold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bottle of vodka is used for making mixed drink", "pln": ["(: cnet_usedfor_3a51abf4d6 (UsedFor bottle_of_vodka making_mixed_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bottle opener is used for beer", "pln": ["(: cnet_usedfor_e97970a2a5 (UsedFor bottle_opener beer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "boulevard is used for travel more directly", "pln": ["(: cnet_usedfor_f203e352c0 (UsedFor boulevard travel_more_directly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bow is used for play", "pln": ["(: cnet_usedfor_0b6f7152da (UsedFor bow play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bow is used for shoot", "pln": ["(: cnet_usedfor_7272284f31 (UsedFor bow shoot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bow is used for tie", "pln": ["(: cnet_usedfor_b6a8dd6c3b (UsedFor bow tie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for cut hair", "pln": ["(: cnet_usedfor_3f98bc72bb (UsedFor bowl cut_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for have athletic event", "pln": ["(: cnet_usedfor_b96d6ac38c (UsedFor bowl have_athletic_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for have outdoor musical event", "pln": ["(: cnet_usedfor_5e44c321e9 (UsedFor bowl have_outdoor_musical_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for hold apple", "pln": ["(: cnet_usedfor_1b7c86dada (UsedFor bowl hold_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for hold apricot", "pln": ["(: cnet_usedfor_b170d53910 (UsedFor bowl hold_apricot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for hold bean", "pln": ["(: cnet_usedfor_8e643b2875 (UsedFor bowl hold_bean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for hold blueberry", "pln": ["(: cnet_usedfor_c3118be6b9 (UsedFor bowl hold_blueberry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for hold broth", "pln": ["(: cnet_usedfor_8883af9540 (UsedFor bowl hold_broth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for hold cereal", "pln": ["(: cnet_usedfor_fe4b79fbe8 (UsedFor bowl hold_cereal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for hold cherry", "pln": ["(: cnet_usedfor_1cdf4f141d (UsedFor bowl hold_cherry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for hold chip", "pln": ["(: cnet_usedfor_525d08b599 (UsedFor bowl hold_chip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for hold cream", "pln": ["(: cnet_usedfor_7f9853a9a4 (UsedFor bowl hold_cream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "bowl is used for hold cream of wheat", "pln": ["(: cnet_usedfor_63e8512a6c (UsedFor bowl hold_cream_of_wheat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "bowl is used for hold dip", "pln": ["(: cnet_usedfor_3e26950476 (UsedFor bowl hold_dip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for hold fig", "pln": ["(: cnet_usedfor_d4201bff17 (UsedFor bowl hold_fig) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for hold fruit", "pln": ["(: cnet_usedfor_1242b3ff90 (UsedFor bowl hold_fruit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for hold grape", "pln": ["(: cnet_usedfor_ab65c3dfa8 (UsedFor bowl hold_grape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for hold hot cereal", "pln": ["(: cnet_usedfor_f239dbca3d (UsedFor bowl hold_hot_cereal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "bowl is used for hold ice cream", "pln": ["(: cnet_usedfor_bf8a90c4d4 (UsedFor bowl hold_ice_cream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for hold liquid", "pln": ["(: cnet_usedfor_378e399acb (UsedFor bowl hold_liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for hold marinade", "pln": ["(: cnet_usedfor_2516055e4f (UsedFor bowl hold_marinade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for hold mixed nut", "pln": ["(: cnet_usedfor_85c4f30901 (UsedFor bowl hold_mixed_nut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for hold mush", "pln": ["(: cnet_usedfor_fa5cccde93 (UsedFor bowl hold_mush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for hold orange", "pln": ["(: cnet_usedfor_88295ff47d (UsedFor bowl hold_orange) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for hold peanut", "pln": ["(: cnet_usedfor_0baf7f4808 (UsedFor bowl hold_peanut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for hold popcorn", "pln": ["(: cnet_usedfor_3e5ae93948 (UsedFor bowl hold_popcorn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "bowl is used for hold relish", "pln": ["(: cnet_usedfor_42922e58a5 (UsedFor bowl hold_relish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for hold soup", "pln": ["(: cnet_usedfor_3cc85cf114 (UsedFor bowl hold_soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for hold spice", "pln": ["(: cnet_usedfor_4c6d5f4355 (UsedFor bowl hold_spice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for hold sugar", "pln": ["(: cnet_usedfor_60b63fb5f7 (UsedFor bowl hold_sugar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for hold tobacco in pipe", "pln": ["(: cnet_usedfor_16105e7be4 (UsedFor bowl hold_tobacco_in_pipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "bowl is used for hold wine", "pln": ["(: cnet_usedfor_9a4450f0f4 (UsedFor bowl hold_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for mix ingredient", "pln": ["(: cnet_usedfor_8ca814bd05 (UsedFor bowl mix_ingredient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for play football", "pln": ["(: cnet_usedfor_a7d39408cb (UsedFor bowl play_football) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for soup", "pln": ["(: cnet_usedfor_aee973f001 (UsedFor bowl soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for hold", "pln": ["(: cnet_usedfor_a62b57d32d (UsedFor bowl hold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bowl is used for serve", "pln": ["(: cnet_usedfor_556ac7ad89 (UsedFor bowl serve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "box is used for contain thing", "pln": ["(: cnet_usedfor_67e7891e01 (UsedFor box contain_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "box is used for containing thing", "pln": ["(: cnet_usedfor_9b0d56fe7c (UsedFor box containing_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "box is used for holding thing", "pln": ["(: cnet_usedfor_d4776e5daf (UsedFor box holding_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "box is used for keeping stuff in", "pln": ["(: cnet_usedfor_1727a7ac64 (UsedFor box keeping_stuff_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "box is used for packing", "pln": ["(: cnet_usedfor_70f8b37598 (UsedFor box packing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "box is used for storage", "pln": ["(: cnet_usedfor_78940e3094 (UsedFor box storage) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "box is used for storing in", "pln": ["(: cnet_usedfor_4a08c14ddf (UsedFor box storing_in) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "box is used for wrapping gift in", "pln": ["(: cnet_usedfor_f2b4ee7bcc (UsedFor box wrapping_gift_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "box is used for accommodate", "pln": ["(: cnet_usedfor_415f26f549 (UsedFor box accommodate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "briefcase is used for transporting documents", "pln": ["(: cnet_usedfor_d3ba9f36ee (UsedFor briefcase transporting_documents) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "box is used for hold", "pln": ["(: cnet_usedfor_eddfa62a39 (UsedFor box hold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "box is used for seat", "pln": ["(: cnet_usedfor_bf1fe75c39 (UsedFor box seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "box office is used for selling ticket", "pln": ["(: cnet_usedfor_9c582e508f (UsedFor box_office selling_ticket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "brain is used for invent new gadget", "pln": ["(: cnet_usedfor_0109ef2d0b (UsedFor brain invent_new_gadget) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "brain is used for thinking", "pln": ["(: cnet_usedfor_7ce18d648b (UsedFor brain thinking) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "brake is used for fail", "pln": ["(: cnet_usedfor_a330d51703 (UsedFor brake fail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "brake is used for stop", "pln": ["(: cnet_usedfor_f07e2ecd00 (UsedFor brake stop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "brass instrument is used for make music", "pln": ["(: cnet_usedfor_aa0e74e7ff (UsedFor brass_instrument make_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "brass instrument is used for making music", "pln": ["(: cnet_usedfor_77f9f4de34 (UsedFor brass_instrument making_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "brass instrument is used for playing", "pln": ["(: cnet_usedfor_cb5607aec9 (UsedFor brass_instrument playing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bread is used for baking", "pln": ["(: cnet_usedfor_359e095762 (UsedFor bread baking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bread is used for buttering", "pln": ["(: cnet_usedfor_6562587c05 (UsedFor bread buttering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bread is used for eating", "pln": ["(: cnet_usedfor_18f92df041 (UsedFor bread eating) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bread is used for sandwiche", "pln": ["(: cnet_usedfor_58cd5f39c2 (UsedFor bread sandwiche) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "breathing is used for getting air to lung", "pln": ["(: cnet_usedfor_8f0e228f90 (UsedFor breathing getting_air_to_lung) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "breathing is used for living", "pln": ["(: cnet_usedfor_aeb4d3208d (UsedFor breathing living) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "breathing is used for staying alive", "pln": ["(: cnet_usedfor_feab504354 (UsedFor breathing staying_alive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "breathing is used for survival", "pln": ["(: cnet_usedfor_71e25feede (UsedFor breathing survival) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "breathing fresh air is used for clearing lung", "pln": ["(: cnet_usedfor_531c542729 (UsedFor breathing_fresh_air clearing_lung) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "breathing fresh air is used for getting oxygen", "pln": ["(: cnet_usedfor_efdb60f6ae (UsedFor breathing_fresh_air getting_oxygen) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "breathing fresh air is used for relaxing", "pln": ["(: cnet_usedfor_6b099ca419 (UsedFor breathing_fresh_air relaxing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "brick is used for construct", "pln": ["(: cnet_usedfor_212a40173f (UsedFor brick construct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "brick row house is used for for people to live in", "pln": ["(: cnet_usedfor_21836dfcd7 (UsedFor brick_row_house for_people_to_live_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "brick row house is used for living in", "pln": ["(: cnet_usedfor_c42dfc846d (UsedFor brick_row_house living_in) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "brick row house is used for people to live in", "pln": ["(: cnet_usedfor_c0ae9acb91 (UsedFor brick_row_house people_to_live_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "brick row house is used for real estate broker to sell", "pln": ["(: cnet_usedfor_b1d97451a9 (UsedFor brick_row_house real_estate_broker_to_sell) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bridge is used for cross bay", "pln": ["(: cnet_usedfor_a772e23600 (UsedFor bridge cross_bay) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bridge is used for cross over", "pln": ["(: cnet_usedfor_4582eb8c8c (UsedFor bridge cross_over) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bridge is used for cross over body of water", "pln": ["(: cnet_usedfor_e8fefb1a93 (UsedFor bridge cross_over_body_of_water) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bridge is used for cross river", "pln": ["(: cnet_usedfor_022a0309d1 (UsedFor bridge cross_river) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bridge is used for cross water", "pln": ["(: cnet_usedfor_e77272dced (UsedFor bridge cross_water) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bridge is used for crossing river", "pln": ["(: cnet_usedfor_05e75ef14b (UsedFor bridge crossing_river) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bridge is used for crossing sometihng", "pln": ["(: cnet_usedfor_7388c4fe30 (UsedFor bridge crossing_sometihng) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bridge arch is used for cross river", "pln": ["(: cnet_usedfor_7d40461b47 (UsedFor bridge_arch cross_river) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bridge arch is used for supporting bridge", "pln": ["(: cnet_usedfor_675e089702 (UsedFor bridge_arch supporting_bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bridge railing is used for keeping people from falling off", "pln": ["(: cnet_usedfor_a0c7ac78a9 (UsedFor bridge_railing keeping_people_from_falling_off) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bridge railing is used for safety", "pln": ["(: cnet_usedfor_9efea03247 (UsedFor bridge_railing safety) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "briefcase is used for carry paper", "pln": ["(: cnet_usedfor_8d90405eaa (UsedFor briefcase carry_paper) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "briefcase is used for carrying paper", "pln": ["(: cnet_usedfor_c902b270b4 (UsedFor briefcase carrying_paper) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "briefcase is used for transporting document", "pln": ["(: cnet_usedfor_58e048e6ce (UsedFor briefcase transporting_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "bringing home fish is used for cooking dinner", "pln": ["(: cnet_usedfor_d51770c4f8 (UsedFor bringing_home_fish cooking_dinner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bringing home fish is used for cooking for dinner", "pln": ["(: cnet_usedfor_838716ccb1 (UsedFor bringing_home_fish cooking_for_dinner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "bringing home fish is used for dinner", "pln": ["(: cnet_usedfor_500f451f94 (UsedFor bringing_home_fish dinner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bringing home fish is used for feeding cat", "pln": ["(: cnet_usedfor_e09823fc88 (UsedFor bringing_home_fish feeding_cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bringing home fish is used for making dinner", "pln": ["(: cnet_usedfor_b890e2a020 (UsedFor bringing_home_fish making_dinner) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bringing home fish is used for preparing to cook fish dinner", "pln": ["(: cnet_usedfor_6733794ec3 (UsedFor bringing_home_fish preparing_to_cook_fish_dinner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bringing in verdict is used for judge to do", "pln": ["(: cnet_usedfor_9cf3fcc08f (UsedFor bringing_in_verdict judge_to_do) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bringing in verdict is used for judging", "pln": ["(: cnet_usedfor_de5b7c7b5f (UsedFor bringing_in_verdict judging) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bringing in verdict is used for jury to do", "pln": ["(: cnet_usedfor_3aa6578eec (UsedFor bringing_in_verdict jury_to_do) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bringing suit is used for getting revenge", "pln": ["(: cnet_usedfor_1de31c49ec (UsedFor bringing_suit getting_revenge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "broadcast studio is used for sending radio signal", "pln": ["(: cnet_usedfor_b996114716 (UsedFor broadcast_studio sending_radio_signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "broadcast studio is used for sending signal", "pln": ["(: cnet_usedfor_5977aba807 (UsedFor broadcast_studio sending_signal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "broom is used for sweeping", "pln": ["(: cnet_usedfor_7b02083a99 (UsedFor broom sweeping) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "broom is used for sweep floor", "pln": ["(: cnet_usedfor_87408c690b (UsedFor broom sweep_floor) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "brownstone is used for live in", "pln": ["(: cnet_usedfor_cc555e9791 (UsedFor brownstone live_in) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "brownstone is used for living in", "pln": ["(: cnet_usedfor_e8f3c8b2bf (UsedFor brownstone living_in) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "brush is used for painting", "pln": ["(: cnet_usedfor_2fa948acac (UsedFor brush painting) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "brush is used for brush", "pln": ["(: cnet_usedfor_323b175888 (UsedFor brush brush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "brush is used for paint", "pln": ["(: cnet_usedfor_1a14974381 (UsedFor brush paint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bucket is used for carry water", "pln": ["(: cnet_usedfor_8baacf72dc (UsedFor bucket carry_water) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bucket is used for carrying liquid", "pln": ["(: cnet_usedfor_eb5415fbc7 (UsedFor bucket carrying_liquid) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bucket is used for hold", "pln": ["(: cnet_usedfor_480f4f808c (UsedFor bucket hold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "buffet is used for breakfast", "pln": ["(: cnet_usedfor_06b1359c9e (UsedFor buffet breakfast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "buffet is used for dessert", "pln": ["(: cnet_usedfor_2d7ade595c (UsedFor buffet dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "buffet is used for food", "pln": ["(: cnet_usedfor_bb855c981f (UsedFor buffet food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bugle is used for play music", "pln": ["(: cnet_usedfor_c9fd3cedd4 (UsedFor bugle play_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "building is used for shelter", "pln": ["(: cnet_usedfor_3b1f8b2a29 (UsedFor building shelter) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bulb is used for bloom", "pln": ["(: cnet_usedfor_1c8a89b8cb (UsedFor bulb bloom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bull s horn is used for goring", "pln": ["(: cnet_usedfor_b97a05b14a (UsedFor bull_s_horn goring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bullet is used for killing", "pln": ["(: cnet_usedfor_f5660c6804 (UsedFor bullet killing) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bullet is used for murdering", "pln": ["(: cnet_usedfor_fbc35ea7ef (UsedFor bullet murdering) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bullet is used for projectile", "pln": ["(: cnet_usedfor_1de42fb914 (UsedFor bullet projectile) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bullet is used for shooting", "pln": ["(: cnet_usedfor_bdc0a5b3cc (UsedFor bullet shooting) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "bullet is used for wounding", "pln": ["(: cnet_usedfor_6a2a332d2f (UsedFor bullet wounding) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bullet is used for shoot", "pln": ["(: cnet_usedfor_15a14fe769 (UsedFor bullet shoot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bullet train is used for transport", "pln": ["(: cnet_usedfor_7b549f66a0 (UsedFor bullet_train transport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bullhorn is used for amplifying voice", "pln": ["(: cnet_usedfor_9b1e3575fd (UsedFor bullhorn amplifying_voice) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bungalow is used for live in", "pln": ["(: cnet_usedfor_b92b2ee45e (UsedFor bungalow live_in) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "bungalow is used for living in", "pln": ["(: cnet_usedfor_f2710e92da (UsedFor bungalow living_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bureau is used for clothing", "pln": ["(: cnet_usedfor_92cb6fa4f1 (UsedFor bureau clothing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bureau is used for storage", "pln": ["(: cnet_usedfor_44d3dab5a3 (UsedFor bureau storage) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bureau is used for storing clothe", "pln": ["(: cnet_usedfor_d656f0c2a6 (UsedFor bureau storing_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "burlap is used for make bag", "pln": ["(: cnet_usedfor_5dcf35a083 (UsedFor burlap make_bag) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "burlap is used for making bag", "pln": ["(: cnet_usedfor_2e8ad6887b (UsedFor burlap making_bag) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "burying cat is used for hiding body from buzzard", "pln": ["(: cnet_usedfor_6021177217 (UsedFor burying_cat hiding_body_from_buzzard) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bus is used for transportation", "pln": ["(: cnet_usedfor_b43321a9a7 (UsedFor bus transportation) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bus is used for travel", "pln": ["(: cnet_usedfor_3406a94bf2 (UsedFor bus travel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bus is used for transport", "pln": ["(: cnet_usedfor_c8d08489e5 (UsedFor bus transport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bus pass is used for getting around", "pln": ["(: cnet_usedfor_ca0c3103a2 (UsedFor bus_pass getting_around) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bus pass is used for travel on bus", "pln": ["(: cnet_usedfor_e010d04b9a (UsedFor bus_pass travel_on_bus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bus seat is used for seating passenger", "pln": ["(: cnet_usedfor_345463170e (UsedFor bus_seat seating_passenger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bus seat is used for sitting", "pln": ["(: cnet_usedfor_a98f72fa42 (UsedFor bus_seat sitting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bus shelter is used for waiting for bus", "pln": ["(: cnet_usedfor_9247957f5d (UsedFor bus_shelter waiting_for_bus) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bus station is used for traveller", "pln": ["(: cnet_usedfor_025e39f55f (UsedFor bus_station traveller) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bus stop is used for getting off of bus", "pln": ["(: cnet_usedfor_0b7a156eb2 (UsedFor bus_stop getting_off_of_bus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "bus stop is used for getting on bus", "pln": ["(: cnet_usedfor_a666a1b1dd (UsedFor bus_stop getting_on_bus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bus stop is used for wait for bus", "pln": ["(: cnet_usedfor_5c8bcc2859 (UsedFor bus_stop wait_for_bus) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "bus stop is used for waiting for bus", "pln": ["(: cnet_usedfor_245a0a7989 (UsedFor bus_stop waiting_for_bus) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "business is used for making money", "pln": ["(: cnet_usedfor_237925e608 (UsedFor business making_money) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "business class airplane seat is used for businessperson", "pln": ["(: cnet_usedfor_6c8a62d9c9 (UsedFor business_class_airplane_seat businessperson) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "butler is used for answering door", "pln": ["(: cnet_usedfor_3bedc60ae1 (UsedFor butler answering_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "butter is used for flavoring", "pln": ["(: cnet_usedfor_5553d345b7 (UsedFor butter flavoring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "butterfly net is used for catching insect", "pln": ["(: cnet_usedfor_3a73efcb3d (UsedFor butterfly_net catching_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "button is used for fasten", "pln": ["(: cnet_usedfor_2be5032822 (UsedFor button fasten) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "button is used for pin", "pln": ["(: cnet_usedfor_f8588ccfe5 (UsedFor button pin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "button is used for fasten pant", "pln": ["(: cnet_usedfor_f4bb264ec2 (UsedFor button fasten_pant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "buying is used for owning", "pln": ["(: cnet_usedfor_8234757197 (UsedFor buying owning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "buying beer is used for forgetting", "pln": ["(: cnet_usedfor_7eab84f176 (UsedFor buying_beer forgetting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "buying christma present is used for fun", "pln": ["(: cnet_usedfor_f0333be793 (UsedFor buying_christma_present fun) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "buying food is used for preparing meal", "pln": ["(: cnet_usedfor_61626d3737 (UsedFor buying_food preparing_meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "buying for loved one is used for making happy", "pln": ["(: cnet_usedfor_95ed9f29b8 (UsedFor buying_for_loved_one making_happy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "buying for loved one is used for saying sorry", "pln": ["(: cnet_usedfor_8eceff7aaf (UsedFor buying_for_loved_one saying_sorry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "buying for loved one is used for showing love", "pln": ["(: cnet_usedfor_dd642ff69c (UsedFor buying_for_loved_one showing_love) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "buying for loved one is used for surprise", "pln": ["(: cnet_usedfor_4159c7b169 (UsedFor buying_for_loved_one surprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "buying fresh fruit and vegetable is used for making salad", "pln": ["(: cnet_usedfor_69f164d509 (UsedFor buying_fresh_fruit_and_vegetable making_salad) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "buying house is used for investing", "pln": ["(: cnet_usedfor_f6d72c91a8 (UsedFor buying_house investing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "buying presents is used for birthday", "pln": ["(: cnet_usedfor_e13b30d599 (UsedFor buying_presents birthday) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "cabinets is used for store objects", "pln": ["(: cnet_usedfor_f534149732 (UsedFor cabinets store_objects) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "buying house is used for living in", "pln": ["(: cnet_usedfor_4ae19c29e8 (UsedFor buying_house living_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "buying house is used for making investment", "pln": ["(: cnet_usedfor_e63884e359 (UsedFor buying_house making_investment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "buying present is used for birthday", "pln": ["(: cnet_usedfor_29747741fb (UsedFor buying_present birthday) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "buying present is used for christma", "pln": ["(: cnet_usedfor_2506f728ef (UsedFor buying_present christma) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "buying present for other is used for celebrating birthday", "pln": ["(: cnet_usedfor_7acd98428a (UsedFor buying_present_for_other celebrating_birthday) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "buying product is used for consumption", "pln": ["(: cnet_usedfor_1749a0daae (UsedFor buying_product consumption) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cabinet is used for storage", "pln": ["(: cnet_usedfor_b80f8e7c52 (UsedFor cabinet storage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cabinet is used for store object", "pln": ["(: cnet_usedfor_d66df48c81 (UsedFor cabinet store_object) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cafe is used for meet people", "pln": ["(: cnet_usedfor_4f4fe2bb52 (UsedFor cafe meet_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cafe is used for meeting friend", "pln": ["(: cnet_usedfor_29c16dcf10 (UsedFor cafe meeting_friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "cafe is used for meeting people", "pln": ["(: cnet_usedfor_9a1f7272ee (UsedFor cafe meeting_people) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cake is used for birthday", "pln": ["(: cnet_usedfor_c11b70b4c3 (UsedFor cake birthday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cake is used for celebrate", "pln": ["(: cnet_usedfor_72ef18ece9 (UsedFor cake celebrate) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cake is used for decorating", "pln": ["(: cnet_usedfor_f236b994d6 (UsedFor cake decorating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "cake is used for dessert", "pln": ["(: cnet_usedfor_1daffafd4c (UsedFor cake dessert) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "cake is used for eating", "pln": ["(: cnet_usedfor_35ecea9b68 (UsedFor cake eating) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cake is used for gift", "pln": ["(: cnet_usedfor_a2baa1221f (UsedFor cake gift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cake is used for wedding", "pln": ["(: cnet_usedfor_e1114137ef (UsedFor cake wedding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "calculator is used for add number", "pln": ["(: cnet_usedfor_0d23738dfc (UsedFor calculator add_number) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "calculator is used for adding number", "pln": ["(: cnet_usedfor_51cbcbf7d3 (UsedFor calculator adding_number) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "calculator is used for calculating number", "pln": ["(: cnet_usedfor_111ad2486b (UsedFor calculator calculating_number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "calculator is used for do math", "pln": ["(: cnet_usedfor_ab8344b5bd (UsedFor calculator do_math) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "calculator is used for do mathematic", "pln": ["(: cnet_usedfor_6ac29c1b6c (UsedFor calculator do_mathematic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "calendar is used for keeping track of time", "pln": ["(: cnet_usedfor_8c0759e8ab (UsedFor calendar keeping_track_of_time) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "calendar book is used for planning", "pln": ["(: cnet_usedfor_4e8bc3d625 (UsedFor calendar_book planning) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "calendar book is used for planning month or two ahead", "pln": ["(: cnet_usedfor_1642020f81 (UsedFor calendar_book planning_month_or_two_ahead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "calendar book is used for planning week or two ahead", "pln": ["(: cnet_usedfor_0f6dce7dea (UsedFor calendar_book planning_week_or_two_ahead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "calendar pad is used for finding out date", "pln": ["(: cnet_usedfor_efef439e5f (UsedFor calendar_pad finding_out_date) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "call is used for communicate", "pln": ["(: cnet_usedfor_e51484d0a5 (UsedFor call communicate) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "call is used for communicating", "pln": ["(: cnet_usedfor_0cdc2d48c9 (UsedFor call communicating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "call is used for contact", "pln": ["(: cnet_usedfor_584ea746b0 (UsedFor call contact) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "camera is used for take picture", "pln": ["(: cnet_usedfor_264294a86c (UsedFor camera take_picture) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "camera is used for photograph", "pln": ["(: cnet_usedfor_2b0aabab08 (UsedFor camera photograph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "camera is used for picture", "pln": ["(: cnet_usedfor_423443e06f (UsedFor camera picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "camera is used for take photograph", "pln": ["(: cnet_usedfor_caeedb555b (UsedFor camera take_photograph) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "can is used for storing food", "pln": ["(: cnet_usedfor_244d17ea86 (UsedFor can storing_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "can of soda is used for quenching thirst", "pln": ["(: cnet_usedfor_4a8336b23f (UsedFor can_of_soda quenching_thirst) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "can of soda is used for refreshment", "pln": ["(: cnet_usedfor_0445a1cbd5 (UsedFor can_of_soda refreshment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "canal is used for connect two bodies of water", "pln": ["(: cnet_usedfor_246dd25db1 (UsedFor canal connect_two_bodies_of_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "canal is used for connect two body of water", "pln": ["(: cnet_usedfor_c59ec5132d (UsedFor canal connect_two_body_of_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "candle is used for decoration", "pln": ["(: cnet_usedfor_78bdee2cba (UsedFor candle decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "candle is used for light room", "pln": ["(: cnet_usedfor_619c11f13a (UsedFor candle light_room) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "candle is used for provide light", "pln": ["(: cnet_usedfor_935cc124b3 (UsedFor candle provide_light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "candle is used for light", "pln": ["(: cnet_usedfor_90d16775c6 (UsedFor candle light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "candle is used for luminosity", "pln": ["(: cnet_usedfor_688d32fa41 (UsedFor candle luminosity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cane is used for hold", "pln": ["(: cnet_usedfor_840860a83e (UsedFor cane hold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "cane is used for support", "pln": ["(: cnet_usedfor_4e0b182501 (UsedFor cane support) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "cans is used for transfer gasoline", "pln": ["(: cnet_usedfor_a01b0aa4f3 (UsedFor cans transfer_gasoline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cannabis is used for pleasure", "pln": ["(: cnet_usedfor_6c7e01345c (UsedFor cannabis pleasure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cannon is used for fire cannon ball", "pln": ["(: cnet_usedfor_70038cd8c7 (UsedFor cannon fire_cannon_ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cannon is used for killing enemy", "pln": ["(: cnet_usedfor_3506555c01 (UsedFor cannon killing_enemy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cannon is used for shoot cannon ball", "pln": ["(: cnet_usedfor_3a3b4254d3 (UsedFor cannon shoot_cannon_ball) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cannon is used for shoot cannonball", "pln": ["(: cnet_usedfor_f5d2e676ad (UsedFor cannon shoot_cannonball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cannon is used for shooting cannonball", "pln": ["(: cnet_usedfor_9384f505fb (UsedFor cannon shooting_cannonball) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cannon is used for war", "pln": ["(: cnet_usedfor_debe9d21ed (UsedFor cannon war) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cannonball is used for sinking ship", "pln": ["(: cnet_usedfor_a7b81be691 (UsedFor cannonball sinking_ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "canoe is used for having fun", "pln": ["(: cnet_usedfor_1a17c2caee (UsedFor canoe having_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "can is used for transfer gasoline", "pln": ["(: cnet_usedfor_888cc21448 (UsedFor can transfer_gasoline) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "canva is used for covering", "pln": ["(: cnet_usedfor_8b185309d6 (UsedFor canva covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "canva is used for paint", "pln": ["(: cnet_usedfor_75d198d920 (UsedFor canva paint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "canva is used for paint picture on", "pln": ["(: cnet_usedfor_bb2a36f76a (UsedFor canva paint_picture_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "canva is used for painting", "pln": ["(: cnet_usedfor_08c7039437 (UsedFor canva painting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "canva is used for painting on", "pln": ["(: cnet_usedfor_960a453a02 (UsedFor canva painting_on) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "capital is used for begin sentence", "pln": ["(: cnet_usedfor_52c2c2b069 (UsedFor capital begin_sentence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "captain is used for being army company commander", "pln": ["(: cnet_usedfor_a4262c3dbd (UsedFor captain being_army_company_commander) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "captain is used for commanding ship", "pln": ["(: cnet_usedfor_6c3464b855 (UsedFor captain commanding_ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "car is used for fun", "pln": ["(: cnet_usedfor_a58cd55aaf (UsedFor car fun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "car is used for getting to work", "pln": ["(: cnet_usedfor_034891e121 (UsedFor car getting_to_work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "car is used for drive", "pln": ["(: cnet_usedfor_dd002a6f15 (UsedFor car drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "car is used for transport", "pln": ["(: cnet_usedfor_31a6640fa4 (UsedFor car transport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "car park is used for park car", "pln": ["(: cnet_usedfor_f8b50baede (UsedFor car_park park_car) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "car park is used for parking car", "pln": ["(: cnet_usedfor_bd84a77247 (UsedFor car_park parking_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "car park is used for storing car", "pln": ["(: cnet_usedfor_6eefeeac26 (UsedFor car_park storing_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "carafe is used for serve wine", "pln": ["(: cnet_usedfor_680cd3c1f0 (UsedFor carafe serve_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "card is used for birthday", "pln": ["(: cnet_usedfor_237e62f8b8 (UsedFor card birthday) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "card is used for christma", "pln": ["(: cnet_usedfor_e3f4010ea3 (UsedFor card christma) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "card is used for identification", "pln": ["(: cnet_usedfor_fbad06fddd (UsedFor card identification) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "card case is used for carry business cards", "pln": ["(: cnet_usedfor_e5c7f4e1ab (UsedFor card_case carry_business_cards) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "card is used for introduce yourself", "pln": ["(: cnet_usedfor_149c4aa6c9 (UsedFor card introduce_yourself) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "card is used for playing game with", "pln": ["(: cnet_usedfor_ef746977ac (UsedFor card playing_game_with) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "card is used for playing poker", "pln": ["(: cnet_usedfor_9fe1fe9270 (UsedFor card playing_poker) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "card case is used for carry business card", "pln": ["(: cnet_usedfor_adfb79fbe6 (UsedFor card_case carry_business_card) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "card case is used for carrying card", "pln": ["(: cnet_usedfor_1f920cdab5 (UsedFor card_case carrying_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "card case is used for keeping card", "pln": ["(: cnet_usedfor_55f7b10e52 (UsedFor card_case keeping_card) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "card catalog is used for finding book at library", "pln": ["(: cnet_usedfor_d9be8ce364 (UsedFor card_catalog finding_book_at_library) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "card catalog is used for organization of information", "pln": ["(: cnet_usedfor_05b95c8a05 (UsedFor card_catalog organization_of_information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cardboard is used for making boxe", "pln": ["(: cnet_usedfor_c5f6a90dac (UsedFor cardboard making_boxe) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "carpet is used for cover floor", "pln": ["(: cnet_usedfor_71ede8cb11 (UsedFor carpet cover_floor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "carpet is used for covering floor", "pln": ["(: cnet_usedfor_3feb5bfc64 (UsedFor carpet covering_floor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "carpet is used for flooring", "pln": ["(: cnet_usedfor_188d1eb352 (UsedFor carpet flooring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "carpet is used for insulation", "pln": ["(: cnet_usedfor_954cdb0cb3 (UsedFor carpet insulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "carpet is used for walking on", "pln": ["(: cnet_usedfor_8b23ba68b2 (UsedFor carpet walking_on) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "carpeting is used for comfort", "pln": ["(: cnet_usedfor_8b86f2e994 (UsedFor carpeting comfort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "carpeting is used for cover bare floor", "pln": ["(: cnet_usedfor_3ae745f349 (UsedFor carpeting cover_bare_floor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "carpeting is used for covering floor", "pln": ["(: cnet_usedfor_62bf19f21b (UsedFor carpeting covering_floor) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "carpeting is used for decoration", "pln": ["(: cnet_usedfor_dd3f3f560b (UsedFor carpeting decoration) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "carpeting is used for home decoration", "pln": ["(: cnet_usedfor_ee03b38abd (UsedFor carpeting home_decoration) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "carpeting is used for warmth", "pln": ["(: cnet_usedfor_aa63f08e4e (UsedFor carpeting warmth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "carrier bag is used for carry", "pln": ["(: cnet_usedfor_14940ecc01 (UsedFor carrier_bag carry) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "carry on bag is used for airline travel", "pln": ["(: cnet_usedfor_9a32822583 (UsedFor carry_on_bag airline_travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "carry on bag is used for carry personal item", "pln": ["(: cnet_usedfor_805b55b829 (UsedFor carry_on_bag carry_personal_item) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "carry on bag is used for magazine", "pln": ["(: cnet_usedfor_879d7392c1 (UsedFor carry_on_bag magazine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "case of beer is used for have party", "pln": ["(: cnet_usedfor_f0130f296e (UsedFor case_of_beer have_party) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "case of beer is used for holding beer", "pln": ["(: cnet_usedfor_01b82f4f4f (UsedFor case_of_beer holding_beer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cash is used for bribe", "pln": ["(: cnet_usedfor_437ea824b7 (UsedFor cash bribe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cash is used for buy thing with", "pln": ["(: cnet_usedfor_b4bbe6702d (UsedFor cash buy_thing_with) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cash token is used for pay for subway", "pln": ["(: cnet_usedfor_2ef4b3e05e (UsedFor cash_token pay_for_subway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cash token is used for riding subway", "pln": ["(: cnet_usedfor_8403735464 (UsedFor cash_token riding_subway) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cashing in is used for getting money", "pln": ["(: cnet_usedfor_f9afc6ce3a (UsedFor cashing_in getting_money) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "castanet is used for create percussion music", "pln": ["(: cnet_usedfor_e3830829d4 (UsedFor castanet create_percussion_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "castanet is used for dancing", "pln": ["(: cnet_usedfor_b52a7e7972 (UsedFor castanet dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "castanet is used for playing spanish music", "pln": ["(: cnet_usedfor_9f0c4b5a56 (UsedFor castanet playing_spanish_music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cat is used for catch mice", "pln": ["(: cnet_usedfor_88b2a7a4c9 (UsedFor cat catch_mice) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cat is used for companionship", "pln": ["(: cnet_usedfor_3fa6fac4aa (UsedFor cat companionship) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cat is used for pet", "pln": ["(: cnet_usedfor_b6651a342e (UsedFor cat pet) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cave is used for hiding", "pln": ["(: cnet_usedfor_85c0868a07 (UsedFor cave hiding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cd is used for distribution of music", "pln": ["(: cnet_usedfor_4a72816c1a (UsedFor cd distribution_of_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cd is used for listening to music", "pln": ["(: cnet_usedfor_f8e1b7330e (UsedFor cd listening_to_music) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cd is used for store information", "pln": ["(: cnet_usedfor_6041ca4ef4 (UsedFor cd store_information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "cd is used for storing data", "pln": ["(: cnet_usedfor_b351847ae6 (UsedFor cd storing_data) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "cd is used for storing information", "pln": ["(: cnet_usedfor_4591cc7433 (UsedFor cd storing_information) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cd is used for writing data optically with laser", "pln": ["(: cnet_usedfor_c0f59eb53e (UsedFor cd writing_data_optically_with_laser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "celebrating is used for 50 year anniversary", "pln": ["(: cnet_usedfor_d8b14e28a9 (UsedFor celebrating 50_year_anniversary) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "celebrating is used for fun", "pln": ["(: cnet_usedfor_d52ecbaab3 (UsedFor celebrating fun) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "celebrating is used for partying", "pln": ["(: cnet_usedfor_bfee196904 (UsedFor celebrating partying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cellar is used for storing wine", "pln": ["(: cnet_usedfor_59a2915e2a (UsedFor cellar storing_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cello is used for play quartet", "pln": ["(: cnet_usedfor_1674693212 (UsedFor cello play_quartet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cellphone is used for communication", "pln": ["(: cnet_usedfor_e918efb72d (UsedFor cellphone communication) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "cellular telephone is used for call", "pln": ["(: cnet_usedfor_ece7349878 (UsedFor cellular_telephone call) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cereal bowl is used for eat cereal", "pln": ["(: cnet_usedfor_a5d4295847 (UsedFor cereal_bowl eat_cereal) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "cereal bowl is used for eating cereal", "pln": ["(: cnet_usedfor_a9cf380419 (UsedFor cereal_bowl eating_cereal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chain is used for chain", "pln": ["(: cnet_usedfor_dd718704f7 (UsedFor chain chain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chain is used for connect", "pln": ["(: cnet_usedfor_3205e3859b (UsedFor chain connect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "chain is used for fasten", "pln": ["(: cnet_usedfor_dfcdbbdbf2 (UsedFor chain fasten) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chainsaw is used for cutting down tree", "pln": ["(: cnet_usedfor_b0d5b36841 (UsedFor chainsaw cutting_down_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chair is used for resting", "pln": ["(: cnet_usedfor_bed5ed9ca5 (UsedFor chair resting) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chair is used for people", "pln": ["(: cnet_usedfor_d063e37c5e (UsedFor chair people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chair is used for seat", "pln": ["(: cnet_usedfor_82b048c358 (UsedFor chair seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chalk is used for mark", "pln": ["(: cnet_usedfor_f5468bdc8d (UsedFor chalk mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chalk is used for write", "pln": ["(: cnet_usedfor_264161a397 (UsedFor chalk write) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chalk is used for writing", "pln": ["(: cnet_usedfor_28070a1b36 (UsedFor chalk writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "changing appearance is used for disguising yourself", "pln": ["(: cnet_usedfor_00a5db655d (UsedFor changing_appearance disguising_yourself) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "changing appearance is used for fooling people", "pln": ["(: cnet_usedfor_59e461d2ce (UsedFor changing_appearance fooling_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "changing room is used for trying on clothe", "pln": ["(: cnet_usedfor_ee34f68ed5 (UsedFor changing_room trying_on_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "changing society is used for enforcing rule", "pln": ["(: cnet_usedfor_e3184d6195 (UsedFor changing_society enforcing_rule) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "changing society is used for furthering good cause", "pln": ["(: cnet_usedfor_87e207363a (UsedFor changing_society furthering_good_cause) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "changing society is used for good of people", "pln": ["(: cnet_usedfor_a4a83abfb6 (UsedFor changing_society good_of_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "changing society is used for improving condition", "pln": ["(: cnet_usedfor_91827a23ae (UsedFor changing_society improving_condition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "changing society is used for improving quality of people s live", "pln": ["(: cnet_usedfor_e7d434a62c (UsedFor changing_society improving_quality_of_people_s_live) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "changing society is used for increasing fairness", "pln": ["(: cnet_usedfor_46837cc69b (UsedFor changing_society increasing_fairness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "changing society is used for making difference", "pln": ["(: cnet_usedfor_ab58707134 (UsedFor changing_society making_difference) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "changing society is used for politician and activist", "pln": ["(: cnet_usedfor_4162e6aeb5 (UsedFor changing_society politician_and_activist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "changing society is used for righting wrong", "pln": ["(: cnet_usedfor_b355f741e6 (UsedFor changing_society righting_wrong) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chapel is used for get married", "pln": ["(: cnet_usedfor_a907281ac7 (UsedFor chapel get_married) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chapel is used for getting married", "pln": ["(: cnet_usedfor_e6dc3523b1 (UsedFor chapel getting_married) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chapel is used for meditation", "pln": ["(: cnet_usedfor_dbd5c9a8fc (UsedFor chapel meditation) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chapel is used for praying", "pln": ["(: cnet_usedfor_afdd0fb03e (UsedFor chapel praying) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chapel is used for praying to god", "pln": ["(: cnet_usedfor_53385a926d (UsedFor chapel praying_to_god) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chapel is used for worship", "pln": ["(: cnet_usedfor_f2a9dff92a (UsedFor chapel worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chapel is used for worshipping", "pln": ["(: cnet_usedfor_f3ed6d1444 (UsedFor chapel worshipping) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chatting with friend is used for being social", "pln": ["(: cnet_usedfor_4975c489be (UsedFor chatting_with_friend being_social) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chatting with friend is used for catching up with each other", "pln": ["(: cnet_usedfor_741feea3f1 (UsedFor chatting_with_friend catching_up_with_each_other) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chatting with friend is used for exchanging information", "pln": ["(: cnet_usedfor_d60e0c1b86 (UsedFor chatting_with_friend exchanging_information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chatting with friend is used for gossiping", "pln": ["(: cnet_usedfor_d9a1ed603d (UsedFor chatting_with_friend gossiping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chatting with friend is used for keeping friend", "pln": ["(: cnet_usedfor_1e1a6d7b60 (UsedFor chatting_with_friend keeping_friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chatting with friend is used for passing time", "pln": ["(: cnet_usedfor_a2285ac2b3 (UsedFor chatting_with_friend passing_time) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chatting with friend is used for socialising", "pln": ["(: cnet_usedfor_79c2a43043 (UsedFor chatting_with_friend socialising) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "check is used for pay", "pln": ["(: cnet_usedfor_20c09f9967 (UsedFor check pay) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "check is used for pay bill", "pln": ["(: cnet_usedfor_e844162ab5 (UsedFor check pay_bill) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "check is used for pay for", "pln": ["(: cnet_usedfor_d51880eef0 (UsedFor check pay_for) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "check in counter is used for checking in", "pln": ["(: cnet_usedfor_81bc0735be (UsedFor check_in_counter checking_in) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "check in counter is used for checking out", "pln": ["(: cnet_usedfor_e5c783d0f6 (UsedFor check_in_counter checking_out) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "checkbook is used for writing check", "pln": ["(: cnet_usedfor_793423b56c (UsedFor checkbook writing_check) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "checkbook cover is used for protect check", "pln": ["(: cnet_usedfor_e9af8cba70 (UsedFor checkbook_cover protect_check) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "checkbook cover is used for protecting check", "pln": ["(: cnet_usedfor_8d3b52bc97 (UsedFor checkbook_cover protecting_check) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "checkbook holder is used for holding checkbook", "pln": ["(: cnet_usedfor_c44a297f02 (UsedFor checkbook_holder holding_checkbook) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "checkbook holder is used for holding check", "pln": ["(: cnet_usedfor_41201ca007 (UsedFor checkbook_holder holding_check) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "checking vital sign is used for doctor", "pln": ["(: cnet_usedfor_97de2a9020 (UsedFor checking_vital_sign doctor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "checking vital sign is used for dying", "pln": ["(: cnet_usedfor_cb70f52b5f (UsedFor checking_vital_sign dying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "checking vital sign is used for making sure alive", "pln": ["(: cnet_usedfor_5ca79974fc (UsedFor checking_vital_sign making_sure_alive) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "checking vital sign is used for nurse", "pln": ["(: cnet_usedfor_2bf791ba5a (UsedFor checking_vital_sign nurse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "checking vital sign is used for seeing if alive", "pln": ["(: cnet_usedfor_23062535e0 (UsedFor checking_vital_sign seeing_if_alive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cheque is used for buy", "pln": ["(: cnet_usedfor_5d5379a0d8 (UsedFor cheque buy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cheque is used for pay bill", "pln": ["(: cnet_usedfor_d37458b653 (UsedFor cheque pay_bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cheque is used for paying bill", "pln": ["(: cnet_usedfor_fcc13b9744 (UsedFor cheque paying_bill) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cheque book is used for paying bill", "pln": ["(: cnet_usedfor_6917ee6a0e (UsedFor cheque_book paying_bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cheque book is used for paying money", "pln": ["(: cnet_usedfor_5028a34fda (UsedFor cheque_book paying_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cheque book is used for writing cheque", "pln": ["(: cnet_usedfor_6c3da12ed1 (UsedFor cheque_book writing_cheque) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cheque book cover is used for protecting cheque against damage", "pln": ["(: cnet_usedfor_2472dec485 (UsedFor cheque_book_cover protecting_cheque_against_damage) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cheque book holder is used for balancing check book", "pln": ["(: cnet_usedfor_b7667579b5 (UsedFor cheque_book_holder balancing_check_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chess bishop is used for checkmate king", "pln": ["(: cnet_usedfor_bb77009b2e (UsedFor chess_bishop checkmate_king) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chess bishop is used for traversing diagnonally", "pln": ["(: cnet_usedfor_3c8a990628 (UsedFor chess_bishop traversing_diagnonally) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chess board is used for challenging chess opponent", "pln": ["(: cnet_usedfor_1671e5398c (UsedFor chess_board challenging_chess_opponent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chess board is used for entertainment", "pln": ["(: cnet_usedfor_f9b5e1f251 (UsedFor chess_board entertainment) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chess board is used for play chess", "pln": ["(: cnet_usedfor_841d98e318 (UsedFor chess_board play_chess) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chess board is used for playing checker", "pln": ["(: cnet_usedfor_5fc82e49aa (UsedFor chess_board playing_checker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chess board is used for playing chess", "pln": ["(: cnet_usedfor_7675fae878 (UsedFor chess_board playing_chess) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chess board is used for playing game of chess", "pln": ["(: cnet_usedfor_e3d1555b5a (UsedFor chess_board playing_game_of_chess) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chess board is used for playing game", "pln": ["(: cnet_usedfor_8b61e2be02 (UsedFor chess_board playing_game) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chess king is used for playing chess", "pln": ["(: cnet_usedfor_a8bf9fa0cb (UsedFor chess_king playing_chess) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chess knight is used for playing chess", "pln": ["(: cnet_usedfor_298aa0e2bb (UsedFor chess_knight playing_chess) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chess pawn is used for chess game", "pln": ["(: cnet_usedfor_a4a2781758 (UsedFor chess_pawn chess_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "chess pawn is used for playing chess", "pln": ["(: cnet_usedfor_b9617e73ed (UsedFor chess_pawn playing_chess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "chess pawn is used for sacrificing", "pln": ["(: cnet_usedfor_fd1d2c4c27 (UsedFor chess_pawn sacrificing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chess queen is used for play game of chess", "pln": ["(: cnet_usedfor_6363cad572 (UsedFor chess_queen play_game_of_chess) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chess queen is used for playing chess", "pln": ["(: cnet_usedfor_bf2fd4c14d (UsedFor chess_queen playing_chess) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "chess set is used for fun", "pln": ["(: cnet_usedfor_a090bc73f7 (UsedFor chess_set fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chess set is used for have fun", "pln": ["(: cnet_usedfor_01553edc96 (UsedFor chess_set have_fun) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chess set is used for play", "pln": ["(: cnet_usedfor_1badea3505 (UsedFor chess_set play) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chess set is used for play game of chess", "pln": ["(: cnet_usedfor_eb731f3523 (UsedFor chess_set play_game_of_chess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chesspiece is used for capturing another piece", "pln": ["(: cnet_usedfor_67ed807c26 (UsedFor chesspiece capturing_another_piece) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chest is used for storage", "pln": ["(: cnet_usedfor_5cd9fbde59 (UsedFor chest storage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chest is used for storing clothe", "pln": ["(: cnet_usedfor_4f9c5daeaa (UsedFor chest storing_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chest is used for storing thing", "pln": ["(: cnet_usedfor_809c43bd8f (UsedFor chest storing_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chest is used for storing thing in", "pln": ["(: cnet_usedfor_122ac7d607 (UsedFor chest storing_thing_in) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chest of drawer is used for store clothe", "pln": ["(: cnet_usedfor_d5b8be348e (UsedFor chest_of_drawer store_clothe) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chewing food is used for avoiding choking", "pln": ["(: cnet_usedfor_fe878a0f3b (UsedFor chewing_food avoiding_choking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "chewing food is used for swallowing", "pln": ["(: cnet_usedfor_c0ac52be7c (UsedFor chewing_food swallowing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chewing food is used for swallowing food", "pln": ["(: cnet_usedfor_647a0ce4eb (UsedFor chewing_food swallowing_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chinese restaurant is used for consuming nourishment", "pln": ["(: cnet_usedfor_c6bab7a98c (UsedFor chinese_restaurant consuming_nourishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chinese restaurant is used for eat chinese food", "pln": ["(: cnet_usedfor_fd92b5f699 (UsedFor chinese_restaurant eat_chinese_food) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chinese restaurant is used for eating chinese food", "pln": ["(: cnet_usedfor_fbb117688b (UsedFor chinese_restaurant eating_chinese_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chinese restaurant is used for eating rice", "pln": ["(: cnet_usedfor_84c62a49f5 (UsedFor chinese_restaurant eating_rice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "choker is used for decorate neck", "pln": ["(: cnet_usedfor_62d9b6aa2d (UsedFor choker decorate_neck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "choker is used for wear around neck", "pln": ["(: cnet_usedfor_906e709c8b (UsedFor choker wear_around_neck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chopping firewood is used for build fire", "pln": ["(: cnet_usedfor_0d298fcabf (UsedFor chopping_firewood build_fire) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chopping firewood is used for building fire", "pln": ["(: cnet_usedfor_1c49dc5a4d (UsedFor chopping_firewood building_fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "chopping firewood is used for getting exercise", "pln": ["(: cnet_usedfor_fcaf54e76f (UsedFor chopping_firewood getting_exercise) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chopping firewood is used for preparing for winter", "pln": ["(: cnet_usedfor_782808077b (UsedFor chopping_firewood preparing_for_winter) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "chopstick is used for eat chinese food", "pln": ["(: cnet_usedfor_210476df07 (UsedFor chopstick eat_chinese_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "church is used for preaching", "pln": ["(: cnet_usedfor_34b72a1679 (UsedFor church preaching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "church is used for sing", "pln": ["(: cnet_usedfor_4da8609850 (UsedFor church sing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "churchyard is used for graves", "pln": ["(: cnet_usedfor_be2c2de632 (UsedFor churchyard graves) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "cinema is used for watching films", "pln": ["(: cnet_usedfor_d1d0d13293 (UsedFor cinema watching_films) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "church is used for wedding", "pln": ["(: cnet_usedfor_c78ac41d9e (UsedFor church wedding) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "church is used for worship", "pln": ["(: cnet_usedfor_ff9e9fccc7 (UsedFor church worship) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "churchyard is used for charitie event", "pln": ["(: cnet_usedfor_5ea5c9016a (UsedFor churchyard charitie_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "churchyard is used for grave", "pln": ["(: cnet_usedfor_5c78984533 (UsedFor churchyard grave) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cider is used for drinking", "pln": ["(: cnet_usedfor_046144c049 (UsedFor cider drinking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cigarette is used for burn", "pln": ["(: cnet_usedfor_07465f779a (UsedFor cigarette burn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cigarette is used for smoking", "pln": ["(: cnet_usedfor_56b72bbaa9 (UsedFor cigarette smoking) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cinema is used for entertainment", "pln": ["(: cnet_usedfor_465d45415f (UsedFor cinema entertainment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cinema is used for showing movy", "pln": ["(: cnet_usedfor_797244d04a (UsedFor cinema showing_movy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cinema is used for watch movie", "pln": ["(: cnet_usedfor_3b6bbe498d (UsedFor cinema watch_movie) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cinema is used for watching film", "pln": ["(: cnet_usedfor_c7937bec5b (UsedFor cinema watching_film) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "circular route is used for returning to origin", "pln": ["(: cnet_usedfor_cadd5cdb9a (UsedFor circular_route returning_to_origin) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "city is used for business", "pln": ["(: cnet_usedfor_935f49b63a (UsedFor city business) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "city is used for live in", "pln": ["(: cnet_usedfor_debd0e03a9 (UsedFor city live_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "city hall is used for have meeting", "pln": ["(: cnet_usedfor_d3885212de (UsedFor city_hall have_meeting) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "city hall is used for meeting", "pln": ["(: cnet_usedfor_ecff408246 (UsedFor city_hall meeting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clarinet is used for make music", "pln": ["(: cnet_usedfor_4188096a6d (UsedFor clarinet make_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clarinet is used for making music", "pln": ["(: cnet_usedfor_892e6948ab (UsedFor clarinet making_music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clarinet is used for play music", "pln": ["(: cnet_usedfor_467df23e1e (UsedFor clarinet play_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "classroom is used for education", "pln": ["(: cnet_usedfor_a6f90c57d9 (UsedFor classroom education) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "classroom is used for teaching students", "pln": ["(: cnet_usedfor_6eccb17006 (UsedFor classroom teaching_students) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "cleaning clothes is used for cleanliness", "pln": ["(: cnet_usedfor_9cf0c8e01b (UsedFor cleaning_clothes cleanliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "cleaning clothes is used for health", "pln": ["(: cnet_usedfor_a7cfbf8ef5 (UsedFor cleaning_clothes health) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "classroom is used for learning", "pln": ["(: cnet_usedfor_4fef90a598 (UsedFor classroom learning) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "classroom is used for teaching", "pln": ["(: cnet_usedfor_0d52023fc2 (UsedFor classroom teaching) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "classroom is used for teaching student", "pln": ["(: cnet_usedfor_41365aac7d (UsedFor classroom teaching_student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "classroom chair is used for student to sit in", "pln": ["(: cnet_usedfor_d5e9b283ea (UsedFor classroom_chair student_to_sit_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clavichord is used for making music", "pln": ["(: cnet_usedfor_10ed527abb (UsedFor clavichord making_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clavichord is used for play music", "pln": ["(: cnet_usedfor_5aa3512ca1 (UsedFor clavichord play_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cleaning is used for getting rid of dirt", "pln": ["(: cnet_usedfor_81e40cd8e9 (UsedFor cleaning getting_rid_of_dirt) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cleaning clothe is used for appearance", "pln": ["(: cnet_usedfor_c8c70442d8 (UsedFor cleaning_clothe appearance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cleaning clothe is used for cleanliness", "pln": ["(: cnet_usedfor_205b2ededd (UsedFor cleaning_clothe cleanliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cleaning clothe is used for health", "pln": ["(: cnet_usedfor_6257f988bc (UsedFor cleaning_clothe health) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cleaning clothe is used for hygeine", "pln": ["(: cnet_usedfor_86bbeb3aa1 (UsedFor cleaning_clothe hygeine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cleaning clothing is used for removing stain", "pln": ["(: cnet_usedfor_ac28450de6 (UsedFor cleaning_clothing removing_stain) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cleaning house is used for preparing for guest", "pln": ["(: cnet_usedfor_443ef9e085 (UsedFor cleaning_house preparing_for_guest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cleaning room is used for comfort", "pln": ["(: cnet_usedfor_b8a38ec914 (UsedFor cleaning_room comfort) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cleaning room is used for tidyness", "pln": ["(: cnet_usedfor_7953c5c35a (UsedFor cleaning_room tidyness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "climbing is used for exercise", "pln": ["(: cnet_usedfor_88c4d2cb52 (UsedFor climbing exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "climbing is used for exercising", "pln": ["(: cnet_usedfor_a63833d5d5 (UsedFor climbing exercising) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "climbing is used for getting on top", "pln": ["(: cnet_usedfor_def7c50edb (UsedFor climbing getting_on_top) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "climbing is used for having fun", "pln": ["(: cnet_usedfor_48dc0d57a1 (UsedFor climbing having_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "climbing mountain is used for adventure", "pln": ["(: cnet_usedfor_dff8fb4cad (UsedFor climbing_mountain adventure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "climbing mountain is used for adventurous", "pln": ["(: cnet_usedfor_9d43cccafc (UsedFor climbing_mountain adventurous) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "climbing mountain is used for challenge", "pln": ["(: cnet_usedfor_096b8852ec (UsedFor climbing_mountain challenge) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "climbing mountain is used for excitement", "pln": ["(: cnet_usedfor_9ab6da3d3e (UsedFor climbing_mountain excitement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "climbing mountain is used for exercise", "pln": ["(: cnet_usedfor_dd283cd6d6 (UsedFor climbing_mountain exercise) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "climbing mountain is used for thrill of", "pln": ["(: cnet_usedfor_e27fcff594 (UsedFor climbing_mountain thrill_of) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "climbing mountain is used for thrill of danger", "pln": ["(: cnet_usedfor_a5b1d892d3 (UsedFor climbing_mountain thrill_of_danger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clipboard is used for hold paper", "pln": ["(: cnet_usedfor_0671fb6575 (UsedFor clipboard hold_paper) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clipboard is used for holding paper", "pln": ["(: cnet_usedfor_ef6b8e766f (UsedFor clipboard holding_paper) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clipper is used for clip fingernail", "pln": ["(: cnet_usedfor_f5fae65567 (UsedFor clipper clip_fingernail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clipper is used for clip grass", "pln": ["(: cnet_usedfor_40a14391e3 (UsedFor clipper clip_grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clipper is used for clip hair", "pln": ["(: cnet_usedfor_eab9185826 (UsedFor clipper clip_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clipper is used for cut toenail", "pln": ["(: cnet_usedfor_b889c9000c (UsedFor clipper cut_toenail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clipper is used for cutting thing", "pln": ["(: cnet_usedfor_5d4db404ab (UsedFor clipper cutting_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clipper is used for trim hair", "pln": ["(: cnet_usedfor_2c011e1561 (UsedFor clipper trim_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clipper is used for trim hedge", "pln": ["(: cnet_usedfor_a6cd3e4635 (UsedFor clipper trim_hedge) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clipper is used for trim tree", "pln": ["(: cnet_usedfor_786a75e5a1 (UsedFor clipper trim_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clock is used for indicate time", "pln": ["(: cnet_usedfor_844ac54fbc (UsedFor clock indicate_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clock is used for keeping time", "pln": ["(: cnet_usedfor_dd76e778e7 (UsedFor clock keeping_time) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "clock is used for keeping track of time", "pln": ["(: cnet_usedfor_3e162d9db9 (UsedFor clock keeping_track_of_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "clock is used for measure time", "pln": ["(: cnet_usedfor_7854f493d7 (UsedFor clock measure_time) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "clock is used for set alarm", "pln": ["(: cnet_usedfor_2483bd0898 (UsedFor clock set_alarm) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clock is used for setting alarm", "pln": ["(: cnet_usedfor_b8e4e7460b (UsedFor clock setting_alarm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clock is used for timing", "pln": ["(: cnet_usedfor_94cf5e9408 (UsedFor clock timing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clock is used for clock", "pln": ["(: cnet_usedfor_89911fa789 (UsedFor clock clock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clock is used for clock time", "pln": ["(: cnet_usedfor_1faf7139cb (UsedFor clock clock_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clock is used for people", "pln": ["(: cnet_usedfor_be6a43b13f (UsedFor clock people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clonazepam is used for anxiety", "pln": ["(: cnet_usedfor_23eb4fb4d3 (UsedFor clonazepam anxiety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "closet is used for hanging clothe", "pln": ["(: cnet_usedfor_7816cbd40e (UsedFor closet hanging_clothe) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "closet is used for storing clothe", "pln": ["(: cnet_usedfor_dab1c34720 (UsedFor closet storing_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "closet is used for storing clothing", "pln": ["(: cnet_usedfor_c5e4ff2200 (UsedFor closet storing_clothing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "closet is used for storing object", "pln": ["(: cnet_usedfor_7e90053d42 (UsedFor closet storing_object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "closet is used for storing thing", "pln": ["(: cnet_usedfor_f7bd8d0894 (UsedFor closet storing_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "closet for clothe is used for hanging belt", "pln": ["(: cnet_usedfor_669fb83aea (UsedFor closet_for_clothe hanging_belt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cloth is used for clean", "pln": ["(: cnet_usedfor_1f95f523b9 (UsedFor cloth clean) (STV 1.0 0.9748))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cloth is used for cleaning", "pln": ["(: cnet_usedfor_b32d0452ab (UsedFor cloth cleaning) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cloth is used for clothing", "pln": ["(: cnet_usedfor_1d96f73dd7 (UsedFor cloth clothing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "cloth is used for covering skin", "pln": ["(: cnet_usedfor_25acaab121 (UsedFor cloth covering_skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "clothes is used for keep warm", "pln": ["(: cnet_usedfor_e42ca95df6 (UsedFor clothes keep_warm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "clothes is used for wearing", "pln": ["(: cnet_usedfor_cb4a00fcfe (UsedFor clothes wearing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "clothes closet is used for hang shirts", "pln": ["(: cnet_usedfor_954d9065e8 (UsedFor clothes_closet hang_shirts) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cloth is used for dry dishe", "pln": ["(: cnet_usedfor_fbff03f30f (UsedFor cloth dry_dishe) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cloth is used for make clothing", "pln": ["(: cnet_usedfor_7f01a48ae0 (UsedFor cloth make_clothing) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cloth is used for making clothe", "pln": ["(: cnet_usedfor_c570961080 (UsedFor cloth making_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cloth is used for making clothing", "pln": ["(: cnet_usedfor_941e6cf2c5 (UsedFor cloth making_clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clothe is used for keep warm", "pln": ["(: cnet_usedfor_98bc223089 (UsedFor clothe keep_warm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clothe is used for wearing", "pln": ["(: cnet_usedfor_6393d2ea85 (UsedFor clothe wearing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clothe closet is used for hang clothe", "pln": ["(: cnet_usedfor_3cbd43523e (UsedFor clothe_closet hang_clothe) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clothe closet is used for hang shirt", "pln": ["(: cnet_usedfor_154daee1c0 (UsedFor clothe_closet hang_shirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clothe closet is used for hanging clothe in", "pln": ["(: cnet_usedfor_997b0abb3f (UsedFor clothe_closet hanging_clothe_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clothe closet is used for hide", "pln": ["(: cnet_usedfor_5a818a9e82 (UsedFor clothe_closet hide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clothing is used for keep warm", "pln": ["(: cnet_usedfor_fcd3a9b7ef (UsedFor clothing keep_warm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clothing closet is used for hanging clothe", "pln": ["(: cnet_usedfor_be0772dadf (UsedFor clothing_closet hanging_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clothing closet is used for storing suit", "pln": ["(: cnet_usedfor_dd7e53aafd (UsedFor clothing_closet storing_suit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clothing shelf is used for storing clothe", "pln": ["(: cnet_usedfor_e1f468f15b (UsedFor clothing_shelf storing_clothe) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clothing shelf is used for storing clothing", "pln": ["(: cnet_usedfor_53e12430cc (UsedFor clothing_shelf storing_clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clothing store is used for buy clothe", "pln": ["(: cnet_usedfor_daa5cb8d6c (UsedFor clothing_store buy_clothe) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clothing store is used for shopping", "pln": ["(: cnet_usedfor_65f91f06a3 (UsedFor clothing_store shopping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clothing store changing room is used for trying on clothe", "pln": ["(: cnet_usedfor_85b23a6dd8 (UsedFor clothing_store_changing_room trying_on_clothe) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clothing store changing room is used for trying on clothe before buying", "pln": ["(: cnet_usedfor_fcca5c805f (UsedFor clothing_store_changing_room trying_on_clothe_before_buying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clothing store changing room is used for trying on clothe for possible purchase", "pln": ["(: cnet_usedfor_febabcf268 (UsedFor clothing_store_changing_room trying_on_clothe_for_possible_purchase) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clothing store changing room is used for trying on new clothe", "pln": ["(: cnet_usedfor_332cf426fe (UsedFor clothing_store_changing_room trying_on_new_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "cloud is used for bringing rain", "pln": ["(: cnet_usedfor_dd5bf8f11b (UsedFor cloud bringing_rain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cloud is used for rain", "pln": ["(: cnet_usedfor_bdad3039f5 (UsedFor cloud rain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "club is used for beating", "pln": ["(: cnet_usedfor_2d7acf5662 (UsedFor club beating) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "club is used for dance", "pln": ["(: cnet_usedfor_def22cd03b (UsedFor club dance) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "club is used for play golf", "pln": ["(: cnet_usedfor_bd0d668f27 (UsedFor club play_golf) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "clutch bag is used for carrying things in", "pln": ["(: cnet_usedfor_2f3d4ba91b (UsedFor clutch_bag carrying_things_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "club is used for beat", "pln": ["(: cnet_usedfor_997babb3c3 (UsedFor club beat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "club is used for club", "pln": ["(: cnet_usedfor_111079ce46 (UsedFor club club) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "club chair is used for sit", "pln": ["(: cnet_usedfor_712703cea9 (UsedFor club_chair sit) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "clutch bag is used for carrying thing in", "pln": ["(: cnet_usedfor_ab71107894 (UsedFor clutch_bag carrying_thing_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "coach airline seat is used for saving money", "pln": ["(: cnet_usedfor_dbd6533878 (UsedFor coach_airline_seat saving_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "coach airplane seat is used for sitting on airplane", "pln": ["(: cnet_usedfor_a8af4731fc (UsedFor coach_airplane_seat sitting_on_airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "coast is used for fishing", "pln": ["(: cnet_usedfor_212ff3944c (UsedFor coast fishing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "coat is used for keeping warm", "pln": ["(: cnet_usedfor_9b36a1f2c2 (UsedFor coat keeping_warm) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "coat is used for keeping warm in winter", "pln": ["(: cnet_usedfor_ccb31ec2b8 (UsedFor coat keeping_warm_in_winter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "coat is used for keep warm", "pln": ["(: cnet_usedfor_3f749c9358 (UsedFor coat keep_warm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cocktail cabinet is used for mixing drink", "pln": ["(: cnet_usedfor_32ec111639 (UsedFor cocktail_cabinet mixing_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "cocktail cabinet is used for storing alcohol", "pln": ["(: cnet_usedfor_2736cc7ec5 (UsedFor cocktail_cabinet storing_alcohol) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "cocktail cabinet is used for storing mini bar", "pln": ["(: cnet_usedfor_e626cff5c5 (UsedFor cocktail_cabinet storing_mini_bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "coffee table is used for make love", "pln": ["(: cnet_usedfor_cb3b187da6 (UsedFor coffee_table make_love) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "coffin is used for coffin", "pln": ["(: cnet_usedfor_471f740c8e (UsedFor coffin coffin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cogitating is used for thinking", "pln": ["(: cnet_usedfor_a971ef43d1 (UsedFor cogitating thinking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cogitating is used for thinking thing over", "pln": ["(: cnet_usedfor_a1ebe21fd9 (UsedFor cogitating thinking_thing_over) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "coil is used for prevent pregnancy", "pln": ["(: cnet_usedfor_31389a5630 (UsedFor coil prevent_pregnancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "coin is used for flipping", "pln": ["(: cnet_usedfor_70d27ed502 (UsedFor coin flipping) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "coin purse is used for holding change", "pln": ["(: cnet_usedfor_639f2c878d (UsedFor coin_purse holding_change) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "coin purse is used for holding coin", "pln": ["(: cnet_usedfor_c272b9bbb9 (UsedFor coin_purse holding_coin) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "coin slot is used for insert coin", "pln": ["(: cnet_usedfor_e01ea161ac (UsedFor coin_slot insert_coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "coin slot is used for putting coin in", "pln": ["(: cnet_usedfor_66817f2383 (UsedFor coin_slot putting_coin_in) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cold faucet is used for get cold water", "pln": ["(: cnet_usedfor_be5df6772f (UsedFor cold_faucet get_cold_water) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cold storage is used for keeping food cold and fresh", "pln": ["(: cnet_usedfor_635d8804a8 (UsedFor cold_storage keeping_food_cold_and_fresh) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cold storage is used for keeping food from spoiling", "pln": ["(: cnet_usedfor_81a7c1c5dc (UsedFor cold_storage keeping_food_from_spoiling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cold storage is used for preserve food", "pln": ["(: cnet_usedfor_8d8ffde2dd (UsedFor cold_storage preserve_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "college is used for getting degree", "pln": ["(: cnet_usedfor_3921e759e2 (UsedFor college getting_degree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "college is used for learning", "pln": ["(: cnet_usedfor_a58b2a9d81 (UsedFor college learning) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "college is used for learning thing", "pln": ["(: cnet_usedfor_96b3727553 (UsedFor college learning_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "college is used for preparing for adult life", "pln": ["(: cnet_usedfor_8f451fcaef (UsedFor college preparing_for_adult_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "column is used for hold up roof", "pln": ["(: cnet_usedfor_84b3891e71 (UsedFor column hold_up_roof) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "column is used for support", "pln": ["(: cnet_usedfor_4c84758237 (UsedFor column support) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "column is used for supporting roof", "pln": ["(: cnet_usedfor_d5a9ffc48d (UsedFor column supporting_roof) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "comb is used for arrange hair", "pln": ["(: cnet_usedfor_5b9b39275a (UsedFor comb arrange_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "comb is used for combing hair", "pln": ["(: cnet_usedfor_c4a76db993 (UsedFor comb combing_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "comb is used for removing tangles from hair", "pln": ["(: cnet_usedfor_6c61b98758 (UsedFor comb removing_tangles_from_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "comb is used for grooming", "pln": ["(: cnet_usedfor_a53864c5c8 (UsedFor comb grooming) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "comb is used for hair", "pln": ["(: cnet_usedfor_0aa3601ee4 (UsedFor comb hair) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "comb is used for remove tangle for hair", "pln": ["(: cnet_usedfor_5a897c5c24 (UsedFor comb remove_tangle_for_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "comb is used for removing tangle from hair", "pln": ["(: cnet_usedfor_0540c3e28b (UsedFor comb removing_tangle_from_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "comb is used for styling hair", "pln": ["(: cnet_usedfor_b6c0ea5d31 (UsedFor comb styling_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "comforting friend is used for making friend feel better", "pln": ["(: cnet_usedfor_9300fb7df5 (UsedFor comforting_friend making_friend_feel_better) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "commiting genocide is used for survival", "pln": ["(: cnet_usedfor_7f20ca14e3 (UsedFor commiting_genocide survival) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "committing murder is used for getting rid of enemy", "pln": ["(: cnet_usedfor_8acf490d4d (UsedFor committing_murder getting_rid_of_enemy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "committing murder is used for killer", "pln": ["(: cnet_usedfor_c7ee3ee6aa (UsedFor committing_murder killer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "committing murder is used for murderer", "pln": ["(: cnet_usedfor_c4680c1610 (UsedFor committing_murder murderer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "committing perjury is used for avoiding punishment", "pln": ["(: cnet_usedfor_3c71077468 (UsedFor committing_perjury avoiding_punishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "committing perjury is used for getting guilty person let off", "pln": ["(: cnet_usedfor_45c9551cef (UsedFor committing_perjury getting_guilty_person_let_off) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "committing perjury is used for getting of scott free", "pln": ["(: cnet_usedfor_709688b4dd (UsedFor committing_perjury getting_of_scott_free) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "committing perjury is used for helping friend", "pln": ["(: cnet_usedfor_4ad24b5178 (UsedFor committing_perjury helping_friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "committing perjury is used for hiding crime", "pln": ["(: cnet_usedfor_109af72bc7 (UsedFor committing_perjury hiding_crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "committing perjury is used for hiding truth", "pln": ["(: cnet_usedfor_9a97ab7c14 (UsedFor committing_perjury hiding_truth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "committing perjury is used for incriminating innocent person", "pln": ["(: cnet_usedfor_713f6408ba (UsedFor committing_perjury incriminating_innocent_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "committing perjury is used for liar", "pln": ["(: cnet_usedfor_016faadb8a (UsedFor committing_perjury liar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "committing perjury is used for lying before judge", "pln": ["(: cnet_usedfor_fb2da827da (UsedFor committing_perjury lying_before_judge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "committing perjury is used for lying in court of law", "pln": ["(: cnet_usedfor_83814f7b80 (UsedFor committing_perjury lying_in_court_of_law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "committing perjury is used for obstructing justice", "pln": ["(: cnet_usedfor_88babc4d4b (UsedFor committing_perjury obstructing_justice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "committing perjury is used for personal gain", "pln": ["(: cnet_usedfor_fcc4ea25b4 (UsedFor committing_perjury personal_gain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "committing suicide is used for ending own life", "pln": ["(: cnet_usedfor_18e6925b0b (UsedFor committing_suicide ending_own_life) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "committing suicide is used for hitler", "pln": ["(: cnet_usedfor_2c9aadb06c (UsedFor committing_suicide hitler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "committing to memory is used for later recall", "pln": ["(: cnet_usedfor_afdfab28cd (UsedFor committing_to_memory later_recall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "committing to memory is used for learning", "pln": ["(: cnet_usedfor_7cee1c576e (UsedFor committing_to_memory learning) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "committing to memory is used for memorizing", "pln": ["(: cnet_usedfor_56d40f8d15 (UsedFor committing_to_memory memorizing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "committing to memory is used for recalling later", "pln": ["(: cnet_usedfor_f8d99d2dde (UsedFor committing_to_memory recalling_later) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "communicating is used for expressing idea", "pln": ["(: cnet_usedfor_931b1b778d (UsedFor communicating expressing_idea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "communicating is used for passing on information", "pln": ["(: cnet_usedfor_5c6e9f1c28 (UsedFor communicating passing_on_information) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "compact is used for drive", "pln": ["(: cnet_usedfor_8204aee04a (UsedFor compact drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "compact is used for transport", "pln": ["(: cnet_usedfor_adbf76de0b (UsedFor compact transport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "competing is used for sporting", "pln": ["(: cnet_usedfor_9686eee3d4 (UsedFor competing sporting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "competing against is used for honor", "pln": ["(: cnet_usedfor_056f2be567 (UsedFor competing_against honor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "computer is used for accessing internet", "pln": ["(: cnet_usedfor_4ddc25ebf5 (UsedFor computer accessing_internet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "computer is used for calculating", "pln": ["(: cnet_usedfor_c84ac84f84 (UsedFor computer calculating) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "computer is used for communication", "pln": ["(: cnet_usedfor_3f57b13aac (UsedFor computer communication) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "computer is used for computer", "pln": ["(: cnet_usedfor_0db9a53ab9 (UsedFor computer computer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "computer is used for computing", "pln": ["(: cnet_usedfor_286b4ca043 (UsedFor computer computing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "computer is used for entertain yourself", "pln": ["(: cnet_usedfor_50a9858ca9 (UsedFor computer entertain_yourself) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "computer is used for entertainment", "pln": ["(: cnet_usedfor_149ac0b1a0 (UsedFor computer entertainment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "computer is used for learn", "pln": ["(: cnet_usedfor_b362cc0fbc (UsedFor computer learn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "computer is used for organize information", "pln": ["(: cnet_usedfor_30e23dca48 (UsedFor computer organize_information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "computer is used for play game", "pln": ["(: cnet_usedfor_ba20ce8d91 (UsedFor computer play_game) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "computer is used for playing game", "pln": ["(: cnet_usedfor_74a697a194 (UsedFor computer playing_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "computer is used for send email", "pln": ["(: cnet_usedfor_af85f50fdb (UsedFor computer send_email) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "computer is used for storing information", "pln": ["(: cnet_usedfor_b9054cdb1c (UsedFor computer storing_information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "computer is used for surfing internet", "pln": ["(: cnet_usedfor_ae8c0887b2 (UsedFor computer surfing_internet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "computer is used for word processing", "pln": ["(: cnet_usedfor_02745e249f (UsedFor computer word_processing) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "computer is used for work", "pln": ["(: cnet_usedfor_cabf9f3423 (UsedFor computer work) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "computer is used for writing", "pln": ["(: cnet_usedfor_b9aefb3f8c (UsedFor computer writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "computer is used for calculate", "pln": ["(: cnet_usedfor_6278613e3c (UsedFor computer calculate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "computer is used for cybernate", "pln": ["(: cnet_usedfor_91d45926c5 (UsedFor computer cybernate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "computer is used for process", "pln": ["(: cnet_usedfor_cb59fc2668 (UsedFor computer process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "computer disk is used for holding data", "pln": ["(: cnet_usedfor_b95edd1911 (UsedFor computer_disk holding_data) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "computer is used for do simulation", "pln": ["(: cnet_usedfor_de6ecd097a (UsedFor computer do_simulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "computer is used for learn thing", "pln": ["(: cnet_usedfor_2df60d37c0 (UsedFor computer learn_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "concert hall is used for listening to music", "pln": ["(: cnet_usedfor_dc8fd829a6 (UsedFor concert_hall listening_to_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "concert hall is used for performance", "pln": ["(: cnet_usedfor_effffb3f6f (UsedFor concert_hall performance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "condom is used for preventing pregnancy", "pln": ["(: cnet_usedfor_1b04ba7a42 (UsedFor condom preventing_pregnancy) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "condom is used for protecting others during sex", "pln": ["(: cnet_usedfor_7b4fed48eb (UsedFor condom protecting_others_during_sex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "condom is used for preventing std", "pln": ["(: cnet_usedfor_537420ea96 (UsedFor condom preventing_std) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "condom is used for protecting other during sex", "pln": ["(: cnet_usedfor_2aae69fc59 (UsedFor condom protecting_other_during_sex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "condom is used for protecting yourself during sex", "pln": ["(: cnet_usedfor_35f7ec6419 (UsedFor condom protecting_yourself_during_sex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "condom is used for protection", "pln": ["(: cnet_usedfor_1c389a993c (UsedFor condom protection) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "condom is used for sex", "pln": ["(: cnet_usedfor_9f814005b4 (UsedFor condom sex) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "condominium is used for live in", "pln": ["(: cnet_usedfor_bd4dcabf9b (UsedFor condominium live_in) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "condominium is used for living in", "pln": ["(: cnet_usedfor_b6e2efcd1d (UsedFor condominium living_in) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "condom is used for protect against disease", "pln": ["(: cnet_usedfor_4f50ba7e81 (UsedFor condom protect_against_disease) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "conducting trial is used for determining guilt or innocence", "pln": ["(: cnet_usedfor_a00b3e7c6b (UsedFor conducting_trial determining_guilt_or_innocence) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "conference auditorium is used for lecture", "pln": ["(: cnet_usedfor_efacbb779f (UsedFor conference_auditorium lecture) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "conference auditorium is used for meet", "pln": ["(: cnet_usedfor_98cb08d4fa (UsedFor conference_auditorium meet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "confetti is used for celebrate", "pln": ["(: cnet_usedfor_70c35757f4 (UsedFor confetti celebrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "confetti is used for enhance celebration", "pln": ["(: cnet_usedfor_1db45c1491 (UsedFor confetti enhance_celebration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "confetti is used for throwing", "pln": ["(: cnet_usedfor_a23582f354 (UsedFor confetti throwing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "confetti is used for throwing during party", "pln": ["(: cnet_usedfor_d13ed8d9f2 (UsedFor confetti throwing_during_party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "connection is used for getting job", "pln": ["(: cnet_usedfor_4128b72276 (UsedFor connection getting_job) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "conquering nation is used for expanding empire", "pln": ["(: cnet_usedfor_ca5eab790a (UsedFor conquering_nation expanding_empire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "conquering nation is used for making business community rich", "pln": ["(: cnet_usedfor_179180b6f7 (UsedFor conquering_nation making_business_community_rich) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "conquering nation is used for power", "pln": ["(: cnet_usedfor_d8914eebcc (UsedFor conquering_nation power) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "conquering nation is used for wealth", "pln": ["(: cnet_usedfor_fd104e2111 (UsedFor conquering_nation wealth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "conquering opponent is used for being victorious", "pln": ["(: cnet_usedfor_f41ed446d9 (UsedFor conquering_opponent being_victorious) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "conquering opponent is used for showing own strength", "pln": ["(: cnet_usedfor_0e0465f4f5 (UsedFor conquering_opponent showing_own_strength) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "conquering opponent is used for winning", "pln": ["(: cnet_usedfor_446446c8a6 (UsedFor conquering_opponent winning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "conquering opponent is used for winning battle", "pln": ["(: cnet_usedfor_41ebc935f3 (UsedFor conquering_opponent winning_battle) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "conquering opponent is used for winning game", "pln": ["(: cnet_usedfor_01a3dda893 (UsedFor conquering_opponent winning_game) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "container is used for containing", "pln": ["(: cnet_usedfor_673ca5aee1 (UsedFor container containing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "container is used for holding", "pln": ["(: cnet_usedfor_768c33eb6f (UsedFor container holding) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "container cup is used for drink from", "pln": ["(: cnet_usedfor_8a2d26cd7a (UsedFor container_cup drink_from) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "container cup is used for drinking", "pln": ["(: cnet_usedfor_c18321fd29 (UsedFor container_cup drinking) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "container drum is used for holding crude oil", "pln": ["(: cnet_usedfor_44c1f46ba5 (UsedFor container_drum holding_crude_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "container drum is used for store liquid", "pln": ["(: cnet_usedfor_496798e995 (UsedFor container_drum store_liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "contemplating is used for finding meaning in", "pln": ["(: cnet_usedfor_b1627fedd9 (UsedFor contemplating finding_meaning_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "contemplating is used for thinking about", "pln": ["(: cnet_usedfor_c9d156f73d (UsedFor contemplating thinking_about) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "contraceptive is used for prevent pregnancy", "pln": ["(: cnet_usedfor_e4f46521f8 (UsedFor contraceptive prevent_pregnancy) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "contraceptive is used for preventing pregnancy", "pln": ["(: cnet_usedfor_a3daa2e385 (UsedFor contraceptive preventing_pregnancy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "contraceptive device is used for avoid pregnancy", "pln": ["(: cnet_usedfor_e4c08df1fb (UsedFor contraceptive_device avoid_pregnancy) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "contraceptive device is used for family planning", "pln": ["(: cnet_usedfor_7e7b817547 (UsedFor contraceptive_device family_planning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "contralto is used for singing", "pln": ["(: cnet_usedfor_b1f09e1d81 (UsedFor contralto singing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cooking is used for food preparation", "pln": ["(: cnet_usedfor_dd6f87a3d0 (UsedFor cooking food_preparation) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cooking is used for preparing food", "pln": ["(: cnet_usedfor_d9e98a8714 (UsedFor cooking preparing_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cooking curry is used for eating", "pln": ["(: cnet_usedfor_be061b8a61 (UsedFor cooking_curry eating) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cooking dinner is used for eat", "pln": ["(: cnet_usedfor_90b4b25cbb (UsedFor cooking_dinner eat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "cooking dinner is used for entertaining company", "pln": ["(: cnet_usedfor_d39328b8c4 (UsedFor cooking_dinner entertaining_company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cooking dinner is used for feeding family", "pln": ["(: cnet_usedfor_0975a1b61b (UsedFor cooking_dinner feeding_family) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "cooking dinner is used for feeding yourself", "pln": ["(: cnet_usedfor_fb1df7941e (UsedFor cooking_dinner feeding_yourself) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cooking meal is used for eating", "pln": ["(: cnet_usedfor_8fe27bbfb0 (UsedFor cooking_meal eating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cooking meal is used for feeding family", "pln": ["(: cnet_usedfor_5c8b61f026 (UsedFor cooking_meal feeding_family) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cooking meal is used for feeding yourself", "pln": ["(: cnet_usedfor_f141f8f89a (UsedFor cooking_meal feeding_yourself) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cooking meal is used for having to eat", "pln": ["(: cnet_usedfor_ef1ddc15f3 (UsedFor cooking_meal having_to_eat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cooking meal is used for saving money", "pln": ["(: cnet_usedfor_a629408cc7 (UsedFor cooking_meal saving_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cooling off is used for becoming more comfortable", "pln": ["(: cnet_usedfor_443707014c (UsedFor cooling_off becoming_more_comfortable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "copulating is used for couple", "pln": ["(: cnet_usedfor_83367fbc20 (UsedFor copulating couple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "copulating is used for enjoying yourself", "pln": ["(: cnet_usedfor_daf34bc7fb (UsedFor copulating enjoying_yourself) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "copulating is used for enjoyment", "pln": ["(: cnet_usedfor_4d59dc76d9 (UsedFor copulating enjoyment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "copulating is used for fun", "pln": ["(: cnet_usedfor_74aeb78c9c (UsedFor copulating fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "copulating is used for lover", "pln": ["(: cnet_usedfor_33ea0810bd (UsedFor copulating lover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "copulating is used for pleasure", "pln": ["(: cnet_usedfor_ac963a4654 (UsedFor copulating pleasure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "copulating is used for procreating", "pln": ["(: cnet_usedfor_85f1b03af6 (UsedFor copulating procreating) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "copulating is used for producing offspring", "pln": ["(: cnet_usedfor_3edcf4ff93 (UsedFor copulating producing_offspring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "copulating is used for reproduction", "pln": ["(: cnet_usedfor_f523a05bae (UsedFor copulating reproduction) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "copulating is used for satisfying desire", "pln": ["(: cnet_usedfor_a9569c67e4 (UsedFor copulating satisfying_desire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "copulating is used for sex", "pln": ["(: cnet_usedfor_b9292af6cb (UsedFor copulating sex) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "cord is used for tie", "pln": ["(: cnet_usedfor_09e3b6e32e (UsedFor cord tie) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cord is used for tying thing together", "pln": ["(: cnet_usedfor_8ee6b73ac1 (UsedFor cord tying_thing_together) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "corner cupboard is used for store dishe in", "pln": ["(: cnet_usedfor_1057169690 (UsedFor corner_cupboard store_dishe_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "corner grocery is used for buy more milk", "pln": ["(: cnet_usedfor_d31f1c3c04 (UsedFor corner_grocery buy_more_milk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cornet is used for playing music", "pln": ["(: cnet_usedfor_656dba9097 (UsedFor cornet playing_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "correction fluid is used for correcting error", "pln": ["(: cnet_usedfor_e339ddebd4 (UsedFor correction_fluid correcting_error) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "correction fluid is used for correcting mistake", "pln": ["(: cnet_usedfor_08e5c6ac9b (UsedFor correction_fluid correcting_mistake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "correction fluid is used for cover mistake", "pln": ["(: cnet_usedfor_344a6fbf25 (UsedFor correction_fluid cover_mistake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cottage is used for live in", "pln": ["(: cnet_usedfor_0e8256a0a2 (UsedFor cottage live_in) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cottage is used for living in", "pln": ["(: cnet_usedfor_d32d940a92 (UsedFor cottage living_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cottage is used for vacationing in", "pln": ["(: cnet_usedfor_b647d3b2b9 (UsedFor cottage vacationing_in) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cotton is used for make cloth", "pln": ["(: cnet_usedfor_7afd6237d7 (UsedFor cotton make_cloth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cotton is used for make clothe", "pln": ["(: cnet_usedfor_0bef0e5d89 (UsedFor cotton make_clothe) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cotton is used for making clothing", "pln": ["(: cnet_usedfor_779816974f (UsedFor cotton making_clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cotton is used for threading", "pln": ["(: cnet_usedfor_3a0ad05330 (UsedFor cotton threading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "couch is used for furnish home", "pln": ["(: cnet_usedfor_81e83102a5 (UsedFor couch furnish_home) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "couch is used for lying on", "pln": ["(: cnet_usedfor_0577b9aac9 (UsedFor couch lying_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "couch is used for relaxing", "pln": ["(: cnet_usedfor_26c440f6e8 (UsedFor couch relaxing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "couch is used for sleeping", "pln": ["(: cnet_usedfor_85ee7c544f (UsedFor couch sleeping) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "council is used for decide", "pln": ["(: cnet_usedfor_d95f309768 (UsedFor council decide) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "council is used for decision making", "pln": ["(: cnet_usedfor_39595d2e53 (UsedFor council decision_making) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "council is used for talking about thing", "pln": ["(: cnet_usedfor_fa1065ff6a (UsedFor council talking_about_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "counter is used for counting", "pln": ["(: cnet_usedfor_fdee2164f3 (UsedFor counter counting) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "counter is used for store", "pln": ["(: cnet_usedfor_675e7cf2bd (UsedFor counter store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "counter is used for working on", "pln": ["(: cnet_usedfor_e7550cbb38 (UsedFor counter working_on) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "counter is used for hold", "pln": ["(: cnet_usedfor_43008afe3f (UsedFor counter hold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "counter is used for space", "pln": ["(: cnet_usedfor_8845ef1594 (UsedFor counter space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "court is used for playing basketball", "pln": ["(: cnet_usedfor_32c1aaae05 (UsedFor court playing_basketball) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "court is used for playing tennis", "pln": ["(: cnet_usedfor_bd9e971a47 (UsedFor court playing_tennis) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "courthouse is used for trying cases", "pln": ["(: cnet_usedfor_aed0d0e83e (UsedFor courthouse trying_cases) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "court is used for trial", "pln": ["(: cnet_usedfor_727ce35afe (UsedFor court trial) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "courthouse is used for trying cas", "pln": ["(: cnet_usedfor_46034829f5 (UsedFor courthouse trying_cas) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "courtroom is used for holding court", "pln": ["(: cnet_usedfor_573f724663 (UsedFor courtroom holding_court) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "courtyard is used for have garden", "pln": ["(: cnet_usedfor_bdaee2fba2 (UsedFor courtyard have_garden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cover is used for protecting thing", "pln": ["(: cnet_usedfor_ab21d62d1a (UsedFor cover protecting_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cpr is used for resuscitation", "pln": ["(: cnet_usedfor_8b441fa799 (UsedFor cpr resuscitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "crayon is used for colour with", "pln": ["(: cnet_usedfor_5d17cdcf2d (UsedFor crayon colour_with) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "crayon is used for draw", "pln": ["(: cnet_usedfor_cff092493e (UsedFor crayon draw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cream is used for humidify", "pln": ["(: cnet_usedfor_850493e7e0 (UsedFor cream humidify) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cream is used for person", "pln": ["(: cnet_usedfor_323eccea3a (UsedFor cream person) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cream is used for skin", "pln": ["(: cnet_usedfor_7f65b4b7b7 (UsedFor cream skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cream is used for soften", "pln": ["(: cnet_usedfor_ce844709b9 (UsedFor cream soften) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cream is used for soothe", "pln": ["(: cnet_usedfor_aed34befab (UsedFor cream soothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "creating art is used for fun", "pln": ["(: cnet_usedfor_4f72a7d263 (UsedFor creating_art fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "credit card is used for buy gas", "pln": ["(: cnet_usedfor_b63ea57b35 (UsedFor credit_card buy_gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "credit card is used for purchasing thing", "pln": ["(: cnet_usedfor_9603b8b43a (UsedFor credit_card purchasing_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "credit card is used for renting car", "pln": ["(: cnet_usedfor_b36c6a208d (UsedFor credit_card renting_car) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "credit card is used for shop", "pln": ["(: cnet_usedfor_40eeb62b04 (UsedFor credit_card shop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "credit card wallet is used for carry all credit card", "pln": ["(: cnet_usedfor_abbce78603 (UsedFor credit_card_wallet carry_all_credit_card) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "credit card wallet is used for carry credit card", "pln": ["(: cnet_usedfor_016c16cc39 (UsedFor credit_card_wallet carry_credit_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "credit card wallet is used for holding credit card", "pln": ["(: cnet_usedfor_f0d4269caa (UsedFor credit_card_wallet holding_credit_card) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "credit card wallet is used for store credit card", "pln": ["(: cnet_usedfor_73b859cc97 (UsedFor credit_card_wallet store_credit_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "crossing street is used for getting to other side", "pln": ["(: cnet_usedfor_594b2766f3 (UsedFor crossing_street getting_to_other_side) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "crossing street is used for pedestrian", "pln": ["(: cnet_usedfor_7678fca273 (UsedFor crossing_street pedestrian) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "crown is used for crown", "pln": ["(: cnet_usedfor_d9680e6def (UsedFor crown crown) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "crutch is used for cripple", "pln": ["(: cnet_usedfor_ac5aeeb81c (UsedFor crutch cripple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "crutch is used for help", "pln": ["(: cnet_usedfor_8d8d758f20 (UsedFor crutch help) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "crutch is used for hold", "pln": ["(: cnet_usedfor_cde4c6c154 (UsedFor crutch hold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "crutch is used for patient", "pln": ["(: cnet_usedfor_21e2f98fd6 (UsedFor crutch patient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "crutch is used for person", "pln": ["(: cnet_usedfor_f9227513f9 (UsedFor crutch person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "cupboard is used for keeping things clean", "pln": ["(: cnet_usedfor_4dac393e57 (UsedFor cupboard keeping_things_clean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "cups is used for drink from", "pln": ["(: cnet_usedfor_d151538c7f (UsedFor cups drink_from) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cubicle is used for constructing office space", "pln": ["(: cnet_usedfor_64683c2cb2 (UsedFor cubicle constructing_office_space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cubicle is used for dividing work space", "pln": ["(: cnet_usedfor_d24de6ac69 (UsedFor cubicle dividing_work_space) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cubicle is used for granting personal space", "pln": ["(: cnet_usedfor_12cd49bfcc (UsedFor cubicle granting_personal_space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cubicle is used for office work", "pln": ["(: cnet_usedfor_6f4c360295 (UsedFor cubicle office_work) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cubicle is used for privacy", "pln": ["(: cnet_usedfor_6b1b087b97 (UsedFor cubicle privacy) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cubicle is used for storage", "pln": ["(: cnet_usedfor_5881c4c329 (UsedFor cubicle storage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cubicle is used for work in", "pln": ["(: cnet_usedfor_4614123a04 (UsedFor cubicle work_in) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cubicle is used for working within", "pln": ["(: cnet_usedfor_8b11cdd43e (UsedFor cubicle working_within) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cup is used for drinking", "pln": ["(: cnet_usedfor_c46413039d (UsedFor cup drinking) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cup is used for drinking coffee", "pln": ["(: cnet_usedfor_546ec043a3 (UsedFor cup drinking_coffee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cup is used for hold coffee", "pln": ["(: cnet_usedfor_cbd76b1208 (UsedFor cup hold_coffee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cup is used for measuring liquid", "pln": ["(: cnet_usedfor_1d9c468cda (UsedFor cup measuring_liquid) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cup is used for hold", "pln": ["(: cnet_usedfor_7a555c4f1b (UsedFor cup hold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cupboard is used for coffee mug", "pln": ["(: cnet_usedfor_97746479b7 (UsedFor cupboard coffee_mug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cupboard is used for keeping thing clean", "pln": ["(: cnet_usedfor_952866f7f7 (UsedFor cupboard keeping_thing_clean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cupboard is used for storing crockery", "pln": ["(: cnet_usedfor_f382f12899 (UsedFor cupboard storing_crockery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cupboard is used for storing dishe", "pln": ["(: cnet_usedfor_764c2b6297 (UsedFor cupboard storing_dishe) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cupboard is used for storing thing", "pln": ["(: cnet_usedfor_e46a963459 (UsedFor cupboard storing_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cup is used for drink from", "pln": ["(: cnet_usedfor_19bd578401 (UsedFor cup drink_from) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "curb is used for parking car", "pln": ["(: cnet_usedfor_b9d0d5588c (UsedFor curb parking_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "curling iron is used for curling straight hair", "pln": ["(: cnet_usedfor_b0f9210e6c (UsedFor curling_iron curling_straight_hair) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "curling iron is used for style hair", "pln": ["(: cnet_usedfor_8b4c18498f (UsedFor curling_iron style_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "curtain is used for cover window", "pln": ["(: cnet_usedfor_5a36bca8be (UsedFor curtain cover_window) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "curtain is used for covering window", "pln": ["(: cnet_usedfor_f3fea6aaac (UsedFor curtain covering_window) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "curtain is used for get privacy", "pln": ["(: cnet_usedfor_df99f4d8ff (UsedFor curtain get_privacy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "curtain is used for privacy", "pln": ["(: cnet_usedfor_b354596416 (UsedFor curtain privacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "curtain is used for blind", "pln": ["(: cnet_usedfor_6e04eb4864 (UsedFor curtain blind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "curtain is used for curtain", "pln": ["(: cnet_usedfor_eb65ff669a (UsedFor curtain curtain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "curtain is used for dark", "pln": ["(: cnet_usedfor_0379d9b027 (UsedFor curtain dark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "curtain is used for darken", "pln": ["(: cnet_usedfor_4f32e43c9a (UsedFor curtain darken) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "curtain is used for hide", "pln": ["(: cnet_usedfor_9c1e2806be (UsedFor curtain hide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "curtain is used for obstruct", "pln": ["(: cnet_usedfor_fe2e1375ac (UsedFor curtain obstruct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cutlery drawer is used for store knive", "pln": ["(: cnet_usedfor_32d2106f7a (UsedFor cutlery_drawer store_knive) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cutlery drawer is used for storing knive", "pln": ["(: cnet_usedfor_17b4160c10 (UsedFor cutlery_drawer storing_knive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cymbal is used for make crashing sound", "pln": ["(: cnet_usedfor_0b0231c566 (UsedFor cymbal make_crashing_sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "cymbal is used for playing music with", "pln": ["(: cnet_usedfor_985c613f22 (UsedFor cymbal playing_music_with) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dam is used for generate hydro electric power", "pln": ["(: cnet_usedfor_f59e268164 (UsedFor dam generate_hydro_electric_power) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dance club is used for dancing", "pln": ["(: cnet_usedfor_950e841daf (UsedFor dance_club dancing) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dance club is used for meeting friend", "pln": ["(: cnet_usedfor_e653765070 (UsedFor dance_club meeting_friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "dancing is used for enjoying music", "pln": ["(: cnet_usedfor_81d7c4eddf (UsedFor dancing enjoying_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dancing is used for enjoying yourself", "pln": ["(: cnet_usedfor_c164ab3493 (UsedFor dancing enjoying_yourself) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dancing is used for exercise", "pln": ["(: cnet_usedfor_586f3c5184 (UsedFor dancing exercise) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dancing is used for flirting", "pln": ["(: cnet_usedfor_569d64cf8d (UsedFor dancing flirting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dancing is used for fun", "pln": ["(: cnet_usedfor_5cb55ab4be (UsedFor dancing fun) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dancing is used for getting exercise", "pln": ["(: cnet_usedfor_5566f8f646 (UsedFor dancing getting_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dancing is used for performing", "pln": ["(: cnet_usedfor_6a66001ce2 (UsedFor dancing performing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dandruff shampoo is used for fighting dandruff", "pln": ["(: cnet_usedfor_fc26b42850 (UsedFor dandruff_shampoo fighting_dandruff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dandruff shampoo is used for prevention of dandruff", "pln": ["(: cnet_usedfor_956bc83e5c (UsedFor dandruff_shampoo prevention_of_dandruff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dandruff shampoo is used for treating dandruff", "pln": ["(: cnet_usedfor_a8625a17d8 (UsedFor dandruff_shampoo treating_dandruff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dandruff shampoo is used for washing hair", "pln": ["(: cnet_usedfor_4ba024518d (UsedFor dandruff_shampoo washing_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dark glass is used for looking cool", "pln": ["(: cnet_usedfor_b51e6e6e51 (UsedFor dark_glass looking_cool) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dark glass is used for protecting eye from sun", "pln": ["(: cnet_usedfor_99a179a760 (UsedFor dark_glass protecting_eye_from_sun) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "databas is used for store data", "pln": ["(: cnet_usedfor_5159b4f643 (UsedFor databas store_data) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "debit card is used for paying for", "pln": ["(: cnet_usedfor_2bfc4748c9 (UsedFor debit_card paying_for) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "debit card is used for paying for good", "pln": ["(: cnet_usedfor_dd9ffd1d2e (UsedFor debit_card paying_for_good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "decanter is used for hold wine", "pln": ["(: cnet_usedfor_fe6b74a7f6 (UsedFor decanter hold_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "decanter is used for holding wine", "pln": ["(: cnet_usedfor_8e6323f8eb (UsedFor decanter holding_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "deciding criminal s fate is used for judge", "pln": ["(: cnet_usedfor_151527f814 (UsedFor deciding_criminal_s_fate judge) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "deli is used for purchasing sandwiches", "pln": ["(: cnet_usedfor_bd74ea5fec (UsedFor deli purchasing_sandwiches) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "defibrilator is used for resuscitation", "pln": ["(: cnet_usedfor_e96af01788 (UsedFor defibrilator resuscitation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "deli is used for purchasing sandwiche", "pln": ["(: cnet_usedfor_1a0d253f47 (UsedFor deli purchasing_sandwiche) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "delicatessen is used for buy food", "pln": ["(: cnet_usedfor_a528330b81 (UsedFor delicatessen buy_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "delicatessen is used for sandwiche", "pln": ["(: cnet_usedfor_f4117d0c57 (UsedFor delicatessen sandwiche) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "den is used for hybernation", "pln": ["(: cnet_usedfor_94993b037e (UsedFor den hybernation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "denim is used for clothe", "pln": ["(: cnet_usedfor_8694915c3f (UsedFor denim clothe) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "denim is used for jean", "pln": ["(: cnet_usedfor_0c19da16fe (UsedFor denim jean) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "denim is used for make clothing", "pln": ["(: cnet_usedfor_308da80ce5 (UsedFor denim make_clothing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "denim is used for make jeans", "pln": ["(: cnet_usedfor_4d71690fe1 (UsedFor denim make_jeans) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "denim is used for making jeans", "pln": ["(: cnet_usedfor_f85e4b9833 (UsedFor denim making_jeans) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "denim is used for make jean", "pln": ["(: cnet_usedfor_598b3b91a4 (UsedFor denim make_jean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "denim is used for making jean", "pln": ["(: cnet_usedfor_40950c3fd6 (UsedFor denim making_jean) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dental floss is used for removing plaque", "pln": ["(: cnet_usedfor_acfc66ba20 (UsedFor dental_floss removing_plaque) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dentist is used for cleaning teeth", "pln": ["(: cnet_usedfor_2428f66dab (UsedFor dentist cleaning_teeth) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dentist is used for repairing damage done to teeth", "pln": ["(: cnet_usedfor_571f067944 (UsedFor dentist repairing_damage_done_to_teeth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dentist office is used for reading magazine", "pln": ["(: cnet_usedfor_cd5a1a85c2 (UsedFor dentist_office reading_magazine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "deodorant is used for smell good", "pln": ["(: cnet_usedfor_105207848e (UsedFor deodorant smell_good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "department store is used for buying clothe", "pln": ["(: cnet_usedfor_6f3dd72724 (UsedFor department_store buying_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "department store is used for shopping", "pln": ["(: cnet_usedfor_bef1727d79 (UsedFor department_store shopping) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "designing software is used for artificial intelligence", "pln": ["(: cnet_usedfor_54464e538f (UsedFor designing_software artificial_intelligence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "designing software is used for solving problem", "pln": ["(: cnet_usedfor_860bf7e519 (UsedFor designing_software solving_problem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "desk is used for working", "pln": ["(: cnet_usedfor_5964841156 (UsedFor desk working) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "desk is used for work", "pln": ["(: cnet_usedfor_84a06e85a2 (UsedFor desk work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "desk is used for write", "pln": ["(: cnet_usedfor_49349fd9e6 (UsedFor desk write) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "desk drawer is used for paper", "pln": ["(: cnet_usedfor_543900bc2e (UsedFor desk_drawer paper) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "desk drawer is used for storing thing", "pln": ["(: cnet_usedfor_c60f113405 (UsedFor desk_drawer storing_thing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "desk tray is used for holding paper clip", "pln": ["(: cnet_usedfor_1918f62944 (UsedFor desk_tray holding_paper_clip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "desk tray is used for put paper in", "pln": ["(: cnet_usedfor_8942849f2b (UsedFor desk_tray put_paper_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "desk tray is used for storing paper clip", "pln": ["(: cnet_usedfor_0d34dbbc80 (UsedFor desk_tray storing_paper_clip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "detector is used for detect", "pln": ["(: cnet_usedfor_67d3ac1dee (UsedFor detector detect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "detector is used for monitor", "pln": ["(: cnet_usedfor_fcc02e0693 (UsedFor detector monitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "detector is used for response", "pln": ["(: cnet_usedfor_ef47bdef69 (UsedFor detector response) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "detector is used for sense", "pln": ["(: cnet_usedfor_f942736f96 (UsedFor detector sense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "detergent is used for cleaning", "pln": ["(: cnet_usedfor_9066e74d57 (UsedFor detergent cleaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "diamond is used for cut steel", "pln": ["(: cnet_usedfor_435ef88bc4 (UsedFor diamond cut_steel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "diamond is used for cutting", "pln": ["(: cnet_usedfor_21dc9d0cf4 (UsedFor diamond cutting) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "diamond is used for drill", "pln": ["(: cnet_usedfor_d7b3311569 (UsedFor diamond drill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "diamond is used for scratch glass", "pln": ["(: cnet_usedfor_86980aa376 (UsedFor diamond scratch_glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "digestion is used for destroy evidence", "pln": ["(: cnet_usedfor_ca32c5b09f (UsedFor digestion destroy_evidence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "digital library is used for learning", "pln": ["(: cnet_usedfor_afab586ef0 (UsedFor digital_library learning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dildo is used for fucking", "pln": ["(: cnet_usedfor_2aa8ece0ac (UsedFor dildo fucking) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dildo is used for give sexual pleasure", "pln": ["(: cnet_usedfor_c29a9823e4 (UsedFor dildo give_sexual_pleasure) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "dildo is used for masturbation", "pln": ["(: cnet_usedfor_6a778182bb (UsedFor dildo masturbation) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dildo is used for playing game in bedroom", "pln": ["(: cnet_usedfor_5062e95960 (UsedFor dildo playing_game_in_bedroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dildo is used for playing game in genitalia", "pln": ["(: cnet_usedfor_11cbc47eb4 (UsedFor dildo playing_game_in_genitalia) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dime store is used for purchasing inexpensive item", "pln": ["(: cnet_usedfor_2c0869baf6 (UsedFor dime_store purchasing_inexpensive_item) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "diner is used for eating", "pln": ["(: cnet_usedfor_98d40260aa (UsedFor diner eating) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dining room is used for eating in", "pln": ["(: cnet_usedfor_c036b0e9a8 (UsedFor dining_room eating_in) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dining room is used for eating meal", "pln": ["(: cnet_usedfor_cc9df7aef9 (UsedFor dining_room eating_meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dining room table is used for eat at", "pln": ["(: cnet_usedfor_89fd3d3fd7 (UsedFor dining_room_table eat_at) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "dining room table is used for eating dinner on", "pln": ["(: cnet_usedfor_3e312020fc (UsedFor dining_room_table eating_dinner_on) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dining room table is used for serve dinner", "pln": ["(: cnet_usedfor_5d497d56be (UsedFor dining_room_table serve_dinner) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dining table is used for eat dinner", "pln": ["(: cnet_usedfor_9f31589b15 (UsedFor dining_table eat_dinner) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dining table is used for eat dinnner", "pln": ["(: cnet_usedfor_a7433db59a (UsedFor dining_table eat_dinnner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dining table is used for playing game on", "pln": ["(: cnet_usedfor_e97980067f (UsedFor dining_table playing_game_on) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "dining table is used for serving dinner", "pln": ["(: cnet_usedfor_0f44953c77 (UsedFor dining_table serving_dinner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "director chair is used for directors to sit in", "pln": ["(: cnet_usedfor_b34108ff70 (UsedFor director_chair directors_to_sit_in) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "dirty dishes is used for washing", "pln": ["(: cnet_usedfor_690853945b (UsedFor dirty_dishes washing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "divider is used for divide things", "pln": ["(: cnet_usedfor_d15708db7a (UsedFor divider divide_things) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dining table is used for sitting around with family", "pln": ["(: cnet_usedfor_d326f217d2 (UsedFor dining_table sitting_around_with_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "director chair is used for director to sit in", "pln": ["(: cnet_usedfor_88075c0526 (UsedFor director_chair director_to_sit_in) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dirty dishe is used for putting in dishwasher", "pln": ["(: cnet_usedfor_3fe2f89fa7 (UsedFor dirty_dishe putting_in_dishwasher) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dirty dishe is used for washing", "pln": ["(: cnet_usedfor_fb8a7f752f (UsedFor dirty_dishe washing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "disco is used for dancing", "pln": ["(: cnet_usedfor_335d264343 (UsedFor disco dancing) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "discothque is used for drinking in", "pln": ["(: cnet_usedfor_bb496977f7 (UsedFor discothque drinking_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "discothque is used for fun", "pln": ["(: cnet_usedfor_05d65f179f (UsedFor discothque fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "discothque is used for meeting people", "pln": ["(: cnet_usedfor_1ef5579dae (UsedFor discothque meeting_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "disease is used for make sick", "pln": ["(: cnet_usedfor_d60386b387 (UsedFor disease make_sick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dish is used for cooking", "pln": ["(: cnet_usedfor_85f6d4105b (UsedFor dish cooking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dish is used for eat thing off of", "pln": ["(: cnet_usedfor_98167d1291 (UsedFor dish eat_thing_off_of) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dish is used for eating", "pln": ["(: cnet_usedfor_4e47fd49f8 (UsedFor dish eating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dish is used for eating food", "pln": ["(: cnet_usedfor_7302cb836e (UsedFor dish eating_food) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dish is used for hold food", "pln": ["(: cnet_usedfor_0dbcb63b04 (UsedFor dish hold_food) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dish is used for serving food", "pln": ["(: cnet_usedfor_1a06c9aeb5 (UsedFor dish serving_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dish is used for air", "pln": ["(: cnet_usedfor_b9fa706680 (UsedFor dish air) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dish is used for hold", "pln": ["(: cnet_usedfor_ac2413a893 (UsedFor dish hold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dish is used for pick up", "pln": ["(: cnet_usedfor_c9989496aa (UsedFor dish pick_up) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dish is used for scan", "pln": ["(: cnet_usedfor_c80af7f5c5 (UsedFor dish scan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dish is used for serve", "pln": ["(: cnet_usedfor_d64fb25683 (UsedFor dish serve) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dishwasher is used for washing dishe", "pln": ["(: cnet_usedfor_0dcd586ab0 (UsedFor dishwasher washing_dishe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "disk is used for store computer data", "pln": ["(: cnet_usedfor_920f75c630 (UsedFor disk store_computer_data) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "disk is used for storing data", "pln": ["(: cnet_usedfor_54593ce371 (UsedFor disk storing_data) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "display cabinet is used for displaying", "pln": ["(: cnet_usedfor_b2993ccaf1 (UsedFor display_cabinet displaying) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "display cabinet is used for showing off collection of thing", "pln": ["(: cnet_usedfor_0370c7e18c (UsedFor display_cabinet showing_off_collection_of_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "disposable razor is used for shave leg", "pln": ["(: cnet_usedfor_d9b0327a4d (UsedFor disposable_razor shave_leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "disposable razor is used for shaving leg", "pln": ["(: cnet_usedfor_ccd85750c3 (UsedFor disposable_razor shaving_leg) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "diversion is used for attracting attention", "pln": ["(: cnet_usedfor_eafa92e750 (UsedFor diversion attracting_attention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "divider is used for divide thing", "pln": ["(: cnet_usedfor_55776f249f (UsedFor divider divide_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "divider is used for dividing thing", "pln": ["(: cnet_usedfor_30d8fb55e4 (UsedFor divider dividing_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "diving is used for entering water", "pln": ["(: cnet_usedfor_1a4fd999ae (UsedFor diving entering_water) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "diving is used for exercise", "pln": ["(: cnet_usedfor_062523fbc7 (UsedFor diving exercise) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "diving is used for fun", "pln": ["(: cnet_usedfor_dbbee530fd (UsedFor diving fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "diving is used for observing specy which live underwater", "pln": ["(: cnet_usedfor_ef26b3f065 (UsedFor diving observing_specy_which_live_underwater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "diving is used for recreation", "pln": ["(: cnet_usedfor_577f730a42 (UsedFor diving recreation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "diving is used for relaxation", "pln": ["(: cnet_usedfor_80fcd20a7d (UsedFor diving relaxation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dna is used for convict", "pln": ["(: cnet_usedfor_c2e58717a6 (UsedFor dna convict) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dna is used for identify people", "pln": ["(: cnet_usedfor_9e3f1f1e13 (UsedFor dna identify_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dna is used for make protein", "pln": ["(: cnet_usedfor_48d0cfef87 (UsedFor dna make_protein) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doctor is used for diagnosing people problem", "pln": ["(: cnet_usedfor_e903ef9258 (UsedFor doctor diagnosing_people_problem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doctor is used for heal", "pln": ["(: cnet_usedfor_ac49d2a4dc (UsedFor doctor heal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doctor is used for maintaining health", "pln": ["(: cnet_usedfor_576da5ca9e (UsedFor doctor maintaining_health) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doctor is used for providing expert information", "pln": ["(: cnet_usedfor_f95e6f2653 (UsedFor doctor providing_expert_information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doctor examination room is used for examining patient", "pln": ["(: cnet_usedfor_eba71908a2 (UsedFor doctor_examination_room examining_patient) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doctor office is used for seeing doctor", "pln": ["(: cnet_usedfor_a0dd228a0d (UsedFor doctor_office seeing_doctor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doctor office is used for waiting for doctor", "pln": ["(: cnet_usedfor_1913dfab96 (UsedFor doctor_office waiting_for_doctor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "document folder is used for filing", "pln": ["(: cnet_usedfor_6da5326c47 (UsedFor document_folder filing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "document folder is used for keeping paper", "pln": ["(: cnet_usedfor_1e4be16e6d (UsedFor document_folder keeping_paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "document folder is used for store document", "pln": ["(: cnet_usedfor_d7020bf977 (UsedFor document_folder store_document) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "document folder is used for storing document", "pln": ["(: cnet_usedfor_545d21a43f (UsedFor document_folder storing_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dog is used for companionship", "pln": ["(: cnet_usedfor_90442aad8d (UsedFor dog companionship) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dog is used for guard house", "pln": ["(: cnet_usedfor_258095f402 (UsedFor dog guard_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dog is used for guarding property", "pln": ["(: cnet_usedfor_3dbc486085 (UsedFor dog guarding_property) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "dog is used for keep company", "pln": ["(: cnet_usedfor_ecee02e72f (UsedFor dog keep_company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dog is used for keeping company", "pln": ["(: cnet_usedfor_b98ec38de1 (UsedFor dog keeping_company) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dog is used for pet", "pln": ["(: cnet_usedfor_b09aca73a2 (UsedFor dog pet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dog is used for find hidden thing", "pln": ["(: cnet_usedfor_d577196a99 (UsedFor dog find_hidden_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "doing crossword puzzle is used for entertainment", "pln": ["(: cnet_usedfor_7f2a676eaf (UsedFor doing_crossword_puzzle entertainment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doing crossword puzzle is used for having fun", "pln": ["(: cnet_usedfor_86e57b3f1e (UsedFor doing_crossword_puzzle having_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doing crossword puzzle is used for learning new word", "pln": ["(: cnet_usedfor_13c2ac0a77 (UsedFor doing_crossword_puzzle learning_new_word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doing crossword puzzle is used for relaxation", "pln": ["(: cnet_usedfor_a5e17ce4a4 (UsedFor doing_crossword_puzzle relaxation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doing exercis is used for building muscle", "pln": ["(: cnet_usedfor_76ea018c9d (UsedFor doing_exercis building_muscle) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doing exercis is used for good health", "pln": ["(: cnet_usedfor_f65f35584b (UsedFor doing_exercis good_health) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doing exercis is used for health", "pln": ["(: cnet_usedfor_387caed466 (UsedFor doing_exercis health) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doing exercis is used for practice", "pln": ["(: cnet_usedfor_c5bbe89a63 (UsedFor doing_exercis practice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doing exercis is used for staying in shape", "pln": ["(: cnet_usedfor_8756c671b7 (UsedFor doing_exercis staying_in_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doing exercis is used for toning muscle", "pln": ["(: cnet_usedfor_676e2f7053 (UsedFor doing_exercis toning_muscle) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doing housework is used for cleaning house", "pln": ["(: cnet_usedfor_4d069af093 (UsedFor doing_housework cleaning_house) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doing housework is used for cleanliness", "pln": ["(: cnet_usedfor_8993a5b74a (UsedFor doing_housework cleanliness) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doing housework is used for everyone", "pln": ["(: cnet_usedfor_26f03ddd1a (UsedFor doing_housework everyone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doing housework is used for exercise", "pln": ["(: cnet_usedfor_d8bc19dc48 (UsedFor doing_housework exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doing housework is used for keeping home clean", "pln": ["(: cnet_usedfor_c634d91ce5 (UsedFor doing_housework keeping_home_clean) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doing housework is used for maid", "pln": ["(: cnet_usedfor_a00f247c74 (UsedFor doing_housework maid) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doll is used for child therapy", "pln": ["(: cnet_usedfor_2b483b6225 (UsedFor doll child_therapy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doll is used for child play", "pln": ["(: cnet_usedfor_bd523aa87d (UsedFor doll child_play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doll is used for collecting", "pln": ["(: cnet_usedfor_0ee7e54149 (UsedFor doll collecting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doll is used for creating humor", "pln": ["(: cnet_usedfor_7360e48043 (UsedFor doll creating_humor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doll is used for entertain child", "pln": ["(: cnet_usedfor_746539b03a (UsedFor doll entertain_child) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doll is used for fun for children", "pln": ["(: cnet_usedfor_85af9c6050 (UsedFor doll fun_for_children) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doll is used for learning about clothe", "pln": ["(: cnet_usedfor_dcf9c499e1 (UsedFor doll learning_about_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doll is used for little girl", "pln": ["(: cnet_usedfor_838530ae0b (UsedFor doll little_girl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doll is used for play", "pln": ["(: cnet_usedfor_1c30dfa291 (UsedFor doll play) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doll is used for play house", "pln": ["(: cnet_usedfor_59300c4a24 (UsedFor doll play_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doll is used for play with little girl", "pln": ["(: cnet_usedfor_a4060eaefe (UsedFor doll play_with_little_girl) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doll is used for playing pretend game", "pln": ["(: cnet_usedfor_9eaab68565 (UsedFor doll playing_pretend_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doll is used for playing with", "pln": ["(: cnet_usedfor_9d9c027bb1 (UsedFor doll playing_with) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doll is used for plaything for cat", "pln": ["(: cnet_usedfor_8731cc962a (UsedFor doll plaything_for_cat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doll is used for plaything for dog", "pln": ["(: cnet_usedfor_dbdc85bb8f (UsedFor doll plaything_for_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doll is used for teaching children", "pln": ["(: cnet_usedfor_28ed8bdca8 (UsedFor doll teaching_children) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doll is used for teaching medical personnel", "pln": ["(: cnet_usedfor_dd1da1af2a (UsedFor doll teaching_medical_personnel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "dollar is used for buying", "pln": ["(: cnet_usedfor_de80f6c75d (UsedFor dollar buying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dollar is used for spending", "pln": ["(: cnet_usedfor_2fe768dd47 (UsedFor dollar spending) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dollar bill is used for pay", "pln": ["(: cnet_usedfor_757771897a (UsedFor dollar_bill pay) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dollar bill is used for paying for thing", "pln": ["(: cnet_usedfor_1c3a90bace (UsedFor dollar_bill paying_for_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dollar bill is used for tipping taxi driver", "pln": ["(: cnet_usedfor_25a1e6c440 (UsedFor dollar_bill tipping_taxi_driver) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "door is used for separating room", "pln": ["(: cnet_usedfor_fb0fb5fba1 (UsedFor door separating_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "door knob is used for opening door", "pln": ["(: cnet_usedfor_c8273082cd (UsedFor door_knob opening_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "door knob is used for open door", "pln": ["(: cnet_usedfor_fae48e1ab5 (UsedFor door_knob open_door) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "door with lock is used for keep people out", "pln": ["(: cnet_usedfor_16f6400473 (UsedFor door_with_lock keep_people_out) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "door with lock is used for locking thing in", "pln": ["(: cnet_usedfor_c2b039a223 (UsedFor door_with_lock locking_thing_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "door with lock is used for locking thing out", "pln": ["(: cnet_usedfor_a035d54126 (UsedFor door_with_lock locking_thing_out) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "door with lock is used for privacy", "pln": ["(: cnet_usedfor_fef3ede1c3 (UsedFor door_with_lock privacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "door with lock is used for security", "pln": ["(: cnet_usedfor_c3d94a204b (UsedFor door_with_lock security) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doorbell is used for ring", "pln": ["(: cnet_usedfor_7e24ab330e (UsedFor doorbell ring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doormat is used for keeping house clean", "pln": ["(: cnet_usedfor_4253b9d517 (UsedFor doormat keeping_house_clean) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doormat is used for saying welcome", "pln": ["(: cnet_usedfor_970ece18ed (UsedFor doormat saying_welcome) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doormat is used for wipe shoe", "pln": ["(: cnet_usedfor_dc95fbcfc6 (UsedFor doormat wipe_shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doorway is used for enter room", "pln": ["(: cnet_usedfor_b18e33e18d (UsedFor doorway enter_room) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "doorway is used for going into room", "pln": ["(: cnet_usedfor_28b7759bbd (UsedFor doorway going_into_room) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "double bass is used for add harmony and beat", "pln": ["(: cnet_usedfor_b26a13af1b (UsedFor double_bass add_harmony_and_beat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "double bass is used for playing music", "pln": ["(: cnet_usedfor_9e29c47c00 (UsedFor double_bass playing_music) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "double edged razor is used for cut", "pln": ["(: cnet_usedfor_53cbd96bc5 (UsedFor double_edged_razor cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "double edged razor is used for shave", "pln": ["(: cnet_usedfor_87e1c0864b (UsedFor double_edged_razor shave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "double edged razor is used for shave with", "pln": ["(: cnet_usedfor_38f0f4c90a (UsedFor double_edged_razor shave_with) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "double edged razor is used for shaving", "pln": ["(: cnet_usedfor_6702ca0a61 (UsedFor double_edged_razor shaving) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "drawer is used for hold thing", "pln": ["(: cnet_usedfor_5f096029b9 (UsedFor drawer hold_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "drawer is used for storing sock", "pln": ["(: cnet_usedfor_e498930205 (UsedFor drawer storing_sock) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "drawer is used for storing thing", "pln": ["(: cnet_usedfor_384622be8a (UsedFor drawer storing_thing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "drawer is used for store", "pln": ["(: cnet_usedfor_4cffcc1356 (UsedFor drawer store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "drawstring bag is used for keeping thing", "pln": ["(: cnet_usedfor_fa3f69345c (UsedFor drawstring_bag keeping_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "drawstring bag is used for keeping thing in", "pln": ["(: cnet_usedfor_ed93aa0c7b (UsedFor drawstring_bag keeping_thing_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dress circle is used for make dress", "pln": ["(: cnet_usedfor_759b64a6d2 (UsedFor dress_circle make_dress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dresser is used for holding clothe", "pln": ["(: cnet_usedfor_f8800b7614 (UsedFor dresser holding_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dresser is used for storing clothe", "pln": ["(: cnet_usedfor_0713f45c3f (UsedFor dresser storing_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "dresser is used for storing clothing", "pln": ["(: cnet_usedfor_a2fff31a0a (UsedFor dresser storing_clothing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dressing nice is used for date", "pln": ["(: cnet_usedfor_9a293293e2 (UsedFor dressing_nice date) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dressing nice is used for going on date", "pln": ["(: cnet_usedfor_1ee9cd8a57 (UsedFor dressing_nice going_on_date) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dressing nice is used for going out", "pln": ["(: cnet_usedfor_834023dadc (UsedFor dressing_nice going_out) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "dressing nice is used for having date", "pln": ["(: cnet_usedfor_cd872e8dac (UsedFor dressing_nice having_date) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dressing nice is used for impressing", "pln": ["(: cnet_usedfor_9fec60d7d8 (UsedFor dressing_nice impressing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dressing nice is used for special occasion", "pln": ["(: cnet_usedfor_2b19b74efb (UsedFor dressing_nice special_occasion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dressing room is used for get dressed", "pln": ["(: cnet_usedfor_f4531812dc (UsedFor dressing_room get_dressed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dressing room is used for privacy", "pln": ["(: cnet_usedfor_fae492925c (UsedFor dressing_room privacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dressing room is used for try on clothing before buying", "pln": ["(: cnet_usedfor_826d5a94b0 (UsedFor dressing_room try_on_clothing_before_buying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "drill is used for drilling", "pln": ["(: cnet_usedfor_2da42f01fc (UsedFor drill drilling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "drill is used for drilling hole in thing", "pln": ["(: cnet_usedfor_7032a04af3 (UsedFor drill drilling_hole_in_thing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "drill is used for bore", "pln": ["(: cnet_usedfor_64cfeb5b8a (UsedFor drill bore) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "drill is used for cut", "pln": ["(: cnet_usedfor_96f161d4fc (UsedFor drill cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "drill is used for hole", "pln": ["(: cnet_usedfor_682fe06f95 (UsedFor drill hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "drinking is used for quenching thirst", "pln": ["(: cnet_usedfor_6167718fb0 (UsedFor drinking quenching_thirst) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "drinking alcohol is used for celebration", "pln": ["(: cnet_usedfor_92ce093ef6 (UsedFor drinking_alcohol celebration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "drinking alcohol is used for getting drunk", "pln": ["(: cnet_usedfor_73877f7af7 (UsedFor drinking_alcohol getting_drunk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "drinking alcohol is used for partying", "pln": ["(: cnet_usedfor_e7fc057a77 (UsedFor drinking_alcohol partying) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "drinking alcohol is used for social occasion", "pln": ["(: cnet_usedfor_4f9624a015 (UsedFor drinking_alcohol social_occasion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "drink is used for drinking", "pln": ["(: cnet_usedfor_54ef1d015e (UsedFor drink drinking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "drive is used for storing data", "pln": ["(: cnet_usedfor_a9cadd4f30 (UsedFor drive storing_data) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "driveway is used for car", "pln": ["(: cnet_usedfor_a43fbc853b (UsedFor driveway car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "driveway is used for garage sale", "pln": ["(: cnet_usedfor_342accea14 (UsedFor driveway garage_sale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "driveway is used for parking", "pln": ["(: cnet_usedfor_9f358bf5fd (UsedFor driveway parking) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "driveway is used for pickup", "pln": ["(: cnet_usedfor_be86966da2 (UsedFor driveway pickup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "driveway is used for truck", "pln": ["(: cnet_usedfor_2c9df448ce (UsedFor driveway truck) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "driving is used for control of vehicle", "pln": ["(: cnet_usedfor_cbc8d04bac (UsedFor driving control_of_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "driving car is used for getting from one place to another", "pln": ["(: cnet_usedfor_82d8245aef (UsedFor driving_car getting_from_one_place_to_another) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "driving car is used for getting one place to another", "pln": ["(: cnet_usedfor_67994f881b (UsedFor driving_car getting_one_place_to_another) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "driving car is used for getting other place", "pln": ["(: cnet_usedfor_51906c08f2 (UsedFor driving_car getting_other_place) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "driving car is used for getting somewhere", "pln": ["(: cnet_usedfor_f08ca07128 (UsedFor driving_car getting_somewhere) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "driving car is used for going somewhere", "pln": ["(: cnet_usedfor_7f0bb237dc (UsedFor driving_car going_somewhere) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "driving car is used for having fun", "pln": ["(: cnet_usedfor_42c66ef6cb (UsedFor driving_car having_fun) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "driving car is used for transporting thing", "pln": ["(: cnet_usedfor_517704a741 (UsedFor driving_car transporting_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "drug is used for treat illness", "pln": ["(: cnet_usedfor_2111a73206 (UsedFor drug treat_illness) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "drug is used for get high", "pln": ["(: cnet_usedfor_6749ad3043 (UsedFor drug get_high) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "drum is used for beat", "pln": ["(: cnet_usedfor_589743772e (UsedFor drum beat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "drum is used for making music", "pln": ["(: cnet_usedfor_ca0baa2bf4 (UsedFor drum making_music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "drum is used for drum", "pln": ["(: cnet_usedfor_67870257a7 (UsedFor drum drum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "drum is used for music", "pln": ["(: cnet_usedfor_f2b9588614 (UsedFor drum music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "drum is used for rhythm", "pln": ["(: cnet_usedfor_fdb1ec08a0 (UsedFor drum rhythm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "duck is used for eat", "pln": ["(: cnet_usedfor_07e1721637 (UsedFor duck eat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "duplex is used for housing two family", "pln": ["(: cnet_usedfor_b56c3f2021 (UsedFor duplex housing_two_family) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "duvet is used for sleep", "pln": ["(: cnet_usedfor_4238372226 (UsedFor duvet sleep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "duvet cover is used for cover comforter", "pln": ["(: cnet_usedfor_f64fb68130 (UsedFor duvet_cover cover_comforter) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dvd player is used for watching dvd", "pln": ["(: cnet_usedfor_dbdd8aabbd (UsedFor dvd_player watching_dvd) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dying is used for changing color", "pln": ["(: cnet_usedfor_91dc05a777 (UsedFor dying changing_color) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dying is used for end of life", "pln": ["(: cnet_usedfor_7e1b88cc5b (UsedFor dying end_of_life) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dying is used for ending life", "pln": ["(: cnet_usedfor_69f692c7ef (UsedFor dying ending_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dying is used for ending live", "pln": ["(: cnet_usedfor_7c837dfbd9 (UsedFor dying ending_live) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dynamite is used for blow thing up", "pln": ["(: cnet_usedfor_2cf037c6d4 (UsedFor dynamite blow_thing_up) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "dynamite is used for blowing thing up", "pln": ["(: cnet_usedfor_cebd9c21e8 (UsedFor dynamite blowing_thing_up) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "e mail is used for communication", "pln": ["(: cnet_usedfor_8106f67a97 (UsedFor e_mail communication) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "earning living is used for saving money", "pln": ["(: cnet_usedfor_dc7f3c3a25 (UsedFor earning_living saving_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "earring is used for decoration", "pln": ["(: cnet_usedfor_5788066ff6 (UsedFor earring decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ear is used for hear sound", "pln": ["(: cnet_usedfor_f16458cbd7 (UsedFor ear hear_sound) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "earth is used for live on", "pln": ["(: cnet_usedfor_91c3b8dfb1 (UsedFor earth live_on) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eat meal is used for nutrition", "pln": ["(: cnet_usedfor_0fb0b75b62 (UsedFor eat_meal nutrition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eatery is used for buying food", "pln": ["(: cnet_usedfor_be6a9b49f5 (UsedFor eatery buying_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eatery is used for getting food", "pln": ["(: cnet_usedfor_b74830e992 (UsedFor eatery getting_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eating is used for satisfying hunger", "pln": ["(: cnet_usedfor_be8303784b (UsedFor eating satisfying_hunger) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eating apple is used for health", "pln": ["(: cnet_usedfor_f94c3b01a2 (UsedFor eating_apple health) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eating apple is used for nutrient", "pln": ["(: cnet_usedfor_7fa0c8edfc (UsedFor eating_apple nutrient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eating apple is used for nutrition", "pln": ["(: cnet_usedfor_85e85592a3 (UsedFor eating_apple nutrition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eating apple is used for pleasure", "pln": ["(: cnet_usedfor_414a8ca0e9 (UsedFor eating_apple pleasure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eating apple is used for satisfying hunger", "pln": ["(: cnet_usedfor_9b891f9a5f (UsedFor eating_apple satisfying_hunger) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eating apple is used for taste", "pln": ["(: cnet_usedfor_185a48a373 (UsedFor eating_apple taste) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eating breakfast is used for consuming nourishment", "pln": ["(: cnet_usedfor_153ec66808 (UsedFor eating_breakfast consuming_nourishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eating breakfast is used for starting day", "pln": ["(: cnet_usedfor_95bbc76d9c (UsedFor eating_breakfast starting_day) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eating breakfast is used for starting day right", "pln": ["(: cnet_usedfor_74c254e032 (UsedFor eating_breakfast starting_day_right) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eating breakfast in bed is used for being lazy", "pln": ["(: cnet_usedfor_051c250127 (UsedFor eating_breakfast_in_bed being_lazy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eating cookie is used for treat", "pln": ["(: cnet_usedfor_324a2f2ef6 (UsedFor eating_cookie treat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eating dinner is used for satisfying hunger", "pln": ["(: cnet_usedfor_4d586b30fb (UsedFor eating_dinner satisfying_hunger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "eating hamburger is used for reducing hunger", "pln": ["(: cnet_usedfor_37107f614a (UsedFor eating_hamburger reducing_hunger) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eating hamburger is used for satisfying hunger", "pln": ["(: cnet_usedfor_7becd98f0d (UsedFor eating_hamburger satisfying_hunger) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eating ice cream is used for cooling off", "pln": ["(: cnet_usedfor_f3c305c6df (UsedFor eating_ice_cream cooling_off) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eating ice cream is used for enjoyment", "pln": ["(: cnet_usedfor_076beadffe (UsedFor eating_ice_cream enjoyment) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eating ice cream is used for having dessert", "pln": ["(: cnet_usedfor_3c0e496774 (UsedFor eating_ice_cream having_dessert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eating in restaurant is used for being social", "pln": ["(: cnet_usedfor_f9812e2654 (UsedFor eating_in_restaurant being_social) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "eating in restaurant is used for satisfying hunger", "pln": ["(: cnet_usedfor_ab86413ab2 (UsedFor eating_in_restaurant satisfying_hunger) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eating in restaurant is used for socialising", "pln": ["(: cnet_usedfor_a3da01aa8f (UsedFor eating_in_restaurant socialising) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eating lunch is used for energy", "pln": ["(: cnet_usedfor_59adaf9d48 (UsedFor eating_lunch energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eating lunch is used for nutrition", "pln": ["(: cnet_usedfor_3362f2beac (UsedFor eating_lunch nutrition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eating place is used for consuming nourishment", "pln": ["(: cnet_usedfor_5c387d452b (UsedFor eating_place consuming_nourishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eating place is used for eat food", "pln": ["(: cnet_usedfor_8fd3463e10 (UsedFor eating_place eat_food) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eating place is used for eating food", "pln": ["(: cnet_usedfor_1b76275679 (UsedFor eating_place eating_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eating place is used for having drink", "pln": ["(: cnet_usedfor_7e3745e9d7 (UsedFor eating_place having_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eating place is used for relaxing", "pln": ["(: cnet_usedfor_06ecbc1cbf (UsedFor eating_place relaxing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eating quickly is used for speed", "pln": ["(: cnet_usedfor_18a4d6c4f4 (UsedFor eating_quickly speed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eating vegetable is used for getting vitamin", "pln": ["(: cnet_usedfor_352b4368aa (UsedFor eating_vegetable getting_vitamin) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eating vegetable is used for health", "pln": ["(: cnet_usedfor_1abec8ea5b (UsedFor eating_vegetable health) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "edinburgh is used for tourism", "pln": ["(: cnet_usedfor_f3de6c61a4 (UsedFor edinburgh tourism) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "egg is used for food", "pln": ["(: cnet_usedfor_927e5c2e6f (UsedFor egg food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "egg is used for create paint", "pln": ["(: cnet_usedfor_e5c09c39ed (UsedFor egg create_paint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eiffel tower is used for tourist", "pln": ["(: cnet_usedfor_76f7ed7ccd (UsedFor eiffel_tower tourist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "election day is used for voting", "pln": ["(: cnet_usedfor_57aee55c10 (UsedFor election_day voting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "electric fan is used for air circulation", "pln": ["(: cnet_usedfor_be67e7b03b (UsedFor electric_fan air_circulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "electric fan is used for circulating air", "pln": ["(: cnet_usedfor_4e356b2932 (UsedFor electric_fan circulating_air) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "electric fan is used for cool down room", "pln": ["(: cnet_usedfor_e3409d3d73 (UsedFor electric_fan cool_down_room) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "electric fan is used for cooling", "pln": ["(: cnet_usedfor_658a049428 (UsedFor electric_fan cooling) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "electric fan is used for moving air", "pln": ["(: cnet_usedfor_30e9ae02ec (UsedFor electric_fan moving_air) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "electric pencil sharpener is used for pencil", "pln": ["(: cnet_usedfor_c5abb8b289 (UsedFor electric_pencil_sharpener pencil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "electric razor is used for remove unwanted hair", "pln": ["(: cnet_usedfor_cc1c292c21 (UsedFor electric_razor remove_unwanted_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "electric razor is used for shave", "pln": ["(: cnet_usedfor_2bd0d68f6a (UsedFor electric_razor shave) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "electric razor is used for shaving", "pln": ["(: cnet_usedfor_020679c36e (UsedFor electric_razor shaving) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "electric razor is used for trimming beard", "pln": ["(: cnet_usedfor_97ad685c98 (UsedFor electric_razor trimming_beard) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "electric toothbrush is used for brushing teeth", "pln": ["(: cnet_usedfor_70808d5170 (UsedFor electric_toothbrush brushing_teeth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "electric toothbrush is used for clean teeth", "pln": ["(: cnet_usedfor_659b491ced (UsedFor electric_toothbrush clean_teeth) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "electronic appliance is used for making life easier", "pln": ["(: cnet_usedfor_4761691146 (UsedFor electronic_appliance making_life_easier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "electronic store is used for buy computer", "pln": ["(: cnet_usedfor_33ac40f7f2 (UsedFor electronic_store buy_computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "electronic store is used for buy electronic", "pln": ["(: cnet_usedfor_23288f4962 (UsedFor electronic_store buy_electronic) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "electronic store is used for buying communication equipment", "pln": ["(: cnet_usedfor_98ab799f3d (UsedFor electronic_store buying_communication_equipment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "electronic store is used for buying electronic", "pln": ["(: cnet_usedfor_66eec90b50 (UsedFor electronic_store buying_electronic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "elevator is used for hoist", "pln": ["(: cnet_usedfor_4a2c8e7ac5 (UsedFor elevator hoist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "elevator is used for raise", "pln": ["(: cnet_usedfor_dda575fb97 (UsedFor elevator raise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "elevator is used for transport", "pln": ["(: cnet_usedfor_1e94fefdda (UsedFor elevator transport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "emptying bladder is used for relief", "pln": ["(: cnet_usedfor_2ec43d5446 (UsedFor emptying_bladder relief) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "energetic music is used for relax mind", "pln": ["(: cnet_usedfor_47c946973e (UsedFor energetic_music relax_mind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "engine is used for power", "pln": ["(: cnet_usedfor_edb341fee8 (UsedFor engine power) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "engine is used for work", "pln": ["(: cnet_usedfor_ebea7c91ed (UsedFor engine work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "english channel is used for swimming across", "pln": ["(: cnet_usedfor_42af131dad (UsedFor english_channel swimming_across) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "enjoying company of friend is used for happiness", "pln": ["(: cnet_usedfor_58a1114802 (UsedFor enjoying_company_of_friend happiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "enjoying day is used for happy people", "pln": ["(: cnet_usedfor_39dc5efd01 (UsedFor enjoying_day happy_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "enjoying film is used for entertainment", "pln": ["(: cnet_usedfor_0279b3c9db (UsedFor enjoying_film entertainment) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "enjoying film is used for fun", "pln": ["(: cnet_usedfor_3c8062b3dd (UsedFor enjoying_film fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "entertaining is used for getting to know better", "pln": ["(: cnet_usedfor_0d5c8de55d (UsedFor entertaining getting_to_know_better) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "entertaining is used for having fun", "pln": ["(: cnet_usedfor_740672d59a (UsedFor entertaining having_fun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "entertaining is used for making feel better", "pln": ["(: cnet_usedfor_d9bcadf6ee (UsedFor entertaining making_feel_better) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "entertaining people is used for becoming popular", "pln": ["(: cnet_usedfor_712e588ef9 (UsedFor entertaining_people becoming_popular) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "entertaining people is used for fun", "pln": ["(: cnet_usedfor_ea8ac5fafa (UsedFor entertaining_people fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "entertaining people is used for making laugh", "pln": ["(: cnet_usedfor_26b2772ed5 (UsedFor entertaining_people making_laugh) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "entrance is used for enter building", "pln": ["(: cnet_usedfor_290d651833 (UsedFor entrance enter_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "entrance is used for entering", "pln": ["(: cnet_usedfor_452ab66509 (UsedFor entrance entering) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "entrance is used for entering building", "pln": ["(: cnet_usedfor_8d6d772ab8 (UsedFor entrance entering_building) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "entranceway is used for enter", "pln": ["(: cnet_usedfor_af36770bc9 (UsedFor entranceway enter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "entranceway is used for entering", "pln": ["(: cnet_usedfor_403abb0383 (UsedFor entranceway entering) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "entranceway is used for entering place", "pln": ["(: cnet_usedfor_c624249b2c (UsedFor entranceway entering_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "entranceway is used for going in", "pln": ["(: cnet_usedfor_40e05d5d47 (UsedFor entranceway going_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "entranceway is used for going through", "pln": ["(: cnet_usedfor_c70648b324 (UsedFor entranceway going_through) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "entryway is used for enter", "pln": ["(: cnet_usedfor_0fb30edff2 (UsedFor entryway enter) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "entryway is used for entering", "pln": ["(: cnet_usedfor_15e5dd41a1 (UsedFor entryway entering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "entryway is used for go into building", "pln": ["(: cnet_usedfor_0d19bad5dd (UsedFor entryway go_into_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "envelope is used for mailing letter", "pln": ["(: cnet_usedfor_90134860d9 (UsedFor envelope mailing_letter) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "envelope is used for send letter", "pln": ["(: cnet_usedfor_e61dee0fcc (UsedFor envelope send_letter) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "envelope is used for hold", "pln": ["(: cnet_usedfor_f66ede1bd0 (UsedFor envelope hold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "envelope is used for protect", "pln": ["(: cnet_usedfor_a581f7c33c (UsedFor envelope protect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "equality for everyone is used for good of community", "pln": ["(: cnet_usedfor_4ba74e1e55 (UsedFor equality_for_everyone good_of_community) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "equipment is used for perform", "pln": ["(: cnet_usedfor_2e0378a46a (UsedFor equipment perform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "equipment is used for undertake", "pln": ["(: cnet_usedfor_14523c07f2 (UsedFor equipment undertake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "eraser is used for removing pencil marks", "pln": ["(: cnet_usedfor_0cd2056afb (UsedFor eraser removing_pencil_marks) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "equipment is used for work", "pln": ["(: cnet_usedfor_5d1d4324d1 (UsedFor equipment work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eraser is used for erasing mistake", "pln": ["(: cnet_usedfor_52502d7632 (UsedFor eraser erasing_mistake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eraser is used for removing image", "pln": ["(: cnet_usedfor_591ebebf85 (UsedFor eraser removing_image) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eraser is used for removing pencil mark", "pln": ["(: cnet_usedfor_ae3fb6ee04 (UsedFor eraser removing_pencil_mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eraser holder is used for hold eraser", "pln": ["(: cnet_usedfor_b71a4e27ed (UsedFor eraser_holder hold_eraser) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eraser holder is used for holding eraser", "pln": ["(: cnet_usedfor_b74a9b1e42 (UsedFor eraser_holder holding_eraser) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "ergonomic chair is used for comfortable", "pln": ["(: cnet_usedfor_4b92e2a745 (UsedFor ergonomic_chair comfortable) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "examination table is used for examin things", "pln": ["(: cnet_usedfor_fc39539890 (UsedFor examination_table examin_things) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ergonomic chair is used for sit comfortable", "pln": ["(: cnet_usedfor_a7973ce4c9 (UsedFor ergonomic_chair sit_comfortable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ethernet cord is used for connecting to internet", "pln": ["(: cnet_usedfor_7fe9b667dc (UsedFor ethernet_cord connecting_to_internet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "examination table is used for examin thing", "pln": ["(: cnet_usedfor_70fb54843c (UsedFor examination_table examin_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "examination table is used for medical exam", "pln": ["(: cnet_usedfor_7909113f31 (UsedFor examination_table medical_exam) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "exercising is used for cleaning blood vessels and lungs", "pln": ["(: cnet_usedfor_9b351c7c68 (UsedFor exercising cleaning_blood_vessels_and_lungs) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "examining thing is used for determining nature", "pln": ["(: cnet_usedfor_fa60cb6cfa (UsedFor examining_thing determining_nature) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "examining thing is used for learning about thing", "pln": ["(: cnet_usedfor_284b8b7140 (UsedFor examining_thing learning_about_thing) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "examining thing is used for learning more about", "pln": ["(: cnet_usedfor_0edaaa8417 (UsedFor examining_thing learning_more_about) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "examining thing is used for understanding thing", "pln": ["(: cnet_usedfor_b52279bfb6 (UsedFor examining_thing understanding_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "executive is used for enforcing law", "pln": ["(: cnet_usedfor_32019cbd96 (UsedFor executive enforcing_law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "exercising is used for cleaning blood vessel and lung", "pln": ["(: cnet_usedfor_5c675bda3f (UsedFor exercising cleaning_blood_vessel_and_lung) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "exercising is used for feeling good", "pln": ["(: cnet_usedfor_0f5cdd8397 (UsedFor exercising feeling_good) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "exercising is used for fun", "pln": ["(: cnet_usedfor_76d5a4dd07 (UsedFor exercising fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "exercising is used for getting in shape", "pln": ["(: cnet_usedfor_af8a032919 (UsedFor exercising getting_in_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "exercising is used for keeping excess weight off", "pln": ["(: cnet_usedfor_8a1ad36ff3 (UsedFor exercising keeping_excess_weight_off) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "exercising is used for keeping fit", "pln": ["(: cnet_usedfor_3de6d9e380 (UsedFor exercising keeping_fit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "exercising is used for losing weight", "pln": ["(: cnet_usedfor_cb69ffa12b (UsedFor exercising losing_weight) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "exercising is used for training", "pln": ["(: cnet_usedfor_8b000785ab (UsedFor exercising training) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "explosive is used for blow thing up", "pln": ["(: cnet_usedfor_56448e0da8 (UsedFor explosive blow_thing_up) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "explosive is used for blow up thing", "pln": ["(: cnet_usedfor_a0bd2fc727 (UsedFor explosive blow_up_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "explosive is used for blowing thing up", "pln": ["(: cnet_usedfor_668d875faf (UsedFor explosive blowing_thing_up) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "explosive is used for destruction", "pln": ["(: cnet_usedfor_d9982cd37c (UsedFor explosive destruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "expressing information is used for communication", "pln": ["(: cnet_usedfor_a57414922a (UsedFor expressing_information communication) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "expressway is used for driving", "pln": ["(: cnet_usedfor_e554a26167 (UsedFor expressway driving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "eye is used for blinking", "pln": ["(: cnet_usedfor_ea47cbca0e (UsedFor eye blinking) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "eyeglasses is used for improve vision", "pln": ["(: cnet_usedfor_44c69b02f8 (UsedFor eyeglasses improve_vision) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eye is used for looking", "pln": ["(: cnet_usedfor_eb8d77ce0e (UsedFor eye looking) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eye is used for looking at", "pln": ["(: cnet_usedfor_db03019006 (UsedFor eye looking_at) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eye is used for staring", "pln": ["(: cnet_usedfor_db90c69d3a (UsedFor eye staring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eye is used for viewing", "pln": ["(: cnet_usedfor_e06791e169 (UsedFor eye viewing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eye is used for vision", "pln": ["(: cnet_usedfor_f308f9ded0 (UsedFor eye vision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eyeglass is used for correcting vision", "pln": ["(: cnet_usedfor_827ebc4a25 (UsedFor eyeglass correcting_vision) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eyeglass is used for improve vision", "pln": ["(: cnet_usedfor_142e7ec79a (UsedFor eyeglass improve_vision) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eyeglass case is used for holding eyeglass", "pln": ["(: cnet_usedfor_e123eadd0c (UsedFor eyeglass_case holding_eyeglass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eyeglass case is used for protect eyeglass", "pln": ["(: cnet_usedfor_65072d9f93 (UsedFor eyeglass_case protect_eyeglass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eyeglass case is used for protecting eyeglass", "pln": ["(: cnet_usedfor_eb0f13381e (UsedFor eyeglass_case protecting_eyeglass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "eyeglass case is used for storing eyeglass", "pln": ["(: cnet_usedfor_79dea09488 (UsedFor eyeglass_case storing_eyeglass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fabric is used for clothing", "pln": ["(: cnet_usedfor_d91c92c44b (UsedFor fabric clothing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fabric is used for furniture covering", "pln": ["(: cnet_usedfor_9da8da05cc (UsedFor fabric furniture_covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fabric is used for make clothe", "pln": ["(: cnet_usedfor_3c1832f8b0 (UsedFor fabric make_clothe) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fabric is used for make clothing", "pln": ["(: cnet_usedfor_c0286e88a1 (UsedFor fabric make_clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fabric is used for make curtain", "pln": ["(: cnet_usedfor_1e181a22d4 (UsedFor fabric make_curtain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fabric is used for making blanket", "pln": ["(: cnet_usedfor_dba3bad6f9 (UsedFor fabric making_blanket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fabric is used for making cloth", "pln": ["(: cnet_usedfor_bde0e3051a (UsedFor fabric making_cloth) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "facial tissue is used for blowing nose", "pln": ["(: cnet_usedfor_37547f6f23 (UsedFor facial_tissue blowing_nose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "facsimile is used for fax", "pln": ["(: cnet_usedfor_31e4c7a00f (UsedFor facsimile fax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "facsimile is used for mail", "pln": ["(: cnet_usedfor_2bddfa58cc (UsedFor facsimile mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "facsimile is used for replicate", "pln": ["(: cnet_usedfor_744305acc2 (UsedFor facsimile replicate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "facsimile is used for transcript", "pln": ["(: cnet_usedfor_876dfc292b (UsedFor facsimile transcript) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "factory is used for manufacture thing", "pln": ["(: cnet_usedfor_28e165ad25 (UsedFor factory manufacture_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "family room is used for gather clan", "pln": ["(: cnet_usedfor_42d229bb48 (UsedFor family_room gather_clan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "family room is used for look at slide", "pln": ["(: cnet_usedfor_47e4443e6b (UsedFor family_room look_at_slide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "family room is used for play card", "pln": ["(: cnet_usedfor_848d721d8d (UsedFor family_room play_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "family room is used for play game", "pln": ["(: cnet_usedfor_019e54ffd6 (UsedFor family_room play_game) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "family room is used for play piano", "pln": ["(: cnet_usedfor_6bcb9f2ae6 (UsedFor family_room play_piano) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "family room is used for play ping pong", "pln": ["(: cnet_usedfor_3e2b837537 (UsedFor family_room play_ping_pong) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "family room is used for play pool", "pln": ["(: cnet_usedfor_fe25fa2c87 (UsedFor family_room play_pool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "family room is used for watch home movy", "pln": ["(: cnet_usedfor_5d8c01aea3 (UsedFor family_room watch_home_movy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "family room is used for watch tv", "pln": ["(: cnet_usedfor_75c104e8b4 (UsedFor family_room watch_tv) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "family room is used for watching television", "pln": ["(: cnet_usedfor_7c9ba71119 (UsedFor family_room watching_television) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "family room is used for watching tv", "pln": ["(: cnet_usedfor_c93715ee41 (UsedFor family_room watching_tv) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fan is used for circulate air", "pln": ["(: cnet_usedfor_cbd3c02d2a (UsedFor fan circulate_air) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fan is used for circulating air", "pln": ["(: cnet_usedfor_4228d8273e (UsedFor fan circulating_air) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fan is used for cool off", "pln": ["(: cnet_usedfor_9d3f6d24b6 (UsedFor fan cool_off) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fan is used for cool people down", "pln": ["(: cnet_usedfor_d553a5a3b7 (UsedFor fan cool_people_down) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fan is used for cooling air", "pln": ["(: cnet_usedfor_e7a6dcaca7 (UsedFor fan cooling_air) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fan is used for moving air", "pln": ["(: cnet_usedfor_b5df8153c3 (UsedFor fan moving_air) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "farecard is used for riding bus", "pln": ["(: cnet_usedfor_f8226e2db0 (UsedFor farecard riding_bus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "farecard is used for riding subway", "pln": ["(: cnet_usedfor_6144f3bf5f (UsedFor farecard riding_subway) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "farecard is used for travel", "pln": ["(: cnet_usedfor_c99a794a8f (UsedFor farecard travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "farmhouse is used for housing farmer and family", "pln": ["(: cnet_usedfor_eb19342ebb (UsedFor farmhouse housing_farmer_and_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "farmhouse is used for live in", "pln": ["(: cnet_usedfor_1d0057091d (UsedFor farmhouse live_in) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "farmland is used for building farm on", "pln": ["(: cnet_usedfor_86856c4235 (UsedFor farmland building_farm_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "farmland is used for farm", "pln": ["(: cnet_usedfor_eb011ffb69 (UsedFor farmland farm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "farmland is used for grow crop", "pln": ["(: cnet_usedfor_2086f318a1 (UsedFor farmland grow_crop) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "farmland is used for planting crop", "pln": ["(: cnet_usedfor_d825d6420a (UsedFor farmland planting_crop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fast food restaurant counter is used for ordering food at", "pln": ["(: cnet_usedfor_311a25b99b (UsedFor fast_food_restaurant_counter ordering_food_at) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "faucet is used for get water", "pln": ["(: cnet_usedfor_29c2ef8132 (UsedFor faucet get_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "feather is used for making pen", "pln": ["(: cnet_usedfor_4acf5b4c91 (UsedFor feather making_pen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "feather is used for tickle", "pln": ["(: cnet_usedfor_e6a5e101cd (UsedFor feather tickle) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "feather is used for tickling", "pln": ["(: cnet_usedfor_3981ad7e8c (UsedFor feather tickling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "feeding family is used for survival", "pln": ["(: cnet_usedfor_dd8df79794 (UsedFor feeding_family survival) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "feet is used for walk", "pln": ["(: cnet_usedfor_6dbe8555e7 (UsedFor feet walk) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "fencing is used for controlling fighting with swords", "pln": ["(: cnet_usedfor_e1d271ba0e (UsedFor fencing controlling_fighting_with_swords) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fencing is used for controlling fighting with sword", "pln": ["(: cnet_usedfor_a121e5ddb5 (UsedFor fencing controlling_fighting_with_sword) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fencing is used for defining property", "pln": ["(: cnet_usedfor_a8572b5010 (UsedFor fencing defining_property) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fencing is used for fighting with sword", "pln": ["(: cnet_usedfor_e9d793d7a8 (UsedFor fencing fighting_with_sword) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fencing is used for fun", "pln": ["(: cnet_usedfor_d690508489 (UsedFor fencing fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fencing is used for guiding people and animal", "pln": ["(: cnet_usedfor_1a61182ad7 (UsedFor fencing guiding_people_and_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fencing is used for keeping animal out of garden", "pln": ["(: cnet_usedfor_dde42b420a (UsedFor fencing keeping_animal_out_of_garden) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ferry is used for ferry", "pln": ["(: cnet_usedfor_c2fb2ee3dd (UsedFor ferry ferry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ferry is used for transport", "pln": ["(: cnet_usedfor_8eab60be5b (UsedFor ferry transport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "ferry is used for transportation", "pln": ["(: cnet_usedfor_531c0545a5 (UsedFor ferry transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "filing folders is used for group like items", "pln": ["(: cnet_usedfor_3786705c7d (UsedFor filing_folders group_like_items) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fighting enemy is used for self defense", "pln": ["(: cnet_usedfor_32190c9263 (UsedFor fighting_enemy self_defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fighting enemy is used for winning war", "pln": ["(: cnet_usedfor_450fd0b2f1 (UsedFor fighting_enemy winning_war) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "file is used for gathering more informatioin into", "pln": ["(: cnet_usedfor_b4b1166ec1 (UsedFor file gathering_more_informatioin_into) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "file is used for keeping of record", "pln": ["(: cnet_usedfor_5f66bc5ed1 (UsedFor file keeping_of_record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "file is used for smooth rough edge", "pln": ["(: cnet_usedfor_3aa217dba3 (UsedFor file smooth_rough_edge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "file is used for storage of information", "pln": ["(: cnet_usedfor_621e554501 (UsedFor file storage_of_information) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "file is used for file", "pln": ["(: cnet_usedfor_17ac868d9a (UsedFor file file) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "file is used for form", "pln": ["(: cnet_usedfor_2dec0b455e (UsedFor file form) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "file is used for organization", "pln": ["(: cnet_usedfor_1f577f061a (UsedFor file organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "file is used for organize", "pln": ["(: cnet_usedfor_545fa56902 (UsedFor file organize) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "file is used for polish", "pln": ["(: cnet_usedfor_fd7a6b59c8 (UsedFor file polish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "file is used for shape", "pln": ["(: cnet_usedfor_677861c3b8 (UsedFor file shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "file is used for smoothness", "pln": ["(: cnet_usedfor_57bb78aaa0 (UsedFor file smoothness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "file is used for store", "pln": ["(: cnet_usedfor_48ac8b59f3 (UsedFor file store) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "filing folder is used for group like item", "pln": ["(: cnet_usedfor_2e8ffdabda (UsedFor filing_folder group_like_item) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "film is used for store movy", "pln": ["(: cnet_usedfor_fab9e7521c (UsedFor film store_movy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "film is used for film", "pln": ["(: cnet_usedfor_02f18d8748 (UsedFor film film) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "film is used for foil", "pln": ["(: cnet_usedfor_db9596cb7f (UsedFor film foil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "film is used for negative", "pln": ["(: cnet_usedfor_3aab5c456c (UsedFor film negative) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "film is used for record", "pln": ["(: cnet_usedfor_5fec070a92 (UsedFor film record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "film is used for movie", "pln": ["(: cnet_usedfor_920a324c37 (UsedFor film movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "filter is used for filtrate", "pln": ["(: cnet_usedfor_1747a16a37 (UsedFor filter filtrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "filter is used for purify", "pln": ["(: cnet_usedfor_a38cdb16d4 (UsedFor filter purify) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "filter is used for trickle", "pln": ["(: cnet_usedfor_173bbfe26f (UsedFor filter trickle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "finding information is used for learning", "pln": ["(: cnet_usedfor_99bce8e08c (UsedFor finding_information learning) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "finding information is used for research", "pln": ["(: cnet_usedfor_3aee37fed6 (UsedFor finding_information research) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "finding information is used for scholar", "pln": ["(: cnet_usedfor_3a81ff07d1 (UsedFor finding_information scholar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "finding lost item is used for being able to use item", "pln": ["(: cnet_usedfor_f1d312cd5c (UsedFor finding_lost_item being_able_to_use_item) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "finding truth is used for understanding", "pln": ["(: cnet_usedfor_41ac589b7c (UsedFor finding_truth understanding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "finger is used for create shadow", "pln": ["(: cnet_usedfor_e73efcaa8a (UsedFor finger create_shadow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "finger is used for picking nose", "pln": ["(: cnet_usedfor_f4060dc136 (UsedFor finger picking_nose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "finger is used for point", "pln": ["(: cnet_usedfor_93faf5dd4a (UsedFor finger point) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "finger is used for pulling binder ring open", "pln": ["(: cnet_usedfor_ede213a0b4 (UsedFor finger pulling_binder_ring_open) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "finger is used for push button", "pln": ["(: cnet_usedfor_3bec81e42c (UsedFor finger push_button) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "finger is used for typing", "pln": ["(: cnet_usedfor_7d2594aa44 (UsedFor finger typing) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fingernail is used for scratch", "pln": ["(: cnet_usedfor_42fe7111da (UsedFor fingernail scratch) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fire is used for cook", "pln": ["(: cnet_usedfor_2f36152ea3 (UsedFor fire cook) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fire is used for cook food", "pln": ["(: cnet_usedfor_86911fe79c (UsedFor fire cook_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fire extinguisher is used for extinguishing fire", "pln": ["(: cnet_usedfor_85c39b3684 (UsedFor fire_extinguisher extinguishing_fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fire extinguisher is used for putting out fire", "pln": ["(: cnet_usedfor_35cc4b8f45 (UsedFor fire_extinguisher putting_out_fire) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "firebomb is used for blowing thing up", "pln": ["(: cnet_usedfor_6e79c58eaa (UsedFor firebomb blowing_thing_up) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "firefox is used for browsing www", "pln": ["(: cnet_usedfor_224a2933e3 (UsedFor firefox browsing_www) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fireplace is used for burn wood", "pln": ["(: cnet_usedfor_3d5873fb0e (UsedFor fireplace burn_wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fireplace is used for warmth", "pln": ["(: cnet_usedfor_dc132117e8 (UsedFor fireplace warmth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "first class airline seat is used for rich people", "pln": ["(: cnet_usedfor_5fb0d88022 (UsedFor first_class_airline_seat rich_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "first class airplane seat is used for rich people", "pln": ["(: cnet_usedfor_d730afb2a8 (UsedFor first_class_airplane_seat rich_people) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "first class airplane seat is used for sitting", "pln": ["(: cnet_usedfor_d3db823cec (UsedFor first_class_airplane_seat sitting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "first class airplane seat is used for sitting in", "pln": ["(: cnet_usedfor_56eab7cf53 (UsedFor first_class_airplane_seat sitting_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "first class airplane seat is used for travel", "pln": ["(: cnet_usedfor_cea0dd2435 (UsedFor first_class_airplane_seat travel) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "first class airplane seat is used for traveling", "pln": ["(: cnet_usedfor_367a765231 (UsedFor first_class_airplane_seat traveling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "first floor is used for reception area", "pln": ["(: cnet_usedfor_2f3123de34 (UsedFor first_floor reception_area) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "first violin is used for perform symphony", "pln": ["(: cnet_usedfor_6391086e1e (UsedFor first_violin perform_symphony) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "first violin is used for play in orchestra", "pln": ["(: cnet_usedfor_36e2590cab (UsedFor first_violin play_in_orchestra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "first violin is used for playing music", "pln": ["(: cnet_usedfor_b936dd705a (UsedFor first_violin playing_music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fish tank is used for hold fish", "pln": ["(: cnet_usedfor_0006644db5 (UsedFor fish_tank hold_fish) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fishing is used for catching fish", "pln": ["(: cnet_usedfor_89b14eae71 (UsedFor fishing catching_fish) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fishing is used for dad", "pln": ["(: cnet_usedfor_b699f556c2 (UsedFor fishing dad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fishing is used for fun", "pln": ["(: cnet_usedfor_8466edb8be (UsedFor fishing fun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fishing is used for relaxing", "pln": ["(: cnet_usedfor_4bc068bd50 (UsedFor fishing relaxing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fishing is used for sport", "pln": ["(: cnet_usedfor_f6984cf174 (UsedFor fishing sport) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fishing pole is used for catch fish", "pln": ["(: cnet_usedfor_1344e929cb (UsedFor fishing_pole catch_fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fitting room is used for change clothing", "pln": ["(: cnet_usedfor_11e6d0a1f7 (UsedFor fitting_room change_clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fitting room is used for try clothe", "pln": ["(: cnet_usedfor_8613bf9955 (UsedFor fitting_room try_clothe) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fitting room is used for trying on clothe", "pln": ["(: cnet_usedfor_3e32d7eb2e (UsedFor fitting_room trying_on_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fitting room is used for trying on clothe before buying", "pln": ["(: cnet_usedfor_fc51a1d102 (UsedFor fitting_room trying_on_clothe_before_buying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fitting room is used for trying on pant", "pln": ["(: cnet_usedfor_7c15448d65 (UsedFor fitting_room trying_on_pant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "fixing computer is used for getting computer into working state", "pln": ["(: cnet_usedfor_f9a1762cd9 (UsedFor fixing_computer getting_computer_into_working_state) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fixing computer is used for making work", "pln": ["(: cnet_usedfor_09e11026f4 (UsedFor fixing_computer making_work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "flash is used for flash", "pln": ["(: cnet_usedfor_bc1877ea82 (UsedFor flash flash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "flash is used for light", "pln": ["(: cnet_usedfor_46f4e07373 (UsedFor flash light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "flashlight is used for seeing in dark", "pln": ["(: cnet_usedfor_4e0cc2fd76 (UsedFor flashlight seeing_in_dark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "flask is used for drinking", "pln": ["(: cnet_usedfor_4ac3fdb32f (UsedFor flask drinking) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "flask is used for hold liquid", "pln": ["(: cnet_usedfor_e7f2e084e8 (UsedFor flask hold_liquid) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "flask is used for holding liquid", "pln": ["(: cnet_usedfor_43c3458dc4 (UsedFor flask holding_liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "flask is used for holding wine", "pln": ["(: cnet_usedfor_a645a91b12 (UsedFor flask holding_wine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "flask is used for store liquid", "pln": ["(: cnet_usedfor_fb36df280b (UsedFor flask store_liquid) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "flirting is used for attracting mate", "pln": ["(: cnet_usedfor_e2e27cb457 (UsedFor flirting attracting_mate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "flirting is used for having fun", "pln": ["(: cnet_usedfor_ae28d818fb (UsedFor flirting having_fun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "floor is used for sit on", "pln": ["(: cnet_usedfor_4821bded97 (UsedFor floor sit_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "floor is used for standing on", "pln": ["(: cnet_usedfor_d9eaa5de07 (UsedFor floor standing_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "floor is used for walk", "pln": ["(: cnet_usedfor_49b95af3b8 (UsedFor floor walk) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "floor is used for walk on", "pln": ["(: cnet_usedfor_11b340f1eb (UsedFor floor walk_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "floor is used for walking on", "pln": ["(: cnet_usedfor_e8d9a32037 (UsedFor floor walking_on) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fluoride mouthwash is used for freshen breath", "pln": ["(: cnet_usedfor_a040193463 (UsedFor fluoride_mouthwash freshen_breath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fluoride mouthwash is used for kill bacteria", "pln": ["(: cnet_usedfor_a4ecd88599 (UsedFor fluoride_mouthwash kill_bacteria) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fluoride mouthwash is used for preventing cavity", "pln": ["(: cnet_usedfor_de5e9c048d (UsedFor fluoride_mouthwash preventing_cavity) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fluoride toothpaste is used for cleaning teeth", "pln": ["(: cnet_usedfor_cdde98c0e5 (UsedFor fluoride_toothpaste cleaning_teeth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fluoride toothpaste is used for keeping teeth clean", "pln": ["(: cnet_usedfor_0e51f34aa5 (UsedFor fluoride_toothpaste keeping_teeth_clean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fluoride toothpaste is used for preventing cavity", "pln": ["(: cnet_usedfor_fc6aea9c3f (UsedFor fluoride_toothpaste preventing_cavity) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fluoride toothpaste is used for whitening teeth", "pln": ["(: cnet_usedfor_04abe4df2b (UsedFor fluoride_toothpaste whitening_teeth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "flute is used for creating music", "pln": ["(: cnet_usedfor_6f3c8e2f3d (UsedFor flute creating_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "flute is used for make music", "pln": ["(: cnet_usedfor_e529e0e827 (UsedFor flute make_music) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "flute is used for making music", "pln": ["(: cnet_usedfor_80ef055d47 (UsedFor flute making_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "flute is used for music", "pln": ["(: cnet_usedfor_52065470a7 (UsedFor flute music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "flying kite is used for fun", "pln": ["(: cnet_usedfor_8c98d2b585 (UsedFor flying_kite fun) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "folding door is used for closets", "pln": ["(: cnet_usedfor_853e156a35 (UsedFor folding_door closets) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "flying kite is used for having fun", "pln": ["(: cnet_usedfor_593c8e5975 (UsedFor flying_kite having_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "flying kite is used for pleasure", "pln": ["(: cnet_usedfor_f827ded6fd (UsedFor flying_kite pleasure) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "flying kite is used for relaxing", "pln": ["(: cnet_usedfor_29b7e430a6 (UsedFor flying_kite relaxing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fog horn is used for warning people about thick fog", "pln": ["(: cnet_usedfor_4422542ee6 (UsedFor fog_horn warning_people_about_thick_fog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "folder is used for storage", "pln": ["(: cnet_usedfor_7def4edf1d (UsedFor folder storage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "folder is used for store document", "pln": ["(: cnet_usedfor_b0e25b532b (UsedFor folder store_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "folding chair is used for sit", "pln": ["(: cnet_usedfor_f7c5829ad8 (UsedFor folding_chair sit) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "folding chair is used for sitting", "pln": ["(: cnet_usedfor_9105b3435e (UsedFor folding_chair sitting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "folding chair is used for tame lion", "pln": ["(: cnet_usedfor_dc4d7a334d (UsedFor folding_chair tame_lion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "folding door is used for closet", "pln": ["(: cnet_usedfor_2b7b5a4974 (UsedFor folding_door closet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "food is used for eating", "pln": ["(: cnet_usedfor_d5fa390f62 (UsedFor food eating) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "food is used for energy", "pln": ["(: cnet_usedfor_3c8ea47a1f (UsedFor food energy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "food is used for nourishment", "pln": ["(: cnet_usedfor_c8c3dd0523 (UsedFor food nourishment) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "food is used for sustenance", "pln": ["(: cnet_usedfor_1400d9967a (UsedFor food sustenance) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "food store is used for buy drink", "pln": ["(: cnet_usedfor_770997b3ef (UsedFor food_store buy_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "food store is used for buying food", "pln": ["(: cnet_usedfor_ad843d6c31 (UsedFor food_store buying_food) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "foot is used for measuring thing", "pln": ["(: cnet_usedfor_ab2e7da9f8 (UsedFor foot measuring_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "foot is used for running", "pln": ["(: cnet_usedfor_352a019986 (UsedFor foot running) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "foot is used for standing", "pln": ["(: cnet_usedfor_a6cd96021c (UsedFor foot standing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "foot is used for walking", "pln": ["(: cnet_usedfor_7fd66b3b11 (UsedFor foot walking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "foot is used for walking on", "pln": ["(: cnet_usedfor_d7f03842cb (UsedFor foot walking_on) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "football is used for playing football", "pln": ["(: cnet_usedfor_1a63ef510d (UsedFor football playing_football) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "football field is used for marching band at half time", "pln": ["(: cnet_usedfor_0c9ce70052 (UsedFor football_field marching_band_at_half_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "football field is used for playing football", "pln": ["(: cnet_usedfor_390efc67ef (UsedFor football_field playing_football) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "footstool is used for elevating feet", "pln": ["(: cnet_usedfor_f40b3c9aa9 (UsedFor footstool elevating_feet) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "footstool is used for resting feet", "pln": ["(: cnet_usedfor_28c6dade9d (UsedFor footstool resting_feet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "footstool is used for stand on", "pln": ["(: cnet_usedfor_91e8c0ad0b (UsedFor footstool stand_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "footstool is used for standing on", "pln": ["(: cnet_usedfor_4c7df08a0f (UsedFor footstool standing_on) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "forgiving is used for showing compassion", "pln": ["(: cnet_usedfor_4ba39448ef (UsedFor forgiving showing_compassion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fork is used for eat dinner", "pln": ["(: cnet_usedfor_3002a0d377 (UsedFor fork eat_dinner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fork is used for eat food", "pln": ["(: cnet_usedfor_20cce9bcf4 (UsedFor fork eat_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fork is used for eat meal", "pln": ["(: cnet_usedfor_63e11e0c77 (UsedFor fork eat_meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fork is used for eating food", "pln": ["(: cnet_usedfor_10055d289d (UsedFor fork eating_food) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fork is used for picking up food", "pln": ["(: cnet_usedfor_469c281706 (UsedFor fork picking_up_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "forklift is used for accomplish work in warehouse", "pln": ["(: cnet_usedfor_ded28c50b5 (UsedFor forklift accomplish_work_in_warehouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "forklift is used for carry thing", "pln": ["(: cnet_usedfor_cbdb75759d (UsedFor forklift carry_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "forklift is used for lift", "pln": ["(: cnet_usedfor_9185fa38b4 (UsedFor forklift lift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "freezer is used for keeping things cold", "pln": ["(: cnet_usedfor_24ad85cfb6 (UsedFor freezer keeping_things_cold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "forklift is used for lift heavy item", "pln": ["(: cnet_usedfor_cc77ac444c (UsedFor forklift lift_heavy_item) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "forklift is used for lifting", "pln": ["(: cnet_usedfor_8033b1e94d (UsedFor forklift lifting) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "forklift is used for lifting heavy thing", "pln": ["(: cnet_usedfor_324f75db5c (UsedFor forklift lifting_heavy_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "forklift is used for lifting pallet", "pln": ["(: cnet_usedfor_03ae1b0688 (UsedFor forklift lifting_pallet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "forklift is used for load truck", "pln": ["(: cnet_usedfor_b821c04774 (UsedFor forklift load_truck) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "forklift is used for move heavy item", "pln": ["(: cnet_usedfor_2d77c5b2a2 (UsedFor forklift move_heavy_item) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "forklift is used for move heavy object", "pln": ["(: cnet_usedfor_fd2136a8b5 (UsedFor forklift move_heavy_object) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "forklift is used for moving heavy object", "pln": ["(: cnet_usedfor_85b9d5e796 (UsedFor forklift moving_heavy_object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "forklift is used for raise heavy item", "pln": ["(: cnet_usedfor_8efad4a56d (UsedFor forklift raise_heavy_item) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "forklift is used for remove pallet of merchandise from storage", "pln": ["(: cnet_usedfor_1d1c0b8ea5 (UsedFor forklift remove_pallet_of_merchandise_from_storage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "forklift is used for ride across plant", "pln": ["(: cnet_usedfor_b9ce9b8e45 (UsedFor forklift ride_across_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "forklift is used for store pallet of merchandise", "pln": ["(: cnet_usedfor_8cfe25b01b (UsedFor forklift store_pallet_of_merchandise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "forklift is used for lift heavy thing", "pln": ["(: cnet_usedfor_6564d0fc94 (UsedFor forklift lift_heavy_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fork is used for eat steak", "pln": ["(: cnet_usedfor_9bd65d9629 (UsedFor fork eat_steak) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "formula is used for calculate value", "pln": ["(: cnet_usedfor_3a9dedb4fb (UsedFor formula calculate_value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fountain is used for decoration", "pln": ["(: cnet_usedfor_84f98eb3ca (UsedFor fountain decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fountain pen is used for signing document", "pln": ["(: cnet_usedfor_ca76f408b9 (UsedFor fountain_pen signing_document) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "freeway is used for car", "pln": ["(: cnet_usedfor_69a23198cb (UsedFor freeway car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "freeway is used for driving on", "pln": ["(: cnet_usedfor_8310255dd2 (UsedFor freeway driving_on) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "freezer is used for freezing fresh food", "pln": ["(: cnet_usedfor_b15fbad18a (UsedFor freezer freezing_fresh_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "freezer is used for freezing thing", "pln": ["(: cnet_usedfor_e86db701b3 (UsedFor freezer freezing_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "freezer is used for keeping thing cold", "pln": ["(: cnet_usedfor_e3087ee8d7 (UsedFor freezer keeping_thing_cold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "freezer is used for keeping thing frozen", "pln": ["(: cnet_usedfor_d3587d98ef (UsedFor freezer keeping_thing_frozen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "freezer is used for making ice cube", "pln": ["(: cnet_usedfor_7507ecf728 (UsedFor freezer making_ice_cube) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "freezer is used for store food", "pln": ["(: cnet_usedfor_8b6419e4c3 (UsedFor freezer store_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "french horn is used for play in orchestra", "pln": ["(: cnet_usedfor_812d0d0dec (UsedFor french_horn play_in_orchestra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "french horn is used for play music", "pln": ["(: cnet_usedfor_9055095b88 (UsedFor french_horn play_music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "friend is used for companionship", "pln": ["(: cnet_usedfor_4fafe7212c (UsedFor friend companionship) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "friend is used for confiding", "pln": ["(: cnet_usedfor_acbfeb8be8 (UsedFor friend confiding) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "frisbee is used for catching", "pln": ["(: cnet_usedfor_7f9f925f30 (UsedFor frisbee catching) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "frisbee is used for having fun", "pln": ["(: cnet_usedfor_ccddb7483b (UsedFor frisbee having_fun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "frisbee is used for playing catch", "pln": ["(: cnet_usedfor_910b343534 (UsedFor frisbee playing_catch) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "frisbee is used for ultimate frisbee", "pln": ["(: cnet_usedfor_5647e3128e (UsedFor frisbee ultimate_frisbee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "front room is used for bring in sunshine", "pln": ["(: cnet_usedfor_2e516e8b90 (UsedFor front_room bring_in_sunshine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "front room is used for entertain guest", "pln": ["(: cnet_usedfor_ed7aacea1c (UsedFor front_room entertain_guest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "front room is used for guest", "pln": ["(: cnet_usedfor_665d3be6ee (UsedFor front_room guest) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "front room is used for have party", "pln": ["(: cnet_usedfor_1655c608ad (UsedFor front_room have_party) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "front room is used for hold coat and shoe", "pln": ["(: cnet_usedfor_87247dd75e (UsedFor front_room hold_coat_and_shoe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "front room is used for socialize", "pln": ["(: cnet_usedfor_45561ddf61 (UsedFor front_room socialize) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "front room is used for visiting", "pln": ["(: cnet_usedfor_0081876013 (UsedFor front_room visiting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "front yard is used for planting flower", "pln": ["(: cnet_usedfor_c1ffb773ed (UsedFor front_yard planting_flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "front yard is used for sitting in", "pln": ["(: cnet_usedfor_052882dffc (UsedFor front_yard sitting_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fruit is used for eating", "pln": ["(: cnet_usedfor_bf5660ada5 (UsedFor fruit eating) (STV 1.0 0.9748))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "frying pan is used for cooking", "pln": ["(: cnet_usedfor_de12da4afe (UsedFor frying_pan cooking) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "frying pan is used for fry food", "pln": ["(: cnet_usedfor_6b3156d7d5 (UsedFor frying_pan fry_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "frying pan is used for hit on head", "pln": ["(: cnet_usedfor_57e20b9e8d (UsedFor frying_pan hit_on_head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fur is used for insulation", "pln": ["(: cnet_usedfor_cd9eefaf1e (UsedFor fur insulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "fur is used for keeping animal warm", "pln": ["(: cnet_usedfor_c7f3e7f6fc (UsedFor fur keeping_animal_warm) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fur is used for making clothe", "pln": ["(: cnet_usedfor_640873d4cb (UsedFor fur making_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "fur is used for making coat", "pln": ["(: cnet_usedfor_ac6b00542a (UsedFor fur making_coat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "furniture is used for furnish", "pln": ["(: cnet_usedfor_59e95b1dab (UsedFor furniture furnish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gaining more land is used for getting rich", "pln": ["(: cnet_usedfor_96dd144d29 (UsedFor gaining_more_land getting_rich) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gaining more land is used for growing food", "pln": ["(: cnet_usedfor_f0ea969c36 (UsedFor gaining_more_land growing_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "gaining more land is used for having more power", "pln": ["(: cnet_usedfor_62b1cc0623 (UsedFor gaining_more_land having_more_power) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gaining more land is used for increasing size of farm", "pln": ["(: cnet_usedfor_0257155eaa (UsedFor gaining_more_land increasing_size_of_farm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gaining more land is used for investment", "pln": ["(: cnet_usedfor_782729b8ba (UsedFor gaining_more_land investment) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gallery is used for art", "pln": ["(: cnet_usedfor_0015cfcdce (UsedFor gallery art) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gallery is used for display artwork", "pln": ["(: cnet_usedfor_7444b4d4b4 (UsedFor gallery display_artwork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gallery is used for displaying artwork", "pln": ["(: cnet_usedfor_fe44ad941c (UsedFor gallery displaying_artwork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gallery is used for feature painting", "pln": ["(: cnet_usedfor_2106cd8e6f (UsedFor gallery feature_painting) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gallery is used for showing work of art", "pln": ["(: cnet_usedfor_0eefbcab3c (UsedFor gallery showing_work_of_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "game is used for entertainment", "pln": ["(: cnet_usedfor_7fd5b6de74 (UsedFor game entertainment) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "game is used for have fun", "pln": ["(: cnet_usedfor_d611943393 (UsedFor game have_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "garage is used for parking car", "pln": ["(: cnet_usedfor_534d633120 (UsedFor garage parking_car) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "garage is used for store tool", "pln": ["(: cnet_usedfor_a02a7ba8e1 (UsedFor garage store_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "garbage is used for recycling", "pln": ["(: cnet_usedfor_0f01a23ca4 (UsedFor garbage recycling) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "garbage can is used for compost", "pln": ["(: cnet_usedfor_450793b90e (UsedFor garbage_can compost) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "garden is used for growing flowers", "pln": ["(: cnet_usedfor_e28ee158f6 (UsedFor garden growing_flowers) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "garbage can is used for holding garbage", "pln": ["(: cnet_usedfor_f472280a49 (UsedFor garbage_can holding_garbage) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "garbage waste is used for compost", "pln": ["(: cnet_usedfor_b6f6892f9a (UsedFor garbage_waste compost) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "garden is used for growing flower", "pln": ["(: cnet_usedfor_61a5e14342 (UsedFor garden growing_flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "garden is used for growing vegetable", "pln": ["(: cnet_usedfor_222419367a (UsedFor garden growing_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "garden is used for relaxation", "pln": ["(: cnet_usedfor_a632d0ce98 (UsedFor garden relaxation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "garden hose is used for watering garden", "pln": ["(: cnet_usedfor_86388aa6a6 (UsedFor garden_hose watering_garden) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "garden is used for grow flower", "pln": ["(: cnet_usedfor_c32f6ca629 (UsedFor garden grow_flower) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "garden is used for grow vegetable", "pln": ["(: cnet_usedfor_9cdcf3c2ae (UsedFor garden grow_vegetable) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "garment bag is used for protecting garment", "pln": ["(: cnet_usedfor_fe5e40b147 (UsedFor garment_bag protecting_garment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gas is used for cooking", "pln": ["(: cnet_usedfor_521977b609 (UsedFor gas cooking) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gas is used for heating", "pln": ["(: cnet_usedfor_2a4a81e170 (UsedFor gas heating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gas is used for running gas powered machine", "pln": ["(: cnet_usedfor_b999813452 (UsedFor gas running_gas_powered_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gas station is used for buying gas", "pln": ["(: cnet_usedfor_0f56cadb44 (UsedFor gas_station buying_gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gate is used for closing", "pln": ["(: cnet_usedfor_f1beaa273f (UsedFor gate closing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gate is used for leaving garden", "pln": ["(: cnet_usedfor_c9dd6745d9 (UsedFor gate leaving_garden) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gel is used for hair", "pln": ["(: cnet_usedfor_1d0e5ba11f (UsedFor gel hair) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gel is used for hair styling", "pln": ["(: cnet_usedfor_0f6b8d2afc (UsedFor gel hair_styling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gel is used for soap", "pln": ["(: cnet_usedfor_70df6a83fc (UsedFor gel soap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gel is used for toothpaste", "pln": ["(: cnet_usedfor_7301e5a568 (UsedFor gel toothpaste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gel toothpaste is used for brushing teeth", "pln": ["(: cnet_usedfor_a9431327a2 (UsedFor gel_toothpaste brushing_teeth) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "general ledger is used for accounting", "pln": ["(: cnet_usedfor_61a7dbce6c (UsedFor general_ledger accounting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "general ledger is used for tracking expens", "pln": ["(: cnet_usedfor_8669d78fd6 (UsedFor general_ledger tracking_expens) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "general ledger is used for tracking income", "pln": ["(: cnet_usedfor_d71348d04d (UsedFor general_ledger tracking_income) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "general ledger is used for tracking profit", "pln": ["(: cnet_usedfor_0c3aec5852 (UsedFor general_ledger tracking_profit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "general store is used for buy thing", "pln": ["(: cnet_usedfor_5098c273f4 (UsedFor general_store buy_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting away with crime is used for criminal", "pln": ["(: cnet_usedfor_6cd6eeebcb (UsedFor getting_away_with_crime criminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting clean is used for staying healthy", "pln": ["(: cnet_usedfor_ed17042247 (UsedFor getting_clean staying_healthy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "getting divorce is used for ending marriage", "pln": ["(: cnet_usedfor_6d19ff5eb6 (UsedFor getting_divorce ending_marriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "getting drunk is used for forgetting problems", "pln": ["(: cnet_usedfor_6ccae862bf (UsedFor getting_drunk forgetting_problems) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting drunk is used for forgetting problem", "pln": ["(: cnet_usedfor_2587925fb2 (UsedFor getting_drunk forgetting_problem) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting exercise is used for feeling good about yourself", "pln": ["(: cnet_usedfor_362101c85f (UsedFor getting_exercise feeling_good_about_yourself) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting exercise is used for having fun", "pln": ["(: cnet_usedfor_1245fabd2c (UsedFor getting_exercise having_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting exercise is used for health", "pln": ["(: cnet_usedfor_c34f99f3df (UsedFor getting_exercise health) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting exercise is used for keeping fit", "pln": ["(: cnet_usedfor_5d2fbed684 (UsedFor getting_exercise keeping_fit) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "getting exercise is used for training", "pln": ["(: cnet_usedfor_f6cc851bf0 (UsedFor getting_exercise training) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting good grade is used for pleasing parent", "pln": ["(: cnet_usedfor_edda76a1df (UsedFor getting_good_grade pleasing_parent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting in line is used for waiting for turn", "pln": ["(: cnet_usedfor_0ad0084ad1 (UsedFor getting_in_line waiting_for_turn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting in shape is used for being more attractive", "pln": ["(: cnet_usedfor_475a965874 (UsedFor getting_in_shape being_more_attractive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting in shape is used for having more energy", "pln": ["(: cnet_usedfor_a881e619e0 (UsedFor getting_in_shape having_more_energy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting in shape is used for improving health", "pln": ["(: cnet_usedfor_5630a1bf78 (UsedFor getting_in_shape improving_health) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "getting in shape is used for living longer", "pln": ["(: cnet_usedfor_44a0c2f235 (UsedFor getting_in_shape living_longer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "getting onto web is used for reading news", "pln": ["(: cnet_usedfor_5c358c1244 (UsedFor getting_onto_web reading_news) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting in shape is used for looking better", "pln": ["(: cnet_usedfor_32c1d92648 (UsedFor getting_in_shape looking_better) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting in shape is used for own good health", "pln": ["(: cnet_usedfor_4e1f38dadc (UsedFor getting_in_shape own_good_health) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting in shape is used for well toned body", "pln": ["(: cnet_usedfor_6503d0c218 (UsedFor getting_in_shape well_toned_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting job is used for earning living", "pln": ["(: cnet_usedfor_0474c35b68 (UsedFor getting_job earning_living) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting job is used for earning money", "pln": ["(: cnet_usedfor_46e6399c53 (UsedFor getting_job earning_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting job is used for making money", "pln": ["(: cnet_usedfor_7244f39fdf (UsedFor getting_job making_money) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting job is used for pay bill", "pln": ["(: cnet_usedfor_94e50843b2 (UsedFor getting_job pay_bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting job is used for work", "pln": ["(: cnet_usedfor_c442e96941 (UsedFor getting_job work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting money from is used for collecting debt", "pln": ["(: cnet_usedfor_f53691123b (UsedFor getting_money_from collecting_debt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting money from is used for have more money", "pln": ["(: cnet_usedfor_bf1197ff8a (UsedFor getting_money_from have_more_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting onto web is used for chating", "pln": ["(: cnet_usedfor_6f5d34bfcb (UsedFor getting_onto_web chating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting onto web is used for finding information", "pln": ["(: cnet_usedfor_cf5f4839d9 (UsedFor getting_onto_web finding_information) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting onto web is used for reading new", "pln": ["(: cnet_usedfor_1bd22c4f87 (UsedFor getting_onto_web reading_new) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting onto web is used for relaxing", "pln": ["(: cnet_usedfor_ddbe10ea72 (UsedFor getting_onto_web relaxing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting onto web is used for surfing", "pln": ["(: cnet_usedfor_97b20b8fb7 (UsedFor getting_onto_web surfing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting paid is used for getting laid", "pln": ["(: cnet_usedfor_fd8241d28b (UsedFor getting_paid getting_laid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting paid is used for working", "pln": ["(: cnet_usedfor_3e937ded54 (UsedFor getting_paid working) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "getting physical activity is used for exercise", "pln": ["(: cnet_usedfor_670d72b8c2 (UsedFor getting_physical_activity exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting physical activity is used for exercising", "pln": ["(: cnet_usedfor_e6ea7de531 (UsedFor getting_physical_activity exercising) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting physical activity is used for stimulation", "pln": ["(: cnet_usedfor_17162b432f (UsedFor getting_physical_activity stimulation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting up early is used for watching sunrise", "pln": ["(: cnet_usedfor_90bb97488a (UsedFor getting_up_early watching_sunrise) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting warm is used for body heat", "pln": ["(: cnet_usedfor_883f3b6c43 (UsedFor getting_warm body_heat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "getting warm is used for heating body", "pln": ["(: cnet_usedfor_410fc1d972 (UsedFor getting_warm heating_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting wet is used for bathing", "pln": ["(: cnet_usedfor_60341ff93e (UsedFor getting_wet bathing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting wet is used for cooling off", "pln": ["(: cnet_usedfor_71e21d0a1d (UsedFor getting_wet cooling_off) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "getting wet is used for showering", "pln": ["(: cnet_usedfor_c65421c39a (UsedFor getting_wet showering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ghille suit is used for camouflage", "pln": ["(: cnet_usedfor_cb0b53c582 (UsedFor ghille_suit camouflage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "giving assistance is used for helping", "pln": ["(: cnet_usedfor_6c0c6fa72c (UsedFor giving_assistance helping) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "giving assistance is used for helping in need", "pln": ["(: cnet_usedfor_8b042f10b3 (UsedFor giving_assistance helping_in_need) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "giving assistance is used for helping other", "pln": ["(: cnet_usedfor_e85c763aa3 (UsedFor giving_assistance helping_other) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "giving gift is used for birthday", "pln": ["(: cnet_usedfor_98fed60a3f (UsedFor giving_gift birthday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "giving gift is used for celebrating birthday", "pln": ["(: cnet_usedfor_1b22a13aab (UsedFor giving_gift celebrating_birthday) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "giving gift is used for christma", "pln": ["(: cnet_usedfor_928200c508 (UsedFor giving_gift christma) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "giving gift is used for making happy", "pln": ["(: cnet_usedfor_ec89573a23 (UsedFor giving_gift making_happy) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "giving gift is used for party", "pln": ["(: cnet_usedfor_f3904787ab (UsedFor giving_gift party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "giving plug is used for advertiser", "pln": ["(: cnet_usedfor_2b17aaa374 (UsedFor giving_plug advertiser) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "giving plug is used for making yourself known", "pln": ["(: cnet_usedfor_df8b142db2 (UsedFor giving_plug making_yourself_known) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "giving plug is used for promoting", "pln": ["(: cnet_usedfor_93d133f3f0 (UsedFor giving_plug promoting) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "giving plug is used for promoting book", "pln": ["(: cnet_usedfor_1bb69b77cf (UsedFor giving_plug promoting_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "glass is used for drinking", "pln": ["(: cnet_usedfor_a09849105c (UsedFor glass drinking) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "glass is used for drinking from", "pln": ["(: cnet_usedfor_d98720bb98 (UsedFor glass drinking_from) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "glass is used for drinking liquid from", "pln": ["(: cnet_usedfor_1a382a24c4 (UsedFor glass drinking_liquid_from) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "glass is used for drinking out of", "pln": ["(: cnet_usedfor_4505e71adf (UsedFor glass drinking_out_of) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "glass is used for holding liquid", "pln": ["(: cnet_usedfor_ad3ea14ccc (UsedFor glass holding_liquid) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "glass is used for seeing through", "pln": ["(: cnet_usedfor_89092d91ad (UsedFor glass seeing_through) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "glass is used for hold", "pln": ["(: cnet_usedfor_31e731155c (UsedFor glass hold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "glass of milk is used for drinking", "pln": ["(: cnet_usedfor_e1674a4485 (UsedFor glass_of_milk drinking) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "glass of water is used for drinking", "pln": ["(: cnet_usedfor_9aad347aaf (UsedFor glass_of_water drinking) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "glass of water is used for quench thirst", "pln": ["(: cnet_usedfor_b08349a963 (UsedFor glass_of_water quench_thirst) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "glass pipe is used for smoking marijuana", "pln": ["(: cnet_usedfor_9049c9e23a (UsedFor glass_pipe smoking_marijuana) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "glassed roof is used for greenhouse", "pln": ["(: cnet_usedfor_d0dbded69d (UsedFor glassed_roof greenhouse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "glassed roof is used for greenhous", "pln": ["(: cnet_usedfor_5269591b51 (UsedFor glassed_roof greenhous) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "glass is used for correct vision", "pln": ["(: cnet_usedfor_8be4bc3d69 (UsedFor glass correct_vision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "glass is used for correcting vision", "pln": ["(: cnet_usedfor_324c599626 (UsedFor glass correcting_vision) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "glass is used for enhance visual clarity", "pln": ["(: cnet_usedfor_cd3b1183ac (UsedFor glass enhance_visual_clarity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "glass is used for expand range of vision", "pln": ["(: cnet_usedfor_e5d8700d6f (UsedFor glass expand_range_of_vision) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "glass is used for hold drink", "pln": ["(: cnet_usedfor_806c106cf1 (UsedFor glass hold_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "glass is used for improve eyesight", "pln": ["(: cnet_usedfor_0fbdf3abf7 (UsedFor glass improve_eyesight) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "glass case is used for holding eyeglass", "pln": ["(: cnet_usedfor_a7910d6c5f (UsedFor glass_case holding_eyeglass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "glass case is used for protect glass", "pln": ["(: cnet_usedfor_43c0b40e38 (UsedFor glass_case protect_glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "glove is used for protecting hand", "pln": ["(: cnet_usedfor_23e19b32c5 (UsedFor glove protecting_hand) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "glove leather is used for keeping hand warm", "pln": ["(: cnet_usedfor_83da3ffe4b (UsedFor glove_leather keeping_hand_warm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "glove leather is used for making glove", "pln": ["(: cnet_usedfor_bc71d19190 (UsedFor glove_leather making_glove) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "glove is used for keep hand warm", "pln": ["(: cnet_usedfor_7e742d5cc5 (UsedFor glove keep_hand_warm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "glue is used for fastening two object together", "pln": ["(: cnet_usedfor_21fcfa4bba (UsedFor glue fastening_two_object_together) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "glue is used for hold thing together", "pln": ["(: cnet_usedfor_35bd8d1f1a (UsedFor glue hold_thing_together) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "glue is used for holding two thing together", "pln": ["(: cnet_usedfor_af2bfceb24 (UsedFor glue holding_two_thing_together) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "glue is used for stick thing together", "pln": ["(: cnet_usedfor_aac5101b49 (UsedFor glue stick_thing_together) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "glue is used for sticking thing together", "pln": ["(: cnet_usedfor_a2ff58b276 (UsedFor glue sticking_thing_together) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "glue stick is used for gluing paper", "pln": ["(: cnet_usedfor_1e29bd3223 (UsedFor glue_stick gluing_paper) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "glue stick is used for sticking paper together", "pln": ["(: cnet_usedfor_761113c060 (UsedFor glue_stick sticking_paper_together) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "god is used for justify hate", "pln": ["(: cnet_usedfor_8b568e0b1e (UsedFor god justify_hate) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "god is used for justify war", "pln": ["(: cnet_usedfor_0c98c8925d (UsedFor god justify_war) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "going fishing is used for sport", "pln": ["(: cnet_usedfor_602cfa89df (UsedFor going_fishing sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going for drive is used for passing time", "pln": ["(: cnet_usedfor_f0e48bb751 (UsedFor going_for_drive passing_time) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going for haircut is used for creating conservative image", "pln": ["(: cnet_usedfor_c9eec469f6 (UsedFor going_for_haircut creating_conservative_image) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going for haircut is used for having shorter hair", "pln": ["(: cnet_usedfor_0b5f2a9f9f (UsedFor going_for_haircut having_shorter_hair) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going for haircut is used for looking better", "pln": ["(: cnet_usedfor_8b6f0e3daa (UsedFor going_for_haircut looking_better) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going for haircut is used for looking good", "pln": ["(: cnet_usedfor_f9fd65d41a (UsedFor going_for_haircut looking_good) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going for haircut is used for making hair shorter", "pln": ["(: cnet_usedfor_f7a89112ac (UsedFor going_for_haircut making_hair_shorter) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going for haircut is used for preparing for date", "pln": ["(: cnet_usedfor_0a0fb4f650 (UsedFor going_for_haircut preparing_for_date) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going for haircut is used for reducing hair", "pln": ["(: cnet_usedfor_5af2e3e679 (UsedFor going_for_haircut reducing_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going for haircut is used for shortening hair length", "pln": ["(: cnet_usedfor_4a556aea82 (UsedFor going_for_haircut shortening_hair_length) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going for haircut is used for supporting local barber", "pln": ["(: cnet_usedfor_880f8f67e4 (UsedFor going_for_haircut supporting_local_barber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going for jog is used for fun", "pln": ["(: cnet_usedfor_fff025c36a (UsedFor going_for_jog fun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going for jog is used for getting in shape", "pln": ["(: cnet_usedfor_eb7da6d873 (UsedFor going_for_jog getting_in_shape) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "going for jog is used for losing weight", "pln": ["(: cnet_usedfor_0b02c5a64e (UsedFor going_for_jog losing_weight) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going for jog is used for staying fit", "pln": ["(: cnet_usedfor_e247b7d355 (UsedFor going_for_jog staying_fit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going for jog is used for staying healthy", "pln": ["(: cnet_usedfor_0014798d73 (UsedFor going_for_jog staying_healthy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going for run is used for getting fresh air", "pln": ["(: cnet_usedfor_28a227c762 (UsedFor going_for_run getting_fresh_air) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going for run is used for getting into shape", "pln": ["(: cnet_usedfor_350403fc11 (UsedFor going_for_run getting_into_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going for run is used for preparing for race", "pln": ["(: cnet_usedfor_571983aaff (UsedFor going_for_run preparing_for_race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going for run is used for staying in shape", "pln": ["(: cnet_usedfor_ecc5f3de7a (UsedFor going_for_run staying_in_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going for swim is used for cooling off", "pln": ["(: cnet_usedfor_436eef72ee (UsedFor going_for_swim cooling_off) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going for swim is used for fun", "pln": ["(: cnet_usedfor_389025b36f (UsedFor going_for_swim fun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going for walk is used for excersice", "pln": ["(: cnet_usedfor_2ee2d5a2ac (UsedFor going_for_walk excersice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going for walk is used for fun", "pln": ["(: cnet_usedfor_4400a68c86 (UsedFor going_for_walk fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going for walk is used for going to place", "pln": ["(: cnet_usedfor_f6c0b46274 (UsedFor going_for_walk going_to_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going for walk is used for relaxation", "pln": ["(: cnet_usedfor_34c709209d (UsedFor going_for_walk relaxation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going for walk is used for staying fit", "pln": ["(: cnet_usedfor_bfb21f75b2 (UsedFor going_for_walk staying_fit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going for walk is used for stress reduction", "pln": ["(: cnet_usedfor_3f7c6e5340 (UsedFor going_for_walk stress_reduction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going for walk is used for stretching leg", "pln": ["(: cnet_usedfor_5718840156 (UsedFor going_for_walk stretching_leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going into trance is used for meditating", "pln": ["(: cnet_usedfor_2b311529d3 (UsedFor going_into_trance meditating) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going jogging is used for exersice", "pln": ["(: cnet_usedfor_3ce53a47e9 (UsedFor going_jogging exersice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "going jogging is used for having fun", "pln": ["(: cnet_usedfor_7633db3b82 (UsedFor going_jogging having_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "going jogging is used for losing weight", "pln": ["(: cnet_usedfor_d49d36855a (UsedFor going_jogging losing_weight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going on internet is used for doing research", "pln": ["(: cnet_usedfor_f26e64bf13 (UsedFor going_on_internet doing_research) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going on internet is used for fun", "pln": ["(: cnet_usedfor_9c1bfabbea (UsedFor going_on_internet fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going on internet is used for learning", "pln": ["(: cnet_usedfor_df37ba2c0b (UsedFor going_on_internet learning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going on internet is used for researching", "pln": ["(: cnet_usedfor_786052031e (UsedFor going_on_internet researching) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going on stage is used for doing performance", "pln": ["(: cnet_usedfor_bdd557a629 (UsedFor going_on_stage doing_performance) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going on stage is used for performing play", "pln": ["(: cnet_usedfor_1c0a301ef7 (UsedFor going_on_stage performing_play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going on vacation is used for doing new thing", "pln": ["(: cnet_usedfor_25df63c4e3 (UsedFor going_on_vacation doing_new_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going on vacation is used for enjoyment", "pln": ["(: cnet_usedfor_706d57960c (UsedFor going_on_vacation enjoyment) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going on vacation is used for fun", "pln": ["(: cnet_usedfor_e3d90b6cae (UsedFor going_on_vacation fun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going on vacation is used for pleasure", "pln": ["(: cnet_usedfor_149d9dfd88 (UsedFor going_on_vacation pleasure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going on vacation is used for relaxation", "pln": ["(: cnet_usedfor_06fe22f49a (UsedFor going_on_vacation relaxation) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going on vacation is used for relaxing", "pln": ["(: cnet_usedfor_af48819d98 (UsedFor going_on_vacation relaxing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going on vacation is used for seeing other part of world", "pln": ["(: cnet_usedfor_3286f953b6 (UsedFor going_on_vacation seeing_other_part_of_world) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "going on vacation is used for seeing world", "pln": ["(: cnet_usedfor_27ab05a52c (UsedFor going_on_vacation seeing_world) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "going on vacation is used for taking break from work", "pln": ["(: cnet_usedfor_44d7691e0f (UsedFor going_on_vacation taking_break_from_work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going outside for evening is used for enjoying weather", "pln": ["(: cnet_usedfor_6665c54bd5 (UsedFor going_outside_for_evening enjoying_weather) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going outside for evening is used for fun", "pln": ["(: cnet_usedfor_5e42dcbc40 (UsedFor going_outside_for_evening fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going outside for evening is used for get out of house", "pln": ["(: cnet_usedfor_5c8ad5a90f (UsedFor going_outside_for_evening get_out_of_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going outside for evening is used for getting fresh air", "pln": ["(: cnet_usedfor_44a294b910 (UsedFor going_outside_for_evening getting_fresh_air) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "going outside for evening is used for having fun", "pln": ["(: cnet_usedfor_d0b293527f (UsedFor going_outside_for_evening having_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "going public is used for gays", "pln": ["(: cnet_usedfor_aadfbb3e9b (UsedFor going_public gays) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going outside for evening is used for relaxation", "pln": ["(: cnet_usedfor_33940bd1bc (UsedFor going_outside_for_evening relaxation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going public is used for gay", "pln": ["(: cnet_usedfor_d0d36ffa35 (UsedFor going_public gay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "going see film is used for fun", "pln": ["(: cnet_usedfor_8bf90a470f (UsedFor going_see_film fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going see film is used for having fun", "pln": ["(: cnet_usedfor_7407553a15 (UsedFor going_see_film having_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going see play is used for do on date", "pln": ["(: cnet_usedfor_bb2c2352d0 (UsedFor going_see_play do_on_date) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "going see play is used for having date", "pln": ["(: cnet_usedfor_f72954eab6 (UsedFor going_see_play having_date) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going somewhere is used for getting somewhere", "pln": ["(: cnet_usedfor_07f6976d7c (UsedFor going_somewhere getting_somewhere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to baseball game is used for cheering wildly", "pln": ["(: cnet_usedfor_9a6c1eb95b (UsedFor going_to_baseball_game cheering_wildly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to baseball game is used for fun", "pln": ["(: cnet_usedfor_265a730142 (UsedFor going_to_baseball_game fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to bed is used for going to sleep", "pln": ["(: cnet_usedfor_ec6ff5bba2 (UsedFor going_to_bed going_to_sleep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to bed is used for having sex", "pln": ["(: cnet_usedfor_620a6ac6d3 (UsedFor going_to_bed having_sex) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to bed is used for reading", "pln": ["(: cnet_usedfor_552e994940 (UsedFor going_to_bed reading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to bed is used for relaxation", "pln": ["(: cnet_usedfor_95e522c93b (UsedFor going_to_bed relaxation) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to bed is used for relaxing", "pln": ["(: cnet_usedfor_673b8e3853 (UsedFor going_to_bed relaxing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to bed is used for taking nap", "pln": ["(: cnet_usedfor_832145b293 (UsedFor going_to_bed taking_nap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to concert is used for doing with friend", "pln": ["(: cnet_usedfor_3e19b34bc9 (UsedFor going_to_concert doing_with_friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to concert is used for listening to music", "pln": ["(: cnet_usedfor_d99e8347a1 (UsedFor going_to_concert listening_to_music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to film is used for dating", "pln": ["(: cnet_usedfor_cc3aa254dd (UsedFor going_to_film dating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to film is used for enjoyment", "pln": ["(: cnet_usedfor_df72824e0a (UsedFor going_to_film enjoyment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to film is used for having fun", "pln": ["(: cnet_usedfor_f2033b0957 (UsedFor going_to_film having_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to get haircut is used for having hair cut", "pln": ["(: cnet_usedfor_3903d3e176 (UsedFor going_to_get_haircut having_hair_cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to get haircut is used for looking nice", "pln": ["(: cnet_usedfor_fdffe0bb3e (UsedFor going_to_get_haircut looking_nice) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to get haircut is used for making hair shorter", "pln": ["(: cnet_usedfor_4b7acf40d2 (UsedFor going_to_get_haircut making_hair_shorter) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to get haircut is used for smartening appearance", "pln": ["(: cnet_usedfor_5951adbdff (UsedFor going_to_get_haircut smartening_appearance) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to hairdresser is used for getting hair styled", "pln": ["(: cnet_usedfor_5329585a1b (UsedFor going_to_hairdresser getting_hair_styled) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "going to laundromat is used for doing laundry", "pln": ["(: cnet_usedfor_4cedc0d8ad (UsedFor going_to_laundromat doing_laundry) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "going to laundromat is used for washing and drying clothes", "pln": ["(: cnet_usedfor_5d8824404f (UsedFor going_to_laundromat washing_and_drying_clothes) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to laundromat is used for washing and drying clothe", "pln": ["(: cnet_usedfor_45bf73272b (UsedFor going_to_laundromat washing_and_drying_clothe) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to laundromat is used for washing cloth", "pln": ["(: cnet_usedfor_fdd688aace (UsedFor going_to_laundromat washing_cloth) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to mall is used for buying thing", "pln": ["(: cnet_usedfor_aeb105b824 (UsedFor going_to_mall buying_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to mall is used for good time", "pln": ["(: cnet_usedfor_8e7cf53027 (UsedFor going_to_mall good_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to mall is used for shopping", "pln": ["(: cnet_usedfor_2cced472c8 (UsedFor going_to_mall shopping) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to market is used for buying bread", "pln": ["(: cnet_usedfor_ac5bc8d82f (UsedFor going_to_market buying_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to market is used for buying food", "pln": ["(: cnet_usedfor_f2ee5a5d5a (UsedFor going_to_market buying_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to market is used for grocery shopping", "pln": ["(: cnet_usedfor_0cdc64c959 (UsedFor going_to_market grocery_shopping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "going to movie is used for being entertained", "pln": ["(: cnet_usedfor_7ae9601a3a (UsedFor going_to_movie being_entertained) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "going to party is used for being together with others", "pln": ["(: cnet_usedfor_dce4f08ea3 (UsedFor going_to_party being_together_with_others) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to opera is used for appreciating music", "pln": ["(: cnet_usedfor_42bc2a171f (UsedFor going_to_opera appreciating_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to opera is used for listening to music", "pln": ["(: cnet_usedfor_56ce7909f1 (UsedFor going_to_opera listening_to_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to opera is used for seeing people and being seen", "pln": ["(: cnet_usedfor_983a73ba3c (UsedFor going_to_opera seeing_people_and_being_seen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to party is used for being together with other", "pln": ["(: cnet_usedfor_81ff36fe8b (UsedFor going_to_party being_together_with_other) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to party is used for celebrating", "pln": ["(: cnet_usedfor_7dcd6612ac (UsedFor going_to_party celebrating) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "going to party is used for fun", "pln": ["(: cnet_usedfor_971650a4bc (UsedFor going_to_party fun) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to party is used for getting drunk", "pln": ["(: cnet_usedfor_aa67bd1234 (UsedFor going_to_party getting_drunk) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to party is used for having fun", "pln": ["(: cnet_usedfor_3d4a4be600 (UsedFor going_to_party having_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to party is used for meeting new people", "pln": ["(: cnet_usedfor_6435458346 (UsedFor going_to_party meeting_new_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to party is used for socializing", "pln": ["(: cnet_usedfor_3b91c91983 (UsedFor going_to_party socializing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to performance is used for being entertained", "pln": ["(: cnet_usedfor_e3b62c3359 (UsedFor going_to_performance being_entertained) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to performance is used for enjoyment", "pln": ["(: cnet_usedfor_6d7533f838 (UsedFor going_to_performance enjoyment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to performance is used for socializing", "pln": ["(: cnet_usedfor_fe5a5cb485 (UsedFor going_to_performance socializing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to play is used for having fun", "pln": ["(: cnet_usedfor_b0bc999baf (UsedFor going_to_play having_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to play is used for literary enlightenment", "pln": ["(: cnet_usedfor_e73e56be8a (UsedFor going_to_play literary_enlightenment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to pub is used for drinking", "pln": ["(: cnet_usedfor_519224e576 (UsedFor going_to_pub drinking) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to pub is used for having beer", "pln": ["(: cnet_usedfor_2230f9cf5f (UsedFor going_to_pub having_beer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "going to pub is used for having drink", "pln": ["(: cnet_usedfor_0d294e2ad6 (UsedFor going_to_pub having_drink) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to pub is used for meeting friend", "pln": ["(: cnet_usedfor_306f813246 (UsedFor going_to_pub meeting_friend) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to pub is used for socializing", "pln": ["(: cnet_usedfor_e53c8db6e9 (UsedFor going_to_pub socializing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to restaurant is used for eating out", "pln": ["(: cnet_usedfor_76735c7abc (UsedFor going_to_restaurant eating_out) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to sleep is used for letting body recover", "pln": ["(: cnet_usedfor_7bb4b3ae00 (UsedFor going_to_sleep letting_body_recover) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to sleep is used for relaxing", "pln": ["(: cnet_usedfor_0883d3ffff (UsedFor going_to_sleep relaxing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to sleep is used for rest", "pln": ["(: cnet_usedfor_30eea6c5dd (UsedFor going_to_sleep rest) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to sleep is used for resting", "pln": ["(: cnet_usedfor_f55eae0328 (UsedFor going_to_sleep resting) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to store is used for buying clothe", "pln": ["(: cnet_usedfor_3971e0902f (UsedFor going_to_store buying_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to store is used for buying food", "pln": ["(: cnet_usedfor_fc4ea7a3b7 (UsedFor going_to_store buying_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to store is used for fun", "pln": ["(: cnet_usedfor_d34cdaea70 (UsedFor going_to_store fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to store is used for shopping", "pln": ["(: cnet_usedfor_296be97bd3 (UsedFor going_to_store shopping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to store is used for spending money", "pln": ["(: cnet_usedfor_c539981ba8 (UsedFor going_to_store spending_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to work is used for accomplishing", "pln": ["(: cnet_usedfor_69f8250d96 (UsedFor going_to_work accomplishing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "going to work is used for being productive", "pln": ["(: cnet_usedfor_491a03e393 (UsedFor going_to_work being_productive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "going to work is used for earning living", "pln": ["(: cnet_usedfor_d64ce5235f (UsedFor going_to_work earning_living) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "going to zoo is used for learning about animals", "pln": ["(: cnet_usedfor_9891486efb (UsedFor going_to_zoo learning_about_animals) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to work is used for money", "pln": ["(: cnet_usedfor_272437365b (UsedFor going_to_work money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to work is used for paying bill", "pln": ["(: cnet_usedfor_9a51845344 (UsedFor going_to_work paying_bill) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to work is used for supporting family", "pln": ["(: cnet_usedfor_1cc900278a (UsedFor going_to_work supporting_family) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to work is used for who have job", "pln": ["(: cnet_usedfor_6e4d2715c8 (UsedFor going_to_work who_have_job) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to zoo is used for education", "pln": ["(: cnet_usedfor_ea54e13103 (UsedFor going_to_zoo education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to zoo is used for having fun", "pln": ["(: cnet_usedfor_9be416a4a4 (UsedFor going_to_zoo having_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to zoo is used for learning about animal", "pln": ["(: cnet_usedfor_d7ac8262b1 (UsedFor going_to_zoo learning_about_animal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "going to zoo is used for seeing animal", "pln": ["(: cnet_usedfor_42ea1938fc (UsedFor going_to_zoo seeing_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gold medal is used for first place", "pln": ["(: cnet_usedfor_605b5c5303 (UsedFor gold_medal first_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "golf club is used for hit golf ball", "pln": ["(: cnet_usedfor_272ae15534 (UsedFor golf_club hit_golf_ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "golf club is used for play golf", "pln": ["(: cnet_usedfor_c9bfdfecaf (UsedFor golf_club play_golf) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gong is used for making music", "pln": ["(: cnet_usedfor_5e01cc6ea7 (UsedFor gong making_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "graphite pencil is used for doing math", "pln": ["(: cnet_usedfor_e821fdd7a4 (UsedFor graphite_pencil doing_math) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "graphite pencil is used for draw", "pln": ["(: cnet_usedfor_2b64873fbd (UsedFor graphite_pencil draw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "graphite pencil is used for write", "pln": ["(: cnet_usedfor_60c2710949 (UsedFor graphite_pencil write) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "graphite pencil is used for write on paper", "pln": ["(: cnet_usedfor_884376ae6d (UsedFor graphite_pencil write_on_paper) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "grenade is used for blowing up things", "pln": ["(: cnet_usedfor_111b239075 (UsedFor grenade blowing_up_things) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gravy boat is used for hold", "pln": ["(: cnet_usedfor_c45a50d861 (UsedFor gravy_boat hold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "greengrocer is used for buy vegetable", "pln": ["(: cnet_usedfor_b6efb3e759 (UsedFor greengrocer buy_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "grenade is used for blow up enemy", "pln": ["(: cnet_usedfor_601b7a55a5 (UsedFor grenade blow_up_enemy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "grenade is used for blowing up", "pln": ["(: cnet_usedfor_d39f3521cd (UsedFor grenade blowing_up) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "grenade is used for blowing up thing", "pln": ["(: cnet_usedfor_38bdc447fe (UsedFor grenade blowing_up_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "grenade is used for commit suicide", "pln": ["(: cnet_usedfor_444020ef23 (UsedFor grenade commit_suicide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "grenade is used for do damage", "pln": ["(: cnet_usedfor_fd1722bbd5 (UsedFor grenade do_damage) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "grenade is used for killing people", "pln": ["(: cnet_usedfor_af0f2c2300 (UsedFor grenade killing_people) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "grenade is used for murder", "pln": ["(: cnet_usedfor_e7fc39dec4 (UsedFor grenade murder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "grill is used for barbecue", "pln": ["(: cnet_usedfor_f868ea3cc5 (UsedFor grill barbecue) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "grill is used for cooking", "pln": ["(: cnet_usedfor_94e1a8d114 (UsedFor grill cooking) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "grill is used for grilling steak", "pln": ["(: cnet_usedfor_e9386e5657 (UsedFor grill grilling_steak) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "grocer is used for selling food", "pln": ["(: cnet_usedfor_6006180ea4 (UsedFor grocer selling_food) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "grocer is used for selling grocery", "pln": ["(: cnet_usedfor_2f77346cec (UsedFor grocer selling_grocery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "grocer shop to is used for buy food supply", "pln": ["(: cnet_usedfor_b4baae2a67 (UsedFor grocer_shop_to buy_food_supply) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "grocery store is used for buying grocery", "pln": ["(: cnet_usedfor_05bc0d4052 (UsedFor grocery_store buying_grocery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "grocery store is used for selling food", "pln": ["(: cnet_usedfor_51ef06f20c (UsedFor grocery_store selling_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "grocery store is used for shopping", "pln": ["(: cnet_usedfor_d28a54f56b (UsedFor grocery_store shopping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "grocery store is used for storing food for sale", "pln": ["(: cnet_usedfor_0e5e808638 (UsedFor grocery_store storing_food_for_sale) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "grooming is used for keeping one clean", "pln": ["(: cnet_usedfor_5a843ffb3d (UsedFor grooming keeping_one_clean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "grooming is used for looking good", "pln": ["(: cnet_usedfor_e076f74756 (UsedFor grooming looking_good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ground floor is used for entering building", "pln": ["(: cnet_usedfor_4c369e9a52 (UsedFor ground_floor entering_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "growing vegetable is used for eating", "pln": ["(: cnet_usedfor_1deea2a388 (UsedFor growing_vegetable eating) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "growing vegetable is used for gardener", "pln": ["(: cnet_usedfor_00e3e6d37e (UsedFor growing_vegetable gardener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "guitar is used for making music", "pln": ["(: cnet_usedfor_e8e4373919 (UsedFor guitar making_music) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "guitar is used for music", "pln": ["(: cnet_usedfor_c3c4f3aa79 (UsedFor guitar music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "guitar is used for play song", "pln": ["(: cnet_usedfor_f6e6007a16 (UsedFor guitar play_song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "guitar is used for sound", "pln": ["(: cnet_usedfor_c3b0a556fd (UsedFor guitar sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "gun is used for kill", "pln": ["(: cnet_usedfor_8b506b00cd (UsedFor gun kill) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gun is used for kill person", "pln": ["(: cnet_usedfor_7a55a2d994 (UsedFor gun kill_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gun is used for shoot bullet", "pln": ["(: cnet_usedfor_d8f34bcfe1 (UsedFor gun shoot_bullet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gun is used for shooting thing", "pln": ["(: cnet_usedfor_9329aa07b5 (UsedFor gun shooting_thing) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gun is used for fire", "pln": ["(: cnet_usedfor_eb49d2e86f (UsedFor gun fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gun is used for shoot", "pln": ["(: cnet_usedfor_d40320c6de (UsedFor gun shoot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gun is used for shooting", "pln": ["(: cnet_usedfor_4251838e43 (UsedFor gun shooting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gun is used for shot", "pln": ["(: cnet_usedfor_6cf1e9e2ab (UsedFor gun shot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gun is used for hunt animal", "pln": ["(: cnet_usedfor_912236481f (UsedFor gun hunt_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gymnasium is used for class", "pln": ["(: cnet_usedfor_a692809eab (UsedFor gymnasium class) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "gymnasium is used for exercise", "pln": ["(: cnet_usedfor_2cb811c166 (UsedFor gymnasium exercise) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "gymnasium is used for gymnastic", "pln": ["(: cnet_usedfor_acc56bbaad (UsedFor gymnasium gymnastic) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hair is used for combing", "pln": ["(: cnet_usedfor_8708d3235f (UsedFor hair combing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hair is used for warmth", "pln": ["(: cnet_usedfor_60b62ba6e1 (UsedFor hair warmth) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hair is used for washing", "pln": ["(: cnet_usedfor_c413ed8ad0 (UsedFor hair washing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hair clip is used for decorating yourself", "pln": ["(: cnet_usedfor_314eae825e (UsedFor hair_clip decorating_yourself) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hair clip is used for hold hair", "pln": ["(: cnet_usedfor_83e184e03c (UsedFor hair_clip hold_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hair clip is used for keep hair in place", "pln": ["(: cnet_usedfor_7a88f5360f (UsedFor hair_clip keep_hair_in_place) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hair clip is used for keeping hair out of eye", "pln": ["(: cnet_usedfor_2dcea14337 (UsedFor hair_clip keeping_hair_out_of_eye) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hair clip is used for styling hair", "pln": ["(: cnet_usedfor_7af2ab68eb (UsedFor hair_clip styling_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "hair conditioner is used for making hair soft", "pln": ["(: cnet_usedfor_cb44d6bf4f (UsedFor hair_conditioner making_hair_soft) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "hair conditioner is used for softening hair", "pln": ["(: cnet_usedfor_8ac26c79d9 (UsedFor hair_conditioner softening_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "hair dryer is used for dry hair", "pln": ["(: cnet_usedfor_0810bb0c2d (UsedFor hair_dryer dry_hair) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "haircutting scissors is used for cutting hair", "pln": ["(: cnet_usedfor_af141441bf (UsedFor haircutting_scissors cutting_hair) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hair dryer is used for drying hair", "pln": ["(: cnet_usedfor_cc5d6b3f02 (UsedFor hair_dryer drying_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hair dryer is used for drying wet hair", "pln": ["(: cnet_usedfor_56989b2f90 (UsedFor hair_dryer drying_wet_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hair dryer is used for style hair", "pln": ["(: cnet_usedfor_e500e20421 (UsedFor hair_dryer style_hair) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hair gel is used for styling hair", "pln": ["(: cnet_usedfor_0ab3b6559c (UsedFor hair_gel styling_hair) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hair roller is used for curl hair", "pln": ["(: cnet_usedfor_dfdd1e8ca6 (UsedFor hair_roller curl_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hair roller is used for curling hair", "pln": ["(: cnet_usedfor_d5021870fe (UsedFor hair_roller curling_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hair roller is used for change appearance of hair", "pln": ["(: cnet_usedfor_f9e05b9217 (UsedFor hair_roller change_appearance_of_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hair salon is used for getting hair cut", "pln": ["(: cnet_usedfor_2cbd1812eb (UsedFor hair_salon getting_hair_cut) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hair salon is used for hair cut", "pln": ["(: cnet_usedfor_bd96d3ed85 (UsedFor hair_salon hair_cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hair salon is used for perm", "pln": ["(: cnet_usedfor_32206440dd (UsedFor hair_salon perm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hair shaping gel is used for shape hair", "pln": ["(: cnet_usedfor_1f456d0853 (UsedFor hair_shaping_gel shape_hair) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hair shaping gel is used for shaping hair", "pln": ["(: cnet_usedfor_0d34279cbb (UsedFor hair_shaping_gel shaping_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hair shaping gel is used for style hair", "pln": ["(: cnet_usedfor_3afd99dbf1 (UsedFor hair_shaping_gel style_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hairbrush is used for brush hair", "pln": ["(: cnet_usedfor_76dc0bff67 (UsedFor hairbrush brush_hair) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hairbrush is used for brushing hair", "pln": ["(: cnet_usedfor_e623e44d30 (UsedFor hairbrush brushing_hair) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hairbrush is used for comb hair", "pln": ["(: cnet_usedfor_d65b7b5ded (UsedFor hairbrush comb_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hairbrush is used for combing hair", "pln": ["(: cnet_usedfor_cd252fb63c (UsedFor hairbrush combing_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "haircutting scissor is used for cut hair", "pln": ["(: cnet_usedfor_8b2d532f43 (UsedFor haircutting_scissor cut_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "haircutting scissor is used for cutting hair", "pln": ["(: cnet_usedfor_2ba05f4f18 (UsedFor haircutting_scissor cutting_hair) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hairdresser chair is used for having hair cut", "pln": ["(: cnet_usedfor_5d4ef60c85 (UsedFor hairdresser_chair having_hair_cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hairdresser chair is used for sit in", "pln": ["(: cnet_usedfor_e808b2f96b (UsedFor hairdresser_chair sit_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hairdresser chair is used for sitting", "pln": ["(: cnet_usedfor_fa00d4130d (UsedFor hairdresser_chair sitting) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hairdressing salon is used for get hair cut", "pln": ["(: cnet_usedfor_f1daa46bdc (UsedFor hairdressing_salon get_hair_cut) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hairdressing salon is used for getting haircut", "pln": ["(: cnet_usedfor_d9265d1422 (UsedFor hairdressing_salon getting_haircut) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hairdressing salon is used for having hair cut", "pln": ["(: cnet_usedfor_0c54533770 (UsedFor hairdressing_salon having_hair_cut) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hairdryer is used for blowing hot air", "pln": ["(: cnet_usedfor_d53b31c2e7 (UsedFor hairdryer blowing_hot_air) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hairdryer is used for dry hair", "pln": ["(: cnet_usedfor_8ee8af76ba (UsedFor hairdryer dry_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hairdryer is used for drying hair", "pln": ["(: cnet_usedfor_93b90171dc (UsedFor hairdryer drying_hair) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hairdryer is used for melting ice", "pln": ["(: cnet_usedfor_d570a69e3b (UsedFor hairdryer melting_ice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hairdryer is used for styling hair", "pln": ["(: cnet_usedfor_dcd13453f5 (UsedFor hairdryer styling_hair) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hairpin is used for holding hair back", "pln": ["(: cnet_usedfor_0a36bfef87 (UsedFor hairpin holding_hair_back) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hairpin is used for holding hair up", "pln": ["(: cnet_usedfor_123bb4f939 (UsedFor hairpin holding_hair_up) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hall is used for walking down", "pln": ["(: cnet_usedfor_3f8070381f (UsedFor hall walking_down) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hallway is used for go between nonadjacent room", "pln": ["(: cnet_usedfor_f3a2e1737d (UsedFor hallway go_between_nonadjacent_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hallway is used for moving between room", "pln": ["(: cnet_usedfor_e4e6812510 (UsedFor hallway moving_between_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "hallway is used for walking in", "pln": ["(: cnet_usedfor_abaa4632a3 (UsedFor hallway walking_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "hammer is used for breaking things", "pln": ["(: cnet_usedfor_71aeb373c1 (UsedFor hammer breaking_things) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hammer is used for breaking thing", "pln": ["(: cnet_usedfor_6f751a043d (UsedFor hammer breaking_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hammer is used for drive nail", "pln": ["(: cnet_usedfor_fd3dced6ed (UsedFor hammer drive_nail) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hammer is used for driving nail", "pln": ["(: cnet_usedfor_ee9e75a319 (UsedFor hammer driving_nail) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "hammer is used for hit nail", "pln": ["(: cnet_usedfor_9a5bdb7632 (UsedFor hammer hit_nail) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hammer is used for pound nail", "pln": ["(: cnet_usedfor_f53b418d75 (UsedFor hammer pound_nail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hammer is used for pounding nail", "pln": ["(: cnet_usedfor_0f49935894 (UsedFor hammer pounding_nail) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hammer is used for pulling out nail", "pln": ["(: cnet_usedfor_37d2f2f0de (UsedFor hammer pulling_out_nail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hammer is used for whack", "pln": ["(: cnet_usedfor_bd2f212efa (UsedFor hammer whack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hammer is used for hammer", "pln": ["(: cnet_usedfor_54268e2765 (UsedFor hammer hammer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hammer is used for strike", "pln": ["(: cnet_usedfor_5e3a31acb0 (UsedFor hammer strike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hand luggage is used for carrying with", "pln": ["(: cnet_usedfor_99df68a772 (UsedFor hand_luggage carrying_with) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hand luggage is used for travel", "pln": ["(: cnet_usedfor_53e04da1d6 (UsedFor hand_luggage travel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "handbag is used for carry makeup", "pln": ["(: cnet_usedfor_f036218a02 (UsedFor handbag carry_makeup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "handbag is used for carry money", "pln": ["(: cnet_usedfor_a1958f8017 (UsedFor handbag carry_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "handbag is used for carrying makeup", "pln": ["(: cnet_usedfor_231d59c844 (UsedFor handbag carrying_makeup) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "handcart is used for haul", "pln": ["(: cnet_usedfor_da5401686d (UsedFor handcart haul) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "handgun is used for murder", "pln": ["(: cnet_usedfor_96d3df2519 (UsedFor handgun murder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "handgun is used for self defense", "pln": ["(: cnet_usedfor_cc8a111159 (UsedFor handgun self_defense) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "handgun is used for shooting bullet", "pln": ["(: cnet_usedfor_8045a6873d (UsedFor handgun shooting_bullet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "handgun is used for target practice", "pln": ["(: cnet_usedfor_2d1daf521d (UsedFor handgun target_practice) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "handle is used for hold tool", "pln": ["(: cnet_usedfor_e5097c44eb (UsedFor handle hold_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "handle is used for open door", "pln": ["(: cnet_usedfor_fdfe2d527d (UsedFor handle open_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "handle is used for pulling", "pln": ["(: cnet_usedfor_136ae5666a (UsedFor handle pulling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "handling proposal is used for lawyer", "pln": ["(: cnet_usedfor_d9c2500ef8 (UsedFor handling_proposal lawyer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hand is used for create pottery", "pln": ["(: cnet_usedfor_ff1659c753 (UsedFor hand create_pottery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hand is used for create sand castle", "pln": ["(: cnet_usedfor_a3370846e6 (UsedFor hand create_sand_castle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hand is used for hold thing", "pln": ["(: cnet_usedfor_dce1622084 (UsedFor hand hold_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hanging out at bar is used for meeting other people", "pln": ["(: cnet_usedfor_e224afc464 (UsedFor hanging_out_at_bar meeting_other_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hanging out at bar is used for people with nothing better to do", "pln": ["(: cnet_usedfor_e02386613f (UsedFor hanging_out_at_bar people_with_nothing_better_to_do) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "hanging out at bar is used for picking up women", "pln": ["(: cnet_usedfor_f7954e1141 (UsedFor hanging_out_at_bar picking_up_women) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "hardware shop is used for buying screws and nails", "pln": ["(: cnet_usedfor_4b87f03f41 (UsedFor hardware_shop buying_screws_and_nails) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hanging out at bar is used for socialising", "pln": ["(: cnet_usedfor_4f4c0c77a6 (UsedFor hanging_out_at_bar socialising) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hardware shop is used for buy nail", "pln": ["(: cnet_usedfor_cccc202d8c (UsedFor hardware_shop buy_nail) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hardware shop is used for buying hardware", "pln": ["(: cnet_usedfor_a21d19e2db (UsedFor hardware_shop buying_hardware) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hardware shop is used for buying paint", "pln": ["(: cnet_usedfor_07c6d69269 (UsedFor hardware_shop buying_paint) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hardware shop is used for buying screw and nail", "pln": ["(: cnet_usedfor_4e614f5250 (UsedFor hardware_shop buying_screw_and_nail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hardware shop is used for buying tool", "pln": ["(: cnet_usedfor_3ac3072314 (UsedFor hardware_shop buying_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hardware store is used for buy nail", "pln": ["(: cnet_usedfor_b7ba1b3c80 (UsedFor hardware_store buy_nail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hardware store is used for buy screw", "pln": ["(: cnet_usedfor_02e2a56789 (UsedFor hardware_store buy_screw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hardware store is used for buy tool", "pln": ["(: cnet_usedfor_07aeaa18eb (UsedFor hardware_store buy_tool) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hardware store is used for buying hardware", "pln": ["(: cnet_usedfor_7c2ebbabdd (UsedFor hardware_store buying_hardware) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "harmonica is used for make music", "pln": ["(: cnet_usedfor_d6e7923811 (UsedFor harmonica make_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "harmonica is used for making music", "pln": ["(: cnet_usedfor_a91087d574 (UsedFor harmonica making_music) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "harmonica is used for play tune", "pln": ["(: cnet_usedfor_162cd35d57 (UsedFor harmonica play_tune) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "harmonica is used for playing music", "pln": ["(: cnet_usedfor_85739ea308 (UsedFor harmonica playing_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "harpsichord is used for make music", "pln": ["(: cnet_usedfor_b3de07a0b6 (UsedFor harpsichord make_music) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "harpsichord is used for making music", "pln": ["(: cnet_usedfor_1cac8e76de (UsedFor harpsichord making_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "harpsichord is used for playing music", "pln": ["(: cnet_usedfor_62c7c67694 (UsedFor harpsichord playing_music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hat is used for begging", "pln": ["(: cnet_usedfor_e159f05a6b (UsedFor hat begging) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hat is used for keep sun out of eye", "pln": ["(: cnet_usedfor_074e039bf4 (UsedFor hat keep_sun_out_of_eye) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hat is used for preventing sunburn", "pln": ["(: cnet_usedfor_4d522660db (UsedFor hat preventing_sunburn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hat is used for protecting face from sun", "pln": ["(: cnet_usedfor_c492ad5490 (UsedFor hat protecting_face_from_sun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hat is used for protecting head", "pln": ["(: cnet_usedfor_c612423220 (UsedFor hat protecting_head) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hat is used for waving", "pln": ["(: cnet_usedfor_aa78f11c73 (UsedFor hat waving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hat is used for wearing", "pln": ["(: cnet_usedfor_f6eae1cfe4 (UsedFor hat wearing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hat is used for wearing on head", "pln": ["(: cnet_usedfor_46b971a33f (UsedFor hat wearing_on_head) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "having bath is used for pleasure", "pln": ["(: cnet_usedfor_190e4918da (UsedFor having_bath pleasure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "having friends over is used for having good time", "pln": ["(: cnet_usedfor_526f422537 (UsedFor having_friends_over having_good_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "having friends over is used for having party", "pln": ["(: cnet_usedfor_fd574d1999 (UsedFor having_friends_over having_party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having bath is used for washing yourself", "pln": ["(: cnet_usedfor_2e06a86a46 (UsedFor having_bath washing_yourself) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having checkup is used for staying healthy", "pln": ["(: cnet_usedfor_2eacba4272 (UsedFor having_checkup staying_healthy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having conversation is used for communicating", "pln": ["(: cnet_usedfor_c3d9f6d92d (UsedFor having_conversation communicating) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having conversation is used for communicating idea", "pln": ["(: cnet_usedfor_dd56387002 (UsedFor having_conversation communicating_idea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having examination is used for testing", "pln": ["(: cnet_usedfor_9130169423 (UsedFor having_examination testing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having food is used for eating", "pln": ["(: cnet_usedfor_b7047fdd34 (UsedFor having_food eating) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having food is used for pleasure", "pln": ["(: cnet_usedfor_17a2d250a6 (UsedFor having_food pleasure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having food is used for storage", "pln": ["(: cnet_usedfor_d45559dccf (UsedFor having_food storage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having friend over is used for entertaining", "pln": ["(: cnet_usedfor_a1b1fe694e (UsedFor having_friend_over entertaining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having friend over is used for good time", "pln": ["(: cnet_usedfor_1de0222e1b (UsedFor having_friend_over good_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having friend over is used for having fun", "pln": ["(: cnet_usedfor_322c4ab76c (UsedFor having_friend_over having_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having friend over is used for having good time", "pln": ["(: cnet_usedfor_61011f5af6 (UsedFor having_friend_over having_good_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having friend over is used for having party", "pln": ["(: cnet_usedfor_b9fe5622f9 (UsedFor having_friend_over having_party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having friend over is used for party", "pln": ["(: cnet_usedfor_ca18e1d6df (UsedFor having_friend_over party) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having friend over is used for talk", "pln": ["(: cnet_usedfor_8ce252605b (UsedFor having_friend_over talk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having fun is used for enjoyment", "pln": ["(: cnet_usedfor_146350a3db (UsedFor having_fun enjoyment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having fun is used for personal benefit", "pln": ["(: cnet_usedfor_b948598a80 (UsedFor having_fun personal_benefit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having haircut is used for shortening hair", "pln": ["(: cnet_usedfor_b2b847f5e2 (UsedFor having_haircut shortening_hair) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having lunch is used for eating food", "pln": ["(: cnet_usedfor_ab11d50b58 (UsedFor having_lunch eating_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having lunch is used for meeting friend", "pln": ["(: cnet_usedfor_197d5f4166 (UsedFor having_lunch meeting_friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having lunch is used for taking break", "pln": ["(: cnet_usedfor_50ca45c08d (UsedFor having_lunch taking_break) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having lunch is used for taking break from work", "pln": ["(: cnet_usedfor_ee96a7eccf (UsedFor having_lunch taking_break_from_work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having party is used for celebrating special occasion", "pln": ["(: cnet_usedfor_88edb8e4d7 (UsedFor having_party celebrating_special_occasion) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having party is used for dancing", "pln": ["(: cnet_usedfor_14ea196ea5 (UsedFor having_party dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having party is used for drinking alcohol", "pln": ["(: cnet_usedfor_31d04e2e7a (UsedFor having_party drinking_alcohol) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having party is used for entertainment", "pln": ["(: cnet_usedfor_f226e19716 (UsedFor having_party entertainment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "having party is used for having good time", "pln": ["(: cnet_usedfor_301df4879e (UsedFor having_party having_good_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having party is used for meeting friend", "pln": ["(: cnet_usedfor_52e461045e (UsedFor having_party meeting_friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having physical exam is used for checking health", "pln": ["(: cnet_usedfor_8f18bbcabd (UsedFor having_physical_exam checking_health) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having physical exam is used for having checkup by doctor", "pln": ["(: cnet_usedfor_73bf844a30 (UsedFor having_physical_exam having_checkup_by_doctor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having physical exam is used for maintaining good health", "pln": ["(: cnet_usedfor_251e23cbb7 (UsedFor having_physical_exam maintaining_good_health) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having physical examination is used for determining health", "pln": ["(: cnet_usedfor_e849d2a812 (UsedFor having_physical_examination determining_health) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having sex is used for entertain yourself", "pln": ["(: cnet_usedfor_1ef65864b0 (UsedFor having_sex entertain_yourself) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having sex is used for fun", "pln": ["(: cnet_usedfor_14af089b58 (UsedFor having_sex fun) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having sex is used for wasting time", "pln": ["(: cnet_usedfor_217ae2d4d1 (UsedFor having_sex wasting_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having sex with same gender is used for being gay", "pln": ["(: cnet_usedfor_d361ba802e (UsedFor having_sex_with_same_gender being_gay) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having shower is used for cleanliness", "pln": ["(: cnet_usedfor_9a80f6ecd9 (UsedFor having_shower cleanliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having shower is used for removing dirt from body", "pln": ["(: cnet_usedfor_04507de90a (UsedFor having_shower removing_dirt_from_body) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "having shower is used for shaving", "pln": ["(: cnet_usedfor_2be0324db1 (UsedFor having_shower shaving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having shower is used for washing", "pln": ["(: cnet_usedfor_b0ec1bd2ce (UsedFor having_shower washing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "having shower is used for washing hair", "pln": ["(: cnet_usedfor_01b47773e2 (UsedFor having_shower washing_hair) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "head is used for bang on wall", "pln": ["(: cnet_usedfor_d44dc63457 (UsedFor head bang_on_wall) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "head is used for go to bathroom", "pln": ["(: cnet_usedfor_1bd097fdfc (UsedFor head go_to_bathroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "head is used for go to bathroom in", "pln": ["(: cnet_usedfor_8cd4a3b370 (UsedFor head go_to_bathroom_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "head is used for hat", "pln": ["(: cnet_usedfor_b1dba6fd2a (UsedFor head hat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "head is used for think", "pln": ["(: cnet_usedfor_4ba7534819 (UsedFor head think) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "headphone is used for listen to mushc", "pln": ["(: cnet_usedfor_594710d54c (UsedFor headphone listen_to_mushc) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "health food store is used for buy health food", "pln": ["(: cnet_usedfor_dc5425bf70 (UsedFor health_food_store buy_health_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "health food store is used for buy organic food", "pln": ["(: cnet_usedfor_503bfb4999 (UsedFor health_food_store buy_organic_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "health food store is used for buy vitamin", "pln": ["(: cnet_usedfor_20176616e6 (UsedFor health_food_store buy_vitamin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hearing music is used for distraction", "pln": ["(: cnet_usedfor_b86675168f (UsedFor hearing_music distraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "hearing music is used for enjoying yourself", "pln": ["(: cnet_usedfor_017f44db07 (UsedFor hearing_music enjoying_yourself) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "hearing testimony is used for jury", "pln": ["(: cnet_usedfor_a5083d7bea (UsedFor hearing_testimony jury) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hearing music is used for relaxing", "pln": ["(: cnet_usedfor_866c118a87 (UsedFor hearing_music relaxing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hearing new is used for information", "pln": ["(: cnet_usedfor_f618d93ac6 (UsedFor hearing_new information) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hearing singing is used for attending concert", "pln": ["(: cnet_usedfor_4f9466ae4d (UsedFor hearing_singing attending_concert) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hearing testimony is used for judge", "pln": ["(: cnet_usedfor_d6a2d1ff06 (UsedFor hearing_testimony judge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hearing testimony is used for jury", "pln": ["(: cnet_usedfor_a5083d7bea (UsedFor hearing_testimony jury) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "heart is used for love", "pln": ["(: cnet_usedfor_b35a98860a (UsedFor heart love) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "heart is used for pumping blood", "pln": ["(: cnet_usedfor_d57c538dff (UsedFor heart pumping_blood) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "heat source is used for cooking", "pln": ["(: cnet_usedfor_bd43cb9d19 (UsedFor heat_source cooking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "heat source is used for cooking food", "pln": ["(: cnet_usedfor_a017e38219 (UsedFor heat_source cooking_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "heat source is used for warmth", "pln": ["(: cnet_usedfor_83bc563df0 (UsedFor heat_source warmth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "heated towel rack is used for drying towel", "pln": ["(: cnet_usedfor_40dc29d333 (UsedFor heated_towel_rack drying_towel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "heated towel rack is used for have warm towel", "pln": ["(: cnet_usedfor_aefacbb766 (UsedFor heated_towel_rack have_warm_towel) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "heated towel rack is used for heating towel", "pln": ["(: cnet_usedfor_2093341e9a (UsedFor heated_towel_rack heating_towel) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "heated towel rack is used for keeping towel warm", "pln": ["(: cnet_usedfor_980665f797 (UsedFor heated_towel_rack keeping_towel_warm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "heated towel rack is used for warm towel", "pln": ["(: cnet_usedfor_adfc283c06 (UsedFor heated_towel_rack warm_towel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "heater is used for get warm", "pln": ["(: cnet_usedfor_aaa0f37fb3 (UsedFor heater get_warm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "heater is used for heat", "pln": ["(: cnet_usedfor_8bc3575279 (UsedFor heater heat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "heater is used for heating", "pln": ["(: cnet_usedfor_638f52b2b8 (UsedFor heater heating) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "helicopter is used for fly", "pln": ["(: cnet_usedfor_285dc6596e (UsedFor helicopter fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "helicopter is used for transport", "pln": ["(: cnet_usedfor_a7c8db29e6 (UsedFor helicopter transport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "helicopter is used for travel", "pln": ["(: cnet_usedfor_fc88b94846 (UsedFor helicopter travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "helium balloon is used for decorate for party", "pln": ["(: cnet_usedfor_e94dd7ab6d (UsedFor helium_balloon decorate_for_party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "helium balloon is used for decorating for party", "pln": ["(: cnet_usedfor_9ce2fe8e3b (UsedFor helium_balloon decorating_for_party) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "helmet is used for protect head", "pln": ["(: cnet_usedfor_67bf4ae112 (UsedFor helmet protect_head) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "helping is used for feeling good", "pln": ["(: cnet_usedfor_298e731775 (UsedFor helping feeling_good) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hide bed is used for sleep guest", "pln": ["(: cnet_usedfor_2e5ee7a455 (UsedFor hide_bed sleep_guest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hide bed sofa is used for sleep guest", "pln": ["(: cnet_usedfor_200aa8e0c0 (UsedFor hide_bed_sofa sleep_guest) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hide bed sofa is used for sleeping on", "pln": ["(: cnet_usedfor_ed5c7d21d9 (UsedFor hide_bed_sofa sleeping_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "high rise is used for apartment", "pln": ["(: cnet_usedfor_829f1946d3 (UsedFor high_rise apartment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "high rise is used for office", "pln": ["(: cnet_usedfor_8a10780a2a (UsedFor high_rise office) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "highlighter pen is used for coloring", "pln": ["(: cnet_usedfor_dd63c1c167 (UsedFor highlighter_pen coloring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "highlighter pen is used for highlighting", "pln": ["(: cnet_usedfor_c6316a2571 (UsedFor highlighter_pen highlighting) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "highway is used for drive on", "pln": ["(: cnet_usedfor_51cc17ea78 (UsedFor highway drive_on) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "highway is used for driving on", "pln": ["(: cnet_usedfor_12767852fc (UsedFor highway driving_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "highway is used for getting from one place to another", "pln": ["(: cnet_usedfor_38026a0d8a (UsedFor highway getting_from_one_place_to_another) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "highway is used for go elsewhere", "pln": ["(: cnet_usedfor_17074dd14c (UsedFor highway go_elsewhere) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "highway is used for motor vehicle to travel on", "pln": ["(: cnet_usedfor_aa4d392f83 (UsedFor highway motor_vehicle_to_travel_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "highway is used for travel", "pln": ["(: cnet_usedfor_886b73ee4b (UsedFor highway travel) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "highway is used for travel in car", "pln": ["(: cnet_usedfor_4be5c09ad4 (UsedFor highway travel_in_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "highway is used for car to drive on", "pln": ["(: cnet_usedfor_9380b02ce2 (UsedFor highway car_to_drive_on) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hiking is used for exercise", "pln": ["(: cnet_usedfor_d6d2ff9c6d (UsedFor hiking exercise) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hiking is used for see new country", "pln": ["(: cnet_usedfor_4925cd574f (UsedFor hiking see_new_country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hill is used for climb", "pln": ["(: cnet_usedfor_22894274ec (UsedFor hill climb) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hill is used for climbing", "pln": ["(: cnet_usedfor_55ddb01856 (UsedFor hill climbing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hinged door is used for get in", "pln": ["(: cnet_usedfor_c626f6f4c5 (UsedFor hinged_door get_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hinged door is used for shut outside", "pln": ["(: cnet_usedfor_6e0dde78c5 (UsedFor hinged_door shut_outside) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "history is used for remembering past", "pln": ["(: cnet_usedfor_bb7f343cad (UsedFor history remembering_past) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "hoist is used for lift things", "pln": ["(: cnet_usedfor_3e70c5ca44 (UsedFor hoist lift_things) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "hose is used for watering flowers", "pln": ["(: cnet_usedfor_9a8761704d (UsedFor hose watering_flowers) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "ice is used for keep things cold", "pln": ["(: cnet_usedfor_1f947cc7a9 (UsedFor ice keep_things_cold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "index card drawer is used for storing index cards", "pln": ["(: cnet_usedfor_90907070e7 (UsedFor index_card_drawer storing_index_cards) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hitting bottle is used for forgetting thing", "pln": ["(: cnet_usedfor_bcf0f7cda7 (UsedFor hitting_bottle forgetting_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hitting bottle is used for getting drunk", "pln": ["(: cnet_usedfor_e28330a5d9 (UsedFor hitting_bottle getting_drunk) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hitting bottle is used for getting soused", "pln": ["(: cnet_usedfor_97bdf1b610 (UsedFor hitting_bottle getting_soused) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hitting bottle is used for intoxication", "pln": ["(: cnet_usedfor_8af739b2a9 (UsedFor hitting_bottle intoxication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hockey puck is used for making goal", "pln": ["(: cnet_usedfor_e1715ee4f3 (UsedFor hockey_puck making_goal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hockey puck is used for passing", "pln": ["(: cnet_usedfor_d61b5113ab (UsedFor hockey_puck passing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hockey puck is used for scoring goal", "pln": ["(: cnet_usedfor_d0a87e6853 (UsedFor hockey_puck scoring_goal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hoist is used for lift heavy object", "pln": ["(: cnet_usedfor_fcfe48706f (UsedFor hoist lift_heavy_object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hoist is used for lift thing", "pln": ["(: cnet_usedfor_ee7752b02b (UsedFor hoist lift_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hoist is used for lifting", "pln": ["(: cnet_usedfor_334b03ddcd (UsedFor hoist lifting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hoist is used for lifting heavy object", "pln": ["(: cnet_usedfor_927339bca0 (UsedFor hoist lifting_heavy_object) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "holding bay is used for store thing", "pln": ["(: cnet_usedfor_d68756f155 (UsedFor holding_bay store_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hole is used for hide in", "pln": ["(: cnet_usedfor_ed42c4b329 (UsedFor hole hide_in) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "home is used for living", "pln": ["(: cnet_usedfor_146a0e1109 (UsedFor home living) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "home is used for living in", "pln": ["(: cnet_usedfor_f9f9323b23 (UsedFor home living_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "homeschooling is used for teaching children", "pln": ["(: cnet_usedfor_a10958f4f8 (UsedFor homeschooling teaching_children) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hook is used for catch fish", "pln": ["(: cnet_usedfor_59d0b729fc (UsedFor hook catch_fish) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hook is used for hook", "pln": ["(: cnet_usedfor_e5bc0e93b9 (UsedFor hook hook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "horn is used for beeping", "pln": ["(: cnet_usedfor_b705d32c3a (UsedFor horn beeping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "horn is used for blowing", "pln": ["(: cnet_usedfor_46b20354b9 (UsedFor horn blowing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "horn is used for honking", "pln": ["(: cnet_usedfor_6ac80f4746 (UsedFor horn honking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "horn is used for music", "pln": ["(: cnet_usedfor_9767b1b142 (UsedFor horn music) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "horn is used for playing music", "pln": ["(: cnet_usedfor_670d2f8365 (UsedFor horn playing_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "horn is used for representing plenty", "pln": ["(: cnet_usedfor_4e1e49872c (UsedFor horn representing_plenty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "horn is used for starting sporting event", "pln": ["(: cnet_usedfor_24ac0572ce (UsedFor horn starting_sporting_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "horn is used for tooting", "pln": ["(: cnet_usedfor_dbf36111a7 (UsedFor horn tooting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "horse is used for riding", "pln": ["(: cnet_usedfor_43a4422b9a (UsedFor horse riding) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hose is used for putting out fire", "pln": ["(: cnet_usedfor_325af11543 (UsedFor hose putting_out_fire) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hose is used for washing car", "pln": ["(: cnet_usedfor_127b7a17ed (UsedFor hose washing_car) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hose is used for watering flower", "pln": ["(: cnet_usedfor_ccc73b0ba7 (UsedFor hose watering_flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hose is used for watering garden", "pln": ["(: cnet_usedfor_98d14f4e47 (UsedFor hose watering_garden) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hose is used for watering lawn", "pln": ["(: cnet_usedfor_a6bd662569 (UsedFor hose watering_lawn) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hospital is used for emergency", "pln": ["(: cnet_usedfor_e4acb9f89a (UsedFor hospital emergency) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hospital is used for having surgery", "pln": ["(: cnet_usedfor_aae0bfa829 (UsedFor hospital having_surgery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hospital is used for healing sick people", "pln": ["(: cnet_usedfor_248f02a28d (UsedFor hospital healing_sick_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hospital is used for surgery", "pln": ["(: cnet_usedfor_399847a67e (UsedFor hospital surgery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hot tap is used for get hot water", "pln": ["(: cnet_usedfor_cbe78d0a19 (UsedFor hot_tap get_hot_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hotel is used for place to sleep", "pln": ["(: cnet_usedfor_3ffe9fecb5 (UsedFor hotel place_to_sleep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hotel is used for rest", "pln": ["(: cnet_usedfor_2d2c1a4ee7 (UsedFor hotel rest) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hotel is used for sleep", "pln": ["(: cnet_usedfor_fcc0203ada (UsedFor hotel sleep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hotel is used for sleeping", "pln": ["(: cnet_usedfor_f8ca200d7c (UsedFor hotel sleeping) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hotel room is used for rest", "pln": ["(: cnet_usedfor_b2d76da856 (UsedFor hotel_room rest) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hotel room is used for sleeping", "pln": ["(: cnet_usedfor_e880894ec9 (UsedFor hotel_room sleeping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hotel room is used for sleeping in", "pln": ["(: cnet_usedfor_31b9081f52 (UsedFor hotel_room sleeping_in) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "house is used for protection from element", "pln": ["(: cnet_usedfor_1bc6f7dd4c (UsedFor house protection_from_element) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "house is used for residency", "pln": ["(: cnet_usedfor_b8bca7435e (UsedFor house residency) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "house is used for shelter", "pln": ["(: cnet_usedfor_651416f565 (UsedFor house shelter) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "house hold oil is used for quieting squeaky door", "pln": ["(: cnet_usedfor_eda50cc068 (UsedFor house_hold_oil quieting_squeaky_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "howling with laughter is used for responding to funny joke", "pln": ["(: cnet_usedfor_45141a4275 (UsedFor howling_with_laughter responding_to_funny_joke) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hurting else is used for causing pain", "pln": ["(: cnet_usedfor_b315b04132 (UsedFor hurting_else causing_pain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hurting else is used for getting revenge", "pln": ["(: cnet_usedfor_cbd5491268 (UsedFor hurting_else getting_revenge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "hurting else is used for revenge", "pln": ["(: cnet_usedfor_a4be86d2a5 (UsedFor hurting_else revenge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ice is used for chilling", "pln": ["(: cnet_usedfor_a9220c3210 (UsedFor ice chilling) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ice is used for cold", "pln": ["(: cnet_usedfor_fad262c7af (UsedFor ice cold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ice is used for cool drink", "pln": ["(: cnet_usedfor_927f623907 (UsedFor ice cool_drink) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ice is used for cooling drink", "pln": ["(: cnet_usedfor_b159a96118 (UsedFor ice cooling_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ice is used for drink", "pln": ["(: cnet_usedfor_02fe68c114 (UsedFor ice drink) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ice is used for keep thing cold", "pln": ["(: cnet_usedfor_9ab629274a (UsedFor ice keep_thing_cold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ice is used for keeping thing cold", "pln": ["(: cnet_usedfor_7052a999df (UsedFor ice keeping_thing_cold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ice is used for reduce swelling", "pln": ["(: cnet_usedfor_dbf416b52a (UsedFor ice reduce_swelling) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "icebox is used for keep thing cool", "pln": ["(: cnet_usedfor_6adf72fab0 (UsedFor icebox keep_thing_cool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "icebox is used for keeping food cold", "pln": ["(: cnet_usedfor_6ffaa6dfab (UsedFor icebox keeping_food_cold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "id is used for identification", "pln": ["(: cnet_usedfor_0fcbc38e47 (UsedFor id identification) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ideology is used for how to live life", "pln": ["(: cnet_usedfor_814c79b15d (UsedFor ideology how_to_live_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "improving image is used for feeling better about yourself", "pln": ["(: cnet_usedfor_4701539c8d (UsedFor improving_image feeling_better_about_yourself) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "improving image is used for getting better job", "pln": ["(: cnet_usedfor_a0f83da747 (UsedFor improving_image getting_better_job) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "improving image is used for getting job", "pln": ["(: cnet_usedfor_9ffe5c0cae (UsedFor improving_image getting_job) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "improving yourself is used for accomplishing goal", "pln": ["(: cnet_usedfor_0c50ad8b94 (UsedFor improving_yourself accomplishing_goal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "index card is used for take note", "pln": ["(: cnet_usedfor_d83d89d2cf (UsedFor index_card take_note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "index card cabinet is used for collecting information over time", "pln": ["(: cnet_usedfor_ee5e257546 (UsedFor index_card_cabinet collecting_information_over_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "index card drawer is used for storing index card", "pln": ["(: cnet_usedfor_e100f88163 (UsedFor index_card_drawer storing_index_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "indian ocean is used for fishing", "pln": ["(: cnet_usedfor_dea87594c3 (UsedFor indian_ocean fishing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "indian ocean is used for sailing", "pln": ["(: cnet_usedfor_d7ddea0765 (UsedFor indian_ocean sailing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "indian restaurant is used for eating in", "pln": ["(: cnet_usedfor_a1224c4b99 (UsedFor indian_restaurant eating_in) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "indica is used for mellow sleepy high", "pln": ["(: cnet_usedfor_533d16a3bc (UsedFor indica mellow_sleepy_high) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "injury is used for claim insurance", "pln": ["(: cnet_usedfor_68a3af1988 (UsedFor injury claim_insurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "ink is used for coloring", "pln": ["(: cnet_usedfor_f6b89d2d52 (UsedFor ink coloring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ink is used for drawing", "pln": ["(: cnet_usedfor_800aa814ff (UsedFor ink drawing) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ink is used for marking", "pln": ["(: cnet_usedfor_692fca1a29 (UsedFor ink marking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ink is used for printing", "pln": ["(: cnet_usedfor_0a7193eac4 (UsedFor ink printing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "instrument is used for making music", "pln": ["(: cnet_usedfor_13953c9ad4 (UsedFor instrument making_music) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "instrument is used for music", "pln": ["(: cnet_usedfor_7c1dbcb2d6 (UsedFor instrument music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "instrument is used for playing music", "pln": ["(: cnet_usedfor_ef56d96949 (UsedFor instrument playing_music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "instrument organ is used for play music", "pln": ["(: cnet_usedfor_92f98b8682 (UsedFor instrument_organ play_music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "instrument triangle is used for make sound", "pln": ["(: cnet_usedfor_b474dc8b5b (UsedFor instrument_triangle make_sound) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "instrument triangle is used for making music", "pln": ["(: cnet_usedfor_760d7d47ba (UsedFor instrument_triangle making_music) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "instrument triangle is used for making noise", "pln": ["(: cnet_usedfor_f58f9b6d6f (UsedFor instrument_triangle making_noise) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "interior area is used for throw party", "pln": ["(: cnet_usedfor_3713c8659d (UsedFor interior_area throw_party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "international highway is used for drive", "pln": ["(: cnet_usedfor_0aa6a9cfcc (UsedFor international_highway drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "internet is used for communicate", "pln": ["(: cnet_usedfor_37e223c37b (UsedFor internet communicate) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "internet is used for communicate with family", "pln": ["(: cnet_usedfor_d18d0210ec (UsedFor internet communicate_with_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "internet is used for make travel arrangement", "pln": ["(: cnet_usedfor_d30b2b82e3 (UsedFor internet make_travel_arrangement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "internet is used for research", "pln": ["(: cnet_usedfor_2e306abca8 (UsedFor internet research) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "interstate highway is used for drive upon", "pln": ["(: cnet_usedfor_e4f137b963 (UsedFor interstate_highway drive_upon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "interstate highway is used for driving", "pln": ["(: cnet_usedfor_dd4957c8f7 (UsedFor interstate_highway driving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "interstate highway is used for transportation", "pln": ["(: cnet_usedfor_263454e8dc (UsedFor interstate_highway transportation) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "intuition is used for create", "pln": ["(: cnet_usedfor_171f79bfe3 (UsedFor intuition create) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "investing money or energy is used for getting return on investment", "pln": ["(: cnet_usedfor_6a730909f6 (UsedFor investing_money_or_energy getting_return_on_investment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "investing money or energy is used for keeping away from boredom", "pln": ["(: cnet_usedfor_5262cc7a62 (UsedFor investing_money_or_energy keeping_away_from_boredom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "iron is used for hitting golf ball", "pln": ["(: cnet_usedfor_d514c1c455 (UsedFor iron hitting_golf_ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "iron is used for ironing clothe", "pln": ["(: cnet_usedfor_df82295f4e (UsedFor iron ironing_clothe) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "iron is used for pressing cloth", "pln": ["(: cnet_usedfor_3b1f9a3717 (UsedFor iron pressing_cloth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "island is used for vacation", "pln": ["(: cnet_usedfor_984518f2ee (UsedFor island vacation) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "isle is used for walking", "pln": ["(: cnet_usedfor_35a6c9a7d8 (UsedFor isle walking) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "italian restaurant is used for eat italian food", "pln": ["(: cnet_usedfor_364cc02ec9 (UsedFor italian_restaurant eat_italian_food) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "italian restaurant is used for eat spaghetti", "pln": ["(: cnet_usedfor_3bc0e97487 (UsedFor italian_restaurant eat_spaghetti) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "italian restaurant is used for eating italian food", "pln": ["(: cnet_usedfor_fc3b5cfa49 (UsedFor italian_restaurant eating_italian_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "italian restaurant is used for eating spaghetti", "pln": ["(: cnet_usedfor_672704faf6 (UsedFor italian_restaurant eating_spaghetti) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "jack is used for lift car", "pln": ["(: cnet_usedfor_ae3747c9fb (UsedFor jack lift_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "japanese restaurant is used for eat sushi", "pln": ["(: cnet_usedfor_6eea03bf66 (UsedFor japanese_restaurant eat_sushi) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "japanese restaurant is used for eating japanese food", "pln": ["(: cnet_usedfor_cb17bc1c31 (UsedFor japanese_restaurant eating_japanese_food) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "japanese restaurant is used for eating sushi", "pln": ["(: cnet_usedfor_7a552f4367 (UsedFor japanese_restaurant eating_sushi) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "jar is used for hold", "pln": ["(: cnet_usedfor_e2e4573cad (UsedFor jar hold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "jar is used for jar", "pln": ["(: cnet_usedfor_06d65c7ee4 (UsedFor jar jar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "jar is used for keep", "pln": ["(: cnet_usedfor_0d24fca622 (UsedFor jar keep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "jean is used for display shapely physique", "pln": ["(: cnet_usedfor_f244f9a0ca (UsedFor jean display_shapely_physique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "jean is used for material for making pant", "pln": ["(: cnet_usedfor_11e490403c (UsedFor jean material_for_making_pant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "jean is used for protect leg", "pln": ["(: cnet_usedfor_fccc555cf0 (UsedFor jean protect_leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "jean is used for wearing", "pln": ["(: cnet_usedfor_b76e67d683 (UsedFor jean wearing) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "jewelry is used for decorate body", "pln": ["(: cnet_usedfor_c1973decc7 (UsedFor jewelry decorate_body) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "jewelry is used for decoration", "pln": ["(: cnet_usedfor_6f15713b5c (UsedFor jewelry decoration) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "jewelry is used for make social statement", "pln": ["(: cnet_usedfor_1d65ca01e9 (UsedFor jewelry make_social_statement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "job is used for earn money", "pln": ["(: cnet_usedfor_c0dcbfb6c2 (UsedFor job earn_money) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "jogging is used for being in shape", "pln": ["(: cnet_usedfor_372efdf82e (UsedFor jogging being_in_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "jogging is used for exercising", "pln": ["(: cnet_usedfor_88f9cc7d73 (UsedFor jogging exercising) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "jogging is used for health", "pln": ["(: cnet_usedfor_a2b66d5b83 (UsedFor jogging health) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "john is used for going to bathroom", "pln": ["(: cnet_usedfor_87228ee8d6 (UsedFor john going_to_bathroom) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "joining army is used for defending country", "pln": ["(: cnet_usedfor_5f84f25eb8 (UsedFor joining_army defending_country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "junkies is used for heroin", "pln": ["(: cnet_usedfor_d01c526932 (UsedFor junkies heroin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "joining army is used for killing people", "pln": ["(: cnet_usedfor_ea1741585a (UsedFor joining_army killing_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "joining army is used for serving country", "pln": ["(: cnet_usedfor_812d336c49 (UsedFor joining_army serving_country) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "judiciary is used for interpreting law", "pln": ["(: cnet_usedfor_0925aad6db (UsedFor judiciary interpreting_law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "jump rope is used for exercising", "pln": ["(: cnet_usedfor_fed27b87d5 (UsedFor jump_rope exercising) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "jumping at chance is used for taking opportunity", "pln": ["(: cnet_usedfor_a7b17bbb5e (UsedFor jumping_at_chance taking_opportunity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "jumping out of window is used for commiting suicide", "pln": ["(: cnet_usedfor_798326786c (UsedFor jumping_out_of_window commiting_suicide) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "jumping out of window is used for escaping", "pln": ["(: cnet_usedfor_1520ea7de3 (UsedFor jumping_out_of_window escaping) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "jumping out of window is used for escaping fire", "pln": ["(: cnet_usedfor_afdfafc82f (UsedFor jumping_out_of_window escaping_fire) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "jumping out of window is used for escaping from burning building", "pln": ["(: cnet_usedfor_8527f5eb7b (UsedFor jumping_out_of_window escaping_from_burning_building) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "jumping out of window is used for suicide", "pln": ["(: cnet_usedfor_269780f412 (UsedFor jumping_out_of_window suicide) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "jumping rope is used for exercise", "pln": ["(: cnet_usedfor_0195bd5ed1 (UsedFor jumping_rope exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "jumping rope is used for fun", "pln": ["(: cnet_usedfor_b1b7f91051 (UsedFor jumping_rope fun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "jumping rope is used for having fun", "pln": ["(: cnet_usedfor_119b8f6a4c (UsedFor jumping_rope having_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "jumping rope is used for play", "pln": ["(: cnet_usedfor_9657bd9518 (UsedFor jumping_rope play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "jumping up and down is used for expressing joy", "pln": ["(: cnet_usedfor_909d3afc2c (UsedFor jumping_up_and_down expressing_joy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "jumping up and down is used for joy", "pln": ["(: cnet_usedfor_d453503763 (UsedFor jumping_up_and_down joy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "junky is used for heroin", "pln": ["(: cnet_usedfor_4335f7855a (UsedFor junky heroin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "keeping thing orderly and tidy is used for cleanliness", "pln": ["(: cnet_usedfor_b2c859668d (UsedFor keeping_thing_orderly_and_tidy cleanliness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "kettle is used for boil water", "pln": ["(: cnet_usedfor_52c823f75c (UsedFor kettle boil_water) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "kettle is used for heating water", "pln": ["(: cnet_usedfor_2f4bd2201c (UsedFor kettle heating_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "kettle is used for making tea", "pln": ["(: cnet_usedfor_2d8f0cd39f (UsedFor kettle making_tea) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "kettle is used for boil", "pln": ["(: cnet_usedfor_c5d9fdd0ef (UsedFor kettle boil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "kettle is used for hold", "pln": ["(: cnet_usedfor_fa3913fb41 (UsedFor kettle hold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "key is used for keeping secure", "pln": ["(: cnet_usedfor_96a3622050 (UsedFor key keeping_secure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "key is used for keeping thing secure", "pln": ["(: cnet_usedfor_8e7759cff9 (UsedFor key keeping_thing_secure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "key is used for locking", "pln": ["(: cnet_usedfor_5ca0b06a07 (UsedFor key locking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "key is used for locking door", "pln": ["(: cnet_usedfor_5f6ff7aaad (UsedFor key locking_door) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "key is used for open door", "pln": ["(: cnet_usedfor_e98422ee73 (UsedFor key open_door) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "key is used for open lock", "pln": ["(: cnet_usedfor_ff8d1fffef (UsedFor key open_lock) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "key is used for opening door", "pln": ["(: cnet_usedfor_f77b19947a (UsedFor key opening_door) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "key is used for opening lock", "pln": ["(: cnet_usedfor_3c89e9ea70 (UsedFor key opening_lock) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "key chain is used for keeping keys together", "pln": ["(: cnet_usedfor_833f2cf109 (UsedFor key_chain keeping_keys_together) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "key is used for opening thing", "pln": ["(: cnet_usedfor_b674944252 (UsedFor key opening_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "key is used for unlock lock", "pln": ["(: cnet_usedfor_382eebdeda (UsedFor key unlock_lock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "key is used for unlocking", "pln": ["(: cnet_usedfor_502f7018f2 (UsedFor key unlocking) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "key is used for close", "pln": ["(: cnet_usedfor_a3d3d31e0c (UsedFor key close) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "key is used for lock", "pln": ["(: cnet_usedfor_4a9daff25e (UsedFor key lock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "key is used for open", "pln": ["(: cnet_usedfor_63d7c38ce1 (UsedFor key open) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "key is used for unlock", "pln": ["(: cnet_usedfor_fdd41ccdac (UsedFor key unlock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "key case is used for hiding key", "pln": ["(: cnet_usedfor_cec221a6aa (UsedFor key_case hiding_key) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "key chain is used for hold key", "pln": ["(: cnet_usedfor_bbef79c18a (UsedFor key_chain hold_key) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "key chain is used for holding key", "pln": ["(: cnet_usedfor_233e58e3df (UsedFor key_chain holding_key) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "key chain is used for keep key together", "pln": ["(: cnet_usedfor_7a66ec4a58 (UsedFor key_chain keep_key_together) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "key chain is used for keeping key together", "pln": ["(: cnet_usedfor_b74e45f77e (UsedFor key_chain keeping_key_together) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "keyboard is used for coding", "pln": ["(: cnet_usedfor_0cbbf1c6e6 (UsedFor keyboard coding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "keyboard is used for communicating", "pln": ["(: cnet_usedfor_c3e98c0500 (UsedFor keyboard communicating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "keyboard is used for controlling computer", "pln": ["(: cnet_usedfor_e4ce0c6234 (UsedFor keyboard controlling_computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "keyboard is used for entering text", "pln": ["(: cnet_usedfor_b84382c45f (UsedFor keyboard entering_text) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "keyboard is used for playing music", "pln": ["(: cnet_usedfor_b94aa97235 (UsedFor keyboard playing_music) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "killing is used for hurting others", "pln": ["(: cnet_usedfor_bfa311dd7b (UsedFor killing hurting_others) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "keyboard is used for type letter", "pln": ["(: cnet_usedfor_3d46871be9 (UsedFor keyboard type_letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "keyboard is used for typing", "pln": ["(: cnet_usedfor_2e93106d48 (UsedFor keyboard typing) (STV 1.0 0.9786))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "keyboard is used for type", "pln": ["(: cnet_usedfor_65c799f17e (UsedFor keyboard type) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "killing is used for ending life", "pln": ["(: cnet_usedfor_573f9c53c4 (UsedFor killing ending_life) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "killing is used for hurting other", "pln": ["(: cnet_usedfor_dead6976d4 (UsedFor killing hurting_other) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "killing is used for murderer", "pln": ["(: cnet_usedfor_e75ac198a4 (UsedFor killing murderer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "killing is used for protecting loved one", "pln": ["(: cnet_usedfor_d93701a6dd (UsedFor killing protecting_loved_one) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "killing is used for revenge", "pln": ["(: cnet_usedfor_41b8c8455c (UsedFor killing revenge) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "killing is used for soldier in war", "pln": ["(: cnet_usedfor_1389a82dfe (UsedFor killing soldier_in_war) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "killing people is used for getting revenge", "pln": ["(: cnet_usedfor_9e64ba0010 (UsedFor killing_people getting_revenge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "killing people is used for murderer", "pln": ["(: cnet_usedfor_fd1d75dc91 (UsedFor killing_people murderer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "killing people is used for vengence", "pln": ["(: cnet_usedfor_cf39ee86b5 (UsedFor killing_people vengence) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "kindling is used for start fire", "pln": ["(: cnet_usedfor_0e565af1b7 (UsedFor kindling start_fire) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "king is used for leading country", "pln": ["(: cnet_usedfor_fd75fe3305 (UsedFor king leading_country) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "king is used for playing chess", "pln": ["(: cnet_usedfor_7091639940 (UsedFor king playing_chess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "king is used for rule country", "pln": ["(: cnet_usedfor_5ac28dbab1 (UsedFor king rule_country) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "king is used for ruling country", "pln": ["(: cnet_usedfor_ef3bdd2f91 (UsedFor king ruling_country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "kingdom is used for feudal society", "pln": ["(: cnet_usedfor_7c4e4e71c6 (UsedFor kingdom feudal_society) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "kingdom is used for government", "pln": ["(: cnet_usedfor_352efb7584 (UsedFor kingdom government) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "kissing is used for displaying affection", "pln": ["(: cnet_usedfor_da23b16177 (UsedFor kissing displaying_affection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "kissing is used for expressing desire", "pln": ["(: cnet_usedfor_399e96a1be (UsedFor kissing expressing_desire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "kissing is used for expressing love", "pln": ["(: cnet_usedfor_0ff4982535 (UsedFor kissing expressing_love) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "kissing is used for foreplay", "pln": ["(: cnet_usedfor_76e73971b2 (UsedFor kissing foreplay) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "kissing is used for fun", "pln": ["(: cnet_usedfor_c8c87ccc9b (UsedFor kissing fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "kissing is used for getting closer", "pln": ["(: cnet_usedfor_08edc321a3 (UsedFor kissing getting_closer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "kissing is used for love", "pln": ["(: cnet_usedfor_76e3951947 (UsedFor kissing love) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "kissing is used for saying goodbye", "pln": ["(: cnet_usedfor_ceff662c10 (UsedFor kissing saying_goodbye) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "kissing is used for saying hello", "pln": ["(: cnet_usedfor_973674d6b1 (UsedFor kissing saying_hello) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "kissing is used for sexual pleasure", "pln": ["(: cnet_usedfor_6102886749 (UsedFor kissing sexual_pleasure) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "kissing is used for showing affection", "pln": ["(: cnet_usedfor_59705370e2 (UsedFor kissing showing_affection) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "kitchen is used for cook", "pln": ["(: cnet_usedfor_c67c0da80b (UsedFor kitchen cook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "kitchen is used for cook food", "pln": ["(: cnet_usedfor_93e9bebef1 (UsedFor kitchen cook_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "kitchen is used for cooking food", "pln": ["(: cnet_usedfor_c0e6483227 (UsedFor kitchen cooking_food) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "kitchen is used for storing food", "pln": ["(: cnet_usedfor_ac1ca731d4 (UsedFor kitchen storing_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "kitchen table is used for eating", "pln": ["(: cnet_usedfor_8534029cc5 (UsedFor kitchen_table eating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "kitchen utensil is used for beating", "pln": ["(: cnet_usedfor_ee1f71a7b1 (UsedFor kitchen_utensil beating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "kitchen utensil is used for opening can", "pln": ["(: cnet_usedfor_933ec11e02 (UsedFor kitchen_utensil opening_can) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "kitchen utensil is used for peeling carrot", "pln": ["(: cnet_usedfor_97d346177e (UsedFor kitchen_utensil peeling_carrot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "kitchen utensil is used for prepare food", "pln": ["(: cnet_usedfor_b1391d25d4 (UsedFor kitchen_utensil prepare_food) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "kitchenette is used for cooking", "pln": ["(: cnet_usedfor_2e8c052ca5 (UsedFor kitchenette cooking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "kite is used for flying", "pln": ["(: cnet_usedfor_50ff5f8b96 (UsedFor kite flying) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "kite is used for fun", "pln": ["(: cnet_usedfor_05fef47b5c (UsedFor kite fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "knife is used for boning", "pln": ["(: cnet_usedfor_b4df951f24 (UsedFor knife boning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "knife is used for butter", "pln": ["(: cnet_usedfor_24367a9783 (UsedFor knife butter) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "knife is used for carving wood", "pln": ["(: cnet_usedfor_8548d65276 (UsedFor knife carving_wood) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "knife is used for cut meat with", "pln": ["(: cnet_usedfor_92455b53db (UsedFor knife cut_meat_with) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "knife is used for cut string", "pln": ["(: cnet_usedfor_9bac3a9abe (UsedFor knife cut_string) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "knife is used for cutting", "pln": ["(: cnet_usedfor_b4832f37e3 (UsedFor knife cutting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "knives is used for cut flesh", "pln": ["(: cnet_usedfor_f4bd898024 (UsedFor knives cut_flesh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "knife is used for cutting food", "pln": ["(: cnet_usedfor_52245071f1 (UsedFor knife cutting_food) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "knife is used for cutting steak", "pln": ["(: cnet_usedfor_e3ef5005b6 (UsedFor knife cutting_steak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "knife is used for killing", "pln": ["(: cnet_usedfor_72b2b69293 (UsedFor knife killing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "knife is used for pare apple", "pln": ["(: cnet_usedfor_a7f36f5ab2 (UsedFor knife pare_apple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "knife is used for scratching", "pln": ["(: cnet_usedfor_87fa183dfe (UsedFor knife scratching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "knife is used for slicing", "pln": ["(: cnet_usedfor_db1820e135 (UsedFor knife slicing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "knife is used for slicing bread", "pln": ["(: cnet_usedfor_af7a594c5e (UsedFor knife slicing_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "knife is used for stabbing", "pln": ["(: cnet_usedfor_3f28703572 (UsedFor knife stabbing) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "knife is used for cut", "pln": ["(: cnet_usedfor_aa215e329b (UsedFor knife cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "knife is used for stab", "pln": ["(: cnet_usedfor_e9727cc865 (UsedFor knife stab) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "knight is used for jousting", "pln": ["(: cnet_usedfor_d636c95e52 (UsedFor knight jousting) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "knitting is used for making clothe", "pln": ["(: cnet_usedfor_ded50af1e7 (UsedFor knitting making_clothe) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "knive is used for cut flesh", "pln": ["(: cnet_usedfor_ccb1d871be (UsedFor knive cut_flesh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "knive is used for cut vegetable", "pln": ["(: cnet_usedfor_47e8714d7c (UsedFor knive cut_vegetable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "knob is used for opening door", "pln": ["(: cnet_usedfor_0cd138450f (UsedFor knob opening_door) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "knot is used for fastener", "pln": ["(: cnet_usedfor_601db3d10f (UsedFor knot fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "knot is used for tie", "pln": ["(: cnet_usedfor_ce816026a4 (UsedFor knot tie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "kosher delicatessen is used for buy kosher food", "pln": ["(: cnet_usedfor_f729c112b5 (UsedFor kosher_delicatessen buy_kosher_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "kosher restaurant is used for eating at", "pln": ["(: cnet_usedfor_a784bdb2b5 (UsedFor kosher_restaurant eating_at) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "kosher restaurant is used for jewish people", "pln": ["(: cnet_usedfor_45dde92541 (UsedFor kosher_restaurant jewish_people) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "label maker is used for make label", "pln": ["(: cnet_usedfor_fe09221d7b (UsedFor label_maker make_label) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "labeler is used for making label", "pln": ["(: cnet_usedfor_9ae7703103 (UsedFor labeler making_label) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ladder is used for climbing wall", "pln": ["(: cnet_usedfor_ffba061c05 (UsedFor ladder climbing_wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ladder is used for painting ceiling", "pln": ["(: cnet_usedfor_c770edf65b (UsedFor ladder painting_ceiling) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lady is used for have sex", "pln": ["(: cnet_usedfor_782565f35c (UsedFor lady have_sex) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lake is used for boating on", "pln": ["(: cnet_usedfor_e0910eaac9 (UsedFor lake boating_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lake is used for fishing in", "pln": ["(: cnet_usedfor_ceef5c48bd (UsedFor lake fishing_in) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lake is used for sailing on", "pln": ["(: cnet_usedfor_49a63673fb (UsedFor lake sailing_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lake is used for water skiing", "pln": ["(: cnet_usedfor_4fe7ea3a44 (UsedFor lake water_skiing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "lamp is used for illuminating area", "pln": ["(: cnet_usedfor_549391efb9 (UsedFor lamp illuminating_area) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lamp is used for light", "pln": ["(: cnet_usedfor_6118240144 (UsedFor lamp light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "land is used for building on", "pln": ["(: cnet_usedfor_f2b3aab607 (UsedFor land building_on) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "land is used for farming", "pln": ["(: cnet_usedfor_e9c5e07ae9 (UsedFor land farming) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "landmass is used for building city", "pln": ["(: cnet_usedfor_4b591dc467 (UsedFor landmass building_city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "lane is used for bowling", "pln": ["(: cnet_usedfor_0d620d6d29 (UsedFor lane bowling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lane is used for driving", "pln": ["(: cnet_usedfor_7a6a882a72 (UsedFor lane driving) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "language is used for communication", "pln": ["(: cnet_usedfor_4be0bce3f2 (UsedFor language communication) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lantern is used for illumination", "pln": ["(: cnet_usedfor_26541f3844 (UsedFor lantern illumination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lantern is used for light path", "pln": ["(: cnet_usedfor_a0f122563a (UsedFor lantern light_path) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "lantern is used for light up dark room", "pln": ["(: cnet_usedfor_664ae2db28 (UsedFor lantern light_up_dark_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "large city shopping mall is used for shopping", "pln": ["(: cnet_usedfor_0edf410085 (UsedFor large_city_shopping_mall shopping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "large container is used for holding lot of thing", "pln": ["(: cnet_usedfor_6443038785 (UsedFor large_container holding_lot_of_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "large container is used for holding thing", "pln": ["(: cnet_usedfor_1006528994 (UsedFor large_container holding_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "large container is used for store thing", "pln": ["(: cnet_usedfor_3d8b5e16c4 (UsedFor large_container store_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "large food store is used for buy grocery", "pln": ["(: cnet_usedfor_446cf74698 (UsedFor large_food_store buy_grocery) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "large food store is used for buying food in bulk", "pln": ["(: cnet_usedfor_d34bcac5dd (UsedFor large_food_store buying_food_in_bulk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "large food store is used for keeping food in", "pln": ["(: cnet_usedfor_7c27af98e7 (UsedFor large_food_store keeping_food_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "large food store is used for purchase bulk food item", "pln": ["(: cnet_usedfor_7b9d66144b (UsedFor large_food_store purchase_bulk_food_item) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "large food store is used for shopping grocery", "pln": ["(: cnet_usedfor_b4f0e63e5c (UsedFor large_food_store shopping_grocery) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "laser is used for eye surgery", "pln": ["(: cnet_usedfor_e9d72a7a87 (UsedFor laser eye_surgery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "laser is used for reading compact disc", "pln": ["(: cnet_usedfor_6be1d981ed (UsedFor laser reading_compact_disc) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "laser is used for cut", "pln": ["(: cnet_usedfor_0a6adf2f53 (UsedFor laser cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "laser is used for heat", "pln": ["(: cnet_usedfor_7ddb48a0f3 (UsedFor laser heat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "laser is used for light", "pln": ["(: cnet_usedfor_b7d789c246 (UsedFor laser light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "laser is used for operate on", "pln": ["(: cnet_usedfor_b4798ef7a1 (UsedFor laser operate_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "laughing at joke is used for being polite", "pln": ["(: cnet_usedfor_00dea74778 (UsedFor laughing_at_joke being_polite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "laughing at joke is used for having fun", "pln": ["(: cnet_usedfor_5d2799c245 (UsedFor laughing_at_joke having_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "launch platform is used for send rocket off into space", "pln": ["(: cnet_usedfor_86e85fa23e (UsedFor launch_platform send_rocket_off_into_space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "launching pad is used for rocket", "pln": ["(: cnet_usedfor_47dedbc95e (UsedFor launching_pad rocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "launching platform is used for launching", "pln": ["(: cnet_usedfor_d691b474bf (UsedFor launching_platform launching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "launching platform is used for launching space shuttle", "pln": ["(: cnet_usedfor_286b8594de (UsedFor launching_platform launching_space_shuttle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "laundry room is used for cleaning clothe", "pln": ["(: cnet_usedfor_a84af74140 (UsedFor laundry_room cleaning_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "laundry room is used for washing clothe", "pln": ["(: cnet_usedfor_6c2a91e5e5 (UsedFor laundry_room washing_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lawn mower is used for cutting grass", "pln": ["(: cnet_usedfor_2d47aa1bac (UsedFor lawn_mower cutting_grass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "leader is used for follower", "pln": ["(: cnet_usedfor_646270cb3d (UsedFor leader follower) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "leader is used for following", "pln": ["(: cnet_usedfor_ec9bd9524d (UsedFor leader following) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "leader is used for leading", "pln": ["(: cnet_usedfor_eb9b88f3bf (UsedFor leader leading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "leaf is used for photosynthesis", "pln": ["(: cnet_usedfor_2279b0f875 (UsedFor leaf photosynthesis) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "learning is used for acquiring knowledge", "pln": ["(: cnet_usedfor_251da8aec4 (UsedFor learning acquiring_knowledge) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "learning about science is used for acquiring knowledge", "pln": ["(: cnet_usedfor_6a9b2f3b5e (UsedFor learning_about_science acquiring_knowledge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "learning about science is used for nerd", "pln": ["(: cnet_usedfor_c915f0e186 (UsedFor learning_about_science nerd) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "learning about science is used for understanding universe", "pln": ["(: cnet_usedfor_1f2cbf47df (UsedFor learning_about_science understanding_universe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "lens is used for magnify", "pln": ["(: cnet_usedfor_9e8bfaf029 (UsedFor lens magnify) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "learning about subject is used for doing research", "pln": ["(: cnet_usedfor_0290d105fd (UsedFor learning_about_subject doing_research) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "learning about world is used for student", "pln": ["(: cnet_usedfor_6b930f9593 (UsedFor learning_about_world student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "leash is used for lead", "pln": ["(: cnet_usedfor_8b7ff9015e (UsedFor leash lead) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "leaving line is used for impatient people", "pln": ["(: cnet_usedfor_5481eb9336 (UsedFor leaving_line impatient_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lecture theatre is used for teaching", "pln": ["(: cnet_usedfor_d5008e6b56 (UsedFor lecture_theatre teaching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "leg is used for stand", "pln": ["(: cnet_usedfor_1f81c359d7 (UsedFor leg stand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "leg is used for hold", "pln": ["(: cnet_usedfor_2d4e2e67e7 (UsedFor leg hold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "legislature is used for making law", "pln": ["(: cnet_usedfor_5adb5e75e4 (UsedFor legislature making_law) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "leg is used for run", "pln": ["(: cnet_usedfor_0d18ff6669 (UsedFor leg run) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "len is used for magnify", "pln": ["(: cnet_usedfor_6e464f8db3 (UsedFor len magnify) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "len is used for magnify object", "pln": ["(: cnet_usedfor_b885ee953a (UsedFor len magnify_object) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "letter is used for communication", "pln": ["(: cnet_usedfor_81f6fb84c2 (UsedFor letter communication) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "letter is used for spelling word", "pln": ["(: cnet_usedfor_fd94dfbd86 (UsedFor letter spelling_word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "letter opener is used for opening envelope", "pln": ["(: cnet_usedfor_a4e3545c86 (UsedFor letter_opener opening_envelope) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "letter scale is used for weigh letter", "pln": ["(: cnet_usedfor_c8e16edd56 (UsedFor letter_scale weigh_letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "letter scale is used for weigh mail", "pln": ["(: cnet_usedfor_29bcc2c331 (UsedFor letter_scale weigh_mail) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "letter scale is used for weighing letter", "pln": ["(: cnet_usedfor_54ee82ac24 (UsedFor letter_scale weighing_letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "letter scale is used for weighing mail", "pln": ["(: cnet_usedfor_ade6eef2c5 (UsedFor letter_scale weighing_mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "library is used for borrowing book", "pln": ["(: cnet_usedfor_58882a6a82 (UsedFor library borrowing_book) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "library is used for do research", "pln": ["(: cnet_usedfor_0afc6da94b (UsedFor library do_research) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "library is used for finding book to read", "pln": ["(: cnet_usedfor_55ffedde9a (UsedFor library finding_book_to_read) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "library is used for reading", "pln": ["(: cnet_usedfor_9d50da5869 (UsedFor library reading) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "library is used for research", "pln": ["(: cnet_usedfor_78db45fd57 (UsedFor library research) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "library is used for storing book", "pln": ["(: cnet_usedfor_9070cac896 (UsedFor library storing_book) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "life is used for living", "pln": ["(: cnet_usedfor_176b595ead (UsedFor life living) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "light is used for reading", "pln": ["(: cnet_usedfor_2fa4dd2f09 (UsedFor light reading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "light is used for light", "pln": ["(: cnet_usedfor_85066e3608 (UsedFor light light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "light bulb is used for illumination", "pln": ["(: cnet_usedfor_2d7cffa37d (UsedFor light_bulb illumination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "light bulb is used for flash", "pln": ["(: cnet_usedfor_2252308d81 (UsedFor light_bulb flash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "light bulb is used for light", "pln": ["(: cnet_usedfor_ff97385f82 (UsedFor light_bulb light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "light source is used for seeing thing", "pln": ["(: cnet_usedfor_f7a35806c9 (UsedFor light_source seeing_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "light switch is used for turn off light", "pln": ["(: cnet_usedfor_b98721fbe3 (UsedFor light_switch turn_off_light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "light switch is used for turn on light", "pln": ["(: cnet_usedfor_57e897260d (UsedFor light_switch turn_on_light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "lighter is used for lighting cigarettes", "pln": ["(: cnet_usedfor_30121fb81b (UsedFor lighter lighting_cigarettes) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lighter is used for lighting cigarette", "pln": ["(: cnet_usedfor_a0864a1395 (UsedFor lighter lighting_cigarette) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lighter is used for start fire", "pln": ["(: cnet_usedfor_9262eb62bf (UsedFor lighter start_fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lighter is used for burning", "pln": ["(: cnet_usedfor_801fd4034a (UsedFor lighter burning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lighter is used for ignite", "pln": ["(: cnet_usedfor_a151ba5800 (UsedFor lighter ignite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lighting fire is used for cooking food", "pln": ["(: cnet_usedfor_46097b4cac (UsedFor lighting_fire cooking_food) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lighting fire is used for heating thing up", "pln": ["(: cnet_usedfor_bd98915736 (UsedFor lighting_fire heating_thing_up) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lighting fire is used for lighting darkness", "pln": ["(: cnet_usedfor_66d3c9d296 (UsedFor lighting_fire lighting_darkness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lighting fire is used for signaling for help", "pln": ["(: cnet_usedfor_3298a01835 (UsedFor lighting_fire signaling_for_help) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lighting match is used for creating flame", "pln": ["(: cnet_usedfor_95bdf924da (UsedFor lighting_match creating_flame) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "lighting match is used for creating light", "pln": ["(: cnet_usedfor_cdabadee29 (UsedFor lighting_match creating_light) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lighting match is used for lighting candle", "pln": ["(: cnet_usedfor_fc46d7da17 (UsedFor lighting_match lighting_candle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lighting match is used for making fire", "pln": ["(: cnet_usedfor_f8d604a649 (UsedFor lighting_match making_fire) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "lighting match is used for starting fire", "pln": ["(: cnet_usedfor_8d5300029b (UsedFor lighting_match starting_fire) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "linen chest is used for store sheets", "pln": ["(: cnet_usedfor_bcb0f02a28 (UsedFor linen_chest store_sheets) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "light is used for illuminate", "pln": ["(: cnet_usedfor_d6443addb6 (UsedFor light illuminate) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "line is used for connect two dot", "pln": ["(: cnet_usedfor_0f0c99d6c3 (UsedFor line connect_two_dot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "line is used for geometry", "pln": ["(: cnet_usedfor_710599dc3e (UsedFor line geometry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "line is used for make drawing", "pln": ["(: cnet_usedfor_358a98c204 (UsedFor line make_drawing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "linen chest is used for store sheet", "pln": ["(: cnet_usedfor_7fbf9542e9 (UsedFor linen_chest store_sheet) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "linen closet is used for keeping sheet", "pln": ["(: cnet_usedfor_b897d74fd8 (UsedFor linen_closet keeping_sheet) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "linen closet is used for keeping towel", "pln": ["(: cnet_usedfor_160a69eb47 (UsedFor linen_closet keeping_towel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "linen closet is used for storage", "pln": ["(: cnet_usedfor_bb17360362 (UsedFor linen_closet storage) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "linen closet is used for store sheet and towel", "pln": ["(: cnet_usedfor_fc341cbda6 (UsedFor linen_closet store_sheet_and_towel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "linen closet is used for storing bath towel", "pln": ["(: cnet_usedfor_83dc32b36b (UsedFor linen_closet storing_bath_towel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "linen closet is used for storing hand towel", "pln": ["(: cnet_usedfor_6178e3071e (UsedFor linen_closet storing_hand_towel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "linen closet is used for storing linen", "pln": ["(: cnet_usedfor_590fb14dc8 (UsedFor linen_closet storing_linen) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "linen closet is used for storing towel", "pln": ["(: cnet_usedfor_bd02ea3c56 (UsedFor linen_closet storing_towel) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "link is used for connect", "pln": ["(: cnet_usedfor_7bf2cf000f (UsedFor link connect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "link is used for connection", "pln": ["(: cnet_usedfor_bdecd4a17c (UsedFor link connection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "link is used for join", "pln": ["(: cnet_usedfor_9c0c9042c2 (UsedFor link join) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "linoleum is used for cover floor", "pln": ["(: cnet_usedfor_d1930728b5 (UsedFor linoleum cover_floor) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "lips is used for speak", "pln": ["(: cnet_usedfor_6508361b2d (UsedFor lips speak) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "linoleum is used for flooring", "pln": ["(: cnet_usedfor_83b318d02a (UsedFor linoleum flooring) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lip is used for expressing feeling", "pln": ["(: cnet_usedfor_c6f1fe7eed (UsedFor lip expressing_feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lip is used for speak", "pln": ["(: cnet_usedfor_5e6a3c0a87 (UsedFor lip speak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lip is used for suck", "pln": ["(: cnet_usedfor_481ba7c2ce (UsedFor lip suck) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lip is used for whistling", "pln": ["(: cnet_usedfor_cfcfc7efd3 (UsedFor lip whistling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lip is used for communicate", "pln": ["(: cnet_usedfor_893ddd7673 (UsedFor lip communicate) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lip is used for licking", "pln": ["(: cnet_usedfor_710ed2ebaa (UsedFor lip licking) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lip is used for lip for kissing", "pln": ["(: cnet_usedfor_f61ad66dea (UsedFor lip lip_for_kissing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "liquid oxygen and liquid hydrogen is used for power rocket", "pln": ["(: cnet_usedfor_6cc26c1f63 (UsedFor liquid_oxygen_and_liquid_hydrogen power_rocket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "liquor glass is used for holding liquid", "pln": ["(: cnet_usedfor_a2b1fc804a (UsedFor liquor_glass holding_liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lisp is used for ai", "pln": ["(: cnet_usedfor_7ce85009ab (UsedFor lisp ai) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "listening is used for enjoying music", "pln": ["(: cnet_usedfor_6fa0ee21e0 (UsedFor listening enjoying_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "listening is used for hearing thing", "pln": ["(: cnet_usedfor_8459bb1e3d (UsedFor listening hearing_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "listening is used for learning", "pln": ["(: cnet_usedfor_a44f05e469 (UsedFor listening learning) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "listening music is used for relaxing", "pln": ["(: cnet_usedfor_1ea79fca14 (UsedFor listening_music relaxing) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "listening to music is used for dancing", "pln": ["(: cnet_usedfor_a99a8906b7 (UsedFor listening_to_music dancing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "listening to music is used for entertainment", "pln": ["(: cnet_usedfor_dc7b14af6c (UsedFor listening_to_music entertainment) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "listening to music is used for partying", "pln": ["(: cnet_usedfor_f83fe9ad38 (UsedFor listening_to_music partying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "listening to music is used for relaxing", "pln": ["(: cnet_usedfor_728318c473 (UsedFor listening_to_music relaxing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "listening to music is used for setting mood", "pln": ["(: cnet_usedfor_706d0a707b (UsedFor listening_to_music setting_mood) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "listening to radio is used for entertainment", "pln": ["(: cnet_usedfor_ba664f8fc8 (UsedFor listening_to_radio entertainment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "listening to radio is used for information", "pln": ["(: cnet_usedfor_768358285c (UsedFor listening_to_radio information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "listening to radio is used for passing time", "pln": ["(: cnet_usedfor_79ca7f5759 (UsedFor listening_to_radio passing_time) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "listening to radio is used for relaxation", "pln": ["(: cnet_usedfor_68b7f4a058 (UsedFor listening_to_radio relaxation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "literature is used for illustrate", "pln": ["(: cnet_usedfor_4e1b2262e5 (UsedFor literature illustrate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "literature is used for learning", "pln": ["(: cnet_usedfor_beae5b4958 (UsedFor literature learning) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "literature is used for professor", "pln": ["(: cnet_usedfor_ba2f4f2ad0 (UsedFor literature professor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "literature is used for read", "pln": ["(: cnet_usedfor_91810b2d9a (UsedFor literature read) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "literature is used for reading", "pln": ["(: cnet_usedfor_278f1c7a99 (UsedFor literature reading) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "literature is used for student", "pln": ["(: cnet_usedfor_de99e59141 (UsedFor literature student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "living is used for enjoying life", "pln": ["(: cnet_usedfor_cf18d8dcd1 (UsedFor living enjoying_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "living is used for enjoyment", "pln": ["(: cnet_usedfor_611e4f472e (UsedFor living enjoyment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "living is used for having fun", "pln": ["(: cnet_usedfor_18e7ced1f8 (UsedFor living having_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "living room is used for watching tv", "pln": ["(: cnet_usedfor_f189583415 (UsedFor living_room watching_tv) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lobby is used for have drink", "pln": ["(: cnet_usedfor_97064314f9 (UsedFor lobby have_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lock is used for privacy", "pln": ["(: cnet_usedfor_b4a39292df (UsedFor lock privacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lock is used for protecting", "pln": ["(: cnet_usedfor_dfb5633e01 (UsedFor lock protecting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lock is used for protecting valuable", "pln": ["(: cnet_usedfor_d99ba7c737 (UsedFor lock protecting_valuable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lock is used for securing door", "pln": ["(: cnet_usedfor_c6aa75114d (UsedFor lock securing_door) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lock is used for securing valuable", "pln": ["(: cnet_usedfor_5ec709f449 (UsedFor lock securing_valuable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lock is used for close", "pln": ["(: cnet_usedfor_d4d755ad86 (UsedFor lock close) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lock is used for fasten", "pln": ["(: cnet_usedfor_b92222cff3 (UsedFor lock fasten) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lock is used for lock", "pln": ["(: cnet_usedfor_e0454a971d (UsedFor lock lock) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "lock is used for protection", "pln": ["(: cnet_usedfor_18040a74bd (UsedFor lock protection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "locker room is used for change clothe", "pln": ["(: cnet_usedfor_5534b300c4 (UsedFor locker_room change_clothe) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "locker room is used for changing clothe", "pln": ["(: cnet_usedfor_49e0db6d25 (UsedFor locker_room changing_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "locker room is used for shower", "pln": ["(: cnet_usedfor_6969711483 (UsedFor locker_room shower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "locomotive is used for motion", "pln": ["(: cnet_usedfor_7db6634276 (UsedFor locomotive motion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "locomotive is used for power", "pln": ["(: cnet_usedfor_71ed0f24dd (UsedFor locomotive power) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "locomotive is used for work", "pln": ["(: cnet_usedfor_528210963e (UsedFor locomotive work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "loft is used for sleeping", "pln": ["(: cnet_usedfor_d95d598f64 (UsedFor loft sleeping) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "logic is used for reasoning", "pln": ["(: cnet_usedfor_926661c742 (UsedFor logic reasoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "looking better is used for getting job", "pln": ["(: cnet_usedfor_c846ad2908 (UsedFor looking_better getting_job) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "looking glass is used for reflect", "pln": ["(: cnet_usedfor_d1457fd5d4 (UsedFor looking_glass reflect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "looking glass is used for reflection", "pln": ["(: cnet_usedfor_95b4eb7528 (UsedFor looking_glass reflection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "looking glass is used for spectator", "pln": ["(: cnet_usedfor_7cb5935fda (UsedFor looking_glass spectator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "looking through telescope is used for astronomer", "pln": ["(: cnet_usedfor_5c15cc4809 (UsedFor looking_through_telescope astronomer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "looking through telescope is used for looking at star", "pln": ["(: cnet_usedfor_37714f7af8 (UsedFor looking_through_telescope looking_at_star) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "loom is used for weave cloth", "pln": ["(: cnet_usedfor_490a537c0a (UsedFor loom weave_cloth) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "losing consciousness is used for passing out", "pln": ["(: cnet_usedfor_69f4c1d419 (UsedFor losing_consciousness passing_out) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "losing consciousness is used for surgery", "pln": ["(: cnet_usedfor_38c5c3d5fd (UsedFor losing_consciousness surgery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "love seat is used for sitting on", "pln": ["(: cnet_usedfor_0a2c8e56d2 (UsedFor love_seat sitting_on) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "love seat is used for snuggling", "pln": ["(: cnet_usedfor_f2894e34ec (UsedFor love_seat snuggling) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lubrication is used for reducing friction", "pln": ["(: cnet_usedfor_6c744dd1d6 (UsedFor lubrication reducing_friction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "luggage is used for pack clothing", "pln": ["(: cnet_usedfor_4c08ffa75e (UsedFor luggage pack_clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "luggage carrier is used for carry luggage", "pln": ["(: cnet_usedfor_b3d13f338c (UsedFor luggage_carrier carry_luggage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "luggage carrier is used for carrying luggage", "pln": ["(: cnet_usedfor_87b17e0548 (UsedFor luggage_carrier carrying_luggage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "luggage trolley is used for carrying luggage", "pln": ["(: cnet_usedfor_c30c2aa67d (UsedFor luggage_trolley carrying_luggage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "lying is used for cowards", "pln": ["(: cnet_usedfor_95c84777b2 (UsedFor lying cowards) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "mac is used for make graphics", "pln": ["(: cnet_usedfor_1eebce8692 (UsedFor mac make_graphics) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "luggage trolley is used for move suitcas", "pln": ["(: cnet_usedfor_214c4ce16a (UsedFor luggage_trolley move_suitcas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lying is used for cheating", "pln": ["(: cnet_usedfor_66ac926064 (UsedFor lying cheating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lying is used for coward", "pln": ["(: cnet_usedfor_8754a0e160 (UsedFor lying coward) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lying is used for deceit", "pln": ["(: cnet_usedfor_c243e736ee (UsedFor lying deceit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lying is used for deceiving", "pln": ["(: cnet_usedfor_1e09cfd469 (UsedFor lying deceiving) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lying is used for deception", "pln": ["(: cnet_usedfor_340f7cff41 (UsedFor lying deception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lying is used for hiding truth", "pln": ["(: cnet_usedfor_1f7359ca4d (UsedFor lying hiding_truth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "lying is used for manipulating", "pln": ["(: cnet_usedfor_38ee3c6467 (UsedFor lying manipulating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mac is used for make graphic", "pln": ["(: cnet_usedfor_3bf924d608 (UsedFor mac make_graphic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for answer phone", "pln": ["(: cnet_usedfor_936b55291b (UsedFor machine answer_phone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for apply coating", "pln": ["(: cnet_usedfor_6122eb8473 (UsedFor machine apply_coating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for bake bread", "pln": ["(: cnet_usedfor_8bc2935772 (UsedFor machine bake_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for bake good", "pln": ["(: cnet_usedfor_23b8362da6 (UsedFor machine bake_good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for beat egg", "pln": ["(: cnet_usedfor_46b7026bfd (UsedFor machine beat_egg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for bend metal", "pln": ["(: cnet_usedfor_1c1a89bfb3 (UsedFor machine bend_metal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for bind book", "pln": ["(: cnet_usedfor_b4c52d3886 (UsedFor machine bind_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for brush teeth", "pln": ["(: cnet_usedfor_20d8eaeb67 (UsedFor machine brush_teeth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "machine is used for build health in gym", "pln": ["(: cnet_usedfor_6bb54a68e9 (UsedFor machine build_health_in_gym) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for burn into leather", "pln": ["(: cnet_usedfor_a981fbe28e (UsedFor machine burn_into_leather) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for burn trash", "pln": ["(: cnet_usedfor_34ce0c0129 (UsedFor machine burn_trash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for burn wood", "pln": ["(: cnet_usedfor_ff433848b9 (UsedFor machine burn_wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for calculate", "pln": ["(: cnet_usedfor_deb89348bc (UsedFor machine calculate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for circulate water", "pln": ["(: cnet_usedfor_a0e0bb8ab8 (UsedFor machine circulate_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for clean sonically", "pln": ["(: cnet_usedfor_605aeb5f1c (UsedFor machine clean_sonically) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for clip sheep", "pln": ["(: cnet_usedfor_5c1bc3fd88 (UsedFor machine clip_sheep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for combine", "pln": ["(: cnet_usedfor_1e03443d9b (UsedFor machine combine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for cook", "pln": ["(: cnet_usedfor_48a438b049 (UsedFor machine cook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for count coin", "pln": ["(: cnet_usedfor_5c0d425fd0 (UsedFor machine count_coin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for count money", "pln": ["(: cnet_usedfor_5a0f25ea28 (UsedFor machine count_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for create electricity", "pln": ["(: cnet_usedfor_0c2479237d (UsedFor machine create_electricity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for create part", "pln": ["(: cnet_usedfor_516000c48c (UsedFor machine create_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for cremate", "pln": ["(: cnet_usedfor_2e2a047117 (UsedFor machine cremate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for crosscut wood", "pln": ["(: cnet_usedfor_581fa681d8 (UsedFor machine crosscut_wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for crush ice", "pln": ["(: cnet_usedfor_3ca83216b0 (UsedFor machine crush_ice) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for cut paper", "pln": ["(: cnet_usedfor_e229641a59 (UsedFor machine cut_paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for deliver insecticide", "pln": ["(: cnet_usedfor_53eb27fde7 (UsedFor machine deliver_insecticide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for deliver luggage", "pln": ["(: cnet_usedfor_fef60dd9ed (UsedFor machine deliver_luggage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for develop strength", "pln": ["(: cnet_usedfor_036c672d2e (UsedFor machine develop_strength) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for dig", "pln": ["(: cnet_usedfor_1d4ce1b3ec (UsedFor machine dig) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for dispense candy", "pln": ["(: cnet_usedfor_0d20df04ef (UsedFor machine dispense_candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for dispense cigarette", "pln": ["(: cnet_usedfor_f1fa686f67 (UsedFor machine dispense_cigarette) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for dispense gum", "pln": ["(: cnet_usedfor_9de29ba1bc (UsedFor machine dispense_gum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for dispense popcorn", "pln": ["(: cnet_usedfor_6ca0dfd306 (UsedFor machine dispense_popcorn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for dispense snack", "pln": ["(: cnet_usedfor_714cec3385 (UsedFor machine dispense_snack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for dispense water", "pln": ["(: cnet_usedfor_7360d68e7f (UsedFor machine dispense_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for drain swamp", "pln": ["(: cnet_usedfor_f0ab80ab76 (UsedFor machine drain_swamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for drill hole", "pln": ["(: cnet_usedfor_0fca5de5a6 (UsedFor machine drill_hole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for drill teeth", "pln": ["(: cnet_usedfor_acd7cf1cb9 (UsedFor machine drill_teeth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for drive nail", "pln": ["(: cnet_usedfor_c3f9243d4b (UsedFor machine drive_nail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for dry clothe", "pln": ["(: cnet_usedfor_c510ae6819 (UsedFor machine dry_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for dump", "pln": ["(: cnet_usedfor_2e4d576a72 (UsedFor machine dump) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for enlarge print", "pln": ["(: cnet_usedfor_107c39071c (UsedFor machine enlarge_print) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for entertain", "pln": ["(: cnet_usedfor_44c36d5c24 (UsedFor machine entertain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for exercise muscle", "pln": ["(: cnet_usedfor_939494f41c (UsedFor machine exercise_muscle) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for fan air", "pln": ["(: cnet_usedfor_c57066c43e (UsedFor machine fan_air) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for fill order", "pln": ["(: cnet_usedfor_cc8183f9b7 (UsedFor machine fill_order) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for filter", "pln": ["(: cnet_usedfor_748be4f37a (UsedFor machine filter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "machine is used for fly", "pln": ["(: cnet_usedfor_23ec46d91e (UsedFor machine fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for fry", "pln": ["(: cnet_usedfor_f67669e36a (UsedFor machine fry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for fry donut", "pln": ["(: cnet_usedfor_f5fa0f8974 (UsedFor machine fry_donut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for generate electricity", "pln": ["(: cnet_usedfor_1a78783c43 (UsedFor machine generate_electricity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for glaze", "pln": ["(: cnet_usedfor_06ed4821dd (UsedFor machine glaze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for grasp part", "pln": ["(: cnet_usedfor_c0a029a21f (UsedFor machine grasp_part) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "machine is used for grind garbage", "pln": ["(: cnet_usedfor_197342a403 (UsedFor machine grind_garbage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for grind grain", "pln": ["(: cnet_usedfor_ee45bafca4 (UsedFor machine grind_grain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for harvest", "pln": ["(: cnet_usedfor_494e061ddf (UsedFor machine harvest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for heat tar", "pln": ["(: cnet_usedfor_fa0b60c687 (UsedFor machine heat_tar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "machine is used for incinerate", "pln": ["(: cnet_usedfor_911a553d53 (UsedFor machine incinerate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for iron clothe", "pln": ["(: cnet_usedfor_1a8c27e81f (UsedFor machine iron_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for kill", "pln": ["(: cnet_usedfor_68a248b0b9 (UsedFor machine kill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for lay railroad track", "pln": ["(: cnet_usedfor_c4a93d64b7 (UsedFor machine lay_railroad_track) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for lift", "pln": ["(: cnet_usedfor_34f4c3d440 (UsedFor machine lift) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for lift car", "pln": ["(: cnet_usedfor_4a135bd375 (UsedFor machine lift_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for lift skiier", "pln": ["(: cnet_usedfor_4784f0d0e5 (UsedFor machine lift_skiier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for load ship", "pln": ["(: cnet_usedfor_4a5cd67c11 (UsedFor machine load_ship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for lubricate", "pln": ["(: cnet_usedfor_311f004b0e (UsedFor machine lubricate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for make artificial snow", "pln": ["(: cnet_usedfor_9bd001501c (UsedFor machine make_artificial_snow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for make bread", "pln": ["(: cnet_usedfor_887db55c58 (UsedFor machine make_bread) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for make copy", "pln": ["(: cnet_usedfor_965da6b671 (UsedFor machine make_copy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for make cotton candy", "pln": ["(: cnet_usedfor_d2519d1036 (UsedFor machine make_cotton_candy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for make juice drink", "pln": ["(: cnet_usedfor_e151bf0c0d (UsedFor machine make_juice_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "machine is used for make popcorn", "pln": ["(: cnet_usedfor_2b17816870 (UsedFor machine make_popcorn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "machine is used for manufacture", "pln": ["(: cnet_usedfor_e8cc8496ff (UsedFor machine manufacture) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for measure", "pln": ["(: cnet_usedfor_71ce63314a (UsedFor machine measure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for mechanized process", "pln": ["(: cnet_usedfor_5be86c6873 (UsedFor machine mechanized_process) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for mix concrete", "pln": ["(: cnet_usedfor_05c7a2a259 (UsedFor machine mix_concrete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for mold", "pln": ["(: cnet_usedfor_703eabd395 (UsedFor machine mold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for move vehicle", "pln": ["(: cnet_usedfor_6d4827cf02 (UsedFor machine move_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for pack carton", "pln": ["(: cnet_usedfor_71b9ecfa43 (UsedFor machine pack_carton) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for paint car", "pln": ["(: cnet_usedfor_8be6f4c851 (UsedFor machine paint_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for paint house", "pln": ["(: cnet_usedfor_f0737ac423 (UsedFor machine paint_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for phone", "pln": ["(: cnet_usedfor_862b212224 (UsedFor machine phone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for play checker", "pln": ["(: cnet_usedfor_667b4f3e64 (UsedFor machine play_checker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for play chess", "pln": ["(: cnet_usedfor_69a803b6cc (UsedFor machine play_chess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for play tape", "pln": ["(: cnet_usedfor_7a0284f65d (UsedFor machine play_tape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for plow", "pln": ["(: cnet_usedfor_421128262d (UsedFor machine plow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for pop popcorn", "pln": ["(: cnet_usedfor_4265f68eb5 (UsedFor machine pop_popcorn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for pour grain", "pln": ["(: cnet_usedfor_ce80889c37 (UsedFor machine pour_grain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for power boat", "pln": ["(: cnet_usedfor_1395eceab9 (UsedFor machine power_boat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for power car", "pln": ["(: cnet_usedfor_d6230beb79 (UsedFor machine power_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for power plane", "pln": ["(: cnet_usedfor_c371538ec5 (UsedFor machine power_plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for power train", "pln": ["(: cnet_usedfor_035217bdcd (UsedFor machine power_train) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for press clothe", "pln": ["(: cnet_usedfor_03c628692e (UsedFor machine press_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "machine is used for print", "pln": ["(: cnet_usedfor_2a46c7a62b (UsedFor machine print) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "machine is used for wash clothes", "pln": ["(: cnet_usedfor_144f4ecb3a (UsedFor machine wash_clothes) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for pump gas", "pln": ["(: cnet_usedfor_7fa9e842a9 (UsedFor machine pump_gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for pump oil", "pln": ["(: cnet_usedfor_475680de98 (UsedFor machine pump_oil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for pump water", "pln": ["(: cnet_usedfor_7547caf753 (UsedFor machine pump_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for record message", "pln": ["(: cnet_usedfor_9ebb63948c (UsedFor machine record_message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for refrigerate", "pln": ["(: cnet_usedfor_c7553ccf0f (UsedFor machine refrigerate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for repair car body", "pln": ["(: cnet_usedfor_43cb3e4956 (UsedFor machine repair_car_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for rotate tire", "pln": ["(: cnet_usedfor_4b73220b18 (UsedFor machine rotate_tire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for scan body", "pln": ["(: cnet_usedfor_e62b1a0297 (UsedFor machine scan_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for scan product code", "pln": ["(: cnet_usedfor_18b2d65e38 (UsedFor machine scan_product_code) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for scrub floor", "pln": ["(: cnet_usedfor_7b41f22dc9 (UsedFor machine scrub_floor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for seal", "pln": ["(: cnet_usedfor_2853ab7437 (UsedFor machine seal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for see star", "pln": ["(: cnet_usedfor_bba63a69ff (UsedFor machine see_star) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for simulate airplane", "pln": ["(: cnet_usedfor_b3db31462d (UsedFor machine simulate_airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for simulate automobile", "pln": ["(: cnet_usedfor_eab63602de (UsedFor machine simulate_automobile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for simulate human thinking", "pln": ["(: cnet_usedfor_ca0ab12f50 (UsedFor machine simulate_human_thinking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for smooth ice", "pln": ["(: cnet_usedfor_9231624f2a (UsedFor machine smooth_ice) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for sprinkle lawn", "pln": ["(: cnet_usedfor_aebde88ec8 (UsedFor machine sprinkle_lawn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for survey", "pln": ["(: cnet_usedfor_9cfa0a99bb (UsedFor machine survey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for take picture", "pln": ["(: cnet_usedfor_21941a0aef (UsedFor machine take_picture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for take tire off rim", "pln": ["(: cnet_usedfor_5e1f4499a0 (UsedFor machine take_tire_off_rim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for televise", "pln": ["(: cnet_usedfor_12758d21bd (UsedFor machine televise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for test astronaut", "pln": ["(: cnet_usedfor_3656b36784 (UsedFor machine test_astronaut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for test blood", "pln": ["(: cnet_usedfor_4c9a835316 (UsedFor machine test_blood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for test body temperature", "pln": ["(: cnet_usedfor_8ccb9dd6e5 (UsedFor machine test_body_temperature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for test pilot", "pln": ["(: cnet_usedfor_1cdc4da36d (UsedFor machine test_pilot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for transport good", "pln": ["(: cnet_usedfor_e50234d99e (UsedFor machine transport_good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for vacuum", "pln": ["(: cnet_usedfor_e3d3e43b11 (UsedFor machine vacuum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for vend newspaper", "pln": ["(: cnet_usedfor_fc3b631fea (UsedFor machine vend_newspaper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for vend product", "pln": ["(: cnet_usedfor_2fd0a290ff (UsedFor machine vend_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for verify check", "pln": ["(: cnet_usedfor_8fabf529ad (UsedFor machine verify_check) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for wash car", "pln": ["(: cnet_usedfor_240c36d90c (UsedFor machine wash_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for wash carpet", "pln": ["(: cnet_usedfor_39cd6187ed (UsedFor machine wash_carpet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for wash clothe", "pln": ["(: cnet_usedfor_4d4bb51072 (UsedFor machine wash_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for wash dirty clothe", "pln": ["(: cnet_usedfor_7cd2f96ab5 (UsedFor machine wash_dirty_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for water field", "pln": ["(: cnet_usedfor_d3a2548401 (UsedFor machine water_field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for water flower", "pln": ["(: cnet_usedfor_92c663cacb (UsedFor machine water_flower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "machine is used for wax floor", "pln": ["(: cnet_usedfor_8de992008f (UsedFor machine wax_floor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "mailbox is used for receiving letters", "pln": ["(: cnet_usedfor_c531fb8c8b (UsedFor mailbox receiving_letters) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "mailbox is used for sending packages", "pln": ["(: cnet_usedfor_90175be154 (UsedFor mailbox sending_packages) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for weave cloth", "pln": ["(: cnet_usedfor_f2fff2375f (UsedFor machine weave_cloth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for work", "pln": ["(: cnet_usedfor_5fe3ae2640 (UsedFor machine work) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for write", "pln": ["(: cnet_usedfor_688d1b1252 (UsedFor machine write) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for function", "pln": ["(: cnet_usedfor_4a551ece68 (UsedFor machine function) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for help", "pln": ["(: cnet_usedfor_81b0c18a59 (UsedFor machine help) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine is used for perform", "pln": ["(: cnet_usedfor_13e92a9dba (UsedFor machine perform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine gun is used for kill", "pln": ["(: cnet_usedfor_06ec245cca (UsedFor machine_gun kill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine gun is used for kill people", "pln": ["(: cnet_usedfor_d5cdca5ec4 (UsedFor machine_gun kill_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine gun is used for killing people", "pln": ["(: cnet_usedfor_477efa4f7c (UsedFor machine_gun killing_people) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine gun is used for rapidly firing bullet", "pln": ["(: cnet_usedfor_54805f7a33 (UsedFor machine_gun rapidly_firing_bullet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machine gun is used for shooting", "pln": ["(: cnet_usedfor_5e9254e562 (UsedFor machine_gun shooting) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machinery is used for function", "pln": ["(: cnet_usedfor_5dc6027418 (UsedFor machinery function) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machinery is used for help", "pln": ["(: cnet_usedfor_9ee3de835b (UsedFor machinery help) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machinery is used for perform", "pln": ["(: cnet_usedfor_75c0e50603 (UsedFor machinery perform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "machinery is used for work", "pln": ["(: cnet_usedfor_2cce5b5b2a (UsedFor machinery work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "magnifying glass is used for create fire", "pln": ["(: cnet_usedfor_9de7d47a06 (UsedFor magnifying_glass create_fire) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mailbox is used for get mail", "pln": ["(: cnet_usedfor_f7c8242c0d (UsedFor mailbox get_mail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mailbox is used for receiving letter", "pln": ["(: cnet_usedfor_21a17710b3 (UsedFor mailbox receiving_letter) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mailbox is used for receiving mail", "pln": ["(: cnet_usedfor_1cb96c1d67 (UsedFor mailbox receiving_mail) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mailbox is used for send letter", "pln": ["(: cnet_usedfor_697297d1cf (UsedFor mailbox send_letter) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mailbox is used for sending package", "pln": ["(: cnet_usedfor_30d0c5345b (UsedFor mailbox sending_package) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mailbox is used for storing mail", "pln": ["(: cnet_usedfor_56600ef6e0 (UsedFor mailbox storing_mail) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mailing letter is used for communicating with", "pln": ["(: cnet_usedfor_a2b7866aa3 (UsedFor mailing_letter communicating_with) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "mailing letter is used for getting to recipient", "pln": ["(: cnet_usedfor_5c09fea2d1 (UsedFor mailing_letter getting_to_recipient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mailing letter is used for paying bill", "pln": ["(: cnet_usedfor_d1e604e9e0 (UsedFor mailing_letter paying_bill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mailing letter is used for sending information", "pln": ["(: cnet_usedfor_b36b41c7a3 (UsedFor mailing_letter sending_information) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "main entrance is used for enter building", "pln": ["(: cnet_usedfor_aea3cd5f08 (UsedFor main_entrance enter_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "main entrance is used for entering building", "pln": ["(: cnet_usedfor_6e15755a9a (UsedFor main_entrance entering_building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "maintaining muscle strength is used for health", "pln": ["(: cnet_usedfor_81411512ab (UsedFor maintaining_muscle_strength health) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "maintaining muscle strength is used for keeping fit", "pln": ["(: cnet_usedfor_da05b8cbde (UsedFor maintaining_muscle_strength keeping_fit) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "maintaining muscle strength is used for keeping healthy", "pln": ["(: cnet_usedfor_a8fa22716b (UsedFor maintaining_muscle_strength keeping_healthy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "maintaining muscle strength is used for maintaining health", "pln": ["(: cnet_usedfor_65a1a3b8a6 (UsedFor maintaining_muscle_strength maintaining_health) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "makeup is used for concealing cosmetic flaw", "pln": ["(: cnet_usedfor_f035c758fe (UsedFor makeup concealing_cosmetic_flaw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "makeup is used for beautify", "pln": ["(: cnet_usedfor_3c85bb5a34 (UsedFor makeup beautify) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "makeup is used for change", "pln": ["(: cnet_usedfor_27c206d061 (UsedFor makeup change) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "makeup is used for cover", "pln": ["(: cnet_usedfor_77098ad177 (UsedFor makeup cover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "makeup is used for enhance", "pln": ["(: cnet_usedfor_671e0a752f (UsedFor makeup enhance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "makeup is used for wearer", "pln": ["(: cnet_usedfor_f378a49fcf (UsedFor makeup wearer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "making better world is used for children", "pln": ["(: cnet_usedfor_5f73fd4518 (UsedFor making_better_world children) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "making better world is used for making people happier", "pln": ["(: cnet_usedfor_b6bec556d2 (UsedFor making_better_world making_people_happier) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "making bread is used for dinner", "pln": ["(: cnet_usedfor_323b84f270 (UsedFor making_bread dinner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "making bread is used for eating", "pln": ["(: cnet_usedfor_7e70636ca8 (UsedFor making_bread eating) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "making bread is used for making sandwiche", "pln": ["(: cnet_usedfor_8ba4e43adc (UsedFor making_bread making_sandwiche) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "making friend is used for having to converse with", "pln": ["(: cnet_usedfor_8a2024cb1c (UsedFor making_friend having_to_converse_with) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "making friend is used for mental health", "pln": ["(: cnet_usedfor_90ac126d9b (UsedFor making_friend mental_health) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "making friend is used for not being alone", "pln": ["(: cnet_usedfor_0da82179f6 (UsedFor making_friend not_being_alone) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "making grow is used for plant", "pln": ["(: cnet_usedfor_1a60e56473 (UsedFor making_grow plant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "making patchwork quilt is used for creating", "pln": ["(: cnet_usedfor_574613a02d (UsedFor making_patchwork_quilt creating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "making patchwork quilt is used for elderly", "pln": ["(: cnet_usedfor_124c27781e (UsedFor making_patchwork_quilt elderly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "making patchwork quilt is used for passing time", "pln": ["(: cnet_usedfor_ed9812b0b7 (UsedFor making_patchwork_quilt passing_time) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "making phone call is used for communicating with", "pln": ["(: cnet_usedfor_6aee7865e1 (UsedFor making_phone_call communicating_with) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "making phone call is used for making appointment", "pln": ["(: cnet_usedfor_c275a5a2a4 (UsedFor making_phone_call making_appointment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "making sure re healthy is used for living longer", "pln": ["(: cnet_usedfor_048fc5f8e3 (UsedFor making_sure_re_healthy living_longer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mall is used for hanging out at", "pln": ["(: cnet_usedfor_25455c5fdd (UsedFor mall hanging_out_at) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mall is used for meeting friend", "pln": ["(: cnet_usedfor_96364cb3cb (UsedFor mall meeting_friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mall is used for selling stuff", "pln": ["(: cnet_usedfor_52e14d6a53 (UsedFor mall selling_stuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mall is used for shopping", "pln": ["(: cnet_usedfor_65e03ded80 (UsedFor mall shopping) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mandolin is used for making music", "pln": ["(: cnet_usedfor_3910abe483 (UsedFor mandolin making_music) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mandolin is used for playing music", "pln": ["(: cnet_usedfor_3128bc6535 (UsedFor mandolin playing_music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mantra is used for meditate", "pln": ["(: cnet_usedfor_799ec869e0 (UsedFor mantra meditate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "manure is used for fertilising crop", "pln": ["(: cnet_usedfor_b8b652d61e (UsedFor manure fertilising_crop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "many part is used for make window", "pln": ["(: cnet_usedfor_ed0d188313 (UsedFor many_part make_window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "map is used for find address", "pln": ["(: cnet_usedfor_bbe4fffbda (UsedFor map find_address) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "map is used for finding address", "pln": ["(: cnet_usedfor_4fab7ac0c3 (UsedFor map finding_address) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "map is used for finding way", "pln": ["(: cnet_usedfor_35bfe10024 (UsedFor map finding_way) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "map is used for locating place", "pln": ["(: cnet_usedfor_fb8068ea7f (UsedFor map locating_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "map is used for orientating yourself", "pln": ["(: cnet_usedfor_f644810c43 (UsedFor map orientating_yourself) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "marble is used for playing marbles", "pln": ["(: cnet_usedfor_9ebfe02d38 (UsedFor marble playing_marbles) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "map is used for find place", "pln": ["(: cnet_usedfor_db58622bc3 (UsedFor map find_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "marble is used for game", "pln": ["(: cnet_usedfor_2e3664bcba (UsedFor marble game) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "marble is used for playing marble", "pln": ["(: cnet_usedfor_eacd8508db (UsedFor marble playing_marble) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "marble is used for roll", "pln": ["(: cnet_usedfor_699ddd99a6 (UsedFor marble roll) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "marble is used for shoot", "pln": ["(: cnet_usedfor_56028badb7 (UsedFor marble shoot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "marijuana is used for fun", "pln": ["(: cnet_usedfor_227a08001e (UsedFor marijuana fun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "marijuana is used for getting high", "pln": ["(: cnet_usedfor_08c1d2dd47 (UsedFor marijuana getting_high) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "marijuana is used for pleasure", "pln": ["(: cnet_usedfor_d86e884643 (UsedFor marijuana pleasure) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "marker is used for coloring", "pln": ["(: cnet_usedfor_f629b338e9 (UsedFor marker coloring) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "marker is used for write", "pln": ["(: cnet_usedfor_39495fb652 (UsedFor marker write) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mast is used for hold sail", "pln": ["(: cnet_usedfor_14f729a401 (UsedFor mast hold_sail) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mast is used for holding up sail", "pln": ["(: cnet_usedfor_6c0f4f9f36 (UsedFor mast holding_up_sail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mast is used for sailing", "pln": ["(: cnet_usedfor_35a0b08e2e (UsedFor mast sailing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mast is used for ship", "pln": ["(: cnet_usedfor_896ad3473b (UsedFor mast ship) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "master bedroom is used for making love", "pln": ["(: cnet_usedfor_279104ea19 (UsedFor master_bedroom making_love) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "master bedroom is used for privacy", "pln": ["(: cnet_usedfor_2e6f748fd5 (UsedFor master_bedroom privacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "master bedroom is used for sleep in", "pln": ["(: cnet_usedfor_196054e680 (UsedFor master_bedroom sleep_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "master bedroom is used for sleeping", "pln": ["(: cnet_usedfor_f3cb7e3268 (UsedFor master_bedroom sleeping) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "master bedroom is used for sleeping sex and relaxation", "pln": ["(: cnet_usedfor_177346d8a9 (UsedFor master_bedroom sleeping_sex_and_relaxation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "masturbation is used for providing yourself with sexual pleasure", "pln": ["(: cnet_usedfor_b45ac07b4b (UsedFor masturbation providing_yourself_with_sexual_pleasure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mat is used for wipe feet on", "pln": ["(: cnet_usedfor_ab9461fac9 (UsedFor mat wipe_feet_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mat is used for wrestle on", "pln": ["(: cnet_usedfor_95d74b3f8c (UsedFor mat wrestle_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "match is used for lighting fire", "pln": ["(: cnet_usedfor_927c7af835 (UsedFor match lighting_fire) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "match is used for starting fire", "pln": ["(: cnet_usedfor_eeab1f279f (UsedFor match starting_fire) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "match is used for fire", "pln": ["(: cnet_usedfor_1998f2a944 (UsedFor match fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "match is used for ignite", "pln": ["(: cnet_usedfor_ca5a616161 (UsedFor match ignite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "matche is used for light candle", "pln": ["(: cnet_usedfor_7abe68addf (UsedFor matche light_candle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "matche is used for light fire", "pln": ["(: cnet_usedfor_1830a456d5 (UsedFor matche light_fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "matche is used for start fire", "pln": ["(: cnet_usedfor_99d218e046 (UsedFor matche start_fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mathematic is used for model physical world", "pln": ["(: cnet_usedfor_e30d8d88de (UsedFor mathematic model_physical_world) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mayor is used for govern town", "pln": ["(: cnet_usedfor_af462957da (UsedFor mayor govern_town) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mayor is used for leadership", "pln": ["(: cnet_usedfor_cfbe502327 (UsedFor mayor leadership) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mayor is used for leading city", "pln": ["(: cnet_usedfor_7089b5c371 (UsedFor mayor leading_city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mayor is used for running town", "pln": ["(: cnet_usedfor_70f74e3b9b (UsedFor mayor running_town) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mead is used for getting drunk", "pln": ["(: cnet_usedfor_22fd7133a1 (UsedFor mead getting_drunk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mean is used for goal", "pln": ["(: cnet_usedfor_7d36729366 (UsedFor mean goal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mean is used for help", "pln": ["(: cnet_usedfor_a76d7de20a (UsedFor mean help) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "measuring cup is used for measure ingredient", "pln": ["(: cnet_usedfor_9014a208e4 (UsedFor measuring_cup measure_ingredient) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "measuring cup is used for measuring food", "pln": ["(: cnet_usedfor_6b9f4ace0e (UsedFor measuring_cup measuring_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "measuring stick is used for datum", "pln": ["(: cnet_usedfor_bbeb7cf7b0 (UsedFor measuring_stick datum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "measuring stick is used for measure", "pln": ["(: cnet_usedfor_b751dd52a8 (UsedFor measuring_stick measure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "measuring stick is used for measurement", "pln": ["(: cnet_usedfor_00a4f9eae6 (UsedFor measuring_stick measurement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "meat is used for eat", "pln": ["(: cnet_usedfor_ab7cf9f889 (UsedFor meat eat) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "meat is used for eating", "pln": ["(: cnet_usedfor_90e6fe188b (UsedFor meat eating) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "meat is used for meal", "pln": ["(: cnet_usedfor_9af8b94d17 (UsedFor meat meal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "meat is used for people to eat", "pln": ["(: cnet_usedfor_1f8b5961bd (UsedFor meat people_to_eat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mechanical pencil is used for writing", "pln": ["(: cnet_usedfor_531ac302e7 (UsedFor mechanical_pencil writing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mechanism is used for function", "pln": ["(: cnet_usedfor_8dc96fa1a3 (UsedFor mechanism function) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "mechanism is used for help", "pln": ["(: cnet_usedfor_97eb3cbdc7 (UsedFor mechanism help) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mechanism is used for perform", "pln": ["(: cnet_usedfor_5b5d84a4d3 (UsedFor mechanism perform) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mechanism is used for work", "pln": ["(: cnet_usedfor_f30cad4221 (UsedFor mechanism work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "medical exam is used for diagnosis", "pln": ["(: cnet_usedfor_92a2fb29f3 (UsedFor medical_exam diagnosis) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "meditation is used for relaxation", "pln": ["(: cnet_usedfor_eaa6c9bf5c (UsedFor meditation relaxation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "meeting friend is used for communication", "pln": ["(: cnet_usedfor_2f323df289 (UsedFor meeting_friend communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "meeting friend is used for reminiscing", "pln": ["(: cnet_usedfor_fba777514c (UsedFor meeting_friend reminiscing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "meeting girl is used for having sex", "pln": ["(: cnet_usedfor_e9df62365c (UsedFor meeting_girl having_sex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "meeting girl is used for love", "pln": ["(: cnet_usedfor_5532aa4da4 (UsedFor meeting_girl love) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "meeting people is used for making new friend", "pln": ["(: cnet_usedfor_cbe9af6e29 (UsedFor meeting_people making_new_friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "meeting people is used for socializing", "pln": ["(: cnet_usedfor_51a825b507 (UsedFor meeting_people socializing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "memo pad is used for taking note", "pln": ["(: cnet_usedfor_c64fd1514e (UsedFor memo_pad taking_note) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "memo pad is used for write down", "pln": ["(: cnet_usedfor_83e130d3d4 (UsedFor memo_pad write_down) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "memo pad is used for write on", "pln": ["(: cnet_usedfor_280bc09eb8 (UsedFor memo_pad write_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "memo pad is used for writing note", "pln": ["(: cnet_usedfor_08207e1b32 (UsedFor memo_pad writing_note) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "memorising is used for remembering", "pln": ["(: cnet_usedfor_d7a9227623 (UsedFor memorising remembering) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "memory is used for function", "pln": ["(: cnet_usedfor_30fbb71cbf (UsedFor memory function) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "menu is used for ordering food", "pln": ["(: cnet_usedfor_5e26b5a440 (UsedFor menu ordering_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "merchant is used for selling thing", "pln": ["(: cnet_usedfor_f816e02934 (UsedFor merchant selling_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "metal rod is used for conduct electricity", "pln": ["(: cnet_usedfor_69a2a00202 (UsedFor metal_rod conduct_electricity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "metal rod is used for conducting electricity", "pln": ["(: cnet_usedfor_e0c08318cb (UsedFor metal_rod conducting_electricity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "metronome is used for keep steady beat", "pln": ["(: cnet_usedfor_787da1c578 (UsedFor metronome keep_steady_beat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mexican restaurant is used for drink tequila", "pln": ["(: cnet_usedfor_fbc4c4d5e4 (UsedFor mexican_restaurant drink_tequila) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mexican restaurant is used for eat out", "pln": ["(: cnet_usedfor_a994320c28 (UsedFor mexican_restaurant eat_out) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mexican restaurant is used for eat taco", "pln": ["(: cnet_usedfor_d017f0b8d7 (UsedFor mexican_restaurant eat_taco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "microphone is used for amplification", "pln": ["(: cnet_usedfor_333bf2ca90 (UsedFor microphone amplification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "microphone is used for amplify", "pln": ["(: cnet_usedfor_374bdd6d8f (UsedFor microphone amplify) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "microphone boom is used for holding microphone", "pln": ["(: cnet_usedfor_b54ae0c9e8 (UsedFor microphone_boom holding_microphone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "microscope is used for observing small thing", "pln": ["(: cnet_usedfor_7406763fc9 (UsedFor microscope observing_small_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "milk is used for drinking", "pln": ["(: cnet_usedfor_17c5b558d7 (UsedFor milk drinking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mill is used for grinding", "pln": ["(: cnet_usedfor_ea4e5eb749 (UsedFor mill grinding) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mill is used for making paper", "pln": ["(: cnet_usedfor_04207635eb (UsedFor mill making_paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mill is used for shaping", "pln": ["(: cnet_usedfor_249646f67d (UsedFor mill shaping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mill is used for crunch", "pln": ["(: cnet_usedfor_5c9918937c (UsedFor mill crunch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mill is used for crush", "pln": ["(: cnet_usedfor_26f1b071e1 (UsedFor mill crush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mill is used for flour", "pln": ["(: cnet_usedfor_59a7e3a5e6 (UsedFor mill flour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mill is used for mill", "pln": ["(: cnet_usedfor_89f6f41891 (UsedFor mill mill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mind is used for thinking", "pln": ["(: cnet_usedfor_79bd14dfca (UsedFor mind thinking) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mine is used for blow thing up", "pln": ["(: cnet_usedfor_6d2e9da2e1 (UsedFor mine blow_thing_up) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mine is used for destruction", "pln": ["(: cnet_usedfor_ea75bfd641 (UsedFor mine destruction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mine is used for detonate", "pln": ["(: cnet_usedfor_11ee092d07 (UsedFor mine detonate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mine is used for explode", "pln": ["(: cnet_usedfor_be639d392f (UsedFor mine explode) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "mine is used for explosion", "pln": ["(: cnet_usedfor_0567572406 (UsedFor mine explosion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mineral is used for health", "pln": ["(: cnet_usedfor_bd3bc0f751 (UsedFor mineral health) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mini bar is used for serving drink", "pln": ["(: cnet_usedfor_2a57b2f5a8 (UsedFor mini_bar serving_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mini bar is used for storing drink", "pln": ["(: cnet_usedfor_5565dd8730 (UsedFor mini_bar storing_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "minibar is used for beer", "pln": ["(: cnet_usedfor_57f5b51501 (UsedFor minibar beer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "minibar is used for drinking", "pln": ["(: cnet_usedfor_742b117cd6 (UsedFor minibar drinking) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "minister is used for preaching", "pln": ["(: cnet_usedfor_25b1b41a1b (UsedFor minister preaching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mirror is used for light reflection", "pln": ["(: cnet_usedfor_842780f51e (UsedFor mirror light_reflection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "mirror is used for looking at yourself", "pln": ["(: cnet_usedfor_6775da68ff (UsedFor mirror looking_at_yourself) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "mirror is used for see reflection", "pln": ["(: cnet_usedfor_57a889da36 (UsedFor mirror see_reflection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mirror is used for see yourself", "pln": ["(: cnet_usedfor_925da42cf6 (UsedFor mirror see_yourself) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mirror is used for reflect", "pln": ["(: cnet_usedfor_3527d18361 (UsedFor mirror reflect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mirror is used for reflection", "pln": ["(: cnet_usedfor_25b533a0c1 (UsedFor mirror reflection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "mirror is used for spectator", "pln": ["(: cnet_usedfor_92f04386ca (UsedFor mirror spectator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "money is used for obtain thing", "pln": ["(: cnet_usedfor_0645de4d9f (UsedFor money obtain_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "money is used for pay for", "pln": ["(: cnet_usedfor_8c25dea668 (UsedFor money pay_for) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "money is used for pay for sex", "pln": ["(: cnet_usedfor_ab28acd516 (UsedFor money pay_for_sex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "money is used for saving", "pln": ["(: cnet_usedfor_96977c8622 (UsedFor money saving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "monitor wall is used for monitoring thing", "pln": ["(: cnet_usedfor_8277e03d06 (UsedFor monitor_wall monitoring_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "monocle is used for seeing", "pln": ["(: cnet_usedfor_83f770b650 (UsedFor monocle seeing) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "monument is used for remembering", "pln": ["(: cnet_usedfor_a46d0788fd (UsedFor monument remembering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "moon is used for keep track of time", "pln": ["(: cnet_usedfor_be5e54da7c (UsedFor moon keep_track_of_time) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mortar is used for grinding thing", "pln": ["(: cnet_usedfor_5e882d1063 (UsedFor mortar grinding_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "motel is used for overnight stay", "pln": ["(: cnet_usedfor_27fd77be48 (UsedFor motel overnight_stay) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "motel is used for resting", "pln": ["(: cnet_usedfor_8a48fc56a6 (UsedFor motel resting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "motel is used for sleeping", "pln": ["(: cnet_usedfor_70688036da (UsedFor motel sleeping) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "motherboard is used for making computer", "pln": ["(: cnet_usedfor_7aa43f4910 (UsedFor motherboard making_computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "motorcycle is used for ride", "pln": ["(: cnet_usedfor_c684b7c838 (UsedFor motorcycle ride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "motorcycle is used for rush", "pln": ["(: cnet_usedfor_617869e52f (UsedFor motorcycle rush) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "motorcycle is used for go from place to place", "pln": ["(: cnet_usedfor_561069cb52 (UsedFor motorcycle go_from_place_to_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "motorway is used for drive", "pln": ["(: cnet_usedfor_6a3f7440ef (UsedFor motorway drive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mound is used for stand on", "pln": ["(: cnet_usedfor_f479262233 (UsedFor mound stand_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mountain is used for climbing", "pln": ["(: cnet_usedfor_412203069f (UsedFor mountain climbing) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mouse is used for computer input", "pln": ["(: cnet_usedfor_4868778c06 (UsedFor mouse computer_input) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mouse is used for surfing", "pln": ["(: cnet_usedfor_32229fd84b (UsedFor mouse surfing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mouse is used for move", "pln": ["(: cnet_usedfor_5524264e1a (UsedFor mouse move) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mouse is used for operate", "pln": ["(: cnet_usedfor_e86c557a0f (UsedFor mouse operate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mouth is used for eating", "pln": ["(: cnet_usedfor_41afb0a672 (UsedFor mouth eating) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mouth is used for kissing", "pln": ["(: cnet_usedfor_766dada426 (UsedFor mouth kissing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mouth is used for singing", "pln": ["(: cnet_usedfor_e4eefce7f9 (UsedFor mouth singing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mouth is used for speak", "pln": ["(: cnet_usedfor_f6da3a2464 (UsedFor mouth speak) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mouth is used for talking", "pln": ["(: cnet_usedfor_8c8f6835e2 (UsedFor mouth talking) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mouthwash is used for cleaning mouth", "pln": ["(: cnet_usedfor_cb05689bdd (UsedFor mouthwash cleaning_mouth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mouthwash is used for freshen breath", "pln": ["(: cnet_usedfor_ccfc840798 (UsedFor mouthwash freshen_breath) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "movie is used for entertainment", "pln": ["(: cnet_usedfor_41a5c3e622 (UsedFor movie entertainment) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "movie is used for learn", "pln": ["(: cnet_usedfor_86ac3ddafd (UsedFor movie learn) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "movie house is used for watching movy", "pln": ["(: cnet_usedfor_4ec4ea9834 (UsedFor movie_house watching_movy) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "movie theater is used for watching movy", "pln": ["(: cnet_usedfor_46205f91dd (UsedFor movie_theater watching_movy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "movie theater seat is used for sitting in", "pln": ["(: cnet_usedfor_e668797655 (UsedFor movie_theater_seat sitting_in) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "movie theater seat is used for sitting in at movy", "pln": ["(: cnet_usedfor_89dec4f50a (UsedFor movie_theater_seat sitting_in_at_movy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "movie ticket is used for getting into movy", "pln": ["(: cnet_usedfor_31648a5a11 (UsedFor movie_ticket getting_into_movy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "moving car is used for driving", "pln": ["(: cnet_usedfor_0ecca5a1be (UsedFor moving_car driving) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "moving car is used for transportation", "pln": ["(: cnet_usedfor_d69a1984c5 (UsedFor moving_car transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "moving sidewalk is used for transportation", "pln": ["(: cnet_usedfor_bc6baa4f0e (UsedFor moving_sidewalk transportation) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "moving walkway is used for airport", "pln": ["(: cnet_usedfor_23005bf642 (UsedFor moving_walkway airport) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "moving walkway is used for moving people", "pln": ["(: cnet_usedfor_c297f060f0 (UsedFor moving_walkway moving_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "moving walkway is used for transportation", "pln": ["(: cnet_usedfor_b5e47ecb99 (UsedFor moving_walkway transportation) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mp3 player is used for listen to music", "pln": ["(: cnet_usedfor_e220fc2ac9 (UsedFor mp3_player listen_to_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mug is used for coffee", "pln": ["(: cnet_usedfor_3424184131 (UsedFor mug coffee) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mug is used for drink beer", "pln": ["(: cnet_usedfor_d5344ecac1 (UsedFor mug drink_beer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mug is used for drink coffee", "pln": ["(: cnet_usedfor_b491a6b9ac (UsedFor mug drink_coffee) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mug is used for drinking from", "pln": ["(: cnet_usedfor_0d668632c8 (UsedFor mug drinking_from) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mug is used for drinking tea", "pln": ["(: cnet_usedfor_a4dfa9339b (UsedFor mug drinking_tea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mug is used for holding coffee", "pln": ["(: cnet_usedfor_f930783f5b (UsedFor mug holding_coffee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mug is used for drinker", "pln": ["(: cnet_usedfor_441e315ca5 (UsedFor mug drinker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "mug is used for hold", "pln": ["(: cnet_usedfor_b45ab3e849 (UsedFor mug hold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "muscle is used for constricting", "pln": ["(: cnet_usedfor_b7c67c755f (UsedFor muscle constricting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "muscle is used for eating", "pln": ["(: cnet_usedfor_c920a88874 (UsedFor muscle eating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "muscle is used for extension", "pln": ["(: cnet_usedfor_f6fd0d7a10 (UsedFor muscle extension) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "muscle is used for flexion", "pln": ["(: cnet_usedfor_a573ece7fc (UsedFor muscle flexion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "muscle is used for lift thing", "pln": ["(: cnet_usedfor_8b15ddeaa2 (UsedFor muscle lift_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "muscle is used for lift weight", "pln": ["(: cnet_usedfor_08a9cab8e9 (UsedFor muscle lift_weight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "muscle is used for move", "pln": ["(: cnet_usedfor_a3be23759f (UsedFor muscle move) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "muscle is used for walk", "pln": ["(: cnet_usedfor_08bc7ef57d (UsedFor muscle walk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "museum is used for learn about thing", "pln": ["(: cnet_usedfor_72d177d1ff (UsedFor museum learn_about_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "museum is used for store artifact", "pln": ["(: cnet_usedfor_b06758a547 (UsedFor museum store_artifact) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "museum ticket is used for enter museum", "pln": ["(: cnet_usedfor_f5a058ce77 (UsedFor museum_ticket enter_museum) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "museum ticket is used for entering museum", "pln": ["(: cnet_usedfor_b588461501 (UsedFor museum_ticket entering_museum) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "museum ticket is used for get into museum", "pln": ["(: cnet_usedfor_c98739de58 (UsedFor museum_ticket get_into_museum) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "music is used for passing time", "pln": ["(: cnet_usedfor_c133248a74 (UsedFor music passing_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "music is used for pleasure", "pln": ["(: cnet_usedfor_32e1d21e24 (UsedFor music pleasure) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "music is used for relax yourself", "pln": ["(: cnet_usedfor_abce55bf01 (UsedFor music relax_yourself) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "music is used for soothing savage beast", "pln": ["(: cnet_usedfor_9307f5ff42 (UsedFor music soothing_savage_beast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "music stand is used for hold music", "pln": ["(: cnet_usedfor_36f61177f6 (UsedFor music_stand hold_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "music stand is used for hold sheet music", "pln": ["(: cnet_usedfor_d6c05fa475 (UsedFor music_stand hold_sheet_music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "music stand is used for holding music", "pln": ["(: cnet_usedfor_d018828f56 (UsedFor music_stand holding_music) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "music stand is used for holding sheet music", "pln": ["(: cnet_usedfor_a7e6ebc1b1 (UsedFor music_stand holding_sheet_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "musical instrument is used for making music", "pln": ["(: cnet_usedfor_e507e67489 (UsedFor musical_instrument making_music) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "musical instrument is used for making music and enjoyment", "pln": ["(: cnet_usedfor_491a24e2d1 (UsedFor musical_instrument making_music_and_enjoyment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "musical instrument is used for hearer", "pln": ["(: cnet_usedfor_05adba0f0a (UsedFor musical_instrument hearer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "musical instrument is used for music", "pln": ["(: cnet_usedfor_4ca08a7640 (UsedFor musical_instrument music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "musical instrument is used for play", "pln": ["(: cnet_usedfor_5c17b911af (UsedFor musical_instrument play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "musical instrument is used for sound", "pln": ["(: cnet_usedfor_ce1e74eb44 (UsedFor musical_instrument sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "musical instrument which is used for make musical sound", "pln": ["(: cnet_usedfor_7c651a4ebf (UsedFor musical_instrument_which make_musical_sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "musket ball is used for shoot", "pln": ["(: cnet_usedfor_91802ee0de (UsedFor musket_ball shoot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "nail is used for hold thing together", "pln": ["(: cnet_usedfor_b76e2ec6bc (UsedFor nail hold_thing_together) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "name is used for identification", "pln": ["(: cnet_usedfor_19ae0f35a3 (UsedFor name identification) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "name is used for identify or", "pln": ["(: cnet_usedfor_10ecbf6674 (UsedFor name identify_or) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "name is used for labeling thing", "pln": ["(: cnet_usedfor_40d7d10f50 (UsedFor name labeling_thing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "napkin is used for wipe mouth", "pln": ["(: cnet_usedfor_447a3301ff (UsedFor napkin wipe_mouth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "national interstate highway is used for driving on", "pln": ["(: cnet_usedfor_1cdc1da19e (UsedFor national_interstate_highway driving_on) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "neck is used for supporting head", "pln": ["(: cnet_usedfor_b7a6e4624b (UsedFor neck supporting_head) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "necklace is used for decorate", "pln": ["(: cnet_usedfor_f0b82237c8 (UsedFor necklace decorate) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "necklace is used for decoration", "pln": ["(: cnet_usedfor_2508e57254 (UsedFor necklace decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "nylon is used for making clothes", "pln": ["(: cnet_usedfor_9eea7eed2b (UsedFor nylon making_clothes) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "necklace is used for wearing around neck", "pln": ["(: cnet_usedfor_f4edf80fbe (UsedFor necklace wearing_around_neck) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "needle is used for sew", "pln": ["(: cnet_usedfor_fc502c8aa3 (UsedFor needle sew) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "needle is used for sewing", "pln": ["(: cnet_usedfor_82f977452e (UsedFor needle sewing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "neighborhood map is used for find way around", "pln": ["(: cnet_usedfor_cdef09cc5c (UsedFor neighborhood_map find_way_around) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "nerve is used for sensing pain", "pln": ["(: cnet_usedfor_93f50705c5 (UsedFor nerve sensing_pain) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "net is used for catch fish", "pln": ["(: cnet_usedfor_6a432bec83 (UsedFor net catch_fish) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "net is used for catching fish", "pln": ["(: cnet_usedfor_c54480b87e (UsedFor net catching_fish) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "net is used for fishing", "pln": ["(: cnet_usedfor_c7dbe5d715 (UsedFor net fishing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "night table is used for hold lamp", "pln": ["(: cnet_usedfor_30e9df9758 (UsedFor night_table hold_lamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "nightclub is used for drinking", "pln": ["(: cnet_usedfor_faf5c9b8e6 (UsedFor nightclub drinking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "nightclub is used for party", "pln": ["(: cnet_usedfor_19f5a4d6b2 (UsedFor nightclub party) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "noise is used for distract other", "pln": ["(: cnet_usedfor_925abfb3b2 (UsedFor noise distract_other) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "noise is used for get attention", "pln": ["(: cnet_usedfor_4fdf4bb62c (UsedFor noise get_attention) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "noise is used for getting attention", "pln": ["(: cnet_usedfor_9661df71e6 (UsedFor noise getting_attention) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "nose is used for breathing", "pln": ["(: cnet_usedfor_3544501fe1 (UsedFor nose breathing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "nose is used for getting congested and blowing", "pln": ["(: cnet_usedfor_9a5041ecc1 (UsedFor nose getting_congested_and_blowing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "note is used for communication", "pln": ["(: cnet_usedfor_13587ce915 (UsedFor note communication) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "notebook is used for taking note", "pln": ["(: cnet_usedfor_30d70824fc (UsedFor notebook taking_note) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "notebook is used for write note", "pln": ["(: cnet_usedfor_8a279dc4ce (UsedFor notebook write_note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "notebook is used for collect information", "pln": ["(: cnet_usedfor_c05d5cbdfe (UsedFor notebook collect_information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "notepad is used for doodle", "pln": ["(: cnet_usedfor_b85eaa1a2d (UsedFor notepad doodle) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "notepad is used for leaving message", "pln": ["(: cnet_usedfor_145aee8400 (UsedFor notepad leaving_message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "notepad is used for writing note", "pln": ["(: cnet_usedfor_f453d377a0 (UsedFor notepad writing_note) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "number is used for call on telephone", "pln": ["(: cnet_usedfor_de261ab4aa (UsedFor number call_on_telephone) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "number is used for identifying house", "pln": ["(: cnet_usedfor_a7663b323f (UsedFor number identifying_house) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "number is used for index material", "pln": ["(: cnet_usedfor_e40fe2d0e3 (UsedFor number index_material) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "number is used for orginization", "pln": ["(: cnet_usedfor_70af0aa27d (UsedFor number orginization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "number is used for represent order", "pln": ["(: cnet_usedfor_667642b4c5 (UsedFor number represent_order) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "number is used for number kata", "pln": ["(: cnet_usedfor_93e341f2e7 (UsedFor number number_kata) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "nylon is used for making clothe", "pln": ["(: cnet_usedfor_ce3624403e (UsedFor nylon making_clothe) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "oar is used for rowing", "pln": ["(: cnet_usedfor_4e32228a96 (UsedFor oar rowing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "oboe is used for make music", "pln": ["(: cnet_usedfor_1f0f15d6e5 (UsedFor oboe make_music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "oboe is used for making music", "pln": ["(: cnet_usedfor_dd4c184537 (UsedFor oboe making_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "oboe is used for playing in orchestra", "pln": ["(: cnet_usedfor_7f1a0480b1 (UsedFor oboe playing_in_orchestra) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "obstructing justice is used for protecting", "pln": ["(: cnet_usedfor_47a85b56bb (UsedFor obstructing_justice protecting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ocean is used for diving", "pln": ["(: cnet_usedfor_51a213dda9 (UsedFor ocean diving) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ocean is used for fish", "pln": ["(: cnet_usedfor_a561d8fddf (UsedFor ocean fish) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ocean is used for fishing", "pln": ["(: cnet_usedfor_58f0d84816 (UsedFor ocean fishing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ocean is used for relax", "pln": ["(: cnet_usedfor_fef42c153c (UsedFor ocean relax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ocean is used for sail", "pln": ["(: cnet_usedfor_19ee4b3b5b (UsedFor ocean sail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ocean is used for sailing", "pln": ["(: cnet_usedfor_20f04663d0 (UsedFor ocean sailing) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ocean is used for swim in", "pln": ["(: cnet_usedfor_e07aaa6543 (UsedFor ocean swim_in) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ocean is used for swimming", "pln": ["(: cnet_usedfor_76e8ba0122 (UsedFor ocean swimming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "office is used for get work done", "pln": ["(: cnet_usedfor_f5b75e6fe2 (UsedFor office get_work_done) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "office is used for work", "pln": ["(: cnet_usedfor_e6f5dbbd2e (UsedFor office work) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "office is used for working", "pln": ["(: cnet_usedfor_01a5536e59 (UsedFor office working) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "on off switch is used for turn machines on or off", "pln": ["(: cnet_usedfor_885adfc0ec (UsedFor on_off_switch turn_machines_on_or_off) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "office building is used for business function", "pln": ["(: cnet_usedfor_d1dd1af5c2 (UsedFor office_building business_function) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "office building is used for investing in commercial development", "pln": ["(: cnet_usedfor_f40033e2a7 (UsedFor office_building investing_in_commercial_development) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "office building is used for work", "pln": ["(: cnet_usedfor_47a6fc4a04 (UsedFor office_building work) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "oil is used for car", "pln": ["(: cnet_usedfor_bece527107 (UsedFor oil car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "oil is used for lubricate", "pln": ["(: cnet_usedfor_2e33378df3 (UsedFor oil lubricate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "on off switch is used for control machine", "pln": ["(: cnet_usedfor_4399506066 (UsedFor on_off_switch control_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "on off switch is used for turn machine on or off", "pln": ["(: cnet_usedfor_984258093e (UsedFor on_off_switch turn_machine_on_or_off) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "on off switch is used for turning off light", "pln": ["(: cnet_usedfor_9a805940b1 (UsedFor on_off_switch turning_off_light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "on off switch is used for turning on light", "pln": ["(: cnet_usedfor_2d12a4c572 (UsedFor on_off_switch turning_on_light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "one person chair is used for sitting alone", "pln": ["(: cnet_usedfor_485eee2034 (UsedFor one_person_chair sitting_alone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "opening bag of chip is used for eating chip", "pln": ["(: cnet_usedfor_2786b4def5 (UsedFor opening_bag_of_chip eating_chip) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "opening bag of chip is used for having snack", "pln": ["(: cnet_usedfor_32207d4393 (UsedFor opening_bag_of_chip having_snack) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "opening business is used for making money", "pln": ["(: cnet_usedfor_9a179e3642 (UsedFor opening_business making_money) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "opening business is used for providing service", "pln": ["(: cnet_usedfor_f82aebb056 (UsedFor opening_business providing_service) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "opening gift is used for being surprised", "pln": ["(: cnet_usedfor_7da2a13d31 (UsedFor opening_gift being_surprised) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "opening gift is used for surprise", "pln": ["(: cnet_usedfor_56cf50b354 (UsedFor opening_gift surprise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "opera glass is used for see farther", "pln": ["(: cnet_usedfor_a0b7cdfc69 (UsedFor opera_glass see_farther) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "orchestra pit is used for holding orchestra", "pln": ["(: cnet_usedfor_ab5764bfe1 (UsedFor orchestra_pit holding_orchestra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "orchestra pit is used for musician", "pln": ["(: cnet_usedfor_3d04aa12bf (UsedFor orchestra_pit musician) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "orchestra pit is used for orchestra to sit in", "pln": ["(: cnet_usedfor_0e25afca89 (UsedFor orchestra_pit orchestra_to_sit_in) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "orchestra seat is used for sit in", "pln": ["(: cnet_usedfor_53ddd649af (UsedFor orchestra_seat sit_in) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "organ is used for keeping human alive", "pln": ["(: cnet_usedfor_be4bedccfc (UsedFor organ keeping_human_alive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "organ is used for play music", "pln": ["(: cnet_usedfor_8168cb4659 (UsedFor organ play_music) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ottoman is used for prop feet", "pln": ["(: cnet_usedfor_c3c808b70b (UsedFor ottoman prop_feet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ottoman is used for put feet on", "pln": ["(: cnet_usedfor_06de3d67cd (UsedFor ottoman put_feet_on) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ottoman is used for rest feet", "pln": ["(: cnet_usedfor_e2cab11867 (UsedFor ottoman rest_feet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ottoman is used for sitting", "pln": ["(: cnet_usedfor_eccea030fb (UsedFor ottoman sitting) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "outfield is used for catch baseball", "pln": ["(: cnet_usedfor_94e98cf442 (UsedFor outfield catch_baseball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "oven is used for bake cake", "pln": ["(: cnet_usedfor_8f7115001f (UsedFor oven bake_cake) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "oven is used for bake cooky", "pln": ["(: cnet_usedfor_cd455c4139 (UsedFor oven bake_cooky) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "oven is used for baking food", "pln": ["(: cnet_usedfor_666c653ffc (UsedFor oven baking_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "oven is used for cooking", "pln": ["(: cnet_usedfor_6c95241af1 (UsedFor oven cooking) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "overflow is used for preventing flood", "pln": ["(: cnet_usedfor_62a3628dab (UsedFor overflow preventing_flood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pacific ocean is used for fishing", "pln": ["(: cnet_usedfor_0652671016 (UsedFor pacific_ocean fishing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pacific ocean is used for getting from usa to asia", "pln": ["(: cnet_usedfor_cd47a8e8fe (UsedFor pacific_ocean getting_from_usa_to_asia) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pacific ocean is used for separating asia from america", "pln": ["(: cnet_usedfor_28bea5c032 (UsedFor pacific_ocean separating_asia_from_america) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pacific ocean is used for swimming in", "pln": ["(: cnet_usedfor_b5ff85ea61 (UsedFor pacific_ocean swimming_in) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "package is used for hold", "pln": ["(: cnet_usedfor_71eabc4d06 (UsedFor package hold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pad is used for crash", "pln": ["(: cnet_usedfor_f6a08f962f (UsedFor pad crash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pad is used for crash in", "pln": ["(: cnet_usedfor_9ace7bb5f2 (UsedFor pad crash_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pad is used for living in", "pln": ["(: cnet_usedfor_db70bf0bd5 (UsedFor pad living_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pad is used for mouse", "pln": ["(: cnet_usedfor_f77ed8794a (UsedFor pad mouse) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pad is used for paper", "pln": ["(: cnet_usedfor_9a630ec354 (UsedFor pad paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pad is used for writing note on", "pln": ["(: cnet_usedfor_5cf5fec2ea (UsedFor pad writing_note_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "pad is used for writing on", "pln": ["(: cnet_usedfor_3025ce08c5 (UsedFor pad writing_on) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "page is used for writing", "pln": ["(: cnet_usedfor_df5e0dbf24 (UsedFor page writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pail is used for carry water", "pln": ["(: cnet_usedfor_7eaf170ff1 (UsedFor pail carry_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pail is used for carrying water", "pln": ["(: cnet_usedfor_b0b3bcf1ed (UsedFor pail carrying_water) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "paint is used for painting", "pln": ["(: cnet_usedfor_5c40847bd2 (UsedFor paint painting) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "painting is used for art", "pln": ["(: cnet_usedfor_88463dd51b (UsedFor painting art) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "painting is used for artist", "pln": ["(: cnet_usedfor_cb510959d4 (UsedFor painting artist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "painting is used for creating work of art", "pln": ["(: cnet_usedfor_c66347d4c0 (UsedFor painting creating_work_of_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "painting is used for decorating", "pln": ["(: cnet_usedfor_fcc7eaa679 (UsedFor painting decorating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "painting is used for expressing artistically", "pln": ["(: cnet_usedfor_88a8e3470e (UsedFor painting expressing_artistically) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "painting is used for expressing yourself", "pln": ["(: cnet_usedfor_5e9783232a (UsedFor painting expressing_yourself) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "painting is used for home improvement", "pln": ["(: cnet_usedfor_f6b5de6553 (UsedFor painting home_improvement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "painting is used for relaxation", "pln": ["(: cnet_usedfor_5e94277a89 (UsedFor painting relaxation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "painting house is used for change colour", "pln": ["(: cnet_usedfor_39a6d64f3f (UsedFor painting_house change_colour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "painting house is used for changing color of house", "pln": ["(: cnet_usedfor_64cdf44823 (UsedFor painting_house changing_color_of_house) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "painting house is used for making look better", "pln": ["(: cnet_usedfor_90bcff4626 (UsedFor painting_house making_look_better) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "painting picture is used for detail", "pln": ["(: cnet_usedfor_f366fc13d3 (UsedFor painting_picture detail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "painting picture is used for entertainment", "pln": ["(: cnet_usedfor_95abd86807 (UsedFor painting_picture entertainment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "painting picture is used for expressing yourself", "pln": ["(: cnet_usedfor_8c28bb78b2 (UsedFor painting_picture expressing_yourself) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "painting picture is used for having fun", "pln": ["(: cnet_usedfor_a62f48b9ec (UsedFor painting_picture having_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "painting picture is used for hobbie", "pln": ["(: cnet_usedfor_6d2f6baa74 (UsedFor painting_picture hobbie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "painting picture is used for relaxing", "pln": ["(: cnet_usedfor_32b3c0aeea (UsedFor painting_picture relaxing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pair of pant is used for cover leg", "pln": ["(: cnet_usedfor_6e80fa5b9c (UsedFor pair_of_pant cover_leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pair of pant is used for wearing", "pln": ["(: cnet_usedfor_0a56b6f3fd (UsedFor pair_of_pant wearing) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pan is used for cooking", "pln": ["(: cnet_usedfor_e7d8d66d83 (UsedFor pan cooking) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "pan is used for fry egg", "pln": ["(: cnet_usedfor_86442f8bb5 (UsedFor pan fry_egg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pan is used for frying", "pln": ["(: cnet_usedfor_6af2f0d064 (UsedFor pan frying) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pan is used for frying food", "pln": ["(: cnet_usedfor_5dbaacb77e (UsedFor pan frying_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pantry is used for store food", "pln": ["(: cnet_usedfor_dbcc3f8d04 (UsedFor pantry store_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "paper is used for communication", "pln": ["(: cnet_usedfor_dc5757ce07 (UsedFor paper communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "paper is used for drawing", "pln": ["(: cnet_usedfor_5e931317ea (UsedFor paper drawing) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "paper is used for make paper airplane", "pln": ["(: cnet_usedfor_88e5e75311 (UsedFor paper make_paper_airplane) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "paper is used for origami", "pln": ["(: cnet_usedfor_3a1f567ea4 (UsedFor paper origami) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "paper is used for print on", "pln": ["(: cnet_usedfor_92a4e480d7 (UsedFor paper print_on) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "paper is used for reading new", "pln": ["(: cnet_usedfor_d5bd1a314e (UsedFor paper reading_new) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "paper is used for recording information", "pln": ["(: cnet_usedfor_2214654b8b (UsedFor paper recording_information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "paper is used for wrap present", "pln": ["(: cnet_usedfor_a79b0c9de2 (UsedFor paper wrap_present) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "paper is used for write letter", "pln": ["(: cnet_usedfor_f27c8acf95 (UsedFor paper write_letter) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "paper bill is used for buying thing from vending machine", "pln": ["(: cnet_usedfor_97676b7879 (UsedFor paper_bill buying_thing_from_vending_machine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "paper clip is used for holding paper together", "pln": ["(: cnet_usedfor_a0e53f6ec6 (UsedFor paper_clip holding_paper_together) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "paper clip is used for keeping paper together", "pln": ["(: cnet_usedfor_acca461b05 (UsedFor paper_clip keeping_paper_together) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "paper fastener is used for keep paper together", "pln": ["(: cnet_usedfor_87555fbdb7 (UsedFor paper_fastener keep_paper_together) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "paper menu is used for order food", "pln": ["(: cnet_usedfor_daa84517b2 (UsedFor paper_menu order_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "paper page is used for reading", "pln": ["(: cnet_usedfor_044cd7e233 (UsedFor paper_page reading) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "paper punch is used for make hole in paper", "pln": ["(: cnet_usedfor_24a1b08db8 (UsedFor paper_punch make_hole_in_paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "paper punch is used for making confetti", "pln": ["(: cnet_usedfor_7815fa361c (UsedFor paper_punch making_confetti) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "parking zone is used for parking vehicles", "pln": ["(: cnet_usedfor_8b646552d7 (UsedFor parking_zone parking_vehicles) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "paper punch is used for making hole in paper", "pln": ["(: cnet_usedfor_95abeefb92 (UsedFor paper_punch making_hole_in_paper) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "parking area is used for park car", "pln": ["(: cnet_usedfor_4d44cf2801 (UsedFor parking_area park_car) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "parking area is used for parking car", "pln": ["(: cnet_usedfor_f3e789ef08 (UsedFor parking_area parking_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "parking lot is used for car", "pln": ["(: cnet_usedfor_3da43bf70e (UsedFor parking_lot car) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "parking lot is used for park", "pln": ["(: cnet_usedfor_f38e4bebcd (UsedFor parking_lot park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "parking lot is used for parking car", "pln": ["(: cnet_usedfor_885bbad1f0 (UsedFor parking_lot parking_car) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "parking lot is used for practice bagpipe technique", "pln": ["(: cnet_usedfor_a145d9e700 (UsedFor parking_lot practice_bagpipe_technique) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "parking structure is used for car", "pln": ["(: cnet_usedfor_99ec259d35 (UsedFor parking_structure car) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "parking structure is used for park", "pln": ["(: cnet_usedfor_7573477d47 (UsedFor parking_structure park) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "parking zone is used for leave car", "pln": ["(: cnet_usedfor_a11eb8345c (UsedFor parking_zone leave_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "parking zone is used for park car", "pln": ["(: cnet_usedfor_092d7ea2d4 (UsedFor parking_zone park_car) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "parking zone is used for parking car", "pln": ["(: cnet_usedfor_6f72fbd047 (UsedFor parking_zone parking_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "parking zone is used for parking vehicle", "pln": ["(: cnet_usedfor_de4d0441ce (UsedFor parking_zone parking_vehicle) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "parkway is used for driving", "pln": ["(: cnet_usedfor_d91e067a55 (UsedFor parkway driving) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "parlor is used for entertaining guest", "pln": ["(: cnet_usedfor_d219c600b2 (UsedFor parlor entertaining_guest) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "party is used for celebrate birthday", "pln": ["(: cnet_usedfor_6e8007b1a3 (UsedFor party celebrate_birthday) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "party is used for make friend", "pln": ["(: cnet_usedfor_2823b360c7 (UsedFor party make_friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "party is used for meet new people", "pln": ["(: cnet_usedfor_801482af87 (UsedFor party meet_new_people) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "party is used for meeting people", "pln": ["(: cnet_usedfor_ac3f189061 (UsedFor party meeting_people) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "party is used for relaxing", "pln": ["(: cnet_usedfor_d5a25e9a88 (UsedFor party relaxing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "passage is used for direct one s location", "pln": ["(: cnet_usedfor_62b612b091 (UsedFor passage direct_one_s_location) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "passageway is used for getting from one place to another", "pln": ["(: cnet_usedfor_eedcb8117d (UsedFor passageway getting_from_one_place_to_another) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "passageway is used for walk", "pln": ["(: cnet_usedfor_f47ca72202 (UsedFor passageway walk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "passageway is used for walk along", "pln": ["(: cnet_usedfor_03df818a3b (UsedFor passageway walk_along) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "passenger ticket is used for board plane", "pln": ["(: cnet_usedfor_2f64005ee3 (UsedFor passenger_ticket board_plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "passing university exams is used for getting degree", "pln": ["(: cnet_usedfor_e6f83e19a6 (UsedFor passing_university_exams getting_degree) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "paying cash is used for paying for services", "pln": ["(: cnet_usedfor_997df3ad20 (UsedFor paying_cash paying_for_services) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "passenger ticket is used for travelling", "pln": ["(: cnet_usedfor_363889bcb6 (UsedFor passenger_ticket travelling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "passing class is used for being happy", "pln": ["(: cnet_usedfor_467bd4e4ba (UsedFor passing_class being_happy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "passing class is used for benefitting from previous work", "pln": ["(: cnet_usedfor_c7354b5878 (UsedFor passing_class benefitting_from_previous_work) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "passing class is used for gaining future success", "pln": ["(: cnet_usedfor_b5d60dd30b (UsedFor passing_class gaining_future_success) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "passing class is used for getting to next academic level", "pln": ["(: cnet_usedfor_19df99d246 (UsedFor passing_class getting_to_next_academic_level) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "passing class is used for indicating competence", "pln": ["(: cnet_usedfor_49b6507410 (UsedFor passing_class indicating_competence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "passing university exam is used for getting degree", "pln": ["(: cnet_usedfor_0f6a9da4df (UsedFor passing_university_exam getting_degree) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "passport is used for identification", "pln": ["(: cnet_usedfor_e97ce679fa (UsedFor passport identification) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "passport case is used for protecting passport", "pln": ["(: cnet_usedfor_97f29a3932 (UsedFor passport_case protecting_passport) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "patio door is used for entering patio", "pln": ["(: cnet_usedfor_cf22c27920 (UsedFor patio_door entering_patio) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pavement is used for driving car on", "pln": ["(: cnet_usedfor_ee289513b5 (UsedFor pavement driving_car_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pavement is used for riding motorcycle over", "pln": ["(: cnet_usedfor_942c456a9c (UsedFor pavement riding_motorcycle_over) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pawn is used for play chess", "pln": ["(: cnet_usedfor_65f14a4325 (UsedFor pawn play_chess) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "paying bill is used for keeping utility on", "pln": ["(: cnet_usedfor_6ed44037d2 (UsedFor paying_bill keeping_utility_on) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "paying by check is used for not carrying cash", "pln": ["(: cnet_usedfor_02eb302fe9 (UsedFor paying_by_check not_carrying_cash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "paying by check is used for not having to carry cash", "pln": ["(: cnet_usedfor_d3861c83b9 (UsedFor paying_by_check not_having_to_carry_cash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "paying by credit card is used for putting off payment", "pln": ["(: cnet_usedfor_5b0c851d32 (UsedFor paying_by_credit_card putting_off_payment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "paying cash is used for paying for service", "pln": ["(: cnet_usedfor_230e80aa78 (UsedFor paying_cash paying_for_service) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "payment counter is used for make payment", "pln": ["(: cnet_usedfor_9ab806331a (UsedFor payment_counter make_payment) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "payment counter is used for transacting business", "pln": ["(: cnet_usedfor_2b2c64631f (UsedFor payment_counter transacting_business) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pedestal is used for put statue on", "pln": ["(: cnet_usedfor_f3aa220f3a (UsedFor pedestal put_statue_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pen is used for drawing", "pln": ["(: cnet_usedfor_b6ae543aab (UsedFor pen drawing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pen is used for holding animal", "pln": ["(: cnet_usedfor_f0a58a28bf (UsedFor pen holding_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pen is used for write story", "pln": ["(: cnet_usedfor_f4d46e2f1c (UsedFor pen write_story) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pen is used for write thing down", "pln": ["(: cnet_usedfor_011f805645 (UsedFor pen write_thing_down) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pen is used for writing", "pln": ["(: cnet_usedfor_70eb363708 (UsedFor pen writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pen is used for writing letter", "pln": ["(: cnet_usedfor_3519ebf70a (UsedFor pen writing_letter) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pencil is used for doing math", "pln": ["(: cnet_usedfor_9a4cf10c6c (UsedFor pencil doing_math) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pencil is used for letter writing", "pln": ["(: cnet_usedfor_4877c2c249 (UsedFor pencil letter_writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "pencil is used for write on paper", "pln": ["(: cnet_usedfor_33672e9c6c (UsedFor pencil write_on_paper) (STV 1.0 0.9730))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pencil is used for write story", "pln": ["(: cnet_usedfor_6feb697d91 (UsedFor pencil write_story) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pencil sharpener is used for sharpening pencil", "pln": ["(: cnet_usedfor_3b8afec753 (UsedFor pencil_sharpener sharpening_pencil) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pencil is used for take note", "pln": ["(: cnet_usedfor_192f191131 (UsedFor pencil take_note) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "penis is used for insertion into vagina", "pln": ["(: cnet_usedfor_92a0bcc6e8 (UsedFor penis insertion_into_vagina) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "penis is used for peeing", "pln": ["(: cnet_usedfor_647e68b7a7 (UsedFor penis peeing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "penny is used for buying gumball", "pln": ["(: cnet_usedfor_2eecb016f5 (UsedFor penny buying_gumball) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "penny is used for making change", "pln": ["(: cnet_usedfor_fa0355af0f (UsedFor penny making_change) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pen is used for take note", "pln": ["(: cnet_usedfor_709808da69 (UsedFor pen take_note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "people is used for labor", "pln": ["(: cnet_usedfor_7bc5e78db1 (UsedFor people labor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "people is used for socializing", "pln": ["(: cnet_usedfor_392bfebdbc (UsedFor people socializing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "people is used for socializing with", "pln": ["(: cnet_usedfor_b23a6b97c2 (UsedFor people socializing_with) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "people is used for talk", "pln": ["(: cnet_usedfor_dc5afb0647 (UsedFor people talk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "people is used for work", "pln": ["(: cnet_usedfor_0c246a74f8 (UsedFor people work) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "people is used for work for", "pln": ["(: cnet_usedfor_9e61df88af (UsedFor people work_for) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pepper is used for season food", "pln": ["(: cnet_usedfor_dcba3667a8 (UsedFor pepper season_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "pepper and salt is used for flavoring food", "pln": ["(: cnet_usedfor_3d42d6232b (UsedFor pepper_and_salt flavoring_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pepper and salt is used for making food taste better", "pln": ["(: cnet_usedfor_9734194df8 (UsedFor pepper_and_salt making_food_taste_better) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "pepper and salt is used for season food", "pln": ["(: cnet_usedfor_eefca27531 (UsedFor pepper_and_salt season_food) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pepper and salt is used for seasoning food", "pln": ["(: cnet_usedfor_2f0b8f594c (UsedFor pepper_and_salt seasoning_food) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pepper and salt is used for spice up food", "pln": ["(: cnet_usedfor_8ca8411dcd (UsedFor pepper_and_salt spice_up_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "percussion instrument is used for beating", "pln": ["(: cnet_usedfor_c80f154533 (UsedFor percussion_instrument beating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "percussion instrument is used for hitting", "pln": ["(: cnet_usedfor_6c2d8afb5a (UsedFor percussion_instrument hitting) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "percussion instrument is used for keep beat", "pln": ["(: cnet_usedfor_c080f222d3 (UsedFor percussion_instrument keep_beat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "percussion instrument is used for make noise", "pln": ["(: cnet_usedfor_3dce7e2ccd (UsedFor percussion_instrument make_noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "percussion instrument is used for making music", "pln": ["(: cnet_usedfor_d33aca6e2f (UsedFor percussion_instrument making_music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "percussion instrument is used for play music", "pln": ["(: cnet_usedfor_5ddb979795 (UsedFor percussion_instrument play_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "percussion instrument is used for striking", "pln": ["(: cnet_usedfor_c68f9e0259 (UsedFor percussion_instrument striking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "performance is used for show talent", "pln": ["(: cnet_usedfor_d6f8aa973f (UsedFor performance show_talent) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "performing is used for actor", "pln": ["(: cnet_usedfor_30c60239df (UsedFor performing actor) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "performing is used for entertaining people", "pln": ["(: cnet_usedfor_e044dbed64 (UsedFor performing entertaining_people) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "performing is used for entertainment", "pln": ["(: cnet_usedfor_94dca05d1c (UsedFor performing entertainment) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "performing is used for singer", "pln": ["(: cnet_usedfor_1d2482db83 (UsedFor performing singer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "perfume is used for aroma", "pln": ["(: cnet_usedfor_9904a21f60 (UsedFor perfume aroma) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "perfume is used for perfume", "pln": ["(: cnet_usedfor_bd34a8e4eb (UsedFor perfume perfume) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "person is used for help", "pln": ["(: cnet_usedfor_cf84e041b0 (UsedFor person help) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "person is used for loving", "pln": ["(: cnet_usedfor_0aa8879b28 (UsedFor person loving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pet is used for companionship", "pln": ["(: cnet_usedfor_da297b2191 (UsedFor pet companionship) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pew is used for kneeling at", "pln": ["(: cnet_usedfor_849dbd9893 (UsedFor pew kneeling_at) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "phillip head screwdriver is used for screwing in phillip head screw", "pln": ["(: cnet_usedfor_0e7aa315e4 (UsedFor phillip_head_screwdriver screwing_in_phillip_head_screw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "phillip head screwdriver is used for unscrewing phillip head screw", "pln": ["(: cnet_usedfor_85e6c47424 (UsedFor phillip_head_screwdriver unscrewing_phillip_head_screw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "phillip screwdriver is used for tighten phillip head screw", "pln": ["(: cnet_usedfor_e3c3b907d3 (UsedFor phillip_screwdriver tighten_phillip_head_screw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "phone is used for calling", "pln": ["(: cnet_usedfor_216ee5b2c4 (UsedFor phone calling) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "phone is used for communication", "pln": ["(: cnet_usedfor_82f92a7710 (UsedFor phone communication) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "phone is used for make call", "pln": ["(: cnet_usedfor_bd2fb03995 (UsedFor phone make_call) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "phone is used for talking", "pln": ["(: cnet_usedfor_2a09fb0536 (UsedFor phone talking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "photo album is used for storing photo", "pln": ["(: cnet_usedfor_c38f6ce28e (UsedFor photo_album storing_photo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "php is used for make dynamic webpage", "pln": ["(: cnet_usedfor_e1ff00e8e0 (UsedFor php make_dynamic_webpage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "piano is used for accompanying orchestra", "pln": ["(: cnet_usedfor_ecaee25f1d (UsedFor piano accompanying_orchestra) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "piano is used for music", "pln": ["(: cnet_usedfor_4018df077e (UsedFor piano music) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "piano is used for performing music", "pln": ["(: cnet_usedfor_f6faf425a0 (UsedFor piano performing_music) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "piccolo is used for play music", "pln": ["(: cnet_usedfor_6e1cfe1650 (UsedFor piccolo play_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "picnic basket is used for carry food", "pln": ["(: cnet_usedfor_bb1efab014 (UsedFor picnic_basket carry_food) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "picnic basket is used for carry food to picnic", "pln": ["(: cnet_usedfor_5f50da8f62 (UsedFor picnic_basket carry_food_to_picnic) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "picnic basket is used for carrying food", "pln": ["(: cnet_usedfor_aa4305f009 (UsedFor picnic_basket carrying_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "picnic basket is used for carrying food to picnic", "pln": ["(: cnet_usedfor_ff7340d08e (UsedFor picnic_basket carrying_food_to_picnic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "piece is used for making whole", "pln": ["(: cnet_usedfor_6b66e43e41 (UsedFor piece making_whole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "piece of change is used for buy stuff", "pln": ["(: cnet_usedfor_ab6588d90f (UsedFor piece_of_change buy_stuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "piece of coal is used for carry to newcastle", "pln": ["(: cnet_usedfor_a65892cab4 (UsedFor piece_of_coal carry_to_newcastle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "piece of information is used for learning", "pln": ["(: cnet_usedfor_cb0ddb192d (UsedFor piece_of_information learning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "piece of paper is used for making paper airplane", "pln": ["(: cnet_usedfor_8a6171233b (UsedFor piece_of_paper making_paper_airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "piece of paper is used for write upon", "pln": ["(: cnet_usedfor_69e4757872 (UsedFor piece_of_paper write_upon) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "piece of paper is used for writing upon", "pln": ["(: cnet_usedfor_9c5e63bb83 (UsedFor piece_of_paper writing_upon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pike is used for pulling", "pln": ["(: cnet_usedfor_ed2051991f (UsedFor pike pulling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pill is used for curing illness", "pln": ["(: cnet_usedfor_03f2ced4c9 (UsedFor pill curing_illness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pill is used for headache", "pln": ["(: cnet_usedfor_ee8003acf9 (UsedFor pill headache) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pill is used for medicine", "pln": ["(: cnet_usedfor_5043fc49b7 (UsedFor pill medicine) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pillow is used for sleeping", "pln": ["(: cnet_usedfor_46e58c8b24 (UsedFor pillow sleeping) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pillow case is used for covering pillow", "pln": ["(: cnet_usedfor_39eaafd757 (UsedFor pillow_case covering_pillow) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pillow case is used for encasing pillow", "pln": ["(: cnet_usedfor_3f382ca905 (UsedFor pillow_case encasing_pillow) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pillow case is used for holding pillow", "pln": ["(: cnet_usedfor_853c1fae92 (UsedFor pillow_case holding_pillow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pillow case is used for protecting pillow from dirt", "pln": ["(: cnet_usedfor_84e5579992 (UsedFor pillow_case protecting_pillow_from_dirt) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pillowcase is used for keeping pillow clean", "pln": ["(: cnet_usedfor_ed75bab03a (UsedFor pillowcase keeping_pillow_clean) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pipe is used for smoke", "pln": ["(: cnet_usedfor_1b8e396c0d (UsedFor pipe smoke) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pistol is used for kill thing", "pln": ["(: cnet_usedfor_20a4afe937 (UsedFor pistol kill_thing) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pistol is used for killing", "pln": ["(: cnet_usedfor_7153522b23 (UsedFor pistol killing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pistol is used for scaring", "pln": ["(: cnet_usedfor_583b94ae1b (UsedFor pistol scaring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pistol is used for shoot", "pln": ["(: cnet_usedfor_ab82b1ee60 (UsedFor pistol shoot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pistol is used for shooting", "pln": ["(: cnet_usedfor_024cb0b8ee (UsedFor pistol shooting) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pistol is used for shooting bullet", "pln": ["(: cnet_usedfor_8b554ba93a (UsedFor pistol shooting_bullet) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pistol is used for target practice", "pln": ["(: cnet_usedfor_bb13bacba6 (UsedFor pistol target_practice) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pit is used for burying thing in", "pln": ["(: cnet_usedfor_206f8b31de (UsedFor pit burying_thing_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pit is used for catch animal", "pln": ["(: cnet_usedfor_29761996d4 (UsedFor pit catch_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "pit is used for trap", "pln": ["(: cnet_usedfor_873cbc9aae (UsedFor pit trap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pitcher mound is used for baseball", "pln": ["(: cnet_usedfor_e919f79abf (UsedFor pitcher_mound baseball) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pitcher mound is used for throwing ball", "pln": ["(: cnet_usedfor_2306aac6a0 (UsedFor pitcher_mound throwing_ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pizza parlor is used for getting pizza", "pln": ["(: cnet_usedfor_934b0d58ee (UsedFor pizza_parlor getting_pizza) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pizzeria is used for buy pizza", "pln": ["(: cnet_usedfor_e38911f03d (UsedFor pizzeria buy_pizza) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pizzeria is used for buying pizza", "pln": ["(: cnet_usedfor_41fbbbb34e (UsedFor pizzeria buying_pizza) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pizzeria is used for eating in", "pln": ["(: cnet_usedfor_946ba6ec2f (UsedFor pizzeria eating_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pizzeria is used for getting pizza", "pln": ["(: cnet_usedfor_86019c7f23 (UsedFor pizzeria getting_pizza) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "place is used for eat to meet friend", "pln": ["(: cnet_usedfor_7b3fc2049d (UsedFor place eat_to_meet_friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "place to stay is used for residing", "pln": ["(: cnet_usedfor_0f74913684 (UsedFor place_to_stay residing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "place to stay is used for sleeping", "pln": ["(: cnet_usedfor_0b5afbb8e1 (UsedFor place_to_stay sleeping) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "plane is used for travel", "pln": ["(: cnet_usedfor_7a7d566ad2 (UsedFor plane travel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "plane ticket is used for board plane", "pln": ["(: cnet_usedfor_54c32cda0b (UsedFor plane_ticket board_plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "plane ticket is used for go on vacation", "pln": ["(: cnet_usedfor_ee1db9f60d (UsedFor plane_ticket go_on_vacation) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "plane ticket is used for travel", "pln": ["(: cnet_usedfor_d5e5a6d769 (UsedFor plane_ticket travel) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "plane is used for flying", "pln": ["(: cnet_usedfor_451236d0d7 (UsedFor plane flying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "planet is used for live on", "pln": ["(: cnet_usedfor_54e0312ce5 (UsedFor planet live_on) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "planning vacation is used for making vacation worthwhile", "pln": ["(: cnet_usedfor_d4450f6567 (UsedFor planning_vacation making_vacation_worthwhile) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "plate is used for eating from", "pln": ["(: cnet_usedfor_13bb22c392 (UsedFor plate eating_from) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "plate is used for hold food", "pln": ["(: cnet_usedfor_ca377fb881 (UsedFor plate hold_food) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "plate is used for holding food", "pln": ["(: cnet_usedfor_15a6ab2511 (UsedFor plate holding_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "plate is used for put food in", "pln": ["(: cnet_usedfor_fc6276ac4c (UsedFor plate put_food_in) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "platform is used for standing on", "pln": ["(: cnet_usedfor_f33822bd8c (UsedFor platform standing_on) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "platform railing is used for safety", "pln": ["(: cnet_usedfor_50c0c63f76 (UsedFor platform_railing safety) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing is used for children", "pln": ["(: cnet_usedfor_0171dc3d5a (UsedFor playing children) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing is used for fun", "pln": ["(: cnet_usedfor_764b392e0a (UsedFor playing fun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing is used for having fun", "pln": ["(: cnet_usedfor_b7099911a7 (UsedFor playing having_fun) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "playing is used for learning", "pln": ["(: cnet_usedfor_c0e2a66659 (UsedFor playing learning) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing is used for relaxing", "pln": ["(: cnet_usedfor_68c0ccee2d (UsedFor playing relaxing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing is used for socialising", "pln": ["(: cnet_usedfor_489168d667 (UsedFor playing socialising) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing ball is used for exercise and entertainment", "pln": ["(: cnet_usedfor_f0b776ef22 (UsedFor playing_ball exercise_and_entertainment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing basketball is used for enjoyment", "pln": ["(: cnet_usedfor_6b6780b7a8 (UsedFor playing_basketball enjoyment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing basketball is used for exercise", "pln": ["(: cnet_usedfor_b263b1a1ba (UsedFor playing_basketball exercise) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing basketball is used for making money", "pln": ["(: cnet_usedfor_a6e2279122 (UsedFor playing_basketball making_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing basketball is used for sport", "pln": ["(: cnet_usedfor_b95d21742f (UsedFor playing_basketball sport) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing card is used for game", "pln": ["(: cnet_usedfor_c8d4669e83 (UsedFor playing_card game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing card is used for having fun", "pln": ["(: cnet_usedfor_a25e2b399d (UsedFor playing_card having_fun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing card is used for passing time", "pln": ["(: cnet_usedfor_7936be0ffd (UsedFor playing_card passing_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing card is used for playing poker", "pln": ["(: cnet_usedfor_6b40cb4eeb (UsedFor playing_card playing_poker) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing chess is used for being competitive", "pln": ["(: cnet_usedfor_a1031f6513 (UsedFor playing_chess being_competitive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing chess is used for entertainment", "pln": ["(: cnet_usedfor_3c2bbc7d75 (UsedFor playing_chess entertainment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing chess is used for exercising mind", "pln": ["(: cnet_usedfor_a00e708c38 (UsedFor playing_chess exercising_mind) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing chess is used for having fun", "pln": ["(: cnet_usedfor_a97fe57781 (UsedFor playing_chess having_fun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing chess is used for socializing", "pln": ["(: cnet_usedfor_355b54c6be (UsedFor playing_chess socializing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing football is used for fun", "pln": ["(: cnet_usedfor_3aef9dd3a6 (UsedFor playing_football fun) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing football is used for having fun", "pln": ["(: cnet_usedfor_3e99891155 (UsedFor playing_football having_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing football is used for learning teamwork", "pln": ["(: cnet_usedfor_ef1f41112b (UsedFor playing_football learning_teamwork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing football is used for money", "pln": ["(: cnet_usedfor_9e69a72f50 (UsedFor playing_football money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing frisbee is used for getting exercise", "pln": ["(: cnet_usedfor_c92792abe9 (UsedFor playing_frisbee getting_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing frisbee is used for playing in park", "pln": ["(: cnet_usedfor_27342c003d (UsedFor playing_frisbee playing_in_park) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "playing game is used for competition", "pln": ["(: cnet_usedfor_41de1d76b9 (UsedFor playing_game competition) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing game is used for enjoyment", "pln": ["(: cnet_usedfor_4f09e17afc (UsedFor playing_game enjoyment) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing game is used for entertainment", "pln": ["(: cnet_usedfor_facb3723da (UsedFor playing_game entertainment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing game is used for fun", "pln": ["(: cnet_usedfor_8c2c9a3afc (UsedFor playing_game fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "playing game is used for learning", "pln": ["(: cnet_usedfor_ded501093c (UsedFor playing_game learning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing game is used for winning", "pln": ["(: cnet_usedfor_71e288a978 (UsedFor playing_game winning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing game of chess is used for challenge", "pln": ["(: cnet_usedfor_ac340eedf7 (UsedFor playing_game_of_chess challenge) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing game of chess is used for challenging", "pln": ["(: cnet_usedfor_bbed0f48c5 (UsedFor playing_game_of_chess challenging) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing game of chess is used for fun", "pln": ["(: cnet_usedfor_f90d69414e (UsedFor playing_game_of_chess fun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing game of chess is used for mental challenge", "pln": ["(: cnet_usedfor_807b852e7e (UsedFor playing_game_of_chess mental_challenge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing game with friend is used for fun", "pln": ["(: cnet_usedfor_e69edfc7a0 (UsedFor playing_game_with_friend fun) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing game with friend is used for relaxation", "pln": ["(: cnet_usedfor_90e2ef11c6 (UsedFor playing_game_with_friend relaxation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing game is used for having fun", "pln": ["(: cnet_usedfor_7e9e864f64 (UsedFor playing_game having_fun) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing game is used for keeping fit", "pln": ["(: cnet_usedfor_b47e664e0f (UsedFor playing_game keeping_fit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing guitar is used for fun", "pln": ["(: cnet_usedfor_2ab34b193f (UsedFor playing_guitar fun) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing guitar is used for making music", "pln": ["(: cnet_usedfor_e2b3b0b494 (UsedFor playing_guitar making_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing harp is used for angel", "pln": ["(: cnet_usedfor_6a5195cf20 (UsedFor playing_harp angel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing harp is used for having fun", "pln": ["(: cnet_usedfor_d70cbed2f9 (UsedFor playing_harp having_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing harp is used for makeing music", "pln": ["(: cnet_usedfor_32fc99a76a (UsedFor playing_harp makeing_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing harp is used for making music", "pln": ["(: cnet_usedfor_9c1fca833f (UsedFor playing_harp making_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing hockey is used for doing sport", "pln": ["(: cnet_usedfor_1b4a28da31 (UsedFor playing_hockey doing_sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing hockey is used for excercise", "pln": ["(: cnet_usedfor_b31368c325 (UsedFor playing_hockey excercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing hockey is used for exercise", "pln": ["(: cnet_usedfor_e8d3074edd (UsedFor playing_hockey exercise) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing hockey is used for fun", "pln": ["(: cnet_usedfor_6a133a8913 (UsedFor playing_hockey fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "playing hockey is used for having fun", "pln": ["(: cnet_usedfor_7f224e7252 (UsedFor playing_hockey having_fun) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing hockey is used for sport", "pln": ["(: cnet_usedfor_75c37ad2fe (UsedFor playing_hockey sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing lacrosse is used for after school activity", "pln": ["(: cnet_usedfor_1309f2c86d (UsedFor playing_lacrosse after_school_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "playing lacrosse is used for competition", "pln": ["(: cnet_usedfor_28db25c97e (UsedFor playing_lacrosse competition) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing lacrosse is used for feeling competitive", "pln": ["(: cnet_usedfor_3c7835357d (UsedFor playing_lacrosse feeling_competitive) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing lacrosse is used for fun and exercise", "pln": ["(: cnet_usedfor_9b771988da (UsedFor playing_lacrosse fun_and_exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing lacrosse is used for having fun", "pln": ["(: cnet_usedfor_067bfef7ab (UsedFor playing_lacrosse having_fun) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing piano is used for entertaining other", "pln": ["(: cnet_usedfor_a79261bb88 (UsedFor playing_piano entertaining_other) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing piano is used for having fun", "pln": ["(: cnet_usedfor_a06707c5df (UsedFor playing_piano having_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing piano is used for increasing motor skill", "pln": ["(: cnet_usedfor_7320624e14 (UsedFor playing_piano increasing_motor_skill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing poker is used for betting", "pln": ["(: cnet_usedfor_4d2e4034bb (UsedFor playing_poker betting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing poker is used for entertainment", "pln": ["(: cnet_usedfor_9db5bee659 (UsedFor playing_poker entertainment) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing poker is used for fun", "pln": ["(: cnet_usedfor_75d35c84d5 (UsedFor playing_poker fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "playing sport is used for athletic", "pln": ["(: cnet_usedfor_98ed92f267 (UsedFor playing_sport athletic) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "playing sports is used for entertainment", "pln": ["(: cnet_usedfor_c10ed796f3 (UsedFor playing_sports entertainment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing sport is used for competition", "pln": ["(: cnet_usedfor_b961ca2796 (UsedFor playing_sport competition) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing sport is used for excercise", "pln": ["(: cnet_usedfor_ba28b0acac (UsedFor playing_sport excercise) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing sport is used for exercise", "pln": ["(: cnet_usedfor_17bcd33cb2 (UsedFor playing_sport exercise) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing sport is used for fun", "pln": ["(: cnet_usedfor_3bfa7a063d (UsedFor playing_sport fun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing sport is used for keeping fit", "pln": ["(: cnet_usedfor_a885bd44cc (UsedFor playing_sport keeping_fit) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing sport is used for recreation", "pln": ["(: cnet_usedfor_c158a5b71c (UsedFor playing_sport recreation) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing sport is used for winning", "pln": ["(: cnet_usedfor_d27282c944 (UsedFor playing_sport winning) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing sport is used for enjoyment", "pln": ["(: cnet_usedfor_49bcb58186 (UsedFor playing_sport enjoyment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing sport is used for entertainment", "pln": ["(: cnet_usedfor_ddc981ee4f (UsedFor playing_sport entertainment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing sport is used for learning teamwork", "pln": ["(: cnet_usedfor_ebf8ed9c99 (UsedFor playing_sport learning_teamwork) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing tennis is used for fun", "pln": ["(: cnet_usedfor_12296354c9 (UsedFor playing_tennis fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing tennis is used for get healthy", "pln": ["(: cnet_usedfor_9c09ed8d7e (UsedFor playing_tennis get_healthy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing violin is used for hobby", "pln": ["(: cnet_usedfor_c326a1d9a6 (UsedFor playing_violin hobby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing violin is used for making music", "pln": ["(: cnet_usedfor_12cf51ae92 (UsedFor playing_violin making_music) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playing violin is used for profession", "pln": ["(: cnet_usedfor_b6b79cec9b (UsedFor playing_violin profession) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playroom is used for children", "pln": ["(: cnet_usedfor_ce0707d46d (UsedFor playroom children) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playroom is used for having fun", "pln": ["(: cnet_usedfor_d64164fe6a (UsedFor playroom having_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "playroom is used for storing toy", "pln": ["(: cnet_usedfor_924940f7da (UsedFor playroom storing_toy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "plumbing is used for portability of water and waste", "pln": ["(: cnet_usedfor_de7da0d198 (UsedFor plumbing portability_of_water_and_waste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "plumbing is used for providing drainage", "pln": ["(: cnet_usedfor_b78f45813e (UsedFor plumbing providing_drainage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "plumbing is used for providing water", "pln": ["(: cnet_usedfor_29fb37bb25 (UsedFor plumbing providing_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pocket notebook is used for keeping note", "pln": ["(: cnet_usedfor_164ae03a89 (UsedFor pocket_notebook keeping_note) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pocket notebook is used for take note", "pln": ["(: cnet_usedfor_07a7640501 (UsedFor pocket_notebook take_note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pocket sized notebook is used for making note", "pln": ["(: cnet_usedfor_49326f33db (UsedFor pocket_sized_notebook making_note) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "poem is used for tell story", "pln": ["(: cnet_usedfor_668d745942 (UsedFor poem tell_story) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "poison is used for kill", "pln": ["(: cnet_usedfor_d3ffcdbfd6 (UsedFor poison kill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "poison is used for kill rat", "pln": ["(: cnet_usedfor_381624e727 (UsedFor poison kill_rat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "political ideology is used for people", "pln": ["(: cnet_usedfor_7cc88017ff (UsedFor political_ideology people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pond is used for fish", "pln": ["(: cnet_usedfor_d122917056 (UsedFor pond fish) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pool is used for add interest to event", "pln": ["(: cnet_usedfor_bcd36ef435 (UsedFor pool add_interest_to_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pool is used for add moisture to air", "pln": ["(: cnet_usedfor_e34e9b0182 (UsedFor pool add_moisture_to_air) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pool is used for dive in", "pln": ["(: cnet_usedfor_f9ef135d73 (UsedFor pool dive_in) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pool is used for diving", "pln": ["(: cnet_usedfor_bf10af9517 (UsedFor pool diving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pool is used for do flip", "pln": ["(: cnet_usedfor_9c9be860f9 (UsedFor pool do_flip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pool is used for enjoy yourself", "pln": ["(: cnet_usedfor_a98adf9a2c (UsedFor pool enjoy_yourself) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pool is used for get out of heat", "pln": ["(: cnet_usedfor_71cce1fdef (UsedFor pool get_out_of_heat) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pool is used for learn to swim", "pln": ["(: cnet_usedfor_05b64c6064 (UsedFor pool learn_to_swim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pool is used for not peeing in", "pln": ["(: cnet_usedfor_ffc979230a (UsedFor pool not_peeing_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pool is used for pee", "pln": ["(: cnet_usedfor_ac95f303c4 (UsedFor pool pee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pool is used for swiming", "pln": ["(: cnet_usedfor_f002fb48d6 (UsedFor pool swiming) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pool is used for swimming", "pln": ["(: cnet_usedfor_e5fb555982 (UsedFor pool swimming) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pool is used for swimming in", "pln": ["(: cnet_usedfor_d1e34cbc7f (UsedFor pool swimming_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "porch is used for relaxing", "pln": ["(: cnet_usedfor_5be50f01fc (UsedFor porch relaxing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "portable shower head is used for take shower", "pln": ["(: cnet_usedfor_272f69ee9f (UsedFor portable_shower_head take_shower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "post office is used for mail letter", "pln": ["(: cnet_usedfor_04c180887b (UsedFor post_office mail_letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "post office is used for mailing letter", "pln": ["(: cnet_usedfor_262df7c784 (UsedFor post_office mailing_letter) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "post office is used for receive letter", "pln": ["(: cnet_usedfor_6215ef5028 (UsedFor post_office receive_letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "post office is used for recieving package", "pln": ["(: cnet_usedfor_9b99546a3e (UsedFor post_office recieving_package) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "post office is used for sending letter", "pln": ["(: cnet_usedfor_71a05fd8e1 (UsedFor post_office sending_letter) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "poster is used for decorating room", "pln": ["(: cnet_usedfor_342d1de624 (UsedFor poster decorating_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "posting message is used for communicating", "pln": ["(: cnet_usedfor_a4cc67bc2d (UsedFor posting_message communicating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pot is used for grow plant", "pln": ["(: cnet_usedfor_787aed4872 (UsedFor pot grow_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "pot is used for holding water while boiling", "pln": ["(: cnet_usedfor_6d7109635d (UsedFor pot holding_water_while_boiling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pot is used for make soup", "pln": ["(: cnet_usedfor_3350fec77c (UsedFor pot make_soup) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pot is used for pissing in", "pln": ["(: cnet_usedfor_fc77444ab3 (UsedFor pot pissing_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pot is used for planting plant", "pln": ["(: cnet_usedfor_06b08a0c1b (UsedFor pot planting_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pot is used for storing thing in", "pln": ["(: cnet_usedfor_2af6b89e24 (UsedFor pot storing_thing_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pouch is used for carrying with", "pln": ["(: cnet_usedfor_be3e837239 (UsedFor pouch carrying_with) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pouch is used for holding", "pln": ["(: cnet_usedfor_49b01f84c7 (UsedFor pouch holding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pouch is used for holding very small item", "pln": ["(: cnet_usedfor_39f10c8794 (UsedFor pouch holding_very_small_item) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "powder horn is used for storing gun powder", "pln": ["(: cnet_usedfor_0d368b505d (UsedFor powder_horn storing_gun_powder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "praying is used for expressing love", "pln": ["(: cnet_usedfor_a967a0c47d (UsedFor praying expressing_love) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "praying is used for talking with god", "pln": ["(: cnet_usedfor_3a200ad8e4 (UsedFor praying talking_with_god) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "president is used for leading country", "pln": ["(: cnet_usedfor_6c70120f41 (UsedFor president leading_country) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "president is used for running country", "pln": ["(: cnet_usedfor_723a5e1ad7 (UsedFor president running_country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "pretending is used for deception", "pln": ["(: cnet_usedfor_3002c05955 (UsedFor pretending deception) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "printer is used for printing documents", "pln": ["(: cnet_usedfor_4b168ce70a (UsedFor printer printing_documents) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pretending is used for having fun", "pln": ["(: cnet_usedfor_ee03d8f30d (UsedFor pretending having_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pretending is used for using imagination", "pln": ["(: cnet_usedfor_f93c53484a (UsedFor pretending using_imagination) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "printer is used for printing document", "pln": ["(: cnet_usedfor_e804c04838 (UsedFor printer printing_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "prison is used for punishment", "pln": ["(: cnet_usedfor_301515ce7e (UsedFor prison punishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "prison is used for punish criminal", "pln": ["(: cnet_usedfor_9ebfe12469 (UsedFor prison punish_criminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "procreating is used for having child", "pln": ["(: cnet_usedfor_e2d50871ad (UsedFor procreating having_child) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "procreating is used for making baby", "pln": ["(: cnet_usedfor_1ea29a64a3 (UsedFor procreating making_baby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "procreating is used for making more people", "pln": ["(: cnet_usedfor_859c185a0f (UsedFor procreating making_more_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "procreating is used for sex", "pln": ["(: cnet_usedfor_d287ee3c76 (UsedFor procreating sex) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "procreation is used for survival of specy", "pln": ["(: cnet_usedfor_85fa03c488 (UsedFor procreation survival_of_specy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "production line is used for assemble", "pln": ["(: cnet_usedfor_b174867dc9 (UsedFor production_line assemble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "production line is used for produce", "pln": ["(: cnet_usedfor_86cd625d52 (UsedFor production_line produce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "production line is used for product", "pln": ["(: cnet_usedfor_76c9d1e9c1 (UsedFor production_line product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "programming language is used for command computer", "pln": ["(: cnet_usedfor_f5c31c84eb (UsedFor programming_language command_computer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "projectile is used for throwing", "pln": ["(: cnet_usedfor_f3e67aac2a (UsedFor projectile throwing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "projectile is used for hit", "pln": ["(: cnet_usedfor_37c290173a (UsedFor projectile hit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "projectile is used for shoot", "pln": ["(: cnet_usedfor_3b1619b236 (UsedFor projectile shoot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "projectile is used for strike", "pln": ["(: cnet_usedfor_c76257df9a (UsedFor projectile strike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "projectile ball is used for throw", "pln": ["(: cnet_usedfor_87a5359fa0 (UsedFor projectile_ball throw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "prosthesis is used for practical uses", "pln": ["(: cnet_usedfor_485be36c07 (UsedFor prosthesis practical_uses) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "proposing to woman is used for asking to marry", "pln": ["(: cnet_usedfor_d2a77e4f4c (UsedFor proposing_to_woman asking_to_marry) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "proposing to woman is used for getting married", "pln": ["(: cnet_usedfor_09aa2f140c (UsedFor proposing_to_woman getting_married) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "proposing to woman is used for mariage", "pln": ["(: cnet_usedfor_fe4de54631 (UsedFor proposing_to_woman mariage) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "proposing to woman is used for marriage", "pln": ["(: cnet_usedfor_7cdaa32ece (UsedFor proposing_to_woman marriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "proposing to woman is used for men in love", "pln": ["(: cnet_usedfor_eaa775f491 (UsedFor proposing_to_woman men_in_love) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "prosthesis is used for practical use", "pln": ["(: cnet_usedfor_c0b1c62809 (UsedFor prosthesis practical_use) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "prosthesis is used for replace limb", "pln": ["(: cnet_usedfor_f44606e01c (UsedFor prosthesis replace_limb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "prosthesis is used for replace lost limb", "pln": ["(: cnet_usedfor_89af50360d (UsedFor prosthesis replace_lost_limb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "prosthesis is used for replacement of missing limb", "pln": ["(: cnet_usedfor_2639ceca5b (UsedFor prosthesis replacement_of_missing_limb) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "prosthesis is used for replacing limb", "pln": ["(: cnet_usedfor_688fceeee2 (UsedFor prosthesis replacing_limb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "prosthesis is used for replacing missing limb", "pln": ["(: cnet_usedfor_8c2638b085 (UsedFor prosthesis replacing_missing_limb) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "prostitute is used for sex", "pln": ["(: cnet_usedfor_e21826116b (UsedFor prostitute sex) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pub is used for buying beer", "pln": ["(: cnet_usedfor_670fc38432 (UsedFor pub buying_beer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pub is used for drinking", "pln": ["(: cnet_usedfor_0c2f3246d3 (UsedFor pub drinking) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pub is used for drinking alcohol", "pln": ["(: cnet_usedfor_04078384d4 (UsedFor pub drinking_alcohol) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pub is used for drinking beer", "pln": ["(: cnet_usedfor_19ccda689f (UsedFor pub drinking_beer) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pub is used for drinking with guy", "pln": ["(: cnet_usedfor_18ee5c8165 (UsedFor pub drinking_with_guy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pub is used for english bar", "pln": ["(: cnet_usedfor_38a9219cba (UsedFor pub english_bar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pub is used for having beer", "pln": ["(: cnet_usedfor_a1461de507 (UsedFor pub having_beer) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pub is used for having drink", "pln": ["(: cnet_usedfor_67e98469b4 (UsedFor pub having_drink) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pub is used for meeting friend", "pln": ["(: cnet_usedfor_c61525c87e (UsedFor pub meeting_friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pub is used for meeting new people", "pln": ["(: cnet_usedfor_8a5d16d532 (UsedFor pub meeting_new_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pub is used for meeting with friend", "pln": ["(: cnet_usedfor_a5451772cb (UsedFor pub meeting_with_friend) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pub is used for playing dart", "pln": ["(: cnet_usedfor_af729612c0 (UsedFor pub playing_dart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pub is used for seeing mate", "pln": ["(: cnet_usedfor_1b48516aa2 (UsedFor pub seeing_mate) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pub is used for social meeting with friend", "pln": ["(: cnet_usedfor_5cbea511e0 (UsedFor pub social_meeting_with_friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pub is used for socialising", "pln": ["(: cnet_usedfor_3eae3a2750 (UsedFor pub socialising) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pub is used for socializing", "pln": ["(: cnet_usedfor_6fc0427a17 (UsedFor pub socializing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pub is used for talking to friend", "pln": ["(: cnet_usedfor_105bef2558 (UsedFor pub talking_to_friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "puck is used for playing hockey", "pln": ["(: cnet_usedfor_d303d2955d (UsedFor puck playing_hockey) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pulpit is used for bully", "pln": ["(: cnet_usedfor_af73e1d606 (UsedFor pulpit bully) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pulpit is used for preach", "pln": ["(: cnet_usedfor_1cc68e4bf9 (UsedFor pulpit preach) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "pulpit is used for preacher", "pln": ["(: cnet_usedfor_1d6d2471fb (UsedFor pulpit preacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "pulpit is used for preaching", "pln": ["(: cnet_usedfor_4d1d894afc (UsedFor pulpit preaching) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "punching is used for expressing anger", "pln": ["(: cnet_usedfor_61ffd3a96d (UsedFor punching expressing_anger) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "punching is used for getting revenge", "pln": ["(: cnet_usedfor_343005f189 (UsedFor punching getting_revenge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "punching is used for hurting", "pln": ["(: cnet_usedfor_841224979b (UsedFor punching hurting) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "punishing is used for modifying behavior", "pln": ["(: cnet_usedfor_429c92a221 (UsedFor punishing modifying_behavior) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "punishing is used for retribution", "pln": ["(: cnet_usedfor_9e42dd4bdc (UsedFor punishing retribution) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "punishing is used for revenge", "pln": ["(: cnet_usedfor_7720772834 (UsedFor punishing revenge) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "punishing is used for teaching", "pln": ["(: cnet_usedfor_b441dfe453 (UsedFor punishing teaching) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "purchasing cellular phone is used for staying in touch", "pln": ["(: cnet_usedfor_a40016c975 (UsedFor purchasing_cellular_phone staying_in_touch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "purse is used for carry money", "pln": ["(: cnet_usedfor_951387d20c (UsedFor purse carry_money) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "purse is used for carrying money", "pln": ["(: cnet_usedfor_83ed80fe6e (UsedFor purse carrying_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "push button is used for detonate", "pln": ["(: cnet_usedfor_d0a51b0961 (UsedFor push_button detonate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "push button is used for operate", "pln": ["(: cnet_usedfor_42dcc5e5d3 (UsedFor push_button operate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "push button is used for trip", "pln": ["(: cnet_usedfor_33547e3120 (UsedFor push_button trip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "puzzle is used for distraction", "pln": ["(: cnet_usedfor_aafb5a1999 (UsedFor puzzle distraction) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "puzzle is used for engaging mind", "pln": ["(: cnet_usedfor_a3355f8872 (UsedFor puzzle engaging_mind) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "puzzle is used for enjoying", "pln": ["(: cnet_usedfor_a34c833ae9 (UsedFor puzzle enjoying) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "puzzle is used for entertainment", "pln": ["(: cnet_usedfor_c7af03e207 (UsedFor puzzle entertainment) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "puzzle is used for killing time", "pln": ["(: cnet_usedfor_2efdd4afbb (UsedFor puzzle killing_time) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "puzzle is used for mental challenge", "pln": ["(: cnet_usedfor_1dc5eb82ce (UsedFor puzzle mental_challenge) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "puzzle is used for mental stimulation", "pln": ["(: cnet_usedfor_566f6cc5a2 (UsedFor puzzle mental_stimulation) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "puzzle is used for solving", "pln": ["(: cnet_usedfor_b5f2e2ebfc (UsedFor puzzle solving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "queen is used for chess", "pln": ["(: cnet_usedfor_bb1d0a38be (UsedFor queen chess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "queen is used for keeping nation in peace", "pln": ["(: cnet_usedfor_d289b5aebd (UsedFor queen keeping_nation_in_peace) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "queen is used for play chess", "pln": ["(: cnet_usedfor_d482f5c825 (UsedFor queen play_chess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "queen is used for rule", "pln": ["(: cnet_usedfor_9daa8263f3 (UsedFor queen rule) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "queen is used for ruling country", "pln": ["(: cnet_usedfor_c958db6d83 (UsedFor queen ruling_country) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "queuer is used for lining up", "pln": ["(: cnet_usedfor_cb2d01e360 (UsedFor queuer lining_up) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "quill is used for holding and distributing ink", "pln": ["(: cnet_usedfor_5019f5e353 (UsedFor quill holding_and_distributing_ink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "quill is used for holding ink", "pln": ["(: cnet_usedfor_269c03afc6 (UsedFor quill holding_ink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "quill is used for writing", "pln": ["(: cnet_usedfor_72a4a9de38 (UsedFor quill writing) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "quill brush is used for painting", "pln": ["(: cnet_usedfor_14aba52f8b (UsedFor quill_brush painting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "quill brush is used for write", "pln": ["(: cnet_usedfor_48876e3436 (UsedFor quill_brush write) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "quill brush is used for writing", "pln": ["(: cnet_usedfor_e25674c6bf (UsedFor quill_brush writing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "quill brush is used for writing with ink", "pln": ["(: cnet_usedfor_0f1ef2b070 (UsedFor quill_brush writing_with_ink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "radiator is used for heat room", "pln": ["(: cnet_usedfor_a85a426b09 (UsedFor radiator heat_room) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "radiator is used for heating room", "pln": ["(: cnet_usedfor_d1943ef8ed (UsedFor radiator heating_room) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "radio is used for hear new", "pln": ["(: cnet_usedfor_4a84529468 (UsedFor radio hear_new) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "radio is used for listen to new", "pln": ["(: cnet_usedfor_cb20333da1 (UsedFor radio listen_to_new) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "radio is used for listening new", "pln": ["(: cnet_usedfor_3595b2727b (UsedFor radio listening_new) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "radio is used for listening to", "pln": ["(: cnet_usedfor_74d0177b00 (UsedFor radio listening_to) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "radio is used for listening to talk show", "pln": ["(: cnet_usedfor_fbc9c452ed (UsedFor radio listening_to_talk_show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "radio beam is used for steer", "pln": ["(: cnet_usedfor_b072d333ed (UsedFor radio_beam steer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "radio studio is used for broadcasting", "pln": ["(: cnet_usedfor_1c9848f9b6 (UsedFor radio_studio broadcasting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "radio studio is used for record music", "pln": ["(: cnet_usedfor_0d10c580c3 (UsedFor radio_studio record_music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "rag is used for cleaning", "pln": ["(: cnet_usedfor_07cc94c072 (UsedFor rag cleaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "railing is used for guidance", "pln": ["(: cnet_usedfor_06cb30c6c9 (UsedFor railing guidance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "railing is used for protection", "pln": ["(: cnet_usedfor_8594ead286 (UsedFor railing protection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ranch is used for breed cattle", "pln": ["(: cnet_usedfor_6d051c2e31 (UsedFor ranch breed_cattle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ranch is used for cattle", "pln": ["(: cnet_usedfor_03e73a11d5 (UsedFor ranch cattle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ranch is used for living in", "pln": ["(: cnet_usedfor_11bfe0c482 (UsedFor ranch living_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ranch house is used for living accomodation on ranch", "pln": ["(: cnet_usedfor_941d745bf1 (UsedFor ranch_house living_accomodation_on_ranch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "ranch house is used for living in", "pln": ["(: cnet_usedfor_709b3a0875 (UsedFor ranch_house living_in) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ranch house is used for people to live in", "pln": ["(: cnet_usedfor_7a1bd864f5 (UsedFor ranch_house people_to_live_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "razor is used for cut", "pln": ["(: cnet_usedfor_80dc0e0da5 (UsedFor razor cut) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "razor is used for cutting", "pln": ["(: cnet_usedfor_bd528f8040 (UsedFor razor cutting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "razor is used for shave", "pln": ["(: cnet_usedfor_7a91726cd0 (UsedFor razor shave) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "razor is used for shave with", "pln": ["(: cnet_usedfor_6fdbc1fa0f (UsedFor razor shave_with) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "razor is used for shaving", "pln": ["(: cnet_usedfor_c180cca615 (UsedFor razor shaving) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "reading is used for acquiring knowledge", "pln": ["(: cnet_usedfor_e74644269e (UsedFor reading acquiring_knowledge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "reading is used for education", "pln": ["(: cnet_usedfor_786ab2c70d (UsedFor reading education) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "reading is used for enjoyment", "pln": ["(: cnet_usedfor_2f3cd01f4e (UsedFor reading enjoyment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "reading is used for learning", "pln": ["(: cnet_usedfor_74f5188b39 (UsedFor reading learning) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "reading is used for learning new things", "pln": ["(: cnet_usedfor_fd65fc8abe (UsedFor reading learning_new_things) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "reading newspaper is used for finding out current events", "pln": ["(: cnet_usedfor_603bc64017 (UsedFor reading_newspaper finding_out_current_events) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "reading is used for learning new thing", "pln": ["(: cnet_usedfor_bd10bf559b (UsedFor reading learning_new_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "reading is used for passing time", "pln": ["(: cnet_usedfor_252e00e682 (UsedFor reading passing_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "reading is used for pleasure", "pln": ["(: cnet_usedfor_f8a7edf91a (UsedFor reading pleasure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "reading book is used for enjoyment", "pln": ["(: cnet_usedfor_ddbb037820 (UsedFor reading_book enjoyment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "reading book is used for entertaining yourself", "pln": ["(: cnet_usedfor_67b5ea7138 (UsedFor reading_book entertaining_yourself) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "reading book is used for fun", "pln": ["(: cnet_usedfor_3357c218a8 (UsedFor reading_book fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "reading book is used for relaxing", "pln": ["(: cnet_usedfor_60ebd226be (UsedFor reading_book relaxing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "reading letter is used for obtaining information", "pln": ["(: cnet_usedfor_fd29e5e42f (UsedFor reading_letter obtaining_information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "reading magazine is used for education", "pln": ["(: cnet_usedfor_74f8a046d4 (UsedFor reading_magazine education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "reading magazine is used for entertainment", "pln": ["(: cnet_usedfor_4aead13d65 (UsedFor reading_magazine entertainment) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "reading magazine is used for learning new", "pln": ["(: cnet_usedfor_b79e84ef11 (UsedFor reading_magazine learning_new) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "reading newspaper is used for being informed", "pln": ["(: cnet_usedfor_f6e52553c8 (UsedFor reading_newspaper being_informed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "reading newspaper is used for finding out current event", "pln": ["(: cnet_usedfor_8a7c608c2c (UsedFor reading_newspaper finding_out_current_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "reading newspaper is used for killing time", "pln": ["(: cnet_usedfor_e785264352 (UsedFor reading_newspaper killing_time) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "reading newspaper is used for learning", "pln": ["(: cnet_usedfor_731874e51c (UsedFor reading_newspaper learning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "reading to children is used for educating", "pln": ["(: cnet_usedfor_6234ecf8bd (UsedFor reading_to_children educating) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "reading to children is used for education", "pln": ["(: cnet_usedfor_2f26a21990 (UsedFor reading_to_children education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "reading to children is used for enjoyment", "pln": ["(: cnet_usedfor_94fdc15f31 (UsedFor reading_to_children enjoyment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "reading to children is used for entertaining", "pln": ["(: cnet_usedfor_da34bbf039 (UsedFor reading_to_children entertaining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "reading to children is used for teaching", "pln": ["(: cnet_usedfor_2adede1d6e (UsedFor reading_to_children teaching) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "receiving degree is used for being honored", "pln": ["(: cnet_usedfor_7a89636056 (UsedFor receiving_degree being_honored) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "receiving degree is used for graduate", "pln": ["(: cnet_usedfor_876440ee5c (UsedFor receiving_degree graduate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "receiving degree is used for making more money", "pln": ["(: cnet_usedfor_5eb2ee748a (UsedFor receiving_degree making_more_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "receiving degree is used for student", "pln": ["(: cnet_usedfor_af1ce4b43f (UsedFor receiving_degree student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "reception is used for celebrate", "pln": ["(: cnet_usedfor_d7a4b231ef (UsedFor reception celebrate) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "reception area is used for meeting people", "pln": ["(: cnet_usedfor_fe557a8759 (UsedFor reception_area meeting_people) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "reception desk is used for answer incoming call", "pln": ["(: cnet_usedfor_abbe1ecc8f (UsedFor reception_desk answer_incoming_call) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "record library is used for storing record", "pln": ["(: cnet_usedfor_59389934fb (UsedFor record_library storing_record) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "recording somethign is used for having to listen to later", "pln": ["(: cnet_usedfor_e9e4b5e926 (UsedFor recording_somethign having_to_listen_to_later) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "recording somethign is used for keeping record", "pln": ["(: cnet_usedfor_c0923ef385 (UsedFor recording_somethign keeping_record) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "recording somethign is used for listening to later", "pln": ["(: cnet_usedfor_b6535d6c29 (UsedFor recording_somethign listening_to_later) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "recording somethign is used for saving for future", "pln": ["(: cnet_usedfor_29daa76281 (UsedFor recording_somethign saving_for_future) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "refuse is used for landfills", "pln": ["(: cnet_usedfor_76f41c33aa (UsedFor refuse landfills) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "refridgerator is used for cool can of cola", "pln": ["(: cnet_usedfor_a1b81790eb (UsedFor refridgerator cool_can_of_cola) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "refridgerator is used for keeping perishable food fresh", "pln": ["(: cnet_usedfor_8a3df157ec (UsedFor refridgerator keeping_perishable_food_fresh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "refrigerator is used for causing jello to jell", "pln": ["(: cnet_usedfor_f5b230b1e8 (UsedFor refrigerator causing_jello_to_jell) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "refrigerator is used for chilling drink", "pln": ["(: cnet_usedfor_940bda0859 (UsedFor refrigerator chilling_drink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "refrigerator is used for chilling food", "pln": ["(: cnet_usedfor_c365fe2dcd (UsedFor refrigerator chilling_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "refrigerator is used for extending life of perishable", "pln": ["(: cnet_usedfor_1483dd3f8e (UsedFor refrigerator extending_life_of_perishable) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "refrigerator is used for keep food cold", "pln": ["(: cnet_usedfor_84867da865 (UsedFor refrigerator keep_food_cold) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "refrigerator is used for keeping food cold", "pln": ["(: cnet_usedfor_9a2a77131a (UsedFor refrigerator keeping_food_cold) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "refrigerator is used for keeping food from spoiling", "pln": ["(: cnet_usedfor_61cf637b4d (UsedFor refrigerator keeping_food_from_spoiling) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "refrigerator is used for keeping meat from spoiling", "pln": ["(: cnet_usedfor_f7b084187d (UsedFor refrigerator keeping_meat_from_spoiling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "refrigerator is used for storing food", "pln": ["(: cnet_usedfor_2de365f5c9 (UsedFor refrigerator storing_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "refrigerator freezer is used for keeping food longer", "pln": ["(: cnet_usedfor_b712b5f9d2 (UsedFor refrigerator_freezer keeping_food_longer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "refrigerator freezer is used for storing food for long period", "pln": ["(: cnet_usedfor_b11aabd0d8 (UsedFor refrigerator_freezer storing_food_for_long_period) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "refuse is used for landfill", "pln": ["(: cnet_usedfor_7181e5d895 (UsedFor refuse landfill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "registry office is used for registering", "pln": ["(: cnet_usedfor_66b0957a16 (UsedFor registry_office registering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "relational database management system is used for manage structured data", "pln": ["(: cnet_usedfor_f82ec5c369 (UsedFor relational_database_management_system manage_structured_data) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "relaxing is used for feeling good", "pln": ["(: cnet_usedfor_f84190cd6e (UsedFor relaxing feeling_good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "relaxing is used for reducing stress", "pln": ["(: cnet_usedfor_a117b4178a (UsedFor relaxing reducing_stress) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "releasing energy is used for working", "pln": ["(: cnet_usedfor_554a76d465 (UsedFor releasing_energy working) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "remembering is used for knowing", "pln": ["(: cnet_usedfor_484cd08144 (UsedFor remembering knowing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "remembering is used for love", "pln": ["(: cnet_usedfor_b42e9d3021 (UsedFor remembering love) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "remembering phone number is used for keeping in touch", "pln": ["(: cnet_usedfor_67b8b37e32 (UsedFor remembering_phone_number keeping_in_touch) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "remote control is used for change channel", "pln": ["(: cnet_usedfor_e4399d7334 (UsedFor remote_control change_channel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "remote control is used for control device from distance", "pln": ["(: cnet_usedfor_fc6e9d93aa (UsedFor remote_control control_device_from_distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "rented apartment is used for live in", "pln": ["(: cnet_usedfor_36703af1a5 (UsedFor rented_apartment live_in) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "rented apartment is used for living in", "pln": ["(: cnet_usedfor_acd5d1c2ca (UsedFor rented_apartment living_in) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "repairing umbrella is used for saving money", "pln": ["(: cnet_usedfor_8cc7e797ab (UsedFor repairing_umbrella saving_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "repairing umbrella is used for staying dry", "pln": ["(: cnet_usedfor_d1b84aee00 (UsedFor repairing_umbrella staying_dry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "reproducing is used for continuing specy", "pln": ["(: cnet_usedfor_5387e13a26 (UsedFor reproducing continuing_specy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "reproducing is used for distributing", "pln": ["(: cnet_usedfor_7de3d70f35 (UsedFor reproducing distributing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "reproducing is used for increasing copy", "pln": ["(: cnet_usedfor_499a510577 (UsedFor reproducing increasing_copy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "reproducing is used for making copy", "pln": ["(: cnet_usedfor_ba008063d1 (UsedFor reproducing making_copy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "restaurant is used for eat in", "pln": ["(: cnet_usedfor_655a51c67d (UsedFor restaurant eat_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "restaurant is used for eating", "pln": ["(: cnet_usedfor_a2481963df (UsedFor restaurant eating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "restaurant is used for eating out", "pln": ["(: cnet_usedfor_f5c0732cf1 (UsedFor restaurant eating_out) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "restaurant bill is used for paying for meal", "pln": ["(: cnet_usedfor_11c8d124f7 (UsedFor restaurant_bill paying_for_meal) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "restaurant dining area is used for eating", "pln": ["(: cnet_usedfor_a9ee7eeff1 (UsedFor restaurant_dining_area eating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "restaurant storage area is used for store food", "pln": ["(: cnet_usedfor_4a3a6b1b86 (UsedFor restaurant_storage_area store_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "restaurant table is used for dining", "pln": ["(: cnet_usedfor_69267239e5 (UsedFor restaurant_table dining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "restaurant table is used for eating at", "pln": ["(: cnet_usedfor_dd5a40e85c (UsedFor restaurant_table eating_at) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "resting is used for being refreshed", "pln": ["(: cnet_usedfor_a4a338a930 (UsedFor resting being_refreshed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "resting is used for dream", "pln": ["(: cnet_usedfor_38134edc76 (UsedFor resting dream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "resting is used for regaining energy", "pln": ["(: cnet_usedfor_661a283106 (UsedFor resting regaining_energy) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "resting is used for rejuvenation", "pln": ["(: cnet_usedfor_f6bfed7629 (UsedFor resting rejuvenation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "resting is used for relaxing", "pln": ["(: cnet_usedfor_52c8025d6c (UsedFor resting relaxing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "resting is used for taking nap", "pln": ["(: cnet_usedfor_f677a7cfb7 (UsedFor resting taking_nap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "return ticket is used for get home", "pln": ["(: cnet_usedfor_bdc3ee3b34 (UsedFor return_ticket get_home) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "return ticket is used for go back home", "pln": ["(: cnet_usedfor_aa73575732 (UsedFor return_ticket go_back_home) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "return ticket is used for going home", "pln": ["(: cnet_usedfor_6b82eed797 (UsedFor return_ticket going_home) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "returning to work is used for earning more money", "pln": ["(: cnet_usedfor_7ab8aa91a9 (UsedFor returning_to_work earning_more_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "revolver is used for killing thingss", "pln": ["(: cnet_usedfor_12b2355568 (UsedFor revolver killing_thingss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "revolver is used for shoot at target", "pln": ["(: cnet_usedfor_714616db27 (UsedFor revolver shoot_at_target) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "revolver is used for shoot bullet", "pln": ["(: cnet_usedfor_84e1a4c729 (UsedFor revolver shoot_bullet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "revolver is used for shoot person", "pln": ["(: cnet_usedfor_e44b9ea5bf (UsedFor revolver shoot_person) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "revolving door is used for entering building", "pln": ["(: cnet_usedfor_f8e9452425 (UsedFor revolving_door entering_building) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ribbon is used for making bow", "pln": ["(: cnet_usedfor_e4802e988d (UsedFor ribbon making_bow) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ribbon is used for tying bow", "pln": ["(: cnet_usedfor_99f4cf1a85 (UsedFor ribbon tying_bow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ribbon is used for tying hair", "pln": ["(: cnet_usedfor_fcc59d4dd3 (UsedFor ribbon tying_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ribbon is used for wrapping present", "pln": ["(: cnet_usedfor_8b1a06af74 (UsedFor ribbon wrapping_present) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "riding bicycle is used for competition", "pln": ["(: cnet_usedfor_7fa2a628a7 (UsedFor riding_bicycle competition) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "riding bicycle is used for excercise", "pln": ["(: cnet_usedfor_931bb82a67 (UsedFor riding_bicycle excercise) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "riding bicycle is used for exercise", "pln": ["(: cnet_usedfor_a3f39b927d (UsedFor riding_bicycle exercise) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "riding bicycle is used for health", "pln": ["(: cnet_usedfor_8d9b818e46 (UsedFor riding_bicycle health) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "riding bicycle is used for sport", "pln": ["(: cnet_usedfor_1087865e65 (UsedFor riding_bicycle sport) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "riding bicycle is used for transportation", "pln": ["(: cnet_usedfor_180c68b915 (UsedFor riding_bicycle transportation) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "riding bike is used for exercise", "pln": ["(: cnet_usedfor_356a3f071c (UsedFor riding_bike exercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "riding bike is used for having fun", "pln": ["(: cnet_usedfor_29d7a7d0e5 (UsedFor riding_bike having_fun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "riding bike is used for kid", "pln": ["(: cnet_usedfor_3dd049e46a (UsedFor riding_bike kid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "riding bike is used for transportation", "pln": ["(: cnet_usedfor_c9dce3ea41 (UsedFor riding_bike transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "riding horse is used for cowboy", "pln": ["(: cnet_usedfor_bd28c114d1 (UsedFor riding_horse cowboy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "riding horse is used for having fun", "pln": ["(: cnet_usedfor_94b667f410 (UsedFor riding_horse having_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "rifle is used for hunt", "pln": ["(: cnet_usedfor_ed46467ef4 (UsedFor rifle hunt) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "rifle is used for hunting", "pln": ["(: cnet_usedfor_ec062ca2a3 (UsedFor rifle hunting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "rifle is used for kill thing", "pln": ["(: cnet_usedfor_d4d97dd3cf (UsedFor rifle kill_thing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "rifle is used for killing", "pln": ["(: cnet_usedfor_bbe4df0330 (UsedFor rifle killing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "rifle is used for murder", "pln": ["(: cnet_usedfor_f2368f510b (UsedFor rifle murder) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "river is used for transportation of goods", "pln": ["(: cnet_usedfor_fd36aebd06 (UsedFor river transportation_of_goods) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "rifle is used for shoot animal", "pln": ["(: cnet_usedfor_5e5e75bb21 (UsedFor rifle shoot_animal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "rifle is used for shoot thing", "pln": ["(: cnet_usedfor_9f2f0027df (UsedFor rifle shoot_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "rifle is used for shooting", "pln": ["(: cnet_usedfor_9df30127c8 (UsedFor rifle shooting) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "rifle is used for shooting deer", "pln": ["(: cnet_usedfor_6058ec3dc8 (UsedFor rifle shooting_deer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "rifle is used for target practice", "pln": ["(: cnet_usedfor_aaaa8267dc (UsedFor rifle target_practice) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ring is used for decoration", "pln": ["(: cnet_usedfor_02c40b9650 (UsedFor ring decoration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ring is used for engage", "pln": ["(: cnet_usedfor_262392091e (UsedFor ring engage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ring is used for wearing", "pln": ["(: cnet_usedfor_49dc932a4a (UsedFor ring wearing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ring binder is used for holding paper", "pln": ["(: cnet_usedfor_6e32f372c2 (UsedFor ring_binder holding_paper) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ring binder is used for storing document", "pln": ["(: cnet_usedfor_57ae657eea (UsedFor ring_binder storing_document) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "river is used for fishing", "pln": ["(: cnet_usedfor_4c272f1643 (UsedFor river fishing) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "river is used for swimming", "pln": ["(: cnet_usedfor_b5c115bd91 (UsedFor river swimming) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "river is used for transportation of good", "pln": ["(: cnet_usedfor_dea51dabf7 (UsedFor river transportation_of_good) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "road is used for traveler", "pln": ["(: cnet_usedfor_2ebba58582 (UsedFor road traveler) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "robot is used for build car", "pln": ["(: cnet_usedfor_b84bc0e73c (UsedFor robot build_car) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "rocking chair is used for relax", "pln": ["(: cnet_usedfor_b82177756f (UsedFor rocking_chair relax) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "rocking chair is used for relax in", "pln": ["(: cnet_usedfor_7f523e2cf2 (UsedFor rocking_chair relax_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "rocking chair is used for rock baby to sleep", "pln": ["(: cnet_usedfor_c373ee228e (UsedFor rocking_chair rock_baby_to_sleep) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "rocking chair is used for sitting down on", "pln": ["(: cnet_usedfor_8c75bd1f7d (UsedFor rocking_chair sitting_down_on) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "rocking chair is used for sitting in", "pln": ["(: cnet_usedfor_d00d34196d (UsedFor rocking_chair sitting_in) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "rod is used for catch fish", "pln": ["(: cnet_usedfor_6a986abfaf (UsedFor rod catch_fish) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "roof is used for keeping rain off", "pln": ["(: cnet_usedfor_55264c69f7 (UsedFor roof keeping_rain_off) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "roof is used for protection from element", "pln": ["(: cnet_usedfor_49c9511de5 (UsedFor roof protection_from_element) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "rook is used for playing chess", "pln": ["(: cnet_usedfor_53fdb1a3b3 (UsedFor rook playing_chess) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "rook is used for protecting king", "pln": ["(: cnet_usedfor_987e9daef9 (UsedFor rook protecting_king) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "room is used for sleep", "pln": ["(: cnet_usedfor_edaeae74dd (UsedFor room sleep) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "room is used for store item", "pln": ["(: cnet_usedfor_06c2b49a0f (UsedFor room store_item) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "rope is used for tying thing", "pln": ["(: cnet_usedfor_db8466103c (UsedFor rope tying_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "rope is used for tie thing", "pln": ["(: cnet_usedfor_9b62f3a69f (UsedFor rope tie_thing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "rotary file is used for storing information", "pln": ["(: cnet_usedfor_36dd2475b8 (UsedFor rotary_file storing_information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "round trip ticket is used for travel", "pln": ["(: cnet_usedfor_51ae9cea44 (UsedFor round_trip_ticket travel) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "row house is used for live in", "pln": ["(: cnet_usedfor_628a4d9f8f (UsedFor row_house live_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "row house is used for live in city", "pln": ["(: cnet_usedfor_7054f3f6ec (UsedFor row_house live_in_city) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "rowboat is used for rowing", "pln": ["(: cnet_usedfor_2595d3e61e (UsedFor rowboat rowing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "rubber is used for preventing pregnancy", "pln": ["(: cnet_usedfor_9f28b52be3 (UsedFor rubber preventing_pregnancy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "rubber duck is used for fun", "pln": ["(: cnet_usedfor_7c226affca (UsedFor rubber_duck fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "rubber stamp is used for mark", "pln": ["(: cnet_usedfor_a56404e0d3 (UsedFor rubber_stamp mark) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "rug is used for cover floor", "pln": ["(: cnet_usedfor_26c6177136 (UsedFor rug cover_floor) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "rug is used for decoration", "pln": ["(: cnet_usedfor_b1a313639f (UsedFor rug decoration) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "rug is used for floor covering", "pln": ["(: cnet_usedfor_b39780d3d5 (UsedFor rug floor_covering) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "rug is used for warmth", "pln": ["(: cnet_usedfor_2d98fb3c13 (UsedFor rug warmth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "rug is used for carpet", "pln": ["(: cnet_usedfor_270cc6c82b (UsedFor rug carpet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "rug is used for cover", "pln": ["(: cnet_usedfor_c541cdd3cc (UsedFor rug cover) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "rug is used for insulate", "pln": ["(: cnet_usedfor_85374bab74 (UsedFor rug insulate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "ruler is used for measuring", "pln": ["(: cnet_usedfor_749709337a (UsedFor ruler measuring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "running is used for excercise", "pln": ["(: cnet_usedfor_f7dbf23cc6 (UsedFor running excercise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "running is used for fun", "pln": ["(: cnet_usedfor_2275162db3 (UsedFor running fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "running after ball is used for catching", "pln": ["(: cnet_usedfor_51a9b7ed67 (UsedFor running_after_ball catching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "running after ball is used for catching ball", "pln": ["(: cnet_usedfor_a6569bcf57 (UsedFor running_after_ball catching_ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "running after ball is used for didn t catch", "pln": ["(: cnet_usedfor_b707f3981b (UsedFor running_after_ball didn_t_catch) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "running after ball is used for fun", "pln": ["(: cnet_usedfor_267e3666e9 (UsedFor running_after_ball fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "running in marathon is used for accomplishment", "pln": ["(: cnet_usedfor_a144801312 (UsedFor running_in_marathon accomplishment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "running in marathon is used for athlete", "pln": ["(: cnet_usedfor_5e2e9d6736 (UsedFor running_in_marathon athlete) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "running in marathon is used for challenging yourself", "pln": ["(: cnet_usedfor_2e44f1c031 (UsedFor running_in_marathon challenging_yourself) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "running in marathon is used for exercise", "pln": ["(: cnet_usedfor_db65a6ba0e (UsedFor running_in_marathon exercise) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "running in marathon is used for having fun", "pln": ["(: cnet_usedfor_80900ffc2a (UsedFor running_in_marathon having_fun) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "running in marathon is used for health", "pln": ["(: cnet_usedfor_3a3e74daa5 (UsedFor running_in_marathon health) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "running marathon is used for challenging yourself", "pln": ["(: cnet_usedfor_7c25f64585 (UsedFor running_marathon challenging_yourself) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "running marathon is used for endurance", "pln": ["(: cnet_usedfor_2b6c6cdaf2 (UsedFor running_marathon endurance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "running marathon is used for getting in shape", "pln": ["(: cnet_usedfor_558e54ecea (UsedFor running_marathon getting_in_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "running out of steam is used for losing energy", "pln": ["(: cnet_usedfor_aeeed67ab2 (UsedFor running_out_of_steam losing_energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "running twenty six mile is used for marathon", "pln": ["(: cnet_usedfor_aee56e078e (UsedFor running_twenty_six_mile marathon) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "running twenty six mile is used for marathon runner", "pln": ["(: cnet_usedfor_f8fa4cc6af (UsedFor running_twenty_six_mile marathon_runner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "running twenty six mile is used for marathoner", "pln": ["(: cnet_usedfor_b1c7a4e4ca (UsedFor running_twenty_six_mile marathoner) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "runway is used for beauty contest", "pln": ["(: cnet_usedfor_4c33fb796d (UsedFor runway beauty_contest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "runway is used for land space shuttle", "pln": ["(: cnet_usedfor_e25f289089 (UsedFor runway land_space_shuttle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "runway is used for landing airplane", "pln": ["(: cnet_usedfor_f5fed5c29a (UsedFor runway landing_airplane) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "runway is used for landing plane", "pln": ["(: cnet_usedfor_3215119cd4 (UsedFor runway landing_plane) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "runway is used for plane to takeoff from", "pln": ["(: cnet_usedfor_110b967f07 (UsedFor runway plane_to_takeoff_from) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "saddle is used for ride", "pln": ["(: cnet_usedfor_04e62d6e23 (UsedFor saddle ride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "saddle is used for riding donkey", "pln": ["(: cnet_usedfor_7ee287ed59 (UsedFor saddle riding_donkey) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "saddle is used for riding horse", "pln": ["(: cnet_usedfor_2d60a107da (UsedFor saddle riding_horse) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "saddle is used for riding hors", "pln": ["(: cnet_usedfor_9b7a31628f (UsedFor saddle riding_hors) (STV 1.0 0.9693))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "safety pin is used for holding fabric together", "pln": ["(: cnet_usedfor_270639af0e (UsedFor safety_pin holding_fabric_together) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "salad bowl is used for contain salad", "pln": ["(: cnet_usedfor_c59a40a995 (UsedFor salad_bowl contain_salad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "salad bowl is used for eat salad from", "pln": ["(: cnet_usedfor_2cc25f1f30 (UsedFor salad_bowl eat_salad_from) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "salad bowl is used for serving salad", "pln": ["(: cnet_usedfor_305c9a849b (UsedFor salad_bowl serving_salad) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "salad shaker is used for shake salad", "pln": ["(: cnet_usedfor_7147193923 (UsedFor salad_shaker shake_salad) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "salad spinner is used for make salad", "pln": ["(: cnet_usedfor_b3830fbfc3 (UsedFor salad_spinner make_salad) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sale is used for getting rid of item", "pln": ["(: cnet_usedfor_3939713f0a (UsedFor sale getting_rid_of_item) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "salon is used for hair cutting", "pln": ["(: cnet_usedfor_5fd999f8a6 (UsedFor salon hair_cutting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "saloon is used for beer", "pln": ["(: cnet_usedfor_b8a59c1f94 (UsedFor saloon beer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "saloon is used for drinking", "pln": ["(: cnet_usedfor_6cad1a836e (UsedFor saloon drinking) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "satisfying appetites with minimum effort is used for conserving energy", "pln": ["(: cnet_usedfor_c769aac376 (UsedFor satisfying_appetites_with_minimum_effort conserving_energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "salt is used for curing meat", "pln": ["(: cnet_usedfor_e4ca95a0a5 (UsedFor salt curing_meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "salt is used for flavouring food", "pln": ["(: cnet_usedfor_213ba06e37 (UsedFor salt flavouring_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "salt is used for kill slug", "pln": ["(: cnet_usedfor_fef16b4148 (UsedFor salt kill_slug) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "salt is used for melt ice", "pln": ["(: cnet_usedfor_466af5af72 (UsedFor salt melt_ice) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "salt is used for poison field", "pln": ["(: cnet_usedfor_d4f0b73905 (UsedFor salt poison_field) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "salt is used for preserving food", "pln": ["(: cnet_usedfor_60244dce9d (UsedFor salt preserving_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "salt is used for season food", "pln": ["(: cnet_usedfor_106a1354fa (UsedFor salt season_food) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "salt is used for seasoning", "pln": ["(: cnet_usedfor_e46f4a6877 (UsedFor salt seasoning) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "salt is used for seasoning food", "pln": ["(: cnet_usedfor_92ab8af109 (UsedFor salt seasoning_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "salt is used for soften water", "pln": ["(: cnet_usedfor_8491d84cb9 (UsedFor salt soften_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "saltshaker is used for distributing salt", "pln": ["(: cnet_usedfor_e0cfaf7086 (UsedFor saltshaker distributing_salt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "saltshaker is used for salting food", "pln": ["(: cnet_usedfor_c8895cddd6 (UsedFor saltshaker salting_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sand is used for make glass", "pln": ["(: cnet_usedfor_e7d0c2c9d0 (UsedFor sand make_glass) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "satchel bag is used for carry item", "pln": ["(: cnet_usedfor_57dbeb5218 (UsedFor satchel_bag carry_item) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "satchel bag is used for carry thing in", "pln": ["(: cnet_usedfor_fca7e4d3f4 (UsedFor satchel_bag carry_thing_in) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "satelite is used for communication", "pln": ["(: cnet_usedfor_d6a96f79f2 (UsedFor satelite communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "satisfying appetite with minimum effort is used for conserving energy", "pln": ["(: cnet_usedfor_aeee8821f2 (UsedFor satisfying_appetite_with_minimum_effort conserving_energy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sativa is used for cerebral uppity high", "pln": ["(: cnet_usedfor_447c9a5e96 (UsedFor sativa cerebral_uppity_high) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "saucepan is used for boil egg", "pln": ["(: cnet_usedfor_df473a7868 (UsedFor saucepan boil_egg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "saucepan is used for heat food", "pln": ["(: cnet_usedfor_69a5d94874 (UsedFor saucepan heat_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "saucer is used for holding spill from cup", "pln": ["(: cnet_usedfor_e0fbd744b9 (UsedFor saucer holding_spill_from_cup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "saw is used for cut lumber", "pln": ["(: cnet_usedfor_0f5e6492d4 (UsedFor saw cut_lumber) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "saw is used for cut wood", "pln": ["(: cnet_usedfor_f770abae4f (UsedFor saw cut_wood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "saw is used for cutting", "pln": ["(: cnet_usedfor_a1396224f9 (UsedFor saw cutting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "saw is used for cutting thing such as wood", "pln": ["(: cnet_usedfor_bf0f735bb3 (UsedFor saw cutting_thing_such_as_wood) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "saw is used for cutting wood", "pln": ["(: cnet_usedfor_60b0a0b35d (UsedFor saw cutting_wood) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "saw is used for sawing", "pln": ["(: cnet_usedfor_2807ffe5b7 (UsedFor saw sawing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "saxophone is used for blowing", "pln": ["(: cnet_usedfor_d90b976884 (UsedFor saxophone blowing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "saxophone is used for play jazz", "pln": ["(: cnet_usedfor_d3ce32616c (UsedFor saxophone play_jazz) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "scale is used for determining weight", "pln": ["(: cnet_usedfor_91ef1d30be (UsedFor scale determining_weight) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "scale is used for measure thing", "pln": ["(: cnet_usedfor_606b3c0a0f (UsedFor scale measure_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "scale is used for measure weight", "pln": ["(: cnet_usedfor_53c4746fdb (UsedFor scale measure_weight) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "scale is used for measuring weight", "pln": ["(: cnet_usedfor_aa7c206588 (UsedFor scale measuring_weight) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "scale is used for weigh object", "pln": ["(: cnet_usedfor_5e1f4782c0 (UsedFor scale weigh_object) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "scale is used for weigh people or thing", "pln": ["(: cnet_usedfor_ae1affb4fc (UsedFor scale weigh_people_or_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "scale is used for weighing item", "pln": ["(: cnet_usedfor_1243be7489 (UsedFor scale weighing_item) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "scalpel is used for cutting", "pln": ["(: cnet_usedfor_2c11f644ee (UsedFor scalpel cutting) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "scenery is used for enhancing sales value", "pln": ["(: cnet_usedfor_ae406b716f (UsedFor scenery enhancing_sales_value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "scenery is used for enhancing sale value", "pln": ["(: cnet_usedfor_7f62ea9fd2 (UsedFor scenery enhancing_sale_value) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "school is used for learning", "pln": ["(: cnet_usedfor_75c019b3c2 (UsedFor school learning) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "school is used for producing educated people", "pln": ["(: cnet_usedfor_9d61ab9107 (UsedFor school producing_educated_people) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "school is used for studying", "pln": ["(: cnet_usedfor_7e7f67ec3b (UsedFor school studying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "school is used for teaching student", "pln": ["(: cnet_usedfor_5540827aed (UsedFor school teaching_student) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "school cafeteria is used for eating", "pln": ["(: cnet_usedfor_212ebbfda5 (UsedFor school_cafeteria eating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "school cafeteria is used for eating lunch", "pln": ["(: cnet_usedfor_ae7dfcef24 (UsedFor school_cafeteria eating_lunch) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "school cafeteria is used for feeding school children", "pln": ["(: cnet_usedfor_0365be4390 (UsedFor school_cafeteria feeding_school_children) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "school cafeteria is used for feeding schoolchildren", "pln": ["(: cnet_usedfor_56972901b6 (UsedFor school_cafeteria feeding_schoolchildren) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "science is used for discovery", "pln": ["(: cnet_usedfor_8be73e78cc (UsedFor science discovery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "science is used for find out truth", "pln": ["(: cnet_usedfor_83629f609f (UsedFor science find_out_truth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "science is used for learn more about nature", "pln": ["(: cnet_usedfor_b601855fa4 (UsedFor science learn_more_about_nature) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "scissor is used for cut", "pln": ["(: cnet_usedfor_5cb2e64d9e (UsedFor scissor cut) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "scoring home run is used for baseball player", "pln": ["(: cnet_usedfor_7dc204a992 (UsedFor scoring_home_run baseball_player) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "scoring home run is used for success", "pln": ["(: cnet_usedfor_29a76d74cb (UsedFor scoring_home_run success) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "scoring homer is used for baseball game", "pln": ["(: cnet_usedfor_609b75d4ea (UsedFor scoring_homer baseball_game) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "scoring homer is used for helping team", "pln": ["(: cnet_usedfor_35631ceb8b (UsedFor scoring_homer helping_team) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "scoring homer is used for winning game", "pln": ["(: cnet_usedfor_4f9deb8919 (UsedFor scoring_homer winning_game) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "screw is used for holding together", "pln": ["(: cnet_usedfor_6182e65306 (UsedFor screw holding_together) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "screwdriver is used for inserting screw", "pln": ["(: cnet_usedfor_0902d82e07 (UsedFor screwdriver inserting_screw) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "screwdriver is used for tighten loose screw", "pln": ["(: cnet_usedfor_29ec25e6fe (UsedFor screwdriver tighten_loose_screw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "screwdriver is used for tighten screw", "pln": ["(: cnet_usedfor_454091b50f (UsedFor screwdriver tighten_screw) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "screwdriver is used for unscrewing screw", "pln": ["(: cnet_usedfor_bc5a32cc8d (UsedFor screwdriver unscrewing_screw) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sculpting gel is used for style hair", "pln": ["(: cnet_usedfor_5d0172b2f7 (UsedFor sculpting_gel style_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sculpting gel is used for styling hair", "pln": ["(: cnet_usedfor_ea6f020dc7 (UsedFor sculpting_gel styling_hair) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sea is used for sailing", "pln": ["(: cnet_usedfor_9796081eb5 (UsedFor sea sailing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sea is used for sailing boat in", "pln": ["(: cnet_usedfor_8f12c22f24 (UsedFor sea sailing_boat_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sea is used for sailing on", "pln": ["(: cnet_usedfor_9f6b6e00f6 (UsedFor sea sailing_on) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sea is used for swim in", "pln": ["(: cnet_usedfor_3e0d09ea14 (UsedFor sea swim_in) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seafood restaurant is used for eating", "pln": ["(: cnet_usedfor_7397a6a0d4 (UsedFor seafood_restaurant eating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seafood restaurant is used for eating lobster", "pln": ["(: cnet_usedfor_577e4d60c1 (UsedFor seafood_restaurant eating_lobster) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seafood restaurant is used for eating seafood", "pln": ["(: cnet_usedfor_6ff24f60fb (UsedFor seafood_restaurant eating_seafood) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seafood restaurant is used for serving fish", "pln": ["(: cnet_usedfor_83cef1f92c (UsedFor seafood_restaurant serving_fish) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seafood restaurant is used for serving seafood", "pln": ["(: cnet_usedfor_1d2565d907 (UsedFor seafood_restaurant serving_seafood) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seat is used for relax", "pln": ["(: cnet_usedfor_67cbd10344 (UsedFor seat relax) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "second violin is used for playing music", "pln": ["(: cnet_usedfor_43840e4394 (UsedFor second_violin playing_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seeing art is used for appreciation", "pln": ["(: cnet_usedfor_af85cd3d99 (UsedFor seeing_art appreciation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seeing art is used for education", "pln": ["(: cnet_usedfor_1cf8026f4b (UsedFor seeing_art education) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seeing art is used for enjoyment", "pln": ["(: cnet_usedfor_eb22fce901 (UsedFor seeing_art enjoyment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seeing art is used for entertainment", "pln": ["(: cnet_usedfor_3a8657cbb4 (UsedFor seeing_art entertainment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seeing art is used for geek", "pln": ["(: cnet_usedfor_bd703c1b8a (UsedFor seeing_art geek) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "seeing art is used for relaxation", "pln": ["(: cnet_usedfor_422a3c5043 (UsedFor seeing_art relaxation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seeing artifact is used for learning about past", "pln": ["(: cnet_usedfor_70d2a4c2c4 (UsedFor seeing_artifact learning_about_past) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seeing band is used for being entertained", "pln": ["(: cnet_usedfor_74dc126d60 (UsedFor seeing_band being_entertained) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seeing band is used for enjoying music", "pln": ["(: cnet_usedfor_f4abcc28a1 (UsedFor seeing_band enjoying_music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seeing band is used for enjoyment", "pln": ["(: cnet_usedfor_cf39d7cd2c (UsedFor seeing_band enjoyment) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seeing band is used for excitement", "pln": ["(: cnet_usedfor_7c3e36222a (UsedFor seeing_band excitement) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seeing band is used for having fun", "pln": ["(: cnet_usedfor_b8b6f5fd96 (UsedFor seeing_band having_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "seeing band is used for hearing music", "pln": ["(: cnet_usedfor_316f509616 (UsedFor seeing_band hearing_music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "seeing exhibits is used for museum visitors", "pln": ["(: cnet_usedfor_6d2f12beb0 (UsedFor seeing_exhibits museum_visitors) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "seeing old things is used for learning about history", "pln": ["(: cnet_usedfor_f4055d3866 (UsedFor seeing_old_things learning_about_history) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "seeing old things is used for remembering past", "pln": ["(: cnet_usedfor_5092e45019 (UsedFor seeing_old_things remembering_past) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "self adhesive label is used for sticking on things", "pln": ["(: cnet_usedfor_d6b311f6ee (UsedFor self_adhesive_label sticking_on_things) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seeing band is used for listen to music", "pln": ["(: cnet_usedfor_2fc6e553d9 (UsedFor seeing_band listen_to_music) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seeing band is used for listening to music", "pln": ["(: cnet_usedfor_936f1c50dc (UsedFor seeing_band listening_to_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seeing band is used for seeing performer", "pln": ["(: cnet_usedfor_0c5df1727e (UsedFor seeing_band seeing_performer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seeing exciting story is used for entertainment", "pln": ["(: cnet_usedfor_41fdb515b3 (UsedFor seeing_exciting_story entertainment) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seeing exciting story is used for having fun", "pln": ["(: cnet_usedfor_0314c468d0 (UsedFor seeing_exciting_story having_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seeing exciting story is used for passing time", "pln": ["(: cnet_usedfor_bcf4408cac (UsedFor seeing_exciting_story passing_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seeing exhibit is used for museum visitor", "pln": ["(: cnet_usedfor_2da163a785 (UsedFor seeing_exhibit museum_visitor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seeing favorite show is used for enjoyment", "pln": ["(: cnet_usedfor_ab80db2dbd (UsedFor seeing_favorite_show enjoyment) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seeing favorite show is used for hell of", "pln": ["(: cnet_usedfor_b2ea859cc9 (UsedFor seeing_favorite_show hell_of) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seeing favorite show is used for relaxing", "pln": ["(: cnet_usedfor_be96daa7de (UsedFor seeing_favorite_show relaxing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seeing movie is used for being entertained", "pln": ["(: cnet_usedfor_f2db7b5d05 (UsedFor seeing_movie being_entertained) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seeing movie is used for entertainment", "pln": ["(: cnet_usedfor_91c6ff5a1e (UsedFor seeing_movie entertainment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seeing movie is used for relaxing", "pln": ["(: cnet_usedfor_f318359ade (UsedFor seeing_movie relaxing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seeing old thing is used for bringing back memory", "pln": ["(: cnet_usedfor_0ee15df82d (UsedFor seeing_old_thing bringing_back_memory) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seeing old thing is used for learning about history", "pln": ["(: cnet_usedfor_d2713ce38d (UsedFor seeing_old_thing learning_about_history) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seeing old thing is used for remembering past", "pln": ["(: cnet_usedfor_4e8186ddea (UsedFor seeing_old_thing remembering_past) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seeing people play game is used for entertaining", "pln": ["(: cnet_usedfor_68369b38f9 (UsedFor seeing_people_play_game entertaining) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seeing people play game is used for fun", "pln": ["(: cnet_usedfor_93ee77a180 (UsedFor seeing_people_play_game fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "seeing people play game is used for having fun", "pln": ["(: cnet_usedfor_8b098bb57b (UsedFor seeing_people_play_game having_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "segway is used for transportation", "pln": ["(: cnet_usedfor_8a42de6948 (UsedFor segway transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "self adhesive label is used for labeling", "pln": ["(: cnet_usedfor_057a1cccff (UsedFor self_adhesive_label labeling) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "self adhesive label is used for stick to", "pln": ["(: cnet_usedfor_26955cf60c (UsedFor self_adhesive_label stick_to) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "self adhesive label is used for sticking on thing", "pln": ["(: cnet_usedfor_dd7729dcdc (UsedFor self_adhesive_label sticking_on_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "self adhesive label is used for sticking to thing", "pln": ["(: cnet_usedfor_cf25623205 (UsedFor self_adhesive_label sticking_to_thing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "semen is used for making baby", "pln": ["(: cnet_usedfor_c2cdfc6f81 (UsedFor semen making_baby) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sending criminal to prison is used for preventing future crime", "pln": ["(: cnet_usedfor_740937ac2a (UsedFor sending_criminal_to_prison preventing_future_crime) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sending criminal to prison is used for protecting society", "pln": ["(: cnet_usedfor_463542290b (UsedFor sending_criminal_to_prison protecting_society) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sending criminal to prison is used for punishing criminal", "pln": ["(: cnet_usedfor_d014f5e4b1 (UsedFor sending_criminal_to_prison punishing_criminal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "sending criminal to prison is used for punishment", "pln": ["(: cnet_usedfor_df68eeabee (UsedFor sending_criminal_to_prison punishment) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sending e mail is used for communicating quickly", "pln": ["(: cnet_usedfor_233956831d (UsedFor sending_e_mail communicating_quickly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sending e mail is used for communication", "pln": ["(: cnet_usedfor_92c6a431d5 (UsedFor sending_e_mail communication) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sending e mail is used for fun", "pln": ["(: cnet_usedfor_95c28075c0 (UsedFor sending_e_mail fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sending e mail is used for staying in touch", "pln": ["(: cnet_usedfor_f635f0e843 (UsedFor sending_e_mail staying_in_touch) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "separate shower is used for privacy", "pln": ["(: cnet_usedfor_1ff5c4c868 (UsedFor separate_shower privacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "service counter is used for information", "pln": ["(: cnet_usedfor_008b0888f1 (UsedFor service_counter information) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "serving customer is used for waitress", "pln": ["(: cnet_usedfor_8423401cd3 (UsedFor serving_customer waitress) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "serving justice is used for police", "pln": ["(: cnet_usedfor_319d362df3 (UsedFor serving_justice police) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "serving trolley is used for serve food", "pln": ["(: cnet_usedfor_cc5bd0543c (UsedFor serving_trolley serve_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "serving trolley is used for transporting food", "pln": ["(: cnet_usedfor_2b4c03a86e (UsedFor serving_trolley transporting_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "sesame is used for make sauce", "pln": ["(: cnet_usedfor_45edacf577 (UsedFor sesame make_sauce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "sewing is used for fixing clothes", "pln": ["(: cnet_usedfor_ffdbfbd6da (UsedFor sewing fixing_clothes) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "sewing is used for making clothes", "pln": ["(: cnet_usedfor_2e45e9079f (UsedFor sewing making_clothes) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "setting cup on table is used for convenience", "pln": ["(: cnet_usedfor_91afe0a550 (UsedFor setting_cup_on_table convenience) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "setting cup on table is used for freeing hand", "pln": ["(: cnet_usedfor_d840e3e180 (UsedFor setting_cup_on_table freeing_hand) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "setting cup on table is used for having hand free", "pln": ["(: cnet_usedfor_67ef962eda (UsedFor setting_cup_on_table having_hand_free) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sewing is used for connecting cloth", "pln": ["(: cnet_usedfor_08db8993a0 (UsedFor sewing connecting_cloth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sewing is used for fixing clothe", "pln": ["(: cnet_usedfor_e8ed441b2e (UsedFor sewing fixing_clothe) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sewing is used for making clothe", "pln": ["(: cnet_usedfor_c5b45076dc (UsedFor sewing making_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sewing is used for making clothing", "pln": ["(: cnet_usedfor_a538a8b1fd (UsedFor sewing making_clothing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sewing is used for mending clothing", "pln": ["(: cnet_usedfor_273f27e23b (UsedFor sewing mending_clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sewing is used for repair of clothing", "pln": ["(: cnet_usedfor_2e59346c8e (UsedFor sewing repair_of_clothing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sex is used for making baby", "pln": ["(: cnet_usedfor_2c3584e9ff (UsedFor sex making_baby) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sex is used for procreation", "pln": ["(: cnet_usedfor_f687665bd8 (UsedFor sex procreation) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shade is used for blocking sunlight", "pln": ["(: cnet_usedfor_a52fd4bf42 (UsedFor shade blocking_sunlight) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shade is used for look cool", "pln": ["(: cnet_usedfor_b8b7cdae5a (UsedFor shade look_cool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "shallow water is used for learning how to swim", "pln": ["(: cnet_usedfor_c3dcae62ea (UsedFor shallow_water learning_how_to_swim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shallow water is used for wade", "pln": ["(: cnet_usedfor_5f58d8d37e (UsedFor shallow_water wade) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shallow water is used for wading", "pln": ["(: cnet_usedfor_42ea945b47 (UsedFor shallow_water wading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shampoo and conditioner is used for clean hair", "pln": ["(: cnet_usedfor_c608fcc3aa (UsedFor shampoo_and_conditioner clean_hair) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shampoo and conditioner is used for washing and conditioning hair", "pln": ["(: cnet_usedfor_7794831d0e (UsedFor shampoo_and_conditioner washing_and_conditioning_hair) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shampoo and conditioner is used for washing hair", "pln": ["(: cnet_usedfor_e927d50cd7 (UsedFor shampoo_and_conditioner washing_hair) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shareholder is used for investing in company", "pln": ["(: cnet_usedfor_2f55f02ade (UsedFor shareholder investing_in_company) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sharp object is used for open envelope", "pln": ["(: cnet_usedfor_2434101b39 (UsedFor sharp_object open_envelope) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sheet is used for bed", "pln": ["(: cnet_usedfor_e3309694c4 (UsedFor sheet bed) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sheet is used for covering bed", "pln": ["(: cnet_usedfor_e694ca1789 (UsedFor sheet covering_bed) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sheet is used for sleeping under", "pln": ["(: cnet_usedfor_991c3e658d (UsedFor sheet sleeping_under) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sheet is used for stay warm while sleeping", "pln": ["(: cnet_usedfor_694b6a4e20 (UsedFor sheet stay_warm_while_sleeping) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sheet of paper is used for designing", "pln": ["(: cnet_usedfor_7ecb235d71 (UsedFor sheet_of_paper designing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sheet of paper is used for make paper airplane", "pln": ["(: cnet_usedfor_5b58461d13 (UsedFor sheet_of_paper make_paper_airplane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sheet of paper is used for printing", "pln": ["(: cnet_usedfor_5b56bdc3b5 (UsedFor sheet_of_paper printing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sheet of paper is used for writing letter", "pln": ["(: cnet_usedfor_e416fb6584 (UsedFor sheet_of_paper writing_letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "sheet of paper is used for writing on", "pln": ["(: cnet_usedfor_12edbbfb02 (UsedFor sheet_of_paper writing_on) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shelf is used for holding book", "pln": ["(: cnet_usedfor_66ce9e5c78 (UsedFor shelf holding_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shelf is used for store thing", "pln": ["(: cnet_usedfor_d25f6507b6 (UsedFor shelf store_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shelf is used for storing book", "pln": ["(: cnet_usedfor_3457c01a82 (UsedFor shelf storing_book) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shirt is used for being dressed", "pln": ["(: cnet_usedfor_e1252d54e7 (UsedFor shirt being_dressed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shirt is used for cover torso", "pln": ["(: cnet_usedfor_e9afd7b7fa (UsedFor shirt cover_torso) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shirt is used for covering", "pln": ["(: cnet_usedfor_6a613b0761 (UsedFor shirt covering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shirt is used for wearing", "pln": ["(: cnet_usedfor_534b6c6ee2 (UsedFor shirt wearing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shoe is used for foot protection", "pln": ["(: cnet_usedfor_39786a76ba (UsedFor shoe foot_protection) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "shoe is used for protect feet", "pln": ["(: cnet_usedfor_766f40ba6d (UsedFor shoe protect_feet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "shop is used for selling goods", "pln": ["(: cnet_usedfor_888205cddd (UsedFor shop selling_goods) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "shopping bag is used for carrying groceries", "pln": ["(: cnet_usedfor_be50d1cb71 (UsedFor shopping_bag carrying_groceries) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shoe is used for protecting foot", "pln": ["(: cnet_usedfor_da2acfe1e4 (UsedFor shoe protecting_foot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shoe is used for walking", "pln": ["(: cnet_usedfor_a3f3b4201b (UsedFor shoe walking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shoe is used for wearing", "pln": ["(: cnet_usedfor_a0c23084c3 (UsedFor shoe wearing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shop is used for buy thing", "pln": ["(: cnet_usedfor_c15b34334d (UsedFor shop buy_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shop is used for selling good", "pln": ["(: cnet_usedfor_bdc369e973 (UsedFor shop selling_good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shopping is used for buying good", "pln": ["(: cnet_usedfor_f43d902015 (UsedFor shopping buying_good) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shopping is used for buying thing", "pln": ["(: cnet_usedfor_ba87054223 (UsedFor shopping buying_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shopping bag is used for carry thing", "pln": ["(: cnet_usedfor_65ad742db2 (UsedFor shopping_bag carry_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shopping bag is used for carrying grocery", "pln": ["(: cnet_usedfor_25a87886e5 (UsedFor shopping_bag carrying_grocery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shopping basket is used for carry product", "pln": ["(: cnet_usedfor_3618acf6d9 (UsedFor shopping_basket carry_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shopping basket is used for hold grocery", "pln": ["(: cnet_usedfor_3c4d217fed (UsedFor shopping_basket hold_grocery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shopping basket is used for shop with", "pln": ["(: cnet_usedfor_b6c637f0c2 (UsedFor shopping_basket shop_with) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shopping center is used for do all shopping", "pln": ["(: cnet_usedfor_7b77882678 (UsedFor shopping_center do_all_shopping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shopping mall is used for shop", "pln": ["(: cnet_usedfor_630ec94e62 (UsedFor shopping_mall shop) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shore is used for surfing", "pln": ["(: cnet_usedfor_3d6ab8031f (UsedFor shore surfing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shore is used for swim", "pln": ["(: cnet_usedfor_0a046678c3 (UsedFor shore swim) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shoulder bag is used for carry thing", "pln": ["(: cnet_usedfor_1c29d7d589 (UsedFor shoulder_bag carry_thing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shoulder bag is used for carrying item", "pln": ["(: cnet_usedfor_1bc4d3b185 (UsedFor shoulder_bag carrying_item) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shoulder bag is used for carrying thing", "pln": ["(: cnet_usedfor_baa685a39a (UsedFor shoulder_bag carrying_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shovel is used for dig grave", "pln": ["(: cnet_usedfor_7d356bd993 (UsedFor shovel dig_grave) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shovel is used for digging hole", "pln": ["(: cnet_usedfor_7dd46877f8 (UsedFor shovel digging_hole) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shovel is used for dig hole", "pln": ["(: cnet_usedfor_63d65bde20 (UsedFor shovel dig_hole) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "show is used for audience", "pln": ["(: cnet_usedfor_68bfc5e57b (UsedFor show audience) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "show is used for entertain", "pln": ["(: cnet_usedfor_f83801980a (UsedFor show entertain) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "show is used for entertainment", "pln": ["(: cnet_usedfor_1095857635 (UsedFor show entertainment) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shower is used for bathing", "pln": ["(: cnet_usedfor_9cb910e9e2 (UsedFor shower bathing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shower curtain is used for have privacy", "pln": ["(: cnet_usedfor_fb96ebb00f (UsedFor shower_curtain have_privacy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shower door is used for entry and exit to shower", "pln": ["(: cnet_usedfor_4dfc416f36 (UsedFor shower_door entry_and_exit_to_shower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shower door is used for keep water off bathroom floor", "pln": ["(: cnet_usedfor_1cbcbe26c2 (UsedFor shower_door keep_water_off_bathroom_floor) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shower door is used for keeping bathroom from getting wet", "pln": ["(: cnet_usedfor_0ce01be9b0 (UsedFor shower_door keeping_bathroom_from_getting_wet) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shower door is used for privacy", "pln": ["(: cnet_usedfor_25a2f092a3 (UsedFor shower_door privacy) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "shower stall is used for take shower", "pln": ["(: cnet_usedfor_7e0cd275a3 (UsedFor shower_stall take_shower) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "showroom is used for displaying things", "pln": ["(: cnet_usedfor_b4440c0419 (UsedFor showroom displaying_things) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "shower stall is used for water plant", "pln": ["(: cnet_usedfor_5c020f039c (UsedFor shower_stall water_plant) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "showroom is used for displaying car", "pln": ["(: cnet_usedfor_f96541dab7 (UsedFor showroom displaying_car) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "showroom is used for displaying thing", "pln": ["(: cnet_usedfor_6ec684b31a (UsedFor showroom displaying_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "side chair is used for sitting", "pln": ["(: cnet_usedfor_4ceaf9862c (UsedFor side_chair sitting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sidewalk is used for rollerblade", "pln": ["(: cnet_usedfor_82137c5a05 (UsedFor sidewalk rollerblade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "sidewalk is used for walking dog", "pln": ["(: cnet_usedfor_ea73aaf9f4 (UsedFor sidewalk walking_dog) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sign is used for direction", "pln": ["(: cnet_usedfor_dd527215ec (UsedFor sign direction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sign is used for telling", "pln": ["(: cnet_usedfor_2bb3a5cc2f (UsedFor sign telling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "signing contract is used for formalising agreement between two party", "pln": ["(: cnet_usedfor_5ac8a1b67f (UsedFor signing_contract formalising_agreement_between_two_party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "silicone is used for lubricate", "pln": ["(: cnet_usedfor_4342984e5a (UsedFor silicone lubricate) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "silver is used for filling teeth", "pln": ["(: cnet_usedfor_90ec17da58 (UsedFor silver filling_teeth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "silver is used for making into jewelry", "pln": ["(: cnet_usedfor_f344d28d47 (UsedFor silver making_into_jewelry) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "silver is used for making into money", "pln": ["(: cnet_usedfor_83fe267b13 (UsedFor silver making_into_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "singing is used for entertainment", "pln": ["(: cnet_usedfor_b7f5e0a179 (UsedFor singing entertainment) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "sink is used for brushing teeth", "pln": ["(: cnet_usedfor_bc9ef78dff (UsedFor sink brushing_teeth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sink is used for drain off water", "pln": ["(: cnet_usedfor_e8942c61a6 (UsedFor sink drain_off_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sink is used for hold dirty dishe", "pln": ["(: cnet_usedfor_3d05454615 (UsedFor sink hold_dirty_dishe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sink is used for rinse dishe", "pln": ["(: cnet_usedfor_7952d178a9 (UsedFor sink rinse_dishe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sink is used for soak dishe", "pln": ["(: cnet_usedfor_584e96f816 (UsedFor sink soak_dishe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sitting down is used for relaxation", "pln": ["(: cnet_usedfor_b050f6e565 (UsedFor sitting_down relaxation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sitting down is used for rest", "pln": ["(: cnet_usedfor_db0473beeb (UsedFor sitting_down rest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sitting down is used for resting", "pln": ["(: cnet_usedfor_b73b49ce3f (UsedFor sitting_down resting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sitting down is used for resting leg", "pln": ["(: cnet_usedfor_c2f876c8d1 (UsedFor sitting_down resting_leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sitting on chair is used for resting feet", "pln": ["(: cnet_usedfor_e63d6c36fe (UsedFor sitting_on_chair resting_feet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sitting on chair is used for resting leg", "pln": ["(: cnet_usedfor_3f3c65a295 (UsedFor sitting_on_chair resting_leg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sitting quietly is used for meditating", "pln": ["(: cnet_usedfor_add170055f (UsedFor sitting_quietly meditating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sitting quietly is used for meditation", "pln": ["(: cnet_usedfor_e5a098dd72 (UsedFor sitting_quietly meditation) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sitting quietly is used for reading", "pln": ["(: cnet_usedfor_cb2c992bfb (UsedFor sitting_quietly reading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sitting quietly is used for reflection", "pln": ["(: cnet_usedfor_f2b3309db5 (UsedFor sitting_quietly reflection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sitting quietly is used for relaxing", "pln": ["(: cnet_usedfor_f72b1184d2 (UsedFor sitting_quietly relaxing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "skating is used for having fun", "pln": ["(: cnet_usedfor_02b6ebb528 (UsedFor skating having_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "ski tow is used for hoist", "pln": ["(: cnet_usedfor_ebb113e9b4 (UsedFor ski_tow hoist) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ski tow is used for raise", "pln": ["(: cnet_usedfor_c50b028fc1 (UsedFor ski_tow raise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ski tow is used for transport", "pln": ["(: cnet_usedfor_f9ed7f72c3 (UsedFor ski_tow transport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "skiing is used for fun", "pln": ["(: cnet_usedfor_25d751afc7 (UsedFor skiing fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "skiing is used for sport", "pln": ["(: cnet_usedfor_cc2d3bde9c (UsedFor skiing sport) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "skiing is used for traveling on snow", "pln": ["(: cnet_usedfor_8a6b17964b (UsedFor skiing traveling_on_snow) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "skin is used for covering body", "pln": ["(: cnet_usedfor_09e8c4d07e (UsedFor skin covering_body) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "skin is used for protecting body", "pln": ["(: cnet_usedfor_2b6bce31f9 (UsedFor skin protecting_body) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "skin care article is used for taking care of skin", "pln": ["(: cnet_usedfor_9a93f7c732 (UsedFor skin_care_article taking_care_of_skin) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sky is used for breath", "pln": ["(: cnet_usedfor_05dca0109d (UsedFor sky breath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "sky is used for fly", "pln": ["(: cnet_usedfor_a7576aeadd (UsedFor sky fly) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sky is used for fly kite", "pln": ["(: cnet_usedfor_8526f3deb7 (UsedFor sky fly_kite) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sky is used for flying in", "pln": ["(: cnet_usedfor_51f3190407 (UsedFor sky flying_in) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sky is used for rain", "pln": ["(: cnet_usedfor_69e46589a7 (UsedFor sky rain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "skylight is used for let in light", "pln": ["(: cnet_usedfor_86a272baca (UsedFor skylight let_in_light) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "skyscraper is used for city", "pln": ["(: cnet_usedfor_4e0098345d (UsedFor skyscraper city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "skyscraper is used for office space", "pln": ["(: cnet_usedfor_3794fee1b7 (UsedFor skyscraper office_space) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "skyscraper is used for urban area", "pln": ["(: cnet_usedfor_70a57a1768 (UsedFor skyscraper urban_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "slave is used for labor", "pln": ["(: cnet_usedfor_f3339654ab (UsedFor slave labor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sleeping is used for dreaming", "pln": ["(: cnet_usedfor_f03d92b3bb (UsedFor sleeping dreaming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "sleeping is used for getting rest", "pln": ["(: cnet_usedfor_9d64ff9a69 (UsedFor sleeping getting_rest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sleeping is used for passing time", "pln": ["(: cnet_usedfor_65d4156fb2 (UsedFor sleeping passing_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sleeping is used for recovering", "pln": ["(: cnet_usedfor_4c624ff90c (UsedFor sleeping recovering) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sleeping is used for relaxing", "pln": ["(: cnet_usedfor_0ff90ee0ed (UsedFor sleeping relaxing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sleeping is used for rest", "pln": ["(: cnet_usedfor_274ed1f6e8 (UsedFor sleeping rest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sleeping at night is used for dream", "pln": ["(: cnet_usedfor_8e07b5a992 (UsedFor sleeping_at_night dream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sleeping at night is used for getting rest", "pln": ["(: cnet_usedfor_20f4d612bf (UsedFor sleeping_at_night getting_rest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "sleeping at night is used for rest", "pln": ["(: cnet_usedfor_277589d1a3 (UsedFor sleeping_at_night rest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sleeping at night is used for resting body", "pln": ["(: cnet_usedfor_c65c00fb79 (UsedFor sleeping_at_night resting_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "slipper is used for keep feet warm", "pln": ["(: cnet_usedfor_51a20068db (UsedFor slipper keep_feet_warm) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "smell is used for connect", "pln": ["(: cnet_usedfor_dd3ea36229 (UsedFor smell connect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "smoking is used for conversation", "pln": ["(: cnet_usedfor_4e625aec9f (UsedFor smoking conversation) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "smoking is used for relaxation", "pln": ["(: cnet_usedfor_46e87d0ce2 (UsedFor smoking relaxation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "snare drum is used for making music", "pln": ["(: cnet_usedfor_efc8cc21c6 (UsedFor snare_drum making_music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "snare drum is used for making noise", "pln": ["(: cnet_usedfor_2696ff18d0 (UsedFor snare_drum making_noise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "snoring is used for driving mate crazy", "pln": ["(: cnet_usedfor_bf9409f8d4 (UsedFor snoring driving_mate_crazy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "snow is used for build snowman", "pln": ["(: cnet_usedfor_498a0eb78d (UsedFor snow build_snowman) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "snow is used for building snowmen", "pln": ["(: cnet_usedfor_03c364b1ca (UsedFor snow building_snowmen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "snow is used for making snowmen", "pln": ["(: cnet_usedfor_0eb5c75d28 (UsedFor snow making_snowmen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "soaking in hotspring is used for relaxation", "pln": ["(: cnet_usedfor_cfca87f1aa (UsedFor soaking_in_hotspring relaxation) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "soaking in hotspring is used for relaxing", "pln": ["(: cnet_usedfor_c7de8a216f (UsedFor soaking_in_hotspring relaxing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "soap is used for clean", "pln": ["(: cnet_usedfor_6f395d5911 (UsedFor soap clean) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "soap is used for clean dirty thing", "pln": ["(: cnet_usedfor_c11c08233e (UsedFor soap clean_dirty_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "soap is used for cleaning", "pln": ["(: cnet_usedfor_144e1ed2fa (UsedFor soap cleaning) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "soap is used for get clean", "pln": ["(: cnet_usedfor_37a0d61032 (UsedFor soap get_clean) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "soap is used for wash hand", "pln": ["(: cnet_usedfor_3786771d25 (UsedFor soap wash_hand) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "soap is used for wash yourself", "pln": ["(: cnet_usedfor_72f19b5fdd (UsedFor soap wash_yourself) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "soap is used for washing body", "pln": ["(: cnet_usedfor_abce755450 (UsedFor soap washing_body) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "soap is used for washing dishes", "pln": ["(: cnet_usedfor_425eddcf5f (UsedFor soap washing_dishes) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "soap is used for washing dishe", "pln": ["(: cnet_usedfor_84c12b9323 (UsedFor soap washing_dishe) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "soap is used for washing yourself", "pln": ["(: cnet_usedfor_08585d49c4 (UsedFor soap washing_yourself) (STV 1.0 0.9677))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "soap dish is used for hold bar of soap", "pln": ["(: cnet_usedfor_6a8503277e (UsedFor soap_dish hold_bar_of_soap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "soap dish is used for hold soap", "pln": ["(: cnet_usedfor_42f2e7475f (UsedFor soap_dish hold_soap) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "soap dish is used for holding soap", "pln": ["(: cnet_usedfor_b2c8ba41d6 (UsedFor soap_dish holding_soap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "soccer field is used for play game of soccer", "pln": ["(: cnet_usedfor_c507247363 (UsedFor soccer_field play_game_of_soccer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "soccer field is used for play soccer", "pln": ["(: cnet_usedfor_6217ace637 (UsedFor soccer_field play_soccer) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "soccer field is used for play soccer on", "pln": ["(: cnet_usedfor_80e336bca0 (UsedFor soccer_field play_soccer_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "socialist is used for community", "pln": ["(: cnet_usedfor_e5265500ca (UsedFor socialist community) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sofa is used for lounging", "pln": ["(: cnet_usedfor_48c98e07f5 (UsedFor sofa lounging) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sofa is used for lying on", "pln": ["(: cnet_usedfor_7cc42797cf (UsedFor sofa lying_on) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sofa is used for reading book", "pln": ["(: cnet_usedfor_094e6cfc68 (UsedFor sofa reading_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sofa is used for relax", "pln": ["(: cnet_usedfor_f6ddf624e2 (UsedFor sofa relax) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sofa is used for sleeping", "pln": ["(: cnet_usedfor_79c78fc12e (UsedFor sofa sleeping) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sofa is used for watching tv", "pln": ["(: cnet_usedfor_c9747f8b8c (UsedFor sofa watching_tv) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sofa is used for people", "pln": ["(: cnet_usedfor_b07bbb66b0 (UsedFor sofa people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sofa is used for seat", "pln": ["(: cnet_usedfor_6e04adb9dc (UsedFor sofa seat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "sofa bed is used for sit on", "pln": ["(: cnet_usedfor_70b92c0464 (UsedFor sofa_bed sit_on) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sofa bed is used for sleep on", "pln": ["(: cnet_usedfor_dd3ba53f71 (UsedFor sofa_bed sleep_on) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sofa bed is used for sleeping on", "pln": ["(: cnet_usedfor_27834b147c (UsedFor sofa_bed sleeping_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sofa hide bed is used for saving space", "pln": ["(: cnet_usedfor_02766883cf (UsedFor sofa_hide_bed saving_space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sofa hide bed is used for sitting", "pln": ["(: cnet_usedfor_42676c8be0 (UsedFor sofa_hide_bed sitting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sofa hide bed is used for sleeping", "pln": ["(: cnet_usedfor_3e53b7b6bc (UsedFor sofa_hide_bed sleeping) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sofabed is used for have guest", "pln": ["(: cnet_usedfor_ff43696590 (UsedFor sofabed have_guest) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sofabed is used for sleep", "pln": ["(: cnet_usedfor_3d90f294ba (UsedFor sofabed sleep) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sofabed is used for sleep on", "pln": ["(: cnet_usedfor_c59970b47e (UsedFor sofabed sleep_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "software is used for processing information", "pln": ["(: cnet_usedfor_5d422c2cb9 (UsedFor software processing_information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "soldier is used for fighting", "pln": ["(: cnet_usedfor_8dfc64f365 (UsedFor soldier fighting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "soldier is used for killing enemy", "pln": ["(: cnet_usedfor_447bd35b2f (UsedFor soldier killing_enemy) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "soldier is used for protecting country", "pln": ["(: cnet_usedfor_2684d47a79 (UsedFor soldier protecting_country) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "solution is used for solving problem", "pln": ["(: cnet_usedfor_6cd0ef2eed (UsedFor solution solving_problem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "song is used for entertainment", "pln": ["(: cnet_usedfor_15c078b298 (UsedFor song entertainment) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "spite is used for negative feelings", "pln": ["(: cnet_usedfor_c7e79952a8 (UsedFor spite negative_feelings) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "song is used for express feeling and emotion", "pln": ["(: cnet_usedfor_20290d3186 (UsedFor song express_feeling_and_emotion) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sound is used for annoy", "pln": ["(: cnet_usedfor_f02a3f64b4 (UsedFor sound annoy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sound is used for communicate", "pln": ["(: cnet_usedfor_ee403b1ce3 (UsedFor sound communicate) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sound is used for communicating", "pln": ["(: cnet_usedfor_03336d9091 (UsedFor sound communicating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "soundstage is used for making movy", "pln": ["(: cnet_usedfor_c195f35a6d (UsedFor soundstage making_movy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "spa is used for relaxation and rejuvanation", "pln": ["(: cnet_usedfor_90c64f2442 (UsedFor spa relaxation_and_rejuvanation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "space is used for occupying", "pln": ["(: cnet_usedfor_75f49e4b02 (UsedFor space occupying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "space is used for parking", "pln": ["(: cnet_usedfor_c3ce6bc63e (UsedFor space parking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "space is used for separating word", "pln": ["(: cnet_usedfor_10a9f96289 (UsedFor space separating_word) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "space is used for seperation", "pln": ["(: cnet_usedfor_0d07641c7c (UsedFor space seperation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "spanish restaurant is used for eat spanish food", "pln": ["(: cnet_usedfor_b35e9208c1 (UsedFor spanish_restaurant eat_spanish_food) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "spanish restaurant is used for eating spanish food", "pln": ["(: cnet_usedfor_242c0d13d6 (UsedFor spanish_restaurant eating_spanish_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "spectacle is used for correct", "pln": ["(: cnet_usedfor_17ce3ab0bf (UsedFor spectacle correct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "spectacle is used for sight", "pln": ["(: cnet_usedfor_7f4d368455 (UsedFor spectacle sight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "spectacle is used for spectator", "pln": ["(: cnet_usedfor_ac0b09c78e (UsedFor spectacle spectator) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "spectacle is used for wearer", "pln": ["(: cnet_usedfor_eff4419ad6 (UsedFor spectacle wearer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "spending money is used for buying for yourself", "pln": ["(: cnet_usedfor_e78990f540 (UsedFor spending_money buying_for_yourself) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "spending money is used for necessity", "pln": ["(: cnet_usedfor_26172c55b3 (UsedFor spending_money necessity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "spiderweb is used for catch insect", "pln": ["(: cnet_usedfor_8a356f4e18 (UsedFor spiderweb catch_insect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "spiral binding is used for holding together notebook", "pln": ["(: cnet_usedfor_e34d0983df (UsedFor spiral_binding holding_together_notebook) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "spirit is used for haunting", "pln": ["(: cnet_usedfor_f563d120bf (UsedFor spirit haunting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "spite is used for anger", "pln": ["(: cnet_usedfor_d5e8da0c01 (UsedFor spite anger) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "spite is used for negative feeling", "pln": ["(: cnet_usedfor_2d22bdb9f5 (UsedFor spite negative_feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "spitting is used for getting rid of bad tast", "pln": ["(: cnet_usedfor_261f4b26f9 (UsedFor spitting getting_rid_of_bad_tast) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "spoons is used for eat ice cream", "pln": ["(: cnet_usedfor_65eda34bff (UsedFor spoons eat_ice_cream) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "sports ball is used for playing game", "pln": ["(: cnet_usedfor_511bf8ae3b (UsedFor sports_ball playing_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "stage is used for plays", "pln": ["(: cnet_usedfor_e780239b28 (UsedFor stage plays) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "spoon is used for eating", "pln": ["(: cnet_usedfor_bff23c0487 (UsedFor spoon eating) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "spoon is used for eating cereal", "pln": ["(: cnet_usedfor_36f9bc1825 (UsedFor spoon eating_cereal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "spoon is used for eating ice cream", "pln": ["(: cnet_usedfor_ae4d7b99c4 (UsedFor spoon eating_ice_cream) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "spoon is used for scooping food", "pln": ["(: cnet_usedfor_5476213d53 (UsedFor spoon scooping_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "spoon is used for stirring coffee", "pln": ["(: cnet_usedfor_3ae8ae9bed (UsedFor spoon stirring_coffee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "spoon is used for eat ice cream", "pln": ["(: cnet_usedfor_1b80ab1c97 (UsedFor spoon eat_ice_cream) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "spoon is used for eat liquid", "pln": ["(: cnet_usedfor_a8cee38d3a (UsedFor spoon eat_liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "spoon is used for stir coffee", "pln": ["(: cnet_usedfor_77a1677937 (UsedFor spoon stir_coffee) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sport is used for playing", "pln": ["(: cnet_usedfor_68c064c129 (UsedFor sport playing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sport ball is used for playing game", "pln": ["(: cnet_usedfor_faa10d7af4 (UsedFor sport_ball playing_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sport bat is used for hitting ball", "pln": ["(: cnet_usedfor_1dfde159d7 (UsedFor sport_bat hitting_ball) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sport bat is used for playing", "pln": ["(: cnet_usedfor_6973462bcd (UsedFor sport_bat playing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sport equipment is used for having fun", "pln": ["(: cnet_usedfor_0493ed77b6 (UsedFor sport_equipment having_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sport equipment is used for playing sport", "pln": ["(: cnet_usedfor_57f3457a88 (UsedFor sport_equipment playing_sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "spout is used for pour liquid", "pln": ["(: cnet_usedfor_d6cb833878 (UsedFor spout pour_liquid) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "spray hose is used for spray water", "pln": ["(: cnet_usedfor_88075ae9bf (UsedFor spray_hose spray_water) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "spring binder is used for holding paper", "pln": ["(: cnet_usedfor_9ccbf8f2ed (UsedFor spring_binder holding_paper) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "squash court is used for exercise", "pln": ["(: cnet_usedfor_b500c3b879 (UsedFor squash_court exercise) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "squash court is used for playing game of squash", "pln": ["(: cnet_usedfor_5a1651a8bf (UsedFor squash_court playing_game_of_squash) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "squash court is used for playing squash with friend", "pln": ["(: cnet_usedfor_619039923e (UsedFor squash_court playing_squash_with_friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stabbing to death is used for getting revenge on", "pln": ["(: cnet_usedfor_8eead9d0aa (UsedFor stabbing_to_death getting_revenge_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stabbing to death is used for getting rid of enemy", "pln": ["(: cnet_usedfor_dbaa5e7a0f (UsedFor stabbing_to_death getting_rid_of_enemy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stadium is used for play sport", "pln": ["(: cnet_usedfor_d3b0039930 (UsedFor stadium play_sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stadium is used for watch ball game", "pln": ["(: cnet_usedfor_bb6004def7 (UsedFor stadium watch_ball_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stadium stand is used for viewing gladiator fight", "pln": ["(: cnet_usedfor_eb5d06ebf6 (UsedFor stadium_stand viewing_gladiator_fight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stage is used for performing play", "pln": ["(: cnet_usedfor_f90e666a47 (UsedFor stage performing_play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stage is used for play", "pln": ["(: cnet_usedfor_857d4632c7 (UsedFor stage play) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stage door is used for entering back stage area", "pln": ["(: cnet_usedfor_b5d9a59690 (UsedFor stage_door entering_back_stage_area) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stage door is used for moving scenery through", "pln": ["(: cnet_usedfor_3dfa0cc030 (UsedFor stage_door moving_scenery_through) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stage door is used for vendor delivery", "pln": ["(: cnet_usedfor_98dc48bec0 (UsedFor stage_door vendor_delivery) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "staircase is used for climb", "pln": ["(: cnet_usedfor_debb1f2929 (UsedFor staircase climb) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "staircase is used for getting to next level", "pln": ["(: cnet_usedfor_04cc555890 (UsedFor staircase getting_to_next_level) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "staircase is used for going upstair", "pln": ["(: cnet_usedfor_b7ac0454a6 (UsedFor staircase going_upstair) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stair is used for climbing", "pln": ["(: cnet_usedfor_e1ddf6fedb (UsedFor stair climbing) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stair is used for walking down", "pln": ["(: cnet_usedfor_0328d87d84 (UsedFor stair walking_down) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stair up is used for climb", "pln": ["(: cnet_usedfor_1e213e2bbd (UsedFor stair_up climb) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stairwell is used for walk down", "pln": ["(: cnet_usedfor_b5b944c139 (UsedFor stairwell walk_down) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stairwell is used for walk up", "pln": ["(: cnet_usedfor_3c6cffbaaf (UsedFor stairwell walk_up) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stamp is used for postage", "pln": ["(: cnet_usedfor_1a64b4cb37 (UsedFor stamp postage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "stamp pad is used for apply ink", "pln": ["(: cnet_usedfor_781f23a18c (UsedFor stamp_pad apply_ink) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "stapler is used for binding many pieces of paper", "pln": ["(: cnet_usedfor_f4ff207ef8 (UsedFor stapler binding_many_pieces_of_paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "stapler is used for stapling papers together", "pln": ["(: cnet_usedfor_7ba1a45f47 (UsedFor stapler stapling_papers_together) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stamp pad is used for ink stamp", "pln": ["(: cnet_usedfor_4b1a29fca8 (UsedFor stamp_pad ink_stamp) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stamp rack is used for keeping many stamp organized", "pln": ["(: cnet_usedfor_be20760308 (UsedFor stamp_rack keeping_many_stamp_organized) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stamp is used for mail letter", "pln": ["(: cnet_usedfor_b3451941bd (UsedFor stamp mail_letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "standing in line is used for waiting turn", "pln": ["(: cnet_usedfor_2babaf6f28 (UsedFor standing_in_line waiting_turn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "staple remover is used for take out staple", "pln": ["(: cnet_usedfor_ae51b23ffa (UsedFor staple_remover take_out_staple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "staple remover is used for taking staple out of", "pln": ["(: cnet_usedfor_e0c504b683 (UsedFor staple_remover taking_staple_out_of) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stapler is used for attaching paper", "pln": ["(: cnet_usedfor_93ee41ccf0 (UsedFor stapler attaching_paper) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stapler is used for bind paper together", "pln": ["(: cnet_usedfor_fb32afa31f (UsedFor stapler bind_paper_together) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stapler is used for binding many piece of paper", "pln": ["(: cnet_usedfor_a8a18d16c8 (UsedFor stapler binding_many_piece_of_paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stapler is used for fasten sheet of paper together", "pln": ["(: cnet_usedfor_816d60ea95 (UsedFor stapler fasten_sheet_of_paper_together) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stapler is used for holding paper together", "pln": ["(: cnet_usedfor_580540667f (UsedFor stapler holding_paper_together) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stapler is used for office organization", "pln": ["(: cnet_usedfor_50c63487f2 (UsedFor stapler office_organization) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stapler is used for stapling", "pln": ["(: cnet_usedfor_4354e99d11 (UsedFor stapler stapling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stapler is used for stapling paper together", "pln": ["(: cnet_usedfor_1b0b9ff931 (UsedFor stapler stapling_paper_together) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stapler is used for stapling piece of paper together", "pln": ["(: cnet_usedfor_936f7b9455 (UsedFor stapler stapling_piece_of_paper_together) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stapler is used for attach mutliple piece of paper together", "pln": ["(: cnet_usedfor_2d3c8691c9 (UsedFor stapler attach_mutliple_piece_of_paper_together) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stapler is used for fasten paper together", "pln": ["(: cnet_usedfor_0f00362a44 (UsedFor stapler fasten_paper_together) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "starting fire is used for cooking food", "pln": ["(: cnet_usedfor_50404bd599 (UsedFor starting_fire cooking_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "starting fire is used for keeping warm", "pln": ["(: cnet_usedfor_d4c2535301 (UsedFor starting_fire keeping_warm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "starting fire is used for toasting marshmallow", "pln": ["(: cnet_usedfor_6b7b30203b (UsedFor starting_fire toasting_marshmallow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "starting flame or fire is used for keeping warm", "pln": ["(: cnet_usedfor_dccee636c8 (UsedFor starting_flame_or_fire keeping_warm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "starting flame or fire is used for roasting marshmellow", "pln": ["(: cnet_usedfor_b491e82308 (UsedFor starting_flame_or_fire roasting_marshmellow) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "state highway is used for driving", "pln": ["(: cnet_usedfor_711d923e4a (UsedFor state_highway driving) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "statement is used for detailing thing", "pln": ["(: cnet_usedfor_e6ba233181 (UsedFor statement detailing_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "staying fit is used for good health", "pln": ["(: cnet_usedfor_464cad91fc (UsedFor staying_fit good_health) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "staying healthy is used for living long life", "pln": ["(: cnet_usedfor_f5e7fdc292 (UsedFor staying_healthy living_long_life) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "staying healthy is used for living longer", "pln": ["(: cnet_usedfor_33487379b2 (UsedFor staying_healthy living_longer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "staying in bed is used for being lazy", "pln": ["(: cnet_usedfor_86962edec5 (UsedFor staying_in_bed being_lazy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "staying in bed is used for being sick", "pln": ["(: cnet_usedfor_5001968d20 (UsedFor staying_in_bed being_sick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "staying in bed is used for healing from illness", "pln": ["(: cnet_usedfor_a757770a88 (UsedFor staying_in_bed healing_from_illness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "staying in bed is used for relaxing", "pln": ["(: cnet_usedfor_10a11b6b35 (UsedFor staying_in_bed relaxing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "staying in bed is used for sleeping in", "pln": ["(: cnet_usedfor_d28910e5b6 (UsedFor staying_in_bed sleeping_in) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "steak is used for cooking", "pln": ["(: cnet_usedfor_7062d4bcc6 (UsedFor steak cooking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "steak house is used for eating", "pln": ["(: cnet_usedfor_c82c3f96a7 (UsedFor steak_house eating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "steak house is used for eating dinner", "pln": ["(: cnet_usedfor_56d859ba9c (UsedFor steak_house eating_dinner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "steak house is used for eating out", "pln": ["(: cnet_usedfor_756cd9cac8 (UsedFor steak_house eating_out) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "steak house is used for eating steak", "pln": ["(: cnet_usedfor_b5bae8736e (UsedFor steak_house eating_steak) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "steakhouse is used for dinner", "pln": ["(: cnet_usedfor_7f8d16a5c2 (UsedFor steakhouse dinner) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "steakhouse is used for eating meat", "pln": ["(: cnet_usedfor_d8d3cc21b7 (UsedFor steakhouse eating_meat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "steakhouse is used for eating steak", "pln": ["(: cnet_usedfor_8bb2888507 (UsedFor steakhouse eating_steak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "steakhouse is used for eating steak in", "pln": ["(: cnet_usedfor_d09cb042b5 (UsedFor steakhouse eating_steak_in) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "steakhouse is used for having steak", "pln": ["(: cnet_usedfor_5190419c98 (UsedFor steakhouse having_steak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "steam is used for clean carpet", "pln": ["(: cnet_usedfor_9eea48582c (UsedFor steam clean_carpet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "steel pen is used for writing", "pln": ["(: cnet_usedfor_11b4399b36 (UsedFor steel_pen writing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "step chair is used for reaching upper shelve", "pln": ["(: cnet_usedfor_10e29874b7 (UsedFor step_chair reaching_upper_shelve) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "step chair is used for sitting while preparing food", "pln": ["(: cnet_usedfor_4b034d62d9 (UsedFor step_chair sitting_while_preparing_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stepladder is used for climb", "pln": ["(: cnet_usedfor_aefabac93c (UsedFor stepladder climb) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stick is used for fuel", "pln": ["(: cnet_usedfor_d28fe7cddd (UsedFor stick fuel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stick is used for help build campfire", "pln": ["(: cnet_usedfor_80ea8c66d6 (UsedFor stick help_build_campfire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stick eraser is used for erase pencil mark", "pln": ["(: cnet_usedfor_bd9fb848b3 (UsedFor stick_eraser erase_pencil_mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stick eraser is used for erasing pencil mark", "pln": ["(: cnet_usedfor_06c88a392a (UsedFor stick_eraser erasing_pencil_mark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "stick of butter is used for cooking", "pln": ["(: cnet_usedfor_4a63ee5497 (UsedFor stick_of_butter cooking) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "stick of butter is used for making cookies", "pln": ["(: cnet_usedfor_048d3d7251 (UsedFor stick_of_butter making_cookies) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stick of butter is used for making cooky", "pln": ["(: cnet_usedfor_411531cb92 (UsedFor stick_of_butter making_cooky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stick of butter is used for present butter with meal", "pln": ["(: cnet_usedfor_703de8b4b3 (UsedFor stick_of_butter present_butter_with_meal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sticking plaster is used for providing first aid", "pln": ["(: cnet_usedfor_52d2eb9bce (UsedFor sticking_plaster providing_first_aid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "stimulation is used for have orgasm", "pln": ["(: cnet_usedfor_76a5c952f2 (UsedFor stimulation have_orgasm) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stone is used for throwing", "pln": ["(: cnet_usedfor_0433de2c8d (UsedFor stone throwing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stool is used for reaching high place", "pln": ["(: cnet_usedfor_20a2924ddb (UsedFor stool reaching_high_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stool is used for resting", "pln": ["(: cnet_usedfor_d020f58646 (UsedFor stool resting) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stop is used for stop", "pln": ["(: cnet_usedfor_88064ce7ad (UsedFor stop stop) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stop sign is used for stopping", "pln": ["(: cnet_usedfor_db68d754ee (UsedFor stop_sign stopping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stopping bicycle is used for avoiding crash", "pln": ["(: cnet_usedfor_c0128191f9 (UsedFor stopping_bicycle avoiding_crash) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "stopping bicycle is used for get off bicycle", "pln": ["(: cnet_usedfor_ec24ba6d3a (UsedFor stopping_bicycle get_off_bicycle) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "stopping bicycle is used for safety", "pln": ["(: cnet_usedfor_41ba1292b6 (UsedFor stopping_bicycle safety) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stopping car is used for arriving at destination", "pln": ["(: cnet_usedfor_a38e7deac9 (UsedFor stopping_car arriving_at_destination) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stopping car is used for avoiding accident", "pln": ["(: cnet_usedfor_193e041633 (UsedFor stopping_car avoiding_accident) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "storage is used for keep stuff", "pln": ["(: cnet_usedfor_ae91b76bb2 (UsedFor storage keep_stuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "store is used for buy thing", "pln": ["(: cnet_usedfor_302191911d (UsedFor store buy_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "store is used for buying thing", "pln": ["(: cnet_usedfor_8ee8e14520 (UsedFor store buying_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "store shelf is used for displaying item", "pln": ["(: cnet_usedfor_6d91d936e4 (UsedFor store_shelf displaying_item) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "storm is used for raining", "pln": ["(: cnet_usedfor_c5d940695f (UsedFor storm raining) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "story is used for entertainment", "pln": ["(: cnet_usedfor_6e20b45aa8 (UsedFor story entertainment) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "story is used for reading", "pln": ["(: cnet_usedfor_2a12610d7b (UsedFor story reading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "story is used for telling", "pln": ["(: cnet_usedfor_c8cace705f (UsedFor story telling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stove is used for cook", "pln": ["(: cnet_usedfor_045a364440 (UsedFor stove cook) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stove is used for cooking", "pln": ["(: cnet_usedfor_bcfbdb798c (UsedFor stove cooking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stove is used for grill steak", "pln": ["(: cnet_usedfor_671a7a04ea (UsedFor stove grill_steak) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stranger is used for act as witness", "pln": ["(: cnet_usedfor_2a465db672 (UsedFor stranger act_as_witness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stranger is used for meeting", "pln": ["(: cnet_usedfor_564dfc3c8c (UsedFor stranger meeting) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "strawberry is used for make strawberry tart", "pln": ["(: cnet_usedfor_71c6731337 (UsedFor strawberry make_strawberry_tart) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stream is used for swimming", "pln": ["(: cnet_usedfor_95d828ec16 (UsedFor stream swimming) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "street is used for driving car on", "pln": ["(: cnet_usedfor_0c0d4d877b (UsedFor street driving_car_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "street is used for driving on", "pln": ["(: cnet_usedfor_720d8642ec (UsedFor street driving_on) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "street is used for easy passage of vehicle", "pln": ["(: cnet_usedfor_bb6c779b48 (UsedFor street easy_passage_of_vehicle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "street is used for transportation", "pln": ["(: cnet_usedfor_9f95d287e3 (UsedFor street transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "street is used for travel", "pln": ["(: cnet_usedfor_86b5508bc7 (UsedFor street travel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "street is used for walking", "pln": ["(: cnet_usedfor_7d9a1e6a64 (UsedFor street walking) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "striking match is used for creating fire", "pln": ["(: cnet_usedfor_4ea75aa7af (UsedFor striking_match creating_fire) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "striking match is used for lighting candle", "pln": ["(: cnet_usedfor_146e7decb8 (UsedFor striking_match lighting_candle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "striking match is used for lighting cigarette", "pln": ["(: cnet_usedfor_2c96bdd9f3 (UsedFor striking_match lighting_cigarette) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "striking match is used for lighting fire", "pln": ["(: cnet_usedfor_6011c2a178 (UsedFor striking_match lighting_fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "striking match is used for seeing in dark", "pln": ["(: cnet_usedfor_6226bcab09 (UsedFor striking_match seeing_in_dark) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "striking match is used for starting fire", "pln": ["(: cnet_usedfor_cf691d5d4e (UsedFor striking_match starting_fire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "string is used for fly kite", "pln": ["(: cnet_usedfor_2bc88b559b (UsedFor string fly_kite) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "string is used for tie", "pln": ["(: cnet_usedfor_c0fc6d39f5 (UsedFor string tie) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "string bass is used for play music", "pln": ["(: cnet_usedfor_344ecf0567 (UsedFor string_bass play_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "string bass is used for playing music", "pln": ["(: cnet_usedfor_ba3c88583f (UsedFor string_bass playing_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "string bass is used for playing music with", "pln": ["(: cnet_usedfor_7ccbbad1b3 (UsedFor string_bass playing_music_with) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "stringed instrument is used for playing music", "pln": ["(: cnet_usedfor_02e05ce831 (UsedFor stringed_instrument playing_music) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "strip mall is used for shop for thing", "pln": ["(: cnet_usedfor_0883a00a15 (UsedFor strip_mall shop_for_thing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "strip mall is used for shopping", "pln": ["(: cnet_usedfor_84136f7e2b (UsedFor strip_mall shopping) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "study is used for learn thing", "pln": ["(: cnet_usedfor_536c240d50 (UsedFor study learn_thing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "study is used for reading", "pln": ["(: cnet_usedfor_3ef0f2d5dd (UsedFor study reading) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "studying is used for getting good grade", "pln": ["(: cnet_usedfor_82bb41b742 (UsedFor studying getting_good_grade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "studying is used for learning", "pln": ["(: cnet_usedfor_1f832a5d60 (UsedFor studying learning) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "studying is used for preparing for testing", "pln": ["(: cnet_usedfor_51bd66d429 (UsedFor studying preparing_for_testing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "studying for subject is used for getting good grade", "pln": ["(: cnet_usedfor_ffdd0aeb69 (UsedFor studying_for_subject getting_good_grade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "studying for subject is used for learning subject", "pln": ["(: cnet_usedfor_f11279fc16 (UsedFor studying_for_subject learning_subject) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "studying for subject is used for memorizing", "pln": ["(: cnet_usedfor_58875bdf45 (UsedFor studying_for_subject memorizing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "subway pass is used for ride subway", "pln": ["(: cnet_usedfor_5975f42337 (UsedFor subway_pass ride_subway) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "subway pass is used for riding subway", "pln": ["(: cnet_usedfor_a30b21764f (UsedFor subway_pass riding_subway) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "subway platform is used for wait", "pln": ["(: cnet_usedfor_a792f93b54 (UsedFor subway_platform wait) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sugar is used for filling craving", "pln": ["(: cnet_usedfor_e051f5961b (UsedFor sugar filling_craving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sugar is used for make food sweet", "pln": ["(: cnet_usedfor_cf5d69c529 (UsedFor sugar make_food_sweet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sugar is used for making desert with", "pln": ["(: cnet_usedfor_c8392921b1 (UsedFor sugar making_desert_with) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sugar is used for sweeten food", "pln": ["(: cnet_usedfor_89faefe7b7 (UsedFor sugar sweeten_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sugar is used for sweetening coffee", "pln": ["(: cnet_usedfor_68503047e9 (UsedFor sugar sweetening_coffee) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "suitcase is used for carrying clothe", "pln": ["(: cnet_usedfor_1b199b8617 (UsedFor suitcase carrying_clothe) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "suitcase is used for packing clothe for trip", "pln": ["(: cnet_usedfor_d94ea467bf (UsedFor suitcase packing_clothe_for_trip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sun is used for energy", "pln": ["(: cnet_usedfor_c25a5d1c68 (UsedFor sun energy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sun is used for heat", "pln": ["(: cnet_usedfor_0bc9cf0179 (UsedFor sun heat) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sun is used for light", "pln": ["(: cnet_usedfor_6bb52f3993 (UsedFor sun light) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sunglass is used for protect eye from sun", "pln": ["(: cnet_usedfor_8ad8e19709 (UsedFor sunglass protect_eye_from_sun) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "supermarket is used for buy chicken", "pln": ["(: cnet_usedfor_ccdb8762a3 (UsedFor supermarket buy_chicken) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "supermarket is used for buy food for family", "pln": ["(: cnet_usedfor_d58d707570 (UsedFor supermarket buy_food_for_family) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "supermarket is used for buy raisin", "pln": ["(: cnet_usedfor_836d89c835 (UsedFor supermarket buy_raisin) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "supermarket is used for buying canned food", "pln": ["(: cnet_usedfor_6650077761 (UsedFor supermarket buying_canned_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "supermarket is used for buying canned good", "pln": ["(: cnet_usedfor_6026da451d (UsedFor supermarket buying_canned_good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "supermarket is used for buying carrot", "pln": ["(: cnet_usedfor_c4bcfed29d (UsedFor supermarket buying_carrot) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "supermarket is used for buying edible", "pln": ["(: cnet_usedfor_140001dc12 (UsedFor supermarket buying_edible) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "supermarket is used for buying food", "pln": ["(: cnet_usedfor_85da4eca42 (UsedFor supermarket buying_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "supermarket is used for buying fresh ground beef", "pln": ["(: cnet_usedfor_98563a87cc (UsedFor supermarket buying_fresh_ground_beef) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "supermarket is used for buying fresh seafood", "pln": ["(: cnet_usedfor_86689c96fc (UsedFor supermarket buying_fresh_seafood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "supermarket is used for buying grocery", "pln": ["(: cnet_usedfor_aaeb394bd6 (UsedFor supermarket buying_grocery) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "supermarket is used for buying lettuce", "pln": ["(: cnet_usedfor_6137986476 (UsedFor supermarket buying_lettuce) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "supermarket is used for buying produce", "pln": ["(: cnet_usedfor_16bdbb3e49 (UsedFor supermarket buying_produce) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "supermarket is used for getting banana", "pln": ["(: cnet_usedfor_1b75380270 (UsedFor supermarket getting_banana) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "supermarket is used for shop for good", "pln": ["(: cnet_usedfor_ba36164d00 (UsedFor supermarket shop_for_good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "supermarket is used for shopping", "pln": ["(: cnet_usedfor_93660a776b (UsedFor supermarket shopping) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "supermarket is used for weekly shopping", "pln": ["(: cnet_usedfor_f2503e9ce9 (UsedFor supermarket weekly_shopping) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "surface is used for putting thing on", "pln": ["(: cnet_usedfor_11db469c7f (UsedFor surface putting_thing_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "surfing is used for having fun", "pln": ["(: cnet_usedfor_f3e80074c3 (UsedFor surfing having_fun) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "surfing net is used for doing research", "pln": ["(: cnet_usedfor_f4d83a8048 (UsedFor surfing_net doing_research) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "surfing net is used for entertainment", "pln": ["(: cnet_usedfor_0ce9d9fb2b (UsedFor surfing_net entertainment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "surfing net is used for finding friend", "pln": ["(: cnet_usedfor_92142c2215 (UsedFor surfing_net finding_friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "surfing net is used for finding information", "pln": ["(: cnet_usedfor_0069797b05 (UsedFor surfing_net finding_information) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "surfing net is used for killing time", "pln": ["(: cnet_usedfor_338da794d8 (UsedFor surfing_net killing_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "surfing net is used for learning", "pln": ["(: cnet_usedfor_3cbfbbcc4a (UsedFor surfing_net learning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "surfing net is used for research", "pln": ["(: cnet_usedfor_db31377267 (UsedFor surfing_net research) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "surfing web is used for entertainment", "pln": ["(: cnet_usedfor_e542772758 (UsedFor surfing_web entertainment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "surfing web is used for research", "pln": ["(: cnet_usedfor_944624c791 (UsedFor surfing_web research) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "surprising is used for fun", "pln": ["(: cnet_usedfor_47df734182 (UsedFor surprising fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "surprising is used for scaring", "pln": ["(: cnet_usedfor_285ff26698 (UsedFor surprising scaring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "suspension cable is used for hold up bridge", "pln": ["(: cnet_usedfor_9466ce6c59 (UsedFor suspension_cable hold_up_bridge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "swallowing semen is used for showing how much care", "pln": ["(: cnet_usedfor_58e36c5340 (UsedFor swallowing_semen showing_how_much_care) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "swimming is used for competition", "pln": ["(: cnet_usedfor_fa4b95b8ef (UsedFor swimming competition) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "swimming is used for exercise", "pln": ["(: cnet_usedfor_9c6aa53da8 (UsedFor swimming exercise) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "swimming is used for fun", "pln": ["(: cnet_usedfor_a3da10b394 (UsedFor swimming fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "swimming is used for having fun", "pln": ["(: cnet_usedfor_cd1e6d47ad (UsedFor swimming having_fun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "swimming is used for moving in water", "pln": ["(: cnet_usedfor_4fc3b3713b (UsedFor swimming moving_in_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "swimming is used for strenghtening muscle", "pln": ["(: cnet_usedfor_8977bd1c45 (UsedFor swimming strenghtening_muscle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "swimming pool is used for cool off", "pln": ["(: cnet_usedfor_8f210bcf1a (UsedFor swimming_pool cool_off) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "swimming pool is used for diving", "pln": ["(: cnet_usedfor_3e1d5552a2 (UsedFor swimming_pool diving) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "swimming pool is used for fun", "pln": ["(: cnet_usedfor_52f59bc161 (UsedFor swimming_pool fun) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "swimming pool is used for getting wet", "pln": ["(: cnet_usedfor_4e05838e50 (UsedFor swimming_pool getting_wet) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "swimming pool is used for lap", "pln": ["(: cnet_usedfor_35538dc525 (UsedFor swimming_pool lap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "swimming pool is used for make love", "pln": ["(: cnet_usedfor_61b486bb58 (UsedFor swimming_pool make_love) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "swimming pool is used for swim", "pln": ["(: cnet_usedfor_01d12e07b4 (UsedFor swimming_pool swim) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sword is used for fence with", "pln": ["(: cnet_usedfor_765aef7d2f (UsedFor sword fence_with) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sword is used for fencing", "pln": ["(: cnet_usedfor_c837e24f43 (UsedFor sword fencing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "sword is used for killing", "pln": ["(: cnet_usedfor_1057147bff (UsedFor sword killing) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "symphony hall is used for playing music", "pln": ["(: cnet_usedfor_0e60d6cd25 (UsedFor symphony_hall playing_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "system is used for organizing thing", "pln": ["(: cnet_usedfor_0aa4fb4ccf (UsedFor system organizing_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "t shirt is used for cover breast", "pln": ["(: cnet_usedfor_f6c92c871a (UsedFor t_shirt cover_breast) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "t shirt is used for covering nipple", "pln": ["(: cnet_usedfor_2101fd4a26 (UsedFor t_shirt covering_nipple) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "t shirt is used for covering torso", "pln": ["(: cnet_usedfor_2fc84bd7d0 (UsedFor t_shirt covering_torso) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "t shirt is used for wear message", "pln": ["(: cnet_usedfor_d8ae436bba (UsedFor t_shirt wear_message) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "t shirt is used for wearing", "pln": ["(: cnet_usedfor_d6bde8f73b (UsedFor t_shirt wearing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "t shirt is used for display logo", "pln": ["(: cnet_usedfor_8bb787c419 (UsedFor t_shirt display_logo) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tab is used for marking place", "pln": ["(: cnet_usedfor_e0febcef38 (UsedFor tab marking_place) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "table is used for drawing on", "pln": ["(: cnet_usedfor_d11feb6059 (UsedFor table drawing_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "table is used for eat at", "pln": ["(: cnet_usedfor_95014a4e61 (UsedFor table eat_at) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "table is used for eating off of", "pln": ["(: cnet_usedfor_8c0f0e594b (UsedFor table eating_off_of) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "table is used for holding thing", "pln": ["(: cnet_usedfor_7252a9b2f2 (UsedFor table holding_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "table is used for putting thing on", "pln": ["(: cnet_usedfor_8457c50764 (UsedFor table putting_thing_on) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "table is used for read", "pln": ["(: cnet_usedfor_4a63836683 (UsedFor table read) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "table is used for sitting on", "pln": ["(: cnet_usedfor_8197f6fefa (UsedFor table sitting_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "table is used for working at", "pln": ["(: cnet_usedfor_b08e735004 (UsedFor table working_at) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "table is used for hold thing", "pln": ["(: cnet_usedfor_3458e4e799 (UsedFor table hold_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tablespoon is used for drinking soup", "pln": ["(: cnet_usedfor_13acc5b0f9 (UsedFor tablespoon drinking_soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tablespoon is used for eat soup", "pln": ["(: cnet_usedfor_66d7cb949a (UsedFor tablespoon eat_soup) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tail is used for making kite fly evenly", "pln": ["(: cnet_usedfor_5c6218c11f (UsedFor tail making_kite_fly_evenly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "taking break is used for rejuvinating", "pln": ["(: cnet_usedfor_fa7f3b2a99 (UsedFor taking_break rejuvinating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "taking bus is used for getting somewhere", "pln": ["(: cnet_usedfor_26328e6c2e (UsedFor taking_bus getting_somewhere) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "taking bus is used for going to school", "pln": ["(: cnet_usedfor_5678f88b09 (UsedFor taking_bus going_to_school) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "taking bus is used for people who depend on public transportation", "pln": ["(: cnet_usedfor_69dec53bbd (UsedFor taking_bus people_who_depend_on_public_transportation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "taking bus is used for school children", "pln": ["(: cnet_usedfor_440c1c9f11 (UsedFor taking_bus school_children) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "taking bus is used for travel", "pln": ["(: cnet_usedfor_b33b95e8c8 (UsedFor taking_bus travel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "taking car for drive is used for relaxation", "pln": ["(: cnet_usedfor_fcc701410f (UsedFor taking_car_for_drive relaxation) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "taking car for drive is used for wasting gas", "pln": ["(: cnet_usedfor_a85c6d5fcd (UsedFor taking_car_for_drive wasting_gas) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "taking course is used for being taught", "pln": ["(: cnet_usedfor_fc733a1caa (UsedFor taking_course being_taught) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "taking course is used for learning more", "pln": ["(: cnet_usedfor_3d6023e948 (UsedFor taking_course learning_more) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "taking course is used for learning new", "pln": ["(: cnet_usedfor_bcd2609237 (UsedFor taking_course learning_new) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "taking course is used for learning new thing", "pln": ["(: cnet_usedfor_e554431747 (UsedFor taking_course learning_new_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "taking exam is used for getting good grade", "pln": ["(: cnet_usedfor_3b366ffbf3 (UsedFor taking_exam getting_good_grade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "taking exam is used for passing class", "pln": ["(: cnet_usedfor_5d4a6df632 (UsedFor taking_exam passing_class) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "taking exam is used for passing grade at school", "pln": ["(: cnet_usedfor_27c4d0d5b0 (UsedFor taking_exam passing_grade_at_school) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "taking exam is used for seeing how well learned", "pln": ["(: cnet_usedfor_f412c14388 (UsedFor taking_exam seeing_how_well_learned) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "taking exam is used for testing knowledge", "pln": ["(: cnet_usedfor_089299685d (UsedFor taking_exam testing_knowledge) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "taking exam is used for testing skill", "pln": ["(: cnet_usedfor_812f8dc234 (UsedFor taking_exam testing_skill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "taking examination is used for demonstrating knowledge about subject", "pln": ["(: cnet_usedfor_ce899abca4 (UsedFor taking_examination demonstrating_knowledge_about_subject) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "taking final exam is used for getting graduation", "pln": ["(: cnet_usedfor_4694e8fc04 (UsedFor taking_final_exam getting_graduation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "taking final exam is used for pass course", "pln": ["(: cnet_usedfor_23722b925d (UsedFor taking_final_exam pass_course) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "taking final is used for passing class", "pln": ["(: cnet_usedfor_2b14f0ee3b (UsedFor taking_final passing_class) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "taking in film is used for entertaining yourself", "pln": ["(: cnet_usedfor_74258c98dd (UsedFor taking_in_film entertaining_yourself) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "taking in film is used for leisure activity", "pln": ["(: cnet_usedfor_76277e9da7 (UsedFor taking_in_film leisure_activity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "taking in film is used for relaxation", "pln": ["(: cnet_usedfor_5fc9ee2bf3 (UsedFor taking_in_film relaxation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "taking midterm is used for measuring knowledge of subject", "pln": ["(: cnet_usedfor_d48acc5ce2 (UsedFor taking_midterm measuring_knowledge_of_subject) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "taking oath is used for promising", "pln": ["(: cnet_usedfor_6552e25be2 (UsedFor taking_oath promising) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "taking phone call is used for talking", "pln": ["(: cnet_usedfor_5bdaaf3449 (UsedFor taking_phone_call talking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "taking shower is used for hygiene", "pln": ["(: cnet_usedfor_76aa5d5786 (UsedFor taking_shower hygiene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "taking shower is used for washing off sweat and dirt", "pln": ["(: cnet_usedfor_680dd4d4df (UsedFor taking_shower washing_off_sweat_and_dirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "taking stand is used for witnessing in trial", "pln": ["(: cnet_usedfor_afe3ffdcd1 (UsedFor taking_stand witnessing_in_trial) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "taking walk is used for relaxing", "pln": ["(: cnet_usedfor_a166b6792f (UsedFor taking_walk relaxing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "taking walk is used for staying in shape", "pln": ["(: cnet_usedfor_a40eda0a69 (UsedFor taking_walk staying_in_shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "talking is used for speech", "pln": ["(: cnet_usedfor_b308fd65d7 (UsedFor talking speech) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "talking to is used for communication", "pln": ["(: cnet_usedfor_d1055b973e (UsedFor talking_to communication) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "talking to is used for getting information", "pln": ["(: cnet_usedfor_2f9dfdf954 (UsedFor talking_to getting_information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "talking with far away is used for communicating", "pln": ["(: cnet_usedfor_46b73dfc3a (UsedFor talking_with_far_away communicating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "talking with far away is used for communication", "pln": ["(: cnet_usedfor_2d0bb1e763 (UsedFor talking_with_far_away communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "talking with far away is used for exchanging information", "pln": ["(: cnet_usedfor_24511ad4db (UsedFor talking_with_far_away exchanging_information) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tambourine is used for make music", "pln": ["(: cnet_usedfor_971819a6f3 (UsedFor tambourine make_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tanning lotion is used for darkening skin", "pln": ["(: cnet_usedfor_6231141ef0 (UsedFor tanning_lotion darkening_skin) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tanning lotion is used for preventing sunburn", "pln": ["(: cnet_usedfor_6449abbe95 (UsedFor tanning_lotion preventing_sunburn) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tap is used for beer", "pln": ["(: cnet_usedfor_fc7c60c616 (UsedFor tap beer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tap is used for get beer from keg", "pln": ["(: cnet_usedfor_b7d76f40b7 (UsedFor tap get_beer_from_keg) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tap is used for getting attention", "pln": ["(: cnet_usedfor_cf29702b80 (UsedFor tap getting_attention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "tape is used for tape", "pln": ["(: cnet_usedfor_35d8c0465c (UsedFor tape tape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tape dispenser is used for dispensing tape", "pln": ["(: cnet_usedfor_7c5ced18f3 (UsedFor tape_dispenser dispensing_tape) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tape dispenser is used for holding roll of tape", "pln": ["(: cnet_usedfor_f2aeab3c57 (UsedFor tape_dispenser holding_roll_of_tape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tape dispenser is used for holding tape", "pln": ["(: cnet_usedfor_9a551999e9 (UsedFor tape_dispenser holding_tape) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tapestry is used for art", "pln": ["(: cnet_usedfor_8deaa23c70 (UsedFor tapestry art) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tapestry is used for decor", "pln": ["(: cnet_usedfor_fc64e829d8 (UsedFor tapestry decor) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tapestry is used for decorate room", "pln": ["(: cnet_usedfor_ebb3ec1927 (UsedFor tapestry decorate_room) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tapestry is used for decorate wall", "pln": ["(: cnet_usedfor_85140bd98d (UsedFor tapestry decorate_wall) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "taping television show is used for viewing later", "pln": ["(: cnet_usedfor_a4d35411f6 (UsedFor taping_television_show viewing_later) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "taping television show is used for watching again", "pln": ["(: cnet_usedfor_b5e73ce02e (UsedFor taping_television_show watching_again) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tartar control toothpaste is used for brush teeth", "pln": ["(: cnet_usedfor_b4334365a1 (UsedFor tartar_control_toothpaste brush_teeth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tartar control toothpaste is used for brushing teeth", "pln": ["(: cnet_usedfor_a5244182f9 (UsedFor tartar_control_toothpaste brushing_teeth) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tartar control toothpaste is used for control tartar", "pln": ["(: cnet_usedfor_76a5ea80db (UsedFor tartar_control_toothpaste control_tartar) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "tasting sweet is used for pleasure", "pln": ["(: cnet_usedfor_5eb7826926 (UsedFor tasting_sweet pleasure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "teaching other people is used for educating", "pln": ["(: cnet_usedfor_02ae162a4d (UsedFor teaching_other_people educating) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "teaching other people is used for learning", "pln": ["(: cnet_usedfor_34d4e99574 (UsedFor teaching_other_people learning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "teaching other people is used for spreading knowledge", "pln": ["(: cnet_usedfor_4401b278a0 (UsedFor teaching_other_people spreading_knowledge) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "teakettle is used for boil water to make tea", "pln": ["(: cnet_usedfor_e21a49f736 (UsedFor teakettle boil_water_to_make_tea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "teakettle is used for boiling water", "pln": ["(: cnet_usedfor_2b5be37492 (UsedFor teakettle boiling_water) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "teakettle is used for heating water", "pln": ["(: cnet_usedfor_c6a42bef2e (UsedFor teakettle heating_water) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "teakettle is used for making tea", "pln": ["(: cnet_usedfor_838f902f18 (UsedFor teakettle making_tea) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tear off calendar is used for keep track of date", "pln": ["(: cnet_usedfor_8e1df03a1f (UsedFor tear_off_calendar keep_track_of_date) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tearoom is used for being served drink and food", "pln": ["(: cnet_usedfor_44b30fb975 (UsedFor tearoom being_served_drink_and_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tearoom is used for drinking tea", "pln": ["(: cnet_usedfor_4ad1f188b8 (UsedFor tearoom drinking_tea) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "teaspoon is used for eating", "pln": ["(: cnet_usedfor_3d8412a657 (UsedFor teaspoon eating) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "teaspoon is used for making tea", "pln": ["(: cnet_usedfor_e0b9745f0d (UsedFor teaspoon making_tea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "teaspoon is used for measure ingredient", "pln": ["(: cnet_usedfor_7d7e0f2cbc (UsedFor teaspoon measure_ingredient) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "teaspoon is used for measuring", "pln": ["(: cnet_usedfor_c32b4d12c7 (UsedFor teaspoon measuring) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "teaspoon is used for stir coffee", "pln": ["(: cnet_usedfor_ddaae5a3a6 (UsedFor teaspoon stir_coffee) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "teaspoon is used for stir tea", "pln": ["(: cnet_usedfor_38ea47a3cd (UsedFor teaspoon stir_tea) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "telephone is used for call friend", "pln": ["(: cnet_usedfor_df88c2da16 (UsedFor telephone call_friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "telephone is used for communicate", "pln": ["(: cnet_usedfor_60796684bd (UsedFor telephone communicate) (STV 1.0 0.9791))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "telephone is used for communicating", "pln": ["(: cnet_usedfor_e64c4ab2f8 (UsedFor telephone communicating) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "telephone is used for communication", "pln": ["(: cnet_usedfor_5ddf52d1d1 (UsedFor telephone communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "telephone is used for making phone call", "pln": ["(: cnet_usedfor_6d794c9a0d (UsedFor telephone making_phone_call) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "telephone is used for talking to", "pln": ["(: cnet_usedfor_f1462a7148 (UsedFor telephone talking_to) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "telephone is used for talking to friend", "pln": ["(: cnet_usedfor_e62b4182b9 (UsedFor telephone talking_to_friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "telephone book is used for look up number", "pln": ["(: cnet_usedfor_0b473ede26 (UsedFor telephone_book look_up_number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "telephone book is used for look up telephone number", "pln": ["(: cnet_usedfor_2a6aa9ac4f (UsedFor telephone_book look_up_telephone_number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "telephone book is used for looking up someone address", "pln": ["(: cnet_usedfor_f265a8871f (UsedFor telephone_book looking_up_someone_address) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "telephone book is used for paperweight", "pln": ["(: cnet_usedfor_3e56bc5710 (UsedFor telephone_book paperweight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "telephone booth is used for make phone call", "pln": ["(: cnet_usedfor_bcce31e704 (UsedFor telephone_booth make_phone_call) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "telephone booth is used for making telephone call", "pln": ["(: cnet_usedfor_f94436b6f0 (UsedFor telephone_booth making_telephone_call) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "telephone box is used for call mom", "pln": ["(: cnet_usedfor_1495b284b3 (UsedFor telephone_box call_mom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "telephone directory is used for find", "pln": ["(: cnet_usedfor_1f8720b1da (UsedFor telephone_directory find) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "telephone directory is used for finding address", "pln": ["(: cnet_usedfor_d00e94b065 (UsedFor telephone_directory finding_address) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "telephone directory is used for finding out phone number", "pln": ["(: cnet_usedfor_b178fe979e (UsedFor telephone_directory finding_out_phone_number) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "telephone directory is used for finding people s telephone number", "pln": ["(: cnet_usedfor_52c8cad197 (UsedFor telephone_directory finding_people_s_telephone_number) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "telephone kiosk is used for communicating", "pln": ["(: cnet_usedfor_136d8c778f (UsedFor telephone_kiosk communicating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "telephone kiosk is used for make call", "pln": ["(: cnet_usedfor_51c91e35da (UsedFor telephone_kiosk make_call) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "telephone kiosk is used for making phone call", "pln": ["(: cnet_usedfor_31b7c94639 (UsedFor telephone_kiosk making_phone_call) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "telephone kiosk is used for public phone call", "pln": ["(: cnet_usedfor_789edd0e86 (UsedFor telephone_kiosk public_phone_call) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "telephone line is used for conduct", "pln": ["(: cnet_usedfor_590cdfeec9 (UsedFor telephone_line conduct) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "telephone line is used for connect", "pln": ["(: cnet_usedfor_2d02a97666 (UsedFor telephone_line connect) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "telephone pole is used for suspending wire", "pln": ["(: cnet_usedfor_13a78e69a9 (UsedFor telephone_pole suspending_wire) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "telephone room is used for storing telephone", "pln": ["(: cnet_usedfor_8cec481c84 (UsedFor telephone_room storing_telephone) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "telephone is used for real time voice communication between two party", "pln": ["(: cnet_usedfor_a388c79bf1 (UsedFor telephone real_time_voice_communication_between_two_party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "telescope is used for look at object in space", "pln": ["(: cnet_usedfor_a2116c1acc (UsedFor telescope look_at_object_in_space) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "telescope is used for view object far away", "pln": ["(: cnet_usedfor_76d2807624 (UsedFor telescope view_object_far_away) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "television is used for watch movie", "pln": ["(: cnet_usedfor_aad864434e (UsedFor television watch_movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "television is used for watching", "pln": ["(: cnet_usedfor_c85b23d001 (UsedFor television watching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "television studio is used for produce television program", "pln": ["(: cnet_usedfor_9a1da220ea (UsedFor television_studio produce_television_program) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "telling many people about is used for spreading gossip", "pln": ["(: cnet_usedfor_8a5faf82fa (UsedFor telling_many_people_about spreading_gossip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "telling many people about is used for spreading information", "pln": ["(: cnet_usedfor_d922b256c6 (UsedFor telling_many_people_about spreading_information) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "telling many people about is used for spreading rumor", "pln": ["(: cnet_usedfor_03ca717b18 (UsedFor telling_many_people_about spreading_rumor) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "telling story is used for entertainment", "pln": ["(: cnet_usedfor_a54b7cc114 (UsedFor telling_story entertainment) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "temple is used for praying", "pln": ["(: cnet_usedfor_32e8b69bcb (UsedFor temple praying) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "temple is used for religion", "pln": ["(: cnet_usedfor_d1ea0df56c (UsedFor temple religion) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "temple is used for worship", "pln": ["(: cnet_usedfor_f8e86dbd3c (UsedFor temple worship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "temple is used for worshipping", "pln": ["(: cnet_usedfor_cc38756e4f (UsedFor temple worshipping) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tennis ball is used for bouncing", "pln": ["(: cnet_usedfor_572673de7b (UsedFor tennis_ball bouncing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tennis ball is used for play tennis", "pln": ["(: cnet_usedfor_51c86bdd50 (UsedFor tennis_ball play_tennis) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tennis ball is used for playing sport", "pln": ["(: cnet_usedfor_b2142a3fc9 (UsedFor tennis_ball playing_sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tennis ball is used for playing tennis", "pln": ["(: cnet_usedfor_30dc8da4ce (UsedFor tennis_ball playing_tennis) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tennis game is used for exercise", "pln": ["(: cnet_usedfor_391cfe25d0 (UsedFor tennis_game exercise) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tennis game is used for fun", "pln": ["(: cnet_usedfor_01525cf834 (UsedFor tennis_game fun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "tennis game is used for sport", "pln": ["(: cnet_usedfor_f253ca9f89 (UsedFor tennis_game sport) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tenor is used for singing", "pln": ["(: cnet_usedfor_9f33de2d87 (UsedFor tenor singing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tent is used for camping", "pln": ["(: cnet_usedfor_a1786d94c5 (UsedFor tent camping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tent is used for sleep in while camping", "pln": ["(: cnet_usedfor_1606c93ff4 (UsedFor tent sleep_in_while_camping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "terrace is used for standing on", "pln": ["(: cnet_usedfor_69238850f7 (UsedFor terrace standing_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "terraced house is used for live in", "pln": ["(: cnet_usedfor_8df0c5142d (UsedFor terraced_house live_in) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "testing strength is used for demonstrating how strong", "pln": ["(: cnet_usedfor_2408b6fcf8 (UsedFor testing_strength demonstrating_how_strong) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "testing strength is used for determining how strong", "pln": ["(: cnet_usedfor_cad851145d (UsedFor testing_strength determining_how_strong) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "testing strength is used for finding out how strong", "pln": ["(: cnet_usedfor_1d86c2db57 (UsedFor testing_strength finding_out_how_strong) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "testing strength is used for proving how strong", "pln": ["(: cnet_usedfor_0892acd172 (UsedFor testing_strength proving_how_strong) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "testing strength is used for showing off", "pln": ["(: cnet_usedfor_977b904652 (UsedFor testing_strength showing_off) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "text is used for learning", "pln": ["(: cnet_usedfor_395e713d54 (UsedFor text learning) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "text is used for study", "pln": ["(: cnet_usedfor_0473d63088 (UsedFor text study) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "text is used for teaching", "pln": ["(: cnet_usedfor_224447114e (UsedFor text teaching) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "textile is used for make clothing", "pln": ["(: cnet_usedfor_5570540c97 (UsedFor textile make_clothing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "thanking is used for being polite", "pln": ["(: cnet_usedfor_94e388b3da (UsedFor thanking being_polite) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "thanking is used for expressing appreciation", "pln": ["(: cnet_usedfor_8d10a39b57 (UsedFor thanking expressing_appreciation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "thanking is used for expressing gratitude", "pln": ["(: cnet_usedfor_ee6c81463d (UsedFor thanking expressing_gratitude) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "theater is used for watch movie", "pln": ["(: cnet_usedfor_255b39a353 (UsedFor theater watch_movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "theater box is used for having privacy", "pln": ["(: cnet_usedfor_1996d8185f (UsedFor theater_box having_privacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "theater box is used for sitting there", "pln": ["(: cnet_usedfor_9ea1961759 (UsedFor theater_box sitting_there) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "theater box is used for watch play", "pln": ["(: cnet_usedfor_87526c43db (UsedFor theater_box watch_play) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "theater seat is used for sitting", "pln": ["(: cnet_usedfor_82a192ae39 (UsedFor theater_seat sitting) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "theatre is used for event", "pln": ["(: cnet_usedfor_7fe06ccfc4 (UsedFor theatre event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "theatre ticket is used for gain entrance to movie", "pln": ["(: cnet_usedfor_d694374e4b (UsedFor theatre_ticket gain_entrance_to_movie) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "thermometer is used for measuring temperature", "pln": ["(: cnet_usedfor_f856027c26 (UsedFor thermometer measuring_temperature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "thermostat is used for set temperature", "pln": ["(: cnet_usedfor_7d93c4c62e (UsedFor thermostat set_temperature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "thinking is used for adapting", "pln": ["(: cnet_usedfor_3fedbb69a5 (UsedFor thinking adapting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "thinking is used for coming to conclusion", "pln": ["(: cnet_usedfor_36fe561787 (UsedFor thinking coming_to_conclusion) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "thinking is used for deciding", "pln": ["(: cnet_usedfor_4ad2ed936f (UsedFor thinking deciding) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "thinking is used for deducing", "pln": ["(: cnet_usedfor_b26a794ced (UsedFor thinking deducing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "thumbtacks is used for pin notices to bulletin boards", "pln": ["(: cnet_usedfor_4d1ce86698 (UsedFor thumbtacks pin_notices_to_bulletin_boards) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "thinking is used for learning", "pln": ["(: cnet_usedfor_724ac3233c (UsedFor thinking learning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "thinking is used for reasoning", "pln": ["(: cnet_usedfor_036655e77a (UsedFor thinking reasoning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "thinking is used for solving", "pln": ["(: cnet_usedfor_35d8dd05ff (UsedFor thinking solving) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "thinking is used for solving problem", "pln": ["(: cnet_usedfor_4e64cefbde (UsedFor thinking solving_problem) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "thinking is used for understanding", "pln": ["(: cnet_usedfor_eff7a4f6fd (UsedFor thinking understanding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "thread is used for sewing", "pln": ["(: cnet_usedfor_eafbfdf1a6 (UsedFor thread sewing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "thruway is used for travel", "pln": ["(: cnet_usedfor_c8081969ad (UsedFor thruway travel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "thumb tack is used for putting poster up", "pln": ["(: cnet_usedfor_d98bf02322 (UsedFor thumb_tack putting_poster_up) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "thumbtack is used for pin notice to bulletin board", "pln": ["(: cnet_usedfor_140241d7db (UsedFor thumbtack pin_notice_to_bulletin_board) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "thunderbolt is used for strike", "pln": ["(: cnet_usedfor_0ac42e4c28 (UsedFor thunderbolt strike) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ticket is used for enter sport event", "pln": ["(: cnet_usedfor_85b2430f2f (UsedFor ticket enter_sport_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ticket is used for riding train", "pln": ["(: cnet_usedfor_67d5515997 (UsedFor ticket riding_train) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ticket is used for speeding", "pln": ["(: cnet_usedfor_b184f76546 (UsedFor ticket speeding) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ticket booth is used for buying ticket", "pln": ["(: cnet_usedfor_21001c1700 (UsedFor ticket_booth buying_ticket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ticket booth is used for purchasing ticket", "pln": ["(: cnet_usedfor_1cc91fbb72 (UsedFor ticket_booth purchasing_ticket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "ticket booth is used for sell ticket", "pln": ["(: cnet_usedfor_8702080a94 (UsedFor ticket_booth sell_ticket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "ticket box is used for store tickets", "pln": ["(: cnet_usedfor_bc66820430 (UsedFor ticket_box store_tickets) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ticket booth is used for selling ticket", "pln": ["(: cnet_usedfor_f4fd520249 (UsedFor ticket_booth selling_ticket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ticket box is used for putting ticket into", "pln": ["(: cnet_usedfor_e6b2978263 (UsedFor ticket_box putting_ticket_into) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ticket box is used for store ticket", "pln": ["(: cnet_usedfor_4706b0823b (UsedFor ticket_box store_ticket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ticket office is used for buying ticket", "pln": ["(: cnet_usedfor_30e3408b2d (UsedFor ticket_office buying_ticket) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ticket office is used for selling ticket", "pln": ["(: cnet_usedfor_b1f070d314 (UsedFor ticket_office selling_ticket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ticket slot is used for collect ticket", "pln": ["(: cnet_usedfor_c544328b36 (UsedFor ticket_slot collect_ticket) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ticket slot is used for inserting ticket", "pln": ["(: cnet_usedfor_27b476eb66 (UsedFor ticket_slot inserting_ticket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ticket slot is used for putting ticket in", "pln": ["(: cnet_usedfor_70d8a192de (UsedFor ticket_slot putting_ticket_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ticket is used for get into event", "pln": ["(: cnet_usedfor_232f3e8b82 (UsedFor ticket get_into_event) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tickling is used for causing laughter", "pln": ["(: cnet_usedfor_f6e7c5aa61 (UsedFor tickling causing_laughter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tickling is used for flirting", "pln": ["(: cnet_usedfor_58081a4e4a (UsedFor tickling flirting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tickling is used for fun", "pln": ["(: cnet_usedfor_f505c2b6f7 (UsedFor tickling fun) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tickling is used for laugh", "pln": ["(: cnet_usedfor_1598a1be06 (UsedFor tickling laugh) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tickling is used for making angry at", "pln": ["(: cnet_usedfor_10edc32f0c (UsedFor tickling making_angry_at) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tickling is used for making child laugh", "pln": ["(: cnet_usedfor_e1a22eaf0a (UsedFor tickling making_child_laugh) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tickling is used for making laugh", "pln": ["(: cnet_usedfor_f6b81b0d79 (UsedFor tickling making_laugh) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tickling is used for play", "pln": ["(: cnet_usedfor_2950faa76b (UsedFor tickling play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tickling is used for sensation", "pln": ["(: cnet_usedfor_b2f6ca48bf (UsedFor tickling sensation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tickling is used for teasing", "pln": ["(: cnet_usedfor_b545a2e497 (UsedFor tickling teasing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tile is used for bathroom", "pln": ["(: cnet_usedfor_57c71b248c (UsedFor tile bathroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "tile is used for covering wall", "pln": ["(: cnet_usedfor_255db5f425 (UsedFor tile covering_wall) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tile is used for flooring", "pln": ["(: cnet_usedfor_c009387826 (UsedFor tile flooring) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tile is used for playing scrabble", "pln": ["(: cnet_usedfor_11f4dbe0bd (UsedFor tile playing_scrabble) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tin is used for hold cooky", "pln": ["(: cnet_usedfor_f55918df2e (UsedFor tin hold_cooky) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tin is used for holding cooky", "pln": ["(: cnet_usedfor_9ccd43b0d7 (UsedFor tin holding_cooky) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tin is used for holding food", "pln": ["(: cnet_usedfor_1e3c6c7cf2 (UsedFor tin holding_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tin is used for holding sardine", "pln": ["(: cnet_usedfor_b5ca6e174e (UsedFor tin holding_sardine) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tissue holder is used for hold tissue", "pln": ["(: cnet_usedfor_914a6709ac (UsedFor tissue_holder hold_tissue) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tissue holder is used for holding tissue", "pln": ["(: cnet_usedfor_f195d4cb87 (UsedFor tissue_holder holding_tissue) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toilet is used for barf in", "pln": ["(: cnet_usedfor_2349f197c5 (UsedFor toilet barf_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toilet is used for dispose of waste", "pln": ["(: cnet_usedfor_f88c460ba6 (UsedFor toilet dispose_of_waste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "toilet is used for go potty", "pln": ["(: cnet_usedfor_958cb51645 (UsedFor toilet go_potty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "toilet is used for peeing", "pln": ["(: cnet_usedfor_40c8e2d7f0 (UsedFor toilet peeing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "toilet brush is used for clean toilets", "pln": ["(: cnet_usedfor_492d0115e9 (UsedFor toilet_brush clean_toilets) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toilet is used for poop", "pln": ["(: cnet_usedfor_d7cf8fc178 (UsedFor toilet poop) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toilet is used for shitting", "pln": ["(: cnet_usedfor_64873651a7 (UsedFor toilet shitting) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toilet is used for urinate", "pln": ["(: cnet_usedfor_a2e94726cf (UsedFor toilet urinate) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toilet is used for waste", "pln": ["(: cnet_usedfor_f7ff932ec2 (UsedFor toilet waste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toilet brush is used for clean toilet", "pln": ["(: cnet_usedfor_be4f425884 (UsedFor toilet_brush clean_toilet) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toilet paper is used for absorbing moisture", "pln": ["(: cnet_usedfor_de5719660b (UsedFor toilet_paper absorbing_moisture) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toilet paper is used for bathroom", "pln": ["(: cnet_usedfor_22fbd4014b (UsedFor toilet_paper bathroom) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toilet paper is used for blow nose", "pln": ["(: cnet_usedfor_b5b9f9be94 (UsedFor toilet_paper blow_nose) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toilet paper is used for cleaning up liquid", "pln": ["(: cnet_usedfor_234c5568fc (UsedFor toilet_paper cleaning_up_liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toilet paper is used for female to wipe vagina", "pln": ["(: cnet_usedfor_6ce60fd543 (UsedFor toilet_paper female_to_wipe_vagina) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "toilet paper is used for personal hygiene", "pln": ["(: cnet_usedfor_f7e364bb23 (UsedFor toilet_paper personal_hygiene) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toilet paper is used for toss on tree", "pln": ["(: cnet_usedfor_f47523f3d2 (UsedFor toilet_paper toss_on_tree) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toilet paper is used for wipe", "pln": ["(: cnet_usedfor_891a169460 (UsedFor toilet_paper wipe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toilet paper is used for wipe arse", "pln": ["(: cnet_usedfor_e4b413a883 (UsedFor toilet_paper wipe_arse) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toilet paper is used for wipe nose", "pln": ["(: cnet_usedfor_edcada79e4 (UsedFor toilet_paper wipe_nose) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toilet paper is used for wiping asshole", "pln": ["(: cnet_usedfor_f95b0be4f2 (UsedFor toilet_paper wiping_asshole) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toilet paper is used for wiping oneself", "pln": ["(: cnet_usedfor_31b9d4099e (UsedFor toilet_paper wiping_oneself) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toilet paper is used for wiping up small spill", "pln": ["(: cnet_usedfor_fafa7cbbd2 (UsedFor toilet_paper wiping_up_small_spill) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toilet tank is used for hold water", "pln": ["(: cnet_usedfor_36cff6332a (UsedFor toilet_tank hold_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "token is used for subway ride", "pln": ["(: cnet_usedfor_ded6904943 (UsedFor token subway_ride) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "token slot is used for insert token", "pln": ["(: cnet_usedfor_de9b00646a (UsedFor token_slot insert_token) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "token turnstile is used for riding subway", "pln": ["(: cnet_usedfor_0f05ee9008 (UsedFor token_turnstile riding_subway) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toll road is used for driving", "pln": ["(: cnet_usedfor_5c67a5f9f1 (UsedFor toll_road driving) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toll road is used for traveling on", "pln": ["(: cnet_usedfor_f6b966bf4e (UsedFor toll_road traveling_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tool is used for building", "pln": ["(: cnet_usedfor_5721e91ade (UsedFor tool building) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tool is used for building thing", "pln": ["(: cnet_usedfor_ea9264be2e (UsedFor tool building_thing) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tool is used for fix thing", "pln": ["(: cnet_usedfor_2996235a49 (UsedFor tool fix_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tool is used for fixing thing", "pln": ["(: cnet_usedfor_c64346344b (UsedFor tool fixing_thing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tool is used for making thing", "pln": ["(: cnet_usedfor_3d0c1b9d53 (UsedFor tool making_thing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tooth is used for chew food", "pln": ["(: cnet_usedfor_3c03de5e1b (UsedFor tooth chew_food) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "tooth is used for chewing food", "pln": ["(: cnet_usedfor_d58770fadc (UsedFor tooth chewing_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "tooth is used for crushing", "pln": ["(: cnet_usedfor_317a8e7bef (UsedFor tooth crushing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "tooth is used for eating", "pln": ["(: cnet_usedfor_f86da3f738 (UsedFor tooth eating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tooth is used for griding", "pln": ["(: cnet_usedfor_9451c7ec90 (UsedFor tooth griding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tooth is used for grinding", "pln": ["(: cnet_usedfor_ff4a46b50c (UsedFor tooth grinding) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tooth is used for ripping", "pln": ["(: cnet_usedfor_16809595f9 (UsedFor tooth ripping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toothbrush is used for brushing teeth", "pln": ["(: cnet_usedfor_551725f815 (UsedFor toothbrush brushing_teeth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toothbrush is used for clean teeth", "pln": ["(: cnet_usedfor_4684923f85 (UsedFor toothbrush clean_teeth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toothbrush is used for cleaning teeth", "pln": ["(: cnet_usedfor_97837b5f86 (UsedFor toothbrush cleaning_teeth) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toothbrush head is used for brush teeth", "pln": ["(: cnet_usedfor_ee741a83e6 (UsedFor toothbrush_head brush_teeth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toothbrush head is used for brushing teeth", "pln": ["(: cnet_usedfor_3f594bb0c6 (UsedFor toothbrush_head brushing_teeth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toothbrush head is used for clean teeth", "pln": ["(: cnet_usedfor_3fdeda340d (UsedFor toothbrush_head clean_teeth) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toothbrush head is used for cleaning teeth", "pln": ["(: cnet_usedfor_39e582ef70 (UsedFor toothbrush_head cleaning_teeth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toothbrush head is used for holding bristle", "pln": ["(: cnet_usedfor_7c1a411959 (UsedFor toothbrush_head holding_bristle) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toothpaste is used for clean teeth", "pln": ["(: cnet_usedfor_0396b8426f (UsedFor toothpaste clean_teeth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toothpaste is used for cleaning teeth", "pln": ["(: cnet_usedfor_bd75cf62a9 (UsedFor toothpaste cleaning_teeth) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toothpaste is used for freshen breath", "pln": ["(: cnet_usedfor_8c0c7b47a3 (UsedFor toothpaste freshen_breath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toothpick is used for clean between teeth", "pln": ["(: cnet_usedfor_d8667dcc8a (UsedFor toothpick clean_between_teeth) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toothpick is used for cleaning food from between teeth", "pln": ["(: cnet_usedfor_96505e40ef (UsedFor toothpick cleaning_food_from_between_teeth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "toothpick is used for remove food from between teeth", "pln": ["(: cnet_usedfor_c0a1220337 (UsedFor toothpick remove_food_from_between_teeth) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toothpick is used for removing debris from between teeth", "pln": ["(: cnet_usedfor_8ec2d9796e (UsedFor toothpick removing_debris_from_between_teeth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toothpick is used for stab olive", "pln": ["(: cnet_usedfor_0317f1f38a (UsedFor toothpick stab_olive) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tortilla is used for make taco", "pln": ["(: cnet_usedfor_8cc074d426 (UsedFor tortilla make_taco) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tote bag is used for carry book", "pln": ["(: cnet_usedfor_6252cecb6f (UsedFor tote_bag carry_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tourniquet is used for controlling blood loss", "pln": ["(: cnet_usedfor_296c8b9266 (UsedFor tourniquet controlling_blood_loss) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tourniquet is used for stop bleeding", "pln": ["(: cnet_usedfor_dc3b8a21a2 (UsedFor tourniquet stop_bleeding) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tourniquet is used for stopping flow of blood", "pln": ["(: cnet_usedfor_9518ad1c9e (UsedFor tourniquet stopping_flow_of_blood) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "towel is used for cleaning up", "pln": ["(: cnet_usedfor_0275c7f359 (UsedFor towel cleaning_up) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "towel is used for cleaning up mess", "pln": ["(: cnet_usedfor_6847891ac7 (UsedFor towel cleaning_up_mess) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "towel is used for dry dishe", "pln": ["(: cnet_usedfor_65f3be03af (UsedFor towel dry_dishe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "towel is used for drying off", "pln": ["(: cnet_usedfor_0c3e121b3a (UsedFor towel drying_off) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "towel bar is used for drying towel", "pln": ["(: cnet_usedfor_5071d3f5d0 (UsedFor towel_bar drying_towel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "towel bar is used for hang towel", "pln": ["(: cnet_usedfor_7ebb46744c (UsedFor towel_bar hang_towel) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "towel rack is used for drying towel", "pln": ["(: cnet_usedfor_07ac030da3 (UsedFor towel_rack drying_towel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "towel rack is used for hang towel", "pln": ["(: cnet_usedfor_26bc78c8ff (UsedFor towel_rack hang_towel) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "towel rack is used for holding towel", "pln": ["(: cnet_usedfor_61fd1213d4 (UsedFor towel_rack holding_towel) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "town is used for live", "pln": ["(: cnet_usedfor_c5d703370b (UsedFor town live) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "townhouse is used for live in", "pln": ["(: cnet_usedfor_f33ebd5a44 (UsedFor townhouse live_in) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "townhouse is used for living in", "pln": ["(: cnet_usedfor_19a7ae64c8 (UsedFor townhouse living_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "townhouse is used for throw party", "pln": ["(: cnet_usedfor_1dd5c19e71 (UsedFor townhouse throw_party) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toy is used for entertainment", "pln": ["(: cnet_usedfor_d32c7cac34 (UsedFor toy entertainment) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toy is used for have fun", "pln": ["(: cnet_usedfor_6ae699b5e2 (UsedFor toy have_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toy ball is used for bouncing up and down", "pln": ["(: cnet_usedfor_3d75bc33fd (UsedFor toy_ball bouncing_up_and_down) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toy ball is used for play", "pln": ["(: cnet_usedfor_bbd3a7bce6 (UsedFor toy_ball play) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toy ball is used for play with dog", "pln": ["(: cnet_usedfor_d038351283 (UsedFor toy_ball play_with_dog) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toy ball is used for playing game", "pln": ["(: cnet_usedfor_556c630dfe (UsedFor toy_ball playing_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toy ball is used for playing with", "pln": ["(: cnet_usedfor_a3a6d132aa (UsedFor toy_ball playing_with) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toy ball is used for throwing", "pln": ["(: cnet_usedfor_510f339b00 (UsedFor toy_ball throwing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toy balloon is used for blowing up", "pln": ["(: cnet_usedfor_95e197cd54 (UsedFor toy_balloon blowing_up) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toy car is used for play", "pln": ["(: cnet_usedfor_5f1502b613 (UsedFor toy_car play) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "toy car is used for playing", "pln": ["(: cnet_usedfor_3e55fb64da (UsedFor toy_car playing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toy car is used for racing", "pln": ["(: cnet_usedfor_669e266459 (UsedFor toy_car racing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toy marble is used for meditate with", "pln": ["(: cnet_usedfor_19289375ee (UsedFor toy_marble meditate_with) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toy marble is used for play", "pln": ["(: cnet_usedfor_2a0554d002 (UsedFor toy_marble play) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toy marble is used for play with", "pln": ["(: cnet_usedfor_828330354e (UsedFor toy_marble play_with) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toy marble is used for playing game", "pln": ["(: cnet_usedfor_7b94c1ed9b (UsedFor toy_marble playing_game) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "toy soldier is used for play war", "pln": ["(: cnet_usedfor_a38475dd46 (UsedFor toy_soldier play_war) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "track is used for greyhound dogs to race on", "pln": ["(: cnet_usedfor_847dfce53a (UsedFor track greyhound_dogs_to_race_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "train tracks is used for trains to travel on", "pln": ["(: cnet_usedfor_c24bcdadb8 (UsedFor train_tracks trains_to_travel_on) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "toy soldier is used for playing war game", "pln": ["(: cnet_usedfor_2190638aa3 (UsedFor toy_soldier playing_war_game) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "track is used for greyhound dog to race on", "pln": ["(: cnet_usedfor_d5528516e3 (UsedFor track greyhound_dog_to_race_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "track is used for railroad train to run on", "pln": ["(: cnet_usedfor_43f9c9e6dd (UsedFor track railroad_train_to_run_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "track is used for running", "pln": ["(: cnet_usedfor_eacd979fcc (UsedFor track running) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "track is used for subway train to run on", "pln": ["(: cnet_usedfor_55b5880ebc (UsedFor track subway_train_to_run_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "train seat is used for sleep on", "pln": ["(: cnet_usedfor_9d862be127 (UsedFor train_seat sleep_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "train station is used for boarding exiting train", "pln": ["(: cnet_usedfor_795947afbc (UsedFor train_station boarding_exiting_train) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "train station is used for train", "pln": ["(: cnet_usedfor_ff5b4547fa (UsedFor train_station train) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "train station is used for traveling", "pln": ["(: cnet_usedfor_1093a85c2b (UsedFor train_station traveling) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "train station is used for waiting for train", "pln": ["(: cnet_usedfor_0fe714221e (UsedFor train_station waiting_for_train) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "train ticket is used for showing to ticket inspector", "pln": ["(: cnet_usedfor_c05c513eb7 (UsedFor train_ticket showing_to_ticket_inspector) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "train ticket is used for travel by train", "pln": ["(: cnet_usedfor_0c82f18474 (UsedFor train_ticket travel_by_train) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "train track is used for connecting city", "pln": ["(: cnet_usedfor_a848e291d4 (UsedFor train_track connecting_city) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "train track is used for guiding train", "pln": ["(: cnet_usedfor_d4f21a7c9f (UsedFor train_track guiding_train) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "train track is used for train travel", "pln": ["(: cnet_usedfor_4cb0dce727 (UsedFor train_track train_travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "train track is used for train", "pln": ["(: cnet_usedfor_9381b42b28 (UsedFor train_track train) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "train track is used for train to travel on", "pln": ["(: cnet_usedfor_18a85fca2a (UsedFor train_track train_to_travel_on) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "transit ticket is used for boarding bus", "pln": ["(: cnet_usedfor_e9ee34a233 (UsedFor transit_ticket boarding_bus) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "transit ticket is used for boarding plane", "pln": ["(: cnet_usedfor_a56d421df5 (UsedFor transit_ticket boarding_plane) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "transit ticket is used for boarding train", "pln": ["(: cnet_usedfor_e188748684 (UsedFor transit_ticket boarding_train) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "transit ticket is used for bus ride", "pln": ["(: cnet_usedfor_6fa34b28f5 (UsedFor transit_ticket bus_ride) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "transit ticket is used for commuting home from office", "pln": ["(: cnet_usedfor_a937359213 (UsedFor transit_ticket commuting_home_from_office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "transit ticket is used for commuting to office", "pln": ["(: cnet_usedfor_387600f458 (UsedFor transit_ticket commuting_to_office) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "transit ticket is used for one way trip", "pln": ["(: cnet_usedfor_e3ac761584 (UsedFor transit_ticket one_way_trip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "transit ticket is used for subway ride", "pln": ["(: cnet_usedfor_bce832f5c6 (UsedFor transit_ticket subway_ride) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "transit ticket is used for take two connecting journey", "pln": ["(: cnet_usedfor_dfbb496644 (UsedFor transit_ticket take_two_connecting_journey) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "transit ticket is used for travel", "pln": ["(: cnet_usedfor_cb0a863841 (UsedFor transit_ticket travel) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "transit ticket is used for travelling on public transport", "pln": ["(: cnet_usedfor_030bb72ff4 (UsedFor transit_ticket travelling_on_public_transport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "transit ticket is used for use transit", "pln": ["(: cnet_usedfor_5b879c1be4 (UsedFor transit_ticket use_transit) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "trash is used for taking out", "pln": ["(: cnet_usedfor_69e744b668 (UsedFor trash taking_out) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "trash container is used for contain trash", "pln": ["(: cnet_usedfor_0b88504acd (UsedFor trash_container contain_trash) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "trash container is used for hold trash", "pln": ["(: cnet_usedfor_7d29ca07b5 (UsedFor trash_container hold_trash) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "trash receptacle is used for putting garbage into", "pln": ["(: cnet_usedfor_8c3ee42d2f (UsedFor trash_receptacle putting_garbage_into) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "trash receptacle is used for putting trash in", "pln": ["(: cnet_usedfor_02dade3ccd (UsedFor trash_receptacle putting_trash_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "trash receptacle is used for waste product", "pln": ["(: cnet_usedfor_2aa393bda3 (UsedFor trash_receptacle waste_product) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "traveling is used for enjoyment", "pln": ["(: cnet_usedfor_fa6c8fdb08 (UsedFor traveling enjoyment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "traveling is used for exploring", "pln": ["(: cnet_usedfor_896962df30 (UsedFor traveling exploring) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "traveling around world is used for meeting interesting people", "pln": ["(: cnet_usedfor_dac5f402bd (UsedFor traveling_around_world meeting_interesting_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tree is used for beauty", "pln": ["(: cnet_usedfor_12c15efdf2 (UsedFor tree beauty) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tree is used for climbing", "pln": ["(: cnet_usedfor_930ad94779 (UsedFor tree climbing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tree is used for shade", "pln": ["(: cnet_usedfor_49696c8047 (UsedFor tree shade) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tree is used for wind break", "pln": ["(: cnet_usedfor_c4ed782e83 (UsedFor tree wind_break) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tree is used for wood", "pln": ["(: cnet_usedfor_ea97585e38 (UsedFor tree wood) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "trial is used for determine guilt or innocence", "pln": ["(: cnet_usedfor_f8901e16e7 (UsedFor trial determine_guilt_or_innocence) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "triangle is used for calculate position on plan", "pln": ["(: cnet_usedfor_58255c61be (UsedFor triangle calculate_position_on_plan) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "triangle is used for draw line at angle", "pln": ["(: cnet_usedfor_1f6186e10d (UsedFor triangle draw_line_at_angle) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "triangle is used for draw straight line", "pln": ["(: cnet_usedfor_fdcd9694fe (UsedFor triangle draw_straight_line) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "triangle is used for drawing angle with", "pln": ["(: cnet_usedfor_356066254e (UsedFor triangle drawing_angle_with) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "triangle is used for geometry", "pln": ["(: cnet_usedfor_806752ec19 (UsedFor triangle geometry) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "triangle is used for making drawing", "pln": ["(: cnet_usedfor_bdc310859f (UsedFor triangle making_drawing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "triangle is used for musical instrument", "pln": ["(: cnet_usedfor_c03c794067 (UsedFor triangle musical_instrument) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "triangle is used for play music", "pln": ["(: cnet_usedfor_fca0af8233 (UsedFor triangle play_music) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "triangle is used for playing song", "pln": ["(: cnet_usedfor_9d36630bb8 (UsedFor triangle playing_song) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "triangle is used for producing simple metal sound", "pln": ["(: cnet_usedfor_2c62d81805 (UsedFor triangle producing_simple_metal_sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "triangle is used for trigonometry", "pln": ["(: cnet_usedfor_ad71865129 (UsedFor triangle trigonometry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "triangle is used for understanding math", "pln": ["(: cnet_usedfor_23553fa6c8 (UsedFor triangle understanding_math) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tripod is used for keep camera steady", "pln": ["(: cnet_usedfor_7fcd16e3c3 (UsedFor tripod keep_camera_steady) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "trombone is used for music", "pln": ["(: cnet_usedfor_40d4a4eba0 (UsedFor trombone music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "trombone is used for play music", "pln": ["(: cnet_usedfor_a405b3a7fe (UsedFor trombone play_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "trombone is used for playing music", "pln": ["(: cnet_usedfor_147e85510a (UsedFor trombone playing_music) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "trumpet is used for making music", "pln": ["(: cnet_usedfor_c06bfc5918 (UsedFor trumpet making_music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "trumpet is used for playing music", "pln": ["(: cnet_usedfor_d9c80542d3 (UsedFor trumpet playing_music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "trumpet is used for playing tap", "pln": ["(: cnet_usedfor_49760b4751 (UsedFor trumpet playing_tap) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "try is used for attempt", "pln": ["(: cnet_usedfor_626ce0114c (UsedFor try attempt) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tub is used for bath", "pln": ["(: cnet_usedfor_e00fc81b7d (UsedFor tub bath) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tub is used for soaking", "pln": ["(: cnet_usedfor_1507603ed9 (UsedFor tub soaking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tub is used for take bath", "pln": ["(: cnet_usedfor_4ee6695580 (UsedFor tub take_bath) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tub is used for taking bath", "pln": ["(: cnet_usedfor_ce1648a00e (UsedFor tub taking_bath) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tub is used for taking bubble bath", "pln": ["(: cnet_usedfor_b7675e632e (UsedFor tub taking_bubble_bath) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "tuba is used for making music", "pln": ["(: cnet_usedfor_a990947360 (UsedFor tuba making_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "tuba is used for play in band", "pln": ["(: cnet_usedfor_9d76ea058c (UsedFor tuba play_in_band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tuba is used for play music", "pln": ["(: cnet_usedfor_80eb5df266 (UsedFor tuba play_music) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "turn signal is used for communicate intention", "pln": ["(: cnet_usedfor_644cdbb2f2 (UsedFor turn_signal communicate_intention) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "turnpike is used for driving", "pln": ["(: cnet_usedfor_9327753f96 (UsedFor turnpike driving) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "turnstile is used for control access to stadium", "pln": ["(: cnet_usedfor_d83cce5bd5 (UsedFor turnstile control_access_to_stadium) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "turnstile is used for controlling access", "pln": ["(: cnet_usedfor_e996ed1361 (UsedFor turnstile controlling_access) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "tv is used for display transmitted image", "pln": ["(: cnet_usedfor_4f997fcfe1 (UsedFor tv display_transmitted_image) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "tv is used for watching movies", "pln": ["(: cnet_usedfor_4524d9e1e1 (UsedFor tv watching_movies) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tv is used for entertainment", "pln": ["(: cnet_usedfor_50f5bd0e45 (UsedFor tv entertainment) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tv is used for getting information", "pln": ["(: cnet_usedfor_a96a68cf2e (UsedFor tv getting_information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tv is used for give information", "pln": ["(: cnet_usedfor_aded99bb63 (UsedFor tv give_information) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tv is used for learning", "pln": ["(: cnet_usedfor_244661533e (UsedFor tv learning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tv is used for watch new", "pln": ["(: cnet_usedfor_7b5c196e36 (UsedFor tv watch_new) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tv is used for watch show", "pln": ["(: cnet_usedfor_60c378a087 (UsedFor tv watch_show) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tv is used for watching", "pln": ["(: cnet_usedfor_198a985638 (UsedFor tv watching) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tv is used for watching film", "pln": ["(: cnet_usedfor_692db66156 (UsedFor tv watching_film) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tv is used for watching movy", "pln": ["(: cnet_usedfor_b3d412572d (UsedFor tv watching_movy) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "tying shoelace is used for keeping shoe on", "pln": ["(: cnet_usedfor_001283cdbc (UsedFor tying_shoelace keeping_shoe_on) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "typewriter is used for writing letters", "pln": ["(: cnet_usedfor_4746eb00d6 (UsedFor typewriter writing_letters) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tying shoelace is used for keeping shoe on foot", "pln": ["(: cnet_usedfor_234ff807b7 (UsedFor tying_shoelace keeping_shoe_on_foot) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tying shoelace is used for not looking like slob", "pln": ["(: cnet_usedfor_b6d0a0a5a3 (UsedFor tying_shoelace not_looking_like_slob) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "tying shoelace is used for preventing from tripping", "pln": ["(: cnet_usedfor_d7b6021523 (UsedFor tying_shoelace preventing_from_tripping) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "typewriter is used for fill in form", "pln": ["(: cnet_usedfor_74b0d10022 (UsedFor typewriter fill_in_form) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "typewriter is used for typing letter", "pln": ["(: cnet_usedfor_652baaa21a (UsedFor typewriter typing_letter) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "typewriter is used for write letter", "pln": ["(: cnet_usedfor_4f8eda1942 (UsedFor typewriter write_letter) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "typewriter is used for write novel", "pln": ["(: cnet_usedfor_b7f5b7a958 (UsedFor typewriter write_novel) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "typewriter is used for writing letter", "pln": ["(: cnet_usedfor_3d42f45989 (UsedFor typewriter writing_letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "typewriter key is used for pressing", "pln": ["(: cnet_usedfor_bf4fb426df (UsedFor typewriter_key pressing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "typewriter keyboard is used for input", "pln": ["(: cnet_usedfor_3dc8dbf313 (UsedFor typewriter_keyboard input) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "typewriter keyboard is used for type word on paper", "pln": ["(: cnet_usedfor_0c9a799220 (UsedFor typewriter_keyboard type_word_on_paper) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "typing is used for entering data", "pln": ["(: cnet_usedfor_ebab768137 (UsedFor typing entering_data) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "umbrella is used for help keep dry", "pln": ["(: cnet_usedfor_09a1cfc906 (UsedFor umbrella help_keep_dry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "umbrella is used for keep yourself dry", "pln": ["(: cnet_usedfor_0dfcddb882 (UsedFor umbrella keep_yourself_dry) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "umbrella is used for keeping dry", "pln": ["(: cnet_usedfor_4942c07ec0 (UsedFor umbrella keeping_dry) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "umbrella is used for keeping sun off", "pln": ["(: cnet_usedfor_5b9fe6b838 (UsedFor umbrella keeping_sun_off) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "underground map is used for sewers", "pln": ["(: cnet_usedfor_9ad968e0e6 (UsedFor underground_map sewers) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "urinating is used for getting rid of bodily wastes", "pln": ["(: cnet_usedfor_0c96cd62c7 (UsedFor urinating getting_rid_of_bodily_wastes) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "umbrella is used for protection from rain", "pln": ["(: cnet_usedfor_5ddcd24afc (UsedFor umbrella protection_from_rain) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "umbrella is used for shelter from rain", "pln": ["(: cnet_usedfor_e5d7a47e63 (UsedFor umbrella shelter_from_rain) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "umbrella is used for stay dry in rain", "pln": ["(: cnet_usedfor_403c76a301 (UsedFor umbrella stay_dry_in_rain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "underground area is used for hiding", "pln": ["(: cnet_usedfor_3fc539bcc1 (UsedFor underground_area hiding) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "underground area is used for store thing", "pln": ["(: cnet_usedfor_2189a8f7ad (UsedFor underground_area store_thing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "underground map is used for sewer", "pln": ["(: cnet_usedfor_ca484e9618 (UsedFor underground_map sewer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "underground map is used for showing where thing underground", "pln": ["(: cnet_usedfor_ca323f2ca4 (UsedFor underground_map showing_where_thing_underground) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "union is used for commercial gain", "pln": ["(: cnet_usedfor_97c1a3ed08 (UsedFor union commercial_gain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "union is used for preventing abuse", "pln": ["(: cnet_usedfor_e43ed0fd0c (UsedFor union preventing_abuse) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "union is used for preventing cruelty", "pln": ["(: cnet_usedfor_b67008125a (UsedFor union preventing_cruelty) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "union is used for promoting happiness", "pln": ["(: cnet_usedfor_1e96d5662f (UsedFor union promoting_happiness) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "united state is used for freedom and refuge", "pln": ["(: cnet_usedfor_1f0939bb00 (UsedFor united_state freedom_and_refuge) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "united state is used for living in", "pln": ["(: cnet_usedfor_bec4fe977d (UsedFor united_state living_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "united state is used for protecting citizen", "pln": ["(: cnet_usedfor_31bb51aed5 (UsedFor united_state protecting_citizen) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "united state is used for protecting people living within border", "pln": ["(: cnet_usedfor_799e3b75e1 (UsedFor united_state protecting_people_living_within_border) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "united state is used for protection", "pln": ["(: cnet_usedfor_cd6ba18ac5 (UsedFor united_state protection) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "university is used for learning", "pln": ["(: cnet_usedfor_046c956d6e (UsedFor university learning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "urinating is used for getting rid of bodily waste", "pln": ["(: cnet_usedfor_0a027d6aa7 (UsedFor urinating getting_rid_of_bodily_waste) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "urinating is used for relief", "pln": ["(: cnet_usedfor_83531afc2a (UsedFor urinating relief) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "urinating is used for relieving bladder", "pln": ["(: cnet_usedfor_867d5bbbcb (UsedFor urinating relieving_bladder) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "using calculator is used for doing math", "pln": ["(: cnet_usedfor_4a09ec2e3b (UsedFor using_calculator doing_math) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "using calculator is used for subtraction", "pln": ["(: cnet_usedfor_4eb8f83d8a (UsedFor using_calculator subtraction) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "using computer is used for adult", "pln": ["(: cnet_usedfor_932f8f529a (UsedFor using_computer adult) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "using computer is used for calculating", "pln": ["(: cnet_usedfor_eb7fda1b65 (UsedFor using_computer calculating) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "using computer is used for children", "pln": ["(: cnet_usedfor_824d300d3b (UsedFor using_computer children) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "using computer is used for friend", "pln": ["(: cnet_usedfor_34f334dc3a (UsedFor using_computer friend) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "using computer is used for student", "pln": ["(: cnet_usedfor_73ac69e04b (UsedFor using_computer student) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "using computer is used for teacher", "pln": ["(: cnet_usedfor_190a70eef9 (UsedFor using_computer teacher) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "using computer is used for working", "pln": ["(: cnet_usedfor_2cdb71dc51 (UsedFor using_computer working) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "using computer is used for writing letter", "pln": ["(: cnet_usedfor_477a0e23c0 (UsedFor using_computer writing_letter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "using television is used for being entertained", "pln": ["(: cnet_usedfor_e26ff70a1c (UsedFor using_television being_entertained) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "using television is used for learning new", "pln": ["(: cnet_usedfor_b976893fda (UsedFor using_television learning_new) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "using television is used for resting vase of flower on", "pln": ["(: cnet_usedfor_bf8cd682ce (UsedFor using_television resting_vase_of_flower_on) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "using television is used for watching movie", "pln": ["(: cnet_usedfor_ca97ae4996 (UsedFor using_television watching_movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "using television is used for watching new", "pln": ["(: cnet_usedfor_bd01ff87aa (UsedFor using_television watching_new) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "using vcr is used for recording movie", "pln": ["(: cnet_usedfor_20870104c6 (UsedFor using_vcr recording_movie) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "using vcr is used for recording television show", "pln": ["(: cnet_usedfor_0291037e50 (UsedFor using_vcr recording_television_show) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "utility case is used for carry stuff", "pln": ["(: cnet_usedfor_36319fe43a (UsedFor utility_case carry_stuff) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "utility case is used for carry tool", "pln": ["(: cnet_usedfor_4800557fdc (UsedFor utility_case carry_tool) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "utility case is used for multiple purpos", "pln": ["(: cnet_usedfor_97bd070710 (UsedFor utility_case multiple_purpos) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "vaccine is used for prevent disease", "pln": ["(: cnet_usedfor_0906720495 (UsedFor vaccine prevent_disease) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "vcr is used for watching vcr tape", "pln": ["(: cnet_usedfor_0126669cfd (UsedFor vcr watching_vcr_tape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "vegetable garden is used for grow pea", "pln": ["(: cnet_usedfor_00e034e8ae (UsedFor vegetable_garden grow_pea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "vegetable garden is used for growing food", "pln": ["(: cnet_usedfor_ace4da73da (UsedFor vegetable_garden growing_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "vegetable garden is used for growing pea", "pln": ["(: cnet_usedfor_6af178ec51 (UsedFor vegetable_garden growing_pea) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "vegetable garden is used for growing vegetable", "pln": ["(: cnet_usedfor_24c11e0d93 (UsedFor vegetable_garden growing_vegetable) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "vegetarian restaurant is used for people who do not eat meat", "pln": ["(: cnet_usedfor_c09a3e1bfc (UsedFor vegetarian_restaurant people_who_do_not_eat_meat) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "visiting other countries is used for learning from other cultures", "pln": ["(: cnet_usedfor_81de25910a (UsedFor visiting_other_countries learning_from_other_cultures) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "waiting on tables is used for taking orders for food", "pln": ["(: cnet_usedfor_646c77f4fe (UsedFor waiting_on_tables taking_orders_for_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "vent brush is used for cleaning vent", "pln": ["(: cnet_usedfor_4572dbedf9 (UsedFor vent_brush cleaning_vent) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "ventilation system is used for get fresh air", "pln": ["(: cnet_usedfor_523782b58d (UsedFor ventilation_system get_fresh_air) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "verb is used for denote action", "pln": ["(: cnet_usedfor_998f8de347 (UsedFor verb denote_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "verb is used for expressing action", "pln": ["(: cnet_usedfor_98b32d9e8c (UsedFor verb expressing_action) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "vessel is used for shipping", "pln": ["(: cnet_usedfor_a2f2a014dc (UsedFor vessel shipping) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "vessel is used for storing liquid", "pln": ["(: cnet_usedfor_6f767f734c (UsedFor vessel storing_liquid) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "vice is used for squeeze", "pln": ["(: cnet_usedfor_70d6e8345d (UsedFor vice squeeze) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "viewing film at home is used for entertaining yourself", "pln": ["(: cnet_usedfor_c0aa95d81b (UsedFor viewing_film_at_home entertaining_yourself) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "viewing video is used for educating", "pln": ["(: cnet_usedfor_511aae6ab1 (UsedFor viewing_video educating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "viewing video is used for entertaining", "pln": ["(: cnet_usedfor_0d0688b1f7 (UsedFor viewing_video entertaining) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "viewing video is used for entertainment", "pln": ["(: cnet_usedfor_8a41fa87ab (UsedFor viewing_video entertainment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "viewing video is used for fun", "pln": ["(: cnet_usedfor_8b81e052b2 (UsedFor viewing_video fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "viewing video is used for learning", "pln": ["(: cnet_usedfor_8ece71f308 (UsedFor viewing_video learning) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "viewing video is used for relaxing", "pln": ["(: cnet_usedfor_284a220618 (UsedFor viewing_video relaxing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "viola is used for play music", "pln": ["(: cnet_usedfor_1a0a0eff89 (UsedFor viola play_music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "viola is used for playing music", "pln": ["(: cnet_usedfor_4e27fd82dd (UsedFor viola playing_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "violin is used for creating", "pln": ["(: cnet_usedfor_a0520099b1 (UsedFor violin creating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "violin is used for play music", "pln": ["(: cnet_usedfor_8f14d6699a (UsedFor violin play_music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "violin is used for playing music", "pln": ["(: cnet_usedfor_86500cdedc (UsedFor violin playing_music) (STV 1.0 0.9659))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "visiting art gallery is used for relaxing", "pln": ["(: cnet_usedfor_7158ec478b (UsedFor visiting_art_gallery relaxing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "visiting art gallery is used for viewing art", "pln": ["(: cnet_usedfor_7a6ffce3ae (UsedFor visiting_art_gallery viewing_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "visiting art gallery is used for viewing favorite type of art", "pln": ["(: cnet_usedfor_8066fb43b5 (UsedFor visiting_art_gallery viewing_favorite_type_of_art) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "visiting museum is used for fun", "pln": ["(: cnet_usedfor_8685785d53 (UsedFor visiting_museum fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "visiting museum is used for learning history", "pln": ["(: cnet_usedfor_25c6b2e3fb (UsedFor visiting_museum learning_history) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "visiting other country is used for archaeology", "pln": ["(: cnet_usedfor_04d82c5711 (UsedFor visiting_other_country archaeology) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "visiting other country is used for learning about other culture", "pln": ["(: cnet_usedfor_d026c6fcb1 (UsedFor visiting_other_country learning_about_other_culture) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "visiting other country is used for learning from other culture", "pln": ["(: cnet_usedfor_e0b0ca77c4 (UsedFor visiting_other_country learning_from_other_culture) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "visiting other country is used for pleasure", "pln": ["(: cnet_usedfor_77ce5a73ad (UsedFor visiting_other_country pleasure) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "visiting other country is used for travel", "pln": ["(: cnet_usedfor_125efa181f (UsedFor visiting_other_country travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "voice is used for communicate", "pln": ["(: cnet_usedfor_3ec90919ad (UsedFor voice communicate) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "voice is used for communication", "pln": ["(: cnet_usedfor_15b0cf6bee (UsedFor voice communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "voice is used for shout", "pln": ["(: cnet_usedfor_81c3e7d7ec (UsedFor voice shout) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "voice is used for singing", "pln": ["(: cnet_usedfor_6e11b13451 (UsedFor voice singing) (STV 1.0 0.9740))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "voice is used for talking", "pln": ["(: cnet_usedfor_8970a45798 (UsedFor voice talking) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "waging war is used for conquering enemy", "pln": ["(: cnet_usedfor_60a6a410b3 (UsedFor waging_war conquering_enemy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "waging war is used for gaining territory", "pln": ["(: cnet_usedfor_08be2005e3 (UsedFor waging_war gaining_territory) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "waging war is used for hitler", "pln": ["(: cnet_usedfor_1ff4484e3a (UsedFor waging_war hitler) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "waging war is used for hurting other", "pln": ["(: cnet_usedfor_df33aa6afd (UsedFor waging_war hurting_other) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "waiting in line is used for buying ticket", "pln": ["(: cnet_usedfor_d158550088 (UsedFor waiting_in_line buying_ticket) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "waiting in line is used for patient people", "pln": ["(: cnet_usedfor_5be6f63dec (UsedFor waiting_in_line patient_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "waiting in line is used for waiting until it s turn", "pln": ["(: cnet_usedfor_43f78b2172 (UsedFor waiting_in_line waiting_until_it_s_turn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "waiting on table is used for getting tip", "pln": ["(: cnet_usedfor_071a075dbb (UsedFor waiting_on_table getting_tip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "waiting on table is used for taking order for food", "pln": ["(: cnet_usedfor_5201130d50 (UsedFor waiting_on_table taking_order_for_food) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "waiting table is used for earning money", "pln": ["(: cnet_usedfor_77a749ad67 (UsedFor waiting_table earning_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "waiting table is used for earning tip", "pln": ["(: cnet_usedfor_56fc995d36 (UsedFor waiting_table earning_tip) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "waiting table is used for making money", "pln": ["(: cnet_usedfor_3a49ec4893 (UsedFor waiting_table making_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "waiting table is used for serving customer", "pln": ["(: cnet_usedfor_a899ddf4a8 (UsedFor waiting_table serving_customer) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "waiting table is used for serving food", "pln": ["(: cnet_usedfor_ef684c229c (UsedFor waiting_table serving_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "waking up in morning is used for getting out of bed", "pln": ["(: cnet_usedfor_ddb50398f8 (UsedFor waking_up_in_morning getting_out_of_bed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "walk in closet is used for storing lot of clothe", "pln": ["(: cnet_usedfor_dbebda1de3 (UsedFor walk_in_closet storing_lot_of_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "walking is used for exercise", "pln": ["(: cnet_usedfor_d5342f96f9 (UsedFor walking exercise) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "walking is used for getting from one place to another", "pln": ["(: cnet_usedfor_0c03078f6e (UsedFor walking getting_from_one_place_to_another) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "walking is used for getting somewhere", "pln": ["(: cnet_usedfor_8d5cc68eba (UsedFor walking getting_somewhere) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "walking is used for going somewhere", "pln": ["(: cnet_usedfor_7abd29c3ac (UsedFor walking going_somewhere) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "walking is used for health of", "pln": ["(: cnet_usedfor_60e7250c4e (UsedFor walking health_of) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "walking around lake is used for having fun", "pln": ["(: cnet_usedfor_07bddd52f0 (UsedFor walking_around_lake having_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "washing clothes is used for having clean clothes to wear", "pln": ["(: cnet_usedfor_7b4472045a (UsedFor washing_clothes having_clean_clothes_to_wear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "washing clothes is used for keeping clean", "pln": ["(: cnet_usedfor_1d2c217781 (UsedFor washing_clothes keeping_clean) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "washing hands is used for removing dirt", "pln": ["(: cnet_usedfor_3ea67bd9a0 (UsedFor washing_hands removing_dirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "walking around lake is used for relaxation", "pln": ["(: cnet_usedfor_e00f235700 (UsedFor walking_around_lake relaxation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wall is used for divide open space into smaller area", "pln": ["(: cnet_usedfor_59251bc898 (UsedFor wall divide_open_space_into_smaller_area) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wall is used for dividing country", "pln": ["(: cnet_usedfor_1266d6ba9a (UsedFor wall dividing_country) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wall is used for holding up roof", "pln": ["(: cnet_usedfor_c460834a4c (UsedFor wall holding_up_roof) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wallet is used for hold credit card", "pln": ["(: cnet_usedfor_f9a7e5dbf6 (UsedFor wallet hold_credit_card) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wallet is used for holding money", "pln": ["(: cnet_usedfor_6299656923 (UsedFor wallet holding_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "war is used for commiting genocide", "pln": ["(: cnet_usedfor_07e8c50d6a (UsedFor war commiting_genocide) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wardrobe is used for hang clothe in", "pln": ["(: cnet_usedfor_27debb8eae (UsedFor wardrobe hang_clothe_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wardrobe is used for keeping clothe", "pln": ["(: cnet_usedfor_6fdab09675 (UsedFor wardrobe keeping_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wardrobe is used for put clothe in", "pln": ["(: cnet_usedfor_481caeef86 (UsedFor wardrobe put_clothe_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wash cloth is used for bath", "pln": ["(: cnet_usedfor_cdb112bc6d (UsedFor wash_cloth bath) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wash cloth is used for cleaning", "pln": ["(: cnet_usedfor_0e0b876de3 (UsedFor wash_cloth cleaning) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "washcloth is used for wash face", "pln": ["(: cnet_usedfor_fb6fc27c96 (UsedFor washcloth wash_face) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "washcloth is used for washing face", "pln": ["(: cnet_usedfor_ff7e6542db (UsedFor washcloth washing_face) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "washing car is used for keeping clean", "pln": ["(: cnet_usedfor_ff261e8dba (UsedFor washing_car keeping_clean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "washing clothe is used for cleaning", "pln": ["(: cnet_usedfor_5161f83152 (UsedFor washing_clothe cleaning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "washing clothe is used for cleaning dirty clothe", "pln": ["(: cnet_usedfor_56a43ede79 (UsedFor washing_clothe cleaning_dirty_clothe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "washing clothe is used for getting clean", "pln": ["(: cnet_usedfor_3824fcddde (UsedFor washing_clothe getting_clean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "washing clothe is used for getting clothe clean", "pln": ["(: cnet_usedfor_3f7b3244e1 (UsedFor washing_clothe getting_clothe_clean) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "washing clothe is used for getting rid of dirt", "pln": ["(: cnet_usedfor_9d1cc1163c (UsedFor washing_clothe getting_rid_of_dirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "washing clothe is used for having clean clothe to wear", "pln": ["(: cnet_usedfor_a9e187c414 (UsedFor washing_clothe having_clean_clothe_to_wear) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "washing clothe is used for keeping clean", "pln": ["(: cnet_usedfor_257e17d291 (UsedFor washing_clothe keeping_clean) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "washing clothe is used for making clothe clean", "pln": ["(: cnet_usedfor_010c828627 (UsedFor washing_clothe making_clothe_clean) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "washing clothe is used for making smell good", "pln": ["(: cnet_usedfor_fb9aecacb6 (UsedFor washing_clothe making_smell_good) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "washing clothe is used for removing dirt", "pln": ["(: cnet_usedfor_53ad5d7dfb (UsedFor washing_clothe removing_dirt) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "washing clothe is used for removing stain", "pln": ["(: cnet_usedfor_47a8f8afaa (UsedFor washing_clothe removing_stain) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "washing hand is used for cleaning dirt off", "pln": ["(: cnet_usedfor_cda54aa3ec (UsedFor washing_hand cleaning_dirt_off) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "washing hand is used for cleaning hand", "pln": ["(: cnet_usedfor_c728a3ccde (UsedFor washing_hand cleaning_hand) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "washing hand is used for hygeine", "pln": ["(: cnet_usedfor_b180254df6 (UsedFor washing_hand hygeine) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "washing hand is used for removing dirt", "pln": ["(: cnet_usedfor_bff87630cd (UsedFor washing_hand removing_dirt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "washing machine is used for washing clothe", "pln": ["(: cnet_usedfor_ab9e8b12fe (UsedFor washing_machine washing_clothe) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "watch is used for being on time", "pln": ["(: cnet_usedfor_9cff47d5d3 (UsedFor watch being_on_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "watch is used for keeping track of time", "pln": ["(: cnet_usedfor_5404ee20be (UsedFor watch keeping_track_of_time) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "watch is used for time", "pln": ["(: cnet_usedfor_db3c62a07d (UsedFor watch time) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "watching evening new is used for being informed", "pln": ["(: cnet_usedfor_880f925f06 (UsedFor watching_evening_new being_informed) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "watching film is used for enjoyment", "pln": ["(: cnet_usedfor_9a072e7fce (UsedFor watching_film enjoyment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "watching film is used for entertainment", "pln": ["(: cnet_usedfor_ba1a2ab6fe (UsedFor watching_film entertainment) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "watching film is used for fun", "pln": ["(: cnet_usedfor_87d5954ed3 (UsedFor watching_film fun) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "watching film is used for relaxation", "pln": ["(: cnet_usedfor_baf245bef0 (UsedFor watching_film relaxation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "watching movie is used for fun", "pln": ["(: cnet_usedfor_38027916db (UsedFor watching_movie fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "watching musician perform is used for relaxation", "pln": ["(: cnet_usedfor_7091f185b9 (UsedFor watching_musician_perform relaxation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "watching musician perform is used for relaxing", "pln": ["(: cnet_usedfor_407c0d275f (UsedFor watching_musician_perform relaxing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "watching television is used for education", "pln": ["(: cnet_usedfor_af2b07238b (UsedFor watching_television education) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "watching television is used for entertainment", "pln": ["(: cnet_usedfor_a995437713 (UsedFor watching_television entertainment) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "watching television is used for learning", "pln": ["(: cnet_usedfor_5f963a5568 (UsedFor watching_television learning) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "watching television show is used for entertainment", "pln": ["(: cnet_usedfor_0e1aa4fe01 (UsedFor watching_television_show entertainment) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "watching television show is used for passive entertainment", "pln": ["(: cnet_usedfor_c59884f394 (UsedFor watching_television_show passive_entertainment) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "watching tv is used for education", "pln": ["(: cnet_usedfor_dfa286f9a4 (UsedFor watching_tv education) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "watching tv is used for learning", "pln": ["(: cnet_usedfor_e5b8f62ec2 (UsedFor watching_tv learning) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "watching tv is used for relaxation", "pln": ["(: cnet_usedfor_2b66360eb7 (UsedFor watching_tv relaxation) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "watching tv show is used for entertaining", "pln": ["(: cnet_usedfor_ef6992d30d (UsedFor watching_tv_show entertaining) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "watching tv show is used for entertainment", "pln": ["(: cnet_usedfor_04de295136 (UsedFor watching_tv_show entertainment) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "watching tv show is used for learning", "pln": ["(: cnet_usedfor_1c732aeabf (UsedFor watching_tv_show learning) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "watching tv show is used for passing time", "pln": ["(: cnet_usedfor_3fb5b7c1ea (UsedFor watching_tv_show passing_time) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "watching tv show is used for wasting time", "pln": ["(: cnet_usedfor_4124c61abd (UsedFor watching_tv_show wasting_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "watching tv show is used for zoning out", "pln": ["(: cnet_usedfor_27f433fb7d (UsedFor watching_tv_show zoning_out) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "water is used for bathing", "pln": ["(: cnet_usedfor_de3463c21f (UsedFor water bathing) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "water is used for cleaning", "pln": ["(: cnet_usedfor_980d663ffa (UsedFor water cleaning) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "water is used for drink", "pln": ["(: cnet_usedfor_c441dfda51 (UsedFor water drink) (STV 1.0 0.9763))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "water is used for drinking", "pln": ["(: cnet_usedfor_7c9cb4474d (UsedFor water drinking) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "water is used for extinguish most fire", "pln": ["(: cnet_usedfor_629db9ae6e (UsedFor water extinguish_most_fire) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "water is used for hydration", "pln": ["(: cnet_usedfor_640247dd02 (UsedFor water hydration) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "water is used for put out fire", "pln": ["(: cnet_usedfor_6fd970dcaf (UsedFor water put_out_fire) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "water is used for quench thirst", "pln": ["(: cnet_usedfor_b2dc85b90d (UsedFor water quench_thirst) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "water is used for quenching thirst", "pln": ["(: cnet_usedfor_3b6795b45d (UsedFor water quenching_thirst) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "water is used for swimming in", "pln": ["(: cnet_usedfor_50ef645650 (UsedFor water swimming_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "water is used for wash", "pln": ["(: cnet_usedfor_eade32d757 (UsedFor water wash) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "water is used for washing", "pln": ["(: cnet_usedfor_a57cd8e680 (UsedFor water washing) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "water is used for washing dishe", "pln": ["(: cnet_usedfor_d2843680d5 (UsedFor water washing_dishe) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "water is used for watering plant", "pln": ["(: cnet_usedfor_004d210afd (UsedFor water watering_plant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "water spout is used for pour water", "pln": ["(: cnet_usedfor_7d9646c50b (UsedFor water_spout pour_water) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "watering plant is used for it s growth", "pln": ["(: cnet_usedfor_d2043fab21 (UsedFor watering_plant it_s_growth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "watering plant is used for keeping healthy", "pln": ["(: cnet_usedfor_68f717161a (UsedFor watering_plant keeping_healthy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "watering plant is used for making leave green", "pln": ["(: cnet_usedfor_2e28354192 (UsedFor watering_plant making_leave_green) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "waxed dental floss is used for clean teeth", "pln": ["(: cnet_usedfor_83a2563c91 (UsedFor waxed_dental_floss clean_teeth) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "waxed dental floss is used for flossing teeth", "pln": ["(: cnet_usedfor_cf730ded05 (UsedFor waxed_dental_floss flossing_teeth) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "weapon is used for hurt", "pln": ["(: cnet_usedfor_0e25690689 (UsedFor weapon hurt) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "weapon is used for kill", "pln": ["(: cnet_usedfor_3fe33fb18a (UsedFor weapon kill) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "weapon is used for killing", "pln": ["(: cnet_usedfor_a42c821ea3 (UsedFor weapon killing) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "weapon is used for self defense", "pln": ["(: cnet_usedfor_dc1c3369bd (UsedFor weapon self_defense) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "weapon is used for threatening", "pln": ["(: cnet_usedfor_3339c03b02 (UsedFor weapon threatening) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "weapon is used for kill people", "pln": ["(: cnet_usedfor_c56099d2b5 (UsedFor weapon kill_people) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wedding chapel is used for get married in", "pln": ["(: cnet_usedfor_dd48fb08de (UsedFor wedding_chapel get_married_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wedding chapel is used for shotgun wedding", "pln": ["(: cnet_usedfor_f014ecdb24 (UsedFor wedding_chapel shotgun_wedding) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wedding ring is used for marrying", "pln": ["(: cnet_usedfor_4f2206edd2 (UsedFor wedding_ring marrying) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wedding ring is used for propose marriage", "pln": ["(: cnet_usedfor_88b17fbbda (UsedFor wedding_ring propose_marriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wedding ring is used for symbolize relationship", "pln": ["(: cnet_usedfor_8131a6dbb2 (UsedFor wedding_ring symbolize_relationship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wedding ring is used for symbolizing marriage", "pln": ["(: cnet_usedfor_0bf79cc64c (UsedFor wedding_ring symbolizing_marriage) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "weeding garden is used for gardener", "pln": ["(: cnet_usedfor_043a1b119d (UsedFor weeding_garden gardener) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "weeding garden is used for getting rid of unwanted plant", "pln": ["(: cnet_usedfor_3b2fe3aaf4 (UsedFor weeding_garden getting_rid_of_unwanted_plant) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "weeding garden is used for getting rid of weed", "pln": ["(: cnet_usedfor_7f7409b19e (UsedFor weeding_garden getting_rid_of_weed) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "weeding garden is used for helping garden look better", "pln": ["(: cnet_usedfor_79b5574107 (UsedFor weeding_garden helping_garden_look_better) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "well is used for get water", "pln": ["(: cnet_usedfor_a0bbe1fe25 (UsedFor well get_water) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wheat is used for flour", "pln": ["(: cnet_usedfor_b752567a07 (UsedFor wheat flour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wheat is used for make flour", "pln": ["(: cnet_usedfor_3aca9b0b8c (UsedFor wheat make_flour) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wheat is used for making flour", "pln": ["(: cnet_usedfor_7bd53003dc (UsedFor wheat making_flour) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wheel is used for rolling", "pln": ["(: cnet_usedfor_56e45b3825 (UsedFor wheel rolling) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wheel is used for turn", "pln": ["(: cnet_usedfor_23011de3d4 (UsedFor wheel turn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "whore is used for sex", "pln": ["(: cnet_usedfor_891c7e955e (UsedFor whore sex) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wind instrument is used for create music", "pln": ["(: cnet_usedfor_a75f94e877 (UsedFor wind_instrument create_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wind instrument is used for making music", "pln": ["(: cnet_usedfor_c7614821f0 (UsedFor wind_instrument making_music) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wind instrument is used for musical band", "pln": ["(: cnet_usedfor_041db85021 (UsedFor wind_instrument musical_band) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "window is used for keep cold air out", "pln": ["(: cnet_usedfor_195915029f (UsedFor window keep_cold_air_out) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "window is used for letting fresh air into room", "pln": ["(: cnet_usedfor_f410032d14 (UsedFor window letting_fresh_air_into_room) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "window is used for letting light in building", "pln": ["(: cnet_usedfor_d2198178b8 (UsedFor window letting_light_in_building) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "window is used for look out of", "pln": ["(: cnet_usedfor_e7e1fc19be (UsedFor window look_out_of) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "window is used for look outside", "pln": ["(: cnet_usedfor_2cc23767f9 (UsedFor window look_outside) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "window is used for looking outside", "pln": ["(: cnet_usedfor_01b01d6e69 (UsedFor window looking_outside) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "window curtain is used for decorate window", "pln": ["(: cnet_usedfor_842ef0d745 (UsedFor window_curtain decorate_window) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "window curtain is used for decorating window", "pln": ["(: cnet_usedfor_0fc4d7c96a (UsedFor window_curtain decorating_window) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "window curtain is used for provide privacy", "pln": ["(: cnet_usedfor_c5a4cefd73 (UsedFor window_curtain provide_privacy) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "window curtain is used for providing privacy", "pln": ["(: cnet_usedfor_f92dad7adf (UsedFor window_curtain providing_privacy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wine is used for drinking", "pln": ["(: cnet_usedfor_a70d6ee0fc (UsedFor wine drinking) (STV 1.0 0.9719))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wine is used for get drunk", "pln": ["(: cnet_usedfor_a921cd1b66 (UsedFor wine get_drunk) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wine is used for getting drunk", "pln": ["(: cnet_usedfor_eab6d1d8c8 (UsedFor wine getting_drunk) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wine cellar is used for storing wine at right temperature", "pln": ["(: cnet_usedfor_1ef6f831b5 (UsedFor wine_cellar storing_wine_at_right_temperature) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wing is used for bird", "pln": ["(: cnet_usedfor_483207dabc (UsedFor wing bird) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wing is used for fly", "pln": ["(: cnet_usedfor_1e81957ef6 (UsedFor wing fly) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wing is used for flying", "pln": ["(: cnet_usedfor_061d44b31f (UsedFor wing flying) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wing is used for providing lift", "pln": ["(: cnet_usedfor_00846fdb07 (UsedFor wing providing_lift) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wing is used for aircraft", "pln": ["(: cnet_usedfor_0808521664 (UsedFor wing aircraft) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wing is used for flight", "pln": ["(: cnet_usedfor_380a64dcab (UsedFor wing flight) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wing is used for raise", "pln": ["(: cnet_usedfor_13cba60ff2 (UsedFor wing raise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wing is used for flapping", "pln": ["(: cnet_usedfor_c5e48d3bc0 (UsedFor wing flapping) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "winning baseball game is used for having fun", "pln": ["(: cnet_usedfor_89d4c08cd3 (UsedFor winning_baseball_game having_fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wire is used for conducting electricity", "pln": ["(: cnet_usedfor_feb5c6b14c (UsedFor wire conducting_electricity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wire is used for fasten", "pln": ["(: cnet_usedfor_82c0bccd16 (UsedFor wire fasten) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wire is used for fastener", "pln": ["(: cnet_usedfor_1aff669476 (UsedFor wire fastener) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wire is used for shape", "pln": ["(: cnet_usedfor_a12f8ea308 (UsedFor wire shape) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wire is used for conduct electricity", "pln": ["(: cnet_usedfor_004f6cd5d4 (UsedFor wire conduct_electricity) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wisk is used for mixing batter", "pln": ["(: cnet_usedfor_122f15ad30 (UsedFor wisk mixing_batter) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wok is used for fry food", "pln": ["(: cnet_usedfor_52d257297d (UsedFor wok fry_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "wok is used for stir frying food", "pln": ["(: cnet_usedfor_37ce46152c (UsedFor wok stir_frying_food) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wood is used for build boat", "pln": ["(: cnet_usedfor_abd1d30023 (UsedFor wood build_boat) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wood is used for building", "pln": ["(: cnet_usedfor_3cdd9c9c40 (UsedFor wood building) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wood is used for fence in property", "pln": ["(: cnet_usedfor_07f4637d93 (UsedFor wood fence_in_property) (STV 1.0 0.9707))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wooden rod is used for walking stick", "pln": ["(: cnet_usedfor_39c4b12926 (UsedFor wooden_rod walking_stick) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "woodwind is used for making music", "pln": ["(: cnet_usedfor_1150286eed (UsedFor woodwind making_music) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "woodwind is used for play music", "pln": ["(: cnet_usedfor_d50d809259 (UsedFor woodwind play_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "woodwind is used for playing music", "pln": ["(: cnet_usedfor_14f8188d7a (UsedFor woodwind playing_music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "woodwind family is used for music", "pln": ["(: cnet_usedfor_844aa343df (UsedFor woodwind_family music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "woodwind instrument is used for music", "pln": ["(: cnet_usedfor_27584fe093 (UsedFor woodwind_instrument music) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "woodwind instrument is used for play music", "pln": ["(: cnet_usedfor_dc85a46e1b (UsedFor woodwind_instrument play_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "woodwind instrument is used for playing to make music", "pln": ["(: cnet_usedfor_de60c332e8 (UsedFor woodwind_instrument playing_to_make_music) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wool is used for make yarn", "pln": ["(: cnet_usedfor_de281be8a8 (UsedFor wool make_yarn) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wool is used for sweater", "pln": ["(: cnet_usedfor_c356a9a3cf (UsedFor wool sweater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "woolen fabric is used for make clothe", "pln": ["(: cnet_usedfor_20f434d909 (UsedFor woolen_fabric make_clothe) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "woolen fabric is used for making sweater", "pln": ["(: cnet_usedfor_53748c7b1a (UsedFor woolen_fabric making_sweater) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "word is used for communicate with", "pln": ["(: cnet_usedfor_4bd4107bef (UsedFor word communicate_with) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "work of art is used for admiring", "pln": ["(: cnet_usedfor_818be9b863 (UsedFor work_of_art admiring) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "work of art is used for appreciation", "pln": ["(: cnet_usedfor_9df99d28f1 (UsedFor work_of_art appreciation) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "working is used for accomplishing goal", "pln": ["(: cnet_usedfor_6ddce505bc (UsedFor working accomplishing_goal) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "working is used for creating", "pln": ["(: cnet_usedfor_a8c1bede5c (UsedFor working creating) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "working is used for earning money", "pln": ["(: cnet_usedfor_6e54217658 (UsedFor working earning_money) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "working is used for producing", "pln": ["(: cnet_usedfor_72c1893aec (UsedFor working producing) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "working is used for providing opportunity to advance", "pln": ["(: cnet_usedfor_5a6bf8ad1c (UsedFor working providing_opportunity_to_advance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "world is used for live in", "pln": ["(: cnet_usedfor_11fef4b6df (UsedFor world live_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wound is used for get sympathy", "pln": ["(: cnet_usedfor_66c73fdcf4 (UsedFor wound get_sympathy) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wrench is used for tighten bolt", "pln": ["(: cnet_usedfor_8ceb7fb5a4 (UsedFor wrench tighten_bolt) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wrestling is used for sport", "pln": ["(: cnet_usedfor_d2e649a26f (UsedFor wrestling sport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wristwatch is used for keeping time", "pln": ["(: cnet_usedfor_795de39f1d (UsedFor wristwatch keeping_time) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "wristwatch is used for keeping track of time", "pln": ["(: cnet_usedfor_492ff9a6dc (UsedFor wristwatch keeping_track_of_time) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} -{"nl": "writing case is used for holding writing materials", "pln": ["(: cnet_usedfor_60a443003e (UsedFor writing_case holding_writing_materials) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wristwatch is used for tell time", "pln": ["(: cnet_usedfor_f25260867f (UsedFor wristwatch tell_time) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wristwatch is used for telling time", "pln": ["(: cnet_usedfor_a0c6ca0003 (UsedFor wristwatch telling_time) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "wristwatch is used for timing or", "pln": ["(: cnet_usedfor_537d39cf2e (UsedFor wristwatch timing_or) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "writer is used for write book", "pln": ["(: cnet_usedfor_cf19c68f7f (UsedFor writer write_book) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "writer is used for writing story", "pln": ["(: cnet_usedfor_3fd9f89c85 (UsedFor writer writing_story) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "writing is used for communicate", "pln": ["(: cnet_usedfor_68ac7cde46 (UsedFor writing communicate) (STV 1.0 0.9572))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "writing is used for communicating thought", "pln": ["(: cnet_usedfor_f04824f8d0 (UsedFor writing communicating_thought) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "writing is used for communication", "pln": ["(: cnet_usedfor_e03f83380f (UsedFor writing communication) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "writing is used for expressing feeling", "pln": ["(: cnet_usedfor_4975c2c121 (UsedFor writing expressing_feeling) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "writing case is used for carry pen", "pln": ["(: cnet_usedfor_9cab1b7e9b (UsedFor writing_case carry_pen) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "writing case is used for holding writing material", "pln": ["(: cnet_usedfor_bc21f6ea82 (UsedFor writing_case holding_writing_material) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "writing instrument is used for drawing picture", "pln": ["(: cnet_usedfor_245f52d5a4 (UsedFor writing_instrument drawing_picture) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "writing instrument is used for making note", "pln": ["(: cnet_usedfor_e4d9acaca6 (UsedFor writing_instrument making_note) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "writing instrument is used for marking", "pln": ["(: cnet_usedfor_382af1e2ce (UsedFor writing_instrument marking) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "writing instrument is used for practicing penmanship", "pln": ["(: cnet_usedfor_f45cd89a51 (UsedFor writing_instrument practicing_penmanship) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "writing instrument is used for scribble", "pln": ["(: cnet_usedfor_b03597124b (UsedFor writing_instrument scribble) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "writing instrument is used for write", "pln": ["(: cnet_usedfor_84c14abc3f (UsedFor writing_instrument write) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "writing instrument is used for write note", "pln": ["(: cnet_usedfor_57d811748f (UsedFor writing_instrument write_note) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "writing instrument is used for writing", "pln": ["(: cnet_usedfor_65e33c4b57 (UsedFor writing_instrument writing) (STV 1.0 0.9608))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "writing instrument is used for writing letter", "pln": ["(: cnet_usedfor_09b534f89a (UsedFor writing_instrument writing_letter) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "writing letter is used for communicating", "pln": ["(: cnet_usedfor_aeab43b75f (UsedFor writing_letter communicating) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "writing letter is used for sending information", "pln": ["(: cnet_usedfor_69280f9a05 (UsedFor writing_letter sending_information) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "writing letter is used for sending information to", "pln": ["(: cnet_usedfor_d62334c50e (UsedFor writing_letter sending_information_to) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "writing poem is used for expressing emotion", "pln": ["(: cnet_usedfor_4e43dc98fc (UsedFor writing_poem expressing_emotion) (STV 1.0 0.9454))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "writing poem is used for expressing feeling", "pln": ["(: cnet_usedfor_e0626e4523 (UsedFor writing_poem expressing_feeling) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "writing poem is used for expressing love", "pln": ["(: cnet_usedfor_1a64511294 (UsedFor writing_poem expressing_love) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "writing poem is used for expressing yourself", "pln": ["(: cnet_usedfor_a450497577 (UsedFor writing_poem expressing_yourself) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "writing program is used for programmer", "pln": ["(: cnet_usedfor_c282e77cd3 (UsedFor writing_program programmer) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "writing story is used for earning living", "pln": ["(: cnet_usedfor_74969509e7 (UsedFor writing_story earning_living) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "writing story is used for entertainment", "pln": ["(: cnet_usedfor_534d44a52c (UsedFor writing_story entertainment) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "writing story is used for expressing idea", "pln": ["(: cnet_usedfor_60f08305e3 (UsedFor writing_story expressing_idea) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "writing story is used for fun", "pln": ["(: cnet_usedfor_bd4b6094a6 (UsedFor writing_story fun) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "writing term paper is used for demonstrating knowledge of subject", "pln": ["(: cnet_usedfor_e1d2736ae4 (UsedFor writing_term_paper demonstrating_knowledge_of_subject) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "writing term paper is used for getting grade", "pln": ["(: cnet_usedfor_819fa62232 (UsedFor writing_term_paper getting_grade) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "writing term paper is used for research", "pln": ["(: cnet_usedfor_104d147ce2 (UsedFor writing_term_paper research) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} {"nl": "xylophone is used for make music", "pln": ["(: cnet_usedfor_d25d9fd06c (UsedFor xylophone make_music) (STV 1.0 0.9524))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "xylophone is used for make sound", "pln": ["(: cnet_usedfor_ce4978d7da (UsedFor xylophone make_sound) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "yacht is used for cruise", "pln": ["(: cnet_usedfor_15f246a12d (UsedFor yacht cruise) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "yacht is used for race", "pln": ["(: cnet_usedfor_f41e304892 (UsedFor yacht race) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "yacht is used for sail", "pln": ["(: cnet_usedfor_25f80adbb9 (UsedFor yacht sail) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "yacht is used for transport", "pln": ["(: cnet_usedfor_c43a50b5c2 (UsedFor yacht transport) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "yacht is used for travel", "pln": ["(: cnet_usedfor_ebafb3717d (UsedFor yacht travel) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "yard is used for measuring distance", "pln": ["(: cnet_usedfor_60fd2fb869 (UsedFor yard measuring_distance) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "yard is used for playing", "pln": ["(: cnet_usedfor_f544057749 (UsedFor yard playing) (STV 1.0 0.9636))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "yard is used for playing in", "pln": ["(: cnet_usedfor_6d5404536c (UsedFor yard playing_in) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "yoyo is used for doing trick", "pln": ["(: cnet_usedfor_050f086b0d (UsedFor yoyo doing_trick) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "yoyo is used for entertainment", "pln": ["(: cnet_usedfor_a37b2b594f (UsedFor yoyo entertainment) (STV 1.0 0.9339))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} +{"nl": "yoyo is used for play", "pln": ["(: cnet_usedfor_df683c023f (UsedFor yoyo play) (STV 1.0 0.9091))"], "source": "conceptnet", "background": true, "relation": "UsedFor"} diff --git a/data/conceptnet/conceptnet_background.metta b/data/conceptnet/conceptnet_background.metta new file mode 100644 index 0000000..da55fd0 --- /dev/null +++ b/data/conceptnet/conceptnet_background.metta @@ -0,0 +1,101295 @@ +(: cnet_atlocation_98dae866fc (AtLocation 2_pencil school) (STV 1.0 0.9339)) +(: cnet_atlocation_54d4fd0966 (AtLocation abyss bottom_of_sea) (STV 1.0 0.9091)) +(: cnet_atlocation_f00ec7e763 (AtLocation accelerator vehicle) (STV 1.0 0.9091)) +(: cnet_atlocation_05a41c9279 (AtLocation accordian_bag music_store) (STV 1.0 0.9091)) +(: cnet_atlocation_decd865fcc (AtLocation account_book bank) (STV 1.0 0.9524)) +(: cnet_atlocation_6654736a6c (AtLocation account_book desk) (STV 1.0 0.9091)) +(: cnet_atlocation_65186f33da (AtLocation accountant firm) (STV 1.0 0.9091)) +(: cnet_atlocation_804785d6d2 (AtLocation acetaminophen medicine_chest) (STV 1.0 0.9091)) +(: cnet_atlocation_9575766d3b (AtLocation acne_medication drug_store) (STV 1.0 0.9091)) +(: cnet_atlocation_5378b07460 (AtLocation acne_medication tube) (STV 1.0 0.9091)) +(: cnet_atlocation_660a44cb66 (AtLocation acorn tree) (STV 1.0 0.9454)) +(: cnet_atlocation_68bdbea72d (AtLocation acoustic_ceiling music_hall) (STV 1.0 0.9091)) +(: cnet_atlocation_3492f743d4 (AtLocation acoustic_guitar closet) (STV 1.0 0.9091)) +(: cnet_atlocation_5085df173e (AtLocation acoustic_guitar music_shop) (STV 1.0 0.9091)) +(: cnet_atlocation_81e9bb330b (AtLocation action_figure toy_department) (STV 1.0 0.9339)) +(: cnet_atlocation_263ef22204 (AtLocation action_figure toy_store) (STV 1.0 0.9339)) +(: cnet_atlocation_28561ec574 (AtLocation actor movie) (STV 1.0 0.9572)) +(: cnet_atlocation_f4a315f1e3 (AtLocation actor show) (STV 1.0 0.9454)) +(: cnet_atlocation_5ee3111c10 (AtLocation actor television) (STV 1.0 0.9339)) +(: cnet_atlocation_1451086e46 (AtLocation actor movy) (STV 1.0 0.9091)) +(: cnet_atlocation_f619c910ea (AtLocation actor opera) (STV 1.0 0.9339)) +(: cnet_atlocation_73b96af063 (AtLocation actor theater) (STV 1.0 0.9339)) +(: cnet_atlocation_880255566a (AtLocation ad newspaper) (STV 1.0 0.9524)) +(: cnet_atlocation_1c18cffcad (AtLocation address_book desk) (STV 1.0 0.9091)) +(: cnet_atlocation_35de9f9e06 (AtLocation address_label drawer) (STV 1.0 0.9339)) +(: cnet_atlocation_4014fdde41 (AtLocation adhesive_bandage first_aid_kit) (STV 1.0 0.9524)) +(: cnet_atlocation_35fbf8c28f (AtLocation adhesive_bandage pharmacy) (STV 1.0 0.9339)) +(: cnet_atlocation_442918d147 (AtLocation ads newspaper) (STV 1.0 0.9091)) +(: cnet_atlocation_6e173bd561 (AtLocation advertisement bus) (STV 1.0 0.9339)) +(: cnet_atlocation_ef9131a4a7 (AtLocation advertisement magazine) (STV 1.0 0.9339)) +(: cnet_atlocation_e7e6793b41 (AtLocation advertisement mail) (STV 1.0 0.9524)) +(: cnet_atlocation_db96d8c186 (AtLocation advertisement mail_box) (STV 1.0 0.9339)) +(: cnet_atlocation_86930e8ec2 (AtLocation advertisement subway) (STV 1.0 0.9091)) +(: cnet_atlocation_87bd280aec (AtLocation advertisement television) (STV 1.0 0.9091)) +(: cnet_atlocation_403ea37dc3 (AtLocation advertising newspaper) (STV 1.0 0.9677)) +(: cnet_atlocation_5dff034078 (AtLocation agenda meeting) (STV 1.0 0.9454)) +(: cnet_atlocation_3d4e965b6a (AtLocation air balloon) (STV 1.0 0.9339)) +(: cnet_atlocation_526cf4f451 (AtLocation air house) (STV 1.0 0.9091)) +(: cnet_atlocation_07b74de656 (AtLocation air sky) (STV 1.0 0.9091)) +(: cnet_atlocation_3b1430a277 (AtLocation air space_shuttle) (STV 1.0 0.9524)) +(: cnet_atlocation_1ff6aeecd9 (AtLocation air supermarket) (STV 1.0 0.9339)) +(: cnet_atlocation_f61177802b (AtLocation air surface_of_earth) (STV 1.0 0.9091)) +(: cnet_atlocation_c8fa8b88a5 (AtLocation air_bubble water) (STV 1.0 0.9091)) +(: cnet_atlocation_e5444a74e3 (AtLocation air_conditioner house) (STV 1.0 0.9091)) +(: cnet_atlocation_9c136f5390 (AtLocation air_mail_stamp desk) (STV 1.0 0.9091)) +(: cnet_atlocation_aa8ea65f03 (AtLocation air_terminal airport) (STV 1.0 0.9091)) +(: cnet_atlocation_9a0efc14e1 (AtLocation air_traffic_control_tower airport) (STV 1.0 0.9091)) +(: cnet_atlocation_91b8847821 (AtLocation aircraft air) (STV 1.0 0.9091)) +(: cnet_atlocation_f323c0375a (AtLocation aircraft sky) (STV 1.0 0.9091)) +(: cnet_atlocation_73598a7f2d (AtLocation airline_representative airport) (STV 1.0 0.9091)) +(: cnet_atlocation_bee473d789 (AtLocation airlock space_shuttle) (STV 1.0 0.9091)) +(: cnet_atlocation_b6f4f8a962 (AtLocation airplane air) (STV 1.0 0.9572)) +(: cnet_atlocation_9dd3156f18 (AtLocation airplane hanger) (STV 1.0 0.9091)) +(: cnet_atlocation_19984befc3 (AtLocation airplane military_base) (STV 1.0 0.9091)) +(: cnet_atlocation_e4f925ee76 (AtLocation airplane sky) (STV 1.0 0.9740)) +(: cnet_atlocation_c19b9bca43 (AtLocation airplane_seat airplane) (STV 1.0 0.9524)) +(: cnet_atlocation_a5aa5d9d3d (AtLocation aisle church) (STV 1.0 0.9454)) +(: cnet_atlocation_b546771fcf (AtLocation aisle store) (STV 1.0 0.9091)) +(: cnet_atlocation_7621690c2e (AtLocation aisle supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_2fdaa877c6 (AtLocation aisle plane) (STV 1.0 0.9091)) +(: cnet_atlocation_ee0958197b (AtLocation aisle theatre) (STV 1.0 0.9091)) +(: cnet_atlocation_9bb69c6709 (AtLocation album cd_case) (STV 1.0 0.9091)) +(: cnet_atlocation_da8fc6073f (AtLocation album record_store) (STV 1.0 0.9454)) +(: cnet_atlocation_5a0cc56fca (AtLocation alcohol beer) (STV 1.0 0.9454)) +(: cnet_atlocation_4a3a8abce3 (AtLocation alcohol chemistry_lab) (STV 1.0 0.9091)) +(: cnet_atlocation_7e262b08a8 (AtLocation alcohol distillery) (STV 1.0 0.9091)) +(: cnet_atlocation_f94887567e (AtLocation alcohol fraternity_house) (STV 1.0 0.9454)) +(: cnet_atlocation_09efe8dd29 (AtLocation alcohol plane) (STV 1.0 0.9454)) +(: cnet_atlocation_7873a42cd1 (AtLocation alcohol pub) (STV 1.0 0.9524)) +(: cnet_atlocation_5b04b44746 (AtLocation alcohol wine) (STV 1.0 0.9339)) +(: cnet_atlocation_1daf2ee12a (AtLocation alcoholic bar) (STV 1.0 0.9091)) +(: cnet_atlocation_f0c9c7d00b (AtLocation alcoholic homeless_shelter) (STV 1.0 0.9339)) +(: cnet_atlocation_a733aff294 (AtLocation alcoholic_beverage bar) (STV 1.0 0.9091)) +(: cnet_atlocation_6157419355 (AtLocation alcoholic_drink pub) (STV 1.0 0.9454)) +(: cnet_atlocation_18d475500e (AtLocation alcoholic liquor_store) (STV 1.0 0.9091)) +(: cnet_atlocation_4ef226607d (AtLocation algae water) (STV 1.0 0.9339)) +(: cnet_atlocation_711a9eaf2c (AtLocation alien roswell) (STV 1.0 0.9091)) +(: cnet_atlocation_a77f941391 (AtLocation alien space) (STV 1.0 0.9091)) +(: cnet_atlocation_e17a0ebbfa (AtLocation alien universe) (STV 1.0 0.9339)) +(: cnet_atlocation_8bb35da677 (AtLocation altar sanctuary) (STV 1.0 0.9091)) +(: cnet_atlocation_56f70a0308 (AtLocation altar temple) (STV 1.0 0.9091)) +(: cnet_atlocation_ddad60abb7 (AtLocation alter church) (STV 1.0 0.9091)) +(: cnet_atlocation_3ebf10dde2 (AtLocation alto choir) (STV 1.0 0.9339)) +(: cnet_atlocation_b38da123b2 (AtLocation aluminum_foil trash) (STV 1.0 0.9091)) +(: cnet_atlocation_d9bb128b09 (AtLocation american_flag moon) (STV 1.0 0.9572)) +(: cnet_atlocation_cc82fcb7e7 (AtLocation american_flag suface_of_moon) (STV 1.0 0.9091)) +(: cnet_atlocation_b6be14762a (AtLocation american_flag_left_behind_by_astronaut suface_of_moon) (STV 1.0 0.9091)) +(: cnet_atlocation_60018d42fb (AtLocation american america) (STV 1.0 0.9339)) +(: cnet_atlocation_d7142f3f2f (AtLocation ammunition war) (STV 1.0 0.9091)) +(: cnet_atlocation_7421484010 (AtLocation amphitheatre greece) (STV 1.0 0.9339)) +(: cnet_atlocation_86e9de6b05 (AtLocation amphitheatre park) (STV 1.0 0.9091)) +(: cnet_atlocation_e78cf141a9 (AtLocation and_apple apple_orchard) (STV 1.0 0.9091)) +(: cnet_atlocation_c76516c050 (AtLocation anemone book) (STV 1.0 0.9091)) +(: cnet_atlocation_62105cd0ea (AtLocation anemone gulf_of_mexico) (STV 1.0 0.9091)) +(: cnet_atlocation_58130df62e (AtLocation anemone intertidal_zone) (STV 1.0 0.9339)) +(: cnet_atlocation_60183e58bd (AtLocation anemone nursery) (STV 1.0 0.9091)) +(: cnet_atlocation_b8751acec3 (AtLocation anemone oean) (STV 1.0 0.9091)) +(: cnet_atlocation_74bd32aac7 (AtLocation anemone salt_water_aquarium) (STV 1.0 0.9572)) +(: cnet_atlocation_747a68456f (AtLocation anemone tide_pool) (STV 1.0 0.9524)) +(: cnet_atlocation_1c0d4c4206 (AtLocation anemone water) (STV 1.0 0.9454)) +(: cnet_atlocation_d2d2a2a027 (AtLocation angry_soldier war) (STV 1.0 0.9091)) +(: cnet_atlocation_874c3610a0 (AtLocation animal park) (STV 1.0 0.9339)) +(: cnet_atlocation_bc85957e5c (AtLocation animal pet_store) (STV 1.0 0.9091)) +(: cnet_atlocation_91c2c2c7de (AtLocation animal zoo) (STV 1.0 0.9740)) +(: cnet_atlocation_ac2797aca7 (AtLocation animal_in_cage zoo) (STV 1.0 0.9339)) +(: cnet_atlocation_d88ffaa1ea (AtLocation anime comic_book_store) (STV 1.0 0.9091)) +(: cnet_atlocation_a11ca8a706 (AtLocation ant anthill) (STV 1.0 0.9091)) +(: cnet_atlocation_b862883d92 (AtLocation antenna roof) (STV 1.0 0.9608)) +(: cnet_atlocation_6d02bbad60 (AtLocation antifreeze garage) (STV 1.0 0.9091)) +(: cnet_atlocation_dcb23ffb39 (AtLocation antique_car car_show) (STV 1.0 0.9091)) +(: cnet_atlocation_0aa4142570 (AtLocation antique attic) (STV 1.0 0.9091)) +(: cnet_atlocation_c4a4041b15 (AtLocation apartment and_apartment_complex) (STV 1.0 0.9091)) +(: cnet_atlocation_2fa2f831f8 (AtLocation apartment apartment_building) (STV 1.0 0.9091)) +(: cnet_atlocation_40780cd6ce (AtLocation apartment town) (STV 1.0 0.9339)) +(: cnet_atlocation_d0ffb3a285 (AtLocation apartment_house city) (STV 1.0 0.9339)) +(: cnet_atlocation_8b87b11be3 (AtLocation apple apple_tree) (STV 1.0 0.9659)) +(: cnet_atlocation_5dbd3167d6 (AtLocation apple grocery_store) (STV 1.0 0.9524)) +(: cnet_atlocation_3d4c6adb0b (AtLocation apple_pie oven) (STV 1.0 0.9091)) +(: cnet_atlocation_46247b7343 (AtLocation apple_tree apple_grove) (STV 1.0 0.9339)) +(: cnet_atlocation_b10850d113 (AtLocation apple_tree back_yard) (STV 1.0 0.9454)) +(: cnet_atlocation_be1e82d7e7 (AtLocation apple_tree backyard) (STV 1.0 0.9572)) +(: cnet_atlocation_97c51083fa (AtLocation apple_tree country) (STV 1.0 0.9454)) +(: cnet_atlocation_44e5b5216f (AtLocation apple_tree countryside) (STV 1.0 0.9339)) +(: cnet_atlocation_4efb65a5c2 (AtLocation apple_tree field) (STV 1.0 0.9454)) +(: cnet_atlocation_458b18fda7 (AtLocation apple_tree front_yard) (STV 1.0 0.9339)) +(: cnet_atlocation_cf2bd47d68 (AtLocation apple_tree grove) (STV 1.0 0.9339)) +(: cnet_atlocation_c550443d59 (AtLocation apple_tree new_york) (STV 1.0 0.9339)) +(: cnet_atlocation_226f7b9811 (AtLocation apple_tree park) (STV 1.0 0.9339)) +(: cnet_atlocation_6a107891b2 (AtLocation apple_tree pennsylvania) (STV 1.0 0.9339)) +(: cnet_atlocation_4cc3d78a04 (AtLocation apple_tree uzbekistan) (STV 1.0 0.9091)) +(: cnet_atlocation_a667d1ae73 (AtLocation apple_tree valley) (STV 1.0 0.9339)) +(: cnet_atlocation_1f3fddc8e3 (AtLocation apple_tree washington_state) (STV 1.0 0.9524)) +(: cnet_atlocation_2c64399260 (AtLocation apple_tree wisconsin) (STV 1.0 0.9091)) +(: cnet_atlocation_81204992b0 (AtLocation apple_tree_in back_yard) (STV 1.0 0.9339)) +(: cnet_atlocation_4b0209601f (AtLocation apple fridge) (STV 1.0 0.9454)) +(: cnet_atlocation_abe6b7e053 (AtLocation applesauce jar) (STV 1.0 0.9339)) +(: cnet_atlocation_cf0efd3d82 (AtLocation appliance house) (STV 1.0 0.9091)) +(: cnet_atlocation_1d49ddc66a (AtLocation appointment_book desk) (STV 1.0 0.9339)) +(: cnet_atlocation_1e6a4307b5 (AtLocation archeological_artifact museum) (STV 1.0 0.9091)) +(: cnet_atlocation_ba1f3be4a5 (AtLocation arche state_park) (STV 1.0 0.9091)) +(: cnet_atlocation_9249f308a1 (AtLocation arctic_fox arctic) (STV 1.0 0.9339)) +(: cnet_atlocation_d2a54d0a6c (AtLocation armchair furniture_store) (STV 1.0 0.9091)) +(: cnet_atlocation_3428d95298 (AtLocation armoire bedroom) (STV 1.0 0.9454)) +(: cnet_atlocation_971300932b (AtLocation armoire furniture_store) (STV 1.0 0.9091)) +(: cnet_atlocation_2f21289f2c (AtLocation army war) (STV 1.0 0.9572)) +(: cnet_atlocation_fd52737cd9 (AtLocation art gallery_opening) (STV 1.0 0.9091)) +(: cnet_atlocation_2a023c11ff (AtLocation art museum) (STV 1.0 0.9339)) +(: cnet_atlocation_0fe3fe33f2 (AtLocation art_critic art_show) (STV 1.0 0.9339)) +(: cnet_atlocation_e6e9fbf216 (AtLocation art_work house) (STV 1.0 0.9091)) +(: cnet_atlocation_d3a74f3715 (AtLocation artery body) (STV 1.0 0.9454)) +(: cnet_atlocation_6df0a0ae27 (AtLocation article magazine_in_store) (STV 1.0 0.9091)) +(: cnet_atlocation_6c72e6d88a (AtLocation article newspaper) (STV 1.0 0.9339)) +(: cnet_atlocation_ca85f037fa (AtLocation article newspaper_in_newspaper) (STV 1.0 0.9091)) +(: cnet_atlocation_1ee693505c (AtLocation artifact museum) (STV 1.0 0.9454)) +(: cnet_atlocation_da330d43e2 (AtLocation artist art_show) (STV 1.0 0.9454)) +(: cnet_atlocation_1982117ec1 (AtLocation artist gallery_opening) (STV 1.0 0.9091)) +(: cnet_atlocation_99cdb7469a (AtLocation artwork gallery_opening) (STV 1.0 0.9091)) +(: cnet_atlocation_e7452bc60b (AtLocation asphalt_paving street) (STV 1.0 0.9091)) +(: cnet_atlocation_407da0f0bf (AtLocation asphalt_tile roof) (STV 1.0 0.9091)) +(: cnet_atlocation_a8bdb29215 (AtLocation aspirin medicine_cabinet) (STV 1.0 0.9339)) +(: cnet_atlocation_aafc88dc46 (AtLocation asshole washington_d_c) (STV 1.0 0.9091)) +(: cnet_atlocation_f70e2da807 (AtLocation assignment work) (STV 1.0 0.9091)) +(: cnet_atlocation_4f157d859d (AtLocation assortment_of_clothing_and_shoe closet) (STV 1.0 0.9091)) +(: cnet_atlocation_5a3d5c1b21 (AtLocation assortment_of_office_supply desk) (STV 1.0 0.9091)) +(: cnet_atlocation_ee76a4bece (AtLocation asteroid outerspace) (STV 1.0 0.9091)) +(: cnet_atlocation_8ef9840708 (AtLocation asteroid space) (STV 1.0 0.9091)) +(: cnet_atlocation_812822e860 (AtLocation astronaut_s_pen space_shuttle) (STV 1.0 0.9339)) +(: cnet_atlocation_a4f846e1ae (AtLocation astronaut orbit) (STV 1.0 0.9339)) +(: cnet_atlocation_fc5aeff531 (AtLocation astronaut space_shuttle) (STV 1.0 0.9608)) +(: cnet_atlocation_aa718256a1 (AtLocation athelete sporting_event) (STV 1.0 0.9339)) +(: cnet_atlocation_aaf99a4838 (AtLocation athlete sporting_event) (STV 1.0 0.9091)) +(: cnet_atlocation_6b19ed6513 (AtLocation atlantic_ocean earth) (STV 1.0 0.9572)) +(: cnet_atlocation_56e343f1b3 (AtLocation atlas bookstore) (STV 1.0 0.9091)) +(: cnet_atlocation_9b00da4314 (AtLocation attach_case office) (STV 1.0 0.9339)) +(: cnet_atlocation_0fe3e39ac1 (AtLocation attache_case office) (STV 1.0 0.9091)) +(: cnet_atlocation_d7740a29b6 (AtLocation attendee conference) (STV 1.0 0.9091)) +(: cnet_atlocation_896494c005 (AtLocation attraction disneyland) (STV 1.0 0.9339)) +(: cnet_atlocation_c80a56e4de (AtLocation audience arena) (STV 1.0 0.9091)) +(: cnet_atlocation_389544d6d2 (AtLocation audience hockey_game) (STV 1.0 0.9524)) +(: cnet_atlocation_8e27225b39 (AtLocation audience movie) (STV 1.0 0.9091)) +(: cnet_atlocation_ed850adf88 (AtLocation audience movy) (STV 1.0 0.9454)) +(: cnet_atlocation_4db5c43e78 (AtLocation audience show) (STV 1.0 0.9524)) +(: cnet_atlocation_fb07691b5c (AtLocation audience studio) (STV 1.0 0.9091)) +(: cnet_atlocation_ee6314f54a (AtLocation audience theatre) (STV 1.0 0.9659)) +(: cnet_atlocation_8a5a6da09b (AtLocation automatic_gate gated_community) (STV 1.0 0.9454)) +(: cnet_atlocation_fa3131c277 (AtLocation automobile dealer_lot) (STV 1.0 0.9091)) +(: cnet_atlocation_1548a45bff (AtLocation automobile exit_ramp) (STV 1.0 0.9091)) +(: cnet_atlocation_df43f426eb (AtLocation automobile fast_lane) (STV 1.0 0.9454)) +(: cnet_atlocation_80655f6c86 (AtLocation automobile freeway) (STV 1.0 0.9091)) +(: cnet_atlocation_8432b7c1c3 (AtLocation automobile garage) (STV 1.0 0.9608)) +(: cnet_atlocation_8067151e11 (AtLocation automobile racetrack) (STV 1.0 0.9091)) +(: cnet_atlocation_792c26797a (AtLocation automobile shop) (STV 1.0 0.9091)) +(: cnet_atlocation_da49db8b94 (AtLocation automobile side_of_road) (STV 1.0 0.9091)) +(: cnet_atlocation_860cb4e813 (AtLocation automobile slow_lane) (STV 1.0 0.9091)) +(: cnet_atlocation_df4830d9a2 (AtLocation automobile street) (STV 1.0 0.9454)) +(: cnet_atlocation_337960634d (AtLocation automobile road) (STV 1.0 0.9091)) +(: cnet_atlocation_869d449752 (AtLocation avenue city) (STV 1.0 0.9091)) +(: cnet_atlocation_7a25a80bfa (AtLocation avenue new_york_city) (STV 1.0 0.9091)) +(: cnet_atlocation_2c64438da6 (AtLocation ax garage) (STV 1.0 0.9091)) +(: cnet_atlocation_e93931d416 (AtLocation baby womb) (STV 1.0 0.9339)) +(: cnet_atlocation_a7e70e6df0 (AtLocation baby_food jar) (STV 1.0 0.9339)) +(: cnet_atlocation_944209291c (AtLocation back_courtyard palace) (STV 1.0 0.9091)) +(: cnet_atlocation_04456143e8 (AtLocation back_garden back_yard) (STV 1.0 0.9091)) +(: cnet_atlocation_2fcb89a803 (AtLocation back_garden house) (STV 1.0 0.9091)) +(: cnet_atlocation_a945941d5b (AtLocation backdrop stage_show) (STV 1.0 0.9091)) +(: cnet_atlocation_ce9c2a1983 (AtLocation backdrop theatre) (STV 1.0 0.9091)) +(: cnet_atlocation_52f4c89877 (AtLocation backpack school) (STV 1.0 0.9339)) +(: cnet_atlocation_b2d1cc1cf9 (AtLocation backyard house) (STV 1.0 0.9091)) +(: cnet_atlocation_be3a01f547 (AtLocation bacon refridgerator) (STV 1.0 0.9091)) +(: cnet_atlocation_119efc24cb (AtLocation bacon refrigerator) (STV 1.0 0.9091)) +(: cnet_atlocation_4912d57b1e (AtLocation bacteria water) (STV 1.0 0.9339)) +(: cnet_atlocation_1463c14537 (AtLocation bad_guy jail) (STV 1.0 0.9091)) +(: cnet_atlocation_a0c1e4b629 (AtLocation bag drawer) (STV 1.0 0.9454)) +(: cnet_atlocation_09e2a9e191 (AtLocation bag grocery_store) (STV 1.0 0.9091)) +(: cnet_atlocation_77b4aa3d08 (AtLocation bag supermarket) (STV 1.0 0.9454)) +(: cnet_atlocation_b5469f8cd5 (AtLocation bag_of_chip supermarket) (STV 1.0 0.9339)) +(: cnet_atlocation_82d4d011f1 (AtLocation bagel breadbox) (STV 1.0 0.9091)) +(: cnet_atlocation_501bfc1c1a (AtLocation bagel_shop new_york_city) (STV 1.0 0.9091)) +(: cnet_atlocation_f48d8103dc (AtLocation baggage airport) (STV 1.0 0.9454)) +(: cnet_atlocation_3b5fc9d040 (AtLocation baggage train_station) (STV 1.0 0.9339)) +(: cnet_atlocation_77022d40cc (AtLocation baggage_trunk airport) (STV 1.0 0.9339)) +(: cnet_atlocation_f8b67c148e (AtLocation baggage_trunk attic) (STV 1.0 0.9091)) +(: cnet_atlocation_cbae1bc549 (AtLocation baggage_trunk car) (STV 1.0 0.9091)) +(: cnet_atlocation_5bfbb6a0fc (AtLocation bagger supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_662dc6dee2 (AtLocation bagpipe scotland) (STV 1.0 0.9524)) +(: cnet_atlocation_f5ed442290 (AtLocation bagpipe scottland) (STV 1.0 0.9091)) +(: cnet_atlocation_65700dd0b2 (AtLocation baking_bread oven) (STV 1.0 0.9091)) +(: cnet_atlocation_9ae20fc862 (AtLocation baking_oven kitchen) (STV 1.0 0.9524)) +(: cnet_atlocation_99ec636b68 (AtLocation baking_oven pizza_parlor) (STV 1.0 0.9091)) +(: cnet_atlocation_ce3e962174 (AtLocation balalaika music_store) (STV 1.0 0.9091)) +(: cnet_atlocation_14fdaaecf3 (AtLocation balalaika symphony) (STV 1.0 0.9091)) +(: cnet_atlocation_d531481994 (AtLocation balcony house) (STV 1.0 0.9091)) +(: cnet_atlocation_ef1cf7f8d0 (AtLocation balcony opera) (STV 1.0 0.9339)) +(: cnet_atlocation_c9dae7c6de (AtLocation balcony theater) (STV 1.0 0.9091)) +(: cnet_atlocation_4b31ff5e66 (AtLocation balcony_seat balcony) (STV 1.0 0.9339)) +(: cnet_atlocation_fe591f314b (AtLocation balcony_seat theater) (STV 1.0 0.9091)) +(: cnet_atlocation_4879daf4f6 (AtLocation bald_eagle aerie) (STV 1.0 0.9091)) +(: cnet_atlocation_e4a99e3ed3 (AtLocation bald_eagle canada) (STV 1.0 0.9339)) +(: cnet_atlocation_1f90ffce84 (AtLocation bald_eagle captivity) (STV 1.0 0.9091)) +(: cnet_atlocation_3126eaaeaf (AtLocation bald_eagle cliff) (STV 1.0 0.9091)) +(: cnet_atlocation_0e3b993519 (AtLocation bald_eagle colorado) (STV 1.0 0.9339)) +(: cnet_atlocation_7d48ef3a1d (AtLocation bald_eagle eagle_s_nest) (STV 1.0 0.9091)) +(: cnet_atlocation_d66fa4eb2d (AtLocation bald_eagle everglade) (STV 1.0 0.9091)) +(: cnet_atlocation_172dd2a59f (AtLocation bald_eagle flight) (STV 1.0 0.9091)) +(: cnet_atlocation_5f4cd850fa (AtLocation bald_eagle forrest) (STV 1.0 0.9091)) +(: cnet_atlocation_1dba650a67 (AtLocation bald_eagle grand_canyon) (STV 1.0 0.9091)) +(: cnet_atlocation_ba3ea301f0 (AtLocation bald_eagle high_place) (STV 1.0 0.9091)) +(: cnet_atlocation_237bc15be3 (AtLocation bald_eagle in_washington) (STV 1.0 0.9339)) +(: cnet_atlocation_5a83c5669c (AtLocation bald_eagle natural_habitat) (STV 1.0 0.9091)) +(: cnet_atlocation_ef789c6ff5 (AtLocation bald_eagle picture) (STV 1.0 0.9091)) +(: cnet_atlocation_fd50719e8b (AtLocation bald_eagle presidential_seal) (STV 1.0 0.9339)) +(: cnet_atlocation_43d90edb8a (AtLocation bald_eagle refuge) (STV 1.0 0.9091)) +(: cnet_atlocation_0914ec075a (AtLocation bald_eagle researve) (STV 1.0 0.9091)) +(: cnet_atlocation_76d244c5ba (AtLocation bald_eagle tall_tree) (STV 1.0 0.9091)) +(: cnet_atlocation_7900075e89 (AtLocation bald_eagle tree) (STV 1.0 0.9091)) +(: cnet_atlocation_aa036815a2 (AtLocation bald_eagle u_s) (STV 1.0 0.9091)) +(: cnet_atlocation_cd35b91242 (AtLocation bald_eagle utah) (STV 1.0 0.9339)) +(: cnet_atlocation_24322d48f7 (AtLocation bald_eagle washington) (STV 1.0 0.9091)) +(: cnet_atlocation_e83943b977 (AtLocation bald_eagle western_north_america) (STV 1.0 0.9091)) +(: cnet_atlocation_67c5154614 (AtLocation ball baseball_game) (STV 1.0 0.9091)) +(: cnet_atlocation_0b0d72e6b0 (AtLocation ball basketball_court) (STV 1.0 0.9091)) +(: cnet_atlocation_21b7ccacf5 (AtLocation ball beach) (STV 1.0 0.9091)) +(: cnet_atlocation_d14c2d7b62 (AtLocation ball bearing) (STV 1.0 0.9091)) +(: cnet_atlocation_dfb2f0463f (AtLocation ball child_s_hand) (STV 1.0 0.9091)) +(: cnet_atlocation_7766b2926c (AtLocation ball child_toybox) (STV 1.0 0.9091)) +(: cnet_atlocation_340b3ad59e (AtLocation ball closet) (STV 1.0 0.9091)) +(: cnet_atlocation_78793a0250 (AtLocation ball cricket_pitch) (STV 1.0 0.9091)) +(: cnet_atlocation_3988b5a981 (AtLocation ball hole) (STV 1.0 0.9091)) +(: cnet_atlocation_226eed4da3 (AtLocation ball playroom) (STV 1.0 0.9091)) +(: cnet_atlocation_ee49eef3fb (AtLocation ball pool_table) (STV 1.0 0.9091)) +(: cnet_atlocation_0d2230942e (AtLocation ball snooker_table) (STV 1.0 0.9091)) +(: cnet_atlocation_e3eadcf5ae (AtLocation ball soccer_field) (STV 1.0 0.9091)) +(: cnet_atlocation_3565187018 (AtLocation ball soccer_game) (STV 1.0 0.9091)) +(: cnet_atlocation_199680fe9a (AtLocation ball sport) (STV 1.0 0.9091)) +(: cnet_atlocation_6e6d11e65b (AtLocation ball street) (STV 1.0 0.9339)) +(: cnet_atlocation_e3f69d0e68 (AtLocation ball toy_box) (STV 1.0 0.9091)) +(: cnet_atlocation_0bcfe4b09b (AtLocation ball toy_store) (STV 1.0 0.9091)) +(: cnet_atlocation_2ea5936cb7 (AtLocation ball toybox) (STV 1.0 0.9454)) +(: cnet_atlocation_711fa87fbd (AtLocation ball_bearing machine) (STV 1.0 0.9091)) +(: cnet_atlocation_2d60f0cb02 (AtLocation ball_bearing wheel) (STV 1.0 0.9339)) +(: cnet_atlocation_86f595dd2d (AtLocation ballet theater) (STV 1.0 0.9339)) +(: cnet_atlocation_96b157cf79 (AtLocation ballon carnival) (STV 1.0 0.9091)) +(: cnet_atlocation_6f9f4f1775 (AtLocation balloon sky) (STV 1.0 0.9091)) +(: cnet_atlocation_0deb978430 (AtLocation ballpoint_pen desk_drawer) (STV 1.0 0.9091)) +(: cnet_atlocation_8cf36ecfa1 (AtLocation ballpoint_pen drawer) (STV 1.0 0.9339)) +(: cnet_atlocation_fb5ff8a92c (AtLocation ball gym) (STV 1.0 0.9454)) +(: cnet_atlocation_e9e93d687d (AtLocation ball park) (STV 1.0 0.9454)) +(: cnet_atlocation_d96ce69bcb (AtLocation ball sporting_event) (STV 1.0 0.9339)) +(: cnet_atlocation_65d47ab778 (AtLocation banana_peel trash) (STV 1.0 0.9091)) +(: cnet_atlocation_fd1ae6d6f9 (AtLocation banana_peel waste_bin) (STV 1.0 0.9091)) +(: cnet_atlocation_3359d81e27 (AtLocation band wedding) (STV 1.0 0.9339)) +(: cnet_atlocation_99eec2dd68 (AtLocation band_aid drug_store) (STV 1.0 0.9091)) +(: cnet_atlocation_133ec7f4df (AtLocation band_aid first_aid_kit) (STV 1.0 0.9524)) +(: cnet_atlocation_b56df8e9dd (AtLocation bandaid cabinet) (STV 1.0 0.9091)) +(: cnet_atlocation_7c297055dd (AtLocation banjo band) (STV 1.0 0.9091)) +(: cnet_atlocation_f3e363edb6 (AtLocation banjo banjo_player_hand) (STV 1.0 0.9091)) +(: cnet_atlocation_51437d71f9 (AtLocation banjo country_band) (STV 1.0 0.9091)) +(: cnet_atlocation_6de5980eb8 (AtLocation banjo united_state) (STV 1.0 0.9091)) +(: cnet_atlocation_0046f2d8c0 (AtLocation bank city) (STV 1.0 0.9091)) +(: cnet_atlocation_d4c3476d38 (AtLocation bank park) (STV 1.0 0.9091)) +(: cnet_atlocation_31263ad84c (AtLocation banknote pocket) (STV 1.0 0.9091)) +(: cnet_atlocation_7a86f0e487 (AtLocation bar city) (STV 1.0 0.9524)) +(: cnet_atlocation_a27eddb88d (AtLocation bar_of_soap bathtub) (STV 1.0 0.9091)) +(: cnet_atlocation_bdc13c8880 (AtLocation bar_service hotel) (STV 1.0 0.9524)) +(: cnet_atlocation_cb99a67c30 (AtLocation barber_comb barber_shop) (STV 1.0 0.9339)) +(: cnet_atlocation_d1eb5a691d (AtLocation barber_comb barbershop) (STV 1.0 0.9091)) +(: cnet_atlocation_38bc6fc601 (AtLocation barber_comb salon) (STV 1.0 0.9091)) +(: cnet_atlocation_7c27dbac12 (AtLocation barber_shop high_street) (STV 1.0 0.9091)) +(: cnet_atlocation_441044b393 (AtLocation barbershop mall) (STV 1.0 0.9091)) +(: cnet_atlocation_9ba5390572 (AtLocation barbershop shopping_mall) (STV 1.0 0.9339)) +(: cnet_atlocation_8eaf0fbef1 (AtLocation barbershop town) (STV 1.0 0.9339)) +(: cnet_atlocation_8183ce4928 (AtLocation barbie toy_store) (STV 1.0 0.9608)) +(: cnet_atlocation_5fa4661a5d (AtLocation barbie_doll toy_store) (STV 1.0 0.9339)) +(: cnet_atlocation_bba915bf11 (AtLocation barn country) (STV 1.0 0.9339)) +(: cnet_atlocation_5b0afcbfba (AtLocation barn field) (STV 1.0 0.9091)) +(: cnet_atlocation_08b38323e8 (AtLocation barrack military_base) (STV 1.0 0.9339)) +(: cnet_atlocation_aa5ebed685 (AtLocation barred_room jail) (STV 1.0 0.9091)) +(: cnet_atlocation_200b8c58d1 (AtLocation barricade roadblock) (STV 1.0 0.9091)) +(: cnet_atlocation_4fb5de043b (AtLocation barrier roadblock) (STV 1.0 0.9091)) +(: cnet_atlocation_2b55ac15ca (AtLocation bar jail) (STV 1.0 0.9454)) +(: cnet_atlocation_b3e3a9e54f (AtLocation barstool bar) (STV 1.0 0.9091)) +(: cnet_atlocation_79c20d2de7 (AtLocation bartender bar) (STV 1.0 0.9339)) +(: cnet_atlocation_a21549fccf (AtLocation baseball park) (STV 1.0 0.9339)) +(: cnet_atlocation_c71cb4bda3 (AtLocation baseball_diamond park) (STV 1.0 0.9339)) +(: cnet_atlocation_72076fddf5 (AtLocation baseball_field baseball_stadium) (STV 1.0 0.9091)) +(: cnet_atlocation_244d1bab50 (AtLocation baseball_ticket baseball_stadium) (STV 1.0 0.9091)) +(: cnet_atlocation_5d43d8df6a (AtLocation basement building) (STV 1.0 0.9091)) +(: cnet_atlocation_84e4d676c1 (AtLocation basement closet) (STV 1.0 0.9608)) +(: cnet_atlocation_247697a701 (AtLocation basket_with_handle shop) (STV 1.0 0.9091)) +(: cnet_atlocation_0e8da092f1 (AtLocation basketball basketball_court) (STV 1.0 0.9091)) +(: cnet_atlocation_7eeb066099 (AtLocation basketball basketball_game) (STV 1.0 0.9091)) +(: cnet_atlocation_7ca0749f96 (AtLocation basketball_court city) (STV 1.0 0.9091)) +(: cnet_atlocation_528846c9da (AtLocation basketball_hoop gym) (STV 1.0 0.9091)) +(: cnet_atlocation_ca5f789a2b (AtLocation bass music_store) (STV 1.0 0.9091)) +(: cnet_atlocation_78b55575de (AtLocation bass river) (STV 1.0 0.9091)) +(: cnet_atlocation_3833fd76d3 (AtLocation bass_baritone choir) (STV 1.0 0.9524)) +(: cnet_atlocation_fa7399b05f (AtLocation bass_clarinet band) (STV 1.0 0.9524)) +(: cnet_atlocation_f03d3dd716 (AtLocation bass_clarinet music_store) (STV 1.0 0.9524)) +(: cnet_atlocation_705e5c267f (AtLocation bass_drum drum_set) (STV 1.0 0.9091)) +(: cnet_atlocation_3fa15785e7 (AtLocation bass_fiddle band) (STV 1.0 0.9454)) +(: cnet_atlocation_12735f50e7 (AtLocation bass_fiddle bluegrass_band) (STV 1.0 0.9091)) +(: cnet_atlocation_48d61fb597 (AtLocation bassoon orchestra) (STV 1.0 0.9091)) +(: cnet_atlocation_47896d6927 (AtLocation bat belfry) (STV 1.0 0.9524)) +(: cnet_atlocation_1658b84aed (AtLocation bat cave) (STV 1.0 0.9524)) +(: cnet_atlocation_e535f235c9 (AtLocation bath house) (STV 1.0 0.9454)) +(: cnet_atlocation_d93e1cf183 (AtLocation bath_room mall) (STV 1.0 0.9091)) +(: cnet_atlocation_2bd275c53e (AtLocation bathroom at_hotel) (STV 1.0 0.9339)) +(: cnet_atlocation_c37c0934e0 (AtLocation bathroom convenience_store) (STV 1.0 0.9091)) +(: cnet_atlocation_f451b4d7b8 (AtLocation bathroom friend_s_house) (STV 1.0 0.9091)) +(: cnet_atlocation_259c71cc11 (AtLocation bathroom hotel) (STV 1.0 0.9339)) +(: cnet_atlocation_309f91cb67 (AtLocation bathroom house) (STV 1.0 0.9659)) +(: cnet_atlocation_4dc7b6e8e2 (AtLocation bathroom rest_area) (STV 1.0 0.9524)) +(: cnet_atlocation_a91d7190c0 (AtLocation bathroom school) (STV 1.0 0.9091)) +(: cnet_atlocation_f796d2ea88 (AtLocation bathroom theater) (STV 1.0 0.9091)) +(: cnet_atlocation_091898a2a1 (AtLocation bathroom_drawer hotel) (STV 1.0 0.9091)) +(: cnet_atlocation_b8aa3a72d6 (AtLocation bathtub motel) (STV 1.0 0.9091)) +(: cnet_atlocation_e923a13ef0 (AtLocation battery car) (STV 1.0 0.9091)) +(: cnet_atlocation_4a644c5272 (AtLocation battle war) (STV 1.0 0.9524)) +(: cnet_atlocation_acc80f142d (AtLocation batz_maru_doll toy_store) (STV 1.0 0.9091)) +(: cnet_atlocation_d2d99650af (AtLocation bay lake) (STV 1.0 0.9091)) +(: cnet_atlocation_0cfbbc5247 (AtLocation bay_window living_room) (STV 1.0 0.9091)) +(: cnet_atlocation_e541d8838e (AtLocation bazaar india) (STV 1.0 0.9454)) +(: cnet_atlocation_9755b76ed4 (AtLocation bbq backyard) (STV 1.0 0.9339)) +(: cnet_atlocation_261afd2ea2 (AtLocation bbq restaurant) (STV 1.0 0.9339)) +(: cnet_atlocation_000b4c3b3f (AtLocation beach_ball beach) (STV 1.0 0.9339)) +(: cnet_atlocation_e8ea68c322 (AtLocation beach_towel beach) (STV 1.0 0.9339)) +(: cnet_atlocation_a5603d60a1 (AtLocation beach_towel linen_closet) (STV 1.0 0.9524)) +(: cnet_atlocation_de447398a0 (AtLocation beachball beach) (STV 1.0 0.9339)) +(: cnet_atlocation_b01f1f0e6d (AtLocation beaker chemistry_lab) (STV 1.0 0.9572)) +(: cnet_atlocation_7a405182e0 (AtLocation beaker laboratory) (STV 1.0 0.9091)) +(: cnet_atlocation_cf503885ac (AtLocation beam bridge) (STV 1.0 0.9339)) +(: cnet_atlocation_a5167f1e91 (AtLocation beam building) (STV 1.0 0.9339)) +(: cnet_atlocation_342e9084d7 (AtLocation beam ceiling) (STV 1.0 0.9339)) +(: cnet_atlocation_aae055e482 (AtLocation beam construction_site) (STV 1.0 0.9091)) +(: cnet_atlocation_fe20c1758d (AtLocation beam house) (STV 1.0 0.9454)) +(: cnet_atlocation_776846b07a (AtLocation beam large_building) (STV 1.0 0.9091)) +(: cnet_atlocation_239582ec85 (AtLocation beam roof) (STV 1.0 0.9091)) +(: cnet_atlocation_c02a7f95ae (AtLocation bean food_store) (STV 1.0 0.9091)) +(: cnet_atlocation_5f52c0ed35 (AtLocation bean soup) (STV 1.0 0.9454)) +(: cnet_atlocation_69e33485f0 (AtLocation bean_bag_chair den) (STV 1.0 0.9339)) +(: cnet_atlocation_547a74a02f (AtLocation bean_bag_chair kid_room) (STV 1.0 0.9091)) +(: cnet_atlocation_bc285ea8a4 (AtLocation beanbag room) (STV 1.0 0.9091)) +(: cnet_atlocation_1f0b2026ee (AtLocation beanbag_chair living_room) (STV 1.0 0.9091)) +(: cnet_atlocation_3fa68eee30 (AtLocation beanie_baby toy_store) (STV 1.0 0.9524)) +(: cnet_atlocation_ef6b672e39 (AtLocation bean jar) (STV 1.0 0.9091)) +(: cnet_atlocation_d9b7ea14b0 (AtLocation bear wood) (STV 1.0 0.9091)) +(: cnet_atlocation_719c407937 (AtLocation beauty top_of_mountain) (STV 1.0 0.9091)) +(: cnet_atlocation_f6b79921c0 (AtLocation beauty waterfall) (STV 1.0 0.9091)) +(: cnet_atlocation_a8eee51190 (AtLocation beauty_salon mall) (STV 1.0 0.9091)) +(: cnet_atlocation_67d71a0b64 (AtLocation beaver beaver_s_dam) (STV 1.0 0.9454)) +(: cnet_atlocation_4513607d6c (AtLocation beaver beaver_dam) (STV 1.0 0.9091)) +(: cnet_atlocation_fb4868cd65 (AtLocation beaver beaver_lodge) (STV 1.0 0.9091)) +(: cnet_atlocation_cc2a7d8048 (AtLocation beaver beaver_pond) (STV 1.0 0.9091)) +(: cnet_atlocation_97f053f2c5 (AtLocation beaver beaver_trap) (STV 1.0 0.9091)) +(: cnet_atlocation_47f2fb615d (AtLocation beaver book) (STV 1.0 0.9091)) +(: cnet_atlocation_ac762dec5e (AtLocation beaver canada) (STV 1.0 0.9454)) +(: cnet_atlocation_aac1afe556 (AtLocation beaver lodge) (STV 1.0 0.9091)) +(: cnet_atlocation_bb7e6706d8 (AtLocation beaver ontario) (STV 1.0 0.9091)) +(: cnet_atlocation_ff33cd9107 (AtLocation beaver wilderness) (STV 1.0 0.9091)) +(: cnet_atlocation_95088de47f (AtLocation beaver woodland) (STV 1.0 0.9091)) +(: cnet_atlocation_3ed86e3c42 (AtLocation beaver zoo) (STV 1.0 0.9524)) +(: cnet_atlocation_725b021ff6 (AtLocation bed apartment) (STV 1.0 0.9091)) +(: cnet_atlocation_bddf8d87f1 (AtLocation bed hospital) (STV 1.0 0.9339)) +(: cnet_atlocation_2da07cf917 (AtLocation bed house) (STV 1.0 0.9524)) +(: cnet_atlocation_0a619c86fc (AtLocation bed loft) (STV 1.0 0.9091)) +(: cnet_atlocation_9a9518c035 (AtLocation bed neighbor_s_house) (STV 1.0 0.9339)) +(: cnet_atlocation_647ebc01d7 (AtLocation bed rest_area) (STV 1.0 0.9339)) +(: cnet_atlocation_34a3cb3d65 (AtLocation bed room) (STV 1.0 0.9454)) +(: cnet_atlocation_88d66809b7 (AtLocation bed_bug bed) (STV 1.0 0.9091)) +(: cnet_atlocation_3dedc44e00 (AtLocation bed_sheet bed) (STV 1.0 0.9339)) +(: cnet_atlocation_c2d5f6ae0f (AtLocation bed_sheet closet) (STV 1.0 0.9339)) +(: cnet_atlocation_5ff7cf60ca (AtLocation bedroom apartment) (STV 1.0 0.9339)) +(: cnet_atlocation_05ccf427fb (AtLocation bedroom house) (STV 1.0 0.9707)) +(: cnet_atlocation_09d8de3620 (AtLocation bee apiary) (STV 1.0 0.9091)) +(: cnet_atlocation_8981e8dc5f (AtLocation bee field_of_flower) (STV 1.0 0.9091)) +(: cnet_atlocation_99dbc294c9 (AtLocation bee garden) (STV 1.0 0.9454)) +(: cnet_atlocation_815707ae10 (AtLocation bee garden_pollinating_flower) (STV 1.0 0.9091)) +(: cnet_atlocation_6a938d15f9 (AtLocation bee honeysuckle_vine) (STV 1.0 0.9091)) +(: cnet_atlocation_39404002ee (AtLocation bee meadow) (STV 1.0 0.9636)) +(: cnet_atlocation_9b959fdefe (AtLocation bee orchard) (STV 1.0 0.9091)) +(: cnet_atlocation_bbb30927c8 (AtLocation bee pumpkin_patch) (STV 1.0 0.9091)) +(: cnet_atlocation_a12b3fdeb9 (AtLocation bee sky) (STV 1.0 0.9339)) +(: cnet_atlocation_6705bfe9b5 (AtLocation bee swarm) (STV 1.0 0.9091)) +(: cnet_atlocation_8e0afde59c (AtLocation beef plate) (STV 1.0 0.9339)) +(: cnet_atlocation_d5f30e5e65 (AtLocation beer bar) (STV 1.0 0.9608)) +(: cnet_atlocation_ab567ff5a5 (AtLocation beer bottle) (STV 1.0 0.9454)) +(: cnet_atlocation_ea5f5629a2 (AtLocation beer bowling_alley) (STV 1.0 0.9091)) +(: cnet_atlocation_ef0eea9e24 (AtLocation beer brewery) (STV 1.0 0.9091)) +(: cnet_atlocation_3342efe515 (AtLocation beer can) (STV 1.0 0.9091)) +(: cnet_atlocation_a2bbe7ba3d (AtLocation beer casino) (STV 1.0 0.9339)) +(: cnet_atlocation_49de7a6d00 (AtLocation beer fridge) (STV 1.0 0.9091)) +(: cnet_atlocation_57218b43ef (AtLocation beer grocery_store) (STV 1.0 0.9091)) +(: cnet_atlocation_68c0b4644a (AtLocation beer hockey_game) (STV 1.0 0.9524)) +(: cnet_atlocation_dbc2befc47 (AtLocation beer keg) (STV 1.0 0.9339)) +(: cnet_atlocation_0cab21bd77 (AtLocation beer refrigerator) (STV 1.0 0.9572)) +(: cnet_atlocation_fa7ce497ef (AtLocation beer shelf) (STV 1.0 0.9091)) +(: cnet_atlocation_3ecc8f5933 (AtLocation beer sporting_event) (STV 1.0 0.9091)) +(: cnet_atlocation_cfab51a2d1 (AtLocation beer store) (STV 1.0 0.9091)) +(: cnet_atlocation_09c88ac407 (AtLocation beer_keg fraternity_house) (STV 1.0 0.9091)) +(: cnet_atlocation_9d40b2bb2b (AtLocation bee countryside) (STV 1.0 0.9091)) +(: cnet_atlocation_4581529594 (AtLocation beet jar) (STV 1.0 0.9339)) +(: cnet_atlocation_2176669c5c (AtLocation beggar street) (STV 1.0 0.9091)) +(: cnet_atlocation_49c0ba01a6 (AtLocation believer church) (STV 1.0 0.9091)) +(: cnet_atlocation_276b5e3773 (AtLocation bell church) (STV 1.0 0.9636)) +(: cnet_atlocation_f9aa8ec80e (AtLocation bell front_door) (STV 1.0 0.9339)) +(: cnet_atlocation_fb8a207afb (AtLocation bell school) (STV 1.0 0.9524)) +(: cnet_atlocation_fdb3fcf2f2 (AtLocation bellhop at_hotel) (STV 1.0 0.9091)) +(: cnet_atlocation_9537f0ad56 (AtLocation bellhop hotel) (STV 1.0 0.9091)) +(: cnet_atlocation_63412a5757 (AtLocation bench bus_depot) (STV 1.0 0.9454)) +(: cnet_atlocation_664fec80e0 (AtLocation bench bus_stop) (STV 1.0 0.9524)) +(: cnet_atlocation_59d34010c6 (AtLocation bench state_park) (STV 1.0 0.9091)) +(: cnet_atlocation_c984bc5773 (AtLocation bench train_station) (STV 1.0 0.9339)) +(: cnet_atlocation_e460d1f858 (AtLocation bench_to_sit_on park) (STV 1.0 0.9091)) +(: cnet_atlocation_c1c13dc8fe (AtLocation bench_to_sit_on train_station) (STV 1.0 0.9091)) +(: cnet_atlocation_e02d385d25 (AtLocation best_man wedding) (STV 1.0 0.9091)) +(: cnet_atlocation_dfc9519b49 (AtLocation beverage_service airplane) (STV 1.0 0.9339)) +(: cnet_atlocation_c8212482a5 (AtLocation bible at_hotel) (STV 1.0 0.9091)) +(: cnet_atlocation_4820ae9beb (AtLocation bible hotel) (STV 1.0 0.9339)) +(: cnet_atlocation_2a443826c6 (AtLocation bible motel) (STV 1.0 0.9524)) +(: cnet_atlocation_a6c2d4572b (AtLocation bicycle garage) (STV 1.0 0.9740)) +(: cnet_atlocation_bb7e0cefb9 (AtLocation bicycle street) (STV 1.0 0.9707)) +(: cnet_atlocation_d6b781d18b (AtLocation bicycle toy_store) (STV 1.0 0.9339)) +(: cnet_atlocation_3feb98211b (AtLocation bicycle_rider street) (STV 1.0 0.9091)) +(: cnet_atlocation_77e992ce60 (AtLocation bicycle_storage_area bicycle_shop) (STV 1.0 0.9091)) +(: cnet_atlocation_7c37aed333 (AtLocation big_castle disneyland) (STV 1.0 0.9091)) +(: cnet_atlocation_c5b47a326e (AtLocation big_crowd_of_people party) (STV 1.0 0.9091)) +(: cnet_atlocation_19d4ceb2c5 (AtLocation big_fat_tenor opera) (STV 1.0 0.9091)) +(: cnet_atlocation_ccbc437338 (AtLocation bike street) (STV 1.0 0.9091)) +(: cnet_atlocation_472d3ef643 (AtLocation bikinis closet) (STV 1.0 0.9091)) +(: cnet_atlocation_156d785f61 (AtLocation bill congress) (STV 1.0 0.9454)) +(: cnet_atlocation_315d1a84db (AtLocation bill mail_box) (STV 1.0 0.9091)) +(: cnet_atlocation_062d3f2be3 (AtLocation bill restaurant) (STV 1.0 0.9572)) +(: cnet_atlocation_a4ea098d7b (AtLocation bill wallet) (STV 1.0 0.9339)) +(: cnet_atlocation_774bf543e6 (AtLocation billboard city) (STV 1.0 0.9608)) +(: cnet_atlocation_822c605680 (AtLocation bird air) (STV 1.0 0.9091)) +(: cnet_atlocation_b33b413e31 (AtLocation bird birdbath) (STV 1.0 0.9091)) +(: cnet_atlocation_8d6dc3dfbe (AtLocation bird cage) (STV 1.0 0.9339)) +(: cnet_atlocation_87e7fce4d5 (AtLocation bird forest) (STV 1.0 0.9339)) +(: cnet_atlocation_df77a49569 (AtLocation bird nest) (STV 1.0 0.9524)) +(: cnet_atlocation_8d09d7bc16 (AtLocation bird roof) (STV 1.0 0.9339)) +(: cnet_atlocation_63dc9a0d4e (AtLocation bird sea) (STV 1.0 0.9091)) +(: cnet_atlocation_977ea315ae (AtLocation bird sky) (STV 1.0 0.9524)) +(: cnet_atlocation_cbddb0f23f (AtLocation bird tree) (STV 1.0 0.9572)) +(: cnet_atlocation_0f72c5c163 (AtLocation birdbath lawn) (STV 1.0 0.9339)) +(: cnet_atlocation_b7b15ffb9e (AtLocation bird birdhouse) (STV 1.0 0.9091)) +(: cnet_atlocation_9ce903cbcf (AtLocation bird countryside) (STV 1.0 0.9339)) +(: cnet_atlocation_ceee997b99 (AtLocation bird park) (STV 1.0 0.9524)) +(: cnet_atlocation_7855485dd2 (AtLocation birth_control_pill bedroom) (STV 1.0 0.9091)) +(: cnet_atlocation_6f52a21bb4 (AtLocation birth_control_pill drug_store) (STV 1.0 0.9091)) +(: cnet_atlocation_10cab8ebf9 (AtLocation birth_control_pill whore_house) (STV 1.0 0.9091)) +(: cnet_atlocation_35e2fbcc37 (AtLocation birthday_present box) (STV 1.0 0.9091)) +(: cnet_atlocation_e64823dc57 (AtLocation bishop cathedral) (STV 1.0 0.9091)) +(: cnet_atlocation_d669045269 (AtLocation bishop church) (STV 1.0 0.9608)) +(: cnet_atlocation_4504f38323 (AtLocation black_hole space) (STV 1.0 0.9608)) +(: cnet_atlocation_5479a1bb37 (AtLocation black_hole outerspace) (STV 1.0 0.9339)) +(: cnet_atlocation_d0768f5b90 (AtLocation black_hole universe) (STV 1.0 0.9524)) +(: cnet_atlocation_a8feea2c90 (AtLocation black_matter universe) (STV 1.0 0.9091)) +(: cnet_atlocation_a5ba3e43c2 (AtLocation blanket bedroom) (STV 1.0 0.9524)) +(: cnet_atlocation_4e48e45b33 (AtLocation blanketing linen_closet) (STV 1.0 0.9091)) +(: cnet_atlocation_899ddbcbba (AtLocation blanket_pillow_sheet bed) (STV 1.0 0.9091)) +(: cnet_atlocation_7dad0e772b (AtLocation bleacher gymnasium) (STV 1.0 0.9454)) +(: cnet_atlocation_800a1225c4 (AtLocation bleacher sporting_event) (STV 1.0 0.9091)) +(: cnet_atlocation_0736519932 (AtLocation bleacher stadium) (STV 1.0 0.9091)) +(: cnet_atlocation_e16193261c (AtLocation blender kitchen) (STV 1.0 0.9454)) +(: cnet_atlocation_d01a7abebe (AtLocation blood hospital) (STV 1.0 0.9091)) +(: cnet_atlocation_f12693c303 (AtLocation blood person) (STV 1.0 0.9091)) +(: cnet_atlocation_1feae09070 (AtLocation blood vein) (STV 1.0 0.9091)) +(: cnet_atlocation_8bbcabe143 (AtLocation blood_pressure_machine doctor) (STV 1.0 0.9339)) +(: cnet_atlocation_1c7792717e (AtLocation blotter desk) (STV 1.0 0.9608)) +(: cnet_atlocation_b4210d6b93 (AtLocation blotter desktop) (STV 1.0 0.9091)) +(: cnet_atlocation_7658546fee (AtLocation blowdryer bathroom) (STV 1.0 0.9454)) +(: cnet_atlocation_c08cb89d71 (AtLocation blowfish book) (STV 1.0 0.9091)) +(: cnet_atlocation_7965809ee4 (AtLocation blowfish fish_market) (STV 1.0 0.9091)) +(: cnet_atlocation_5b6d1394e2 (AtLocation blowfish japanese_sushi_restaurant) (STV 1.0 0.9091)) +(: cnet_atlocation_aaa563d20b (AtLocation blowfish most_tropical_water) (STV 1.0 0.9339)) +(: cnet_atlocation_74b2e162e3 (AtLocation blowfish restaurant) (STV 1.0 0.9091)) +(: cnet_atlocation_cffe786244 (AtLocation blowfish salt_water) (STV 1.0 0.9091)) +(: cnet_atlocation_129794641f (AtLocation blowfish sushi_restaurant) (STV 1.0 0.9091)) +(: cnet_atlocation_68e632234e (AtLocation blowfish tropical_water) (STV 1.0 0.9091)) +(: cnet_atlocation_71ca98dfde (AtLocation board_game toy_store) (STV 1.0 0.9339)) +(: cnet_atlocation_4117743a54 (AtLocation boarding_room hostel) (STV 1.0 0.9091)) +(: cnet_atlocation_4554f261cb (AtLocation boat harbor) (STV 1.0 0.9454)) +(: cnet_atlocation_9bf4975c9a (AtLocation boat lake) (STV 1.0 0.9524)) +(: cnet_atlocation_54dc81dab3 (AtLocation boat ocean) (STV 1.0 0.9454)) +(: cnet_atlocation_8e63b885c9 (AtLocation boat river) (STV 1.0 0.9339)) +(: cnet_atlocation_e8aa6f4033 (AtLocation boat water) (STV 1.0 0.9763)) +(: cnet_atlocation_2e83941712 (AtLocation boat body_of_water) (STV 1.0 0.9091)) +(: cnet_atlocation_fcac493e38 (AtLocation boater boat) (STV 1.0 0.9091)) +(: cnet_atlocation_d267537f40 (AtLocation bobby_pin woman_s_hair) (STV 1.0 0.9091)) +(: cnet_atlocation_83b50e0999 (AtLocation body coffin) (STV 1.0 0.9524)) +(: cnet_atlocation_cd3a7f2502 (AtLocation body funeral) (STV 1.0 0.9339)) +(: cnet_atlocation_104d5ff82a (AtLocation bogeyman bed) (STV 1.0 0.9524)) +(: cnet_atlocation_5f02ed53f6 (AtLocation bomb bomber) (STV 1.0 0.9339)) +(: cnet_atlocation_1e86ceb789 (AtLocation bomb war) (STV 1.0 0.9524)) +(: cnet_atlocation_8bbc3c265d (AtLocation bombardon war) (STV 1.0 0.9454)) +(: cnet_atlocation_848913e979 (AtLocation bone animal) (STV 1.0 0.9339)) +(: cnet_atlocation_8be82de92f (AtLocation bone arm) (STV 1.0 0.9091)) +(: cnet_atlocation_afe6666afb (AtLocation bone cow) (STV 1.0 0.9339)) +(: cnet_atlocation_698983a722 (AtLocation bone dog_s_mouth) (STV 1.0 0.9091)) +(: cnet_atlocation_45225a4b64 (AtLocation bone fish) (STV 1.0 0.9091)) +(: cnet_atlocation_f8301147cd (AtLocation bone fresh_fish) (STV 1.0 0.9091)) +(: cnet_atlocation_78f9085f66 (AtLocation bone human_body) (STV 1.0 0.9339)) +(: cnet_atlocation_208c31dd9a (AtLocation bone museum) (STV 1.0 0.9091)) +(: cnet_atlocation_c4996fe393 (AtLocation bone skeleton) (STV 1.0 0.9091)) +(: cnet_atlocation_cf1bfdbb7b (AtLocation bone tomb) (STV 1.0 0.9091)) +(: cnet_atlocation_20a2926006 (AtLocation bone vertebrate) (STV 1.0 0.9524)) +(: cnet_atlocation_a56d2c6071 (AtLocation bone person) (STV 1.0 0.9091)) +(: cnet_atlocation_fc261745c0 (AtLocation booger nose) (STV 1.0 0.9572)) +(: cnet_atlocation_81aefd59d4 (AtLocation book backpack) (STV 1.0 0.9339)) +(: cnet_atlocation_f70ef8549a (AtLocation book bedroom) (STV 1.0 0.9091)) +(: cnet_atlocation_65ec783a7b (AtLocation book bookshelf) (STV 1.0 0.9608)) +(: cnet_atlocation_42dae8a1d6 (AtLocation book classroom) (STV 1.0 0.9693)) +(: cnet_atlocation_faf851f6ad (AtLocation book closet) (STV 1.0 0.9091)) +(: cnet_atlocation_521c7f25cf (AtLocation book desk) (STV 1.0 0.9454)) +(: cnet_atlocation_9712761744 (AtLocation book house) (STV 1.0 0.9091)) +(: cnet_atlocation_9199af617e (AtLocation book library) (STV 1.0 0.9091)) +(: cnet_atlocation_5dfa22ab94 (AtLocation book shelf) (STV 1.0 0.9636)) +(: cnet_atlocation_550856d5eb (AtLocation book store) (STV 1.0 0.9454)) +(: cnet_atlocation_595d8a312b (AtLocation book table) (STV 1.0 0.9091)) +(: cnet_atlocation_54f0f91dd3 (AtLocation book university) (STV 1.0 0.9524)) +(: cnet_atlocation_4c434857d7 (AtLocation bookcase den) (STV 1.0 0.9091)) +(: cnet_atlocation_32522277d8 (AtLocation bookend shelf) (STV 1.0 0.9091)) +(: cnet_atlocation_905994a3f8 (AtLocation bookie race_track) (STV 1.0 0.9339)) +(: cnet_atlocation_ed4091a834 (AtLocation booking_office building) (STV 1.0 0.9091)) +(: cnet_atlocation_ae556aee72 (AtLocation bookmarker bookstore) (STV 1.0 0.9091)) +(: cnet_atlocation_b2341fdce2 (AtLocation bookmark bookstore) (STV 1.0 0.9091)) +(: cnet_atlocation_d7794cfe2f (AtLocation book cabinet) (STV 1.0 0.9339)) +(: cnet_atlocation_e1f1492163 (AtLocation book desktop) (STV 1.0 0.9091)) +(: cnet_atlocation_3ceeb7a436 (AtLocation book_for_learning school) (STV 1.0 0.9091)) +(: cnet_atlocation_77e0f5f070 (AtLocation bookshelf library) (STV 1.0 0.9730)) +(: cnet_atlocation_732201caf6 (AtLocation bookshop mall) (STV 1.0 0.9454)) +(: cnet_atlocation_93adee0836 (AtLocation bookstore city) (STV 1.0 0.9454)) +(: cnet_atlocation_55c7206fff (AtLocation bookstore mall) (STV 1.0 0.9091)) +(: cnet_atlocation_a3a869c565 (AtLocation boot foot) (STV 1.0 0.9091)) +(: cnet_atlocation_30625d889e (AtLocation booth farmer_s_market) (STV 1.0 0.9091)) +(: cnet_atlocation_9185f67a09 (AtLocation boot sporting_good_store) (STV 1.0 0.9091)) +(: cnet_atlocation_6b4b28ecc7 (AtLocation booze friend_s_wedding) (STV 1.0 0.9091)) +(: cnet_atlocation_9c43ccadb6 (AtLocation bored_adult meeting) (STV 1.0 0.9091)) +(: cnet_atlocation_c5385d70c7 (AtLocation bored_worker cubicle) (STV 1.0 0.9454)) +(: cnet_atlocation_7189cb3c08 (AtLocation boss meeting) (STV 1.0 0.9091)) +(: cnet_atlocation_0bb9ebc04f (AtLocation bottle grocery_store) (STV 1.0 0.9091)) +(: cnet_atlocation_be50df669b (AtLocation bottle nursery) (STV 1.0 0.9091)) +(: cnet_atlocation_82d94baa50 (AtLocation bottle_of_asprin cabinet) (STV 1.0 0.9091)) +(: cnet_atlocation_5fe54e4aa7 (AtLocation bottle_of_vodka freezer) (STV 1.0 0.9091)) +(: cnet_atlocation_1caad1d088 (AtLocation bottle_of_wine table) (STV 1.0 0.9091)) +(: cnet_atlocation_f7f4f29fa4 (AtLocation bottled_water refrigerator) (STV 1.0 0.9091)) +(: cnet_atlocation_0dc92f9d15 (AtLocation bottle winery) (STV 1.0 0.9091)) +(: cnet_atlocation_a9210e7457 (AtLocation bottle_of_ketchup restaurant) (STV 1.0 0.9091)) +(: cnet_atlocation_30b49af7fb (AtLocation bowl cupboard) (STV 1.0 0.9730)) +(: cnet_atlocation_007f664965 (AtLocation bowling_ball bowling_alley) (STV 1.0 0.9454)) +(: cnet_atlocation_2ec022c9ed (AtLocation bowling_lane bowling_alley) (STV 1.0 0.9091)) +(: cnet_atlocation_4652369261 (AtLocation bowling_pin bowling_alley) (STV 1.0 0.9339)) +(: cnet_atlocation_ced725a8c6 (AtLocation bowling_shoe bowling_alley) (STV 1.0 0.9091)) +(: cnet_atlocation_730d4ea2fa (AtLocation box basement) (STV 1.0 0.9091)) +(: cnet_atlocation_f12d4490e4 (AtLocation box closet) (STV 1.0 0.9454)) +(: cnet_atlocation_36f90d8685 (AtLocation box garage) (STV 1.0 0.9572)) +(: cnet_atlocation_b11397c3ea (AtLocation box post_office) (STV 1.0 0.9454)) +(: cnet_atlocation_f72a89d4a0 (AtLocation box warehouse) (STV 1.0 0.9091)) +(: cnet_atlocation_ab47363110 (AtLocation box ballpark) (STV 1.0 0.9091)) +(: cnet_atlocation_b92f6d9414 (AtLocation box theater) (STV 1.0 0.9091)) +(: cnet_atlocation_a71ef0d6b2 (AtLocation box_of_cereal grocery_store) (STV 1.0 0.9091)) +(: cnet_atlocation_228ebed6e6 (AtLocation box_of_cereal market) (STV 1.0 0.9091)) +(: cnet_atlocation_a77a4afff1 (AtLocation box_of_cereal store) (STV 1.0 0.9091)) +(: cnet_atlocation_1e8ddd4f36 (AtLocation box_of_kleenex desk) (STV 1.0 0.9091)) +(: cnet_atlocation_c4bd5013fe (AtLocation box_of_tissue desk) (STV 1.0 0.9091)) +(: cnet_atlocation_73455b7d83 (AtLocation box_office theater) (STV 1.0 0.9091)) +(: cnet_atlocation_8b07c21ef3 (AtLocation box_seating opera) (STV 1.0 0.9091)) +(: cnet_atlocation_5df9c33dd7 (AtLocation boxe attic) (STV 1.0 0.9572)) +(: cnet_atlocation_7a8c21d6ff (AtLocation boxe basement) (STV 1.0 0.9524)) +(: cnet_atlocation_8f23fc990e (AtLocation boxe garage) (STV 1.0 0.9091)) +(: cnet_atlocation_007c8f3fdc (AtLocation boxe loft) (STV 1.0 0.9091)) +(: cnet_atlocation_f716df3b17 (AtLocation boxe_for_storage basement) (STV 1.0 0.9091)) +(: cnet_atlocation_b800f08054 (AtLocation brain person) (STV 1.0 0.9454)) +(: cnet_atlocation_0c6ba3bdc2 (AtLocation brain skull) (STV 1.0 0.9454)) +(: cnet_atlocation_4e7a05d89c (AtLocation brake car) (STV 1.0 0.9091)) +(: cnet_atlocation_a33a5c205f (AtLocation branch forest) (STV 1.0 0.9454)) +(: cnet_atlocation_1df53799f7 (AtLocation branche forest) (STV 1.0 0.9091)) +(: cnet_atlocation_57f6a4bde2 (AtLocation bra suitcase) (STV 1.0 0.9091)) +(: cnet_atlocation_31ca2e8d6d (AtLocation brass_family orchestra) (STV 1.0 0.9091)) +(: cnet_atlocation_4c73a35912 (AtLocation bread breadbox) (STV 1.0 0.9719)) +(: cnet_atlocation_bce9bf1a6d (AtLocation bread dinner) (STV 1.0 0.9454)) +(: cnet_atlocation_47fef7a2cf (AtLocation bread market) (STV 1.0 0.9524)) +(: cnet_atlocation_826b5df178 (AtLocation bread oven) (STV 1.0 0.9339)) +(: cnet_atlocation_f017f76ae6 (AtLocation bread pantry) (STV 1.0 0.9091)) +(: cnet_atlocation_11fe003a39 (AtLocation bread refrigerator) (STV 1.0 0.9091)) +(: cnet_atlocation_36f2cec95e (AtLocation bread store) (STV 1.0 0.9524)) +(: cnet_atlocation_7faa969968 (AtLocation bread supermarket) (STV 1.0 0.9524)) +(: cnet_atlocation_d9d76c81aa (AtLocation bread_crumb breadbox) (STV 1.0 0.9339)) +(: cnet_atlocation_b94cfb973b (AtLocation break_room work) (STV 1.0 0.9091)) +(: cnet_atlocation_5276a70f45 (AtLocation breakfast table) (STV 1.0 0.9091)) +(: cnet_atlocation_c994ce9a75 (AtLocation brick_row_house city) (STV 1.0 0.9339)) +(: cnet_atlocation_cf8fef30b6 (AtLocation brick_row_house neighborhood) (STV 1.0 0.9091)) +(: cnet_atlocation_2593d11c1a (AtLocation brick building) (STV 1.0 0.9091)) +(: cnet_atlocation_74f2b5cc68 (AtLocation bride wedding) (STV 1.0 0.9608)) +(: cnet_atlocation_141471ebde (AtLocation bride_and_groom friend_s_wedding) (STV 1.0 0.9339)) +(: cnet_atlocation_982536a36e (AtLocation bride_and_groom wedding) (STV 1.0 0.9608)) +(: cnet_atlocation_121c8fc32b (AtLocation bridge river) (STV 1.0 0.9339)) +(: cnet_atlocation_d8b5c46ce0 (AtLocation bridge_arch major_city) (STV 1.0 0.9091)) +(: cnet_atlocation_2af7f55b73 (AtLocation briefcase hand) (STV 1.0 0.9339)) +(: cnet_atlocation_c4139b099d (AtLocation broadcast_studio radio_station) (STV 1.0 0.9091)) +(: cnet_atlocation_8063a2b8e2 (AtLocation broken repair_shop) (STV 1.0 0.9339)) +(: cnet_atlocation_cebe74974e (AtLocation broken_car repair_shop) (STV 1.0 0.9091)) +(: cnet_atlocation_34d84b81b4 (AtLocation broken_glass beach) (STV 1.0 0.9339)) +(: cnet_atlocation_2c355e8403 (AtLocation broken_item repair_shop) (STV 1.0 0.9091)) +(: cnet_atlocation_ad5c216674 (AtLocation broken_thing repair_shop) (STV 1.0 0.9091)) +(: cnet_atlocation_07c23889dc (AtLocation broken_toaster repair_shop) (STV 1.0 0.9091)) +(: cnet_atlocation_ca1bc6933b (AtLocation brook country) (STV 1.0 0.9339)) +(: cnet_atlocation_be457bf5db (AtLocation broom closet) (STV 1.0 0.9339)) +(: cnet_atlocation_ad828c5270 (AtLocation brother family) (STV 1.0 0.9454)) +(: cnet_atlocation_57a654fe9c (AtLocation brother home) (STV 1.0 0.9339)) +(: cnet_atlocation_0cd2e1eaf9 (AtLocation brother house) (STV 1.0 0.9339)) +(: cnet_atlocation_bbe1431891 (AtLocation bubblegum supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_8b483d5a0a (AtLocation bubble swimming_pool) (STV 1.0 0.9091)) +(: cnet_atlocation_99dcc8765f (AtLocation bucket janitor_closet) (STV 1.0 0.9339)) +(: cnet_atlocation_2a5cebd920 (AtLocation buddhist temple) (STV 1.0 0.9091)) +(: cnet_atlocation_32b935bcb2 (AtLocation buffet restaurant) (STV 1.0 0.9524)) +(: cnet_atlocation_0c2a49c335 (AtLocation bug meadow) (STV 1.0 0.9339)) +(: cnet_atlocation_42cf865f79 (AtLocation bug rock) (STV 1.0 0.9091)) +(: cnet_atlocation_8b640fc1f4 (AtLocation bug field) (STV 1.0 0.9091)) +(: cnet_atlocation_4983c7a45d (AtLocation bug roof) (STV 1.0 0.9339)) +(: cnet_atlocation_5a11f5895d (AtLocation building town) (STV 1.0 0.9608)) +(: cnet_atlocation_0fc547caab (AtLocation building city) (STV 1.0 0.9707)) +(: cnet_atlocation_eaecd54927 (AtLocation building university) (STV 1.0 0.9091)) +(: cnet_atlocation_116b49e51f (AtLocation bulb land) (STV 1.0 0.9091)) +(: cnet_atlocation_87a1c8ef68 (AtLocation bullet magazine) (STV 1.0 0.9091)) +(: cnet_atlocation_bb7d94c031 (AtLocation bullet_train railway) (STV 1.0 0.9091)) +(: cnet_atlocation_b47f12c58d (AtLocation bullet war) (STV 1.0 0.9091)) +(: cnet_atlocation_185760c89b (AtLocation bum bridge) (STV 1.0 0.9339)) +(: cnet_atlocation_a6ba44f2f5 (AtLocation bum bus_stop) (STV 1.0 0.9091)) +(: cnet_atlocation_031d5b4809 (AtLocation bungalow suburb) (STV 1.0 0.9091)) +(: cnet_atlocation_8838497772 (AtLocation bunsen_burner chemistry_lab) (STV 1.0 0.9524)) +(: cnet_atlocation_a537eff942 (AtLocation bunsen_burner laboratory) (STV 1.0 0.9454)) +(: cnet_atlocation_37e9678cfe (AtLocation bureau bedroom) (STV 1.0 0.9339)) +(: cnet_atlocation_6cc6bc38a9 (AtLocation bureau city) (STV 1.0 0.9091)) +(: cnet_atlocation_4154ffd3a6 (AtLocation burlap sack) (STV 1.0 0.9091)) +(: cnet_atlocation_58c8a08c14 (AtLocation bus bus_station) (STV 1.0 0.9339)) +(: cnet_atlocation_a19b12000b (AtLocation bus bus_stop) (STV 1.0 0.9636)) +(: cnet_atlocation_7d82ce9fba (AtLocation bus city) (STV 1.0 0.9339)) +(: cnet_atlocation_5941a15948 (AtLocation bus road) (STV 1.0 0.9091)) +(: cnet_atlocation_19fa712554 (AtLocation bus_pass bus_station) (STV 1.0 0.9339)) +(: cnet_atlocation_62b6911472 (AtLocation bus_pass pocket) (STV 1.0 0.9091)) +(: cnet_atlocation_9945dec301 (AtLocation bus_schedule bus_depot) (STV 1.0 0.9091)) +(: cnet_atlocation_4f002fbc8f (AtLocation bus_schedule bus_stop) (STV 1.0 0.9091)) +(: cnet_atlocation_74abc2d972 (AtLocation bus_seat bus) (STV 1.0 0.9524)) +(: cnet_atlocation_6a76114d85 (AtLocation bus_shelter bus_route) (STV 1.0 0.9091)) +(: cnet_atlocation_3610324f17 (AtLocation bus_shelter bus_station) (STV 1.0 0.9091)) +(: cnet_atlocation_6a5ce00fc2 (AtLocation bus_shelter city) (STV 1.0 0.9339)) +(: cnet_atlocation_06855447de (AtLocation bus_station city) (STV 1.0 0.9454)) +(: cnet_atlocation_0560b55ae8 (AtLocation bus_stop city) (STV 1.0 0.9454)) +(: cnet_atlocation_57e0d543e8 (AtLocation bus_stop town) (STV 1.0 0.9091)) +(: cnet_atlocation_1197a98d1b (AtLocation bus_stop urban_area) (STV 1.0 0.9091)) +(: cnet_atlocation_69a12898b5 (AtLocation busboy resturant) (STV 1.0 0.9091)) +(: cnet_atlocation_91706c591f (AtLocation business office_building) (STV 1.0 0.9339)) +(: cnet_atlocation_fe28659432 (AtLocation business_card desk) (STV 1.0 0.9091)) +(: cnet_atlocation_255416614a (AtLocation business_class_airplane_seat airplane) (STV 1.0 0.9091)) +(: cnet_atlocation_b9c63823b3 (AtLocation butter fridge) (STV 1.0 0.9608)) +(: cnet_atlocation_ebfdc0f535 (AtLocation butter pastry) (STV 1.0 0.9572)) +(: cnet_atlocation_9fedf606b7 (AtLocation butter refrigerator) (STV 1.0 0.9677)) +(: cnet_atlocation_7f1cba9c39 (AtLocation butter restaurant) (STV 1.0 0.9572)) +(: cnet_atlocation_9ebfc1acfb (AtLocation butter store) (STV 1.0 0.9091)) +(: cnet_atlocation_3c7b88634b (AtLocation butterfly meadow) (STV 1.0 0.9091)) +(: cnet_atlocation_051889e8b0 (AtLocation cabbage supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_a5677cdeef (AtLocation cabinet corner) (STV 1.0 0.9091)) +(: cnet_atlocation_6b1ac39393 (AtLocation cabinet kitchen) (STV 1.0 0.9524)) +(: cnet_atlocation_bd8ae6460b (AtLocation cable computer) (STV 1.0 0.9524)) +(: cnet_atlocation_480133879b (AtLocation cable desk) (STV 1.0 0.9091)) +(: cnet_atlocation_d003956b93 (AtLocation cacti desert) (STV 1.0 0.9454)) +(: cnet_atlocation_08ca97ce8d (AtLocation cactus desert) (STV 1.0 0.9091)) +(: cnet_atlocation_113c8b955a (AtLocation cafe building) (STV 1.0 0.9091)) +(: cnet_atlocation_39a79df2e7 (AtLocation cafe city) (STV 1.0 0.9524)) +(: cnet_atlocation_dfa4b228c2 (AtLocation cafe london) (STV 1.0 0.9339)) +(: cnet_atlocation_884fc9c7b7 (AtLocation cafe paris) (STV 1.0 0.9339)) +(: cnet_atlocation_5562c71e3c (AtLocation cafeteria school) (STV 1.0 0.9524)) +(: cnet_atlocation_e0af99c927 (AtLocation cage zoo) (STV 1.0 0.9091)) +(: cnet_atlocation_bbdb4420e0 (AtLocation cake bakery) (STV 1.0 0.9608)) +(: cnet_atlocation_075a1e4b1c (AtLocation cake oven) (STV 1.0 0.9454)) +(: cnet_atlocation_f8cb863d0f (AtLocation cake party) (STV 1.0 0.9524)) +(: cnet_atlocation_454a3ff4c1 (AtLocation cake store) (STV 1.0 0.9339)) +(: cnet_atlocation_3162d33455 (AtLocation calculator accountant_s_table) (STV 1.0 0.9091)) +(: cnet_atlocation_99defbf0fa (AtLocation calculator desk) (STV 1.0 0.9524)) +(: cnet_atlocation_689a87d6d5 (AtLocation calculator desktop) (STV 1.0 0.9091)) +(: cnet_atlocation_445ee5b2a5 (AtLocation calculator office) (STV 1.0 0.9091)) +(: cnet_atlocation_d4fcb17279 (AtLocation calculator wristwatch) (STV 1.0 0.9091)) +(: cnet_atlocation_0f87bddb2c (AtLocation calendar desk) (STV 1.0 0.9608)) +(: cnet_atlocation_9e549a20a0 (AtLocation calendar desktop) (STV 1.0 0.9454)) +(: cnet_atlocation_65c3f5d93b (AtLocation calendar office_supply_store) (STV 1.0 0.9339)) +(: cnet_atlocation_2b2ab3ac2a (AtLocation calendar_book briefcase) (STV 1.0 0.9091)) +(: cnet_atlocation_e54da9127c (AtLocation calendar_pad office) (STV 1.0 0.9524)) +(: cnet_atlocation_d3ef79e90a (AtLocation calendar_pad office_supply_store) (STV 1.0 0.9339)) +(: cnet_atlocation_ad6e879a31 (AtLocation calender desk) (STV 1.0 0.9091)) +(: cnet_atlocation_c605389510 (AtLocation calm_and_stormy_weather sea) (STV 1.0 0.9091)) +(: cnet_atlocation_9b3d5439ad (AtLocation camera suitcase) (STV 1.0 0.9091)) +(: cnet_atlocation_e7f8caeef4 (AtLocation camp_site forest) (STV 1.0 0.9339)) +(: cnet_atlocation_38f1d908e3 (AtLocation campaign_finance_reform table) (STV 1.0 0.9091)) +(: cnet_atlocation_89e0c56b72 (AtLocation camper forest) (STV 1.0 0.9091)) +(: cnet_atlocation_d66b1a3edf (AtLocation camping_supply backpack) (STV 1.0 0.9091)) +(: cnet_atlocation_70172ac25c (AtLocation can cupboard) (STV 1.0 0.9339)) +(: cnet_atlocation_62b737331a (AtLocation can grocery_store) (STV 1.0 0.9091)) +(: cnet_atlocation_e914ab3c4e (AtLocation can pantry) (STV 1.0 0.9091)) +(: cnet_atlocation_0f411c94f2 (AtLocation can shelf) (STV 1.0 0.9091)) +(: cnet_atlocation_64a8824f09 (AtLocation can_of_paint garage) (STV 1.0 0.9524)) +(: cnet_atlocation_a250bdc01f (AtLocation can_of_paint hardware_store) (STV 1.0 0.9454)) +(: cnet_atlocation_a2f7c30dd7 (AtLocation can_of_soda vending_machine) (STV 1.0 0.9454)) +(: cnet_atlocation_eb56e2d66c (AtLocation canadian_bacon pizza) (STV 1.0 0.9339)) +(: cnet_atlocation_b30c2a669b (AtLocation canal amsterdam) (STV 1.0 0.9091)) +(: cnet_atlocation_aca7c7f42b (AtLocation canal venice) (STV 1.0 0.9339)) +(: cnet_atlocation_71321a1036 (AtLocation candle birthday_cake) (STV 1.0 0.9091)) +(: cnet_atlocation_f9ff1ff089 (AtLocation candle kitchen) (STV 1.0 0.9091)) +(: cnet_atlocation_9e63eb575f (AtLocation candle table) (STV 1.0 0.9454)) +(: cnet_atlocation_03320636e6 (AtLocation candy jar) (STV 1.0 0.9339)) +(: cnet_atlocation_4328c5d5c7 (AtLocation candy mall) (STV 1.0 0.9091)) +(: cnet_atlocation_cc2e2eae9f (AtLocation candy movy) (STV 1.0 0.9339)) +(: cnet_atlocation_3d62aae51e (AtLocation candy supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_e0e9222aa3 (AtLocation cannabis amsterdam) (STV 1.0 0.9091)) +(: cnet_atlocation_cf05f147d6 (AtLocation cannabis garden) (STV 1.0 0.9091)) +(: cnet_atlocation_c27626c6d3 (AtLocation canned_food cabinet) (STV 1.0 0.9091)) +(: cnet_atlocation_0ce48cb46a (AtLocation canned_food grocery_store) (STV 1.0 0.9091)) +(: cnet_atlocation_17645f9b7e (AtLocation canned_food pantry) (STV 1.0 0.9636)) +(: cnet_atlocation_6d73375579 (AtLocation canned_food shelf) (STV 1.0 0.9524)) +(: cnet_atlocation_b733a4d44e (AtLocation canned_fruit pantry) (STV 1.0 0.9091)) +(: cnet_atlocation_19a6044e76 (AtLocation canned_good cabinet) (STV 1.0 0.9091)) +(: cnet_atlocation_ce2e70397a (AtLocation canned_good cupboard) (STV 1.0 0.9339)) +(: cnet_atlocation_31e837ebac (AtLocation canned_good pantry) (STV 1.0 0.9091)) +(: cnet_atlocation_01e5c4a7d5 (AtLocation canned_good shelf) (STV 1.0 0.9091)) +(: cnet_atlocation_1ec47bf7fc (AtLocation canned_peache pantry) (STV 1.0 0.9091)) +(: cnet_atlocation_5dbdb6b88d (AtLocation canned_pea store) (STV 1.0 0.9091)) +(: cnet_atlocation_7258f00d55 (AtLocation cannonball cannon) (STV 1.0 0.9091)) +(: cnet_atlocation_c0440c5753 (AtLocation canoe boat_house) (STV 1.0 0.9091)) +(: cnet_atlocation_ea13071e0d (AtLocation canoe water) (STV 1.0 0.9454)) +(: cnet_atlocation_1b479b25ee (AtLocation can supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_2ec83f38f8 (AtLocation can_of_food cupboard) (STV 1.0 0.9454)) +(: cnet_atlocation_1452b16c8c (AtLocation can_of_food shelf) (STV 1.0 0.9091)) +(: cnet_atlocation_64ee3bae78 (AtLocation can_of_soup cupboard) (STV 1.0 0.9091)) +(: cnet_atlocation_f29edd585b (AtLocation canteen backpack) (STV 1.0 0.9339)) +(: cnet_atlocation_f58c63430d (AtLocation canva art_gallery) (STV 1.0 0.9091)) +(: cnet_atlocation_828ea7383e (AtLocation canva art_store) (STV 1.0 0.9091)) +(: cnet_atlocation_e48a3b5af7 (AtLocation capital country) (STV 1.0 0.9740)) +(: cnet_atlocation_636803cac3 (AtLocation capital each_state) (STV 1.0 0.9339)) +(: cnet_atlocation_05c2607c51 (AtLocation captain ship) (STV 1.0 0.9636)) +(: cnet_atlocation_f4e68406d7 (AtLocation captain_and_crew boat) (STV 1.0 0.9091)) +(: cnet_atlocation_35af82544a (AtLocation car car_dealership) (STV 1.0 0.9339)) +(: cnet_atlocation_dd27a4f46a (AtLocation car car_show) (STV 1.0 0.9454)) +(: cnet_atlocation_209d86a260 (AtLocation car city) (STV 1.0 0.9740)) +(: cnet_atlocation_df335bf581 (AtLocation car freeway) (STV 1.0 0.9524)) +(: cnet_atlocation_6701c66917 (AtLocation car neighbor_s_house) (STV 1.0 0.9091)) +(: cnet_atlocation_3f0f280037 (AtLocation car parking_lot) (STV 1.0 0.9719)) +(: cnet_atlocation_814defc869 (AtLocation car race_track) (STV 1.0 0.9454)) +(: cnet_atlocation_a6760e0b3e (AtLocation car repair_shop) (STV 1.0 0.9659)) +(: cnet_atlocation_5572d86db6 (AtLocation car road) (STV 1.0 0.9572)) +(: cnet_atlocation_9f59c09b2b (AtLocation car_enthusiast car_show) (STV 1.0 0.9091)) +(: cnet_atlocation_b91e414c93 (AtLocation car_key car) (STV 1.0 0.9091)) +(: cnet_atlocation_7a62fdc643 (AtLocation car_key ignition_switch) (STV 1.0 0.9091)) +(: cnet_atlocation_488d0de34f (AtLocation car_key pocket) (STV 1.0 0.9524)) +(: cnet_atlocation_4439932bbf (AtLocation car_lover car_show) (STV 1.0 0.9091)) +(: cnet_atlocation_ce1491bcda (AtLocation car_park city) (STV 1.0 0.9339)) +(: cnet_atlocation_bc5efa42a6 (AtLocation car_seat_belt car) (STV 1.0 0.9091)) +(: cnet_atlocation_a3285f2324 (AtLocation car_wash gas_station) (STV 1.0 0.9339)) +(: cnet_atlocation_bffc24b4f4 (AtLocation carbon organic_matter) (STV 1.0 0.9339)) +(: cnet_atlocation_883cbd87f7 (AtLocation card deck) (STV 1.0 0.9524)) +(: cnet_atlocation_9f0db7c0b1 (AtLocation card_catalog libary) (STV 1.0 0.9524)) +(: cnet_atlocation_8842bd0996 (AtLocation card_catalog library) (STV 1.0 0.9608)) +(: cnet_atlocation_b33c2f0660 (AtLocation card_catalogue library) (STV 1.0 0.9524)) +(: cnet_atlocation_00cec2fb63 (AtLocation card_index library) (STV 1.0 0.9091)) +(: cnet_atlocation_171767a972 (AtLocation card_slot atm_machine) (STV 1.0 0.9339)) +(: cnet_atlocation_94ba323058 (AtLocation card_slot slot_machine) (STV 1.0 0.9091)) +(: cnet_atlocation_0fc8c6b991 (AtLocation cardboard recycle_bin) (STV 1.0 0.9091)) +(: cnet_atlocation_f316d1f449 (AtLocation cardboard warehouse) (STV 1.0 0.9339)) +(: cnet_atlocation_a74f773819 (AtLocation cardboard_box trash) (STV 1.0 0.9091)) +(: cnet_atlocation_9b8aff8ddb (AtLocation cardboard_box warehouse) (STV 1.0 0.9091)) +(: cnet_atlocation_a58e34686f (AtLocation card casino) (STV 1.0 0.9091)) +(: cnet_atlocation_95f362aa98 (AtLocation card table) (STV 1.0 0.9091)) +(: cnet_atlocation_54b74d8097 (AtLocation cargo boat) (STV 1.0 0.9091)) +(: cnet_atlocation_4b7b87663f (AtLocation cargo ship) (STV 1.0 0.9339)) +(: cnet_atlocation_031b083f5b (AtLocation carny fair) (STV 1.0 0.9091)) +(: cnet_atlocation_fe9cdc0402 (AtLocation carnival fairground) (STV 1.0 0.9091)) +(: cnet_atlocation_4457b1507d (AtLocation carousel carnival) (STV 1.0 0.9339)) +(: cnet_atlocation_b84bfad756 (AtLocation carpet bed) (STV 1.0 0.9091)) +(: cnet_atlocation_29a546a884 (AtLocation carpet bedroom) (STV 1.0 0.9339)) +(: cnet_atlocation_c684eb0360 (AtLocation carpet building) (STV 1.0 0.9091)) +(: cnet_atlocation_1217b1bd54 (AtLocation carpet church) (STV 1.0 0.9091)) +(: cnet_atlocation_c65526452b (AtLocation carpet closet) (STV 1.0 0.9091)) +(: cnet_atlocation_21b1e2e3a5 (AtLocation carpet desk) (STV 1.0 0.9339)) +(: cnet_atlocation_f3606313c2 (AtLocation carpet house) (STV 1.0 0.9748)) +(: cnet_atlocation_5effd2b78a (AtLocation carpet office) (STV 1.0 0.9091)) +(: cnet_atlocation_34f3db1af3 (AtLocation carpet room) (STV 1.0 0.9091)) +(: cnet_atlocation_2c0b9ff79a (AtLocation carpet_pad carpet) (STV 1.0 0.9677)) +(: cnet_atlocation_c50d51947e (AtLocation carpeting room) (STV 1.0 0.9572)) +(: cnet_atlocation_b09b58878d (AtLocation carrier_bag supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_9095023bc1 (AtLocation carrot cellar) (STV 1.0 0.9091)) +(: cnet_atlocation_5c9a0687a6 (AtLocation carrot farmer_s_market) (STV 1.0 0.9339)) +(: cnet_atlocation_029a4abd88 (AtLocation carrot market) (STV 1.0 0.9091)) +(: cnet_atlocation_e930a984b5 (AtLocation carrot refrigerator) (STV 1.0 0.9339)) +(: cnet_atlocation_574dd97cb2 (AtLocation carrot salad) (STV 1.0 0.9091)) +(: cnet_atlocation_6a844c1d49 (AtLocation carrot store) (STV 1.0 0.9091)) +(: cnet_atlocation_ec0d734b9e (AtLocation carrot supermarket) (STV 1.0 0.9524)) +(: cnet_atlocation_22e5e32c6a (AtLocation carry_on_bag airport) (STV 1.0 0.9091)) +(: cnet_atlocation_25594302a2 (AtLocation cart supermarket) (STV 1.0 0.9339)) +(: cnet_atlocation_af81dd3810 (AtLocation carton_of_milk refrigerator) (STV 1.0 0.9339)) +(: cnet_atlocation_c0fd100b55 (AtLocation carton_of_milk store) (STV 1.0 0.9091)) +(: cnet_atlocation_478b48a6ef (AtLocation cartoon newspaper) (STV 1.0 0.9339)) +(: cnet_atlocation_ef696771d4 (AtLocation cartoon television) (STV 1.0 0.9339)) +(: cnet_atlocation_50c92934a2 (AtLocation case trunk) (STV 1.0 0.9091)) +(: cnet_atlocation_62834ca65d (AtLocation cash bank) (STV 1.0 0.9091)) +(: cnet_atlocation_0ceb7e3c84 (AtLocation cash purse) (STV 1.0 0.9091)) +(: cnet_atlocation_0e1e105382 (AtLocation cash_bill own_wallet) (STV 1.0 0.9339)) +(: cnet_atlocation_dfc062eb36 (AtLocation cash_bill store) (STV 1.0 0.9091)) +(: cnet_atlocation_01b074f67c (AtLocation cash_bill wallet) (STV 1.0 0.9091)) +(: cnet_atlocation_ee167f66bf (AtLocation cash_coin pocket) (STV 1.0 0.9454)) +(: cnet_atlocation_d9227f888f (AtLocation cash_coin purse) (STV 1.0 0.9339)) +(: cnet_atlocation_56139dedaf (AtLocation cash_register bookstore) (STV 1.0 0.9091)) +(: cnet_atlocation_e6f23285ec (AtLocation cash_register shop) (STV 1.0 0.9454)) +(: cnet_atlocation_3a75542694 (AtLocation cash_register store) (STV 1.0 0.9454)) +(: cnet_atlocation_6c0397e211 (AtLocation cash_register supermarket) (STV 1.0 0.9454)) +(: cnet_atlocation_df0feed26a (AtLocation cashier market) (STV 1.0 0.9339)) +(: cnet_atlocation_6a5d53b86f (AtLocation cashier shop) (STV 1.0 0.9091)) +(: cnet_atlocation_4b510b5d27 (AtLocation cashier supermarket) (STV 1.0 0.9339)) +(: cnet_atlocation_07f13bc121 (AtLocation casket funeral) (STV 1.0 0.9572)) +(: cnet_atlocation_d2f582d8fd (AtLocation cast_member disneyland) (STV 1.0 0.9339)) +(: cnet_atlocation_c9dcfdcec2 (AtLocation castanet spain) (STV 1.0 0.9091)) +(: cnet_atlocation_a6e94616ff (AtLocation castle edinburgh) (STV 1.0 0.9091)) +(: cnet_atlocation_fc0cb181f2 (AtLocation castle england) (STV 1.0 0.9091)) +(: cnet_atlocation_a15ae10a80 (AtLocation castle europe) (STV 1.0 0.9524)) +(: cnet_atlocation_f487e85dc9 (AtLocation castle fairy_tale) (STV 1.0 0.9091)) +(: cnet_atlocation_055f68cba7 (AtLocation castle germany) (STV 1.0 0.9454)) +(: cnet_atlocation_31ce4e1822 (AtLocation cat alley) (STV 1.0 0.9339)) +(: cnet_atlocation_f341863d28 (AtLocation cat alleyway) (STV 1.0 0.9091)) +(: cnet_atlocation_7f06b33efa (AtLocation cat apartment) (STV 1.0 0.9091)) +(: cnet_atlocation_d94fe8d6e5 (AtLocation cat appartment) (STV 1.0 0.9091)) +(: cnet_atlocation_fba7994212 (AtLocation cat back_yard) (STV 1.0 0.9339)) +(: cnet_atlocation_d9fe3b44b3 (AtLocation cat backyard) (STV 1.0 0.9454)) +(: cnet_atlocation_7fd23d64af (AtLocation cat bag) (STV 1.0 0.9454)) +(: cnet_atlocation_22ef8f12a7 (AtLocation cat barn) (STV 1.0 0.9524)) +(: cnet_atlocation_6c870f867f (AtLocation cat beam_of_sunlight) (STV 1.0 0.9091)) +(: cnet_atlocation_7acf71b3be (AtLocation cat bed) (STV 1.0 0.9791)) +(: cnet_atlocation_ec2a73b1a5 (AtLocation cat cat_box) (STV 1.0 0.9339)) +(: cnet_atlocation_61f7069fc3 (AtLocation cat cat_litter_tray) (STV 1.0 0.9091)) +(: cnet_atlocation_fc8916e14a (AtLocation cat chair) (STV 1.0 0.9572)) +(: cnet_atlocation_d7381f7034 (AtLocation cat closet) (STV 1.0 0.9339)) +(: cnet_atlocation_44003298dc (AtLocation cat floor) (STV 1.0 0.9524)) +(: cnet_atlocation_42df2906da (AtLocation cat heat) (STV 1.0 0.9091)) +(: cnet_atlocation_dd10ff5a42 (AtLocation cat home) (STV 1.0 0.9454)) +(: cnet_atlocation_a5bba6854a (AtLocation cat house) (STV 1.0 0.9339)) +(: cnet_atlocation_da1b28ce18 (AtLocation cat it_s_basket) (STV 1.0 0.9091)) +(: cnet_atlocation_d303eadead (AtLocation cat lap) (STV 1.0 0.9800)) +(: cnet_atlocation_3ffb857efb (AtLocation cat nature) (STV 1.0 0.9091)) +(: cnet_atlocation_21cc41e347 (AtLocation cat outside) (STV 1.0 0.9091)) +(: cnet_atlocation_cafd4ecdff (AtLocation cat roof) (STV 1.0 0.9339)) +(: cnet_atlocation_540e0b624b (AtLocation cat rug) (STV 1.0 0.9454)) +(: cnet_atlocation_cd299c24ce (AtLocation cat sofa) (STV 1.0 0.9091)) +(: cnet_atlocation_36cc67c550 (AtLocation cat table) (STV 1.0 0.9572)) +(: cnet_atlocation_f30e6a1eb1 (AtLocation cat vet) (STV 1.0 0.9572)) +(: cnet_atlocation_d948cc0e87 (AtLocation cat warm_place) (STV 1.0 0.9091)) +(: cnet_atlocation_0a2467863d (AtLocation cat way) (STV 1.0 0.9524)) +(: cnet_atlocation_dfcbfcbd7b (AtLocation cat windowsill) (STV 1.0 0.9740)) +(: cnet_atlocation_88a34a73af (AtLocation cat zoo) (STV 1.0 0.9339)) +(: cnet_atlocation_b80ce6c073 (AtLocation cat_fece litter_box) (STV 1.0 0.9091)) +(: cnet_atlocation_040eed9f49 (AtLocation cat_hair rug) (STV 1.0 0.9091)) +(: cnet_atlocation_00803a3908 (AtLocation cat_in barn) (STV 1.0 0.9524)) +(: cnet_atlocation_25e8309ecb (AtLocation catwalk fieldhouse) (STV 1.0 0.9091)) +(: cnet_atlocation_d75573b501 (AtLocation catwalk theater) (STV 1.0 0.9091)) +(: cnet_atlocation_10889e4164 (AtLocation cavity dentist) (STV 1.0 0.9091)) +(: cnet_atlocation_6fffa4c626 (AtLocation cavity molar) (STV 1.0 0.9091)) +(: cnet_atlocation_5a5ae09fbb (AtLocation cavity teeth) (STV 1.0 0.9339)) +(: cnet_atlocation_c877f4edfb (AtLocation cavity tooth) (STV 1.0 0.9636)) +(: cnet_atlocation_3e6be10b6b (AtLocation cd cd_player) (STV 1.0 0.9608)) +(: cnet_atlocation_46b38d66eb (AtLocation cd_rom box) (STV 1.0 0.9091)) +(: cnet_atlocation_ffc8145b2a (AtLocation ceiling building) (STV 1.0 0.9524)) +(: cnet_atlocation_a06ad6ac23 (AtLocation ceiling loft) (STV 1.0 0.9091)) +(: cnet_atlocation_f06b5dce3f (AtLocation cell jail) (STV 1.0 0.9091)) +(: cnet_atlocation_551a17d01a (AtLocation cellar winery) (STV 1.0 0.9091)) +(: cnet_atlocation_37f254e518 (AtLocation cemetery city) (STV 1.0 0.9572)) +(: cnet_atlocation_5f24f76c07 (AtLocation centerpiece table) (STV 1.0 0.9572)) +(: cnet_atlocation_49562baa2b (AtLocation central_passage public_building) (STV 1.0 0.9091)) +(: cnet_atlocation_819e75d498 (AtLocation cereal cupboard) (STV 1.0 0.9454)) +(: cnet_atlocation_e52a9fdf2c (AtLocation cereal_bowl cupboard) (STV 1.0 0.9339)) +(: cnet_atlocation_44570b57c2 (AtLocation cereal_bowl kitchen) (STV 1.0 0.9091)) +(: cnet_atlocation_8fd90a4c3c (AtLocation cereal_bowl kitchen_cabinet) (STV 1.0 0.9339)) +(: cnet_atlocation_fab993de5d (AtLocation cereal pantry) (STV 1.0 0.9091)) +(: cnet_atlocation_aa88c2da70 (AtLocation chain garage) (STV 1.0 0.9091)) +(: cnet_atlocation_5ca3971ba8 (AtLocation chain gear_shift) (STV 1.0 0.9091)) +(: cnet_atlocation_4cdeabe8b9 (AtLocation chain hardware_store) (STV 1.0 0.9091)) +(: cnet_atlocation_ef44b49191 (AtLocation chair church) (STV 1.0 0.9339)) +(: cnet_atlocation_b97a3b09fe (AtLocation chair cubicle) (STV 1.0 0.9454)) +(: cnet_atlocation_e9668a96b8 (AtLocation chair desk) (STV 1.0 0.9707)) +(: cnet_atlocation_252bce7d07 (AtLocation chair floor) (STV 1.0 0.9091)) +(: cnet_atlocation_153c41f6f9 (AtLocation chair furniture_store) (STV 1.0 0.9091)) +(: cnet_atlocation_4201dfe838 (AtLocation chair kitchen) (STV 1.0 0.9339)) +(: cnet_atlocation_bd4f39e426 (AtLocation chair living_room) (STV 1.0 0.9339)) +(: cnet_atlocation_96343507a2 (AtLocation chair office) (STV 1.0 0.9770)) +(: cnet_atlocation_21c5a0cfa0 (AtLocation chair porch) (STV 1.0 0.9454)) +(: cnet_atlocation_adac00cada (AtLocation chair room) (STV 1.0 0.9339)) +(: cnet_atlocation_932d7c6891 (AtLocation chair building) (STV 1.0 0.9339)) +(: cnet_atlocation_35ceb00ba8 (AtLocation chair meeting) (STV 1.0 0.9091)) +(: cnet_atlocation_f03891b588 (AtLocation chair theater) (STV 1.0 0.9091)) +(: cnet_atlocation_49337da770 (AtLocation chair theatre) (STV 1.0 0.9091)) +(: cnet_atlocation_67adf75a57 (AtLocation chair_for_spectator sporting_event) (STV 1.0 0.9091)) +(: cnet_atlocation_0ad0e76bfc (AtLocation chalk classroom) (STV 1.0 0.9091)) +(: cnet_atlocation_dcefa6736b (AtLocation chalkboard classroom) (STV 1.0 0.9091)) +(: cnet_atlocation_fba10d834f (AtLocation chalkboard school) (STV 1.0 0.9454)) +(: cnet_atlocation_f97461ff17 (AtLocation challenge work) (STV 1.0 0.9091)) +(: cnet_atlocation_3fb7b5aec7 (AtLocation change jar) (STV 1.0 0.9454)) +(: cnet_atlocation_aa7db53009 (AtLocation change pocket) (STV 1.0 0.9091)) +(: cnet_atlocation_f404701b11 (AtLocation changing_room clothing_store) (STV 1.0 0.9091)) +(: cnet_atlocation_324dc5c5d4 (AtLocation changing_room department_store) (STV 1.0 0.9091)) +(: cnet_atlocation_f5a6a3875f (AtLocation channel england) (STV 1.0 0.9091)) +(: cnet_atlocation_fb9bcf038e (AtLocation channel river) (STV 1.0 0.9091)) +(: cnet_atlocation_23740dc0d5 (AtLocation channel television) (STV 1.0 0.9091)) +(: cnet_atlocation_13253104e2 (AtLocation character play_in_play) (STV 1.0 0.9091)) +(: cnet_atlocation_0f52e87b2f (AtLocation character play_in_theater) (STV 1.0 0.9454)) +(: cnet_atlocation_86b81880ae (AtLocation chat_room internet_cafe) (STV 1.0 0.9091)) +(: cnet_atlocation_0231ddc309 (AtLocation cheap_bed motel) (STV 1.0 0.9091)) +(: cnet_atlocation_f80d1d2ab2 (AtLocation check bank) (STV 1.0 0.9091)) +(: cnet_atlocation_530efffc65 (AtLocation check checkbook) (STV 1.0 0.9091)) +(: cnet_atlocation_6f1704cdf9 (AtLocation check counter_in_airport) (STV 1.0 0.9659)) +(: cnet_atlocation_8ba5689392 (AtLocation check counter_in_motel) (STV 1.0 0.9091)) +(: cnet_atlocation_476b343917 (AtLocation check desk_in_hotel) (STV 1.0 0.9091)) +(: cnet_atlocation_9c169d1f45 (AtLocation check_in_counter airport) (STV 1.0 0.9524)) +(: cnet_atlocation_cba779b48d (AtLocation check_in_desk hotel) (STV 1.0 0.9091)) +(: cnet_atlocation_84f51380f0 (AtLocation checkbook purse) (STV 1.0 0.9608)) +(: cnet_atlocation_d272fb88d8 (AtLocation checkbook_cover purse) (STV 1.0 0.9524)) +(: cnet_atlocation_26e3d0de92 (AtLocation checkbook_holder bank) (STV 1.0 0.9454)) +(: cnet_atlocation_73ead05e9c (AtLocation checkbook_holder desk) (STV 1.0 0.9091)) +(: cnet_atlocation_68534721e1 (AtLocation checkbook_holder pocket) (STV 1.0 0.9339)) +(: cnet_atlocation_f7d3f5b8ab (AtLocation checkbook_holder purse) (STV 1.0 0.9454)) +(: cnet_atlocation_70b46c039a (AtLocation checkout_line supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_71746d811e (AtLocation checkout_stand supermarket) (STV 1.0 0.9339)) +(: cnet_atlocation_eada2f6af7 (AtLocation cheese fridge) (STV 1.0 0.9339)) +(: cnet_atlocation_0fb0b9f171 (AtLocation cheese market) (STV 1.0 0.9454)) +(: cnet_atlocation_e4a1d1ce60 (AtLocation cheese pizza) (STV 1.0 0.9524)) +(: cnet_atlocation_3ab4c2b706 (AtLocation cheese plate) (STV 1.0 0.9091)) +(: cnet_atlocation_ce971f32b1 (AtLocation cheese refrigerator) (STV 1.0 0.9608)) +(: cnet_atlocation_16fbe1d896 (AtLocation cheeseburger fast_food_restaurant) (STV 1.0 0.9091)) +(: cnet_atlocation_6d31258939 (AtLocation chef_special restaurant) (STV 1.0 0.9339)) +(: cnet_atlocation_c13c0a4de5 (AtLocation chemical chemistry_lab) (STV 1.0 0.9091)) +(: cnet_atlocation_7344d254b9 (AtLocation chemical laboratory) (STV 1.0 0.9091)) +(: cnet_atlocation_d96c005bfa (AtLocation chemist chemistry_lab) (STV 1.0 0.9091)) +(: cnet_atlocation_90a8169c17 (AtLocation cheque bank) (STV 1.0 0.9339)) +(: cnet_atlocation_c0d89a4f8f (AtLocation cheque_book_holder purse) (STV 1.0 0.9524)) +(: cnet_atlocation_2f41168757 (AtLocation cherry cherry_pie) (STV 1.0 0.9091)) +(: cnet_atlocation_b65b573696 (AtLocation cherry jar) (STV 1.0 0.9339)) +(: cnet_atlocation_0e3b5e2a2d (AtLocation cherub heaven) (STV 1.0 0.9091)) +(: cnet_atlocation_a7311fb2e2 (AtLocation chess_bishop chess) (STV 1.0 0.9339)) +(: cnet_atlocation_0b55741ea3 (AtLocation chess_bishop chess_game) (STV 1.0 0.9339)) +(: cnet_atlocation_d10da11e92 (AtLocation chess_bishop game_room) (STV 1.0 0.9091)) +(: cnet_atlocation_1285105b87 (AtLocation chess_board germany) (STV 1.0 0.9091)) +(: cnet_atlocation_65c6bfd75c (AtLocation chess_king chess_set) (STV 1.0 0.9091)) +(: cnet_atlocation_819f766958 (AtLocation chess_pawn chess_game) (STV 1.0 0.9454)) +(: cnet_atlocation_47d3af5d8c (AtLocation chess_pawn chess_set) (STV 1.0 0.9091)) +(: cnet_atlocation_01ab3ff699 (AtLocation chess_piece chess_set) (STV 1.0 0.9091)) +(: cnet_atlocation_5130d19696 (AtLocation chess_queen chess_game) (STV 1.0 0.9091)) +(: cnet_atlocation_7eecf30038 (AtLocation chess_queen chess_set) (STV 1.0 0.9339)) +(: cnet_atlocation_159174cc8c (AtLocation chess_rook corner) (STV 1.0 0.9091)) +(: cnet_atlocation_bbe732fdc6 (AtLocation chess_set cupboard) (STV 1.0 0.9091)) +(: cnet_atlocation_eb5c2c5edd (AtLocation chess_set toy_store) (STV 1.0 0.9091)) +(: cnet_atlocation_fc068346ef (AtLocation chesspiece chess_game) (STV 1.0 0.9091)) +(: cnet_atlocation_921b74ab17 (AtLocation chesspiece chess_set) (STV 1.0 0.9091)) +(: cnet_atlocation_a9e4c4095c (AtLocation chest bedroom) (STV 1.0 0.9339)) +(: cnet_atlocation_ccbf24c4f6 (AtLocation chesterfield living_room) (STV 1.0 0.9339)) +(: cnet_atlocation_df03e135a5 (AtLocation chicken pizza) (STV 1.0 0.9454)) +(: cnet_atlocation_413351ad9d (AtLocation chicken plate) (STV 1.0 0.9091)) +(: cnet_atlocation_ff90bd8212 (AtLocation chicken farm) (STV 1.0 0.9091)) +(: cnet_atlocation_5055d83b73 (AtLocation child_s_car_seat backseat_of_car) (STV 1.0 0.9091)) +(: cnet_atlocation_111addd23f (AtLocation child_s_drawing fridge) (STV 1.0 0.9091)) +(: cnet_atlocation_83ab401141 (AtLocation child most_home) (STV 1.0 0.9091)) +(: cnet_atlocation_c24857bf51 (AtLocation child school) (STV 1.0 0.9707)) +(: cnet_atlocation_504cebaa02 (AtLocation children_s_art fridge) (STV 1.0 0.9091)) +(: cnet_atlocation_a24aa76671 (AtLocation children_s_artwork fridge) (STV 1.0 0.9091)) +(: cnet_atlocation_a8a3018b9e (AtLocation children_s_playhous lawn) (STV 1.0 0.9091)) +(: cnet_atlocation_d81f007ce6 (AtLocation children backseat_of_car) (STV 1.0 0.9091)) +(: cnet_atlocation_0d272d933e (AtLocation children school) (STV 1.0 0.9786)) +(: cnet_atlocation_0d7913cf93 (AtLocation children zoo) (STV 1.0 0.9091)) +(: cnet_atlocation_3c2d99f0ac (AtLocation children_playing park) (STV 1.0 0.9091)) +(: cnet_atlocation_9604f9d54b (AtLocation childseat backseat_of_car) (STV 1.0 0.9091)) +(: cnet_atlocation_be7def825f (AtLocation chimeny roof) (STV 1.0 0.9339)) +(: cnet_atlocation_e122c5d706 (AtLocation chimney roof) (STV 1.0 0.9756)) +(: cnet_atlocation_6edd1da052 (AtLocation chimpanzee zoo) (STV 1.0 0.9339)) +(: cnet_atlocation_3e7842d283 (AtLocation chinese_people china) (STV 1.0 0.9091)) +(: cnet_atlocation_14ee67ed53 (AtLocation chinese_restaurant china) (STV 1.0 0.9339)) +(: cnet_atlocation_a2703a037b (AtLocation chinese_restaurant city) (STV 1.0 0.9091)) +(: cnet_atlocation_d873a296e1 (AtLocation chinese_restaurant new_york) (STV 1.0 0.9454)) +(: cnet_atlocation_dca3f69e4c (AtLocation chipmunk park) (STV 1.0 0.9091)) +(: cnet_atlocation_373ddec099 (AtLocation chip supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_3e6c03f428 (AtLocation chlorinated_water swimming_pool) (STV 1.0 0.9091)) +(: cnet_atlocation_14c5808d4e (AtLocation chocolate box) (STV 1.0 0.9524)) +(: cnet_atlocation_1e69f0255e (AtLocation chocolate candy_store) (STV 1.0 0.9091)) +(: cnet_atlocation_2a77c810a5 (AtLocation chocolate christma_stocking) (STV 1.0 0.9091)) +(: cnet_atlocation_2b27925be1 (AtLocation choice fork_in_road) (STV 1.0 0.9524)) +(: cnet_atlocation_c747512b62 (AtLocation choker jewelry_store) (STV 1.0 0.9091)) +(: cnet_atlocation_886bc105ca (AtLocation christian church) (STV 1.0 0.9454)) +(: cnet_atlocation_20bea9d621 (AtLocation church city) (STV 1.0 0.9572)) +(: cnet_atlocation_35bae0bc62 (AtLocation church community) (STV 1.0 0.9091)) +(: cnet_atlocation_fea2481cc7 (AtLocation church town) (STV 1.0 0.9091)) +(: cnet_atlocation_16a7223b90 (AtLocation church_central_passage church) (STV 1.0 0.9091)) +(: cnet_atlocation_dea846c670 (AtLocation church_side_passage church) (STV 1.0 0.9091)) +(: cnet_atlocation_e00c95bfb6 (AtLocation cigarette ashtray) (STV 1.0 0.9091)) +(: cnet_atlocation_bb7637fc9a (AtLocation cigarette hand) (STV 1.0 0.9454)) +(: cnet_atlocation_aa81a158f3 (AtLocation cigarette_smoke bar) (STV 1.0 0.9091)) +(: cnet_atlocation_fbde377d5b (AtLocation cigarette gas_station) (STV 1.0 0.9339)) +(: cnet_atlocation_b3433da6d9 (AtLocation cinema city) (STV 1.0 0.9091)) +(: cnet_atlocation_e1db0dcd69 (AtLocation cinema town) (STV 1.0 0.9339)) +(: cnet_atlocation_3d09eef1d7 (AtLocation circular mail_box) (STV 1.0 0.9091)) +(: cnet_atlocation_2722fe72e0 (AtLocation city country) (STV 1.0 0.9572)) +(: cnet_atlocation_701650184b (AtLocation city surface_of_earth) (STV 1.0 0.9091)) +(: cnet_atlocation_03ff9aece3 (AtLocation citizen country) (STV 1.0 0.9339)) +(: cnet_atlocation_aba788f793 (AtLocation city county) (STV 1.0 0.9454)) +(: cnet_atlocation_37da09cc14 (AtLocation city germany) (STV 1.0 0.9339)) +(: cnet_atlocation_9658709c1d (AtLocation city state) (STV 1.0 0.9091)) +(: cnet_atlocation_e3ec035537 (AtLocation city_hall town) (STV 1.0 0.9091)) +(: cnet_atlocation_3dfbc66407 (AtLocation city_park city) (STV 1.0 0.9091)) +(: cnet_atlocation_6d9395bcff (AtLocation clam bottom_of_sea) (STV 1.0 0.9339)) +(: cnet_atlocation_0018f6ebfd (AtLocation clarinet band) (STV 1.0 0.9524)) +(: cnet_atlocation_4628d52710 (AtLocation clarinet orchestra) (STV 1.0 0.9572)) +(: cnet_atlocation_4b42cb7dd4 (AtLocation class school) (STV 1.0 0.9339)) +(: cnet_atlocation_3965eeb533 (AtLocation classified_ad newspaper) (STV 1.0 0.9339)) +(: cnet_atlocation_6f59002a9d (AtLocation classified_ads newspaper) (STV 1.0 0.9091)) +(: cnet_atlocation_97ace9f8db (AtLocation classified_advertisement newspaper) (STV 1.0 0.9454)) +(: cnet_atlocation_253cd063ae (AtLocation classmate class) (STV 1.0 0.9091)) +(: cnet_atlocation_330496bd3a (AtLocation classroom university) (STV 1.0 0.9524)) +(: cnet_atlocation_3a917d5c48 (AtLocation classroom_chair school) (STV 1.0 0.9091)) +(: cnet_atlocation_11b6b3a4f5 (AtLocation cleaning_chemical supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_b4d6b95928 (AtLocation cleaning_supply cabinet) (STV 1.0 0.9091)) +(: cnet_atlocation_fa4db705be (AtLocation cleric church) (STV 1.0 0.9091)) +(: cnet_atlocation_7897f65922 (AtLocation clerk at_hotel) (STV 1.0 0.9091)) +(: cnet_atlocation_4e62957cbe (AtLocation clerk store) (STV 1.0 0.9091)) +(: cnet_atlocation_df3a6aa5fc (AtLocation clerk post_office) (STV 1.0 0.9091)) +(: cnet_atlocation_dcc85b7a6e (AtLocation clerk shop) (STV 1.0 0.9091)) +(: cnet_atlocation_c8abadd146 (AtLocation client office) (STV 1.0 0.9091)) +(: cnet_atlocation_dd0ab3b22f (AtLocation climber mountain) (STV 1.0 0.9339)) +(: cnet_atlocation_3121175568 (AtLocation clip accessory_store) (STV 1.0 0.9091)) +(: cnet_atlocation_bc66c5fb5b (AtLocation clip office) (STV 1.0 0.9339)) +(: cnet_atlocation_14939bd9e4 (AtLocation clipboard office_supply_store) (STV 1.0 0.9339)) +(: cnet_atlocation_8c9efc92c4 (AtLocation clipboard work) (STV 1.0 0.9091)) +(: cnet_atlocation_c5553f5617 (AtLocation clipper barber_s_shop) (STV 1.0 0.9339)) +(: cnet_atlocation_0b8e4a4fe4 (AtLocation clipper bathroom) (STV 1.0 0.9339)) +(: cnet_atlocation_be1df25d35 (AtLocation clipper drawer) (STV 1.0 0.9339)) +(: cnet_atlocation_54476446a4 (AtLocation clock desk) (STV 1.0 0.9572)) +(: cnet_atlocation_0fa39e9376 (AtLocation clock house) (STV 1.0 0.9339)) +(: cnet_atlocation_727bf4197e (AtLocation clock office) (STV 1.0 0.9091)) +(: cnet_atlocation_538ede9956 (AtLocation clock office_building) (STV 1.0 0.9091)) +(: cnet_atlocation_8e70beb08c (AtLocation clock own_bedroom) (STV 1.0 0.9091)) +(: cnet_atlocation_ee2fc328f5 (AtLocation clock shelf) (STV 1.0 0.9339)) +(: cnet_atlocation_66bca54ae0 (AtLocation clock wall) (STV 1.0 0.9091)) +(: cnet_atlocation_0b65571497 (AtLocation closet bedroom) (STV 1.0 0.9636)) +(: cnet_atlocation_3b9a850e20 (AtLocation closet house) (STV 1.0 0.9091)) +(: cnet_atlocation_e7a32a354a (AtLocation closet room) (STV 1.0 0.9339)) +(: cnet_atlocation_6275dc4da3 (AtLocation closet school) (STV 1.0 0.9339)) +(: cnet_atlocation_2e740bf658 (AtLocation cloth bedroom) (STV 1.0 0.9339)) +(: cnet_atlocation_92bceec8f0 (AtLocation cloth fabric_store) (STV 1.0 0.9524)) +(: cnet_atlocation_763d52e21c (AtLocation cloth kitchen) (STV 1.0 0.9339)) +(: cnet_atlocation_1413ac3cc8 (AtLocation cloth_linen linen_closet) (STV 1.0 0.9339)) +(: cnet_atlocation_8e63a20322 (AtLocation clothe closet) (STV 1.0 0.9572)) +(: cnet_atlocation_5cf613ad79 (AtLocation clothe clothing_store) (STV 1.0 0.9091)) +(: cnet_atlocation_0ada174f03 (AtLocation clothe dresser) (STV 1.0 0.9339)) +(: cnet_atlocation_7510f7209d (AtLocation clothe house) (STV 1.0 0.9339)) +(: cnet_atlocation_c73d0fe98f (AtLocation clothe mall) (STV 1.0 0.9091)) +(: cnet_atlocation_b75b8f2421 (AtLocation clothe store) (STV 1.0 0.9677)) +(: cnet_atlocation_d1701ac46a (AtLocation clothe suitcase) (STV 1.0 0.9339)) +(: cnet_atlocation_ec1ed2aba2 (AtLocation clothe_hanger closet) (STV 1.0 0.9091)) +(: cnet_atlocation_f2c3457246 (AtLocation clothing closet) (STV 1.0 0.9804)) +(: cnet_atlocation_e333d85296 (AtLocation clothing drawer) (STV 1.0 0.9677)) +(: cnet_atlocation_3d9f2bc4fc (AtLocation clothing house) (STV 1.0 0.9572)) +(: cnet_atlocation_4b79d75dfd (AtLocation clothing shop) (STV 1.0 0.9091)) +(: cnet_atlocation_41dccd45a4 (AtLocation clothing store) (STV 1.0 0.9091)) +(: cnet_atlocation_ec21e19c11 (AtLocation clothing suitcase) (STV 1.0 0.9524)) +(: cnet_atlocation_b76b960c37 (AtLocation clothing trunk) (STV 1.0 0.9454)) +(: cnet_atlocation_d8ca6549a2 (AtLocation clothing washing_machine) (STV 1.0 0.9091)) +(: cnet_atlocation_a67db3682a (AtLocation clothing_closet apartment) (STV 1.0 0.9091)) +(: cnet_atlocation_a318845cf3 (AtLocation clothing_shelf closet) (STV 1.0 0.9091)) +(: cnet_atlocation_24e7831afe (AtLocation clothing_store strip_mall) (STV 1.0 0.9091)) +(: cnet_atlocation_d828a1db46 (AtLocation clothing_store_changing_room mall) (STV 1.0 0.9091)) +(: cnet_atlocation_ca7ed80501 (AtLocation cloud sky) (STV 1.0 0.9770)) +(: cnet_atlocation_e2d964f0ef (AtLocation cloud air) (STV 1.0 0.9339)) +(: cnet_atlocation_dd98095050 (AtLocation clown carnival) (STV 1.0 0.9454)) +(: cnet_atlocation_3ea6213cc5 (AtLocation clown_shoe bowling_alley) (STV 1.0 0.9091)) +(: cnet_atlocation_b065ab02d9 (AtLocation club golf_bag) (STV 1.0 0.9091)) +(: cnet_atlocation_585521dfc0 (AtLocation clutter desk) (STV 1.0 0.9091)) +(: cnet_atlocation_e99c9081f5 (AtLocation clutter office) (STV 1.0 0.9091)) +(: cnet_atlocation_3a7a7861ea (AtLocation co_worker work) (STV 1.0 0.9091)) +(: cnet_atlocation_1cac483d51 (AtLocation co_worker office) (STV 1.0 0.9091)) +(: cnet_atlocation_3d932d10b8 (AtLocation coach_airline_seat large_airplane) (STV 1.0 0.9091)) +(: cnet_atlocation_7a7799c2d0 (AtLocation coach_airplane_seat most_airplane) (STV 1.0 0.9091)) +(: cnet_atlocation_213d52b278 (AtLocation coach_seat back_of_airplane) (STV 1.0 0.9091)) +(: cnet_atlocation_becc390522 (AtLocation coal underground) (STV 1.0 0.9091)) +(: cnet_atlocation_5d9f369202 (AtLocation coaster desk) (STV 1.0 0.9091)) +(: cnet_atlocation_08948fdb36 (AtLocation coat closet) (STV 1.0 0.9811)) +(: cnet_atlocation_2dc793f7e2 (AtLocation coat wardrobe) (STV 1.0 0.9339)) +(: cnet_atlocation_aab3494959 (AtLocation coat_hanger closet) (STV 1.0 0.9091)) +(: cnet_atlocation_7a7cb23f78 (AtLocation cobblestone field) (STV 1.0 0.9091)) +(: cnet_atlocation_4be18d2f60 (AtLocation cobweb attic) (STV 1.0 0.9454)) +(: cnet_atlocation_c076ab6e7b (AtLocation cobweb garage) (STV 1.0 0.9091)) +(: cnet_atlocation_2a97c418fb (AtLocation cockpit space_shuttle) (STV 1.0 0.9091)) +(: cnet_atlocation_a0b4561ce7 (AtLocation cocktail_cabinet bar) (STV 1.0 0.9091)) +(: cnet_atlocation_62582f7ec1 (AtLocation cocktail_cabinet dining_room) (STV 1.0 0.9091)) +(: cnet_atlocation_ba982fce5f (AtLocation cocktail_waitress bar) (STV 1.0 0.9091)) +(: cnet_atlocation_c29a0b8d9e (AtLocation coffee can) (STV 1.0 0.9091)) +(: cnet_atlocation_abf122320e (AtLocation coffee coffee_shop) (STV 1.0 0.9454)) +(: cnet_atlocation_17357be9e5 (AtLocation coffee container) (STV 1.0 0.9091)) +(: cnet_atlocation_38b3ca5980 (AtLocation coffee cup) (STV 1.0 0.9091)) +(: cnet_atlocation_a1e58b6ac1 (AtLocation coffee internet_cafe) (STV 1.0 0.9091)) +(: cnet_atlocation_f4cb4b3158 (AtLocation coffee office) (STV 1.0 0.9091)) +(: cnet_atlocation_1767bf2239 (AtLocation coffee_cup desk) (STV 1.0 0.9693)) +(: cnet_atlocation_4fb7777eb5 (AtLocation coffee_cup cupboard) (STV 1.0 0.9339)) +(: cnet_atlocation_d6dabff5e9 (AtLocation coffee_cup office) (STV 1.0 0.9339)) +(: cnet_atlocation_c2a2c897cf (AtLocation coffee_mug cupboard) (STV 1.0 0.9524)) +(: cnet_atlocation_c8a67aaba8 (AtLocation coffee_mug desktop) (STV 1.0 0.9339)) +(: cnet_atlocation_9cf3001392 (AtLocation coffee_mug shelf) (STV 1.0 0.9091)) +(: cnet_atlocation_31334a4930 (AtLocation coffee_table front_of_couch) (STV 1.0 0.9091)) +(: cnet_atlocation_77cd5bc1b3 (AtLocation coffeemaker motel) (STV 1.0 0.9091)) +(: cnet_atlocation_ad11e4aabb (AtLocation coffin funeral) (STV 1.0 0.9339)) +(: cnet_atlocation_95be50fafa (AtLocation coil circuit) (STV 1.0 0.9091)) +(: cnet_atlocation_eb48029981 (AtLocation coil refridgerator) (STV 1.0 0.9091)) +(: cnet_atlocation_d7dfe1039f (AtLocation coin bank) (STV 1.0 0.9339)) +(: cnet_atlocation_6076d552ac (AtLocation coin ground) (STV 1.0 0.9091)) +(: cnet_atlocation_56518e6792 (AtLocation coin purse) (STV 1.0 0.9339)) +(: cnet_atlocation_d122f78f7a (AtLocation coin_purse purse) (STV 1.0 0.9339)) +(: cnet_atlocation_f94790fdda (AtLocation coin desk) (STV 1.0 0.9091)) +(: cnet_atlocation_1799e62ada (AtLocation coin jar) (STV 1.0 0.9091)) +(: cnet_atlocation_3f7474cfb0 (AtLocation coin water_fountain) (STV 1.0 0.9091)) +(: cnet_atlocation_b1bf647b59 (AtLocation coke movie) (STV 1.0 0.9091)) +(: cnet_atlocation_357ded3322 (AtLocation cola fridge) (STV 1.0 0.9339)) +(: cnet_atlocation_444dee29cd (AtLocation cold freezer) (STV 1.0 0.9091)) +(: cnet_atlocation_91d5a6ef6d (AtLocation cold_drink beach) (STV 1.0 0.9091)) +(: cnet_atlocation_f2538c025f (AtLocation cold_faucet bathroom) (STV 1.0 0.9524)) +(: cnet_atlocation_a5ba24a2aa (AtLocation cold_tap kitchen) (STV 1.0 0.9091)) +(: cnet_atlocation_e18d3790d9 (AtLocation collard_green farmer_s_market) (STV 1.0 0.9091)) +(: cnet_atlocation_78179fd17d (AtLocation college big_city) (STV 1.0 0.9339)) +(: cnet_atlocation_b22570831d (AtLocation college city) (STV 1.0 0.9707)) +(: cnet_atlocation_d81f114c06 (AtLocation college large_city) (STV 1.0 0.9091)) +(: cnet_atlocation_206635d51c (AtLocation college_student fraternity_house) (STV 1.0 0.9091)) +(: cnet_atlocation_43383b3f86 (AtLocation coloring_book toy_store) (STV 1.0 0.9091)) +(: cnet_atlocation_1524e7aa0f (AtLocation column memorial) (STV 1.0 0.9091)) +(: cnet_atlocation_d3c478a507 (AtLocation comb pocket) (STV 1.0 0.9524)) +(: cnet_atlocation_1be327ab9f (AtLocation comb purse) (STV 1.0 0.9454)) +(: cnet_atlocation_567e68e880 (AtLocation comet outerspace) (STV 1.0 0.9091)) +(: cnet_atlocation_b64f7ee4a7 (AtLocation comet space) (STV 1.0 0.9454)) +(: cnet_atlocation_f4f23e8507 (AtLocation comet universe) (STV 1.0 0.9091)) +(: cnet_atlocation_c2ef4705c7 (AtLocation comfort friend_s_house) (STV 1.0 0.9091)) +(: cnet_atlocation_eaaf5b6100 (AtLocation comfort home) (STV 1.0 0.9339)) +(: cnet_atlocation_86c1bfcff8 (AtLocation comfortable_couch loft) (STV 1.0 0.9091)) +(: cnet_atlocation_0e10d7fe18 (AtLocation comfortable_pillow bedroom) (STV 1.0 0.9454)) +(: cnet_atlocation_f46f6fc295 (AtLocation comforter bedroom) (STV 1.0 0.9339)) +(: cnet_atlocation_88f63d0dfb (AtLocation comic_strip newspaper) (STV 1.0 0.9339)) +(: cnet_atlocation_392a6b3971 (AtLocation comic newspaper) (STV 1.0 0.9572)) +(: cnet_atlocation_3a6036c108 (AtLocation commercial television) (STV 1.0 0.9707)) +(: cnet_atlocation_1934f375ae (AtLocation committee government) (STV 1.0 0.9091)) +(: cnet_atlocation_ade24787fd (AtLocation communism china) (STV 1.0 0.9339)) +(: cnet_atlocation_f46b32a5a6 (AtLocation community church) (STV 1.0 0.9091)) +(: cnet_atlocation_60d48ca198 (AtLocation company yellow_page) (STV 1.0 0.9091)) +(: cnet_atlocation_bc2ae12585 (AtLocation compass backpack) (STV 1.0 0.9524)) +(: cnet_atlocation_38426ed194 (AtLocation competitor sporting_event) (STV 1.0 0.9339)) +(: cnet_atlocation_994848cd8f (AtLocation compost forest) (STV 1.0 0.9091)) +(: cnet_atlocation_5147b8ec14 (AtLocation compost garden) (STV 1.0 0.9091)) +(: cnet_atlocation_3e4d8bcd0d (AtLocation computer building) (STV 1.0 0.9572)) +(: cnet_atlocation_9247b7cbb6 (AtLocation computer desktop) (STV 1.0 0.9524)) +(: cnet_atlocation_06b1339060 (AtLocation computer house) (STV 1.0 0.9756)) +(: cnet_atlocation_a36fe83db4 (AtLocation computer jet_airliner) (STV 1.0 0.9339)) +(: cnet_atlocation_5a70329150 (AtLocation computer library) (STV 1.0 0.9524)) +(: cnet_atlocation_6d86f96998 (AtLocation computer office) (STV 1.0 0.9608)) +(: cnet_atlocation_c3ecd53c7e (AtLocation computer school) (STV 1.0 0.9707)) +(: cnet_atlocation_0907671d2d (AtLocation computer space_shuttle) (STV 1.0 0.9091)) +(: cnet_atlocation_0fdac01328 (AtLocation computer table) (STV 1.0 0.9608)) +(: cnet_atlocation_c01718c9cc (AtLocation computer_monitor table) (STV 1.0 0.9339)) +(: cnet_atlocation_1a61d21f06 (AtLocation computer_user home) (STV 1.0 0.9091)) +(: cnet_atlocation_abc6a017a8 (AtLocation computer_user office) (STV 1.0 0.9339)) +(: cnet_atlocation_8d33d3a5c1 (AtLocation computer mit) (STV 1.0 0.9091)) +(: cnet_atlocation_f13ae690a3 (AtLocation concert_hall city) (STV 1.0 0.9339)) +(: cnet_atlocation_598a850076 (AtLocation concession_stand movy) (STV 1.0 0.9091)) +(: cnet_atlocation_d68b439fab (AtLocation concession_stand state_park) (STV 1.0 0.9091)) +(: cnet_atlocation_6666ab5814 (AtLocation conche ocean) (STV 1.0 0.9091)) +(: cnet_atlocation_48599947ad (AtLocation concierge at_hotel) (STV 1.0 0.9339)) +(: cnet_atlocation_9d1cf55ebe (AtLocation concierge hotel) (STV 1.0 0.9524)) +(: cnet_atlocation_29cdde53c9 (AtLocation condiment container) (STV 1.0 0.9091)) +(: cnet_atlocation_0636172e3f (AtLocation condiment pantry) (STV 1.0 0.9091)) +(: cnet_atlocation_4dda546ba9 (AtLocation condo city) (STV 1.0 0.9339)) +(: cnet_atlocation_2bc16bbaad (AtLocation condom bedroom) (STV 1.0 0.9454)) +(: cnet_atlocation_36da8ede19 (AtLocation condom pharmacy) (STV 1.0 0.9339)) +(: cnet_atlocation_5e731ddb0e (AtLocation condom sock_drawer) (STV 1.0 0.9091)) +(: cnet_atlocation_9c5c57e598 (AtLocation condominium city) (STV 1.0 0.9524)) +(: cnet_atlocation_c699d02da9 (AtLocation condominium community) (STV 1.0 0.9091)) +(: cnet_atlocation_fef291877b (AtLocation condominium florida) (STV 1.0 0.9339)) +(: cnet_atlocation_c785be741f (AtLocation condominium town) (STV 1.0 0.9091)) +(: cnet_atlocation_9c04197216 (AtLocation condom supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_ea498743ca (AtLocation conductor opera) (STV 1.0 0.9091)) +(: cnet_atlocation_0db2b7b425 (AtLocation conference_auditorium office_building) (STV 1.0 0.9091)) +(: cnet_atlocation_f2c47ffebe (AtLocation confessional confession) (STV 1.0 0.9091)) +(: cnet_atlocation_ca5710a325 (AtLocation confusion quandry) (STV 1.0 0.9091)) +(: cnet_atlocation_47615bfae5 (AtLocation congregation synagogue) (STV 1.0 0.9091)) +(: cnet_atlocation_2a1d19cc56 (AtLocation connection circuit) (STV 1.0 0.9091)) +(: cnet_atlocation_c43aaa549b (AtLocation container cupboard) (STV 1.0 0.9339)) +(: cnet_atlocation_db6ee923d8 (AtLocation container kitchen) (STV 1.0 0.9091)) +(: cnet_atlocation_bb2661240a (AtLocation container pantry) (STV 1.0 0.9454)) +(: cnet_atlocation_851bf32179 (AtLocation container refrigerator) (STV 1.0 0.9454)) +(: cnet_atlocation_c8b250f1d0 (AtLocation container_cup kitchen) (STV 1.0 0.9339)) +(: cnet_atlocation_b5c49bf95e (AtLocation contestant sporting_event) (STV 1.0 0.9091)) +(: cnet_atlocation_d3c6393c66 (AtLocation contraceptive drug_store) (STV 1.0 0.9339)) +(: cnet_atlocation_7a474c81e6 (AtLocation contraceptive medicine_cabinet) (STV 1.0 0.9339)) +(: cnet_atlocation_db6098f505 (AtLocation contraceptive pharmacy) (STV 1.0 0.9339)) +(: cnet_atlocation_2426f8f283 (AtLocation contraceptive_device bedroom) (STV 1.0 0.9091)) +(: cnet_atlocation_a444dde189 (AtLocation contraceptive_device drug_store) (STV 1.0 0.9091)) +(: cnet_atlocation_84aada151c (AtLocation contralto concert) (STV 1.0 0.9339)) +(: cnet_atlocation_bc0720f186 (AtLocation control_room nuclear_power_plant) (STV 1.0 0.9091)) +(: cnet_atlocation_67322ff9cd (AtLocation convenience_food_store city) (STV 1.0 0.9091)) +(: cnet_atlocation_3874fed185 (AtLocation convenience_store street_corner) (STV 1.0 0.9091)) +(: cnet_atlocation_2728841f7e (AtLocation conversation dinner) (STV 1.0 0.9091)) +(: cnet_atlocation_5eb29aafa8 (AtLocation convict jail) (STV 1.0 0.9339)) +(: cnet_atlocation_bd1051412c (AtLocation convict prison) (STV 1.0 0.9454)) +(: cnet_atlocation_67b3688990 (AtLocation cook kitchen) (STV 1.0 0.9091)) +(: cnet_atlocation_ac1fae11d4 (AtLocation cook restaurant) (STV 1.0 0.9454)) +(: cnet_atlocation_8e6c3c159f (AtLocation cooked_food oven) (STV 1.0 0.9091)) +(: cnet_atlocation_6022cdb526 (AtLocation cookie dessert) (STV 1.0 0.9091)) +(: cnet_atlocation_3b715f2dd3 (AtLocation cookie jar) (STV 1.0 0.9608)) +(: cnet_atlocation_945b2bf59f (AtLocation cookie_sheet oven) (STV 1.0 0.9091)) +(: cnet_atlocation_2b5b03eac7 (AtLocation cooky house) (STV 1.0 0.9091)) +(: cnet_atlocation_6d4f7a4b68 (AtLocation cooky jar) (STV 1.0 0.9091)) +(: cnet_atlocation_a14ece20dc (AtLocation cooky plate) (STV 1.0 0.9091)) +(: cnet_atlocation_fec62be916 (AtLocation cooling_device computer) (STV 1.0 0.9091)) +(: cnet_atlocation_226ba579ce (AtLocation copier office) (STV 1.0 0.9339)) +(: cnet_atlocation_2cdc052f70 (AtLocation copy_machine office) (STV 1.0 0.9454)) +(: cnet_atlocation_b476a8882e (AtLocation copyholder desk) (STV 1.0 0.9091)) +(: cnet_atlocation_760e79803d (AtLocation coral ocean) (STV 1.0 0.9091)) +(: cnet_atlocation_74dd1d5789 (AtLocation coral sea) (STV 1.0 0.9091)) +(: cnet_atlocation_bf2d7109c2 (AtLocation coral_reef water) (STV 1.0 0.9572)) +(: cnet_atlocation_402a32acfe (AtLocation cord hardware_store) (STV 1.0 0.9091)) +(: cnet_atlocation_73c965c9fc (AtLocation corn can) (STV 1.0 0.9091)) +(: cnet_atlocation_e7fdb8bb96 (AtLocation corn corn_field) (STV 1.0 0.9091)) +(: cnet_atlocation_e03f7ab6ae (AtLocation corn field) (STV 1.0 0.9524)) +(: cnet_atlocation_b2348a99dd (AtLocation corn polenta) (STV 1.0 0.9091)) +(: cnet_atlocation_64575e3ab9 (AtLocation corn silo) (STV 1.0 0.9339)) +(: cnet_atlocation_2ff816901c (AtLocation corn supermarket) (STV 1.0 0.9339)) +(: cnet_atlocation_2f07ceddba (AtLocation corn_on_cob farmer_s_market) (STV 1.0 0.9091)) +(: cnet_atlocation_5df5297572 (AtLocation corner_cabinet corner) (STV 1.0 0.9091)) +(: cnet_atlocation_6828ef9a6e (AtLocation corner_cupboard kitchen) (STV 1.0 0.9719)) +(: cnet_atlocation_728626b273 (AtLocation corner_grocery town) (STV 1.0 0.9091)) +(: cnet_atlocation_d3048c21b3 (AtLocation corner_shop corner) (STV 1.0 0.9339)) +(: cnet_atlocation_9a8d5e2e0c (AtLocation cornet band) (STV 1.0 0.9091)) +(: cnet_atlocation_a5de36b37d (AtLocation cornet high_school_band) (STV 1.0 0.9091)) +(: cnet_atlocation_c60c4a6443 (AtLocation corpse morgue) (STV 1.0 0.9091)) +(: cnet_atlocation_ad0da3b718 (AtLocation correction_fluid desk) (STV 1.0 0.9091)) +(: cnet_atlocation_7b72085ddc (AtLocation correction_fluid desk_drawer) (STV 1.0 0.9339)) +(: cnet_atlocation_e60b3e1d5f (AtLocation costume opera) (STV 1.0 0.9524)) +(: cnet_atlocation_6493b5ffb1 (AtLocation cot jail) (STV 1.0 0.9339)) +(: cnet_atlocation_5f7e58078f (AtLocation cottage mountain) (STV 1.0 0.9091)) +(: cnet_atlocation_3aa9c8a3e8 (AtLocation cottage village) (STV 1.0 0.9091)) +(: cnet_atlocation_e67b69bf44 (AtLocation cotton cotton_field) (STV 1.0 0.9091)) +(: cnet_atlocation_45a11d51da (AtLocation cotton georgia) (STV 1.0 0.9091)) +(: cnet_atlocation_728e30d9cb (AtLocation cotton medicine_cabinet) (STV 1.0 0.9454)) +(: cnet_atlocation_c73d550d8b (AtLocation cotton_candy carnival) (STV 1.0 0.9091)) +(: cnet_atlocation_cd6a772abb (AtLocation cotton_candy fair) (STV 1.0 0.9091)) +(: cnet_atlocation_a375384b0c (AtLocation cotton_candy fairground) (STV 1.0 0.9091)) +(: cnet_atlocation_8edfd87cc2 (AtLocation cotton_footwear sock_drawer) (STV 1.0 0.9091)) +(: cnet_atlocation_119eaee8a0 (AtLocation couch den) (STV 1.0 0.9339)) +(: cnet_atlocation_f6d32037ef (AtLocation couch house) (STV 1.0 0.9608)) +(: cnet_atlocation_8caadcc122 (AtLocation couch livingroom) (STV 1.0 0.9091)) +(: cnet_atlocation_ac248a7807 (AtLocation couch neighbor_s_house) (STV 1.0 0.9091)) +(: cnet_atlocation_d51db22982 (AtLocation council council_chamber) (STV 1.0 0.9091)) +(: cnet_atlocation_ef0261d369 (AtLocation counter kitchen) (STV 1.0 0.9339)) +(: cnet_atlocation_bb70498acd (AtLocation country continent) (STV 1.0 0.9524)) +(: cnet_atlocation_cf63c2e41d (AtLocation county state) (STV 1.0 0.9091)) +(: cnet_atlocation_579ef13b4f (AtLocation county_highway map) (STV 1.0 0.9091)) +(: cnet_atlocation_75813ed5f5 (AtLocation county_highway rural_area) (STV 1.0 0.9091)) +(: cnet_atlocation_b72f2d9f0c (AtLocation couple theatre) (STV 1.0 0.9091)) +(: cnet_atlocation_1cfbd91a36 (AtLocation couple wedding) (STV 1.0 0.9091)) +(: cnet_atlocation_9fb4e809a6 (AtLocation coupon market) (STV 1.0 0.9091)) +(: cnet_atlocation_853fadbdb6 (AtLocation court courthouse) (STV 1.0 0.9454)) +(: cnet_atlocation_675f355e1a (AtLocation courthouse city) (STV 1.0 0.9454)) +(: cnet_atlocation_7669f9384a (AtLocation courtroom courthouse) (STV 1.0 0.9454)) +(: cnet_atlocation_02e237f5cb (AtLocation cow barnyard) (STV 1.0 0.9091)) +(: cnet_atlocation_634cd25b7b (AtLocation cow butcher_shop) (STV 1.0 0.9091)) +(: cnet_atlocation_21f7a2cc6c (AtLocation cow canada) (STV 1.0 0.9091)) +(: cnet_atlocation_1520e1fb54 (AtLocation cow countryside) (STV 1.0 0.9608)) +(: cnet_atlocation_03af71bd88 (AtLocation cow county_fair) (STV 1.0 0.9091)) +(: cnet_atlocation_4d90f98799 (AtLocation cow dairy_farm) (STV 1.0 0.9091)) +(: cnet_atlocation_8b792f6dbd (AtLocation cow farmyard) (STV 1.0 0.9091)) +(: cnet_atlocation_4dbaf19d14 (AtLocation cow hamburger) (STV 1.0 0.9339)) +(: cnet_atlocation_a99159a5a2 (AtLocation cow milking_barn) (STV 1.0 0.9091)) +(: cnet_atlocation_b0ea2afb84 (AtLocation cow milking_stall) (STV 1.0 0.9091)) +(: cnet_atlocation_19595b8380 (AtLocation cow paddock) (STV 1.0 0.9091)) +(: cnet_atlocation_4992a9b86e (AtLocation cow ranch) (STV 1.0 0.9091)) +(: cnet_atlocation_c27eb97415 (AtLocation cow slaughter_house) (STV 1.0 0.9339)) +(: cnet_atlocation_a556c0a3cb (AtLocation cow stable) (STV 1.0 0.9454)) +(: cnet_atlocation_3729133c67 (AtLocation coworker office) (STV 1.0 0.9339)) +(: cnet_atlocation_efad8bb860 (AtLocation cpu computer) (STV 1.0 0.9091)) +(: cnet_atlocation_289926dc56 (AtLocation cpu motherboard) (STV 1.0 0.9091)) +(: cnet_atlocation_ffeed95192 (AtLocation crab bay) (STV 1.0 0.9572)) +(: cnet_atlocation_96d6407f9f (AtLocation crab beach_sand) (STV 1.0 0.9091)) +(: cnet_atlocation_507521eac3 (AtLocation crab bottom_of_ocean) (STV 1.0 0.9091)) +(: cnet_atlocation_66c85f87d0 (AtLocation crab bottom_of_sea) (STV 1.0 0.9339)) +(: cnet_atlocation_30082e529b (AtLocation crab chesapeak_bay) (STV 1.0 0.9339)) +(: cnet_atlocation_3bf63368cb (AtLocation crab chesapeake_bay) (STV 1.0 0.9091)) +(: cnet_atlocation_d44931fade (AtLocation crab chinese_buffet) (STV 1.0 0.9091)) +(: cnet_atlocation_886e3b9385 (AtLocation crab cooking_pot) (STV 1.0 0.9091)) +(: cnet_atlocation_2d13354fc8 (AtLocation crab crab_bisque) (STV 1.0 0.9091)) +(: cnet_atlocation_5ce36393d4 (AtLocation crab crab_cake) (STV 1.0 0.9091)) +(: cnet_atlocation_1a5c15d0a0 (AtLocation crab crab_pot) (STV 1.0 0.9091)) +(: cnet_atlocation_2b9fface35 (AtLocation crab crab_salad) (STV 1.0 0.9524)) +(: cnet_atlocation_9df1489d1a (AtLocation crab fish_market) (STV 1.0 0.9091)) +(: cnet_atlocation_a5e7214c86 (AtLocation crab freezer) (STV 1.0 0.9091)) +(: cnet_atlocation_0fe48cc8ad (AtLocation crab maine) (STV 1.0 0.9091)) +(: cnet_atlocation_43099850e2 (AtLocation crab office) (STV 1.0 0.9091)) +(: cnet_atlocation_e3469ba052 (AtLocation crab rock) (STV 1.0 0.9091)) +(: cnet_atlocation_6bf1ceae7e (AtLocation crab salad) (STV 1.0 0.9339)) +(: cnet_atlocation_f754ec7cdf (AtLocation crab salt_water) (STV 1.0 0.9091)) +(: cnet_atlocation_adc81bcc70 (AtLocation crab sand) (STV 1.0 0.9707)) +(: cnet_atlocation_97f179b09d (AtLocation crab sand_at_beach) (STV 1.0 0.9339)) +(: cnet_atlocation_c44295eb40 (AtLocation crab tank) (STV 1.0 0.9091)) +(: cnet_atlocation_298fb9c196 (AtLocation crab tide_pool) (STV 1.0 0.9091)) +(: cnet_atlocation_c27d9125d6 (AtLocation crab tidepool) (STV 1.0 0.9091)) +(: cnet_atlocation_f35a01d8b1 (AtLocation crap_table casino) (STV 1.0 0.9091)) +(: cnet_atlocation_337f04e603 (AtLocation crater moon) (STV 1.0 0.9572)) +(: cnet_atlocation_d5001956c0 (AtLocation crater suface_of_moon) (STV 1.0 0.9339)) +(: cnet_atlocation_afa971b03d (AtLocation creature black_lagoon) (STV 1.0 0.9091)) +(: cnet_atlocation_4d712d10d0 (AtLocation creature forest) (STV 1.0 0.9524)) +(: cnet_atlocation_56882f369b (AtLocation creature zoo) (STV 1.0 0.9339)) +(: cnet_atlocation_9dadd89fc3 (AtLocation credit_card purse) (STV 1.0 0.9339)) +(: cnet_atlocation_b20b9b9c11 (AtLocation credit_card_wallet purse) (STV 1.0 0.9454)) +(: cnet_atlocation_14149c5fbe (AtLocation creek forest) (STV 1.0 0.9719)) +(: cnet_atlocation_4f0c8709a1 (AtLocation creek valley) (STV 1.0 0.9339)) +(: cnet_atlocation_900c23b323 (AtLocation criminal jail) (STV 1.0 0.9454)) +(: cnet_atlocation_ff212ca3ab (AtLocation criminal prison) (STV 1.0 0.9091)) +(: cnet_atlocation_5d6a6dd97a (AtLocation crop field) (STV 1.0 0.9091)) +(: cnet_atlocation_47e917acaf (AtLocation crossroad countryside) (STV 1.0 0.9091)) +(: cnet_atlocation_d36097b616 (AtLocation crossroad journey) (STV 1.0 0.9091)) +(: cnet_atlocation_c4d6cfa66e (AtLocation crosswalk city_street) (STV 1.0 0.9339)) +(: cnet_atlocation_bd000d4eec (AtLocation crosswalk corner_of_two_street) (STV 1.0 0.9091)) +(: cnet_atlocation_a7fa068b63 (AtLocation crosswalk street) (STV 1.0 0.9524)) +(: cnet_atlocation_08564409e5 (AtLocation crosswalk street_corner) (STV 1.0 0.9339)) +(: cnet_atlocation_ae852ee0ba (AtLocation crowded_train india) (STV 1.0 0.9091)) +(: cnet_atlocation_b1a4fd4568 (AtLocation cruise_ship sea) (STV 1.0 0.9091)) +(: cnet_atlocation_b3414e3e1c (AtLocation crumb breadbox) (STV 1.0 0.9091)) +(: cnet_atlocation_eba211ba3f (AtLocation crumb floor) (STV 1.0 0.9091)) +(: cnet_atlocation_2c356962e4 (AtLocation crumb table) (STV 1.0 0.9091)) +(: cnet_atlocation_60784ebdc2 (AtLocation crumpled_up_paper trash) (STV 1.0 0.9091)) +(: cnet_atlocation_a7bb5fd550 (AtLocation crustacean ocean) (STV 1.0 0.9091)) +(: cnet_atlocation_1a191dfa48 (AtLocation cubicle bank) (STV 1.0 0.9339)) +(: cnet_atlocation_e114021c0d (AtLocation cubicle office) (STV 1.0 0.9608)) +(: cnet_atlocation_25fb3bcac9 (AtLocation cubicle office_building) (STV 1.0 0.9572)) +(: cnet_atlocation_449ba96185 (AtLocation cubicle building) (STV 1.0 0.9339)) +(: cnet_atlocation_885a2ac31a (AtLocation cup closet) (STV 1.0 0.9091)) +(: cnet_atlocation_b276e12491 (AtLocation cup dishwasher) (STV 1.0 0.9339)) +(: cnet_atlocation_51b89fa305 (AtLocation cup kitchen) (STV 1.0 0.9091)) +(: cnet_atlocation_bb07c20d31 (AtLocation cup shelf) (STV 1.0 0.9339)) +(: cnet_atlocation_3e2685b470 (AtLocation cup table) (STV 1.0 0.9524)) +(: cnet_atlocation_cbc816d76c (AtLocation cup_of_coffee coffee_shop) (STV 1.0 0.9091)) +(: cnet_atlocation_eb1eeb6757 (AtLocation cup_of_coffee desk) (STV 1.0 0.9091)) +(: cnet_atlocation_4ef40fd6c9 (AtLocation cup_of_coffee kitchen) (STV 1.0 0.9454)) +(: cnet_atlocation_4dbd27cc06 (AtLocation cup_of_coffee office) (STV 1.0 0.9091)) +(: cnet_atlocation_fd8d45322f (AtLocation cup_of_coffee table) (STV 1.0 0.9454)) +(: cnet_atlocation_e6ca69e2d2 (AtLocation cup_of_sugar neighbor_s_house) (STV 1.0 0.9091)) +(: cnet_atlocation_45be3d7128 (AtLocation cup_and_plate cupboard) (STV 1.0 0.9091)) +(: cnet_atlocation_cdad1cc460 (AtLocation curator museum) (STV 1.0 0.9339)) +(: cnet_atlocation_0af49f106d (AtLocation curling_iron bathroom) (STV 1.0 0.9091)) +(: cnet_atlocation_ec23edf836 (AtLocation current_event newspaper) (STV 1.0 0.9091)) +(: cnet_atlocation_b9d74fc1e7 (AtLocation curtain theater) (STV 1.0 0.9339)) +(: cnet_atlocation_a76667996d (AtLocation curtain theatre) (STV 1.0 0.9091)) +(: cnet_atlocation_f23d8a40b4 (AtLocation curtain window) (STV 1.0 0.9454)) +(: cnet_atlocation_ef220721e8 (AtLocation curtain opera) (STV 1.0 0.9091)) +(: cnet_atlocation_e7ef73f3f7 (AtLocation cushion sofa) (STV 1.0 0.9091)) +(: cnet_atlocation_dfe21ae0ad (AtLocation custodian school) (STV 1.0 0.9339)) +(: cnet_atlocation_5e353dab25 (AtLocation customer bar) (STV 1.0 0.9091)) +(: cnet_atlocation_b7fb088b48 (AtLocation customer market) (STV 1.0 0.9091)) +(: cnet_atlocation_b65263d0ce (AtLocation custom_officer airport) (STV 1.0 0.9091)) +(: cnet_atlocation_d705263908 (AtLocation cutlery table) (STV 1.0 0.9339)) +(: cnet_atlocation_5c0905ab19 (AtLocation cutlery_drawer restaurant) (STV 1.0 0.9091)) +(: cnet_atlocation_8982fb5d41 (AtLocation daisy field) (STV 1.0 0.9091)) +(: cnet_atlocation_fbaf8a1c32 (AtLocation dance_club city) (STV 1.0 0.9636)) +(: cnet_atlocation_df6dc17416 (AtLocation dancing friend_s_wedding) (STV 1.0 0.9091)) +(: cnet_atlocation_8f4cc7346c (AtLocation dandruff_shampoo bathroom) (STV 1.0 0.9339)) +(: cnet_atlocation_b3adc10d24 (AtLocation dandruff_shampoo pharmacy) (STV 1.0 0.9524)) +(: cnet_atlocation_fbbd1e0590 (AtLocation dandruff_shampoo shower) (STV 1.0 0.9454)) +(: cnet_atlocation_b1e7184126 (AtLocation dandruff_shampoo supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_2425a314f5 (AtLocation dark_glass store) (STV 1.0 0.9091)) +(: cnet_atlocation_d5fd6a0456 (AtLocation dark_matter universe) (STV 1.0 0.9091)) +(: cnet_atlocation_dbdc0c3c50 (AtLocation darkness movy) (STV 1.0 0.9091)) +(: cnet_atlocation_041a6e50f9 (AtLocation data internet) (STV 1.0 0.9091)) +(: cnet_atlocation_3d08d53e46 (AtLocation data storage_media) (STV 1.0 0.9091)) +(: cnet_atlocation_d0f0f81d17 (AtLocation date drive_in_movie) (STV 1.0 0.9091)) +(: cnet_atlocation_86e0b8cbb5 (AtLocation date newspaper) (STV 1.0 0.9091)) +(: cnet_atlocation_89a43c5e1c (AtLocation date_stamp desk) (STV 1.0 0.9091)) +(: cnet_atlocation_0bd94f82cd (AtLocation dead_body war) (STV 1.0 0.9091)) +(: cnet_atlocation_42973145a8 (AtLocation dead_bug windowsill) (STV 1.0 0.9091)) +(: cnet_atlocation_f66873306c (AtLocation dead_fish beach) (STV 1.0 0.9091)) +(: cnet_atlocation_39c7a35966 (AtLocation dead_fly windowsill) (STV 1.0 0.9091)) +(: cnet_atlocation_615cd7724e (AtLocation dead_leaf tree) (STV 1.0 0.9091)) +(: cnet_atlocation_d9b5876e26 (AtLocation dead_leave forest) (STV 1.0 0.9339)) +(: cnet_atlocation_be6db65825 (AtLocation dead_people war) (STV 1.0 0.9608)) +(: cnet_atlocation_1099822e7f (AtLocation dead_person funeral) (STV 1.0 0.9091)) +(: cnet_atlocation_ea97f2f3e4 (AtLocation dead_soldier war) (STV 1.0 0.9091)) +(: cnet_atlocation_74718f9cee (AtLocation deadbeat_dad jail) (STV 1.0 0.9091)) +(: cnet_atlocation_b202ac02c5 (AtLocation death war) (STV 1.0 0.9659)) +(: cnet_atlocation_0c79e4d32b (AtLocation debris orbit) (STV 1.0 0.9091)) +(: cnet_atlocation_274911a4f0 (AtLocation decanter brewery) (STV 1.0 0.9091)) +(: cnet_atlocation_80a42abdd2 (AtLocation decision fork_in_road) (STV 1.0 0.9091)) +(: cnet_atlocation_0937b9d409 (AtLocation deck boat) (STV 1.0 0.9454)) +(: cnet_atlocation_4988828929 (AtLocation delegate conference) (STV 1.0 0.9091)) +(: cnet_atlocation_1c30171231 (AtLocation deli new_york_city) (STV 1.0 0.9339)) +(: cnet_atlocation_b35ab82b6b (AtLocation deli town) (STV 1.0 0.9091)) +(: cnet_atlocation_8a096ae89c (AtLocation deli_restaurant new_york_city) (STV 1.0 0.9091)) +(: cnet_atlocation_b6576aa8c8 (AtLocation deli_store mall) (STV 1.0 0.9091)) +(: cnet_atlocation_0f8c7528ce (AtLocation delicatessen large_city) (STV 1.0 0.9091)) +(: cnet_atlocation_282e2b0624 (AtLocation delicatessen_counter supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_cd45b41b02 (AtLocation demonstration class) (STV 1.0 0.9091)) +(: cnet_atlocation_ff7a9393e5 (AtLocation denim jean_factory) (STV 1.0 0.9091)) +(: cnet_atlocation_29a07f46ea (AtLocation denim pair_of_jean) (STV 1.0 0.9091)) +(: cnet_atlocation_28014bdd97 (AtLocation dental_assistant dentist) (STV 1.0 0.9091)) +(: cnet_atlocation_182c78d281 (AtLocation dental_chair dentist_office) (STV 1.0 0.9608)) +(: cnet_atlocation_aa22cc9472 (AtLocation dental_drill dentist) (STV 1.0 0.9091)) +(: cnet_atlocation_b84b486bf6 (AtLocation dental_floss bathroom) (STV 1.0 0.9636)) +(: cnet_atlocation_13fd2afe24 (AtLocation dental_floss medicine_cabinet) (STV 1.0 0.9091)) +(: cnet_atlocation_a79928dbb9 (AtLocation dentist dentist) (STV 1.0 0.9091)) +(: cnet_atlocation_547517a58d (AtLocation dentist office) (STV 1.0 0.9091)) +(: cnet_atlocation_ad986b1442 (AtLocation dentist_chair dentist_office) (STV 1.0 0.9454)) +(: cnet_atlocation_f9abc13c52 (AtLocation dentist_office office_building) (STV 1.0 0.9091)) +(: cnet_atlocation_dc19415724 (AtLocation dentist_office town) (STV 1.0 0.9339)) +(: cnet_atlocation_b276175139 (AtLocation denture mouth) (STV 1.0 0.9339)) +(: cnet_atlocation_3cdfe1c3b1 (AtLocation deodorant medicine_chest) (STV 1.0 0.9091)) +(: cnet_atlocation_5da419eaf0 (AtLocation department_store city) (STV 1.0 0.9091)) +(: cnet_atlocation_4abf506b02 (AtLocation department_store mall) (STV 1.0 0.9091)) +(: cnet_atlocation_c2afee6b3a (AtLocation depressed_person pschiatric_hospital) (STV 1.0 0.9091)) +(: cnet_atlocation_9870b923b9 (AtLocation desk library) (STV 1.0 0.9091)) +(: cnet_atlocation_af74647c61 (AtLocation desk_clerk motel) (STV 1.0 0.9091)) +(: cnet_atlocation_906dacab75 (AtLocation desk_drawer desk) (STV 1.0 0.9091)) +(: cnet_atlocation_d1cf50d543 (AtLocation desk_drawer office) (STV 1.0 0.9091)) +(: cnet_atlocation_7d7c8b91a3 (AtLocation desk_lamp desktop) (STV 1.0 0.9091)) +(: cnet_atlocation_5d27809e96 (AtLocation desk_pad desk) (STV 1.0 0.9091)) +(: cnet_atlocation_be532d58c2 (AtLocation desk building) (STV 1.0 0.9091)) +(: cnet_atlocation_5a23526d21 (AtLocation destruction war_zone) (STV 1.0 0.9091)) +(: cnet_atlocation_e702d4d822 (AtLocation detergent store) (STV 1.0 0.9091)) +(: cnet_atlocation_2662ef9068 (AtLocation detergent supermarket) (STV 1.0 0.9339)) +(: cnet_atlocation_afcb0ea311 (AtLocation detritus forest) (STV 1.0 0.9091)) +(: cnet_atlocation_36b74419c1 (AtLocation devil hell) (STV 1.0 0.9091)) +(: cnet_atlocation_1b959de4a4 (AtLocation deviled_egg plate) (STV 1.0 0.9091)) +(: cnet_atlocation_554e5f898d (AtLocation dew_in_early_morning lawn) (STV 1.0 0.9091)) +(: cnet_atlocation_401ebc0671 (AtLocation diamond drill_bit) (STV 1.0 0.9091)) +(: cnet_atlocation_123ec41b4e (AtLocation diamond jewelry_store) (STV 1.0 0.9091)) +(: cnet_atlocation_9816c121a1 (AtLocation diamond ring) (STV 1.0 0.9091)) +(: cnet_atlocation_5822353379 (AtLocation dick_tracy newspaper) (STV 1.0 0.9091)) +(: cnet_atlocation_c6baacebdd (AtLocation dictionary library) (STV 1.0 0.9339)) +(: cnet_atlocation_6c809ad1f5 (AtLocation dime_store strip_mall) (STV 1.0 0.9091)) +(: cnet_atlocation_26956b6c5a (AtLocation diner town) (STV 1.0 0.9524)) +(: cnet_atlocation_01eb1a5405 (AtLocation dining_area cruise_ship) (STV 1.0 0.9091)) +(: cnet_atlocation_986972482e (AtLocation dining_area resturant) (STV 1.0 0.9339)) +(: cnet_atlocation_be4ce804e7 (AtLocation dining_room home) (STV 1.0 0.9091)) +(: cnet_atlocation_4f01295fe1 (AtLocation dining_room mansion) (STV 1.0 0.9091)) +(: cnet_atlocation_7728713a47 (AtLocation dining_room restaurant) (STV 1.0 0.9339)) +(: cnet_atlocation_279fa9a24e (AtLocation dining_room_table dining_room) (STV 1.0 0.9524)) +(: cnet_atlocation_48683bfc32 (AtLocation dining_room_table furniture_store) (STV 1.0 0.9091)) +(: cnet_atlocation_4a3e921620 (AtLocation dinner table) (STV 1.0 0.9091)) +(: cnet_atlocation_b9c1693c61 (AtLocation dinner_cooking_in_oven kitchen) (STV 1.0 0.9091)) +(: cnet_atlocation_956cd231b6 (AtLocation dinner_plate dinner) (STV 1.0 0.9091)) +(: cnet_atlocation_e115e74657 (AtLocation dinner_plate cabinet) (STV 1.0 0.9091)) +(: cnet_atlocation_471c0ba151 (AtLocation diploma frame) (STV 1.0 0.9091)) +(: cnet_atlocation_375b30ab5a (AtLocation dirt bed) (STV 1.0 0.9339)) +(: cnet_atlocation_1a88909d74 (AtLocation dirt carpet) (STV 1.0 0.9091)) +(: cnet_atlocation_78f99a5ace (AtLocation dirt fingernail) (STV 1.0 0.9339)) +(: cnet_atlocation_df8e692f3b (AtLocation dirt ground) (STV 1.0 0.9572)) +(: cnet_atlocation_1a0636e25a (AtLocation dirt rug) (STV 1.0 0.9091)) +(: cnet_atlocation_faeb7a905d (AtLocation dirt street) (STV 1.0 0.9339)) +(: cnet_atlocation_d3ebe42735 (AtLocation dirt subway) (STV 1.0 0.9091)) +(: cnet_atlocation_d4a543c732 (AtLocation dirt surface_of_earth) (STV 1.0 0.9339)) +(: cnet_atlocation_0b727a5a50 (AtLocation dirty_sock bed) (STV 1.0 0.9339)) +(: cnet_atlocation_46817463a5 (AtLocation discarded_shopping_list supermarket) (STV 1.0 0.9339)) +(: cnet_atlocation_9c3848c51b (AtLocation disco town) (STV 1.0 0.9091)) +(: cnet_atlocation_32b273daf4 (AtLocation discussion meeting) (STV 1.0 0.9339)) +(: cnet_atlocation_3a642328d2 (AtLocation disease hospital) (STV 1.0 0.9339)) +(: cnet_atlocation_345d791c1f (AtLocation disease human_body) (STV 1.0 0.9091)) +(: cnet_atlocation_adf306d481 (AtLocation disease third_world_country) (STV 1.0 0.9091)) +(: cnet_atlocation_3b3c8771d0 (AtLocation disgruntled_employee office) (STV 1.0 0.9091)) +(: cnet_atlocation_a62404e2dc (AtLocation dish cabinet) (STV 1.0 0.9608)) +(: cnet_atlocation_5069f509f4 (AtLocation dish kitchen) (STV 1.0 0.9454)) +(: cnet_atlocation_3ded74482c (AtLocation dish table) (STV 1.0 0.9524)) +(: cnet_atlocation_edbe2ebf91 (AtLocation dishe pantry) (STV 1.0 0.9091)) +(: cnet_atlocation_26a1dc7f11 (AtLocation dishe shelf) (STV 1.0 0.9091)) +(: cnet_atlocation_17ec76faa1 (AtLocation dishwasher kitchen) (STV 1.0 0.9091)) +(: cnet_atlocation_b58819b8f1 (AtLocation disinfectant hospital) (STV 1.0 0.9091)) +(: cnet_atlocation_70d9d4e72a (AtLocation disk cd_player) (STV 1.0 0.9339)) +(: cnet_atlocation_7e65f74a9e (AtLocation disk computer) (STV 1.0 0.9524)) +(: cnet_atlocation_d76575152c (AtLocation display_ads_for_automobile newspaper) (STV 1.0 0.9091)) +(: cnet_atlocation_e04d0a5e63 (AtLocation display_cabinet living_room) (STV 1.0 0.9091)) +(: cnet_atlocation_b366423459 (AtLocation disposable_razor bathroom) (STV 1.0 0.9524)) +(: cnet_atlocation_66984c8aab (AtLocation disposable_razor medicine_cabinet) (STV 1.0 0.9091)) +(: cnet_atlocation_7b170033fd (AtLocation disposable_razor supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_092c7c20e4 (AtLocation dissolved_mineral water) (STV 1.0 0.9091)) +(: cnet_atlocation_8caa6a1373 (AtLocation diva opera) (STV 1.0 0.9091)) +(: cnet_atlocation_3cd76ba8d2 (AtLocation diver water) (STV 1.0 0.9091)) +(: cnet_atlocation_011a02bf88 (AtLocation divider notebook) (STV 1.0 0.9091)) +(: cnet_atlocation_e3790c4e7d (AtLocation diving_board swimming_pool) (STV 1.0 0.9091)) +(: cnet_atlocation_d0e014efae (AtLocation dna cell) (STV 1.0 0.9339)) +(: cnet_atlocation_bff67ca8ed (AtLocation doctor doctor_s_office) (STV 1.0 0.9091)) +(: cnet_atlocation_6458022fd0 (AtLocation doctor_examination_room hospital) (STV 1.0 0.9524)) +(: cnet_atlocation_c1bcda97d0 (AtLocation document_folder computer_desktop) (STV 1.0 0.9091)) +(: cnet_atlocation_53281bfbad (AtLocation document_folder file_cabinet) (STV 1.0 0.9339)) +(: cnet_atlocation_0a5ffbd832 (AtLocation document_folder filing_cabinet) (STV 1.0 0.9091)) +(: cnet_atlocation_1e9cad96fa (AtLocation dog backyard) (STV 1.0 0.9454)) +(: cnet_atlocation_7c0ae43ea1 (AtLocation dog bed) (STV 1.0 0.9091)) +(: cnet_atlocation_025610f20b (AtLocation dog couch) (STV 1.0 0.9091)) +(: cnet_atlocation_1b051badf5 (AtLocation dog dog_house) (STV 1.0 0.9524)) +(: cnet_atlocation_4996a559d0 (AtLocation dog doghouse) (STV 1.0 0.9572)) +(: cnet_atlocation_be10aee1a8 (AtLocation dog dogpound) (STV 1.0 0.9091)) +(: cnet_atlocation_b815c636e4 (AtLocation dog house) (STV 1.0 0.9339)) +(: cnet_atlocation_005fa130d2 (AtLocation dog kennel) (STV 1.0 0.9791)) +(: cnet_atlocation_cb696f82ad (AtLocation dog leash) (STV 1.0 0.9091)) +(: cnet_atlocation_fed7ed2f79 (AtLocation dog park) (STV 1.0 0.9608)) +(: cnet_atlocation_17ee707637 (AtLocation dog porch) (STV 1.0 0.9454)) +(: cnet_atlocation_76a6cb1832 (AtLocation dog rug) (STV 1.0 0.9339)) +(: cnet_atlocation_76b777038e (AtLocation dog table) (STV 1.0 0.9659)) +(: cnet_atlocation_42299ffaf3 (AtLocation dog_poop ground) (STV 1.0 0.9091)) +(: cnet_atlocation_3d1d58b71b (AtLocation dog_poop lawn) (STV 1.0 0.9091)) +(: cnet_atlocation_08cb27b457 (AtLocation dog_shit shoe) (STV 1.0 0.9091)) +(: cnet_atlocation_a35556f087 (AtLocation doll child_s_arm) (STV 1.0 0.9091)) +(: cnet_atlocation_fae0dcc48e (AtLocation doll dollshouse) (STV 1.0 0.9091)) +(: cnet_atlocation_8a9093a83c (AtLocation dollar bank) (STV 1.0 0.9339)) +(: cnet_atlocation_f3341f2dbe (AtLocation dollar pocket) (STV 1.0 0.9524)) +(: cnet_atlocation_6c513f19dc (AtLocation dollar_bill pocket) (STV 1.0 0.9091)) +(: cnet_atlocation_15e4af22ac (AtLocation dollar_bill purse) (STV 1.0 0.9091)) +(: cnet_atlocation_69d1e8fef4 (AtLocation dollar_bill wallet) (STV 1.0 0.9454)) +(: cnet_atlocation_502149fbc3 (AtLocation dollar purse) (STV 1.0 0.9091)) +(: cnet_atlocation_6174cb6010 (AtLocation dolphin ocean) (STV 1.0 0.9454)) +(: cnet_atlocation_331bdc8eee (AtLocation dolphin water) (STV 1.0 0.9454)) +(: cnet_atlocation_e83d81ed48 (AtLocation door apartment) (STV 1.0 0.9339)) +(: cnet_atlocation_b3ee2ea3ff (AtLocation door building) (STV 1.0 0.9719)) +(: cnet_atlocation_40ecbac177 (AtLocation door neighbor_s_house) (STV 1.0 0.9091)) +(: cnet_atlocation_1ff64552d3 (AtLocation door office) (STV 1.0 0.9091)) +(: cnet_atlocation_8823eab0a0 (AtLocation door room) (STV 1.0 0.9091)) +(: cnet_atlocation_baf293f182 (AtLocation door theater) (STV 1.0 0.9339)) +(: cnet_atlocation_9453094f57 (AtLocation door wall) (STV 1.0 0.9524)) +(: cnet_atlocation_5201e4cd1e (AtLocation door_knob front_door) (STV 1.0 0.9091)) +(: cnet_atlocation_01f58a2157 (AtLocation door_with_lock garage) (STV 1.0 0.9091)) +(: cnet_atlocation_ac35fe0e5d (AtLocation door_with_lock house) (STV 1.0 0.9339)) +(: cnet_atlocation_09fcfce4b2 (AtLocation doorbell front_door) (STV 1.0 0.9608)) +(: cnet_atlocation_b642c08903 (AtLocation doorknob front_door) (STV 1.0 0.9091)) +(: cnet_atlocation_aa21015285 (AtLocation doormat front_door) (STV 1.0 0.9091)) +(: cnet_atlocation_d0d056dac5 (AtLocation doormat front_of_door) (STV 1.0 0.9454)) +(: cnet_atlocation_6d692188dc (AtLocation doormat hallway) (STV 1.0 0.9091)) +(: cnet_atlocation_b0791f48fa (AtLocation doorway building) (STV 1.0 0.9091)) +(: cnet_atlocation_eeaffc547d (AtLocation doorway room) (STV 1.0 0.9091)) +(: cnet_atlocation_4ad90da1e2 (AtLocation dot end_of_line) (STV 1.0 0.9091)) +(: cnet_atlocation_06a7e68981 (AtLocation double_bass orchestra) (STV 1.0 0.9091)) +(: cnet_atlocation_7ddd3aa97a (AtLocation double_edged_razor bathroom) (STV 1.0 0.9339)) +(: cnet_atlocation_158b3e231e (AtLocation double_knit clothing_store) (STV 1.0 0.9091)) +(: cnet_atlocation_950eadeab9 (AtLocation drain swimming_pool) (STV 1.0 0.9339)) +(: cnet_atlocation_15b79a396a (AtLocation drawer dresser) (STV 1.0 0.9091)) +(: cnet_atlocation_aa59cf44aa (AtLocation drawer office_desk) (STV 1.0 0.9091)) +(: cnet_atlocation_b6e9552509 (AtLocation drawer desk) (STV 1.0 0.9659)) +(: cnet_atlocation_3b9fa09937 (AtLocation drawer refrigerator) (STV 1.0 0.9091)) +(: cnet_atlocation_a93a0bf445 (AtLocation drawing_room house) (STV 1.0 0.9091)) +(: cnet_atlocation_f0f7fd5825 (AtLocation drawstring_bag store) (STV 1.0 0.9091)) +(: cnet_atlocation_f92cb07872 (AtLocation dresser bedroom) (STV 1.0 0.9748)) +(: cnet_atlocation_95d799f992 (AtLocation dresser home) (STV 1.0 0.9091)) +(: cnet_atlocation_6dd9f15658 (AtLocation dresser house) (STV 1.0 0.9339)) +(: cnet_atlocation_dcb26b8477 (AtLocation dressing refrigerator) (STV 1.0 0.9091)) +(: cnet_atlocation_461b66a697 (AtLocation dressing_room clothing_store) (STV 1.0 0.9091)) +(: cnet_atlocation_4dbe6e79eb (AtLocation dressing_room department_store) (STV 1.0 0.9091)) +(: cnet_atlocation_4f5ae7d3fe (AtLocation dried_up_food table) (STV 1.0 0.9091)) +(: cnet_atlocation_d7c1ef98b1 (AtLocation driftwood beach) (STV 1.0 0.9608)) +(: cnet_atlocation_1fdce1f33a (AtLocation driftwood sea) (STV 1.0 0.9339)) +(: cnet_atlocation_d65c9d7c5e (AtLocation drill dentist_office) (STV 1.0 0.9091)) +(: cnet_atlocation_dd6e564f7b (AtLocation drill garage) (STV 1.0 0.9091)) +(: cnet_atlocation_9f9be0f11c (AtLocation drink cabinet) (STV 1.0 0.9091)) +(: cnet_atlocation_fd21d18250 (AtLocation drink can) (STV 1.0 0.9339)) +(: cnet_atlocation_cedeeaaada (AtLocation drink cup) (STV 1.0 0.9091)) +(: cnet_atlocation_ca1ef81d9a (AtLocation drinking_fountain rest_area) (STV 1.0 0.9091)) +(: cnet_atlocation_81d79cf6b8 (AtLocation drink dinner) (STV 1.0 0.9454)) +(: cnet_atlocation_fa10a07561 (AtLocation driver_s_license wallet) (STV 1.0 0.9091)) +(: cnet_atlocation_ffbaec8688 (AtLocation driveway front_of_house) (STV 1.0 0.9339)) +(: cnet_atlocation_bc4bd85730 (AtLocation driveway neighborhood) (STV 1.0 0.9524)) +(: cnet_atlocation_f463cbbb8e (AtLocation driveway suburb) (STV 1.0 0.9091)) +(: cnet_atlocation_86f6ad4902 (AtLocation driveway yard) (STV 1.0 0.9339)) +(: cnet_atlocation_257a56b740 (AtLocation drug drugstore) (STV 1.0 0.9091)) +(: cnet_atlocation_65a4409ae1 (AtLocation drug iv) (STV 1.0 0.9091)) +(: cnet_atlocation_d71b00bc48 (AtLocation drug_dealer jail) (STV 1.0 0.9091)) +(: cnet_atlocation_48909ef0de (AtLocation drug_dealer school) (STV 1.0 0.9091)) +(: cnet_atlocation_af239fe8c1 (AtLocation drug concert) (STV 1.0 0.9091)) +(: cnet_atlocation_56eea471cd (AtLocation drug school) (STV 1.0 0.9091)) +(: cnet_atlocation_3fb7d82967 (AtLocation drum orchestra) (STV 1.0 0.9091)) +(: cnet_atlocation_59c03df47c (AtLocation drunk bar) (STV 1.0 0.9572)) +(: cnet_atlocation_bab4ddaf1d (AtLocation drunk gutter) (STV 1.0 0.9091)) +(: cnet_atlocation_986c1f29f7 (AtLocation drunk jail) (STV 1.0 0.9091)) +(: cnet_atlocation_ffc345ef59 (AtLocation drunk_fan sporting_event) (STV 1.0 0.9091)) +(: cnet_atlocation_01b8b253e8 (AtLocation drunk_people bar) (STV 1.0 0.9339)) +(: cnet_atlocation_eb6e8a96f5 (AtLocation drunkard bar) (STV 1.0 0.9339)) +(: cnet_atlocation_d6ee9be14f (AtLocation dry_good pantry) (STV 1.0 0.9091)) +(: cnet_atlocation_4ac0898a98 (AtLocation dry_storage pantry) (STV 1.0 0.9091)) +(: cnet_atlocation_a1d3cdd556 (AtLocation dry_storage warehouse) (STV 1.0 0.9339)) +(: cnet_atlocation_2a639c0ea7 (AtLocation dryer basement) (STV 1.0 0.9454)) +(: cnet_atlocation_a380e68d88 (AtLocation duck lake) (STV 1.0 0.9572)) +(: cnet_atlocation_f33a25c754 (AtLocation duck_in pond) (STV 1.0 0.9454)) +(: cnet_atlocation_47f62abcd4 (AtLocation duck pond) (STV 1.0 0.9636)) +(: cnet_atlocation_5089ae5114 (AtLocation duffel_bag locker_room) (STV 1.0 0.9454)) +(: cnet_atlocation_4b802048f8 (AtLocation dunce corner) (STV 1.0 0.9339)) +(: cnet_atlocation_fbf94812f0 (AtLocation dust air) (STV 1.0 0.9091)) +(: cnet_atlocation_8d895e8681 (AtLocation dust attic) (STV 1.0 0.9091)) +(: cnet_atlocation_45cd0d6b92 (AtLocation dust bed) (STV 1.0 0.9677)) +(: cnet_atlocation_9aaf5ae6ce (AtLocation dust carpet) (STV 1.0 0.9454)) +(: cnet_atlocation_8aeaf65050 (AtLocation dust closet) (STV 1.0 0.9608)) +(: cnet_atlocation_717e0cd789 (AtLocation dust corner) (STV 1.0 0.9524)) +(: cnet_atlocation_672cc7cb17 (AtLocation dust desk) (STV 1.0 0.9524)) +(: cnet_atlocation_cd31fe71ac (AtLocation dust desktop) (STV 1.0 0.9091)) +(: cnet_atlocation_9e75f0a860 (AtLocation dust fridge) (STV 1.0 0.9454)) +(: cnet_atlocation_635356554a (AtLocation dust ground) (STV 1.0 0.9091)) +(: cnet_atlocation_01a83d07c6 (AtLocation dust library) (STV 1.0 0.9454)) +(: cnet_atlocation_1f902a24a0 (AtLocation dust loft) (STV 1.0 0.9091)) +(: cnet_atlocation_72d967ebbc (AtLocation dust moon) (STV 1.0 0.9454)) +(: cnet_atlocation_cd0af3bc26 (AtLocation dust shelf) (STV 1.0 0.9454)) +(: cnet_atlocation_6bb55e8ff9 (AtLocation dust suface_of_moon) (STV 1.0 0.9091)) +(: cnet_atlocation_f1354bf638 (AtLocation dust table) (STV 1.0 0.9454)) +(: cnet_atlocation_f1e26b4170 (AtLocation dust windowsill) (STV 1.0 0.9091)) +(: cnet_atlocation_1b2c267c8d (AtLocation dust_bunny bed) (STV 1.0 0.9454)) +(: cnet_atlocation_f9ba785a9e (AtLocation dust_bunny closet) (STV 1.0 0.9339)) +(: cnet_atlocation_0430b972df (AtLocation dust_bunny desk) (STV 1.0 0.9091)) +(: cnet_atlocation_537075c2d7 (AtLocation dust_mite bed) (STV 1.0 0.9339)) +(: cnet_atlocation_8389b388d3 (AtLocation dustbin kitchen) (STV 1.0 0.9339)) +(: cnet_atlocation_171a013101 (AtLocation dustbin utility_closet) (STV 1.0 0.9091)) +(: cnet_atlocation_097c7708da (AtLocation duvet bedroom) (STV 1.0 0.9091)) +(: cnet_atlocation_741ef0fcf9 (AtLocation ear head) (STV 1.0 0.9572)) +(: cnet_atlocation_9116c3d07c (AtLocation ear person_s_head) (STV 1.0 0.9339)) +(: cnet_atlocation_fd15edf0bd (AtLocation earth orbit) (STV 1.0 0.9608)) +(: cnet_atlocation_bae7fb6ee6 (AtLocation earth solar_system) (STV 1.0 0.9636)) +(: cnet_atlocation_2d5615d23a (AtLocation earth tree) (STV 1.0 0.9339)) +(: cnet_atlocation_3db07ed936 (AtLocation earth_worm good_garden_soil) (STV 1.0 0.9091)) +(: cnet_atlocation_a83ac1349c (AtLocation eatery town) (STV 1.0 0.9339)) +(: cnet_atlocation_2f796416d1 (AtLocation eating_place city) (STV 1.0 0.9339)) +(: cnet_atlocation_5ad14b9a38 (AtLocation eating_place restaurant) (STV 1.0 0.9091)) +(: cnet_atlocation_d8ffbfb51e (AtLocation editorial newspaper) (STV 1.0 0.9572)) +(: cnet_atlocation_4a71a39c34 (AtLocation education university) (STV 1.0 0.9091)) +(: cnet_atlocation_8bae804b3f (AtLocation eel water) (STV 1.0 0.9339)) +(: cnet_atlocation_ca6eeb54bb (AtLocation egg bird_s_nest) (STV 1.0 0.9091)) +(: cnet_atlocation_8df82c1df0 (AtLocation egg chicken) (STV 1.0 0.9339)) +(: cnet_atlocation_bcbebcc86b (AtLocation egg chicken_coop) (STV 1.0 0.9339)) +(: cnet_atlocation_e6edb96afd (AtLocation egg grocery_store) (STV 1.0 0.9524)) +(: cnet_atlocation_445d71a21d (AtLocation egg henhouse) (STV 1.0 0.9091)) +(: cnet_atlocation_f800bd56db (AtLocation egg nest) (STV 1.0 0.9524)) +(: cnet_atlocation_cbc18b64cb (AtLocation egg supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_089a588d14 (AtLocation egg fridge) (STV 1.0 0.9524)) +(: cnet_atlocation_5504870288 (AtLocation egg refridgerator) (STV 1.0 0.9091)) +(: cnet_atlocation_5efc4c71f7 (AtLocation eiffel_tower paris) (STV 1.0 0.9701)) +(: cnet_atlocation_7123633d15 (AtLocation electric_bill mail) (STV 1.0 0.9091)) +(: cnet_atlocation_ca525c64bf (AtLocation electric_blanket bedroom) (STV 1.0 0.9091)) +(: cnet_atlocation_edf70cf1d7 (AtLocation electric_blanket closet) (STV 1.0 0.9339)) +(: cnet_atlocation_30b73956e2 (AtLocation electric_fan hot_room) (STV 1.0 0.9339)) +(: cnet_atlocation_1177e17260 (AtLocation electric_pencil_sharpener class_room) (STV 1.0 0.9454)) +(: cnet_atlocation_e227dbed41 (AtLocation electric_razor bathroom) (STV 1.0 0.9339)) +(: cnet_atlocation_2df6152e36 (AtLocation electric_socket wall) (STV 1.0 0.9608)) +(: cnet_atlocation_c83d634693 (AtLocation electric_toothbrush store) (STV 1.0 0.9091)) +(: cnet_atlocation_2e1c37728c (AtLocation electrical_appliance basement) (STV 1.0 0.9091)) +(: cnet_atlocation_30cbfcc691 (AtLocation electrical_wiring building) (STV 1.0 0.9339)) +(: cnet_atlocation_02c956b627 (AtLocation electricity building) (STV 1.0 0.9091)) +(: cnet_atlocation_ea9f2e1076 (AtLocation electronic_appliance den) (STV 1.0 0.9091)) +(: cnet_atlocation_fe95c6b1a1 (AtLocation electronic_store shopping_mall) (STV 1.0 0.9091)) +(: cnet_atlocation_d1e9763739 (AtLocation electronic_store strip_mall) (STV 1.0 0.9091)) +(: cnet_atlocation_7fbd882f4c (AtLocation electron atom) (STV 1.0 0.9339)) +(: cnet_atlocation_b021341daa (AtLocation elephant africa) (STV 1.0 0.9454)) +(: cnet_atlocation_469b60117e (AtLocation elephant circus) (STV 1.0 0.9608)) +(: cnet_atlocation_ffaea3b25a (AtLocation elephant zoo) (STV 1.0 0.9339)) +(: cnet_atlocation_bf35fc96e4 (AtLocation elevator at_hotel) (STV 1.0 0.9339)) +(: cnet_atlocation_6ad8e151aa (AtLocation elevator building) (STV 1.0 0.9454)) +(: cnet_atlocation_2a484d672a (AtLocation elevator hotel) (STV 1.0 0.9339)) +(: cnet_atlocation_142de8ad7b (AtLocation elevator elevator_shaft) (STV 1.0 0.9091)) +(: cnet_atlocation_eeb947ee24 (AtLocation emergency_care hospital) (STV 1.0 0.9091)) +(: cnet_atlocation_1c378acf6a (AtLocation emergency_room hospital) (STV 1.0 0.9091)) +(: cnet_atlocation_d8caf1ada8 (AtLocation emergency_ward hospital) (STV 1.0 0.9091)) +(: cnet_atlocation_f3049017ee (AtLocation empire_state_building new_york_city) (STV 1.0 0.9454)) +(: cnet_atlocation_5a690b3871 (AtLocation employee company) (STV 1.0 0.9454)) +(: cnet_atlocation_5cb0ce2729 (AtLocation employee office) (STV 1.0 0.9091)) +(: cnet_atlocation_ebdac2f705 (AtLocation empty_can waste_bin) (STV 1.0 0.9091)) +(: cnet_atlocation_1451eb109b (AtLocation empty_space bed) (STV 1.0 0.9091)) +(: cnet_atlocation_4b33b323fc (AtLocation end end_of_line) (STV 1.0 0.9091)) +(: cnet_atlocation_ad7343a8b3 (AtLocation enemy war) (STV 1.0 0.9091)) +(: cnet_atlocation_bcf18a8057 (AtLocation engine plane) (STV 1.0 0.9339)) +(: cnet_atlocation_0b0cf0e808 (AtLocation english_channel england) (STV 1.0 0.9339)) +(: cnet_atlocation_f4838cc134 (AtLocation english_channel northern_hemisphere) (STV 1.0 0.9339)) +(: cnet_atlocation_f6d3964c0c (AtLocation entertainer show) (STV 1.0 0.9454)) +(: cnet_atlocation_520a99338d (AtLocation entertainment show) (STV 1.0 0.9091)) +(: cnet_atlocation_c43c74d804 (AtLocation entertainment_and_food carnival) (STV 1.0 0.9091)) +(: cnet_atlocation_ef9e38f86c (AtLocation entranceway building) (STV 1.0 0.9091)) +(: cnet_atlocation_5215a4f0ef (AtLocation entree dinner) (STV 1.0 0.9339)) +(: cnet_atlocation_bda5899962 (AtLocation entree plate) (STV 1.0 0.9091)) +(: cnet_atlocation_f8131d0ca0 (AtLocation entryway office_building) (STV 1.0 0.9339)) +(: cnet_atlocation_ff4a4da273 (AtLocation envelope drawer) (STV 1.0 0.9339)) +(: cnet_atlocation_40288d30f8 (AtLocation equality_for_everyone america) (STV 1.0 0.9091)) +(: cnet_atlocation_65e2a53056 (AtLocation eraser desk) (STV 1.0 0.9572)) +(: cnet_atlocation_0269a591f7 (AtLocation eraser pencil) (STV 1.0 0.9091)) +(: cnet_atlocation_5ada505b03 (AtLocation eraser pencil_box) (STV 1.0 0.9091)) +(: cnet_atlocation_933729b11b (AtLocation eraser school) (STV 1.0 0.9454)) +(: cnet_atlocation_6bf5dbee6b (AtLocation eraser_holder office) (STV 1.0 0.9339)) +(: cnet_atlocation_2f6a630992 (AtLocation escalator department_store) (STV 1.0 0.9339)) +(: cnet_atlocation_04971abe6d (AtLocation escalator mall) (STV 1.0 0.9524)) +(: cnet_atlocation_3b86ed33a2 (AtLocation escalator store) (STV 1.0 0.9091)) +(: cnet_atlocation_87c9f39572 (AtLocation everything universe) (STV 1.0 0.9339)) +(: cnet_atlocation_7b440090e4 (AtLocation evidence_of_meteor_hit surface_of_earth) (STV 1.0 0.9091)) +(: cnet_atlocation_2d850bb33b (AtLocation exam_table classroom) (STV 1.0 0.9091)) +(: cnet_atlocation_e7830488c6 (AtLocation exam_table doctor_s_office) (STV 1.0 0.9091)) +(: cnet_atlocation_d03ef019f9 (AtLocation examination_table doctor_s_office) (STV 1.0 0.9454)) +(: cnet_atlocation_1706198b3b (AtLocation examination_table doctor) (STV 1.0 0.9608)) +(: cnet_atlocation_c742ff1ff3 (AtLocation exit_turnstile subway) (STV 1.0 0.9339)) +(: cnet_atlocation_6e2d30d3a6 (AtLocation exotic_animal zoo) (STV 1.0 0.9339)) +(: cnet_atlocation_3666ad3718 (AtLocation experiment laboratory) (STV 1.0 0.9091)) +(: cnet_atlocation_8d0f3e63ba (AtLocation expert field) (STV 1.0 0.9091)) +(: cnet_atlocation_67480d8d86 (AtLocation explosive bomb) (STV 1.0 0.9454)) +(: cnet_atlocation_aea9da6d58 (AtLocation explosive construction_site) (STV 1.0 0.9091)) +(: cnet_atlocation_39fb411d00 (AtLocation expressway city) (STV 1.0 0.9608)) +(: cnet_atlocation_dc5ff0ab34 (AtLocation expressway large_city) (STV 1.0 0.9339)) +(: cnet_atlocation_58cc7e3f51 (AtLocation eye eye_socket) (STV 1.0 0.9091)) +(: cnet_atlocation_2e41c770b8 (AtLocation eye face) (STV 1.0 0.9091)) +(: cnet_atlocation_296cc6c9b1 (AtLocation eyeglass case) (STV 1.0 0.9339)) +(: cnet_atlocation_2f59f42898 (AtLocation eyeglass_case drawer) (STV 1.0 0.9091)) +(: cnet_atlocation_d9ac2da9ca (AtLocation eyeglass_case pocket) (STV 1.0 0.9091)) +(: cnet_atlocation_45a8b946dc (AtLocation eyeglass_case shirt_pocket) (STV 1.0 0.9091)) +(: cnet_atlocation_6b252d682b (AtLocation fabric clothe_store) (STV 1.0 0.9091)) +(: cnet_atlocation_6209f36ac0 (AtLocation fabric fabric_store) (STV 1.0 0.9454)) +(: cnet_atlocation_6037cdf173 (AtLocation factory city) (STV 1.0 0.9339)) +(: cnet_atlocation_e1c2877461 (AtLocation factory industrial_area) (STV 1.0 0.9091)) +(: cnet_atlocation_371c5e1268 (AtLocation faith church) (STV 1.0 0.9339)) +(: cnet_atlocation_3323fd43d4 (AtLocation fallen_leave forest) (STV 1.0 0.9091)) +(: cnet_atlocation_9659c225ef (AtLocation fallen_leave tree) (STV 1.0 0.9091)) +(: cnet_atlocation_c78cb4f261 (AtLocation family park) (STV 1.0 0.9524)) +(: cnet_atlocation_833064a8cf (AtLocation family supermarket) (STV 1.0 0.9339)) +(: cnet_atlocation_7168b4ee00 (AtLocation family house) (STV 1.0 0.9693)) +(: cnet_atlocation_a308056a44 (AtLocation family relative_house) (STV 1.0 0.9091)) +(: cnet_atlocation_a19e63f978 (AtLocation family_picture friend_s_house) (STV 1.0 0.9091)) +(: cnet_atlocation_4e0a71984d (AtLocation fan football_stadium) (STV 1.0 0.9339)) +(: cnet_atlocation_5dd02b0bfb (AtLocation fan hockey_game) (STV 1.0 0.9091)) +(: cnet_atlocation_bc2ce4dd4f (AtLocation fan room) (STV 1.0 0.9091)) +(: cnet_atlocation_30214edf85 (AtLocation fan stadium) (STV 1.0 0.9524)) +(: cnet_atlocation_707b27f26c (AtLocation fancy_wall_calendar bookstore) (STV 1.0 0.9091)) +(: cnet_atlocation_3dc8d88e0a (AtLocation fan soccer_game) (STV 1.0 0.9091)) +(: cnet_atlocation_c3dcaf3be2 (AtLocation fan sporting_event) (STV 1.0 0.9339)) +(: cnet_atlocation_d66d1d39f4 (AtLocation farm countryside) (STV 1.0 0.9091)) +(: cnet_atlocation_c6083ff7f0 (AtLocation farm_animal fair) (STV 1.0 0.9091)) +(: cnet_atlocation_4ddf086276 (AtLocation farm_animal countryside) (STV 1.0 0.9091)) +(: cnet_atlocation_d479d4e568 (AtLocation farmer fairground) (STV 1.0 0.9091)) +(: cnet_atlocation_d20d73e47c (AtLocation farmhouse farm) (STV 1.0 0.9091)) +(: cnet_atlocation_1d58993ef0 (AtLocation farmhouse farming_community) (STV 1.0 0.9091)) +(: cnet_atlocation_250fe9a6f9 (AtLocation farmhouse rural_area) (STV 1.0 0.9339)) +(: cnet_atlocation_16b73fafb0 (AtLocation farmland country) (STV 1.0 0.9339)) +(: cnet_atlocation_7dbc975f85 (AtLocation farmland countryside) (STV 1.0 0.9091)) +(: cnet_atlocation_03d39fe2d5 (AtLocation farmland midwest) (STV 1.0 0.9091)) +(: cnet_atlocation_dd7866725a (AtLocation farm country) (STV 1.0 0.9091)) +(: cnet_atlocation_d25223abf2 (AtLocation fast_food bowling_alley) (STV 1.0 0.9091)) +(: cnet_atlocation_83ab4c0176 (AtLocation fast_food fast_food_restaurant) (STV 1.0 0.9091)) +(: cnet_atlocation_93af992a04 (AtLocation fast_food_chain beijing) (STV 1.0 0.9091)) +(: cnet_atlocation_2ee24fcaa9 (AtLocation fast_food_chain city) (STV 1.0 0.9524)) +(: cnet_atlocation_ed7d1ae288 (AtLocation fast_food_restaurant big_city) (STV 1.0 0.9091)) +(: cnet_atlocation_8d6a06deb9 (AtLocation fast_food_restaurant_counter fast_food_restaurant) (STV 1.0 0.9339)) +(: cnet_atlocation_e05230d4a2 (AtLocation fastener_binder hardware_store) (STV 1.0 0.9091)) +(: cnet_atlocation_367aa7f7cd (AtLocation fat_lady opera) (STV 1.0 0.9572)) +(: cnet_atlocation_e645ebbcea (AtLocation fat_singing_lady opera) (STV 1.0 0.9339)) +(: cnet_atlocation_2f091a09b0 (AtLocation father_s_pistol friend_s_house) (STV 1.0 0.9091)) +(: cnet_atlocation_751f27c71e (AtLocation faucet bathroom) (STV 1.0 0.9524)) +(: cnet_atlocation_a24e2b3b18 (AtLocation faucet restroom) (STV 1.0 0.9091)) +(: cnet_atlocation_797802328c (AtLocation faucet sink) (STV 1.0 0.9454)) +(: cnet_atlocation_bedfd89e72 (AtLocation faucet_overflow bathroom) (STV 1.0 0.9524)) +(: cnet_atlocation_589a8cb5dd (AtLocation fax_machine office) (STV 1.0 0.9339)) +(: cnet_atlocation_db9a447db6 (AtLocation feather bird) (STV 1.0 0.9636)) +(: cnet_atlocation_09bbd84235 (AtLocation feather cap) (STV 1.0 0.9339)) +(: cnet_atlocation_d55db35eed (AtLocation feather pillow) (STV 1.0 0.9091)) +(: cnet_atlocation_dc123ec9ae (AtLocation feet desk) (STV 1.0 0.9636)) +(: cnet_atlocation_158ac5b40b (AtLocation feet floor) (STV 1.0 0.9091)) +(: cnet_atlocation_a12566eb16 (AtLocation feet shoe) (STV 1.0 0.9339)) +(: cnet_atlocation_daceb41bcf (AtLocation feet table) (STV 1.0 0.9339)) +(: cnet_atlocation_26176d7819 (AtLocation ferret field) (STV 1.0 0.9339)) +(: cnet_atlocation_08a35c643a (AtLocation ferret great_britain) (STV 1.0 0.9091)) +(: cnet_atlocation_b633191891 (AtLocation ferret home) (STV 1.0 0.9572)) +(: cnet_atlocation_2c7272f845 (AtLocation ferret hutch) (STV 1.0 0.9339)) +(: cnet_atlocation_ca5155174f (AtLocation ferret outdoor) (STV 1.0 0.9091)) +(: cnet_atlocation_4fdcf20f3a (AtLocation ferret own_home) (STV 1.0 0.9339)) +(: cnet_atlocation_1561a53fb4 (AtLocation ferret pet_store) (STV 1.0 0.9608)) +(: cnet_atlocation_fcaa397f9d (AtLocation ferret petstore) (STV 1.0 0.9524)) +(: cnet_atlocation_28eb716d6f (AtLocation ferret trouser) (STV 1.0 0.9454)) +(: cnet_atlocation_12d557da18 (AtLocation ferret woody_landscape) (STV 1.0 0.9091)) +(: cnet_atlocation_bfda0b8bca (AtLocation ferris_wheel carnival) (STV 1.0 0.9454)) +(: cnet_atlocation_7e3543482d (AtLocation ferris_wheel fairground) (STV 1.0 0.9572)) +(: cnet_atlocation_e5568c3641 (AtLocation ferry body_of_water) (STV 1.0 0.9091)) +(: cnet_atlocation_f43425495e (AtLocation fiction_and_non_fiction_book library) (STV 1.0 0.9091)) +(: cnet_atlocation_9028117b3a (AtLocation ficus arboretum) (STV 1.0 0.9524)) +(: cnet_atlocation_1cecaaa17d (AtLocation ficus book) (STV 1.0 0.9091)) +(: cnet_atlocation_eb9db08c13 (AtLocation ficus dirt) (STV 1.0 0.9339)) +(: cnet_atlocation_2df7707b51 (AtLocation ficus field) (STV 1.0 0.9091)) +(: cnet_atlocation_783994aa48 (AtLocation ficus flower_pot) (STV 1.0 0.9091)) +(: cnet_atlocation_3ce3dd80c1 (AtLocation ficus forest) (STV 1.0 0.9608)) +(: cnet_atlocation_20d95722c7 (AtLocation ficus garden_nursery) (STV 1.0 0.9091)) +(: cnet_atlocation_98083ba982 (AtLocation ficus garden_store) (STV 1.0 0.9339)) +(: cnet_atlocation_bfcc98c7ea (AtLocation ficus gardening_section) (STV 1.0 0.9339)) +(: cnet_atlocation_438df791b1 (AtLocation ficus green_house) (STV 1.0 0.9091)) +(: cnet_atlocation_b8d9290ca9 (AtLocation ficus ground) (STV 1.0 0.9091)) +(: cnet_atlocation_adfa21cfcf (AtLocation ficus large_pot) (STV 1.0 0.9091)) +(: cnet_atlocation_c4c9b119c3 (AtLocation ficus lobby) (STV 1.0 0.9091)) +(: cnet_atlocation_8f0b20f481 (AtLocation ficus mall) (STV 1.0 0.9339)) +(: cnet_atlocation_821cb8d4b2 (AtLocation ficus nursery) (STV 1.0 0.9091)) +(: cnet_atlocation_f33f28950d (AtLocation ficus office) (STV 1.0 0.9454)) +(: cnet_atlocation_c691f077b5 (AtLocation ficus park) (STV 1.0 0.9339)) +(: cnet_atlocation_65c9a85ac5 (AtLocation ficus plant_store) (STV 1.0 0.9091)) +(: cnet_atlocation_1e0a1dfc1d (AtLocation ficus planter) (STV 1.0 0.9091)) +(: cnet_atlocation_546163ef5a (AtLocation ficus pot) (STV 1.0 0.9454)) +(: cnet_atlocation_02d8788044 (AtLocation ficus rainforest) (STV 1.0 0.9091)) +(: cnet_atlocation_5177d3978e (AtLocation ficus tropical_forest) (STV 1.0 0.9091)) +(: cnet_atlocation_fc92edc837 (AtLocation ficus yard) (STV 1.0 0.9572)) +(: cnet_atlocation_65eeb15303 (AtLocation fiddle music_store) (STV 1.0 0.9091)) +(: cnet_atlocation_6d772c9a7f (AtLocation fiddler roof) (STV 1.0 0.9524)) +(: cnet_atlocation_7f102a131e (AtLocation field country) (STV 1.0 0.9454)) +(: cnet_atlocation_b578c5e801 (AtLocation field countryside) (STV 1.0 0.9339)) +(: cnet_atlocation_95ae97b0fd (AtLocation field meadow) (STV 1.0 0.9339)) +(: cnet_atlocation_5470ed3490 (AtLocation fight hockey_game) (STV 1.0 0.9091)) +(: cnet_atlocation_664b3ae857 (AtLocation file computer) (STV 1.0 0.9339)) +(: cnet_atlocation_860c40479a (AtLocation file drawer) (STV 1.0 0.9339)) +(: cnet_atlocation_1011739891 (AtLocation file filing_cabinet) (STV 1.0 0.9339)) +(: cnet_atlocation_097c8f2575 (AtLocation file office) (STV 1.0 0.9091)) +(: cnet_atlocation_75bd31b04f (AtLocation file_folder cabinet) (STV 1.0 0.9091)) +(: cnet_atlocation_2ed7821fff (AtLocation file desk) (STV 1.0 0.9339)) +(: cnet_atlocation_cb9d43d9e4 (AtLocation filing_cabinet office) (STV 1.0 0.9339)) +(: cnet_atlocation_59835340b7 (AtLocation filling mouth) (STV 1.0 0.9339)) +(: cnet_atlocation_baac190124 (AtLocation film movie) (STV 1.0 0.9091)) +(: cnet_atlocation_538110be64 (AtLocation finger glove) (STV 1.0 0.9091)) +(: cnet_atlocation_9555194410 (AtLocation finger hand) (STV 1.0 0.9659)) +(: cnet_atlocation_c79fad7f48 (AtLocation fingernail finger) (STV 1.0 0.9524)) +(: cnet_atlocation_286554daf3 (AtLocation fingerprint finger) (STV 1.0 0.9524)) +(: cnet_atlocation_443133a0a1 (AtLocation fingerprint fridge) (STV 1.0 0.9091)) +(: cnet_atlocation_d144d0b435 (AtLocation fire fireplace) (STV 1.0 0.9608)) +(: cnet_atlocation_f40f4a0ab6 (AtLocation fire forest) (STV 1.0 0.9091)) +(: cnet_atlocation_00e41e4674 (AtLocation fire_extinguisher building) (STV 1.0 0.9339)) +(: cnet_atlocation_7082672dbc (AtLocation fire_extinguisher house) (STV 1.0 0.9339)) +(: cnet_atlocation_3c82fadc58 (AtLocation fireplace cabin) (STV 1.0 0.9091)) +(: cnet_atlocation_ede611285c (AtLocation fireplace home) (STV 1.0 0.9091)) +(: cnet_atlocation_a7f04d856a (AtLocation fireplace living_room) (STV 1.0 0.9454)) +(: cnet_atlocation_5da8d66e2f (AtLocation first_aid_kit backpack) (STV 1.0 0.9454)) +(: cnet_atlocation_9594b52254 (AtLocation first_class_airline_seat 747) (STV 1.0 0.9091)) +(: cnet_atlocation_d4f4a0e694 (AtLocation first_class_airline_seat airplane) (STV 1.0 0.9091)) +(: cnet_atlocation_7ee5942193 (AtLocation first_class_airline_seat jet) (STV 1.0 0.9091)) +(: cnet_atlocation_75fe31ed75 (AtLocation first_violin orchestra) (STV 1.0 0.9091)) +(: cnet_atlocation_9b8d735ecb (AtLocation fish aquarium) (STV 1.0 0.9659)) +(: cnet_atlocation_44d328820a (AtLocation fish boat) (STV 1.0 0.9339)) +(: cnet_atlocation_8777b8f072 (AtLocation fish bottom_of_sea) (STV 1.0 0.9091)) +(: cnet_atlocation_10e5aed888 (AtLocation fish end_of_line) (STV 1.0 0.9091)) +(: cnet_atlocation_8f3c3ede5c (AtLocation fish lake) (STV 1.0 0.9572)) +(: cnet_atlocation_9cbf62cd58 (AtLocation fish market) (STV 1.0 0.9091)) +(: cnet_atlocation_ca7df8d2b0 (AtLocation fish ocean) (STV 1.0 0.9707)) +(: cnet_atlocation_6b5a72580a (AtLocation fish pond) (STV 1.0 0.9524)) +(: cnet_atlocation_d2d2a19d78 (AtLocation fish river) (STV 1.0 0.9572)) +(: cnet_atlocation_1185e383ca (AtLocation fish stream) (STV 1.0 0.9091)) +(: cnet_atlocation_7113db0648 (AtLocation fish tank) (STV 1.0 0.9091)) +(: cnet_atlocation_dfaf3f825d (AtLocation fish water) (STV 1.0 0.9829)) +(: cnet_atlocation_f9d5636152 (AtLocation fish_tank neighbor_s_house) (STV 1.0 0.9091)) +(: cnet_atlocation_812611e92c (AtLocation fisherman boat) (STV 1.0 0.9339)) +(: cnet_atlocation_8e5f5e83fe (AtLocation fitting_room department_store) (STV 1.0 0.9091)) +(: cnet_atlocation_36d61db37e (AtLocation five_and_dime strip_mall) (STV 1.0 0.9091)) +(: cnet_atlocation_2e508d8995 (AtLocation five_and_ten_store very_small_town) (STV 1.0 0.9091)) +(: cnet_atlocation_bd7ec2cb15 (AtLocation flag country) (STV 1.0 0.9091)) +(: cnet_atlocation_dc659aa05b (AtLocation flare_gun boat) (STV 1.0 0.9339)) +(: cnet_atlocation_94880a50ad (AtLocation flashing_light casino) (STV 1.0 0.9091)) +(: cnet_atlocation_905be0e25c (AtLocation flashlight backpack) (STV 1.0 0.9091)) +(: cnet_atlocation_90fcdf5b85 (AtLocation flask chemistry_lab) (STV 1.0 0.9454)) +(: cnet_atlocation_3cb2389491 (AtLocation flask pocket) (STV 1.0 0.9091)) +(: cnet_atlocation_720486f177 (AtLocation flat city) (STV 1.0 0.9339)) +(: cnet_atlocation_eabfc7674a (AtLocation flat london) (STV 1.0 0.9091)) +(: cnet_atlocation_c85460078b (AtLocation flea cat) (STV 1.0 0.9524)) +(: cnet_atlocation_690a971ca3 (AtLocation flea dog) (STV 1.0 0.9454)) +(: cnet_atlocation_abaebc13ff (AtLocation flea rug) (STV 1.0 0.9339)) +(: cnet_atlocation_d00a649af5 (AtLocation flight_attendant plane) (STV 1.0 0.9524)) +(: cnet_atlocation_acce797726 (AtLocation flight_bag aeroplane) (STV 1.0 0.9091)) +(: cnet_atlocation_0035508cc4 (AtLocation flight_bag airport) (STV 1.0 0.9454)) +(: cnet_atlocation_dfb223dfba (AtLocation floor bed) (STV 1.0 0.9693)) +(: cnet_atlocation_1e34dbc759 (AtLocation floor carpet) (STV 1.0 0.9659)) +(: cnet_atlocation_0e99886f8e (AtLocation floor closet) (STV 1.0 0.9524)) +(: cnet_atlocation_3d08c480f1 (AtLocation floor desk) (STV 1.0 0.9608)) +(: cnet_atlocation_a6d94909f9 (AtLocation floor house) (STV 1.0 0.9339)) +(: cnet_atlocation_c0d81eb1c7 (AtLocation floor room) (STV 1.0 0.9091)) +(: cnet_atlocation_2a99b9a19f (AtLocation floor table) (STV 1.0 0.9719)) +(: cnet_atlocation_1ced80f781 (AtLocation floorboard closet) (STV 1.0 0.9091)) +(: cnet_atlocation_a500c9f1d9 (AtLocation flooring house) (STV 1.0 0.9091)) +(: cnet_atlocation_5193984c2b (AtLocation flotation_gear boat) (STV 1.0 0.9091)) +(: cnet_atlocation_09908363d5 (AtLocation flour cupboard) (STV 1.0 0.9091)) +(: cnet_atlocation_74c8271207 (AtLocation flour pantry) (STV 1.0 0.9339)) +(: cnet_atlocation_e39fdf99b1 (AtLocation flouride water) (STV 1.0 0.9091)) +(: cnet_atlocation_130ff60b57 (AtLocation flower flower_garden) (STV 1.0 0.9091)) +(: cnet_atlocation_092cb54a9e (AtLocation flower park) (STV 1.0 0.9339)) +(: cnet_atlocation_ab0e437ce1 (AtLocation flower vase) (STV 1.0 0.9454)) +(: cnet_atlocation_345a1d968d (AtLocation flower windowsill) (STV 1.0 0.9091)) +(: cnet_atlocation_876ee9f885 (AtLocation flower_girl wedding) (STV 1.0 0.9091)) +(: cnet_atlocation_cb0faa885a (AtLocation flower_pot porch) (STV 1.0 0.9091)) +(: cnet_atlocation_6ca5f0b9ab (AtLocation flowerpot windowsill) (STV 1.0 0.9091)) +(: cnet_atlocation_c8b12be149 (AtLocation flower countryside) (STV 1.0 0.9091)) +(: cnet_atlocation_63a7536710 (AtLocation flower friend_s_wedding) (STV 1.0 0.9339)) +(: cnet_atlocation_f4c58f7ed1 (AtLocation flower table) (STV 1.0 0.9091)) +(: cnet_atlocation_daabef5f77 (AtLocation flower wedding) (STV 1.0 0.9091)) +(: cnet_atlocation_63405d3594 (AtLocation fluid container) (STV 1.0 0.9091)) +(: cnet_atlocation_0d9c819aa6 (AtLocation fluoride_mouthwash most_drug_store) (STV 1.0 0.9091)) +(: cnet_atlocation_a3b82eb9e1 (AtLocation fluoride_toothpaste grocery_store) (STV 1.0 0.9339)) +(: cnet_atlocation_540167639b (AtLocation fluoride_toothpaste tube) (STV 1.0 0.9091)) +(: cnet_atlocation_27155d52ef (AtLocation flute musical_instrument_store) (STV 1.0 0.9091)) +(: cnet_atlocation_d2dea04e19 (AtLocation flute orchestra) (STV 1.0 0.9091)) +(: cnet_atlocation_da0a1144c5 (AtLocation fog valley) (STV 1.0 0.9091)) +(: cnet_atlocation_4da3ec2557 (AtLocation folded_clothe suitcase) (STV 1.0 0.9454)) +(: cnet_atlocation_08df0f4187 (AtLocation folder file_cabinet) (STV 1.0 0.9091)) +(: cnet_atlocation_14464ae0d7 (AtLocation folder filing_cabinet) (STV 1.0 0.9524)) +(: cnet_atlocation_af27f0fc8a (AtLocation folder shelf) (STV 1.0 0.9091)) +(: cnet_atlocation_58b7d6cc77 (AtLocation folding_shower_door bathroom) (STV 1.0 0.9339)) +(: cnet_atlocation_38e3b8aba5 (AtLocation folding_shower_door hardware_store) (STV 1.0 0.9339)) +(: cnet_atlocation_52e6c661c7 (AtLocation font church) (STV 1.0 0.9339)) +(: cnet_atlocation_e97b1126c4 (AtLocation food backpack) (STV 1.0 0.9091)) +(: cnet_atlocation_751b7adf15 (AtLocation food can) (STV 1.0 0.9091)) +(: cnet_atlocation_513383de2a (AtLocation food container) (STV 1.0 0.9091)) +(: cnet_atlocation_7e6022756c (AtLocation food cupboard) (STV 1.0 0.9608)) +(: cnet_atlocation_e5a4993c7d (AtLocation food fair) (STV 1.0 0.9091)) +(: cnet_atlocation_6a8a08d337 (AtLocation food fast_food_restaurant) (STV 1.0 0.9091)) +(: cnet_atlocation_04e4f0b21c (AtLocation food freezer) (STV 1.0 0.9091)) +(: cnet_atlocation_307483726e (AtLocation food fridge) (STV 1.0 0.9707)) +(: cnet_atlocation_22de194320 (AtLocation food home) (STV 1.0 0.9339)) +(: cnet_atlocation_68a5b941b7 (AtLocation food house) (STV 1.0 0.9091)) +(: cnet_atlocation_8e36b2792a (AtLocation food jar) (STV 1.0 0.9454)) +(: cnet_atlocation_670d58c3b5 (AtLocation food kitchen) (STV 1.0 0.9730)) +(: cnet_atlocation_00007a9283 (AtLocation food market) (STV 1.0 0.9091)) +(: cnet_atlocation_f66424a7eb (AtLocation food mouth) (STV 1.0 0.9091)) +(: cnet_atlocation_631e997c23 (AtLocation food oven) (STV 1.0 0.9707)) +(: cnet_atlocation_a1ceb0d96d (AtLocation food pantry) (STV 1.0 0.9524)) +(: cnet_atlocation_0e3706d374 (AtLocation food plate) (STV 1.0 0.9454)) +(: cnet_atlocation_702e9d19df (AtLocation food refrigerator) (STV 1.0 0.9763)) +(: cnet_atlocation_057f36ec89 (AtLocation food resturant) (STV 1.0 0.9572)) +(: cnet_atlocation_ed4b41ecc0 (AtLocation food school) (STV 1.0 0.9091)) +(: cnet_atlocation_b077ba6371 (AtLocation food shelf) (STV 1.0 0.9091)) +(: cnet_atlocation_a6ebdd4353 (AtLocation food shop) (STV 1.0 0.9339)) +(: cnet_atlocation_35106817e4 (AtLocation food stomach) (STV 1.0 0.9572)) +(: cnet_atlocation_96356b44d6 (AtLocation food store) (STV 1.0 0.9339)) +(: cnet_atlocation_9c5ffb268d (AtLocation food supermarket) (STV 1.0 0.9707)) +(: cnet_atlocation_06e700ba9e (AtLocation food table) (STV 1.0 0.9730)) +(: cnet_atlocation_c0d1032f77 (AtLocation food_baking oven) (STV 1.0 0.9091)) +(: cnet_atlocation_3e76f34de5 (AtLocation food_being_cooked oven) (STV 1.0 0.9091)) +(: cnet_atlocation_88ecbc45cd (AtLocation food_can cabinet) (STV 1.0 0.9339)) +(: cnet_atlocation_5091ec0adc (AtLocation food_can grocery_store) (STV 1.0 0.9339)) +(: cnet_atlocation_f71a57b61d (AtLocation food_can supermarket) (STV 1.0 0.9339)) +(: cnet_atlocation_0acb0949c6 (AtLocation food_court mall) (STV 1.0 0.9091)) +(: cnet_atlocation_750fb2884e (AtLocation food_store shopping_center) (STV 1.0 0.9091)) +(: cnet_atlocation_623178b5f2 (AtLocation foot desk) (STV 1.0 0.9091)) +(: cnet_atlocation_b567b63711 (AtLocation foot shoe) (STV 1.0 0.9454)) +(: cnet_atlocation_adc9536922 (AtLocation foot sock) (STV 1.0 0.9339)) +(: cnet_atlocation_53cdb275ee (AtLocation foot table) (STV 1.0 0.9091)) +(: cnet_atlocation_edc3eae560 (AtLocation foot_rest desk) (STV 1.0 0.9339)) +(: cnet_atlocation_9838f50e1b (AtLocation football_field high_school) (STV 1.0 0.9091)) +(: cnet_atlocation_a66f1d342b (AtLocation footprint moon) (STV 1.0 0.9454)) +(: cnet_atlocation_9c4d01522e (AtLocation footprint rug) (STV 1.0 0.9091)) +(: cnet_atlocation_cf6f99761f (AtLocation footprint suface_of_moon) (STV 1.0 0.9339)) +(: cnet_atlocation_c56d0ecfd1 (AtLocation forest countryside) (STV 1.0 0.9091)) +(: cnet_atlocation_33ab067c9d (AtLocation forest earth) (STV 1.0 0.9339)) +(: cnet_atlocation_122efd7541 (AtLocation forgiveness confession) (STV 1.0 0.9091)) +(: cnet_atlocation_779cb748a1 (AtLocation fork drawer) (STV 1.0 0.9524)) +(: cnet_atlocation_b8cc2b25f0 (AtLocation fork kitchen) (STV 1.0 0.9636)) +(: cnet_atlocation_c02ad1355b (AtLocation fork kitchen_drawer) (STV 1.0 0.9091)) +(: cnet_atlocation_cb9553e91d (AtLocation fork plane) (STV 1.0 0.9091)) +(: cnet_atlocation_0020a47811 (AtLocation fork plate) (STV 1.0 0.9339)) +(: cnet_atlocation_a89b75bde3 (AtLocation fork road) (STV 1.0 0.9339)) +(: cnet_atlocation_012b88735e (AtLocation fork table) (STV 1.0 0.9608)) +(: cnet_atlocation_427f585dce (AtLocation fork cutlery_drawer) (STV 1.0 0.9091)) +(: cnet_atlocation_7322e4670f (AtLocation form desk) (STV 1.0 0.9091)) +(: cnet_atlocation_6108562a6b (AtLocation fortune bank) (STV 1.0 0.9339)) +(: cnet_atlocation_8cbb50b0a3 (AtLocation fortune cookie) (STV 1.0 0.9454)) +(: cnet_atlocation_3e7b84aacd (AtLocation forzen_meat freezer) (STV 1.0 0.9091)) +(: cnet_atlocation_55c8ccc0db (AtLocation foundation closet) (STV 1.0 0.9091)) +(: cnet_atlocation_53152da763 (AtLocation fountain rome) (STV 1.0 0.9091)) +(: cnet_atlocation_b580742a26 (AtLocation fountain_pen desk) (STV 1.0 0.9524)) +(: cnet_atlocation_a852bb2d7d (AtLocation fountain_pen pocket) (STV 1.0 0.9339)) +(: cnet_atlocation_88152a1fee (AtLocation fox arctic) (STV 1.0 0.9091)) +(: cnet_atlocation_18165f8daf (AtLocation fox box) (STV 1.0 0.9339)) +(: cnet_atlocation_596fc25cbe (AtLocation fox burrow) (STV 1.0 0.9339)) +(: cnet_atlocation_9ffbb1abe1 (AtLocation fox cage) (STV 1.0 0.9091)) +(: cnet_atlocation_1885a7f724 (AtLocation fox england) (STV 1.0 0.9524)) +(: cnet_atlocation_7f73b460c8 (AtLocation fox english_hunt) (STV 1.0 0.9091)) +(: cnet_atlocation_c9437dee5e (AtLocation fox fox_hole) (STV 1.0 0.9339)) +(: cnet_atlocation_d84bd3f5ce (AtLocation fox fox_hunt) (STV 1.0 0.9339)) +(: cnet_atlocation_76e823af5d (AtLocation fox foxhunt) (STV 1.0 0.9454)) +(: cnet_atlocation_5ef94fe6d4 (AtLocation fox hen_house) (STV 1.0 0.9524)) +(: cnet_atlocation_db2ff54277 (AtLocation fox meadow) (STV 1.0 0.9339)) +(: cnet_atlocation_2d1040fbf5 (AtLocation fox mountain) (STV 1.0 0.9454)) +(: cnet_atlocation_4e5ec3c52d (AtLocation fox rural_area) (STV 1.0 0.9091)) +(: cnet_atlocation_08c81f68c2 (AtLocation fox stump_of_tree) (STV 1.0 0.9339)) +(: cnet_atlocation_38de7cbaa1 (AtLocation fox wild) (STV 1.0 0.9454)) +(: cnet_atlocation_15e4a4c03c (AtLocation fox wooded_area) (STV 1.0 0.9339)) +(: cnet_atlocation_bae557a62d (AtLocation fox_in fox_hunt) (STV 1.0 0.9339)) +(: cnet_atlocation_cfa6133dd5 (AtLocation foyer building) (STV 1.0 0.9091)) +(: cnet_atlocation_19dae377bf (AtLocation foyer home) (STV 1.0 0.9091)) +(: cnet_atlocation_42bb61a808 (AtLocation foyer mansion) (STV 1.0 0.9091)) +(: cnet_atlocation_2316cac3ee (AtLocation frat_boy fraternity_house) (STV 1.0 0.9091)) +(: cnet_atlocation_d9df2269d6 (AtLocation free_food gallery_opening) (STV 1.0 0.9091)) +(: cnet_atlocation_ee6fa5f097 (AtLocation freeway america) (STV 1.0 0.9572)) +(: cnet_atlocation_db5b866028 (AtLocation freezer garage) (STV 1.0 0.9339)) +(: cnet_atlocation_53b75fee5f (AtLocation french_fry fast_food_restaurant) (STV 1.0 0.9608)) +(: cnet_atlocation_8cec0fff6b (AtLocation french_horn music_store) (STV 1.0 0.9091)) +(: cnet_atlocation_b1590781b7 (AtLocation fresh_air countryside) (STV 1.0 0.9091)) +(: cnet_atlocation_42c4cab971 (AtLocation fresh_flower farmer_s_market) (STV 1.0 0.9091)) +(: cnet_atlocation_508deead8d (AtLocation fresh_fruit_and_vegetable grocery_store) (STV 1.0 0.9091)) +(: cnet_atlocation_d7b307be33 (AtLocation fresh_vegetable market) (STV 1.0 0.9339)) +(: cnet_atlocation_7b98cc85d8 (AtLocation fridge kitchen) (STV 1.0 0.9339)) +(: cnet_atlocation_b0de64e811 (AtLocation fried_dough carnival) (STV 1.0 0.9091)) +(: cnet_atlocation_cbd25438d0 (AtLocation friend at_school) (STV 1.0 0.9091)) +(: cnet_atlocation_66af8a204a (AtLocation friend friend_s_wedding) (STV 1.0 0.9339)) +(: cnet_atlocation_5fb70134be (AtLocation friend me) (STV 1.0 0.9091)) +(: cnet_atlocation_00c3028acb (AtLocation friend neighbor_s_house) (STV 1.0 0.9091)) +(: cnet_atlocation_8277cc64c6 (AtLocation friendly_grocer supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_1ff8205341 (AtLocation friend fraternity_house) (STV 1.0 0.9091)) +(: cnet_atlocation_3637cf6cee (AtLocation friend friend_s_house) (STV 1.0 0.9524)) +(: cnet_atlocation_532e17668d (AtLocation friend movie) (STV 1.0 0.9091)) +(: cnet_atlocation_56caadc515 (AtLocation friend school) (STV 1.0 0.9091)) +(: cnet_atlocation_d7a49e65e0 (AtLocation frisbee park) (STV 1.0 0.9454)) +(: cnet_atlocation_2e8851c37b (AtLocation frog lawn) (STV 1.0 0.9091)) +(: cnet_atlocation_f7ce3887b1 (AtLocation frog pond) (STV 1.0 0.9454)) +(: cnet_atlocation_c17fe67041 (AtLocation frog swamp) (STV 1.0 0.9091)) +(: cnet_atlocation_6a9d18b68f (AtLocation front_courtyard mansion) (STV 1.0 0.9091)) +(: cnet_atlocation_f65dc33b5f (AtLocation front_courtyard suburb) (STV 1.0 0.9339)) +(: cnet_atlocation_33c43298d6 (AtLocation front_desk at_hotel) (STV 1.0 0.9454)) +(: cnet_atlocation_1dfeebdd1d (AtLocation front_desk hotel) (STV 1.0 0.9454)) +(: cnet_atlocation_24065bfdf9 (AtLocation front_door house) (STV 1.0 0.9091)) +(: cnet_atlocation_1e9a8fa45a (AtLocation front_garden front_yard) (STV 1.0 0.9524)) +(: cnet_atlocation_ee7197aa37 (AtLocation front_room condo) (STV 1.0 0.9091)) +(: cnet_atlocation_ace1f66b72 (AtLocation front_room modern_house) (STV 1.0 0.9091)) +(: cnet_atlocation_ce98d2841b (AtLocation front_yard front_of_house) (STV 1.0 0.9608)) +(: cnet_atlocation_d9b9b5c4e2 (AtLocation front_yard neighborhood) (STV 1.0 0.9091)) +(: cnet_atlocation_3801d01b8b (AtLocation frozen_dinner freezer) (STV 1.0 0.9091)) +(: cnet_atlocation_a19c9bdf26 (AtLocation frozen_food freezer) (STV 1.0 0.9339)) +(: cnet_atlocation_dd3ad6b603 (AtLocation frozen_food fridge) (STV 1.0 0.9091)) +(: cnet_atlocation_34e59fe4a4 (AtLocation frozen_food grocery_store) (STV 1.0 0.9091)) +(: cnet_atlocation_b6fcb5ec3c (AtLocation frozen_food market) (STV 1.0 0.9091)) +(: cnet_atlocation_b66bba0a14 (AtLocation frozen_food supermarket) (STV 1.0 0.9339)) +(: cnet_atlocation_0828446c69 (AtLocation frozen_pea freezer) (STV 1.0 0.9091)) +(: cnet_atlocation_7473b0f8bb (AtLocation frozen_vegetable freezer) (STV 1.0 0.9091)) +(: cnet_atlocation_7b8ae95979 (AtLocation frozen_veggy supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_180fdea3c5 (AtLocation fruit market) (STV 1.0 0.9524)) +(: cnet_atlocation_d05565ad8e (AtLocation fruit refridgerator) (STV 1.0 0.9091)) +(: cnet_atlocation_03a2897d02 (AtLocation fruit tree) (STV 1.0 0.9524)) +(: cnet_atlocation_c4ab8548ce (AtLocation frying_pan kitchen_cabinet) (STV 1.0 0.9339)) +(: cnet_atlocation_cad3a54e05 (AtLocation fuel plane) (STV 1.0 0.9091)) +(: cnet_atlocation_2d616c7f73 (AtLocation fun watching_television) (STV 1.0 0.9339)) +(: cnet_atlocation_8dae8253c1 (AtLocation fungus basement) (STV 1.0 0.9339)) +(: cnet_atlocation_017298b5bd (AtLocation fungus bathroom) (STV 1.0 0.9339)) +(: cnet_atlocation_b8ed4318cf (AtLocation fungus bathroom_wall) (STV 1.0 0.9091)) +(: cnet_atlocation_b400109804 (AtLocation fungus biology_laboratory) (STV 1.0 0.9091)) +(: cnet_atlocation_3149d98989 (AtLocation fungus cave) (STV 1.0 0.9572)) +(: cnet_atlocation_cfe9246c36 (AtLocation fungus damp_area) (STV 1.0 0.9091)) +(: cnet_atlocation_4ffdeb7325 (AtLocation fungus damp_dark_area) (STV 1.0 0.9091)) +(: cnet_atlocation_7c47283b9b (AtLocation fungus damp_wood) (STV 1.0 0.9091)) +(: cnet_atlocation_a54f1c3c4e (AtLocation fungus dark_damp_area) (STV 1.0 0.9339)) +(: cnet_atlocation_ed045d3753 (AtLocation fungus dark_damp_place) (STV 1.0 0.9091)) +(: cnet_atlocation_61a59bcb51 (AtLocation fungus dark_moist_area) (STV 1.0 0.9091)) +(: cnet_atlocation_20e4b82e7a (AtLocation fungus dark_moist_place) (STV 1.0 0.9091)) +(: cnet_atlocation_08c41c5cb3 (AtLocation fungus dead_tree) (STV 1.0 0.9091)) +(: cnet_atlocation_15312025a4 (AtLocation fungus decaying_matter) (STV 1.0 0.9091)) +(: cnet_atlocation_0844a2ce5a (AtLocation fungus fallen_tree) (STV 1.0 0.9091)) +(: cnet_atlocation_dfb076af92 (AtLocation fungus fridge) (STV 1.0 0.9091)) +(: cnet_atlocation_24a852bde8 (AtLocation fungus garden) (STV 1.0 0.9091)) +(: cnet_atlocation_1ec3a54286 (AtLocation fungus grocery_store) (STV 1.0 0.9091)) +(: cnet_atlocation_1d24dbdf88 (AtLocation fungus ground) (STV 1.0 0.9339)) +(: cnet_atlocation_887cae15db (AtLocation fungus hollow_log) (STV 1.0 0.9091)) +(: cnet_atlocation_c16654868d (AtLocation fungus humid_place) (STV 1.0 0.9091)) +(: cnet_atlocation_1ed4ae98fe (AtLocation fungus laboratory) (STV 1.0 0.9454)) +(: cnet_atlocation_d16fb3d941 (AtLocation fungus locker_room) (STV 1.0 0.9339)) +(: cnet_atlocation_a00aa7b6d6 (AtLocation fungus moist_place) (STV 1.0 0.9339)) +(: cnet_atlocation_7cd7b8b4ae (AtLocation fungus mushroom_garden) (STV 1.0 0.9091)) +(: cnet_atlocation_dfa7ba3ac4 (AtLocation fungus mushroom_pizza) (STV 1.0 0.9339)) +(: cnet_atlocation_38cdb0c948 (AtLocation fungus old_cheese) (STV 1.0 0.9091)) +(: cnet_atlocation_ed2eba09d2 (AtLocation fungus old_food) (STV 1.0 0.9091)) +(: cnet_atlocation_ecdcdeeaa9 (AtLocation fungus petre_dish) (STV 1.0 0.9091)) +(: cnet_atlocation_1758d43d0e (AtLocation fungus place_wet) (STV 1.0 0.9091)) +(: cnet_atlocation_f8c741086d (AtLocation fungus refridgerator) (STV 1.0 0.9091)) +(: cnet_atlocation_030c3e98dd (AtLocation fungus refrigerator) (STV 1.0 0.9608)) +(: cnet_atlocation_940a9ea69b (AtLocation fungus rotten_log) (STV 1.0 0.9091)) +(: cnet_atlocation_d42bd64233 (AtLocation fungus rotting_vegetation) (STV 1.0 0.9091)) +(: cnet_atlocation_2675c8f2df (AtLocation fungus salad) (STV 1.0 0.9339)) +(: cnet_atlocation_20bf73095f (AtLocation fungus shower) (STV 1.0 0.9091)) +(: cnet_atlocation_6094e78779 (AtLocation fungus shower_stall) (STV 1.0 0.9524)) +(: cnet_atlocation_6664ac0401 (AtLocation fungus soup) (STV 1.0 0.9091)) +(: cnet_atlocation_f91b02cbee (AtLocation fungus toenail) (STV 1.0 0.9339)) +(: cnet_atlocation_189982ce05 (AtLocation fungus under_rock) (STV 1.0 0.9091)) +(: cnet_atlocation_b1414d031b (AtLocation fungus warm_damp_place) (STV 1.0 0.9524)) +(: cnet_atlocation_049a30ee1c (AtLocation fungus warm_moist_place) (STV 1.0 0.9091)) +(: cnet_atlocation_5d71fbb6a5 (AtLocation fungus wet_and_humid_place) (STV 1.0 0.9091)) +(: cnet_atlocation_3db86cdaeb (AtLocation fungus woodland) (STV 1.0 0.9091)) +(: cnet_atlocation_6c60b73607 (AtLocation furnace basement) (STV 1.0 0.9659)) +(: cnet_atlocation_720ec48730 (AtLocation furnace cellar) (STV 1.0 0.9572)) +(: cnet_atlocation_61226c8c49 (AtLocation furnace house) (STV 1.0 0.9091)) +(: cnet_atlocation_6844b31fe6 (AtLocation furniture building) (STV 1.0 0.9454)) +(: cnet_atlocation_5210f222af (AtLocation furniture friend_s_house) (STV 1.0 0.9339)) +(: cnet_atlocation_7019629e95 (AtLocation furniture house) (STV 1.0 0.9693)) +(: cnet_atlocation_b43ae1580d (AtLocation furniture loft) (STV 1.0 0.9091)) +(: cnet_atlocation_24a60d42d8 (AtLocation furniture room) (STV 1.0 0.9524)) +(: cnet_atlocation_f4541b176c (AtLocation furniture rug) (STV 1.0 0.9339)) +(: cnet_atlocation_3f9f9be1c8 (AtLocation furniture store) (STV 1.0 0.9339)) +(: cnet_atlocation_909a0e54f0 (AtLocation furniture_dresser furniture_store) (STV 1.0 0.9339)) +(: cnet_atlocation_14c38fc3e6 (AtLocation gaggle_of_art_critic gallery_opening) (STV 1.0 0.9091)) +(: cnet_atlocation_b97396ee0b (AtLocation galaxy outerspace) (STV 1.0 0.9339)) +(: cnet_atlocation_8dc398265d (AtLocation galaxy universe) (STV 1.0 0.9091)) +(: cnet_atlocation_6bf087161c (AtLocation galaxy space) (STV 1.0 0.9339)) +(: cnet_atlocation_192877b442 (AtLocation gallery london) (STV 1.0 0.9339)) +(: cnet_atlocation_7debd26368 (AtLocation gallery museum) (STV 1.0 0.9454)) +(: cnet_atlocation_ab5813526d (AtLocation galley boat) (STV 1.0 0.9454)) +(: cnet_atlocation_8fa209040a (AtLocation gambler casino) (STV 1.0 0.9339)) +(: cnet_atlocation_c50ba02150 (AtLocation gambler race_track) (STV 1.0 0.9091)) +(: cnet_atlocation_27fb39edf2 (AtLocation gambling casino) (STV 1.0 0.9091)) +(: cnet_atlocation_f9310cddda (AtLocation game arcade) (STV 1.0 0.9091)) +(: cnet_atlocation_2081c4afd4 (AtLocation game casino) (STV 1.0 0.9091)) +(: cnet_atlocation_4de999b8a0 (AtLocation game gameroom) (STV 1.0 0.9091)) +(: cnet_atlocation_9c7fa1f46a (AtLocation game toy_store) (STV 1.0 0.9454)) +(: cnet_atlocation_6156a032c3 (AtLocation game_of_chance carnival) (STV 1.0 0.9524)) +(: cnet_atlocation_7e0d6a8af3 (AtLocation game_show television) (STV 1.0 0.9091)) +(: cnet_atlocation_a603a6eca1 (AtLocation garage building) (STV 1.0 0.9091)) +(: cnet_atlocation_73e3f37ba3 (AtLocation garage car) (STV 1.0 0.9339)) +(: cnet_atlocation_caea761001 (AtLocation garage house) (STV 1.0 0.9091)) +(: cnet_atlocation_14bb209b4e (AtLocation garbage dump) (STV 1.0 0.9339)) +(: cnet_atlocation_2d448c8e9e (AtLocation garbage garbage_can) (STV 1.0 0.9339)) +(: cnet_atlocation_b5b9973222 (AtLocation garbage landfill) (STV 1.0 0.9091)) +(: cnet_atlocation_2068afe6c1 (AtLocation garbage trash) (STV 1.0 0.9524)) +(: cnet_atlocation_76b760438a (AtLocation garbage trashcan) (STV 1.0 0.9091)) +(: cnet_atlocation_2f37fc8f53 (AtLocation garbage waste_bin) (STV 1.0 0.9091)) +(: cnet_atlocation_e7e80283f6 (AtLocation garbage_can alley) (STV 1.0 0.9339)) +(: cnet_atlocation_6d7473d8fc (AtLocation garbage_can garage) (STV 1.0 0.9339)) +(: cnet_atlocation_e03a03e19c (AtLocation garbage_waste street) (STV 1.0 0.9339)) +(: cnet_atlocation_f92be98fcb (AtLocation garden back_yard) (STV 1.0 0.9608)) +(: cnet_atlocation_4380b48775 (AtLocation garden backyard) (STV 1.0 0.9091)) +(: cnet_atlocation_14b9314457 (AtLocation garden yard) (STV 1.0 0.9454)) +(: cnet_atlocation_3146c3d785 (AtLocation garden_hose back_yard) (STV 1.0 0.9091)) +(: cnet_atlocation_df170488ad (AtLocation garden_hose backyard) (STV 1.0 0.9339)) +(: cnet_atlocation_e13ab4c771 (AtLocation garden_hose garage) (STV 1.0 0.9524)) +(: cnet_atlocation_dd1f5e4178 (AtLocation garden_hose garden_shed) (STV 1.0 0.9091)) +(: cnet_atlocation_aa424292f9 (AtLocation garden_hose yard) (STV 1.0 0.9091)) +(: cnet_atlocation_38135f9238 (AtLocation garlic kitchen) (STV 1.0 0.9091)) +(: cnet_atlocation_a1895a6a92 (AtLocation garment_bag closet) (STV 1.0 0.9339)) +(: cnet_atlocation_d7ec80df56 (AtLocation gas gas_station) (STV 1.0 0.9454)) +(: cnet_atlocation_8918b18683 (AtLocation gasoline gas_station) (STV 1.0 0.9091)) +(: cnet_atlocation_09e56dac73 (AtLocation gate fence) (STV 1.0 0.9091)) +(: cnet_atlocation_7d583e491a (AtLocation gate_leg_table dining_room) (STV 1.0 0.9091)) +(: cnet_atlocation_19179d07a4 (AtLocation gay_men closet) (STV 1.0 0.9091)) +(: cnet_atlocation_cac0deea29 (AtLocation gay_people closet) (STV 1.0 0.9339)) +(: cnet_atlocation_5691858695 (AtLocation gazelle africa_s_plain) (STV 1.0 0.9572)) +(: cnet_atlocation_610d77859a (AtLocation gazelle africa_on_plain) (STV 1.0 0.9091)) +(: cnet_atlocation_039fc6998f (AtLocation gazelle asia) (STV 1.0 0.9339)) +(: cnet_atlocation_897f88d79a (AtLocation gazelle game_preserve) (STV 1.0 0.9091)) +(: cnet_atlocation_93008c3a31 (AtLocation gazelle ivory_coast) (STV 1.0 0.9091)) +(: cnet_atlocation_3789372ce5 (AtLocation gazelle open_plain) (STV 1.0 0.9339)) +(: cnet_atlocation_55691e4656 (AtLocation gazelle savana) (STV 1.0 0.9339)) +(: cnet_atlocation_1459042fc0 (AtLocation gazelle savanah) (STV 1.0 0.9339)) +(: cnet_atlocation_6209edb2af (AtLocation gazelle steppe) (STV 1.0 0.9091)) +(: cnet_atlocation_b1c8538649 (AtLocation gazelle sudan) (STV 1.0 0.9091)) +(: cnet_atlocation_01d72e4764 (AtLocation gazelle wild) (STV 1.0 0.9091)) +(: cnet_atlocation_73484df29a (AtLocation gazelle wildlife_refuge) (STV 1.0 0.9091)) +(: cnet_atlocation_325d00241c (AtLocation gel tube) (STV 1.0 0.9091)) +(: cnet_atlocation_4e6e5863dc (AtLocation gel_toothpaste bathroom) (STV 1.0 0.9608)) +(: cnet_atlocation_0b3d202ca5 (AtLocation gel_toothpaste tube) (STV 1.0 0.9339)) +(: cnet_atlocation_ef2f484304 (AtLocation general_ledger accountant_s_office) (STV 1.0 0.9091)) +(: cnet_atlocation_b76dd429a4 (AtLocation general_ledger bookkeeper_office) (STV 1.0 0.9091)) +(: cnet_atlocation_7ff9e3ecab (AtLocation general_ledger office) (STV 1.0 0.9091)) +(: cnet_atlocation_41de08dc90 (AtLocation general_ledger_in accountant_office) (STV 1.0 0.9454)) +(: cnet_atlocation_5ba54e5d23 (AtLocation general_store small_town) (STV 1.0 0.9091)) +(: cnet_atlocation_df374fa5bd (AtLocation general_store town) (STV 1.0 0.9091)) +(: cnet_atlocation_40a52c2b57 (AtLocation gentleman church) (STV 1.0 0.9572)) +(: cnet_atlocation_62bbc35977 (AtLocation gentleman restaurant) (STV 1.0 0.9091)) +(: cnet_atlocation_ec43af1cf6 (AtLocation george_bush war) (STV 1.0 0.9339)) +(: cnet_atlocation_cc7a470c7b (AtLocation germ mouth) (STV 1.0 0.9091)) +(: cnet_atlocation_4e4d13a8e8 (AtLocation germ water) (STV 1.0 0.9339)) +(: cnet_atlocation_5f0db0976d (AtLocation gideon_s_bible motel) (STV 1.0 0.9608)) +(: cnet_atlocation_ec362f1379 (AtLocation gideon_bible motel) (STV 1.0 0.9091)) +(: cnet_atlocation_e7a3a4b038 (AtLocation gift box) (STV 1.0 0.9091)) +(: cnet_atlocation_25bcd841ad (AtLocation gift gift_shop) (STV 1.0 0.9339)) +(: cnet_atlocation_c43908b684 (AtLocation gift party) (STV 1.0 0.9091)) +(: cnet_atlocation_30a666c6df (AtLocation giraffe zoo) (STV 1.0 0.9524)) +(: cnet_atlocation_ef606595fb (AtLocation glass cabinet) (STV 1.0 0.9524)) +(: cnet_atlocation_f0fb5d0c96 (AtLocation glass kitchen) (STV 1.0 0.9339)) +(: cnet_atlocation_9c1f8ca9eb (AtLocation glass table) (STV 1.0 0.9091)) +(: cnet_atlocation_91ad09ef9a (AtLocation glass window) (STV 1.0 0.9454)) +(: cnet_atlocation_97d843e34e (AtLocation glass_baker laboratory) (STV 1.0 0.9091)) +(: cnet_atlocation_17a8ccd048 (AtLocation glass_fronted_cupboard dining_room) (STV 1.0 0.9608)) +(: cnet_atlocation_c5bd0b6f5e (AtLocation glass_fronted_cupboard kitchen) (STV 1.0 0.9339)) +(: cnet_atlocation_b1e366eab0 (AtLocation glass_fronted_display_cabinet jewelry_store) (STV 1.0 0.9091)) +(: cnet_atlocation_087f42915e (AtLocation glass_fronted_display_cabinet living_room) (STV 1.0 0.9339)) +(: cnet_atlocation_5245595b5c (AtLocation glass_fronted_display_cabinet store) (STV 1.0 0.9091)) +(: cnet_atlocation_b9ffe6bb03 (AtLocation glass_of_water desk) (STV 1.0 0.9091)) +(: cnet_atlocation_6f35e37f7e (AtLocation glass_of_water table) (STV 1.0 0.9339)) +(: cnet_atlocation_56ce3169b5 (AtLocation glass cupboard) (STV 1.0 0.9756)) +(: cnet_atlocation_12c4eccb1e (AtLocation glass_case drawer) (STV 1.0 0.9454)) +(: cnet_atlocation_2561467734 (AtLocation glass_case purse) (STV 1.0 0.9091)) +(: cnet_atlocation_496b2a1f69 (AtLocation global_positioning_system plane) (STV 1.0 0.9339)) +(: cnet_atlocation_37a6951b6e (AtLocation globe classroom) (STV 1.0 0.9339)) +(: cnet_atlocation_b6a1fc4fcc (AtLocation glue desk_drawer) (STV 1.0 0.9339)) +(: cnet_atlocation_644443bf6e (AtLocation glue school) (STV 1.0 0.9454)) +(: cnet_atlocation_cca9106073 (AtLocation glue tube) (STV 1.0 0.9091)) +(: cnet_atlocation_8c08931de9 (AtLocation glue_stick desk) (STV 1.0 0.9524)) +(: cnet_atlocation_2a63028dc7 (AtLocation glue_stick drawer) (STV 1.0 0.9454)) +(: cnet_atlocation_de268c3ede (AtLocation goalie hockey_game) (STV 1.0 0.9091)) +(: cnet_atlocation_f9f9a5b0ae (AtLocation goaly soccer_game) (STV 1.0 0.9091)) +(: cnet_atlocation_c4e17cc783 (AtLocation goaltender hockey_game) (STV 1.0 0.9091)) +(: cnet_atlocation_4cf6f39929 (AtLocation goat petting_zoo) (STV 1.0 0.9091)) +(: cnet_atlocation_70b3606826 (AtLocation god church) (STV 1.0 0.9524)) +(: cnet_atlocation_11e800f77f (AtLocation god cloud) (STV 1.0 0.9091)) +(: cnet_atlocation_75b8613f14 (AtLocation god heaven) (STV 1.0 0.9608)) +(: cnet_atlocation_c6c1232a88 (AtLocation god mind) (STV 1.0 0.9091)) +(: cnet_atlocation_034fc872b6 (AtLocation god synagogue) (STV 1.0 0.9091)) +(: cnet_atlocation_cb0d1f6c94 (AtLocation gold fort_knox) (STV 1.0 0.9339)) +(: cnet_atlocation_ecd847b401 (AtLocation good_beer germany) (STV 1.0 0.9091)) +(: cnet_atlocation_f08f0007f8 (AtLocation good_meal restaurant) (STV 1.0 0.9091)) +(: cnet_atlocation_8ad4382039 (AtLocation good supermarket) (STV 1.0 0.9454)) +(: cnet_atlocation_7d2bdd8c26 (AtLocation good_to_purchased shop) (STV 1.0 0.9339)) +(: cnet_atlocation_d8329f891d (AtLocation goodyear_blimp sky) (STV 1.0 0.9091)) +(: cnet_atlocation_1a2aedcd3e (AtLocation goofy disneyland) (STV 1.0 0.9339)) +(: cnet_atlocation_e553731516 (AtLocation gossip water_cooler) (STV 1.0 0.9339)) +(: cnet_atlocation_45411ca30b (AtLocation gourmet_shop mall) (STV 1.0 0.9091)) +(: cnet_atlocation_76a95b1a78 (AtLocation government canada) (STV 1.0 0.9339)) +(: cnet_atlocation_5fd6abd397 (AtLocation government civilization) (STV 1.0 0.9339)) +(: cnet_atlocation_3f5487bc3b (AtLocation government country) (STV 1.0 0.9608)) +(: cnet_atlocation_edecc687df (AtLocation grain_of_sand beach) (STV 1.0 0.9339)) +(: cnet_atlocation_5a221296bd (AtLocation grandma relative_house) (STV 1.0 0.9091)) +(: cnet_atlocation_79534fd2ed (AtLocation grandmother relative_house) (STV 1.0 0.9091)) +(: cnet_atlocation_54b30bf4c0 (AtLocation granola_bar backpack) (STV 1.0 0.9091)) +(: cnet_atlocation_5bf8a30440 (AtLocation grape arbor) (STV 1.0 0.9091)) +(: cnet_atlocation_3d6951f7cb (AtLocation grape bowl) (STV 1.0 0.9091)) +(: cnet_atlocation_03bce641bb (AtLocation grape bowl_of_fruit) (STV 1.0 0.9454)) +(: cnet_atlocation_866e9ac979 (AtLocation grape bunch_with_other_grape) (STV 1.0 0.9339)) +(: cnet_atlocation_c2bd621d90 (AtLocation grape field) (STV 1.0 0.9524)) +(: cnet_atlocation_17d6ed78cd (AtLocation grape fridge) (STV 1.0 0.9091)) +(: cnet_atlocation_d801cf32e5 (AtLocation grape fruit_basket) (STV 1.0 0.9454)) +(: cnet_atlocation_9a25d6a707 (AtLocation grape fruit_stand) (STV 1.0 0.9339)) +(: cnet_atlocation_3fc96adb68 (AtLocation grape fruit_store) (STV 1.0 0.9339)) +(: cnet_atlocation_c3ccb433a9 (AtLocation grape garden) (STV 1.0 0.9091)) +(: cnet_atlocation_0e30fb1161 (AtLocation grape kitchen) (STV 1.0 0.9608)) +(: cnet_atlocation_5985135702 (AtLocation grape mouth) (STV 1.0 0.9339)) +(: cnet_atlocation_6d43502481 (AtLocation grape painting) (STV 1.0 0.9091)) +(: cnet_atlocation_f4635de60d (AtLocation grape produce_department) (STV 1.0 0.9339)) +(: cnet_atlocation_f7ddcdbc59 (AtLocation grape produce_section) (STV 1.0 0.9339)) +(: cnet_atlocation_cb2d8f8cad (AtLocation grape produce_store) (STV 1.0 0.9091)) +(: cnet_atlocation_3bec5c4827 (AtLocation grape salad) (STV 1.0 0.9091)) +(: cnet_atlocation_e467bb590f (AtLocation grape shop) (STV 1.0 0.9091)) +(: cnet_atlocation_a423eb9a4c (AtLocation grape supermarket_produce_section) (STV 1.0 0.9091)) +(: cnet_atlocation_966668dc9f (AtLocation grape vine_of_other_grape) (STV 1.0 0.9091)) +(: cnet_atlocation_303b4edacb (AtLocation grape wine) (STV 1.0 0.9091)) +(: cnet_atlocation_f646bd1a08 (AtLocation grape winery) (STV 1.0 0.9339)) +(: cnet_atlocation_38251795b6 (AtLocation grape_juice refrigerator) (STV 1.0 0.9091)) +(: cnet_atlocation_363ba35497 (AtLocation grapefruit supermarket) (STV 1.0 0.9339)) +(: cnet_atlocation_84678892bd (AtLocation gra park) (STV 1.0 0.9091)) +(: cnet_atlocation_c0d100670b (AtLocation grass countryside) (STV 1.0 0.9339)) +(: cnet_atlocation_a593a9f453 (AtLocation grass field) (STV 1.0 0.9454)) +(: cnet_atlocation_f7ec15ee6d (AtLocation grass ground) (STV 1.0 0.9454)) +(: cnet_atlocation_a735c32c53 (AtLocation grass lawn) (STV 1.0 0.9693)) +(: cnet_atlocation_5e2e236478 (AtLocation grass park) (STV 1.0 0.9730)) +(: cnet_atlocation_e42d9e1d55 (AtLocation grass tree) (STV 1.0 0.9091)) +(: cnet_atlocation_4a9262e502 (AtLocation grass_and_tree park) (STV 1.0 0.9091)) +(: cnet_atlocation_4d2c0a1955 (AtLocation grave funeral) (STV 1.0 0.9091)) +(: cnet_atlocation_7de3dbd95e (AtLocation gravel surface_of_earth) (STV 1.0 0.9091)) +(: cnet_atlocation_3623eee7c0 (AtLocation gravy_boat cupboard) (STV 1.0 0.9339)) +(: cnet_atlocation_309225897a (AtLocation grease fast_food_restaurant) (STV 1.0 0.9091)) +(: cnet_atlocation_2e5409c4ca (AtLocation grease garage) (STV 1.0 0.9339)) +(: cnet_atlocation_4056271eb3 (AtLocation great_view top_of_mountain) (STV 1.0 0.9091)) +(: cnet_atlocation_9bdd7be33f (AtLocation green_bean farmer_s_market) (STV 1.0 0.9091)) +(: cnet_atlocation_faa965a1ed (AtLocation green_grass park) (STV 1.0 0.9091)) +(: cnet_atlocation_a0d866e967 (AtLocation green_pepper pizza) (STV 1.0 0.9339)) +(: cnet_atlocation_783ad0256a (AtLocation greengrocer city) (STV 1.0 0.9454)) +(: cnet_atlocation_db2ca61888 (AtLocation greengrocer supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_4b0f735e9b (AtLocation grenade war) (STV 1.0 0.9454)) +(: cnet_atlocation_21679277f8 (AtLocation grid mathematic) (STV 1.0 0.9091)) +(: cnet_atlocation_c3e1bad1f9 (AtLocation grill back_yard) (STV 1.0 0.9454)) +(: cnet_atlocation_ce4d98f136 (AtLocation grill backyard) (STV 1.0 0.9339)) +(: cnet_atlocation_4702d9d852 (AtLocation grocer grocery_store) (STV 1.0 0.9339)) +(: cnet_atlocation_e2db25c827 (AtLocation grocery supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_91cfc174a4 (AtLocation grocery_store city) (STV 1.0 0.9091)) +(: cnet_atlocation_538c31aca2 (AtLocation grocery_store neighborhood) (STV 1.0 0.9091)) +(: cnet_atlocation_80ab5f4e54 (AtLocation grocery_store town) (STV 1.0 0.9091)) +(: cnet_atlocation_01c4f0a3a7 (AtLocation groom friend_s_wedding) (STV 1.0 0.9091)) +(: cnet_atlocation_cb99cbf85a (AtLocation ground tree) (STV 1.0 0.9091)) +(: cnet_atlocation_556a6385c8 (AtLocation ground_floor building) (STV 1.0 0.9524)) +(: cnet_atlocation_e80b42d966 (AtLocation ground_floor office_building) (STV 1.0 0.9091)) +(: cnet_atlocation_03e6f43b21 (AtLocation group_of_people meeting) (STV 1.0 0.9339)) +(: cnet_atlocation_e3da81828b (AtLocation group_of_student bus) (STV 1.0 0.9091)) +(: cnet_atlocation_c84d4accad (AtLocation grumpy_delayed_passenger airport) (STV 1.0 0.9091)) +(: cnet_atlocation_dab597b06c (AtLocation guard_dog military_base) (STV 1.0 0.9091)) +(: cnet_atlocation_5a65e6e421 (AtLocation guard jail) (STV 1.0 0.9524)) +(: cnet_atlocation_ae3fe068f2 (AtLocation guest front_door) (STV 1.0 0.9339)) +(: cnet_atlocation_a2761b6775 (AtLocation guest_room loft) (STV 1.0 0.9091)) +(: cnet_atlocation_cf95472bcb (AtLocation guilt church) (STV 1.0 0.9091)) +(: cnet_atlocation_7067ea4e8a (AtLocation guitar band) (STV 1.0 0.9091)) +(: cnet_atlocation_848b3e1480 (AtLocation guitar concert) (STV 1.0 0.9091)) +(: cnet_atlocation_ba3f102167 (AtLocation guitar music_room) (STV 1.0 0.9091)) +(: cnet_atlocation_60f726ad7a (AtLocation gull sea) (STV 1.0 0.9091)) +(: cnet_atlocation_c9bc9c1f9e (AtLocation gum mouth) (STV 1.0 0.9339)) +(: cnet_atlocation_4d9e41a51c (AtLocation gun drawer) (STV 1.0 0.9091)) +(: cnet_atlocation_62db2e9c66 (AtLocation gun holster) (STV 1.0 0.9091)) +(: cnet_atlocation_1f7432700e (AtLocation gun police_station) (STV 1.0 0.9091)) +(: cnet_atlocation_559eeb7745 (AtLocation gun war) (STV 1.0 0.9091)) +(: cnet_atlocation_5d476ef6cb (AtLocation gurney hospital) (STV 1.0 0.9339)) +(: cnet_atlocation_ef3706951c (AtLocation gym school) (STV 1.0 0.9524)) +(: cnet_atlocation_a294ef4d81 (AtLocation hair arm) (STV 1.0 0.9091)) +(: cnet_atlocation_87fca5af58 (AtLocation hair brush) (STV 1.0 0.9091)) +(: cnet_atlocation_e08532fbcc (AtLocation hair drain) (STV 1.0 0.9454)) +(: cnet_atlocation_34822577cb (AtLocation hair hairbrush) (STV 1.0 0.9454)) +(: cnet_atlocation_baa2d3da0d (AtLocation hair head) (STV 1.0 0.9677)) +(: cnet_atlocation_a2fe3cce71 (AtLocation hair mammal) (STV 1.0 0.9091)) +(: cnet_atlocation_ed277c409d (AtLocation hair sink) (STV 1.0 0.9091)) +(: cnet_atlocation_ff1bf47597 (AtLocation hair_care_article drug_store) (STV 1.0 0.9454)) +(: cnet_atlocation_6cffce03f3 (AtLocation hair_clip beauty_salon) (STV 1.0 0.9091)) +(: cnet_atlocation_6585941c54 (AtLocation hair_clip drug_store) (STV 1.0 0.9091)) +(: cnet_atlocation_19b958cdc8 (AtLocation hair_conditioner drug_store) (STV 1.0 0.9091)) +(: cnet_atlocation_f3da5352d5 (AtLocation hair_conditioner hair_salon) (STV 1.0 0.9091)) +(: cnet_atlocation_ca34ece792 (AtLocation hair_dryer bathroom) (STV 1.0 0.9524)) +(: cnet_atlocation_7a9a41d5d9 (AtLocation hair_gel barber) (STV 1.0 0.9091)) +(: cnet_atlocation_5595e7dce2 (AtLocation hair_gel bathroom) (STV 1.0 0.9524)) +(: cnet_atlocation_1bf46f75f6 (AtLocation hair_roller beauty_salon) (STV 1.0 0.9091)) +(: cnet_atlocation_8b0a221f68 (AtLocation hair_roller hair) (STV 1.0 0.9339)) +(: cnet_atlocation_45dd36374e (AtLocation hair_shaping_gel bathroom) (STV 1.0 0.9572)) +(: cnet_atlocation_2baa916a47 (AtLocation hair_shaping_gel supermarket) (STV 1.0 0.9339)) +(: cnet_atlocation_ee24525517 (AtLocation hairbrush bathroom) (STV 1.0 0.9572)) +(: cnet_atlocation_d03a7294a8 (AtLocation hairbrush bathroom_drawer) (STV 1.0 0.9339)) +(: cnet_atlocation_9bc854d2a0 (AtLocation haircloth bathroom) (STV 1.0 0.9091)) +(: cnet_atlocation_fc7f9b19e6 (AtLocation haircutting_scissor barber_shop) (STV 1.0 0.9091)) +(: cnet_atlocation_c0ab1af99a (AtLocation haircutting_scissor salon) (STV 1.0 0.9091)) +(: cnet_atlocation_f6371d4889 (AtLocation hairdresser mall) (STV 1.0 0.9091)) +(: cnet_atlocation_c04982109a (AtLocation hairdressing_salon mall) (STV 1.0 0.9339)) +(: cnet_atlocation_40949b7243 (AtLocation hairpin woman_s_hair) (STV 1.0 0.9339)) +(: cnet_atlocation_bd0eb37290 (AtLocation hall building) (STV 1.0 0.9091)) +(: cnet_atlocation_de23d87c4b (AtLocation hallway building) (STV 1.0 0.9454)) +(: cnet_atlocation_65eab418b3 (AtLocation hallway house) (STV 1.0 0.9339)) +(: cnet_atlocation_ed30bcee14 (AtLocation hallway office_building) (STV 1.0 0.9091)) +(: cnet_atlocation_47764d3ad5 (AtLocation ham pizza) (STV 1.0 0.9339)) +(: cnet_atlocation_9a7d458a53 (AtLocation ham refrigerator) (STV 1.0 0.9091)) +(: cnet_atlocation_647f9a06e8 (AtLocation hamburger fast_food_restaurant) (STV 1.0 0.9677)) +(: cnet_atlocation_7f73fb6194 (AtLocation hamburger pizza) (STV 1.0 0.9339)) +(: cnet_atlocation_b8c8370b1d (AtLocation hamburger resturant) (STV 1.0 0.9091)) +(: cnet_atlocation_5921b12465 (AtLocation hammer hardware_store) (STV 1.0 0.9091)) +(: cnet_atlocation_466172d6cf (AtLocation hammer tool_box) (STV 1.0 0.9636)) +(: cnet_atlocation_027148b413 (AtLocation hand pocket) (STV 1.0 0.9572)) +(: cnet_atlocation_25e2b62d54 (AtLocation hand_luggage airport) (STV 1.0 0.9454)) +(: cnet_atlocation_2984a53781 (AtLocation handbag store) (STV 1.0 0.9091)) +(: cnet_atlocation_0ae43b353b (AtLocation handgun holster_of_policeman) (STV 1.0 0.9339)) +(: cnet_atlocation_8bcb4ada38 (AtLocation handle door) (STV 1.0 0.9339)) +(: cnet_atlocation_1ac9fd9baf (AtLocation handle fridge) (STV 1.0 0.9339)) +(: cnet_atlocation_9c425b5774 (AtLocation hand glove) (STV 1.0 0.9339)) +(: cnet_atlocation_ec97ac34b4 (AtLocation hand sockpuppet) (STV 1.0 0.9091)) +(: cnet_atlocation_f79c0748d6 (AtLocation handstrap subway) (STV 1.0 0.9091)) +(: cnet_atlocation_ea1685a373 (AtLocation hanger closet) (STV 1.0 0.9659)) +(: cnet_atlocation_585176666b (AtLocation hardware_shop city) (STV 1.0 0.9454)) +(: cnet_atlocation_05e6fac036 (AtLocation hardware_shop mall) (STV 1.0 0.9091)) +(: cnet_atlocation_1e8e0c92a8 (AtLocation hardware_store city) (STV 1.0 0.9454)) +(: cnet_atlocation_c0daabaf73 (AtLocation hardware_store town) (STV 1.0 0.9091)) +(: cnet_atlocation_64c08ed1c5 (AtLocation hardwood_floor carpet) (STV 1.0 0.9091)) +(: cnet_atlocation_695c9446bc (AtLocation harlot street_corner) (STV 1.0 0.9091)) +(: cnet_atlocation_adedf05dc9 (AtLocation harpsichord band) (STV 1.0 0.9091)) +(: cnet_atlocation_f9be536b1b (AtLocation harpsichord classical_music_orchestra) (STV 1.0 0.9091)) +(: cnet_atlocation_07ab258575 (AtLocation hat closet) (STV 1.0 0.9524)) +(: cnet_atlocation_5a76a09657 (AtLocation hat head) (STV 1.0 0.9091)) +(: cnet_atlocation_a4508b1a1a (AtLocation hat_with_horn opera) (STV 1.0 0.9091)) +(: cnet_atlocation_cb20cf6af3 (AtLocation have_cavity dentist) (STV 1.0 0.9091)) +(: cnet_atlocation_de3ec1d072 (AtLocation hay barn) (STV 1.0 0.9091)) +(: cnet_atlocation_e690d4704e (AtLocation hay loft) (STV 1.0 0.9091)) +(: cnet_atlocation_458c44203a (AtLocation head morgue) (STV 1.0 0.9339)) +(: cnet_atlocation_5bc38de31e (AtLocation headline newspaper) (STV 1.0 0.9091)) +(: cnet_atlocation_d6e2c0bb4e (AtLocation health_food_store city) (STV 1.0 0.9091)) +(: cnet_atlocation_cfe66fc8f5 (AtLocation health_food_store mall) (STV 1.0 0.9524)) +(: cnet_atlocation_f65a41a895 (AtLocation heart all_mammal) (STV 1.0 0.9091)) +(: cnet_atlocation_4e70d1bfd4 (AtLocation heart animal) (STV 1.0 0.9091)) +(: cnet_atlocation_118d209890 (AtLocation heart person) (STV 1.0 0.9091)) +(: cnet_atlocation_308631c62f (AtLocation heat oven) (STV 1.0 0.9454)) +(: cnet_atlocation_028c1e4fd6 (AtLocation heat_source house) (STV 1.0 0.9091)) +(: cnet_atlocation_6fe65401a3 (AtLocation heated_towel_rack bathroom) (STV 1.0 0.9339)) +(: cnet_atlocation_3ca89d69d2 (AtLocation heater house) (STV 1.0 0.9339)) +(: cnet_atlocation_247fadf74b (AtLocation heating_element oven) (STV 1.0 0.9636)) +(: cnet_atlocation_0776a25e3d (AtLocation heating_room basement) (STV 1.0 0.9091)) +(: cnet_atlocation_2fbcb90d58 (AtLocation heifer barnyard) (STV 1.0 0.9572)) +(: cnet_atlocation_5d4afe81f4 (AtLocation heifer cattle_farm) (STV 1.0 0.9091)) +(: cnet_atlocation_8d3e91b90c (AtLocation heifer cattle_ranch) (STV 1.0 0.9091)) +(: cnet_atlocation_2b44ea31ca (AtLocation heifer cattle_show) (STV 1.0 0.9091)) +(: cnet_atlocation_97e3e49b94 (AtLocation heifer corral) (STV 1.0 0.9091)) +(: cnet_atlocation_66dfcc10ca (AtLocation heifer countryside) (STV 1.0 0.9339)) +(: cnet_atlocation_532338d4ab (AtLocation heifer cow_pasture) (STV 1.0 0.9454)) +(: cnet_atlocation_f3d2afc3b8 (AtLocation heifer cow_shed) (STV 1.0 0.9339)) +(: cnet_atlocation_3174e1c8cc (AtLocation heifer dairy_barn) (STV 1.0 0.9091)) +(: cnet_atlocation_1bb1b41969 (AtLocation heifer dairy_farm) (STV 1.0 0.9524)) +(: cnet_atlocation_aedc8a39c9 (AtLocation heifer own_meadow) (STV 1.0 0.9524)) +(: cnet_atlocation_47bfe6135b (AtLocation heifer slaughterhouse) (STV 1.0 0.9091)) +(: cnet_atlocation_7c6119109c (AtLocation heifer stall) (STV 1.0 0.9091)) +(: cnet_atlocation_56fd3f97bd (AtLocation heifer texa) (STV 1.0 0.9091)) +(: cnet_atlocation_b729923989 (AtLocation helicopter airport) (STV 1.0 0.9339)) +(: cnet_atlocation_18e94ad301 (AtLocation helium_balloon birthday_party) (STV 1.0 0.9091)) +(: cnet_atlocation_d1f5feb4e8 (AtLocation helium_balloon circus) (STV 1.0 0.9572)) +(: cnet_atlocation_a2cbca7337 (AtLocation herringbone herring) (STV 1.0 0.9339)) +(: cnet_atlocation_387b98f083 (AtLocation hide_bed living_room) (STV 1.0 0.9091)) +(: cnet_atlocation_e6d3b20a1c (AtLocation high_rise city) (STV 1.0 0.9339)) +(: cnet_atlocation_c7ef6caf1b (AtLocation highlighter desk) (STV 1.0 0.9454)) +(: cnet_atlocation_d2ffb7f58c (AtLocation highlighter_pen desk) (STV 1.0 0.9572)) +(: cnet_atlocation_e4bdffe748 (AtLocation highlighter_pen desk_drawer) (STV 1.0 0.9091)) +(: cnet_atlocation_a18b6eb966 (AtLocation highway atla) (STV 1.0 0.9091)) +(: cnet_atlocation_47308908d6 (AtLocation highway between_to_city) (STV 1.0 0.9339)) +(: cnet_atlocation_21ed42b471 (AtLocation highway city) (STV 1.0 0.9091)) +(: cnet_atlocation_ae59f95623 (AtLocation highway country) (STV 1.0 0.9339)) +(: cnet_atlocation_73914ee759 (AtLocation hill country) (STV 1.0 0.9091)) +(: cnet_atlocation_3e1a669c0f (AtLocation hill countryside) (STV 1.0 0.9091)) +(: cnet_atlocation_822021024e (AtLocation hill landscape) (STV 1.0 0.9339)) +(: cnet_atlocation_cb666655dd (AtLocation hindus temple) (STV 1.0 0.9339)) +(: cnet_atlocation_64d5cd37d3 (AtLocation hinged_door own_house) (STV 1.0 0.9524)) +(: cnet_atlocation_75e9fd2217 (AtLocation historical_artifact museum) (STV 1.0 0.9091)) +(: cnet_atlocation_2106bd8763 (AtLocation history_book university) (STV 1.0 0.9091)) +(: cnet_atlocation_db6fde7332 (AtLocation hitler hell) (STV 1.0 0.9091)) +(: cnet_atlocation_ee49c741b0 (AtLocation hobo bridge) (STV 1.0 0.9339)) +(: cnet_atlocation_30c51d7a9a (AtLocation hockey_fan hockey_game) (STV 1.0 0.9091)) +(: cnet_atlocation_61e1fff242 (AtLocation hockey_puck hockey_game) (STV 1.0 0.9524)) +(: cnet_atlocation_47651405f0 (AtLocation hockey_standing newspaper) (STV 1.0 0.9091)) +(: cnet_atlocation_de06720c27 (AtLocation hockey_stick hockey_game) (STV 1.0 0.9091)) +(: cnet_atlocation_aee76daf65 (AtLocation hole donut) (STV 1.0 0.9091)) +(: cnet_atlocation_ff2145b9e2 (AtLocation hole ground) (STV 1.0 0.9091)) +(: cnet_atlocation_44f163986f (AtLocation hole swiss_cheese) (STV 1.0 0.9091)) +(: cnet_atlocation_7ba0fe823b (AtLocation hole wall) (STV 1.0 0.9339)) +(: cnet_atlocation_d7ced21948 (AtLocation holy_water church) (STV 1.0 0.9339)) +(: cnet_atlocation_83230236e7 (AtLocation home city) (STV 1.0 0.9454)) +(: cnet_atlocation_64b12252ac (AtLocation home neighborhood) (STV 1.0 0.9091)) +(: cnet_atlocation_54c92f28d6 (AtLocation homeless bridge) (STV 1.0 0.9339)) +(: cnet_atlocation_e3e4faa30c (AtLocation homeless_people bus_depot) (STV 1.0 0.9091)) +(: cnet_atlocation_621c04eee8 (AtLocation homeless_person bridge) (STV 1.0 0.9454)) +(: cnet_atlocation_5223111713 (AtLocation homeless_person homeless_shelter) (STV 1.0 0.9091)) +(: cnet_atlocation_7c77b2c655 (AtLocation homeschool home) (STV 1.0 0.9091)) +(: cnet_atlocation_04da85ffd7 (AtLocation homework desk) (STV 1.0 0.9091)) +(: cnet_atlocation_6855de197e (AtLocation homework school) (STV 1.0 0.9091)) +(: cnet_atlocation_9d73998616 (AtLocation homosexual closet) (STV 1.0 0.9339)) +(: cnet_atlocation_95cc3a3785 (AtLocation homosexual military_base) (STV 1.0 0.9091)) +(: cnet_atlocation_3e23d8dc4b (AtLocation honey jar) (STV 1.0 0.9454)) +(: cnet_atlocation_67fe22ea06 (AtLocation hook end_of_line) (STV 1.0 0.9339)) +(: cnet_atlocation_75961a9a29 (AtLocation hooker street_corner) (STV 1.0 0.9524)) +(: cnet_atlocation_9969c8fc52 (AtLocation hooker motel) (STV 1.0 0.9454)) +(: cnet_atlocation_476885065f (AtLocation horn automobile) (STV 1.0 0.9091)) +(: cnet_atlocation_f42b36facc (AtLocation horn car) (STV 1.0 0.9091)) +(: cnet_atlocation_d1b00e3306 (AtLocation horn head_of_animal) (STV 1.0 0.9091)) +(: cnet_atlocation_ec0c892c75 (AtLocation horn philharmonic_orchestra) (STV 1.0 0.9091)) +(: cnet_atlocation_dc30809a01 (AtLocation horse a) (STV 1.0 0.9091)) +(: cnet_atlocation_b9afd1472a (AtLocation horse canada) (STV 1.0 0.9339)) +(: cnet_atlocation_b727106b1a (AtLocation horse cavalry) (STV 1.0 0.9636)) +(: cnet_atlocation_c2e8e5b917 (AtLocation horse circus) (STV 1.0 0.9524)) +(: cnet_atlocation_7964f0cea6 (AtLocation horse country) (STV 1.0 0.9339)) +(: cnet_atlocation_a02342a5bb (AtLocation horse equestrian_competition) (STV 1.0 0.9339)) +(: cnet_atlocation_38039385d7 (AtLocation horse farmyard) (STV 1.0 0.9091)) +(: cnet_atlocation_4fe0973901 (AtLocation horse kentucky) (STV 1.0 0.9091)) +(: cnet_atlocation_e7579df82e (AtLocation horse movy) (STV 1.0 0.9091)) +(: cnet_atlocation_087679b772 (AtLocation horse parade) (STV 1.0 0.9091)) +(: cnet_atlocation_fcd1243465 (AtLocation horse race_track) (STV 1.0 0.9659)) +(: cnet_atlocation_60ebae53c4 (AtLocation horse stall) (STV 1.0 0.9524)) +(: cnet_atlocation_764a945833 (AtLocation horse western_movie) (STV 1.0 0.9091)) +(: cnet_atlocation_c2098e42b5 (AtLocation horse_race fairground) (STV 1.0 0.9091)) +(: cnet_atlocation_9be76f895a (AtLocation hors countryside) (STV 1.0 0.9091)) +(: cnet_atlocation_591acc86b9 (AtLocation horseshoe_crab beach) (STV 1.0 0.9091)) +(: cnet_atlocation_ba8272dbc1 (AtLocation hose garage) (STV 1.0 0.9339)) +(: cnet_atlocation_6ef9149685 (AtLocation hospital city) (STV 1.0 0.9339)) +(: cnet_atlocation_8d211024c5 (AtLocation hospital town) (STV 1.0 0.9091)) +(: cnet_atlocation_433463f2ba (AtLocation hostility war_zone) (STV 1.0 0.9339)) +(: cnet_atlocation_a4e14e5674 (AtLocation hot_chick school) (STV 1.0 0.9339)) +(: cnet_atlocation_bfe939800a (AtLocation hot_dog drive_in_movie) (STV 1.0 0.9091)) +(: cnet_atlocation_d7a54601c1 (AtLocation hot_dog sporting_event) (STV 1.0 0.9091)) +(: cnet_atlocation_8b3430bf9a (AtLocation hot_faucet bathroom) (STV 1.0 0.9454)) +(: cnet_atlocation_665af24d5c (AtLocation hot_faucet kitchen) (STV 1.0 0.9091)) +(: cnet_atlocation_19a389401b (AtLocation hot_faucet sink) (STV 1.0 0.9091)) +(: cnet_atlocation_593ad3bdf8 (AtLocation hot_table kitchen) (STV 1.0 0.9339)) +(: cnet_atlocation_fb4bd9ef44 (AtLocation hot_tap bathroom) (STV 1.0 0.9608)) +(: cnet_atlocation_94636e1986 (AtLocation hot_tap sink) (STV 1.0 0.9454)) +(: cnet_atlocation_1cbaaded5d (AtLocation hot_water_heater basement) (STV 1.0 0.9091)) +(: cnet_atlocation_758bd64c2e (AtLocation hotdog sporting_event) (STV 1.0 0.9091)) +(: cnet_atlocation_28bc8d8b7d (AtLocation hotel las_vega) (STV 1.0 0.9572)) +(: cnet_atlocation_d8bd243445 (AtLocation house city) (STV 1.0 0.9091)) +(: cnet_atlocation_19f2ecc436 (AtLocation house residential_area) (STV 1.0 0.9091)) +(: cnet_atlocation_0f6b0c0845 (AtLocation house street) (STV 1.0 0.9091)) +(: cnet_atlocation_ceffa570b5 (AtLocation house suburb) (STV 1.0 0.9091)) +(: cnet_atlocation_777d8be19e (AtLocation house surface_of_earth) (STV 1.0 0.9091)) +(: cnet_atlocation_246d352694 (AtLocation household_supply supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_e00ee55f91 (AtLocation hub_cap street) (STV 1.0 0.9091)) +(: cnet_atlocation_2afa2bdb79 (AtLocation hubcap car_show) (STV 1.0 0.9091)) +(: cnet_atlocation_a69a1ad2ef (AtLocation huddersfield west_yorkshire) (STV 1.0 0.9091)) +(: cnet_atlocation_df16797711 (AtLocation human airport) (STV 1.0 0.9339)) +(: cnet_atlocation_7bb9ea95c7 (AtLocation human apartment) (STV 1.0 0.9339)) +(: cnet_atlocation_ee90bd5f15 (AtLocation human apartment_building) (STV 1.0 0.9339)) +(: cnet_atlocation_a0801577dd (AtLocation human automobile) (STV 1.0 0.9524)) +(: cnet_atlocation_1e4d7eaf0f (AtLocation human band) (STV 1.0 0.9091)) +(: cnet_atlocation_b6851582fb (AtLocation human bar) (STV 1.0 0.9454)) +(: cnet_atlocation_d706ff2050 (AtLocation human bathroom) (STV 1.0 0.9339)) +(: cnet_atlocation_79b6890721 (AtLocation human bathtub) (STV 1.0 0.9091)) +(: cnet_atlocation_f7f75b984d (AtLocation human bed) (STV 1.0 0.9454)) +(: cnet_atlocation_cfd552e2e7 (AtLocation human bus) (STV 1.0 0.9524)) +(: cnet_atlocation_e808352955 (AtLocation human cemetary) (STV 1.0 0.9091)) +(: cnet_atlocation_00af9b9b3c (AtLocation human chair) (STV 1.0 0.9339)) +(: cnet_atlocation_9fb92ae4d9 (AtLocation human charge) (STV 1.0 0.9091)) +(: cnet_atlocation_709fae3284 (AtLocation human china) (STV 1.0 0.9454)) +(: cnet_atlocation_d67d8cd62f (AtLocation human church) (STV 1.0 0.9608)) +(: cnet_atlocation_3b22b10162 (AtLocation human country) (STV 1.0 0.9091)) +(: cnet_atlocation_99f2adea83 (AtLocation human home) (STV 1.0 0.9454)) +(: cnet_atlocation_f273888e02 (AtLocation human hotel) (STV 1.0 0.9091)) +(: cnet_atlocation_49005b3a81 (AtLocation human internet_cafe) (STV 1.0 0.9091)) +(: cnet_atlocation_2191f1559a (AtLocation human jail) (STV 1.0 0.9572)) +(: cnet_atlocation_5444fc3e53 (AtLocation human library) (STV 1.0 0.9636)) +(: cnet_atlocation_820638be0b (AtLocation human love) (STV 1.0 0.9636)) +(: cnet_atlocation_d85c031e7f (AtLocation human motion) (STV 1.0 0.9091)) +(: cnet_atlocation_b5fb8d86b9 (AtLocation human office_building) (STV 1.0 0.9339)) +(: cnet_atlocation_6ffb687064 (AtLocation human park) (STV 1.0 0.9636)) +(: cnet_atlocation_5605f7bae1 (AtLocation human sauna) (STV 1.0 0.9339)) +(: cnet_atlocation_749159bdc7 (AtLocation human school) (STV 1.0 0.9740)) +(: cnet_atlocation_208e95b96f (AtLocation human solar_system) (STV 1.0 0.9454)) +(: cnet_atlocation_fb6817f9e0 (AtLocation human space_shuttle) (STV 1.0 0.9608)) +(: cnet_atlocation_ebf9d620c4 (AtLocation human submarine) (STV 1.0 0.9339)) +(: cnet_atlocation_34cdf35acb (AtLocation human subway) (STV 1.0 0.9339)) +(: cnet_atlocation_bbb067cc4d (AtLocation human theater) (STV 1.0 0.9339)) +(: cnet_atlocation_9e8cbe6ae2 (AtLocation human train) (STV 1.0 0.9091)) +(: cnet_atlocation_e42140ddd8 (AtLocation human village) (STV 1.0 0.9091)) +(: cnet_atlocation_abd15582bf (AtLocation human workplace) (STV 1.0 0.9693)) +(: cnet_atlocation_1da6037976 (AtLocation human zoo) (STV 1.0 0.9091)) +(: cnet_atlocation_94759bf8ec (AtLocation human_being street) (STV 1.0 0.9091)) +(: cnet_atlocation_d0980b4644 (AtLocation human_body funeral) (STV 1.0 0.9339)) +(: cnet_atlocation_1bc04267d0 (AtLocation human cafe) (STV 1.0 0.9091)) +(: cnet_atlocation_87dea65bde (AtLocation human movie_theatre) (STV 1.0 0.9091)) +(: cnet_atlocation_6e9e32f446 (AtLocation human movy) (STV 1.0 0.9091)) +(: cnet_atlocation_cea3e3002d (AtLocation human_communicating internet_discussion_group) (STV 1.0 0.9091)) +(: cnet_atlocation_8d22093936 (AtLocation humvee military_base) (STV 1.0 0.9091)) +(: cnet_atlocation_7f3957f554 (AtLocation hungry_people supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_df3cdc678d (AtLocation husky connecticut) (STV 1.0 0.9091)) +(: cnet_atlocation_3eaa1f990f (AtLocation hydrogen chemistry_lab) (STV 1.0 0.9091)) +(: cnet_atlocation_cbe5d51cf8 (AtLocation hydrogen space) (STV 1.0 0.9091)) +(: cnet_atlocation_cf7f0ef983 (AtLocation hydrogen_atom space) (STV 1.0 0.9091)) +(: cnet_atlocation_533bef56f1 (AtLocation hymn_book church) (STV 1.0 0.9091)) +(: cnet_atlocation_18e9c63131 (AtLocation hype car_show) (STV 1.0 0.9091)) +(: cnet_atlocation_6b69678cff (AtLocation hypocrisy church) (STV 1.0 0.9091)) +(: cnet_atlocation_aeb12f4bc3 (AtLocation ice antarctica) (STV 1.0 0.9454)) +(: cnet_atlocation_6e88a552cd (AtLocation ice hockey_game) (STV 1.0 0.9339)) +(: cnet_atlocation_8411c5a55f (AtLocation ice_and_snow arctic) (STV 1.0 0.9091)) +(: cnet_atlocation_4fd32b01ed (AtLocation ice_berg arctic) (STV 1.0 0.9091)) +(: cnet_atlocation_578614ba34 (AtLocation ice_cream freezer) (STV 1.0 0.9608)) +(: cnet_atlocation_56e7fae95b (AtLocation ice_cube freezer) (STV 1.0 0.9524)) +(: cnet_atlocation_8a2e9c3ffc (AtLocation icebox kitchen) (STV 1.0 0.9572)) +(: cnet_atlocation_40e70239dd (AtLocation icecube freezer) (STV 1.0 0.9339)) +(: cnet_atlocation_70ec68a499 (AtLocation icon desktop) (STV 1.0 0.9091)) +(: cnet_atlocation_10b8eface1 (AtLocation icon ms_window_desktop) (STV 1.0 0.9091)) +(: cnet_atlocation_9ed976b5b9 (AtLocation idea brain) (STV 1.0 0.9091)) +(: cnet_atlocation_f03ecbdc21 (AtLocation idiot hockey_game) (STV 1.0 0.9091)) +(: cnet_atlocation_22ad2719c9 (AtLocation illegal_drug black_market) (STV 1.0 0.9091)) +(: cnet_atlocation_6825f44725 (AtLocation illegal_weapon black_market) (STV 1.0 0.9091)) +(: cnet_atlocation_374f227e97 (AtLocation illness brain) (STV 1.0 0.9091)) +(: cnet_atlocation_4839096242 (AtLocation illness hospital) (STV 1.0 0.9339)) +(: cnet_atlocation_256ff7262b (AtLocation in_charge meeting) (STV 1.0 0.9091)) +(: cnet_atlocation_e362a1cb3f (AtLocation inbox desk) (STV 1.0 0.9091)) +(: cnet_atlocation_b9f1a152e7 (AtLocation index_card library) (STV 1.0 0.9091)) +(: cnet_atlocation_0f8c31a22a (AtLocation index_card_cabinet library) (STV 1.0 0.9454)) +(: cnet_atlocation_eabb5022b0 (AtLocation index_card_cabinet office) (STV 1.0 0.9091)) +(: cnet_atlocation_0777cc8b5f (AtLocation indian_ocean asia) (STV 1.0 0.9091)) +(: cnet_atlocation_c9366e07ca (AtLocation indian_ocean east) (STV 1.0 0.9339)) +(: cnet_atlocation_0cfd6a7cb6 (AtLocation indian_ocean india) (STV 1.0 0.9339)) +(: cnet_atlocation_4c1250ec56 (AtLocation indian_restaurant india) (STV 1.0 0.9091)) +(: cnet_atlocation_d66deadcc8 (AtLocation industry big_city) (STV 1.0 0.9091)) +(: cnet_atlocation_c6cf1d1fdd (AtLocation industry factory) (STV 1.0 0.9091)) +(: cnet_atlocation_9672469a45 (AtLocation information book) (STV 1.0 0.9524)) +(: cnet_atlocation_26de2a793a (AtLocation information internet) (STV 1.0 0.9707)) +(: cnet_atlocation_6d82558a4d (AtLocation information library) (STV 1.0 0.9608)) +(: cnet_atlocation_42c2ea8929 (AtLocation information newspaper) (STV 1.0 0.9454)) +(: cnet_atlocation_7093b0e979 (AtLocation information television) (STV 1.0 0.9091)) +(: cnet_atlocation_18d37091b8 (AtLocation injury doctor_s_office) (STV 1.0 0.9091)) +(: cnet_atlocation_1bba8305cc (AtLocation injury emergency_room) (STV 1.0 0.9454)) +(: cnet_atlocation_73e569aa68 (AtLocation injury hockey_game) (STV 1.0 0.9339)) +(: cnet_atlocation_6bdf7b7e99 (AtLocation injury hospital) (STV 1.0 0.9091)) +(: cnet_atlocation_b3ed32547d (AtLocation ink fountain_pen) (STV 1.0 0.9091)) +(: cnet_atlocation_ab6c83bcc0 (AtLocation ink printer) (STV 1.0 0.9339)) +(: cnet_atlocation_1919506061 (AtLocation ink squid) (STV 1.0 0.9091)) +(: cnet_atlocation_4a53bb7702 (AtLocation inmate jail) (STV 1.0 0.9091)) +(: cnet_atlocation_116f7234c7 (AtLocation insect field) (STV 1.0 0.9091)) +(: cnet_atlocation_1af32e0c4e (AtLocation insect log) (STV 1.0 0.9091)) +(: cnet_atlocation_2abf2419d1 (AtLocation instrument case) (STV 1.0 0.9091)) +(: cnet_atlocation_7741e016e2 (AtLocation instrument laboratory) (STV 1.0 0.9091)) +(: cnet_atlocation_de91cb2cb2 (AtLocation instrument orchestra) (STV 1.0 0.9339)) +(: cnet_atlocation_546b7fff0c (AtLocation instrument_triangle orchestra) (STV 1.0 0.9091)) +(: cnet_atlocation_3c6d193668 (AtLocation insulation attic) (STV 1.0 0.9091)) +(: cnet_atlocation_8ccc5a5266 (AtLocation interior_area house) (STV 1.0 0.9091)) +(: cnet_atlocation_731c65ed11 (AtLocation intern desk) (STV 1.0 0.9091)) +(: cnet_atlocation_84e80e199f (AtLocation international_new newspaper) (STV 1.0 0.9091)) +(: cnet_atlocation_db496013e4 (AtLocation intersection city) (STV 1.0 0.9091)) +(: cnet_atlocation_5c300ea34c (AtLocation intersection city_street) (STV 1.0 0.9091)) +(: cnet_atlocation_62d7afb735 (AtLocation intersection corner_of_two_street) (STV 1.0 0.9572)) +(: cnet_atlocation_f8e9a8ab46 (AtLocation intersection place_where_two_street_meet) (STV 1.0 0.9091)) +(: cnet_atlocation_bda36a1451 (AtLocation intersection road) (STV 1.0 0.9454)) +(: cnet_atlocation_162c1d3415 (AtLocation intersection street_corner) (STV 1.0 0.9524)) +(: cnet_atlocation_831868eb1d (AtLocation interstate_highway america) (STV 1.0 0.9454)) +(: cnet_atlocation_18d9a8ea6b (AtLocation interstate_highway united_state) (STV 1.0 0.9339)) +(: cnet_atlocation_a36d286d32 (AtLocation inuit arctic) (STV 1.0 0.9339)) +(: cnet_atlocation_20cbe44f76 (AtLocation iron house) (STV 1.0 0.9091)) +(: cnet_atlocation_3ba8a3d462 (AtLocation iron laundry_room) (STV 1.0 0.9091)) +(: cnet_atlocation_b66190719a (AtLocation isle ocean) (STV 1.0 0.9339)) +(: cnet_atlocation_554577486c (AtLocation isle sea) (STV 1.0 0.9608)) +(: cnet_atlocation_7ff38b4fad (AtLocation italian_restaurant city) (STV 1.0 0.9608)) +(: cnet_atlocation_d74fe9dc72 (AtLocation item store) (STV 1.0 0.9091)) +(: cnet_atlocation_6d63a1e768 (AtLocation item_for_sale shop) (STV 1.0 0.9091)) +(: cnet_atlocation_539a9f89df (AtLocation jack trunk) (STV 1.0 0.9091)) +(: cnet_atlocation_4596061fb6 (AtLocation jacket closet) (STV 1.0 0.9091)) +(: cnet_atlocation_a235485909 (AtLocation jam jar) (STV 1.0 0.9524)) +(: cnet_atlocation_500a9fe222 (AtLocation jar cupboard) (STV 1.0 0.9091)) +(: cnet_atlocation_aa84ed3b2b (AtLocation jar kitchen_cupboard) (STV 1.0 0.9091)) +(: cnet_atlocation_7f2d3c73a6 (AtLocation jar pantry) (STV 1.0 0.9572)) +(: cnet_atlocation_9514d90ff7 (AtLocation jar refrigerator) (STV 1.0 0.9339)) +(: cnet_atlocation_cf2aa82986 (AtLocation jar_of_pickle supermarket) (STV 1.0 0.9339)) +(: cnet_atlocation_7833990387 (AtLocation jean closet) (STV 1.0 0.9339)) +(: cnet_atlocation_f6f61bb55c (AtLocation jean clothe_store) (STV 1.0 0.9339)) +(: cnet_atlocation_1e64f7b7b2 (AtLocation jean clothing_store) (STV 1.0 0.9091)) +(: cnet_atlocation_a2d2c105aa (AtLocation jean drawer) (STV 1.0 0.9339)) +(: cnet_atlocation_c4481754c1 (AtLocation jean gap) (STV 1.0 0.9454)) +(: cnet_atlocation_e2e33d9696 (AtLocation jean store) (STV 1.0 0.9339)) +(: cnet_atlocation_20916740e4 (AtLocation jean thrift_store) (STV 1.0 0.9454)) +(: cnet_atlocation_62719356bd (AtLocation jehovah_s_witness front_door) (STV 1.0 0.9091)) +(: cnet_atlocation_1bbccc969b (AtLocation jelly jar) (STV 1.0 0.9608)) +(: cnet_atlocation_5e8963d549 (AtLocation jelly refridgerator) (STV 1.0 0.9091)) +(: cnet_atlocation_71fffb65a8 (AtLocation jelly_bean jar) (STV 1.0 0.9339)) +(: cnet_atlocation_ee842890df (AtLocation jellyfish aquarium) (STV 1.0 0.9719)) +(: cnet_atlocation_7cf73191fa (AtLocation jellyfish atlantic_ocean) (STV 1.0 0.9339)) +(: cnet_atlocation_245dd1de55 (AtLocation jellyfish bay) (STV 1.0 0.9091)) +(: cnet_atlocation_ea48f3af4a (AtLocation jellyfish hawaii) (STV 1.0 0.9091)) +(: cnet_atlocation_87c298185f (AtLocation jellyfish japanese_restaurant) (STV 1.0 0.9339)) +(: cnet_atlocation_f12cd74f22 (AtLocation jellyfish mediterranean_sea) (STV 1.0 0.9091)) +(: cnet_atlocation_82833210f1 (AtLocation jellyfish monterey_bay) (STV 1.0 0.9091)) +(: cnet_atlocation_15953a376f (AtLocation jellyfish monterey_bay_aquarium) (STV 1.0 0.9091)) +(: cnet_atlocation_4d9150f85b (AtLocation jellyfish most_ocean) (STV 1.0 0.9786)) +(: cnet_atlocation_e6f9714fe0 (AtLocation jellyfish ocean_water) (STV 1.0 0.9091)) +(: cnet_atlocation_22ae658171 (AtLocation jellyfish pacific_ocean) (STV 1.0 0.9454)) +(: cnet_atlocation_efa27a16bb (AtLocation jellyfish salt_water) (STV 1.0 0.9091)) +(: cnet_atlocation_a609f43ae5 (AtLocation jellyfish store) (STV 1.0 0.9339)) +(: cnet_atlocation_5aed5c53ed (AtLocation jellyfish warm_ocean) (STV 1.0 0.9339)) +(: cnet_atlocation_28f09d7c89 (AtLocation jellyfish warm_ocean_water) (STV 1.0 0.9091)) +(: cnet_atlocation_3ba15aeaf0 (AtLocation jellyfish zoo) (STV 1.0 0.9454)) +(: cnet_atlocation_ae92fe70fd (AtLocation jet_fuel airport) (STV 1.0 0.9091)) +(: cnet_atlocation_f5747b3115 (AtLocation jewelry jewelry_box) (STV 1.0 0.9572)) +(: cnet_atlocation_59150ccdb4 (AtLocation jewelry safe) (STV 1.0 0.9091)) +(: cnet_atlocation_0be985e7f0 (AtLocation jewish_people synagogue) (STV 1.0 0.9572)) +(: cnet_atlocation_debcf7aed6 (AtLocation jewish_person synagogue) (STV 1.0 0.9524)) +(: cnet_atlocation_1398cc7f59 (AtLocation jewler jewlery_store) (STV 1.0 0.9091)) +(: cnet_atlocation_08ce84b1e0 (AtLocation jude synagogue) (STV 1.0 0.9091)) +(: cnet_atlocation_53ed8e8157 (AtLocation judge courtroom) (STV 1.0 0.9339)) +(: cnet_atlocation_d2fe387aee (AtLocation juice fridge) (STV 1.0 0.9091)) +(: cnet_atlocation_85b3845dd2 (AtLocation juice refrigerator) (STV 1.0 0.9339)) +(: cnet_atlocation_ba8d5d86e2 (AtLocation junk attic) (STV 1.0 0.9091)) +(: cnet_atlocation_ee7c4b3bfb (AtLocation junk bed) (STV 1.0 0.9339)) +(: cnet_atlocation_8b0d41813b (AtLocation junk drawer) (STV 1.0 0.9339)) +(: cnet_atlocation_309513dede (AtLocation junk_food fast_food_restaurant) (STV 1.0 0.9339)) +(: cnet_atlocation_cc1c66c53c (AtLocation junk_mail mail) (STV 1.0 0.9091)) +(: cnet_atlocation_3108c0ae67 (AtLocation junk_mail mail_box) (STV 1.0 0.9091)) +(: cnet_atlocation_42abb4d035 (AtLocation junk_mail waste_bin) (STV 1.0 0.9091)) +(: cnet_atlocation_76c57b72c8 (AtLocation kale farmer_s_market) (STV 1.0 0.9091)) +(: cnet_atlocation_19607e064c (AtLocation kangaroo australia) (STV 1.0 0.9524)) +(: cnet_atlocation_3631f3e7eb (AtLocation keepsake trunk) (STV 1.0 0.9091)) +(: cnet_atlocation_c4468a0834 (AtLocation keepsake box) (STV 1.0 0.9091)) +(: cnet_atlocation_68ea9b57a5 (AtLocation kelp ocean) (STV 1.0 0.9091)) +(: cnet_atlocation_72d2cf5f4b (AtLocation ketchup fridge) (STV 1.0 0.9091)) +(: cnet_atlocation_8ee86d17b1 (AtLocation ketchup refridgerator) (STV 1.0 0.9091)) +(: cnet_atlocation_c02bd0c1c6 (AtLocation kettle kitchen) (STV 1.0 0.9608)) +(: cnet_atlocation_9a6c8ba442 (AtLocation key keychain) (STV 1.0 0.9524)) +(: cnet_atlocation_d4e697eb0d (AtLocation key keyhole) (STV 1.0 0.9091)) +(: cnet_atlocation_7c492bc4e2 (AtLocation key pocket) (STV 1.0 0.9608)) +(: cnet_atlocation_84cad564f1 (AtLocation key purse) (STV 1.0 0.9339)) +(: cnet_atlocation_5966a48c89 (AtLocation key_case pocket) (STV 1.0 0.9339)) +(: cnet_atlocation_966457676f (AtLocation keyboard desk) (STV 1.0 0.9524)) +(: cnet_atlocation_9a28673cd8 (AtLocation keyboard office) (STV 1.0 0.9091)) +(: cnet_atlocation_d83f9875da (AtLocation keyboard_instrument band) (STV 1.0 0.9454)) +(: cnet_atlocation_044b9485f5 (AtLocation keyboard_instrument orchestra) (STV 1.0 0.9091)) +(: cnet_atlocation_8eb537f4b3 (AtLocation key piano) (STV 1.0 0.9091)) +(: cnet_atlocation_04aa2f5c63 (AtLocation key shelf) (STV 1.0 0.9091)) +(: cnet_atlocation_e44b4b892a (AtLocation kid_s_art_work fridge) (STV 1.0 0.9091)) +(: cnet_atlocation_c256962ed3 (AtLocation kid park) (STV 1.0 0.9091)) +(: cnet_atlocation_0136b08099 (AtLocation kiev ukraine) (STV 1.0 0.9091)) +(: cnet_atlocation_552aa7c5a9 (AtLocation killer death_row) (STV 1.0 0.9091)) +(: cnet_atlocation_a0a4cc0d95 (AtLocation killing war) (STV 1.0 0.9339)) +(: cnet_atlocation_1c9ab79d47 (AtLocation kinetic_energy moving_object) (STV 1.0 0.9091)) +(: cnet_atlocation_0b7c88c9f1 (AtLocation king castle) (STV 1.0 0.9339)) +(: cnet_atlocation_2aa88e2290 (AtLocation king court) (STV 1.0 0.9339)) +(: cnet_atlocation_09e229518f (AtLocation kingdom book) (STV 1.0 0.9091)) +(: cnet_atlocation_2fe70f23b9 (AtLocation kingdom europe) (STV 1.0 0.9572)) +(: cnet_atlocation_9806ecf3cd (AtLocation kingdom monarchy) (STV 1.0 0.9339)) +(: cnet_atlocation_b5e6771b7a (AtLocation kitchen friend_s_house) (STV 1.0 0.9091)) +(: cnet_atlocation_b5d0a2b2c8 (AtLocation kitchen resturant) (STV 1.0 0.9091)) +(: cnet_atlocation_f301bd429c (AtLocation kitchen_table furniture_store) (STV 1.0 0.9091)) +(: cnet_atlocation_325978cd21 (AtLocation kitchen_utensil sink) (STV 1.0 0.9339)) +(: cnet_atlocation_dfa05b125a (AtLocation kitchenette house) (STV 1.0 0.9091)) +(: cnet_atlocation_8158aeea0f (AtLocation kite air) (STV 1.0 0.9524)) +(: cnet_atlocation_92167292e5 (AtLocation kite sky) (STV 1.0 0.9091)) +(: cnet_atlocation_0ec22d18f4 (AtLocation kite toy_store) (STV 1.0 0.9454)) +(: cnet_atlocation_5cfff2ca80 (AtLocation kitten apartment) (STV 1.0 0.9339)) +(: cnet_atlocation_9160cd14a9 (AtLocation kitten bed) (STV 1.0 0.9608)) +(: cnet_atlocation_8bfe0fa02f (AtLocation kitten cage) (STV 1.0 0.9091)) +(: cnet_atlocation_3eb87a7068 (AtLocation kitten child_s_arm) (STV 1.0 0.9091)) +(: cnet_atlocation_3614dc3895 (AtLocation kitten farmhouse) (STV 1.0 0.9091)) +(: cnet_atlocation_6e660621c1 (AtLocation kitten floor) (STV 1.0 0.9091)) +(: cnet_atlocation_b346deb696 (AtLocation kitten kitchen) (STV 1.0 0.9339)) +(: cnet_atlocation_d408fc42dd (AtLocation kitten lap) (STV 1.0 0.9659)) +(: cnet_atlocation_4d8bb7db7c (AtLocation kitten litterbox) (STV 1.0 0.9091)) +(: cnet_atlocation_72f2944281 (AtLocation kitten little_girl_s_lap) (STV 1.0 0.9091)) +(: cnet_atlocation_726a2c43b6 (AtLocation kitten person_home) (STV 1.0 0.9091)) +(: cnet_atlocation_89ff8a3633 (AtLocation kitten petshop) (STV 1.0 0.9339)) +(: cnet_atlocation_a3c041068a (AtLocation kitten proximity_to_mother) (STV 1.0 0.9091)) +(: cnet_atlocation_5d73a561e7 (AtLocation kitten shelter) (STV 1.0 0.9091)) +(: cnet_atlocation_90e3d8ebd1 (AtLocation kitten veterinarian_s_office) (STV 1.0 0.9091)) +(: cnet_atlocation_62c1a90825 (AtLocation kitten veterinarian_office) (STV 1.0 0.9091)) +(: cnet_atlocation_b83851429b (AtLocation kitten warm_place) (STV 1.0 0.9339)) +(: cnet_atlocation_3381a5d527 (AtLocation kitten yard) (STV 1.0 0.9091)) +(: cnet_atlocation_affd8b9038 (AtLocation kitten zoo) (STV 1.0 0.9091)) +(: cnet_atlocation_5a4bdd9493 (AtLocation kleenex pocket) (STV 1.0 0.9339)) +(: cnet_atlocation_fc6264e093 (AtLocation knee table) (STV 1.0 0.9091)) +(: cnet_atlocation_68e2a42bad (AtLocation knick_knack shelf) (STV 1.0 0.9091)) +(: cnet_atlocation_2151fe093a (AtLocation knickknack drawer) (STV 1.0 0.9091)) +(: cnet_atlocation_10f00432c7 (AtLocation knife drawer) (STV 1.0 0.9572)) +(: cnet_atlocation_b9560c8f0a (AtLocation knife kitchen) (STV 1.0 0.9719)) +(: cnet_atlocation_8dbf3a6068 (AtLocation knife kitchen_drawer) (STV 1.0 0.9454)) +(: cnet_atlocation_0e87359476 (AtLocation knife pocket) (STV 1.0 0.9454)) +(: cnet_atlocation_96ea163305 (AtLocation knight castle) (STV 1.0 0.9454)) +(: cnet_atlocation_330fcf30de (AtLocation knight chess_board) (STV 1.0 0.9091)) +(: cnet_atlocation_f47587921c (AtLocation knight chess_set) (STV 1.0 0.9454)) +(: cnet_atlocation_48d2ad2573 (AtLocation knight historical_novel) (STV 1.0 0.9339)) +(: cnet_atlocation_bc2bc2ba66 (AtLocation knight_in_castle midieval_time) (STV 1.0 0.9091)) +(: cnet_atlocation_5b5e9ce82e (AtLocation knive kitchen) (STV 1.0 0.9572)) +(: cnet_atlocation_d408ad1461 (AtLocation knive store) (STV 1.0 0.9339)) +(: cnet_atlocation_610cefe418 (AtLocation knob door) (STV 1.0 0.9608)) +(: cnet_atlocation_87f493c025 (AtLocation knowledge encyclopedia) (STV 1.0 0.9091)) +(: cnet_atlocation_07eac5be58 (AtLocation knuckle finger) (STV 1.0 0.9091)) +(: cnet_atlocation_192db07fde (AtLocation koala eucalyptus) (STV 1.0 0.9339)) +(: cnet_atlocation_326db22b88 (AtLocation koala eucalyptus_tree_in_australia) (STV 1.0 0.9572)) +(: cnet_atlocation_a3435ca3bf (AtLocation koala jungle) (STV 1.0 0.9339)) +(: cnet_atlocation_aec30750f2 (AtLocation koala natural_habitat) (STV 1.0 0.9091)) +(: cnet_atlocation_d0b85dfac6 (AtLocation koala queensland) (STV 1.0 0.9091)) +(: cnet_atlocation_08b5ea534d (AtLocation koala wood) (STV 1.0 0.9091)) +(: cnet_atlocation_1fd5a3cfc0 (AtLocation kosher_deli jerusalem) (STV 1.0 0.9091)) +(: cnet_atlocation_f9d1fd1685 (AtLocation kosher_deli jewish_neighborhood) (STV 1.0 0.9091)) +(: cnet_atlocation_a19e4a974c (AtLocation kosher_deli new_york) (STV 1.0 0.9524)) +(: cnet_atlocation_b5a32f8c09 (AtLocation kosher_deli new_york_city) (STV 1.0 0.9339)) +(: cnet_atlocation_2223e027fe (AtLocation kosher_delicatessen new_york_city) (STV 1.0 0.9339)) +(: cnet_atlocation_2c23cbe3ff (AtLocation kosher_restaurant jewish_neighborhood) (STV 1.0 0.9091)) +(: cnet_atlocation_dd182a1401 (AtLocation kosher_restaurant new_york) (STV 1.0 0.9339)) +(: cnet_atlocation_dfe17888d3 (AtLocation kosher_restaurant new_york_city) (STV 1.0 0.9454)) +(: cnet_atlocation_42fc26949d (AtLocation label_maker mail_room) (STV 1.0 0.9091)) +(: cnet_atlocation_a56d57d883 (AtLocation label_maker office) (STV 1.0 0.9091)) +(: cnet_atlocation_454eceb068 (AtLocation labeler desk) (STV 1.0 0.9091)) +(: cnet_atlocation_b63cf17d1e (AtLocation labeler supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_a3b747f177 (AtLocation ladder garage) (STV 1.0 0.9636)) +(: cnet_atlocation_eb1bb763c7 (AtLocation ladder hardware_store) (STV 1.0 0.9339)) +(: cnet_atlocation_4561df3a2e (AtLocation lady church) (STV 1.0 0.9091)) +(: cnet_atlocation_3937cedd20 (AtLocation lady supermarket) (STV 1.0 0.9339)) +(: cnet_atlocation_4464af3221 (AtLocation lake countryside) (STV 1.0 0.9091)) +(: cnet_atlocation_b50f41978c (AtLocation lake michigan) (STV 1.0 0.9091)) +(: cnet_atlocation_6ef06579be (AtLocation lake mountain) (STV 1.0 0.9091)) +(: cnet_atlocation_57480d7b54 (AtLocation lake park) (STV 1.0 0.9091)) +(: cnet_atlocation_ba420f19bd (AtLocation lamp bedroom) (STV 1.0 0.9339)) +(: cnet_atlocation_746f375e3e (AtLocation lamp building) (STV 1.0 0.9339)) +(: cnet_atlocation_ee1e396d85 (AtLocation lamp corner) (STV 1.0 0.9091)) +(: cnet_atlocation_4c37642b76 (AtLocation lamp desk) (STV 1.0 0.9524)) +(: cnet_atlocation_a73b895aa4 (AtLocation lamp desktop) (STV 1.0 0.9524)) +(: cnet_atlocation_939589b544 (AtLocation lamp house) (STV 1.0 0.9636)) +(: cnet_atlocation_861319ab50 (AtLocation lamp office) (STV 1.0 0.9339)) +(: cnet_atlocation_17fba2f94b (AtLocation lamp store) (STV 1.0 0.9454)) +(: cnet_atlocation_6474a71538 (AtLocation lamp table) (STV 1.0 0.9524)) +(: cnet_atlocation_019725b936 (AtLocation lamp_post street) (STV 1.0 0.9454)) +(: cnet_atlocation_6a175210a2 (AtLocation lamp_post street_corner) (STV 1.0 0.9454)) +(: cnet_atlocation_f8a9b16735 (AtLocation land country) (STV 1.0 0.9608)) +(: cnet_atlocation_c38e0a3880 (AtLocation land ocean) (STV 1.0 0.9091)) +(: cnet_atlocation_3276bd3466 (AtLocation land_mass surface_of_earth) (STV 1.0 0.9091)) +(: cnet_atlocation_aaf8ce2d1f (AtLocation landing stairwell) (STV 1.0 0.9091)) +(: cnet_atlocation_a2dcf2b635 (AtLocation landlord apartment) (STV 1.0 0.9339)) +(: cnet_atlocation_8aea0077a8 (AtLocation landmass atla) (STV 1.0 0.9339)) +(: cnet_atlocation_c7099b206e (AtLocation lane bowling_alley) (STV 1.0 0.9091)) +(: cnet_atlocation_f4da799609 (AtLocation lane_marking street) (STV 1.0 0.9091)) +(: cnet_atlocation_fdba4c3f8c (AtLocation lantern house) (STV 1.0 0.9091)) +(: cnet_atlocation_42882e7918 (AtLocation large_city_shopping_mall london) (STV 1.0 0.9339)) +(: cnet_atlocation_881fcb8914 (AtLocation large_container supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_775e5cef34 (AtLocation large_container warehouse) (STV 1.0 0.9091)) +(: cnet_atlocation_0e98f573de (AtLocation large_food_store city) (STV 1.0 0.9659)) +(: cnet_atlocation_2da3059fa8 (AtLocation large_food_store large_city) (STV 1.0 0.9339)) +(: cnet_atlocation_bbc4d9586e (AtLocation large_food_store michigan) (STV 1.0 0.9091)) +(: cnet_atlocation_b258deefc8 (AtLocation large_food_store midwestern_u_s) (STV 1.0 0.9091)) +(: cnet_atlocation_bd4bc99f2e (AtLocation large_food_store populous_area) (STV 1.0 0.9091)) +(: cnet_atlocation_573662a06c (AtLocation large_food_store suburb) (STV 1.0 0.9339)) +(: cnet_atlocation_5479860120 (AtLocation large_ship sea) (STV 1.0 0.9091)) +(: cnet_atlocation_dc84ca21e9 (AtLocation large_supermarket city) (STV 1.0 0.9091)) +(: cnet_atlocation_92899942aa (AtLocation large_wave ocean) (STV 1.0 0.9091)) +(: cnet_atlocation_4ada5f56e4 (AtLocation las_vega casino) (STV 1.0 0.9339)) +(: cnet_atlocation_a6b91148b1 (AtLocation lasagna freezer) (STV 1.0 0.9091)) +(: cnet_atlocation_dc6639506d (AtLocation lasagna plate) (STV 1.0 0.9339)) +(: cnet_atlocation_dc713ae14a (AtLocation laser cd_player) (STV 1.0 0.9339)) +(: cnet_atlocation_d04c26fb0d (AtLocation laser laboratory) (STV 1.0 0.9091)) +(: cnet_atlocation_c39a40a143 (AtLocation launch_pad cape_kennedy) (STV 1.0 0.9454)) +(: cnet_atlocation_e258b473bf (AtLocation launch_pad space_center) (STV 1.0 0.9091)) +(: cnet_atlocation_f79dbce29d (AtLocation launch_platform cape_canaveral) (STV 1.0 0.9091)) +(: cnet_atlocation_c219e08188 (AtLocation launch_platform nasa) (STV 1.0 0.9339)) +(: cnet_atlocation_65badcf023 (AtLocation launching_pad nasa) (STV 1.0 0.9091)) +(: cnet_atlocation_5ccee5c960 (AtLocation laundry_room apartment_building) (STV 1.0 0.9091)) +(: cnet_atlocation_314f4fc1f6 (AtLocation laundry_room house) (STV 1.0 0.9091)) +(: cnet_atlocation_994b81541e (AtLocation lava volcano) (STV 1.0 0.9339)) +(: cnet_atlocation_0570becba0 (AtLocation lawn suburb) (STV 1.0 0.9091)) +(: cnet_atlocation_c7be318692 (AtLocation lawn united_state) (STV 1.0 0.9091)) +(: cnet_atlocation_59943141d6 (AtLocation lawn yard) (STV 1.0 0.9454)) +(: cnet_atlocation_0143359667 (AtLocation lawn_chair lawn) (STV 1.0 0.9091)) +(: cnet_atlocation_a7cca3dd7f (AtLocation lawn_mower garage) (STV 1.0 0.9756)) +(: cnet_atlocation_f88609a1ca (AtLocation lawn_mower shed) (STV 1.0 0.9091)) +(: cnet_atlocation_fe5d26cdea (AtLocation lawn_ornament lawn) (STV 1.0 0.9091)) +(: cnet_atlocation_2594936b4e (AtLocation lawnmower garage) (STV 1.0 0.9339)) +(: cnet_atlocation_6164021f0b (AtLocation lawyer courtroom) (STV 1.0 0.9091)) +(: cnet_atlocation_8c1907648d (AtLocation lazy_boyfriend bed) (STV 1.0 0.9091)) +(: cnet_atlocation_a849abd43b (AtLocation lead_pencil classroom) (STV 1.0 0.9091)) +(: cnet_atlocation_40c8e59b66 (AtLocation lead_pencil desk) (STV 1.0 0.9091)) +(: cnet_atlocation_0907996896 (AtLocation lead_pencil school) (STV 1.0 0.9091)) +(: cnet_atlocation_0645bb7196 (AtLocation lead_pencil school_supply_section_of_store) (STV 1.0 0.9339)) +(: cnet_atlocation_c627d023f4 (AtLocation leader army) (STV 1.0 0.9091)) +(: cnet_atlocation_6f3921ef23 (AtLocation leader country) (STV 1.0 0.9091)) +(: cnet_atlocation_05ab810241 (AtLocation leader pack) (STV 1.0 0.9091)) +(: cnet_atlocation_ef06e212aa (AtLocation leaf forrest) (STV 1.0 0.9091)) +(: cnet_atlocation_32a3bbeda8 (AtLocation leaf tree) (STV 1.0 0.9572)) +(: cnet_atlocation_de154241a2 (AtLocation leather cobbler_s_shop) (STV 1.0 0.9091)) +(: cnet_atlocation_972f313b7a (AtLocation leather stable) (STV 1.0 0.9091)) +(: cnet_atlocation_0b3c68454c (AtLocation leave roof) (STV 1.0 0.9339)) +(: cnet_atlocation_dc4bfb6624 (AtLocation leave street) (STV 1.0 0.9091)) +(: cnet_atlocation_9c83456671 (AtLocation leave tree) (STV 1.0 0.9454)) +(: cnet_atlocation_a210a567c2 (AtLocation led electronic_equipment) (STV 1.0 0.9091)) +(: cnet_atlocation_12e089d139 (AtLocation ledger accountant_s_office) (STV 1.0 0.9091)) +(: cnet_atlocation_08354e84bd (AtLocation left_over fridge) (STV 1.0 0.9524)) +(: cnet_atlocation_064ce68ec7 (AtLocation leftover container) (STV 1.0 0.9091)) +(: cnet_atlocation_7f471ae037 (AtLocation leftover fridge) (STV 1.0 0.9091)) +(: cnet_atlocation_1a9169c0ea (AtLocation leftover refrigerator) (STV 1.0 0.9339)) +(: cnet_atlocation_1939fc67fd (AtLocation leg bucket_of_chicken) (STV 1.0 0.9339)) +(: cnet_atlocation_1a9b16491d (AtLocation lego toy_store) (STV 1.0 0.9339)) +(: cnet_atlocation_72972c0e9a (AtLocation leg table) (STV 1.0 0.9608)) +(: cnet_atlocation_90520bb5e3 (AtLocation lemon_peel bar) (STV 1.0 0.9091)) +(: cnet_atlocation_014d1d079f (AtLocation lemur cage) (STV 1.0 0.9339)) +(: cnet_atlocation_db3f8e0487 (AtLocation lemur forrest) (STV 1.0 0.9091)) +(: cnet_atlocation_ff4bceaadd (AtLocation lemur hole) (STV 1.0 0.9524)) +(: cnet_atlocation_fa6fc4a34e (AtLocation lemur india) (STV 1.0 0.9454)) +(: cnet_atlocation_a043d32015 (AtLocation lemur madagascar_forest) (STV 1.0 0.9091)) +(: cnet_atlocation_87abbe02d2 (AtLocation lemur rain_forest) (STV 1.0 0.9524)) +(: cnet_atlocation_917575539e (AtLocation lemur tree_of_madagascar) (STV 1.0 0.9091)) +(: cnet_atlocation_f293a02076 (AtLocation lemur wild) (STV 1.0 0.9091)) +(: cnet_atlocation_652d2123aa (AtLocation len camera) (STV 1.0 0.9636)) +(: cnet_atlocation_d2e58534b3 (AtLocation len microscope) (STV 1.0 0.9091)) +(: cnet_atlocation_6a757db083 (AtLocation len telescope) (STV 1.0 0.9091)) +(: cnet_atlocation_31210f07a9 (AtLocation letter alphabet) (STV 1.0 0.9091)) +(: cnet_atlocation_1900cb4596 (AtLocation letter envelope) (STV 1.0 0.9339)) +(: cnet_atlocation_4dfa5f7bb5 (AtLocation letter mail) (STV 1.0 0.9091)) +(: cnet_atlocation_07e53f241c (AtLocation letter mail_box) (STV 1.0 0.9091)) +(: cnet_atlocation_69dd105055 (AtLocation letter post_office) (STV 1.0 0.9339)) +(: cnet_atlocation_80b276612b (AtLocation letter_from_parent mail) (STV 1.0 0.9091)) +(: cnet_atlocation_b7118b9c72 (AtLocation letter_opener office) (STV 1.0 0.9091)) +(: cnet_atlocation_5074eb204d (AtLocation letter_slot post_office) (STV 1.0 0.9524)) +(: cnet_atlocation_38e3f22af2 (AtLocation letter_from_friend mail_box) (STV 1.0 0.9091)) +(: cnet_atlocation_01700d3f1e (AtLocation letter_to_editor newspaper) (STV 1.0 0.9091)) +(: cnet_atlocation_8d8ba663de (AtLocation lettuce farmer_s_market) (STV 1.0 0.9091)) +(: cnet_atlocation_9293b7e4c7 (AtLocation lettuce refrigerator) (STV 1.0 0.9339)) +(: cnet_atlocation_4f8430eaee (AtLocation lettuce salad) (STV 1.0 0.9091)) +(: cnet_atlocation_4dee2b5dbb (AtLocation lettuce supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_3ff6747c00 (AtLocation librarian library) (STV 1.0 0.9659)) +(: cnet_atlocation_4ba0214284 (AtLocation library school) (STV 1.0 0.9524)) +(: cnet_atlocation_392956a6cc (AtLocation library town) (STV 1.0 0.9572)) +(: cnet_atlocation_4870f622c7 (AtLocation life earth) (STV 1.0 0.9339)) +(: cnet_atlocation_a9e626082b (AtLocation life surface_of_earth) (STV 1.0 0.9091)) +(: cnet_atlocation_ebff6a8f7a (AtLocation lifeguard beach) (STV 1.0 0.9091)) +(: cnet_atlocation_2eff56dae7 (AtLocation lifeguard swimming_pool) (STV 1.0 0.9091)) +(: cnet_atlocation_a03f0621c8 (AtLocation light attic) (STV 1.0 0.9091)) +(: cnet_atlocation_ec0d8817c0 (AtLocation light desk) (STV 1.0 0.9339)) +(: cnet_atlocation_33718a95c9 (AtLocation light_pole street) (STV 1.0 0.9091)) +(: cnet_atlocation_5657aa9017 (AtLocation light_pole street_corner) (STV 1.0 0.9091)) +(: cnet_atlocation_ad224f5d26 (AtLocation light_post street_corner) (STV 1.0 0.9091)) +(: cnet_atlocation_d12512c92f (AtLocation light building) (STV 1.0 0.9091)) +(: cnet_atlocation_c88c693ecd (AtLocation light plane) (STV 1.0 0.9091)) +(: cnet_atlocation_d78803855f (AtLocation lima_bean supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_514590f5ab (AtLocation line bank) (STV 1.0 0.9091)) +(: cnet_atlocation_7bf7c606f5 (AtLocation line bus_stop) (STV 1.0 0.9091)) +(: cnet_atlocation_3428f0e0d9 (AtLocation line graph) (STV 1.0 0.9339)) +(: cnet_atlocation_edf2e3b567 (AtLocation line post_office) (STV 1.0 0.9091)) +(: cnet_atlocation_88417fab93 (AtLocation line store) (STV 1.0 0.9091)) +(: cnet_atlocation_01691fc84b (AtLocation linen cabinet) (STV 1.0 0.9091)) +(: cnet_atlocation_d650e3e6e2 (AtLocation linen closet) (STV 1.0 0.9339)) +(: cnet_atlocation_28f8c5018e (AtLocation linen dresser_drawer) (STV 1.0 0.9091)) +(: cnet_atlocation_6ac107429f (AtLocation linen linen_closet) (STV 1.0 0.9339)) +(: cnet_atlocation_a2cec01510 (AtLocation linen_chest bedroom) (STV 1.0 0.9091)) +(: cnet_atlocation_6ef8f44d3c (AtLocation linen_chest closet) (STV 1.0 0.9091)) +(: cnet_atlocation_c701128c82 (AtLocation linen_chest house) (STV 1.0 0.9091)) +(: cnet_atlocation_8937783f81 (AtLocation linen_closet hallway) (STV 1.0 0.9339)) +(: cnet_atlocation_3600daa754 (AtLocation linen_closet home) (STV 1.0 0.9339)) +(: cnet_atlocation_5494403739 (AtLocation linen_closet house) (STV 1.0 0.9091)) +(: cnet_atlocation_a3d2c8b67b (AtLocation line street) (STV 1.0 0.9524)) +(: cnet_atlocation_eec998386f (AtLocation linoleum floor) (STV 1.0 0.9454)) +(: cnet_atlocation_82981f8a54 (AtLocation linoleum kitchen) (STV 1.0 0.9608)) +(: cnet_atlocation_7e975c06a6 (AtLocation lint pocket) (STV 1.0 0.9572)) +(: cnet_atlocation_1dad7c6676 (AtLocation lint purse) (STV 1.0 0.9339)) +(: cnet_atlocation_c4f1696ea7 (AtLocation linux computer) (STV 1.0 0.9091)) +(: cnet_atlocation_d81021df31 (AtLocation lion africa) (STV 1.0 0.9454)) +(: cnet_atlocation_0e182d6fc2 (AtLocation lion veldt) (STV 1.0 0.9091)) +(: cnet_atlocation_0c0552e92a (AtLocation lion zoo) (STV 1.0 0.9339)) +(: cnet_atlocation_cd4aeaea4f (AtLocation lip mouth) (STV 1.0 0.9339)) +(: cnet_atlocation_a694f288ca (AtLocation lip face) (STV 1.0 0.9454)) +(: cnet_atlocation_4c7808a698 (AtLocation lipstick purse) (STV 1.0 0.9091)) +(: cnet_atlocation_854fa34c1f (AtLocation lipstick_case purse) (STV 1.0 0.9091)) +(: cnet_atlocation_3d4ba0303d (AtLocation liquid container) (STV 1.0 0.9091)) +(: cnet_atlocation_2bdadc8c87 (AtLocation liquor bar) (STV 1.0 0.9091)) +(: cnet_atlocation_023c0e488a (AtLocation liquor_glass bar) (STV 1.0 0.9091)) +(: cnet_atlocation_0edb9c8cac (AtLocation liquor_glass barroom) (STV 1.0 0.9091)) +(: cnet_atlocation_757a2a4352 (AtLocation liquor_glass pub) (STV 1.0 0.9454)) +(: cnet_atlocation_b714c7615d (AtLocation list_of_appointment briefcase) (STV 1.0 0.9091)) +(: cnet_atlocation_9aa5c8ec8c (AtLocation list_of_thing_to_do desk) (STV 1.0 0.9091)) +(: cnet_atlocation_1ae992c731 (AtLocation literature library) (STV 1.0 0.9748)) +(: cnet_atlocation_a4d653e8f7 (AtLocation litter park) (STV 1.0 0.9454)) +(: cnet_atlocation_7c0388c618 (AtLocation living_room apartment) (STV 1.0 0.9339)) +(: cnet_atlocation_21df66c4e0 (AtLocation living_room home) (STV 1.0 0.9091)) +(: cnet_atlocation_e47941319e (AtLocation lizard arid_region) (STV 1.0 0.9091)) +(: cnet_atlocation_02b41f8367 (AtLocation lizard bermuda) (STV 1.0 0.9091)) +(: cnet_atlocation_22b96b29dc (AtLocation lizard book) (STV 1.0 0.9091)) +(: cnet_atlocation_1ca3788a8d (AtLocation lizard bush) (STV 1.0 0.9636)) +(: cnet_atlocation_d43f70fb22 (AtLocation lizard bushe) (STV 1.0 0.9091)) +(: cnet_atlocation_b2e77cafbd (AtLocation lizard cage) (STV 1.0 0.9091)) +(: cnet_atlocation_69337ab40f (AtLocation lizard california) (STV 1.0 0.9524)) +(: cnet_atlocation_47dbbe549b (AtLocation lizard china) (STV 1.0 0.9454)) +(: cnet_atlocation_13edd837c7 (AtLocation lizard dessert) (STV 1.0 0.9608)) +(: cnet_atlocation_e6b7ad7f74 (AtLocation lizard dry_rocky_area) (STV 1.0 0.9339)) +(: cnet_atlocation_2f4691941a (AtLocation lizard forrest) (STV 1.0 0.9091)) +(: cnet_atlocation_d1f40527bc (AtLocation lizard garden) (STV 1.0 0.9693)) +(: cnet_atlocation_309132776e (AtLocation lizard hot_place) (STV 1.0 0.9091)) +(: cnet_atlocation_f90a9ce7ca (AtLocation lizard house) (STV 1.0 0.9339)) +(: cnet_atlocation_4549c3dc27 (AtLocation lizard italy) (STV 1.0 0.9091)) +(: cnet_atlocation_8793635770 (AtLocation lizard lizard_cage) (STV 1.0 0.9091)) +(: cnet_atlocation_7095fdce1c (AtLocation lizard new_mexico) (STV 1.0 0.9339)) +(: cnet_atlocation_06ab15ab85 (AtLocation lizard reptile_house) (STV 1.0 0.9339)) +(: cnet_atlocation_ca3ae76f32 (AtLocation lizard rock) (STV 1.0 0.9091)) +(: cnet_atlocation_329601e17c (AtLocation lizard sun) (STV 1.0 0.9091)) +(: cnet_atlocation_0cc8cb8d49 (AtLocation lizard tropic) (STV 1.0 0.9339)) +(: cnet_atlocation_0b629dd3f9 (AtLocation lizard utah) (STV 1.0 0.9091)) +(: cnet_atlocation_13160289b2 (AtLocation lizard wild) (STV 1.0 0.9091)) +(: cnet_atlocation_23420a008a (AtLocation lizard yard) (STV 1.0 0.9091)) +(: cnet_atlocation_67e02096a5 (AtLocation loaf breadbox) (STV 1.0 0.9339)) +(: cnet_atlocation_ac8b47398f (AtLocation loaf_of_bread breadbox) (STV 1.0 0.9091)) +(: cnet_atlocation_0303ec99cc (AtLocation lobster ocean) (STV 1.0 0.9524)) +(: cnet_atlocation_78cc1ea3cc (AtLocation lobster water) (STV 1.0 0.9091)) +(: cnet_atlocation_6abff03e3f (AtLocation lock door) (STV 1.0 0.9572)) +(: cnet_atlocation_b662a7c540 (AtLocation lock front_door) (STV 1.0 0.9339)) +(: cnet_atlocation_7ecc6216d7 (AtLocation lock gate) (STV 1.0 0.9091)) +(: cnet_atlocation_5a7061a0c5 (AtLocation locker_room gymnasium) (STV 1.0 0.9339)) +(: cnet_atlocation_75b0a316d2 (AtLocation locker_room health_club) (STV 1.0 0.9339)) +(: cnet_atlocation_08ca2529ea (AtLocation loft soho) (STV 1.0 0.9091)) +(: cnet_atlocation_aa2fd2b326 (AtLocation loge_seat theater) (STV 1.0 0.9091)) +(: cnet_atlocation_b30fd26456 (AtLocation logic school) (STV 1.0 0.9091)) +(: cnet_atlocation_b29031915e (AtLocation long_line airport) (STV 1.0 0.9091)) +(: cnet_atlocation_5f4cce9368 (AtLocation loose_change pocket) (STV 1.0 0.9524)) +(: cnet_atlocation_0d29fd8d45 (AtLocation loose_shingle roof) (STV 1.0 0.9339)) +(: cnet_atlocation_ccd7587d9f (AtLocation lost_child park) (STV 1.0 0.9091)) +(: cnet_atlocation_9edca53910 (AtLocation lost_item bed) (STV 1.0 0.9091)) +(: cnet_atlocation_d4e384c14b (AtLocation lost_sock bed) (STV 1.0 0.9091)) +(: cnet_atlocation_52e1ec0abf (AtLocation lot_of_book library) (STV 1.0 0.9091)) +(: cnet_atlocation_581dd4f977 (AtLocation lot_of_car mall) (STV 1.0 0.9091)) +(: cnet_atlocation_97d9128c9d (AtLocation lot_of_crap television) (STV 1.0 0.9091)) +(: cnet_atlocation_862551f18b (AtLocation lot_of_speaker concert) (STV 1.0 0.9091)) +(: cnet_atlocation_b34b3ff4f3 (AtLocation love family) (STV 1.0 0.9572)) +(: cnet_atlocation_db8540a955 (AtLocation love marriage) (STV 1.0 0.9524)) +(: cnet_atlocation_88eb46cb0a (AtLocation low_gravity moon) (STV 1.0 0.9339)) +(: cnet_atlocation_c065b106b6 (AtLocation luggage bus_stop) (STV 1.0 0.9091)) +(: cnet_atlocation_ae2c071d4d (AtLocation luggage closet) (STV 1.0 0.9091)) +(: cnet_atlocation_50ba5541fa (AtLocation luggage trunk) (STV 1.0 0.9339)) +(: cnet_atlocation_78d0128b08 (AtLocation lunch_room school) (STV 1.0 0.9091)) +(: cnet_atlocation_426a2c704e (AtLocation macaroni supermarket) (STV 1.0 0.9339)) +(: cnet_atlocation_5d3f6f3ae5 (AtLocation machine barn) (STV 1.0 0.9091)) +(: cnet_atlocation_de48ac5c76 (AtLocation machine house) (STV 1.0 0.9091)) +(: cnet_atlocation_da0781e838 (AtLocation machine industrial_area) (STV 1.0 0.9091)) +(: cnet_atlocation_5f39f7c7b7 (AtLocation machine laboratory) (STV 1.0 0.9091)) +(: cnet_atlocation_91d2fc1723 (AtLocation machine museum) (STV 1.0 0.9091)) +(: cnet_atlocation_f7d52e464c (AtLocation machine office) (STV 1.0 0.9091)) +(: cnet_atlocation_6f4fff9fdd (AtLocation machine_gun armory) (STV 1.0 0.9091)) +(: cnet_atlocation_7d3f8a6e6d (AtLocation machine_gun arsenal) (STV 1.0 0.9091)) +(: cnet_atlocation_9977c30c2e (AtLocation magazine bed) (STV 1.0 0.9091)) +(: cnet_atlocation_668f2045ca (AtLocation magazine library) (STV 1.0 0.9091)) +(: cnet_atlocation_8af76eb214 (AtLocation magazine bookstore) (STV 1.0 0.9091)) +(: cnet_atlocation_6de7a726ee (AtLocation magazine doctor) (STV 1.0 0.9339)) +(: cnet_atlocation_7c28a3d87b (AtLocation magazine market) (STV 1.0 0.9091)) +(: cnet_atlocation_c482a778ea (AtLocation magazine table) (STV 1.0 0.9339)) +(: cnet_atlocation_e5bce0a62e (AtLocation magazine train_station) (STV 1.0 0.9091)) +(: cnet_atlocation_a96b0725ce (AtLocation magnet fridge) (STV 1.0 0.9091)) +(: cnet_atlocation_43547b7be9 (AtLocation magnet speaker) (STV 1.0 0.9091)) +(: cnet_atlocation_18ca3fd195 (AtLocation magnetic_poetry fridge) (STV 1.0 0.9091)) +(: cnet_atlocation_3956f77510 (AtLocation maid hotel) (STV 1.0 0.9091)) +(: cnet_atlocation_f266e61120 (AtLocation maid at_hotel) (STV 1.0 0.9091)) +(: cnet_atlocation_d186c24f19 (AtLocation mail house) (STV 1.0 0.9339)) +(: cnet_atlocation_e143e40b9a (AtLocation mail mail_box) (STV 1.0 0.9608)) +(: cnet_atlocation_04e679911f (AtLocation mail post_office) (STV 1.0 0.9091)) +(: cnet_atlocation_d9adb04c8e (AtLocation mail table) (STV 1.0 0.9339)) +(: cnet_atlocation_50dd1d32d9 (AtLocation mail_box street_corner) (STV 1.0 0.9091)) +(: cnet_atlocation_d7da16e5b5 (AtLocation mailbox apartment_complex) (STV 1.0 0.9091)) +(: cnet_atlocation_a74b9b7f49 (AtLocation mailbox porch) (STV 1.0 0.9091)) +(: cnet_atlocation_18acd6816e (AtLocation mailbox post_office) (STV 1.0 0.9572)) +(: cnet_atlocation_bc14c5f958 (AtLocation mailbox street_corner) (STV 1.0 0.9091)) +(: cnet_atlocation_08cdc97ecb (AtLocation mailboxe apartment) (STV 1.0 0.9091)) +(: cnet_atlocation_f1f3bafb8c (AtLocation mailman front_door) (STV 1.0 0.9454)) +(: cnet_atlocation_3de9036a7f (AtLocation mailman post_office) (STV 1.0 0.9454)) +(: cnet_atlocation_7b6aae58cf (AtLocation main_artery body) (STV 1.0 0.9454)) +(: cnet_atlocation_a9854316d3 (AtLocation main_artery organism_with_heart) (STV 1.0 0.9091)) +(: cnet_atlocation_eb89fcc1b2 (AtLocation main_entrance building) (STV 1.0 0.9339)) +(: cnet_atlocation_734ef08366 (AtLocation main_entrance public_building) (STV 1.0 0.9339)) +(: cnet_atlocation_93c74e3a1c (AtLocation mall city) (STV 1.0 0.9091)) +(: cnet_atlocation_b7f7640a0e (AtLocation mall suburb) (STV 1.0 0.9091)) +(: cnet_atlocation_4715500573 (AtLocation mall town) (STV 1.0 0.9091)) +(: cnet_atlocation_97d7f49d8b (AtLocation mammoth ancient_time) (STV 1.0 0.9339)) +(: cnet_atlocation_30ff7fa5ed (AtLocation mammoth forest) (STV 1.0 0.9339)) +(: cnet_atlocation_be8ea9b264 (AtLocation mammoth fossil_bed) (STV 1.0 0.9091)) +(: cnet_atlocation_26360aa12d (AtLocation mammoth frozen_tundra) (STV 1.0 0.9454)) +(: cnet_atlocation_36081e7299 (AtLocation mammoth ground) (STV 1.0 0.9091)) +(: cnet_atlocation_b3d0df6437 (AtLocation mammoth ice_age) (STV 1.0 0.9524)) +(: cnet_atlocation_d3479091c2 (AtLocation mammoth movie) (STV 1.0 0.9091)) +(: cnet_atlocation_893e581b0c (AtLocation mammoth museum_exhibit) (STV 1.0 0.9091)) +(: cnet_atlocation_31e324118a (AtLocation mammoth museum_of_natural_history) (STV 1.0 0.9091)) +(: cnet_atlocation_2e13101c22 (AtLocation mammoth prehistoric_time) (STV 1.0 0.9091)) +(: cnet_atlocation_6b2c476d92 (AtLocation mammoth prehistory) (STV 1.0 0.9091)) +(: cnet_atlocation_8a8a0829cc (AtLocation mammoth siberian_tundra) (STV 1.0 0.9091)) +(: cnet_atlocation_772b78a4af (AtLocation mammoth tar_pit) (STV 1.0 0.9091)) +(: cnet_atlocation_ed838cc29a (AtLocation mammoth wild) (STV 1.0 0.9091)) +(: cnet_atlocation_314d8394ed (AtLocation mammoth zoo) (STV 1.0 0.9091)) +(: cnet_atlocation_c94477a3af (AtLocation mandolin instrument_case) (STV 1.0 0.9091)) +(: cnet_atlocation_40aa1cc461 (AtLocation manhole_cover street) (STV 1.0 0.9091)) +(: cnet_atlocation_787b373009 (AtLocation manure zoo) (STV 1.0 0.9091)) +(: cnet_atlocation_43ac10c29f (AtLocation many_book library) (STV 1.0 0.9091)) +(: cnet_atlocation_67f5004841 (AtLocation many_people sporting_event) (STV 1.0 0.9091)) +(: cnet_atlocation_3a0049b2f5 (AtLocation many_store mall) (STV 1.0 0.9091)) +(: cnet_atlocation_b8442bf95a (AtLocation map atla) (STV 1.0 0.9454)) +(: cnet_atlocation_d289da26d5 (AtLocation map backpack) (STV 1.0 0.9091)) +(: cnet_atlocation_482901035a (AtLocation map glove_compartment) (STV 1.0 0.9339)) +(: cnet_atlocation_e6ac31604b (AtLocation map library) (STV 1.0 0.9091)) +(: cnet_atlocation_d41e415d2b (AtLocation marble boy_s_pocket) (STV 1.0 0.9339)) +(: cnet_atlocation_becf6e318d (AtLocation marble game) (STV 1.0 0.9339)) +(: cnet_atlocation_af68a11305 (AtLocation marble store) (STV 1.0 0.9091)) +(: cnet_atlocation_912d59ba19 (AtLocation marijuana amsterdam) (STV 1.0 0.9572)) +(: cnet_atlocation_c5dd0d142f (AtLocation marker book) (STV 1.0 0.9091)) +(: cnet_atlocation_e903ccbd8c (AtLocation marker desk) (STV 1.0 0.9091)) +(: cnet_atlocation_383242484c (AtLocation market city) (STV 1.0 0.9339)) +(: cnet_atlocation_11aa67b9de (AtLocation marmoset burrow) (STV 1.0 0.9339)) +(: cnet_atlocation_de75173659 (AtLocation marmoset cage) (STV 1.0 0.9091)) +(: cnet_atlocation_13ebab42d7 (AtLocation marmoset france) (STV 1.0 0.9091)) +(: cnet_atlocation_5d174a1ecf (AtLocation marmoset rainforest) (STV 1.0 0.9572)) +(: cnet_atlocation_cee027e53e (AtLocation marmoset south_america) (STV 1.0 0.9454)) +(: cnet_atlocation_abc748eb8d (AtLocation marmoset wild) (STV 1.0 0.9091)) +(: cnet_atlocation_cc023ae819 (AtLocation marmoset wilderness) (STV 1.0 0.9339)) +(: cnet_atlocation_74a55629f0 (AtLocation marmoset wood) (STV 1.0 0.9091)) +(: cnet_atlocation_8122a8612e (AtLocation marmot burrow) (STV 1.0 0.9454)) +(: cnet_atlocation_93b920371f (AtLocation marmot cage) (STV 1.0 0.9454)) +(: cnet_atlocation_6e346707d9 (AtLocation marmot colorado) (STV 1.0 0.9091)) +(: cnet_atlocation_a12ccdae1d (AtLocation marmot hole_in_ground) (STV 1.0 0.9091)) +(: cnet_atlocation_cceb446434 (AtLocation marmot in_wild) (STV 1.0 0.9091)) +(: cnet_atlocation_6bfc2ea6eb (AtLocation marmot jungle) (STV 1.0 0.9454)) +(: cnet_atlocation_ab308df69d (AtLocation marmot north_america) (STV 1.0 0.9339)) +(: cnet_atlocation_76552e5c3b (AtLocation marmot northern_hemisphere) (STV 1.0 0.9339)) +(: cnet_atlocation_ce570eb251 (AtLocation marmot outdoor) (STV 1.0 0.9339)) +(: cnet_atlocation_5a0e0f6b4f (AtLocation marmot tree) (STV 1.0 0.9091)) +(: cnet_atlocation_628db07430 (AtLocation marmot united_state) (STV 1.0 0.9091)) +(: cnet_atlocation_b5d95265d8 (AtLocation marmot vancouver_island) (STV 1.0 0.9339)) +(: cnet_atlocation_66a78d212c (AtLocation marmot wild) (STV 1.0 0.9091)) +(: cnet_atlocation_1664e10dff (AtLocation marsh forest) (STV 1.0 0.9091)) +(: cnet_atlocation_419a1e9a83 (AtLocation martini_glass cabinet) (STV 1.0 0.9091)) +(: cnet_atlocation_172bf1b483 (AtLocation mask carnival) (STV 1.0 0.9091)) +(: cnet_atlocation_4b1b15c574 (AtLocation massacred_body war) (STV 1.0 0.9091)) +(: cnet_atlocation_21e944ccf8 (AtLocation mast ship) (STV 1.0 0.9339)) +(: cnet_atlocation_df9659919f (AtLocation master_bedroom big_house) (STV 1.0 0.9091)) +(: cnet_atlocation_3d5d4de833 (AtLocation mat bathroom) (STV 1.0 0.9339)) +(: cnet_atlocation_9840ca2a89 (AtLocation material construction) (STV 1.0 0.9091)) +(: cnet_atlocation_2f36ae6892 (AtLocation material fabric_store) (STV 1.0 0.9091)) +(: cnet_atlocation_1234586d73 (AtLocation matter universe) (STV 1.0 0.9091)) +(: cnet_atlocation_58c1211a7b (AtLocation mayonaise jar) (STV 1.0 0.9091)) +(: cnet_atlocation_982ee61558 (AtLocation mayonnaise jar) (STV 1.0 0.9454)) +(: cnet_atlocation_1dd36fc5d7 (AtLocation mayonnaise refrigerator) (STV 1.0 0.9091)) +(: cnet_atlocation_0d3a6dd767 (AtLocation mayor city_hall) (STV 1.0 0.9339)) +(: cnet_atlocation_00ad363cdf (AtLocation mayor town) (STV 1.0 0.9524)) +(: cnet_atlocation_c3232a152e (AtLocation mayor town_hall) (STV 1.0 0.9524)) +(: cnet_atlocation_dcb7eed8c4 (AtLocation me hockey_game) (STV 1.0 0.9091)) +(: cnet_atlocation_b13463d46a (AtLocation meadow countryside) (STV 1.0 0.9091)) +(: cnet_atlocation_d3b911144f (AtLocation meadow_lark meadow) (STV 1.0 0.9091)) +(: cnet_atlocation_f60dd91de9 (AtLocation meal fast_food_restaurant) (STV 1.0 0.9091)) +(: cnet_atlocation_d396a58684 (AtLocation meal plate) (STV 1.0 0.9091)) +(: cnet_atlocation_4e7017523e (AtLocation meat butcher_shop) (STV 1.0 0.9572)) +(: cnet_atlocation_f97504fdeb (AtLocation meat freezer) (STV 1.0 0.9339)) +(: cnet_atlocation_521cda6ae2 (AtLocation meat fridge) (STV 1.0 0.9339)) +(: cnet_atlocation_87e11a9e6b (AtLocation meat oven) (STV 1.0 0.9091)) +(: cnet_atlocation_66eb247386 (AtLocation meat stew) (STV 1.0 0.9091)) +(: cnet_atlocation_6e6f0fb879 (AtLocation meatloaf oven) (STV 1.0 0.9339)) +(: cnet_atlocation_b27d39cb40 (AtLocation mechanic race_track) (STV 1.0 0.9091)) +(: cnet_atlocation_0c325ad253 (AtLocation mechanic repair_shop) (STV 1.0 0.9091)) +(: cnet_atlocation_4088cb1311 (AtLocation mechanical_pencil architect_office) (STV 1.0 0.9339)) +(: cnet_atlocation_50edf86577 (AtLocation medic battlefield) (STV 1.0 0.9091)) +(: cnet_atlocation_7826339658 (AtLocation medic military_base) (STV 1.0 0.9091)) +(: cnet_atlocation_1ac0ecc44d (AtLocation medicine cabinet) (STV 1.0 0.9091)) +(: cnet_atlocation_a419b7cd5f (AtLocation medicine hospital) (STV 1.0 0.9091)) +(: cnet_atlocation_56b3dfb805 (AtLocation medicine_ball gym) (STV 1.0 0.9339)) +(: cnet_atlocation_ce84b31291 (AtLocation memory computer) (STV 1.0 0.9091)) +(: cnet_atlocation_f8212a32b5 (AtLocation menorah synagogue) (STV 1.0 0.9339)) +(: cnet_atlocation_c0751fac9a (AtLocation menu cafe) (STV 1.0 0.9524)) +(: cnet_atlocation_d657548144 (AtLocation menu resturant) (STV 1.0 0.9339)) +(: cnet_atlocation_4272347b91 (AtLocation merchandise shop) (STV 1.0 0.9091)) +(: cnet_atlocation_44663eafb1 (AtLocation merchant mall) (STV 1.0 0.9339)) +(: cnet_atlocation_0e4093cc54 (AtLocation merchant store) (STV 1.0 0.9091)) +(: cnet_atlocation_15b59c8bdf (AtLocation merry_go_round carnival) (STV 1.0 0.9524)) +(: cnet_atlocation_bb07f245bf (AtLocation merry_go_round fair) (STV 1.0 0.9091)) +(: cnet_atlocation_ebd61909d2 (AtLocation merry_go_round park) (STV 1.0 0.9091)) +(: cnet_atlocation_73c6d3b62e (AtLocation mess desk) (STV 1.0 0.9572)) +(: cnet_atlocation_a5b269eb6d (AtLocation mess_hall military_base) (STV 1.0 0.9091)) +(: cnet_atlocation_80a5393056 (AtLocation message_pad desk) (STV 1.0 0.9091)) +(: cnet_atlocation_08f2f852b0 (AtLocation metal ore) (STV 1.0 0.9339)) +(: cnet_atlocation_1aa9e7958e (AtLocation meteor orbit) (STV 1.0 0.9091)) +(: cnet_atlocation_6873ecbca8 (AtLocation meteor outerspace) (STV 1.0 0.9339)) +(: cnet_atlocation_773ad6701f (AtLocation meteor space) (STV 1.0 0.9091)) +(: cnet_atlocation_3efe6ef8c8 (AtLocation meteor universe) (STV 1.0 0.9091)) +(: cnet_atlocation_cb5784c767 (AtLocation mezzanine theater) (STV 1.0 0.9454)) +(: cnet_atlocation_afb1724de1 (AtLocation mice laboratory) (STV 1.0 0.9091)) +(: cnet_atlocation_726ede0296 (AtLocation mickey_mouse disneyland) (STV 1.0 0.9659)) +(: cnet_atlocation_e78a737974 (AtLocation microphone_boom recording_studio) (STV 1.0 0.9091)) +(: cnet_atlocation_2f7e79e3ad (AtLocation microphone_boom studio) (STV 1.0 0.9454)) +(: cnet_atlocation_d35bcf7c3d (AtLocation microphone_boom television_studio) (STV 1.0 0.9339)) +(: cnet_atlocation_ce46cba72b (AtLocation microphone_boom televisison_studio) (STV 1.0 0.9339)) +(: cnet_atlocation_523ba30a44 (AtLocation microscope laboratory) (STV 1.0 0.9339)) +(: cnet_atlocation_837b5710a2 (AtLocation microwave_oven kitchen) (STV 1.0 0.9091)) +(: cnet_atlocation_4a34ce5f66 (AtLocation midway carnival) (STV 1.0 0.9091)) +(: cnet_atlocation_3945534de4 (AtLocation mildew basement) (STV 1.0 0.9339)) +(: cnet_atlocation_06b006f287 (AtLocation milk container) (STV 1.0 0.9339)) +(: cnet_atlocation_ffc8b63df0 (AtLocation milk cow) (STV 1.0 0.9091)) +(: cnet_atlocation_31f4a0bb87 (AtLocation milk fridge) (STV 1.0 0.9707)) +(: cnet_atlocation_c9a5116f17 (AtLocation milk market) (STV 1.0 0.9091)) +(: cnet_atlocation_f64e236041 (AtLocation milk refrigerator) (STV 1.0 0.9608)) +(: cnet_atlocation_6b88ef4bdd (AtLocation milk store) (STV 1.0 0.9091)) +(: cnet_atlocation_87f5ee36fe (AtLocation milk supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_ac171278c5 (AtLocation milk_dud movy) (STV 1.0 0.9091)) +(: cnet_atlocation_90969b5384 (AtLocation milkdud movie) (STV 1.0 0.9091)) +(: cnet_atlocation_7863ec744d (AtLocation mine mountain) (STV 1.0 0.9091)) +(: cnet_atlocation_49f5747387 (AtLocation mineral earth) (STV 1.0 0.9339)) +(: cnet_atlocation_dff4004f6c (AtLocation mini_bar home) (STV 1.0 0.9091)) +(: cnet_atlocation_40b6143a18 (AtLocation mini_bar hotel_room) (STV 1.0 0.9339)) +(: cnet_atlocation_98227f6a3c (AtLocation mini_mall suburb) (STV 1.0 0.9091)) +(: cnet_atlocation_1f783dd082 (AtLocation mini_mall town) (STV 1.0 0.9091)) +(: cnet_atlocation_9b8e26ae6f (AtLocation minibar at_hotel) (STV 1.0 0.9339)) +(: cnet_atlocation_54756bdf49 (AtLocation minibar hotel) (STV 1.0 0.9454)) +(: cnet_atlocation_c54f91e329 (AtLocation minibar hotel_room) (STV 1.0 0.9339)) +(: cnet_atlocation_b6e54a8cf1 (AtLocation minister funeral) (STV 1.0 0.9091)) +(: cnet_atlocation_af132a7579 (AtLocation mirror bedroom) (STV 1.0 0.9677)) +(: cnet_atlocation_eaa6cba164 (AtLocation mirror car) (STV 1.0 0.9339)) +(: cnet_atlocation_37e6825b44 (AtLocation mirror purse) (STV 1.0 0.9339)) +(: cnet_atlocation_c1430d879a (AtLocation model car_show) (STV 1.0 0.9091)) +(: cnet_atlocation_1ac3c5a879 (AtLocation moistener bathroom) (STV 1.0 0.9454)) +(: cnet_atlocation_e0902e1bbd (AtLocation moistener hand_lotion) (STV 1.0 0.9091)) +(: cnet_atlocation_0b790c93e3 (AtLocation moistener lotion) (STV 1.0 0.9091)) +(: cnet_atlocation_b0a35e0b22 (AtLocation moisturizer many_cosmetic) (STV 1.0 0.9091)) +(: cnet_atlocation_90f6467b3d (AtLocation mold breadbox) (STV 1.0 0.9091)) +(: cnet_atlocation_acc4a30f50 (AtLocation mold cellar) (STV 1.0 0.9091)) +(: cnet_atlocation_bfb214df81 (AtLocation mold refrigerator) (STV 1.0 0.9091)) +(: cnet_atlocation_3b6daa4446 (AtLocation moldy_food refrigerator) (STV 1.0 0.9091)) +(: cnet_atlocation_39024bbf7f (AtLocation moldy_leftover refrigerator) (STV 1.0 0.9091)) +(: cnet_atlocation_7023da398d (AtLocation molecule hand) (STV 1.0 0.9339)) +(: cnet_atlocation_100824dc7d (AtLocation money bank) (STV 1.0 0.9748)) +(: cnet_atlocation_771f3d919a (AtLocation money cash_register) (STV 1.0 0.9091)) +(: cnet_atlocation_5a0548693c (AtLocation money casino) (STV 1.0 0.9091)) +(: cnet_atlocation_f85dd24ae2 (AtLocation money pocket) (STV 1.0 0.9608)) +(: cnet_atlocation_5b0d0e89ef (AtLocation money purse) (STV 1.0 0.9091)) +(: cnet_atlocation_2273df95da (AtLocation money sock_drawer) (STV 1.0 0.9091)) +(: cnet_atlocation_b820560479 (AtLocation money supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_f5bbfef311 (AtLocation money vault) (STV 1.0 0.9091)) +(: cnet_atlocation_f42393cbd4 (AtLocation money wallet) (STV 1.0 0.9740)) +(: cnet_atlocation_000ef649c8 (AtLocation monitor box) (STV 1.0 0.9091)) +(: cnet_atlocation_70b728157b (AtLocation monitor desk) (STV 1.0 0.9572)) +(: cnet_atlocation_ab07a4ad33 (AtLocation monitor desktop) (STV 1.0 0.9339)) +(: cnet_atlocation_502ee628aa (AtLocation monitor internet_cafe) (STV 1.0 0.9091)) +(: cnet_atlocation_60d953505d (AtLocation monitor_wall studio) (STV 1.0 0.9091)) +(: cnet_atlocation_38563282b9 (AtLocation monkey african_jungle) (STV 1.0 0.9339)) +(: cnet_atlocation_b62f1d0393 (AtLocation monkey barrel) (STV 1.0 0.9091)) +(: cnet_atlocation_fad91ceebb (AtLocation monkey book) (STV 1.0 0.9091)) +(: cnet_atlocation_b8be900400 (AtLocation monkey brazil) (STV 1.0 0.9091)) +(: cnet_atlocation_e4809da9e5 (AtLocation monkey cage_at_zoo) (STV 1.0 0.9091)) +(: cnet_atlocation_8ba190f09b (AtLocation monkey cage_in_zoo) (STV 1.0 0.9091)) +(: cnet_atlocation_87f83ba844 (AtLocation monkey circus) (STV 1.0 0.9572)) +(: cnet_atlocation_9c1f0cf3c9 (AtLocation monkey jungel) (STV 1.0 0.9339)) +(: cnet_atlocation_cef96e194d (AtLocation monkey playful_mood) (STV 1.0 0.9091)) +(: cnet_atlocation_6f0fda8838 (AtLocation monkey rain_forest) (STV 1.0 0.9339)) +(: cnet_atlocation_bffa726693 (AtLocation monkey research_laboratory) (STV 1.0 0.9091)) +(: cnet_atlocation_a719250676 (AtLocation monkey south_africa) (STV 1.0 0.9091)) +(: cnet_atlocation_2828188054 (AtLocation monkey south_america) (STV 1.0 0.9524)) +(: cnet_atlocation_c1be70b27a (AtLocation monkey treetop) (STV 1.0 0.9091)) +(: cnet_atlocation_8ed5953dec (AtLocation monkey tropical_forest) (STV 1.0 0.9524)) +(: cnet_atlocation_7288834f7c (AtLocation monkey work) (STV 1.0 0.9091)) +(: cnet_atlocation_9cdc35a6c0 (AtLocation monkey_wrench repair_shop) (STV 1.0 0.9091)) +(: cnet_atlocation_c14061b4e6 (AtLocation monster bed) (STV 1.0 0.9524)) +(: cnet_atlocation_4387590e9f (AtLocation monster closet) (STV 1.0 0.9091)) +(: cnet_atlocation_bc9f623c0a (AtLocation monument city) (STV 1.0 0.9091)) +(: cnet_atlocation_2952d054f0 (AtLocation monument state_park) (STV 1.0 0.9091)) +(: cnet_atlocation_791fc980ee (AtLocation moon night_sky) (STV 1.0 0.9454)) +(: cnet_atlocation_27c0eb4543 (AtLocation moon orbit_around_earth) (STV 1.0 0.9524)) +(: cnet_atlocation_668314ee11 (AtLocation moon space) (STV 1.0 0.9693)) +(: cnet_atlocation_506f3636db (AtLocation moon_dust moon) (STV 1.0 0.9454)) +(: cnet_atlocation_d613900ae3 (AtLocation moon_dust suface_of_moon) (STV 1.0 0.9091)) +(: cnet_atlocation_e63bec9de1 (AtLocation moon_rock moon) (STV 1.0 0.9454)) +(: cnet_atlocation_47be69d27b (AtLocation moon_rock suface_of_moon) (STV 1.0 0.9091)) +(: cnet_atlocation_7bd9626384 (AtLocation more_space space) (STV 1.0 0.9091)) +(: cnet_atlocation_1c8026fcb3 (AtLocation mormon utah) (STV 1.0 0.9091)) +(: cnet_atlocation_8620a1aa3f (AtLocation morning_paper front_door) (STV 1.0 0.9091)) +(: cnet_atlocation_60373b285c (AtLocation moss forest) (STV 1.0 0.9524)) +(: cnet_atlocation_40956803e2 (AtLocation moss ground) (STV 1.0 0.9091)) +(: cnet_atlocation_ada09f76aa (AtLocation moss tree) (STV 1.0 0.9091)) +(: cnet_atlocation_973273b48d (AtLocation moss waterfall) (STV 1.0 0.9091)) +(: cnet_atlocation_0bc3e0d12c (AtLocation most_likely_not_your space_shuttle) (STV 1.0 0.9091)) +(: cnet_atlocation_dc64142207 (AtLocation moth closet) (STV 1.0 0.9091)) +(: cnet_atlocation_d670670690 (AtLocation motherboard computer) (STV 1.0 0.9740)) +(: cnet_atlocation_99ddebbe3f (AtLocation motorcycle garage) (STV 1.0 0.9524)) +(: cnet_atlocation_3744c016c0 (AtLocation motorway city) (STV 1.0 0.9339)) +(: cnet_atlocation_72c5f7ecd1 (AtLocation mound hell) (STV 1.0 0.9091)) +(: cnet_atlocation_af70e3bbf9 (AtLocation mountain austria) (STV 1.0 0.9339)) +(: cnet_atlocation_5750dd579c (AtLocation mountain canada) (STV 1.0 0.9454)) +(: cnet_atlocation_5728844e67 (AtLocation mountain colorado) (STV 1.0 0.9339)) +(: cnet_atlocation_e0fddfd716 (AtLocation mountain mountainous_region) (STV 1.0 0.9091)) +(: cnet_atlocation_7875a30608 (AtLocation mountain surface_of_earth) (STV 1.0 0.9454)) +(: cnet_atlocation_7c7629d0c7 (AtLocation mourner funeral) (STV 1.0 0.9454)) +(: cnet_atlocation_b9fe207407 (AtLocation mourning_people funeral) (STV 1.0 0.9339)) +(: cnet_atlocation_88af39b07f (AtLocation mouse abandoned_hous) (STV 1.0 0.9454)) +(: cnet_atlocation_a8c318314f (AtLocation mouse attic) (STV 1.0 0.9636)) +(: cnet_atlocation_d83112dfe9 (AtLocation mouse cat_s_mouth) (STV 1.0 0.9091)) +(: cnet_atlocation_f93a91dda9 (AtLocation mouse cat) (STV 1.0 0.9091)) +(: cnet_atlocation_d347fb3f74 (AtLocation mouse cellar) (STV 1.0 0.9572)) +(: cnet_atlocation_f6885dc11f (AtLocation mouse computer) (STV 1.0 0.9091)) +(: cnet_atlocation_962d782f03 (AtLocation mouse computer_lab) (STV 1.0 0.9339)) +(: cnet_atlocation_1153995d43 (AtLocation mouse computer_store) (STV 1.0 0.9339)) +(: cnet_atlocation_a05f6f413b (AtLocation mouse corn_field) (STV 1.0 0.9454)) +(: cnet_atlocation_b7bc829bff (AtLocation mouse cornfield) (STV 1.0 0.9091)) +(: cnet_atlocation_b7aa39eeb2 (AtLocation mouse cupboard) (STV 1.0 0.9636)) +(: cnet_atlocation_bb213e1964 (AtLocation mouse department_store) (STV 1.0 0.9091)) +(: cnet_atlocation_35824066b2 (AtLocation mouse desk) (STV 1.0 0.9572)) +(: cnet_atlocation_f5e81fa1dc (AtLocation mouse desktop) (STV 1.0 0.9454)) +(: cnet_atlocation_371528d51b (AtLocation mouse dirty_house) (STV 1.0 0.9339)) +(: cnet_atlocation_3ff131e9a2 (AtLocation mouse disneyland) (STV 1.0 0.9524)) +(: cnet_atlocation_987a0cf63a (AtLocation mouse garage) (STV 1.0 0.9659)) +(: cnet_atlocation_69e1541f59 (AtLocation mouse garden) (STV 1.0 0.9339)) +(: cnet_atlocation_52753c3dcc (AtLocation mouse grain) (STV 1.0 0.9091)) +(: cnet_atlocation_8ed93e3fd3 (AtLocation mouse grain_bin) (STV 1.0 0.9339)) +(: cnet_atlocation_a003af22b4 (AtLocation mouse grain_field) (STV 1.0 0.9091)) +(: cnet_atlocation_9f27e75c85 (AtLocation mouse grain_silo) (STV 1.0 0.9091)) +(: cnet_atlocation_5908df4b98 (AtLocation mouse grainery) (STV 1.0 0.9524)) +(: cnet_atlocation_6a22c5f420 (AtLocation mouse hole) (STV 1.0 0.9572)) +(: cnet_atlocation_4e92f74c61 (AtLocation mouse hole_in_wall) (STV 1.0 0.9693)) +(: cnet_atlocation_683a7b46a2 (AtLocation mouse kitchen) (STV 1.0 0.9636)) +(: cnet_atlocation_62c4a00ecf (AtLocation mouse lab_maze) (STV 1.0 0.9091)) +(: cnet_atlocation_1c97c21972 (AtLocation mouse laboratory) (STV 1.0 0.9659)) +(: cnet_atlocation_dba15fd595 (AtLocation mouse mousehouse) (STV 1.0 0.9091)) +(: cnet_atlocation_850e96724e (AtLocation mouse new_york) (STV 1.0 0.9339)) +(: cnet_atlocation_c4fbbde556 (AtLocation mouse office) (STV 1.0 0.9091)) +(: cnet_atlocation_805f699030 (AtLocation mouse old_barn) (STV 1.0 0.9339)) +(: cnet_atlocation_703d62f057 (AtLocation mouse own_home) (STV 1.0 0.9339)) +(: cnet_atlocation_9bef653dea (AtLocation mouse pantry) (STV 1.0 0.9339)) +(: cnet_atlocation_3e416db85e (AtLocation mouse research_laboratory) (STV 1.0 0.9339)) +(: cnet_atlocation_c94447d6b6 (AtLocation mouse sewer) (STV 1.0 0.9572)) +(: cnet_atlocation_97fb31fa0b (AtLocation mouse small_hole) (STV 1.0 0.9091)) +(: cnet_atlocation_6314916da7 (AtLocation mouse tom_and_jerry_cartoon) (STV 1.0 0.9091)) +(: cnet_atlocation_610719ae69 (AtLocation mouse trap) (STV 1.0 0.9608)) +(: cnet_atlocation_7bb511e663 (AtLocation mouse_pad desk) (STV 1.0 0.9091)) +(: cnet_atlocation_7f4c622295 (AtLocation mouthwash bathroom) (STV 1.0 0.9677)) +(: cnet_atlocation_90a522a1c7 (AtLocation mouthwash medicine_chest) (STV 1.0 0.9091)) +(: cnet_atlocation_490f5ab167 (AtLocation movie movie) (STV 1.0 0.9339)) +(: cnet_atlocation_d3843235c4 (AtLocation movie movie_theater) (STV 1.0 0.9339)) +(: cnet_atlocation_a1ad56171f (AtLocation movie theater) (STV 1.0 0.9707)) +(: cnet_atlocation_8878d60bce (AtLocation movie_house city) (STV 1.0 0.9339)) +(: cnet_atlocation_3926970ba0 (AtLocation movie_screen drive_in_movie) (STV 1.0 0.9339)) +(: cnet_atlocation_90d7c0b20f (AtLocation movie_screen movie) (STV 1.0 0.9339)) +(: cnet_atlocation_db43ef2ce9 (AtLocation movie_star hollywood) (STV 1.0 0.9091)) +(: cnet_atlocation_b626ad3274 (AtLocation movie_star movie) (STV 1.0 0.9091)) +(: cnet_atlocation_6acec7fcc5 (AtLocation movie_theater mall) (STV 1.0 0.9524)) +(: cnet_atlocation_5dbcacd0f0 (AtLocation movie_theater town) (STV 1.0 0.9339)) +(: cnet_atlocation_46b4ce027c (AtLocation movie_theater_seat movie_theatre) (STV 1.0 0.9091)) +(: cnet_atlocation_a827e8ea90 (AtLocation movie_ticket movie_theater) (STV 1.0 0.9454)) +(: cnet_atlocation_ac50af9fb1 (AtLocation movie_ticket theater) (STV 1.0 0.9091)) +(: cnet_atlocation_d0ad81bbbc (AtLocation moviegoer movy) (STV 1.0 0.9091)) +(: cnet_atlocation_b22f96dfb2 (AtLocation movy show) (STV 1.0 0.9091)) +(: cnet_atlocation_015b0c7988 (AtLocation movy theatre) (STV 1.0 0.9339)) +(: cnet_atlocation_3fb61de20f (AtLocation mower garage) (STV 1.0 0.9091)) +(: cnet_atlocation_1c1631233d (AtLocation muffin internet_cafe) (STV 1.0 0.9091)) +(: cnet_atlocation_fe1c5c5b1d (AtLocation mug cabinet) (STV 1.0 0.9091)) +(: cnet_atlocation_754ef50cfb (AtLocation mug cupboard) (STV 1.0 0.9091)) +(: cnet_atlocation_172b5ac0fe (AtLocation mug store) (STV 1.0 0.9091)) +(: cnet_atlocation_4a71278894 (AtLocation mum home) (STV 1.0 0.9091)) +(: cnet_atlocation_9d864d26f0 (AtLocation muscle animal) (STV 1.0 0.9091)) +(: cnet_atlocation_a05fe19ea5 (AtLocation muscle arm) (STV 1.0 0.9608)) +(: cnet_atlocation_89ad43e191 (AtLocation muscle body_of_animal) (STV 1.0 0.9091)) +(: cnet_atlocation_0a2f9d6af6 (AtLocation muscle human_body) (STV 1.0 0.9339)) +(: cnet_atlocation_57c7f01cc5 (AtLocation muscle_builder gym) (STV 1.0 0.9339)) +(: cnet_atlocation_cd08525019 (AtLocation museum city) (STV 1.0 0.9454)) +(: cnet_atlocation_528f987101 (AtLocation museum europe) (STV 1.0 0.9091)) +(: cnet_atlocation_2a921eb68f (AtLocation museum_ticket pocket) (STV 1.0 0.9339)) +(: cnet_atlocation_e44c89b95e (AtLocation mushroom grocery_store) (STV 1.0 0.9091)) +(: cnet_atlocation_d8f7255651 (AtLocation mushroom pizza) (STV 1.0 0.9454)) +(: cnet_atlocation_c2c97133c0 (AtLocation music carnival) (STV 1.0 0.9091)) +(: cnet_atlocation_37803d7f88 (AtLocation music night_club) (STV 1.0 0.9091)) +(: cnet_atlocation_91e7d4478a (AtLocation music opera) (STV 1.0 0.9572)) +(: cnet_atlocation_ee2ec302f7 (AtLocation music_stand band_hall) (STV 1.0 0.9091)) +(: cnet_atlocation_9e584f23ab (AtLocation music_video television) (STV 1.0 0.9091)) +(: cnet_atlocation_225df6477e (AtLocation musical_instrument band) (STV 1.0 0.9524)) +(: cnet_atlocation_52130af178 (AtLocation musical_instrument bandroom) (STV 1.0 0.9091)) +(: cnet_atlocation_4b1f178b2c (AtLocation musician stage) (STV 1.0 0.9091)) +(: cnet_atlocation_58c08716b9 (AtLocation musician studio) (STV 1.0 0.9091)) +(: cnet_atlocation_84e38332ae (AtLocation musician band) (STV 1.0 0.9091)) +(: cnet_atlocation_6c4d37f5d0 (AtLocation musician opera) (STV 1.0 0.9091)) +(: cnet_atlocation_4e60a30120 (AtLocation musician show) (STV 1.0 0.9091)) +(: cnet_atlocation_7cf5baba58 (AtLocation muslim mosque) (STV 1.0 0.9091)) +(: cnet_atlocation_ce4164684e (AtLocation mustard jar) (STV 1.0 0.9091)) +(: cnet_atlocation_96f47e81f1 (AtLocation mystery universe) (STV 1.0 0.9091)) +(: cnet_atlocation_83fbb9c9cb (AtLocation nail board) (STV 1.0 0.9091)) +(: cnet_atlocation_2ca4c8e991 (AtLocation nail finger) (STV 1.0 0.9091)) +(: cnet_atlocation_9a6a5f9b78 (AtLocation nail cabinet) (STV 1.0 0.9091)) +(: cnet_atlocation_7be432825e (AtLocation nail container) (STV 1.0 0.9091)) +(: cnet_atlocation_2dcebeacf2 (AtLocation nail jar) (STV 1.0 0.9091)) +(: cnet_atlocation_1d3eb1c301 (AtLocation nail store) (STV 1.0 0.9339)) +(: cnet_atlocation_61c99dd841 (AtLocation name directory) (STV 1.0 0.9091)) +(: cnet_atlocation_b4797d1a66 (AtLocation name phone_book) (STV 1.0 0.9091)) +(: cnet_atlocation_be8ea6787d (AtLocation napkin table) (STV 1.0 0.9091)) +(: cnet_atlocation_4fcaa024df (AtLocation napkin_holder table) (STV 1.0 0.9339)) +(: cnet_atlocation_54a9401034 (AtLocation napkin fast_food_restaurant) (STV 1.0 0.9091)) +(: cnet_atlocation_8debedc010 (AtLocation national_flag country) (STV 1.0 0.9091)) +(: cnet_atlocation_b6d04cf872 (AtLocation national_highway united_state) (STV 1.0 0.9524)) +(: cnet_atlocation_86f30abc81 (AtLocation national_interstate_highway modern_country) (STV 1.0 0.9091)) +(: cnet_atlocation_dd970f3f0a (AtLocation national_interstate_highway united_state) (STV 1.0 0.9339)) +(: cnet_atlocation_c82b8819a7 (AtLocation national_weather newspaper) (STV 1.0 0.9091)) +(: cnet_atlocation_8e50e52265 (AtLocation naughty_child corner) (STV 1.0 0.9091)) +(: cnet_atlocation_0e7108d134 (AtLocation nausea boat) (STV 1.0 0.9091)) +(: cnet_atlocation_e3c5b8c467 (AtLocation neck body) (STV 1.0 0.9091)) +(: cnet_atlocation_7a7ba29d32 (AtLocation neck bottle) (STV 1.0 0.9091)) +(: cnet_atlocation_411b5c0cd0 (AtLocation neckwear closet) (STV 1.0 0.9091)) +(: cnet_atlocation_22ca1972d7 (AtLocation neckwear tie_store) (STV 1.0 0.9091)) +(: cnet_atlocation_22399568f7 (AtLocation needle doctor) (STV 1.0 0.9091)) +(: cnet_atlocation_0439cc7825 (AtLocation needle sewing_kit) (STV 1.0 0.9339)) +(: cnet_atlocation_f9ddf87eae (AtLocation needle sewing_shop) (STV 1.0 0.9091)) +(: cnet_atlocation_67da7e1bd2 (AtLocation needlepoint art_store) (STV 1.0 0.9091)) +(: cnet_atlocation_9c52739410 (AtLocation needlepoint sewing) (STV 1.0 0.9091)) +(: cnet_atlocation_ddf04e8e8c (AtLocation neighbor house_next_door) (STV 1.0 0.9091)) +(: cnet_atlocation_e94ad526ac (AtLocation neighbor neighborhood) (STV 1.0 0.9339)) +(: cnet_atlocation_0c78d74cd5 (AtLocation neighbor next_door) (STV 1.0 0.9091)) +(: cnet_atlocation_d71b89918c (AtLocation neighborhood_map city_hall) (STV 1.0 0.9524)) +(: cnet_atlocation_2e0a1227cb (AtLocation neighbour neighbor_s_house) (STV 1.0 0.9454)) +(: cnet_atlocation_3ad484b091 (AtLocation nerd comic_convention) (STV 1.0 0.9339)) +(: cnet_atlocation_3885b9efa0 (AtLocation nerd internet_cafe) (STV 1.0 0.9091)) +(: cnet_atlocation_198698d4a4 (AtLocation nerve animal) (STV 1.0 0.9091)) +(: cnet_atlocation_e815521019 (AtLocation nerve brain) (STV 1.0 0.9339)) +(: cnet_atlocation_c269064889 (AtLocation nerve brainstem) (STV 1.0 0.9091)) +(: cnet_atlocation_2203096265 (AtLocation nervous_friend friend_s_wedding) (STV 1.0 0.9091)) +(: cnet_atlocation_0d0e91a672 (AtLocation net boat) (STV 1.0 0.9339)) +(: cnet_atlocation_ebb9e42b87 (AtLocation net fisherman_s_boat) (STV 1.0 0.9091)) +(: cnet_atlocation_b9beb67d36 (AtLocation net fishing_boat) (STV 1.0 0.9091)) +(: cnet_atlocation_2234d1fe4e (AtLocation new_artwork gallery_opening) (STV 1.0 0.9091)) +(: cnet_atlocation_17847801f2 (AtLocation new_car car_show) (STV 1.0 0.9339)) +(: cnet_atlocation_c3bbdbe54f (AtLocation new television) (STV 1.0 0.9636)) +(: cnet_atlocation_90c4b1586b (AtLocation new tv) (STV 1.0 0.9091)) +(: cnet_atlocation_1bdcca685a (AtLocation newspaper front_door) (STV 1.0 0.9339)) +(: cnet_atlocation_43a5d80996 (AtLocation newspaper lawn) (STV 1.0 0.9091)) +(: cnet_atlocation_2668969770 (AtLocation newspaper library) (STV 1.0 0.9091)) +(: cnet_atlocation_2887485cc3 (AtLocation newspaper subway) (STV 1.0 0.9091)) +(: cnet_atlocation_b839044f17 (AtLocation newspaper trash) (STV 1.0 0.9091)) +(: cnet_atlocation_16a238f995 (AtLocation newspaper_stand airport) (STV 1.0 0.9339)) +(: cnet_atlocation_bbe099112f (AtLocation newspaper bookstore) (STV 1.0 0.9091)) +(: cnet_atlocation_23ce4805fd (AtLocation nice_looking_car car_show) (STV 1.0 0.9091)) +(: cnet_atlocation_367edf2bcb (AtLocation niece family_reunion) (STV 1.0 0.9091)) +(: cnet_atlocation_26719bd076 (AtLocation night_clerk motel) (STV 1.0 0.9339)) +(: cnet_atlocation_7ecdd6b660 (AtLocation night_light bedroom) (STV 1.0 0.9091)) +(: cnet_atlocation_0990cfe70e (AtLocation night_stand bedroom) (STV 1.0 0.9339)) +(: cnet_atlocation_ad8c038637 (AtLocation night_table furniture_store) (STV 1.0 0.9091)) +(: cnet_atlocation_ac82a39686 (AtLocation nitrogen air) (STV 1.0 0.9454)) +(: cnet_atlocation_9b8426fd95 (AtLocation nitrous_oxide_gas dentist) (STV 1.0 0.9091)) +(: cnet_atlocation_f4124e2d5e (AtLocation noodle pantry) (STV 1.0 0.9091)) +(: cnet_atlocation_ba86b2e945 (AtLocation nose face) (STV 1.0 0.9730)) +(: cnet_atlocation_1fe2f27bc6 (AtLocation nose middle_of_face) (STV 1.0 0.9339)) +(: cnet_atlocation_0b90b63814 (AtLocation not_on_earth orbit) (STV 1.0 0.9524)) +(: cnet_atlocation_946b9c3a64 (AtLocation note desk) (STV 1.0 0.9091)) +(: cnet_atlocation_759c2f2043 (AtLocation note fridge) (STV 1.0 0.9339)) +(: cnet_atlocation_270422d83f (AtLocation notebook backpack) (STV 1.0 0.9572)) +(: cnet_atlocation_8e8be543b5 (AtLocation notebook bookstore) (STV 1.0 0.9339)) +(: cnet_atlocation_349bbf6f5c (AtLocation notebook class) (STV 1.0 0.9339)) +(: cnet_atlocation_f0b6c8078d (AtLocation notebook classroom) (STV 1.0 0.9339)) +(: cnet_atlocation_21ff5b1744 (AtLocation notebook desk) (STV 1.0 0.9636)) +(: cnet_atlocation_f650da6e0a (AtLocation notepad desk) (STV 1.0 0.9636)) +(: cnet_atlocation_f80cb115c8 (AtLocation notepad meeting) (STV 1.0 0.9454)) +(: cnet_atlocation_c84a87bdfa (AtLocation note notebook) (STV 1.0 0.9091)) +(: cnet_atlocation_ac64233aa2 (AtLocation novel bookstore) (STV 1.0 0.9091)) +(: cnet_atlocation_908b05d8ca (AtLocation nucleus atom) (STV 1.0 0.9091)) +(: cnet_atlocation_5ae935bc05 (AtLocation number equation) (STV 1.0 0.9339)) +(: cnet_atlocation_3efe2c6021 (AtLocation number mathematic) (STV 1.0 0.9339)) +(: cnet_atlocation_b2bfcc595c (AtLocation number phone_book) (STV 1.0 0.9608)) +(: cnet_atlocation_b6d05917d2 (AtLocation number roulette_wheel) (STV 1.0 0.9091)) +(: cnet_atlocation_a9437cb6db (AtLocation number social_security_number) (STV 1.0 0.9454)) +(: cnet_atlocation_072132a0b8 (AtLocation number someone_address) (STV 1.0 0.9339)) +(: cnet_atlocation_aa2faca9b7 (AtLocation number statistic) (STV 1.0 0.9091)) +(: cnet_atlocation_181e86b59e (AtLocation number calculation) (STV 1.0 0.9339)) +(: cnet_atlocation_989d6db8cc (AtLocation number calculator) (STV 1.0 0.9339)) +(: cnet_atlocation_2ec830889d (AtLocation nun church) (STV 1.0 0.9091)) +(: cnet_atlocation_fa16dbd0b0 (AtLocation nurse hospital) (STV 1.0 0.9454)) +(: cnet_atlocation_37d3ff09a8 (AtLocation nurs hospital) (STV 1.0 0.9091)) +(: cnet_atlocation_07f692a4f4 (AtLocation nylon drawer) (STV 1.0 0.9091)) +(: cnet_atlocation_60786b59af (AtLocation nylon rope) (STV 1.0 0.9091)) +(: cnet_atlocation_914c2e18d5 (AtLocation obituary newspaper) (STV 1.0 0.9454)) +(: cnet_atlocation_593e05a1f2 (AtLocation object_of_art art_show) (STV 1.0 0.9091)) +(: cnet_atlocation_ab1cd4f09d (AtLocation oboe music_store) (STV 1.0 0.9091)) +(: cnet_atlocation_5ebdd915b0 (AtLocation oboe orchestra) (STV 1.0 0.9091)) +(: cnet_atlocation_04f4d9a543 (AtLocation occasional_odd_sock sock_drawer) (STV 1.0 0.9091)) +(: cnet_atlocation_8ce8fea53f (AtLocation ocean beach) (STV 1.0 0.9454)) +(: cnet_atlocation_f4bac40a71 (AtLocation ocean earth) (STV 1.0 0.9636)) +(: cnet_atlocation_afc29ed4f9 (AtLocation ocean surface_of_earth) (STV 1.0 0.9339)) +(: cnet_atlocation_173c5ea58e (AtLocation octopus ocean) (STV 1.0 0.9091)) +(: cnet_atlocation_e57a87999d (AtLocation offering church) (STV 1.0 0.9091)) +(: cnet_atlocation_4ed2cedf71 (AtLocation office city) (STV 1.0 0.9091)) +(: cnet_atlocation_d1edbf86b2 (AtLocation office downtown_building) (STV 1.0 0.9091)) +(: cnet_atlocation_4e5279a31f (AtLocation office office_building) (STV 1.0 0.9454)) +(: cnet_atlocation_9d277b1596 (AtLocation office work) (STV 1.0 0.9091)) +(: cnet_atlocation_dc3073c9ce (AtLocation office_building city) (STV 1.0 0.9091)) +(: cnet_atlocation_a59dec4b82 (AtLocation office_equipment office) (STV 1.0 0.9091)) +(: cnet_atlocation_c53e501ba0 (AtLocation office_equipment table) (STV 1.0 0.9339)) +(: cnet_atlocation_fe678e8505 (AtLocation office_supply cabinet) (STV 1.0 0.9091)) +(: cnet_atlocation_ab42b71bee (AtLocation office building) (STV 1.0 0.9524)) +(: cnet_atlocation_04442e90f5 (AtLocation office skyscraper) (STV 1.0 0.9091)) +(: cnet_atlocation_4587ddc3ac (AtLocation oil engine) (STV 1.0 0.9339)) +(: cnet_atlocation_dc5ab614a8 (AtLocation oil ground) (STV 1.0 0.9572)) +(: cnet_atlocation_11415f2288 (AtLocation oil iraq) (STV 1.0 0.9091)) +(: cnet_atlocation_5a1d2d2259 (AtLocation oil street) (STV 1.0 0.9091)) +(: cnet_atlocation_cda8ec8e3e (AtLocation oil_painting art_show) (STV 1.0 0.9091)) +(: cnet_atlocation_af05243dc9 (AtLocation ointment jar) (STV 1.0 0.9091)) +(: cnet_atlocation_f06791b242 (AtLocation old museum) (STV 1.0 0.9339)) +(: cnet_atlocation_c2213e9c99 (AtLocation old_clothe attic) (STV 1.0 0.9091)) +(: cnet_atlocation_30cb437d60 (AtLocation old_clothe loft) (STV 1.0 0.9091)) +(: cnet_atlocation_06f6f05484 (AtLocation old_clothe trash) (STV 1.0 0.9091)) +(: cnet_atlocation_341be518d5 (AtLocation old_clothing trash) (STV 1.0 0.9091)) +(: cnet_atlocation_5328547e71 (AtLocation old_gum sidewalk) (STV 1.0 0.9091)) +(: cnet_atlocation_33cf3f318d (AtLocation old_magazine dentist) (STV 1.0 0.9454)) +(: cnet_atlocation_f74e764f18 (AtLocation old_medicine cabinet) (STV 1.0 0.9091)) +(: cnet_atlocation_5a00753fc3 (AtLocation old_movy television) (STV 1.0 0.9091)) +(: cnet_atlocation_5532dea48c (AtLocation old_photograph trunk) (STV 1.0 0.9091)) +(: cnet_atlocation_fb1525e25f (AtLocation old_photograph attic) (STV 1.0 0.9091)) +(: cnet_atlocation_833cf8cb89 (AtLocation old_sock bed) (STV 1.0 0.9091)) +(: cnet_atlocation_c7e6b0d051 (AtLocation old_stuff cellar) (STV 1.0 0.9091)) +(: cnet_atlocation_2617c3e18e (AtLocation old_thing museum) (STV 1.0 0.9091)) +(: cnet_atlocation_0cc65d1231 (AtLocation old_tire garage) (STV 1.0 0.9091)) +(: cnet_atlocation_f38894111b (AtLocation olive jar) (STV 1.0 0.9339)) +(: cnet_atlocation_52290fe647 (AtLocation olive pizza) (STV 1.0 0.9339)) +(: cnet_atlocation_e971d78852 (AtLocation on_off_switch bedroom) (STV 1.0 0.9339)) +(: cnet_atlocation_e0a8ef89ca (AtLocation on_off_switch computer) (STV 1.0 0.9339)) +(: cnet_atlocation_8e94169493 (AtLocation on_off_switch house) (STV 1.0 0.9091)) +(: cnet_atlocation_5f9f6078ea (AtLocation on_off_switch room) (STV 1.0 0.9339)) +(: cnet_atlocation_99b0d5a1ca (AtLocation on_street street_corner) (STV 1.0 0.9091)) +(: cnet_atlocation_11799636a4 (AtLocation on_top_of_house roof) (STV 1.0 0.9091)) +(: cnet_atlocation_1129c4d90b (AtLocation one_or_more_book house) (STV 1.0 0.9091)) +(: cnet_atlocation_4ddaf76a99 (AtLocation one_person_chair dining_room) (STV 1.0 0.9339)) +(: cnet_atlocation_74195ce38b (AtLocation one_person_chair office) (STV 1.0 0.9091)) +(: cnet_atlocation_e97ffd4841 (AtLocation onion pizza) (STV 1.0 0.9339)) +(: cnet_atlocation_e643e86626 (AtLocation only_one_golf_ball suface_of_moon) (STV 1.0 0.9091)) +(: cnet_atlocation_0a1112eed6 (AtLocation open_space countryside) (STV 1.0 0.9091)) +(: cnet_atlocation_f1214b0f0f (AtLocation opera_glass opera) (STV 1.0 0.9636)) +(: cnet_atlocation_5881ca3a90 (AtLocation opera_singer opera) (STV 1.0 0.9707)) +(: cnet_atlocation_3d93eb5762 (AtLocation operation_system computer) (STV 1.0 0.9091)) +(: cnet_atlocation_0bf5962868 (AtLocation opinion newspaper) (STV 1.0 0.9091)) +(: cnet_atlocation_d2d0a33ffa (AtLocation orange_cone roadblock) (STV 1.0 0.9091)) +(: cnet_atlocation_b9102626d7 (AtLocation orange_juice fridge) (STV 1.0 0.9454)) +(: cnet_atlocation_d89b3df710 (AtLocation orange_juice refrigerator) (STV 1.0 0.9091)) +(: cnet_atlocation_a361d4a5d2 (AtLocation orchestra opera) (STV 1.0 0.9608)) +(: cnet_atlocation_080333162c (AtLocation orchestra_pit concert_theater) (STV 1.0 0.9091)) +(: cnet_atlocation_c99f067676 (AtLocation orchestra_pit opera) (STV 1.0 0.9091)) +(: cnet_atlocation_00f87ab0ad (AtLocation orchestra_pit theatre) (STV 1.0 0.9454)) +(: cnet_atlocation_e884c88fa0 (AtLocation orchestra_seat auditorium) (STV 1.0 0.9339)) +(: cnet_atlocation_057fbe749e (AtLocation orchestra_seat orchestra) (STV 1.0 0.9339)) +(: cnet_atlocation_f8d4dc5421 (AtLocation orchestra_seat theater) (STV 1.0 0.9339)) +(: cnet_atlocation_d6b78bc66b (AtLocation oreo cookie_jar) (STV 1.0 0.9091)) +(: cnet_atlocation_635a12e79b (AtLocation organ body) (STV 1.0 0.9454)) +(: cnet_atlocation_e395a04ae2 (AtLocation organ human_body) (STV 1.0 0.9339)) +(: cnet_atlocation_d8cf05ad9e (AtLocation other_people mall) (STV 1.0 0.9339)) +(: cnet_atlocation_ca81fc4c04 (AtLocation other_people_outside_enjoying_themselve park) (STV 1.0 0.9091)) +(: cnet_atlocation_b1708fcfb6 (AtLocation other_planet outerspace) (STV 1.0 0.9677)) +(: cnet_atlocation_b31ced3d13 (AtLocation ottoman furniture_store) (STV 1.0 0.9091)) +(: cnet_atlocation_2dbeeb1347 (AtLocation outfield baseball_field) (STV 1.0 0.9524)) +(: cnet_atlocation_49d5d2b3c0 (AtLocation oven home) (STV 1.0 0.9091)) +(: cnet_atlocation_1056be454e (AtLocation oven_rack oven) (STV 1.0 0.9091)) +(: cnet_atlocation_f7e48e177d (AtLocation over_priced_ride disneyland) (STV 1.0 0.9091)) +(: cnet_atlocation_94a08bc64c (AtLocation overflow sewer) (STV 1.0 0.9091)) +(: cnet_atlocation_bd2a8c4226 (AtLocation owl air) (STV 1.0 0.9339)) +(: cnet_atlocation_afa035f030 (AtLocation owl zoo) (STV 1.0 0.9339)) +(: cnet_atlocation_24815ce27e (AtLocation own_stuff house) (STV 1.0 0.9091)) +(: cnet_atlocation_91af2663c4 (AtLocation oxygen air) (STV 1.0 0.9091)) +(: cnet_atlocation_90f1eddc96 (AtLocation oxygen earth) (STV 1.0 0.9572)) +(: cnet_atlocation_8701b8ada7 (AtLocation oxygen space_shuttle) (STV 1.0 0.9339)) +(: cnet_atlocation_9f5b3dec15 (AtLocation oxygen water) (STV 1.0 0.9091)) +(: cnet_atlocation_a5e11b5efd (AtLocation pacific_ocean atla) (STV 1.0 0.9091)) +(: cnet_atlocation_e37b47c564 (AtLocation package mail) (STV 1.0 0.9091)) +(: cnet_atlocation_ada117f8cb (AtLocation package mail_box) (STV 1.0 0.9091)) +(: cnet_atlocation_27104e4a53 (AtLocation package post_office) (STV 1.0 0.9339)) +(: cnet_atlocation_91320367bc (AtLocation pad carpet) (STV 1.0 0.9524)) +(: cnet_atlocation_33234c945e (AtLocation pad_of_paper desktop) (STV 1.0 0.9091)) +(: cnet_atlocation_795caa49dc (AtLocation padding carpet) (STV 1.0 0.9091)) +(: cnet_atlocation_8778ff0588 (AtLocation paddle fraternity_house) (STV 1.0 0.9091)) +(: cnet_atlocation_54b3ba05b4 (AtLocation pail garage) (STV 1.0 0.9091)) +(: cnet_atlocation_5af420a140 (AtLocation paint shelf) (STV 1.0 0.9339)) +(: cnet_atlocation_f98ee38f78 (AtLocation paint wall) (STV 1.0 0.9091)) +(: cnet_atlocation_4ed2d3d337 (AtLocation paint windowsill) (STV 1.0 0.9091)) +(: cnet_atlocation_e40b3e9c14 (AtLocation painted_line street) (STV 1.0 0.9339)) +(: cnet_atlocation_19e21e4970 (AtLocation painted_white_line freeway) (STV 1.0 0.9339)) +(: cnet_atlocation_d8d15b99c7 (AtLocation painting art_show) (STV 1.0 0.9454)) +(: cnet_atlocation_5a2ec9a9c7 (AtLocation painting museum) (STV 1.0 0.9524)) +(: cnet_atlocation_3833210fba (AtLocation painting gallery_opening) (STV 1.0 0.9091)) +(: cnet_atlocation_e90b168851 (AtLocation pair_of_scissor drawer) (STV 1.0 0.9091)) +(: cnet_atlocation_d73d6d3588 (AtLocation pair_of_shoe closet) (STV 1.0 0.9339)) +(: cnet_atlocation_b47259978a (AtLocation pair_of_sock sock_drawer) (STV 1.0 0.9339)) +(: cnet_atlocation_a5efe1149f (AtLocation pair_or_sock sock_drawer) (STV 1.0 0.9454)) +(: cnet_atlocation_a3f7c3adf3 (AtLocation pallbearer funeral) (STV 1.0 0.9091)) +(: cnet_atlocation_66087d35f8 (AtLocation pamphlet library) (STV 1.0 0.9091)) +(: cnet_atlocation_6abaf98ea9 (AtLocation pan kitchen) (STV 1.0 0.9091)) +(: cnet_atlocation_c4166894a6 (AtLocation pan oven) (STV 1.0 0.9339)) +(: cnet_atlocation_e4c9110c33 (AtLocation pan pantry) (STV 1.0 0.9339)) +(: cnet_atlocation_42020d434e (AtLocation panhandler bus_stop) (STV 1.0 0.9091)) +(: cnet_atlocation_cc4d94b450 (AtLocation panty drawer) (STV 1.0 0.9091)) +(: cnet_atlocation_d8a7d821d1 (AtLocation panty suitcase) (STV 1.0 0.9339)) +(: cnet_atlocation_2aaa44cc77 (AtLocation pantry farmhouse) (STV 1.0 0.9091)) +(: cnet_atlocation_2e6c282aa6 (AtLocation pantry home) (STV 1.0 0.9091)) +(: cnet_atlocation_0de899b74a (AtLocation pantry kitchen) (STV 1.0 0.9572)) +(: cnet_atlocation_b846aa7410 (AtLocation pantry sunday_school_kitchen) (STV 1.0 0.9091)) +(: cnet_atlocation_82db810b3a (AtLocation pant suitcase) (STV 1.0 0.9091)) +(: cnet_atlocation_762393d684 (AtLocation paper cabinet) (STV 1.0 0.9339)) +(: cnet_atlocation_e60bc4b36b (AtLocation paper classroom) (STV 1.0 0.9339)) +(: cnet_atlocation_7f54b2da57 (AtLocation paper notebook) (STV 1.0 0.9339)) +(: cnet_atlocation_4fe4ecfe41 (AtLocation paper printer) (STV 1.0 0.9572)) +(: cnet_atlocation_fcb5b370d9 (AtLocation paper ream) (STV 1.0 0.9091)) +(: cnet_atlocation_f9d3b11105 (AtLocation paper stationary_shop) (STV 1.0 0.9091)) +(: cnet_atlocation_f08bc0c791 (AtLocation paper suitcase) (STV 1.0 0.9091)) +(: cnet_atlocation_2bfd58190e (AtLocation paper waste_bin) (STV 1.0 0.9091)) +(: cnet_atlocation_8b42efd5d1 (AtLocation paper_bill wallet) (STV 1.0 0.9524)) +(: cnet_atlocation_0673ce6046 (AtLocation paper_clip desk) (STV 1.0 0.9524)) +(: cnet_atlocation_9c2fed8515 (AtLocation paper_clip desk_drawer) (STV 1.0 0.9636)) +(: cnet_atlocation_b798a20d17 (AtLocation paper_clip drawer) (STV 1.0 0.9339)) +(: cnet_atlocation_b05f4ce742 (AtLocation paper_clip file_folder) (STV 1.0 0.9091)) +(: cnet_atlocation_0068da16f6 (AtLocation paper_cup water_cooler) (STV 1.0 0.9091)) +(: cnet_atlocation_15bbc2b3da (AtLocation paper_fastener desk_drawer) (STV 1.0 0.9339)) +(: cnet_atlocation_7cb11c8992 (AtLocation paper_fastener office) (STV 1.0 0.9091)) +(: cnet_atlocation_fa08146cd5 (AtLocation paper_menu cheap_restaurant) (STV 1.0 0.9339)) +(: cnet_atlocation_f3a183f053 (AtLocation paper_page book) (STV 1.0 0.9091)) +(: cnet_atlocation_5b309e174a (AtLocation paper_page magazine) (STV 1.0 0.9454)) +(: cnet_atlocation_df2198990e (AtLocation paper_page newspaper) (STV 1.0 0.9091)) +(: cnet_atlocation_83fa8a18e6 (AtLocation paper_page notebook) (STV 1.0 0.9339)) +(: cnet_atlocation_428aacc44d (AtLocation paper_product supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_0f2b9d51f9 (AtLocation paper_punch desk_drawer) (STV 1.0 0.9454)) +(: cnet_atlocation_9ce3f5cc9b (AtLocation paper_punch office) (STV 1.0 0.9091)) +(: cnet_atlocation_108cf815a6 (AtLocation paper_sign store_window) (STV 1.0 0.9091)) +(: cnet_atlocation_4da5f356f3 (AtLocation paperback_book bookstore) (STV 1.0 0.9091)) +(: cnet_atlocation_5605dd7bc6 (AtLocation paperclip desk) (STV 1.0 0.9572)) +(: cnet_atlocation_9f3c18d235 (AtLocation paperclip office) (STV 1.0 0.9339)) +(: cnet_atlocation_4d3eeeab61 (AtLocation paper drawer) (STV 1.0 0.9091)) +(: cnet_atlocation_8f4874bf9b (AtLocation paper meeting) (STV 1.0 0.9091)) +(: cnet_atlocation_1563520f31 (AtLocation paper table) (STV 1.0 0.9091)) +(: cnet_atlocation_fe31148fcf (AtLocation paperweight desk) (STV 1.0 0.9454)) +(: cnet_atlocation_9d14a4b03f (AtLocation paperweight desktop) (STV 1.0 0.9091)) +(: cnet_atlocation_8e6aad315b (AtLocation paperwork desk) (STV 1.0 0.9339)) +(: cnet_atlocation_dfc0e88660 (AtLocation paperwork office) (STV 1.0 0.9091)) +(: cnet_atlocation_17d3acf1b4 (AtLocation parent soccer_game) (STV 1.0 0.9091)) +(: cnet_atlocation_6b34217111 (AtLocation paris france) (STV 1.0 0.9572)) +(: cnet_atlocation_6e586ab7b5 (AtLocation park_benche park) (STV 1.0 0.9339)) +(: cnet_atlocation_eedfe65b09 (AtLocation park_ranger park) (STV 1.0 0.9339)) +(: cnet_atlocation_bd0056f70f (AtLocation park_ranger state_park) (STV 1.0 0.9524)) +(: cnet_atlocation_375f28b557 (AtLocation parked_car airport) (STV 1.0 0.9091)) +(: cnet_atlocation_2842cddeb0 (AtLocation parking_area city) (STV 1.0 0.9091)) +(: cnet_atlocation_31bfeaeb77 (AtLocation parking_lot airport) (STV 1.0 0.9339)) +(: cnet_atlocation_b5f78c6895 (AtLocation parking_lot city) (STV 1.0 0.9572)) +(: cnet_atlocation_e5a2910ca2 (AtLocation parking_lot mall) (STV 1.0 0.9091)) +(: cnet_atlocation_b4ad1cd3f7 (AtLocation parking_lot shopping_center) (STV 1.0 0.9091)) +(: cnet_atlocation_2bcacd186d (AtLocation parking_lot shopping_mall) (STV 1.0 0.9454)) +(: cnet_atlocation_bb608e67cf (AtLocation parking_space rest_area) (STV 1.0 0.9091)) +(: cnet_atlocation_96f435a441 (AtLocation parking_space drive_in_movie) (STV 1.0 0.9091)) +(: cnet_atlocation_5a315036ed (AtLocation parking_structure city) (STV 1.0 0.9524)) +(: cnet_atlocation_1c46ad7e16 (AtLocation parking_zone parking_lot) (STV 1.0 0.9339)) +(: cnet_atlocation_ebcd18152b (AtLocation parlor house) (STV 1.0 0.9091)) +(: cnet_atlocation_d032baf3bb (AtLocation parlor victorian_house) (STV 1.0 0.9339)) +(: cnet_atlocation_ae043287ed (AtLocation party fraternity_house) (STV 1.0 0.9091)) +(: cnet_atlocation_4da9d04105 (AtLocation passage bible) (STV 1.0 0.9339)) +(: cnet_atlocation_d5e14a5abf (AtLocation passage diary) (STV 1.0 0.9339)) +(: cnet_atlocation_20530039c8 (AtLocation passenger airport) (STV 1.0 0.9091)) +(: cnet_atlocation_ae0fbbef9f (AtLocation passenger backseat_of_car) (STV 1.0 0.9339)) +(: cnet_atlocation_7526fc5145 (AtLocation passenger bus_depot) (STV 1.0 0.9091)) +(: cnet_atlocation_de17694390 (AtLocation passenger bus_stop) (STV 1.0 0.9339)) +(: cnet_atlocation_bc2dfc86b8 (AtLocation passenger_ticket pocket) (STV 1.0 0.9339)) +(: cnet_atlocation_409d8d8972 (AtLocation passenger_ticket train_station) (STV 1.0 0.9091)) +(: cnet_atlocation_80ab569264 (AtLocation passenger car) (STV 1.0 0.9339)) +(: cnet_atlocation_159245a235 (AtLocation passenger train_station) (STV 1.0 0.9091)) +(: cnet_atlocation_114904a9be (AtLocation passenger vehicle) (STV 1.0 0.9091)) +(: cnet_atlocation_59ee2a24f1 (AtLocation passport_case pocket) (STV 1.0 0.9091)) +(: cnet_atlocation_e81f750b0c (AtLocation passport_case suitcase) (STV 1.0 0.9091)) +(: cnet_atlocation_bae267e112 (AtLocation pasta italian_restaurant) (STV 1.0 0.9091)) +(: cnet_atlocation_f2bdb00019 (AtLocation patient table) (STV 1.0 0.9091)) +(: cnet_atlocation_0fbfe1011a (AtLocation patient dentist) (STV 1.0 0.9091)) +(: cnet_atlocation_d594bd94a8 (AtLocation patio back_of_house) (STV 1.0 0.9091)) +(: cnet_atlocation_ebe9a09fc1 (AtLocation patio_table porch) (STV 1.0 0.9091)) +(: cnet_atlocation_e7e7a8e933 (AtLocation patron resturant) (STV 1.0 0.9091)) +(: cnet_atlocation_c0152b134a (AtLocation pavement city) (STV 1.0 0.9091)) +(: cnet_atlocation_9d8c22c122 (AtLocation pawn chess_game) (STV 1.0 0.9339)) +(: cnet_atlocation_ac4276b0eb (AtLocation pawn chess_set) (STV 1.0 0.9091)) +(: cnet_atlocation_728aa7ba94 (AtLocation pawn scheme) (STV 1.0 0.9091)) +(: cnet_atlocation_61cca8c9f6 (AtLocation pay_per_view_movy at_hotel) (STV 1.0 0.9091)) +(: cnet_atlocation_160460c274 (AtLocation payment_counter bank) (STV 1.0 0.9339)) +(: cnet_atlocation_f6bc34da24 (AtLocation payment_counter convenience_store) (STV 1.0 0.9091)) +(: cnet_atlocation_7c094f8669 (AtLocation peak top_of_mountain) (STV 1.0 0.9524)) +(: cnet_atlocation_014321fe88 (AtLocation peanut_butter container) (STV 1.0 0.9339)) +(: cnet_atlocation_61b37d5516 (AtLocation peanut_butter jar) (STV 1.0 0.9719)) +(: cnet_atlocation_e1f9364504 (AtLocation peanut_butter pantry) (STV 1.0 0.9091)) +(: cnet_atlocation_d5fd816ab5 (AtLocation peanut_butter supermarket) (STV 1.0 0.9339)) +(: cnet_atlocation_64a71ea808 (AtLocation peanut jar) (STV 1.0 0.9091)) +(: cnet_atlocation_5b333543b5 (AtLocation peanut plane) (STV 1.0 0.9091)) +(: cnet_atlocation_42bfb677df (AtLocation pearl oyster) (STV 1.0 0.9454)) +(: cnet_atlocation_9bdc16678a (AtLocation pea farmer_s_market) (STV 1.0 0.9091)) +(: cnet_atlocation_363c3657f1 (AtLocation peasant village) (STV 1.0 0.9091)) +(: cnet_atlocation_a0b99873b0 (AtLocation pebble ground) (STV 1.0 0.9339)) +(: cnet_atlocation_8fa4c15fc2 (AtLocation pebble lake) (STV 1.0 0.9091)) +(: cnet_atlocation_d7a2b65cf8 (AtLocation pebble pond) (STV 1.0 0.9091)) +(: cnet_atlocation_80b84e7ea8 (AtLocation pebble beach) (STV 1.0 0.9091)) +(: cnet_atlocation_9cb72d1b76 (AtLocation pedestal museum) (STV 1.0 0.9091)) +(: cnet_atlocation_87e18acf19 (AtLocation pedestrian street) (STV 1.0 0.9608)) +(: cnet_atlocation_e6d71464d6 (AtLocation peep_hole front_door) (STV 1.0 0.9091)) +(: cnet_atlocation_c58f95e4db (AtLocation pen drawer) (STV 1.0 0.9091)) +(: cnet_atlocation_218ec39e5a (AtLocation pen office) (STV 1.0 0.9730)) +(: cnet_atlocation_047e752f59 (AtLocation pen office_supply_store) (STV 1.0 0.9339)) +(: cnet_atlocation_ebe504e186 (AtLocation pen pocket) (STV 1.0 0.9659)) +(: cnet_atlocation_a0b048dcd8 (AtLocation pen purse) (STV 1.0 0.9091)) +(: cnet_atlocation_84a7e462b2 (AtLocation pencil backpack) (STV 1.0 0.9339)) +(: cnet_atlocation_b45fca9449 (AtLocation pencil classroom) (STV 1.0 0.9572)) +(: cnet_atlocation_d88f133457 (AtLocation pencil cup) (STV 1.0 0.9091)) +(: cnet_atlocation_9a9f9f1075 (AtLocation pencil desk_drawer) (STV 1.0 0.9339)) +(: cnet_atlocation_95c75c6406 (AtLocation pencil desktop) (STV 1.0 0.9454)) +(: cnet_atlocation_c6d8a7e76e (AtLocation pencil drawer) (STV 1.0 0.9608)) +(: cnet_atlocation_9a926be09d (AtLocation pencil pencil_case) (STV 1.0 0.9608)) +(: cnet_atlocation_87a674277e (AtLocation pencil pencil_holder) (STV 1.0 0.9091)) +(: cnet_atlocation_042e3d2bbe (AtLocation pencil pocket) (STV 1.0 0.9339)) +(: cnet_atlocation_831f9c96ae (AtLocation pencil_holder desk) (STV 1.0 0.9339)) +(: cnet_atlocation_e1654f8bed (AtLocation pencil_sharpener desk) (STV 1.0 0.9677)) +(: cnet_atlocation_8d89ba9894 (AtLocation pencil_sharpener desk_drawer) (STV 1.0 0.9091)) +(: cnet_atlocation_94bce705c8 (AtLocation pencil_sharpener office) (STV 1.0 0.9454)) +(: cnet_atlocation_edd44c57da (AtLocation pencil store) (STV 1.0 0.9091)) +(: cnet_atlocation_39f6ccf4b2 (AtLocation pencil_and_pen office) (STV 1.0 0.9091)) +(: cnet_atlocation_396542e7be (AtLocation penguin zoo) (STV 1.0 0.9091)) +(: cnet_atlocation_ac358c5313 (AtLocation penis pair_of_pant) (STV 1.0 0.9091)) +(: cnet_atlocation_7698c73fdb (AtLocation penny jar) (STV 1.0 0.9339)) +(: cnet_atlocation_bc7843d4de (AtLocation penny pocket) (STV 1.0 0.9091)) +(: cnet_atlocation_a5d5db7801 (AtLocation penny ground) (STV 1.0 0.9339)) +(: cnet_atlocation_0b9356cb7e (AtLocation penny piggy_bank) (STV 1.0 0.9339)) +(: cnet_atlocation_f9ea6ac3ae (AtLocation pen backpack) (STV 1.0 0.9524)) +(: cnet_atlocation_3d3711421b (AtLocation pen school) (STV 1.0 0.9572)) +(: cnet_atlocation_c6c1bf040a (AtLocation pen_and_pencil desk) (STV 1.0 0.9572)) +(: cnet_atlocation_fe8720a1b7 (AtLocation people apartment) (STV 1.0 0.9572)) +(: cnet_atlocation_4e592f3040 (AtLocation people audience) (STV 1.0 0.9091)) +(: cnet_atlocation_c738b7e910 (AtLocation people building) (STV 1.0 0.9572)) +(: cnet_atlocation_e18b227c83 (AtLocation people bus_stop) (STV 1.0 0.9091)) +(: cnet_atlocation_a8076c7ec5 (AtLocation people conference) (STV 1.0 0.9339)) +(: cnet_atlocation_6691fa72bc (AtLocation people convention) (STV 1.0 0.9091)) +(: cnet_atlocation_b8bf42e6f6 (AtLocation people hockey_game) (STV 1.0 0.9091)) +(: cnet_atlocation_f74f60ddbf (AtLocation people hospital) (STV 1.0 0.9091)) +(: cnet_atlocation_2774c2ca4e (AtLocation people military_base) (STV 1.0 0.9091)) +(: cnet_atlocation_493e58af4f (AtLocation people opera) (STV 1.0 0.9572)) +(: cnet_atlocation_6a41e8a950 (AtLocation people quandry) (STV 1.0 0.9339)) +(: cnet_atlocation_9f49788e10 (AtLocation people show) (STV 1.0 0.9091)) +(: cnet_atlocation_d5bba507f9 (AtLocation people supermarket) (STV 1.0 0.9454)) +(: cnet_atlocation_119d67c4e6 (AtLocation people theater) (STV 1.0 0.9339)) +(: cnet_atlocation_98a9dcf9c7 (AtLocation people town) (STV 1.0 0.9454)) +(: cnet_atlocation_ee17501af2 (AtLocation people train_station) (STV 1.0 0.9454)) +(: cnet_atlocation_b53a44291a (AtLocation people vehicle) (STV 1.0 0.9091)) +(: cnet_atlocation_7c3a6cdfa9 (AtLocation people water_cooler) (STV 1.0 0.9091)) +(: cnet_atlocation_bbb2c4d1c5 (AtLocation people water_fountain) (STV 1.0 0.9091)) +(: cnet_atlocation_bf610c3a50 (AtLocation people wedding) (STV 1.0 0.9339)) +(: cnet_atlocation_c7f9af2e42 (AtLocation people_and_bus bus_depot) (STV 1.0 0.9091)) +(: cnet_atlocation_e2a14c4ee7 (AtLocation people_dancing_and_singing show) (STV 1.0 0.9091)) +(: cnet_atlocation_645e4c8fc6 (AtLocation people_jogging park) (STV 1.0 0.9091)) +(: cnet_atlocation_6d2176db20 (AtLocation people_waiting bus_stop) (STV 1.0 0.9091)) +(: cnet_atlocation_ed7fe28a15 (AtLocation people_waiting_for_bus bus_depot) (STV 1.0 0.9091)) +(: cnet_atlocation_fb79cb0d43 (AtLocation people_waiting_for_bus bus_stop) (STV 1.0 0.9339)) +(: cnet_atlocation_787549ec50 (AtLocation people_walking_dog park) (STV 1.0 0.9091)) +(: cnet_atlocation_c32e6816b0 (AtLocation people_who_scuba_dive water) (STV 1.0 0.9091)) +(: cnet_atlocation_6c24d974e9 (AtLocation people_without_car subway) (STV 1.0 0.9091)) +(: cnet_atlocation_0c83f6e818 (AtLocation pepper dinner) (STV 1.0 0.9091)) +(: cnet_atlocation_d4a6ab7c87 (AtLocation pepper table) (STV 1.0 0.9091)) +(: cnet_atlocation_c945099c17 (AtLocation pepper_and_salt grocery_store) (STV 1.0 0.9454)) +(: cnet_atlocation_091737567c (AtLocation pepperoni pizza) (STV 1.0 0.9339)) +(: cnet_atlocation_e0181b6778 (AtLocation pepper farmer_s_market) (STV 1.0 0.9091)) +(: cnet_atlocation_20d363f5a3 (AtLocation performance show) (STV 1.0 0.9091)) +(: cnet_atlocation_110e6801a0 (AtLocation performance theatre) (STV 1.0 0.9454)) +(: cnet_atlocation_744373069c (AtLocation performer opera) (STV 1.0 0.9339)) +(: cnet_atlocation_a5a130ece4 (AtLocation performer stage) (STV 1.0 0.9091)) +(: cnet_atlocation_e5058051f9 (AtLocation performer theater) (STV 1.0 0.9091)) +(: cnet_atlocation_24052c6bbe (AtLocation period end_of_line) (STV 1.0 0.9091)) +(: cnet_atlocation_fb51697d2e (AtLocation period school) (STV 1.0 0.9091)) +(: cnet_atlocation_e2769bba50 (AtLocation period sentence) (STV 1.0 0.9339)) +(: cnet_atlocation_ae57e021cd (AtLocation person building) (STV 1.0 0.9091)) +(: cnet_atlocation_4abec4555d (AtLocation person bus_stop) (STV 1.0 0.9091)) +(: cnet_atlocation_41090ced16 (AtLocation person garage) (STV 1.0 0.9091)) +(: cnet_atlocation_627fc504ac (AtLocation person hospital) (STV 1.0 0.9091)) +(: cnet_atlocation_fd4f9ecc10 (AtLocation person quandry) (STV 1.0 0.9091)) +(: cnet_atlocation_8876599947 (AtLocation person_at_prayer synagogue) (STV 1.0 0.9091)) +(: cnet_atlocation_78f5d8e35e (AtLocation person_on_date movy) (STV 1.0 0.9091)) +(: cnet_atlocation_001b222a61 (AtLocation personal_item shelf) (STV 1.0 0.9091)) +(: cnet_atlocation_85794640fc (AtLocation pet house) (STV 1.0 0.9524)) +(: cnet_atlocation_8c82765524 (AtLocation pet_food supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_8d5a7fd8ea (AtLocation petri_dish chemistry_lab) (STV 1.0 0.9091)) +(: cnet_atlocation_e826d14562 (AtLocation petrol car) (STV 1.0 0.9091)) +(: cnet_atlocation_5a1e8287fc (AtLocation petrol fuel_tank) (STV 1.0 0.9091)) +(: cnet_atlocation_266ef93c2c (AtLocation petrol gas_station) (STV 1.0 0.9339)) +(: cnet_atlocation_dd7b66b3ca (AtLocation petrol petrol_station) (STV 1.0 0.9091)) +(: cnet_atlocation_ed69e9f759 (AtLocation phantom opera) (STV 1.0 0.9454)) +(: cnet_atlocation_7e965a210a (AtLocation phillip_screwdriver hardware_store) (STV 1.0 0.9091)) +(: cnet_atlocation_7cbcaadbec (AtLocation phillip_screwdriver tool_chest) (STV 1.0 0.9091)) +(: cnet_atlocation_d5d763d1f2 (AtLocation phillip_screwdriver toolbox) (STV 1.0 0.9524)) +(: cnet_atlocation_0d81638598 (AtLocation phone desk) (STV 1.0 0.9740)) +(: cnet_atlocation_7cf3c7e81d (AtLocation phone house) (STV 1.0 0.9091)) +(: cnet_atlocation_dea1220b86 (AtLocation phone motel) (STV 1.0 0.9091)) +(: cnet_atlocation_1938d8cb5f (AtLocation phone office) (STV 1.0 0.9091)) +(: cnet_atlocation_40a74a2dc4 (AtLocation phone_book drawer) (STV 1.0 0.9454)) +(: cnet_atlocation_64dbdb438d (AtLocation phone_book motel) (STV 1.0 0.9091)) +(: cnet_atlocation_0c98b1e6d5 (AtLocation phone_number phone_book) (STV 1.0 0.9339)) +(: cnet_atlocation_53052f1465 (AtLocation photo_album attic) (STV 1.0 0.9091)) +(: cnet_atlocation_64118b4755 (AtLocation photocopier library) (STV 1.0 0.9339)) +(: cnet_atlocation_34d662cd35 (AtLocation photocopier office) (STV 1.0 0.9091)) +(: cnet_atlocation_c69e9df02e (AtLocation photographer wedding) (STV 1.0 0.9091)) +(: cnet_atlocation_253cdb30f0 (AtLocation photographer waterfall) (STV 1.0 0.9091)) +(: cnet_atlocation_0eeca53e02 (AtLocation photon space) (STV 1.0 0.9091)) +(: cnet_atlocation_262de96b13 (AtLocation physic university) (STV 1.0 0.9091)) +(: cnet_atlocation_4656d20584 (AtLocation piano church) (STV 1.0 0.9091)) +(: cnet_atlocation_371198722c (AtLocation piano concert) (STV 1.0 0.9339)) +(: cnet_atlocation_cc49021fd2 (AtLocation piano concert_hall) (STV 1.0 0.9454)) +(: cnet_atlocation_8dc05e797c (AtLocation piano orchestra) (STV 1.0 0.9091)) +(: cnet_atlocation_d869e0a165 (AtLocation piccolo band) (STV 1.0 0.9339)) +(: cnet_atlocation_902777b943 (AtLocation piccolo orchestra) (STV 1.0 0.9339)) +(: cnet_atlocation_b9bf3e0456 (AtLocation picket_sign demonstration) (STV 1.0 0.9091)) +(: cnet_atlocation_33f651360f (AtLocation picketer demonstration) (STV 1.0 0.9091)) +(: cnet_atlocation_2b38afced0 (AtLocation pickle jar) (STV 1.0 0.9339)) +(: cnet_atlocation_defe5558fe (AtLocation pickled_onion jar) (STV 1.0 0.9339)) +(: cnet_atlocation_be817a1503 (AtLocation pickle pickle_barrel) (STV 1.0 0.9339)) +(: cnet_atlocation_cae5a49d89 (AtLocation pickle refrigerator) (STV 1.0 0.9091)) +(: cnet_atlocation_115a653f5c (AtLocation pickpocket fairground) (STV 1.0 0.9091)) +(: cnet_atlocation_a5ae2f5634 (AtLocation picnic_table park) (STV 1.0 0.9091)) +(: cnet_atlocation_375c3041a5 (AtLocation picnic_table state_park) (STV 1.0 0.9091)) +(: cnet_atlocation_38b10cc7a0 (AtLocation picture art_show) (STV 1.0 0.9454)) +(: cnet_atlocation_1dc6a42d61 (AtLocation picture desktop) (STV 1.0 0.9091)) +(: cnet_atlocation_155b1786ea (AtLocation picture shelf) (STV 1.0 0.9091)) +(: cnet_atlocation_5f09ae6d25 (AtLocation picture wall) (STV 1.0 0.9091)) +(: cnet_atlocation_3a3390657a (AtLocation picture_frame art_show) (STV 1.0 0.9091)) +(: cnet_atlocation_01a703d81b (AtLocation picture house) (STV 1.0 0.9091)) +(: cnet_atlocation_ff6b98703b (AtLocation picture newspaper) (STV 1.0 0.9339)) +(: cnet_atlocation_90d77c709a (AtLocation pie oven) (STV 1.0 0.9454)) +(: cnet_atlocation_db12e571f1 (AtLocation pie refrigerator) (STV 1.0 0.9091)) +(: cnet_atlocation_facfaea3cc (AtLocation pie windowsill) (STV 1.0 0.9339)) +(: cnet_atlocation_5511384110 (AtLocation piece puzzle) (STV 1.0 0.9572)) +(: cnet_atlocation_e797187542 (AtLocation piece_of_paper office) (STV 1.0 0.9091)) +(: cnet_atlocation_5f92cbb762 (AtLocation piece_of_pottery kiln) (STV 1.0 0.9339)) +(: cnet_atlocation_bc8083ba6c (AtLocation pier beach) (STV 1.0 0.9091)) +(: cnet_atlocation_a544eccc3a (AtLocation pigeon park) (STV 1.0 0.9454)) +(: cnet_atlocation_9e0ea54086 (AtLocation pig_feet jar) (STV 1.0 0.9339)) +(: cnet_atlocation_e86d9845f6 (AtLocation pike river) (STV 1.0 0.9339)) +(: cnet_atlocation_5bf4191524 (AtLocation pile_of_paper desk) (STV 1.0 0.9339)) +(: cnet_atlocation_a66efbbbe9 (AtLocation pill bottle) (STV 1.0 0.9091)) +(: cnet_atlocation_355effe20d (AtLocation pill cabinet) (STV 1.0 0.9339)) +(: cnet_atlocation_ab0da04173 (AtLocation pill purse) (STV 1.0 0.9091)) +(: cnet_atlocation_e700e35952 (AtLocation pillow bedroom) (STV 1.0 0.9524)) +(: cnet_atlocation_59fcd4265d (AtLocation pillow_case bed) (STV 1.0 0.9454)) +(: cnet_atlocation_c54397f9c7 (AtLocation pillow_case bedroom) (STV 1.0 0.9454)) +(: cnet_atlocation_89ab483abe (AtLocation pillow_case england) (STV 1.0 0.9091)) +(: cnet_atlocation_a668d15477 (AtLocation pillow_cas drawer) (STV 1.0 0.9454)) +(: cnet_atlocation_9f4d7819bb (AtLocation pillowcase bedroom) (STV 1.0 0.9339)) +(: cnet_atlocation_3723dd445c (AtLocation pillowcase linen_closet) (STV 1.0 0.9339)) +(: cnet_atlocation_222055232b (AtLocation pilot airplane) (STV 1.0 0.9091)) +(: cnet_atlocation_6aa8cc8098 (AtLocation pilot cockpit) (STV 1.0 0.9091)) +(: cnet_atlocation_196712a6e5 (AtLocation pilot shower) (STV 1.0 0.9091)) +(: cnet_atlocation_2a0a87a9a2 (AtLocation pineapple pizza) (STV 1.0 0.9091)) +(: cnet_atlocation_e206753981 (AtLocation pin bowling_alley) (STV 1.0 0.9091)) +(: cnet_atlocation_62fd396338 (AtLocation pirate boat) (STV 1.0 0.9091)) +(: cnet_atlocation_b0e68f39ac (AtLocation pistol police_station) (STV 1.0 0.9454)) +(: cnet_atlocation_a0f8cec511 (AtLocation pit cherry) (STV 1.0 0.9091)) +(: cnet_atlocation_50d5ad3f94 (AtLocation pit mine) (STV 1.0 0.9091)) +(: cnet_atlocation_413e2904e6 (AtLocation pit peach) (STV 1.0 0.9339)) +(: cnet_atlocation_44127ea075 (AtLocation pitcher_mound baseball_field) (STV 1.0 0.9454)) +(: cnet_atlocation_ff6cd8de14 (AtLocation pizza oven) (STV 1.0 0.9524)) +(: cnet_atlocation_df7ea679cf (AtLocation pizza plate) (STV 1.0 0.9091)) +(: cnet_atlocation_a14aa6d955 (AtLocation pizza_parlor city) (STV 1.0 0.9091)) +(: cnet_atlocation_4858cd1957 (AtLocation pizzeria little_italy) (STV 1.0 0.9454)) +(: cnet_atlocation_f9b539e0a8 (AtLocation pizzeria mall) (STV 1.0 0.9339)) +(: cnet_atlocation_0a354b515e (AtLocation pizzeria populated_area) (STV 1.0 0.9091)) +(: cnet_atlocation_591262abaf (AtLocation place location) (STV 1.0 0.9339)) +(: cnet_atlocation_1ebc1ebbad (AtLocation place map) (STV 1.0 0.9091)) +(: cnet_atlocation_ade099aa25 (AtLocation place_mat table) (STV 1.0 0.9091)) +(: cnet_atlocation_2610cd723c (AtLocation place_setting table) (STV 1.0 0.9454)) +(: cnet_atlocation_a2f4d8229c (AtLocation place_to_dive swimming_pool) (STV 1.0 0.9091)) +(: cnet_atlocation_6acf225593 (AtLocation place_to_eat city) (STV 1.0 0.9091)) +(: cnet_atlocation_af8b7b2c2a (AtLocation place_to_eat town) (STV 1.0 0.9339)) +(: cnet_atlocation_e7e820a5ed (AtLocation place_to_stay city) (STV 1.0 0.9091)) +(: cnet_atlocation_bc352e8959 (AtLocation place_to_stay hotel) (STV 1.0 0.9572)) +(: cnet_atlocation_0b1d387974 (AtLocation place_to_stay motel) (STV 1.0 0.9339)) +(: cnet_atlocation_3fc56d77e2 (AtLocation place_to_stay phone_book) (STV 1.0 0.9091)) +(: cnet_atlocation_c21019dd42 (AtLocation placemat table) (STV 1.0 0.9339)) +(: cnet_atlocation_2ecc9d3e0d (AtLocation plain georgia) (STV 1.0 0.9091)) +(: cnet_atlocation_9892272c60 (AtLocation plane air) (STV 1.0 0.9339)) +(: cnet_atlocation_0cf2afdfe7 (AtLocation plane hangar) (STV 1.0 0.9091)) +(: cnet_atlocation_c0e158ce53 (AtLocation plane runway) (STV 1.0 0.9339)) +(: cnet_atlocation_0dd7cf3099 (AtLocation plane sky) (STV 1.0 0.9339)) +(: cnet_atlocation_47a516ddb3 (AtLocation plane taxiway) (STV 1.0 0.9091)) +(: cnet_atlocation_3a0bc9b422 (AtLocation plane_ticket pocket) (STV 1.0 0.9339)) +(: cnet_atlocation_5b5df7c24b (AtLocation planet galaxy) (STV 1.0 0.9091)) +(: cnet_atlocation_242a93c8e5 (AtLocation planet orbit) (STV 1.0 0.9608)) +(: cnet_atlocation_6ff229984d (AtLocation planet outer_space) (STV 1.0 0.9659)) +(: cnet_atlocation_4457f9f25e (AtLocation planet outerspace) (STV 1.0 0.9091)) +(: cnet_atlocation_f9a73a4653 (AtLocation planet space) (STV 1.0 0.9091)) +(: cnet_atlocation_13780fea4b (AtLocation planet universe) (STV 1.0 0.9608)) +(: cnet_atlocation_6e14fd80e8 (AtLocation plankton ocean) (STV 1.0 0.9339)) +(: cnet_atlocation_9a9b85189f (AtLocation plankton water) (STV 1.0 0.9608)) +(: cnet_atlocation_bae7fe98ac (AtLocation plant pot) (STV 1.0 0.9454)) +(: cnet_atlocation_30f5adafe3 (AtLocation plant windowsill) (STV 1.0 0.9636)) +(: cnet_atlocation_b59ee973e1 (AtLocation plantation georgia) (STV 1.0 0.9339)) +(: cnet_atlocation_351c2866a4 (AtLocation plant garden) (STV 1.0 0.9339)) +(: cnet_atlocation_442ef08ab3 (AtLocation plant greenhouse) (STV 1.0 0.9339)) +(: cnet_atlocation_5e83536dee (AtLocation plant park) (STV 1.0 0.9454)) +(: cnet_atlocation_34644509dc (AtLocation plant surface_of_earth) (STV 1.0 0.9339)) +(: cnet_atlocation_dbc5d4c176 (AtLocation plate cabinet) (STV 1.0 0.9091)) +(: cnet_atlocation_afffa32bba (AtLocation plate cupboard) (STV 1.0 0.9524)) +(: cnet_atlocation_e865f17c2e (AtLocation plate kitchen) (STV 1.0 0.9636)) +(: cnet_atlocation_247cb8ec75 (AtLocation plate restaurant) (STV 1.0 0.9091)) +(: cnet_atlocation_7dc70bed7b (AtLocation plate table) (STV 1.0 0.9730)) +(: cnet_atlocation_d3b4733fc0 (AtLocation platter cabinet) (STV 1.0 0.9091)) +(: cnet_atlocation_1cb39a0178 (AtLocation play theater) (STV 1.0 0.9091)) +(: cnet_atlocation_c0fc93e024 (AtLocation play theatre) (STV 1.0 0.9091)) +(: cnet_atlocation_5951a34583 (AtLocation player sporting_event) (STV 1.0 0.9091)) +(: cnet_atlocation_c2c1709b7c (AtLocation playground park) (STV 1.0 0.9659)) +(: cnet_atlocation_c93cedb6bb (AtLocation playroom preschool) (STV 1.0 0.9091)) +(: cnet_atlocation_8aada6718f (AtLocation pleasure_garden japan) (STV 1.0 0.9339)) +(: cnet_atlocation_b3096f0cb2 (AtLocation plumbing bathroom) (STV 1.0 0.9454)) +(: cnet_atlocation_1066adaa4c (AtLocation plumbing house) (STV 1.0 0.9454)) +(: cnet_atlocation_3b2bff460c (AtLocation plumbing kitchen) (STV 1.0 0.9339)) +(: cnet_atlocation_480e782a88 (AtLocation plumbing oil_refinery) (STV 1.0 0.9091)) +(: cnet_atlocation_07608da890 (AtLocation plumbing wall) (STV 1.0 0.9339)) +(: cnet_atlocation_60ac93e1ca (AtLocation plumbing water_fountain) (STV 1.0 0.9091)) +(: cnet_atlocation_186050a2d5 (AtLocation pluto space) (STV 1.0 0.9091)) +(: cnet_atlocation_7ac7d43a2b (AtLocation pocket_lint pocket) (STV 1.0 0.9339)) +(: cnet_atlocation_dcf18f3acf (AtLocation pocket_notebook pocket) (STV 1.0 0.9454)) +(: cnet_atlocation_3fbffc8ecc (AtLocation poem book_of_poetry) (STV 1.0 0.9091)) +(: cnet_atlocation_0086ca45b0 (AtLocation poem poetry_book) (STV 1.0 0.9339)) +(: cnet_atlocation_d8c3771eee (AtLocation poet home) (STV 1.0 0.9339)) +(: cnet_atlocation_ba351e658e (AtLocation poet unemployment_line) (STV 1.0 0.9091)) +(: cnet_atlocation_f513304a89 (AtLocation poker_table casino) (STV 1.0 0.9091)) +(: cnet_atlocation_f3965ca4ce (AtLocation polar_bear zoo) (STV 1.0 0.9091)) +(: cnet_atlocation_257b5fd2d0 (AtLocation police donut_shop) (STV 1.0 0.9339)) +(: cnet_atlocation_274cf87cec (AtLocation police_car roadblock) (STV 1.0 0.9339)) +(: cnet_atlocation_5a918333f3 (AtLocation police_officer beat) (STV 1.0 0.9339)) +(: cnet_atlocation_0202f2bbf7 (AtLocation police_officer city) (STV 1.0 0.9339)) +(: cnet_atlocation_3ed3d1be2a (AtLocation policeman police_station) (STV 1.0 0.9091)) +(: cnet_atlocation_8f9b77d186 (AtLocation policeman roadblock) (STV 1.0 0.9091)) +(: cnet_atlocation_bc507f0d1f (AtLocation politician washington_d_c) (STV 1.0 0.9339)) +(: cnet_atlocation_04640df614 (AtLocation pollution air) (STV 1.0 0.9091)) +(: cnet_atlocation_ecc63fcbaf (AtLocation pollution car_show) (STV 1.0 0.9091)) +(: cnet_atlocation_f57f91d592 (AtLocation pollution street) (STV 1.0 0.9091)) +(: cnet_atlocation_788dd3d65d (AtLocation pond forest) (STV 1.0 0.9091)) +(: cnet_atlocation_e8c8e6e158 (AtLocation pond ground) (STV 1.0 0.9091)) +(: cnet_atlocation_d9e0f13564 (AtLocation pond park) (STV 1.0 0.9339)) +(: cnet_atlocation_ed40cc81e2 (AtLocation pool back_yard) (STV 1.0 0.9339)) +(: cnet_atlocation_3355dd3f61 (AtLocation pool backyard) (STV 1.0 0.9454)) +(: cnet_atlocation_b86d0b01c3 (AtLocation pool neighbor_s_house) (STV 1.0 0.9091)) +(: cnet_atlocation_35337f268e (AtLocation pool_table bowling_alley) (STV 1.0 0.9091)) +(: cnet_atlocation_3b602305b7 (AtLocation poop dirty_diaper) (STV 1.0 0.9091)) +(: cnet_atlocation_e934f81bfd (AtLocation poop lawn) (STV 1.0 0.9091)) +(: cnet_atlocation_c41434f19b (AtLocation poop zoo) (STV 1.0 0.9091)) +(: cnet_atlocation_b8f05f3f78 (AtLocation poor_people fast_food_restaurant) (STV 1.0 0.9091)) +(: cnet_atlocation_313dffeac0 (AtLocation popcorn drive_in_movie) (STV 1.0 0.9091)) +(: cnet_atlocation_a9fcc9667a (AtLocation popcorn movie_theater) (STV 1.0 0.9091)) +(: cnet_atlocation_5e0c250c4e (AtLocation popcorn movy) (STV 1.0 0.9091)) +(: cnet_atlocation_e2681ccd23 (AtLocation popcorn show) (STV 1.0 0.9091)) +(: cnet_atlocation_79ef6f2dac (AtLocation population city) (STV 1.0 0.9339)) +(: cnet_atlocation_5cdae4b72e (AtLocation population country) (STV 1.0 0.9454)) +(: cnet_atlocation_4f395de517 (AtLocation porch_swing porch) (STV 1.0 0.9091)) +(: cnet_atlocation_375e8fc5ba (AtLocation pork dinner) (STV 1.0 0.9091)) +(: cnet_atlocation_a88d3c3051 (AtLocation pork_butcher butcher_shop) (STV 1.0 0.9091)) +(: cnet_atlocation_58ea0742c8 (AtLocation porn internet) (STV 1.0 0.9339)) +(: cnet_atlocation_ca205d4f76 (AtLocation porno bed) (STV 1.0 0.9091)) +(: cnet_atlocation_a8e171cba4 (AtLocation pornography home) (STV 1.0 0.9091)) +(: cnet_atlocation_b5ebdd6b2f (AtLocation pornography internet) (STV 1.0 0.9524)) +(: cnet_atlocation_ae868cc304 (AtLocation possession house) (STV 1.0 0.9091)) +(: cnet_atlocation_39699dd760 (AtLocation post_note office) (STV 1.0 0.9091)) +(: cnet_atlocation_85ce847e0c (AtLocation post_note desk) (STV 1.0 0.9719)) +(: cnet_atlocation_bce9ed0ea3 (AtLocation post_office building) (STV 1.0 0.9091)) +(: cnet_atlocation_5736fc89ef (AtLocation post_office center_of_town) (STV 1.0 0.9454)) +(: cnet_atlocation_0aa7dc8bdd (AtLocation post_office town) (STV 1.0 0.9454)) +(: cnet_atlocation_48b2d08ef8 (AtLocation postal_counter office) (STV 1.0 0.9091)) +(: cnet_atlocation_c76295422a (AtLocation postal_worker post_office) (STV 1.0 0.9091)) +(: cnet_atlocation_4436611af0 (AtLocation postcard mail_box) (STV 1.0 0.9091)) +(: cnet_atlocation_6d1b526fc2 (AtLocation postcard post_office) (STV 1.0 0.9091)) +(: cnet_atlocation_fceb419ff9 (AtLocation postmaster post_office) (STV 1.0 0.9524)) +(: cnet_atlocation_57fd844e88 (AtLocation postmen post_office) (STV 1.0 0.9091)) +(: cnet_atlocation_adc4c5cb75 (AtLocation pot cupboard) (STV 1.0 0.9091)) +(: cnet_atlocation_55424f7331 (AtLocation pot greenhouse) (STV 1.0 0.9091)) +(: cnet_atlocation_e5281bf532 (AtLocation pot_in_or_rather stove) (STV 1.0 0.9091)) +(: cnet_atlocation_a999bfe54e (AtLocation potato apartment) (STV 1.0 0.9091)) +(: cnet_atlocation_68bf80f229 (AtLocation potato bag) (STV 1.0 0.9339)) +(: cnet_atlocation_a8611cae52 (AtLocation potato bag_of_potatoe) (STV 1.0 0.9091)) +(: cnet_atlocation_927a6d3cdf (AtLocation potato bin) (STV 1.0 0.9091)) +(: cnet_atlocation_e67758721e (AtLocation potato casserole) (STV 1.0 0.9091)) +(: cnet_atlocation_14398d3a1a (AtLocation potato farmer_s_field) (STV 1.0 0.9091)) +(: cnet_atlocation_dae5535814 (AtLocation potato food_market) (STV 1.0 0.9091)) +(: cnet_atlocation_2a83da9f13 (AtLocation potato grocer_shop) (STV 1.0 0.9091)) +(: cnet_atlocation_c7dec34eff (AtLocation potato grocery) (STV 1.0 0.9339)) +(: cnet_atlocation_319559304a (AtLocation potato ireland) (STV 1.0 0.9524)) +(: cnet_atlocation_b61ca96464 (AtLocation potato kitchen) (STV 1.0 0.9719)) +(: cnet_atlocation_a7f16dc81d (AtLocation potato market) (STV 1.0 0.9572)) +(: cnet_atlocation_5fec720851 (AtLocation potato microwave) (STV 1.0 0.9091)) +(: cnet_atlocation_0888a3f32c (AtLocation potato new_hampshire) (STV 1.0 0.9091)) +(: cnet_atlocation_27016e0715 (AtLocation potato pantry) (STV 1.0 0.9707)) +(: cnet_atlocation_bb09b19ae0 (AtLocation potato potato_bin) (STV 1.0 0.9339)) +(: cnet_atlocation_f479b88d27 (AtLocation potato potato_sack) (STV 1.0 0.9339)) +(: cnet_atlocation_f406a3702c (AtLocation potato potato_salad) (STV 1.0 0.9339)) +(: cnet_atlocation_a23f81f5ec (AtLocation potato produce_store) (STV 1.0 0.9339)) +(: cnet_atlocation_015e8eff3b (AtLocation potato refridgerator) (STV 1.0 0.9091)) +(: cnet_atlocation_1dd7844f2d (AtLocation potato restaurant) (STV 1.0 0.9454)) +(: cnet_atlocation_a45b89427f (AtLocation potato root_cellar) (STV 1.0 0.9572)) +(: cnet_atlocation_e6b4d76360 (AtLocation potato salad) (STV 1.0 0.9454)) +(: cnet_atlocation_b478800cc7 (AtLocation potato soil) (STV 1.0 0.9339)) +(: cnet_atlocation_46569e160e (AtLocation potato stew) (STV 1.0 0.9524)) +(: cnet_atlocation_edbeb343d1 (AtLocation potato store) (STV 1.0 0.9339)) +(: cnet_atlocation_02f88d7e5e (AtLocation potatoe cellar) (STV 1.0 0.9524)) +(: cnet_atlocation_a0edaea7ad (AtLocation potatoe countryside) (STV 1.0 0.9091)) +(: cnet_atlocation_cc476f8080 (AtLocation pothole street) (STV 1.0 0.9454)) +(: cnet_atlocation_1e286a1760 (AtLocation potpourri drawer) (STV 1.0 0.9091)) +(: cnet_atlocation_571b749777 (AtLocation pot drawer) (STV 1.0 0.9091)) +(: cnet_atlocation_725140f7b7 (AtLocation pot_and_pan kitchen) (STV 1.0 0.9339)) +(: cnet_atlocation_2bab5a0375 (AtLocation potted_flower windowsill) (STV 1.0 0.9091)) +(: cnet_atlocation_5aca177e2a (AtLocation potted_plant windowsill) (STV 1.0 0.9091)) +(: cnet_atlocation_76acbcb1ab (AtLocation power_screwdriver cabinet) (STV 1.0 0.9091)) +(: cnet_atlocation_59c80913b6 (AtLocation power_screwdriver hardware_store) (STV 1.0 0.9091)) +(: cnet_atlocation_796b80b8af (AtLocation power_screwdriver tool_box) (STV 1.0 0.9091)) +(: cnet_atlocation_1fe2019c17 (AtLocation power_screwdriver tool_chest) (STV 1.0 0.9091)) +(: cnet_atlocation_50ab74e80f (AtLocation power_strip desk) (STV 1.0 0.9091)) +(: cnet_atlocation_455e37eab3 (AtLocation prayer church) (STV 1.0 0.9339)) +(: cnet_atlocation_05b4a6e219 (AtLocation prayer_book church) (STV 1.0 0.9091)) +(: cnet_atlocation_877b3c6873 (AtLocation preaching funeral) (STV 1.0 0.9091)) +(: cnet_atlocation_4acc1823e6 (AtLocation preist confession) (STV 1.0 0.9091)) +(: cnet_atlocation_8df88a416b (AtLocation present box) (STV 1.0 0.9339)) +(: cnet_atlocation_d53d7df8c1 (AtLocation presenter demonstration) (STV 1.0 0.9091)) +(: cnet_atlocation_5d7532d8cf (AtLocation present friend_s_wedding) (STV 1.0 0.9091)) +(: cnet_atlocation_7023f55247 (AtLocation preserved_frog jar) (STV 1.0 0.9091)) +(: cnet_atlocation_f6b9b6ca7e (AtLocation preserve jar) (STV 1.0 0.9091)) +(: cnet_atlocation_d49854b870 (AtLocation president government) (STV 1.0 0.9339)) +(: cnet_atlocation_c23c77a442 (AtLocation president white_house) (STV 1.0 0.9091)) +(: cnet_atlocation_d15e8aee8f (AtLocation pretty_girl beach) (STV 1.0 0.9091)) +(: cnet_atlocation_d6e9777291 (AtLocation price_of_bond newspaper) (STV 1.0 0.9091)) +(: cnet_atlocation_2e5ce4563e (AtLocation price_of_commodity newspaper) (STV 1.0 0.9091)) +(: cnet_atlocation_ee8d52524a (AtLocation price_of_gold newspaper) (STV 1.0 0.9091)) +(: cnet_atlocation_fca4d01ca5 (AtLocation price_of_oil newspaper) (STV 1.0 0.9091)) +(: cnet_atlocation_6bebc4e454 (AtLocation price_of_over_counter_stock newspaper) (STV 1.0 0.9091)) +(: cnet_atlocation_c0d147a0ea (AtLocation price_of_silver newspaper) (STV 1.0 0.9091)) +(: cnet_atlocation_e374aaef15 (AtLocation priest confession) (STV 1.0 0.9339)) +(: cnet_atlocation_5a5c7eabf5 (AtLocation prince castle) (STV 1.0 0.9091)) +(: cnet_atlocation_2dbf8c32fd (AtLocation prince england) (STV 1.0 0.9091)) +(: cnet_atlocation_2ce0ad9d84 (AtLocation prince fairy_tale) (STV 1.0 0.9091)) +(: cnet_atlocation_279d2e0131 (AtLocation principal school) (STV 1.0 0.9339)) +(: cnet_atlocation_b35e27f780 (AtLocation print paper) (STV 1.0 0.9091)) +(: cnet_atlocation_c18095746d (AtLocation printer office) (STV 1.0 0.9454)) +(: cnet_atlocation_483e747400 (AtLocation prisoner jail) (STV 1.0 0.9707)) +(: cnet_atlocation_8c8870f6a1 (AtLocation prisoner prison) (STV 1.0 0.9339)) +(: cnet_atlocation_41f64b3bd3 (AtLocation problem quandry) (STV 1.0 0.9091)) +(: cnet_atlocation_bf9385ea01 (AtLocation produce market) (STV 1.0 0.9091)) +(: cnet_atlocation_a5499c90a6 (AtLocation produce supermarket) (STV 1.0 0.9339)) +(: cnet_atlocation_3f224b731f (AtLocation product store) (STV 1.0 0.9091)) +(: cnet_atlocation_d2d696187d (AtLocation program opera) (STV 1.0 0.9524)) +(: cnet_atlocation_8f8ec6b0b3 (AtLocation program television) (STV 1.0 0.9091)) +(: cnet_atlocation_7b2138592c (AtLocation program conference) (STV 1.0 0.9091)) +(: cnet_atlocation_0c18696895 (AtLocation program theater) (STV 1.0 0.9091)) +(: cnet_atlocation_49cad1d114 (AtLocation projectile weapon) (STV 1.0 0.9091)) +(: cnet_atlocation_96320d23da (AtLocation projectile_ball flintlock) (STV 1.0 0.9091)) +(: cnet_atlocation_120082e4f9 (AtLocation projector movie) (STV 1.0 0.9091)) +(: cnet_atlocation_c5383bd56e (AtLocation projector movy) (STV 1.0 0.9339)) +(: cnet_atlocation_33c586aa70 (AtLocation prostitute street_corner) (STV 1.0 0.9524)) +(: cnet_atlocation_ec6f3b066f (AtLocation prostitute whorehouse) (STV 1.0 0.9339)) +(: cnet_atlocation_d849f14139 (AtLocation prostitute corner_of_two_street) (STV 1.0 0.9339)) +(: cnet_atlocation_bf00a70732 (AtLocation prostitute crack_house) (STV 1.0 0.9091)) +(: cnet_atlocation_877301ec72 (AtLocation prostitute jail) (STV 1.0 0.9454)) +(: cnet_atlocation_9bb76fca81 (AtLocation protester demonstration) (STV 1.0 0.9091)) +(: cnet_atlocation_0ca9c73e2b (AtLocation protestor demonstration) (STV 1.0 0.9091)) +(: cnet_atlocation_5c0b4de75c (AtLocation pub city) (STV 1.0 0.9339)) +(: cnet_atlocation_827ade1cd8 (AtLocation pub england) (STV 1.0 0.9339)) +(: cnet_atlocation_7d76411fa8 (AtLocation pub great_britain) (STV 1.0 0.9339)) +(: cnet_atlocation_69166cbee0 (AtLocation pub ireland) (STV 1.0 0.9091)) +(: cnet_atlocation_4149328eaa (AtLocation pub irish_town) (STV 1.0 0.9091)) +(: cnet_atlocation_64821e1c2b (AtLocation pub london) (STV 1.0 0.9454)) +(: cnet_atlocation_ff78c4d3fd (AtLocation pub town_s_center) (STV 1.0 0.9091)) +(: cnet_atlocation_7713c8f15b (AtLocation pub edinburgh) (STV 1.0 0.9091)) +(: cnet_atlocation_617d6e3895 (AtLocation puck hockey_game) (STV 1.0 0.9659)) +(: cnet_atlocation_72a764fd3d (AtLocation puck hockey_rink) (STV 1.0 0.9091)) +(: cnet_atlocation_65028b484c (AtLocation puck sporting_good_store) (STV 1.0 0.9091)) +(: cnet_atlocation_6532029ce2 (AtLocation puddle_of_water boat) (STV 1.0 0.9091)) +(: cnet_atlocation_6eb9df0066 (AtLocation pulpit cathedral) (STV 1.0 0.9091)) +(: cnet_atlocation_e7fd0a6b5f (AtLocation pumpkin farmer_s_market) (STV 1.0 0.9091)) +(: cnet_atlocation_4a9ad8b650 (AtLocation puppy home) (STV 1.0 0.9091)) +(: cnet_atlocation_cfa997e647 (AtLocation puppy kennel) (STV 1.0 0.9091)) +(: cnet_atlocation_639dedc510 (AtLocation purse handbag) (STV 1.0 0.9339)) +(: cnet_atlocation_580296b0a9 (AtLocation push_button machine) (STV 1.0 0.9091)) +(: cnet_atlocation_a39cb23ade (AtLocation puzzle newspaper) (STV 1.0 0.9636)) +(: cnet_atlocation_f8a1411a15 (AtLocation puzzle toy_store) (STV 1.0 0.9572)) +(: cnet_atlocation_d5fe76d885 (AtLocation pyjama bedroom) (STV 1.0 0.9091)) +(: cnet_atlocation_c7ad94d5a2 (AtLocation pyrotechnic opera) (STV 1.0 0.9091)) +(: cnet_atlocation_6ec9920839 (AtLocation quartz gem_store) (STV 1.0 0.9091)) +(: cnet_atlocation_743b52c6bb (AtLocation quasar space) (STV 1.0 0.9339)) +(: cnet_atlocation_f143e5b71e (AtLocation queen bee_hive) (STV 1.0 0.9091)) +(: cnet_atlocation_42fa1bc64f (AtLocation queen beehive) (STV 1.0 0.9091)) +(: cnet_atlocation_438ae32811 (AtLocation queen castle) (STV 1.0 0.9339)) +(: cnet_atlocation_b48a4f4584 (AtLocation queen england) (STV 1.0 0.9091)) +(: cnet_atlocation_e95fd15d29 (AtLocation quiet library) (STV 1.0 0.9339)) +(: cnet_atlocation_b7e5a7418f (AtLocation quiet_place_to_study library) (STV 1.0 0.9339)) +(: cnet_atlocation_4a7724d02c (AtLocation quill_brush china) (STV 1.0 0.9091)) +(: cnet_atlocation_dbf4716536 (AtLocation rabbi synagogue) (STV 1.0 0.9572)) +(: cnet_atlocation_9c9bdec330 (AtLocation race_car race_track) (STV 1.0 0.9339)) +(: cnet_atlocation_764092a2f1 (AtLocation racer race_track) (STV 1.0 0.9091)) +(: cnet_atlocation_7a639cc9ac (AtLocation rack oven) (STV 1.0 0.9091)) +(: cnet_atlocation_e756b16378 (AtLocation radiation space) (STV 1.0 0.9091)) +(: cnet_atlocation_dbecb08726 (AtLocation radiator car) (STV 1.0 0.9091)) +(: cnet_atlocation_4f63ea32bb (AtLocation radio every_car_and_house) (STV 1.0 0.9091)) +(: cnet_atlocation_0cc5eec860 (AtLocation radio space_shuttle) (STV 1.0 0.9339)) +(: cnet_atlocation_cf600c9a80 (AtLocation radio_city_music_hall new_york_city) (STV 1.0 0.9245)) +(: cnet_atlocation_a940197854 (AtLocation radio_studio building) (STV 1.0 0.9339)) +(: cnet_atlocation_f53f3af041 (AtLocation radio_studio large_city) (STV 1.0 0.9339)) +(: cnet_atlocation_82841a65d2 (AtLocation radio_studio radio_station) (STV 1.0 0.9091)) +(: cnet_atlocation_f316fe94fc (AtLocation rafter attic) (STV 1.0 0.9091)) +(: cnet_atlocation_9dc095fecf (AtLocation rail subway) (STV 1.0 0.9091)) +(: cnet_atlocation_d71a8011e4 (AtLocation railing porch) (STV 1.0 0.9339)) +(: cnet_atlocation_5f915d1060 (AtLocation railroad_station new_york_city) (STV 1.0 0.9091)) +(: cnet_atlocation_ef5af9bc02 (AtLocation railroad_track train_station) (STV 1.0 0.9339)) +(: cnet_atlocation_555af5a82d (AtLocation rain forest) (STV 1.0 0.9339)) +(: cnet_atlocation_657a86f8a1 (AtLocation rain weather) (STV 1.0 0.9091)) +(: cnet_atlocation_e1be3333d4 (AtLocation ramen_noodle pantry) (STV 1.0 0.9091)) +(: cnet_atlocation_d4d0bec3ec (AtLocation ranch_house ranch) (STV 1.0 0.9091)) +(: cnet_atlocation_fefcb6a2d0 (AtLocation ranch_house texa) (STV 1.0 0.9524)) +(: cnet_atlocation_115e9f990a (AtLocation ranger state_park) (STV 1.0 0.9339)) +(: cnet_atlocation_85be13c4b4 (AtLocation rapist jail) (STV 1.0 0.9091)) +(: cnet_atlocation_4e770e194c (AtLocation rat laboratory) (STV 1.0 0.9091)) +(: cnet_atlocation_b2f3cbbeac (AtLocation rat cellar) (STV 1.0 0.9091)) +(: cnet_atlocation_ceaa5af91c (AtLocation rat petstore) (STV 1.0 0.9091)) +(: cnet_atlocation_621c5e3fe7 (AtLocation rat sewer) (STV 1.0 0.9339)) +(: cnet_atlocation_74ee765c4d (AtLocation reader library) (STV 1.0 0.9339)) +(: cnet_atlocation_65169c2013 (AtLocation reading_glass drawer) (STV 1.0 0.9091)) +(: cnet_atlocation_5e0d48c7e5 (AtLocation real_estate_picture newspaper) (STV 1.0 0.9091)) +(: cnet_atlocation_9c45318e27 (AtLocation reception hall) (STV 1.0 0.9091)) +(: cnet_atlocation_1e29a46409 (AtLocation reception_area hotel) (STV 1.0 0.9091)) +(: cnet_atlocation_9d4b9d4645 (AtLocation reception_desk hotel) (STV 1.0 0.9339)) +(: cnet_atlocation_c993080b86 (AtLocation reception_desk office) (STV 1.0 0.9091)) +(: cnet_atlocation_55c71de271 (AtLocation reception_desk office_park) (STV 1.0 0.9091)) +(: cnet_atlocation_e92667c38b (AtLocation record office) (STV 1.0 0.9091)) +(: cnet_atlocation_765df1c46f (AtLocation red_pepper pizza) (STV 1.0 0.9454)) +(: cnet_atlocation_4c045f8ceb (AtLocation redneck georgia) (STV 1.0 0.9091)) +(: cnet_atlocation_ccebb795ec (AtLocation referee football) (STV 1.0 0.9091)) +(: cnet_atlocation_efb88fa8fc (AtLocation referee hockey_game) (STV 1.0 0.9339)) +(: cnet_atlocation_7fb46518c6 (AtLocation referee soccer_game) (STV 1.0 0.9091)) +(: cnet_atlocation_e0d571ca19 (AtLocation reference_desk library) (STV 1.0 0.9091)) +(: cnet_atlocation_4e4b9397e3 (AtLocation reference_material library) (STV 1.0 0.9091)) +(: cnet_atlocation_fee18442d8 (AtLocation reflection mirror) (STV 1.0 0.9091)) +(: cnet_atlocation_40c5f579c3 (AtLocation reflex_hammer doctor) (STV 1.0 0.9339)) +(: cnet_atlocation_81b90371f2 (AtLocation refrigerator apartment) (STV 1.0 0.9091)) +(: cnet_atlocation_3b6fa864d2 (AtLocation refrigerator garage) (STV 1.0 0.9339)) +(: cnet_atlocation_70674c8493 (AtLocation refrigerator home) (STV 1.0 0.9091)) +(: cnet_atlocation_51a9cbe814 (AtLocation refrigerator_magnet fridge) (STV 1.0 0.9091)) +(: cnet_atlocation_93c6797b11 (AtLocation refuse dump) (STV 1.0 0.9091)) +(: cnet_atlocation_ff5f8fcb1c (AtLocation refuse trash_truck) (STV 1.0 0.9091)) +(: cnet_atlocation_33476c2af2 (AtLocation registry_office office_building) (STV 1.0 0.9091)) +(: cnet_atlocation_c58f60d1bd (AtLocation rehearsing_room theater) (STV 1.0 0.9091)) +(: cnet_atlocation_5cad37cf2f (AtLocation relative relative_house) (STV 1.0 0.9091)) +(: cnet_atlocation_0881fe5666 (AtLocation religious_tract church) (STV 1.0 0.9572)) +(: cnet_atlocation_8c717252c5 (AtLocation religious_tract proselyte_s_hand) (STV 1.0 0.9091)) +(: cnet_atlocation_d08fdeed9c (AtLocation rented_apartment apartment_building) (STV 1.0 0.9091)) +(: cnet_atlocation_0bbfa6c018 (AtLocation rented_apartment city) (STV 1.0 0.9572)) +(: cnet_atlocation_7a4fddf6f4 (AtLocation rented_flat city) (STV 1.0 0.9572)) +(: cnet_atlocation_03002dd323 (AtLocation rented_flat england) (STV 1.0 0.9339)) +(: cnet_atlocation_f0df46a827 (AtLocation rented_flat london) (STV 1.0 0.9454)) +(: cnet_atlocation_a60446001e (AtLocation repairman repair_shop) (STV 1.0 0.9091)) +(: cnet_atlocation_d1bdf6b393 (AtLocation report_card fridge) (STV 1.0 0.9091)) +(: cnet_atlocation_8c26e95d71 (AtLocation researcher laboratory) (STV 1.0 0.9572)) +(: cnet_atlocation_1e5b580ef0 (AtLocation resident apartment) (STV 1.0 0.9091)) +(: cnet_atlocation_20f7fdf8c5 (AtLocation rest_room rest_area) (STV 1.0 0.9091)) +(: cnet_atlocation_d187c83b52 (AtLocation restaurant city) (STV 1.0 0.9524)) +(: cnet_atlocation_8ecb030dff (AtLocation restaurant hotel) (STV 1.0 0.9454)) +(: cnet_atlocation_3de004855b (AtLocation restaurant town) (STV 1.0 0.9524)) +(: cnet_atlocation_4ac2409f35 (AtLocation restaurant_bill restaurant) (STV 1.0 0.9454)) +(: cnet_atlocation_dd1ad4eaed (AtLocation restaurant_bill table) (STV 1.0 0.9339)) +(: cnet_atlocation_d84b2f0942 (AtLocation restaurant_diner restaurant) (STV 1.0 0.9091)) +(: cnet_atlocation_9658281fa1 (AtLocation restaurant_diner town) (STV 1.0 0.9339)) +(: cnet_atlocation_2caeb873c9 (AtLocation restaurant_dining_area hotel) (STV 1.0 0.9091)) +(: cnet_atlocation_05ca171293 (AtLocation restaurant_dining_area mall) (STV 1.0 0.9091)) +(: cnet_atlocation_2b4d2a0b07 (AtLocation restaurant_dining_area restaurant) (STV 1.0 0.9091)) +(: cnet_atlocation_2ea26c83a7 (AtLocation restaurant_storage_area restaurant) (STV 1.0 0.9091)) +(: cnet_atlocation_174709b3e0 (AtLocation restaurant_table restaurant) (STV 1.0 0.9572)) +(: cnet_atlocation_93ea226946 (AtLocation restroom library) (STV 1.0 0.9339)) +(: cnet_atlocation_8142e5c5b0 (AtLocation restroom rest_area) (STV 1.0 0.9572)) +(: cnet_atlocation_3821dcf513 (AtLocation restroom airport) (STV 1.0 0.9091)) +(: cnet_atlocation_457caa12bf (AtLocation retiree florida) (STV 1.0 0.9091)) +(: cnet_atlocation_20a18deead (AtLocation return_ticket airport) (STV 1.0 0.9339)) +(: cnet_atlocation_a99680afe6 (AtLocation returned_mail desk) (STV 1.0 0.9091)) +(: cnet_atlocation_979cf3b773 (AtLocation revolver gun_store) (STV 1.0 0.9091)) +(: cnet_atlocation_0cf500f6da (AtLocation revolving_door lobby) (STV 1.0 0.9091)) +(: cnet_atlocation_de8752f94b (AtLocation rhinocero zoo) (STV 1.0 0.9091)) +(: cnet_atlocation_5febf16536 (AtLocation ribbon gallery_opening) (STV 1.0 0.9339)) +(: cnet_atlocation_d8ca624ca7 (AtLocation ribbon hair) (STV 1.0 0.9339)) +(: cnet_atlocation_8e3ad1e154 (AtLocation rich_people gallery_opening) (STV 1.0 0.9091)) +(: cnet_atlocation_ddbb6d1f64 (AtLocation rich_person casino) (STV 1.0 0.9091)) +(: cnet_atlocation_9f230159ab (AtLocation riddle newspaper) (STV 1.0 0.9091)) +(: cnet_atlocation_8269b581a3 (AtLocation ride carnival) (STV 1.0 0.9454)) +(: cnet_atlocation_03af157c73 (AtLocation ride fair) (STV 1.0 0.9091)) +(: cnet_atlocation_53c41d2ec9 (AtLocation rider car) (STV 1.0 0.9091)) +(: cnet_atlocation_589de8762e (AtLocation rider subway) (STV 1.0 0.9091)) +(: cnet_atlocation_c5350f25a0 (AtLocation riding_lawnmower garage) (STV 1.0 0.9091)) +(: cnet_atlocation_c69da2600c (AtLocation right_angle corner) (STV 1.0 0.9454)) +(: cnet_atlocation_626e8eabed (AtLocation ring bath_tub) (STV 1.0 0.9339)) +(: cnet_atlocation_27d5399dbe (AtLocation ring finger) (STV 1.0 0.9693)) +(: cnet_atlocation_cc5c67ce22 (AtLocation ring friend_s_wedding) (STV 1.0 0.9091)) +(: cnet_atlocation_dcbbe9832b (AtLocation ring_bearer wedding) (STV 1.0 0.9572)) +(: cnet_atlocation_d8b6cc51e8 (AtLocation ring_binder school) (STV 1.0 0.9091)) +(: cnet_atlocation_bfb432ef33 (AtLocation ring jewelry_store) (STV 1.0 0.9091)) +(: cnet_atlocation_e6b12ae25f (AtLocation river bridge) (STV 1.0 0.9572)) +(: cnet_atlocation_995de516c2 (AtLocation river valley) (STV 1.0 0.9524)) +(: cnet_atlocation_8fead0a715 (AtLocation river waterfall) (STV 1.0 0.9454)) +(: cnet_atlocation_a70a9dbe4b (AtLocation road town) (STV 1.0 0.9454)) +(: cnet_atlocation_893ca619db (AtLocation road_kill freeway) (STV 1.0 0.9091)) +(: cnet_atlocation_231ce6f00d (AtLocation road_kill street) (STV 1.0 0.9091)) +(: cnet_atlocation_6776d12f1b (AtLocation road_sign fork_in_road) (STV 1.0 0.9339)) +(: cnet_atlocation_ade9d1c53b (AtLocation road_sign street_corner) (STV 1.0 0.9091)) +(: cnet_atlocation_a32c907d73 (AtLocation roadkill freeway) (STV 1.0 0.9339)) +(: cnet_atlocation_33a886f123 (AtLocation roadway city) (STV 1.0 0.9091)) +(: cnet_atlocation_7888f34092 (AtLocation roast oven) (STV 1.0 0.9091)) +(: cnet_atlocation_7cf66ae69f (AtLocation robot factory) (STV 1.0 0.9454)) +(: cnet_atlocation_9db8f9383c (AtLocation robot laboratory) (STV 1.0 0.9091)) +(: cnet_atlocation_e3025bfdba (AtLocation robot manufacturing_plant) (STV 1.0 0.9524)) +(: cnet_atlocation_c3f5ea987a (AtLocation rock bottom_of_sea) (STV 1.0 0.9339)) +(: cnet_atlocation_2e8ddb71f9 (AtLocation rock bridge) (STV 1.0 0.9091)) +(: cnet_atlocation_36faae29c8 (AtLocation rock ground) (STV 1.0 0.9091)) +(: cnet_atlocation_85e61a059e (AtLocation rock in_comet) (STV 1.0 0.9091)) +(: cnet_atlocation_737820da19 (AtLocation rock moon) (STV 1.0 0.9091)) +(: cnet_atlocation_e7a404ce13 (AtLocation rock mountain) (STV 1.0 0.9636)) +(: cnet_atlocation_4b563aafa0 (AtLocation rock surface_of_earth) (STV 1.0 0.9339)) +(: cnet_atlocation_3cf7b83f34 (AtLocation rock suface_of_moon) (STV 1.0 0.9339)) +(: cnet_atlocation_b92337149c (AtLocation rock top_of_mountain) (STV 1.0 0.9091)) +(: cnet_atlocation_0671986f24 (AtLocation rock waterfall) (STV 1.0 0.9091)) +(: cnet_atlocation_2f44f759d4 (AtLocation rod engine) (STV 1.0 0.9091)) +(: cnet_atlocation_5f166066f8 (AtLocation rod hardware_store) (STV 1.0 0.9454)) +(: cnet_atlocation_5002ace053 (AtLocation roll_of_tape desk) (STV 1.0 0.9091)) +(: cnet_atlocation_b85085a850 (AtLocation roll_of_toilet_paper bathroom) (STV 1.0 0.9091)) +(: cnet_atlocation_90bc5073ac (AtLocation roller_coaster carnival) (STV 1.0 0.9339)) +(: cnet_atlocation_4a37e2e311 (AtLocation roller_coaster fairground) (STV 1.0 0.9339)) +(: cnet_atlocation_cb0d8e7162 (AtLocation rollercoaster disneyland) (STV 1.0 0.9339)) +(: cnet_atlocation_3b9ffe42c4 (AtLocation roll breadbox) (STV 1.0 0.9091)) +(: cnet_atlocation_3fdf6f2c08 (AtLocation roof_tile roof) (STV 1.0 0.9608)) +(: cnet_atlocation_8672aca34a (AtLocation roofer roof) (STV 1.0 0.9454)) +(: cnet_atlocation_96a199e7a7 (AtLocation roofing roof) (STV 1.0 0.9091)) +(: cnet_atlocation_f5688281e6 (AtLocation rook chess_set) (STV 1.0 0.9339)) +(: cnet_atlocation_5661743624 (AtLocation room friend_s_house) (STV 1.0 0.9091)) +(: cnet_atlocation_7ab66577fa (AtLocation room motel) (STV 1.0 0.9091)) +(: cnet_atlocation_d00ced9ec5 (AtLocation room school) (STV 1.0 0.9454)) +(: cnet_atlocation_edc312e957 (AtLocation room use) (STV 1.0 0.9091)) +(: cnet_atlocation_56d6546ba8 (AtLocation room_for_sleeping motel) (STV 1.0 0.9091)) +(: cnet_atlocation_3554209ac5 (AtLocation room_key at_hotel) (STV 1.0 0.9339)) +(: cnet_atlocation_c52bd15644 (AtLocation room_service at_hotel) (STV 1.0 0.9091)) +(: cnet_atlocation_7255b30101 (AtLocation room_study school) (STV 1.0 0.9091)) +(: cnet_atlocation_900ce5e1b8 (AtLocation roommate apartment) (STV 1.0 0.9091)) +(: cnet_atlocation_f0f3e26043 (AtLocation room apartment) (STV 1.0 0.9524)) +(: cnet_atlocation_01a321e5f5 (AtLocation root tree) (STV 1.0 0.9091)) +(: cnet_atlocation_e925df0ef6 (AtLocation rope backpack) (STV 1.0 0.9339)) +(: cnet_atlocation_61c6561113 (AtLocation rope boat) (STV 1.0 0.9677)) +(: cnet_atlocation_2310e47d87 (AtLocation rope sporting_good_store) (STV 1.0 0.9091)) +(: cnet_atlocation_c864e6bdde (AtLocation rosebush back_yard) (STV 1.0 0.9608)) +(: cnet_atlocation_f2bf846bc3 (AtLocation rosebush backyard) (STV 1.0 0.9636)) +(: cnet_atlocation_17f1107180 (AtLocation rosebush bloom) (STV 1.0 0.9091)) +(: cnet_atlocation_9ddac6d2ef (AtLocation rosebush botanic_garden) (STV 1.0 0.9454)) +(: cnet_atlocation_e6464711dd (AtLocation rosebush botanical_garden) (STV 1.0 0.9091)) +(: cnet_atlocation_f5c4f0089c (AtLocation rosebush flower_bed) (STV 1.0 0.9339)) +(: cnet_atlocation_65532becde (AtLocation rosebush flower_garden) (STV 1.0 0.9524)) +(: cnet_atlocation_eaf3a0c0c9 (AtLocation rosebush formal_garden) (STV 1.0 0.9091)) +(: cnet_atlocation_b9e776885b (AtLocation rosebush front_yard) (STV 1.0 0.9339)) +(: cnet_atlocation_6df5a63ace (AtLocation rosebush garden_center) (STV 1.0 0.9091)) +(: cnet_atlocation_4ec5761517 (AtLocation rosebush gardening_catalog) (STV 1.0 0.9091)) +(: cnet_atlocation_acc6d810f5 (AtLocation rosebush landscape) (STV 1.0 0.9339)) +(: cnet_atlocation_d3c3c693ef (AtLocation rosebush outdoor) (STV 1.0 0.9339)) +(: cnet_atlocation_2648bb6249 (AtLocation rosebush park) (STV 1.0 0.9339)) +(: cnet_atlocation_7f136fbdf7 (AtLocation rosebush pot) (STV 1.0 0.9091)) +(: cnet_atlocation_730031d789 (AtLocation rosebush store) (STV 1.0 0.9091)) +(: cnet_atlocation_29897e7961 (AtLocation rosebush white_house_rose_garden) (STV 1.0 0.9339)) +(: cnet_atlocation_72f6025b2a (AtLocation roulette_wheel casino) (STV 1.0 0.9339)) +(: cnet_atlocation_e62de16e6c (AtLocation roulette casino) (STV 1.0 0.9091)) +(: cnet_atlocation_057e4fa38f (AtLocation round_brush bathroom) (STV 1.0 0.9339)) +(: cnet_atlocation_d0a41581df (AtLocation route map) (STV 1.0 0.9091)) +(: cnet_atlocation_a0460f37aa (AtLocation router network) (STV 1.0 0.9091)) +(: cnet_atlocation_01168cfc4d (AtLocation row_house city) (STV 1.0 0.9339)) +(: cnet_atlocation_88715b6544 (AtLocation rowing_machine gym) (STV 1.0 0.9339)) +(: cnet_atlocation_5e6e0a3899 (AtLocation rubber bedside_table) (STV 1.0 0.9091)) +(: cnet_atlocation_ab5fc571aa (AtLocation rubber pencil_case) (STV 1.0 0.9091)) +(: cnet_atlocation_5bd53adc70 (AtLocation rubber_stamp cabinet) (STV 1.0 0.9091)) +(: cnet_atlocation_034d8da54f (AtLocation rubbermaid_product supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_8299e93a4c (AtLocation rudder boat) (STV 1.0 0.9524)) +(: cnet_atlocation_44fd36c39a (AtLocation rug desk) (STV 1.0 0.9091)) +(: cnet_atlocation_d69ffcaf77 (AtLocation rug table) (STV 1.0 0.9339)) +(: cnet_atlocation_1622c3c7cb (AtLocation rule classroom) (STV 1.0 0.9091)) +(: cnet_atlocation_33ba22eb2a (AtLocation ruler desk) (STV 1.0 0.9608)) +(: cnet_atlocation_fa6ef844b1 (AtLocation runway city) (STV 1.0 0.9091)) +(: cnet_atlocation_18f127e849 (AtLocation runway military_base) (STV 1.0 0.9091)) +(: cnet_atlocation_d24621ab04 (AtLocation rutabaga farmer_s_market) (STV 1.0 0.9091)) +(: cnet_atlocation_7f97727c26 (AtLocation sachet drawer) (STV 1.0 0.9339)) +(: cnet_atlocation_b402d080e1 (AtLocation sailor ship) (STV 1.0 0.9091)) +(: cnet_atlocation_aee4def403 (AtLocation salad refrigerator) (STV 1.0 0.9339)) +(: cnet_atlocation_0c1acb715f (AtLocation salad_bowl cupboard) (STV 1.0 0.9454)) +(: cnet_atlocation_09a50970ae (AtLocation salad_bowl kitchen) (STV 1.0 0.9091)) +(: cnet_atlocation_399914392b (AtLocation salad_bowl restaurant) (STV 1.0 0.9091)) +(: cnet_atlocation_ec75ebde31 (AtLocation salad_spinner cupboard) (STV 1.0 0.9454)) +(: cnet_atlocation_73c44af1bd (AtLocation sale department_store) (STV 1.0 0.9339)) +(: cnet_atlocation_203368171d (AtLocation sale k_mart) (STV 1.0 0.9454)) +(: cnet_atlocation_a7c91b6fb3 (AtLocation sale store) (STV 1.0 0.9339)) +(: cnet_atlocation_c50e57136e (AtLocation sale_person shop) (STV 1.0 0.9339)) +(: cnet_atlocation_188e2fb910 (AtLocation salesperson bookstore) (STV 1.0 0.9091)) +(: cnet_atlocation_b0615148f5 (AtLocation salesperson toy_store) (STV 1.0 0.9091)) +(: cnet_atlocation_f101f379d5 (AtLocation saliva mouth) (STV 1.0 0.9524)) +(: cnet_atlocation_273cbebd13 (AtLocation salon mall) (STV 1.0 0.9339)) +(: cnet_atlocation_2c06dae628 (AtLocation salt ocean) (STV 1.0 0.9608)) +(: cnet_atlocation_330f9767e2 (AtLocation salt ocean_water) (STV 1.0 0.9339)) +(: cnet_atlocation_1ab73d6692 (AtLocation salt salt_mine) (STV 1.0 0.9091)) +(: cnet_atlocation_df580b7a7b (AtLocation salt shaker) (STV 1.0 0.9091)) +(: cnet_atlocation_dfb9deccfa (AtLocation salt shelf) (STV 1.0 0.9091)) +(: cnet_atlocation_8b787853ee (AtLocation salt table) (STV 1.0 0.9339)) +(: cnet_atlocation_f6a4c1243c (AtLocation salt water) (STV 1.0 0.9339)) +(: cnet_atlocation_74e590b752 (AtLocation salt_and_pepper table) (STV 1.0 0.9091)) +(: cnet_atlocation_665ee26050 (AtLocation salt_and_pepper_shaker table) (STV 1.0 0.9454)) +(: cnet_atlocation_916f9d5a1b (AtLocation salt_shaker fast_food_restaurant) (STV 1.0 0.9091)) +(: cnet_atlocation_73d27f3b94 (AtLocation salt_water ocean) (STV 1.0 0.9524)) +(: cnet_atlocation_db21033fc3 (AtLocation saltshaker own_kitchen) (STV 1.0 0.9524)) +(: cnet_atlocation_36e4755966 (AtLocation saltshaker resturant) (STV 1.0 0.9091)) +(: cnet_atlocation_b1e1a8d55a (AtLocation sand bottom_of_sea) (STV 1.0 0.9091)) +(: cnet_atlocation_7a6fcea9d4 (AtLocation sand desert) (STV 1.0 0.9677)) +(: cnet_atlocation_fbf7a873e7 (AtLocation sand ground) (STV 1.0 0.9091)) +(: cnet_atlocation_5f0e1b4ab9 (AtLocation sand sandbox) (STV 1.0 0.9524)) +(: cnet_atlocation_754b31f2cb (AtLocation sand surface_of_earth) (STV 1.0 0.9091)) +(: cnet_atlocation_e1af40b0ad (AtLocation sand_castle beach) (STV 1.0 0.9091)) +(: cnet_atlocation_a16f673d89 (AtLocation sand_dollar beach) (STV 1.0 0.9091)) +(: cnet_atlocation_b419b46a71 (AtLocation sandwich lunchbox) (STV 1.0 0.9339)) +(: cnet_atlocation_64da53574d (AtLocation sandwiche delicatessen) (STV 1.0 0.9091)) +(: cnet_atlocation_2f176c0c86 (AtLocation santa_claus roof) (STV 1.0 0.9091)) +(: cnet_atlocation_b109feac5a (AtLocation santa_clause roof) (STV 1.0 0.9091)) +(: cnet_atlocation_f38f2d2c94 (AtLocation sap tree) (STV 1.0 0.9339)) +(: cnet_atlocation_cb2bfc55a3 (AtLocation satelite orbit) (STV 1.0 0.9572)) +(: cnet_atlocation_78061d442d (AtLocation satellite orbit) (STV 1.0 0.9572)) +(: cnet_atlocation_9e75545f6f (AtLocation satellite_dish roof) (STV 1.0 0.9091)) +(: cnet_atlocation_8a0f4083cc (AtLocation satellite outerspace) (STV 1.0 0.9091)) +(: cnet_atlocation_0ab6ae02cc (AtLocation satellite space) (STV 1.0 0.9454)) +(: cnet_atlocation_345a407df0 (AtLocation satire television) (STV 1.0 0.9091)) +(: cnet_atlocation_87e76ebd1c (AtLocation sattelite orbit) (STV 1.0 0.9091)) +(: cnet_atlocation_28dd98521c (AtLocation sattellite orbit) (STV 1.0 0.9091)) +(: cnet_atlocation_23cf7a56ed (AtLocation saucepan cupboard) (STV 1.0 0.9091)) +(: cnet_atlocation_19d8461721 (AtLocation saucepan georgia) (STV 1.0 0.9091)) +(: cnet_atlocation_b8e017cc81 (AtLocation saucepan kitchen) (STV 1.0 0.9524)) +(: cnet_atlocation_dc0df8be25 (AtLocation saucer_in kitchen) (STV 1.0 0.9091)) +(: cnet_atlocation_b7d9e6c2c7 (AtLocation sausage pizza) (STV 1.0 0.9339)) +(: cnet_atlocation_32d9c9ad7c (AtLocation saw toolbox) (STV 1.0 0.9091)) +(: cnet_atlocation_334ee364f7 (AtLocation saxophone band) (STV 1.0 0.9454)) +(: cnet_atlocation_96c1c75633 (AtLocation scale bathroom) (STV 1.0 0.9339)) +(: cnet_atlocation_046b5c116b (AtLocation scale doctor) (STV 1.0 0.9339)) +(: cnet_atlocation_891ceca980 (AtLocation scale post_office) (STV 1.0 0.9524)) +(: cnet_atlocation_edc65297de (AtLocation scale fish) (STV 1.0 0.9454)) +(: cnet_atlocation_80c84b2cef (AtLocation scar finger) (STV 1.0 0.9339)) +(: cnet_atlocation_2904942e79 (AtLocation scene play) (STV 1.0 0.9091)) +(: cnet_atlocation_aadfde70ed (AtLocation scenery painting) (STV 1.0 0.9091)) +(: cnet_atlocation_12dbb2eaff (AtLocation schedule train_station) (STV 1.0 0.9572)) +(: cnet_atlocation_acea6fa1d6 (AtLocation school city) (STV 1.0 0.9636)) +(: cnet_atlocation_c62df72872 (AtLocation school prague) (STV 1.0 0.9091)) +(: cnet_atlocation_91f3b0ec80 (AtLocation school town) (STV 1.0 0.9677)) +(: cnet_atlocation_cc37b294d6 (AtLocation school_book backpack) (STV 1.0 0.9339)) +(: cnet_atlocation_b223630040 (AtLocation school_cafeteria school) (STV 1.0 0.9339)) +(: cnet_atlocation_1347292a00 (AtLocation schoolbook backpack) (STV 1.0 0.9091)) +(: cnet_atlocation_df3880b0c8 (AtLocation science university) (STV 1.0 0.9659)) +(: cnet_atlocation_2aa78f1e9a (AtLocation scientific_experiment space_shuttle) (STV 1.0 0.9091)) +(: cnet_atlocation_2cbe6bd0e6 (AtLocation scientific_research_center arctic) (STV 1.0 0.9091)) +(: cnet_atlocation_f87bafb55d (AtLocation scientist laboratory) (STV 1.0 0.9454)) +(: cnet_atlocation_2425534bc1 (AtLocation scissor cabinet) (STV 1.0 0.9091)) +(: cnet_atlocation_0aa07425e0 (AtLocation scissor desk) (STV 1.0 0.9454)) +(: cnet_atlocation_1fc503ea38 (AtLocation scrap_food trash) (STV 1.0 0.9339)) +(: cnet_atlocation_79d57fef2d (AtLocation scrap_paper desk) (STV 1.0 0.9091)) +(: cnet_atlocation_324c83ed7e (AtLocation screen drive_in_movie) (STV 1.0 0.9091)) +(: cnet_atlocation_36e7c89753 (AtLocation screen monitor) (STV 1.0 0.9091)) +(: cnet_atlocation_c357da39fc (AtLocation screen movie) (STV 1.0 0.9091)) +(: cnet_atlocation_ad35f8e992 (AtLocation screen movy) (STV 1.0 0.9454)) +(: cnet_atlocation_7105f3b84a (AtLocation screw hinge_of_door) (STV 1.0 0.9091)) +(: cnet_atlocation_09794743e2 (AtLocation screw motorcycle) (STV 1.0 0.9454)) +(: cnet_atlocation_8ed3bb5469 (AtLocation screwdriver tool_belt) (STV 1.0 0.9091)) +(: cnet_atlocation_d10e832aa8 (AtLocation screwdriver tool_box) (STV 1.0 0.9572)) +(: cnet_atlocation_020bd05aa8 (AtLocation screwdriver toolbox) (STV 1.0 0.9608)) +(: cnet_atlocation_213fc877b9 (AtLocation scuba_diver water) (STV 1.0 0.9091)) +(: cnet_atlocation_2a7e7e939b (AtLocation sculpting_gel bathroom) (STV 1.0 0.9339)) +(: cnet_atlocation_21ab9477ff (AtLocation sculpting_gel hair_salon) (STV 1.0 0.9091)) +(: cnet_atlocation_2b64b78afc (AtLocation sculpture art_show) (STV 1.0 0.9524)) +(: cnet_atlocation_989beb4272 (AtLocation sculpture gallery_opening) (STV 1.0 0.9091)) +(: cnet_atlocation_006b78f88d (AtLocation sculpture museum) (STV 1.0 0.9339)) +(: cnet_atlocation_94f6485603 (AtLocation sea ocean) (STV 1.0 0.9091)) +(: cnet_atlocation_2974a8a3b6 (AtLocation sea_gull sea) (STV 1.0 0.9091)) +(: cnet_atlocation_8a9f088605 (AtLocation sea_shell ocean) (STV 1.0 0.9339)) +(: cnet_atlocation_3b2beae710 (AtLocation seahorse ocean) (STV 1.0 0.9091)) +(: cnet_atlocation_0b45fe367f (AtLocation seal sea) (STV 1.0 0.9091)) +(: cnet_atlocation_d39d648817 (AtLocation sear_tower chicago_illinois) (STV 1.0 0.9091)) +(: cnet_atlocation_57ad60785e (AtLocation seat airplane) (STV 1.0 0.9091)) +(: cnet_atlocation_11d5989328 (AtLocation seat auditorium) (STV 1.0 0.9091)) +(: cnet_atlocation_952d94d072 (AtLocation seat jeep) (STV 1.0 0.9091)) +(: cnet_atlocation_d274b94160 (AtLocation seat show) (STV 1.0 0.9454)) +(: cnet_atlocation_bdaeba25c3 (AtLocation seat theater) (STV 1.0 0.9693)) +(: cnet_atlocation_c7b9fe56b0 (AtLocation seat theatre) (STV 1.0 0.9339)) +(: cnet_atlocation_818e1345cd (AtLocation seat_belt backseat_of_car) (STV 1.0 0.9339)) +(: cnet_atlocation_f34c5f0c4c (AtLocation seat_belt plane) (STV 1.0 0.9091)) +(: cnet_atlocation_6a927a634e (AtLocation seatbelt backseat_of_car) (STV 1.0 0.9608)) +(: cnet_atlocation_91f9f79813 (AtLocation seatbelt car) (STV 1.0 0.9091)) +(: cnet_atlocation_fb47cc48e3 (AtLocation seating theatre) (STV 1.0 0.9677)) +(: cnet_atlocation_d255aeed76 (AtLocation seat hockey_game) (STV 1.0 0.9091)) +(: cnet_atlocation_a11bfe12d5 (AtLocation seat movie) (STV 1.0 0.9091)) +(: cnet_atlocation_a801e40141 (AtLocation seat movy) (STV 1.0 0.9524)) +(: cnet_atlocation_49a4c8c9eb (AtLocation seat opera) (STV 1.0 0.9454)) +(: cnet_atlocation_c6baa48c5c (AtLocation seat rest_area) (STV 1.0 0.9091)) +(: cnet_atlocation_b0f15065ed (AtLocation seaweed beach) (STV 1.0 0.9524)) +(: cnet_atlocation_03300a083f (AtLocation seaweed water) (STV 1.0 0.9524)) +(: cnet_atlocation_1dc68965d7 (AtLocation security_camera casino) (STV 1.0 0.9091)) +(: cnet_atlocation_55166ce5ff (AtLocation security_guard store) (STV 1.0 0.9091)) +(: cnet_atlocation_0c763e9d6f (AtLocation security_guard casino) (STV 1.0 0.9339)) +(: cnet_atlocation_232cc61700 (AtLocation seed fruit) (STV 1.0 0.9091)) +(: cnet_atlocation_74f92a053e (AtLocation self_adhesive_label office_supply_store) (STV 1.0 0.9091)) +(: cnet_atlocation_568ea2498f (AtLocation self_adhesive_label self_adhesive_label_box) (STV 1.0 0.9339)) +(: cnet_atlocation_257dcbbca7 (AtLocation semen test_tube) (STV 1.0 0.9339)) +(: cnet_atlocation_de37fe9a8e (AtLocation senior high_school) (STV 1.0 0.9339)) +(: cnet_atlocation_d19c574681 (AtLocation senior old_folk_home) (STV 1.0 0.9091)) +(: cnet_atlocation_35fd0acea0 (AtLocation senior republican_party) (STV 1.0 0.9339)) +(: cnet_atlocation_6976f36409 (AtLocation separate_shower bathroom) (STV 1.0 0.9339)) +(: cnet_atlocation_82ea7eb03b (AtLocation separate_shower ensuite_room) (STV 1.0 0.9091)) +(: cnet_atlocation_f553a42557 (AtLocation sermon church) (STV 1.0 0.9339)) +(: cnet_atlocation_33ce8448c2 (AtLocation service_counter store) (STV 1.0 0.9091)) +(: cnet_atlocation_5cac677cbc (AtLocation serving_cart restaurant) (STV 1.0 0.9091)) +(: cnet_atlocation_c880c287bd (AtLocation serving_trolley restaurant) (STV 1.0 0.9339)) +(: cnet_atlocation_331b5fe052 (AtLocation set_of_dishe cabinet) (STV 1.0 0.9339)) +(: cnet_atlocation_1592806c71 (AtLocation sewage ocean) (STV 1.0 0.9091)) +(: cnet_atlocation_db9f514a86 (AtLocation sewer street) (STV 1.0 0.9091)) +(: cnet_atlocation_6e69ce1ed1 (AtLocation sex bedroom) (STV 1.0 0.9091)) +(: cnet_atlocation_2c94a2eeba (AtLocation sex_toy bedroom) (STV 1.0 0.9091)) +(: cnet_atlocation_36834966a4 (AtLocation shade tree) (STV 1.0 0.9339)) +(: cnet_atlocation_fad9bb8ed7 (AtLocation shaded_seating rest_area) (STV 1.0 0.9091)) +(: cnet_atlocation_c21fd0686d (AtLocation shade window) (STV 1.0 0.9339)) +(: cnet_atlocation_1923c2da36 (AtLocation shade window_decoration_store) (STV 1.0 0.9091)) +(: cnet_atlocation_b3b882a729 (AtLocation shadow bridge) (STV 1.0 0.9091)) +(: cnet_atlocation_dfb064324f (AtLocation shadow ground) (STV 1.0 0.9339)) +(: cnet_atlocation_98fec6fba1 (AtLocation shady_place_to_sit tree) (STV 1.0 0.9091)) +(: cnet_atlocation_db9daffd38 (AtLocation shampoo bottle) (STV 1.0 0.9339)) +(: cnet_atlocation_4e2171a4dd (AtLocation shampoo hair) (STV 1.0 0.9091)) +(: cnet_atlocation_236b815425 (AtLocation shampoo shower) (STV 1.0 0.9608)) +(: cnet_atlocation_fd97364599 (AtLocation shampoo supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_19a3e9f6ec (AtLocation shark atlantic_ocean) (STV 1.0 0.9091)) +(: cnet_atlocation_535305d89d (AtLocation shark gulf_of_mexico) (STV 1.0 0.9454)) +(: cnet_atlocation_0cb4d8bfe2 (AtLocation shark mediterranean_sea) (STV 1.0 0.9091)) +(: cnet_atlocation_af49c9e5cb (AtLocation shark movie) (STV 1.0 0.9091)) +(: cnet_atlocation_d8d37e3ff6 (AtLocation shark movie_jaw) (STV 1.0 0.9339)) +(: cnet_atlocation_7fdc56b207 (AtLocation shark ocean) (STV 1.0 0.9826)) +(: cnet_atlocation_43045bfa63 (AtLocation shark ocean_of_world) (STV 1.0 0.9091)) +(: cnet_atlocation_cdfa053b35 (AtLocation shark ocean_or_aquarium) (STV 1.0 0.9091)) +(: cnet_atlocation_1848b6e3fc (AtLocation shark pacific_ocean) (STV 1.0 0.9608)) +(: cnet_atlocation_d37e8c611f (AtLocation shark pool_hall) (STV 1.0 0.9339)) +(: cnet_atlocation_dae3dfa21f (AtLocation shark reef) (STV 1.0 0.9339)) +(: cnet_atlocation_893ef78f45 (AtLocation shark salt_water) (STV 1.0 0.9091)) +(: cnet_atlocation_14d864ed5c (AtLocation shark saltwater) (STV 1.0 0.9091)) +(: cnet_atlocation_ac78cabde7 (AtLocation shark sea_world) (STV 1.0 0.9454)) +(: cnet_atlocation_99feaefda9 (AtLocation shark seawater) (STV 1.0 0.9091)) +(: cnet_atlocation_4e4c4dc63c (AtLocation shark separate_tank) (STV 1.0 0.9091)) +(: cnet_atlocation_5e83de5db2 (AtLocation shark shallow_water) (STV 1.0 0.9091)) +(: cnet_atlocation_fbc1bdbf72 (AtLocation shark south_pacific) (STV 1.0 0.9091)) +(: cnet_atlocation_8d3d2089cc (AtLocation shark tank) (STV 1.0 0.9091)) +(: cnet_atlocation_cd36932785 (AtLocation shark zoo) (STV 1.0 0.9339)) +(: cnet_atlocation_be46175971 (AtLocation shed backyard) (STV 1.0 0.9454)) +(: cnet_atlocation_5e4743ef8c (AtLocation sheep farm) (STV 1.0 0.9091)) +(: cnet_atlocation_6b10553dd2 (AtLocation sheep meadow) (STV 1.0 0.9091)) +(: cnet_atlocation_f51ea8ad00 (AtLocation sheet linen_closet) (STV 1.0 0.9636)) +(: cnet_atlocation_8022754c44 (AtLocation sheet linen_store) (STV 1.0 0.9339)) +(: cnet_atlocation_c9cb7261f7 (AtLocation sheet_of_paper box) (STV 1.0 0.9339)) +(: cnet_atlocation_a8d4efb1fd (AtLocation sheet_of_paper office) (STV 1.0 0.9091)) +(: cnet_atlocation_0a071f5ec9 (AtLocation sheet_of_paper printer) (STV 1.0 0.9339)) +(: cnet_atlocation_7b42908e5a (AtLocation sheet drawer) (STV 1.0 0.9091)) +(: cnet_atlocation_4bd768f565 (AtLocation shelf bookstore) (STV 1.0 0.9339)) +(: cnet_atlocation_e382b82a66 (AtLocation shelf closet) (STV 1.0 0.9608)) +(: cnet_atlocation_94d7e1bfdf (AtLocation shelf corner) (STV 1.0 0.9091)) +(: cnet_atlocation_a42f9e2efe (AtLocation shelf cupboard) (STV 1.0 0.9339)) +(: cnet_atlocation_fabc0790bc (AtLocation shelf refrigerator) (STV 1.0 0.9091)) +(: cnet_atlocation_3b3e04a38e (AtLocation shelf wall) (STV 1.0 0.9091)) +(: cnet_atlocation_232fb153f9 (AtLocation shell ocean) (STV 1.0 0.9091)) +(: cnet_atlocation_f17ce6bb1c (AtLocation shell_in_or_rather beach) (STV 1.0 0.9091)) +(: cnet_atlocation_3709850f55 (AtLocation shelter bus_stop) (STV 1.0 0.9091)) +(: cnet_atlocation_71fc1b72d5 (AtLocation shelve_of_book_and_magazine library) (STV 1.0 0.9091)) +(: cnet_atlocation_7e1e60b5a1 (AtLocation shelving pantry) (STV 1.0 0.9091)) +(: cnet_atlocation_043751a2a3 (AtLocation shingle roof) (STV 1.0 0.9748)) +(: cnet_atlocation_715876a204 (AtLocation ship ocean) (STV 1.0 0.9339)) +(: cnet_atlocation_e1f4985f5d (AtLocation ship port) (STV 1.0 0.9339)) +(: cnet_atlocation_45b49e2674 (AtLocation ship_wreck bottom_of_sea) (STV 1.0 0.9091)) +(: cnet_atlocation_06c18ad7ce (AtLocation shipwreck bottom_of_sea) (STV 1.0 0.9454)) +(: cnet_atlocation_ff87597201 (AtLocation shipwreck ocean) (STV 1.0 0.9091)) +(: cnet_atlocation_36a713cee3 (AtLocation shipwreck water) (STV 1.0 0.9091)) +(: cnet_atlocation_4f2598dbd4 (AtLocation shirt closet) (STV 1.0 0.9748)) +(: cnet_atlocation_0593be2b70 (AtLocation shirt suitcase) (STV 1.0 0.9091)) +(: cnet_atlocation_c950350bd1 (AtLocation shoe closet) (STV 1.0 0.9740)) +(: cnet_atlocation_1ed20e87ee (AtLocation shoe foot) (STV 1.0 0.9454)) +(: cnet_atlocation_c885c63ed4 (AtLocation shoe shoe_store) (STV 1.0 0.9091)) +(: cnet_atlocation_aafb73b042 (AtLocation shoe store) (STV 1.0 0.9091)) +(: cnet_atlocation_f8d1176bff (AtLocation shoe_store mall) (STV 1.0 0.9091)) +(: cnet_atlocation_0b1242b8ca (AtLocation shoe bed) (STV 1.0 0.9572)) +(: cnet_atlocation_fcc7386044 (AtLocation shoe box) (STV 1.0 0.9091)) +(: cnet_atlocation_ce3a425149 (AtLocation shoe table) (STV 1.0 0.9091)) +(: cnet_atlocation_954dbc6ca8 (AtLocation shop shopping_mall) (STV 1.0 0.9091)) +(: cnet_atlocation_423fba6ab9 (AtLocation shop town) (STV 1.0 0.9524)) +(: cnet_atlocation_ba6a7ae322 (AtLocation shopkeeper shop) (STV 1.0 0.9524)) +(: cnet_atlocation_7753dd172a (AtLocation shopping_arcade city) (STV 1.0 0.9339)) +(: cnet_atlocation_a6cd7ca4ad (AtLocation shopping_arcade mall) (STV 1.0 0.9572)) +(: cnet_atlocation_e20908da76 (AtLocation shopping_arcade town) (STV 1.0 0.9339)) +(: cnet_atlocation_5945573348 (AtLocation shopping_bag supermarket) (STV 1.0 0.9524)) +(: cnet_atlocation_b2d3bd8ae2 (AtLocation shopping_basket grocery_store) (STV 1.0 0.9524)) +(: cnet_atlocation_527d3e65eb (AtLocation shopping_basket store) (STV 1.0 0.9091)) +(: cnet_atlocation_cf663f4b02 (AtLocation shopping_basket supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_284b422a03 (AtLocation shopping_cart market) (STV 1.0 0.9091)) +(: cnet_atlocation_be39463a55 (AtLocation shopping_center suburb) (STV 1.0 0.9091)) +(: cnet_atlocation_ead376bb06 (AtLocation shopping_complex city) (STV 1.0 0.9091)) +(: cnet_atlocation_e16a636553 (AtLocation shopping_list fridge) (STV 1.0 0.9091)) +(: cnet_atlocation_af75c05676 (AtLocation shopping_mall suburb) (STV 1.0 0.9091)) +(: cnet_atlocation_9193a01c25 (AtLocation shop street) (STV 1.0 0.9091)) +(: cnet_atlocation_30dc316c7c (AtLocation shore beach) (STV 1.0 0.9091)) +(: cnet_atlocation_e2638d6ac5 (AtLocation short_order_cook fast_food_restaurant) (STV 1.0 0.9091)) +(: cnet_atlocation_8e2aea738e (AtLocation shoulder_bag department_store) (STV 1.0 0.9091)) +(: cnet_atlocation_0d68bfa632 (AtLocation show television) (STV 1.0 0.9339)) +(: cnet_atlocation_58985131b1 (AtLocation show theatre) (STV 1.0 0.9524)) +(: cnet_atlocation_670351a203 (AtLocation show_horse fairground) (STV 1.0 0.9091)) +(: cnet_atlocation_56c8814559 (AtLocation shower_curtain department_store) (STV 1.0 0.9091)) +(: cnet_atlocation_cc7154afdd (AtLocation shower_curtain shower_stall) (STV 1.0 0.9091)) +(: cnet_atlocation_9383eebea0 (AtLocation shower_door bathroom) (STV 1.0 0.9524)) +(: cnet_atlocation_6af8bf44f9 (AtLocation shower_head shower_stall) (STV 1.0 0.9091)) +(: cnet_atlocation_141581e216 (AtLocation shower_switch bathroom) (STV 1.0 0.9454)) +(: cnet_atlocation_9fc0a56991 (AtLocation shower locker_room) (STV 1.0 0.9339)) +(: cnet_atlocation_0e57d94540 (AtLocation sideboard dining_room) (STV 1.0 0.9524)) +(: cnet_atlocation_f8402c0bfe (AtLocation sign bus_stop) (STV 1.0 0.9339)) +(: cnet_atlocation_9e942e5d24 (AtLocation sign city) (STV 1.0 0.9091)) +(: cnet_atlocation_4d017214fa (AtLocation sign fork_in_road) (STV 1.0 0.9339)) +(: cnet_atlocation_6bedbdf83c (AtLocation sign roadblock) (STV 1.0 0.9091)) +(: cnet_atlocation_074a030bd2 (AtLocation sign_giving_direction fork_in_road) (STV 1.0 0.9091)) +(: cnet_atlocation_181f2bb546 (AtLocation signpost fork_in_road) (STV 1.0 0.9091)) +(: cnet_atlocation_af53beed8b (AtLocation sign corner_of_two_street) (STV 1.0 0.9091)) +(: cnet_atlocation_23ca39049c (AtLocation sign demonstration) (STV 1.0 0.9091)) +(: cnet_atlocation_42c5179307 (AtLocation sign freeway) (STV 1.0 0.9091)) +(: cnet_atlocation_91287d1e0c (AtLocation silence library) (STV 1.0 0.9339)) +(: cnet_atlocation_4612c61528 (AtLocation silicone artificial_breast) (STV 1.0 0.9091)) +(: cnet_atlocation_106fe4702c (AtLocation silicone tube) (STV 1.0 0.9091)) +(: cnet_atlocation_ca669f2b17 (AtLocation silk china) (STV 1.0 0.9454)) +(: cnet_atlocation_cd3bcba909 (AtLocation silk_gown opera) (STV 1.0 0.9091)) +(: cnet_atlocation_1d6396f2dc (AtLocation silver old_coin) (STV 1.0 0.9091)) +(: cnet_atlocation_51be28cc11 (AtLocation silverware kitchen) (STV 1.0 0.9454)) +(: cnet_atlocation_97d628f40b (AtLocation silverware restaurant) (STV 1.0 0.9091)) +(: cnet_atlocation_8dc0721e17 (AtLocation silverware table) (STV 1.0 0.9572)) +(: cnet_atlocation_4b82a8b496 (AtLocation sin confession) (STV 1.0 0.9339)) +(: cnet_atlocation_d3a2e5674a (AtLocation singapore asia) (STV 1.0 0.9091)) +(: cnet_atlocation_e13db24c70 (AtLocation singing opera) (STV 1.0 0.9572)) +(: cnet_atlocation_f21ef1cf54 (AtLocation sink chemistry_lab) (STV 1.0 0.9091)) +(: cnet_atlocation_02bb3cea7b (AtLocation sink house) (STV 1.0 0.9339)) +(: cnet_atlocation_655c327ba4 (AtLocation sink kitchen) (STV 1.0 0.9719)) +(: cnet_atlocation_4015608109 (AtLocation sinner confession) (STV 1.0 0.9454)) +(: cnet_atlocation_8edee171ce (AtLocation sitcom television) (STV 1.0 0.9339)) +(: cnet_atlocation_3fc28bb949 (AtLocation sitcom tv) (STV 1.0 0.9091)) +(: cnet_atlocation_c3f567e10b (AtLocation skeleton closet) (STV 1.0 0.9524)) +(: cnet_atlocation_9ec9180434 (AtLocation skeleton museum) (STV 1.0 0.9091)) +(: cnet_atlocation_c2cdc581a3 (AtLocation ski_tow hill) (STV 1.0 0.9091)) +(: cnet_atlocation_2823620860 (AtLocation ski_tow mountain) (STV 1.0 0.9091)) +(: cnet_atlocation_1d2bca82c2 (AtLocation skier mountain) (STV 1.0 0.9339)) +(: cnet_atlocation_fe5fd7f9fd (AtLocation skin body) (STV 1.0 0.9091)) +(: cnet_atlocation_74e12fb384 (AtLocation skin finger) (STV 1.0 0.9091)) +(: cnet_atlocation_e8bf11d58e (AtLocation skin fruit) (STV 1.0 0.9091)) +(: cnet_atlocation_b66af7d7b3 (AtLocation skin_care_article magazine) (STV 1.0 0.9091)) +(: cnet_atlocation_32eb70cced (AtLocation skirt closet) (STV 1.0 0.9091)) +(: cnet_atlocation_f2b3fe5678 (AtLocation sky outdoor) (STV 1.0 0.9091)) +(: cnet_atlocation_faace7ed65 (AtLocation sky painting) (STV 1.0 0.9091)) +(: cnet_atlocation_d4b62bbdca (AtLocation sky photo) (STV 1.0 0.9091)) +(: cnet_atlocation_34c4e75ce6 (AtLocation sky planet) (STV 1.0 0.9339)) +(: cnet_atlocation_183efb17cf (AtLocation sky planetarium) (STV 1.0 0.9339)) +(: cnet_atlocation_559d33c8fc (AtLocation skycap airport) (STV 1.0 0.9091)) +(: cnet_atlocation_b375e29c98 (AtLocation skylight roof) (STV 1.0 0.9524)) +(: cnet_atlocation_6eb272656c (AtLocation skyscraper city) (STV 1.0 0.9454)) +(: cnet_atlocation_7ace7a3e7b (AtLocation skyscraper large_city) (STV 1.0 0.9454)) +(: cnet_atlocation_ac7e94ccfd (AtLocation slate roof) (STV 1.0 0.9091)) +(: cnet_atlocation_b04f30bf15 (AtLocation sleeping_bag backpack) (STV 1.0 0.9091)) +(: cnet_atlocation_3c62c0f2a7 (AtLocation sleeping_cat rug) (STV 1.0 0.9091)) +(: cnet_atlocation_91766424d6 (AtLocation sleeping_dog rug) (STV 1.0 0.9091)) +(: cnet_atlocation_e55ad07fed (AtLocation sleeping_man tree) (STV 1.0 0.9091)) +(: cnet_atlocation_6da621ae65 (AtLocation sleeping_people bed) (STV 1.0 0.9091)) +(: cnet_atlocation_6b120ff552 (AtLocation slide park) (STV 1.0 0.9719)) +(: cnet_atlocation_2f56a2e488 (AtLocation slinky toy_store) (STV 1.0 0.9091)) +(: cnet_atlocation_51452b3263 (AtLocation slipper bed) (STV 1.0 0.9339)) +(: cnet_atlocation_10459a2d52 (AtLocation slipper bedroom) (STV 1.0 0.9091)) +(: cnet_atlocation_58226d15d1 (AtLocation slot_machine casino) (STV 1.0 0.9339)) +(: cnet_atlocation_098795d444 (AtLocation sloth amazon) (STV 1.0 0.9454)) +(: cnet_atlocation_11a18709a4 (AtLocation sloth brazil) (STV 1.0 0.9339)) +(: cnet_atlocation_e4ea4db88b (AtLocation sloth country) (STV 1.0 0.9339)) +(: cnet_atlocation_b5f61ed215 (AtLocation sloth dictionary) (STV 1.0 0.9339)) +(: cnet_atlocation_5b79561110 (AtLocation sloth jungle_tree) (STV 1.0 0.9091)) +(: cnet_atlocation_0bacaaf78d (AtLocation sloth rain_forest) (STV 1.0 0.9524)) +(: cnet_atlocation_1864570873 (AtLocation sloth south_american_jungle) (STV 1.0 0.9339)) +(: cnet_atlocation_2886c020c9 (AtLocation sloth tropical_forest) (STV 1.0 0.9524)) +(: cnet_atlocation_f58e147ea7 (AtLocation sloth work) (STV 1.0 0.9091)) +(: cnet_atlocation_791135f173 (AtLocation slotmachine casino) (STV 1.0 0.9091)) +(: cnet_atlocation_138de593e5 (AtLocation small_appliance kitchen) (STV 1.0 0.9091)) +(: cnet_atlocation_97ea265da9 (AtLocation small_dog animal_shelter) (STV 1.0 0.9339)) +(: cnet_atlocation_5024848e2a (AtLocation small_dog backyard) (STV 1.0 0.9339)) +(: cnet_atlocation_3eb42cf5f8 (AtLocation small_dog basket) (STV 1.0 0.9339)) +(: cnet_atlocation_8c90116b98 (AtLocation small_dog bed) (STV 1.0 0.9091)) +(: cnet_atlocation_d721fbf4a5 (AtLocation small_dog big_house) (STV 1.0 0.9091)) +(: cnet_atlocation_88fb5f0875 (AtLocation small_dog cage) (STV 1.0 0.9524)) +(: cnet_atlocation_2d57448da0 (AtLocation small_dog city) (STV 1.0 0.9091)) +(: cnet_atlocation_02fe23da9c (AtLocation small_dog dog_show) (STV 1.0 0.9339)) +(: cnet_atlocation_9c651ef1b3 (AtLocation small_dog fat_lady_s_lap) (STV 1.0 0.9091)) +(: cnet_atlocation_d59d58ec7d (AtLocation small_dog georgia) (STV 1.0 0.9091)) +(: cnet_atlocation_9c36d61fd4 (AtLocation small_dog home) (STV 1.0 0.9454)) +(: cnet_atlocation_3740049b3c (AtLocation small_dog lap) (STV 1.0 0.9524)) +(: cnet_atlocation_7126840d12 (AtLocation small_dog living_room) (STV 1.0 0.9091)) +(: cnet_atlocation_0fcc3c33d8 (AtLocation small_dog old_lady_s_apartment) (STV 1.0 0.9091)) +(: cnet_atlocation_b9556cdec7 (AtLocation small_dog own_home) (STV 1.0 0.9339)) +(: cnet_atlocation_c445a7b1aa (AtLocation small_dog owner_lap) (STV 1.0 0.9091)) +(: cnet_atlocation_5c2ffdacd3 (AtLocation small_dog person_house) (STV 1.0 0.9091)) +(: cnet_atlocation_1d6682cbb7 (AtLocation small_dog pet_pound) (STV 1.0 0.9091)) +(: cnet_atlocation_17f3a1ddc8 (AtLocation small_dog petshop) (STV 1.0 0.9339)) +(: cnet_atlocation_bfe2a14d02 (AtLocation small_dog small_apartment) (STV 1.0 0.9091)) +(: cnet_atlocation_d0d9ef394a (AtLocation small_dog small_cage) (STV 1.0 0.9091)) +(: cnet_atlocation_5c0f2878fb (AtLocation small_dog small_dog_house) (STV 1.0 0.9524)) +(: cnet_atlocation_18c9d0ce34 (AtLocation small_dog small_house) (STV 1.0 0.9339)) +(: cnet_atlocation_6a18e5f21f (AtLocation small_dog someone_lap) (STV 1.0 0.9454)) +(: cnet_atlocation_c5aeab4aa6 (AtLocation small_dog vet) (STV 1.0 0.9339)) +(: cnet_atlocation_d1b5de1379 (AtLocation small_dog yard) (STV 1.0 0.9572)) +(: cnet_atlocation_aa09921269 (AtLocation small_kitchen apartment) (STV 1.0 0.9091)) +(: cnet_atlocation_6931f57ccf (AtLocation small_mirror purse) (STV 1.0 0.9091)) +(: cnet_atlocation_d63ba582d2 (AtLocation snack_bar airport) (STV 1.0 0.9091)) +(: cnet_atlocation_e5f2eaea9d (AtLocation snack_bar bus_depot) (STV 1.0 0.9091)) +(: cnet_atlocation_3f0da37e0c (AtLocation snack movie) (STV 1.0 0.9091)) +(: cnet_atlocation_ffe3da7033 (AtLocation snack rest_area) (STV 1.0 0.9091)) +(: cnet_atlocation_e7e8019888 (AtLocation snake amazon) (STV 1.0 0.9454)) +(: cnet_atlocation_f7a9a33663 (AtLocation snake aquarium) (STV 1.0 0.9091)) +(: cnet_atlocation_a739a4acbe (AtLocation snake barn) (STV 1.0 0.9091)) +(: cnet_atlocation_383141e7f9 (AtLocation snake bed) (STV 1.0 0.9091)) +(: cnet_atlocation_162141286d (AtLocation snake bible) (STV 1.0 0.9608)) +(: cnet_atlocation_56f45ac99f (AtLocation snake cage) (STV 1.0 0.9339)) +(: cnet_atlocation_aea61f6460 (AtLocation snake cave) (STV 1.0 0.9091)) +(: cnet_atlocation_bca3852b94 (AtLocation snake creek) (STV 1.0 0.9339)) +(: cnet_atlocation_3dd0684ea6 (AtLocation snake ditch) (STV 1.0 0.9454)) +(: cnet_atlocation_c4b8738b9b (AtLocation snake feild) (STV 1.0 0.9524)) +(: cnet_atlocation_c1a914ab28 (AtLocation snake field) (STV 1.0 0.9524)) +(: cnet_atlocation_0f4a226936 (AtLocation snake france) (STV 1.0 0.9091)) +(: cnet_atlocation_25b9045c08 (AtLocation snake garden) (STV 1.0 0.9572)) +(: cnet_atlocation_16d39a5e89 (AtLocation snake glass_enclosed_case) (STV 1.0 0.9091)) +(: cnet_atlocation_2362e9bcd1 (AtLocation snake hole_in_ground) (STV 1.0 0.9339)) +(: cnet_atlocation_cf1d8b65e9 (AtLocation snake kansa) (STV 1.0 0.9091)) +(: cnet_atlocation_c9f5c21eb8 (AtLocation snake louisiana) (STV 1.0 0.9091)) +(: cnet_atlocation_4f08b731c6 (AtLocation snake nature) (STV 1.0 0.9091)) +(: cnet_atlocation_a516c54ba9 (AtLocation snake north_america) (STV 1.0 0.9091)) +(: cnet_atlocation_0199ee8fdc (AtLocation snake oregon) (STV 1.0 0.9091)) +(: cnet_atlocation_f19ce848a8 (AtLocation snake outdoor) (STV 1.0 0.9091)) +(: cnet_atlocation_80687e0ce0 (AtLocation snake pet_shop) (STV 1.0 0.9339)) +(: cnet_atlocation_7ecde88db6 (AtLocation snake pet_store) (STV 1.0 0.9091)) +(: cnet_atlocation_99720e5e5f (AtLocation snake pit) (STV 1.0 0.9454)) +(: cnet_atlocation_e83f873cfe (AtLocation snake snake_pit) (STV 1.0 0.9454)) +(: cnet_atlocation_b8dc98874e (AtLocation snake texa) (STV 1.0 0.9091)) +(: cnet_atlocation_d835f9e846 (AtLocation snake tree) (STV 1.0 0.9524)) +(: cnet_atlocation_bf15abbb4e (AtLocation snake tropical_forest) (STV 1.0 0.9454)) +(: cnet_atlocation_48b9acabe2 (AtLocation snake underbrush) (STV 1.0 0.9091)) +(: cnet_atlocation_e698385ba0 (AtLocation snake zoo_s_reptile_house) (STV 1.0 0.9091)) +(: cnet_atlocation_1f2ab18991 (AtLocation snare_drum drum_kit) (STV 1.0 0.9454)) +(: cnet_atlocation_53755ad99b (AtLocation snare_drum marching_band) (STV 1.0 0.9339)) +(: cnet_atlocation_0997496e91 (AtLocation snare_drum orchestra) (STV 1.0 0.9091)) +(: cnet_atlocation_1c0941c4f6 (AtLocation snob gallery_opening) (STV 1.0 0.9091)) +(: cnet_atlocation_4056cfd06f (AtLocation snoopy newspaper) (STV 1.0 0.9091)) +(: cnet_atlocation_b65adbbd7a (AtLocation snooty_people gallery_opening) (STV 1.0 0.9091)) +(: cnet_atlocation_61c7b93b0e (AtLocation snow canada) (STV 1.0 0.9454)) +(: cnet_atlocation_924f7ee12e (AtLocation snow ground) (STV 1.0 0.9339)) +(: cnet_atlocation_a8033656bc (AtLocation snow mountain) (STV 1.0 0.9572)) +(: cnet_atlocation_83b1ef4a10 (AtLocation snow roof) (STV 1.0 0.9339)) +(: cnet_atlocation_8d7eace83c (AtLocation snow surface_of_earth) (STV 1.0 0.9091)) +(: cnet_atlocation_806deb05ce (AtLocation snow_cap top_of_mountain) (STV 1.0 0.9091)) +(: cnet_atlocation_ca9bfe6b37 (AtLocation snowflake winter) (STV 1.0 0.9339)) +(: cnet_atlocation_c107efcee2 (AtLocation soap supermarket) (STV 1.0 0.9339)) +(: cnet_atlocation_ff3a8cfa90 (AtLocation soap_dish sink) (STV 1.0 0.9339)) +(: cnet_atlocation_e0b1f61ba0 (AtLocation soccer_ball lawn) (STV 1.0 0.9091)) +(: cnet_atlocation_9c2f418ec3 (AtLocation soccer_ball soccer_game) (STV 1.0 0.9339)) +(: cnet_atlocation_a088892f1c (AtLocation soccer_field park) (STV 1.0 0.9339)) +(: cnet_atlocation_de46f84f73 (AtLocation soccer_field town) (STV 1.0 0.9091)) +(: cnet_atlocation_34bcc54ce4 (AtLocation soccer_mom soccer_game) (STV 1.0 0.9339)) +(: cnet_atlocation_990c8168d8 (AtLocation soccer_net soccer_game) (STV 1.0 0.9091)) +(: cnet_atlocation_38ba215eff (AtLocation society group_of_people) (STV 1.0 0.9339)) +(: cnet_atlocation_5e0ab768c1 (AtLocation sock drawer) (STV 1.0 0.9677)) +(: cnet_atlocation_964316a0a6 (AtLocation sock sock_drawer) (STV 1.0 0.9608)) +(: cnet_atlocation_b9dc855168 (AtLocation sock bed) (STV 1.0 0.9091)) +(: cnet_atlocation_66c4fe2aa3 (AtLocation sock shoe) (STV 1.0 0.9091)) +(: cnet_atlocation_6314f25d36 (AtLocation sock suitcase) (STV 1.0 0.9091)) +(: cnet_atlocation_f71d2cd3c0 (AtLocation sock_and_underwear sock_drawer) (STV 1.0 0.9091)) +(: cnet_atlocation_0103d977e5 (AtLocation soda can) (STV 1.0 0.9339)) +(: cnet_atlocation_7ac9a5ec7c (AtLocation soda_can plane) (STV 1.0 0.9091)) +(: cnet_atlocation_7b7ab11bd2 (AtLocation sofa home) (STV 1.0 0.9091)) +(: cnet_atlocation_6bdb99417a (AtLocation sofa house) (STV 1.0 0.9339)) +(: cnet_atlocation_fad44b666a (AtLocation sofa neighbor_s_house) (STV 1.0 0.9091)) +(: cnet_atlocation_24a7c4c11d (AtLocation sofa_bed living_room) (STV 1.0 0.9454)) +(: cnet_atlocation_1b7fa4fe0c (AtLocation sofa_hide_bed apartment) (STV 1.0 0.9091)) +(: cnet_atlocation_7a6f3c5279 (AtLocation sofa_hide_bed furniture_store) (STV 1.0 0.9091)) +(: cnet_atlocation_1cb924c3f5 (AtLocation sofa_hide_bed living_room) (STV 1.0 0.9091)) +(: cnet_atlocation_aad390b1ee (AtLocation sofa_hide_bed livingroom) (STV 1.0 0.9091)) +(: cnet_atlocation_5cefa5ff75 (AtLocation soldier battle) (STV 1.0 0.9524)) +(: cnet_atlocation_00b51e631c (AtLocation soldier battlefield) (STV 1.0 0.9524)) +(: cnet_atlocation_91f4072da7 (AtLocation soldier harm_way) (STV 1.0 0.9091)) +(: cnet_atlocation_259b5cf847 (AtLocation soldier tent) (STV 1.0 0.9091)) +(: cnet_atlocation_55a5001147 (AtLocation soldier war_zone) (STV 1.0 0.9339)) +(: cnet_atlocation_cc0997c5ee (AtLocation soldier white_house) (STV 1.0 0.9091)) +(: cnet_atlocation_7b6525b0ff (AtLocation soldiere military_base) (STV 1.0 0.9454)) +(: cnet_atlocation_6f0c1fc0b9 (AtLocation song cd) (STV 1.0 0.9524)) +(: cnet_atlocation_ac66ac65fc (AtLocation song jukebox) (STV 1.0 0.9091)) +(: cnet_atlocation_4a8ec6ba00 (AtLocation soprano choir) (STV 1.0 0.9608)) +(: cnet_atlocation_99dc0e1207 (AtLocation soul person) (STV 1.0 0.9091)) +(: cnet_atlocation_d9266270ee (AtLocation sound band_hall) (STV 1.0 0.9091)) +(: cnet_atlocation_14859747ee (AtLocation sound movie) (STV 1.0 0.9091)) +(: cnet_atlocation_7b3197f928 (AtLocation sound_control_room recording_studio) (STV 1.0 0.9608)) +(: cnet_atlocation_25745f200a (AtLocation sound_control_room studio) (STV 1.0 0.9091)) +(: cnet_atlocation_cfd95f1212 (AtLocation soundstage movie_studio) (STV 1.0 0.9454)) +(: cnet_atlocation_090211176b (AtLocation soup can) (STV 1.0 0.9091)) +(: cnet_atlocation_e27db9e8c2 (AtLocation soup container) (STV 1.0 0.9339)) +(: cnet_atlocation_f7341dd6cf (AtLocation soup jar) (STV 1.0 0.9339)) +(: cnet_atlocation_4a44d70a90 (AtLocation soup supermarket) (STV 1.0 0.9454)) +(: cnet_atlocation_2daad3d59d (AtLocation sour_cream fridge) (STV 1.0 0.9091)) +(: cnet_atlocation_4d652f62cb (AtLocation spa backyard) (STV 1.0 0.9339)) +(: cnet_atlocation_9e2ea84ce7 (AtLocation space box) (STV 1.0 0.9339)) +(: cnet_atlocation_1c7a4a8c81 (AtLocation space jar) (STV 1.0 0.9091)) +(: cnet_atlocation_074e46de3a (AtLocation space sentence) (STV 1.0 0.9091)) +(: cnet_atlocation_cb89450592 (AtLocation space suitcase) (STV 1.0 0.9091)) +(: cnet_atlocation_1ba8894dd3 (AtLocation space_debris orbit) (STV 1.0 0.9339)) +(: cnet_atlocation_27c017adf9 (AtLocation space_junk orbit) (STV 1.0 0.9091)) +(: cnet_atlocation_9d48f64643 (AtLocation space_junk space) (STV 1.0 0.9339)) +(: cnet_atlocation_47ce2b3c9b (AtLocation space_shuttle orbit) (STV 1.0 0.9339)) +(: cnet_atlocation_afc9ad3d9c (AtLocation space_shuttle outerspace) (STV 1.0 0.9091)) +(: cnet_atlocation_8bf7112782 (AtLocation space_shuttle space) (STV 1.0 0.9454)) +(: cnet_atlocation_60d5857519 (AtLocation space_suit space_shuttle) (STV 1.0 0.9524)) +(: cnet_atlocation_cb669ab152 (AtLocation spaceship space) (STV 1.0 0.9091)) +(: cnet_atlocation_d0f3830d2c (AtLocation spanish_restaurant most_city) (STV 1.0 0.9091)) +(: cnet_atlocation_e75292be40 (AtLocation spanish_restaurant spain) (STV 1.0 0.9339)) +(: cnet_atlocation_6afe4a5894 (AtLocation spare_change pant_pocket) (STV 1.0 0.9091)) +(: cnet_atlocation_6415c31e6f (AtLocation spare_change pocket) (STV 1.0 0.9454)) +(: cnet_atlocation_4d9483dab7 (AtLocation spare_change sofa_cushion) (STV 1.0 0.9091)) +(: cnet_atlocation_25f08a4432 (AtLocation spare_tire trunk) (STV 1.0 0.9524)) +(: cnet_atlocation_fd1ce51b66 (AtLocation spatula kitchen) (STV 1.0 0.9091)) +(: cnet_atlocation_d63fa03658 (AtLocation speaker conference) (STV 1.0 0.9339)) +(: cnet_atlocation_a0170638b6 (AtLocation speaker demonstration) (STV 1.0 0.9091)) +(: cnet_atlocation_aa7444c7a9 (AtLocation speaker drive_in_movie) (STV 1.0 0.9091)) +(: cnet_atlocation_5bc0ba2cac (AtLocation speaker shelf) (STV 1.0 0.9339)) +(: cnet_atlocation_c25e12eb20 (AtLocation speaker headphone) (STV 1.0 0.9091)) +(: cnet_atlocation_e07071865b (AtLocation spectator show) (STV 1.0 0.9091)) +(: cnet_atlocation_8ad0c2730d (AtLocation spectator soccer_game) (STV 1.0 0.9091)) +(: cnet_atlocation_0f32263d95 (AtLocation spectator sporting_event) (STV 1.0 0.9339)) +(: cnet_atlocation_78622abca8 (AtLocation speed_limit_sign freeway) (STV 1.0 0.9091)) +(: cnet_atlocation_c6bf94d7d0 (AtLocation speeding_car freeway) (STV 1.0 0.9454)) +(: cnet_atlocation_3c8394ff2a (AtLocation spider cellar) (STV 1.0 0.9091)) +(: cnet_atlocation_95a2c6ca04 (AtLocation spider web) (STV 1.0 0.9091)) +(: cnet_atlocation_52a0865c4a (AtLocation spider_web corner) (STV 1.0 0.9454)) +(: cnet_atlocation_f24ad9b783 (AtLocation spigot water_fountain) (STV 1.0 0.9091)) +(: cnet_atlocation_3e4cd31476 (AtLocation spiral_binding notebook) (STV 1.0 0.9091)) +(: cnet_atlocation_ed38acb833 (AtLocation spirit bar) (STV 1.0 0.9091)) +(: cnet_atlocation_e9c8f79659 (AtLocation spirit graveyard) (STV 1.0 0.9339)) +(: cnet_atlocation_2483621c44 (AtLocation spiritual_instruction church) (STV 1.0 0.9091)) +(: cnet_atlocation_e5c498c217 (AtLocation spit mouth) (STV 1.0 0.9091)) +(: cnet_atlocation_6252fcc726 (AtLocation spite jealous_person) (STV 1.0 0.9339)) +(: cnet_atlocation_4c5efbdf24 (AtLocation spite spiteful_person) (STV 1.0 0.9091)) +(: cnet_atlocation_01a755398f (AtLocation sponge bottom_of_sea) (STV 1.0 0.9091)) +(: cnet_atlocation_0f944ce588 (AtLocation spoon bowl) (STV 1.0 0.9339)) +(: cnet_atlocation_f4ce0ddd18 (AtLocation spoon dinner) (STV 1.0 0.9339)) +(: cnet_atlocation_68eea957ef (AtLocation sporting_event television) (STV 1.0 0.9091)) +(: cnet_atlocation_648790a6bd (AtLocation sport_bat baseball_game) (STV 1.0 0.9454)) +(: cnet_atlocation_7039833197 (AtLocation sport_equipment school) (STV 1.0 0.9339)) +(: cnet_atlocation_352d0540ac (AtLocation spray waterfall) (STV 1.0 0.9091)) +(: cnet_atlocation_7c6be1a877 (AtLocation spray_hose yard) (STV 1.0 0.9339)) +(: cnet_atlocation_5264ba3e33 (AtLocation spring_binder office_supply_store) (STV 1.0 0.9091)) +(: cnet_atlocation_7a83773443 (AtLocation sprinkler lawn) (STV 1.0 0.9339)) +(: cnet_atlocation_d7b21faaa3 (AtLocation square geometry) (STV 1.0 0.9091)) +(: cnet_atlocation_ef24bff523 (AtLocation square town_center) (STV 1.0 0.9091)) +(: cnet_atlocation_5956b8c246 (AtLocation squash farmer_s_market) (STV 1.0 0.9091)) +(: cnet_atlocation_e1607592c1 (AtLocation squash_court rich_person_s_house) (STV 1.0 0.9091)) +(: cnet_atlocation_b108f233e6 (AtLocation squirrel forest) (STV 1.0 0.9091)) +(: cnet_atlocation_583266a53f (AtLocation squirrel tree) (STV 1.0 0.9524)) +(: cnet_atlocation_9c1fc88fec (AtLocation squirrel park) (STV 1.0 0.9572)) +(: cnet_atlocation_408848c4dd (AtLocation stacking_chair auditorium) (STV 1.0 0.9091)) +(: cnet_atlocation_65f8364a46 (AtLocation stadium city) (STV 1.0 0.9091)) +(: cnet_atlocation_79ecd7bb22 (AtLocation stadium large_city) (STV 1.0 0.9091)) +(: cnet_atlocation_a1a2064d7c (AtLocation stadium_stand stadium) (STV 1.0 0.9091)) +(: cnet_atlocation_d16a09c414 (AtLocation stage auditorium) (STV 1.0 0.9339)) +(: cnet_atlocation_9281f7b121 (AtLocation stage opera) (STV 1.0 0.9454)) +(: cnet_atlocation_0832573aeb (AtLocation stage show) (STV 1.0 0.9091)) +(: cnet_atlocation_e22499f66a (AtLocation stage theatre) (STV 1.0 0.9339)) +(: cnet_atlocation_e66e3380f3 (AtLocation stage_border theatre) (STV 1.0 0.9091)) +(: cnet_atlocation_232109a834 (AtLocation stage_curtain theater) (STV 1.0 0.9091)) +(: cnet_atlocation_6c9ad6817f (AtLocation stage_door theatre) (STV 1.0 0.9091)) +(: cnet_atlocation_2855630b4f (AtLocation stage_entrance theater) (STV 1.0 0.9091)) +(: cnet_atlocation_7502d0ebd1 (AtLocation stain rug) (STV 1.0 0.9524)) +(: cnet_atlocation_d6b3d45af4 (AtLocation stained_glass_window church) (STV 1.0 0.9454)) +(: cnet_atlocation_26b1019381 (AtLocation staircase building) (STV 1.0 0.9339)) +(: cnet_atlocation_4acdbffa0c (AtLocation staircase mansion) (STV 1.0 0.9339)) +(: cnet_atlocation_19c0da08f9 (AtLocation stair apartment) (STV 1.0 0.9339)) +(: cnet_atlocation_d33f43e68e (AtLocation stair building) (STV 1.0 0.9572)) +(: cnet_atlocation_ff7860912c (AtLocation stair house) (STV 1.0 0.9339)) +(: cnet_atlocation_27a03da2da (AtLocation stair_down house) (STV 1.0 0.9091)) +(: cnet_atlocation_eb3d3ebfa4 (AtLocation stair_railing stair_well) (STV 1.0 0.9091)) +(: cnet_atlocation_55012857fd (AtLocation stairwell house) (STV 1.0 0.9339)) +(: cnet_atlocation_02beac6544 (AtLocation stale_popcorn theatre) (STV 1.0 0.9091)) +(: cnet_atlocation_722edb285b (AtLocation stall barn) (STV 1.0 0.9524)) +(: cnet_atlocation_e302eef3a5 (AtLocation stall bathroom) (STV 1.0 0.9454)) +(: cnet_atlocation_fa8772f620 (AtLocation stall market) (STV 1.0 0.9091)) +(: cnet_atlocation_197323198f (AtLocation stamp mail) (STV 1.0 0.9091)) +(: cnet_atlocation_e3ecadfd86 (AtLocation stamp_pad and_office) (STV 1.0 0.9339)) +(: cnet_atlocation_2861463fd8 (AtLocation stamp_pad desk) (STV 1.0 0.9339)) +(: cnet_atlocation_f019c12f50 (AtLocation stamp_pad office) (STV 1.0 0.9091)) +(: cnet_atlocation_4e0ee2bff9 (AtLocation stamp_pad post_office) (STV 1.0 0.9091)) +(: cnet_atlocation_a058416037 (AtLocation stamp_rack post_office) (STV 1.0 0.9091)) +(: cnet_atlocation_bd210cc91d (AtLocation stamp desk) (STV 1.0 0.9339)) +(: cnet_atlocation_74120c6540 (AtLocation stamp drawer) (STV 1.0 0.9091)) +(: cnet_atlocation_c6675e455a (AtLocation stand market) (STV 1.0 0.9091)) +(: cnet_atlocation_7b45ca0c10 (AtLocation staple_remover desk_drawer) (STV 1.0 0.9091)) +(: cnet_atlocation_a2fa6f044f (AtLocation staple_remover office) (STV 1.0 0.9339)) +(: cnet_atlocation_e82b97622c (AtLocation stapler desk) (STV 1.0 0.9815)) +(: cnet_atlocation_69f822d495 (AtLocation stapler desk_drawer) (STV 1.0 0.9454)) +(: cnet_atlocation_14b4224957 (AtLocation stapler desktop) (STV 1.0 0.9608)) +(: cnet_atlocation_9b5277e457 (AtLocation stapler office_building) (STV 1.0 0.9091)) +(: cnet_atlocation_b0815ffff2 (AtLocation stapler office_supply_store) (STV 1.0 0.9091)) +(: cnet_atlocation_7f8b58c68a (AtLocation stapler work) (STV 1.0 0.9091)) +(: cnet_atlocation_cb2da66f89 (AtLocation stapler cabinet) (STV 1.0 0.9091)) +(: cnet_atlocation_624f1d3875 (AtLocation staple desk) (STV 1.0 0.9091)) +(: cnet_atlocation_88c57b0652 (AtLocation staple office) (STV 1.0 0.9454)) +(: cnet_atlocation_c3e47e3596 (AtLocation staple pantry) (STV 1.0 0.9091)) +(: cnet_atlocation_c6ae9774d1 (AtLocation staple stapler) (STV 1.0 0.9636)) +(: cnet_atlocation_3095ddeb13 (AtLocation star center_of_black_hole) (STV 1.0 0.9091)) +(: cnet_atlocation_c7ddbc8095 (AtLocation star galaxy) (STV 1.0 0.9524)) +(: cnet_atlocation_a7d3cca152 (AtLocation star night_sky) (STV 1.0 0.9677)) +(: cnet_atlocation_f30f57de96 (AtLocation star outer_space) (STV 1.0 0.9339)) +(: cnet_atlocation_595979d83a (AtLocation star outerspace) (STV 1.0 0.9524)) +(: cnet_atlocation_c5eb59edf5 (AtLocation star sky) (STV 1.0 0.9659)) +(: cnet_atlocation_3a4089daa1 (AtLocation star space) (STV 1.0 0.9730)) +(: cnet_atlocation_08807889ff (AtLocation starfish ocean) (STV 1.0 0.9339)) +(: cnet_atlocation_f3df2d8de7 (AtLocation starfish sea) (STV 1.0 0.9091)) +(: cnet_atlocation_a8ea3e2000 (AtLocation star universe) (STV 1.0 0.9091)) +(: cnet_atlocation_978ef4d5b0 (AtLocation state country) (STV 1.0 0.9693)) +(: cnet_atlocation_251b3ef657 (AtLocation state_highway state) (STV 1.0 0.9339)) +(: cnet_atlocation_d74b2109ce (AtLocation state_highway united_state) (STV 1.0 0.9091)) +(: cnet_atlocation_f1d8cf09e4 (AtLocation statement newspaper) (STV 1.0 0.9454)) +(: cnet_atlocation_b0ef948bf2 (AtLocation stationary desk) (STV 1.0 0.9091)) +(: cnet_atlocation_7b5168e602 (AtLocation statue church) (STV 1.0 0.9339)) +(: cnet_atlocation_7eb110c2ae (AtLocation statue museum) (STV 1.0 0.9608)) +(: cnet_atlocation_cdad435040 (AtLocation statue park) (STV 1.0 0.9454)) +(: cnet_atlocation_b721c14978 (AtLocation steak freezer) (STV 1.0 0.9339)) +(: cnet_atlocation_d1b0604295 (AtLocation steak grill) (STV 1.0 0.9091)) +(: cnet_atlocation_4985c28e49 (AtLocation steak plate) (STV 1.0 0.9454)) +(: cnet_atlocation_677e0bf629 (AtLocation steak_and_egg plate) (STV 1.0 0.9091)) +(: cnet_atlocation_34d02dc5d2 (AtLocation steak_house city) (STV 1.0 0.9091)) +(: cnet_atlocation_fe487bd47c (AtLocation steakhouse city) (STV 1.0 0.9524)) +(: cnet_atlocation_a4e78f3426 (AtLocation steel building) (STV 1.0 0.9091)) +(: cnet_atlocation_d447a215e8 (AtLocation steel car_frame) (STV 1.0 0.9091)) +(: cnet_atlocation_8aff9f0f72 (AtLocation steel_cable ground) (STV 1.0 0.9091)) +(: cnet_atlocation_aed622fe9c (AtLocation steel_cable suspension_bridge) (STV 1.0 0.9091)) +(: cnet_atlocation_ad6f4bb327 (AtLocation steel_wool_pad kitchen) (STV 1.0 0.9091)) +(: cnet_atlocation_39c2b1a4f5 (AtLocation steeple church) (STV 1.0 0.9454)) +(: cnet_atlocation_696fe68a23 (AtLocation steering_wheel bus) (STV 1.0 0.9091)) +(: cnet_atlocation_77f0fbf5f1 (AtLocation step_chair garage) (STV 1.0 0.9091)) +(: cnet_atlocation_7cd8ce4131 (AtLocation step_chair house) (STV 1.0 0.9091)) +(: cnet_atlocation_aca3c5da6f (AtLocation stepladder hardware_store) (STV 1.0 0.9091)) +(: cnet_atlocation_b8e559b1fa (AtLocation stereo car) (STV 1.0 0.9524)) +(: cnet_atlocation_045ab2bd6f (AtLocation stethescope doctor) (STV 1.0 0.9339)) +(: cnet_atlocation_4e01781a96 (AtLocation stethoscope doctor_s_office) (STV 1.0 0.9091)) +(: cnet_atlocation_677eb3f716 (AtLocation stethoscope doctor) (STV 1.0 0.9677)) +(: cnet_atlocation_b27c4db8a6 (AtLocation stick forest) (STV 1.0 0.9454)) +(: cnet_atlocation_006b06f935 (AtLocation stick_eraser desk_drawer) (STV 1.0 0.9091)) +(: cnet_atlocation_83b7c72ecd (AtLocation stick_eraser office_supply_store) (STV 1.0 0.9454)) +(: cnet_atlocation_aa7cb991f5 (AtLocation stick_of_butter fridge) (STV 1.0 0.9454)) +(: cnet_atlocation_f198b60f1c (AtLocation sticking_plaster hospital) (STV 1.0 0.9339)) +(: cnet_atlocation_59028af72b (AtLocation sticky_floor theater) (STV 1.0 0.9091)) +(: cnet_atlocation_14e0475826 (AtLocation sticky_pad desk) (STV 1.0 0.9091)) +(: cnet_atlocation_63faab7170 (AtLocation stiff funeral) (STV 1.0 0.9091)) +(: cnet_atlocation_2a806d927d (AtLocation stone river) (STV 1.0 0.9091)) +(: cnet_atlocation_8a088cc51c (AtLocation stone bridge) (STV 1.0 0.9091)) +(: cnet_atlocation_762296d3a2 (AtLocation stool bar) (STV 1.0 0.9339)) +(: cnet_atlocation_c9f2953cc0 (AtLocation stop organ) (STV 1.0 0.9339)) +(: cnet_atlocation_385a5fc2ae (AtLocation stop_light corner_of_two_street) (STV 1.0 0.9091)) +(: cnet_atlocation_a913dedfc4 (AtLocation stop_sign corner_of_two_street) (STV 1.0 0.9454)) +(: cnet_atlocation_12c383e47f (AtLocation stop_sign fork_in_road) (STV 1.0 0.9091)) +(: cnet_atlocation_c9f397599a (AtLocation stop_sign street_corner) (STV 1.0 0.9091)) +(: cnet_atlocation_ff22efc53a (AtLocation storage_item closet) (STV 1.0 0.9091)) +(: cnet_atlocation_9fa23c6d81 (AtLocation store town) (STV 1.0 0.9572)) +(: cnet_atlocation_bb32847075 (AtLocation store_refrigerator deli) (STV 1.0 0.9091)) +(: cnet_atlocation_e94cf5645f (AtLocation store_refrigerator store) (STV 1.0 0.9091)) +(: cnet_atlocation_70975335b0 (AtLocation store_refrigerator supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_0c9a9848e6 (AtLocation store_shelf convienence_store) (STV 1.0 0.9091)) +(: cnet_atlocation_432fb3fb96 (AtLocation store_shelf store) (STV 1.0 0.9339)) +(: cnet_atlocation_3b8566b81b (AtLocation stored_item container) (STV 1.0 0.9339)) +(: cnet_atlocation_5be9f91a12 (AtLocation stored_item shelf) (STV 1.0 0.9091)) +(: cnet_atlocation_9d1361df08 (AtLocation store city) (STV 1.0 0.9454)) +(: cnet_atlocation_46c88660bf (AtLocation storey building) (STV 1.0 0.9339)) +(: cnet_atlocation_033e6fab41 (AtLocation storm america) (STV 1.0 0.9091)) +(: cnet_atlocation_9a0334a21e (AtLocation storm summer) (STV 1.0 0.9091)) +(: cnet_atlocation_236dbfc10d (AtLocation storm tropic) (STV 1.0 0.9091)) +(: cnet_atlocation_ed4c065bb7 (AtLocation storm sea) (STV 1.0 0.9091)) +(: cnet_atlocation_adf828550e (AtLocation story newspaper) (STV 1.0 0.9339)) +(: cnet_atlocation_ebee53b1a8 (AtLocation stove house) (STV 1.0 0.9339)) +(: cnet_atlocation_fd92aa4e04 (AtLocation straw fast_food_restaurant) (STV 1.0 0.9091)) +(: cnet_atlocation_45e62a6513 (AtLocation stream forest) (STV 1.0 0.9608)) +(: cnet_atlocation_5c1b68f507 (AtLocation stream wood) (STV 1.0 0.9091)) +(: cnet_atlocation_c5eb839aa1 (AtLocation street street_corner) (STV 1.0 0.9091)) +(: cnet_atlocation_401a7f322f (AtLocation street_drain street) (STV 1.0 0.9091)) +(: cnet_atlocation_752d5bdac4 (AtLocation street_sign street_corner) (STV 1.0 0.9454)) +(: cnet_atlocation_314f485b1a (AtLocation street_sweeper street) (STV 1.0 0.9091)) +(: cnet_atlocation_124a50041b (AtLocation streetlight street) (STV 1.0 0.9339)) +(: cnet_atlocation_5a219f2d34 (AtLocation streetsign street_corner) (STV 1.0 0.9454)) +(: cnet_atlocation_5e33901814 (AtLocation string guitar) (STV 1.0 0.9091)) +(: cnet_atlocation_0abaa8bbde (AtLocation string_bass music_shop) (STV 1.0 0.9339)) +(: cnet_atlocation_67f149ed2e (AtLocation string_bass orchestra) (STV 1.0 0.9091)) +(: cnet_atlocation_826fb679d4 (AtLocation stringed_instrument band) (STV 1.0 0.9091)) +(: cnet_atlocation_e3eca1cec4 (AtLocation strip_mall city) (STV 1.0 0.9091)) +(: cnet_atlocation_0c0952106f (AtLocation strip_mall suburb) (STV 1.0 0.9091)) +(: cnet_atlocation_c1dc49ee49 (AtLocation stripper strip_club) (STV 1.0 0.9091)) +(: cnet_atlocation_9cc88f797a (AtLocation student_s_head desk) (STV 1.0 0.9091)) +(: cnet_atlocation_4e762b0d30 (AtLocation student classroom) (STV 1.0 0.9454)) +(: cnet_atlocation_ebbb164d67 (AtLocation student college) (STV 1.0 0.9524)) +(: cnet_atlocation_71176dbaeb (AtLocation student college_class) (STV 1.0 0.9091)) +(: cnet_atlocation_f0886b84d8 (AtLocation student library) (STV 1.0 0.9454)) +(: cnet_atlocation_3e921f8bf4 (AtLocation student university) (STV 1.0 0.9693)) +(: cnet_atlocation_e88f2eff2e (AtLocation student homeschool) (STV 1.0 0.9091)) +(: cnet_atlocation_c5379eae1b (AtLocation student school) (STV 1.0 0.9339)) +(: cnet_atlocation_e1c4b2dbc2 (AtLocation study large_house) (STV 1.0 0.9091)) +(: cnet_atlocation_36ad464969 (AtLocation study mansion) (STV 1.0 0.9091)) +(: cnet_atlocation_6eaa82b74a (AtLocation stuff_to_make_cooky cupboard) (STV 1.0 0.9091)) +(: cnet_atlocation_9c723c1674 (AtLocation stuffed_animal child_s_bedroom) (STV 1.0 0.9091)) +(: cnet_atlocation_e05365ea69 (AtLocation stuffed_animal toy_store) (STV 1.0 0.9339)) +(: cnet_atlocation_081b9c645f (AtLocation submarine ocean) (STV 1.0 0.9091)) +(: cnet_atlocation_2f0c327755 (AtLocation submarine water) (STV 1.0 0.9677)) +(: cnet_atlocation_0783b1a7d0 (AtLocation suburban_shopping_mall united_state) (STV 1.0 0.9339)) +(: cnet_atlocation_2833330c4b (AtLocation subway_map subway_station) (STV 1.0 0.9091)) +(: cnet_atlocation_4fb35c17b1 (AtLocation subway_pass pocket) (STV 1.0 0.9091)) +(: cnet_atlocation_ecaca0a1ee (AtLocation subway_pass purse) (STV 1.0 0.9091)) +(: cnet_atlocation_7b880fcf0f (AtLocation subway_pass wallet) (STV 1.0 0.9454)) +(: cnet_atlocation_68381c0751 (AtLocation subway_platform new_york_city) (STV 1.0 0.9091)) +(: cnet_atlocation_d07851b5a5 (AtLocation subway_platform subway_station) (STV 1.0 0.9091)) +(: cnet_atlocation_bfd83fd473 (AtLocation subway_station big_city) (STV 1.0 0.9339)) +(: cnet_atlocation_ac6ec0dd1c (AtLocation subway_station city) (STV 1.0 0.9339)) +(: cnet_atlocation_1c01c11a4c (AtLocation subway_station london) (STV 1.0 0.9524)) +(: cnet_atlocation_86dbae0dfd (AtLocation subway_station new_york) (STV 1.0 0.9454)) +(: cnet_atlocation_0b9fdbf040 (AtLocation subway_stop new_york_city) (STV 1.0 0.9454)) +(: cnet_atlocation_7112eadeb4 (AtLocation subway_token subway) (STV 1.0 0.9339)) +(: cnet_atlocation_03387d1a8b (AtLocation sugar coffee) (STV 1.0 0.9339)) +(: cnet_atlocation_2d3e40a395 (AtLocation sugar cupboard) (STV 1.0 0.9091)) +(: cnet_atlocation_8a8c571457 (AtLocation sugar sugar_bowl) (STV 1.0 0.9339)) +(: cnet_atlocation_4f4165ca52 (AtLocation suit suitcase) (STV 1.0 0.9091)) +(: cnet_atlocation_a25510b55d (AtLocation suite hotel) (STV 1.0 0.9091)) +(: cnet_atlocation_0539c4bcbd (AtLocation suit closet) (STV 1.0 0.9091)) +(: cnet_atlocation_48ba7b3718 (AtLocation sulfur chemistry_lab) (STV 1.0 0.9454)) +(: cnet_atlocation_b9698b94e3 (AtLocation summit top_of_mountain) (STV 1.0 0.9091)) +(: cnet_atlocation_fae09c371e (AtLocation sun center_of_solar_system) (STV 1.0 0.9572)) +(: cnet_atlocation_5298b4b147 (AtLocation sun solar_system) (STV 1.0 0.9454)) +(: cnet_atlocation_e38eb7bbf3 (AtLocation sun universe) (STV 1.0 0.9572)) +(: cnet_atlocation_acc40e32a1 (AtLocation sun_bather beach) (STV 1.0 0.9091)) +(: cnet_atlocation_dea19493d3 (AtLocation sunburned_people beach) (STV 1.0 0.9091)) +(: cnet_atlocation_be1a435b3a (AtLocation sunken_ship bottom_of_sea) (STV 1.0 0.9091)) +(: cnet_atlocation_e9af56d412 (AtLocation sunken_treasure bottom_of_sea) (STV 1.0 0.9091)) +(: cnet_atlocation_74aee61ca8 (AtLocation sunlight suface_of_moon) (STV 1.0 0.9091)) +(: cnet_atlocation_cceb7ac315 (AtLocation sunscreen beach) (STV 1.0 0.9339)) +(: cnet_atlocation_b5319dc921 (AtLocation sunshine beach) (STV 1.0 0.9091)) +(: cnet_atlocation_015879faf3 (AtLocation sunshine summer) (STV 1.0 0.9339)) +(: cnet_atlocation_e2043176bf (AtLocation sunspot sun) (STV 1.0 0.9091)) +(: cnet_atlocation_b16b05f95f (AtLocation superhighway america) (STV 1.0 0.9339)) +(: cnet_atlocation_42293640c8 (AtLocation superhighway city) (STV 1.0 0.9339)) +(: cnet_atlocation_953c12bd35 (AtLocation supermarket city) (STV 1.0 0.9339)) +(: cnet_atlocation_ac7f65063c (AtLocation surface geometry) (STV 1.0 0.9091)) +(: cnet_atlocation_8833ca363e (AtLocation surface lake) (STV 1.0 0.9091)) +(: cnet_atlocation_b38146451e (AtLocation suspension_cable bridge) (STV 1.0 0.9091)) +(: cnet_atlocation_521f61cec6 (AtLocation suspension_cable suspension_bridge) (STV 1.0 0.9091)) +(: cnet_atlocation_e94c13524b (AtLocation swamp bayoo) (STV 1.0 0.9091)) +(: cnet_atlocation_f122b06ea8 (AtLocation swamp louisiana) (STV 1.0 0.9091)) +(: cnet_atlocation_84cd72491f (AtLocation sweater drawer) (STV 1.0 0.9454)) +(: cnet_atlocation_48b2df0aeb (AtLocation swimmer swimming_pool) (STV 1.0 0.9339)) +(: cnet_atlocation_a4b349b4d3 (AtLocation swimming_pool backyard) (STV 1.0 0.9339)) +(: cnet_atlocation_778d74a47d (AtLocation swimming_pool fitness_center) (STV 1.0 0.9091)) +(: cnet_atlocation_bb546df7b3 (AtLocation swimming_pool motel) (STV 1.0 0.9339)) +(: cnet_atlocation_9aa8250967 (AtLocation swimming_pool school) (STV 1.0 0.9454)) +(: cnet_atlocation_b22db2a6bf (AtLocation swing porch) (STV 1.0 0.9091)) +(: cnet_atlocation_88276368c4 (AtLocation swing_set park) (STV 1.0 0.9339)) +(: cnet_atlocation_9d5767a537 (AtLocation swingset park) (STV 1.0 0.9339)) +(: cnet_atlocation_c817e0d46f (AtLocation sword museum) (STV 1.0 0.9091)) +(: cnet_atlocation_dfe639dd82 (AtLocation sword sheath) (STV 1.0 0.9524)) +(: cnet_atlocation_c1c6642248 (AtLocation symphony_hall city_s_downtown) (STV 1.0 0.9091)) +(: cnet_atlocation_b2435a381c (AtLocation symphony_hall city) (STV 1.0 0.9454)) +(: cnet_atlocation_552c10b6fb (AtLocation symphony_hall large_city) (STV 1.0 0.9091)) +(: cnet_atlocation_b91e0a0a28 (AtLocation syringe doctor) (STV 1.0 0.9524)) +(: cnet_atlocation_1c8c9c319d (AtLocation syrup waffle) (STV 1.0 0.9091)) +(: cnet_atlocation_bf6c065c5e (AtLocation t_shirt chest_of_drawer) (STV 1.0 0.9091)) +(: cnet_atlocation_91a8485d42 (AtLocation t_shirt closet) (STV 1.0 0.9572)) +(: cnet_atlocation_5e319e0a56 (AtLocation t_shirt dresser_drawer) (STV 1.0 0.9339)) +(: cnet_atlocation_dabf4cd67f (AtLocation t_shirt laundry) (STV 1.0 0.9091)) +(: cnet_atlocation_7a79ddba50 (AtLocation t_shirt souvenir_shop) (STV 1.0 0.9091)) +(: cnet_atlocation_09192f4350 (AtLocation t_shirt t_shirt_drawer) (STV 1.0 0.9091)) +(: cnet_atlocation_f36923dda8 (AtLocation t_shirt tourist_shop) (STV 1.0 0.9091)) +(: cnet_atlocation_1b00971762 (AtLocation t_shirt concert) (STV 1.0 0.9091)) +(: cnet_atlocation_bc8f2dd642 (AtLocation tab bar) (STV 1.0 0.9091)) +(: cnet_atlocation_1c51dc334d (AtLocation tabby_cat home) (STV 1.0 0.9091)) +(: cnet_atlocation_760b462c71 (AtLocation tabby_cat lap) (STV 1.0 0.9454)) +(: cnet_atlocation_467a824f54 (AtLocation table apartment) (STV 1.0 0.9091)) +(: cnet_atlocation_76c26a92a1 (AtLocation table conference) (STV 1.0 0.9339)) +(: cnet_atlocation_c707705b95 (AtLocation table corner) (STV 1.0 0.9091)) +(: cnet_atlocation_63036b14a5 (AtLocation table demonstration) (STV 1.0 0.9091)) +(: cnet_atlocation_a1a2d1dc8e (AtLocation table dining_room) (STV 1.0 0.9524)) +(: cnet_atlocation_f78750f5b3 (AtLocation table furniture_store) (STV 1.0 0.9091)) +(: cnet_atlocation_65b584516a (AtLocation table house) (STV 1.0 0.9091)) +(: cnet_atlocation_92ce1ec038 (AtLocation table kitchen) (STV 1.0 0.9636)) +(: cnet_atlocation_a2e0965549 (AtLocation table library) (STV 1.0 0.9091)) +(: cnet_atlocation_9caa30ba36 (AtLocation table resturant) (STV 1.0 0.9572)) +(: cnet_atlocation_1be127775d (AtLocation table room) (STV 1.0 0.9091)) +(: cnet_atlocation_34dccacf4b (AtLocation table rug) (STV 1.0 0.9091)) +(: cnet_atlocation_0c30ba2f43 (AtLocation table_cloth table) (STV 1.0 0.9572)) +(: cnet_atlocation_18776b38d4 (AtLocation table_leg table) (STV 1.0 0.9339)) +(: cnet_atlocation_81dacb0e06 (AtLocation tablecloth linen_closet) (STV 1.0 0.9454)) +(: cnet_atlocation_335adbf5c8 (AtLocation tablecloth table) (STV 1.0 0.9756)) +(: cnet_atlocation_7eae400ba8 (AtLocation tablecloth_covering table) (STV 1.0 0.9091)) +(: cnet_atlocation_fdc8a4a5af (AtLocation table_and_chair conference) (STV 1.0 0.9091)) +(: cnet_atlocation_a7d93f9c49 (AtLocation tablespoon kitchen) (STV 1.0 0.9091)) +(: cnet_atlocation_73ec6dbdc6 (AtLocation tablespoon kitchen_drawer) (STV 1.0 0.9572)) +(: cnet_atlocation_a97e0e59f5 (AtLocation tabloid_magazine supermarket) (STV 1.0 0.9339)) +(: cnet_atlocation_357cb66146 (AtLocation tack carpet) (STV 1.0 0.9091)) +(: cnet_atlocation_effa7cb987 (AtLocation tack cork_board) (STV 1.0 0.9091)) +(: cnet_atlocation_feea044c1a (AtLocation tack wall) (STV 1.0 0.9091)) +(: cnet_atlocation_6bba71fee7 (AtLocation taco fast_food_restaurant) (STV 1.0 0.9091)) +(: cnet_atlocation_b89b0ab80d (AtLocation tadpole water) (STV 1.0 0.9091)) +(: cnet_atlocation_93c23a628d (AtLocation tampon purse) (STV 1.0 0.9091)) +(: cnet_atlocation_f6f4eedff9 (AtLocation tank military_base) (STV 1.0 0.9339)) +(: cnet_atlocation_3c8eabbcda (AtLocation tank war) (STV 1.0 0.9608)) +(: cnet_atlocation_2718c1709c (AtLocation tanning_lotion beach_bag) (STV 1.0 0.9339)) +(: cnet_atlocation_d05d15140e (AtLocation tanning_lotion supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_da44e49064 (AtLocation tap bathroom) (STV 1.0 0.9339)) +(: cnet_atlocation_bd924c3b38 (AtLocation tape_dispenser desk) (STV 1.0 0.9339)) +(: cnet_atlocation_9d71b8721a (AtLocation tape_dispenser office) (STV 1.0 0.9091)) +(: cnet_atlocation_59d2d5a83a (AtLocation tarmac airport) (STV 1.0 0.9339)) +(: cnet_atlocation_3d386a0630 (AtLocation taste_bud mouth) (STV 1.0 0.9091)) +(: cnet_atlocation_4a428041d7 (AtLocation taste_bud_on_tongue mouth) (STV 1.0 0.9091)) +(: cnet_atlocation_aa5f0dbe99 (AtLocation tastebud mouth) (STV 1.0 0.9091)) +(: cnet_atlocation_efd3257fda (AtLocation tax_paperwork home) (STV 1.0 0.9091)) +(: cnet_atlocation_e341788400 (AtLocation taxi airport) (STV 1.0 0.9454)) +(: cnet_atlocation_fcd9a88d92 (AtLocation taxi train_station) (STV 1.0 0.9339)) +(: cnet_atlocation_f5a9b7dd99 (AtLocation taxis city) (STV 1.0 0.9339)) +(: cnet_atlocation_ff8aeb4718 (AtLocation taxiway airport) (STV 1.0 0.9339)) +(: cnet_atlocation_62928fccb6 (AtLocation taxiway city) (STV 1.0 0.9454)) +(: cnet_atlocation_cf7ea8ce48 (AtLocation taxiway_turn_off city) (STV 1.0 0.9091)) +(: cnet_atlocation_783986162c (AtLocation tea cupboard) (STV 1.0 0.9454)) +(: cnet_atlocation_d94af08ba0 (AtLocation teacher classroom) (STV 1.0 0.9707)) +(: cnet_atlocation_077cc9ebe6 (AtLocation teacher_aide classroom) (STV 1.0 0.9091)) +(: cnet_atlocation_3fa8700781 (AtLocation teacher_lounge school) (STV 1.0 0.9091)) +(: cnet_atlocation_973afe402a (AtLocation teakettle japanese_tea_room) (STV 1.0 0.9091)) +(: cnet_atlocation_57a5014a61 (AtLocation team soccer_game) (STV 1.0 0.9339)) +(: cnet_atlocation_1657f6d35b (AtLocation tear_gas demonstration) (STV 1.0 0.9091)) +(: cnet_atlocation_432211c163 (AtLocation tearoom building) (STV 1.0 0.9091)) +(: cnet_atlocation_811771492e (AtLocation tearoom england) (STV 1.0 0.9454)) +(: cnet_atlocation_07d9d18df3 (AtLocation tearoom london) (STV 1.0 0.9091)) +(: cnet_atlocation_16c30eea75 (AtLocation teaspoon coffee_cup) (STV 1.0 0.9091)) +(: cnet_atlocation_98dbf9c3d3 (AtLocation teaspoon kitchen) (STV 1.0 0.9454)) +(: cnet_atlocation_85121acc9d (AtLocation technician_and_nerd laboratory) (STV 1.0 0.9091)) +(: cnet_atlocation_b9255d6287 (AtLocation teddy_bear shelf) (STV 1.0 0.9091)) +(: cnet_atlocation_a8b23ddb5b (AtLocation teddy_bear toy_store) (STV 1.0 0.9454)) +(: cnet_atlocation_ff91a7a2fa (AtLocation teenager high_school) (STV 1.0 0.9091)) +(: cnet_atlocation_690d2e584e (AtLocation teenager mall) (STV 1.0 0.9339)) +(: cnet_atlocation_dcfac935b1 (AtLocation teeth mouth) (STV 1.0 0.9776)) +(: cnet_atlocation_c38a87e97f (AtLocation telephone desk) (STV 1.0 0.9791)) +(: cnet_atlocation_d0548496cf (AtLocation telephone desktop) (STV 1.0 0.9091)) +(: cnet_atlocation_edec70fcfa (AtLocation telephone friend_s_house) (STV 1.0 0.9091)) +(: cnet_atlocation_1fe6199061 (AtLocation telephone hotel) (STV 1.0 0.9091)) +(: cnet_atlocation_136518da2f (AtLocation telephone office) (STV 1.0 0.9659)) +(: cnet_atlocation_10134b90f6 (AtLocation telephone phone_booth) (STV 1.0 0.9091)) +(: cnet_atlocation_5667388058 (AtLocation telephone_book at_hotel) (STV 1.0 0.9091)) +(: cnet_atlocation_650ca04c07 (AtLocation telephone_book telephone_booth) (STV 1.0 0.9091)) +(: cnet_atlocation_3e707a34ad (AtLocation telephone_booth city) (STV 1.0 0.9636)) +(: cnet_atlocation_6528f18466 (AtLocation telephone_booth gas_station) (STV 1.0 0.9091)) +(: cnet_atlocation_6136195e5e (AtLocation telephone_booth london) (STV 1.0 0.9339)) +(: cnet_atlocation_e6801f84e0 (AtLocation telephone_box london) (STV 1.0 0.9524)) +(: cnet_atlocation_3c82b3f66a (AtLocation telephone_directory office) (STV 1.0 0.9339)) +(: cnet_atlocation_be6d73fe37 (AtLocation telephone_directory phone_booth) (STV 1.0 0.9091)) +(: cnet_atlocation_0f6511168b (AtLocation telephone_index office) (STV 1.0 0.9091)) +(: cnet_atlocation_5ee4f5362c (AtLocation telephone_index phone_book) (STV 1.0 0.9091)) +(: cnet_atlocation_f33bc27a31 (AtLocation telephone_index telephone_book) (STV 1.0 0.9091)) +(: cnet_atlocation_9612b59c96 (AtLocation telephone_number telephone_book) (STV 1.0 0.9339)) +(: cnet_atlocation_d3eaf615de (AtLocation television living_room) (STV 1.0 0.9339)) +(: cnet_atlocation_fc9ac67981 (AtLocation television_program television) (STV 1.0 0.9091)) +(: cnet_atlocation_e2b67b2bb8 (AtLocation television_set store) (STV 1.0 0.9091)) +(: cnet_atlocation_2d2cbd4260 (AtLocation television_show television) (STV 1.0 0.9091)) +(: cnet_atlocation_90f2984bab (AtLocation teller train_station) (STV 1.0 0.9091)) +(: cnet_atlocation_c08f864c6d (AtLocation temperature_record newspaper) (STV 1.0 0.9091)) +(: cnet_atlocation_eadf2c291a (AtLocation temple china) (STV 1.0 0.9339)) +(: cnet_atlocation_7c949badc6 (AtLocation temple india) (STV 1.0 0.9524)) +(: cnet_atlocation_6fb04de5db (AtLocation temple jerusalem) (STV 1.0 0.9339)) +(: cnet_atlocation_2c84272b67 (AtLocation tenant apartment) (STV 1.0 0.9091)) +(: cnet_atlocation_ba85442198 (AtLocation tennis_court park) (STV 1.0 0.9091)) +(: cnet_atlocation_4de4fde3f2 (AtLocation tennis_game tennis_court) (STV 1.0 0.9339)) +(: cnet_atlocation_6c0bf565a4 (AtLocation tenor choir) (STV 1.0 0.9339)) +(: cnet_atlocation_7aca098cf0 (AtLocation tenor opera) (STV 1.0 0.9636)) +(: cnet_atlocation_d6baea4b61 (AtLocation terminal airport) (STV 1.0 0.9454)) +(: cnet_atlocation_b20bcfbd82 (AtLocation terrace architecture) (STV 1.0 0.9091)) +(: cnet_atlocation_1d2b389373 (AtLocation terrace building) (STV 1.0 0.9091)) +(: cnet_atlocation_0ae2339da9 (AtLocation terrace house) (STV 1.0 0.9339)) +(: cnet_atlocation_5c10491aa1 (AtLocation terrorist airport) (STV 1.0 0.9339)) +(: cnet_atlocation_f26cce3fe1 (AtLocation test_equipment laboratory) (STV 1.0 0.9339)) +(: cnet_atlocation_c5d0120fc5 (AtLocation test_tube chemistry_lab) (STV 1.0 0.9339)) +(: cnet_atlocation_906daaa6d9 (AtLocation test_tube laboratory) (STV 1.0 0.9454)) +(: cnet_atlocation_e4a379d508 (AtLocation text library) (STV 1.0 0.9454)) +(: cnet_atlocation_55fac9a7c5 (AtLocation text newspaper) (STV 1.0 0.9339)) +(: cnet_atlocation_a659b5bab2 (AtLocation text_book school) (STV 1.0 0.9524)) +(: cnet_atlocation_1742f60ad6 (AtLocation textbook locker) (STV 1.0 0.9091)) +(: cnet_atlocation_c51d239a9a (AtLocation textile fabric_store) (STV 1.0 0.9339)) +(: cnet_atlocation_9aa0de46c6 (AtLocation textile factory) (STV 1.0 0.9339)) +(: cnet_atlocation_c92d9821e5 (AtLocation thatch roof) (STV 1.0 0.9339)) +(: cnet_atlocation_99660573f5 (AtLocation thc cannabis) (STV 1.0 0.9091)) +(: cnet_atlocation_65dea5aeab (AtLocation theater city) (STV 1.0 0.9339)) +(: cnet_atlocation_6280380987 (AtLocation theater_box theater) (STV 1.0 0.9091)) +(: cnet_atlocation_62931fe2f8 (AtLocation theater_hall big_city) (STV 1.0 0.9091)) +(: cnet_atlocation_984957a771 (AtLocation theater_hall city) (STV 1.0 0.9339)) +(: cnet_atlocation_2952ad9616 (AtLocation theater_hall most_city) (STV 1.0 0.9091)) +(: cnet_atlocation_5d1df663b9 (AtLocation theater_hall school) (STV 1.0 0.9091)) +(: cnet_atlocation_c2cab93bf3 (AtLocation theater_hall university) (STV 1.0 0.9339)) +(: cnet_atlocation_a2cd180a02 (AtLocation theater_ticket box_office) (STV 1.0 0.9091)) +(: cnet_atlocation_2be3d7d41d (AtLocation theater_ticket pocket) (STV 1.0 0.9091)) +(: cnet_atlocation_e3cb6644a6 (AtLocation theatre mall) (STV 1.0 0.9091)) +(: cnet_atlocation_c5e3d5e544 (AtLocation thermometer doctor) (STV 1.0 0.9454)) +(: cnet_atlocation_c2938ee969 (AtLocation thespian theater) (STV 1.0 0.9091)) +(: cnet_atlocation_3753f6ec02 (AtLocation thief jail) (STV 1.0 0.9091)) +(: cnet_atlocation_07bb37a7e0 (AtLocation thin_air top_of_mountain) (STV 1.0 0.9091)) +(: cnet_atlocation_c04d12408b (AtLocation thirsty_people water_fountain) (STV 1.0 0.9091)) +(: cnet_atlocation_5388e75a06 (AtLocation thirsty_person water_fountain) (STV 1.0 0.9091)) +(: cnet_atlocation_823c5421f7 (AtLocation thumb_tack cork_board) (STV 1.0 0.9091)) +(: cnet_atlocation_01c1a594b7 (AtLocation tick meadow) (STV 1.0 0.9091)) +(: cnet_atlocation_72df74ae63 (AtLocation ticket movie) (STV 1.0 0.9091)) +(: cnet_atlocation_58b90d30b1 (AtLocation ticket pocket) (STV 1.0 0.9091)) +(: cnet_atlocation_74fe2d0f95 (AtLocation ticket train_station) (STV 1.0 0.9091)) +(: cnet_atlocation_5f72480d63 (AtLocation ticket_agent airport) (STV 1.0 0.9091)) +(: cnet_atlocation_f210f7f32c (AtLocation ticket_booth auditorium) (STV 1.0 0.9091)) +(: cnet_atlocation_a478894706 (AtLocation ticket_booth subway) (STV 1.0 0.9091)) +(: cnet_atlocation_fa7060f7dd (AtLocation ticket_booth train_station) (STV 1.0 0.9454)) +(: cnet_atlocation_a2fa50b0be (AtLocation ticket_box theater) (STV 1.0 0.9091)) +(: cnet_atlocation_e057d1d8a2 (AtLocation ticket_office movie_theater) (STV 1.0 0.9091)) +(: cnet_atlocation_03e718e3f0 (AtLocation ticket_slot parking_lot) (STV 1.0 0.9091)) +(: cnet_atlocation_690e67ad53 (AtLocation ticket_taker train_station) (STV 1.0 0.9454)) +(: cnet_atlocation_6dc4fba10e (AtLocation ticket_turnstile subway) (STV 1.0 0.9091)) +(: cnet_atlocation_0f8599adf4 (AtLocation ticket_window train_station) (STV 1.0 0.9339)) +(: cnet_atlocation_b68d5422d9 (AtLocation ticket_window bus_depot) (STV 1.0 0.9091)) +(: cnet_atlocation_44139eb824 (AtLocation ticket opera) (STV 1.0 0.9339)) +(: cnet_atlocation_5f03b163bb (AtLocation tie suitcase) (STV 1.0 0.9091)) +(: cnet_atlocation_f02831f3be (AtLocation tiger zoo) (STV 1.0 0.9339)) +(: cnet_atlocation_a361571b19 (AtLocation tile roof) (STV 1.0 0.9339)) +(: cnet_atlocation_676b20e7a5 (AtLocation tile floor) (STV 1.0 0.9339)) +(: cnet_atlocation_052c2877e6 (AtLocation tiling roof) (STV 1.0 0.9677)) +(: cnet_atlocation_05ad67f5f7 (AtLocation timetable train_station) (STV 1.0 0.9091)) +(: cnet_atlocation_6c197d4bae (AtLocation tin cupboard) (STV 1.0 0.9091)) +(: cnet_atlocation_65546962da (AtLocation tired_people rest_area) (STV 1.0 0.9091)) +(: cnet_atlocation_1c4681cf16 (AtLocation tire car_show) (STV 1.0 0.9091)) +(: cnet_atlocation_38de7daac6 (AtLocation tire_people rest_area) (STV 1.0 0.9091)) +(: cnet_atlocation_1b00e5f167 (AtLocation tissue purse) (STV 1.0 0.9091)) +(: cnet_atlocation_69af49f3ae (AtLocation tissue_holder bathroom) (STV 1.0 0.9608)) +(: cnet_atlocation_ced4c16c80 (AtLocation tithe church) (STV 1.0 0.9091)) +(: cnet_atlocation_8d6378cd37 (AtLocation toe foot) (STV 1.0 0.9091)) +(: cnet_atlocation_69135a31a4 (AtLocation toe sock) (STV 1.0 0.9091)) +(: cnet_atlocation_ee2c4e6274 (AtLocation toilet apartment) (STV 1.0 0.9091)) +(: cnet_atlocation_fd94f0f52a (AtLocation toilet bathroom) (STV 1.0 0.9730)) +(: cnet_atlocation_b3043411d7 (AtLocation toilet hospital) (STV 1.0 0.9091)) +(: cnet_atlocation_0b2f7b8467 (AtLocation toilet house) (STV 1.0 0.9524)) +(: cnet_atlocation_ddae94bedd (AtLocation toilet motel_room) (STV 1.0 0.9339)) +(: cnet_atlocation_4c7399363e (AtLocation toilet rest_area) (STV 1.0 0.9091)) +(: cnet_atlocation_409899d488 (AtLocation toilet stadium) (STV 1.0 0.9091)) +(: cnet_atlocation_e04f747dd9 (AtLocation toilet_paper bathroom) (STV 1.0 0.9719)) +(: cnet_atlocation_2ada056830 (AtLocation toilet_paper cabinet) (STV 1.0 0.9091)) +(: cnet_atlocation_7324daf6b2 (AtLocation toilet_paper grocery_store) (STV 1.0 0.9339)) +(: cnet_atlocation_5b7fe297c1 (AtLocation toilet_paper rest_area) (STV 1.0 0.9091)) +(: cnet_atlocation_3133bc3c28 (AtLocation toilet_paper toilet) (STV 1.0 0.9091)) +(: cnet_atlocation_c05528ea06 (AtLocation toiletry suitcase) (STV 1.0 0.9339)) +(: cnet_atlocation_92942bc551 (AtLocation toilet mall) (STV 1.0 0.9091)) +(: cnet_atlocation_0382d27cfd (AtLocation token arcade) (STV 1.0 0.9091)) +(: cnet_atlocation_f5e06fae5b (AtLocation token coin_collection) (STV 1.0 0.9091)) +(: cnet_atlocation_7803da6874 (AtLocation token_turnstile subway_station) (STV 1.0 0.9091)) +(: cnet_atlocation_0b5f00fe96 (AtLocation toliet bathroom) (STV 1.0 0.9091)) +(: cnet_atlocation_8580907747 (AtLocation toll_road new_jersey) (STV 1.0 0.9339)) +(: cnet_atlocation_2e613d80eb (AtLocation toll_road united_state) (STV 1.0 0.9572)) +(: cnet_atlocation_b2b72466e0 (AtLocation tomato farmer_s_market) (STV 1.0 0.9091)) +(: cnet_atlocation_c3de7d8504 (AtLocation tomato refrigerator) (STV 1.0 0.9091)) +(: cnet_atlocation_ffc60a82da (AtLocation tomatoe market) (STV 1.0 0.9339)) +(: cnet_atlocation_f0fca01a7f (AtLocation tomatoe pizza) (STV 1.0 0.9454)) +(: cnet_atlocation_a89917692a (AtLocation tomatoe refrigerator) (STV 1.0 0.9339)) +(: cnet_atlocation_1304ccd70c (AtLocation tombstone cemetery) (STV 1.0 0.9091)) +(: cnet_atlocation_313c49adbd (AtLocation tongue mouth) (STV 1.0 0.9730)) +(: cnet_atlocation_48fe8049dc (AtLocation tongue_depressor doctor) (STV 1.0 0.9572)) +(: cnet_atlocation_155801f30a (AtLocation too_few_cashier supermarket) (STV 1.0 0.9454)) +(: cnet_atlocation_7348091d15 (AtLocation tool garage) (STV 1.0 0.9636)) +(: cnet_atlocation_b67eb959ba (AtLocation tool repair_shop) (STV 1.0 0.9454)) +(: cnet_atlocation_f54d8f708c (AtLocation tool tool_box) (STV 1.0 0.9091)) +(: cnet_atlocation_a8fcb3d23e (AtLocation tool_chest garage) (STV 1.0 0.9091)) +(: cnet_atlocation_71a087614f (AtLocation toolbox garage) (STV 1.0 0.9572)) +(: cnet_atlocation_90b2eabb51 (AtLocation tool neighbor_s_house) (STV 1.0 0.9339)) +(: cnet_atlocation_ced3ebd2eb (AtLocation tooth mouth) (STV 1.0 0.9636)) +(: cnet_atlocation_fdb8e5bf92 (AtLocation toothbrush dentist) (STV 1.0 0.9091)) +(: cnet_atlocation_ceb4076769 (AtLocation toothbrush mouth) (STV 1.0 0.9091)) +(: cnet_atlocation_2dbaa21366 (AtLocation toothbrush suitcase) (STV 1.0 0.9572)) +(: cnet_atlocation_8658d3d121 (AtLocation toothbrush_bristle toothbrush) (STV 1.0 0.9572)) +(: cnet_atlocation_cbbaf668ab (AtLocation toothbrush_handle hand) (STV 1.0 0.9091)) +(: cnet_atlocation_9be31e1f21 (AtLocation toothbrush_handle toothbrush_holder) (STV 1.0 0.9091)) +(: cnet_atlocation_74429ed4c5 (AtLocation toothbrushe dentist) (STV 1.0 0.9572)) +(: cnet_atlocation_ac49edc7f0 (AtLocation toothpaste medicine_cabinet) (STV 1.0 0.9339)) +(: cnet_atlocation_1c758c7f35 (AtLocation toothpaste tube) (STV 1.0 0.9091)) +(: cnet_atlocation_aaab6dbfd3 (AtLocation tortilla supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_9dab30c933 (AtLocation tounge mouth) (STV 1.0 0.9572)) +(: cnet_atlocation_bb6848a92a (AtLocation tourist beach) (STV 1.0 0.9339)) +(: cnet_atlocation_031ab1463c (AtLocation tourist disneyland) (STV 1.0 0.9091)) +(: cnet_atlocation_33141ac7c2 (AtLocation tourist waterfall) (STV 1.0 0.9091)) +(: cnet_atlocation_134c05fa26 (AtLocation tourniquet hospital) (STV 1.0 0.9339)) +(: cnet_atlocation_a9b0f60912 (AtLocation towel at_hotel) (STV 1.0 0.9339)) +(: cnet_atlocation_10b394803e (AtLocation towel swimming_pool) (STV 1.0 0.9091)) +(: cnet_atlocation_4d60ba62c7 (AtLocation towel_rack bathroom) (STV 1.0 0.9677)) +(: cnet_atlocation_80653c56b0 (AtLocation towel hotel) (STV 1.0 0.9524)) +(: cnet_atlocation_0230af83ee (AtLocation towel motel) (STV 1.0 0.9091)) +(: cnet_atlocation_f5948dea85 (AtLocation tower castle) (STV 1.0 0.9091)) +(: cnet_atlocation_1f8ed8ce2c (AtLocation tower city) (STV 1.0 0.9091)) +(: cnet_atlocation_5c1261fa33 (AtLocation town country) (STV 1.0 0.9572)) +(: cnet_atlocation_3b0f5b47c7 (AtLocation town countryside) (STV 1.0 0.9091)) +(: cnet_atlocation_4b58b52f73 (AtLocation town state) (STV 1.0 0.9572)) +(: cnet_atlocation_c4340206d5 (AtLocation townhouse town) (STV 1.0 0.9091)) +(: cnet_atlocation_d5204b4d63 (AtLocation toy store) (STV 1.0 0.9091)) +(: cnet_atlocation_bd2d098623 (AtLocation toy toy_chest) (STV 1.0 0.9091)) +(: cnet_atlocation_5ddb1791b9 (AtLocation toy_ball child_s_room) (STV 1.0 0.9091)) +(: cnet_atlocation_852787dbf7 (AtLocation toy_ball kid_s_room) (STV 1.0 0.9091)) +(: cnet_atlocation_85a0813369 (AtLocation toy_ball kid_room) (STV 1.0 0.9339)) +(: cnet_atlocation_f9b6245fb4 (AtLocation toy_ball toy_store) (STV 1.0 0.9339)) +(: cnet_atlocation_8c581a4a68 (AtLocation toy_balloon amusement_park) (STV 1.0 0.9091)) +(: cnet_atlocation_9cd5a0810b (AtLocation toy_balloon birthday_party) (STV 1.0 0.9091)) +(: cnet_atlocation_b234396007 (AtLocation toy_balloon circus) (STV 1.0 0.9091)) +(: cnet_atlocation_855f1d5cd9 (AtLocation toy_car child_s_room) (STV 1.0 0.9091)) +(: cnet_atlocation_88b905518c (AtLocation toy_car toy_box) (STV 1.0 0.9091)) +(: cnet_atlocation_2111d8367d (AtLocation toy_car toy_store) (STV 1.0 0.9339)) +(: cnet_atlocation_38362ede38 (AtLocation toy_soldier child_s_bedroom) (STV 1.0 0.9339)) +(: cnet_atlocation_63685fc2b0 (AtLocation toy_soldier toy_box) (STV 1.0 0.9454)) +(: cnet_atlocation_bdb9863a39 (AtLocation toy_train toy_store) (STV 1.0 0.9091)) +(: cnet_atlocation_6ce6277370 (AtLocation toy bed) (STV 1.0 0.9091)) +(: cnet_atlocation_a7bb9c9791 (AtLocation toy box) (STV 1.0 0.9091)) +(: cnet_atlocation_2098567ae7 (AtLocation toy floor) (STV 1.0 0.9454)) +(: cnet_atlocation_0f1c285d6b (AtLocation trace_amount_of_industrial_chemical water) (STV 1.0 0.9091)) +(: cnet_atlocation_dc79fa9a17 (AtLocation track snow) (STV 1.0 0.9091)) +(: cnet_atlocation_049c01d21c (AtLocation track stadium) (STV 1.0 0.9339)) +(: cnet_atlocation_edd0b1c890 (AtLocation track station) (STV 1.0 0.9091)) +(: cnet_atlocation_52bf414147 (AtLocation track train_station) (STV 1.0 0.9454)) +(: cnet_atlocation_47e7360cfd (AtLocation tractor farm) (STV 1.0 0.9454)) +(: cnet_atlocation_d917ea5c8d (AtLocation traffic street) (STV 1.0 0.9636)) +(: cnet_atlocation_d432a9de0e (AtLocation traffic_artery major_city) (STV 1.0 0.9091)) +(: cnet_atlocation_220f5513a9 (AtLocation traffic_light corner_of_two_street) (STV 1.0 0.9339)) +(: cnet_atlocation_d211b1df0d (AtLocation train_station city) (STV 1.0 0.9339)) +(: cnet_atlocation_7202cc12b9 (AtLocation train_ticket purse) (STV 1.0 0.9091)) +(: cnet_atlocation_72ada70916 (AtLocation train_ticket train_depot) (STV 1.0 0.9339)) +(: cnet_atlocation_495802e80a (AtLocation train_track train_station) (STV 1.0 0.9339)) +(: cnet_atlocation_95a5eeb1c7 (AtLocation train_track railyard) (STV 1.0 0.9091)) +(: cnet_atlocation_f677cbb30b (AtLocation transit_ticket bus_station) (STV 1.0 0.9091)) +(: cnet_atlocation_f2547c7c4f (AtLocation transit_ticket bus_stop) (STV 1.0 0.9091)) +(: cnet_atlocation_4310753fcc (AtLocation transit_ticket pocket) (STV 1.0 0.9454)) +(: cnet_atlocation_f6d398df09 (AtLocation transit_ticket subway) (STV 1.0 0.9454)) +(: cnet_atlocation_6c681f251b (AtLocation transit_ticket wallet) (STV 1.0 0.9454)) +(: cnet_atlocation_3799a8d40b (AtLocation trash bin) (STV 1.0 0.9339)) +(: cnet_atlocation_abf00f4992 (AtLocation trash container) (STV 1.0 0.9091)) +(: cnet_atlocation_061c682262 (AtLocation trash dump) (STV 1.0 0.9608)) +(: cnet_atlocation_20ca6e8f70 (AtLocation trash dumpster) (STV 1.0 0.9608)) +(: cnet_atlocation_faf38b961f (AtLocation trash dustbin) (STV 1.0 0.9339)) +(: cnet_atlocation_b355bb4415 (AtLocation trash garage) (STV 1.0 0.9091)) +(: cnet_atlocation_86e7defd77 (AtLocation trash garbage_dump) (STV 1.0 0.9454)) +(: cnet_atlocation_5183e73abb (AtLocation trash ground) (STV 1.0 0.9091)) +(: cnet_atlocation_6df9a074a7 (AtLocation trash state_park) (STV 1.0 0.9091)) +(: cnet_atlocation_2319105c55 (AtLocation trash subway) (STV 1.0 0.9454)) +(: cnet_atlocation_51fdccc99c (AtLocation trash trash_bin) (STV 1.0 0.9454)) +(: cnet_atlocation_329a5800b6 (AtLocation trash waste_bin) (STV 1.0 0.9339)) +(: cnet_atlocation_e9b2dfada5 (AtLocation trash_bag trash) (STV 1.0 0.9091)) +(: cnet_atlocation_ce2916e11c (AtLocation trash_can alley) (STV 1.0 0.9091)) +(: cnet_atlocation_29ae39e230 (AtLocation trash_can park) (STV 1.0 0.9091)) +(: cnet_atlocation_20aab6a66e (AtLocation trash_can water_cooler) (STV 1.0 0.9091)) +(: cnet_atlocation_aa3bd0f697 (AtLocation trash_container kitchen) (STV 1.0 0.9339)) +(: cnet_atlocation_86cf7dde41 (AtLocation trash_receptacle office) (STV 1.0 0.9091)) +(: cnet_atlocation_3cddff8348 (AtLocation traveler bus_depot) (STV 1.0 0.9454)) +(: cnet_atlocation_9fa3bc6b96 (AtLocation traveller airport) (STV 1.0 0.9693)) +(: cnet_atlocation_9c79c60464 (AtLocation tree state_park) (STV 1.0 0.9524)) +(: cnet_atlocation_d6f67d0982 (AtLocation tree_frog forest) (STV 1.0 0.9454)) +(: cnet_atlocation_5962404efe (AtLocation tree countryside) (STV 1.0 0.9091)) +(: cnet_atlocation_0c460d62c5 (AtLocation tree forest) (STV 1.0 0.9339)) +(: cnet_atlocation_5a454b28a4 (AtLocation tree orchard) (STV 1.0 0.9091)) +(: cnet_atlocation_3e50fc91c4 (AtLocation tree top_of_mountain) (STV 1.0 0.9091)) +(: cnet_atlocation_6fabe5343c (AtLocation tree yard) (STV 1.0 0.9091)) +(: cnet_atlocation_6a46985909 (AtLocation tress forest) (STV 1.0 0.9454)) +(: cnet_atlocation_da59bbca90 (AtLocation triangle drafting) (STV 1.0 0.9091)) +(: cnet_atlocation_51994a308d (AtLocation triangle drafting_class) (STV 1.0 0.9091)) +(: cnet_atlocation_4eac78d06c (AtLocation triangle geometry) (STV 1.0 0.9339)) +(: cnet_atlocation_b9a3341dab (AtLocation triangle math) (STV 1.0 0.9524)) +(: cnet_atlocation_e0a4dcb396 (AtLocation triangle math_book) (STV 1.0 0.9454)) +(: cnet_atlocation_c90a7500d6 (AtLocation triangle math_class) (STV 1.0 0.9339)) +(: cnet_atlocation_9f7c62b68d (AtLocation triangle mathematic) (STV 1.0 0.9454)) +(: cnet_atlocation_fb86b8b7a6 (AtLocation triangle music_class) (STV 1.0 0.9091)) +(: cnet_atlocation_274fd98209 (AtLocation triangle music_shop) (STV 1.0 0.9091)) +(: cnet_atlocation_17b67bf7c4 (AtLocation triangle orchestra) (STV 1.0 0.9091)) +(: cnet_atlocation_0444de3fbc (AtLocation triangle trigonometry) (STV 1.0 0.9091)) +(: cnet_atlocation_a97bdc847c (AtLocation tripod camera_store) (STV 1.0 0.9091)) +(: cnet_atlocation_0a465ef284 (AtLocation troll bridge) (STV 1.0 0.9091)) +(: cnet_atlocation_e41a7cc5b0 (AtLocation trombone band) (STV 1.0 0.9091)) +(: cnet_atlocation_dc0ff543e9 (AtLocation trombone marching_band) (STV 1.0 0.9339)) +(: cnet_atlocation_bbb92b15bc (AtLocation trombone orchestra) (STV 1.0 0.9091)) +(: cnet_atlocation_1b520c5fba (AtLocation tropical_fish aquarium) (STV 1.0 0.9339)) +(: cnet_atlocation_028d7b2327 (AtLocation trouble roadblock) (STV 1.0 0.9091)) +(: cnet_atlocation_1658763113 (AtLocation trowel cabinet) (STV 1.0 0.9091)) +(: cnet_atlocation_80d515311a (AtLocation truck garage) (STV 1.0 0.9091)) +(: cnet_atlocation_a5adc2b742 (AtLocation truck freeway) (STV 1.0 0.9091)) +(: cnet_atlocation_f0ec167e0f (AtLocation trumpet band) (STV 1.0 0.9339)) +(: cnet_atlocation_1b4385db6f (AtLocation trumpet brass_band) (STV 1.0 0.9091)) +(: cnet_atlocation_42664ce723 (AtLocation trumpet trumpet_case) (STV 1.0 0.9339)) +(: cnet_atlocation_e2ace494e7 (AtLocation trunk attic) (STV 1.0 0.9339)) +(: cnet_atlocation_96a0834f1e (AtLocation trunk car) (STV 1.0 0.9339)) +(: cnet_atlocation_6feb00be71 (AtLocation truss_joist attic) (STV 1.0 0.9091)) +(: cnet_atlocation_ea340e79c7 (AtLocation tuba band) (STV 1.0 0.9091)) +(: cnet_atlocation_c09d31cf08 (AtLocation tube chemistry_lab) (STV 1.0 0.9091)) +(: cnet_atlocation_1fb184420a (AtLocation tube space_shuttle) (STV 1.0 0.9091)) +(: cnet_atlocation_9b264c5598 (AtLocation tuna_fish can) (STV 1.0 0.9091)) +(: cnet_atlocation_cede2e707d (AtLocation tuning_fork music_shop) (STV 1.0 0.9091)) +(: cnet_atlocation_d68d878621 (AtLocation tuning_fork music_store) (STV 1.0 0.9091)) +(: cnet_atlocation_cdcc66bba4 (AtLocation turkey oven) (STV 1.0 0.9454)) +(: cnet_atlocation_b6ad8c818b (AtLocation turnip farmer_s_market) (STV 1.0 0.9091)) +(: cnet_atlocation_ec4233908a (AtLocation turnstile amusement_park) (STV 1.0 0.9091)) +(: cnet_atlocation_88a3e122ee (AtLocation turnstile train_station) (STV 1.0 0.9339)) +(: cnet_atlocation_fc600210e9 (AtLocation tuxedo opera) (STV 1.0 0.9339)) +(: cnet_atlocation_fc63ec2a97 (AtLocation tv apartment) (STV 1.0 0.9091)) +(: cnet_atlocation_d34e572cdc (AtLocation tv appliance_store) (STV 1.0 0.9339)) +(: cnet_atlocation_4921f74529 (AtLocation tv arizona) (STV 1.0 0.9091)) +(: cnet_atlocation_a00c26a6f2 (AtLocation tv bedroom) (STV 1.0 0.9091)) +(: cnet_atlocation_5bd1c02220 (AtLocation tv family_room) (STV 1.0 0.9572)) +(: cnet_atlocation_6927048179 (AtLocation tv house) (STV 1.0 0.9659)) +(: cnet_atlocation_79d8ca8e5d (AtLocation tv livingroom) (STV 1.0 0.9454)) +(: cnet_atlocation_bcb2d0eebc (AtLocation tv neighbor_s_house) (STV 1.0 0.9091)) +(: cnet_atlocation_f17e9686a7 (AtLocation tv_set friend_s_house) (STV 1.0 0.9339)) +(: cnet_atlocation_3c834b354d (AtLocation tweeter speaker) (STV 1.0 0.9091)) +(: cnet_atlocation_489f47a87b (AtLocation two_path fork_in_road) (STV 1.0 0.9091)) +(: cnet_atlocation_3ab30a9098 (AtLocation two_road fork_in_road) (STV 1.0 0.9091)) +(: cnet_atlocation_c26acc086e (AtLocation typewriter desk) (STV 1.0 0.9524)) +(: cnet_atlocation_bd9fce63cd (AtLocation typewriter_key keyboard) (STV 1.0 0.9091)) +(: cnet_atlocation_073f8f1a47 (AtLocation typewriter_key typewriter) (STV 1.0 0.9572)) +(: cnet_atlocation_03a5eb057d (AtLocation typewriter_ribbon museum) (STV 1.0 0.9339)) +(: cnet_atlocation_d089711f4f (AtLocation ufo space) (STV 1.0 0.9091)) +(: cnet_atlocation_49b7501f08 (AtLocation umbrella beach) (STV 1.0 0.9091)) +(: cnet_atlocation_39559f4c99 (AtLocation umbrella car) (STV 1.0 0.9339)) +(: cnet_atlocation_6e247e6de0 (AtLocation umbrella closet) (STV 1.0 0.9524)) +(: cnet_atlocation_4da890ec91 (AtLocation umbrella umbrella_stand) (STV 1.0 0.9091)) +(: cnet_atlocation_7fc0551186 (AtLocation uncle aunt_house) (STV 1.0 0.9091)) +(: cnet_atlocation_c031d6774f (AtLocation uncle house) (STV 1.0 0.9339)) +(: cnet_atlocation_022ba0384b (AtLocation under_water bottom_of_sea) (STV 1.0 0.9091)) +(: cnet_atlocation_35d203ab7d (AtLocation underground_area subway) (STV 1.0 0.9339)) +(: cnet_atlocation_d7fe0937af (AtLocation underground_map library) (STV 1.0 0.9339)) +(: cnet_atlocation_ec363f453b (AtLocation underground_map london) (STV 1.0 0.9339)) +(: cnet_atlocation_e5aeea5862 (AtLocation underground_map subway) (STV 1.0 0.9339)) +(: cnet_atlocation_1c214b7b07 (AtLocation undergrowth forest) (STV 1.0 0.9339)) +(: cnet_atlocation_276511c668 (AtLocation understanding family) (STV 1.0 0.9091)) +(: cnet_atlocation_ac2d08d2cd (AtLocation underwear sock_drawer) (STV 1.0 0.9091)) +(: cnet_atlocation_a2f6ffb78c (AtLocation underwear suitcase) (STV 1.0 0.9091)) +(: cnet_atlocation_c1ce501452 (AtLocation uneducated_foreign_security_personnel airport) (STV 1.0 0.9091)) +(: cnet_atlocation_7928107373 (AtLocation unidentified_flying_object sky) (STV 1.0 0.9091)) +(: cnet_atlocation_bf8746d5fc (AtLocation union workplace) (STV 1.0 0.9339)) +(: cnet_atlocation_e2413d80d8 (AtLocation united_state america) (STV 1.0 0.9339)) +(: cnet_atlocation_d496ade4d4 (AtLocation united_state history_book) (STV 1.0 0.9091)) +(: cnet_atlocation_d4feda7d9f (AtLocation united_state map) (STV 1.0 0.9454)) +(: cnet_atlocation_dca218d1bf (AtLocation united_state north_america) (STV 1.0 0.9572)) +(: cnet_atlocation_97a764bc7a (AtLocation united_state northern_hemisphere) (STV 1.0 0.9091)) +(: cnet_atlocation_5c17139568 (AtLocation united_state western_hemisphere) (STV 1.0 0.9339)) +(: cnet_atlocation_6b638e81e7 (AtLocation upset_people iraq) (STV 1.0 0.9091)) +(: cnet_atlocation_2ce2cc9f08 (AtLocation urine toilet) (STV 1.0 0.9572)) +(: cnet_atlocation_8dfb399c99 (AtLocation used_condom floor) (STV 1.0 0.9091)) +(: cnet_atlocation_a3683e65d8 (AtLocation utensil dinner) (STV 1.0 0.9091)) +(: cnet_atlocation_bcd91b5c32 (AtLocation utility_case electrician_s_shop) (STV 1.0 0.9091)) +(: cnet_atlocation_458458c709 (AtLocation utility_case garage) (STV 1.0 0.9524)) +(: cnet_atlocation_1dc4f76252 (AtLocation vacuum closet) (STV 1.0 0.9524)) +(: cnet_atlocation_435ee51e7a (AtLocation vacuum space) (STV 1.0 0.9636)) +(: cnet_atlocation_fab6fe95ff (AtLocation vagina skirt) (STV 1.0 0.9091)) +(: cnet_atlocation_6898438145 (AtLocation valuable vault) (STV 1.0 0.9091)) +(: cnet_atlocation_c4d387670e (AtLocation variety_of_tool garage) (STV 1.0 0.9091)) +(: cnet_atlocation_ff74e1dc30 (AtLocation varnish desk) (STV 1.0 0.9091)) +(: cnet_atlocation_a53d4d7f12 (AtLocation vase shelf) (STV 1.0 0.9091)) +(: cnet_atlocation_37173cc575 (AtLocation vase table) (STV 1.0 0.9572)) +(: cnet_atlocation_127d52b6a8 (AtLocation vase_of_flower table) (STV 1.0 0.9454)) +(: cnet_atlocation_a26d0327e0 (AtLocation vault bank) (STV 1.0 0.9339)) +(: cnet_atlocation_21c34461aa (AtLocation veal meat_section) (STV 1.0 0.9091)) +(: cnet_atlocation_b5aed3dc96 (AtLocation vegemite jar) (STV 1.0 0.9091)) +(: cnet_atlocation_8bdac373af (AtLocation vegetable_garden back_yard) (STV 1.0 0.9339)) +(: cnet_atlocation_9e45a16b17 (AtLocation vegetable_garden backyard) (STV 1.0 0.9339)) +(: cnet_atlocation_68d8ebdcd7 (AtLocation vegetable market) (STV 1.0 0.9091)) +(: cnet_atlocation_64207ae713 (AtLocation vegetable supermarket) (STV 1.0 0.9339)) +(: cnet_atlocation_87890dbdf1 (AtLocation vegetarian_restaurant most_city) (STV 1.0 0.9091)) +(: cnet_atlocation_ad59afc628 (AtLocation veggie_dip supermarket) (STV 1.0 0.9091)) +(: cnet_atlocation_ae8da61317 (AtLocation vehicle freeway) (STV 1.0 0.9091)) +(: cnet_atlocation_a8cc51fd1a (AtLocation vehicle street) (STV 1.0 0.9454)) +(: cnet_atlocation_9650de6e1e (AtLocation veil wedding) (STV 1.0 0.9091)) +(: cnet_atlocation_58bdd3128b (AtLocation velvet clothe) (STV 1.0 0.9091)) +(: cnet_atlocation_cc2b49489a (AtLocation velvet fabric_store) (STV 1.0 0.9339)) +(: cnet_atlocation_919dd15564 (AtLocation vending_machine rest_area) (STV 1.0 0.9339)) +(: cnet_atlocation_c60413bd24 (AtLocation vending_stand city) (STV 1.0 0.9339)) +(: cnet_atlocation_2417d708e3 (AtLocation vending_stand mall) (STV 1.0 0.9091)) +(: cnet_atlocation_f368819471 (AtLocation vendor farmer_s_market) (STV 1.0 0.9091)) +(: cnet_atlocation_0289cdf8a5 (AtLocation ventilation_system building) (STV 1.0 0.9091)) +(: cnet_atlocation_982a39a7fc (AtLocation ventilation_system house) (STV 1.0 0.9091)) +(: cnet_atlocation_b85b55306a (AtLocation ventilation_system large_building) (STV 1.0 0.9454)) +(: cnet_atlocation_382ddad714 (AtLocation verb instruction_for_assembly) (STV 1.0 0.9454)) +(: cnet_atlocation_a1bf3fd029 (AtLocation verb sentence) (STV 1.0 0.9572)) +(: cnet_atlocation_166df820e0 (AtLocation vessel ocean) (STV 1.0 0.9091)) +(: cnet_atlocation_be2842eff9 (AtLocation vicar church) (STV 1.0 0.9339)) +(: cnet_atlocation_1d6dde12ef (AtLocation video_game friend_s_house) (STV 1.0 0.9091)) +(: cnet_atlocation_69d1e5bd2a (AtLocation video_tape shelf) (STV 1.0 0.9091)) +(: cnet_atlocation_f291898625 (AtLocation video_tape cabinet) (STV 1.0 0.9091)) +(: cnet_atlocation_4a596d2cd1 (AtLocation video_tape library) (STV 1.0 0.9091)) +(: cnet_atlocation_8a2a090a6b (AtLocation village africa) (STV 1.0 0.9454)) +(: cnet_atlocation_2203f8e93a (AtLocation village countryside) (STV 1.0 0.9339)) +(: cnet_atlocation_f4706d0c9c (AtLocation vine jungle) (STV 1.0 0.9091)) +(: cnet_atlocation_ce9853f780 (AtLocation vintner vineyard) (STV 1.0 0.9091)) +(: cnet_atlocation_2b11eaf81c (AtLocation vintner winery) (STV 1.0 0.9091)) +(: cnet_atlocation_4a9e2e287a (AtLocation vinyl pant) (STV 1.0 0.9091)) +(: cnet_atlocation_53ca9bdcc3 (AtLocation vinyl store) (STV 1.0 0.9091)) +(: cnet_atlocation_83aa0476d0 (AtLocation viola orchestra) (STV 1.0 0.9339)) +(: cnet_atlocation_7a08691ccc (AtLocation violence hockey_game) (STV 1.0 0.9091)) +(: cnet_atlocation_cd9d53318d (AtLocation violence war) (STV 1.0 0.9659)) +(: cnet_atlocation_c7fca8fb41 (AtLocation violent_fan soccer_game) (STV 1.0 0.9091)) +(: cnet_atlocation_d8a67acd23 (AtLocation violin orchestra) (STV 1.0 0.9339)) +(: cnet_atlocation_3a9c30dd39 (AtLocation violin violin_case) (STV 1.0 0.9091)) +(: cnet_atlocation_b17e352095 (AtLocation virus computer) (STV 1.0 0.9091)) +(: cnet_atlocation_f6de4a5001 (AtLocation vodka bar) (STV 1.0 0.9454)) +(: cnet_atlocation_6252a8bcb2 (AtLocation voice radio) (STV 1.0 0.9339)) +(: cnet_atlocation_d784956c86 (AtLocation voice song) (STV 1.0 0.9091)) +(: cnet_atlocation_b3701febc9 (AtLocation volleyball beach) (STV 1.0 0.9339)) +(: cnet_atlocation_57523aee07 (AtLocation volume library) (STV 1.0 0.9636)) +(: cnet_atlocation_e99ccc0d31 (AtLocation volume set_of_book) (STV 1.0 0.9091)) +(: cnet_atlocation_d33f469881 (AtLocation volume set_of_encyclopedia) (STV 1.0 0.9091)) +(: cnet_atlocation_0010b6087d (AtLocation wadded_up_piece_of_paper trash) (STV 1.0 0.9091)) +(: cnet_atlocation_8b855867bd (AtLocation wagon garage) (STV 1.0 0.9091)) +(: cnet_atlocation_3f5617bd19 (AtLocation wagon toy_store) (STV 1.0 0.9339)) +(: cnet_atlocation_27a4608d29 (AtLocation waiter cafe) (STV 1.0 0.9091)) +(: cnet_atlocation_bb7e42be70 (AtLocation waiter resturant) (STV 1.0 0.9339)) +(: cnet_atlocation_e6475003c6 (AtLocation waiting_area airport) (STV 1.0 0.9091)) +(: cnet_atlocation_16b1f19e7b (AtLocation waiting_passenger bus_depot) (STV 1.0 0.9091)) +(: cnet_atlocation_8518c678ff (AtLocation waiting_room airport) (STV 1.0 0.9091)) +(: cnet_atlocation_68baa9b531 (AtLocation waiting_room dentist) (STV 1.0 0.9091)) +(: cnet_atlocation_9527036280 (AtLocation waiting_room doctor_s_office) (STV 1.0 0.9339)) +(: cnet_atlocation_51ef3a9ecd (AtLocation waiting_room doctor) (STV 1.0 0.9339)) +(: cnet_atlocation_b7126a8963 (AtLocation waiting_room doctor_office) (STV 1.0 0.9454)) +(: cnet_atlocation_b32c38e397 (AtLocation waiting_room hospital) (STV 1.0 0.9572)) +(: cnet_atlocation_6b830c66bf (AtLocation waitress bar) (STV 1.0 0.9091)) +(: cnet_atlocation_f53c215864 (AtLocation waitress resturant) (STV 1.0 0.9454)) +(: cnet_atlocation_7dee616574 (AtLocation walk closet_in_house) (STV 1.0 0.9091)) +(: cnet_atlocation_973673b1e1 (AtLocation walk closet_in_mansion) (STV 1.0 0.9454)) +(: cnet_atlocation_1938c4cc19 (AtLocation walk closet_in_master_bedroom) (STV 1.0 0.9091)) +(: cnet_atlocation_db493d3921 (AtLocation walkway sporting_event) (STV 1.0 0.9091)) +(: cnet_atlocation_4c3234b7b7 (AtLocation wall building) (STV 1.0 0.9339)) +(: cnet_atlocation_1fabd690c4 (AtLocation wall house) (STV 1.0 0.9524)) +(: cnet_atlocation_68bb286a46 (AtLocation wall room) (STV 1.0 0.9091)) +(: cnet_atlocation_63836513f7 (AtLocation wallet pocket) (STV 1.0 0.9608)) +(: cnet_atlocation_9f600d0d34 (AtLocation wallet purse) (STV 1.0 0.9636)) +(: cnet_atlocation_cc3fd6324e (AtLocation wallpaper desktop) (STV 1.0 0.9091)) +(: cnet_atlocation_111ee4ea19 (AtLocation wall corner) (STV 1.0 0.9091)) +(: cnet_atlocation_eae0b9e26f (AtLocation wardrobe bedroom) (STV 1.0 0.9572)) +(: cnet_atlocation_bbffd45583 (AtLocation warm_welcome relative_house) (STV 1.0 0.9091)) +(: cnet_atlocation_3877b34f38 (AtLocation wash_and_wear_fabric department_store) (STV 1.0 0.9091)) +(: cnet_atlocation_2dd177c22e (AtLocation wash_and_wear_fabric own_closet) (STV 1.0 0.9091)) +(: cnet_atlocation_d29865c235 (AtLocation washcloth linen_closet) (STV 1.0 0.9339)) +(: cnet_atlocation_de056d50dd (AtLocation washer jar) (STV 1.0 0.9091)) +(: cnet_atlocation_8469c74e80 (AtLocation washing_machine cellar) (STV 1.0 0.9091)) +(: cnet_atlocation_43563bf9c6 (AtLocation washing_machine house) (STV 1.0 0.9091)) +(: cnet_atlocation_e19858bf50 (AtLocation washing_machine laundromat) (STV 1.0 0.9091)) +(: cnet_atlocation_7e7048ac92 (AtLocation washing_maching_and_dryer basement) (STV 1.0 0.9091)) +(: cnet_atlocation_bda1d894ae (AtLocation washroom park) (STV 1.0 0.9091)) +(: cnet_atlocation_7a4b0aa867 (AtLocation washroom rest_area) (STV 1.0 0.9454)) +(: cnet_atlocation_2e6c89e908 (AtLocation waste_paper trash) (STV 1.0 0.9091)) +(: cnet_atlocation_72d28fd253 (AtLocation watch watch_store) (STV 1.0 0.9091)) +(: cnet_atlocation_73fa6c43f8 (AtLocation water beer) (STV 1.0 0.9339)) +(: cnet_atlocation_5c4d7037d0 (AtLocation water bottle) (STV 1.0 0.9524)) +(: cnet_atlocation_eb10f4bb40 (AtLocation water bridge) (STV 1.0 0.9091)) +(: cnet_atlocation_3230ab07ce (AtLocation water brook) (STV 1.0 0.9091)) +(: cnet_atlocation_db2e8d607b (AtLocation water cactus) (STV 1.0 0.9091)) +(: cnet_atlocation_cb0a386ae2 (AtLocation water dam) (STV 1.0 0.9339)) +(: cnet_atlocation_7f4a7d9056 (AtLocation water enema) (STV 1.0 0.9091)) +(: cnet_atlocation_b92a639826 (AtLocation water glass) (STV 1.0 0.9524)) +(: cnet_atlocation_b4c90d862c (AtLocation water jar) (STV 1.0 0.9454)) +(: cnet_atlocation_9f0feb937c (AtLocation water lake) (STV 1.0 0.9800)) +(: cnet_atlocation_9c8c8757f8 (AtLocation water ocean) (STV 1.0 0.9572)) +(: cnet_atlocation_b9e1980471 (AtLocation water pee) (STV 1.0 0.9091)) +(: cnet_atlocation_c34ec62c00 (AtLocation water pool) (STV 1.0 0.9730)) +(: cnet_atlocation_cb7aa0c19e (AtLocation water puddle) (STV 1.0 0.9524)) +(: cnet_atlocation_49c5b9808f (AtLocation water rain) (STV 1.0 0.9454)) +(: cnet_atlocation_df20d9c4cd (AtLocation water river) (STV 1.0 0.9740)) +(: cnet_atlocation_38918f7c8a (AtLocation water sewer) (STV 1.0 0.9091)) +(: cnet_atlocation_a4e6d10a3c (AtLocation water sink) (STV 1.0 0.9572)) +(: cnet_atlocation_2cb28d3066 (AtLocation water soup) (STV 1.0 0.9454)) +(: cnet_atlocation_71a31cd621 (AtLocation water steam) (STV 1.0 0.9091)) +(: cnet_atlocation_be33ca920a (AtLocation water stream) (STV 1.0 0.9454)) +(: cnet_atlocation_26c342d55a (AtLocation water surface_of_earth) (STV 1.0 0.9608)) +(: cnet_atlocation_89216f4d69 (AtLocation water swamp) (STV 1.0 0.9091)) +(: cnet_atlocation_da5857de98 (AtLocation water toilet) (STV 1.0 0.9454)) +(: cnet_atlocation_04e6c98b00 (AtLocation water water_cooler) (STV 1.0 0.9091)) +(: cnet_atlocation_3ded31873e (AtLocation water waterfall) (STV 1.0 0.9707)) +(: cnet_atlocation_090f7eae76 (AtLocation water_fountain park) (STV 1.0 0.9339)) +(: cnet_atlocation_3fd0760553 (AtLocation water_heater basement) (STV 1.0 0.9524)) +(: cnet_atlocation_f95e0b85a8 (AtLocation water_heater cellar) (STV 1.0 0.9339)) +(: cnet_atlocation_efaf8de0da (AtLocation water_skiy boat) (STV 1.0 0.9091)) +(: cnet_atlocation_ef35f90b0e (AtLocation water_spout sink) (STV 1.0 0.9339)) +(: cnet_atlocation_faf01f98d0 (AtLocation wave ocean) (STV 1.0 0.9339)) +(: cnet_atlocation_de68cabba0 (AtLocation waxed_dental_floss bathroom) (STV 1.0 0.9091)) +(: cnet_atlocation_4338168ab3 (AtLocation waxed_dental_floss medicine_cabinet) (STV 1.0 0.9339)) +(: cnet_atlocation_aae806e874 (AtLocation wealth_of_knowledge library) (STV 1.0 0.9091)) +(: cnet_atlocation_fdb2811ba4 (AtLocation weapon police_station) (STV 1.0 0.9339)) +(: cnet_atlocation_c05a0525db (AtLocation weapon war) (STV 1.0 0.9636)) +(: cnet_atlocation_62e02d2460 (AtLocation weasel backyard) (STV 1.0 0.9091)) +(: cnet_atlocation_8b295bdc1a (AtLocation weasel barn) (STV 1.0 0.9091)) +(: cnet_atlocation_73a1772488 (AtLocation weasel chicken_coop) (STV 1.0 0.9608)) +(: cnet_atlocation_4853a6a091 (AtLocation weasel den) (STV 1.0 0.9339)) +(: cnet_atlocation_bbaa8d48a3 (AtLocation weasel forrest) (STV 1.0 0.9339)) +(: cnet_atlocation_0f205250d4 (AtLocation weasel hen_house) (STV 1.0 0.9091)) +(: cnet_atlocation_9ce42e2934 (AtLocation weasel henhouse) (STV 1.0 0.9524)) +(: cnet_atlocation_3e26736992 (AtLocation weasel hole_in_ground) (STV 1.0 0.9091)) +(: cnet_atlocation_50585442db (AtLocation weasel hollow_log) (STV 1.0 0.9091)) +(: cnet_atlocation_ae8235b606 (AtLocation weasel law_office) (STV 1.0 0.9091)) +(: cnet_atlocation_b33b1fa53d (AtLocation weasel zoo) (STV 1.0 0.9677)) +(: cnet_atlocation_8cf4f6997d (AtLocation weather_map newspaper) (STV 1.0 0.9091)) +(: cnet_atlocation_1b505a024d (AtLocation weather_report newspaper) (STV 1.0 0.9454)) +(: cnet_atlocation_2c477957ff (AtLocation web_site internet) (STV 1.0 0.9091)) +(: cnet_atlocation_9a3a9d0421 (AtLocation website internet) (STV 1.0 0.9091)) +(: cnet_atlocation_f0dfcee1cc (AtLocation wedding church) (STV 1.0 0.9091)) +(: cnet_atlocation_24cc45027f (AtLocation wedding_cake wedding) (STV 1.0 0.9339)) +(: cnet_atlocation_599bc4d446 (AtLocation wedding_chapel church) (STV 1.0 0.9091)) +(: cnet_atlocation_f7a7ab0fe0 (AtLocation wedding_chapel nevada) (STV 1.0 0.9339)) +(: cnet_atlocation_67cd75065f (AtLocation wedding_gown wedding) (STV 1.0 0.9091)) +(: cnet_atlocation_c4093bf35c (AtLocation wedding_guest friend_s_wedding) (STV 1.0 0.9091)) +(: cnet_atlocation_16467c1eb0 (AtLocation wedding_ring church) (STV 1.0 0.9091)) +(: cnet_atlocation_91675e7d57 (AtLocation wedding_ring friend_s_wedding) (STV 1.0 0.9091)) +(: cnet_atlocation_93dceeaa07 (AtLocation weed field) (STV 1.0 0.9091)) +(: cnet_atlocation_9f41903c25 (AtLocation weed lawn) (STV 1.0 0.9091)) +(: cnet_atlocation_2602f3fda8 (AtLocation weight_bench gym) (STV 1.0 0.9339)) +(: cnet_atlocation_fe6d49327d (AtLocation weight_lifter gym) (STV 1.0 0.9339)) +(: cnet_atlocation_dff044606e (AtLocation welcome_mat front_door) (STV 1.0 0.9572)) +(: cnet_atlocation_8299b2d0ee (AtLocation welcome_mat porch) (STV 1.0 0.9091)) +(: cnet_atlocation_87aaf542e7 (AtLocation westminster_abbey london) (STV 1.0 0.9405)) +(: cnet_atlocation_87425dd7bc (AtLocation wet water) (STV 1.0 0.9339)) +(: cnet_atlocation_e9d0a9791c (AtLocation whale ocean) (STV 1.0 0.9339)) +(: cnet_atlocation_45a6b5628b (AtLocation wheat field) (STV 1.0 0.9572)) +(: cnet_atlocation_bd88427ca6 (AtLocation wheel bicycle_shop) (STV 1.0 0.9091)) +(: cnet_atlocation_55bbdec551 (AtLocation whiskey liquor_store) (STV 1.0 0.9091)) +(: cnet_atlocation_ca688f59cf (AtLocation whispering_people library) (STV 1.0 0.9091)) +(: cnet_atlocation_adb14d4504 (AtLocation white_house washington_d_c) (STV 1.0 0.9636)) +(: cnet_atlocation_868e8aa408 (AtLocation white_house washington_dc) (STV 1.0 0.9339)) +(: cnet_atlocation_1b6af79d30 (AtLocation white_out desk) (STV 1.0 0.9091)) +(: cnet_atlocation_5df7f55519 (AtLocation white_overall doctor) (STV 1.0 0.9091)) +(: cnet_atlocation_688d4ffec3 (AtLocation whore motel) (STV 1.0 0.9091)) +(: cnet_atlocation_bb26f04db4 (AtLocation wicker_furniture porch) (STV 1.0 0.9091)) +(: cnet_atlocation_510984593c (AtLocation wiener_dog ballpark) (STV 1.0 0.9091)) +(: cnet_atlocation_091fa5d014 (AtLocation wiener_dog cage) (STV 1.0 0.9091)) +(: cnet_atlocation_80537d4a9e (AtLocation wiener_dog circus) (STV 1.0 0.9339)) +(: cnet_atlocation_a21dfa4d38 (AtLocation wiener_dog city) (STV 1.0 0.9091)) +(: cnet_atlocation_1be0b5e3e7 (AtLocation wiener_dog dog_house) (STV 1.0 0.9339)) +(: cnet_atlocation_4778fc0b5f (AtLocation wiener_dog dog_kennel) (STV 1.0 0.9091)) +(: cnet_atlocation_ddf697576a (AtLocation wiener_dog dog_pound) (STV 1.0 0.9339)) +(: cnet_atlocation_216bd5e8c4 (AtLocation wiener_dog germany) (STV 1.0 0.9572)) +(: cnet_atlocation_b098050365 (AtLocation wiener_dog grocery_store) (STV 1.0 0.9339)) +(: cnet_atlocation_fc09ad33b8 (AtLocation wiener_dog hot_dog_bun) (STV 1.0 0.9339)) +(: cnet_atlocation_0f7e78c83c (AtLocation wiener_dog hot_dog_roll) (STV 1.0 0.9524)) +(: cnet_atlocation_39093597b9 (AtLocation wiener_dog lap) (STV 1.0 0.9091)) +(: cnet_atlocation_5977bd6f28 (AtLocation wiener_dog pet_shop) (STV 1.0 0.9524)) +(: cnet_atlocation_9d6746e09f (AtLocation wiener_dog refrigerator) (STV 1.0 0.9339)) +(: cnet_atlocation_455890e595 (AtLocation wiener_dog shop) (STV 1.0 0.9091)) +(: cnet_atlocation_ae4f8e35a3 (AtLocation wiener_dog sweater) (STV 1.0 0.9091)) +(: cnet_atlocation_da4a503a3e (AtLocation wiener_dog vet_s_office) (STV 1.0 0.9339)) +(: cnet_atlocation_9ca52a0e55 (AtLocation wiener_dog yard) (STV 1.0 0.9608)) +(: cnet_atlocation_adcdebae68 (AtLocation wiener_dog_in hot_dog_bun) (STV 1.0 0.9454)) +(: cnet_atlocation_2809987dd7 (AtLocation wild_animal zoo) (STV 1.0 0.9339)) +(: cnet_atlocation_4d49c574e7 (AtLocation wild_flower field) (STV 1.0 0.9091)) +(: cnet_atlocation_2422f285da (AtLocation wildflower countryside) (STV 1.0 0.9091)) +(: cnet_atlocation_b78ea87733 (AtLocation wind sea) (STV 1.0 0.9091)) +(: cnet_atlocation_30f447e228 (AtLocation window building) (STV 1.0 0.9524)) +(: cnet_atlocation_3b32a61d47 (AtLocation window house) (STV 1.0 0.9524)) +(: cnet_atlocation_6a29d10ab9 (AtLocation window space_shuttle) (STV 1.0 0.9091)) +(: cnet_atlocation_1ac53c4051 (AtLocation window wall) (STV 1.0 0.9091)) +(: cnet_atlocation_19bd871b74 (AtLocation wine bar) (STV 1.0 0.9091)) +(: cnet_atlocation_327174a998 (AtLocation wine wine_cellar) (STV 1.0 0.9091)) +(: cnet_atlocation_4c973cdc5d (AtLocation wine winery) (STV 1.0 0.9091)) +(: cnet_atlocation_34dbc24e9c (AtLocation wine_bottle cellar) (STV 1.0 0.9091)) +(: cnet_atlocation_677998d7bd (AtLocation wine_cellar basement) (STV 1.0 0.9091)) +(: cnet_atlocation_c6688d939c (AtLocation wine_glass dinner) (STV 1.0 0.9091)) +(: cnet_atlocation_8206dad3fd (AtLocation wine_list restaurant) (STV 1.0 0.9636)) +(: cnet_atlocation_9603225271 (AtLocation wine_list resturant) (STV 1.0 0.9339)) +(: cnet_atlocation_1a3b96f457 (AtLocation wing large_building) (STV 1.0 0.9091)) +(: cnet_atlocation_ae2fc5dcad (AtLocation wing mansion) (STV 1.0 0.9091)) +(: cnet_atlocation_212c869296 (AtLocation winter_coat closet) (STV 1.0 0.9091)) +(: cnet_atlocation_d2f011ef4a (AtLocation wire space_shuttle) (STV 1.0 0.9339)) +(: cnet_atlocation_d29738f259 (AtLocation wood boat) (STV 1.0 0.9339)) +(: cnet_atlocation_fe086e6d3b (AtLocation wood hardware_store) (STV 1.0 0.9339)) +(: cnet_atlocation_12d1ff32ff (AtLocation wood tree) (STV 1.0 0.9339)) +(: cnet_atlocation_b76a5c20d7 (AtLocation wood country) (STV 1.0 0.9339)) +(: cnet_atlocation_5adf7ee92a (AtLocation wood rural_area) (STV 1.0 0.9454)) +(: cnet_atlocation_7f2f625c65 (AtLocation woodwind_instrument music_store) (STV 1.0 0.9091)) +(: cnet_atlocation_402d39d2ac (AtLocation woofer speaker) (STV 1.0 0.9091)) +(: cnet_atlocation_164f2f7012 (AtLocation wool fabric_store) (STV 1.0 0.9091)) +(: cnet_atlocation_f834cbe914 (AtLocation wool sweater) (STV 1.0 0.9091)) +(: cnet_atlocation_5c40008d46 (AtLocation woolen_fabric sweater) (STV 1.0 0.9091)) +(: cnet_atlocation_1748ec37e3 (AtLocation word_definition dictionary) (STV 1.0 0.9454)) +(: cnet_atlocation_dd48cee690 (AtLocation word book) (STV 1.0 0.9454)) +(: cnet_atlocation_4690926ee9 (AtLocation word newspaper) (STV 1.0 0.9091)) +(: cnet_atlocation_4233c0d0e8 (AtLocation word sentence) (STV 1.0 0.9339)) +(: cnet_atlocation_dfc81ab3aa (AtLocation work desk) (STV 1.0 0.9524)) +(: cnet_atlocation_f9a5c35c76 (AtLocation workbench garage) (STV 1.0 0.9091)) +(: cnet_atlocation_d46db2e5c7 (AtLocation worker work) (STV 1.0 0.9091)) +(: cnet_atlocation_0cbdbbb1b6 (AtLocation work_of_art art_show) (STV 1.0 0.9091)) +(: cnet_atlocation_354a7e6ebe (AtLocation world galaxy) (STV 1.0 0.9339)) +(: cnet_atlocation_bcfe4d6414 (AtLocation world solar_system) (STV 1.0 0.9091)) +(: cnet_atlocation_1c845f6518 (AtLocation world space) (STV 1.0 0.9339)) +(: cnet_atlocation_a23c735903 (AtLocation world universe) (STV 1.0 0.9091)) +(: cnet_atlocation_d8613002ee (AtLocation worm ground) (STV 1.0 0.9091)) +(: cnet_atlocation_b643f1b1c2 (AtLocation worshiper church) (STV 1.0 0.9091)) +(: cnet_atlocation_6b3ad31068 (AtLocation worshiper synagogue) (STV 1.0 0.9091)) +(: cnet_atlocation_e47277dd5d (AtLocation worshipper church) (STV 1.0 0.9524)) +(: cnet_atlocation_b4310edf6f (AtLocation wound body) (STV 1.0 0.9091)) +(: cnet_atlocation_352aec4770 (AtLocation wound hospital) (STV 1.0 0.9524)) +(: cnet_atlocation_a06326eca1 (AtLocation wound patient) (STV 1.0 0.9091)) +(: cnet_atlocation_31223b8ef0 (AtLocation wound war) (STV 1.0 0.9091)) +(: cnet_atlocation_0b1a45a805 (AtLocation wrapper waste_bin) (STV 1.0 0.9454)) +(: cnet_atlocation_0e4dca5077 (AtLocation wrench repair_shop) (STV 1.0 0.9091)) +(: cnet_atlocation_e5c1245ab0 (AtLocation wrinkle finger) (STV 1.0 0.9091)) +(: cnet_atlocation_7c0f971b08 (AtLocation wrist_rest desk) (STV 1.0 0.9091)) +(: cnet_atlocation_9fe71eb80e (AtLocation wristwatch jewelry_store) (STV 1.0 0.9091)) +(: cnet_atlocation_fad5832618 (AtLocation writing_instrument hand) (STV 1.0 0.9091)) +(: cnet_atlocation_91507f8084 (AtLocation xylophone band) (STV 1.0 0.9091)) +(: cnet_atlocation_32324075fa (AtLocation xylophone percussion_section) (STV 1.0 0.9339)) +(: cnet_atlocation_d021a7f5b4 (AtLocation yard city) (STV 1.0 0.9454)) +(: cnet_atlocation_5e6445a03a (AtLocation yard neighborhood) (STV 1.0 0.9091)) +(: cnet_atlocation_8cc385e344 (AtLocation yard property) (STV 1.0 0.9091)) +(: cnet_atlocation_ceb3021101 (AtLocation young_men fraternity_house) (STV 1.0 0.9091)) +(: cnet_atlocation_c969154d55 (AtLocation yoyo toy_shop) (STV 1.0 0.9091)) +(: cnet_atlocation_ca2c79fbbb (AtLocation yoyo toystore_or_craftstore) (STV 1.0 0.9091)) +(: cnet_atlocation_b7e5e7a674 (AtLocation zebra zoo) (STV 1.0 0.9524)) +(: cnet_atlocation_7b278762eb (AtLocation zombie movie) (STV 1.0 0.9339)) +(: cnet_atlocation_37e870a356 (AtLocation zoo_keeper zoo) (STV 1.0 0.9339)) +(: cnet_atlocation_52ef1a7868 (AtLocation zucchini farmer_s_market) (STV 1.0 0.9091)) +(: cnet_capableof_45fe6fc74d (CapableOf a container) (STV 1.0 0.9524)) +(: cnet_capableof_c4b0a89a5d (CapableOf abortion kill_fetus) (STV 1.0 0.9339)) +(: cnet_capableof_8e8cf4f1a8 (CapableOf accident cause_injury) (STV 1.0 0.9091)) +(: cnet_capableof_9a32dd4e3c (CapableOf accident happen_to) (STV 1.0 0.9339)) +(: cnet_capableof_7f7e33c034 (CapableOf accident happen_to_anybody) (STV 1.0 0.9091)) +(: cnet_capableof_57101d83fe (CapableOf accident slow_down_traffic) (STV 1.0 0.9339)) +(: cnet_capableof_1b54c96957 (CapableOf accident slow_traffic) (STV 1.0 0.9454)) +(: cnet_capableof_4c71a222a5 (CapableOf accident happen_anytime) (STV 1.0 0.9454)) +(: cnet_capableof_55f9951d09 (CapableOf accountant cook_book) (STV 1.0 0.9091)) +(: cnet_capableof_54e4d1c5c6 (CapableOf accused lie_to_court) (STV 1.0 0.9339)) +(: cnet_capableof_d84ae4c06d (CapableOf acid burn_skin) (STV 1.0 0.9454)) +(: cnet_capableof_f615ab7def (CapableOf actor act_badly) (STV 1.0 0.9339)) +(: cnet_capableof_7fe0386efd (CapableOf actor act_scene_in_play) (STV 1.0 0.9091)) +(: cnet_capableof_1a87e888bd (CapableOf actor appear_in_movie) (STV 1.0 0.9339)) +(: cnet_capableof_a770e4b2c8 (CapableOf actor pretend) (STV 1.0 0.9091)) +(: cnet_capableof_12cd197139 (CapableOf actor star_in_film) (STV 1.0 0.9524)) +(: cnet_capableof_2417e92e72 (CapableOf actor star_in_movie) (STV 1.0 0.9572)) +(: cnet_capableof_8962270352 (CapableOf actor act_in_movie) (STV 1.0 0.9091)) +(: cnet_capableof_9d6704a209 (CapableOf actor present_performance) (STV 1.0 0.9091)) +(: cnet_capableof_e62f70e079 (CapableOf actress star_in_movie) (STV 1.0 0.9339)) +(: cnet_capableof_ad19f997c5 (CapableOf actress star_in_shakespeare_play) (STV 1.0 0.9091)) +(: cnet_capableof_7b0aa9813d (CapableOf actress star_in_movy) (STV 1.0 0.9091)) +(: cnet_capableof_c3ad6d0584 (CapableOf addict need_drug) (STV 1.0 0.9091)) +(: cnet_capableof_61c3a2856a (CapableOf adding_water thin_liquid) (STV 1.0 0.9091)) +(: cnet_capableof_8ee2390588 (CapableOf adding_water thin_other_liquid) (STV 1.0 0.9091)) +(: cnet_capableof_2c137776db (CapableOf adult dress_herself) (STV 1.0 0.9339)) +(: cnet_capableof_b8a2ba34a1 (CapableOf adult drink_beer) (STV 1.0 0.9091)) +(: cnet_capableof_1724016249 (CapableOf adult help_child) (STV 1.0 0.9454)) +(: cnet_capableof_ab8aaa4a84 (CapableOf adult sign_contract) (STV 1.0 0.9339)) +(: cnet_capableof_23d28ccd14 (CapableOf adult work) (STV 1.0 0.9091)) +(: cnet_capableof_70c01ad6f4 (CapableOf adult count) (STV 1.0 0.9091)) +(: cnet_capableof_39ac13fa86 (CapableOf adult dress_themselve) (STV 1.0 0.9339)) +(: cnet_capableof_d752b7228d (CapableOf adult eat_sushi) (STV 1.0 0.9091)) +(: cnet_capableof_7dc5e08839 (CapableOf advertisement annoy) (STV 1.0 0.9091)) +(: cnet_capableof_c7cdbacf83 (CapableOf advertiser market_product) (STV 1.0 0.9091)) +(: cnet_capableof_71966d9951 (CapableOf advertising_agency market_product) (STV 1.0 0.9454)) +(: cnet_capableof_a054d77749 (CapableOf aeroplane land_on_runway) (STV 1.0 0.9091)) +(: cnet_capableof_03de4774a6 (CapableOf agoraphobe fear_open_space) (STV 1.0 0.9091)) +(: cnet_capableof_71b277187a (CapableOf agoraphobic fear_open_space) (STV 1.0 0.9091)) +(: cnet_capableof_d09e565d87 (CapableOf airplane arrive_at_airport) (STV 1.0 0.9454)) +(: cnet_capableof_46a75c8e83 (CapableOf airplane circle_airport) (STV 1.0 0.9091)) +(: cnet_capableof_af78445177 (CapableOf airplane crash) (STV 1.0 0.9091)) +(: cnet_capableof_b08d8d37ae (CapableOf alcohol burn) (STV 1.0 0.9091)) +(: cnet_capableof_e5dfcea0ec (CapableOf alcohol cloud_judgement) (STV 1.0 0.9804)) +(: cnet_capableof_3d4d4e973b (CapableOf alcohol cloud_mind) (STV 1.0 0.9091)) +(: cnet_capableof_bc3f5b4ece (CapableOf alcohol destroy_friendship) (STV 1.0 0.9091)) +(: cnet_capableof_16ff35c7d1 (CapableOf alcohol lead_to_drunken_behavior) (STV 1.0 0.9091)) +(: cnet_capableof_5482fc5c71 (CapableOf alcohol slow_thinking) (STV 1.0 0.9339)) +(: cnet_capableof_ab2fc8d1eb (CapableOf alcoholic bottom_out) (STV 1.0 0.9572)) +(: cnet_capableof_fa03b6a427 (CapableOf alcoholic drink_lot_of_booze) (STV 1.0 0.9091)) +(: cnet_capableof_4a8721e687 (CapableOf alienate mean_to_estrange_or_make_hostile) (STV 1.0 0.9091)) +(: cnet_capableof_d6a4e97242 (CapableOf all_effort amount_to_nothing) (STV 1.0 0.9091)) +(: cnet_capableof_3c6a498a1a (CapableOf all_living_thing grow) (STV 1.0 0.9339)) +(: cnet_capableof_c09b4826c7 (CapableOf american speak_english) (STV 1.0 0.9091)) +(: cnet_capableof_f1cdbbf318 (CapableOf amish raise_barn) (STV 1.0 0.9091)) +(: cnet_capableof_381f3534d3 (CapableOf android dream_of_electric_sheep) (STV 1.0 0.9091)) +(: cnet_capableof_3bb220274a (CapableOf angry_person storm_out_of_room) (STV 1.0 0.9091)) +(: cnet_capableof_d06a8b4f19 (CapableOf animal eating) (STV 1.0 0.9454)) +(: cnet_capableof_53e1b65dd7 (CapableOf animal feel_pain) (STV 1.0 0.9091)) +(: cnet_capableof_53ec79430c (CapableOf animal live) (STV 1.0 0.9091)) +(: cnet_capableof_3536d0684d (CapableOf animal live_long) (STV 1.0 0.9091)) +(: cnet_capableof_02a6802a09 (CapableOf animal move_itself_about) (STV 1.0 0.9524)) +(: cnet_capableof_aad3f4c9c0 (CapableOf animal bite) (STV 1.0 0.9091)) +(: cnet_capableof_1fbc8db304 (CapableOf animal procreate) (STV 1.0 0.9091)) +(: cnet_capableof_228e61e8c9 (CapableOf animal reproduce_asexually) (STV 1.0 0.9091)) +(: cnet_capableof_de8a1560df (CapableOf animal sense_danger) (STV 1.0 0.9454)) +(: cnet_capableof_799ce774f9 (CapableOf animal sense_environment) (STV 1.0 0.9339)) +(: cnet_capableof_676ece8c5a (CapableOf animal sense_fear) (STV 1.0 0.9454)) +(: cnet_capableof_d3e8a8a60d (CapableOf animated_flesh_of_dead_person do_what_people_do) (STV 1.0 0.9091)) +(: cnet_capableof_00cb41f013 (CapableOf animation draw_attention) (STV 1.0 0.9091)) +(: cnet_capableof_3f24dc28b5 (CapableOf ant crawl) (STV 1.0 0.9091)) +(: cnet_capableof_f90eb1301d (CapableOf anxiety cause_one_to_lose_sleep) (STV 1.0 0.9091)) +(: cnet_capableof_896cfdd253 (CapableOf anybody forget) (STV 1.0 0.9091)) +(: cnet_capableof_83acf8877e (CapableOf anyone answer_question) (STV 1.0 0.9091)) +(: cnet_capableof_ad47c952ab (CapableOf anyone iron_shirt) (STV 1.0 0.9091)) +(: cnet_capableof_9d724882e6 (CapableOf anyone join_club) (STV 1.0 0.9339)) +(: cnet_capableof_9b13cf1ad5 (CapableOf anyone lose_key) (STV 1.0 0.9091)) +(: cnet_capableof_da761b8a60 (CapableOf anyone voice_opinion) (STV 1.0 0.9454)) +(: cnet_capableof_1f060711f5 (CapableOf apple fall_from_tree) (STV 1.0 0.9636)) +(: cnet_capableof_58f74b177e (CapableOf appraiser value_antique) (STV 1.0 0.9091)) +(: cnet_capableof_0c6fe8d196 (CapableOf apprentice master_skill) (STV 1.0 0.9454)) +(: cnet_capableof_330c7e45e6 (CapableOf arbiter settle_dispute) (STV 1.0 0.9524)) +(: cnet_capableof_0774714463 (CapableOf archaeologist date_artifact) (STV 1.0 0.9091)) +(: cnet_capableof_1121d7a2f5 (CapableOf architect complete_floor_plan) (STV 1.0 0.9091)) +(: cnet_capableof_e5bb6aa8bb (CapableOf architect position_wall_and_plumbing_with_exactness) (STV 1.0 0.9091)) +(: cnet_capableof_9aaedae069 (CapableOf architect plan_building) (STV 1.0 0.9091)) +(: cnet_capableof_539f1e3c53 (CapableOf arguing_kid side_against_each_other) (STV 1.0 0.9091)) +(: cnet_capableof_5e4b68bc91 (CapableOf army battle_army) (STV 1.0 0.9091)) +(: cnet_capableof_dbbe60539b (CapableOf army storm_city) (STV 1.0 0.9091)) +(: cnet_capableof_5d03d8d314 (CapableOf army advance_toward_enemy) (STV 1.0 0.9091)) +(: cnet_capableof_f80d379d51 (CapableOf army battle_enemy) (STV 1.0 0.9091)) +(: cnet_capableof_b58a7f85d8 (CapableOf army guard_country) (STV 1.0 0.9454)) +(: cnet_capableof_e05ddf1c75 (CapableOf army storm_castle) (STV 1.0 0.9454)) +(: cnet_capableof_7aab955706 (CapableOf arrow hit_target) (STV 1.0 0.9454)) +(: cnet_capableof_df1742dd84 (CapableOf artist create) (STV 1.0 0.9091)) +(: cnet_capableof_93cc3c448d (CapableOf artist draw) (STV 1.0 0.9339)) +(: cnet_capableof_d04568e615 (CapableOf artist letter_sign) (STV 1.0 0.9091)) +(: cnet_capableof_7da47d6120 (CapableOf artist paint) (STV 1.0 0.9339)) +(: cnet_capableof_a9e15ea932 (CapableOf artist paint_canva) (STV 1.0 0.9339)) +(: cnet_capableof_dd067e7e19 (CapableOf artist paint_portrait) (STV 1.0 0.9608)) +(: cnet_capableof_29d30b6b59 (CapableOf artist perfect_technique) (STV 1.0 0.9091)) +(: cnet_capableof_e7f1b6615d (CapableOf artist shade_drawing) (STV 1.0 0.9454)) +(: cnet_capableof_629480ebd5 (CapableOf aspirin relieve_headache_pain) (STV 1.0 0.9091)) +(: cnet_capableof_8518cbe6fb (CapableOf astronaut journey_to_moon) (STV 1.0 0.9091)) +(: cnet_capableof_439e9d146e (CapableOf astronomer study_star) (STV 1.0 0.9524)) +(: cnet_capableof_f185a57197 (CapableOf atheist doubt_existence_of_god) (STV 1.0 0.9572)) +(: cnet_capableof_338f01d574 (CapableOf athlete attempt_to_break_world_record) (STV 1.0 0.9339)) +(: cnet_capableof_5472053b52 (CapableOf athlete break_record) (STV 1.0 0.9454)) +(: cnet_capableof_76951ba34f (CapableOf athlete jump_high) (STV 1.0 0.9339)) +(: cnet_capableof_f17e74756d (CapableOf athlete play_sport) (STV 1.0 0.9091)) +(: cnet_capableof_2450166764 (CapableOf attorney prove_case) (STV 1.0 0.9091)) +(: cnet_capableof_eaefdbc408 (CapableOf audience laugh_at_comedian) (STV 1.0 0.9339)) +(: cnet_capableof_918f925617 (CapableOf auditorium seat_many_people) (STV 1.0 0.9091)) +(: cnet_capableof_b2bddc2114 (CapableOf author write_book) (STV 1.0 0.9677)) +(: cnet_capableof_3acfc489ad (CapableOf author write_poem) (STV 1.0 0.9454)) +(: cnet_capableof_cf1191512b (CapableOf automobile transport_thing) (STV 1.0 0.9091)) +(: cnet_capableof_4d2df08aa7 (CapableOf ax hurt_person) (STV 1.0 0.9091)) +(: cnet_capableof_7caf3b392c (CapableOf baby cry_loud) (STV 1.0 0.9693)) +(: cnet_capableof_c8aa5aa545 (CapableOf baby wave_bye_bye) (STV 1.0 0.9454)) +(: cnet_capableof_b4abf8e86c (CapableOf baby cry) (STV 1.0 0.9572)) +(: cnet_capableof_4fcc53c10f (CapableOf baby cry_lot) (STV 1.0 0.9091)) +(: cnet_capableof_9e4edb73eb (CapableOf baby cry_loudly) (STV 1.0 0.9677)) +(: cnet_capableof_4f7f8330c0 (CapableOf baby sleep_in_crib) (STV 1.0 0.9091)) +(: cnet_capableof_4a68ac88c9 (CapableOf baby wet_diaper) (STV 1.0 0.9730)) +(: cnet_capableof_583bc1d302 (CapableOf babysitter mind_baby) (STV 1.0 0.9608)) +(: cnet_capableof_54234d1a55 (CapableOf babysitter mind_children) (STV 1.0 0.9454)) +(: cnet_capableof_75ef8f84a1 (CapableOf bad_thing happen_to) (STV 1.0 0.9091)) +(: cnet_capableof_883cad5b77 (CapableOf bad_thing happen_to_good_people) (STV 1.0 0.9636)) +(: cnet_capableof_0097408e01 (CapableOf bag carry_grocery) (STV 1.0 0.9091)) +(: cnet_capableof_d3799c093e (CapableOf bag carry_grocery_in) (STV 1.0 0.9091)) +(: cnet_capableof_59ae6800b3 (CapableOf baker make_cake) (STV 1.0 0.9091)) +(: cnet_capableof_fe8bbb298d (CapableOf baker roll_dough) (STV 1.0 0.9572)) +(: cnet_capableof_b0590daa74 (CapableOf ball bounce) (STV 1.0 0.9677)) +(: cnet_capableof_5108782095 (CapableOf ball break_window) (STV 1.0 0.9339)) +(: cnet_capableof_141e3df742 (CapableOf ball hit_wall) (STV 1.0 0.9091)) +(: cnet_capableof_8c50632f50 (CapableOf ball roll) (STV 1.0 0.9572)) +(: cnet_capableof_f0ce24d007 (CapableOf ball roll_down_hill) (STV 1.0 0.9636)) +(: cnet_capableof_924f29e571 (CapableOf ball roll_down_stair) (STV 1.0 0.9091)) +(: cnet_capableof_d4c474b288 (CapableOf ball roll_under_table) (STV 1.0 0.9339)) +(: cnet_capableof_84e15010b3 (CapableOf ball roll_very_well) (STV 1.0 0.9091)) +(: cnet_capableof_752e189322 (CapableOf ball rolling_downhill) (STV 1.0 0.9091)) +(: cnet_capableof_63f6c61e92 (CapableOf ball strike_window) (STV 1.0 0.9091)) +(: cnet_capableof_fab818ed58 (CapableOf ballerina dance_gracefully) (STV 1.0 0.9091)) +(: cnet_capableof_79093333f6 (CapableOf ball pop) (STV 1.0 0.9091)) +(: cnet_capableof_d6bc762828 (CapableOf ball roll_away) (STV 1.0 0.9091)) +(: cnet_capableof_bcf2fbac5b (CapableOf band play_music) (STV 1.0 0.9572)) +(: cnet_capableof_45ccb5a751 (CapableOf bank charge_interest) (STV 1.0 0.9091)) +(: cnet_capableof_8183f71517 (CapableOf bank store_money) (STV 1.0 0.9454)) +(: cnet_capableof_0dd4b04bed (CapableOf banker lend_money) (STV 1.0 0.9454)) +(: cnet_capableof_cddf57797f (CapableOf barack_obama give_speeche) (STV 1.0 0.9454)) +(: cnet_capableof_3a5e84de1a (CapableOf baseball_bat break_window) (STV 1.0 0.9091)) +(: cnet_capableof_9ba5bf8674 (CapableOf baseball_bat hurt) (STV 1.0 0.9339)) +(: cnet_capableof_01d63ad074 (CapableOf baseball_player hit_home_run) (STV 1.0 0.9454)) +(: cnet_capableof_5ec9261612 (CapableOf baseball_player throw) (STV 1.0 0.9091)) +(: cnet_capableof_1f909d26d6 (CapableOf baseball_player strike_out) (STV 1.0 0.9091)) +(: cnet_capableof_9196523d03 (CapableOf bat eat_mosquitoe) (STV 1.0 0.9091)) +(: cnet_capableof_74008c53e8 (CapableOf bat strike_ball) (STV 1.0 0.9572)) +(: cnet_capableof_4bc7a14c8a (CapableOf bat fly) (STV 1.0 0.9339)) +(: cnet_capableof_9a3a4697d1 (CapableOf bat hang_upside_down) (STV 1.0 0.9524)) +(: cnet_capableof_d555e5143d (CapableOf bat hit_ball) (STV 1.0 0.9339)) +(: cnet_capableof_e52a98a3de (CapableOf batter crowd_plate) (STV 1.0 0.9454)) +(: cnet_capableof_368e45bdb6 (CapableOf batter hit_ball) (STV 1.0 0.9091)) +(: cnet_capableof_a01435f0ee (CapableOf batter hit_baseball) (STV 1.0 0.9454)) +(: cnet_capableof_9ec7a1f07f (CapableOf batter strike_out) (STV 1.0 0.9572)) +(: cnet_capableof_473a7275c6 (CapableOf battery power_electronic_device) (STV 1.0 0.9091)) +(: cnet_capableof_35f6d3ce67 (CapableOf battery power_flashlight) (STV 1.0 0.9636)) +(: cnet_capableof_6f8cb12534 (CapableOf battery power_radio) (STV 1.0 0.9454)) +(: cnet_capableof_e001e3212b (CapableOf battery power_toy) (STV 1.0 0.9454)) +(: cnet_capableof_436431f759 (CapableOf battery_charger charge_battery) (STV 1.0 0.9091)) +(: cnet_capableof_d6c3412e97 (CapableOf bear fish_for_salmon) (STV 1.0 0.9091)) +(: cnet_capableof_11af232359 (CapableOf bear fish_with_it_s_paw) (STV 1.0 0.9091)) +(: cnet_capableof_6fb1c811af (CapableOf bear hunt_rabbit) (STV 1.0 0.9091)) +(: cnet_capableof_ad23d76bda (CapableOf bear winter_over_in_den) (STV 1.0 0.9091)) +(: cnet_capableof_5dac60e9e7 (CapableOf beautiful_woman stop_traffic) (STV 1.0 0.9091)) +(: cnet_capableof_e8885d09d3 (CapableOf beaver build_dam) (STV 1.0 0.9572)) +(: cnet_capableof_3c3d010f09 (CapableOf bee sting) (STV 1.0 0.9091)) +(: cnet_capableof_20c884e896 (CapableOf beer cloud_judgment) (STV 1.0 0.9091)) +(: cnet_capableof_b084bd8cae (CapableOf bee live_in_hive) (STV 1.0 0.9091)) +(: cnet_capableof_7ef699fdb3 (CapableOf bee make_honey) (STV 1.0 0.9091)) +(: cnet_capableof_a201ba686b (CapableOf belief include_fantasy) (STV 1.0 0.9091)) +(: cnet_capableof_089b463bae (CapableOf bell ring) (STV 1.0 0.9339)) +(: cnet_capableof_54826b3139 (CapableOf bicycle go_over_40mph) (STV 1.0 0.9091)) +(: cnet_capableof_7e22ef237f (CapableOf big_boy dress_himself) (STV 1.0 0.9454)) +(: cnet_capableof_9edabd295c (CapableOf bird build_nest) (STV 1.0 0.9339)) +(: cnet_capableof_ea04cf6e5c (CapableOf bird chirp) (STV 1.0 0.9339)) +(: cnet_capableof_6b52f10d6a (CapableOf bird fly) (STV 1.0 0.9339)) +(: cnet_capableof_2eee120517 (CapableOf bird fly_high) (STV 1.0 0.9339)) +(: cnet_capableof_a87f9b63af (CapableOf bird head_south) (STV 1.0 0.9091)) +(: cnet_capableof_fa685bcad3 (CapableOf bird land_on_branch) (STV 1.0 0.9091)) +(: cnet_capableof_fecd0dd6db (CapableOf bird learn_to_fly) (STV 1.0 0.9091)) +(: cnet_capableof_3fc60500e1 (CapableOf bird pet) (STV 1.0 0.9339)) +(: cnet_capableof_99aab5e803 (CapableOf bird prepare_nest) (STV 1.0 0.9091)) +(: cnet_capableof_107d76a75c (CapableOf bird sing) (STV 1.0 0.9707)) +(: cnet_capableof_4cea8a853b (CapableOf bird sing_song) (STV 1.0 0.9339)) +(: cnet_capableof_8758090f75 (CapableOf bird spread_wing) (STV 1.0 0.9454)) +(: cnet_capableof_097de77163 (CapableOf bird fear_cat) (STV 1.0 0.9091)) +(: cnet_capableof_ef7d8367b1 (CapableOf bird gather_stick_to_make_nest) (STV 1.0 0.9091)) +(: cnet_capableof_37526378eb (CapableOf bird lay_egg) (STV 1.0 0.9091)) +(: cnet_capableof_395b717896 (CapableOf black_cat cross_path) (STV 1.0 0.9454)) +(: cnet_capableof_9b446d9068 (CapableOf blacksmith shoe_horse) (STV 1.0 0.9608)) +(: cnet_capableof_1550cfb3f3 (CapableOf blacksmith shoe_hors) (STV 1.0 0.9091)) +(: cnet_capableof_5abdcab58e (CapableOf blanket cover_bed) (STV 1.0 0.9091)) +(: cnet_capableof_087866874b (CapableOf blanket warm_person) (STV 1.0 0.9454)) +(: cnet_capableof_020f0c075c (CapableOf blind_people read_using_braile_system) (STV 1.0 0.9091)) +(: cnet_capableof_588b880fa0 (CapableOf block_of_wood wedge_door) (STV 1.0 0.9091)) +(: cnet_capableof_1a4b892bc6 (CapableOf block_of_wood wedge_in_door) (STV 1.0 0.9091)) +(: cnet_capableof_2a1ae010d4 (CapableOf blood course_through_vein) (STV 1.0 0.9091)) +(: cnet_capableof_03466f2ae2 (CapableOf blood coursing_through_vein) (STV 1.0 0.9693)) +(: cnet_capableof_81aad4a128 (CapableOf boat go_on_water) (STV 1.0 0.9339)) +(: cnet_capableof_97cf0b37cb (CapableOf boat ship_cargo) (STV 1.0 0.9454)) +(: cnet_capableof_baa3b82fa2 (CapableOf boat sail_ocean) (STV 1.0 0.9339)) +(: cnet_capableof_3cb76340e4 (CapableOf bomb destroy_city) (STV 1.0 0.9608)) +(: cnet_capableof_1f4a554abc (CapableOf bomb destroy_building) (STV 1.0 0.9719)) +(: cnet_capableof_679eb00206 (CapableOf bomb explode) (STV 1.0 0.9693)) +(: cnet_capableof_a679cd7682 (CapableOf bone break) (STV 1.0 0.9339)) +(: cnet_capableof_f99df7ebfa (CapableOf border divide_two_country) (STV 1.0 0.9091)) +(: cnet_capableof_853ef7b514 (CapableOf border divide_country) (STV 1.0 0.9091)) +(: cnet_capableof_b3e7458fda (CapableOf borrower return_book_to_library) (STV 1.0 0.9454)) +(: cnet_capableof_a5b1bfcb8c (CapableOf boss consider_giving_raise) (STV 1.0 0.9091)) +(: cnet_capableof_ac5389476c (CapableOf boss page_employee) (STV 1.0 0.9608)) +(: cnet_capableof_4e66bf44e9 (CapableOf botanist study_plant) (STV 1.0 0.9339)) +(: cnet_capableof_760d8ff091 (CapableOf boxer fight_opponent) (STV 1.0 0.9454)) +(: cnet_capableof_6c351fca39 (CapableOf boxer hurt_opponent) (STV 1.0 0.9454)) +(: cnet_capableof_f24b2d200f (CapableOf boxer strike_opponent) (STV 1.0 0.9454)) +(: cnet_capableof_6ca6e2c74d (CapableOf boxer train_for_fight) (STV 1.0 0.9091)) +(: cnet_capableof_2b3293abf4 (CapableOf boxer train_to_fight) (STV 1.0 0.9091)) +(: cnet_capableof_af4e812516 (CapableOf boxe hold_thing) (STV 1.0 0.9091)) +(: cnet_capableof_62b4fbda92 (CapableOf brain splatter) (STV 1.0 0.9091)) +(: cnet_capableof_6d35a5d97b (CapableOf brain think_about_many_thing) (STV 1.0 0.9339)) +(: cnet_capableof_079e82cc84 (CapableOf brainstorming mine_idea_from_group) (STV 1.0 0.9091)) +(: cnet_capableof_7efcb94e23 (CapableOf brake slow_car) (STV 1.0 0.9091)) +(: cnet_capableof_5be5e3397a (CapableOf brake slow_vehicle) (STV 1.0 0.9091)) +(: cnet_capableof_f6358b3658 (CapableOf brewer bottle_beer) (STV 1.0 0.9636)) +(: cnet_capableof_0e8719a4d4 (CapableOf brewery bottle_beer) (STV 1.0 0.9572)) +(: cnet_capableof_54598dff0d (CapableOf bride plan_wedding) (STV 1.0 0.9339)) +(: cnet_capableof_854afc8eaa (CapableOf bridge bridge_ravine) (STV 1.0 0.9091)) +(: cnet_capableof_f1f948fe34 (CapableOf bridge cross_river) (STV 1.0 0.9091)) +(: cnet_capableof_cfb3ef8bc6 (CapableOf broker trade_stock) (STV 1.0 0.9091)) +(: cnet_capableof_ef346947aa (CapableOf broker trading_stock) (STV 1.0 0.9339)) +(: cnet_capableof_d7b690040d (CapableOf brother bug_sister) (STV 1.0 0.9524)) +(: cnet_capableof_5a450e2f57 (CapableOf bucket carry_water) (STV 1.0 0.9454)) +(: cnet_capableof_0fcedda218 (CapableOf bucket hold_water) (STV 1.0 0.9091)) +(: cnet_capableof_a715b55c82 (CapableOf buddha show_dharma) (STV 1.0 0.9091)) +(: cnet_capableof_f51020c149 (CapableOf building fall_down) (STV 1.0 0.9091)) +(: cnet_capableof_0d34ba335a (CapableOf building weather_storm) (STV 1.0 0.9454)) +(: cnet_capableof_7e88602f40 (CapableOf bull charge_matador) (STV 1.0 0.9454)) +(: cnet_capableof_a0e9dd4f2c (CapableOf bulldozer move_dirt) (STV 1.0 0.9454)) +(: cnet_capableof_d22cbe4dab (CapableOf bull charge_at_people) (STV 1.0 0.9339)) +(: cnet_capableof_882252adbe (CapableOf bull charge_people) (STV 1.0 0.9091)) +(: cnet_capableof_655bab265f (CapableOf bullying costly) (STV 1.0 0.9091)) +(: cnet_capableof_c2c140bf66 (CapableOf burglar case_joint) (STV 1.0 0.9454)) +(: cnet_capableof_9933eff595 (CapableOf burgler fence_stolen_good) (STV 1.0 0.9091)) +(: cnet_capableof_a53bb694fa (CapableOf bus transport_people) (STV 1.0 0.9091)) +(: cnet_capableof_398c681e45 (CapableOf busboy bus_table) (STV 1.0 0.9091)) +(: cnet_capableof_0ff9945071 (CapableOf busboy clear_table) (STV 1.0 0.9454)) +(: cnet_capableof_b22edf9c25 (CapableOf butcher cut_meat) (STV 1.0 0.9091)) +(: cnet_capableof_413220ac5f (CapableOf butcher quarter_carcass) (STV 1.0 0.9091)) +(: cnet_capableof_54a5bb8f0f (CapableOf butter coat_frying_pan) (STV 1.0 0.9091)) +(: cnet_capableof_5b59dc4ae2 (CapableOf butter spread_at_room_temperature) (STV 1.0 0.9636)) +(: cnet_capableof_afde3e34ee (CapableOf butter spread_on_bread) (STV 1.0 0.9608)) +(: cnet_capableof_e98739dfcb (CapableOf butter_knife butter_bread) (STV 1.0 0.9091)) +(: cnet_capableof_fa648fd463 (CapableOf butterfly fly) (STV 1.0 0.9091)) +(: cnet_capableof_09ba35196d (CapableOf buyer offer_money_to_seller) (STV 1.0 0.9091)) +(: cnet_capableof_d1b8276335 (CapableOf cacti grow_in_desert) (STV 1.0 0.9091)) +(: cnet_capableof_1f31cc2015 (CapableOf caffeine keep_awake) (STV 1.0 0.9091)) +(: cnet_capableof_07eca009fa (CapableOf camper sleep_in_tent) (STV 1.0 0.9636)) +(: cnet_capableof_b8e8e4541b (CapableOf can_opener open_can) (STV 1.0 0.9091)) +(: cnet_capableof_2517ff2240 (CapableOf cancer hurry_death) (STV 1.0 0.9091)) +(: cnet_capableof_3700e0e595 (CapableOf cancer kill) (STV 1.0 0.9454)) +(: cnet_capableof_7e2e45523b (CapableOf cancer result_in_death) (STV 1.0 0.9091)) +(: cnet_capableof_af7e4607c7 (CapableOf candle emit_light) (STV 1.0 0.9091)) +(: cnet_capableof_5de813be70 (CapableOf candy taste_good) (STV 1.0 0.9091)) +(: cnet_capableof_23367a4cb4 (CapableOf cannibal cook_human) (STV 1.0 0.9091)) +(: cnet_capableof_2bd05e48a5 (CapableOf cannibal interesting_subject_of_study) (STV 1.0 0.9091)) +(: cnet_capableof_596049ab94 (CapableOf cannon fire_cannonball) (STV 1.0 0.9454)) +(: cnet_capableof_3e4c96963e (CapableOf captain captain_boat) (STV 1.0 0.9454)) +(: cnet_capableof_b3edb7493c (CapableOf captain captain_ship) (STV 1.0 0.9454)) +(: cnet_capableof_e42aa7c7ef (CapableOf captor force_will_on_prisoner) (STV 1.0 0.9091)) +(: cnet_capableof_ba70244850 (CapableOf car come_up_drive) (STV 1.0 0.9091)) +(: cnet_capableof_6961848d5c (CapableOf car cost_lot_of_money) (STV 1.0 0.9454)) +(: cnet_capableof_0dd194874a (CapableOf car cost_money) (STV 1.0 0.9091)) +(: cnet_capableof_565c67ccfc (CapableOf car crash) (STV 1.0 0.9693)) +(: cnet_capableof_2cb41236f5 (CapableOf car enter_garage) (STV 1.0 0.9454)) +(: cnet_capableof_4b8c96c0a7 (CapableOf car go_fast) (STV 1.0 0.9693)) +(: cnet_capableof_bc0fc6d933 (CapableOf car head_north) (STV 1.0 0.9091)) +(: cnet_capableof_001c953ad1 (CapableOf car heading_north) (STV 1.0 0.9091)) +(: cnet_capableof_7af372b4fe (CapableOf car move_person) (STV 1.0 0.9091)) +(: cnet_capableof_80792a47f4 (CapableOf car move_quickly) (STV 1.0 0.9091)) +(: cnet_capableof_612141c6b8 (CapableOf car need_petrol) (STV 1.0 0.9091)) +(: cnet_capableof_e377aa3cc3 (CapableOf car pass_another_car) (STV 1.0 0.9454)) +(: cnet_capableof_328526ea24 (CapableOf car pass_bus) (STV 1.0 0.9091)) +(: cnet_capableof_0cf8ef4be6 (CapableOf car pass_other_car) (STV 1.0 0.9091)) +(: cnet_capableof_041ccc70b7 (CapableOf car roll_downhill) (STV 1.0 0.9091)) +(: cnet_capableof_8da8cfe9e5 (CapableOf car roll_over) (STV 1.0 0.9636)) +(: cnet_capableof_caceb19bda (CapableOf car rush_through_traffic) (STV 1.0 0.9091)) +(: cnet_capableof_633086488e (CapableOf car slow_down) (STV 1.0 0.9608)) +(: cnet_capableof_7854e12039 (CapableOf car_horn honk) (STV 1.0 0.9091)) +(: cnet_capableof_dc9291893a (CapableOf card_dealer deal_card) (STV 1.0 0.9091)) +(: cnet_capableof_99a4f57aba (CapableOf carelessness increase_risk) (STV 1.0 0.9091)) +(: cnet_capableof_136c9e756a (CapableOf carpenter build_house) (STV 1.0 0.9454)) +(: cnet_capableof_fab5288511 (CapableOf carpenter hammer_nail) (STV 1.0 0.9091)) +(: cnet_capableof_635c7f7e45 (CapableOf carpenter measure_board) (STV 1.0 0.9091)) +(: cnet_capableof_e3b9348584 (CapableOf carpenter side_house) (STV 1.0 0.9454)) +(: cnet_capableof_6cebaf340b (CapableOf carpenter build_hous) (STV 1.0 0.9339)) +(: cnet_capableof_2ecb1a9cf9 (CapableOf carpenter lay_flooring) (STV 1.0 0.9091)) +(: cnet_capableof_dd1906ff8c (CapableOf carpenter nail_thing_with_hammer) (STV 1.0 0.9091)) +(: cnet_capableof_27145bcefb (CapableOf carrot choped) (STV 1.0 0.9091)) +(: cnet_capableof_83fa1c68ea (CapableOf car driven) (STV 1.0 0.9091)) +(: cnet_capableof_9fab208dc4 (CapableOf car move_people) (STV 1.0 0.9091)) +(: cnet_capableof_e0c2e69396 (CapableOf car race) (STV 1.0 0.9091)) +(: cnet_capableof_b1378fa62b (CapableOf car take_people_place) (STV 1.0 0.9091)) +(: cnet_capableof_1768173bbc (CapableOf car use_fuel) (STV 1.0 0.9091)) +(: cnet_capableof_9e2e74a4ba (CapableOf cashier short_customer) (STV 1.0 0.9454)) +(: cnet_capableof_5eecefa5ae (CapableOf cashier thank_customer) (STV 1.0 0.9091)) +(: cnet_capableof_59cb4249d0 (CapableOf cat catch_bird) (STV 1.0 0.9454)) +(: cnet_capableof_72b06d8764 (CapableOf cat catch_mouse) (STV 1.0 0.9677)) +(: cnet_capableof_4243839e46 (CapableOf cat cleaning_itself) (STV 1.0 0.9454)) +(: cnet_capableof_4781336d87 (CapableOf cat climb_up_tree) (STV 1.0 0.9636)) +(: cnet_capableof_3c9c0d421e (CapableOf cat corner_mouse) (STV 1.0 0.9608)) +(: cnet_capableof_462378a441 (CapableOf cat drink_milk) (STV 1.0 0.9454)) +(: cnet_capableof_e42609a1e2 (CapableOf cat drink_water) (STV 1.0 0.9677)) +(: cnet_capableof_13d8ced160 (CapableOf cat eat_bird) (STV 1.0 0.9091)) +(: cnet_capableof_60c9160544 (CapableOf cat eat_cat_food) (STV 1.0 0.9339)) +(: cnet_capableof_dc9804de28 (CapableOf cat eye_mouse) (STV 1.0 0.9339)) +(: cnet_capableof_9589735ffd (CapableOf cat fight_dog) (STV 1.0 0.9091)) +(: cnet_capableof_ac553e482a (CapableOf cat hide_under_bed) (STV 1.0 0.9339)) +(: cnet_capableof_c870d957be (CapableOf cat hunt_mice) (STV 1.0 0.9740)) +(: cnet_capableof_ced246faca (CapableOf cat kill_bird) (STV 1.0 0.9091)) +(: cnet_capableof_7f30c6e24a (CapableOf cat kill_mouse) (STV 1.0 0.9091)) +(: cnet_capableof_61694c433f (CapableOf cat look_at_king) (STV 1.0 0.9572)) +(: cnet_capableof_576753e535 (CapableOf cat meow) (STV 1.0 0.9339)) +(: cnet_capableof_7192a434e5 (CapableOf cat miaow) (STV 1.0 0.9091)) +(: cnet_capableof_ab54c58d02 (CapableOf cat mother_kitten) (STV 1.0 0.9524)) +(: cnet_capableof_8873e6493f (CapableOf cat scratch) (STV 1.0 0.9454)) +(: cnet_capableof_f635e8d3b5 (CapableOf cat scratch_furniture) (STV 1.0 0.9454)) +(: cnet_capableof_4f1c6c5e4d (CapableOf cat see_in_dark) (STV 1.0 0.9339)) +(: cnet_capableof_2c1f43ff97 (CapableOf cat sleep) (STV 1.0 0.9454)) +(: cnet_capableof_69ec3cc7e3 (CapableOf cat sleep_all_day) (STV 1.0 0.9091)) +(: cnet_capableof_dccb927fad (CapableOf cat sleep_most_of_day) (STV 1.0 0.9339)) +(: cnet_capableof_c0f3069671 (CapableOf cat sleep_most_of_time) (STV 1.0 0.9091)) +(: cnet_capableof_20a289db3c (CapableOf cat sleep_on_windowsill) (STV 1.0 0.9091)) +(: cnet_capableof_311f9d1495 (CapableOf cat sun_itself) (STV 1.0 0.9339)) +(: cnet_capableof_b5def06dcb (CapableOf cat sun_on_porch) (STV 1.0 0.9091)) +(: cnet_capableof_7b6796f269 (CapableOf cat wash_itself) (STV 1.0 0.9091)) +(: cnet_capableof_b80ba240d8 (CapableOf cat wash_itself_with_tongue) (STV 1.0 0.9091)) +(: cnet_capableof_3a875cdc38 (CapableOf cat wash_paw) (STV 1.0 0.9454)) +(: cnet_capableof_8cb82cc939 (CapableOf cat watch_mouse) (STV 1.0 0.9091)) +(: cnet_capableof_0f766a7755 (CapableOf cat annoy) (STV 1.0 0.9091)) +(: cnet_capableof_ae1c8fa3b1 (CapableOf cat chase_mice) (STV 1.0 0.9608)) +(: cnet_capableof_67668b5be4 (CapableOf cat corner_mice) (STV 1.0 0.9608)) +(: cnet_capableof_8e3438cac5 (CapableOf cat eat_meat) (STV 1.0 0.9608)) +(: cnet_capableof_e91e4ae262 (CapableOf cat eat_mice) (STV 1.0 0.9740)) +(: cnet_capableof_e0d5f3d7d1 (CapableOf cat eating_cat_food) (STV 1.0 0.9454)) +(: cnet_capableof_3be355cb6e (CapableOf cat excrete) (STV 1.0 0.9091)) +(: cnet_capableof_085e4a6ebd (CapableOf cat fancy_catnip) (STV 1.0 0.9091)) +(: cnet_capableof_ad22db57f0 (CapableOf cat kill_mice) (STV 1.0 0.9339)) +(: cnet_capableof_389809d36f (CapableOf cat lie_down) (STV 1.0 0.9339)) +(: cnet_capableof_937dccf0cb (CapableOf cat need_food) (STV 1.0 0.9091)) +(: cnet_capableof_754b18e539 (CapableOf cat please_human) (STV 1.0 0.9091)) +(: cnet_capableof_e13486094c (CapableOf cat see_well_in_dark) (STV 1.0 0.9091)) +(: cnet_capableof_a05f81391f (CapableOf cds store_music) (STV 1.0 0.9454)) +(: cnet_capableof_6438912233 (CapableOf celebrity sign_autograph) (STV 1.0 0.9091)) +(: cnet_capableof_76c318b9c1 (CapableOf chairman chair_meeting) (STV 1.0 0.9454)) +(: cnet_capableof_087dbba6d4 (CapableOf chairperson chair_meeting) (STV 1.0 0.9608)) +(: cnet_capableof_e34fffaf14 (CapableOf cheese age_to_get_better) (STV 1.0 0.9091)) +(: cnet_capableof_deddd98912 (CapableOf cheese age_well) (STV 1.0 0.9636)) +(: cnet_capableof_250284bd1f (CapableOf cheese smell_badly) (STV 1.0 0.9091)) +(: cnet_capableof_4da4306fbc (CapableOf chef bone_chicken) (STV 1.0 0.9339)) +(: cnet_capableof_36c03a1770 (CapableOf chef bone_fish) (STV 1.0 0.9091)) +(: cnet_capableof_9dd44b5f9b (CapableOf chef bread_chicken) (STV 1.0 0.9339)) +(: cnet_capableof_130245bcbe (CapableOf chef cook) (STV 1.0 0.9091)) +(: cnet_capableof_9347026922 (CapableOf chef cook_dinner) (STV 1.0 0.9524)) +(: cnet_capableof_2a5b026bd7 (CapableOf chef cook_dish) (STV 1.0 0.9091)) +(: cnet_capableof_12c75520cc (CapableOf chef cook_dishe) (STV 1.0 0.9091)) +(: cnet_capableof_0b6ca88e81 (CapableOf chef cook_gourmet_meal) (STV 1.0 0.9091)) +(: cnet_capableof_093ba806aa (CapableOf chef cook_very_well) (STV 1.0 0.9091)) +(: cnet_capableof_7bed3adaed (CapableOf chef prepare_food) (STV 1.0 0.9454)) +(: cnet_capableof_a71dd54354 (CapableOf chef prepare_meal) (STV 1.0 0.9339)) +(: cnet_capableof_5465ba87a3 (CapableOf chef season_food) (STV 1.0 0.9339)) +(: cnet_capableof_b1a4ae014f (CapableOf chef season_meat) (STV 1.0 0.9091)) +(: cnet_capableof_1e61bb05f3 (CapableOf chef cook_well) (STV 1.0 0.9091)) +(: cnet_capableof_86fc7990e8 (CapableOf cherry grow_on_tree) (STV 1.0 0.9339)) +(: cnet_capableof_6dbb463fec (CapableOf chess_player position_piece) (STV 1.0 0.9454)) +(: cnet_capableof_15b0084d29 (CapableOf chess_queen move_in_direction) (STV 1.0 0.9339)) +(: cnet_capableof_a0982501e4 (CapableOf chicken cross_road) (STV 1.0 0.9740)) +(: cnet_capableof_552a024a26 (CapableOf chicken lay_egg) (STV 1.0 0.9524)) +(: cnet_capableof_09684479af (CapableOf chicken produce_egg) (STV 1.0 0.9608)) +(: cnet_capableof_116242af0f (CapableOf child add_two_number) (STV 1.0 0.9454)) +(: cnet_capableof_2fddfe21f3 (CapableOf child anger_mother) (STV 1.0 0.9524)) +(: cnet_capableof_b1ef6875a6 (CapableOf child anger_parent) (STV 1.0 0.9454)) +(: cnet_capableof_4b407d2180 (CapableOf child ask_question) (STV 1.0 0.9091)) +(: cnet_capableof_61653c1001 (CapableOf child become_adult) (STV 1.0 0.9572)) +(: cnet_capableof_622dcc66ef (CapableOf child bicycle_to_school) (STV 1.0 0.9091)) +(: cnet_capableof_169f75613c (CapableOf child butter_toast) (STV 1.0 0.9091)) +(: cnet_capableof_b528ca0795 (CapableOf child clean_room) (STV 1.0 0.9454)) +(: cnet_capableof_44860d0759 (CapableOf child dress_doll) (STV 1.0 0.9091)) +(: cnet_capableof_8d844de99a (CapableOf child fill_bucket_with_sand) (STV 1.0 0.9454)) +(: cnet_capableof_2f042ea1f6 (CapableOf child grow_up) (STV 1.0 0.9091)) +(: cnet_capableof_67876e7afd (CapableOf child laugh_at_clown) (STV 1.0 0.9454)) +(: cnet_capableof_1fe1f1c840 (CapableOf child listen_story) (STV 1.0 0.9091)) +(: cnet_capableof_013c36b27a (CapableOf child listen_to_story) (STV 1.0 0.9091)) +(: cnet_capableof_20a6dfcd7e (CapableOf child mind_parent) (STV 1.0 0.9454)) +(: cnet_capableof_65ddfe8bb0 (CapableOf child name_puppy) (STV 1.0 0.9454)) +(: cnet_capableof_576470852f (CapableOf child own_toy) (STV 1.0 0.9091)) +(: cnet_capableof_093c207bcb (CapableOf child place_puzzle_piece) (STV 1.0 0.9091)) +(: cnet_capableof_e4651cf30c (CapableOf child push_another_child) (STV 1.0 0.9091)) +(: cnet_capableof_571507931f (CapableOf child put_toy_away) (STV 1.0 0.9454)) +(: cnet_capableof_fabeec46b5 (CapableOf child read_book) (STV 1.0 0.9454)) +(: cnet_capableof_4a7c42f6a4 (CapableOf child share_toy) (STV 1.0 0.9524)) +(: cnet_capableof_c3ebbf3639 (CapableOf child show_toy_to_friend) (STV 1.0 0.9091)) +(: cnet_capableof_68a4814c44 (CapableOf child wet_pant) (STV 1.0 0.9454)) +(: cnet_capableof_0afba1327f (CapableOf children borrow_money_from_parent) (STV 1.0 0.9572)) +(: cnet_capableof_d5883ce497 (CapableOf children cut_and_paste) (STV 1.0 0.9091)) +(: cnet_capableof_0772aef20d (CapableOf children delight_parent) (STV 1.0 0.9524)) +(: cnet_capableof_cf21765cb0 (CapableOf children do_string_trick_with_string) (STV 1.0 0.9091)) +(: cnet_capableof_d932f6cb68 (CapableOf children expect_present_on_birthday) (STV 1.0 0.9091)) +(: cnet_capableof_19d88b9e7b (CapableOf children honor_parent) (STV 1.0 0.9339)) +(: cnet_capableof_9188f2316f (CapableOf children learn_alphabet) (STV 1.0 0.9454)) +(: cnet_capableof_8d248b7aa3 (CapableOf children listen_to_music) (STV 1.0 0.9454)) +(: cnet_capableof_078f5a227a (CapableOf children need_care) (STV 1.0 0.9091)) +(: cnet_capableof_6374b149bf (CapableOf children play_basketball) (STV 1.0 0.9091)) +(: cnet_capableof_46539adbf0 (CapableOf children play_chess) (STV 1.0 0.9339)) +(: cnet_capableof_cce00633fc (CapableOf children play_game) (STV 1.0 0.9524)) +(: cnet_capableof_313117e47a (CapableOf children play_in_back_yard) (STV 1.0 0.9454)) +(: cnet_capableof_97040753e4 (CapableOf children reach_over) (STV 1.0 0.9091)) +(: cnet_capableof_886ddb918c (CapableOf children share_toy) (STV 1.0 0.9693)) +(: cnet_capableof_8fb1657379 (CapableOf children sleep_in_bed) (STV 1.0 0.9339)) +(: cnet_capableof_2bdf1ce785 (CapableOf children surprise_parent) (STV 1.0 0.9454)) +(: cnet_capableof_5fef05a67e (CapableOf children thank_parent) (STV 1.0 0.9454)) +(: cnet_capableof_fe7f29c260 (CapableOf children tie_own_shoe) (STV 1.0 0.9091)) +(: cnet_capableof_a7d1e0ba4c (CapableOf children tie_shoe) (STV 1.0 0.9091)) +(: cnet_capableof_480bafc269 (CapableOf children trade_pokemon_card) (STV 1.0 0.9608)) +(: cnet_capableof_22a8cd1f82 (CapableOf children try_patience) (STV 1.0 0.9339)) +(: cnet_capableof_9ba0c158f3 (CapableOf children wash_dishe) (STV 1.0 0.9091)) +(: cnet_capableof_4982de3270 (CapableOf children watch_television) (STV 1.0 0.9454)) +(: cnet_capableof_abb4735b80 (CapableOf chocolate melt) (STV 1.0 0.9339)) +(: cnet_capableof_bb72954d3d (CapableOf choir sing_to_crowd) (STV 1.0 0.9091)) +(: cnet_capableof_08f26dec38 (CapableOf christ appear_to_faithful) (STV 1.0 0.9091)) +(: cnet_capableof_b0aee7e79d (CapableOf christian believe_in_jesus_christ) (STV 1.0 0.9339)) +(: cnet_capableof_81e11ba663 (CapableOf christian bring_offering) (STV 1.0 0.9339)) +(: cnet_capableof_1ac26bbd74 (CapableOf christian commit_sin) (STV 1.0 0.9091)) +(: cnet_capableof_65080675d6 (CapableOf christian confess_sin) (STV 1.0 0.9091)) +(: cnet_capableof_8c25cdc929 (CapableOf christian disobey) (STV 1.0 0.9091)) +(: cnet_capableof_cc9f094e45 (CapableOf christian fail) (STV 1.0 0.9091)) +(: cnet_capableof_7b74acde25 (CapableOf christian go_astray) (STV 1.0 0.9091)) +(: cnet_capableof_fdb4dcfeee (CapableOf christian justify_sin) (STV 1.0 0.9091)) +(: cnet_capableof_f4187a87ae (CapableOf christian pray) (STV 1.0 0.9091)) +(: cnet_capableof_68612b78fe (CapableOf christian rationalize_sin) (STV 1.0 0.9091)) +(: cnet_capableof_e10488e385 (CapableOf christian rebel) (STV 1.0 0.9091)) +(: cnet_capableof_4b7f4c6aaf (CapableOf christian repent) (STV 1.0 0.9091)) +(: cnet_capableof_2a8fffef40 (CapableOf christian repent_of_sin) (STV 1.0 0.9091)) +(: cnet_capableof_241f45560f (CapableOf christian sin) (STV 1.0 0.9091)) +(: cnet_capableof_1de53a2ac3 (CapableOf christian stumble) (STV 1.0 0.9091)) +(: cnet_capableof_3217d972fe (CapableOf christian_will pray) (STV 1.0 0.9091)) +(: cnet_capableof_258b58765b (CapableOf christian receive_communion) (STV 1.0 0.9091)) +(: cnet_capableof_5b00f742e9 (CapableOf christian receive_sacrament) (STV 1.0 0.9339)) +(: cnet_capableof_bc725d6b40 (CapableOf christian value_truth) (STV 1.0 0.9091)) +(: cnet_capableof_0420a5f442 (CapableOf cild share_toy) (STV 1.0 0.9091)) +(: cnet_capableof_13a68b2a20 (CapableOf citizen air_grievance) (STV 1.0 0.9091)) +(: cnet_capableof_5dfc9bc014 (CapableOf clark_kent double_as_superman) (STV 1.0 0.9091)) +(: cnet_capableof_71c2a9df8f (CapableOf claw scratch) (STV 1.0 0.9091)) +(: cnet_capableof_4106d1f51c (CapableOf clerk bag_grocery) (STV 1.0 0.9454)) +(: cnet_capableof_9e4aebb0b6 (CapableOf clerk bagging_grocery) (STV 1.0 0.9454)) +(: cnet_capableof_5b370c1660 (CapableOf clerk stock_shelve) (STV 1.0 0.9659)) +(: cnet_capableof_65a9e23d88 (CapableOf clock continue_ticking) (STV 1.0 0.9091)) +(: cnet_capableof_229504cf20 (CapableOf clock continue_to_tick) (STV 1.0 0.9339)) +(: cnet_capableof_f7e8f2a535 (CapableOf clock time_race) (STV 1.0 0.9091)) +(: cnet_capableof_2132f393bb (CapableOf clock tell_time) (STV 1.0 0.9693)) +(: cnet_capableof_efdb901d33 (CapableOf cloth become_wet) (STV 1.0 0.9339)) +(: cnet_capableof_0bfde2cd8f (CapableOf cloud block_sun) (STV 1.0 0.9091)) +(: cnet_capableof_350b451d51 (CapableOf cloud cover_sun) (STV 1.0 0.9091)) +(: cnet_capableof_1dd7e560b4 (CapableOf cloud hide_sun) (STV 1.0 0.9339)) +(: cnet_capableof_9ebac88e27 (CapableOf cloud bring_rain) (STV 1.0 0.9091)) +(: cnet_capableof_126a6387b2 (CapableOf cloud cloud_sky) (STV 1.0 0.9091)) +(: cnet_capableof_ccf20add52 (CapableOf cloud rain_on) (STV 1.0 0.9524)) +(: cnet_capableof_56ac2fc61a (CapableOf cloud rain_on_earth) (STV 1.0 0.9454)) +(: cnet_capableof_687c1fab87 (CapableOf cloud rain_raindrop) (STV 1.0 0.9454)) +(: cnet_capableof_bf7d0178d1 (CapableOf cloud rain_water) (STV 1.0 0.9572)) +(: cnet_capableof_790e0de99f (CapableOf clown act_silly) (STV 1.0 0.9339)) +(: cnet_capableof_50dc12ff98 (CapableOf clown delight_children) (STV 1.0 0.9091)) +(: cnet_capableof_d82d944a99 (CapableOf clown wear_funny_clothe) (STV 1.0 0.9091)) +(: cnet_capableof_15303309fd (CapableOf coach time_runner) (STV 1.0 0.9454)) +(: cnet_capableof_306c60d565 (CapableOf cock fight_in_pit) (STV 1.0 0.9091)) +(: cnet_capableof_2f5bc575a9 (CapableOf cock fight_other_cock) (STV 1.0 0.9091)) +(: cnet_capableof_057e5a9c5d (CapableOf cocoon become_butterfly) (STV 1.0 0.9091)) +(: cnet_capableof_69c239d842 (CapableOf cold_item freeze) (STV 1.0 0.9091)) +(: cnet_capableof_e566112e97 (CapableOf college_degree further_career) (STV 1.0 0.9454)) +(: cnet_capableof_05133dce85 (CapableOf column in_newspaper) (STV 1.0 0.9524)) +(: cnet_capableof_97b8a1b325 (CapableOf comb part_hair) (STV 1.0 0.9791)) +(: cnet_capableof_3eb873ac52 (CapableOf comedian laugh_at_own_joke) (STV 1.0 0.9454)) +(: cnet_capableof_f2683b637d (CapableOf comedian time_joke) (STV 1.0 0.9091)) +(: cnet_capableof_fa365d8b8a (CapableOf committing_crime lead_to_punishment) (STV 1.0 0.9091)) +(: cnet_capableof_cbb222ae7c (CapableOf community broken) (STV 1.0 0.9091)) +(: cnet_capableof_122650bcd8 (CapableOf community commit_genocide) (STV 1.0 0.9091)) +(: cnet_capableof_7c2ad612c3 (CapableOf community judge_leader) (STV 1.0 0.9091)) +(: cnet_capableof_a2dd6b3353 (CapableOf community trade_service_for_money) (STV 1.0 0.9091)) +(: cnet_capableof_3d9371d505 (CapableOf community value_good_moral) (STV 1.0 0.9339)) +(: cnet_capableof_63501da61d (CapableOf company market_product) (STV 1.0 0.9524)) +(: cnet_capableof_1192efbf66 (CapableOf company branch_out) (STV 1.0 0.9091)) +(: cnet_capableof_a2edf0af7f (CapableOf company commit_crime) (STV 1.0 0.9524)) +(: cnet_capableof_fa0e8dac9f (CapableOf company market_new_product) (STV 1.0 0.9454)) +(: cnet_capableof_61da4fb137 (CapableOf compost smell_bad) (STV 1.0 0.9091)) +(: cnet_capableof_827f62b95d (CapableOf compressed_file hold_virus) (STV 1.0 0.9091)) +(: cnet_capableof_5e6b3f7db2 (CapableOf computer arithmetic) (STV 1.0 0.9091)) +(: cnet_capableof_86efbf8d35 (CapableOf computer process_information) (STV 1.0 0.9707)) +(: cnet_capableof_254a3bfdd6 (CapableOf computer run_program) (STV 1.0 0.9091)) +(: cnet_capableof_227fb94632 (CapableOf computer sort_information) (STV 1.0 0.9091)) +(: cnet_capableof_90524f7ae7 (CapableOf computer_virus arrive_as_attachment_to_email) (STV 1.0 0.9091)) +(: cnet_capableof_412ea02922 (CapableOf computer_virus destroy_computer_file) (STV 1.0 0.9091)) +(: cnet_capableof_fe502fb376 (CapableOf computer add_number) (STV 1.0 0.9339)) +(: cnet_capableof_98510568ba (CapableOf computer compute) (STV 1.0 0.9707)) +(: cnet_capableof_6309809958 (CapableOf computer cost_money) (STV 1.0 0.9091)) +(: cnet_capableof_61bf86a940 (CapableOf computer do_work) (STV 1.0 0.9339)) +(: cnet_capableof_5d8fd59629 (CapableOf computer monitor_for_fire) (STV 1.0 0.9091)) +(: cnet_capableof_173ce20a86 (CapableOf conditioner condition_hair) (STV 1.0 0.9608)) +(: cnet_capableof_1982efebc9 (CapableOf conductor lead_orchestra) (STV 1.0 0.9339)) +(: cnet_capableof_e8f9d6b4d8 (CapableOf contraceptive_device prevent_pregnancy) (STV 1.0 0.9091)) +(: cnet_capableof_6162e165aa (CapableOf controller control_device) (STV 1.0 0.9091)) +(: cnet_capableof_60f40102c0 (CapableOf cook bone_fish) (STV 1.0 0.9091)) +(: cnet_capableof_fc5c261dd2 (CapableOf cook bone_roast) (STV 1.0 0.9091)) +(: cnet_capableof_b0317070f3 (CapableOf cook bread_chicken_breast) (STV 1.0 0.9091)) +(: cnet_capableof_34889a5603 (CapableOf cook bread_fish) (STV 1.0 0.9091)) +(: cnet_capableof_2379513f4a (CapableOf cook brown_chicken) (STV 1.0 0.9339)) +(: cnet_capableof_c4ec85816e (CapableOf cook brown_ground_beef) (STV 1.0 0.9454)) +(: cnet_capableof_c998b73966 (CapableOf cook brown_meat) (STV 1.0 0.9572)) +(: cnet_capableof_1f9712b6cd (CapableOf cook cook) (STV 1.0 0.9091)) +(: cnet_capableof_6c5b8d0dd5 (CapableOf cook cook_food) (STV 1.0 0.9091)) +(: cnet_capableof_7be8546df2 (CapableOf cook measure_flour) (STV 1.0 0.9608)) +(: cnet_capableof_29a7e1d313 (CapableOf cook measure_ingrediant) (STV 1.0 0.9091)) +(: cnet_capableof_9b6eb1cf9e (CapableOf cook measure_ingredient) (STV 1.0 0.9091)) +(: cnet_capableof_32ac53c86f (CapableOf cook prepare_meal) (STV 1.0 0.9608)) +(: cnet_capableof_301e19f85e (CapableOf cook quarter_pie) (STV 1.0 0.9091)) +(: cnet_capableof_60b4c97dca (CapableOf cook salt_food) (STV 1.0 0.9339)) +(: cnet_capableof_077569d46d (CapableOf cook salt_soup) (STV 1.0 0.9091)) +(: cnet_capableof_4ae791f989 (CapableOf cook season_dish) (STV 1.0 0.9091)) +(: cnet_capableof_87ab4a1765 (CapableOf cook season_food) (STV 1.0 0.9339)) +(: cnet_capableof_1f31e7e974 (CapableOf cook season_soup) (STV 1.0 0.9091)) +(: cnet_capableof_2c238b6f1e (CapableOf cook season_stew) (STV 1.0 0.9339)) +(: cnet_capableof_001a6c5138 (CapableOf cook separate_egg) (STV 1.0 0.9091)) +(: cnet_capableof_9b06abd7b3 (CapableOf cook taste_food_prepare) (STV 1.0 0.9091)) +(: cnet_capableof_5f0acd6a5a (CapableOf cook use_oven_to_cook) (STV 1.0 0.9091)) +(: cnet_capableof_3286912143 (CapableOf cook bread_meat) (STV 1.0 0.9091)) +(: cnet_capableof_87f5de294d (CapableOf cop tail_suspect) (STV 1.0 0.9454)) +(: cnet_capableof_5c338697dd (CapableOf corporation hold_bank_account) (STV 1.0 0.9339)) +(: cnet_capableof_38bd53d199 (CapableOf cotton feel_soft) (STV 1.0 0.9091)) +(: cnet_capableof_96504504c4 (CapableOf couch in_living_room) (STV 1.0 0.9572)) +(: cnet_capableof_9c54af8a14 (CapableOf couch_potato watch_tv) (STV 1.0 0.9091)) +(: cnet_capableof_061ac70d2c (CapableOf couple communicate) (STV 1.0 0.9091)) +(: cnet_capableof_01ea040d58 (CapableOf couple eat_at_resturant) (STV 1.0 0.9091)) +(: cnet_capableof_f7850a730d (CapableOf couple marry_each_other) (STV 1.0 0.9091)) +(: cnet_capableof_eeef341039 (CapableOf couple row_about) (STV 1.0 0.9339)) +(: cnet_capableof_a820de5778 (CapableOf couple think_about_divorcing) (STV 1.0 0.9091)) +(: cnet_capableof_e3816aba68 (CapableOf couple tie_knot) (STV 1.0 0.9572)) +(: cnet_capableof_8d26404a08 (CapableOf couple watch_movie) (STV 1.0 0.9339)) +(: cnet_capableof_64522a4fda (CapableOf couple watch_sunset) (STV 1.0 0.9091)) +(: cnet_capableof_8e0a3e8480 (CapableOf couple enjoy_sex) (STV 1.0 0.9091)) +(: cnet_capableof_a57fe6ad8d (CapableOf couple have_sex) (STV 1.0 0.9636)) +(: cnet_capableof_fb5854f111 (CapableOf couple row_with_each_other) (STV 1.0 0.9339)) +(: cnet_capableof_8149333b59 (CapableOf cover hide_thing) (STV 1.0 0.9091)) +(: cnet_capableof_e966ba92a0 (CapableOf cow jump_over_moon) (STV 1.0 0.9091)) +(: cnet_capableof_4018a904cf (CapableOf cow produce_methane_gas) (STV 1.0 0.9091)) +(: cnet_capableof_1d94299522 (CapableOf cow give_milk) (STV 1.0 0.9339)) +(: cnet_capableof_3d240f1bc2 (CapableOf cow jump_moon) (STV 1.0 0.9091)) +(: cnet_capableof_649d67cdbd (CapableOf cozy_blanket provide_comfort) (STV 1.0 0.9091)) +(: cnet_capableof_27b3b157b2 (CapableOf crack get_high) (STV 1.0 0.9091)) +(: cnet_capableof_6d2182bcb3 (CapableOf cramp_in_side problem) (STV 1.0 0.9091)) +(: cnet_capableof_cecd00fd5c (CapableOf creamer separate_cream_from_milk) (STV 1.0 0.9091)) +(: cnet_capableof_d92203f0ae (CapableOf creating_division result_in_loss_of_status_in_community) (STV 1.0 0.9091)) +(: cnet_capableof_2576a8d310 (CapableOf cricketer field_ball) (STV 1.0 0.9091)) +(: cnet_capableof_52e6395ee5 (CapableOf crime result_in_punishment) (STV 1.0 0.9091)) +(: cnet_capableof_aa8ac85155 (CapableOf criminal case_joint) (STV 1.0 0.9524)) +(: cnet_capableof_454d51733e (CapableOf criminal deal_drug) (STV 1.0 0.9091)) +(: cnet_capableof_dabdc188c2 (CapableOf criminal face_accuser) (STV 1.0 0.9091)) +(: cnet_capableof_bc72b32064 (CapableOf criminal break_law) (STV 1.0 0.9091)) +(: cnet_capableof_0c4062fc65 (CapableOf criminal use_gun_to_commit_crime) (STV 1.0 0.9454)) +(: cnet_capableof_b0cd171065 (CapableOf cup hold_liquid) (STV 1.0 0.9719)) +(: cnet_capableof_b639f76d0f (CapableOf customer pay_bill) (STV 1.0 0.9091)) +(: cnet_capableof_100f8e4d30 (CapableOf customer wait_in_line) (STV 1.0 0.9091)) +(: cnet_capableof_463a1c2dd3 (CapableOf cyclist ride_bike) (STV 1.0 0.9454)) +(: cnet_capableof_126156043a (CapableOf cyclist bicycle_to_work) (STV 1.0 0.9091)) +(: cnet_capableof_752c4c2d78 (CapableOf dam stop_moving_water) (STV 1.0 0.9091)) +(: cnet_capableof_f5d7d7887e (CapableOf dam control_river) (STV 1.0 0.9091)) +(: cnet_capableof_ceb9a8d565 (CapableOf dancer cut_rug) (STV 1.0 0.9454)) +(: cnet_capableof_17203aa98a (CapableOf dancer dance) (STV 1.0 0.9091)) +(: cnet_capableof_183c86fc8c (CapableOf dancer do_twist) (STV 1.0 0.9091)) +(: cnet_capableof_315f6afeeb (CapableOf deaf_people communicate_using_sign_language) (STV 1.0 0.9091)) +(: cnet_capableof_f45f36df69 (CapableOf deaf_people hear_nothing) (STV 1.0 0.9454)) +(: cnet_capableof_6ef402f27f (CapableOf dealer deal_card) (STV 1.0 0.9740)) +(: cnet_capableof_8741326334 (CapableOf death bring_sorrow) (STV 1.0 0.9572)) +(: cnet_capableof_c99909c844 (CapableOf deception delude) (STV 1.0 0.9091)) +(: cnet_capableof_b9c76ccd48 (CapableOf deli sell_sandwiche) (STV 1.0 0.9091)) +(: cnet_capableof_5a21b0f687 (CapableOf democrat fear_republican) (STV 1.0 0.9091)) +(: cnet_capableof_ba4617c999 (CapableOf democrat hope_bush_will_die_soon) (STV 1.0 0.9091)) +(: cnet_capableof_ab9dca08ea (CapableOf dentist fix_teeth) (STV 1.0 0.9572)) +(: cnet_capableof_d8aa11d4c1 (CapableOf dentist pull_teeth) (STV 1.0 0.9091)) +(: cnet_capableof_aa659db5d0 (CapableOf depressed_person kill_themselve) (STV 1.0 0.9091)) +(: cnet_capableof_2269eb6310 (CapableOf depression lead_person_to_attempt_suicide) (STV 1.0 0.9091)) +(: cnet_capableof_3a6fe9195d (CapableOf detail matter_during_combat_operation) (STV 1.0 0.9091)) +(: cnet_capableof_32549e3b99 (CapableOf detective case_joint) (STV 1.0 0.9608)) +(: cnet_capableof_3baa041ffe (CapableOf detective piece_together_clue) (STV 1.0 0.9339)) +(: cnet_capableof_2d514190b6 (CapableOf detective tail_suspect) (STV 1.0 0.9572)) +(: cnet_capableof_487740408f (CapableOf diamond last_forever) (STV 1.0 0.9091)) +(: cnet_capableof_9d70eff769 (CapableOf dime_store sell_variety_of_candy) (STV 1.0 0.9091)) +(: cnet_capableof_03f9971c83 (CapableOf diner salt_food) (STV 1.0 0.9339)) +(: cnet_capableof_6d367fbf3d (CapableOf diplomacy bridge_difference) (STV 1.0 0.9091)) +(: cnet_capableof_426137eb7b (CapableOf director direct_movie) (STV 1.0 0.9091)) +(: cnet_capableof_ca7fbde43b (CapableOf disposable_razor become_dull) (STV 1.0 0.9091)) +(: cnet_capableof_3e5261b0be (CapableOf distillery distill) (STV 1.0 0.9091)) +(: cnet_capableof_495db20e15 (CapableOf dna replicate) (STV 1.0 0.9091)) +(: cnet_capableof_b57350581e (CapableOf dock shore_boat) (STV 1.0 0.9091)) +(: cnet_capableof_0a85c49c0d (CapableOf doctor answer_question) (STV 1.0 0.9339)) +(: cnet_capableof_e14e99452c (CapableOf doctor care_for_patient) (STV 1.0 0.9454)) +(: cnet_capableof_7b3d586f02 (CapableOf doctor explain_illness) (STV 1.0 0.9091)) +(: cnet_capableof_93ea4af434 (CapableOf doctor help_patient) (STV 1.0 0.9524)) +(: cnet_capableof_4449794b60 (CapableOf doctor help_sick_person) (STV 1.0 0.9572)) +(: cnet_capableof_434e7a4163 (CapableOf doctor listen_to_person_s_heart) (STV 1.0 0.9091)) +(: cnet_capableof_2ebee3f785 (CapableOf doctor measure_height) (STV 1.0 0.9091)) +(: cnet_capableof_fc3e9dff86 (CapableOf doctor prescribe_medicine) (STV 1.0 0.9339)) +(: cnet_capableof_9eb8120fba (CapableOf doctor resuscitate) (STV 1.0 0.9091)) +(: cnet_capableof_752b05b1a2 (CapableOf doctor set_broken_bone) (STV 1.0 0.9339)) +(: cnet_capableof_74549154ac (CapableOf doctor visit_patient_at_home) (STV 1.0 0.9091)) +(: cnet_capableof_3daab9c06f (CapableOf doctor doctor_patient) (STV 1.0 0.9572)) +(: cnet_capableof_1550424704 (CapableOf doctor give_physical_examination) (STV 1.0 0.9524)) +(: cnet_capableof_0fc481097e (CapableOf doctor help_sick_people) (STV 1.0 0.9693)) +(: cnet_capableof_53ed641f59 (CapableOf doctor look_into_people_s_throat) (STV 1.0 0.9339)) +(: cnet_capableof_821f3ba2a7 (CapableOf dog bark) (STV 1.0 0.9877)) +(: cnet_capableof_578505b18c (CapableOf dog bark_at_stranger) (STV 1.0 0.9091)) +(: cnet_capableof_54b23e55a4 (CapableOf dog bite) (STV 1.0 0.9091)) +(: cnet_capableof_3ad09f4147 (CapableOf dog chasing_ball) (STV 1.0 0.9339)) +(: cnet_capableof_1aea8c782c (CapableOf dog corner_cat) (STV 1.0 0.9339)) +(: cnet_capableof_74da5005c5 (CapableOf dog dig_up_bone) (STV 1.0 0.9339)) +(: cnet_capableof_34a67a06b1 (CapableOf dog drink_water) (STV 1.0 0.9572)) +(: cnet_capableof_0662ce76f2 (CapableOf dog fight_cat) (STV 1.0 0.9339)) +(: cnet_capableof_a78aa6e595 (CapableOf dog frighten_intruder) (STV 1.0 0.9091)) +(: cnet_capableof_2472353121 (CapableOf dog guard_house) (STV 1.0 0.9811)) +(: cnet_capableof_b2a2bcab0e (CapableOf dog guard_property) (STV 1.0 0.9572)) +(: cnet_capableof_427179ea69 (CapableOf dog guide_blind) (STV 1.0 0.9339)) +(: cnet_capableof_c031d60246 (CapableOf dog guide_blind_person) (STV 1.0 0.9636)) +(: cnet_capableof_2a81b27158 (CapableOf dog hear_whistling) (STV 1.0 0.9454)) +(: cnet_capableof_81e1858d7b (CapableOf dog learn_to_do_trick) (STV 1.0 0.9339)) +(: cnet_capableof_e4c37b78be (CapableOf dog long_for_dead_owner) (STV 1.0 0.9091)) +(: cnet_capableof_a307d6b483 (CapableOf dog mark_territory) (STV 1.0 0.9454)) +(: cnet_capableof_6072ee8d79 (CapableOf dog mark_tree) (STV 1.0 0.9091)) +(: cnet_capableof_b000878de8 (CapableOf dog mother_puppy) (STV 1.0 0.9339)) +(: cnet_capableof_8157e0a616 (CapableOf dog pet) (STV 1.0 0.9740)) +(: cnet_capableof_c843859953 (CapableOf dog run) (STV 1.0 0.9677)) +(: cnet_capableof_2988d49da3 (CapableOf dog sense_danger) (STV 1.0 0.9572)) +(: cnet_capableof_696480728f (CapableOf dog shake_hand) (STV 1.0 0.9091)) +(: cnet_capableof_07b147bcbe (CapableOf dog smell_drug) (STV 1.0 0.9454)) +(: cnet_capableof_573b97311b (CapableOf dog smell_fear) (STV 1.0 0.9091)) +(: cnet_capableof_b01bab5c2c (CapableOf dog stay_in_place) (STV 1.0 0.9091)) +(: cnet_capableof_707e288c3a (CapableOf dog stray) (STV 1.0 0.9091)) +(: cnet_capableof_ec8754d7f4 (CapableOf dog trip_over_rope) (STV 1.0 0.9091)) +(: cnet_capableof_5e89581258 (CapableOf dog walk_on_leash) (STV 1.0 0.9339)) +(: cnet_capableof_97fde1d9c6 (CapableOf dog wear_collar) (STV 1.0 0.9091)) +(: cnet_capableof_2729427047 (CapableOf dog win_blue_ribbon) (STV 1.0 0.9091)) +(: cnet_capableof_76259459af (CapableOf dog do_many_thing) (STV 1.0 0.9339)) +(: cnet_capableof_f1c84ef58e (CapableOf dog doing_nothing) (STV 1.0 0.9091)) +(: cnet_capableof_27a5bd8d3a (CapableOf dog eat_bone) (STV 1.0 0.9572)) +(: cnet_capableof_46cd552903 (CapableOf dog guard_hous) (STV 1.0 0.9091)) +(: cnet_capableof_db88f869b9 (CapableOf dog guide_blind_people) (STV 1.0 0.9693)) +(: cnet_capableof_390d42de63 (CapableOf dog hear_high_pitched_nois) (STV 1.0 0.9524)) +(: cnet_capableof_d6f6a673d7 (CapableOf dog hear_very_high_pitched_nois) (STV 1.0 0.9091)) +(: cnet_capableof_515c330a8e (CapableOf dog hear_very_high_pitche) (STV 1.0 0.9454)) +(: cnet_capableof_557172effe (CapableOf dog hunt_foxe) (STV 1.0 0.9339)) +(: cnet_capableof_793a68a202 (CapableOf dog jump_up) (STV 1.0 0.9608)) +(: cnet_capableof_445904c85e (CapableOf dog lie_around_doing_nothing) (STV 1.0 0.9091)) +(: cnet_capableof_0671856801 (CapableOf dog live_in_dog_hous) (STV 1.0 0.9454)) +(: cnet_capableof_5c0b40c966 (CapableOf dog need_food) (STV 1.0 0.9339)) +(: cnet_capableof_5b1a923932 (CapableOf dog seem_to_love_owner) (STV 1.0 0.9091)) +(: cnet_capableof_204fbc490c (CapableOf dog sense_fear) (STV 1.0 0.9636)) +(: cnet_capableof_f0e6dcb98c (CapableOf dog smell_food) (STV 1.0 0.9339)) +(: cnet_capableof_1f75ccbf7b (CapableOf dog sound_loud) (STV 1.0 0.9091)) +(: cnet_capableof_42127f6695 (CapableOf dog wear_sweater) (STV 1.0 0.9339)) +(: cnet_capableof_85b4511ced (CapableOf dog wonder_where_everyone_went) (STV 1.0 0.9091)) +(: cnet_capableof_623ab9d1bc (CapableOf dolphin swim) (STV 1.0 0.9524)) +(: cnet_capableof_1d19fa4e4e (CapableOf donut eaten) (STV 1.0 0.9339)) +(: cnet_capableof_d5c4a01c71 (CapableOf door open) (STV 1.0 0.9339)) +(: cnet_capableof_35cb0e34b1 (CapableOf door_with_lock locke) (STV 1.0 0.9091)) +(: cnet_capableof_7733cd7b91 (CapableOf dove fly) (STV 1.0 0.9091)) +(: cnet_capableof_2a9afcbe96 (CapableOf dragon breathe_fire) (STV 1.0 0.9339)) +(: cnet_capableof_af070063af (CapableOf dragon fly) (STV 1.0 0.9091)) +(: cnet_capableof_82b859d972 (CapableOf drain tube) (STV 1.0 0.9091)) +(: cnet_capableof_17712c1b9f (CapableOf drinking_too_much cause_all_kind_of_health_problem) (STV 1.0 0.9339)) +(: cnet_capableof_2e9bd99025 (CapableOf drinking_too_much cause_headache) (STV 1.0 0.9091)) +(: cnet_capableof_0d1b88d319 (CapableOf driver starting_car) (STV 1.0 0.9454)) +(: cnet_capableof_1aff06d4cc (CapableOf driver turn_car) (STV 1.0 0.9091)) +(: cnet_capableof_d22c0fece9 (CapableOf drug cloud_thinking) (STV 1.0 0.9091)) +(: cnet_capableof_36bd141ed3 (CapableOf drug alter_emotion) (STV 1.0 0.9091)) +(: cnet_capableof_e06e9f8334 (CapableOf drug cause_illness) (STV 1.0 0.9091)) +(: cnet_capableof_6b02b91e50 (CapableOf drug change_subjective_consciousness) (STV 1.0 0.9091)) +(: cnet_capableof_d7534cc7ea (CapableOf drug cloud_mind) (STV 1.0 0.9659)) +(: cnet_capableof_b1a77962af (CapableOf drug cure_illness) (STV 1.0 0.9091)) +(: cnet_capableof_faf7c83d4d (CapableOf drunk lie_in_alleyway) (STV 1.0 0.9091)) +(: cnet_capableof_87d96022c3 (CapableOf dryer dry_clothing) (STV 1.0 0.9339)) +(: cnet_capableof_c1437c897d (CapableOf dryer dry_wet_clothe) (STV 1.0 0.9454)) +(: cnet_capableof_e15cf23c79 (CapableOf duck cooked) (STV 1.0 0.9091)) +(: cnet_capableof_8caf29fcf2 (CapableOf duvet cover_bed) (STV 1.0 0.9091)) +(: cnet_capableof_593d4cdefe (CapableOf ear hear_noise) (STV 1.0 0.9091)) +(: cnet_capableof_4cf106afa7 (CapableOf ear sense_sound) (STV 1.0 0.9524)) +(: cnet_capableof_f1d9821f94 (CapableOf earthquake shake_ground) (STV 1.0 0.9091)) +(: cnet_capableof_2fc41068c6 (CapableOf eater choose_food) (STV 1.0 0.9091)) +(: cnet_capableof_2f47a47a49 (CapableOf education change_subjective_consciousness) (STV 1.0 0.9091)) +(: cnet_capableof_9f9df56f01 (CapableOf education further_career) (STV 1.0 0.9572)) +(: cnet_capableof_c1881237eb (CapableOf education raise_intelligence) (STV 1.0 0.9091)) +(: cnet_capableof_e9583b6e46 (CapableOf effort amount_to_nothing) (STV 1.0 0.9091)) +(: cnet_capableof_2e0506f296 (CapableOf electricity kill_person) (STV 1.0 0.9091)) +(: cnet_capableof_94f77ce6ea (CapableOf electricity power_appliance) (STV 1.0 0.9091)) +(: cnet_capableof_272d286e69 (CapableOf elton_john perform_concert) (STV 1.0 0.9339)) +(: cnet_capableof_7ecf9076e3 (CapableOf emac copy_and_paste) (STV 1.0 0.9091)) +(: cnet_capableof_be1c88bbd0 (CapableOf emac copy_text) (STV 1.0 0.9091)) +(: cnet_capableof_b3c904539a (CapableOf emac paste_text) (STV 1.0 0.9091)) +(: cnet_capableof_ea51f46add (CapableOf emac save) (STV 1.0 0.9091)) +(: cnet_capableof_c5c7d2dec1 (CapableOf email convay_message_to_people) (STV 1.0 0.9091)) +(: cnet_capableof_8c69bd8112 (CapableOf emotion alter_behavior) (STV 1.0 0.9339)) +(: cnet_capableof_234817d9b7 (CapableOf employee please_boss) (STV 1.0 0.9339)) +(: cnet_capableof_b44df91b9c (CapableOf employer fire_employee) (STV 1.0 0.9454)) +(: cnet_capableof_d4edaab7f1 (CapableOf employer pay_employee) (STV 1.0 0.9454)) +(: cnet_capableof_d88a3ed98f (CapableOf emt resuscitate) (STV 1.0 0.9091)) +(: cnet_capableof_aa06ae9d50 (CapableOf enemy agree_on_peace_treaty) (STV 1.0 0.9091)) +(: cnet_capableof_3c677464e7 (CapableOf enemy trade_insult) (STV 1.0 0.9091)) +(: cnet_capableof_c64297faaa (CapableOf enemy die_horribly) (STV 1.0 0.9091)) +(: cnet_capableof_71a3411ce6 (CapableOf enemy holding_secret_weapon) (STV 1.0 0.9091)) +(: cnet_capableof_10e07e92ec (CapableOf energy equal_mass) (STV 1.0 0.9454)) +(: cnet_capableof_79bdf3aebd (CapableOf engineer bridge_river) (STV 1.0 0.9524)) +(: cnet_capableof_2d2c21a35d (CapableOf engineer build_bridge) (STV 1.0 0.9091)) +(: cnet_capableof_b289b2211b (CapableOf engineer design) (STV 1.0 0.9091)) +(: cnet_capableof_3298540ffa (CapableOf entrepreneur open_business) (STV 1.0 0.9091)) +(: cnet_capableof_78d24d1fef (CapableOf equality_for_everyone change_government) (STV 1.0 0.9091)) +(: cnet_capableof_dfb6200b61 (CapableOf equality_for_everyone change_society) (STV 1.0 0.9091)) +(: cnet_capableof_c0945a9176 (CapableOf equality_for_everyone make_life_better) (STV 1.0 0.9091)) +(: cnet_capableof_26c20500f3 (CapableOf equality_for_everyone misinterpreted) (STV 1.0 0.9091)) +(: cnet_capableof_7a15e16b58 (CapableOf equality_for_everyone stop_oppression) (STV 1.0 0.9091)) +(: cnet_capableof_f2a753d7f2 (CapableOf event happen_to) (STV 1.0 0.9339)) +(: cnet_capableof_9b501d99bd (CapableOf event surprise) (STV 1.0 0.9091)) +(: cnet_capableof_148acbee9f (CapableOf evian bottle_water) (STV 1.0 0.9454)) +(: cnet_capableof_1c9ef0fc5d (CapableOf excercise help_reduce_weight) (STV 1.0 0.9091)) +(: cnet_capableof_33f0c8f313 (CapableOf executioner hang_criminal) (STV 1.0 0.9454)) +(: cnet_capableof_a49a22c0d7 (CapableOf expert answer_question) (STV 1.0 0.9091)) +(: cnet_capableof_022b1bbb99 (CapableOf explorer discover_new_land) (STV 1.0 0.9339)) +(: cnet_capableof_9a9a8fecc3 (CapableOf eye sense_light) (STV 1.0 0.9091)) +(: cnet_capableof_43cadbc899 (CapableOf eye glass_over) (STV 1.0 0.9339)) +(: cnet_capableof_33930ee62f (CapableOf eye see_light) (STV 1.0 0.9454)) +(: cnet_capableof_463bd5fd3c (CapableOf eye tear_up) (STV 1.0 0.9091)) +(: cnet_capableof_e911f7795e (CapableOf factory bottle_medicine) (STV 1.0 0.9091)) +(: cnet_capableof_691060b2da (CapableOf factory bottle_water) (STV 1.0 0.9091)) +(: cnet_capableof_c5577dee7d (CapableOf factory bottle_wine) (STV 1.0 0.9091)) +(: cnet_capableof_d7021b6f23 (CapableOf factory produce_car) (STV 1.0 0.9454)) +(: cnet_capableof_1b34b4c109 (CapableOf fairy_tale feature_princess) (STV 1.0 0.9091)) +(: cnet_capableof_daeec2d6f2 (CapableOf faith light_way) (STV 1.0 0.9091)) +(: cnet_capableof_ce619588de (CapableOf faith move_mountain) (STV 1.0 0.9091)) +(: cnet_capableof_a7738ed036 (CapableOf false_friend let_down) (STV 1.0 0.9091)) +(: cnet_capableof_6c1ff02474 (CapableOf family_reunion involve_reunion_between_sister) (STV 1.0 0.9091)) +(: cnet_capableof_44d79706ec (CapableOf famous_person star_in_movie) (STV 1.0 0.9091)) +(: cnet_capableof_e3bb44d6f3 (CapableOf fan cool_air) (STV 1.0 0.9339)) +(: cnet_capableof_7f2f9469c1 (CapableOf fan cool_person) (STV 1.0 0.9636)) +(: cnet_capableof_4b0a0b88bd (CapableOf fan cool_room) (STV 1.0 0.9454)) +(: cnet_capableof_201a7c5229 (CapableOf farmer enter_barn) (STV 1.0 0.9091)) +(: cnet_capableof_eb7eed6ee4 (CapableOf farmer farm_corn) (STV 1.0 0.9339)) +(: cnet_capableof_6886fea68c (CapableOf farmer farm_land) (STV 1.0 0.9608)) +(: cnet_capableof_703432d08b (CapableOf farmer feed_chicken) (STV 1.0 0.9524)) +(: cnet_capableof_7d78464c69 (CapableOf farmer fence_field) (STV 1.0 0.9091)) +(: cnet_capableof_a4641a490c (CapableOf farmer gather_crop) (STV 1.0 0.9454)) +(: cnet_capableof_da8be77983 (CapableOf farmer milk_goat) (STV 1.0 0.9454)) +(: cnet_capableof_7dc75200d9 (CapableOf farmer pick_carrot) (STV 1.0 0.9091)) +(: cnet_capableof_f47513e20f (CapableOf farmer raise_crop) (STV 1.0 0.9091)) +(: cnet_capableof_57c88969d9 (CapableOf farmer seed_field) (STV 1.0 0.9524)) +(: cnet_capableof_d0b9dc6c7b (CapableOf farmer seed_plant) (STV 1.0 0.9091)) +(: cnet_capableof_a943e1de29 (CapableOf farmer water_crop) (STV 1.0 0.9454)) +(: cnet_capableof_473b1636e0 (CapableOf farmer grow_corn) (STV 1.0 0.9454)) +(: cnet_capableof_107059c74e (CapableOf farrier shoe_horse) (STV 1.0 0.9339)) +(: cnet_capableof_2e40a3bcff (CapableOf fast_car pass_slow_car) (STV 1.0 0.9091)) +(: cnet_capableof_e0baa75a61 (CapableOf fbi investigate) (STV 1.0 0.9091)) +(: cnet_capableof_28c675d63d (CapableOf fear confuse) (STV 1.0 0.9091)) +(: cnet_capableof_e8d3f66eca (CapableOf feeling alter_behavior) (STV 1.0 0.9091)) +(: cnet_capableof_5015f09dcb (CapableOf fence wall_yard) (STV 1.0 0.9091)) +(: cnet_capableof_87d158062a (CapableOf ferret bite) (STV 1.0 0.9091)) +(: cnet_capableof_6ded9a01ea (CapableOf finger point) (STV 1.0 0.9091)) +(: cnet_capableof_55c418fe83 (CapableOf finger point_at) (STV 1.0 0.9091)) +(: cnet_capableof_dee0f4ece3 (CapableOf finger push_button) (STV 1.0 0.9524)) +(: cnet_capableof_4a1c2fe127 (CapableOf fire burn) (STV 1.0 0.9339)) +(: cnet_capableof_f6e3d80d5a (CapableOf fire burn_cloth) (STV 1.0 0.9091)) +(: cnet_capableof_b4f3672fea (CapableOf fire burn_flesh) (STV 1.0 0.9091)) +(: cnet_capableof_5f4dab988a (CapableOf fire burn_hous) (STV 1.0 0.9636)) +(: cnet_capableof_e8151d1f6a (CapableOf fire burn_metal) (STV 1.0 0.9091)) +(: cnet_capableof_efeb59c03f (CapableOf fire burn_plastic) (STV 1.0 0.9091)) +(: cnet_capableof_b9294b48e5 (CapableOf fire burn_thing) (STV 1.0 0.9730)) +(: cnet_capableof_e99240772a (CapableOf fire burn_tire) (STV 1.0 0.9091)) +(: cnet_capableof_8d1eda06ea (CapableOf fire creat_smoke) (STV 1.0 0.9454)) +(: cnet_capableof_9e32a11cf4 (CapableOf fire cremate_human) (STV 1.0 0.9091)) +(: cnet_capableof_18d4984242 (CapableOf fire damage_thing) (STV 1.0 0.9339)) +(: cnet_capableof_150ccf78b7 (CapableOf fire destroy_all_thing) (STV 1.0 0.9454)) +(: cnet_capableof_9871403be8 (CapableOf fire destroy_forest) (STV 1.0 0.9091)) +(: cnet_capableof_7afd80c032 (CapableOf fire destroy_home) (STV 1.0 0.9091)) +(: cnet_capableof_830b8f98f8 (CapableOf fire harm) (STV 1.0 0.9091)) +(: cnet_capableof_abe350f2c8 (CapableOf fire heat_home) (STV 1.0 0.9339)) +(: cnet_capableof_ebb4d63dd1 (CapableOf fire heat_house) (STV 1.0 0.9524)) +(: cnet_capableof_4968011c03 (CapableOf fire heat_metal) (STV 1.0 0.9091)) +(: cnet_capableof_b828d47a82 (CapableOf fire heat_room) (STV 1.0 0.9524)) +(: cnet_capableof_834c861c02 (CapableOf fire hurt_people) (STV 1.0 0.9339)) +(: cnet_capableof_13bfe0cac0 (CapableOf fire hurt_person) (STV 1.0 0.9339)) +(: cnet_capableof_15aea5b731 (CapableOf fire kill_living_thing) (STV 1.0 0.9091)) +(: cnet_capableof_d4eabea434 (CapableOf fire kill_people) (STV 1.0 0.9339)) +(: cnet_capableof_d6ba4b8a3d (CapableOf fire need_fuel) (STV 1.0 0.9524)) +(: cnet_capableof_532e8d996c (CapableOf fire provide_comfort) (STV 1.0 0.9454)) +(: cnet_capableof_68f2bffdd2 (CapableOf fire shut_down_airport) (STV 1.0 0.9091)) +(: cnet_capableof_16f63eceb4 (CapableOf fire warm_hand) (STV 1.0 0.9524)) +(: cnet_capableof_172270b076 (CapableOf fire wipe_out_natural_habitat) (STV 1.0 0.9091)) +(: cnet_capableof_bbb9b02869 (CapableOf fireman put_out_fire) (STV 1.0 0.9091)) +(: cnet_capableof_cd39743140 (CapableOf fireman resuscitate) (STV 1.0 0.9091)) +(: cnet_capableof_19e9fb546e (CapableOf fireman wear_hat) (STV 1.0 0.9091)) +(: cnet_capableof_3d100f01e5 (CapableOf fireplace heat_room) (STV 1.0 0.9454)) +(: cnet_capableof_8c50e41917 (CapableOf fish live_in_lake) (STV 1.0 0.9091)) +(: cnet_capableof_ddce1cd592 (CapableOf fish live_underwater) (STV 1.0 0.9524)) +(: cnet_capableof_64ddbb2203 (CapableOf fish pet) (STV 1.0 0.9339)) +(: cnet_capableof_bdd05d78f0 (CapableOf fish swim) (STV 1.0 0.9091)) +(: cnet_capableof_67e6b436ed (CapableOf fisherman bone_salmon) (STV 1.0 0.9091)) +(: cnet_capableof_f654382024 (CapableOf fisherman fish_for_trout) (STV 1.0 0.9524)) +(: cnet_capableof_bdc9de4844 (CapableOf flag wave_in_wind) (STV 1.0 0.9454)) +(: cnet_capableof_b489da20e0 (CapableOf flag wave) (STV 1.0 0.9091)) +(: cnet_capableof_e86baf4142 (CapableOf flea lay_egg) (STV 1.0 0.9091)) +(: cnet_capableof_6897f8bf77 (CapableOf flea transmit_bubonic_plague) (STV 1.0 0.9091)) +(: cnet_capableof_991f4133e6 (CapableOf flick_of_thumb pitch_penny_with_accuracy) (STV 1.0 0.9091)) +(: cnet_capableof_2e349c0ca2 (CapableOf flick_of_thumb power_marble_many_feet) (STV 1.0 0.9091)) +(: cnet_capableof_148ce374ac (CapableOf fly fly) (STV 1.0 0.9524)) +(: cnet_capableof_ff2c34d57c (CapableOf flower many_color) (STV 1.0 0.9091)) +(: cnet_capableof_465e33dc3b (CapableOf flower smell_nice) (STV 1.0 0.9339)) +(: cnet_capableof_bcab93ee27 (CapableOf food cost_money) (STV 1.0 0.9091)) +(: cnet_capableof_c60c65d1b9 (CapableOf fork move_food_to_mouth) (STV 1.0 0.9091)) +(: cnet_capableof_1c58a0712d (CapableOf form follow_function) (STV 1.0 0.9454)) +(: cnet_capableof_b236a31b05 (CapableOf friend come_over) (STV 1.0 0.9339)) +(: cnet_capableof_1de2f69e71 (CapableOf friend give_gift_to_friend) (STV 1.0 0.9091)) +(: cnet_capableof_4ea879e591 (CapableOf friend keep_secret) (STV 1.0 0.9339)) +(: cnet_capableof_87c057dbc7 (CapableOf friend lend_tool) (STV 1.0 0.9091)) +(: cnet_capableof_3612bc2b45 (CapableOf friend meet_for_coffee) (STV 1.0 0.9091)) +(: cnet_capableof_6d2a7e112f (CapableOf friend rely_on) (STV 1.0 0.9091)) +(: cnet_capableof_c0ca7fedde (CapableOf friend return_phone_call) (STV 1.0 0.9091)) +(: cnet_capableof_4c1a26e133 (CapableOf friend talk) (STV 1.0 0.9454)) +(: cnet_capableof_56e6a5a28f (CapableOf friend borrow_money) (STV 1.0 0.9339)) +(: cnet_capableof_90cb880ae7 (CapableOf friend meet_for_lunch) (STV 1.0 0.9091)) +(: cnet_capableof_f6bd66702f (CapableOf friend meet_over_lunch) (STV 1.0 0.9454)) +(: cnet_capableof_0e450f590c (CapableOf frisbee descend_slowly_by_hovering) (STV 1.0 0.9091)) +(: cnet_capableof_0b8ee2c6da (CapableOf frog leap) (STV 1.0 0.9091)) +(: cnet_capableof_6b94f2c043 (CapableOf frog jump) (STV 1.0 0.9091)) +(: cnet_capableof_29befdb07e (CapableOf frog swim) (STV 1.0 0.9454)) +(: cnet_capableof_40563d1c00 (CapableOf frugal_shopper save_money) (STV 1.0 0.9091)) +(: cnet_capableof_9cb2fc6082 (CapableOf fruit grow_on_tree) (STV 1.0 0.9659)) +(: cnet_capableof_c9e0da17bf (CapableOf furnace heat_building) (STV 1.0 0.9091)) +(: cnet_capableof_6609d63d57 (CapableOf furnace heat_home) (STV 1.0 0.9454)) +(: cnet_capableof_f7f66c06fd (CapableOf furnace heat_house) (STV 1.0 0.9454)) +(: cnet_capableof_df68df9558 (CapableOf fuse short_out) (STV 1.0 0.9091)) +(: cnet_capableof_e1374e8642 (CapableOf fus short_out) (STV 1.0 0.9091)) +(: cnet_capableof_91e1755e9c (CapableOf gambler lose_money) (STV 1.0 0.9524)) +(: cnet_capableof_13482a011f (CapableOf gambler place_bet) (STV 1.0 0.9091)) +(: cnet_capableof_35cd486d8c (CapableOf gambler play_blackjack) (STV 1.0 0.9091)) +(: cnet_capableof_a50a5561ec (CapableOf gambler play_card) (STV 1.0 0.9091)) +(: cnet_capableof_f31d57cdc2 (CapableOf gambler play_poker) (STV 1.0 0.9091)) +(: cnet_capableof_7f8e2a2bc4 (CapableOf garbage hold_garbage) (STV 1.0 0.9091)) +(: cnet_capableof_ec46abc0a6 (CapableOf gardener pick_flower) (STV 1.0 0.9091)) +(: cnet_capableof_4dbe0d3735 (CapableOf gardener plant_ros) (STV 1.0 0.9454)) +(: cnet_capableof_9a976500fc (CapableOf gardener plant_seed) (STV 1.0 0.9339)) +(: cnet_capableof_bf7ca3564e (CapableOf gardener plant_tree) (STV 1.0 0.9524)) +(: cnet_capableof_81b41278a9 (CapableOf gardener thin_seedling) (STV 1.0 0.9091)) +(: cnet_capableof_bf1b4a3815 (CapableOf gardener water_flower) (STV 1.0 0.9608)) +(: cnet_capableof_34da26b6d6 (CapableOf gardener water_garden) (STV 1.0 0.9339)) +(: cnet_capableof_579d1b0fc5 (CapableOf gardener water_plant) (STV 1.0 0.9748)) +(: cnet_capableof_3c8929ea99 (CapableOf gardener grow_plant) (STV 1.0 0.9339)) +(: cnet_capableof_8ca02cc9ff (CapableOf gardner water_plant) (STV 1.0 0.9339)) +(: cnet_capableof_b66c215462 (CapableOf garlic leave_odor_behind) (STV 1.0 0.9091)) +(: cnet_capableof_0037ed899d (CapableOf garlic leave_taste_in_mouth) (STV 1.0 0.9091)) +(: cnet_capableof_4191d01dbb (CapableOf gasoline power_car) (STV 1.0 0.9572)) +(: cnet_capableof_45f2cb34c9 (CapableOf gasoline power_lawnmower) (STV 1.0 0.9091)) +(: cnet_capableof_07e96be384 (CapableOf gasoline power_mower) (STV 1.0 0.9091)) +(: cnet_capableof_0ed4c069d5 (CapableOf gate allow_selected_people_to_pass_by) (STV 1.0 0.9091)) +(: cnet_capableof_c4216ab1d7 (CapableOf general begin_attack) (STV 1.0 0.9091)) +(: cnet_capableof_b95aab837f (CapableOf general lead_army) (STV 1.0 0.9572)) +(: cnet_capableof_a2d04740a2 (CapableOf general lead_troop) (STV 1.0 0.9339)) +(: cnet_capableof_8471c486b8 (CapableOf general condition_soldier) (STV 1.0 0.9091)) +(: cnet_capableof_ffe15b07ff (CapableOf genius smoke_joint) (STV 1.0 0.9454)) +(: cnet_capableof_5b37e90864 (CapableOf george_bush lie) (STV 1.0 0.9339)) +(: cnet_capableof_7d5653c61c (CapableOf german speak_german) (STV 1.0 0.9339)) +(: cnet_capableof_6d4c00a43e (CapableOf germ make_sick) (STV 1.0 0.9091)) +(: cnet_capableof_d0217d8345 (CapableOf germ spread_disease) (STV 1.0 0.9572)) +(: cnet_capableof_b13124476e (CapableOf glass break_easily) (STV 1.0 0.9524)) +(: cnet_capableof_4aea09fd33 (CapableOf glass hold_liquid) (STV 1.0 0.9608)) +(: cnet_capableof_68b4fa051a (CapableOf glass hold_water) (STV 1.0 0.9339)) +(: cnet_capableof_7c62d60f5e (CapableOf glove fit_hand) (STV 1.0 0.9091)) +(: cnet_capableof_a68038ade6 (CapableOf glue hold_thing_together) (STV 1.0 0.9524)) +(: cnet_capableof_2550049fd8 (CapableOf glue stick_paper) (STV 1.0 0.9454)) +(: cnet_capableof_a0ed5630d8 (CapableOf glue stick_to) (STV 1.0 0.9339)) +(: cnet_capableof_08a676d634 (CapableOf glue stick_two_thing_together) (STV 1.0 0.9091)) +(: cnet_capableof_db0a0acc05 (CapableOf god everywhere) (STV 1.0 0.9524)) +(: cnet_capableof_ddb4768f71 (CapableOf god judge_men) (STV 1.0 0.9091)) +(: cnet_capableof_da1e502e28 (CapableOf god judge_people) (STV 1.0 0.9339)) +(: cnet_capableof_de8834aaf8 (CapableOf god love) (STV 1.0 0.9091)) +(: cnet_capableof_9e18b0b643 (CapableOf god quiet_storm) (STV 1.0 0.9091)) +(: cnet_capableof_977efab2df (CapableOf god work_miracle) (STV 1.0 0.9091)) +(: cnet_capableof_055fb567f3 (CapableOf golfer drive_ball) (STV 1.0 0.9091)) +(: cnet_capableof_05235c27fe (CapableOf golfer drive_golf_ball) (STV 1.0 0.9524)) +(: cnet_capableof_637fd3f08b (CapableOf good battle_evil) (STV 1.0 0.9659)) +(: cnet_capableof_fe2b0f6fd6 (CapableOf good_boat weather_storm) (STV 1.0 0.9454)) +(: cnet_capableof_74c044ebbb (CapableOf good_body arousing) (STV 1.0 0.9091)) +(: cnet_capableof_d1fb439d7d (CapableOf good_performer delight_audience) (STV 1.0 0.9091)) +(: cnet_capableof_ba247a29c1 (CapableOf good_plan further_goal) (STV 1.0 0.9091)) +(: cnet_capableof_b0a770afc6 (CapableOf good_planning further_goal) (STV 1.0 0.9339)) +(: cnet_capableof_ff300d4469 (CapableOf good_teacher plant_idea_in_fertile_mind) (STV 1.0 0.9091)) +(: cnet_capableof_8196061e84 (CapableOf gossip spread_rumor) (STV 1.0 0.9091)) +(: cnet_capableof_245ef0d726 (CapableOf government force_citizen_to_comply) (STV 1.0 0.9091)) +(: cnet_capableof_6484ff1333 (CapableOf grass stain_clothe) (STV 1.0 0.9339)) +(: cnet_capableof_6b0bc9ffa0 (CapableOf great_performance delight_audience) (STV 1.0 0.9339)) +(: cnet_capableof_e021bac9cb (CapableOf greeter welcome_customer) (STV 1.0 0.9454)) +(: cnet_capableof_74f36d4abe (CapableOf grocer bag_grocery) (STV 1.0 0.9572)) +(: cnet_capableof_438f9866ee (CapableOf grocer stock_shelve) (STV 1.0 0.9572)) +(: cnet_capableof_efa5588e47 (CapableOf group include_individual) (STV 1.0 0.9339)) +(: cnet_capableof_197569d96c (CapableOf guard guard_prison) (STV 1.0 0.9091)) +(: cnet_capableof_8a66853f0e (CapableOf guard guard_prisoner) (STV 1.0 0.9091)) +(: cnet_capableof_4891f9da94 (CapableOf guard sound_alarm) (STV 1.0 0.9636)) +(: cnet_capableof_f50da9eb38 (CapableOf guest stay_overnight) (STV 1.0 0.9454)) +(: cnet_capableof_63a3fe74e0 (CapableOf guest thank_host) (STV 1.0 0.9454)) +(: cnet_capableof_71269b673e (CapableOf guest stay_at_hotel) (STV 1.0 0.9091)) +(: cnet_capableof_aa89414ca0 (CapableOf gun kill_people) (STV 1.0 0.9524)) +(: cnet_capableof_25a63f8bda (CapableOf gun break) (STV 1.0 0.9091)) +(: cnet_capableof_b574bd02c5 (CapableOf gun fire_bullet_to_target) (STV 1.0 0.9091)) +(: cnet_capableof_47fb1e5c5c (CapableOf gun jam) (STV 1.0 0.9091)) +(: cnet_capableof_9ac823bf3e (CapableOf gun misfire) (STV 1.0 0.9091)) +(: cnet_capableof_be414521b1 (CapableOf gymnast do_flip) (STV 1.0 0.9091)) +(: cnet_capableof_8e9f51d722 (CapableOf hacker gather_information_about_computer) (STV 1.0 0.9091)) +(: cnet_capableof_3cac0a3518 (CapableOf hair fall_out) (STV 1.0 0.9524)) +(: cnet_capableof_bc112eef19 (CapableOf hair grow_on_leg) (STV 1.0 0.9091)) +(: cnet_capableof_30e974abea (CapableOf hair_dryer dry_hair) (STV 1.0 0.9454)) +(: cnet_capableof_0ec0792b6c (CapableOf haircut cost_twelve_dollar) (STV 1.0 0.9091)) +(: cnet_capableof_d61da7e43f (CapableOf hammer break_glass) (STV 1.0 0.9454)) +(: cnet_capableof_98c266bca3 (CapableOf hammer break_window) (STV 1.0 0.9091)) +(: cnet_capableof_6eea54f7ef (CapableOf hammer drive_in_nail) (STV 1.0 0.9339)) +(: cnet_capableof_e7cfd837c1 (CapableOf hammer nail_nail) (STV 1.0 0.9091)) +(: cnet_capableof_4b5efa7921 (CapableOf hammer strike_nail) (STV 1.0 0.9659)) +(: cnet_capableof_e0b2d01e67 (CapableOf hand cup_breast) (STV 1.0 0.9524)) +(: cnet_capableof_4f7cbaa78d (CapableOf hand cup_face) (STV 1.0 0.9091)) +(: cnet_capableof_f1f64a2862 (CapableOf hand cup_water) (STV 1.0 0.9572)) +(: cnet_capableof_51fc59f8b1 (CapableOf hand fix_collar) (STV 1.0 0.9091)) +(: cnet_capableof_f864f718e4 (CapableOf hand hand) (STV 1.0 0.9091)) +(: cnet_capableof_60dda3570e (CapableOf hand hit_person_s_face) (STV 1.0 0.9091)) +(: cnet_capableof_e77841dd87 (CapableOf hand hold_another_hand) (STV 1.0 0.9091)) +(: cnet_capableof_4d4ba4e53f (CapableOf hand push_door) (STV 1.0 0.9091)) +(: cnet_capableof_01817437ad (CapableOf hand reach_ass) (STV 1.0 0.9091)) +(: cnet_capableof_a5e6ba0751 (CapableOf hand cup_chin) (STV 1.0 0.9091)) +(: cnet_capableof_df421f8e7d (CapableOf hand tear_paper) (STV 1.0 0.9454)) +(: cnet_capableof_64ccbe840b (CapableOf hand tear_piece_of_paper) (STV 1.0 0.9091)) +(: cnet_capableof_0a959ea2d4 (CapableOf hand turn_knob) (STV 1.0 0.9091)) +(: cnet_capableof_5f962d10a7 (CapableOf hard_disk_drive store_file) (STV 1.0 0.9339)) +(: cnet_capableof_a0401fad60 (CapableOf hard_drive store_data) (STV 1.0 0.9091)) +(: cnet_capableof_e155c89039 (CapableOf hard_exercise make_muscle_sore) (STV 1.0 0.9091)) +(: cnet_capableof_e495d0c213 (CapableOf hate divide_people) (STV 1.0 0.9091)) +(: cnet_capableof_97a2c6e37b (CapableOf having_sex give_joy) (STV 1.0 0.9091)) +(: cnet_capableof_56a887689d (CapableOf having_sex increase_world_population) (STV 1.0 0.9091)) +(: cnet_capableof_75ff16f315 (CapableOf having_sex lead_to_more_kid) (STV 1.0 0.9608)) +(: cnet_capableof_f3ba3b9dc1 (CapableOf healthy_child do_cartwheel) (STV 1.0 0.9091)) +(: cnet_capableof_3a522faecf (CapableOf heart beat) (STV 1.0 0.9091)) +(: cnet_capableof_149e0d06c7 (CapableOf heat kill_bacteria) (STV 1.0 0.9091)) +(: cnet_capableof_0c0c89b277 (CapableOf heat sterilize) (STV 1.0 0.9091)) +(: cnet_capableof_2671c7184d (CapableOf heater heat_room) (STV 1.0 0.9454)) +(: cnet_capableof_1bf1b02750 (CapableOf hen mother_chick) (STV 1.0 0.9454)) +(: cnet_capableof_0b09ac0fa8 (CapableOf hen produce_egg) (STV 1.0 0.9091)) +(: cnet_capableof_eae9ddda52 (CapableOf hiker rest_feet) (STV 1.0 0.9524)) +(: cnet_capableof_8d93ee8868 (CapableOf homeowner fence_yard) (STV 1.0 0.9091)) +(: cnet_capableof_78f15eac77 (CapableOf homeowner paint_house) (STV 1.0 0.9339)) +(: cnet_capableof_9045d1cd72 (CapableOf homeowner seed_lawn) (STV 1.0 0.9091)) +(: cnet_capableof_40971b71b0 (CapableOf homeowner borrow_money_from_bank) (STV 1.0 0.9339)) +(: cnet_capableof_a475d47b9d (CapableOf hooker supply_sex_for_money) (STV 1.0 0.9454)) +(: cnet_capableof_a7ce2bada4 (CapableOf horse carry_person) (STV 1.0 0.9091)) +(: cnet_capableof_9b46498af8 (CapableOf horse drink_water) (STV 1.0 0.9091)) +(: cnet_capableof_e24f3eeb66 (CapableOf horse jump_barrier) (STV 1.0 0.9091)) +(: cnet_capableof_4a78351ce4 (CapableOf horse jump_fence) (STV 1.0 0.9091)) +(: cnet_capableof_0a690a56bb (CapableOf horse pull_cart) (STV 1.0 0.9454)) +(: cnet_capableof_d3d409ff65 (CapableOf horse run_in_pasture) (STV 1.0 0.9091)) +(: cnet_capableof_151c5eb4fc (CapableOf horse run_quickly) (STV 1.0 0.9091)) +(: cnet_capableof_d3327c42ee (CapableOf horse_owner shoe_horse) (STV 1.0 0.9091)) +(: cnet_capableof_9384370a90 (CapableOf hors drink_water) (STV 1.0 0.9091)) +(: cnet_capableof_e25c447109 (CapableOf hors eat_oat) (STV 1.0 0.9339)) +(: cnet_capableof_f2776ecb34 (CapableOf hors jump_high) (STV 1.0 0.9608)) +(: cnet_capableof_2b125e6681 (CapableOf hors pull_cart) (STV 1.0 0.9339)) +(: cnet_capableof_5e9a579149 (CapableOf hors race_on_track) (STV 1.0 0.9091)) +(: cnet_capableof_5c85bd6f10 (CapableOf hors sleep_standing) (STV 1.0 0.9339)) +(: cnet_capableof_3af7c26943 (CapableOf host welcome_guest) (STV 1.0 0.9719)) +(: cnet_capableof_f6e70dcbce (CapableOf hostess welcome_guest) (STV 1.0 0.9454)) +(: cnet_capableof_bc1f30959d (CapableOf hot_air_balloon float_in_air) (STV 1.0 0.9091)) +(: cnet_capableof_f5a654763c (CapableOf hot_chick work_at_hair_salon) (STV 1.0 0.9339)) +(: cnet_capableof_8b56a764ba (CapableOf hot_coal cook_food) (STV 1.0 0.9091)) +(: cnet_capableof_89de502fa5 (CapableOf hot_item burn) (STV 1.0 0.9091)) +(: cnet_capableof_376c5b26b2 (CapableOf house burn_down) (STV 1.0 0.9091)) +(: cnet_capableof_c1903efb0c (CapableOf house cost_lot) (STV 1.0 0.9091)) +(: cnet_capableof_fb789e696e (CapableOf house weather_storm) (STV 1.0 0.9091)) +(: cnet_capableof_c3d8c2f931 (CapableOf hous blow_down) (STV 1.0 0.9091)) +(: cnet_capableof_edc0cc64ed (CapableOf hous burn) (STV 1.0 0.9091)) +(: cnet_capableof_134123e103 (CapableOf hous cost_lot) (STV 1.0 0.9091)) +(: cnet_capableof_b9804bf02f (CapableOf hous weather_storm) (STV 1.0 0.9091)) +(: cnet_capableof_97a9f1def1 (CapableOf human better_himself) (STV 1.0 0.9091)) +(: cnet_capableof_0320ebf8d9 (CapableOf human catch_bus) (STV 1.0 0.9091)) +(: cnet_capableof_b65eb2fa00 (CapableOf human get_job) (STV 1.0 0.9091)) +(: cnet_capableof_48b2c02164 (CapableOf human go_on_date) (STV 1.0 0.9091)) +(: cnet_capableof_fc55b12f0f (CapableOf human have_fever) (STV 1.0 0.9091)) +(: cnet_capableof_3d96b8c6da (CapableOf human have_to_sleep) (STV 1.0 0.9091)) +(: cnet_capableof_310a0f0b68 (CapableOf human laugh_about_joke) (STV 1.0 0.9091)) +(: cnet_capableof_3471f67ae7 (CapableOf human laugh_at_joke) (STV 1.0 0.9091)) +(: cnet_capableof_30a9412894 (CapableOf human talk_to_human) (STV 1.0 0.9091)) +(: cnet_capableof_30781911d3 (CapableOf human taste_dish) (STV 1.0 0.9091)) +(: cnet_capableof_07cb90d80d (CapableOf human think_and_reason) (STV 1.0 0.9091)) +(: cnet_capableof_9ea427e85d (CapableOf human think_critically) (STV 1.0 0.9339)) +(: cnet_capableof_1685cb7964 (CapableOf human torture) (STV 1.0 0.9091)) +(: cnet_capableof_7e9735e4c3 (CapableOf human walk_on_two_leg) (STV 1.0 0.9091)) +(: cnet_capableof_7b57187110 (CapableOf humanity commit_genocide) (STV 1.0 0.9339)) +(: cnet_capableof_1ed20a07db (CapableOf human act_in_response_to_emotion) (STV 1.0 0.9091)) +(: cnet_capableof_336625a559 (CapableOf human break_leg) (STV 1.0 0.9091)) +(: cnet_capableof_117280c100 (CapableOf human change) (STV 1.0 0.9339)) +(: cnet_capableof_08288a8613 (CapableOf human crazy) (STV 1.0 0.9091)) +(: cnet_capableof_8435a4fd62 (CapableOf human die_only_once) (STV 1.0 0.9815)) +(: cnet_capableof_f7ef95755e (CapableOf human dream) (STV 1.0 0.9091)) +(: cnet_capableof_2cbed2bc7c (CapableOf human drive_car) (STV 1.0 0.9091)) +(: cnet_capableof_a6dab97e56 (CapableOf human eat_animal) (STV 1.0 0.9091)) +(: cnet_capableof_3a346f8067 (CapableOf human eat_meat) (STV 1.0 0.9091)) +(: cnet_capableof_c29ea585c5 (CapableOf human excrete) (STV 1.0 0.9091)) +(: cnet_capableof_1a72302343 (CapableOf human experience_life) (STV 1.0 0.9091)) +(: cnet_capableof_8a95924735 (CapableOf human feel_emotion) (STV 1.0 0.9339)) +(: cnet_capableof_4a6d772cf9 (CapableOf human have_sex) (STV 1.0 0.9339)) +(: cnet_capableof_ac578019df (CapableOf human heal) (STV 1.0 0.9339)) +(: cnet_capableof_c17439e048 (CapableOf human hear_sound) (STV 1.0 0.9091)) +(: cnet_capableof_ef57f30d9c (CapableOf human hunt_animal) (STV 1.0 0.9091)) +(: cnet_capableof_9e296a2109 (CapableOf human make_mistake) (STV 1.0 0.9339)) +(: cnet_capableof_f8c1f3eb65 (CapableOf human play_piano) (STV 1.0 0.9091)) +(: cnet_capableof_d84380cd54 (CapableOf human reason) (STV 1.0 0.9091)) +(: cnet_capableof_986c824987 (CapableOf human reproduce) (STV 1.0 0.9091)) +(: cnet_capableof_0826c4c731 (CapableOf human run) (STV 1.0 0.9524)) +(: cnet_capableof_261f2ee27d (CapableOf human see_with_eye) (STV 1.0 0.9454)) +(: cnet_capableof_d24739b9b5 (CapableOf human share) (STV 1.0 0.9091)) +(: cnet_capableof_72b4447c9c (CapableOf human sit_down) (STV 1.0 0.9091)) +(: cnet_capableof_28d9f54448 (CapableOf human talk) (STV 1.0 0.9091)) +(: cnet_capableof_1ffa56f44f (CapableOf human think) (STV 1.0 0.9091)) +(: cnet_capableof_1385083add (CapableOf hunter bag_deer) (STV 1.0 0.9091)) +(: cnet_capableof_8a49a697a2 (CapableOf hunter corner_prey) (STV 1.0 0.9524)) +(: cnet_capableof_cdb128a27a (CapableOf hunter cover_trap) (STV 1.0 0.9091)) +(: cnet_capableof_7a312a2fe2 (CapableOf hunter fire_rifle) (STV 1.0 0.9454)) +(: cnet_capableof_5c7410f4ff (CapableOf hunter kill_deer) (STV 1.0 0.9091)) +(: cnet_capableof_bae85e55cc (CapableOf hunter spot_prey) (STV 1.0 0.9454)) +(: cnet_capableof_671b246ab9 (CapableOf hunter use_gun) (STV 1.0 0.9091)) +(: cnet_capableof_f65f55a46d (CapableOf hunter use_automatic_weapon) (STV 1.0 0.9091)) +(: cnet_capableof_d3ddac4273 (CapableOf hypocrite act_like_friend) (STV 1.0 0.9091)) +(: cnet_capableof_bd9d4ce4d9 (CapableOf ice become_water) (STV 1.0 0.9339)) +(: cnet_capableof_13c879851f (CapableOf ice cool_beverage) (STV 1.0 0.9091)) +(: cnet_capableof_17d31e39ab (CapableOf ice cool_body) (STV 1.0 0.9339)) +(: cnet_capableof_d165a85831 (CapableOf ice cool_drink) (STV 1.0 0.9659)) +(: cnet_capableof_ba61c03f5b (CapableOf ice cool_food) (STV 1.0 0.9091)) +(: cnet_capableof_684d50927a (CapableOf ice cool_water) (STV 1.0 0.9091)) +(: cnet_capableof_9e36912b3a (CapableOf ice freeze_meat) (STV 1.0 0.9091)) +(: cnet_capableof_df48067b29 (CapableOf ice melt) (STV 1.0 0.9091)) +(: cnet_capableof_d969058c98 (CapableOf ice_cream melt) (STV 1.0 0.9454)) +(: cnet_capableof_5a2f62d9d1 (CapableOf idea divide_country) (STV 1.0 0.9091)) +(: cnet_capableof_daa1bf14fc (CapableOf ignorance anger_intelligence) (STV 1.0 0.9339)) +(: cnet_capableof_e4eaadb877 (CapableOf in_space_nobody hear_scream) (STV 1.0 0.9091)) +(: cnet_capableof_4d407704ec (CapableOf individual object_to_another_s_behavior) (STV 1.0 0.9091)) +(: cnet_capableof_43eacbcc0e (CapableOf ink stain_cloth) (STV 1.0 0.9454)) +(: cnet_capableof_abe93c794c (CapableOf inmate scape_prison) (STV 1.0 0.9091)) +(: cnet_capableof_1fb6b39702 (CapableOf insect buzz) (STV 1.0 0.9091)) +(: cnet_capableof_33543bda75 (CapableOf instructor train_student) (STV 1.0 0.9091)) +(: cnet_capableof_7710338bcf (CapableOf instrument make_music) (STV 1.0 0.9091)) +(: cnet_capableof_fbbf34e2b5 (CapableOf instrument include_trumpet) (STV 1.0 0.9339)) +(: cnet_capableof_7668de0abe (CapableOf interest accrue_on_annual_basis) (STV 1.0 0.9091)) +(: cnet_capableof_80131ee733 (CapableOf internet find_website) (STV 1.0 0.9091)) +(: cnet_capableof_2bc726b507 (CapableOf internet stream_video) (STV 1.0 0.9339)) +(: cnet_capableof_ab452424b3 (CapableOf inventor invent) (STV 1.0 0.9091)) +(: cnet_capableof_9581f797c0 (CapableOf investigator question_suspect) (STV 1.0 0.9091)) +(: cnet_capableof_9c65b99e28 (CapableOf investor save_money) (STV 1.0 0.9091)) +(: cnet_capableof_0269d05ca8 (CapableOf iron press_clothe) (STV 1.0 0.9636)) +(: cnet_capableof_5d276f5c82 (CapableOf iron press_pant) (STV 1.0 0.9091)) +(: cnet_capableof_2bc27d1ec4 (CapableOf iron rust) (STV 1.0 0.9524)) +(: cnet_capableof_9a1560d3d4 (CapableOf issue matter_to_voter) (STV 1.0 0.9091)) +(: cnet_capableof_3225a92642 (CapableOf jack deal_drug) (STV 1.0 0.9091)) +(: cnet_capableof_e6afa152d1 (CapableOf jack raise_car) (STV 1.0 0.9091)) +(: cnet_capableof_5537ca9fd8 (CapableOf janitor clean_toilet) (STV 1.0 0.9091)) +(: cnet_capableof_01d0aca92c (CapableOf japanese speak_english) (STV 1.0 0.9091)) +(: cnet_capableof_5d0f8448a8 (CapableOf jazz_music use_saxophone) (STV 1.0 0.9091)) +(: cnet_capableof_22aab8a85f (CapableOf jerk laugh_at_failure) (STV 1.0 0.9091)) +(: cnet_capableof_4749b9dd1d (CapableOf jerk push_limit) (STV 1.0 0.9091)) +(: cnet_capableof_2280947d87 (CapableOf jerk throw_snowball) (STV 1.0 0.9091)) +(: cnet_capableof_0eb7b40625 (CapableOf jesus feed_multitude) (STV 1.0 0.9091)) +(: cnet_capableof_aaf9dac185 (CapableOf jesus save_soul) (STV 1.0 0.9091)) +(: cnet_capableof_0ff23ba273 (CapableOf jesus shoulder_cross) (STV 1.0 0.9091)) +(: cnet_capableof_94903970eb (CapableOf jesus spread_love) (STV 1.0 0.9091)) +(: cnet_capableof_2f6219a84e (CapableOf jeweler wind_watch) (STV 1.0 0.9454)) +(: cnet_capableof_8eca3546ec (CapableOf jew doubt_god) (STV 1.0 0.9454)) +(: cnet_capableof_2f9c71bf10 (CapableOf jew fast_on_yom_kippur) (STV 1.0 0.9339)) +(: cnet_capableof_30db307b10 (CapableOf jockey ride_fast_horse) (STV 1.0 0.9091)) +(: cnet_capableof_47cfee33d3 (CapableOf jockey ride_horse) (STV 1.0 0.9091)) +(: cnet_capableof_dfb792739a (CapableOf john_safran annoying) (STV 1.0 0.9091)) +(: cnet_capableof_c5fbddb135 (CapableOf judge decide_criminal_s_fate) (STV 1.0 0.9091)) +(: cnet_capableof_252ac9ccc1 (CapableOf judge fine_defendant) (STV 1.0 0.9524)) +(: cnet_capableof_52f53cb627 (CapableOf judge fine_defendent) (STV 1.0 0.9454)) +(: cnet_capableof_7aa1b215a5 (CapableOf judge fine_law_breaker) (STV 1.0 0.9572)) +(: cnet_capableof_f64790794b (CapableOf judge fine_lawyer) (STV 1.0 0.9091)) +(: cnet_capableof_c43f6cd4ab (CapableOf judge fine_offender) (STV 1.0 0.9454)) +(: cnet_capableof_1b8216e935 (CapableOf judge judge_defendant_to_guilty) (STV 1.0 0.9091)) +(: cnet_capableof_9698a05c89 (CapableOf judge right_wrong) (STV 1.0 0.9454)) +(: cnet_capableof_da80e544ab (CapableOf judge settle_argument) (STV 1.0 0.9091)) +(: cnet_capableof_ba8b1ec924 (CapableOf judge settle_dispute) (STV 1.0 0.9091)) +(: cnet_capableof_ce6a2642ef (CapableOf jug hold_liquid) (STV 1.0 0.9091)) +(: cnet_capableof_621279be04 (CapableOf juror serve_on_jury) (STV 1.0 0.9091)) +(: cnet_capableof_3120af42e6 (CapableOf jury side_with_defendant) (STV 1.0 0.9454)) +(: cnet_capableof_5799b8b12c (CapableOf kangaroo jump) (STV 1.0 0.9091)) +(: cnet_capableof_f8ae32c6dc (CapableOf kangaroo jump_fence) (STV 1.0 0.9091)) +(: cnet_capableof_78ba03df94 (CapableOf kangaroo jump_high) (STV 1.0 0.9339)) +(: cnet_capableof_635f1a7540 (CapableOf key open_door) (STV 1.0 0.9677)) +(: cnet_capableof_405da7d1a7 (CapableOf key open_lock) (STV 1.0 0.9693)) +(: cnet_capableof_0b966790c6 (CapableOf key start_car) (STV 1.0 0.9572)) +(: cnet_capableof_fe2283add7 (CapableOf kid trading_baseball_card) (STV 1.0 0.9091)) +(: cnet_capableof_95fe992d9a (CapableOf killer kill) (STV 1.0 0.9091)) +(: cnet_capableof_283948901c (CapableOf kite fly) (STV 1.0 0.9572)) +(: cnet_capableof_cad00214ef (CapableOf knife butter_bread) (STV 1.0 0.9454)) +(: cnet_capableof_73975739f1 (CapableOf knife cut) (STV 1.0 0.9454)) +(: cnet_capableof_a597d47b1c (CapableOf knife cut_apple) (STV 1.0 0.9454)) +(: cnet_capableof_7365fc30f0 (CapableOf knife hurt) (STV 1.0 0.9339)) +(: cnet_capableof_9e4da24e23 (CapableOf knife hurt_dog) (STV 1.0 0.9454)) +(: cnet_capableof_42022b1db2 (CapableOf knife spread_butter) (STV 1.0 0.9791)) +(: cnet_capableof_c9ef84b4a1 (CapableOf knife spread_peanut_butter) (STV 1.0 0.9677)) +(: cnet_capableof_8e75f792ca (CapableOf knight ride_horse) (STV 1.0 0.9636)) +(: cnet_capableof_5dda044db8 (CapableOf knight storm_castle) (STV 1.0 0.9091)) +(: cnet_capableof_eb255ec567 (CapableOf knive cut_thing) (STV 1.0 0.9339)) +(: cnet_capableof_22ce93a70f (CapableOf knive spread_butter) (STV 1.0 0.9339)) +(: cnet_capableof_f2a6f81623 (CapableOf lack_of_sleep cause_insanity) (STV 1.0 0.9091)) +(: cnet_capableof_fe1c9deca1 (CapableOf lactose_tolerant_people drink_milk) (STV 1.0 0.9091)) +(: cnet_capableof_1b8821d9a7 (CapableOf ladder reach_roof) (STV 1.0 0.9454)) +(: cnet_capableof_f20b0957e3 (CapableOf lamp illuminate) (STV 1.0 0.9339)) +(: cnet_capableof_7726b56978 (CapableOf lamp light_up_room) (STV 1.0 0.9091)) +(: cnet_capableof_edc0019adb (CapableOf landlord let_flat) (STV 1.0 0.9454)) +(: cnet_capableof_44fcde37e0 (CapableOf lawnmower mow_lawn) (STV 1.0 0.9091)) +(: cnet_capableof_9539a597cc (CapableOf lawyer object_in_court) (STV 1.0 0.9572)) +(: cnet_capableof_17633c4b24 (CapableOf lawyer object_statement) (STV 1.0 0.9091)) +(: cnet_capableof_23fb26cf3a (CapableOf lawyer object_to_hearsay) (STV 1.0 0.9091)) +(: cnet_capableof_83f3ca031f (CapableOf lawyer object_to_question) (STV 1.0 0.9572)) +(: cnet_capableof_5fc4f23555 (CapableOf lawyer object_to_statement) (STV 1.0 0.9091)) +(: cnet_capableof_15bf382cd4 (CapableOf lawyer present_case_to_court) (STV 1.0 0.9091)) +(: cnet_capableof_07637b7660 (CapableOf lawyer produce_evidence) (STV 1.0 0.9091)) +(: cnet_capableof_2480577aaa (CapableOf lawyer question_witness) (STV 1.0 0.9091)) +(: cnet_capableof_f7b5a8f7b5 (CapableOf lawyer rest_case) (STV 1.0 0.9659)) +(: cnet_capableof_5ad6ddfab3 (CapableOf lawyer settle_dispute) (STV 1.0 0.9339)) +(: cnet_capableof_1c397d17c2 (CapableOf lawyer settle_lawsuit) (STV 1.0 0.9454)) +(: cnet_capableof_fcec700742 (CapableOf lawyer state_case) (STV 1.0 0.9636)) +(: cnet_capableof_2c15b6e2bc (CapableOf lawyer keep_quiet) (STV 1.0 0.9091)) +(: cnet_capableof_f053c3efa3 (CapableOf lawyer object_to_evidence) (STV 1.0 0.9091)) +(: cnet_capableof_bb44b797d4 (CapableOf lawyer press_charge) (STV 1.0 0.9091)) +(: cnet_capableof_0c551950c2 (CapableOf lawyer prove_cas) (STV 1.0 0.9339)) +(: cnet_capableof_cf61562852 (CapableOf laziness subject_to_poverty) (STV 1.0 0.9091)) +(: cnet_capableof_0462c530cc (CapableOf leader chair_meeting) (STV 1.0 0.9339)) +(: cnet_capableof_6e085c5678 (CapableOf leader present_award) (STV 1.0 0.9091)) +(: cnet_capableof_236fc47458 (CapableOf leaf fall_from_tree) (STV 1.0 0.9454)) +(: cnet_capableof_407d36bcdf (CapableOf learning increase_knowledge) (STV 1.0 0.9091)) +(: cnet_capableof_e64a401dca (CapableOf learning take_time) (STV 1.0 0.9091)) +(: cnet_capableof_ede3198a5e (CapableOf leave cover_ground) (STV 1.0 0.9339)) +(: cnet_capableof_1bceaac8a9 (CapableOf leave fall_from_tree) (STV 1.0 0.9339)) +(: cnet_capableof_4890eddeff (CapableOf leave fall_off_tree) (STV 1.0 0.9339)) +(: cnet_capableof_263ecaeb75 (CapableOf liar give_false_information) (STV 1.0 0.9091)) +(: cnet_capableof_1590345294 (CapableOf librarian answer_question) (STV 1.0 0.9091)) +(: cnet_capableof_6d08644956 (CapableOf librarian sort_book) (STV 1.0 0.9454)) +(: cnet_capableof_6b943d1f07 (CapableOf lid cover_pot) (STV 1.0 0.9454)) +(: cnet_capableof_59c5370b02 (CapableOf life_form reproduce) (STV 1.0 0.9091)) +(: cnet_capableof_dc492f707b (CapableOf life_ring save_live) (STV 1.0 0.9091)) +(: cnet_capableof_19f91e20a7 (CapableOf light illuminate) (STV 1.0 0.9091)) +(: cnet_capableof_eb5c021c32 (CapableOf light travel) (STV 1.0 0.9091)) +(: cnet_capableof_0f1518b35f (CapableOf light_bulb burn_out) (STV 1.0 0.9091)) +(: cnet_capableof_76aebd77c4 (CapableOf lightning kill_people) (STV 1.0 0.9339)) +(: cnet_capableof_74c5aa2977 (CapableOf lion hunt_zebra) (STV 1.0 0.9454)) +(: cnet_capableof_1e81e5d163 (CapableOf lion roar) (STV 1.0 0.9524)) +(: cnet_capableof_e6fe940f87 (CapableOf lion hunt) (STV 1.0 0.9091)) +(: cnet_capableof_613b703ec6 (CapableOf liquid flow) (STV 1.0 0.9091)) +(: cnet_capableof_be2e18a92a (CapableOf little_girl dress_doll) (STV 1.0 0.9454)) +(: cnet_capableof_63db2d1bef (CapableOf living_being die) (STV 1.0 0.9693)) +(: cnet_capableof_8c2da24070 (CapableOf living_dog bark) (STV 1.0 0.9091)) +(: cnet_capableof_05f9fd3776 (CapableOf living_thing move) (STV 1.0 0.9091)) +(: cnet_capableof_b7ca75f1c2 (CapableOf living_thing procreate) (STV 1.0 0.9091)) +(: cnet_capableof_53c9d9b5be (CapableOf living_thing sense_environment) (STV 1.0 0.9091)) +(: cnet_capableof_c3e21ff867 (CapableOf lizard sun_itself) (STV 1.0 0.9454)) +(: cnet_capableof_9f90c34985 (CapableOf lizard sun_itself_on_rock) (STV 1.0 0.9659)) +(: cnet_capableof_d9a175e7c1 (CapableOf lizard sun_on_rock) (STV 1.0 0.9608)) +(: cnet_capableof_2c846a1fd2 (CapableOf lizard change_colour) (STV 1.0 0.9339)) +(: cnet_capableof_490d9aaf66 (CapableOf locksmith fix_broken_lock) (STV 1.0 0.9091)) +(: cnet_capableof_ac809a311a (CapableOf locksmith pick_lock) (STV 1.0 0.9339)) +(: cnet_capableof_88f8e7db18 (CapableOf logic help) (STV 1.0 0.9091)) +(: cnet_capableof_b03ad51dfa (CapableOf loneliness lead_to_depression) (STV 1.0 0.9091)) +(: cnet_capableof_343f161f5f (CapableOf lord own_servant) (STV 1.0 0.9091)) +(: cnet_capableof_8e6c67ea35 (CapableOf lost_sailor live_on_gilligan_s_island) (STV 1.0 0.9091)) +(: cnet_capableof_cae50a565a (CapableOf love bring_joy) (STV 1.0 0.9091)) +(: cnet_capableof_1a7ed6ad8d (CapableOf love destroy) (STV 1.0 0.9091)) +(: cnet_capableof_33bb5142b2 (CapableOf love fix_many_problem) (STV 1.0 0.9091)) +(: cnet_capableof_74d57c23db (CapableOf love give_hope) (STV 1.0 0.9091)) +(: cnet_capableof_7cb0f7ddd6 (CapableOf love hurt) (STV 1.0 0.9572)) +(: cnet_capableof_e721843a8b (CapableOf love last_forever) (STV 1.0 0.9339)) +(: cnet_capableof_5a918a80f8 (CapableOf love last_life_time) (STV 1.0 0.9339)) +(: cnet_capableof_83739e3dfa (CapableOf love make_better_person) (STV 1.0 0.9091)) +(: cnet_capableof_cc39e7a534 (CapableOf love surprise_enemy) (STV 1.0 0.9091)) +(: cnet_capableof_14df2acaa4 (CapableOf lover delight_beloved_with_sweet_word) (STV 1.0 0.9091)) +(: cnet_capableof_3a5c19ef93 (CapableOf lover make_love) (STV 1.0 0.9091)) +(: cnet_capableof_d94c7d3dec (CapableOf machine bottle_soda) (STV 1.0 0.9091)) +(: cnet_capableof_2e1579acb4 (CapableOf machine construct) (STV 1.0 0.9091)) +(: cnet_capableof_889cdeba4b (CapableOf machine dispense) (STV 1.0 0.9091)) +(: cnet_capableof_1f9a0177c4 (CapableOf machine sort_letter) (STV 1.0 0.9091)) +(: cnet_capableof_386dd9ed87 (CapableOf machine vend) (STV 1.0 0.9091)) +(: cnet_capableof_2933233583 (CapableOf machine wash_dishe) (STV 1.0 0.9091)) +(: cnet_capableof_209a333571 (CapableOf machine bottle_wine) (STV 1.0 0.9091)) +(: cnet_capableof_4aad3b8072 (CapableOf machine box_fruit) (STV 1.0 0.9091)) +(: cnet_capableof_65c94ccd74 (CapableOf machine fail_to_work) (STV 1.0 0.9091)) +(: cnet_capableof_4b26ba16a7 (CapableOf machine take_people_away_from_planet_earth) (STV 1.0 0.9091)) +(: cnet_capableof_be53848e53 (CapableOf machinist machine_metal) (STV 1.0 0.9091)) +(: cnet_capableof_ced653b881 (CapableOf machinist machine_part) (STV 1.0 0.9091)) +(: cnet_capableof_41d86b822e (CapableOf magazine print_on_glossy_paper) (STV 1.0 0.9091)) +(: cnet_capableof_1aea637829 (CapableOf magician fool_audience) (STV 1.0 0.9786)) +(: cnet_capableof_4eb60bee17 (CapableOf magician saw_woman_in_half) (STV 1.0 0.9339)) +(: cnet_capableof_f5be3dcfcd (CapableOf magician produce_rabbit_from_hat) (STV 1.0 0.9091)) +(: cnet_capableof_704689a18a (CapableOf maid clean_house) (STV 1.0 0.9572)) +(: cnet_capableof_52de9752fd (CapableOf maid clean_room) (STV 1.0 0.9091)) +(: cnet_capableof_a0975a169d (CapableOf maid cleaning_house) (STV 1.0 0.9572)) +(: cnet_capableof_7cd5a36c0f (CapableOf maid iron_clothe) (STV 1.0 0.9454)) +(: cnet_capableof_c3f6ceb40d (CapableOf maid iron_shirt) (STV 1.0 0.9091)) +(: cnet_capableof_7b45c13545 (CapableOf male ejaculate) (STV 1.0 0.9524)) +(: cnet_capableof_1711c26944 (CapableOf male father_child) (STV 1.0 0.9636)) +(: cnet_capableof_6f23bbf249 (CapableOf male father_offspring) (STV 1.0 0.9572)) +(: cnet_capableof_9ebed83852 (CapableOf male kiss_female) (STV 1.0 0.9091)) +(: cnet_capableof_92daf5de31 (CapableOf manager chair_meeting) (STV 1.0 0.9454)) +(: cnet_capableof_ef38ed85c5 (CapableOf maniac plant_bomb) (STV 1.0 0.9091)) +(: cnet_capableof_d424fa064e (CapableOf manufacturer market_product) (STV 1.0 0.9339)) +(: cnet_capableof_25865393b2 (CapableOf marijuana cause_to_feel_high) (STV 1.0 0.9454)) +(: cnet_capableof_8db67a8ed4 (CapableOf marijuana ease_chonic_pain) (STV 1.0 0.9339)) +(: cnet_capableof_ec8d386bc0 (CapableOf marijuana get_high) (STV 1.0 0.9339)) +(: cnet_capableof_e70f8f7700 (CapableOf marijuana please_hippy) (STV 1.0 0.9339)) +(: cnet_capableof_b3e7d33d8d (CapableOf masochist subject_herself_to_pain) (STV 1.0 0.9339)) +(: cnet_capableof_656b73ceac (CapableOf masochist subject_himself_to_pain) (STV 1.0 0.9091)) +(: cnet_capableof_38e13148ca (CapableOf match burn_paper) (STV 1.0 0.9454)) +(: cnet_capableof_0cad85970d (CapableOf match light_candle) (STV 1.0 0.9636)) +(: cnet_capableof_7985ccd413 (CapableOf match light_fire) (STV 1.0 0.9524)) +(: cnet_capableof_fcba36ee77 (CapableOf matche light_candle) (STV 1.0 0.9524)) +(: cnet_capableof_4ab6b37fe6 (CapableOf matche light_fire) (STV 1.0 0.9524)) +(: cnet_capableof_384b3be6fb (CapableOf mathematician add_number) (STV 1.0 0.9091)) +(: cnet_capableof_87bcd60403 (CapableOf mayor present_award) (STV 1.0 0.9454)) +(: cnet_capableof_5f39c72cb4 (CapableOf mayor govern_town) (STV 1.0 0.9339)) +(: cnet_capableof_39ec42e3a7 (CapableOf mechanic oil_car) (STV 1.0 0.9091)) +(: cnet_capableof_6f6e016f28 (CapableOf mechanic service_car) (STV 1.0 0.9608)) +(: cnet_capableof_84ec1649a9 (CapableOf mechanic servicing_car) (STV 1.0 0.9608)) +(: cnet_capableof_8749113eee (CapableOf mediator settle_argument) (STV 1.0 0.9091)) +(: cnet_capableof_76ab515a2e (CapableOf medical_doctor diagnose) (STV 1.0 0.9339)) +(: cnet_capableof_e8df53d1f3 (CapableOf medical_doctor identify_illness) (STV 1.0 0.9339)) +(: cnet_capableof_6d7ec9aa8c (CapableOf medicine slow_disease) (STV 1.0 0.9091)) +(: cnet_capableof_850b0673c5 (CapableOf meditation change_subjective_consciousness) (STV 1.0 0.9091)) +(: cnet_capableof_bf438a0cf2 (CapableOf meditation quiet_chattering_mind) (STV 1.0 0.9091)) +(: cnet_capableof_620f95639a (CapableOf meditation quiet_mind) (STV 1.0 0.9091)) +(: cnet_capableof_843b76205c (CapableOf meditator light_candle) (STV 1.0 0.9091)) +(: cnet_capableof_a63f2e786a (CapableOf medium read_tarot_card) (STV 1.0 0.9091)) +(: cnet_capableof_380d6dd0f1 (CapableOf mentally_ill talk_to_themselve) (STV 1.0 0.9091)) +(: cnet_capableof_9824de86cd (CapableOf merchant sell_good) (STV 1.0 0.9339)) +(: cnet_capableof_0cfd6b66fd (CapableOf meteor enter_atmosphere) (STV 1.0 0.9091)) +(: cnet_capableof_e15ff25f25 (CapableOf mice bell_cat) (STV 1.0 0.9091)) +(: cnet_capableof_96f6218414 (CapableOf mice eat_cheese) (STV 1.0 0.9524)) +(: cnet_capableof_89780ada6b (CapableOf microorganism battle_for_supremacy) (STV 1.0 0.9091)) +(: cnet_capableof_7fc45cbef3 (CapableOf microwave heat_food) (STV 1.0 0.9339)) +(: cnet_capableof_0c479fe908 (CapableOf microwave_oven heat_food) (STV 1.0 0.9091)) +(: cnet_capableof_6020079605 (CapableOf midget steal) (STV 1.0 0.9091)) +(: cnet_capableof_0de24893e9 (CapableOf migrant_worker pick_fruit) (STV 1.0 0.9454)) +(: cnet_capableof_eeae135b5e (CapableOf milk come_from_mammal) (STV 1.0 0.9339)) +(: cnet_capableof_a973fbed15 (CapableOf miner mine_coal) (STV 1.0 0.9608)) +(: cnet_capableof_a4637faef9 (CapableOf miner mine_gold) (STV 1.0 0.9091)) +(: cnet_capableof_d1aea02802 (CapableOf miner mine_ore) (STV 1.0 0.9091)) +(: cnet_capableof_155e2517eb (CapableOf minister marry_couple) (STV 1.0 0.9091)) +(: cnet_capableof_1972859e87 (CapableOf mirror reflect_image) (STV 1.0 0.9091)) +(: cnet_capableof_7fad864aa3 (CapableOf miser count_money) (STV 1.0 0.9454)) +(: cnet_capableof_8f5242712d (CapableOf mistake anger_person) (STV 1.0 0.9454)) +(: cnet_capableof_8221abae3e (CapableOf mom mother_baby) (STV 1.0 0.9454)) +(: cnet_capableof_adf9279e77 (CapableOf mommy fix) (STV 1.0 0.9091)) +(: cnet_capableof_6f82c41d02 (CapableOf monarch govern_nation) (STV 1.0 0.9091)) +(: cnet_capableof_32657f5e0a (CapableOf money buy_food) (STV 1.0 0.9339)) +(: cnet_capableof_a94f22eddc (CapableOf money last_short_time) (STV 1.0 0.9091)) +(: cnet_capableof_c28499634b (CapableOf monitor display_image) (STV 1.0 0.9091)) +(: cnet_capableof_0b26c75563 (CapableOf monkey throw_thing) (STV 1.0 0.9091)) +(: cnet_capableof_0c1cfa89b4 (CapableOf monument statue) (STV 1.0 0.9091)) +(: cnet_capableof_296c503952 (CapableOf mop clean_floor) (STV 1.0 0.9659)) +(: cnet_capableof_9ec98220db (CapableOf mormon travel_to_europe) (STV 1.0 0.9091)) +(: cnet_capableof_c75f7c0f76 (CapableOf morning_time_when rain) (STV 1.0 0.9339)) +(: cnet_capableof_aaa50858e4 (CapableOf mos part_red_sea) (STV 1.0 0.9608)) +(: cnet_capableof_a223e3293d (CapableOf mos part_sea) (STV 1.0 0.9454)) +(: cnet_capableof_d35f74e312 (CapableOf mos part_water) (STV 1.0 0.9454)) +(: cnet_capableof_dfb146577f (CapableOf mosquito fly) (STV 1.0 0.9524)) +(: cnet_capableof_6226df7d03 (CapableOf mosquito suck_blood) (STV 1.0 0.9339)) +(: cnet_capableof_24b1f918a3 (CapableOf mosquitoe fly) (STV 1.0 0.9524)) +(: cnet_capableof_00f69da2da (CapableOf mosquitoe spread_disease) (STV 1.0 0.9091)) +(: cnet_capableof_b0a38c186d (CapableOf mosquito spread_disease) (STV 1.0 0.9091)) +(: cnet_capableof_36f96f9d53 (CapableOf most_bird learn_to_fly) (STV 1.0 0.9091)) +(: cnet_capableof_7adbe648e7 (CapableOf most_bird perch_in_tree) (STV 1.0 0.9091)) +(: cnet_capableof_ce2e4f2469 (CapableOf most_people lie) (STV 1.0 0.9091)) +(: cnet_capableof_17ebab622f (CapableOf most_people smell_flower) (STV 1.0 0.9091)) +(: cnet_capableof_22bea7b14e (CapableOf most_people swim_in_water) (STV 1.0 0.9524)) +(: cnet_capableof_9691a0ab79 (CapableOf most_people think) (STV 1.0 0.9091)) +(: cnet_capableof_6d6a6e9357 (CapableOf most_people tie_knot) (STV 1.0 0.9091)) +(: cnet_capableof_6aaa6953a9 (CapableOf motorcycle corner_well) (STV 1.0 0.9091)) +(: cnet_capableof_28aee49e8c (CapableOf mouse hear_cat) (STV 1.0 0.9091)) +(: cnet_capableof_ddac6d391c (CapableOf mouse spring_trap) (STV 1.0 0.9091)) +(: cnet_capableof_46af4ad938 (CapableOf mover box_belonging) (STV 1.0 0.9091)) +(: cnet_capableof_838c9b41a4 (CapableOf movie star_actor) (STV 1.0 0.9339)) +(: cnet_capableof_2bde421e0d (CapableOf moving_slowly annoy_people) (STV 1.0 0.9091)) +(: cnet_capableof_7374b7d7a5 (CapableOf mud cake_on_boot) (STV 1.0 0.9091)) +(: cnet_capableof_96d3daad6f (CapableOf mud cake_shoe) (STV 1.0 0.9339)) +(: cnet_capableof_6e9cc6337f (CapableOf multiple_nation go_to_war_against_each_other) (STV 1.0 0.9091)) +(: cnet_capableof_c80f705084 (CapableOf murder cause_death) (STV 1.0 0.9091)) +(: cnet_capableof_8cd0297760 (CapableOf murderer leave_trail) (STV 1.0 0.9091)) +(: cnet_capableof_aa0b277c8c (CapableOf murderer wall_in_victim) (STV 1.0 0.9091)) +(: cnet_capableof_6cbf2d19f0 (CapableOf murderer face_death_penalty) (STV 1.0 0.9091)) +(: cnet_capableof_61caaae0da (CapableOf muscle contract) (STV 1.0 0.9339)) +(: cnet_capableof_4fa8fb93bb (CapableOf music express_feeling) (STV 1.0 0.9091)) +(: cnet_capableof_a6ad2843c6 (CapableOf music sound_good) (STV 1.0 0.9572)) +(: cnet_capableof_65230953a0 (CapableOf musician master_instrument) (STV 1.0 0.9091)) +(: cnet_capableof_e46cec5de2 (CapableOf musician play_musical_instrument) (STV 1.0 0.9454)) +(: cnet_capableof_b9a37a21db (CapableOf musician play_violin) (STV 1.0 0.9524)) +(: cnet_capableof_d84b271ac2 (CapableOf musician record_song) (STV 1.0 0.9636)) +(: cnet_capableof_0709bb64aa (CapableOf musician tune_guitar) (STV 1.0 0.9454)) +(: cnet_capableof_afd2d0f5bc (CapableOf musician play_music_at_live_concert) (STV 1.0 0.9091)) +(: cnet_capableof_c7a71fbe76 (CapableOf nail cause_puncture_wound) (STV 1.0 0.9339)) +(: cnet_capableof_2aa1421d38 (CapableOf nail nail_thing_to_other_thing) (STV 1.0 0.9091)) +(: cnet_capableof_45c6bbba17 (CapableOf naked_people star_in_porno) (STV 1.0 0.9091)) +(: cnet_capableof_6643a0d82c (CapableOf nazi commit_genocide) (STV 1.0 0.9339)) +(: cnet_capableof_c1d5a75015 (CapableOf neighbor borrow_tool) (STV 1.0 0.9091)) +(: cnet_capableof_6da658ea4d (CapableOf neutron_released trigger_chain_reaction) (STV 1.0 0.9339)) +(: cnet_capableof_d66a71bd2e (CapableOf newspaper list_advertiser) (STV 1.0 0.9339)) +(: cnet_capableof_b7e5165faa (CapableOf newspaper report_event) (STV 1.0 0.9091)) +(: cnet_capableof_0fcf4b0b3b (CapableOf newspaper spread_new) (STV 1.0 0.9091)) +(: cnet_capableof_2e6e7e45c6 (CapableOf no mean_yes) (STV 1.0 0.9091)) +(: cnet_capableof_8172deb0c2 (CapableOf nose sense_smell) (STV 1.0 0.9091)) +(: cnet_capableof_694e973502 (CapableOf nose smell_flower) (STV 1.0 0.9091)) +(: cnet_capableof_d3995326da (CapableOf nose smell_thing) (STV 1.0 0.9339)) +(: cnet_capableof_01592e77af (CapableOf nos sense_smell) (STV 1.0 0.9091)) +(: cnet_capableof_e40f921a07 (CapableOf number equal_number) (STV 1.0 0.9091)) +(: cnet_capableof_80ad32b4a5 (CapableOf number mean_lot_of_thing) (STV 1.0 0.9091)) +(: cnet_capableof_0fd0f91913 (CapableOf numerate add_number) (STV 1.0 0.9091)) +(: cnet_capableof_d69af3d7de (CapableOf nun eat_spam) (STV 1.0 0.9091)) +(: cnet_capableof_05fe78665e (CapableOf nun pray) (STV 1.0 0.9091)) +(: cnet_capableof_c84d812d64 (CapableOf nurse care_for_patient) (STV 1.0 0.9659)) +(: cnet_capableof_a7f0eb770d (CapableOf nurse page_doctor) (STV 1.0 0.9454)) +(: cnet_capableof_f8ea67414b (CapableOf nurse resuscitate) (STV 1.0 0.9339)) +(: cnet_capableof_652b4ae384 (CapableOf nurs care_for_patient) (STV 1.0 0.9339)) +(: cnet_capableof_cdbed965ea (CapableOf older_child act_independently) (STV 1.0 0.9091)) +(: cnet_capableof_96565f05b6 (CapableOf on_off_switch change_state) (STV 1.0 0.9091)) +(: cnet_capableof_f8103f88ce (CapableOf one ride_scooter_for_pleasure) (STV 1.0 0.9091)) +(: cnet_capableof_29a6331fcd (CapableOf one_hand wash_other) (STV 1.0 0.9091)) +(: cnet_capableof_ca580f2f45 (CapableOf one_person wear_pair_of_pant) (STV 1.0 0.9091)) +(: cnet_capableof_e2c321287c (CapableOf only_living_thing feel) (STV 1.0 0.9091)) +(: cnet_capableof_505239ff99 (CapableOf only_local_people vote_in_local_election) (STV 1.0 0.9091)) +(: cnet_capableof_1c8a9b265d (CapableOf only_one_person sit_in) (STV 1.0 0.9091)) +(: cnet_capableof_16024e7352 (CapableOf only_people wonder_about_thing) (STV 1.0 0.9091)) +(: cnet_capableof_1d9bf984a0 (CapableOf ontology group_similar_thing) (STV 1.0 0.9091)) +(: cnet_capableof_cc4eb0f1a4 (CapableOf opera_singer sing_aria) (STV 1.0 0.9339)) +(: cnet_capableof_24e39c46bf (CapableOf operating_system run_application) (STV 1.0 0.9091)) +(: cnet_capableof_34f4b1be70 (CapableOf operator direct_call) (STV 1.0 0.9091)) +(: cnet_capableof_790c536dab (CapableOf opinion separate_group) (STV 1.0 0.9091)) +(: cnet_capableof_4dd7e1b541 (CapableOf opponent deal_blow) (STV 1.0 0.9091)) +(: cnet_capableof_313cc47cd8 (CapableOf organism die) (STV 1.0 0.9091)) +(: cnet_capableof_9953a2e3b6 (CapableOf ostriche run_fast) (STV 1.0 0.9091)) +(: cnet_capableof_5852115ca7 (CapableOf oven brown_chicken) (STV 1.0 0.9339)) +(: cnet_capableof_194fabdc6a (CapableOf owl hear_mouse) (STV 1.0 0.9091)) +(: cnet_capableof_14950b814d (CapableOf owl hear_slightest_rustle) (STV 1.0 0.9339)) +(: cnet_capableof_450ae15dfe (CapableOf owl rest_during_day) (STV 1.0 0.9091)) +(: cnet_capableof_616c18294d (CapableOf owl see_at_night) (STV 1.0 0.9091)) +(: cnet_capableof_c7c7cac6b8 (CapableOf owl see_in_dark) (STV 1.0 0.9339)) +(: cnet_capableof_f5bcb323b0 (CapableOf owl spot_mice) (STV 1.0 0.9091)) +(: cnet_capableof_0926ade2d9 (CapableOf owl spot_prey) (STV 1.0 0.9091)) +(: cnet_capableof_371208ac45 (CapableOf owl spot_snow_track_of_mice) (STV 1.0 0.9091)) +(: cnet_capableof_15a1d69c23 (CapableOf owner name_pet) (STV 1.0 0.9339)) +(: cnet_capableof_16c02759f6 (CapableOf pacifier quiet_baby) (STV 1.0 0.9091)) +(: cnet_capableof_dfc86f26f7 (CapableOf pain good_sometime) (STV 1.0 0.9091)) +(: cnet_capableof_e5a691a6dd (CapableOf paint coat_surface) (STV 1.0 0.9454)) +(: cnet_capableof_d9b728a64f (CapableOf paint coat_wall) (STV 1.0 0.9636)) +(: cnet_capableof_320a03dcfe (CapableOf paint consist_of_oil) (STV 1.0 0.9091)) +(: cnet_capableof_b168c40775 (CapableOf painter coat_house) (STV 1.0 0.9454)) +(: cnet_capableof_a77e6cddd2 (CapableOf painter coat_house_in_paint) (STV 1.0 0.9091)) +(: cnet_capableof_4f6fd51945 (CapableOf painter coat_house_with_paint) (STV 1.0 0.9091)) +(: cnet_capableof_672c2d97e9 (CapableOf painter coat_wall) (STV 1.0 0.9454)) +(: cnet_capableof_66a3141dbf (CapableOf painter letter_sign) (STV 1.0 0.9091)) +(: cnet_capableof_cccfd47edb (CapableOf painter paint) (STV 1.0 0.9339)) +(: cnet_capableof_68b97ae54d (CapableOf painter paint_picture) (STV 1.0 0.9454)) +(: cnet_capableof_2c22e7bd95 (CapableOf painter paint_wall) (STV 1.0 0.9454)) +(: cnet_capableof_667474201b (CapableOf paper burn) (STV 1.0 0.9636)) +(: cnet_capableof_b64c8e0319 (CapableOf paper cover_rock) (STV 1.0 0.9339)) +(: cnet_capableof_870ec95d8f (CapableOf paper cover_stone) (STV 1.0 0.9091)) +(: cnet_capableof_ca6965522b (CapableOf parakeet person_s_pet) (STV 1.0 0.9091)) +(: cnet_capableof_2813f6ad6d (CapableOf parcel_service ship_package_for) (STV 1.0 0.9091)) +(: cnet_capableof_b98f1300b9 (CapableOf parcel_service ship_package) (STV 1.0 0.9091)) +(: cnet_capableof_af3ac77469 (CapableOf parent dress_child) (STV 1.0 0.9454)) +(: cnet_capableof_ada0f4ae2b (CapableOf parent feed_child) (STV 1.0 0.9091)) +(: cnet_capableof_6d0f63e4c3 (CapableOf parent homeschool) (STV 1.0 0.9091)) +(: cnet_capableof_82cd33e7ed (CapableOf parent name_baby) (STV 1.0 0.9608)) +(: cnet_capableof_d610295315 (CapableOf parent name_child) (STV 1.0 0.9608)) +(: cnet_capableof_2eb80d5d87 (CapableOf parent name_children) (STV 1.0 0.9524)) +(: cnet_capableof_5589433c6e (CapableOf parent school_child) (STV 1.0 0.9091)) +(: cnet_capableof_0a32af5d67 (CapableOf parent school_own_children) (STV 1.0 0.9091)) +(: cnet_capableof_6697ab49c0 (CapableOf parent care_for_children) (STV 1.0 0.9339)) +(: cnet_capableof_9483c81374 (CapableOf parent end_dispute) (STV 1.0 0.9339)) +(: cnet_capableof_345f59a963 (CapableOf parrot talk) (STV 1.0 0.9091)) +(: cnet_capableof_feba3e5976 (CapableOf passage mean_section_of_text) (STV 1.0 0.9091)) +(: cnet_capableof_94c8ceb7e9 (CapableOf passenger board_airplane) (STV 1.0 0.9608)) +(: cnet_capableof_7b4c4baead (CapableOf passenger board_boat) (STV 1.0 0.9091)) +(: cnet_capableof_7f3dfad490 (CapableOf passenger board_bus) (STV 1.0 0.9091)) +(: cnet_capableof_1ec04440fb (CapableOf passenger board_plane) (STV 1.0 0.9693)) +(: cnet_capableof_c2b28a8cf2 (CapableOf passenger board_ship) (STV 1.0 0.9454)) +(: cnet_capableof_949c526768 (CapableOf passenger board_train) (STV 1.0 0.9659)) +(: cnet_capableof_74ce8e7ad5 (CapableOf pathway guide_walker) (STV 1.0 0.9091)) +(: cnet_capableof_e8e44d85c4 (CapableOf patient battle_disease) (STV 1.0 0.9091)) +(: cnet_capableof_bb9c3b0020 (CapableOf patient take_pill) (STV 1.0 0.9091)) +(: cnet_capableof_1a658d1dca (CapableOf peanut_butter spread_on_bread) (STV 1.0 0.9091)) +(: cnet_capableof_3a68c97b03 (CapableOf pebble break_window) (STV 1.0 0.9091)) +(: cnet_capableof_cd92f0f740 (CapableOf pedestrian cross_street) (STV 1.0 0.9091)) +(: cnet_capableof_88a25ca073 (CapableOf pencil last_for_awhile) (STV 1.0 0.9339)) +(: cnet_capableof_726c903f0e (CapableOf pencil leave_mark_on_paper) (STV 1.0 0.9091)) +(: cnet_capableof_c1efca3770 (CapableOf pencil mark_paper) (STV 1.0 0.9524)) +(: cnet_capableof_a63e60aa91 (CapableOf pencil shade_sketch) (STV 1.0 0.9339)) +(: cnet_capableof_8acf0e3b3a (CapableOf penguin swim_underwater) (STV 1.0 0.9091)) +(: cnet_capableof_bbf5a5f417 (CapableOf penis allow_man_to_have_intercourse) (STV 1.0 0.9091)) +(: cnet_capableof_149fcc166a (CapableOf penis pee) (STV 1.0 0.9454)) +(: cnet_capableof_1c739504ac (CapableOf penis pee_blood) (STV 1.0 0.9091)) +(: cnet_capableof_9444310f45 (CapableOf penis rise_quickly) (STV 1.0 0.9091)) +(: cnet_capableof_c0fcde44f2 (CapableOf penis shoot_sperm) (STV 1.0 0.9091)) +(: cnet_capableof_4db0362152 (CapableOf peopl bank_money) (STV 1.0 0.9091)) +(: cnet_capableof_476f31e942 (CapableOf people age_quickly) (STV 1.0 0.9454)) +(: cnet_capableof_d2df6782b7 (CapableOf people agree) (STV 1.0 0.9454)) +(: cnet_capableof_7ed60a591e (CapableOf people answer_telephone) (STV 1.0 0.9091)) +(: cnet_capableof_b73ec9a6c3 (CapableOf people appeal_to_supreme_court) (STV 1.0 0.9091)) +(: cnet_capableof_2fa757a85d (CapableOf people ask_question) (STV 1.0 0.9339)) +(: cnet_capableof_2d570f36f1 (CapableOf people bank_money) (STV 1.0 0.9091)) +(: cnet_capableof_e1d64207e5 (CapableOf people believe_idea) (STV 1.0 0.9091)) +(: cnet_capableof_8cde5d31ab (CapableOf people believe_in_god) (STV 1.0 0.9608)) +(: cnet_capableof_4490790cdf (CapableOf people bite) (STV 1.0 0.9091)) +(: cnet_capableof_5aa48c6bc1 (CapableOf people board_ship) (STV 1.0 0.9091)) +(: cnet_capableof_59e4ddbeae (CapableOf people borrow_book_from_library) (STV 1.0 0.9091)) +(: cnet_capableof_4dd1ae3734 (CapableOf people bridge_gap) (STV 1.0 0.9454)) +(: cnet_capableof_6d9327487b (CapableOf people bug_people) (STV 1.0 0.9339)) +(: cnet_capableof_53fc02cb3f (CapableOf people build_house) (STV 1.0 0.9339)) +(: cnet_capableof_2443e44e03 (CapableOf people build_hous) (STV 1.0 0.9091)) +(: cnet_capableof_9f0d5c21bb (CapableOf people buy_car) (STV 1.0 0.9454)) +(: cnet_capableof_fbbdf36e01 (CapableOf people captain_ship) (STV 1.0 0.9339)) +(: cnet_capableof_663267e5d4 (CapableOf people care_for_animal) (STV 1.0 0.9091)) +(: cnet_capableof_7ae7887fc0 (CapableOf people catch_cold) (STV 1.0 0.9091)) +(: cnet_capableof_8c1d747c87 (CapableOf people catch_fish) (STV 1.0 0.9091)) +(: cnet_capableof_042ba3b43d (CapableOf people climb_mountain) (STV 1.0 0.9339)) +(: cnet_capableof_40c64f2449 (CapableOf people come_home) (STV 1.0 0.9091)) +(: cnet_capableof_600656a2ad (CapableOf people complete_sentence) (STV 1.0 0.9091)) +(: cnet_capableof_95cfb94d6e (CapableOf people consider_idea) (STV 1.0 0.9091)) +(: cnet_capableof_7d7aa66cad (CapableOf people cook_dinner) (STV 1.0 0.9339)) +(: cnet_capableof_ab42e51aba (CapableOf people cook_food) (STV 1.0 0.9454)) +(: cnet_capableof_76c52b6215 (CapableOf people count) (STV 1.0 0.9091)) +(: cnet_capableof_3daa4967c4 (CapableOf people count_sheep) (STV 1.0 0.9091)) +(: cnet_capableof_50e71741de (CapableOf people cross_road) (STV 1.0 0.9091)) +(: cnet_capableof_974bef4f3e (CapableOf people cut_hair) (STV 1.0 0.9091)) +(: cnet_capableof_844f51cfab (CapableOf people dance_to_music) (STV 1.0 0.9091)) +(: cnet_capableof_850fc735e3 (CapableOf people dance_to_waltz) (STV 1.0 0.9091)) +(: cnet_capableof_6737b60690 (CapableOf people dance_waltz) (STV 1.0 0.9091)) +(: cnet_capableof_1b4a24c401 (CapableOf people dance_with_each_other) (STV 1.0 0.9091)) +(: cnet_capableof_07f9d3b9f3 (CapableOf people deal_card) (STV 1.0 0.9339)) +(: cnet_capableof_b88d2ea712 (CapableOf people deceive) (STV 1.0 0.9091)) +(: cnet_capableof_79824d54a9 (CapableOf people demand_justice) (STV 1.0 0.9454)) +(: cnet_capableof_9fb8137615 (CapableOf people desire_freedom) (STV 1.0 0.9091)) +(: cnet_capableof_382289180c (CapableOf people destroy_world) (STV 1.0 0.9091)) +(: cnet_capableof_debe77f9aa (CapableOf people do_bad_thing_to_themselve) (STV 1.0 0.9091)) +(: cnet_capableof_52048cb5c4 (CapableOf people do_dishe) (STV 1.0 0.9339)) +(: cnet_capableof_d8a3718932 (CapableOf people doubt_other_people) (STV 1.0 0.9091)) +(: cnet_capableof_1a70ce92da (CapableOf people doubt_people) (STV 1.0 0.9091)) +(: cnet_capableof_803e9ca587 (CapableOf people dream_when_sleeping) (STV 1.0 0.9091)) +(: cnet_capableof_153fbd0e77 (CapableOf people eat_cat_food) (STV 1.0 0.9091)) +(: cnet_capableof_2ff0db864b (CapableOf people eat_food_off_plate) (STV 1.0 0.9454)) +(: cnet_capableof_5282510451 (CapableOf people enjoy_themselve) (STV 1.0 0.9454)) +(: cnet_capableof_1ede4cca56 (CapableOf people experience_joy) (STV 1.0 0.9454)) +(: cnet_capableof_2e0d393465 (CapableOf people experience_new_thing) (STV 1.0 0.9339)) +(: cnet_capableof_996a1443a5 (CapableOf people experience_pain) (STV 1.0 0.9524)) +(: cnet_capableof_09deb9df2e (CapableOf people face_each_other) (STV 1.0 0.9454)) +(: cnet_capableof_b6cc984b9d (CapableOf people fear_dark) (STV 1.0 0.9091)) +(: cnet_capableof_84fd90e562 (CapableOf people fear_death) (STV 1.0 0.9454)) +(: cnet_capableof_a8bf488137 (CapableOf people fight_each_other) (STV 1.0 0.9454)) +(: cnet_capableof_5ec288d457 (CapableOf people follow_story) (STV 1.0 0.9091)) +(: cnet_capableof_cd5d293a54 (CapableOf people forget_thing) (STV 1.0 0.9572)) +(: cnet_capableof_8b0b42274d (CapableOf people friend) (STV 1.0 0.9091)) +(: cnet_capableof_db7ab00ac9 (CapableOf people gain_knowledge) (STV 1.0 0.9091)) +(: cnet_capableof_b5b7229d89 (CapableOf people get_sick) (STV 1.0 0.9454)) +(: cnet_capableof_57d40481c0 (CapableOf people give_money_to_charity) (STV 1.0 0.9091)) +(: cnet_capableof_cec69adbad (CapableOf people go_hiking) (STV 1.0 0.9091)) +(: cnet_capableof_bed383292e (CapableOf people go_out) (STV 1.0 0.9091)) +(: cnet_capableof_0ae1f7ee44 (CapableOf people group_object) (STV 1.0 0.9091)) +(: cnet_capableof_ccca61e065 (CapableOf people group_together) (STV 1.0 0.9454)) +(: cnet_capableof_77f96e18df (CapableOf people have_to_go_to_toilet) (STV 1.0 0.9339)) +(: cnet_capableof_2d7f7786b7 (CapableOf people hear_nois) (STV 1.0 0.9091)) +(: cnet_capableof_b6f18116a5 (CapableOf people imagine) (STV 1.0 0.9339)) +(: cnet_capableof_9a67ef301e (CapableOf people join_group) (STV 1.0 0.9091)) +(: cnet_capableof_16decabd97 (CapableOf people jump) (STV 1.0 0.9339)) +(: cnet_capableof_e73c840032 (CapableOf people kill_each_other) (STV 1.0 0.9524)) +(: cnet_capableof_5167642391 (CapableOf people kill_other_people) (STV 1.0 0.9454)) +(: cnet_capableof_f968044d5d (CapableOf people kiss_each_other) (STV 1.0 0.9091)) +(: cnet_capableof_f3942f9732 (CapableOf people laugh_at_each_other) (STV 1.0 0.9091)) +(: cnet_capableof_986e186d4c (CapableOf people laugh_at_joke) (STV 1.0 0.9091)) +(: cnet_capableof_dc78bd8b1c (CapableOf people laugh_joke) (STV 1.0 0.9091)) +(: cnet_capableof_0bb5880beb (CapableOf people lay_down) (STV 1.0 0.9091)) +(: cnet_capableof_ff8d0b1ced (CapableOf people learn_by_playing_game) (STV 1.0 0.9091)) +(: cnet_capableof_fe9b14f887 (CapableOf people learn_by_reading) (STV 1.0 0.9339)) +(: cnet_capableof_7c0c11533d (CapableOf people learn_from_each_other) (STV 1.0 0.9572)) +(: cnet_capableof_3ed24e5cf5 (CapableOf people leave_building) (STV 1.0 0.9091)) +(: cnet_capableof_5938fde222 (CapableOf people lie) (STV 1.0 0.9091)) +(: cnet_capableof_340464831c (CapableOf people live_over_100_year) (STV 1.0 0.9339)) +(: cnet_capableof_c20c1afb9f (CapableOf people lose_wallet) (STV 1.0 0.9091)) +(: cnet_capableof_08279618f6 (CapableOf people make_art) (STV 1.0 0.9091)) +(: cnet_capableof_e8e83b730f (CapableOf people make_baby) (STV 1.0 0.9091)) +(: cnet_capableof_17b873fb9c (CapableOf people make_friend) (STV 1.0 0.9091)) +(: cnet_capableof_9c7685f2c5 (CapableOf people make_music) (STV 1.0 0.9091)) +(: cnet_capableof_dfe1aea091 (CapableOf people milk_cow) (STV 1.0 0.9339)) +(: cnet_capableof_ada0442bae (CapableOf people miss_appointment) (STV 1.0 0.9339)) +(: cnet_capableof_6721fd36c8 (CapableOf people own_property) (STV 1.0 0.9524)) +(: cnet_capableof_9c8f22b65e (CapableOf people pay_bill) (STV 1.0 0.9572)) +(: cnet_capableof_993484a3de (CapableOf people plan) (STV 1.0 0.9091)) +(: cnet_capableof_41841e2427 (CapableOf people plant_flower) (STV 1.0 0.9339)) +(: cnet_capableof_ae7aece84d (CapableOf people put_flower_in_hair) (STV 1.0 0.9091)) +(: cnet_capableof_1c52b604f3 (CapableOf people question_authority) (STV 1.0 0.9091)) +(: cnet_capableof_ab5f1d7052 (CapableOf people race_car) (STV 1.0 0.9454)) +(: cnet_capableof_3a96203a80 (CapableOf people read_book_for_enjoyment) (STV 1.0 0.9091)) +(: cnet_capableof_bea69c640c (CapableOf people receive_gift) (STV 1.0 0.9091)) +(: cnet_capableof_f77a09a3d8 (CapableOf people report_crime) (STV 1.0 0.9091)) +(: cnet_capableof_a59d40b5d8 (CapableOf people sail_boat) (STV 1.0 0.9454)) +(: cnet_capableof_992f2178e4 (CapableOf people salt_food) (STV 1.0 0.9339)) +(: cnet_capableof_4ec28e8655 (CapableOf people say_thing) (STV 1.0 0.9339)) +(: cnet_capableof_efb517067d (CapableOf people sense_environment) (STV 1.0 0.9091)) +(: cnet_capableof_b6a254b355 (CapableOf people settle_argument) (STV 1.0 0.9091)) +(: cnet_capableof_5a1a76be74 (CapableOf people shake_hand) (STV 1.0 0.9524)) +(: cnet_capableof_10e92935d4 (CapableOf people share_food) (STV 1.0 0.9454)) +(: cnet_capableof_9541f47eda (CapableOf people share_thing) (STV 1.0 0.9091)) +(: cnet_capableof_fefbef4a71 (CapableOf people shoulder_burden) (STV 1.0 0.9454)) +(: cnet_capableof_fb25ea93ea (CapableOf people shout) (STV 1.0 0.9091)) +(: cnet_capableof_4b680c7b3a (CapableOf people shout_to_heard_far_away) (STV 1.0 0.9091)) +(: cnet_capableof_39a7928bc1 (CapableOf people shout_word) (STV 1.0 0.9091)) +(: cnet_capableof_7cb02c8b36 (CapableOf people sing_in_choir) (STV 1.0 0.9091)) +(: cnet_capableof_46ab7fe490 (CapableOf people sit_on_bar_stool) (STV 1.0 0.9339)) +(: cnet_capableof_9e4bd197eb (CapableOf people ski_on_snow) (STV 1.0 0.9091)) +(: cnet_capableof_1cded0214c (CapableOf people smell_flower) (STV 1.0 0.9091)) +(: cnet_capableof_7f5dee38f9 (CapableOf people smell_with_nos) (STV 1.0 0.9454)) +(: cnet_capableof_99f1baa81f (CapableOf people speak) (STV 1.0 0.9454)) +(: cnet_capableof_1b361d34d4 (CapableOf people speak_language) (STV 1.0 0.9339)) +(: cnet_capableof_39d5c718f7 (CapableOf people speak_to_each_other) (STV 1.0 0.9339)) +(: cnet_capableof_1f422642cf (CapableOf people spread_preserve) (STV 1.0 0.9091)) +(: cnet_capableof_ef5558b480 (CapableOf people stand_on_two_feet) (STV 1.0 0.9091)) +(: cnet_capableof_6051aae29a (CapableOf people stand_upright) (STV 1.0 0.9091)) +(: cnet_capableof_4f286148c1 (CapableOf people study_book) (STV 1.0 0.9091)) +(: cnet_capableof_890e60a8cd (CapableOf people study_from_book) (STV 1.0 0.9091)) +(: cnet_capableof_5891689657 (CapableOf people study_in_library) (STV 1.0 0.9524)) +(: cnet_capableof_e104823033 (CapableOf people suffer_hunger) (STV 1.0 0.9091)) +(: cnet_capableof_1909d26ada (CapableOf people suffer_pain) (STV 1.0 0.9091)) +(: cnet_capableof_b608eb122e (CapableOf people swim_in_lake) (STV 1.0 0.9339)) +(: cnet_capableof_6172ce93b0 (CapableOf people swim_in_water) (STV 1.0 0.9091)) +(: cnet_capableof_b921fafcfc (CapableOf people talk_to_each_other) (STV 1.0 0.9707)) +(: cnet_capableof_f661e95e33 (CapableOf people taste_food) (STV 1.0 0.9572)) +(: cnet_capableof_3bec6ecb14 (CapableOf people thank_god) (STV 1.0 0.9454)) +(: cnet_capableof_2c96b1811d (CapableOf people touch_other_people) (STV 1.0 0.9091)) +(: cnet_capableof_3e8770581e (CapableOf people touch_people) (STV 1.0 0.9091)) +(: cnet_capableof_31d85f9acc (CapableOf people train_dog) (STV 1.0 0.9091)) +(: cnet_capableof_2aa821e372 (CapableOf people try_to_learn) (STV 1.0 0.9091)) +(: cnet_capableof_7ac872d427 (CapableOf people turn_page) (STV 1.0 0.9091)) +(: cnet_capableof_6455d94be8 (CapableOf people use_drug) (STV 1.0 0.9091)) +(: cnet_capableof_cd363fa1d5 (CapableOf people value_each_other) (STV 1.0 0.9091)) +(: cnet_capableof_0587e0fa92 (CapableOf people view_movy) (STV 1.0 0.9091)) +(: cnet_capableof_cab8802c14 (CapableOf people visit_place) (STV 1.0 0.9454)) +(: cnet_capableof_40f6d23be7 (CapableOf people voice_opinion) (STV 1.0 0.9572)) +(: cnet_capableof_241d0dc2d5 (CapableOf people wait_in_line) (STV 1.0 0.9091)) +(: cnet_capableof_39673630b6 (CapableOf people wank_off) (STV 1.0 0.9091)) +(: cnet_capableof_148ede093c (CapableOf people wash_car) (STV 1.0 0.9454)) +(: cnet_capableof_6ce6cccc98 (CapableOf people watch_new_on_television) (STV 1.0 0.9091)) +(: cnet_capableof_c3d1f34952 (CapableOf people wave_hand) (STV 1.0 0.9454)) +(: cnet_capableof_a0017befdd (CapableOf people wear_jean) (STV 1.0 0.9339)) +(: cnet_capableof_19c26959ca (CapableOf people wear_suit) (STV 1.0 0.9091)) +(: cnet_capableof_d260b8fcf9 (CapableOf people weather_storm) (STV 1.0 0.9339)) +(: cnet_capableof_21e22989f0 (CapableOf people work_in_team) (STV 1.0 0.9091)) +(: cnet_capableof_0ca0a4813d (CapableOf person age_with_grace) (STV 1.0 0.9091)) +(: cnet_capableof_152dd87d8e (CapableOf person amount_to) (STV 1.0 0.9339)) +(: cnet_capableof_5403d10c2c (CapableOf person attempt_suicide) (STV 1.0 0.9454)) +(: cnet_capableof_8cbd317ef4 (CapableOf person believe_in_god) (STV 1.0 0.9339)) +(: cnet_capableof_ae17661e53 (CapableOf person bicycle_to_work) (STV 1.0 0.9339)) +(: cnet_capableof_fe2a7b4bcd (CapableOf person blow_candle_out) (STV 1.0 0.9091)) +(: cnet_capableof_bdbecc1f78 (CapableOf person board_plane) (STV 1.0 0.9636)) +(: cnet_capableof_dde2ba43f3 (CapableOf person board_ship) (STV 1.0 0.9091)) +(: cnet_capableof_b793bdfe84 (CapableOf person board_train) (STV 1.0 0.9454)) +(: cnet_capableof_9d249531ed (CapableOf person borrow_book_from_library) (STV 1.0 0.9091)) +(: cnet_capableof_a4a827325a (CapableOf person butter_bread) (STV 1.0 0.9524)) +(: cnet_capableof_99a36285e0 (CapableOf person butter_piece_of_bread) (STV 1.0 0.9091)) +(: cnet_capableof_1ebb72fc78 (CapableOf person butter_toast) (STV 1.0 0.9091)) +(: cnet_capableof_d857ba0e9d (CapableOf person buy_car) (STV 1.0 0.9454)) +(: cnet_capableof_43a8133024 (CapableOf person buy_food) (STV 1.0 0.9454)) +(: cnet_capableof_835004c2df (CapableOf person captain_ship) (STV 1.0 0.9572)) +(: cnet_capableof_8ec3aa4e37 (CapableOf person catch_cold) (STV 1.0 0.9608)) +(: cnet_capableof_d950f935a4 (CapableOf person chair_committee) (STV 1.0 0.9454)) +(: cnet_capableof_677d0f074f (CapableOf person chair_meeting) (STV 1.0 0.9091)) +(: cnet_capableof_e4a3fe73ea (CapableOf person control_own_reproduction) (STV 1.0 0.9091)) +(: cnet_capableof_dd9fe48ab7 (CapableOf person converse) (STV 1.0 0.9091)) +(: cnet_capableof_586645f448 (CapableOf person cook_dinner) (STV 1.0 0.9339)) +(: cnet_capableof_847c9c5c9f (CapableOf person cook_food) (STV 1.0 0.9339)) +(: cnet_capableof_546c3698d4 (CapableOf person cross_street) (STV 1.0 0.9719)) +(: cnet_capableof_3cfc484867 (CapableOf person cup_hand) (STV 1.0 0.9091)) +(: cnet_capableof_7e8f010b0e (CapableOf person date_another_person) (STV 1.0 0.9091)) +(: cnet_capableof_83906d18e1 (CapableOf person deal_card) (STV 1.0 0.9454)) +(: cnet_capableof_4de0f31e25 (CapableOf person deal_drug) (STV 1.0 0.9572)) +(: cnet_capableof_805379b7a9 (CapableOf person die_of_cancer) (STV 1.0 0.9091)) +(: cnet_capableof_8c178da615 (CapableOf person drink_liquid) (STV 1.0 0.9091)) +(: cnet_capableof_e93a5f8e0d (CapableOf person drink_milk) (STV 1.0 0.9454)) +(: cnet_capableof_0c9efaf9a6 (CapableOf person enjoy_food) (STV 1.0 0.9091)) +(: cnet_capableof_5bd4a92f5e (CapableOf person enter_house) (STV 1.0 0.9524)) +(: cnet_capableof_a092c543cd (CapableOf person enter_store) (STV 1.0 0.9454)) +(: cnet_capableof_86c0fe7a28 (CapableOf person experience_joy) (STV 1.0 0.9454)) +(: cnet_capableof_2e41b6a128 (CapableOf person experience_situation) (STV 1.0 0.9091)) +(: cnet_capableof_1893128a17 (CapableOf person face_truth) (STV 1.0 0.9091)) +(: cnet_capableof_270a5c32d7 (CapableOf person fear_death) (STV 1.0 0.9454)) +(: cnet_capableof_c64686f40d (CapableOf person fear_to_fall) (STV 1.0 0.9091)) +(: cnet_capableof_eba57eb36b (CapableOf person feel_embarrassed) (STV 1.0 0.9091)) +(: cnet_capableof_97ba7b4072 (CapableOf person feel_happy) (STV 1.0 0.9091)) +(: cnet_capableof_ee469cbc9d (CapableOf person further_cause) (STV 1.0 0.9454)) +(: cnet_capableof_aa3059d280 (CapableOf person gain_weight) (STV 1.0 0.9454)) +(: cnet_capableof_ca26f99508 (CapableOf person give_gift) (STV 1.0 0.9339)) +(: cnet_capableof_779cea328e (CapableOf person go_into_mountain) (STV 1.0 0.9091)) +(: cnet_capableof_89972cc182 (CapableOf person go_to_mountain) (STV 1.0 0.9091)) +(: cnet_capableof_8980fbd5d3 (CapableOf person guess_answer) (STV 1.0 0.9454)) +(: cnet_capableof_83a49e84c0 (CapableOf person hear_music_on_radio) (STV 1.0 0.9524)) +(: cnet_capableof_89d62d1b70 (CapableOf person hear_nois) (STV 1.0 0.9339)) +(: cnet_capableof_8b596178ce (CapableOf person hold_breath) (STV 1.0 0.9091)) +(: cnet_capableof_2b8441b436 (CapableOf person holding) (STV 1.0 0.9091)) +(: cnet_capableof_b6930af025 (CapableOf person hurry_up) (STV 1.0 0.9339)) +(: cnet_capableof_27cb6073db (CapableOf person iron_pant) (STV 1.0 0.9454)) +(: cnet_capableof_3b540773a2 (CapableOf person iron_shirt) (STV 1.0 0.9608)) +(: cnet_capableof_ef651a029a (CapableOf person labor_for_hire) (STV 1.0 0.9091)) +(: cnet_capableof_e250cfdf74 (CapableOf person laugh_at_himself) (STV 1.0 0.9339)) +(: cnet_capableof_29a10fb529 (CapableOf person laugh_at_joke) (STV 1.0 0.9636)) +(: cnet_capableof_2aecd1f4bf (CapableOf person leave_house) (STV 1.0 0.9572)) +(: cnet_capableof_26c2c78a67 (CapableOf person leave_place) (STV 1.0 0.9454)) +(: cnet_capableof_45fb6e0fb3 (CapableOf person lie_in_bed) (STV 1.0 0.9091)) +(: cnet_capableof_1fd0922fa3 (CapableOf person lose_key) (STV 1.0 0.9091)) +(: cnet_capableof_c34813bd83 (CapableOf person lose_wallet) (STV 1.0 0.9091)) +(: cnet_capableof_f12bdbfff3 (CapableOf person lower_blind) (STV 1.0 0.9091)) +(: cnet_capableof_8f66296fed (CapableOf person mail_letter_to_another_person) (STV 1.0 0.9454)) +(: cnet_capableof_340c9b85c7 (CapableOf person mail_parcel_to_another_person) (STV 1.0 0.9091)) +(: cnet_capableof_aa50b54218 (CapableOf person make_wine) (STV 1.0 0.9091)) +(: cnet_capableof_b8b4917c45 (CapableOf person man_ship) (STV 1.0 0.9091)) +(: cnet_capableof_09b8463b59 (CapableOf person master_skill) (STV 1.0 0.9091)) +(: cnet_capableof_f520917384 (CapableOf person meet_friend) (STV 1.0 0.9091)) +(: cnet_capableof_08b7744836 (CapableOf person milk_cow) (STV 1.0 0.9339)) +(: cnet_capableof_46631bee81 (CapableOf person miss_appointment) (STV 1.0 0.9454)) +(: cnet_capableof_27db8fa99d (CapableOf person need_companionship) (STV 1.0 0.9091)) +(: cnet_capableof_3a06299b0e (CapableOf person need_food) (STV 1.0 0.9339)) +(: cnet_capableof_912b074147 (CapableOf person open_door) (STV 1.0 0.9091)) +(: cnet_capableof_8701f90bd1 (CapableOf person own_car) (STV 1.0 0.9454)) +(: cnet_capableof_b93a0d5da2 (CapableOf person pay_bill) (STV 1.0 0.9091)) +(: cnet_capableof_18276ca8a9 (CapableOf person pay_on_bill) (STV 1.0 0.9454)) +(: cnet_capableof_823dfbe369 (CapableOf person pick_nose) (STV 1.0 0.9454)) +(: cnet_capableof_bdd703ec37 (CapableOf person plan_party) (STV 1.0 0.9454)) +(: cnet_capableof_2ca7609ca2 (CapableOf person plan_vacation) (STV 1.0 0.9454)) +(: cnet_capableof_9324db06d0 (CapableOf person plant_flower) (STV 1.0 0.9091)) +(: cnet_capableof_1f7c11623e (CapableOf person plant_thing) (STV 1.0 0.9091)) +(: cnet_capableof_705088d39f (CapableOf person plant_tree) (STV 1.0 0.9572)) +(: cnet_capableof_81cd061c31 (CapableOf person play_saxophone) (STV 1.0 0.9091)) +(: cnet_capableof_6c0ea0118b (CapableOf person promise_to_do) (STV 1.0 0.9524)) +(: cnet_capableof_9ba6d41ca4 (CapableOf person read_bible) (STV 1.0 0.9091)) +(: cnet_capableof_803c9a3b70 (CapableOf person receive_letter) (STV 1.0 0.9339)) +(: cnet_capableof_2e2abd6a11 (CapableOf person reply_to_e_mail) (STV 1.0 0.9608)) +(: cnet_capableof_92e67487e0 (CapableOf person reply_to_letter) (STV 1.0 0.9454)) +(: cnet_capableof_74c23577f9 (CapableOf person reply_to_question) (STV 1.0 0.9454)) +(: cnet_capableof_cccf20376f (CapableOf person rest_in_bed) (STV 1.0 0.9091)) +(: cnet_capableof_cd0376322b (CapableOf person rest_on_bed) (STV 1.0 0.9091)) +(: cnet_capableof_91f4cfba46 (CapableOf person return_book_to_library) (STV 1.0 0.9091)) +(: cnet_capableof_4e401493c2 (CapableOf person return_favor) (STV 1.0 0.9091)) +(: cnet_capableof_f5bcb0b903 (CapableOf person sail_boat) (STV 1.0 0.9339)) +(: cnet_capableof_8b2096eae3 (CapableOf person salt_earth) (STV 1.0 0.9339)) +(: cnet_capableof_f41c5362dd (CapableOf person salt_food) (STV 1.0 0.9339)) +(: cnet_capableof_6015bc285f (CapableOf person say_love) (STV 1.0 0.9091)) +(: cnet_capableof_2a79d0fcfc (CapableOf person say_word) (STV 1.0 0.9091)) +(: cnet_capableof_dbea10f472 (CapableOf person shoulder_burden) (STV 1.0 0.9572)) +(: cnet_capableof_4bd20dbaad (CapableOf person shoulder_responsibility) (STV 1.0 0.9454)) +(: cnet_capableof_010a30f4fc (CapableOf person shout_at) (STV 1.0 0.9091)) +(: cnet_capableof_86191bcb27 (CapableOf person sit_up) (STV 1.0 0.9091)) +(: cnet_capableof_acb5e5d4b1 (CapableOf person skate_across_field_of_ice) (STV 1.0 0.9091)) +(: cnet_capableof_ed67f25f18 (CapableOf person smoke_cigar) (STV 1.0 0.9572)) +(: cnet_capableof_ad9fa0b164 (CapableOf person speak_language) (STV 1.0 0.9091)) +(: cnet_capableof_549112d5fb (CapableOf person state_fact) (STV 1.0 0.9091)) +(: cnet_capableof_952177e4a0 (CapableOf person state_fact_to_audience) (STV 1.0 0.9091)) +(: cnet_capableof_ea224a0c9b (CapableOf person step_forward) (STV 1.0 0.9091)) +(: cnet_capableof_f9ff7cd690 (CapableOf person step_on_other_people) (STV 1.0 0.9091)) +(: cnet_capableof_927dda19d9 (CapableOf person step_out) (STV 1.0 0.9091)) +(: cnet_capableof_ec5f4d1ca4 (CapableOf person step_up) (STV 1.0 0.9091)) +(: cnet_capableof_50d4ee257e (CapableOf person study_greek) (STV 1.0 0.9091)) +(: cnet_capableof_e38a0a2828 (CapableOf person subject_himself_to_examination) (STV 1.0 0.9091)) +(: cnet_capableof_5a25ab523c (CapableOf person surprise_another_person) (STV 1.0 0.9454)) +(: cnet_capableof_6a26173ae9 (CapableOf person take_bus) (STV 1.0 0.9091)) +(: cnet_capableof_adc640cead (CapableOf person talk_to_else) (STV 1.0 0.9091)) +(: cnet_capableof_c0e9c11096 (CapableOf person talk_to_themselve) (STV 1.0 0.9091)) +(: cnet_capableof_28afd159e2 (CapableOf person talking_to_else) (STV 1.0 0.9091)) +(: cnet_capableof_960caff531 (CapableOf person taste_food) (STV 1.0 0.9572)) +(: cnet_capableof_97aa4af062 (CapableOf person tear_paper) (STV 1.0 0.9524)) +(: cnet_capableof_84f7081a66 (CapableOf person thank_another_person) (STV 1.0 0.9707)) +(: cnet_capableof_78e33e14be (CapableOf person thank_god) (STV 1.0 0.9524)) +(: cnet_capableof_51c91fe001 (CapableOf person trip_another_person) (STV 1.0 0.9454)) +(: cnet_capableof_4a62c3bc51 (CapableOf person value_desire) (STV 1.0 0.9091)) +(: cnet_capableof_70b10c7e8a (CapableOf person visit_friend) (STV 1.0 0.9091)) +(: cnet_capableof_2f83d51405 (CapableOf person visit_place) (STV 1.0 0.9454)) +(: cnet_capableof_b3de6780ef (CapableOf person voice_opinion) (STV 1.0 0.9707)) +(: cnet_capableof_02beb80590 (CapableOf person wait_for_while) (STV 1.0 0.9091)) +(: cnet_capableof_4d26582e67 (CapableOf person walk_dog) (STV 1.0 0.9454)) +(: cnet_capableof_8732f0410a (CapableOf person wash_dishe) (STV 1.0 0.9339)) +(: cnet_capableof_4d3496de2e (CapableOf person wash_hair) (STV 1.0 0.9091)) +(: cnet_capableof_89978500dd (CapableOf person water_plant) (STV 1.0 0.9636)) +(: cnet_capableof_8a6e6e5240 (CapableOf person wave_at_another_person) (STV 1.0 0.9091)) +(: cnet_capableof_3775e7a4bd (CapableOf person wave_goodbye) (STV 1.0 0.9454)) +(: cnet_capableof_2c7965609f (CapableOf person wave_to_another_person) (STV 1.0 0.9091)) +(: cnet_capableof_7f60c28f5c (CapableOf person wave_to_friend) (STV 1.0 0.9608)) +(: cnet_capableof_66d57c0521 (CapableOf person wear_jean) (STV 1.0 0.9091)) +(: cnet_capableof_0dc294c395 (CapableOf person win_contest) (STV 1.0 0.9339)) +(: cnet_capableof_95c6334b9c (CapableOf person wind_clock) (STV 1.0 0.9707)) +(: cnet_capableof_e96ef7221c (CapableOf person wind_watch) (STV 1.0 0.9524)) +(: cnet_capableof_aa1ac60a3e (CapableOf person write_letter_to_friend) (STV 1.0 0.9454)) +(: cnet_capableof_1390e55a44 (CapableOf person wrong_another_person) (STV 1.0 0.9091)) +(: cnet_capableof_8c6fbf058a (CapableOf pet_owner walk_dog) (STV 1.0 0.9454)) +(: cnet_capableof_8ed669671a (CapableOf petrol burn_hot) (STV 1.0 0.9091)) +(: cnet_capableof_c94215f87b (CapableOf petrol drop_in_price) (STV 1.0 0.9339)) +(: cnet_capableof_9309635138 (CapableOf petrol power_engine) (STV 1.0 0.9339)) +(: cnet_capableof_eacbc5a757 (CapableOf pharmacist fill_prescription) (STV 1.0 0.9091)) +(: cnet_capableof_4c2929d40a (CapableOf phone make_call) (STV 1.0 0.9091)) +(: cnet_capableof_72b156c4b0 (CapableOf phone ring) (STV 1.0 0.9339)) +(: cnet_capableof_68eada3277 (CapableOf photo record_wedding) (STV 1.0 0.9091)) +(: cnet_capableof_b15529a0b1 (CapableOf photoshop doctor_photo) (STV 1.0 0.9091)) +(: cnet_capableof_2d2b1f4e8a (CapableOf php connect_to_databas) (STV 1.0 0.9091)) +(: cnet_capableof_63c73e437e (CapableOf pianist play_piano) (STV 1.0 0.9719)) +(: cnet_capableof_d2bc2a9559 (CapableOf pianist read_sheet_music) (STV 1.0 0.9091)) +(: cnet_capableof_f2dd6a0b73 (CapableOf picture_frame hang_on_wall) (STV 1.0 0.9339)) +(: cnet_capableof_503e827ae3 (CapableOf picture hang_on_wall) (STV 1.0 0.9091)) +(: cnet_capableof_ef52f3e319 (CapableOf pig find_truffle) (STV 1.0 0.9091)) +(: cnet_capableof_979d609686 (CapableOf pilot fly_aeroplane) (STV 1.0 0.9091)) +(: cnet_capableof_0df9229fd2 (CapableOf pilot fly_airplane) (STV 1.0 0.9636)) +(: cnet_capableof_084d0ec32a (CapableOf pilot fly_helicopter) (STV 1.0 0.9091)) +(: cnet_capableof_03a66d16e3 (CapableOf pilot fly_plane) (STV 1.0 0.9719)) +(: cnet_capableof_2f8914139c (CapableOf pilot land_airplane) (STV 1.0 0.9608)) +(: cnet_capableof_e04d01439f (CapableOf pilot land_plane) (STV 1.0 0.9786)) +(: cnet_capableof_5611ec1af1 (CapableOf pilot work_in_airplane) (STV 1.0 0.9091)) +(: cnet_capableof_0bb6bc964e (CapableOf pipe branch_off) (STV 1.0 0.9339)) +(: cnet_capableof_ef76c9a8ef (CapableOf pirate board_ship) (STV 1.0 0.9091)) +(: cnet_capableof_74c1dae025 (CapableOf pirate sail_ship) (STV 1.0 0.9091)) +(: cnet_capableof_3f5ecaa64b (CapableOf pistol deadly_weapon) (STV 1.0 0.9339)) +(: cnet_capableof_2d157f0304 (CapableOf pistol fire_bullet) (STV 1.0 0.9454)) +(: cnet_capableof_a349a126bb (CapableOf pistol kill_people) (STV 1.0 0.9091)) +(: cnet_capableof_8a66c33cfd (CapableOf pitcher jog_to_pitching_mound) (STV 1.0 0.9091)) +(: cnet_capableof_087ee91139 (CapableOf pitcher strike_out_baseball_hitter) (STV 1.0 0.9091)) +(: cnet_capableof_ce23ace1fe (CapableOf pitcher throw_fast_ball) (STV 1.0 0.9572)) +(: cnet_capableof_a6d3e8b62f (CapableOf placebo ease_depression) (STV 1.0 0.9091)) +(: cnet_capableof_d89a1d771e (CapableOf plane arrive_at_airport) (STV 1.0 0.9524)) +(: cnet_capableof_009bd32b57 (CapableOf plane fly) (STV 1.0 0.9091)) +(: cnet_capableof_a7d9d2c9e1 (CapableOf plane journey_far) (STV 1.0 0.9091)) +(: cnet_capableof_90f9dd2e3d (CapableOf plane land_airport) (STV 1.0 0.9339)) +(: cnet_capableof_37d2b83f04 (CapableOf plane land_on_runway) (STV 1.0 0.9454)) +(: cnet_capableof_5bf1aacc35 (CapableOf plane crash) (STV 1.0 0.9677)) +(: cnet_capableof_65ffde5c57 (CapableOf plank bridge_gap) (STV 1.0 0.9454)) +(: cnet_capableof_fac6da34fb (CapableOf plant bloom) (STV 1.0 0.9091)) +(: cnet_capableof_a0e0ef69bb (CapableOf plant flower_in_spring) (STV 1.0 0.9339)) +(: cnet_capableof_8ede08c759 (CapableOf plant grow_in_garden) (STV 1.0 0.9608)) +(: cnet_capableof_ec819d8b08 (CapableOf plant suffering_dehydration) (STV 1.0 0.9091)) +(: cnet_capableof_100afa6012 (CapableOf plant produce_oxygen) (STV 1.0 0.9572)) +(: cnet_capableof_bf32cbebfb (CapableOf plant reproduce_asexually) (STV 1.0 0.9339)) +(: cnet_capableof_b79fddad88 (CapableOf plant sense_environment) (STV 1.0 0.9091)) +(: cnet_capableof_1b08bca2a6 (CapableOf plastic melt) (STV 1.0 0.9091)) +(: cnet_capableof_59a4406bb2 (CapableOf plumber fix_faucet) (STV 1.0 0.9091)) +(: cnet_capableof_424d70fb4f (CapableOf plumber hold_wrench) (STV 1.0 0.9454)) +(: cnet_capableof_28c1fbaca8 (CapableOf poem provide_comfort) (STV 1.0 0.9091)) +(: cnet_capableof_79fdaea6a5 (CapableOf poet write_poem) (STV 1.0 0.9524)) +(: cnet_capableof_f234c74249 (CapableOf poison_ivy form_rash_on_skin) (STV 1.0 0.9091)) +(: cnet_capableof_3b6f49456b (CapableOf poison kill) (STV 1.0 0.9339)) +(: cnet_capableof_ecb796e5a7 (CapableOf polic_officer direct_traffic) (STV 1.0 0.9572)) +(: cnet_capableof_d393cf0ac6 (CapableOf police direct_traffic) (STV 1.0 0.9091)) +(: cnet_capableof_034d3e54f2 (CapableOf police tail_suspect) (STV 1.0 0.9454)) +(: cnet_capableof_ddc8797e6e (CapableOf police_officer book_criminal) (STV 1.0 0.9524)) +(: cnet_capableof_8c003a8366 (CapableOf police_officer direct_traffic) (STV 1.0 0.9693)) +(: cnet_capableof_2bc42f0928 (CapableOf police_officer separate_people_fighting) (STV 1.0 0.9091)) +(: cnet_capableof_f68c52862c (CapableOf police_officer arrest_people) (STV 1.0 0.9091)) +(: cnet_capableof_835fde336d (CapableOf policeman direct_traffic) (STV 1.0 0.9659)) +(: cnet_capableof_2fbb831540 (CapableOf policeman notice_jaywalker) (STV 1.0 0.9091)) +(: cnet_capableof_271e6af8c5 (CapableOf policeman stop_traffic) (STV 1.0 0.9091)) +(: cnet_capableof_ac082871a0 (CapableOf policemen ride_motorcycle) (STV 1.0 0.9339)) +(: cnet_capableof_85f4b0a34c (CapableOf political_party back_candidate) (STV 1.0 0.9091)) +(: cnet_capableof_7fbdd059b5 (CapableOf politician duck_issue) (STV 1.0 0.9091)) +(: cnet_capableof_7acc960139 (CapableOf politician field_question) (STV 1.0 0.9524)) +(: cnet_capableof_5d874b6acb (CapableOf politician give_speech) (STV 1.0 0.9091)) +(: cnet_capableof_dbcba6d82c (CapableOf politician lie) (STV 1.0 0.9091)) +(: cnet_capableof_9a113526ee (CapableOf politician talk_to_crowd) (STV 1.0 0.9091)) +(: cnet_capableof_feb0d2506b (CapableOf politician advance_agenda) (STV 1.0 0.9091)) +(: cnet_capableof_28d90c6c14 (CapableOf politician fool_mass) (STV 1.0 0.9091)) +(: cnet_capableof_2212987df6 (CapableOf politician run_for_president) (STV 1.0 0.9454)) +(: cnet_capableof_5b21093891 (CapableOf politician speaking_lie) (STV 1.0 0.9091)) +(: cnet_capableof_5b1e6f7847 (CapableOf politician talk_nonsense) (STV 1.0 0.9091)) +(: cnet_capableof_0210b3ec6f (CapableOf pond hold_water) (STV 1.0 0.9339)) +(: cnet_capableof_a617534761 (CapableOf poor_person get_rich) (STV 1.0 0.9091)) +(: cnet_capableof_123f08353f (CapableOf pope speak_to_mass) (STV 1.0 0.9091)) +(: cnet_capableof_b5ae68c79e (CapableOf post_office forward_mail) (STV 1.0 0.9707)) +(: cnet_capableof_74052d0732 (CapableOf postal_service ship_package) (STV 1.0 0.9091)) +(: cnet_capableof_8883bf0373 (CapableOf postman ring_doorbell) (STV 1.0 0.9091)) +(: cnet_capableof_585cb1e17d (CapableOf praise add_to_confidence) (STV 1.0 0.9091)) +(: cnet_capableof_9a2d2fb60f (CapableOf praise provide_comfort) (STV 1.0 0.9091)) +(: cnet_capableof_26e8e61d27 (CapableOf prayer quiet_troubled_soul) (STV 1.0 0.9091)) +(: cnet_capableof_d75a5b67b7 (CapableOf predator corner_prey) (STV 1.0 0.9091)) +(: cnet_capableof_2d9d92564c (CapableOf predator spot_prey) (STV 1.0 0.9091)) +(: cnet_capableof_3b9b3a9638 (CapableOf predator kill_prey) (STV 1.0 0.9339)) +(: cnet_capableof_fda7eef7f0 (CapableOf pregnancy result_from_sex) (STV 1.0 0.9091)) +(: cnet_capableof_14188d3333 (CapableOf present surprise_child) (STV 1.0 0.9572)) +(: cnet_capableof_b9de886532 (CapableOf present delight_children) (STV 1.0 0.9091)) +(: cnet_capableof_d12fa6ec65 (CapableOf president elected_official) (STV 1.0 0.9091)) +(: cnet_capableof_3104e84d85 (CapableOf president govern_country) (STV 1.0 0.9659)) +(: cnet_capableof_825cc54ab2 (CapableOf president govern_nation) (STV 1.0 0.9572)) +(: cnet_capableof_acb65f014b (CapableOf president head_company) (STV 1.0 0.9454)) +(: cnet_capableof_977caf03bc (CapableOf president lead_country) (STV 1.0 0.9454)) +(: cnet_capableof_c12f94c942 (CapableOf president lead_nation) (STV 1.0 0.9091)) +(: cnet_capableof_fa5fb86d82 (CapableOf president sign_bill) (STV 1.0 0.9454)) +(: cnet_capableof_60003f5f5b (CapableOf priest believe_in_god) (STV 1.0 0.9572)) +(: cnet_capableof_a3d6a9e737 (CapableOf priest say_mass) (STV 1.0 0.9091)) +(: cnet_capableof_7f0286e34b (CapableOf prince succeed_king) (STV 1.0 0.9454)) +(: cnet_capableof_d9ec99c1ad (CapableOf prisoner attempt_escape) (STV 1.0 0.9524)) +(: cnet_capableof_1bc805775a (CapableOf prisoner attempt_to_escape) (STV 1.0 0.9091)) +(: cnet_capableof_9b396739fd (CapableOf prisoner scape_from_jail) (STV 1.0 0.9339)) +(: cnet_capableof_c7a0be711c (CapableOf prisoner scape_from_prison) (STV 1.0 0.9454)) +(: cnet_capableof_78187a0d93 (CapableOf prisoner scape_jail) (STV 1.0 0.9091)) +(: cnet_capableof_893df350fd (CapableOf prisoner live_on_bread_and_water) (STV 1.0 0.9339)) +(: cnet_capableof_21d72c3a4b (CapableOf private_investigator tail_suspect) (STV 1.0 0.9572)) +(: cnet_capableof_7d0b369bcb (CapableOf problem slow_work) (STV 1.0 0.9091)) +(: cnet_capableof_d60ff7d3ff (CapableOf problem cause_headache) (STV 1.0 0.9091)) +(: cnet_capableof_bfbb107a86 (CapableOf procrastination cause_problem) (STV 1.0 0.9091)) +(: cnet_capableof_e2a1149a01 (CapableOf procrastinator do_thing_later) (STV 1.0 0.9091)) +(: cnet_capableof_35c59ddac7 (CapableOf profit equal_expens) (STV 1.0 0.9091)) +(: cnet_capableof_4a5fb91347 (CapableOf program run_on_computer) (STV 1.0 0.9091)) +(: cnet_capableof_b16272df3d (CapableOf programmer program_ai) (STV 1.0 0.9091)) +(: cnet_capableof_fc150e20e1 (CapableOf programmer step_through_computer_program) (STV 1.0 0.9091)) +(: cnet_capableof_7fe692ec56 (CapableOf programmer write_ai) (STV 1.0 0.9091)) +(: cnet_capableof_53fd5dfa3b (CapableOf programmer write_program) (STV 1.0 0.9454)) +(: cnet_capableof_8ba1e472bd (CapableOf programmer control_computer) (STV 1.0 0.9091)) +(: cnet_capableof_748e024cb0 (CapableOf programmer learn_new_language) (STV 1.0 0.9091)) +(: cnet_capableof_f9aa2edad1 (CapableOf programmer write_code) (STV 1.0 0.9091)) +(: cnet_capableof_8399db5668 (CapableOf programmer write_software) (STV 1.0 0.9524)) +(: cnet_capableof_b31afe5327 (CapableOf programmer write_specification) (STV 1.0 0.9091)) +(: cnet_capableof_d5ad5595cb (CapableOf program compute) (STV 1.0 0.9091)) +(: cnet_capableof_3788e3dc9c (CapableOf prohibitionist_society restrict_freedom) (STV 1.0 0.9091)) +(: cnet_capableof_8debb6f866 (CapableOf project near_completion) (STV 1.0 0.9091)) +(: cnet_capableof_76de1e3803 (CapableOf prospector mine_for_gold) (STV 1.0 0.9454)) +(: cnet_capableof_a4a2da167c (CapableOf prospector mine_gold) (STV 1.0 0.9339)) +(: cnet_capableof_5b950c8fb5 (CapableOf prostitute give_head) (STV 1.0 0.9524)) +(: cnet_capableof_04ca0b31e2 (CapableOf prostitute sell_sexual_favor) (STV 1.0 0.9524)) +(: cnet_capableof_423bf75cfd (CapableOf prostitute service_client) (STV 1.0 0.9524)) +(: cnet_capableof_35009b5556 (CapableOf prostitute spread_disease) (STV 1.0 0.9454)) +(: cnet_capableof_e8c0e6970a (CapableOf prostitute blow_trick) (STV 1.0 0.9339)) +(: cnet_capableof_6ccbe82a77 (CapableOf prostitute charge_for_service_rendered) (STV 1.0 0.9091)) +(: cnet_capableof_9e90b074d5 (CapableOf prostitute offer_sex) (STV 1.0 0.9524)) +(: cnet_capableof_2030178736 (CapableOf prostitute turn_trick) (STV 1.0 0.9454)) +(: cnet_capableof_27492bd399 (CapableOf psychiatrist listen_to_neurotic_person_s_fear) (STV 1.0 0.9091)) +(: cnet_capableof_bc9f6f7e0a (CapableOf purse hold_money) (STV 1.0 0.9091)) +(: cnet_capableof_9e008b9d17 (CapableOf puzzle keep_mind_limber) (STV 1.0 0.9339)) +(: cnet_capableof_c81f462ed7 (CapableOf quarterback pass_football) (STV 1.0 0.9091)) +(: cnet_capableof_ed71b765d1 (CapableOf quarterback pass_football_to_receiver) (STV 1.0 0.9091)) +(: cnet_capableof_eb1170323b (CapableOf queen rule_country) (STV 1.0 0.9454)) +(: cnet_capableof_9cc0d00a62 (CapableOf rabbit move_fast) (STV 1.0 0.9091)) +(: cnet_capableof_72e7dab3a0 (CapableOf racer close_in) (STV 1.0 0.9091)) +(: cnet_capableof_3f3ded8c40 (CapableOf radiator cool_engine) (STV 1.0 0.9454)) +(: cnet_capableof_aa686c3c93 (CapableOf radio_station air_radio_program) (STV 1.0 0.9454)) +(: cnet_capableof_044bd027ca (CapableOf radio play_music) (STV 1.0 0.9693)) +(: cnet_capableof_51587c80b8 (CapableOf rain wet_ground) (STV 1.0 0.9524)) +(: cnet_capableof_7e7ce665dc (CapableOf raise increase_salary) (STV 1.0 0.9091)) +(: cnet_capableof_9aae142f57 (CapableOf rat bite) (STV 1.0 0.9091)) +(: cnet_capableof_f471d5c036 (CapableOf rat spread_disease) (STV 1.0 0.9091)) +(: cnet_capableof_79aef723ca (CapableOf razor need_new_blade) (STV 1.0 0.9091)) +(: cnet_capableof_03ae81ec36 (CapableOf reader open_book) (STV 1.0 0.9091)) +(: cnet_capableof_61c8d98e9d (CapableOf reader page_through_book) (STV 1.0 0.9091)) +(: cnet_capableof_0e159c9a28 (CapableOf reader learn_from_book) (STV 1.0 0.9091)) +(: cnet_capableof_b4712a817f (CapableOf reading further_knowledge) (STV 1.0 0.9091)) +(: cnet_capableof_50ccf3b53f (CapableOf realtor selling_house) (STV 1.0 0.9091)) +(: cnet_capableof_969065b229 (CapableOf receptionist page_guest) (STV 1.0 0.9454)) +(: cnet_capableof_7ace055076 (CapableOf referee time_race) (STV 1.0 0.9091)) +(: cnet_capableof_a881dbed62 (CapableOf refrigerator cool_food) (STV 1.0 0.9454)) +(: cnet_capableof_9b16eca4f8 (CapableOf refrigerator keep_food_cold) (STV 1.0 0.9091)) +(: cnet_capableof_3b41d0bbd6 (CapableOf relationship change_as_people_change) (STV 1.0 0.9091)) +(: cnet_capableof_1e58ff8af3 (CapableOf repairman servicing_appliance) (STV 1.0 0.9454)) +(: cnet_capableof_314c616239 (CapableOf reporter report_new) (STV 1.0 0.9091)) +(: cnet_capableof_506fd29dbb (CapableOf researcher study_cancer) (STV 1.0 0.9091)) +(: cnet_capableof_8b449d434a (CapableOf revolution ending_reign) (STV 1.0 0.9091)) +(: cnet_capableof_dd4628ce24 (CapableOf revolution shake_nation) (STV 1.0 0.9091)) +(: cnet_capableof_cbdc33e93b (CapableOf ribbon color) (STV 1.0 0.9091)) +(: cnet_capableof_ac2deed4a4 (CapableOf riding_bike good_exercise) (STV 1.0 0.9091)) +(: cnet_capableof_ec28f82dc8 (CapableOf ring_bearer hold_ring) (STV 1.0 0.9091)) +(: cnet_capableof_0b079e98ec (CapableOf road branch_many_time) (STV 1.0 0.9091)) +(: cnet_capableof_a658951dff (CapableOf road branch_off) (STV 1.0 0.9454)) +(: cnet_capableof_4e8ac53c31 (CapableOf robber stick_up_bank) (STV 1.0 0.9091)) +(: cnet_capableof_0f0c419551 (CapableOf rocket_vehicle operate_in_vacuum) (STV 1.0 0.9091)) +(: cnet_capableof_c0704800ff (CapableOf rock break_window) (STV 1.0 0.9339)) +(: cnet_capableof_d62d5c6fd6 (CapableOf rolling_stone gather_no_moss) (STV 1.0 0.9572)) +(: cnet_capableof_42479311a0 (CapableOf room colourful_and_tidy) (STV 1.0 0.9091)) +(: cnet_capableof_251b08a0bf (CapableOf room connect_to_hallway) (STV 1.0 0.9091)) +(: cnet_capableof_c271a4b4e0 (CapableOf room different_size) (STV 1.0 0.9454)) +(: cnet_capableof_fae4994eea (CapableOf rope trip_person) (STV 1.0 0.9524)) +(: cnet_capableof_62b5b037b0 (CapableOf ruler measure_distance) (STV 1.0 0.9524)) +(: cnet_capableof_c0fda0dff3 (CapableOf runner get_tired) (STV 1.0 0.9091)) +(: cnet_capableof_6ec49506fc (CapableOf runner trip_himself) (STV 1.0 0.9091)) +(: cnet_capableof_9f06a5e7c0 (CapableOf runner trip_over) (STV 1.0 0.9091)) +(: cnet_capableof_25f36dc7ad (CapableOf running_with_scissor hurt) (STV 1.0 0.9454)) +(: cnet_capableof_e036badbe9 (CapableOf sail raised) (STV 1.0 0.9091)) +(: cnet_capableof_c694d633a4 (CapableOf sailor board_ship) (STV 1.0 0.9454)) +(: cnet_capableof_ddd4611764 (CapableOf sailor captain_ship) (STV 1.0 0.9572)) +(: cnet_capableof_5af39b777f (CapableOf sailor sail_boat) (STV 1.0 0.9454)) +(: cnet_capableof_7510f4e072 (CapableOf sailor sail_ship) (STV 1.0 0.9454)) +(: cnet_capableof_c5da535311 (CapableOf sailor ship_out) (STV 1.0 0.9091)) +(: cnet_capableof_d17d279f64 (CapableOf sailor tie_knot) (STV 1.0 0.9091)) +(: cnet_capableof_115dc22348 (CapableOf sailor row_boat) (STV 1.0 0.9454)) +(: cnet_capableof_a2c05d4fb8 (CapableOf salesman offer_deal) (STV 1.0 0.9524)) +(: cnet_capableof_4a282567ee (CapableOf salesmen sell_ice_to_eskimo) (STV 1.0 0.9339)) +(: cnet_capableof_c492eb635e (CapableOf salmon need_to_spawn) (STV 1.0 0.9091)) +(: cnet_capableof_57812b5004 (CapableOf salt preserve_fish_and_other_meat) (STV 1.0 0.9091)) +(: cnet_capableof_d2e8ac29b0 (CapableOf salt season_food) (STV 1.0 0.9339)) +(: cnet_capableof_1b05c59af1 (CapableOf salt dissolve_in_water) (STV 1.0 0.9339)) +(: cnet_capableof_8f7a6bac17 (CapableOf santa_claus surprise_child) (STV 1.0 0.9091)) +(: cnet_capableof_60492bb3b6 (CapableOf sarcasm bring_hostility) (STV 1.0 0.9091)) +(: cnet_capableof_7cd7b98c69 (CapableOf satan smite_mortal) (STV 1.0 0.9091)) +(: cnet_capableof_b642b9f319 (CapableOf satellite orbit_planet) (STV 1.0 0.9454)) +(: cnet_capableof_a79f2b79fb (CapableOf scale measure_weight_of_object) (STV 1.0 0.9091)) +(: cnet_capableof_a39955c652 (CapableOf school bus_student) (STV 1.0 0.9091)) +(: cnet_capableof_be92dc1853 (CapableOf school_district bus_student) (STV 1.0 0.9091)) +(: cnet_capableof_840b2dc6ff (CapableOf school_of_fish number_in_thousand) (STV 1.0 0.9091)) +(: cnet_capableof_2f7b1d8349 (CapableOf science date_object) (STV 1.0 0.9091)) +(: cnet_capableof_2333f8dc07 (CapableOf science further_medicine) (STV 1.0 0.9091)) +(: cnet_capableof_253b4b2c32 (CapableOf science spread_idea) (STV 1.0 0.9091)) +(: cnet_capableof_04c3f4f1fc (CapableOf scientist experiment) (STV 1.0 0.9091)) +(: cnet_capableof_335ce833b8 (CapableOf scientist perfect_theory) (STV 1.0 0.9091)) +(: cnet_capableof_64989e1041 (CapableOf scientist prove_theory) (STV 1.0 0.9091)) +(: cnet_capableof_a2819e4f2a (CapableOf scientist question_theory) (STV 1.0 0.9091)) +(: cnet_capableof_d9e5733bba (CapableOf scissor cut_paper) (STV 1.0 0.9636)) +(: cnet_capableof_46734a62a9 (CapableOf scout sleep_in_tent) (STV 1.0 0.9091)) +(: cnet_capableof_c6706dde6e (CapableOf screwdriver turn_screw) (STV 1.0 0.9730)) +(: cnet_capableof_da117d3061 (CapableOf second_cousin marry_each_other) (STV 1.0 0.9091)) +(: cnet_capableof_dc6fcad74d (CapableOf secret_service_agent guard_president) (STV 1.0 0.9091)) +(: cnet_capableof_41b392f98c (CapableOf security_guard guard_building) (STV 1.0 0.9339)) +(: cnet_capableof_9551e7ba31 (CapableOf security_guard sound_alarm) (STV 1.0 0.9091)) +(: cnet_capableof_b9d6f085a4 (CapableOf seedling grow_into_tree) (STV 1.0 0.9091)) +(: cnet_capableof_8789454273 (CapableOf seeing_eye_dog guide_blind_person) (STV 1.0 0.9454)) +(: cnet_capableof_91493ce801 (CapableOf seller market_good) (STV 1.0 0.9454)) +(: cnet_capableof_9134fca72b (CapableOf semen taste_bitter) (STV 1.0 0.9091)) +(: cnet_capableof_1f84670d8a (CapableOf sentence end_with_period) (STV 1.0 0.9339)) +(: cnet_capableof_c922a9da91 (CapableOf sentient_being choose_for_themselv) (STV 1.0 0.9091)) +(: cnet_capableof_bf411f5f73 (CapableOf sentry sound_alarm) (STV 1.0 0.9454)) +(: cnet_capableof_a6579c7f1c (CapableOf sergeant order_private_to_do_pushup) (STV 1.0 0.9091)) +(: cnet_capableof_ed27e60322 (CapableOf servant ready_car) (STV 1.0 0.9091)) +(: cnet_capableof_f0dd216dbf (CapableOf servant serve_master) (STV 1.0 0.9091)) +(: cnet_capableof_eccf95a910 (CapableOf servant dress_queen) (STV 1.0 0.9091)) +(: cnet_capableof_615c3b022e (CapableOf servant please_master) (STV 1.0 0.9339)) +(: cnet_capableof_5f23fe8829 (CapableOf servant ready_country_place) (STV 1.0 0.9091)) +(: cnet_capableof_196cffd6ca (CapableOf set include_item) (STV 1.0 0.9091)) +(: cnet_capableof_5f45714119 (CapableOf several_strong_people push_stalled_vehicle) (STV 1.0 0.9091)) +(: cnet_capableof_09b697c32b (CapableOf sewer sew) (STV 1.0 0.9091)) +(: cnet_capableof_9ece4bbfd0 (CapableOf sex feel_good) (STV 1.0 0.9636)) +(: cnet_capableof_b5cc2d7f38 (CapableOf sex last_30_second) (STV 1.0 0.9091)) +(: cnet_capableof_bab5d81973 (CapableOf sex making_love) (STV 1.0 0.9659)) +(: cnet_capableof_810edcd809 (CapableOf sex wonderful_thing) (STV 1.0 0.9636)) +(: cnet_capableof_47d691e373 (CapableOf shark eat_people) (STV 1.0 0.9454)) +(: cnet_capableof_41275308b8 (CapableOf sharp_trader corner_market) (STV 1.0 0.9091)) +(: cnet_capableof_8c827b2538 (CapableOf sheep graze) (STV 1.0 0.9339)) +(: cnet_capableof_1ec370efdc (CapableOf sheet come_in_matching_set) (STV 1.0 0.9091)) +(: cnet_capableof_c659513953 (CapableOf shepherd bell_sheep) (STV 1.0 0.9091)) +(: cnet_capableof_2ddf4571a6 (CapableOf sherlock_holme reason_deductively) (STV 1.0 0.9091)) +(: cnet_capableof_145222411b (CapableOf ship near_island) (STV 1.0 0.9091)) +(: cnet_capableof_83e88d5de8 (CapableOf ship near_shore) (STV 1.0 0.9091)) +(: cnet_capableof_6fc05fc7d2 (CapableOf ship travel_over_water) (STV 1.0 0.9524)) +(: cnet_capableof_1b10ae7b14 (CapableOf ship weather_storm) (STV 1.0 0.9454)) +(: cnet_capableof_a866786945 (CapableOf shipper number_crate) (STV 1.0 0.9091)) +(: cnet_capableof_a58779e906 (CapableOf shoeshine_boy shine_shoe) (STV 1.0 0.9091)) +(: cnet_capableof_891859668f (CapableOf shortstop field_grounder) (STV 1.0 0.9091)) +(: cnet_capableof_6923cdbae4 (CapableOf shot mark_beginning_of_race) (STV 1.0 0.9091)) +(: cnet_capableof_552a7a4d07 (CapableOf shovel dig_hole) (STV 1.0 0.9693)) +(: cnet_capableof_5f77dd87b9 (CapableOf sibling throw_pillow_at_each_other) (STV 1.0 0.9339)) +(: cnet_capableof_2d45664c87 (CapableOf sick_person battle_cancer) (STV 1.0 0.9091)) +(: cnet_capableof_8855a73667 (CapableOf sick_person battle_disease) (STV 1.0 0.9091)) +(: cnet_capableof_1c898edccf (CapableOf sick_person fight_sickness) (STV 1.0 0.9091)) +(: cnet_capableof_6745279ce8 (CapableOf sick_person give_disease_to_another_person) (STV 1.0 0.9339)) +(: cnet_capableof_09dc2494ec (CapableOf sick_person need_nursing) (STV 1.0 0.9091)) +(: cnet_capableof_6845fe8b57 (CapableOf sick_person suffer_great_pain) (STV 1.0 0.9091)) +(: cnet_capableof_d4555ff237 (CapableOf sick_person throw_up) (STV 1.0 0.9091)) +(: cnet_capableof_ac8523ec5d (CapableOf sickness cause_person_to_hoarse) (STV 1.0 0.9339)) +(: cnet_capableof_455284e1d0 (CapableOf sickness happen_to_animal) (STV 1.0 0.9091)) +(: cnet_capableof_31ff3a97ba (CapableOf silk feel_soft) (STV 1.0 0.9339)) +(: cnet_capableof_9c02046719 (CapableOf singer sing_ballad) (STV 1.0 0.9091)) +(: cnet_capableof_a8661b0224 (CapableOf singer create_music) (STV 1.0 0.9339)) +(: cnet_capableof_ee0c5794e8 (CapableOf singer use_microphone) (STV 1.0 0.9091)) +(: cnet_capableof_bc78feb404 (CapableOf situation anger_human) (STV 1.0 0.9091)) +(: cnet_capableof_16ff719fd4 (CapableOf situation get_interesting) (STV 1.0 0.9091)) +(: cnet_capableof_00301a2afd (CapableOf situation go_south) (STV 1.0 0.9091)) +(: cnet_capableof_07df70c383 (CapableOf situation turn_bad) (STV 1.0 0.9091)) +(: cnet_capableof_40f513f358 (CapableOf skiing dangerous_sport) (STV 1.0 0.9454)) +(: cnet_capableof_a8a82b8d26 (CapableOf skunk smell_pretty_bad) (STV 1.0 0.9091)) +(: cnet_capableof_c0a64596cd (CapableOf sky appear_blue) (STV 1.0 0.9454)) +(: cnet_capableof_26494c0c0a (CapableOf sky rain_water) (STV 1.0 0.9524)) +(: cnet_capableof_55f711527d (CapableOf slave gather_cotton) (STV 1.0 0.9339)) +(: cnet_capableof_c638e15144 (CapableOf slave sing_of_freedom) (STV 1.0 0.9091)) +(: cnet_capableof_092b6bce8d (CapableOf slave work_for_nothing) (STV 1.0 0.9339)) +(: cnet_capableof_c3f0183fe2 (CapableOf slide_projector show_slide) (STV 1.0 0.9454)) +(: cnet_capableof_51e23a021b (CapableOf smoke cake_chimney) (STV 1.0 0.9091)) +(: cnet_capableof_0b68bb1d8e (CapableOf smoker light_cigarette) (STV 1.0 0.9524)) +(: cnet_capableof_ab8f85a7ec (CapableOf smoker smoke) (STV 1.0 0.9091)) +(: cnet_capableof_5dea8f288d (CapableOf smoker strike_match) (STV 1.0 0.9454)) +(: cnet_capableof_d8153e2e80 (CapableOf smoking cause_lung_cancer) (STV 1.0 0.9091)) +(: cnet_capableof_308f8e7cd4 (CapableOf snowmen wear_hat) (STV 1.0 0.9091)) +(: cnet_capableof_9ad108f99d (CapableOf snowploy clear_street) (STV 1.0 0.9091)) +(: cnet_capableof_09c9c398b8 (CapableOf social_stigma lead_to_marginalization) (STV 1.0 0.9091)) +(: cnet_capableof_23942c442c (CapableOf socialist become_communist) (STV 1.0 0.9091)) +(: cnet_capableof_eaf9a50f9c (CapableOf socialist empower_community) (STV 1.0 0.9091)) +(: cnet_capableof_486dce2bf0 (CapableOf sock warm_foot) (STV 1.0 0.9091)) +(: cnet_capableof_8ee91d9107 (CapableOf soldier battle_another_solider) (STV 1.0 0.9091)) +(: cnet_capableof_49ef33c438 (CapableOf soldier fight_battle) (STV 1.0 0.9339)) +(: cnet_capableof_7af73847cb (CapableOf soldier fight_in_battle) (STV 1.0 0.9339)) +(: cnet_capableof_acc81c2f2d (CapableOf soldier fire_gun) (STV 1.0 0.9454)) +(: cnet_capableof_cc6a830b54 (CapableOf soldier kill_enemy) (STV 1.0 0.9091)) +(: cnet_capableof_0f8d96c07b (CapableOf soldier step_on_land_mine) (STV 1.0 0.9091)) +(: cnet_capableof_69603147e9 (CapableOf soldier storm_beach) (STV 1.0 0.9454)) +(: cnet_capableof_9cdd871f5d (CapableOf soldier wait_for_order) (STV 1.0 0.9339)) +(: cnet_capableof_908a8dec49 (CapableOf soldier advance_toward_enemy_line) (STV 1.0 0.9091)) +(: cnet_capableof_87182382cc (CapableOf soldier battle_in_war) (STV 1.0 0.9454)) +(: cnet_capableof_70ad97b989 (CapableOf soldier fight_war) (STV 1.0 0.9091)) +(: cnet_capableof_6599a46816 (CapableOf soldier follow_order) (STV 1.0 0.9091)) +(: cnet_capableof_7a66d8c425 (CapableOf soldier form_formation) (STV 1.0 0.9091)) +(: cnet_capableof_936fdeb7bb (CapableOf soldier storm_building) (STV 1.0 0.9091)) +(: cnet_capableof_715654dc6b (CapableOf solvent thin_paint) (STV 1.0 0.9524)) +(: cnet_capableof_6745287c0a (CapableOf something_you take_place_in_line) (STV 1.0 0.9339)) +(: cnet_capableof_e045410483 (CapableOf somone burn_candle) (STV 1.0 0.9091)) +(: cnet_capableof_29fa38e54a (CapableOf soprano sing_aria) (STV 1.0 0.9091)) +(: cnet_capableof_8457140383 (CapableOf sorrowful_person hope_life_will_improve) (STV 1.0 0.9091)) +(: cnet_capableof_0706dd40d5 (CapableOf space_shuttle fly) (STV 1.0 0.9091)) +(: cnet_capableof_ac81abbe84 (CapableOf speaker anger_mob) (STV 1.0 0.9091)) +(: cnet_capableof_8cedd6db15 (CapableOf speaker field_question) (STV 1.0 0.9339)) +(: cnet_capableof_ac549f9e9e (CapableOf specy_of_turtle live_over_100_year) (STV 1.0 0.9091)) +(: cnet_capableof_49e189e82d (CapableOf spectator watch_event) (STV 1.0 0.9091)) +(: cnet_capableof_c476f32777 (CapableOf spectator watch_sport) (STV 1.0 0.9091)) +(: cnet_capableof_98829d54af (CapableOf spider inject_venom) (STV 1.0 0.9091)) +(: cnet_capableof_d186769c8b (CapableOf spider spin_web) (STV 1.0 0.9339)) +(: cnet_capableof_92b3b2065d (CapableOf spy bug_telephone) (STV 1.0 0.9091)) +(: cnet_capableof_bb00b120af (CapableOf spouse distance_themselve_with_silence) (STV 1.0 0.9339)) +(: cnet_capableof_5c65a0a32e (CapableOf spous break_up) (STV 1.0 0.9091)) +(: cnet_capableof_b7aa252a47 (CapableOf sprinkler water_lawn) (STV 1.0 0.9091)) +(: cnet_capableof_9b562759bf (CapableOf spy bug_apartment) (STV 1.0 0.9454)) +(: cnet_capableof_81a340be09 (CapableOf squirrel gather_acorn) (STV 1.0 0.9091)) +(: cnet_capableof_4bd6276cff (CapableOf squirrel store_nut) (STV 1.0 0.9454)) +(: cnet_capableof_5c3669a18a (CapableOf stapler double_as_paperweight) (STV 1.0 0.9091)) +(: cnet_capableof_75603d563a (CapableOf star explode) (STV 1.0 0.9091)) +(: cnet_capableof_58014c74e6 (CapableOf still_water reflect_light) (STV 1.0 0.9091)) +(: cnet_capableof_9e7afe0cec (CapableOf stitch_in_time save_nine) (STV 1.0 0.9339)) +(: cnet_capableof_42234edf7a (CapableOf stock_market bottom_out) (STV 1.0 0.9454)) +(: cnet_capableof_d62f6dff97 (CapableOf stopwatch time_event) (STV 1.0 0.9339)) +(: cnet_capableof_b950a5d075 (CapableOf stopwatch time_race) (STV 1.0 0.9608)) +(: cnet_capableof_45d00d663d (CapableOf stopwatche time_race) (STV 1.0 0.9454)) +(: cnet_capableof_1caa5b9060 (CapableOf store offer_sale) (STV 1.0 0.9091)) +(: cnet_capableof_5deddae206 (CapableOf stove heat_food) (STV 1.0 0.9636)) +(: cnet_capableof_ba320336cf (CapableOf strong_emotion cloud_judgement) (STV 1.0 0.9091)) +(: cnet_capableof_22a16629e5 (CapableOf student answer_question) (STV 1.0 0.9454)) +(: cnet_capableof_057924c545 (CapableOf student ask_question) (STV 1.0 0.9091)) +(: cnet_capableof_3de7c2af45 (CapableOf student complete_assignment) (STV 1.0 0.9454)) +(: cnet_capableof_89054c894a (CapableOf student complete_homework) (STV 1.0 0.9608)) +(: cnet_capableof_2cd49c2515 (CapableOf student complete_test) (STV 1.0 0.9454)) +(: cnet_capableof_014731ea84 (CapableOf student doubt_teacher) (STV 1.0 0.9524)) +(: cnet_capableof_f0dd1f55f8 (CapableOf student fail_exam) (STV 1.0 0.9091)) +(: cnet_capableof_fda82d3be6 (CapableOf student fail_test) (STV 1.0 0.9524)) +(: cnet_capableof_856e7b0b9b (CapableOf student fool_teacher) (STV 1.0 0.9454)) +(: cnet_capableof_9b083f4aa2 (CapableOf student forget_homework) (STV 1.0 0.9091)) +(: cnet_capableof_0e17207309 (CapableOf student forget_to_do_homework) (STV 1.0 0.9091)) +(: cnet_capableof_1a453f3590 (CapableOf student gain_knowledge_from_studying) (STV 1.0 0.9091)) +(: cnet_capableof_deb4fa93be (CapableOf student go_to_class) (STV 1.0 0.9091)) +(: cnet_capableof_9019915002 (CapableOf student go_to_high_school) (STV 1.0 0.9091)) +(: cnet_capableof_d7acd67071 (CapableOf student guess_answer) (STV 1.0 0.9454)) +(: cnet_capableof_8a22687fb2 (CapableOf student holding_answer) (STV 1.0 0.9091)) +(: cnet_capableof_e2eb751465 (CapableOf student homework) (STV 1.0 0.9339)) +(: cnet_capableof_b5e7316e45 (CapableOf student journey_abroad) (STV 1.0 0.9454)) +(: cnet_capableof_cb2e74549f (CapableOf student learn_to_read) (STV 1.0 0.9339)) +(: cnet_capableof_0bd9f0830f (CapableOf student listen_teacher) (STV 1.0 0.9454)) +(: cnet_capableof_b47146803c (CapableOf student master_subject) (STV 1.0 0.9572)) +(: cnet_capableof_d894795ff2 (CapableOf student note_fact) (STV 1.0 0.9608)) +(: cnet_capableof_bd8a1b7467 (CapableOf student question_teacher) (STV 1.0 0.9677)) +(: cnet_capableof_b522a48e40 (CapableOf student read_book) (STV 1.0 0.9524)) +(: cnet_capableof_ec879c3904 (CapableOf student study) (STV 1.0 0.9572)) +(: cnet_capableof_b16b401b4a (CapableOf student study_book) (STV 1.0 0.9572)) +(: cnet_capableof_3463353a88 (CapableOf student study_for_test) (STV 1.0 0.9091)) +(: cnet_capableof_7dcd1974c7 (CapableOf student study_lesson) (STV 1.0 0.9091)) +(: cnet_capableof_3a5e7e1b34 (CapableOf student study_math) (STV 1.0 0.9524)) +(: cnet_capableof_92842774da (CapableOf student understand_lesson) (STV 1.0 0.9339)) +(: cnet_capableof_3689fbed2d (CapableOf student begin_test) (STV 1.0 0.9091)) +(: cnet_capableof_22dba9c402 (CapableOf student fail_class) (STV 1.0 0.9091)) +(: cnet_capableof_d3c3c89831 (CapableOf student listen_to_teacher) (STV 1.0 0.9572)) +(: cnet_capableof_0ab761a904 (CapableOf submarine dive) (STV 1.0 0.9091)) +(: cnet_capableof_86bd7a8ef4 (CapableOf submarine sink) (STV 1.0 0.9091)) +(: cnet_capableof_3b486f8a43 (CapableOf submarine travel_under_north_ole) (STV 1.0 0.9091)) +(: cnet_capableof_7b17946b92 (CapableOf sugar come_in_cube) (STV 1.0 0.9091)) +(: cnet_capableof_e33654e8a2 (CapableOf suitor fear_rejection) (STV 1.0 0.9091)) +(: cnet_capableof_ef2bd3e2b6 (CapableOf sum amount_to_nothing) (STV 1.0 0.9091)) +(: cnet_capableof_ac57a61f4b (CapableOf sun age_human_skin) (STV 1.0 0.9091)) +(: cnet_capableof_1fbeb307ff (CapableOf sun brown_skin) (STV 1.0 0.9524)) +(: cnet_capableof_22e50e4295 (CapableOf sun burn_skin) (STV 1.0 0.9454)) +(: cnet_capableof_fa159e609c (CapableOf sun dry_laundry) (STV 1.0 0.9677)) +(: cnet_capableof_b923bf7b7c (CapableOf sun heat_earth) (STV 1.0 0.9608)) +(: cnet_capableof_a94b85de54 (CapableOf sun rise_in_morning) (STV 1.0 0.9524)) +(: cnet_capableof_0b1bd0c035 (CapableOf sun shine_all_day) (STV 1.0 0.9091)) +(: cnet_capableof_3089daa5a4 (CapableOf sun shine_bright) (STV 1.0 0.9572)) +(: cnet_capableof_6c84382179 (CapableOf sun shine_brightly) (STV 1.0 0.9636)) +(: cnet_capableof_5c213f316b (CapableOf sun shine_on_day) (STV 1.0 0.9608)) +(: cnet_capableof_e93ea33f2e (CapableOf sunglass shade_eye_from_sun) (STV 1.0 0.9091)) +(: cnet_capableof_47fe9865f5 (CapableOf superman destroy_lead_pipe) (STV 1.0 0.9091)) +(: cnet_capableof_21a0ebdb12 (CapableOf superman do_amazing_feat) (STV 1.0 0.9091)) +(: cnet_capableof_c840bcb59c (CapableOf superman fly) (STV 1.0 0.9091)) +(: cnet_capableof_293c01172f (CapableOf superman lift_bus) (STV 1.0 0.9091)) +(: cnet_capableof_645c0a9b3a (CapableOf supplier ship_product) (STV 1.0 0.9091)) +(: cnet_capableof_1690359f29 (CapableOf surfer ride_wave) (STV 1.0 0.9339)) +(: cnet_capableof_a69acebda9 (CapableOf surgeon have_to_operate_on_patient) (STV 1.0 0.9091)) +(: cnet_capableof_61ace4a09e (CapableOf sweat drip) (STV 1.0 0.9091)) +(: cnet_capableof_5f7f39c709 (CapableOf symptom point_to_diagnosis) (STV 1.0 0.9091)) +(: cnet_capableof_95d58d43df (CapableOf tablecloth cover_table) (STV 1.0 0.9454)) +(: cnet_capableof_578cfe8bd8 (CapableOf tailor fit_man_with_suit) (STV 1.0 0.9091)) +(: cnet_capableof_600b1808f0 (CapableOf talented_people write_very_interesting_fictious_story) (STV 1.0 0.9091)) +(: cnet_capableof_5013ab4973 (CapableOf tape_recorder record_conversation) (STV 1.0 0.9454)) +(: cnet_capableof_f5002581cc (CapableOf tape_recorder record_sound) (STV 1.0 0.9454)) +(: cnet_capableof_c5c3d1cb66 (CapableOf tea_candle burn_for_four_hour) (STV 1.0 0.9091)) +(: cnet_capableof_4a000b43f5 (CapableOf teacher answer_question) (STV 1.0 0.9572)) +(: cnet_capableof_cc97eba39d (CapableOf teacher assign_homework) (STV 1.0 0.9454)) +(: cnet_capableof_81ecdaad09 (CapableOf teacher circle_mistake) (STV 1.0 0.9454)) +(: cnet_capableof_0ece655967 (CapableOf teacher dare_to_learn) (STV 1.0 0.9091)) +(: cnet_capableof_df821423bd (CapableOf teacher explain_fact) (STV 1.0 0.9091)) +(: cnet_capableof_93dbdc59a2 (CapableOf teacher fail_student) (STV 1.0 0.9454)) +(: cnet_capableof_71d1ee246e (CapableOf teacher forget_to_grade_paper) (STV 1.0 0.9091)) +(: cnet_capableof_8b35c4677e (CapableOf teacher help_student) (STV 1.0 0.9572)) +(: cnet_capableof_ad3bfe8c4c (CapableOf teacher list_homework) (STV 1.0 0.9091)) +(: cnet_capableof_9ea19b769f (CapableOf teacher listen_to_student) (STV 1.0 0.9091)) +(: cnet_capableof_7c3b885727 (CapableOf teacher mark_homework) (STV 1.0 0.9454)) +(: cnet_capableof_2c3bb7ef98 (CapableOf teacher mark_paper) (STV 1.0 0.9339)) +(: cnet_capableof_9792d99422 (CapableOf teacher point_at_picture) (STV 1.0 0.9091)) +(: cnet_capableof_9d8f41026c (CapableOf teacher point_to_example) (STV 1.0 0.9091)) +(: cnet_capableof_295e7cece7 (CapableOf teacher question_student) (STV 1.0 0.9524)) +(: cnet_capableof_6cede6136f (CapableOf teacher school_children) (STV 1.0 0.9339)) +(: cnet_capableof_08424bf474 (CapableOf teacher school_student) (STV 1.0 0.9693)) +(: cnet_capableof_1c85c0fdc1 (CapableOf teacher state_fact) (STV 1.0 0.9636)) +(: cnet_capableof_28a2fc6b76 (CapableOf teacher teach_about_company) (STV 1.0 0.9091)) +(: cnet_capableof_4fe75c5885 (CapableOf teacher teach_child) (STV 1.0 0.9091)) +(: cnet_capableof_541ca370af (CapableOf teacher teach_pupil) (STV 1.0 0.9339)) +(: cnet_capableof_6081a75ff1 (CapableOf teacher teach_student) (STV 1.0 0.9636)) +(: cnet_capableof_86f3b3bbcc (CapableOf teacher time_test) (STV 1.0 0.9572)) +(: cnet_capableof_8075867d9a (CapableOf teacher welcome_new_class) (STV 1.0 0.9091)) +(: cnet_capableof_35a3eeccea (CapableOf teacher work_in_school) (STV 1.0 0.9454)) +(: cnet_capableof_330ff00cda (CapableOf teacher explain_math) (STV 1.0 0.9339)) +(: cnet_capableof_15e4e4fe1a (CapableOf teacher help_student_to_learn) (STV 1.0 0.9091)) +(: cnet_capableof_22b1687ffd (CapableOf teacher plan_lesson) (STV 1.0 0.9636)) +(: cnet_capableof_4a4e5a9467 (CapableOf teacher read_to_student) (STV 1.0 0.9091)) +(: cnet_capableof_41dd604688 (CapableOf teacher teach_in_classroom) (STV 1.0 0.9091)) +(: cnet_capableof_5aa693073d (CapableOf teacher teach_us_new_knowledge) (STV 1.0 0.9091)) +(: cnet_capableof_b73d89f96b (CapableOf team lose_to_another_team) (STV 1.0 0.9454)) +(: cnet_capableof_980f8e9d30 (CapableOf teenager battle_parent) (STV 1.0 0.9091)) +(: cnet_capableof_3b77ea85e5 (CapableOf teenager talk_on_telephone) (STV 1.0 0.9091)) +(: cnet_capableof_85fd320a35 (CapableOf teenager dance_for_hour) (STV 1.0 0.9091)) +(: cnet_capableof_44c27781df (CapableOf teenager lift_pus_from_zit) (STV 1.0 0.9091)) +(: cnet_capableof_49f5d51a35 (CapableOf teenager listen_to_rock_music) (STV 1.0 0.9091)) +(: cnet_capableof_e445b5759e (CapableOf teenager sleep_lot) (STV 1.0 0.9091)) +(: cnet_capableof_27f963d36a (CapableOf teenager voice_dissent) (STV 1.0 0.9091)) +(: cnet_capableof_bb520e00e6 (CapableOf teeth cause_pain) (STV 1.0 0.9091)) +(: cnet_capableof_1d38b7eec7 (CapableOf telephone ring_loudly) (STV 1.0 0.9454)) +(: cnet_capableof_5ee764aaa9 (CapableOf telephone_kiosk keep_dry) (STV 1.0 0.9091)) +(: cnet_capableof_d96b66601b (CapableOf telephone hang_on_wall) (STV 1.0 0.9091)) +(: cnet_capableof_714e2a284a (CapableOf telescope point_to_star) (STV 1.0 0.9091)) +(: cnet_capableof_211e104656 (CapableOf telescope spot_distant_object) (STV 1.0 0.9091)) +(: cnet_capableof_80ecd66399 (CapableOf telescope use_mirror) (STV 1.0 0.9091)) +(: cnet_capableof_780f160d80 (CapableOf telescope spot_planet) (STV 1.0 0.9091)) +(: cnet_capableof_a65ffe8240 (CapableOf telescope view_star) (STV 1.0 0.9091)) +(: cnet_capableof_efd0f76daa (CapableOf telescope view_thing_far_away) (STV 1.0 0.9339)) +(: cnet_capableof_8469614769 (CapableOf television_station air_program) (STV 1.0 0.9091)) +(: cnet_capableof_06608f2b11 (CapableOf tent shelter) (STV 1.0 0.9454)) +(: cnet_capableof_d45ea8ef89 (CapableOf terrorist arm_bomb) (STV 1.0 0.9677)) +(: cnet_capableof_0a4f0c5673 (CapableOf terrorist plant_bomb) (STV 1.0 0.9572)) +(: cnet_capableof_0d5c0e26b0 (CapableOf theater show_movie) (STV 1.0 0.9572)) +(: cnet_capableof_bef243f50d (CapableOf theater showing_movie) (STV 1.0 0.9339)) +(: cnet_capableof_c91d0c9d1c (CapableOf theory disproven) (STV 1.0 0.9339)) +(: cnet_capableof_b39f1659f7 (CapableOf thermometer measure_temperature) (STV 1.0 0.9659)) +(: cnet_capableof_333d772e06 (CapableOf thief case_house) (STV 1.0 0.9719)) +(: cnet_capableof_cb1a32b689 (CapableOf thief case_joint) (STV 1.0 0.9719)) +(: cnet_capableof_3419298982 (CapableOf thought divide_people) (STV 1.0 0.9091)) +(: cnet_capableof_4e6032132a (CapableOf thrifty_person save_money) (STV 1.0 0.9091)) +(: cnet_capableof_447e9a2783 (CapableOf thunder surprise_people) (STV 1.0 0.9091)) +(: cnet_capableof_5387cf469e (CapableOf tiger eat) (STV 1.0 0.9091)) +(: cnet_capableof_de765f4a3b (CapableOf toaster brown_toast) (STV 1.0 0.9454)) +(: cnet_capableof_814dc526a2 (CapableOf toilet flush) (STV 1.0 0.9454)) +(: cnet_capableof_752f40531d (CapableOf toilet smell_bad) (STV 1.0 0.9091)) +(: cnet_capableof_5a05e70459 (CapableOf toilet get_clogged) (STV 1.0 0.9091)) +(: cnet_capableof_6dfd6d5ecc (CapableOf token symbol) (STV 1.0 0.9091)) +(: cnet_capableof_0684afd6c6 (CapableOf tongue taste_food) (STV 1.0 0.9339)) +(: cnet_capableof_3df5233d9c (CapableOf too_much_sun cause_skin_cancer) (STV 1.0 0.9091)) +(: cnet_capableof_36ae19f085 (CapableOf torch light_way) (STV 1.0 0.9454)) +(: cnet_capableof_ba862cbede (CapableOf tortoise race_hare) (STV 1.0 0.9454)) +(: cnet_capableof_8c23f5ce73 (CapableOf tourist visit_museum) (STV 1.0 0.9091)) +(: cnet_capableof_732e0d55ce (CapableOf tourist view_scenery) (STV 1.0 0.9454)) +(: cnet_capableof_b53e186695 (CapableOf towel dry_body) (STV 1.0 0.9091)) +(: cnet_capableof_888216512f (CapableOf towel dry_dishe) (STV 1.0 0.9091)) +(: cnet_capableof_18450a3bc6 (CapableOf towel dry_hair) (STV 1.0 0.9454)) +(: cnet_capableof_faa7c57e2c (CapableOf toy delight_child) (STV 1.0 0.9454)) +(: cnet_capableof_299f44b23f (CapableOf tractor pull_trailer) (STV 1.0 0.9454)) +(: cnet_capableof_bfbadb9780 (CapableOf train arrive_late) (STV 1.0 0.9572)) +(: cnet_capableof_a7ef93d30b (CapableOf train arrive_on_schedule) (STV 1.0 0.9091)) +(: cnet_capableof_5fd2c2abb8 (CapableOf train near_destination) (STV 1.0 0.9091)) +(: cnet_capableof_602b72c7ec (CapableOf train run_on_railroad_track) (STV 1.0 0.9091)) +(: cnet_capableof_5a4188650c (CapableOf trainer condition_racehorse) (STV 1.0 0.9091)) +(: cnet_capableof_bcbdd94c2f (CapableOf trainer condition_racehors) (STV 1.0 0.9091)) +(: cnet_capableof_72b69c0126 (CapableOf train decelerate) (STV 1.0 0.9091)) +(: cnet_capableof_7a6b0c6cbd (CapableOf travel_agent book_flight) (STV 1.0 0.9091)) +(: cnet_capableof_292f454d2f (CapableOf travel_agent plan_vacation) (STV 1.0 0.9091)) +(: cnet_capableof_a7af984b83 (CapableOf traveler near_destination) (STV 1.0 0.9091)) +(: cnet_capableof_25446b6fac (CapableOf tree branch_into_leave) (STV 1.0 0.9091)) +(: cnet_capableof_9d98ee1b1b (CapableOf tree branch_out) (STV 1.0 0.9339)) +(: cnet_capableof_fe005bd774 (CapableOf tree cast_shadow) (STV 1.0 0.9091)) +(: cnet_capableof_4ef87b9196 (CapableOf tree drop_leave) (STV 1.0 0.9091)) +(: cnet_capableof_08380cb322 (CapableOf tree grow) (STV 1.0 0.9677)) +(: cnet_capableof_c79fc80ce8 (CapableOf tree grow_leave) (STV 1.0 0.9608)) +(: cnet_capableof_b820be5314 (CapableOf tree shade_car) (STV 1.0 0.9091)) +(: cnet_capableof_b9cd52e611 (CapableOf tree shade_from_sun) (STV 1.0 0.9091)) +(: cnet_capableof_ac0bfb4f35 (CapableOf tree shade_lawn) (STV 1.0 0.9572)) +(: cnet_capableof_c842d18ad0 (CapableOf tree branch_to_leave) (STV 1.0 0.9091)) +(: cnet_capableof_1985135458 (CapableOf tree die) (STV 1.0 0.9454)) +(: cnet_capableof_08954f698a (CapableOf tree fall) (STV 1.0 0.9091)) +(: cnet_capableof_56147d66f9 (CapableOf tree fall_down) (STV 1.0 0.9454)) +(: cnet_capableof_6b65115de0 (CapableOf tree produce_fruit) (STV 1.0 0.9091)) +(: cnet_capableof_75820e99af (CapableOf tree shade_grass) (STV 1.0 0.9454)) +(: cnet_capableof_4fdaa6a067 (CapableOf tree shade_sun) (STV 1.0 0.9091)) +(: cnet_capableof_c56830f957 (CapableOf truck pull_trailer) (STV 1.0 0.9339)) +(: cnet_capableof_6fbde6e061 (CapableOf turpentine thin_oil_based_paint) (STV 1.0 0.9091)) +(: cnet_capableof_a73fb3f08d (CapableOf turtle live_long_time) (STV 1.0 0.9524)) +(: cnet_capableof_a1f91e41a7 (CapableOf turtle live_to_very_old) (STV 1.0 0.9454)) +(: cnet_capableof_ba32d7a2d7 (CapableOf tv change_subjective_consciousness) (STV 1.0 0.9091)) +(: cnet_capableof_04b785daf4 (CapableOf tv control_mind) (STV 1.0 0.9091)) +(: cnet_capableof_e754f62d9b (CapableOf two_people agree) (STV 1.0 0.9091)) +(: cnet_capableof_e535c409f2 (CapableOf two_people agree_with_each_other) (STV 1.0 0.9091)) +(: cnet_capableof_b19021d8ac (CapableOf two_people make_love) (STV 1.0 0.9524)) +(: cnet_capableof_7214205567 (CapableOf ufo glow) (STV 1.0 0.9091)) +(: cnet_capableof_5ef0108474 (CapableOf ufo land_on_earth) (STV 1.0 0.9091)) +(: cnet_capableof_435bbab3c4 (CapableOf undergraduate seek_advice_about_curricula) (STV 1.0 0.9091)) +(: cnet_capableof_9812c1c33b (CapableOf undertaker dig_grave) (STV 1.0 0.9454)) +(: cnet_capableof_f38a188ef3 (CapableOf union demand_higher_wage) (STV 1.0 0.9091)) +(: cnet_capableof_a761f15ac3 (CapableOf union_member strike) (STV 1.0 0.9091)) +(: cnet_capableof_16d685aebc (CapableOf university honor_researcher_with_award) (STV 1.0 0.9091)) +(: cnet_capableof_0c3bb2c16d (CapableOf usher seat_audience_member) (STV 1.0 0.9091)) +(: cnet_capableof_59c19257f0 (CapableOf usher seat_guest) (STV 1.0 0.9608)) +(: cnet_capableof_fd106a7ec0 (CapableOf usher seat_patron) (STV 1.0 0.9091)) +(: cnet_capableof_5809226c5d (CapableOf usher seat_wedding_guest) (STV 1.0 0.9339)) +(: cnet_capableof_6070328003 (CapableOf vacuum clean_carpet) (STV 1.0 0.9339)) +(: cnet_capableof_d8174077af (CapableOf vacuum clean_floor) (STV 1.0 0.9091)) +(: cnet_capableof_3463c3f34f (CapableOf vase hold_flower) (STV 1.0 0.9091)) +(: cnet_capableof_22eda1ae42 (CapableOf vehicle receive_damage) (STV 1.0 0.9091)) +(: cnet_capableof_073451326f (CapableOf vehicle travel) (STV 1.0 0.9091)) +(: cnet_capableof_55efb694e2 (CapableOf vehicle move_on_water) (STV 1.0 0.9091)) +(: cnet_capableof_ddb1a04f77 (CapableOf venture_capitalist raise_fund) (STV 1.0 0.9091)) +(: cnet_capableof_c0e3591db7 (CapableOf very_cold_water flow_from_spring) (STV 1.0 0.9091)) +(: cnet_capableof_9c0d59190a (CapableOf vineyard bottle_wine) (STV 1.0 0.9091)) +(: cnet_capableof_00b902d1ef (CapableOf vintner bottle_wine) (STV 1.0 0.9572)) +(: cnet_capableof_6d7fcc7c6f (CapableOf vintner make_wine) (STV 1.0 0.9091)) +(: cnet_capableof_9e4fd82248 (CapableOf violence anger_pacifist) (STV 1.0 0.9091)) +(: cnet_capableof_1697922464 (CapableOf violence include_death) (STV 1.0 0.9091)) +(: cnet_capableof_0419b752b9 (CapableOf virus cause_cold) (STV 1.0 0.9454)) +(: cnet_capableof_6cfe793ebd (CapableOf virus destroy_cell) (STV 1.0 0.9091)) +(: cnet_capableof_b4763af80e (CapableOf virus infect) (STV 1.0 0.9339)) +(: cnet_capableof_c5643804c2 (CapableOf virus make_computer_malfunction) (STV 1.0 0.9091)) +(: cnet_capableof_4d2c6e07e4 (CapableOf virus mutate) (STV 1.0 0.9091)) +(: cnet_capableof_d6125e0a18 (CapableOf virus attack_immune_system) (STV 1.0 0.9091)) +(: cnet_capableof_0bdd085447 (CapableOf visitor ring_doorbell) (STV 1.0 0.9677)) +(: cnet_capableof_630e704f82 (CapableOf voter voice_opinion) (STV 1.0 0.9091)) +(: cnet_capableof_f48598eacb (CapableOf waiter bus_table) (STV 1.0 0.9454)) +(: cnet_capableof_7df7ff4439 (CapableOf waiter serve_food) (STV 1.0 0.9524)) +(: cnet_capableof_c06bf494bc (CapableOf waiter serve_meal) (STV 1.0 0.9454)) +(: cnet_capableof_cb9c824ceb (CapableOf waiter serve_food_and_drink) (STV 1.0 0.9339)) +(: cnet_capableof_553b3c2fdb (CapableOf walk_in_closet hold_lot_of_clothe) (STV 1.0 0.9091)) +(: cnet_capableof_a7c20436df (CapableOf wall separate_room) (STV 1.0 0.9091)) +(: cnet_capableof_b0cdd3ebd1 (CapableOf wall separate_room_from_each_other) (STV 1.0 0.9091)) +(: cnet_capableof_aa82c0a965 (CapableOf wallet hold_money) (STV 1.0 0.9339)) +(: cnet_capableof_db85724fcf (CapableOf wasp sting) (STV 1.0 0.9091)) +(: cnet_capableof_bb96514c94 (CapableOf watch time_event) (STV 1.0 0.9091)) +(: cnet_capableof_412c86fda3 (CapableOf water act_as_reflector) (STV 1.0 0.9091)) +(: cnet_capableof_8cb9425778 (CapableOf water evaporate) (STV 1.0 0.9091)) +(: cnet_capableof_656465bdc7 (CapableOf water extinguish_fire) (STV 1.0 0.9339)) +(: cnet_capableof_64cb2148ab (CapableOf water feel_wet) (STV 1.0 0.9091)) +(: cnet_capableof_90225f6119 (CapableOf water fill_bucket) (STV 1.0 0.9454)) +(: cnet_capableof_44e065b105 (CapableOf water fill_glass) (STV 1.0 0.9339)) +(: cnet_capableof_58fe08d159 (CapableOf water flow) (STV 1.0 0.9524)) +(: cnet_capableof_9871130115 (CapableOf water freeze) (STV 1.0 0.9608)) +(: cnet_capableof_d2db876641 (CapableOf water short_circuit) (STV 1.0 0.9091)) +(: cnet_capableof_f02f62c661 (CapableOf water short_electrical_circuit) (STV 1.0 0.9091)) +(: cnet_capableof_6951c35d6b (CapableOf water short_out_electrical_circuit) (STV 1.0 0.9091)) +(: cnet_capableof_b7caf98f84 (CapableOf water thin_paint) (STV 1.0 0.9572)) +(: cnet_capableof_d3bbde4417 (CapableOf wax melt) (STV 1.0 0.9339)) +(: cnet_capableof_5b835a5c92 (CapableOf wax moulded) (STV 1.0 0.9091)) +(: cnet_capableof_06b3b5d477 (CapableOf we honor_name_of_heroe) (STV 1.0 0.9091)) +(: cnet_capableof_2ce41349c8 (CapableOf we laugh_together) (STV 1.0 0.9091)) +(: cnet_capableof_debc5884ad (CapableOf weather cause_ice_to_form) (STV 1.0 0.9091)) +(: cnet_capableof_df74207c99 (CapableOf weed grow_in_lawn_and_garden) (STV 1.0 0.9091)) +(: cnet_capableof_cf9834c25a (CapableOf weightlifter lift_weight) (STV 1.0 0.9339)) +(: cnet_capableof_b9f4cc2c08 (CapableOf wheeled_vehicle roll) (STV 1.0 0.9091)) +(: cnet_capableof_908761fb56 (CapableOf whore suck_dick) (STV 1.0 0.9091)) +(: cnet_capableof_bded4d67a8 (CapableOf whore swallow_semen) (STV 1.0 0.9091)) +(: cnet_capableof_486fa7e3c4 (CapableOf whorehouse fun) (STV 1.0 0.9091)) +(: cnet_capableof_dd2a3c3c25 (CapableOf wind blow_cold) (STV 1.0 0.9091)) +(: cnet_capableof_b75f5b6799 (CapableOf wind blow_over_tree) (STV 1.0 0.9091)) +(: cnet_capableof_4dda08906f (CapableOf wind blow_to_east) (STV 1.0 0.9608)) +(: cnet_capableof_2b3a7b8692 (CapableOf wind blowing_hard) (STV 1.0 0.9454)) +(: cnet_capableof_a0aa6faf34 (CapableOf wine age_over_time) (STV 1.0 0.9091)) +(: cnet_capableof_ab6f4125ed (CapableOf wine age_well) (STV 1.0 0.9454)) +(: cnet_capableof_8cbb87a02a (CapableOf wine age_with_time) (STV 1.0 0.9091)) +(: cnet_capableof_d79324db4d (CapableOf wine_bottle come_with_cork) (STV 1.0 0.9091)) +(: cnet_capableof_d2944fd648 (CapableOf winemaker press_grape) (STV 1.0 0.9339)) +(: cnet_capableof_1f5f20dfd2 (CapableOf winery bottle_wine) (STV 1.0 0.9091)) +(: cnet_capableof_b20239a5c0 (CapableOf winery make_wine) (STV 1.0 0.9339)) +(: cnet_capableof_c4532bf811 (CapableOf winner best_loser) (STV 1.0 0.9091)) +(: cnet_capableof_fd5e745ad2 (CapableOf wire short_circuit) (STV 1.0 0.9572)) +(: cnet_capableof_6e865f4a94 (CapableOf witness report_crime) (STV 1.0 0.9091)) +(: cnet_capableof_f736f95a2a (CapableOf wood burn) (STV 1.0 0.9636)) +(: cnet_capableof_36e5f3ea0d (CapableOf wood burn_in_fireplace) (STV 1.0 0.9091)) +(: cnet_capableof_fac126b70e (CapableOf word mean_more_than_one_thing) (STV 1.0 0.9454)) +(: cnet_capableof_7267f422e6 (CapableOf word mean_thing) (STV 1.0 0.9454)) +(: cnet_capableof_3f483e688e (CapableOf word hurt_feeling) (STV 1.0 0.9572)) +(: cnet_capableof_e02bf6b023 (CapableOf worker bank_paycheck) (STV 1.0 0.9454)) +(: cnet_capableof_569103075f (CapableOf worker drive_to_work) (STV 1.0 0.9091)) +(: cnet_capableof_df795fea66 (CapableOf worker stock_shelve) (STV 1.0 0.9091)) +(: cnet_capableof_ef715cb367 (CapableOf worried_mom voice_concern) (STV 1.0 0.9091)) +(: cnet_capableof_9e6cec6103 (CapableOf writer complete_novel) (STV 1.0 0.9091)) +(: cnet_capableof_a1c7a7a13d (CapableOf writer write_novel) (STV 1.0 0.9091)) +(: cnet_capableof_a1790470a0 (CapableOf x mark_spot) (STV 1.0 0.9454)) +(: cnet_capableof_b0f6bc7aba (CapableOf yeast raise_bread) (STV 1.0 0.9091)) +(: cnet_capableof_be0c12610c (CapableOf young_child wet_bed) (STV 1.0 0.9524)) +(: cnet_capableof_18e83da9b9 (CapableOf zomby turn_other_into_zomby) (STV 1.0 0.9339)) +(: cnet_hasa_02ac8c83d3 (HasA accordion keyboard_like_piano) (STV 1.0 0.9091)) +(: cnet_hasa_4f3ee75ea9 (HasA action consequence) (STV 1.0 0.9339)) +(: cnet_hasa_a4c76af3e2 (HasA air oxygen) (STV 1.0 0.9454)) +(: cnet_hasa_ee250d1a40 (HasA air pressure) (STV 1.0 0.9339)) +(: cnet_hasa_f0cb31ad80 (HasA airplane emergency_brake) (STV 1.0 0.9091)) +(: cnet_hasa_28f0927ccf (HasA airplane propeller) (STV 1.0 0.9339)) +(: cnet_hasa_867b0810c4 (HasA airplane wing) (STV 1.0 0.9339)) +(: cnet_hasa_a552aa9ae0 (HasA all_animal body) (STV 1.0 0.9091)) +(: cnet_hasa_75d26773bd (HasA all_car engine) (STV 1.0 0.9677)) +(: cnet_hasa_b322827af2 (HasA all_car license_plate) (STV 1.0 0.9091)) +(: cnet_hasa_f53a01a5d0 (HasA all_children two_parent) (STV 1.0 0.9091)) +(: cnet_hasa_7c54a4d8b2 (HasA all_continent mountain) (STV 1.0 0.9339)) +(: cnet_hasa_a389d66a4b (HasA all_follower leader) (STV 1.0 0.9091)) +(: cnet_hasa_92b3937b1c (HasA all_hous toilet) (STV 1.0 0.9091)) +(: cnet_hasa_0800d2cce3 (HasA all_human bladder) (STV 1.0 0.9339)) +(: cnet_hasa_4e1fd470df (HasA all_human name) (STV 1.0 0.9339)) +(: cnet_hasa_80555b8a84 (HasA all_known_biological_life carbon) (STV 1.0 0.9091)) +(: cnet_hasa_65ca36316f (HasA all_male penis) (STV 1.0 0.9091)) +(: cnet_hasa_3f8a316251 (HasA all_mammal fur) (STV 1.0 0.9091)) +(: cnet_hasa_d20793be2d (HasA all_mammal hair) (STV 1.0 0.9339)) +(: cnet_hasa_23894d850d (HasA all_people feeling) (STV 1.0 0.9091)) +(: cnet_hasa_1b8b6d2c5d (HasA all_people muscle) (STV 1.0 0.9339)) +(: cnet_hasa_7d0046265b (HasA all_people parent) (STV 1.0 0.9091)) +(: cnet_hasa_e826377fbf (HasA all_triangle three_side_and_three_corner) (STV 1.0 0.9091)) +(: cnet_hasa_3cf9b42152 (HasA alto deeper_voice_than_soprano) (STV 1.0 0.9091)) +(: cnet_hasa_65c4c58ea7 (HasA alto higher_voice_than_tenor) (STV 1.0 0.9091)) +(: cnet_hasa_f012e776c2 (HasA america beache) (STV 1.0 0.9091)) +(: cnet_hasa_dc96957094 (HasA animal body) (STV 1.0 0.9339)) +(: cnet_hasa_bfa8ba9115 (HasA animal bone) (STV 1.0 0.9339)) +(: cnet_hasa_d469ea4ff8 (HasA animal eye) (STV 1.0 0.9091)) +(: cnet_hasa_bc6226b4b7 (HasA animal fur) (STV 1.0 0.9524)) +(: cnet_hasa_765f804756 (HasA animal muscle) (STV 1.0 0.9091)) +(: cnet_hasa_046b845bd0 (HasA animal tail) (STV 1.0 0.9524)) +(: cnet_hasa_7624937608 (HasA apartment_building several_residential_unit) (STV 1.0 0.9091)) +(: cnet_hasa_52879810c2 (HasA apartment_house many_apartment) (STV 1.0 0.9091)) +(: cnet_hasa_d6683f85b8 (HasA apple core) (STV 1.0 0.9608)) +(: cnet_hasa_6b834e106a (HasA apple many_cooking_use) (STV 1.0 0.9091)) +(: cnet_hasa_bb380bf828 (HasA apple seed_inside) (STV 1.0 0.9091)) +(: cnet_hasa_f18f72f979 (HasA apple skin) (STV 1.0 0.9091)) +(: cnet_hasa_432f446271 (HasA apple seed) (STV 1.0 0.9572)) +(: cnet_hasa_60e94a9aee (HasA aquarium water) (STV 1.0 0.9091)) +(: cnet_hasa_1d13ec0118 (HasA arm one_hand) (STV 1.0 0.9677)) +(: cnet_hasa_23dd4c84e4 (HasA armchair four_leg) (STV 1.0 0.9091)) +(: cnet_hasa_8fd2b49f05 (HasA armchair two_arm) (STV 1.0 0.9091)) +(: cnet_hasa_209b8787fb (HasA attache_case handle) (STV 1.0 0.9091)) +(: cnet_hasa_82e0002006 (HasA auditorium good_acoustic) (STV 1.0 0.9091)) +(: cnet_hasa_256abd926a (HasA australian_baby_boomer appalling_saving_record) (STV 1.0 0.9454)) +(: cnet_hasa_405f610ee0 (HasA baby father_and_mother) (STV 1.0 0.9091)) +(: cnet_hasa_7b5983b7e2 (HasA ball three_dimension) (STV 1.0 0.9091)) +(: cnet_hasa_c628659ee0 (HasA banjo string) (STV 1.0 0.9524)) +(: cnet_hasa_d0f097e395 (HasA bank branche) (STV 1.0 0.9091)) +(: cnet_hasa_5de31eef58 (HasA bank insurance) (STV 1.0 0.9091)) +(: cnet_hasa_77d9cb4987 (HasA baseball_diamond outfield) (STV 1.0 0.9091)) +(: cnet_hasa_1bc4fd4b46 (HasA bass_guitar four_string) (STV 1.0 0.9091)) +(: cnet_hasa_d024956849 (HasA bathroom plumbing) (STV 1.0 0.9091)) +(: cnet_hasa_ae6b0b4667 (HasA bat wing) (STV 1.0 0.9339)) +(: cnet_hasa_6226dfd1d1 (HasA bay water) (STV 1.0 0.9454)) +(: cnet_hasa_74efa81e2c (HasA beach lot_of_sand) (STV 1.0 0.9091)) +(: cnet_hasa_553b2ca26b (HasA bear fur) (STV 1.0 0.9524)) +(: cnet_hasa_cbe24067f9 (HasA berry seed) (STV 1.0 0.9091)) +(: cnet_hasa_c22f753eb6 (HasA bicycle chain) (STV 1.0 0.9454)) +(: cnet_hasa_42cca8d599 (HasA bicycle two_tire) (STV 1.0 0.9454)) +(: cnet_hasa_8b641c9081 (HasA bicycle two_wheel) (STV 1.0 0.9707)) +(: cnet_hasa_da05874e3a (HasA bicycle pedal) (STV 1.0 0.9339)) +(: cnet_hasa_6b6b62a94e (HasA bike two_wheel) (STV 1.0 0.9524)) +(: cnet_hasa_e8757cbe1e (HasA bikinis become_smaller_and_smaller) (STV 1.0 0.9091)) +(: cnet_hasa_7888e97d2c (HasA billing_montana tornado_siren) (STV 1.0 0.9091)) +(: cnet_hasa_6022850719 (HasA bill specific_amount) (STV 1.0 0.9091)) +(: cnet_hasa_0461ef0d23 (HasA bird two_leg) (STV 1.0 0.9454)) +(: cnet_hasa_1a63494de3 (HasA bird two_wing) (STV 1.0 0.9339)) +(: cnet_hasa_b6ea2c4471 (HasA bird wing) (STV 1.0 0.9339)) +(: cnet_hasa_b734f45163 (HasA bird feather) (STV 1.0 0.9776)) +(: cnet_hasa_257c2ad9ed (HasA bird light_bone) (STV 1.0 0.9091)) +(: cnet_hasa_2a05924c25 (HasA blood_red_because hemoglobin) (STV 1.0 0.9091)) +(: cnet_hasa_d9035a5132 (HasA boat sail) (STV 1.0 0.9091)) +(: cnet_hasa_514b3d0b95 (HasA bone lot_of_calcium) (STV 1.0 0.9091)) +(: cnet_hasa_fd28767452 (HasA book cover) (STV 1.0 0.9524)) +(: cnet_hasa_be7e3a95f1 (HasA book knowledge) (STV 1.0 0.9572)) +(: cnet_hasa_88de59d93a (HasA book many_word) (STV 1.0 0.9091)) +(: cnet_hasa_eee2f89171 (HasA book page) (STV 1.0 0.9091)) +(: cnet_hasa_cc4a2e0bde (HasA book word_and_or_picture) (STV 1.0 0.9091)) +(: cnet_hasa_e7d9439635 (HasA bookcase book) (STV 1.0 0.9454)) +(: cnet_hasa_06bb57d514 (HasA book sentence) (STV 1.0 0.9091)) +(: cnet_hasa_b36e850783 (HasA booth door) (STV 1.0 0.9091)) +(: cnet_hasa_7636718fe3 (HasA both do_with_money) (STV 1.0 0.9339)) +(: cnet_hasa_a3bef02f16 (HasA bottle bottle_cap) (STV 1.0 0.9339)) +(: cnet_hasa_eede6bfe7e (HasA brain ten_of_billion_of_neuron) (STV 1.0 0.9091)) +(: cnet_hasa_0829cefe0f (HasA bread yeast) (STV 1.0 0.9608)) +(: cnet_hasa_dbf7e7b530 (HasA broadcast_studio lot_of_equipment_in) (STV 1.0 0.9091)) +(: cnet_hasa_00d364311e (HasA building foundation) (STV 1.0 0.9091)) +(: cnet_hasa_6c4c36a0bb (HasA building many_window) (STV 1.0 0.9091)) +(: cnet_hasa_6e6a68d7ed (HasA building window) (STV 1.0 0.9091)) +(: cnet_hasa_9096dd1a93 (HasA bull horn) (STV 1.0 0.9091)) +(: cnet_hasa_0cff17f4d7 (HasA cabinet door) (STV 1.0 0.9091)) +(: cnet_hasa_1566d86d65 (HasA camera flash) (STV 1.0 0.9339)) +(: cnet_hasa_6c3bb21c77 (HasA candy sugar) (STV 1.0 0.9454)) +(: cnet_hasa_33feccfa0c (HasA car engine) (STV 1.0 0.9091)) +(: cnet_hasa_6c0814cad3 (HasA car headlight_to_increase_visibility) (STV 1.0 0.9091)) +(: cnet_hasa_27759f8a07 (HasA car seat) (STV 1.0 0.9339)) +(: cnet_hasa_365adf7b8d (HasA car window) (STV 1.0 0.9339)) +(: cnet_hasa_f033e1c170 (HasA carrot particular_taste) (STV 1.0 0.9091)) +(: cnet_hasa_7827fedca7 (HasA car bumper) (STV 1.0 0.9091)) +(: cnet_hasa_610e856f83 (HasA car seat_belt) (STV 1.0 0.9091)) +(: cnet_hasa_31a0a59ad8 (HasA car trunk) (STV 1.0 0.9339)) +(: cnet_hasa_7e7e3cfe34 (HasA car wheel) (STV 1.0 0.9339)) +(: cnet_hasa_9e097a3136 (HasA cat four_leg) (STV 1.0 0.9693)) +(: cnet_hasa_82ee8ca2bf (HasA cat hair) (STV 1.0 0.9091)) +(: cnet_hasa_deef7f2a5b (HasA cat sharp_claw) (STV 1.0 0.9524)) +(: cnet_hasa_a88bf72e98 (HasA cat bone) (STV 1.0 0.9091)) +(: cnet_hasa_fbfcaa6382 (HasA cat claw) (STV 1.0 0.9636)) +(: cnet_hasa_18d85c21c7 (HasA cat claw_on_feet) (STV 1.0 0.9091)) +(: cnet_hasa_9d0c424ebe (HasA cat eye) (STV 1.0 0.9572)) +(: cnet_hasa_2d339bb2bc (HasA cat four_paw) (STV 1.0 0.9091)) +(: cnet_hasa_828cb54b5b (HasA cat fur) (STV 1.0 0.9707)) +(: cnet_hasa_2f889b0ea5 (HasA cat golden_fur) (STV 1.0 0.9091)) +(: cnet_hasa_5e6345eec9 (HasA cat good_sense_of_smell) (STV 1.0 0.9091)) +(: cnet_hasa_e7839cb16d (HasA cat paw) (STV 1.0 0.9572)) +(: cnet_hasa_c47ebea72e (HasA cat retractable_claw) (STV 1.0 0.9091)) +(: cnet_hasa_420b555aa3 (HasA cat two_eye) (STV 1.0 0.9454)) +(: cnet_hasa_650dd559f3 (HasA cat whisker) (STV 1.0 0.9730)) +(: cnet_hasa_a1956f18d0 (HasA cat yellow_eye) (STV 1.0 0.9091)) +(: cnet_hasa_eccd069053 (HasA cd number_of_song_on) (STV 1.0 0.9091)) +(: cnet_hasa_d78a342478 (HasA chain link) (STV 1.0 0.9091)) +(: cnet_hasa_e06e7917b3 (HasA chair four_leg) (STV 1.0 0.9091)) +(: cnet_hasa_3c8ab093e3 (HasA checkbook check) (STV 1.0 0.9091)) +(: cnet_hasa_b118912592 (HasA cheese flavor) (STV 1.0 0.9339)) +(: cnet_hasa_0ff1def33d (HasA cheese lot_of_fat) (STV 1.0 0.9091)) +(: cnet_hasa_94b1ad8725 (HasA cheese strong_odor) (STV 1.0 0.9524)) +(: cnet_hasa_e3860afc3c (HasA cherry pit_in_middle) (STV 1.0 0.9091)) +(: cnet_hasa_68d0cc3f85 (HasA chess_board 64_square) (STV 1.0 0.9524)) +(: cnet_hasa_57d925d309 (HasA chicken_egg hard_shell) (STV 1.0 0.9091)) +(: cnet_hasa_b5c5d05312 (HasA china largest_population_on_earth) (STV 1.0 0.9091)) +(: cnet_hasa_3be65825bf (HasA china lot_of_people) (STV 1.0 0.9091)) +(: cnet_hasa_93ba1b2357 (HasA chinese_food meat_in) (STV 1.0 0.9091)) +(: cnet_hasa_3fef359266 (HasA cigarette tobacco) (STV 1.0 0.9091)) +(: cnet_hasa_9e5c1286cc (HasA classical_music piano_piece) (STV 1.0 0.9091)) +(: cnet_hasa_90015f7d63 (HasA classical_music rhythm) (STV 1.0 0.9091)) +(: cnet_hasa_693648808e (HasA clock alarm) (STV 1.0 0.9091)) +(: cnet_hasa_cae31193f9 (HasA coffee caffein) (STV 1.0 0.9091)) +(: cnet_hasa_b81460c130 (HasA coffee caffeine) (STV 1.0 0.9608)) +(: cnet_hasa_c93211db2e (HasA coin numismatic_value) (STV 1.0 0.9091)) +(: cnet_hasa_ae76caf164 (HasA comb many_teeth) (STV 1.0 0.9339)) +(: cnet_hasa_9f262939e5 (HasA community_resource value) (STV 1.0 0.9091)) +(: cnet_hasa_ebe2b6953a (HasA computer keyboard) (STV 1.0 0.9091)) +(: cnet_hasa_8ea3414332 (HasA country population) (STV 1.0 0.9091)) +(: cnet_hasa_7d7e274e59 (HasA couple open_marriage) (STV 1.0 0.9091)) +(: cnet_hasa_aa927cbcba (HasA couple_often fun_together) (STV 1.0 0.9454)) +(: cnet_hasa_b474216c64 (HasA courthouse room) (STV 1.0 0.9091)) +(: cnet_hasa_fdede9079a (HasA cow four_stomache) (STV 1.0 0.9454)) +(: cnet_hasa_71635a0465 (HasA cow four_stomach) (STV 1.0 0.9454)) +(: cnet_hasa_5cfea8f043 (HasA cube six_side) (STV 1.0 0.9339)) +(: cnet_hasa_8ffeaef527 (HasA cup liquid) (STV 1.0 0.9091)) +(: cnet_hasa_475336f31f (HasA cypress_tree high_sap_content) (STV 1.0 0.9091)) +(: cnet_hasa_cf106deb06 (HasA decision consequence) (STV 1.0 0.9091)) +(: cnet_hasa_08f90bfb15 (HasA deer four_leg) (STV 1.0 0.9091)) +(: cnet_hasa_b488519079 (HasA desk flat_surface) (STV 1.0 0.9091)) +(: cnet_hasa_c2842e7b35 (HasA dice six_side) (STV 1.0 0.9572)) +(: cnet_hasa_8b9a855419 (HasA different_culture different_tonal_scale) (STV 1.0 0.9091)) +(: cnet_hasa_a2fa27b61f (HasA display_cabinet glass_front) (STV 1.0 0.9091)) +(: cnet_hasa_c6d5ae0338 (HasA doctor_s_office waiting_room) (STV 1.0 0.9091)) +(: cnet_hasa_4d26e0378b (HasA doctor many_year_of_education) (STV 1.0 0.9339)) +(: cnet_hasa_05b5212115 (HasA doctor specialty) (STV 1.0 0.9091)) +(: cnet_hasa_1fc0dc999d (HasA doctor_office waiting_room) (STV 1.0 0.9091)) +(: cnet_hasa_ef96f069d2 (HasA dog flea) (STV 1.0 0.9524)) +(: cnet_hasa_6af1ddd05d (HasA dog four_leg) (STV 1.0 0.9636)) +(: cnet_hasa_a8b9c70d34 (HasA dog nose) (STV 1.0 0.9091)) +(: cnet_hasa_b0128eb76c (HasA dog paw) (STV 1.0 0.9339)) +(: cnet_hasa_2ae6b0c7d0 (HasA dog teeth) (STV 1.0 0.9339)) +(: cnet_hasa_2c82d29e95 (HasA dog two_ear) (STV 1.0 0.9339)) +(: cnet_hasa_03218582f9 (HasA dog bone) (STV 1.0 0.9339)) +(: cnet_hasa_772bf5d88d (HasA dog fur) (STV 1.0 0.9091)) +(: cnet_hasa_ebb5828b72 (HasA dog tail) (STV 1.0 0.9454)) +(: cnet_hasa_03955e9784 (HasA dog wet_nos) (STV 1.0 0.9454)) +(: cnet_hasa_1300455907 (HasA doll yarn_for_hair) (STV 1.0 0.9091)) +(: cnet_hasa_ec7dfbd01f (HasA door handle) (STV 1.0 0.9091)) +(: cnet_hasa_c4e8169112 (HasA door door_knob) (STV 1.0 0.9091)) +(: cnet_hasa_ebdb297a5c (HasA doughnut hole_in) (STV 1.0 0.9091)) +(: cnet_hasa_aa58d4e5c5 (HasA dragonfly two_set_of_wing) (STV 1.0 0.9091)) +(: cnet_hasa_09487f849d (HasA duck bill_and_webbed_feet) (STV 1.0 0.9091)) +(: cnet_hasa_41d068c40c (HasA duck webbed_feet) (STV 1.0 0.9608)) +(: cnet_hasa_13a82a0c47 (HasA duck bill) (STV 1.0 0.9636)) +(: cnet_hasa_a4d58fbbe4 (HasA duck bone) (STV 1.0 0.9339)) +(: cnet_hasa_b6760efb69 (HasA duck feather) (STV 1.0 0.9339)) +(: cnet_hasa_a75c791974 (HasA each_country own_flag) (STV 1.0 0.9091)) +(: cnet_hasa_5ffd9673de (HasA each_hand one_thumb) (STV 1.0 0.9659)) +(: cnet_hasa_f293547929 (HasA each_holiday own_distinctive_human_behavior) (STV 1.0 0.9091)) +(: cnet_hasa_d1e40d1c29 (HasA each_person two_lip) (STV 1.0 0.9339)) +(: cnet_hasa_f312a16219 (HasA earth atmosphere) (STV 1.0 0.9636)) +(: cnet_hasa_aea2993e82 (HasA earth gravity) (STV 1.0 0.9454)) +(: cnet_hasa_b042078daa (HasA earth many_artificial_satellite) (STV 1.0 0.9339)) +(: cnet_hasa_8e5c69f98c (HasA earth many_different_living_organism) (STV 1.0 0.9339)) +(: cnet_hasa_59fd452756 (HasA earth molten_core) (STV 1.0 0.9636)) +(: cnet_hasa_0ca45453d5 (HasA earth one_moon) (STV 1.0 0.9339)) +(: cnet_hasa_1947b89ae4 (HasA earth single_moon) (STV 1.0 0.9091)) +(: cnet_hasa_3a1541e21f (HasA electric_blanket cord) (STV 1.0 0.9091)) +(: cnet_hasa_d328c18eca (HasA electron negative_charge) (STV 1.0 0.9454)) +(: cnet_hasa_b6f70ed5bf (HasA elephant trunk) (STV 1.0 0.9454)) +(: cnet_hasa_c333eee9d1 (HasA elephant tusk) (STV 1.0 0.9454)) +(: cnet_hasa_aea06260fa (HasA elephant leathery_skin) (STV 1.0 0.9454)) +(: cnet_hasa_cbacd538a0 (HasA elephant long_nose_called_trunk) (STV 1.0 0.9091)) +(: cnet_hasa_f3e7f8d7c5 (HasA english_alphabet 26_letter) (STV 1.0 0.9339)) +(: cnet_hasa_21053971f0 (HasA entity shape) (STV 1.0 0.9091)) +(: cnet_hasa_54d127595d (HasA every_action equal_and_opposite_reaction) (STV 1.0 0.9339)) +(: cnet_hasa_6eede3e6c1 (HasA every_city zip_code) (STV 1.0 0.9091)) +(: cnet_hasa_eaeb7f5dac (HasA every_house roof) (STV 1.0 0.9091)) +(: cnet_hasa_74799d45b2 (HasA every_living_thing have_nutrient) (STV 1.0 0.9091)) +(: cnet_hasa_8c11acd337 (HasA every_music style) (STV 1.0 0.9091)) +(: cnet_hasa_09e2667d99 (HasA every_person heart) (STV 1.0 0.9091)) +(: cnet_hasa_c085a9c658 (HasA every_person name) (STV 1.0 0.9339)) +(: cnet_hasa_f76cf2af5f (HasA every_uncle unique_personality) (STV 1.0 0.9091)) +(: cnet_hasa_d3c78d8afe (HasA everyone feeling) (STV 1.0 0.9091)) +(: cnet_hasa_01ffbc65ed (HasA everyone unique_personality) (STV 1.0 0.9091)) +(: cnet_hasa_87fc622b84 (HasA everyone value) (STV 1.0 0.9091)) +(: cnet_hasa_95eade20a0 (HasA evolution effect_of_creating_new_specy) (STV 1.0 0.9091)) +(: cnet_hasa_c5835c4317 (HasA finche large_powerful_beak) (STV 1.0 0.9091)) +(: cnet_hasa_28b7b9a1dd (HasA finger bone) (STV 1.0 0.9091)) +(: cnet_hasa_f00b5eb261 (HasA fionacat tail) (STV 1.0 0.9091)) +(: cnet_hasa_aacf9e4d49 (HasA firemen dangerous_job) (STV 1.0 0.9454)) +(: cnet_hasa_99199fd2b2 (HasA fish bone) (STV 1.0 0.9454)) +(: cnet_hasa_be1a56f980 (HasA fish fin) (STV 1.0 0.9091)) +(: cnet_hasa_0a689596dc (HasA fish gill) (STV 1.0 0.9524)) +(: cnet_hasa_2491465a6d (HasA florida mild_winter_weather) (STV 1.0 0.9091)) +(: cnet_hasa_9f6e6ad240 (HasA flower thorny_stem) (STV 1.0 0.9339)) +(: cnet_hasa_6850b39523 (HasA foot five_toe) (STV 1.0 0.9454)) +(: cnet_hasa_eddf83565f (HasA forest many_tree) (STV 1.0 0.9454)) +(: cnet_hasa_472a3c904a (HasA forgetting_to_pack effect_of_inconvience) (STV 1.0 0.9091)) +(: cnet_hasa_4f0e0896e3 (HasA fork prong) (STV 1.0 0.9091)) +(: cnet_hasa_c576719e29 (HasA fork tine) (STV 1.0 0.9454)) +(: cnet_hasa_41a65105fb (HasA fox four_leg) (STV 1.0 0.9339)) +(: cnet_hasa_bd7602237c (HasA frog bone) (STV 1.0 0.9091)) +(: cnet_hasa_3c83a9cacd (HasA fruit sugar) (STV 1.0 0.9091)) +(: cnet_hasa_5dcfbc66bb (HasA furniture_dresser drawer) (STV 1.0 0.9339)) +(: cnet_hasa_4177dff0ad (HasA galaxy elliptical_shape) (STV 1.0 0.9091)) +(: cnet_hasa_80b9e1bce9 (HasA galaxy spiral_shape) (STV 1.0 0.9091)) +(: cnet_hasa_6a89848e70 (HasA garden flower) (STV 1.0 0.9339)) +(: cnet_hasa_df2dfd1037 (HasA gas_heater pilot_light) (STV 1.0 0.9091)) +(: cnet_hasa_bf5d66c6c9 (HasA gas_stove pilot_light) (STV 1.0 0.9091)) +(: cnet_hasa_1e415eda7d (HasA german_shepherd_dog 89_congenital_defect) (STV 1.0 0.9091)) +(: cnet_hasa_5e13347534 (HasA god strange_sense_of_humor) (STV 1.0 0.9454)) +(: cnet_hasa_31656289f0 (HasA gold value) (STV 1.0 0.9091)) +(: cnet_hasa_5c4eac43bb (HasA golf_ball dimple) (STV 1.0 0.9091)) +(: cnet_hasa_9d49292633 (HasA group identity_element) (STV 1.0 0.9091)) +(: cnet_hasa_ba717bfe49 (HasA guitar string) (STV 1.0 0.9339)) +(: cnet_hasa_156dece7e9 (HasA guitar six_string) (STV 1.0 0.9454)) +(: cnet_hasa_9e71427361 (HasA hair follical) (STV 1.0 0.9091)) +(: cnet_hasa_7d97ecb2fc (HasA hair root) (STV 1.0 0.9091)) +(: cnet_hasa_a390c3ee9f (HasA harp string) (STV 1.0 0.9091)) +(: cnet_hasa_722ef84c4f (HasA having_sex effect_of_satisfying_libido) (STV 1.0 0.9091)) +(: cnet_hasa_997aab81be (HasA head brain) (STV 1.0 0.9339)) +(: cnet_hasa_3da4d6369d (HasA hemoglobin iron) (STV 1.0 0.9091)) +(: cnet_hasa_5890d15fde (HasA hermaphrodite feature_of_both_sexe) (STV 1.0 0.9091)) +(: cnet_hasa_21232b6445 (HasA high_rise many_floor) (STV 1.0 0.9091)) +(: cnet_hasa_ab1b83da64 (HasA home bedroom) (STV 1.0 0.9091)) +(: cnet_hasa_6467ca57c5 (HasA homosexual sex_with_each_other) (STV 1.0 0.9524)) +(: cnet_hasa_195eb09078 (HasA horse four_leg) (STV 1.0 0.9707)) +(: cnet_hasa_d12c67e66a (HasA hors big_penis) (STV 1.0 0.9091)) +(: cnet_hasa_642d28f55c (HasA hors four_leg) (STV 1.0 0.9091)) +(: cnet_hasa_f8185cd6c1 (HasA hors mane) (STV 1.0 0.9091)) +(: cnet_hasa_56946ea5ae (HasA hotel lobby) (STV 1.0 0.9454)) +(: cnet_hasa_524bbe45be (HasA house basement) (STV 1.0 0.9339)) +(: cnet_hasa_e1fa4b6680 (HasA house bathroom) (STV 1.0 0.9339)) +(: cnet_hasa_a23f17e60a (HasA house door) (STV 1.0 0.9572)) +(: cnet_hasa_3d4e5d7218 (HasA house floor) (STV 1.0 0.9091)) +(: cnet_hasa_a93cb7d6d2 (HasA house kitchen) (STV 1.0 0.9339)) +(: cnet_hasa_cdb27bbe12 (HasA house living_room) (STV 1.0 0.9339)) +(: cnet_hasa_c375249319 (HasA house roof) (STV 1.0 0.9339)) +(: cnet_hasa_2c37aab86f (HasA house room) (STV 1.0 0.9572)) +(: cnet_hasa_1eb5a02439 (HasA house window) (STV 1.0 0.9339)) +(: cnet_hasa_e9b2c14b33 (HasA house yard) (STV 1.0 0.9454)) +(: cnet_hasa_f4313ea755 (HasA hous door) (STV 1.0 0.9091)) +(: cnet_hasa_159e33f3bf (HasA hous roof) (STV 1.0 0.9091)) +(: cnet_hasa_73f7f1768f (HasA hous wall) (STV 1.0 0.9454)) +(: cnet_hasa_bc87bdc556 (HasA human five_finger_on_each_hand) (STV 1.0 0.9659)) +(: cnet_hasa_2c4373aabf (HasA human muscle) (STV 1.0 0.9091)) +(: cnet_hasa_2f26ccc2fc (HasA human one_body) (STV 1.0 0.9339)) +(: cnet_hasa_c643d1d0c2 (HasA human two_arm) (STV 1.0 0.9339)) +(: cnet_hasa_69c131c9ce (HasA human two_leg_and_two_arm) (STV 1.0 0.9091)) +(: cnet_hasa_f01a58dd82 (HasA human_being five_finger_on_each_hand) (STV 1.0 0.9339)) +(: cnet_hasa_59a01b3bbf (HasA human_body many_muscle) (STV 1.0 0.9091)) +(: cnet_hasa_65a96a99b5 (HasA human_body many_organ) (STV 1.0 0.9091)) +(: cnet_hasa_7543335f02 (HasA human_hand 5_finger) (STV 1.0 0.9091)) +(: cnet_hasa_097acff3f6 (HasA human_hand four_finger_and_thumb) (STV 1.0 0.9091)) +(: cnet_hasa_6c8df97476 (HasA human 10_finger) (STV 1.0 0.9091)) +(: cnet_hasa_65ad4cb99b (HasA human 2_ear) (STV 1.0 0.9454)) +(: cnet_hasa_065d628a8a (HasA human biological_body) (STV 1.0 0.9091)) +(: cnet_hasa_56d7c0c6e9 (HasA human bone) (STV 1.0 0.9091)) +(: cnet_hasa_323e8c5982 (HasA human brain) (STV 1.0 0.9659)) +(: cnet_hasa_b25fbd75cd (HasA human eye) (STV 1.0 0.9524)) +(: cnet_hasa_1c203e9c45 (HasA human finger) (STV 1.0 0.9339)) +(: cnet_hasa_d2f6ceb77a (HasA human five_toe_on_each_foot) (STV 1.0 0.9339)) +(: cnet_hasa_5bd752abdf (HasA human hair) (STV 1.0 0.9091)) +(: cnet_hasa_86e603fd03 (HasA human hand) (STV 1.0 0.9091)) +(: cnet_hasa_ca139d58b9 (HasA human landed_on_moon) (STV 1.0 0.9091)) +(: cnet_hasa_38321cbb7d (HasA human one_head) (STV 1.0 0.9091)) +(: cnet_hasa_92a357afb1 (HasA human one_mouth) (STV 1.0 0.9454)) +(: cnet_hasa_8193dd8ed8 (HasA human ten_finger) (STV 1.0 0.9091)) +(: cnet_hasa_6e6f883777 (HasA human two_arm_and_two_leg) (STV 1.0 0.9091)) +(: cnet_hasa_77bc0cd09e (HasA human two_ear) (STV 1.0 0.9339)) +(: cnet_hasa_bf702a2c60 (HasA human two_eye) (STV 1.0 0.9091)) +(: cnet_hasa_fc84dd7bac (HasA human two_feet) (STV 1.0 0.9091)) +(: cnet_hasa_09cc015ec2 (HasA human two_hand) (STV 1.0 0.9091)) +(: cnet_hasa_fedb0800b4 (HasA human two_leg) (STV 1.0 0.9608)) +(: cnet_hasa_a91f8a498f (HasA human_usualy two_hand) (STV 1.0 0.9454)) +(: cnet_hasa_cdd4d26442 (HasA husband_and_wife sex) (STV 1.0 0.9454)) +(: cnet_hasa_9232f3bc67 (HasA hydrogen_atom only_one_electron) (STV 1.0 0.9091)) +(: cnet_hasa_9fa3276599 (HasA insect 6_leg) (STV 1.0 0.9091)) +(: cnet_hasa_bf25041f52 (HasA internet connection) (STV 1.0 0.9091)) +(: cnet_hasa_4c091c59ac (HasA intestine worm) (STV 1.0 0.9091)) +(: cnet_hasa_1da85d2827 (HasA jacket zipper) (STV 1.0 0.9091)) +(: cnet_hasa_ac82a645d6 (HasA jewish_people eat_kosher_food) (STV 1.0 0.9091)) +(: cnet_hasa_b66948e352 (HasA jew children) (STV 1.0 0.9091)) +(: cnet_hasa_87f3cf8261 (HasA kangaroo pouch_for_young) (STV 1.0 0.9091)) +(: cnet_hasa_514a319886 (HasA keyboard key) (STV 1.0 0.9091)) +(: cnet_hasa_52ec156b3a (HasA kimono wide_sleeve) (STV 1.0 0.9091)) +(: cnet_hasa_4eeb2e88ac (HasA king kingdom) (STV 1.0 0.9339)) +(: cnet_hasa_49abd6990d (HasA kingdom many_people) (STV 1.0 0.9091)) +(: cnet_hasa_add2044f4f (HasA kitchen stove) (STV 1.0 0.9091)) +(: cnet_hasa_582ac75a29 (HasA kitty paw) (STV 1.0 0.9454)) +(: cnet_hasa_cfef92e6ac (HasA lake water) (STV 1.0 0.9091)) +(: cnet_hasa_f5402ebc73 (HasA latest_new high_value) (STV 1.0 0.9091)) +(: cnet_hasa_61226c493b (HasA lawyer linen_closet_in_home) (STV 1.0 0.9091)) +(: cnet_hasa_9666ce8afa (HasA leader follower) (STV 1.0 0.9091)) +(: cnet_hasa_80e84ed37c (HasA leap_year 366_day) (STV 1.0 0.9339)) +(: cnet_hasa_7cb16c5669 (HasA leavened_bread yeast) (STV 1.0 0.9091)) +(: cnet_hasa_5a4f8fb04b (HasA leg one_foot) (STV 1.0 0.9339)) +(: cnet_hasa_dfe30110b4 (HasA leopard fur) (STV 1.0 0.9091)) +(: cnet_hasa_131529c50b (HasA library book) (STV 1.0 0.9524)) +(: cnet_hasa_eb4b04a495 (HasA library lot_of_book) (STV 1.0 0.9091)) +(: cnet_hasa_7e4980c418 (HasA lizard bone) (STV 1.0 0.9091)) +(: cnet_hasa_6fc52116f1 (HasA lizard four_leg) (STV 1.0 0.9091)) +(: cnet_hasa_6b102b1dfd (HasA lizard tail) (STV 1.0 0.9339)) +(: cnet_hasa_962d6d0abc (HasA magazine article) (STV 1.0 0.9339)) +(: cnet_hasa_4cebdf198e (HasA male sex_with_female) (STV 1.0 0.9091)) +(: cnet_hasa_87e6c15714 (HasA male_lion mane) (STV 1.0 0.9091)) +(: cnet_hasa_e12f732052 (HasA male_peacock bright_colored_tail) (STV 1.0 0.9091)) +(: cnet_hasa_6559702ef4 (HasA mall many_shop) (STV 1.0 0.9091)) +(: cnet_hasa_f1e4dcc782 (HasA mall escalator) (STV 1.0 0.9091)) +(: cnet_hasa_6e481a318a (HasA mammal fur) (STV 1.0 0.9572)) +(: cnet_hasa_364c1139ea (HasA mammal hair) (STV 1.0 0.9524)) +(: cnet_hasa_d4075ae0e2 (HasA mammal heart) (STV 1.0 0.9091)) +(: cnet_hasa_c183e70c85 (HasA mankind made_incredible_advance_in_space_travel) (STV 1.0 0.9091)) +(: cnet_hasa_585e1866c1 (HasA mankind made_many_advancement) (STV 1.0 0.9091)) +(: cnet_hasa_046fa1135b (HasA many_bird tail) (STV 1.0 0.9339)) +(: cnet_hasa_b2e72afb7b (HasA many_people bbq_on_patio) (STV 1.0 0.9091)) +(: cnet_hasa_72140fd10a (HasA marijuana thc) (STV 1.0 0.9524)) +(: cnet_hasa_57d44a0d88 (HasA mar two_moon) (STV 1.0 0.9091)) +(: cnet_hasa_e52d0c13cd (HasA matter mass) (STV 1.0 0.9091)) +(: cnet_hasa_a5c069d8fa (HasA men_and_women sex) (STV 1.0 0.9339)) +(: cnet_hasa_2fceb9f093 (HasA mike got_flu) (STV 1.0 0.9091)) +(: cnet_hasa_81eefaf17c (HasA milk calcium) (STV 1.0 0.9608)) +(: cnet_hasa_f7f8a8c7c2 (HasA milk water) (STV 1.0 0.9339)) +(: cnet_hasa_b6649990fe (HasA monday evening) (STV 1.0 0.9091)) +(: cnet_hasa_a7799b74e1 (HasA money value) (STV 1.0 0.9091)) +(: cnet_hasa_711ef5fee3 (HasA most_apartment kitchen) (STV 1.0 0.9091)) +(: cnet_hasa_a65ea79cc3 (HasA most_bathroom sink) (STV 1.0 0.9091)) +(: cnet_hasa_806a5e7fd2 (HasA most_bedroom window) (STV 1.0 0.9091)) +(: cnet_hasa_07b764eeb4 (HasA most_bicyle two_wheel) (STV 1.0 0.9339)) +(: cnet_hasa_a680733398 (HasA most_bird wing) (STV 1.0 0.9677)) +(: cnet_hasa_cb97b1bc8c (HasA most_book word) (STV 1.0 0.9091)) +(: cnet_hasa_b3760d91f6 (HasA most_camera len) (STV 1.0 0.9454)) +(: cnet_hasa_cff90c1d00 (HasA most_car four_wheel) (STV 1.0 0.9091)) +(: cnet_hasa_8b08825c55 (HasA most_cat tail) (STV 1.0 0.9659)) +(: cnet_hasa_204411d6be (HasA most_community leash_law) (STV 1.0 0.9091)) +(: cnet_hasa_75be2ca5c1 (HasA most_door lock) (STV 1.0 0.9091)) +(: cnet_hasa_ae58a0efd0 (HasA most_human two_leg) (STV 1.0 0.9339)) +(: cnet_hasa_7a96d7a8ea (HasA most_magazine picture_in) (STV 1.0 0.9454)) +(: cnet_hasa_1945c92ae5 (HasA most_mammal four_leg) (STV 1.0 0.9091)) +(: cnet_hasa_0f3d7440b4 (HasA most_men job) (STV 1.0 0.9091)) +(: cnet_hasa_c31c8fa395 (HasA most_people favorite_food) (STV 1.0 0.9091)) +(: cnet_hasa_913fd3b9d8 (HasA most_people two_arm) (STV 1.0 0.9339)) +(: cnet_hasa_8a8cc4513c (HasA most_people two_eye) (STV 1.0 0.9524)) +(: cnet_hasa_1bdb08c8b8 (HasA most_people two_hand) (STV 1.0 0.9339)) +(: cnet_hasa_4969ea0ed0 (HasA most_pizza cheese_on) (STV 1.0 0.9730)) +(: cnet_hasa_3da662d6b3 (HasA most_religion ritual) (STV 1.0 0.9339)) +(: cnet_hasa_4bfc3da0ba (HasA motorcycle two_wheel) (STV 1.0 0.9524)) +(: cnet_hasa_e38bfbd119 (HasA motorcycle 2_wheel) (STV 1.0 0.9091)) +(: cnet_hasa_65dabe118a (HasA mouse short_lifespan) (STV 1.0 0.9091)) +(: cnet_hasa_ed5136a60a (HasA mouth lip) (STV 1.0 0.9608)) +(: cnet_hasa_8af9dc5124 (HasA movie_theater_seat armrest) (STV 1.0 0.9091)) +(: cnet_hasa_f3258e9d43 (HasA mowing_grass linear_complexity) (STV 1.0 0.9091)) +(: cnet_hasa_db6ad632cf (HasA natural_gas bad_smell) (STV 1.0 0.9091)) +(: cnet_hasa_316c8276cc (HasA needle sharp_point) (STV 1.0 0.9091)) +(: cnet_hasa_783582ce17 (HasA new_computer memory_chip) (STV 1.0 0.9091)) +(: cnet_hasa_009f364957 (HasA new_york many_tall_building) (STV 1.0 0.9091)) +(: cnet_hasa_84d4ba1fe1 (HasA newspaper information_about_many_thing) (STV 1.0 0.9091)) +(: cnet_hasa_8ef2310778 (HasA newspaper many_column) (STV 1.0 0.9091)) +(: cnet_hasa_ef69ff7c61 (HasA newspaper new_in_paper_format) (STV 1.0 0.9091)) +(: cnet_hasa_b9ec3dad48 (HasA normal_people hand) (STV 1.0 0.9091)) +(: cnet_hasa_f16e74d746 (HasA normally_people one_head) (STV 1.0 0.9091)) +(: cnet_hasa_1c468614aa (HasA nose two_nostril) (STV 1.0 0.9091)) +(: cnet_hasa_ac7f6d57a8 (HasA november thirty_day) (STV 1.0 0.9091)) +(: cnet_hasa_1468b768d9 (HasA object volume) (STV 1.0 0.9091)) +(: cnet_hasa_c2edd2d75e (HasA ocean salt) (STV 1.0 0.9091)) +(: cnet_hasa_fd328e3003 (HasA ocean water) (STV 1.0 0.9091)) +(: cnet_hasa_5ccddf9cbe (HasA ocean salt_water) (STV 1.0 0.9677)) +(: cnet_hasa_d77c40e081 (HasA old_new low_value) (STV 1.0 0.9091)) +(: cnet_hasa_0e778f628c (HasA old_people grey_hair) (STV 1.0 0.9091)) +(: cnet_hasa_e5db7d3dcb (HasA one_hand four_finger_and_thumb) (STV 1.0 0.9339)) +(: cnet_hasa_864f47cc95 (HasA one_impairment_person_might bright_s_disease) (STV 1.0 0.9091)) +(: cnet_hasa_90f15a60ff (HasA one_impairment_person_might buerger_s_disease) (STV 1.0 0.9091)) +(: cnet_hasa_7b8b50367c (HasA one_impairment_person_might grave_disease) (STV 1.0 0.9091)) +(: cnet_hasa_9c8a11255d (HasA one_pair_of_pant two_leg) (STV 1.0 0.9091)) +(: cnet_hasa_520f766f10 (HasA one_type_of_box hole_for_ventilation) (STV 1.0 0.9091)) +(: cnet_hasa_7a5aebc4d4 (HasA onion skin) (STV 1.0 0.9091)) +(: cnet_hasa_286d92c21e (HasA orange peel) (STV 1.0 0.9339)) +(: cnet_hasa_ac45b1dc77 (HasA orange rind) (STV 1.0 0.9339)) +(: cnet_hasa_397940ff65 (HasA orange_juice vitamin_c) (STV 1.0 0.9091)) +(: cnet_hasa_e3e545fc89 (HasA orange seed) (STV 1.0 0.9091)) +(: cnet_hasa_1a4e4c19cd (HasA orchestra_pit musician) (STV 1.0 0.9091)) +(: cnet_hasa_aada7596fa (HasA owl eye) (STV 1.0 0.9091)) +(: cnet_hasa_ef54b6ed9c (HasA pair_of_pant one_waistline) (STV 1.0 0.9091)) +(: cnet_hasa_6e925133f1 (HasA parent child) (STV 1.0 0.9091)) +(: cnet_hasa_0e8d6c6874 (HasA peach pit) (STV 1.0 0.9572)) +(: cnet_hasa_4feec2f33f (HasA pen ink) (STV 1.0 0.9339)) +(: cnet_hasa_4a83f270af (HasA pencil graphite_not_lead) (STV 1.0 0.9091)) +(: cnet_hasa_dfab06d001 (HasA people body_part) (STV 1.0 0.9091)) +(: cnet_hasa_431fc7526a (HasA people brain) (STV 1.0 0.9339)) +(: cnet_hasa_cc6e428328 (HasA people brown_hair) (STV 1.0 0.9454)) +(: cnet_hasa_d68de855d5 (HasA people cat_for_pet) (STV 1.0 0.9454)) +(: cnet_hasa_adfdc31a34 (HasA people dog_as_pet) (STV 1.0 0.9636)) +(: cnet_hasa_209b9b45d8 (HasA people drug_problem) (STV 1.0 0.9454)) +(: cnet_hasa_cd8f470dcd (HasA people eat) (STV 1.0 0.9091)) +(: cnet_hasa_c8eb5a3b47 (HasA people emotion) (STV 1.0 0.9524)) +(: cnet_hasa_583fa50d76 (HasA people eye) (STV 1.0 0.9091)) +(: cnet_hasa_00b3b85603 (HasA people favorite_color) (STV 1.0 0.9091)) +(: cnet_hasa_22f5de2efe (HasA people feeling) (STV 1.0 0.9677)) +(: cnet_hasa_107dd3aa6c (HasA people five_finger_on_each_hand) (STV 1.0 0.9454)) +(: cnet_hasa_0d14ade3e3 (HasA people muscle) (STV 1.0 0.9339)) +(: cnet_hasa_b663ae9e01 (HasA people name) (STV 1.0 0.9454)) +(: cnet_hasa_abb5542fcb (HasA people parent) (STV 1.0 0.9091)) +(: cnet_hasa_6d98912e3f (HasA people pay_taxe) (STV 1.0 0.9091)) +(: cnet_hasa_f7cf2b62b0 (HasA people red_hair) (STV 1.0 0.9091)) +(: cnet_hasa_0f46450585 (HasA people sex) (STV 1.0 0.9091)) +(: cnet_hasa_986fae2054 (HasA people sex_in_bed) (STV 1.0 0.9339)) +(: cnet_hasa_cad1d33ebb (HasA people two_arm) (STV 1.0 0.9091)) +(: cnet_hasa_06af8b720b (HasA people two_eye) (STV 1.0 0.9454)) +(: cnet_hasa_6788e78323 (HasA people two_leg) (STV 1.0 0.9091)) +(: cnet_hasa_16c70ae846 (HasA people_put_on_trial lawyer) (STV 1.0 0.9091)) +(: cnet_hasa_f3930590c8 (HasA person belly_button) (STV 1.0 0.9091)) +(: cnet_hasa_13dddca70c (HasA person do_dishe) (STV 1.0 0.9091)) +(: cnet_hasa_b872dc96b6 (HasA person four_grandparent) (STV 1.0 0.9091)) +(: cnet_hasa_916f4e16c1 (HasA person immune_system) (STV 1.0 0.9091)) +(: cnet_hasa_990dc1d320 (HasA person name) (STV 1.0 0.9339)) +(: cnet_hasa_f35515cb3a (HasA person one_head) (STV 1.0 0.9524)) +(: cnet_hasa_81fba684ca (HasA person two_opposable_thumb) (STV 1.0 0.9091)) +(: cnet_hasa_0844b16367 (HasA person_want family) (STV 1.0 0.9608)) +(: cnet_hasa_11a3cda8cb (HasA person_want orgasm) (STV 1.0 0.9091)) +(: cnet_hasa_717d93fe4f (HasA pi value_of_about_3_141592653) (STV 1.0 0.9091)) +(: cnet_hasa_e1c9e47d61 (HasA piano 88_key) (STV 1.0 0.9454)) +(: cnet_hasa_405fd92c8f (HasA piano black_and_white_key) (STV 1.0 0.9091)) +(: cnet_hasa_209d11a5fc (HasA pie pie_crust) (STV 1.0 0.9091)) +(: cnet_hasa_d5632422ec (HasA pig bone) (STV 1.0 0.9091)) +(: cnet_hasa_8c0a41c231 (HasA planet_earth iron_core) (STV 1.0 0.9091)) +(: cnet_hasa_11a15ad6db (HasA plant flower_on) (STV 1.0 0.9608)) +(: cnet_hasa_1a4857effe (HasA plant leave) (STV 1.0 0.9707)) +(: cnet_hasa_a3267694b5 (HasA plant root) (STV 1.0 0.9524)) +(: cnet_hasa_35ea3b9e9b (HasA pond water) (STV 1.0 0.9091)) +(: cnet_hasa_ecf969948b (HasA ponderosa_pine distinctive_smell) (STV 1.0 0.9091)) +(: cnet_hasa_5b29c3ca92 (HasA pool water) (STV 1.0 0.9091)) +(: cnet_hasa_abc5b6a684 (HasA proton positive_electric_charge) (STV 1.0 0.9572)) +(: cnet_hasa_6e44d3cab1 (HasA puppy bad_breath) (STV 1.0 0.9339)) +(: cnet_hasa_0742e2cd89 (HasA puppy hair_all_over) (STV 1.0 0.9091)) +(: cnet_hasa_6336fa74da (HasA rabbit two_ear) (STV 1.0 0.9339)) +(: cnet_hasa_d7881d7595 (HasA rabid_animal raby) (STV 1.0 0.9091)) +(: cnet_hasa_f0ddf11b9c (HasA race purse_for_winner) (STV 1.0 0.9091)) +(: cnet_hasa_9db987c997 (HasA ranch hors) (STV 1.0 0.9454)) +(: cnet_hasa_d1868fd4da (HasA religion caused_many_war) (STV 1.0 0.9524)) +(: cnet_hasa_5762b1af55 (HasA religion minister) (STV 1.0 0.9454)) +(: cnet_hasa_f2292aad9c (HasA room wall) (STV 1.0 0.9091)) +(: cnet_hasa_5fd0c39f50 (HasA room wall_and_roof) (STV 1.0 0.9091)) +(: cnet_hasa_e52093fd06 (HasA room door) (STV 1.0 0.9091)) +(: cnet_hasa_f43df1823d (HasA room door_and_window) (STV 1.0 0.9091)) +(: cnet_hasa_bf60d038f6 (HasA room high_wall) (STV 1.0 0.9091)) +(: cnet_hasa_5d12ff5d3f (HasA room square_shape) (STV 1.0 0.9091)) +(: cnet_hasa_a66925954b (HasA rooster comb) (STV 1.0 0.9091)) +(: cnet_hasa_d99e3bb991 (HasA rose thorn) (STV 1.0 0.9091)) +(: cnet_hasa_bd235699e7 (HasA rose_bushe thorn) (STV 1.0 0.9339)) +(: cnet_hasa_15a9b4193c (HasA ros thorn_on_stem) (STV 1.0 0.9091)) +(: cnet_hasa_e858d76a88 (HasA sailboat mast) (STV 1.0 0.9091)) +(: cnet_hasa_c0126d01c1 (HasA sailboat sail) (STV 1.0 0.9091)) +(: cnet_hasa_04d7141b0f (HasA salesmen good_manner) (STV 1.0 0.9339)) +(: cnet_hasa_64bafbf9ee (HasA san_francisco many_hill) (STV 1.0 0.9091)) +(: cnet_hasa_d646bc4189 (HasA school classroom) (STV 1.0 0.9339)) +(: cnet_hasa_46ab4c0140 (HasA seafood_restaurant bar) (STV 1.0 0.9091)) +(: cnet_hasa_d325fb7e6f (HasA sex effect_of_burning_calory) (STV 1.0 0.9454)) +(: cnet_hasa_eab77e33b4 (HasA sex effect_of_insemination) (STV 1.0 0.9091)) +(: cnet_hasa_025de0a26f (HasA ship bow_and_stern) (STV 1.0 0.9091)) +(: cnet_hasa_c78fcedd99 (HasA shirt button) (STV 1.0 0.9454)) +(: cnet_hasa_9c8ca14e12 (HasA shirt collar) (STV 1.0 0.9091)) +(: cnet_hasa_2a77703e1c (HasA shoe lace) (STV 1.0 0.9339)) +(: cnet_hasa_b8fa0ca7b9 (HasA shoe heel) (STV 1.0 0.9091)) +(: cnet_hasa_15daf8b323 (HasA snake no_leg) (STV 1.0 0.9091)) +(: cnet_hasa_be9e0529cd (HasA snake scale) (STV 1.0 0.9339)) +(: cnet_hasa_476dded472 (HasA solar_system nine_planet) (STV 1.0 0.9091)) +(: cnet_hasa_7c811956a7 (HasA solar_system planet) (STV 1.0 0.9454)) +(: cnet_hasa_47536e8be3 (HasA soldier proud_profession) (STV 1.0 0.9091)) +(: cnet_hasa_b75a0b2de9 (HasA soldier different_rank) (STV 1.0 0.9339)) +(: cnet_hasa_122808e97e (HasA spider eight_leg) (STV 1.0 0.9524)) +(: cnet_hasa_009b1fb693 (HasA square four_equal_side) (STV 1.0 0.9091)) +(: cnet_hasa_60ddb82dbb (HasA square four_side) (STV 1.0 0.9454)) +(: cnet_hasa_afc0d3abd6 (HasA stair_often railing) (STV 1.0 0.9091)) +(: cnet_hasa_bfbce2e243 (HasA stairwell stair) (STV 1.0 0.9091)) +(: cnet_hasa_1a0927e050 (HasA stamp_pad ink) (STV 1.0 0.9091)) +(: cnet_hasa_4f7bdeb213 (HasA stamp_pad ink_on) (STV 1.0 0.9339)) +(: cnet_hasa_ab15df98ae (HasA state_of_virginia many_tree) (STV 1.0 0.9091)) +(: cnet_hasa_0851ba644d (HasA steel iron) (STV 1.0 0.9572)) +(: cnet_hasa_9100d6af2b (HasA student go_to_class) (STV 1.0 0.9091)) +(: cnet_hasa_3f8aa1a3f5 (HasA supermarket large_selection_of_food) (STV 1.0 0.9339)) +(: cnet_hasa_7b6a25ee2a (HasA sword sharp_edge) (STV 1.0 0.9091)) +(: cnet_hasa_b3d1b97b75 (HasA sydney taller_building_than_melbourne) (STV 1.0 0.9339)) +(: cnet_hasa_0f84face41 (HasA talk_show guest) (STV 1.0 0.9091)) +(: cnet_hasa_5f2ec5199b (HasA tall_people advantage_in_basketball) (STV 1.0 0.9091)) +(: cnet_hasa_e58d8b79e8 (HasA tea caffein) (STV 1.0 0.9454)) +(: cnet_hasa_45690d6f5e (HasA tea caffeine) (STV 1.0 0.9572)) +(: cnet_hasa_826a2dc33e (HasA teapot spout) (STV 1.0 0.9091)) +(: cnet_hasa_d58d62baf3 (HasA tennis_court net) (STV 1.0 0.9454)) +(: cnet_hasa_8a4e3d2588 (HasA terraced_house many_level) (STV 1.0 0.9454)) +(: cnet_hasa_de4f98becf (HasA test_often problem_on) (STV 1.0 0.9091)) +(: cnet_hasa_b414cd4983 (HasA tissue_holder tissue) (STV 1.0 0.9091)) +(: cnet_hasa_0f6c0359b4 (HasA toilet_lid hinge) (STV 1.0 0.9091)) +(: cnet_hasa_60f435caac (HasA toothbrush bristle) (STV 1.0 0.9636)) +(: cnet_hasa_c7bb2bae16 (HasA toothbrush_head bristle) (STV 1.0 0.9091)) +(: cnet_hasa_ddbbc7914d (HasA tortilla specific_shape) (STV 1.0 0.9091)) +(: cnet_hasa_e1a0ee1887 (HasA tree leave_on_branche) (STV 1.0 0.9339)) +(: cnet_hasa_d9229a33b7 (HasA tree trunk) (STV 1.0 0.9091)) +(: cnet_hasa_8dc698be39 (HasA tree branche) (STV 1.0 0.9454)) +(: cnet_hasa_ac4fab5b10 (HasA tree leave) (STV 1.0 0.9719)) +(: cnet_hasa_db81cbb2f0 (HasA triangle 3_side) (STV 1.0 0.9524)) +(: cnet_hasa_bcd6169cc3 (HasA triangle three_side) (STV 1.0 0.9707)) +(: cnet_hasa_8635c2e881 (HasA tripod three_leg) (STV 1.0 0.9091)) +(: cnet_hasa_567caf5f9c (HasA tripod_dolly three_leg) (STV 1.0 0.9091)) +(: cnet_hasa_ab3d684970 (HasA tuba mouthpiece) (STV 1.0 0.9091)) +(: cnet_hasa_c72bd0588b (HasA turtle hard_shell) (STV 1.0 0.9454)) +(: cnet_hasa_e5ead5a932 (HasA tv channel) (STV 1.0 0.9091)) +(: cnet_hasa_c7d81a9e68 (HasA unicorn one_horn) (STV 1.0 0.9091)) +(: cnet_hasa_d3ec1cd711 (HasA unicorn only_one_horn) (STV 1.0 0.9091)) +(: cnet_hasa_8274fd5ee6 (HasA united_state democratic_government) (STV 1.0 0.9091)) +(: cnet_hasa_e31ac2cc53 (HasA united_state fifty_state) (STV 1.0 0.9091)) +(: cnet_hasa_584b62be3b (HasA valley different_temperature_than_hill) (STV 1.0 0.9091)) +(: cnet_hasa_57a907dc81 (HasA vehicle just_two_wheel) (STV 1.0 0.9091)) +(: cnet_hasa_2355dd5cdc (HasA vertebrate backbone) (STV 1.0 0.9091)) +(: cnet_hasa_9a471cc70a (HasA vertebrate spine) (STV 1.0 0.9339)) +(: cnet_hasa_f2880101d2 (HasA violin string) (STV 1.0 0.9572)) +(: cnet_hasa_26edbe0b1e (HasA virgin_person_who not_had_sex) (STV 1.0 0.9339)) +(: cnet_hasa_9e946bff32 (HasA visa_card credit_limit) (STV 1.0 0.9091)) +(: cnet_hasa_eb6d0bf98f (HasA volcano crater) (STV 1.0 0.9339)) +(: cnet_hasa_8cdbd15bf7 (HasA wagon wheel) (STV 1.0 0.9339)) +(: cnet_hasa_8d6e75c065 (HasA walnut shell) (STV 1.0 0.9091)) +(: cnet_hasa_48c55c74ae (HasA war violence) (STV 1.0 0.9091)) +(: cnet_hasa_121b52921a (HasA watche hand) (STV 1.0 0.9339)) +(: cnet_hasa_13c90ec54c (HasA water no_taste) (STV 1.0 0.9091)) +(: cnet_hasa_b83a8e8ca2 (HasA water_in_ocean salt) (STV 1.0 0.9339)) +(: cnet_hasa_fde1074d64 (HasA watermelon black_seed) (STV 1.0 0.9091)) +(: cnet_hasa_7e5ca876af (HasA whale bone) (STV 1.0 0.9091)) +(: cnet_hasa_31b04ec25c (HasA window frame) (STV 1.0 0.9091)) +(: cnet_hasa_653e8cc2eb (HasA wine alcohol) (STV 1.0 0.9719)) +(: cnet_hasa_6211870565 (HasA wine_bottle cork) (STV 1.0 0.9091)) +(: cnet_hasa_29271fd497 (HasA wood grain_to) (STV 1.0 0.9091)) +(: cnet_hasa_0b1fbd65a0 (HasA word meaning) (STV 1.0 0.9339)) +(: cnet_hasa_1469c0acf4 (HasA word multiple_meaning) (STV 1.0 0.9339)) +(: cnet_hasa_32d01a5586 (HasA wow three_letter) (STV 1.0 0.9091)) +(: cnet_hasa_74adbd70d3 (HasA year 12_month) (STV 1.0 0.9091)) +(: cnet_hasa_06a72bcc10 (HasA zebra stripe) (STV 1.0 0.9339)) +(: cnet_isa_5dd820c668 (IsA addition commutative) (STV 1.0 0.9091)) +(: cnet_isa_d0756db4fe (IsA adult older_than_children) (STV 1.0 0.9091)) +(: cnet_isa_1baedefed2 (IsA aerial_bomb destructive) (STV 1.0 0.9091)) +(: cnet_isa_7cfb5b7536 (IsA air invisible) (STV 1.0 0.9339)) +(: cnet_isa_43b9d49928 (IsA alcohol addictive) (STV 1.0 0.9524)) +(: cnet_isa_4379a93294 (IsA alcoholic more_likely_to_get_drunk) (STV 1.0 0.9091)) +(: cnet_isa_6e12606f2a (IsA alien intelligent) (STV 1.0 0.9091)) +(: cnet_isa_59e374f91e (IsA all_bull male) (STV 1.0 0.9339)) +(: cnet_isa_6da73c49bd (IsA all_cds round) (STV 1.0 0.9091)) +(: cnet_isa_199405e6ab (IsA all_king male) (STV 1.0 0.9091)) +(: cnet_isa_66b9d2b48d (IsA all_people different) (STV 1.0 0.9524)) +(: cnet_isa_4ea038d8b5 (IsA all_people human) (STV 1.0 0.9608)) +(: cnet_isa_b42a70e264 (IsA all_planet round) (STV 1.0 0.9339)) +(: cnet_isa_0b8a848d8c (IsA alto lower_than_soprano) (STV 1.0 0.9091)) +(: cnet_isa_6105f2ec74 (IsA and_chewing_tobacco disgusting) (STV 1.0 0.9091)) +(: cnet_isa_a7bba99b46 (IsA animal alive) (STV 1.0 0.9524)) +(: cnet_isa_0a5a460e1a (IsA animal edible) (STV 1.0 0.9339)) +(: cnet_isa_769a9ce079 (IsA answer_to_everything 42) (STV 1.0 0.9454)) +(: cnet_isa_ed13240898 (IsA ant very_strong) (STV 1.0 0.9091)) +(: cnet_isa_46b8fc05c1 (IsA appearance deceptive) (STV 1.0 0.9339)) +(: cnet_isa_7f0d05fbec (IsA apple green) (STV 1.0 0.9730)) +(: cnet_isa_b56ae45523 (IsA apple red) (STV 1.0 0.9796)) +(: cnet_isa_822176dec6 (IsA apple crisp) (STV 1.0 0.9091)) +(: cnet_isa_48886f24bf (IsA apple good_for) (STV 1.0 0.9339)) +(: cnet_isa_c8e8ffdb7d (IsA apple good_to_eat) (STV 1.0 0.9339)) +(: cnet_isa_f39cf28078 (IsA apple yellow) (STV 1.0 0.9454)) +(: cnet_isa_e77216acc5 (IsA arson sad) (STV 1.0 0.9091)) +(: cnet_isa_97cbd3928d (IsA art beautiful) (STV 1.0 0.9091)) +(: cnet_isa_b60a6b15ed (IsA atom very_very_small) (STV 1.0 0.9091)) +(: cnet_isa_6db5f5d444 (IsA atom very_small) (STV 1.0 0.9091)) +(: cnet_isa_9741cf799c (IsA ax useful_for_chopping_wood) (STV 1.0 0.9091)) +(: cnet_isa_3af641257b (IsA axe sharp) (STV 1.0 0.9091)) +(: cnet_isa_161c7eed55 (IsA bacteria harmful) (STV 1.0 0.9091)) +(: cnet_isa_61bd0b16d4 (IsA bagel boiled_and_then_baked) (STV 1.0 0.9454)) +(: cnet_isa_21e22bf69c (IsA baking_oven hot) (STV 1.0 0.9339)) +(: cnet_isa_57dc88f234 (IsA ball circular) (STV 1.0 0.9339)) +(: cnet_isa_c9e4b9f380 (IsA ball rolling_down_street) (STV 1.0 0.9091)) +(: cnet_isa_ed1c99a18a (IsA ball round) (STV 1.0 0.9707)) +(: cnet_isa_bec7e3dfd0 (IsA ball round_and_fun_to_bounce) (STV 1.0 0.9091)) +(: cnet_isa_5db5bdbbc2 (IsA ball_often round) (STV 1.0 0.9091)) +(: cnet_isa_185e9806f1 (IsA balloon colorful) (STV 1.0 0.9091)) +(: cnet_isa_3e2d5877ba (IsA banana yellow) (STV 1.0 0.9524)) +(: cnet_isa_dadf58db2f (IsA banana rich_in_potassium) (STV 1.0 0.9091)) +(: cnet_isa_29f93a4d7e (IsA bank near_parking) (STV 1.0 0.9091)) +(: cnet_isa_b81fa2bab4 (IsA baseball fun_to_play) (STV 1.0 0.9091)) +(: cnet_isa_df6e8e6a9b (IsA baseball hard) (STV 1.0 0.9091)) +(: cnet_isa_d332000414 (IsA baseball round) (STV 1.0 0.9339)) +(: cnet_isa_264542759c (IsA basketball full_of_air) (STV 1.0 0.9091)) +(: cnet_isa_1bc5020ef1 (IsA basketball one_form_of_exercise) (STV 1.0 0.9091)) +(: cnet_isa_2d264d211b (IsA basketball round) (STV 1.0 0.9524)) +(: cnet_isa_e5b97260b1 (IsA bbq short_for_barbeque) (STV 1.0 0.9454)) +(: cnet_isa_cfe4d81932 (IsA beache sandy) (STV 1.0 0.9572)) +(: cnet_isa_67e966acc5 (IsA bed flat) (STV 1.0 0.9339)) +(: cnet_isa_8661401c94 (IsA bedroom one_part_of_house) (STV 1.0 0.9091)) +(: cnet_isa_586fba3755 (IsA beer harmful) (STV 1.0 0.9339)) +(: cnet_isa_deab5ad772 (IsA beer liquid) (STV 1.0 0.9091)) +(: cnet_isa_8fcb19f09d (IsA being_hurt crappy) (STV 1.0 0.9339)) +(: cnet_isa_890a8d893f (IsA big_cat dangerous) (STV 1.0 0.9091)) +(: cnet_isa_fb5fd6471e (IsA biking fun) (STV 1.0 0.9339)) +(: cnet_isa_ea9c3d93b3 (IsA biking good_for_health) (STV 1.0 0.9091)) +(: cnet_isa_1bde770671 (IsA bird singing) (STV 1.0 0.9339)) +(: cnet_isa_3a8a8a06bb (IsA bird very_colorful) (STV 1.0 0.9091)) +(: cnet_isa_d0c93d65f8 (IsA blow_job fun) (STV 1.0 0.9091)) +(: cnet_isa_76e64bc402 (IsA boiling_water hot) (STV 1.0 0.9339)) +(: cnet_isa_67815b2465 (IsA bomb dangerous) (STV 1.0 0.9091)) +(: cnet_isa_7fd845f9d8 (IsA bomb very_destructive) (STV 1.0 0.9091)) +(: cnet_isa_8c7cfe6c4a (IsA bond_between_mother_and_child strong) (STV 1.0 0.9091)) +(: cnet_isa_04d2015207 (IsA bone hard) (STV 1.0 0.9339)) +(: cnet_isa_d19cda3c76 (IsA bone like_ceramic) (STV 1.0 0.9091)) +(: cnet_isa_de8832f135 (IsA bone rigid) (STV 1.0 0.9339)) +(: cnet_isa_7be9385be9 (IsA bone stiff) (STV 1.0 0.9091)) +(: cnet_isa_1a10e15e7a (IsA bone strong) (STV 1.0 0.9091)) +(: cnet_isa_3b84a1de00 (IsA book up_on_top_shelf) (STV 1.0 0.9091)) +(: cnet_isa_16d6e8a4c1 (IsA book entertaining) (STV 1.0 0.9524)) +(: cnet_isa_9e0f15732b (IsA book full_of_writing) (STV 1.0 0.9091)) +(: cnet_isa_e950236cff (IsA boredom avoidable) (STV 1.0 0.9339)) +(: cnet_isa_ef5b2f295d (IsA boredom bad) (STV 1.0 0.9091)) +(: cnet_isa_210c75ed32 (IsA both_cardboard_and_can recyclable) (STV 1.0 0.9091)) +(: cnet_isa_8635ff14dc (IsA brain complex_in_function) (STV 1.0 0.9091)) +(: cnet_isa_6baf959ea5 (IsA brain complex) (STV 1.0 0.9091)) +(: cnet_isa_3ba89806b3 (IsA brick hard) (STV 1.0 0.9339)) +(: cnet_isa_31104c51fc (IsA bristle stiff) (STV 1.0 0.9091)) +(: cnet_isa_b153cc2a0c (IsA broken_glass sharp) (STV 1.0 0.9454)) +(: cnet_isa_7eb2cc179b (IsA building man_made) (STV 1.0 0.9454)) +(: cnet_isa_e71d56ea0a (IsA bungee_jumping scary) (STV 1.0 0.9091)) +(: cnet_isa_5ccf8047b7 (IsA burnt_skin painful) (STV 1.0 0.9091)) +(: cnet_isa_8a2b6bb976 (IsA business opening_early) (STV 1.0 0.9091)) +(: cnet_isa_39987f20e4 (IsA butter pale_yellow) (STV 1.0 0.9091)) +(: cnet_isa_f7c97ac25f (IsA butter soft) (STV 1.0 0.9091)) +(: cnet_isa_ced706d989 (IsA butter yellow) (STV 1.0 0.9659)) +(: cnet_isa_6c33cda8c7 (IsA cake good_for_dessert) (STV 1.0 0.9091)) +(: cnet_isa_2da62dd1a0 (IsA cake sweet) (STV 1.0 0.9572)) +(: cnet_isa_bf8531a022 (IsA calculus difficult) (STV 1.0 0.9091)) +(: cnet_isa_a2505d148e (IsA camping fun) (STV 1.0 0.9339)) +(: cnet_isa_937d4736f5 (IsA canada cold) (STV 1.0 0.9339)) +(: cnet_isa_3c026d5e24 (IsA canada north_of_united_state) (STV 1.0 0.9707)) +(: cnet_isa_2d61964212 (IsA cancer bad) (STV 1.0 0.9454)) +(: cnet_isa_72d4fb105a (IsA cannabis good) (STV 1.0 0.9091)) +(: cnet_isa_c56e02ad0c (IsA cannibalism wrong) (STV 1.0 0.9091)) +(: cnet_isa_1ecfb76df2 (IsA can colored) (STV 1.0 0.9524)) +(: cnet_isa_5a32e4f4f9 (IsA can recyclable) (STV 1.0 0.9091)) +(: cnet_isa_eb5c915536 (IsA capital_of_united_kingdom london) (STV 1.0 0.9091)) +(: cnet_isa_2581e9e507 (IsA car heavy) (STV 1.0 0.9339)) +(: cnet_isa_bf9dd867c2 (IsA car red) (STV 1.0 0.9454)) +(: cnet_isa_fd0ca6f0cb (IsA car turning_into_driveway) (STV 1.0 0.9091)) +(: cnet_isa_263faff1f8 (IsA carbonated_drink bubbly) (STV 1.0 0.9091)) +(: cnet_isa_3f750c9b18 (IsA carrot only_one_kind_of_root_vegetable) (STV 1.0 0.9091)) +(: cnet_isa_c07ebb713f (IsA carrot orange) (STV 1.0 0.9454)) +(: cnet_isa_309cf576a3 (IsA car expensive) (STV 1.0 0.9748)) +(: cnet_isa_5464851448 (IsA car very_heavy) (STV 1.0 0.9339)) +(: cnet_isa_6e2c40bcfa (IsA cat feline) (STV 1.0 0.9572)) +(: cnet_isa_a0a7571f7a (IsA cat hungry) (STV 1.0 0.9339)) +(: cnet_isa_fa21daffe5 (IsA cat black) (STV 1.0 0.9091)) +(: cnet_isa_93586cc13c (IsA cat gentle) (STV 1.0 0.9339)) +(: cnet_isa_8bd6c36166 (IsA cat hairy) (STV 1.0 0.9091)) +(: cnet_isa_b57abadc8e (IsA cat_purr_when happy) (STV 1.0 0.9091)) +(: cnet_isa_ba9608505d (IsA catwalk narrow) (STV 1.0 0.9339)) +(: cnet_isa_9b242f48b7 (IsA cds round) (STV 1.0 0.9339)) +(: cnet_isa_afccdd0682 (IsA chalkboard re_used_countless_of_time) (STV 1.0 0.9091)) +(: cnet_isa_920b64209d (IsA cheddar_cheese orange) (STV 1.0 0.9091)) +(: cnet_isa_426a6c65ab (IsA chemical_symbol_of_carbon c) (STV 1.0 0.9091)) +(: cnet_isa_97b93fdbfb (IsA chemical_symbol_of_oxygen o) (STV 1.0 0.9091)) +(: cnet_isa_dd38bd80b7 (IsA chemical toxic) (STV 1.0 0.9091)) +(: cnet_isa_c6322230f1 (IsA chess_board square) (STV 1.0 0.9091)) +(: cnet_isa_65736e7099 (IsA chess_pawn expendable) (STV 1.0 0.9091)) +(: cnet_isa_1305e5d844 (IsA child playful) (STV 1.0 0.9091)) +(: cnet_isa_3b326d671a (IsA children curious) (STV 1.0 0.9454)) +(: cnet_isa_33665d8280 (IsA children cute) (STV 1.0 0.9091)) +(: cnet_isa_07f8176e04 (IsA children innocent) (STV 1.0 0.9454)) +(: cnet_isa_57a60413ea (IsA children noisy) (STV 1.0 0.9572)) +(: cnet_isa_41e2324966 (IsA chili_pepper spicy) (STV 1.0 0.9524)) +(: cnet_isa_a1e43ee6ea (IsA chinese_food spicy) (STV 1.0 0.9454)) +(: cnet_isa_9507afd3ca (IsA christian religious) (STV 1.0 0.9091)) +(: cnet_isa_6f94ebe0f4 (IsA christma celebrated_by_christian) (STV 1.0 0.9091)) +(: cnet_isa_f97b1ce05a (IsA cigarette bad_for) (STV 1.0 0.9339)) +(: cnet_isa_3eec8cb5c9 (IsA cigarette unhealthy) (STV 1.0 0.9091)) +(: cnet_isa_f6a078f025 (IsA circle round) (STV 1.0 0.9740)) +(: cnet_isa_73b14f9f4e (IsA classical_music relaxing) (STV 1.0 0.9339)) +(: cnet_isa_4e20f3aa41 (IsA clean_clothe good) (STV 1.0 0.9339)) +(: cnet_isa_a07caf8293 (IsA cleaning_window boring) (STV 1.0 0.9339)) +(: cnet_isa_24bf30953b (IsA cleanliness next_to_godliness) (STV 1.0 0.9091)) +(: cnet_isa_59290ceb69 (IsA clock analog_or_digital) (STV 1.0 0.9091)) +(: cnet_isa_f4e712721a (IsA clown_fish immune_to_sting_of_anemone) (STV 1.0 0.9339)) +(: cnet_isa_479acc21ef (IsA coat_hanger for_hanging_up_clothe) (STV 1.0 0.9091)) +(: cnet_isa_8705b0d961 (IsA cocain illegal) (STV 1.0 0.9454)) +(: cnet_isa_6ab94a65cc (IsA cocaine addictive) (STV 1.0 0.9091)) +(: cnet_isa_9491288e32 (IsA coffee good_in_morning) (STV 1.0 0.9091)) +(: cnet_isa_93ef094c6b (IsA coffee served_hot) (STV 1.0 0.9572)) +(: cnet_isa_b50b5e34bb (IsA color_of_grass green) (STV 1.0 0.9091)) +(: cnet_isa_a3d1939f66 (IsA column vertical) (STV 1.0 0.9091)) +(: cnet_isa_0b3da1c85e (IsA commiting_genocide bad) (STV 1.0 0.9091)) +(: cnet_isa_8060b5d702 (IsA common_sense good) (STV 1.0 0.9091)) +(: cnet_isa_ee50c00290 (IsA common_sense uncommon) (STV 1.0 0.9091)) +(: cnet_isa_688e8543d1 (IsA compact_disc round) (STV 1.0 0.9091)) +(: cnet_isa_61ee4d33e8 (IsA compact_disk rigid) (STV 1.0 0.9091)) +(: cnet_isa_7655e37d20 (IsA compost useful_for_recycling) (STV 1.0 0.9091)) +(: cnet_isa_a22b74df1a (IsA comprehensive_test_ban_treaty abbreviated_to_ctbt) (STV 1.0 0.9091)) +(: cnet_isa_47359872b1 (IsA computer expensive) (STV 1.0 0.9091)) +(: cnet_isa_4a66d2b086 (IsA computer more_complex_than_pencil) (STV 1.0 0.9091)) +(: cnet_isa_2c4b1a319e (IsA computer_game fun) (STV 1.0 0.9454)) +(: cnet_isa_e0d2f78b01 (IsA computer_programming difficult) (STV 1.0 0.9091)) +(: cnet_isa_e70533f7b4 (IsA computer_virus dangerous) (STV 1.0 0.9091)) +(: cnet_isa_b2396f5539 (IsA computer fun) (STV 1.0 0.9091)) +(: cnet_isa_7a7558c56b (IsA concert very_loud) (STV 1.0 0.9091)) +(: cnet_isa_2a4b4491a2 (IsA conservative right_wing) (STV 1.0 0.9091)) +(: cnet_isa_825c44a587 (IsA constipation unhealthy) (STV 1.0 0.9339)) +(: cnet_isa_90dc5766f8 (IsA cooky sweet) (STV 1.0 0.9572)) +(: cnet_isa_53aca321da (IsA country_of_canada north_of_united_state) (STV 1.0 0.9091)) +(: cnet_isa_b823dbe438 (IsA couple two) (STV 1.0 0.9454)) +(: cnet_isa_377d5aa1f0 (IsA couple happy) (STV 1.0 0.9091)) +(: cnet_isa_e471106427 (IsA court_cas classified_as_criminal_cas) (STV 1.0 0.9091)) +(: cnet_isa_a5d9ab5d1f (IsA cow innocent) (STV 1.0 0.9091)) +(: cnet_isa_2140051211 (IsA cruelty bad) (STV 1.0 0.9091)) +(: cnet_isa_175fc92366 (IsA cry_of_child bad) (STV 1.0 0.9091)) +(: cnet_isa_6926cc62b4 (IsA cube six_sided) (STV 1.0 0.9339)) +(: cnet_isa_c8f49cf0ef (IsA curry spicy) (STV 1.0 0.9091)) +(: cnet_isa_0d9c8547c4 (IsA cutting_artichoke best_done_with_serrated_knife) (STV 1.0 0.9091)) +(: cnet_isa_0ccb08d1b6 (IsA dandelion edible) (STV 1.0 0.9091)) +(: cnet_isa_237799d8ae (IsA dartboard round) (STV 1.0 0.9091)) +(: cnet_isa_6d9ac470aa (IsA day bright) (STV 1.0 0.9091)) +(: cnet_isa_3b9dcc89ea (IsA death inevitable) (STV 1.0 0.9454)) +(: cnet_isa_e64bd56f8d (IsA democrat left_wing) (STV 1.0 0.9091)) +(: cnet_isa_9100964d4d (IsA depression depressing) (STV 1.0 0.9091)) +(: cnet_isa_bd1263d3ae (IsA desert dry) (STV 1.0 0.9339)) +(: cnet_isa_ad6375d8d7 (IsA design floral) (STV 1.0 0.9091)) +(: cnet_isa_5f591a2622 (IsA diamond clear) (STV 1.0 0.9091)) +(: cnet_isa_6c2e04e732 (IsA diamond harder_than_glass) (STV 1.0 0.9091)) +(: cnet_isa_222a7c96c0 (IsA diamond expensive) (STV 1.0 0.9572)) +(: cnet_isa_79350ffe46 (IsA diamond pretty) (STV 1.0 0.9572)) +(: cnet_isa_d0463f07c9 (IsA diamond rare) (STV 1.0 0.9339)) +(: cnet_isa_b50cafaa5e (IsA disaster bad) (STV 1.0 0.9091)) +(: cnet_isa_a198e02d8c (IsA diseas contagious) (STV 1.0 0.9091)) +(: cnet_isa_2f376ad825 (IsA disk round) (STV 1.0 0.9454)) +(: cnet_isa_9b5b49c930 (IsA divided_by_zero infinite) (STV 1.0 0.9091)) +(: cnet_isa_a6c4b835dc (IsA dna short_for_deoxyribonucleic_acid) (STV 1.0 0.9339)) +(: cnet_isa_e8de69821a (IsA doctor well_respected) (STV 1.0 0.9339)) +(: cnet_isa_b9edbef235 (IsA doctor_can_study_whether_drug effective) (STV 1.0 0.9091)) +(: cnet_isa_04d151ccf1 (IsA dodo extinct) (STV 1.0 0.9339)) +(: cnet_isa_1d655fd9c5 (IsA doesn_t short_for_doe_not) (STV 1.0 0.9091)) +(: cnet_isa_2ca6f301b2 (IsA dog black) (STV 1.0 0.9091)) +(: cnet_isa_63cedda3ea (IsA dog fun) (STV 1.0 0.9339)) +(: cnet_isa_e0420685a5 (IsA dog faithful) (STV 1.0 0.9091)) +(: cnet_isa_f533d90795 (IsA dog found_outside) (STV 1.0 0.9339)) +(: cnet_isa_2fe6b89061 (IsA dog friendly) (STV 1.0 0.9339)) +(: cnet_isa_5a253a1ca5 (IsA dog very_loyal) (STV 1.0 0.9719)) +(: cnet_isa_6db8a6f946 (IsA dog very_smart) (STV 1.0 0.9339)) +(: cnet_isa_ff9d5bf83f (IsA dog_howl_when sad) (STV 1.0 0.9091)) +(: cnet_isa_5f62791147 (IsA dolphin similar_in_size_to_human) (STV 1.0 0.9091)) +(: cnet_isa_00093ed3f8 (IsA domain_name_system abbreviated_to_dns) (STV 1.0 0.9091)) +(: cnet_isa_36c03e2022 (IsA drawstring_bag open_or_closed) (STV 1.0 0.9091)) +(: cnet_isa_fb6fd26530 (IsA dream_occur_when asleep) (STV 1.0 0.9339)) +(: cnet_isa_64fd2d943d (IsA dried_tortilla rigid) (STV 1.0 0.9091)) +(: cnet_isa_ecd0a8c068 (IsA drinking_alcohol_and_then_driving bad) (STV 1.0 0.9091)) +(: cnet_isa_f859ab2548 (IsA driving dangerous) (STV 1.0 0.9608)) +(: cnet_isa_92eac0fb55 (IsA driving deadly) (STV 1.0 0.9091)) +(: cnet_isa_0af5885b1a (IsA dung term_for_shit) (STV 1.0 0.9091)) +(: cnet_isa_85150d8011 (IsA each_person unique) (STV 1.0 0.9091)) +(: cnet_isa_a876bb1685 (IsA earth finite) (STV 1.0 0.9091)) +(: cnet_isa_288b66c9ba (IsA earth round_like_ball) (STV 1.0 0.9091)) +(: cnet_isa_01c4c7bc79 (IsA earth spherical) (STV 1.0 0.9707)) +(: cnet_isa_119d002ebc (IsA earth_core molten_rock) (STV 1.0 0.9091)) +(: cnet_isa_b60165bc1a (IsA eating satisfying) (STV 1.0 0.9454)) +(: cnet_isa_ea87cac7c9 (IsA eating_fast_food unhealthy) (STV 1.0 0.9091)) +(: cnet_isa_df16d1773e (IsA egg round) (STV 1.0 0.9091)) +(: cnet_isa_457880bc00 (IsA egg good_for_food) (STV 1.0 0.9091)) +(: cnet_isa_7eb44bd72f (IsA egg high_in_cholesterol) (STV 1.0 0.9454)) +(: cnet_isa_347451cea8 (IsA eiffel_tower tall) (STV 1.0 0.9339)) +(: cnet_isa_52d925d126 (IsA eighth_month_of_year august) (STV 1.0 0.9091)) +(: cnet_isa_2ba9d56a9b (IsA electricity dangerous) (STV 1.0 0.9454)) +(: cnet_isa_3123a7a381 (IsA elephant very_big) (STV 1.0 0.9572)) +(: cnet_isa_c72696fb16 (IsA elmer_s_glue white) (STV 1.0 0.9091)) +(: cnet_isa_090ed90e5c (IsA elvis dead) (STV 1.0 0.9339)) +(: cnet_isa_4394a0cf96 (IsA emerald green) (STV 1.0 0.9339)) +(: cnet_isa_7f41173531 (IsA emotion pleasant) (STV 1.0 0.9339)) +(: cnet_isa_57b50b871c (IsA enthusiasm contagious) (STV 1.0 0.9091)) +(: cnet_isa_1cf6c320e9 (IsA epileptic_fit involuntary) (STV 1.0 0.9091)) +(: cnet_isa_ee13742cdd (IsA equality_for_everyone good) (STV 1.0 0.9091)) +(: cnet_isa_63ac1f0f24 (IsA erection pleasurable) (STV 1.0 0.9091)) +(: cnet_isa_fad46fd0d8 (IsA esperanto easy_to_learn_for_european) (STV 1.0 0.9091)) +(: cnet_isa_5f10c90f5f (IsA every_person unique) (STV 1.0 0.9091)) +(: cnet_isa_fead08f862 (IsA every_snowflake unique) (STV 1.0 0.9524)) +(: cnet_isa_434c11a8fc (IsA everyone afraid_of) (STV 1.0 0.9454)) +(: cnet_isa_c0302e7641 (IsA everyone different) (STV 1.0 0.9091)) +(: cnet_isa_ac4c4ab6f4 (IsA everything_know wrong) (STV 1.0 0.9091)) +(: cnet_isa_260d6ba7af (IsA evil bad) (STV 1.0 0.9339)) +(: cnet_isa_79830fe549 (IsA ex_girlfriend annoying) (STV 1.0 0.9091)) +(: cnet_isa_e9dff136a0 (IsA examination_table hard) (STV 1.0 0.9091)) +(: cnet_isa_4a9638de5c (IsA excercise good) (STV 1.0 0.9091)) +(: cnet_isa_bca3e598a3 (IsA excess bad) (STV 1.0 0.9091)) +(: cnet_isa_b3d099d569 (IsA exercise fun) (STV 1.0 0.9091)) +(: cnet_isa_23a87c9862 (IsA exercise good_for_body) (STV 1.0 0.9091)) +(: cnet_isa_58d906e1f1 (IsA exercise very_good_for) (STV 1.0 0.9677)) +(: cnet_isa_31afca157b (IsA explosive dangerous) (STV 1.0 0.9608)) +(: cnet_isa_376191c490 (IsA eye blue) (STV 1.0 0.9454)) +(: cnet_isa_6e001925a2 (IsA eye brown) (STV 1.0 0.9454)) +(: cnet_isa_af55a61810 (IsA eye green) (STV 1.0 0.9091)) +(: cnet_isa_d9a0439e4e (IsA fact true) (STV 1.0 0.9091)) +(: cnet_isa_2426aa61b2 (IsA family nice) (STV 1.0 0.9339)) +(: cnet_isa_38d163ccc1 (IsA fan weird) (STV 1.0 0.9091)) +(: cnet_isa_deccfe6f58 (IsA fart smelly) (STV 1.0 0.9091)) +(: cnet_isa_41b41c6d5f (IsA feather light) (STV 1.0 0.9091)) +(: cnet_isa_3f369256d9 (IsA feline lazy) (STV 1.0 0.9091)) +(: cnet_isa_875f72179c (IsA find_outside dirt) (STV 1.0 0.9091)) +(: cnet_isa_39fce61fcf (IsA find_outside nature) (STV 1.0 0.9454)) +(: cnet_isa_322c5b9dca (IsA find_underground rock) (STV 1.0 0.9091)) +(: cnet_isa_955e528be1 (IsA find_underground water) (STV 1.0 0.9339)) +(: cnet_isa_53397aba2a (IsA find_underwater coral) (STV 1.0 0.9454)) +(: cnet_isa_1ed23729fe (IsA find_underwater water) (STV 1.0 0.9091)) +(: cnet_isa_bd8e14f162 (IsA finishing_job satisfying) (STV 1.0 0.9091)) +(: cnet_isa_dca0c6a034 (IsA fire hot) (STV 1.0 0.9091)) +(: cnet_isa_0482e69381 (IsA fire useful) (STV 1.0 0.9339)) +(: cnet_isa_5083152778 (IsA fire very_useful) (STV 1.0 0.9454)) +(: cnet_isa_645f0c0417 (IsA fish eaten_raw) (STV 1.0 0.9091)) +(: cnet_isa_f0b6aa0a71 (IsA fish striped) (STV 1.0 0.9339)) +(: cnet_isa_a9c8398e25 (IsA flagrant_crime scandalous) (STV 1.0 0.9091)) +(: cnet_isa_0f0d58fb9a (IsA flame hot) (STV 1.0 0.9339)) +(: cnet_isa_35b8b5b8f6 (IsA floor flat) (STV 1.0 0.9091)) +(: cnet_isa_1ba71819c1 (IsA floppy_disk obsolete) (STV 1.0 0.9091)) +(: cnet_isa_d327cb6fcd (IsA floss wound_up_in_dispenser) (STV 1.0 0.9091)) +(: cnet_isa_3bd69c2a87 (IsA flower alive) (STV 1.0 0.9091)) +(: cnet_isa_af20b6ba66 (IsA flower fragrant) (STV 1.0 0.9454)) +(: cnet_isa_a13253063a (IsA flower pink) (STV 1.0 0.9091)) +(: cnet_isa_d5bb306b1d (IsA flower red) (STV 1.0 0.9091)) +(: cnet_isa_588f82219e (IsA flower yellow) (STV 1.0 0.9091)) +(: cnet_isa_71cc23e647 (IsA fly small) (STV 1.0 0.9091)) +(: cnet_isa_28bde782e5 (IsA food edible) (STV 1.0 0.9091)) +(: cnet_isa_8e7a8ec73e (IsA food necessary_to_live) (STV 1.0 0.9091)) +(: cnet_isa_62dabaa8f5 (IsA food unhealthy) (STV 1.0 0.9091)) +(: cnet_isa_892c78a225 (IsA fortune_in_cooky just_for_fun) (STV 1.0 0.9339)) +(: cnet_isa_0565989143 (IsA frisbee round) (STV 1.0 0.9339)) +(: cnet_isa_ffee5e42c3 (IsA frog green) (STV 1.0 0.9091)) +(: cnet_isa_776f9cde35 (IsA frozen_water ice) (STV 1.0 0.9454)) +(: cnet_isa_9a066c3852 (IsA fruit good_for) (STV 1.0 0.9693)) +(: cnet_isa_3ab2dd8c2b (IsA fruit good_for_health) (STV 1.0 0.9677)) +(: cnet_isa_62633ac295 (IsA fruit sour) (STV 1.0 0.9091)) +(: cnet_isa_2544f46999 (IsA fruit edible) (STV 1.0 0.9091)) +(: cnet_isa_640463f496 (IsA fruit good_to_eat) (STV 1.0 0.9091)) +(: cnet_isa_b54374e871 (IsA fun enjoyable) (STV 1.0 0.9091)) +(: cnet_isa_a4c2131c9b (IsA fungus_gnat annoying) (STV 1.0 0.9091)) +(: cnet_isa_33d7c2b6fa (IsA game fun_to_play) (STV 1.0 0.9091)) +(: cnet_isa_9256bb9b14 (IsA game played_outside) (STV 1.0 0.9091)) +(: cnet_isa_d586521f05 (IsA gas short_for_gasoline) (STV 1.0 0.9454)) +(: cnet_isa_bec8ec28a0 (IsA gasoline flammable) (STV 1.0 0.9572)) +(: cnet_isa_c9d3cadd27 (IsA gel sticky) (STV 1.0 0.9091)) +(: cnet_isa_207dbaadea (IsA genital very_entertaining) (STV 1.0 0.9091)) +(: cnet_isa_4ffe65a334 (IsA gentelman male) (STV 1.0 0.9339)) +(: cnet_isa_f4a3543663 (IsA georgia south_of_south_carolina) (STV 1.0 0.9091)) +(: cnet_isa_2e2986e23f (IsA german_shepard_puppy very_cute) (STV 1.0 0.9091)) +(: cnet_isa_0b68a291c3 (IsA getting_hired good) (STV 1.0 0.9091)) +(: cnet_isa_a3571d9083 (IsA getting_stabbed_with_knife sharp) (STV 1.0 0.9339)) +(: cnet_isa_7844a2e540 (IsA gift free) (STV 1.0 0.9091)) +(: cnet_isa_a52a2cc745 (IsA giraffe male) (STV 1.0 0.9091)) +(: cnet_isa_bf71f59239 (IsA giraffe native_to_africa) (STV 1.0 0.9091)) +(: cnet_isa_29fa714f39 (IsA glass clean) (STV 1.0 0.9091)) +(: cnet_isa_9e07b23dd2 (IsA glass clear) (STV 1.0 0.9524)) +(: cnet_isa_a466ec813e (IsA glass dirty) (STV 1.0 0.9091)) +(: cnet_isa_9261367f7e (IsA glass half_empty) (STV 1.0 0.9091)) +(: cnet_isa_d388ba0a8b (IsA glass recyclable) (STV 1.0 0.9524)) +(: cnet_isa_53635672ac (IsA glass very_fragile) (STV 1.0 0.9454)) +(: cnet_isa_fcd6f444f6 (IsA globe round) (STV 1.0 0.9339)) +(: cnet_isa_7f38b68455 (IsA glue sticky) (STV 1.0 0.9740)) +(: cnet_isa_fe4fdb7ee5 (IsA god forgiving) (STV 1.0 0.9091)) +(: cnet_isa_5123ae654e (IsA god glorified_in_christianity) (STV 1.0 0.9454)) +(: cnet_isa_683ea4722f (IsA golfing expensive) (STV 1.0 0.9091)) +(: cnet_isa_dd964a72c7 (IsA good_manner important) (STV 1.0 0.9091)) +(: cnet_isa_f9ff6a1c51 (IsA government corrupt) (STV 1.0 0.9339)) +(: cnet_isa_0a06799956 (IsA grain_of_sand very_small) (STV 1.0 0.9636)) +(: cnet_isa_670e6a63b6 (IsA gross_domestic_product abbreviated_to_gdp) (STV 1.0 0.9091)) +(: cnet_isa_dec12539cd (IsA groucho_marx dead) (STV 1.0 0.9339)) +(: cnet_isa_4dc09c2190 (IsA gunfire lethal) (STV 1.0 0.9091)) +(: cnet_isa_96f6f0cc00 (IsA gun dangerous) (STV 1.0 0.9339)) +(: cnet_isa_00b2d1e00c (IsA gun very_dangerous) (STV 1.0 0.9677)) +(: cnet_isa_6c3a9d8014 (IsA gymnastic good_for_body) (STV 1.0 0.9091)) +(: cnet_isa_768b4fa385 (IsA hair long_or_short) (STV 1.0 0.9091)) +(: cnet_isa_88bfd25441 (IsA hair only_on_mammal) (STV 1.0 0.9091)) +(: cnet_isa_c096bd8eb9 (IsA hair very_thin) (STV 1.0 0.9091)) +(: cnet_isa_88b496d243 (IsA haircutting_scissor very_sharp) (STV 1.0 0.9339)) +(: cnet_isa_72e1785e12 (IsA hallway dark) (STV 1.0 0.9091)) +(: cnet_isa_f8b7b68d6e (IsA hammer hard) (STV 1.0 0.9091)) +(: cnet_isa_91e1694161 (IsA handle for_gripping) (STV 1.0 0.9091)) +(: cnet_isa_8c527e1aec (IsA hand very_useful) (STV 1.0 0.9091)) +(: cnet_isa_dded2c9d5a (IsA hard_packed_snow slippery) (STV 1.0 0.9091)) +(: cnet_isa_6da4269f4a (IsA hardhat red) (STV 1.0 0.9091)) +(: cnet_isa_f86c148ef2 (IsA harmonica annoying) (STV 1.0 0.9091)) +(: cnet_isa_9eb3d6d988 (IsA harry_potter fictional) (STV 1.0 0.9091)) +(: cnet_isa_d0ed0f9ad7 (IsA harsh_sound annoying) (STV 1.0 0.9091)) +(: cnet_isa_8a855710f2 (IsA hat just_for_fun) (STV 1.0 0.9091)) +(: cnet_isa_e5c14adae4 (IsA having_fight dangerous) (STV 1.0 0.9091)) +(: cnet_isa_1080ffe931 (IsA having_period cramping) (STV 1.0 0.9339)) +(: cnet_isa_ec582ef888 (IsA healthy_grass green) (STV 1.0 0.9091)) +(: cnet_isa_eb766d2dbf (IsA high_blood_pressure bad) (STV 1.0 0.9091)) +(: cnet_isa_3e58364f86 (IsA hitler pure_evil) (STV 1.0 0.9091)) +(: cnet_isa_0e978a07e2 (IsA hitting_another_person bad) (STV 1.0 0.9091)) +(: cnet_isa_635fd54fe6 (IsA horseback_riding fun) (STV 1.0 0.9454)) +(: cnet_isa_1b0e498c1a (IsA hors fast) (STV 1.0 0.9454)) +(: cnet_isa_0eb450e7a2 (IsA hors very_good_at_jumping) (STV 1.0 0.9454)) +(: cnet_isa_4eff00e42d (IsA hot_air less_dense_than_cold_air) (STV 1.0 0.9339)) +(: cnet_isa_e15464a829 (IsA hot_dog bad_for) (STV 1.0 0.9091)) +(: cnet_isa_611778c5d0 (IsA housework boring) (STV 1.0 0.9091)) +(: cnet_isa_4066d4c47b (IsA huddersfield urban) (STV 1.0 0.9091)) +(: cnet_isa_32fd6ec9e5 (IsA human good) (STV 1.0 0.9091)) +(: cnet_isa_91bc259424 (IsA human_eye very_delicate) (STV 1.0 0.9091)) +(: cnet_isa_5572346e18 (IsA human bald) (STV 1.0 0.9091)) +(: cnet_isa_b9b86e4e55 (IsA human emotional) (STV 1.0 0.9091)) +(: cnet_isa_e26eab409c (IsA human male) (STV 1.0 0.9091)) +(: cnet_isa_b9da3b7539 (IsA human male_or_female) (STV 1.0 0.9091)) +(: cnet_isa_571e5e30b6 (IsA human selfish) (STV 1.0 0.9091)) +(: cnet_isa_a47222667d (IsA human very_adaptable) (STV 1.0 0.9339)) +(: cnet_isa_da405c2c2c (IsA human warm_blooded) (STV 1.0 0.9091)) +(: cnet_isa_88412c0e2d (IsA humor subjective) (STV 1.0 0.9339)) +(: cnet_isa_11fb035fde (IsA hunger painful) (STV 1.0 0.9091)) +(: cnet_isa_fb60b2f137 (IsA hurting_other_people bad) (STV 1.0 0.9339)) +(: cnet_isa_4b58797918 (IsA hurting_yourself bad) (STV 1.0 0.9091)) +(: cnet_isa_0bfaf7caac (IsA ice hard) (STV 1.0 0.9524)) +(: cnet_isa_47f0b0d948 (IsA ice less_dense_than_water) (STV 1.0 0.9339)) +(: cnet_isa_62eb8e78db (IsA ice melting) (STV 1.0 0.9091)) +(: cnet_isa_bf5f585ac0 (IsA ice solid) (STV 1.0 0.9572)) +(: cnet_isa_68bb335cb9 (IsA ice_cream served_cold) (STV 1.0 0.9091)) +(: cnet_isa_de352daa71 (IsA icy_road slippery) (STV 1.0 0.9091)) +(: cnet_isa_1487245e2f (IsA ignorance harmful_to_society) (STV 1.0 0.9091)) +(: cnet_isa_db15fab267 (IsA imprisonment harmful) (STV 1.0 0.9091)) +(: cnet_isa_c74e0291f8 (IsA in_street_celebration likely_to_find_drug_and_confetti) (STV 1.0 0.9091)) +(: cnet_isa_4251a07fb1 (IsA in_winter cold) (STV 1.0 0.9091)) +(: cnet_isa_4088e2a638 (IsA ink black) (STV 1.0 0.9339)) +(: cnet_isa_23979c28d0 (IsA instruction misleading) (STV 1.0 0.9339)) +(: cnet_isa_1d5e1ead51 (IsA insurance expensive) (STV 1.0 0.9454)) +(: cnet_isa_ab39f4edc5 (IsA interior inside) (STV 1.0 0.9091)) +(: cnet_isa_d1f84ec3bb (IsA internet modern) (STV 1.0 0.9091)) +(: cnet_isa_de779511b1 (IsA iraq next_to_iran) (STV 1.0 0.9091)) +(: cnet_isa_07bd76a5ba (IsA iron heavy) (STV 1.0 0.9091)) +(: cnet_isa_91f1cca285 (IsA isn_t short_for_not) (STV 1.0 0.9091)) +(: cnet_isa_f43f0a7871 (IsA israel full_of_jew) (STV 1.0 0.9454)) +(: cnet_isa_16a5dc89ee (IsA jazz form_of_music) (STV 1.0 0.9339)) +(: cnet_isa_1d04582e09 (IsA jewel ornate) (STV 1.0 0.9091)) +(: cnet_isa_fdbb0e6c8b (IsA joke bad) (STV 1.0 0.9091)) +(: cnet_isa_23d23c1dd8 (IsA killing bad) (STV 1.0 0.9454)) +(: cnet_isa_2d99c56996 (IsA killing wrong) (STV 1.0 0.9524)) +(: cnet_isa_ab2591d349 (IsA kissing good) (STV 1.0 0.9091)) +(: cnet_isa_c8a4b6bbb3 (IsA kissing_furniture weird) (STV 1.0 0.9091)) +(: cnet_isa_874d41c5d9 (IsA kitten annoying) (STV 1.0 0.9091)) +(: cnet_isa_00a0e8c1dd (IsA kitten small) (STV 1.0 0.9091)) +(: cnet_isa_89943ecbdf (IsA knive sharp) (STV 1.0 0.9524)) +(: cnet_isa_b5c3998c95 (IsA lady walking_along_beach_by_herself) (STV 1.0 0.9091)) +(: cnet_isa_fe422b0faf (IsA landmark memorable) (STV 1.0 0.9091)) +(: cnet_isa_5c771c3245 (IsA lava hot) (STV 1.0 0.9339)) +(: cnet_isa_abfcef9dfd (IsA lawn green) (STV 1.0 0.9339)) +(: cnet_isa_872fb8958e (IsA lawyer_work_to_decide_if guilty) (STV 1.0 0.9091)) +(: cnet_isa_8b45399574 (IsA lead toxic) (STV 1.0 0.9091)) +(: cnet_isa_eb0b6b5d95 (IsA lead very_heavy) (STV 1.0 0.9454)) +(: cnet_isa_cd57f3526c (IsA leaf green) (STV 1.0 0.9091)) +(: cnet_isa_0646eaa267 (IsA learning fun) (STV 1.0 0.9524)) +(: cnet_isa_e561db8ff0 (IsA learning very_important) (STV 1.0 0.9091)) +(: cnet_isa_5e20ed5165 (IsA leave green_in_colour) (STV 1.0 0.9091)) +(: cnet_isa_72ee589390 (IsA lecture dull) (STV 1.0 0.9091)) +(: cnet_isa_ef26a6c03f (IsA leisure_and_activity fun) (STV 1.0 0.9339)) +(: cnet_isa_98524b533d (IsA lemon bitter) (STV 1.0 0.9091)) +(: cnet_isa_9b55885391 (IsA liberal left_wing) (STV 1.0 0.9091)) +(: cnet_isa_8e3f7bc3c9 (IsA lie false) (STV 1.0 0.9339)) +(: cnet_isa_f92e626a69 (IsA life finite) (STV 1.0 0.9454)) +(: cnet_isa_fa6f2de035 (IsA life good) (STV 1.0 0.9339)) +(: cnet_isa_325d905b35 (IsA life hard) (STV 1.0 0.9091)) +(: cnet_isa_2f72aa367e (IsA light_speed fast) (STV 1.0 0.9091)) +(: cnet_isa_7a6c1f4816 (IsA lightning hot) (STV 1.0 0.9091)) +(: cnet_isa_8411662c4b (IsA lion native_to_africa) (STV 1.0 0.9091)) +(: cnet_isa_8944447266 (IsA liquid_nitrogen very_cold) (STV 1.0 0.9091)) +(: cnet_isa_14608e5f98 (IsA listening_to_music pleasurable) (STV 1.0 0.9572)) +(: cnet_isa_bda1e3d699 (IsA living hard) (STV 1.0 0.9091)) +(: cnet_isa_27838aba5f (IsA lot_of_plant green) (STV 1.0 0.9091)) +(: cnet_isa_4edc79cff1 (IsA love blind) (STV 1.0 0.9339)) +(: cnet_isa_7b8a588105 (IsA love contagious) (STV 1.0 0.9091)) +(: cnet_isa_de68dd7bd4 (IsA love painful) (STV 1.0 0.9091)) +(: cnet_isa_8e1599f7f8 (IsA love wonderful_and_frightening) (STV 1.0 0.9091)) +(: cnet_isa_5ca049dca0 (IsA lubricant slippery) (STV 1.0 0.9339)) +(: cnet_isa_f2f6f0d5df (IsA luck unpredictable) (STV 1.0 0.9091)) +(: cnet_isa_746235016b (IsA machine mechanical) (STV 1.0 0.9091)) +(: cnet_isa_a00e825226 (IsA magma very_hot) (STV 1.0 0.9091)) +(: cnet_isa_0bceaf03b1 (IsA mailbox_where_mail picked_up_and_delivered) (STV 1.0 0.9091)) +(: cnet_isa_d6529ec399 (IsA mammal warm_blooded) (STV 1.0 0.9339)) +(: cnet_isa_189dcc1b5a (IsA many_basketball_player very_tall) (STV 1.0 0.9091)) +(: cnet_isa_de96a2b952 (IsA many_other_thing blue) (STV 1.0 0.9091)) +(: cnet_isa_62817c7ccf (IsA many_people dishonest) (STV 1.0 0.9091)) +(: cnet_isa_d579f541e6 (IsA marble opaque) (STV 1.0 0.9091)) +(: cnet_isa_69dd2751ca (IsA marble rolling_across_table) (STV 1.0 0.9339)) +(: cnet_isa_25ffd4cbd9 (IsA marble_floor very_hard) (STV 1.0 0.9091)) +(: cnet_isa_e7708809a3 (IsA marijuana illegal) (STV 1.0 0.9524)) +(: cnet_isa_53678b97a3 (IsA marijuana intoxicating) (STV 1.0 0.9091)) +(: cnet_isa_80ee01c700 (IsA masturbation enjoyable) (STV 1.0 0.9339)) +(: cnet_isa_fffc676ef7 (IsA material adaptable) (STV 1.0 0.9091)) +(: cnet_isa_f8b31b4520 (IsA math difficult_for_student) (STV 1.0 0.9339)) +(: cnet_isa_6b6837b709 (IsA math fun) (STV 1.0 0.9339)) +(: cnet_isa_57d53669ba (IsA mathematic useful_in_business) (STV 1.0 0.9091)) +(: cnet_isa_6b613d787d (IsA mean_boss unpleasant) (STV 1.0 0.9091)) +(: cnet_isa_7018a74f67 (IsA meaning_of_life impossible_for_human_to_determine) (STV 1.0 0.9091)) +(: cnet_isa_6e4d815b46 (IsA meaning_of_life meaningless) (STV 1.0 0.9091)) +(: cnet_isa_0fdc97f901 (IsA men_and_women different) (STV 1.0 0.9659)) +(: cnet_isa_c3e1452352 (IsA mental_illness common) (STV 1.0 0.9091)) +(: cnet_isa_c69e003aed (IsA mercury poisonous) (STV 1.0 0.9454)) +(: cnet_isa_278f13e8ac (IsA metal heavy) (STV 1.0 0.9091)) +(: cnet_isa_614a6f0c09 (IsA mexico south_of_united_state) (STV 1.0 0.9659)) +(: cnet_isa_484bea6da7 (IsA mice small) (STV 1.0 0.9339)) +(: cnet_isa_0d5403b38f (IsA mike hungry) (STV 1.0 0.9091)) +(: cnet_isa_2b0eb9f7d5 (IsA milk white) (STV 1.0 0.9572)) +(: cnet_isa_af2ad4f5cb (IsA mind subjective) (STV 1.0 0.9091)) +(: cnet_isa_bc55b8e8a3 (IsA mirror reflective) (STV 1.0 0.9091)) +(: cnet_isa_b3f5d8578f (IsA mistake annoying) (STV 1.0 0.9091)) +(: cnet_isa_0d280842e8 (IsA misunderstanding_between_people normal) (STV 1.0 0.9091)) +(: cnet_isa_8d32408920 (IsA monkey hanging_off_tree) (STV 1.0 0.9091)) +(: cnet_isa_b51319ff55 (IsA monkey hanging_from_tree) (STV 1.0 0.9091)) +(: cnet_isa_f7e48bb3b7 (IsA moon radiant) (STV 1.0 0.9091)) +(: cnet_isa_bcc30e8e16 (IsA most_dog playful) (STV 1.0 0.9339)) +(: cnet_isa_d9b3162ef8 (IsA most_game competitive) (STV 1.0 0.9091)) +(: cnet_isa_45ae81669d (IsA most_government corrupt) (STV 1.0 0.9454)) +(: cnet_isa_4f96bced04 (IsA most_leave green) (STV 1.0 0.9339)) +(: cnet_isa_54848946bf (IsA most_newspaper daily) (STV 1.0 0.9091)) +(: cnet_isa_dde1f63694 (IsA most_rock hard) (STV 1.0 0.9677)) +(: cnet_isa_2379147bcf (IsA most_rock very_hard) (STV 1.0 0.9091)) +(: cnet_isa_c43914cebe (IsA mountain very_large) (STV 1.0 0.9454)) +(: cnet_isa_e81683c8bc (IsA movy excellent) (STV 1.0 0.9454)) +(: cnet_isa_f1566aafe8 (IsA murder illegal) (STV 1.0 0.9091)) +(: cnet_isa_932a2cfc2f (IsA murder wrong) (STV 1.0 0.9091)) +(: cnet_isa_c26f986269 (IsA mushroom good_to_eat) (STV 1.0 0.9339)) +(: cnet_isa_a4fcda0f39 (IsA mushroom poisonous) (STV 1.0 0.9524)) +(: cnet_isa_30372ce0da (IsA music bad) (STV 1.0 0.9091)) +(: cnet_isa_6e5ad6322d (IsA music enjoyable) (STV 1.0 0.9339)) +(: cnet_isa_4650f64c19 (IsA music relaxing) (STV 1.0 0.9677)) +(: cnet_isa_a9cfaccbc7 (IsA music soothing) (STV 1.0 0.9730)) +(: cnet_isa_4c2e311f99 (IsA music sound) (STV 1.0 0.9091)) +(: cnet_isa_84b4976f76 (IsA nature very_hard) (STV 1.0 0.9091)) +(: cnet_isa_f3d3e36bc9 (IsA needle sharp) (STV 1.0 0.9693)) +(: cnet_isa_58252e53dc (IsA needle small) (STV 1.0 0.9454)) +(: cnet_isa_158e9a3e37 (IsA new_experience inevitable) (STV 1.0 0.9091)) +(: cnet_isa_fa647348b3 (IsA newspaper free) (STV 1.0 0.9091)) +(: cnet_isa_179a50b6d3 (IsA newspaper local) (STV 1.0 0.9091)) +(: cnet_isa_18841d6159 (IsA nicotine addictive) (STV 1.0 0.9524)) +(: cnet_isa_f80309a5a9 (IsA nietzsche classified_as_moral_skeptic) (STV 1.0 0.9091)) +(: cnet_isa_22e63cd9c6 (IsA no_two_people alike) (STV 1.0 0.9091)) +(: cnet_isa_4fcd6c52b2 (IsA no_two_snowflake alike) (STV 1.0 0.9572)) +(: cnet_isa_0193b41804 (IsA north_pole cold) (STV 1.0 0.9091)) +(: cnet_isa_d208748922 (IsA not_all_mood_altering_drug harmful) (STV 1.0 0.9091)) +(: cnet_isa_74f0076fe8 (IsA not_all_snake venomous) (STV 1.0 0.9091)) +(: cnet_isa_ee585bddea (IsA number_one second_to_none) (STV 1.0 0.9091)) +(: cnet_isa_e2938b317a (IsA number more_than_one_number) (STV 1.0 0.9091)) +(: cnet_isa_0365d6b308 (IsA ocean_water salty) (STV 1.0 0.9091)) +(: cnet_isa_d0cfcd1730 (IsA ocean deep) (STV 1.0 0.9524)) +(: cnet_isa_c6b24ab749 (IsA ocean very_deep) (STV 1.0 0.9091)) +(: cnet_isa_cfc7937b5b (IsA ocean wet) (STV 1.0 0.9091)) +(: cnet_isa_68226bad0e (IsA oil edible) (STV 1.0 0.9091)) +(: cnet_isa_5ce9ccb40a (IsA oil toxic) (STV 1.0 0.9091)) +(: cnet_isa_8f48fc75af (IsA one_nightly_ritual turning_off_tv) (STV 1.0 0.9091)) +(: cnet_isa_b2d7c5ca33 (IsA one_of_chemical_element silver) (STV 1.0 0.9091)) +(: cnet_isa_1edf31e3dc (IsA one_plus_one two) (STV 1.0 0.9091)) +(: cnet_isa_e03fe90fcc (IsA only_snow_when cold_outside) (STV 1.0 0.9091)) +(: cnet_isa_ad38b5c107 (IsA only_solid_object rigid) (STV 1.0 0.9091)) +(: cnet_isa_c01bf96f8a (IsA opera boring) (STV 1.0 0.9339)) +(: cnet_isa_93cd64c72a (IsA opposite_of_hostile friendly) (STV 1.0 0.9091)) +(: cnet_isa_14c8e77b0a (IsA opposite_of_tactful blunt) (STV 1.0 0.9091)) +(: cnet_isa_4d5111cf61 (IsA opposite_of_tasty bland) (STV 1.0 0.9091)) +(: cnet_isa_174eb6c92b (IsA orange sweet) (STV 1.0 0.9091)) +(: cnet_isa_67bed66ea8 (IsA orgasm very_pleasurable) (STV 1.0 0.9524)) +(: cnet_isa_fa51b6b2f4 (IsA outer_space infinite) (STV 1.0 0.9091)) +(: cnet_isa_5779eb2ec6 (IsA oven very_hot) (STV 1.0 0.9524)) +(: cnet_isa_91f7bfba2b (IsA pain bad) (STV 1.0 0.9091)) +(: cnet_isa_ba733816d1 (IsA pain unpleasant) (STV 1.0 0.9091)) +(: cnet_isa_818589b48b (IsA paint coloured) (STV 1.0 0.9091)) +(: cnet_isa_024f3408b8 (IsA paper crumpled) (STV 1.0 0.9659)) +(: cnet_isa_acd3185ade (IsA paper recyclable) (STV 1.0 0.9659)) +(: cnet_isa_5010b39e37 (IsA paperweight heavy) (STV 1.0 0.9091)) +(: cnet_isa_9b251c4b48 (IsA parakeet green) (STV 1.0 0.9091)) +(: cnet_isa_e1e8058357 (IsA parent older_than_children) (STV 1.0 0.9091)) +(: cnet_isa_e03534b8ec (IsA partner gay) (STV 1.0 0.9339)) +(: cnet_isa_d8aacbbbad (IsA patient suffering_from_disease) (STV 1.0 0.9091)) +(: cnet_isa_d72f789079 (IsA pavement hard) (STV 1.0 0.9339)) +(: cnet_isa_5fccd1f7fb (IsA peace better_than_war) (STV 1.0 0.9339)) +(: cnet_isa_dc64bba482 (IsA peache canned) (STV 1.0 0.9454)) +(: cnet_isa_9043574844 (IsA peanut_butter sticky) (STV 1.0 0.9454)) +(: cnet_isa_363aa10704 (IsA peopel_pout_if unhappy) (STV 1.0 0.9091)) +(: cnet_isa_7bcfa6eda1 (IsA people afraid_of_death) (STV 1.0 0.9091)) +(: cnet_isa_599e1c9828 (IsA people allergic_to_bee_sting) (STV 1.0 0.9091)) +(: cnet_isa_d3fd140848 (IsA people allergic_to_poison_ivy) (STV 1.0 0.9091)) +(: cnet_isa_ef1cb40db2 (IsA people altruistic) (STV 1.0 0.9454)) +(: cnet_isa_0c95ff0d5e (IsA people cruel) (STV 1.0 0.9572)) +(: cnet_isa_06ada86749 (IsA people dangerous) (STV 1.0 0.9454)) +(: cnet_isa_853331d9b0 (IsA people deceptive) (STV 1.0 0.9524)) +(: cnet_isa_5c52a0d68a (IsA people different) (STV 1.0 0.9339)) +(: cnet_isa_4387f906e3 (IsA people generous) (STV 1.0 0.9454)) +(: cnet_isa_1eb9f04bba (IsA people good) (STV 1.0 0.9524)) +(: cnet_isa_6579f70e4d (IsA people greedy) (STV 1.0 0.9454)) +(: cnet_isa_0fb6e8c611 (IsA people happy) (STV 1.0 0.9454)) +(: cnet_isa_ee49d7398f (IsA people honest) (STV 1.0 0.9091)) +(: cnet_isa_b4fcff9c79 (IsA people human) (STV 1.0 0.9572)) +(: cnet_isa_a4b2676260 (IsA people ignorant) (STV 1.0 0.9636)) +(: cnet_isa_a9b99fd6b2 (IsA people insane) (STV 1.0 0.9339)) +(: cnet_isa_d45647dd58 (IsA people japanese) (STV 1.0 0.9091)) +(: cnet_isa_c243821995 (IsA people jealous) (STV 1.0 0.9091)) +(: cnet_isa_7253b52554 (IsA people kind) (STV 1.0 0.9608)) +(: cnet_isa_0131eccc5c (IsA people lazy) (STV 1.0 0.9091)) +(: cnet_isa_ca83c3e794 (IsA people male_or_female) (STV 1.0 0.9091)) +(: cnet_isa_b69ef0975d (IsA people mean) (STV 1.0 0.9572)) +(: cnet_isa_23c8d7c587 (IsA people neurotic) (STV 1.0 0.9091)) +(: cnet_isa_983ffb1dd4 (IsA people nice) (STV 1.0 0.9339)) +(: cnet_isa_1c3b682006 (IsA people ridiculous) (STV 1.0 0.9091)) +(: cnet_isa_90f4ad1764 (IsA people sad) (STV 1.0 0.9091)) +(: cnet_isa_2fee648cb6 (IsA people selfish) (STV 1.0 0.9339)) +(: cnet_isa_843e2b9367 (IsA people silly) (STV 1.0 0.9524)) +(: cnet_isa_b3e5ac7206 (IsA people strange) (STV 1.0 0.9572)) +(: cnet_isa_1dde72f70b (IsA people stupid) (STV 1.0 0.9730)) +(: cnet_isa_8fa45d85ff (IsA people thin) (STV 1.0 0.9091)) +(: cnet_isa_145867b75a (IsA people unique) (STV 1.0 0.9339)) +(: cnet_isa_ff000000f3 (IsA people weird) (STV 1.0 0.9636)) +(: cnet_isa_5d024b4d07 (IsA people_believe_tv harmful) (STV 1.0 0.9091)) +(: cnet_isa_222661edf9 (IsA people_like_flower_because pretty) (STV 1.0 0.9339)) +(: cnet_isa_b414534bec (IsA people_often_shout_when angry) (STV 1.0 0.9091)) +(: cnet_isa_b9ce1cc559 (IsA people_smile_when happy) (STV 1.0 0.9339)) +(: cnet_isa_65e42b28a9 (IsA people_think_coffee unhealthy) (STV 1.0 0.9091)) +(: cnet_isa_5aa5d6a156 (IsA pepper green) (STV 1.0 0.9091)) +(: cnet_isa_477d548d0b (IsA person guilty_of_crime) (STV 1.0 0.9339)) +(: cnet_isa_fe7a97c597 (IsA person self_interested) (STV 1.0 0.9091)) +(: cnet_isa_71bd62bbbb (IsA person selfish) (STV 1.0 0.9091)) +(: cnet_isa_282fb8af88 (IsA person_can_dream flying) (STV 1.0 0.9454)) +(: cnet_isa_8cfc3e3e4b (IsA person_can_realise wrong) (STV 1.0 0.9091)) +(: cnet_isa_1da9057d0a (IsA person_want_food_when hungry) (STV 1.0 0.9454)) +(: cnet_isa_9b2d50e3c3 (IsA person_who_commit_crime guilty) (STV 1.0 0.9091)) +(: cnet_isa_e9eca0130f (IsA peter sick) (STV 1.0 0.9091)) +(: cnet_isa_1e58c23868 (IsA php free) (STV 1.0 0.9091)) +(: cnet_isa_1a292a85bf (IsA pi endless) (STV 1.0 0.9091)) +(: cnet_isa_bcdb526839 (IsA picture artistic) (STV 1.0 0.9091)) +(: cnet_isa_3d732c234b (IsA piece one_part_of) (STV 1.0 0.9091)) +(: cnet_isa_0e3ae3b597 (IsA pie baked_in_oven) (STV 1.0 0.9091)) +(: cnet_isa_f31cc542f9 (IsA pilot bad) (STV 1.0 0.9091)) +(: cnet_isa_d687fe2039 (IsA pistol dangerous) (STV 1.0 0.9091)) +(: cnet_isa_1597302638 (IsA pizza baked_in_oven) (STV 1.0 0.9339)) +(: cnet_isa_c35fbb2c8c (IsA pizza flat_and_round) (STV 1.0 0.9091)) +(: cnet_isa_5267cd1d34 (IsA plain flat) (STV 1.0 0.9091)) +(: cnet_isa_dac1fa9125 (IsA plane_ticket expensive) (STV 1.0 0.9091)) +(: cnet_isa_f6cf5ab88a (IsA planet_earth round) (STV 1.0 0.9693)) +(: cnet_isa_6c623f302c (IsA planet large) (STV 1.0 0.9524)) +(: cnet_isa_2381fffc6d (IsA planet round) (STV 1.0 0.9524)) +(: cnet_isa_5d7da8803b (IsA plant alive) (STV 1.0 0.9339)) +(: cnet_isa_e9d1d0178f (IsA plant good_for_environment) (STV 1.0 0.9339)) +(: cnet_isa_291c64a72d (IsA plant poisonous) (STV 1.0 0.9572)) +(: cnet_isa_ebca26d28c (IsA play fun) (STV 1.0 0.9091)) +(: cnet_isa_bae034b691 (IsA playing fun) (STV 1.0 0.9339)) +(: cnet_isa_eb2f5ff0ff (IsA playing_dart fun) (STV 1.0 0.9091)) +(: cnet_isa_778d0d86ed (IsA plutonium radioactive) (STV 1.0 0.9339)) +(: cnet_isa_33a1c1bcd7 (IsA political_ideology bad) (STV 1.0 0.9091)) +(: cnet_isa_e59bc7525d (IsA politician corrupt) (STV 1.0 0.9091)) +(: cnet_isa_6e22189765 (IsA poop smelly) (STV 1.0 0.9091)) +(: cnet_isa_e28eba05f0 (IsA poor_people unhappy) (STV 1.0 0.9091)) +(: cnet_isa_f9b2a24d10 (IsA pope catholic) (STV 1.0 0.9091)) +(: cnet_isa_48eebfba3e (IsA postpartum_depression treatable) (STV 1.0 0.9091)) +(: cnet_isa_885dbbf23e (IsA prevention better_than_cure) (STV 1.0 0.9091)) +(: cnet_isa_71244755e2 (IsA privacy essential_to_healthy_psyche) (STV 1.0 0.9091)) +(: cnet_isa_c8443133c0 (IsA pub short_for_public_house) (STV 1.0 0.9339)) +(: cnet_isa_52a0252d20 (IsA pumpkin orange) (STV 1.0 0.9524)) +(: cnet_isa_1115744c43 (IsA pupil_of_human_eye black) (STV 1.0 0.9091)) +(: cnet_isa_32a775a50a (IsA puppy_and_children cute) (STV 1.0 0.9339)) +(: cnet_isa_ece69baccb (IsA quarter_note one_beat) (STV 1.0 0.9091)) +(: cnet_isa_49872d7529 (IsA queen female) (STV 1.0 0.9091)) +(: cnet_isa_65ac5c73e6 (IsA racism bad) (STV 1.0 0.9339)) +(: cnet_isa_2eebb7e35e (IsA rain water_falling_from_sky) (STV 1.0 0.9339)) +(: cnet_isa_f9e8751efe (IsA rain wet) (STV 1.0 0.9572)) +(: cnet_isa_4b3a0f5054 (IsA rape evil_and_wrong) (STV 1.0 0.9091)) +(: cnet_isa_fee91a7f0e (IsA razor sharp) (STV 1.0 0.9091)) +(: cnet_isa_0437d07eb7 (IsA reading fun) (STV 1.0 0.9454)) +(: cnet_isa_5a44c1d8a7 (IsA reading_book fun) (STV 1.0 0.9339)) +(: cnet_isa_4dcc841b1a (IsA religion confusing) (STV 1.0 0.9454)) +(: cnet_isa_2842d8c080 (IsA repetition boring) (STV 1.0 0.9091)) +(: cnet_isa_ebc5846a22 (IsA revolver dangerous) (STV 1.0 0.9091)) +(: cnet_isa_a37a915a40 (IsA revolver one_kind_of_pistol) (STV 1.0 0.9339)) +(: cnet_isa_f1024b2096 (IsA riding_hors dangerous) (STV 1.0 0.9454)) +(: cnet_isa_73c5f0dce1 (IsA ripe_strawberry red) (STV 1.0 0.9339)) +(: cnet_isa_a8cb2b9b70 (IsA rock heavy) (STV 1.0 0.9339)) +(: cnet_isa_b789e77394 (IsA rocking_chair relaxing) (STV 1.0 0.9454)) +(: cnet_isa_15303ac936 (IsA rock rigid) (STV 1.0 0.9091)) +(: cnet_isa_c10e7486f5 (IsA rollercoaster fun) (STV 1.0 0.9339)) +(: cnet_isa_e7ce610921 (IsA room upstair_from_garage) (STV 1.0 0.9091)) +(: cnet_isa_c1fdc7098e (IsA room round) (STV 1.0 0.9091)) +(: cnet_isa_8ef574c987 (IsA rpg fun) (STV 1.0 0.9091)) +(: cnet_isa_93a474934c (IsA rubber_stamp opaque) (STV 1.0 0.9091)) +(: cnet_isa_7e0f2e993c (IsA ruby red) (STV 1.0 0.9339)) +(: cnet_isa_360ba2ea84 (IsA running_errand boring) (STV 1.0 0.9091)) +(: cnet_isa_de2e40477d (IsA running_for_long_time boring) (STV 1.0 0.9091)) +(: cnet_isa_b53431b791 (IsA sailboat powered_by_wind) (STV 1.0 0.9339)) +(: cnet_isa_d40278da85 (IsA sailing fun) (STV 1.0 0.9659)) +(: cnet_isa_7884e4f8c8 (IsA salt bad_for) (STV 1.0 0.9091)) +(: cnet_isa_4c5da88e6d (IsA sand gritty) (STV 1.0 0.9454)) +(: cnet_isa_835441c5c2 (IsA scamper dead) (STV 1.0 0.9091)) +(: cnet_isa_e0cb17e34b (IsA school boring) (STV 1.0 0.9339)) +(: cnet_isa_52b3422b51 (IsA scissor sharp) (STV 1.0 0.9091)) +(: cnet_isa_042bd2e11c (IsA sea full_of_water) (STV 1.0 0.9091)) +(: cnet_isa_f395028a4f (IsA sea wet) (STV 1.0 0.9091)) +(: cnet_isa_9e1807fc88 (IsA sea_water salty) (STV 1.0 0.9339)) +(: cnet_isa_60ab2fec05 (IsA seat more_comfortable_than_other) (STV 1.0 0.9091)) +(: cnet_isa_a2fe7f89d5 (IsA self_adhesive_label sticky_on_one_side) (STV 1.0 0.9091)) +(: cnet_isa_4175faabda (IsA self_adhesive_label very_sticky_on_one_side) (STV 1.0 0.9091)) +(: cnet_isa_825f66e77a (IsA selling_out bad) (STV 1.0 0.9091)) +(: cnet_isa_9b3e9c5038 (IsA sentence false) (STV 1.0 0.9091)) +(: cnet_isa_c135d72f08 (IsA seventy_percent_of_earth_s_surface water) (STV 1.0 0.9091)) +(: cnet_isa_2e684f8179 (IsA sex dirty) (STV 1.0 0.9091)) +(: cnet_isa_ef4970df29 (IsA sex fun) (STV 1.0 0.9800)) +(: cnet_isa_99269dc77a (IsA sex good) (STV 1.0 0.9707)) +(: cnet_isa_c5807fdf77 (IsA sex great) (STV 1.0 0.9091)) +(: cnet_isa_e8545e540e (IsA sex great_fun) (STV 1.0 0.9572)) +(: cnet_isa_352919b3e7 (IsA sex nice) (STV 1.0 0.9608)) +(: cnet_isa_7d36375fbd (IsA sex painful) (STV 1.0 0.9339)) +(: cnet_isa_0fecdc147d (IsA sex pleasant) (STV 1.0 0.9091)) +(: cnet_isa_b20596b77f (IsA sex pleasurable) (STV 1.0 0.9756)) +(: cnet_isa_b9140ecb53 (IsA shadow dark) (STV 1.0 0.9091)) +(: cnet_isa_70b0d2f3d8 (IsA sheet white) (STV 1.0 0.9091)) +(: cnet_isa_f1a0a6763f (IsA shell_of_turtle hard) (STV 1.0 0.9091)) +(: cnet_isa_124609d31f (IsA shore_fly annoying) (STV 1.0 0.9091)) +(: cnet_isa_c174f8992a (IsA silence suspenseful) (STV 1.0 0.9091)) +(: cnet_isa_26830a1147 (IsA simple beautiful) (STV 1.0 0.9091)) +(: cnet_isa_40e24e6a87 (IsA single_cat alone) (STV 1.0 0.9091)) +(: cnet_isa_eca441c8eb (IsA situation grave) (STV 1.0 0.9091)) +(: cnet_isa_6ac8c04b1e (IsA sky blue) (STV 1.0 0.9091)) +(: cnet_isa_5093e99b79 (IsA sky blue_during_day) (STV 1.0 0.9454)) +(: cnet_isa_db8436b1b6 (IsA sky blue_on_clear_day) (STV 1.0 0.9454)) +(: cnet_isa_8a984b2b4e (IsA sky cloudy) (STV 1.0 0.9091)) +(: cnet_isa_863e638957 (IsA sky dark) (STV 1.0 0.9339)) +(: cnet_isa_6375fa275a (IsA sky full_of_star) (STV 1.0 0.9091)) +(: cnet_isa_4c766d2be4 (IsA sky red_at_sunrise_and_sunset) (STV 1.0 0.9091)) +(: cnet_isa_e0b2aaf016 (IsA slavery bad) (STV 1.0 0.9091)) +(: cnet_isa_d3fa3f641c (IsA sliping_and_falling_on_ice bad) (STV 1.0 0.9091)) +(: cnet_isa_1897396286 (IsA small_furry_animal cute) (STV 1.0 0.9091)) +(: cnet_isa_c03b893e98 (IsA smoke dangerous) (STV 1.0 0.9339)) +(: cnet_isa_f8b482dae2 (IsA smoking bad_for) (STV 1.0 0.9524)) +(: cnet_isa_2240aaacef (IsA smoking bad_for_health) (STV 1.0 0.9608)) +(: cnet_isa_d3635e9ef4 (IsA smoking unhealthy) (STV 1.0 0.9339)) +(: cnet_isa_fea1d57cbc (IsA smoking_cigarette bad_for) (STV 1.0 0.9524)) +(: cnet_isa_e45fc083cd (IsA snake dangerous) (STV 1.0 0.9339)) +(: cnet_isa_c84dbd5ddc (IsA sneezing involuntary) (STV 1.0 0.9339)) +(: cnet_isa_0dcd405787 (IsA socially_responsible_investment abbreviated_to_sri) (STV 1.0 0.9091)) +(: cnet_isa_21f8b9c7e1 (IsA solitary_work very_lonely) (STV 1.0 0.9091)) +(: cnet_isa_652452c14b (IsA sound loud) (STV 1.0 0.9339)) +(: cnet_isa_f288eda5a2 (IsA space cold) (STV 1.0 0.9091)) +(: cnet_isa_56a84cb54e (IsA space empty) (STV 1.0 0.9454)) +(: cnet_isa_f38321cdf1 (IsA speed dangerous) (STV 1.0 0.9091)) +(: cnet_isa_e818ddb10a (IsA speed_of_light very_fast) (STV 1.0 0.9091)) +(: cnet_isa_361fc49574 (IsA sphere round) (STV 1.0 0.9524)) +(: cnet_isa_fc283f1795 (IsA spilled_soda sticky) (STV 1.0 0.9091)) +(: cnet_isa_9c973470b7 (IsA spinach high_in_calcium) (STV 1.0 0.9091)) +(: cnet_isa_dfe93f50bf (IsA sport competitive) (STV 1.0 0.9339)) +(: cnet_isa_540c4b0297 (IsA sport fun) (STV 1.0 0.9572)) +(: cnet_isa_f224813c87 (IsA sport violent) (STV 1.0 0.9091)) +(: cnet_isa_bd497449d3 (IsA stairway dark) (STV 1.0 0.9091)) +(: cnet_isa_0c4132fb6c (IsA star visible_at_night) (STV 1.0 0.9339)) +(: cnet_isa_237203c48e (IsA statement false) (STV 1.0 0.9524)) +(: cnet_isa_76f7cab61a (IsA steak delicious) (STV 1.0 0.9091)) +(: cnet_isa_5db81c9744 (IsA steak edible) (STV 1.0 0.9091)) +(: cnet_isa_b90e8db796 (IsA steak one_cut_of_meat) (STV 1.0 0.9339)) +(: cnet_isa_b4f897c017 (IsA stealing bad) (STV 1.0 0.9524)) +(: cnet_isa_1895708fde (IsA steam hot) (STV 1.0 0.9524)) +(: cnet_isa_4d0a172ffb (IsA steam_pipe hot) (STV 1.0 0.9091)) +(: cnet_isa_2491c84103 (IsA steel hard) (STV 1.0 0.9339)) +(: cnet_isa_330bd5bbec (IsA steel_pen hard) (STV 1.0 0.9091)) +(: cnet_isa_6a08dfe7d9 (IsA stone hard) (STV 1.0 0.9454)) +(: cnet_isa_35bb8cda8f (IsA stop_sign red_and_white) (STV 1.0 0.9091)) +(: cnet_isa_389c372fdf (IsA stove hot) (STV 1.0 0.9339)) +(: cnet_isa_25cc995629 (IsA submarine very_big) (STV 1.0 0.9091)) +(: cnet_isa_97e4a2a3b4 (IsA sugar bad_for_diabetic_person) (STV 1.0 0.9091)) +(: cnet_isa_0b88bf0ab8 (IsA sugar one_kind_of_carbohydrate) (STV 1.0 0.9091)) +(: cnet_isa_bf30c0ead3 (IsA sumo popular_in_japan) (STV 1.0 0.9091)) +(: cnet_isa_d3d8d8c6ad (IsA sun far_from_earth) (STV 1.0 0.9339)) +(: cnet_isa_e88899e2f6 (IsA sun warm) (STV 1.0 0.9091)) +(: cnet_isa_1f0704fe9a (IsA sunlight bright) (STV 1.0 0.9091)) +(: cnet_isa_1a93f24075 (IsA sunny_day warm) (STV 1.0 0.9091)) +(: cnet_isa_5110aa6fc0 (IsA sunset romantic) (STV 1.0 0.9091)) +(: cnet_isa_1b82708406 (IsA sunshine harmful) (STV 1.0 0.9091)) +(: cnet_isa_5516c06be4 (IsA sunshine one_kind_of_light) (STV 1.0 0.9091)) +(: cnet_isa_a3fd90a64c (IsA suturing closing) (STV 1.0 0.9091)) +(: cnet_isa_eeb5595428 (IsA swiss_army_knive handy) (STV 1.0 0.9091)) +(: cnet_isa_6412dbb27d (IsA swiss_cheese full_of_hole) (STV 1.0 0.9339)) +(: cnet_isa_c9ae1e9cd7 (IsA sword sharp) (STV 1.0 0.9636)) +(: cnet_isa_5b2a630532 (IsA t_shirt considered_casual_wear) (STV 1.0 0.9339)) +(: cnet_isa_3108a0e5e1 (IsA tabby_cat alive) (STV 1.0 0.9091)) +(: cnet_isa_1cec37642e (IsA table_tennis fun) (STV 1.0 0.9091)) +(: cnet_isa_bfa11c1cee (IsA tack sharp) (STV 1.0 0.9572)) +(: cnet_isa_a65366e68f (IsA taking_advantage_of bad) (STV 1.0 0.9091)) +(: cnet_isa_7a9cfe0d46 (IsA tape sticky) (STV 1.0 0.9454)) +(: cnet_isa_2127d8ea3f (IsA taping_television_show legal) (STV 1.0 0.9091)) +(: cnet_isa_55aae1e185 (IsA teaching_computer_sometime boring) (STV 1.0 0.9091)) +(: cnet_isa_1c3b65652c (IsA television entertaining) (STV 1.0 0.9339)) +(: cnet_isa_7a8e38bb50 (IsA three 3) (STV 1.0 0.9091)) +(: cnet_isa_a7a67f1e45 (IsA thunder loud) (STV 1.0 0.9339)) +(: cnet_isa_1b78a807d1 (IsA tickling fun) (STV 1.0 0.9091)) +(: cnet_isa_cb8ace3701 (IsA tick brown) (STV 1.0 0.9091)) +(: cnet_isa_45c9a8c085 (IsA time linear) (STV 1.0 0.9091)) +(: cnet_isa_faff987d2e (IsA time running) (STV 1.0 0.9339)) +(: cnet_isa_6b708f4e4d (IsA tire black) (STV 1.0 0.9339)) +(: cnet_isa_598f9975e2 (IsA toilet_paper biodegradable) (STV 1.0 0.9091)) +(: cnet_isa_225bdaaabd (IsA toilet_paper soft) (STV 1.0 0.9091)) +(: cnet_isa_2c885dfac3 (IsA tomatoe red) (STV 1.0 0.9091)) +(: cnet_isa_1b8ace820e (IsA trash bad) (STV 1.0 0.9091)) +(: cnet_isa_ee7d6f5317 (IsA tree alive) (STV 1.0 0.9339)) +(: cnet_isa_483b14ed63 (IsA tree one_form_of_plant) (STV 1.0 0.9091)) +(: cnet_isa_ba51a2713e (IsA tree tall) (STV 1.0 0.9091)) +(: cnet_isa_8c68c02b7d (IsA tropical_fish colorful) (STV 1.0 0.9339)) +(: cnet_isa_7c8f9e1014 (IsA truth complex) (STV 1.0 0.9339)) +(: cnet_isa_64c5818d5b (IsA truth simple) (STV 1.0 0.9339)) +(: cnet_isa_ed9fe97479 (IsA tube hollow) (STV 1.0 0.9091)) +(: cnet_isa_cfa6b03d01 (IsA tv good) (STV 1.0 0.9091)) +(: cnet_isa_8e3632742c (IsA tv short_for_television) (STV 1.0 0.9572)) +(: cnet_isa_22668b29af (IsA two_am late) (STV 1.0 0.9091)) +(: cnet_isa_5bf98ab3d6 (IsA two_plus_two four) (STV 1.0 0.9091)) +(: cnet_isa_cf55c90f90 (IsA uncle male) (STV 1.0 0.9091)) +(: cnet_isa_51f459f58d (IsA undead animated_dead) (STV 1.0 0.9454)) +(: cnet_isa_efc74f3aa6 (IsA unitarian_universalist christian) (STV 1.0 0.9091)) +(: cnet_isa_d310808272 (IsA universe infinite) (STV 1.0 0.9339)) +(: cnet_isa_6fcfd826e1 (IsA universe very_old) (STV 1.0 0.9339)) +(: cnet_isa_9180b3194d (IsA uv_ray harmful) (STV 1.0 0.9091)) +(: cnet_isa_e3a6b67208 (IsA variety_in_fruit healthy) (STV 1.0 0.9091)) +(: cnet_isa_a6a9485df0 (IsA vegetable green) (STV 1.0 0.9339)) +(: cnet_isa_837469bcc4 (IsA velvet soft) (STV 1.0 0.9572)) +(: cnet_isa_3cd84ab54f (IsA vertebrate animal) (STV 1.0 0.9091)) +(: cnet_isa_fe96082c05 (IsA vertebrate diverse) (STV 1.0 0.9091)) +(: cnet_isa_1484d3f509 (IsA very_few_people content) (STV 1.0 0.9091)) +(: cnet_isa_da1dd6f57e (IsA vinyl cold) (STV 1.0 0.9091)) +(: cnet_isa_41086b7dd1 (IsA voice loud) (STV 1.0 0.9454)) +(: cnet_isa_b06ffac8e2 (IsA waiting_for_printer boring) (STV 1.0 0.9091)) +(: cnet_isa_59f774881e (IsA war terrible) (STV 1.0 0.9091)) +(: cnet_isa_98e2b83272 (IsA water blue) (STV 1.0 0.9524)) +(: cnet_isa_a12805836d (IsA water dangerous) (STV 1.0 0.9091)) +(: cnet_isa_d26cfbcce6 (IsA water essential_to_all_life) (STV 1.0 0.9659)) +(: cnet_isa_0dae8fc6da (IsA water essential_to_human_life) (STV 1.0 0.9091)) +(: cnet_isa_0b07803966 (IsA water good_to_drink) (STV 1.0 0.9091)) +(: cnet_isa_137d2608e7 (IsA water liquid) (STV 1.0 0.9693)) +(: cnet_isa_755cb84ea4 (IsA water transparent) (STV 1.0 0.9572)) +(: cnet_isa_e37059d544 (IsA water_from_ocean salty) (STV 1.0 0.9339)) +(: cnet_isa_0c49d9cb6d (IsA water_in_river cold) (STV 1.0 0.9091)) +(: cnet_isa_618789c885 (IsA weapon harmful) (STV 1.0 0.9091)) +(: cnet_isa_c068d46314 (IsA wedding boring) (STV 1.0 0.9091)) +(: cnet_isa_43d175780b (IsA weed green) (STV 1.0 0.9091)) +(: cnet_isa_f3cf6e260d (IsA wet_grass slippery) (STV 1.0 0.9454)) +(: cnet_isa_311a79c378 (IsA wet_ice slippery) (STV 1.0 0.9091)) +(: cnet_isa_87bea9ee14 (IsA wet_tile_surface slippery) (STV 1.0 0.9091)) +(: cnet_isa_270c31c69a (IsA wheel round) (STV 1.0 0.9608)) +(: cnet_isa_1a06fbff62 (IsA wine tasty) (STV 1.0 0.9091)) +(: cnet_isa_cf1e2048a5 (IsA wine white) (STV 1.0 0.9091)) +(: cnet_isa_755b062ca2 (IsA winner happy) (STV 1.0 0.9091)) +(: cnet_isa_d14ecf044d (IsA winter cold) (STV 1.0 0.9659)) +(: cnet_isa_ea4381d311 (IsA witche pagan) (STV 1.0 0.9091)) +(: cnet_isa_d0879bc17b (IsA wood solid) (STV 1.0 0.9091)) +(: cnet_isa_09b42d237b (IsA wooden_floor hard) (STV 1.0 0.9091)) +(: cnet_isa_8873bee1e9 (IsA wooden_rod hard) (STV 1.0 0.9091)) +(: cnet_isa_7edb77d774 (IsA word_n_f_l_and_coaching both_associated_with_football) (STV 1.0 0.9091)) +(: cnet_isa_2131fd0d42 (IsA work boring) (STV 1.0 0.9339)) +(: cnet_isa_b78b0bdf95 (IsA world diverse) (STV 1.0 0.9454)) +(: cnet_isa_007d9b44dd (IsA world round) (STV 1.0 0.9756)) +(: cnet_isa_8aa1618077 (IsA world small) (STV 1.0 0.9091)) +(: cnet_isa_ef543b76f8 (IsA 1 abstaction) (STV 1.0 0.9091)) +(: cnet_isa_3259095dc4 (IsA 1 number) (STV 1.0 0.9572)) +(: cnet_isa_aae5ec5009 (IsA 1000_mbit_s generic_artifact) (STV 1.0 0.9091)) +(: cnet_isa_f05838d0c8 (IsA 100_mbit_s generic_artifact) (STV 1.0 0.9091)) +(: cnet_isa_48b5f86b44 (IsA 10_mbit_s generic_artifact) (STV 1.0 0.9091)) +(: cnet_isa_912115e8bb (IsA 124141234 number) (STV 1.0 0.9091)) +(: cnet_isa_8fef22e95d (IsA 1530 decade) (STV 1.0 0.9091)) +(: cnet_isa_e13cf41fa3 (IsA 1750 decade) (STV 1.0 0.9091)) +(: cnet_isa_6f013ca2c0 (IsA 1760 decade) (STV 1.0 0.9091)) +(: cnet_isa_ee81a62d6d (IsA 1770 decade) (STV 1.0 0.9091)) +(: cnet_isa_3ff009fca8 (IsA 1780 decade) (STV 1.0 0.9091)) +(: cnet_isa_64a066cb01 (IsA 1790 decade) (STV 1.0 0.9091)) +(: cnet_isa_e71a04af3c (IsA 1820 decade) (STV 1.0 0.9091)) +(: cnet_isa_e72573dd8f (IsA 1830 decade) (STV 1.0 0.9091)) +(: cnet_isa_6143ab1274 (IsA 1840 decade) (STV 1.0 0.9091)) +(: cnet_isa_2137b6598a (IsA 1850 decade) (STV 1.0 0.9091)) +(: cnet_isa_5e613becc1 (IsA 1860 decade) (STV 1.0 0.9091)) +(: cnet_isa_e0e4a5723b (IsA 1870 decade) (STV 1.0 0.9091)) +(: cnet_isa_542daa7d4a (IsA 18_karat_gold alloy) (STV 1.0 0.9091)) +(: cnet_isa_73bfa8ff3a (IsA 1900 decade) (STV 1.0 0.9091)) +(: cnet_isa_353e64c43e (IsA 1984 very_good_book) (STV 1.0 0.9091)) +(: cnet_isa_93f3b714ff (IsA 20_20 acuity) (STV 1.0 0.9091)) +(: cnet_isa_7c1bb74029 (IsA 22_karat_gold alloy) (STV 1.0 0.9091)) +(: cnet_isa_9204aeed69 (IsA 24_7 uptime) (STV 1.0 0.9091)) +(: cnet_isa_5fd8de082d (IsA 24_karat_gold gold) (STV 1.0 0.9091)) +(: cnet_isa_82e0c74d9e (IsA 3d_printer printer) (STV 1.0 0.9091)) +(: cnet_isa_f76abc9602 (IsA 401_k_plan pension_plan) (STV 1.0 0.9091)) +(: cnet_isa_edf305481e (IsA 7 number) (STV 1.0 0.9091)) +(: cnet_isa_c7a3e91462 (IsA 78 phonograph_record) (STV 1.0 0.9091)) +(: cnet_isa_660c113cba (IsA 7_up soda) (STV 1.0 0.9339)) +(: cnet_isa_edb243ba2c (IsA 80386 cpu) (STV 1.0 0.9091)) +(: cnet_isa_8f8a76924f (IsA 9 number) (STV 1.0 0.9091)) +(: cnet_isa_9057d6851e (IsA a set_containing_one_element) (STV 1.0 0.9091)) +(: cnet_isa_6b28178d2d (IsA a blood_group) (STV 1.0 0.9091)) +(: cnet_isa_259f09f348 (IsA a letter) (STV 1.0 0.9091)) +(: cnet_isa_2f8c755ebd (IsA aa lava) (STV 1.0 0.9091)) +(: cnet_isa_6ba732d46a (IsA aalii tree) (STV 1.0 0.9091)) +(: cnet_isa_5dc63e261b (IsA aardvark placental) (STV 1.0 0.9091)) +(: cnet_isa_1e7062d745 (IsA aardwolf hyena) (STV 1.0 0.9091)) +(: cnet_isa_352968b831 (IsA ab blood_group) (STV 1.0 0.9091)) +(: cnet_isa_cc38aa9676 (IsA ab jewish_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_16fd8f755a (IsA aba fabric) (STV 1.0 0.9091)) +(: cnet_isa_8224769f49 (IsA aba overgarment) (STV 1.0 0.9091)) +(: cnet_isa_d013c1aa13 (IsA abaca banana) (STV 1.0 0.9091)) +(: cnet_isa_f8fc112e84 (IsA abacus calculator) (STV 1.0 0.9091)) +(: cnet_isa_5e9dcad8e8 (IsA abacus tablet) (STV 1.0 0.9091)) +(: cnet_isa_0fdde0d59a (IsA abalone gastropod) (STV 1.0 0.9091)) +(: cnet_isa_a618d9c369 (IsA abampere current_unit) (STV 1.0 0.9091)) +(: cnet_isa_fdda22a7d0 (IsA abandon unrestraint) (STV 1.0 0.9091)) +(: cnet_isa_e2e0ec4ce7 (IsA abandoned_person unfortunate) (STV 1.0 0.9091)) +(: cnet_isa_17befe1bf1 (IsA abandoned_ship ship) (STV 1.0 0.9091)) +(: cnet_isa_191f6aa319 (IsA abandonment disposal) (STV 1.0 0.9091)) +(: cnet_isa_88cd1ed2a7 (IsA abandonment rejection) (STV 1.0 0.9091)) +(: cnet_isa_089a4e7802 (IsA abarticulation dislocation) (STV 1.0 0.9091)) +(: cnet_isa_d551d357d3 (IsA abasement humiliation) (STV 1.0 0.9091)) +(: cnet_isa_21e64e5cac (IsA abashment embarrassment) (STV 1.0 0.9091)) +(: cnet_isa_b5821c6c9d (IsA abasia disability_of_walking) (STV 1.0 0.9091)) +(: cnet_isa_02897815dc (IsA abasia_trepidan abasia) (STV 1.0 0.9091)) +(: cnet_isa_c0dd2e2bdb (IsA abatable_nuisance nuisance) (STV 1.0 0.9091)) +(: cnet_isa_f3d87758b7 (IsA abatement moderation) (STV 1.0 0.9091)) +(: cnet_isa_9a9e0980c6 (IsA abatement_of_nuisance abatement) (STV 1.0 0.9091)) +(: cnet_isa_19f61f50b7 (IsA abator person) (STV 1.0 0.9091)) +(: cnet_isa_ce900307aa (IsA abattis line_of_defense) (STV 1.0 0.9091)) +(: cnet_isa_91eaabfc9c (IsA abattoir building) (STV 1.0 0.9091)) +(: cnet_isa_be1e77c48a (IsA abaya robe) (STV 1.0 0.9091)) +(: cnet_isa_69e717d95b (IsA abbacy jurisdiction) (STV 1.0 0.9091)) +(: cnet_isa_949452f0d2 (IsA abbe abbot) (STV 1.0 0.9091)) +(: cnet_isa_fcfe089b0f (IsA abbe_condenser condenser) (STV 1.0 0.9091)) +(: cnet_isa_b466e9f086 (IsA abbess superior) (STV 1.0 0.9091)) +(: cnet_isa_a504a4fc08 (IsA abbey church) (STV 1.0 0.9091)) +(: cnet_isa_4d6999cc6e (IsA abbey convent) (STV 1.0 0.9091)) +(: cnet_isa_8e44f36e60 (IsA abbey monastery) (STV 1.0 0.9091)) +(: cnet_isa_e7493113aa (IsA abbot superior) (STV 1.0 0.9091)) +(: cnet_isa_34f5a33238 (IsA abbreviation shortening) (STV 1.0 0.9091)) +(: cnet_isa_3a1174239a (IsA abbreviation form) (STV 1.0 0.9091)) +(: cnet_isa_6f956fd5f2 (IsA abcoulomb charge_unit) (STV 1.0 0.9091)) +(: cnet_isa_91ddb5dab8 (IsA abdication resignation) (STV 1.0 0.9091)) +(: cnet_isa_6321491b45 (IsA abdicator quitter) (STV 1.0 0.9091)) +(: cnet_isa_ccedaec269 (IsA abdomen body_part) (STV 1.0 0.9091)) +(: cnet_isa_4ae2b51c6b (IsA abdominal skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_e694050054 (IsA abdominal_actinomycosis actinomycosis) (STV 1.0 0.9091)) +(: cnet_isa_18f04ee2e2 (IsA abdominal_aorta aorta) (STV 1.0 0.9091)) +(: cnet_isa_b7c3080356 (IsA abdominal_aortic_aneurysm aortic_aneurysm) (STV 1.0 0.9091)) +(: cnet_isa_e5326ff8c5 (IsA abdominal_breathing breathing) (STV 1.0 0.9091)) +(: cnet_isa_ae5333a00a (IsA abdominal_cavity cavity) (STV 1.0 0.9091)) +(: cnet_isa_a73956440f (IsA abdominal_pregnancy ectopic_pregnancy) (STV 1.0 0.9091)) +(: cnet_isa_d8eeb85bad (IsA abdominal_wall wall) (STV 1.0 0.9091)) +(: cnet_isa_a23131d57c (IsA abdominocentesis centesis) (STV 1.0 0.9091)) +(: cnet_isa_f4b3cdba90 (IsA abdominoplasty plastic_surgery) (STV 1.0 0.9091)) +(: cnet_isa_689abefc61 (IsA abdominousness fatness) (STV 1.0 0.9091)) +(: cnet_isa_00e9aa3712 (IsA abducen_muscle ocular_muscle) (STV 1.0 0.9091)) +(: cnet_isa_27f65f2a94 (IsA abducent cranial_nerve) (STV 1.0 0.9091)) +(: cnet_isa_f8c02c6ae2 (IsA abduction capture) (STV 1.0 0.9091)) +(: cnet_isa_622ad3ca56 (IsA abduction motion) (STV 1.0 0.9091)) +(: cnet_isa_7d9272aebf (IsA abductor skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_76f5b772cb (IsA abecedarian sect) (STV 1.0 0.9091)) +(: cnet_isa_6c23f4d37b (IsA abecedarian novice) (STV 1.0 0.9091)) +(: cnet_isa_105380567b (IsA abecedarius poem) (STV 1.0 0.9091)) +(: cnet_isa_8e47faccff (IsA abelia shrub) (STV 1.0 0.9091)) +(: cnet_isa_2291f59c05 (IsA abelian_group group) (STV 1.0 0.9339)) +(: cnet_isa_b876a61273 (IsA abelmoschus dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_90d51dd4dd (IsA abelmosk mallow) (STV 1.0 0.9091)) +(: cnet_isa_ce4d21912d (IsA abenaki algonquin) (STV 1.0 0.9091)) +(: cnet_isa_ccdf936b16 (IsA aberdeen_angus beef) (STV 1.0 0.9091)) +(: cnet_isa_5efafaa7c8 (IsA aberrance abnormality) (STV 1.0 0.9091)) +(: cnet_isa_2a47cdd97c (IsA aberrant anomaly) (STV 1.0 0.9091)) +(: cnet_isa_261e820b1b (IsA aberration optical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_dac4e93a97 (IsA aberration mental_disorder) (STV 1.0 0.9091)) +(: cnet_isa_7805f5bff2 (IsA abetalipoproteinemia genetic_disease) (STV 1.0 0.9091)) +(: cnet_isa_6e1df4c9f6 (IsA abetalipoproteinemia hypobetalipoproteinemia) (STV 1.0 0.9091)) +(: cnet_isa_f7592ea91d (IsA abetalipoproteinemia lipidosis) (STV 1.0 0.9091)) +(: cnet_isa_b517dffc14 (IsA abetment encouragement) (STV 1.0 0.9091)) +(: cnet_isa_664f0b03fa (IsA abettor accessory) (STV 1.0 0.9091)) +(: cnet_isa_d7f2be7f5c (IsA abeyance inaction) (STV 1.0 0.9091)) +(: cnet_isa_07ac1069e5 (IsA abfarad capacitance_unit) (STV 1.0 0.9091)) +(: cnet_isa_31b77c56f8 (IsA abhenry inductance_unit) (STV 1.0 0.9091)) +(: cnet_isa_865dd1a42a (IsA abhorrence disgust) (STV 1.0 0.9091)) +(: cnet_isa_3672ee61b5 (IsA abhorrence hate) (STV 1.0 0.9091)) +(: cnet_isa_86b7480926 (IsA abhorrer signer) (STV 1.0 0.9091)) +(: cnet_isa_979a5ce80d (IsA abidance continuance) (STV 1.0 0.9091)) +(: cnet_isa_3debc65981 (IsA abience urge) (STV 1.0 0.9091)) +(: cnet_isa_0679cd1cc8 (IsA aby gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_11a5ca86da (IsA ability quality) (STV 1.0 0.9091)) +(: cnet_isa_c012596346 (IsA ability cognition) (STV 1.0 0.9091)) +(: cnet_isa_6358098731 (IsA abiogenesis organic_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_00fcb6f620 (IsA abiogenist believer) (STV 1.0 0.9091)) +(: cnet_isa_3ef2c8e123 (IsA abiotrophy degeneration) (STV 1.0 0.9091)) +(: cnet_isa_8e23c5fe31 (IsA abjurer person) (STV 1.0 0.9091)) +(: cnet_isa_b1a5f7c9e0 (IsA abkhasian circassian) (STV 1.0 0.9091)) +(: cnet_isa_8ae5af46bf (IsA abkhazian circassian) (STV 1.0 0.9091)) +(: cnet_isa_7ac44404f3 (IsA ablactation bodily_process) (STV 1.0 0.9091)) +(: cnet_isa_2357d66287 (IsA ablation operation) (STV 1.0 0.9091)) +(: cnet_isa_2bcc36e44a (IsA ablation erosion) (STV 1.0 0.9091)) +(: cnet_isa_15a4586ba8 (IsA ablative oblique) (STV 1.0 0.9091)) +(: cnet_isa_61cb380269 (IsA ablative_absolute constituent) (STV 1.0 0.9091)) +(: cnet_isa_0c16149d5f (IsA ablaut vowel) (STV 1.0 0.9091)) +(: cnet_isa_8d9df6322b (IsA able_seaman mariner) (STV 1.0 0.9091)) +(: cnet_isa_76d8ae3f5a (IsA ableism discrimination) (STV 1.0 0.9091)) +(: cnet_isa_022f092897 (IsA ablepharia birth_defect) (STV 1.0 0.9091)) +(: cnet_isa_9f4b98e79e (IsA ablution ritual) (STV 1.0 0.9091)) +(: cnet_isa_cd3ccf53b9 (IsA ablution wash) (STV 1.0 0.9091)) +(: cnet_isa_0a52eefea3 (IsA abnaki algonquian) (STV 1.0 0.9091)) +(: cnet_isa_fd4c69fde4 (IsA abnegation renunciation) (STV 1.0 0.9091)) +(: cnet_isa_a293b4a4f1 (IsA abnegation selflessness) (STV 1.0 0.9091)) +(: cnet_isa_da57653e74 (IsA abnegation denial) (STV 1.0 0.9091)) +(: cnet_isa_3cdb7d6b80 (IsA abnegator donor) (STV 1.0 0.9091)) +(: cnet_isa_c15fd66691 (IsA abney_level surveyor_s_level) (STV 1.0 0.9091)) +(: cnet_isa_18bdb73a77 (IsA abnormal_psychology psychology) (STV 1.0 0.9091)) +(: cnet_isa_bae8f6841d (IsA abnormality misbehavior) (STV 1.0 0.9091)) +(: cnet_isa_6a10d7d23d (IsA abnormality unfamiliarity) (STV 1.0 0.9091)) +(: cnet_isa_5d7feca507 (IsA abnormality retardation) (STV 1.0 0.9091)) +(: cnet_isa_bffdd79adf (IsA abnormality physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_62f6510849 (IsA abo_antibody antibody) (STV 1.0 0.9091)) +(: cnet_isa_d5e3a038b9 (IsA abo_blood_group_system classification_system) (STV 1.0 0.9091)) +(: cnet_isa_d85aca88a7 (IsA abocclusion disorder) (STV 1.0 0.9091)) +(: cnet_isa_8d2065b7fc (IsA abohm resistance_unit) (STV 1.0 0.9091)) +(: cnet_isa_b35332db3f (IsA abolition termination) (STV 1.0 0.9091)) +(: cnet_isa_a76a3269d6 (IsA abolitionism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_430f0396f6 (IsA abolitionist reformer) (STV 1.0 0.9091)) +(: cnet_isa_7c20999cbc (IsA abomasum stomach) (STV 1.0 0.9091)) +(: cnet_isa_ae5ee7a8cd (IsA abominable_snowman legendary_creature) (STV 1.0 0.9091)) +(: cnet_isa_88c138bedf (IsA abomination transgression) (STV 1.0 0.9091)) +(: cnet_isa_9f715616ab (IsA abomination person) (STV 1.0 0.9091)) +(: cnet_isa_7447218965 (IsA abominator hater) (STV 1.0 0.9091)) +(: cnet_isa_3056d1e40f (IsA aborigine person) (STV 1.0 0.9091)) +(: cnet_isa_3271571602 (IsA abort termination) (STV 1.0 0.9091)) +(: cnet_isa_537c71a079 (IsA aborticide induced_abortion) (STV 1.0 0.9091)) +(: cnet_isa_2efff47a32 (IsA abortifacient drug) (STV 1.0 0.9091)) +(: cnet_isa_92497418ef (IsA abortion termination) (STV 1.0 0.9091)) +(: cnet_isa_fb9d2b7d0f (IsA abortion_pill abortifacient) (STV 1.0 0.9091)) +(: cnet_isa_9f6e96fbc8 (IsA abortionist doctor) (STV 1.0 0.9091)) +(: cnet_isa_fb286a8273 (IsA abortus fetus) (STV 1.0 0.9091)) +(: cnet_isa_0113be65a3 (IsA about_face change) (STV 1.0 0.9091)) +(: cnet_isa_1dfa88e722 (IsA about_face reversion) (STV 1.0 0.9091)) +(: cnet_isa_47cff05a98 (IsA above section) (STV 1.0 0.9091)) +(: cnet_isa_0d60b8dd79 (IsA abracadabra gibberish) (STV 1.0 0.9091)) +(: cnet_isa_a569b2efca (IsA abrachia abnormality) (STV 1.0 0.9091)) +(: cnet_isa_821d46127d (IsA abrader tool) (STV 1.0 0.9091)) +(: cnet_isa_06594ad0af (IsA abrading_stone abrader) (STV 1.0 0.9091)) +(: cnet_isa_358dfef57b (IsA abraham_s_bosom heaven) (STV 1.0 0.9091)) +(: cnet_isa_bc0ef3025f (IsA abramis fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_11292b39d1 (IsA abrasion erosion) (STV 1.0 0.9091)) +(: cnet_isa_bd96fd58a1 (IsA abrasion wound) (STV 1.0 0.9091)) +(: cnet_isa_7922e38e56 (IsA abrasive material) (STV 1.0 0.9091)) +(: cnet_isa_ca8cbd6e69 (IsA abrasiveness disagreeableness) (STV 1.0 0.9091)) +(: cnet_isa_5635271459 (IsA abridger redact) (STV 1.0 0.9091)) +(: cnet_isa_b89afcafb3 (IsA abrocoma mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_0e637fa8b7 (IsA abrocome rodent) (STV 1.0 0.9091)) +(: cnet_isa_0d83fbae86 (IsA abrogation cancellation) (STV 1.0 0.9091)) +(: cnet_isa_c4d0f7dde8 (IsA abrogator authority) (STV 1.0 0.9091)) +(: cnet_isa_a66f0e8b33 (IsA abronia caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_bd18f022b4 (IsA abruptio_placentae disorder) (STV 1.0 0.9091)) +(: cnet_isa_9e4e9638c4 (IsA abruptness discourtesy) (STV 1.0 0.9091)) +(: cnet_isa_0d4bb8aae4 (IsA abruptness gradient) (STV 1.0 0.9091)) +(: cnet_isa_279d90efb1 (IsA abruptness haste) (STV 1.0 0.9091)) +(: cnet_isa_cdf3065911 (IsA abscess symptom) (STV 1.0 0.9091)) +(: cnet_isa_903581c940 (IsA abscessed_tooth abscess) (STV 1.0 0.9091)) +(: cnet_isa_d537144c67 (IsA abscissa cartesian_coordinate) (STV 1.0 0.9091)) +(: cnet_isa_6b40dfafb0 (IsA abscission removal) (STV 1.0 0.9091)) +(: cnet_isa_007a0c9c93 (IsA abscission shedding) (STV 1.0 0.9091)) +(: cnet_isa_654d73c47a (IsA absconder fugitive) (STV 1.0 0.9091)) +(: cnet_isa_57ce1d915f (IsA abscondment desertion) (STV 1.0 0.9091)) +(: cnet_isa_887f5d4e81 (IsA abseil descent) (STV 1.0 0.9091)) +(: cnet_isa_067de950e6 (IsA abseiler descender) (STV 1.0 0.9091)) +(: cnet_isa_4557f76404 (IsA absence nonattendance) (STV 1.0 0.9091)) +(: cnet_isa_9dcf02c003 (IsA absence lack) (STV 1.0 0.9091)) +(: cnet_isa_1918be07a6 (IsA absence time_interval) (STV 1.0 0.9091)) +(: cnet_isa_136930a5f6 (IsA absence_without_leave desertion) (STV 1.0 0.9091)) +(: cnet_isa_7a2160aae9 (IsA absentee traveler) (STV 1.0 0.9091)) +(: cnet_isa_c42abb77ed (IsA absentee_ballot ballot) (STV 1.0 0.9091)) +(: cnet_isa_09ec98ba20 (IsA absentee_rate percentage) (STV 1.0 0.9091)) +(: cnet_isa_f592aeb042 (IsA absenteeism absence) (STV 1.0 0.9091)) +(: cnet_isa_2497176f08 (IsA absentmindedness preoccupation) (STV 1.0 0.9091)) +(: cnet_isa_1a3df1cf43 (IsA absinth liqueur) (STV 1.0 0.9091)) +(: cnet_isa_530e73ec75 (IsA absolute abstraction) (STV 1.0 0.9091)) +(: cnet_isa_a37c7f8043 (IsA absolute_alcohol ethyl_alcohol) (STV 1.0 0.9091)) +(: cnet_isa_31a932bdc2 (IsA absolute_ceiling ceiling) (STV 1.0 0.9091)) +(: cnet_isa_3e73ad9643 (IsA absolute_magnitude magnitude) (STV 1.0 0.9091)) +(: cnet_isa_0d7ef780cb (IsA absolute_pitch hearing) (STV 1.0 0.9091)) +(: cnet_isa_1e8ca5e0c1 (IsA absolute_space space) (STV 1.0 0.9091)) +(: cnet_isa_9311ed775b (IsA absolute_temperature temperature) (STV 1.0 0.9091)) +(: cnet_isa_745de6cbf8 (IsA absolute_threshold threshold) (STV 1.0 0.9091)) +(: cnet_isa_4cd675e7f8 (IsA absolute_value definite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_3074b92c1c (IsA absolute_zero temperature) (STV 1.0 0.9091)) +(: cnet_isa_74c6fe9dcd (IsA absoluteness changelessness) (STV 1.0 0.9091)) +(: cnet_isa_b7bd4e1106 (IsA absolution redemption) (STV 1.0 0.9091)) +(: cnet_isa_4136f5b3ac (IsA absolution condition) (STV 1.0 0.9091)) +(: cnet_isa_1df71bbfb3 (IsA absolutism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_4363ec403b (IsA absolutism political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_17aa466465 (IsA absolutism dominance) (STV 1.0 0.9091)) +(: cnet_isa_d50c2d8e7f (IsA absolutist disciple) (STV 1.0 0.9091)) +(: cnet_isa_c9e7cb44f8 (IsA absolver pardoner) (STV 1.0 0.9091)) +(: cnet_isa_55e43b9f74 (IsA absorbate sorbate) (STV 1.0 0.9091)) +(: cnet_isa_25a72ada7b (IsA absorbency permeability) (STV 1.0 0.9091)) +(: cnet_isa_a8864920e3 (IsA absorbent_cotton absorbent_material) (STV 1.0 0.9091)) +(: cnet_isa_b30216571e (IsA absorbent_cotton cotton) (STV 1.0 0.9091)) +(: cnet_isa_0641afd2b7 (IsA absorbent_material sorbent) (STV 1.0 0.9091)) +(: cnet_isa_31c450ba2a (IsA absorber absorbent_material) (STV 1.0 0.9091)) +(: cnet_isa_106968556b (IsA absorption sorption) (STV 1.0 0.9091)) +(: cnet_isa_7387908eb7 (IsA absorption natural_process) (STV 1.0 0.9091)) +(: cnet_isa_5125826783 (IsA absorption_band optical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_4212b45890 (IsA absorption_coefficient coefficient) (STV 1.0 0.9091)) +(: cnet_isa_eb837296eb (IsA absorption_indicator indicator) (STV 1.0 0.9091)) +(: cnet_isa_1e263f6f42 (IsA absorption_spectrum spectrum) (STV 1.0 0.9091)) +(: cnet_isa_3dd360e253 (IsA absorption_unit unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_8577e85101 (IsA absorptivity physical_property) (STV 1.0 0.9091)) +(: cnet_isa_82b587eb0d (IsA abstainer person) (STV 1.0 0.9091)) +(: cnet_isa_f77a6cc0b3 (IsA abstainer religionist) (STV 1.0 0.9091)) +(: cnet_isa_0a631a29a8 (IsA abstemiousness meagerness) (STV 1.0 0.9091)) +(: cnet_isa_8b09d76a4b (IsA abstemiousness temperance) (STV 1.0 0.9091)) +(: cnet_isa_a42c669e0d (IsA abstinence self_denial) (STV 1.0 0.9091)) +(: cnet_isa_8abeaf1103 (IsA abstinence self_discipline) (STV 1.0 0.9091)) +(: cnet_isa_9bb8f81c28 (IsA abstract summary) (STV 1.0 0.9091)) +(: cnet_isa_fc0a2a45b5 (IsA abstract_expressionism artistic_movement) (STV 1.0 0.9091)) +(: cnet_isa_d1b710b9a4 (IsA abstractedness preoccupation) (STV 1.0 0.9091)) +(: cnet_isa_6ea9f2b2af (IsA abstraction entity) (STV 1.0 0.9091)) +(: cnet_isa_05ba0a465e (IsA abstraction removal) (STV 1.0 0.9091)) +(: cnet_isa_1475de2ea8 (IsA abstraction painting) (STV 1.0 0.9091)) +(: cnet_isa_0171f41930 (IsA abstraction concept) (STV 1.0 0.9091)) +(: cnet_isa_c6af4e89c5 (IsA abstraction theorization) (STV 1.0 0.9091)) +(: cnet_isa_98e0d2769c (IsA abstractionism genre) (STV 1.0 0.9091)) +(: cnet_isa_f941a88101 (IsA abstractionism representation) (STV 1.0 0.9091)) +(: cnet_isa_6f02aa510d (IsA abstractionist painter) (STV 1.0 0.9091)) +(: cnet_isa_f76a48edef (IsA abstractness immateriality) (STV 1.0 0.9091)) +(: cnet_isa_db1f9c0088 (IsA abstractor writer) (STV 1.0 0.9091)) +(: cnet_isa_53259679a4 (IsA absurd situation) (STV 1.0 0.9091)) +(: cnet_isa_d0b56a6f2b (IsA absurdity folly) (STV 1.0 0.9091)) +(: cnet_isa_e805aa15d2 (IsA absurdity nonsense) (STV 1.0 0.9091)) +(: cnet_isa_b386ec184f (IsA abudefduf fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_8ffac1d596 (IsA abulia psychological_state) (STV 1.0 0.9091)) +(: cnet_isa_5bf5a2e6f6 (IsA abundance quantity) (STV 1.0 0.9091)) +(: cnet_isa_7a88cc9dd3 (IsA abundance ratio) (STV 1.0 0.9091)) +(: cnet_isa_373133c849 (IsA abuse disrespect) (STV 1.0 0.9091)) +(: cnet_isa_fb8fb06461 (IsA abuser wrongdoer) (STV 1.0 0.9091)) +(: cnet_isa_2dded4fbe9 (IsA abutilon dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5942665f4c (IsA abutment support) (STV 1.0 0.9091)) +(: cnet_isa_bb8f04d88b (IsA abutment point) (STV 1.0 0.9091)) +(: cnet_isa_549ea00438 (IsA abutment_arch arch) (STV 1.0 0.9091)) +(: cnet_isa_56fd574456 (IsA abutter landowner) (STV 1.0 0.9091)) +(: cnet_isa_99a928b819 (IsA abvolt potential_unit) (STV 1.0 0.9091)) +(: cnet_isa_8b96476a8f (IsA abwatt power_unit) (STV 1.0 0.9091)) +(: cnet_isa_82387bfa6e (IsA abyss chasm) (STV 1.0 0.9091)) +(: cnet_isa_0bbd29ae81 (IsA abyssal_zone ocean_floor) (STV 1.0 0.9091)) +(: cnet_isa_c03e0290b8 (IsA abyssinian domestic_cat) (STV 1.0 0.9091)) +(: cnet_isa_f028fb33dc (IsA abyssinian_banana herb) (STV 1.0 0.9091)) +(: cnet_isa_a75ff387a3 (IsA acacia tree) (STV 1.0 0.9091)) +(: cnet_isa_2e67f357c6 (IsA academia world) (STV 1.0 0.9091)) +(: cnet_isa_458ad0b686 (IsA academic_administrator administrator) (STV 1.0 0.9091)) +(: cnet_isa_0b2fc4a49b (IsA academic_costume costume) (STV 1.0 0.9091)) +(: cnet_isa_c6f0a10cc1 (IsA academic_degree award) (STV 1.0 0.9091)) +(: cnet_isa_2ac34187b9 (IsA academic_department department) (STV 1.0 0.9091)) +(: cnet_isa_085c7f1110 (IsA academic_freedom freedom) (STV 1.0 0.9091)) +(: cnet_isa_dc7df542a2 (IsA academic_gown gown) (STV 1.0 0.9091)) +(: cnet_isa_a2dc84a9f2 (IsA academic_program educational_program) (STV 1.0 0.9091)) +(: cnet_isa_4e47cd3deb (IsA academic_relation professional_relation) (STV 1.0 0.9091)) +(: cnet_isa_ed3d869e88 (IsA academic_requirement prerequisite) (STV 1.0 0.9091)) +(: cnet_isa_2fd09154e8 (IsA academician educator) (STV 1.0 0.9091)) +(: cnet_isa_265cfcf8c6 (IsA academician honoree) (STV 1.0 0.9091)) +(: cnet_isa_aac79d7bb3 (IsA academician scholar) (STV 1.0 0.9091)) +(: cnet_isa_80a6db5bdb (IsA academicianship position) (STV 1.0 0.9091)) +(: cnet_isa_03df6d2e09 (IsA academy establishment) (STV 1.0 0.9091)) +(: cnet_isa_55ce0b502d (IsA academy institution) (STV 1.0 0.9091)) +(: cnet_isa_ba5680bd77 (IsA academy school) (STV 1.0 0.9091)) +(: cnet_isa_08cf4f6e19 (IsA academy secondary_school) (STV 1.0 0.9091)) +(: cnet_isa_36ffdf5d06 (IsA academy_award award) (STV 1.0 0.9091)) +(: cnet_isa_978ec72b1a (IsA academy_of_motion_picture_art_and_science academy) (STV 1.0 0.9091)) +(: cnet_isa_259468ef55 (IsA academy_of_television_art_and_science academy) (STV 1.0 0.9091)) +(: cnet_isa_4c7c551d38 (IsA acadian french_canadian) (STV 1.0 0.9091)) +(: cnet_isa_48ae62ddff (IsA acalypha rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6b181be5d4 (IsA acanthaceae asterid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_22630ea081 (IsA acanthion craniometric_point) (STV 1.0 0.9091)) +(: cnet_isa_3f019be33a (IsA acanthisitta bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_f04d97e113 (IsA acanthocephala phylum) (STV 1.0 0.9091)) +(: cnet_isa_ad67cf52c9 (IsA acanthocephalan worm) (STV 1.0 0.9091)) +(: cnet_isa_19199dcfa8 (IsA acanthocereus caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_583af3a814 (IsA acanthocybium fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_2d25b33a8e (IsA acanthocyte red_blood_cell) (STV 1.0 0.9091)) +(: cnet_isa_1d08beb3f8 (IsA acanthocytosis blood_disease) (STV 1.0 0.9091)) +(: cnet_isa_6fc2847eec (IsA acantholysis skin_disease) (STV 1.0 0.9091)) +(: cnet_isa_f7bd0b90f1 (IsA acanthoma tumor) (STV 1.0 0.9091)) +(: cnet_isa_185b490793 (IsA acanthophis reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_9647e42593 (IsA acanthopterygii animal_order) (STV 1.0 0.9091)) +(: cnet_isa_5f0c2606cd (IsA acanthoscelide arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_4e211cc764 (IsA acanthosis skin_disease) (STV 1.0 0.9091)) +(: cnet_isa_d2c3bd014e (IsA acanthosis_nigrican skin_disease) (STV 1.0 0.9091)) +(: cnet_isa_b5657f8dd4 (IsA acanthuridae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_e39dbc37b9 (IsA acanthurus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_ead911a4b9 (IsA acanthus herb) (STV 1.0 0.9091)) +(: cnet_isa_794d4f1c16 (IsA acapulco_gold cannabis) (STV 1.0 0.9091)) +(: cnet_isa_26ccce72ce (IsA acardia abnormality) (STV 1.0 0.9091)) +(: cnet_isa_6833157f74 (IsA acariasis infestation) (STV 1.0 0.9091)) +(: cnet_isa_b5e9631f03 (IsA acaricide pesticide) (STV 1.0 0.9091)) +(: cnet_isa_fbabf39a42 (IsA acarid mite) (STV 1.0 0.9091)) +(: cnet_isa_7d506846be (IsA acaridae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_fd88725d01 (IsA acarina animal_order) (STV 1.0 0.9091)) +(: cnet_isa_18e08b9a19 (IsA acarine arachnid) (STV 1.0 0.9091)) +(: cnet_isa_60296dd36f (IsA acaroid_resin natural_resin) (STV 1.0 0.9091)) +(: cnet_isa_b0d7ad0237 (IsA acarophobia zoophobia) (STV 1.0 0.9091)) +(: cnet_isa_413a5d0a0c (IsA acarus mite) (STV 1.0 0.9091)) +(: cnet_isa_6c3797520b (IsA acatalectic line_of_poetry) (STV 1.0 0.9091)) +(: cnet_isa_97e3450ae6 (IsA acataphasia brain_disorder) (STV 1.0 0.9091)) +(: cnet_isa_f0221abca2 (IsA acathexia physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_99af85bc2f (IsA acathexis libidinal_energy) (STV 1.0 0.9091)) +(: cnet_isa_8ab4827de1 (IsA accelerando tempo) (STV 1.0 0.9091)) +(: cnet_isa_d5e44d4605 (IsA acceleration speed) (STV 1.0 0.9091)) +(: cnet_isa_793c2cf300 (IsA acceleration change) (STV 1.0 0.9091)) +(: cnet_isa_1c86815db5 (IsA acceleration rate) (STV 1.0 0.9091)) +(: cnet_isa_4d0157127c (IsA acceleration_unit unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_39cb201cca (IsA accelerator pedal) (STV 1.0 0.9091)) +(: cnet_isa_5e74eb0dd5 (IsA accelerator scientific_instrument) (STV 1.0 0.9091)) +(: cnet_isa_a897babc53 (IsA accelerator valve) (STV 1.0 0.9091)) +(: cnet_isa_3760a39f16 (IsA accelerometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_f6996daf2d (IsA accent pronunciation) (STV 1.0 0.9091)) +(: cnet_isa_f6920ddb5e (IsA accent diacritical_mark) (STV 1.0 0.9091)) +(: cnet_isa_25cc867d88 (IsA accentor oscine) (STV 1.0 0.9091)) +(: cnet_isa_af840067f4 (IsA accentual_system language_system) (STV 1.0 0.9091)) +(: cnet_isa_4c6279963a (IsA accentuation stress) (STV 1.0 0.9091)) +(: cnet_isa_11d591105f (IsA acceptability satisfactoriness) (STV 1.0 0.9091)) +(: cnet_isa_58e87f8261 (IsA acceptance acquisition) (STV 1.0 0.9091)) +(: cnet_isa_f82f9a1a0b (IsA acceptance assent) (STV 1.0 0.9091)) +(: cnet_isa_532a299c28 (IsA acceptance draft) (STV 1.0 0.9091)) +(: cnet_isa_6dcf9638a1 (IsA acceptance situation) (STV 1.0 0.9091)) +(: cnet_isa_97b8a9bd67 (IsA acceptance_sampling quality_control) (STV 1.0 0.9091)) +(: cnet_isa_254163e51a (IsA acceptance_sampling sample_distribution) (STV 1.0 0.9091)) +(: cnet_isa_06f92af4a1 (IsA acceptation acceptance) (STV 1.0 0.9091)) +(: cnet_isa_54e17f44f2 (IsA acceptor compound) (STV 1.0 0.9091)) +(: cnet_isa_dc585edebe (IsA acceptor drawee) (STV 1.0 0.9091)) +(: cnet_isa_f1df0af360 (IsA access approach) (STV 1.0 0.9091)) +(: cnet_isa_0fc69b3f4c (IsA access way) (STV 1.0 0.9091)) +(: cnet_isa_b521d82125 (IsA access right) (STV 1.0 0.9091)) +(: cnet_isa_e9ca5fee11 (IsA access operation) (STV 1.0 0.9091)) +(: cnet_isa_c3b95ab01a (IsA access_code code) (STV 1.0 0.9091)) +(: cnet_isa_140e9fb604 (IsA access_road road) (STV 1.0 0.9091)) +(: cnet_isa_60b61fbd58 (IsA access_time time_interval) (STV 1.0 0.9091)) +(: cnet_isa_28d3761308 (IsA accession attainment) (STV 1.0 0.9091)) +(: cnet_isa_c2e53701dc (IsA accession property_right) (STV 1.0 0.9091)) +(: cnet_isa_8c3f8f92cc (IsA accession agreement) (STV 1.0 0.9091)) +(: cnet_isa_95a6495b54 (IsA accession acquisition) (STV 1.0 0.9091)) +(: cnet_isa_32beb4aee5 (IsA accession increase) (STV 1.0 0.9091)) +(: cnet_isa_aed24e594e (IsA accessory clothing) (STV 1.0 0.9091)) +(: cnet_isa_56edcd6658 (IsA accessory component) (STV 1.0 0.9091)) +(: cnet_isa_ea0bea9e28 (IsA accessory criminal) (STV 1.0 0.9091)) +(: cnet_isa_40d775aa2f (IsA accessory_after_fact accessory) (STV 1.0 0.9091)) +(: cnet_isa_7edc1a39ed (IsA accessory_before_fact accessory) (STV 1.0 0.9091)) +(: cnet_isa_8a8a463781 (IsA accessory_cephalic_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_79b546a689 (IsA accessory_during_fact accessory) (STV 1.0 0.9091)) +(: cnet_isa_0f7554dd4c (IsA accessory_fruit fruit) (STV 1.0 0.9091)) +(: cnet_isa_88878973bd (IsA accessory_hemiazygo_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_b5caec0039 (IsA accessory_nerve cranial_nerve) (STV 1.0 0.9091)) +(: cnet_isa_2d11b55721 (IsA accessory_vertebral_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_e9b0840681 (IsA accident happening) (STV 1.0 0.9091)) +(: cnet_isa_6bb95763b0 (IsA accident mishap) (STV 1.0 0.9091)) +(: cnet_isa_0bad4e1752 (IsA accidental musical_notation) (STV 1.0 0.9091)) +(: cnet_isa_60367cedd2 (IsA accipiter bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_37db0131a8 (IsA accipitridae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_36355d12d4 (IsA accipitriforme bird_of_prey) (STV 1.0 0.9091)) +(: cnet_isa_cc41d998be (IsA acclaim approval) (STV 1.0 0.9091)) +(: cnet_isa_f0a82f45ed (IsA acclimatization adaptation) (STV 1.0 0.9091)) +(: cnet_isa_5c647579f8 (IsA accommodating_len_implant len_implant) (STV 1.0 0.9091)) +(: cnet_isa_f1f0316e6a (IsA accommodation aid) (STV 1.0 0.9091)) +(: cnet_isa_bbe2b73394 (IsA accommodation living_quarter) (STV 1.0 0.9091)) +(: cnet_isa_7612640f75 (IsA accommodation developmental_learning) (STV 1.0 0.9091)) +(: cnet_isa_49f63f43c4 (IsA accommodation settlement) (STV 1.0 0.9091)) +(: cnet_isa_3bef56f7d8 (IsA accommodation alteration) (STV 1.0 0.9091)) +(: cnet_isa_0043aa8c32 (IsA accommodation_endorser endorser) (STV 1.0 0.9091)) +(: cnet_isa_f5533b8ef6 (IsA accommodation_ladder sea_ladder) (STV 1.0 0.9091)) +(: cnet_isa_20301b2531 (IsA accommodation_reflex reflex) (STV 1.0 0.9091)) +(: cnet_isa_44e6abcaae (IsA accompaniment part) (STV 1.0 0.9091)) +(: cnet_isa_bed66c6edc (IsA accompaniment happening) (STV 1.0 0.9091)) +(: cnet_isa_551c7f9d24 (IsA accompanist musician) (STV 1.0 0.9091)) +(: cnet_isa_0b6c1dd8e8 (IsA accompanying_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_8fa2418721 (IsA accomplice assistant) (STV 1.0 0.9091)) +(: cnet_isa_203d549f5f (IsA accomplishment action) (STV 1.0 0.9091)) +(: cnet_isa_f93a479bdc (IsA accord compatibility) (STV 1.0 0.9091)) +(: cnet_isa_bef2f74662 (IsA accord agreement) (STV 1.0 0.9091)) +(: cnet_isa_fd48a548dd (IsA accord_and_satisfaction settlement) (STV 1.0 0.9091)) +(: cnet_isa_0779dce75f (IsA accordance giving) (STV 1.0 0.9091)) +(: cnet_isa_802f70a9cf (IsA accordian musical_instrument) (STV 1.0 0.9608)) +(: cnet_isa_b961bcd595 (IsA accordion instrument) (STV 1.0 0.9339)) +(: cnet_isa_b1cb4b4fa9 (IsA accordion accordion) (STV 1.0 0.9091)) +(: cnet_isa_3b7d53ea78 (IsA accordion free_reed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_1a5d8afd65 (IsA accordion keyboard_instrument) (STV 1.0 0.9091)) +(: cnet_isa_c4d35fb6bc (IsA accordionist musician) (STV 1.0 0.9091)) +(: cnet_isa_3591088610 (IsA account importance) (STV 1.0 0.9091)) +(: cnet_isa_cf952e8765 (IsA account profit) (STV 1.0 0.9091)) +(: cnet_isa_3d25de7514 (IsA account statement) (STV 1.0 0.9091)) +(: cnet_isa_09653d4bd3 (IsA account relationship) (STV 1.0 0.9091)) +(: cnet_isa_cf8b7cf207 (IsA account_executive businessperson) (STV 1.0 0.9091)) +(: cnet_isa_c79c765815 (IsA account_payable indebtedness) (STV 1.0 0.9091)) +(: cnet_isa_5adcb7faea (IsA accountability responsibility) (STV 1.0 0.9091)) +(: cnet_isa_bced6426f1 (IsA accountancy occupation) (STV 1.0 0.9091)) +(: cnet_isa_b19978560b (IsA accountant businessperson) (STV 1.0 0.9091)) +(: cnet_isa_0f81ac4787 (IsA accountantship position) (STV 1.0 0.9091)) +(: cnet_isa_4fdcb2ec79 (IsA accounting system) (STV 1.0 0.9091)) +(: cnet_isa_2bfd43d5b1 (IsA accounting explanation) (STV 1.0 0.9091)) +(: cnet_isa_54c2562fc0 (IsA accounting register) (STV 1.0 0.9091)) +(: cnet_isa_071fc4b3fb (IsA accounting_data data) (STV 1.0 0.9091)) +(: cnet_isa_e0354a5fde (IsA accounting_firm firm) (STV 1.0 0.9091)) +(: cnet_isa_475ec3eff7 (IsA accounting_principle principle) (STV 1.0 0.9091)) +(: cnet_isa_0abfa0875c (IsA account_payable liability) (STV 1.0 0.9091)) +(: cnet_isa_bfbf6bbd6e (IsA account_receivable asset) (STV 1.0 0.9091)) +(: cnet_isa_926d159cad (IsA accreditation certification) (STV 1.0 0.9091)) +(: cnet_isa_a90e5f27e3 (IsA accretion increase) (STV 1.0 0.9091)) +(: cnet_isa_290241b797 (IsA accretion inheritance) (STV 1.0 0.9091)) +(: cnet_isa_2c6171a0df (IsA accretion addition) (STV 1.0 0.9091)) +(: cnet_isa_1348d7b32e (IsA accrual_basis accounting) (STV 1.0 0.9091)) +(: cnet_isa_64bc07b41d (IsA acculturation content) (STV 1.0 0.9091)) +(: cnet_isa_fe6658bf67 (IsA acculturation education) (STV 1.0 0.9091)) +(: cnet_isa_e461c82c34 (IsA accumulation increase) (STV 1.0 0.9091)) +(: cnet_isa_ffeefbce71 (IsA accumulation net_income) (STV 1.0 0.9091)) +(: cnet_isa_efe0736ad0 (IsA accumulator register) (STV 1.0 0.9091)) +(: cnet_isa_0a67668ce8 (IsA accuracy quality) (STV 1.0 0.9091)) +(: cnet_isa_adb9c9b833 (IsA accusation assertion) (STV 1.0 0.9091)) +(: cnet_isa_41e8c15ece (IsA accusation charge) (STV 1.0 0.9091)) +(: cnet_isa_9166433e88 (IsA accusative oblique) (STV 1.0 0.9091)) +(: cnet_isa_812f3d7ac2 (IsA accused defendant) (STV 1.0 0.9091)) +(: cnet_isa_5ca324426e (IsA accuser disputant) (STV 1.0 0.9091)) +(: cnet_isa_9d9c1610fe (IsA ace serve) (STV 1.0 0.9091)) +(: cnet_isa_7d181843cc (IsA ace playing_card) (STV 1.0 0.9091)) +(: cnet_isa_2d38606bcc (IsA ace expert) (STV 1.0 0.9091)) +(: cnet_isa_e39916c099 (IsA ace_inhibitor antihypertensive) (STV 1.0 0.9091)) +(: cnet_isa_28cdb3a6be (IsA ace_of_club ace) (STV 1.0 0.9091)) +(: cnet_isa_ec409163dd (IsA ace_of_diamond ace) (STV 1.0 0.9091)) +(: cnet_isa_34be14dc53 (IsA ace_of_heart ace) (STV 1.0 0.9091)) +(: cnet_isa_9479b752f5 (IsA ace_of_spade ace) (STV 1.0 0.9091)) +(: cnet_isa_619e631dfd (IsA acebutolol beta_blocker) (STV 1.0 0.9091)) +(: cnet_isa_d4c9ee6c08 (IsA acentric_chromosome chromosome) (STV 1.0 0.9091)) +(: cnet_isa_abcd6e97e5 (IsA acephalia abnormality) (STV 1.0 0.9091)) +(: cnet_isa_60d7f873cb (IsA acer dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_97652aa391 (IsA aceraceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_d6ed1127cf (IsA acerate_leaf simple_leaf) (STV 1.0 0.9091)) +(: cnet_isa_68fcf4382c (IsA acerbity bitterness) (STV 1.0 0.9091)) +(: cnet_isa_42b3499d9f (IsA acerbity sourness) (STV 1.0 0.9091)) +(: cnet_isa_639a52c5a8 (IsA acerola berry) (STV 1.0 0.9091)) +(: cnet_isa_1da6166adb (IsA acervulus fruiting_body) (STV 1.0 0.9091)) +(: cnet_isa_1336a55c36 (IsA acetabulum socket) (STV 1.0 0.9091)) +(: cnet_isa_6e489b35a1 (IsA acetal organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_826504262d (IsA acetaldehyde aldehyde) (STV 1.0 0.9091)) +(: cnet_isa_77046f2820 (IsA acetaldol aldol) (STV 1.0 0.9091)) +(: cnet_isa_9030952ac3 (IsA acetamide amide) (STV 1.0 0.9091)) +(: cnet_isa_8d126e981b (IsA acetaminophen pain_reliever_and_fever_reducer) (STV 1.0 0.9091)) +(: cnet_isa_0ab844d396 (IsA acetaminophen analgesic) (STV 1.0 0.9091)) +(: cnet_isa_e76b259ed7 (IsA acetanilide analgesic) (STV 1.0 0.9091)) +(: cnet_isa_46bea0c05b (IsA acetate salt) (STV 1.0 0.9091)) +(: cnet_isa_f790e5d681 (IsA acetate_disk disk) (STV 1.0 0.9091)) +(: cnet_isa_b0f3bda6bb (IsA acetate_rayon rayon) (STV 1.0 0.9091)) +(: cnet_isa_8855bbf948 (IsA acetic_acid carboxylic_acid) (STV 1.0 0.9091)) +(: cnet_isa_9d53b7dc1a (IsA acetic_anhydride anhydride) (STV 1.0 0.9091)) +(: cnet_isa_98c27af6da (IsA acetin acetate) (STV 1.0 0.9091)) +(: cnet_isa_e65b204aca (IsA acetoacetic_acid ketone_body) (STV 1.0 0.9091)) +(: cnet_isa_e7505ba1a0 (IsA acetone ketone) (STV 1.0 0.9091)) +(: cnet_isa_d7eb39e167 (IsA acetone solvent) (STV 1.0 0.9091)) +(: cnet_isa_74236eb325 (IsA acetophenetidin analgesic) (STV 1.0 0.9091)) +(: cnet_isa_48a2e9f827 (IsA acetum acetic_acid) (STV 1.0 0.9091)) +(: cnet_isa_f949f03bc1 (IsA acetyl acyl) (STV 1.0 0.9091)) +(: cnet_isa_dd39d886d6 (IsA acetyl_chloride acyl_halide) (STV 1.0 0.9091)) +(: cnet_isa_21c7105a87 (IsA acetylation acylation) (STV 1.0 0.9091)) +(: cnet_isa_9677baeff2 (IsA acetylcholine neurotransmitter) (STV 1.0 0.9091)) +(: cnet_isa_e91a14edf5 (IsA acetylene aliphatic_compound) (STV 1.0 0.9091)) +(: cnet_isa_028c62b20d (IsA achaian hellene) (STV 1.0 0.9091)) +(: cnet_isa_fa0e8a34a8 (IsA ache pain) (STV 1.0 0.9091)) +(: cnet_isa_2f9e044836 (IsA achene fruit) (STV 1.0 0.9091)) +(: cnet_isa_3c2253b5d7 (IsA acherontia arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_5242ad9d0c (IsA acheson_process industrial_process) (STV 1.0 0.9091)) +(: cnet_isa_64e7c3bacb (IsA acheta arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_fab77de5de (IsA achievability possibility) (STV 1.0 0.9091)) +(: cnet_isa_4f9d56c9bd (IsA achiever person) (STV 1.0 0.9091)) +(: cnet_isa_edbb740506 (IsA achillea herb) (STV 1.0 0.9091)) +(: cnet_isa_7815100928 (IsA achille_heel weak_part) (STV 1.0 0.9091)) +(: cnet_isa_6494ea8a94 (IsA achille_tendon tendon) (STV 1.0 0.9091)) +(: cnet_isa_24365a6446 (IsA achimene flower) (STV 1.0 0.9091)) +(: cnet_isa_ea039a977f (IsA achira canna) (STV 1.0 0.9091)) +(: cnet_isa_042c8ed221 (IsA achlorhydria disorder) (STV 1.0 0.9091)) +(: cnet_isa_fd8ae7cb08 (IsA achoerodus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_04ba1f9ae6 (IsA acholia disorder) (STV 1.0 0.9091)) +(: cnet_isa_056fda4143 (IsA achomawi shastan) (STV 1.0 0.9091)) +(: cnet_isa_2e2fa51d38 (IsA achomawi hoka) (STV 1.0 0.9091)) +(: cnet_isa_a1847a2949 (IsA achondrite rock) (STV 1.0 0.9091)) +(: cnet_isa_544a7b4ef3 (IsA achondroplasia genetic_disease) (STV 1.0 0.9091)) +(: cnet_isa_c44893c7dd (IsA achra dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9d99843f8e (IsA achromatic_color color) (STV 1.0 0.9091)) +(: cnet_isa_197d6d230f (IsA achromatic_len compound_len) (STV 1.0 0.9091)) +(: cnet_isa_f0a4eefd5e (IsA achromatic_vision sight) (STV 1.0 0.9091)) +(: cnet_isa_862825a247 (IsA achromatin body_substance) (STV 1.0 0.9091)) +(: cnet_isa_128805bacd (IsA achromia colorlessness) (STV 1.0 0.9091)) +(: cnet_isa_bb6c38b0f5 (IsA achylia disorder) (STV 1.0 0.9091)) +(: cnet_isa_6f302763b0 (IsA acicula part) (STV 1.0 0.9091)) +(: cnet_isa_81c5ad0580 (IsA acid lysergic_acid_diethylamide) (STV 1.0 0.9091)) +(: cnet_isa_a22d174fd7 (IsA acid compound) (STV 1.0 0.9091)) +(: cnet_isa_0b59ed3467 (IsA acid_base_equilibrium chemical_equilibrium) (STV 1.0 0.9091)) +(: cnet_isa_4d99d000f8 (IsA acid_base_indicator indicator) (STV 1.0 0.9091)) +(: cnet_isa_4d2d89c4f8 (IsA acid_dye dye) (STV 1.0 0.9091)) +(: cnet_isa_aa172be1c3 (IsA acid_head head) (STV 1.0 0.9091)) +(: cnet_isa_b7e88e87a4 (IsA acid_rain air_pollution) (STV 1.0 0.9091)) +(: cnet_isa_375b5e17bf (IsA acid_test appraisal) (STV 1.0 0.9091)) +(: cnet_isa_0dc3e07ece (IsA acid_value definite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_6bba8e0b57 (IsA acidemia blood_disease) (STV 1.0 0.9091)) +(: cnet_isa_5754b9c542 (IsA acidic_hydrogen hydrogen_atom) (STV 1.0 0.9091)) +(: cnet_isa_9fb7bf9809 (IsA acidification natural_process) (STV 1.0 0.9091)) +(: cnet_isa_52169f8bd9 (IsA acidimetry volumetric_analysis) (STV 1.0 0.9091)) +(: cnet_isa_0eef7a7aef (IsA acidity ph) (STV 1.0 0.9091)) +(: cnet_isa_bdf0bea35f (IsA acidity sour) (STV 1.0 0.9091)) +(: cnet_isa_be0aa465db (IsA acidophil bacteria) (STV 1.0 0.9091)) +(: cnet_isa_047282f0a7 (IsA acidophilus lactobacillus) (STV 1.0 0.9091)) +(: cnet_isa_523c63becb (IsA acidophilus probiotic_microflora) (STV 1.0 0.9091)) +(: cnet_isa_d2f7918565 (IsA acidophilus_milk milk) (STV 1.0 0.9091)) +(: cnet_isa_4c3c3d983b (IsA acidosis pathology) (STV 1.0 0.9091)) +(: cnet_isa_bf26f2eb6b (IsA acinonyx mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_8ce2d432fd (IsA acino asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_11d6908067 (IsA acinus sac) (STV 1.0 0.9091)) +(: cnet_isa_260a1c5ae1 (IsA acinus drupelet) (STV 1.0 0.9091)) +(: cnet_isa_c84b519c84 (IsA acipenser fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_612677e295 (IsA acipenseridae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_b4906653eb (IsA ackee edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_ac74d4b46f (IsA acknowledgment message) (STV 1.0 0.9091)) +(: cnet_isa_c67af3d62e (IsA aclinic_line line) (STV 1.0 0.9091)) +(: cnet_isa_90f1fa3495 (IsA acme degree) (STV 1.0 0.9091)) +(: cnet_isa_910000e7ec (IsA acne inflammatory_disease) (STV 1.0 0.9091)) +(: cnet_isa_0c587f732b (IsA acne skin_disease) (STV 1.0 0.9091)) +(: cnet_isa_494d9faf67 (IsA acne_rosacea acne) (STV 1.0 0.9091)) +(: cnet_isa_6d7251d6b0 (IsA acne_vulgaris acne) (STV 1.0 0.9091)) +(: cnet_isa_0f641c453c (IsA acnidosporidia class) (STV 1.0 0.9091)) +(: cnet_isa_279dfd319b (IsA acocanthera dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_51a555e179 (IsA acolyte clergyman) (STV 1.0 0.9091)) +(: cnet_isa_6c274875b5 (IsA acolyte holy_order) (STV 1.0 0.9091)) +(: cnet_isa_ac0590a1b8 (IsA aconite poisonous_plant) (STV 1.0 0.9091)) +(: cnet_isa_32a234d118 (IsA aconitum magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_de05fa51c6 (IsA acoraceae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_fe8c98dcd4 (IsA acorea abnormality) (STV 1.0 0.9091)) +(: cnet_isa_1a301e73bf (IsA acorn fruit) (STV 1.0 0.9091)) +(: cnet_isa_e77b58ec34 (IsA acorn_barnacle barnacle) (STV 1.0 0.9091)) +(: cnet_isa_07bd1666ac (IsA acorn_squash winter_squash) (STV 1.0 0.9091)) +(: cnet_isa_0dbea4e6de (IsA acorn_tube tube) (STV 1.0 0.9091)) +(: cnet_isa_b903c977be (IsA acorus monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_90198b1055 (IsA acoustic remedy) (STV 1.0 0.9091)) +(: cnet_isa_9c5f21d898 (IsA acoustic_buoy buoy) (STV 1.0 0.9091)) +(: cnet_isa_bbcdd8d58f (IsA acoustic_delay_line delay_line) (STV 1.0 0.9091)) +(: cnet_isa_c4f11c5a03 (IsA acoustic_device device) (STV 1.0 0.9091)) +(: cnet_isa_cffd9e461f (IsA acoustic_guitar guitar) (STV 1.0 0.9091)) +(: cnet_isa_6ab55cf4b3 (IsA acoustic_modem modem) (STV 1.0 0.9091)) +(: cnet_isa_74e12b8481 (IsA acoustic_nerve cranial_nerve) (STV 1.0 0.9091)) +(: cnet_isa_98551d36a9 (IsA acoustic_phenomenon physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_ad75bf0063 (IsA acoustic_power intensity) (STV 1.0 0.9091)) +(: cnet_isa_315e2e9faf (IsA acoustic_radiation_pressure radiation_pressure) (STV 1.0 0.9091)) +(: cnet_isa_c6efb609e2 (IsA acoustic_resistance resistance) (STV 1.0 0.9091)) +(: cnet_isa_8649a00ad4 (IsA acoustic_storage memory_device) (STV 1.0 0.9091)) +(: cnet_isa_4af974ad4e (IsA acoustician physicist) (STV 1.0 0.9091)) +(: cnet_isa_223a937389 (IsA acoustic physical_science) (STV 1.0 0.9091)) +(: cnet_isa_94e51041bc (IsA acquaintance information) (STV 1.0 0.9091)) +(: cnet_isa_5f1f642e8d (IsA acquaintance person) (STV 1.0 0.9091)) +(: cnet_isa_cecd1006ab (IsA acquaintance relationship) (STV 1.0 0.9091)) +(: cnet_isa_448b9ace8c (IsA acquiescence acceptance) (STV 1.0 0.9091)) +(: cnet_isa_b2d0727c13 (IsA acquired_hemochromatosis hemochromatosis) (STV 1.0 0.9091)) +(: cnet_isa_def93ce667 (IsA acquired_immunity immunity) (STV 1.0 0.9091)) +(: cnet_isa_c4955b0ad8 (IsA acquired_taste preference) (STV 1.0 0.9091)) +(: cnet_isa_9a1e7731a6 (IsA acquirer depository_financial_institution) (STV 1.0 0.9091)) +(: cnet_isa_4aaba208b8 (IsA acquirer financial_institution) (STV 1.0 0.9091)) +(: cnet_isa_59c4781f99 (IsA acquirer person) (STV 1.0 0.9091)) +(: cnet_isa_77526be754 (IsA acquiring act) (STV 1.0 0.9091)) +(: cnet_isa_47dc7779d9 (IsA acquisition acquiring) (STV 1.0 0.9091)) +(: cnet_isa_dd6c431bc2 (IsA acquisition transferred_property) (STV 1.0 0.9091)) +(: cnet_isa_aaefab2f23 (IsA acquisitiveness greed) (STV 1.0 0.9091)) +(: cnet_isa_93e3de9133 (IsA acquittal final_judgment) (STV 1.0 0.9091)) +(: cnet_isa_e9f9eeeece (IsA acquittance legal_document) (STV 1.0 0.9091)) +(: cnet_isa_151f97f47f (IsA acrasiomycete class) (STV 1.0 0.9091)) +(: cnet_isa_5b0a4f1188 (IsA acre area_unit) (STV 1.0 0.9091)) +(: cnet_isa_8ca47df07d (IsA acre_foot volume_unit) (STV 1.0 0.9091)) +(: cnet_isa_b262d3b8b5 (IsA acre_inch volume_unit) (STV 1.0 0.9091)) +(: cnet_isa_76be2ae043 (IsA acreage area) (STV 1.0 0.9091)) +(: cnet_isa_ce6b518af0 (IsA acrididae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_2a45bb28e9 (IsA acridity bitterness) (STV 1.0 0.9091)) +(: cnet_isa_09b25a7ef3 (IsA acridity disagreeableness) (STV 1.0 0.9091)) +(: cnet_isa_4551ce6112 (IsA acridity smell) (STV 1.0 0.9091)) +(: cnet_isa_addf1049a1 (IsA acridothere bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_3b9c94f29b (IsA acris amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_cb438ef3b2 (IsA acroanesthesia regional_anesthesia) (STV 1.0 0.9091)) +(: cnet_isa_bb00bd9dd4 (IsA acrobat athlete) (STV 1.0 0.9091)) +(: cnet_isa_16ae22b6f5 (IsA acrobate mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_88cd7d9840 (IsA acrobatic_stunt stunt) (STV 1.0 0.9091)) +(: cnet_isa_2afd2caceb (IsA acrobatic flight) (STV 1.0 0.9091)) +(: cnet_isa_ba285370f4 (IsA acrobatic gymnastic) (STV 1.0 0.9091)) +(: cnet_isa_3bec460129 (IsA acrocarp moss) (STV 1.0 0.9091)) +(: cnet_isa_6ea4ea94a9 (IsA acrocarpus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2d8e75202d (IsA acrocentric_chromosome chromosome) (STV 1.0 0.9091)) +(: cnet_isa_2ca2cd12a1 (IsA acrocephalus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_34644718c9 (IsA acroclinium asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_582214a762 (IsA acrocomia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_cb95777cba (IsA acrocyanosis cyanosis) (STV 1.0 0.9091)) +(: cnet_isa_ced6db5fd1 (IsA acrodont animal) (STV 1.0 0.9091)) +(: cnet_isa_38f9bcfaff (IsA acrogen plant) (STV 1.0 0.9091)) +(: cnet_isa_93798d1719 (IsA acromegaly hypertrophy) (STV 1.0 0.9091)) +(: cnet_isa_f82875c2f0 (IsA acromicria abnormality) (STV 1.0 0.9091)) +(: cnet_isa_924972271f (IsA acromion process) (STV 1.0 0.9091)) +(: cnet_isa_5ba4516db2 (IsA acromphalus abnormality) (STV 1.0 0.9091)) +(: cnet_isa_283311578d (IsA acromyotonia myotonia) (STV 1.0 0.9091)) +(: cnet_isa_ccc2b79644 (IsA acronym abbreviation) (STV 1.0 0.9091)) +(: cnet_isa_ef30635c60 (IsA acronym form) (STV 1.0 0.9091)) +(: cnet_isa_488ff07567 (IsA acrophobia simple_phobia) (STV 1.0 0.9091)) +(: cnet_isa_f26872b395 (IsA acrophony naming) (STV 1.0 0.9091)) +(: cnet_isa_b477bd3160 (IsA acropolis bastion) (STV 1.0 0.9091)) +(: cnet_isa_1dca442f1b (IsA acropora coelenterate_genus) (STV 1.0 0.9091)) +(: cnet_isa_c2e8633376 (IsA acrosome process) (STV 1.0 0.9091)) +(: cnet_isa_7ac2e298ef (IsA acrostic literary_composition) (STV 1.0 0.9091)) +(: cnet_isa_4d05d47bd0 (IsA acrostichum fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_60c423bcd5 (IsA acrylamide amide) (STV 1.0 0.9091)) +(: cnet_isa_3881fc33ad (IsA acrylic fabric) (STV 1.0 0.9091)) +(: cnet_isa_63b4493c12 (IsA acrylic paint) (STV 1.0 0.9091)) +(: cnet_isa_385fa58d84 (IsA acrylic synthetic_resin) (STV 1.0 0.9091)) +(: cnet_isa_b25dc988ac (IsA acrylic_fiber man_made_fiber) (STV 1.0 0.9091)) +(: cnet_isa_484d8a6d75 (IsA acrylonitrile_butadiene_styrene plastic) (STV 1.0 0.9091)) +(: cnet_isa_4d1a2cf00e (IsA act event) (STV 1.0 0.9091)) +(: cnet_isa_b64bf73b4c (IsA act dramatic_composition) (STV 1.0 0.9091)) +(: cnet_isa_ddd1b00065 (IsA act expression) (STV 1.0 0.9091)) +(: cnet_isa_afdf969aaf (IsA act performance) (STV 1.0 0.9091)) +(: cnet_isa_ebbe3045b6 (IsA act legal_document) (STV 1.0 0.9091)) +(: cnet_isa_35bad22494 (IsA act_of_god calamity) (STV 1.0 0.9091)) +(: cnet_isa_24e994eff2 (IsA actaea magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d55686bc2f (IsA actia arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_ca52e05aca (IsA actin simple_protein) (STV 1.0 0.9091)) +(: cnet_isa_ab578f878c (IsA acting activity) (STV 1.0 0.9091)) +(: cnet_isa_36e18a446e (IsA acting performing_art) (STV 1.0 0.9091)) +(: cnet_isa_17d4f10b76 (IsA acting_out effusion) (STV 1.0 0.9091)) +(: cnet_isa_46ffab0399 (IsA acting_out display) (STV 1.0 0.9091)) +(: cnet_isa_237ef81d50 (IsA actinia coelenterate_genus) (STV 1.0 0.9091)) +(: cnet_isa_26a2eb72fa (IsA actinia sea_anemone) (STV 1.0 0.9091)) +(: cnet_isa_b68e97cd56 (IsA actiniaria animal_order) (STV 1.0 0.9091)) +(: cnet_isa_8e47b0514a (IsA actinic_dermatitis dermatitis) (STV 1.0 0.9091)) +(: cnet_isa_ab7bcdd1ab (IsA actinic_keratosis keratosis) (STV 1.0 0.9091)) +(: cnet_isa_bf2d3f9558 (IsA actinic_radiation electromagnetic_radiation) (STV 1.0 0.9091)) +(: cnet_isa_d73b07b072 (IsA actinide_sery sery) (STV 1.0 0.9091)) +(: cnet_isa_3c403cb758 (IsA actinidia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9787180e03 (IsA actinidiaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_dd5879f5c5 (IsA actiniopteris fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_ee4011f268 (IsA actinism property) (STV 1.0 0.9091)) +(: cnet_isa_bfd090d978 (IsA actinium chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_be2befcb9e (IsA actinoid group) (STV 1.0 0.9091)) +(: cnet_isa_4f15e0ed9f (IsA actinolite amphibole) (STV 1.0 0.9091)) +(: cnet_isa_8aeff44d5e (IsA actinomeris asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ccdf5e0fa1 (IsA actinometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_79bcc30aa3 (IsA actinometry measurement) (STV 1.0 0.9091)) +(: cnet_isa_e0bf994979 (IsA actinomyce eubacteria) (STV 1.0 0.9091)) +(: cnet_isa_3f318a6e26 (IsA actinomycetaceae bacteria_family) (STV 1.0 0.9091)) +(: cnet_isa_f18a86b0a4 (IsA actinomycetale animal_order) (STV 1.0 0.9091)) +(: cnet_isa_8b4e745fdc (IsA actinomycete eubacteria) (STV 1.0 0.9091)) +(: cnet_isa_0e74207d0c (IsA actinomycin antibiotic) (STV 1.0 0.9091)) +(: cnet_isa_1f3df0d357 (IsA actinomycosis zoonosis) (STV 1.0 0.9091)) +(: cnet_isa_1755790f29 (IsA actinomyxidia animal_order) (STV 1.0 0.9091)) +(: cnet_isa_e631995dbe (IsA actinomyxidian sporozoan) (STV 1.0 0.9091)) +(: cnet_isa_e113042570 (IsA actinopod sarcodinian) (STV 1.0 0.9091)) +(: cnet_isa_6359abdb34 (IsA actinopoda class) (STV 1.0 0.9091)) +(: cnet_isa_3ba74e29c9 (IsA action act) (STV 1.0 0.9091)) +(: cnet_isa_bb82b8d7c6 (IsA action group_action) (STV 1.0 0.9091)) +(: cnet_isa_2c04c4f8f5 (IsA action work) (STV 1.0 0.9091)) +(: cnet_isa_98b956a6de (IsA action mechanism) (STV 1.0 0.9091)) +(: cnet_isa_7c802f37e6 (IsA action drive) (STV 1.0 0.9091)) +(: cnet_isa_07c9608b4c (IsA action plot) (STV 1.0 0.9091)) +(: cnet_isa_d337c24e0f (IsA action state) (STV 1.0 0.9091)) +(: cnet_isa_1b383642c8 (IsA action_officer case_officer) (STV 1.0 0.9091)) +(: cnet_isa_b33845fd6b (IsA action_potential nerve_impulse) (STV 1.0 0.9091)) +(: cnet_isa_aa1836953a (IsA action_spectrum spectrum) (STV 1.0 0.9091)) +(: cnet_isa_eae8141bf1 (IsA actitis bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_728d7fc0da (IsA activated_carbon carbon) (STV 1.0 0.9091)) +(: cnet_isa_41bafc930a (IsA activating_agent activator) (STV 1.0 0.9091)) +(: cnet_isa_65ef9d2f22 (IsA activation beginning) (STV 1.0 0.9091)) +(: cnet_isa_f1b6d57026 (IsA activation stimulation) (STV 1.0 0.9091)) +(: cnet_isa_038f6ed1e7 (IsA activation_energy energy) (STV 1.0 0.9091)) +(: cnet_isa_10e6f3dd2b (IsA activator substance) (STV 1.0 0.9091)) +(: cnet_isa_c23ad26548 (IsA active person) (STV 1.0 0.9091)) +(: cnet_isa_458cd5853b (IsA active_agent chemical_agent) (STV 1.0 0.9091)) +(: cnet_isa_2513ab2f55 (IsA active_air_defense air_defense) (STV 1.0 0.9091)) +(: cnet_isa_ebd1269808 (IsA active_application application) (STV 1.0 0.9091)) +(: cnet_isa_a9596e08b5 (IsA active_birth childbirth) (STV 1.0 0.9091)) +(: cnet_isa_82afa520c0 (IsA active_citizen citizen) (STV 1.0 0.9091)) +(: cnet_isa_10c623cba3 (IsA active_immunity acquired_immunity) (STV 1.0 0.9091)) +(: cnet_isa_c0a13af738 (IsA active_matrix_screen liquid_crystal_display) (STV 1.0 0.9091)) +(: cnet_isa_5f419a5fd3 (IsA active_placebo placebo) (STV 1.0 0.9091)) +(: cnet_isa_efae5582e2 (IsA active_site site) (STV 1.0 0.9091)) +(: cnet_isa_944ee55902 (IsA active_transport transport) (STV 1.0 0.9091)) +(: cnet_isa_aaa9040718 (IsA active_trust trust) (STV 1.0 0.9091)) +(: cnet_isa_af5ca22a07 (IsA active_voice voice) (STV 1.0 0.9091)) +(: cnet_isa_127b0425ba (IsA activeness trait) (STV 1.0 0.9091)) +(: cnet_isa_a42c9e3505 (IsA activism policy) (STV 1.0 0.9091)) +(: cnet_isa_bd13389a25 (IsA activity action) (STV 1.0 0.9339)) +(: cnet_isa_004bb52b84 (IsA activity act) (STV 1.0 0.9091)) +(: cnet_isa_54c78f9bc1 (IsA activity capability) (STV 1.0 0.9091)) +(: cnet_isa_b6ef7c8968 (IsA actomyosin protein) (STV 1.0 0.9091)) +(: cnet_isa_b8300a2ae4 (IsA actor_s_agent business_agent) (STV 1.0 0.9091)) +(: cnet_isa_ffd9d1c313 (IsA actor_s_line line) (STV 1.0 0.9091)) +(: cnet_isa_1b6455e3ec (IsA actor performer) (STV 1.0 0.9091)) +(: cnet_isa_9943fcde6a (IsA actor person) (STV 1.0 0.9091)) +(: cnet_isa_ccd4ed5238 (IsA actor people) (STV 1.0 0.9454)) +(: cnet_isa_70a51100fc (IsA actress actor) (STV 1.0 0.9091)) +(: cnet_isa_b10861433d (IsA actual_damage damage) (STV 1.0 0.9091)) +(: cnet_isa_ffbd3060e6 (IsA actual_eviction eviction) (STV 1.0 0.9091)) +(: cnet_isa_295f6cc5d1 (IsA actual_possession possession) (STV 1.0 0.9091)) +(: cnet_isa_5352cc4d53 (IsA actual_sin sin) (STV 1.0 0.9091)) +(: cnet_isa_8b2851a50b (IsA actuality being) (STV 1.0 0.9091)) +(: cnet_isa_45fdad4069 (IsA actuarial_table table) (STV 1.0 0.9091)) +(: cnet_isa_02cb389a36 (IsA actuator mechanism) (STV 1.0 0.9091)) +(: cnet_isa_71f159a9ef (IsA acuity sight) (STV 1.0 0.9091)) +(: cnet_isa_6e85378fbc (IsA aculea process) (STV 1.0 0.9091)) +(: cnet_isa_9fb0d65fd6 (IsA aculeus stinger) (STV 1.0 0.9091)) +(: cnet_isa_2c977b8a93 (IsA aculeus plant_process) (STV 1.0 0.9091)) +(: cnet_isa_1630a3b0b4 (IsA acumen plant_process) (STV 1.0 0.9091)) +(: cnet_isa_3d56222d67 (IsA acuminate_leaf simple_leaf) (STV 1.0 0.9091)) +(: cnet_isa_60c02af7ba (IsA acupressure treatment) (STV 1.0 0.9091)) +(: cnet_isa_090aed57a3 (IsA acupuncture treatment) (STV 1.0 0.9091)) +(: cnet_isa_a342ba4624 (IsA acute_accent accent) (STV 1.0 0.9091)) +(: cnet_isa_2db80335c5 (IsA acute_angle oblique_angle) (STV 1.0 0.9091)) +(: cnet_isa_b89814b11c (IsA acute_brain_disorder disorder) (STV 1.0 0.9091)) +(: cnet_isa_77c5e9a0a0 (IsA acute_gastritis gastritis) (STV 1.0 0.9091)) +(: cnet_isa_bff0a18dfb (IsA acute_glaucoma glaucoma) (STV 1.0 0.9091)) +(: cnet_isa_bad011ad5f (IsA acute_glossitis glossitis) (STV 1.0 0.9091)) +(: cnet_isa_ea9773176b (IsA acute_hemorrhagic_encephalitis encephalitis) (STV 1.0 0.9091)) +(: cnet_isa_82374dc5e0 (IsA acute_leukemia leukemia) (STV 1.0 0.9091)) +(: cnet_isa_ebeca77ca8 (IsA acute_lymphocytic_leukemia acute_leukemia) (STV 1.0 0.9091)) +(: cnet_isa_87aad32a8b (IsA acute_myelocytic_leukemia acute_leukemia) (STV 1.0 0.9091)) +(: cnet_isa_b13ac91cc5 (IsA acute_myelocytic_leukemia myelocytic_leukemia) (STV 1.0 0.9091)) +(: cnet_isa_4362a56f6f (IsA acute_pyelonephritis pyelonephritis) (STV 1.0 0.9091)) +(: cnet_isa_dffd666a68 (IsA acute_renal_failure renal_failure) (STV 1.0 0.9091)) +(: cnet_isa_7d0d3f20cf (IsA acute_schizophrenic_episode schizophrenia) (STV 1.0 0.9091)) +(: cnet_isa_004567e031 (IsA acute_triangle triangle) (STV 1.0 0.9091)) +(: cnet_isa_047dfb88fb (IsA acuteness sharpness) (STV 1.0 0.9091)) +(: cnet_isa_c1872f0b27 (IsA acuteness intelligence) (STV 1.0 0.9091)) +(: cnet_isa_4259aa60a9 (IsA acuteness sensitivity) (STV 1.0 0.9091)) +(: cnet_isa_925d22d7db (IsA acyl group) (STV 1.0 0.9091)) +(: cnet_isa_d70b9e6aa2 (IsA acyl_anhydride organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_d18d8603d4 (IsA acyl_halide organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_682a4f1e06 (IsA acylation chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_10602cd2a9 (IsA ad promotion) (STV 1.0 0.9091)) +(: cnet_isa_4f39cfd44d (IsA ad_lib remark) (STV 1.0 0.9091)) +(: cnet_isa_17541e74ee (IsA ada_scid severe_combined_immunodeficiency) (STV 1.0 0.9091)) +(: cnet_isa_4c2742c90e (IsA adactylia meromelia) (STV 1.0 0.9091)) +(: cnet_isa_5c18e90891 (IsA adagio dancing) (STV 1.0 0.9091)) +(: cnet_isa_e2d3bf5683 (IsA adagio musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_be615f7071 (IsA adagio passage) (STV 1.0 0.9091)) +(: cnet_isa_6c27b868f7 (IsA adalia arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_a5e6b38f30 (IsA adam_s_needle yucca) (STV 1.0 0.9091)) +(: cnet_isa_8ec46dfc68 (IsA adam methylenedioxymethamphetamine) (STV 1.0 0.9091)) +(: cnet_isa_a84edb0b1d (IsA adamance resoluteness) (STV 1.0 0.9091)) +(: cnet_isa_8788f91dd4 (IsA adansonia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3d3e833326 (IsA adapid taxonomic_group) (STV 1.0 0.9091)) +(: cnet_isa_4c707ff3e0 (IsA adaptability ability) (STV 1.0 0.9091)) +(: cnet_isa_a7b5ef0394 (IsA adaptation writing) (STV 1.0 0.9091)) +(: cnet_isa_18bc8a1e36 (IsA adaptation alteration) (STV 1.0 0.9091)) +(: cnet_isa_c00f2de9cc (IsA adaptation organic_process) (STV 1.0 0.9091)) +(: cnet_isa_cb13d05774 (IsA adapter device) (STV 1.0 0.9091)) +(: cnet_isa_7a1f2aeff2 (IsA adaptive_radiation radiation) (STV 1.0 0.9091)) +(: cnet_isa_5f3837b171 (IsA adar jewish_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_cfbf3f8977 (IsA addax antelope) (STV 1.0 0.9091)) +(: cnet_isa_afe8916f6f (IsA addend number) (STV 1.0 0.9091)) +(: cnet_isa_39fc470c7e (IsA addendum matter) (STV 1.0 0.9091)) +(: cnet_isa_c5578f117d (IsA adder_s_tongue fern) (STV 1.0 0.9091)) +(: cnet_isa_8869132e87 (IsA adder viper) (STV 1.0 0.9091)) +(: cnet_isa_c7d205a7a4 (IsA adder calculator) (STV 1.0 0.9091)) +(: cnet_isa_6ac353a0a3 (IsA addict drug_user) (STV 1.0 0.9091)) +(: cnet_isa_05f651f39b (IsA addict enthusiast) (STV 1.0 0.9091)) +(: cnet_isa_a9ce40f4c1 (IsA addiction craving) (STV 1.0 0.9091)) +(: cnet_isa_b9fbd5a8c0 (IsA addiction physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_fae2489665 (IsA addiction award) (STV 1.0 0.9091)) +(: cnet_isa_829c89761f (IsA adding_machine calculator) (STV 1.0 0.9091)) +(: cnet_isa_26c6c7a2ab (IsA addison_s_disease glandular_disease) (STV 1.0 0.9091)) +(: cnet_isa_63808d3408 (IsA addition increase) (STV 1.0 0.9091)) +(: cnet_isa_62ff8c6305 (IsA addition component) (STV 1.0 0.9091)) +(: cnet_isa_de3e7aad07 (IsA addition suburb) (STV 1.0 0.9091)) +(: cnet_isa_7bed31496a (IsA addition indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_559cbf67b0 (IsA addition_reaction chemical_reaction) (STV 1.0 0.9091)) +(: cnet_isa_7f6b487972 (IsA additive addition) (STV 1.0 0.9091)) +(: cnet_isa_0171572ab9 (IsA additive_inverse inverse) (STV 1.0 0.9091)) +(: cnet_isa_be21d72180 (IsA addle_head misfit) (STV 1.0 0.9091)) +(: cnet_isa_5c9344d44c (IsA address direction) (STV 1.0 0.9091)) +(: cnet_isa_8755d97c22 (IsA address manner_of_speaking) (STV 1.0 0.9091)) +(: cnet_isa_f5930cce64 (IsA address speech_act) (STV 1.0 0.9091)) +(: cnet_isa_8096cbb8a6 (IsA address street_sign) (STV 1.0 0.9091)) +(: cnet_isa_6b059f1b60 (IsA address code) (STV 1.0 0.9091)) +(: cnet_isa_7369b0b64a (IsA address stance) (STV 1.0 0.9091)) +(: cnet_isa_8cf1283edc (IsA address geographic_point) (STV 1.0 0.9091)) +(: cnet_isa_d8faa4c218 (IsA addressee recipient) (STV 1.0 0.9091)) +(: cnet_isa_3dd736eca0 (IsA addressing_machine printer) (STV 1.0 0.9091)) +(: cnet_isa_1c98fc6dde (IsA adducer discussant) (STV 1.0 0.9091)) +(: cnet_isa_172864c5a2 (IsA adducing argument) (STV 1.0 0.9091)) +(: cnet_isa_c72ac513f1 (IsA adduct compound) (STV 1.0 0.9091)) +(: cnet_isa_022a7ea6c2 (IsA adduction motion) (STV 1.0 0.9091)) +(: cnet_isa_002f98d00b (IsA adductor skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_4f9f784cf6 (IsA adelge arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_ff5459d5a5 (IsA adelgid plant_louse) (STV 1.0 0.9091)) +(: cnet_isa_9ba1b2e0c7 (IsA adelgidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_86a97145b9 (IsA adelie penguin) (STV 1.0 0.9091)) +(: cnet_isa_51cbf47094 (IsA adenanthera rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_bc27185170 (IsA adenine purine) (STV 1.0 0.9091)) +(: cnet_isa_2e37ee18ae (IsA adenitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_ea83a97242 (IsA adenium dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0330549126 (IsA adenocarcinoma carcinoma) (STV 1.0 0.9091)) +(: cnet_isa_52e5c5e65e (IsA adenoidectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_b53336b545 (IsA adenoma benign_tumor) (STV 1.0 0.9091)) +(: cnet_isa_93f0fad281 (IsA adenomatous_polyp polyp) (STV 1.0 0.9091)) +(: cnet_isa_31c05d4ef7 (IsA adenomegaly hypertrophy) (STV 1.0 0.9091)) +(: cnet_isa_4b2fba3c37 (IsA adenopathy glandular_disease) (STV 1.0 0.9091)) +(: cnet_isa_121b096ddc (IsA adenosine nucleoside) (STV 1.0 0.9091)) +(: cnet_isa_347614c963 (IsA adenosine_deaminase enzyme) (STV 1.0 0.9091)) +(: cnet_isa_0b25233e6e (IsA adenosine_diphosphate nucleotide) (STV 1.0 0.9091)) +(: cnet_isa_3115fea19e (IsA adenosine_monophosphate nucleotide) (STV 1.0 0.9091)) +(: cnet_isa_d645a89a85 (IsA adenosine_triphosphate nucleotide) (STV 1.0 0.9091)) +(: cnet_isa_53e9ab3bc6 (IsA adenota mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_983916de14 (IsA adenovirus animal_virus) (STV 1.0 0.9091)) +(: cnet_isa_b03e7187bb (IsA adeptness skillfulness) (STV 1.0 0.9091)) +(: cnet_isa_320edfe05d (IsA adequacy satisfactoriness) (STV 1.0 0.9091)) +(: cnet_isa_55f998d407 (IsA ader_wax mineral) (STV 1.0 0.9091)) +(: cnet_isa_8b053833c4 (IsA adesite igneous_rock) (STV 1.0 0.9091)) +(: cnet_isa_ac0400b6e0 (IsA adhesion scar_tissue) (STV 1.0 0.9091)) +(: cnet_isa_e444df1190 (IsA adhesion pathology) (STV 1.0 0.9091)) +(: cnet_isa_0399c068f4 (IsA adhesion_contract contract) (STV 1.0 0.9091)) +(: cnet_isa_1fc68fd011 (IsA adhesive_bandage bandage) (STV 1.0 0.9091)) +(: cnet_isa_6e7e8f806f (IsA adhesive_material material) (STV 1.0 0.9091)) +(: cnet_isa_5a03526160 (IsA adhesive_tape tape) (STV 1.0 0.9091)) +(: cnet_isa_7e2f3b63ea (IsA adhesiveness stickiness) (STV 1.0 0.9091)) +(: cnet_isa_9b5f2707a9 (IsA adhocracy organization) (STV 1.0 0.9091)) +(: cnet_isa_6a1e536e29 (IsA adiabatic_process natural_process) (STV 1.0 0.9091)) +(: cnet_isa_3fce0c4532 (IsA adiantaceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_d068ff7b50 (IsA adiantum fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_050a73ef6a (IsA adience urge) (STV 1.0 0.9091)) +(: cnet_isa_b4658e6f4c (IsA adieu farewell) (STV 1.0 0.9091)) +(: cnet_isa_fd96e38571 (IsA adipose_tissue animal_tissue) (STV 1.0 0.9091)) +(: cnet_isa_8ecc32e0e9 (IsA adiposity fatness) (STV 1.0 0.9091)) +(: cnet_isa_0ea15f0c11 (IsA adit passage) (STV 1.0 0.9091)) +(: cnet_isa_9970611935 (IsA aditya hindu_deity) (STV 1.0 0.9091)) +(: cnet_isa_82ce93bad9 (IsA adjacency nearness) (STV 1.0 0.9091)) +(: cnet_isa_4a1e60dfc6 (IsA adjective major_form_class) (STV 1.0 0.9091)) +(: cnet_isa_919427b01b (IsA adjective modifier) (STV 1.0 0.9091)) +(: cnet_isa_9ef43f5e15 (IsA adjoining_room hotel_room) (STV 1.0 0.9091)) +(: cnet_isa_4dd53b2c40 (IsA adjournment postponement) (STV 1.0 0.9091)) +(: cnet_isa_bc8a1424bb (IsA adjournment termination) (STV 1.0 0.9091)) +(: cnet_isa_7becccf87c (IsA adjudication judgment) (STV 1.0 0.9091)) +(: cnet_isa_e950a635b5 (IsA adjudicator person) (STV 1.0 0.9091)) +(: cnet_isa_f4b041ac50 (IsA adjunct construction) (STV 1.0 0.9091)) +(: cnet_isa_5ff3b8f1aa (IsA adjunct inessential) (STV 1.0 0.9091)) +(: cnet_isa_5a44f39396 (IsA adjunct associate) (STV 1.0 0.9091)) +(: cnet_isa_960c7f0641 (IsA adjuration entreaty) (STV 1.0 0.9091)) +(: cnet_isa_54ec80c95d (IsA adjustable_wrench useful_tool) (STV 1.0 0.9091)) +(: cnet_isa_05542987e2 (IsA adjustable_wrench very_useful_tool) (STV 1.0 0.9572)) +(: cnet_isa_724ab10882 (IsA adjustable_wrench wrench) (STV 1.0 0.9091)) +(: cnet_isa_b592c6c7ec (IsA adjuster investigator) (STV 1.0 0.9091)) +(: cnet_isa_bcdc6a81c8 (IsA adjusting_entry entry) (STV 1.0 0.9091)) +(: cnet_isa_ac94a2ca80 (IsA adjustment calibration) (STV 1.0 0.9091)) +(: cnet_isa_3729855b44 (IsA adjustment improvement) (STV 1.0 0.9091)) +(: cnet_isa_22485ab2b5 (IsA adjutant military_officer) (STV 1.0 0.9091)) +(: cnet_isa_c51eecce94 (IsA adjutant_bird stork) (STV 1.0 0.9091)) +(: cnet_isa_2d7e60e42f (IsA adjutant_general adjutant) (STV 1.0 0.9091)) +(: cnet_isa_2cb00c27f8 (IsA adjuvant additive) (STV 1.0 0.9091)) +(: cnet_isa_a756dfec20 (IsA adlumia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6897f887ee (IsA admass populace) (STV 1.0 0.9091)) +(: cnet_isa_f0c10aed66 (IsA administration medication) (STV 1.0 0.9091)) +(: cnet_isa_ff5ba98012 (IsA administration management) (STV 1.0 0.9091)) +(: cnet_isa_8ee6ada431 (IsA administration body) (STV 1.0 0.9091)) +(: cnet_isa_11b15ef92c (IsA administrative_data_processing data_processing) (STV 1.0 0.9091)) +(: cnet_isa_a3a474f6a9 (IsA administrative_district district) (STV 1.0 0.9091)) +(: cnet_isa_0ae7884f5b (IsA administrative_hearing hearing) (STV 1.0 0.9091)) +(: cnet_isa_72ed91f6fa (IsA administrative_law law) (STV 1.0 0.9091)) +(: cnet_isa_056ff5cc74 (IsA administrative_unit unit) (STV 1.0 0.9091)) +(: cnet_isa_04a4ac8113 (IsA administrator fiduciary) (STV 1.0 0.9091)) +(: cnet_isa_758bdaca62 (IsA administrator head) (STV 1.0 0.9091)) +(: cnet_isa_8ec1b769fe (IsA administrivia running) (STV 1.0 0.9091)) +(: cnet_isa_85f72b3a43 (IsA admirability excellence) (STV 1.0 0.9091)) +(: cnet_isa_f497105d05 (IsA admiral nymphalid) (STV 1.0 0.9091)) +(: cnet_isa_640ae50b66 (IsA admiral flag_officer) (STV 1.0 0.9091)) +(: cnet_isa_9d3bb52538 (IsA admiralty position) (STV 1.0 0.9091)) +(: cnet_isa_5f0c276307 (IsA admiralty government_department) (STV 1.0 0.9091)) +(: cnet_isa_eece4b5675 (IsA admiration blessing) (STV 1.0 0.9091)) +(: cnet_isa_8baf0b86a6 (IsA admiration liking) (STV 1.0 0.9091)) +(: cnet_isa_860f7adb42 (IsA admirer lover) (STV 1.0 0.9091)) +(: cnet_isa_d903c653d5 (IsA admirer person) (STV 1.0 0.9091)) +(: cnet_isa_a41caa11b4 (IsA admissibility acceptability) (STV 1.0 0.9091)) +(: cnet_isa_babc8eda6c (IsA admission entrance) (STV 1.0 0.9091)) +(: cnet_isa_a4ffa1efa3 (IsA admission acknowledgment) (STV 1.0 0.9091)) +(: cnet_isa_e386609149 (IsA admission_day day) (STV 1.0 0.9091)) +(: cnet_isa_3d71194f39 (IsA admixture ingredient) (STV 1.0 0.9091)) +(: cnet_isa_12529747c4 (IsA admixture impurity) (STV 1.0 0.9091)) +(: cnet_isa_50cbd9c849 (IsA admonisher defender) (STV 1.0 0.9091)) +(: cnet_isa_a383f93180 (IsA admonition advice) (STV 1.0 0.9091)) +(: cnet_isa_60c6e77c87 (IsA admonition rebuke) (STV 1.0 0.9091)) +(: cnet_isa_dbe72dfae5 (IsA adnexa body_part) (STV 1.0 0.9091)) +(: cnet_isa_0109262f36 (IsA adnoun common_noun) (STV 1.0 0.9091)) +(: cnet_isa_ee2432cbe8 (IsA adobe brick) (STV 1.0 0.9091)) +(: cnet_isa_0c7d547674 (IsA adobe clay) (STV 1.0 0.9091)) +(: cnet_isa_20f99ea312 (IsA adobe_lily fritillary) (STV 1.0 0.9091)) +(: cnet_isa_4e2b3c1d57 (IsA adobo dish) (STV 1.0 0.9091)) +(: cnet_isa_a73dadab90 (IsA adolescence immaturity) (STV 1.0 0.9091)) +(: cnet_isa_a384dddeb5 (IsA adolescence time_of_life) (STV 1.0 0.9091)) +(: cnet_isa_93e048c3ce (IsA adolescent juvenile) (STV 1.0 0.9091)) +(: cnet_isa_205577d69e (IsA adonic verse) (STV 1.0 0.9091)) +(: cnet_isa_3890c540ce (IsA adonis daemon) (STV 1.0 0.9091)) +(: cnet_isa_c80db56272 (IsA adonis man) (STV 1.0 0.9091)) +(: cnet_isa_95e797ab03 (IsA adonis magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f8e4bd5576 (IsA adoptee person) (STV 1.0 0.9091)) +(: cnet_isa_6dcb1b532b (IsA adoption blessing) (STV 1.0 0.9091)) +(: cnet_isa_9f5433bfcc (IsA adoption proceeding) (STV 1.0 0.9091)) +(: cnet_isa_fb2d7c80e4 (IsA adoptive_parent parent) (STV 1.0 0.9091)) +(: cnet_isa_86a0e680ea (IsA adorability attractiveness) (STV 1.0 0.9091)) +(: cnet_isa_f8e7b59449 (IsA adoration admiration) (STV 1.0 0.9091)) +(: cnet_isa_4895cdfec3 (IsA adoration worship) (STV 1.0 0.9091)) +(: cnet_isa_842ce4334f (IsA adornment decoration) (STV 1.0 0.9091)) +(: cnet_isa_7c60fd21b9 (IsA adoxography writing) (STV 1.0 0.9091)) +(: cnet_isa_a09e5362bf (IsA adrenal_cortex cortex) (STV 1.0 0.9091)) +(: cnet_isa_945d7c8fb5 (IsA adrenal_cortex endocrine_gland) (STV 1.0 0.9091)) +(: cnet_isa_7536fc364f (IsA adrenal_gland endocrine_gland) (STV 1.0 0.9091)) +(: cnet_isa_5f1415f3e6 (IsA adrenal_medulla endocrine_gland) (STV 1.0 0.9091)) +(: cnet_isa_ef2f377fa6 (IsA adrenal_medulla medulla) (STV 1.0 0.9091)) +(: cnet_isa_836a6b88a2 (IsA adrenalectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_f224559eba (IsA adrenarche start) (STV 1.0 0.9091)) +(: cnet_isa_cbe5ace641 (IsA adrenergic vasoconstrictor) (STV 1.0 0.9091)) +(: cnet_isa_839d49c32f (IsA adrenergic_agonist_eyedrop eye_drop) (STV 1.0 0.9091)) +(: cnet_isa_2103a18dca (IsA adrenocorticotropic_hormone hormone) (STV 1.0 0.9091)) +(: cnet_isa_df09721f9d (IsA adrenosterone hormone) (STV 1.0 0.9091)) +(: cnet_isa_def5b2d997 (IsA adsorbate sorbate) (STV 1.0 0.9091)) +(: cnet_isa_9b030cdba2 (IsA adsorbent sorbent) (STV 1.0 0.9091)) +(: cnet_isa_005a2c4648 (IsA adsorption sorption) (STV 1.0 0.9091)) +(: cnet_isa_f282a56758 (IsA adulation flattery) (STV 1.0 0.9091)) +(: cnet_isa_e5586ca54b (IsA adult animal) (STV 1.0 0.9091)) +(: cnet_isa_b0d01ae0b9 (IsA adult person) (STV 1.0 0.9091)) +(: cnet_isa_5e8cb1bd3a (IsA adult_body human_body) (STV 1.0 0.9091)) +(: cnet_isa_171d35c96d (IsA adult_education course) (STV 1.0 0.9091)) +(: cnet_isa_3ab7f221c7 (IsA adult_female_body adult_body) (STV 1.0 0.9091)) +(: cnet_isa_671dd0e437 (IsA adult_female_body female_body) (STV 1.0 0.9091)) +(: cnet_isa_edcd1fd121 (IsA adult_intelligence intelligence_quotient) (STV 1.0 0.9091)) +(: cnet_isa_3bc9ff49f1 (IsA adult_male_body adult_body) (STV 1.0 0.9091)) +(: cnet_isa_6a564c0062 (IsA adult_male_body male_body) (STV 1.0 0.9091)) +(: cnet_isa_05e6f9574b (IsA adult_respiratory_distress_syndrome respiratory_disease) (STV 1.0 0.9091)) +(: cnet_isa_e606f90547 (IsA adulterant substance) (STV 1.0 0.9091)) +(: cnet_isa_95091f643a (IsA adulteration change) (STV 1.0 0.9091)) +(: cnet_isa_11dda282ac (IsA adulteration impurity) (STV 1.0 0.9091)) +(: cnet_isa_87d289dfaa (IsA adulterator changer) (STV 1.0 0.9091)) +(: cnet_isa_9e86a9df5d (IsA adulterer libertine) (STV 1.0 0.9091)) +(: cnet_isa_7b1144c42c (IsA adulteress adulterer) (STV 1.0 0.9091)) +(: cnet_isa_e58a35b780 (IsA adultery extramarital_sex) (STV 1.0 0.9091)) +(: cnet_isa_7fe149a12a (IsA adulthood maturity) (STV 1.0 0.9091)) +(: cnet_isa_1b66027b68 (IsA adulthood time_of_life) (STV 1.0 0.9091)) +(: cnet_isa_705ced043d (IsA adumbration representation) (STV 1.0 0.9091)) +(: cnet_isa_9f15f72a19 (IsA advance increase) (STV 1.0 0.9091)) +(: cnet_isa_1e1ba0996b (IsA advance sum) (STV 1.0 0.9091)) +(: cnet_isa_af0475f74a (IsA advance_death_benefit death_benefit) (STV 1.0 0.9091)) +(: cnet_isa_2c3d3b4e57 (IsA advanced_research_and_development_activity agency) (STV 1.0 0.9091)) +(: cnet_isa_6dd0d82417 (IsA advancement development) (STV 1.0 0.9091)) +(: cnet_isa_b06b20c66a (IsA advancer mover) (STV 1.0 0.9091)) +(: cnet_isa_991f98725c (IsA advantage asset) (STV 1.0 0.9091)) +(: cnet_isa_86e6909dd7 (IsA advantage benefit) (STV 1.0 0.9091)) +(: cnet_isa_5d08747e27 (IsA advantage point) (STV 1.0 0.9091)) +(: cnet_isa_830c5eae59 (IsA advection temperature_change) (STV 1.0 0.9091)) +(: cnet_isa_3006c43ed1 (IsA advent arrival) (STV 1.0 0.9091)) +(: cnet_isa_69831c3e4e (IsA advent season) (STV 1.0 0.9091)) +(: cnet_isa_0f73ca8d48 (IsA advent_sunday christian_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_8cf5a634a1 (IsA adventism christianity) (STV 1.0 0.9091)) +(: cnet_isa_66c2e65ffd (IsA adventitious_root root) (STV 1.0 0.9091)) +(: cnet_isa_dadb88c0e6 (IsA adventure undertaking) (STV 1.0 0.9091)) +(: cnet_isa_41593445c1 (IsA adventure_story story) (STV 1.0 0.9091)) +(: cnet_isa_db46e10deb (IsA adventurer person) (STV 1.0 0.9091)) +(: cnet_isa_807e0c4b17 (IsA adventuress adventurer) (STV 1.0 0.9091)) +(: cnet_isa_b170bf37fd (IsA adventurism recklessness) (STV 1.0 0.9091)) +(: cnet_isa_16bf485460 (IsA adventurousness boldness) (STV 1.0 0.9091)) +(: cnet_isa_67fbaeaaff (IsA adverb major_form_class) (STV 1.0 0.9091)) +(: cnet_isa_48ea43521e (IsA adverb modifier) (STV 1.0 0.9091)) +(: cnet_isa_17a61a1e44 (IsA adverbial adverb) (STV 1.0 0.9091)) +(: cnet_isa_52dfd4a4f1 (IsA adversary person) (STV 1.0 0.9091)) +(: cnet_isa_ab19a4e944 (IsA adversative_conjunction conjunction) (STV 1.0 0.9091)) +(: cnet_isa_87511896a4 (IsA adverse_opinion opinion) (STV 1.0 0.9091)) +(: cnet_isa_cb45cd3e23 (IsA adverse_witness witness) (STV 1.0 0.9091)) +(: cnet_isa_b0143b53f3 (IsA adversity misfortune) (STV 1.0 0.9091)) +(: cnet_isa_4011c999e9 (IsA advertence attentiveness) (STV 1.0 0.9091)) +(: cnet_isa_0a5e3edec1 (IsA advertiser publicist) (STV 1.0 0.9091)) +(: cnet_isa_ee9472989e (IsA advertising commercial_enterprise) (STV 1.0 0.9091)) +(: cnet_isa_ac32909f25 (IsA advertising_agency agency) (STV 1.0 0.9091)) +(: cnet_isa_feb126658d (IsA advertising_campaign campaign) (STV 1.0 0.9091)) +(: cnet_isa_94405cf804 (IsA advertising_department business_department) (STV 1.0 0.9091)) +(: cnet_isa_0ff139c6ea (IsA advertorial ad) (STV 1.0 0.9091)) +(: cnet_isa_6486c33620 (IsA advice proposal) (STV 1.0 0.9091)) +(: cnet_isa_c54ef62847 (IsA advice_and_consent saying) (STV 1.0 0.9091)) +(: cnet_isa_c7526203a6 (IsA advisability wisdom) (STV 1.0 0.9091)) +(: cnet_isa_ac82e5a78e (IsA advisee person) (STV 1.0 0.9091)) +(: cnet_isa_819e767e1b (IsA adviser authority) (STV 1.0 0.9091)) +(: cnet_isa_3b52942379 (IsA advisory announcement) (STV 1.0 0.9091)) +(: cnet_isa_45af77f2c5 (IsA advisory_board board) (STV 1.0 0.9091)) +(: cnet_isa_bc53e18e67 (IsA advisory_service consulting_service) (STV 1.0 0.9091)) +(: cnet_isa_9679208f96 (IsA advocacy support) (STV 1.0 0.9091)) +(: cnet_isa_b657c38e92 (IsA advocate lawyer) (STV 1.0 0.9091)) +(: cnet_isa_f1a32c2a66 (IsA advocate person) (STV 1.0 0.9091)) +(: cnet_isa_6511457abe (IsA advowson right) (STV 1.0 0.9091)) +(: cnet_isa_c1d65b33f9 (IsA adynamia weakness) (STV 1.0 0.9091)) +(: cnet_isa_4b4b1ae03f (IsA adz edge_tool) (STV 1.0 0.9091)) +(: cnet_isa_ec1c424d65 (IsA adzuki_bean legume) (STV 1.0 0.9091)) +(: cnet_isa_c89705fbe7 (IsA aeciospore spore) (STV 1.0 0.9091)) +(: cnet_isa_fdc0c8d544 (IsA aecium fruiting_body) (STV 1.0 0.9091)) +(: cnet_isa_02389e037c (IsA aede arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_b9e1d25774 (IsA aegean_civilization culture) (STV 1.0 0.9091)) +(: cnet_isa_78756e7c2c (IsA aegean_island island) (STV 1.0 0.9091)) +(: cnet_isa_f8e399aab1 (IsA aegicera asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6ebc3f2e9d (IsA aegilop monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2352f970e3 (IsA aegina jellyfish) (STV 1.0 0.9091)) +(: cnet_isa_582775b91c (IsA aegypiidae vulture) (STV 1.0 0.9091)) +(: cnet_isa_b78ae038d5 (IsA aegypius bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_bb6614c24c (IsA aegyptopithecus hominoid) (STV 1.0 0.9091)) +(: cnet_isa_58bc344d6b (IsA aeolian citizenry) (STV 1.0 0.9091)) +(: cnet_isa_5b556df51c (IsA aeolian_harp harp) (STV 1.0 0.9091)) +(: cnet_isa_6e0b49123c (IsA aeolic ancient_greek) (STV 1.0 0.9091)) +(: cnet_isa_48e1e37181 (IsA aeonium plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_24cde62e89 (IsA aepycero mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_546d3cecf9 (IsA aepyornidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_1bd7e0ec47 (IsA aepyorniforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_e82a0313ae (IsA aeration change_of_state) (STV 1.0 0.9091)) +(: cnet_isa_6e06fbd496 (IsA aeration natural_process) (STV 1.0 0.9091)) +(: cnet_isa_a49c49adbb (IsA aerator apparatus) (STV 1.0 0.9091)) +(: cnet_isa_f0f05aeac0 (IsA aerial_ladder extension_ladder) (STV 1.0 0.9091)) +(: cnet_isa_1e3fd9f734 (IsA aerial_torpedo torpedo) (STV 1.0 0.9091)) +(: cnet_isa_84326082d9 (IsA aerialist acrobat) (STV 1.0 0.9091)) +(: cnet_isa_e8f08a60f3 (IsA aeride orchid) (STV 1.0 0.9091)) +(: cnet_isa_5d01358afd (IsA aerie habitation) (STV 1.0 0.9091)) +(: cnet_isa_692a5b625d (IsA aerie bird_s_nest) (STV 1.0 0.9091)) +(: cnet_isa_4df5f3e89c (IsA aerobacter bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_96e8c409b6 (IsA aerobacter_aerogene bacteria_specy) (STV 1.0 0.9091)) +(: cnet_isa_09c26f95f6 (IsA aerobe organism) (STV 1.0 0.9091)) +(: cnet_isa_efd401b620 (IsA aerobic cardiopulmonary_exercise) (STV 1.0 0.9091)) +(: cnet_isa_f720e820b2 (IsA aerobiosis life) (STV 1.0 0.9091)) +(: cnet_isa_f9fa4733a2 (IsA aerodontalgia toothache) (STV 1.0 0.9091)) +(: cnet_isa_648894568d (IsA aerodynamic_force force) (STV 1.0 0.9091)) +(: cnet_isa_f27031f95d (IsA aerodynamic_lift aerodynamic_force) (STV 1.0 0.9091)) +(: cnet_isa_80a8c30d0e (IsA aerolite meteorite) (STV 1.0 0.9091)) +(: cnet_isa_712faa1328 (IsA aerology meteorology) (STV 1.0 0.9091)) +(: cnet_isa_c5c5c9c5ed (IsA aeromechanic mechanic) (STV 1.0 0.9091)) +(: cnet_isa_4867aaeb9a (IsA aeromedicine biomedicine) (STV 1.0 0.9091)) +(: cnet_isa_f6fb81a915 (IsA aeronautical_engineer engineer) (STV 1.0 0.9091)) +(: cnet_isa_c847b64567 (IsA aeronautical_engineering technology) (STV 1.0 0.9091)) +(: cnet_isa_aa0c950742 (IsA aeronautical_engineering engineering) (STV 1.0 0.9091)) +(: cnet_isa_114626b237 (IsA aeronautic physic) (STV 1.0 0.9091)) +(: cnet_isa_dd3e3cf59c (IsA aerophagia swallow) (STV 1.0 0.9091)) +(: cnet_isa_03c9c13b78 (IsA aerophilately philately) (STV 1.0 0.9091)) +(: cnet_isa_f9b01e189c (IsA aerophile fan) (STV 1.0 0.9091)) +(: cnet_isa_4677d05c04 (IsA aerosol dispenser) (STV 1.0 0.9091)) +(: cnet_isa_ba3259cce4 (IsA aerosol cloud) (STV 1.0 0.9091)) +(: cnet_isa_6c1c310a16 (IsA aerospace region) (STV 1.0 0.9091)) +(: cnet_isa_a7a72f3a31 (IsA aerospace_engineer engineer) (STV 1.0 0.9091)) +(: cnet_isa_820f171e20 (IsA aeschynanthus air_plant) (STV 1.0 0.9091)) +(: cnet_isa_eff5611cdf (IsA aesculus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_08a9f08ac0 (IsA aesir norse_deity) (STV 1.0 0.9091)) +(: cnet_isa_7a56fb9ed7 (IsA aesop_s_fable fable) (STV 1.0 0.9091)) +(: cnet_isa_16d185938a (IsA aesthetic philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_4c02805e48 (IsA aesthetic branch_of_philosophy) (STV 1.0 0.9091)) +(: cnet_isa_9017ab90f1 (IsA aesthetic philosophy) (STV 1.0 0.9091)) +(: cnet_isa_4acaa420e9 (IsA aether greek_deity) (STV 1.0 0.9091)) +(: cnet_isa_86a4e3312e (IsA aethionema dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d7f25a9d1f (IsA aethusa rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ab0a0e52ee (IsA aetobatus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_98356a5f6d (IsA affability friendliness) (STV 1.0 0.9091)) +(: cnet_isa_c8df60f7d5 (IsA affair social_event) (STV 1.0 0.9091)) +(: cnet_isa_f05b50c22a (IsA affair sexual_relationship) (STV 1.0 0.9091)) +(: cnet_isa_47438d223a (IsA affair transaction) (STV 1.0 0.9091)) +(: cnet_isa_8e10fdf26b (IsA affect feeling) (STV 1.0 0.9091)) +(: cnet_isa_dd70ff6878 (IsA affectation pretense) (STV 1.0 0.9091)) +(: cnet_isa_74b9bf8869 (IsA affected_role semantic_role) (STV 1.0 0.9091)) +(: cnet_isa_f133d27b6b (IsA affectedness unnaturalness) (STV 1.0 0.9091)) +(: cnet_isa_31536608ed (IsA affection feeling) (STV 1.0 0.9091)) +(: cnet_isa_c4fdbf6937 (IsA affectionateness emotionality) (STV 1.0 0.9091)) +(: cnet_isa_41bcd103c5 (IsA affective_disorder mental_disorder) (STV 1.0 0.9091)) +(: cnet_isa_7c6daefb6a (IsA affenpinscher pinscher) (STV 1.0 0.9091)) +(: cnet_isa_973b058b88 (IsA afferent_fiber nerve_fiber) (STV 1.0 0.9091)) +(: cnet_isa_bcb51e367e (IsA affiant person) (STV 1.0 0.9091)) +(: cnet_isa_cdf0025d12 (IsA affidavit legal_document) (STV 1.0 0.9091)) +(: cnet_isa_18113d8419 (IsA affidavit testimony) (STV 1.0 0.9091)) +(: cnet_isa_299e0d4ea1 (IsA affiliate organization) (STV 1.0 0.9091)) +(: cnet_isa_6feeb5d9ad (IsA affiliate associate) (STV 1.0 0.9091)) +(: cnet_isa_e0f1313eb6 (IsA affiliation association) (STV 1.0 0.9091)) +(: cnet_isa_92ca9304e3 (IsA affiliation relationship) (STV 1.0 0.9091)) +(: cnet_isa_6885ea2dc6 (IsA affine kin) (STV 1.0 0.9091)) +(: cnet_isa_2d5565a549 (IsA affine_geometry geometry) (STV 1.0 0.9091)) +(: cnet_isa_f03fab05fd (IsA affine_transformation transformation) (STV 1.0 0.9091)) +(: cnet_isa_fcd7e55e8b (IsA affinity kinship) (STV 1.0 0.9091)) +(: cnet_isa_1b2352ff9f (IsA affinity attraction) (STV 1.0 0.9091)) +(: cnet_isa_a98bb87e8d (IsA affinity resemblance) (STV 1.0 0.9091)) +(: cnet_isa_df0ebe919d (IsA affinity relation) (STV 1.0 0.9091)) +(: cnet_isa_7db3208581 (IsA affinity force) (STV 1.0 0.9091)) +(: cnet_isa_cddb2e902e (IsA affirmation speech_act) (STV 1.0 0.9091)) +(: cnet_isa_aa9b1967ae (IsA affirmation judgment) (STV 1.0 0.9091)) +(: cnet_isa_b2d8152ae7 (IsA affirmation commitment) (STV 1.0 0.9091)) +(: cnet_isa_b179c51838 (IsA affirmative avowal) (STV 1.0 0.9091)) +(: cnet_isa_290f66c8c6 (IsA affirmative_action social_action) (STV 1.0 0.9091)) +(: cnet_isa_366b381ecb (IsA affirmative_pleading pleading) (STV 1.0 0.9091)) +(: cnet_isa_55a8e38f51 (IsA affirmativeness agreeableness) (STV 1.0 0.9091)) +(: cnet_isa_8db6ad36e4 (IsA affix bound_morpheme) (STV 1.0 0.9091)) +(: cnet_isa_4920fa5d28 (IsA affixation formation) (STV 1.0 0.9091)) +(: cnet_isa_685681d7ba (IsA affixation morphology) (STV 1.0 0.9091)) +(: cnet_isa_b2b6e1240f (IsA afflatus inspiration) (STV 1.0 0.9091)) +(: cnet_isa_e7ea994745 (IsA affliction trouble) (STV 1.0 0.9091)) +(: cnet_isa_4dc5847468 (IsA affliction adversity) (STV 1.0 0.9091)) +(: cnet_isa_23d5c385a4 (IsA affliction ill_health) (STV 1.0 0.9091)) +(: cnet_isa_3875e7493b (IsA affluence wealth) (STV 1.0 0.9091)) +(: cnet_isa_56228d16a2 (IsA affluent rich_person) (STV 1.0 0.9091)) +(: cnet_isa_4f4e0f0425 (IsA afforestation conversion) (STV 1.0 0.9091)) +(: cnet_isa_91ff47326a (IsA affray fight) (STV 1.0 0.9091)) +(: cnet_isa_83e5e78242 (IsA affray quarrel) (STV 1.0 0.9091)) +(: cnet_isa_b0317963cc (IsA affricate obstruent) (STV 1.0 0.9091)) +(: cnet_isa_a19e9e489d (IsA affrication articulation) (STV 1.0 0.9091)) +(: cnet_isa_9821c9e192 (IsA affusion baptism) (STV 1.0 0.9091)) +(: cnet_isa_b8868b9be0 (IsA afgan_hound dog) (STV 1.0 0.9091)) +(: cnet_isa_e5f0f768ff (IsA afghan blanket) (STV 1.0 0.9091)) +(: cnet_isa_6f45916d82 (IsA afghan_hound hound) (STV 1.0 0.9091)) +(: cnet_isa_be399527dd (IsA afghan_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_21d61a7dd0 (IsA afghani afghan_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_d364f42c89 (IsA afghanistani asiatic) (STV 1.0 0.9091)) +(: cnet_isa_93d07b5434 (IsA afibrinogenemia blood_disease) (STV 1.0 0.9091)) +(: cnet_isa_2c2dc541e4 (IsA aficionado fan) (STV 1.0 0.9091)) +(: cnet_isa_8c6dd0bdbb (IsA aficionado sport_fan) (STV 1.0 0.9091)) +(: cnet_isa_c871abcc64 (IsA aflatoxin bioweapon) (STV 1.0 0.9091)) +(: cnet_isa_54079ec62b (IsA aflatoxin mycotoxin) (STV 1.0 0.9091)) +(: cnet_isa_f123b3656b (IsA aframomum plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_4e3a94baa8 (IsA africa continent) (STV 1.0 0.9636)) +(: cnet_isa_5c574546f9 (IsA african person) (STV 1.0 0.9091)) +(: cnet_isa_597eca9808 (IsA african_american negro) (STV 1.0 0.9091)) +(: cnet_isa_42286693a1 (IsA african_bowstring_hemp sansevieria) (STV 1.0 0.9091)) +(: cnet_isa_c3bdc2fd03 (IsA african_chameleon chameleon) (STV 1.0 0.9091)) +(: cnet_isa_529c28b0c5 (IsA african_clawed_frog tongueless_frog) (STV 1.0 0.9091)) +(: cnet_isa_e5be24e03f (IsA african_coral_snake coral_snake) (STV 1.0 0.9091)) +(: cnet_isa_de9be580bc (IsA african_country country) (STV 1.0 0.9091)) +(: cnet_isa_1d2ab91cc1 (IsA african_crocodile crocodile) (STV 1.0 0.9091)) +(: cnet_isa_57c4d9598c (IsA african_daisy flower) (STV 1.0 0.9091)) +(: cnet_isa_5337bfd882 (IsA african_elephant elephant) (STV 1.0 0.9091)) +(: cnet_isa_7f8b5273c7 (IsA african_gray parrot) (STV 1.0 0.9091)) +(: cnet_isa_e126769480 (IsA african_hemp shrub) (STV 1.0 0.9091)) +(: cnet_isa_6d56d45f23 (IsA african_holly nightshade) (STV 1.0 0.9091)) +(: cnet_isa_95c156e0f8 (IsA african_hunting_dog wild_dog) (STV 1.0 0.9091)) +(: cnet_isa_81ad71bff4 (IsA african_lily agapanthus) (STV 1.0 0.9091)) +(: cnet_isa_8b470e5696 (IsA african_mahogany mahogany) (STV 1.0 0.9091)) +(: cnet_isa_5312e36247 (IsA african_marigold marigold) (STV 1.0 0.9091)) +(: cnet_isa_a153c6ad24 (IsA african_monitor monitor) (STV 1.0 0.9091)) +(: cnet_isa_5acc2558f9 (IsA african_oil_palm oil_palm) (STV 1.0 0.9091)) +(: cnet_isa_aa74f860e3 (IsA african_scented_mahogany mahogany) (STV 1.0 0.9091)) +(: cnet_isa_7ba851639f (IsA african_violet flower) (STV 1.0 0.9091)) +(: cnet_isa_f449e64b39 (IsA african_walnut tree) (STV 1.0 0.9091)) +(: cnet_isa_445e552983 (IsA african_wild_ass wild_ass) (STV 1.0 0.9091)) +(: cnet_isa_f0877e5aec (IsA africander cattle) (STV 1.0 0.9091)) +(: cnet_isa_e95cf044a1 (IsA africanized_bee honeybee) (STV 1.0 0.9091)) +(: cnet_isa_e1386704ac (IsA afrikaan dutch) (STV 1.0 0.9091)) +(: cnet_isa_d25a200daf (IsA afrikander south_african) (STV 1.0 0.9091)) +(: cnet_isa_73f4ea7ec2 (IsA afro hairdo) (STV 1.0 0.9091)) +(: cnet_isa_f7be7ed645 (IsA afro_wig hairpiece) (STV 1.0 0.9091)) +(: cnet_isa_5516a5f227 (IsA afroasiatic natural_language) (STV 1.0 0.9091)) +(: cnet_isa_381d7d47af (IsA afrocarpus gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_45c831aad5 (IsA afropavo pheasant) (STV 1.0 0.9091)) +(: cnet_isa_37f48343ff (IsA after_shave lotion) (STV 1.0 0.9091)) +(: cnet_isa_03c64104f2 (IsA afterbirth placenta) (STV 1.0 0.9091)) +(: cnet_isa_1841ea3a9d (IsA afterburner device) (STV 1.0 0.9091)) +(: cnet_isa_cbf43d1bc1 (IsA aftercare medical_care) (STV 1.0 0.9091)) +(: cnet_isa_2f3981e74d (IsA afterdamp gas) (STV 1.0 0.9091)) +(: cnet_isa_5d1877194d (IsA afterdeck deck) (STV 1.0 0.9091)) +(: cnet_isa_d19cf74598 (IsA aftereffect consequence) (STV 1.0 0.9091)) +(: cnet_isa_c3cac70910 (IsA aftereffect effect) (STV 1.0 0.9091)) +(: cnet_isa_2a7cc22322 (IsA afterglow pleasantness) (STV 1.0 0.9091)) +(: cnet_isa_fb31c12f70 (IsA afterglow atmospheric_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_91ece5284c (IsA afterimage memory_image) (STV 1.0 0.9091)) +(: cnet_isa_ccf309f789 (IsA afterlife life) (STV 1.0 0.9091)) +(: cnet_isa_6898e0b43d (IsA aftermath consequence) (STV 1.0 0.9091)) +(: cnet_isa_4fa0f67d94 (IsA afternoon day) (STV 1.0 0.9091)) +(: cnet_isa_92f319fe9f (IsA afterpain pang) (STV 1.0 0.9091)) +(: cnet_isa_08a0c4b21c (IsA afterpiece piece) (STV 1.0 0.9091)) +(: cnet_isa_0f96b9c82a (IsA aftershaft feather) (STV 1.0 0.9091)) +(: cnet_isa_2dbd886c16 (IsA aftershock tremor) (STV 1.0 0.9091)) +(: cnet_isa_03d7d9a7dc (IsA aftertaste afterimage) (STV 1.0 0.9091)) +(: cnet_isa_e66041ffe5 (IsA afterthought addition) (STV 1.0 0.9091)) +(: cnet_isa_b91a014232 (IsA afterworld imaginary_place) (STV 1.0 0.9091)) +(: cnet_isa_acb3ce2f18 (IsA aga title) (STV 1.0 0.9091)) +(: cnet_isa_38ebebbf9c (IsA agal cord) (STV 1.0 0.9091)) +(: cnet_isa_4f1259532f (IsA agalactia physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_4561715ff2 (IsA agalinis asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3417116330 (IsA agama agamid) (STV 1.0 0.9091)) +(: cnet_isa_5f41baef6e (IsA agamete reproductive_structure) (STV 1.0 0.9091)) +(: cnet_isa_8b6243e81c (IsA agamid lizard) (STV 1.0 0.9091)) +(: cnet_isa_7ccbda2f9a (IsA agamidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_c272339d97 (IsA agammaglobulinemia immunodeficiency) (STV 1.0 0.9091)) +(: cnet_isa_2a53fe24fd (IsA agapanthus liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_3e3d1dc903 (IsA agape religious_ceremony) (STV 1.0 0.9091)) +(: cnet_isa_0a85d7c516 (IsA agape love) (STV 1.0 0.9091)) +(: cnet_isa_4bdade5e62 (IsA agapornis bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_944101f2db (IsA agar culture_medium) (STV 1.0 0.9091)) +(: cnet_isa_786dcf6ed4 (IsA agar gum) (STV 1.0 0.9091)) +(: cnet_isa_d27dd62e93 (IsA agaric basidiomycete) (STV 1.0 0.9091)) +(: cnet_isa_6ccc4cace5 (IsA agaric fungus) (STV 1.0 0.9091)) +(: cnet_isa_18f63be7dd (IsA agaricaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_05b31f9356 (IsA agaricale fungus_order) (STV 1.0 0.9091)) +(: cnet_isa_f8dd008262 (IsA agaricus fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_809a00972b (IsA agastache asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_fb440dec1d (IsA agate chalcedony) (STV 1.0 0.9091)) +(: cnet_isa_78276ed54e (IsA agate_line area_unit) (STV 1.0 0.9091)) +(: cnet_isa_48b5f0cfff (IsA agateware pottery) (STV 1.0 0.9091)) +(: cnet_isa_0bed7fbec8 (IsA agathis gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_067a44ddac (IsA agavaceae liliid_monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_e354aa5d5f (IsA agave desert_plant) (STV 1.0 0.9091)) +(: cnet_isa_6165e34c24 (IsA agave_tequilana agave) (STV 1.0 0.9091)) +(: cnet_isa_2e4d2d696b (IsA agdestis caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_dab9171bb2 (IsA agdestis climber) (STV 1.0 0.9091)) +(: cnet_isa_fd43a57c06 (IsA age period_of_existence) (STV 1.0 0.9091)) +(: cnet_isa_62b90e6d18 (IsA age property) (STV 1.0 0.9091)) +(: cnet_isa_2c031c4627 (IsA age time_of_life) (STV 1.0 0.9091)) +(: cnet_isa_c11225cbed (IsA age_class class) (STV 1.0 0.9091)) +(: cnet_isa_f391d87cd4 (IsA age_group people) (STV 1.0 0.9091)) +(: cnet_isa_b8868d3731 (IsA age_limit regulation) (STV 1.0 0.9091)) +(: cnet_isa_79c88354c7 (IsA age_norm average) (STV 1.0 0.9091)) +(: cnet_isa_e27ad05ebe (IsA age_of_consent age) (STV 1.0 0.9091)) +(: cnet_isa_fc75d3c696 (IsA age_related_macular_degeneration macular_degeneration) (STV 1.0 0.9091)) +(: cnet_isa_5f3d0aaf78 (IsA aged age_group) (STV 1.0 0.9091)) +(: cnet_isa_4e394f8622 (IsA agedness oldness) (STV 1.0 0.9091)) +(: cnet_isa_3f7524c33c (IsA ageism discrimination) (STV 1.0 0.9091)) +(: cnet_isa_efbd8804c7 (IsA agelaius bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_16916d6f5c (IsA agelessness immutability) (STV 1.0 0.9091)) +(: cnet_isa_3f5ae6f554 (IsA agency administrative_unit) (STV 1.0 0.9091)) +(: cnet_isa_dbd9adcaf9 (IsA agency business) (STV 1.0 0.9091)) +(: cnet_isa_cebbb9e9d3 (IsA agency action) (STV 1.0 0.9091)) +(: cnet_isa_d83d0b9661 (IsA agenda plan) (STV 1.0 0.9091)) +(: cnet_isa_ee64a355dd (IsA agenda list) (STV 1.0 0.9091)) +(: cnet_isa_ab95fb7254 (IsA agenda_item item) (STV 1.0 0.9091)) +(: cnet_isa_bc2b038ce1 (IsA agenesis nondevelopment) (STV 1.0 0.9091)) +(: cnet_isa_3168368c8d (IsA agent causal_agent) (STV 1.0 0.9091)) +(: cnet_isa_3706dd218d (IsA agent businessperson) (STV 1.0 0.9091)) +(: cnet_isa_435e45d38c (IsA agent official) (STV 1.0 0.9091)) +(: cnet_isa_7dafcd051f (IsA agent representative) (STV 1.0 0.9091)) +(: cnet_isa_dd6b7ffd52 (IsA agent substance) (STV 1.0 0.9091)) +(: cnet_isa_911b39bfd0 (IsA agent_bank depository_financial_institution) (STV 1.0 0.9091)) +(: cnet_isa_78935bb815 (IsA agent_in_place secret_agent) (STV 1.0 0.9091)) +(: cnet_isa_06c76d3b88 (IsA agent_orange herbicide) (STV 1.0 0.9091)) +(: cnet_isa_13d4d6b716 (IsA agent_provocateur secret_agent) (STV 1.0 0.9091)) +(: cnet_isa_af06b855ed (IsA agentive_role semantic_role) (STV 1.0 0.9091)) +(: cnet_isa_b4ee10d580 (IsA agerasia appearance) (STV 1.0 0.9091)) +(: cnet_isa_3e6a0477e7 (IsA ageratina asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_94536cd34f (IsA ageratum flower) (STV 1.0 0.9091)) +(: cnet_isa_bebd6b62a8 (IsA agglomerate volcanic_rock) (STV 1.0 0.9091)) +(: cnet_isa_eb88eafaa5 (IsA agglomeration collection) (STV 1.0 0.9091)) +(: cnet_isa_090379477f (IsA agglomerator device) (STV 1.0 0.9091)) +(: cnet_isa_5a9b279fde (IsA agglutination chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_d68f02fac4 (IsA agglutination linguistic_process) (STV 1.0 0.9091)) +(: cnet_isa_9644406c98 (IsA agglutination organic_process) (STV 1.0 0.9091)) +(: cnet_isa_6ec353e498 (IsA agglutination_test blood_test) (STV 1.0 0.9091)) +(: cnet_isa_729cbd5fc8 (IsA agglutinin antibody) (STV 1.0 0.9091)) +(: cnet_isa_95970c6f2b (IsA agglutinogen antigen) (STV 1.0 0.9091)) +(: cnet_isa_fcd3f1cd88 (IsA aggrandizement increase) (STV 1.0 0.9091)) +(: cnet_isa_5c33f8c7d0 (IsA aggravated_assault assault) (STV 1.0 0.9091)) +(: cnet_isa_c0a6df02eb (IsA aggravation aggression) (STV 1.0 0.9091)) +(: cnet_isa_58c77b1975 (IsA aggravation intensification) (STV 1.0 0.9091)) +(: cnet_isa_87d5af25c1 (IsA aggravation annoyance) (STV 1.0 0.9091)) +(: cnet_isa_1f4b6373a3 (IsA aggravator unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_8a6a1919f3 (IsA aggregate sum) (STV 1.0 0.9091)) +(: cnet_isa_ac0d25bbe0 (IsA aggregate material) (STV 1.0 0.9091)) +(: cnet_isa_4dc3b37f0c (IsA aggregate_fruit fruit) (STV 1.0 0.9091)) +(: cnet_isa_523fd2f810 (IsA aggression action) (STV 1.0 0.9091)) +(: cnet_isa_11a80e2fb1 (IsA aggression behavior) (STV 1.0 0.9091)) +(: cnet_isa_cdf6a8fa01 (IsA aggression combat) (STV 1.0 0.9091)) +(: cnet_isa_b3c7b62c38 (IsA aggression unfriendliness) (STV 1.0 0.9091)) +(: cnet_isa_63624e9a39 (IsA aggression hostility) (STV 1.0 0.9091)) +(: cnet_isa_f310bd9ee8 (IsA aggressiveness disagreeableness) (STV 1.0 0.9091)) +(: cnet_isa_968a37e98d (IsA aggressiveness drive) (STV 1.0 0.9091)) +(: cnet_isa_8ffa59d92c (IsA aggressor instigator) (STV 1.0 0.9091)) +(: cnet_isa_388bcf898f (IsA aggro aggravation) (STV 1.0 0.9091)) +(: cnet_isa_a46e010577 (IsA aghan hindu_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_1e14cf6c8f (IsA agility gracefulness) (STV 1.0 0.9091)) +(: cnet_isa_22ed6dfa05 (IsA aging organic_process) (STV 1.0 0.9091)) +(: cnet_isa_f328928e93 (IsA agio charge) (STV 1.0 0.9091)) +(: cnet_isa_795f64d173 (IsA agitated_depression depressive_disorder) (STV 1.0 0.9091)) +(: cnet_isa_e403f5be03 (IsA agitation disturbance) (STV 1.0 0.9091)) +(: cnet_isa_9821d296d8 (IsA agitation motion) (STV 1.0 0.9091)) +(: cnet_isa_5928d53ffc (IsA agitation feeling) (STV 1.0 0.9091)) +(: cnet_isa_63ceb6a182 (IsA agitation psychological_state) (STV 1.0 0.9091)) +(: cnet_isa_99159b4a9b (IsA agitation turbulence) (STV 1.0 0.9091)) +(: cnet_isa_a0a6e5b717 (IsA agitator troublemaker) (STV 1.0 0.9091)) +(: cnet_isa_5c8a3b3490 (IsA agitprop propaganda) (STV 1.0 0.9091)) +(: cnet_isa_367b586dd5 (IsA agkistrodon reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_86c0747c4a (IsA aglaia grace) (STV 1.0 0.9091)) +(: cnet_isa_0460484a47 (IsA aglaomorpha fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_2d03f10264 (IsA aglaonema monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0246041060 (IsA aglet braid) (STV 1.0 0.9091)) +(: cnet_isa_6e92d5903b (IsA aglet sheath) (STV 1.0 0.9091)) +(: cnet_isa_7048908b73 (IsA agnate relative) (STV 1.0 0.9091)) +(: cnet_isa_95cfd93ef7 (IsA agnatha class) (STV 1.0 0.9091)) +(: cnet_isa_a725adff8c (IsA agnomen name) (STV 1.0 0.9091)) +(: cnet_isa_a8ab47bc53 (IsA agnosia brain_disorder) (STV 1.0 0.9091)) +(: cnet_isa_4dca313fdc (IsA agnostic person) (STV 1.0 0.9091)) +(: cnet_isa_c608737bef (IsA agnostic religionist) (STV 1.0 0.9091)) +(: cnet_isa_362d73721f (IsA agnosticism religious_orientation) (STV 1.0 0.9091)) +(: cnet_isa_add981032e (IsA agnosticism unbelief) (STV 1.0 0.9091)) +(: cnet_isa_df0535cee2 (IsA agnus_dei emblem) (STV 1.0 0.9091)) +(: cnet_isa_e8a855fb6a (IsA agnus_dei prayer) (STV 1.0 0.9091)) +(: cnet_isa_55e416ed13 (IsA agon celebration) (STV 1.0 0.9091)) +(: cnet_isa_2376cc4a73 (IsA agonic_line line) (STV 1.0 0.9091)) +(: cnet_isa_234d149cc5 (IsA agonidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_28d095d0d8 (IsA agonist drug) (STV 1.0 0.9091)) +(: cnet_isa_b7c7a7a3b7 (IsA agonist antagonistic_muscle) (STV 1.0 0.9091)) +(: cnet_isa_2734af0bc4 (IsA agonist contestant) (STV 1.0 0.9091)) +(: cnet_isa_e9da0efbea (IsA agonus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_86e2642576 (IsA agony suffering) (STV 1.0 0.9091)) +(: cnet_isa_5f816df5d3 (IsA agony pain) (STV 1.0 0.9091)) +(: cnet_isa_8a96f68f35 (IsA agony_aunt newspaper_columnist) (STV 1.0 0.9091)) +(: cnet_isa_5f18de270d (IsA agony_column column) (STV 1.0 0.9091)) +(: cnet_isa_988f43508c (IsA agora marketplace) (STV 1.0 0.9091)) +(: cnet_isa_a251e066d3 (IsA agora israeli_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_6a71e89897 (IsA agoraphobia anxiety_disorder) (STV 1.0 0.9091)) +(: cnet_isa_244c8613fa (IsA agoraphobia phobia) (STV 1.0 0.9091)) +(: cnet_isa_5e9866eb26 (IsA agouti rodent) (STV 1.0 0.9091)) +(: cnet_isa_3c5428e55d (IsA agranulocytosis blood_disease) (STV 1.0 0.9091)) +(: cnet_isa_f662a1d65c (IsA agrapha saying) (STV 1.0 0.9091)) +(: cnet_isa_cf8a64de40 (IsA agraphia brain_disorder) (STV 1.0 0.9091)) +(: cnet_isa_c60077b1f8 (IsA agreeableness disposition) (STV 1.0 0.9091)) +(: cnet_isa_2bcfe3a90f (IsA agreeableness pleasantness) (STV 1.0 0.9091)) +(: cnet_isa_aaa308a6ab (IsA agreement compatibility) (STV 1.0 0.9091)) +(: cnet_isa_3d0c0edcb7 (IsA agreement planning) (STV 1.0 0.9091)) +(: cnet_isa_552e805f3c (IsA agreement speech_act) (STV 1.0 0.9091)) +(: cnet_isa_ddc07ad731 (IsA agreement statement) (STV 1.0 0.9091)) +(: cnet_isa_14f5c4a552 (IsA agreement grammatical_relation) (STV 1.0 0.9091)) +(: cnet_isa_1f2445c0a6 (IsA agreement harmony) (STV 1.0 0.9091)) +(: cnet_isa_c43e7e1bc1 (IsA agribusiness commercial_enterprise) (STV 1.0 0.9091)) +(: cnet_isa_aba756bc13 (IsA agricultural_laborer laborer) (STV 1.0 0.9091)) +(: cnet_isa_a4f7a2f6ab (IsA agriculture class) (STV 1.0 0.9091)) +(: cnet_isa_fa8796a3c4 (IsA agriculture_secretary secretary) (STV 1.0 0.9091)) +(: cnet_isa_fb7dadc64b (IsA agriculturist farmer) (STV 1.0 0.9091)) +(: cnet_isa_69af9352a6 (IsA agrimonia herb) (STV 1.0 0.9091)) +(: cnet_isa_01bf69c646 (IsA agriocharis bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_bc996e7811 (IsA agrobacterium bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_fe5874a3ee (IsA agrobacterium_tumefacien bacteria_specy) (STV 1.0 0.9091)) +(: cnet_isa_d2d9a939a4 (IsA agrobiology science) (STV 1.0 0.9091)) +(: cnet_isa_c0f632ab1e (IsA agrology science) (STV 1.0 0.9091)) +(: cnet_isa_9787983c28 (IsA agromania mania) (STV 1.0 0.9091)) +(: cnet_isa_850e76871b (IsA agronomist expert) (STV 1.0 0.9091)) +(: cnet_isa_732f88e9af (IsA agronomy science) (STV 1.0 0.9091)) +(: cnet_isa_d6edd5078d (IsA agropyron monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d0ac8bef1e (IsA agrostemma caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e6d2bff9eb (IsA agrostis plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_731fff7b29 (IsA agrypnia vigil) (STV 1.0 0.9091)) +(: cnet_isa_50ef19ff17 (IsA agua true_toad) (STV 1.0 0.9091)) +(: cnet_isa_7ec5a2cf7c (IsA ague illness) (STV 1.0 0.9091)) +(: cnet_isa_3c43cfb4b6 (IsA ague symptom) (STV 1.0 0.9091)) +(: cnet_isa_b72be86ce7 (IsA ague_root colicroot) (STV 1.0 0.9091)) +(: cnet_isa_7aaf0cf684 (IsA agueweed gentian) (STV 1.0 0.9091)) +(: cnet_isa_04c260bfbc (IsA ahem utterance) (STV 1.0 0.9091)) +(: cnet_isa_8059115bcb (IsA ahimsa religious_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_e192b8a908 (IsA ahuehuete montezuma_cypress) (STV 1.0 0.9091)) +(: cnet_isa_4f628cc222 (IsA ahura hindu_deity) (STV 1.0 0.9091)) +(: cnet_isa_13ed690478 (IsA ai artificial_intelligence) (STV 1.0 0.9091)) +(: cnet_isa_1d33079f5b (IsA aid activity) (STV 1.0 0.9091)) +(: cnet_isa_331c4484a5 (IsA aid resource) (STV 1.0 0.9091)) +(: cnet_isa_0cd2f0a0d9 (IsA aide assistant) (STV 1.0 0.9091)) +(: cnet_isa_f012b0bfc6 (IsA aide_memoire memo) (STV 1.0 0.9091)) +(: cnet_isa_4ee3bd09e4 (IsA aid disease) (STV 1.0 0.9608)) +(: cnet_isa_67906bedd4 (IsA aid virus) (STV 1.0 0.9454)) +(: cnet_isa_9419ef39b2 (IsA aid immunodeficiency) (STV 1.0 0.9091)) +(: cnet_isa_2f37a42fe9 (IsA aid infectious_disease) (STV 1.0 0.9091)) +(: cnet_isa_96850fbb56 (IsA aigrette plume) (STV 1.0 0.9091)) +(: cnet_isa_152fe6a5b5 (IsA aikido martial_art) (STV 1.0 0.9091)) +(: cnet_isa_7ab65f867b (IsA ailanthus angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_bc3c62a6bc (IsA ailanthus_silkworm silkworm) (STV 1.0 0.9091)) +(: cnet_isa_ae769e6d97 (IsA aileron airfoil) (STV 1.0 0.9091)) +(: cnet_isa_7c201527b3 (IsA ailment disorder) (STV 1.0 0.9091)) +(: cnet_isa_3407021db0 (IsA ailurophobia zoophobia) (STV 1.0 0.9091)) +(: cnet_isa_296684cc03 (IsA ailuropoda mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_41e3c2de3b (IsA ailuropodidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_cb7ce21b20 (IsA ailurus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_64d24708e3 (IsA aim steering) (STV 1.0 0.9091)) +(: cnet_isa_860c36ca4a (IsA aim goal) (STV 1.0 0.9091)) +(: cnet_isa_50d3cdac4e (IsA aioli sauce) (STV 1.0 0.9091)) +(: cnet_isa_a391cff04d (IsA air gas) (STV 1.0 0.9730)) +(: cnet_isa_7cc6e7f74c (IsA air mixture_of_gas) (STV 1.0 0.9091)) +(: cnet_isa_6a76946acf (IsA air quality) (STV 1.0 0.9091)) +(: cnet_isa_d56fe48699 (IsA air medium) (STV 1.0 0.9091)) +(: cnet_isa_08f3ed4ccf (IsA air region) (STV 1.0 0.9091)) +(: cnet_isa_34a9c48623 (IsA air element) (STV 1.0 0.9091)) +(: cnet_isa_1b42cd1266 (IsA air_alert alarm) (STV 1.0 0.9091)) +(: cnet_isa_66726019d5 (IsA air_alert alert) (STV 1.0 0.9091)) +(: cnet_isa_ad10c2b53a (IsA air_alert time_period) (STV 1.0 0.9091)) +(: cnet_isa_85229fddf8 (IsA air_attache military_attache) (STV 1.0 0.9091)) +(: cnet_isa_4c4ad5e038 (IsA air_bag bag) (STV 1.0 0.9091)) +(: cnet_isa_3db32dc336 (IsA air_bag restraint) (STV 1.0 0.9091)) +(: cnet_isa_b60d7da6d3 (IsA air_base base) (STV 1.0 0.9091)) +(: cnet_isa_92ef739d63 (IsA air_bladder sac) (STV 1.0 0.9091)) +(: cnet_isa_9aed5409a3 (IsA air_bubble bubble) (STV 1.0 0.9091)) +(: cnet_isa_241739a235 (IsA air_combat_command command) (STV 1.0 0.9091)) +(: cnet_isa_e3dc5868e9 (IsA air_compressor compressor) (STV 1.0 0.9091)) +(: cnet_isa_d956fa4e8f (IsA air_conditioner cooling_device) (STV 1.0 0.9091)) +(: cnet_isa_fd074067e6 (IsA air_conditioner appliance) (STV 1.0 0.9091)) +(: cnet_isa_49d835bafe (IsA air_conditioner cooling_system) (STV 1.0 0.9091)) +(: cnet_isa_3042f9d205 (IsA air_corp air_force) (STV 1.0 0.9091)) +(: cnet_isa_ca9068ccab (IsA air_cover protection) (STV 1.0 0.9091)) +(: cnet_isa_8d68815c3d (IsA air_cushion cushion) (STV 1.0 0.9091)) +(: cnet_isa_1ded7134ef (IsA air_cushion shock_absorber) (STV 1.0 0.9091)) +(: cnet_isa_ff62171f25 (IsA air_cushion compressed_air) (STV 1.0 0.9091)) +(: cnet_isa_72f323e500 (IsA air_defense defense) (STV 1.0 0.9091)) +(: cnet_isa_a0fc8c8cef (IsA air_embolism embolism) (STV 1.0 0.9091)) +(: cnet_isa_6012d5491b (IsA air_filter filter) (STV 1.0 0.9091)) +(: cnet_isa_294eba20c4 (IsA air_force military_service) (STV 1.0 0.9091)) +(: cnet_isa_b9689502b3 (IsA air_force_academy academy) (STV 1.0 0.9091)) +(: cnet_isa_c830bcb704 (IsA air_force_intelligence_surveillance_and_reconnaissance agency) (STV 1.0 0.9091)) +(: cnet_isa_b0616ae8c5 (IsA air_force_officer serviceman) (STV 1.0 0.9091)) +(: cnet_isa_37763760c8 (IsA air_force_space_command command) (STV 1.0 0.9091)) +(: cnet_isa_3d146b1aaf (IsA air_group air_unit) (STV 1.0 0.9091)) +(: cnet_isa_e136e0aa6b (IsA air_gun gun) (STV 1.0 0.9091)) +(: cnet_isa_7b7a22b6e0 (IsA air_hammer hammer) (STV 1.0 0.9091)) +(: cnet_isa_0066f799f3 (IsA air_hole hole) (STV 1.0 0.9091)) +(: cnet_isa_e00e3a17dd (IsA air_horn horn) (STV 1.0 0.9091)) +(: cnet_isa_e1418c71be (IsA air_horn intake) (STV 1.0 0.9091)) +(: cnet_isa_97d69a6367 (IsA air_intake duct) (STV 1.0 0.9091)) +(: cnet_isa_ed98fb6565 (IsA air_lane path) (STV 1.0 0.9091)) +(: cnet_isa_ac81279ab4 (IsA air_mail mail) (STV 1.0 0.9091)) +(: cnet_isa_60dc2d435e (IsA air_marshal marshal) (STV 1.0 0.9091)) +(: cnet_isa_94e939b767 (IsA air_mass atmosphere) (STV 1.0 0.9091)) +(: cnet_isa_c3acacf7aa (IsA air_mattress mattress) (STV 1.0 0.9091)) +(: cnet_isa_79c647b4a2 (IsA air_medal decoration) (STV 1.0 0.9091)) +(: cnet_isa_cfe1818aa2 (IsA air_national_guard national_guard) (STV 1.0 0.9091)) +(: cnet_isa_3bfa4ab5b3 (IsA air_observer observer) (STV 1.0 0.9091)) +(: cnet_isa_265f42bd81 (IsA air_passage duct) (STV 1.0 0.9091)) +(: cnet_isa_461451e886 (IsA air_plant plant) (STV 1.0 0.9091)) +(: cnet_isa_75936ad4d3 (IsA air_pocket atmospheric_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_1620ff9b93 (IsA air_pollution pollution) (STV 1.0 0.9091)) +(: cnet_isa_b142c490ac (IsA air_potato yam) (STV 1.0 0.9091)) +(: cnet_isa_e0c160bdf2 (IsA air_pump pump) (STV 1.0 0.9091)) +(: cnet_isa_a88f313a8e (IsA air_raid foray) (STV 1.0 0.9091)) +(: cnet_isa_c43425a5fe (IsA air_reconnaissance reconnaissance) (STV 1.0 0.9091)) +(: cnet_isa_1b5987df35 (IsA air_sac sac) (STV 1.0 0.9091)) +(: cnet_isa_e520596d79 (IsA air_search_radar naval_radar) (STV 1.0 0.9091)) +(: cnet_isa_651d061ec0 (IsA air_shaft shaft) (STV 1.0 0.9091)) +(: cnet_isa_aacb5fc8ea (IsA air_terminal terminal) (STV 1.0 0.9091)) +(: cnet_isa_df6354c115 (IsA air_to_air_missile missile) (STV 1.0 0.9091)) +(: cnet_isa_e7ece5e4b8 (IsA air_to_ground_missile missile) (STV 1.0 0.9091)) +(: cnet_isa_42fc58803a (IsA air_traffic traffic) (STV 1.0 0.9091)) +(: cnet_isa_b2770c6b4a (IsA air_transportation transportation) (STV 1.0 0.9091)) +(: cnet_isa_8d51173757 (IsA air_transportation_system transportation_system) (STV 1.0 0.9091)) +(: cnet_isa_2983d8fe6f (IsA air_travel travel) (STV 1.0 0.9091)) +(: cnet_isa_c0763ff1de (IsA air_traveler traveler) (STV 1.0 0.9091)) +(: cnet_isa_a5af675274 (IsA air_unit military_unit) (STV 1.0 0.9091)) +(: cnet_isa_475f82dea7 (IsA air_wave sound_wave) (STV 1.0 0.9091)) +(: cnet_isa_3df00b40c0 (IsA airborne_patrol patrol) (STV 1.0 0.9091)) +(: cnet_isa_df525353ff (IsA airborne_transmission transmission_mechanism) (STV 1.0 0.9091)) +(: cnet_isa_dcf692adb2 (IsA airbrake power_brake) (STV 1.0 0.9091)) +(: cnet_isa_b4bf55fa7c (IsA airbrake restraint) (STV 1.0 0.9091)) +(: cnet_isa_733bf5a724 (IsA airbrush atomizer) (STV 1.0 0.9091)) +(: cnet_isa_2fd2eed6f9 (IsA airburst explosion) (STV 1.0 0.9091)) +(: cnet_isa_32cfedf47b (IsA airbus airliner) (STV 1.0 0.9091)) +(: cnet_isa_93836d1c42 (IsA aircraft craft) (STV 1.0 0.9091)) +(: cnet_isa_6fe9e56839 (IsA aircraft_carrier warship) (STV 1.0 0.9091)) +(: cnet_isa_6592f3086a (IsA aircraft_engine engine) (STV 1.0 0.9091)) +(: cnet_isa_2117c4f18c (IsA aircraft_landing landing) (STV 1.0 0.9091)) +(: cnet_isa_4cb0452d0d (IsA aircraftsman noncommissioned_officer) (STV 1.0 0.9091)) +(: cnet_isa_0456928db7 (IsA aircrew crew) (STV 1.0 0.9091)) +(: cnet_isa_fe09f14e65 (IsA aircrewman crewman) (STV 1.0 0.9091)) +(: cnet_isa_0fbbca5875 (IsA airdock structure) (STV 1.0 0.9091)) +(: cnet_isa_3de5b1009d (IsA airdrop delivery) (STV 1.0 0.9091)) +(: cnet_isa_abaca563ed (IsA airedale terrier) (STV 1.0 0.9091)) +(: cnet_isa_ab93b0505b (IsA airfare fare) (STV 1.0 0.9091)) +(: cnet_isa_186b3b17c6 (IsA airfield facility) (STV 1.0 0.9091)) +(: cnet_isa_2e0c3ea536 (IsA airflow flow) (STV 1.0 0.9091)) +(: cnet_isa_735852c186 (IsA airfoil device) (STV 1.0 0.9091)) +(: cnet_isa_1beb02cae3 (IsA airframe framework) (STV 1.0 0.9091)) +(: cnet_isa_1c8e8d88ae (IsA airhead bridgehead) (STV 1.0 0.9091)) +(: cnet_isa_5ee1eb2440 (IsA airhead simpleton) (STV 1.0 0.9091)) +(: cnet_isa_2d73b86eaf (IsA airiness capaciousness) (STV 1.0 0.9091)) +(: cnet_isa_9065e31630 (IsA airiness lightness) (STV 1.0 0.9091)) +(: cnet_isa_eb642410dc (IsA airiness liveliness) (STV 1.0 0.9091)) +(: cnet_isa_baca1bad2f (IsA airing excursion) (STV 1.0 0.9091)) +(: cnet_isa_a389e0f87b (IsA airing_cupboard cupboard) (STV 1.0 0.9091)) +(: cnet_isa_55182f91c7 (IsA airlift transportation) (STV 1.0 0.9091)) +(: cnet_isa_83fbe81ccb (IsA airline hose) (STV 1.0 0.9091)) +(: cnet_isa_f836dfb6fd (IsA airline line) (STV 1.0 0.9091)) +(: cnet_isa_6d9ec901ad (IsA airliner airplane) (STV 1.0 0.9091)) +(: cnet_isa_95477341a5 (IsA airlock chamber) (STV 1.0 0.9091)) +(: cnet_isa_b6143307ec (IsA airmail mail) (STV 1.0 0.9091)) +(: cnet_isa_7bc9e0febf (IsA airmail_letter letter) (STV 1.0 0.9091)) +(: cnet_isa_54ec45c330 (IsA airmailer mailer) (STV 1.0 0.9091)) +(: cnet_isa_cf4b3c86ed (IsA airplane form_of_transportation) (STV 1.0 0.9454)) +(: cnet_isa_e81880c899 (IsA airplane heavier_than_air) (STV 1.0 0.9091)) +(: cnet_isa_5aad55c76d (IsA airplane large_machine_with_wing) (STV 1.0 0.9339)) +(: cnet_isa_69a82140be (IsA airplane heavier_than_air_craft) (STV 1.0 0.9091)) +(: cnet_isa_56e0fbf258 (IsA airplane_mechanic trade) (STV 1.0 0.9091)) +(: cnet_isa_52257d62b9 (IsA airplane_propeller propeller) (STV 1.0 0.9091)) +(: cnet_isa_6e92c40795 (IsA airport airfield) (STV 1.0 0.9091)) +(: cnet_isa_f8d7be6780 (IsA air affectedness) (STV 1.0 0.9091)) +(: cnet_isa_fda4091117 (IsA airship lighter_than_air_craft) (STV 1.0 0.9091)) +(: cnet_isa_44d373bda6 (IsA airsickness motion_sickness) (STV 1.0 0.9091)) +(: cnet_isa_e971207ea9 (IsA airspace atmosphere) (STV 1.0 0.9091)) +(: cnet_isa_9887deed8e (IsA airspace space) (STV 1.0 0.9091)) +(: cnet_isa_ffe1d71f1a (IsA airspeed speed) (STV 1.0 0.9091)) +(: cnet_isa_3cf0832441 (IsA airstream wind) (STV 1.0 0.9091)) +(: cnet_isa_870262e69a (IsA airstrip airfield) (STV 1.0 0.9091)) +(: cnet_isa_783088fe89 (IsA airworthiness soundness) (STV 1.0 0.9091)) +(: cnet_isa_2fc86fc815 (IsA aisle area) (STV 1.0 0.9091)) +(: cnet_isa_fd679ddf65 (IsA aisle passage) (STV 1.0 0.9091)) +(: cnet_isa_638d8815c5 (IsA aisle passageway) (STV 1.0 0.9091)) +(: cnet_isa_4683248d34 (IsA aitchbone cut_of_beef) (STV 1.0 0.9091)) +(: cnet_isa_6a5a2918d2 (IsA aix bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_3de82a6856 (IsA aizoaceae caryophylloid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_61a426cb1b (IsA ajaia bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_eddbd9e6a1 (IsA ajuga asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_16d920afb2 (IsA akan kwa) (STV 1.0 0.9091)) +(: cnet_isa_38dc768f81 (IsA akaryocyte cell) (STV 1.0 0.9091)) +(: cnet_isa_696f65075c (IsA akee fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_2e4d2c7a76 (IsA akeridae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_b6624b247c (IsA akhbari religious_movement) (STV 1.0 0.9091)) +(: cnet_isa_96daa8f17c (IsA akinesis paralysis) (STV 1.0 0.9091)) +(: cnet_isa_de340474fd (IsA akinetic_epilepsy epilepsy) (STV 1.0 0.9091)) +(: cnet_isa_059e269660 (IsA akkadian semitic) (STV 1.0 0.9091)) +(: cnet_isa_04d07bc064 (IsA akwa_ala yuman) (STV 1.0 0.9091)) +(: cnet_isa_a6f7b1c404 (IsA akwa_ala hoka) (STV 1.0 0.9091)) +(: cnet_isa_ecb0323ed1 (IsA ala wing) (STV 1.0 0.9091)) +(: cnet_isa_0bd83a933a (IsA ala process) (STV 1.0 0.9091)) +(: cnet_isa_738a87096b (IsA alabama state) (STV 1.0 0.9339)) +(: cnet_isa_0e14552486 (IsA alabama muskhogean) (STV 1.0 0.9091)) +(: cnet_isa_4980aab387 (IsA alabama south) (STV 1.0 0.9091)) +(: cnet_isa_39abd3264a (IsA alabama muskogean) (STV 1.0 0.9091)) +(: cnet_isa_9215574a0f (IsA alabama_state_song alabama) (STV 1.0 0.9091)) +(: cnet_isa_a8c326105a (IsA alabamian american) (STV 1.0 0.9091)) +(: cnet_isa_f4a0fe7f4d (IsA alabaster white) (STV 1.0 0.9091)) +(: cnet_isa_a6987d3b18 (IsA alabaster calcite) (STV 1.0 0.9091)) +(: cnet_isa_138f008117 (IsA alabaster gypsum) (STV 1.0 0.9091)) +(: cnet_isa_598d10592a (IsA alacrity liveliness) (STV 1.0 0.9091)) +(: cnet_isa_116d267f1d (IsA aladdin_s_lamp lamp) (STV 1.0 0.9091)) +(: cnet_isa_5b51486c8a (IsA alalia paralysis) (STV 1.0 0.9091)) +(: cnet_isa_27de7d2fc0 (IsA alanine amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_b352758606 (IsA alarm device) (STV 1.0 0.9091)) +(: cnet_isa_b516525dc2 (IsA alarm signal) (STV 1.0 0.9091)) +(: cnet_isa_73994e1666 (IsA alarm fear) (STV 1.0 0.9091)) +(: cnet_isa_2bb37ef5a4 (IsA alarm_clock clock) (STV 1.0 0.9091)) +(: cnet_isa_b593a8353c (IsA alarmism warning) (STV 1.0 0.9091)) +(: cnet_isa_98a0d2fece (IsA alarmist communicator) (STV 1.0 0.9091)) +(: cnet_isa_684627e0a9 (IsA alaska state) (STV 1.0 0.9091)) +(: cnet_isa_c9d362e2ec (IsA alaska_fur_seal fur_seal) (STV 1.0 0.9091)) +(: cnet_isa_7c42126063 (IsA alaska_king_crab crab) (STV 1.0 0.9091)) +(: cnet_isa_b88c4c751a (IsA alaska_rein_orchid rein_orchid) (STV 1.0 0.9091)) +(: cnet_isa_307261ff4d (IsA alaska_standard_time civil_time) (STV 1.0 0.9091)) +(: cnet_isa_e1cd91b087 (IsA alaska_state_song alaska_s_flag) (STV 1.0 0.9091)) +(: cnet_isa_3cb390c275 (IsA alaskan american) (STV 1.0 0.9091)) +(: cnet_isa_2eb1d601d6 (IsA alaskan_brown_bear brown_bear) (STV 1.0 0.9091)) +(: cnet_isa_492aef80d6 (IsA alaskan_native alaskan) (STV 1.0 0.9091)) +(: cnet_isa_4a48cd7828 (IsA alastrim smallpox) (STV 1.0 0.9091)) +(: cnet_isa_3937885607 (IsA alauda bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_414cd90a29 (IsA alaudidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_cff79862cb (IsA alb vestment) (STV 1.0 0.9091)) +(: cnet_isa_5e7198f721 (IsA albacore tuna) (STV 1.0 0.9091)) +(: cnet_isa_59c8cd2818 (IsA albanian indo_european) (STV 1.0 0.9091)) +(: cnet_isa_3d47fa2d91 (IsA albanian european) (STV 1.0 0.9091)) +(: cnet_isa_6486ad053c (IsA albanian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_cc02f1d9a1 (IsA albatrellus fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_66aba14c1d (IsA albatrellus_dispansus polypore) (STV 1.0 0.9091)) +(: cnet_isa_ed0576c201 (IsA albatrellus_ovinus polypore) (STV 1.0 0.9091)) +(: cnet_isa_00b228f5a0 (IsA albatross bird) (STV 1.0 0.9091)) +(: cnet_isa_d3816f1b45 (IsA albatross pelagic_bird) (STV 1.0 0.9091)) +(: cnet_isa_0ff76656b9 (IsA albatross hindrance) (STV 1.0 0.9091)) +(: cnet_isa_13cc9843ec (IsA albedo ratio) (STV 1.0 0.9091)) +(: cnet_isa_db3d3aee3f (IsA albigens sect) (STV 1.0 0.9091)) +(: cnet_isa_f5b8735b8b (IsA albigensianism christianity) (STV 1.0 0.9091)) +(: cnet_isa_8975b0359d (IsA albigensianism heresy) (STV 1.0 0.9091)) +(: cnet_isa_6f20377dfb (IsA albinism birth_defect) (STV 1.0 0.9091)) +(: cnet_isa_20899e09d3 (IsA albinism hypopigmentation) (STV 1.0 0.9091)) +(: cnet_isa_3a56321058 (IsA albino person) (STV 1.0 0.9091)) +(: cnet_isa_00f00d61ec (IsA albite plagioclase) (STV 1.0 0.9091)) +(: cnet_isa_679468479d (IsA albizzia tree) (STV 1.0 0.9091)) +(: cnet_isa_8a31836c0f (IsA albright_s_disease fibrous_dysplasia_of_bone) (STV 1.0 0.9091)) +(: cnet_isa_c58d14eaad (IsA albuca liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_322720772f (IsA albuginaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_c107be15ff (IsA albuginea tunic) (STV 1.0 0.9091)) +(: cnet_isa_481362e8ea (IsA albugo fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_39aa9cd5f3 (IsA albula fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_ca5182af6e (IsA albulidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_0a77c50dba (IsA album book) (STV 1.0 0.9091)) +(: cnet_isa_167209797c (IsA album medium) (STV 1.0 0.9091)) +(: cnet_isa_b83a478a1d (IsA albumin simple_protein) (STV 1.0 0.9091)) +(: cnet_isa_0b288c1649 (IsA albuminuria symptom) (STV 1.0 0.9091)) +(: cnet_isa_ed3be820b2 (IsA alca bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_918b68f6b7 (IsA alcaic poem) (STV 1.0 0.9091)) +(: cnet_isa_300648b7b6 (IsA alcalde judge) (STV 1.0 0.9091)) +(: cnet_isa_b6f45a8e4b (IsA alcalde mayor) (STV 1.0 0.9091)) +(: cnet_isa_73be23dfda (IsA alcazar fortress) (STV 1.0 0.9091)) +(: cnet_isa_41c67466a7 (IsA alcazar palace) (STV 1.0 0.9091)) +(: cnet_isa_72d648334f (IsA alcea dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8efa8a98eb (IsA alcedinidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_9815d1584c (IsA alcedo bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_00ac56d570 (IsA alcelaphus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_7c73d41b81 (IsA alce mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_54496615b3 (IsA alchemist intellectual) (STV 1.0 0.9091)) +(: cnet_isa_9472ebe4b8 (IsA alchemy pseudoscience) (STV 1.0 0.9091)) +(: cnet_isa_928b088064 (IsA alcidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_6f370baba0 (IsA alcohol depressant) (STV 1.0 0.9091)) +(: cnet_isa_eff9b1af85 (IsA alcohol fermented_beverage) (STV 1.0 0.9091)) +(: cnet_isa_6da0083707 (IsA alcohol instance_of_drug) (STV 1.0 0.9091)) +(: cnet_isa_38854f2b72 (IsA alcohol intoxicating_beverage) (STV 1.0 0.9091)) +(: cnet_isa_a41134c9e2 (IsA alcohol numbing_agent) (STV 1.0 0.9091)) +(: cnet_isa_6f2504c8bf (IsA alcohol sedative_and_pain_killer) (STV 1.0 0.9091)) +(: cnet_isa_1352e2605f (IsA alcohol beverage) (STV 1.0 0.9091)) +(: cnet_isa_f7ebff06cb (IsA alcohol drug_of_abuse) (STV 1.0 0.9091)) +(: cnet_isa_f1644a950e (IsA alcohol liquid) (STV 1.0 0.9091)) +(: cnet_isa_c704c1ae71 (IsA alcohol_abuse substance_abuse) (STV 1.0 0.9091)) +(: cnet_isa_1c4c9efdf9 (IsA alcohol_group group) (STV 1.0 0.9091)) +(: cnet_isa_50ff0442a0 (IsA alcohol_thermometer thermometer) (STV 1.0 0.9091)) +(: cnet_isa_df02b1fd0d (IsA alcoholic person) (STV 1.0 0.9091)) +(: cnet_isa_bb80fe5959 (IsA alcoholic drunkard) (STV 1.0 0.9091)) +(: cnet_isa_5620838f7f (IsA alcoholic_dementia dementia) (STV 1.0 0.9091)) +(: cnet_isa_acd77f7e1e (IsA alcoholic_anonymous nongovernmental_organization) (STV 1.0 0.9091)) +(: cnet_isa_ce22bb005e (IsA alcoholism drug_addiction) (STV 1.0 0.9091)) +(: cnet_isa_f15d24a4c3 (IsA alcove recess) (STV 1.0 0.9091)) +(: cnet_isa_f62e7719b7 (IsA alcyonacea animal_order) (STV 1.0 0.9091)) +(: cnet_isa_741352e6a3 (IsA alcyonaria animal_order) (STV 1.0 0.9091)) +(: cnet_isa_5c58370b19 (IsA alcyone mythical_being) (STV 1.0 0.9091)) +(: cnet_isa_23c6a8c2ef (IsA aldehyde organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_6b5eaad3dc (IsA aldehyde_group group) (STV 1.0 0.9091)) +(: cnet_isa_7831ec72f8 (IsA alder tree) (STV 1.0 0.9091)) +(: cnet_isa_9b6b62adf2 (IsA alder wood) (STV 1.0 0.9091)) +(: cnet_isa_485e74d6d7 (IsA alder_blight blight) (STV 1.0 0.9091)) +(: cnet_isa_231b0746dc (IsA alder_buckthorn buckthorn) (STV 1.0 0.9091)) +(: cnet_isa_9d96e194b5 (IsA alderfly neuropteron) (STV 1.0 0.9091)) +(: cnet_isa_16a01c9c5a (IsA alderleaf_juneberry juneberry) (STV 1.0 0.9091)) +(: cnet_isa_34790aef30 (IsA alderman representative) (STV 1.0 0.9091)) +(: cnet_isa_4386d74329 (IsA aldohexose aldose) (STV 1.0 0.9091)) +(: cnet_isa_a0af72cd95 (IsA aldohexose hexose) (STV 1.0 0.9091)) +(: cnet_isa_f31b37f8fa (IsA aldol organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_4ed8dd8c8c (IsA aldol_reaction chemical_reaction) (STV 1.0 0.9091)) +(: cnet_isa_81aad5409b (IsA aldose monosaccharide) (STV 1.0 0.9091)) +(: cnet_isa_f54f2d0d95 (IsA aldosterone mineralocorticoid) (STV 1.0 0.9091)) +(: cnet_isa_f914b8894e (IsA aldosteronism glandular_disease) (STV 1.0 0.9091)) +(: cnet_isa_666e32b1e9 (IsA aldrovanda dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a0675332d5 (IsA ale beer) (STV 1.0 0.9091)) +(: cnet_isa_b3f946c542 (IsA aleatory_contract contract) (STV 1.0 0.9091)) +(: cnet_isa_8dd743de94 (IsA alectis fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_476ae94c61 (IsA alecto eumenide) (STV 1.0 0.9091)) +(: cnet_isa_af747bb948 (IsA alectoria fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_c64257dfb3 (IsA alectoris bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_e2d15b56b9 (IsA alectura bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_4e588b187f (IsA alehouse public_house) (STV 1.0 0.9091)) +(: cnet_isa_3e119aa56a (IsA alembic retort) (STV 1.0 0.9091)) +(: cnet_isa_0538426cbc (IsA aleph letter) (STV 1.0 0.9091)) +(: cnet_isa_8afddb9d8f (IsA aleph_null large_integer) (STV 1.0 0.9091)) +(: cnet_isa_bb3d4cae64 (IsA alepisaurus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_dfd320ac83 (IsA alert warning) (STV 1.0 0.9091)) +(: cnet_isa_47c6553593 (IsA alert readiness) (STV 1.0 0.9091)) +(: cnet_isa_3a49568975 (IsA alertness attentiveness) (STV 1.0 0.9091)) +(: cnet_isa_4557dcbb1a (IsA alertness arousal) (STV 1.0 0.9091)) +(: cnet_isa_345271efa9 (IsA alethic_logic modal_logic) (STV 1.0 0.9091)) +(: cnet_isa_cebbe14227 (IsA aletris liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_93eeb30e17 (IsA aleuria_aurantia discomycete) (STV 1.0 0.9091)) +(: cnet_isa_7e9663b204 (IsA aleurite rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0e96ba590e (IsA aleurone protein) (STV 1.0 0.9091)) +(: cnet_isa_2fbce12da8 (IsA aleut eskimo_aleut) (STV 1.0 0.9091)) +(: cnet_isa_65e61dfb81 (IsA aleut community) (STV 1.0 0.9091)) +(: cnet_isa_f1a6022d79 (IsA aleutian native_american) (STV 1.0 0.9091)) +(: cnet_isa_585f63ea30 (IsA alewife clupeid_fish) (STV 1.0 0.9091)) +(: cnet_isa_7b73f7b244 (IsA alewife fish) (STV 1.0 0.9091)) +(: cnet_isa_5ecf3581f6 (IsA alexander herb) (STV 1.0 0.9091)) +(: cnet_isa_947a1f1c07 (IsA alexandria_senna senna) (STV 1.0 0.9091)) +(: cnet_isa_dbdbb96994 (IsA alexandrian resident) (STV 1.0 0.9091)) +(: cnet_isa_c9e322caaa (IsA alexandrian_laurel poon) (STV 1.0 0.9091)) +(: cnet_isa_d769076213 (IsA alexandrine line_of_poetry) (STV 1.0 0.9091)) +(: cnet_isa_41d493a4c9 (IsA alexandrite chrysoberyl) (STV 1.0 0.9091)) +(: cnet_isa_cf28997244 (IsA alexic patient) (STV 1.0 0.9091)) +(: cnet_isa_a4fed5092a (IsA aleyrode arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_7564b3966c (IsA aleyrodidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_ee6fbaff96 (IsA alfalfa fodder) (STV 1.0 0.9091)) +(: cnet_isa_341ac314ac (IsA alfalfa medic) (STV 1.0 0.9091)) +(: cnet_isa_461eeb49fc (IsA alfalfa_sprout sprout) (STV 1.0 0.9091)) +(: cnet_isa_8c19a17668 (IsA alga protoctist) (STV 1.0 0.9091)) +(: cnet_isa_041f5a0099 (IsA algarroba bean) (STV 1.0 0.9091)) +(: cnet_isa_be13dd571c (IsA algarroba mesquite) (STV 1.0 0.9091)) +(: cnet_isa_5e91b34eab (IsA algebra pure_mathematic) (STV 1.0 0.9091)) +(: cnet_isa_e0d679641e (IsA algebraic_language algorithmic_language) (STV 1.0 0.9091)) +(: cnet_isa_63e1f64abd (IsA algebraic_number irrational_number) (STV 1.0 0.9091)) +(: cnet_isa_9797a62cc3 (IsA algebraist mathematician) (STV 1.0 0.9091)) +(: cnet_isa_7e86de40c3 (IsA algerian african) (STV 1.0 0.9091)) +(: cnet_isa_73e2ac5abe (IsA algerian_centime centime) (STV 1.0 0.9091)) +(: cnet_isa_3648e003a8 (IsA algerian_dinar algerian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_ad3e2a57e9 (IsA algerian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_213fee3cab (IsA algeripithecus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_2ec524a7bc (IsA algeripithecus_minutus hominoid) (STV 1.0 0.9091)) +(: cnet_isa_3bfa136216 (IsA algidity collapse) (STV 1.0 0.9091)) +(: cnet_isa_5bff0e1c38 (IsA algin gum) (STV 1.0 0.9091)) +(: cnet_isa_eb5439c38c (IsA algol algebraic_language) (STV 1.0 0.9091)) +(: cnet_isa_b4d881fb6f (IsA algolagnia sexual_pleasure) (STV 1.0 0.9091)) +(: cnet_isa_65f0a8f70c (IsA algometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_220626731f (IsA algometry measurement) (STV 1.0 0.9091)) +(: cnet_isa_28710785a0 (IsA algonkian algonquian) (STV 1.0 0.9091)) +(: cnet_isa_ca090a5d2c (IsA algonkin algonquin) (STV 1.0 0.9091)) +(: cnet_isa_38826933b1 (IsA algonquian amerind) (STV 1.0 0.9091)) +(: cnet_isa_5a3a0bc61f (IsA algonquin native_american) (STV 1.0 0.9091)) +(: cnet_isa_18612a8f13 (IsA algophobia simple_phobia) (STV 1.0 0.9091)) +(: cnet_isa_5a7e1e3a8c (IsA algorism arithmetic) (STV 1.0 0.9091)) +(: cnet_isa_879c2daffd (IsA algorism decimal_numeration_system) (STV 1.0 0.9091)) +(: cnet_isa_ff6c881a06 (IsA algorithm rule) (STV 1.0 0.9091)) +(: cnet_isa_1ca9c2c39a (IsA algorithm_error error) (STV 1.0 0.9091)) +(: cnet_isa_13bbec7f59 (IsA algorithmic_language programming_language) (STV 1.0 0.9091)) +(: cnet_isa_a375d68dd8 (IsA alia name) (STV 1.0 0.9091)) +(: cnet_isa_22ec4c8acd (IsA alibi defense) (STV 1.0 0.9091)) +(: cnet_isa_a3d1b42e5d (IsA alicyclic_compound aliphatic_compound) (STV 1.0 0.9091)) +(: cnet_isa_4aea724487 (IsA alidade surveying_instrument) (STV 1.0 0.9091)) +(: cnet_isa_111927f211 (IsA alien person) (STV 1.0 0.9454)) +(: cnet_isa_c9674ea3a1 (IsA alien_absconder absconder) (STV 1.0 0.9091)) +(: cnet_isa_43e7a60f58 (IsA alienage foreignness) (STV 1.0 0.9091)) +(: cnet_isa_bf02dd91ce (IsA alienation action) (STV 1.0 0.9091)) +(: cnet_isa_9649f1b8b4 (IsA alienation dislike) (STV 1.0 0.9091)) +(: cnet_isa_39e6ebfce8 (IsA alienation transfer) (STV 1.0 0.9091)) +(: cnet_isa_f639941bca (IsA alienation isolation) (STV 1.0 0.9091)) +(: cnet_isa_273abf2226 (IsA alienation_of_affection tort) (STV 1.0 0.9091)) +(: cnet_isa_e4ca9b6377 (IsA alienator unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_a1fd2fa6b6 (IsA alienee recipient) (STV 1.0 0.9091)) +(: cnet_isa_e8df49e443 (IsA alienism psychiatry) (STV 1.0 0.9091)) +(: cnet_isa_87fd1db3b2 (IsA alienist psychiatrist) (STV 1.0 0.9091)) +(: cnet_isa_6c9eaa1fdf (IsA alienor grantor) (STV 1.0 0.9091)) +(: cnet_isa_7a6aa3a7f3 (IsA alien all_around_us) (STV 1.0 0.9091)) +(: cnet_isa_d3acb9089d (IsA alignment adjustment) (STV 1.0 0.9091)) +(: cnet_isa_a719293846 (IsA alignment placement) (STV 1.0 0.9091)) +(: cnet_isa_725e7866d3 (IsA alimentary_canal duct) (STV 1.0 0.9091)) +(: cnet_isa_302b5bfb0b (IsA alimentary_tract_smear smear) (STV 1.0 0.9091)) +(: cnet_isa_6851c4d38c (IsA alimony support_payment) (STV 1.0 0.9091)) +(: cnet_isa_1aaa1244a6 (IsA aliphatic_compound organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_8ff6082e47 (IsA aliquant divisor) (STV 1.0 0.9091)) +(: cnet_isa_2c26f2e96c (IsA aliquot divisor) (STV 1.0 0.9091)) +(: cnet_isa_aa40794745 (IsA alisma monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9e537d38bd (IsA alismataceae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_ff1d8aeb7d (IsA alismatidae class) (STV 1.0 0.9091)) +(: cnet_isa_d438b95078 (IsA aliterate ignoramus) (STV 1.0 0.9091)) +(: cnet_isa_58ed3f851b (IsA aliyah award) (STV 1.0 0.9091)) +(: cnet_isa_4bd1e449c4 (IsA aliyah immigration) (STV 1.0 0.9091)) +(: cnet_isa_2f16614d74 (IsA alizarin pigment) (STV 1.0 0.9091)) +(: cnet_isa_4b17a6a1c9 (IsA alizarin_carmine alizarin) (STV 1.0 0.9091)) +(: cnet_isa_cb94fb3244 (IsA alizarin_yellow dye) (STV 1.0 0.9091)) +(: cnet_isa_02888e5926 (IsA alkahest solvent) (STV 1.0 0.9091)) +(: cnet_isa_c258fe2c0f (IsA alkalemia blood_disease) (STV 1.0 0.9091)) +(: cnet_isa_820832b4d0 (IsA alkali salt) (STV 1.0 0.9091)) +(: cnet_isa_7158a13239 (IsA alkali_grass death_cama) (STV 1.0 0.9091)) +(: cnet_isa_5eb6f36dad (IsA alkali_metal metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_bb2550d7e3 (IsA alkali_poisoning poisoning) (STV 1.0 0.9091)) +(: cnet_isa_6ffc46d186 (IsA alkalimetry volumetric_analysis) (STV 1.0 0.9091)) +(: cnet_isa_624133326e (IsA alkaline_earth metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_4946cc15ce (IsA alkalinity ph) (STV 1.0 0.9091)) +(: cnet_isa_20b2245e6c (IsA alkalinuria symptom) (STV 1.0 0.9091)) +(: cnet_isa_0648d29200 (IsA alkaloid organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_1a3ee2deb5 (IsA alkalosis pathology) (STV 1.0 0.9091)) +(: cnet_isa_d066360b70 (IsA alkane hydrocarbon) (STV 1.0 0.9091)) +(: cnet_isa_d9fcece777 (IsA alkapton acid) (STV 1.0 0.9091)) +(: cnet_isa_f45181bcf3 (IsA alkaptonuria metabolic_disorder) (STV 1.0 0.9091)) +(: cnet_isa_16d33bec75 (IsA alkene aliphatic_compound) (STV 1.0 0.9091)) +(: cnet_isa_aab11863b9 (IsA alkyd synthetic_resin) (STV 1.0 0.9091)) +(: cnet_isa_016413dcb9 (IsA alkyl group) (STV 1.0 0.9091)) +(: cnet_isa_409ff624ea (IsA alkyl_halide organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_2700b83a1d (IsA alkylating_agent antineoplastic) (STV 1.0 0.9091)) +(: cnet_isa_10e4b452ed (IsA alkylbenzene organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_60f7b69d40 (IsA alkylbenzenesulfonate sulfonate) (STV 1.0 0.9091)) +(: cnet_isa_22dd05e7e5 (IsA all_catholic christian) (STV 1.0 0.9091)) +(: cnet_isa_563d714241 (IsA all_clear permission) (STV 1.0 0.9091)) +(: cnet_isa_a9ccb7e157 (IsA all_clear signal) (STV 1.0 0.9091)) +(: cnet_isa_31072d3b2a (IsA all_four card_game) (STV 1.0 0.9091)) +(: cnet_isa_2374c9a2c1 (IsA all_mammal vertebrate) (STV 1.0 0.9339)) +(: cnet_isa_877c1a930d (IsA all_or_none_law law) (STV 1.0 0.9091)) +(: cnet_isa_d803680274 (IsA all_protestant christian) (STV 1.0 0.9091)) +(: cnet_isa_926a7193a6 (IsA all_real_thing construction) (STV 1.0 0.9091)) +(: cnet_isa_351f8d9fd1 (IsA all_rounder expert) (STV 1.0 0.9091)) +(: cnet_isa_5d002c2650 (IsA all_saint_day holy_day_of_obligation) (STV 1.0 0.9091)) +(: cnet_isa_0cf57ba5bf (IsA all_soul_day christian_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_c333aa7a2c (IsA alla_breve time_signature) (STV 1.0 0.9091)) +(: cnet_isa_d36b252abc (IsA allamanda vine) (STV 1.0 0.9091)) +(: cnet_isa_2c0fb025c7 (IsA allantois fetal_membrane) (STV 1.0 0.9091)) +(: cnet_isa_a8bf2d1e41 (IsA allegation claim) (STV 1.0 0.9091)) +(: cnet_isa_b721d39b82 (IsA allegation accusation) (STV 1.0 0.9091)) +(: cnet_isa_b2294e3d1f (IsA allegheny_chinkapin chestnut) (STV 1.0 0.9091)) +(: cnet_isa_d51140feef (IsA allegheny_plum wild_plum) (STV 1.0 0.9091)) +(: cnet_isa_550384b0d6 (IsA allegheny_spurge pachysandra) (STV 1.0 0.9091)) +(: cnet_isa_ee1e7432f5 (IsA allegiance loyalty) (STV 1.0 0.9091)) +(: cnet_isa_f5b8040483 (IsA allegorizer communicator) (STV 1.0 0.9091)) +(: cnet_isa_ef10af32c3 (IsA allegory expressive_style) (STV 1.0 0.9091)) +(: cnet_isa_dfd6d4bdcb (IsA allegretto musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_b2a5332c8e (IsA allegretto passage) (STV 1.0 0.9091)) +(: cnet_isa_ea97251998 (IsA allegretto tempo) (STV 1.0 0.9091)) +(: cnet_isa_02c0514f19 (IsA allegro musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_1091a8b9eb (IsA allegro passage) (STV 1.0 0.9091)) +(: cnet_isa_8ffa255d3b (IsA allegro tempo) (STV 1.0 0.9091)) +(: cnet_isa_01d5903acf (IsA allegro_con_spirito allegro) (STV 1.0 0.9091)) +(: cnet_isa_9b5dd66c65 (IsA allele gene) (STV 1.0 0.9091)) +(: cnet_isa_d24a1786c2 (IsA allemande sauce) (STV 1.0 0.9091)) +(: cnet_isa_15b1f6dd04 (IsA allen_screw screw) (STV 1.0 0.9091)) +(: cnet_isa_1160a27312 (IsA allen_wrench wrench) (STV 1.0 0.9091)) +(: cnet_isa_dd4177f2e8 (IsA allergen substance) (STV 1.0 0.9091)) +(: cnet_isa_7e980b3478 (IsA allergic_eczema eczema) (STV 1.0 0.9091)) +(: cnet_isa_55714ad606 (IsA allergic_rhinitis hypersensitivity_reaction) (STV 1.0 0.9091)) +(: cnet_isa_c53d6a63c2 (IsA allergic_rhinitis rhinitis) (STV 1.0 0.9091)) +(: cnet_isa_952d3cc91b (IsA allergist doctor) (STV 1.0 0.9091)) +(: cnet_isa_44c1b25b64 (IsA allergology medicine) (STV 1.0 0.9091)) +(: cnet_isa_80195488ea (IsA allergy hypersensitivity_reaction) (STV 1.0 0.9091)) +(: cnet_isa_d2edfbaa32 (IsA allergy_diet diet) (STV 1.0 0.9091)) +(: cnet_isa_807b5edbf6 (IsA alleviator therapist) (STV 1.0 0.9091)) +(: cnet_isa_60e0661abf (IsA alley street) (STV 1.0 0.9091)) +(: cnet_isa_9240978b59 (IsA alley_cat domestic_cat) (STV 1.0 0.9091)) +(: cnet_isa_dd42901a30 (IsA allhallowtide season) (STV 1.0 0.9091)) +(: cnet_isa_5c8cdb5875 (IsA alliaceae liliid_monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_81d56727a5 (IsA alliaceous_plant liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_177b099bba (IsA alliance treaty) (STV 1.0 0.9091)) +(: cnet_isa_34e8a4bc3d (IsA alliance organization) (STV 1.0 0.9091)) +(: cnet_isa_f99078b2b2 (IsA alliance connection) (STV 1.0 0.9091)) +(: cnet_isa_86f1483ec2 (IsA alliance coalition) (STV 1.0 0.9091)) +(: cnet_isa_bd88f6279d (IsA alliaria dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2f4091f3d5 (IsA allice_shad shad) (STV 1.0 0.9091)) +(: cnet_isa_6de3ccf7c2 (IsA allied_command_atlantic headquarter) (STV 1.0 0.9091)) +(: cnet_isa_fde0f3246c (IsA allied_command_europe headquarter) (STV 1.0 0.9091)) +(: cnet_isa_fa5d15279b (IsA ally alliance) (STV 1.0 0.9454)) +(: cnet_isa_50d4d2d135 (IsA alligator crocodilian_reptile) (STV 1.0 0.9091)) +(: cnet_isa_b4ed2d44f1 (IsA alligator leather) (STV 1.0 0.9091)) +(: cnet_isa_4402b52fa0 (IsA alligator_lizard anguid_lizard) (STV 1.0 0.9091)) +(: cnet_isa_c368802bdb (IsA alligator_snapping_turtle snapping_turtle) (STV 1.0 0.9091)) +(: cnet_isa_f6f0fb5b7a (IsA alligator_weed weed) (STV 1.0 0.9091)) +(: cnet_isa_13ae9beb7a (IsA alligator_wrench wrench) (STV 1.0 0.9091)) +(: cnet_isa_e0dbf77a18 (IsA alligatorfish poacher) (STV 1.0 0.9091)) +(: cnet_isa_2b906cd477 (IsA alligatoridae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_cee9995eb3 (IsA allionia caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_46a90b6df7 (IsA alliteration rhyme) (STV 1.0 0.9091)) +(: cnet_isa_f519bfcd5a (IsA alliterator speaker) (STV 1.0 0.9091)) +(: cnet_isa_378127068f (IsA alliterator writer) (STV 1.0 0.9091)) +(: cnet_isa_4a2d9df1d6 (IsA allium liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e89a641456 (IsA allocation assignment) (STV 1.0 0.9091)) +(: cnet_isa_d53f045850 (IsA allocation_unit computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_adca12576d (IsA allocator authority) (STV 1.0 0.9091)) +(: cnet_isa_09d59bf419 (IsA allocution address) (STV 1.0 0.9091)) +(: cnet_isa_d3372d05ce (IsA allogamy cross_fertilization) (STV 1.0 0.9091)) +(: cnet_isa_e13967bc76 (IsA allograph character) (STV 1.0 0.9091)) +(: cnet_isa_50a3dd53d6 (IsA allograph signature) (STV 1.0 0.9091)) +(: cnet_isa_1abdee1816 (IsA allomerism variation) (STV 1.0 0.9091)) +(: cnet_isa_909dda7ceb (IsA allometry discipline) (STV 1.0 0.9091)) +(: cnet_isa_7d5301c62a (IsA allomorph morpheme) (STV 1.0 0.9091)) +(: cnet_isa_f8959be070 (IsA allomorph compound) (STV 1.0 0.9091)) +(: cnet_isa_1076f8038a (IsA allopathy medical_care) (STV 1.0 0.9091)) +(: cnet_isa_bb51877803 (IsA allopatry occurrence) (STV 1.0 0.9091)) +(: cnet_isa_6042565a08 (IsA allophone phoneme) (STV 1.0 0.9091)) +(: cnet_isa_c2530d93ec (IsA allosaur theropod) (STV 1.0 0.9091)) +(: cnet_isa_9349888309 (IsA allotment distribution) (STV 1.0 0.9091)) +(: cnet_isa_9c6d726e92 (IsA allotment share) (STV 1.0 0.9091)) +(: cnet_isa_c93f2691c4 (IsA allotrope chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_0da597117a (IsA allotropy chemical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_90b0127759 (IsA allowance license) (STV 1.0 0.9091)) +(: cnet_isa_54d7196743 (IsA allowance discrepancy) (STV 1.0 0.9091)) +(: cnet_isa_da0dc45527 (IsA allowance recompense) (STV 1.0 0.9091)) +(: cnet_isa_b2964b5bd3 (IsA allowance reimbursement) (STV 1.0 0.9091)) +(: cnet_isa_4cbb3691e7 (IsA allowance share) (STV 1.0 0.9091)) +(: cnet_isa_96fc96e82f (IsA alloy mixture) (STV 1.0 0.9091)) +(: cnet_isa_d0aa81b700 (IsA alloy_iron cast_iron) (STV 1.0 0.9091)) +(: cnet_isa_d6d468d93d (IsA alloy_steel steel) (STV 1.0 0.9091)) +(: cnet_isa_f2aa5a786d (IsA allspice spice) (STV 1.0 0.9091)) +(: cnet_isa_6a818e4426 (IsA allspice shrub) (STV 1.0 0.9091)) +(: cnet_isa_22f0fb8e7a (IsA allspice spice_tree) (STV 1.0 0.9091)) +(: cnet_isa_d39d901722 (IsA allspice_tree spice_tree) (STV 1.0 0.9091)) +(: cnet_isa_b4ff24fbff (IsA allure attraction) (STV 1.0 0.9091)) +(: cnet_isa_acbe24a9e8 (IsA allurement temptation) (STV 1.0 0.9091)) +(: cnet_isa_1e10bbf9bf (IsA allusion mention) (STV 1.0 0.9091)) +(: cnet_isa_06a8fd6a98 (IsA allusiveness indirectness) (STV 1.0 0.9091)) +(: cnet_isa_fc8943109b (IsA alluvial_fan geological_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_fc23059f7e (IsA alluvial_plain flat) (STV 1.0 0.9091)) +(: cnet_isa_fc3dd0f1eb (IsA alluvial_sediment sediment) (STV 1.0 0.9091)) +(: cnet_isa_2ee4e9d93d (IsA alluvial_soil soil) (STV 1.0 0.9091)) +(: cnet_isa_e101d2da7e (IsA alluvion geological_process) (STV 1.0 0.9091)) +(: cnet_isa_2780c0094c (IsA ally state) (STV 1.0 0.9091)) +(: cnet_isa_82f6ab876d (IsA ally associate) (STV 1.0 0.9091)) +(: cnet_isa_16bed03af5 (IsA allyl group) (STV 1.0 0.9091)) +(: cnet_isa_f048bbf784 (IsA allyl_alcohol alcohol) (STV 1.0 0.9091)) +(: cnet_isa_9ff8937583 (IsA allyl_resin synthetic_resin) (STV 1.0 0.9091)) +(: cnet_isa_a2e5b64c5f (IsA alma_mater school) (STV 1.0 0.9091)) +(: cnet_isa_3f75fb6f32 (IsA almanac annual) (STV 1.0 0.9091)) +(: cnet_isa_c552fdfc10 (IsA almandine spinel_ruby) (STV 1.0 0.9091)) +(: cnet_isa_4998620ded (IsA almandite garnet) (STV 1.0 0.9091)) +(: cnet_isa_7cfd0017ba (IsA almond drupe) (STV 1.0 0.9091)) +(: cnet_isa_e8d859c062 (IsA almond edible_nut) (STV 1.0 0.9091)) +(: cnet_isa_01f123b1a7 (IsA almond almond_tree) (STV 1.0 0.9091)) +(: cnet_isa_58cd758132 (IsA almond_cookie cookie) (STV 1.0 0.9091)) +(: cnet_isa_db71465a53 (IsA almond_extract flavorer) (STV 1.0 0.9091)) +(: cnet_isa_57e2e676e5 (IsA almond_moth pyralid) (STV 1.0 0.9091)) +(: cnet_isa_ec7b388c1f (IsA almond_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_625ae2294f (IsA almond_tree fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_415be3b43d (IsA almond_willow osier) (STV 1.0 0.9091)) +(: cnet_isa_8d8fc51657 (IsA almoner social_worker) (STV 1.0 0.9091)) +(: cnet_isa_c22417264a (IsA almoravid berber) (STV 1.0 0.9091)) +(: cnet_isa_0e264893a7 (IsA alm contribution) (STV 1.0 0.9091)) +(: cnet_isa_d4e883fcdf (IsA alm giving) (STV 1.0 0.9091)) +(: cnet_isa_2d5bc1f2ce (IsA alm_dish tray) (STV 1.0 0.9091)) +(: cnet_isa_d114b30411 (IsA almsgiver donor) (STV 1.0 0.9091)) +(: cnet_isa_df14046b50 (IsA alnus hamamelid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_610cff97bd (IsA alocasia arum) (STV 1.0 0.9091)) +(: cnet_isa_338c857131 (IsA aloe succulent) (STV 1.0 0.9091)) +(: cnet_isa_159cd2d926 (IsA aloe_vera plant) (STV 1.0 0.9091)) +(: cnet_isa_c78423054c (IsA aloeaceae liliid_monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_39c684436b (IsA aloe purgative) (STV 1.0 0.9091)) +(: cnet_isa_d266f66ff6 (IsA aloha acknowledgment) (STV 1.0 0.9091)) +(: cnet_isa_2260e3207b (IsA aloneness disposition) (STV 1.0 0.9091)) +(: cnet_isa_ce4dc6086f (IsA aloofness unsociability) (STV 1.0 0.9091)) +(: cnet_isa_3e66ff70be (IsA alopecia baldness) (STV 1.0 0.9091)) +(: cnet_isa_450887b0b1 (IsA alopecia_areata alopecia) (STV 1.0 0.9091)) +(: cnet_isa_b203fe066a (IsA alopecurus monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_607d63fc39 (IsA alopex mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_c5771ff24e (IsA alopiidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_fd0e83aa60 (IsA alopius fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_7db6b0848b (IsA alosa fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_7b0f8952ed (IsA alouatta mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_d8a0cd1a4f (IsA alp mountain) (STV 1.0 0.9091)) +(: cnet_isa_feb08327a7 (IsA alpaca llama) (STV 1.0 0.9091)) +(: cnet_isa_a4bdae8b6e (IsA alpaca fabric) (STV 1.0 0.9091)) +(: cnet_isa_f769f9d140 (IsA alpaca wool) (STV 1.0 0.9091)) +(: cnet_isa_b22d6c1340 (IsA alpenstock staff) (STV 1.0 0.9091)) +(: cnet_isa_4010756d2a (IsA alpha letter) (STV 1.0 0.9091)) +(: cnet_isa_628ffada26 (IsA alpha start) (STV 1.0 0.9091)) +(: cnet_isa_62386737ed (IsA alpha_and_omega crux) (STV 1.0 0.9091)) +(: cnet_isa_e9400af2f3 (IsA alpha_and_omega eternity) (STV 1.0 0.9091)) +(: cnet_isa_a53f32b3df (IsA alpha_beta_brass brass) (STV 1.0 0.9091)) +(: cnet_isa_1a0f59d1dd (IsA alpha_blocker blocker) (STV 1.0 0.9091)) +(: cnet_isa_6c100298c7 (IsA alpha_brass brass) (STV 1.0 0.9091)) +(: cnet_isa_df042146ca (IsA alpha_bronze bronze) (STV 1.0 0.9091)) +(: cnet_isa_1a3df31ef2 (IsA alpha_decay decay) (STV 1.0 0.9091)) +(: cnet_isa_f6625ff917 (IsA alpha_fetoprotein fetoprotein) (STV 1.0 0.9091)) +(: cnet_isa_765cb23428 (IsA alpha_globulin globulin) (STV 1.0 0.9091)) +(: cnet_isa_031836c8bd (IsA alpha_interferon interferon) (STV 1.0 0.9091)) +(: cnet_isa_0249d67753 (IsA alpha_iron iron) (STV 1.0 0.9091)) +(: cnet_isa_a4ac14f1fe (IsA alpha_linolenic_acid omega_3_fatty_acid) (STV 1.0 0.9091)) +(: cnet_isa_c1aa4ffae9 (IsA alpha_naphthol naphthol) (STV 1.0 0.9091)) +(: cnet_isa_d80f76b643 (IsA alpha_naphthol_test indicator) (STV 1.0 0.9091)) +(: cnet_isa_b150a04154 (IsA alpha_particle particle) (STV 1.0 0.9091)) +(: cnet_isa_1e0c9d946d (IsA alpha_privative prefix) (STV 1.0 0.9091)) +(: cnet_isa_1bf2becac3 (IsA alpha_radiation corpuscular_radiation) (STV 1.0 0.9091)) +(: cnet_isa_ee11bc2939 (IsA alpha_radiation ionizing_radiation) (STV 1.0 0.9091)) +(: cnet_isa_9d762b2876 (IsA alpha_receptor receptor) (STV 1.0 0.9091)) +(: cnet_isa_21aaf7d5cf (IsA alpha_rhythm brainwave) (STV 1.0 0.9091)) +(: cnet_isa_a4687d7fcb (IsA alpha_software software) (STV 1.0 0.9091)) +(: cnet_isa_6ae48a2e4c (IsA alpha_test trial) (STV 1.0 0.9091)) +(: cnet_isa_a55d4fe8ab (IsA alpha_tocopheral vitamin_e) (STV 1.0 0.9091)) +(: cnet_isa_71fa894f9c (IsA alphabet sery_of_letter) (STV 1.0 0.9454)) +(: cnet_isa_76f0cc460b (IsA alphabet character_set) (STV 1.0 0.9091)) +(: cnet_isa_a77fe6df7a (IsA alphabet script) (STV 1.0 0.9091)) +(: cnet_isa_f006a0ded5 (IsA alphabet_soup soup) (STV 1.0 0.9091)) +(: cnet_isa_c92e371611 (IsA alphabet_soup assortment) (STV 1.0 0.9091)) +(: cnet_isa_cab7e28194 (IsA alphabetic_writing orthography) (STV 1.0 0.9091)) +(: cnet_isa_e0a7cc1b0a (IsA alphabetization order) (STV 1.0 0.9091)) +(: cnet_isa_c1d006cd98 (IsA alphabetizer literate) (STV 1.0 0.9091)) +(: cnet_isa_e734a888c7 (IsA alphanumeric character_set) (STV 1.0 0.9091)) +(: cnet_isa_62876f9056 (IsA alphavirus animal_virus) (STV 1.0 0.9091)) +(: cnet_isa_a7793d91c4 (IsA alpine_anemone anemone) (STV 1.0 0.9091)) +(: cnet_isa_c732e2c23d (IsA alpine_ash eucalyptus) (STV 1.0 0.9091)) +(: cnet_isa_11b9ca5a58 (IsA alpine_azalea shrub) (STV 1.0 0.9091)) +(: cnet_isa_fcbbec218f (IsA alpine_bearberry bearberry) (STV 1.0 0.9091)) +(: cnet_isa_9860a2fcd7 (IsA alpine_besseya kitten_tail) (STV 1.0 0.9091)) +(: cnet_isa_de03c6a1b8 (IsA alpine_celery_pine celery_pine) (STV 1.0 0.9091)) +(: cnet_isa_80c3eff6cf (IsA alpine_clover clover) (STV 1.0 0.9091)) +(: cnet_isa_8dc087fa2b (IsA alpine_clubmoss club_moss) (STV 1.0 0.9091)) +(: cnet_isa_86c929ca71 (IsA alpine_coltsfoot herb) (STV 1.0 0.9091)) +(: cnet_isa_ed1f6740d5 (IsA alpine_enchanter_s_nightshade enchanter_s_nightshade) (STV 1.0 0.9091)) +(: cnet_isa_d33853f7ab (IsA alpine_fir silver_fir) (STV 1.0 0.9091)) +(: cnet_isa_2515727de6 (IsA alpine_glacier glacier) (STV 1.0 0.9091)) +(: cnet_isa_9841c71ef0 (IsA alpine_gold wildflower) (STV 1.0 0.9091)) +(: cnet_isa_c49c4d69c5 (IsA alpine_goldenrod goldenrod) (STV 1.0 0.9091)) +(: cnet_isa_1000404fb1 (IsA alpine_lady_fern lady_fern) (STV 1.0 0.9091)) +(: cnet_isa_44b9eee178 (IsA alpine_milk_vetch milk_vetch) (STV 1.0 0.9091)) +(: cnet_isa_5b06f70158 (IsA alpine_mouse_ear mouse_ear_chickweed) (STV 1.0 0.9091)) +(: cnet_isa_e4d8f592d5 (IsA alpine_salamander salamander) (STV 1.0 0.9091)) +(: cnet_isa_9a1152b56c (IsA alpine_totara shrub) (STV 1.0 0.9091)) +(: cnet_isa_9d0b1aa092 (IsA alpine_woodsia woodsia) (STV 1.0 0.9091)) +(: cnet_isa_3cc751943a (IsA alpinia plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_06b4a83240 (IsA alpinism mountain_climbing) (STV 1.0 0.9091)) +(: cnet_isa_903d2769de (IsA alpinist mountaineer) (STV 1.0 0.9091)) +(: cnet_isa_f6e873b767 (IsA alsatian inhabitant) (STV 1.0 0.9091)) +(: cnet_isa_227d136e6d (IsA alsobia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f9de8c2f53 (IsA alsophila arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_fa1620761f (IsA alsophila_pometaria geometrid) (STV 1.0 0.9091)) +(: cnet_isa_05b7b72d21 (IsA alstonia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6d3927fb9c (IsA alstroemeria liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_f0b0ada152 (IsA alstroemeriaceae liliid_monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_3209d9f17b (IsA alta_vista search_engine) (STV 1.0 0.9091)) +(: cnet_isa_d1133b41cc (IsA altaic ural_altaic) (STV 1.0 0.9091)) +(: cnet_isa_c6d93f3313 (IsA altaic asiatic) (STV 1.0 0.9091)) +(: cnet_isa_1df26f9c6a (IsA altar structure) (STV 1.0 0.9091)) +(: cnet_isa_6a32afbfe9 (IsA altar table) (STV 1.0 0.9091)) +(: cnet_isa_1e21b46cef (IsA altar_boy acolyte) (STV 1.0 0.9091)) +(: cnet_isa_6f74a72a4e (IsA altar_boy male_child) (STV 1.0 0.9091)) +(: cnet_isa_de3f5b570a (IsA altar_wine wine) (STV 1.0 0.9091)) +(: cnet_isa_cac7b066e1 (IsA altarpiece screen) (STV 1.0 0.9091)) +(: cnet_isa_9955d98754 (IsA altazimuth measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_251f54863c (IsA alter_ego friend) (STV 1.0 0.9091)) +(: cnet_isa_f30b11f380 (IsA alterability mutability) (STV 1.0 0.9091)) +(: cnet_isa_2918379417 (IsA alteration change) (STV 1.0 0.9091)) +(: cnet_isa_1f64ead951 (IsA alternanthera caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ce11ea7d84 (IsA alternating_current electricity) (STV 1.0 0.9091)) +(: cnet_isa_8579e06ff1 (IsA alternation succession) (STV 1.0 0.9091)) +(: cnet_isa_8b02cc86a2 (IsA alternation_of_generation organic_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_edc2f658b4 (IsA alternative_birth childbirth) (STV 1.0 0.9091)) +(: cnet_isa_70fc427955 (IsA alternative_energy energy) (STV 1.0 0.9091)) +(: cnet_isa_ff70928969 (IsA alternative_medicine medicine) (STV 1.0 0.9091)) +(: cnet_isa_5ec30ce3e2 (IsA alternative_pleading pleading) (STV 1.0 0.9091)) +(: cnet_isa_f0d521f19b (IsA alternator generator) (STV 1.0 0.9091)) +(: cnet_isa_0e1d1cd2cb (IsA althea mallow) (STV 1.0 0.9091)) +(: cnet_isa_9209447aee (IsA altimeter measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_fca9cb8046 (IsA altitude elevation) (STV 1.0 0.9091)) +(: cnet_isa_38003cdd56 (IsA altitude distance) (STV 1.0 0.9091)) +(: cnet_isa_3d94286e5d (IsA altitude_sickness hypoxia) (STV 1.0 0.9091)) +(: cnet_isa_8a867dd87f (IsA alto pitch) (STV 1.0 0.9091)) +(: cnet_isa_f74b5f11ff (IsA alto singer) (STV 1.0 0.9091)) +(: cnet_isa_7e73b19c6e (IsA alto_clef clef) (STV 1.0 0.9091)) +(: cnet_isa_260047eeff (IsA alto_relievo relief) (STV 1.0 0.9091)) +(: cnet_isa_b378af6982 (IsA alto_saxophonist saxophonist) (STV 1.0 0.9091)) +(: cnet_isa_041817830c (IsA altocumulus cumulus) (STV 1.0 0.9091)) +(: cnet_isa_a19fb0d09a (IsA altostratus stratus) (STV 1.0 0.9091)) +(: cnet_isa_2483c22952 (IsA altruism unselfishness) (STV 1.0 0.9091)) +(: cnet_isa_7ab707dd57 (IsA alula squama) (STV 1.0 0.9091)) +(: cnet_isa_f263d425c7 (IsA alum astringent) (STV 1.0 0.9091)) +(: cnet_isa_1206f17bc9 (IsA alum aluminum) (STV 1.0 0.9091)) +(: cnet_isa_8ce78ec4f4 (IsA alum double_salt) (STV 1.0 0.9091)) +(: cnet_isa_43090ff16e (IsA alumina corundom) (STV 1.0 0.9091)) +(: cnet_isa_e67bdb4f5c (IsA aluminate compound) (STV 1.0 0.9091)) +(: cnet_isa_060646f82f (IsA aluminum material) (STV 1.0 0.9339)) +(: cnet_isa_8128861ac3 (IsA aluminum metal) (STV 1.0 0.9454)) +(: cnet_isa_a25ff6e9e3 (IsA aluminum metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_21c0917ee0 (IsA aluminum_bronze copper_base_alloy) (STV 1.0 0.9091)) +(: cnet_isa_32691ef78b (IsA aluminum_business industry) (STV 1.0 0.9091)) +(: cnet_isa_4240210047 (IsA aluminum_chloride chloride) (STV 1.0 0.9091)) +(: cnet_isa_dc98a7967f (IsA aluminum_foil foil) (STV 1.0 0.9091)) +(: cnet_isa_b3cc9a9bed (IsA aluminum_hydroxide hydroxide) (STV 1.0 0.9091)) +(: cnet_isa_d17edd4577 (IsA alumnus scholar) (STV 1.0 0.9091)) +(: cnet_isa_4f965920a1 (IsA alumroot herb) (STV 1.0 0.9091)) +(: cnet_isa_f833925892 (IsA alundum alumina) (STV 1.0 0.9091)) +(: cnet_isa_1c17582ee3 (IsA alveolar_arch process) (STV 1.0 0.9091)) +(: cnet_isa_b65e508030 (IsA alveolar_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_a5fd29dfb9 (IsA alveolar_bed structure) (STV 1.0 0.9091)) +(: cnet_isa_ed9d3934f7 (IsA alveolar_consonant consonant) (STV 1.0 0.9091)) +(: cnet_isa_ac5bcdf4c9 (IsA alveolar_ectasia ectasia) (STV 1.0 0.9091)) +(: cnet_isa_eb8b2091af (IsA alveolar_resorption periodontal_disease) (STV 1.0 0.9091)) +(: cnet_isa_2ebef85157 (IsA alveolar_rhabdomyosarcoma rhabdomyosarcoma) (STV 1.0 0.9091)) +(: cnet_isa_4b09b55f3b (IsA alveolar_ridge process) (STV 1.0 0.9091)) +(: cnet_isa_25f85c0350 (IsA alveolitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_eaed7cdbda (IsA alveolus sac) (STV 1.0 0.9091)) +(: cnet_isa_8ed51f8595 (IsA alyssum crucifer) (STV 1.0 0.9091)) +(: cnet_isa_0e3dbecf51 (IsA alyssum dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_80136fc859 (IsA alyte amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_db8c7a99f8 (IsA alzheimer_s_disease presenile_dementia) (STV 1.0 0.9091)) +(: cnet_isa_9043255f9c (IsA amabilis_fir silver_fir) (STV 1.0 0.9091)) +(: cnet_isa_b2ced23cc7 (IsA amalgam combination) (STV 1.0 0.9091)) +(: cnet_isa_9953d4cffa (IsA amalgam alloy) (STV 1.0 0.9091)) +(: cnet_isa_4664be6633 (IsA amalgamation consolidation) (STV 1.0 0.9091)) +(: cnet_isa_832a3f3bcd (IsA amalgamator businessman) (STV 1.0 0.9091)) +(: cnet_isa_e3ed18c524 (IsA amanita fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_7e7f3a7b43 (IsA amaranth grain) (STV 1.0 0.9091)) +(: cnet_isa_cec0327bf3 (IsA amaranth herb) (STV 1.0 0.9091)) +(: cnet_isa_5eae212460 (IsA amaranthaceae caryophylloid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_5027c4ea12 (IsA amaranthus caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1f2c4e18ad (IsA amarelle sour_cherry) (STV 1.0 0.9091)) +(: cnet_isa_b18ca53684 (IsA amaretto liqueur) (STV 1.0 0.9091)) +(: cnet_isa_c96ec89e16 (IsA amaryllidaceae liliid_monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_d7aa023099 (IsA amaryllis bulbous_plant) (STV 1.0 0.9091)) +(: cnet_isa_769c95d938 (IsA amastia abnormality) (STV 1.0 0.9091)) +(: cnet_isa_43a162c06f (IsA amateur athlete) (STV 1.0 0.9091)) +(: cnet_isa_d88b74bce3 (IsA amateur person) (STV 1.0 0.9091)) +(: cnet_isa_49f63fa50f (IsA amateurishness unskillfulness) (STV 1.0 0.9091)) +(: cnet_isa_7a0fe3c912 (IsA amateurism conviction) (STV 1.0 0.9091)) +(: cnet_isa_c8b10beb56 (IsA amati violin) (STV 1.0 0.9091)) +(: cnet_isa_8a3419841e (IsA amauropelta fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_d5eaf6e484 (IsA amaurosis visual_impairment) (STV 1.0 0.9091)) +(: cnet_isa_47bb14aa33 (IsA amazon parrot) (STV 1.0 0.9091)) +(: cnet_isa_7eac36bb39 (IsA amazon mythical_being) (STV 1.0 0.9091)) +(: cnet_isa_deb79dba04 (IsA amazon woman) (STV 1.0 0.9091)) +(: cnet_isa_b9502ce70c (IsA amazon_ant slave_making_ant) (STV 1.0 0.9091)) +(: cnet_isa_2b2e582ed7 (IsA amazona bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_328c689578 (IsA ambage way) (STV 1.0 0.9091)) +(: cnet_isa_86562e51da (IsA ambassador diplomat) (STV 1.0 0.9091)) +(: cnet_isa_1c3c7dfbcc (IsA ambassador spokesperson) (STV 1.0 0.9091)) +(: cnet_isa_31d6e9c9f1 (IsA ambassadorship position) (STV 1.0 0.9091)) +(: cnet_isa_3847b360c6 (IsA ambassadress ambassador) (STV 1.0 0.9091)) +(: cnet_isa_0ce4cf6531 (IsA amber yellow) (STV 1.0 0.9091)) +(: cnet_isa_91a5bc715d (IsA amber natural_resin) (STV 1.0 0.9091)) +(: cnet_isa_1928e3b0fc (IsA amber_lily liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_0cbfd366e4 (IsA amberboa asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_323b7ac0b6 (IsA ambergris animal_product) (STV 1.0 0.9091)) +(: cnet_isa_af45a1a4e7 (IsA amberjack jack) (STV 1.0 0.9091)) +(: cnet_isa_e4f79eaa3e (IsA ambiance environment) (STV 1.0 0.9091)) +(: cnet_isa_aaca36407d (IsA ambidexterity handedness) (STV 1.0 0.9091)) +(: cnet_isa_49dea9ea52 (IsA ambiguity unclearness) (STV 1.0 0.9091)) +(: cnet_isa_87d415c66d (IsA ambiguity saying) (STV 1.0 0.9091)) +(: cnet_isa_bd697d36bc (IsA ambition drive) (STV 1.0 0.9091)) +(: cnet_isa_3f36be2c75 (IsA ambition desire) (STV 1.0 0.9091)) +(: cnet_isa_8a317ffbc1 (IsA ambivalence feeling) (STV 1.0 0.9091)) +(: cnet_isa_a1c4172510 (IsA ambiversion sociability) (STV 1.0 0.9091)) +(: cnet_isa_d5198c1b88 (IsA amble walk) (STV 1.0 0.9091)) +(: cnet_isa_9a9f0a2c86 (IsA ambloplite fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_11abee345f (IsA amblygonite mineral) (STV 1.0 0.9091)) +(: cnet_isa_cda2b29a1b (IsA amblyopia visual_impairment) (STV 1.0 0.9091)) +(: cnet_isa_975a4b0220 (IsA amblyrhynchus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_b9445530ca (IsA amboina_pine kauri_pine) (STV 1.0 0.9091)) +(: cnet_isa_42b5d36449 (IsA amboyna rosewood) (STV 1.0 0.9091)) +(: cnet_isa_d14e3f641a (IsA ambrosia dainty) (STV 1.0 0.9091)) +(: cnet_isa_6fb8e702ce (IsA ambrosia dessert) (STV 1.0 0.9091)) +(: cnet_isa_9580ce8115 (IsA ambrosiaceae asterid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_43d47bb3cc (IsA ambulacrum body_part) (STV 1.0 0.9091)) +(: cnet_isa_fedf7b344c (IsA ambulance car) (STV 1.0 0.9091)) +(: cnet_isa_683afec4e5 (IsA ambulance_chaser lawyer) (STV 1.0 0.9091)) +(: cnet_isa_c00ba4aef2 (IsA ambulation walk) (STV 1.0 0.9091)) +(: cnet_isa_44b0cf13ca (IsA ambulatory walk) (STV 1.0 0.9091)) +(: cnet_isa_05f68a2416 (IsA ambulatory_plague bubonic_plague) (STV 1.0 0.9091)) +(: cnet_isa_39f7dbdb33 (IsA ambush surprise_attack) (STV 1.0 0.9091)) +(: cnet_isa_791a08849a (IsA ambusher attacker) (STV 1.0 0.9091)) +(: cnet_isa_3d33dc9770 (IsA ambystoma amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_2bd40f35d0 (IsA ambystomatidae amphibian_family) (STV 1.0 0.9091)) +(: cnet_isa_3b5613b94f (IsA ambystomid salamander) (STV 1.0 0.9091)) +(: cnet_isa_c805f94e44 (IsA ameba rhizopod) (STV 1.0 0.9091)) +(: cnet_isa_48b64c4812 (IsA amebiasis protozoal_infection) (STV 1.0 0.9091)) +(: cnet_isa_59c1ffe142 (IsA amebic_dysentery amebiasis) (STV 1.0 0.9091)) +(: cnet_isa_6552a4dd3e (IsA amebic_dysentery dysentery) (STV 1.0 0.9091)) +(: cnet_isa_e175adedf8 (IsA ameiuridae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_22cea6d641 (IsA ameiurus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_d2b49586db (IsA amelanchier rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d7625cd876 (IsA amelia birth_defect) (STV 1.0 0.9091)) +(: cnet_isa_0ac92271b6 (IsA amelioration improvement) (STV 1.0 0.9091)) +(: cnet_isa_bb3f58d1db (IsA ameloblast embryonic_cell) (STV 1.0 0.9091)) +(: cnet_isa_f78915ddb3 (IsA amelogenesis growth) (STV 1.0 0.9091)) +(: cnet_isa_54ad7087a9 (IsA amen_corner corner) (STV 1.0 0.9091)) +(: cnet_isa_b8b5f09155 (IsA amenability tractability) (STV 1.0 0.9091)) +(: cnet_isa_8fa0bf571c (IsA amended_return tax_return) (STV 1.0 0.9091)) +(: cnet_isa_22eed5531e (IsA amendment correction) (STV 1.0 0.9091)) +(: cnet_isa_b33438c1da (IsA amendment statement) (STV 1.0 0.9091)) +(: cnet_isa_e1bad6f8b6 (IsA amenorrhea symptom) (STV 1.0 0.9091)) +(: cnet_isa_bf354b5b4b (IsA amentiferae taxonomic_group) (STV 1.0 0.9091)) +(: cnet_isa_3bdf719767 (IsA america country) (STV 1.0 0.9719)) +(: cnet_isa_ab0c22f6e9 (IsA american citizen_of_america) (STV 1.0 0.9339)) +(: cnet_isa_b26e6f6003 (IsA american inhabitant) (STV 1.0 0.9091)) +(: cnet_isa_8cc501bec3 (IsA american_agave agave) (STV 1.0 0.9091)) +(: cnet_isa_589bc76a6c (IsA american_alligator alligator) (STV 1.0 0.9091)) +(: cnet_isa_3bfa757e47 (IsA american_angelica_tree shrub) (STV 1.0 0.9091)) +(: cnet_isa_cd1f22c5e5 (IsA american_arborvitae arborvitae) (STV 1.0 0.9091)) +(: cnet_isa_df5fa26942 (IsA american_badger badger) (STV 1.0 0.9091)) +(: cnet_isa_94baa6aec2 (IsA american_baptist_convention association) (STV 1.0 0.9091)) +(: cnet_isa_facf17a166 (IsA american_barberry barberry) (STV 1.0 0.9091)) +(: cnet_isa_0054179f58 (IsA american_basswood linden) (STV 1.0 0.9091)) +(: cnet_isa_33ae239597 (IsA american_beech beech) (STV 1.0 0.9091)) +(: cnet_isa_82b487dd18 (IsA american_bison bison) (STV 1.0 0.9091)) +(: cnet_isa_af5117c26f (IsA american_bittern bittern) (STV 1.0 0.9091)) +(: cnet_isa_e559ffbb73 (IsA american_black_bear bear) (STV 1.0 0.9091)) +(: cnet_isa_ce8b8e39b2 (IsA american_bog_asphodel bog_asphodel) (STV 1.0 0.9091)) +(: cnet_isa_c29dc1602e (IsA american_bugbane bugbane) (STV 1.0 0.9091)) +(: cnet_isa_3f48eec96d (IsA american_chameleon iguanid) (STV 1.0 0.9091)) +(: cnet_isa_43dc8b7404 (IsA american_chestnut chestnut) (STV 1.0 0.9091)) +(: cnet_isa_23252bb4d5 (IsA american_cockroach cockroach) (STV 1.0 0.9091)) +(: cnet_isa_b55e3fd928 (IsA american_coot coot) (STV 1.0 0.9091)) +(: cnet_isa_1c56abaf95 (IsA american_copper copper) (STV 1.0 0.9091)) +(: cnet_isa_3f05d3a7bf (IsA american_crab_apple wild_apple) (STV 1.0 0.9091)) +(: cnet_isa_a2ccc8f354 (IsA american_cranberry cranberry) (STV 1.0 0.9091)) +(: cnet_isa_abc1c87ed9 (IsA american_crayfish crayfish) (STV 1.0 0.9091)) +(: cnet_isa_a8bd41e388 (IsA american_crow crow) (STV 1.0 0.9091)) +(: cnet_isa_7796721d21 (IsA american_dewberry dewberry) (STV 1.0 0.9091)) +(: cnet_isa_a32c559e35 (IsA american_dog_violet violet) (STV 1.0 0.9091)) +(: cnet_isa_ba4946a645 (IsA american_dream ambition) (STV 1.0 0.9091)) +(: cnet_isa_0b818baaea (IsA american_egret egret) (STV 1.0 0.9091)) +(: cnet_isa_5864d43fd2 (IsA american_elder elder) (STV 1.0 0.9091)) +(: cnet_isa_9a82acffe1 (IsA american_elm elm) (STV 1.0 0.9091)) +(: cnet_isa_4b9f713035 (IsA american_english english) (STV 1.0 0.9091)) +(: cnet_isa_6a97f06a68 (IsA american_federation_of_labor federation) (STV 1.0 0.9091)) +(: cnet_isa_71d656d7ab (IsA american_federation_of_labor_and_congress_of_industrial_organization federation) (STV 1.0 0.9091)) +(: cnet_isa_b7a6d15f26 (IsA american_feverfew subshrub) (STV 1.0 0.9091)) +(: cnet_isa_dd81d398bd (IsA american_flag flag) (STV 1.0 0.9091)) +(: cnet_isa_40ad677cdc (IsA american_fly_honeysuckle honeysuckle) (STV 1.0 0.9091)) +(: cnet_isa_5949515cc6 (IsA american_flying_squirrel squirrel) (STV 1.0 0.9091)) +(: cnet_isa_ae134a27fc (IsA american_football brutal) (STV 1.0 0.9091)) +(: cnet_isa_d7ba353440 (IsA american_football different_sport_from_football_elsewhere) (STV 1.0 0.9091)) +(: cnet_isa_9d84296d92 (IsA american_football football) (STV 1.0 0.9091)) +(: cnet_isa_5b1cba5eb3 (IsA american_foxhound foxhound) (STV 1.0 0.9091)) +(: cnet_isa_5c5f362968 (IsA american_frogbit aquatic_plant) (STV 1.0 0.9091)) +(: cnet_isa_08d0be05af (IsA american_gallinule purple_gallinule) (STV 1.0 0.9091)) +(: cnet_isa_796dbd7f16 (IsA american_germander germander) (STV 1.0 0.9091)) +(: cnet_isa_baa9ca9caf (IsA american_ginseng herb) (STV 1.0 0.9091)) +(: cnet_isa_08ec2a9d91 (IsA american_goldfinch animal) (STV 1.0 0.9091)) +(: cnet_isa_3502a5cdb9 (IsA american_goldfinch bird) (STV 1.0 0.9091)) +(: cnet_isa_eefc505fb0 (IsA american_goldfinch eukaryotic_organism) (STV 1.0 0.9091)) +(: cnet_isa_c418767424 (IsA american_green_toad true_toad) (STV 1.0 0.9091)) +(: cnet_isa_4309590319 (IsA american_hackberry hackberry) (STV 1.0 0.9091)) +(: cnet_isa_6cf9dd77f4 (IsA american_harvest_mouse new_world_mouse) (STV 1.0 0.9091)) +(: cnet_isa_d837093f05 (IsA american_hazel hazelnut) (STV 1.0 0.9091)) +(: cnet_isa_cd58c30434 (IsA american_holly holly) (STV 1.0 0.9091)) +(: cnet_isa_cf44e758ee (IsA american_holly poisonous_plant) (STV 1.0 0.9091)) +(: cnet_isa_7634e8f1ef (IsA american_hop hop) (STV 1.0 0.9091)) +(: cnet_isa_c932fc5745 (IsA american_hornbeam hornbeam) (STV 1.0 0.9091)) +(: cnet_isa_e81d3b4f67 (IsA american_indian_day day) (STV 1.0 0.9091)) +(: cnet_isa_768f310fd0 (IsA american_labor_party party) (STV 1.0 0.9091)) +(: cnet_isa_c18e2fa65a (IsA american_lady_crab swimming_crab) (STV 1.0 0.9091)) +(: cnet_isa_c9292d2f22 (IsA american_larch larch) (STV 1.0 0.9091)) +(: cnet_isa_d5f447f080 (IsA american_legion association) (STV 1.0 0.9091)) +(: cnet_isa_4fdae18896 (IsA american_lobster true_lobster) (STV 1.0 0.9091)) +(: cnet_isa_45e30c3903 (IsA american_lobster lobster) (STV 1.0 0.9091)) +(: cnet_isa_f4c612c022 (IsA american_magpie magpie) (STV 1.0 0.9091)) +(: cnet_isa_a87d6b9f29 (IsA american_maidenhair_fern maidenhair) (STV 1.0 0.9091)) +(: cnet_isa_a8580c4a3d (IsA american_marten marten) (STV 1.0 0.9091)) +(: cnet_isa_db65853525 (IsA american_mastodon mastodon) (STV 1.0 0.9091)) +(: cnet_isa_e026b983e4 (IsA american_merganser merganser) (STV 1.0 0.9091)) +(: cnet_isa_b9e83bec2e (IsA american_mink mink) (STV 1.0 0.9091)) +(: cnet_isa_108724aee8 (IsA american_mistletoe mistletoe) (STV 1.0 0.9091)) +(: cnet_isa_18da9517ef (IsA american_mistletoe parasitic_plant) (STV 1.0 0.9091)) +(: cnet_isa_be1737ba7e (IsA american_mountain_ash mountain_ash) (STV 1.0 0.9091)) +(: cnet_isa_04b512a6f0 (IsA american_oil_palm oil_palm) (STV 1.0 0.9091)) +(: cnet_isa_1b8615c265 (IsA american_organ free_reed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_02a37965df (IsA american_parasol lepiota) (STV 1.0 0.9091)) +(: cnet_isa_3fc198b7fa (IsA american_party party) (STV 1.0 0.9091)) +(: cnet_isa_3dfdaa478a (IsA american_pasqueflower pasqueflower) (STV 1.0 0.9091)) +(: cnet_isa_5793cb8dc4 (IsA american_persimmon persimmon) (STV 1.0 0.9091)) +(: cnet_isa_ecc41ba05c (IsA american_plaice righteye_flounder) (STV 1.0 0.9091)) +(: cnet_isa_866a18157e (IsA american_plan hotel_plan) (STV 1.0 0.9091)) +(: cnet_isa_19796966ed (IsA american_quaking_aspen aspen) (STV 1.0 0.9091)) +(: cnet_isa_3c0bfdac25 (IsA american_raspberry red_raspberry) (STV 1.0 0.9091)) +(: cnet_isa_c3d582b0f4 (IsA american_rattlebox crotalaria) (STV 1.0 0.9091)) +(: cnet_isa_6e34587334 (IsA american_red_elder elder) (STV 1.0 0.9091)) +(: cnet_isa_df72588012 (IsA american_red_plum wild_plum) (STV 1.0 0.9091)) +(: cnet_isa_d2139cae79 (IsA american_red_squirrel tree_squirrel) (STV 1.0 0.9091)) +(: cnet_isa_ac569504ff (IsA american_redstart flycatching_warbler) (STV 1.0 0.9091)) +(: cnet_isa_00865ff20c (IsA american_revolutionary_leader nationalist_leader) (STV 1.0 0.9091)) +(: cnet_isa_83db28f8e3 (IsA american_rock_brake rock_brake) (STV 1.0 0.9091)) +(: cnet_isa_ddc4e7be2a (IsA american_saddle_horse saddle_horse) (STV 1.0 0.9091)) +(: cnet_isa_2d815526e3 (IsA american_shrew_mole shrew_mole) (STV 1.0 0.9091)) +(: cnet_isa_4bf8a42bcb (IsA american_smelt smelt) (STV 1.0 0.9091)) +(: cnet_isa_48696a9111 (IsA american_smokewood smoke_tree) (STV 1.0 0.9091)) +(: cnet_isa_729e9040f7 (IsA american_smooth_dogfish smooth_dogfish) (STV 1.0 0.9091)) +(: cnet_isa_e1bb42a89d (IsA american_spikenard subshrub) (STV 1.0 0.9091)) +(: cnet_isa_9bff479f52 (IsA american_staffordshire_terrier bullterrier) (STV 1.0 0.9091)) +(: cnet_isa_f853887727 (IsA american_standard_code_for_information_interchange code) (STV 1.0 0.9091)) +(: cnet_isa_0cfe774073 (IsA american_star_grass star_grass) (STV 1.0 0.9091)) +(: cnet_isa_ab23085e3e (IsA american_state state) (STV 1.0 0.9091)) +(: cnet_isa_819c94f716 (IsA american_sycamore plane_tree) (STV 1.0 0.9091)) +(: cnet_isa_eafc4383d9 (IsA american_toad true_toad) (STV 1.0 0.9091)) +(: cnet_isa_3d12fd8d59 (IsA american_turkey_oak oak) (STV 1.0 0.9091)) +(: cnet_isa_b3a67d8089 (IsA american_twinflower twinflower) (STV 1.0 0.9091)) +(: cnet_isa_451e37d765 (IsA american_water_ouzel water_ouzel) (STV 1.0 0.9091)) +(: cnet_isa_f3548e53d8 (IsA american_water_shrew water_shrew) (STV 1.0 0.9091)) +(: cnet_isa_728b05aec7 (IsA american_water_spaniel water_spaniel) (STV 1.0 0.9091)) +(: cnet_isa_33550bbb9e (IsA american_watercress watercress) (STV 1.0 0.9091)) +(: cnet_isa_cbc107aff6 (IsA american_white_birch birch) (STV 1.0 0.9091)) +(: cnet_isa_3ea82bc06e (IsA american_white_oak white_oak) (STV 1.0 0.9091)) +(: cnet_isa_8d254bd7e5 (IsA american_white_pine white_pine) (STV 1.0 0.9091)) +(: cnet_isa_068ac7ce22 (IsA american_widgeon widgeon) (STV 1.0 0.9091)) +(: cnet_isa_9ed5c7b185 (IsA american_wistaria wisteria) (STV 1.0 0.9091)) +(: cnet_isa_243a091b20 (IsA american_woodcock woodcock) (STV 1.0 0.9091)) +(: cnet_isa_97b2aa7dee (IsA american_wormseed goosefoot) (STV 1.0 0.9091)) +(: cnet_isa_225c922f17 (IsA americana artifact) (STV 1.0 0.9091)) +(: cnet_isa_ee493fe9e5 (IsA americanism custom) (STV 1.0 0.9091)) +(: cnet_isa_7b58ae92a3 (IsA americanism patriotism) (STV 1.0 0.9091)) +(: cnet_isa_0f04e7c066 (IsA americanism formulation) (STV 1.0 0.9091)) +(: cnet_isa_a64110775c (IsA americanization assimilation) (STV 1.0 0.9091)) +(: cnet_isa_48d4f86864 (IsA american people) (STV 1.0 0.9339)) +(: cnet_isa_b730f240fc (IsA americium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_2c96ced557 (IsA amerind natural_language) (STV 1.0 0.9091)) +(: cnet_isa_91d52f3c95 (IsA amethyst quartz) (STV 1.0 0.9091)) +(: cnet_isa_3a20675113 (IsA amethyst transparent_gem) (STV 1.0 0.9091)) +(: cnet_isa_19c63bbef4 (IsA amethystine_python python) (STV 1.0 0.9091)) +(: cnet_isa_3541da73cf (IsA ametria birth_defect) (STV 1.0 0.9091)) +(: cnet_isa_b0223049d1 (IsA ametropia visual_impairment) (STV 1.0 0.9091)) +(: cnet_isa_be5b7a0c3f (IsA amhara ethiopian) (STV 1.0 0.9091)) +(: cnet_isa_e80b770088 (IsA amharic semitic) (STV 1.0 0.9091)) +(: cnet_isa_f5c7479ee4 (IsA amia fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_b32bbee6b8 (IsA amianthum liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5dc1123de9 (IsA amicability friendliness) (STV 1.0 0.9091)) +(: cnet_isa_682d53a839 (IsA amicus_curiae adviser) (STV 1.0 0.9091)) +(: cnet_isa_f36cc3cf03 (IsA amicus_curiae_brief brief) (STV 1.0 0.9091)) +(: cnet_isa_72c1999882 (IsA amide organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_ea4a5c6386 (IsA amiga computer) (STV 1.0 0.9454)) +(: cnet_isa_80b95fc46b (IsA amigo friend) (STV 1.0 0.9091)) +(: cnet_isa_01f7cca209 (IsA amiidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_3ebc5f35b7 (IsA amine methane_sery) (STV 1.0 0.9091)) +(: cnet_isa_b8549177e8 (IsA amino group) (STV 1.0 0.9091)) +(: cnet_isa_45410e174c (IsA amino_acid organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_dcd72a1c33 (IsA amino_plastic plastic) (STV 1.0 0.9091)) +(: cnet_isa_731fc6433e (IsA aminoaciduria symptom) (STV 1.0 0.9091)) +(: cnet_isa_008d1e125f (IsA aminobenzoic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_8e7be3599d (IsA aminomethane methyl) (STV 1.0 0.9091)) +(: cnet_isa_5f008d8ab0 (IsA aminophylline bronchodilator) (STV 1.0 0.9091)) +(: cnet_isa_67a0602815 (IsA aminopyrine analgesic) (STV 1.0 0.9091)) +(: cnet_isa_7387f51704 (IsA amish mennonite) (STV 1.0 0.9091)) +(: cnet_isa_eefc741e36 (IsA amish_sect sect) (STV 1.0 0.9091)) +(: cnet_isa_df6d133aa5 (IsA amitosis cell_division) (STV 1.0 0.9091)) +(: cnet_isa_7fcb104e23 (IsA amity friendliness) (STV 1.0 0.9091)) +(: cnet_isa_b6fcfb0eb8 (IsA amity peace) (STV 1.0 0.9091)) +(: cnet_isa_de95ec5556 (IsA ammeter meter) (STV 1.0 0.9091)) +(: cnet_isa_47ad451586 (IsA ammine compound) (STV 1.0 0.9091)) +(: cnet_isa_c69d7a57a0 (IsA ammobium flower) (STV 1.0 0.9091)) +(: cnet_isa_6280336e82 (IsA ammodyte fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_bad1ef39d4 (IsA ammodytidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_5065bbf4ec (IsA ammonia binary_compound) (STV 1.0 0.9091)) +(: cnet_isa_fcda3b0857 (IsA ammonia_clock atomic_clock) (STV 1.0 0.9091)) +(: cnet_isa_33d8c943a8 (IsA ammonia_water liquid) (STV 1.0 0.9091)) +(: cnet_isa_ab3a9f1302 (IsA ammoniac gum) (STV 1.0 0.9091)) +(: cnet_isa_108b3a7bfb (IsA ammonification permeation) (STV 1.0 0.9091)) +(: cnet_isa_86952a4fcc (IsA ammonite fossil) (STV 1.0 0.9091)) +(: cnet_isa_9ab3ae157f (IsA ammonium ammonia) (STV 1.0 0.9091)) +(: cnet_isa_489fc7c986 (IsA ammonium_carbamate carbamate) (STV 1.0 0.9091)) +(: cnet_isa_4e39082269 (IsA ammonium_carbonate carbonate) (STV 1.0 0.9091)) +(: cnet_isa_2e206c599e (IsA ammonium_chloride salt) (STV 1.0 0.9091)) +(: cnet_isa_3bcfa6b4da (IsA ammonium_nitrate nitrate) (STV 1.0 0.9091)) +(: cnet_isa_a4853832bc (IsA ammoniuria symptom) (STV 1.0 0.9091)) +(: cnet_isa_8357cee7be (IsA ammotragus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_694001e27e (IsA ammunition weaponry) (STV 1.0 0.9091)) +(: cnet_isa_e579bd5ee8 (IsA ammunition information) (STV 1.0 0.9091)) +(: cnet_isa_7be35079f5 (IsA ammunition material) (STV 1.0 0.9091)) +(: cnet_isa_3cb563dcf6 (IsA amnesia cognitive_state) (STV 1.0 0.9091)) +(: cnet_isa_6effbb93c2 (IsA amnesic handicapped_person) (STV 1.0 0.9091)) +(: cnet_isa_46912f1ec9 (IsA amnesty clemency) (STV 1.0 0.9091)) +(: cnet_isa_9c425540f0 (IsA amnesty exemption) (STV 1.0 0.9091)) +(: cnet_isa_a41bcde07b (IsA amniocentesis centesis) (STV 1.0 0.9091)) +(: cnet_isa_afda74e88a (IsA amniocentesis prenatal_diagnosis) (STV 1.0 0.9091)) +(: cnet_isa_347904cd42 (IsA amnion sac) (STV 1.0 0.9091)) +(: cnet_isa_8a64c75bde (IsA amniota vertebrate) (STV 1.0 0.9091)) +(: cnet_isa_80e1631481 (IsA amniote vertebrate) (STV 1.0 0.9091)) +(: cnet_isa_8389f63576 (IsA amniotic_cavity cavity) (STV 1.0 0.9091)) +(: cnet_isa_9890fc2bcd (IsA amniotic_fluid liquid_body_substance) (STV 1.0 0.9091)) +(: cnet_isa_b35c584a00 (IsA amobarbital barbiturate) (STV 1.0 0.9091)) +(: cnet_isa_efbb4330c9 (IsA amobarbital truth_serum) (STV 1.0 0.9091)) +(: cnet_isa_72973f689a (IsA amobarbital_sodium amobarbital) (STV 1.0 0.9091)) +(: cnet_isa_975045a218 (IsA amoebida animal_order) (STV 1.0 0.9091)) +(: cnet_isa_80799f7f92 (IsA amontillado sherry) (STV 1.0 0.9091)) +(: cnet_isa_fff42f2ffe (IsA amora rabbi) (STV 1.0 0.9091)) +(: cnet_isa_b7793c99db (IsA amoralism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_dbe6dac881 (IsA amoralist disciple) (STV 1.0 0.9091)) +(: cnet_isa_3fb2e14725 (IsA amorality quality) (STV 1.0 0.9091)) +(: cnet_isa_77b906893d (IsA amorist fan) (STV 1.0 0.9091)) +(: cnet_isa_02bfa0404f (IsA amorousness love) (STV 1.0 0.9091)) +(: cnet_isa_5e26204c92 (IsA amorousness sexual_desire) (STV 1.0 0.9091)) +(: cnet_isa_4a14d22893 (IsA amorpha shrub) (STV 1.0 0.9091)) +(: cnet_isa_22342ef448 (IsA amorphophallus arum) (STV 1.0 0.9091)) +(: cnet_isa_c6bfff9158 (IsA amorphous_shape shape) (STV 1.0 0.9091)) +(: cnet_isa_1b8bedbd36 (IsA amortization decrease) (STV 1.0 0.9091)) +(: cnet_isa_8cf306c1b3 (IsA amortization payment) (STV 1.0 0.9091)) +(: cnet_isa_4cdea812a5 (IsA amount magnitude) (STV 1.0 0.9091)) +(: cnet_isa_96fc2a6791 (IsA amour_propre pride) (STV 1.0 0.9091)) +(: cnet_isa_29b6d503b2 (IsA amperage electrical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_cf489f0962 (IsA ampere current_unit) (STV 1.0 0.9091)) +(: cnet_isa_ac2e2d1e73 (IsA ampere_hour charge_unit) (STV 1.0 0.9091)) +(: cnet_isa_3d3b416eb6 (IsA ampere_minute charge_unit) (STV 1.0 0.9091)) +(: cnet_isa_7d931ce468 (IsA ampere_turn magnetomotive_force_unit) (STV 1.0 0.9091)) +(: cnet_isa_676740ee89 (IsA ampersand punctuation) (STV 1.0 0.9091)) +(: cnet_isa_2d8737ee49 (IsA amphetamine drug_of_abuse) (STV 1.0 0.9091)) +(: cnet_isa_39f1de4603 (IsA amphetamine stimulant) (STV 1.0 0.9091)) +(: cnet_isa_355e6291d4 (IsA amphetamine_sulfate amphetamine) (STV 1.0 0.9091)) +(: cnet_isa_9751b7793e (IsA amphibia class) (STV 1.0 0.9091)) +(: cnet_isa_4f4d94d3c7 (IsA amphibian vertebrate) (STV 1.0 0.9091)) +(: cnet_isa_03b631eb59 (IsA amphibian airplane) (STV 1.0 0.9091)) +(: cnet_isa_16382fc30e (IsA amphibian motor_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_dabc114892 (IsA amphibian_family family) (STV 1.0 0.9091)) +(: cnet_isa_8d425349da (IsA amphibian_genus genus) (STV 1.0 0.9091)) +(: cnet_isa_edb900c256 (IsA amphibious_assault amphibious_operation) (STV 1.0 0.9091)) +(: cnet_isa_b8f5f2e1d3 (IsA amphibious_demonstration amphibious_operation) (STV 1.0 0.9091)) +(: cnet_isa_4adf7cc018 (IsA amphibious_landing landing) (STV 1.0 0.9091)) +(: cnet_isa_754e8a5968 (IsA amphibious_landing military_action) (STV 1.0 0.9091)) +(: cnet_isa_9374d99253 (IsA amphibious_operation operation) (STV 1.0 0.9091)) +(: cnet_isa_2d42be98a6 (IsA amphibole mineral) (STV 1.0 0.9091)) +(: cnet_isa_703e92cc76 (IsA amphibole_group mineral) (STV 1.0 0.9091)) +(: cnet_isa_e1b2ca6ec9 (IsA amphibolip arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_482a2b81bb (IsA amphibolite metamorphic_rock) (STV 1.0 0.9091)) +(: cnet_isa_97994116db (IsA amphibology ambiguity) (STV 1.0 0.9091)) +(: cnet_isa_6d27c75fff (IsA amphibrach metrical_foot) (STV 1.0 0.9091)) +(: cnet_isa_35ef5ecb8f (IsA amphicarpaea rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5c4d30cd6a (IsA amphictyony political_unit) (STV 1.0 0.9091)) +(: cnet_isa_894e3a423d (IsA amphidiploid organism) (STV 1.0 0.9091)) +(: cnet_isa_516fe32a46 (IsA amphidiploidy condition) (STV 1.0 0.9091)) +(: cnet_isa_a1f7a478ec (IsA amphigory nonsense) (STV 1.0 0.9091)) +(: cnet_isa_6a19d0d69d (IsA amphimixis union) (STV 1.0 0.9091)) +(: cnet_isa_c728ad458a (IsA amphineura class) (STV 1.0 0.9091)) +(: cnet_isa_7ba9c6aa0c (IsA amphioxidae chordate_family) (STV 1.0 0.9091)) +(: cnet_isa_3bafbd643c (IsA amphipod malacostracan_crustacean) (STV 1.0 0.9091)) +(: cnet_isa_fb48f20138 (IsA amphipoda animal_order) (STV 1.0 0.9091)) +(: cnet_isa_fb9638af2e (IsA amphiprion fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_35b6588f7b (IsA amphisbaena reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_fe9c9a969a (IsA amphisbaena mythical_monster) (STV 1.0 0.9091)) +(: cnet_isa_61b601b6b7 (IsA amphisbaenidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_0bfb6355e9 (IsA amphitheater stadium) (STV 1.0 0.9091)) +(: cnet_isa_522d2b9660 (IsA amphitheater gallery) (STV 1.0 0.9091)) +(: cnet_isa_002e0ecedb (IsA amphitropous_ovule ovule) (STV 1.0 0.9091)) +(: cnet_isa_ea41cf5a05 (IsA amphiuma salamander) (STV 1.0 0.9091)) +(: cnet_isa_e5d2733c8f (IsA amphiumidae amphibian_family) (STV 1.0 0.9091)) +(: cnet_isa_a8b56b8d30 (IsA amphora jar) (STV 1.0 0.9091)) +(: cnet_isa_6e6fd019f9 (IsA amphotericin antibiotic) (STV 1.0 0.9091)) +(: cnet_isa_028e99110d (IsA ampleness largeness) (STV 1.0 0.9091)) +(: cnet_isa_2a28efc2bc (IsA ampleness sufficiency) (STV 1.0 0.9091)) +(: cnet_isa_b10ff7cc33 (IsA amplexicaul_leaf leaf) (STV 1.0 0.9091)) +(: cnet_isa_f0f9e56042 (IsA amplification expansion) (STV 1.0 0.9091)) +(: cnet_isa_a567d0b26d (IsA amplification increase) (STV 1.0 0.9091)) +(: cnet_isa_1b4785ad6b (IsA amplifier electronic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_ea1746962d (IsA amplitude abundance) (STV 1.0 0.9091)) +(: cnet_isa_427c90ce95 (IsA amplitude magnitude) (STV 1.0 0.9091)) +(: cnet_isa_be8702a1b2 (IsA amplitude shift) (STV 1.0 0.9091)) +(: cnet_isa_50bcb31b8f (IsA amplitude_level degree) (STV 1.0 0.9091)) +(: cnet_isa_5b8c5a4b83 (IsA amplitude_modulation modulation) (STV 1.0 0.9091)) +(: cnet_isa_6053500ab3 (IsA ampulla flask) (STV 1.0 0.9091)) +(: cnet_isa_78d3c94818 (IsA ampulla body_part) (STV 1.0 0.9091)) +(: cnet_isa_36de0bdb62 (IsA amputation operation) (STV 1.0 0.9091)) +(: cnet_isa_20a4854e97 (IsA amputation disability) (STV 1.0 0.9091)) +(: cnet_isa_fdb880deb9 (IsA amputator surgeon) (STV 1.0 0.9091)) +(: cnet_isa_792c470e7c (IsA amputee unfortunate) (STV 1.0 0.9091)) +(: cnet_isa_fd280a5364 (IsA amsinckia plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_af0267a82b (IsA amsler_grid grid) (STV 1.0 0.9091)) +(: cnet_isa_747c229648 (IsA amsonia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3af47a4a7a (IsA amsterdam in_holland) (STV 1.0 0.9339)) +(: cnet_isa_d475d6241a (IsA amulet charm) (STV 1.0 0.9091)) +(: cnet_isa_67bc30b791 (IsA amur_privet privet) (STV 1.0 0.9091)) +(: cnet_isa_10789f459a (IsA amusement delight) (STV 1.0 0.9091)) +(: cnet_isa_bd9cbd7416 (IsA amusement_arcade arcade) (STV 1.0 0.9091)) +(: cnet_isa_25c8e24b24 (IsA amusement_park park) (STV 1.0 0.9091)) +(: cnet_isa_e7b2c1907d (IsA amygdala basal_ganglion) (STV 1.0 0.9091)) +(: cnet_isa_3383441429 (IsA amygdalaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_0192af006e (IsA amygdalin glucoside) (STV 1.0 0.9091)) +(: cnet_isa_d6b61179de (IsA amygdaloid volcanic_rock) (STV 1.0 0.9091)) +(: cnet_isa_6dbc47c63d (IsA amygdalotomy psychosurgery) (STV 1.0 0.9091)) +(: cnet_isa_b19353a86e (IsA amygdalus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e727f94b91 (IsA amyl group) (STV 1.0 0.9091)) +(: cnet_isa_2e2ffdcaa3 (IsA amyl_alcohol alcohol) (STV 1.0 0.9091)) +(: cnet_isa_39f88e1be4 (IsA amyl_nitrate vasodilator) (STV 1.0 0.9091)) +(: cnet_isa_ffdb14edd3 (IsA amylase enzyme) (STV 1.0 0.9091)) +(: cnet_isa_37b6fc7173 (IsA amyloid protein) (STV 1.0 0.9091)) +(: cnet_isa_41fcc806e8 (IsA amyloid starch) (STV 1.0 0.9091)) +(: cnet_isa_86962679ba (IsA amyloid_plaque plaque) (STV 1.0 0.9091)) +(: cnet_isa_d879d50498 (IsA amyloidosis illness) (STV 1.0 0.9091)) +(: cnet_isa_6bad388f71 (IsA amylolysis chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_8568762508 (IsA amyotrophia atrophy) (STV 1.0 0.9091)) +(: cnet_isa_26e1857caa (IsA amyotrophic_lateral_sclerosis nervous_disorder) (STV 1.0 0.9091)) +(: cnet_isa_f31f0e6874 (IsA amyotrophic_lateral_sclerosis sclerosis) (STV 1.0 0.9091)) +(: cnet_isa_dfddb5ebca (IsA amyxia physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_e309729338 (IsA ana collection) (STV 1.0 0.9091)) +(: cnet_isa_e8f3c1f4da (IsA anabantidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_ee91c86fce (IsA anabaptism protestantism) (STV 1.0 0.9091)) +(: cnet_isa_8d17f8ad69 (IsA anabaptist protestant) (STV 1.0 0.9091)) +(: cnet_isa_6918e0a1ce (IsA anabaptist_denomination protestant_denomination) (STV 1.0 0.9091)) +(: cnet_isa_ea20120533 (IsA anaba fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_d11cc59f07 (IsA anabiosis suspended_animation) (STV 1.0 0.9091)) +(: cnet_isa_234053dd46 (IsA anabolic_steroid steroid_hormone) (STV 1.0 0.9091)) +(: cnet_isa_48d76cec33 (IsA anabolism assimilation) (STV 1.0 0.9091)) +(: cnet_isa_49041db26c (IsA anabrus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_c854fa44c7 (IsA anacanthini animal_order) (STV 1.0 0.9091)) +(: cnet_isa_4f12f699cd (IsA anacardiaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_0af16ea03d (IsA anacardium dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0447800241 (IsA anachronism artifact) (STV 1.0 0.9091)) +(: cnet_isa_f392e73613 (IsA anachronism person) (STV 1.0 0.9091)) +(: cnet_isa_ffc2c5bae2 (IsA anachronism timekeeping) (STV 1.0 0.9091)) +(: cnet_isa_6238a1934a (IsA anaclisis relationship) (STV 1.0 0.9091)) +(: cnet_isa_7f7a8bd3c9 (IsA anaclitic_depression depressive_disorder) (STV 1.0 0.9091)) +(: cnet_isa_b83471c8d3 (IsA anacoluthia rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_10f2e800c3 (IsA anaconda snake) (STV 1.0 0.9091)) +(: cnet_isa_4055c050d3 (IsA anaconda boa) (STV 1.0 0.9091)) +(: cnet_isa_84122302b2 (IsA anacyclus asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_df7ed33fe8 (IsA anadama_bread bread) (STV 1.0 0.9091)) +(: cnet_isa_f3f7e65daa (IsA anadenanthera rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_bb0391f994 (IsA anadenanthera_colubrina shrub) (STV 1.0 0.9091)) +(: cnet_isa_f2a225c517 (IsA anadiplosis repetition) (STV 1.0 0.9091)) +(: cnet_isa_46a1f2147b (IsA anaerobe organism) (STV 1.0 0.9091)) +(: cnet_isa_274565bb59 (IsA anagallis dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b0ecf6acfc (IsA anagasta arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_400f4ebc48 (IsA anaglyph glyptic_art) (STV 1.0 0.9091)) +(: cnet_isa_b38ba3947a (IsA anaglyph stereo) (STV 1.0 0.9091)) +(: cnet_isa_c4de1e9e91 (IsA anaglyphy photography) (STV 1.0 0.9091)) +(: cnet_isa_751e446f7b (IsA anagnost clergyman) (STV 1.0 0.9091)) +(: cnet_isa_fd4aaf54d6 (IsA anagnost holy_order) (STV 1.0 0.9091)) +(: cnet_isa_50fbcecf72 (IsA anagoge interpretation) (STV 1.0 0.9091)) +(: cnet_isa_36332366dd (IsA anagram word) (STV 1.0 0.9091)) +(: cnet_isa_918f09bbb6 (IsA anagram word_game) (STV 1.0 0.9091)) +(: cnet_isa_5c35e60dcf (IsA anagyris rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f6f345bde1 (IsA anal_personality personality) (STV 1.0 0.9091)) +(: cnet_isa_63a52f68b9 (IsA anal_sphincter sphincter) (STV 1.0 0.9091)) +(: cnet_isa_f1913673ac (IsA anal_stage phase) (STV 1.0 0.9091)) +(: cnet_isa_269833cc12 (IsA analbuminemia blood_disease) (STV 1.0 0.9091)) +(: cnet_isa_4bca051372 (IsA analect excerpt) (STV 1.0 0.9091)) +(: cnet_isa_e34d87e3b2 (IsA analeptic stimulant) (STV 1.0 0.9091)) +(: cnet_isa_3306879345 (IsA analgesia physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_54d70694d3 (IsA analgesic medicine) (STV 1.0 0.9091)) +(: cnet_isa_f77df710bd (IsA analog_clock clock) (STV 1.0 0.9091)) +(: cnet_isa_86626c0ea3 (IsA analog_computer computer) (STV 1.0 0.9091)) +(: cnet_isa_a4a4252b84 (IsA analog_watch watch) (STV 1.0 0.9091)) +(: cnet_isa_9961be2a5d (IsA analogist reasoner) (STV 1.0 0.9091)) +(: cnet_isa_2f97badee0 (IsA analogue similarity) (STV 1.0 0.9091)) +(: cnet_isa_80dbe00518 (IsA analogy comparison) (STV 1.0 0.9091)) +(: cnet_isa_babc45d62e (IsA analogy inference) (STV 1.0 0.9091)) +(: cnet_isa_ad51bf9def (IsA analphabet illiterate) (STV 1.0 0.9091)) +(: cnet_isa_ca17c94235 (IsA analysand patient) (STV 1.0 0.9091)) +(: cnet_isa_d02e35f42e (IsA analysis investigation) (STV 1.0 0.9091)) +(: cnet_isa_89d8f9e81a (IsA analysis reasoning) (STV 1.0 0.9091)) +(: cnet_isa_2693753057 (IsA analysis criticism) (STV 1.0 0.9091)) +(: cnet_isa_46f97a0a38 (IsA analysis expressive_style) (STV 1.0 0.9091)) +(: cnet_isa_b8526316f6 (IsA analysis calculus) (STV 1.0 0.9091)) +(: cnet_isa_eeab8a3883 (IsA analysis_of_variance multivariate_analysis) (STV 1.0 0.9091)) +(: cnet_isa_bc12b7e3b6 (IsA analyst expert) (STV 1.0 0.9091)) +(: cnet_isa_a06e259eb2 (IsA analyst psychiatrist) (STV 1.0 0.9091)) +(: cnet_isa_b8e2fbeb86 (IsA analytic_geometry geometry) (STV 1.0 0.9091)) +(: cnet_isa_e626dbe54f (IsA analytical_balance beam_balance) (STV 1.0 0.9091)) +(: cnet_isa_c49263becf (IsA analytical_cubism cubism) (STV 1.0 0.9091)) +(: cnet_isa_4c8475c86d (IsA analytical_review review) (STV 1.0 0.9091)) +(: cnet_isa_537408a8c7 (IsA analyticity property) (STV 1.0 0.9091)) +(: cnet_isa_ca77902fb8 (IsA analyzer instrument) (STV 1.0 0.9091)) +(: cnet_isa_daa7e099f5 (IsA anamnestic_response immune_response) (STV 1.0 0.9091)) +(: cnet_isa_894dc53c71 (IsA anamorphism metamorphism) (STV 1.0 0.9091)) +(: cnet_isa_b586fc1dc4 (IsA anamorphosis copy) (STV 1.0 0.9091)) +(: cnet_isa_32936d3ba5 (IsA anamorphosis evolution) (STV 1.0 0.9091)) +(: cnet_isa_c5fc11803f (IsA anana monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3c74dcf160 (IsA anapest metrical_foot) (STV 1.0 0.9091)) +(: cnet_isa_35a23d127a (IsA anaphalis asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5eac528383 (IsA anaphase creation_event) (STV 1.0 0.9091)) +(: cnet_isa_78a40dfdd0 (IsA anaphase iterated_event_scene) (STV 1.0 0.9091)) +(: cnet_isa_930b745632 (IsA anaphase phase_of_cell_division) (STV 1.0 0.9091)) +(: cnet_isa_4d477e3915 (IsA anaphase_cell anucleated_cell) (STV 1.0 0.9091)) +(: cnet_isa_f4afe89d07 (IsA anaphase_cell cell_undergoing_meiosis) (STV 1.0 0.9091)) +(: cnet_isa_1d55639d61 (IsA anaphase_cell eukaryotic_cell) (STV 1.0 0.9091)) +(: cnet_isa_24cfddc2b3 (IsA anaphor word) (STV 1.0 0.9091)) +(: cnet_isa_0f2ac57e5e (IsA anaphora repetition) (STV 1.0 0.9091)) +(: cnet_isa_5eb487299d (IsA anaphoric_pronoun pronoun) (STV 1.0 0.9091)) +(: cnet_isa_61e0781d84 (IsA anaphoric_relation grammatical_relation) (STV 1.0 0.9091)) +(: cnet_isa_aacd49e436 (IsA anaphrodisia sexual_desire) (STV 1.0 0.9091)) +(: cnet_isa_70a5fd19aa (IsA anaphylactic_shock anaphylaxis) (STV 1.0 0.9091)) +(: cnet_isa_d856f83461 (IsA anaphylaxis hypersensitivity_reaction) (STV 1.0 0.9091)) +(: cnet_isa_cd7633d700 (IsA anaplasia dysplasia) (STV 1.0 0.9091)) +(: cnet_isa_e1b515828b (IsA anaplasmosis animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_6e5ec00fd3 (IsA anapsid reptile) (STV 1.0 0.9091)) +(: cnet_isa_db724d8e4e (IsA anapsida class) (STV 1.0 0.9091)) +(: cnet_isa_0029f806ea (IsA anarchism political_ideology) (STV 1.0 0.9091)) +(: cnet_isa_9d2af4c213 (IsA anarchism visceral_revolt) (STV 1.0 0.9091)) +(: cnet_isa_0c20fc3a52 (IsA anarchism political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_3daec32561 (IsA anarchist radical) (STV 1.0 0.9091)) +(: cnet_isa_e033ee0a99 (IsA anarchy disorder) (STV 1.0 0.9091)) +(: cnet_isa_e640cb5aec (IsA anarhichadidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_826c103d25 (IsA anarhicha fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_9fbebcfa46 (IsA anarthria speech_disorder) (STV 1.0 0.9091)) +(: cnet_isa_1f3e0157a0 (IsA ana bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_033456a303 (IsA anasa arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_f5cc0516eb (IsA anasarca edema) (STV 1.0 0.9091)) +(: cnet_isa_b952c46852 (IsA anasazi native_american) (STV 1.0 0.9091)) +(: cnet_isa_c2382f1042 (IsA anaspid jawless_vertebrate) (STV 1.0 0.9091)) +(: cnet_isa_f47061bda5 (IsA anaspida animal_order) (STV 1.0 0.9091)) +(: cnet_isa_3845cc78d8 (IsA anastalsis bodily_process) (STV 1.0 0.9091)) +(: cnet_isa_b010a33ee7 (IsA anastatica dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_dec15d6f9f (IsA anastigmat len) (STV 1.0 0.9091)) +(: cnet_isa_ebcb3e9f71 (IsA anastigmatic_len len) (STV 1.0 0.9091)) +(: cnet_isa_745d8d1f7b (IsA anastomosis junction) (STV 1.0 0.9091)) +(: cnet_isa_1fd46525e0 (IsA anastomotic_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_2eb215c007 (IsA anastomus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_b129f609c6 (IsA anastrophe rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_e1a9419a56 (IsA anastylosis reassembly) (STV 1.0 0.9091)) +(: cnet_isa_22c14b69fd (IsA anathema execration) (STV 1.0 0.9091)) +(: cnet_isa_ee44383a66 (IsA anathema unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_b6fbdfa93c (IsA anathematization banishment) (STV 1.0 0.9091)) +(: cnet_isa_70c097ae2c (IsA anatidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_0137349e0a (IsA anatolian indo_european) (STV 1.0 0.9091)) +(: cnet_isa_24764b0a41 (IsA anatomical_reference saying) (STV 1.0 0.9091)) +(: cnet_isa_f487c92de5 (IsA anatomist expert) (STV 1.0 0.9091)) +(: cnet_isa_91880335c5 (IsA anatomy science) (STV 1.0 0.9454)) +(: cnet_isa_6528591909 (IsA anatomy analysis) (STV 1.0 0.9091)) +(: cnet_isa_40fe85652a (IsA anatomy morphology) (STV 1.0 0.9091)) +(: cnet_isa_25ae787cce (IsA anatotitan hadrosaur) (STV 1.0 0.9091)) +(: cnet_isa_047c52788c (IsA anatoxin antigen) (STV 1.0 0.9091)) +(: cnet_isa_78cf4d2747 (IsA anatoxin bacterial_toxin) (STV 1.0 0.9091)) +(: cnet_isa_352f03c17a (IsA anatropous_ovule ovule) (STV 1.0 0.9091)) +(: cnet_isa_e6972f6264 (IsA ancestor relative) (STV 1.0 0.9091)) +(: cnet_isa_cb75b3eaba (IsA ancestor_worship worship) (STV 1.0 0.9091)) +(: cnet_isa_c851a0b549 (IsA ancestress ancestor) (STV 1.0 0.9091)) +(: cnet_isa_4827b6ce7c (IsA ancestry inheritance) (STV 1.0 0.9091)) +(: cnet_isa_837fdfe167 (IsA anchor hook) (STV 1.0 0.9091)) +(: cnet_isa_8b399b366e (IsA anchor support) (STV 1.0 0.9091)) +(: cnet_isa_4850620fa3 (IsA anchor television_reporter) (STV 1.0 0.9091)) +(: cnet_isa_d84be0c61a (IsA anchor_chain chain) (STV 1.0 0.9091)) +(: cnet_isa_da32b29f23 (IsA anchor_light light) (STV 1.0 0.9091)) +(: cnet_isa_c9cc03d382 (IsA anchorage arrival) (STV 1.0 0.9091)) +(: cnet_isa_5aeeec033f (IsA anchorage area) (STV 1.0 0.9091)) +(: cnet_isa_3b632df940 (IsA anchorage fee) (STV 1.0 0.9091)) +(: cnet_isa_90c8b16ef7 (IsA anchorage condition) (STV 1.0 0.9091)) +(: cnet_isa_e586603cd9 (IsA anchorite eremite) (STV 1.0 0.9091)) +(: cnet_isa_d9d663f312 (IsA anchovy soft_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_ed029f0a33 (IsA anchovy fish) (STV 1.0 0.9091)) +(: cnet_isa_e0ac2dafba (IsA anchovy_butter spread) (STV 1.0 0.9091)) +(: cnet_isa_4217e6572a (IsA anchovy_dressing dressing) (STV 1.0 0.9091)) +(: cnet_isa_3a9f637ad3 (IsA anchovy_paste flavorer) (STV 1.0 0.9091)) +(: cnet_isa_74e6f99911 (IsA anchovy_pear edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_4294475e4e (IsA anchovy_pear fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_1cce5eee25 (IsA anchovy_pizza pizza) (STV 1.0 0.9091)) +(: cnet_isa_d4d18a597f (IsA anchovy_sauce sauce) (STV 1.0 0.9091)) +(: cnet_isa_8bf395d75e (IsA anchusa herb) (STV 1.0 0.9091)) +(: cnet_isa_fcb6587d3e (IsA ancien_regime government) (STV 1.0 0.9091)) +(: cnet_isa_b697188f1a (IsA ancient person) (STV 1.0 0.9091)) +(: cnet_isa_70a446a50d (IsA ancient_greek greek) (STV 1.0 0.9091)) +(: cnet_isa_f18bcc16c6 (IsA ancient_history common_knowledge) (STV 1.0 0.9091)) +(: cnet_isa_c460efa796 (IsA ancient_history history) (STV 1.0 0.9091)) +(: cnet_isa_be057d7763 (IsA ancient_jewelry artifact) (STV 1.0 0.9091)) +(: cnet_isa_dcd38126fe (IsA ancient_pine pine) (STV 1.0 0.9091)) +(: cnet_isa_ad97ec51f6 (IsA ancientness oldness) (STV 1.0 0.9091)) +(: cnet_isa_b16af2e264 (IsA ancient people) (STV 1.0 0.9091)) +(: cnet_isa_443783423b (IsA anconeous_muscle skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_d9be88362d (IsA ancylidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_7014bf37c2 (IsA ancylostomatidae worm_family) (STV 1.0 0.9091)) +(: cnet_isa_2101897234 (IsA ancylus mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_61827cc6ef (IsA and_circuit gate) (STV 1.0 0.9091)) +(: cnet_isa_de0b18f451 (IsA andante musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_cc36f05c3e (IsA andante passage) (STV 1.0 0.9091)) +(: cnet_isa_87d5a683ca (IsA andante tempo) (STV 1.0 0.9091)) +(: cnet_isa_c1e982c7ae (IsA andean_condor condor) (STV 1.0 0.9091)) +(: cnet_isa_ba27f47c5e (IsA andesite igneous_rock) (STV 1.0 0.9091)) +(: cnet_isa_1e38e9ad34 (IsA andira rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a1b9bd6d94 (IsA andiron support) (STV 1.0 0.9091)) +(: cnet_isa_12a3579eea (IsA andorran european) (STV 1.0 0.9091)) +(: cnet_isa_2774fa2191 (IsA andradite garnet) (STV 1.0 0.9091)) +(: cnet_isa_e6d891e23e (IsA andreaea moss_genus) (STV 1.0 0.9091)) +(: cnet_isa_6e7b3bed07 (IsA andreaeale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_e32b49f9a6 (IsA andrena bee) (STV 1.0 0.9091)) +(: cnet_isa_4bf88ee665 (IsA andrenidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_e4f1652e2d (IsA andricus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_1303093c4c (IsA androecium gametoecium) (STV 1.0 0.9091)) +(: cnet_isa_513224cccc (IsA androgen steroid_hormone) (STV 1.0 0.9091)) +(: cnet_isa_fd40d24cd8 (IsA androgenesis parthenogenesis) (STV 1.0 0.9091)) +(: cnet_isa_88d8a33839 (IsA androglossia voice) (STV 1.0 0.9091)) +(: cnet_isa_979c265435 (IsA androgyny sex) (STV 1.0 0.9091)) +(: cnet_isa_03d2b34767 (IsA android automaton) (STV 1.0 0.9091)) +(: cnet_isa_f1c4d2c828 (IsA andromeda galaxy) (STV 1.0 0.9091)) +(: cnet_isa_aa751d03a5 (IsA andromeda shrub) (STV 1.0 0.9091)) +(: cnet_isa_fca5e3b085 (IsA andromeda_galaxy spiral_galaxy) (STV 1.0 0.9091)) +(: cnet_isa_ff83a9f6cd (IsA androphobia social_phobia) (STV 1.0 0.9091)) +(: cnet_isa_ceb27a20e8 (IsA andropogon monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_18bd39d35a (IsA androsterone androgen) (STV 1.0 0.9091)) +(: cnet_isa_7e3f803f9f (IsA androsterone ketosteroid) (STV 1.0 0.9091)) +(: cnet_isa_e8846cd791 (IsA andryala herb) (STV 1.0 0.9091)) +(: cnet_isa_10b5436d13 (IsA andvari gnome) (STV 1.0 0.9091)) +(: cnet_isa_ba76154bc2 (IsA anecdote report) (STV 1.0 0.9091)) +(: cnet_isa_453dc76323 (IsA anecdotist narrator) (STV 1.0 0.9091)) +(: cnet_isa_aee85a24c1 (IsA anechoic_chamber room) (STV 1.0 0.9091)) +(: cnet_isa_caf116efbb (IsA aneide amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_c5f306fa68 (IsA anemia fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_3e14fc6c3b (IsA anemia blood_disease) (STV 1.0 0.9091)) +(: cnet_isa_bbde8dbe75 (IsA anemia symptom) (STV 1.0 0.9091)) +(: cnet_isa_0fdf7ae132 (IsA anemic_anoxia anoxia) (STV 1.0 0.9091)) +(: cnet_isa_b2e0e19508 (IsA anemic_hypoxia hypoxia) (STV 1.0 0.9091)) +(: cnet_isa_0032c5f7b5 (IsA anemography measurement) (STV 1.0 0.9091)) +(: cnet_isa_63572702a8 (IsA anemometer gauge) (STV 1.0 0.9091)) +(: cnet_isa_5dba942937 (IsA anemometry measurement) (STV 1.0 0.9091)) +(: cnet_isa_b4c9f19021 (IsA anemone flower) (STV 1.0 0.9091)) +(: cnet_isa_9988bce50e (IsA anemone_fish damselfish) (STV 1.0 0.9091)) +(: cnet_isa_0d91862d7a (IsA anemonella magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2c5992bc95 (IsA anemopsis dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_40463a485f (IsA anencephaly birth_defect) (STV 1.0 0.9091)) +(: cnet_isa_f6885945df (IsA anergy immunological_disorder) (STV 1.0 0.9091)) +(: cnet_isa_d4baa5e290 (IsA anergy inaction) (STV 1.0 0.9091)) +(: cnet_isa_e5eb385eff (IsA aneroid_barometer barometer) (STV 1.0 0.9091)) +(: cnet_isa_46a3a71de8 (IsA anesthesia physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_70e9ee2dbf (IsA anesthesiologist specialist) (STV 1.0 0.9091)) +(: cnet_isa_6f6fb6a650 (IsA anesthesiology medicine) (STV 1.0 0.9091)) +(: cnet_isa_207ab6e171 (IsA anesthetic drug) (STV 1.0 0.9091)) +(: cnet_isa_d34b47d8c0 (IsA anesthyl local_anesthetic) (STV 1.0 0.9091)) +(: cnet_isa_60ee19f108 (IsA anestrus physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_d0de1cbfaa (IsA anethum rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d2bf41873c (IsA aneuploidy abnormality) (STV 1.0 0.9091)) +(: cnet_isa_a83cef5892 (IsA aneurysm cardiovascular_disease) (STV 1.0 0.9091)) +(: cnet_isa_35bc791b0c (IsA anga west_chadic) (STV 1.0 0.9091)) +(: cnet_isa_c1b7b3e625 (IsA angel_s_trumpet shrub) (STV 1.0 0.9091)) +(: cnet_isa_76f382113a (IsA angel patron) (STV 1.0 0.9091)) +(: cnet_isa_de5b805f85 (IsA angel spiritual_being) (STV 1.0 0.9091)) +(: cnet_isa_d638e8a66f (IsA angel_cake sponge_cake) (STV 1.0 0.9091)) +(: cnet_isa_f2ed4dd522 (IsA angel_shark shark) (STV 1.0 0.9091)) +(: cnet_isa_9a6847cbb2 (IsA angel_wing_begonia begonia) (STV 1.0 0.9091)) +(: cnet_isa_c46e9f55bd (IsA angelfish butterfly_fish) (STV 1.0 0.9091)) +(: cnet_isa_3203debbee (IsA angelica flavorer) (STV 1.0 0.9091)) +(: cnet_isa_a8bf95cfe8 (IsA angelica herb) (STV 1.0 0.9091)) +(: cnet_isa_d75e8c66a3 (IsA angelim tree) (STV 1.0 0.9091)) +(: cnet_isa_2e767c08f2 (IsA angelology theology) (STV 1.0 0.9091)) +(: cnet_isa_60e2389b6d (IsA angelus_bell bell) (STV 1.0 0.9091)) +(: cnet_isa_55d57a3b7c (IsA anger emotion) (STV 1.0 0.9748)) +(: cnet_isa_c9bf441cdc (IsA anger emotional_arousal) (STV 1.0 0.9091)) +(: cnet_isa_c6b68387dd (IsA angevine french_person) (STV 1.0 0.9091)) +(: cnet_isa_79f9edc9f8 (IsA angiitis angiopathy) (STV 1.0 0.9091)) +(: cnet_isa_2ff49afd09 (IsA angiitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_06739a2c67 (IsA angina inflammatory_disease) (STV 1.0 0.9091)) +(: cnet_isa_8efb439a0e (IsA angina_pectoris heart_disease) (STV 1.0 0.9091)) +(: cnet_isa_3567a53690 (IsA angiocardiogram roentgenogram) (STV 1.0 0.9091)) +(: cnet_isa_e38552926e (IsA angiocarp angiosperm) (STV 1.0 0.9091)) +(: cnet_isa_3b68045119 (IsA angiogenesis growth) (STV 1.0 0.9091)) +(: cnet_isa_d2a18e382e (IsA angiogenesis_inhibitor medicine) (STV 1.0 0.9091)) +(: cnet_isa_ee7f43b45c (IsA angiogram roentgenogram) (STV 1.0 0.9091)) +(: cnet_isa_977174e650 (IsA angiography roentgenography) (STV 1.0 0.9091)) +(: cnet_isa_a20b5ca4ec (IsA angiologist doctor) (STV 1.0 0.9091)) +(: cnet_isa_3bd64fe27c (IsA angiology medicine) (STV 1.0 0.9091)) +(: cnet_isa_9bf3dde66c (IsA angioma angiopathy) (STV 1.0 0.9091)) +(: cnet_isa_19754340da (IsA angioma tumor) (STV 1.0 0.9091)) +(: cnet_isa_9c605bc509 (IsA angiopathy pathology) (STV 1.0 0.9091)) +(: cnet_isa_fe836dcbaa (IsA angioplasty operation) (STV 1.0 0.9091)) +(: cnet_isa_095dd8e1bd (IsA angiopteris tree_fern) (STV 1.0 0.9091)) +(: cnet_isa_a169653028 (IsA angiosarcoma malignant_tumor) (STV 1.0 0.9091)) +(: cnet_isa_4426b97d08 (IsA angioscope microscope) (STV 1.0 0.9091)) +(: cnet_isa_5f021e9881 (IsA angiosperm spermatophyte) (STV 1.0 0.9091)) +(: cnet_isa_cc4078cc79 (IsA angiospermae class) (STV 1.0 0.9091)) +(: cnet_isa_7cad536831 (IsA angiospermous_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_b505a144cd (IsA angiospermous_yellowwood yellowwood) (STV 1.0 0.9091)) +(: cnet_isa_12ac1c93df (IsA angiotelectasia physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_8244d8d13a (IsA angiotensin_converting_enzyme protease) (STV 1.0 0.9091)) +(: cnet_isa_639ad2d695 (IsA angle european) (STV 1.0 0.9091)) +(: cnet_isa_a8fb870b01 (IsA angle space) (STV 1.0 0.9091)) +(: cnet_isa_8b6fc2f322 (IsA angle_bracket bracket) (STV 1.0 0.9091)) +(: cnet_isa_d1a6422584 (IsA angle_bracket punctuation) (STV 1.0 0.9091)) +(: cnet_isa_dd3d1f4ce9 (IsA angle_of_attack angle_of_incidence) (STV 1.0 0.9091)) +(: cnet_isa_8d5e8d87a5 (IsA angle_of_extinction angle) (STV 1.0 0.9091)) +(: cnet_isa_4d5505eb62 (IsA angle_of_incidence angle) (STV 1.0 0.9091)) +(: cnet_isa_e34b180fb0 (IsA angle_of_reflection angle) (STV 1.0 0.9091)) +(: cnet_isa_53316cc98b (IsA angle_of_refraction angle) (STV 1.0 0.9091)) +(: cnet_isa_630a37f1e7 (IsA angled_loofah luffa) (STV 1.0 0.9091)) +(: cnet_isa_d78e2305fb (IsA angledozer bulldozer) (STV 1.0 0.9091)) +(: cnet_isa_a12f1c2e4d (IsA angler fisherman) (STV 1.0 0.9091)) +(: cnet_isa_d24eafc39e (IsA angler schemer) (STV 1.0 0.9091)) +(: cnet_isa_b17acbf89f (IsA anglewing nymphalid) (STV 1.0 0.9091)) +(: cnet_isa_330dc51bfe (IsA anglian old_english) (STV 1.0 0.9091)) +(: cnet_isa_5b4965ee81 (IsA anglican protestant) (STV 1.0 0.9091)) +(: cnet_isa_d26132a814 (IsA anglican_catholic catholic) (STV 1.0 0.9091)) +(: cnet_isa_0b424f0461 (IsA anglican_church protestant_denomination) (STV 1.0 0.9091)) +(: cnet_isa_c0e745efcf (IsA anglicanism protestantism) (STV 1.0 0.9091)) +(: cnet_isa_31d948fc4a (IsA anglicisation assimilation) (STV 1.0 0.9091)) +(: cnet_isa_03dbaed47f (IsA anglicism custom) (STV 1.0 0.9091)) +(: cnet_isa_02316c1bdc (IsA anglicism formulation) (STV 1.0 0.9091)) +(: cnet_isa_3a05877639 (IsA angling fishing) (STV 1.0 0.9091)) +(: cnet_isa_7c5b700f3f (IsA anglo_american american) (STV 1.0 0.9091)) +(: cnet_isa_f5527f8dab (IsA anglo_catholicism anglicanism) (STV 1.0 0.9091)) +(: cnet_isa_d2893405ef (IsA anglo_french french) (STV 1.0 0.9091)) +(: cnet_isa_2b92c010dd (IsA anglo_german_concertina concertina) (STV 1.0 0.9091)) +(: cnet_isa_4e7abe90e4 (IsA anglo_indian english_person) (STV 1.0 0.9091)) +(: cnet_isa_39c3a09f47 (IsA anglo_saxon english_person) (STV 1.0 0.9091)) +(: cnet_isa_b79ab0c6b1 (IsA anglo_saxon_deity deity) (STV 1.0 0.9091)) +(: cnet_isa_1010d8be46 (IsA anglomania enthusiasm) (STV 1.0 0.9091)) +(: cnet_isa_843ddc1203 (IsA anglophile supporter) (STV 1.0 0.9091)) +(: cnet_isa_7037c9ad30 (IsA anglophilia admiration) (STV 1.0 0.9091)) +(: cnet_isa_4740f124d5 (IsA anglophobe hater) (STV 1.0 0.9091)) +(: cnet_isa_8b898d89fd (IsA anglophobia dislike) (STV 1.0 0.9091)) +(: cnet_isa_1748fd2f00 (IsA angolan african) (STV 1.0 0.9091)) +(: cnet_isa_b12d501706 (IsA angolan_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_923eb4a0da (IsA angolese angolan) (STV 1.0 0.9091)) +(: cnet_isa_9d36bd0422 (IsA angora domestic_cat) (STV 1.0 0.9091)) +(: cnet_isa_e1ca83b6ef (IsA angora domestic_goat) (STV 1.0 0.9091)) +(: cnet_isa_adca1f8293 (IsA angora rabbit) (STV 1.0 0.9091)) +(: cnet_isa_864730e692 (IsA angostura_bark bark) (STV 1.0 0.9091)) +(: cnet_isa_ad2f000076 (IsA angoumois_moth grain_moth) (STV 1.0 0.9091)) +(: cnet_isa_b73c113710 (IsA angrecum orchid) (STV 1.0 0.9091)) +(: cnet_isa_b0f3bfbcd3 (IsA angst anxiety) (STV 1.0 0.9091)) +(: cnet_isa_671f84cfc6 (IsA angstrom metric_linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_619f062c4a (IsA anguid_lizard lizard) (STV 1.0 0.9091)) +(: cnet_isa_3913c33955 (IsA anguidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_84934507c4 (IsA anguilla fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_8035188570 (IsA anguillan west_indian) (STV 1.0 0.9091)) +(: cnet_isa_9b6054c79b (IsA anguillidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_8c9c094ee3 (IsA anguilliforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_88b28df6b6 (IsA anguillula worm_genus) (STV 1.0 0.9091)) +(: cnet_isa_a6ad4f5c99 (IsA anguis reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_de9f6221a7 (IsA anguish distress) (STV 1.0 0.9091)) +(: cnet_isa_e01edd5e25 (IsA angular_acceleration acceleration) (STV 1.0 0.9091)) +(: cnet_isa_22621486ad (IsA angular_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_81fa693500 (IsA angular_distance angle) (STV 1.0 0.9091)) +(: cnet_isa_c9b92ac1d2 (IsA angular_momentum momentum) (STV 1.0 0.9091)) +(: cnet_isa_2cf33ba344 (IsA angular_position position) (STV 1.0 0.9091)) +(: cnet_isa_bf2eca2442 (IsA angular_shape shape) (STV 1.0 0.9091)) +(: cnet_isa_1ae17afbeb (IsA angular_unit unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_525717cf24 (IsA angular_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_735bbd4d7e (IsA angular_velocity speed) (STV 1.0 0.9091)) +(: cnet_isa_1a33838c34 (IsA angularity shape) (STV 1.0 0.9091)) +(: cnet_isa_ed94212de4 (IsA angulation change_of_shape) (STV 1.0 0.9091)) +(: cnet_isa_8bf22e4e34 (IsA angulation measurement) (STV 1.0 0.9091)) +(: cnet_isa_ccc1295b1f (IsA angwantibo lemur) (STV 1.0 0.9091)) +(: cnet_isa_6929e12159 (IsA anhedonia psychological_state) (STV 1.0 0.9091)) +(: cnet_isa_1baaaf1921 (IsA anhidrosis physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_a2597266e1 (IsA anhima bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_e5ab60e241 (IsA anhimidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_ad7f16fd62 (IsA anhingidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_b151dc24da (IsA anhydride compound) (STV 1.0 0.9091)) +(: cnet_isa_2f2ac0338f (IsA ani cuckoo) (STV 1.0 0.9091)) +(: cnet_isa_2da0786b44 (IsA anigozanthus monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_75a015cedf (IsA anil indigo) (STV 1.0 0.9091)) +(: cnet_isa_f6e6d09420 (IsA anil dye) (STV 1.0 0.9091)) +(: cnet_isa_c4b9609fdc (IsA aniline amine) (STV 1.0 0.9091)) +(: cnet_isa_ae1665a524 (IsA aniline_dye dye) (STV 1.0 0.9091)) +(: cnet_isa_35ecc35a84 (IsA anima self) (STV 1.0 0.9091)) +(: cnet_isa_1d764b3e5b (IsA animal organism) (STV 1.0 0.9091)) +(: cnet_isa_7d9187b75d (IsA animal_communication signal) (STV 1.0 0.9091)) +(: cnet_isa_8ccf75ff76 (IsA animal_disease disease) (STV 1.0 0.9091)) +(: cnet_isa_d89e09aee3 (IsA animal_fancier fancier) (STV 1.0 0.9091)) +(: cnet_isa_f4a15432c5 (IsA animal_fat animal_material) (STV 1.0 0.9091)) +(: cnet_isa_c62b16fd7c (IsA animal_fat fat) (STV 1.0 0.9091)) +(: cnet_isa_a09e86c341 (IsA animal_fiber animal_product) (STV 1.0 0.9091)) +(: cnet_isa_d2873e8ef5 (IsA animal_fiber natural_fiber) (STV 1.0 0.9091)) +(: cnet_isa_b663514ff3 (IsA animal_foot vertebrate_foot) (STV 1.0 0.9091)) +(: cnet_isa_28cdc5ee51 (IsA animal_glue animal_product) (STV 1.0 0.9091)) +(: cnet_isa_8bbcc33f52 (IsA animal_glue glue) (STV 1.0 0.9091)) +(: cnet_isa_3b408f96d9 (IsA animal_group biological_group) (STV 1.0 0.9091)) +(: cnet_isa_c6f5d41fc3 (IsA animal_husbandry farming) (STV 1.0 0.9091)) +(: cnet_isa_43893819b1 (IsA animal_leg leg) (STV 1.0 0.9091)) +(: cnet_isa_d62f50610b (IsA animal_material material) (STV 1.0 0.9091)) +(: cnet_isa_29c002d543 (IsA animal_model model) (STV 1.0 0.9091)) +(: cnet_isa_e4f5f2a7ba (IsA animal_oil animal_material) (STV 1.0 0.9091)) +(: cnet_isa_b2424fb770 (IsA animal_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_6e329285bb (IsA animal_order order) (STV 1.0 0.9091)) +(: cnet_isa_4fb0309f26 (IsA animal_pigment pigment) (STV 1.0 0.9091)) +(: cnet_isa_12807e836b (IsA animal_product animal_material) (STV 1.0 0.9091)) +(: cnet_isa_f1b277f665 (IsA animal_skin animal_product) (STV 1.0 0.9091)) +(: cnet_isa_d254be7529 (IsA animal_tissue tissue) (STV 1.0 0.9091)) +(: cnet_isa_801ad4468b (IsA animal_toxin toxin) (STV 1.0 0.9091)) +(: cnet_isa_4811b10f94 (IsA animal_trainer trainer) (STV 1.0 0.9091)) +(: cnet_isa_08b4db762f (IsA animal_virus virus) (STV 1.0 0.9091)) +(: cnet_isa_8372da1460 (IsA animalcule organism) (STV 1.0 0.9091)) +(: cnet_isa_1f6b241eb9 (IsA animalia kingdom) (STV 1.0 0.9091)) +(: cnet_isa_6090df32b7 (IsA animalism disposition) (STV 1.0 0.9091)) +(: cnet_isa_01b98518eb (IsA animalism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_c05c56eb04 (IsA animality nature) (STV 1.0 0.9091)) +(: cnet_isa_c0e795a8e2 (IsA animalization delineation) (STV 1.0 0.9091)) +(: cnet_isa_5bab90a0f8 (IsA animal living_creature) (STV 1.0 0.9091)) +(: cnet_isa_e0e1ef93f1 (IsA animal mammal) (STV 1.0 0.9091)) +(: cnet_isa_63d6c34aac (IsA animated_flesh_of_dead_person zombie) (STV 1.0 0.9091)) +(: cnet_isa_b304779bfb (IsA animateness physiological_property) (STV 1.0 0.9091)) +(: cnet_isa_357f0940df (IsA animation filming) (STV 1.0 0.9091)) +(: cnet_isa_92a604f1b2 (IsA animation activeness) (STV 1.0 0.9091)) +(: cnet_isa_f5d1b6d063 (IsA animation animateness) (STV 1.0 0.9091)) +(: cnet_isa_2e46eb2234 (IsA animation being) (STV 1.0 0.9091)) +(: cnet_isa_d459c7b0b1 (IsA animatism attribution) (STV 1.0 0.9091)) +(: cnet_isa_aa23baa93d (IsA animator technician) (STV 1.0 0.9091)) +(: cnet_isa_5144418686 (IsA animatronic robotic) (STV 1.0 0.9091)) +(: cnet_isa_57889948ea (IsA anime animation) (STV 1.0 0.9339)) +(: cnet_isa_1612de3e18 (IsA anime cartoon) (STV 1.0 0.9091)) +(: cnet_isa_a98c558444 (IsA anime natural_resin) (STV 1.0 0.9091)) +(: cnet_isa_f8a2b9ff83 (IsA animism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_04423d5629 (IsA animist disciple) (STV 1.0 0.9091)) +(: cnet_isa_26d8b27ed0 (IsA animosity hostility) (STV 1.0 0.9091)) +(: cnet_isa_f156d840b1 (IsA anion ion) (STV 1.0 0.9091)) +(: cnet_isa_9ef4649945 (IsA anionic_compound compound) (STV 1.0 0.9091)) +(: cnet_isa_391aba380f (IsA anionic_detergent detergent) (STV 1.0 0.9091)) +(: cnet_isa_eab7ac1adf (IsA anise flavorer) (STV 1.0 0.9091)) +(: cnet_isa_af41dd709e (IsA anise herb) (STV 1.0 0.9091)) +(: cnet_isa_841b5916cf (IsA anise_cookie cookie) (STV 1.0 0.9091)) +(: cnet_isa_cd2d10e442 (IsA anise_hyssop giant_hyssop) (STV 1.0 0.9091)) +(: cnet_isa_034277e903 (IsA anise_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_f534e88d99 (IsA aniseikonia visual_impairment) (STV 1.0 0.9091)) +(: cnet_isa_046fa38b52 (IsA anisette liqueur) (STV 1.0 0.9091)) +(: cnet_isa_1c0a5f4f90 (IsA anisogamete gamete) (STV 1.0 0.9091)) +(: cnet_isa_c7048e2a37 (IsA anisogamy sexual_reproduction) (STV 1.0 0.9091)) +(: cnet_isa_c9672880d2 (IsA anisometropia eye_condition) (STV 1.0 0.9091)) +(: cnet_isa_6c0217260b (IsA anisoptera animal_order) (STV 1.0 0.9091)) +(: cnet_isa_1141f1da75 (IsA anisotremus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_e5c3a44e34 (IsA anisotropy property) (STV 1.0 0.9091)) +(: cnet_isa_fed0329488 (IsA anjou pear) (STV 1.0 0.9091)) +(: cnet_isa_9d9ecc38c6 (IsA ankle gliding_joint) (STV 1.0 0.9091)) +(: cnet_isa_0fdbb81d95 (IsA ankle_brace brace) (STV 1.0 0.9091)) +(: cnet_isa_ee92a80769 (IsA anklebone bone) (STV 1.0 0.9091)) +(: cnet_isa_6ebecb296a (IsA anklet bracelet) (STV 1.0 0.9091)) +(: cnet_isa_e67f8375a1 (IsA anklet shoe) (STV 1.0 0.9091)) +(: cnet_isa_e0f457eac4 (IsA anklet sock) (STV 1.0 0.9091)) +(: cnet_isa_dcad1f6e8a (IsA ankus prod) (STV 1.0 0.9091)) +(: cnet_isa_b11590cb2f (IsA ankylosaur armored_dinosaur) (STV 1.0 0.9091)) +(: cnet_isa_a126bcc29d (IsA ankylosing_spondylitis autoimmune_disease) (STV 1.0 0.9091)) +(: cnet_isa_8af33c8a72 (IsA ankylosing_spondylitis spondylitis) (STV 1.0 0.9091)) +(: cnet_isa_99ab906034 (IsA ankylosis pathology) (STV 1.0 0.9091)) +(: cnet_isa_079de477fb (IsA ann_arbor in_michigan) (STV 1.0 0.9339)) +(: cnet_isa_605d74a117 (IsA anna indian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_1d5c16dbbb (IsA anna pakistani_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_44765268e7 (IsA annalist historian) (STV 1.0 0.9091)) +(: cnet_isa_520d7dd4b7 (IsA annal history) (STV 1.0 0.9091)) +(: cnet_isa_7ce9f246bd (IsA annal journal) (STV 1.0 0.9091)) +(: cnet_isa_29b0cb0275 (IsA annamese asiatic) (STV 1.0 0.9091)) +(: cnet_isa_0be3e77fa6 (IsA annealing hardening) (STV 1.0 0.9091)) +(: cnet_isa_5db2f18774 (IsA annelid worm) (STV 1.0 0.9091)) +(: cnet_isa_6bf1833909 (IsA annelida phylum) (STV 1.0 0.9091)) +(: cnet_isa_c8b51afc3c (IsA annex addition) (STV 1.0 0.9091)) +(: cnet_isa_87d69cf006 (IsA annexation acquisition) (STV 1.0 0.9091)) +(: cnet_isa_a0505bd651 (IsA annexation incorporation) (STV 1.0 0.9091)) +(: cnet_isa_8f30852dc9 (IsA anniellidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_d4907e10d8 (IsA annihilation destruction) (STV 1.0 0.9091)) +(: cnet_isa_98d10f3e32 (IsA annihilator destroyer) (STV 1.0 0.9091)) +(: cnet_isa_fbe6694404 (IsA anniversary day) (STV 1.0 0.9091)) +(: cnet_isa_f94ccf39ff (IsA annona magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_58de44bc7c (IsA annonaceae magnoliid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_be2345a07d (IsA annotation expansion) (STV 1.0 0.9091)) +(: cnet_isa_142c266158 (IsA annotator observer) (STV 1.0 0.9091)) +(: cnet_isa_3d00558d67 (IsA announcement statement) (STV 1.0 0.9091)) +(: cnet_isa_3b867db966 (IsA announcer broadcaster) (STV 1.0 0.9091)) +(: cnet_isa_04a97e2745 (IsA announcer communicator) (STV 1.0 0.9091)) +(: cnet_isa_5fc7fea817 (IsA annoyance mistreatment) (STV 1.0 0.9091)) +(: cnet_isa_3d66a3e4ce (IsA annoyance negative_stimulus) (STV 1.0 0.9091)) +(: cnet_isa_5795106293 (IsA annoyance anger) (STV 1.0 0.9091)) +(: cnet_isa_4b046bdba5 (IsA annual plant) (STV 1.0 0.9091)) +(: cnet_isa_ef69aec16b (IsA annual reference_book) (STV 1.0 0.9091)) +(: cnet_isa_63cd7c4e4b (IsA annual_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_eec3e8cc0b (IsA annual_ring organic_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_6ae9e21878 (IsA annual_salt_marsh_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_fca4cb926e (IsA annuitant recipient) (STV 1.0 0.9091)) +(: cnet_isa_67424fe9b6 (IsA annuity regular_payment) (STV 1.0 0.9091)) +(: cnet_isa_aecc63ae76 (IsA annuity_in_advance annuity) (STV 1.0 0.9091)) +(: cnet_isa_838e7aaf13 (IsA annular_eclipse solar_eclipse) (STV 1.0 0.9091)) +(: cnet_isa_c980630502 (IsA annular_scotoma scotoma) (STV 1.0 0.9091)) +(: cnet_isa_7244c6fb80 (IsA annulet molding) (STV 1.0 0.9091)) +(: cnet_isa_84e009102d (IsA annulet charge) (STV 1.0 0.9091)) +(: cnet_isa_682a05d7f3 (IsA annulment dissolution) (STV 1.0 0.9091)) +(: cnet_isa_8ef61cd966 (IsA annulus plant_part) (STV 1.0 0.9091)) +(: cnet_isa_b0cc0aef91 (IsA annum year) (STV 1.0 0.9091)) +(: cnet_isa_608fa556a3 (IsA annunciation quarter_day) (STV 1.0 0.9091)) +(: cnet_isa_2ad7c983ee (IsA annunciator indicator) (STV 1.0 0.9091)) +(: cnet_isa_80b040ed47 (IsA annwfn imaginary_place) (STV 1.0 0.9091)) +(: cnet_isa_581ac4c1a6 (IsA anoa old_world_buffalo) (STV 1.0 0.9091)) +(: cnet_isa_61b5b257c6 (IsA anobiidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_c17b8b3e8f (IsA anode electrode) (STV 1.0 0.9091)) +(: cnet_isa_637975e6f5 (IsA anode terminal) (STV 1.0 0.9091)) +(: cnet_isa_8e309594db (IsA anodonta mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_952f1add33 (IsA anoectochilus monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d2d1946cac (IsA anogramma fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_45cb55bfcb (IsA anointer religionist) (STV 1.0 0.9091)) +(: cnet_isa_5294776c3d (IsA anointing application) (STV 1.0 0.9091)) +(: cnet_isa_b04852a92f (IsA anointing_of_sick sacrament) (STV 1.0 0.9091)) +(: cnet_isa_f0b9030252 (IsA anolis reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_ffb312f312 (IsA anomala arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_1a9ae01933 (IsA anomalist intellectual) (STV 1.0 0.9091)) +(: cnet_isa_36cbc2e5cc (IsA anomalistic_month month) (STV 1.0 0.9091)) +(: cnet_isa_dab56efb28 (IsA anomalistic_year year) (STV 1.0 0.9091)) +(: cnet_isa_19e894b23c (IsA anomalopidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_4543eb61d5 (IsA anomalop spiny_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_90acfe041c (IsA anomalopteryx moa) (STV 1.0 0.9091)) +(: cnet_isa_49226baf2e (IsA anomaly position) (STV 1.0 0.9091)) +(: cnet_isa_65a0631f51 (IsA anomaly person) (STV 1.0 0.9091)) +(: cnet_isa_3da10cbce2 (IsA anomaly abnormality) (STV 1.0 0.9091)) +(: cnet_isa_4b24e85f94 (IsA anomia mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_57604776fe (IsA anomie immorality) (STV 1.0 0.9091)) +(: cnet_isa_769ba4d063 (IsA anomie isolation) (STV 1.0 0.9091)) +(: cnet_isa_7279b3fe52 (IsA anomiidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_7f6e5e7c3b (IsA anonymity obscurity) (STV 1.0 0.9091)) +(: cnet_isa_a7f1b7aa63 (IsA anonymous_ftp file_transfer_protocol) (STV 1.0 0.9091)) +(: cnet_isa_d610cee56b (IsA anophele arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_df359e1350 (IsA anopheline mosquito) (STV 1.0 0.9091)) +(: cnet_isa_e76c0f75b7 (IsA anopia blindness) (STV 1.0 0.9091)) +(: cnet_isa_a8b623fdf9 (IsA anoplura animal_order) (STV 1.0 0.9091)) +(: cnet_isa_4023d17dcf (IsA anorchism abnormality) (STV 1.0 0.9091)) +(: cnet_isa_9517009427 (IsA anorexia eating_disorder) (STV 1.0 0.9339)) +(: cnet_isa_1f24ce3f69 (IsA anorexia_nervosa anorexia) (STV 1.0 0.9091)) +(: cnet_isa_6c79528eb1 (IsA anorexic sick_person) (STV 1.0 0.9091)) +(: cnet_isa_9f235c0df6 (IsA anorgasmia disability) (STV 1.0 0.9091)) +(: cnet_isa_f1bc2797f6 (IsA anorthite plagioclase) (STV 1.0 0.9091)) +(: cnet_isa_912b599680 (IsA anorthopia visual_impairment) (STV 1.0 0.9091)) +(: cnet_isa_a48d90c16b (IsA anosmia dysomia) (STV 1.0 0.9091)) +(: cnet_isa_053dfe6b6d (IsA anostraca animal_order) (STV 1.0 0.9091)) +(: cnet_isa_40a672c8cb (IsA another_way_to_say city) (STV 1.0 0.9091)) +(: cnet_isa_76f5a49504 (IsA another_way_to_say_state condition) (STV 1.0 0.9091)) +(: cnet_isa_4a705d7a6c (IsA another_weapon bomb) (STV 1.0 0.9091)) +(: cnet_isa_1f959531dc (IsA another_word_for_fece poop) (STV 1.0 0.9091)) +(: cnet_isa_3b82588b7e (IsA another_word_for_television tv) (STV 1.0 0.9091)) +(: cnet_isa_dc34b584d5 (IsA anovulation organic_process) (STV 1.0 0.9091)) +(: cnet_isa_6297b4c95d (IsA anoxemia pathology) (STV 1.0 0.9091)) +(: cnet_isa_a7e096aac0 (IsA anoxia hypoxia) (STV 1.0 0.9091)) +(: cnet_isa_87b0873306 (IsA anoxic_anoxia anoxia) (STV 1.0 0.9091)) +(: cnet_isa_f71c266005 (IsA anser bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_bd765e34fc (IsA ansere animal_order) (STV 1.0 0.9091)) +(: cnet_isa_a2ccc1f142 (IsA anseriform_bird waterfowl) (STV 1.0 0.9091)) +(: cnet_isa_fcae90a9d5 (IsA anseriforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_d5aff23c08 (IsA anserinae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_bdacee0293 (IsA answer reaction) (STV 1.0 0.9091)) +(: cnet_isa_7d5c8bc9ec (IsA answer reply) (STV 1.0 0.9091)) +(: cnet_isa_ca6a5b3234 (IsA answer statement) (STV 1.0 0.9091)) +(: cnet_isa_fea8f041f1 (IsA answer pleading) (STV 1.0 0.9091)) +(: cnet_isa_0a05d5d05f (IsA answering_machine electronic_device) (STV 1.0 0.9091)) +(: cnet_isa_da42ec9b19 (IsA ant insect) (STV 1.0 0.9339)) +(: cnet_isa_e79561e62d (IsA ant one_type_of_insect) (STV 1.0 0.9339)) +(: cnet_isa_ee96f6fb14 (IsA ant hymenopterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_3a65b75689 (IsA ant_bear anteater) (STV 1.0 0.9091)) +(: cnet_isa_249f373190 (IsA ant_cow aphid) (STV 1.0 0.9091)) +(: cnet_isa_95380ffba1 (IsA ant_lion neuropteron) (STV 1.0 0.9091)) +(: cnet_isa_d23086e287 (IsA ant_shrike antbird) (STV 1.0 0.9091)) +(: cnet_isa_63d5b99f89 (IsA ant_thrush antbird) (STV 1.0 0.9091)) +(: cnet_isa_91b0ccadcb (IsA antacid agent) (STV 1.0 0.9091)) +(: cnet_isa_87d694a25c (IsA antagonism hindrance) (STV 1.0 0.9091)) +(: cnet_isa_dc69c268cf (IsA antagonism dislike) (STV 1.0 0.9091)) +(: cnet_isa_58bd260deb (IsA antagonism hostility) (STV 1.0 0.9091)) +(: cnet_isa_aea044fc10 (IsA antagonism opposition) (STV 1.0 0.9091)) +(: cnet_isa_3efa0f85be (IsA antagonist drug) (STV 1.0 0.9091)) +(: cnet_isa_ba3bb0f107 (IsA antagonist antagonistic_muscle) (STV 1.0 0.9091)) +(: cnet_isa_68bf48e5dc (IsA antagonistic_muscle muscle) (STV 1.0 0.9091)) +(: cnet_isa_db6ff0e36a (IsA antapex celestial_point) (STV 1.0 0.9091)) +(: cnet_isa_b64e83121f (IsA antarctica continent) (STV 1.0 0.9339)) +(: cnet_isa_2fdc138620 (IsA antbird tyrannid) (STV 1.0 0.9091)) +(: cnet_isa_bf0840e50b (IsA ante stake) (STV 1.0 0.9091)) +(: cnet_isa_c179314a58 (IsA anteater edentate) (STV 1.0 0.9091)) +(: cnet_isa_78f01f9c13 (IsA antecedent referent) (STV 1.0 0.9091)) +(: cnet_isa_7376e49739 (IsA antecedent cause) (STV 1.0 0.9091)) +(: cnet_isa_df58b86105 (IsA antecedent temporal_relation) (STV 1.0 0.9091)) +(: cnet_isa_b5ab4d3f80 (IsA antediluvian oldster) (STV 1.0 0.9091)) +(: cnet_isa_e2fd2f8735 (IsA antediluvian patriarch) (STV 1.0 0.9091)) +(: cnet_isa_41db8cb247 (IsA antedon echinoderm_genus) (STV 1.0 0.9091)) +(: cnet_isa_89caa2960a (IsA antedonidae echinoderm_family) (STV 1.0 0.9091)) +(: cnet_isa_0d67539218 (IsA antefix architectural_ornament) (STV 1.0 0.9091)) +(: cnet_isa_a5dae7cd84 (IsA antelope bovid) (STV 1.0 0.9091)) +(: cnet_isa_f6b3c84cbc (IsA antelope_squirrel ground_squirrel) (STV 1.0 0.9091)) +(: cnet_isa_c67c16cd51 (IsA antenna tentacle) (STV 1.0 0.9091)) +(: cnet_isa_09953c3272 (IsA antenna electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_c9040f94b5 (IsA antenna sensitivity) (STV 1.0 0.9091)) +(: cnet_isa_0557f33926 (IsA antennaria asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4423a9a542 (IsA antennariidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_a851c7e92f (IsA antepenult syllable) (STV 1.0 0.9091)) +(: cnet_isa_16eec30f3e (IsA anterior_cardinal_vein cardinal_vein) (STV 1.0 0.9091)) +(: cnet_isa_bee1c91aed (IsA anterior_cerebral_artery cerebral_artery) (STV 1.0 0.9091)) +(: cnet_isa_5785e9fac0 (IsA anterior_cerebral_vein cerebral_vein) (STV 1.0 0.9091)) +(: cnet_isa_d2a64708b2 (IsA anterior_facial_vein facial_vein) (STV 1.0 0.9091)) +(: cnet_isa_11be060475 (IsA anterior_fontanelle fontanelle) (STV 1.0 0.9091)) +(: cnet_isa_0af69c3c54 (IsA anterior_horn motor_nerve) (STV 1.0 0.9091)) +(: cnet_isa_dc73ef3f1c (IsA anterior_jugular_vein jugular_vein) (STV 1.0 0.9091)) +(: cnet_isa_a8a2d822e1 (IsA anterior_meningeal_artery meningeal_artery) (STV 1.0 0.9091)) +(: cnet_isa_649960aba0 (IsA anterior_pituitary endocrine_gland) (STV 1.0 0.9091)) +(: cnet_isa_0996f251ab (IsA anterior_serratus_muscle serratus) (STV 1.0 0.9091)) +(: cnet_isa_b064157461 (IsA anterior_synechia synechia) (STV 1.0 0.9091)) +(: cnet_isa_7e33922f35 (IsA anterior_temporal_artery temporal_artery) (STV 1.0 0.9091)) +(: cnet_isa_bff0b75ba8 (IsA anterior_vertebral_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_eb12073bd3 (IsA anteriority position) (STV 1.0 0.9091)) +(: cnet_isa_6f1e2f8046 (IsA anterograde_amnesia amnesia) (STV 1.0 0.9091)) +(: cnet_isa_cb7fccba2d (IsA anteroom room) (STV 1.0 0.9091)) +(: cnet_isa_7d551c3f81 (IsA anthem song) (STV 1.0 0.9091)) +(: cnet_isa_f53145248c (IsA anthemis asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_036a8a0fde (IsA anther reproductive_structure) (STV 1.0 0.9091)) +(: cnet_isa_b314d31db4 (IsA antheraea arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_166fa874ba (IsA anthericum liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_062d03b3fb (IsA antheridiophore gametophore) (STV 1.0 0.9091)) +(: cnet_isa_2708e85b88 (IsA antheridium reproductive_structure) (STV 1.0 0.9091)) +(: cnet_isa_48d243a880 (IsA antheropea asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2ebc9ade6a (IsA antherozoid gamete) (STV 1.0 0.9091)) +(: cnet_isa_feefefe52c (IsA anthidium arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_994c86e186 (IsA anthill knoll) (STV 1.0 0.9091)) +(: cnet_isa_1f1130f654 (IsA anthoceropsida class) (STV 1.0 0.9091)) +(: cnet_isa_2f7343f229 (IsA anthocero moss_genus) (STV 1.0 0.9091)) +(: cnet_isa_a5e15d32bb (IsA anthocerotaceae moss_family) (STV 1.0 0.9091)) +(: cnet_isa_e19f50047e (IsA anthocerotale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_1d3f19623e (IsA anthologist editor) (STV 1.0 0.9091)) +(: cnet_isa_9a13775b4c (IsA anthology collection) (STV 1.0 0.9091)) +(: cnet_isa_e0f0ba3de5 (IsA anthonomus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_faa5edf2a0 (IsA anthophyllite amphibole) (STV 1.0 0.9091)) +(: cnet_isa_f7be52efe4 (IsA anthozoa class) (STV 1.0 0.9091)) +(: cnet_isa_9e4918e6a5 (IsA anthozoan coelenterate) (STV 1.0 0.9091)) +(: cnet_isa_ac6d3eee88 (IsA anthracite coal) (STV 1.0 0.9091)) +(: cnet_isa_2687d07a3c (IsA anthracosis pneumoconiosis) (STV 1.0 0.9091)) +(: cnet_isa_790500a014 (IsA anthrax disease) (STV 1.0 0.9339)) +(: cnet_isa_7d2a8229cf (IsA anthrax zoonosis) (STV 1.0 0.9091)) +(: cnet_isa_48487af26b (IsA anthriscus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ef5988d3f4 (IsA anthropocentrism partiality) (STV 1.0 0.9091)) +(: cnet_isa_6f509b4f51 (IsA anthropogenesis evolution) (STV 1.0 0.9091)) +(: cnet_isa_8b2ffe1dc3 (IsA anthropoid primate) (STV 1.0 0.9091)) +(: cnet_isa_d0e2d6f24f (IsA anthropoid misfit) (STV 1.0 0.9091)) +(: cnet_isa_dbbf864bf1 (IsA anthropoid_ape ape) (STV 1.0 0.9091)) +(: cnet_isa_f4e9d730b6 (IsA anthropoidea animal_order) (STV 1.0 0.9091)) +(: cnet_isa_2a31176170 (IsA anthropolatry worship) (STV 1.0 0.9091)) +(: cnet_isa_907117466c (IsA anthropologist social_scientist) (STV 1.0 0.9091)) +(: cnet_isa_3c1db8eb94 (IsA anthropology social_science) (STV 1.0 0.9091)) +(: cnet_isa_5491284716 (IsA anthropology_department academic_department) (STV 1.0 0.9091)) +(: cnet_isa_faf0c3d09b (IsA anthropometry measurement) (STV 1.0 0.9091)) +(: cnet_isa_e4f7b9b897 (IsA anthropomorphism representational_process) (STV 1.0 0.9091)) +(: cnet_isa_3439e6bfe5 (IsA anthropophagy cannibalism) (STV 1.0 0.9091)) +(: cnet_isa_a1c0508437 (IsA anthroposophy system) (STV 1.0 0.9091)) +(: cnet_isa_143b22113f (IsA anthurium houseplant) (STV 1.0 0.9091)) +(: cnet_isa_f097c60078 (IsA anthus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_d4317a6fe2 (IsA anthyllis rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7fdc053ca9 (IsA anti person) (STV 1.0 0.9091)) +(: cnet_isa_1aa4d9157c (IsA anti_american person) (STV 1.0 0.9091)) +(: cnet_isa_e10d4dc779 (IsA anti_catholicism religious_orientation) (STV 1.0 0.9091)) +(: cnet_isa_20254ac7c3 (IsA anti_drug_law law) (STV 1.0 0.9091)) +(: cnet_isa_daa0af503d (IsA anti_dumping_duty protective_tariff) (STV 1.0 0.9091)) +(: cnet_isa_1180013723 (IsA anti_g_suit pressure_suit) (STV 1.0 0.9091)) +(: cnet_isa_6947684a05 (IsA anti_inflammatory medicine) (STV 1.0 0.9091)) +(: cnet_isa_93bdd5baff (IsA anti_masonic_party party) (STV 1.0 0.9091)) +(: cnet_isa_908999abaa (IsA anti_racketeering_law law) (STV 1.0 0.9091)) +(: cnet_isa_1603266dd1 (IsA anti_semite hater) (STV 1.0 0.9091)) +(: cnet_isa_2f08abf12a (IsA anti_semitism racism) (STV 1.0 0.9091)) +(: cnet_isa_db6a23d614 (IsA anti_submarine_rocket shipboard_system) (STV 1.0 0.9091)) +(: cnet_isa_a344dbc13d (IsA anti_takeover_defense resistance) (STV 1.0 0.9091)) +(: cnet_isa_6dc6b055da (IsA anti_tnf_compound drug) (STV 1.0 0.9091)) +(: cnet_isa_90d11b4e60 (IsA anti_virus_program program) (STV 1.0 0.9091)) +(: cnet_isa_996c29f778 (IsA anti_war_movement campaign) (STV 1.0 0.9091)) +(: cnet_isa_bb63d8cc02 (IsA antiaircraft gun) (STV 1.0 0.9091)) +(: cnet_isa_6d1d840e2d (IsA antiaircraft_fire fire) (STV 1.0 0.9091)) +(: cnet_isa_d3d2eef39f (IsA antialiasing technique) (STV 1.0 0.9091)) +(: cnet_isa_8c0585a115 (IsA antiarrhythmic medicine) (STV 1.0 0.9091)) +(: cnet_isa_1096b80f34 (IsA antibacterial medicine) (STV 1.0 0.9091)) +(: cnet_isa_8e542bdae3 (IsA antiballistic_missile guided_missile) (STV 1.0 0.9091)) +(: cnet_isa_b88c49bf5b (IsA antibaryon hadron) (STV 1.0 0.9091)) +(: cnet_isa_46dae16346 (IsA antibiosis association) (STV 1.0 0.9091)) +(: cnet_isa_d61a1f2893 (IsA antibiotic antibacterial) (STV 1.0 0.9091)) +(: cnet_isa_5d967982a1 (IsA antibody protein) (STV 1.0 0.9091)) +(: cnet_isa_cb52a76ae5 (IsA antic diversion) (STV 1.0 0.9091)) +(: cnet_isa_bb039a7fdd (IsA anticatalyst inhibitor) (STV 1.0 0.9091)) +(: cnet_isa_3b4c8bf06c (IsA anticholinergic medicine) (STV 1.0 0.9091)) +(: cnet_isa_dba6308c32 (IsA anticholinesterase medicine) (STV 1.0 0.9091)) +(: cnet_isa_52ab3ecb25 (IsA anticipation expectation) (STV 1.0 0.9091)) +(: cnet_isa_4abb98001f (IsA anticipation hopefulness) (STV 1.0 0.9091)) +(: cnet_isa_a8c9f395f7 (IsA anticipator visionary) (STV 1.0 0.9091)) +(: cnet_isa_640e78c439 (IsA anticipatory_breach breach_of_contract) (STV 1.0 0.9091)) +(: cnet_isa_42874d3b54 (IsA anticlimax conclusion) (STV 1.0 0.9091)) +(: cnet_isa_55d6a4720c (IsA anticlimax fall) (STV 1.0 0.9091)) +(: cnet_isa_300dba0cfa (IsA anticoagulant medicine) (STV 1.0 0.9091)) +(: cnet_isa_012fea0316 (IsA anticoagulation medical_care) (STV 1.0 0.9091)) +(: cnet_isa_dcf71ee109 (IsA anticonvulsant medicine) (STV 1.0 0.9091)) +(: cnet_isa_d767a29365 (IsA anticyclone atmosphere) (STV 1.0 0.9091)) +(: cnet_isa_c550d88cb5 (IsA antidepressant medicine) (STV 1.0 0.9091)) +(: cnet_isa_757b3101e6 (IsA antidiabetic medicine) (STV 1.0 0.9091)) +(: cnet_isa_67a18eafd6 (IsA antidiarrheal medicine) (STV 1.0 0.9091)) +(: cnet_isa_3ab58a6853 (IsA antidiuretic medicine) (STV 1.0 0.9091)) +(: cnet_isa_b562b768cb (IsA antido artificial_language) (STV 1.0 0.9091)) +(: cnet_isa_3495dedf9e (IsA antidorca mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_6afc98780f (IsA antidote remedy) (STV 1.0 0.9091)) +(: cnet_isa_17d554c7f9 (IsA antiemetic medicine) (STV 1.0 0.9091)) +(: cnet_isa_2ac9ace714 (IsA antiestablishmentarianism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_6ab7651e37 (IsA antifeminist bigot) (STV 1.0 0.9091)) +(: cnet_isa_57c0541deb (IsA antiferromagnetism magnetism) (STV 1.0 0.9091)) +(: cnet_isa_7f854ca1ce (IsA antiflatulent agent) (STV 1.0 0.9091)) +(: cnet_isa_b146701cbe (IsA antifouling_paint paint) (STV 1.0 0.9091)) +(: cnet_isa_d77e0cb383 (IsA antifreeze liquid) (STV 1.0 0.9091)) +(: cnet_isa_74e7c9d62c (IsA antifungal agent) (STV 1.0 0.9091)) +(: cnet_isa_e7faeff830 (IsA antigen substance) (STV 1.0 0.9091)) +(: cnet_isa_c3f0590af3 (IsA antigenic_determinant site) (STV 1.0 0.9091)) +(: cnet_isa_3596e1a68e (IsA antigonia fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_4c8e3ada08 (IsA antigram anagram) (STV 1.0 0.9091)) +(: cnet_isa_1bd127dbaa (IsA antiguan west_indian) (STV 1.0 0.9091)) +(: cnet_isa_aa884717f1 (IsA antihero protagonist) (STV 1.0 0.9091)) +(: cnet_isa_3b844357c7 (IsA antihistamine medicine) (STV 1.0 0.9091)) +(: cnet_isa_9bd686b965 (IsA antihypertensive medicine) (STV 1.0 0.9091)) +(: cnet_isa_b068004819 (IsA antiknock compound) (STV 1.0 0.9091)) +(: cnet_isa_e18b3ff90d (IsA antilepton elementary_particle) (STV 1.0 0.9091)) +(: cnet_isa_4711f5051f (IsA antilocapra mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_65e0182166 (IsA antilocapridae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_b1bf44455f (IsA antilogarithm numeral) (STV 1.0 0.9091)) +(: cnet_isa_37cafb2286 (IsA antilope mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_c825b7613e (IsA antimacassar cloth_covering) (STV 1.0 0.9091)) +(: cnet_isa_8072b3bc0b (IsA antimalarial antiprotozoal) (STV 1.0 0.9091)) +(: cnet_isa_acac3ef956 (IsA antimatter substance) (STV 1.0 0.9091)) +(: cnet_isa_308f95dd1e (IsA antimeson hadron) (STV 1.0 0.9091)) +(: cnet_isa_03f03ac826 (IsA antimetabolite antineoplastic) (STV 1.0 0.9091)) +(: cnet_isa_50ecd1adae (IsA antimony metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_c3b04e0f70 (IsA antimuon antilepton) (STV 1.0 0.9091)) +(: cnet_isa_5acbb03b1e (IsA antimycin antibiotic) (STV 1.0 0.9091)) +(: cnet_isa_760b47e242 (IsA antineoplastic cytotoxic_drug) (STV 1.0 0.9091)) +(: cnet_isa_f7797e0669 (IsA antineoplastic_antibiotic antibiotic) (STV 1.0 0.9091)) +(: cnet_isa_5b57bdcbe5 (IsA antineoplastic_antibiotic antineoplastic) (STV 1.0 0.9091)) +(: cnet_isa_79095b6941 (IsA antineutrino antilepton) (STV 1.0 0.9091)) +(: cnet_isa_05c6307dd2 (IsA antineutron nucleon) (STV 1.0 0.9091)) +(: cnet_isa_51dd1c0b75 (IsA antinode point) (STV 1.0 0.9091)) +(: cnet_isa_e795900efc (IsA antinomasia rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_bb40682cc2 (IsA antinomian disciple) (STV 1.0 0.9091)) +(: cnet_isa_f4fc257363 (IsA antinomianism theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_bbcd47efa4 (IsA antinomy contradiction) (STV 1.0 0.9091)) +(: cnet_isa_ba0c331d2a (IsA antioxidant inhibitor) (STV 1.0 0.9091)) +(: cnet_isa_5fc341e0bb (IsA antiparticle elementary_particle) (STV 1.0 0.9091)) +(: cnet_isa_fc48d59306 (IsA antipasto appetizer) (STV 1.0 0.9091)) +(: cnet_isa_52b80f6243 (IsA antipathy object) (STV 1.0 0.9091)) +(: cnet_isa_6eeccd4081 (IsA antipathy dislike) (STV 1.0 0.9091)) +(: cnet_isa_832de98709 (IsA antiperspirant toiletry) (STV 1.0 0.9091)) +(: cnet_isa_6acfabe3dd (IsA antiphon religious_music) (STV 1.0 0.9091)) +(: cnet_isa_86ef9c65db (IsA antiphonary religious_music) (STV 1.0 0.9091)) +(: cnet_isa_61ccaee26f (IsA antiphony music) (STV 1.0 0.9091)) +(: cnet_isa_be2f188790 (IsA antiphrasis rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_647c93b589 (IsA antipodal opposition) (STV 1.0 0.9091)) +(: cnet_isa_071ac87832 (IsA antipode opposition) (STV 1.0 0.9091)) +(: cnet_isa_5a4798e108 (IsA antipode region) (STV 1.0 0.9091)) +(: cnet_isa_b38e8740e6 (IsA antipope pontiff) (STV 1.0 0.9091)) +(: cnet_isa_f2800f88e0 (IsA antiproton nucleon) (STV 1.0 0.9091)) +(: cnet_isa_77f212f586 (IsA antiprotozoal medicine) (STV 1.0 0.9091)) +(: cnet_isa_f7e118a846 (IsA antipruritic local_anesthetic) (STV 1.0 0.9091)) +(: cnet_isa_47740ec412 (IsA antipyresis medication) (STV 1.0 0.9091)) +(: cnet_isa_e499d173a4 (IsA antipyretic medicine) (STV 1.0 0.9091)) +(: cnet_isa_f9c46a3373 (IsA antiquark elementary_particle) (STV 1.0 0.9091)) +(: cnet_isa_45c5faede3 (IsA antiquary expert) (STV 1.0 0.9091)) +(: cnet_isa_1c37032d28 (IsA antique antiquity) (STV 1.0 0.9091)) +(: cnet_isa_426df77877 (IsA antique old_thing) (STV 1.0 0.9091)) +(: cnet_isa_6f9a9d878f (IsA antiquity artifact) (STV 1.0 0.9091)) +(: cnet_isa_4521b8a108 (IsA antiquity period) (STV 1.0 0.9091)) +(: cnet_isa_98d8d731a8 (IsA antiredeposition natural_process) (STV 1.0 0.9091)) +(: cnet_isa_e17f3f2c93 (IsA antirrhinum asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4c9a42a19e (IsA antisepsis organic_process) (STV 1.0 0.9091)) +(: cnet_isa_0c8ea9674f (IsA antiseptic medicine) (STV 1.0 0.9091)) +(: cnet_isa_7870eba0da (IsA antiserum serum) (STV 1.0 0.9091)) +(: cnet_isa_1eb46f5487 (IsA antisocial_personality_disorder personality_disorder) (STV 1.0 0.9091)) +(: cnet_isa_ae6c6310bb (IsA antispasmodic medicine) (STV 1.0 0.9091)) +(: cnet_isa_ad925c46e8 (IsA antistrophe stanza) (STV 1.0 0.9091)) +(: cnet_isa_c476e31f68 (IsA antisyphilitic drug) (STV 1.0 0.9091)) +(: cnet_isa_339fcf0cea (IsA antitauon antilepton) (STV 1.0 0.9091)) +(: cnet_isa_31430e7097 (IsA antithesis rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_f345c79964 (IsA antithesis opposition) (STV 1.0 0.9091)) +(: cnet_isa_46f4556dd1 (IsA antitoxin antibody) (STV 1.0 0.9091)) +(: cnet_isa_44bc4d8736 (IsA antitrade_wind prevailing_wind) (STV 1.0 0.9091)) +(: cnet_isa_669509e974 (IsA antitrade prevailing_wind) (STV 1.0 0.9091)) +(: cnet_isa_903724bf5a (IsA antitrust_case legal_action) (STV 1.0 0.9091)) +(: cnet_isa_d01bf33fc2 (IsA antitrust_legislation law) (STV 1.0 0.9091)) +(: cnet_isa_32a7d414e9 (IsA antitussive medicine) (STV 1.0 0.9091)) +(: cnet_isa_0d3895413b (IsA antitype kind) (STV 1.0 0.9091)) +(: cnet_isa_c979721b0c (IsA antitype representation) (STV 1.0 0.9091)) +(: cnet_isa_98ee68cae9 (IsA antivenin antitoxin) (STV 1.0 0.9091)) +(: cnet_isa_68cbc61cf4 (IsA antiviral medicine) (STV 1.0 0.9091)) +(: cnet_isa_9d14fee22d (IsA antler horn) (STV 1.0 0.9091)) +(: cnet_isa_da79a35bfe (IsA antler_moth noctuid_moth) (STV 1.0 0.9091)) +(: cnet_isa_3c177927b5 (IsA antonym word) (STV 1.0 0.9091)) +(: cnet_isa_b1b65c982f (IsA antonymy semantic_relation) (STV 1.0 0.9091)) +(: cnet_isa_e04374b9ea (IsA antrozous mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_7b3381e3b0 (IsA antrum cavity) (STV 1.0 0.9091)) +(: cnet_isa_598a6822da (IsA ant social_insect) (STV 1.0 0.9339)) +(: cnet_isa_31c96e3749 (IsA anuresis illness) (STV 1.0 0.9091)) +(: cnet_isa_4f9a686db6 (IsA anus orifice) (STV 1.0 0.9091)) +(: cnet_isa_e9b41a2ff3 (IsA anvil block) (STV 1.0 0.9091)) +(: cnet_isa_3c417ef1c8 (IsA anxiety emotion) (STV 1.0 0.9091)) +(: cnet_isa_758a753f3a (IsA anxiety psychological_state) (STV 1.0 0.9091)) +(: cnet_isa_4f62352a35 (IsA anxiety_attack attack) (STV 1.0 0.9091)) +(: cnet_isa_bf441a0df8 (IsA anxiety_disorder mental_disorder) (STV 1.0 0.9091)) +(: cnet_isa_84aa4d8f0b (IsA anxiety_hysteria hysteria) (STV 1.0 0.9091)) +(: cnet_isa_16bc890bd7 (IsA anxiety_neurosis neurosis) (STV 1.0 0.9091)) +(: cnet_isa_738346aadc (IsA anxiousness anxiety) (STV 1.0 0.9091)) +(: cnet_isa_62abfc7274 (IsA any_and_all_bid takeover_bid) (STV 1.0 0.9091)) +(: cnet_isa_0e5593d160 (IsA anzac soldier) (STV 1.0 0.9091)) +(: cnet_isa_59df497409 (IsA ao_dai attire) (STV 1.0 0.9091)) +(: cnet_isa_9143eb32af (IsA aorist tense) (STV 1.0 0.9091)) +(: cnet_isa_ecf855cca4 (IsA aorta artery) (STV 1.0 0.9091)) +(: cnet_isa_26f99a5177 (IsA aortic_aneurysm aneurysm) (STV 1.0 0.9091)) +(: cnet_isa_ee5a59b9f2 (IsA aortic_arch aorta) (STV 1.0 0.9091)) +(: cnet_isa_228174bea8 (IsA aortic_orifice orifice) (STV 1.0 0.9091)) +(: cnet_isa_d9c8e9a156 (IsA aortic_plexus plexus) (STV 1.0 0.9091)) +(: cnet_isa_568218bfe8 (IsA aortic_stenosis stenosis) (STV 1.0 0.9091)) +(: cnet_isa_3ec4170c6d (IsA aortic_stenosis valvular_heart_disease) (STV 1.0 0.9091)) +(: cnet_isa_47667670a5 (IsA aortic_valve semilunar_valve) (STV 1.0 0.9091)) +(: cnet_isa_05a3c73038 (IsA aortitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_d9ee93b858 (IsA aotus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_56bef9d4e2 (IsA aoudad wild_sheep) (STV 1.0 0.9091)) +(: cnet_isa_877e563f84 (IsA apache athapaskan) (STV 1.0 0.9091)) +(: cnet_isa_99c05c8e59 (IsA apache athabascan) (STV 1.0 0.9091)) +(: cnet_isa_d44c994b52 (IsA apache gangster) (STV 1.0 0.9091)) +(: cnet_isa_bf358d1a1d (IsA apache_dance stage_dancing) (STV 1.0 0.9091)) +(: cnet_isa_25bac8c869 (IsA apache_devil_dance ritual_dancing) (STV 1.0 0.9091)) +(: cnet_isa_28384ef9c5 (IsA apadana great_hall) (STV 1.0 0.9091)) +(: cnet_isa_81ace53242 (IsA apalachicola_rosemary shrub) (STV 1.0 0.9091)) +(: cnet_isa_e1a55b4077 (IsA apar armadillo) (STV 1.0 0.9091)) +(: cnet_isa_e875f2911b (IsA apartheid social_policy) (STV 1.0 0.9091)) +(: cnet_isa_7a972fc041 (IsA apartment place_to_live_in) (STV 1.0 0.9524)) +(: cnet_isa_4eaaf726b8 (IsA apartment housing) (STV 1.0 0.9091)) +(: cnet_isa_52bfcade1b (IsA apartment_building building) (STV 1.0 0.9091)) +(: cnet_isa_bb14e12bce (IsA apatetic_coloration protective_coloration) (STV 1.0 0.9091)) +(: cnet_isa_8be577fb25 (IsA apathy passivity) (STV 1.0 0.9091)) +(: cnet_isa_2f5940e2f1 (IsA apathy feeling) (STV 1.0 0.9091)) +(: cnet_isa_d1ba3c2647 (IsA apatite mineral) (STV 1.0 0.9091)) +(: cnet_isa_eb92ef972c (IsA apatosaur sauropod) (STV 1.0 0.9091)) +(: cnet_isa_0c2ee45409 (IsA apatura arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_dcf53136a9 (IsA apc medicine) (STV 1.0 0.9091)) +(: cnet_isa_d8127f0b6f (IsA ape primate) (STV 1.0 0.9091)) +(: cnet_isa_884166134a (IsA ape_man wild_man) (STV 1.0 0.9091)) +(: cnet_isa_89c540cf48 (IsA apercu outline) (STV 1.0 0.9091)) +(: cnet_isa_b137fb3fbc (IsA aperea cavy) (STV 1.0 0.9091)) +(: cnet_isa_c038cf3a67 (IsA aperitif alcohol) (STV 1.0 0.9091)) +(: cnet_isa_15bebafc93 (IsA aperture opening) (STV 1.0 0.9091)) +(: cnet_isa_7b6099ed9b (IsA aperture regulator) (STV 1.0 0.9091)) +(: cnet_isa_adabbf6856 (IsA aperture hole) (STV 1.0 0.9091)) +(: cnet_isa_b82b59482b (IsA apery impersonation) (STV 1.0 0.9091)) +(: cnet_isa_d90f87523e (IsA apetalous_flower flower) (STV 1.0 0.9091)) +(: cnet_isa_a3e9981d48 (IsA apex celestial_point) (STV 1.0 0.9091)) +(: cnet_isa_a1abe862a0 (IsA apgar_score assay) (STV 1.0 0.9091)) +(: cnet_isa_3ebbba7ebd (IsA aphaeresis omission) (STV 1.0 0.9091)) +(: cnet_isa_2499b100d5 (IsA aphagia pathology) (STV 1.0 0.9091)) +(: cnet_isa_53d8a99407 (IsA aphakia visual_impairment) (STV 1.0 0.9091)) +(: cnet_isa_63a4fd870a (IsA aphakic visually_impaired_person) (STV 1.0 0.9091)) +(: cnet_isa_73118dc47a (IsA aphanite rock) (STV 1.0 0.9091)) +(: cnet_isa_a175aa1d32 (IsA aphasia brain_disorder) (STV 1.0 0.9091)) +(: cnet_isa_9a589a18ff (IsA aphasic handicapped_person) (STV 1.0 0.9091)) +(: cnet_isa_fb596750d3 (IsA aphasmidia class) (STV 1.0 0.9091)) +(: cnet_isa_2518e67ae9 (IsA aphelion apoapsis) (STV 1.0 0.9091)) +(: cnet_isa_2729e21d70 (IsA apheresis dialysis) (STV 1.0 0.9091)) +(: cnet_isa_d3e03394fc (IsA aphesis omission) (STV 1.0 0.9091)) +(: cnet_isa_bdd490929c (IsA aphid plant_louse) (STV 1.0 0.9091)) +(: cnet_isa_97fe16052a (IsA aphid_lion larva) (STV 1.0 0.9091)) +(: cnet_isa_24515fb369 (IsA aphididae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_9ab95a9038 (IsA aphidoidea arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_a1e4286e45 (IsA aphis arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_5a9d25a3e1 (IsA aphonia speech_disorder) (STV 1.0 0.9091)) +(: cnet_isa_e4700c773f (IsA aphorism maxim) (STV 1.0 0.9091)) +(: cnet_isa_8e39378e3b (IsA aphorist intellectual) (STV 1.0 0.9091)) +(: cnet_isa_3b55004e5b (IsA aphriza bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_e2b78980da (IsA aphrodisia sexual_desire) (STV 1.0 0.9091)) +(: cnet_isa_79aa320a1b (IsA aphrodisiac stimulant) (STV 1.0 0.9091)) +(: cnet_isa_2462211952 (IsA aphrophora arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_0857439e8b (IsA aphthous_ulcer ulcer) (STV 1.0 0.9091)) +(: cnet_isa_1208238be2 (IsA aphyllanthaceae liliid_monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_c71981595c (IsA aphyllanthe liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ab817be7bc (IsA aphyllophorale fungus_order) (STV 1.0 0.9091)) +(: cnet_isa_0cb7724917 (IsA apiary shed) (STV 1.0 0.9091)) +(: cnet_isa_973cdfcd34 (IsA apical_placentation placentation) (STV 1.0 0.9091)) +(: cnet_isa_3ccde2f544 (IsA apidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_8bdd087ad6 (IsA apio rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0c6c973213 (IsA apis arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_357a61d701 (IsA apishamore saddle_blanket) (STV 1.0 0.9091)) +(: cnet_isa_3ccf1ebfaa (IsA apium rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b2af6c08dd (IsA aplasia dysplasia) (STV 1.0 0.9091)) +(: cnet_isa_697190a83e (IsA aplastic_anemia anemia) (STV 1.0 0.9091)) +(: cnet_isa_4faeaadd2a (IsA aplectrum monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8f493984e2 (IsA aplite igneous_rock) (STV 1.0 0.9091)) +(: cnet_isa_e67f5aa74b (IsA aplodontia mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_14382e09db (IsA aplodontiidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_8a57d1fae1 (IsA aplomb composure) (STV 1.0 0.9091)) +(: cnet_isa_d0b15bc7f4 (IsA aplysia mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_9452979a7c (IsA aplysiidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_48e65c92ba (IsA apnea symptom) (STV 1.0 0.9091)) +(: cnet_isa_c67868c978 (IsA apoapsis celestial_point) (STV 1.0 0.9091)) +(: cnet_isa_1c85c0b442 (IsA apocalypse calamity) (STV 1.0 0.9091)) +(: cnet_isa_19d4581315 (IsA apocope abbreviation) (STV 1.0 0.9091)) +(: cnet_isa_4df3e07529 (IsA apocrine_gland sweat_gland) (STV 1.0 0.9091)) +(: cnet_isa_8f9410a49d (IsA apocrypha sacred_text) (STV 1.0 0.9091)) +(: cnet_isa_a25572f26c (IsA apocynaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_e87cabb7ac (IsA apocynum dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5bf871b985 (IsA apodeme structure) (STV 1.0 0.9091)) +(: cnet_isa_137fcbb31c (IsA apodemus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_c631d13ec9 (IsA apodidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_4b8b17478a (IsA apodiform_bird bird) (STV 1.0 0.9091)) +(: cnet_isa_665be9442c (IsA apodiforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_6ebf03d92b (IsA apoenzyme protein) (STV 1.0 0.9091)) +(: cnet_isa_1a4b8fad1f (IsA apogamy apomixis) (STV 1.0 0.9091)) +(: cnet_isa_d855a2c3b1 (IsA apogee apoapsis) (STV 1.0 0.9091)) +(: cnet_isa_a7954d453c (IsA apogee phase) (STV 1.0 0.9091)) +(: cnet_isa_30e9d3594b (IsA apogon fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_7d4d80e7b0 (IsA apogonidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_617eb2a9ee (IsA apoidea arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_45186e9a80 (IsA apojove apoapsis) (STV 1.0 0.9091)) +(: cnet_isa_989fc165de (IsA apolemia siphonophore) (STV 1.0 0.9091)) +(: cnet_isa_f1f77f761c (IsA apologetic theology) (STV 1.0 0.9091)) +(: cnet_isa_7935237126 (IsA apologist advocate) (STV 1.0 0.9091)) +(: cnet_isa_c1813b5754 (IsA apology example) (STV 1.0 0.9091)) +(: cnet_isa_79c1962485 (IsA apology acknowledgment) (STV 1.0 0.9091)) +(: cnet_isa_054a591211 (IsA apology defense) (STV 1.0 0.9091)) +(: cnet_isa_2f67e7e328 (IsA apomict plant) (STV 1.0 0.9091)) +(: cnet_isa_ad63a02b2a (IsA apomixis asexual_reproduction) (STV 1.0 0.9091)) +(: cnet_isa_314453bac5 (IsA apomorphine morphine) (STV 1.0 0.9091)) +(: cnet_isa_88e9820048 (IsA aponeurosis fascia) (STV 1.0 0.9091)) +(: cnet_isa_9e66f3f5de (IsA apophasis rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_08ea8ddbb2 (IsA apophatism religion) (STV 1.0 0.9091)) +(: cnet_isa_53b4b0924c (IsA apophysis process) (STV 1.0 0.9091)) +(: cnet_isa_176d25f98a (IsA apophysis plant_process) (STV 1.0 0.9091)) +(: cnet_isa_5b069eb94a (IsA apoptosis necrobiosis) (STV 1.0 0.9091)) +(: cnet_isa_4695fe6ff7 (IsA aporocactus caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e0f3227966 (IsA aposelene apoapsis) (STV 1.0 0.9091)) +(: cnet_isa_a4cfca008d (IsA aposematic_coloration protective_coloration) (STV 1.0 0.9091)) +(: cnet_isa_f0c597b0a7 (IsA aposiopesis rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_3181c86e53 (IsA apostasy abandonment) (STV 1.0 0.9091)) +(: cnet_isa_7d86d29186 (IsA apostasy rejection) (STV 1.0 0.9091)) +(: cnet_isa_f09684245d (IsA apostelic_father christian) (STV 1.0 0.9091)) +(: cnet_isa_23f02bbd44 (IsA apostle christian) (STV 1.0 0.9091)) +(: cnet_isa_84ba798009 (IsA apostle disciple) (STV 1.0 0.9091)) +(: cnet_isa_720573ad63 (IsA apostle believer) (STV 1.0 0.9091)) +(: cnet_isa_159fa47c07 (IsA apostleship position) (STV 1.0 0.9091)) +(: cnet_isa_383585aca6 (IsA apostolic_delegate delegate) (STV 1.0 0.9091)) +(: cnet_isa_2232d0e3a6 (IsA apostrophe punctuation) (STV 1.0 0.9091)) +(: cnet_isa_00ef85eb6e (IsA apostrophe rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_edc1e2fb74 (IsA apothecary_unit weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_d3d7f25ede (IsA apothecium ascocarp) (STV 1.0 0.9091)) +(: cnet_isa_e990a0f835 (IsA appalachian american) (STV 1.0 0.9091)) +(: cnet_isa_a8faf3819e (IsA appalling experience) (STV 1.0 0.9091)) +(: cnet_isa_cb64d68bd3 (IsA appaloosa saddle_horse) (STV 1.0 0.9091)) +(: cnet_isa_67d3b1d297 (IsA appanage fringe_benefit) (STV 1.0 0.9091)) +(: cnet_isa_3760e98e07 (IsA appanage grant) (STV 1.0 0.9091)) +(: cnet_isa_2bf66bd34c (IsA apparatchik communist) (STV 1.0 0.9091)) +(: cnet_isa_312af1c4e2 (IsA apparatchik official) (STV 1.0 0.9091)) +(: cnet_isa_49b4b1cb4d (IsA apparatus body_part) (STV 1.0 0.9091)) +(: cnet_isa_9fd7712e97 (IsA apparatus equipment) (STV 1.0 0.9091)) +(: cnet_isa_98ec169bb8 (IsA apparel clothing) (STV 1.0 0.9091)) +(: cnet_isa_2d336ae125 (IsA apparel_chain chain) (STV 1.0 0.9091)) +(: cnet_isa_094eae2eb4 (IsA apparel_industry industry) (STV 1.0 0.9091)) +(: cnet_isa_e18527eef5 (IsA apparent_motion optical_illusion) (STV 1.0 0.9091)) +(: cnet_isa_3b0809ea9c (IsA apparentness obviousness) (STV 1.0 0.9091)) +(: cnet_isa_6ba8e2a294 (IsA apparition appearance) (STV 1.0 0.9091)) +(: cnet_isa_76cea4b9d9 (IsA apparition illusion) (STV 1.0 0.9091)) +(: cnet_isa_00d79a531e (IsA apparition spirit) (STV 1.0 0.9091)) +(: cnet_isa_78050bbbce (IsA appeal attractiveness) (STV 1.0 0.9091)) +(: cnet_isa_2ae67e23d4 (IsA appeal proceeding) (STV 1.0 0.9091)) +(: cnet_isa_ee7e73d2dc (IsA appeal_board board) (STV 1.0 0.9091)) +(: cnet_isa_1b3a6b9ac7 (IsA appearance arrival) (STV 1.0 0.9091)) +(: cnet_isa_ee1e615de7 (IsA appearance attendance) (STV 1.0 0.9091)) +(: cnet_isa_b1d468d70e (IsA appearance pretense) (STV 1.0 0.9091)) +(: cnet_isa_6ddff43996 (IsA appearance quality) (STV 1.0 0.9091)) +(: cnet_isa_bd0d7d69ec (IsA appearance representation) (STV 1.0 0.9091)) +(: cnet_isa_2347f7a0f2 (IsA appearance happening) (STV 1.0 0.9091)) +(: cnet_isa_fc97fbb1bc (IsA appeasement social_control) (STV 1.0 0.9091)) +(: cnet_isa_1557a54838 (IsA appeaser conciliator) (STV 1.0 0.9091)) +(: cnet_isa_7f09a688df (IsA appellant litigant) (STV 1.0 0.9091)) +(: cnet_isa_d699f5b70f (IsA appellate_court court) (STV 1.0 0.9091)) +(: cnet_isa_fc5d5e32e4 (IsA appellation geographical_indication) (STV 1.0 0.9091)) +(: cnet_isa_e66ced994d (IsA appellation name) (STV 1.0 0.9091)) +(: cnet_isa_0887a9b1f9 (IsA appendage part) (STV 1.0 0.9091)) +(: cnet_isa_f8b259416e (IsA appendectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_678e3d2a74 (IsA appendicitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_c49c804652 (IsA appendicle appendage) (STV 1.0 0.9091)) +(: cnet_isa_42801ff9e8 (IsA appendicular_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_4b0bb9c47a (IsA appendicular_skeleton skeletal_structure) (STV 1.0 0.9091)) +(: cnet_isa_dff774ef17 (IsA appendicular_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_1174573eff (IsA appendicularia tunicate) (STV 1.0 0.9091)) +(: cnet_isa_cd3af6023e (IsA appendix process) (STV 1.0 0.9091)) +(: cnet_isa_fada7edc92 (IsA appendix addendum) (STV 1.0 0.9091)) +(: cnet_isa_ed6f230349 (IsA appenzeller_sennenhund sennenhund) (STV 1.0 0.9091)) +(: cnet_isa_d09aee2afe (IsA apperception basic_cognitive_process) (STV 1.0 0.9091)) +(: cnet_isa_96f41cb76a (IsA appetite craving) (STV 1.0 0.9091)) +(: cnet_isa_d31c2b6b1e (IsA appetizer course) (STV 1.0 0.9091)) +(: cnet_isa_38df47bf38 (IsA appetizingness palatability) (STV 1.0 0.9091)) +(: cnet_isa_13047aa559 (IsA applause approval) (STV 1.0 0.9091)) +(: cnet_isa_52c7306d16 (IsA apple computer_brand) (STV 1.0 0.9091)) +(: cnet_isa_ae7806553f (IsA apple edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_9db8357ba6 (IsA apple pome) (STV 1.0 0.9091)) +(: cnet_isa_4584458f92 (IsA apple apple_tree) (STV 1.0 0.9091)) +(: cnet_isa_a3b0efb9f2 (IsA apple_aphid aphid) (STV 1.0 0.9091)) +(: cnet_isa_11fe667513 (IsA apple_blight blight) (STV 1.0 0.9091)) +(: cnet_isa_9cd8b3d654 (IsA apple_butter conserve) (STV 1.0 0.9091)) +(: cnet_isa_4c535c7fa1 (IsA apple_dumpling dumpling) (STV 1.0 0.9091)) +(: cnet_isa_dbadcd31e8 (IsA apple_fritter fritter) (STV 1.0 0.9091)) +(: cnet_isa_5485d88d03 (IsA apple_geranium geranium) (STV 1.0 0.9091)) +(: cnet_isa_944a44c811 (IsA apple_jelly jelly) (STV 1.0 0.9091)) +(: cnet_isa_b18f1343f0 (IsA apple_juice fruit_juice) (STV 1.0 0.9091)) +(: cnet_isa_04f2080cbf (IsA apple_maggot fruit_fly) (STV 1.0 0.9091)) +(: cnet_isa_bfba68c2f1 (IsA apple_mint mint) (STV 1.0 0.9091)) +(: cnet_isa_ce67a8b3bf (IsA apple_of_discord trophy) (STV 1.0 0.9091)) +(: cnet_isa_b5b68c6fc0 (IsA apple_of_peru herb) (STV 1.0 0.9091)) +(: cnet_isa_ad35f8fd47 (IsA apple_orchard grove) (STV 1.0 0.9091)) +(: cnet_isa_56e96467e8 (IsA apple_pie pie) (STV 1.0 0.9091)) +(: cnet_isa_f0552467aa (IsA apple_polisher sycophant) (STV 1.0 0.9091)) +(: cnet_isa_5318a8a841 (IsA apple_rust rust) (STV 1.0 0.9091)) +(: cnet_isa_03e6d2a691 (IsA apple_tart tart) (STV 1.0 0.9091)) +(: cnet_isa_293233c7f6 (IsA apple_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_d72254db60 (IsA apple_tree fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_e2acabffc0 (IsA apple_turnover turnover) (STV 1.0 0.9091)) +(: cnet_isa_7b47ba8a4b (IsA applecart handcart) (STV 1.0 0.9091)) +(: cnet_isa_7db29208bd (IsA applecart planning) (STV 1.0 0.9091)) +(: cnet_isa_c17169293d (IsA applejack brandy) (STV 1.0 0.9091)) +(: cnet_isa_fc970a1b06 (IsA apple not_vegetable) (STV 1.0 0.9091)) +(: cnet_isa_c45975eb7f (IsA applesauce dish) (STV 1.0 0.9091)) +(: cnet_isa_dbab3b1fa1 (IsA applesauce_cake cake) (STV 1.0 0.9091)) +(: cnet_isa_7ed5829cc6 (IsA applet application) (STV 1.0 0.9091)) +(: cnet_isa_736f04123c (IsA applewood fruitwood) (STV 1.0 0.9091)) +(: cnet_isa_848d2bdc7b (IsA appliance device) (STV 1.0 0.9091)) +(: cnet_isa_4951e7e52e (IsA appliance durable) (STV 1.0 0.9091)) +(: cnet_isa_cbf86b83ec (IsA applicability relevance) (STV 1.0 0.9091)) +(: cnet_isa_4ba2695ea0 (IsA applicant person) (STV 1.0 0.9091)) +(: cnet_isa_43d2902522 (IsA application piece_of_software) (STV 1.0 0.9091)) +(: cnet_isa_e50791bf42 (IsA application action) (STV 1.0 0.9091)) +(: cnet_isa_98ba337494 (IsA application effort) (STV 1.0 0.9091)) +(: cnet_isa_7fe3e9f85c (IsA application manual_labor) (STV 1.0 0.9091)) +(: cnet_isa_a86117ed68 (IsA application use) (STV 1.0 0.9091)) +(: cnet_isa_200869cfc8 (IsA application program) (STV 1.0 0.9091)) +(: cnet_isa_d1a547bf28 (IsA application request) (STV 1.0 0.9091)) +(: cnet_isa_6e7ef3e10a (IsA application_form form) (STV 1.0 0.9091)) +(: cnet_isa_e00b10209e (IsA application_oriented_language source_language) (STV 1.0 0.9091)) +(: cnet_isa_ef5fe0fb9b (IsA applicator device) (STV 1.0 0.9091)) +(: cnet_isa_48d5fd7b56 (IsA applied_mathematic mathematic) (STV 1.0 0.9091)) +(: cnet_isa_ce62697198 (IsA applied_psychology psychology) (STV 1.0 0.9091)) +(: cnet_isa_0621ad3e6c (IsA applique sewing) (STV 1.0 0.9091)) +(: cnet_isa_695de768bf (IsA appointee official) (STV 1.0 0.9091)) +(: cnet_isa_0f7e53a70f (IsA appointee person) (STV 1.0 0.9091)) +(: cnet_isa_2b233f8d7c (IsA appointment decision) (STV 1.0 0.9091)) +(: cnet_isa_0bfcc4bd67 (IsA appointment occupation) (STV 1.0 0.9091)) +(: cnet_isa_80e792c4be (IsA appointment furnishing) (STV 1.0 0.9091)) +(: cnet_isa_3c0809b11e (IsA appointment disposal) (STV 1.0 0.9091)) +(: cnet_isa_5569c1cc73 (IsA appointment_book book) (STV 1.0 0.9091)) +(: cnet_isa_61dbb56271 (IsA appointment artifact_of_busy_society) (STV 1.0 0.9091)) +(: cnet_isa_3422f83b4d (IsA apposition growth) (STV 1.0 0.9091)) +(: cnet_isa_ab8b94a78a (IsA apposition modification) (STV 1.0 0.9091)) +(: cnet_isa_bb1bef1129 (IsA appraisal estimate) (STV 1.0 0.9091)) +(: cnet_isa_6a64a3e785 (IsA appraisal classification) (STV 1.0 0.9091)) +(: cnet_isa_ac1c8d4d5f (IsA appraisal commercial_document) (STV 1.0 0.9091)) +(: cnet_isa_8d23d3fe4d (IsA appraiser critic) (STV 1.0 0.9091)) +(: cnet_isa_310104f0aa (IsA appraiser evaluator) (STV 1.0 0.9091)) +(: cnet_isa_0602de9d3c (IsA appreciation increase) (STV 1.0 0.9091)) +(: cnet_isa_13c0549026 (IsA appreciation understanding) (STV 1.0 0.9091)) +(: cnet_isa_c66ef306da (IsA appreciation thank) (STV 1.0 0.9091)) +(: cnet_isa_b34677cd6c (IsA appreciator person) (STV 1.0 0.9091)) +(: cnet_isa_7740ec607b (IsA apprehender person) (STV 1.0 0.9091)) +(: cnet_isa_ac64c5987c (IsA apprehension capture) (STV 1.0 0.9091)) +(: cnet_isa_a57f3b4886 (IsA apprehension expectation) (STV 1.0 0.9091)) +(: cnet_isa_2ab234fd07 (IsA apprehension fear) (STV 1.0 0.9091)) +(: cnet_isa_f3dac13a35 (IsA apprentice novice) (STV 1.0 0.9091)) +(: cnet_isa_e9d60013ed (IsA apprenticeship position) (STV 1.0 0.9091)) +(: cnet_isa_578d28c2ca (IsA appro approval) (STV 1.0 0.9091)) +(: cnet_isa_750b04f7af (IsA approach conceptualization) (STV 1.0 0.9091)) +(: cnet_isa_812abbb335 (IsA approach motion) (STV 1.0 0.9091)) +(: cnet_isa_e38197267c (IsA approach similarity) (STV 1.0 0.9091)) +(: cnet_isa_f157a82266 (IsA approach timing) (STV 1.0 0.9091)) +(: cnet_isa_4901438e8d (IsA approach movement) (STV 1.0 0.9091)) +(: cnet_isa_c3637ec6b9 (IsA approach golf_stroke) (STV 1.0 0.9091)) +(: cnet_isa_535a7cb12b (IsA approach_path air_lane) (STV 1.0 0.9091)) +(: cnet_isa_ecd7434e3b (IsA approach_trench trench) (STV 1.0 0.9091)) +(: cnet_isa_829c2af905 (IsA approachability friendliness) (STV 1.0 0.9091)) +(: cnet_isa_a9d46c63d6 (IsA approbation approval) (STV 1.0 0.9091)) +(: cnet_isa_e82e9e79f5 (IsA appropriateness propriety) (STV 1.0 0.9091)) +(: cnet_isa_dcb0a5c0cf (IsA appropriateness suitability) (STV 1.0 0.9091)) +(: cnet_isa_01d622f40a (IsA appropriation acquiring) (STV 1.0 0.9091)) +(: cnet_isa_cbb87ed5ec (IsA appropriation money) (STV 1.0 0.9091)) +(: cnet_isa_d5608aeaa0 (IsA appropriation_bill bill) (STV 1.0 0.9091)) +(: cnet_isa_20450f38c3 (IsA appropriator acquirer) (STV 1.0 0.9091)) +(: cnet_isa_e4ab2ab7f1 (IsA approval message) (STV 1.0 0.9091)) +(: cnet_isa_58db3df5c8 (IsA approval liking) (STV 1.0 0.9091)) +(: cnet_isa_c787fd392e (IsA approval acceptance) (STV 1.0 0.9091)) +(: cnet_isa_0549a8f640 (IsA approver authority) (STV 1.0 0.9091)) +(: cnet_isa_f036d1f2b8 (IsA approximate_range scope) (STV 1.0 0.9091)) +(: cnet_isa_0309dfa3e0 (IsA approximation joining) (STV 1.0 0.9091)) +(: cnet_isa_a5f6bf9c9a (IsA approximation similarity) (STV 1.0 0.9091)) +(: cnet_isa_febb5643b9 (IsA approximation version) (STV 1.0 0.9091)) +(: cnet_isa_1eb246df00 (IsA apraxia brain_disorder) (STV 1.0 0.9091)) +(: cnet_isa_089553e46e (IsA apricot edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_6465d9150d (IsA apricot fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_98fea32029 (IsA apricot_bar fruit_bar) (STV 1.0 0.9091)) +(: cnet_isa_4226703dcb (IsA apricot_sauce sauce) (STV 1.0 0.9091)) +(: cnet_isa_7ad899d6d3 (IsA april gregorian_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_9502be0f25 (IsA april_fool practical_joke) (STV 1.0 0.9091)) +(: cnet_isa_a37b18d89c (IsA april_fool butt) (STV 1.0 0.9091)) +(: cnet_isa_999fe5255b (IsA april_fool day) (STV 1.0 0.9091)) +(: cnet_isa_76a92b8de3 (IsA apron paved_surface) (STV 1.0 0.9091)) +(: cnet_isa_256f3f2c9a (IsA apron protective_garment) (STV 1.0 0.9091)) +(: cnet_isa_fe5bb70267 (IsA apron site) (STV 1.0 0.9091)) +(: cnet_isa_249dee879b (IsA apron_string cord) (STV 1.0 0.9091)) +(: cnet_isa_6d2176b84e (IsA apse recess) (STV 1.0 0.9091)) +(: cnet_isa_22655338ca (IsA aptenodyte bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_35e7aa7bf9 (IsA apterygidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_13d1503ff7 (IsA apterygiforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_f2f977249c (IsA aptitude ability) (STV 1.0 0.9091)) +(: cnet_isa_8f80cdb607 (IsA aptness appropriateness) (STV 1.0 0.9091)) +(: cnet_isa_8e94a729de (IsA aptness disposition) (STV 1.0 0.9091)) +(: cnet_isa_9ba3580f7e (IsA apus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_0ecb58f01b (IsA aqua_regia acid) (STV 1.0 0.9091)) +(: cnet_isa_99d57c668d (IsA aqua_vitae liquor) (STV 1.0 0.9091)) +(: cnet_isa_b4c2f09cae (IsA aquaculture cultivation) (STV 1.0 0.9091)) +(: cnet_isa_9c2664142c (IsA aquamarine beryl) (STV 1.0 0.9091)) +(: cnet_isa_b56c02308c (IsA aquamarine transparent_gem) (STV 1.0 0.9091)) +(: cnet_isa_8872a7af03 (IsA aquanaut skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_cd3f94de98 (IsA aquaphobia simple_phobia) (STV 1.0 0.9091)) +(: cnet_isa_35e14d5fa1 (IsA aquaplane board) (STV 1.0 0.9091)) +(: cnet_isa_b8f9574eb0 (IsA aquarium tank) (STV 1.0 0.9091)) +(: cnet_isa_6118179629 (IsA aquarium vivarium) (STV 1.0 0.9091)) +(: cnet_isa_fb0ef69109 (IsA aquatic plant) (STV 1.0 0.9091)) +(: cnet_isa_202361e4a9 (IsA aquatic_bird bird) (STV 1.0 0.9091)) +(: cnet_isa_b1dfae3ea0 (IsA aquatic_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_56dd010874 (IsA aquatic_mammal placental) (STV 1.0 0.9091)) +(: cnet_isa_f8aa2479f6 (IsA aquatic_plant vascular_plant) (STV 1.0 0.9091)) +(: cnet_isa_b7a133c476 (IsA aquatic_vertebrate vertebrate) (STV 1.0 0.9091)) +(: cnet_isa_89481a6761 (IsA aquatint engraving) (STV 1.0 0.9091)) +(: cnet_isa_30729ed152 (IsA aquatint etching) (STV 1.0 0.9091)) +(: cnet_isa_561d9e7f37 (IsA aquavit liquor) (STV 1.0 0.9091)) +(: cnet_isa_0fc0e0ab70 (IsA aqueduct conduit) (STV 1.0 0.9091)) +(: cnet_isa_a600c37d37 (IsA aqueous_humor liquid_body_substance) (STV 1.0 0.9091)) +(: cnet_isa_7838619d5e (IsA aqueous_solution solution) (STV 1.0 0.9091)) +(: cnet_isa_67cebaed2b (IsA aquifer geological_formation) (STV 1.0 0.9091)) +(: cnet_isa_bd2a38176c (IsA aquifoliaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_0d2354aaa4 (IsA aquila bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_8881786164 (IsA ara bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_ad472a0f71 (IsA arab_league world_organization) (STV 1.0 0.9091)) +(: cnet_isa_eca94a5f1e (IsA arabesque decoration) (STV 1.0 0.9091)) +(: cnet_isa_259c7c58da (IsA arabesque ballet_position) (STV 1.0 0.9091)) +(: cnet_isa_da31adbcb0 (IsA arabian saddle_horse) (STV 1.0 0.9091)) +(: cnet_isa_ffd3b5a141 (IsA arabian semite) (STV 1.0 0.9091)) +(: cnet_isa_3d8ec3ee3d (IsA arabian_camel camel) (STV 1.0 0.9091)) +(: cnet_isa_48a755f938 (IsA arabian_coffee coffee) (STV 1.0 0.9091)) +(: cnet_isa_ec0fbdf26f (IsA arabian_jasmine jasmine) (STV 1.0 0.9091)) +(: cnet_isa_6b5a4b1c9d (IsA arabic semitic) (STV 1.0 0.9091)) +(: cnet_isa_69115e6054 (IsA arabic_alphabet alphabet) (STV 1.0 0.9091)) +(: cnet_isa_bcf362a8c9 (IsA arabic_alphabet unicameral_script) (STV 1.0 0.9091)) +(: cnet_isa_949a075a91 (IsA arabic_numeral numeral) (STV 1.0 0.9091)) +(: cnet_isa_0b7d11ad46 (IsA arabidopsis dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_74570f7510 (IsA arabidopsis_lyrata cress) (STV 1.0 0.9091)) +(: cnet_isa_b4cbae7cad (IsA arabidopsis_thaliana cress) (STV 1.0 0.9091)) +(: cnet_isa_c4329fe851 (IsA arability quality) (STV 1.0 0.9091)) +(: cnet_isa_3133d01a33 (IsA arabis dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_cf0a18eb23 (IsA arabist scholar) (STV 1.0 0.9091)) +(: cnet_isa_9f0d12a779 (IsA araceae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_6e6ee93792 (IsA arachis rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_eb66354534 (IsA arachnid arthropod) (STV 1.0 0.9091)) +(: cnet_isa_8ae25c8add (IsA arachnida class) (STV 1.0 0.9091)) +(: cnet_isa_c3a2fd1e10 (IsA arachnoid meninx) (STV 1.0 0.9091)) +(: cnet_isa_3e7a7975be (IsA arachnophobia phobia) (STV 1.0 0.9091)) +(: cnet_isa_3532c27a31 (IsA arachnophobia zoophobia) (STV 1.0 0.9091)) +(: cnet_isa_8c79955d38 (IsA aragonite mineral) (STV 1.0 0.9091)) +(: cnet_isa_aa227c0047 (IsA arale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_1a954478f9 (IsA aralia woody_plant) (STV 1.0 0.9091)) +(: cnet_isa_04b1f230c5 (IsA araliaceae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_4d76b4d5d8 (IsA aramaean semite) (STV 1.0 0.9091)) +(: cnet_isa_24a532c9e0 (IsA aramaic script) (STV 1.0 0.9091)) +(: cnet_isa_f319a72684 (IsA aramaic semitic) (STV 1.0 0.9091)) +(: cnet_isa_d31dfc175a (IsA arame seaweed) (STV 1.0 0.9091)) +(: cnet_isa_317acc603a (IsA aramus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_d76b29d153 (IsA aranea arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_de3b9fdbf1 (IsA araneae animal_order) (STV 1.0 0.9091)) +(: cnet_isa_3f8a4feb00 (IsA arapaho algonquian) (STV 1.0 0.9091)) +(: cnet_isa_71d46fa204 (IsA arapahoe algonquin) (STV 1.0 0.9091)) +(: cnet_isa_5bbee956c0 (IsA arapahoe buffalo_indian) (STV 1.0 0.9091)) +(: cnet_isa_bb5d06f14d (IsA arariba zebrawood) (STV 1.0 0.9091)) +(: cnet_isa_2f846d646f (IsA araroba powder) (STV 1.0 0.9091)) +(: cnet_isa_07c62df170 (IsA araucaria conifer) (STV 1.0 0.9091)) +(: cnet_isa_00774ef363 (IsA araucariaceae gymnosperm_family) (STV 1.0 0.9091)) +(: cnet_isa_294032cabe (IsA araujia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1870738ff0 (IsA arawak amerind) (STV 1.0 0.9091)) +(: cnet_isa_bf7f3fbae0 (IsA arawakan native_american) (STV 1.0 0.9091)) +(: cnet_isa_4650310650 (IsA arbiter evaluator) (STV 1.0 0.9091)) +(: cnet_isa_1a36b734ad (IsA arbiter expert) (STV 1.0 0.9091)) +(: cnet_isa_e207df17ee (IsA arbitrage investing) (STV 1.0 0.9091)) +(: cnet_isa_306317c6b2 (IsA arbitrageur businessman) (STV 1.0 0.9091)) +(: cnet_isa_0b75654c53 (IsA arbitration judgment) (STV 1.0 0.9091)) +(: cnet_isa_a9138d1758 (IsA arbitration mediation) (STV 1.0 0.9091)) +(: cnet_isa_5d64230145 (IsA arbitration_clause article) (STV 1.0 0.9091)) +(: cnet_isa_c144b11287 (IsA arbor framework) (STV 1.0 0.9091)) +(: cnet_isa_efbabf4421 (IsA arbor tree) (STV 1.0 0.9091)) +(: cnet_isa_ddccea6ecb (IsA arbor_day day) (STV 1.0 0.9091)) +(: cnet_isa_86ae4e9d82 (IsA arboreal_salamander climbing_salamander) (STV 1.0 0.9091)) +(: cnet_isa_ec85a62709 (IsA arborescent_plant woody_plant) (STV 1.0 0.9091)) +(: cnet_isa_20fcf9f231 (IsA arboretum facility) (STV 1.0 0.9091)) +(: cnet_isa_d2ac4e9dc4 (IsA arboriculture farming) (STV 1.0 0.9091)) +(: cnet_isa_84e0b645ef (IsA arborolatry worship) (STV 1.0 0.9091)) +(: cnet_isa_e9d95e253d (IsA arborvitae conifer) (STV 1.0 0.9091)) +(: cnet_isa_87b130c8ee (IsA arbovirus virus) (STV 1.0 0.9091)) +(: cnet_isa_a4482828d6 (IsA arbutus shrub) (STV 1.0 0.9091)) +(: cnet_isa_6a23f501b6 (IsA arc curve) (STV 1.0 0.9091)) +(: cnet_isa_a6ab078d04 (IsA arc_lamp electric_lamp) (STV 1.0 0.9091)) +(: cnet_isa_1bc3a7eb32 (IsA arca mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_443991cf4b (IsA arcade passageway) (STV 1.0 0.9091)) +(: cnet_isa_2f6f3371f6 (IsA arcade structure) (STV 1.0 0.9091)) +(: cnet_isa_9b58ba4d4a (IsA arcadian hellene) (STV 1.0 0.9091)) +(: cnet_isa_dfdb160913 (IsA arcadic ancient_greek) (STV 1.0 0.9091)) +(: cnet_isa_f0e81db8bc (IsA arcado_cyprian citizenry) (STV 1.0 0.9091)) +(: cnet_isa_9a7f46ab3c (IsA arcella protozoan) (STV 1.0 0.9091)) +(: cnet_isa_c9177dc49f (IsA arcellidae protoctist_family) (STV 1.0 0.9091)) +(: cnet_isa_34c2f614c4 (IsA arceuthobium dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c95e8d87eb (IsA arch structure) (STV 1.0 0.9091)) +(: cnet_isa_ff4f7ec0a3 (IsA arch entrance) (STV 1.0 0.9091)) +(: cnet_isa_5ec322b3c8 (IsA arch skeletal_structure) (STV 1.0 0.9091)) +(: cnet_isa_8f160925a4 (IsA arch curve) (STV 1.0 0.9091)) +(: cnet_isa_60ac971021 (IsA arch_support support) (STV 1.0 0.9091)) +(: cnet_isa_7ad5fac10d (IsA archaebacteria moneran) (STV 1.0 0.9091)) +(: cnet_isa_e4872d4787 (IsA archaeopteryx bird) (STV 1.0 0.9091)) +(: cnet_isa_17a2805ce8 (IsA archaeornis bird) (STV 1.0 0.9091)) +(: cnet_isa_ebc1d1e915 (IsA archaeornithe class) (STV 1.0 0.9091)) +(: cnet_isa_bfa5528ebd (IsA archaism formulation) (STV 1.0 0.9091)) +(: cnet_isa_3043b2e831 (IsA archaist person) (STV 1.0 0.9091)) +(: cnet_isa_80c5f4f236 (IsA archangel angel) (STV 1.0 0.9091)) +(: cnet_isa_9d8fd3a889 (IsA archbishop bishop) (STV 1.0 0.9091)) +(: cnet_isa_f86b465e09 (IsA archbishopric jurisdiction) (STV 1.0 0.9091)) +(: cnet_isa_3a98c714db (IsA archdeacon clergyman) (STV 1.0 0.9091)) +(: cnet_isa_74dbfc46ac (IsA archdeaconry jurisdiction) (STV 1.0 0.9091)) +(: cnet_isa_14b6c56f07 (IsA archdiocese diocese) (STV 1.0 0.9091)) +(: cnet_isa_1749b416d7 (IsA archduchess princess) (STV 1.0 0.9091)) +(: cnet_isa_e118c4145f (IsA archduchy domain) (STV 1.0 0.9091)) +(: cnet_isa_7cc241bdd0 (IsA archduke prince) (STV 1.0 0.9091)) +(: cnet_isa_1f08f8b1fd (IsA archegonium plant_organ) (STV 1.0 0.9091)) +(: cnet_isa_b3ef695c43 (IsA archenteron cavity) (STV 1.0 0.9091)) +(: cnet_isa_15857a09f2 (IsA archeological_remain relic) (STV 1.0 0.9091)) +(: cnet_isa_394d8cf36e (IsA archeological_remain remain) (STV 1.0 0.9091)) +(: cnet_isa_40de9594aa (IsA archeologist anthropologist) (STV 1.0 0.9091)) +(: cnet_isa_a0c8668174 (IsA archeology anthropology) (STV 1.0 0.9091)) +(: cnet_isa_c82744e557 (IsA archer person) (STV 1.0 0.9091)) +(: cnet_isa_f47e96a768 (IsA archer expert) (STV 1.0 0.9091)) +(: cnet_isa_0c537d4d61 (IsA archerfish percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_3559f49791 (IsA archery sport) (STV 1.0 0.9091)) +(: cnet_isa_56ef8ffa36 (IsA archespore cell) (STV 1.0 0.9091)) +(: cnet_isa_98b80c06e0 (IsA archiannelid annelid) (STV 1.0 0.9091)) +(: cnet_isa_e7ef186144 (IsA archiannelida class) (STV 1.0 0.9091)) +(: cnet_isa_85196a317b (IsA archidiaconate rank) (STV 1.0 0.9091)) +(: cnet_isa_831dfeae46 (IsA archidiskidon mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_44bf8bc901 (IsA archil lecanora) (STV 1.0 0.9091)) +(: cnet_isa_4687d5b126 (IsA archilochus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_0f6d319010 (IsA archilochus_colubris hummingbird) (STV 1.0 0.9091)) +(: cnet_isa_06e9dca532 (IsA archimede_principle law) (STV 1.0 0.9091)) +(: cnet_isa_0173737c01 (IsA archine linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_0457ab58cd (IsA archipallium cerebral_cortex) (STV 1.0 0.9091)) +(: cnet_isa_e543819e9c (IsA archipelago land) (STV 1.0 0.9091)) +(: cnet_isa_a1ee32ee26 (IsA architect creator) (STV 1.0 0.9091)) +(: cnet_isa_176452061a (IsA architectonic science) (STV 1.0 0.9091)) +(: cnet_isa_162f567921 (IsA architectural_engineering engineering) (STV 1.0 0.9091)) +(: cnet_isa_faea322b6a (IsA architectural_ornament decoration) (STV 1.0 0.9091)) +(: cnet_isa_c769f9f16a (IsA architectural_style art_form) (STV 1.0 0.9091)) +(: cnet_isa_2be2a88d29 (IsA architecture profession) (STV 1.0 0.9091)) +(: cnet_isa_b4d40d5e9c (IsA architecture building) (STV 1.0 0.9091)) +(: cnet_isa_373d685211 (IsA architecture discipline) (STV 1.0 0.9091)) +(: cnet_isa_071922ff32 (IsA architecture fine_art) (STV 1.0 0.9091)) +(: cnet_isa_2544d6edfc (IsA architeuthis squid) (STV 1.0 0.9091)) +(: cnet_isa_edde3e8061 (IsA architrave molding) (STV 1.0 0.9091)) +(: cnet_isa_a671bbcd20 (IsA architrave support) (STV 1.0 0.9091)) +(: cnet_isa_7e95b8b16a (IsA archive depository) (STV 1.0 0.9091)) +(: cnet_isa_f04aebb2f7 (IsA archive collection) (STV 1.0 0.9091)) +(: cnet_isa_3f4a1841cd (IsA archivist collector) (STV 1.0 0.9091)) +(: cnet_isa_27270370e9 (IsA archosargus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_f216fd95d5 (IsA archosaur diapsid) (STV 1.0 0.9091)) +(: cnet_isa_98191ff9a3 (IsA archosauria class) (STV 1.0 0.9091)) +(: cnet_isa_81830e1e6a (IsA archpriest priest) (STV 1.0 0.9091)) +(: cnet_isa_cd8c77e3d1 (IsA arcidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_ede808b523 (IsA arctic overshoe) (STV 1.0 0.9091)) +(: cnet_isa_8d56d2d5b2 (IsA arctic_char char) (STV 1.0 0.9091)) +(: cnet_isa_84e2dc507e (IsA arctic_fox fox) (STV 1.0 0.9091)) +(: cnet_isa_58f8c03413 (IsA arctic_ground_squirrel ground_squirrel) (STV 1.0 0.9091)) +(: cnet_isa_723205c280 (IsA arctic_willow willow) (STV 1.0 0.9091)) +(: cnet_isa_140aa004f5 (IsA arctictis mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_a820a1bda8 (IsA arctiid moth) (STV 1.0 0.9091)) +(: cnet_isa_9cea48e0bc (IsA arctiidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_86e7e462c2 (IsA arctium asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_19410cb3d2 (IsA arctocebus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_355c303321 (IsA arctocephalus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_24fc994390 (IsA arctonyx mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_bc0a486c30 (IsA arctostaphylo dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_31b3c79f0e (IsA arctotis asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_94e36286a3 (IsA arcuate_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_e571493d96 (IsA arcuate_artery_of_kidney artery) (STV 1.0 0.9091)) +(: cnet_isa_af25db81a3 (IsA arcuate_vein_of_kidney vein) (STV 1.0 0.9091)) +(: cnet_isa_fc26b11b50 (IsA arcus cornea) (STV 1.0 0.9091)) +(: cnet_isa_ec72cb56e9 (IsA ardea bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_a600603d1c (IsA ardeb dry_unit) (STV 1.0 0.9091)) +(: cnet_isa_7798614206 (IsA ardeidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_0b330f5eb9 (IsA ardisia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5ed6c36fdb (IsA ardor eagerness) (STV 1.0 0.9091)) +(: cnet_isa_2713a1d543 (IsA ardor love) (STV 1.0 0.9091)) +(: cnet_isa_cdcd752046 (IsA ardor passion) (STV 1.0 0.9091)) +(: cnet_isa_edbe954a44 (IsA arduousness effortfulness) (STV 1.0 0.9091)) +(: cnet_isa_68f01fdc10 (IsA are area_unit) (STV 1.0 0.9091)) +(: cnet_isa_9f3f7c3bcf (IsA area place) (STV 1.0 0.9091)) +(: cnet_isa_cb90efabb1 (IsA area structure) (STV 1.0 0.9091)) +(: cnet_isa_26781b8d0f (IsA area extent) (STV 1.0 0.9091)) +(: cnet_isa_2fc34ee987 (IsA area body_part) (STV 1.0 0.9091)) +(: cnet_isa_0fb2414cbd (IsA area topic) (STV 1.0 0.9091)) +(: cnet_isa_599db16244 (IsA area region) (STV 1.0 0.9091)) +(: cnet_isa_443c14115f (IsA area_code code) (STV 1.0 0.9091)) +(: cnet_isa_4992b8d134 (IsA area_of_cardiac_dullness area) (STV 1.0 0.9091)) +(: cnet_isa_f50b37bfa2 (IsA area_unit unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_b498c8e27d (IsA areaway passageway) (STV 1.0 0.9091)) +(: cnet_isa_f652edfbb8 (IsA areca feather_palm) (STV 1.0 0.9091)) +(: cnet_isa_1e40324609 (IsA arecidae class) (STV 1.0 0.9091)) +(: cnet_isa_e03758b88c (IsA areflexia symptom) (STV 1.0 0.9091)) +(: cnet_isa_adad8f79ac (IsA arena area) (STV 1.0 0.9091)) +(: cnet_isa_f38d53c734 (IsA arena playing_field) (STV 1.0 0.9091)) +(: cnet_isa_62226b7e2e (IsA arena_theater theater) (STV 1.0 0.9091)) +(: cnet_isa_5d674bc5d0 (IsA arenaceous_rock sedimentary_rock) (STV 1.0 0.9091)) +(: cnet_isa_b7d7283f02 (IsA arenaria bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_8cdcdb7a2d (IsA arenaria caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4f81ee11e4 (IsA arenaviridae arbovirus) (STV 1.0 0.9091)) +(: cnet_isa_92d3629fa9 (IsA arenavirus animal_virus) (STV 1.0 0.9091)) +(: cnet_isa_109d0ce974 (IsA arenga plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_093e55d53c (IsA areola area) (STV 1.0 0.9091)) +(: cnet_isa_c0447e90d7 (IsA areola interstice) (STV 1.0 0.9091)) +(: cnet_isa_afba899dde (IsA areolar_tissue connective_tissue) (STV 1.0 0.9091)) +(: cnet_isa_09b411a019 (IsA areopagite member) (STV 1.0 0.9091)) +(: cnet_isa_9e96698443 (IsA areopagus assembly) (STV 1.0 0.9091)) +(: cnet_isa_0f35ad3aaa (IsA arete ridge) (STV 1.0 0.9091)) +(: cnet_isa_013df241a3 (IsA arethusa orchid) (STV 1.0 0.9091)) +(: cnet_isa_5ba9b947ee (IsA argali wild_sheep) (STV 1.0 0.9091)) +(: cnet_isa_111261a4a6 (IsA argasidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_f44dd82a21 (IsA argent tincture) (STV 1.0 0.9091)) +(: cnet_isa_252de6eb63 (IsA argentina fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_812db844ff (IsA argentine soft_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_6371640320 (IsA argentine_hemorrhagic_fever hemorrhagic_fever) (STV 1.0 0.9091)) +(: cnet_isa_396f1478b3 (IsA argentine_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_cd33c77143 (IsA argentinian south_american) (STV 1.0 0.9091)) +(: cnet_isa_5e5f61b288 (IsA argentinidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_66a40af31d (IsA argentinosaur dinosaur) (STV 1.0 0.9091)) +(: cnet_isa_c4d03a32d3 (IsA argentite mineral) (STV 1.0 0.9091)) +(: cnet_isa_8a0f49efdf (IsA argil clay) (STV 1.0 0.9091)) +(: cnet_isa_03f299aaf1 (IsA argillaceous_rock sedimentary_rock) (STV 1.0 0.9091)) +(: cnet_isa_1371743a2e (IsA argillite sedimentary_rock) (STV 1.0 0.9091)) +(: cnet_isa_02c8c3d461 (IsA arginine essential_amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_b37150b4b7 (IsA argiope arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_723b9a48c1 (IsA argiopidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_05a78b789b (IsA argive hellene) (STV 1.0 0.9091)) +(: cnet_isa_1ee0ee80f9 (IsA argon inert_gas) (STV 1.0 0.9091)) +(: cnet_isa_0c6c5bd2f1 (IsA argon chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_529ba2f2de (IsA argon noble_gas) (STV 1.0 0.9091)) +(: cnet_isa_3e5f1f81e9 (IsA argonaut adventurer) (STV 1.0 0.9091)) +(: cnet_isa_ecec525548 (IsA argonauta mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_07257ae6aa (IsA argonautidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_50cbb7913f (IsA argosy fleet) (STV 1.0 0.9091)) +(: cnet_isa_3466b4f5d8 (IsA argument variable) (STV 1.0 0.9091)) +(: cnet_isa_191a271733 (IsA argument discussion) (STV 1.0 0.9091)) +(: cnet_isa_a23873cd0a (IsA argument evidence) (STV 1.0 0.9091)) +(: cnet_isa_a6afaf4e82 (IsA argument summary) (STV 1.0 0.9091)) +(: cnet_isa_7be0385565 (IsA argumentation reasoning) (STV 1.0 0.9091)) +(: cnet_isa_e9e3886209 (IsA argus pheasant) (STV 1.0 0.9091)) +(: cnet_isa_4a0571b6d8 (IsA argus giant) (STV 1.0 0.9091)) +(: cnet_isa_de380b454d (IsA argusianus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_0377e47f08 (IsA argy_bargy controversy) (STV 1.0 0.9091)) +(: cnet_isa_06a1a7eff4 (IsA argyle design) (STV 1.0 0.9091)) +(: cnet_isa_4264d7fa5a (IsA argyle sock) (STV 1.0 0.9091)) +(: cnet_isa_8e441f0ced (IsA argyll gravy_boat) (STV 1.0 0.9091)) +(: cnet_isa_bbf07c65de (IsA argynnis arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_70e9c3a9bd (IsA argyranthemum asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_df6ac56425 (IsA argyreia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c2b0913362 (IsA argyrodite mineral) (STV 1.0 0.9091)) +(: cnet_isa_0c65b26800 (IsA argyrotaenia arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_b7fc4f6824 (IsA argyroxiphium asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_11a4179949 (IsA aria song) (STV 1.0 0.9091)) +(: cnet_isa_fe3585eca9 (IsA arianism heresy) (STV 1.0 0.9091)) +(: cnet_isa_5277d78edf (IsA arianism theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_0043d1ce0d (IsA arianist christian) (STV 1.0 0.9091)) +(: cnet_isa_21489a10bb (IsA aricara caddo) (STV 1.0 0.9091)) +(: cnet_isa_aadf25fea9 (IsA aridity dryness) (STV 1.0 0.9091)) +(: cnet_isa_6fa9a84347 (IsA arietta aria) (STV 1.0 0.9091)) +(: cnet_isa_e877a35a4a (IsA ariidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_8e6aa20f55 (IsA arikara caddo) (STV 1.0 0.9091)) +(: cnet_isa_5b1ffb2397 (IsA aril plant_part) (STV 1.0 0.9091)) +(: cnet_isa_dd192e735e (IsA arilus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_362a23546e (IsA ariocarpus caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b54a3500c2 (IsA ariomma fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_49f91dbdc5 (IsA arioso recitative) (STV 1.0 0.9091)) +(: cnet_isa_7db0d10338 (IsA arisaema monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1007c8dc7a (IsA arisarum monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f71fb94dea (IsA arista process) (STV 1.0 0.9091)) +(: cnet_isa_a345a7ef63 (IsA aristocrat leader) (STV 1.0 0.9091)) +(: cnet_isa_b46eea8b12 (IsA aristolochia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_362221bec8 (IsA aristolochiaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_9c64cfdf40 (IsA aristolochiale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_fbb66c4081 (IsA aristotelean disciple) (STV 1.0 0.9091)) +(: cnet_isa_e74363b727 (IsA aristotelia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c65ca73fcf (IsA aristotelian_logic logic) (STV 1.0 0.9091)) +(: cnet_isa_fa67ebf809 (IsA aristotelianism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_8737440042 (IsA arithmancy divination) (STV 1.0 0.9091)) +(: cnet_isa_269c6b40cd (IsA arithmetic math) (STV 1.0 0.9572)) +(: cnet_isa_81eabbedf1 (IsA arithmetic pure_mathematic) (STV 1.0 0.9091)) +(: cnet_isa_ceb092cafe (IsA arithmetic_mean mean) (STV 1.0 0.9091)) +(: cnet_isa_c5c12bf7bf (IsA arithmetic_operation mathematical_process) (STV 1.0 0.9091)) +(: cnet_isa_c21b77284b (IsA arithmetic_progression progression) (STV 1.0 0.9091)) +(: cnet_isa_5b0f354f90 (IsA arithmetician mathematician) (STV 1.0 0.9091)) +(: cnet_isa_f9a43a35da (IsA arity number) (STV 1.0 0.9091)) +(: cnet_isa_59412ecaa2 (IsA arius fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_8c93dc6750 (IsA arizona state) (STV 1.0 0.9339)) +(: cnet_isa_ad446f7c7e (IsA arizona reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_9f21713e89 (IsA arizona_ash ash) (STV 1.0 0.9091)) +(: cnet_isa_0d55368cd9 (IsA arizona_cypress cypress) (STV 1.0 0.9091)) +(: cnet_isa_f7831fc867 (IsA arizona_state_song arizona) (STV 1.0 0.9091)) +(: cnet_isa_86fcaf9b11 (IsA arizona_sycamore plane_tree) (STV 1.0 0.9091)) +(: cnet_isa_e6b9e82c3b (IsA arizona_white_oak white_oak) (STV 1.0 0.9091)) +(: cnet_isa_dba6d79b98 (IsA arizonian american) (STV 1.0 0.9091)) +(: cnet_isa_ceba876681 (IsA ark boat) (STV 1.0 0.9091)) +(: cnet_isa_d58ba73ada (IsA ark_shell bivalve) (STV 1.0 0.9091)) +(: cnet_isa_b7a41c2c4d (IsA arkansa state) (STV 1.0 0.9524)) +(: cnet_isa_1d5a88f80a (IsA arkansa_kingbird kingbird) (STV 1.0 0.9091)) +(: cnet_isa_e443bd42b6 (IsA arkansa_state_song arkansa) (STV 1.0 0.9091)) +(: cnet_isa_70967b8153 (IsA arkansawyer american) (STV 1.0 0.9091)) +(: cnet_isa_8a006145ea (IsA arm_s_length distance) (STV 1.0 0.9091)) +(: cnet_isa_e1b57b03e5 (IsA arm armrest) (STV 1.0 0.9091)) +(: cnet_isa_fe5e06deaa (IsA arm projection) (STV 1.0 0.9091)) +(: cnet_isa_747a690d2f (IsA arm limb) (STV 1.0 0.9091)) +(: cnet_isa_9981b68c31 (IsA arm_bone long_bone) (STV 1.0 0.9091)) +(: cnet_isa_a103d7400e (IsA arm_exercise exercise) (STV 1.0 0.9091)) +(: cnet_isa_e931ae95c2 (IsA arm_guard protective_garment) (STV 1.0 0.9091)) +(: cnet_isa_710c1b5eb6 (IsA arm_twisting persuasion) (STV 1.0 0.9091)) +(: cnet_isa_64f464963f (IsA armada fleet) (STV 1.0 0.9091)) +(: cnet_isa_ebc4251c8b (IsA armadillidiidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_29d7ba7fc3 (IsA armadillidium arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_6ce1c1927d (IsA armadillo mammal) (STV 1.0 0.9091)) +(: cnet_isa_2a18f0623f (IsA armadillo edentate) (STV 1.0 0.9091)) +(: cnet_isa_5a1401dffa (IsA armageddon battle) (STV 1.0 0.9091)) +(: cnet_isa_fe69635618 (IsA armagnac brandy) (STV 1.0 0.9091)) +(: cnet_isa_2de00096d7 (IsA armament weaponry) (STV 1.0 0.9091)) +(: cnet_isa_1578288961 (IsA armamentarium collection) (STV 1.0 0.9091)) +(: cnet_isa_01d40ee5f1 (IsA armature coil) (STV 1.0 0.9091)) +(: cnet_isa_7797faf13d (IsA armband band) (STV 1.0 0.9091)) +(: cnet_isa_973c3af09b (IsA armband visual_signal) (STV 1.0 0.9091)) +(: cnet_isa_6d9eaaad09 (IsA armchair chair) (STV 1.0 0.9524)) +(: cnet_isa_837d52cdcb (IsA armchair_liberal liberal) (STV 1.0 0.9091)) +(: cnet_isa_d5c59630e7 (IsA armed_force_censorship military_censorship) (STV 1.0 0.9091)) +(: cnet_isa_da72f0330f (IsA armed_force_day day) (STV 1.0 0.9091)) +(: cnet_isa_5cd23619d2 (IsA armed_robbery robbery) (STV 1.0 0.9091)) +(: cnet_isa_881e4e0f54 (IsA armenia very_small_country_in_eurasia) (STV 1.0 0.9091)) +(: cnet_isa_9622174ddc (IsA armenian alphabet) (STV 1.0 0.9091)) +(: cnet_isa_8e664c714d (IsA armenian indo_european) (STV 1.0 0.9091)) +(: cnet_isa_b84ff2cb68 (IsA armenian asiatic) (STV 1.0 0.9091)) +(: cnet_isa_77a129302c (IsA armenian_church church) (STV 1.0 0.9091)) +(: cnet_isa_85a50f1e6a (IsA armenian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_91e5b76937 (IsA armeria dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9315ebf94d (IsA armet helmet) (STV 1.0 0.9091)) +(: cnet_isa_7b6b869009 (IsA armful containerful) (STV 1.0 0.9091)) +(: cnet_isa_5200ecac47 (IsA armhole hole) (STV 1.0 0.9091)) +(: cnet_isa_14b11e5395 (IsA armiger nobleman) (STV 1.0 0.9091)) +(: cnet_isa_49f0b7ef7d (IsA armiger squire) (STV 1.0 0.9091)) +(: cnet_isa_37bf32e837 (IsA armilla bracelet) (STV 1.0 0.9091)) +(: cnet_isa_609df0ffb4 (IsA armillaria fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_5b6a676196 (IsA armillaria_caligata agaric) (STV 1.0 0.9091)) +(: cnet_isa_49001f585f (IsA armillaria_ponderosa agaric) (STV 1.0 0.9091)) +(: cnet_isa_eae8d8ed01 (IsA armillaria_zelleri agaric) (STV 1.0 0.9091)) +(: cnet_isa_736bbe5150 (IsA armillariella fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_e21ffa5aeb (IsA armillary_sphere celestial_globe) (STV 1.0 0.9091)) +(: cnet_isa_74dbaffaa6 (IsA arming mobilization) (STV 1.0 0.9091)) +(: cnet_isa_8d780687d5 (IsA arminian disciple) (STV 1.0 0.9091)) +(: cnet_isa_a7ae5f2632 (IsA arminian_baptist baptist_denomination) (STV 1.0 0.9091)) +(: cnet_isa_baba547748 (IsA arminian_church protestant_denomination) (STV 1.0 0.9091)) +(: cnet_isa_795096b773 (IsA arminianism protestantism) (STV 1.0 0.9091)) +(: cnet_isa_fa57976c53 (IsA armistice peace) (STV 1.0 0.9091)) +(: cnet_isa_1b92f110fc (IsA armlet band) (STV 1.0 0.9091)) +(: cnet_isa_5e82b9c3ed (IsA armoire wardrobe) (STV 1.0 0.9091)) +(: cnet_isa_4e3a92e104 (IsA armor protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_9ac6e1d3ec (IsA armor military_unit) (STV 1.0 0.9091)) +(: cnet_isa_ed1d39bbc2 (IsA armor_plate plate) (STV 1.0 0.9091)) +(: cnet_isa_b947ec51ba (IsA armoracia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2041a51f94 (IsA armored_car armored_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_333f9a6989 (IsA armored_catfish catfish) (STV 1.0 0.9091)) +(: cnet_isa_e1db50cd66 (IsA armored_dinosaur ornithischian) (STV 1.0 0.9091)) +(: cnet_isa_3b3c60c361 (IsA armored_personnel_carrier armored_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_673c4e4cfe (IsA armored_scale scale_insect) (STV 1.0 0.9091)) +(: cnet_isa_1d598d3c02 (IsA armored_searobin sea_robin) (STV 1.0 0.9091)) +(: cnet_isa_af3a9542fe (IsA armored_vehicle self_propelled_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_277011f64d (IsA armorer manufacturer) (STV 1.0 0.9091)) +(: cnet_isa_656303d3cf (IsA armorer enlisted_man) (STV 1.0 0.9091)) +(: cnet_isa_11b0472a0b (IsA armory foundry) (STV 1.0 0.9091)) +(: cnet_isa_57c72a5162 (IsA armory resource) (STV 1.0 0.9091)) +(: cnet_isa_28ffbf74d6 (IsA armourer skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_67940db480 (IsA armpit cavity) (STV 1.0 0.9091)) +(: cnet_isa_91b25f5170 (IsA armrest rest) (STV 1.0 0.9091)) +(: cnet_isa_ff5a22a872 (IsA arm_control limitation) (STV 1.0 0.9091)) +(: cnet_isa_f8e096ad57 (IsA arm_deal deal) (STV 1.0 0.9091)) +(: cnet_isa_4628f0064e (IsA arm_manufacturer manufacturer) (STV 1.0 0.9091)) +(: cnet_isa_2206da2744 (IsA arm_race race) (STV 1.0 0.9091)) +(: cnet_isa_80b8b72fe5 (IsA army military_force) (STV 1.0 0.9091)) +(: cnet_isa_412c7dfb42 (IsA army crowd) (STV 1.0 0.9091)) +(: cnet_isa_0b184eef25 (IsA army military_service) (STV 1.0 0.9091)) +(: cnet_isa_dedd0df1e4 (IsA army_ant ant) (STV 1.0 0.9091)) +(: cnet_isa_8596c0d8f0 (IsA army_attache military_attache) (STV 1.0 0.9091)) +(: cnet_isa_e9f1a2de84 (IsA army_base base) (STV 1.0 0.9091)) +(: cnet_isa_3577126542 (IsA army_brat child) (STV 1.0 0.9091)) +(: cnet_isa_5aefecf196 (IsA army_cutworm cutworm) (STV 1.0 0.9091)) +(: cnet_isa_d0d1106e82 (IsA army_engineer engineer) (STV 1.0 0.9091)) +(: cnet_isa_b5323f78ca (IsA army_intelligence agency) (STV 1.0 0.9091)) +(: cnet_isa_44ccfc4cf2 (IsA army_national_guard national_guard) (STV 1.0 0.9091)) +(: cnet_isa_eab18a0fe2 (IsA army_officer military_officer) (STV 1.0 0.9091)) +(: cnet_isa_30ffd04168 (IsA army_unit military_unit) (STV 1.0 0.9091)) +(: cnet_isa_fa4086afca (IsA armyworm caterpillar) (STV 1.0 0.9091)) +(: cnet_isa_d857f926b7 (IsA armyworm fungus_gnat) (STV 1.0 0.9091)) +(: cnet_isa_89220f1e83 (IsA armyworm noctuid_moth) (STV 1.0 0.9091)) +(: cnet_isa_945304171a (IsA arnica ointment) (STV 1.0 0.9091)) +(: cnet_isa_9ffd230754 (IsA arnica herb) (STV 1.0 0.9091)) +(: cnet_isa_4e4b7ccf69 (IsA arnica tincture) (STV 1.0 0.9091)) +(: cnet_isa_89028be603 (IsA arnica_montana wildflower) (STV 1.0 0.9091)) +(: cnet_isa_61ee7f63ab (IsA arnold_chiari_deformity deformity) (STV 1.0 0.9091)) +(: cnet_isa_fcd6856146 (IsA arnoseris asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5a7cfeb54b (IsA aroeira_blanca tree) (STV 1.0 0.9091)) +(: cnet_isa_9e42c791e3 (IsA aroma smell) (STV 1.0 0.9091)) +(: cnet_isa_871fb6ee82 (IsA aromatherapy therapy) (STV 1.0 0.9091)) +(: cnet_isa_0a0732adb5 (IsA aromatic_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_70045808d2 (IsA aromatic_compound hydrocarbon) (STV 1.0 0.9091)) +(: cnet_isa_4038ee1026 (IsA aromatic_hydrocarbon hydrocarbon) (STV 1.0 0.9091)) +(: cnet_isa_a83dfcba5f (IsA arousal change_of_state) (STV 1.0 0.9091)) +(: cnet_isa_4989e17a3f (IsA arousal wakefulness) (STV 1.0 0.9091)) +(: cnet_isa_20c837cd4e (IsA arousal physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_bfc1a26270 (IsA arpeggio chord) (STV 1.0 0.9091)) +(: cnet_isa_6fb98b5a1d (IsA arpent area_unit) (STV 1.0 0.9091)) +(: cnet_isa_c35dbe3747 (IsA arquebus muzzle_loader) (STV 1.0 0.9091)) +(: cnet_isa_f1d5dba0df (IsA arrack liquor) (STV 1.0 0.9091)) +(: cnet_isa_bd4a0a8486 (IsA arraignment legal_document) (STV 1.0 0.9091)) +(: cnet_isa_a3af00623a (IsA arrangement composing) (STV 1.0 0.9091)) +(: cnet_isa_d4914b4ae7 (IsA arrangement structure) (STV 1.0 0.9091)) +(: cnet_isa_04f4b06b49 (IsA arrangement group) (STV 1.0 0.9091)) +(: cnet_isa_aba92a82a1 (IsA arranger musician) (STV 1.0 0.9091)) +(: cnet_isa_692a42c4da (IsA array clothing) (STV 1.0 0.9091)) +(: cnet_isa_99eaecb299 (IsA array directional_antenna) (STV 1.0 0.9091)) +(: cnet_isa_680c51e0c0 (IsA array display) (STV 1.0 0.9091)) +(: cnet_isa_54fcf51427 (IsA array arrangement) (STV 1.0 0.9091)) +(: cnet_isa_d6baa55040 (IsA arrear debt) (STV 1.0 0.9091)) +(: cnet_isa_fcdae35f2b (IsA arrear indebtedness) (STV 1.0 0.9091)) +(: cnet_isa_675313fb5d (IsA arrest inaction) (STV 1.0 0.9091)) +(: cnet_isa_b19b607c6b (IsA arrested_development abnormality) (STV 1.0 0.9091)) +(: cnet_isa_7262272b10 (IsA arrester restraint) (STV 1.0 0.9091)) +(: cnet_isa_e973addee9 (IsA arrhenatherum plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_502b0a6355 (IsA arrival accomplishment) (STV 1.0 0.9091)) +(: cnet_isa_b64047911d (IsA arrival action) (STV 1.0 0.9091)) +(: cnet_isa_1802c208ea (IsA arrival traveler) (STV 1.0 0.9091)) +(: cnet_isa_b09820d985 (IsA arrival_gate gate) (STV 1.0 0.9091)) +(: cnet_isa_0b6c2763e8 (IsA arrival_time point) (STV 1.0 0.9091)) +(: cnet_isa_3001894d7f (IsA arroba liquid_unit) (STV 1.0 0.9091)) +(: cnet_isa_ba6311db65 (IsA arroba weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_662aba0947 (IsA arrogance pride) (STV 1.0 0.9091)) +(: cnet_isa_70025a16c4 (IsA arrogator person) (STV 1.0 0.9091)) +(: cnet_isa_4011044ace (IsA arrow projectile) (STV 1.0 0.9091)) +(: cnet_isa_89b7f3f0c6 (IsA arrow mark) (STV 1.0 0.9091)) +(: cnet_isa_f478022812 (IsA arrow_arum aquatic_plant) (STV 1.0 0.9091)) +(: cnet_isa_113ddc5772 (IsA arrow_grass marsh_plant) (STV 1.0 0.9091)) +(: cnet_isa_39e716a4ed (IsA arrow_leaved_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_9f98b8efce (IsA arrow_wood shrub) (STV 1.0 0.9091)) +(: cnet_isa_29f4cb0847 (IsA arrowhead point) (STV 1.0 0.9091)) +(: cnet_isa_083646f22f (IsA arrowleaf_groundsel wildflower) (STV 1.0 0.9091)) +(: cnet_isa_7c374f2806 (IsA arrowroot maranta) (STV 1.0 0.9091)) +(: cnet_isa_5d1161a853 (IsA arrowroot starch) (STV 1.0 0.9091)) +(: cnet_isa_98a6a79ad0 (IsA arrowsmith smith) (STV 1.0 0.9091)) +(: cnet_isa_0c95fa2a2a (IsA arrowworm worm) (STV 1.0 0.9091)) +(: cnet_isa_a6f4f9cb77 (IsA arroyo gully) (STV 1.0 0.9091)) +(: cnet_isa_37c2d5fe84 (IsA arroyo_willow willow) (STV 1.0 0.9091)) +(: cnet_isa_19bc6ca092 (IsA arroz_con_pollo chicken_and_rice) (STV 1.0 0.9091)) +(: cnet_isa_323d760d92 (IsA arsehole anus) (STV 1.0 0.9091)) +(: cnet_isa_39f4a79382 (IsA arsenal armament) (STV 1.0 0.9091)) +(: cnet_isa_09440880bc (IsA arsenal military_installation) (STV 1.0 0.9091)) +(: cnet_isa_665ad1c848 (IsA arsenate salt) (STV 1.0 0.9091)) +(: cnet_isa_68ca57a7a0 (IsA arsenic element) (STV 1.0 0.9091)) +(: cnet_isa_7b1cd18668 (IsA arsenic poison) (STV 1.0 0.9091)) +(: cnet_isa_b77d9b974f (IsA arsenic chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_d36dd663c0 (IsA arsenic trioxide) (STV 1.0 0.9091)) +(: cnet_isa_aaa58ee03f (IsA arsenic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_682a4b30fd (IsA arsenical drug) (STV 1.0 0.9091)) +(: cnet_isa_2558ec3f66 (IsA arsenical pesticide) (STV 1.0 0.9091)) +(: cnet_isa_b4826da435 (IsA arsenide compound) (STV 1.0 0.9091)) +(: cnet_isa_e3e5450f3e (IsA arsenopyrite mineral) (STV 1.0 0.9091)) +(: cnet_isa_1e185996ab (IsA arsine gas) (STV 1.0 0.9091)) +(: cnet_isa_4867d2d1ea (IsA arson crime_involving_fire) (STV 1.0 0.9339)) +(: cnet_isa_3075e3fa21 (IsA arson burning) (STV 1.0 0.9091)) +(: cnet_isa_7093a40fd6 (IsA arsonist criminal) (STV 1.0 0.9091)) +(: cnet_isa_918a54df22 (IsA art way_of_expressing_human_emotion) (STV 1.0 0.9091)) +(: cnet_isa_b0227034ef (IsA art way_of_expressing_yourself) (STV 1.0 0.9091)) +(: cnet_isa_c4f6ccfece (IsA art creation) (STV 1.0 0.9091)) +(: cnet_isa_3186b776c3 (IsA art superior_skill) (STV 1.0 0.9091)) +(: cnet_isa_2f9bda9f75 (IsA art_class course) (STV 1.0 0.9091)) +(: cnet_isa_19939a11b5 (IsA art_collection collection) (STV 1.0 0.9091)) +(: cnet_isa_fcf282dcfe (IsA art_critic critic) (STV 1.0 0.9091)) +(: cnet_isa_bc76fbe250 (IsA art_dealer trader) (STV 1.0 0.9091)) +(: cnet_isa_874fa77da8 (IsA art_deco artistic_movement) (STV 1.0 0.9091)) +(: cnet_isa_e6a9f19229 (IsA art_department academic_department) (STV 1.0 0.9091)) +(: cnet_isa_0af30351b7 (IsA art_director stage_director) (STV 1.0 0.9091)) +(: cnet_isa_3f3a374465 (IsA art_editor editor) (STV 1.0 0.9091)) +(: cnet_isa_22810bdc22 (IsA art_exhibition exhibition) (STV 1.0 0.9091)) +(: cnet_isa_641d03d169 (IsA art_form kind) (STV 1.0 0.9091)) +(: cnet_isa_12038b71dc (IsA art_historian historian) (STV 1.0 0.9091)) +(: cnet_isa_14b49df57b (IsA art_history humanistic_discipline) (STV 1.0 0.9091)) +(: cnet_isa_fceff1acf2 (IsA art_nouveau artistic_movement) (STV 1.0 0.9091)) +(: cnet_isa_a21f1cbbd4 (IsA art_nouveau school) (STV 1.0 0.9091)) +(: cnet_isa_333a189c0f (IsA art_paper paper) (STV 1.0 0.9091)) +(: cnet_isa_02311e6c60 (IsA art_school conservatory) (STV 1.0 0.9091)) +(: cnet_isa_3842bbd76a (IsA art_student student) (STV 1.0 0.9091)) +(: cnet_isa_a03e66134e (IsA art_teacher teacher) (STV 1.0 0.9091)) +(: cnet_isa_4cb267650b (IsA artamidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_0f5258969e (IsA artamus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_940e051cf6 (IsA artemia arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_0d45def7f0 (IsA artemisia shrub) (STV 1.0 0.9091)) +(: cnet_isa_3a404ebfe7 (IsA arterial_blood blood) (STV 1.0 0.9091)) +(: cnet_isa_23da189a70 (IsA arterial_blood_gas measurement) (STV 1.0 0.9091)) +(: cnet_isa_ec15581879 (IsA arterial_plaque plaque) (STV 1.0 0.9091)) +(: cnet_isa_47e06f6e82 (IsA arterial_pressure blood_pressure) (STV 1.0 0.9091)) +(: cnet_isa_00a2a14068 (IsA arterial_road highway) (STV 1.0 0.9091)) +(: cnet_isa_1abedf99b8 (IsA arteriectasis pathology) (STV 1.0 0.9091)) +(: cnet_isa_3ffb7bde1e (IsA arteriogram roentgenogram) (STV 1.0 0.9091)) +(: cnet_isa_2302550820 (IsA arteriography arthrography) (STV 1.0 0.9091)) +(: cnet_isa_073d2d1101 (IsA arteriole artery) (STV 1.0 0.9091)) +(: cnet_isa_5d365a90a6 (IsA arteriolosclerosis sclerosis) (STV 1.0 0.9091)) +(: cnet_isa_f9a255b58e (IsA arteriosclerosis sclerosis) (STV 1.0 0.9091)) +(: cnet_isa_debb243037 (IsA arteriosclerosis_obliteran arteriosclerosis) (STV 1.0 0.9091)) +(: cnet_isa_3dd9179542 (IsA arteritis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_58007a63aa (IsA artery blood_vessel) (STV 1.0 0.9454)) +(: cnet_isa_f1153c7083 (IsA artery thoroughfare) (STV 1.0 0.9091)) +(: cnet_isa_367c9313f8 (IsA artery_of_penis_bulb artery) (STV 1.0 0.9091)) +(: cnet_isa_8b0328b85d (IsA artery_of_vestibule_bulb artery) (STV 1.0 0.9091)) +(: cnet_isa_0adf24f30b (IsA artesian_well well) (STV 1.0 0.9091)) +(: cnet_isa_4c5710ba77 (IsA artfulness disingenuousness) (STV 1.0 0.9091)) +(: cnet_isa_12a8975a54 (IsA arthralgia pain) (STV 1.0 0.9091)) +(: cnet_isa_94dec8ceaa (IsA arthritic patient) (STV 1.0 0.9091)) +(: cnet_isa_97e65f1d08 (IsA arthritis inflammatory_disease) (STV 1.0 0.9091)) +(: cnet_isa_313334c8b5 (IsA arthrocentesis centesis) (STV 1.0 0.9091)) +(: cnet_isa_6994ef9569 (IsA arthrodesis arthroplasty) (STV 1.0 0.9091)) +(: cnet_isa_0ede438032 (IsA arthrogram roentgenogram) (STV 1.0 0.9091)) +(: cnet_isa_bcdf976d59 (IsA arthrography roentgenography) (STV 1.0 0.9091)) +(: cnet_isa_c8334f970e (IsA arthromere external_body_part) (STV 1.0 0.9091)) +(: cnet_isa_996ae5f80e (IsA arthropathy pathology) (STV 1.0 0.9091)) +(: cnet_isa_8360d37493 (IsA arthroplasty operation) (STV 1.0 0.9091)) +(: cnet_isa_cef3a2dea2 (IsA arthropod invertebrate) (STV 1.0 0.9091)) +(: cnet_isa_3815c1927e (IsA arthropod_family family) (STV 1.0 0.9091)) +(: cnet_isa_8653065ebb (IsA arthropod_genus genus) (STV 1.0 0.9091)) +(: cnet_isa_1d37830534 (IsA arthropoda phylum) (STV 1.0 0.9091)) +(: cnet_isa_8efd7d494a (IsA arthropteris fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_6a1572dd54 (IsA arthroscope endoscope) (STV 1.0 0.9091)) +(: cnet_isa_54e1fe1f18 (IsA arthroscopy operation) (STV 1.0 0.9091)) +(: cnet_isa_ea2c54d7f9 (IsA arthrospore cell) (STV 1.0 0.9091)) +(: cnet_isa_6ad42fdbff (IsA arthurian_legend legend) (STV 1.0 0.9091)) +(: cnet_isa_2b4597d248 (IsA artic_winter cold_and_dry_environment) (STV 1.0 0.9091)) +(: cnet_isa_3e4b67b1d3 (IsA artichoke vegetable) (STV 1.0 0.9091)) +(: cnet_isa_0509ba268c (IsA artichoke_heart vegetable) (STV 1.0 0.9091)) +(: cnet_isa_bfed6ba0d2 (IsA article artifact) (STV 1.0 0.9091)) +(: cnet_isa_68f95366f3 (IsA article nonfiction) (STV 1.0 0.9091)) +(: cnet_isa_2902a5aa56 (IsA article piece) (STV 1.0 0.9091)) +(: cnet_isa_d41aa0e1a5 (IsA article section) (STV 1.0 0.9091)) +(: cnet_isa_80b7d6943c (IsA article determiner) (STV 1.0 0.9091)) +(: cnet_isa_79cbb3f758 (IsA article_of_commerce article) (STV 1.0 0.9091)) +(: cnet_isa_679c6e7645 (IsA article_of_commerce ware) (STV 1.0 0.9091)) +(: cnet_isa_d2187089bc (IsA article_of_faith dogma) (STV 1.0 0.9091)) +(: cnet_isa_05d5c59f4b (IsA article_of_agreement contract) (STV 1.0 0.9091)) +(: cnet_isa_a448e68d3e (IsA article_of_incorporation legal_document) (STV 1.0 0.9091)) +(: cnet_isa_48612b1e2f (IsA articular_muscle skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_92f121ba28 (IsA articulated_ladder ladder) (STV 1.0 0.9091)) +(: cnet_isa_98f95a21cb (IsA articulation joining) (STV 1.0 0.9091)) +(: cnet_isa_cd0b78114b (IsA articulation expression) (STV 1.0 0.9091)) +(: cnet_isa_430d4c1843 (IsA articulation pronunciation) (STV 1.0 0.9091)) +(: cnet_isa_c28805541a (IsA articulation connection) (STV 1.0 0.9091)) +(: cnet_isa_2268e27976 (IsA articulator speech_organ) (STV 1.0 0.9091)) +(: cnet_isa_3288483cd5 (IsA articulator communicator) (STV 1.0 0.9091)) +(: cnet_isa_ee27509d93 (IsA articulatory_system system) (STV 1.0 0.9091)) +(: cnet_isa_a5e9d43a26 (IsA artifact whole) (STV 1.0 0.9091)) +(: cnet_isa_bce96b9355 (IsA artificial_blood liquid) (STV 1.0 0.9091)) +(: cnet_isa_af193d52dc (IsA artificial_flower art) (STV 1.0 0.9091)) +(: cnet_isa_7962014041 (IsA artificial_heart implant) (STV 1.0 0.9091)) +(: cnet_isa_ffd10f6f06 (IsA artificial_horizon navigational_instrument) (STV 1.0 0.9091)) +(: cnet_isa_4a94d41db7 (IsA artificial_insemination insemination) (STV 1.0 0.9091)) +(: cnet_isa_db4a258d31 (IsA artificial_intelligence computer_science) (STV 1.0 0.9091)) +(: cnet_isa_4c52ea144f (IsA artificial_joint implant) (STV 1.0 0.9091)) +(: cnet_isa_79dec05bd2 (IsA artificial_kidney dialyzer) (STV 1.0 0.9091)) +(: cnet_isa_c27d496cb0 (IsA artificial_language language) (STV 1.0 0.9091)) +(: cnet_isa_7940965390 (IsA artificial_respiration breathing) (STV 1.0 0.9091)) +(: cnet_isa_71911a99e7 (IsA artificial_respiration emergency_procedure) (STV 1.0 0.9091)) +(: cnet_isa_cb347b5c8b (IsA artificial_skin covering) (STV 1.0 0.9091)) +(: cnet_isa_bdba1cbde8 (IsA artificiality unnaturalness) (STV 1.0 0.9091)) +(: cnet_isa_ac20426127 (IsA artillery armament) (STV 1.0 0.9091)) +(: cnet_isa_1acd4431c6 (IsA artillery army_unit) (STV 1.0 0.9091)) +(: cnet_isa_ba1e832009 (IsA artillery_fire fire) (STV 1.0 0.9091)) +(: cnet_isa_e8339a496b (IsA artillery_plant nettle) (STV 1.0 0.9091)) +(: cnet_isa_086cfead79 (IsA artillery_shell shell) (STV 1.0 0.9091)) +(: cnet_isa_225b967cc1 (IsA artilleryman serviceman) (STV 1.0 0.9091)) +(: cnet_isa_a14f3c5e32 (IsA artiodactyla animal_order) (STV 1.0 0.9091)) +(: cnet_isa_450bbc0215 (IsA artisan_s_lien lien) (STV 1.0 0.9091)) +(: cnet_isa_18790ac12f (IsA artist_s_loft artist_s_workroom) (STV 1.0 0.9091)) +(: cnet_isa_377e71ed18 (IsA artist_s_loft loft) (STV 1.0 0.9091)) +(: cnet_isa_df1786e073 (IsA artist_s_model model) (STV 1.0 0.9091)) +(: cnet_isa_6d7c830239 (IsA artist_s_workroom studio) (STV 1.0 0.9091)) +(: cnet_isa_ebcbb85db0 (IsA artist creator) (STV 1.0 0.9091)) +(: cnet_isa_537eb77de9 (IsA artiste performer) (STV 1.0 0.9091)) +(: cnet_isa_98f3865a30 (IsA artistic_movement movement) (STV 1.0 0.9091)) +(: cnet_isa_36402a0918 (IsA artistic_style manner) (STV 1.0 0.9091)) +(: cnet_isa_cc9263af23 (IsA artlessness ingenuousness) (STV 1.0 0.9091)) +(: cnet_isa_0ac643e660 (IsA artlessness naivete) (STV 1.0 0.9091)) +(: cnet_isa_671c1c855d (IsA artocarpus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_769b91207c (IsA art_and_craft art) (STV 1.0 0.9091)) +(: cnet_isa_022401c3a4 (IsA artwork visual_communication) (STV 1.0 0.9091)) +(: cnet_isa_8c6031cce6 (IsA arulo artificial_language) (STV 1.0 0.9091)) +(: cnet_isa_1b1f2c58c0 (IsA arum herb) (STV 1.0 0.9091)) +(: cnet_isa_baa318ac77 (IsA arum starch) (STV 1.0 0.9091)) +(: cnet_isa_44ec8eab2d (IsA arundinaria monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d8abd502e7 (IsA arundo monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8329be4f52 (IsA arvicola mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_b097cb865e (IsA aryan white_person) (STV 1.0 0.9091)) +(: cnet_isa_3e5f3bb06d (IsA arytenoid cartilage) (STV 1.0 0.9091)) +(: cnet_isa_c640d14d9e (IsA asafetida natural_resin) (STV 1.0 0.9091)) +(: cnet_isa_ac52fadbf8 (IsA asana position) (STV 1.0 0.9091)) +(: cnet_isa_f4bec9ade7 (IsA asarabacca wild_ginger) (STV 1.0 0.9091)) +(: cnet_isa_738d288f6c (IsA asarh hindu_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_d6cebecd62 (IsA asarum dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ddff47b91c (IsA asbesto amphibole) (STV 1.0 0.9091)) +(: cnet_isa_0ca83bb14e (IsA asbesto_abatement abatement_of_nuisance) (STV 1.0 0.9091)) +(: cnet_isa_308606afc0 (IsA asbestosis pneumoconiosis) (STV 1.0 0.9091)) +(: cnet_isa_1f10db637c (IsA ascaphidae amphibian_family) (STV 1.0 0.9091)) +(: cnet_isa_7d52fc90ba (IsA ascaphus amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_78289e8a95 (IsA ascariasis infestation) (STV 1.0 0.9091)) +(: cnet_isa_ec7300a0b1 (IsA ascaridae worm_family) (STV 1.0 0.9091)) +(: cnet_isa_7cc5735ade (IsA ascaridia worm_genus) (STV 1.0 0.9091)) +(: cnet_isa_e93dd7907b (IsA ascaris worm_genus) (STV 1.0 0.9091)) +(: cnet_isa_d0db167d89 (IsA ascendant dominance) (STV 1.0 0.9091)) +(: cnet_isa_aaf67a6c84 (IsA ascender letter) (STV 1.0 0.9091)) +(: cnet_isa_4cb87360c6 (IsA ascender mover) (STV 1.0 0.9091)) +(: cnet_isa_38328580f3 (IsA ascender line) (STV 1.0 0.9091)) +(: cnet_isa_e66a627a8c (IsA ascending_aorta aorta) (STV 1.0 0.9091)) +(: cnet_isa_c9f2ea74ef (IsA ascending_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_ffe8687a7a (IsA ascending_colon colon) (STV 1.0 0.9091)) +(: cnet_isa_2d36f651a3 (IsA ascending_node node) (STV 1.0 0.9091)) +(: cnet_isa_4a4bb0b2a5 (IsA ascension change_of_location) (STV 1.0 0.9091)) +(: cnet_isa_152cc3d78c (IsA ascension holy_day_of_obligation) (STV 1.0 0.9091)) +(: cnet_isa_347c0dc51b (IsA ascent slope) (STV 1.0 0.9091)) +(: cnet_isa_64e6a64def (IsA asceticism self_denial) (STV 1.0 0.9091)) +(: cnet_isa_cdffbf1a79 (IsA asceticism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_9063645c2a (IsA ascidiaceae class) (STV 1.0 0.9091)) +(: cnet_isa_2c286c9bf1 (IsA ascidian tunicate) (STV 1.0 0.9091)) +(: cnet_isa_03964ef04f (IsA ascidian_tadpole larva) (STV 1.0 0.9091)) +(: cnet_isa_4126a8e8bf (IsA ascii_character character) (STV 1.0 0.9091)) +(: cnet_isa_595dc95a73 (IsA ascii_text_file text_file) (STV 1.0 0.9091)) +(: cnet_isa_0c24275573 (IsA ascite pathology) (STV 1.0 0.9091)) +(: cnet_isa_21bd86b9fb (IsA asclepiad herb) (STV 1.0 0.9091)) +(: cnet_isa_8e0b337cf9 (IsA asclepiadaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_5dd4df96ad (IsA asclepia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_26c362b9ab (IsA ascocarp fruiting_body) (STV 1.0 0.9091)) +(: cnet_isa_7bd9db4828 (IsA ascolichen lichen) (STV 1.0 0.9091)) +(: cnet_isa_70f7a334a7 (IsA ascoma ascocarp) (STV 1.0 0.9091)) +(: cnet_isa_03291fea88 (IsA ascomycete fungus) (STV 1.0 0.9091)) +(: cnet_isa_25f891dd6c (IsA ascomycete class) (STV 1.0 0.9091)) +(: cnet_isa_016e180222 (IsA ascomycota division) (STV 1.0 0.9091)) +(: cnet_isa_2806594ad6 (IsA ascophyllum protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_2d6038b99b (IsA ascospore spore) (STV 1.0 0.9091)) +(: cnet_isa_36564edb1a (IsA ascot cravat) (STV 1.0 0.9091)) +(: cnet_isa_1d0f42fa8b (IsA ascus reproductive_structure) (STV 1.0 0.9091)) +(: cnet_isa_a6326a5c7f (IsA asepsis sanitariness) (STV 1.0 0.9091)) +(: cnet_isa_4bfce32950 (IsA asexual_reproduction reproduction) (STV 1.0 0.9091)) +(: cnet_isa_0b6e43f6d7 (IsA asexuality physiological_property) (STV 1.0 0.9091)) +(: cnet_isa_850007da43 (IsA asgard imaginary_place) (STV 1.0 0.9091)) +(: cnet_isa_cc54f1e703 (IsA ash tree) (STV 1.0 0.9091)) +(: cnet_isa_602dea61c0 (IsA ash wood) (STV 1.0 0.9091)) +(: cnet_isa_48cdf59430 (IsA ash residue) (STV 1.0 0.9091)) +(: cnet_isa_06954446eb (IsA ash_can artistic_movement) (STV 1.0 0.9091)) +(: cnet_isa_39ee4cfb22 (IsA ash_gray gray) (STV 1.0 0.9091)) +(: cnet_isa_591514e789 (IsA ash_key seed) (STV 1.0 0.9091)) +(: cnet_isa_a1e3c204d8 (IsA ash_pan receptacle) (STV 1.0 0.9091)) +(: cnet_isa_8ed2046184 (IsA ash_wednesday christian_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_a1294fa6eb (IsA ashcake cornbread) (STV 1.0 0.9091)) +(: cnet_isa_dea1381f40 (IsA ashcan bin) (STV 1.0 0.9091)) +(: cnet_isa_93f42131f0 (IsA ashcan_school artistic_movement) (STV 1.0 0.9091)) +(: cnet_isa_f5c0cbd086 (IsA ashcan_school school) (STV 1.0 0.9091)) +(: cnet_isa_ab1ed0da46 (IsA ashkenazi israelite) (STV 1.0 0.9091)) +(: cnet_isa_10b99df6fa (IsA ashlar building_block) (STV 1.0 0.9091)) +(: cnet_isa_c96c9b8d9c (IsA ashlar stone) (STV 1.0 0.9091)) +(: cnet_isa_e375aae17a (IsA ashram retreat) (STV 1.0 0.9091)) +(: cnet_isa_af1366d633 (IsA ashtray receptacle) (STV 1.0 0.9091)) +(: cnet_isa_31ec71d508 (IsA asia continent) (STV 1.0 0.9091)) +(: cnet_isa_249d002ff3 (IsA asia collection) (STV 1.0 0.9091)) +(: cnet_isa_cd5dff275b (IsA asian_american american) (STV 1.0 0.9091)) +(: cnet_isa_a7ea94193b (IsA asian_black_grouse black_grouse) (STV 1.0 0.9091)) +(: cnet_isa_a4ab403066 (IsA asian_coral_snake coral_snake) (STV 1.0 0.9091)) +(: cnet_isa_87423f90ec (IsA asian_country country) (STV 1.0 0.9091)) +(: cnet_isa_ffbe8a806c (IsA asian_crocodile crocodile) (STV 1.0 0.9091)) +(: cnet_isa_dd7b4a0674 (IsA asian_horseshoe_crab arthropod) (STV 1.0 0.9091)) +(: cnet_isa_4ddaa52a46 (IsA asian_influenza influenza) (STV 1.0 0.9091)) +(: cnet_isa_9a99557435 (IsA asian_longhorned_beetle beetle) (STV 1.0 0.9091)) +(: cnet_isa_1f678be3b6 (IsA asian_tiger_mosquito mosquito) (STV 1.0 0.9091)) +(: cnet_isa_d8674eb233 (IsA asian_wild_ox ox) (STV 1.0 0.9091)) +(: cnet_isa_38e81149ef (IsA asiatic inhabitant) (STV 1.0 0.9091)) +(: cnet_isa_59ee1bd93e (IsA asiatic person_of_color) (STV 1.0 0.9091)) +(: cnet_isa_cfd557369f (IsA asiatic_black_bear bear) (STV 1.0 0.9091)) +(: cnet_isa_d1e0efcf8a (IsA asiatic_flying_squirrel squirrel) (STV 1.0 0.9091)) +(: cnet_isa_0f27ff5045 (IsA asiatic_shrew_mole shrew_mole) (STV 1.0 0.9091)) +(: cnet_isa_681f9c10f4 (IsA asiatic_sweetleaf flowering_shrub) (STV 1.0 0.9091)) +(: cnet_isa_05a0864bb3 (IsA aside actor_s_line) (STV 1.0 0.9091)) +(: cnet_isa_dca9a1d757 (IsA asilidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_02c0af7c90 (IsA asimina magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2a664befc3 (IsA asin hindu_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_3c0a361bbc (IsA asininity folly) (STV 1.0 0.9091)) +(: cnet_isa_d37850dd09 (IsA asio bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_216f416d22 (IsA asking_price price) (STV 1.0 0.9091)) +(: cnet_isa_bbd835ce9c (IsA asl sign_language) (STV 1.0 0.9091)) +(: cnet_isa_fe30c98a44 (IsA asp cobra) (STV 1.0 0.9091)) +(: cnet_isa_28b95a7a3b (IsA asp viper) (STV 1.0 0.9091)) +(: cnet_isa_bb175ca145 (IsA aspalathus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b5f0ac3e36 (IsA asparagaceae liliid_monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_f0821082fe (IsA asparagine amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_f2166ecc8c (IsA asparagus vegetable) (STV 1.0 0.9091)) +(: cnet_isa_a792abeab0 (IsA asparagus herb) (STV 1.0 0.9091)) +(: cnet_isa_d001d9f996 (IsA asparagus_bean legume) (STV 1.0 0.9091)) +(: cnet_isa_e8d7196d87 (IsA asparagus_bed bed) (STV 1.0 0.9091)) +(: cnet_isa_6d8c26b0d5 (IsA asparagus_fern herb) (STV 1.0 0.9091)) +(: cnet_isa_b955db55c5 (IsA aspartame sweetening) (STV 1.0 0.9091)) +(: cnet_isa_33a41cd3ae (IsA aspartic_acid amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_ebeb0ddb41 (IsA aspect characteristic) (STV 1.0 0.9091)) +(: cnet_isa_5abbc3aa82 (IsA aspect feature) (STV 1.0 0.9091)) +(: cnet_isa_d0427647fc (IsA aspect grammatical_relation) (STV 1.0 0.9091)) +(: cnet_isa_2699b2d401 (IsA aspect_ratio ratio) (STV 1.0 0.9091)) +(: cnet_isa_b7bcd5ddff (IsA aspen poplar) (STV 1.0 0.9091)) +(: cnet_isa_f7f603304c (IsA asper turkish_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_facf0ac84a (IsA asperger_s_syndrome mental_disorder) (STV 1.0 0.9091)) +(: cnet_isa_dfb11f3d02 (IsA aspergill device) (STV 1.0 0.9091)) +(: cnet_isa_64b8305323 (IsA aspergillaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_efe9d7472a (IsA aspergillosis animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_aded21834b (IsA aspergillosis disease) (STV 1.0 0.9091)) +(: cnet_isa_7d4c619655 (IsA aspergillosis opportunistic_infection) (STV 1.0 0.9091)) +(: cnet_isa_0cb4c69ec1 (IsA aspergillus fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_f4ec0c5f58 (IsA aspergillus_fumigatus fungus) (STV 1.0 0.9091)) +(: cnet_isa_de6d9c05f3 (IsA asperity difficulty) (STV 1.0 0.9091)) +(: cnet_isa_0098bc2862 (IsA asperity ill_nature) (STV 1.0 0.9091)) +(: cnet_isa_b8ee8e287c (IsA aspersion attack) (STV 1.0 0.9091)) +(: cnet_isa_4c4b565410 (IsA aspersion baptism) (STV 1.0 0.9091)) +(: cnet_isa_1a51e9b1e9 (IsA aspersion disparagement) (STV 1.0 0.9091)) +(: cnet_isa_ed00463f2c (IsA aspersorium basin) (STV 1.0 0.9091)) +(: cnet_isa_cb0d582d54 (IsA asperula asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b4a2965915 (IsA asphalt mineral) (STV 1.0 0.9091)) +(: cnet_isa_30de0be426 (IsA asphalt paving_material) (STV 1.0 0.9091)) +(: cnet_isa_104e67e90c (IsA asphodel liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_c9bbcaa9ab (IsA asphodelaceae liliid_monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_266918e3cb (IsA asphodeline liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_11301df5e7 (IsA asphodelus liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a4b95bba11 (IsA asphyxia physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_5dd64a293d (IsA aspic gelatin) (STV 1.0 0.9091)) +(: cnet_isa_a5e3ed261a (IsA aspidelap reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_582bb0e649 (IsA aspidiotus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_fe88199ea9 (IsA aspidistra herb) (STV 1.0 0.9091)) +(: cnet_isa_8ac9dd7f0f (IsA aspidophoroide fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_4fbc4f8d6d (IsA aspirant applicant) (STV 1.0 0.9091)) +(: cnet_isa_1adeb4edbe (IsA aspirate consonant) (STV 1.0 0.9091)) +(: cnet_isa_6eb2cb0ed4 (IsA aspiration ambition) (STV 1.0 0.9091)) +(: cnet_isa_38f26dbe35 (IsA aspiration articulation) (STV 1.0 0.9091)) +(: cnet_isa_9223d2ac1a (IsA aspiration_pneumonia bronchopneumonia) (STV 1.0 0.9091)) +(: cnet_isa_6fd306ef0b (IsA aspirator pump) (STV 1.0 0.9091)) +(: cnet_isa_afa61d79a5 (IsA aspirin medicine) (STV 1.0 0.9091)) +(: cnet_isa_f7db79e464 (IsA aspirin analgesic) (STV 1.0 0.9091)) +(: cnet_isa_800e1d4164 (IsA aspirin salicylate) (STV 1.0 0.9091)) +(: cnet_isa_6dfdbb8d9b (IsA aspirin_powder aspirin) (STV 1.0 0.9091)) +(: cnet_isa_de44365596 (IsA aspirin_powder powder) (STV 1.0 0.9091)) +(: cnet_isa_ea36d2f382 (IsA aspleniaceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_617a91bcf6 (IsA asplenium fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_b417496ff2 (IsA asprin analgesic) (STV 1.0 0.9091)) +(: cnet_isa_6c5d0e976b (IsA ass equine) (STV 1.0 0.9091)) +(: cnet_isa_00a8e02fde (IsA ass fool) (STV 1.0 0.9091)) +(: cnet_isa_29db283f01 (IsA assailability vulnerability) (STV 1.0 0.9091)) +(: cnet_isa_9375ea24ca (IsA assamese magadhan) (STV 1.0 0.9091)) +(: cnet_isa_bf874d036f (IsA assamese indian) (STV 1.0 0.9091)) +(: cnet_isa_94d1b84be1 (IsA assassin moslem) (STV 1.0 0.9091)) +(: cnet_isa_60e794d235 (IsA assassin murderer) (STV 1.0 0.9091)) +(: cnet_isa_f19bd1f4c0 (IsA assassin_bug heteropterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_35e9cd39cb (IsA assassination murder) (STV 1.0 0.9091)) +(: cnet_isa_18c737aee4 (IsA assault attack) (STV 1.0 0.9091)) +(: cnet_isa_94587bd321 (IsA assault battle) (STV 1.0 0.9091)) +(: cnet_isa_20b1d4ccae (IsA assault_gun armored_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_92d4cc0d46 (IsA assault_rifle automatic_rifle) (STV 1.0 0.9091)) +(: cnet_isa_8552c68857 (IsA assay test) (STV 1.0 0.9091)) +(: cnet_isa_3a316ad225 (IsA assay appraisal) (STV 1.0 0.9091)) +(: cnet_isa_232a119530 (IsA assay report) (STV 1.0 0.9091)) +(: cnet_isa_9413e40549 (IsA assay substance) (STV 1.0 0.9091)) +(: cnet_isa_0b6907877a (IsA assayer analyst) (STV 1.0 0.9091)) +(: cnet_isa_e7c194924f (IsA assegai spear) (STV 1.0 0.9091)) +(: cnet_isa_ee2236dd9d (IsA assembler program) (STV 1.0 0.9091)) +(: cnet_isa_c050012872 (IsA assembly_of_god protestant_denomination) (STV 1.0 0.9091)) +(: cnet_isa_a21058eba2 (IsA assembly group_action) (STV 1.0 0.9091)) +(: cnet_isa_20579496fb (IsA assembly machine) (STV 1.0 0.9091)) +(: cnet_isa_0cc2ab7bd3 (IsA assembly whole) (STV 1.0 0.9091)) +(: cnet_isa_72d11dfaad (IsA assembly gathering) (STV 1.0 0.9091)) +(: cnet_isa_1b9d92986b (IsA assembly_hall auditorium) (STV 1.0 0.9091)) +(: cnet_isa_fe01975013 (IsA assembly_language programming_language) (STV 1.0 0.9091)) +(: cnet_isa_86e2261a52 (IsA assembly_plant factory) (STV 1.0 0.9091)) +(: cnet_isa_c5b72614f4 (IsA assemblyman representative) (STV 1.0 0.9091)) +(: cnet_isa_3215e03ed4 (IsA assemblywoman representative) (STV 1.0 0.9091)) +(: cnet_isa_8968e26a43 (IsA assent agreement) (STV 1.0 0.9091)) +(: cnet_isa_1d6298e3e7 (IsA assenter respondent) (STV 1.0 0.9091)) +(: cnet_isa_97963253e6 (IsA asserter communicator) (STV 1.0 0.9091)) +(: cnet_isa_110da9edac (IsA assertion declaration) (STV 1.0 0.9091)) +(: cnet_isa_dc4738ffe6 (IsA assertiveness positivism) (STV 1.0 0.9091)) +(: cnet_isa_a80cc07a67 (IsA assertiveness_training behavior_therapy) (STV 1.0 0.9091)) +(: cnet_isa_a8c4496e75 (IsA assessee person) (STV 1.0 0.9091)) +(: cnet_isa_4c3ddca445 (IsA assessment monetary_value) (STV 1.0 0.9091)) +(: cnet_isa_65095c0bc1 (IsA assessment charge) (STV 1.0 0.9091)) +(: cnet_isa_d33d9164e2 (IsA asset quality) (STV 1.0 0.9091)) +(: cnet_isa_894107df98 (IsA asset possession) (STV 1.0 0.9091)) +(: cnet_isa_0cbf2a5cd4 (IsA asshole unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_8150f70d31 (IsA assibilation development) (STV 1.0 0.9091)) +(: cnet_isa_aa3257fa4e (IsA assiduity diligence) (STV 1.0 0.9091)) +(: cnet_isa_8b183420c5 (IsA assignation rendezvous) (STV 1.0 0.9091)) +(: cnet_isa_523379615e (IsA assignee party) (STV 1.0 0.9091)) +(: cnet_isa_05f113bb59 (IsA assignee recipient) (STV 1.0 0.9091)) +(: cnet_isa_5b5f24c839 (IsA assignment distribution) (STV 1.0 0.9091)) +(: cnet_isa_cbf373b232 (IsA assignment duty) (STV 1.0 0.9091)) +(: cnet_isa_ae081655bd (IsA assignment undertaking) (STV 1.0 0.9091)) +(: cnet_isa_46a88c2aca (IsA assignment legal_document) (STV 1.0 0.9091)) +(: cnet_isa_ab4c594f91 (IsA assignor party) (STV 1.0 0.9091)) +(: cnet_isa_7f86a52c46 (IsA assimilation developmental_learning) (STV 1.0 0.9091)) +(: cnet_isa_69b6d3e091 (IsA assimilation linguistic_process) (STV 1.0 0.9091)) +(: cnet_isa_6f6cdf2f07 (IsA assimilation organic_process) (STV 1.0 0.9091)) +(: cnet_isa_bd3745888e (IsA assimilation social_process) (STV 1.0 0.9091)) +(: cnet_isa_bc3140601b (IsA assimilation relationship) (STV 1.0 0.9091)) +(: cnet_isa_bc54bcaee8 (IsA assist maneuver) (STV 1.0 0.9091)) +(: cnet_isa_68c6c90b5e (IsA assistant worker) (STV 1.0 0.9091)) +(: cnet_isa_849e1411b6 (IsA assistant_professor professor) (STV 1.0 0.9091)) +(: cnet_isa_152ae8000f (IsA assisted_suicide suicide) (STV 1.0 0.9091)) +(: cnet_isa_b796c8dc1e (IsA assize regulation) (STV 1.0 0.9091)) +(: cnet_isa_888a7bbe28 (IsA assize writ) (STV 1.0 0.9091)) +(: cnet_isa_e7225350df (IsA assize court) (STV 1.0 0.9091)) +(: cnet_isa_a5de59bd02 (IsA associability capability) (STV 1.0 0.9091)) +(: cnet_isa_a1238e78fa (IsA associate accompaniment) (STV 1.0 0.9091)) +(: cnet_isa_42ce0dfd3d (IsA associate peer) (STV 1.0 0.9091)) +(: cnet_isa_2d3532d4e1 (IsA associate subordinate) (STV 1.0 0.9091)) +(: cnet_isa_5c8f5f04e6 (IsA associate_degree academic_degree) (STV 1.0 0.9091)) +(: cnet_isa_192fce1343 (IsA associate_in_applied_science associate_degree) (STV 1.0 0.9091)) +(: cnet_isa_05216f6491 (IsA associate_in_art associate_degree) (STV 1.0 0.9091)) +(: cnet_isa_95ecdf80c3 (IsA associate_in_nursing associate_degree) (STV 1.0 0.9091)) +(: cnet_isa_fa2d4f95b4 (IsA associate_professor professor) (STV 1.0 0.9091)) +(: cnet_isa_275c46801f (IsA associateship position) (STV 1.0 0.9091)) +(: cnet_isa_6bf061a1f9 (IsA association social_activity) (STV 1.0 0.9091)) +(: cnet_isa_8191b4f9f5 (IsA association chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_8f666ac87f (IsA association memory) (STV 1.0 0.9091)) +(: cnet_isa_faba722e81 (IsA association group) (STV 1.0 0.9091)) +(: cnet_isa_0960a4674b (IsA association organization) (STV 1.0 0.9091)) +(: cnet_isa_16e7776684 (IsA association relation) (STV 1.0 0.9091)) +(: cnet_isa_a37988b4f9 (IsA association union) (STV 1.0 0.9091)) +(: cnet_isa_52318109d5 (IsA association_area cortical_area) (STV 1.0 0.9091)) +(: cnet_isa_09d52fa19f (IsA association_for_advancement_of_retired_person association) (STV 1.0 0.9091)) +(: cnet_isa_0e7c911330 (IsA association_of_southeast_asian_nation association) (STV 1.0 0.9091)) +(: cnet_isa_e2512684c6 (IsA associationism scientific_theory) (STV 1.0 0.9091)) +(: cnet_isa_5905cbd1ae (IsA assonance rhyme) (STV 1.0 0.9091)) +(: cnet_isa_d472a67d56 (IsA assortative_mating coupling) (STV 1.0 0.9091)) +(: cnet_isa_abd6700b5b (IsA assortment collection) (STV 1.0 0.9091)) +(: cnet_isa_727be19fca (IsA assumption acquisition) (STV 1.0 0.9091)) +(: cnet_isa_7a6799e3fc (IsA assumption act) (STV 1.0 0.9091)) +(: cnet_isa_40ba208a11 (IsA assumption miracle) (STV 1.0 0.9091)) +(: cnet_isa_c71e193f50 (IsA assumption hypothesis) (STV 1.0 0.9091)) +(: cnet_isa_302d5b350d (IsA assumption holy_day_of_obligation) (STV 1.0 0.9091)) +(: cnet_isa_ef28b62a31 (IsA assurance certainty) (STV 1.0 0.9091)) +(: cnet_isa_05db858b4c (IsA assurance commitment) (STV 1.0 0.9091)) +(: cnet_isa_da30db136f (IsA assurance statement) (STV 1.0 0.9091)) +(: cnet_isa_d3f174059d (IsA assurance insurance) (STV 1.0 0.9091)) +(: cnet_isa_4ea30a34ae (IsA assyrian akkadian) (STV 1.0 0.9091)) +(: cnet_isa_93741ad344 (IsA assyrian semite) (STV 1.0 0.9091)) +(: cnet_isa_0ec9f87cde (IsA assyrian_neo_aramaic aramaic) (STV 1.0 0.9091)) +(: cnet_isa_ad6056f48a (IsA assyriology archeology) (STV 1.0 0.9091)) +(: cnet_isa_27518dd06b (IsA astacidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_746e61afcb (IsA astacus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_12a372a6b9 (IsA astasia disability) (STV 1.0 0.9091)) +(: cnet_isa_dbce961410 (IsA astatic_coil coil) (STV 1.0 0.9091)) +(: cnet_isa_f95bcb272e (IsA astatic_galvanometer galvanometer) (STV 1.0 0.9091)) +(: cnet_isa_d50d5bc0d7 (IsA astatine chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_a1fa59bcd1 (IsA astatine halogen) (STV 1.0 0.9091)) +(: cnet_isa_bd0a0f72a5 (IsA aster structure) (STV 1.0 0.9091)) +(: cnet_isa_6a52b95256 (IsA aster flower) (STV 1.0 0.9091)) +(: cnet_isa_846c5f2359 (IsA astereognosis agnosia) (STV 1.0 0.9091)) +(: cnet_isa_ff414b9987 (IsA asterid_dicot_family dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_144ea5655c (IsA asterid_dicot_genus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7181b9db5b (IsA asteridae class) (STV 1.0 0.9091)) +(: cnet_isa_ada44d2b25 (IsA asterion craniometric_point) (STV 1.0 0.9091)) +(: cnet_isa_c9647bd9c3 (IsA asterisk character) (STV 1.0 0.9091)) +(: cnet_isa_1e7c2f47aa (IsA asterism natural_object) (STV 1.0 0.9091)) +(: cnet_isa_0807d2376f (IsA asterism star) (STV 1.0 0.9091)) +(: cnet_isa_ec4d2b71fd (IsA asteroid asteroid) (STV 1.0 0.9091)) +(: cnet_isa_d414502629 (IsA asteroid celestial_body) (STV 1.0 0.9091)) +(: cnet_isa_a574d98b9d (IsA asteroid_belt belt) (STV 1.0 0.9091)) +(: cnet_isa_15f327238f (IsA asteroidea class) (STV 1.0 0.9091)) +(: cnet_isa_f46b69165e (IsA asteroid remnant_planet) (STV 1.0 0.9091)) +(: cnet_isa_198853b67a (IsA asterope nymph) (STV 1.0 0.9091)) +(: cnet_isa_e378aa5b29 (IsA asthenia infirmity) (STV 1.0 0.9091)) +(: cnet_isa_6fccc50cf4 (IsA asthenic_type body_type) (STV 1.0 0.9091)) +(: cnet_isa_bef24de407 (IsA asthenosphere layer) (STV 1.0 0.9091)) +(: cnet_isa_0a6f2e4c98 (IsA asthma respiratory_disease) (STV 1.0 0.9091)) +(: cnet_isa_23a32ac3ed (IsA asthmatic person) (STV 1.0 0.9091)) +(: cnet_isa_dc0ac70193 (IsA astigmatism ametropia) (STV 1.0 0.9091)) +(: cnet_isa_5c6589c031 (IsA astigmatism condition) (STV 1.0 0.9091)) +(: cnet_isa_3f471d4fd4 (IsA astilbe herb) (STV 1.0 0.9091)) +(: cnet_isa_a605c2d56d (IsA astimagtism common_visual_problem) (STV 1.0 0.9091)) +(: cnet_isa_8f13fccc2a (IsA astonishment feeling) (STV 1.0 0.9091)) +(: cnet_isa_a0b29490ee (IsA astragalus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a85776d8f5 (IsA astrakhan fur) (STV 1.0 0.9091)) +(: cnet_isa_3e868a9c97 (IsA astrantia herb) (STV 1.0 0.9091)) +(: cnet_isa_e831c9b10b (IsA astraphobia simple_phobia) (STV 1.0 0.9091)) +(: cnet_isa_22ffa5a566 (IsA astreus fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_f3da135b59 (IsA astreus_hygrometricus earthstar) (STV 1.0 0.9091)) +(: cnet_isa_d79204cfd3 (IsA astreus_pteridis earthstar) (STV 1.0 0.9091)) +(: cnet_isa_01648d0962 (IsA astringency contractility) (STV 1.0 0.9091)) +(: cnet_isa_74f027ceaf (IsA astringency taste) (STV 1.0 0.9091)) +(: cnet_isa_f14d2518ba (IsA astringent medicine) (STV 1.0 0.9091)) +(: cnet_isa_d36576e413 (IsA astrobleme crater) (STV 1.0 0.9091)) +(: cnet_isa_a81d702a36 (IsA astrocyte neurogliacyte) (STV 1.0 0.9091)) +(: cnet_isa_c718b30e5f (IsA astrodome dome) (STV 1.0 0.9091)) +(: cnet_isa_4c8b56fcf0 (IsA astrodynamic astronomy) (STV 1.0 0.9091)) +(: cnet_isa_dedcfa5008 (IsA astrogator navigator) (STV 1.0 0.9091)) +(: cnet_isa_f71c76389e (IsA astroglia neuroglia) (STV 1.0 0.9091)) +(: cnet_isa_b9a9bb1596 (IsA astrolabe sextant) (STV 1.0 0.9091)) +(: cnet_isa_25c3d25229 (IsA astrolatry worship) (STV 1.0 0.9091)) +(: cnet_isa_5106b4f0b7 (IsA astrologer forecaster) (STV 1.0 0.9091)) +(: cnet_isa_6b655a43eb (IsA astrology pseudoscience) (STV 1.0 0.9091)) +(: cnet_isa_d8860c9eba (IsA astroloma dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b94b391f34 (IsA astrometry astronomy) (STV 1.0 0.9091)) +(: cnet_isa_4f82d27944 (IsA astronaut traveler) (STV 1.0 0.9091)) +(: cnet_isa_a9e59388b0 (IsA astronaut people) (STV 1.0 0.9524)) +(: cnet_isa_13392db78a (IsA astronium dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2d37ac8dcd (IsA astronomer physicist) (STV 1.0 0.9091)) +(: cnet_isa_3d7ab92ef3 (IsA astronomical_telescope telescope) (STV 1.0 0.9091)) +(: cnet_isa_a30dce36c9 (IsA astronomical_unit astronomy_unit) (STV 1.0 0.9091)) +(: cnet_isa_bddba90014 (IsA astronomy science) (STV 1.0 0.9339)) +(: cnet_isa_ae7c54c5c5 (IsA astronomy physic) (STV 1.0 0.9091)) +(: cnet_isa_a58c66867e (IsA astronomy_satellite satellite) (STV 1.0 0.9091)) +(: cnet_isa_55d45bcb01 (IsA astronomy_unit linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_566b2d4b4b (IsA astrophysicist astronomer) (STV 1.0 0.9091)) +(: cnet_isa_78b9b31e99 (IsA astrophysic astronomy) (STV 1.0 0.9091)) +(: cnet_isa_5c66df4374 (IsA astrophyton echinoderm_genus) (STV 1.0 0.9091)) +(: cnet_isa_893f62a899 (IsA astrophyton_muricatum basket_star) (STV 1.0 0.9091)) +(: cnet_isa_5a9a44ad34 (IsA astropogon fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_0604758655 (IsA astuteness wisdom) (STV 1.0 0.9091)) +(: cnet_isa_3d3a4b29f0 (IsA asvin hindu_deity) (STV 1.0 0.9091)) +(: cnet_isa_2ce6188809 (IsA asymmetry spatial_property) (STV 1.0 0.9091)) +(: cnet_isa_89367a4682 (IsA asymptote straight_line) (STV 1.0 0.9091)) +(: cnet_isa_14c893828c (IsA asynchronism temporal_relation) (STV 1.0 0.9091)) +(: cnet_isa_ffa34cb96f (IsA asynchronous_operation operation) (STV 1.0 0.9091)) +(: cnet_isa_25d15ae735 (IsA asynchronous_transfer_mode digital_communication) (STV 1.0 0.9091)) +(: cnet_isa_c4bb153ebc (IsA asynclitism abnormality) (STV 1.0 0.9091)) +(: cnet_isa_45a61b3f30 (IsA asyndeton rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_a3a426a423 (IsA asynergy pathology) (STV 1.0 0.9091)) +(: cnet_isa_81ab79bd08 (IsA asystole pathology) (STV 1.0 0.9091)) +(: cnet_isa_8228ccbc1f (IsA at laotian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_c8cc29fd57 (IsA at_home reception) (STV 1.0 0.9091)) +(: cnet_isa_cd17f8e371 (IsA at_top_of_arch keystone) (STV 1.0 0.9091)) +(: cnet_isa_1849adde0a (IsA atactic_abasia abasia) (STV 1.0 0.9091)) +(: cnet_isa_4c52fa0ede (IsA atakapa amerind) (STV 1.0 0.9091)) +(: cnet_isa_bb0597fa5d (IsA ataraxia repose) (STV 1.0 0.9091)) +(: cnet_isa_1d311f57bb (IsA atavism recurrence) (STV 1.0 0.9091)) +(: cnet_isa_4db76d6969 (IsA atavist organism) (STV 1.0 0.9091)) +(: cnet_isa_880979b3b4 (IsA ataxia nervous_disorder) (STV 1.0 0.9091)) +(: cnet_isa_c403876cfe (IsA atelectasis pathology) (STV 1.0 0.9091)) +(: cnet_isa_de010c8eb3 (IsA ateleiosis infantilism) (STV 1.0 0.9091)) +(: cnet_isa_68ce04c548 (IsA atele mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_dc75a71417 (IsA athabascan native_american) (STV 1.0 0.9091)) +(: cnet_isa_aa541bda70 (IsA athanasian_creed creed) (STV 1.0 0.9091)) +(: cnet_isa_47e26db1ea (IsA athanasianism theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_d631d6b61a (IsA athanor furnace) (STV 1.0 0.9091)) +(: cnet_isa_154023c81d (IsA athapaskan amerind) (STV 1.0 0.9091)) +(: cnet_isa_b8a07a0462 (IsA atheism unbelief) (STV 1.0 0.9091)) +(: cnet_isa_a9c2109096 (IsA atheist disbeliever) (STV 1.0 0.9091)) +(: cnet_isa_8259c236ca (IsA atheist people) (STV 1.0 0.9524)) +(: cnet_isa_f521afdb0c (IsA athenaeum library) (STV 1.0 0.9091)) +(: cnet_isa_8eda65babd (IsA athenaeum club) (STV 1.0 0.9091)) +(: cnet_isa_678575c2d6 (IsA athene bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_6953da938f (IsA athenian hellene) (STV 1.0 0.9091)) +(: cnet_isa_99ab383c5b (IsA atherinidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_cb4613e767 (IsA atherinopsis fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_21a92b1fdb (IsA atherogenesis pathology) (STV 1.0 0.9091)) +(: cnet_isa_8e82b3d2b6 (IsA atheroma adipose_tissue) (STV 1.0 0.9091)) +(: cnet_isa_ff20b0a193 (IsA atherosclerosis arteriosclerosis) (STV 1.0 0.9091)) +(: cnet_isa_fe41962088 (IsA atherurus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_8f264dff4a (IsA athetosis nervous_disorder) (STV 1.0 0.9091)) +(: cnet_isa_e377713be8 (IsA athiorhodaceae bacteria_family) (STV 1.0 0.9091)) +(: cnet_isa_474d2684c3 (IsA athlete_s_heart heart) (STV 1.0 0.9091)) +(: cnet_isa_3b5b2537b3 (IsA athlete contestant) (STV 1.0 0.9091)) +(: cnet_isa_882f339cf3 (IsA athletic_contest contest) (STV 1.0 0.9091)) +(: cnet_isa_52f150bba2 (IsA athletic_facility facility) (STV 1.0 0.9091)) +(: cnet_isa_423f20d3dc (IsA athletic_game game) (STV 1.0 0.9091)) +(: cnet_isa_814c077b6f (IsA athletic_game sport) (STV 1.0 0.9091)) +(: cnet_isa_afc4024609 (IsA athletic_sock sock) (STV 1.0 0.9091)) +(: cnet_isa_fc44211588 (IsA athletic_supporter man_s_clothing) (STV 1.0 0.9091)) +(: cnet_isa_dc972aaf1b (IsA athletic_supporter protective_garment) (STV 1.0 0.9091)) +(: cnet_isa_3b16aae69b (IsA athletic_training training) (STV 1.0 0.9091)) +(: cnet_isa_025d40d26b (IsA athletic_type body_type) (STV 1.0 0.9091)) +(: cnet_isa_7d26aed93d (IsA athleticism energy) (STV 1.0 0.9091)) +(: cnet_isa_30d67a4c88 (IsA athletic extracurricular_activity) (STV 1.0 0.9091)) +(: cnet_isa_f17a91e5dc (IsA athrotaxis gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_89f4165bf6 (IsA athyrium fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_fad80f690d (IsA atlanta city) (STV 1.0 0.9524)) +(: cnet_isa_63afb4f72d (IsA atlanta in_georgia) (STV 1.0 0.9339)) +(: cnet_isa_a7d90906c6 (IsA atlantic_bottlenose_dolphin bottlenose_dolphin) (STV 1.0 0.9091)) +(: cnet_isa_196564f98a (IsA atlantic_cod cod) (STV 1.0 0.9091)) +(: cnet_isa_822527f549 (IsA atlantic_croaker croaker) (STV 1.0 0.9091)) +(: cnet_isa_771388ae65 (IsA atlantic_halibut righteye_flounder) (STV 1.0 0.9091)) +(: cnet_isa_d68aa230c4 (IsA atlantic_herring herring) (STV 1.0 0.9091)) +(: cnet_isa_9422640f97 (IsA atlantic_manta manta) (STV 1.0 0.9091)) +(: cnet_isa_9191fc3420 (IsA atlantic_puffin puffin) (STV 1.0 0.9091)) +(: cnet_isa_a83dd452d5 (IsA atlantic_ridley ridley) (STV 1.0 0.9091)) +(: cnet_isa_d4e20c7244 (IsA atlantic_sailfish sailfish) (STV 1.0 0.9091)) +(: cnet_isa_b6f2660b76 (IsA atlantic_salmon salmon) (STV 1.0 0.9091)) +(: cnet_isa_4e18802d05 (IsA atlantic_sea_bream sea_bream) (STV 1.0 0.9091)) +(: cnet_isa_4446a0d510 (IsA atlantic_spiny_dogfish spiny_dogfish) (STV 1.0 0.9091)) +(: cnet_isa_3c65fff3a1 (IsA atlantic_time civil_time) (STV 1.0 0.9091)) +(: cnet_isa_86fd2f5728 (IsA atlantic_tripletail tripletail) (STV 1.0 0.9091)) +(: cnet_isa_9a0ad9bbb6 (IsA atlantic_walrus walrus) (STV 1.0 0.9091)) +(: cnet_isa_7137128038 (IsA atlantide nymph) (STV 1.0 0.9091)) +(: cnet_isa_8319f5ef06 (IsA atlantis imaginary_place) (STV 1.0 0.9091)) +(: cnet_isa_6b580f2e4f (IsA atla column) (STV 1.0 0.9091)) +(: cnet_isa_3d6a633eba (IsA atla cervical_vertebra) (STV 1.0 0.9091)) +(: cnet_isa_ec9b02d358 (IsA atla reference_book) (STV 1.0 0.9091)) +(: cnet_isa_dba59fbf62 (IsA atla_cedar cedar) (STV 1.0 0.9091)) +(: cnet_isa_12cafbba10 (IsA atla_moth giant_silkworm_moth) (STV 1.0 0.9091)) +(: cnet_isa_8d228e9260 (IsA atmometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_c63dc45931 (IsA atmosphere region) (STV 1.0 0.9091)) +(: cnet_isa_64c38df83a (IsA atmosphere gas) (STV 1.0 0.9091)) +(: cnet_isa_930d0a4776 (IsA atmosphere condition) (STV 1.0 0.9091)) +(: cnet_isa_356369f56b (IsA atmosphere weather) (STV 1.0 0.9091)) +(: cnet_isa_8cbd7002eb (IsA atmospheric_electricity atmospheric_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_c4481f5842 (IsA atmospheric_electricity electrical_discharge) (STV 1.0 0.9091)) +(: cnet_isa_05483e9e5a (IsA atmospheric_phenomenon physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_b250616732 (IsA atmospheric_pressure gas_pressure) (STV 1.0 0.9091)) +(: cnet_isa_8c04e912d1 (IsA atole mush) (STV 1.0 0.9091)) +(: cnet_isa_b35c52dd61 (IsA atoll coral_reef) (STV 1.0 0.9091)) +(: cnet_isa_a17c110090 (IsA atom substance) (STV 1.0 0.9091)) +(: cnet_isa_91339f5676 (IsA atom material) (STV 1.0 0.9091)) +(: cnet_isa_66f689237f (IsA atom_bomb bomb) (STV 1.0 0.9091)) +(: cnet_isa_9f9530a80f (IsA atom_bomb nuclear_weapon) (STV 1.0 0.9091)) +(: cnet_isa_9c220fd39b (IsA atomic_bomb weapon) (STV 1.0 0.9091)) +(: cnet_isa_44fc4fd253 (IsA atomic_clock timepiece) (STV 1.0 0.9091)) +(: cnet_isa_e990c88a25 (IsA atomic_cocktail medicine) (STV 1.0 0.9091)) +(: cnet_isa_640b2b05d2 (IsA atomic_energy energy) (STV 1.0 0.9091)) +(: cnet_isa_4706897690 (IsA atomic_energy_commission executive_agency) (STV 1.0 0.9091)) +(: cnet_isa_98edd477ce (IsA atomic_mass mass) (STV 1.0 0.9091)) +(: cnet_isa_c5650611b5 (IsA atomic_mass_unit mass_unit) (STV 1.0 0.9091)) +(: cnet_isa_8fa3d821a4 (IsA atomic_number number) (STV 1.0 0.9091)) +(: cnet_isa_fbe381fe4c (IsA atomic_pile nuclear_reactor) (STV 1.0 0.9091)) +(: cnet_isa_1b10850753 (IsA atomic_power atomic_energy) (STV 1.0 0.9091)) +(: cnet_isa_48ed18b2b3 (IsA atomic_spectrum spectrum) (STV 1.0 0.9091)) +(: cnet_isa_dd2526906e (IsA atomic_theory scientific_theory) (STV 1.0 0.9091)) +(: cnet_isa_a366c01442 (IsA atomic_warhead warhead) (STV 1.0 0.9091)) +(: cnet_isa_7ddbdecc5e (IsA atomism theory) (STV 1.0 0.9091)) +(: cnet_isa_b44335082b (IsA atomism scientific_theory) (STV 1.0 0.9091)) +(: cnet_isa_93a0ac41eb (IsA atomization annihilation) (STV 1.0 0.9091)) +(: cnet_isa_e93a3bbb14 (IsA atomization division) (STV 1.0 0.9091)) +(: cnet_isa_c650b85fdd (IsA atomizer dispenser) (STV 1.0 0.9091)) +(: cnet_isa_b7c35f0628 (IsA atonality musical_notation) (STV 1.0 0.9091)) +(: cnet_isa_78c79cb05f (IsA atonement damage) (STV 1.0 0.9091)) +(: cnet_isa_0780fb03de (IsA atonicity condition) (STV 1.0 0.9091)) +(: cnet_isa_ce8b207501 (IsA atopic_dermatitis dermatitis) (STV 1.0 0.9091)) +(: cnet_isa_eee955d245 (IsA atopognosia nervous_disorder) (STV 1.0 0.9091)) +(: cnet_isa_e9dfdb6ebf (IsA atrazine herbicide) (STV 1.0 0.9091)) +(: cnet_isa_82ad4b27c7 (IsA atresia abnormality) (STV 1.0 0.9091)) +(: cnet_isa_0ab103b6d6 (IsA atrial_artery coronary_artery) (STV 1.0 0.9091)) +(: cnet_isa_1a4b0c4e52 (IsA atrial_fibrillation cardiac_arrhythmia) (STV 1.0 0.9091)) +(: cnet_isa_64d831fce3 (IsA atrial_fibrillation fibrillation) (STV 1.0 0.9091)) +(: cnet_isa_d515073767 (IsA atrial_septal_defect septal_defect) (STV 1.0 0.9091)) +(: cnet_isa_0fe155898e (IsA atrichornis bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_81a3f4b76e (IsA atrichornithidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_010041df09 (IsA atrioventricular_bundle cardiac_muscle) (STV 1.0 0.9091)) +(: cnet_isa_38f930f489 (IsA atrioventricular_nodal_rhythm cardiac_rhythm) (STV 1.0 0.9091)) +(: cnet_isa_050581f6a1 (IsA atrioventricular_node cardiac_muscle) (STV 1.0 0.9091)) +(: cnet_isa_200a957bf3 (IsA atrioventricular_valve heart_valve) (STV 1.0 0.9091)) +(: cnet_isa_03b6d153d7 (IsA atriplex caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5c748cf833 (IsA atrium court) (STV 1.0 0.9091)) +(: cnet_isa_972fafe164 (IsA atrium chamber) (STV 1.0 0.9091)) +(: cnet_isa_2ea99e9483 (IsA atrium_cordis atrium) (STV 1.0 0.9091)) +(: cnet_isa_e84543d0a3 (IsA atrocity cruelty) (STV 1.0 0.9091)) +(: cnet_isa_73f17c7820 (IsA atrocity inhumaneness) (STV 1.0 0.9091)) +(: cnet_isa_457a606278 (IsA atropa asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_abe90ba8a3 (IsA atrophy weakening) (STV 1.0 0.9091)) +(: cnet_isa_e7a552b914 (IsA atrophy symptom) (STV 1.0 0.9091)) +(: cnet_isa_abc774bbe2 (IsA atropidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_1d89ab42d8 (IsA atropina_belladona plant) (STV 1.0 0.9091)) +(: cnet_isa_227b3e2816 (IsA atropine alkaloid) (STV 1.0 0.9091)) +(: cnet_isa_f48f473209 (IsA atropine antidote) (STV 1.0 0.9091)) +(: cnet_isa_6154ab1e2b (IsA atropine antispasmodic) (STV 1.0 0.9091)) +(: cnet_isa_72ea525fa9 (IsA atropine mydriatic) (STV 1.0 0.9091)) +(: cnet_isa_b40f80afd2 (IsA atropine poison) (STV 1.0 0.9091)) +(: cnet_isa_1d766bc0fc (IsA atsugewi shastan) (STV 1.0 0.9091)) +(: cnet_isa_fc7ab314fb (IsA atsugewi hoka) (STV 1.0 0.9091)) +(: cnet_isa_5ade462c55 (IsA attacapan buffalo_indian) (STV 1.0 0.9091)) +(: cnet_isa_627db2550e (IsA attache specialist) (STV 1.0 0.9091)) +(: cnet_isa_d2aebe69eb (IsA attache_case briefcase) (STV 1.0 0.9091)) +(: cnet_isa_4e2202f2bf (IsA attachment combination) (STV 1.0 0.9091)) +(: cnet_isa_f18b3970cc (IsA attachment support) (STV 1.0 0.9091)) +(: cnet_isa_16a7247f57 (IsA attachment addition) (STV 1.0 0.9091)) +(: cnet_isa_1f4342ef58 (IsA attachment connection) (STV 1.0 0.9091)) +(: cnet_isa_eb0c245e7f (IsA attachment affection) (STV 1.0 0.9091)) +(: cnet_isa_2e00ad1664 (IsA attachment writ) (STV 1.0 0.9091)) +(: cnet_isa_51af811ea4 (IsA attack beginning) (STV 1.0 0.9091)) +(: cnet_isa_72f5f6e806 (IsA attack crime) (STV 1.0 0.9091)) +(: cnet_isa_70762386b7 (IsA attack criticism) (STV 1.0 0.9091)) +(: cnet_isa_b5b34aa8a2 (IsA attack turn) (STV 1.0 0.9091)) +(: cnet_isa_9e56fa70da (IsA attack operation) (STV 1.0 0.9091)) +(: cnet_isa_ff88e5e6cd (IsA attack degeneration) (STV 1.0 0.9091)) +(: cnet_isa_3110e1994f (IsA attack affliction) (STV 1.0 0.9091)) +(: cnet_isa_81ef97239a (IsA attack_dog watchdog) (STV 1.0 0.9091)) +(: cnet_isa_4ad935618b (IsA attack_submarine submarine) (STV 1.0 0.9091)) +(: cnet_isa_690cdd3aa1 (IsA attacker wrongdoer) (STV 1.0 0.9091)) +(: cnet_isa_deef9b9bd2 (IsA attainder cancellation) (STV 1.0 0.9091)) +(: cnet_isa_e29ae90b80 (IsA attainment accomplishment) (STV 1.0 0.9091)) +(: cnet_isa_36dc422c25 (IsA attainment arrival) (STV 1.0 0.9091)) +(: cnet_isa_246cafa5c8 (IsA attalea monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8b8d26a750 (IsA attar essential_oil) (STV 1.0 0.9091)) +(: cnet_isa_53b04ec3cf (IsA attar_of_ros attar) (STV 1.0 0.9091)) +(: cnet_isa_f8312ef6b7 (IsA attempt activity) (STV 1.0 0.9091)) +(: cnet_isa_b12b2fed44 (IsA attendance group_action) (STV 1.0 0.9091)) +(: cnet_isa_6ad5307913 (IsA attendance company) (STV 1.0 0.9091)) +(: cnet_isa_e46b1dde9f (IsA attendance frequency) (STV 1.0 0.9091)) +(: cnet_isa_de6a2cb05c (IsA attendance_check roll_call) (STV 1.0 0.9091)) +(: cnet_isa_bb3bf2a9e0 (IsA attendant assistant) (STV 1.0 0.9091)) +(: cnet_isa_5b584e0889 (IsA attendant participant) (STV 1.0 0.9091)) +(: cnet_isa_ff6d94ec73 (IsA attention courtesy) (STV 1.0 0.9091)) +(: cnet_isa_7084f02fe6 (IsA attention attraction) (STV 1.0 0.9091)) +(: cnet_isa_264da2bb99 (IsA attention basic_cognitive_process) (STV 1.0 0.9091)) +(: cnet_isa_b0d9cd846b (IsA attention faculty) (STV 1.0 0.9091)) +(: cnet_isa_70ca1c24df (IsA attention stance) (STV 1.0 0.9091)) +(: cnet_isa_390c3401d5 (IsA attention_deficit_disorder syndrome) (STV 1.0 0.9091)) +(: cnet_isa_9d8006dde5 (IsA attention_deficit_hyperactivity_disorder affective_spectrum_disorder) (STV 1.0 0.9091)) +(: cnet_isa_585375f8f0 (IsA attention_span span) (STV 1.0 0.9091)) +(: cnet_isa_0e3ca8de05 (IsA attentiveness consideration) (STV 1.0 0.9091)) +(: cnet_isa_f0932a7a97 (IsA attentiveness trait) (STV 1.0 0.9091)) +(: cnet_isa_1e4115152f (IsA attentiveness attention) (STV 1.0 0.9091)) +(: cnet_isa_0db48c4a73 (IsA attenuation weakness) (STV 1.0 0.9091)) +(: cnet_isa_474ee781a2 (IsA attenuation weakening) (STV 1.0 0.9091)) +(: cnet_isa_4e87f03d1c (IsA attenuator electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_7d366871e6 (IsA attestation evidence) (STV 1.0 0.9091)) +(: cnet_isa_51e085f9ae (IsA attestation testimony) (STV 1.0 0.9091)) +(: cnet_isa_07df711f8a (IsA attestation_service consulting_service) (STV 1.0 0.9091)) +(: cnet_isa_60d3e8bcfc (IsA attester witness) (STV 1.0 0.9091)) +(: cnet_isa_16c67c1040 (IsA attic wall) (STV 1.0 0.9091)) +(: cnet_isa_a1448237cd (IsA attic human_head) (STV 1.0 0.9091)) +(: cnet_isa_fe20c21f8d (IsA attic_fan exhaust_fan) (STV 1.0 0.9091)) +(: cnet_isa_1936114985 (IsA atticus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_cdeb57f332 (IsA attire clothing) (STV 1.0 0.9091)) +(: cnet_isa_f63edada17 (IsA attitude affectation) (STV 1.0 0.9091)) +(: cnet_isa_2b30be0ae8 (IsA attitude cognition) (STV 1.0 0.9091)) +(: cnet_isa_ff7be8e445 (IsA attitude orientation) (STV 1.0 0.9091)) +(: cnet_isa_9428428dd4 (IsA attorney_client_privilege privilege) (STV 1.0 0.9091)) +(: cnet_isa_e99cc8c374 (IsA attorney_general secretaryship) (STV 1.0 0.9091)) +(: cnet_isa_7e8e43080d (IsA attorney_general lawman) (STV 1.0 0.9091)) +(: cnet_isa_eb31fd2cc9 (IsA attorneyship position) (STV 1.0 0.9091)) +(: cnet_isa_46964ebe42 (IsA attosecond time_unit) (STV 1.0 0.9091)) +(: cnet_isa_76b912aca6 (IsA attraction quality) (STV 1.0 0.9091)) +(: cnet_isa_4054743f8f (IsA attraction feature) (STV 1.0 0.9091)) +(: cnet_isa_31639537b2 (IsA attraction show) (STV 1.0 0.9091)) +(: cnet_isa_d61e948db7 (IsA attraction force) (STV 1.0 0.9091)) +(: cnet_isa_655abf0562 (IsA attractive_nuisance nuisance) (STV 1.0 0.9091)) +(: cnet_isa_eb9e8cd3ac (IsA attractiveness beauty) (STV 1.0 0.9091)) +(: cnet_isa_98263da216 (IsA attractor point) (STV 1.0 0.9091)) +(: cnet_isa_8571c1dcfd (IsA attribute abstraction) (STV 1.0 0.9091)) +(: cnet_isa_d82ed8e60e (IsA attribute property) (STV 1.0 0.9091)) +(: cnet_isa_6ef5ecb668 (IsA attribution classification) (STV 1.0 0.9091)) +(: cnet_isa_ab7d9ed6e6 (IsA attributive_genitive_case genitive) (STV 1.0 0.9091)) +(: cnet_isa_871d5677ae (IsA attrition friction) (STV 1.0 0.9091)) +(: cnet_isa_d44e601f10 (IsA attrition decrease) (STV 1.0 0.9091)) +(: cnet_isa_a92f5203c6 (IsA attrition sorrow) (STV 1.0 0.9091)) +(: cnet_isa_e784bc28c9 (IsA attrition_rate rate) (STV 1.0 0.9091)) +(: cnet_isa_5a259740c0 (IsA atypical_pneumonia respiratory_disease) (STV 1.0 0.9091)) +(: cnet_isa_1c09172fe0 (IsA atypicality abnormality) (STV 1.0 0.9091)) +(: cnet_isa_8be97ca7bb (IsA au_pair foreigner) (STV 1.0 0.9091)) +(: cnet_isa_1660344926 (IsA au_pair_girl au_pair) (STV 1.0 0.9091)) +(: cnet_isa_8f31eff929 (IsA auckland city_in_new_zealand) (STV 1.0 0.9091)) +(: cnet_isa_6f25e50dc0 (IsA auction bridge) (STV 1.0 0.9091)) +(: cnet_isa_1f9d9f244d (IsA auction sale) (STV 1.0 0.9091)) +(: cnet_isa_35d33c6eac (IsA auction_block platform) (STV 1.0 0.9091)) +(: cnet_isa_0cd3041dfd (IsA auction_house firm) (STV 1.0 0.9091)) +(: cnet_isa_488ae49921 (IsA auctioneer agent) (STV 1.0 0.9091)) +(: cnet_isa_f16aba6ec2 (IsA aucuba rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d8b1e17782 (IsA audacity boldness) (STV 1.0 0.9091)) +(: cnet_isa_f9740a3112 (IsA audibility perceptibility) (STV 1.0 0.9091)) +(: cnet_isa_6d94de7a39 (IsA audible football_play) (STV 1.0 0.9091)) +(: cnet_isa_651d8ae708 (IsA audience group_of_people) (STV 1.0 0.9454)) +(: cnet_isa_229ba42b4a (IsA audience gathering) (STV 1.0 0.9091)) +(: cnet_isa_441da3b9c8 (IsA audience multitude) (STV 1.0 0.9091)) +(: cnet_isa_74c9ffaaad (IsA audile perceiver) (STV 1.0 0.9091)) +(: cnet_isa_ccc519183e (IsA audio component) (STV 1.0 0.9091)) +(: cnet_isa_66b8677d16 (IsA audio frequency) (STV 1.0 0.9091)) +(: cnet_isa_e12f89dbd0 (IsA audio auditory_communication) (STV 1.0 0.9091)) +(: cnet_isa_2c67e3fed0 (IsA audio_amplifier amplifier) (STV 1.0 0.9091)) +(: cnet_isa_1ad1796dad (IsA audio_cd compact_disk) (STV 1.0 0.9091)) +(: cnet_isa_f0d81c91e8 (IsA audio_lingual_acquisition language_learning) (STV 1.0 0.9091)) +(: cnet_isa_90da9f7f43 (IsA audio_system electronic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_2c8e50d122 (IsA audio_system system) (STV 1.0 0.9091)) +(: cnet_isa_9c147d545e (IsA audiocassette cassette) (STV 1.0 0.9091)) +(: cnet_isa_8e67b48796 (IsA audiogram representation) (STV 1.0 0.9091)) +(: cnet_isa_4c31fd5f1c (IsA audiology otology) (STV 1.0 0.9091)) +(: cnet_isa_c06d3e8a93 (IsA audiometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_4d2fca02fb (IsA audiometry measurement) (STV 1.0 0.9091)) +(: cnet_isa_1f6573c88f (IsA audiotape magnetic_tape) (STV 1.0 0.9091)) +(: cnet_isa_ef5750b4ec (IsA audiotape sound_recording) (STV 1.0 0.9091)) +(: cnet_isa_28fd587b96 (IsA audiotape tape) (STV 1.0 0.9091)) +(: cnet_isa_907e97265c (IsA audiovisual teaching_aid) (STV 1.0 0.9091)) +(: cnet_isa_2b37b68b54 (IsA audit examination) (STV 1.0 0.9091)) +(: cnet_isa_7d9253f2fb (IsA audit_program plan) (STV 1.0 0.9091)) +(: cnet_isa_c9f38d63fb (IsA audited_account accounting) (STV 1.0 0.9091)) +(: cnet_isa_397d9f894d (IsA audition test) (STV 1.0 0.9091)) +(: cnet_isa_5df5a2d864 (IsA auditor accountant) (STV 1.0 0.9091)) +(: cnet_isa_170a2a8784 (IsA auditor student) (STV 1.0 0.9091)) +(: cnet_isa_110c9d58c1 (IsA auditorium area) (STV 1.0 0.9091)) +(: cnet_isa_167b60f54d (IsA auditory_agnosia agnosia) (STV 1.0 0.9091)) +(: cnet_isa_edbb545dc4 (IsA auditory_aphasia aphasia) (STV 1.0 0.9091)) +(: cnet_isa_a94f3cec39 (IsA auditory_apparatus apparatus) (STV 1.0 0.9091)) +(: cnet_isa_1ed311f094 (IsA auditory_area cortical_area) (STV 1.0 0.9091)) +(: cnet_isa_28b7fcc1c4 (IsA auditory_center center) (STV 1.0 0.9091)) +(: cnet_isa_cc8654c8a4 (IsA auditory_communication communication) (STV 1.0 0.9091)) +(: cnet_isa_fb524b7f1b (IsA auditory_hallucination hallucination) (STV 1.0 0.9091)) +(: cnet_isa_577387f37c (IsA auditory_image image) (STV 1.0 0.9091)) +(: cnet_isa_dd128fefa9 (IsA auditory_meatus meatus) (STV 1.0 0.9091)) +(: cnet_isa_a2a5e40e4d (IsA auditory_ossicle ossicle) (STV 1.0 0.9091)) +(: cnet_isa_c45fea83ba (IsA auditory_perception perception) (STV 1.0 0.9091)) +(: cnet_isa_5fb19e6b2c (IsA auditory_system sensory_system) (STV 1.0 0.9091)) +(: cnet_isa_f0f510ad4e (IsA audubon_s_caracara caracara) (STV 1.0 0.9091)) +(: cnet_isa_0ac1bf779c (IsA audubon_s_warbler new_world_warbler) (STV 1.0 0.9091)) +(: cnet_isa_6b72919c73 (IsA augend number) (STV 1.0 0.9091)) +(: cnet_isa_dfd91f73dd (IsA auger drill) (STV 1.0 0.9091)) +(: cnet_isa_9722e12251 (IsA augite mineral) (STV 1.0 0.9091)) +(: cnet_isa_e978b46935 (IsA augmentation increase) (STV 1.0 0.9091)) +(: cnet_isa_4abc9cd649 (IsA augmentation statement) (STV 1.0 0.9091)) +(: cnet_isa_7ab34c2155 (IsA augur prophet) (STV 1.0 0.9091)) +(: cnet_isa_81ea6518fb (IsA augury experience) (STV 1.0 0.9091)) +(: cnet_isa_de16c89ef5 (IsA august month) (STV 1.0 0.9339)) +(: cnet_isa_89c7e5bd58 (IsA august gregorian_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_fc8829f8c6 (IsA augustinian friar) (STV 1.0 0.9091)) +(: cnet_isa_3cd106d92e (IsA augustinian_canon augustinian_order) (STV 1.0 0.9091)) +(: cnet_isa_8c8707073c (IsA augustinian_hermit augustinian_order) (STV 1.0 0.9091)) +(: cnet_isa_39265e1e3c (IsA augustinian_order order) (STV 1.0 0.9091)) +(: cnet_isa_43667150ee (IsA auk bird) (STV 1.0 0.9454)) +(: cnet_isa_a410ee0ffa (IsA auk seabird) (STV 1.0 0.9091)) +(: cnet_isa_3dd7f26331 (IsA auklet auk) (STV 1.0 0.9091)) +(: cnet_isa_95c10c3343 (IsA aulacorhyncus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_e4b4df9139 (IsA auld_langsyne past) (STV 1.0 0.9091)) +(: cnet_isa_5877784da6 (IsA aulostomidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_76c80ef28b (IsA aulostomus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_239b32d063 (IsA aunt kinswoman) (STV 1.0 0.9091)) +(: cnet_isa_360ce1651e (IsA aunt parent_s_sister) (STV 1.0 0.9091)) +(: cnet_isa_6621cdf538 (IsA aura light) (STV 1.0 0.9091)) +(: cnet_isa_74ec115362 (IsA aura symptom) (STV 1.0 0.9091)) +(: cnet_isa_e6ae9d9505 (IsA aurar icelandic_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_04ce07e4a8 (IsA aureolaria asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f5083f1890 (IsA aureole radiance) (STV 1.0 0.9091)) +(: cnet_isa_4ae8865c1f (IsA auricle cartilaginous_structure) (STV 1.0 0.9091)) +(: cnet_isa_2bf63e1211 (IsA auricle pouch) (STV 1.0 0.9091)) +(: cnet_isa_af140574f7 (IsA auricula pouch) (STV 1.0 0.9091)) +(: cnet_isa_1a1b9efc18 (IsA auricula primrose) (STV 1.0 0.9091)) +(: cnet_isa_7fb5d66211 (IsA auricular_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_ae47829c21 (IsA auricular_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_765cef0d1f (IsA auriculare craniometric_point) (STV 1.0 0.9091)) +(: cnet_isa_e08b5d0c2b (IsA auricularia fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_d0022a3539 (IsA auriculariaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_f92dd9efb0 (IsA auriculariale fungus_order) (STV 1.0 0.9091)) +(: cnet_isa_2e20c3181d (IsA auriparus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_6db6426e42 (IsA auroch ox) (STV 1.0 0.9091)) +(: cnet_isa_a4ed121203 (IsA aurora atmospheric_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_c6d6e7ec90 (IsA aurora_australis aurora) (STV 1.0 0.9091)) +(: cnet_isa_e99968c7fb (IsA aurora_borealis aurora) (STV 1.0 0.9091)) +(: cnet_isa_43d1764acf (IsA auscultation diagnostic_procedure) (STV 1.0 0.9091)) +(: cnet_isa_f09e9c7445 (IsA auscultation listening) (STV 1.0 0.9091)) +(: cnet_isa_34cab6276f (IsA auspice omen) (STV 1.0 0.9091)) +(: cnet_isa_87a672508c (IsA auspice endorsement) (STV 1.0 0.9091)) +(: cnet_isa_8a70189f1d (IsA auspiciousness favorableness) (STV 1.0 0.9091)) +(: cnet_isa_62297ba2c3 (IsA aussie inhabitant) (STV 1.0 0.9091)) +(: cnet_isa_cedd8c5266 (IsA austenite solid_solution) (STV 1.0 0.9091)) +(: cnet_isa_4c59f65557 (IsA austenitic_steel steel) (STV 1.0 0.9091)) +(: cnet_isa_4a830fea4f (IsA austereness plainness) (STV 1.0 0.9091)) +(: cnet_isa_3708b677fb (IsA austerity self_discipline) (STV 1.0 0.9091)) +(: cnet_isa_e543904adc (IsA austin_friar augustinian) (STV 1.0 0.9091)) +(: cnet_isa_a0c5aeda50 (IsA austin_friar augustinian_order) (STV 1.0 0.9091)) +(: cnet_isa_32ef79b32c (IsA austral argentine_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_b0a4375a88 (IsA australia country) (STV 1.0 0.9091)) +(: cnet_isa_16cd53081b (IsA australia island) (STV 1.0 0.9091)) +(: cnet_isa_bbe1827070 (IsA australian austronesian) (STV 1.0 0.9091)) +(: cnet_isa_cfae78e729 (IsA australian_aborigine aussie) (STV 1.0 0.9091)) +(: cnet_isa_80797e4cc1 (IsA australian_aborigine ethnic_group) (STV 1.0 0.9091)) +(: cnet_isa_6959fa2a1c (IsA australian_blacksnake elapid) (STV 1.0 0.9091)) +(: cnet_isa_8198f38503 (IsA australian_cattle_dog herding_dog) (STV 1.0 0.9091)) +(: cnet_isa_d58af192d5 (IsA australian_cockroach cockroach) (STV 1.0 0.9091)) +(: cnet_isa_d109a040fb (IsA australian_coral_snake coral_snake) (STV 1.0 0.9091)) +(: cnet_isa_52044ea463 (IsA australian_dollar dollar) (STV 1.0 0.9091)) +(: cnet_isa_023d4ebf23 (IsA australian_grass_tree australian_heath) (STV 1.0 0.9091)) +(: cnet_isa_05ff985950 (IsA australian_hare_s_foot hare_s_foot_fern) (STV 1.0 0.9091)) +(: cnet_isa_53140015a7 (IsA australian_heath shrub) (STV 1.0 0.9091)) +(: cnet_isa_2298f6ec30 (IsA australian_labor_party labour_party) (STV 1.0 0.9091)) +(: cnet_isa_e9b0a43b25 (IsA australian_magpie oscine) (STV 1.0 0.9091)) +(: cnet_isa_7908d22299 (IsA australian_nettle tree) (STV 1.0 0.9091)) +(: cnet_isa_dbc1e06343 (IsA australian_pea vine) (STV 1.0 0.9091)) +(: cnet_isa_a934eb7a04 (IsA australian_pine beefwood) (STV 1.0 0.9091)) +(: cnet_isa_9b8855e3a7 (IsA australian_pitcher_plant herb) (STV 1.0 0.9091)) +(: cnet_isa_463440827c (IsA australian_reed_grass reed_grass) (STV 1.0 0.9091)) +(: cnet_isa_b084968b4c (IsA australian_sea_lion sea_lion) (STV 1.0 0.9091)) +(: cnet_isa_283bcd524a (IsA australian_state state) (STV 1.0 0.9091)) +(: cnet_isa_f55fe929d2 (IsA australian_sumac angiospermous_yellowwood) (STV 1.0 0.9091)) +(: cnet_isa_8b49770f95 (IsA australian_terrier terrier) (STV 1.0 0.9091)) +(: cnet_isa_a665d51eba (IsA australian_turtledove dove) (STV 1.0 0.9091)) +(: cnet_isa_baf187f0b5 (IsA australian_walk_about great_form_of_exercise) (STV 1.0 0.9091)) +(: cnet_isa_dddd2e01f0 (IsA australopithecine hominid) (STV 1.0 0.9091)) +(: cnet_isa_c1a74ed11b (IsA australopithecus_afarensis australopithecine) (STV 1.0 0.9091)) +(: cnet_isa_b94f361332 (IsA australopithecus_africanus australopithecine) (STV 1.0 0.9091)) +(: cnet_isa_4f15780f2b (IsA australopithecus_boisei australopithecine) (STV 1.0 0.9091)) +(: cnet_isa_6ab41f9013 (IsA australopithecus_robustus australopithecine) (STV 1.0 0.9091)) +(: cnet_isa_3af40075dc (IsA austria country) (STV 1.0 0.9454)) +(: cnet_isa_0fb7188615 (IsA austria country_in_europe) (STV 1.0 0.9091)) +(: cnet_isa_439e399d9d (IsA austria not_australia) (STV 1.0 0.9339)) +(: cnet_isa_1d2581529d (IsA austrian european) (STV 1.0 0.9091)) +(: cnet_isa_3a1ddb2c0c (IsA austrian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_bb683fcd13 (IsA austro_asiatic natural_language) (STV 1.0 0.9091)) +(: cnet_isa_fbf9dddde6 (IsA austrocedrus gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_27aaa66824 (IsA austronesian natural_language) (STV 1.0 0.9091)) +(: cnet_isa_802662382f (IsA austronesian inhabitant) (STV 1.0 0.9091)) +(: cnet_isa_5bdfb529bd (IsA austrotaxus gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_9700dfad40 (IsA autacoid secretion) (STV 1.0 0.9091)) +(: cnet_isa_26dc0e36a6 (IsA autarky independence) (STV 1.0 0.9091)) +(: cnet_isa_501f9e3077 (IsA auteur film_maker) (STV 1.0 0.9091)) +(: cnet_isa_79287c64a5 (IsA authentication validation) (STV 1.0 0.9091)) +(: cnet_isa_28f68f5041 (IsA authentication marker) (STV 1.0 0.9091)) +(: cnet_isa_4a45db1cd7 (IsA authenticity credibility) (STV 1.0 0.9091)) +(: cnet_isa_1a7bb24a2e (IsA authoress writer) (STV 1.0 0.9091)) +(: cnet_isa_36d83eeea3 (IsA authoring_language software) (STV 1.0 0.9091)) +(: cnet_isa_68d9d12fd7 (IsA authoritarian oppressor) (STV 1.0 0.9091)) +(: cnet_isa_8e3fcfc498 (IsA authoritarian_regime government) (STV 1.0 0.9091)) +(: cnet_isa_b46a75269e (IsA authority control) (STV 1.0 0.9091)) +(: cnet_isa_ec1d0694db (IsA authority permission) (STV 1.0 0.9091)) +(: cnet_isa_5fd2644fab (IsA authority book) (STV 1.0 0.9091)) +(: cnet_isa_809460a2ea (IsA authority expert) (STV 1.0 0.9091)) +(: cnet_isa_0eba1cd722 (IsA authority person) (STV 1.0 0.9091)) +(: cnet_isa_b8d548aebb (IsA authority_figure authority) (STV 1.0 0.9091)) +(: cnet_isa_2795699338 (IsA authorization management) (STV 1.0 0.9091)) +(: cnet_isa_d1c8ec4199 (IsA authorized_share stock) (STV 1.0 0.9091)) +(: cnet_isa_fc4fe9e2bd (IsA authorizer authority) (STV 1.0 0.9091)) +(: cnet_isa_9466aab7af (IsA authorship initiation) (STV 1.0 0.9091)) +(: cnet_isa_89d6cf0192 (IsA autism syndrome) (STV 1.0 0.9091)) +(: cnet_isa_526af83858 (IsA auto_accessory accessory) (STV 1.0 0.9091)) +(: cnet_isa_a31e3d33cb (IsA auto_da_fe burning) (STV 1.0 0.9091)) +(: cnet_isa_1ba29fcacf (IsA auto_limitation social_control) (STV 1.0 0.9091)) +(: cnet_isa_f4a7c5666c (IsA auto_mechanic trade) (STV 1.0 0.9091)) +(: cnet_isa_169c6e29ae (IsA auto_part component) (STV 1.0 0.9091)) +(: cnet_isa_ad9cb99e4d (IsA auto_racing racing) (STV 1.0 0.9091)) +(: cnet_isa_b7570912fc (IsA auto_suggestion self_improvement) (STV 1.0 0.9091)) +(: cnet_isa_9765c45808 (IsA autoantibody antibody) (STV 1.0 0.9091)) +(: cnet_isa_e1af91a2f1 (IsA autobahn expressway) (STV 1.0 0.9091)) +(: cnet_isa_f8992d9c9b (IsA autobiographer biographer) (STV 1.0 0.9091)) +(: cnet_isa_0c12cf1729 (IsA autobiography biography) (STV 1.0 0.9091)) +(: cnet_isa_a3a0bbb364 (IsA autocatalysis catalysis) (STV 1.0 0.9091)) +(: cnet_isa_43e121fca2 (IsA autochthon primitive) (STV 1.0 0.9091)) +(: cnet_isa_71c4e16e19 (IsA autoclave vessel) (STV 1.0 0.9091)) +(: cnet_isa_4ae2b150c8 (IsA autocracy political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_f46c7277a3 (IsA autocracy political_system) (STV 1.0 0.9091)) +(: cnet_isa_2314c165c3 (IsA autodidact person) (STV 1.0 0.9091)) +(: cnet_isa_03e55259db (IsA autoeroticism sexual_activity) (STV 1.0 0.9091)) +(: cnet_isa_97273d8e3b (IsA autofluorescence fluorescence) (STV 1.0 0.9091)) +(: cnet_isa_dff995d8bf (IsA autofocus optical_device) (STV 1.0 0.9091)) +(: cnet_isa_9ddf7f8852 (IsA autogamy self_fertilization) (STV 1.0 0.9091)) +(: cnet_isa_84eda8722b (IsA autogenic_therapy treatment) (STV 1.0 0.9091)) +(: cnet_isa_02f46b1c95 (IsA autogiro heavier_than_air_craft) (STV 1.0 0.9091)) +(: cnet_isa_eda43c678d (IsA autograft graft) (STV 1.0 0.9091)) +(: cnet_isa_aeaf99e80c (IsA autograph signature) (STV 1.0 0.9091)) +(: cnet_isa_845f2970bb (IsA autograph writing) (STV 1.0 0.9091)) +(: cnet_isa_4a2ce57cc7 (IsA autograph_album album) (STV 1.0 0.9091)) +(: cnet_isa_523bf9946f (IsA autoimmune_disease disease) (STV 1.0 0.9091)) +(: cnet_isa_183f7ff201 (IsA autoimmunity pathology) (STV 1.0 0.9091)) +(: cnet_isa_3ec0b7c5cf (IsA autoinjector hypodermic_syringe) (STV 1.0 0.9091)) +(: cnet_isa_f60549e340 (IsA autoloader firearm) (STV 1.0 0.9091)) +(: cnet_isa_a7c77da3c1 (IsA autolysis lysis) (STV 1.0 0.9091)) +(: cnet_isa_b3deb7c812 (IsA automat cafeteria) (STV 1.0 0.9091)) +(: cnet_isa_4b1acb7387 (IsA automat vending_machine) (STV 1.0 0.9091)) +(: cnet_isa_bac172394a (IsA automatic weapon) (STV 1.0 0.9091)) +(: cnet_isa_45034b1e7d (IsA automatic_choke choke) (STV 1.0 0.9091)) +(: cnet_isa_cc5af45bf3 (IsA automatic_data_processing data_processing) (STV 1.0 0.9091)) +(: cnet_isa_c8de220fb9 (IsA automatic_firearm autoloader) (STV 1.0 0.9091)) +(: cnet_isa_cc56f20264 (IsA automatic_pilot unconsciousness) (STV 1.0 0.9091)) +(: cnet_isa_6d2ab53c43 (IsA automatic_pistol automatic_firearm) (STV 1.0 0.9091)) +(: cnet_isa_1d9c0435c3 (IsA automatic_pistol pistol) (STV 1.0 0.9091)) +(: cnet_isa_b9e16f5a20 (IsA automatic_rifle automatic_firearm) (STV 1.0 0.9091)) +(: cnet_isa_9d6cbc5beb (IsA automatic_rifle machine_gun) (STV 1.0 0.9091)) +(: cnet_isa_1f7040022b (IsA automatic_transmission transmission) (STV 1.0 0.9091)) +(: cnet_isa_6b599048f6 (IsA automation high_technology) (STV 1.0 0.9091)) +(: cnet_isa_cb4fdbe3ca (IsA automation equipment) (STV 1.0 0.9091)) +(: cnet_isa_4c6e45027c (IsA automation condition) (STV 1.0 0.9091)) +(: cnet_isa_65cf316eb1 (IsA automatism reaction) (STV 1.0 0.9091)) +(: cnet_isa_650ab5220c (IsA automaton machine) (STV 1.0 0.9091)) +(: cnet_isa_9ec7de3334 (IsA automaton mechanism) (STV 1.0 0.9091)) +(: cnet_isa_d6c8f952a9 (IsA automaton person) (STV 1.0 0.9091)) +(: cnet_isa_3c5fa1da52 (IsA automeris arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_b7e31cf789 (IsA automobile_engine engine) (STV 1.0 0.9091)) +(: cnet_isa_ae0055b943 (IsA automobile_factory factory) (STV 1.0 0.9091)) +(: cnet_isa_1225e99332 (IsA automobile_horn alarm) (STV 1.0 0.9091)) +(: cnet_isa_dcb6ad4767 (IsA automobile_industry industry) (STV 1.0 0.9091)) +(: cnet_isa_8caebf237b (IsA automobile_insurance insurance) (STV 1.0 0.9091)) +(: cnet_isa_c8b158eae7 (IsA automobile_loan personal_loan) (STV 1.0 0.9091)) +(: cnet_isa_d0d9af0031 (IsA automobile_mechanic maintenance_man) (STV 1.0 0.9091)) +(: cnet_isa_969cb03772 (IsA automobile_race race) (STV 1.0 0.9091)) +(: cnet_isa_2b00f31e44 (IsA automobile_traffic vehicular_traffic) (STV 1.0 0.9091)) +(: cnet_isa_f2aa2e8c10 (IsA automotive_engineer engineer) (STV 1.0 0.9091)) +(: cnet_isa_63eb8c5450 (IsA automotive_technology technology) (STV 1.0 0.9091)) +(: cnet_isa_1913731e17 (IsA automysophobia simple_phobia) (STV 1.0 0.9091)) +(: cnet_isa_9e6edf0c39 (IsA autonomic_ganglion ganglion) (STV 1.0 0.9091)) +(: cnet_isa_ab9a898c81 (IsA autonomic_nervous_system neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_01e391ddb5 (IsA autonomic_plexus nerve_plexus) (STV 1.0 0.9091)) +(: cnet_isa_c716ff093f (IsA autonomous_community state) (STV 1.0 0.9091)) +(: cnet_isa_918453fd0c (IsA autonomy independence) (STV 1.0 0.9091)) +(: cnet_isa_4ccbe199d1 (IsA autophyte plant) (STV 1.0 0.9091)) +(: cnet_isa_03ef102eb0 (IsA autopilot device) (STV 1.0 0.9091)) +(: cnet_isa_610b8cfd1d (IsA autoplasty plastic_surgery) (STV 1.0 0.9091)) +(: cnet_isa_152c8be6f5 (IsA autopsy examination) (STV 1.0 0.9091)) +(: cnet_isa_f2d77c50c6 (IsA autoradiograph radiogram) (STV 1.0 0.9091)) +(: cnet_isa_361db5245c (IsA autoradiography radiography) (STV 1.0 0.9091)) +(: cnet_isa_3e79758ca1 (IsA autoregulation organic_process) (STV 1.0 0.9091)) +(: cnet_isa_9808323b60 (IsA autosexing breeding) (STV 1.0 0.9091)) +(: cnet_isa_d04501941a (IsA autosomal_dominant_disease genetic_disease) (STV 1.0 0.9091)) +(: cnet_isa_f427a7f064 (IsA autosomal_recessive_disease genetic_disease) (STV 1.0 0.9091)) +(: cnet_isa_066bf647c8 (IsA autosome chromosome) (STV 1.0 0.9091)) +(: cnet_isa_3f9d92c0d3 (IsA autostrada expressway) (STV 1.0 0.9091)) +(: cnet_isa_2bba534c3f (IsA autotelism belief) (STV 1.0 0.9091)) +(: cnet_isa_2fe6519f4b (IsA autotomy removal) (STV 1.0 0.9091)) +(: cnet_isa_519a183914 (IsA autotype photography) (STV 1.0 0.9091)) +(: cnet_isa_ebea3f9f7d (IsA autumn_crocus bulbous_plant) (STV 1.0 0.9091)) +(: cnet_isa_26eaa3f20e (IsA autumn_sneezeweed sneezeweed) (STV 1.0 0.9091)) +(: cnet_isa_c0415cccc2 (IsA autumnal_equinox equinoctial_point) (STV 1.0 0.9091)) +(: cnet_isa_461d335092 (IsA autumnal_equinox equinox) (STV 1.0 0.9091)) +(: cnet_isa_242b456419 (IsA auxesis growth) (STV 1.0 0.9091)) +(: cnet_isa_46768e3bf0 (IsA auxiliary_airfield airfield) (STV 1.0 0.9091)) +(: cnet_isa_655b2176f6 (IsA auxiliary_boiler boiler) (STV 1.0 0.9091)) +(: cnet_isa_b9934ef56b (IsA auxiliary_cell terrorist_cell) (STV 1.0 0.9091)) +(: cnet_isa_9ddf55e3f8 (IsA auxiliary_engine engine) (STV 1.0 0.9091)) +(: cnet_isa_401cf87890 (IsA auxiliary_operation operation) (STV 1.0 0.9091)) +(: cnet_isa_47b6b17db8 (IsA auxiliary_pump pump) (STV 1.0 0.9091)) +(: cnet_isa_32ce66f74e (IsA auxiliary_research_submarine submarine) (STV 1.0 0.9091)) +(: cnet_isa_7f6a33d5f1 (IsA auxiliary_storage memory_device) (STV 1.0 0.9091)) +(: cnet_isa_446e10fd1e (IsA auxiliary_verb verb) (STV 1.0 0.9091)) +(: cnet_isa_3799dda48f (IsA auxin phytohormone) (STV 1.0 0.9091)) +(: cnet_isa_ade0df696f (IsA avadavat weaver) (STV 1.0 0.9091)) +(: cnet_isa_97580599fc (IsA avahi mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_fddb3156a7 (IsA avail helpfulness) (STV 1.0 0.9091)) +(: cnet_isa_40d0cc3a05 (IsA avalanche happening) (STV 1.0 0.9091)) +(: cnet_isa_825cba0f90 (IsA avalanche slide) (STV 1.0 0.9091)) +(: cnet_isa_e3d92923bb (IsA avalanche_lily liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_b6ac858176 (IsA avant_garde artistic_movement) (STV 1.0 0.9091)) +(: cnet_isa_ceaa65ae36 (IsA avaram senna) (STV 1.0 0.9091)) +(: cnet_isa_33c2d51ab3 (IsA avarice mortal_sin) (STV 1.0 0.9091)) +(: cnet_isa_8e17ed84c6 (IsA avarice greed) (STV 1.0 0.9091)) +(: cnet_isa_18709fb55d (IsA avatar hindu_deity) (STV 1.0 0.9091)) +(: cnet_isa_fbc4adf19c (IsA avena plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_fa1b8c4f6e (IsA avenger attacker) (STV 1.0 0.9091)) +(: cnet_isa_901c2b79e7 (IsA aven subshrub) (STV 1.0 0.9091)) +(: cnet_isa_758866291e (IsA avenue street) (STV 1.0 0.9524)) +(: cnet_isa_e3bf6bc425 (IsA avenue approach) (STV 1.0 0.9091)) +(: cnet_isa_397e2f0478 (IsA average scale_value) (STV 1.0 0.9091)) +(: cnet_isa_4e503b18b4 (IsA average ratio) (STV 1.0 0.9091)) +(: cnet_isa_61a18388f6 (IsA average statistic) (STV 1.0 0.9091)) +(: cnet_isa_1de1ed1cff (IsA average_cost monetary_value) (STV 1.0 0.9091)) +(: cnet_isa_915036e946 (IsA averageness ordinariness) (STV 1.0 0.9091)) +(: cnet_isa_e3a7e3d366 (IsA averageness normality) (STV 1.0 0.9091)) +(: cnet_isa_d516693312 (IsA averrhoa rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b20686180c (IsA aversion avoidance) (STV 1.0 0.9091)) +(: cnet_isa_e78ee51cf8 (IsA aversion_therapy behavior_therapy) (STV 1.0 0.9091)) +(: cnet_isa_de11c0e3a2 (IsA aversive_conditioning conditioning) (STV 1.0 0.9091)) +(: cnet_isa_f8e62dc33a (IsA aversive_stimulus negative_stimulus) (STV 1.0 0.9091)) +(: cnet_isa_806dc978f7 (IsA averting prevention) (STV 1.0 0.9091)) +(: cnet_isa_9cec9aba99 (IsA ave class) (STV 1.0 0.9091)) +(: cnet_isa_9d57da0588 (IsA avestan iranian) (STV 1.0 0.9091)) +(: cnet_isa_541e2eb9ce (IsA avestan script) (STV 1.0 0.9091)) +(: cnet_isa_316e6bb5c0 (IsA aviary building) (STV 1.0 0.9091)) +(: cnet_isa_24aadbc830 (IsA aviation art) (STV 1.0 0.9091)) +(: cnet_isa_6ca61f4e57 (IsA aviation industry) (STV 1.0 0.9091)) +(: cnet_isa_7e307e3f97 (IsA aviation collection) (STV 1.0 0.9091)) +(: cnet_isa_8ffd844582 (IsA aviator skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_108d9d9f45 (IsA aviatrix aviator) (STV 1.0 0.9091)) +(: cnet_isa_a8f851ba83 (IsA avicennia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_87baba85e9 (IsA avicenniaceae asterid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_22c1172ce4 (IsA avifauna fauna) (STV 1.0 0.9091)) +(: cnet_isa_744cc25347 (IsA avionic aeronautic) (STV 1.0 0.9091)) +(: cnet_isa_cde545206d (IsA avitaminosis malnutrition) (STV 1.0 0.9091)) +(: cnet_isa_bcbfa49bad (IsA avo macao_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_5234eed44a (IsA avocado edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_57767f1760 (IsA avocado fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_f406d6115d (IsA avocado_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_cfaba5d7eb (IsA avocation pastime) (STV 1.0 0.9091)) +(: cnet_isa_bd989dd7c6 (IsA avocet shorebird) (STV 1.0 0.9091)) +(: cnet_isa_b058ea133a (IsA avogadro_s_law law) (STV 1.0 0.9091)) +(: cnet_isa_05e5401eb4 (IsA avogadro_s_number constant) (STV 1.0 0.9091)) +(: cnet_isa_0e69cbac0a (IsA avoidance rejection) (STV 1.0 0.9091)) +(: cnet_isa_6451c8494d (IsA avoirdupois system_of_weight) (STV 1.0 0.9091)) +(: cnet_isa_e0f39eadcf (IsA avoirdupois_unit mass_unit) (STV 1.0 0.9091)) +(: cnet_isa_dd4eae8350 (IsA avowal assertion) (STV 1.0 0.9091)) +(: cnet_isa_a173b9ad04 (IsA avower communicator) (STV 1.0 0.9091)) +(: cnet_isa_8196e4a8f0 (IsA avulsion separation) (STV 1.0 0.9091)) +(: cnet_isa_099a8cb7b6 (IsA avulsion change) (STV 1.0 0.9091)) +(: cnet_isa_75b002638f (IsA awakening arousal) (STV 1.0 0.9091)) +(: cnet_isa_ef4581056d (IsA award symbol) (STV 1.0 0.9091)) +(: cnet_isa_32314b04ec (IsA award grant) (STV 1.0 0.9091)) +(: cnet_isa_305dc18172 (IsA awareness consciousness) (STV 1.0 0.9091)) +(: cnet_isa_efe45bd223 (IsA awareness knowing) (STV 1.0 0.9091)) +(: cnet_isa_149e8ca031 (IsA away_game game) (STV 1.0 0.9091)) +(: cnet_isa_002f78eeef (IsA awayness absence) (STV 1.0 0.9091)) +(: cnet_isa_36164d47d7 (IsA awe emotion) (STV 1.0 0.9091)) +(: cnet_isa_21864d8d14 (IsA awe wonder) (STV 1.0 0.9091)) +(: cnet_isa_54cf04166f (IsA awfulness unpleasantness) (STV 1.0 0.9091)) +(: cnet_isa_3cbf89c58a (IsA awkwardness carriage) (STV 1.0 0.9091)) +(: cnet_isa_d8fe4c8080 (IsA awkwardness disadvantage) (STV 1.0 0.9091)) +(: cnet_isa_b909898194 (IsA awkwardness inelegance) (STV 1.0 0.9091)) +(: cnet_isa_45a619bead (IsA awkwardness troublesomeness) (STV 1.0 0.9091)) +(: cnet_isa_a81890408f (IsA awkwardness unskillfulness) (STV 1.0 0.9091)) +(: cnet_isa_48694f73e5 (IsA awl hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_0c12dec6ef (IsA awlwort aquatic_plant) (STV 1.0 0.9091)) +(: cnet_isa_8938462851 (IsA awn beard) (STV 1.0 0.9091)) +(: cnet_isa_6074fc67ee (IsA awning canopy) (STV 1.0 0.9091)) +(: cnet_isa_ca3814e3dc (IsA awnless_bromegrass brome) (STV 1.0 0.9091)) +(: cnet_isa_e95929b272 (IsA awol absentee) (STV 1.0 0.9091)) +(: cnet_isa_66f090e495 (IsA ax edge_tool) (STV 1.0 0.9091)) +(: cnet_isa_e103bf181f (IsA ax_handle handle) (STV 1.0 0.9091)) +(: cnet_isa_a57afb40bc (IsA ax_head wedge) (STV 1.0 0.9091)) +(: cnet_isa_f19613e314 (IsA axe tool) (STV 1.0 0.9608)) +(: cnet_isa_69825c23af (IsA axial_muscle skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_a3552db17d (IsA axial_rotation rotation) (STV 1.0 0.9091)) +(: cnet_isa_865bd2b064 (IsA axial_skeleton skeletal_structure) (STV 1.0 0.9091)) +(: cnet_isa_a499617bf3 (IsA axial_vector vector) (STV 1.0 0.9091)) +(: cnet_isa_e2ab6166df (IsA axil angle) (STV 1.0 0.9091)) +(: cnet_isa_3e0cb03813 (IsA axile_placentation placentation) (STV 1.0 0.9091)) +(: cnet_isa_84c364108e (IsA axillary_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_db41bd1a44 (IsA axillary_node lymph_node) (STV 1.0 0.9091)) +(: cnet_isa_520cf614b1 (IsA axillary_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_ac6f31d78c (IsA axiology philosophy) (STV 1.0 0.9091)) +(: cnet_isa_0873468669 (IsA axiom proposition) (STV 1.0 0.9091)) +(: cnet_isa_970d182f49 (IsA axis mechanism) (STV 1.0 0.9091)) +(: cnet_isa_f8965b8abb (IsA axis cervical_vertebra) (STV 1.0 0.9091)) +(: cnet_isa_2ac7595a87 (IsA axis line) (STV 1.0 0.9091)) +(: cnet_isa_79b9452d80 (IsA axis alliance) (STV 1.0 0.9091)) +(: cnet_isa_bdc188bb00 (IsA axis stalk) (STV 1.0 0.9091)) +(: cnet_isa_b858b1efa1 (IsA axle shaft) (STV 1.0 0.9091)) +(: cnet_isa_ff25430ab0 (IsA axle_bar axletree) (STV 1.0 0.9091)) +(: cnet_isa_a838ff344a (IsA axle_grease grease) (STV 1.0 0.9091)) +(: cnet_isa_c962882b8c (IsA axletree dead_axle) (STV 1.0 0.9091)) +(: cnet_isa_5d3b719edb (IsA axolemma membrane) (STV 1.0 0.9091)) +(: cnet_isa_8c854b3021 (IsA axolotl ambystomid) (STV 1.0 0.9091)) +(: cnet_isa_e4d0cc83b7 (IsA axon nerve_fiber) (STV 1.0 0.9091)) +(: cnet_isa_e711f71df5 (IsA axseed coronilla) (STV 1.0 0.9091)) +(: cnet_isa_8eb58c380d (IsA ayah domestic) (STV 1.0 0.9091)) +(: cnet_isa_4c59a9c565 (IsA ayapana herb) (STV 1.0 0.9091)) +(: cnet_isa_447eaf86bb (IsA ayatollah religious_leader) (STV 1.0 0.9091)) +(: cnet_isa_b850fa268b (IsA aye_aye lemur) (STV 1.0 0.9091)) +(: cnet_isa_5a2ab27fd9 (IsA ayin letter) (STV 1.0 0.9091)) +(: cnet_isa_0ca1afed05 (IsA ayrshire dairy_cattle) (STV 1.0 0.9091)) +(: cnet_isa_06bb681295 (IsA aythya bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_b5cf74328d (IsA azadirachta rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7ba146ce13 (IsA azadirachtin organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_cf3ecc810c (IsA azalea rhododendron) (STV 1.0 0.9091)) +(: cnet_isa_6811e60a43 (IsA azerbaijani turki) (STV 1.0 0.9091)) +(: cnet_isa_2bc0537ec1 (IsA azerbaijani_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_a29b498f7a (IsA azeri ethnic_group) (STV 1.0 0.9091)) +(: cnet_isa_f8cddb8eed (IsA azide compound) (STV 1.0 0.9091)) +(: cnet_isa_120ad44af2 (IsA azido_group group) (STV 1.0 0.9091)) +(: cnet_isa_9ad66fc242 (IsA azimuth angle) (STV 1.0 0.9091)) +(: cnet_isa_7026e2f422 (IsA azo_dye dye) (STV 1.0 0.9091)) +(: cnet_isa_42357ee30c (IsA azo_group group) (STV 1.0 0.9091)) +(: cnet_isa_d5b63be8d0 (IsA azolla fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_558490ac1a (IsA azollaceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_5af894dbe0 (IsA azote nitrogen) (STV 1.0 0.9091)) +(: cnet_isa_39cc86677c (IsA azoturia pathology) (STV 1.0 0.9091)) +(: cnet_isa_d09b4bae22 (IsA aztec nahuatl) (STV 1.0 0.9091)) +(: cnet_isa_338dcf220c (IsA aztecan uto_aztecan) (STV 1.0 0.9091)) +(: cnet_isa_9ac7f659ce (IsA azure blue) (STV 1.0 0.9091)) +(: cnet_isa_ca81d6d0d2 (IsA azure_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_1bdf78319a (IsA azurite malachite) (STV 1.0 0.9091)) +(: cnet_isa_78df1d50f9 (IsA azygo_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_887d0fb7d5 (IsA azymia pathology) (STV 1.0 0.9091)) +(: cnet_isa_f6ac07fa1e (IsA b blood_group) (STV 1.0 0.9091)) +(: cnet_isa_04d37bb41e (IsA b letter) (STV 1.0 0.9091)) +(: cnet_isa_7b98a091f2 (IsA b_battery battery) (STV 1.0 0.9091)) +(: cnet_isa_f507f2653b (IsA b_cell lymphocyte) (STV 1.0 0.9091)) +(: cnet_isa_31ba97a6bd (IsA b_complex_vitamin water_soluble_vitamin) (STV 1.0 0.9091)) +(: cnet_isa_a51f6c7eb1 (IsA b_flat_clarinet clarinet) (STV 1.0 0.9091)) +(: cnet_isa_f28a5545e6 (IsA b_meson meson) (STV 1.0 0.9091)) +(: cnet_isa_93e395537e (IsA b_scan_ultrasonography sonography) (STV 1.0 0.9091)) +(: cnet_isa_b513f309bd (IsA b_tree tree) (STV 1.0 0.9339)) +(: cnet_isa_694d8410fe (IsA baa cry) (STV 1.0 0.9091)) +(: cnet_isa_9b013800f5 (IsA baa_lamb lamb) (STV 1.0 0.9091)) +(: cnet_isa_7d383d6ed8 (IsA baa foreman) (STV 1.0 0.9091)) +(: cnet_isa_766479613b (IsA baba cake) (STV 1.0 0.9091)) +(: cnet_isa_24717a26ae (IsA baba_au_rhum baba) (STV 1.0 0.9091)) +(: cnet_isa_1ca5ca9a32 (IsA babassu feather_palm) (STV 1.0 0.9091)) +(: cnet_isa_07d8b61d00 (IsA babassu_nut seed) (STV 1.0 0.9091)) +(: cnet_isa_f5dda96b42 (IsA babassu_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_c3e26fc27d (IsA babbitt_metal alloy) (STV 1.0 0.9091)) +(: cnet_isa_17b9a4b120 (IsA babbitting lining) (STV 1.0 0.9091)) +(: cnet_isa_3796213e68 (IsA babble gibberish) (STV 1.0 0.9091)) +(: cnet_isa_2eb9d6d129 (IsA babbler oscine) (STV 1.0 0.9091)) +(: cnet_isa_f06222fe49 (IsA babe_ruth baseball_player) (STV 1.0 0.9091)) +(: cnet_isa_d6f0bcebc0 (IsA babel confusion) (STV 1.0 0.9091)) +(: cnet_isa_01dac38d83 (IsA babesiidae protoctist_family) (STV 1.0 0.9091)) +(: cnet_isa_a5609feea2 (IsA babinski reflex) (STV 1.0 0.9091)) +(: cnet_isa_a829933307 (IsA babirusa swine) (STV 1.0 0.9091)) +(: cnet_isa_cce528315f (IsA babka coffeecake) (STV 1.0 0.9091)) +(: cnet_isa_2798d589bb (IsA baboon primate) (STV 1.0 0.9091)) +(: cnet_isa_c66cf99c5b (IsA baboon old_world_monkey) (STV 1.0 0.9091)) +(: cnet_isa_8788cb2f37 (IsA babu man) (STV 1.0 0.9091)) +(: cnet_isa_ab83a0cad1 (IsA babushka headscarf) (STV 1.0 0.9091)) +(: cnet_isa_cf3ca6749c (IsA baby_s_breath flower) (STV 1.0 0.9091)) +(: cnet_isa_b45747d959 (IsA baby_s_tear groundcover) (STV 1.0 0.9091)) +(: cnet_isa_16712640ba (IsA baby newborn_human) (STV 1.0 0.9091)) +(: cnet_isa_e11b500d30 (IsA baby very_young_child) (STV 1.0 0.9636)) +(: cnet_isa_505331218c (IsA baby undertaking) (STV 1.0 0.9091)) +(: cnet_isa_3946d041c3 (IsA baby young_mammal) (STV 1.0 0.9091)) +(: cnet_isa_ae89ef21f7 (IsA baby child) (STV 1.0 0.9091)) +(: cnet_isa_fbfff0bdb6 (IsA baby fetus) (STV 1.0 0.9091)) +(: cnet_isa_c56bbb99c6 (IsA baby offspring) (STV 1.0 0.9091)) +(: cnet_isa_52352b5990 (IsA baby_bed furniture) (STV 1.0 0.9091)) +(: cnet_isa_a8c977dcfb (IsA baby_blue_eye herb) (STV 1.0 0.9091)) +(: cnet_isa_5a5255d099 (IsA baby_boom generation) (STV 1.0 0.9091)) +(: cnet_isa_c1a27fd1ee (IsA baby_boomer person) (STV 1.0 0.9091)) +(: cnet_isa_b2f8ad03a1 (IsA baby_buggy wheeled_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_757053343f (IsA baby_buster person) (STV 1.0 0.9091)) +(: cnet_isa_59f14dbc6d (IsA baby_doctor specialist) (STV 1.0 0.9091)) +(: cnet_isa_54d71846f6 (IsA baby_farmer keeper) (STV 1.0 0.9091)) +(: cnet_isa_5dd491fd64 (IsA baby_grand grand_piano) (STV 1.0 0.9091)) +(: cnet_isa_56509352cb (IsA baby_oil good_lubricant_for_masturbation) (STV 1.0 0.9091)) +(: cnet_isa_9d94af59f3 (IsA baby_oil ointment) (STV 1.0 0.9091)) +(: cnet_isa_0a9a2d50c3 (IsA baby_powder powder) (STV 1.0 0.9091)) +(: cnet_isa_1609008537 (IsA baby_shoe shoe) (STV 1.0 0.9091)) +(: cnet_isa_f15b239075 (IsA baby_talk non_standard_speech) (STV 1.0 0.9091)) +(: cnet_isa_0fc74ef2d3 (IsA babylonian cuneiform) (STV 1.0 0.9091)) +(: cnet_isa_8abb2832a3 (IsA babylonian semite) (STV 1.0 0.9091)) +(: cnet_isa_57f11ac7f6 (IsA babyminder keeper) (STV 1.0 0.9091)) +(: cnet_isa_394e97911a (IsA babyrousa mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_1aa5a95c43 (IsA babysitter keeper) (STV 1.0 0.9091)) +(: cnet_isa_75f27796e0 (IsA babysitting care) (STV 1.0 0.9091)) +(: cnet_isa_fee97e19d8 (IsA baccalaureate sermon) (STV 1.0 0.9091)) +(: cnet_isa_d91d6f8348 (IsA baccarat card_game) (STV 1.0 0.9091)) +(: cnet_isa_685631d225 (IsA bacchant fan) (STV 1.0 0.9091)) +(: cnet_isa_c139921785 (IsA bacchant votary) (STV 1.0 0.9091)) +(: cnet_isa_2363dae0ee (IsA bacchante votary) (STV 1.0 0.9091)) +(: cnet_isa_6c38896b48 (IsA baccharis asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0aa5d4c834 (IsA bach music) (STV 1.0 0.9091)) +(: cnet_isa_120e5a0082 (IsA bachelor_s_degree academic_degree) (STV 1.0 0.9091)) +(: cnet_isa_090583be6d (IsA bachelor man) (STV 1.0 0.9091)) +(: cnet_isa_77c2915157 (IsA bachelor_girl woman) (STV 1.0 0.9091)) +(: cnet_isa_258b0fe462 (IsA bachelor_of_art bachelor_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_84f2203dfd (IsA bachelor_of_art_in_library_science bachelor_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_98eaa1fd2e (IsA bachelor_of_art_in_nursing bachelor_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_31534b5c2d (IsA bachelor_of_divinity bachelor_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_ab9b96f81d (IsA bachelor_of_law law_degree) (STV 1.0 0.9091)) +(: cnet_isa_410d05f37f (IsA bachelor_of_literature bachelor_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_b3277992c7 (IsA bachelor_of_medicine bachelor_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_1c7422c514 (IsA bachelor_of_music bachelor_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_1b45b2dad4 (IsA bachelor_of_naval_science bachelor_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_5a76c325d4 (IsA bachelor_of_science bachelor_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_3645440683 (IsA bachelor_of_science_in_architecture bachelor_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_dc2078e428 (IsA bachelor_of_science_in_engineering bachelor_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_b324e1162e (IsA bachelor_of_theology bachelor_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_0702619db0 (IsA bachelor_party stag_party) (STV 1.0 0.9091)) +(: cnet_isa_47b0507a9b (IsA bachelorhood marital_status) (STV 1.0 0.9091)) +(: cnet_isa_4078a24ad6 (IsA bachelorhood time_of_life) (STV 1.0 0.9091)) +(: cnet_isa_4b4636fd9a (IsA bacillaceae bacteria_family) (STV 1.0 0.9091)) +(: cnet_isa_6f6d4e406e (IsA bacillariophyceae class) (STV 1.0 0.9091)) +(: cnet_isa_ee47d170b0 (IsA bacillus eubacteria) (STV 1.0 0.9091)) +(: cnet_isa_107ac33843 (IsA bacillus_anthracis bacillus) (STV 1.0 0.9091)) +(: cnet_isa_94c368dd7e (IsA bacillus_anthracis bioweapon) (STV 1.0 0.9091)) +(: cnet_isa_cdc348be63 (IsA bacillus_subtilis bacillus) (STV 1.0 0.9091)) +(: cnet_isa_c89facf99d (IsA bacitracin antibiotic) (STV 1.0 0.9091)) +(: cnet_isa_376dbeab43 (IsA back position) (STV 1.0 0.9091)) +(: cnet_isa_4fb090ce86 (IsA back cloth_covering) (STV 1.0 0.9091)) +(: cnet_isa_49faf4124c (IsA back support) (STV 1.0 0.9091)) +(: cnet_isa_3ccde358ec (IsA back body_part) (STV 1.0 0.9091)) +(: cnet_isa_5e7bbc319c (IsA back football_player) (STV 1.0 0.9091)) +(: cnet_isa_1568c8fe40 (IsA back_brace brace) (STV 1.0 0.9091)) +(: cnet_isa_ecf631b90a (IsA back_burner precedence) (STV 1.0 0.9091)) +(: cnet_isa_2624b37c95 (IsA back_channel channel) (STV 1.0 0.9091)) +(: cnet_isa_b6aaaa255a (IsA back_circle acrobatic_stunt) (STV 1.0 0.9091)) +(: cnet_isa_f337f878ec (IsA back_door access) (STV 1.0 0.9091)) +(: cnet_isa_6eefdd393a (IsA back_door exterior_door) (STV 1.0 0.9091)) +(: cnet_isa_2a47454ff0 (IsA back_exercise exercise) (STV 1.0 0.9091)) +(: cnet_isa_19d32d53fc (IsA back_formation word) (STV 1.0 0.9091)) +(: cnet_isa_1959ef4b35 (IsA back_judge football_official) (STV 1.0 0.9091)) +(: cnet_isa_8cc2b181a8 (IsA back_matter matter) (STV 1.0 0.9091)) +(: cnet_isa_348503fada (IsA back_of_beyond depth) (STV 1.0 0.9091)) +(: cnet_isa_6b04a6ea5e (IsA back_porch porch) (STV 1.0 0.9091)) +(: cnet_isa_fe5b34667d (IsA back_room room) (STV 1.0 0.9091)) +(: cnet_isa_c55afc47fe (IsA back_tooth tooth) (STV 1.0 0.9091)) +(: cnet_isa_b8fb76b943 (IsA backache ache) (STV 1.0 0.9091)) +(: cnet_isa_a47d1f41c8 (IsA backband band) (STV 1.0 0.9091)) +(: cnet_isa_af91876340 (IsA backbeat rhythm) (STV 1.0 0.9091)) +(: cnet_isa_7b416ebc92 (IsA backbench seat) (STV 1.0 0.9091)) +(: cnet_isa_6e9c0e205c (IsA backbencher legislator) (STV 1.0 0.9091)) +(: cnet_isa_47e38b89e8 (IsA backbend acrobatic_stunt) (STV 1.0 0.9091)) +(: cnet_isa_5ddd4f30a0 (IsA backblast blowback) (STV 1.0 0.9091)) +(: cnet_isa_498a092d2f (IsA backboard support) (STV 1.0 0.9091)) +(: cnet_isa_5f0250333a (IsA backboard game_equipment) (STV 1.0 0.9091)) +(: cnet_isa_cea4511242 (IsA backbone connection) (STV 1.0 0.9091)) +(: cnet_isa_30e666ec27 (IsA backbone part) (STV 1.0 0.9091)) +(: cnet_isa_df79ba4497 (IsA backbone fortitude) (STV 1.0 0.9091)) +(: cnet_isa_f103775083 (IsA backdoor access_code) (STV 1.0 0.9091)) +(: cnet_isa_cd78095861 (IsA backdrop scenery) (STV 1.0 0.9091)) +(: cnet_isa_aa07aa5fdb (IsA backfield formation) (STV 1.0 0.9091)) +(: cnet_isa_9fdd752e47 (IsA backfire miscalculation) (STV 1.0 0.9091)) +(: cnet_isa_4f1a41c345 (IsA backfire explosion) (STV 1.0 0.9091)) +(: cnet_isa_d582061b6d (IsA backfire fire) (STV 1.0 0.9091)) +(: cnet_isa_94e40ad120 (IsA backflow flow) (STV 1.0 0.9091)) +(: cnet_isa_b1a9d1d7a7 (IsA backgammon board_game_for_two_player) (STV 1.0 0.9091)) +(: cnet_isa_a0bace846f (IsA backgammon board_game_with_two_player) (STV 1.0 0.9091)) +(: cnet_isa_0be6916e68 (IsA backgammon game_of_strategy) (STV 1.0 0.9091)) +(: cnet_isa_b492c9e5a2 (IsA backgammon board_game) (STV 1.0 0.9091)) +(: cnet_isa_d0d603a36c (IsA backgammon_board board) (STV 1.0 0.9091)) +(: cnet_isa_9f620abfc0 (IsA background inheritance) (STV 1.0 0.9091)) +(: cnet_isa_150602acd9 (IsA background information) (STV 1.0 0.9091)) +(: cnet_isa_0d3cc106cd (IsA background view) (STV 1.0 0.9091)) +(: cnet_isa_dd9e669656 (IsA background screen) (STV 1.0 0.9091)) +(: cnet_isa_b663a018eb (IsA background accompaniment) (STV 1.0 0.9091)) +(: cnet_isa_1648ecc1e5 (IsA background noise) (STV 1.0 0.9091)) +(: cnet_isa_bb4600e3ef (IsA background_noise background) (STV 1.0 0.9091)) +(: cnet_isa_02ddbdd4f4 (IsA background_processing priority_processing) (STV 1.0 0.9091)) +(: cnet_isa_15dec7b78e (IsA background_radiation background) (STV 1.0 0.9091)) +(: cnet_isa_63ad2cf291 (IsA backgrounder press_conference) (STV 1.0 0.9091)) +(: cnet_isa_93296f26c9 (IsA backhand return) (STV 1.0 0.9091)) +(: cnet_isa_9ed2500991 (IsA backhand_drive drive) (STV 1.0 0.9091)) +(: cnet_isa_6ca4314cea (IsA backhander blow) (STV 1.0 0.9091)) +(: cnet_isa_3706a1e066 (IsA backhoe power_shovel) (STV 1.0 0.9091)) +(: cnet_isa_30d867b231 (IsA backing blessing) (STV 1.0 0.9091)) +(: cnet_isa_c683df698a (IsA backing layer) (STV 1.0 0.9091)) +(: cnet_isa_67a884d573 (IsA backing strengthener) (STV 1.0 0.9091)) +(: cnet_isa_e052d34e19 (IsA backlash reaction) (STV 1.0 0.9091)) +(: cnet_isa_7802f57144 (IsA backlighting lighting) (STV 1.0 0.9091)) +(: cnet_isa_0a1f9b3535 (IsA backlog collection) (STV 1.0 0.9091)) +(: cnet_isa_6ac5fd91e1 (IsA backlog firewood) (STV 1.0 0.9091)) +(: cnet_isa_3ef4adbffe (IsA backpack bag) (STV 1.0 0.9091)) +(: cnet_isa_c4d7654499 (IsA backpacker hiker) (STV 1.0 0.9091)) +(: cnet_isa_d6f4458fb5 (IsA backpacking_tent tent) (STV 1.0 0.9091)) +(: cnet_isa_d10a93aea5 (IsA backplate armor_plate) (STV 1.0 0.9091)) +(: cnet_isa_05be59ffe4 (IsA backroom facility) (STV 1.0 0.9091)) +(: cnet_isa_ccbc21f831 (IsA backroom_boy adviser) (STV 1.0 0.9091)) +(: cnet_isa_5f4b57da35 (IsA backsaw handsaw) (STV 1.0 0.9091)) +(: cnet_isa_5777328f45 (IsA backscratcher scratcher) (STV 1.0 0.9091)) +(: cnet_isa_5a8dd855a4 (IsA backscratcher opportunist) (STV 1.0 0.9091)) +(: cnet_isa_d676309e7b (IsA backseat seat) (STV 1.0 0.9091)) +(: cnet_isa_549fa97814 (IsA backseat inferiority) (STV 1.0 0.9091)) +(: cnet_isa_81ed44504a (IsA backseat_driver meddler) (STV 1.0 0.9091)) +(: cnet_isa_80eb257dff (IsA backslapper enthusiast) (STV 1.0 0.9091)) +(: cnet_isa_71fe0e3b73 (IsA backsliding failure) (STV 1.0 0.9091)) +(: cnet_isa_7f2e6531be (IsA backspace_character control_character) (STV 1.0 0.9091)) +(: cnet_isa_45f62c53bc (IsA backspace_key key) (STV 1.0 0.9091)) +(: cnet_isa_98db3dbc16 (IsA backspin spin) (STV 1.0 0.9091)) +(: cnet_isa_60271e4f68 (IsA backstair stairway) (STV 1.0 0.9091)) +(: cnet_isa_c672e1f0ad (IsA backstay stay) (STV 1.0 0.9091)) +(: cnet_isa_94fb78a662 (IsA backstitch embroidery_stitch) (STV 1.0 0.9091)) +(: cnet_isa_87e8467f32 (IsA backstop precaution) (STV 1.0 0.9091)) +(: cnet_isa_cade627679 (IsA backstop fence) (STV 1.0 0.9091)) +(: cnet_isa_cf444a3af2 (IsA backstroke swimming_stroke) (STV 1.0 0.9091)) +(: cnet_isa_4991f4642f (IsA backstroker swimmer) (STV 1.0 0.9091)) +(: cnet_isa_b246e78032 (IsA backstroke for_swimmer) (STV 1.0 0.9091)) +(: cnet_isa_d2dbe52bbe (IsA backswimmer hemipterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_56236660dc (IsA backsword sword) (STV 1.0 0.9091)) +(: cnet_isa_798527db38 (IsA backup duplicate) (STV 1.0 0.9091)) +(: cnet_isa_2e71e57e75 (IsA backup accretion) (STV 1.0 0.9091)) +(: cnet_isa_2e73dd5ca4 (IsA backup_file computer_file) (STV 1.0 0.9091)) +(: cnet_isa_5113db4ea3 (IsA backup_system computer_system) (STV 1.0 0.9091)) +(: cnet_isa_305abd1ad7 (IsA backwater region) (STV 1.0 0.9091)) +(: cnet_isa_f50727aeb4 (IsA backwater body_of_water) (STV 1.0 0.9091)) +(: cnet_isa_16e253a6d9 (IsA backwood country) (STV 1.0 0.9091)) +(: cnet_isa_9b13966e63 (IsA backyard yard) (STV 1.0 0.9091)) +(: cnet_isa_95bd62b7f4 (IsA bacon cut_of_pork) (STV 1.0 0.9091)) +(: cnet_isa_542afddec8 (IsA bacon_and_egg dish) (STV 1.0 0.9091)) +(: cnet_isa_dd9501cf1f (IsA bacon_lettuce_tomato_sandwich sandwich) (STV 1.0 0.9091)) +(: cnet_isa_31925dedd1 (IsA bacon_rind rind) (STV 1.0 0.9091)) +(: cnet_isa_424253f914 (IsA bacon_strip bacon) (STV 1.0 0.9091)) +(: cnet_isa_084e2ef0c5 (IsA bacteremia pathology) (STV 1.0 0.9091)) +(: cnet_isa_555268b0f7 (IsA bacteria microorganism) (STV 1.0 0.9091)) +(: cnet_isa_2ee7293c88 (IsA bacteria_bed filter) (STV 1.0 0.9091)) +(: cnet_isa_183caf9d71 (IsA bacteria_family family) (STV 1.0 0.9091)) +(: cnet_isa_4bbac81cac (IsA bacteria_genus genus) (STV 1.0 0.9091)) +(: cnet_isa_9151291809 (IsA bacteria_order ordering) (STV 1.0 0.9091)) +(: cnet_isa_bdc51d535a (IsA bacteria_specy specy) (STV 1.0 0.9091)) +(: cnet_isa_e2d630b1bb (IsA bacterial_toxin toxin) (STV 1.0 0.9091)) +(: cnet_isa_b446fd8d3a (IsA bactericide chemical) (STV 1.0 0.9091)) +(: cnet_isa_c890c2cb7f (IsA bacteriochlorophyll pigment) (STV 1.0 0.9091)) +(: cnet_isa_4639e70700 (IsA bacteriologist biologist) (STV 1.0 0.9091)) +(: cnet_isa_f098162751 (IsA bacteriology medicine) (STV 1.0 0.9091)) +(: cnet_isa_adab770ff9 (IsA bacteriolysis lysis) (STV 1.0 0.9091)) +(: cnet_isa_ce9798330d (IsA bacteriophage virus) (STV 1.0 0.9091)) +(: cnet_isa_868295a327 (IsA bacteriostasis organic_process) (STV 1.0 0.9091)) +(: cnet_isa_6721093601 (IsA bacteriostat agent) (STV 1.0 0.9091)) +(: cnet_isa_9e21954fda (IsA bacteroid bacteria) (STV 1.0 0.9091)) +(: cnet_isa_8913af3986 (IsA bacteroidaceae bacteria_family) (STV 1.0 0.9091)) +(: cnet_isa_4c6818fbfd (IsA bacteroide bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_2e241fe80e (IsA bactrian_camel camel) (STV 1.0 0.9091)) +(: cnet_isa_aaad174891 (IsA bad quality) (STV 1.0 0.9091)) +(: cnet_isa_33d817889c (IsA bad_block block) (STV 1.0 0.9091)) +(: cnet_isa_a793801bf7 (IsA bad_check check) (STV 1.0 0.9091)) +(: cnet_isa_cb701cf114 (IsA bad_debt debt) (STV 1.0 0.9091)) +(: cnet_isa_32d4f97081 (IsA bad_egg bad_person) (STV 1.0 0.9091)) +(: cnet_isa_13e2997e87 (IsA bad_fairy evil_spirit) (STV 1.0 0.9091)) +(: cnet_isa_fe125607b6 (IsA bad_guy person) (STV 1.0 0.9091)) +(: cnet_isa_4667c5448d (IsA bad_luck luck) (STV 1.0 0.9091)) +(: cnet_isa_997b3415c9 (IsA bad_manner impoliteness) (STV 1.0 0.9091)) +(: cnet_isa_dee93ffcea (IsA bad_person person) (STV 1.0 0.9091)) +(: cnet_isa_a4df774ac6 (IsA bad_temper anger) (STV 1.0 0.9091)) +(: cnet_isa_9abb008142 (IsA bad_weather weather) (STV 1.0 0.9091)) +(: cnet_isa_d636ed7725 (IsA badaga kannada) (STV 1.0 0.9091)) +(: cnet_isa_60e63ab9b6 (IsA badaga dravidian) (STV 1.0 0.9091)) +(: cnet_isa_f7ab40af8c (IsA baddeleyite mineral) (STV 1.0 0.9091)) +(: cnet_isa_f6eafe7132 (IsA bade west_chadic) (STV 1.0 0.9091)) +(: cnet_isa_1117be7f97 (IsA badge feature) (STV 1.0 0.9091)) +(: cnet_isa_b94ccd490c (IsA badge emblem) (STV 1.0 0.9091)) +(: cnet_isa_7780fbff9e (IsA badger mammal) (STV 1.0 0.9091)) +(: cnet_isa_738f0d485e (IsA badger musteline_mammal) (STV 1.0 0.9091)) +(: cnet_isa_50d55e9fa6 (IsA badger american) (STV 1.0 0.9091)) +(: cnet_isa_389dabcb92 (IsA badgering harassment) (STV 1.0 0.9091)) +(: cnet_isa_debf0262c0 (IsA badinage banter) (STV 1.0 0.9091)) +(: cnet_isa_8a53a45450 (IsA badland land) (STV 1.0 0.9091)) +(: cnet_isa_a73c073a51 (IsA badminton fun_game) (STV 1.0 0.9091)) +(: cnet_isa_52186a016e (IsA badminton game) (STV 1.0 0.9091)) +(: cnet_isa_21e8626b03 (IsA badminton sport) (STV 1.0 0.9659)) +(: cnet_isa_cc5c69fe26 (IsA badminton court_game) (STV 1.0 0.9091)) +(: cnet_isa_36fd39dd53 (IsA badminton_court court) (STV 1.0 0.9091)) +(: cnet_isa_7a209e13c0 (IsA badminton_equipment sport_equipment) (STV 1.0 0.9091)) +(: cnet_isa_9469980d72 (IsA badminton_player athlete) (STV 1.0 0.9091)) +(: cnet_isa_1b4a811205 (IsA badminton_racket racket) (STV 1.0 0.9091)) +(: cnet_isa_4301c0d0f7 (IsA badness intensity) (STV 1.0 0.9091)) +(: cnet_isa_46a0f3b0d7 (IsA baedeker travel_guidebook) (STV 1.0 0.9091)) +(: cnet_isa_a59cc09731 (IsA baffle plate) (STV 1.0 0.9091)) +(: cnet_isa_3aa46ba3f2 (IsA baffled people) (STV 1.0 0.9091)) +(: cnet_isa_da362a5c3c (IsA bag baggage) (STV 1.0 0.9091)) +(: cnet_isa_dce86cc6d3 (IsA bag container) (STV 1.0 0.9091)) +(: cnet_isa_09f8962968 (IsA bag unpleasant_woman) (STV 1.0 0.9091)) +(: cnet_isa_0518a94022 (IsA bag containerful) (STV 1.0 0.9091)) +(: cnet_isa_dba7ada0b6 (IsA bag indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_cc9757b93b (IsA bag_lady homeless) (STV 1.0 0.9091)) +(: cnet_isa_fa96c7cd09 (IsA bag_of_trick know_how) (STV 1.0 0.9091)) +(: cnet_isa_a8eb5fdcd3 (IsA bagasse pulp) (STV 1.0 0.9091)) +(: cnet_isa_b6ad6cb58d (IsA bagassosis alveolitis) (STV 1.0 0.9091)) +(: cnet_isa_6b9d1732b5 (IsA bagatelle table_game) (STV 1.0 0.9091)) +(: cnet_isa_86a3dc3c5b (IsA bagatelle triviality) (STV 1.0 0.9091)) +(: cnet_isa_67ca728477 (IsA bagatelle musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_0c03ad91ef (IsA bagel bun) (STV 1.0 0.9091)) +(: cnet_isa_9b440b158b (IsA baggage case) (STV 1.0 0.9091)) +(: cnet_isa_525c2936c9 (IsA baggage materiel) (STV 1.0 0.9091)) +(: cnet_isa_7e591d3ffb (IsA baggage woman) (STV 1.0 0.9091)) +(: cnet_isa_6d1cc8ab90 (IsA baggage_car car) (STV 1.0 0.9091)) +(: cnet_isa_a84e9271a3 (IsA baggage_claim area) (STV 1.0 0.9091)) +(: cnet_isa_13133af7f6 (IsA baggageman attendant) (STV 1.0 0.9091)) +(: cnet_isa_fff5724e3b (IsA bagger machine) (STV 1.0 0.9091)) +(: cnet_isa_955fa2a766 (IsA bagman racketeer) (STV 1.0 0.9091)) +(: cnet_isa_a0ab99507a (IsA bagpipe pipe) (STV 1.0 0.9091)) +(: cnet_isa_ae001e2d9a (IsA bagpipe musical_instrument) (STV 1.0 0.9339)) +(: cnet_isa_bbf572d141 (IsA baguet french_bread) (STV 1.0 0.9091)) +(: cnet_isa_85b65da8e2 (IsA bahai disciple) (STV 1.0 0.9091)) +(: cnet_isa_f5d49d29ff (IsA bahai teacher) (STV 1.0 0.9091)) +(: cnet_isa_b422c9e635 (IsA bahaism religion) (STV 1.0 0.9091)) +(: cnet_isa_0eb573b668 (IsA bahamian west_indian) (STV 1.0 0.9091)) +(: cnet_isa_ef61f8dcfb (IsA bahamian_dollar dollar) (STV 1.0 0.9091)) +(: cnet_isa_5ea6b2de76 (IsA bahia_grass grass) (STV 1.0 0.9091)) +(: cnet_isa_89dd7c22c4 (IsA bahrain_dinar bahrainian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_702ca52e4a (IsA bahrainian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_c30b1428c2 (IsA bahreini arabian) (STV 1.0 0.9091)) +(: cnet_isa_386f632535 (IsA baht thai_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_5b28937f0c (IsA bai tibeto_burman) (STV 1.0 0.9091)) +(: cnet_isa_3847538936 (IsA bail recognizance) (STV 1.0 0.9091)) +(: cnet_isa_1c3a4a85bb (IsA bail legal_system) (STV 1.0 0.9091)) +(: cnet_isa_81f1d73c04 (IsA bailee agent) (STV 1.0 0.9091)) +(: cnet_isa_203dcc1413 (IsA bailey court) (STV 1.0 0.9091)) +(: cnet_isa_994d34fefe (IsA bailey rampart) (STV 1.0 0.9091)) +(: cnet_isa_e68feb1579 (IsA bailey_bridge bridge) (STV 1.0 0.9091)) +(: cnet_isa_2776d8b67e (IsA bailiff official) (STV 1.0 0.9091)) +(: cnet_isa_f081b747ef (IsA bailiffship position) (STV 1.0 0.9091)) +(: cnet_isa_0864764db7 (IsA bailiwick jurisdiction) (STV 1.0 0.9091)) +(: cnet_isa_dad358f70b (IsA bailment delivery) (STV 1.0 0.9091)) +(: cnet_isa_7ccc93f80b (IsA bailor deliverer) (STV 1.0 0.9091)) +(: cnet_isa_45b5b96161 (IsA bain_marie pan) (STV 1.0 0.9091)) +(: cnet_isa_c354286cb0 (IsA baiomy mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_2b737c87f6 (IsA bairdiella fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_efeb2e31e2 (IsA bairn child) (STV 1.0 0.9091)) +(: cnet_isa_764da2c37b (IsA baisakh hindu_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_c0d5b5f0c6 (IsA bait device) (STV 1.0 0.9091)) +(: cnet_isa_38d5baf547 (IsA bait temptation) (STV 1.0 0.9091)) +(: cnet_isa_83a330e4d6 (IsA bait_and_switch selling) (STV 1.0 0.9091)) +(: cnet_isa_ce078d379f (IsA bait_casting casting) (STV 1.0 0.9091)) +(: cnet_isa_5f99b694bc (IsA baiting harassment) (STV 1.0 0.9091)) +(: cnet_isa_f504d61871 (IsA baiza omani_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_15c1e94a3f (IsA baize fabric) (STV 1.0 0.9091)) +(: cnet_isa_8f131a3f0d (IsA baked_alaska dessert) (STV 1.0 0.9091)) +(: cnet_isa_4e81c769f4 (IsA baked_good food) (STV 1.0 0.9091)) +(: cnet_isa_437f5aefba (IsA baked_potato potato) (STV 1.0 0.9091)) +(: cnet_isa_59f584c2f1 (IsA baker_s_eczema allergic_eczema) (STV 1.0 0.9091)) +(: cnet_isa_e08c935cd8 (IsA baker_s_yeast yeast) (STV 1.0 0.9091)) +(: cnet_isa_94c93eeb6a (IsA baker merchant) (STV 1.0 0.9091)) +(: cnet_isa_b475c510fd (IsA baker skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_4f80de56aa (IsA bakery shop) (STV 1.0 0.9091)) +(: cnet_isa_58034837c0 (IsA bakery workplace) (STV 1.0 0.9091)) +(: cnet_isa_828b869194 (IsA baking cooking) (STV 1.0 0.9091)) +(: cnet_isa_167448a349 (IsA baking creating_from_raw_material) (STV 1.0 0.9091)) +(: cnet_isa_34ee91511f (IsA baking_powder leaven) (STV 1.0 0.9091)) +(: cnet_isa_9ae55494d8 (IsA baking_powder_biscuit biscuit) (STV 1.0 0.9091)) +(: cnet_isa_f08ec0af64 (IsA baklava pastry) (STV 1.0 0.9091)) +(: cnet_isa_28941bf610 (IsA balaclava cap) (STV 1.0 0.9091)) +(: cnet_isa_77f6a224f6 (IsA balaena mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_e98a8b3fe3 (IsA balaenicep bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_1c206c785a (IsA balaenicipitidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_989cfbdc5c (IsA balaenidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_6a7186c30a (IsA balaenoptera mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_8742a33348 (IsA balaenopteridae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_c4dd2a5498 (IsA balagan chao) (STV 1.0 0.9091)) +(: cnet_isa_1d1ea36579 (IsA balalaika chordophone) (STV 1.0 0.9091)) +(: cnet_isa_47489e0be3 (IsA balance scale) (STV 1.0 0.9091)) +(: cnet_isa_5f11b722ed (IsA balance person) (STV 1.0 0.9091)) +(: cnet_isa_712f7b29f0 (IsA balance equality) (STV 1.0 0.9091)) +(: cnet_isa_584e408640 (IsA balance remainder) (STV 1.0 0.9091)) +(: cnet_isa_cd7c0a873a (IsA balance structure) (STV 1.0 0.9091)) +(: cnet_isa_4b1f89e3ba (IsA balance equilibrium) (STV 1.0 0.9091)) +(: cnet_isa_a3f90c0e67 (IsA balance_beam gymnastic_apparatus) (STV 1.0 0.9091)) +(: cnet_isa_0247b04e2c (IsA balance_of_payment accounting) (STV 1.0 0.9091)) +(: cnet_isa_d8dcf85c00 (IsA balance_of_payment_problem problem) (STV 1.0 0.9091)) +(: cnet_isa_98db6607ae (IsA balance_of_power equilibrium) (STV 1.0 0.9091)) +(: cnet_isa_1625d12c3f (IsA balance_of_trade balance) (STV 1.0 0.9091)) +(: cnet_isa_f761721cef (IsA balance_sheet record) (STV 1.0 0.9091)) +(: cnet_isa_4e54898832 (IsA balance_wheel wheel) (STV 1.0 0.9091)) +(: cnet_isa_a043c89ba9 (IsA balanced_budget budget) (STV 1.0 0.9091)) +(: cnet_isa_fd6530969c (IsA balanced_diet diet) (STV 1.0 0.9091)) +(: cnet_isa_4d85f7607a (IsA balancer acrobat) (STV 1.0 0.9091)) +(: cnet_isa_c77cdfc476 (IsA balanidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_4e3cba2661 (IsA balanitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_885d55f994 (IsA balanoposthitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_f49b6515e0 (IsA balanus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_aa4f3575ad (IsA bala spinel_ruby) (STV 1.0 0.9091)) +(: cnet_isa_4f86492bff (IsA balata gum) (STV 1.0 0.9091)) +(: cnet_isa_86278ec2cc (IsA balata tree) (STV 1.0 0.9091)) +(: cnet_isa_26353a5a7f (IsA balboa panamanian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_7b7860b668 (IsA balbriggan knit) (STV 1.0 0.9091)) +(: cnet_isa_a49a9a51d2 (IsA balcony structure) (STV 1.0 0.9091)) +(: cnet_isa_197ac7df44 (IsA bald_cypress cypress) (STV 1.0 0.9091)) +(: cnet_isa_e17c350073 (IsA bald_eagle bird) (STV 1.0 0.9339)) +(: cnet_isa_6d018fa9c7 (IsA bald_eagle eagle) (STV 1.0 0.9091)) +(: cnet_isa_0f5265b7a3 (IsA bald_faced_hornet hornet) (STV 1.0 0.9091)) +(: cnet_isa_4d38619121 (IsA baldachin canopy) (STV 1.0 0.9091)) +(: cnet_isa_f1ec19fdde (IsA balderdash board_game) (STV 1.0 0.9339)) +(: cnet_isa_21dff25c32 (IsA balderdash nonsense) (STV 1.0 0.9091)) +(: cnet_isa_a0f33d7611 (IsA baldhead person) (STV 1.0 0.9091)) +(: cnet_isa_869cc7537f (IsA baldness hairlessness) (STV 1.0 0.9091)) +(: cnet_isa_9818b649e3 (IsA baldric belt) (STV 1.0 0.9091)) +(: cnet_isa_69cef20a24 (IsA baldwin eating_apple) (STV 1.0 0.9091)) +(: cnet_isa_c80c6ce96b (IsA bale bundle) (STV 1.0 0.9091)) +(: cnet_isa_b8dda2e9d3 (IsA baleen_whale whale) (STV 1.0 0.9091)) +(: cnet_isa_149372f75a (IsA balinese indonesian) (STV 1.0 0.9091)) +(: cnet_isa_1b95ee7c78 (IsA baling_wire wire) (STV 1.0 0.9091)) +(: cnet_isa_90e2d1553d (IsA baliste fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_fe6cae7c12 (IsA balistidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_e83c3d008a (IsA balk pitch) (STV 1.0 0.9091)) +(: cnet_isa_e1c9191207 (IsA balk area) (STV 1.0 0.9091)) +(: cnet_isa_4d17d91fde (IsA balkan european) (STV 1.0 0.9091)) +(: cnet_isa_ee540b7197 (IsA balkan_country european_country) (STV 1.0 0.9091)) +(: cnet_isa_fdf8c18268 (IsA balker person) (STV 1.0 0.9091)) +(: cnet_isa_8a743cac12 (IsA balkiness intractability) (STV 1.0 0.9091)) +(: cnet_isa_ea9e83e2a6 (IsA balkline line) (STV 1.0 0.9091)) +(: cnet_isa_cb41ad372b (IsA ball another_name_for_sphere) (STV 1.0 0.9091)) +(: cnet_isa_33bceb181e (IsA ball for_golfer_to_hit) (STV 1.0 0.9091)) +(: cnet_isa_f572de7575 (IsA ball round_object) (STV 1.0 0.9091)) +(: cnet_isa_38de96ce1d (IsA ball slang_term_for_teste) (STV 1.0 0.9091)) +(: cnet_isa_907658337b (IsA ball toy) (STV 1.0 0.9748)) +(: cnet_isa_e27977ac2f (IsA ball pitch) (STV 1.0 0.9091)) +(: cnet_isa_f286d2e3c4 (IsA ball game_equipment) (STV 1.0 0.9091)) +(: cnet_isa_4cbeaf3f8e (IsA ball plaything) (STV 1.0 0.9091)) +(: cnet_isa_c3838ce270 (IsA ball structure) (STV 1.0 0.9091)) +(: cnet_isa_9ebec71a92 (IsA ball dance) (STV 1.0 0.9091)) +(: cnet_isa_b311025905 (IsA ball agglomeration) (STV 1.0 0.9091)) +(: cnet_isa_825c5ba80c (IsA ball sphere) (STV 1.0 0.9091)) +(: cnet_isa_b924081aec (IsA ball_and_chain shackle) (STV 1.0 0.9091)) +(: cnet_isa_59655d4fc2 (IsA ball_and_socket_joint joint) (STV 1.0 0.9091)) +(: cnet_isa_0e09ab803d (IsA ball_and_socket_joint synovial_joint) (STV 1.0 0.9091)) +(: cnet_isa_9141fd0f32 (IsA ball_bearing bearing) (STV 1.0 0.9091)) +(: cnet_isa_fea4afee02 (IsA ball_boy male_child) (STV 1.0 0.9091)) +(: cnet_isa_f45a6afd22 (IsA ball_buster job) (STV 1.0 0.9091)) +(: cnet_isa_4d24bac375 (IsA ball_buster woman) (STV 1.0 0.9091)) +(: cnet_isa_423b6b645e (IsA ball_carrier football_player) (STV 1.0 0.9091)) +(: cnet_isa_ef17f62cf0 (IsA ball_cartridge cartridge) (STV 1.0 0.9091)) +(: cnet_isa_a01d722b81 (IsA ball_field playing_field) (STV 1.0 0.9091)) +(: cnet_isa_90327234de (IsA ball_game field_game) (STV 1.0 0.9091)) +(: cnet_isa_fbac3e85c9 (IsA ball_gown gown) (STV 1.0 0.9091)) +(: cnet_isa_f17744a083 (IsA ball_hawk athlete) (STV 1.0 0.9091)) +(: cnet_isa_4c98a38212 (IsA ball_hawking maneuver) (STV 1.0 0.9091)) +(: cnet_isa_3d7f1a725d (IsA ball_peen_hammer hammer) (STV 1.0 0.9091)) +(: cnet_isa_6c0c44ff6c (IsA ball_valve valve) (STV 1.0 0.9091)) +(: cnet_isa_2aae132e14 (IsA ballad poem) (STV 1.0 0.9091)) +(: cnet_isa_14fec0b1d5 (IsA ballad song) (STV 1.0 0.9091)) +(: cnet_isa_ab767237b8 (IsA ballade poem) (STV 1.0 0.9091)) +(: cnet_isa_1d50f39a2e (IsA ballast electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_803e43efaf (IsA ballast material) (STV 1.0 0.9091)) +(: cnet_isa_e23ac35a64 (IsA ballast attribute) (STV 1.0 0.9091)) +(: cnet_isa_d12528b8a3 (IsA ballast gravel) (STV 1.0 0.9091)) +(: cnet_isa_acd3258f0d (IsA ballast_resistor resistor) (STV 1.0 0.9091)) +(: cnet_isa_43c9aab3b6 (IsA ballcock regulator) (STV 1.0 0.9091)) +(: cnet_isa_59b50b4638 (IsA balldress formalwear) (STV 1.0 0.9091)) +(: cnet_isa_fc8106b99c (IsA ballerina ballet_dancer) (STV 1.0 0.9091)) +(: cnet_isa_d8006fa67d (IsA ballet stage_dancing) (STV 1.0 0.9091)) +(: cnet_isa_16f9ed1682 (IsA ballet music) (STV 1.0 0.9091)) +(: cnet_isa_e12fba68b2 (IsA ballet_company company) (STV 1.0 0.9091)) +(: cnet_isa_a00740187a (IsA ballet_dancer dancer) (STV 1.0 0.9091)) +(: cnet_isa_fb15e75118 (IsA ballet_master dancer) (STV 1.0 0.9091)) +(: cnet_isa_872512cf35 (IsA ballet_mistress dancer) (STV 1.0 0.9091)) +(: cnet_isa_7c89e50a8d (IsA ballet_position position) (STV 1.0 0.9091)) +(: cnet_isa_aa89c4f516 (IsA ballet_skirt skirt) (STV 1.0 0.9091)) +(: cnet_isa_96a6362efa (IsA balletomane enthusiast) (STV 1.0 0.9091)) +(: cnet_isa_e2080b0941 (IsA balletomania enthusiasm) (STV 1.0 0.9091)) +(: cnet_isa_916956eb9e (IsA ballgame situation) (STV 1.0 0.9091)) +(: cnet_isa_b515c23852 (IsA ballistic_galvanometer moving_coil_galvanometer) (STV 1.0 0.9091)) +(: cnet_isa_a15a2cb280 (IsA ballistic_identification identification) (STV 1.0 0.9091)) +(: cnet_isa_ae0a61ecad (IsA ballistic_missile missile) (STV 1.0 0.9091)) +(: cnet_isa_0bf4699f87 (IsA ballistic_missile_defense_organization agency) (STV 1.0 0.9091)) +(: cnet_isa_460fe525d7 (IsA ballistic_pendulum physical_pendulum) (STV 1.0 0.9091)) +(: cnet_isa_b452d546e9 (IsA ballistic dynamic) (STV 1.0 0.9091)) +(: cnet_isa_74badc28ad (IsA ballistic trajectory) (STV 1.0 0.9091)) +(: cnet_isa_fed251e930 (IsA ballistocardiogram graph) (STV 1.0 0.9091)) +(: cnet_isa_f1fe7d2ad7 (IsA ballistocardiograph medical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_9e096d592d (IsA balloon lighter_than_air_craft) (STV 1.0 0.9091)) +(: cnet_isa_fe30a26ee6 (IsA balloon plaything) (STV 1.0 0.9091)) +(: cnet_isa_f9e8a3ca63 (IsA balloon_bomb bomb) (STV 1.0 0.9091)) +(: cnet_isa_b84568009b (IsA balloon_flower wildflower) (STV 1.0 0.9091)) +(: cnet_isa_587c2f6727 (IsA balloon_sail sail) (STV 1.0 0.9091)) +(: cnet_isa_368df15dec (IsA balloon_vine soapberry_vine) (STV 1.0 0.9091)) +(: cnet_isa_068e4437b8 (IsA balloonfish spiny_puffer) (STV 1.0 0.9091)) +(: cnet_isa_26c462b771 (IsA ballooning flight) (STV 1.0 0.9091)) +(: cnet_isa_a401873282 (IsA balloonist skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_8be1ec37b2 (IsA ballot document) (STV 1.0 0.9091)) +(: cnet_isa_097c4a7005 (IsA ballot_box box) (STV 1.0 0.9091)) +(: cnet_isa_32a7ec850a (IsA ballota asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_657533bbd4 (IsA ballottement palpation) (STV 1.0 0.9091)) +(: cnet_isa_980e1e64c8 (IsA ballpark stadium) (STV 1.0 0.9091)) +(: cnet_isa_56e6ae5c74 (IsA ballplayer athlete) (STV 1.0 0.9091)) +(: cnet_isa_c87790436d (IsA ballplayer player) (STV 1.0 0.9091)) +(: cnet_isa_09c16c720d (IsA ballpoint pen) (STV 1.0 0.9091)) +(: cnet_isa_eb773d288f (IsA ballroom room) (STV 1.0 0.9091)) +(: cnet_isa_6f424dd240 (IsA ballroom_dancing social_dancing) (STV 1.0 0.9091)) +(: cnet_isa_7b5ea3370d (IsA ballup mistake) (STV 1.0 0.9091)) +(: cnet_isa_37e9821252 (IsA ballyhoo promotion) (STV 1.0 0.9091)) +(: cnet_isa_42bd579b42 (IsA balm balsam) (STV 1.0 0.9091)) +(: cnet_isa_a06570cc88 (IsA balm_of_gilead incense_tree) (STV 1.0 0.9091)) +(: cnet_isa_57567c04fe (IsA balm_of_gilead balm) (STV 1.0 0.9091)) +(: cnet_isa_cc15b532ef (IsA balminess mildness) (STV 1.0 0.9091)) +(: cnet_isa_3eb4ad3791 (IsA balmoral cap) (STV 1.0 0.9091)) +(: cnet_isa_7dddba4484 (IsA balmoral shoe) (STV 1.0 0.9091)) +(: cnet_isa_99c7572c8c (IsA balochi iranian) (STV 1.0 0.9091)) +(: cnet_isa_481cffe41a (IsA baloney nonsense) (STV 1.0 0.9091)) +(: cnet_isa_d5f0f8c298 (IsA balsa angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_c1aaf7522a (IsA balsa wood) (STV 1.0 0.9091)) +(: cnet_isa_4049dc855b (IsA balsa_raft raft) (STV 1.0 0.9091)) +(: cnet_isa_73ae6cff26 (IsA balsam ointment) (STV 1.0 0.9091)) +(: cnet_isa_fa0cbccdf4 (IsA balsam spermatophyte) (STV 1.0 0.9091)) +(: cnet_isa_108e390745 (IsA balsam oleoresin) (STV 1.0 0.9091)) +(: cnet_isa_cbbeb5c69c (IsA balsam_apple gourd) (STV 1.0 0.9091)) +(: cnet_isa_129280365c (IsA balsam_fir silver_fir) (STV 1.0 0.9091)) +(: cnet_isa_bd9706e04f (IsA balsam_of_peru tolu) (STV 1.0 0.9091)) +(: cnet_isa_c8327b3fd2 (IsA balsam_pear gourd) (STV 1.0 0.9091)) +(: cnet_isa_6b2fa8a1b0 (IsA balsam_poplar poplar) (STV 1.0 0.9091)) +(: cnet_isa_858ba7bb37 (IsA balsam_willow willow) (STV 1.0 0.9091)) +(: cnet_isa_8cd2aab7ae (IsA balsam_woolly_aphid adelgid) (STV 1.0 0.9091)) +(: cnet_isa_d78dd49835 (IsA balsaminaceae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_d5d9cc7166 (IsA balsamorhiza asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_50dbfb66b1 (IsA balsamroot herb) (STV 1.0 0.9091)) +(: cnet_isa_8169724eea (IsA baltic balto_slavic) (STV 1.0 0.9091)) +(: cnet_isa_dc36651d51 (IsA baltic_finnic fennic) (STV 1.0 0.9091)) +(: cnet_isa_41b75dc669 (IsA baltic_state geographical_area) (STV 1.0 0.9091)) +(: cnet_isa_dadc1aeaea (IsA baltimore city) (STV 1.0 0.9091)) +(: cnet_isa_a52da4c046 (IsA baltimore city_in_maryland) (STV 1.0 0.9091)) +(: cnet_isa_a9ad2f9dc6 (IsA baltimore_oriole northern_oriole) (STV 1.0 0.9091)) +(: cnet_isa_b4430f7844 (IsA balto_slavic indo_european) (STV 1.0 0.9091)) +(: cnet_isa_568399564a (IsA baluster support) (STV 1.0 0.9091)) +(: cnet_isa_dba5833e2b (IsA bamboo gramineous_plant) (STV 1.0 0.9091)) +(: cnet_isa_05f7d68b55 (IsA bamboo wood) (STV 1.0 0.9091)) +(: cnet_isa_9552ee1e5c (IsA bamboo_curtain ideological_barrier) (STV 1.0 0.9091)) +(: cnet_isa_bccb65d6c7 (IsA bamboo_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_62a444b557 (IsA bamboo_palm raffia_palm) (STV 1.0 0.9091)) +(: cnet_isa_c08fe4f6a7 (IsA bamboo_shoot vegetable) (STV 1.0 0.9091)) +(: cnet_isa_78d8f0dcd7 (IsA bambusa monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3052d6527b (IsA bambuseae tribe) (STV 1.0 0.9091)) +(: cnet_isa_ad25dd402d (IsA ban prohibition) (STV 1.0 0.9091)) +(: cnet_isa_c6b6b9841c (IsA ban moldovan_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_a201cb66bf (IsA ban romanian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_a0868bdc40 (IsA banana edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_4b004c58e8 (IsA banana herb) (STV 1.0 0.9091)) +(: cnet_isa_37925fbe4f (IsA banana_boat cargo_ship) (STV 1.0 0.9091)) +(: cnet_isa_8ae2685a74 (IsA banana_bread quick_bread) (STV 1.0 0.9091)) +(: cnet_isa_d4510a346a (IsA banana_oil ester) (STV 1.0 0.9091)) +(: cnet_isa_b57f644d6f (IsA banana_passion_fruit passionflower) (STV 1.0 0.9091)) +(: cnet_isa_5a146562c2 (IsA banana_peel peel) (STV 1.0 0.9091)) +(: cnet_isa_90df9358f9 (IsA banana_quit honeycreeper) (STV 1.0 0.9091)) +(: cnet_isa_61291e976d (IsA banana_republic country) (STV 1.0 0.9091)) +(: cnet_isa_a8e46e9169 (IsA banana_split split) (STV 1.0 0.9091)) +(: cnet_isa_0d7fb31026 (IsA band adornment) (STV 1.0 0.9091)) +(: cnet_isa_a43bb1b6d1 (IsA band belt) (STV 1.0 0.9091)) +(: cnet_isa_e0c8d3fbc0 (IsA band loop) (STV 1.0 0.9091)) +(: cnet_isa_c6a4f01c9e (IsA band restraint) (STV 1.0 0.9091)) +(: cnet_isa_9a71d8d3a1 (IsA band strip) (STV 1.0 0.9091)) +(: cnet_isa_9a1d3b1b1b (IsA band stripe) (STV 1.0 0.9091)) +(: cnet_isa_a421c9e128 (IsA band range) (STV 1.0 0.9091)) +(: cnet_isa_d24e371233 (IsA band musical_organization) (STV 1.0 0.9091)) +(: cnet_isa_d590fdd6b5 (IsA band_aid repair) (STV 1.0 0.9091)) +(: cnet_isa_9987beb3ca (IsA band_tailed_pigeon pigeon) (STV 1.0 0.9091)) +(: cnet_isa_8c31b77d70 (IsA bandage dressing) (STV 1.0 0.9091)) +(: cnet_isa_1e687d77b0 (IsA bandanna handkerchief) (STV 1.0 0.9091)) +(: cnet_isa_6128545b47 (IsA bandbox box) (STV 1.0 0.9091)) +(: cnet_isa_95e2bafbc4 (IsA banded_gecko gecko) (STV 1.0 0.9091)) +(: cnet_isa_cff8a9cec5 (IsA banded_krait krait) (STV 1.0 0.9091)) +(: cnet_isa_b4cfb93fbc (IsA banded_palm_civet civet) (STV 1.0 0.9091)) +(: cnet_isa_1348e47fe4 (IsA banded_purple nymphalid) (STV 1.0 0.9091)) +(: cnet_isa_6c24f6f858 (IsA banded_sand_snake sand_snake) (STV 1.0 0.9091)) +(: cnet_isa_3549817504 (IsA banded_stilt stilt) (STV 1.0 0.9091)) +(: cnet_isa_f51e6459ac (IsA banderilla dart) (STV 1.0 0.9091)) +(: cnet_isa_98900396d6 (IsA banderillero bullfighter) (STV 1.0 0.9091)) +(: cnet_isa_0051f03d52 (IsA bandicoot marsupial) (STV 1.0 0.9091)) +(: cnet_isa_5534337ffb (IsA bandicoot_rat rat) (STV 1.0 0.9091)) +(: cnet_isa_93c00dc531 (IsA bandit thief) (STV 1.0 0.9091)) +(: cnet_isa_b8994d554a (IsA banditry plundering) (STV 1.0 0.9091)) +(: cnet_isa_b0eeefdb77 (IsA bandleader conductor) (STV 1.0 0.9091)) +(: cnet_isa_98958e45a2 (IsA bandmaster conductor) (STV 1.0 0.9091)) +(: cnet_isa_a833628610 (IsA bandoleer cartridge_belt) (STV 1.0 0.9091)) +(: cnet_isa_619da352d9 (IsA bandoneon concertina) (STV 1.0 0.9091)) +(: cnet_isa_99d23a3a55 (IsA bandsaw power_saw) (STV 1.0 0.9091)) +(: cnet_isa_405ef5dcbd (IsA bandsman musician) (STV 1.0 0.9091)) +(: cnet_isa_e412ecc283 (IsA bandstand platform) (STV 1.0 0.9091)) +(: cnet_isa_8d01d96a38 (IsA bandwagon wagon) (STV 1.0 0.9091)) +(: cnet_isa_c07b675326 (IsA bandwagon vogue) (STV 1.0 0.9091)) +(: cnet_isa_27d09b33d1 (IsA bandwagon_effect consequence) (STV 1.0 0.9091)) +(: cnet_isa_93d28b6b30 (IsA bandwidth information_measure) (STV 1.0 0.9091)) +(: cnet_isa_9717f05758 (IsA bane affliction) (STV 1.0 0.9091)) +(: cnet_isa_4993541887 (IsA baneberry berry) (STV 1.0 0.9091)) +(: cnet_isa_7b7594b625 (IsA baneberry poisonous_plant) (STV 1.0 0.9091)) +(: cnet_isa_23589fbd42 (IsA bang hairdo) (STV 1.0 0.9091)) +(: cnet_isa_984189e473 (IsA bang noise) (STV 1.0 0.9091)) +(: cnet_isa_7e7bdb78cd (IsA bang exhilaration) (STV 1.0 0.9091)) +(: cnet_isa_5ef2c29c19 (IsA bangalore_torpedo torpedo) (STV 1.0 0.9091)) +(: cnet_isa_9ac94e6ecf (IsA banger pork_sausage) (STV 1.0 0.9091)) +(: cnet_isa_fb3ad03d15 (IsA bangiaceae protoctist_family) (STV 1.0 0.9091)) +(: cnet_isa_4c6de6269c (IsA banging noise) (STV 1.0 0.9091)) +(: cnet_isa_909c8767fb (IsA bangladeshi asiatic) (STV 1.0 0.9091)) +(: cnet_isa_246c5f40af (IsA bangladeshi_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_519ea39774 (IsA bangle adornment) (STV 1.0 0.9091)) +(: cnet_isa_eeaca59401 (IsA banishment rejection) (STV 1.0 0.9091)) +(: cnet_isa_5bd91a5077 (IsA banishment exclusion) (STV 1.0 0.9091)) +(: cnet_isa_254ac86e29 (IsA banjo guitar_like_musical_instrument) (STV 1.0 0.9339)) +(: cnet_isa_de373e1ca0 (IsA banjo musical_instrument) (STV 1.0 0.9454)) +(: cnet_isa_7ea89e4ad2 (IsA banjo stringed_instrument) (STV 1.0 0.9636)) +(: cnet_isa_7753e61101 (IsA bank flight_maneuver) (STV 1.0 0.9091)) +(: cnet_isa_3779813537 (IsA bank depository) (STV 1.0 0.9091)) +(: cnet_isa_4f78955c8d (IsA bank array) (STV 1.0 0.9091)) +(: cnet_isa_0d982b5fb9 (IsA bank ridge) (STV 1.0 0.9091)) +(: cnet_isa_634a9d1adf (IsA bank slope) (STV 1.0 0.9091)) +(: cnet_isa_a1282305ee (IsA bank fund) (STV 1.0 0.9091)) +(: cnet_isa_4d2de915e0 (IsA bank reserve) (STV 1.0 0.9091)) +(: cnet_isa_8af0012b25 (IsA bank_account account) (STV 1.0 0.9091)) +(: cnet_isa_e523bcc627 (IsA bank_card credit_card) (STV 1.0 0.9091)) +(: cnet_isa_fcad13425b (IsA bank_charter charter) (STV 1.0 0.9091)) +(: cnet_isa_7c6b6449ee (IsA bank_closing closure) (STV 1.0 0.9091)) +(: cnet_isa_907f9dcb06 (IsA bank_commissioner commissioner) (STV 1.0 0.9091)) +(: cnet_isa_dea9802983 (IsA bank_depositor_relation fiduciary_relation) (STV 1.0 0.9091)) +(: cnet_isa_4b68296ce1 (IsA bank_draft draft) (STV 1.0 0.9091)) +(: cnet_isa_7542600ecc (IsA bank_examination examination) (STV 1.0 0.9091)) +(: cnet_isa_e3ee12be81 (IsA bank_examiner examiner) (STV 1.0 0.9091)) +(: cnet_isa_e250baf9dd (IsA bank_failure failure) (STV 1.0 0.9091)) +(: cnet_isa_4ef9458823 (IsA bank_gravel gravel) (STV 1.0 0.9091)) +(: cnet_isa_bf18dfcd55 (IsA bank_guard watchman) (STV 1.0 0.9091)) +(: cnet_isa_755bc16190 (IsA bank_holding_company holding_company) (STV 1.0 0.9091)) +(: cnet_isa_8f08cf51af (IsA bank_holiday legal_holiday) (STV 1.0 0.9091)) +(: cnet_isa_5e8e463f9c (IsA bank_identification_number number) (STV 1.0 0.9091)) +(: cnet_isa_21aeff503d (IsA bank_loan loan) (STV 1.0 0.9091)) +(: cnet_isa_ef069e0e8d (IsA bank_manager director) (STV 1.0 0.9091)) +(: cnet_isa_fd1af48806 (IsA bank_martin martin) (STV 1.0 0.9091)) +(: cnet_isa_a8dc0a969e (IsA bank_of_england central_bank) (STV 1.0 0.9091)) +(: cnet_isa_31be7f3567 (IsA bank_of_japan central_bank) (STV 1.0 0.9091)) +(: cnet_isa_d9f759a5ea (IsA bank_rate discount_rate) (STV 1.0 0.9091)) +(: cnet_isa_0cce536d4c (IsA bank_robber robber) (STV 1.0 0.9091)) +(: cnet_isa_9ebda72bae (IsA bank_run bank_withdrawal) (STV 1.0 0.9091)) +(: cnet_isa_51c07fa3f3 (IsA bank_shot basketball_shot) (STV 1.0 0.9091)) +(: cnet_isa_9d3e920ddc (IsA bank_statement statement) (STV 1.0 0.9091)) +(: cnet_isa_c313376267 (IsA bank_withdrawal withdrawal) (STV 1.0 0.9091)) +(: cnet_isa_5ae344c41f (IsA bankbook record) (STV 1.0 0.9091)) +(: cnet_isa_c787d35313 (IsA banker person) (STV 1.0 0.9091)) +(: cnet_isa_d1a3a1681f (IsA banker financier) (STV 1.0 0.9091)) +(: cnet_isa_17be86a4b6 (IsA banker money_handler) (STV 1.0 0.9091)) +(: cnet_isa_0e71f67125 (IsA bankia mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_d2fcd95cf9 (IsA banking finance) (STV 1.0 0.9091)) +(: cnet_isa_40c05f9507 (IsA banking_game game_of_chance) (STV 1.0 0.9091)) +(: cnet_isa_ae076a07bf (IsA banking_industry industry) (STV 1.0 0.9091)) +(: cnet_isa_2feb5e4e41 (IsA bankroll fund) (STV 1.0 0.9091)) +(: cnet_isa_9b0aa48446 (IsA bankrupt failure) (STV 1.0 0.9091)) +(: cnet_isa_c4a7baf833 (IsA bankruptcy proceeding) (STV 1.0 0.9091)) +(: cnet_isa_3111213da4 (IsA bankruptcy failure) (STV 1.0 0.9091)) +(: cnet_isa_51f450912a (IsA bankruptcy insolvency) (STV 1.0 0.9091)) +(: cnet_isa_722f47c52e (IsA banksia shrub) (STV 1.0 0.9091)) +(: cnet_isa_9ef7213a0e (IsA banksia_rose rose) (STV 1.0 0.9091)) +(: cnet_isa_7e1dd62cce (IsA banner flag) (STV 1.0 0.9091)) +(: cnet_isa_d4d30b4532 (IsA banning_order prohibition) (STV 1.0 0.9091)) +(: cnet_isa_8ac5fee6b6 (IsA bannister barrier) (STV 1.0 0.9091)) +(: cnet_isa_12c07f3157 (IsA bannock flatbread) (STV 1.0 0.9091)) +(: cnet_isa_68163bc36e (IsA bann announcement) (STV 1.0 0.9091)) +(: cnet_isa_e38ad874fe (IsA banquet meal) (STV 1.0 0.9091)) +(: cnet_isa_7f7dd028e3 (IsA banquet dinner) (STV 1.0 0.9091)) +(: cnet_isa_8d4c2a823e (IsA banquette bench) (STV 1.0 0.9091)) +(: cnet_isa_439f9182c7 (IsA banshee spirit) (STV 1.0 0.9091)) +(: cnet_isa_bfb538db40 (IsA bantam domestic_fowl) (STV 1.0 0.9091)) +(: cnet_isa_390ed08628 (IsA bantamweight boxer) (STV 1.0 0.9091)) +(: cnet_isa_1003feb6dd (IsA bantamweight wrestler) (STV 1.0 0.9091)) +(: cnet_isa_aa0ee7d05a (IsA banteng ox) (STV 1.0 0.9091)) +(: cnet_isa_6dc3936e5d (IsA banter repartee) (STV 1.0 0.9091)) +(: cnet_isa_9f02a50fcf (IsA banti_s_disease blood_disease) (STV 1.0 0.9091)) +(: cnet_isa_0ae7dc0938 (IsA bantu niger_congo) (STV 1.0 0.9091)) +(: cnet_isa_08c0a403c5 (IsA bantu african) (STV 1.0 0.9091)) +(: cnet_isa_6ff19ef093 (IsA banyan jacket) (STV 1.0 0.9091)) +(: cnet_isa_a84844360a (IsA banyan fig_tree) (STV 1.0 0.9091)) +(: cnet_isa_a63a2554a4 (IsA banyan_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_ab0dbab872 (IsA banzai cheer) (STV 1.0 0.9091)) +(: cnet_isa_6073d45b2b (IsA banzai_attack attack) (STV 1.0 0.9091)) +(: cnet_isa_1ba21b7788 (IsA baobab angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_0b58201cbd (IsA bap bread) (STV 1.0 0.9091)) +(: cnet_isa_6a67aa8603 (IsA baphia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a4104caca2 (IsA baptisia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_debb8f8b9c (IsA baptism sacrament) (STV 1.0 0.9091)) +(: cnet_isa_2099ba5cb8 (IsA baptismal_font basin) (STV 1.0 0.9091)) +(: cnet_isa_60f5e3db68 (IsA baptist protestant) (STV 1.0 0.9091)) +(: cnet_isa_a94a351246 (IsA baptist_church protestant_denomination) (STV 1.0 0.9091)) +(: cnet_isa_b3118a4ab4 (IsA baptist_denomination protestant_denomination) (STV 1.0 0.9091)) +(: cnet_isa_56502c4d35 (IsA baptistic_doctrine protestantism) (STV 1.0 0.9091)) +(: cnet_isa_e2418293c8 (IsA bar place) (STV 1.0 0.9636)) +(: cnet_isa_39b65848d7 (IsA bar counter) (STV 1.0 0.9091)) +(: cnet_isa_4629689a4d (IsA bar heating_element) (STV 1.0 0.9091)) +(: cnet_isa_e4a26c0a18 (IsA bar implement) (STV 1.0 0.9091)) +(: cnet_isa_64ba4438a3 (IsA bar obstruction) (STV 1.0 0.9091)) +(: cnet_isa_3a572ffbb8 (IsA bar support) (STV 1.0 0.9091)) +(: cnet_isa_e40cfc831f (IsA bar railing) (STV 1.0 0.9091)) +(: cnet_isa_06ebf18af4 (IsA bar pressure_unit) (STV 1.0 0.9091)) +(: cnet_isa_27f9b39a21 (IsA bar barrier) (STV 1.0 0.9091)) +(: cnet_isa_74429df419 (IsA bar ridge) (STV 1.0 0.9091)) +(: cnet_isa_83a66c3d80 (IsA bar_bit bit) (STV 1.0 0.9091)) +(: cnet_isa_9dbb37f1b6 (IsA bar_chart chart) (STV 1.0 0.9091)) +(: cnet_isa_5f1c1671f4 (IsA bar_code code) (STV 1.0 0.9091)) +(: cnet_isa_81b8b277d2 (IsA bar_examination examination) (STV 1.0 0.9091)) +(: cnet_isa_10b8d8de4d (IsA bar_fly drinker) (STV 1.0 0.9091)) +(: cnet_isa_4cab4c5e55 (IsA bar_girl woman) (STV 1.0 0.9091)) +(: cnet_isa_efefc50933 (IsA bar_line line) (STV 1.0 0.9091)) +(: cnet_isa_3ebf66a96c (IsA bar_line musical_notation) (STV 1.0 0.9091)) +(: cnet_isa_c92e460878 (IsA bar_magnet magnet) (STV 1.0 0.9091)) +(: cnet_isa_daa8c9e5be (IsA bar_mask catcher_s_mask) (STV 1.0 0.9091)) +(: cnet_isa_80fda6c3dd (IsA bar_mitzvah initiation) (STV 1.0 0.9091)) +(: cnet_isa_052b365c9f (IsA bar_printer impact_printer) (STV 1.0 0.9091)) +(: cnet_isa_02398e8e07 (IsA bar_sinister mark) (STV 1.0 0.9091)) +(: cnet_isa_5d6fc38307 (IsA bar_sinister ordinary) (STV 1.0 0.9091)) +(: cnet_isa_7818d70c16 (IsA bar_soap soap) (STV 1.0 0.9091)) +(: cnet_isa_2cb34a15e0 (IsA barack_obama democrat) (STV 1.0 0.9091)) +(: cnet_isa_0ba113f27d (IsA barb fibril) (STV 1.0 0.9091)) +(: cnet_isa_aa5334e57f (IsA barb point) (STV 1.0 0.9091)) +(: cnet_isa_791b1570ea (IsA barbadian west_indian) (STV 1.0 0.9091)) +(: cnet_isa_597b7016dd (IsA barbado_cherry dicot) (STV 1.0 0.9091)) +(: cnet_isa_aadeefbee4 (IsA barbado_dollar dollar) (STV 1.0 0.9091)) +(: cnet_isa_a6d77894a7 (IsA barbado_gooseberry edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_057a82f2ff (IsA barbado_gooseberry vine) (STV 1.0 0.9091)) +(: cnet_isa_35b0965484 (IsA barbarea dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d45e72b361 (IsA barbarization degradation) (STV 1.0 0.9091)) +(: cnet_isa_b37ba8c57f (IsA barbary_ape macaque) (STV 1.0 0.9091)) +(: cnet_isa_4b2ebe4f52 (IsA barbary_coast city_district) (STV 1.0 0.9091)) +(: cnet_isa_4215efaa8b (IsA barbasco shrub) (STV 1.0 0.9091)) +(: cnet_isa_93612ae81e (IsA barbecue rack) (STV 1.0 0.9091)) +(: cnet_isa_41504c57f6 (IsA barbecue cookout) (STV 1.0 0.9091)) +(: cnet_isa_3854568362 (IsA barbecue dish) (STV 1.0 0.9091)) +(: cnet_isa_6129669686 (IsA barbecue_pit pit) (STV 1.0 0.9091)) +(: cnet_isa_db696b36ef (IsA barbecue_sauce sauce) (STV 1.0 0.9091)) +(: cnet_isa_fc5bb84fb2 (IsA barbecued_sparerib dish) (STV 1.0 0.9091)) +(: cnet_isa_2cbef50db1 (IsA barbecued_wing dish) (STV 1.0 0.9091)) +(: cnet_isa_b618b35279 (IsA barbecuing roasting) (STV 1.0 0.9091)) +(: cnet_isa_b20e23a67c (IsA barbed_wire wire) (STV 1.0 0.9091)) +(: cnet_isa_abcbb7b6c9 (IsA barbel tentacle) (STV 1.0 0.9091)) +(: cnet_isa_eab566820d (IsA barbell weight) (STV 1.0 0.9091)) +(: cnet_isa_b61efc270f (IsA barber_s_pole visual_signal) (STV 1.0 0.9091)) +(: cnet_isa_a5a379c34d (IsA barber hairdresser) (STV 1.0 0.9091)) +(: cnet_isa_2be9f11a55 (IsA barber_chair chair) (STV 1.0 0.9091)) +(: cnet_isa_cf5187e867 (IsA barberry shrub) (STV 1.0 0.9091)) +(: cnet_isa_7218700917 (IsA barbershop shop) (STV 1.0 0.9091)) +(: cnet_isa_a7e1b51124 (IsA barbershop_quartet quartet) (STV 1.0 0.9091)) +(: cnet_isa_56edfd75e4 (IsA barberton_daisy african_daisy) (STV 1.0 0.9091)) +(: cnet_isa_6660cda4cd (IsA barbet piciform_bird) (STV 1.0 0.9091)) +(: cnet_isa_5d08a8f688 (IsA barbette mound) (STV 1.0 0.9091)) +(: cnet_isa_3708b1e46c (IsA barbette_carriage gun_carriage) (STV 1.0 0.9091)) +(: cnet_isa_bcdd3f4656 (IsA barbican tower) (STV 1.0 0.9091)) +(: cnet_isa_70b0755854 (IsA barbital barbiturate) (STV 1.0 0.9091)) +(: cnet_isa_5c44128178 (IsA barbiturate sedative_hypnotic) (STV 1.0 0.9091)) +(: cnet_isa_0b26f2e2d0 (IsA barbituric_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_67aacf0279 (IsA barbu threadfin) (STV 1.0 0.9091)) +(: cnet_isa_300ad926ca (IsA barcarole song) (STV 1.0 0.9091)) +(: cnet_isa_11fde609d9 (IsA bard caparison) (STV 1.0 0.9091)) +(: cnet_isa_20ece9bf78 (IsA bard poet) (STV 1.0 0.9091)) +(: cnet_isa_c2e72311b4 (IsA bardolatry idolization) (STV 1.0 0.9091)) +(: cnet_isa_1d0e989667 (IsA bare_bone bone) (STV 1.0 0.9091)) +(: cnet_isa_a6cce9d7f6 (IsA bare_bone kernel) (STV 1.0 0.9091)) +(: cnet_isa_659ed1a7b8 (IsA bareboat vessel) (STV 1.0 0.9091)) +(: cnet_isa_c68c68b3f2 (IsA bareboating boating) (STV 1.0 0.9091)) +(: cnet_isa_b83926c1b0 (IsA bareness plainness) (STV 1.0 0.9091)) +(: cnet_isa_caf0f3c52a (IsA bareness nakedness) (STV 1.0 0.9091)) +(: cnet_isa_a75a4766de (IsA bargain agreement) (STV 1.0 0.9091)) +(: cnet_isa_938d9145fc (IsA bargain purchase) (STV 1.0 0.9091)) +(: cnet_isa_e21c356e54 (IsA bargain_hunter shopper) (STV 1.0 0.9091)) +(: cnet_isa_beb0eb8fad (IsA bargain_rate inexpensiveness) (STV 1.0 0.9091)) +(: cnet_isa_0e857bd539 (IsA bargainer negotiator) (STV 1.0 0.9091)) +(: cnet_isa_40126f4b16 (IsA bargaining negotiation) (STV 1.0 0.9091)) +(: cnet_isa_05a418845c (IsA bargaining_chip leverage) (STV 1.0 0.9091)) +(: cnet_isa_c7ec193b7e (IsA barge boat) (STV 1.0 0.9091)) +(: cnet_isa_a4deb49e55 (IsA barge_pole pole) (STV 1.0 0.9091)) +(: cnet_isa_73fea68354 (IsA bargello embroidery_stitch) (STV 1.0 0.9091)) +(: cnet_isa_87f45796b9 (IsA barilla herb) (STV 1.0 0.9091)) +(: cnet_isa_b760cdfe76 (IsA baritone singer) (STV 1.0 0.9339)) +(: cnet_isa_0076357742 (IsA baritone brass) (STV 1.0 0.9091)) +(: cnet_isa_72a97141a6 (IsA baritone singing_voice) (STV 1.0 0.9091)) +(: cnet_isa_7a1ef63a41 (IsA barium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_9bb76e940a (IsA barium_dioxide baryta) (STV 1.0 0.9091)) +(: cnet_isa_11924c0215 (IsA barium_enema enema) (STV 1.0 0.9091)) +(: cnet_isa_399757c249 (IsA barium_hydroxide baryta) (STV 1.0 0.9091)) +(: cnet_isa_0203c4eadd (IsA barium_monoxide baryta) (STV 1.0 0.9091)) +(: cnet_isa_61839b2358 (IsA barium_sulphate sulfate) (STV 1.0 0.9091)) +(: cnet_isa_9910182bba (IsA bark sailing_vessel) (STV 1.0 0.9091)) +(: cnet_isa_e53cae9fa3 (IsA bark cry) (STV 1.0 0.9091)) +(: cnet_isa_2b05e5760e (IsA bark noise) (STV 1.0 0.9091)) +(: cnet_isa_3a97011e07 (IsA bark covering) (STV 1.0 0.9091)) +(: cnet_isa_6272e89c5e (IsA bark_beetle beetle) (STV 1.0 0.9091)) +(: cnet_isa_0dc8b519d4 (IsA bark_louse psocid) (STV 1.0 0.9091)) +(: cnet_isa_e9ae7d3ee5 (IsA barker promoter) (STV 1.0 0.9091)) +(: cnet_isa_12f6709295 (IsA barking_frog frog) (STV 1.0 0.9091)) +(: cnet_isa_bfc48482b5 (IsA barley grain) (STV 1.0 0.9091)) +(: cnet_isa_aee2cd3d97 (IsA barley cereal) (STV 1.0 0.9091)) +(: cnet_isa_968b8707d2 (IsA barley_grass barley) (STV 1.0 0.9091)) +(: cnet_isa_ef19668dd2 (IsA barley_sugar hard_candy) (STV 1.0 0.9091)) +(: cnet_isa_6c12876989 (IsA barley_water broth) (STV 1.0 0.9091)) +(: cnet_isa_bb201ee157 (IsA barleycorn grain) (STV 1.0 0.9091)) +(: cnet_isa_261bcc08cf (IsA barmaid bartender) (STV 1.0 0.9091)) +(: cnet_isa_42f974afe1 (IsA barman bartender) (STV 1.0 0.9091)) +(: cnet_isa_17ff6a3c18 (IsA barmbrack bread) (STV 1.0 0.9091)) +(: cnet_isa_7fd5dba306 (IsA barn farm_building) (STV 1.0 0.9091)) +(: cnet_isa_a5315a38f6 (IsA barn area_unit) (STV 1.0 0.9091)) +(: cnet_isa_a9801898e0 (IsA barn_dance dance) (STV 1.0 0.9091)) +(: cnet_isa_a00f5a587a (IsA barn_door sliding_door) (STV 1.0 0.9091)) +(: cnet_isa_54b4f42f55 (IsA barn_owl owl) (STV 1.0 0.9091)) +(: cnet_isa_b02c78d006 (IsA barn_spider spider) (STV 1.0 0.9091)) +(: cnet_isa_c93734716a (IsA barn_swallow swallow) (STV 1.0 0.9091)) +(: cnet_isa_a14c19ce9e (IsA barnaby_s_thistle weed) (STV 1.0 0.9091)) +(: cnet_isa_ee0daef3f1 (IsA barnacle crustacean) (STV 1.0 0.9091)) +(: cnet_isa_89eb5ee0f8 (IsA barnacle_goose goose) (STV 1.0 0.9091)) +(: cnet_isa_e964bed3e7 (IsA barnburner success) (STV 1.0 0.9091)) +(: cnet_isa_5d0981d5c7 (IsA barnburner arsonist) (STV 1.0 0.9091)) +(: cnet_isa_64f45feff4 (IsA barndoor flap) (STV 1.0 0.9091)) +(: cnet_isa_91f31ed391 (IsA barndoor_skate skate) (STV 1.0 0.9091)) +(: cnet_isa_3fbab0a52c (IsA barnful containerful) (STV 1.0 0.9091)) +(: cnet_isa_1c011cd125 (IsA barnstormer actor) (STV 1.0 0.9091)) +(: cnet_isa_ddc1415e39 (IsA barnstormer pilot) (STV 1.0 0.9091)) +(: cnet_isa_4dbc72c447 (IsA barnyard yard) (STV 1.0 0.9091)) +(: cnet_isa_544d82288a (IsA barnyard_grass millet) (STV 1.0 0.9091)) +(: cnet_isa_aabfb3af70 (IsA barograph barometer) (STV 1.0 0.9091)) +(: cnet_isa_1bf8b1d63a (IsA barometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_86221d3bde (IsA barometric_pressure atmospheric_pressure) (STV 1.0 0.9091)) +(: cnet_isa_0ad8a0cd9b (IsA baron businessman) (STV 1.0 0.9091)) +(: cnet_isa_20c7109fa7 (IsA baron nobleman) (STV 1.0 0.9091)) +(: cnet_isa_818cb91d7c (IsA baron peer) (STV 1.0 0.9091)) +(: cnet_isa_a4ede0ce17 (IsA baronduki squirrel) (STV 1.0 0.9091)) +(: cnet_isa_8a8029ee94 (IsA baroness noblewoman) (STV 1.0 0.9091)) +(: cnet_isa_4b1e70700f (IsA baronet aristocrat) (STV 1.0 0.9091)) +(: cnet_isa_d1dec62c3c (IsA baronetage position) (STV 1.0 0.9091)) +(: cnet_isa_9b6f893104 (IsA baronetage nobility) (STV 1.0 0.9091)) +(: cnet_isa_2e89a72405 (IsA baronetcy title) (STV 1.0 0.9091)) +(: cnet_isa_8e15dafc66 (IsA baronetcy rank) (STV 1.0 0.9091)) +(: cnet_isa_0e97c0b333 (IsA barong knife) (STV 1.0 0.9091)) +(: cnet_isa_67edeb9261 (IsA barony domain) (STV 1.0 0.9091)) +(: cnet_isa_e579d23096 (IsA barony estate) (STV 1.0 0.9091)) +(: cnet_isa_1037eeb195 (IsA baroque artistic_style) (STV 1.0 0.9091)) +(: cnet_isa_334ef09d78 (IsA baroreceptor sense_organ) (STV 1.0 0.9091)) +(: cnet_isa_5f9e20eef1 (IsA barosaur sauropod) (STV 1.0 0.9091)) +(: cnet_isa_3e433b8f98 (IsA barouche carriage) (STV 1.0 0.9091)) +(: cnet_isa_ce1183fcf2 (IsA barrack military_quarter) (STV 1.0 0.9091)) +(: cnet_isa_36a50bc250 (IsA barracouta food_fish) (STV 1.0 0.9091)) +(: cnet_isa_50cd168618 (IsA barracuda spiny_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_41f52ae2ef (IsA barrage fire) (STV 1.0 0.9091)) +(: cnet_isa_cf2df6af6d (IsA barrage language) (STV 1.0 0.9091)) +(: cnet_isa_b4f1ede28d (IsA barrage_balloon airship) (STV 1.0 0.9091)) +(: cnet_isa_29ab3b40da (IsA barrage_jamming jamming) (STV 1.0 0.9091)) +(: cnet_isa_fc1c1fe965 (IsA barramunda endangered_specy) (STV 1.0 0.9091)) +(: cnet_isa_212e850d4f (IsA barrater wrongdoer) (STV 1.0 0.9091)) +(: cnet_isa_29743f1d7c (IsA barratry bribery) (STV 1.0 0.9091)) +(: cnet_isa_7a3bacebd4 (IsA barratry crime) (STV 1.0 0.9091)) +(: cnet_isa_0322a6f8b5 (IsA barratry fraud) (STV 1.0 0.9091)) +(: cnet_isa_97be699a5a (IsA barred_owl owl) (STV 1.0 0.9091)) +(: cnet_isa_b4030549c8 (IsA barrel container) (STV 1.0 0.9091)) +(: cnet_isa_fa3f5fde20 (IsA barrel tube) (STV 1.0 0.9091)) +(: cnet_isa_b595299556 (IsA barrel vessel) (STV 1.0 0.9091)) +(: cnet_isa_768e0af43a (IsA barrel british_capacity_unit) (STV 1.0 0.9091)) +(: cnet_isa_d2304c8195 (IsA barrel containerful) (STV 1.0 0.9091)) +(: cnet_isa_49578a1571 (IsA barrel united_state_liquid_unit) (STV 1.0 0.9091)) +(: cnet_isa_e28334bd79 (IsA barrel cylinder) (STV 1.0 0.9091)) +(: cnet_isa_c724e4dec1 (IsA barrel_cactus cactus) (STV 1.0 0.9091)) +(: cnet_isa_e7d30ef2af (IsA barrel_knot knot) (STV 1.0 0.9091)) +(: cnet_isa_27554cc01c (IsA barrel_maker craftsman) (STV 1.0 0.9091)) +(: cnet_isa_05c4e390f7 (IsA barrel_organ musical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_8818a9eeaf (IsA barrel_roll roll) (STV 1.0 0.9091)) +(: cnet_isa_c998ff27d2 (IsA barrel_vault vault) (STV 1.0 0.9091)) +(: cnet_isa_60f1e2a7f0 (IsA barrelfish butterfish) (STV 1.0 0.9091)) +(: cnet_isa_27907b9499 (IsA barrelhouse barroom) (STV 1.0 0.9091)) +(: cnet_isa_fee5f78fe7 (IsA barrel large_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_7a2a856181 (IsA barren wilderness) (STV 1.0 0.9091)) +(: cnet_isa_0d509fab75 (IsA barren_ground_caribou caribou) (STV 1.0 0.9091)) +(: cnet_isa_38e1501b79 (IsA barrenness sterility) (STV 1.0 0.9091)) +(: cnet_isa_42e7b20cc2 (IsA barrenwort herb) (STV 1.0 0.9091)) +(: cnet_isa_c381553c34 (IsA barrette pin) (STV 1.0 0.9091)) +(: cnet_isa_01fd47c246 (IsA barricade barrier) (STV 1.0 0.9091)) +(: cnet_isa_e7a622550f (IsA barrier obstruction) (STV 1.0 0.9091)) +(: cnet_isa_0ef061f643 (IsA barrier obstacle) (STV 1.0 0.9091)) +(: cnet_isa_efca5e8c56 (IsA barrier mechanism) (STV 1.0 0.9091)) +(: cnet_isa_50167f5f02 (IsA barrier_island island) (STV 1.0 0.9091)) +(: cnet_isa_7998b684e0 (IsA barrier_reef coral_reef) (STV 1.0 0.9091)) +(: cnet_isa_2417319d4c (IsA barring ejection) (STV 1.0 0.9091)) +(: cnet_isa_37390907dd (IsA barrio quarter) (STV 1.0 0.9091)) +(: cnet_isa_b4d69653d6 (IsA barrio urban_area) (STV 1.0 0.9091)) +(: cnet_isa_78cf7370c3 (IsA barrister lawyer) (STV 1.0 0.9091)) +(: cnet_isa_0c3a245b09 (IsA barroom room) (STV 1.0 0.9091)) +(: cnet_isa_e26c81b7c6 (IsA barrow_s_goldeneye goldeneye) (STV 1.0 0.9091)) +(: cnet_isa_39bf131dc8 (IsA barrow handcart) (STV 1.0 0.9091)) +(: cnet_isa_7ffbf79683 (IsA barrow containerful) (STV 1.0 0.9091)) +(: cnet_isa_6d57a2650f (IsA bartender employee) (STV 1.0 0.9091)) +(: cnet_isa_faafb53ceb (IsA barter exchange) (STV 1.0 0.9091)) +(: cnet_isa_8b89c5a6af (IsA barterer trader) (STV 1.0 0.9091)) +(: cnet_isa_b071e2677a (IsA bartholin_s_gland vestibular_gland) (STV 1.0 0.9091)) +(: cnet_isa_653a3e31a5 (IsA bartle_frere dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_daf15a5ba8 (IsA bartlett pear) (STV 1.0 0.9091)) +(: cnet_isa_faf955a672 (IsA bartonia flower) (STV 1.0 0.9091)) +(: cnet_isa_0cb506ea8e (IsA bartram_juneberry juneberry) (STV 1.0 0.9091)) +(: cnet_isa_0098f6858d (IsA bartramia bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_d2e3283476 (IsA barycenter center_of_mass) (STV 1.0 0.9091)) +(: cnet_isa_4d6d569f45 (IsA barye pressure_unit) (STV 1.0 0.9091)) +(: cnet_isa_04a5970d3c (IsA baryon fermion) (STV 1.0 0.9091)) +(: cnet_isa_74c3f2f70d (IsA baryon hadron) (STV 1.0 0.9091)) +(: cnet_isa_a7984200f3 (IsA baryon_number number) (STV 1.0 0.9091)) +(: cnet_isa_4ced94a9c3 (IsA baryta barium) (STV 1.0 0.9091)) +(: cnet_isa_65867c7f8d (IsA bas_relief relief) (STV 1.0 0.9091)) +(: cnet_isa_4a26d20691 (IsA basal_body_temperature body_temperature) (STV 1.0 0.9091)) +(: cnet_isa_c8ef608611 (IsA basal_body_temperature_method_of_family_planning natural_family_planning) (STV 1.0 0.9091)) +(: cnet_isa_a72863cf4c (IsA basal_ganglion ganglion) (STV 1.0 0.9091)) +(: cnet_isa_c1851f8996 (IsA basal_metabolic_rate metabolic_rate) (STV 1.0 0.9091)) +(: cnet_isa_91940ce2fb (IsA basal_metabolism metabolism) (STV 1.0 0.9091)) +(: cnet_isa_37d56edc7e (IsA basal_placentation placentation) (STV 1.0 0.9091)) +(: cnet_isa_b870d1cd7f (IsA basal_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_a6bd332ae0 (IsA basalt volcanic_rock) (STV 1.0 0.9091)) +(: cnet_isa_cbaeea02bc (IsA bascule structure) (STV 1.0 0.9091)) +(: cnet_isa_3518622c29 (IsA base bottom) (STV 1.0 0.9091)) +(: cnet_isa_0205e6d82c (IsA base baseball_equipment) (STV 1.0 0.9091)) +(: cnet_isa_efa1924409 (IsA base ingredient) (STV 1.0 0.9091)) +(: cnet_isa_0a3ac53a6c (IsA base support) (STV 1.0 0.9091)) +(: cnet_isa_bc4e81ad27 (IsA base electrode) (STV 1.0 0.9091)) +(: cnet_isa_d2d8dcbcd5 (IsA base location) (STV 1.0 0.9091)) +(: cnet_isa_90d33c4985 (IsA base military_installation) (STV 1.0 0.9091)) +(: cnet_isa_a6faa3f637 (IsA base number) (STV 1.0 0.9091)) +(: cnet_isa_7675e4e2fb (IsA base part) (STV 1.0 0.9091)) +(: cnet_isa_eb16a2b746 (IsA base flank) (STV 1.0 0.9091)) +(: cnet_isa_f3ef9eaaf1 (IsA base compound) (STV 1.0 0.9091)) +(: cnet_isa_47ed8ea18f (IsA base_hit hit) (STV 1.0 0.9091)) +(: cnet_isa_6e8510ac42 (IsA base_metal metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_437c812ef9 (IsA base_on_ball accomplishment) (STV 1.0 0.9091)) +(: cnet_isa_eb0ff77065 (IsA base_pair nucleotide) (STV 1.0 0.9091)) +(: cnet_isa_099e1ce5e6 (IsA base_rate interest_rate) (STV 1.0 0.9091)) +(: cnet_isa_83076fc5b9 (IsA base_runner ballplayer) (STV 1.0 0.9091)) +(: cnet_isa_39eef56099 (IsA baseball american_pastime) (STV 1.0 0.9677)) +(: cnet_isa_d56af79db0 (IsA baseball american_sport) (STV 1.0 0.9454)) +(: cnet_isa_e7ee2e7324 (IsA baseball american_tradition) (STV 1.0 0.9091)) +(: cnet_isa_cc6a107df9 (IsA baseball game) (STV 1.0 0.9748)) +(: cnet_isa_0e3ade69ea (IsA baseball game_people_play) (STV 1.0 0.9339)) +(: cnet_isa_64ad1066ca (IsA baseball smaller_than_basketball) (STV 1.0 0.9091)) +(: cnet_isa_fcc022edb9 (IsA baseball sport) (STV 1.0 0.9913)) +(: cnet_isa_e8c4f5e8c0 (IsA baseball ball_game) (STV 1.0 0.9091)) +(: cnet_isa_4ebf44737b (IsA baseball ball) (STV 1.0 0.9091)) +(: cnet_isa_fac6546965 (IsA baseball baseball_equipment) (STV 1.0 0.9091)) +(: cnet_isa_27f923dcd5 (IsA baseball_bat baseball_equipment) (STV 1.0 0.9091)) +(: cnet_isa_8e30f294fc (IsA baseball_bat bat) (STV 1.0 0.9091)) +(: cnet_isa_4958a3d3d0 (IsA baseball_cap cap) (STV 1.0 0.9091)) +(: cnet_isa_3255035558 (IsA baseball_card trading_card) (STV 1.0 0.9091)) +(: cnet_isa_1f3db65e81 (IsA baseball_clinic clinic) (STV 1.0 0.9091)) +(: cnet_isa_a303c64364 (IsA baseball_club baseball_team) (STV 1.0 0.9091)) +(: cnet_isa_cd08b1048b (IsA baseball_coach coach) (STV 1.0 0.9091)) +(: cnet_isa_ba76fc5d86 (IsA baseball_diamond tract) (STV 1.0 0.9091)) +(: cnet_isa_f006f717ea (IsA baseball_equipment sport_equipment) (STV 1.0 0.9091)) +(: cnet_isa_7a1c0c2cc4 (IsA baseball_glove baseball_equipment) (STV 1.0 0.9091)) +(: cnet_isa_739d81883a (IsA baseball_league league) (STV 1.0 0.9091)) +(: cnet_isa_ca969f8b1a (IsA baseball_mitt glove) (STV 1.0 0.9091)) +(: cnet_isa_9b5b3d733f (IsA baseball_play maneuver) (STV 1.0 0.9091)) +(: cnet_isa_c29e5d7c78 (IsA baseball_player athlete) (STV 1.0 0.9091)) +(: cnet_isa_b88e1b7389 (IsA baseball_score score) (STV 1.0 0.9091)) +(: cnet_isa_0454e74d53 (IsA baseball_season season) (STV 1.0 0.9091)) +(: cnet_isa_6f61809da8 (IsA baseball_swing stroke) (STV 1.0 0.9091)) +(: cnet_isa_7beb9272fe (IsA baseball_team team) (STV 1.0 0.9091)) +(: cnet_isa_00665c1d8b (IsA baseboard molding) (STV 1.0 0.9091)) +(: cnet_isa_162736ca3d (IsA baseline standard) (STV 1.0 0.9091)) +(: cnet_isa_efba79b5b7 (IsA baseline line) (STV 1.0 0.9091)) +(: cnet_isa_58e1f86359 (IsA basement place) (STV 1.0 0.9091)) +(: cnet_isa_4cff5481a0 (IsA basement room_below_house) (STV 1.0 0.9091)) +(: cnet_isa_dbb3c5e5ea (IsA basement room_under_house) (STV 1.0 0.9339)) +(: cnet_isa_00e6073e6e (IsA basement floor) (STV 1.0 0.9091)) +(: cnet_isa_f39ab5a757 (IsA basement support) (STV 1.0 0.9091)) +(: cnet_isa_24d43bc372 (IsA baseness unworthiness) (STV 1.0 0.9091)) +(: cnet_isa_9aa7b0abc1 (IsA basenji dog) (STV 1.0 0.9091)) +(: cnet_isa_6bcca13c53 (IsA bash party) (STV 1.0 0.9091)) +(: cnet_isa_84a76f8d2b (IsA basic commodity) (STV 1.0 0.9091)) +(: cnet_isa_6473141763 (IsA basic programming_language) (STV 1.0 0.9091)) +(: cnet_isa_f22212f597 (IsA basic_assumption assumption) (STV 1.0 0.9091)) +(: cnet_isa_1063745b86 (IsA basic_cognitive_process process) (STV 1.0 0.9091)) +(: cnet_isa_36ac0129e6 (IsA basic_dye dye) (STV 1.0 0.9091)) +(: cnet_isa_a098123249 (IsA basic_english artificial_language) (STV 1.0 0.9091)) +(: cnet_isa_6d0e7830a9 (IsA basic_iron pig_iron) (STV 1.0 0.9091)) +(: cnet_isa_d96b1db0a1 (IsA basic_point_defense_missile_system shipboard_system) (STV 1.0 0.9091)) +(: cnet_isa_01a4759fc1 (IsA basic_slag slag) (STV 1.0 0.9091)) +(: cnet_isa_bbec752810 (IsA basic_training military_training) (STV 1.0 0.9091)) +(: cnet_isa_e7b83b224c (IsA basic fact) (STV 1.0 0.9091)) +(: cnet_isa_628b095ad0 (IsA basidiocarp fruiting_body) (STV 1.0 0.9091)) +(: cnet_isa_d0ef591301 (IsA basidiolichen lichen) (STV 1.0 0.9091)) +(: cnet_isa_d6897ffabe (IsA basidiomycete fungus) (STV 1.0 0.9091)) +(: cnet_isa_a2389fcee5 (IsA basidiomycete class) (STV 1.0 0.9091)) +(: cnet_isa_3e409282db (IsA basidiomycota division) (STV 1.0 0.9091)) +(: cnet_isa_feaede1059 (IsA basidiospore spore) (STV 1.0 0.9091)) +(: cnet_isa_85de82d9d4 (IsA basidium reproductive_structure) (STV 1.0 0.9091)) +(: cnet_isa_a9cbc799a4 (IsA basil herb) (STV 1.0 0.9454)) +(: cnet_isa_9952dd1dd9 (IsA basil_balm monarda) (STV 1.0 0.9091)) +(: cnet_isa_4a54666d9e (IsA basil_mint mountain_mint) (STV 1.0 0.9091)) +(: cnet_isa_32a183f869 (IsA basil_thyme herb) (STV 1.0 0.9091)) +(: cnet_isa_e1d7dec131 (IsA basilar_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_5489d77b75 (IsA basilar_membrane membrane) (STV 1.0 0.9091)) +(: cnet_isa_0a5bc956bc (IsA basileus ruler) (STV 1.0 0.9091)) +(: cnet_isa_71b8caca36 (IsA basilic_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_e6a5d5b9e0 (IsA basilica church) (STV 1.0 0.9091)) +(: cnet_isa_532f4ea886 (IsA basilica roman_building) (STV 1.0 0.9091)) +(: cnet_isa_61652ce47f (IsA basiliscus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_bc95b9d557 (IsA basilisk iguanid) (STV 1.0 0.9091)) +(: cnet_isa_650aea84ea (IsA basilisk cannon) (STV 1.0 0.9091)) +(: cnet_isa_6c4bd7e05f (IsA basilisk mythical_monster) (STV 1.0 0.9091)) +(: cnet_isa_a25764a9a8 (IsA basin vessel) (STV 1.0 0.9091)) +(: cnet_isa_c6a12f0862 (IsA basin natural_depression) (STV 1.0 0.9091)) +(: cnet_isa_665dfa8519 (IsA basin containerful) (STV 1.0 0.9091)) +(: cnet_isa_77e129fd7d (IsA basinet helmet) (STV 1.0 0.9091)) +(: cnet_isa_0daaa3c916 (IsA basis assumption) (STV 1.0 0.9091)) +(: cnet_isa_995f2a285e (IsA basis part) (STV 1.0 0.9091)) +(: cnet_isa_298c8b5926 (IsA basivertebral_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_3aa1d20916 (IsA basket score) (STV 1.0 0.9091)) +(: cnet_isa_aca24f9840 (IsA basket basketball_equipment) (STV 1.0 0.9091)) +(: cnet_isa_08cfc87718 (IsA basket container) (STV 1.0 0.9091)) +(: cnet_isa_d540546d14 (IsA basket goal) (STV 1.0 0.9091)) +(: cnet_isa_0b28a22809 (IsA basket containerful) (STV 1.0 0.9091)) +(: cnet_isa_840108cff6 (IsA basket_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_366014caa7 (IsA basket_fern sword_fern) (STV 1.0 0.9091)) +(: cnet_isa_931a35edd8 (IsA basket_flower centaury) (STV 1.0 0.9091)) +(: cnet_isa_eb65d16618 (IsA basket_hilt hilt) (STV 1.0 0.9091)) +(: cnet_isa_72a9e35e1f (IsA basket_maker primitive) (STV 1.0 0.9091)) +(: cnet_isa_fb81968496 (IsA basket_oak chestnut_oak) (STV 1.0 0.9091)) +(: cnet_isa_b1edc2acf9 (IsA basket_star echinoderm) (STV 1.0 0.9091)) +(: cnet_isa_c243d43997 (IsA basket_weave fabric) (STV 1.0 0.9091)) +(: cnet_isa_c2e557ef8c (IsA basketball fast_and_physically_demanding_sport) (STV 1.0 0.9454)) +(: cnet_isa_94a7123285 (IsA basketball fast_moving_game) (STV 1.0 0.9091)) +(: cnet_isa_863ae9ddd4 (IsA basketball form_of_exercise) (STV 1.0 0.9091)) +(: cnet_isa_77594ef2da (IsA basketball popular_sport) (STV 1.0 0.9091)) +(: cnet_isa_671fd787ef (IsA basketball subset_of_sport) (STV 1.0 0.9454)) +(: cnet_isa_0cf5c322f7 (IsA basketball team_game) (STV 1.0 0.9091)) +(: cnet_isa_331d8790e0 (IsA basketball court_game) (STV 1.0 0.9091)) +(: cnet_isa_c17f7f20db (IsA basketball ball) (STV 1.0 0.9091)) +(: cnet_isa_ae54385e88 (IsA basketball basketball_equipment) (STV 1.0 0.9091)) +(: cnet_isa_3173aa7cd5 (IsA basketball_and_football sport) (STV 1.0 0.9339)) +(: cnet_isa_425d313364 (IsA basketball_clinic clinic) (STV 1.0 0.9091)) +(: cnet_isa_936bc1a20d (IsA basketball_coach coach) (STV 1.0 0.9091)) +(: cnet_isa_042c4bbf5b (IsA basketball_court court) (STV 1.0 0.9091)) +(: cnet_isa_e737500b33 (IsA basketball_equipment sport_equipment) (STV 1.0 0.9091)) +(: cnet_isa_6875a4bef2 (IsA basketball_league league) (STV 1.0 0.9091)) +(: cnet_isa_b9f7a95243 (IsA basketball_play play) (STV 1.0 0.9091)) +(: cnet_isa_c9ca75ad53 (IsA basketball_player athlete) (STV 1.0 0.9091)) +(: cnet_isa_41d4ee4dc2 (IsA basketball_score score) (STV 1.0 0.9091)) +(: cnet_isa_d21d3a4ac0 (IsA basketball_season season) (STV 1.0 0.9091)) +(: cnet_isa_2f66cbf987 (IsA basketball_shot shot) (STV 1.0 0.9091)) +(: cnet_isa_8cb82f209a (IsA basketball_team team) (STV 1.0 0.9091)) +(: cnet_isa_dcf2dfbc83 (IsA basketry trade) (STV 1.0 0.9091)) +(: cnet_isa_029a4b07a5 (IsA basketweaver maker) (STV 1.0 0.9091)) +(: cnet_isa_c9940b168a (IsA basking_shark mackerel_shark) (STV 1.0 0.9091)) +(: cnet_isa_6c7574b3df (IsA basophil leukocyte) (STV 1.0 0.9091)) +(: cnet_isa_c62389d7ef (IsA basophilia stainability) (STV 1.0 0.9091)) +(: cnet_isa_514f175f99 (IsA basotho african) (STV 1.0 0.9091)) +(: cnet_isa_4650e7f31f (IsA basque natural_language) (STV 1.0 0.9091)) +(: cnet_isa_70d6a48795 (IsA basque european) (STV 1.0 0.9091)) +(: cnet_isa_ff39ffc055 (IsA bass fish) (STV 1.0 0.9770)) +(: cnet_isa_72e849a41f (IsA bass freshwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_68b6c6dd5c (IsA bass instrument) (STV 1.0 0.9091)) +(: cnet_isa_94d971e6ca (IsA bass musical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_c89578c170 (IsA bass specy_of_fish) (STV 1.0 0.9339)) +(: cnet_isa_fe30c3e53d (IsA bass percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_2fbe0d1618 (IsA bass pitch) (STV 1.0 0.9091)) +(: cnet_isa_f406dcd9d1 (IsA bass part) (STV 1.0 0.9091)) +(: cnet_isa_4f89872c72 (IsA bass singing_voice) (STV 1.0 0.9091)) +(: cnet_isa_7b16fc1790 (IsA bass singer) (STV 1.0 0.9091)) +(: cnet_isa_eb2a62b8c6 (IsA bass_clarinet reed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_eadae3d7f0 (IsA bass_clarinet clarinet) (STV 1.0 0.9091)) +(: cnet_isa_2570fa6c19 (IsA bass_clef clef) (STV 1.0 0.9091)) +(: cnet_isa_5f2f2b3dc0 (IsA bass_drum drum) (STV 1.0 0.9091)) +(: cnet_isa_d29661a7f2 (IsA bass_fiddle bass) (STV 1.0 0.9091)) +(: cnet_isa_eed6775cd4 (IsA bass_fiddle bowed_stringed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_35983a072d (IsA bass_guitar instrument) (STV 1.0 0.9091)) +(: cnet_isa_c64c19b625 (IsA bass_guitar bass) (STV 1.0 0.9091)) +(: cnet_isa_da10e034f6 (IsA bass_guitar guitar) (STV 1.0 0.9091)) +(: cnet_isa_4b4391cd57 (IsA bass_horn bass) (STV 1.0 0.9091)) +(: cnet_isa_ed26b94ad3 (IsA bass_horn brass) (STV 1.0 0.9091)) +(: cnet_isa_9146430a88 (IsA bassariscidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_9f6e989cb5 (IsA bassariscus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_0c056412d1 (IsA bassarisk procyonid) (STV 1.0 0.9091)) +(: cnet_isa_c63d75b514 (IsA basset hound) (STV 1.0 0.9091)) +(: cnet_isa_af1bda68f8 (IsA basset_horn clarinet) (STV 1.0 0.9091)) +(: cnet_isa_774d28b92c (IsA bassia caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_573fab5d97 (IsA bassine fiber) (STV 1.0 0.9091)) +(: cnet_isa_758ee6f4db (IsA bassinet baby_bed) (STV 1.0 0.9091)) +(: cnet_isa_8f6a3750d1 (IsA bassinet baby_buggy) (STV 1.0 0.9091)) +(: cnet_isa_77009d96fb (IsA bassist musician) (STV 1.0 0.9091)) +(: cnet_isa_4cb22b7683 (IsA basso_profundo bass) (STV 1.0 0.9091)) +(: cnet_isa_0d147b5248 (IsA bassoon musical_instrument) (STV 1.0 0.9339)) +(: cnet_isa_e03f8ce56b (IsA bassoon double_reed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_f71e133e71 (IsA bassoonist musician) (STV 1.0 0.9091)) +(: cnet_isa_7f208e84de (IsA basswood wood) (STV 1.0 0.9091)) +(: cnet_isa_9e672b35a8 (IsA bast natural_fiber) (STV 1.0 0.9091)) +(: cnet_isa_d367715d68 (IsA bastard variation) (STV 1.0 0.9091)) +(: cnet_isa_19e76544c1 (IsA bastard offspring) (STV 1.0 0.9091)) +(: cnet_isa_3bf3e1da07 (IsA bastard_feverfew weed) (STV 1.0 0.9091)) +(: cnet_isa_90f8e53e1f (IsA bastard_indigo hoary_pea) (STV 1.0 0.9091)) +(: cnet_isa_efb5ad25b3 (IsA bastard_lignum_vitae angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_f12bc51e41 (IsA bastard_pennyroyal blue_curl) (STV 1.0 0.9091)) +(: cnet_isa_31048f7830 (IsA bastard_toadflax parasitic_plant) (STV 1.0 0.9091)) +(: cnet_isa_7a01d7b966 (IsA bastard_wing feather) (STV 1.0 0.9091)) +(: cnet_isa_934a33bfd9 (IsA bastardization degradation) (STV 1.0 0.9091)) +(: cnet_isa_bac8725cb4 (IsA bastardization declaration) (STV 1.0 0.9091)) +(: cnet_isa_66037b1d08 (IsA bastardy status) (STV 1.0 0.9091)) +(: cnet_isa_a58031b874 (IsA baste embroidery_stitch) (STV 1.0 0.9091)) +(: cnet_isa_c32c5b0b18 (IsA baster cooking_utensil) (STV 1.0 0.9091)) +(: cnet_isa_99f60a9c63 (IsA baster roaster) (STV 1.0 0.9091)) +(: cnet_isa_63d190fd68 (IsA baster sewer) (STV 1.0 0.9091)) +(: cnet_isa_60ec1749c1 (IsA bastille jail) (STV 1.0 0.9091)) +(: cnet_isa_9f08f403d1 (IsA bastille prison) (STV 1.0 0.9091)) +(: cnet_isa_7ac88fdb68 (IsA bastille_day legal_holiday) (STV 1.0 0.9091)) +(: cnet_isa_a861745e43 (IsA bastinado cudgel) (STV 1.0 0.9091)) +(: cnet_isa_fe45d1d2c3 (IsA basting moistening) (STV 1.0 0.9091)) +(: cnet_isa_f553e854bd (IsA bastion fortification) (STV 1.0 0.9091)) +(: cnet_isa_df6464b9cb (IsA bastion stronghold) (STV 1.0 0.9091)) +(: cnet_isa_dfe4f8511c (IsA bastion defense) (STV 1.0 0.9091)) +(: cnet_isa_ae29b6c1f3 (IsA bastnasite mineral) (STV 1.0 0.9091)) +(: cnet_isa_935f4225ab (IsA basuco cocaine) (STV 1.0 0.9091)) +(: cnet_isa_c6755d7750 (IsA bat small_rodent_mammal) (STV 1.0 0.9091)) +(: cnet_isa_620ba83aa7 (IsA bat placental) (STV 1.0 0.9091)) +(: cnet_isa_da81ff0cb9 (IsA bat club) (STV 1.0 0.9091)) +(: cnet_isa_13bc09825a (IsA bat turn) (STV 1.0 0.9091)) +(: cnet_isa_194589c82d (IsA bat_boy assistant) (STV 1.0 0.9091)) +(: cnet_isa_0fe4e6a3f6 (IsA bat_boy male_child) (STV 1.0 0.9091)) +(: cnet_isa_27140135f0 (IsA bat_mitzvah initiation) (STV 1.0 0.9091)) +(: cnet_isa_b0403975d9 (IsA bata biu_mandara) (STV 1.0 0.9091)) +(: cnet_isa_de3d38c244 (IsA batch collection) (STV 1.0 0.9091)) +(: cnet_isa_8c52c6b994 (IsA batch large_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_e0cd602d31 (IsA batch_processing execution) (STV 1.0 0.9091)) +(: cnet_isa_8bfe5173ca (IsA batfish spiny_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_8453fc05f7 (IsA bath washup) (STV 1.0 0.9091)) +(: cnet_isa_4a65ad1bb6 (IsA bath vessel) (STV 1.0 0.9091)) +(: cnet_isa_1186fe0610 (IsA bath liquid_unit) (STV 1.0 0.9091)) +(: cnet_isa_6c03b9345b (IsA bath_asparagus star_of_bethlehem) (STV 1.0 0.9091)) +(: cnet_isa_f78745428d (IsA bath_chair wheelchair) (STV 1.0 0.9091)) +(: cnet_isa_e185c2522c (IsA bath_linen linen) (STV 1.0 0.9091)) +(: cnet_isa_e004e72501 (IsA bath_mat bath_linen) (STV 1.0 0.9091)) +(: cnet_isa_4565159675 (IsA bath_oil toiletry) (STV 1.0 0.9091)) +(: cnet_isa_9aa032df31 (IsA bath_salt toiletry) (STV 1.0 0.9091)) +(: cnet_isa_45f670d4af (IsA bath_towel bath_linen) (STV 1.0 0.9091)) +(: cnet_isa_d2eabed912 (IsA bath_towel towel) (STV 1.0 0.9091)) +(: cnet_isa_b65bd3b230 (IsA bath_water water) (STV 1.0 0.9091)) +(: cnet_isa_fd3545c864 (IsA bathe swimming) (STV 1.0 0.9091)) +(: cnet_isa_60448d580d (IsA bather person) (STV 1.0 0.9091)) +(: cnet_isa_f952eb833e (IsA bathhouse building) (STV 1.0 0.9091)) +(: cnet_isa_974d1053e8 (IsA bathhouse house) (STV 1.0 0.9091)) +(: cnet_isa_b72d705e7a (IsA bathing diversion) (STV 1.0 0.9091)) +(: cnet_isa_6b898ecaa0 (IsA bathing_cap cap) (STV 1.0 0.9091)) +(: cnet_isa_9cd7eb96e3 (IsA batholith igneous_rock) (STV 1.0 0.9091)) +(: cnet_isa_96b95ab5e4 (IsA bathometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_ae636e324f (IsA batho expressive_style) (STV 1.0 0.9091)) +(: cnet_isa_4171c0d366 (IsA bathrobe robe) (STV 1.0 0.9091)) +(: cnet_isa_54f11f3862 (IsA bathroom room) (STV 1.0 0.9572)) +(: cnet_isa_9160e92be4 (IsA bathroom_cleaner cleansing_agent) (STV 1.0 0.9091)) +(: cnet_isa_4855d873f9 (IsA bathroom_fixture fixture) (STV 1.0 0.9091)) +(: cnet_isa_7115df66c9 (IsA bathtub vessel) (STV 1.0 0.9091)) +(: cnet_isa_f0de07ab7c (IsA bathtub_gin gin) (STV 1.0 0.9091)) +(: cnet_isa_08061e7822 (IsA bathyergidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_006162ceb0 (IsA bathyergus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_adbd4e193d (IsA bathymetry measurement) (STV 1.0 0.9091)) +(: cnet_isa_c5e68c7d77 (IsA bathyscaphe submersible) (STV 1.0 0.9091)) +(: cnet_isa_e4d856e118 (IsA bathysphere submersible) (STV 1.0 0.9091)) +(: cnet_isa_c110b74b3b (IsA batidaceae caryophylloid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_954934d7c5 (IsA batik fabric) (STV 1.0 0.9091)) +(: cnet_isa_96999075c2 (IsA batis caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f3f763e8d3 (IsA batiste fabric) (STV 1.0 0.9091)) +(: cnet_isa_a2dff13539 (IsA batman attendant) (STV 1.0 0.9091)) +(: cnet_isa_f39f4c7ee1 (IsA baton stick) (STV 1.0 0.9091)) +(: cnet_isa_e50cbb353f (IsA baton rod) (STV 1.0 0.9091)) +(: cnet_isa_67fdc4ec26 (IsA baton sport_implement) (STV 1.0 0.9091)) +(: cnet_isa_87c4c10d15 (IsA baton staff) (STV 1.0 0.9091)) +(: cnet_isa_0024718091 (IsA baton_twirler performer) (STV 1.0 0.9091)) +(: cnet_isa_d743ba083f (IsA batrachoididae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_64752220bf (IsA batrachomyomachia affray) (STV 1.0 0.9091)) +(: cnet_isa_80bf8cd459 (IsA batrachosep amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_fe39df859a (IsA bat nocturnal_flying_rodent) (STV 1.0 0.9454)) +(: cnet_isa_6012d39e5f (IsA batswana bantu) (STV 1.0 0.9091)) +(: cnet_isa_1da98a57a7 (IsA battalion army_unit) (STV 1.0 0.9091)) +(: cnet_isa_b2915f1497 (IsA battalion large_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_8b1655d273 (IsA batten strip) (STV 1.0 0.9091)) +(: cnet_isa_7679bd96cc (IsA batter_s_box box) (STV 1.0 0.9091)) +(: cnet_isa_b85fc7cc59 (IsA batter ballplayer) (STV 1.0 0.9091)) +(: cnet_isa_ced5196f9e (IsA batter concoction) (STV 1.0 0.9091)) +(: cnet_isa_f6e752abe3 (IsA battering fight) (STV 1.0 0.9091)) +(: cnet_isa_f30c4c70c2 (IsA battering_ram engine) (STV 1.0 0.9091)) +(: cnet_isa_8732864dc3 (IsA battering_ram ram) (STV 1.0 0.9091)) +(: cnet_isa_3b7ce4159f (IsA battery assault) (STV 1.0 0.9091)) +(: cnet_isa_648114e6fb (IsA battery battery) (STV 1.0 0.9091)) +(: cnet_isa_e99d5be79b (IsA battery electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_5e3f886525 (IsA battery stamp_mill) (STV 1.0 0.9091)) +(: cnet_isa_601b6fde1f (IsA battery collection) (STV 1.0 0.9091)) +(: cnet_isa_955e9b43f1 (IsA battery team) (STV 1.0 0.9091)) +(: cnet_isa_8e8aedd25c (IsA battery artillery) (STV 1.0 0.9091)) +(: cnet_isa_9f29ca8804 (IsA battery_acid vitriol) (STV 1.0 0.9091)) +(: cnet_isa_22ce8b0019 (IsA batting stuffing) (STV 1.0 0.9091)) +(: cnet_isa_40b229abca (IsA batting attempt) (STV 1.0 0.9091)) +(: cnet_isa_75db09a9f8 (IsA batting_average proportion) (STV 1.0 0.9091)) +(: cnet_isa_d684797af2 (IsA batting_cage baseball_equipment) (STV 1.0 0.9091)) +(: cnet_isa_cc1e64adb8 (IsA batting_coach baseball_coach) (STV 1.0 0.9091)) +(: cnet_isa_4573c8f18a (IsA batting_glove baseball_equipment) (STV 1.0 0.9091)) +(: cnet_isa_2d653c5d23 (IsA batting_glove glove) (STV 1.0 0.9091)) +(: cnet_isa_3041de5dae (IsA batting_helmet baseball_equipment) (STV 1.0 0.9091)) +(: cnet_isa_c17aec30ec (IsA batting_helmet helmet) (STV 1.0 0.9091)) +(: cnet_isa_b3fe413d9d (IsA batting_order roll) (STV 1.0 0.9091)) +(: cnet_isa_d5fe7ddb61 (IsA battle fight_between_enemy) (STV 1.0 0.9091)) +(: cnet_isa_b6aafaa4ab (IsA battle military_action) (STV 1.0 0.9091)) +(: cnet_isa_566ddcd8c6 (IsA battle_ax broadax) (STV 1.0 0.9091)) +(: cnet_isa_63860581e1 (IsA battle_ax wife) (STV 1.0 0.9091)) +(: cnet_isa_6bc6cafcee (IsA battle_cruiser cruiser) (STV 1.0 0.9091)) +(: cnet_isa_da84099923 (IsA battle_damage damage) (STV 1.0 0.9091)) +(: cnet_isa_440ebbe66f (IsA battle_dress military_uniform) (STV 1.0 0.9091)) +(: cnet_isa_668c8ec575 (IsA battle_fatigue posttraumatic_stress_disorder) (STV 1.0 0.9091)) +(: cnet_isa_2974f8d2bc (IsA battle_flag flag) (STV 1.0 0.9091)) +(: cnet_isa_8bcb1e320b (IsA battle_fleet fleet) (STV 1.0 0.9091)) +(: cnet_isa_562ce5baaa (IsA battle_group army_unit) (STV 1.0 0.9091)) +(: cnet_isa_6fd7374bee (IsA battle_line line) (STV 1.0 0.9091)) +(: cnet_isa_17fd2b43e5 (IsA battle_of_wit contest) (STV 1.0 0.9091)) +(: cnet_isa_aa5784b2d9 (IsA battle_plan plan_of_action) (STV 1.0 0.9091)) +(: cnet_isa_a071e8852b (IsA battle_sight gunsight) (STV 1.0 0.9091)) +(: cnet_isa_6f2b97daf6 (IsA battledore badminton) (STV 1.0 0.9091)) +(: cnet_isa_bdbda212d6 (IsA battlefield tract) (STV 1.0 0.9091)) +(: cnet_isa_c024379c4c (IsA battlefront line) (STV 1.0 0.9091)) +(: cnet_isa_d902c851f8 (IsA battlement rampart) (STV 1.0 0.9091)) +(: cnet_isa_4ae340133c (IsA battleship ship) (STV 1.0 0.9091)) +(: cnet_isa_71486b312a (IsA battleship warship) (STV 1.0 0.9091)) +(: cnet_isa_6e943ac1d0 (IsA battue hunt) (STV 1.0 0.9091)) +(: cnet_isa_c30995cb54 (IsA batwing swing_door) (STV 1.0 0.9091)) +(: cnet_isa_e2ada0e3f1 (IsA bauble scepter) (STV 1.0 0.9091)) +(: cnet_isa_2f6feec72c (IsA baud information_measure) (STV 1.0 0.9091)) +(: cnet_isa_0de77fb57b (IsA bauhaus architectural_style) (STV 1.0 0.9091)) +(: cnet_isa_3a43b842b5 (IsA bauhinia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c3de01f8b5 (IsA bauxite mineral) (STV 1.0 0.9091)) +(: cnet_isa_b6f82e2b17 (IsA bavarian german) (STV 1.0 0.9091)) +(: cnet_isa_e4192dfc36 (IsA bavarian_blue bleu) (STV 1.0 0.9091)) +(: cnet_isa_9d285acce1 (IsA bavarian_cream custard) (STV 1.0 0.9091)) +(: cnet_isa_f09c7f941e (IsA bawbee coin) (STV 1.0 0.9091)) +(: cnet_isa_35c32b2efa (IsA bawdry obscenity) (STV 1.0 0.9091)) +(: cnet_isa_243c64f71c (IsA bawler weeper) (STV 1.0 0.9091)) +(: cnet_isa_16b3d6c073 (IsA bay horse) (STV 1.0 0.9091)) +(: cnet_isa_09f4aa1a0d (IsA bay compartment) (STV 1.0 0.9091)) +(: cnet_isa_19ec0a012e (IsA bay cry) (STV 1.0 0.9091)) +(: cnet_isa_c8b3ac886b (IsA bay body_of_water) (STV 1.0 0.9091)) +(: cnet_isa_d17ca5d872 (IsA bay_leaf herb) (STV 1.0 0.9091)) +(: cnet_isa_32fb1ee3a8 (IsA bay_myrtle wax_myrtle) (STV 1.0 0.9091)) +(: cnet_isa_fef86d714d (IsA bay_rum after_shave) (STV 1.0 0.9091)) +(: cnet_isa_f156f75940 (IsA bay_scallop scallop) (STV 1.0 0.9091)) +(: cnet_isa_06cf13216a (IsA bay_stater american) (STV 1.0 0.9091)) +(: cnet_isa_2057d297da (IsA bay_willow willow) (STV 1.0 0.9091)) +(: cnet_isa_3eb7a006cf (IsA bay_window window) (STV 1.0 0.9091)) +(: cnet_isa_e90a8c3ec8 (IsA baya weaver) (STV 1.0 0.9091)) +(: cnet_isa_6e58f8c530 (IsA bayat oath) (STV 1.0 0.9091)) +(: cnet_isa_9cff7ccc06 (IsA bayberry tree) (STV 1.0 0.9091)) +(: cnet_isa_ed3f16a619 (IsA bayberry wax_myrtle) (STV 1.0 0.9091)) +(: cnet_isa_0a3fa913f8 (IsA bayberry_wax wax) (STV 1.0 0.9091)) +(: cnet_isa_b75e735e93 (IsA baye_postulate postulate) (STV 1.0 0.9091)) +(: cnet_isa_1369db6170 (IsA baye_theorem theorem) (STV 1.0 0.9091)) +(: cnet_isa_c6d2c45763 (IsA bayonet knife) (STV 1.0 0.9091)) +(: cnet_isa_e497046004 (IsA bayou lake) (STV 1.0 0.9091)) +(: cnet_isa_751d25ea34 (IsA bazaar marketplace) (STV 1.0 0.9454)) +(: cnet_isa_3b62e6dbdd (IsA bazaar sale) (STV 1.0 0.9091)) +(: cnet_isa_5767b723e9 (IsA bazaar shop) (STV 1.0 0.9091)) +(: cnet_isa_ed7f70336a (IsA bazooka launcher) (STV 1.0 0.9091)) +(: cnet_isa_250c98b80d (IsA bb shot) (STV 1.0 0.9091)) +(: cnet_isa_b3c6d2fdf3 (IsA bb_gun air_gun) (STV 1.0 0.9091)) +(: cnet_isa_6cd68be68f (IsA bdellium gum_resin) (STV 1.0 0.9091)) +(: cnet_isa_bcbb9816e4 (IsA be_all_and_end_all component) (STV 1.0 0.9091)) +(: cnet_isa_eb87e96927 (IsA beach geological_formation) (STV 1.0 0.9091)) +(: cnet_isa_206677997a (IsA beach_ball ball) (STV 1.0 0.9091)) +(: cnet_isa_899202b6d9 (IsA beach_erosion erosion) (STV 1.0 0.9091)) +(: cnet_isa_2b6cd350a9 (IsA beach_flea amphipod) (STV 1.0 0.9091)) +(: cnet_isa_ff097ec50f (IsA beach_grass grass) (STV 1.0 0.9091)) +(: cnet_isa_8c08d18c92 (IsA beach_heather subshrub) (STV 1.0 0.9091)) +(: cnet_isa_9149e095c7 (IsA beach_house house) (STV 1.0 0.9091)) +(: cnet_isa_e78ec2cf20 (IsA beach_pancake sand_verbena) (STV 1.0 0.9091)) +(: cnet_isa_9aa5a9d4f0 (IsA beach_pea wild_pea) (STV 1.0 0.9091)) +(: cnet_isa_982a094d3a (IsA beach_plum plum) (STV 1.0 0.9091)) +(: cnet_isa_1b71a65c25 (IsA beach_plum wild_plum) (STV 1.0 0.9091)) +(: cnet_isa_e0641600ee (IsA beach_sand_verbena sand_verbena) (STV 1.0 0.9091)) +(: cnet_isa_bb1e87f753 (IsA beach_strawberry strawberry) (STV 1.0 0.9091)) +(: cnet_isa_4af88c0bd4 (IsA beach_towel towel) (STV 1.0 0.9091)) +(: cnet_isa_2a3135651c (IsA beach_wagon car) (STV 1.0 0.9091)) +(: cnet_isa_40aca41431 (IsA beachcomber vagrant) (STV 1.0 0.9091)) +(: cnet_isa_4d32a8c0b2 (IsA beachfront land) (STV 1.0 0.9091)) +(: cnet_isa_0b29db7304 (IsA beachhead accomplishment) (STV 1.0 0.9091)) +(: cnet_isa_4d36656145 (IsA beachhead bridgehead) (STV 1.0 0.9091)) +(: cnet_isa_1117665860 (IsA beachwear clothing) (STV 1.0 0.9091)) +(: cnet_isa_d3d09324ee (IsA beacon tower) (STV 1.0 0.9091)) +(: cnet_isa_35810fe1ad (IsA beacon visual_signal) (STV 1.0 0.9091)) +(: cnet_isa_b56b5fed00 (IsA bead jewelry) (STV 1.0 0.9091)) +(: cnet_isa_b7e96fc8b6 (IsA bead_tree necklace_tree) (STV 1.0 0.9091)) +(: cnet_isa_8c54f8919f (IsA beaded_lizard venomous_lizard) (STV 1.0 0.9091)) +(: cnet_isa_db5565c4cc (IsA beading decoration) (STV 1.0 0.9091)) +(: cnet_isa_1d0e36b720 (IsA beading molding) (STV 1.0 0.9091)) +(: cnet_isa_4064279724 (IsA beading_plane plane) (STV 1.0 0.9091)) +(: cnet_isa_9d43c63691 (IsA beadle official) (STV 1.0 0.9091)) +(: cnet_isa_fb5c0aae89 (IsA bead string) (STV 1.0 0.9091)) +(: cnet_isa_5ee30832fe (IsA beadsman prayer) (STV 1.0 0.9091)) +(: cnet_isa_99800dafd7 (IsA beagle dog) (STV 1.0 0.9454)) +(: cnet_isa_703b5d5d1e (IsA beagle hound) (STV 1.0 0.9091)) +(: cnet_isa_58e1c30d9b (IsA beagling hunt) (STV 1.0 0.9091)) +(: cnet_isa_fc3b8752a4 (IsA beak mouth) (STV 1.0 0.9091)) +(: cnet_isa_b1c784441f (IsA beak nose) (STV 1.0 0.9091)) +(: cnet_isa_a91da70c6b (IsA beak tip) (STV 1.0 0.9091)) +(: cnet_isa_0b20c84249 (IsA beaked_hazelnut hazelnut) (STV 1.0 0.9091)) +(: cnet_isa_9d0d14d367 (IsA beaked_salmon soft_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_829211969b (IsA beaked_whale toothed_whale) (STV 1.0 0.9091)) +(: cnet_isa_f71f492b8c (IsA beaker cup) (STV 1.0 0.9091)) +(: cnet_isa_471cf4c7e5 (IsA beaker jar) (STV 1.0 0.9091)) +(: cnet_isa_180631097c (IsA beam piece) (STV 1.0 0.9091)) +(: cnet_isa_563ceefb84 (IsA beam side) (STV 1.0 0.9091)) +(: cnet_isa_d9088e527a (IsA beam structural_member) (STV 1.0 0.9091)) +(: cnet_isa_d5b40dc171 (IsA beam electromagnetic_radiation) (STV 1.0 0.9091)) +(: cnet_isa_97598a57e4 (IsA beam light) (STV 1.0 0.9091)) +(: cnet_isa_a9707c1676 (IsA beam width) (STV 1.0 0.9091)) +(: cnet_isa_e73f469aa5 (IsA beam_balance balance) (STV 1.0 0.9091)) +(: cnet_isa_4b1b016afd (IsA beam_end side) (STV 1.0 0.9091)) +(: cnet_isa_0943a1f380 (IsA bean vegetable) (STV 1.0 0.9339)) +(: cnet_isa_29929af7ea (IsA bean legume) (STV 1.0 0.9091)) +(: cnet_isa_5d458e91f2 (IsA bean seed) (STV 1.0 0.9091)) +(: cnet_isa_3b29a1ad25 (IsA bean_caper shrub) (STV 1.0 0.9091)) +(: cnet_isa_4596324f8b (IsA bean_counter accountant) (STV 1.0 0.9091)) +(: cnet_isa_a3fbcda3ca (IsA bean_counter bureaucrat) (STV 1.0 0.9091)) +(: cnet_isa_b957f83016 (IsA bean_curd curd) (STV 1.0 0.9091)) +(: cnet_isa_97de822dd1 (IsA bean_dip dip) (STV 1.0 0.9091)) +(: cnet_isa_140bbebe9e (IsA bean_sprout sprout) (STV 1.0 0.9091)) +(: cnet_isa_b68359fa4e (IsA bean_tostada tostada) (STV 1.0 0.9091)) +(: cnet_isa_a1e4d8777c (IsA bean_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_710ffe8e61 (IsA bean_trefoil shrub) (STV 1.0 0.9091)) +(: cnet_isa_be5dacd09c (IsA bean_weevil seed_beetle) (STV 1.0 0.9091)) +(: cnet_isa_77f86e85ef (IsA beanbag bag) (STV 1.0 0.9091)) +(: cnet_isa_2ce26fe772 (IsA beanball pitch) (STV 1.0 0.9091)) +(: cnet_isa_f9d6647825 (IsA beanfeast dinner) (STV 1.0 0.9091)) +(: cnet_isa_a05d044af5 (IsA beanie skullcap) (STV 1.0 0.9091)) +(: cnet_isa_05ab364bb7 (IsA beanie_baby toy) (STV 1.0 0.9339)) +(: cnet_isa_fa9ca1589c (IsA beanstalk stalk) (STV 1.0 0.9091)) +(: cnet_isa_aafac0cef4 (IsA bear_s_breech acanthus) (STV 1.0 0.9091)) +(: cnet_isa_73ae857a44 (IsA bear_s_paw_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_d3e1ce52d0 (IsA bear mammal) (STV 1.0 0.9454)) +(: cnet_isa_681d0b52b9 (IsA bear carnivore) (STV 1.0 0.9091)) +(: cnet_isa_765e17e210 (IsA bear investor) (STV 1.0 0.9091)) +(: cnet_isa_6af32a29fb (IsA bear_claw claw) (STV 1.0 0.9091)) +(: cnet_isa_c0d569af2a (IsA bear_claw design) (STV 1.0 0.9091)) +(: cnet_isa_0d286c667a (IsA bear_claw sweet_roll) (STV 1.0 0.9091)) +(: cnet_isa_bb0cc0a776 (IsA bear_cub bear) (STV 1.0 0.9091)) +(: cnet_isa_bf7823cebe (IsA bear_cub cub) (STV 1.0 0.9091)) +(: cnet_isa_f5a61a6dce (IsA bear_grass agave) (STV 1.0 0.9091)) +(: cnet_isa_0d5d3da4fe (IsA bear_grass yucca) (STV 1.0 0.9091)) +(: cnet_isa_72ec97d8b2 (IsA bear_hug takeover_attempt) (STV 1.0 0.9091)) +(: cnet_isa_60fc3119be (IsA bear_hug wrestling_hold) (STV 1.0 0.9091)) +(: cnet_isa_e2bf683e53 (IsA bear_market market) (STV 1.0 0.9091)) +(: cnet_isa_6b79bf0e9c (IsA bear_oak scrub_oak) (STV 1.0 0.9091)) +(: cnet_isa_b1a0da7595 (IsA bearberry holly) (STV 1.0 0.9091)) +(: cnet_isa_6bc4fdd01f (IsA bearberry shrub) (STV 1.0 0.9091)) +(: cnet_isa_ce2fe3ba77 (IsA bearberry_willow willow) (STV 1.0 0.9091)) +(: cnet_isa_bcaf2edfba (IsA beard hair) (STV 1.0 0.9091)) +(: cnet_isa_297e51c3d4 (IsA beard facial_hair) (STV 1.0 0.9091)) +(: cnet_isa_c1ad2ef93b (IsA beard person) (STV 1.0 0.9091)) +(: cnet_isa_176f2d69e0 (IsA beard_lichen lichen) (STV 1.0 0.9091)) +(: cnet_isa_8154dfdfe8 (IsA beard_worm worm) (STV 1.0 0.9091)) +(: cnet_isa_97c26c2a12 (IsA bearded_iris iris) (STV 1.0 0.9091)) +(: cnet_isa_1ee496d85d (IsA bearded_seal earless_seal) (STV 1.0 0.9091)) +(: cnet_isa_309e1b9590 (IsA bearded_vulture old_world_vulture) (STV 1.0 0.9091)) +(: cnet_isa_1f49817e6c (IsA bearded_wheatgrass wheatgrass) (STV 1.0 0.9091)) +(: cnet_isa_5cdef46c69 (IsA beardless_iris iris) (STV 1.0 0.9091)) +(: cnet_isa_ede24204ee (IsA bearer capitalist) (STV 1.0 0.9091)) +(: cnet_isa_ec47161a81 (IsA bearer messenger) (STV 1.0 0.9091)) +(: cnet_isa_8283969289 (IsA bearing support) (STV 1.0 0.9091)) +(: cnet_isa_2c6feec01c (IsA bearing manner) (STV 1.0 0.9091)) +(: cnet_isa_99f785b4d7 (IsA bearing relatedness) (STV 1.0 0.9091)) +(: cnet_isa_190edf6da8 (IsA bearing direction) (STV 1.0 0.9091)) +(: cnet_isa_e036e5f375 (IsA bearing_brass brass) (STV 1.0 0.9091)) +(: cnet_isa_d51e2d77c8 (IsA bearing_rein rein) (STV 1.0 0.9091)) +(: cnet_isa_fe6d2f8d51 (IsA bearing_wall support) (STV 1.0 0.9091)) +(: cnet_isa_5f7bf25a45 (IsA bearing_wall wall) (STV 1.0 0.9091)) +(: cnet_isa_c5fb75eb4b (IsA bearnaise sauce) (STV 1.0 0.9091)) +(: cnet_isa_513e4f0ac4 (IsA bear dangerous_animal) (STV 1.0 0.9091)) +(: cnet_isa_0361e3314f (IsA bearskin hat) (STV 1.0 0.9091)) +(: cnet_isa_503ade1771 (IsA bearskin fur) (STV 1.0 0.9091)) +(: cnet_isa_2215dd6331 (IsA beast attacker) (STV 1.0 0.9091)) +(: cnet_isa_9259b9a0ea (IsA beast_of_burden work_animal) (STV 1.0 0.9091)) +(: cnet_isa_99f3014d69 (IsA beastliness malevolence) (STV 1.0 0.9091)) +(: cnet_isa_a8d7d1d8e5 (IsA beastliness nastiness) (STV 1.0 0.9091)) +(: cnet_isa_488a322c61 (IsA beat sailing) (STV 1.0 0.9091)) +(: cnet_isa_8bff457c81 (IsA beat stroke) (STV 1.0 0.9091)) +(: cnet_isa_9d6ab30efd (IsA beat pace) (STV 1.0 0.9091)) +(: cnet_isa_e1a1499a66 (IsA beat sound) (STV 1.0 0.9091)) +(: cnet_isa_8d7898d0d8 (IsA beat path) (STV 1.0 0.9091)) +(: cnet_isa_f0de044f3a (IsA beat oscillation) (STV 1.0 0.9091)) +(: cnet_isa_8fc5106c4d (IsA beat_generation youth_subculture) (STV 1.0 0.9091)) +(: cnet_isa_b5a70dc18a (IsA beater implement) (STV 1.0 0.9091)) +(: cnet_isa_bd3895f1fe (IsA beater worker) (STV 1.0 0.9091)) +(: cnet_isa_f38f7775ab (IsA beatification action) (STV 1.0 0.9091)) +(: cnet_isa_a541799aba (IsA beatification sanctification) (STV 1.0 0.9091)) +(: cnet_isa_48c780acc4 (IsA beating corporal_punishment) (STV 1.0 0.9091)) +(: cnet_isa_714e5ec996 (IsA beating fight) (STV 1.0 0.9091)) +(: cnet_isa_066d520399 (IsA beating_reed_instrument woodwind) (STV 1.0 0.9091)) +(: cnet_isa_6149338b36 (IsA beatitude saying) (STV 1.0 0.9091)) +(: cnet_isa_fcb5dad086 (IsA beatnik nonconformist) (STV 1.0 0.9091)) +(: cnet_isa_5a671e116f (IsA beat_per_minute tempo) (STV 1.0 0.9091)) +(: cnet_isa_5e724f2955 (IsA beau_geste gesture) (STV 1.0 0.9091)) +(: cnet_isa_23e8ad2113 (IsA beaufort_scale scale) (STV 1.0 0.9091)) +(: cnet_isa_bf609ec60b (IsA beaufort_scale system_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_83f88c0110 (IsA beaugregory damselfish) (STV 1.0 0.9091)) +(: cnet_isa_ed43b3c69a (IsA beaujolais burgundy) (STV 1.0 0.9091)) +(: cnet_isa_8682ff9444 (IsA beaujolais red_wine) (STV 1.0 0.9091)) +(: cnet_isa_b59e9b8a9e (IsA beaumontia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_fe28ea6439 (IsA beautician craftsman) (STV 1.0 0.9091)) +(: cnet_isa_e6eedfe872 (IsA beautification change_of_state) (STV 1.0 0.9091)) +(: cnet_isa_0bb7e3c208 (IsA beauty only_skin_deep) (STV 1.0 0.9091)) +(: cnet_isa_a34a3106c5 (IsA beauty skin_deep) (STV 1.0 0.9091)) +(: cnet_isa_9ac88d741c (IsA beauty appearance) (STV 1.0 0.9091)) +(: cnet_isa_2952897a99 (IsA beauty exemplar) (STV 1.0 0.9091)) +(: cnet_isa_28c1b869fa (IsA beauty_bush shrub) (STV 1.0 0.9091)) +(: cnet_isa_7f84a76b25 (IsA beauty_consultant adviser) (STV 1.0 0.9091)) +(: cnet_isa_da7eeb95df (IsA beauty_sleep sleep) (STV 1.0 0.9091)) +(: cnet_isa_d3e457181f (IsA beauty_spot adornment) (STV 1.0 0.9091)) +(: cnet_isa_aa8bcf39d0 (IsA beauty_treatment beautification) (STV 1.0 0.9091)) +(: cnet_isa_b33e698279 (IsA beaver animal) (STV 1.0 0.9091)) +(: cnet_isa_32daa38628 (IsA beaver mammal) (STV 1.0 0.9091)) +(: cnet_isa_654514689c (IsA beaver rodent) (STV 1.0 0.9091)) +(: cnet_isa_a87233008d (IsA beaver armor_plate) (STV 1.0 0.9091)) +(: cnet_isa_c43d6a60eb (IsA beaver fur_hat) (STV 1.0 0.9091)) +(: cnet_isa_e6231e5426 (IsA beaver beard) (STV 1.0 0.9091)) +(: cnet_isa_f41a6c7983 (IsA beaver american) (STV 1.0 0.9091)) +(: cnet_isa_bc738d452e (IsA beaver fur) (STV 1.0 0.9091)) +(: cnet_isa_e7c44014a6 (IsA beaver_board wallboard) (STV 1.0 0.9091)) +(: cnet_isa_1b1ba15a31 (IsA beaver_rat water_rat) (STV 1.0 0.9091)) +(: cnet_isa_21c20bf8ed (IsA bechtel_crab iowa_crab) (STV 1.0 0.9091)) +(: cnet_isa_e7eca9da12 (IsA beck gesture) (STV 1.0 0.9091)) +(: cnet_isa_dd4b88db7f (IsA becker_muscular_dystrophy muscular_dystrophy) (STV 1.0 0.9091)) +(: cnet_isa_be49e42e1c (IsA becket line) (STV 1.0 0.9091)) +(: cnet_isa_ac69ce4383 (IsA beckman_thermometer mercury_thermometer) (STV 1.0 0.9091)) +(: cnet_isa_7b272f9644 (IsA becomingness decorum) (STV 1.0 0.9091)) +(: cnet_isa_d34258803a (IsA bed furniture) (STV 1.0 0.9339)) +(: cnet_isa_ec66f4a592 (IsA bed good_place_to_lie) (STV 1.0 0.9091)) +(: cnet_isa_f24d49a2fc (IsA bed place) (STV 1.0 0.9572)) +(: cnet_isa_147c579f67 (IsA bed bedroom_furniture) (STV 1.0 0.9091)) +(: cnet_isa_7ca7b16d5f (IsA bed foundation) (STV 1.0 0.9091)) +(: cnet_isa_d3b4a5b01e (IsA bed plot) (STV 1.0 0.9091)) +(: cnet_isa_2cfea8ee1c (IsA bed surface) (STV 1.0 0.9091)) +(: cnet_isa_50610cd633 (IsA bed stratum) (STV 1.0 0.9091)) +(: cnet_isa_c707d80881 (IsA bed natural_depression) (STV 1.0 0.9091)) +(: cnet_isa_cdbd1f132d (IsA bed_and_breakfast boarding_house) (STV 1.0 0.9091)) +(: cnet_isa_8b203efd6c (IsA bed_check confirmation) (STV 1.0 0.9091)) +(: cnet_isa_7b5fad6b35 (IsA bed_ground area) (STV 1.0 0.9091)) +(: cnet_isa_b5810959b0 (IsA bed_jacket jacket) (STV 1.0 0.9091)) +(: cnet_isa_31abb5ca5f (IsA bed_linen linen) (STV 1.0 0.9091)) +(: cnet_isa_75731f545c (IsA bed_pillow pillow) (STV 1.0 0.9091)) +(: cnet_isa_dfb65f7f2d (IsA bed_wetting enuresis) (STV 1.0 0.9091)) +(: cnet_isa_9585173d03 (IsA bedbug hemipterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_fab37ced0a (IsA bedclothe cloth_covering) (STV 1.0 0.9091)) +(: cnet_isa_7545fae6af (IsA bedder garden_plant) (STV 1.0 0.9091)) +(: cnet_isa_7d5127bdb4 (IsA bedding_material material) (STV 1.0 0.9091)) +(: cnet_isa_74b14768d5 (IsA bedfellow associate) (STV 1.0 0.9091)) +(: cnet_isa_0c9378f17c (IsA bedfellow person) (STV 1.0 0.9091)) +(: cnet_isa_ea94bb48cb (IsA bedford_cord cord) (STV 1.0 0.9091)) +(: cnet_isa_a09c2df35e (IsA bedlam mental_hospital) (STV 1.0 0.9091)) +(: cnet_isa_65918841fc (IsA bedlamite lunatic) (STV 1.0 0.9091)) +(: cnet_isa_f28c4b736d (IsA bedlington_terrier terrier) (STV 1.0 0.9091)) +(: cnet_isa_b522de12cb (IsA bedpan vessel) (STV 1.0 0.9091)) +(: cnet_isa_46ea16eab1 (IsA bedpost support) (STV 1.0 0.9091)) +(: cnet_isa_dec3556ee7 (IsA bedrest rest) (STV 1.0 0.9091)) +(: cnet_isa_6ecfdc10ef (IsA bedrock rock) (STV 1.0 0.9091)) +(: cnet_isa_fc2729a2f9 (IsA bedroll bedclothe) (STV 1.0 0.9091)) +(: cnet_isa_2999486028 (IsA bedroom room) (STV 1.0 0.9091)) +(: cnet_isa_a064231d01 (IsA bedroom_community suburb) (STV 1.0 0.9091)) +(: cnet_isa_9003fb79c8 (IsA bedroom_furniture furniture) (STV 1.0 0.9091)) +(: cnet_isa_3a9fa8135e (IsA bedroom_suite suite) (STV 1.0 0.9091)) +(: cnet_isa_530a432df9 (IsA bed usually_in_bedroom) (STV 1.0 0.9091)) +(: cnet_isa_74ecd76758 (IsA bedside side) (STV 1.0 0.9091)) +(: cnet_isa_8a3bdd991f (IsA bedside_manner manner) (STV 1.0 0.9091)) +(: cnet_isa_07b7ce0860 (IsA bedsitting_room apartment) (STV 1.0 0.9091)) +(: cnet_isa_d9aa663ae4 (IsA bedsore ulcer) (STV 1.0 0.9091)) +(: cnet_isa_78e6a00379 (IsA bedspread bedclothe) (STV 1.0 0.9091)) +(: cnet_isa_de9890a2df (IsA bedspring spring) (STV 1.0 0.9091)) +(: cnet_isa_519916e24c (IsA bedstead furniture) (STV 1.0 0.9091)) +(: cnet_isa_58d68b2438 (IsA bedstraw herb) (STV 1.0 0.9091)) +(: cnet_isa_9b4743d0b6 (IsA bedtime hour) (STV 1.0 0.9091)) +(: cnet_isa_1a2e9fea7f (IsA beduin arabian) (STV 1.0 0.9091)) +(: cnet_isa_518557b5b9 (IsA beduin nomad) (STV 1.0 0.9091)) +(: cnet_isa_087ffce566 (IsA bedwetter pisser) (STV 1.0 0.9091)) +(: cnet_isa_cc46ce263a (IsA bee hymenopterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_a5d6fe3725 (IsA bee social_gathering) (STV 1.0 0.9091)) +(: cnet_isa_945ded1863 (IsA bee_balm monarda) (STV 1.0 0.9091)) +(: cnet_isa_863341fe52 (IsA bee_beetle clerid_beetle) (STV 1.0 0.9091)) +(: cnet_isa_4793607891 (IsA bee_eater coraciiform_bird) (STV 1.0 0.9091)) +(: cnet_isa_e3236a4049 (IsA bee_fly fly) (STV 1.0 0.9091)) +(: cnet_isa_1848657fad (IsA bee_moth pyralid) (STV 1.0 0.9091)) +(: cnet_isa_096ab92ae7 (IsA bee_orchid orchid) (STV 1.0 0.9091)) +(: cnet_isa_bc24bb0a72 (IsA bee_sting sting) (STV 1.0 0.9091)) +(: cnet_isa_cd4845f2b3 (IsA beebread composition) (STV 1.0 0.9091)) +(: cnet_isa_38245a6ba2 (IsA beech tree) (STV 1.0 0.9091)) +(: cnet_isa_cb21d28359 (IsA beech wood) (STV 1.0 0.9091)) +(: cnet_isa_dceef06983 (IsA beech_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_d7986c09dd (IsA beechnut edible_nut) (STV 1.0 0.9091)) +(: cnet_isa_287b8a23c2 (IsA beef cattle) (STV 1.0 0.9091)) +(: cnet_isa_3e68eeb2e2 (IsA beef meat) (STV 1.0 0.9091)) +(: cnet_isa_10124ef3b1 (IsA beef_bourguignonne dish) (STV 1.0 0.9091)) +(: cnet_isa_65ec004ef0 (IsA beef_broth broth) (STV 1.0 0.9091)) +(: cnet_isa_22b10bef67 (IsA beef_burrito burrito) (STV 1.0 0.9091)) +(: cnet_isa_02d686dcca (IsA beef_fondue fondue) (STV 1.0 0.9091)) +(: cnet_isa_e335211936 (IsA beef_goulash goulash) (STV 1.0 0.9091)) +(: cnet_isa_135f6d02dd (IsA beef_jerky jerky) (STV 1.0 0.9091)) +(: cnet_isa_c3b90e3aa8 (IsA beef_loin cut_of_beef) (STV 1.0 0.9091)) +(: cnet_isa_d10b1ff3ea (IsA beef_neck cut_of_beef) (STV 1.0 0.9091)) +(: cnet_isa_17c2585dc2 (IsA beef_roast roast) (STV 1.0 0.9091)) +(: cnet_isa_566392a8bd (IsA beef_stew stew) (STV 1.0 0.9091)) +(: cnet_isa_944ec18b40 (IsA beef_stroganoff dish) (STV 1.0 0.9091)) +(: cnet_isa_9e3e9176ad (IsA beef_tallow tallow) (STV 1.0 0.9091)) +(: cnet_isa_bb8981220f (IsA beef_tea infusion) (STV 1.0 0.9091)) +(: cnet_isa_c50622b755 (IsA beef_tenderloin tenderloin) (STV 1.0 0.9091)) +(: cnet_isa_487b916959 (IsA beef_tongue tongue) (STV 1.0 0.9091)) +(: cnet_isa_e6d06d3a2a (IsA beef_wellington dish) (STV 1.0 0.9091)) +(: cnet_isa_5fcc495b5a (IsA beefcake picture) (STV 1.0 0.9091)) +(: cnet_isa_65b841752e (IsA beefsteak steak) (STV 1.0 0.9091)) +(: cnet_isa_f20f08af60 (IsA beefsteak_begonia begonia) (STV 1.0 0.9091)) +(: cnet_isa_2652cf4e4c (IsA beefsteak_fungus polypore) (STV 1.0 0.9091)) +(: cnet_isa_3385e6bb03 (IsA beefsteak_plant bloodleaf) (STV 1.0 0.9091)) +(: cnet_isa_d262789229 (IsA beefsteak_plant herb) (STV 1.0 0.9091)) +(: cnet_isa_02908aa88c (IsA beefsteak_tomato tomato) (STV 1.0 0.9091)) +(: cnet_isa_60c21a8cd4 (IsA beefwood casuarina) (STV 1.0 0.9091)) +(: cnet_isa_9420a0a0bb (IsA beefwood silk_oak) (STV 1.0 0.9091)) +(: cnet_isa_3050f84383 (IsA beefwood wood) (STV 1.0 0.9091)) +(: cnet_isa_c5002cbf1d (IsA beehive receptacle) (STV 1.0 0.9091)) +(: cnet_isa_26542a58c8 (IsA beehive workplace) (STV 1.0 0.9091)) +(: cnet_isa_b8e4977a16 (IsA beehive hairdo) (STV 1.0 0.9091)) +(: cnet_isa_75971eb68b (IsA beehive nest) (STV 1.0 0.9091)) +(: cnet_isa_b7b38a2abf (IsA beekeeper farmer) (STV 1.0 0.9091)) +(: cnet_isa_da7d1a1af9 (IsA beekeeping cultivation) (STV 1.0 0.9091)) +(: cnet_isa_c8a2144f85 (IsA beeline path) (STV 1.0 0.9091)) +(: cnet_isa_0c0be2046b (IsA beep sound) (STV 1.0 0.9091)) +(: cnet_isa_3fadd87388 (IsA beeper electronic_device) (STV 1.0 0.9091)) +(: cnet_isa_666e3450f1 (IsA beer alcohol) (STV 1.0 0.9091)) +(: cnet_isa_5becbac663 (IsA beer alcoholic_beverage) (STV 1.0 0.9677)) +(: cnet_isa_aed639f7c8 (IsA beer alcoholic_drink) (STV 1.0 0.9091)) +(: cnet_isa_b18e6b7956 (IsA beer beverage) (STV 1.0 0.9524)) +(: cnet_isa_ab3d1de0b9 (IsA beer carbonated) (STV 1.0 0.9091)) +(: cnet_isa_7664f6fcfe (IsA beer fizzy) (STV 1.0 0.9091)) +(: cnet_isa_7c7975ac82 (IsA beer brew) (STV 1.0 0.9091)) +(: cnet_isa_743a003e84 (IsA beer_barrel barrel) (STV 1.0 0.9091)) +(: cnet_isa_caed2f8bb1 (IsA beer_bottle bottle) (STV 1.0 0.9091)) +(: cnet_isa_3adee46ddd (IsA beer_can can) (STV 1.0 0.9091)) +(: cnet_isa_2f4357188c (IsA beer_drinker drinker) (STV 1.0 0.9091)) +(: cnet_isa_cf727a2c76 (IsA beer_garden tavern) (STV 1.0 0.9091)) +(: cnet_isa_37f76c21f1 (IsA beer_glass glass) (STV 1.0 0.9091)) +(: cnet_isa_595222b2e2 (IsA beer_hall hall) (STV 1.0 0.9091)) +(: cnet_isa_a900cace91 (IsA beer_mat drip_mat) (STV 1.0 0.9091)) +(: cnet_isa_01484885ad (IsA beer_mug mug) (STV 1.0 0.9091)) +(: cnet_isa_43f04f7c20 (IsA bee insect) (STV 1.0 0.9572)) +(: cnet_isa_73890cb01b (IsA beeswax animal_product) (STV 1.0 0.9091)) +(: cnet_isa_a080ebf997 (IsA beeswax wax) (STV 1.0 0.9091)) +(: cnet_isa_637bbebd9c (IsA beet vegetable) (STV 1.0 0.9091)) +(: cnet_isa_83beeb0d86 (IsA beet root_vegetable) (STV 1.0 0.9091)) +(: cnet_isa_6ee5141857 (IsA beet_armyworm caterpillar) (STV 1.0 0.9091)) +(: cnet_isa_52ab7ecd12 (IsA beet_blight blight) (STV 1.0 0.9091)) +(: cnet_isa_1e4fba3f3a (IsA beet_green green) (STV 1.0 0.9091)) +(: cnet_isa_d1f3a3d6a3 (IsA beet_sugar sugar) (STV 1.0 0.9091)) +(: cnet_isa_7b2b39fb59 (IsA beet_sugar carbohydrate) (STV 1.0 0.9091)) +(: cnet_isa_c4f71790fb (IsA beethoven composer) (STV 1.0 0.9091)) +(: cnet_isa_8d9629a429 (IsA beethoven music) (STV 1.0 0.9091)) +(: cnet_isa_d7d7fd1c69 (IsA beetle insect) (STV 1.0 0.9091)) +(: cnet_isa_a171e91a1b (IsA beetroot beet) (STV 1.0 0.9091)) +(: cnet_isa_cb10d578d6 (IsA befoulment dirtiness) (STV 1.0 0.9091)) +(: cnet_isa_d0547004fa (IsA beggar_s_lice stickweed) (STV 1.0 0.9091)) +(: cnet_isa_a3d846fae8 (IsA beggar pauper) (STV 1.0 0.9091)) +(: cnet_isa_b70327e9cd (IsA beggar_my_neighbor card_game) (STV 1.0 0.9091)) +(: cnet_isa_cc5450cbde (IsA beggar_my_neighbor_policy policy) (STV 1.0 0.9091)) +(: cnet_isa_d1745154ff (IsA beggarman beggar) (STV 1.0 0.9091)) +(: cnet_isa_21a60cd4bd (IsA beggarweed tick_trefoil) (STV 1.0 0.9091)) +(: cnet_isa_59ba1dbdcb (IsA beggarwoman beggar) (STV 1.0 0.9091)) +(: cnet_isa_5b00ec5571 (IsA beggary solicitation) (STV 1.0 0.9091)) +(: cnet_isa_aa02182600 (IsA beginning change_of_state) (STV 1.0 0.9091)) +(: cnet_isa_ff1896bd08 (IsA beginning part) (STV 1.0 0.9091)) +(: cnet_isa_63e894c52a (IsA beginning happening) (STV 1.0 0.9091)) +(: cnet_isa_afa6e7968d (IsA beginning point) (STV 1.0 0.9091)) +(: cnet_isa_a7fb5fe55a (IsA begonia flower) (STV 1.0 0.9091)) +(: cnet_isa_7c5269f119 (IsA begoniaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_86bdd5c756 (IsA beguilement entertainment) (STV 1.0 0.9091)) +(: cnet_isa_09a33e1bf4 (IsA beguine ballroom_dancing) (STV 1.0 0.9091)) +(: cnet_isa_2dedda765b (IsA beguine dance_music) (STV 1.0 0.9091)) +(: cnet_isa_d57e799605 (IsA beguine sister) (STV 1.0 0.9091)) +(: cnet_isa_8e0127c224 (IsA begum lady) (STV 1.0 0.9091)) +(: cnet_isa_fed5e0ccc2 (IsA begum moslem) (STV 1.0 0.9091)) +(: cnet_isa_bd8b6f3982 (IsA behalf stead) (STV 1.0 0.9091)) +(: cnet_isa_ade9e58c61 (IsA behalf sake) (STV 1.0 0.9091)) +(: cnet_isa_65b9aabfb9 (IsA behavior activity) (STV 1.0 0.9091)) +(: cnet_isa_c23abfa84c (IsA behavior action) (STV 1.0 0.9091)) +(: cnet_isa_ef4ebb4f07 (IsA behavior_therapy psychotherapy) (STV 1.0 0.9091)) +(: cnet_isa_3eacfc255f (IsA behaviorism experimental_psychology) (STV 1.0 0.9091)) +(: cnet_isa_272bc04172 (IsA behaviorist psychologist) (STV 1.0 0.9091)) +(: cnet_isa_a09e162b97 (IsA behemoth anomaly) (STV 1.0 0.9091)) +(: cnet_isa_948937aaad (IsA behest command) (STV 1.0 0.9091)) +(: cnet_isa_3e6af1bb19 (IsA beige colour) (STV 1.0 0.9091)) +(: cnet_isa_2938ba3356 (IsA beige light_brown) (STV 1.0 0.9091)) +(: cnet_isa_08ef047b55 (IsA beijing in_china) (STV 1.0 0.9524)) +(: cnet_isa_f7e02ed94f (IsA being state) (STV 1.0 0.9091)) +(: cnet_isa_0c3bc3706f (IsA being_full feeling) (STV 1.0 0.9091)) +(: cnet_isa_555fa8c516 (IsA being_in_love wonderful_feeling) (STV 1.0 0.9659)) +(: cnet_isa_6a32a36383 (IsA being_lawyer profession) (STV 1.0 0.9091)) +(: cnet_isa_48a21cc70b (IsA bel sound_unit) (STV 1.0 0.9091)) +(: cnet_isa_91ec539b3c (IsA bel_canto singing) (STV 1.0 0.9091)) +(: cnet_isa_3b4fbd4edb (IsA bel_esprit intellectual) (STV 1.0 0.9091)) +(: cnet_isa_3f9eaacfdd (IsA belamcanda liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_252439229d (IsA belarusian slavic) (STV 1.0 0.9091)) +(: cnet_isa_4f7688df01 (IsA belarusian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_d944c8e676 (IsA belay outcrop) (STV 1.0 0.9091)) +(: cnet_isa_79e727ffdb (IsA belaying_pin bar) (STV 1.0 0.9091)) +(: cnet_isa_11dcdf27af (IsA belch expulsion) (STV 1.0 0.9091)) +(: cnet_isa_9c1e9c5e5b (IsA belch reflex) (STV 1.0 0.9091)) +(: cnet_isa_00eab6a415 (IsA belching expulsion) (STV 1.0 0.9091)) +(: cnet_isa_88f7992a94 (IsA beldam old_woman) (STV 1.0 0.9091)) +(: cnet_isa_f27637553a (IsA belemnite fossil) (STV 1.0 0.9091)) +(: cnet_isa_57b9ad70ad (IsA belemnitidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_992624f6ab (IsA belemnoidea animal_order) (STV 1.0 0.9091)) +(: cnet_isa_b2bbb916e4 (IsA belfry room) (STV 1.0 0.9091)) +(: cnet_isa_c69b53156e (IsA belgian european) (STV 1.0 0.9091)) +(: cnet_isa_67de9cfbf8 (IsA belgian_endive chicory_escarole) (STV 1.0 0.9091)) +(: cnet_isa_922de601c8 (IsA belgian_franc franc) (STV 1.0 0.9091)) +(: cnet_isa_cf06c5c252 (IsA belgian_hare rabbit) (STV 1.0 0.9091)) +(: cnet_isa_fa38fc4228 (IsA belgian_sheepdog shepherd_dog) (STV 1.0 0.9091)) +(: cnet_isa_78fe98bb6a (IsA belgian_waffle waffle) (STV 1.0 0.9091)) +(: cnet_isa_e91063e63f (IsA belief subjective_sense_of_knowledge) (STV 1.0 0.9339)) +(: cnet_isa_c0f836b0f8 (IsA belief content) (STV 1.0 0.9091)) +(: cnet_isa_cdd2a004d8 (IsA believer religionist) (STV 1.0 0.9091)) +(: cnet_isa_5f9d898591 (IsA believer supporter) (STV 1.0 0.9091)) +(: cnet_isa_2c4c4dd4b3 (IsA believing basic_cognitive_process) (STV 1.0 0.9091)) +(: cnet_isa_6285266952 (IsA belittling disparagement) (STV 1.0 0.9091)) +(: cnet_isa_0cea3dfbbe (IsA belize_dollar dollar) (STV 1.0 0.9091)) +(: cnet_isa_f330bc7262 (IsA bell acoustic_device) (STV 1.0 0.9091)) +(: cnet_isa_f1a0396b86 (IsA bell opening) (STV 1.0 0.9091)) +(: cnet_isa_3c27a83928 (IsA bell signaling_device) (STV 1.0 0.9091)) +(: cnet_isa_89f58c67bd (IsA bell sound) (STV 1.0 0.9091)) +(: cnet_isa_3c1c2fb4a0 (IsA bell time_unit) (STV 1.0 0.9091)) +(: cnet_isa_b99722daff (IsA bell curve) (STV 1.0 0.9091)) +(: cnet_isa_6716cc6389 (IsA bell_apple passion_fruit) (STV 1.0 0.9091)) +(: cnet_isa_9b2ff4d80a (IsA bell_arch round_arch) (STV 1.0 0.9091)) +(: cnet_isa_13209c8fe8 (IsA bell_book logbook) (STV 1.0 0.9091)) +(: cnet_isa_9933df5454 (IsA bell_buoy acoustic_buoy) (STV 1.0 0.9091)) +(: cnet_isa_7773af917e (IsA bell_captain supervisor) (STV 1.0 0.9091)) +(: cnet_isa_6744283ac2 (IsA bell_cote shelter) (STV 1.0 0.9091)) +(: cnet_isa_b4cc84f0e7 (IsA bell_deck floor) (STV 1.0 0.9091)) +(: cnet_isa_c95cbd3504 (IsA bell_founder founder) (STV 1.0 0.9091)) +(: cnet_isa_8bcca44694 (IsA bell_foundry foundry) (STV 1.0 0.9091)) +(: cnet_isa_76820ebcc7 (IsA bell_gable gable) (STV 1.0 0.9091)) +(: cnet_isa_98d510c89e (IsA bell_heather erica) (STV 1.0 0.9091)) +(: cnet_isa_0c975d0ab3 (IsA bell_jar protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_ec753d6d90 (IsA bell_like_call birdcall) (STV 1.0 0.9091)) +(: cnet_isa_2275e584de (IsA bell_metal bronze) (STV 1.0 0.9091)) +(: cnet_isa_76a3eccb03 (IsA bell_pepper sweet_pepper) (STV 1.0 0.9091)) +(: cnet_isa_a2f4ae6d20 (IsA bell_push push_button) (STV 1.0 0.9091)) +(: cnet_isa_5de1c2a6d9 (IsA bell_ringer success) (STV 1.0 0.9091)) +(: cnet_isa_1ff889b73c (IsA bell_ringer musician) (STV 1.0 0.9091)) +(: cnet_isa_b451525ae9 (IsA bell_ringing music) (STV 1.0 0.9091)) +(: cnet_isa_3e89699d98 (IsA bell_ringing ring) (STV 1.0 0.9091)) +(: cnet_isa_14855b6dc0 (IsA bell_seat seat) (STV 1.0 0.9091)) +(: cnet_isa_375d27bebf (IsA bell_tent tent) (STV 1.0 0.9091)) +(: cnet_isa_f45ae4e8af (IsA bell_tower tower) (STV 1.0 0.9091)) +(: cnet_isa_28be589217 (IsA belladonna atropine) (STV 1.0 0.9091)) +(: cnet_isa_3e2ff234c3 (IsA belladonna herb) (STV 1.0 0.9091)) +(: cnet_isa_cb61d94568 (IsA belladonna_lily amaryllis) (STV 1.0 0.9091)) +(: cnet_isa_ee89158d03 (IsA bellarmine jug) (STV 1.0 0.9091)) +(: cnet_isa_16566238c7 (IsA bellbird cotinga) (STV 1.0 0.9091)) +(: cnet_isa_eec3d35ede (IsA bellbottom_trouser pair_of_trouser) (STV 1.0 0.9091)) +(: cnet_isa_b20c9c1be0 (IsA bellboy attendant) (STV 1.0 0.9091)) +(: cnet_isa_367ba65d23 (IsA belle girl) (STV 1.0 0.9091)) +(: cnet_isa_79624860ad (IsA belle_isle_cress winter_cress) (STV 1.0 0.9091)) +(: cnet_isa_47b89fb431 (IsA belle_lettre literary_composition) (STV 1.0 0.9091)) +(: cnet_isa_5ef09b887e (IsA bellicoseness aggressiveness) (STV 1.0 0.9091)) +(: cnet_isa_318c7c655e (IsA belligerence hostility) (STV 1.0 0.9091)) +(: cnet_isa_d45d9d120b (IsA bellis asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e823e0a974 (IsA bellow cry) (STV 1.0 0.9091)) +(: cnet_isa_49d51f4885 (IsA bellow blower) (STV 1.0 0.9091)) +(: cnet_isa_e48e5bcb9b (IsA bellpull pull) (STV 1.0 0.9091)) +(: cnet_isa_e9f8c7c811 (IsA bellwether wether) (STV 1.0 0.9091)) +(: cnet_isa_d4feff86d1 (IsA bellwether leader) (STV 1.0 0.9091)) +(: cnet_isa_981608616e (IsA bellwort flower) (STV 1.0 0.9091)) +(: cnet_isa_09a67ba4ca (IsA belly underpart) (STV 1.0 0.9091)) +(: cnet_isa_e3ffcdee05 (IsA belly adipose_tissue) (STV 1.0 0.9091)) +(: cnet_isa_5577fb71b9 (IsA belly inside) (STV 1.0 0.9091)) +(: cnet_isa_f76d00476e (IsA belly bulge) (STV 1.0 0.9091)) +(: cnet_isa_e9aae7cbb1 (IsA belly_dance stage_dancing) (STV 1.0 0.9091)) +(: cnet_isa_57052d8df1 (IsA belly_dancer dancer) (STV 1.0 0.9091)) +(: cnet_isa_f8d162688b (IsA belly_flop dive) (STV 1.0 0.9091)) +(: cnet_isa_0da76ce835 (IsA belly_laugh joke) (STV 1.0 0.9091)) +(: cnet_isa_87a1e9d347 (IsA bellyband band) (STV 1.0 0.9091)) +(: cnet_isa_0d58eea847 (IsA bellyband fastener) (STV 1.0 0.9091)) +(: cnet_isa_e3c7a9ac0f (IsA bellyful overabundance) (STV 1.0 0.9091)) +(: cnet_isa_5cef942c14 (IsA belmont_stake thoroughbred_race) (STV 1.0 0.9091)) +(: cnet_isa_92f14674a8 (IsA belonging happiness) (STV 1.0 0.9091)) +(: cnet_isa_c8a71f0a11 (IsA belonidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_8bc356ae24 (IsA belorussian european) (STV 1.0 0.9091)) +(: cnet_isa_d92b6972f3 (IsA belostomatidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_7dd793461c (IsA beloved lover) (STV 1.0 0.9091)) +(: cnet_isa_cbd01e6b2d (IsA belt accessory) (STV 1.0 0.9091)) +(: cnet_isa_71654e254c (IsA belt loop) (STV 1.0 0.9091)) +(: cnet_isa_bd4991486a (IsA belt region) (STV 1.0 0.9091)) +(: cnet_isa_bfb96f88df (IsA belt_buckle buckle) (STV 1.0 0.9091)) +(: cnet_isa_ef429db37c (IsA belt_maker maker) (STV 1.0 0.9091)) +(: cnet_isa_b7b5bc5f3e (IsA belted_ammunition ammunition) (STV 1.0 0.9091)) +(: cnet_isa_4616f6cc07 (IsA belted_kingfisher kingfisher) (STV 1.0 0.9091)) +(: cnet_isa_26d2b5e668 (IsA belted_sandfish sea_bass) (STV 1.0 0.9091)) +(: cnet_isa_f16dfd0b82 (IsA belting fabric) (STV 1.0 0.9091)) +(: cnet_isa_e1291af9db (IsA beluga sturgeon) (STV 1.0 0.9091)) +(: cnet_isa_834d9f9360 (IsA beluga_caviar caviar) (STV 1.0 0.9091)) +(: cnet_isa_17c2933822 (IsA belvedere gazebo) (STV 1.0 0.9091)) +(: cnet_isa_3d7052c48d (IsA bemisia arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_2b9b5f8c04 (IsA ben mountain) (STV 1.0 0.9091)) +(: cnet_isa_c9be659ec4 (IsA bench long_seat_with_no_backrest) (STV 1.0 0.9091)) +(: cnet_isa_fdf8b01281 (IsA bench seat) (STV 1.0 0.9091)) +(: cnet_isa_37098d3cdf (IsA bench assembly) (STV 1.0 0.9091)) +(: cnet_isa_217fb72c43 (IsA bench subgroup) (STV 1.0 0.9091)) +(: cnet_isa_82e71762b9 (IsA bench_clamp clamp) (STV 1.0 0.9091)) +(: cnet_isa_68b27c2df4 (IsA bench_hook catch) (STV 1.0 0.9091)) +(: cnet_isa_f602a9c415 (IsA bench_lathe lathe) (STV 1.0 0.9091)) +(: cnet_isa_fc72963226 (IsA bench_press weightlifting) (STV 1.0 0.9091)) +(: cnet_isa_b5c2944697 (IsA bench_press punch_press) (STV 1.0 0.9091)) +(: cnet_isa_1ae4ba4d1c (IsA bench_warmer substitute) (STV 1.0 0.9091)) +(: cnet_isa_b31c76de3f (IsA bench_warrant warrant) (STV 1.0 0.9091)) +(: cnet_isa_15f0741c12 (IsA benchmark reference_point) (STV 1.0 0.9091)) +(: cnet_isa_3b7fd64b35 (IsA benchmark standard) (STV 1.0 0.9091)) +(: cnet_isa_207ab4f8ff (IsA bend ordinary) (STV 1.0 0.9091)) +(: cnet_isa_e9d592c033 (IsA bend section) (STV 1.0 0.9091)) +(: cnet_isa_b8020afcfd (IsA bend curve) (STV 1.0 0.9091)) +(: cnet_isa_38a5e6ba5e (IsA bendability flexibility) (STV 1.0 0.9091)) +(: cnet_isa_1252a98df3 (IsA benday_process technique) (STV 1.0 0.9091)) +(: cnet_isa_0591b82c64 (IsA bender tool) (STV 1.0 0.9091)) +(: cnet_isa_dd23992560 (IsA bending change_of_shape) (STV 1.0 0.9091)) +(: cnet_isa_a270a5bce5 (IsA bending movement) (STV 1.0 0.9091)) +(: cnet_isa_1a91419992 (IsA benedick husband) (STV 1.0 0.9091)) +(: cnet_isa_b32a4ea387 (IsA benedictine liqueur) (STV 1.0 0.9091)) +(: cnet_isa_b8c91588af (IsA benedictine religious) (STV 1.0 0.9091)) +(: cnet_isa_7385af35e2 (IsA benedictine_order order) (STV 1.0 0.9091)) +(: cnet_isa_c8363b6f69 (IsA benediction prayer) (STV 1.0 0.9091)) +(: cnet_isa_ad412be33f (IsA benefaction contribution) (STV 1.0 0.9091)) +(: cnet_isa_8d69445ccd (IsA benefactive_role semantic_role) (STV 1.0 0.9091)) +(: cnet_isa_9ee28c5c0e (IsA benefactor good_person) (STV 1.0 0.9091)) +(: cnet_isa_196deef955 (IsA benefactress benefactor) (STV 1.0 0.9091)) +(: cnet_isa_f3b53cba9e (IsA benefice spiritualty) (STV 1.0 0.9091)) +(: cnet_isa_c021d9948a (IsA beneficence good) (STV 1.0 0.9091)) +(: cnet_isa_e77d8dd22f (IsA beneficence benevolence) (STV 1.0 0.9091)) +(: cnet_isa_22631d088b (IsA beneficiary recipient) (STV 1.0 0.9091)) +(: cnet_isa_a369352e1b (IsA benefit good) (STV 1.0 0.9091)) +(: cnet_isa_6c823d8f18 (IsA benefit performance) (STV 1.0 0.9091)) +(: cnet_isa_cb29880dc4 (IsA benefit payment) (STV 1.0 0.9091)) +(: cnet_isa_5bd21ebd8e (IsA benefit_concert benefit) (STV 1.0 0.9091)) +(: cnet_isa_b4f71b5f9d (IsA benefit_of_clergy sanction) (STV 1.0 0.9091)) +(: cnet_isa_e84b37111a (IsA benelux custom_union) (STV 1.0 0.9091)) +(: cnet_isa_bda73c2748 (IsA benevolence kindness) (STV 1.0 0.9091)) +(: cnet_isa_85b39884ea (IsA benevolence love) (STV 1.0 0.9091)) +(: cnet_isa_96995428fd (IsA benford_s_law law) (STV 1.0 0.9091)) +(: cnet_isa_83116e7bbd (IsA bengal_light flare) (STV 1.0 0.9091)) +(: cnet_isa_92be3e343c (IsA bengal_tiger tiger) (STV 1.0 0.9091)) +(: cnet_isa_23429563d3 (IsA bengali magadhan) (STV 1.0 0.9091)) +(: cnet_isa_a737f9309e (IsA bengali ethnic_group) (STV 1.0 0.9091)) +(: cnet_isa_802be1d616 (IsA bengali asiatic) (STV 1.0 0.9091)) +(: cnet_isa_4c48433bbf (IsA benign_prostatic_hyperplasia hyperplasia) (STV 1.0 0.9091)) +(: cnet_isa_c6ca8f1160 (IsA benign_tumor tumor) (STV 1.0 0.9091)) +(: cnet_isa_2f99d7fb0c (IsA benignity good) (STV 1.0 0.9091)) +(: cnet_isa_fd15b92650 (IsA benin_franc franc) (STV 1.0 0.9091)) +(: cnet_isa_bd05f7fe57 (IsA beninese african) (STV 1.0 0.9091)) +(: cnet_isa_65b2ab52ba (IsA benison benediction) (STV 1.0 0.9091)) +(: cnet_isa_d921bec93f (IsA bennet aven) (STV 1.0 0.9091)) +(: cnet_isa_fdda8a3839 (IsA bennettitaceae gymnosperm_family) (STV 1.0 0.9091)) +(: cnet_isa_1da44557c8 (IsA bennettitale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_01279694a7 (IsA bennettitis gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_f9ea9e11f1 (IsA bent endowment) (STV 1.0 0.9091)) +(: cnet_isa_a50e943465 (IsA bent inclination) (STV 1.0 0.9091)) +(: cnet_isa_1fbbbd4cf0 (IsA bent grassland) (STV 1.0 0.9091)) +(: cnet_isa_fa5eba5c70 (IsA bent grass) (STV 1.0 0.9091)) +(: cnet_isa_1254f25a73 (IsA bent_hang hang) (STV 1.0 0.9091)) +(: cnet_isa_5562afa8e3 (IsA bentho organism) (STV 1.0 0.9091)) +(: cnet_isa_6db6cc5ca7 (IsA bentho biogeographical_region) (STV 1.0 0.9091)) +(: cnet_isa_7b97bc95b8 (IsA bentonite clay) (STV 1.0 0.9091)) +(: cnet_isa_701bede4ec (IsA bentwood wood) (STV 1.0 0.9091)) +(: cnet_isa_2705677e49 (IsA benzene aromatic_hydrocarbon) (STV 1.0 0.9091)) +(: cnet_isa_ad2554305e (IsA benzene_formula benzene) (STV 1.0 0.9091)) +(: cnet_isa_f23fa27e10 (IsA benzoate salt) (STV 1.0 0.9091)) +(: cnet_isa_a733c64b37 (IsA benzoate_of_soda benzoate) (STV 1.0 0.9091)) +(: cnet_isa_52d3634f93 (IsA benzocaine local_anesthetic) (STV 1.0 0.9091)) +(: cnet_isa_5e2422bead (IsA benzodiazepine minor_tranquilizer) (STV 1.0 0.9091)) +(: cnet_isa_401b59e181 (IsA benzodiazepine muscle_relaxant) (STV 1.0 0.9091)) +(: cnet_isa_a069c8cdef (IsA benzofuran compound) (STV 1.0 0.9091)) +(: cnet_isa_a1f47afe78 (IsA benzoic_acid carboxylic_acid) (STV 1.0 0.9091)) +(: cnet_isa_3a75d74a76 (IsA benzoin magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_68024234d8 (IsA benzoin gum_resin) (STV 1.0 0.9091)) +(: cnet_isa_2e857755aa (IsA benzoyl_group group) (STV 1.0 0.9091)) +(: cnet_isa_6416ad8d78 (IsA benzoyl_peroxide bleaching_agent) (STV 1.0 0.9091)) +(: cnet_isa_21a165ae96 (IsA benzoyl_peroxide peroxide) (STV 1.0 0.9091)) +(: cnet_isa_7569c1fb78 (IsA benzyl group) (STV 1.0 0.9091)) +(: cnet_isa_c9e61102b8 (IsA beo operating_system) (STV 1.0 0.9339)) +(: cnet_isa_95825cd4cd (IsA bequest gift) (STV 1.0 0.9091)) +(: cnet_isa_46f226b669 (IsA bequest inheritance) (STV 1.0 0.9091)) +(: cnet_isa_abf32cb2b3 (IsA berating rebuke) (STV 1.0 0.9091)) +(: cnet_isa_df8fe0829e (IsA berber afroasiatic) (STV 1.0 0.9091)) +(: cnet_isa_9d59cb6010 (IsA berber ethnic_minority) (STV 1.0 0.9091)) +(: cnet_isa_8fcffc0c4e (IsA berber african) (STV 1.0 0.9091)) +(: cnet_isa_9a44070ce0 (IsA berberidaceae magnoliid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_d1257165bf (IsA berberis magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c0664b94e3 (IsA bercy sauce) (STV 1.0 0.9091)) +(: cnet_isa_c49a941aec (IsA bereaved_person person) (STV 1.0 0.9091)) +(: cnet_isa_277010fe7d (IsA beret cap) (STV 1.0 0.9091)) +(: cnet_isa_db53a86d6b (IsA bergamot orange) (STV 1.0 0.9091)) +(: cnet_isa_213d699237 (IsA bergamot_mint mint) (STV 1.0 0.9091)) +(: cnet_isa_2c697d7dbb (IsA bergenia herb) (STV 1.0 0.9091)) +(: cnet_isa_a6361d53ba (IsA beriberi avitaminosis) (STV 1.0 0.9091)) +(: cnet_isa_b22a181cc3 (IsA bering_time civil_time) (STV 1.0 0.9091)) +(: cnet_isa_ec476816f9 (IsA berith circumcision) (STV 1.0 0.9091)) +(: cnet_isa_4eb2657238 (IsA berk stupid) (STV 1.0 0.9091)) +(: cnet_isa_58e5ba5543 (IsA berkelium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_d0a30fcd76 (IsA berlin city_in_germany) (STV 1.0 0.9091)) +(: cnet_isa_1b47599096 (IsA berlin limousine) (STV 1.0 0.9091)) +(: cnet_isa_f3d65f9822 (IsA berlin_doughnut raised_doughnut) (STV 1.0 0.9091)) +(: cnet_isa_e9b730913e (IsA berliner german) (STV 1.0 0.9091)) +(: cnet_isa_9c8511570d (IsA berm ledge) (STV 1.0 0.9091)) +(: cnet_isa_b43cb85e9b (IsA bermuda_buttercup oxalis) (STV 1.0 0.9091)) +(: cnet_isa_e1e95caa7f (IsA bermuda_cedar pencil_cedar) (STV 1.0 0.9091)) +(: cnet_isa_bb29b83f37 (IsA bermuda_chub sea_chub) (STV 1.0 0.9091)) +(: cnet_isa_a31471fc8e (IsA bermuda_dollar dollar) (STV 1.0 0.9091)) +(: cnet_isa_b5261f9374 (IsA bermuda_grass grass) (STV 1.0 0.9091)) +(: cnet_isa_97c67f826e (IsA bermuda_maidenhair maidenhair) (STV 1.0 0.9091)) +(: cnet_isa_cea0e706af (IsA bermuda_onion onion) (STV 1.0 0.9091)) +(: cnet_isa_5b7d395ab3 (IsA bermuda_plan hotel_plan) (STV 1.0 0.9091)) +(: cnet_isa_9fdd6694dd (IsA bermuda_rig rig) (STV 1.0 0.9091)) +(: cnet_isa_8a1dffac27 (IsA bermuda_short short_pant) (STV 1.0 0.9091)) +(: cnet_isa_7b9b19a21b (IsA bermudian north_american) (STV 1.0 0.9091)) +(: cnet_isa_e1bb73cadc (IsA bernese_mountain_dog sennenhund) (STV 1.0 0.9091)) +(: cnet_isa_d22e5f7c68 (IsA bernoulli_s_law law) (STV 1.0 0.9091)) +(: cnet_isa_85222c468d (IsA beroe ctenophore) (STV 1.0 0.9091)) +(: cnet_isa_69b299b5f9 (IsA berry edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_592d63ebde (IsA berry fruit) (STV 1.0 0.9091)) +(: cnet_isa_33fc2c2eda (IsA berserker northman) (STV 1.0 0.9091)) +(: cnet_isa_e17a2cf720 (IsA berteroa dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3261b0dc18 (IsA berth bed) (STV 1.0 0.9091)) +(: cnet_isa_9c19f0f339 (IsA bertholletia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_57d09e0e0d (IsA bertillon_system procedure) (STV 1.0 0.9091)) +(: cnet_isa_7d84075a7a (IsA berycomorphi animal_order) (STV 1.0 0.9091)) +(: cnet_isa_52dab761f8 (IsA beryl mineral) (STV 1.0 0.9091)) +(: cnet_isa_a11bc72472 (IsA beryllium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_e12319c576 (IsA beryllium_bronze bronze) (STV 1.0 0.9091)) +(: cnet_isa_fc5af442e7 (IsA besieger enemy) (STV 1.0 0.9091)) +(: cnet_isa_32c1f55ce7 (IsA besieger petitioner) (STV 1.0 0.9091)) +(: cnet_isa_e15e7c324d (IsA besom broom) (STV 1.0 0.9091)) +(: cnet_isa_6e879fa738 (IsA bessemer_converter converter) (STV 1.0 0.9091)) +(: cnet_isa_3b7536188e (IsA bessemer_process industrial_process) (STV 1.0 0.9091)) +(: cnet_isa_6fb4f323fa (IsA bessemer_process steel_production) (STV 1.0 0.9091)) +(: cnet_isa_41f6afa0df (IsA bessera liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2e74638004 (IsA besseya asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_dd0f14107d (IsA best attempt) (STV 1.0 0.9091)) +(: cnet_isa_e06df7cc41 (IsA best person) (STV 1.0 0.9091)) +(: cnet_isa_d3865babef (IsA best_evidence_rule rule_of_evidence) (STV 1.0 0.9091)) +(: cnet_isa_95f0bac69c (IsA best_friend friend) (STV 1.0 0.9091)) +(: cnet_isa_4bb96a8c59 (IsA best_man groomsman) (STV 1.0 0.9091)) +(: cnet_isa_c39a0c0e63 (IsA best_part_of_waking_up folger_s_in_cup) (STV 1.0 0.9091)) +(: cnet_isa_a04b02e3b4 (IsA best_seller trade_book) (STV 1.0 0.9091)) +(: cnet_isa_f330b03a33 (IsA bestiality sexual_activity) (STV 1.0 0.9091)) +(: cnet_isa_c524b5bf96 (IsA bestiality inhumaneness) (STV 1.0 0.9091)) +(: cnet_isa_389ae48515 (IsA bestiary book) (STV 1.0 0.9091)) +(: cnet_isa_55b67b9963 (IsA bestowal giving) (STV 1.0 0.9091)) +(: cnet_isa_3b4bcfc708 (IsA bestowal gift) (STV 1.0 0.9091)) +(: cnet_isa_1a7343b941 (IsA bet gambling) (STV 1.0 0.9091)) +(: cnet_isa_ff259c8164 (IsA beta letter) (STV 1.0 0.9091)) +(: cnet_isa_ac52c52536 (IsA beta caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f2cbe233a6 (IsA beta chenopodiaceae) (STV 1.0 0.9091)) +(: cnet_isa_60322b6517 (IsA beta_blocker blocker) (STV 1.0 0.9091)) +(: cnet_isa_217e2f3514 (IsA beta_blocker_eyedrop eye_drop) (STV 1.0 0.9091)) +(: cnet_isa_0301e57581 (IsA beta_carotene carotenoid) (STV 1.0 0.9091)) +(: cnet_isa_33e399b93b (IsA beta_carotene provitamin) (STV 1.0 0.9091)) +(: cnet_isa_bbe7515ada (IsA beta_cell cell) (STV 1.0 0.9091)) +(: cnet_isa_0cd4a21eaa (IsA beta_decay decay) (STV 1.0 0.9091)) +(: cnet_isa_d43a7d65fd (IsA beta_endorphin endorphin) (STV 1.0 0.9091)) +(: cnet_isa_1a46478648 (IsA beta_hydroxybutyric_acid hydroxybutyric_acid) (STV 1.0 0.9091)) +(: cnet_isa_1949f6b4b3 (IsA beta_hydroxybutyric_acid ketone_body) (STV 1.0 0.9091)) +(: cnet_isa_f14a2dbfc2 (IsA beta_interferon interferon) (STV 1.0 0.9091)) +(: cnet_isa_e65cfc054d (IsA beta_iron iron) (STV 1.0 0.9091)) +(: cnet_isa_8d6a4cadba (IsA beta_naphthol antioxidant) (STV 1.0 0.9091)) +(: cnet_isa_893cbe9737 (IsA beta_naphthol naphthol) (STV 1.0 0.9091)) +(: cnet_isa_3fdb652f4a (IsA beta_particle particle) (STV 1.0 0.9091)) +(: cnet_isa_6869551536 (IsA beta_radiation corpuscular_radiation) (STV 1.0 0.9091)) +(: cnet_isa_802ec66be4 (IsA beta_radiation ionizing_radiation) (STV 1.0 0.9091)) +(: cnet_isa_9f178847a9 (IsA beta_receptor receptor) (STV 1.0 0.9091)) +(: cnet_isa_91ef44a393 (IsA beta_rhythm brainwave) (STV 1.0 0.9091)) +(: cnet_isa_7dd3615468 (IsA beta_software software) (STV 1.0 0.9091)) +(: cnet_isa_d0a367d7dd (IsA beta_test trial) (STV 1.0 0.9091)) +(: cnet_isa_e9dec58358 (IsA betaine alkaloid) (STV 1.0 0.9091)) +(: cnet_isa_9b0be0155f (IsA betatron accelerator) (STV 1.0 0.9091)) +(: cnet_isa_4a83515a12 (IsA betel true_pepper) (STV 1.0 0.9091)) +(: cnet_isa_9017ee6f01 (IsA betel_leaf leaf) (STV 1.0 0.9091)) +(: cnet_isa_0345e3d5ce (IsA betel_nut edible_seed) (STV 1.0 0.9091)) +(: cnet_isa_15168bac55 (IsA betel_palm areca) (STV 1.0 0.9091)) +(: cnet_isa_d0d52694f6 (IsA beth letter) (STV 1.0 0.9091)) +(: cnet_isa_7ea5765854 (IsA bethel place_of_worship) (STV 1.0 0.9091)) +(: cnet_isa_9aa69ceffb (IsA betrayal treason) (STV 1.0 0.9091)) +(: cnet_isa_fc80b46cb9 (IsA betrothal ritual) (STV 1.0 0.9091)) +(: cnet_isa_c0e9e75e82 (IsA betrothal promise) (STV 1.0 0.9091)) +(: cnet_isa_b36cbc871a (IsA betrothed lover) (STV 1.0 0.9091)) +(: cnet_isa_6ec026e848 (IsA better good) (STV 1.0 0.9091)) +(: cnet_isa_1cf0cd2da2 (IsA better superior) (STV 1.0 0.9091)) +(: cnet_isa_d87f9fe321 (IsA betterment improvement) (STV 1.0 0.9091)) +(: cnet_isa_80c2233cb0 (IsA betting_shop shop) (STV 1.0 0.9091)) +(: cnet_isa_ee076273ee (IsA bettong rat_kangaroo) (STV 1.0 0.9091)) +(: cnet_isa_09faa5a127 (IsA bettongia mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_c868d773b6 (IsA bettor gambler) (STV 1.0 0.9091)) +(: cnet_isa_0537105815 (IsA betula hamamelid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_07749f398b (IsA betulaceae hamamelid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_e2f2faae82 (IsA bevatron cyclotron) (STV 1.0 0.9091)) +(: cnet_isa_69ec7176b5 (IsA bevel edge) (STV 1.0 0.9091)) +(: cnet_isa_22685dd1f8 (IsA bevel hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_1d2f9f7207 (IsA bevel_gear gear) (STV 1.0 0.9091)) +(: cnet_isa_cb701d5756 (IsA beverage food) (STV 1.0 0.9091)) +(: cnet_isa_e4515a7093 (IsA beverage liquid) (STV 1.0 0.9091)) +(: cnet_isa_f0182e2727 (IsA bevy flock) (STV 1.0 0.9091)) +(: cnet_isa_56ba501349 (IsA bevy gathering) (STV 1.0 0.9091)) +(: cnet_isa_ca3a78424f (IsA bewick_s_swan tundra_swan) (STV 1.0 0.9091)) +(: cnet_isa_11ce713680 (IsA bewilderment confusion) (STV 1.0 0.9091)) +(: cnet_isa_6e6fb6069c (IsA bewitchery attractiveness) (STV 1.0 0.9091)) +(: cnet_isa_ee4ee6549c (IsA bey governor) (STV 1.0 0.9091)) +(: cnet_isa_be7340f5f0 (IsA bey man) (STV 1.0 0.9091)) +(: cnet_isa_90a5bbd41c (IsA bezant coin) (STV 1.0 0.9091)) +(: cnet_isa_477a632d4e (IsA bezel edge) (STV 1.0 0.9091)) +(: cnet_isa_d25782402b (IsA bezoar_goat wild_goat) (STV 1.0 0.9091)) +(: cnet_isa_e0d234d077 (IsA bhadon hindu_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_5ae2147323 (IsA bhakti devotion) (STV 1.0 0.9091)) +(: cnet_isa_909d568176 (IsA bhang soft_drug) (STV 1.0 0.9091)) +(: cnet_isa_243dfd8ccb (IsA bhutanese_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_7fa82874d8 (IsA bhutani asiatic) (STV 1.0 0.9091)) +(: cnet_isa_2870066d91 (IsA bi_fold_door interior_door) (STV 1.0 0.9091)) +(: cnet_isa_9766423e2a (IsA bialy onion_roll) (STV 1.0 0.9091)) +(: cnet_isa_4474a7f08d (IsA bia partiality) (STV 1.0 0.9091)) +(: cnet_isa_76689ade82 (IsA biathlon sport) (STV 1.0 0.9091)) +(: cnet_isa_92fec70f3f (IsA biauriculate_heart heart) (STV 1.0 0.9091)) +(: cnet_isa_0db1412cc9 (IsA bib napkin) (STV 1.0 0.9091)) +(: cnet_isa_8868feda91 (IsA bib piece_of_cloth) (STV 1.0 0.9091)) +(: cnet_isa_023ca0aa11 (IsA bib_and_tucker outfit) (STV 1.0 0.9091)) +(: cnet_isa_b617fc42a8 (IsA bibb_lettuce butterhead_lettuce) (STV 1.0 0.9091)) +(: cnet_isa_ad4aa6ca83 (IsA bible book) (STV 1.0 0.9636)) +(: cnet_isa_e43fb89d1f (IsA bible handbook) (STV 1.0 0.9091)) +(: cnet_isa_54bf594188 (IsA bible sacred_text) (STV 1.0 0.9091)) +(: cnet_isa_e825d692a3 (IsA biblical_aramaic aramaic) (STV 1.0 0.9091)) +(: cnet_isa_bff040904d (IsA bibliographer scholar) (STV 1.0 0.9091)) +(: cnet_isa_4413342cfa (IsA bibliography list) (STV 1.0 0.9091)) +(: cnet_isa_f7e9702455 (IsA bibliolatry idolatry) (STV 1.0 0.9091)) +(: cnet_isa_a270f91799 (IsA bibliomania acquisitiveness) (STV 1.0 0.9091)) +(: cnet_isa_4ea09413ef (IsA bibliophile scholar) (STV 1.0 0.9091)) +(: cnet_isa_ecf17774b2 (IsA bibliopole trader) (STV 1.0 0.9091)) +(: cnet_isa_d42bccaa92 (IsA bibliotheca library) (STV 1.0 0.9091)) +(: cnet_isa_a839b66f86 (IsA bibliotic discipline) (STV 1.0 0.9091)) +(: cnet_isa_3552cf4e1d (IsA bibliotist scientist) (STV 1.0 0.9091)) +(: cnet_isa_c71b119848 (IsA bibo mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_8fe467bde0 (IsA bicameral_script font) (STV 1.0 0.9091)) +(: cnet_isa_a99287086c (IsA bicarbonate carbonate) (STV 1.0 0.9091)) +(: cnet_isa_cc560456ef (IsA bicarbonate_of_soda bicarbonate) (STV 1.0 0.9091)) +(: cnet_isa_117242eb18 (IsA bicentennial anniversary) (STV 1.0 0.9091)) +(: cnet_isa_ccf3312f80 (IsA bicep skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_69a4e10227 (IsA bicep_brachii bicep) (STV 1.0 0.9091)) +(: cnet_isa_34912a6675 (IsA bichromate salt) (STV 1.0 0.9091)) +(: cnet_isa_75d49b0f56 (IsA bicker quarrel) (STV 1.0 0.9091)) +(: cnet_isa_a1d201327e (IsA bicolor_lespediza bush_clover) (STV 1.0 0.9091)) +(: cnet_isa_ae6e0f4c36 (IsA bicorn cocked_hat) (STV 1.0 0.9091)) +(: cnet_isa_f4a0e98699 (IsA bicycle efficient_form_of_human_transportation) (STV 1.0 0.9091)) +(: cnet_isa_dfe2d7c357 (IsA bicycle toy) (STV 1.0 0.9091)) +(: cnet_isa_c442c213ce (IsA bicycle transportation) (STV 1.0 0.9091)) +(: cnet_isa_11661b7426 (IsA bicycle two_wheel_vehicle) (STV 1.0 0.9659)) +(: cnet_isa_8a8025983a (IsA bicycle wheeled_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_f9534a65ed (IsA bicycle_built_for_two bicycle) (STV 1.0 0.9091)) +(: cnet_isa_6016218672 (IsA bicycle_chain chain) (STV 1.0 0.9091)) +(: cnet_isa_c6aa34c123 (IsA bicycle_clip clip) (STV 1.0 0.9091)) +(: cnet_isa_d00e87982f (IsA bicycle_pump pump) (STV 1.0 0.9091)) +(: cnet_isa_1183dda398 (IsA bicycle_race race) (STV 1.0 0.9091)) +(: cnet_isa_48eaf312fd (IsA bicycle_rack rack) (STV 1.0 0.9091)) +(: cnet_isa_d4ee252742 (IsA bicycle_seat seat) (STV 1.0 0.9091)) +(: cnet_isa_c2e1746e12 (IsA bicycle_traffic vehicular_traffic) (STV 1.0 0.9091)) +(: cnet_isa_8bf8a62b94 (IsA bicycle_wheel wheel) (STV 1.0 0.9091)) +(: cnet_isa_b8cae21a17 (IsA bicycling aerobic_sport) (STV 1.0 0.9091)) +(: cnet_isa_d5f910d656 (IsA bicycling good_form_of_exercise) (STV 1.0 0.9091)) +(: cnet_isa_0d8db9a1b5 (IsA bicycling cycling) (STV 1.0 0.9091)) +(: cnet_isa_c557a1dbfc (IsA bid attempt) (STV 1.0 0.9091)) +(: cnet_isa_9d1ea36050 (IsA bid statement) (STV 1.0 0.9091)) +(: cnet_isa_1654a733bd (IsA bid offer) (STV 1.0 0.9091)) +(: cnet_isa_b14e757cff (IsA bid_price price) (STV 1.0 0.9091)) +(: cnet_isa_811045dc57 (IsA bidder applicant) (STV 1.0 0.9091)) +(: cnet_isa_7eccd34577 (IsA bidder bridge_player) (STV 1.0 0.9091)) +(: cnet_isa_bff0699d85 (IsA bidding invitation) (STV 1.0 0.9091)) +(: cnet_isa_5c1e73f77e (IsA bidding_contest contest) (STV 1.0 0.9091)) +(: cnet_isa_5aafbf4828 (IsA biden asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f8fe6f58d1 (IsA bidet machine) (STV 1.0 0.9091)) +(: cnet_isa_a420ab8028 (IsA bidet basin) (STV 1.0 0.9091)) +(: cnet_isa_3bd7eaf763 (IsA biennial plant) (STV 1.0 0.9091)) +(: cnet_isa_c1704b5c4d (IsA bier coffin) (STV 1.0 0.9091)) +(: cnet_isa_98585d6a55 (IsA bier rack) (STV 1.0 0.9091)) +(: cnet_isa_6aa1229cf6 (IsA bifocal spectacle) (STV 1.0 0.9091)) +(: cnet_isa_438fa17175 (IsA bifurcation branching) (STV 1.0 0.9091)) +(: cnet_isa_d88296debd (IsA bifurcation branch) (STV 1.0 0.9091)) +(: cnet_isa_55513cced7 (IsA bifurcation furcation) (STV 1.0 0.9091)) +(: cnet_isa_382c25d99d (IsA big_band dance_band) (STV 1.0 0.9091)) +(: cnet_isa_2f7a4d1cd9 (IsA big_bang explosion) (STV 1.0 0.9091)) +(: cnet_isa_e82fdd2774 (IsA big_bang_theory scientific_theory) (STV 1.0 0.9091)) +(: cnet_isa_a894724777 (IsA big_blue fragmentation_bomb) (STV 1.0 0.9091)) +(: cnet_isa_4b182225ca (IsA big_board display_panel) (STV 1.0 0.9091)) +(: cnet_isa_d597c00eb0 (IsA big_brother authoritarian) (STV 1.0 0.9091)) +(: cnet_isa_34c1e7f19b (IsA big_brother brother) (STV 1.0 0.9091)) +(: cnet_isa_dcc4d5d1be (IsA big_brown_bat vespertilian_bat) (STV 1.0 0.9091)) +(: cnet_isa_84ce926a49 (IsA big_business business) (STV 1.0 0.9091)) +(: cnet_isa_8d070ca0b5 (IsA big_cat feline) (STV 1.0 0.9091)) +(: cnet_isa_5f959663b9 (IsA big_cone_spruce dougla_fir) (STV 1.0 0.9091)) +(: cnet_isa_8e6c293e41 (IsA big_deal importance) (STV 1.0 0.9091)) +(: cnet_isa_d587df57fe (IsA big_eared_bat false_vampire) (STV 1.0 0.9091)) +(: cnet_isa_a460365c38 (IsA big_game game) (STV 1.0 0.9091)) +(: cnet_isa_e7bafbd996 (IsA big_h heroin) (STV 1.0 0.9091)) +(: cnet_isa_7c3421793c (IsA big_name name) (STV 1.0 0.9091)) +(: cnet_isa_e0bb7eed5b (IsA big_sagebrush sagebrush) (STV 1.0 0.9091)) +(: cnet_isa_bbfbd8c802 (IsA big_science scientific_research) (STV 1.0 0.9091)) +(: cnet_isa_7be246b7c9 (IsA big_shellbark hickory) (STV 1.0 0.9091)) +(: cnet_isa_10e724f79c (IsA big_shot important_person) (STV 1.0 0.9091)) +(: cnet_isa_7c2d1ab60a (IsA big_sister sister) (STV 1.0 0.9091)) +(: cnet_isa_6b9cf96842 (IsA big_spender spendthrift) (STV 1.0 0.9091)) +(: cnet_isa_713cdc143f (IsA big_stick display) (STV 1.0 0.9091)) +(: cnet_isa_db3ff08451 (IsA big_time success) (STV 1.0 0.9091)) +(: cnet_isa_a7afac27dd (IsA big_toe toe) (STV 1.0 0.9091)) +(: cnet_isa_f1629148d2 (IsA big_tree_plum plum) (STV 1.0 0.9091)) +(: cnet_isa_3425c10091 (IsA bigamist spouse) (STV 1.0 0.9091)) +(: cnet_isa_d8e7586d9a (IsA bigamy statutory_offense) (STV 1.0 0.9091)) +(: cnet_isa_00324f8288 (IsA bigamy marriage) (STV 1.0 0.9091)) +(: cnet_isa_b3f90464f7 (IsA bigeye percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_05b6395f78 (IsA bigeye_scad scad) (STV 1.0 0.9091)) +(: cnet_isa_2dc9083a9c (IsA biggin cap) (STV 1.0 0.9091)) +(: cnet_isa_05dab0df2d (IsA bighead animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_c2850e507f (IsA bigheartedness generosity) (STV 1.0 0.9091)) +(: cnet_isa_74205ca23e (IsA bighorn mountain_sheep) (STV 1.0 0.9091)) +(: cnet_isa_7ee2bf8017 (IsA bight center) (STV 1.0 0.9091)) +(: cnet_isa_a4ad1a3551 (IsA bight bay) (STV 1.0 0.9091)) +(: cnet_isa_39d27bb08a (IsA bight bend) (STV 1.0 0.9091)) +(: cnet_isa_a711ab660d (IsA bight loop) (STV 1.0 0.9091)) +(: cnet_isa_5aee279c64 (IsA bignonia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3a76bb3682 (IsA bignoniaceae asterid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_10a73dcde8 (IsA bignoniad woody_plant) (STV 1.0 0.9091)) +(: cnet_isa_3ad6f879c9 (IsA bigo stew) (STV 1.0 0.9091)) +(: cnet_isa_9cc8a95980 (IsA bigot partisan) (STV 1.0 0.9091)) +(: cnet_isa_a80d35abc6 (IsA bigotry intolerance) (STV 1.0 0.9091)) +(: cnet_isa_6f910e5068 (IsA bigram written_word) (STV 1.0 0.9091)) +(: cnet_isa_3a0ea957cb (IsA bihari sanskrit) (STV 1.0 0.9091)) +(: cnet_isa_4bd8a92051 (IsA bijou jewelry) (STV 1.0 0.9091)) +(: cnet_isa_8172b7fc2f (IsA bijugate_leaf pinnate_leaf) (STV 1.0 0.9091)) +(: cnet_isa_46f7ecbeab (IsA bikini swimsuit) (STV 1.0 0.9091)) +(: cnet_isa_2752d575ff (IsA bikini_pant underpant) (STV 1.0 0.9091)) +(: cnet_isa_fbc69c57e9 (IsA bilabial labial_consonant) (STV 1.0 0.9091)) +(: cnet_isa_1a40d6e847 (IsA bilateral_contract contract) (STV 1.0 0.9091)) +(: cnet_isa_ef3e2f0822 (IsA bilateral_descent descent) (STV 1.0 0.9091)) +(: cnet_isa_577ded207e (IsA bilaterality symmetry) (STV 1.0 0.9091)) +(: cnet_isa_6cb222c2e6 (IsA bilberry berry) (STV 1.0 0.9091)) +(: cnet_isa_d5a6469fb6 (IsA bilberry blueberry) (STV 1.0 0.9091)) +(: cnet_isa_27834dcae6 (IsA bile digestive_juice) (STV 1.0 0.9091)) +(: cnet_isa_8f93335bcf (IsA bile_acid steroid) (STV 1.0 0.9091)) +(: cnet_isa_78aea075a3 (IsA bile_salt salt) (STV 1.0 0.9091)) +(: cnet_isa_3fccc95171 (IsA bilge bottom) (STV 1.0 0.9091)) +(: cnet_isa_9361b247f9 (IsA bilge water) (STV 1.0 0.9091)) +(: cnet_isa_24f1b9f787 (IsA bilge_keel keel) (STV 1.0 0.9091)) +(: cnet_isa_c71ab1dc11 (IsA bilge_pump pump) (STV 1.0 0.9091)) +(: cnet_isa_9699b6aff8 (IsA bilge_well well) (STV 1.0 0.9091)) +(: cnet_isa_1a1a96b36b (IsA bilge bilge) (STV 1.0 0.9091)) +(: cnet_isa_9f5363e15f (IsA biliary_ductule ductule) (STV 1.0 0.9091)) +(: cnet_isa_5ac0d11397 (IsA bilimbi fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_054cbec2bf (IsA bilingual linguist) (STV 1.0 0.9091)) +(: cnet_isa_4a48438fda (IsA bilingual_dictionary dictionary) (STV 1.0 0.9091)) +(: cnet_isa_d597f4e669 (IsA bilingualism ability) (STV 1.0 0.9091)) +(: cnet_isa_bdde8d3c66 (IsA biliousness ill_health) (STV 1.0 0.9091)) +(: cnet_isa_1aca13241b (IsA bilirubin animal_pigment) (STV 1.0 0.9091)) +(: cnet_isa_a05d568ffc (IsA bill duck_s_mouth) (STV 1.0 0.9339)) +(: cnet_isa_55f74fcd5a (IsA bill program) (STV 1.0 0.9091)) +(: cnet_isa_7773f96d21 (IsA bill brim) (STV 1.0 0.9091)) +(: cnet_isa_c51c1581c5 (IsA bill hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_56a149fc8e (IsA bill list) (STV 1.0 0.9091)) +(: cnet_isa_eca3f06355 (IsA bill statement) (STV 1.0 0.9091)) +(: cnet_isa_10d17da02d (IsA bill legal_document) (STV 1.0 0.9091)) +(: cnet_isa_cac7dd8dfb (IsA bill paper_money) (STV 1.0 0.9091)) +(: cnet_isa_d39f2531c3 (IsA bill_clinton president_of_united_state) (STV 1.0 0.9091)) +(: cnet_isa_6bb3cb7d47 (IsA bill_of_attainder bill) (STV 1.0 0.9091)) +(: cnet_isa_7b2b450a85 (IsA bill_of_entry bill) (STV 1.0 0.9091)) +(: cnet_isa_3bb25a607c (IsA bill_of_good bill) (STV 1.0 0.9091)) +(: cnet_isa_136b2db85c (IsA bill_of_good misrepresentation) (STV 1.0 0.9091)) +(: cnet_isa_7f6f8239d9 (IsA bill_of_health certificate) (STV 1.0 0.9091)) +(: cnet_isa_034b709c8c (IsA bill_of_lading receipt) (STV 1.0 0.9091)) +(: cnet_isa_a1e9e86f50 (IsA bill_of_particular allegation) (STV 1.0 0.9091)) +(: cnet_isa_74cb763bda (IsA bill_of_review review) (STV 1.0 0.9091)) +(: cnet_isa_a130bf7497 (IsA bill_of_right statement) (STV 1.0 0.9091)) +(: cnet_isa_6c1d77ebfe (IsA bill_of_sale deed) (STV 1.0 0.9091)) +(: cnet_isa_c4e3951579 (IsA bill_poster worker) (STV 1.0 0.9091)) +(: cnet_isa_d28f372590 (IsA billabong branch) (STV 1.0 0.9091)) +(: cnet_isa_f4a91986c4 (IsA billabong pool) (STV 1.0 0.9091)) +(: cnet_isa_f13d11d1a3 (IsA billboard signboard) (STV 1.0 0.9091)) +(: cnet_isa_b1168c672f (IsA billet housing) (STV 1.0 0.9091)) +(: cnet_isa_b0a1086720 (IsA billfish scombroid) (STV 1.0 0.9091)) +(: cnet_isa_ba101b5a64 (IsA billiard_ball ball) (STV 1.0 0.9091)) +(: cnet_isa_3c6f35b1c8 (IsA billiard_marker device) (STV 1.0 0.9091)) +(: cnet_isa_5d3bdf3c35 (IsA billiard_player player) (STV 1.0 0.9091)) +(: cnet_isa_b788013620 (IsA billiard_room room) (STV 1.0 0.9091)) +(: cnet_isa_187d4da9ed (IsA billiard table_game) (STV 1.0 0.9091)) +(: cnet_isa_60f39d4c6f (IsA billibi soup) (STV 1.0 0.9091)) +(: cnet_isa_4f26a2ffb9 (IsA billion large_integer) (STV 1.0 0.9091)) +(: cnet_isa_5c5811a5c9 (IsA billion_dollar very_big_expenditure) (STV 1.0 0.9091)) +(: cnet_isa_b587f7441f (IsA billionaire rich_person) (STV 1.0 0.9091)) +(: cnet_isa_37964fc1c5 (IsA billionth rank) (STV 1.0 0.9091)) +(: cnet_isa_b1cdf16667 (IsA billow wave) (STV 1.0 0.9091)) +(: cnet_isa_5ab721d485 (IsA bill paperwork_representation_of_transaction) (STV 1.0 0.9091)) +(: cnet_isa_fefcf0e099 (IsA billy goat) (STV 1.0 0.9091)) +(: cnet_isa_53abc7aca1 (IsA billy_button flower) (STV 1.0 0.9091)) +(: cnet_isa_9a98f41a10 (IsA billyo large_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_44cb2153bc (IsA bilocation location) (STV 1.0 0.9091)) +(: cnet_isa_5053ecea5e (IsA bilocular_capsule capsule) (STV 1.0 0.9091)) +(: cnet_isa_929490d058 (IsA biloxi siouan) (STV 1.0 0.9091)) +(: cnet_isa_12fc56dc00 (IsA biltong jerky) (STV 1.0 0.9091)) +(: cnet_isa_e7da4530d7 (IsA bimbo girl) (STV 1.0 0.9091)) +(: cnet_isa_2e33e9c94b (IsA bimester time_period) (STV 1.0 0.9091)) +(: cnet_isa_55bbc5e583 (IsA bimetal material) (STV 1.0 0.9091)) +(: cnet_isa_89906e70a4 (IsA bimetallic_strip electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_500ce787c9 (IsA bimetallism standard) (STV 1.0 0.9091)) +(: cnet_isa_da3d2aaf65 (IsA bimetallist monetarist) (STV 1.0 0.9091)) +(: cnet_isa_5ba3ba1b26 (IsA bimillenary anniversary) (STV 1.0 0.9091)) +(: cnet_isa_5f6b792106 (IsA bimillennium time_period) (STV 1.0 0.9091)) +(: cnet_isa_037db2a1f6 (IsA bimonthly sery) (STV 1.0 0.9091)) +(: cnet_isa_b1687d69ca (IsA bin container) (STV 1.0 0.9454)) +(: cnet_isa_f78cfd5cea (IsA bin containerful) (STV 1.0 0.9091)) +(: cnet_isa_c013dba6fb (IsA bin_and_bag both_container) (STV 1.0 0.9091)) +(: cnet_isa_c0ff678dae (IsA bin_liner plastic_bag) (STV 1.0 0.9091)) +(: cnet_isa_6306ad2b94 (IsA binary_code code) (STV 1.0 0.9091)) +(: cnet_isa_5a32d37791 (IsA binary_compound compound) (STV 1.0 0.9091)) +(: cnet_isa_e9caefdc95 (IsA binary_digit digit) (STV 1.0 0.9091)) +(: cnet_isa_9f17b81814 (IsA binary_file computer_file) (STV 1.0 0.9091)) +(: cnet_isa_d77a505694 (IsA binary_notation mathematical_notation) (STV 1.0 0.9091)) +(: cnet_isa_a5e5e1134c (IsA binary_numeration_system positional_notation) (STV 1.0 0.9091)) +(: cnet_isa_3dfee62892 (IsA binary_program program) (STV 1.0 0.9091)) +(: cnet_isa_79fa934630 (IsA binary_safe safe) (STV 1.0 0.9091)) +(: cnet_isa_98da11d260 (IsA binary_star star) (STV 1.0 0.9091)) +(: cnet_isa_cdf96fcff2 (IsA bind hindrance) (STV 1.0 0.9091)) +(: cnet_isa_da10bcfa24 (IsA binder_s_board cardboard) (STV 1.0 0.9091)) +(: cnet_isa_3a4c3e17ad (IsA binder harvester) (STV 1.0 0.9091)) +(: cnet_isa_bf9eb5b705 (IsA binder ligament) (STV 1.0 0.9091)) +(: cnet_isa_34da545110 (IsA binder protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_683f17f540 (IsA binder adhesive_material) (STV 1.0 0.9091)) +(: cnet_isa_070cf116ce (IsA bindery workshop) (STV 1.0 0.9091)) +(: cnet_isa_3e036181ac (IsA binding protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_da7bebf847 (IsA binding sewing) (STV 1.0 0.9091)) +(: cnet_isa_697538bd6a (IsA binding attraction) (STV 1.0 0.9091)) +(: cnet_isa_fd64680b3b (IsA binding_energy energy) (STV 1.0 0.9091)) +(: cnet_isa_3d7c359ec3 (IsA bindweed vine) (STV 1.0 0.9091)) +(: cnet_isa_a6aa2b0a7e (IsA binet_simon_scale intelligence_test) (STV 1.0 0.9091)) +(: cnet_isa_64561a0ec3 (IsA bing_cherry sweet_cherry) (STV 1.0 0.9091)) +(: cnet_isa_59a05d5167 (IsA binnacle housing) (STV 1.0 0.9091)) +(: cnet_isa_60e7204f42 (IsA binocular optical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_cadedc7a41 (IsA binocular_microscope light_microscope) (STV 1.0 0.9091)) +(: cnet_isa_9658c02198 (IsA binocular_vision sight) (STV 1.0 0.9091)) +(: cnet_isa_04a77d4b9b (IsA binomial quantity) (STV 1.0 0.9091)) +(: cnet_isa_2d5a87e101 (IsA binomial_distribution distribution) (STV 1.0 0.9091)) +(: cnet_isa_a267b95e46 (IsA binomial_theorem theorem) (STV 1.0 0.9091)) +(: cnet_isa_23b3211d0d (IsA binturong civet) (STV 1.0 0.9091)) +(: cnet_isa_3faa1f2490 (IsA bioassay assay) (STV 1.0 0.9091)) +(: cnet_isa_16e01e6d32 (IsA biocatalyst catalyst) (STV 1.0 0.9091)) +(: cnet_isa_ca1c6692e2 (IsA biochemical_mechanism mechanism) (STV 1.0 0.9091)) +(: cnet_isa_7bc8b22cdc (IsA biochemist chemist) (STV 1.0 0.9091)) +(: cnet_isa_a8a0a617f0 (IsA biochemistry organic_chemistry) (STV 1.0 0.9091)) +(: cnet_isa_8d5c3df64c (IsA biochip chip) (STV 1.0 0.9091)) +(: cnet_isa_87d14feec8 (IsA bioclimatology climatology) (STV 1.0 0.9091)) +(: cnet_isa_0ea6b97f8c (IsA biodegradable_pollution pollution) (STV 1.0 0.9091)) +(: cnet_isa_e532a0c7ee (IsA biodiesel fuel) (STV 1.0 0.9091)) +(: cnet_isa_669993fd53 (IsA biodiversity diverseness) (STV 1.0 0.9091)) +(: cnet_isa_997ce21e19 (IsA bioelectricity organic_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_ef9cd60852 (IsA bioethic ethic) (STV 1.0 0.9091)) +(: cnet_isa_6e7164b4e7 (IsA biofeedback training_program) (STV 1.0 0.9091)) +(: cnet_isa_2329a3078d (IsA biogenesis generation) (STV 1.0 0.9091)) +(: cnet_isa_0bf79be008 (IsA biogeographical_region region) (STV 1.0 0.9091)) +(: cnet_isa_e8c0f6dbf5 (IsA biogeography biology) (STV 1.0 0.9091)) +(: cnet_isa_a00a648d2d (IsA biographer writer) (STV 1.0 0.9091)) +(: cnet_isa_3a1768f084 (IsA biography history) (STV 1.0 0.9091)) +(: cnet_isa_36f25c667a (IsA biohazard health_hazard) (STV 1.0 0.9091)) +(: cnet_isa_65d234f543 (IsA biohazard_suit protective_garment) (STV 1.0 0.9091)) +(: cnet_isa_70d1c5842c (IsA biological_agent agent) (STV 1.0 0.9091)) +(: cnet_isa_ac0d0240ba (IsA biological_clock mechanism) (STV 1.0 0.9091)) +(: cnet_isa_56ec97e62c (IsA biological_defense defense) (STV 1.0 0.9091)) +(: cnet_isa_a9f29294e6 (IsA biological_group group) (STV 1.0 0.9091)) +(: cnet_isa_6de7a84577 (IsA biological_research scientific_research) (STV 1.0 0.9091)) +(: cnet_isa_f53421d0ca (IsA biological_time time) (STV 1.0 0.9091)) +(: cnet_isa_bd06e90819 (IsA biological_warfare war) (STV 1.0 0.9091)) +(: cnet_isa_a57cc15f97 (IsA biological_warfare_defense defense) (STV 1.0 0.9091)) +(: cnet_isa_eb709bc94e (IsA biologism practice) (STV 1.0 0.9091)) +(: cnet_isa_ca0eca3e3a (IsA biologist scientist) (STV 1.0 0.9091)) +(: cnet_isa_b3c9cc5b70 (IsA biology science) (STV 1.0 0.9763)) +(: cnet_isa_09bd323eb9 (IsA biology life_science) (STV 1.0 0.9091)) +(: cnet_isa_922968db4a (IsA biology life) (STV 1.0 0.9091)) +(: cnet_isa_1145b6e462 (IsA biology_department academic_department) (STV 1.0 0.9091)) +(: cnet_isa_e949c79865 (IsA biology_lab lab) (STV 1.0 0.9091)) +(: cnet_isa_ba7ec82214 (IsA bioluminescence luminescence) (STV 1.0 0.9091)) +(: cnet_isa_e60bc3d067 (IsA biomass mass) (STV 1.0 0.9091)) +(: cnet_isa_f392ea4b5d (IsA biomass fuel) (STV 1.0 0.9091)) +(: cnet_isa_da1e701bf7 (IsA biome community) (STV 1.0 0.9091)) +(: cnet_isa_3134314140 (IsA biomedical_science life_science) (STV 1.0 0.9091)) +(: cnet_isa_97a8480bca (IsA biomedicine medicine) (STV 1.0 0.9091)) +(: cnet_isa_ce3c22ed55 (IsA biometric_identification identification) (STV 1.0 0.9091)) +(: cnet_isa_ea74fca6dd (IsA biometric life_science) (STV 1.0 0.9091)) +(: cnet_isa_f5bd5dc7dd (IsA biometric statistic) (STV 1.0 0.9091)) +(: cnet_isa_020d8c000a (IsA bionic engineering) (STV 1.0 0.9091)) +(: cnet_isa_9af8afad2f (IsA biont living_thing) (STV 1.0 0.9091)) +(: cnet_isa_ce0b82ab13 (IsA biophysicist physicist) (STV 1.0 0.9091)) +(: cnet_isa_8b38f4f550 (IsA biophysic physic) (STV 1.0 0.9091)) +(: cnet_isa_a9471f2ad0 (IsA biopiracy larceny) (STV 1.0 0.9091)) +(: cnet_isa_d84adb8a49 (IsA biopsy diagnostic_test) (STV 1.0 0.9091)) +(: cnet_isa_7ce4478fb7 (IsA bioremediation treatment) (STV 1.0 0.9091)) +(: cnet_isa_00b2d9a41e (IsA bioremediation biotechnology) (STV 1.0 0.9091)) +(: cnet_isa_dc6a7cf86a (IsA biosafety safety) (STV 1.0 0.9091)) +(: cnet_isa_1eb458652c (IsA biosafety_level grade) (STV 1.0 0.9091)) +(: cnet_isa_a4e0615d69 (IsA biosafety_level_1 biosafety_level) (STV 1.0 0.9091)) +(: cnet_isa_a1118e4aee (IsA biosafety_level_2 biosafety_level) (STV 1.0 0.9091)) +(: cnet_isa_bcc89e1dec (IsA biosafety_level_3 biosafety_level) (STV 1.0 0.9091)) +(: cnet_isa_5487ac7fb9 (IsA biosafety_level_4 biosafety_level) (STV 1.0 0.9091)) +(: cnet_isa_c914ffb45b (IsA bioscope cinema) (STV 1.0 0.9091)) +(: cnet_isa_78bbae3d2a (IsA bioscope movie_projector) (STV 1.0 0.9091)) +(: cnet_isa_d57635cdb1 (IsA biosphere region) (STV 1.0 0.9091)) +(: cnet_isa_28ff0dbc5a (IsA biosynthesis synthesis) (STV 1.0 0.9091)) +(: cnet_isa_7379d02326 (IsA biosystematic systematic) (STV 1.0 0.9091)) +(: cnet_isa_33fc7d5478 (IsA biota collection) (STV 1.0 0.9091)) +(: cnet_isa_5ea0b75530 (IsA biotechnology engineering) (STV 1.0 0.9091)) +(: cnet_isa_96b29b161e (IsA biotechnology molecular_biology) (STV 1.0 0.9091)) +(: cnet_isa_aa6493bf3b (IsA bioterrorism terrorism) (STV 1.0 0.9091)) +(: cnet_isa_a2ccc4c08a (IsA biotin b_complex_vitamin) (STV 1.0 0.9091)) +(: cnet_isa_ec33a18f84 (IsA biotite mica) (STV 1.0 0.9091)) +(: cnet_isa_3d16d34b71 (IsA biotype genotype) (STV 1.0 0.9091)) +(: cnet_isa_fc79a44173 (IsA bioweapon weapon_of_mass_destruction) (STV 1.0 0.9091)) +(: cnet_isa_f734e9155d (IsA biped two_legged) (STV 1.0 0.9339)) +(: cnet_isa_d478455fdf (IsA biped two_legged_animal) (STV 1.0 0.9339)) +(: cnet_isa_edfb3ffed2 (IsA biped animal) (STV 1.0 0.9091)) +(: cnet_isa_3ef6b50022 (IsA bipedalism bodily_property) (STV 1.0 0.9091)) +(: cnet_isa_01e42826e8 (IsA bipinnate_leaf pinnate_leaf) (STV 1.0 0.9091)) +(: cnet_isa_25dc05693c (IsA biplane airplane) (STV 1.0 0.9091)) +(: cnet_isa_34739083b5 (IsA biplane_flying_fish flying_fish) (STV 1.0 0.9091)) +(: cnet_isa_fe2bd2904f (IsA bipolar_disorder affective_spectrum_disorder) (STV 1.0 0.9091)) +(: cnet_isa_097bb42580 (IsA bipolar_disorder affective_disorder) (STV 1.0 0.9091)) +(: cnet_isa_c1bff62b55 (IsA biprism optical_device) (STV 1.0 0.9091)) +(: cnet_isa_24b1c157c4 (IsA biquadrate number) (STV 1.0 0.9091)) +(: cnet_isa_4c842ee4bb (IsA biquadratic polynomial) (STV 1.0 0.9091)) +(: cnet_isa_33769e560b (IsA biquadratic_equation equation) (STV 1.0 0.9091)) +(: cnet_isa_c9b5b3dff4 (IsA birch switch) (STV 1.0 0.9091)) +(: cnet_isa_ec8355f0c4 (IsA birch tree) (STV 1.0 0.9091)) +(: cnet_isa_dbe565f75b (IsA birch wood) (STV 1.0 0.9091)) +(: cnet_isa_6edf86fabb (IsA birch_beer soft_drink) (STV 1.0 0.9091)) +(: cnet_isa_b0115af6fa (IsA birch_leaf_miner sawfly) (STV 1.0 0.9091)) +(: cnet_isa_5fcc6ff18c (IsA birchbark_canoe canoe) (STV 1.0 0.9091)) +(: cnet_isa_faeced543e (IsA bird_s_eye_bush shrub) (STV 1.0 0.9091)) +(: cnet_isa_6ea61d98df (IsA bird_s_eye_maple maple) (STV 1.0 0.9091)) +(: cnet_isa_c9328591ff (IsA bird_s_eye_view position) (STV 1.0 0.9091)) +(: cnet_isa_54ed081723 (IsA bird_s_foot animal_foot) (STV 1.0 0.9091)) +(: cnet_isa_b83f3abf59 (IsA bird_s_foot_fern cliff_brake) (STV 1.0 0.9091)) +(: cnet_isa_0653369937 (IsA bird_s_foot_trefoil herb) (STV 1.0 0.9091)) +(: cnet_isa_0a21deb0ca (IsA bird_s_foot_trefoil subshrub) (STV 1.0 0.9091)) +(: cnet_isa_750b40c110 (IsA bird_s_foot_violet violet) (STV 1.0 0.9091)) +(: cnet_isa_f68bebd856 (IsA bird_s_nest nest) (STV 1.0 0.9091)) +(: cnet_isa_d8f2847573 (IsA bird_s_nest_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_1508621090 (IsA bird_s_nest_fungus fungus) (STV 1.0 0.9091)) +(: cnet_isa_467a191e69 (IsA bird vertebrate) (STV 1.0 0.9091)) +(: cnet_isa_9d40c97c76 (IsA bird meat) (STV 1.0 0.9091)) +(: cnet_isa_86f35ee71c (IsA bird_cannot_fly flightless_bird) (STV 1.0 0.9339)) +(: cnet_isa_b28e9485a1 (IsA bird_cherry wild_cherry) (STV 1.0 0.9091)) +(: cnet_isa_6c081dff5d (IsA bird_dog sporting_dog) (STV 1.0 0.9091)) +(: cnet_isa_b79e1c1935 (IsA bird_family family) (STV 1.0 0.9091)) +(: cnet_isa_5d1968f36a (IsA bird_fancier fancier) (STV 1.0 0.9091)) +(: cnet_isa_129dbc47f5 (IsA bird_feeder device) (STV 1.0 0.9091)) +(: cnet_isa_12c986412c (IsA bird_food feed) (STV 1.0 0.9091)) +(: cnet_isa_c9ec47f796 (IsA bird_genus genus) (STV 1.0 0.9091)) +(: cnet_isa_865f2fbe29 (IsA bird_in_hand worth_two_in_bush) (STV 1.0 0.9339)) +(: cnet_isa_3ebd3d2cae (IsA bird_louse insect) (STV 1.0 0.9091)) +(: cnet_isa_dbe62ad6ab (IsA bird_of_paradise oscine) (STV 1.0 0.9091)) +(: cnet_isa_895a3920af (IsA bird_of_paradise flowering_shrub) (STV 1.0 0.9091)) +(: cnet_isa_6d6f03d9a5 (IsA bird_of_paradise herb) (STV 1.0 0.9091)) +(: cnet_isa_62f269115a (IsA bird_of_passage bird) (STV 1.0 0.9091)) +(: cnet_isa_850d780667 (IsA bird_of_prey bird) (STV 1.0 0.9091)) +(: cnet_isa_5505ab3443 (IsA bird_pepper capsicum) (STV 1.0 0.9091)) +(: cnet_isa_9e4682db02 (IsA bird_shot shot) (STV 1.0 0.9091)) +(: cnet_isa_cbb07dea2b (IsA bird_watcher amateur) (STV 1.0 0.9091)) +(: cnet_isa_7b8270cce9 (IsA birdbath basin) (STV 1.0 0.9091)) +(: cnet_isa_ff8246e5bd (IsA birdcage cage) (STV 1.0 0.9091)) +(: cnet_isa_7b87bf9d2d (IsA birdcage_mask catcher_s_mask) (STV 1.0 0.9091)) +(: cnet_isa_3ab6f32ee9 (IsA birdcall acoustic_device) (STV 1.0 0.9091)) +(: cnet_isa_07032ec9bd (IsA birdcall animal_communication) (STV 1.0 0.9091)) +(: cnet_isa_c7f44b01c5 (IsA birdhouse shelter) (STV 1.0 0.9091)) +(: cnet_isa_3478563e33 (IsA birdie score) (STV 1.0 0.9091)) +(: cnet_isa_be52cb5336 (IsA birdlime adhesive_material) (STV 1.0 0.9091)) +(: cnet_isa_dae93ec7b6 (IsA birdnesting hunt) (STV 1.0 0.9091)) +(: cnet_isa_59e92087e7 (IsA bird eagle) (STV 1.0 0.9091)) +(: cnet_isa_5cc841fcab (IsA bird not_mammal) (STV 1.0 0.9091)) +(: cnet_isa_536f88c912 (IsA bird_and_reptile vertebrate) (STV 1.0 0.9339)) +(: cnet_isa_b16f8d064d (IsA biretta cap) (STV 1.0 0.9091)) +(: cnet_isa_9a6c2e4171 (IsA biriani dish) (STV 1.0 0.9091)) +(: cnet_isa_07d35fe438 (IsA birling spin) (STV 1.0 0.9091)) +(: cnet_isa_3143dd10df (IsA birr ethiopian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_e59c4f4a0c (IsA birth change) (STV 1.0 0.9091)) +(: cnet_isa_345360beaa (IsA birth person) (STV 1.0 0.9091)) +(: cnet_isa_8b8a29f7ea (IsA birth beginning) (STV 1.0 0.9091)) +(: cnet_isa_97101b0d72 (IsA birth_canal passage) (STV 1.0 0.9091)) +(: cnet_isa_14ee9342ca (IsA birth_certificate certificate) (STV 1.0 0.9091)) +(: cnet_isa_fd6420ac9b (IsA birth_control planning) (STV 1.0 0.9091)) +(: cnet_isa_f99f40cd0b (IsA birth_control_campaigner reformer) (STV 1.0 0.9091)) +(: cnet_isa_fdb214d04b (IsA birth_defect anomaly) (STV 1.0 0.9091)) +(: cnet_isa_388a68ced9 (IsA birth_defect defect) (STV 1.0 0.9091)) +(: cnet_isa_10511c1dea (IsA birth_pang pang) (STV 1.0 0.9091)) +(: cnet_isa_b4d7a4e526 (IsA birth_trauma injury) (STV 1.0 0.9091)) +(: cnet_isa_f5ca83fd18 (IsA birth_trauma trauma) (STV 1.0 0.9091)) +(: cnet_isa_bc72a2f4d6 (IsA birthday anniversary) (STV 1.0 0.9091)) +(: cnet_isa_b852dc7a2d (IsA birthday date) (STV 1.0 0.9091)) +(: cnet_isa_09ceb30c18 (IsA birthday_cake cake) (STV 1.0 0.9091)) +(: cnet_isa_0880c2516e (IsA birthday_card greeting_card) (STV 1.0 0.9091)) +(: cnet_isa_62444671c2 (IsA birthday_party party) (STV 1.0 0.9091)) +(: cnet_isa_76e19577a5 (IsA birthday_present present) (STV 1.0 0.9091)) +(: cnet_isa_be12ceb8da (IsA birthmark blemish) (STV 1.0 0.9091)) +(: cnet_isa_96ec486731 (IsA birthplace beginning) (STV 1.0 0.9091)) +(: cnet_isa_245ae82fc1 (IsA birthplace topographic_point) (STV 1.0 0.9091)) +(: cnet_isa_30245aee7a (IsA birthrate rate) (STV 1.0 0.9091)) +(: cnet_isa_9feb049b26 (IsA birthright inheritance) (STV 1.0 0.9091)) +(: cnet_isa_053c2f1cd4 (IsA birthwort vine) (STV 1.0 0.9091)) +(: cnet_isa_aa9974a893 (IsA bisayan filipino) (STV 1.0 0.9091)) +(: cnet_isa_f5f4876a38 (IsA biscuit quick_bread) (STV 1.0 0.9091)) +(: cnet_isa_70a6291176 (IsA biscutella dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7888712a34 (IsA bise north_wind) (STV 1.0 0.9091)) +(: cnet_isa_8d1712e0ee (IsA bisection division) (STV 1.0 0.9091)) +(: cnet_isa_9684bae58d (IsA biserial_correlation_coefficient correlation_coefficient) (STV 1.0 0.9091)) +(: cnet_isa_d48fc0497e (IsA bisexual sensualist) (STV 1.0 0.9091)) +(: cnet_isa_cc21f42c8f (IsA bisexuality sexual_orientation) (STV 1.0 0.9091)) +(: cnet_isa_863767b594 (IsA bisexuality sexual_activity) (STV 1.0 0.9091)) +(: cnet_isa_44cec8cc9d (IsA bisexual equal_opportunity_lover) (STV 1.0 0.9339)) +(: cnet_isa_341b8ef305 (IsA bishop chessman) (STV 1.0 0.9091)) +(: cnet_isa_78bd0710c0 (IsA bishop mulled_wine) (STV 1.0 0.9091)) +(: cnet_isa_a83271b39c (IsA bishop priest) (STV 1.0 0.9091)) +(: cnet_isa_650f3e6eef (IsA bishop_pine pinon) (STV 1.0 0.9091)) +(: cnet_isa_e08b3ac550 (IsA bishopry position) (STV 1.0 0.9091)) +(: cnet_isa_0e29fe0902 (IsA bismuth metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_9dba349a27 (IsA bison bovid) (STV 1.0 0.9091)) +(: cnet_isa_61cf420f48 (IsA bisque soup) (STV 1.0 0.9091)) +(: cnet_isa_be3503ad3d (IsA bister pigment) (STV 1.0 0.9091)) +(: cnet_isa_de980c7822 (IsA bistro restaurant) (STV 1.0 0.9091)) +(: cnet_isa_318e64d3e1 (IsA bit cutting_implement) (STV 1.0 0.9091)) +(: cnet_isa_2aaf8f5b66 (IsA bit part) (STV 1.0 0.9091)) +(: cnet_isa_613375b212 (IsA bit stable_gear) (STV 1.0 0.9091)) +(: cnet_isa_f536182e82 (IsA bit fragment) (STV 1.0 0.9091)) +(: cnet_isa_cab92f950d (IsA bit unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_63262a62ac (IsA bit_field field) (STV 1.0 0.9091)) +(: cnet_isa_bdde1a6207 (IsA bit_part character) (STV 1.0 0.9091)) +(: cnet_isa_5756086063 (IsA bitartrate tartrate) (STV 1.0 0.9091)) +(: cnet_isa_b5cd69a8b2 (IsA bitch canine) (STV 1.0 0.9091)) +(: cnet_isa_89dff88e82 (IsA bitch difficulty) (STV 1.0 0.9091)) +(: cnet_isa_e17d38c5b3 (IsA bitchery aggression) (STV 1.0 0.9091)) +(: cnet_isa_a27c1e454b (IsA bite eating) (STV 1.0 0.9091)) +(: cnet_isa_0e7e38dc1e (IsA bite subtraction) (STV 1.0 0.9091)) +(: cnet_isa_936eec6558 (IsA bite success) (STV 1.0 0.9091)) +(: cnet_isa_a14cf02fff (IsA bite meal) (STV 1.0 0.9091)) +(: cnet_isa_080fbf942b (IsA bite wound) (STV 1.0 0.9091)) +(: cnet_isa_f46d51fff0 (IsA bite_plate dental_appliance) (STV 1.0 0.9091)) +(: cnet_isa_508d2fa336 (IsA biter person) (STV 1.0 0.9091)) +(: cnet_isa_c3577c036f (IsA bitewing x_ray_film) (STV 1.0 0.9091)) +(: cnet_isa_8528cc635d (IsA bitis reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_6a1285f7ab (IsA bitmap ikon) (STV 1.0 0.9091)) +(: cnet_isa_6161208273 (IsA bitok dish) (STV 1.0 0.9091)) +(: cnet_isa_76d0733239 (IsA bit_per_inch concentration) (STV 1.0 0.9091)) +(: cnet_isa_de6cb33f17 (IsA bit_per_second rate) (STV 1.0 0.9091)) +(: cnet_isa_ec0e7a5ac3 (IsA bitt_pin pin) (STV 1.0 0.9091)) +(: cnet_isa_bb90bbc52c (IsA bittacidae family) (STV 1.0 0.9091)) +(: cnet_isa_16fc0d67ac (IsA bitter taste) (STV 1.0 0.9091)) +(: cnet_isa_0844c8e230 (IsA bitter ale) (STV 1.0 0.9091)) +(: cnet_isa_b953fbc03f (IsA bitter_almond almond_tree) (STV 1.0 0.9091)) +(: cnet_isa_e20a34774d (IsA bitter_almond_oil essential_oil) (STV 1.0 0.9091)) +(: cnet_isa_cc2835b489 (IsA bitter_almond_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_bda5efee61 (IsA bitter_betch vetch) (STV 1.0 0.9091)) +(: cnet_isa_79dfaf6db1 (IsA bitter_cassava cassava) (STV 1.0 0.9091)) +(: cnet_isa_da1895160d (IsA bitter_chocolate chocolate) (STV 1.0 0.9091)) +(: cnet_isa_cb9017b523 (IsA bitter_dock dock) (STV 1.0 0.9091)) +(: cnet_isa_df3fa62a41 (IsA bitter_end end) (STV 1.0 0.9091)) +(: cnet_isa_8b8a61058e (IsA bitter_end extremity) (STV 1.0 0.9091)) +(: cnet_isa_171475ec6b (IsA bitter_lemon soft_drink) (STV 1.0 0.9091)) +(: cnet_isa_91faa6289f (IsA bitter_orange orange) (STV 1.0 0.9091)) +(: cnet_isa_5c1a4a7423 (IsA bitter_pea shrub) (STV 1.0 0.9091)) +(: cnet_isa_09f28fc085 (IsA bitter_principle compound) (STV 1.0 0.9091)) +(: cnet_isa_7045dc8908 (IsA bittercress cress) (STV 1.0 0.9091)) +(: cnet_isa_17e1029f15 (IsA bittern heron) (STV 1.0 0.9091)) +(: cnet_isa_6f7b7cf0d6 (IsA bitterness disagreeableness) (STV 1.0 0.9091)) +(: cnet_isa_e00cdbda72 (IsA bitterness taste_property) (STV 1.0 0.9091)) +(: cnet_isa_034dd9bb62 (IsA bitternut hickory) (STV 1.0 0.9091)) +(: cnet_isa_f43ce5b8ac (IsA bitterroot wildflower) (STV 1.0 0.9091)) +(: cnet_isa_8080afefb7 (IsA bitter liquor) (STV 1.0 0.9091)) +(: cnet_isa_f83906e916 (IsA bittersweet nightshade) (STV 1.0 0.9091)) +(: cnet_isa_8c2ebced78 (IsA bittersweet vine) (STV 1.0 0.9091)) +(: cnet_isa_5df3b849ae (IsA bittersweet_chocolate chocolate) (STV 1.0 0.9091)) +(: cnet_isa_6eeaa13acc (IsA bitterwood_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_f8ba87a577 (IsA bitthead end) (STV 1.0 0.9091)) +(: cnet_isa_6ebad556d2 (IsA bitumastic coating) (STV 1.0 0.9091)) +(: cnet_isa_dbe5120dd7 (IsA bitumen hydrocarbon) (STV 1.0 0.9091)) +(: cnet_isa_5f3d11586a (IsA bituminous_coal coal) (STV 1.0 0.9091)) +(: cnet_isa_d0cdb4abd6 (IsA biu_mandara chad) (STV 1.0 0.9091)) +(: cnet_isa_a201c8d709 (IsA bivalve mollusk) (STV 1.0 0.9091)) +(: cnet_isa_7c1484cbb1 (IsA bivalvia class) (STV 1.0 0.9091)) +(: cnet_isa_84e0d42a04 (IsA biweekly sery) (STV 1.0 0.9091)) +(: cnet_isa_4609c75e56 (IsA blaberus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_4ea3b634d5 (IsA black color) (STV 1.0 0.9339)) +(: cnet_isa_40c80c7759 (IsA black clothing) (STV 1.0 0.9091)) +(: cnet_isa_5139b22106 (IsA black achromatic_color) (STV 1.0 0.9091)) +(: cnet_isa_9b5366710f (IsA black man) (STV 1.0 0.9091)) +(: cnet_isa_bb3b25021b (IsA black_african african) (STV 1.0 0.9091)) +(: cnet_isa_8a2bfcb10d (IsA black_and_gold_garden_spider spider) (STV 1.0 0.9091)) +(: cnet_isa_71c670e71e (IsA black_and_tan recruit) (STV 1.0 0.9091)) +(: cnet_isa_2e906ba7ef (IsA black_and_tan_coonhound coonhound) (STV 1.0 0.9091)) +(: cnet_isa_9967a52430 (IsA black_and_white picture) (STV 1.0 0.9091)) +(: cnet_isa_3ccb26b292 (IsA black_ash ash) (STV 1.0 0.9091)) +(: cnet_isa_84e5b4fc11 (IsA black_backed_gull gull) (STV 1.0 0.9091)) +(: cnet_isa_160c843756 (IsA black_bamboo bamboo) (STV 1.0 0.9091)) +(: cnet_isa_939cf7e1bf (IsA black_bass sunfish) (STV 1.0 0.9091)) +(: cnet_isa_a52b66ab3f (IsA black_bean common_bean) (STV 1.0 0.9091)) +(: cnet_isa_60db4baede (IsA black_bee honeybee) (STV 1.0 0.9091)) +(: cnet_isa_35606ebfef (IsA black_beech southern_beech) (STV 1.0 0.9091)) +(: cnet_isa_dbfb8c6af5 (IsA black_belt badge) (STV 1.0 0.9091)) +(: cnet_isa_6cacf4a368 (IsA black_belt expert) (STV 1.0 0.9091)) +(: cnet_isa_4b56f70f8c (IsA black_bile liquid_body_substance) (STV 1.0 0.9091)) +(: cnet_isa_b87a43df99 (IsA black_billed_cuckoo cuckoo) (STV 1.0 0.9091)) +(: cnet_isa_6cec5f6793 (IsA black_birch birch) (STV 1.0 0.9091)) +(: cnet_isa_f582b90077 (IsA black_body natural_object) (STV 1.0 0.9091)) +(: cnet_isa_00785127d1 (IsA black_body_radiation electromagnetic_radiation) (STV 1.0 0.9091)) +(: cnet_isa_4a8ccdf329 (IsA black_box recorder) (STV 1.0 0.9091)) +(: cnet_isa_95c1425c57 (IsA black_bread rye_bread) (STV 1.0 0.9091)) +(: cnet_isa_688fbf6103 (IsA black_bream sea_bream) (STV 1.0 0.9091)) +(: cnet_isa_4d4226545a (IsA black_bryony vine) (STV 1.0 0.9091)) +(: cnet_isa_0898dffa33 (IsA black_buffalo buffalo_fish) (STV 1.0 0.9091)) +(: cnet_isa_b157f0491a (IsA black_calla arum) (STV 1.0 0.9091)) +(: cnet_isa_4596a64774 (IsA black_capped_chickadee chickadee) (STV 1.0 0.9091)) +(: cnet_isa_d8b701989f (IsA black_caraway nigella) (STV 1.0 0.9091)) +(: cnet_isa_7f782507d1 (IsA black_carpet_beetle carpet_beetle) (STV 1.0 0.9091)) +(: cnet_isa_525c8f4af3 (IsA black_catechu infusion) (STV 1.0 0.9091)) +(: cnet_isa_d79d95b341 (IsA black_cherry wild_cherry) (STV 1.0 0.9091)) +(: cnet_isa_0548a0d116 (IsA black_cohosh bugbane) (STV 1.0 0.9091)) +(: cnet_isa_43531f5ee9 (IsA black_comedy comedy) (STV 1.0 0.9091)) +(: cnet_isa_fc36b24820 (IsA black_cottonwood cottonwood) (STV 1.0 0.9091)) +(: cnet_isa_aa7f3f437a (IsA black_crappie crappie) (STV 1.0 0.9091)) +(: cnet_isa_691d2f8fc7 (IsA black_crowned_night_heron night_heron) (STV 1.0 0.9091)) +(: cnet_isa_29d84f7458 (IsA black_currant currant) (STV 1.0 0.9091)) +(: cnet_isa_a8afecacf2 (IsA black_cypress_pine cypress_pine) (STV 1.0 0.9091)) +(: cnet_isa_a426abd84f (IsA black_death bubonic_plague) (STV 1.0 0.9091)) +(: cnet_isa_313f346892 (IsA black_disease animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_07060cc6b5 (IsA black_duck duck) (STV 1.0 0.9091)) +(: cnet_isa_d1df4bebac (IsA black_economy sector) (STV 1.0 0.9091)) +(: cnet_isa_572462c6c6 (IsA black_english american_english) (STV 1.0 0.9091)) +(: cnet_isa_51913b4a55 (IsA black_eye repute) (STV 1.0 0.9091)) +(: cnet_isa_3d92928b35 (IsA black_eyed_pea legume) (STV 1.0 0.9091)) +(: cnet_isa_57b2f29962 (IsA black_eyed_susan coneflower) (STV 1.0 0.9091)) +(: cnet_isa_cf712730fb (IsA black_eyed_susan vine) (STV 1.0 0.9091)) +(: cnet_isa_368c1e5dc9 (IsA black_felt_cup sarcosomataceae) (STV 1.0 0.9091)) +(: cnet_isa_41ee282d2d (IsA black_flag flag) (STV 1.0 0.9091)) +(: cnet_isa_7dba148c27 (IsA black_footed_albatross albatross) (STV 1.0 0.9091)) +(: cnet_isa_514c9bfc2b (IsA black_footed_ferret musteline_mammal) (STV 1.0 0.9091)) +(: cnet_isa_6976a9769d (IsA black_fox red_fox) (STV 1.0 0.9091)) +(: cnet_isa_63f4a8bc96 (IsA black_fronted_bush_shrike bush_shrike) (STV 1.0 0.9091)) +(: cnet_isa_72a0da837c (IsA black_grama grama) (STV 1.0 0.9091)) +(: cnet_isa_ad01896192 (IsA black_grouse grouse) (STV 1.0 0.9091)) +(: cnet_isa_7e18694eed (IsA black_guillemot guillemot) (STV 1.0 0.9091)) +(: cnet_isa_f2945a1eb7 (IsA black_hand organized_crime) (STV 1.0 0.9091)) +(: cnet_isa_34cb986dd9 (IsA black_haw shrub) (STV 1.0 0.9091)) +(: cnet_isa_05f6e68a3f (IsA black_headed_snake colubrid_snake) (STV 1.0 0.9091)) +(: cnet_isa_89abc96d4a (IsA black_hole object_of_great_mass) (STV 1.0 0.9091)) +(: cnet_isa_724926d829 (IsA black_hole region) (STV 1.0 0.9091)) +(: cnet_isa_e1afe85b6e (IsA black_horehound herb) (STV 1.0 0.9091)) +(: cnet_isa_3166edcb3a (IsA black_huckleberry huckleberry) (STV 1.0 0.9091)) +(: cnet_isa_832e1ccb93 (IsA black_humor expressive_style) (STV 1.0 0.9091)) +(: cnet_isa_9fe14c22d6 (IsA black_ice ice) (STV 1.0 0.9091)) +(: cnet_isa_94de055a16 (IsA black_kite kite) (STV 1.0 0.9091)) +(: cnet_isa_06c84cd89c (IsA black_knot plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_15adf16fe9 (IsA black_locust locust_tree) (STV 1.0 0.9091)) +(: cnet_isa_c2f355863d (IsA black_locust wood) (STV 1.0 0.9091)) +(: cnet_isa_7986a7879e (IsA black_maire olive_tree) (STV 1.0 0.9091)) +(: cnet_isa_3d11682ae4 (IsA black_mallee mallee) (STV 1.0 0.9091)) +(: cnet_isa_e21146b40b (IsA black_mamba mamba) (STV 1.0 0.9091)) +(: cnet_isa_fef05acada (IsA black_mangrove blackwood) (STV 1.0 0.9091)) +(: cnet_isa_24b2410ebd (IsA black_mangrove tree) (STV 1.0 0.9091)) +(: cnet_isa_44f8048205 (IsA black_market market) (STV 1.0 0.9091)) +(: cnet_isa_4be602743d (IsA black_marketeer supplier) (STV 1.0 0.9091)) +(: cnet_isa_2f7cff592b (IsA black_marlin marlin) (STV 1.0 0.9091)) +(: cnet_isa_27a488aab4 (IsA black_medick medic) (STV 1.0 0.9091)) +(: cnet_isa_d301c619c4 (IsA black_morel morel) (STV 1.0 0.9091)) +(: cnet_isa_b5d420a139 (IsA black_mulberry mulberry) (STV 1.0 0.9091)) +(: cnet_isa_22b7edba32 (IsA black_music music_genre) (STV 1.0 0.9091)) +(: cnet_isa_c63ad1d085 (IsA black_muslim militant) (STV 1.0 0.9091)) +(: cnet_isa_341038e965 (IsA black_mustard mustard) (STV 1.0 0.9091)) +(: cnet_isa_24d1ad5efd (IsA black_necked_cobra cobra) (STV 1.0 0.9091)) +(: cnet_isa_2aa7801fa0 (IsA black_necked_grebe grebe) (STV 1.0 0.9091)) +(: cnet_isa_6a1e0dcd06 (IsA black_necked_stilt stilt) (STV 1.0 0.9091)) +(: cnet_isa_fbdb0ca742 (IsA black_nightshade nightshade) (STV 1.0 0.9091)) +(: cnet_isa_29b320d127 (IsA black_oak oak) (STV 1.0 0.9091)) +(: cnet_isa_c0fb942ebc (IsA black_olive olive) (STV 1.0 0.9091)) +(: cnet_isa_515a4c09ae (IsA black_opal opal) (STV 1.0 0.9091)) +(: cnet_isa_4158e97074 (IsA black_operation covert_operation) (STV 1.0 0.9091)) +(: cnet_isa_f2b5f5e960 (IsA black_panther militant) (STV 1.0 0.9091)) +(: cnet_isa_24c08956b7 (IsA black_panther party) (STV 1.0 0.9091)) +(: cnet_isa_330438e048 (IsA black_pea vetchling) (STV 1.0 0.9091)) +(: cnet_isa_10be267e2d (IsA black_pepper pepper) (STV 1.0 0.9091)) +(: cnet_isa_66c2a7fe95 (IsA black_pine pine) (STV 1.0 0.9091)) +(: cnet_isa_6e629c321c (IsA black_poplar poplar) (STV 1.0 0.9091)) +(: cnet_isa_4946e205ff (IsA black_raspberry raspberry) (STV 1.0 0.9091)) +(: cnet_isa_1a590e8167 (IsA black_rat rat) (STV 1.0 0.9091)) +(: cnet_isa_fabf5ae782 (IsA black_rat_snake rat_snake) (STV 1.0 0.9091)) +(: cnet_isa_1d6abc6e1d (IsA black_rhinocero rhinocero) (STV 1.0 0.9091)) +(: cnet_isa_65f751c9fb (IsA black_root_rot_fungus fungus) (STV 1.0 0.9091)) +(: cnet_isa_bc00c5023c (IsA black_rot plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_1a926d65da (IsA black_sage blue_curl) (STV 1.0 0.9091)) +(: cnet_isa_ebad579e55 (IsA black_salsify herb) (STV 1.0 0.9091)) +(: cnet_isa_34fbd77370 (IsA black_sea_bass sea_bass) (STV 1.0 0.9091)) +(: cnet_isa_36eaa5c896 (IsA black_sheep sheep) (STV 1.0 0.9091)) +(: cnet_isa_4108142a42 (IsA black_spleenwort spleenwort) (STV 1.0 0.9091)) +(: cnet_isa_e9b297cc25 (IsA black_spot plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_e48691adc9 (IsA black_spruce spruce) (STV 1.0 0.9091)) +(: cnet_isa_7a2755a993 (IsA black_squirrel tree_squirrel) (STV 1.0 0.9091)) +(: cnet_isa_29306292c4 (IsA black_stem_spleenwort spleenwort) (STV 1.0 0.9091)) +(: cnet_isa_b611bbdb6f (IsA black_stork stork) (STV 1.0 0.9091)) +(: cnet_isa_ec79061fd4 (IsA black_swan swan) (STV 1.0 0.9091)) +(: cnet_isa_08bded7144 (IsA black_tailed_deer mule_deer) (STV 1.0 0.9091)) +(: cnet_isa_ff45c4f524 (IsA black_tea tea) (STV 1.0 0.9091)) +(: cnet_isa_17f9509d23 (IsA black_tie bow_tie) (STV 1.0 0.9091)) +(: cnet_isa_f66d1f682b (IsA black_turnstone turnstone) (STV 1.0 0.9091)) +(: cnet_isa_dff6f4ae77 (IsA black_vulture new_world_vulture) (STV 1.0 0.9091)) +(: cnet_isa_ae4d3a4dc8 (IsA black_vulture old_world_vulture) (STV 1.0 0.9091)) +(: cnet_isa_cd86e220c3 (IsA black_walnut walnut) (STV 1.0 0.9091)) +(: cnet_isa_b9338eb541 (IsA black_wattle wattle) (STV 1.0 0.9091)) +(: cnet_isa_7173c7c3d0 (IsA black_widow spider) (STV 1.0 0.9091)) +(: cnet_isa_bdbe59e686 (IsA black_winged_stilt stilt) (STV 1.0 0.9091)) +(: cnet_isa_466475e781 (IsA blackberry berry) (STV 1.0 0.9091)) +(: cnet_isa_e79c831b9b (IsA blackberry drupelet) (STV 1.0 0.9091)) +(: cnet_isa_a317d1eb4e (IsA blackberry bramble_bush) (STV 1.0 0.9091)) +(: cnet_isa_d92bfd8ef0 (IsA blackberry_lily iridaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_8967c82c84 (IsA blackbird bird) (STV 1.0 0.9339)) +(: cnet_isa_b011d04103 (IsA blackbird thrush) (STV 1.0 0.9091)) +(: cnet_isa_a02f018d81 (IsA blackboard board) (STV 1.0 0.9091)) +(: cnet_isa_d4745d1daa (IsA blackboard_eraser eraser) (STV 1.0 0.9091)) +(: cnet_isa_96184905e0 (IsA blackbuck antelope) (STV 1.0 0.9091)) +(: cnet_isa_6b7977de5e (IsA blackburn new_world_warbler) (STV 1.0 0.9091)) +(: cnet_isa_c91b25586d (IsA blackcap old_world_warbler) (STV 1.0 0.9091)) +(: cnet_isa_3c102ae0dd (IsA blackcock black_grouse) (STV 1.0 0.9091)) +(: cnet_isa_46b28a42df (IsA blackening change_of_color) (STV 1.0 0.9091)) +(: cnet_isa_6f8a1fa3d0 (IsA blackface makeup) (STV 1.0 0.9091)) +(: cnet_isa_99d2924873 (IsA blackfish salmon) (STV 1.0 0.9091)) +(: cnet_isa_99f0fb5e33 (IsA blackfly aphid) (STV 1.0 0.9091)) +(: cnet_isa_8ea02a61d1 (IsA blackfly gnat) (STV 1.0 0.9091)) +(: cnet_isa_dfab1d2d57 (IsA blackfoot algonquian) (STV 1.0 0.9091)) +(: cnet_isa_2dec24aa46 (IsA blackfoot algonquin) (STV 1.0 0.9091)) +(: cnet_isa_6aeb39f398 (IsA blackfoot buffalo_indian) (STV 1.0 0.9091)) +(: cnet_isa_aa3c1ca9bb (IsA blackfoot_daisy wildflower) (STV 1.0 0.9091)) +(: cnet_isa_6bf55c06d9 (IsA blackhead blemish) (STV 1.0 0.9091)) +(: cnet_isa_6b49e2fbc6 (IsA blackheart heart_cherry) (STV 1.0 0.9091)) +(: cnet_isa_800ee5b553 (IsA blackheart plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_e7bb57554b (IsA blackjack card_game) (STV 1.0 0.9091)) +(: cnet_isa_ec62a31b37 (IsA blackjack bludgeon) (STV 1.0 0.9091)) +(: cnet_isa_ffd0eac38f (IsA blackjack_oak scrub_oak) (STV 1.0 0.9091)) +(: cnet_isa_e0ae8f8f2b (IsA blacklist list) (STV 1.0 0.9091)) +(: cnet_isa_9e340fb30f (IsA blackmail extortion) (STV 1.0 0.9091)) +(: cnet_isa_c352703b14 (IsA blackmailer criminal) (STV 1.0 0.9091)) +(: cnet_isa_5ec73750f1 (IsA blackmouth_bass sea_bass) (STV 1.0 0.9091)) +(: cnet_isa_c7dc70be91 (IsA blackout dark) (STV 1.0 0.9091)) +(: cnet_isa_6852e2647f (IsA blackout unconsciousness) (STV 1.0 0.9091)) +(: cnet_isa_b07a9f50b9 (IsA blackout power_outage) (STV 1.0 0.9091)) +(: cnet_isa_a84aa09d43 (IsA blackout pause) (STV 1.0 0.9091)) +(: cnet_isa_b794c6bce5 (IsA blackpoll new_world_warbler) (STV 1.0 0.9091)) +(: cnet_isa_fe305e7660 (IsA blackshirt fascist) (STV 1.0 0.9091)) +(: cnet_isa_3a52833d2d (IsA blacksmith smith) (STV 1.0 0.9091)) +(: cnet_isa_a411705607 (IsA blacksnake racer) (STV 1.0 0.9091)) +(: cnet_isa_6a7c48deb3 (IsA blacktail_jackrabbit jackrabbit) (STV 1.0 0.9091)) +(: cnet_isa_3a0f25db2b (IsA blacktail_prairie_dog prairie_dog) (STV 1.0 0.9091)) +(: cnet_isa_bfcdc063af (IsA blackthorn hawthorn) (STV 1.0 0.9091)) +(: cnet_isa_dd9ac6e4ff (IsA blackthorn shrub) (STV 1.0 0.9091)) +(: cnet_isa_13fcd11585 (IsA blacktip_shark requiem_shark) (STV 1.0 0.9091)) +(: cnet_isa_154209cadd (IsA blacktop paving_material) (STV 1.0 0.9091)) +(: cnet_isa_7864933a00 (IsA blackwall_hitch hitch) (STV 1.0 0.9091)) +(: cnet_isa_c326dbced1 (IsA blackwash lotion) (STV 1.0 0.9091)) +(: cnet_isa_bee53beead (IsA blackwash wash) (STV 1.0 0.9091)) +(: cnet_isa_77a0bf3391 (IsA blackwater disease) (STV 1.0 0.9091)) +(: cnet_isa_8f75c1c93f (IsA blackwater_fever malaria) (STV 1.0 0.9091)) +(: cnet_isa_3508feea2b (IsA blackwood tree) (STV 1.0 0.9091)) +(: cnet_isa_7609746a4a (IsA blackwood wood) (STV 1.0 0.9091)) +(: cnet_isa_9d7689142e (IsA bladder bag) (STV 1.0 0.9091)) +(: cnet_isa_192a29dc10 (IsA bladder sac) (STV 1.0 0.9091)) +(: cnet_isa_484c14e39f (IsA bladder_campion silene) (STV 1.0 0.9091)) +(: cnet_isa_d37f5934db (IsA bladder_disorder disorder) (STV 1.0 0.9091)) +(: cnet_isa_e59d82b799 (IsA bladder_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_e54c82db68 (IsA bladder_senna shrub) (STV 1.0 0.9091)) +(: cnet_isa_35dd19f406 (IsA bladder_sphincter sphincter) (STV 1.0 0.9091)) +(: cnet_isa_aa1fb8590e (IsA bladder_stone calculus) (STV 1.0 0.9091)) +(: cnet_isa_e94982475f (IsA bladder_worm larva) (STV 1.0 0.9091)) +(: cnet_isa_8091e70181 (IsA bladderpod herb) (STV 1.0 0.9091)) +(: cnet_isa_01b7eeacf0 (IsA bladderwort carnivorous_plant) (STV 1.0 0.9091)) +(: cnet_isa_2719e10fdb (IsA bladderwrack rockweed) (STV 1.0 0.9091)) +(: cnet_isa_40dfbc7ad7 (IsA blade cutting_implement) (STV 1.0 0.9091)) +(: cnet_isa_2f0aa6d776 (IsA blade rotating_mechanism) (STV 1.0 0.9091)) +(: cnet_isa_700fdf9a3d (IsA blade runner) (STV 1.0 0.9091)) +(: cnet_isa_babbd5f9ba (IsA blade structure) (STV 1.0 0.9091)) +(: cnet_isa_22a42c90c8 (IsA blade cut_of_beef) (STV 1.0 0.9091)) +(: cnet_isa_d744d0be7f (IsA blade ribbon) (STV 1.0 0.9091)) +(: cnet_isa_33a88cd10d (IsA blade young_person) (STV 1.0 0.9091)) +(: cnet_isa_ed83daf2ff (IsA blade leaf) (STV 1.0 0.9091)) +(: cnet_isa_5312f91368 (IsA blade_roast roast) (STV 1.0 0.9091)) +(: cnet_isa_c37b17c7f4 (IsA blade_runner famous_science_fiction_movie) (STV 1.0 0.9091)) +(: cnet_isa_6636938599 (IsA blah boredom) (STV 1.0 0.9091)) +(: cnet_isa_c8cb1691c2 (IsA blaia_zimondal artificial_language) (STV 1.0 0.9091)) +(: cnet_isa_838569752b (IsA blain sore) (STV 1.0 0.9091)) +(: cnet_isa_2f14976fa1 (IsA blame reproach) (STV 1.0 0.9091)) +(: cnet_isa_1a9a9abd2b (IsA blame_game accusation) (STV 1.0 0.9091)) +(: cnet_isa_572164dee1 (IsA blamelessness innocence) (STV 1.0 0.9091)) +(: cnet_isa_315abf7cba (IsA blameworthiness guilt) (STV 1.0 0.9091)) +(: cnet_isa_3a5c33a519 (IsA blanc white_sauce) (STV 1.0 0.9091)) +(: cnet_isa_0fa3515bc8 (IsA blanching cooking) (STV 1.0 0.9091)) +(: cnet_isa_e72c806b1b (IsA blancmange dessert) (STV 1.0 0.9091)) +(: cnet_isa_300e441bd9 (IsA bland_diet diet) (STV 1.0 0.9091)) +(: cnet_isa_756f9d7403 (IsA blandfordia liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c70dc9a861 (IsA blandishment enticement) (STV 1.0 0.9091)) +(: cnet_isa_069a248c26 (IsA blandishment flattery) (STV 1.0 0.9091)) +(: cnet_isa_4740f5fb7a (IsA blandness unappetizingness) (STV 1.0 0.9091)) +(: cnet_isa_96d3b85ae3 (IsA blandness unemotionality) (STV 1.0 0.9091)) +(: cnet_isa_e2f1309585 (IsA blank cartridge) (STV 1.0 0.9091)) +(: cnet_isa_bcea259b3b (IsA blank sheet) (STV 1.0 0.9091)) +(: cnet_isa_381e2b9fc8 (IsA blank_check check) (STV 1.0 0.9091)) +(: cnet_isa_6e69fc6983 (IsA blank_endorsement endorsement) (STV 1.0 0.9091)) +(: cnet_isa_df066845bd (IsA blank_verse poem) (STV 1.0 0.9091)) +(: cnet_isa_072b4fc563 (IsA blanket bedclothe) (STV 1.0 0.9091)) +(: cnet_isa_4dbe425cc1 (IsA blanket layer) (STV 1.0 0.9091)) +(: cnet_isa_2efce4a18b (IsA blanket covering) (STV 1.0 0.9091)) +(: cnet_isa_2d1d96b2cd (IsA blanket_flower gaillardia) (STV 1.0 0.9091)) +(: cnet_isa_548262ec30 (IsA blanket_stitch embroidery_stitch) (STV 1.0 0.9091)) +(: cnet_isa_1abfc5e841 (IsA blankness emptiness) (STV 1.0 0.9091)) +(: cnet_isa_4fd2a8c578 (IsA blanquillo percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_27df685644 (IsA blare noise) (STV 1.0 0.9091)) +(: cnet_isa_1e98976eb1 (IsA blarina mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_788a977994 (IsA blarney flattery) (STV 1.0 0.9091)) +(: cnet_isa_460f886ac2 (IsA blasphemer nonreligious_person) (STV 1.0 0.9091)) +(: cnet_isa_6bda656db1 (IsA blasphemy disrespect) (STV 1.0 0.9091)) +(: cnet_isa_e25f9f7af0 (IsA blasphemy profanity) (STV 1.0 0.9091)) +(: cnet_isa_4096762cbf (IsA blast fly) (STV 1.0 0.9091)) +(: cnet_isa_d35954f7ed (IsA blast explosion) (STV 1.0 0.9091)) +(: cnet_isa_fe9521290f (IsA blast_furnace furnace) (STV 1.0 0.9091)) +(: cnet_isa_48ff3ea16f (IsA blast_trauma injury) (STV 1.0 0.9091)) +(: cnet_isa_2a837ce980 (IsA blastema cell) (STV 1.0 0.9091)) +(: cnet_isa_b5e662d3f8 (IsA blaster workman) (STV 1.0 0.9091)) +(: cnet_isa_c2d71856c6 (IsA blasting_cap detonator) (STV 1.0 0.9091)) +(: cnet_isa_dac402d18e (IsA blasting_gelatin explosive_mixture) (STV 1.0 0.9091)) +(: cnet_isa_b50e696217 (IsA blastocladia fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_11cd7aa139 (IsA blastocladiale fungus_order) (STV 1.0 0.9091)) +(: cnet_isa_7ac738b0ac (IsA blastocoel cavity) (STV 1.0 0.9091)) +(: cnet_isa_1fbd183799 (IsA blastocyte embryonic_cell) (STV 1.0 0.9091)) +(: cnet_isa_ba3988a77b (IsA blastoderm layer) (STV 1.0 0.9091)) +(: cnet_isa_4e5f04421f (IsA blastodermic_vessicle blastosphere) (STV 1.0 0.9091)) +(: cnet_isa_214613fceb (IsA blastodiaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_82f2b128e7 (IsA blastoff rocket_firing) (STV 1.0 0.9091)) +(: cnet_isa_3d39b61797 (IsA blastogenesis theory) (STV 1.0 0.9091)) +(: cnet_isa_7c6f45cce6 (IsA blastogenesis asexual_reproduction) (STV 1.0 0.9091)) +(: cnet_isa_746c1fa182 (IsA blastoma tumor) (STV 1.0 0.9091)) +(: cnet_isa_8d75301902 (IsA blastomere cell) (STV 1.0 0.9091)) +(: cnet_isa_c8e71885f8 (IsA blastomyce fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_3a3cce44cf (IsA blastomycete fungus) (STV 1.0 0.9091)) +(: cnet_isa_3ff2a817bf (IsA blastomycosis fungal_infection) (STV 1.0 0.9091)) +(: cnet_isa_3cfdfa50bf (IsA blastopore orifice) (STV 1.0 0.9091)) +(: cnet_isa_2ab2701a46 (IsA blastosphere embryo) (STV 1.0 0.9091)) +(: cnet_isa_802a13c059 (IsA blatancy obviousness) (STV 1.0 0.9091)) +(: cnet_isa_b1f54b4794 (IsA blatancy offensiveness) (STV 1.0 0.9091)) +(: cnet_isa_e387c2a2e3 (IsA blather gibberish) (STV 1.0 0.9091)) +(: cnet_isa_2d6cbd5531 (IsA blatta arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_2eda9b0b0a (IsA blattella arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_467dc38e49 (IsA blattidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_bab779307e (IsA blattodea animal_order) (STV 1.0 0.9091)) +(: cnet_isa_909820520a (IsA blaxploitation exploitation) (STV 1.0 0.9091)) +(: cnet_isa_23069f7faa (IsA blaze marking) (STV 1.0 0.9091)) +(: cnet_isa_880bc7b1f0 (IsA blaze fire) (STV 1.0 0.9091)) +(: cnet_isa_3cd1975bbf (IsA blazer jacket) (STV 1.0 0.9091)) +(: cnet_isa_9d512c5fe5 (IsA blazing_star flower) (STV 1.0 0.9091)) +(: cnet_isa_8e6d579b4b (IsA blazing_star wildflower) (STV 1.0 0.9091)) +(: cnet_isa_2350351511 (IsA bleach whitening) (STV 1.0 0.9091)) +(: cnet_isa_d98e9767d2 (IsA bleach white) (STV 1.0 0.9091)) +(: cnet_isa_8a0b5e1681 (IsA bleach_liquor solution) (STV 1.0 0.9091)) +(: cnet_isa_0747d2aa46 (IsA bleacher worker) (STV 1.0 0.9091)) +(: cnet_isa_37094725a9 (IsA bleacher stand) (STV 1.0 0.9091)) +(: cnet_isa_7d0a46ffc7 (IsA bleaching_agent agent) (STV 1.0 0.9091)) +(: cnet_isa_298334bf7c (IsA bleaching_clay mud) (STV 1.0 0.9091)) +(: cnet_isa_9fb2ced89e (IsA bleaching_powder bleaching_agent) (STV 1.0 0.9091)) +(: cnet_isa_216867e979 (IsA bleakness gloom) (STV 1.0 0.9091)) +(: cnet_isa_d105b81496 (IsA bleat cry) (STV 1.0 0.9091)) +(: cnet_isa_88fa6bcc0e (IsA blechnaceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_c486ad82e3 (IsA blechnum fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_433fecc1a3 (IsA bleeding injury) (STV 1.0 0.9091)) +(: cnet_isa_c89be2074f (IsA bleeding_heart sympathizer) (STV 1.0 0.9091)) +(: cnet_isa_255624e25d (IsA bleeding_heart herb) (STV 1.0 0.9091)) +(: cnet_isa_3fd095a5ac (IsA bleeding_tooth neritid) (STV 1.0 0.9091)) +(: cnet_isa_d77f5b53fa (IsA blemish appearance) (STV 1.0 0.9091)) +(: cnet_isa_cf8ded2382 (IsA blend combination) (STV 1.0 0.9091)) +(: cnet_isa_7afc6a1f52 (IsA blend neologism) (STV 1.0 0.9091)) +(: cnet_isa_ef4d65e3aa (IsA blend mix) (STV 1.0 0.9091)) +(: cnet_isa_40b3f82aee (IsA blended_whiskey whiskey) (STV 1.0 0.9091)) +(: cnet_isa_0a6634c6a1 (IsA blender mixer) (STV 1.0 0.9091)) +(: cnet_isa_8f07b833fa (IsA blenheim_spaniel english_toy_spaniel) (STV 1.0 0.9091)) +(: cnet_isa_2cbef4af13 (IsA blenniidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_6c44f8c4d4 (IsA blennioid_fish percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_07c320a18f (IsA blennioidea animal_order) (STV 1.0 0.9091)) +(: cnet_isa_b0c84cf9d4 (IsA blennius fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_bc19a4dcbe (IsA blenny blennioid_fish) (STV 1.0 0.9091)) +(: cnet_isa_5a44f3ebaa (IsA blepharism twitch) (STV 1.0 0.9091)) +(: cnet_isa_a1bc9c4d71 (IsA blepharitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_e7be58ac1e (IsA blepharospasm spasm) (STV 1.0 0.9091)) +(: cnet_isa_d1d7d66a48 (IsA blephilia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_906a899e15 (IsA blessed_event live_birth) (STV 1.0 0.9091)) +(: cnet_isa_2740b03fc0 (IsA blessed_thistle thistle) (STV 1.0 0.9091)) +(: cnet_isa_61ae48d619 (IsA blessed_trinity god_almighty) (STV 1.0 0.9091)) +(: cnet_isa_7b1b127d79 (IsA blessedness happiness) (STV 1.0 0.9091)) +(: cnet_isa_c960dee8cb (IsA blessing prayer) (STV 1.0 0.9091)) +(: cnet_isa_58f27c762d (IsA blessing support) (STV 1.0 0.9091)) +(: cnet_isa_749b5ec186 (IsA blessing good_fortune) (STV 1.0 0.9091)) +(: cnet_isa_ce6ac73ecc (IsA bletia orchid) (STV 1.0 0.9091)) +(: cnet_isa_f8971c7d75 (IsA bletilla monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f4de652d14 (IsA bletilla_striata orchid) (STV 1.0 0.9091)) +(: cnet_isa_528e871e2c (IsA bleu cheese) (STV 1.0 0.9091)) +(: cnet_isa_015b315be1 (IsA bleu_cheese_dressing dressing) (STV 1.0 0.9091)) +(: cnet_isa_640fcbd6e1 (IsA blewit agaric) (STV 1.0 0.9091)) +(: cnet_isa_67f8a63565 (IsA blighia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_014bb6b1f9 (IsA blight devastation) (STV 1.0 0.9091)) +(: cnet_isa_d9c6ba7f08 (IsA blight plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_a49148dfb2 (IsA blight_canker fire_blight) (STV 1.0 0.9091)) +(: cnet_isa_210baaba5f (IsA blighty united_kingdom) (STV 1.0 0.9091)) +(: cnet_isa_a2b844b1c3 (IsA blighty_wound wound) (STV 1.0 0.9091)) +(: cnet_isa_abecbad174 (IsA blimp airship) (STV 1.0 0.9091)) +(: cnet_isa_4b3956fc81 (IsA blimp reactionary) (STV 1.0 0.9091)) +(: cnet_isa_998c593289 (IsA blind protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_2a8584a627 (IsA blind screen) (STV 1.0 0.9091)) +(: cnet_isa_745063ade6 (IsA blind people) (STV 1.0 0.9091)) +(: cnet_isa_3ac6d6af17 (IsA blind_alley course) (STV 1.0 0.9091)) +(: cnet_isa_34df5f8754 (IsA blind_alley thoroughfare) (STV 1.0 0.9091)) +(: cnet_isa_2a83ae6e8f (IsA blind_corner corner) (STV 1.0 0.9091)) +(: cnet_isa_007d720190 (IsA blind_curve bend) (STV 1.0 0.9091)) +(: cnet_isa_bee65e1ae2 (IsA blind_date date) (STV 1.0 0.9091)) +(: cnet_isa_7b4e3744a0 (IsA blind_flying flight) (STV 1.0 0.9091)) +(: cnet_isa_84fddc52ce (IsA blind_person visually_impaired_person) (STV 1.0 0.9091)) +(: cnet_isa_df87df6e90 (IsA blind_side side) (STV 1.0 0.9091)) +(: cnet_isa_178a4b35d3 (IsA blind_snake snake) (STV 1.0 0.9091)) +(: cnet_isa_8f42b0b8ec (IsA blind_spot point) (STV 1.0 0.9091)) +(: cnet_isa_1f99c3f22e (IsA blind_spot topic) (STV 1.0 0.9091)) +(: cnet_isa_cbf1fad45c (IsA blind_stitching sewing) (STV 1.0 0.9091)) +(: cnet_isa_d65cd39baf (IsA blind_trust trust) (STV 1.0 0.9091)) +(: cnet_isa_5c792f09a9 (IsA blindfold cloth_covering) (STV 1.0 0.9091)) +(: cnet_isa_a747fb1f19 (IsA blindman_s_bluff child_s_game) (STV 1.0 0.9091)) +(: cnet_isa_526d74c5ad (IsA blindness visual_impairment) (STV 1.0 0.9091)) +(: cnet_isa_a89bc0cd31 (IsA blindworm anguid_lizard) (STV 1.0 0.9091)) +(: cnet_isa_b338e39b50 (IsA bling_bling jewelry) (STV 1.0 0.9091)) +(: cnet_isa_61bdb99345 (IsA blini pancake) (STV 1.0 0.9091)) +(: cnet_isa_959b091068 (IsA blink reflex) (STV 1.0 0.9091)) +(: cnet_isa_fff517f0c9 (IsA blink_of_eye moment) (STV 1.0 0.9091)) +(: cnet_isa_cbed904c04 (IsA blinker light) (STV 1.0 0.9091)) +(: cnet_isa_ec923f5e91 (IsA blinker visual_signal) (STV 1.0 0.9091)) +(: cnet_isa_a4451a1359 (IsA blink indian_lettuce) (STV 1.0 0.9091)) +(: cnet_isa_6c96059a34 (IsA blintz pancake) (STV 1.0 0.9091)) +(: cnet_isa_53b8c72e1b (IsA blip radar_echo) (STV 1.0 0.9091)) +(: cnet_isa_0579636fd5 (IsA blip shock) (STV 1.0 0.9091)) +(: cnet_isa_5b6a18efeb (IsA bliss elation) (STV 1.0 0.9091)) +(: cnet_isa_415e69094b (IsA blissus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_b202d90adb (IsA blister plant_process) (STV 1.0 0.9091)) +(: cnet_isa_f96b38a137 (IsA blister vesicle) (STV 1.0 0.9091)) +(: cnet_isa_a607317d36 (IsA blister defect) (STV 1.0 0.9091)) +(: cnet_isa_6a0a7c44a2 (IsA blister_beetle beetle) (STV 1.0 0.9091)) +(: cnet_isa_1cfe032e85 (IsA blister_blight blight) (STV 1.0 0.9091)) +(: cnet_isa_166225c4ba (IsA blister_copper copper) (STV 1.0 0.9091)) +(: cnet_isa_39bf4e2f4f (IsA blister_pack packaging) (STV 1.0 0.9091)) +(: cnet_isa_3074d8c198 (IsA blister_rust rust) (STV 1.0 0.9091)) +(: cnet_isa_9ce5dd4213 (IsA blitz attack) (STV 1.0 0.9091)) +(: cnet_isa_e523b0d1a2 (IsA blizzard storm) (STV 1.0 0.9091)) +(: cnet_isa_78519c4269 (IsA bloat swelling) (STV 1.0 0.9091)) +(: cnet_isa_add74824a3 (IsA bloater herring) (STV 1.0 0.9091)) +(: cnet_isa_170c7f7d21 (IsA blob amorphous_shape) (STV 1.0 0.9091)) +(: cnet_isa_0bfdbc911d (IsA bloc alliance) (STV 1.0 0.9091)) +(: cnet_isa_6d7c10e09c (IsA block cube) (STV 1.0 0.9091)) +(: cnet_isa_cc3223c509 (IsA block artifact) (STV 1.0 0.9091)) +(: cnet_isa_0c78d4692b (IsA block housing) (STV 1.0 0.9091)) +(: cnet_isa_382babf6d5 (IsA block inability) (STV 1.0 0.9091)) +(: cnet_isa_1ccca05a28 (IsA block computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_9af8c7fab8 (IsA block collection) (STV 1.0 0.9091)) +(: cnet_isa_3574964280 (IsA block area) (STV 1.0 0.9091)) +(: cnet_isa_f8bb75d3b5 (IsA block solid) (STV 1.0 0.9091)) +(: cnet_isa_1d303436d1 (IsA block_and_tackle hoist) (STV 1.0 0.9091)) +(: cnet_isa_2454622d82 (IsA block_diagram diagram) (STV 1.0 0.9091)) +(: cnet_isa_1b618dcd9f (IsA block_grant grant) (STV 1.0 0.9091)) +(: cnet_isa_7a82d8fb7f (IsA block_letter letter) (STV 1.0 0.9091)) +(: cnet_isa_74dc5ea4b6 (IsA block_plane plane) (STV 1.0 0.9091)) +(: cnet_isa_6c63397e25 (IsA block_vote vote) (STV 1.0 0.9091)) +(: cnet_isa_031888867f (IsA blockade obstruction) (STV 1.0 0.9091)) +(: cnet_isa_4621c3a72e (IsA blockade military_action) (STV 1.0 0.9091)) +(: cnet_isa_fde23f9910 (IsA blockade_runner ship) (STV 1.0 0.9091)) +(: cnet_isa_f043a57cb9 (IsA blockage obstruction) (STV 1.0 0.9091)) +(: cnet_isa_80a2cd9731 (IsA blockbuster hit) (STV 1.0 0.9091)) +(: cnet_isa_f2fcc2e362 (IsA blockbuster general_purpose_bomb) (STV 1.0 0.9091)) +(: cnet_isa_2b9befe6cd (IsA blocker medicine) (STV 1.0 0.9091)) +(: cnet_isa_8ec09ba9e5 (IsA blocker football_player) (STV 1.0 0.9091)) +(: cnet_isa_ab38b33983 (IsA blockhouse stronghold) (STV 1.0 0.9091)) +(: cnet_isa_f0cc8fb95b (IsA blocking obstruction) (STV 1.0 0.9091)) +(: cnet_isa_e23a689e42 (IsA blogger person) (STV 1.0 0.9091)) +(: cnet_isa_cbda0444d3 (IsA blolly shrub) (STV 1.0 0.9091)) +(: cnet_isa_3e2020e1d9 (IsA blond person) (STV 1.0 0.9091)) +(: cnet_isa_d1fac1fbb3 (IsA blonde chromatic_color) (STV 1.0 0.9091)) +(: cnet_isa_b6d65eb0c3 (IsA blood bodily_fluid) (STV 1.0 0.9454)) +(: cnet_isa_17323f6638 (IsA blood disposition) (STV 1.0 0.9091)) +(: cnet_isa_248a5ff801 (IsA blood people) (STV 1.0 0.9091)) +(: cnet_isa_ceb8c7dc70 (IsA blood liquid_body_substance) (STV 1.0 0.9091)) +(: cnet_isa_7593b412d5 (IsA blood_agar agar) (STV 1.0 0.9091)) +(: cnet_isa_82735aad81 (IsA blood_bank bank) (STV 1.0 0.9091)) +(: cnet_isa_76681b9bb9 (IsA blood_blister blister) (STV 1.0 0.9091)) +(: cnet_isa_371214ffc9 (IsA blood_brain_barrier barrier) (STV 1.0 0.9091)) +(: cnet_isa_2507e81dd6 (IsA blood_brother ally) (STV 1.0 0.9091)) +(: cnet_isa_29baed6505 (IsA blood_brotherhood friendship) (STV 1.0 0.9091)) +(: cnet_isa_d71496af9f (IsA blood_cell somatic_cell) (STV 1.0 0.9091)) +(: cnet_isa_25d41ce323 (IsA blood_clam bivalve) (STV 1.0 0.9091)) +(: cnet_isa_e215da4e95 (IsA blood_clot blood) (STV 1.0 0.9091)) +(: cnet_isa_5c419f94e1 (IsA blood_coagulation curdling) (STV 1.0 0.9091)) +(: cnet_isa_55777503a6 (IsA blood_count count) (STV 1.0 0.9091)) +(: cnet_isa_5df76f9f10 (IsA blood_cup discomycete) (STV 1.0 0.9091)) +(: cnet_isa_5c0f870d1f (IsA blood_disease blood_dyscrasia) (STV 1.0 0.9091)) +(: cnet_isa_ad91aa211f (IsA blood_donor donor) (STV 1.0 0.9091)) +(: cnet_isa_9bfcf7187e (IsA blood_dyscrasia dyscrasia) (STV 1.0 0.9091)) +(: cnet_isa_d40696a66e (IsA blood_extravasation bleeding) (STV 1.0 0.9091)) +(: cnet_isa_e7b8c8da1a (IsA blood_extravasation extravasation) (STV 1.0 0.9091)) +(: cnet_isa_56b6bcd451 (IsA blood_flower milkweed) (STV 1.0 0.9091)) +(: cnet_isa_852448d5d4 (IsA blood_group blood) (STV 1.0 0.9091)) +(: cnet_isa_566c0dea0f (IsA blood_lily bulbous_plant) (STV 1.0 0.9091)) +(: cnet_isa_c22888fcd9 (IsA blood_meal feed) (STV 1.0 0.9091)) +(: cnet_isa_ac4ee3a454 (IsA blood_money compensation) (STV 1.0 0.9091)) +(: cnet_isa_44ce7ebfd6 (IsA blood_money payment) (STV 1.0 0.9091)) +(: cnet_isa_34309a529a (IsA blood_money reward) (STV 1.0 0.9091)) +(: cnet_isa_521848d82e (IsA blood_oxygenation_level_dependent_functional_magnetic_resonance_imaging functional_magnetic_resonance_imaging) (STV 1.0 0.9091)) +(: cnet_isa_b2f022789a (IsA blood_plasma extracellular_fluid) (STV 1.0 0.9091)) +(: cnet_isa_c52e899bf7 (IsA blood_poisoning blood_disease) (STV 1.0 0.9091)) +(: cnet_isa_9e6fcd6bc7 (IsA blood_poisoning sepsis) (STV 1.0 0.9091)) +(: cnet_isa_1502186410 (IsA blood_pressure pressure) (STV 1.0 0.9091)) +(: cnet_isa_40bfe9e124 (IsA blood_pressure vital_sign) (STV 1.0 0.9091)) +(: cnet_isa_f693089379 (IsA blood_relation relative) (STV 1.0 0.9091)) +(: cnet_isa_8985b9c140 (IsA blood_sausage sausage) (STV 1.0 0.9091)) +(: cnet_isa_67db12aa8a (IsA blood_spavin spavin) (STV 1.0 0.9091)) +(: cnet_isa_9580bcea8b (IsA blood_sport sport) (STV 1.0 0.9091)) +(: cnet_isa_2aa4fdffd2 (IsA blood_sugar glucose) (STV 1.0 0.9091)) +(: cnet_isa_888f3a24e4 (IsA blood_test biopsy) (STV 1.0 0.9091)) +(: cnet_isa_ef7eea7701 (IsA blood_typing diagnosis) (STV 1.0 0.9091)) +(: cnet_isa_dc768f0a69 (IsA blood_vessel vessel) (STV 1.0 0.9091)) +(: cnet_isa_e2bda1804c (IsA bloodbath slaughter) (STV 1.0 0.9091)) +(: cnet_isa_d8240b64ef (IsA bloodberry houseplant) (STV 1.0 0.9091)) +(: cnet_isa_a041b8ba61 (IsA bloodguilt guilt) (STV 1.0 0.9091)) +(: cnet_isa_bdeab79d9d (IsA bloodhound hound) (STV 1.0 0.9091)) +(: cnet_isa_c802dbca01 (IsA bloodiness physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_d0b0fe1c79 (IsA bloodleaf subshrub) (STV 1.0 0.9091)) +(: cnet_isa_417b1cd398 (IsA bloodletting medical_care) (STV 1.0 0.9091)) +(: cnet_isa_45dc24c2f6 (IsA bloodlust desire) (STV 1.0 0.9091)) +(: cnet_isa_1a3d3b205d (IsA bloodmobile motor_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_7e50b728aa (IsA bloodroot herb) (STV 1.0 0.9091)) +(: cnet_isa_40c0fc53f5 (IsA bloodshed murder) (STV 1.0 0.9091)) +(: cnet_isa_8ae5f2cfe9 (IsA bloodstain stain) (STV 1.0 0.9091)) +(: cnet_isa_2587f476e8 (IsA bloodstock breed) (STV 1.0 0.9091)) +(: cnet_isa_97b67c107b (IsA bloodstone chalcedony) (STV 1.0 0.9091)) +(: cnet_isa_f1ebfd7049 (IsA bloodstream blood) (STV 1.0 0.9091)) +(: cnet_isa_9c2e1f04d3 (IsA bloodthirstiness disposition) (STV 1.0 0.9091)) +(: cnet_isa_e3af9d9faa (IsA bloodwood_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_918a488b08 (IsA bloodworm polychaete) (STV 1.0 0.9091)) +(: cnet_isa_cae2317800 (IsA bloodwort herb) (STV 1.0 0.9091)) +(: cnet_isa_2ddca84b17 (IsA bloody_mary cocktail) (STV 1.0 0.9091)) +(: cnet_isa_fb774cff13 (IsA bloom good_health) (STV 1.0 0.9091)) +(: cnet_isa_9347f5c8e6 (IsA bloom time_of_life) (STV 1.0 0.9091)) +(: cnet_isa_5c0e107e81 (IsA bloomer flower) (STV 1.0 0.9091)) +(: cnet_isa_b215cdee2d (IsA bloomeria liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8fc310bef8 (IsA blooming organic_process) (STV 1.0 0.9091)) +(: cnet_isa_5486e7b743 (IsA bloomsbury_group clique) (STV 1.0 0.9091)) +(: cnet_isa_1fcb725e4f (IsA blossoming growth) (STV 1.0 0.9091)) +(: cnet_isa_9bbec53577 (IsA blot mistake) (STV 1.0 0.9091)) +(: cnet_isa_7079893972 (IsA blotch smudge) (STV 1.0 0.9091)) +(: cnet_isa_4e5c89b037 (IsA blotter written_record) (STV 1.0 0.9091)) +(: cnet_isa_9aa3e123e1 (IsA blotting_paper paper) (STV 1.0 0.9091)) +(: cnet_isa_13bcd324f1 (IsA blouse top) (STV 1.0 0.9091)) +(: cnet_isa_148fb60126 (IsA blow exhalation) (STV 1.0 0.9091)) +(: cnet_isa_84486947a8 (IsA blow stroke) (STV 1.0 0.9091)) +(: cnet_isa_547bfbd422 (IsA blow_gas gas) (STV 1.0 0.9091)) +(: cnet_isa_3899869223 (IsA blowback misinformation) (STV 1.0 0.9091)) +(: cnet_isa_133493a44b (IsA blowback explosion) (STV 1.0 0.9091)) +(: cnet_isa_c601623234 (IsA blower device) (STV 1.0 0.9091)) +(: cnet_isa_ba8c552c00 (IsA blowfish saltwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_3182d4324b (IsA blowfly fly) (STV 1.0 0.9091)) +(: cnet_isa_41267da5de (IsA blowgun tube) (STV 1.0 0.9091)) +(: cnet_isa_2b36a5fd27 (IsA blowhole spiracle) (STV 1.0 0.9091)) +(: cnet_isa_78481225c6 (IsA blowing processing) (STV 1.0 0.9091)) +(: cnet_isa_327044d073 (IsA blowout malfunction) (STV 1.0 0.9091)) +(: cnet_isa_ee1b7ba571 (IsA blowtorch burner) (STV 1.0 0.9091)) +(: cnet_isa_33042de2ca (IsA blowtube tube) (STV 1.0 0.9091)) +(: cnet_isa_1148c93584 (IsA blubber animal_oil) (STV 1.0 0.9091)) +(: cnet_isa_eb60d9237a (IsA blubberer weeper) (STV 1.0 0.9091)) +(: cnet_isa_5d9a481f44 (IsA blucher shoe) (STV 1.0 0.9091)) +(: cnet_isa_8aea5df79a (IsA bludgeon club) (STV 1.0 0.9091)) +(: cnet_isa_8de34a262f (IsA bludgeoner attacker) (STV 1.0 0.9091)) +(: cnet_isa_46a287014c (IsA blue color) (STV 1.0 0.9719)) +(: cnet_isa_4fdc881c74 (IsA blue colour) (STV 1.0 0.9572)) +(: cnet_isa_9948331d73 (IsA blue mood) (STV 1.0 0.9091)) +(: cnet_isa_18e3de1778 (IsA blue primary_color) (STV 1.0 0.9091)) +(: cnet_isa_e3cd5a8392 (IsA blue uncommon_color_for_food) (STV 1.0 0.9091)) +(: cnet_isa_7fd4ba8ce4 (IsA blue lycaenid) (STV 1.0 0.9091)) +(: cnet_isa_ba747e1f0c (IsA blue clothing) (STV 1.0 0.9091)) +(: cnet_isa_633fd98b52 (IsA blue chromatic_color) (STV 1.0 0.9091)) +(: cnet_isa_f039337eec (IsA blue organization) (STV 1.0 0.9091)) +(: cnet_isa_e82705c878 (IsA blue_ash ash) (STV 1.0 0.9091)) +(: cnet_isa_84f0e47411 (IsA blue_baby baby) (STV 1.0 0.9091)) +(: cnet_isa_4b00238213 (IsA blue_book booklet) (STV 1.0 0.9091)) +(: cnet_isa_aa15a8e391 (IsA blue_book directory) (STV 1.0 0.9091)) +(: cnet_isa_aff2440883 (IsA blue_book report) (STV 1.0 0.9091)) +(: cnet_isa_0c4cbcff63 (IsA blue_catfish channel_catfish) (STV 1.0 0.9091)) +(: cnet_isa_baa1fd51c1 (IsA blue_cheese_dressing dressing) (STV 1.0 0.9091)) +(: cnet_isa_63822420ba (IsA blue_chip chip) (STV 1.0 0.9091)) +(: cnet_isa_d6bc017d5d (IsA blue_chip common_stock) (STV 1.0 0.9091)) +(: cnet_isa_34d5eed68d (IsA blue_cohosh shrub) (STV 1.0 0.9091)) +(: cnet_isa_8e640ae74f (IsA blue_columbine columbine) (STV 1.0 0.9091)) +(: cnet_isa_7ba82e3285 (IsA blue_crab swimming_crab) (STV 1.0 0.9091)) +(: cnet_isa_8313cc8de5 (IsA blue_crab crab) (STV 1.0 0.9091)) +(: cnet_isa_9ee89ca202 (IsA blue_curl subshrub) (STV 1.0 0.9091)) +(: cnet_isa_ee27c75771 (IsA blue_daisy flower) (STV 1.0 0.9091)) +(: cnet_isa_15c9e7d680 (IsA blue_elder elder) (STV 1.0 0.9091)) +(: cnet_isa_7ec7d22251 (IsA blue_eyed_african_daisy flower) (STV 1.0 0.9091)) +(: cnet_isa_077894a5e3 (IsA blue_eyed_grass iridaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_2dc9cf7d60 (IsA blue_eyed_mary wildflower) (STV 1.0 0.9091)) +(: cnet_isa_db88d4dadb (IsA blue_false_indigo wild_indigo) (STV 1.0 0.9091)) +(: cnet_isa_f6071f516d (IsA blue_flag iris) (STV 1.0 0.9091)) +(: cnet_isa_6fbf00d79b (IsA blue_fleabane fleabane) (STV 1.0 0.9091)) +(: cnet_isa_212676ecb5 (IsA blue_fox arctic_fox) (STV 1.0 0.9091)) +(: cnet_isa_58d04e6ff8 (IsA blue_goose goose) (STV 1.0 0.9091)) +(: cnet_isa_2083cfcb9d (IsA blue_grama grama) (STV 1.0 0.9091)) +(: cnet_isa_a7634d58bf (IsA blue_gum eucalyptus) (STV 1.0 0.9091)) +(: cnet_isa_9efbf46aa1 (IsA blue_headed_vireo vireo) (STV 1.0 0.9091)) +(: cnet_isa_ebdc98ab45 (IsA blue_jasmine clematis) (STV 1.0 0.9091)) +(: cnet_isa_ff217ea636 (IsA blue_jay new_world_jay) (STV 1.0 0.9091)) +(: cnet_isa_df73306573 (IsA blue_law law) (STV 1.0 0.9091)) +(: cnet_isa_a6234ad1e1 (IsA blue_lotus water_lily) (STV 1.0 0.9091)) +(: cnet_isa_e4caa46381 (IsA blue_marlin marlin) (STV 1.0 0.9091)) +(: cnet_isa_c82a107557 (IsA blue_mockingbird oscine) (STV 1.0 0.9091)) +(: cnet_isa_85bf4f092b (IsA blue_mold_fungus downy_mildew) (STV 1.0 0.9091)) +(: cnet_isa_4855a3679b (IsA blue_moon long_time) (STV 1.0 0.9091)) +(: cnet_isa_2a976993e5 (IsA blue_mountain_tea goldenrod) (STV 1.0 0.9091)) +(: cnet_isa_d70d1f6e1e (IsA blue_murder cry) (STV 1.0 0.9091)) +(: cnet_isa_3a5664a109 (IsA blue_note note) (STV 1.0 0.9091)) +(: cnet_isa_35b185c3dd (IsA blue_orchid vanda) (STV 1.0 0.9091)) +(: cnet_isa_f667b2b0ba (IsA blue_pea vine) (STV 1.0 0.9091)) +(: cnet_isa_5e79283c7a (IsA blue_peafowl peafowl) (STV 1.0 0.9091)) +(: cnet_isa_10b21c9c00 (IsA blue_peter code_flag) (STV 1.0 0.9091)) +(: cnet_isa_551aca08f6 (IsA blue_pike walleye) (STV 1.0 0.9091)) +(: cnet_isa_6c779a7cb2 (IsA blue_pimpernel herb) (STV 1.0 0.9091)) +(: cnet_isa_024eded536 (IsA blue_point_siamese siamese_cat) (STV 1.0 0.9091)) +(: cnet_isa_0f4298fc4f (IsA blue_poppy poppy) (STV 1.0 0.9091)) +(: cnet_isa_db3be2a676 (IsA blue_racer blacksnake) (STV 1.0 0.9091)) +(: cnet_isa_6cf1c0552e (IsA blue_ribbon badge) (STV 1.0 0.9091)) +(: cnet_isa_6d99d8818c (IsA blue_ribbon_commission committee) (STV 1.0 0.9091)) +(: cnet_isa_37a99503c3 (IsA blue_sage sage) (STV 1.0 0.9091)) +(: cnet_isa_9f8cf454ea (IsA blue_shark requiem_shark) (STV 1.0 0.9091)) +(: cnet_isa_971e3f0c57 (IsA blue_sky sky) (STV 1.0 0.9091)) +(: cnet_isa_f9fab307f0 (IsA blue_sky_law law) (STV 1.0 0.9091)) +(: cnet_isa_5b11ea9f53 (IsA blue_star subshrub) (STV 1.0 0.9091)) +(: cnet_isa_7f71ccc825 (IsA blue_star_juniper plant) (STV 1.0 0.9091)) +(: cnet_isa_ef49ccb18a (IsA blue_succory catananche) (STV 1.0 0.9091)) +(: cnet_isa_a9fdbcbab2 (IsA blue_tip_juniper plant) (STV 1.0 0.9091)) +(: cnet_isa_aa821a0722 (IsA blue_tit titmouse) (STV 1.0 0.9091)) +(: cnet_isa_8110f6342d (IsA blue_toadflax toadflax) (STV 1.0 0.9091)) +(: cnet_isa_35b51284ac (IsA blue_vitriol copper_sulfate) (STV 1.0 0.9091)) +(: cnet_isa_13fe23bd96 (IsA blue_wall_of_silence cover_up) (STV 1.0 0.9091)) +(: cnet_isa_7b68f9e53b (IsA blue_whale baleen_whale) (STV 1.0 0.9091)) +(: cnet_isa_f8820bb104 (IsA blueberry berry) (STV 1.0 0.9091)) +(: cnet_isa_e206a9e9d0 (IsA blueberry shrub) (STV 1.0 0.9091)) +(: cnet_isa_bfee8575c7 (IsA blueberry_pie pie) (STV 1.0 0.9091)) +(: cnet_isa_9b38a20c02 (IsA blueberry_yogurt yogurt) (STV 1.0 0.9091)) +(: cnet_isa_366ff9e056 (IsA bluebird thrush) (STV 1.0 0.9091)) +(: cnet_isa_b3181336df (IsA bluebonnet lupine) (STV 1.0 0.9091)) +(: cnet_isa_65263d47af (IsA bluebottle blowfly) (STV 1.0 0.9091)) +(: cnet_isa_fc7097ba3f (IsA bluecoat person) (STV 1.0 0.9091)) +(: cnet_isa_3c32cd89fd (IsA bluefin tuna) (STV 1.0 0.9091)) +(: cnet_isa_bc9d982aa3 (IsA bluefish percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_edc64c6a2c (IsA bluefish saltwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_78ad610ab2 (IsA bluegill freshwater_bream) (STV 1.0 0.9091)) +(: cnet_isa_52ccd2ece3 (IsA bluegrass country_music) (STV 1.0 0.9091)) +(: cnet_isa_b67dc34391 (IsA bluegrass grass) (STV 1.0 0.9091)) +(: cnet_isa_e18e2d919c (IsA bluegrass_stater american) (STV 1.0 0.9091)) +(: cnet_isa_ddbf8d674a (IsA bluehead wrasse) (STV 1.0 0.9091)) +(: cnet_isa_ed2b471fa1 (IsA bluejack_oak oak) (STV 1.0 0.9091)) +(: cnet_isa_b50fd031bf (IsA bluejacket serviceman) (STV 1.0 0.9091)) +(: cnet_isa_42603f7e64 (IsA bluenose canadian) (STV 1.0 0.9091)) +(: cnet_isa_263a1acaba (IsA bluepoint oyster) (STV 1.0 0.9091)) +(: cnet_isa_e50179a556 (IsA bluepoint huitre) (STV 1.0 0.9091)) +(: cnet_isa_a13721b484 (IsA blueprint picture) (STV 1.0 0.9091)) +(: cnet_isa_530073e096 (IsA blueprint plan) (STV 1.0 0.9091)) +(: cnet_isa_484d1426d6 (IsA blueprint_paper paper) (STV 1.0 0.9091)) +(: cnet_isa_c3a9bbe2af (IsA blue black_music) (STV 1.0 0.9091)) +(: cnet_isa_dcbd0942fe (IsA blue folk_song) (STV 1.0 0.9091)) +(: cnet_isa_c68c1297f7 (IsA blue depression) (STV 1.0 0.9091)) +(: cnet_isa_1fa8babe5d (IsA bluestem grass) (STV 1.0 0.9091)) +(: cnet_isa_c460c8a73a (IsA bluestocking woman) (STV 1.0 0.9091)) +(: cnet_isa_eb3e422931 (IsA bluestone sandstone) (STV 1.0 0.9091)) +(: cnet_isa_4d87f47706 (IsA bluethroat thrush) (STV 1.0 0.9091)) +(: cnet_isa_555f6d33c7 (IsA bluethroat_pikeblenny pikeblenny) (STV 1.0 0.9091)) +(: cnet_isa_e838485380 (IsA bluetick hound) (STV 1.0 0.9091)) +(: cnet_isa_a9ec595b1b (IsA bluetongue catarrhal_fever) (STV 1.0 0.9091)) +(: cnet_isa_aa08c240d5 (IsA blueweed herb) (STV 1.0 0.9091)) +(: cnet_isa_25622aa5f2 (IsA bluewing teal) (STV 1.0 0.9091)) +(: cnet_isa_61fd93b5c4 (IsA bluff deception) (STV 1.0 0.9091)) +(: cnet_isa_a7f5261441 (IsA bluff pretense) (STV 1.0 0.9091)) +(: cnet_isa_092f7c3db7 (IsA bluff bank) (STV 1.0 0.9091)) +(: cnet_isa_c122073e50 (IsA bluffer deceiver) (STV 1.0 0.9091)) +(: cnet_isa_b35d0f37ea (IsA bluffness frankness) (STV 1.0 0.9091)) +(: cnet_isa_9c4d7a50f6 (IsA bluing chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_f30c9ca3a5 (IsA bluing dye) (STV 1.0 0.9091)) +(: cnet_isa_d2482e7a09 (IsA bluish_green green) (STV 1.0 0.9091)) +(: cnet_isa_b995bcdd5c (IsA blunder mistake) (STV 1.0 0.9091)) +(: cnet_isa_b4df211964 (IsA blunderbuss musket) (STV 1.0 0.9091)) +(: cnet_isa_52e3d18031 (IsA blunt_file file) (STV 1.0 0.9091)) +(: cnet_isa_e533fde768 (IsA blunt_trauma injury) (STV 1.0 0.9091)) +(: cnet_isa_058b210f99 (IsA bluntness inconsideration) (STV 1.0 0.9091)) +(: cnet_isa_cf64eb3cbd (IsA blur representation) (STV 1.0 0.9091)) +(: cnet_isa_af50a8327a (IsA blush reflex) (STV 1.0 0.9091)) +(: cnet_isa_4229ee1ec2 (IsA blush_wine wine) (STV 1.0 0.9091)) +(: cnet_isa_3bc79d3b1d (IsA blushing_mushroom agaric) (STV 1.0 0.9091)) +(: cnet_isa_d19e603998 (IsA bluster gust) (STV 1.0 0.9091)) +(: cnet_isa_ecce7c075f (IsA bluster confusion) (STV 1.0 0.9091)) +(: cnet_isa_dc670f2809 (IsA bmw car) (STV 1.0 0.9339)) +(: cnet_isa_60600a0df0 (IsA boa constrictor) (STV 1.0 0.9091)) +(: cnet_isa_3b0a866018 (IsA boa_constrictor boa) (STV 1.0 0.9091)) +(: cnet_isa_b8c7acf479 (IsA boar swine) (STV 1.0 0.9091)) +(: cnet_isa_a04b3e5201 (IsA board flat_piece_of_wood) (STV 1.0 0.9091)) +(: cnet_isa_9c289b1759 (IsA board sheet) (STV 1.0 0.9091)) +(: cnet_isa_2db28a6183 (IsA board surface) (STV 1.0 0.9091)) +(: cnet_isa_f0882cd57f (IsA board fare) (STV 1.0 0.9091)) +(: cnet_isa_9cd4fdf6a5 (IsA board committee) (STV 1.0 0.9091)) +(: cnet_isa_8e21db4731 (IsA board lumber) (STV 1.0 0.9091)) +(: cnet_isa_7a9bfa74c2 (IsA board_foot volume_unit) (STV 1.0 0.9091)) +(: cnet_isa_7431deb237 (IsA board_game parlor_game) (STV 1.0 0.9091)) +(: cnet_isa_7b5f8d3322 (IsA board_measure system_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_935c8b39f6 (IsA board_meeting meeting) (STV 1.0 0.9091)) +(: cnet_isa_5da06e5ef7 (IsA board_member member) (STV 1.0 0.9091)) +(: cnet_isa_f298309887 (IsA board_of_regent governing_board) (STV 1.0 0.9091)) +(: cnet_isa_617b8b9675 (IsA board_of_selectmen board) (STV 1.0 0.9091)) +(: cnet_isa_c37f410ba1 (IsA board_of_trustee governing_board) (STV 1.0 0.9091)) +(: cnet_isa_13423b45d7 (IsA board_rule measuring_stick) (STV 1.0 0.9091)) +(: cnet_isa_39db9c986a (IsA boarder intruder) (STV 1.0 0.9091)) +(: cnet_isa_bb425ed956 (IsA boarder schoolchild) (STV 1.0 0.9091)) +(: cnet_isa_e9cda6483e (IsA boarding departure) (STV 1.0 0.9091)) +(: cnet_isa_eb1f73459a (IsA boarding structure) (STV 1.0 0.9091)) +(: cnet_isa_e6b6acc16b (IsA boarding_card pass) (STV 1.0 0.9091)) +(: cnet_isa_1fbe206aa4 (IsA boarding_house house) (STV 1.0 0.9091)) +(: cnet_isa_6230c21c87 (IsA boarding_school private_school) (STV 1.0 0.9091)) +(: cnet_isa_51fe61a5b8 (IsA boardroom room) (STV 1.0 0.9091)) +(: cnet_isa_0ce7b71528 (IsA board boarding) (STV 1.0 0.9091)) +(: cnet_isa_b8e09487dc (IsA board theater_stage) (STV 1.0 0.9091)) +(: cnet_isa_bb4ed4bf65 (IsA boardwalk walk) (STV 1.0 0.9091)) +(: cnet_isa_ad4edc4c75 (IsA boarfish spiny_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_b96dcfb9c3 (IsA boarhound hound) (STV 1.0 0.9091)) +(: cnet_isa_397c8d0d87 (IsA boast speech_act) (STV 1.0 0.9091)) +(: cnet_isa_7d6287bac1 (IsA boastfulness conceit) (STV 1.0 0.9091)) +(: cnet_isa_8fc4dcaa6c (IsA boat form_of_transportation) (STV 1.0 0.9524)) +(: cnet_isa_4a05efc236 (IsA boat mean_of_transport) (STV 1.0 0.9091)) +(: cnet_isa_3dc1bd5503 (IsA boat vehicle) (STV 1.0 0.9091)) +(: cnet_isa_0694280c96 (IsA boat vessel) (STV 1.0 0.9091)) +(: cnet_isa_4f0a1d3d36 (IsA boat_deck upper_deck) (STV 1.0 0.9091)) +(: cnet_isa_0e96c905b1 (IsA boat_hook hook) (STV 1.0 0.9091)) +(: cnet_isa_d2793ff303 (IsA boat_race race) (STV 1.0 0.9091)) +(: cnet_isa_eb5b408cb6 (IsA boat_racing racing) (STV 1.0 0.9091)) +(: cnet_isa_73060db122 (IsA boat_train train) (STV 1.0 0.9091)) +(: cnet_isa_07a7c9b07e (IsA boat_whistle whistle) (STV 1.0 0.9091)) +(: cnet_isa_ac5395ad27 (IsA boatbill heron) (STV 1.0 0.9091)) +(: cnet_isa_702f8b6606 (IsA boatbuilder builder) (STV 1.0 0.9091)) +(: cnet_isa_0ad8ec01c3 (IsA boater hat) (STV 1.0 0.9091)) +(: cnet_isa_fc0b26f06e (IsA boathouse shed) (STV 1.0 0.9091)) +(: cnet_isa_73ab390226 (IsA boating activity) (STV 1.0 0.9091)) +(: cnet_isa_f2fa024d64 (IsA boating sport_as_skiing) (STV 1.0 0.9091)) +(: cnet_isa_783e897bcb (IsA boating water_travel) (STV 1.0 0.9091)) +(: cnet_isa_dcb327017b (IsA boatload large_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_addb106681 (IsA boatman worker) (STV 1.0 0.9091)) +(: cnet_isa_3b3cc8f3b2 (IsA boatmanship seamanship) (STV 1.0 0.9091)) +(: cnet_isa_f09ea89de5 (IsA boatswain_s_chair seat) (STV 1.0 0.9091)) +(: cnet_isa_500f93a9ba (IsA boatswain mariner) (STV 1.0 0.9091)) +(: cnet_isa_9e3ade4666 (IsA boatyard place) (STV 1.0 0.9091)) +(: cnet_isa_b5350de58d (IsA bob nickname_for_robert) (STV 1.0 0.9339)) +(: cnet_isa_90aa6a797d (IsA bob police_officer) (STV 1.0 0.9091)) +(: cnet_isa_f32b60def3 (IsA bob inclination) (STV 1.0 0.9091)) +(: cnet_isa_39f9bbfaaf (IsA bob float) (STV 1.0 0.9091)) +(: cnet_isa_90d29d6fc2 (IsA bob weight) (STV 1.0 0.9091)) +(: cnet_isa_ae9d84bccf (IsA bob hairdo) (STV 1.0 0.9091)) +(: cnet_isa_ec49e18ac7 (IsA bobbin winder) (STV 1.0 0.9091)) +(: cnet_isa_c549fa7980 (IsA bobble blunder) (STV 1.0 0.9091)) +(: cnet_isa_4469278ff2 (IsA bobby policeman) (STV 1.0 0.9091)) +(: cnet_isa_b4e80c444b (IsA bobby_pin hairpin) (STV 1.0 0.9091)) +(: cnet_isa_6ca3ee5090 (IsA bobbysoxer lass) (STV 1.0 0.9091)) +(: cnet_isa_0bcce1608a (IsA bobcat lynx) (STV 1.0 0.9091)) +(: cnet_isa_b58e3a0596 (IsA bobolink new_world_oriole) (STV 1.0 0.9091)) +(: cnet_isa_d9ddc16de3 (IsA bobsled sled) (STV 1.0 0.9091)) +(: cnet_isa_2834920efb (IsA bobsledding sledding) (STV 1.0 0.9091)) +(: cnet_isa_74f4f1c082 (IsA bobtail tail) (STV 1.0 0.9091)) +(: cnet_isa_3e8cde6e5d (IsA bobwhite quail) (STV 1.0 0.9091)) +(: cnet_isa_15a132e8f5 (IsA bocce bowling) (STV 1.0 0.9091)) +(: cnet_isa_eb7ac1b37f (IsA bocce_ball ball) (STV 1.0 0.9091)) +(: cnet_isa_df195ceb0a (IsA bocconia angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_5465359893 (IsA bock lager) (STV 1.0 0.9091)) +(: cnet_isa_be24d9b5c2 (IsA bodega shop) (STV 1.0 0.9091)) +(: cnet_isa_eda11d4100 (IsA bodice top) (STV 1.0 0.9091)) +(: cnet_isa_e9bc41c87a (IsA bodice_ripper romance) (STV 1.0 0.9091)) +(: cnet_isa_952cc60e04 (IsA bodily_process organic_process) (STV 1.0 0.9091)) +(: cnet_isa_fad5501b6b (IsA bodily_property property) (STV 1.0 0.9091)) +(: cnet_isa_c9e96d7d2a (IsA bodkin hairpin) (STV 1.0 0.9091)) +(: cnet_isa_6c4e7b3b91 (IsA bodkin hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_026446f006 (IsA bodo_garo kamarupan) (STV 1.0 0.9091)) +(: cnet_isa_90a34f458b (IsA body natural_object) (STV 1.0 0.9091)) +(: cnet_isa_107c021d82 (IsA body structure) (STV 1.0 0.9091)) +(: cnet_isa_7df3cf9357 (IsA body mass) (STV 1.0 0.9091)) +(: cnet_isa_f6698f038f (IsA body message) (STV 1.0 0.9091)) +(: cnet_isa_357a943f18 (IsA body social_group) (STV 1.0 0.9091)) +(: cnet_isa_080b5fd314 (IsA body system) (STV 1.0 0.9091)) +(: cnet_isa_ca86621c46 (IsA body_armor armor) (STV 1.0 0.9091)) +(: cnet_isa_064550cde8 (IsA body_bag bag) (STV 1.0 0.9091)) +(: cnet_isa_da8e0b6f29 (IsA body_count count) (STV 1.0 0.9091)) +(: cnet_isa_8b833640c3 (IsA body_covering covering) (STV 1.0 0.9091)) +(: cnet_isa_9990c79e4f (IsA body_english motion) (STV 1.0 0.9091)) +(: cnet_isa_7b6b10f5f5 (IsA body_hair hair) (STV 1.0 0.9091)) +(: cnet_isa_84b2742c73 (IsA body_image idea) (STV 1.0 0.9091)) +(: cnet_isa_834b4a9910 (IsA body_language visual_communication) (STV 1.0 0.9091)) +(: cnet_isa_6fa9357d83 (IsA body_length linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_a7ae1ee981 (IsA body_lotion lotion) (STV 1.0 0.9091)) +(: cnet_isa_4729d273bc (IsA body_louse louse) (STV 1.0 0.9091)) +(: cnet_isa_c6843d8456 (IsA body_mass_index index) (STV 1.0 0.9091)) +(: cnet_isa_f067f172aa (IsA body_odor malodorousness) (STV 1.0 0.9091)) +(: cnet_isa_67098fc2ac (IsA body_of_water thing) (STV 1.0 0.9091)) +(: cnet_isa_b8f2daa3eb (IsA body_pad protective_garment) (STV 1.0 0.9091)) +(: cnet_isa_55296dbaba (IsA body_part part) (STV 1.0 0.9091)) +(: cnet_isa_2b663837d3 (IsA body_plethysmograph plethysmograph) (STV 1.0 0.9091)) +(: cnet_isa_6eb31b0a55 (IsA body_servant servant) (STV 1.0 0.9091)) +(: cnet_isa_0a8d5cad97 (IsA body_stocking undergarment) (STV 1.0 0.9091)) +(: cnet_isa_e6a77ff79b (IsA body_substance substance) (STV 1.0 0.9091)) +(: cnet_isa_6e72a0611e (IsA body_temperature temperature) (STV 1.0 0.9091)) +(: cnet_isa_afaffc06c1 (IsA body_temperature vital_sign) (STV 1.0 0.9091)) +(: cnet_isa_129bfe7c4f (IsA body_type physique) (STV 1.0 0.9091)) +(: cnet_isa_402cfb4bf9 (IsA body_waste waste) (STV 1.0 0.9091)) +(: cnet_isa_c1a2da0656 (IsA body_weight weight) (STV 1.0 0.9091)) +(: cnet_isa_29c8de85b2 (IsA bodybuilder person) (STV 1.0 0.9091)) +(: cnet_isa_56f02c965b (IsA bodybuilding exercise) (STV 1.0 0.9091)) +(: cnet_isa_fa81f9527d (IsA bodyguard defender) (STV 1.0 0.9091)) +(: cnet_isa_848c7adba1 (IsA bodywork manual_labor) (STV 1.0 0.9091)) +(: cnet_isa_0a60a2e4a9 (IsA bodywork body) (STV 1.0 0.9091)) +(: cnet_isa_08c7b021a4 (IsA boehmenism theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_a21af0058d (IsA boehmeria dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5583c66d8b (IsA boffin research_worker) (STV 1.0 0.9091)) +(: cnet_isa_c2b23ddad4 (IsA bofor_gun antiaircraft) (STV 1.0 0.9091)) +(: cnet_isa_ebace306a8 (IsA bog wetland) (STV 1.0 0.9091)) +(: cnet_isa_f8a17e3b1d (IsA bog_asphodel liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_3ea6d3ab33 (IsA bog_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_ec917fbe8a (IsA bog_bilberry blueberry) (STV 1.0 0.9091)) +(: cnet_isa_8eb7979f38 (IsA bog_pimpernel pimpernel) (STV 1.0 0.9091)) +(: cnet_isa_bba46f58a9 (IsA bog_rein_orchid rein_orchid) (STV 1.0 0.9091)) +(: cnet_isa_5819914028 (IsA bog_rose arethusa) (STV 1.0 0.9091)) +(: cnet_isa_09cccbf897 (IsA bog_rosemary andromeda) (STV 1.0 0.9091)) +(: cnet_isa_5f9f7e1601 (IsA bog_soil soil) (STV 1.0 0.9091)) +(: cnet_isa_9819a4713d (IsA bog_spavin spavin) (STV 1.0 0.9091)) +(: cnet_isa_237fdd42f1 (IsA bog_star parnassia) (STV 1.0 0.9091)) +(: cnet_isa_85a4fca3ac (IsA bogey score) (STV 1.0 0.9091)) +(: cnet_isa_4f33562500 (IsA bogey evil_spirit) (STV 1.0 0.9091)) +(: cnet_isa_bc7ad9add0 (IsA bogeyman monster) (STV 1.0 0.9091)) +(: cnet_isa_57d4fb4810 (IsA bogy aircraft) (STV 1.0 0.9091)) +(: cnet_isa_0d8e128d9d (IsA bohemia clique) (STV 1.0 0.9091)) +(: cnet_isa_2144d55b15 (IsA bohemian european) (STV 1.0 0.9091)) +(: cnet_isa_501413cc7f (IsA bohemian nonconformist) (STV 1.0 0.9091)) +(: cnet_isa_9961e7007a (IsA bohemian_waxwing waxwing) (STV 1.0 0.9091)) +(: cnet_isa_eeff0af59d (IsA bohemianism behavior) (STV 1.0 0.9091)) +(: cnet_isa_bcce2e78d6 (IsA bohr_theory atomic_theory) (STV 1.0 0.9091)) +(: cnet_isa_25ba30d5de (IsA boidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_c7b8f58544 (IsA boil staphylococcal_infection) (STV 1.0 0.9091)) +(: cnet_isa_64dee1d152 (IsA boil_smut cornsmut) (STV 1.0 0.9091)) +(: cnet_isa_37ba85339e (IsA boiled_dinner dish) (STV 1.0 0.9091)) +(: cnet_isa_192241541b (IsA boiled_egg dish) (STV 1.0 0.9091)) +(: cnet_isa_1cdd8d1783 (IsA boiler vessel) (STV 1.0 0.9091)) +(: cnet_isa_f41f0aa19b (IsA boilerplate plate_iron) (STV 1.0 0.9091)) +(: cnet_isa_ecbda20c97 (IsA boilerplate formulation) (STV 1.0 0.9091)) +(: cnet_isa_f68b4e819a (IsA boiling cooking) (STV 1.0 0.9091)) +(: cnet_isa_300c9fb983 (IsA boiling heating) (STV 1.0 0.9091)) +(: cnet_isa_8d986e2028 (IsA boiling vaporization) (STV 1.0 0.9091)) +(: cnet_isa_aa75519f6b (IsA boiling_point excitability) (STV 1.0 0.9091)) +(: cnet_isa_2883145cf6 (IsA boiling_point temperature) (STV 1.0 0.9091)) +(: cnet_isa_f0f2bff18d (IsA boiling_water_reactor water_cooled_reactor) (STV 1.0 0.9091)) +(: cnet_isa_483887969e (IsA boisterousness noisiness) (STV 1.0 0.9091)) +(: cnet_isa_2ada1848e6 (IsA boisterousness storminess) (STV 1.0 0.9091)) +(: cnet_isa_8c0840c443 (IsA bok_choy cabbage) (STV 1.0 0.9091)) +(: cnet_isa_61a30ec31a (IsA bok_choy crucifer) (STV 1.0 0.9091)) +(: cnet_isa_86fe749144 (IsA bokmal norwegian) (STV 1.0 0.9091)) +(: cnet_isa_be3d94f29f (IsA bola rope) (STV 1.0 0.9091)) +(: cnet_isa_68390bbe29 (IsA bolbitis fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_5bd1803816 (IsA boldface font) (STV 1.0 0.9091)) +(: cnet_isa_ad067824cb (IsA boldness aggressiveness) (STV 1.0 0.9091)) +(: cnet_isa_8b01ac9a24 (IsA boldness conspicuousness) (STV 1.0 0.9091)) +(: cnet_isa_dc0edb6b2a (IsA boldness fearlessness) (STV 1.0 0.9091)) +(: cnet_isa_d820f9e085 (IsA bole west_chadic) (STV 1.0 0.9091)) +(: cnet_isa_930c391619 (IsA bole pigment) (STV 1.0 0.9091)) +(: cnet_isa_40f67f8e67 (IsA bole soil) (STV 1.0 0.9091)) +(: cnet_isa_d3dbdffec7 (IsA bolero stage_dancing) (STV 1.0 0.9091)) +(: cnet_isa_305c0cd396 (IsA bolero jacket) (STV 1.0 0.9091)) +(: cnet_isa_750252761b (IsA bolero dance_music) (STV 1.0 0.9091)) +(: cnet_isa_a807ecb50f (IsA boletaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_da320e3862 (IsA bolete fungus) (STV 1.0 0.9091)) +(: cnet_isa_8c70f0d390 (IsA boletellus fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_fa81b2552b (IsA boletellus_russellii bolete) (STV 1.0 0.9091)) +(: cnet_isa_38780f2c5b (IsA boletus fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_c054a0edb4 (IsA boletus_chrysenteron bolete) (STV 1.0 0.9091)) +(: cnet_isa_161f5ccf48 (IsA boletus_edulis bolete) (STV 1.0 0.9091)) +(: cnet_isa_ed7525c5f4 (IsA boletus_luridus bolete) (STV 1.0 0.9091)) +(: cnet_isa_078b7dca07 (IsA boletus_mirabilis bolete) (STV 1.0 0.9091)) +(: cnet_isa_90b39a13fb (IsA boletus_pallidus bolete) (STV 1.0 0.9091)) +(: cnet_isa_938cd366dc (IsA boletus_pulcherrimus bolete) (STV 1.0 0.9091)) +(: cnet_isa_5496e4c809 (IsA boletus_pulverulentus bolete) (STV 1.0 0.9091)) +(: cnet_isa_5de8d8f985 (IsA boletus_roxanae bolete) (STV 1.0 0.9091)) +(: cnet_isa_c12dd81642 (IsA boletus_subvelutipe bolete) (STV 1.0 0.9091)) +(: cnet_isa_603955dbb2 (IsA boletus_variipe bolete) (STV 1.0 0.9091)) +(: cnet_isa_303537e8b3 (IsA boletus_zelleri bolete) (STV 1.0 0.9091)) +(: cnet_isa_cdd5ce478e (IsA bolide meteor) (STV 1.0 0.9091)) +(: cnet_isa_1c46b99786 (IsA bolivar venezuelan_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_98752c7e0a (IsA bolivia canasta) (STV 1.0 0.9091)) +(: cnet_isa_db435f4727 (IsA bolivian south_american) (STV 1.0 0.9091)) +(: cnet_isa_4822484fe6 (IsA bolivian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_b64759faf5 (IsA boliviano bolivian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_22c5daa0a7 (IsA boll capsule) (STV 1.0 0.9091)) +(: cnet_isa_145e4ca6fc (IsA boll_weevil weevil) (STV 1.0 0.9091)) +(: cnet_isa_82fc0cf406 (IsA bollard post) (STV 1.0 0.9091)) +(: cnet_isa_c86b5d8e75 (IsA bollock pulley) (STV 1.0 0.9091)) +(: cnet_isa_3ffd0bed85 (IsA bollworm caterpillar) (STV 1.0 0.9091)) +(: cnet_isa_73373615e0 (IsA bollywood film_industry) (STV 1.0 0.9091)) +(: cnet_isa_d3c433d4af (IsA bolo knife) (STV 1.0 0.9091)) +(: cnet_isa_3cf45f904e (IsA bolo_tie necktie) (STV 1.0 0.9091)) +(: cnet_isa_ec3e723c78 (IsA bologna sausage) (STV 1.0 0.9091)) +(: cnet_isa_015c77a251 (IsA bolognese_pasta_sauce spaghetti_sauce) (STV 1.0 0.9091)) +(: cnet_isa_881c5573f6 (IsA bologram recording) (STV 1.0 0.9091)) +(: cnet_isa_088453beec (IsA bolometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_9ebe65075b (IsA bolshevism communism) (STV 1.0 0.9091)) +(: cnet_isa_a60823123f (IsA bolshevist communist) (STV 1.0 0.9091)) +(: cnet_isa_ec5789d46d (IsA bolshie radical) (STV 1.0 0.9091)) +(: cnet_isa_836f593b94 (IsA bolster pillow) (STV 1.0 0.9091)) +(: cnet_isa_29370d521f (IsA bolt piece_of_hardware) (STV 1.0 0.9091)) +(: cnet_isa_68e4fcd63d (IsA bolt bar) (STV 1.0 0.9091)) +(: cnet_isa_44251859b4 (IsA bolt roll) (STV 1.0 0.9091)) +(: cnet_isa_b83749ba5f (IsA bolt screw) (STV 1.0 0.9091)) +(: cnet_isa_43fed7686e (IsA bolt abandonment) (STV 1.0 0.9091)) +(: cnet_isa_07e9a65b05 (IsA bolt_cutter cutter) (STV 1.0 0.9091)) +(: cnet_isa_699f6cd2e1 (IsA bolt_hole hole) (STV 1.0 0.9091)) +(: cnet_isa_00d050ddcf (IsA bolti cichlid) (STV 1.0 0.9091)) +(: cnet_isa_2a50b83664 (IsA boltonia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_38c4880d67 (IsA boltzmann_s_constant constant) (STV 1.0 0.9091)) +(: cnet_isa_1823071d1d (IsA bolus pill) (STV 1.0 0.9091)) +(: cnet_isa_0f4efc49ca (IsA bolus ball) (STV 1.0 0.9091)) +(: cnet_isa_6eb6039e02 (IsA bomarea liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e1727abf44 (IsA bomb device) (STV 1.0 0.9524)) +(: cnet_isa_9bed87acef (IsA bomb explosive) (STV 1.0 0.9091)) +(: cnet_isa_5895a69844 (IsA bomb explosive_device) (STV 1.0 0.9454)) +(: cnet_isa_22c8cc932c (IsA bomb object) (STV 1.0 0.9091)) +(: cnet_isa_277503e900 (IsA bomb weaponry) (STV 1.0 0.9091)) +(: cnet_isa_d9b8926608 (IsA bomb_blast blast) (STV 1.0 0.9091)) +(: cnet_isa_03be36b012 (IsA bomb_calorimeter calorimeter) (STV 1.0 0.9091)) +(: cnet_isa_d984b94ec8 (IsA bomb_rack carrier) (STV 1.0 0.9091)) +(: cnet_isa_ab99aa41d6 (IsA bomb_shelter chamber) (STV 1.0 0.9091)) +(: cnet_isa_11eb641c44 (IsA bomb_site site) (STV 1.0 0.9091)) +(: cnet_isa_fe40158460 (IsA bombacaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_86aabad6b8 (IsA bombardier aircrewman) (STV 1.0 0.9091)) +(: cnet_isa_91aeaf6505 (IsA bombardier noncommissioned_officer) (STV 1.0 0.9091)) +(: cnet_isa_55e440e1d4 (IsA bombardier_beetle ground_beetle) (STV 1.0 0.9091)) +(: cnet_isa_ea37060f15 (IsA bombardment radiation) (STV 1.0 0.9091)) +(: cnet_isa_5749cea995 (IsA bombardon bass) (STV 1.0 0.9091)) +(: cnet_isa_ac720f2d54 (IsA bombardon shawm) (STV 1.0 0.9091)) +(: cnet_isa_7625280a03 (IsA bombast grandiosity) (STV 1.0 0.9091)) +(: cnet_isa_60c6f7f594 (IsA bombax dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f7d9a07006 (IsA bombazine fabric) (STV 1.0 0.9091)) +(: cnet_isa_572ad5d7d0 (IsA bomber sandwich) (STV 1.0 0.9091)) +(: cnet_isa_5552b9d0e2 (IsA bomber airplane) (STV 1.0 0.9091)) +(: cnet_isa_65d18d0b80 (IsA bomber warplane) (STV 1.0 0.9091)) +(: cnet_isa_8fc6adb388 (IsA bomber person) (STV 1.0 0.9091)) +(: cnet_isa_80b39c5b2d (IsA bomber_crew aircrew) (STV 1.0 0.9091)) +(: cnet_isa_d85b7d5431 (IsA bomber_jacket jacket) (STV 1.0 0.9091)) +(: cnet_isa_a87de2a979 (IsA bomber aircraft) (STV 1.0 0.9091)) +(: cnet_isa_b2f2c9f83c (IsA bombie bomblet) (STV 1.0 0.9091)) +(: cnet_isa_6789956f67 (IsA bombina amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_f960ac547e (IsA bombing attack) (STV 1.0 0.9091)) +(: cnet_isa_61eeb5614e (IsA bombing sabotage) (STV 1.0 0.9091)) +(: cnet_isa_faea4ab480 (IsA bombing_run bombing) (STV 1.0 0.9091)) +(: cnet_isa_27bbc08e05 (IsA bomblet bomb) (STV 1.0 0.9091)) +(: cnet_isa_adb56f0065 (IsA bombshell bomb) (STV 1.0 0.9091)) +(: cnet_isa_414d06712c (IsA bombshell surprise) (STV 1.0 0.9091)) +(: cnet_isa_2c9a3aa2c7 (IsA bombshell entertainer) (STV 1.0 0.9091)) +(: cnet_isa_fe2a7fd432 (IsA bombsight sight) (STV 1.0 0.9091)) +(: cnet_isa_21a7b40e07 (IsA bombus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_7aec9935ed (IsA bombycid moth) (STV 1.0 0.9091)) +(: cnet_isa_94bd2fccdf (IsA bombycidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_83ff631c5b (IsA bombycilla bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_08a667e9d8 (IsA bombycillidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_eb0551e213 (IsA bombyliidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_16dff81dd0 (IsA bombyx arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_5a6100a3b4 (IsA bon_mot wit) (STV 1.0 0.9091)) +(: cnet_isa_8c4895f002 (IsA bon_voyage farewell) (STV 1.0 0.9091)) +(: cnet_isa_d3ec4faeaf (IsA bonanza vein) (STV 1.0 0.9091)) +(: cnet_isa_1070c21b01 (IsA bonasa bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_13ec285120 (IsA bonbon candy) (STV 1.0 0.9091)) +(: cnet_isa_0129d5c97f (IsA bond debt_instrument) (STV 1.0 0.9091)) +(: cnet_isa_53f73ef87e (IsA bond security) (STV 1.0 0.9091)) +(: cnet_isa_76c56c8ed4 (IsA bond writing_paper) (STV 1.0 0.9091)) +(: cnet_isa_dd408a7f83 (IsA bond_issue bond) (STV 1.0 0.9091)) +(: cnet_isa_7d45481be8 (IsA bond_rating evaluation) (STV 1.0 0.9091)) +(: cnet_isa_9d592ab15a (IsA bond_servant slave) (STV 1.0 0.9091)) +(: cnet_isa_88be7b9882 (IsA bond_trading trading) (STV 1.0 0.9091)) +(: cnet_isa_1e1c567a17 (IsA bondage sexual_activity) (STV 1.0 0.9091)) +(: cnet_isa_5460b74325 (IsA bondage subjugation) (STV 1.0 0.9091)) +(: cnet_isa_301c999647 (IsA bonded_labor bondage) (STV 1.0 0.9091)) +(: cnet_isa_968bbe7d48 (IsA bondholder holder) (STV 1.0 0.9091)) +(: cnet_isa_a4c15d6ac6 (IsA bondholder investor) (STV 1.0 0.9091)) +(: cnet_isa_de49bba601 (IsA bonding fastening) (STV 1.0 0.9091)) +(: cnet_isa_3bab58fe00 (IsA bonding technique) (STV 1.0 0.9091)) +(: cnet_isa_4c5d7daae0 (IsA bonding personal_relation) (STV 1.0 0.9091)) +(: cnet_isa_331931ceb4 (IsA bondman bond_servant) (STV 1.0 0.9091)) +(: cnet_isa_6755fefeb8 (IsA bondman slave) (STV 1.0 0.9091)) +(: cnet_isa_d72120320a (IsA bondsman benefactor) (STV 1.0 0.9091)) +(: cnet_isa_57ad4b78f1 (IsA bonduc tree) (STV 1.0 0.9091)) +(: cnet_isa_b90eda89de (IsA bonduc_nut seed) (STV 1.0 0.9091)) +(: cnet_isa_f9245bb2a0 (IsA bondwoman bond_servant) (STV 1.0 0.9091)) +(: cnet_isa_f8120cc83c (IsA bondwoman slave) (STV 1.0 0.9091)) +(: cnet_isa_08d406ccd3 (IsA bone contend_over) (STV 1.0 0.9091)) +(: cnet_isa_20346bd048 (IsA bone important_part_of_person) (STV 1.0 0.9091)) +(: cnet_isa_889d139441 (IsA bone not_meat) (STV 1.0 0.9091)) +(: cnet_isa_102eb5a0e6 (IsA bone part_of_animal) (STV 1.0 0.9091)) +(: cnet_isa_5a362b85e9 (IsA bone structural_support) (STV 1.0 0.9091)) +(: cnet_isa_d52be6f44e (IsA bone white) (STV 1.0 0.9091)) +(: cnet_isa_44134ab276 (IsA bone connective_tissue) (STV 1.0 0.9091)) +(: cnet_isa_10facd3ec0 (IsA bone animal_material) (STV 1.0 0.9091)) +(: cnet_isa_fe2a75ca08 (IsA bone_age age) (STV 1.0 0.9091)) +(: cnet_isa_924198a44f (IsA bone_ash ash) (STV 1.0 0.9091)) +(: cnet_isa_d42adb0b84 (IsA bone_ash_cup vessel) (STV 1.0 0.9091)) +(: cnet_isa_eeb32975f9 (IsA bone_black char) (STV 1.0 0.9091)) +(: cnet_isa_a05ea6cd30 (IsA bone_cell somatic_cell) (STV 1.0 0.9091)) +(: cnet_isa_36b3dbc248 (IsA bone_china china) (STV 1.0 0.9091)) +(: cnet_isa_206d2f4cdb (IsA bone_fat animal_fat) (STV 1.0 0.9091)) +(: cnet_isa_7dce483984 (IsA bone_headed_dinosaur ornithischian) (STV 1.0 0.9091)) +(: cnet_isa_3e3c57ef5e (IsA bone_of_contention subject) (STV 1.0 0.9091)) +(: cnet_isa_71bcae8e39 (IsA bone_oil animal_oil) (STV 1.0 0.9091)) +(: cnet_isa_fb81bead8d (IsA bone_spavin spavin) (STV 1.0 0.9091)) +(: cnet_isa_d21ae8fa4a (IsA bonefish soft_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_576b0fd575 (IsA bonemeal organic) (STV 1.0 0.9091)) +(: cnet_isa_4d5ee63eb4 (IsA bone not_good_food_for_dog) (STV 1.0 0.9091)) +(: cnet_isa_ad671f8c3c (IsA bone percussion_instrument) (STV 1.0 0.9091)) +(: cnet_isa_9169f75806 (IsA boneset herb) (STV 1.0 0.9091)) +(: cnet_isa_2ca3834246 (IsA bonesetter health_professional) (STV 1.0 0.9091)) +(: cnet_isa_e93c07ff4f (IsA boneshaker wheeled_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_e4f67cd7c9 (IsA bonfire fire) (STV 1.0 0.9091)) +(: cnet_isa_0b84c791b4 (IsA bonfire_night november_5) (STV 1.0 0.9091)) +(: cnet_isa_fda1e4a18f (IsA bong sound) (STV 1.0 0.9091)) +(: cnet_isa_a3c8631d70 (IsA bongo antelope) (STV 1.0 0.9091)) +(: cnet_isa_a3f79f0126 (IsA bongo drum) (STV 1.0 0.9091)) +(: cnet_isa_f94b7f5c0b (IsA bonheur happiness) (STV 1.0 0.9091)) +(: cnet_isa_00c26587a3 (IsA bonito scombroid) (STV 1.0 0.9091)) +(: cnet_isa_6ef7c0f3ff (IsA bonito tuna) (STV 1.0 0.9091)) +(: cnet_isa_34aa96a9de (IsA bonito_shark mako) (STV 1.0 0.9091)) +(: cnet_isa_85bb821e6a (IsA bonn in_germany) (STV 1.0 0.9339)) +(: cnet_isa_330372d5cd (IsA bonnet hat) (STV 1.0 0.9091)) +(: cnet_isa_980bb26404 (IsA bonnet_macaque macaque) (STV 1.0 0.9091)) +(: cnet_isa_4bf37b6a29 (IsA bonsai tree) (STV 1.0 0.9091)) +(: cnet_isa_626359c01c (IsA bonus positive_stimulus) (STV 1.0 0.9091)) +(: cnet_isa_b2481c1e56 (IsA bonus payment) (STV 1.0 0.9091)) +(: cnet_isa_34a3d04439 (IsA bony_fish fish) (STV 1.0 0.9091)) +(: cnet_isa_c8ffd05aa9 (IsA bony_labyrinth structure) (STV 1.0 0.9091)) +(: cnet_isa_b90ca2f126 (IsA bonyness leanness) (STV 1.0 0.9091)) +(: cnet_isa_29869b5d1e (IsA boo cry) (STV 1.0 0.9091)) +(: cnet_isa_d53f6ce126 (IsA booboisie class) (STV 1.0 0.9091)) +(: cnet_isa_bf6648695e (IsA booby gannet) (STV 1.0 0.9091)) +(: cnet_isa_2fd195e2c2 (IsA booby_prize trophy) (STV 1.0 0.9091)) +(: cnet_isa_f4e0cb3cd6 (IsA boodle money) (STV 1.0 0.9091)) +(: cnet_isa_69e572b6c1 (IsA booger mucus) (STV 1.0 0.9091)) +(: cnet_isa_dd154deb7d (IsA boogie blue) (STV 1.0 0.9091)) +(: cnet_isa_1cfea98609 (IsA boogie jazz) (STV 1.0 0.9091)) +(: cnet_isa_065517c1f8 (IsA boojum_tree candlewood) (STV 1.0 0.9091)) +(: cnet_isa_a7db29a650 (IsA book excellent_source_of_information) (STV 1.0 0.9091)) +(: cnet_isa_cef20ea040 (IsA book product) (STV 1.0 0.9091)) +(: cnet_isa_3c7a3fc4c2 (IsA book collection) (STV 1.0 0.9091)) +(: cnet_isa_9589075130 (IsA book publication) (STV 1.0 0.9091)) +(: cnet_isa_e67ea7dad5 (IsA book section) (STV 1.0 0.9091)) +(: cnet_isa_3032576434 (IsA book_agent salesman) (STV 1.0 0.9091)) +(: cnet_isa_a1a88e3311 (IsA book_bag bag) (STV 1.0 0.9091)) +(: cnet_isa_fc5f58dc96 (IsA book_fair bazaar) (STV 1.0 0.9091)) +(: cnet_isa_638b0b134d (IsA book_fair fair) (STV 1.0 0.9091)) +(: cnet_isa_cf2d5b0e16 (IsA book_jacket jacket) (STV 1.0 0.9091)) +(: cnet_isa_616fc08f13 (IsA book_lung respiratory_organ) (STV 1.0 0.9091)) +(: cnet_isa_47ff61c99d (IsA book_of_knowledge encyclopedia) (STV 1.0 0.9091)) +(: cnet_isa_f2a51bc493 (IsA book_review review) (STV 1.0 0.9091)) +(: cnet_isa_80231994b3 (IsA book_scorpion false_scorpion) (STV 1.0 0.9091)) +(: cnet_isa_62aaad7ba6 (IsA book_token coupon) (STV 1.0 0.9091)) +(: cnet_isa_acb5447bba (IsA book_value value) (STV 1.0 0.9091)) +(: cnet_isa_315cc4b09c (IsA bookbinder craftsman) (STV 1.0 0.9091)) +(: cnet_isa_ec77c2b6db (IsA bookbindery workshop) (STV 1.0 0.9091)) +(: cnet_isa_3caadaa554 (IsA bookbinding handicraft) (STV 1.0 0.9091)) +(: cnet_isa_5986c82932 (IsA bookcase furniture) (STV 1.0 0.9091)) +(: cnet_isa_d65ccf766d (IsA bookclub club) (STV 1.0 0.9091)) +(: cnet_isa_9874b98008 (IsA bookdealer merchant) (STV 1.0 0.9091)) +(: cnet_isa_621c0967ee (IsA bookend support) (STV 1.0 0.9091)) +(: cnet_isa_3617f68bde (IsA booker agent) (STV 1.0 0.9091)) +(: cnet_isa_2b1a0eb225 (IsA booking employment) (STV 1.0 0.9091)) +(: cnet_isa_548d44e0f2 (IsA bookishness studiousness) (STV 1.0 0.9091)) +(: cnet_isa_4efd7d68ed (IsA bookkeeper accountant) (STV 1.0 0.9091)) +(: cnet_isa_f877edb5bd (IsA bookkeeping accountancy) (STV 1.0 0.9091)) +(: cnet_isa_44174c7186 (IsA booklet book) (STV 1.0 0.9091)) +(: cnet_isa_ee8934ca67 (IsA booklouse psocopterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_b0ae8bea6a (IsA bookmaker gambler) (STV 1.0 0.9091)) +(: cnet_isa_736b8b5467 (IsA bookmaker maker) (STV 1.0 0.9091)) +(: cnet_isa_ca9a6e8696 (IsA bookmark marker) (STV 1.0 0.9091)) +(: cnet_isa_f4c336816d (IsA bookmobile van) (STV 1.0 0.9091)) +(: cnet_isa_1647859b54 (IsA bookplate gummed_label) (STV 1.0 0.9091)) +(: cnet_isa_84b5dfa38f (IsA book different_size) (STV 1.0 0.9091)) +(: cnet_isa_c391d55686 (IsA book printed_paper) (STV 1.0 0.9091)) +(: cnet_isa_7b5917e766 (IsA book storage_device) (STV 1.0 0.9091)) +(: cnet_isa_9788dc72a0 (IsA bookseller owner) (STV 1.0 0.9091)) +(: cnet_isa_e0cb573244 (IsA bookshelf shelf) (STV 1.0 0.9091)) +(: cnet_isa_3ce33749bc (IsA bookshop shop) (STV 1.0 0.9091)) +(: cnet_isa_6cfe0cf177 (IsA bookworm reader) (STV 1.0 0.9091)) +(: cnet_isa_6283dcb7a2 (IsA boolean_logic symbolic_logic) (STV 1.0 0.9091)) +(: cnet_isa_19543ce93b (IsA boolean_operation operation) (STV 1.0 0.9091)) +(: cnet_isa_badfa91066 (IsA boom pole) (STV 1.0 0.9091)) +(: cnet_isa_ba9e1eee04 (IsA boom spar) (STV 1.0 0.9091)) +(: cnet_isa_641b5fb1ac (IsA boom happening) (STV 1.0 0.9091)) +(: cnet_isa_89a9f7fef7 (IsA boom noise) (STV 1.0 0.9091)) +(: cnet_isa_2a5f752d38 (IsA boom prosperity) (STV 1.0 0.9091)) +(: cnet_isa_65a5411297 (IsA boom_town town) (STV 1.0 0.9091)) +(: cnet_isa_3ad816f1c8 (IsA boomerang projectile) (STV 1.0 0.9091)) +(: cnet_isa_f0c4610dce (IsA boondoggle waste) (STV 1.0 0.9091)) +(: cnet_isa_58475ee05a (IsA boorishness discourtesy) (STV 1.0 0.9091)) +(: cnet_isa_b1f018169a (IsA boorishness inelegance) (STV 1.0 0.9091)) +(: cnet_isa_0199ac2eab (IsA boost aid) (STV 1.0 0.9091)) +(: cnet_isa_e1bb5b303d (IsA boost push) (STV 1.0 0.9091)) +(: cnet_isa_1918da3865 (IsA booster dose) (STV 1.0 0.9091)) +(: cnet_isa_eb77482e2b (IsA booster rocket) (STV 1.0 0.9091)) +(: cnet_isa_76945667ae (IsA booster thief) (STV 1.0 0.9091)) +(: cnet_isa_971df742f1 (IsA booster amplifier) (STV 1.0 0.9091)) +(: cnet_isa_5eb65d6b64 (IsA boot torture) (STV 1.0 0.9091)) +(: cnet_isa_a0c844f477 (IsA boot compartment) (STV 1.0 0.9091)) +(: cnet_isa_d6270dc1a5 (IsA boot footwear) (STV 1.0 0.9091)) +(: cnet_isa_0bd8adb9e9 (IsA boot instrument_of_torture) (STV 1.0 0.9091)) +(: cnet_isa_d7843106c5 (IsA boot shell) (STV 1.0 0.9091)) +(: cnet_isa_d7f04a2955 (IsA boot_camp camp) (STV 1.0 0.9091)) +(: cnet_isa_82f2318139 (IsA bootblack unskilled_person) (STV 1.0 0.9091)) +(: cnet_isa_ec29dc354e (IsA bootee slipper) (STV 1.0 0.9091)) +(: cnet_isa_e816d107e3 (IsA booth closet) (STV 1.0 0.9091)) +(: cnet_isa_24124dc76f (IsA booth shop) (STV 1.0 0.9091)) +(: cnet_isa_b3b0d988ef (IsA booth table) (STV 1.0 0.9091)) +(: cnet_isa_deaeb1ede6 (IsA boothose stocking) (STV 1.0 0.9091)) +(: cnet_isa_28e94cfa67 (IsA bootjack device) (STV 1.0 0.9091)) +(: cnet_isa_bf00d8149f (IsA bootlace lace) (STV 1.0 0.9091)) +(: cnet_isa_3655cc1a9b (IsA bootleg covering) (STV 1.0 0.9091)) +(: cnet_isa_05f60c9479 (IsA bootlegger criminal) (STV 1.0 0.9091)) +(: cnet_isa_98a04094b1 (IsA bootlegging selling) (STV 1.0 0.9091)) +(: cnet_isa_3b0f917890 (IsA bootmaker cobbler) (STV 1.0 0.9091)) +(: cnet_isa_27224e553d (IsA bootstrap strap) (STV 1.0 0.9091)) +(: cnet_isa_66b256d691 (IsA boott_s_goldenrod goldenrod) (STV 1.0 0.9091)) +(: cnet_isa_218279b128 (IsA bop jazz) (STV 1.0 0.9091)) +(: cnet_isa_4b941ee480 (IsA borage herb) (STV 1.0 0.9091)) +(: cnet_isa_d1b56a4fe5 (IsA boraginaceae plant_family) (STV 1.0 0.9091)) +(: cnet_isa_d9b6eae683 (IsA borago plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_6039914909 (IsA borassus monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_100ac7676f (IsA borate salt) (STV 1.0 0.9091)) +(: cnet_isa_2402e1cff4 (IsA borax mineral) (STV 1.0 0.9091)) +(: cnet_isa_cfaa2f9ba3 (IsA bordeaux wine) (STV 1.0 0.9091)) +(: cnet_isa_a2a59407cb (IsA bordeaux_mixture antifungal) (STV 1.0 0.9091)) +(: cnet_isa_66c775614d (IsA bordelaise sauce) (STV 1.0 0.9091)) +(: cnet_isa_a4c273a4fb (IsA border edge) (STV 1.0 0.9091)) +(: cnet_isa_2f8a7936f4 (IsA border_collie shepherd_dog) (STV 1.0 0.9091)) +(: cnet_isa_2fd0b74f57 (IsA border_patrol patrol) (STV 1.0 0.9091)) +(: cnet_isa_b2909df6c6 (IsA border_patrolman lawman) (STV 1.0 0.9091)) +(: cnet_isa_55032613b2 (IsA border_terrier terrier) (STV 1.0 0.9091)) +(: cnet_isa_283b7e7919 (IsA borderer inhabitant) (STV 1.0 0.9091)) +(: cnet_isa_5a8cf232b6 (IsA borderland district) (STV 1.0 0.9091)) +(: cnet_isa_56d9fa015d (IsA borderline_intelligence intelligence_quotient) (STV 1.0 0.9091)) +(: cnet_isa_2a4bab925d (IsA borderline_schizophrenia schizophrenia) (STV 1.0 0.9091)) +(: cnet_isa_fb59599055 (IsA border line_between_country) (STV 1.0 0.9091)) +(: cnet_isa_490784d2a3 (IsA bore diameter) (STV 1.0 0.9091)) +(: cnet_isa_1a19becb0b (IsA bore excavation) (STV 1.0 0.9091)) +(: cnet_isa_ce5b8fba2e (IsA bore unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_6e6b4f2954 (IsA bore_bit drill) (STV 1.0 0.9091)) +(: cnet_isa_f144a5a9db (IsA boredom emotion) (STV 1.0 0.9339)) +(: cnet_isa_2732b0eb93 (IsA boredom dissatisfaction) (STV 1.0 0.9091)) +(: cnet_isa_85d4327796 (IsA boric_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_173bbf72aa (IsA boring production) (STV 1.0 0.9091)) +(: cnet_isa_9452fec8d8 (IsA boringness dullness) (STV 1.0 0.9091)) +(: cnet_isa_f7fc245132 (IsA born_again_christian christian) (STV 1.0 0.9091)) +(: cnet_isa_6010f8aa13 (IsA bornean malaysian) (STV 1.0 0.9091)) +(: cnet_isa_bfd70835fc (IsA bornite mineral) (STV 1.0 0.9091)) +(: cnet_isa_f8a4861300 (IsA boron chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_7f0741e048 (IsA boron_chamber ionization_chamber) (STV 1.0 0.9091)) +(: cnet_isa_943fa8ee69 (IsA boron_counter_tube proportional_counter_tube) (STV 1.0 0.9091)) +(: cnet_isa_c9f923518f (IsA boron_trifluoride fluoride) (STV 1.0 0.9091)) +(: cnet_isa_7d3c3d453c (IsA borosilicate salt) (STV 1.0 0.9091)) +(: cnet_isa_86e35d63ac (IsA borough administrative_district) (STV 1.0 0.9091)) +(: cnet_isa_c4bcfd2d9d (IsA borough town) (STV 1.0 0.9091)) +(: cnet_isa_61e4f9b072 (IsA borough_english inheritance) (STV 1.0 0.9091)) +(: cnet_isa_e31a612df3 (IsA borrelia spirochete) (STV 1.0 0.9091)) +(: cnet_isa_c9b0cb28b1 (IsA borrelia_burgdorferi spirochete) (STV 1.0 0.9091)) +(: cnet_isa_204b608f2b (IsA borrow_pit pit) (STV 1.0 0.9091)) +(: cnet_isa_80b005a676 (IsA borrower recipient) (STV 1.0 0.9091)) +(: cnet_isa_2f26f9a345 (IsA borrowing appropriation) (STV 1.0 0.9091)) +(: cnet_isa_46d9515a39 (IsA borrowing transaction) (STV 1.0 0.9091)) +(: cnet_isa_6fe445ab57 (IsA borrowing_cost cost) (STV 1.0 0.9091)) +(: cnet_isa_8d85ff22e1 (IsA borsch soup) (STV 1.0 0.9091)) +(: cnet_isa_d0379d5ccc (IsA borscht_circuit resort_area) (STV 1.0 0.9091)) +(: cnet_isa_028c126638 (IsA borstal reformatory) (STV 1.0 0.9091)) +(: cnet_isa_19217fdae8 (IsA borzoi wolfhound) (STV 1.0 0.9091)) +(: cnet_isa_d2d4be391a (IsA bos mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_d9e1099f06 (IsA bosc pear) (STV 1.0 0.9091)) +(: cnet_isa_c7b9ed9eaa (IsA bose_einstein_statistic law) (STV 1.0 0.9091)) +(: cnet_isa_353986df29 (IsA boselaphus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_ab4a276cd7 (IsA bosk forest) (STV 1.0 0.9091)) +(: cnet_isa_6a7fac8b98 (IsA boskop_man homo_sapien) (STV 1.0 0.9091)) +(: cnet_isa_9d9ee70ecf (IsA bosom cloth_covering) (STV 1.0 0.9091)) +(: cnet_isa_5893d5c167 (IsA bosom breast) (STV 1.0 0.9091)) +(: cnet_isa_7bec3f3e0e (IsA bosom privacy) (STV 1.0 0.9091)) +(: cnet_isa_933cace4ac (IsA boson elementary_particle) (STV 1.0 0.9091)) +(: cnet_isa_f26310584b (IsA boson particle) (STV 1.0 0.9091)) +(: cnet_isa_d90d1caef6 (IsA boss person) (STV 1.0 0.9091)) +(: cnet_isa_815a798e4f (IsA boss employer) (STV 1.0 0.9091)) +(: cnet_isa_e0100d15d5 (IsA boss leader) (STV 1.0 0.9091)) +(: cnet_isa_95ce221c42 (IsA bossism domination) (STV 1.0 0.9091)) +(: cnet_isa_386d70da66 (IsA boston_baked_bean dish) (STV 1.0 0.9091)) +(: cnet_isa_d09163e634 (IsA boston_bull terrier) (STV 1.0 0.9091)) +(: cnet_isa_c44137c717 (IsA boston_cream_pie cake) (STV 1.0 0.9091)) +(: cnet_isa_eebb5c28f7 (IsA boston_fern sword_fern) (STV 1.0 0.9091)) +(: cnet_isa_5b4f2a17a3 (IsA boston_ivy vine) (STV 1.0 0.9091)) +(: cnet_isa_b2acc0abd1 (IsA boston_lettuce butterhead_lettuce) (STV 1.0 0.9091)) +(: cnet_isa_35ab6d5d60 (IsA boston_rocker rocking_chair) (STV 1.0 0.9091)) +(: cnet_isa_17cff158b9 (IsA bostonian american) (STV 1.0 0.9091)) +(: cnet_isa_624adefc0f (IsA boswell supporter) (STV 1.0 0.9091)) +(: cnet_isa_d4d7c82749 (IsA boswellia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_00c9c59981 (IsA boswellia_carteri incense_tree) (STV 1.0 0.9091)) +(: cnet_isa_1f07063410 (IsA bot larva) (STV 1.0 0.9091)) +(: cnet_isa_4762345572 (IsA bota wine_bottle) (STV 1.0 0.9091)) +(: cnet_isa_6a48ee8ff7 (IsA botanical drug) (STV 1.0 0.9091)) +(: cnet_isa_4aeec601d4 (IsA botanist biologist) (STV 1.0 0.9091)) +(: cnet_isa_faeac4c3e7 (IsA botany biology) (STV 1.0 0.9091)) +(: cnet_isa_c4e07c5212 (IsA botaurus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_c966bbc9ef (IsA botfly gadfly) (STV 1.0 0.9091)) +(: cnet_isa_d09c0cbd03 (IsA both_dress_and_pant type_of_clothe) (STV 1.0 0.9091)) +(: cnet_isa_27103bca0e (IsA both_embassy_and_vote political_term) (STV 1.0 0.9091)) +(: cnet_isa_d2ae0da657 (IsA both_kitten_and_dog animal) (STV 1.0 0.9091)) +(: cnet_isa_1d0aa45c5e (IsA both_meat_and_potatoe type_of_food) (STV 1.0 0.9091)) +(: cnet_isa_3763b055e4 (IsA both_muffin_and_celery food) (STV 1.0 0.9339)) +(: cnet_isa_bf7754f8c0 (IsA both_pound_cake_and_furitcake type_of_cake) (STV 1.0 0.9091)) +(: cnet_isa_404ca213a4 (IsA both_radio_and_newspaper type_of_media) (STV 1.0 0.9091)) +(: cnet_isa_63450c4156 (IsA both_salad_and_pizza food) (STV 1.0 0.9339)) +(: cnet_isa_5f1c361d36 (IsA both_shrub_and_tomatoe type_of_plant) (STV 1.0 0.9091)) +(: cnet_isa_f7f2bef2d4 (IsA both_snake_and_skunk animal) (STV 1.0 0.9091)) +(: cnet_isa_b7912339f8 (IsA both_vegetable_and_beef type_of_food) (STV 1.0 0.9091)) +(: cnet_isa_8c037acdf3 (IsA bothidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_a814e51b68 (IsA bothrop reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_0f8cb702ba (IsA botrychium fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_2c21a9e03d (IsA botswana_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_37ac30773c (IsA bottle container) (STV 1.0 0.9339)) +(: cnet_isa_1d4d2580c1 (IsA bottle vessel) (STV 1.0 0.9091)) +(: cnet_isa_2a9ca7b23b (IsA bottle containerful) (STV 1.0 0.9091)) +(: cnet_isa_5c35dac5d4 (IsA bottle_bank recycling_bin) (STV 1.0 0.9091)) +(: cnet_isa_721ab1d27a (IsA bottle_bill bill) (STV 1.0 0.9091)) +(: cnet_isa_8c72af2838 (IsA bottle_collection collection) (STV 1.0 0.9091)) +(: cnet_isa_442a24afb4 (IsA bottle_collection recycling) (STV 1.0 0.9091)) +(: cnet_isa_44d5c570a3 (IsA bottle_gourd gourd) (STV 1.0 0.9091)) +(: cnet_isa_df01055f5a (IsA bottle_green green) (STV 1.0 0.9091)) +(: cnet_isa_8b97c1b17f (IsA bottle_nosed_whale beaked_whale) (STV 1.0 0.9091)) +(: cnet_isa_dc46cb8c5e (IsA bottle_opener opener) (STV 1.0 0.9091)) +(: cnet_isa_423a7c62dc (IsA bottle_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_7db8aa0c4f (IsA bottlebrush brush) (STV 1.0 0.9091)) +(: cnet_isa_c40023e65f (IsA bottlecap cap) (STV 1.0 0.9091)) +(: cnet_isa_9d068ae128 (IsA bottled_water drinking_water) (STV 1.0 0.9091)) +(: cnet_isa_a1b059742b (IsA bottleneck part) (STV 1.0 0.9091)) +(: cnet_isa_dd386ba823 (IsA bottlenose_dolphin dolphin) (STV 1.0 0.9091)) +(: cnet_isa_fbcfc32422 (IsA bottler manufacturer) (STV 1.0 0.9091)) +(: cnet_isa_86b03e5eda (IsA bottle one_type_of_container) (STV 1.0 0.9091)) +(: cnet_isa_2b588d9245 (IsA bottle specific_type_of_trash) (STV 1.0 0.9091)) +(: cnet_isa_adf127488b (IsA bottling_plant plant) (STV 1.0 0.9091)) +(: cnet_isa_5727259fb6 (IsA bottom cargo_ship) (STV 1.0 0.9091)) +(: cnet_isa_f09c4fc1a1 (IsA bottom region) (STV 1.0 0.9091)) +(: cnet_isa_c9b0ccb949 (IsA bottom side) (STV 1.0 0.9091)) +(: cnet_isa_37660b2f22 (IsA bottom turn) (STV 1.0 0.9091)) +(: cnet_isa_0e95966939 (IsA bottom_dog subordinate) (STV 1.0 0.9091)) +(: cnet_isa_00a4e9de98 (IsA bottom_feeder fish) (STV 1.0 0.9091)) +(: cnet_isa_f0beb0362e (IsA bottom_feeder scavenger) (STV 1.0 0.9091)) +(: cnet_isa_dcd698c019 (IsA bottom_feeder opportunist) (STV 1.0 0.9091)) +(: cnet_isa_a4f7b98fe2 (IsA bottom_fermentation zymosis) (STV 1.0 0.9091)) +(: cnet_isa_b2296f9ad3 (IsA bottom_fermenting_yeast brewer_s_yeast) (STV 1.0 0.9091)) +(: cnet_isa_0ee0486975 (IsA bottom_line point) (STV 1.0 0.9091)) +(: cnet_isa_032428a953 (IsA bottom_line line) (STV 1.0 0.9091)) +(: cnet_isa_bbcb115c7a (IsA bottom_lurker fish) (STV 1.0 0.9091)) +(: cnet_isa_ca96dbf47e (IsA bottom_quark quark) (STV 1.0 0.9091)) +(: cnet_isa_4e5e006091 (IsA bottom_rot plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_5e6d35ff8a (IsA bottom_rot_fungus fungus) (STV 1.0 0.9091)) +(: cnet_isa_19d88746ff (IsA bottom_round pot_roast) (STV 1.0 0.9091)) +(: cnet_isa_8d8402b088 (IsA bottomland land) (STV 1.0 0.9091)) +(: cnet_isa_0762da6356 (IsA bottomlessness deepness) (STV 1.0 0.9091)) +(: cnet_isa_08a3446702 (IsA botulin bacterial_toxin) (STV 1.0 0.9091)) +(: cnet_isa_c12faf51b4 (IsA botulin bioweapon) (STV 1.0 0.9091)) +(: cnet_isa_104a162280 (IsA botulinum_toxin neurotoxin) (STV 1.0 0.9091)) +(: cnet_isa_edc847a327 (IsA botulinus eubacteria) (STV 1.0 0.9091)) +(: cnet_isa_dab25cb09c (IsA botulism food_poisoning) (STV 1.0 0.9091)) +(: cnet_isa_8a5f95e7f6 (IsA boucle fabric) (STV 1.0 0.9091)) +(: cnet_isa_85f56404c3 (IsA boudoir bedroom) (STV 1.0 0.9091)) +(: cnet_isa_5295f5bc7a (IsA bouffant hairdo) (STV 1.0 0.9091)) +(: cnet_isa_2b1f14cd60 (IsA bougainvillea vine) (STV 1.0 0.9091)) +(: cnet_isa_ac51243e61 (IsA bough limb) (STV 1.0 0.9091)) +(: cnet_isa_8adabad3d0 (IsA bouillabaisse fish_stew) (STV 1.0 0.9091)) +(: cnet_isa_5aa3000001 (IsA bouillon broth) (STV 1.0 0.9091)) +(: cnet_isa_990788a0fe (IsA bouillon_cube flavorer) (STV 1.0 0.9091)) +(: cnet_isa_4e76b2fe65 (IsA boulder rock) (STV 1.0 0.9091)) +(: cnet_isa_1c015bcfcf (IsA boulevard street) (STV 1.0 0.9339)) +(: cnet_isa_5331d370c1 (IsA boulevardier visitor) (STV 1.0 0.9091)) +(: cnet_isa_d8864f03e0 (IsA boulle embellishment) (STV 1.0 0.9091)) +(: cnet_isa_f594158284 (IsA bounce elasticity) (STV 1.0 0.9091)) +(: cnet_isa_8964f8a918 (IsA bounce recoil) (STV 1.0 0.9091)) +(: cnet_isa_3f0638d43e (IsA bouncer guard) (STV 1.0 0.9091)) +(: cnet_isa_10f1539bbe (IsA bouncing_betty land_mine) (STV 1.0 0.9091)) +(: cnet_isa_4d49c1a084 (IsA bouncing_putty silicone) (STV 1.0 0.9091)) +(: cnet_isa_74a9b8b795 (IsA bound_morpheme morpheme) (STV 1.0 0.9091)) +(: cnet_isa_415d1a72f8 (IsA boundary extremity) (STV 1.0 0.9091)) +(: cnet_isa_01527cf855 (IsA boundary line) (STV 1.0 0.9091)) +(: cnet_isa_d9dfed84de (IsA boundary_condition condition) (STV 1.0 0.9091)) +(: cnet_isa_dcbda8119f (IsA boundary_layer physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_f9ae238540 (IsA boundary_line boundary) (STV 1.0 0.9091)) +(: cnet_isa_462a3432da (IsA bounder athlete) (STV 1.0 0.9091)) +(: cnet_isa_2d7225528a (IsA bounty generosity) (STV 1.0 0.9091)) +(: cnet_isa_4aae338545 (IsA bounty reward) (STV 1.0 0.9091)) +(: cnet_isa_1d4bdf4b78 (IsA bounty_hunter hunter) (STV 1.0 0.9091)) +(: cnet_isa_16b2764433 (IsA bounty_hunter pursuer) (STV 1.0 0.9091)) +(: cnet_isa_6bccf21166 (IsA bouquet flower_arrangement) (STV 1.0 0.9091)) +(: cnet_isa_c8088d9448 (IsA bouquet olfactory_property) (STV 1.0 0.9091)) +(: cnet_isa_dd8d4e4fd7 (IsA bourbon whiskey) (STV 1.0 0.9091)) +(: cnet_isa_bb6e5118e7 (IsA bourbon dynasty) (STV 1.0 0.9091)) +(: cnet_isa_c786473241 (IsA bourbon reactionary) (STV 1.0 0.9091)) +(: cnet_isa_c3ce3b2636 (IsA bourbon ruler) (STV 1.0 0.9091)) +(: cnet_isa_08d9d2bf13 (IsA bourgeois commoner) (STV 1.0 0.9091)) +(: cnet_isa_847ef4e14c (IsA bourguignon sauce) (STV 1.0 0.9091)) +(: cnet_isa_1c105f3316 (IsA bourn goal) (STV 1.0 0.9091)) +(: cnet_isa_e86bcb703a (IsA bourn boundary) (STV 1.0 0.9091)) +(: cnet_isa_718ea663cb (IsA bourtree elder) (STV 1.0 0.9091)) +(: cnet_isa_271ebf5e42 (IsA boustrophedon orthography) (STV 1.0 0.9091)) +(: cnet_isa_5151ee0aa0 (IsA bout contest) (STV 1.0 0.9091)) +(: cnet_isa_2ab914a9a0 (IsA bout time_period) (STV 1.0 0.9091)) +(: cnet_isa_89fb93f411 (IsA bouteloua monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_73b061283e (IsA boutique shop) (STV 1.0 0.9091)) +(: cnet_isa_d4f2d5d4cc (IsA boutonniere adornment) (STV 1.0 0.9091)) +(: cnet_isa_41f6e1c598 (IsA bouvier_des_flandre shepherd_dog) (STV 1.0 0.9091)) +(: cnet_isa_b75cc37371 (IsA bouyei tai) (STV 1.0 0.9091)) +(: cnet_isa_dedbf4fe7a (IsA bovid ruminant) (STV 1.0 0.9091)) +(: cnet_isa_ec813858df (IsA bovidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_5e289469dc (IsA bovinae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_b3a6670e4a (IsA bovine bovid) (STV 1.0 0.9091)) +(: cnet_isa_d3afcf6fd3 (IsA bovine_spongiform_encephalitis animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_d7be68b5b3 (IsA bovini tribe) (STV 1.0 0.9091)) +(: cnet_isa_05dae2fbb4 (IsA bow stroke) (STV 1.0 0.9091)) +(: cnet_isa_89bbf30553 (IsA bow decoration) (STV 1.0 0.9091)) +(: cnet_isa_07c12f50e5 (IsA bow front) (STV 1.0 0.9091)) +(: cnet_isa_d93c30b77b (IsA bow knot) (STV 1.0 0.9091)) +(: cnet_isa_dc629a9988 (IsA bow stick) (STV 1.0 0.9091)) +(: cnet_isa_9b2792ec5c (IsA bow weapon) (STV 1.0 0.9091)) +(: cnet_isa_25be16f896 (IsA bow gesture) (STV 1.0 0.9091)) +(: cnet_isa_b5ba2e7154 (IsA bow reverence) (STV 1.0 0.9091)) +(: cnet_isa_3dbaa3b5e2 (IsA bow thank) (STV 1.0 0.9091)) +(: cnet_isa_f678490b92 (IsA bow curve) (STV 1.0 0.9091)) +(: cnet_isa_d7fe23b1d3 (IsA bow_and_arrow weapon) (STV 1.0 0.9091)) +(: cnet_isa_e825b4cc6e (IsA bow_leg disability) (STV 1.0 0.9091)) +(: cnet_isa_ab90747ad2 (IsA bow_tie necktie) (STV 1.0 0.9091)) +(: cnet_isa_102534c4d9 (IsA bow_wow bark) (STV 1.0 0.9091)) +(: cnet_isa_39717ecb85 (IsA bowdleriser editor) (STV 1.0 0.9091)) +(: cnet_isa_bd30003647 (IsA bowdlerism censoring) (STV 1.0 0.9091)) +(: cnet_isa_53ecd4db59 (IsA bowdlerization expurgation) (STV 1.0 0.9091)) +(: cnet_isa_cd33525302 (IsA bowdlerization writing) (STV 1.0 0.9091)) +(: cnet_isa_ba504b8e97 (IsA bowed_stringed_instrument stringed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_039739ddd7 (IsA bowel_movement defecation) (STV 1.0 0.9091)) +(: cnet_isa_bbb65193a3 (IsA bowel center) (STV 1.0 0.9091)) +(: cnet_isa_575a64cbbe (IsA bower_actinidia vine) (STV 1.0 0.9091)) +(: cnet_isa_1ff864c341 (IsA bowerbird oscine) (STV 1.0 0.9091)) +(: cnet_isa_970e7a2822 (IsA bowfin ganoid) (STV 1.0 0.9091)) +(: cnet_isa_678fb465d9 (IsA bowhead baleen_whale) (STV 1.0 0.9091)) +(: cnet_isa_21fb61acc6 (IsA bowie_knife knife) (STV 1.0 0.9091)) +(: cnet_isa_d68335b53c (IsA bowiea liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_18581e29b2 (IsA bowing playing) (STV 1.0 0.9091)) +(: cnet_isa_9d42c41925 (IsA bowl ball) (STV 1.0 0.9091)) +(: cnet_isa_ad738cdef1 (IsA bowl container) (STV 1.0 0.9091)) +(: cnet_isa_c6052d8092 (IsA bowl dish) (STV 1.0 0.9091)) +(: cnet_isa_e32a8e9bcc (IsA bowl vessel) (STV 1.0 0.9091)) +(: cnet_isa_88a703c8b6 (IsA bowl containerful) (STV 1.0 0.9091)) +(: cnet_isa_64a03a9245 (IsA bowl concave_shape) (STV 1.0 0.9091)) +(: cnet_isa_ab1bae0a7e (IsA bowleg disability) (STV 1.0 0.9091)) +(: cnet_isa_1edb37e820 (IsA bowleg leg) (STV 1.0 0.9091)) +(: cnet_isa_3f5f6c95d6 (IsA bowler cricketer) (STV 1.0 0.9091)) +(: cnet_isa_97c9fe8f17 (IsA bowler player) (STV 1.0 0.9091)) +(: cnet_isa_5b5349b9ef (IsA bowler_hat hat) (STV 1.0 0.9091)) +(: cnet_isa_06fc0d2066 (IsA bowline loop_knot) (STV 1.0 0.9091)) +(: cnet_isa_47d92689cb (IsA bowling game) (STV 1.0 0.9339)) +(: cnet_isa_be9dbef60e (IsA bowling sport) (STV 1.0 0.9524)) +(: cnet_isa_215f79b388 (IsA bowling playing) (STV 1.0 0.9091)) +(: cnet_isa_f2c376cb9f (IsA bowling throw) (STV 1.0 0.9091)) +(: cnet_isa_e0fe92eaf7 (IsA bowling_alley building) (STV 1.0 0.9091)) +(: cnet_isa_4aae9fb123 (IsA bowling_alley lane) (STV 1.0 0.9091)) +(: cnet_isa_7aa8b47d62 (IsA bowling_ball ball) (STV 1.0 0.9091)) +(: cnet_isa_c37836d44f (IsA bowling_equipment game_equipment) (STV 1.0 0.9091)) +(: cnet_isa_f3f3dea567 (IsA bowling_green playing_field) (STV 1.0 0.9091)) +(: cnet_isa_2531a4696a (IsA bowling_league league) (STV 1.0 0.9091)) +(: cnet_isa_6b2a207739 (IsA bowling_pin bowling_equipment) (STV 1.0 0.9091)) +(: cnet_isa_9023955350 (IsA bowling_score score) (STV 1.0 0.9091)) +(: cnet_isa_d629062517 (IsA bowling_shoe shoe) (STV 1.0 0.9091)) +(: cnet_isa_49f096fb64 (IsA bowman_s_capsule membrane) (STV 1.0 0.9091)) +(: cnet_isa_89529a6824 (IsA bowsprit spar) (STV 1.0 0.9091)) +(: cnet_isa_cc8509ecd9 (IsA bowstring cord) (STV 1.0 0.9091)) +(: cnet_isa_53093ccd41 (IsA bowstring_hemp natural_fiber) (STV 1.0 0.9091)) +(: cnet_isa_0af6ba5691 (IsA bowstring_hemp hemp) (STV 1.0 0.9091)) +(: cnet_isa_f9e48a4caa (IsA bowtie_pasta pasta) (STV 1.0 0.9091)) +(: cnet_isa_abbf4c7db2 (IsA box container) (STV 1.0 0.9707)) +(: cnet_isa_34280c4496 (IsA box blow) (STV 1.0 0.9091)) +(: cnet_isa_1b41d690fd (IsA box area) (STV 1.0 0.9091)) +(: cnet_isa_6f5653f742 (IsA box compartment) (STV 1.0 0.9091)) +(: cnet_isa_e6fe579bd4 (IsA box seat) (STV 1.0 0.9091)) +(: cnet_isa_be0b1c5f6d (IsA box shrub) (STV 1.0 0.9091)) +(: cnet_isa_77234ced45 (IsA box containerful) (STV 1.0 0.9091)) +(: cnet_isa_4cf958637d (IsA box rectangle) (STV 1.0 0.9091)) +(: cnet_isa_e130871e15 (IsA box_beam beam) (STV 1.0 0.9091)) +(: cnet_isa_9697a9f884 (IsA box_calf calf) (STV 1.0 0.9091)) +(: cnet_isa_1045606332 (IsA box_camera camera) (STV 1.0 0.9091)) +(: cnet_isa_c1d845db43 (IsA box_coat coat) (STV 1.0 0.9091)) +(: cnet_isa_6b8ea4ceed (IsA box_elder maple) (STV 1.0 0.9091)) +(: cnet_isa_4b12e960e6 (IsA box_huckleberry huckleberry) (STV 1.0 0.9091)) +(: cnet_isa_f92bb5b165 (IsA box_kite kite) (STV 1.0 0.9091)) +(: cnet_isa_1573140cc6 (IsA box_number mailing_address) (STV 1.0 0.9091)) +(: cnet_isa_f6bc3da8d4 (IsA box_office office) (STV 1.0 0.9091)) +(: cnet_isa_b7c1cb7e24 (IsA box_office gross) (STV 1.0 0.9091)) +(: cnet_isa_107e6de735 (IsA box_pleat pleat) (STV 1.0 0.9091)) +(: cnet_isa_1fe9e7c91c (IsA box_seat seat) (STV 1.0 0.9091)) +(: cnet_isa_2c146b8853 (IsA box_spring bedspring) (STV 1.0 0.9091)) +(: cnet_isa_584af355b6 (IsA box_turtle turtle) (STV 1.0 0.9091)) +(: cnet_isa_faa338e590 (IsA box_wrench wrench) (STV 1.0 0.9091)) +(: cnet_isa_3d20424a11 (IsA boxcar freight_car) (STV 1.0 0.9091)) +(: cnet_isa_c4e7d6a313 (IsA boxcar twelve) (STV 1.0 0.9091)) +(: cnet_isa_8ba7afb1ec (IsA boxer working_dog) (STV 1.0 0.9091)) +(: cnet_isa_52a76e324d (IsA boxer chinese) (STV 1.0 0.9091)) +(: cnet_isa_6f9b22ed11 (IsA boxer combatant) (STV 1.0 0.9091)) +(: cnet_isa_91080ae0f9 (IsA boxfish plectognath) (STV 1.0 0.9091)) +(: cnet_isa_d6c723db3f (IsA boxing contact_sport) (STV 1.0 0.9091)) +(: cnet_isa_acc3b30faf (IsA boxing_day legal_holiday) (STV 1.0 0.9091)) +(: cnet_isa_327769254a (IsA boxing_equipment sport_equipment) (STV 1.0 0.9091)) +(: cnet_isa_9dfe01804e (IsA boxing_glove boxing_equipment) (STV 1.0 0.9091)) +(: cnet_isa_e8ffd4ad9d (IsA boxing_match match) (STV 1.0 0.9091)) +(: cnet_isa_a8d9f537cf (IsA boxing_ring ring) (STV 1.0 0.9091)) +(: cnet_isa_1c702f9046 (IsA boxwood wood) (STV 1.0 0.9091)) +(: cnet_isa_675a8ebc23 (IsA boy man) (STV 1.0 0.9091)) +(: cnet_isa_885449c7b4 (IsA boy_making_sandwich making_sandwich) (STV 1.0 0.9091)) +(: cnet_isa_001afcb88e (IsA boy_scout innocent) (STV 1.0 0.9091)) +(: cnet_isa_5c89a4b669 (IsA boy_scout scout) (STV 1.0 0.9091)) +(: cnet_isa_516a551560 (IsA boy_scout movement) (STV 1.0 0.9091)) +(: cnet_isa_ec0e525926 (IsA boy_scout_of_america corporation) (STV 1.0 0.9091)) +(: cnet_isa_befcc6ee64 (IsA boy_skateboarding skateboarding) (STV 1.0 0.9091)) +(: cnet_isa_421cc41755 (IsA boy_wonder male) (STV 1.0 0.9091)) +(: cnet_isa_24c7e301a3 (IsA boy_wonder prodigy) (STV 1.0 0.9091)) +(: cnet_isa_5001f09ef6 (IsA boycott protest) (STV 1.0 0.9091)) +(: cnet_isa_523adc6d0a (IsA boyfriend lover) (STV 1.0 0.9091)) +(: cnet_isa_48a3fd85ac (IsA boyfriend man) (STV 1.0 0.9091)) +(: cnet_isa_35bc78b471 (IsA boyhood childhood) (STV 1.0 0.9091)) +(: cnet_isa_6ebd7151a0 (IsA boyishness masculinity) (STV 1.0 0.9091)) +(: cnet_isa_02acd7692f (IsA boykinia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d245bee2a9 (IsA boyle_s_law law) (STV 1.0 0.9091)) +(: cnet_isa_5c264dc6d0 (IsA boysenberry berry) (STV 1.0 0.9091)) +(: cnet_isa_c74635581c (IsA boysenberry western_blackberry) (STV 1.0 0.9091)) +(: cnet_isa_7dbf6aa8f2 (IsA brabancon_griffon griffon) (STV 1.0 0.9091)) +(: cnet_isa_89bcd18792 (IsA brace dental_appliance) (STV 1.0 0.9091)) +(: cnet_isa_ab2f43637f (IsA brace man_s_clothing) (STV 1.0 0.9091)) +(: cnet_isa_a2c3c1e478 (IsA brace rope) (STV 1.0 0.9091)) +(: cnet_isa_317333c0bc (IsA brace stock) (STV 1.0 0.9091)) +(: cnet_isa_bf01166881 (IsA brace strengthener) (STV 1.0 0.9091)) +(: cnet_isa_aba4b63ade (IsA brace structural_member) (STV 1.0 0.9091)) +(: cnet_isa_3412e537b6 (IsA brace support) (STV 1.0 0.9091)) +(: cnet_isa_44b7250016 (IsA brace punctuation) (STV 1.0 0.9091)) +(: cnet_isa_844c274d50 (IsA brace_and_bit drill) (STV 1.0 0.9091)) +(: cnet_isa_bc6183b263 (IsA brace_wrench wrench) (STV 1.0 0.9091)) +(: cnet_isa_a86352be61 (IsA bracelet jewelry) (STV 1.0 0.9091)) +(: cnet_isa_23a7c185f1 (IsA bracelet_wood shrub) (STV 1.0 0.9091)) +(: cnet_isa_1efd9653f5 (IsA bracer protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_011f318e70 (IsA bracer tonic) (STV 1.0 0.9091)) +(: cnet_isa_c3a623c280 (IsA bracero laborer) (STV 1.0 0.9091)) +(: cnet_isa_487d2ecb86 (IsA brachial_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_d18a45570b (IsA brachial_plexus nerve_plexus) (STV 1.0 0.9091)) +(: cnet_isa_c581487c6a (IsA brachial_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_15be1c01b5 (IsA brachiation locomotion) (STV 1.0 0.9091)) +(: cnet_isa_3d3439aca4 (IsA brachinus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_4bc6ea0039 (IsA brachiocephalic_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_e8bd14abf5 (IsA brachiopod invertebrate) (STV 1.0 0.9091)) +(: cnet_isa_0412f12bf2 (IsA brachiopoda phylum) (STV 1.0 0.9091)) +(: cnet_isa_9afa85a7a2 (IsA brachium branch) (STV 1.0 0.9091)) +(: cnet_isa_5afcbd5806 (IsA brachycephalic adult) (STV 1.0 0.9091)) +(: cnet_isa_abc8156d77 (IsA brachycephalism quality) (STV 1.0 0.9091)) +(: cnet_isa_c85e864a8a (IsA brachychiton dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_49b474cba9 (IsA brachycome asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ad294fd829 (IsA brachystegia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8fcfd9c1c7 (IsA brachytactyly abnormality) (STV 1.0 0.9091)) +(: cnet_isa_64857d3daf (IsA brachyura animal_order) (STV 1.0 0.9091)) +(: cnet_isa_8accd2b0e6 (IsA brachyuran crustacean) (STV 1.0 0.9091)) +(: cnet_isa_c9d6d6a3e2 (IsA bracken fern) (STV 1.0 0.9091)) +(: cnet_isa_996181b3fb (IsA bracket support) (STV 1.0 0.9091)) +(: cnet_isa_b05580fe77 (IsA bracket punctuation) (STV 1.0 0.9091)) +(: cnet_isa_8394fa2ad3 (IsA bracket set) (STV 1.0 0.9091)) +(: cnet_isa_03b1e1b6bc (IsA bracket_creep income_tax) (STV 1.0 0.9091)) +(: cnet_isa_3854d4343f (IsA bracket_fungus polypore) (STV 1.0 0.9091)) +(: cnet_isa_188b1ed936 (IsA brackishness saltiness) (STV 1.0 0.9091)) +(: cnet_isa_3e3857eef6 (IsA bract husk) (STV 1.0 0.9091)) +(: cnet_isa_62e6c58f81 (IsA bracteole bract) (STV 1.0 0.9091)) +(: cnet_isa_fc5c3a6378 (IsA brad nail) (STV 1.0 0.9091)) +(: cnet_isa_ff956fa357 (IsA bradawl awl) (STV 1.0 0.9091)) +(: cnet_isa_03f9cbfefc (IsA bradley_s_spleenwort spleenwort) (STV 1.0 0.9091)) +(: cnet_isa_de63ac49b3 (IsA bradley_method_of_childbirth natural_childbirth) (STV 1.0 0.9091)) +(: cnet_isa_5384ae1476 (IsA bradycardia cardiac_arrhythmia) (STV 1.0 0.9091)) +(: cnet_isa_34e3e8a457 (IsA bradypodidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_153b9aa914 (IsA bradypus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_5d2fd1452d (IsA brae hillside) (STV 1.0 0.9091)) +(: cnet_isa_d738c97f27 (IsA brag boast) (STV 1.0 0.9091)) +(: cnet_isa_1f005c6339 (IsA braggadocio boast) (STV 1.0 0.9091)) +(: cnet_isa_7066369da0 (IsA bragger egotist) (STV 1.0 0.9091)) +(: cnet_isa_7037404614 (IsA brahman bovine) (STV 1.0 0.9091)) +(: cnet_isa_0c71c22be9 (IsA brahman varna) (STV 1.0 0.9091)) +(: cnet_isa_727dd66917 (IsA brahman aristocrat) (STV 1.0 0.9091)) +(: cnet_isa_f95d48f4bd (IsA brahman hindustani) (STV 1.0 0.9091)) +(: cnet_isa_098b5cdee1 (IsA brahmanism religion) (STV 1.0 0.9091)) +(: cnet_isa_b733d76150 (IsA brahmanism hinduism) (STV 1.0 0.9091)) +(: cnet_isa_9d3dfe01f5 (IsA brahmi script) (STV 1.0 0.9091)) +(: cnet_isa_15f537808b (IsA brahm music) (STV 1.0 0.9091)) +(: cnet_isa_86b5d2f7e3 (IsA brahui north_dravidian) (STV 1.0 0.9091)) +(: cnet_isa_8774d31f5f (IsA brahui pakistani) (STV 1.0 0.9091)) +(: cnet_isa_51389dd494 (IsA braid trimming) (STV 1.0 0.9091)) +(: cnet_isa_8e4036c6a2 (IsA braid hairdo) (STV 1.0 0.9091)) +(: cnet_isa_d148f700d4 (IsA brail net) (STV 1.0 0.9091)) +(: cnet_isa_6bb3e5261d (IsA brail rope) (STV 1.0 0.9091)) +(: cnet_isa_005ac06654 (IsA braille point_system) (STV 1.0 0.9091)) +(: cnet_isa_60256e9ed0 (IsA brain biological_organ) (STV 1.0 0.9339)) +(: cnet_isa_503c10dd68 (IsA brain neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_72128d2cfe (IsA brain organ) (STV 1.0 0.9091)) +(: cnet_isa_daf970a5f5 (IsA brain part_of_human_body) (STV 1.0 0.9091)) +(: cnet_isa_4897a1f83e (IsA brain where_mind_exist) (STV 1.0 0.9091)) +(: cnet_isa_6eac73b53f (IsA brain intelligence) (STV 1.0 0.9091)) +(: cnet_isa_216a122313 (IsA brain variety_meat) (STV 1.0 0.9091)) +(: cnet_isa_a7adc54fbe (IsA brain_cell nerve_cell) (STV 1.0 0.9091)) +(: cnet_isa_dd71fc5b49 (IsA brain_coral stony_coral) (STV 1.0 0.9091)) +(: cnet_isa_eb0409a7e9 (IsA brain_damage injury) (STV 1.0 0.9091)) +(: cnet_isa_3d5244e3ee (IsA brain_damage nervous_disorder) (STV 1.0 0.9091)) +(: cnet_isa_ea791bf4bb (IsA brain_death death) (STV 1.0 0.9091)) +(: cnet_isa_17aeaac720 (IsA brain_disorder nervous_disorder) (STV 1.0 0.9091)) +(: cnet_isa_520e436d29 (IsA brain_drain drain) (STV 1.0 0.9091)) +(: cnet_isa_5d2cdc051a (IsA brain_science neuroscience) (STV 1.0 0.9091)) +(: cnet_isa_7263a3756c (IsA brain_surgery operation) (STV 1.0 0.9091)) +(: cnet_isa_9e96ca6345 (IsA brain_tumor tumor) (STV 1.0 0.9091)) +(: cnet_isa_5c0c9d6a23 (IsA brainstem neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_6a2ae214d8 (IsA brainstorming group_action) (STV 1.0 0.9091)) +(: cnet_isa_ba95d09d71 (IsA brainwashing indoctrination) (STV 1.0 0.9091)) +(: cnet_isa_ebb2b1ea7f (IsA brainwave bioelectricity) (STV 1.0 0.9091)) +(: cnet_isa_9ae261f51f (IsA brainworker thinker) (STV 1.0 0.9091)) +(: cnet_isa_6711a91125 (IsA braising cooking) (STV 1.0 0.9091)) +(: cnet_isa_cc708319f2 (IsA brake restraint) (STV 1.0 0.9091)) +(: cnet_isa_6c054c5e22 (IsA brake brush) (STV 1.0 0.9091)) +(: cnet_isa_f2f8b4b466 (IsA brake fern) (STV 1.0 0.9091)) +(: cnet_isa_abc88cb989 (IsA brake_band band) (STV 1.0 0.9091)) +(: cnet_isa_c34beebec2 (IsA brake_cylinder cylinder) (STV 1.0 0.9091)) +(: cnet_isa_08f2d2c989 (IsA brake_disk disk) (STV 1.0 0.9091)) +(: cnet_isa_74b7aacc78 (IsA brake_drum cylinder) (STV 1.0 0.9091)) +(: cnet_isa_db1a901976 (IsA brake_failure breakdown) (STV 1.0 0.9091)) +(: cnet_isa_20d9505e3c (IsA brake_lining lining) (STV 1.0 0.9091)) +(: cnet_isa_df627d72fb (IsA brake_pad restraint) (STV 1.0 0.9091)) +(: cnet_isa_6f9abba381 (IsA brake_pedal pedal) (STV 1.0 0.9091)) +(: cnet_isa_a021e00dac (IsA brake_shoe restraint) (STV 1.0 0.9091)) +(: cnet_isa_2574af349f (IsA brake_system brake) (STV 1.0 0.9091)) +(: cnet_isa_515e510304 (IsA brakeman trainman) (STV 1.0 0.9091)) +(: cnet_isa_e2ecc4b54e (IsA brama fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_9691b59758 (IsA bramble woody_plant) (STV 1.0 0.9091)) +(: cnet_isa_a3d23f75cd (IsA bramble_bush bramble) (STV 1.0 0.9091)) +(: cnet_isa_bc5193dcb8 (IsA brambling finch) (STV 1.0 0.9091)) +(: cnet_isa_f1b32189f4 (IsA bramidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_b0c4697732 (IsA bramley_s_seedling cooking_apple) (STV 1.0 0.9091)) +(: cnet_isa_d40edcb5dc (IsA bran roughage) (STV 1.0 0.9091)) +(: cnet_isa_bc0d02bee3 (IsA bran chaff) (STV 1.0 0.9091)) +(: cnet_isa_e5844afa99 (IsA bran_flake cold_cereal) (STV 1.0 0.9091)) +(: cnet_isa_e4adb85638 (IsA bran_muffin muffin) (STV 1.0 0.9091)) +(: cnet_isa_39597ab337 (IsA branch division) (STV 1.0 0.9091)) +(: cnet_isa_c5325618cc (IsA branch stream) (STV 1.0 0.9091)) +(: cnet_isa_d44b4b0f6c (IsA branch stalk) (STV 1.0 0.9091)) +(: cnet_isa_c17e2f8273 (IsA branch subfigure) (STV 1.0 0.9091)) +(: cnet_isa_efa322c683 (IsA branch_line line) (STV 1.0 0.9091)) +(: cnet_isa_cc346be3ef (IsA branch_water water) (STV 1.0 0.9091)) +(: cnet_isa_c26bc314a2 (IsA branched_chain open_chain) (STV 1.0 0.9091)) +(: cnet_isa_145c5c9ae9 (IsA branching division) (STV 1.0 0.9091)) +(: cnet_isa_98ab303377 (IsA branchiobdella worm_genus) (STV 1.0 0.9091)) +(: cnet_isa_3b9624a007 (IsA branchiobdellidae worm_family) (STV 1.0 0.9091)) +(: cnet_isa_2f655db4c5 (IsA branchiopod_crustacean crustacean) (STV 1.0 0.9091)) +(: cnet_isa_47d244639a (IsA branchiopoda class) (STV 1.0 0.9091)) +(: cnet_isa_11e93ace2c (IsA branchiostegidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_d189a062c9 (IsA branchiura animal_order) (STV 1.0 0.9091)) +(: cnet_isa_9227004020 (IsA branchlet branch) (STV 1.0 0.9091)) +(: cnet_isa_d2b8435cc0 (IsA brand kind) (STV 1.0 0.9091)) +(: cnet_isa_eaeaa17db3 (IsA brand marker) (STV 1.0 0.9091)) +(: cnet_isa_8c76e828ac (IsA brand firewood) (STV 1.0 0.9091)) +(: cnet_isa_295455ef32 (IsA brand_name_drug drug) (STV 1.0 0.9091)) +(: cnet_isa_53a269c264 (IsA brand_newness newness) (STV 1.0 0.9091)) +(: cnet_isa_5094a58598 (IsA brandy liquor) (STV 1.0 0.9091)) +(: cnet_isa_141d0bd08f (IsA brandy_sling sling) (STV 1.0 0.9091)) +(: cnet_isa_eb6edd2bc4 (IsA brandyball candy) (STV 1.0 0.9091)) +(: cnet_isa_240ee7106b (IsA brandysnap gingersnap) (STV 1.0 0.9091)) +(: cnet_isa_1c0a908885 (IsA brant goose) (STV 1.0 0.9091)) +(: cnet_isa_12d6c02708 (IsA branta bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_a57bd105a2 (IsA brasenia magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2de9d7d500 (IsA brashness recklessness) (STV 1.0 0.9091)) +(: cnet_isa_ca1c80e678 (IsA brass heavy_alloy) (STV 1.0 0.9091)) +(: cnet_isa_0c26a3a9a3 (IsA brass decoration) (STV 1.0 0.9091)) +(: cnet_isa_bf9d49cbd2 (IsA brass memorial) (STV 1.0 0.9091)) +(: cnet_isa_b5ecf8ef04 (IsA brass wind_instrument) (STV 1.0 0.9091)) +(: cnet_isa_13b20021b1 (IsA brass copper_base_alloy) (STV 1.0 0.9091)) +(: cnet_isa_cfc1a19274 (IsA brass_band band) (STV 1.0 0.9091)) +(: cnet_isa_17ac4a0822 (IsA brass_button flower) (STV 1.0 0.9091)) +(: cnet_isa_f6d91ae01a (IsA brass_drum loud_musical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_0ab8089138 (IsA brass_family class) (STV 1.0 0.9091)) +(: cnet_isa_8a8299fc58 (IsA brass_hat military_officer) (STV 1.0 0.9091)) +(: cnet_isa_71a639e700 (IsA brass_knuck weapon) (STV 1.0 0.9091)) +(: cnet_isa_e3962751e8 (IsA brass_monkey base) (STV 1.0 0.9091)) +(: cnet_isa_930000475a (IsA brass_ring opportunity) (STV 1.0 0.9091)) +(: cnet_isa_8e6296564c (IsA brass_section section) (STV 1.0 0.9091)) +(: cnet_isa_fec2af1d2a (IsA brassard armor_plate) (STV 1.0 0.9091)) +(: cnet_isa_6a1da90427 (IsA brassavola orchid) (STV 1.0 0.9091)) +(: cnet_isa_a9718753b1 (IsA brasserie restaurant) (STV 1.0 0.9091)) +(: cnet_isa_d24a00de46 (IsA brassia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a36980fd54 (IsA brassica dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1e25c0ac02 (IsA brassie wood) (STV 1.0 0.9091)) +(: cnet_isa_b19cf0f6eb (IsA brassiere undergarment) (STV 1.0 0.9091)) +(: cnet_isa_e4416ff925 (IsA brassiere woman_s_clothing) (STV 1.0 0.9091)) +(: cnet_isa_91b946cfd0 (IsA brattice partition) (STV 1.0 0.9091)) +(: cnet_isa_9b250312b4 (IsA bratwurst pork_sausage) (STV 1.0 0.9091)) +(: cnet_isa_e2168078aa (IsA braun_s_holly_fern holly_fern) (STV 1.0 0.9091)) +(: cnet_isa_21100cf24f (IsA bravado ostentation) (STV 1.0 0.9091)) +(: cnet_isa_c80b6b9e25 (IsA brave people) (STV 1.0 0.9091)) +(: cnet_isa_3b41e5cb4b (IsA brave warrior) (STV 1.0 0.9091)) +(: cnet_isa_6090e62fbb (IsA bravo cheer) (STV 1.0 0.9091)) +(: cnet_isa_9d666c2165 (IsA bravura virtuosity) (STV 1.0 0.9091)) +(: cnet_isa_0682bf28e3 (IsA brawl fight) (STV 1.0 0.9091)) +(: cnet_isa_b89a0211a9 (IsA brawler combatant) (STV 1.0 0.9091)) +(: cnet_isa_5a01a79607 (IsA brawn strength) (STV 1.0 0.9091)) +(: cnet_isa_ce4007a12b (IsA braxton_hick_contraction contraction) (STV 1.0 0.9091)) +(: cnet_isa_57eeae01d0 (IsA bray cry) (STV 1.0 0.9091)) +(: cnet_isa_52fd5d19c3 (IsA brazier heater) (STV 1.0 0.9091)) +(: cnet_isa_d081afeff3 (IsA brazil country) (STV 1.0 0.9677)) +(: cnet_isa_9a027e5fba (IsA brazil country_in_south_america) (STV 1.0 0.9091)) +(: cnet_isa_eb6d2b77d9 (IsA brazil in_south_america) (STV 1.0 0.9608)) +(: cnet_isa_d666f441ca (IsA brazil very_large_country) (STV 1.0 0.9091)) +(: cnet_isa_a337cb4e19 (IsA brazil_nut edible_nut) (STV 1.0 0.9091)) +(: cnet_isa_308bab6cd0 (IsA brazil_nut nut_tree) (STV 1.0 0.9091)) +(: cnet_isa_253e52448c (IsA brazilian south_american) (STV 1.0 0.9091)) +(: cnet_isa_106ff97cd2 (IsA brazilian_guava fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_73b69c4c3a (IsA brazilian_ironwood tree) (STV 1.0 0.9091)) +(: cnet_isa_ecdff05434 (IsA brazilian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_4811bbb21a (IsA brazilian_pepper_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_a1273c86d7 (IsA brazilian_rosewood rosewood) (STV 1.0 0.9091)) +(: cnet_isa_bbdb45665b (IsA brazilian_trumpeter trumpeter) (STV 1.0 0.9091)) +(: cnet_isa_618420a4d0 (IsA brazilwood tree) (STV 1.0 0.9091)) +(: cnet_isa_e6e97f2412 (IsA brazilwood wood) (STV 1.0 0.9091)) +(: cnet_isa_c690b7c3c6 (IsA breach failure) (STV 1.0 0.9091)) +(: cnet_isa_1bf12c4a4d (IsA breach opening) (STV 1.0 0.9091)) +(: cnet_isa_ee24b34836 (IsA breach_of_contract breach) (STV 1.0 0.9091)) +(: cnet_isa_6c8b0eed0f (IsA breach_of_covenant_of_warranty breach_of_contract) (STV 1.0 0.9091)) +(: cnet_isa_b5b5bb158b (IsA breach_of_duty breach) (STV 1.0 0.9091)) +(: cnet_isa_45b938d343 (IsA breach_of_promise breach_of_contract) (STV 1.0 0.9091)) +(: cnet_isa_9756866104 (IsA breach_of_trust breach_of_contract) (STV 1.0 0.9091)) +(: cnet_isa_3129e105bd (IsA breach_of_trust_with_fraudulent_intent larceny) (STV 1.0 0.9091)) +(: cnet_isa_f32527bff4 (IsA breach_of_warranty breach_of_contract) (STV 1.0 0.9091)) +(: cnet_isa_6dca2b52c9 (IsA bread structural_element_in_sandwich) (STV 1.0 0.9339)) +(: cnet_isa_edb40ebfb6 (IsA bread baked_good) (STV 1.0 0.9091)) +(: cnet_isa_1b634bb335 (IsA bread starche) (STV 1.0 0.9091)) +(: cnet_isa_ae29035bc9 (IsA bread_and_butter_issue issue) (STV 1.0 0.9091)) +(: cnet_isa_1466922141 (IsA bread_and_butter_pickle sweet_pickle) (STV 1.0 0.9091)) +(: cnet_isa_bed90bc8a3 (IsA bread_and_steak food) (STV 1.0 0.9339)) +(: cnet_isa_56d71ca06e (IsA bread_bin container) (STV 1.0 0.9091)) +(: cnet_isa_f562ffeee5 (IsA bread_dough dough) (STV 1.0 0.9091)) +(: cnet_isa_d1d2e1b5a9 (IsA bread_knife knife) (STV 1.0 0.9091)) +(: cnet_isa_bc9ccfce63 (IsA bread_mold rhizopus) (STV 1.0 0.9091)) +(: cnet_isa_6299d38190 (IsA bread_sauce sauce) (STV 1.0 0.9091)) +(: cnet_isa_10e2fdede2 (IsA breadbasket basket) (STV 1.0 0.9091)) +(: cnet_isa_2eadc1d0af (IsA breadbasket region) (STV 1.0 0.9091)) +(: cnet_isa_9dc98f8987 (IsA breadboard board) (STV 1.0 0.9091)) +(: cnet_isa_1c42b80ed2 (IsA breadcrumb crumb) (STV 1.0 0.9091)) +(: cnet_isa_6f64a6a82e (IsA breadfruit edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_39c9c0b3d7 (IsA breadfruit fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_84da60542c (IsA breadline queue) (STV 1.0 0.9091)) +(: cnet_isa_e2cc932605 (IsA breadroot herb) (STV 1.0 0.9091)) +(: cnet_isa_160ddbc4a5 (IsA breadstick bread) (STV 1.0 0.9091)) +(: cnet_isa_5aafd0087f (IsA breadstuff foodstuff) (STV 1.0 0.9091)) +(: cnet_isa_76e609353c (IsA breadth intelligence) (STV 1.0 0.9091)) +(: cnet_isa_09ddd847a2 (IsA breadwinner earner) (STV 1.0 0.9091)) +(: cnet_isa_0fdc1db74f (IsA break dash) (STV 1.0 0.9091)) +(: cnet_isa_26736eea18 (IsA break delay) (STV 1.0 0.9091)) +(: cnet_isa_daaff7e71b (IsA break escape) (STV 1.0 0.9091)) +(: cnet_isa_1083bbaaf8 (IsA break stroke) (STV 1.0 0.9091)) +(: cnet_isa_6458520e02 (IsA break accident) (STV 1.0 0.9091)) +(: cnet_isa_e86608b505 (IsA break change) (STV 1.0 0.9091)) +(: cnet_isa_214b4d2c2c (IsA break separation) (STV 1.0 0.9091)) +(: cnet_isa_a2c3c24c6f (IsA break score) (STV 1.0 0.9091)) +(: cnet_isa_792985caba (IsA break_dancing dancing) (STV 1.0 0.9091)) +(: cnet_isa_67b3ad2080 (IsA break_seal seal) (STV 1.0 0.9091)) +(: cnet_isa_7e82f97b9c (IsA breakable article) (STV 1.0 0.9091)) +(: cnet_isa_d760db2f14 (IsA breakableness consistency) (STV 1.0 0.9091)) +(: cnet_isa_d5b663931a (IsA breakage change_of_integrity) (STV 1.0 0.9091)) +(: cnet_isa_f8ac55c36c (IsA breakage reimbursement) (STV 1.0 0.9091)) +(: cnet_isa_e2e7358cc9 (IsA breakage indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_d838fdd1be (IsA breakaway secession) (STV 1.0 0.9091)) +(: cnet_isa_ab724ee4c8 (IsA breakax tree) (STV 1.0 0.9091)) +(: cnet_isa_cc7ab7565a (IsA breakdown analysis) (STV 1.0 0.9091)) +(: cnet_isa_171f6019e6 (IsA breakdown failure) (STV 1.0 0.9091)) +(: cnet_isa_3344be83a7 (IsA breakdown collapse) (STV 1.0 0.9091)) +(: cnet_isa_8fe6510fde (IsA breaker quarryman) (STV 1.0 0.9091)) +(: cnet_isa_bdde51960e (IsA breakfast meal) (STV 1.0 0.9454)) +(: cnet_isa_5c7a1833a5 (IsA breakfast morning_meal) (STV 1.0 0.9091)) +(: cnet_isa_48de1fe93b (IsA breakfast_area area) (STV 1.0 0.9091)) +(: cnet_isa_c2efb03c7d (IsA breakfast_food food) (STV 1.0 0.9091)) +(: cnet_isa_7dbf525803 (IsA breakfast_table table) (STV 1.0 0.9091)) +(: cnet_isa_e7014e89b9 (IsA breakfast_time mealtime) (STV 1.0 0.9091)) +(: cnet_isa_3e719d59ff (IsA breaking_away departure) (STV 1.0 0.9091)) +(: cnet_isa_e50a34d2fb (IsA breaking_off break) (STV 1.0 0.9091)) +(: cnet_isa_1fc4e3800c (IsA breaking_point stress) (STV 1.0 0.9091)) +(: cnet_isa_3f01f499d5 (IsA breaking_point tension) (STV 1.0 0.9091)) +(: cnet_isa_9d065a36ec (IsA breakthrough discovery) (STV 1.0 0.9091)) +(: cnet_isa_41bd33b4ae (IsA breakthrough penetration) (STV 1.0 0.9091)) +(: cnet_isa_00ecfaf121 (IsA breakwater barrier) (STV 1.0 0.9091)) +(: cnet_isa_b194dbee28 (IsA bream freshwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_59e4b83cee (IsA bream saltwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_e7b6bfd2a4 (IsA breast external_body_part) (STV 1.0 0.9091)) +(: cnet_isa_68df5472b2 (IsA breast mammary_gland) (STV 1.0 0.9091)) +(: cnet_isa_c69f8b877c (IsA breast helping) (STV 1.0 0.9091)) +(: cnet_isa_5037393e1c (IsA breast_cancer carcinoma) (STV 1.0 0.9091)) +(: cnet_isa_7434293e7b (IsA breast_drill drill) (STV 1.0 0.9091)) +(: cnet_isa_805b4852f8 (IsA breast_implant implant) (STV 1.0 0.9091)) +(: cnet_isa_78998a91e7 (IsA breast_of_lamb cut_of_lamb) (STV 1.0 0.9091)) +(: cnet_isa_fe40bf471e (IsA breast_of_veal veal_roast) (STV 1.0 0.9091)) +(: cnet_isa_e9b130c6a6 (IsA breast_pocket pocket) (STV 1.0 0.9091)) +(: cnet_isa_377a41ddfd (IsA breastplate armor_plate) (STV 1.0 0.9091)) +(: cnet_isa_9343836224 (IsA breaststroke swimming_stroke) (STV 1.0 0.9091)) +(: cnet_isa_f69896eac7 (IsA breaststroker swimmer) (STV 1.0 0.9091)) +(: cnet_isa_594cdf3a6b (IsA breath bodily_process) (STV 1.0 0.9091)) +(: cnet_isa_9e19fa7a7d (IsA breath breeze) (STV 1.0 0.9091)) +(: cnet_isa_8f22babf55 (IsA breath air) (STV 1.0 0.9091)) +(: cnet_isa_9543566caa (IsA breath respite) (STV 1.0 0.9091)) +(: cnet_isa_92790f2dca (IsA breath_of_fresh_air easing) (STV 1.0 0.9091)) +(: cnet_isa_7fcdc7e0e7 (IsA breathalyzer device) (STV 1.0 0.9091)) +(: cnet_isa_bcf4005cde (IsA breathing bodily_process) (STV 1.0 0.9091)) +(: cnet_isa_b35a7aeca7 (IsA breathing_device device) (STV 1.0 0.9091)) +(: cnet_isa_13214438e8 (IsA breathing_room room) (STV 1.0 0.9091)) +(: cnet_isa_3b5bbb835a (IsA breccia rudaceous_rock) (STV 1.0 0.9091)) +(: cnet_isa_990e4d32c1 (IsA breech opening) (STV 1.0 0.9091)) +(: cnet_isa_e415fe642d (IsA breech_delivery delivery) (STV 1.0 0.9091)) +(: cnet_isa_906d54aeb9 (IsA breechblock blockage) (STV 1.0 0.9091)) +(: cnet_isa_e79c9b32c9 (IsA breechcloth garment) (STV 1.0 0.9091)) +(: cnet_isa_34c4b6ba5d (IsA breeche pair_of_trouser) (STV 1.0 0.9091)) +(: cnet_isa_9b128fc180 (IsA breeche_buoy life_buoy) (STV 1.0 0.9091)) +(: cnet_isa_badeb08318 (IsA breechloader gun) (STV 1.0 0.9091)) +(: cnet_isa_07cece3876 (IsA breed type) (STV 1.0 0.9091)) +(: cnet_isa_cbed8f5b03 (IsA breed animal_group) (STV 1.0 0.9091)) +(: cnet_isa_24c4db5c8c (IsA breed variety) (STV 1.0 0.9091)) +(: cnet_isa_5582a54316 (IsA breeder stockman) (STV 1.0 0.9091)) +(: cnet_isa_dc40beb2a8 (IsA breeder_reactor nuclear_reactor) (STV 1.0 0.9091)) +(: cnet_isa_18d96de318 (IsA breeding production) (STV 1.0 0.9091)) +(: cnet_isa_17bee96348 (IsA breeding socialization) (STV 1.0 0.9091)) +(: cnet_isa_c0d3c23be6 (IsA breeding elegance) (STV 1.0 0.9091)) +(: cnet_isa_997c54718c (IsA breeding_ground tract) (STV 1.0 0.9091)) +(: cnet_isa_d20eb413db (IsA breeze wind) (STV 1.0 0.9091)) +(: cnet_isa_d457933427 (IsA breeziness liveliness) (STV 1.0 0.9091)) +(: cnet_isa_51d1efe8c5 (IsA breeziness storminess) (STV 1.0 0.9091)) +(: cnet_isa_c0df72fb6f (IsA bregma craniometric_point) (STV 1.0 0.9091)) +(: cnet_isa_a36889ece3 (IsA bren submachine_gun) (STV 1.0 0.9091)) +(: cnet_isa_606c83131c (IsA brethren sect) (STV 1.0 0.9091)) +(: cnet_isa_b5527a9901 (IsA breton brythonic) (STV 1.0 0.9091)) +(: cnet_isa_fb63ba6546 (IsA breton french_person) (STV 1.0 0.9091)) +(: cnet_isa_2feb8e85a9 (IsA breve diacritical_mark) (STV 1.0 0.9091)) +(: cnet_isa_72aed62d8d (IsA brevet document) (STV 1.0 0.9091)) +(: cnet_isa_0e0e9b3b11 (IsA breviary prayer_book) (STV 1.0 0.9091)) +(: cnet_isa_9d2a8d2277 (IsA brevity duration) (STV 1.0 0.9091)) +(: cnet_isa_aa0ce48601 (IsA brevity terseness) (STV 1.0 0.9091)) +(: cnet_isa_fd0ce05c1f (IsA brevoortia fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_1f3dcaaff4 (IsA brew alcohol) (STV 1.0 0.9091)) +(: cnet_isa_e0e92ed8cd (IsA brewer_s_mole mole) (STV 1.0 0.9091)) +(: cnet_isa_6e128cb4cd (IsA brewer_s_yeast yeast) (STV 1.0 0.9091)) +(: cnet_isa_d4bc9a1b15 (IsA brewer maker) (STV 1.0 0.9091)) +(: cnet_isa_8a5b55b212 (IsA brewer manufacturer) (STV 1.0 0.9091)) +(: cnet_isa_0e9db7c232 (IsA brewery plant) (STV 1.0 0.9091)) +(: cnet_isa_fb8b250a96 (IsA brewing production) (STV 1.0 0.9091)) +(: cnet_isa_5e1a555104 (IsA brewpub brewery) (STV 1.0 0.9091)) +(: cnet_isa_5f52f1e3b7 (IsA brewpub restaurant) (STV 1.0 0.9091)) +(: cnet_isa_214ef9acc8 (IsA briar pipe) (STV 1.0 0.9091)) +(: cnet_isa_714e017834 (IsA briard shepherd_dog) (STV 1.0 0.9091)) +(: cnet_isa_ab7c921e7e (IsA briarroot root) (STV 1.0 0.9091)) +(: cnet_isa_4d6dfcaf1b (IsA briarwood wood) (STV 1.0 0.9091)) +(: cnet_isa_2cd2966c3e (IsA bribe payment) (STV 1.0 0.9091)) +(: cnet_isa_9015e345e2 (IsA briber criminal) (STV 1.0 0.9091)) +(: cnet_isa_d0b9f1041d (IsA bribery felony) (STV 1.0 0.9091)) +(: cnet_isa_37130541e7 (IsA bric_brac curio) (STV 1.0 0.9091)) +(: cnet_isa_6808d44aac (IsA brick building_material) (STV 1.0 0.9091)) +(: cnet_isa_29a0ccd069 (IsA brick ceramic) (STV 1.0 0.9091)) +(: cnet_isa_44ff7ddf26 (IsA brick good_person) (STV 1.0 0.9091)) +(: cnet_isa_8e9bf14282 (IsA brick_cheese cheese) (STV 1.0 0.9091)) +(: cnet_isa_4afa04c696 (IsA brick_red reddish_brown) (STV 1.0 0.9091)) +(: cnet_isa_48ad261210 (IsA brick_trowel trowel) (STV 1.0 0.9091)) +(: cnet_isa_7b20b2b753 (IsA brickbat criticism) (STV 1.0 0.9091)) +(: cnet_isa_9db4c647d3 (IsA brickbat fragment) (STV 1.0 0.9091)) +(: cnet_isa_fadbdff7f8 (IsA brickellia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f5a571b578 (IsA brickkiln kiln) (STV 1.0 0.9091)) +(: cnet_isa_e21c84679e (IsA bricklayer_s_hammer hammer) (STV 1.0 0.9091)) +(: cnet_isa_c4bee971c5 (IsA bricklayer craftsman) (STV 1.0 0.9091)) +(: cnet_isa_fc934add30 (IsA bricklaying masonry) (STV 1.0 0.9091)) +(: cnet_isa_23fb3e8fc8 (IsA brick_and_mortar building_material) (STV 1.0 0.9091)) +(: cnet_isa_1e816fdffe (IsA brickwork masonry) (STV 1.0 0.9091)) +(: cnet_isa_04394a1432 (IsA brickyard workshop) (STV 1.0 0.9091)) +(: cnet_isa_a2c380e1ce (IsA bricolage construction) (STV 1.0 0.9091)) +(: cnet_isa_8f93ae9a5b (IsA bridal marriage) (STV 1.0 0.9091)) +(: cnet_isa_bb83166fd0 (IsA bridal_gown gown) (STV 1.0 0.9091)) +(: cnet_isa_b67ece4f63 (IsA bridal_wreath shrub) (STV 1.0 0.9091)) +(: cnet_isa_209cb41209 (IsA bridal_wreath spirea) (STV 1.0 0.9091)) +(: cnet_isa_d673c57d46 (IsA bride newlywed) (STV 1.0 0.9091)) +(: cnet_isa_a17604eb47 (IsA bride participant) (STV 1.0 0.9091)) +(: cnet_isa_2b2792cfa5 (IsA bride_and_groom couple) (STV 1.0 0.9091)) +(: cnet_isa_2596cb58ee (IsA bride_gift wedding_present) (STV 1.0 0.9091)) +(: cnet_isa_a69140afc7 (IsA bride_price gift) (STV 1.0 0.9091)) +(: cnet_isa_c8579758bd (IsA bridesmaid attendant) (STV 1.0 0.9091)) +(: cnet_isa_de2a239afa (IsA bridesmaid woman) (STV 1.0 0.9091)) +(: cnet_isa_3ba3924a31 (IsA bridge card_game) (STV 1.0 0.9091)) +(: cnet_isa_793f7ee5cb (IsA bridge circuit) (STV 1.0 0.9091)) +(: cnet_isa_ad26b4ddf5 (IsA bridge denture) (STV 1.0 0.9091)) +(: cnet_isa_22e1c95472 (IsA bridge link) (STV 1.0 0.9091)) +(: cnet_isa_edcf4eaf09 (IsA bridge structure) (STV 1.0 0.9091)) +(: cnet_isa_bc9a90eef2 (IsA bridge support) (STV 1.0 0.9091)) +(: cnet_isa_fe5b41384f (IsA bridge upper_deck) (STV 1.0 0.9091)) +(: cnet_isa_631719fcbc (IsA bridge connection) (STV 1.0 0.9091)) +(: cnet_isa_cbee200b26 (IsA bridge_agent secret_agent) (STV 1.0 0.9091)) +(: cnet_isa_09352638a5 (IsA bridge_hand hand) (STV 1.0 0.9091)) +(: cnet_isa_7e37c49523 (IsA bridge_partner bridge_player) (STV 1.0 0.9091)) +(: cnet_isa_22bffe4be8 (IsA bridge_partner collaborator) (STV 1.0 0.9091)) +(: cnet_isa_43b3b2b0df (IsA bridge_player card_player) (STV 1.0 0.9091)) +(: cnet_isa_592ec86180 (IsA bridge_whist bridge) (STV 1.0 0.9091)) +(: cnet_isa_f9a4bb00f7 (IsA bridged_t circuit) (STV 1.0 0.9091)) +(: cnet_isa_d1ca47d7dd (IsA bridgehead combat_zone) (STV 1.0 0.9091)) +(: cnet_isa_121a82d807 (IsA bridgehead post) (STV 1.0 0.9091)) +(: cnet_isa_0c03e18b19 (IsA bridle restraint) (STV 1.0 0.9091)) +(: cnet_isa_fb47c3deb6 (IsA bridle headgear) (STV 1.0 0.9091)) +(: cnet_isa_3e404a6518 (IsA bridle_path path) (STV 1.0 0.9091)) +(: cnet_isa_a9a9ed3939 (IsA bridoon bit) (STV 1.0 0.9091)) +(: cnet_isa_9e620d09bb (IsA brie cheese) (STV 1.0 0.9572)) +(: cnet_isa_c47a58382d (IsA brief outline) (STV 1.0 0.9091)) +(: cnet_isa_d6f3960824 (IsA brief legal_document) (STV 1.0 0.9091)) +(: cnet_isa_c4cac9c850 (IsA briefcase case) (STV 1.0 0.9091)) +(: cnet_isa_f6a6b66901 (IsA briefcase_bomb bomb) (STV 1.0 0.9091)) +(: cnet_isa_bf2340b9dc (IsA briefcase_computer portable_computer) (STV 1.0 0.9091)) +(: cnet_isa_aab61f444c (IsA briefing informing) (STV 1.0 0.9091)) +(: cnet_isa_f0812bb2b0 (IsA briefness shortness) (STV 1.0 0.9091)) +(: cnet_isa_e1d3db2fd5 (IsA brief underpant) (STV 1.0 0.9091)) +(: cnet_isa_42c76686ba (IsA brier branchlet) (STV 1.0 0.9091)) +(: cnet_isa_7868c02422 (IsA brier vegetation) (STV 1.0 0.9091)) +(: cnet_isa_7d190a7062 (IsA brig sailing_vessel) (STV 1.0 0.9091)) +(: cnet_isa_53c721bfd2 (IsA brig penal_institution) (STV 1.0 0.9091)) +(: cnet_isa_cfb0962a4f (IsA brigade army_unit) (STV 1.0 0.9091)) +(: cnet_isa_28f6892769 (IsA brigadier general_officer) (STV 1.0 0.9091)) +(: cnet_isa_56d13df523 (IsA brigandine chain_mail) (STV 1.0 0.9091)) +(: cnet_isa_4ddaba41e4 (IsA brigantine sailing_vessel) (STV 1.0 0.9091)) +(: cnet_isa_f05b6108a2 (IsA brightness light) (STV 1.0 0.9091)) +(: cnet_isa_eaa30461af (IsA brightness intelligence) (STV 1.0 0.9091)) +(: cnet_isa_6482f42ffe (IsA brightness_constancy constancy) (STV 1.0 0.9091)) +(: cnet_isa_c3b4688f61 (IsA brill lefteye_flounder) (STV 1.0 0.9091)) +(: cnet_isa_332fcce66e (IsA brilliance intelligence) (STV 1.0 0.9091)) +(: cnet_isa_98154f38ff (IsA brilliant_pebble heat_seeking_missile) (STV 1.0 0.9091)) +(: cnet_isa_f66f9a779f (IsA brilliantine pomade) (STV 1.0 0.9091)) +(: cnet_isa_a406f503a5 (IsA brim edge) (STV 1.0 0.9091)) +(: cnet_isa_77e2ca2655 (IsA brim projection) (STV 1.0 0.9091)) +(: cnet_isa_171a08c259 (IsA brimstone sulfur) (STV 1.0 0.9091)) +(: cnet_isa_38df198f62 (IsA brine solution) (STV 1.0 0.9091)) +(: cnet_isa_406df1a956 (IsA brine_shrimp branchiopod_crustacean) (STV 1.0 0.9091)) +(: cnet_isa_52ad228ee6 (IsA brinell_number unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_7cada9d5dc (IsA brininess saltiness) (STV 1.0 0.9091)) +(: cnet_isa_9c1fdad946 (IsA brink edge) (STV 1.0 0.9091)) +(: cnet_isa_019630644b (IsA brink boundary) (STV 1.0 0.9091)) +(: cnet_isa_62cb3b0322 (IsA brinkmanship foreign_policy) (STV 1.0 0.9091)) +(: cnet_isa_4fdc855b51 (IsA brioche bun) (STV 1.0 0.9091)) +(: cnet_isa_b8f9ef2d1a (IsA briquette block) (STV 1.0 0.9091)) +(: cnet_isa_8c63047b3d (IsA brisance consequence) (STV 1.0 0.9091)) +(: cnet_isa_cbad95363b (IsA brisket cut) (STV 1.0 0.9091)) +(: cnet_isa_157cbdf22f (IsA brisling sardine) (STV 1.0 0.9091)) +(: cnet_isa_7ef8abeff5 (IsA bristle hair) (STV 1.0 0.9091)) +(: cnet_isa_3486db10d7 (IsA bristle fiber) (STV 1.0 0.9091)) +(: cnet_isa_045ead5b84 (IsA bristle_brush brush) (STV 1.0 0.9091)) +(: cnet_isa_1018001553 (IsA bristle_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_2af3dbc3bb (IsA bristlecone_pine pine) (STV 1.0 0.9091)) +(: cnet_isa_eaf660e489 (IsA bristlegrass foxtail) (STV 1.0 0.9091)) +(: cnet_isa_f22fbe859f (IsA bristletail thysanuran_insect) (STV 1.0 0.9091)) +(: cnet_isa_bb5fd81327 (IsA bristliness roughness) (STV 1.0 0.9091)) +(: cnet_isa_e012e4282c (IsA bristly_locust shrub) (STV 1.0 0.9091)) +(: cnet_isa_1af3187618 (IsA bristly_sarsaparilla subshrub) (STV 1.0 0.9091)) +(: cnet_isa_a4921e4d18 (IsA brit copepod) (STV 1.0 0.9091)) +(: cnet_isa_8f46e0affb (IsA brit young_fish) (STV 1.0 0.9091)) +(: cnet_isa_42372ed420 (IsA brit european) (STV 1.0 0.9091)) +(: cnet_isa_cd843c7748 (IsA britannia_metal alloy) (STV 1.0 0.9091)) +(: cnet_isa_aac645f1ea (IsA britche breeche) (STV 1.0 0.9091)) +(: cnet_isa_cbd6f2ac50 (IsA british pansy) (STV 1.0 0.9091)) +(: cnet_isa_8c95ce3a93 (IsA british_cabinet cabinet) (STV 1.0 0.9091)) +(: cnet_isa_4b8c3cf798 (IsA british_capacity_unit dry_unit) (STV 1.0 0.9091)) +(: cnet_isa_4ab860767c (IsA british_capacity_unit liquid_unit) (STV 1.0 0.9091)) +(: cnet_isa_42bde70385 (IsA british_commonwealth commonwealth) (STV 1.0 0.9091)) +(: cnet_isa_0fe0c66568 (IsA british_east_africa district) (STV 1.0 0.9091)) +(: cnet_isa_d521169688 (IsA british_empiricism empiricism) (STV 1.0 0.9091)) +(: cnet_isa_65c3d27d47 (IsA british_imperial_system system_of_weight_and_measure) (STV 1.0 0.9091)) +(: cnet_isa_6806c80f2c (IsA british_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_017a3abea7 (IsA british_parliament parliament) (STV 1.0 0.9091)) +(: cnet_isa_f248eae40f (IsA british_people nation) (STV 1.0 0.9091)) +(: cnet_isa_78f7357047 (IsA british_pound british_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_ce783e4b2b (IsA british_shilling british_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_dbf57ab95a (IsA british_thermal_unit work_unit) (STV 1.0 0.9091)) +(: cnet_isa_bec576dfdc (IsA british_west_africa district) (STV 1.0 0.9091)) +(: cnet_isa_d1f028384d (IsA british_west_indy west_indy) (STV 1.0 0.9091)) +(: cnet_isa_5104d94bf2 (IsA briton kelt) (STV 1.0 0.9091)) +(: cnet_isa_b0e5874896 (IsA brittany_spaniel spaniel) (STV 1.0 0.9091)) +(: cnet_isa_20ecc4838f (IsA brittle candy) (STV 1.0 0.9091)) +(: cnet_isa_7eaadfc54f (IsA brittle_bladder_fern bladder_fern) (STV 1.0 0.9091)) +(: cnet_isa_a1c02515d1 (IsA brittle_maidenhair maidenhair) (STV 1.0 0.9091)) +(: cnet_isa_f96d76c0ae (IsA brittle_star echinoderm) (STV 1.0 0.9091)) +(: cnet_isa_70d731ca00 (IsA brittlebush wildflower) (STV 1.0 0.9091)) +(: cnet_isa_efa4b61da7 (IsA brittleness breakableness) (STV 1.0 0.9091)) +(: cnet_isa_54c36dd65d (IsA brix_scale system_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_7a4e3180e7 (IsA broad woman) (STV 1.0 0.9091)) +(: cnet_isa_2bcd475bf1 (IsA broad_arrow arrow) (STV 1.0 0.9091)) +(: cnet_isa_260512a386 (IsA broad_arrow mark) (STV 1.0 0.9091)) +(: cnet_isa_36e69a67f3 (IsA broad_arrow marker) (STV 1.0 0.9091)) +(: cnet_isa_3cbb65ee11 (IsA broad_bean fodder) (STV 1.0 0.9091)) +(: cnet_isa_f1c1db6a26 (IsA broad_bean bean) (STV 1.0 0.9091)) +(: cnet_isa_015ede3e7f (IsA broad_bean shell_bean) (STV 1.0 0.9091)) +(: cnet_isa_1515ce7fb0 (IsA broad_beech_fern beech_fern) (STV 1.0 0.9091)) +(: cnet_isa_eae64d6b93 (IsA broad_buckler_fern shield_fern) (STV 1.0 0.9091)) +(: cnet_isa_7acdb6c2c2 (IsA broad_gauge gauge) (STV 1.0 0.9091)) +(: cnet_isa_d350d88d22 (IsA broad_gauge railroad_track) (STV 1.0 0.9091)) +(: cnet_isa_b89e985c5c (IsA broad_hatchet hatchet) (STV 1.0 0.9091)) +(: cnet_isa_b3baa659d8 (IsA broad_interpretation interpretation) (STV 1.0 0.9091)) +(: cnet_isa_2d39db7de7 (IsA broad_jump jumping) (STV 1.0 0.9091)) +(: cnet_isa_48ddf246b2 (IsA broad_leaved_centaury centaury) (STV 1.0 0.9091)) +(: cnet_isa_de601c26a7 (IsA broad_leaved_everlasting_pea everlasting_pea) (STV 1.0 0.9091)) +(: cnet_isa_2803d97180 (IsA broad_leaved_montia indian_lettuce) (STV 1.0 0.9091)) +(: cnet_isa_c36086b2a0 (IsA broad_leaved_plantain plantain) (STV 1.0 0.9091)) +(: cnet_isa_39092474da (IsA broad_leaved_twayblade orchid) (STV 1.0 0.9091)) +(: cnet_isa_c6c6eb419f (IsA broad_mindedness tolerance) (STV 1.0 0.9091)) +(: cnet_isa_63a39209d5 (IsA broadax ax) (STV 1.0 0.9091)) +(: cnet_isa_ec17cb2558 (IsA broadbill passerine) (STV 1.0 0.9091)) +(: cnet_isa_7b41e4ede7 (IsA broadcast message) (STV 1.0 0.9091)) +(: cnet_isa_bdddc94fc0 (IsA broadcast show) (STV 1.0 0.9091)) +(: cnet_isa_55001c3a4f (IsA broadcast_area area) (STV 1.0 0.9091)) +(: cnet_isa_ca61844c10 (IsA broadcast_journalist broadcaster) (STV 1.0 0.9091)) +(: cnet_isa_a0dbbfe164 (IsA broadcast_journalist journalist) (STV 1.0 0.9091)) +(: cnet_isa_eb2f509a5f (IsA broadcast_medium medium) (STV 1.0 0.9091)) +(: cnet_isa_32a6a20ab3 (IsA broadcast_studio room_in) (STV 1.0 0.9091)) +(: cnet_isa_4453e13cfb (IsA broadcaster mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_5e7565e7ec (IsA broadcaster communicator) (STV 1.0 0.9091)) +(: cnet_isa_d07a2f11cd (IsA broadcasting telecommunication) (STV 1.0 0.9091)) +(: cnet_isa_91fefefbd9 (IsA broadcasting_company company) (STV 1.0 0.9091)) +(: cnet_isa_3903b3004a (IsA broadcasting_station station) (STV 1.0 0.9091)) +(: cnet_isa_0526afe5cd (IsA broadcasting_studio studio) (STV 1.0 0.9091)) +(: cnet_isa_3f6442a4c1 (IsA broadcloth fabric) (STV 1.0 0.9091)) +(: cnet_isa_b5919aae59 (IsA broadening development) (STV 1.0 0.9091)) +(: cnet_isa_fddf8b6a41 (IsA broadloom rug) (STV 1.0 0.9091)) +(: cnet_isa_69f430170a (IsA broadside side) (STV 1.0 0.9091)) +(: cnet_isa_8ef2c6c63d (IsA broadside armament) (STV 1.0 0.9091)) +(: cnet_isa_182ec8ad30 (IsA broadside fire) (STV 1.0 0.9091)) +(: cnet_isa_d4cfdacda2 (IsA broadsword sword) (STV 1.0 0.9091)) +(: cnet_isa_5ea3c53e78 (IsA broadtail domestic_sheep) (STV 1.0 0.9091)) +(: cnet_isa_a238825746 (IsA broadtail lambskin) (STV 1.0 0.9091)) +(: cnet_isa_05de627a33 (IsA brobdingnag imaginary_place) (STV 1.0 0.9091)) +(: cnet_isa_9746531f82 (IsA broca_s_area center) (STV 1.0 0.9091)) +(: cnet_isa_888d142501 (IsA brocade fabric) (STV 1.0 0.9091)) +(: cnet_isa_8355c8c304 (IsA broccoli green_vegetable) (STV 1.0 0.9454)) +(: cnet_isa_70cb1f99d6 (IsA broccoli cruciferous_vegetable) (STV 1.0 0.9091)) +(: cnet_isa_87b4f552fd (IsA broccoli crucifer) (STV 1.0 0.9091)) +(: cnet_isa_ac85fcb6b0 (IsA broccoli_raab crucifer) (STV 1.0 0.9091)) +(: cnet_isa_b2b8873870 (IsA broccoli_rabe cruciferous_vegetable) (STV 1.0 0.9091)) +(: cnet_isa_839bf7989d (IsA brochette spit) (STV 1.0 0.9091)) +(: cnet_isa_079bbec78c (IsA brocket deer) (STV 1.0 0.9091)) +(: cnet_isa_188ea01ff0 (IsA brocket red_deer) (STV 1.0 0.9091)) +(: cnet_isa_d73d259590 (IsA brodiaea liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_9d2c00eb8f (IsA brodmann_s_area cortical_area) (STV 1.0 0.9091)) +(: cnet_isa_8c27b4f4ee (IsA brogan shoe) (STV 1.0 0.9091)) +(: cnet_isa_4dc5850f82 (IsA broil cooking) (STV 1.0 0.9091)) +(: cnet_isa_21084c14a9 (IsA broiler oven) (STV 1.0 0.9091)) +(: cnet_isa_cfcaee6732 (IsA broiler chicken) (STV 1.0 0.9091)) +(: cnet_isa_be8554c6f5 (IsA broiling cooking) (STV 1.0 0.9339)) +(: cnet_isa_b7379b49fe (IsA broken_arch arch) (STV 1.0 0.9091)) +(: cnet_isa_67afed1c44 (IsA broken_bone injury) (STV 1.0 0.9339)) +(: cnet_isa_16ea791b89 (IsA broken_heart sorrow) (STV 1.0 0.9091)) +(: cnet_isa_35c973d745 (IsA broken_home family) (STV 1.0 0.9091)) +(: cnet_isa_c3ba28119d (IsA broker_dealer principal) (STV 1.0 0.9091)) +(: cnet_isa_8a8fa3faac (IsA brokerage business) (STV 1.0 0.9091)) +(: cnet_isa_a88b4ced05 (IsA brokerage nondepository_financial_institution) (STV 1.0 0.9091)) +(: cnet_isa_926150604a (IsA brokerage_account account) (STV 1.0 0.9091)) +(: cnet_isa_7ee38d04c7 (IsA brokerage_house workplace) (STV 1.0 0.9091)) +(: cnet_isa_74dfb9d37a (IsA brome grass) (STV 1.0 0.9091)) +(: cnet_isa_8ec4c8c836 (IsA bromelia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e6b85c4aa4 (IsA bromeliaceae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_a33b70a178 (IsA bromic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_3c8e65521c (IsA bromide remark) (STV 1.0 0.9091)) +(: cnet_isa_22533dd18f (IsA bromide truism) (STV 1.0 0.9091)) +(: cnet_isa_1cdf2cd9b9 (IsA bromide halide) (STV 1.0 0.9091)) +(: cnet_isa_41168498cb (IsA bromine chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_bce7c4657f (IsA bromine halogen) (STV 1.0 0.9091)) +(: cnet_isa_5036fb1518 (IsA bromoform haloform) (STV 1.0 0.9091)) +(: cnet_isa_14f385f88c (IsA bromophenol_blue acid_base_indicator) (STV 1.0 0.9091)) +(: cnet_isa_77f9385777 (IsA bromophenol_blue dye) (STV 1.0 0.9091)) +(: cnet_isa_ec7b57498a (IsA bromothymol_blue acid_base_indicator) (STV 1.0 0.9091)) +(: cnet_isa_81621bae83 (IsA bromothymol_blue dye) (STV 1.0 0.9091)) +(: cnet_isa_267893a314 (IsA brompton_stock stock) (STV 1.0 0.9091)) +(: cnet_isa_a851d93c02 (IsA bromus monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_dcb1d4951c (IsA bronchial_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_8181bd7400 (IsA bronchial_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_48dca3456d (IsA bronchiole duct) (STV 1.0 0.9091)) +(: cnet_isa_61b51a5086 (IsA bronchiolitis bronchitis) (STV 1.0 0.9091)) +(: cnet_isa_b82e74a792 (IsA bronchitis respiratory_disease) (STV 1.0 0.9091)) +(: cnet_isa_2326702bfc (IsA bronchodilator medicine) (STV 1.0 0.9091)) +(: cnet_isa_c9d3c11cc4 (IsA bronchopneumonia pneumonia) (STV 1.0 0.9091)) +(: cnet_isa_49011df075 (IsA bronchoscope medical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_2cfe68563b (IsA bronchospasm spasm) (STV 1.0 0.9091)) +(: cnet_isa_c4f1acd00c (IsA bronchus cartilaginous_tube) (STV 1.0 0.9091)) +(: cnet_isa_aa062c1f3f (IsA bronco mustang) (STV 1.0 0.9091)) +(: cnet_isa_1895966c33 (IsA bronco_buster horseman) (STV 1.0 0.9091)) +(: cnet_isa_92cb3d5617 (IsA bronco_busting riding) (STV 1.0 0.9091)) +(: cnet_isa_7adf31b0cb (IsA brontosaurus sauropod) (STV 1.0 0.9091)) +(: cnet_isa_f6ff24728e (IsA bronze alloy) (STV 1.0 0.9091)) +(: cnet_isa_f1db543f65 (IsA bronze metal) (STV 1.0 0.9091)) +(: cnet_isa_e569d93c8a (IsA bronze sculpture) (STV 1.0 0.9091)) +(: cnet_isa_33d699a434 (IsA bronze copper_base_alloy) (STV 1.0 0.9091)) +(: cnet_isa_cd2549548a (IsA bronze_age time_period) (STV 1.0 0.9091)) +(: cnet_isa_df28ab1553 (IsA bronze_medal trophy) (STV 1.0 0.9091)) +(: cnet_isa_a729588643 (IsA bronze_star_medal decoration) (STV 1.0 0.9091)) +(: cnet_isa_2474be722a (IsA brooch pin) (STV 1.0 0.9091)) +(: cnet_isa_6770bf3491 (IsA brood animal_group) (STV 1.0 0.9091)) +(: cnet_isa_b5e36767f5 (IsA brood_bitch bitch) (STV 1.0 0.9091)) +(: cnet_isa_3735a2be4e (IsA brood_hen hen) (STV 1.0 0.9091)) +(: cnet_isa_39256efef8 (IsA brooding parturition) (STV 1.0 0.9091)) +(: cnet_isa_764f6b1bb7 (IsA broodmare mare) (STV 1.0 0.9091)) +(: cnet_isa_617cd818c9 (IsA brook stream) (STV 1.0 0.9091)) +(: cnet_isa_bd7e341204 (IsA brook_thistle plume_thistle) (STV 1.0 0.9091)) +(: cnet_isa_b9868dc9a5 (IsA brook_trout trout) (STV 1.0 0.9091)) +(: cnet_isa_99e6544caf (IsA brook_trout freshwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_91dee63ceb (IsA brooklet brook) (STV 1.0 0.9091)) +(: cnet_isa_cb894d5e2d (IsA brooklime marsh_plant) (STV 1.0 0.9091)) +(: cnet_isa_7eb3e9adc3 (IsA brookweed water_pimpernel) (STV 1.0 0.9091)) +(: cnet_isa_caa47772e8 (IsA broom cleaning_implement) (STV 1.0 0.9091)) +(: cnet_isa_263e2decfc (IsA broom shrub) (STV 1.0 0.9091)) +(: cnet_isa_e6b085233c (IsA broom_beard_grass broom_grass) (STV 1.0 0.9091)) +(: cnet_isa_d9c0fe9487 (IsA broom_closet cupboard) (STV 1.0 0.9091)) +(: cnet_isa_a5f38a7f80 (IsA broom_grass grass) (STV 1.0 0.9091)) +(: cnet_isa_440be9a12e (IsA broom_sedge broom_grass) (STV 1.0 0.9091)) +(: cnet_isa_5544630da8 (IsA broom_tree broom) (STV 1.0 0.9091)) +(: cnet_isa_0226c4d0c8 (IsA broomcorn sorghum) (STV 1.0 0.9091)) +(: cnet_isa_f27e6f4347 (IsA broomcorn_millet panic_grass) (STV 1.0 0.9091)) +(: cnet_isa_9d01c9f2b5 (IsA broomstick handle) (STV 1.0 0.9091)) +(: cnet_isa_97d0d15f98 (IsA broomweed matchweed) (STV 1.0 0.9091)) +(: cnet_isa_3a9812a792 (IsA brosmius fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_d855843e9b (IsA broth soup) (STV 1.0 0.9091)) +(: cnet_isa_1ec13e16fd (IsA broth_of_boy boy) (STV 1.0 0.9091)) +(: cnet_isa_e37b6e24f3 (IsA brothel commercial_sex_establishment) (STV 1.0 0.9454)) +(: cnet_isa_169bd5563e (IsA brother male) (STV 1.0 0.9091)) +(: cnet_isa_96f86e1c26 (IsA brother sibling) (STV 1.0 0.9091)) +(: cnet_isa_d37aedc8f8 (IsA brother friend) (STV 1.0 0.9091)) +(: cnet_isa_d81e105cba (IsA brother male_sibling) (STV 1.0 0.9091)) +(: cnet_isa_14df67f0e0 (IsA brother member) (STV 1.0 0.9091)) +(: cnet_isa_7eb7488bc6 (IsA brother monk) (STV 1.0 0.9091)) +(: cnet_isa_5d7be4dcb0 (IsA brother_and_sister sibling) (STV 1.0 0.9454)) +(: cnet_isa_73f371854b (IsA brother_in_law in_law) (STV 1.0 0.9091)) +(: cnet_isa_787337d038 (IsA brotherhood friendliness) (STV 1.0 0.9091)) +(: cnet_isa_755fc2afa2 (IsA brotherhood class) (STV 1.0 0.9091)) +(: cnet_isa_ec8f6de957 (IsA brotherhood kinship) (STV 1.0 0.9091)) +(: cnet_isa_89eb300c96 (IsA brotula percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_919b288419 (IsA brotulidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_f123c4a039 (IsA brougham carriage) (STV 1.0 0.9091)) +(: cnet_isa_b5ee3d4a41 (IsA brougham sedan) (STV 1.0 0.9091)) +(: cnet_isa_61eceebdd2 (IsA brouhaha furor) (STV 1.0 0.9091)) +(: cnet_isa_d764b0fc46 (IsA broussonetia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8888ad7ef1 (IsA brow feature) (STV 1.0 0.9091)) +(: cnet_isa_a3e44108ee (IsA brow_ptosis ptosis) (STV 1.0 0.9091)) +(: cnet_isa_2af23e329e (IsA brown color) (STV 1.0 0.9572)) +(: cnet_isa_9c77467a58 (IsA brown chromatic_color) (STV 1.0 0.9091)) +(: cnet_isa_b6b2e13c3f (IsA brown_algae alga) (STV 1.0 0.9091)) +(: cnet_isa_afe7129e7f (IsA brown_bat carnivorous_bat) (STV 1.0 0.9091)) +(: cnet_isa_caf8d36e06 (IsA brown_bear bear) (STV 1.0 0.9091)) +(: cnet_isa_af37e35413 (IsA brown_bell fritillary) (STV 1.0 0.9091)) +(: cnet_isa_38e1001222 (IsA brown_betty pudding) (STV 1.0 0.9091)) +(: cnet_isa_17514eb601 (IsA brown_bread bread) (STV 1.0 0.9091)) +(: cnet_isa_ade72e8a51 (IsA brown_bullhead bullhead) (STV 1.0 0.9091)) +(: cnet_isa_5a03ba8b53 (IsA brown_butter butter) (STV 1.0 0.9091)) +(: cnet_isa_2b4691ee7e (IsA brown_creeper creeper) (STV 1.0 0.9091)) +(: cnet_isa_f8c43984fb (IsA brown_cup sclerotinia) (STV 1.0 0.9091)) +(: cnet_isa_ffc5a25f06 (IsA brown_hyena hyena) (STV 1.0 0.9091)) +(: cnet_isa_8bfd7778c9 (IsA brown_lacewing lacewing) (STV 1.0 0.9091)) +(: cnet_isa_2520227376 (IsA brown_lemming lemming) (STV 1.0 0.9091)) +(: cnet_isa_b37e8443c7 (IsA brown_pine conifer) (STV 1.0 0.9091)) +(: cnet_isa_2cb3f48b7e (IsA brown_rat rat) (STV 1.0 0.9091)) +(: cnet_isa_0b75c41daa (IsA brown_rice rice) (STV 1.0 0.9091)) +(: cnet_isa_ebdefbcae8 (IsA brown_root_rot_fungus fungus) (STV 1.0 0.9091)) +(: cnet_isa_2eb973ffba (IsA brown_rot plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_3ed71f269b (IsA brown_rot_gummosis brown_rot) (STV 1.0 0.9091)) +(: cnet_isa_26b7c4aa34 (IsA brown_sauce sauce) (STV 1.0 0.9091)) +(: cnet_isa_8c74413825 (IsA brown_snail garden_snail) (STV 1.0 0.9091)) +(: cnet_isa_ab2ff37a92 (IsA brown_soft_scale soft_scale) (STV 1.0 0.9091)) +(: cnet_isa_6ced34975e (IsA brown_study reverie) (STV 1.0 0.9091)) +(: cnet_isa_5cb4d632dc (IsA brown_sugar sugar) (STV 1.0 0.9091)) +(: cnet_isa_0dd99ac97f (IsA brown_swiss dairy_cattle) (STV 1.0 0.9091)) +(: cnet_isa_694ca03721 (IsA brown_thrasher thrasher) (STV 1.0 0.9091)) +(: cnet_isa_f200816010 (IsA brown_trout trout) (STV 1.0 0.9091)) +(: cnet_isa_8cebb47094 (IsA brownian_movement movement) (STV 1.0 0.9091)) +(: cnet_isa_65ff0b437a (IsA brownie cookie) (STV 1.0 0.9091)) +(: cnet_isa_bc67f47ff9 (IsA brownie girl_scout) (STV 1.0 0.9091)) +(: cnet_isa_68650acacc (IsA brownie_mix ready_mix) (STV 1.0 0.9091)) +(: cnet_isa_ccd63f5208 (IsA browning_automatic_rifle automatic_rifle) (STV 1.0 0.9091)) +(: cnet_isa_4d6c2f3604 (IsA browning_machine_gun machine_gun) (STV 1.0 0.9091)) +(: cnet_isa_ddd44d97f3 (IsA brownish_yellow yellow) (STV 1.0 0.9091)) +(: cnet_isa_52241e71c8 (IsA brownshirt german_nazi) (STV 1.0 0.9091)) +(: cnet_isa_b761d0c99c (IsA brownstone row_house) (STV 1.0 0.9091)) +(: cnet_isa_91640f2875 (IsA brownstone sandstone) (STV 1.0 0.9091)) +(: cnet_isa_3d07473d71 (IsA browntail lymantriid) (STV 1.0 0.9091)) +(: cnet_isa_5cf9436fa5 (IsA browse eating) (STV 1.0 0.9091)) +(: cnet_isa_0f332b06b0 (IsA browse reading) (STV 1.0 0.9091)) +(: cnet_isa_cc1c60c199 (IsA browse vegetation) (STV 1.0 0.9091)) +(: cnet_isa_fc8fa47511 (IsA browser application) (STV 1.0 0.9091)) +(: cnet_isa_9da625f45d (IsA browser spectator) (STV 1.0 0.9091)) +(: cnet_isa_f20913d23c (IsA brucella coccobacillus) (STV 1.0 0.9091)) +(: cnet_isa_362906aabe (IsA brucellosis infectious_disease) (STV 1.0 0.9091)) +(: cnet_isa_7606571ad8 (IsA brucellosis zoonosis) (STV 1.0 0.9091)) +(: cnet_isa_b7d373c809 (IsA bruchidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_9323b5225f (IsA bruchus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_a09a00d825 (IsA brucine alkaloid) (STV 1.0 0.9091)) +(: cnet_isa_ed4354f779 (IsA brucine plant_toxin) (STV 1.0 0.9091)) +(: cnet_isa_a6140e0c0d (IsA bruckenthalia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0753ffa0ff (IsA brugmansia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b26283aedf (IsA bruin bear) (STV 1.0 0.9091)) +(: cnet_isa_2f88d30d2b (IsA bruise injury) (STV 1.0 0.9091)) +(: cnet_isa_57173862df (IsA brule teton_dakota) (STV 1.0 0.9091)) +(: cnet_isa_5ed621d5d8 (IsA brumaire revolutionary_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_bd90b1018b (IsA brummy english_person) (STV 1.0 0.9091)) +(: cnet_isa_fd6b9bf2e7 (IsA brunch meal) (STV 1.0 0.9091)) +(: cnet_isa_f9d9f95765 (IsA brunch_coat negligee) (STV 1.0 0.9091)) +(: cnet_isa_50a4569fb2 (IsA brunei_dollar dollar) (STV 1.0 0.9091)) +(: cnet_isa_3b22fa4eef (IsA bruneian bornean) (STV 1.0 0.9091)) +(: cnet_isa_fd7effa1da (IsA brunet person) (STV 1.0 0.9091)) +(: cnet_isa_f401da6bf5 (IsA brunfelsia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e13a1b9917 (IsA brunswick_stew stew) (STV 1.0 0.9091)) +(: cnet_isa_cf8f3279e7 (IsA brunt force) (STV 1.0 0.9091)) +(: cnet_isa_8def0044d0 (IsA brush contact) (STV 1.0 0.9091)) +(: cnet_isa_bf6444dfec (IsA brush dental_care) (STV 1.0 0.9091)) +(: cnet_isa_f1efbf5a09 (IsA brush fight) (STV 1.0 0.9091)) +(: cnet_isa_110f316453 (IsA brush hair_care) (STV 1.0 0.9091)) +(: cnet_isa_1df57f6317 (IsA brush tail) (STV 1.0 0.9091)) +(: cnet_isa_4999721b0b (IsA brush electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_a06d2eb679 (IsA brush implement) (STV 1.0 0.9091)) +(: cnet_isa_0f5497cd2b (IsA brush touch) (STV 1.0 0.9091)) +(: cnet_isa_cdf7cd0833 (IsA brush vegetation) (STV 1.0 0.9091)) +(: cnet_isa_00887cb3ad (IsA brush_cut haircut) (STV 1.0 0.9091)) +(: cnet_isa_6278d0bf4d (IsA brush_discharge discharge) (STV 1.0 0.9091)) +(: cnet_isa_f8250b5b6d (IsA brush_fire fire) (STV 1.0 0.9091)) +(: cnet_isa_96949744d0 (IsA brush_off rejection) (STV 1.0 0.9091)) +(: cnet_isa_90c2df5be9 (IsA brush_tailed_phalanger phalanger) (STV 1.0 0.9091)) +(: cnet_isa_7b0a45ab42 (IsA brush_tailed_porcupine old_world_porcupine) (STV 1.0 0.9091)) +(: cnet_isa_0edc27af5c (IsA brush_turkey megapode) (STV 1.0 0.9091)) +(: cnet_isa_62204e9b0f (IsA brushwood wood) (STV 1.0 0.9091)) +(: cnet_isa_dfa7c5d33e (IsA brushwork proficiency) (STV 1.0 0.9091)) +(: cnet_isa_00f3c61eab (IsA brussel_carpet rug) (STV 1.0 0.9091)) +(: cnet_isa_9c27f3128a (IsA brussel_lace lace) (STV 1.0 0.9091)) +(: cnet_isa_3a54d6497e (IsA brussel_sprout cruciferous_vegetable) (STV 1.0 0.9091)) +(: cnet_isa_2b0dd2644f (IsA brussel_sprout crucifer) (STV 1.0 0.9091)) +(: cnet_isa_18fd414c60 (IsA brussel_sprout vegetable) (STV 1.0 0.9091)) +(: cnet_isa_2693f566fa (IsA brutality atrocity) (STV 1.0 0.9091)) +(: cnet_isa_c4f72410f0 (IsA brutalization degradation) (STV 1.0 0.9091)) +(: cnet_isa_29bbc866cb (IsA brutalization wrongdoing) (STV 1.0 0.9091)) +(: cnet_isa_3fb3672fef (IsA brutalization condition) (STV 1.0 0.9091)) +(: cnet_isa_caf4d0002a (IsA bruxism action) (STV 1.0 0.9091)) +(: cnet_isa_e6810216db (IsA brya rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6f361598cd (IsA bryaceae moss_family) (STV 1.0 0.9091)) +(: cnet_isa_7ad061caa5 (IsA bryale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_92bbb0c1b1 (IsA bryanthus shrub) (STV 1.0 0.9091)) +(: cnet_isa_1464b99a03 (IsA bryony vine) (STV 1.0 0.9091)) +(: cnet_isa_c3469a9232 (IsA bryophyta division) (STV 1.0 0.9091)) +(: cnet_isa_c5192cb5fe (IsA bryophyte nonvascular_organism) (STV 1.0 0.9091)) +(: cnet_isa_96b12f218c (IsA bryopsida class) (STV 1.0 0.9091)) +(: cnet_isa_79aedc0056 (IsA bryozoa phylum) (STV 1.0 0.9091)) +(: cnet_isa_8a2b473028 (IsA bryozoan invertebrate) (STV 1.0 0.9091)) +(: cnet_isa_d198a46a6a (IsA brythonic celtic) (STV 1.0 0.9091)) +(: cnet_isa_124ed28751 (IsA bryum moss_genus) (STV 1.0 0.9091)) +(: cnet_isa_04c8d5ab38 (IsA bse disease) (STV 1.0 0.9091)) +(: cnet_isa_f63b0ceff3 (IsA bubalus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_08f3c24a60 (IsA bubble covering) (STV 1.0 0.9091)) +(: cnet_isa_bd9cd11685 (IsA bubble illusion) (STV 1.0 0.9091)) +(: cnet_isa_986dcf0c25 (IsA bubble globule) (STV 1.0 0.9091)) +(: cnet_isa_dcf7f87f44 (IsA bubble_and_squeak dish) (STV 1.0 0.9091)) +(: cnet_isa_8c6a0e5702 (IsA bubble_bath bath) (STV 1.0 0.9091)) +(: cnet_isa_1650baa1e1 (IsA bubble_chamber particle_detector) (STV 1.0 0.9091)) +(: cnet_isa_255cecf81d (IsA bubble_dance nude_dancing) (STV 1.0 0.9091)) +(: cnet_isa_d9e0530e40 (IsA bubble_gum chewing_gum) (STV 1.0 0.9091)) +(: cnet_isa_e999144d2d (IsA bubble_gum_dermatitis contact_dermatitis) (STV 1.0 0.9091)) +(: cnet_isa_c3248744db (IsA bubble_jet_printer ink_jet_printer) (STV 1.0 0.9091)) +(: cnet_isa_4d3234f0bd (IsA bubble_shell gastropod) (STV 1.0 0.9091)) +(: cnet_isa_c39640fad5 (IsA bubbler device) (STV 1.0 0.9091)) +(: cnet_isa_1b735c47b9 (IsA bubbliness gaseousness) (STV 1.0 0.9091)) +(: cnet_isa_37d8d44d03 (IsA bubo bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_4a28bd90b4 (IsA bubo lymph_node) (STV 1.0 0.9091)) +(: cnet_isa_e9ec04a82e (IsA bubo symptom) (STV 1.0 0.9091)) +(: cnet_isa_374562dbc8 (IsA bubonic_plague plague) (STV 1.0 0.9091)) +(: cnet_isa_af223a3be2 (IsA bubulcus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_ec8dc13944 (IsA buccal_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_a59a36d999 (IsA buccal_cavity cavity) (STV 1.0 0.9091)) +(: cnet_isa_3f0844ff3e (IsA buccinidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_79e900c8d4 (IsA bucconidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_346b3e0014 (IsA bucephala bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_7a428f92d5 (IsA bucero bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_8c5cf619df (IsA bucerotidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_15b96e7189 (IsA buchloe monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_71ceff8fd5 (IsA buck deer) (STV 1.0 0.9339)) +(: cnet_isa_4129a95abe (IsA buck placental) (STV 1.0 0.9091)) +(: cnet_isa_bb94ac83cd (IsA buck_and_wing tap_dancing) (STV 1.0 0.9091)) +(: cnet_isa_22875c638c (IsA buck_fever fever) (STV 1.0 0.9091)) +(: cnet_isa_3a45018196 (IsA buck_sergeant police_sergeant) (STV 1.0 0.9091)) +(: cnet_isa_28469793bb (IsA buckboard carriage) (STV 1.0 0.9091)) +(: cnet_isa_9f32b412a2 (IsA bucket container) (STV 1.0 0.9339)) +(: cnet_isa_0cdaf3a0e3 (IsA bucket vessel) (STV 1.0 0.9091)) +(: cnet_isa_78ad935ec2 (IsA bucket containerful) (STV 1.0 0.9091)) +(: cnet_isa_28bc73c91f (IsA bucket_seat seat) (STV 1.0 0.9091)) +(: cnet_isa_a45373e345 (IsA bucket_shop tavern) (STV 1.0 0.9091)) +(: cnet_isa_7b2d730feb (IsA bucket_shop brokerage) (STV 1.0 0.9091)) +(: cnet_isa_1b82dfeb3b (IsA buckeye american) (STV 1.0 0.9091)) +(: cnet_isa_76bb320425 (IsA buckeye seed) (STV 1.0 0.9091)) +(: cnet_isa_d96c2f12f9 (IsA bucking_bronco bronco) (STV 1.0 0.9091)) +(: cnet_isa_660e31f475 (IsA buckle fastener) (STV 1.0 0.9091)) +(: cnet_isa_9b3edd5134 (IsA buckler_mustard shrub) (STV 1.0 0.9091)) +(: cnet_isa_c0202152db (IsA buckleya parasitic_plant) (STV 1.0 0.9091)) +(: cnet_isa_81314a0a41 (IsA buckminsterfullerene fullerene) (STV 1.0 0.9091)) +(: cnet_isa_87451dee71 (IsA buckram fabric) (STV 1.0 0.9091)) +(: cnet_isa_2b3ae1f33f (IsA bucksaw saw) (STV 1.0 0.9091)) +(: cnet_isa_0d346e023a (IsA buckskin saddle_horse) (STV 1.0 0.9091)) +(: cnet_isa_bc1969d361 (IsA buckskin leather) (STV 1.0 0.9091)) +(: cnet_isa_90258eab9c (IsA buckskin breeche) (STV 1.0 0.9091)) +(: cnet_isa_3b15c25e81 (IsA buckthorn shrub) (STV 1.0 0.9091)) +(: cnet_isa_fb781bb59d (IsA buckthorn_berry fruit) (STV 1.0 0.9091)) +(: cnet_isa_121239d9e9 (IsA bucktooth front_tooth) (STV 1.0 0.9091)) +(: cnet_isa_2a5e518aab (IsA buckwheat grain) (STV 1.0 0.9091)) +(: cnet_isa_5cab32a9ca (IsA buckwheat herb) (STV 1.0 0.9091)) +(: cnet_isa_2f06804d19 (IsA buckwheat_cake pancake) (STV 1.0 0.9091)) +(: cnet_isa_8e9814ecde (IsA bud flower) (STV 1.0 0.9091)) +(: cnet_isa_6ea5b41901 (IsA bud sprout) (STV 1.0 0.9091)) +(: cnet_isa_57dbd0539f (IsA bud_brush sagebrush) (STV 1.0 0.9091)) +(: cnet_isa_78adae5a12 (IsA buddha saint) (STV 1.0 0.9091)) +(: cnet_isa_c3503b66bc (IsA buddhism religion) (STV 1.0 0.9339)) +(: cnet_isa_e26fb27b8e (IsA buddhist religionist) (STV 1.0 0.9091)) +(: cnet_isa_992a302590 (IsA budding asexual_reproduction) (STV 1.0 0.9091)) +(: cnet_isa_f62ab9afca (IsA buddy friend) (STV 1.0 0.9091)) +(: cnet_isa_cdc943d981 (IsA buddy_system pairing) (STV 1.0 0.9091)) +(: cnet_isa_95416a30f1 (IsA budgerigar parakeet) (STV 1.0 0.9091)) +(: cnet_isa_681a616d11 (IsA budget fund) (STV 1.0 0.9091)) +(: cnet_isa_3153eb1502 (IsA budget plan) (STV 1.0 0.9091)) +(: cnet_isa_a3038b00e6 (IsA budget_cut cut) (STV 1.0 0.9091)) +(: cnet_isa_b433987cfa (IsA budget_deficit deficit) (STV 1.0 0.9091)) +(: cnet_isa_d039d4f83f (IsA budorca mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_2e05e92ca9 (IsA buff implement) (STV 1.0 0.9091)) +(: cnet_isa_d713620df2 (IsA buff skin) (STV 1.0 0.9091)) +(: cnet_isa_f1730c8b9b (IsA buff leather) (STV 1.0 0.9091)) +(: cnet_isa_684327f939 (IsA buffalo game) (STV 1.0 0.9091)) +(: cnet_isa_9281c542a7 (IsA buffalo_bur nightshade) (STV 1.0 0.9091)) +(: cnet_isa_28c5ff71df (IsA buffalo_carpet_beetle carpet_beetle) (STV 1.0 0.9091)) +(: cnet_isa_03ceaa9e59 (IsA buffalo_clover clover) (STV 1.0 0.9091)) +(: cnet_isa_5bdee323c3 (IsA buffalo_fish sucker) (STV 1.0 0.9091)) +(: cnet_isa_8a39057aa5 (IsA buffalo_grass grass) (STV 1.0 0.9091)) +(: cnet_isa_8d7387dc7c (IsA buffalo_indian native_american) (STV 1.0 0.9091)) +(: cnet_isa_772c85df33 (IsA buffalo_nut fruit) (STV 1.0 0.9091)) +(: cnet_isa_2dc9750226 (IsA buffalo_wing dish) (STV 1.0 0.9091)) +(: cnet_isa_f53732f8c6 (IsA buffalofish freshwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_01070be5ef (IsA buffel_grass burgrass) (STV 1.0 0.9091)) +(: cnet_isa_3d25145395 (IsA buffer device) (STV 1.0 0.9091)) +(: cnet_isa_95ee3af927 (IsA buffer power_tool) (STV 1.0 0.9091)) +(: cnet_isa_f1cca21d0a (IsA buffer compound) (STV 1.0 0.9091)) +(: cnet_isa_b7855c3aad (IsA buffer memory_device) (STV 1.0 0.9091)) +(: cnet_isa_36fdea6638 (IsA buffer_solution solution) (STV 1.0 0.9091)) +(: cnet_isa_90f109d54e (IsA buffer_state country) (STV 1.0 0.9091)) +(: cnet_isa_a85fb90293 (IsA buffer_zone zone) (STV 1.0 0.9091)) +(: cnet_isa_c26c63a8a0 (IsA buffet furniture) (STV 1.0 0.9091)) +(: cnet_isa_ee1b11b92e (IsA buffet meal) (STV 1.0 0.9091)) +(: cnet_isa_414bfabbc6 (IsA buffing_wheel wheel) (STV 1.0 0.9091)) +(: cnet_isa_524efd59b8 (IsA bufflehead duck) (STV 1.0 0.9091)) +(: cnet_isa_3a8c67b791 (IsA buffoonery folly) (STV 1.0 0.9091)) +(: cnet_isa_66121bc3b0 (IsA bufo true_toad) (STV 1.0 0.9091)) +(: cnet_isa_af5cf8e817 (IsA bufonidae amphibian_family) (STV 1.0 0.9091)) +(: cnet_isa_b69ad24f62 (IsA bug insect) (STV 1.0 0.9091)) +(: cnet_isa_ab03533b96 (IsA bug microphone) (STV 1.0 0.9091)) +(: cnet_isa_b41800a48c (IsA bug defect) (STV 1.0 0.9091)) +(: cnet_isa_ca418f0a09 (IsA bug_in_computer_software error) (STV 1.0 0.9091)) +(: cnet_isa_fa8cfc182d (IsA bugaboo concern) (STV 1.0 0.9091)) +(: cnet_isa_27e45eb472 (IsA bugbane woody_plant) (STV 1.0 0.9091)) +(: cnet_isa_b54535cc8b (IsA bugbear object) (STV 1.0 0.9091)) +(: cnet_isa_51b26f3e87 (IsA bugger_all nothing) (STV 1.0 0.9091)) +(: cnet_isa_65ee87a8ef (IsA bugginess defectiveness) (STV 1.0 0.9091)) +(: cnet_isa_79d059ecbf (IsA buggy carriage) (STV 1.0 0.9091)) +(: cnet_isa_1fed8f6dd4 (IsA buggy_whip horsewhip) (STV 1.0 0.9091)) +(: cnet_isa_92a5661c76 (IsA bugle bead) (STV 1.0 0.9091)) +(: cnet_isa_c5f45da95c (IsA bugle brass) (STV 1.0 0.9091)) +(: cnet_isa_d708b9249a (IsA bugle herb) (STV 1.0 0.9091)) +(: cnet_isa_ead03297e4 (IsA bugle_call signal) (STV 1.0 0.9091)) +(: cnet_isa_033e123a96 (IsA bugler trumpeter) (STV 1.0 0.9091)) +(: cnet_isa_1be4b69906 (IsA bugleweed herb) (STV 1.0 0.9091)) +(: cnet_isa_5e027e75cf (IsA bugloss anchusa) (STV 1.0 0.9091)) +(: cnet_isa_f99096fff1 (IsA buick brand_of_car) (STV 1.0 0.9091)) +(: cnet_isa_f02bde9b2e (IsA buick manufacturer_of_car) (STV 1.0 0.9091)) +(: cnet_isa_37af7a0a1c (IsA builder contractor) (STV 1.0 0.9091)) +(: cnet_isa_41202540c3 (IsA builder creator) (STV 1.0 0.9091)) +(: cnet_isa_597d0af7d8 (IsA builder material) (STV 1.0 0.9091)) +(: cnet_isa_1c95037489 (IsA building artificial_structure) (STV 1.0 0.9091)) +(: cnet_isa_c22acbf402 (IsA building structure) (STV 1.0 0.9091)) +(: cnet_isa_2ecae90e9a (IsA building gathering) (STV 1.0 0.9091)) +(: cnet_isa_2e8ada8245 (IsA building_block building_material) (STV 1.0 0.9091)) +(: cnet_isa_e04d2f851f (IsA building_code code) (STV 1.0 0.9091)) +(: cnet_isa_d556087bc6 (IsA building_complex structure) (STV 1.0 0.9091)) +(: cnet_isa_9d1d39a4c4 (IsA building_material artifact) (STV 1.0 0.9091)) +(: cnet_isa_5e3385f89b (IsA building_permit license) (STV 1.0 0.9091)) +(: cnet_isa_f8b81a1d98 (IsA building_society saving_and_loan) (STV 1.0 0.9091)) +(: cnet_isa_0f534f0f58 (IsA building_supply_store shop) (STV 1.0 0.9091)) +(: cnet_isa_43fdf571e4 (IsA buildup accumulation) (STV 1.0 0.9091)) +(: cnet_isa_b5ae10475f (IsA buildup promotion) (STV 1.0 0.9091)) +(: cnet_isa_977712426b (IsA buildup accretion) (STV 1.0 0.9091)) +(: cnet_isa_bffcb3cedc (IsA built_in_bed bed) (STV 1.0 0.9091)) +(: cnet_isa_189a62833d (IsA bulb part) (STV 1.0 0.9091)) +(: cnet_isa_d09ec2460a (IsA bulb structure) (STV 1.0 0.9091)) +(: cnet_isa_7a0515a0c4 (IsA bulb stalk) (STV 1.0 0.9091)) +(: cnet_isa_10be7aa180 (IsA bulb round_shape) (STV 1.0 0.9091)) +(: cnet_isa_5ed774ff13 (IsA bulbar_conjunctiva conjunctiva) (STV 1.0 0.9091)) +(: cnet_isa_5b92f336bd (IsA bulbil bulb) (STV 1.0 0.9091)) +(: cnet_isa_fac9598a93 (IsA bulblet_fern bladder_fern) (STV 1.0 0.9091)) +(: cnet_isa_dcf5e7d27f (IsA bulbous_iris iris) (STV 1.0 0.9091)) +(: cnet_isa_99f49c7d06 (IsA bulbous_plant vascular_plant) (STV 1.0 0.9091)) +(: cnet_isa_0b1f518988 (IsA bulbul nightingale) (STV 1.0 0.9091)) +(: cnet_isa_992450bc29 (IsA bulgarian slavic) (STV 1.0 0.9091)) +(: cnet_isa_184a6b5c03 (IsA bulgarian european) (STV 1.0 0.9091)) +(: cnet_isa_2bd9a89b7e (IsA bulgarian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_cb9c7a75bb (IsA bulge projection) (STV 1.0 0.9091)) +(: cnet_isa_f9410d0c58 (IsA bulgur wheat) (STV 1.0 0.9091)) +(: cnet_isa_60e0045f50 (IsA bulgur_pilaf pilaf) (STV 1.0 0.9091)) +(: cnet_isa_2801adf2b1 (IsA bulimarexia eating_disorder) (STV 1.0 0.9091)) +(: cnet_isa_37cb90c493 (IsA bulimia eating_disorder) (STV 1.0 0.9091)) +(: cnet_isa_6ad1b9e6ad (IsA bulimia hunger) (STV 1.0 0.9091)) +(: cnet_isa_53c7cda32b (IsA bulimic sick_person) (STV 1.0 0.9091)) +(: cnet_isa_73f3716953 (IsA bulk magnitude) (STV 1.0 0.9091)) +(: cnet_isa_2acdd72e1b (IsA bulk mass) (STV 1.0 0.9091)) +(: cnet_isa_49215610aa (IsA bulk_mail mail) (STV 1.0 0.9091)) +(: cnet_isa_822e979b34 (IsA bulk_modulus coefficient_of_elasticity) (STV 1.0 0.9091)) +(: cnet_isa_f1a67c56dc (IsA bulkhead partition) (STV 1.0 0.9091)) +(: cnet_isa_0846f978fc (IsA bulkiness largeness) (STV 1.0 0.9091)) +(: cnet_isa_e10d6158cf (IsA bull_s_eye score) (STV 1.0 0.9091)) +(: cnet_isa_12f7522520 (IsA bull_s_eye center) (STV 1.0 0.9091)) +(: cnet_isa_863d2f9c38 (IsA bull blunder) (STV 1.0 0.9091)) +(: cnet_isa_25b8e762a8 (IsA bull cattle) (STV 1.0 0.9091)) +(: cnet_isa_efbfcb9e13 (IsA bull placental) (STV 1.0 0.9091)) +(: cnet_isa_e1c1d70ec7 (IsA bull person) (STV 1.0 0.9091)) +(: cnet_isa_bb662d32ab (IsA bull decree) (STV 1.0 0.9091)) +(: cnet_isa_df3df0fc31 (IsA bull investor) (STV 1.0 0.9091)) +(: cnet_isa_c0b8e38725 (IsA bull man) (STV 1.0 0.9091)) +(: cnet_isa_5282562c03 (IsA bull policeman) (STV 1.0 0.9091)) +(: cnet_isa_79c6180c3c (IsA bull_market market) (STV 1.0 0.9091)) +(: cnet_isa_ea955058f4 (IsA bull_mastiff working_dog) (STV 1.0 0.9091)) +(: cnet_isa_656eba9f55 (IsA bull_neck neck) (STV 1.0 0.9091)) +(: cnet_isa_bae56d35b0 (IsA bull_nose animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_65f3dd406f (IsA bull_session conference) (STV 1.0 0.9091)) +(: cnet_isa_bd69a59ea1 (IsA bull_shark requiem_shark) (STV 1.0 0.9091)) +(: cnet_isa_d72ef5b8a7 (IsA bull_snake colubrid_snake) (STV 1.0 0.9091)) +(: cnet_isa_8d62759086 (IsA bull_thistle plume_thistle) (STV 1.0 0.9091)) +(: cnet_isa_e3d7794327 (IsA bull_tongue plow) (STV 1.0 0.9091)) +(: cnet_isa_867fc06cc4 (IsA bulla seal) (STV 1.0 0.9091)) +(: cnet_isa_4cc27c9e12 (IsA bullace plum) (STV 1.0 0.9091)) +(: cnet_isa_407bfac474 (IsA bullbrier vine) (STV 1.0 0.9091)) +(: cnet_isa_b47e053a02 (IsA bulldog working_dog) (STV 1.0 0.9091)) +(: cnet_isa_81d10e0261 (IsA bulldog_ant ant) (STV 1.0 0.9091)) +(: cnet_isa_9b3f50fefa (IsA bulldog_clip clip) (STV 1.0 0.9091)) +(: cnet_isa_2853d4d6d0 (IsA bulldog_wrench wrench) (STV 1.0 0.9091)) +(: cnet_isa_f6c0b53bf0 (IsA bulldozer tractor) (STV 1.0 0.9091)) +(: cnet_isa_a274b1ac9e (IsA bullet projectile) (STV 1.0 0.9091)) +(: cnet_isa_09322da1f1 (IsA bullet_hole hole) (STV 1.0 0.9091)) +(: cnet_isa_9f9eaf85f6 (IsA bullet_train passenger_train) (STV 1.0 0.9091)) +(: cnet_isa_1d21da5876 (IsA bullethead human_head) (STV 1.0 0.9091)) +(: cnet_isa_6136530175 (IsA bulletin report) (STV 1.0 0.9091)) +(: cnet_isa_060d2c53b7 (IsA bulletin_board board) (STV 1.0 0.9091)) +(: cnet_isa_f63cae6e8b (IsA bulletin_board_system digital_computer) (STV 1.0 0.9091)) +(: cnet_isa_a7f0629084 (IsA bulletproof_vest body_armor) (STV 1.0 0.9091)) +(: cnet_isa_baa2962147 (IsA bulletproof_vest vest) (STV 1.0 0.9091)) +(: cnet_isa_d4e7a2b651 (IsA bullfight spectacle) (STV 1.0 0.9091)) +(: cnet_isa_84d0d07d3e (IsA bullfighter person) (STV 1.0 0.9091)) +(: cnet_isa_df5ecdcb86 (IsA bullfighting blood_sport) (STV 1.0 0.9091)) +(: cnet_isa_9a03288fb3 (IsA bullfinch finch) (STV 1.0 0.9091)) +(: cnet_isa_8a7223f221 (IsA bullfrog true_frog) (STV 1.0 0.9091)) +(: cnet_isa_1363fa0fc5 (IsA bullhead catfish) (STV 1.0 0.9091)) +(: cnet_isa_0ae90ec326 (IsA bullhead sculpin) (STV 1.0 0.9091)) +(: cnet_isa_4e18899a2f (IsA bullhorn loudspeaker) (STV 1.0 0.9091)) +(: cnet_isa_bb84dc9f70 (IsA bullion ingot) (STV 1.0 0.9091)) +(: cnet_isa_d6c1ecbcf2 (IsA bullion precious_metal) (STV 1.0 0.9091)) +(: cnet_isa_2b3eb17b54 (IsA bullnose plane) (STV 1.0 0.9091)) +(: cnet_isa_92384173b3 (IsA bullock_s_heart custard_apple) (STV 1.0 0.9091)) +(: cnet_isa_397e349ba9 (IsA bullock_s_oriole northern_oriole) (STV 1.0 0.9091)) +(: cnet_isa_7257463c4a (IsA bullock bull) (STV 1.0 0.9091)) +(: cnet_isa_173c6e160a (IsA bullock cattle) (STV 1.0 0.9091)) +(: cnet_isa_1e3b92fe38 (IsA bullock male) (STV 1.0 0.9091)) +(: cnet_isa_2338cbf8c7 (IsA bullock young_mammal) (STV 1.0 0.9091)) +(: cnet_isa_9b19ee76ce (IsA bullpen area) (STV 1.0 0.9091)) +(: cnet_isa_d040f7d3c2 (IsA bullpen cell) (STV 1.0 0.9091)) +(: cnet_isa_3151339f2f (IsA bullring stadium) (STV 1.0 0.9091)) +(: cnet_isa_dc2f678d43 (IsA bull team) (STV 1.0 0.9339)) +(: cnet_isa_ddc46f6041 (IsA bullshit bunk) (STV 1.0 0.9091)) +(: cnet_isa_4fbb927531 (IsA bullshot cocktail) (STV 1.0 0.9091)) +(: cnet_isa_4e27a0fc71 (IsA bullterrier terrier) (STV 1.0 0.9091)) +(: cnet_isa_d7d80d89dc (IsA bully person) (STV 1.0 0.9091)) +(: cnet_isa_7ebdec4202 (IsA bully attacker) (STV 1.0 0.9091)) +(: cnet_isa_16db01521e (IsA bully hood) (STV 1.0 0.9091)) +(: cnet_isa_272b054fd0 (IsA bully_beef beef) (STV 1.0 0.9091)) +(: cnet_isa_9a552431ff (IsA bully_pulpit public_office) (STV 1.0 0.9091)) +(: cnet_isa_a6aa13aa02 (IsA bullyboy bully) (STV 1.0 0.9091)) +(: cnet_isa_22f7a3e73d (IsA bullying health_and_safety_risk) (STV 1.0 0.9091)) +(: cnet_isa_091c89bff5 (IsA bullying aggression) (STV 1.0 0.9091)) +(: cnet_isa_0e149c622c (IsA bulnesia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7372d0dd7a (IsA bulrush rush) (STV 1.0 0.9091)) +(: cnet_isa_56526b4ec7 (IsA bulwark barrier) (STV 1.0 0.9091)) +(: cnet_isa_5466f684a2 (IsA bumblebee bee) (STV 1.0 0.9091)) +(: cnet_isa_ab89143c23 (IsA bumboat boat) (STV 1.0 0.9091)) +(: cnet_isa_3e883dea70 (IsA bumelia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_81216808fd (IsA bumf reading) (STV 1.0 0.9091)) +(: cnet_isa_787714e487 (IsA bummer effect) (STV 1.0 0.9091)) +(: cnet_isa_504603babc (IsA bummer irritation) (STV 1.0 0.9091)) +(: cnet_isa_4671ce3f75 (IsA bump impact) (STV 1.0 0.9091)) +(: cnet_isa_5c43743ebb (IsA bump injury) (STV 1.0 0.9091)) +(: cnet_isa_b00f59452a (IsA bumper glass) (STV 1.0 0.9091)) +(: cnet_isa_71a870d332 (IsA bumper mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_f6c4f38b2a (IsA bumper_car vehicle) (STV 1.0 0.9091)) +(: cnet_isa_521a700beb (IsA bumper_guard mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_569ee969a2 (IsA bumper_jack jack) (STV 1.0 0.9091)) +(: cnet_isa_cdb3be9e50 (IsA bumpiness roughness) (STV 1.0 0.9091)) +(: cnet_isa_7f50fd1304 (IsA bumptiousness assertiveness) (STV 1.0 0.9091)) +(: cnet_isa_345d4e1fa8 (IsA bun bread) (STV 1.0 0.9091)) +(: cnet_isa_ad8edbbcd9 (IsA buna_rubber synthetic_rubber) (STV 1.0 0.9091)) +(: cnet_isa_203a7b3a32 (IsA bunch agglomeration) (STV 1.0 0.9091)) +(: cnet_isa_6a726b0893 (IsA bunch collection) (STV 1.0 0.9091)) +(: cnet_isa_18654a964e (IsA bunchberry dogwood) (STV 1.0 0.9091)) +(: cnet_isa_fceb258f25 (IsA bunchgrass grass) (STV 1.0 0.9091)) +(: cnet_isa_331b6b4c4a (IsA bunco swindle) (STV 1.0 0.9091)) +(: cnet_isa_e8807001ee (IsA bundesbank central_bank) (STV 1.0 0.9091)) +(: cnet_isa_8a3e6fe354 (IsA bundle package) (STV 1.0 0.9091)) +(: cnet_isa_48beec3323 (IsA bundling packing) (STV 1.0 0.9091)) +(: cnet_isa_ee5389971c (IsA bundling shove) (STV 1.0 0.9091)) +(: cnet_isa_ee4f6448f8 (IsA bundling courtship) (STV 1.0 0.9091)) +(: cnet_isa_221baab9c8 (IsA bunfight party) (STV 1.0 0.9091)) +(: cnet_isa_fbb153614c (IsA bung plug) (STV 1.0 0.9091)) +(: cnet_isa_3c2b139a15 (IsA bungalow house) (STV 1.0 0.9091)) +(: cnet_isa_9b61a61aba (IsA bungalow ground_level_structure) (STV 1.0 0.9091)) +(: cnet_isa_05cede6068 (IsA bungarus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_39984afb9f (IsA bungee rope) (STV 1.0 0.9091)) +(: cnet_isa_8f4909eb37 (IsA bungee_jumping activity) (STV 1.0 0.9091)) +(: cnet_isa_5b857a3748 (IsA bunghole hole) (STV 1.0 0.9091)) +(: cnet_isa_36683f22d6 (IsA bungler incompetent) (STV 1.0 0.9091)) +(: cnet_isa_124393e98a (IsA bunion swelling) (STV 1.0 0.9091)) +(: cnet_isa_d233703f57 (IsA bunji_bunji silver_ash) (STV 1.0 0.9091)) +(: cnet_isa_1b74f249f9 (IsA bunk bed) (STV 1.0 0.9091)) +(: cnet_isa_fe1a5c9ef1 (IsA bunk manger) (STV 1.0 0.9091)) +(: cnet_isa_14d911bc4a (IsA bunk drivel) (STV 1.0 0.9091)) +(: cnet_isa_98e2be883c (IsA bunk_bed bed) (STV 1.0 0.9091)) +(: cnet_isa_a44e46bc67 (IsA bunker container) (STV 1.0 0.9091)) +(: cnet_isa_0dc6645d97 (IsA bunker fortification) (STV 1.0 0.9091)) +(: cnet_isa_83ebca30d4 (IsA bunker hazard) (STV 1.0 0.9091)) +(: cnet_isa_c71433ef67 (IsA bunker_mentality defensiveness) (STV 1.0 0.9091)) +(: cnet_isa_aad42d1fd3 (IsA bunkmate acquaintance) (STV 1.0 0.9091)) +(: cnet_isa_07ec909007 (IsA bunny rabbit) (STV 1.0 0.9091)) +(: cnet_isa_f0f206efb5 (IsA bunny waitress) (STV 1.0 0.9091)) +(: cnet_isa_a298bcf898 (IsA bunny_hug ballroom_dancing) (STV 1.0 0.9091)) +(: cnet_isa_a9da2eb1c4 (IsA bunsen_burner gas_burner) (STV 1.0 0.9091)) +(: cnet_isa_ee4c89657b (IsA bunt hit) (STV 1.0 0.9091)) +(: cnet_isa_16a5e8b45a (IsA bunt smut) (STV 1.0 0.9091)) +(: cnet_isa_fba69fe2e4 (IsA buntal plant_fiber) (STV 1.0 0.9091)) +(: cnet_isa_eeef4b8ff3 (IsA bunter batter) (STV 1.0 0.9091)) +(: cnet_isa_9db043d3e1 (IsA bunting finch) (STV 1.0 0.9091)) +(: cnet_isa_b4bd22ba77 (IsA bunting fabric) (STV 1.0 0.9091)) +(: cnet_isa_eeccca8ac2 (IsA bunya_bunya edible_nut) (STV 1.0 0.9091)) +(: cnet_isa_3b72ffdee6 (IsA bunya_bunya araucaria) (STV 1.0 0.9091)) +(: cnet_isa_79db33ec99 (IsA bunyaviridae arbovirus) (STV 1.0 0.9091)) +(: cnet_isa_42b013c31e (IsA bunyavirus animal_virus) (STV 1.0 0.9091)) +(: cnet_isa_cfdf18b42d (IsA buoy reference_point) (STV 1.0 0.9091)) +(: cnet_isa_8a86021ef5 (IsA buoyancy tendency) (STV 1.0 0.9091)) +(: cnet_isa_5574b3ffe2 (IsA buoyancy cheerfulness) (STV 1.0 0.9091)) +(: cnet_isa_ffd6a3ec05 (IsA buphthalmum asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7ad6792945 (IsA bur bit) (STV 1.0 0.9091)) +(: cnet_isa_2ac96f2ee6 (IsA bur pericarp) (STV 1.0 0.9091)) +(: cnet_isa_63c666a772 (IsA bur_marigold subshrub) (STV 1.0 0.9091)) +(: cnet_isa_776e7f43dd (IsA bur_oak white_oak) (STV 1.0 0.9091)) +(: cnet_isa_71a4a52209 (IsA bur_reed herb) (STV 1.0 0.9091)) +(: cnet_isa_70b2e1c9d6 (IsA bura biu_mandara) (STV 1.0 0.9091)) +(: cnet_isa_a5f446c025 (IsA burberry raincoat) (STV 1.0 0.9091)) +(: cnet_isa_e6c513ebe0 (IsA burbot cod) (STV 1.0 0.9091)) +(: cnet_isa_ac8189faec (IsA burden concern) (STV 1.0 0.9091)) +(: cnet_isa_b5d0cefc56 (IsA burden idea) (STV 1.0 0.9091)) +(: cnet_isa_996e6765db (IsA burden_of_proof duty) (STV 1.0 0.9091)) +(: cnet_isa_a4d5d4a11c (IsA burdensomeness difficulty) (STV 1.0 0.9091)) +(: cnet_isa_2275b873f1 (IsA burdock subshrub) (STV 1.0 0.9091)) +(: cnet_isa_79a406a72b (IsA bureau division_of_government) (STV 1.0 0.9091)) +(: cnet_isa_a4a13f6aed (IsA bureau_de_change company) (STV 1.0 0.9091)) +(: cnet_isa_260f8fa16d (IsA bureau_of_alcohol_tobacco_and_firearm law_enforcement_agency) (STV 1.0 0.9091)) +(: cnet_isa_f1459e8cf9 (IsA bureau_of_census agency) (STV 1.0 0.9091)) +(: cnet_isa_d95c370171 (IsA bureau_of_custom agency) (STV 1.0 0.9091)) +(: cnet_isa_e99ad90dad (IsA bureau_of_diplomatic_security agency) (STV 1.0 0.9091)) +(: cnet_isa_4ec9c77b64 (IsA bureau_of_engraving_and_printing agency) (STV 1.0 0.9091)) +(: cnet_isa_99e721c868 (IsA bureau_of_intelligence_and_research agency) (STV 1.0 0.9091)) +(: cnet_isa_f091a7a41c (IsA bureau_of_justice_assistance agency) (STV 1.0 0.9091)) +(: cnet_isa_4b7bc1c475 (IsA bureau_of_justice_statistic agency) (STV 1.0 0.9091)) +(: cnet_isa_7010de82f0 (IsA bureaucracy government) (STV 1.0 0.9091)) +(: cnet_isa_254f3c6325 (IsA bureaucracy government_official) (STV 1.0 0.9091)) +(: cnet_isa_eebfa3aeb2 (IsA bureaucracy organization) (STV 1.0 0.9091)) +(: cnet_isa_ba40367012 (IsA bureaucrat official) (STV 1.0 0.9091)) +(: cnet_isa_f0302a85c1 (IsA bureaucratic_procedure procedure) (STV 1.0 0.9091)) +(: cnet_isa_cd22e863fe (IsA burette measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_5c7e588806 (IsA burg town) (STV 1.0 0.9091)) +(: cnet_isa_39f1a11965 (IsA burgess englishman) (STV 1.0 0.9091)) +(: cnet_isa_86a2fc4cd6 (IsA burgh borough) (STV 1.0 0.9091)) +(: cnet_isa_44b9095747 (IsA burglar thief) (STV 1.0 0.9091)) +(: cnet_isa_8b5de0ef8e (IsA burglar_alarm alarm) (STV 1.0 0.9091)) +(: cnet_isa_cb304541fe (IsA burglary felony) (STV 1.0 0.9091)) +(: cnet_isa_606c4117bb (IsA burgomaster mayor) (STV 1.0 0.9091)) +(: cnet_isa_a2d9b68b4a (IsA burgoo cookout) (STV 1.0 0.9091)) +(: cnet_isa_006f6dc138 (IsA burgoo stew) (STV 1.0 0.9091)) +(: cnet_isa_1806dbcca0 (IsA burgrass grass) (STV 1.0 0.9091)) +(: cnet_isa_15ad1bd7d4 (IsA burgrave military_governor) (STV 1.0 0.9091)) +(: cnet_isa_b92a295871 (IsA burgrave nobleman) (STV 1.0 0.9091)) +(: cnet_isa_f493e93b9f (IsA burgundy dark_red) (STV 1.0 0.9091)) +(: cnet_isa_f58f9d9f07 (IsA burgundy wine) (STV 1.0 0.9091)) +(: cnet_isa_5548d28524 (IsA burhinidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_da6696927e (IsA burhinus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_07676cae00 (IsA burial funeral) (STV 1.0 0.9091)) +(: cnet_isa_183a95dc1a (IsA burial_chamber chamber) (STV 1.0 0.9091)) +(: cnet_isa_b517b67049 (IsA burial_chamber grave) (STV 1.0 0.9091)) +(: cnet_isa_666ca7e954 (IsA burial_garment cloth_covering) (STV 1.0 0.9091)) +(: cnet_isa_d9bc8521e3 (IsA burial_mound mound) (STV 1.0 0.9091)) +(: cnet_isa_96c44227d8 (IsA burin chisel) (STV 1.0 0.9091)) +(: cnet_isa_d2fa22462f (IsA burkina_faso_franc franc) (STV 1.0 0.9091)) +(: cnet_isa_c1b33b68e8 (IsA burl plant_process) (STV 1.0 0.9091)) +(: cnet_isa_91cd3013e0 (IsA burl wood) (STV 1.0 0.9091)) +(: cnet_isa_309c9756c6 (IsA burlap fabric) (STV 1.0 0.9524)) +(: cnet_isa_19dcead9e3 (IsA burlap sturdy_fabric) (STV 1.0 0.9091)) +(: cnet_isa_ed7e1b0fe8 (IsA burlap sacking) (STV 1.0 0.9091)) +(: cnet_isa_e049f3216b (IsA burlesque show) (STV 1.0 0.9091)) +(: cnet_isa_8f19286caf (IsA burma_padauk tree) (STV 1.0 0.9091)) +(: cnet_isa_7edcf23ad3 (IsA burmannia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f8a8de8cd4 (IsA burmanniaceae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_da14e88e5e (IsA burmeisteria mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_92e81171d9 (IsA burmese lolo_burmese) (STV 1.0 0.9091)) +(: cnet_isa_3ebcebfeda (IsA burmese asiatic) (STV 1.0 0.9091)) +(: cnet_isa_f5a8eaa389 (IsA burmese_cat domestic_cat) (STV 1.0 0.9091)) +(: cnet_isa_5e0ad94298 (IsA burn damage) (STV 1.0 0.9091)) +(: cnet_isa_0de0cb8faf (IsA burn blemish) (STV 1.0 0.9091)) +(: cnet_isa_02f869347b (IsA burn injury) (STV 1.0 0.9091)) +(: cnet_isa_bd0b9edc92 (IsA burn pain) (STV 1.0 0.9091)) +(: cnet_isa_e18ae63493 (IsA burn_bag bag) (STV 1.0 0.9091)) +(: cnet_isa_83d56a5601 (IsA burn_center center) (STV 1.0 0.9091)) +(: cnet_isa_c6f88f8876 (IsA burn_plant aloe) (STV 1.0 0.9091)) +(: cnet_isa_7f471572d6 (IsA burner apparatus) (STV 1.0 0.9091)) +(: cnet_isa_348db39bf5 (IsA burner heating_element) (STV 1.0 0.9091)) +(: cnet_isa_e7ba13cb48 (IsA burning change_of_integrity) (STV 1.0 0.9091)) +(: cnet_isa_defcdfdbea (IsA burning execution) (STV 1.0 0.9091)) +(: cnet_isa_d1fa9e928a (IsA burning torture) (STV 1.0 0.9091)) +(: cnet_isa_551732e6cf (IsA burning_bush shrub) (STV 1.0 0.9091)) +(: cnet_isa_a3fa601ff3 (IsA burnous cloak) (STV 1.0 0.9091)) +(: cnet_isa_766144af20 (IsA burnt_sienna sienna) (STV 1.0 0.9091)) +(: cnet_isa_e77e8ecd11 (IsA burnt_umber umber) (STV 1.0 0.9091)) +(: cnet_isa_6676025fae (IsA burnup consumption) (STV 1.0 0.9091)) +(: cnet_isa_772b589e65 (IsA burnup race) (STV 1.0 0.9091)) +(: cnet_isa_e83d271db6 (IsA burp_gun submachine_gun) (STV 1.0 0.9091)) +(: cnet_isa_8c326dccd2 (IsA burqa garment) (STV 1.0 0.9091)) +(: cnet_isa_f62fcc2f66 (IsA burr power_tool) (STV 1.0 0.9091)) +(: cnet_isa_35ca471053 (IsA burr projection) (STV 1.0 0.9091)) +(: cnet_isa_ae85266bed (IsA burrawong cycad) (STV 1.0 0.9091)) +(: cnet_isa_cfdb6c6810 (IsA burrfish spiny_puffer) (STV 1.0 0.9091)) +(: cnet_isa_d1184d2664 (IsA burrito dish) (STV 1.0 0.9091)) +(: cnet_isa_9c8f976cb6 (IsA burro domestic_ass) (STV 1.0 0.9091)) +(: cnet_isa_4cfb78b09c (IsA burrow hole) (STV 1.0 0.9091)) +(: cnet_isa_dea33e1c28 (IsA bursa sac) (STV 1.0 0.9091)) +(: cnet_isa_9ef7eb8162 (IsA bursa_omentalis cavity) (STV 1.0 0.9091)) +(: cnet_isa_bcaa6c2cef (IsA bursar treasurer) (STV 1.0 0.9091)) +(: cnet_isa_edca6d6c7b (IsA bursary treasury) (STV 1.0 0.9091)) +(: cnet_isa_bd8d3585fb (IsA bursera rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f48dea1250 (IsA burseraceae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_e29eef0c44 (IsA bursitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_90b971d93f (IsA burst activity) (STV 1.0 0.9091)) +(: cnet_isa_db64ce34fe (IsA burthen load) (STV 1.0 0.9091)) +(: cnet_isa_668a2bf850 (IsA burton ale) (STV 1.0 0.9091)) +(: cnet_isa_3ee4b20a95 (IsA burundi_franc franc) (STV 1.0 0.9091)) +(: cnet_isa_3ac048b301 (IsA burundian african) (STV 1.0 0.9091)) +(: cnet_isa_bec4b683e2 (IsA burweed_marsh_elder marsh_elder) (STV 1.0 0.9091)) +(: cnet_isa_8ab1eb380e (IsA burying concealment) (STV 1.0 0.9091)) +(: cnet_isa_dfe11e708c (IsA bus form_of_mass_transit) (STV 1.0 0.9524)) +(: cnet_isa_dbecaf39b7 (IsA bus form_of_public_transportation) (STV 1.0 0.9636)) +(: cnet_isa_c3620d13e6 (IsA bus car) (STV 1.0 0.9091)) +(: cnet_isa_8e527baee1 (IsA bus dysphemism) (STV 1.0 0.9091)) +(: cnet_isa_d00f8ae6ad (IsA bus public_transport) (STV 1.0 0.9091)) +(: cnet_isa_4857492222 (IsA bus_company transportation_company) (STV 1.0 0.9091)) +(: cnet_isa_1bd6d55fdd (IsA bus_company utility) (STV 1.0 0.9091)) +(: cnet_isa_f09b8afb8c (IsA bus_fare fare) (STV 1.0 0.9091)) +(: cnet_isa_95bea69fc5 (IsA bus_lane traffic_lane) (STV 1.0 0.9091)) +(: cnet_isa_5fc859399f (IsA bus_line transit_line) (STV 1.0 0.9091)) +(: cnet_isa_7541df66d7 (IsA bus_route path) (STV 1.0 0.9091)) +(: cnet_isa_deb53730bf (IsA bus_stop stop) (STV 1.0 0.9091)) +(: cnet_isa_db5f3f8a1f (IsA bus_terminal terminal) (STV 1.0 0.9091)) +(: cnet_isa_19041074c2 (IsA bus_ticket ticket) (STV 1.0 0.9091)) +(: cnet_isa_a91ec70d70 (IsA bus_topology topology) (STV 1.0 0.9091)) +(: cnet_isa_8974a4a58d (IsA bus_traffic vehicular_traffic) (STV 1.0 0.9091)) +(: cnet_isa_f81416d6c0 (IsA busbar conductor) (STV 1.0 0.9091)) +(: cnet_isa_5601febd6d (IsA busboy dining_room_attendant) (STV 1.0 0.9091)) +(: cnet_isa_4406bce862 (IsA bus form_of_transportation) (STV 1.0 0.9091)) +(: cnet_isa_b8c50c7849 (IsA bush wilderness) (STV 1.0 0.9091)) +(: cnet_isa_d70bd8b23c (IsA bush_administration executive) (STV 1.0 0.9091)) +(: cnet_isa_3c559a97bd (IsA bush_bean bean) (STV 1.0 0.9091)) +(: cnet_isa_92d81075a1 (IsA bush_clover woody_plant) (STV 1.0 0.9091)) +(: cnet_isa_c50a289f14 (IsA bush_hibiscus shrub) (STV 1.0 0.9091)) +(: cnet_isa_317caea0bc (IsA bush_honeysuckle honeysuckle) (STV 1.0 0.9091)) +(: cnet_isa_fb6b0409e0 (IsA bush_honeysuckle shrub) (STV 1.0 0.9091)) +(: cnet_isa_f89e57388c (IsA bush_jacket jacket) (STV 1.0 0.9091)) +(: cnet_isa_3987709f04 (IsA bush_nasturtium nasturtium) (STV 1.0 0.9091)) +(: cnet_isa_5b0f6375d9 (IsA bush_pea herb) (STV 1.0 0.9091)) +(: cnet_isa_f4bff1d677 (IsA bush_poppy shrub) (STV 1.0 0.9091)) +(: cnet_isa_767e61bdcc (IsA bush_shrike shrike) (STV 1.0 0.9091)) +(: cnet_isa_54766a558e (IsA bush_vetch vetch) (STV 1.0 0.9091)) +(: cnet_isa_8829f95cc2 (IsA bush_violet flower) (STV 1.0 0.9091)) +(: cnet_isa_1bcb465f1c (IsA bush_willow angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_ae2ae470d7 (IsA bushbuck harnessed_antelope) (STV 1.0 0.9091)) +(: cnet_isa_06c7d17be8 (IsA bushel basket) (STV 1.0 0.9091)) +(: cnet_isa_800ac46bb5 (IsA bushel british_capacity_unit) (STV 1.0 0.9091)) +(: cnet_isa_5ff22b8a0e (IsA bushel united_state_dry_unit) (STV 1.0 0.9091)) +(: cnet_isa_d43998385d (IsA bushido code) (STV 1.0 0.9091)) +(: cnet_isa_f1110b3c13 (IsA bushing insulator) (STV 1.0 0.9091)) +(: cnet_isa_99756d1ae5 (IsA bushing lining) (STV 1.0 0.9091)) +(: cnet_isa_caea21dd55 (IsA bushman_s_poison shrub) (STV 1.0 0.9091)) +(: cnet_isa_ae3c4b3d2f (IsA bushman nomad) (STV 1.0 0.9091)) +(: cnet_isa_36e8fe1b51 (IsA bushman pioneer) (STV 1.0 0.9091)) +(: cnet_isa_393ef10b8a (IsA bushtit titmouse) (STV 1.0 0.9091)) +(: cnet_isa_9775d8aeeb (IsA bushwhacker confederate_soldier) (STV 1.0 0.9091)) +(: cnet_isa_2d79d8ac06 (IsA bushy_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_902946bacd (IsA business business) (STV 1.0 0.9091)) +(: cnet_isa_235d1754ff (IsA business acting) (STV 1.0 0.9091)) +(: cnet_isa_5030aaaa48 (IsA business aim) (STV 1.0 0.9091)) +(: cnet_isa_80a961633f (IsA business concern) (STV 1.0 0.9091)) +(: cnet_isa_4c74e08d4e (IsA business business_activity) (STV 1.0 0.9091)) +(: cnet_isa_5a80da4702 (IsA business enterprise) (STV 1.0 0.9091)) +(: cnet_isa_958d8f0dd9 (IsA business sector) (STV 1.0 0.9091)) +(: cnet_isa_d7eb896125 (IsA business_activity enterprise) (STV 1.0 0.9091)) +(: cnet_isa_2be31c8934 (IsA business_address address) (STV 1.0 0.9091)) +(: cnet_isa_e931bc0881 (IsA business_agent agent) (STV 1.0 0.9091)) +(: cnet_isa_c773060cd4 (IsA business_card card) (STV 1.0 0.9091)) +(: cnet_isa_fd4eb8f114 (IsA business_card important_networking_tool) (STV 1.0 0.9091)) +(: cnet_isa_a8a330891d (IsA business_college college) (STV 1.0 0.9091)) +(: cnet_isa_36189e30c0 (IsA business_cycle variation) (STV 1.0 0.9091)) +(: cnet_isa_d64f9c40e2 (IsA business_deduction tax_write_off) (STV 1.0 0.9091)) +(: cnet_isa_8cd85ea65e (IsA business_department department) (STV 1.0 0.9091)) +(: cnet_isa_6d97ed134a (IsA business_district city_district) (STV 1.0 0.9091)) +(: cnet_isa_7e10268dc3 (IsA business_editor newspaper_editor) (STV 1.0 0.9091)) +(: cnet_isa_fc650ebae7 (IsA business_expense expense) (STV 1.0 0.9091)) +(: cnet_isa_b285fcfbc0 (IsA business_index index) (STV 1.0 0.9091)) +(: cnet_isa_19e1913a2f (IsA business_interruption_insurance insurance) (STV 1.0 0.9091)) +(: cnet_isa_4016ad72b5 (IsA business_letter letter) (STV 1.0 0.9091)) +(: cnet_isa_eb68c7e08c (IsA business_life career) (STV 1.0 0.9091)) +(: cnet_isa_2b2ee887a1 (IsA business_loan bank_loan) (STV 1.0 0.9091)) +(: cnet_isa_45b3fa4c0e (IsA business_lunch lunch) (STV 1.0 0.9091)) +(: cnet_isa_4a596bf74a (IsA business_new new) (STV 1.0 0.9091)) +(: cnet_isa_6dc48cfaee (IsA business_people people) (STV 1.0 0.9091)) +(: cnet_isa_b8887845d8 (IsA business_relation relation) (STV 1.0 0.9091)) +(: cnet_isa_294c30e897 (IsA business_school graduate_school) (STV 1.0 0.9091)) +(: cnet_isa_d0e85a5144 (IsA business_suit suit) (STV 1.0 0.9091)) +(: cnet_isa_1a3cdcac0e (IsA business_traveler traveler) (STV 1.0 0.9091)) +(: cnet_isa_439e3077fe (IsA businessman businessperson) (STV 1.0 0.9091)) +(: cnet_isa_e585d52f34 (IsA businessmen profession) (STV 1.0 0.9091)) +(: cnet_isa_0f0eb1f110 (IsA businessperson capitalist) (STV 1.0 0.9091)) +(: cnet_isa_bbce94d73b (IsA businesswoman businessperson) (STV 1.0 0.9091)) +(: cnet_isa_1cebcac1ee (IsA busker entertainer) (STV 1.0 0.9091)) +(: cnet_isa_c1eb80dbac (IsA buskin boot) (STV 1.0 0.9091)) +(: cnet_isa_907fe3ee71 (IsA busload large_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_5cf1826bb3 (IsA busman_s_holiday vacationing) (STV 1.0 0.9091)) +(: cnet_isa_3b5b5c0b6d (IsA busman driver) (STV 1.0 0.9091)) +(: cnet_isa_cc36d3fc1e (IsA bust revel) (STV 1.0 0.9091)) +(: cnet_isa_0d3c68564d (IsA bust sculpture) (STV 1.0 0.9091)) +(: cnet_isa_c2f2bbd44d (IsA bust_up quarrel) (STV 1.0 0.9091)) +(: cnet_isa_1eda58d4da (IsA bust_up_takeover leveraged_buyout) (STV 1.0 0.9091)) +(: cnet_isa_29c386916d (IsA bustard wading_bird) (STV 1.0 0.9091)) +(: cnet_isa_64acd205ba (IsA buster child) (STV 1.0 0.9091)) +(: cnet_isa_1765bcf809 (IsA buster person) (STV 1.0 0.9091)) +(: cnet_isa_082152bba2 (IsA bustier top) (STV 1.0 0.9091)) +(: cnet_isa_d2769f7882 (IsA bustle commotion) (STV 1.0 0.9091)) +(: cnet_isa_0f9dc7f53c (IsA bustle framework) (STV 1.0 0.9091)) +(: cnet_isa_d1f936a11b (IsA busybody meddler) (STV 1.0 0.9091)) +(: cnet_isa_d8d0c210da (IsA busyness action) (STV 1.0 0.9091)) +(: cnet_isa_4c998ff2a1 (IsA busywork work) (STV 1.0 0.9091)) +(: cnet_isa_669d1fd108 (IsA butacaine local_anesthetic) (STV 1.0 0.9091)) +(: cnet_isa_b2f3882671 (IsA butadiene hydrocarbon) (STV 1.0 0.9091)) +(: cnet_isa_2ffcb0a2c5 (IsA butane fuel) (STV 1.0 0.9091)) +(: cnet_isa_61f01b8b30 (IsA butane gas) (STV 1.0 0.9091)) +(: cnet_isa_ef96708d25 (IsA butane methane_sery) (STV 1.0 0.9091)) +(: cnet_isa_f9ddc4839a (IsA butanone ketone) (STV 1.0 0.9091)) +(: cnet_isa_f6c53f137b (IsA butch lesbian) (STV 1.0 0.9091)) +(: cnet_isa_cb0a384b01 (IsA butcher_s_broom shrub) (STV 1.0 0.9091)) +(: cnet_isa_8f6956ef8b (IsA butcher merchant) (STV 1.0 0.9091)) +(: cnet_isa_9ae7feec3f (IsA butcher murderer) (STV 1.0 0.9091)) +(: cnet_isa_e401825d0e (IsA butcher skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_13e7209a25 (IsA butcher_board slab) (STV 1.0 0.9091)) +(: cnet_isa_4b3479aab6 (IsA butcher_knife knife) (STV 1.0 0.9091)) +(: cnet_isa_291d23c12b (IsA butcher_paper wrapping_paper) (STV 1.0 0.9091)) +(: cnet_isa_c17748858a (IsA butcher_shop shop) (STV 1.0 0.9091)) +(: cnet_isa_d41edeb678 (IsA butcherbird australian_magpie) (STV 1.0 0.9091)) +(: cnet_isa_c8732a896e (IsA butcherbird shrike) (STV 1.0 0.9091)) +(: cnet_isa_3099271470 (IsA butchery commercial_enterprise) (STV 1.0 0.9091)) +(: cnet_isa_24c52b77b2 (IsA butea rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_77ee461e5e (IsA buteo bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_b89105ee3c (IsA buteonine hawk) (STV 1.0 0.9091)) +(: cnet_isa_7a8cc63037 (IsA butler person) (STV 1.0 0.9091)) +(: cnet_isa_b8bebc57b5 (IsA butler servant) (STV 1.0 0.9091)) +(: cnet_isa_152b6e12c1 (IsA butler manservant) (STV 1.0 0.9091)) +(: cnet_isa_deb17218e1 (IsA butt barrel) (STV 1.0 0.9091)) +(: cnet_isa_80d629d155 (IsA butt part) (STV 1.0 0.9091)) +(: cnet_isa_de8194a0c9 (IsA butt stock) (STV 1.0 0.9091)) +(: cnet_isa_50cc3a36df (IsA butt victim) (STV 1.0 0.9091)) +(: cnet_isa_d0b61e2259 (IsA butt_hinge hinge) (STV 1.0 0.9091)) +(: cnet_isa_93f0317860 (IsA butt_joint joint) (STV 1.0 0.9091)) +(: cnet_isa_be1e47edaa (IsA butt_shaft arrow) (STV 1.0 0.9091)) +(: cnet_isa_8a9939a226 (IsA butt_weld butt_joint) (STV 1.0 0.9091)) +(: cnet_isa_7b98da4787 (IsA butt_welding welding) (STV 1.0 0.9091)) +(: cnet_isa_b04d7b47dd (IsA butte hill) (STV 1.0 0.9091)) +(: cnet_isa_44e287e75e (IsA butter dairy_product) (STV 1.0 0.9608)) +(: cnet_isa_f0e7a86091 (IsA butter food) (STV 1.0 0.9740)) +(: cnet_isa_fe31bc10b5 (IsA butter ingredient_often) (STV 1.0 0.9524)) +(: cnet_isa_93cd9a9e29 (IsA butter combatant) (STV 1.0 0.9091)) +(: cnet_isa_dadae11dd2 (IsA butter_cookie cookie) (STV 1.0 0.9091)) +(: cnet_isa_e723212846 (IsA butter_dish dish) (STV 1.0 0.9091)) +(: cnet_isa_fa46e00e56 (IsA butter_knife table_knife) (STV 1.0 0.9091)) +(: cnet_isa_7ba69bdb50 (IsA butterbur herb) (STV 1.0 0.9091)) +(: cnet_isa_30cb3a48e2 (IsA buttercrunch butterhead_lettuce) (STV 1.0 0.9091)) +(: cnet_isa_ce51ef82cf (IsA buttercup herb) (STV 1.0 0.9091)) +(: cnet_isa_d4b7358008 (IsA buttercup_squash turban_squash) (STV 1.0 0.9091)) +(: cnet_isa_f8b861c0e5 (IsA butterfat animal_fat) (STV 1.0 0.9091)) +(: cnet_isa_7a83a6a4fc (IsA butterfinger clumsy_person) (STV 1.0 0.9091)) +(: cnet_isa_9dc8e4746a (IsA butterfish percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_ddee1fd73c (IsA butterfish saltwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_08f72936cc (IsA butterfly insect) (STV 1.0 0.9091)) +(: cnet_isa_a08c9353f3 (IsA butterfly swimming_stroke) (STV 1.0 0.9091)) +(: cnet_isa_7283c6efc0 (IsA butterfly lepidopterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_dc609fb6a4 (IsA butterfly_bush shrub) (STV 1.0 0.9091)) +(: cnet_isa_3394822261 (IsA butterfly_effect consequence) (STV 1.0 0.9091)) +(: cnet_isa_aaa1439e94 (IsA butterfly_fish percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_c5b3e4eb1a (IsA butterfly_flower flower) (STV 1.0 0.9091)) +(: cnet_isa_110a69874b (IsA butterfly_flower shrub) (STV 1.0 0.9091)) +(: cnet_isa_3ec820c30f (IsA butterfly_orchid orchid) (STV 1.0 0.9091)) +(: cnet_isa_1ddfb9c76b (IsA butterfly_orchid orchis) (STV 1.0 0.9091)) +(: cnet_isa_49b3fbee63 (IsA butterfly_pea vine) (STV 1.0 0.9091)) +(: cnet_isa_5210f88d37 (IsA butterfly_plant moth_orchid) (STV 1.0 0.9091)) +(: cnet_isa_a2a45c8c18 (IsA butterfly_ray stingray) (STV 1.0 0.9091)) +(: cnet_isa_ad1707fa6e (IsA butterfly_valve valve) (STV 1.0 0.9091)) +(: cnet_isa_b6d2669a7a (IsA butterfly_weed milkweed) (STV 1.0 0.9091)) +(: cnet_isa_399e5f773c (IsA butterhead_lettuce lettuce) (STV 1.0 0.9091)) +(: cnet_isa_118d3be98c (IsA buttermilk soured_milk) (STV 1.0 0.9091)) +(: cnet_isa_c47c3a8a8b (IsA buttermilk milk) (STV 1.0 0.9091)) +(: cnet_isa_cf9f2fba7c (IsA buttermilk_biscuit biscuit) (STV 1.0 0.9091)) +(: cnet_isa_b0b88b3ed7 (IsA buttermilk_pancake pancake) (STV 1.0 0.9091)) +(: cnet_isa_f0534f955b (IsA butternut edible_nut) (STV 1.0 0.9091)) +(: cnet_isa_fb7547afee (IsA butternut walnut) (STV 1.0 0.9091)) +(: cnet_isa_35f686f42b (IsA butternut_squash winter_squash) (STV 1.0 0.9091)) +(: cnet_isa_2aa63803f7 (IsA butterscotch candy) (STV 1.0 0.9091)) +(: cnet_isa_5e22f40c86 (IsA butterweed herb) (STV 1.0 0.9091)) +(: cnet_isa_491eb03958 (IsA butterweed wildflower) (STV 1.0 0.9091)) +(: cnet_isa_9f418779ca (IsA butterwort carnivorous_plant) (STV 1.0 0.9091)) +(: cnet_isa_3a4d7de8a8 (IsA buttery teashop) (STV 1.0 0.9091)) +(: cnet_isa_3dbb4a9649 (IsA buttinsky meddler) (STV 1.0 0.9091)) +(: cnet_isa_c74e129c9e (IsA buttock body_part) (STV 1.0 0.9091)) +(: cnet_isa_0eca402b76 (IsA button fastening) (STV 1.0 0.9091)) +(: cnet_isa_caa3d7a914 (IsA button artifact) (STV 1.0 0.9091)) +(: cnet_isa_7b3e262f69 (IsA button fastener) (STV 1.0 0.9091)) +(: cnet_isa_7f5594d2a0 (IsA button badge) (STV 1.0 0.9091)) +(: cnet_isa_68ebaadadb (IsA button plant_part) (STV 1.0 0.9091)) +(: cnet_isa_4e8243885e (IsA button_accordion accordion) (STV 1.0 0.9091)) +(: cnet_isa_d87247e702 (IsA button_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_b603a31278 (IsA button_pink pink) (STV 1.0 0.9091)) +(: cnet_isa_d1220f8ace (IsA button_quail wading_bird) (STV 1.0 0.9091)) +(: cnet_isa_5cf0f53f1a (IsA button_snakeroot herb) (STV 1.0 0.9091)) +(: cnet_isa_cccf391c7a (IsA button_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_03c70e2d48 (IsA buttonhole hole) (STV 1.0 0.9091)) +(: cnet_isa_dea2f55a3b (IsA buttonhole_stitch embroidery_stitch) (STV 1.0 0.9091)) +(: cnet_isa_99ea1655c2 (IsA buttonhook hook) (STV 1.0 0.9091)) +(: cnet_isa_fa2f7a9c1b (IsA buttress support) (STV 1.0 0.9091)) +(: cnet_isa_b1d2fe7882 (IsA butty sandwich) (STV 1.0 0.9091)) +(: cnet_isa_03ab5ef526 (IsA butut gambian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_999e749682 (IsA butyl group) (STV 1.0 0.9091)) +(: cnet_isa_31c3114eb9 (IsA butyl_alcohol alcohol) (STV 1.0 0.9091)) +(: cnet_isa_cb9977017f (IsA butyl_nitrite stimulant) (STV 1.0 0.9091)) +(: cnet_isa_5e14953d51 (IsA butyl_nitrite vasodilator) (STV 1.0 0.9091)) +(: cnet_isa_f58bea961b (IsA butyl_rubber synthetic_rubber) (STV 1.0 0.9091)) +(: cnet_isa_33642e41a4 (IsA butylene gas) (STV 1.0 0.9091)) +(: cnet_isa_ef593386ad (IsA butyric_acid saturated_fatty_acid) (STV 1.0 0.9091)) +(: cnet_isa_ebce6acf98 (IsA butyrin glyceryl_ester) (STV 1.0 0.9091)) +(: cnet_isa_889f8e9eed (IsA buxaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_29d75e3063 (IsA buxomness plumpness) (STV 1.0 0.9091)) +(: cnet_isa_44022aa6f6 (IsA buxus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9afc6a12cb (IsA buy_and_bust_operation undercover_operation) (STV 1.0 0.9091)) +(: cnet_isa_db264171ef (IsA buyer_s_market market) (STV 1.0 0.9091)) +(: cnet_isa_622dae90fd (IsA buyer customer) (STV 1.0 0.9091)) +(: cnet_isa_bde8397fae (IsA buying purchase) (STV 1.0 0.9091)) +(: cnet_isa_d36eca2d76 (IsA buyout acquisition) (STV 1.0 0.9091)) +(: cnet_isa_563e2363d4 (IsA buyout_bid bid) (STV 1.0 0.9091)) +(: cnet_isa_c102809cf5 (IsA buzz activity) (STV 1.0 0.9091)) +(: cnet_isa_1b1b1e5257 (IsA buzz sound) (STV 1.0 0.9091)) +(: cnet_isa_03c138c310 (IsA buzz_bomb guided_missile) (STV 1.0 0.9091)) +(: cnet_isa_2f08d3e163 (IsA buzzard hawk) (STV 1.0 0.9091)) +(: cnet_isa_85ac417853 (IsA buzzard new_world_vulture) (STV 1.0 0.9091)) +(: cnet_isa_ea319e4ce8 (IsA buzzer signaling_device) (STV 1.0 0.9091)) +(: cnet_isa_a5a2ef2ad3 (IsA buzzword nonsense) (STV 1.0 0.9091)) +(: cnet_isa_529a8c02f5 (IsA by_and_by future) (STV 1.0 0.9091)) +(: cnet_isa_b8f0636ae3 (IsA by_catch marine_animal) (STV 1.0 0.9091)) +(: cnet_isa_b0e58f4948 (IsA by_election election) (STV 1.0 0.9091)) +(: cnet_isa_07508b21ee (IsA by_line line) (STV 1.0 0.9091)) +(: cnet_isa_08e99565c3 (IsA by_product product) (STV 1.0 0.9091)) +(: cnet_isa_3a5374e818 (IsA by_product consequence) (STV 1.0 0.9091)) +(: cnet_isa_eb6beb73fa (IsA bye concession) (STV 1.0 0.9091)) +(: cnet_isa_d7900d5b1b (IsA bygone past) (STV 1.0 0.9091)) +(: cnet_isa_c0ad1c8eb2 (IsA bylaw rule) (STV 1.0 0.9091)) +(: cnet_isa_c515997493 (IsA bypass highway) (STV 1.0 0.9091)) +(: cnet_isa_80d91ef273 (IsA bypass shunt) (STV 1.0 0.9091)) +(: cnet_isa_167ad8fa65 (IsA bypass_condenser capacitor) (STV 1.0 0.9091)) +(: cnet_isa_c168ae93f9 (IsA byssus fiber) (STV 1.0 0.9091)) +(: cnet_isa_14dc8af776 (IsA bystander spectator) (STV 1.0 0.9091)) +(: cnet_isa_64bca1ca8b (IsA byte computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_711064d023 (IsA byway road) (STV 1.0 0.9091)) +(: cnet_isa_ddc8c8a62a (IsA byzantine asiatic) (STV 1.0 0.9091)) +(: cnet_isa_f1cfd07c6a (IsA byzantine_architecture architectural_style) (STV 1.0 0.9091)) +(: cnet_isa_f20a787415 (IsA c example_of_programming_language) (STV 1.0 0.9091)) +(: cnet_isa_a8a2a180a9 (IsA c object_oriented_programming_language) (STV 1.0 0.9091)) +(: cnet_isa_35c6f644c1 (IsA c procedural_programming_lanuage) (STV 1.0 0.9091)) +(: cnet_isa_8bbd942219 (IsA c programming_language) (STV 1.0 0.9339)) +(: cnet_isa_09740f5367 (IsA c letter) (STV 1.0 0.9091)) +(: cnet_isa_6858bc4557 (IsA c tonic) (STV 1.0 0.9091)) +(: cnet_isa_81838f93a5 (IsA c_battery battery) (STV 1.0 0.9091)) +(: cnet_isa_cd8d27238f (IsA c_clamp clamp) (STV 1.0 0.9091)) +(: cnet_isa_eaaee6d5c0 (IsA c_clef clef) (STV 1.0 0.9091)) +(: cnet_isa_4b8c6b68fc (IsA c_compiler compiler) (STV 1.0 0.9091)) +(: cnet_isa_0a6ab04257 (IsA c_program program) (STV 1.0 0.9339)) +(: cnet_isa_dcdbeca506 (IsA c_ration field_ration) (STV 1.0 0.9091)) +(: cnet_isa_4540e25eaf (IsA c_reactive_protein serum_globulin) (STV 1.0 0.9091)) +(: cnet_isa_7c94d8b3db (IsA ca abbreviation_for_california) (STV 1.0 0.9091)) +(: cnet_isa_3a077a1ae6 (IsA cab car) (STV 1.0 0.9091)) +(: cnet_isa_2329e7dcb0 (IsA cab carriage) (STV 1.0 0.9091)) +(: cnet_isa_a2aeb7c054 (IsA cab compartment) (STV 1.0 0.9091)) +(: cnet_isa_2fc26c2919 (IsA cab_fare fare) (STV 1.0 0.9091)) +(: cnet_isa_c83fd2903b (IsA cabal clique) (STV 1.0 0.9091)) +(: cnet_isa_c247c4297f (IsA cabala secret) (STV 1.0 0.9091)) +(: cnet_isa_55101cd767 (IsA cabalist expert) (STV 1.0 0.9091)) +(: cnet_isa_1cbb232541 (IsA cabalist member) (STV 1.0 0.9091)) +(: cnet_isa_b693da5dc5 (IsA cabana tent) (STV 1.0 0.9091)) +(: cnet_isa_0759c4079e (IsA cabaret show) (STV 1.0 0.9091)) +(: cnet_isa_eb7edd13ce (IsA cabaret spot) (STV 1.0 0.9091)) +(: cnet_isa_884d38c222 (IsA cabbage plant) (STV 1.0 0.9524)) +(: cnet_isa_04bbeb1bae (IsA cabbage cruciferous_vegetable) (STV 1.0 0.9091)) +(: cnet_isa_6800530f4c (IsA cabbage crucifer) (STV 1.0 0.9091)) +(: cnet_isa_12baa10b62 (IsA cabbage_bark angelim) (STV 1.0 0.9091)) +(: cnet_isa_7e0f9d8162 (IsA cabbage_butterfly pierid) (STV 1.0 0.9091)) +(: cnet_isa_e0fe35165d (IsA cabbage_palm palm) (STV 1.0 0.9091)) +(: cnet_isa_b3a11760da (IsA cabbage_palmetto palmetto) (STV 1.0 0.9091)) +(: cnet_isa_866b9aea00 (IsA cabbage_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_7569b895c4 (IsA cabbageworm caterpillar) (STV 1.0 0.9091)) +(: cnet_isa_06b5282320 (IsA caber pole) (STV 1.0 0.9091)) +(: cnet_isa_f02a6662c1 (IsA cabernet red_wine) (STV 1.0 0.9091)) +(: cnet_isa_5e3ba17405 (IsA cabernet_sauvignon_grape vinifera) (STV 1.0 0.9091)) +(: cnet_isa_a0574875a8 (IsA cabin compartment) (STV 1.0 0.9091)) +(: cnet_isa_d091fe525d (IsA cabin house) (STV 1.0 0.9091)) +(: cnet_isa_a1aa7d8da1 (IsA cabin_boy servant) (STV 1.0 0.9091)) +(: cnet_isa_1261e16d12 (IsA cabin_car car) (STV 1.0 0.9091)) +(: cnet_isa_6c6111e8f1 (IsA cabin_class accommodation) (STV 1.0 0.9091)) +(: cnet_isa_a0fc8231cb (IsA cabin_cruiser motorboat) (STV 1.0 0.9091)) +(: cnet_isa_b169710d1e (IsA cabin_liner liner) (STV 1.0 0.9091)) +(: cnet_isa_d17627e5f9 (IsA cabinet furniture) (STV 1.0 0.9339)) +(: cnet_isa_80873da3db (IsA cabinet compartment) (STV 1.0 0.9091)) +(: cnet_isa_4a27210bee (IsA cabinet housing) (STV 1.0 0.9091)) +(: cnet_isa_3fcdd4c081 (IsA cabinet advisory_board) (STV 1.0 0.9091)) +(: cnet_isa_2fab4981ea (IsA cabinet_minister minister) (STV 1.0 0.9091)) +(: cnet_isa_269165b976 (IsA cabinet_wood wood) (STV 1.0 0.9091)) +(: cnet_isa_b162376a3d (IsA cabinetmaker woodworker) (STV 1.0 0.9091)) +(: cnet_isa_ed56540eb9 (IsA cabinetmaking carpentry) (STV 1.0 0.9091)) +(: cnet_isa_7872b11f58 (IsA cabinetwork woodwork) (STV 1.0 0.9091)) +(: cnet_isa_5de1196b4a (IsA cabinetwork carpentry) (STV 1.0 0.9091)) +(: cnet_isa_3f3d56a81b (IsA cable conductor) (STV 1.0 0.9091)) +(: cnet_isa_18ac7cfecc (IsA cable rope) (STV 1.0 0.9091)) +(: cnet_isa_1d3cebd0be (IsA cable television) (STV 1.0 0.9091)) +(: cnet_isa_2f986675b7 (IsA cable telegram) (STV 1.0 0.9091)) +(: cnet_isa_99dab96312 (IsA cable linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_4cf5be1f74 (IsA cable_car compartment) (STV 1.0 0.9091)) +(: cnet_isa_5e2ffeffe5 (IsA cable_railway railway) (STV 1.0 0.9091)) +(: cnet_isa_9981a1851f (IsA cable_television television) (STV 1.0 0.9091)) +(: cnet_isa_77a28f425f (IsA cabochon gem) (STV 1.0 0.9091)) +(: cnet_isa_2d79485d7c (IsA cabomba magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9cd17cc1cf (IsA cabombaceae magnoliid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_491e4342a0 (IsA cabotage seafaring) (STV 1.0 0.9091)) +(: cnet_isa_6d68a0f54c (IsA cabotage right) (STV 1.0 0.9091)) +(: cnet_isa_21020fe5b0 (IsA cabstand stand) (STV 1.0 0.9091)) +(: cnet_isa_3f0080f6cf (IsA cacajao mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_e3c6e0fba4 (IsA cacalia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ed0927fadc (IsA cacao angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_dae2af9aee (IsA cacao_bean cacao) (STV 1.0 0.9091)) +(: cnet_isa_a04f720ab5 (IsA cache storage_space) (STV 1.0 0.9091)) +(: cnet_isa_09f206fa21 (IsA cache buffer) (STV 1.0 0.9091)) +(: cnet_isa_60c6f2ee13 (IsA cachet seal) (STV 1.0 0.9091)) +(: cnet_isa_21133ced2a (IsA cachet award) (STV 1.0 0.9091)) +(: cnet_isa_fbff8e0c59 (IsA cachet warrant) (STV 1.0 0.9091)) +(: cnet_isa_4b20dfc218 (IsA cachexia infirmity) (STV 1.0 0.9091)) +(: cnet_isa_6ada61a14f (IsA cachinnation laugh) (STV 1.0 0.9091)) +(: cnet_isa_41d9fd691a (IsA cachou lozenge) (STV 1.0 0.9091)) +(: cnet_isa_9c024f27fe (IsA cacicus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_d4d23e91de (IsA cacique new_world_oriole) (STV 1.0 0.9091)) +(: cnet_isa_a39663ec21 (IsA cackle laugh) (STV 1.0 0.9091)) +(: cnet_isa_6b69f31993 (IsA cackle cry) (STV 1.0 0.9091)) +(: cnet_isa_b2520d3481 (IsA cackler hen) (STV 1.0 0.9091)) +(: cnet_isa_3087cffa84 (IsA cacodemon evil_spirit) (STV 1.0 0.9091)) +(: cnet_isa_1cc94e19f9 (IsA cacodyl group) (STV 1.0 0.9091)) +(: cnet_isa_cf0497e4f9 (IsA cacodyl organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_13491a1bdb (IsA cacogenesis sterility) (STV 1.0 0.9091)) +(: cnet_isa_3501f2ae52 (IsA cacophony dissonance) (STV 1.0 0.9091)) +(: cnet_isa_aeed7618ea (IsA cactaceae caryophylloid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_d6e2586a30 (IsA cactus succulent) (STV 1.0 0.9091)) +(: cnet_isa_f65efc4708 (IsA cactus_mouse wood_mouse) (STV 1.0 0.9091)) +(: cnet_isa_409fc5ca15 (IsA cactus_wren wren) (STV 1.0 0.9091)) +(: cnet_isa_a5d1fa48d2 (IsA cad villain) (STV 1.0 0.9091)) +(: cnet_isa_5ef26c8f39 (IsA cadaster register) (STV 1.0 0.9091)) +(: cnet_isa_8fded845bf (IsA cadaver body) (STV 1.0 0.9091)) +(: cnet_isa_e46130220b (IsA cadaverine ptomaine) (STV 1.0 0.9091)) +(: cnet_isa_2f39b3b2b2 (IsA caddie attendant) (STV 1.0 0.9091)) +(: cnet_isa_11b4deeca5 (IsA caddis_fly trichopterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_e7d4c45357 (IsA caddisworm caseworm) (STV 1.0 0.9091)) +(: cnet_isa_41eb137297 (IsA caddo amerind) (STV 1.0 0.9091)) +(: cnet_isa_5ba3a15cf5 (IsA caddo buffalo_indian) (STV 1.0 0.9091)) +(: cnet_isa_6d18d38e89 (IsA caddy can) (STV 1.0 0.9091)) +(: cnet_isa_96633f3412 (IsA cadence rhythmicity) (STV 1.0 0.9091)) +(: cnet_isa_dd0982c201 (IsA cadence passage) (STV 1.0 0.9091)) +(: cnet_isa_8d88ecbf6e (IsA cadenza passage) (STV 1.0 0.9091)) +(: cnet_isa_fd1a67ed59 (IsA cadet trainee) (STV 1.0 0.9091)) +(: cnet_isa_829b933890 (IsA cadetship position) (STV 1.0 0.9091)) +(: cnet_isa_06ab900ead (IsA cadillac brand_of_car) (STV 1.0 0.9091)) +(: cnet_isa_3d4fd8bfc7 (IsA cadillac expensive_car) (STV 1.0 0.9339)) +(: cnet_isa_51d26ab210 (IsA cadmium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_a676ce531e (IsA cadmium_orange cadmium_yellow) (STV 1.0 0.9091)) +(: cnet_isa_f88df0e69b (IsA cadmium_sulfide sulfide) (STV 1.0 0.9091)) +(: cnet_isa_5cea9fd9de (IsA cadmium_yellow pigment) (STV 1.0 0.9091)) +(: cnet_isa_95a02f6ee7 (IsA cadmium_yellow_pale cadmium_yellow) (STV 1.0 0.9091)) +(: cnet_isa_cb685d52c7 (IsA cadmus imaginary_being) (STV 1.0 0.9091)) +(: cnet_isa_118330a1e1 (IsA cadra arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_ede9ea6d68 (IsA cadre core) (STV 1.0 0.9091)) +(: cnet_isa_8e14bc94c1 (IsA caduceus insignia) (STV 1.0 0.9091)) +(: cnet_isa_3c809a32b2 (IsA caecilian amphibian) (STV 1.0 0.9091)) +(: cnet_isa_574c7dac9a (IsA caeciliidae amphibian_family) (STV 1.0 0.9091)) +(: cnet_isa_ea061a296b (IsA caenoleste mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_8794397a34 (IsA caenolestidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_9550e79155 (IsA caesalpinia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7100f5ca0c (IsA caesalpiniaceae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_d96f75ff9e (IsA caesalpinioideae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_4725c09eba (IsA caesar_salad tossed_salad) (STV 1.0 0.9091)) +(: cnet_isa_2c454a6cb7 (IsA caesium_clock atomic_clock) (STV 1.0 0.9091)) +(: cnet_isa_e474b3949a (IsA caesura prosody) (STV 1.0 0.9091)) +(: cnet_isa_5b5f63dfd9 (IsA caesura pause) (STV 1.0 0.9091)) +(: cnet_isa_dbaca4f1e6 (IsA cafe restaurant) (STV 1.0 0.9091)) +(: cnet_isa_4d0dd6f5da (IsA cafe_au_lait coffee) (STV 1.0 0.9091)) +(: cnet_isa_f900324976 (IsA cafe_noir coffee) (STV 1.0 0.9091)) +(: cnet_isa_6a0978a94f (IsA cafe_royale coffee) (STV 1.0 0.9091)) +(: cnet_isa_d35727668a (IsA cafeteria restaurant) (STV 1.0 0.9091)) +(: cnet_isa_ff897d4148 (IsA cafeteria_facility facility) (STV 1.0 0.9091)) +(: cnet_isa_55dff212c9 (IsA cafeteria_tray tray) (STV 1.0 0.9091)) +(: cnet_isa_a14d8de6ae (IsA caff cafe) (STV 1.0 0.9091)) +(: cnet_isa_cdd1c1bf59 (IsA caffe_latte espresso) (STV 1.0 0.9091)) +(: cnet_isa_f78cf55652 (IsA caffein_addiction drug_addiction) (STV 1.0 0.9091)) +(: cnet_isa_56e7b6c5ac (IsA caffeine stimulant) (STV 1.0 0.9339)) +(: cnet_isa_cb63082f8e (IsA caffeine alkaloid) (STV 1.0 0.9091)) +(: cnet_isa_c523c57c59 (IsA caffeine_addict addict) (STV 1.0 0.9091)) +(: cnet_isa_56f3bf0e5a (IsA caffeinism poisoning) (STV 1.0 0.9091)) +(: cnet_isa_4a0394d5f8 (IsA caftan cloak) (STV 1.0 0.9091)) +(: cnet_isa_85bad494f8 (IsA caftan dress) (STV 1.0 0.9091)) +(: cnet_isa_4fc45afaa0 (IsA cage enclosure) (STV 1.0 0.9091)) +(: cnet_isa_b6e3019556 (IsA cage net) (STV 1.0 0.9091)) +(: cnet_isa_d80557c8b2 (IsA cage constraint) (STV 1.0 0.9091)) +(: cnet_isa_62f98f2a98 (IsA cagoule parka) (STV 1.0 0.9091)) +(: cnet_isa_7ab76f6b73 (IsA cahita uto_aztecan) (STV 1.0 0.9091)) +(: cnet_isa_23b6075fde (IsA cahita taracahitian) (STV 1.0 0.9091)) +(: cnet_isa_82dfde5133 (IsA cahoot connivance) (STV 1.0 0.9091)) +(: cnet_isa_3d2dd6d5eb (IsA caiman_lizard teiid_lizard) (STV 1.0 0.9091)) +(: cnet_isa_9367ee9261 (IsA cairene egyptian) (STV 1.0 0.9091)) +(: cnet_isa_49ebdec56c (IsA cairina bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_d3c89a1b2e (IsA cairn terrier) (STV 1.0 0.9091)) +(: cnet_isa_5b4464885e (IsA cairn marker) (STV 1.0 0.9091)) +(: cnet_isa_1cc3ea4ce8 (IsA cairngorm quartz) (STV 1.0 0.9091)) +(: cnet_isa_19e3d33cc2 (IsA caisson chamber) (STV 1.0 0.9091)) +(: cnet_isa_a106e30310 (IsA caisson chest) (STV 1.0 0.9091)) +(: cnet_isa_14210114fe (IsA caisson military_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_d500912e50 (IsA caitiff cur) (STV 1.0 0.9091)) +(: cnet_isa_abff70469b (IsA cajan_pea pea) (STV 1.0 0.9091)) +(: cnet_isa_ce1bdc8f2d (IsA cajanus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_bcb13bd795 (IsA cajun acadian) (STV 1.0 0.9091)) +(: cnet_isa_2c00a8b438 (IsA cakchiquel maya) (STV 1.0 0.9091)) +(: cnet_isa_00d85e241a (IsA cakchiquel mayan) (STV 1.0 0.9091)) +(: cnet_isa_052f039728 (IsA cake block) (STV 1.0 0.9091)) +(: cnet_isa_cc89d1bcf0 (IsA cake baked_good) (STV 1.0 0.9091)) +(: cnet_isa_69772ac14c (IsA cake_mix ready_mix) (STV 1.0 0.9091)) +(: cnet_isa_694a5aaa47 (IsA cakewalk accomplishment) (STV 1.0 0.9091)) +(: cnet_isa_d8d4635848 (IsA cakewalk stage_dancing) (STV 1.0 0.9091)) +(: cnet_isa_7ee357906d (IsA cakile dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c1d1869694 (IsA calaba tree) (STV 1.0 0.9091)) +(: cnet_isa_5133c900b9 (IsA calabar_bean bean) (STV 1.0 0.9091)) +(: cnet_isa_b0b048b06f (IsA calabar_bean_vine vine) (STV 1.0 0.9091)) +(: cnet_isa_1d2ff596e8 (IsA calabash pipe) (STV 1.0 0.9091)) +(: cnet_isa_e0bf27e126 (IsA calabash gourd) (STV 1.0 0.9091)) +(: cnet_isa_727b7987d8 (IsA calabash tree) (STV 1.0 0.9091)) +(: cnet_isa_50c9e387f5 (IsA caladenia orchid) (STV 1.0 0.9091)) +(: cnet_isa_435eb179bd (IsA caladium arum) (STV 1.0 0.9091)) +(: cnet_isa_61024f3c93 (IsA caladium_bicolor caladium) (STV 1.0 0.9091)) +(: cnet_isa_5dc837252f (IsA calamagrostis gramineae) (STV 1.0 0.9091)) +(: cnet_isa_5920078584 (IsA calamagrostis monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e0f70bbd9f (IsA calamine_lotion lotion) (STV 1.0 0.9091)) +(: cnet_isa_0947f27f55 (IsA calamint herb) (STV 1.0 0.9091)) +(: cnet_isa_d57f3da319 (IsA calamintha asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c8bdd40ab2 (IsA calamity misfortune) (STV 1.0 0.9091)) +(: cnet_isa_245103a7e0 (IsA calamus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_71ae9f7109 (IsA calamus palm) (STV 1.0 0.9091)) +(: cnet_isa_9329e2e523 (IsA calamus root) (STV 1.0 0.9091)) +(: cnet_isa_6b8b5f0417 (IsA calamus_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_a4aba73e9c (IsA calandrinia caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_56a0db34e5 (IsA calanthe orchid) (STV 1.0 0.9091)) +(: cnet_isa_da30ca0558 (IsA calapooya penutian) (STV 1.0 0.9091)) +(: cnet_isa_bfb3e8319e (IsA calash hood) (STV 1.0 0.9091)) +(: cnet_isa_7ed991244b (IsA calcarine_sulcus sulcus) (STV 1.0 0.9091)) +(: cnet_isa_73f5fbba60 (IsA calceolaria flower) (STV 1.0 0.9091)) +(: cnet_isa_bfd7f738f9 (IsA calceus shoe) (STV 1.0 0.9091)) +(: cnet_isa_0e4fba2e98 (IsA calcification chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_c9581ba99f (IsA calcification hardening) (STV 1.0 0.9091)) +(: cnet_isa_01a33bcb15 (IsA calcification inaction) (STV 1.0 0.9091)) +(: cnet_isa_f279eb6a0d (IsA calcimine wash) (STV 1.0 0.9091)) +(: cnet_isa_d327099ee4 (IsA calcimine water_base_paint) (STV 1.0 0.9091)) +(: cnet_isa_ed4fe012f9 (IsA calcination oxidation) (STV 1.0 0.9091)) +(: cnet_isa_25966da8b5 (IsA calcite spar) (STV 1.0 0.9091)) +(: cnet_isa_9e686d490a (IsA calcitonin thyroid_hormone) (STV 1.0 0.9091)) +(: cnet_isa_19c9405755 (IsA calcium element) (STV 1.0 0.9454)) +(: cnet_isa_336c4a649b (IsA calcium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_fa97bea1a6 (IsA calcium_bicarbonate bicarbonate) (STV 1.0 0.9091)) +(: cnet_isa_5a94d670b0 (IsA calcium_blocker medicine) (STV 1.0 0.9091)) +(: cnet_isa_4e18f80813 (IsA calcium_carbide binary_compound) (STV 1.0 0.9091)) +(: cnet_isa_f9ae938c67 (IsA calcium_carbide carbide) (STV 1.0 0.9091)) +(: cnet_isa_de5c2c93f0 (IsA calcium_carbonate carbonate) (STV 1.0 0.9091)) +(: cnet_isa_c6b6687a5f (IsA calcium_chloride salt) (STV 1.0 0.9091)) +(: cnet_isa_b02bce539c (IsA calcium_cyanamide compound) (STV 1.0 0.9091)) +(: cnet_isa_0615c51b02 (IsA calcium_hydride hydride) (STV 1.0 0.9091)) +(: cnet_isa_1c4bef4afa (IsA calcium_hydroxide hydroxide) (STV 1.0 0.9091)) +(: cnet_isa_fc5d75558a (IsA calcium_hypochlorite bleaching_agent) (STV 1.0 0.9091)) +(: cnet_isa_6b3574d302 (IsA calcium_hypochlorite hypochlorite) (STV 1.0 0.9091)) +(: cnet_isa_9e55767435 (IsA calcium_ion calcium) (STV 1.0 0.9091)) +(: cnet_isa_9bd410d790 (IsA calcium_ion coagulation_factor) (STV 1.0 0.9091)) +(: cnet_isa_089e2c72f7 (IsA calcium_lactate salt) (STV 1.0 0.9091)) +(: cnet_isa_ec49f3cedb (IsA calcium_nitrate nitrate) (STV 1.0 0.9091)) +(: cnet_isa_83ee93685f (IsA calcium_oxide oxide) (STV 1.0 0.9091)) +(: cnet_isa_76fbaa27da (IsA calcium_phosphate phosphate) (STV 1.0 0.9091)) +(: cnet_isa_e8c883d305 (IsA calcium_stearate salt) (STV 1.0 0.9091)) +(: cnet_isa_8407495e3c (IsA calcium_sulphate salt) (STV 1.0 0.9091)) +(: cnet_isa_587c0a10cf (IsA calculation procedure) (STV 1.0 0.9091)) +(: cnet_isa_5908003c4b (IsA calculation planning) (STV 1.0 0.9091)) +(: cnet_isa_3f0706faf1 (IsA calculation problem_solving) (STV 1.0 0.9091)) +(: cnet_isa_4de9027844 (IsA calculator machine) (STV 1.0 0.9091)) +(: cnet_isa_ee2edee9ef (IsA calculator expert) (STV 1.0 0.9091)) +(: cnet_isa_8dbe35162d (IsA calculus pure_mathematic) (STV 1.0 0.9091)) +(: cnet_isa_47d102f85a (IsA calculus rock) (STV 1.0 0.9091)) +(: cnet_isa_1f29d1a8ee (IsA calculus_of_variation calculus) (STV 1.0 0.9091)) +(: cnet_isa_6b23a0842c (IsA caldera volcanic_crater) (STV 1.0 0.9091)) +(: cnet_isa_ca7d504331 (IsA caldron pot) (STV 1.0 0.9091)) +(: cnet_isa_b391cb452a (IsA calefaction hotness) (STV 1.0 0.9091)) +(: cnet_isa_0c4a268a9b (IsA calendar list) (STV 1.0 0.9091)) +(: cnet_isa_52e5fe1352 (IsA calendar table) (STV 1.0 0.9091)) +(: cnet_isa_e69bf442df (IsA calendar arrangement) (STV 1.0 0.9091)) +(: cnet_isa_532da72f1d (IsA calendar_day time_period) (STV 1.0 0.9091)) +(: cnet_isa_1eae3d9c23 (IsA calendar_month time_period) (STV 1.0 0.9091)) +(: cnet_isa_2fa516b8d0 (IsA calendar_year year) (STV 1.0 0.9091)) +(: cnet_isa_6b4b7c44e6 (IsA calender machine) (STV 1.0 0.9091)) +(: cnet_isa_1e168f196e (IsA calendula flower) (STV 1.0 0.9091)) +(: cnet_isa_327a0cd869 (IsA calf_s_brain brain) (STV 1.0 0.9091)) +(: cnet_isa_6d70fc1330 (IsA calf_s_foot_jelly gelatin) (STV 1.0 0.9091)) +(: cnet_isa_9d26aa381e (IsA calf_s_tongue tongue) (STV 1.0 0.9091)) +(: cnet_isa_b6ffd76fb6 (IsA calf young_mammal) (STV 1.0 0.9091)) +(: cnet_isa_8d1080d0f5 (IsA calf skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_8365404609 (IsA calf leather) (STV 1.0 0.9091)) +(: cnet_isa_f1eb7de99f (IsA calf_roping roping) (STV 1.0 0.9091)) +(: cnet_isa_175795310b (IsA calgary_carpet_juniper plant) (STV 1.0 0.9091)) +(: cnet_isa_a565c63c39 (IsA calibration activity) (STV 1.0 0.9091)) +(: cnet_isa_8131c975ee (IsA caliche rock) (STV 1.0 0.9091)) +(: cnet_isa_fe3b62d7dc (IsA caliche soil) (STV 1.0 0.9091)) +(: cnet_isa_1cd8b38a5c (IsA calico fabric) (STV 1.0 0.9091)) +(: cnet_isa_8322158f64 (IsA calidris bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_ba38d56b72 (IsA california place_in_north_america) (STV 1.0 0.9091)) +(: cnet_isa_fa0aa133fb (IsA california state) (STV 1.0 0.9693)) +(: cnet_isa_4d000120e6 (IsA california state_in_usa) (STV 1.0 0.9454)) +(: cnet_isa_d8d8f73e32 (IsA california_black_oak oak) (STV 1.0 0.9091)) +(: cnet_isa_adfa39dbd2 (IsA california_black_walnut walnut) (STV 1.0 0.9091)) +(: cnet_isa_5286c22d34 (IsA california_bluebell scorpionweed) (STV 1.0 0.9091)) +(: cnet_isa_8b4b6c5e8d (IsA california_box_elder box_elder) (STV 1.0 0.9091)) +(: cnet_isa_189cee7944 (IsA california_condor condor) (STV 1.0 0.9091)) +(: cnet_isa_d93adfc5e9 (IsA california_four_o_clock four_o_clock) (STV 1.0 0.9091)) +(: cnet_isa_d8ddbc4985 (IsA california_fuchsia shrublet) (STV 1.0 0.9091)) +(: cnet_isa_354573b214 (IsA california_lady_s_slipper lady_s_slipper) (STV 1.0 0.9091)) +(: cnet_isa_3b83c30d5e (IsA california_laurel laurel) (STV 1.0 0.9091)) +(: cnet_isa_6fd6664bd2 (IsA california_newt pacific_newt) (STV 1.0 0.9091)) +(: cnet_isa_422842a32b (IsA california_nutmeg yew) (STV 1.0 0.9091)) +(: cnet_isa_7f9e34aea8 (IsA california_personality_inventory self_report_personality_inventory) (STV 1.0 0.9091)) +(: cnet_isa_40c66dbda9 (IsA california_pitcher_plant pitcher_plant) (STV 1.0 0.9091)) +(: cnet_isa_6b8b094667 (IsA california_poppy poppy) (STV 1.0 0.9091)) +(: cnet_isa_dac49cb846 (IsA california_privet privet) (STV 1.0 0.9091)) +(: cnet_isa_efd9a97c77 (IsA california_quail quail) (STV 1.0 0.9091)) +(: cnet_isa_ec56868f25 (IsA california_redwood sequoia) (STV 1.0 0.9091)) +(: cnet_isa_53beb3dacd (IsA california_sagebrush sagebrush) (STV 1.0 0.9091)) +(: cnet_isa_2484e7a270 (IsA california_sea_lion sea_lion) (STV 1.0 0.9091)) +(: cnet_isa_b1a8b27a11 (IsA california_single_leaf_pinyon pinon) (STV 1.0 0.9091)) +(: cnet_isa_aa00731df9 (IsA california_state_song love_california) (STV 1.0 0.9091)) +(: cnet_isa_9c4c77a053 (IsA california_sycamore plane_tree) (STV 1.0 0.9091)) +(: cnet_isa_a45d4a810c (IsA california_whipsnake whip_snake) (STV 1.0 0.9091)) +(: cnet_isa_a662b08af2 (IsA california_white_oak white_oak) (STV 1.0 0.9091)) +(: cnet_isa_7936c4040a (IsA california_wine wine) (STV 1.0 0.9091)) +(: cnet_isa_eb51dd0465 (IsA californian american) (STV 1.0 0.9091)) +(: cnet_isa_b2555f502c (IsA californium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_998dfd188d (IsA caliper measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_52788b3b21 (IsA caliph moslem) (STV 1.0 0.9091)) +(: cnet_isa_9936121dfb (IsA caliph ruler) (STV 1.0 0.9091)) +(: cnet_isa_2f031ae83f (IsA caliphate position) (STV 1.0 0.9091)) +(: cnet_isa_b2c8bdcae9 (IsA caliphate jurisdiction) (STV 1.0 0.9091)) +(: cnet_isa_78a8c635fe (IsA calisaya cinchona) (STV 1.0 0.9091)) +(: cnet_isa_20077c9783 (IsA calisthenic exercise) (STV 1.0 0.9091)) +(: cnet_isa_e2fdb41902 (IsA calk cleat) (STV 1.0 0.9091)) +(: cnet_isa_087671924e (IsA call visit) (STV 1.0 0.9091)) +(: cnet_isa_bad54f9fd0 (IsA call inclination) (STV 1.0 0.9091)) +(: cnet_isa_894c1273d5 (IsA call demand) (STV 1.0 0.9091)) +(: cnet_isa_fb196fa55d (IsA call instruction) (STV 1.0 0.9091)) +(: cnet_isa_604a82e51d (IsA call request) (STV 1.0 0.9091)) +(: cnet_isa_d6fd550bfd (IsA call telephone) (STV 1.0 0.9091)) +(: cnet_isa_5785ec14a0 (IsA call decision) (STV 1.0 0.9091)) +(: cnet_isa_e84384561b (IsA call_back employment) (STV 1.0 0.9091)) +(: cnet_isa_896349773d (IsA call_back call) (STV 1.0 0.9091)) +(: cnet_isa_e0857c7beb (IsA call_board bulletin_board) (STV 1.0 0.9091)) +(: cnet_isa_6dc54eb250 (IsA call_center center) (STV 1.0 0.9091)) +(: cnet_isa_05110706d1 (IsA call_fire fire) (STV 1.0 0.9091)) +(: cnet_isa_4d1eef6c80 (IsA call_forwarding telephone) (STV 1.0 0.9091)) +(: cnet_isa_948d20d24b (IsA call_girl prostitute) (STV 1.0 0.9091)) +(: cnet_isa_d5f05eeb88 (IsA call_in call) (STV 1.0 0.9091)) +(: cnet_isa_bb877d4c17 (IsA call_loan loan) (STV 1.0 0.9091)) +(: cnet_isa_e53dc45d9a (IsA call_mark mark) (STV 1.0 0.9091)) +(: cnet_isa_9ede1a9282 (IsA call_option option) (STV 1.0 0.9091)) +(: cnet_isa_6b79609e91 (IsA call_option stock_option) (STV 1.0 0.9091)) +(: cnet_isa_fec484f7ed (IsA call_out challenge) (STV 1.0 0.9091)) +(: cnet_isa_e814dc93cf (IsA call_up summon) (STV 1.0 0.9091)) +(: cnet_isa_a31b77d2d6 (IsA call_waiting telephone) (STV 1.0 0.9091)) +(: cnet_isa_0d02be53ae (IsA calla monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_125a757ba6 (IsA calla_lily flower) (STV 1.0 0.9091)) +(: cnet_isa_9a737b735c (IsA caller announcer) (STV 1.0 0.9091)) +(: cnet_isa_a2481110b2 (IsA caller bettor) (STV 1.0 0.9091)) +(: cnet_isa_6c9fb65c7d (IsA caller investor) (STV 1.0 0.9091)) +(: cnet_isa_33e8905e5a (IsA caller leader) (STV 1.0 0.9091)) +(: cnet_isa_8eb600b390 (IsA caller speaker) (STV 1.0 0.9091)) +(: cnet_isa_a5363f5f69 (IsA caller visitor) (STV 1.0 0.9091)) +(: cnet_isa_ea3633ea36 (IsA caller_id display) (STV 1.0 0.9091)) +(: cnet_isa_9c1a168b17 (IsA calliandra shrub) (STV 1.0 0.9091)) +(: cnet_isa_2f197117ec (IsA callicebus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_dd7e009cfd (IsA calligrapher skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_3ddc55364c (IsA calligraphy handwriting) (STV 1.0 0.9091)) +(: cnet_isa_05ec12a6ff (IsA callimorpha arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_4d1c1f5492 (IsA callinecte arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_d9d7556650 (IsA calling_card peculiarity) (STV 1.0 0.9091)) +(: cnet_isa_021e5d5e3e (IsA calling_card greeting) (STV 1.0 0.9091)) +(: cnet_isa_ef956148c8 (IsA calling_card credit_card) (STV 1.0 0.9091)) +(: cnet_isa_26558e16ba (IsA calling_into_question challenge) (STV 1.0 0.9091)) +(: cnet_isa_8cfcaf377d (IsA callionymidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_c11611a89c (IsA calliope musical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_dad0157cac (IsA calliophis reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_4ce7404d6f (IsA calliopsis coreopsis) (STV 1.0 0.9091)) +(: cnet_isa_becab079b7 (IsA calliphora arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_f19a0db1b9 (IsA calliphoridae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_ce20e55d06 (IsA callirhoe dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_207882ad54 (IsA callisaurus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_8b9c0e5205 (IsA callistephus asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8522beaea8 (IsA callisthenic practice) (STV 1.0 0.9091)) +(: cnet_isa_7999da3fcf (IsA callithricidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_a4c3134ac2 (IsA callithrix mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_5d9858df48 (IsA callithump parade) (STV 1.0 0.9091)) +(: cnet_isa_a6eabf545d (IsA callitrichaceae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_598621b64e (IsA callitriche rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_72a0f2979a (IsA callitris gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_9831a12602 (IsA callorhinus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_153982fe00 (IsA callosity hardening) (STV 1.0 0.9091)) +(: cnet_isa_ef9097c900 (IsA callosotomy psychosurgery) (STV 1.0 0.9091)) +(: cnet_isa_6404c03eb0 (IsA callowness immaturity) (STV 1.0 0.9091)) +(: cnet_isa_d7c52ae735 (IsA calluna dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3f9d8c4b3f (IsA callus plant_process) (STV 1.0 0.9091)) +(: cnet_isa_f0f67f232c (IsA callus scar) (STV 1.0 0.9091)) +(: cnet_isa_a0125d661d (IsA calm_air wind) (STV 1.0 0.9091)) +(: cnet_isa_9e20235044 (IsA calmness feeling) (STV 1.0 0.9091)) +(: cnet_isa_49b6fad48b (IsA calmness good_weather) (STV 1.0 0.9091)) +(: cnet_isa_03ecbc0f53 (IsA calocarpum dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7a43320797 (IsA calocedrus gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_18c28dd605 (IsA calochortus liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8da67d2722 (IsA calomel chloride) (STV 1.0 0.9091)) +(: cnet_isa_0f91b628ab (IsA calophyllum dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0462735696 (IsA calopogon monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a8847ad6ed (IsA calorie work_unit) (STV 1.0 0.9454)) +(: cnet_isa_a0205cf9ae (IsA calorie_chart list) (STV 1.0 0.9091)) +(: cnet_isa_1e7256b5eb (IsA calorimeter measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_8e1e3d6fcf (IsA calorimetry measurement) (STV 1.0 0.9091)) +(: cnet_isa_f4988fc0ac (IsA caloscypha_fulgen discomycete) (STV 1.0 0.9091)) +(: cnet_isa_ba9d65e07a (IsA calosoma ground_beetle) (STV 1.0 0.9091)) +(: cnet_isa_852060e82e (IsA calostoma_cinnabarina gasteromycete) (STV 1.0 0.9091)) +(: cnet_isa_778147f950 (IsA calostoma_lutescen gasteromycete) (STV 1.0 0.9091)) +(: cnet_isa_2ed4beb5df (IsA calostoma_ravenelii gasteromycete) (STV 1.0 0.9091)) +(: cnet_isa_199ad9dd92 (IsA calostomataceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_08cd660377 (IsA calpac cap) (STV 1.0 0.9091)) +(: cnet_isa_a1b20e99d7 (IsA calque saying) (STV 1.0 0.9091)) +(: cnet_isa_4d212f5e40 (IsA caltha magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3c28b2b517 (IsA caltrop subshrub) (STV 1.0 0.9091)) +(: cnet_isa_381868764d (IsA calumet pipe) (STV 1.0 0.9091)) +(: cnet_isa_bdbf9fe4f3 (IsA calvado brandy) (STV 1.0 0.9091)) +(: cnet_isa_91673a9dea (IsA calvaria bone) (STV 1.0 0.9091)) +(: cnet_isa_d3cd2acd45 (IsA calvary affliction) (STV 1.0 0.9091)) +(: cnet_isa_a567bcb0ce (IsA calvary_clover medic) (STV 1.0 0.9091)) +(: cnet_isa_901e85e082 (IsA calvary_cross cross) (STV 1.0 0.9091)) +(: cnet_isa_8bb1856663 (IsA calvatia fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_0be7621131 (IsA calve_feet veal) (STV 1.0 0.9091)) +(: cnet_isa_5424b7b6c0 (IsA calve_liver liver) (STV 1.0 0.9091)) +(: cnet_isa_866f3ba4b7 (IsA calvin_and_hobbe cartoon) (STV 1.0 0.9091)) +(: cnet_isa_ab0d89e768 (IsA calving parturition) (STV 1.0 0.9091)) +(: cnet_isa_b1451b028a (IsA calvinism protestantism) (STV 1.0 0.9091)) +(: cnet_isa_a7317fc2ab (IsA calvinistic_baptist baptist_denomination) (STV 1.0 0.9091)) +(: cnet_isa_1ca5ca98bd (IsA calycanthaceae magnoliid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_85f1da8074 (IsA calycanthus magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1e9e27c52a (IsA calycophyllum asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_baebec3b2d (IsA calyculus structure) (STV 1.0 0.9091)) +(: cnet_isa_db4ea89ea9 (IsA calymmatobacterium bacteria) (STV 1.0 0.9091)) +(: cnet_isa_fa1a26c890 (IsA calymmatobacterium_granulomatis bacteria_specy) (STV 1.0 0.9091)) +(: cnet_isa_9f23648c35 (IsA calypso sea_nymph) (STV 1.0 0.9091)) +(: cnet_isa_6afa27b939 (IsA calypso orchid) (STV 1.0 0.9091)) +(: cnet_isa_3744733ab5 (IsA calyptra plant_part) (STV 1.0 0.9091)) +(: cnet_isa_221653946a (IsA calystegia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b64536e5d9 (IsA calyx coil) (STV 1.0 0.9091)) +(: cnet_isa_fd1703ea42 (IsA cam rotating_mechanism) (STV 1.0 0.9091)) +(: cnet_isa_ee67e8bd1c (IsA camail hood) (STV 1.0 0.9091)) +(: cnet_isa_e398af4a3b (IsA cama liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_84634633d0 (IsA camassia liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_781367ca87 (IsA cambarus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_c23d52a96b (IsA camber alignment) (STV 1.0 0.9091)) +(: cnet_isa_b0e06117b6 (IsA camber convex_shape) (STV 1.0 0.9091)) +(: cnet_isa_5312395005 (IsA camber_arch arch) (STV 1.0 0.9091)) +(: cnet_isa_2fd6ef8699 (IsA cambium stratum) (STV 1.0 0.9091)) +(: cnet_isa_0d67d57fef (IsA cambium vascular_tissue) (STV 1.0 0.9091)) +(: cnet_isa_a22aecd112 (IsA cambodian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_501bd3ed91 (IsA cambric fabric) (STV 1.0 0.9091)) +(: cnet_isa_2179a68d9e (IsA cambric_tea tea) (STV 1.0 0.9091)) +(: cnet_isa_882d4e1f1b (IsA camcorder television_camera) (STV 1.0 0.9091)) +(: cnet_isa_fe8d84173a (IsA camel_s_hair fabric) (STV 1.0 0.9091)) +(: cnet_isa_26df97ed97 (IsA camel even_toed_ungulate) (STV 1.0 0.9091)) +(: cnet_isa_59bf0fb2ff (IsA camel_cavalry cavalry) (STV 1.0 0.9091)) +(: cnet_isa_eab8baa5a4 (IsA camel_racing racing) (STV 1.0 0.9091)) +(: cnet_isa_c1ee1b4d69 (IsA camelidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_ceef912ecd (IsA camelina dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b7cde94583 (IsA camellia shrub) (STV 1.0 0.9091)) +(: cnet_isa_f202ae5693 (IsA camelpox animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_5499cea346 (IsA camelus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_8550b50406 (IsA camembert cheese) (STV 1.0 0.9091)) +(: cnet_isa_f994e497e3 (IsA cameo anaglyph) (STV 1.0 0.9091)) +(: cnet_isa_98308c7824 (IsA camera tool_for_taking_picture) (STV 1.0 0.9091)) +(: cnet_isa_2b6bba1ad2 (IsA camera photographic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_6be0863ac7 (IsA camera_angle point_of_view) (STV 1.0 0.9091)) +(: cnet_isa_067f19880d (IsA camera_care care) (STV 1.0 0.9091)) +(: cnet_isa_e03c179de3 (IsA camera_len len) (STV 1.0 0.9091)) +(: cnet_isa_8492cf1ea7 (IsA camera_lucida optical_device) (STV 1.0 0.9091)) +(: cnet_isa_3b8cab9483 (IsA camera_obscura chamber) (STV 1.0 0.9091)) +(: cnet_isa_5cbbb8fe32 (IsA camera_tripod tripod) (STV 1.0 0.9091)) +(: cnet_isa_780bbe9dc5 (IsA cameraman photographer) (STV 1.0 0.9091)) +(: cnet_isa_f0c888b61a (IsA cameroon_franc franc) (STV 1.0 0.9091)) +(: cnet_isa_6ca4cdb44f (IsA cameroonian african) (STV 1.0 0.9091)) +(: cnet_isa_2ba1700ef0 (IsA camise shirt) (STV 1.0 0.9091)) +(: cnet_isa_ccd1c11cd5 (IsA camisole negligee) (STV 1.0 0.9091)) +(: cnet_isa_6ea2983b42 (IsA camisole undergarment) (STV 1.0 0.9091)) +(: cnet_isa_8221cdf1ba (IsA camlet fabric) (STV 1.0 0.9091)) +(: cnet_isa_777818fa01 (IsA camlet garment) (STV 1.0 0.9091)) +(: cnet_isa_6b343751c9 (IsA camomile_tea tisane) (STV 1.0 0.9091)) +(: cnet_isa_42fe68f1a6 (IsA camorra organized_crime) (STV 1.0 0.9091)) +(: cnet_isa_07d10b3db4 (IsA camouflage fabric) (STV 1.0 0.9091)) +(: cnet_isa_a920a3a5ef (IsA camouflage screen) (STV 1.0 0.9091)) +(: cnet_isa_c12a350139 (IsA camp place) (STV 1.0 0.9091)) +(: cnet_isa_71e21c4e82 (IsA camp housing) (STV 1.0 0.9091)) +(: cnet_isa_78dac2b6ed (IsA camp penal_institution) (STV 1.0 0.9091)) +(: cnet_isa_29cbbc7606 (IsA camp shelter) (STV 1.0 0.9091)) +(: cnet_isa_9efe8be550 (IsA camp site) (STV 1.0 0.9091)) +(: cnet_isa_da277afbfa (IsA camp triteness) (STV 1.0 0.9091)) +(: cnet_isa_abd34c3e63 (IsA camp gathering) (STV 1.0 0.9091)) +(: cnet_isa_c94b3306b3 (IsA camp military_quarter) (STV 1.0 0.9091)) +(: cnet_isa_4b73b807ed (IsA camp_chair folding_chair) (STV 1.0 0.9091)) +(: cnet_isa_9bc15bd865 (IsA camp_follower follower) (STV 1.0 0.9091)) +(: cnet_isa_58cea34034 (IsA camp_follower prostitute) (STV 1.0 0.9091)) +(: cnet_isa_e613296f07 (IsA camp_meeting meeting) (STV 1.0 0.9091)) +(: cnet_isa_8bddd8757a (IsA campaign expedition) (STV 1.0 0.9091)) +(: cnet_isa_7185f10e01 (IsA campaign venture) (STV 1.0 0.9091)) +(: cnet_isa_4215bbe717 (IsA campaign operation) (STV 1.0 0.9091)) +(: cnet_isa_ef124b2bb9 (IsA campaign_hat hat) (STV 1.0 0.9091)) +(: cnet_isa_af10c9034c (IsA campaigner politician) (STV 1.0 0.9091)) +(: cnet_isa_66600422ae (IsA campaigning campaign) (STV 1.0 0.9091)) +(: cnet_isa_1352513448 (IsA campanile bell_tower) (STV 1.0 0.9091)) +(: cnet_isa_7dd5bb872e (IsA campanula herb) (STV 1.0 0.9091)) +(: cnet_isa_fd22f00d70 (IsA campanulaceae plant_family) (STV 1.0 0.9091)) +(: cnet_isa_1bd2d77ff1 (IsA campanulale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_497a0702f4 (IsA campephilus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_1fd9aa049e (IsA camper recreational_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_5c0df48200 (IsA camper vacationer) (STV 1.0 0.9091)) +(: cnet_isa_45d92d6bc8 (IsA camper_trailer trailer) (STV 1.0 0.9091)) +(: cnet_isa_ca0d197ac9 (IsA campfire fire) (STV 1.0 0.9091)) +(: cnet_isa_8ec42c6d52 (IsA campfire_girl female_child) (STV 1.0 0.9091)) +(: cnet_isa_2fb36066cd (IsA camphor natural_resin) (STV 1.0 0.9091)) +(: cnet_isa_6afc205dc9 (IsA camphor_daisy goldenbush) (STV 1.0 0.9091)) +(: cnet_isa_c587af22c4 (IsA camphor_dune_tansy herb) (STV 1.0 0.9091)) +(: cnet_isa_082fa44504 (IsA camphor_ice cerate) (STV 1.0 0.9091)) +(: cnet_isa_4292fa66cd (IsA camphor_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_2e1e937fad (IsA camphor_tree laurel) (STV 1.0 0.9091)) +(: cnet_isa_427075b8e1 (IsA camping inhabitancy) (STV 1.0 0.9091)) +(: cnet_isa_a5732b1c62 (IsA campmate acquaintance) (STV 1.0 0.9091)) +(: cnet_isa_a93bd1dacd (IsA camponotus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_998e415e7d (IsA campsite site) (STV 1.0 0.9091)) +(: cnet_isa_12a0518f9d (IsA campstool stool) (STV 1.0 0.9091)) +(: cnet_isa_045ace68e9 (IsA camptosorus fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_98d9c33093 (IsA campus field) (STV 1.0 0.9091)) +(: cnet_isa_cefa7ce85c (IsA campyloneurum fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_c5d5b5adc0 (IsA campylorhynchus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_68b2da94d6 (IsA campylotropous_ovule ovule) (STV 1.0 0.9091)) +(: cnet_isa_4009efc555 (IsA camshaft rotating_shaft) (STV 1.0 0.9091)) +(: cnet_isa_8a1cac5475 (IsA camwood tree) (STV 1.0 0.9091)) +(: cnet_isa_0fe38f3bf5 (IsA can container) (STV 1.0 0.9091)) +(: cnet_isa_ab591050ba (IsA can buoy) (STV 1.0 0.9091)) +(: cnet_isa_7f17a7b2af (IsA can containerful) (STV 1.0 0.9091)) +(: cnet_isa_e2d3c817d1 (IsA can_of_worm trouble) (STV 1.0 0.9091)) +(: cnet_isa_8bbc4bcabc (IsA can_opener opener) (STV 1.0 0.9091)) +(: cnet_isa_a4e4463673 (IsA canaanite canaanitic) (STV 1.0 0.9091)) +(: cnet_isa_a78fe160fb (IsA canaanite semite) (STV 1.0 0.9091)) +(: cnet_isa_c3f856c7d3 (IsA canaanitic semitic) (STV 1.0 0.9091)) +(: cnet_isa_019a42034c (IsA canachite bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_9e9c3534e9 (IsA canada country) (STV 1.0 0.9740)) +(: cnet_isa_d0e545ad3d (IsA canada country_in_north_america) (STV 1.0 0.9454)) +(: cnet_isa_6558ec21e5 (IsA canada in_north_america) (STV 1.0 0.9677)) +(: cnet_isa_8c2fae65ca (IsA canada independent_country) (STV 1.0 0.9339)) +(: cnet_isa_a02a15c865 (IsA canada large_country_with_cold_winter) (STV 1.0 0.9091)) +(: cnet_isa_4153720285 (IsA canada_anemone anemone) (STV 1.0 0.9091)) +(: cnet_isa_2e302b7900 (IsA canada_balsam oleoresin) (STV 1.0 0.9091)) +(: cnet_isa_aa6aa5af60 (IsA canada_garlic alliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_c43d0a4e72 (IsA canada_ginger wild_ginger) (STV 1.0 0.9091)) +(: cnet_isa_a7006320c6 (IsA canada_jay jay) (STV 1.0 0.9091)) +(: cnet_isa_9ff4fde8ec (IsA canada_lily lily) (STV 1.0 0.9091)) +(: cnet_isa_a54344ecda (IsA canada_lynx lynx) (STV 1.0 0.9091)) +(: cnet_isa_3483503334 (IsA canada_plum plum) (STV 1.0 0.9091)) +(: cnet_isa_5f8455e5bf (IsA canada_porcupine new_world_porcupine) (STV 1.0 0.9091)) +(: cnet_isa_ad3e600a79 (IsA canada_thistle plume_thistle) (STV 1.0 0.9091)) +(: cnet_isa_0f36a614c1 (IsA canada_violet violet) (STV 1.0 0.9091)) +(: cnet_isa_bf64f4b45d (IsA canada_wild_rye wild_rye) (STV 1.0 0.9091)) +(: cnet_isa_add49022eb (IsA canadian north_american) (STV 1.0 0.9091)) +(: cnet_isa_83c2525460 (IsA canadian_aspen aspen) (STV 1.0 0.9091)) +(: cnet_isa_e99844de15 (IsA canadian_bacon bacon) (STV 1.0 0.9091)) +(: cnet_isa_3480403176 (IsA canadian_dollar dollar) (STV 1.0 0.9091)) +(: cnet_isa_d3ee56beb1 (IsA canadian_french french) (STV 1.0 0.9091)) +(: cnet_isa_908281802a (IsA canadian_hemlock plant) (STV 1.0 0.9091)) +(: cnet_isa_c89cc4c669 (IsA canadian_pondweed waterweed) (STV 1.0 0.9091)) +(: cnet_isa_f96bd97f46 (IsA canadian_province state) (STV 1.0 0.9091)) +(: cnet_isa_018e6524c9 (IsA canadian_security_intelligence_service international_intelligence_agency) (STV 1.0 0.9091)) +(: cnet_isa_d74b166bc3 (IsA canal watercourse) (STV 1.0 0.9091)) +(: cnet_isa_479a66f4c8 (IsA canal channel) (STV 1.0 0.9091)) +(: cnet_isa_79338a9170 (IsA canal_boat boat) (STV 1.0 0.9091)) +(: cnet_isa_dea4cd031c (IsA canal_of_schlemm duct) (STV 1.0 0.9091)) +(: cnet_isa_0bfe0ec908 (IsA canaliculus duct) (STV 1.0 0.9091)) +(: cnet_isa_d7f8f2c949 (IsA canalization production) (STV 1.0 0.9091)) +(: cnet_isa_8136a0594a (IsA cananga magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8f0c5a7b36 (IsA canape appetizer) (STV 1.0 0.9091)) +(: cnet_isa_bc2b2fe63a (IsA canard fabrication) (STV 1.0 0.9091)) +(: cnet_isa_1c55d73353 (IsA canarese dravidian) (STV 1.0 0.9091)) +(: cnet_isa_146528ab33 (IsA canary finch) (STV 1.0 0.9091)) +(: cnet_isa_06a834ca24 (IsA canary singer) (STV 1.0 0.9091)) +(: cnet_isa_7187b0d724 (IsA canary_grass grass) (STV 1.0 0.9091)) +(: cnet_isa_d641a97ad5 (IsA canary_island_hare_s_foot_fern hare_s_foot_fern) (STV 1.0 0.9091)) +(: cnet_isa_837f9976a6 (IsA canary_seed bird_food) (STV 1.0 0.9091)) +(: cnet_isa_fc5c804dd2 (IsA canary_wine white_wine) (STV 1.0 0.9091)) +(: cnet_isa_d8553a4d43 (IsA canary_yellow yellow) (STV 1.0 0.9091)) +(: cnet_isa_29653ef56e (IsA canarybird_flower nasturtium) (STV 1.0 0.9091)) +(: cnet_isa_ed3ac8359e (IsA canasta rummy) (STV 1.0 0.9091)) +(: cnet_isa_7071c8729b (IsA canavalia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d36f44dca4 (IsA canavanine amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_8e1a96173c (IsA cancan stage_dancing) (STV 1.0 0.9091)) +(: cnet_isa_c6f5a58df1 (IsA cancellation nullification) (STV 1.0 0.9091)) +(: cnet_isa_8ed37ddb62 (IsA cancellation negation) (STV 1.0 0.9091)) +(: cnet_isa_06a0a97d2f (IsA cancer disease) (STV 1.0 0.9608)) +(: cnet_isa_980522399c (IsA cancer arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_8a76efeea7 (IsA cancer malignant_tumor) (STV 1.0 0.9091)) +(: cnet_isa_0420933a80 (IsA cancer_cell neoplastic_cell) (STV 1.0 0.9091)) +(: cnet_isa_4be7fda010 (IsA cancer_juice juice) (STV 1.0 0.9091)) +(: cnet_isa_fc6905b586 (IsA cancerweed sage) (STV 1.0 0.9091)) +(: cnet_isa_5aa15d13a9 (IsA cancridae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_e00c160b76 (IsA cancroid skin_cancer) (STV 1.0 0.9091)) +(: cnet_isa_b47f33fdf9 (IsA candelabrum candlestick) (STV 1.0 0.9091)) +(: cnet_isa_da2665788c (IsA candelilla slipper_spurge) (STV 1.0 0.9091)) +(: cnet_isa_a4d066166e (IsA candelilla spurge) (STV 1.0 0.9091)) +(: cnet_isa_20d7bb5fb5 (IsA candelilla_wax wax) (STV 1.0 0.9091)) +(: cnet_isa_b97ff39d08 (IsA candid_camera camera) (STV 1.0 0.9091)) +(: cnet_isa_1f1d8b0290 (IsA candida fungus) (STV 1.0 0.9091)) +(: cnet_isa_f7d42c282e (IsA candida_albican candida) (STV 1.0 0.9091)) +(: cnet_isa_090a7a5bf7 (IsA candidate person) (STV 1.0 0.9091)) +(: cnet_isa_93f0033d82 (IsA candidiasis fungal_infection) (STV 1.0 0.9091)) +(: cnet_isa_96b3b7d37a (IsA candied_apple sweet) (STV 1.0 0.9091)) +(: cnet_isa_bada8d6570 (IsA candied_citrus_peel candied_fruit) (STV 1.0 0.9091)) +(: cnet_isa_62f36c7fed (IsA candied_fruit confiture) (STV 1.0 0.9091)) +(: cnet_isa_888291eaab (IsA candle lamp) (STV 1.0 0.9091)) +(: cnet_isa_d7aafb550d (IsA candle luminous_intensity_unit) (STV 1.0 0.9091)) +(: cnet_isa_138f5dae15 (IsA candlelight light) (STV 1.0 0.9091)) +(: cnet_isa_ad8f09c308 (IsA candlemaker chandler) (STV 1.0 0.9091)) +(: cnet_isa_2a1f23dbf9 (IsA candlema quarter_day) (STV 1.0 0.9091)) +(: cnet_isa_121ca8c030 (IsA candlenut angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_64cb63e1cd (IsA candlenut oilseed) (STV 1.0 0.9091)) +(: cnet_isa_e2bacdf630 (IsA candlepin bowling_pin) (STV 1.0 0.9091)) +(: cnet_isa_8439cbc7b8 (IsA candlepin bowling) (STV 1.0 0.9091)) +(: cnet_isa_84a04af316 (IsA candlepower intensity) (STV 1.0 0.9091)) +(: cnet_isa_3bd23e4ea7 (IsA candlesnuffer implement) (STV 1.0 0.9091)) +(: cnet_isa_a14d040b8a (IsA candlestick holder) (STV 1.0 0.9091)) +(: cnet_isa_182a12a69e (IsA candlewick embroidery) (STV 1.0 0.9091)) +(: cnet_isa_25309e5ae6 (IsA candlewick wick) (STV 1.0 0.9091)) +(: cnet_isa_3d7f1d7fce (IsA candlewood shrub) (STV 1.0 0.9091)) +(: cnet_isa_586dcc565e (IsA candor honesty) (STV 1.0 0.9091)) +(: cnet_isa_8614ae0bdb (IsA candy sweet) (STV 1.0 0.9091)) +(: cnet_isa_93099c0794 (IsA candy_bar candy) (STV 1.0 0.9091)) +(: cnet_isa_81e0a71deb (IsA candy_cane candy) (STV 1.0 0.9091)) +(: cnet_isa_bf0868b3b2 (IsA candy_corn candy) (STV 1.0 0.9091)) +(: cnet_isa_e2a5785920 (IsA candy_egg easter_egg) (STV 1.0 0.9091)) +(: cnet_isa_a4230b6b47 (IsA candy_striper volunteer) (STV 1.0 0.9091)) +(: cnet_isa_23feb3e1da (IsA candy_thermometer thermometer) (STV 1.0 0.9091)) +(: cnet_isa_2327725d14 (IsA candytuft flower) (STV 1.0 0.9091)) +(: cnet_isa_58144df86c (IsA cane switch) (STV 1.0 0.9091)) +(: cnet_isa_778ff09458 (IsA cane walking_stick) (STV 1.0 0.9091)) +(: cnet_isa_b6a8c59e07 (IsA cane stalk) (STV 1.0 0.9091)) +(: cnet_isa_c372941060 (IsA cane_blight blight) (STV 1.0 0.9091)) +(: cnet_isa_092cd6673a (IsA cane_sugar sugar) (STV 1.0 0.9091)) +(: cnet_isa_97a463e0d9 (IsA cane_sugar carbohydrate) (STV 1.0 0.9091)) +(: cnet_isa_b226e2b748 (IsA canebrake brush) (STV 1.0 0.9091)) +(: cnet_isa_4ee4060939 (IsA canebrake_rattlesnake timber_rattlesnake) (STV 1.0 0.9091)) +(: cnet_isa_1f0130ed21 (IsA canella bark) (STV 1.0 0.9091)) +(: cnet_isa_15ba3bb409 (IsA canellaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_18d111835e (IsA canfield solitaire) (STV 1.0 0.9091)) +(: cnet_isa_c5bc6f172c (IsA cangue instrument_of_punishment) (STV 1.0 0.9091)) +(: cnet_isa_655769a091 (IsA canicola_fever swamp_fever) (STV 1.0 0.9091)) +(: cnet_isa_279e53bdec (IsA canidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_594e0ab218 (IsA canine carnivore) (STV 1.0 0.9091)) +(: cnet_isa_974a5180db (IsA canine tooth) (STV 1.0 0.9091)) +(: cnet_isa_d1cd35c962 (IsA canine_chorea animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_2799446e1d (IsA canine_distemper distemper) (STV 1.0 0.9091)) +(: cnet_isa_ad9900efa3 (IsA canis mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_3ed9d717cc (IsA canistel edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_65a85008ad (IsA canistel fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_c579ac963c (IsA canister container) (STV 1.0 0.9091)) +(: cnet_isa_20fb3a5f0a (IsA canker plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_3e2f0fee3b (IsA canker ulcer) (STV 1.0 0.9091)) +(: cnet_isa_1b5ce5c0f6 (IsA cankerworm caterpillar) (STV 1.0 0.9091)) +(: cnet_isa_57e6df9ddb (IsA canna herb) (STV 1.0 0.9091)) +(: cnet_isa_52ad13828e (IsA canna_lily canna) (STV 1.0 0.9091)) +(: cnet_isa_e6378b97f5 (IsA cannabidaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_45dc33c497 (IsA cannabin natural_resin) (STV 1.0 0.9091)) +(: cnet_isa_7e18190273 (IsA cannabis plant) (STV 1.0 0.9091)) +(: cnet_isa_f76b781ae9 (IsA cannabis controlled_substance) (STV 1.0 0.9091)) +(: cnet_isa_7863ea8026 (IsA cannabis soft_drug) (STV 1.0 0.9091)) +(: cnet_isa_2ded326afa (IsA cannabis shrub) (STV 1.0 0.9091)) +(: cnet_isa_3a0185d013 (IsA cannaceae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_05220124be (IsA canned_food foodstuff) (STV 1.0 0.9091)) +(: cnet_isa_49c4377249 (IsA canned_hunt hunt) (STV 1.0 0.9091)) +(: cnet_isa_08c2b1b3f5 (IsA canned_meat canned_food) (STV 1.0 0.9091)) +(: cnet_isa_b4cdba3a80 (IsA cannel_coal bituminous_coal) (STV 1.0 0.9091)) +(: cnet_isa_ed563f6e91 (IsA cannelloni pasta) (STV 1.0 0.9091)) +(: cnet_isa_355a5e3b7a (IsA cannery factory) (STV 1.0 0.9091)) +(: cnet_isa_625c46af5e (IsA cannibal savage) (STV 1.0 0.9091)) +(: cnet_isa_5fa3e28909 (IsA cannibalism practice) (STV 1.0 0.9091)) +(: cnet_isa_d334330e0a (IsA cannikin bucket) (STV 1.0 0.9091)) +(: cnet_isa_1c1431d68b (IsA cannikin can) (STV 1.0 0.9091)) +(: cnet_isa_48faacada1 (IsA cannon weapon) (STV 1.0 0.9572)) +(: cnet_isa_c896d3dcec (IsA cannon body_part) (STV 1.0 0.9091)) +(: cnet_isa_cd72b245c2 (IsA cannon artillery) (STV 1.0 0.9091)) +(: cnet_isa_65aa5b06bf (IsA cannon gun) (STV 1.0 0.9091)) +(: cnet_isa_84386979cc (IsA cannon armor_plate) (STV 1.0 0.9091)) +(: cnet_isa_5dc1aa7fc4 (IsA cannon_bone bone) (STV 1.0 0.9091)) +(: cnet_isa_5095d637bc (IsA cannon_cracker firecracker) (STV 1.0 0.9091)) +(: cnet_isa_9dde95f5e1 (IsA cannon_fodder soldier) (STV 1.0 0.9091)) +(: cnet_isa_b0a5001503 (IsA cannonade artillery_fire) (STV 1.0 0.9091)) +(: cnet_isa_39524f0702 (IsA cannonball projectile) (STV 1.0 0.9091)) +(: cnet_isa_f7f9720afc (IsA cannula tube) (STV 1.0 0.9091)) +(: cnet_isa_a88c884dbe (IsA cannulation insertion) (STV 1.0 0.9091)) +(: cnet_isa_9022b67121 (IsA canoe vehicle) (STV 1.0 0.9091)) +(: cnet_isa_6d7acf1aa9 (IsA canoe small_boat) (STV 1.0 0.9091)) +(: cnet_isa_bc85e6c344 (IsA canoeing great_exercise_for_arm) (STV 1.0 0.9091)) +(: cnet_isa_e49b300c4b (IsA canoeist boatman) (STV 1.0 0.9091)) +(: cnet_isa_3430e9b72f (IsA canola_oil vegetable_oil) (STV 1.0 0.9091)) +(: cnet_isa_1bcac22f26 (IsA canon list) (STV 1.0 0.9091)) +(: cnet_isa_0de1c48302 (IsA canon musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_ffc4d0b766 (IsA canon rule) (STV 1.0 0.9091)) +(: cnet_isa_283814267d (IsA canon scripture) (STV 1.0 0.9091)) +(: cnet_isa_1f9a074bc1 (IsA canon priest) (STV 1.0 0.9091)) +(: cnet_isa_d86fc6d929 (IsA canon_law law) (STV 1.0 0.9091)) +(: cnet_isa_5e38ae41dd (IsA canonical_hour hour) (STV 1.0 0.9091)) +(: cnet_isa_e36b4332b4 (IsA canonist specialist) (STV 1.0 0.9091)) +(: cnet_isa_b6260d7825 (IsA canonization sanctification) (STV 1.0 0.9091)) +(: cnet_isa_2d27a53b95 (IsA canopic_jar jar) (STV 1.0 0.9091)) +(: cnet_isa_de855eb7b6 (IsA canopy covering) (STV 1.0 0.9091)) +(: cnet_isa_68873041c4 (IsA canopy fabric) (STV 1.0 0.9091)) +(: cnet_isa_630f568611 (IsA canopy shelter) (STV 1.0 0.9091)) +(: cnet_isa_fb4e191f42 (IsA cant non_standard_speech) (STV 1.0 0.9091)) +(: cnet_isa_10b3595757 (IsA cant talk) (STV 1.0 0.9091)) +(: cnet_isa_ee54138beb (IsA cant_hook peavey) (STV 1.0 0.9091)) +(: cnet_isa_f259a99dfb (IsA cantabrigian english_person) (STV 1.0 0.9091)) +(: cnet_isa_dc5d3670be (IsA cantala fiber) (STV 1.0 0.9091)) +(: cnet_isa_9493a7a150 (IsA cantaloup muskmelon) (STV 1.0 0.9091)) +(: cnet_isa_256bea7294 (IsA cantaloupe sweet_melon) (STV 1.0 0.9091)) +(: cnet_isa_a10d16199d (IsA cantata classical_music) (STV 1.0 0.9091)) +(: cnet_isa_ed59222f64 (IsA canteen flask) (STV 1.0 0.9091)) +(: cnet_isa_9aefe835fa (IsA canteen recreation_room) (STV 1.0 0.9091)) +(: cnet_isa_b55e6fef9f (IsA canteen restaurant) (STV 1.0 0.9091)) +(: cnet_isa_15b39c403c (IsA canteen shop) (STV 1.0 0.9091)) +(: cnet_isa_c70f873e8e (IsA canter gait) (STV 1.0 0.9091)) +(: cnet_isa_5a2e97035f (IsA canterbury_bell campanula) (STV 1.0 0.9091)) +(: cnet_isa_d86dbb1fe5 (IsA canterbury_bell gloxinia) (STV 1.0 0.9091)) +(: cnet_isa_10d8a320a4 (IsA cantharellus fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_6e49040709 (IsA canthus corner) (STV 1.0 0.9091)) +(: cnet_isa_f584e79697 (IsA canticle hymn) (STV 1.0 0.9091)) +(: cnet_isa_b2bcd1f18a (IsA cantilever beam) (STV 1.0 0.9091)) +(: cnet_isa_7c0410e7ff (IsA cantilever_bridge bridge) (STV 1.0 0.9091)) +(: cnet_isa_8607dd1f14 (IsA cantillation intonation) (STV 1.0 0.9091)) +(: cnet_isa_85e51ed42f (IsA cantle back) (STV 1.0 0.9091)) +(: cnet_isa_7b800aaff0 (IsA canto section) (STV 1.0 0.9091)) +(: cnet_isa_0d9c6e0f4b (IsA canto voice_part) (STV 1.0 0.9091)) +(: cnet_isa_c19b37f677 (IsA canton_crepe crepe) (STV 1.0 0.9091)) +(: cnet_isa_e14f94e09c (IsA cantor spiritual_leader) (STV 1.0 0.9091)) +(: cnet_isa_c03db5ef21 (IsA cantus_firmus chant) (STV 1.0 0.9091)) +(: cnet_isa_3b24037d73 (IsA canuck french_canadian) (STV 1.0 0.9091)) +(: cnet_isa_938f07670e (IsA canva fabric) (STV 1.0 0.9091)) +(: cnet_isa_90ef2bcb8b (IsA canva mat) (STV 1.0 0.9091)) +(: cnet_isa_aef76d1e97 (IsA canva oil_painting) (STV 1.0 0.9091)) +(: cnet_isa_28fa9cb78c (IsA canva setting) (STV 1.0 0.9091)) +(: cnet_isa_5b49076f18 (IsA canva_tent tent) (STV 1.0 0.9091)) +(: cnet_isa_f8e47ee82c (IsA canvasback duck) (STV 1.0 0.9091)) +(: cnet_isa_6105fa8a20 (IsA canvasser teller) (STV 1.0 0.9091)) +(: cnet_isa_f217f3cbf7 (IsA canyon ravine) (STV 1.0 0.9091)) +(: cnet_isa_6eb7e01c99 (IsA canyon_oak live_oak) (STV 1.0 0.9091)) +(: cnet_isa_e32329eaf9 (IsA canyon_treefrog tree_toad) (STV 1.0 0.9091)) +(: cnet_isa_433c86c89a (IsA canyonside slope) (STV 1.0 0.9091)) +(: cnet_isa_f89beec5e5 (IsA cap headdress) (STV 1.0 0.9091)) +(: cnet_isa_3c3c513b03 (IsA cap protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_4c34683812 (IsA cap top) (STV 1.0 0.9091)) +(: cnet_isa_e2955bd1da (IsA cap plant_part) (STV 1.0 0.9091)) +(: cnet_isa_d32c3d65f7 (IsA cap_opener bottle_opener) (STV 1.0 0.9091)) +(: cnet_isa_afb2f5c626 (IsA cap_screw screw) (STV 1.0 0.9091)) +(: cnet_isa_061b0731f0 (IsA capability ability) (STV 1.0 0.9091)) +(: cnet_isa_f30042242c (IsA capability aptitude) (STV 1.0 0.9091)) +(: cnet_isa_fed50f9048 (IsA capability susceptibility) (STV 1.0 0.9091)) +(: cnet_isa_74514abd07 (IsA capaciousness largeness) (STV 1.0 0.9091)) +(: cnet_isa_b81aecfe2c (IsA capacitance electrical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_1a08c0a21e (IsA capacitance_unit electromagnetic_unit) (STV 1.0 0.9091)) +(: cnet_isa_ec04e8755f (IsA capacitor electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_accc539dc1 (IsA capacity function) (STV 1.0 0.9091)) +(: cnet_isa_30db4a316e (IsA capacity production) (STV 1.0 0.9091)) +(: cnet_isa_e2f66db24e (IsA capacity capability) (STV 1.0 0.9091)) +(: cnet_isa_ee6f192194 (IsA capacity tolerance) (STV 1.0 0.9091)) +(: cnet_isa_eb494642fb (IsA capacity ability) (STV 1.0 0.9091)) +(: cnet_isa_b403b875a0 (IsA capacity indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_70b26ea946 (IsA capacity volume) (STV 1.0 0.9091)) +(: cnet_isa_4f06501a25 (IsA caparison stable_gear) (STV 1.0 0.9091)) +(: cnet_isa_e0027dc79f (IsA cape cloak) (STV 1.0 0.9091)) +(: cnet_isa_414ccf700e (IsA cape land) (STV 1.0 0.9091)) +(: cnet_isa_fff0bfc0c7 (IsA cape_aloe aloe) (STV 1.0 0.9091)) +(: cnet_isa_62bbcd385a (IsA cape_buffalo old_world_buffalo) (STV 1.0 0.9091)) +(: cnet_isa_bc770fe4a6 (IsA cape_forget_me_not anchusa) (STV 1.0 0.9091)) +(: cnet_isa_9adf435e25 (IsA cape_gooseberry ground_cherry) (STV 1.0 0.9091)) +(: cnet_isa_f07e831498 (IsA cape_jasmine gardenia) (STV 1.0 0.9091)) +(: cnet_isa_0c288902c6 (IsA cape_lobster true_lobster) (STV 1.0 0.9091)) +(: cnet_isa_acd2ab0208 (IsA cape_marigold flower) (STV 1.0 0.9091)) +(: cnet_isa_36c6fcea06 (IsA cape_may_warbler new_world_warbler) (STV 1.0 0.9091)) +(: cnet_isa_cec567988c (IsA cape_primrose streptocarpus) (STV 1.0 0.9091)) +(: cnet_isa_98bf4daace (IsA cape_tulip blood_lily) (STV 1.0 0.9091)) +(: cnet_isa_ba28054696 (IsA cape_verde_escudo cape_verde_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_c9cb46bca3 (IsA cape_verde_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_5f0473fbb1 (IsA cape_yellowwood conifer) (STV 1.0 0.9091)) +(: cnet_isa_05b3f13c19 (IsA capelin smelt) (STV 1.0 0.9091)) +(: cnet_isa_6e741c877a (IsA capeline_bandage bandage) (STV 1.0 0.9091)) +(: cnet_isa_328063dcf6 (IsA caper leap) (STV 1.0 0.9091)) +(: cnet_isa_39e4e7d5ec (IsA caper robbery) (STV 1.0 0.9091)) +(: cnet_isa_a03597c6be (IsA caper pickle) (STV 1.0 0.9091)) +(: cnet_isa_a062e0d6b6 (IsA caper shrub) (STV 1.0 0.9091)) +(: cnet_isa_9a9573edd7 (IsA caper_sauce sauce) (STV 1.0 0.9091)) +(: cnet_isa_1f775bef45 (IsA caper_spurge spurge) (STV 1.0 0.9091)) +(: cnet_isa_629f4f6b2c (IsA caper_tree caper) (STV 1.0 0.9091)) +(: cnet_isa_0cc0b203ae (IsA capercaillie grouse) (STV 1.0 0.9091)) +(: cnet_isa_3e5ac98d8e (IsA capetian sovereign) (STV 1.0 0.9091)) +(: cnet_isa_1b6a8f3b20 (IsA capetian_dynasty dynasty) (STV 1.0 0.9091)) +(: cnet_isa_26d8d72e44 (IsA capful containerful) (STV 1.0 0.9091)) +(: cnet_isa_af29052137 (IsA capillarity surface_tension) (STV 1.0 0.9091)) +(: cnet_isa_546709c835 (IsA capillary tube) (STV 1.0 0.9091)) +(: cnet_isa_17f3a68786 (IsA capillary blood_vessel) (STV 1.0 0.9091)) +(: cnet_isa_b139eb8d56 (IsA capillary_bed animal_tissue) (STV 1.0 0.9091)) +(: cnet_isa_1e33f9271a (IsA capital top) (STV 1.0 0.9091)) +(: cnet_isa_7ad0b0b50c (IsA capital character) (STV 1.0 0.9091)) +(: cnet_isa_8484ee08ed (IsA capital center) (STV 1.0 0.9091)) +(: cnet_isa_b671aa0f47 (IsA capital seat) (STV 1.0 0.9091)) +(: cnet_isa_15f7d9218e (IsA capital asset) (STV 1.0 0.9091)) +(: cnet_isa_729189dfb4 (IsA capital_account account) (STV 1.0 0.9091)) +(: cnet_isa_b6881fcfe7 (IsA capital_city_of_nevada carson_city) (STV 1.0 0.9091)) +(: cnet_isa_c9f9708df2 (IsA capital_expenditure cost) (STV 1.0 0.9091)) +(: cnet_isa_f34c02038a (IsA capital_gain financial_gain) (STV 1.0 0.9091)) +(: cnet_isa_c2a689d7ff (IsA capital_gain_tax tax) (STV 1.0 0.9091)) +(: cnet_isa_9029c38ae1 (IsA capital_levy tax) (STV 1.0 0.9091)) +(: cnet_isa_7cff7e3847 (IsA capital_loss financial_loss) (STV 1.0 0.9091)) +(: cnet_isa_fb9864873c (IsA capital_of_djibouti djibouti) (STV 1.0 0.9091)) +(: cnet_isa_2b03126e90 (IsA capital_of_netherland amsterdam) (STV 1.0 0.9091)) +(: cnet_isa_055682d843 (IsA capital_offense crime) (STV 1.0 0.9091)) +(: cnet_isa_5c2448b516 (IsA capital_ship warship) (STV 1.0 0.9091)) +(: cnet_isa_91f228bace (IsA capital_stock book_value) (STV 1.0 0.9091)) +(: cnet_isa_16097c49bf (IsA capitalism market_economy) (STV 1.0 0.9091)) +(: cnet_isa_9bb70088f8 (IsA capitalist person) (STV 1.0 0.9091)) +(: cnet_isa_a84110d43e (IsA capitalist conservative) (STV 1.0 0.9091)) +(: cnet_isa_2b0e107b71 (IsA capitalization estimate) (STV 1.0 0.9091)) +(: cnet_isa_ac686304cb (IsA capitalization exploitation) (STV 1.0 0.9091)) +(: cnet_isa_a98db53f53 (IsA capitalization selling) (STV 1.0 0.9091)) +(: cnet_isa_4fd222a429 (IsA capitalization writing) (STV 1.0 0.9091)) +(: cnet_isa_b5e576e024 (IsA capitate carpal_bone) (STV 1.0 0.9091)) +(: cnet_isa_b4f97d56af (IsA capitation tax) (STV 1.0 0.9091)) +(: cnet_isa_f2ff03f24e (IsA capitol government_building) (STV 1.0 0.9091)) +(: cnet_isa_9224c7bd47 (IsA capitonidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_eacf0bbfb5 (IsA capitulation loss) (STV 1.0 0.9091)) +(: cnet_isa_4243b117a8 (IsA capitulation document) (STV 1.0 0.9091)) +(: cnet_isa_f36a62f67b (IsA capitulation summary) (STV 1.0 0.9091)) +(: cnet_isa_b89dcfa696 (IsA capitulum crown) (STV 1.0 0.9091)) +(: cnet_isa_fce39ec51d (IsA capitulum plant_organ) (STV 1.0 0.9091)) +(: cnet_isa_57f98855f6 (IsA capo head) (STV 1.0 0.9091)) +(: cnet_isa_8115b8d3f9 (IsA capon chicken) (STV 1.0 0.9091)) +(: cnet_isa_3e8714b0eb (IsA capote cloak) (STV 1.0 0.9091)) +(: cnet_isa_8d01c61782 (IsA capote greatcoat) (STV 1.0 0.9091)) +(: cnet_isa_bd793771bd (IsA capparidaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_8bcc5bc802 (IsA capparis dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_bb04c0b190 (IsA cappella music) (STV 1.0 0.9091)) +(: cnet_isa_9604fcd5c8 (IsA cappella_singing singing) (STV 1.0 0.9091)) +(: cnet_isa_2a02d94acf (IsA cappuccino drink) (STV 1.0 0.9636)) +(: cnet_isa_58094ded06 (IsA cappuccino_coffee coffee) (STV 1.0 0.9091)) +(: cnet_isa_a668e3ee05 (IsA cappucino coffee_drink_with_frothed_milk) (STV 1.0 0.9091)) +(: cnet_isa_696c147c27 (IsA cappucino italian_invention) (STV 1.0 0.9091)) +(: cnet_isa_d4d1faaec3 (IsA cappucino variety_of_coffee) (STV 1.0 0.9091)) +(: cnet_isa_7b25d2825f (IsA capra mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_42158b3193 (IsA caprella arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_14d9ac31c6 (IsA capreolus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_4634e73fb5 (IsA capric_acid saturated_fatty_acid) (STV 1.0 0.9091)) +(: cnet_isa_e9ba61c4fb (IsA capriccio musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_b53b27b4c6 (IsA caprice desire) (STV 1.0 0.9091)) +(: cnet_isa_e10295c209 (IsA capriciousness inconstancy) (STV 1.0 0.9091)) +(: cnet_isa_4384197f4f (IsA capricornis mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_db3c9d7d1f (IsA caprifig fig) (STV 1.0 0.9091)) +(: cnet_isa_4e25b2df70 (IsA caprifoliaceae asterid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_86f47edc09 (IsA caprimulgidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_91c00d63cc (IsA caprimulgiform_bird bird) (STV 1.0 0.9091)) +(: cnet_isa_17cb4a5142 (IsA caprimulgiforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_2c09066b14 (IsA caprimulgus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_be9ba30137 (IsA capriole jump) (STV 1.0 0.9091)) +(: cnet_isa_20a1533167 (IsA caproic_acid saturated_fatty_acid) (STV 1.0 0.9091)) +(: cnet_isa_7dc36132b6 (IsA caproidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_746851c76c (IsA capromyidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_6598413401 (IsA capro fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_58e8d0f3e5 (IsA caprylic_acid saturated_fatty_acid) (STV 1.0 0.9091)) +(: cnet_isa_189bd62286 (IsA capsaicin chemical_irritant) (STV 1.0 0.9091)) +(: cnet_isa_30eb3d06cf (IsA capsella dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f79726a8ed (IsA capsicum shrub) (STV 1.0 0.9091)) +(: cnet_isa_3be1f5f6b8 (IsA capsid protein) (STV 1.0 0.9091)) +(: cnet_isa_aeb8611203 (IsA capsizing shipwreck) (STV 1.0 0.9091)) +(: cnet_isa_17eb98e40f (IsA capstan winch) (STV 1.0 0.9091)) +(: cnet_isa_f1c8b3ab27 (IsA capstone stone) (STV 1.0 0.9091)) +(: cnet_isa_adc6d421dc (IsA capsule container) (STV 1.0 0.9091)) +(: cnet_isa_e91382d290 (IsA capsule pill) (STV 1.0 0.9091)) +(: cnet_isa_21cbc0881f (IsA capsule structure) (STV 1.0 0.9091)) +(: cnet_isa_d22519c368 (IsA capsule pericarp) (STV 1.0 0.9091)) +(: cnet_isa_e25fe2e41b (IsA captain_s_chair armchair) (STV 1.0 0.9091)) +(: cnet_isa_79c7b37ff9 (IsA captain commissioned_military_officer) (STV 1.0 0.9091)) +(: cnet_isa_dbde661723 (IsA captain commissioned_naval_officer) (STV 1.0 0.9091)) +(: cnet_isa_645522d326 (IsA captain dining_room_attendant) (STV 1.0 0.9091)) +(: cnet_isa_3c6cbf8089 (IsA captain leader) (STV 1.0 0.9091)) +(: cnet_isa_e1c74e94a4 (IsA captain pilot) (STV 1.0 0.9091)) +(: cnet_isa_5bcaac4c5a (IsA captain policeman) (STV 1.0 0.9091)) +(: cnet_isa_2868b29ef1 (IsA captainship position) (STV 1.0 0.9091)) +(: cnet_isa_7f1675130e (IsA caption exception) (STV 1.0 0.9091)) +(: cnet_isa_406fe60f32 (IsA caption title) (STV 1.0 0.9091)) +(: cnet_isa_210ce8fbc9 (IsA captivation liking) (STV 1.0 0.9091)) +(: cnet_isa_a598105629 (IsA captive animal) (STV 1.0 0.9091)) +(: cnet_isa_c5b96fd491 (IsA captive emotional_person) (STV 1.0 0.9091)) +(: cnet_isa_8399913151 (IsA captive_finance_company finance_company) (STV 1.0 0.9091)) +(: cnet_isa_9f4c748dd5 (IsA captivity confinement) (STV 1.0 0.9091)) +(: cnet_isa_c2e6f93505 (IsA captor person) (STV 1.0 0.9091)) +(: cnet_isa_7cde23ddce (IsA capture acquiring) (STV 1.0 0.9091)) +(: cnet_isa_798e46e13a (IsA capture chess_move) (STV 1.0 0.9091)) +(: cnet_isa_82789c782c (IsA capture felony) (STV 1.0 0.9091)) +(: cnet_isa_2566ccb73c (IsA capture natural_process) (STV 1.0 0.9091)) +(: cnet_isa_b84fc1dd5b (IsA capuchin new_world_monkey) (STV 1.0 0.9091)) +(: cnet_isa_d8a580ed54 (IsA capuchin cloak) (STV 1.0 0.9091)) +(: cnet_isa_f1ec7c4374 (IsA capulin cherry) (STV 1.0 0.9091)) +(: cnet_isa_4876da57e3 (IsA caput bulge) (STV 1.0 0.9091)) +(: cnet_isa_f685845e00 (IsA capybara rodent) (STV 1.0 0.9091)) +(: cnet_isa_b49e6b81e2 (IsA car another_name_for_automobile) (STV 1.0 0.9091)) +(: cnet_isa_ec5b779708 (IsA car another_word_for_automobile) (STV 1.0 0.9091)) +(: cnet_isa_c32f42d706 (IsA car machine) (STV 1.0 0.9091)) +(: cnet_isa_26f4e51b62 (IsA car motor_vehicle) (STV 1.0 0.9339)) +(: cnet_isa_807602305d (IsA car vehicle) (STV 1.0 0.9339)) +(: cnet_isa_d46f7bfa4a (IsA car compartment) (STV 1.0 0.9091)) +(: cnet_isa_6d79d12c80 (IsA car wheeled_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_8b240c15f0 (IsA car_battery lead_acid_battery) (STV 1.0 0.9091)) +(: cnet_isa_ac4df42580 (IsA car_bomb bomb) (STV 1.0 0.9091)) +(: cnet_isa_623d119549 (IsA car_boot_sale sale) (STV 1.0 0.9091)) +(: cnet_isa_0a4b50f99f (IsA car_care care) (STV 1.0 0.9091)) +(: cnet_isa_2d8ffd13ea (IsA car_carrier trailer) (STV 1.0 0.9091)) +(: cnet_isa_f6140d1c99 (IsA car_company company) (STV 1.0 0.9091)) +(: cnet_isa_da29173b47 (IsA car_crash sudden_deceleration) (STV 1.0 0.9091)) +(: cnet_isa_c22c9df545 (IsA car_dealer dealer) (STV 1.0 0.9091)) +(: cnet_isa_1d6b84a167 (IsA car_door door) (STV 1.0 0.9091)) +(: cnet_isa_25204ee3c9 (IsA car_ferry ferry) (STV 1.0 0.9091)) +(: cnet_isa_550dd9040f (IsA car_jacking crime) (STV 1.0 0.9091)) +(: cnet_isa_77ea226cac (IsA car_manufacturer manufacturer) (STV 1.0 0.9091)) +(: cnet_isa_b6b734e52d (IsA car_mirror mirror) (STV 1.0 0.9091)) +(: cnet_isa_3406f93114 (IsA car_park place_to_park_car) (STV 1.0 0.9339)) +(: cnet_isa_7c5ad85809 (IsA car_park place_where_park_car) (STV 1.0 0.9091)) +(: cnet_isa_66ef421728 (IsA car_pool set) (STV 1.0 0.9091)) +(: cnet_isa_3a2554dd70 (IsA car_rental lease) (STV 1.0 0.9091)) +(: cnet_isa_71890d5de8 (IsA car_seat seat) (STV 1.0 0.9091)) +(: cnet_isa_a78acd2a21 (IsA car_sickness motion_sickness) (STV 1.0 0.9091)) +(: cnet_isa_fac314b4c5 (IsA car_tire tire) (STV 1.0 0.9091)) +(: cnet_isa_217f076214 (IsA car_train train) (STV 1.0 0.9091)) +(: cnet_isa_d4daff18c7 (IsA car_wheel wheel) (STV 1.0 0.9091)) +(: cnet_isa_22ae40eefa (IsA car_window window) (STV 1.0 0.9091)) +(: cnet_isa_bf15f544ad (IsA carabao water_buffalo) (STV 1.0 0.9091)) +(: cnet_isa_84160e980b (IsA carabidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_6eec852137 (IsA carabineer rifleman) (STV 1.0 0.9091)) +(: cnet_isa_ecbddabbf8 (IsA carabiner fastener) (STV 1.0 0.9091)) +(: cnet_isa_c3a861e50d (IsA carabiner hoop) (STV 1.0 0.9091)) +(: cnet_isa_4104c81852 (IsA caracal lynx) (STV 1.0 0.9091)) +(: cnet_isa_324209d4de (IsA caracara falcon) (STV 1.0 0.9091)) +(: cnet_isa_6b13f0c05b (IsA caracolito tree) (STV 1.0 0.9091)) +(: cnet_isa_16b088232e (IsA carafe bottle) (STV 1.0 0.9091)) +(: cnet_isa_ac6524b678 (IsA carambola edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_a96e92fbf2 (IsA carambola fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_ec28117225 (IsA caramel candy) (STV 1.0 0.9091)) +(: cnet_isa_c7d14b18c5 (IsA caramel sugar) (STV 1.0 0.9091)) +(: cnet_isa_5fe4282412 (IsA carancha caracara) (STV 1.0 0.9091)) +(: cnet_isa_72ef748b92 (IsA caranday fan_palm) (STV 1.0 0.9091)) +(: cnet_isa_992c37675a (IsA carangid_fish percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_d81b8b41f4 (IsA carangidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_c3f59cf2e5 (IsA caranx fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_8bbe72b95c (IsA carapace scute) (STV 1.0 0.9091)) +(: cnet_isa_0abd150bc1 (IsA carapidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_d24723ddc7 (IsA carassius fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_ccb275b668 (IsA carat metric_weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_97858981b0 (IsA caravan procession) (STV 1.0 0.9091)) +(: cnet_isa_ad1079a172 (IsA caravanning vacationing) (STV 1.0 0.9091)) +(: cnet_isa_66f7c9dd24 (IsA caravansary hostel) (STV 1.0 0.9091)) +(: cnet_isa_3c63592c74 (IsA caraway herb) (STV 1.0 0.9091)) +(: cnet_isa_bd5bad62cf (IsA caraway_seed flavorer) (STV 1.0 0.9091)) +(: cnet_isa_bba32cb099 (IsA caraway_seed_bread bread) (STV 1.0 0.9091)) +(: cnet_isa_e1e21dc7fb (IsA carbamate salt) (STV 1.0 0.9091)) +(: cnet_isa_5cf3d82108 (IsA carbamic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_390bdcfb33 (IsA carbide inorganic_compound) (STV 1.0 0.9091)) +(: cnet_isa_61471a49ae (IsA carbine rifle) (STV 1.0 0.9091)) +(: cnet_isa_f65a4f6140 (IsA carbohydrate macromolecule) (STV 1.0 0.9091)) +(: cnet_isa_b570635ff9 (IsA carbohydrate_loading diet) (STV 1.0 0.9091)) +(: cnet_isa_b93b3daf7a (IsA carbolic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_488229489b (IsA carbolic_acid solvent) (STV 1.0 0.9091)) +(: cnet_isa_9be1da72ce (IsA carbomycin antibiotic) (STV 1.0 0.9091)) +(: cnet_isa_a6342156d3 (IsA carbon element) (STV 1.0 0.9572)) +(: cnet_isa_7198da19e5 (IsA carbon copy) (STV 1.0 0.9091)) +(: cnet_isa_920617fad0 (IsA carbon chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_4c61a47d57 (IsA carbon_arc_lamp arc_lamp) (STV 1.0 0.9091)) +(: cnet_isa_0a363cd7ca (IsA carbon_atom atom) (STV 1.0 0.9091)) +(: cnet_isa_7d182651dd (IsA carbon_black carbon) (STV 1.0 0.9091)) +(: cnet_isa_ad0c8e02c8 (IsA carbon_cycle organic_process) (STV 1.0 0.9091)) +(: cnet_isa_290b45b5b3 (IsA carbon_cycle thermonuclear_reaction) (STV 1.0 0.9091)) +(: cnet_isa_55a9279e64 (IsA carbon_dioxide greenhouse_gas) (STV 1.0 0.9339)) +(: cnet_isa_7c5cea6806 (IsA carbon_dioxide dioxide) (STV 1.0 0.9091)) +(: cnet_isa_49dbee06d0 (IsA carbon_disulfide compound) (STV 1.0 0.9091)) +(: cnet_isa_25771a8bb4 (IsA carbon_monoxide monoxide) (STV 1.0 0.9091)) +(: cnet_isa_7396c236d5 (IsA carbon_monoxide_poisoning poisoning) (STV 1.0 0.9091)) +(: cnet_isa_512c4248c2 (IsA carbon_nanotube fullerene) (STV 1.0 0.9091)) +(: cnet_isa_86fa38a13d (IsA carbon_paper paper) (STV 1.0 0.9091)) +(: cnet_isa_a7705aa43a (IsA carbon_process printing) (STV 1.0 0.9091)) +(: cnet_isa_8ed77db28c (IsA carbon_steel steel) (STV 1.0 0.9091)) +(: cnet_isa_239203c3f7 (IsA carbon_tetrachloride solvent) (STV 1.0 0.9091)) +(: cnet_isa_6386189361 (IsA carbon_tetrachloride tetrachloride) (STV 1.0 0.9091)) +(: cnet_isa_94b67ebdb0 (IsA carbon_tetrahalide chemical) (STV 1.0 0.9091)) +(: cnet_isa_a7dc553e7b (IsA carbonado meat) (STV 1.0 0.9091)) +(: cnet_isa_991a91f158 (IsA carbonado diamond) (STV 1.0 0.9091)) +(: cnet_isa_60cb8b2684 (IsA carbonara spaghetti_sauce) (STV 1.0 0.9091)) +(: cnet_isa_26d3577f68 (IsA carbonate salt) (STV 1.0 0.9091)) +(: cnet_isa_932afd05de (IsA carbonation permeation) (STV 1.0 0.9091)) +(: cnet_isa_740ebbc087 (IsA carbonic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_4abb87841a (IsA carbonization destructive_distillation) (STV 1.0 0.9091)) +(: cnet_isa_6aa63e90c7 (IsA carbonnade_flamande dish) (STV 1.0 0.9091)) +(: cnet_isa_af6333ae03 (IsA carbonyl compound) (STV 1.0 0.9091)) +(: cnet_isa_6d640b455b (IsA carbonyl_group group) (STV 1.0 0.9091)) +(: cnet_isa_144457d929 (IsA carboxyl group) (STV 1.0 0.9091)) +(: cnet_isa_becb7d48c1 (IsA carboxylic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_bf965daede (IsA carboxymethyl_cellulose cellulose) (STV 1.0 0.9091)) +(: cnet_isa_948c142038 (IsA carboy bottle) (STV 1.0 0.9091)) +(: cnet_isa_6124944621 (IsA carbuncle staphylococcal_infection) (STV 1.0 0.9091)) +(: cnet_isa_07ff279c6a (IsA carbuncle garnet) (STV 1.0 0.9091)) +(: cnet_isa_1c4ffd463c (IsA carburetor mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_040a385779 (IsA carcase body) (STV 1.0 0.9091)) +(: cnet_isa_e1c8aa52b8 (IsA carcharhinidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_76312b1986 (IsA carcharhinus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_48462af26a (IsA carcharia fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_44b257cad4 (IsA carchariidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_57ba3b85ac (IsA carcharodon fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_751f06eb58 (IsA carcinogen substance) (STV 1.0 0.9091)) +(: cnet_isa_f047823d7a (IsA carcinoid tumor) (STV 1.0 0.9091)) +(: cnet_isa_6113d3bee7 (IsA carcinoma cancer) (STV 1.0 0.9091)) +(: cnet_isa_027a9b282a (IsA carcinoma_in_situ carcinoma) (STV 1.0 0.9091)) +(: cnet_isa_87a38e3558 (IsA carcinosarcoma malignant_tumor) (STV 1.0 0.9091)) +(: cnet_isa_41832308a5 (IsA card paper) (STV 1.0 0.9091)) +(: cnet_isa_dfa82a70d2 (IsA card correspondence) (STV 1.0 0.9091)) +(: cnet_isa_bece4b1df8 (IsA card positive_identification) (STV 1.0 0.9091)) +(: cnet_isa_3b59bd0a30 (IsA card record) (STV 1.0 0.9091)) +(: cnet_isa_2a695b0963 (IsA card cardboard) (STV 1.0 0.9091)) +(: cnet_isa_b6865f4ee8 (IsA card_catalog library_catalog) (STV 1.0 0.9091)) +(: cnet_isa_34b0a540a4 (IsA card_catalogue file) (STV 1.0 0.9091)) +(: cnet_isa_b6186978c7 (IsA card_game game) (STV 1.0 0.9091)) +(: cnet_isa_7cd6ef7e3d (IsA card_player player) (STV 1.0 0.9091)) +(: cnet_isa_ed866837d0 (IsA card_table table) (STV 1.0 0.9091)) +(: cnet_isa_572909f01b (IsA card_trick magic_trick) (STV 1.0 0.9091)) +(: cnet_isa_ba0011f37a (IsA cardamine dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d946952554 (IsA cardamom flavorer) (STV 1.0 0.9091)) +(: cnet_isa_0a85335461 (IsA cardamom herb) (STV 1.0 0.9091)) +(: cnet_isa_0fa3cb5242 (IsA cardboard packing_material) (STV 1.0 0.9091)) +(: cnet_isa_d31532a97e (IsA cardboard paper) (STV 1.0 0.9091)) +(: cnet_isa_a3636ee004 (IsA cardcase case) (STV 1.0 0.9091)) +(: cnet_isa_64f6a90cc5 (IsA cardholder card_player) (STV 1.0 0.9091)) +(: cnet_isa_d22d3c8a05 (IsA cardholder holder) (STV 1.0 0.9091)) +(: cnet_isa_559aaf7dee (IsA cardia orifice) (STV 1.0 0.9091)) +(: cnet_isa_ba1390605a (IsA cardiac_arrhythmia heart_disease) (STV 1.0 0.9091)) +(: cnet_isa_7ab9191859 (IsA cardiac_cycle cycle) (STV 1.0 0.9091)) +(: cnet_isa_406c2c4de0 (IsA cardiac_glycoside steroid) (STV 1.0 0.9091)) +(: cnet_isa_7577f313b5 (IsA cardiac_massage emergency_procedure) (STV 1.0 0.9091)) +(: cnet_isa_0dc8928ce1 (IsA cardiac_massage massage) (STV 1.0 0.9091)) +(: cnet_isa_6ec0e319fd (IsA cardiac_monitor monitor) (STV 1.0 0.9091)) +(: cnet_isa_93065cf304 (IsA cardiac_muscle muscle) (STV 1.0 0.9091)) +(: cnet_isa_ef1bc707b0 (IsA cardiac_output flow) (STV 1.0 0.9091)) +(: cnet_isa_918a89ccbe (IsA cardiac_plexus nerve_plexus) (STV 1.0 0.9091)) +(: cnet_isa_60906b65f1 (IsA cardiac_rhythm rhythm) (STV 1.0 0.9091)) +(: cnet_isa_9ff72fdb47 (IsA cardiac_sphincter physiological_sphincter) (STV 1.0 0.9091)) +(: cnet_isa_d5f537d67c (IsA cardiac_tamponade tamponade) (STV 1.0 0.9091)) +(: cnet_isa_f9bcdb107d (IsA cardigan corgi) (STV 1.0 0.9091)) +(: cnet_isa_03b1003109 (IsA cardigan sweater) (STV 1.0 0.9091)) +(: cnet_isa_ad0f1b143f (IsA cardiidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_7b7f5b9e34 (IsA cardinal bird) (STV 1.0 0.9339)) +(: cnet_isa_4ff30f3eb3 (IsA cardinal number) (STV 1.0 0.9091)) +(: cnet_isa_34ae9dda19 (IsA cardinal finch) (STV 1.0 0.9091)) +(: cnet_isa_9311c5dd1c (IsA cardinal red) (STV 1.0 0.9091)) +(: cnet_isa_69067a8649 (IsA cardinal bishop) (STV 1.0 0.9091)) +(: cnet_isa_4926bb0ea7 (IsA cardinal_compass_point compass_point) (STV 1.0 0.9091)) +(: cnet_isa_4acd94a0b9 (IsA cardinal_flower lobelia) (STV 1.0 0.9091)) +(: cnet_isa_d3424e2762 (IsA cardinal_number number) (STV 1.0 0.9091)) +(: cnet_isa_1ae214de6d (IsA cardinal_tetra characin) (STV 1.0 0.9091)) +(: cnet_isa_ff40e74fcf (IsA cardinal_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_b487e948bb (IsA cardinal_virtue virtue) (STV 1.0 0.9091)) +(: cnet_isa_8b169ccb9f (IsA cardinalfish percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_c494464b8c (IsA cardinality number) (STV 1.0 0.9091)) +(: cnet_isa_4b6697654a (IsA cardinalship position) (STV 1.0 0.9091)) +(: cnet_isa_4d3fe9999a (IsA cardiogenic_shock shock) (STV 1.0 0.9091)) +(: cnet_isa_00f6fecec0 (IsA cardiograph medical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_bf567bcb74 (IsA cardiography diagnostic_procedure) (STV 1.0 0.9091)) +(: cnet_isa_4071c779d7 (IsA cardioid epicycloid) (STV 1.0 0.9091)) +(: cnet_isa_9a3624214b (IsA cardioid_microphone directional_microphone) (STV 1.0 0.9091)) +(: cnet_isa_0fc8477d65 (IsA cardiologist specialist) (STV 1.0 0.9091)) +(: cnet_isa_9c1331b360 (IsA cardiology medicine) (STV 1.0 0.9091)) +(: cnet_isa_b3fc64b4d0 (IsA cardiomegaly symptom) (STV 1.0 0.9091)) +(: cnet_isa_d7355ee891 (IsA cardiomyopathy heart_disease) (STV 1.0 0.9091)) +(: cnet_isa_0bbb319ef9 (IsA cardiopulmonary_exercise exercise) (STV 1.0 0.9091)) +(: cnet_isa_a241d4a14b (IsA cardiopulmonary_resuscitation emergency_procedure) (STV 1.0 0.9091)) +(: cnet_isa_28ef373b96 (IsA cardiopulmonary_resuscitation resuscitation) (STV 1.0 0.9091)) +(: cnet_isa_06d3babb0c (IsA cardiospasm spasm) (STV 1.0 0.9091)) +(: cnet_isa_93a14cbb67 (IsA cardiospermum dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b8e54a27e0 (IsA cardiovascular_disease disorder) (STV 1.0 0.9091)) +(: cnet_isa_ce35d87093 (IsA carditis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_0f4c4cdcac (IsA cardium mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_27613848de (IsA cardoon vegetable) (STV 1.0 0.9091)) +(: cnet_isa_8f36a0a539 (IsA cardroom room) (STV 1.0 0.9091)) +(: cnet_isa_3a9bcec127 (IsA cardsharp card_player) (STV 1.0 0.9091)) +(: cnet_isa_f9bc7f59c6 (IsA cardsharp swindler) (STV 1.0 0.9091)) +(: cnet_isa_e5a49243b1 (IsA carduelinae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_1d622d333f (IsA carduelis bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_2ea43e8365 (IsA carduus asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_350096b380 (IsA care protection) (STV 1.0 0.9091)) +(: cnet_isa_42d23bb569 (IsA care repair) (STV 1.0 0.9091)) +(: cnet_isa_a35790ca65 (IsA care work) (STV 1.0 0.9091)) +(: cnet_isa_4e2029d6d3 (IsA care predicament) (STV 1.0 0.9091)) +(: cnet_isa_63ed57e284 (IsA career occupation) (STV 1.0 0.9091)) +(: cnet_isa_7fec7bd17c (IsA career progress) (STV 1.0 0.9091)) +(: cnet_isa_5cc003a05f (IsA career_counseling guidance) (STV 1.0 0.9091)) +(: cnet_isa_bc82c8ec26 (IsA career_girl careerist) (STV 1.0 0.9091)) +(: cnet_isa_95b8fe427b (IsA career_man careerist) (STV 1.0 0.9091)) +(: cnet_isa_6772620011 (IsA careerism practice) (STV 1.0 0.9091)) +(: cnet_isa_4a959d89ab (IsA careerist professional) (STV 1.0 0.9091)) +(: cnet_isa_34337587c0 (IsA carefreeness irresponsibility) (STV 1.0 0.9091)) +(: cnet_isa_2336900bb6 (IsA carefreeness cheerfulness) (STV 1.0 0.9091)) +(: cnet_isa_ad1fe824f5 (IsA carefulness attentiveness) (STV 1.0 0.9091)) +(: cnet_isa_c9470b5df9 (IsA caregiver adult) (STV 1.0 0.9091)) +(: cnet_isa_16ef47d3d5 (IsA carelessness inattentiveness) (STV 1.0 0.9091)) +(: cnet_isa_60674cb542 (IsA carelian russian) (STV 1.0 0.9091)) +(: cnet_isa_0868fcf11a (IsA caress stroke) (STV 1.0 0.9091)) +(: cnet_isa_8998b09816 (IsA caressing foreplay) (STV 1.0 0.9091)) +(: cnet_isa_0e4f005960 (IsA caret mark) (STV 1.0 0.9091)) +(: cnet_isa_d9157d4292 (IsA caretaker custodian) (STV 1.0 0.9091)) +(: cnet_isa_b137ca390a (IsA caretaker official) (STV 1.0 0.9091)) +(: cnet_isa_495f334639 (IsA caretta reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_f94fbd04be (IsA carex monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1d791c8e84 (IsA carful containerful) (STV 1.0 0.9091)) +(: cnet_isa_7ed7a5fae9 (IsA cargo merchandise) (STV 1.0 0.9091)) +(: cnet_isa_a7369d80fd (IsA cargo_area enclosure) (STV 1.0 0.9091)) +(: cnet_isa_93e932d481 (IsA cargo_container container) (STV 1.0 0.9091)) +(: cnet_isa_76162e6688 (IsA cargo_cult cult) (STV 1.0 0.9091)) +(: cnet_isa_816f9f82d0 (IsA cargo_door door) (STV 1.0 0.9091)) +(: cnet_isa_aef92c780c (IsA cargo_hatch hatch) (STV 1.0 0.9091)) +(: cnet_isa_eb504815bb (IsA cargo_helicopter helicopter) (STV 1.0 0.9091)) +(: cnet_isa_99c8a5ab42 (IsA cargo_liner liner) (STV 1.0 0.9091)) +(: cnet_isa_2335a88877 (IsA cargo_ship ship) (STV 1.0 0.9091)) +(: cnet_isa_88bd134944 (IsA carhop waiter) (STV 1.0 0.9091)) +(: cnet_isa_8fa475640e (IsA cariama bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_1b495e1fab (IsA cariamidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_7fbd6a4907 (IsA carib amerind) (STV 1.0 0.9091)) +(: cnet_isa_ae7b784eb1 (IsA carib_indian native_american) (STV 1.0 0.9091)) +(: cnet_isa_f348928701 (IsA carib_wood tree) (STV 1.0 0.9091)) +(: cnet_isa_f3177c6dc5 (IsA caribbean_island island) (STV 1.0 0.9091)) +(: cnet_isa_afaec896ee (IsA caribou mammal) (STV 1.0 0.9091)) +(: cnet_isa_1ba936cd49 (IsA caribou deer) (STV 1.0 0.9091)) +(: cnet_isa_0c40f51bce (IsA carica dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_085e3ec9ee (IsA caricaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_2e80f2a5f4 (IsA caricature wit) (STV 1.0 0.9091)) +(: cnet_isa_8fff611031 (IsA caricature_plant shrub) (STV 1.0 0.9091)) +(: cnet_isa_9d476c93a3 (IsA caricaturist parodist) (STV 1.0 0.9091)) +(: cnet_isa_fdd7cfccb2 (IsA carillon chime) (STV 1.0 0.9091)) +(: cnet_isa_dc0ab036ea (IsA carillonneur musician) (STV 1.0 0.9091)) +(: cnet_isa_e62e7f5b3c (IsA carina structure) (STV 1.0 0.9091)) +(: cnet_isa_7b6d89795e (IsA carina_fornicis carina) (STV 1.0 0.9091)) +(: cnet_isa_0a2cc6fff4 (IsA carinate bird) (STV 1.0 0.9091)) +(: cnet_isa_f0e66dba37 (IsA carioca ballroom_dancing) (STV 1.0 0.9091)) +(: cnet_isa_3a015dc7be (IsA carioca dance_music) (STV 1.0 0.9091)) +(: cnet_isa_b1622c5ead (IsA carioca brazilian) (STV 1.0 0.9091)) +(: cnet_isa_198e4f67b7 (IsA carissa shrub) (STV 1.0 0.9091)) +(: cnet_isa_d489800280 (IsA carissa_plum edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_8c7d2bb8e4 (IsA carjacking hijack) (STV 1.0 0.9091)) +(: cnet_isa_767c070a14 (IsA carlina asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_303db16998 (IsA carline_thistle thistle) (STV 1.0 0.9091)) +(: cnet_isa_0fdb1a6444 (IsA carload gathering) (STV 1.0 0.9091)) +(: cnet_isa_5cc2c6c48a (IsA carlovingian sovereign) (STV 1.0 0.9091)) +(: cnet_isa_015c361bec (IsA carmelite_order order) (STV 1.0 0.9091)) +(: cnet_isa_4550b543e0 (IsA carminative medicine) (STV 1.0 0.9091)) +(: cnet_isa_7baaa4fea8 (IsA carnal_abuse sexual_activity) (STV 1.0 0.9091)) +(: cnet_isa_daa25ba2f9 (IsA carnallite mineral) (STV 1.0 0.9091)) +(: cnet_isa_156a1ddd2e (IsA carnassial_tooth tooth) (STV 1.0 0.9091)) +(: cnet_isa_4ca9a2e9e1 (IsA carnation flower) (STV 1.0 0.9524)) +(: cnet_isa_7037923d9e (IsA carnation pink) (STV 1.0 0.9091)) +(: cnet_isa_681327bde7 (IsA carnauba fan_palm) (STV 1.0 0.9091)) +(: cnet_isa_94a45c7ae0 (IsA carnauba_wax wax) (STV 1.0 0.9091)) +(: cnet_isa_0cb5571a67 (IsA carnegiea caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ea7fe89e0b (IsA carnelian chalcedony) (STV 1.0 0.9091)) +(: cnet_isa_5ea7ddb64a (IsA carniolan_bee honeybee) (STV 1.0 0.9091)) +(: cnet_isa_63a100c852 (IsA carnival festival) (STV 1.0 0.9091)) +(: cnet_isa_1213d1c51d (IsA carnival show) (STV 1.0 0.9091)) +(: cnet_isa_cd25d75774 (IsA carnivora animal_order) (STV 1.0 0.9091)) +(: cnet_isa_77cf738be5 (IsA carnivore placental) (STV 1.0 0.9091)) +(: cnet_isa_0c503dbb2d (IsA carnivore predator) (STV 1.0 0.9091)) +(: cnet_isa_dd9ff846d5 (IsA carnivorous_bat bat) (STV 1.0 0.9091)) +(: cnet_isa_e304d7f1ea (IsA carnivorous_plant herb) (STV 1.0 0.9091)) +(: cnet_isa_62cf96d160 (IsA carnosaur theropod) (STV 1.0 0.9091)) +(: cnet_isa_3c44c49bc5 (IsA carnosaura animal_order) (STV 1.0 0.9091)) +(: cnet_isa_eee07347d5 (IsA carnot_cycle cycle) (STV 1.0 0.9091)) +(: cnet_isa_9a6507de22 (IsA carnotite uranium_ore) (STV 1.0 0.9091)) +(: cnet_isa_4f9b552d02 (IsA carob foodstuff) (STV 1.0 0.9091)) +(: cnet_isa_7cc0afe671 (IsA carob bean) (STV 1.0 0.9091)) +(: cnet_isa_d638f07dc3 (IsA carob bean_tree) (STV 1.0 0.9091)) +(: cnet_isa_eb0123b653 (IsA carob_bar candy) (STV 1.0 0.9091)) +(: cnet_isa_8ebd6fa204 (IsA caroche carriage) (STV 1.0 0.9091)) +(: cnet_isa_3a5c081a6a (IsA carol song) (STV 1.0 0.9091)) +(: cnet_isa_31bc94e46c (IsA carol religious_song) (STV 1.0 0.9091)) +(: cnet_isa_00c30f58fb (IsA caroler singer) (STV 1.0 0.9091)) +(: cnet_isa_8e9f539cc3 (IsA carolina_allspice allspice) (STV 1.0 0.9091)) +(: cnet_isa_df8d0c7cba (IsA carolina_buckthorn buckthorn) (STV 1.0 0.9091)) +(: cnet_isa_52ddbd91da (IsA carolina_chickadee chickadee) (STV 1.0 0.9091)) +(: cnet_isa_6f4a425158 (IsA carolina_hemlock hemlock) (STV 1.0 0.9091)) +(: cnet_isa_2bc3afa2cf (IsA carolina_lupine bush_pea) (STV 1.0 0.9091)) +(: cnet_isa_9026d084a1 (IsA carolina_moonseed moonseed) (STV 1.0 0.9091)) +(: cnet_isa_6cef58dbc6 (IsA carolina_parakeet parakeet) (STV 1.0 0.9091)) +(: cnet_isa_054df03677 (IsA carolina_spring_beauty flower) (STV 1.0 0.9091)) +(: cnet_isa_4c31c78b8c (IsA carolina_wren wren) (STV 1.0 0.9091)) +(: cnet_isa_9e1640b8e8 (IsA caroling singing) (STV 1.0 0.9091)) +(: cnet_isa_ca6218654d (IsA carolingian_dynasty dynasty) (STV 1.0 0.9091)) +(: cnet_isa_0e11416e35 (IsA carolinian american) (STV 1.0 0.9091)) +(: cnet_isa_be5bfd8b04 (IsA carom stroke) (STV 1.0 0.9091)) +(: cnet_isa_53ca6e9d60 (IsA carotene carotenoid) (STV 1.0 0.9091)) +(: cnet_isa_0ed51294d6 (IsA carotenemia pathology) (STV 1.0 0.9091)) +(: cnet_isa_63b49b2e31 (IsA carotenoid antioxidant) (STV 1.0 0.9091)) +(: cnet_isa_89fc8eebd4 (IsA carotenoid phytochemical) (STV 1.0 0.9091)) +(: cnet_isa_cc1da0d316 (IsA carotenoid pigment) (STV 1.0 0.9091)) +(: cnet_isa_eac63052df (IsA carotid_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_e414c69bea (IsA carotid_body chemoreceptor) (STV 1.0 0.9091)) +(: cnet_isa_86044d6add (IsA carotid_plexus nerve_plexus) (STV 1.0 0.9091)) +(: cnet_isa_1dc7066595 (IsA carouse revel) (STV 1.0 0.9091)) +(: cnet_isa_b44d0ff13c (IsA carousel conveyer_belt) (STV 1.0 0.9091)) +(: cnet_isa_5b05e19ab8 (IsA carousel ride) (STV 1.0 0.9091)) +(: cnet_isa_834f2bbe5c (IsA carp cyprinid) (STV 1.0 0.9091)) +(: cnet_isa_f901eeb5ca (IsA carp freshwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_6dfc6642d3 (IsA carpal_bone bone) (STV 1.0 0.9091)) +(: cnet_isa_68ea802954 (IsA carpal_tunnel passage) (STV 1.0 0.9091)) +(: cnet_isa_9801c1941f (IsA carpal_tunnel_syndrome nerve_entrapment) (STV 1.0 0.9091)) +(: cnet_isa_799adb4a10 (IsA carpel pistil) (STV 1.0 0.9091)) +(: cnet_isa_ebcd3dbc9d (IsA carpenter_s_hammer hammer) (STV 1.0 0.9091)) +(: cnet_isa_d2ccb4ebeb (IsA carpenter_s_kit kit) (STV 1.0 0.9091)) +(: cnet_isa_41e0c64c4e (IsA carpenter_s_level bar) (STV 1.0 0.9091)) +(: cnet_isa_63338eab91 (IsA carpenter_s_mallet mallet) (STV 1.0 0.9091)) +(: cnet_isa_6832316cb3 (IsA carpenter_s_rule rule) (STV 1.0 0.9091)) +(: cnet_isa_3159f2726c (IsA carpenter_s_square square) (STV 1.0 0.9091)) +(: cnet_isa_e774bfc8f4 (IsA carpenter woodworker) (STV 1.0 0.9091)) +(: cnet_isa_e0278f3ae5 (IsA carpenter_ant ant) (STV 1.0 0.9091)) +(: cnet_isa_617f7e400a (IsA carpenter_bee bee) (STV 1.0 0.9091)) +(: cnet_isa_6c848ad046 (IsA carpentry trade) (STV 1.0 0.9091)) +(: cnet_isa_76aa9f2e41 (IsA carper critic) (STV 1.0 0.9091)) +(: cnet_isa_a2e6b018a5 (IsA carpet natural_object) (STV 1.0 0.9091)) +(: cnet_isa_51a20f6c31 (IsA carpet_beater beater) (STV 1.0 0.9091)) +(: cnet_isa_1026344f46 (IsA carpet_beetle beetle) (STV 1.0 0.9091)) +(: cnet_isa_869169cf20 (IsA carpet_bombing bombing) (STV 1.0 0.9091)) +(: cnet_isa_f78bc96c53 (IsA carpet_knight knight) (STV 1.0 0.9091)) +(: cnet_isa_9b58173970 (IsA carpet_loom loom) (STV 1.0 0.9091)) +(: cnet_isa_acb0258b31 (IsA carpet_moth tineid) (STV 1.0 0.9091)) +(: cnet_isa_0a2642c19b (IsA carpet_pad pad) (STV 1.0 0.9091)) +(: cnet_isa_e3795a7c00 (IsA carpet_shark shark) (STV 1.0 0.9091)) +(: cnet_isa_2fdbf4d2ea (IsA carpet_snake python) (STV 1.0 0.9091)) +(: cnet_isa_baa7acef3a (IsA carpet_sweeper cleaning_implement) (STV 1.0 0.9091)) +(: cnet_isa_043f8d88d7 (IsA carpet_tack tack) (STV 1.0 0.9091)) +(: cnet_isa_61fc9e3235 (IsA carpetbag bag) (STV 1.0 0.9091)) +(: cnet_isa_7b42446194 (IsA carpetbagger opportunist) (STV 1.0 0.9091)) +(: cnet_isa_70fce4f1bd (IsA carpeting floor_covering) (STV 1.0 0.9091)) +(: cnet_isa_e1aec1270b (IsA carpetweed weed) (STV 1.0 0.9091)) +(: cnet_isa_5e44688bba (IsA carphophis reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_a31dbae5c0 (IsA carpinaceae hamamelid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_376183da80 (IsA carpinus hamamelid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9bfec9f489 (IsA carpobrotus caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_82f7b9fd75 (IsA carpocapsa arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_7221c0914f (IsA carpodacus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_49ccf76906 (IsA carpophore stalk) (STV 1.0 0.9091)) +(: cnet_isa_ed3079c271 (IsA carport garage) (STV 1.0 0.9091)) +(: cnet_isa_18896871ac (IsA carpospore spore) (STV 1.0 0.9091)) +(: cnet_isa_69e64b56e6 (IsA carrack galleon) (STV 1.0 0.9091)) +(: cnet_isa_3ff39eea3b (IsA carrageenin gum) (STV 1.0 0.9091)) +(: cnet_isa_572c376b9a (IsA carrel alcove) (STV 1.0 0.9091)) +(: cnet_isa_739c48ea6f (IsA carriage horse_drawn_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_df0d46fe3f (IsA carriage mechanism) (STV 1.0 0.9091)) +(: cnet_isa_997980e230 (IsA carriage bodily_property) (STV 1.0 0.9091)) +(: cnet_isa_459df08b4e (IsA carriage_bolt bolt) (STV 1.0 0.9091)) +(: cnet_isa_13f216d2e6 (IsA carriage_return printing_operation) (STV 1.0 0.9091)) +(: cnet_isa_fc2dbc4e6b (IsA carriage_trade commerce) (STV 1.0 0.9091)) +(: cnet_isa_abcce6b4f5 (IsA carriage_wrench wrench) (STV 1.0 0.9091)) +(: cnet_isa_4ded99f52d (IsA carriageway roadway) (STV 1.0 0.9091)) +(: cnet_isa_7f1be1209b (IsA carrick_bend knot) (STV 1.0 0.9091)) +(: cnet_isa_a27658cbd4 (IsA carrick_bitt post) (STV 1.0 0.9091)) +(: cnet_isa_adbe246292 (IsA carrier rack) (STV 1.0 0.9091)) +(: cnet_isa_e6fd4ceaf8 (IsA carrier self_propelled_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_1aad8d7c99 (IsA carrier organism) (STV 1.0 0.9091)) +(: cnet_isa_3d34fa7541 (IsA carrier business) (STV 1.0 0.9091)) +(: cnet_isa_4ed43ca28a (IsA carrier immune) (STV 1.0 0.9091)) +(: cnet_isa_ebff67371b (IsA carrier vector) (STV 1.0 0.9091)) +(: cnet_isa_80e2323c1e (IsA carrier deliveryman) (STV 1.0 0.9091)) +(: cnet_isa_75d757cda5 (IsA carrier traveler) (STV 1.0 0.9091)) +(: cnet_isa_01df83b6fd (IsA carrier chemical) (STV 1.0 0.9091)) +(: cnet_isa_b6b04e738c (IsA carrier_pigeon homing_pigeon) (STV 1.0 0.9091)) +(: cnet_isa_e4d35e06da (IsA carrier_wave radio_wave) (STV 1.0 0.9091)) +(: cnet_isa_6f65505bb3 (IsA carrion body) (STV 1.0 0.9091)) +(: cnet_isa_1a8024160d (IsA carron_oil ointment) (STV 1.0 0.9091)) +(: cnet_isa_ec7fc4fa35 (IsA carrot reward) (STV 1.0 0.9091)) +(: cnet_isa_e158ee693e (IsA carrot root_vegetable) (STV 1.0 0.9091)) +(: cnet_isa_4a1a290d0e (IsA carrot herb) (STV 1.0 0.9091)) +(: cnet_isa_d5a2f5c604 (IsA carrot root) (STV 1.0 0.9091)) +(: cnet_isa_6e9b254054 (IsA carrot_juice juice) (STV 1.0 0.9091)) +(: cnet_isa_91e26e5b0f (IsA carrot_pudding pudding) (STV 1.0 0.9091)) +(: cnet_isa_319124cecc (IsA carrot_stick crudite) (STV 1.0 0.9091)) +(: cnet_isa_354c525c1c (IsA carrot rinsed_in_sink) (STV 1.0 0.9091)) +(: cnet_isa_8b8353418b (IsA carry transportation) (STV 1.0 0.9091)) +(: cnet_isa_e102ca316e (IsA carry_over balance) (STV 1.0 0.9091)) +(: cnet_isa_d4631be771 (IsA carryall bag) (STV 1.0 0.9091)) +(: cnet_isa_2570048056 (IsA carrycot baby_bed) (STV 1.0 0.9091)) +(: cnet_isa_510e9bc203 (IsA carrying_charge charge) (STV 1.0 0.9091)) +(: cnet_isa_28c8caff0c (IsA carrying_cost opportunity_cost) (STV 1.0 0.9091)) +(: cnet_isa_41d0b7fc5e (IsA car automobile) (STV 1.0 0.9339)) +(: cnet_isa_811dad48ee (IsA car form_of_personal_transportation) (STV 1.0 0.9091)) +(: cnet_isa_ef11db5f6a (IsA car major_cause_of_pollution) (STV 1.0 0.9091)) +(: cnet_isa_3753fb4f60 (IsA car mean_of_transportation) (STV 1.0 0.9091)) +(: cnet_isa_3f78409bd4 (IsA car popular_form_of_transport) (STV 1.0 0.9091)) +(: cnet_isa_3d4b2ddda3 (IsA cart vehicle) (STV 1.0 0.9091)) +(: cnet_isa_0b0023bed3 (IsA cart wagon) (STV 1.0 0.9091)) +(: cnet_isa_d0abb25da6 (IsA cartage hauling) (STV 1.0 0.9091)) +(: cnet_isa_88c8fb0adc (IsA cartagena_bark cinchona) (STV 1.0 0.9091)) +(: cnet_isa_8407851c4e (IsA carte_blanche authority) (STV 1.0 0.9091)) +(: cnet_isa_a2467a4df5 (IsA carter worker) (STV 1.0 0.9091)) +(: cnet_isa_65c1a3b0e0 (IsA carter_administration executive) (STV 1.0 0.9091)) +(: cnet_isa_8b4cd22452 (IsA cartesian follower) (STV 1.0 0.9091)) +(: cnet_isa_2518c77744 (IsA cartesian_coordinate coordinate) (STV 1.0 0.9091)) +(: cnet_isa_3fb941fe71 (IsA cartesian_coordinate_system coordinate_system) (STV 1.0 0.9091)) +(: cnet_isa_51febed6eb (IsA cartesian_plane plane) (STV 1.0 0.9091)) +(: cnet_isa_37c1cae66c (IsA carthaginian african) (STV 1.0 0.9091)) +(: cnet_isa_4419744c66 (IsA carthamus asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3b0d902c45 (IsA carthorse draft_horse) (STV 1.0 0.9091)) +(: cnet_isa_7b89c4d17b (IsA carthusian monk) (STV 1.0 0.9091)) +(: cnet_isa_3ad7dc63c5 (IsA carthusian_order order) (STV 1.0 0.9091)) +(: cnet_isa_e805ac27d8 (IsA cartilage animal_tissue) (STV 1.0 0.9091)) +(: cnet_isa_e512d6d606 (IsA cartilage_bone bone) (STV 1.0 0.9091)) +(: cnet_isa_928dc09990 (IsA cartilaginification pathology) (STV 1.0 0.9091)) +(: cnet_isa_75d4ca33d1 (IsA cartilaginous_fish fish) (STV 1.0 0.9091)) +(: cnet_isa_14181f88a2 (IsA cartilaginous_structure structure) (STV 1.0 0.9091)) +(: cnet_isa_4780c357dd (IsA cartilaginous_tube duct) (STV 1.0 0.9091)) +(: cnet_isa_58020d7029 (IsA cartload containerful) (STV 1.0 0.9091)) +(: cnet_isa_bf0f71f8c5 (IsA cartographer geographer) (STV 1.0 0.9091)) +(: cnet_isa_7beac394b7 (IsA carton box) (STV 1.0 0.9091)) +(: cnet_isa_c6f195fd84 (IsA carton containerful) (STV 1.0 0.9091)) +(: cnet_isa_0410a68103 (IsA cartoon drawing) (STV 1.0 0.9454)) +(: cnet_isa_68ad232034 (IsA cartoon picture) (STV 1.0 0.9091)) +(: cnet_isa_c4fbbc5dd3 (IsA cartoon show) (STV 1.0 0.9091)) +(: cnet_isa_ecc83a0034 (IsA cartoon short_subject) (STV 1.0 0.9091)) +(: cnet_isa_0686a0cb64 (IsA cartoon wit) (STV 1.0 0.9091)) +(: cnet_isa_c3368ed978 (IsA cartoonist draftsman) (STV 1.0 0.9091)) +(: cnet_isa_50f8d4cee5 (IsA cartouche cartridge) (STV 1.0 0.9091)) +(: cnet_isa_794eda7ac0 (IsA cartridge ammunition) (STV 1.0 0.9091)) +(: cnet_isa_bc5f837bed (IsA cartridge electro_acoustic_transducer) (STV 1.0 0.9091)) +(: cnet_isa_1f15c660cf (IsA cartridge module) (STV 1.0 0.9091)) +(: cnet_isa_b4642229c6 (IsA cartridge_belt belt) (STV 1.0 0.9091)) +(: cnet_isa_a36f7b019e (IsA cartridge_brass brass) (STV 1.0 0.9091)) +(: cnet_isa_7f062da5ac (IsA cartridge_ejector mechanism) (STV 1.0 0.9091)) +(: cnet_isa_cf2f3fb919 (IsA cartridge_extractor mechanism) (STV 1.0 0.9091)) +(: cnet_isa_9014508d57 (IsA cartridge_fuse fuse) (STV 1.0 0.9091)) +(: cnet_isa_eee7043cd5 (IsA cartridge_holder supply_chamber) (STV 1.0 0.9091)) +(: cnet_isa_50ee80d18e (IsA cartridge_paper drawing_paper) (STV 1.0 0.9091)) +(: cnet_isa_5c224988a0 (IsA cartridge_paper paper) (STV 1.0 0.9091)) +(: cnet_isa_39e74a1e45 (IsA cartwheel acrobatic_stunt) (STV 1.0 0.9091)) +(: cnet_isa_6de2fcadc8 (IsA cartwheel wheel) (STV 1.0 0.9091)) +(: cnet_isa_180a77892d (IsA cartwright wright) (STV 1.0 0.9091)) +(: cnet_isa_406b26295c (IsA carum rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4e355795c7 (IsA caruncle process) (STV 1.0 0.9091)) +(: cnet_isa_37871bd2ff (IsA carvedilol beta_blocker) (STV 1.0 0.9091)) +(: cnet_isa_61020ede41 (IsA carving creating_by_removal) (STV 1.0 0.9091)) +(: cnet_isa_014a83a6cd (IsA carving sculpture) (STV 1.0 0.9091)) +(: cnet_isa_60cce165be (IsA carving_fork fork) (STV 1.0 0.9091)) +(: cnet_isa_4a82f53f0d (IsA carving_knife knife) (STV 1.0 0.9091)) +(: cnet_isa_94f164701b (IsA carya dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_96e9e53bfa (IsA caryatid column) (STV 1.0 0.9091)) +(: cnet_isa_a447da6552 (IsA caryocar dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_21d9f19ce6 (IsA caryocaraceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_db798a185b (IsA caryophyllaceae caryophylloid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_73d8dec27a (IsA caryophyllaceous_plant herb) (STV 1.0 0.9091)) +(: cnet_isa_bc3ac9388d (IsA caryophyllale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_26bd8c5543 (IsA caryophyllidae class) (STV 1.0 0.9091)) +(: cnet_isa_6bf0529f2c (IsA caryophylloid_dicot_family dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_bccac5dc30 (IsA caryophylloid_dicot_genus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4705416145 (IsA caryota monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_96f15fb29e (IsA casaba winter_melon) (STV 1.0 0.9091)) +(: cnet_isa_38d1bb0d8f (IsA casanova womanizer) (STV 1.0 0.9091)) +(: cnet_isa_89f20d6c4c (IsA cascade succession) (STV 1.0 0.9091)) +(: cnet_isa_69780c25ba (IsA cascade waterfall) (STV 1.0 0.9091)) +(: cnet_isa_5bbef28c2d (IsA cascade_everlasting everlasting) (STV 1.0 0.9091)) +(: cnet_isa_b68351eaf5 (IsA cascade_liquefier apparatus) (STV 1.0 0.9091)) +(: cnet_isa_3f1e09a1da (IsA cascade_penstemon wildflower) (STV 1.0 0.9091)) +(: cnet_isa_aa0d6ba657 (IsA cascade_transformer step_up_transformer) (STV 1.0 0.9091)) +(: cnet_isa_6cbb719b6f (IsA cascade_frog true_frog) (STV 1.0 0.9091)) +(: cnet_isa_9c1557aab5 (IsA cascara bark) (STV 1.0 0.9091)) +(: cnet_isa_eb9b1e440c (IsA cascara_buckthorn buckthorn) (STV 1.0 0.9091)) +(: cnet_isa_4952dbbc38 (IsA cascarilla croton) (STV 1.0 0.9091)) +(: cnet_isa_8bacffeb5d (IsA cascarilla_bark bark) (STV 1.0 0.9091)) +(: cnet_isa_c62687f122 (IsA case bed_linen) (STV 1.0 0.9091)) +(: cnet_isa_fbb37f38df (IsA case container) (STV 1.0 0.9091)) +(: cnet_isa_c4023d1d6e (IsA case fact) (STV 1.0 0.9091)) +(: cnet_isa_1e0ec6d699 (IsA case argument) (STV 1.0 0.9091)) +(: cnet_isa_9a096f3cde (IsA case grammatical_category) (STV 1.0 0.9091)) +(: cnet_isa_7fc001d3e1 (IsA case problem) (STV 1.0 0.9091)) +(: cnet_isa_13991949a5 (IsA case happening) (STV 1.0 0.9091)) +(: cnet_isa_a4abe1c8e5 (IsA case person) (STV 1.0 0.9091)) +(: cnet_isa_6222ad5f73 (IsA case containerful) (STV 1.0 0.9091)) +(: cnet_isa_8f0e8c3112 (IsA case state_of_mind) (STV 1.0 0.9091)) +(: cnet_isa_714dea0ead (IsA case_agreement agreement) (STV 1.0 0.9091)) +(: cnet_isa_d1d0f282dd (IsA case_fatality_proportion proportion) (STV 1.0 0.9091)) +(: cnet_isa_a060c84b3a (IsA case_hardened_steel steel) (STV 1.0 0.9091)) +(: cnet_isa_865654b257 (IsA case_history history) (STV 1.0 0.9091)) +(: cnet_isa_207868ca7c (IsA case_knife knife) (STV 1.0 0.9091)) +(: cnet_isa_366772f7e9 (IsA case_knife table_knife) (STV 1.0 0.9091)) +(: cnet_isa_87f1c51f50 (IsA case_law civil_law) (STV 1.0 0.9091)) +(: cnet_isa_0dbadc8511 (IsA case_load workload) (STV 1.0 0.9091)) +(: cnet_isa_3575069014 (IsA case_officer secret_agent) (STV 1.0 0.9091)) +(: cnet_isa_cbd4de7e65 (IsA case_shot ammunition) (STV 1.0 0.9091)) +(: cnet_isa_2be8be29f6 (IsA case_study analysis) (STV 1.0 0.9091)) +(: cnet_isa_e44e224777 (IsA case_study report) (STV 1.0 0.9091)) +(: cnet_isa_56011b999f (IsA case_to_infection_proportion proportion) (STV 1.0 0.9091)) +(: cnet_isa_ec08fc6088 (IsA casebook written_record) (STV 1.0 0.9091)) +(: cnet_isa_8b0382bae7 (IsA casein phosphoprotein) (STV 1.0 0.9091)) +(: cnet_isa_bec1ca44ee (IsA casein_glue glue) (STV 1.0 0.9091)) +(: cnet_isa_e961a24eb6 (IsA casein_paint water_base_paint) (STV 1.0 0.9091)) +(: cnet_isa_6a402c37fd (IsA casemaking_clothe_moth clothe_moth) (STV 1.0 0.9091)) +(: cnet_isa_3b906326a1 (IsA casement sash) (STV 1.0 0.9091)) +(: cnet_isa_06694a21c9 (IsA casement_window window) (STV 1.0 0.9091)) +(: cnet_isa_f215782d52 (IsA casern barrack) (STV 1.0 0.9091)) +(: cnet_isa_052f15d42e (IsA casework welfare_work) (STV 1.0 0.9091)) +(: cnet_isa_5bb5c52b9b (IsA caseworm larva) (STV 1.0 0.9091)) +(: cnet_isa_500056b8da (IsA cash another_name_for_paper_money) (STV 1.0 0.9091)) +(: cnet_isa_239af57435 (IsA cash another_word_for_money) (STV 1.0 0.9677)) +(: cnet_isa_3247c6eb2b (IsA cash money) (STV 1.0 0.9454)) +(: cnet_isa_76f4413dcf (IsA cash currency) (STV 1.0 0.9091)) +(: cnet_isa_f1f2a34b3a (IsA cash payment) (STV 1.0 0.9091)) +(: cnet_isa_8e08d1bbc5 (IsA cash_account brokerage_account) (STV 1.0 0.9091)) +(: cnet_isa_5f7510e6ba (IsA cash_bar bar) (STV 1.0 0.9091)) +(: cnet_isa_7efbda5336 (IsA cash_basis accounting) (STV 1.0 0.9091)) +(: cnet_isa_ece5346a84 (IsA cash_card credit_card) (STV 1.0 0.9091)) +(: cnet_isa_c550412e48 (IsA cash_crop crop) (STV 1.0 0.9091)) +(: cnet_isa_357de6e117 (IsA cash_equivalent debt_instrument) (STV 1.0 0.9091)) +(: cnet_isa_499ce8f615 (IsA cash_flow income) (STV 1.0 0.9091)) +(: cnet_isa_a18bc362f9 (IsA cash_machine machine) (STV 1.0 0.9091)) +(: cnet_isa_999705e41b (IsA cash_register cashbox) (STV 1.0 0.9091)) +(: cnet_isa_e85500a2c9 (IsA cash_surrender_value sum) (STV 1.0 0.9091)) +(: cnet_isa_dc4ad63a48 (IsA cashbox strongbox) (STV 1.0 0.9091)) +(: cnet_isa_4ff6893f94 (IsA cashew edible_nut) (STV 1.0 0.9091)) +(: cnet_isa_2cf3e4ad92 (IsA cashew nut_tree) (STV 1.0 0.9091)) +(: cnet_isa_861aaeec31 (IsA cashier_s_check check) (STV 1.0 0.9091)) +(: cnet_isa_c13370d495 (IsA cashier person) (STV 1.0 0.9091)) +(: cnet_isa_c16d3de2ee (IsA cashmere fabric) (STV 1.0 0.9091)) +(: cnet_isa_84cc20a53a (IsA cashmere wool) (STV 1.0 0.9091)) +(: cnet_isa_2aaddded0e (IsA cashmere_goat domestic_goat) (STV 1.0 0.9091)) +(: cnet_isa_de45a81f20 (IsA casing covering) (STV 1.0 0.9091)) +(: cnet_isa_f6847791ad (IsA casing framework) (STV 1.0 0.9091)) +(: cnet_isa_d8c8e392e8 (IsA casino card_game) (STV 1.0 0.9091)) +(: cnet_isa_5ef65300db (IsA casino gambling_house) (STV 1.0 0.9091)) +(: cnet_isa_4b11df5da3 (IsA cask containerful) (STV 1.0 0.9091)) +(: cnet_isa_905f64dc75 (IsA casket box) (STV 1.0 0.9091)) +(: cnet_isa_088c9a6d5a (IsA casmerodius bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_1123ed5f70 (IsA caspase protease) (STV 1.0 0.9091)) +(: cnet_isa_9b6b0ab01f (IsA casque helmet) (STV 1.0 0.9091)) +(: cnet_isa_013df624b7 (IsA casquet casque) (STV 1.0 0.9091)) +(: cnet_isa_e5be5a3b2c (IsA cassareep flavorer) (STV 1.0 0.9091)) +(: cnet_isa_67661393cc (IsA cassava root) (STV 1.0 0.9091)) +(: cnet_isa_485fb83280 (IsA cassava shrub) (STV 1.0 0.9091)) +(: cnet_isa_c5dc7852ad (IsA cassava starch) (STV 1.0 0.9091)) +(: cnet_isa_55ed99091d (IsA cassegrainian_telescope reflecting_telescope) (STV 1.0 0.9091)) +(: cnet_isa_661fd911fc (IsA casserole dish) (STV 1.0 0.9091)) +(: cnet_isa_b63e69e197 (IsA cassette container) (STV 1.0 0.9091)) +(: cnet_isa_4f136668d1 (IsA cassette_deck tape_deck) (STV 1.0 0.9091)) +(: cnet_isa_2c7db59ef7 (IsA cassette_player electronic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_2991ea0539 (IsA cassette_recorder recorder) (STV 1.0 0.9091)) +(: cnet_isa_601e24b9fb (IsA cassette_tape magnetic_tape) (STV 1.0 0.9091)) +(: cnet_isa_42f01dcbdc (IsA cassia laurel) (STV 1.0 0.9091)) +(: cnet_isa_39f4d5e980 (IsA cassia tree) (STV 1.0 0.9091)) +(: cnet_isa_9fb91cdf5a (IsA cassia_bark bark) (STV 1.0 0.9091)) +(: cnet_isa_3b2e2bf22a (IsA cassin_s_kingbird kingbird) (STV 1.0 0.9091)) +(: cnet_isa_57ed21fe9e (IsA cassiope dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0ed0281439 (IsA cassiri brew) (STV 1.0 0.9091)) +(: cnet_isa_4b1a9165e4 (IsA cassite white_person) (STV 1.0 0.9091)) +(: cnet_isa_6f8dca41f4 (IsA cassiterite mineral) (STV 1.0 0.9091)) +(: cnet_isa_fb29a411fc (IsA cassock vestment) (STV 1.0 0.9091)) +(: cnet_isa_5dd881060b (IsA cassowary bird) (STV 1.0 0.9091)) +(: cnet_isa_63988b40df (IsA cassowary ratite) (STV 1.0 0.9091)) +(: cnet_isa_0bcf227b61 (IsA cast throw) (STV 1.0 0.9091)) +(: cnet_isa_6af85af79a (IsA cast bandage) (STV 1.0 0.9091)) +(: cnet_isa_ae2f4f4cf6 (IsA cast copy) (STV 1.0 0.9091)) +(: cnet_isa_314dbcc3b1 (IsA cast gathering) (STV 1.0 0.9091)) +(: cnet_isa_fc1c1d23f3 (IsA cast solid) (STV 1.0 0.9091)) +(: cnet_isa_45e57d545b (IsA cast_iron iron) (STV 1.0 0.9091)) +(: cnet_isa_475b9e9d6e (IsA castanea hamamelid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_49e0e41618 (IsA castanopsis hamamelid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_351b599b62 (IsA castanospermum rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_fb4683ae76 (IsA castaway abandoned_person) (STV 1.0 0.9091)) +(: cnet_isa_2af8243bfb (IsA caste animal_group) (STV 1.0 0.9091)) +(: cnet_isa_20835130f7 (IsA caste class) (STV 1.0 0.9091)) +(: cnet_isa_4eb5aa7090 (IsA caste status) (STV 1.0 0.9091)) +(: cnet_isa_96b4591c5c (IsA caste_system class_structure) (STV 1.0 0.9091)) +(: cnet_isa_fbea38353f (IsA caster roller) (STV 1.0 0.9091)) +(: cnet_isa_5a6baac64f (IsA caster shaker) (STV 1.0 0.9091)) +(: cnet_isa_c3c0c39c0a (IsA caster worker) (STV 1.0 0.9091)) +(: cnet_isa_a858d6cc72 (IsA castigation punishment) (STV 1.0 0.9091)) +(: cnet_isa_16b7b51301 (IsA castigation rebuke) (STV 1.0 0.9091)) +(: cnet_isa_fb25c464c0 (IsA castile_soap soap) (STV 1.0 0.9091)) +(: cnet_isa_222a2a6665 (IsA castilian spanish) (STV 1.0 0.9091)) +(: cnet_isa_cde67e8440 (IsA castilleja asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c40da8e9f6 (IsA castillian spaniard) (STV 1.0 0.9091)) +(: cnet_isa_e33226c941 (IsA casting choice) (STV 1.0 0.9091)) +(: cnet_isa_1dbb151a76 (IsA casting fishing) (STV 1.0 0.9091)) +(: cnet_isa_533e0a28d9 (IsA casting_lot decision) (STV 1.0 0.9091)) +(: cnet_isa_61a2cd3e2e (IsA casting_vote vote) (STV 1.0 0.9091)) +(: cnet_isa_5d183d61d8 (IsA castle large_building) (STV 1.0 0.9091)) +(: cnet_isa_f01d513f3a (IsA castle large_richly_decorated_building) (STV 1.0 0.9339)) +(: cnet_isa_4f5d7be1f4 (IsA castle chess_move) (STV 1.0 0.9091)) +(: cnet_isa_8b1e8423b1 (IsA castle fortification) (STV 1.0 0.9091)) +(: cnet_isa_9901d16c66 (IsA castle chessman) (STV 1.0 0.9091)) +(: cnet_isa_ff4929262e (IsA castor mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_7ea14a14a9 (IsA castor_bean oilseed) (STV 1.0 0.9091)) +(: cnet_isa_ab7985f1c7 (IsA castor_oil purgative) (STV 1.0 0.9091)) +(: cnet_isa_85518fbefa (IsA castor_oil_plant shrub) (STV 1.0 0.9091)) +(: cnet_isa_efe5ec5213 (IsA castor_sugar powdered_sugar) (STV 1.0 0.9091)) +(: cnet_isa_e82a62fce8 (IsA castoridae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_2d42de47a8 (IsA castoroide mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_34bec68ad2 (IsA castration neutering) (STV 1.0 0.9091)) +(: cnet_isa_cae88cdc44 (IsA castration operation) (STV 1.0 0.9091)) +(: cnet_isa_4ff9e0671f (IsA castration_anxiety anxiety) (STV 1.0 0.9091)) +(: cnet_isa_fa8bdbdc91 (IsA castrato singer) (STV 1.0 0.9091)) +(: cnet_isa_6ada2c80aa (IsA castroism communism) (STV 1.0 0.9091)) +(: cnet_isa_5bbdc34067 (IsA casualness informality) (STV 1.0 0.9091)) +(: cnet_isa_6142532e6b (IsA casualty decrease) (STV 1.0 0.9091)) +(: cnet_isa_945172c116 (IsA casualty victim) (STV 1.0 0.9091)) +(: cnet_isa_5a000c69de (IsA casualty_care_research_center agency) (STV 1.0 0.9091)) +(: cnet_isa_8dff8f28c7 (IsA casuaridae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_85a33c0333 (IsA casuariiforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_2c9b25afec (IsA casuarina tree) (STV 1.0 0.9091)) +(: cnet_isa_27aad978bc (IsA casuarinaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_c7dda1be00 (IsA casuarinale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_5fee7b3a5d (IsA casuarius bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_c69ae646b2 (IsA casuist reasoner) (STV 1.0 0.9091)) +(: cnet_isa_a443005a9f (IsA casuistry argumentation) (STV 1.0 0.9091)) +(: cnet_isa_34eef37fff (IsA casuistry ethic) (STV 1.0 0.9091)) +(: cnet_isa_742267793f (IsA casus_belli beginning) (STV 1.0 0.9091)) +(: cnet_isa_f21333063d (IsA cat_s_claw shrub) (STV 1.0 0.9091)) +(: cnet_isa_73652e1000 (IsA cat_s_cradle child_s_game) (STV 1.0 0.9091)) +(: cnet_isa_e1265cefc0 (IsA cat_s_ear liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_0746f0a4a4 (IsA cat_s_ear weed) (STV 1.0 0.9091)) +(: cnet_isa_bf568539c8 (IsA cat_s_eye opaque_gem) (STV 1.0 0.9091)) +(: cnet_isa_ff0c94ac22 (IsA cat_s_foot herb) (STV 1.0 0.9091)) +(: cnet_isa_230cdd9c68 (IsA cat_s_paw hitch) (STV 1.0 0.9091)) +(: cnet_isa_0bddaf5281 (IsA cat_s_tail cattail) (STV 1.0 0.9091)) +(: cnet_isa_4aec21297b (IsA cat gossip) (STV 1.0 0.9091)) +(: cnet_isa_66d1ac7948 (IsA cat woman) (STV 1.0 0.9091)) +(: cnet_isa_b364aece08 (IsA cat_and_mouse child_s_game) (STV 1.0 0.9091)) +(: cnet_isa_da3f79b710 (IsA cat_box receptacle) (STV 1.0 0.9091)) +(: cnet_isa_5e3022d2b2 (IsA cat_fancier animal_fancier) (STV 1.0 0.9091)) +(: cnet_isa_675bbe72f4 (IsA cat_flea flea) (STV 1.0 0.9091)) +(: cnet_isa_4ccbfa0161 (IsA cat_food petfood) (STV 1.0 0.9091)) +(: cnet_isa_6239563ac6 (IsA cat_o_nine_tail whip) (STV 1.0 0.9091)) +(: cnet_isa_f526e3cc20 (IsA cat_rig rig) (STV 1.0 0.9091)) +(: cnet_isa_ff11f1e923 (IsA cat_scratch_disease disease) (STV 1.0 0.9091)) +(: cnet_isa_cf10fe46b0 (IsA cat_scratch_fever fever) (STV 1.0 0.9091)) +(: cnet_isa_56bd3e009a (IsA cat_shark shark) (STV 1.0 0.9091)) +(: cnet_isa_c1e4ab59e5 (IsA cat_thyme germander) (STV 1.0 0.9091)) +(: cnet_isa_e746c09495 (IsA catabiosis aging) (STV 1.0 0.9091)) +(: cnet_isa_e9ff885b95 (IsA catabolism organic_process) (STV 1.0 0.9091)) +(: cnet_isa_b12702d158 (IsA catacala arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_3f357b3c33 (IsA catachresis rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_45d7f48fc7 (IsA catacomb tunnel) (STV 1.0 0.9091)) +(: cnet_isa_bb1e2c41ac (IsA catafalque bier) (STV 1.0 0.9091)) +(: cnet_isa_8213b48f78 (IsA catahoula_leopard_dog dog) (STV 1.0 0.9091)) +(: cnet_isa_6287b866f0 (IsA catalan romance) (STV 1.0 0.9091)) +(: cnet_isa_ff637c4197 (IsA catalan spaniard) (STV 1.0 0.9091)) +(: cnet_isa_386c902eee (IsA catalase enzyme) (STV 1.0 0.9091)) +(: cnet_isa_d17ebdcaf6 (IsA catalectic line_of_poetry) (STV 1.0 0.9091)) +(: cnet_isa_d3dbf491f7 (IsA catalepsy hypersomnia) (STV 1.0 0.9091)) +(: cnet_isa_9ea4022e73 (IsA cataleptic psychotic) (STV 1.0 0.9091)) +(: cnet_isa_2f5b083cc2 (IsA catalexis meter) (STV 1.0 0.9091)) +(: cnet_isa_a4501f1c41 (IsA catalina_cherry cherry) (STV 1.0 0.9091)) +(: cnet_isa_9dd95345c6 (IsA catalog book) (STV 1.0 0.9091)) +(: cnet_isa_7fe2612ea0 (IsA catalog list) (STV 1.0 0.9091)) +(: cnet_isa_555adfc494 (IsA cataloged_procedure routine) (STV 1.0 0.9091)) +(: cnet_isa_85b6257abc (IsA cataloger librarian) (STV 1.0 0.9091)) +(: cnet_isa_c43b18c31b (IsA catalpa bean_tree) (STV 1.0 0.9091)) +(: cnet_isa_cb5cdeb583 (IsA catalpa_bignioide catalpa) (STV 1.0 0.9091)) +(: cnet_isa_b77857bbbf (IsA catalpa_speciosa catalpa) (STV 1.0 0.9091)) +(: cnet_isa_e22c0e0dbf (IsA catalufa percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_8929a50230 (IsA catalysis chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_2440f7fec0 (IsA catalyst activator) (STV 1.0 0.9091)) +(: cnet_isa_6b260cdd54 (IsA catalyst causal_agent) (STV 1.0 0.9091)) +(: cnet_isa_9d16ec5652 (IsA catalytic_converter converter) (STV 1.0 0.9091)) +(: cnet_isa_e088e96c97 (IsA catalytic_cracker chemical_reactor) (STV 1.0 0.9091)) +(: cnet_isa_f7cfba3083 (IsA catamaran boat) (STV 1.0 0.9091)) +(: cnet_isa_3c0af45d21 (IsA catamite male_child) (STV 1.0 0.9091)) +(: cnet_isa_4d9bccbd6d (IsA catananche flower) (STV 1.0 0.9091)) +(: cnet_isa_4d1face515 (IsA cataphasia speech_disorder) (STV 1.0 0.9091)) +(: cnet_isa_bdb67ed841 (IsA cataphatism religion) (STV 1.0 0.9091)) +(: cnet_isa_38f934cca5 (IsA cataphyll leaf) (STV 1.0 0.9091)) +(: cnet_isa_8beca22e45 (IsA cataplasia degeneration) (STV 1.0 0.9091)) +(: cnet_isa_fe94d1b2f0 (IsA catapult device) (STV 1.0 0.9091)) +(: cnet_isa_55dbe76e63 (IsA catapult engine) (STV 1.0 0.9091)) +(: cnet_isa_6337d01f42 (IsA cataract waterfall) (STV 1.0 0.9091)) +(: cnet_isa_4b13d5d866 (IsA cataract eye_disease) (STV 1.0 0.9091)) +(: cnet_isa_dbbefe868a (IsA cataract_surgery eye_operation) (STV 1.0 0.9091)) +(: cnet_isa_5fabb4e133 (IsA catarrh inflammation) (STV 1.0 0.9091)) +(: cnet_isa_cfb3b59cb6 (IsA catarrhal_fever animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_d6b976328e (IsA catasetum monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_83cdb16a9f (IsA catastrophe geological_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_84911ab4fc (IsA catastrophe adversity) (STV 1.0 0.9091)) +(: cnet_isa_fc0438e5b7 (IsA catastrophic_illness illness) (STV 1.0 0.9091)) +(: cnet_isa_82bec9f6ba (IsA catatonia tonicity) (STV 1.0 0.9091)) +(: cnet_isa_7005c9e67f (IsA catatonic_schizophrenia schizophrenia) (STV 1.0 0.9091)) +(: cnet_isa_c644979a57 (IsA catawba siouan) (STV 1.0 0.9091)) +(: cnet_isa_07a59e38a4 (IsA catawba fox_grape) (STV 1.0 0.9091)) +(: cnet_isa_984ec52147 (IsA catbird oscine) (STV 1.0 0.9091)) +(: cnet_isa_11966dcc5d (IsA catboat sailboat) (STV 1.0 0.9091)) +(: cnet_isa_d11b2d39e1 (IsA catcall cry) (STV 1.0 0.9091)) +(: cnet_isa_2cc8ad8172 (IsA catch game) (STV 1.0 0.9091)) +(: cnet_isa_3b66fe28a0 (IsA catch touch) (STV 1.0 0.9091)) +(: cnet_isa_2fc4512eae (IsA catch fastener) (STV 1.0 0.9091)) +(: cnet_isa_ef0c9eb354 (IsA catch restraint) (STV 1.0 0.9091)) +(: cnet_isa_00ddca4f24 (IsA catch drawback) (STV 1.0 0.9091)) +(: cnet_isa_cce280fc54 (IsA catch manner_of_speaking) (STV 1.0 0.9091)) +(: cnet_isa_68fb702d5d (IsA catch object) (STV 1.0 0.9091)) +(: cnet_isa_3deec8e819 (IsA catch adult) (STV 1.0 0.9091)) +(: cnet_isa_68461a50a8 (IsA catch indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_490f9b49ca (IsA catch_crop crop) (STV 1.0 0.9091)) +(: cnet_isa_a49cf0cf4d (IsA catchall enclosure) (STV 1.0 0.9091)) +(: cnet_isa_4cb55e58d7 (IsA catchall receptacle) (STV 1.0 0.9091)) +(: cnet_isa_476dab6da2 (IsA catcher_s_mask baseball_equipment) (STV 1.0 0.9091)) +(: cnet_isa_89356194a6 (IsA catcher_s_mask face_mask) (STV 1.0 0.9091)) +(: cnet_isa_6c28fb1e32 (IsA catcher position) (STV 1.0 0.9091)) +(: cnet_isa_3c24a20868 (IsA catcher infielder) (STV 1.0 0.9091)) +(: cnet_isa_f64530cf42 (IsA catching acquiring) (STV 1.0 0.9091)) +(: cnet_isa_9353205d2c (IsA catching playing) (STV 1.0 0.9091)) +(: cnet_isa_77f0512bb0 (IsA catchment structure) (STV 1.0 0.9091)) +(: cnet_isa_882ea97c70 (IsA catchment_area geographical_area) (STV 1.0 0.9091)) +(: cnet_isa_dbe454642c (IsA catchphrase motto) (STV 1.0 0.9091)) +(: cnet_isa_7ebbf0a592 (IsA catchphrase phrase) (STV 1.0 0.9091)) +(: cnet_isa_5b7b2c8512 (IsA catechesis teaching) (STV 1.0 0.9091)) +(: cnet_isa_d8e101be69 (IsA catechetical_instruction teaching) (STV 1.0 0.9091)) +(: cnet_isa_ac60a45a74 (IsA catechin tannin) (STV 1.0 0.9091)) +(: cnet_isa_ccf3f69abb (IsA catechism book) (STV 1.0 0.9091)) +(: cnet_isa_1e6074d2fd (IsA catechism interrogation) (STV 1.0 0.9091)) +(: cnet_isa_0a6af958f6 (IsA catechist teacher) (STV 1.0 0.9091)) +(: cnet_isa_d711025235 (IsA catecholamine hormone) (STV 1.0 0.9091)) +(: cnet_isa_db30ce15b6 (IsA catechu acacia) (STV 1.0 0.9091)) +(: cnet_isa_6863e91acd (IsA catechumen student) (STV 1.0 0.9091)) +(: cnet_isa_26d76fa675 (IsA categorem term) (STV 1.0 0.9091)) +(: cnet_isa_0a2fec17bf (IsA categorical_imperative moral_principle) (STV 1.0 0.9091)) +(: cnet_isa_426047cf39 (IsA categorization grouping) (STV 1.0 0.9091)) +(: cnet_isa_3ec8b65f88 (IsA category concept) (STV 1.0 0.9091)) +(: cnet_isa_34a07ec7c7 (IsA category_theory abstract_math) (STV 1.0 0.9091)) +(: cnet_isa_219ce70012 (IsA category_theory math) (STV 1.0 0.9339)) +(: cnet_isa_6a653dcfa7 (IsA catena chain) (STV 1.0 0.9091)) +(: cnet_isa_009515e7d4 (IsA catenary curve) (STV 1.0 0.9091)) +(: cnet_isa_e08725a142 (IsA caterer supplier) (STV 1.0 0.9091)) +(: cnet_isa_656a431b33 (IsA catering occupation) (STV 1.0 0.9091)) +(: cnet_isa_29776f8594 (IsA caterpillar larva) (STV 1.0 0.9091)) +(: cnet_isa_eb029b8c65 (IsA caterwaul cry) (STV 1.0 0.9091)) +(: cnet_isa_bc56719a8a (IsA catfish soft_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_bd6c9105e2 (IsA catfish freshwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_7cc3baff09 (IsA catgut cord) (STV 1.0 0.9091)) +(: cnet_isa_90ab40bfd0 (IsA catgut hoary_pea) (STV 1.0 0.9091)) +(: cnet_isa_2175af74db (IsA catha gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_22f0c9a2be (IsA catha_edulis shrub) (STV 1.0 0.9091)) +(: cnet_isa_c0583288e1 (IsA catharacta bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_0a2e2a281f (IsA catharanthus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5f033ecda8 (IsA catharsis purge) (STV 1.0 0.9091)) +(: cnet_isa_18bbe75e5e (IsA catharte bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_f7426c0562 (IsA cathartidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_983fef374e (IsA cathaya conifer) (STV 1.0 0.9091)) +(: cnet_isa_84128f4138 (IsA cathedra throne) (STV 1.0 0.9091)) +(: cnet_isa_9b7c0906dd (IsA cathedral church) (STV 1.0 0.9091)) +(: cnet_isa_c104fdf7be (IsA catherine_wheel firework) (STV 1.0 0.9091)) +(: cnet_isa_3937c3b702 (IsA catheter tube) (STV 1.0 0.9091)) +(: cnet_isa_528da09d49 (IsA catheterisation operation) (STV 1.0 0.9091)) +(: cnet_isa_1e78688357 (IsA cathexis libidinal_energy) (STV 1.0 0.9091)) +(: cnet_isa_0d93402c1f (IsA cathode electrode) (STV 1.0 0.9091)) +(: cnet_isa_62675d68e9 (IsA cathode terminal) (STV 1.0 0.9091)) +(: cnet_isa_19f98d3af3 (IsA cathode_ray beam) (STV 1.0 0.9091)) +(: cnet_isa_cd01cf12d8 (IsA cathode_ray_tube gas_discharge_tube) (STV 1.0 0.9091)) +(: cnet_isa_15fc609023 (IsA catholic christian) (STV 1.0 0.9091)) +(: cnet_isa_afd2eed9c5 (IsA catholic_church church) (STV 1.0 0.9091)) +(: cnet_isa_734e536283 (IsA catholic_school church_school) (STV 1.0 0.9091)) +(: cnet_isa_51a69dc0eb (IsA catholicism christianity) (STV 1.0 0.9091)) +(: cnet_isa_b1676068a9 (IsA catholico spiritual_leader) (STV 1.0 0.9091)) +(: cnet_isa_68dba57e17 (IsA cation ion) (STV 1.0 0.9091)) +(: cnet_isa_e6817ff231 (IsA cationic_detergent detergent) (STV 1.0 0.9091)) +(: cnet_isa_fec1d0de6a (IsA catkin inflorescence) (STV 1.0 0.9091)) +(: cnet_isa_1287562f25 (IsA catling surgical_knife) (STV 1.0 0.9091)) +(: cnet_isa_c454e51dba (IsA catmint herb) (STV 1.0 0.9091)) +(: cnet_isa_fbd8731e04 (IsA catoptric optic) (STV 1.0 0.9091)) +(: cnet_isa_9e6d33a625 (IsA catoptrophorus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_7331cc4384 (IsA catostomid cypriniform_fish) (STV 1.0 0.9091)) +(: cnet_isa_a09fdbba47 (IsA catostomidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_d9e2ea41d6 (IsA catostomus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_631a3673e8 (IsA cat not_dog) (STV 1.0 0.9339)) +(: cnet_isa_983ee4c61c (IsA cat very_common_choice_of_pet) (STV 1.0 0.9091)) +(: cnet_isa_ea99d8137d (IsA cat very_independant_animal) (STV 1.0 0.9339)) +(: cnet_isa_491bc38f40 (IsA cat very_independent_animal) (STV 1.0 0.9454)) +(: cnet_isa_6d52cbe00c (IsA cat_and_hamster both_pet) (STV 1.0 0.9454)) +(: cnet_isa_001c21f0c4 (IsA catsup condiment) (STV 1.0 0.9091)) +(: cnet_isa_50b071c90d (IsA catsup_bottle bottle) (STV 1.0 0.9091)) +(: cnet_isa_c988095b6e (IsA cattail marsh_plant) (STV 1.0 0.9091)) +(: cnet_isa_25dcc1bbac (IsA cattalo beef) (STV 1.0 0.9091)) +(: cnet_isa_d990bf1d3f (IsA cattiness malevolence) (STV 1.0 0.9091)) +(: cnet_isa_33f02ab384 (IsA cattle bovine) (STV 1.0 0.9091)) +(: cnet_isa_492716bb90 (IsA cattle_breeding breeding) (STV 1.0 0.9091)) +(: cnet_isa_a9c70eb9f1 (IsA cattle_cake feed) (STV 1.0 0.9091)) +(: cnet_isa_f57e7537bf (IsA cattle_car freight_car) (STV 1.0 0.9091)) +(: cnet_isa_044d61972b (IsA cattle_drive drive) (STV 1.0 0.9091)) +(: cnet_isa_f302037c3a (IsA cattle_egret egret) (STV 1.0 0.9091)) +(: cnet_isa_360b5a79dd (IsA cattle_guard bridge) (STV 1.0 0.9091)) +(: cnet_isa_a097e68dde (IsA cattle_trail trail) (STV 1.0 0.9091)) +(: cnet_isa_7364819bab (IsA cattleman stockman) (STV 1.0 0.9091)) +(: cnet_isa_35276c480a (IsA cattleship cargo_ship) (STV 1.0 0.9091)) +(: cnet_isa_e3f7117b54 (IsA cattley_guava fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_dab3a30e20 (IsA cattleya orchid) (STV 1.0 0.9091)) +(: cnet_isa_442e9b3117 (IsA catty weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_12b98ebf13 (IsA catwalk narrow_walkway) (STV 1.0 0.9339)) +(: cnet_isa_c419a73c07 (IsA catwalk platform) (STV 1.0 0.9091)) +(: cnet_isa_5a05b5045f (IsA catwalk walk) (STV 1.0 0.9091)) +(: cnet_isa_5c9c4f65d9 (IsA caucasian natural_language) (STV 1.0 0.9091)) +(: cnet_isa_34bd200bca (IsA caucasian_walnut wing_nut) (STV 1.0 0.9091)) +(: cnet_isa_4ab4c14f56 (IsA caucus meeting) (STV 1.0 0.9091)) +(: cnet_isa_9fef20d964 (IsA cauda structure) (STV 1.0 0.9091)) +(: cnet_isa_5d4639713f (IsA caudal_anesthesia regional_anesthesia) (STV 1.0 0.9091)) +(: cnet_isa_f49e453021 (IsA caudal_appendage tail) (STV 1.0 0.9091)) +(: cnet_isa_0e878bc31d (IsA caudate_nucleus basal_ganglion) (STV 1.0 0.9091)) +(: cnet_isa_0a1a3f7dd4 (IsA caudex stalk) (STV 1.0 0.9091)) +(: cnet_isa_aea423687f (IsA caul fetal_membrane) (STV 1.0 0.9091)) +(: cnet_isa_47cef71de5 (IsA cauliflower vegetable) (STV 1.0 0.9339)) +(: cnet_isa_259d86cac1 (IsA cauliflower cruciferous_vegetable) (STV 1.0 0.9091)) +(: cnet_isa_110e9a60dc (IsA cauliflower crucifer) (STV 1.0 0.9091)) +(: cnet_isa_77ea37efb6 (IsA cauliflower_ear auricle) (STV 1.0 0.9091)) +(: cnet_isa_bdc374efa6 (IsA caulking sealant) (STV 1.0 0.9091)) +(: cnet_isa_d5819bc148 (IsA caulophyllum magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0b31a90379 (IsA causal_agent physical_entity) (STV 1.0 0.9091)) +(: cnet_isa_544376128e (IsA causalgia pain) (STV 1.0 0.9091)) +(: cnet_isa_08922a8174 (IsA causality relation) (STV 1.0 0.9091)) +(: cnet_isa_1cf7443149 (IsA cause justification) (STV 1.0 0.9091)) +(: cnet_isa_8b84d8fafa (IsA cause origin) (STV 1.0 0.9091)) +(: cnet_isa_5f5a79a152 (IsA cause_celebre incident) (STV 1.0 0.9091)) +(: cnet_isa_9fe7f1c90c (IsA cause_of_action claim) (STV 1.0 0.9091)) +(: cnet_isa_5fb4fb3a2d (IsA cause_of_death causal_agent) (STV 1.0 0.9091)) +(: cnet_isa_d01b2b2b45 (IsA causeway road) (STV 1.0 0.9091)) +(: cnet_isa_b8a0c33734 (IsA causing act) (STV 1.0 0.9091)) +(: cnet_isa_01254fd7ab (IsA caustic compound) (STV 1.0 0.9091)) +(: cnet_isa_381457789a (IsA cautery operation) (STV 1.0 0.9091)) +(: cnet_isa_6bf01298c3 (IsA cautery instrument) (STV 1.0 0.9091)) +(: cnet_isa_cabcb8587a (IsA caution attentiveness) (STV 1.0 0.9091)) +(: cnet_isa_5c3ba81a1d (IsA caution judiciousness) (STV 1.0 0.9091)) +(: cnet_isa_9860c1446f (IsA caution warning) (STV 1.0 0.9091)) +(: cnet_isa_f21ca1f338 (IsA cautious_statement statement) (STV 1.0 0.9091)) +(: cnet_isa_752d23ec51 (IsA cavalcade procession) (STV 1.0 0.9091)) +(: cnet_isa_19c1c3443d (IsA cavalier male_aristocrat) (STV 1.0 0.9091)) +(: cnet_isa_77b632612a (IsA cavalier_hat hat) (STV 1.0 0.9091)) +(: cnet_isa_0e84ff8c70 (IsA cavalry army_unit) (STV 1.0 0.9091)) +(: cnet_isa_c7f47e8647 (IsA cavalry military_personnel) (STV 1.0 0.9091)) +(: cnet_isa_0c28af967a (IsA cavalry_horse warhorse) (STV 1.0 0.9091)) +(: cnet_isa_b9fb3498e0 (IsA cavalry_sword sword) (STV 1.0 0.9091)) +(: cnet_isa_49d0c8d33a (IsA cavalryman soldier) (STV 1.0 0.9091)) +(: cnet_isa_d07ba3f199 (IsA cave geological_formation) (STV 1.0 0.9091)) +(: cnet_isa_f1a606fcd9 (IsA cave_in collapse) (STV 1.0 0.9091)) +(: cnet_isa_3ec607ac0c (IsA cave_myotis vespertilian_bat) (STV 1.0 0.9091)) +(: cnet_isa_9f6cb03af0 (IsA caveat notice) (STV 1.0 0.9091)) +(: cnet_isa_c95f95a449 (IsA caveat_emptor principle) (STV 1.0 0.9091)) +(: cnet_isa_38b82098b6 (IsA caveman primitive) (STV 1.0 0.9091)) +(: cnet_isa_bc3e4d9ab2 (IsA cavern cave) (STV 1.0 0.9091)) +(: cnet_isa_fbc96c5543 (IsA cavern enclosure) (STV 1.0 0.9091)) +(: cnet_isa_6338a75083 (IsA cavernous_sinus venous_sinus) (STV 1.0 0.9091)) +(: cnet_isa_f9ffc4134b (IsA cavetto molding) (STV 1.0 0.9091)) +(: cnet_isa_03ab038b01 (IsA cavia mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_b4e77de443 (IsA caviar roe) (STV 1.0 0.9091)) +(: cnet_isa_0c34d91d12 (IsA caviidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_1147a266b9 (IsA cavity decaying_hole_in_tooth) (STV 1.0 0.9091)) +(: cnet_isa_072726d717 (IsA cavity structure) (STV 1.0 0.9091)) +(: cnet_isa_d96e6fe06b (IsA cavity decay) (STV 1.0 0.9091)) +(: cnet_isa_70fdb3f98b (IsA cavity space) (STV 1.0 0.9091)) +(: cnet_isa_52f55f117e (IsA cavity_wall wall) (STV 1.0 0.9091)) +(: cnet_isa_f0102ce190 (IsA cavy rodent) (STV 1.0 0.9091)) +(: cnet_isa_174d1db9b7 (IsA caw cry) (STV 1.0 0.9091)) +(: cnet_isa_7057b841ad (IsA cayenne chili) (STV 1.0 0.9091)) +(: cnet_isa_ba2acb9857 (IsA cayenne flavorer) (STV 1.0 0.9091)) +(: cnet_isa_c83e00ad4c (IsA cayenne capsicum) (STV 1.0 0.9091)) +(: cnet_isa_31ad438c7f (IsA cayman crocodilian_reptile) (STV 1.0 0.9091)) +(: cnet_isa_bbbe3e71a1 (IsA cayman_island_dollar dollar) (STV 1.0 0.9091)) +(: cnet_isa_60370f5a09 (IsA cayuga iroquoian) (STV 1.0 0.9091)) +(: cnet_isa_2d09622e77 (IsA cayuga iroquois) (STV 1.0 0.9091)) +(: cnet_isa_fc40c9a4e0 (IsA cayuse pony) (STV 1.0 0.9091)) +(: cnet_isa_42c85b69a3 (IsA cd abbreviation_for_compact_disc) (STV 1.0 0.9091)) +(: cnet_isa_0e9927b8da (IsA cd disc) (STV 1.0 0.9091)) +(: cnet_isa_6bd5d8cfcc (IsA cd medium) (STV 1.0 0.9091)) +(: cnet_isa_5b3b3b0ac1 (IsA cd optical_disk) (STV 1.0 0.9091)) +(: cnet_isa_ca1bdb3366 (IsA cd round_flat_disk) (STV 1.0 0.9091)) +(: cnet_isa_ee70b1f71e (IsA cd_drive drive) (STV 1.0 0.9091)) +(: cnet_isa_30005ce44c (IsA cd_player electronic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_0d9e900cab (IsA cd_r compact_disk) (STV 1.0 0.9091)) +(: cnet_isa_25ea0be46b (IsA cd_rom compact_disk) (STV 1.0 0.9091)) +(: cnet_isa_b289ebb946 (IsA cd_rom read_only_memory) (STV 1.0 0.9091)) +(: cnet_isa_50a3fcaf7a (IsA cd_rom_drive drive) (STV 1.0 0.9091)) +(: cnet_isa_5d0850c24e (IsA cease end) (STV 1.0 0.9091)) +(: cnet_isa_c89f6350b4 (IsA cebidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_e0c4972d68 (IsA cebuan philippine) (STV 1.0 0.9091)) +(: cnet_isa_20e7928f71 (IsA cebuan bisayan) (STV 1.0 0.9091)) +(: cnet_isa_49e90f1782 (IsA cebuella mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_b5a459deee (IsA cebus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_898aa003d3 (IsA cecidomyidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_ad0c549a21 (IsA cecropia saturniid) (STV 1.0 0.9091)) +(: cnet_isa_ddaad81682 (IsA cecropia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f0c8d92d11 (IsA cecropiaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_c86d139c4c (IsA cecum cavity) (STV 1.0 0.9091)) +(: cnet_isa_02875f160d (IsA cedar conifer) (STV 1.0 0.9091)) +(: cnet_isa_74b10b367a (IsA cedar wood) (STV 1.0 0.9091)) +(: cnet_isa_42f731526d (IsA cedar_chest chest) (STV 1.0 0.9091)) +(: cnet_isa_904eed6f28 (IsA cedar_elm elm) (STV 1.0 0.9091)) +(: cnet_isa_f2b16928fc (IsA cedar_of_lebanon cedar) (STV 1.0 0.9091)) +(: cnet_isa_0e86b8d48d (IsA cedar_waxwing waxwing) (STV 1.0 0.9091)) +(: cnet_isa_cd7d46fccf (IsA cedar coniferous_tree) (STV 1.0 0.9091)) +(: cnet_isa_16e047dea8 (IsA cedi ghanian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_37039d5fa2 (IsA cedilla diacritical_mark) (STV 1.0 0.9091)) +(: cnet_isa_4406365ff8 (IsA cedrela rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_76369d2be8 (IsA cedrus gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_a3a291aefc (IsA ceiba dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3fa15911d5 (IsA ceibo coral_tree) (STV 1.0 0.9091)) +(: cnet_isa_043d70a9a0 (IsA ceilidh party) (STV 1.0 0.9091)) +(: cnet_isa_9e4d0f5548 (IsA ceiling upper_surface) (STV 1.0 0.9091)) +(: cnet_isa_1011516631 (IsA ceiling altitude) (STV 1.0 0.9091)) +(: cnet_isa_9d373c0e4e (IsA ceiling control) (STV 1.0 0.9091)) +(: cnet_isa_c68eda1b70 (IsA celandine poppy) (STV 1.0 0.9091)) +(: cnet_isa_18f4c28074 (IsA celandine_poppy poppy) (STV 1.0 0.9091)) +(: cnet_isa_a25253265b (IsA celastraceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_72c678f568 (IsA celastrus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ed7a5edf3e (IsA celebrant person) (STV 1.0 0.9091)) +(: cnet_isa_8a96d8e6ab (IsA celebrant priest) (STV 1.0 0.9091)) +(: cnet_isa_39da9bbba5 (IsA celebration diversion) (STV 1.0 0.9091)) +(: cnet_isa_b49dad895e (IsA celebration ritual) (STV 1.0 0.9091)) +(: cnet_isa_482b5933dc (IsA celebration affair) (STV 1.0 0.9091)) +(: cnet_isa_b64cc9d65a (IsA celebrity important_person) (STV 1.0 0.9091)) +(: cnet_isa_575ea88f96 (IsA celeriac root_vegetable) (STV 1.0 0.9091)) +(: cnet_isa_81969be9cf (IsA celeriac herb) (STV 1.0 0.9091)) +(: cnet_isa_36b84c814d (IsA celerity pace) (STV 1.0 0.9091)) +(: cnet_isa_47731700a2 (IsA celery vegetable) (STV 1.0 0.9454)) +(: cnet_isa_057f9612f9 (IsA celery herb) (STV 1.0 0.9091)) +(: cnet_isa_a7eec1f2f4 (IsA celery_blight late_blight) (STV 1.0 0.9091)) +(: cnet_isa_f1a270aa12 (IsA celery_pine conifer) (STV 1.0 0.9091)) +(: cnet_isa_8a770fe58a (IsA celery_salt flavorer) (STV 1.0 0.9091)) +(: cnet_isa_da3ab48b69 (IsA celery_seed flavorer) (STV 1.0 0.9091)) +(: cnet_isa_78ba81bf08 (IsA celery_stick crudite) (STV 1.0 0.9091)) +(: cnet_isa_83db75a665 (IsA celery_top_pine celery_pine) (STV 1.0 0.9091)) +(: cnet_isa_fb84edb3b7 (IsA celesta keyboard_instrument) (STV 1.0 0.9091)) +(: cnet_isa_9747423095 (IsA celestial_body natural_object) (STV 1.0 0.9091)) +(: cnet_isa_0d48c0b9d3 (IsA celestial_city heaven) (STV 1.0 0.9091)) +(: cnet_isa_272804a27b (IsA celestial_equator great_circle) (STV 1.0 0.9091)) +(: cnet_isa_d7c5b391f8 (IsA celestial_globe globe) (STV 1.0 0.9091)) +(: cnet_isa_51c4f26442 (IsA celestial_guidance steering) (STV 1.0 0.9091)) +(: cnet_isa_0aa51a01f8 (IsA celestial_hierarchy hierarchy) (STV 1.0 0.9091)) +(: cnet_isa_5fffeb550d (IsA celestial_mechanic astronomy) (STV 1.0 0.9091)) +(: cnet_isa_68c0e555c7 (IsA celestial_navigation navigation) (STV 1.0 0.9091)) +(: cnet_isa_8651233804 (IsA celestial_point point) (STV 1.0 0.9091)) +(: cnet_isa_176ca8ae04 (IsA celestial_sphere surface) (STV 1.0 0.9091)) +(: cnet_isa_bdf1f0b5f9 (IsA celestite mineral) (STV 1.0 0.9091)) +(: cnet_isa_1054c0dd4d (IsA celiac_disease disorder) (STV 1.0 0.9091)) +(: cnet_isa_5d3a4b2729 (IsA celiac_trunk artery) (STV 1.0 0.9091)) +(: cnet_isa_f683e59842 (IsA celibacy condition) (STV 1.0 0.9091)) +(: cnet_isa_ae67b563c1 (IsA celibate religionist) (STV 1.0 0.9091)) +(: cnet_isa_491c70f916 (IsA celiocentesis centesis) (STV 1.0 0.9091)) +(: cnet_isa_30c4304fef (IsA celioma tumor) (STV 1.0 0.9091)) +(: cnet_isa_e8411f6391 (IsA celioscopy endoscopy) (STV 1.0 0.9091)) +(: cnet_isa_3739357cc7 (IsA cell compartment) (STV 1.0 0.9091)) +(: cnet_isa_d38970a872 (IsA cell electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_eef0dbf120 (IsA cell room) (STV 1.0 0.9091)) +(: cnet_isa_e5e28429b7 (IsA cell living_thing) (STV 1.0 0.9091)) +(: cnet_isa_c7f00950be (IsA cell political_unit) (STV 1.0 0.9091)) +(: cnet_isa_21beb52087 (IsA cell_division organic_process) (STV 1.0 0.9091)) +(: cnet_isa_978a5a1b2c (IsA cell_mediated_immune_response immune_response) (STV 1.0 0.9091)) +(: cnet_isa_44341ceeae (IsA cell_phone telephone) (STV 1.0 0.9454)) +(: cnet_isa_7f3d5afe54 (IsA cell_theory scientific_theory) (STV 1.0 0.9091)) +(: cnet_isa_9af2683461 (IsA cell_undergoing_meiosis eukaryotic_cell) (STV 1.0 0.9091)) +(: cnet_isa_7ec2fc093a (IsA cell_wall semipermeable_membrane) (STV 1.0 0.9091)) +(: cnet_isa_318626fb4a (IsA cell_wall layer) (STV 1.0 0.9091)) +(: cnet_isa_b1e957ee0a (IsA cellar storage_space) (STV 1.0 0.9091)) +(: cnet_isa_2b14caf187 (IsA cellarage basement) (STV 1.0 0.9091)) +(: cnet_isa_f67ad28410 (IsA cellarage fee) (STV 1.0 0.9091)) +(: cnet_isa_ae8bbbee3f (IsA cellblock block) (STV 1.0 0.9091)) +(: cnet_isa_f8922d0d29 (IsA cellist musician) (STV 1.0 0.9091)) +(: cnet_isa_96818bbaec (IsA cello instrument) (STV 1.0 0.9091)) +(: cnet_isa_cf6724b040 (IsA cello bowed_stringed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_d543aa202a (IsA cellophane plastic_wrap) (STV 1.0 0.9091)) +(: cnet_isa_7a751db10b (IsA cellphone electronic_device) (STV 1.0 0.9091)) +(: cnet_isa_283ecd70a3 (IsA cellular_slime_mold slime_mold) (STV 1.0 0.9091)) +(: cnet_isa_dce1435103 (IsA cellular_telephone radiotelephone) (STV 1.0 0.9091)) +(: cnet_isa_bcc0a666a5 (IsA cellularity physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_b8e4942d3a (IsA cellulite adipose_tissue) (STV 1.0 0.9091)) +(: cnet_isa_fefcf8d22d (IsA cellulitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_cec1052511 (IsA celluloid thermoplastic) (STV 1.0 0.9091)) +(: cnet_isa_274e539513 (IsA cellulose polysaccharide) (STV 1.0 0.9091)) +(: cnet_isa_c8f93baf0c (IsA cellulose_acetate cellulose_ester) (STV 1.0 0.9091)) +(: cnet_isa_31497d8917 (IsA cellulose_ester ester) (STV 1.0 0.9091)) +(: cnet_isa_67621dbb26 (IsA cellulose_nitrate cellulose_ester) (STV 1.0 0.9091)) +(: cnet_isa_dbd3ae03ac (IsA cellulose_nitrate nitrate) (STV 1.0 0.9091)) +(: cnet_isa_11dc257fb3 (IsA cellulose_tape adhesive_tape) (STV 1.0 0.9091)) +(: cnet_isa_25d3e68291 (IsA cellulose_triacetate cellulose_acetate) (STV 1.0 0.9091)) +(: cnet_isa_0efae7272a (IsA cellulose_xanthate cellulose_ester) (STV 1.0 0.9091)) +(: cnet_isa_6bd69a4abe (IsA cellulose_xanthate xanthate) (STV 1.0 0.9091)) +(: cnet_isa_0c7941185d (IsA cellulosic plastic) (STV 1.0 0.9091)) +(: cnet_isa_e302579922 (IsA celom cavity) (STV 1.0 0.9091)) +(: cnet_isa_7e5260b3a3 (IsA celosia caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2ec30830eb (IsA celsius_scale temperature_scale) (STV 1.0 0.9091)) +(: cnet_isa_256452bcdf (IsA celtic indo_european) (STV 1.0 0.9091)) +(: cnet_isa_d30014fec8 (IsA celtic_cross cross) (STV 1.0 0.9091)) +(: cnet_isa_62fa5fb1a5 (IsA celtic_deity deity) (STV 1.0 0.9091)) +(: cnet_isa_ba235ff6fb (IsA celtis dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_343a34b186 (IsA celtuce salad_green) (STV 1.0 0.9091)) +(: cnet_isa_8f0cff05de (IsA celtuce lettuce) (STV 1.0 0.9091)) +(: cnet_isa_789bd16871 (IsA cembra_nut nut) (STV 1.0 0.9091)) +(: cnet_isa_83a1bc9cfa (IsA cement adhesive_material) (STV 1.0 0.9091)) +(: cnet_isa_58e4df4ede (IsA cement building_material) (STV 1.0 0.9091)) +(: cnet_isa_14466b13c5 (IsA cement concrete) (STV 1.0 0.9091)) +(: cnet_isa_927aa18e62 (IsA cement filling) (STV 1.0 0.9091)) +(: cnet_isa_c178313807 (IsA cementite compound) (STV 1.0 0.9091)) +(: cnet_isa_5ece7c19cf (IsA cementum solid_body_substance) (STV 1.0 0.9091)) +(: cnet_isa_b191633f91 (IsA cemetery sad_place) (STV 1.0 0.9091)) +(: cnet_isa_48db8433c8 (IsA cemetery site) (STV 1.0 0.9091)) +(: cnet_isa_16a89b56f3 (IsA cenchrus monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2198bc39b0 (IsA cenobite religious) (STV 1.0 0.9091)) +(: cnet_isa_4d64db55e8 (IsA cenogenesis growth) (STV 1.0 0.9091)) +(: cnet_isa_650820e791 (IsA cenotaph memorial) (STV 1.0 0.9091)) +(: cnet_isa_7acb101aa6 (IsA censer incense_burner) (STV 1.0 0.9091)) +(: cnet_isa_8698ba3230 (IsA censer vessel) (STV 1.0 0.9091)) +(: cnet_isa_3ead2b15d8 (IsA censor official) (STV 1.0 0.9091)) +(: cnet_isa_d531d3fa58 (IsA censor person) (STV 1.0 0.9091)) +(: cnet_isa_54573b644c (IsA censoring counterintelligence) (STV 1.0 0.9091)) +(: cnet_isa_871c706262 (IsA censoring deletion) (STV 1.0 0.9091)) +(: cnet_isa_6c90d876ff (IsA censure disapprobation) (STV 1.0 0.9091)) +(: cnet_isa_275e29c32d (IsA census count) (STV 1.0 0.9091)) +(: cnet_isa_ae27f7f9b0 (IsA census_taker official) (STV 1.0 0.9091)) +(: cnet_isa_8894a3d73c (IsA cent fractional_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_7aaafedfa4 (IsA cent sri_lanka_rupee) (STV 1.0 0.9091)) +(: cnet_isa_43f737e75e (IsA centa lithuanian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_e964b4b638 (IsA centaur mythical_monster) (STV 1.0 0.9091)) +(: cnet_isa_7ec82953f2 (IsA centaurea asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7ef0bdef7a (IsA centaurium dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5b124faf5a (IsA centaury flower) (STV 1.0 0.9091)) +(: cnet_isa_fb7e6343ad (IsA centaury subshrub) (STV 1.0 0.9091)) +(: cnet_isa_9bbe26e6a3 (IsA centavo fractional_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_5262a87b6e (IsA centenarian oldster) (STV 1.0 0.9091)) +(: cnet_isa_301fac3d97 (IsA centennial anniversary) (STV 1.0 0.9091)) +(: cnet_isa_9b13f70e24 (IsA center lineman) (STV 1.0 0.9091)) +(: cnet_isa_0055313a92 (IsA center position) (STV 1.0 0.9091)) +(: cnet_isa_58f5065a04 (IsA center building) (STV 1.0 0.9091)) +(: cnet_isa_ef10f89fe9 (IsA center basketball_player) (STV 1.0 0.9091)) +(: cnet_isa_69556b0857 (IsA center neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_b82b8fc5b1 (IsA center object) (STV 1.0 0.9091)) +(: cnet_isa_84bc0ee774 (IsA center sweet) (STV 1.0 0.9091)) +(: cnet_isa_e220c31726 (IsA center class) (STV 1.0 0.9091)) +(: cnet_isa_2593f71aee (IsA center hockey_player) (STV 1.0 0.9091)) +(: cnet_isa_9e80f1330d (IsA center area) (STV 1.0 0.9091)) +(: cnet_isa_2c64507576 (IsA center place) (STV 1.0 0.9091)) +(: cnet_isa_f1286bfdc5 (IsA center point) (STV 1.0 0.9091)) +(: cnet_isa_5febbfc5e8 (IsA center formation) (STV 1.0 0.9091)) +(: cnet_isa_c76d76d289 (IsA center_bit bit) (STV 1.0 0.9091)) +(: cnet_isa_72fcf142eb (IsA center_field position) (STV 1.0 0.9091)) +(: cnet_isa_9f89a45e78 (IsA center_field tract) (STV 1.0 0.9091)) +(: cnet_isa_0b571bb397 (IsA center_fielder outfielder) (STV 1.0 0.9091)) +(: cnet_isa_be368be04b (IsA center_for_disease_control_and_prevention agency) (STV 1.0 0.9091)) +(: cnet_isa_ee3558ff27 (IsA center_of_buoyancy center_of_mass) (STV 1.0 0.9091)) +(: cnet_isa_8dccc91287 (IsA center_of_curvature center) (STV 1.0 0.9091)) +(: cnet_isa_67241d4a5f (IsA center_of_flotation center_of_gravity) (STV 1.0 0.9091)) +(: cnet_isa_8b94ab4d6e (IsA center_of_gravity center) (STV 1.0 0.9091)) +(: cnet_isa_90a498a460 (IsA center_of_mass center) (STV 1.0 0.9091)) +(: cnet_isa_965cbd488f (IsA center_punch punch) (STV 1.0 0.9091)) +(: cnet_isa_7d2a8cb751 (IsA center_spread spread) (STV 1.0 0.9091)) +(: cnet_isa_35e3487e8e (IsA center_stage center) (STV 1.0 0.9091)) +(: cnet_isa_fb62576bfc (IsA center_stage high_status) (STV 1.0 0.9091)) +(: cnet_isa_c5cf46d946 (IsA centerboard fin_keel) (STV 1.0 0.9091)) +(: cnet_isa_6ea129a2da (IsA centerfold foldout) (STV 1.0 0.9091)) +(: cnet_isa_63c937cc5c (IsA centerfold spread) (STV 1.0 0.9091)) +(: cnet_isa_56cdc19fa9 (IsA centering pass) (STV 1.0 0.9091)) +(: cnet_isa_3a56d8cc08 (IsA centerline line) (STV 1.0 0.9091)) +(: cnet_isa_bf5a622241 (IsA centerpiece decoration) (STV 1.0 0.9091)) +(: cnet_isa_609a29f235 (IsA centerpiece feature) (STV 1.0 0.9091)) +(: cnet_isa_3b69272ed2 (IsA centesimo fractional_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_11011a5bc8 (IsA centesis puncture) (STV 1.0 0.9091)) +(: cnet_isa_d0f8ccfaf6 (IsA centigrade_thermometer thermometer) (STV 1.0 0.9091)) +(: cnet_isa_391cacefba (IsA centiliter metric_capacity_unit) (STV 1.0 0.9091)) +(: cnet_isa_81412b6127 (IsA centime fractional_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_9037f36259 (IsA centimeter metric_linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_71ffb5f91d (IsA centimo fractional_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_a52045d81f (IsA centipede arthropod) (STV 1.0 0.9091)) +(: cnet_isa_ae6576f648 (IsA centner metric_weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_131c45e06f (IsA central workplace) (STV 1.0 0.9091)) +(: cnet_isa_07db911d13 (IsA central_african_republic_franc franc) (STV 1.0 0.9091)) +(: cnet_isa_fb102ec88f (IsA central_america collection) (STV 1.0 0.9091)) +(: cnet_isa_da8c88aeb9 (IsA central_american north_american) (STV 1.0 0.9091)) +(: cnet_isa_843d7c4a27 (IsA central_american_country north_american_country) (STV 1.0 0.9091)) +(: cnet_isa_49d04ff0ce (IsA central_american_strap_fern strap_fern) (STV 1.0 0.9091)) +(: cnet_isa_1832dbdd06 (IsA central_artery_of_retina artery) (STV 1.0 0.9091)) +(: cnet_isa_57a3602d17 (IsA central_bank financial_institution) (STV 1.0 0.9091)) +(: cnet_isa_557c72abae (IsA central_chimpanzee chimpanzee) (STV 1.0 0.9091)) +(: cnet_isa_1f7623bf8d (IsA central_dravidian dravidian) (STV 1.0 0.9091)) +(: cnet_isa_2057c274a4 (IsA central_gyrus gyrus) (STV 1.0 0.9091)) +(: cnet_isa_2a06d4926c (IsA central_heating heating_system) (STV 1.0 0.9091)) +(: cnet_isa_b6c1cf4b3b (IsA central_intelligence_agency independent_agency) (STV 1.0 0.9091)) +(: cnet_isa_05ae2803dc (IsA central_intelligence_agency united_state_intelligence_agency) (STV 1.0 0.9091)) +(: cnet_isa_067223d1e6 (IsA central_intelligence_machinery international_intelligence_agency) (STV 1.0 0.9091)) +(: cnet_isa_2008b9a134 (IsA central_nervous_system system) (STV 1.0 0.9091)) +(: cnet_isa_0f3ba03190 (IsA central_power alliance) (STV 1.0 0.9091)) +(: cnet_isa_18ff6e9fd8 (IsA central_processing_unit electronic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_d82743e2bb (IsA central_processing_unit hardware) (STV 1.0 0.9091)) +(: cnet_isa_7f6f5e9c23 (IsA central_scotoma scotoma) (STV 1.0 0.9091)) +(: cnet_isa_3e75369270 (IsA central_time civil_time) (STV 1.0 0.9091)) +(: cnet_isa_7945eb5077 (IsA central_vein_of_retina vein) (STV 1.0 0.9091)) +(: cnet_isa_65588afd67 (IsA central_vein_of_suprarenal_gland vein) (STV 1.0 0.9091)) +(: cnet_isa_b9ddcd3704 (IsA central_vein_of_liver vein) (STV 1.0 0.9091)) +(: cnet_isa_68d8e332c7 (IsA central_vision sight) (STV 1.0 0.9091)) +(: cnet_isa_9fa2c76d8c (IsA centralism policy) (STV 1.0 0.9091)) +(: cnet_isa_906c0c1114 (IsA centrality position) (STV 1.0 0.9091)) +(: cnet_isa_9bce2bdf35 (IsA centralization consolidation) (STV 1.0 0.9091)) +(: cnet_isa_215dab7481 (IsA centralization gather) (STV 1.0 0.9091)) +(: cnet_isa_544194e808 (IsA centranthus asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_496f6147c3 (IsA centrarchidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_3e7160e775 (IsA centrex central) (STV 1.0 0.9091)) +(: cnet_isa_3931f0c4b3 (IsA centrifugal_force force) (STV 1.0 0.9091)) +(: cnet_isa_379c717e8e (IsA centrifugal_pump pump) (STV 1.0 0.9091)) +(: cnet_isa_bcc9dfa5cc (IsA centrifugation natural_process) (STV 1.0 0.9091)) +(: cnet_isa_0f6fc62262 (IsA centrifuge apparatus) (STV 1.0 0.9091)) +(: cnet_isa_f5ff44ac96 (IsA centriole organelle) (STV 1.0 0.9091)) +(: cnet_isa_26b9f076aa (IsA centripetal_acceleration acceleration) (STV 1.0 0.9091)) +(: cnet_isa_9b52dc3f77 (IsA centripetal_force force) (STV 1.0 0.9091)) +(: cnet_isa_5fc5dff2f9 (IsA centriscidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_678f2ec05d (IsA centrism political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_fd88069701 (IsA centrist adult) (STV 1.0 0.9091)) +(: cnet_isa_63cf82391e (IsA centrocercus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_4a41a0ce9f (IsA centroid center_of_mass) (STV 1.0 0.9091)) +(: cnet_isa_a08db4110c (IsA centrolobium rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7f87fa5d7e (IsA centromere structure) (STV 1.0 0.9091)) +(: cnet_isa_96023be3ec (IsA centropomidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_5fa7c4558e (IsA centropomus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_f8fac33e12 (IsA centropristis fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_7af55587a9 (IsA centropus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_9c8a20402d (IsA centrosema rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1fc085eb9c (IsA centrosome cytoplasm) (STV 1.0 0.9091)) +(: cnet_isa_f09c120a8e (IsA centrospermae taxonomic_group) (STV 1.0 0.9091)) +(: cnet_isa_ef8f491694 (IsA centrum bone) (STV 1.0 0.9091)) +(: cnet_isa_b8ac48541b (IsA centunculus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f974d13c6f (IsA centurion warrior) (STV 1.0 0.9091)) +(: cnet_isa_e0902353dd (IsA century time_period) (STV 1.0 0.9091)) +(: cnet_isa_830cdd9107 (IsA cephalanthera monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_720822d169 (IsA cephalhematoma hemorrhagic_cyst) (STV 1.0 0.9091)) +(: cnet_isa_4fe5d059fe (IsA cephalic_index ratio) (STV 1.0 0.9091)) +(: cnet_isa_dd63548596 (IsA cephalic_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_8b23fb70ff (IsA cephalobidae worm_family) (STV 1.0 0.9091)) +(: cnet_isa_0a66f52d72 (IsA cephalochordata phylum) (STV 1.0 0.9091)) +(: cnet_isa_08d331378f (IsA cephalochordate chordate) (STV 1.0 0.9091)) +(: cnet_isa_9081e7a0c5 (IsA cephalometry measurement) (STV 1.0 0.9091)) +(: cnet_isa_b23aaf7a61 (IsA cephalopod mollusk) (STV 1.0 0.9091)) +(: cnet_isa_d6beb66003 (IsA cephalopoda class) (STV 1.0 0.9091)) +(: cnet_isa_81e0b8d00b (IsA cephalopterus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_0be3281ebd (IsA cephaloridine antibiotic) (STV 1.0 0.9091)) +(: cnet_isa_40742b8b01 (IsA cephalotaceae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_77abdfb790 (IsA cephalotaxaceae gymnosperm_family) (STV 1.0 0.9091)) +(: cnet_isa_2b16420448 (IsA cephalotaxus gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_35a7e965f8 (IsA cephalotus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_69bd74b7eb (IsA cepphus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_5c4209a46f (IsA cerambycidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_33f1a68ca2 (IsA ceramic instrumentality) (STV 1.0 0.9091)) +(: cnet_isa_6262ea58da (IsA ceramic_ware utensil) (STV 1.0 0.9091)) +(: cnet_isa_6abebfb0ca (IsA ceramic art) (STV 1.0 0.9091)) +(: cnet_isa_3905b7d80a (IsA cerapteryx arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_f64a8771ae (IsA cera gill) (STV 1.0 0.9091)) +(: cnet_isa_18db846ffa (IsA cerastium caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8c02e8cee5 (IsA cerate ointment) (STV 1.0 0.9091)) +(: cnet_isa_003b269e37 (IsA ceratitis arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_fdbdb78de2 (IsA ceratodontidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_f797b16150 (IsA ceratodus lungfish) (STV 1.0 0.9091)) +(: cnet_isa_b7bb0e4a9c (IsA ceratonia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7ce06a9189 (IsA ceratopetalum rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_07332ea624 (IsA ceratophyllaceae magnoliid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_cf11a76c27 (IsA ceratophyllum magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_906b549cf5 (IsA ceratopogon arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_2d5847db7a (IsA ceratopogonidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_97a8fd2d66 (IsA ceratopsia animal_order) (STV 1.0 0.9091)) +(: cnet_isa_b2795406c0 (IsA ceratopsian ornithischian) (STV 1.0 0.9091)) +(: cnet_isa_a8430f4291 (IsA ceratopsidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_b2889a49dd (IsA ceratopteris fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_7fa92c9025 (IsA ceratosaur theropod) (STV 1.0 0.9091)) +(: cnet_isa_918165dcb5 (IsA ceratostomataceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_a3575c994c (IsA ceratostomella fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_dce52e009d (IsA ceratotherium mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_ba847e4137 (IsA ceratozamia cycad) (STV 1.0 0.9091)) +(: cnet_isa_058e7fb3c9 (IsA cercaria larva) (STV 1.0 0.9091)) +(: cnet_isa_274bd93435 (IsA cercidiphyllaceae magnoliid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_a0d9f0b083 (IsA cercidiphyllum magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_21c16bba19 (IsA cercidium rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ab01c7922b (IsA cercis rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ccc97105bd (IsA cercocebus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_8f4a6c407d (IsA cercopidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_2a6804c327 (IsA cercopithecidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_ee9b1cadf1 (IsA cercopithecus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_9a96cd53d1 (IsA cercospora fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_ea923e94db (IsA cercosporella fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_c56e41b336 (IsA cere beak) (STV 1.0 0.9091)) +(: cnet_isa_583c16ebb1 (IsA cereal typically) (STV 1.0 0.9091)) +(: cnet_isa_f7ee12caa9 (IsA cereal breakfast_food) (STV 1.0 0.9091)) +(: cnet_isa_3f69c30822 (IsA cereal grass) (STV 1.0 0.9091)) +(: cnet_isa_d1e9e7a257 (IsA cereal_bowl bowl) (STV 1.0 0.9091)) +(: cnet_isa_d3b5b5a9b3 (IsA cereal_box box) (STV 1.0 0.9091)) +(: cnet_isa_ff92653ab5 (IsA cereal_oat oat) (STV 1.0 0.9091)) +(: cnet_isa_0d35d983fa (IsA cerebellar_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_e9cca927e0 (IsA cerebellar_hemisphere neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_0a10f02fbb (IsA cerebellar_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_9c1e958af4 (IsA cerebellum neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_4687b4263e (IsA cerebral_aneurysm aneurysm) (STV 1.0 0.9091)) +(: cnet_isa_e098928ca2 (IsA cerebral_aqueduct duct) (STV 1.0 0.9091)) +(: cnet_isa_8a0db49598 (IsA cerebral_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_88c0e9646e (IsA cerebral_cortex neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_995d151125 (IsA cerebral_edema edema) (STV 1.0 0.9091)) +(: cnet_isa_081959aff7 (IsA cerebral_hemorrhage bleeding) (STV 1.0 0.9091)) +(: cnet_isa_b7dcdc1099 (IsA cerebral_palsy brain_disorder) (STV 1.0 0.9091)) +(: cnet_isa_3378d9346f (IsA cerebral_thrombosis thrombosis) (STV 1.0 0.9091)) +(: cnet_isa_03cb413e56 (IsA cerebral_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_04890b6ea3 (IsA cerebrospinal_meningitis meningitis) (STV 1.0 0.9091)) +(: cnet_isa_075e33962c (IsA cerebrum neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_2c2d351f64 (IsA cerecloth fabric) (STV 1.0 0.9091)) +(: cnet_isa_ef61c4f555 (IsA ceremoniousness formality) (STV 1.0 0.9091)) +(: cnet_isa_de25b70402 (IsA ceremony activity) (STV 1.0 0.9091)) +(: cnet_isa_8d352faad5 (IsA ceremony affair) (STV 1.0 0.9091)) +(: cnet_isa_c69433ad5b (IsA ceresin wax) (STV 1.0 0.9091)) +(: cnet_isa_eec26136c7 (IsA cereus caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6325df4f9b (IsA ceriman edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_6f53246cd2 (IsA ceriman monstera) (STV 1.0 0.9091)) +(: cnet_isa_fb8e3057bd (IsA cerise red) (STV 1.0 0.9091)) +(: cnet_isa_cf7b36ec76 (IsA cerium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_2976e5d33d (IsA cero spanish_mackerel) (STV 1.0 0.9091)) +(: cnet_isa_b8d7d683e8 (IsA cerotic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_65644df02b (IsA ceroxylon monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f5b5f560ec (IsA cert certainty) (STV 1.0 0.9091)) +(: cnet_isa_547e06f56e (IsA certainty quality) (STV 1.0 0.9091)) +(: cnet_isa_f505c4aee4 (IsA certainty cognitive_state) (STV 1.0 0.9091)) +(: cnet_isa_3550a2a37f (IsA certhia bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_da45f87f62 (IsA certhiidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_d1f56e7078 (IsA certificate document) (STV 1.0 0.9091)) +(: cnet_isa_a658b0e0f9 (IsA certificate_of_deposit debt_instrument) (STV 1.0 0.9091)) +(: cnet_isa_def4e2f7fd (IsA certificate_of_incorporation certificate) (STV 1.0 0.9091)) +(: cnet_isa_0909390b8d (IsA certification authorization) (STV 1.0 0.9091)) +(: cnet_isa_1fa01ae42e (IsA certified_check check) (STV 1.0 0.9091)) +(: cnet_isa_b1b41d3989 (IsA certified_milk milk) (STV 1.0 0.9091)) +(: cnet_isa_cb7fc6adcf (IsA certified_public_accountant accountant) (STV 1.0 0.9091)) +(: cnet_isa_58ca975b39 (IsA certiorari writ) (STV 1.0 0.9091)) +(: cnet_isa_0f9c886a70 (IsA certitude certainty) (STV 1.0 0.9091)) +(: cnet_isa_928283c66c (IsA cerulean_blue pigment) (STV 1.0 0.9091)) +(: cnet_isa_bde3142c26 (IsA cerumen wax) (STV 1.0 0.9091)) +(: cnet_isa_f715509b10 (IsA cerussite mineral) (STV 1.0 0.9091)) +(: cnet_isa_a6a659a16c (IsA cervical_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_ca6f4990a9 (IsA cervical_canal duct) (STV 1.0 0.9091)) +(: cnet_isa_32381128c3 (IsA cervical_cap contraceptive) (STV 1.0 0.9091)) +(: cnet_isa_7d15ffcb09 (IsA cervical_disc_syndrome syndrome) (STV 1.0 0.9091)) +(: cnet_isa_c068adf1b7 (IsA cervical_gland exocrine_gland) (STV 1.0 0.9091)) +(: cnet_isa_98eb6b8179 (IsA cervical_nerve spinal_nerve) (STV 1.0 0.9091)) +(: cnet_isa_832a57b71f (IsA cervical_plexus nerve_plexus) (STV 1.0 0.9091)) +(: cnet_isa_c5a1e0d907 (IsA cervical_smear smear) (STV 1.0 0.9091)) +(: cnet_isa_2792c08b91 (IsA cervical_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_01d8fc991a (IsA cervical_vertebra vertebra) (STV 1.0 0.9091)) +(: cnet_isa_db89be50bd (IsA cervicitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_b58efbba5e (IsA cervicofacial_actinomycosis actinomycosis) (STV 1.0 0.9091)) +(: cnet_isa_a33ce8e573 (IsA cervidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_04e551dd4b (IsA cervix orifice) (STV 1.0 0.9091)) +(: cnet_isa_fe51cf5e78 (IsA cervus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_c6aee9e350 (IsA ceryle bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_9029ed48b0 (IsA cesarean_delivery delivery) (STV 1.0 0.9091)) +(: cnet_isa_2874022c2a (IsA cesium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_4ebc0e056e (IsA cesium_137 cesium) (STV 1.0 0.9091)) +(: cnet_isa_45cebc1046 (IsA cessation stop) (STV 1.0 0.9091)) +(: cnet_isa_08bce491a5 (IsA cession relinquishment) (STV 1.0 0.9091)) +(: cnet_isa_63ccfed457 (IsA cesspool cistern) (STV 1.0 0.9091)) +(: cnet_isa_98372783dc (IsA cestida animal_order) (STV 1.0 0.9091)) +(: cnet_isa_2404bf6747 (IsA cestidae ctenophore_family) (STV 1.0 0.9091)) +(: cnet_isa_421d54f874 (IsA cestoda class) (STV 1.0 0.9091)) +(: cnet_isa_901a73c2a1 (IsA cestrum asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_16a904447a (IsA cestum ctenophore_genus) (STV 1.0 0.9091)) +(: cnet_isa_b141133585 (IsA cetacea animal_order) (STV 1.0 0.9091)) +(: cnet_isa_54805660a6 (IsA cetacean aquatic_mammal) (STV 1.0 0.9091)) +(: cnet_isa_eb1dd8b96d (IsA ceterach fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_be48c79e26 (IsA cetonia arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_7bbad28d2b (IsA cetoniidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_748c0aa884 (IsA cetorhinidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_6eff58e0e4 (IsA cetorhinus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_75b8872fc4 (IsA cetraria fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_0ff1b8e0b4 (IsA cetrimide cationic_detergent) (STV 1.0 0.9091)) +(: cnet_isa_0d81b4bd4a (IsA cetrimide disinfectant) (STV 1.0 0.9091)) +(: cnet_isa_4f8fc8c8dc (IsA cewa african) (STV 1.0 0.9091)) +(: cnet_isa_305194dd4e (IsA ceylon_bowstring_hemp sansevieria) (STV 1.0 0.9091)) +(: cnet_isa_1418b3ce77 (IsA ceylonite spinel) (STV 1.0 0.9091)) +(: cnet_isa_737febbfc1 (IsA cgs metric_system) (STV 1.0 0.9091)) +(: cnet_isa_dc988eae8c (IsA ch_in_dynasty dynasty) (STV 1.0 0.9091)) +(: cnet_isa_12959cf3de (IsA cha_cha ballroom_dancing) (STV 1.0 0.9091)) +(: cnet_isa_1634141076 (IsA chabad hasidism) (STV 1.0 0.9091)) +(: cnet_isa_f299a5aac2 (IsA chabazite zeolite) (STV 1.0 0.9091)) +(: cnet_isa_78e1385b05 (IsA chablis burgundy) (STV 1.0 0.9091)) +(: cnet_isa_a80fef068d (IsA chablis white_wine) (STV 1.0 0.9091)) +(: cnet_isa_efa4ac4d44 (IsA chachalaca gallinaceous_bird) (STV 1.0 0.9091)) +(: cnet_isa_901b447784 (IsA chachka collectible) (STV 1.0 0.9091)) +(: cnet_isa_4575376ab5 (IsA chachka girl) (STV 1.0 0.9091)) +(: cnet_isa_663cf30dd9 (IsA chacma baboon) (STV 1.0 0.9091)) +(: cnet_isa_bacc3517fd (IsA chad country) (STV 1.0 0.9091)) +(: cnet_isa_448f607729 (IsA chad afroasiatic) (STV 1.0 0.9091)) +(: cnet_isa_10dd198759 (IsA chad paper) (STV 1.0 0.9091)) +(: cnet_isa_e7a81ab38c (IsA chadian african) (STV 1.0 0.9091)) +(: cnet_isa_a8a79ddc0a (IsA chadian_franc franc) (STV 1.0 0.9091)) +(: cnet_isa_36c54d4968 (IsA chador head_covering) (STV 1.0 0.9091)) +(: cnet_isa_37fc599f52 (IsA chaenactis herb) (STV 1.0 0.9091)) +(: cnet_isa_2080f8239c (IsA chaenomele rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_73a8c3d764 (IsA chaenopsis fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_ece4ae75df (IsA chaeta seta) (STV 1.0 0.9091)) +(: cnet_isa_539f02784c (IsA chaetodipterus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_c8542aaae6 (IsA chaetodon butterfly_fish) (STV 1.0 0.9091)) +(: cnet_isa_518e880455 (IsA chaetodontidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_6b75753b41 (IsA chaetognatha phylum) (STV 1.0 0.9091)) +(: cnet_isa_ef724ef4ae (IsA chafe tenderness) (STV 1.0 0.9091)) +(: cnet_isa_ca553d9bad (IsA chafeweed cudweed) (STV 1.0 0.9091)) +(: cnet_isa_789f742f8c (IsA chaff foil) (STV 1.0 0.9091)) +(: cnet_isa_267f28ff42 (IsA chaff plant_material) (STV 1.0 0.9091)) +(: cnet_isa_2e7a81b04d (IsA chaffinch finch) (STV 1.0 0.9091)) +(: cnet_isa_e06c7547e8 (IsA chaffweed subshrub) (STV 1.0 0.9091)) +(: cnet_isa_913e9920c2 (IsA chafing tenderness) (STV 1.0 0.9091)) +(: cnet_isa_32a25d84ad (IsA chafing_dish cooking_utensil) (STV 1.0 0.9091)) +(: cnet_isa_90900c66c0 (IsA chafing_gear covering) (STV 1.0 0.9091)) +(: cnet_isa_cf83327791 (IsA chagatai turki) (STV 1.0 0.9091)) +(: cnet_isa_a7e06ed6fb (IsA chagrin embarrassment) (STV 1.0 0.9091)) +(: cnet_isa_3a24ded120 (IsA chain ligament) (STV 1.0 0.9091)) +(: cnet_isa_8df39b43d3 (IsA chain necklace) (STV 1.0 0.9091)) +(: cnet_isa_668eb562ce (IsA chain restraint) (STV 1.0 0.9091)) +(: cnet_isa_db2b428356 (IsA chain unit) (STV 1.0 0.9091)) +(: cnet_isa_0707974afc (IsA chain business) (STV 1.0 0.9091)) +(: cnet_isa_5351addc0f (IsA chain sery) (STV 1.0 0.9091)) +(: cnet_isa_9e12cab90d (IsA chain linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_d1ccc9dc5b (IsA chain_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_edb29bb03e (IsA chain_gang gang) (STV 1.0 0.9091)) +(: cnet_isa_a294d9b8a0 (IsA chain_letter letter) (STV 1.0 0.9091)) +(: cnet_isa_8a5c8acdf1 (IsA chain_mail body_armor) (STV 1.0 0.9091)) +(: cnet_isa_17b2914e2d (IsA chain_pickerel pickerel) (STV 1.0 0.9091)) +(: cnet_isa_bdbaaafc3f (IsA chain_printer impact_printer) (STV 1.0 0.9091)) +(: cnet_isa_0fac8828b3 (IsA chain_reaction chemical_reaction) (STV 1.0 0.9091)) +(: cnet_isa_54e7b2d91f (IsA chain_reaction nuclear_reaction) (STV 1.0 0.9091)) +(: cnet_isa_2d0f1a5457 (IsA chain_saw power_saw) (STV 1.0 0.9091)) +(: cnet_isa_729ab8fd01 (IsA chain_smoker smoker) (STV 1.0 0.9091)) +(: cnet_isa_e47433b083 (IsA chain_stitch crochet_stitch) (STV 1.0 0.9091)) +(: cnet_isa_b052a3cce5 (IsA chain_stitch embroidery_stitch) (STV 1.0 0.9091)) +(: cnet_isa_fb7b7b7b13 (IsA chain_store shop) (STV 1.0 0.9091)) +(: cnet_isa_46907f97cc (IsA chain_tong pipe_wrench) (STV 1.0 0.9091)) +(: cnet_isa_c2df32cc36 (IsA chain_wrench chain_tong) (STV 1.0 0.9091)) +(: cnet_isa_2288f8ca0e (IsA chainlink_fence fence) (STV 1.0 0.9091)) +(: cnet_isa_49762b0e4f (IsA chair seat) (STV 1.0 0.9091)) +(: cnet_isa_a04ba1d2ac (IsA chair_by_fire good_place_to_read) (STV 1.0 0.9091)) +(: cnet_isa_483592f21d (IsA chair_of_state chair) (STV 1.0 0.9091)) +(: cnet_isa_9c941969ee (IsA chairlift ski_tow) (STV 1.0 0.9091)) +(: cnet_isa_0d92f4dc66 (IsA chairman chair) (STV 1.0 0.9091)) +(: cnet_isa_67173f373f (IsA chairman_of_board corporate_executive) (STV 1.0 0.9091)) +(: cnet_isa_bed69e6ded (IsA chairmanship position) (STV 1.0 0.9091)) +(: cnet_isa_cc75deb668 (IsA chaise carriage) (STV 1.0 0.9091)) +(: cnet_isa_c0270b4a48 (IsA chaise_longue chair) (STV 1.0 0.9091)) +(: cnet_isa_7226e92135 (IsA chait hindu_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_552cf2b086 (IsA chaja crested_screamer) (STV 1.0 0.9091)) +(: cnet_isa_7b01688d18 (IsA chalaza animal_tissue) (STV 1.0 0.9091)) +(: cnet_isa_b0d27610e6 (IsA chalaza plant_part) (STV 1.0 0.9091)) +(: cnet_isa_1a5d158cc5 (IsA chalazion sebaceous_cyst) (STV 1.0 0.9091)) +(: cnet_isa_d6060891b7 (IsA chalcedony quartz) (STV 1.0 0.9091)) +(: cnet_isa_dc5fd0e70b (IsA chalcedony transparent_gem) (STV 1.0 0.9091)) +(: cnet_isa_fae6f8ad20 (IsA chalcid_fly hymenopterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_b48c9ad407 (IsA chalcididae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_1a7d7b8fe5 (IsA chalcis arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_fb34fb73ca (IsA chalcis_fly chalcid_fly) (STV 1.0 0.9091)) +(: cnet_isa_f1293d0224 (IsA chalcocite mineral) (STV 1.0 0.9091)) +(: cnet_isa_f7e0e5372a (IsA chalcopyrite mineral) (STV 1.0 0.9091)) +(: cnet_isa_2219bdf619 (IsA chalcostigma bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_48aaff08d9 (IsA chaldaean semite) (STV 1.0 0.9091)) +(: cnet_isa_d5ae378b8d (IsA chaldee occultist) (STV 1.0 0.9091)) +(: cnet_isa_99fa5ac252 (IsA chaldron british_capacity_unit) (STV 1.0 0.9091)) +(: cnet_isa_ffd5113426 (IsA chalet house) (STV 1.0 0.9091)) +(: cnet_isa_3bb765465f (IsA chalice cup) (STV 1.0 0.9091)) +(: cnet_isa_d75fa1b6c6 (IsA chalice_vine shrub) (STV 1.0 0.9091)) +(: cnet_isa_212a2ca39e (IsA chalk writing_implement) (STV 1.0 0.9091)) +(: cnet_isa_2ca7982591 (IsA chalk white) (STV 1.0 0.9091)) +(: cnet_isa_557a8771a8 (IsA chalk calcite) (STV 1.0 0.9091)) +(: cnet_isa_57a741baa2 (IsA chalk_dust dust) (STV 1.0 0.9091)) +(: cnet_isa_23fd29c9e3 (IsA chalk_line string) (STV 1.0 0.9091)) +(: cnet_isa_90aeb13d29 (IsA chalk_talk talk) (STV 1.0 0.9091)) +(: cnet_isa_5dc39e018a (IsA chalkboard erasable_surface) (STV 1.0 0.9091)) +(: cnet_isa_5ecb71e1af (IsA chalkpit pit) (STV 1.0 0.9091)) +(: cnet_isa_aa04cbf783 (IsA challah bread) (STV 1.0 0.9091)) +(: cnet_isa_d84ae51812 (IsA challenge demand) (STV 1.0 0.9091)) +(: cnet_isa_3dd703c11c (IsA challenge objection) (STV 1.0 0.9091)) +(: cnet_isa_3b16dc1568 (IsA challenge questioning) (STV 1.0 0.9091)) +(: cnet_isa_f1a5bdfcfc (IsA challenge speech_act) (STV 1.0 0.9091)) +(: cnet_isa_225f61eeab (IsA challenge situation) (STV 1.0 0.9091)) +(: cnet_isa_65cb054b7d (IsA challis fabric) (STV 1.0 0.9091)) +(: cnet_isa_7e3a8b677d (IsA chamaea bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_4d371381da (IsA chamaecrista rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a5f1366982 (IsA chamaecyparis gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_f45a9ae475 (IsA chamaecytisus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d80b5bdb8c (IsA chamaedaphne dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9dda8246ba (IsA chamaeleo reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_b02e790bec (IsA chamaeleontidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_982828f6e5 (IsA chamaemelum asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f8979e94c6 (IsA chamber enclosure) (STV 1.0 0.9091)) +(: cnet_isa_d840d33503 (IsA chamber room) (STV 1.0 0.9091)) +(: cnet_isa_c7a7928c88 (IsA chamber cavity) (STV 1.0 0.9091)) +(: cnet_isa_494993f979 (IsA chamber assembly) (STV 1.0 0.9091)) +(: cnet_isa_ab5438a78a (IsA chamber_music classical_music) (STV 1.0 0.9091)) +(: cnet_isa_2d855bc5cd (IsA chamber_of_commerce association) (STV 1.0 0.9091)) +(: cnet_isa_edbd370c76 (IsA chamber_orchestra orchestra) (STV 1.0 0.9091)) +(: cnet_isa_97d42fbcae (IsA chambered_nautilus cephalopod) (STV 1.0 0.9091)) +(: cnet_isa_1eff93ffda (IsA chamberlain steward) (STV 1.0 0.9091)) +(: cnet_isa_1844386c3e (IsA chamberlain treasurer) (STV 1.0 0.9091)) +(: cnet_isa_e2b9e2841d (IsA chambermaid maid) (STV 1.0 0.9091)) +(: cnet_isa_450221ccdf (IsA chamberpot receptacle) (STV 1.0 0.9091)) +(: cnet_isa_190fa899a1 (IsA chambray fabric) (STV 1.0 0.9091)) +(: cnet_isa_2762aa6236 (IsA chameleon lizard) (STV 1.0 0.9091)) +(: cnet_isa_ada090c14c (IsA chameleon person) (STV 1.0 0.9091)) +(: cnet_isa_70652ceb0e (IsA chameleon_tree_frog tree_toad) (STV 1.0 0.9091)) +(: cnet_isa_940ffe82ee (IsA chamfer_bit bit) (STV 1.0 0.9091)) +(: cnet_isa_a9da71ecd8 (IsA chamfer_plane plane) (STV 1.0 0.9091)) +(: cnet_isa_db9093d4ef (IsA chamois goat_antelope) (STV 1.0 0.9091)) +(: cnet_isa_597b3032ba (IsA chamois leather) (STV 1.0 0.9091)) +(: cnet_isa_00973b649b (IsA chamois_cloth piece_of_cloth) (STV 1.0 0.9091)) +(: cnet_isa_751a20e187 (IsA chamois_cress herb) (STV 1.0 0.9091)) +(: cnet_isa_caf4c7ab51 (IsA chamomile herb) (STV 1.0 0.9091)) +(: cnet_isa_6528161802 (IsA chamosite iron_ore) (STV 1.0 0.9091)) +(: cnet_isa_4bf4b8a77f (IsA champage light_sparkling_wine) (STV 1.0 0.9091)) +(: cnet_isa_d82ee028ab (IsA champagne alcoholic_beverage) (STV 1.0 0.9608)) +(: cnet_isa_3b0bbf9f81 (IsA champagne alcoholic_drink) (STV 1.0 0.9091)) +(: cnet_isa_1a369feca3 (IsA champagne french_sparkling_wine) (STV 1.0 0.9524)) +(: cnet_isa_68010ef642 (IsA champagne region_of_france) (STV 1.0 0.9091)) +(: cnet_isa_b6a38b3c3e (IsA champagne sparkling_wine) (STV 1.0 0.9339)) +(: cnet_isa_eedacecfe5 (IsA champagne_cup cup) (STV 1.0 0.9091)) +(: cnet_isa_83b1be5ace (IsA champerty wrongdoing) (STV 1.0 0.9091)) +(: cnet_isa_951af21278 (IsA champion defender) (STV 1.0 0.9091)) +(: cnet_isa_191a3727ac (IsA champion rival) (STV 1.0 0.9091)) +(: cnet_isa_16efa8e138 (IsA championship contest) (STV 1.0 0.9091)) +(: cnet_isa_5a6561d9ba (IsA championship high_status) (STV 1.0 0.9091)) +(: cnet_isa_d973f9243d (IsA chanar shrub) (STV 1.0 0.9091)) +(: cnet_isa_5e8c75b590 (IsA chance risk) (STV 1.0 0.9091)) +(: cnet_isa_5edd2e325a (IsA chance_medley manslaughter) (STV 1.0 0.9091)) +(: cnet_isa_5ce3a6da77 (IsA chancel area) (STV 1.0 0.9091)) +(: cnet_isa_b025060dd5 (IsA chancellery government_building) (STV 1.0 0.9091)) +(: cnet_isa_a1878b899e (IsA chancellor cabinet_minister) (STV 1.0 0.9091)) +(: cnet_isa_b2d7dff59b (IsA chancellor head_of_state) (STV 1.0 0.9091)) +(: cnet_isa_a5c2bc727a (IsA chancellor principal) (STV 1.0 0.9091)) +(: cnet_isa_0660e87f95 (IsA chancellorship position) (STV 1.0 0.9091)) +(: cnet_isa_3ec61422c8 (IsA chancery archive) (STV 1.0 0.9091)) +(: cnet_isa_9e60d83b88 (IsA chancery court) (STV 1.0 0.9091)) +(: cnet_isa_bb6a8134aa (IsA chancre sore) (STV 1.0 0.9091)) +(: cnet_isa_4cf9823653 (IsA chancroid ulcer) (STV 1.0 0.9091)) +(: cnet_isa_07a7f82d15 (IsA chandelier lighting_fixture) (STV 1.0 0.9091)) +(: cnet_isa_fd222c6df7 (IsA chandelle flight_maneuver) (STV 1.0 0.9091)) +(: cnet_isa_381624e131 (IsA chandler maker) (STV 1.0 0.9091)) +(: cnet_isa_705422eafa (IsA chandler retailer) (STV 1.0 0.9091)) +(: cnet_isa_6da1c7284e (IsA chandlery candle) (STV 1.0 0.9091)) +(: cnet_isa_c42511e2d8 (IsA chandlery storeroom) (STV 1.0 0.9091)) +(: cnet_isa_e99efd45d1 (IsA chanfron armor_plate) (STV 1.0 0.9091)) +(: cnet_isa_47caace45b (IsA change action) (STV 1.0 0.9091)) +(: cnet_isa_3790dc6f38 (IsA change clothing) (STV 1.0 0.9091)) +(: cnet_isa_20c1b656d0 (IsA change thing) (STV 1.0 0.9091)) +(: cnet_isa_fcfbfe820d (IsA change happening) (STV 1.0 0.9091)) +(: cnet_isa_3c675ab981 (IsA change relation) (STV 1.0 0.9091)) +(: cnet_isa_d303a58faf (IsA change consequence) (STV 1.0 0.9091)) +(: cnet_isa_d4e66e75ad (IsA change cash) (STV 1.0 0.9091)) +(: cnet_isa_3fdec6893c (IsA change coin) (STV 1.0 0.9091)) +(: cnet_isa_429f53ac87 (IsA change_of_color change_of_state) (STV 1.0 0.9091)) +(: cnet_isa_b4e2087f0b (IsA change_of_course change_of_direction) (STV 1.0 0.9091)) +(: cnet_isa_a0abad4ad5 (IsA change_of_direction change) (STV 1.0 0.9091)) +(: cnet_isa_9d123ab863 (IsA change_of_integrity change) (STV 1.0 0.9091)) +(: cnet_isa_a67244267b (IsA change_of_location movement) (STV 1.0 0.9091)) +(: cnet_isa_a531aef6d5 (IsA change_of_magnitude change) (STV 1.0 0.9091)) +(: cnet_isa_aedc6c51b8 (IsA change_of_shape change) (STV 1.0 0.9091)) +(: cnet_isa_d6bebc7516 (IsA change_of_state change) (STV 1.0 0.9091)) +(: cnet_isa_cd44c4032a (IsA change_ringing bell_ringing) (STV 1.0 0.9091)) +(: cnet_isa_78cc67561f (IsA change_up pitch) (STV 1.0 0.9091)) +(: cnet_isa_c1a109efb4 (IsA changeableness quality) (STV 1.0 0.9091)) +(: cnet_isa_cfb78c4401 (IsA changelessness lastingness) (STV 1.0 0.9091)) +(: cnet_isa_7655472eb5 (IsA changelessness quality) (STV 1.0 0.9091)) +(: cnet_isa_76ba0901d0 (IsA changeling child) (STV 1.0 0.9091)) +(: cnet_isa_e2af7a424c (IsA changer person) (STV 1.0 0.9091)) +(: cnet_isa_679451ee96 (IsA changing_tire hard_work) (STV 1.0 0.9091)) +(: cnet_isa_48b4e5faf3 (IsA channel passage) (STV 1.0 0.9091)) +(: cnet_isa_1162e362b4 (IsA channel television_station) (STV 1.0 0.9091)) +(: cnet_isa_0758f1f4f4 (IsA channel communication) (STV 1.0 0.9091)) +(: cnet_isa_244ff7cad1 (IsA channel transmission) (STV 1.0 0.9091)) +(: cnet_isa_38fc078fe1 (IsA channel body_of_water) (STV 1.0 0.9091)) +(: cnet_isa_c9771271ad (IsA channel_capacity data_rate) (STV 1.0 0.9091)) +(: cnet_isa_522bca9e51 (IsA channel_catfish catfish) (STV 1.0 0.9091)) +(: cnet_isa_5b370df94c (IsA channelization management) (STV 1.0 0.9091)) +(: cnet_isa_57fd05b5bb (IsA channidae class) (STV 1.0 0.9091)) +(: cnet_isa_debef30749 (IsA chanson_de_geste epic_poem) (STV 1.0 0.9091)) +(: cnet_isa_081885e89b (IsA chant religious_song) (STV 1.0 0.9091)) +(: cnet_isa_316b752d27 (IsA chanter pipe) (STV 1.0 0.9091)) +(: cnet_isa_ad3e5fc17a (IsA chanterelle agaric) (STV 1.0 0.9091)) +(: cnet_isa_cb76664e5b (IsA chantey work_song) (STV 1.0 0.9091)) +(: cnet_isa_3b0e8cd4d9 (IsA chantry chapel) (STV 1.0 0.9091)) +(: cnet_isa_5432734e9d (IsA chantry endowment) (STV 1.0 0.9091)) +(: cnet_isa_56b677e600 (IsA chao physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_a176c45c0a (IsA chao dynamical_system) (STV 1.0 0.9091)) +(: cnet_isa_59216ac642 (IsA chao confusion) (STV 1.0 0.9091)) +(: cnet_isa_e2f8851496 (IsA chap legging) (STV 1.0 0.9091)) +(: cnet_isa_87963a0a9b (IsA chap crack) (STV 1.0 0.9091)) +(: cnet_isa_b551b09d45 (IsA chap male) (STV 1.0 0.9091)) +(: cnet_isa_29b498ac85 (IsA chaparral_mallow mallow) (STV 1.0 0.9091)) +(: cnet_isa_ebc5150e31 (IsA chaparral_pea shrub) (STV 1.0 0.9091)) +(: cnet_isa_a2e67836a1 (IsA chapatti flatbread) (STV 1.0 0.9091)) +(: cnet_isa_29c0483676 (IsA chapel place_of_worship) (STV 1.0 0.9091)) +(: cnet_isa_f4d2f9669e (IsA chapel_service service) (STV 1.0 0.9091)) +(: cnet_isa_6e61b1dd3c (IsA chapelgoer protestant) (STV 1.0 0.9091)) +(: cnet_isa_457a433199 (IsA chaperon defender) (STV 1.0 0.9091)) +(: cnet_isa_3b52d4c714 (IsA chaplain clergyman) (STV 1.0 0.9091)) +(: cnet_isa_4e3a4fd8cc (IsA chaplaincy position) (STV 1.0 0.9091)) +(: cnet_isa_6bdcaacf8e (IsA chapman peddler) (STV 1.0 0.9091)) +(: cnet_isa_feced3ce30 (IsA chapter section) (STV 1.0 0.9091)) +(: cnet_isa_d8195b18b6 (IsA chapter episode) (STV 1.0 0.9091)) +(: cnet_isa_4ff18824f6 (IsA chapter assembly) (STV 1.0 0.9091)) +(: cnet_isa_617e66196f (IsA chapter club) (STV 1.0 0.9091)) +(: cnet_isa_04ea44c8e0 (IsA chapter phase) (STV 1.0 0.9091)) +(: cnet_isa_ba4a43d32f (IsA chapterhouse building) (STV 1.0 0.9091)) +(: cnet_isa_e537cea34a (IsA chapterhouse house) (STV 1.0 0.9091)) +(: cnet_isa_e0fbaee7f8 (IsA char salmonid) (STV 1.0 0.9091)) +(: cnet_isa_5e191dc5b9 (IsA char carbon) (STV 1.0 0.9091)) +(: cnet_isa_19b961558a (IsA chara protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_ce2dcee2c1 (IsA characeae protoctist_family) (STV 1.0 0.9091)) +(: cnet_isa_c9c4362f2d (IsA characidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_fe59cfa550 (IsA characin cypriniform_fish) (STV 1.0 0.9091)) +(: cnet_isa_477e5c3ed3 (IsA characinidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_c261fdd4ea (IsA character trait) (STV 1.0 0.9091)) +(: cnet_isa_8f0c1841e5 (IsA character portrayal) (STV 1.0 0.9091)) +(: cnet_isa_72d1eb5feb (IsA character recommendation) (STV 1.0 0.9091)) +(: cnet_isa_2b4fcadc4a (IsA character written_symbol) (STV 1.0 0.9091)) +(: cnet_isa_8693e84b42 (IsA character attribute) (STV 1.0 0.9091)) +(: cnet_isa_574f489b54 (IsA character adult) (STV 1.0 0.9091)) +(: cnet_isa_6fb7cf944c (IsA character repute) (STV 1.0 0.9091)) +(: cnet_isa_173cf74ffb (IsA character_actor actor) (STV 1.0 0.9091)) +(: cnet_isa_01e50c2140 (IsA character_assassination defamation) (STV 1.0 0.9091)) +(: cnet_isa_9d19cc40a6 (IsA character_printer printer) (STV 1.0 0.9091)) +(: cnet_isa_675c2eefd6 (IsA character_set list) (STV 1.0 0.9091)) +(: cnet_isa_9c875d1102 (IsA character_witness witness) (STV 1.0 0.9091)) +(: cnet_isa_f6b13473cf (IsA characteristic quality) (STV 1.0 0.9091)) +(: cnet_isa_ff96e4fd2b (IsA characteristic integer) (STV 1.0 0.9091)) +(: cnet_isa_516dee655f (IsA characteristic property) (STV 1.0 0.9091)) +(: cnet_isa_e7864011e7 (IsA characteristic_curve graph) (STV 1.0 0.9091)) +(: cnet_isa_35743afe4d (IsA characteristic_root_of_square_matrix value) (STV 1.0 0.9091)) +(: cnet_isa_375d8b5bb1 (IsA characterization description) (STV 1.0 0.9091)) +(: cnet_isa_38623e301a (IsA charade word) (STV 1.0 0.9091)) +(: cnet_isa_ddebacf2ab (IsA charade guessing_game) (STV 1.0 0.9091)) +(: cnet_isa_889a617ccd (IsA charadrii animal_order) (STV 1.0 0.9091)) +(: cnet_isa_7541f9e3bf (IsA charadriidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_1bd6882468 (IsA charadriiforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_4158eb1bd4 (IsA charadrius bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_419b6c880d (IsA charale protoctist_order) (STV 1.0 0.9091)) +(: cnet_isa_d2a0a07437 (IsA charcoal drawing) (STV 1.0 0.9091)) +(: cnet_isa_d1efa4ab94 (IsA charcoal writing_implement) (STV 1.0 0.9091)) +(: cnet_isa_3ba7edcf47 (IsA charcoal gray) (STV 1.0 0.9091)) +(: cnet_isa_abb06e39de (IsA charcoal carbon) (STV 1.0 0.9091)) +(: cnet_isa_e78b6285ed (IsA charcoal fuel) (STV 1.0 0.9091)) +(: cnet_isa_79bd93f3c4 (IsA charcoal_burner stove) (STV 1.0 0.9091)) +(: cnet_isa_901780ee4d (IsA charcoal_burner worker) (STV 1.0 0.9091)) +(: cnet_isa_6ff05b9881 (IsA charcot_marie_tooth_disease neuropathy) (STV 1.0 0.9091)) +(: cnet_isa_922b55887e (IsA charcuterie delicatessen) (STV 1.0 0.9091)) +(: cnet_isa_ff3580275a (IsA chard green) (STV 1.0 0.9091)) +(: cnet_isa_330da0d53b (IsA chard beet) (STV 1.0 0.9091)) +(: cnet_isa_f8a948ba29 (IsA chardonnay white_wine) (STV 1.0 0.9091)) +(: cnet_isa_d6d724c669 (IsA chardonnay vinifera) (STV 1.0 0.9091)) +(: cnet_isa_df228b49f7 (IsA charge attack) (STV 1.0 0.9091)) +(: cnet_isa_a769529e31 (IsA charge explosive) (STV 1.0 0.9091)) +(: cnet_isa_1580a180c6 (IsA charge heraldry) (STV 1.0 0.9091)) +(: cnet_isa_e5e9819ac2 (IsA charge request) (STV 1.0 0.9091)) +(: cnet_isa_ec7bc59cc9 (IsA charge pleading) (STV 1.0 0.9091)) +(: cnet_isa_a9bcb7523c (IsA charge dependant) (STV 1.0 0.9091)) +(: cnet_isa_f422ff434f (IsA charge electrical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_65182a7a1f (IsA charge cost) (STV 1.0 0.9091)) +(: cnet_isa_7c5d5907bd (IsA charge liability) (STV 1.0 0.9091)) +(: cnet_isa_7780b89d9b (IsA charge_d_affaire diplomat) (STV 1.0 0.9091)) +(: cnet_isa_761513fe34 (IsA charge_exchange_accelerator accelerator) (STV 1.0 0.9091)) +(: cnet_isa_2134163172 (IsA charge_of_quarter enlisted_man) (STV 1.0 0.9091)) +(: cnet_isa_361ff47cc3 (IsA charge_unit electromagnetic_unit) (STV 1.0 0.9091)) +(: cnet_isa_c45556000a (IsA charger warhorse) (STV 1.0 0.9091)) +(: cnet_isa_8aab2a5ed3 (IsA charger device) (STV 1.0 0.9091)) +(: cnet_isa_013061bda5 (IsA chari_nile nilo_saharan) (STV 1.0 0.9091)) +(: cnet_isa_60b062a562 (IsA charina reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_7a211336a3 (IsA chariot archetype_of_spirit_below) (STV 1.0 0.9091)) +(: cnet_isa_a5e9f5f387 (IsA chariot carriage) (STV 1.0 0.9091)) +(: cnet_isa_ee3623859b (IsA chariot horse_drawn_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_b2cd72cbb0 (IsA chariot_race race) (STV 1.0 0.9091)) +(: cnet_isa_ffbd4aa2f9 (IsA charioteer driver) (STV 1.0 0.9091)) +(: cnet_isa_00e836e924 (IsA charisma attractiveness) (STV 1.0 0.9091)) +(: cnet_isa_48ae51bf87 (IsA charisma interest) (STV 1.0 0.9091)) +(: cnet_isa_0503d68671 (IsA charitable_trust trust) (STV 1.0 0.9091)) +(: cnet_isa_58054ffca7 (IsA charitableness generosity) (STV 1.0 0.9091)) +(: cnet_isa_ae52d87f60 (IsA charity giving) (STV 1.0 0.9091)) +(: cnet_isa_0be6226865 (IsA charity benevolence) (STV 1.0 0.9091)) +(: cnet_isa_4fe43ee4be (IsA charity theological_virtue) (STV 1.0 0.9091)) +(: cnet_isa_982619db02 (IsA charity foundation) (STV 1.0 0.9091)) +(: cnet_isa_b31e3fac5b (IsA charity institution) (STV 1.0 0.9091)) +(: cnet_isa_cd9a8b6992 (IsA charlatanism dishonesty) (STV 1.0 0.9091)) +(: cnet_isa_9a7478058a (IsA charle_barkley basketball_player) (STV 1.0 0.9091)) +(: cnet_isa_a536b4c75a (IsA charle_hard_towne physicist) (STV 1.0 0.9091)) +(: cnet_isa_50ab865c91 (IsA charleston ballroom_dancing) (STV 1.0 0.9091)) +(: cnet_isa_621e2740c5 (IsA charley_horse spasm) (STV 1.0 0.9091)) +(: cnet_isa_5d01d651fc (IsA charlotte dessert) (STV 1.0 0.9091)) +(: cnet_isa_69e057896f (IsA charlotte_russe charlotte) (STV 1.0 0.9091)) +(: cnet_isa_21cdbe5a4e (IsA charm object) (STV 1.0 0.9091)) +(: cnet_isa_97b907d9fe (IsA charm flavor) (STV 1.0 0.9091)) +(: cnet_isa_23a25d359c (IsA charm_campaign campaign) (STV 1.0 0.9091)) +(: cnet_isa_d7f11bed2f (IsA charm_quark quark) (STV 1.0 0.9091)) +(: cnet_isa_5d000c20bb (IsA charmer person) (STV 1.0 0.9091)) +(: cnet_isa_57fab4a608 (IsA charnel_house vault) (STV 1.0 0.9091)) +(: cnet_isa_715ea7321b (IsA charolais beef) (STV 1.0 0.9091)) +(: cnet_isa_ffe5788b3d (IsA charon ferryman) (STV 1.0 0.9091)) +(: cnet_isa_70a32a5107 (IsA charophyceae class) (STV 1.0 0.9091)) +(: cnet_isa_26c491c4b9 (IsA charred_pancake_cup sarcosomataceae) (STV 1.0 0.9091)) +(: cnet_isa_cff3e33014 (IsA charronia mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_4b8f1c6aac (IsA chart map) (STV 1.0 0.9091)) +(: cnet_isa_84d667be29 (IsA chart list) (STV 1.0 0.9091)) +(: cnet_isa_e1f522c218 (IsA chart visual_communication) (STV 1.0 0.9091)) +(: cnet_isa_9710a88980 (IsA charter contract) (STV 1.0 0.9091)) +(: cnet_isa_33214b041a (IsA charter document) (STV 1.0 0.9091)) +(: cnet_isa_1f02df9426 (IsA charter_member member) (STV 1.0 0.9091)) +(: cnet_isa_8f0a728c9c (IsA charter_school public_school) (STV 1.0 0.9091)) +(: cnet_isa_1efaff16c7 (IsA chartered_accountant accountant) (STV 1.0 0.9091)) +(: cnet_isa_dacc79670c (IsA charterhouse monastery) (STV 1.0 0.9091)) +(: cnet_isa_fcacec7860 (IsA chartism ethic) (STV 1.0 0.9091)) +(: cnet_isa_33dae54174 (IsA chartist market_analyst) (STV 1.0 0.9091)) +(: cnet_isa_f71abcb2b4 (IsA chartist reformer) (STV 1.0 0.9091)) +(: cnet_isa_4b36a63d9f (IsA chartreuse color) (STV 1.0 0.9091)) +(: cnet_isa_5e2a36bb00 (IsA chartreuse liqueur) (STV 1.0 0.9091)) +(: cnet_isa_f450389167 (IsA charwoman cleaner) (STV 1.0 0.9091)) +(: cnet_isa_be568b4e17 (IsA charybdis whirlpool) (STV 1.0 0.9091)) +(: cnet_isa_2170647666 (IsA chase frame) (STV 1.0 0.9091)) +(: cnet_isa_62fb0d0895 (IsA chaser drink) (STV 1.0 0.9091)) +(: cnet_isa_ec4ef4d499 (IsA chasm opening) (STV 1.0 0.9091)) +(: cnet_isa_5b5764112c (IsA chasse dance_step) (STV 1.0 0.9091)) +(: cnet_isa_3820431ee5 (IsA chassid orthodox_jew) (STV 1.0 0.9091)) +(: cnet_isa_a57594da8b (IsA chassis mounting) (STV 1.0 0.9091)) +(: cnet_isa_74713ca101 (IsA chassis skeleton) (STV 1.0 0.9091)) +(: cnet_isa_a2ec3423cf (IsA chasteness plainness) (STV 1.0 0.9091)) +(: cnet_isa_7e45286afc (IsA chastity abstinence) (STV 1.0 0.9091)) +(: cnet_isa_d1e14fa4e5 (IsA chasuble vestment) (STV 1.0 0.9091)) +(: cnet_isa_b26e33eb70 (IsA chat conversation) (STV 1.0 0.9091)) +(: cnet_isa_7640d63b7c (IsA chat_room web_site) (STV 1.0 0.9091)) +(: cnet_isa_b0e2c7b2ae (IsA chateau country_house) (STV 1.0 0.9091)) +(: cnet_isa_1c2ccf28e9 (IsA chateaubriand fillet) (STV 1.0 0.9091)) +(: cnet_isa_6c780a11a8 (IsA chatelaine chain) (STV 1.0 0.9091)) +(: cnet_isa_c9270f2cf6 (IsA chatelaine mistress) (STV 1.0 0.9091)) +(: cnet_isa_172b131b6b (IsA chateura bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_fe72581d3c (IsA chattel personal_property) (STV 1.0 0.9091)) +(: cnet_isa_cfac4fe6d1 (IsA chattel_mortgage mortgage) (STV 1.0 0.9091)) +(: cnet_isa_4193da90bb (IsA chatter noise) (STV 1.0 0.9091)) +(: cnet_isa_f79a34dc81 (IsA chatter_mark blemish) (STV 1.0 0.9091)) +(: cnet_isa_34a9fd623a (IsA chatter_mark erosion) (STV 1.0 0.9091)) +(: cnet_isa_8f2522d63f (IsA chatterer speaker) (STV 1.0 0.9091)) +(: cnet_isa_631739b5f1 (IsA chauffeur driver) (STV 1.0 0.9091)) +(: cnet_isa_e71a8d9b73 (IsA chauffeuse chauffeur) (STV 1.0 0.9091)) +(: cnet_isa_b543d7c959 (IsA chaulmoogra tree) (STV 1.0 0.9091)) +(: cnet_isa_88e3d41cd7 (IsA chaulmoogra_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_f18d19dbe5 (IsA chauna bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_84ebf9abf5 (IsA chauvinism patriotism) (STV 1.0 0.9091)) +(: cnet_isa_32d1ef4370 (IsA chauvinist bigot) (STV 1.0 0.9091)) +(: cnet_isa_60dfcb83ff (IsA chauvinist patriot) (STV 1.0 0.9091)) +(: cnet_isa_832c952c50 (IsA cheap_money credit) (STV 1.0 0.9091)) +(: cnet_isa_4899fc44ed (IsA cheap_shot shot) (STV 1.0 0.9091)) +(: cnet_isa_0c1cbad7eb (IsA cheapjack peddler) (STV 1.0 0.9091)) +(: cnet_isa_fe10fd3e04 (IsA cheapness tastelessness) (STV 1.0 0.9091)) +(: cnet_isa_d33843fec6 (IsA cheapskate miser) (STV 1.0 0.9091)) +(: cnet_isa_25de909271 (IsA cheat deception) (STV 1.0 0.9091)) +(: cnet_isa_3b24429b28 (IsA chebab adolescent) (STV 1.0 0.9091)) +(: cnet_isa_c782413198 (IsA chechen caucasian) (STV 1.0 0.9091)) +(: cnet_isa_87c089f404 (IsA chechen russian) (STV 1.0 0.9091)) +(: cnet_isa_78c50c4005 (IsA check inspection) (STV 1.0 0.9091)) +(: cnet_isa_6ac65cc12c (IsA check obstruction) (STV 1.0 0.9091)) +(: cnet_isa_0279c13543 (IsA check weave) (STV 1.0 0.9091)) +(: cnet_isa_6a6c749f77 (IsA check blemish) (STV 1.0 0.9091)) +(: cnet_isa_d27ea20296 (IsA check chess_move) (STV 1.0 0.9091)) +(: cnet_isa_2da56ead40 (IsA check bill) (STV 1.0 0.9091)) +(: cnet_isa_1336c146f8 (IsA check draft) (STV 1.0 0.9091)) +(: cnet_isa_dd5c248558 (IsA check_character character) (STV 1.0 0.9091)) +(: cnet_isa_8e8caae4e4 (IsA check_girl checker) (STV 1.0 0.9091)) +(: cnet_isa_d6234b88ec (IsA check_in arrival) (STV 1.0 0.9091)) +(: cnet_isa_6c44840ee7 (IsA check_mark mark) (STV 1.0 0.9091)) +(: cnet_isa_96fa015a8b (IsA check_register register) (STV 1.0 0.9091)) +(: cnet_isa_206a9ee1dc (IsA checkbook record) (STV 1.0 0.9091)) +(: cnet_isa_88c9b3eb36 (IsA checker man) (STV 1.0 0.9091)) +(: cnet_isa_2bc167bdfa (IsA checker attendant) (STV 1.0 0.9091)) +(: cnet_isa_26194fba48 (IsA checker examiner) (STV 1.0 0.9091)) +(: cnet_isa_36be304808 (IsA checkerbloom mallow) (STV 1.0 0.9091)) +(: cnet_isa_33a4769030 (IsA checkerboard board) (STV 1.0 0.9091)) +(: cnet_isa_e6d76c50f6 (IsA checkered_whiptail whiptail) (STV 1.0 0.9091)) +(: cnet_isa_329f72b763 (IsA checker board_game) (STV 1.0 0.9091)) +(: cnet_isa_89a3acd871 (IsA checking_account bank_account) (STV 1.0 0.9091)) +(: cnet_isa_3fe3c860e3 (IsA checking_program program) (STV 1.0 0.9091)) +(: cnet_isa_6f3079e27f (IsA checklist list) (STV 1.0 0.9091)) +(: cnet_isa_6af39e358a (IsA checkmate chess_move) (STV 1.0 0.9091)) +(: cnet_isa_bc7f316ebd (IsA checkmate victory) (STV 1.0 0.9091)) +(: cnet_isa_2ea2fb0306 (IsA checkout counter) (STV 1.0 0.9091)) +(: cnet_isa_8f78b266de (IsA checkout departure_time) (STV 1.0 0.9091)) +(: cnet_isa_930354787e (IsA checkout_line queue) (STV 1.0 0.9091)) +(: cnet_isa_91bbcfc35b (IsA checkpoint stop) (STV 1.0 0.9091)) +(: cnet_isa_0ebecf0b40 (IsA checkroom room) (STV 1.0 0.9091)) +(: cnet_isa_ce409a0b87 (IsA checksum confirmation) (STV 1.0 0.9091)) +(: cnet_isa_3d6295c36b (IsA checkup medical_exam) (STV 1.0 0.9091)) +(: cnet_isa_415432f39f (IsA checkup examination) (STV 1.0 0.9091)) +(: cnet_isa_6d1688fbb7 (IsA cheddar cheese) (STV 1.0 0.9091)) +(: cnet_isa_3546f5dc8e (IsA cheddar_pink pink) (STV 1.0 0.9091)) +(: cnet_isa_f55db49f15 (IsA cheek feature) (STV 1.0 0.9091)) +(: cnet_isa_ac086cdb0a (IsA cheek_muscle facial_muscle) (STV 1.0 0.9091)) +(: cnet_isa_eba73a4f50 (IsA cheek_pouch pouch) (STV 1.0 0.9091)) +(: cnet_isa_35a8621842 (IsA cheekbone bone) (STV 1.0 0.9091)) +(: cnet_isa_f445d261a3 (IsA cheekpiece strap) (STV 1.0 0.9091)) +(: cnet_isa_a62117cd63 (IsA cheep cry) (STV 1.0 0.9091)) +(: cnet_isa_64af08f073 (IsA cheer approval) (STV 1.0 0.9091)) +(: cnet_isa_45a1bbf755 (IsA cheerer spectator) (STV 1.0 0.9091)) +(: cnet_isa_95927410b1 (IsA cheerfulness attribute) (STV 1.0 0.9091)) +(: cnet_isa_a1ea6e5aba (IsA cheerfulness happiness) (STV 1.0 0.9091)) +(: cnet_isa_99d63a31c3 (IsA cheering encouragement) (STV 1.0 0.9091)) +(: cnet_isa_2e142e0dff (IsA cheerleader leader) (STV 1.0 0.9091)) +(: cnet_isa_96c6b4c3e7 (IsA cheerleader supporter) (STV 1.0 0.9091)) +(: cnet_isa_b60dfac317 (IsA cheerlessness sadness) (STV 1.0 0.9091)) +(: cnet_isa_f0d2a0f95b (IsA cheese dairy_product_from_cow) (STV 1.0 0.9454)) +(: cnet_isa_7e7ceeda1c (IsA cheese food) (STV 1.0 0.9693)) +(: cnet_isa_513d62c3b3 (IsA cheese good_protein_food) (STV 1.0 0.9339)) +(: cnet_isa_ff5505e874 (IsA cheese noun) (STV 1.0 0.9339)) +(: cnet_isa_c434e9f107 (IsA cheese dairy_product) (STV 1.0 0.9091)) +(: cnet_isa_2d8dbfe936 (IsA cheese_cutter kitchen_utensil) (STV 1.0 0.9091)) +(: cnet_isa_da97931d23 (IsA cheese_dip dip) (STV 1.0 0.9091)) +(: cnet_isa_bbc34d0c58 (IsA cheese_fondue fondue) (STV 1.0 0.9091)) +(: cnet_isa_ca7b3ae8bb (IsA cheese_pizza pizza) (STV 1.0 0.9091)) +(: cnet_isa_32d167b904 (IsA cheese_press press) (STV 1.0 0.9091)) +(: cnet_isa_63527a8b7d (IsA cheese_rind rind) (STV 1.0 0.9091)) +(: cnet_isa_f04c7610ad (IsA cheese_sauce white_sauce) (STV 1.0 0.9091)) +(: cnet_isa_d75e9be26b (IsA cheese_souffle souffle) (STV 1.0 0.9091)) +(: cnet_isa_56bf2cb159 (IsA cheese_spread spread) (STV 1.0 0.9091)) +(: cnet_isa_7d561b8a96 (IsA cheeseboard tray) (STV 1.0 0.9091)) +(: cnet_isa_3b895a5658 (IsA cheeseburger hamburger) (STV 1.0 0.9091)) +(: cnet_isa_0831e74e34 (IsA cheesecake picture) (STV 1.0 0.9091)) +(: cnet_isa_a89b406e96 (IsA cheesecake cake) (STV 1.0 0.9091)) +(: cnet_isa_3e6ddfe2cf (IsA cheesecloth gauze) (STV 1.0 0.9091)) +(: cnet_isa_1c9c16305b (IsA cheesemonger trader) (STV 1.0 0.9091)) +(: cnet_isa_bcc12e922e (IsA cheetah big_cat) (STV 1.0 0.9091)) +(: cnet_isa_8a43063dde (IsA chef_s_salad combination_salad) (STV 1.0 0.9091)) +(: cnet_isa_3e22ef5a7a (IsA chef cook) (STV 1.0 0.9091)) +(: cnet_isa_5f06eb590c (IsA cheilanthe fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_6acf2e94ed (IsA cheilitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_6fb93755cb (IsA cheilosis disorder) (STV 1.0 0.9091)) +(: cnet_isa_b249d82063 (IsA cheiranthus dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5b6ecfb849 (IsA chela hindoo) (STV 1.0 0.9091)) +(: cnet_isa_0a97392756 (IsA chelate heterocyclic_compound) (STV 1.0 0.9091)) +(: cnet_isa_988e0d3763 (IsA chelation process) (STV 1.0 0.9091)) +(: cnet_isa_961ed0a871 (IsA chelation chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_e2c7d491bb (IsA chelicera extremity) (STV 1.0 0.9091)) +(: cnet_isa_ee6929b679 (IsA chelicerata class) (STV 1.0 0.9091)) +(: cnet_isa_db72570b2b (IsA chelidonium dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f34c78b192 (IsA chelifer arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_79f1d56ec6 (IsA chelone asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e27a0f8717 (IsA chelonethida animal_order) (STV 1.0 0.9091)) +(: cnet_isa_6de105a117 (IsA chelonia animal_order) (STV 1.0 0.9091)) +(: cnet_isa_55c5aac363 (IsA chelonia reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_3e2850e726 (IsA chelonian anapsid) (STV 1.0 0.9091)) +(: cnet_isa_cd66c33fc1 (IsA cheloniidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_d2a22c2f75 (IsA chelydra reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_4516ce8118 (IsA chelydridae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_901dea8fcd (IsA chemakuan mosan) (STV 1.0 0.9091)) +(: cnet_isa_f6610d2869 (IsA chemakum chemakuan) (STV 1.0 0.9091)) +(: cnet_isa_171009010c (IsA chemical material) (STV 1.0 0.9091)) +(: cnet_isa_38fb4ec8b0 (IsA chemical_agent agent) (STV 1.0 0.9091)) +(: cnet_isa_a1cfcf9143 (IsA chemical_analysis analysis) (STV 1.0 0.9091)) +(: cnet_isa_c8c7ec13a0 (IsA chemical_bomb bomb) (STV 1.0 0.9091)) +(: cnet_isa_47b58459c3 (IsA chemical_bomb chemical_weapon) (STV 1.0 0.9091)) +(: cnet_isa_0e18f571d4 (IsA chemical_bond attraction) (STV 1.0 0.9091)) +(: cnet_isa_1a025fce04 (IsA chemical_defense defense) (STV 1.0 0.9091)) +(: cnet_isa_e7b969c51a (IsA chemical_element substance) (STV 1.0 0.9091)) +(: cnet_isa_d55f062d5f (IsA chemical_energy energy) (STV 1.0 0.9091)) +(: cnet_isa_357cab1e1a (IsA chemical_engineering technology) (STV 1.0 0.9091)) +(: cnet_isa_90f96b22b1 (IsA chemical_engineering engineering) (STV 1.0 0.9091)) +(: cnet_isa_f2ff5564d2 (IsA chemical_equilibrium chemical_reaction) (STV 1.0 0.9091)) +(: cnet_isa_11c6abc379 (IsA chemical_industry industry) (STV 1.0 0.9091)) +(: cnet_isa_d2ea1f93e3 (IsA chemical_irritant substance) (STV 1.0 0.9091)) +(: cnet_isa_a5424fa57a (IsA chemical_notation notation) (STV 1.0 0.9091)) +(: cnet_isa_aba98fb620 (IsA chemical_phenomenon natural_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_2d2babd00a (IsA chemical_plant factory) (STV 1.0 0.9091)) +(: cnet_isa_6d9e598026 (IsA chemical_process natural_process) (STV 1.0 0.9091)) +(: cnet_isa_375fb25d34 (IsA chemical_property property) (STV 1.0 0.9091)) +(: cnet_isa_549be6ad3d (IsA chemical_reaction chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_6003d7b270 (IsA chemical_reactor apparatus) (STV 1.0 0.9091)) +(: cnet_isa_adf742f95c (IsA chemical_symbol_for_hydrogen h) (STV 1.0 0.9091)) +(: cnet_isa_91caf06a3c (IsA chemical_symbol_for_phosphorous p) (STV 1.0 0.9091)) +(: cnet_isa_1a06913152 (IsA chemical_terrorism terrorism) (STV 1.0 0.9091)) +(: cnet_isa_17978229b6 (IsA chemical_warfare war) (STV 1.0 0.9091)) +(: cnet_isa_4e270737c2 (IsA chemical_weapon weapon_of_mass_destruction) (STV 1.0 0.9091)) +(: cnet_isa_bbbc8edb9e (IsA chemiluminescence luminescence) (STV 1.0 0.9091)) +(: cnet_isa_57ddaf4303 (IsA chemise dress) (STV 1.0 0.9091)) +(: cnet_isa_6d191c6d28 (IsA chemise undergarment) (STV 1.0 0.9091)) +(: cnet_isa_807e1e579e (IsA chemisorption adsorption) (STV 1.0 0.9091)) +(: cnet_isa_94c0a021d9 (IsA chemist scientist) (STV 1.0 0.9091)) +(: cnet_isa_a69d2685c6 (IsA chemistry science) (STV 1.0 0.9608)) +(: cnet_isa_71bcd4a897 (IsA chemistry natural_science) (STV 1.0 0.9091)) +(: cnet_isa_695848c116 (IsA chemistry social_relation) (STV 1.0 0.9091)) +(: cnet_isa_16e2c23a01 (IsA chemistry substance) (STV 1.0 0.9091)) +(: cnet_isa_f4fa1fa7a0 (IsA chemistry_department academic_department) (STV 1.0 0.9091)) +(: cnet_isa_9fe6b74671 (IsA chemistry_lab lab) (STV 1.0 0.9091)) +(: cnet_isa_7464707fef (IsA chemnitzer_concertina concertina) (STV 1.0 0.9091)) +(: cnet_isa_c87695f9c5 (IsA chemoreceptor sense_organ) (STV 1.0 0.9091)) +(: cnet_isa_72c97c3d25 (IsA chemosis edema) (STV 1.0 0.9091)) +(: cnet_isa_4867582737 (IsA chemosurgery operation) (STV 1.0 0.9091)) +(: cnet_isa_9905c7efb3 (IsA chemosynthesis synthesis) (STV 1.0 0.9091)) +(: cnet_isa_cf3b6e27fd (IsA chemotaxis taxis) (STV 1.0 0.9091)) +(: cnet_isa_86593b0e20 (IsA chemotherapy therapy) (STV 1.0 0.9091)) +(: cnet_isa_1aa433e2af (IsA chen bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_ad4d968663 (IsA chenille cord) (STV 1.0 0.9091)) +(: cnet_isa_33bf200156 (IsA chenille fabric) (STV 1.0 0.9091)) +(: cnet_isa_e328a1bcb1 (IsA chenin_blanc white_wine) (STV 1.0 0.9091)) +(: cnet_isa_3e2ba48517 (IsA chenin_blanc vinifera) (STV 1.0 0.9091)) +(: cnet_isa_21f5fd376d (IsA chenopodiaceae caryophylloid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_e0c91082ba (IsA chenopodium caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_388d37491f (IsA cheoplastic_metal alloy) (STV 1.0 0.9091)) +(: cnet_isa_c33276271f (IsA cheop pharaoh_of_egypt) (STV 1.0 0.9091)) +(: cnet_isa_1116cf828a (IsA cheremis volgaic) (STV 1.0 0.9091)) +(: cnet_isa_66a86d985a (IsA cheremiss russian) (STV 1.0 0.9091)) +(: cnet_isa_5f32b6d249 (IsA cherimoya custard_apple) (STV 1.0 0.9091)) +(: cnet_isa_2450c7e08d (IsA chernozemic_soil loam) (STV 1.0 0.9091)) +(: cnet_isa_2cd590d5ce (IsA cherokee iroquoian) (STV 1.0 0.9091)) +(: cnet_isa_c9a335a690 (IsA cherokee iroquois) (STV 1.0 0.9091)) +(: cnet_isa_22e797ecf9 (IsA cherokee_rose rose) (STV 1.0 0.9091)) +(: cnet_isa_50c15335b9 (IsA cheroot cigar) (STV 1.0 0.9091)) +(: cnet_isa_15ca6d9d57 (IsA cherry drupe) (STV 1.0 0.9091)) +(: cnet_isa_4a94fa1e77 (IsA cherry edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_388cdca1f1 (IsA cherry fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_61f3c5c60a (IsA cherry wood) (STV 1.0 0.9091)) +(: cnet_isa_e2dbdce385 (IsA cherry_bomb firecracker) (STV 1.0 0.9091)) +(: cnet_isa_358fb5fef1 (IsA cherry_laurel angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_a81847b9b7 (IsA cherry_laurel shrub) (STV 1.0 0.9091)) +(: cnet_isa_51122d7ec5 (IsA cherry_pepper capsicum) (STV 1.0 0.9091)) +(: cnet_isa_099be1cb01 (IsA cherry_plum plum) (STV 1.0 0.9091)) +(: cnet_isa_bb7bba0029 (IsA cherry_stone stone) (STV 1.0 0.9091)) +(: cnet_isa_bce9fa39b3 (IsA cherry_tomato tomato) (STV 1.0 0.9091)) +(: cnet_isa_69d9cbeb78 (IsA cherry_tree tree) (STV 1.0 0.9339)) +(: cnet_isa_2a098c47f4 (IsA cherry_tree_gum gum) (STV 1.0 0.9091)) +(: cnet_isa_00857a6fbd (IsA cherrystone quahog) (STV 1.0 0.9091)) +(: cnet_isa_8647a9f8aa (IsA cherrystone quahaug) (STV 1.0 0.9091)) +(: cnet_isa_722c0d3f07 (IsA chert silica) (STV 1.0 0.9091)) +(: cnet_isa_973dfd16dd (IsA cherub angel) (STV 1.0 0.9091)) +(: cnet_isa_6fdfc3834f (IsA cherub baby) (STV 1.0 0.9091)) +(: cnet_isa_331130dda3 (IsA chervil herb) (STV 1.0 0.9091)) +(: cnet_isa_cd0507fe78 (IsA chesapeake_bay_retriever retriever) (STV 1.0 0.9091)) +(: cnet_isa_07a3532b00 (IsA cheshire_cheese cheese) (STV 1.0 0.9091)) +(: cnet_isa_1fa322ca37 (IsA chess analytical_game) (STV 1.0 0.9339)) +(: cnet_isa_f045e4d4da (IsA chess board_game) (STV 1.0 0.9659)) +(: cnet_isa_83963e756f (IsA chess complicated_game) (STV 1.0 0.9339)) +(: cnet_isa_ebbd43cf25 (IsA chess exciting_game) (STV 1.0 0.9091)) +(: cnet_isa_7e60ad7d5f (IsA chess game) (STV 1.0 0.9740)) +(: cnet_isa_808c682571 (IsA chess game_of_no_chance) (STV 1.0 0.9339)) +(: cnet_isa_9d160cd96e (IsA chess game_of_skill) (STV 1.0 0.9339)) +(: cnet_isa_216ed5baed (IsA chess game_of_strategy) (STV 1.0 0.9572)) +(: cnet_isa_b5973de1eb (IsA chess game_of_two_player) (STV 1.0 0.9091)) +(: cnet_isa_239ddaf52c (IsA chess great_game) (STV 1.0 0.9091)) +(: cnet_isa_3ac3cbbc4b (IsA chess intellectual_game) (STV 1.0 0.9339)) +(: cnet_isa_a7db78a1b3 (IsA chess two_player_game) (STV 1.0 0.9454)) +(: cnet_isa_ef8d92b350 (IsA chess brome) (STV 1.0 0.9091)) +(: cnet_isa_b726efa466 (IsA chess_club club) (STV 1.0 0.9091)) +(: cnet_isa_ef229e80c8 (IsA chess_master chess_player) (STV 1.0 0.9091)) +(: cnet_isa_3e53fe1dba (IsA chess_match match) (STV 1.0 0.9091)) +(: cnet_isa_e0257ec018 (IsA chess_move move) (STV 1.0 0.9091)) +(: cnet_isa_31a644f3b4 (IsA chess_opening succession) (STV 1.0 0.9091)) +(: cnet_isa_76823eed54 (IsA chess_player player) (STV 1.0 0.9091)) +(: cnet_isa_6127fb1d72 (IsA chess_queen one_piece) (STV 1.0 0.9091)) +(: cnet_isa_6a21cf29de (IsA chess_set set) (STV 1.0 0.9091)) +(: cnet_isa_38d1354692 (IsA chessboard checkerboard) (STV 1.0 0.9091)) +(: cnet_isa_554a8d4b74 (IsA chessman man) (STV 1.0 0.9091)) +(: cnet_isa_aa8b0dfab3 (IsA chest part_of_body) (STV 1.0 0.9091)) +(: cnet_isa_f26cd7adba (IsA chest place_to_store_jewelry) (STV 1.0 0.9339)) +(: cnet_isa_1365fb958a (IsA chest box) (STV 1.0 0.9091)) +(: cnet_isa_173a6daa23 (IsA chest_cavity cavity) (STV 1.0 0.9091)) +(: cnet_isa_bb93c69617 (IsA chest_of_drawer furniture) (STV 1.0 0.9091)) +(: cnet_isa_c16e1d03f7 (IsA chest_pain pain) (STV 1.0 0.9091)) +(: cnet_isa_9b78f540f7 (IsA chest_protector protective_garment) (STV 1.0 0.9091)) +(: cnet_isa_874bf4ee1a (IsA chest_register register) (STV 1.0 0.9091)) +(: cnet_isa_3f3894216d (IsA chesterfield brand_of_cigarette) (STV 1.0 0.9339)) +(: cnet_isa_07cd912b52 (IsA chesterfield piece_of_furniture) (STV 1.0 0.9091)) +(: cnet_isa_26badd1527 (IsA chesterfield davenport) (STV 1.0 0.9091)) +(: cnet_isa_93449fb830 (IsA chesterfield greatcoat) (STV 1.0 0.9091)) +(: cnet_isa_9a136ced05 (IsA chestnut callus) (STV 1.0 0.9091)) +(: cnet_isa_b11ab249de (IsA chestnut horse) (STV 1.0 0.9091)) +(: cnet_isa_a4636c028e (IsA chestnut brown) (STV 1.0 0.9091)) +(: cnet_isa_425cd553ed (IsA chestnut edible_nut) (STV 1.0 0.9091)) +(: cnet_isa_9505f4f0a1 (IsA chestnut tree) (STV 1.0 0.9091)) +(: cnet_isa_4f1d49a73d (IsA chestnut wood) (STV 1.0 0.9091)) +(: cnet_isa_4cf35351ef (IsA chestnut_blight blight) (STV 1.0 0.9091)) +(: cnet_isa_d9fa4c6abd (IsA chestnut_oak oak) (STV 1.0 0.9091)) +(: cnet_isa_7429742a9c (IsA chestnut_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_c1cecce7e3 (IsA chetrum bhutanese_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_d30e21e17b (IsA cheval_de_frise defensive_structure) (STV 1.0 0.9091)) +(: cnet_isa_f73575f414 (IsA cheval_glass mirror) (STV 1.0 0.9091)) +(: cnet_isa_d62b5d8712 (IsA cheviot domestic_sheep) (STV 1.0 0.9091)) +(: cnet_isa_483c2fe380 (IsA chevrolet type_of_car) (STV 1.0 0.9091)) +(: cnet_isa_2b6ee69612 (IsA chevron charge) (STV 1.0 0.9091)) +(: cnet_isa_45ce278057 (IsA chevron badge) (STV 1.0 0.9091)) +(: cnet_isa_f8dda19476 (IsA chevrotain ruminant) (STV 1.0 0.9091)) +(: cnet_isa_da5428397a (IsA chew change_of_state) (STV 1.0 0.9091)) +(: cnet_isa_a3ff927ef5 (IsA chew morsel) (STV 1.0 0.9091)) +(: cnet_isa_06d5f56ade (IsA chewer consumer) (STV 1.0 0.9091)) +(: cnet_isa_b4f997624e (IsA chewing_gum sweet) (STV 1.0 0.9091)) +(: cnet_isa_b7bf45ea7f (IsA chewink towhee) (STV 1.0 0.9091)) +(: cnet_isa_3ee5414486 (IsA cheyenne algonquian) (STV 1.0 0.9091)) +(: cnet_isa_0959a944de (IsA cheyenne algonquin) (STV 1.0 0.9091)) +(: cnet_isa_b7893515da (IsA cheyenne buffalo_indian) (STV 1.0 0.9091)) +(: cnet_isa_d267b8765f (IsA chi letter) (STV 1.0 0.9091)) +(: cnet_isa_8b9fefadab (IsA chiacoan_peccary peccary) (STV 1.0 0.9091)) +(: cnet_isa_cecc6d4b13 (IsA chian_turpentine turpentine) (STV 1.0 0.9091)) +(: cnet_isa_0eb53ac91f (IsA chianti red_wine) (STV 1.0 0.9091)) +(: cnet_isa_222d2dcf04 (IsA chiaroscuro ikon) (STV 1.0 0.9091)) +(: cnet_isa_99dd189bdb (IsA chiasma structure) (STV 1.0 0.9091)) +(: cnet_isa_c47a4effdc (IsA chiasmus rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_b9e4ca04e7 (IsA chic elegance) (STV 1.0 0.9091)) +(: cnet_isa_c0348a5beb (IsA chicago city) (STV 1.0 0.9091)) +(: cnet_isa_b09f78d9d7 (IsA chicane movable_barrier) (STV 1.0 0.9091)) +(: cnet_isa_1a58527f68 (IsA chicane bridge_hand) (STV 1.0 0.9091)) +(: cnet_isa_2810e6f611 (IsA chicano mexican) (STV 1.0 0.9091)) +(: cnet_isa_f1310aa14f (IsA chichewa bantu) (STV 1.0 0.9091)) +(: cnet_isa_275519e66b (IsA chichi dresser) (STV 1.0 0.9091)) +(: cnet_isa_90d3e74578 (IsA chichipe cactus) (STV 1.0 0.9091)) +(: cnet_isa_d3146987b1 (IsA chick chicken) (STV 1.0 0.9091)) +(: cnet_isa_9064035a2e (IsA chick young_bird) (STV 1.0 0.9091)) +(: cnet_isa_38b5396ee5 (IsA chickadee bird) (STV 1.0 0.9339)) +(: cnet_isa_931cd4d6f5 (IsA chickadee titmouse) (STV 1.0 0.9091)) +(: cnet_isa_9b1b50673c (IsA chickasaw muskhogean) (STV 1.0 0.9091)) +(: cnet_isa_ad5c6354c9 (IsA chickasaw native_american) (STV 1.0 0.9091)) +(: cnet_isa_67157cc299 (IsA chickasaw_plum wild_plum) (STV 1.0 0.9091)) +(: cnet_isa_88dc9d11bb (IsA chicken biped) (STV 1.0 0.9339)) +(: cnet_isa_07bed63a5d (IsA chicken food) (STV 1.0 0.9730)) +(: cnet_isa_b6f41bd473 (IsA chicken meat) (STV 1.0 0.9707)) +(: cnet_isa_11b180ada6 (IsA chicken domestic_fowl) (STV 1.0 0.9091)) +(: cnet_isa_8dc5f05fce (IsA chicken contest) (STV 1.0 0.9091)) +(: cnet_isa_f0020ebfa8 (IsA chicken poultry) (STV 1.0 0.9091)) +(: cnet_isa_08eff2027a (IsA chicken_and_rice dish) (STV 1.0 0.9091)) +(: cnet_isa_211a7c8ee6 (IsA chicken_broth broth) (STV 1.0 0.9091)) +(: cnet_isa_bc81ce4c3c (IsA chicken_cacciatore chicken_casserole) (STV 1.0 0.9091)) +(: cnet_isa_9e52210a57 (IsA chicken_casserole casserole) (STV 1.0 0.9091)) +(: cnet_isa_d9f48f58d9 (IsA chicken_coop farm_building) (STV 1.0 0.9091)) +(: cnet_isa_6c04f94e97 (IsA chicken_cordon_bleu dish) (STV 1.0 0.9091)) +(: cnet_isa_277f866af2 (IsA chicken_egg egg) (STV 1.0 0.9454)) +(: cnet_isa_80a332d94e (IsA chicken_farm farm) (STV 1.0 0.9091)) +(: cnet_isa_4d32b662ae (IsA chicken_feed mash) (STV 1.0 0.9091)) +(: cnet_isa_9e6d1bc8af (IsA chicken_hawk hawk) (STV 1.0 0.9091)) +(: cnet_isa_5338bc049b (IsA chicken_kiev dish) (STV 1.0 0.9091)) +(: cnet_isa_9431c7429e (IsA chicken_leg drumstick) (STV 1.0 0.9091)) +(: cnet_isa_9170f53c9a (IsA chicken_liver liver) (STV 1.0 0.9091)) +(: cnet_isa_fcf474c425 (IsA chicken_louse bird_louse) (STV 1.0 0.9091)) +(: cnet_isa_2b3adbb5fd (IsA chicken_manure manure) (STV 1.0 0.9091)) +(: cnet_isa_23c9e6f9b6 (IsA chicken_marengo dish) (STV 1.0 0.9091)) +(: cnet_isa_c1a5085560 (IsA chicken_mousse mousse) (STV 1.0 0.9091)) +(: cnet_isa_a0bd69eba9 (IsA chicken_paprika dish) (STV 1.0 0.9091)) +(: cnet_isa_b701a7f486 (IsA chicken_provencale dish) (STV 1.0 0.9091)) +(: cnet_isa_51ff5be1dc (IsA chicken_roundworm nematode) (STV 1.0 0.9091)) +(: cnet_isa_50f2457ca3 (IsA chicken_salad salad) (STV 1.0 0.9091)) +(: cnet_isa_c2405050dc (IsA chicken_sandwich sandwich) (STV 1.0 0.9091)) +(: cnet_isa_5d9dda278c (IsA chicken_scratch scribble) (STV 1.0 0.9091)) +(: cnet_isa_fd5f7a4f32 (IsA chicken_snake rat_snake) (STV 1.0 0.9091)) +(: cnet_isa_edd6e2334f (IsA chicken_soup soup) (STV 1.0 0.9091)) +(: cnet_isa_4e52e6ebcd (IsA chicken_stew fricassee) (STV 1.0 0.9091)) +(: cnet_isa_b0eabef999 (IsA chicken_taco taco) (STV 1.0 0.9091)) +(: cnet_isa_955938e8b8 (IsA chicken_tetrazzini tetrazzini) (STV 1.0 0.9091)) +(: cnet_isa_d364026a8f (IsA chicken_wing wing) (STV 1.0 0.9091)) +(: cnet_isa_37de04a32c (IsA chicken_wire net) (STV 1.0 0.9091)) +(: cnet_isa_28d13a661a (IsA chicken_yard yard) (STV 1.0 0.9091)) +(: cnet_isa_86cd07519f (IsA chickenpox pox) (STV 1.0 0.9091)) +(: cnet_isa_7c3a7dcdeb (IsA chicken animal) (STV 1.0 0.9524)) +(: cnet_isa_c7856597c9 (IsA chickenshit drivel) (STV 1.0 0.9091)) +(: cnet_isa_544d30c4c7 (IsA chickeree tree_squirrel) (STV 1.0 0.9091)) +(: cnet_isa_34faf0a615 (IsA chickpea legume) (STV 1.0 0.9091)) +(: cnet_isa_48ce345df0 (IsA chickweed herb) (STV 1.0 0.9091)) +(: cnet_isa_87b95feac2 (IsA chickweed_phlox phlox) (STV 1.0 0.9091)) +(: cnet_isa_a906671cf4 (IsA chicle gum) (STV 1.0 0.9091)) +(: cnet_isa_1ff5ffb396 (IsA chicory coffee_substitute) (STV 1.0 0.9091)) +(: cnet_isa_d32f39619f (IsA chicory salad_green) (STV 1.0 0.9091)) +(: cnet_isa_e732489f9f (IsA chicory herb) (STV 1.0 0.9091)) +(: cnet_isa_34ad03d115 (IsA chicory root) (STV 1.0 0.9091)) +(: cnet_isa_0e6bc9c53a (IsA chicory_escarole salad_green) (STV 1.0 0.9091)) +(: cnet_isa_7bfd7c0ae9 (IsA chiding rebuke) (STV 1.0 0.9091)) +(: cnet_isa_37fd215a09 (IsA chief_constable captain) (STV 1.0 0.9091)) +(: cnet_isa_a24a7d2ce4 (IsA chief_executive_officer corporate_executive) (STV 1.0 0.9091)) +(: cnet_isa_28d55e7d8d (IsA chief_financial_officer corporate_executive) (STV 1.0 0.9091)) +(: cnet_isa_076a36743d (IsA chief_justice judge) (STV 1.0 0.9091)) +(: cnet_isa_67d39a166b (IsA chief_of_staff military_officer) (STV 1.0 0.9091)) +(: cnet_isa_96ac49d792 (IsA chief_petty_officer noncommissioned_officer) (STV 1.0 0.9091)) +(: cnet_isa_c30888d6ea (IsA chief_secretary cabinet_minister) (STV 1.0 0.9091)) +(: cnet_isa_afc13b6102 (IsA chieftaincy position) (STV 1.0 0.9091)) +(: cnet_isa_7a326f60ff (IsA chiffon fabric) (STV 1.0 0.9091)) +(: cnet_isa_1f3d4456f5 (IsA chiffon_cake cake) (STV 1.0 0.9091)) +(: cnet_isa_9c231cfabe (IsA chiffonier chest_of_drawer) (STV 1.0 0.9091)) +(: cnet_isa_41c2bf2a27 (IsA chigetai onager) (STV 1.0 0.9091)) +(: cnet_isa_93499669a9 (IsA chignon hairdo) (STV 1.0 0.9091)) +(: cnet_isa_f28bc6933a (IsA chigoe flea) (STV 1.0 0.9091)) +(: cnet_isa_8fc5ea8464 (IsA chihuahua toy_dog) (STV 1.0 0.9091)) +(: cnet_isa_48a0ee65b6 (IsA chihuahuan_spotted_whiptail whiptail) (STV 1.0 0.9091)) +(: cnet_isa_596a77f766 (IsA chilblain blain) (STV 1.0 0.9091)) +(: cnet_isa_928eccabf8 (IsA child_s_body juvenile_body) (STV 1.0 0.9091)) +(: cnet_isa_aac1b66d5f (IsA child_s_game game) (STV 1.0 0.9091)) +(: cnet_isa_f879d01499 (IsA child_s_room bedroom) (STV 1.0 0.9091)) +(: cnet_isa_7cb30139af (IsA child small_young_person) (STV 1.0 0.9091)) +(: cnet_isa_8345fbbb2a (IsA child younger_than_parent) (STV 1.0 0.9091)) +(: cnet_isa_215c11b3d1 (IsA child descendant) (STV 1.0 0.9091)) +(: cnet_isa_3b312d3963 (IsA child juvenile) (STV 1.0 0.9091)) +(: cnet_isa_8468703f5a (IsA child offspring) (STV 1.0 0.9091)) +(: cnet_isa_2b297c2b93 (IsA child person) (STV 1.0 0.9091)) +(: cnet_isa_a686839d21 (IsA child_abuse maltreatment) (STV 1.0 0.9091)) +(: cnet_isa_534ec042c5 (IsA child_making_sandwich making_sandwich) (STV 1.0 0.9091)) +(: cnet_isa_d8848affdd (IsA child_neglect maltreatment) (STV 1.0 0.9091)) +(: cnet_isa_59d6e7e03f (IsA child_pornography pornography) (STV 1.0 0.9091)) +(: cnet_isa_8a870e79e0 (IsA child_prodigy child) (STV 1.0 0.9091)) +(: cnet_isa_fde0b6ae15 (IsA child_prodigy prodigy) (STV 1.0 0.9091)) +(: cnet_isa_50f2137afc (IsA child_support support_payment) (STV 1.0 0.9091)) +(: cnet_isa_0d8c22434c (IsA child_welfare_agency administrative_unit) (STV 1.0 0.9091)) +(: cnet_isa_3e2d98ec3c (IsA childbirth parturition) (STV 1.0 0.9091)) +(: cnet_isa_c3758da5fc (IsA childbirth_preparation_class course) (STV 1.0 0.9091)) +(: cnet_isa_9ed64f9490 (IsA childcare service) (STV 1.0 0.9091)) +(: cnet_isa_3a18e78a18 (IsA childhood immaturity) (STV 1.0 0.9091)) +(: cnet_isa_fef00ac2e7 (IsA childhood time_of_life) (STV 1.0 0.9091)) +(: cnet_isa_516b0dedec (IsA childishness youngness) (STV 1.0 0.9091)) +(: cnet_isa_6a4a4efd05 (IsA childlessness situation) (STV 1.0 0.9091)) +(: cnet_isa_4d42b54c0a (IsA children smaller_than_adult) (STV 1.0 0.9091)) +(: cnet_isa_3126cbe182 (IsA children_with_same_parent sibling) (STV 1.0 0.9091)) +(: cnet_isa_601dec9a69 (IsA chilean south_american) (STV 1.0 0.9091)) +(: cnet_isa_464bc59b46 (IsA chilean_cedar cedar) (STV 1.0 0.9091)) +(: cnet_isa_fd58962c52 (IsA chilean_firebush shrub) (STV 1.0 0.9091)) +(: cnet_isa_18d2bbec44 (IsA chilean_jasmine liana) (STV 1.0 0.9091)) +(: cnet_isa_42e5066fa9 (IsA chilean_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_c549b7182e (IsA chilean_nut shrub) (STV 1.0 0.9091)) +(: cnet_isa_ba2648197a (IsA chilean_peso chilean_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_b69c8fae5c (IsA chilean_rimu shrub) (STV 1.0 0.9091)) +(: cnet_isa_35be9fec16 (IsA chili dish) (STV 1.0 0.9091)) +(: cnet_isa_01176ccf31 (IsA chili hot_pepper) (STV 1.0 0.9091)) +(: cnet_isa_50f6af4df3 (IsA chili_dog hotdog) (STV 1.0 0.9091)) +(: cnet_isa_ab4c8d28e3 (IsA chili_powder flavorer) (STV 1.0 0.9091)) +(: cnet_isa_bdfc30f567 (IsA chili_sauce condiment) (STV 1.0 0.9091)) +(: cnet_isa_e08bd2d7a9 (IsA chili_vinegar vinegar) (STV 1.0 0.9091)) +(: cnet_isa_3e84a87650 (IsA chill coldness) (STV 1.0 0.9091)) +(: cnet_isa_54e20145a7 (IsA chill apprehension) (STV 1.0 0.9091)) +(: cnet_isa_912a820c40 (IsA chill symptom) (STV 1.0 0.9091)) +(: cnet_isa_4748a86249 (IsA chilliness coldness) (STV 1.0 0.9091)) +(: cnet_isa_e694be4254 (IsA chilomastix protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_4fbce2c367 (IsA chilomeniscus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_3889d85841 (IsA chilomycterus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_129b0c14b4 (IsA chilopoda class) (STV 1.0 0.9091)) +(: cnet_isa_dd6535ec38 (IsA chilopsis asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4d3f892251 (IsA chiluba bantu) (STV 1.0 0.9091)) +(: cnet_isa_226ee09576 (IsA chimaera holocephalan) (STV 1.0 0.9091)) +(: cnet_isa_29a92ec14f (IsA chimaera mythical_monster) (STV 1.0 0.9091)) +(: cnet_isa_dc28b10030 (IsA chimaeridae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_1bc8d5e29d (IsA chimakum salish) (STV 1.0 0.9091)) +(: cnet_isa_8b8ed515c2 (IsA chimaphila dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3e7e9850fb (IsA chimariko hokan) (STV 1.0 0.9091)) +(: cnet_isa_35e658a3df (IsA chimariko hoka) (STV 1.0 0.9091)) +(: cnet_isa_9d7f115ff5 (IsA chime percussion_instrument) (STV 1.0 0.9091)) +(: cnet_isa_f2eb4d7ab0 (IsA chimera imagination) (STV 1.0 0.9091)) +(: cnet_isa_6bf8b0afad (IsA chimney flue) (STV 1.0 0.9091)) +(: cnet_isa_f432776d48 (IsA chimney_breast wall) (STV 1.0 0.9091)) +(: cnet_isa_deb5a6db68 (IsA chimney_corner corner) (STV 1.0 0.9091)) +(: cnet_isa_f3bdcfbbe0 (IsA chimney_plant campanula) (STV 1.0 0.9091)) +(: cnet_isa_2274c10547 (IsA chimney_swift swift) (STV 1.0 0.9091)) +(: cnet_isa_f2eaa3887e (IsA chimneypot pipe) (STV 1.0 0.9091)) +(: cnet_isa_ad3eeb1d0d (IsA chimneystack flue) (STV 1.0 0.9091)) +(: cnet_isa_95426e017a (IsA chimneysweeper cleaner) (STV 1.0 0.9091)) +(: cnet_isa_a0b51dbc3c (IsA chimonanthus magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1dae8a0ae6 (IsA chimpanzee ape) (STV 1.0 0.9091)) +(: cnet_isa_18ea44db0c (IsA chimpanzee great_ape) (STV 1.0 0.9091)) +(: cnet_isa_2bf8cf5ff7 (IsA chimwini bantu) (STV 1.0 0.9091)) +(: cnet_isa_528468b891 (IsA chin feature) (STV 1.0 0.9091)) +(: cnet_isa_ffe8a9912f (IsA chin_rest rest) (STV 1.0 0.9091)) +(: cnet_isa_4a1fe6493f (IsA chin_strap strap) (STV 1.0 0.9091)) +(: cnet_isa_8e961d0498 (IsA china communist_country) (STV 1.0 0.9091)) +(: cnet_isa_ed80ca5a8b (IsA china country) (STV 1.0 0.9730)) +(: cnet_isa_37425a648c (IsA china enormous_economy) (STV 1.0 0.9091)) +(: cnet_isa_80df936d85 (IsA china very_large_country) (STV 1.0 0.9091)) +(: cnet_isa_d563bbd17e (IsA china porcelain) (STV 1.0 0.9091)) +(: cnet_isa_3c1d06057c (IsA china_aster flower) (STV 1.0 0.9091)) +(: cnet_isa_aaabaad2ea (IsA china_cabinet cabinet) (STV 1.0 0.9091)) +(: cnet_isa_f19184edaa (IsA china_clay clay) (STV 1.0 0.9091)) +(: cnet_isa_fbdfa408c4 (IsA china_pink pink) (STV 1.0 0.9091)) +(: cnet_isa_3cd007277b (IsA china_rose hibiscus) (STV 1.0 0.9091)) +(: cnet_isa_cfc6d0133d (IsA china_rose rose) (STV 1.0 0.9091)) +(: cnet_isa_9eef0c6a3a (IsA china_tree soapberry) (STV 1.0 0.9091)) +(: cnet_isa_92cfd20c03 (IsA chinaberry tree) (STV 1.0 0.9091)) +(: cnet_isa_6658ea0d9b (IsA chinaman bowling) (STV 1.0 0.9091)) +(: cnet_isa_89d7750d9f (IsA chinaware crockery) (STV 1.0 0.9091)) +(: cnet_isa_55c41812a3 (IsA chincapin edible_nut) (STV 1.0 0.9091)) +(: cnet_isa_eaeb9ed5c6 (IsA chinch_bug lygaeid) (STV 1.0 0.9091)) +(: cnet_isa_271d3c792d (IsA chincherinchee star_of_bethlehem) (STV 1.0 0.9091)) +(: cnet_isa_5714591cb9 (IsA chinchilla rodent) (STV 1.0 0.9091)) +(: cnet_isa_65bced6a78 (IsA chinchilla coating) (STV 1.0 0.9091)) +(: cnet_isa_07e78c3302 (IsA chinchilla fur) (STV 1.0 0.9091)) +(: cnet_isa_f5dde06704 (IsA chinchillidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_94b048d1f2 (IsA chine spinal_column) (STV 1.0 0.9091)) +(: cnet_isa_69eab3ee27 (IsA chine cut) (STV 1.0 0.9091)) +(: cnet_isa_c936c2e1bf (IsA chinese human_language) (STV 1.0 0.9339)) +(: cnet_isa_b7bc85e6dc (IsA chinese language) (STV 1.0 0.9454)) +(: cnet_isa_494c04f792 (IsA chinese sinitic) (STV 1.0 0.9091)) +(: cnet_isa_a6bba300e1 (IsA chinese asiatic) (STV 1.0 0.9091)) +(: cnet_isa_aaaa548791 (IsA chinese_alligator alligator) (STV 1.0 0.9091)) +(: cnet_isa_8dd7129ff1 (IsA chinese_angelica shrub) (STV 1.0 0.9091)) +(: cnet_isa_76b01edc2a (IsA chinese_anise spice) (STV 1.0 0.9091)) +(: cnet_isa_53d084d87f (IsA chinese_brown_sauce sauce) (STV 1.0 0.9091)) +(: cnet_isa_9245cf9769 (IsA chinese_cabbage cabbage) (STV 1.0 0.9091)) +(: cnet_isa_dfb2149fe4 (IsA chinese_cabbage crucifer) (STV 1.0 0.9091)) +(: cnet_isa_95d39b2f51 (IsA chinese_checker board_game) (STV 1.0 0.9091)) +(: cnet_isa_0078ad1ef7 (IsA chinese_chestnut chestnut) (STV 1.0 0.9091)) +(: cnet_isa_4d293eca8d (IsA chinese_cork_oak oak) (STV 1.0 0.9091)) +(: cnet_isa_6bceb48765 (IsA chinese_deity deity) (STV 1.0 0.9091)) +(: cnet_isa_efb40250fe (IsA chinese_elm elm) (STV 1.0 0.9091)) +(: cnet_isa_fc5a18cead (IsA chinese_evergreen houseplant) (STV 1.0 0.9091)) +(: cnet_isa_f86ae65f2f (IsA chinese_forget_me_not herb) (STV 1.0 0.9091)) +(: cnet_isa_d857bc090f (IsA chinese_goose goose) (STV 1.0 0.9091)) +(: cnet_isa_eeb723f4cc (IsA chinese_gooseberry vine) (STV 1.0 0.9091)) +(: cnet_isa_55dbdd7c25 (IsA chinese_holly shrub) (STV 1.0 0.9091)) +(: cnet_isa_753960e7f1 (IsA chinese_lantern lantern) (STV 1.0 0.9091)) +(: cnet_isa_ab4f254b52 (IsA chinese_lantern_plant ground_cherry) (STV 1.0 0.9091)) +(: cnet_isa_737637d9d5 (IsA chinese_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_b1ecbad65e (IsA chinese_mustard mustard) (STV 1.0 0.9091)) +(: cnet_isa_28575021ad (IsA chinese_paddlefish ganoid) (STV 1.0 0.9091)) +(: cnet_isa_1fc1e60b1b (IsA chinese_parasol_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_599bad8da7 (IsA chinese_pea_tree pea_tree) (STV 1.0 0.9091)) +(: cnet_isa_6ec53c97cf (IsA chinese_primrose primrose) (STV 1.0 0.9091)) +(: cnet_isa_ce6dc5fa18 (IsA chinese_privet privet) (STV 1.0 0.9091)) +(: cnet_isa_eb62a5a615 (IsA chinese_puzzle puzzle) (STV 1.0 0.9091)) +(: cnet_isa_2d83b17196 (IsA chinese_restaurant_syndrome syndrome) (STV 1.0 0.9091)) +(: cnet_isa_f10107c780 (IsA chinese_rhubarb rhubarb) (STV 1.0 0.9091)) +(: cnet_isa_4c132346c7 (IsA chinese_wistaria wisteria) (STV 1.0 0.9091)) +(: cnet_isa_ae23b93c05 (IsA chink sound) (STV 1.0 0.9091)) +(: cnet_isa_fcda85805a (IsA chink crack) (STV 1.0 0.9091)) +(: cnet_isa_bf6a17c593 (IsA chink chinese) (STV 1.0 0.9091)) +(: cnet_isa_33d2329f54 (IsA chinning_bar bar) (STV 1.0 0.9091)) +(: cnet_isa_bf0e2f4d78 (IsA chino fabric) (STV 1.0 0.9091)) +(: cnet_isa_2dbe2124f0 (IsA chinoiserie genre) (STV 1.0 0.9091)) +(: cnet_isa_639f4da7ee (IsA chinook salmon) (STV 1.0 0.9091)) +(: cnet_isa_1fc65093ad (IsA chinook penutian) (STV 1.0 0.9091)) +(: cnet_isa_46c1ce1f59 (IsA chinook wind) (STV 1.0 0.9091)) +(: cnet_isa_6947abeca0 (IsA chinook_jargon pidgin) (STV 1.0 0.9091)) +(: cnet_isa_7b98bc447f (IsA chinook_salmon salmon) (STV 1.0 0.9091)) +(: cnet_isa_b2e52d64f4 (IsA chinookan penutian) (STV 1.0 0.9091)) +(: cnet_isa_5188d36e0a (IsA chino pair_of_trouser) (STV 1.0 0.9091)) +(: cnet_isa_88ec4993a1 (IsA chinquapin_oak chestnut_oak) (STV 1.0 0.9091)) +(: cnet_isa_80c29e0c6f (IsA chintz fabric) (STV 1.0 0.9091)) +(: cnet_isa_680974c3b2 (IsA chiococca asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_cb3f6bd51a (IsA chionanthus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_81556d479c (IsA chip breakage) (STV 1.0 0.9091)) +(: cnet_isa_ddf29499fc (IsA chip counter) (STV 1.0 0.9091)) +(: cnet_isa_875a1b513e (IsA chip semiconductor_device) (STV 1.0 0.9091)) +(: cnet_isa_c4cadb3a1c (IsA chip snack_food) (STV 1.0 0.9091)) +(: cnet_isa_be9b8b8c7c (IsA chip approach) (STV 1.0 0.9091)) +(: cnet_isa_250d7e52b9 (IsA chip dropping) (STV 1.0 0.9091)) +(: cnet_isa_79f5e1213a (IsA chip float) (STV 1.0 0.9091)) +(: cnet_isa_ec15012551 (IsA chipboard board) (STV 1.0 0.9091)) +(: cnet_isa_25873206da (IsA chipewyan athapaskan) (STV 1.0 0.9091)) +(: cnet_isa_5f9e0f22df (IsA chipewyan athabascan) (STV 1.0 0.9091)) +(: cnet_isa_d99ed98dfc (IsA chipmunk squirrel) (STV 1.0 0.9091)) +(: cnet_isa_00a6320ad7 (IsA chipolata sausage) (STV 1.0 0.9091)) +(: cnet_isa_bf92559b06 (IsA chipotle jalapeno) (STV 1.0 0.9091)) +(: cnet_isa_3b6439b17f (IsA chippewa algonquin) (STV 1.0 0.9091)) +(: cnet_isa_657e087f7c (IsA chippewa buffalo_indian) (STV 1.0 0.9091)) +(: cnet_isa_2dd7a5661f (IsA chipping_sparrow new_world_sparrow) (STV 1.0 0.9091)) +(: cnet_isa_98f9e50c9a (IsA chiralgia pain) (STV 1.0 0.9091)) +(: cnet_isa_aab517e666 (IsA chiricahua_apache apache) (STV 1.0 0.9091)) +(: cnet_isa_9f40082aa0 (IsA chiron centaur) (STV 1.0 0.9091)) +(: cnet_isa_985189e3aa (IsA chiron asteroid) (STV 1.0 0.9091)) +(: cnet_isa_74b86ccdcc (IsA chironomidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_d2a456d422 (IsA chironomus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_05bd65b87c (IsA chiropodist specialist) (STV 1.0 0.9091)) +(: cnet_isa_399592dfb9 (IsA chiropractic treatment) (STV 1.0 0.9091)) +(: cnet_isa_b7ec79a088 (IsA chiropractor therapist) (STV 1.0 0.9091)) +(: cnet_isa_4b394460df (IsA chiroptera animal_order) (STV 1.0 0.9091)) +(: cnet_isa_dcfd8de4d4 (IsA chirp sound) (STV 1.0 0.9091)) +(: cnet_isa_fa559d9b06 (IsA chirpiness animation) (STV 1.0 0.9091)) +(: cnet_isa_73c3bd0879 (IsA chirrup sound) (STV 1.0 0.9091)) +(: cnet_isa_cf750e145e (IsA chisel edge_tool) (STV 1.0 0.9091)) +(: cnet_isa_7579c77be0 (IsA chisel_steel steel) (STV 1.0 0.9091)) +(: cnet_isa_4bb3af559e (IsA chishona bantu) (STV 1.0 0.9091)) +(: cnet_isa_f3325d58e2 (IsA chit girl) (STV 1.0 0.9091)) +(: cnet_isa_0ced8e4fa4 (IsA chitchat chat) (STV 1.0 0.9091)) +(: cnet_isa_16a95b2bb4 (IsA chitin polysaccharide) (STV 1.0 0.9091)) +(: cnet_isa_a303cae6c7 (IsA chiton mollusk) (STV 1.0 0.9091)) +(: cnet_isa_cdbf8ec681 (IsA chiton tunic) (STV 1.0 0.9091)) +(: cnet_isa_4b6c049475 (IsA chitterling variety_meat) (STV 1.0 0.9091)) +(: cnet_isa_bd17cdac2c (IsA chivalry courtesy) (STV 1.0 0.9091)) +(: cnet_isa_90656ca8fb (IsA chivalry principle) (STV 1.0 0.9091)) +(: cnet_isa_c67b39d0de (IsA chive herb) (STV 1.0 0.9091)) +(: cnet_isa_b754097cb6 (IsA chive alliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_dab48c7579 (IsA chiwere siouan) (STV 1.0 0.9091)) +(: cnet_isa_4e3abc8d32 (IsA chlamydera bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_d4ee0226d2 (IsA chlamydia eubacteria) (STV 1.0 0.9091)) +(: cnet_isa_228540eae2 (IsA chlamydia venereal_disease) (STV 1.0 0.9091)) +(: cnet_isa_efdb1daabb (IsA chlamydia_psittaci chlamydia) (STV 1.0 0.9091)) +(: cnet_isa_3c7d23cc97 (IsA chlamydia_trachomatis chlamydia) (STV 1.0 0.9091)) +(: cnet_isa_aa01ffc0b2 (IsA chlamydiaceae bacteria_family) (STV 1.0 0.9091)) +(: cnet_isa_0621397d21 (IsA chlamydomonadaceae protoctist_family) (STV 1.0 0.9091)) +(: cnet_isa_cf45fee0a6 (IsA chlamydomona protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_6d46990a14 (IsA chlamydosaurus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_0b5f540299 (IsA chlamydospore spore) (STV 1.0 0.9091)) +(: cnet_isa_2ca4970626 (IsA chlamyphorus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_97e1aea9d0 (IsA chlamy cape) (STV 1.0 0.9091)) +(: cnet_isa_a0531b59c6 (IsA chloasma symptom) (STV 1.0 0.9091)) +(: cnet_isa_91500035f1 (IsA chloral_hydrate sedative) (STV 1.0 0.9091)) +(: cnet_isa_eecf14f6b1 (IsA chloramine antiseptic) (STV 1.0 0.9091)) +(: cnet_isa_c28f9bebf7 (IsA chloramphenicol antibiotic) (STV 1.0 0.9091)) +(: cnet_isa_01a027a600 (IsA chloranthaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_6ca0ecec62 (IsA chloranthus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9aa3055c5f (IsA chlorate salt) (STV 1.0 0.9091)) +(: cnet_isa_c3556fa953 (IsA chlorella alga) (STV 1.0 0.9091)) +(: cnet_isa_27adc38e8d (IsA chlorenchyma parenchyma) (STV 1.0 0.9091)) +(: cnet_isa_35effd9b3c (IsA chlorhexidine antiseptic) (STV 1.0 0.9091)) +(: cnet_isa_23a719ba24 (IsA chloric_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_66f4c3c463 (IsA chloride compound) (STV 1.0 0.9091)) +(: cnet_isa_78edc1d841 (IsA chloride halide) (STV 1.0 0.9091)) +(: cnet_isa_073c2d494b (IsA chlorination disinfection) (STV 1.0 0.9091)) +(: cnet_isa_053788298d (IsA chlorination chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_5f8f8d5b15 (IsA chlorine chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_9c465bf154 (IsA chlorine gas) (STV 1.0 0.9091)) +(: cnet_isa_8e15a6d9ea (IsA chlorine halogen) (STV 1.0 0.9091)) +(: cnet_isa_d5b5623cf8 (IsA chlorine_dioxide bleaching_agent) (STV 1.0 0.9091)) +(: cnet_isa_0948377b75 (IsA chlorine_dioxide dioxide) (STV 1.0 0.9091)) +(: cnet_isa_03b48af15b (IsA chlorine_water bleaching_agent) (STV 1.0 0.9091)) +(: cnet_isa_d471e98966 (IsA chlorine_water solution) (STV 1.0 0.9091)) +(: cnet_isa_5604b6886b (IsA chlorinity definite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_0be1b392ab (IsA chloris monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9428f31539 (IsA chlorite mineral) (STV 1.0 0.9091)) +(: cnet_isa_8f41ea714c (IsA chloroacetophenone tear_gas) (STV 1.0 0.9091)) +(: cnet_isa_5a3096d99f (IsA chlorobenzene hydrocarbon) (STV 1.0 0.9091)) +(: cnet_isa_590aa48566 (IsA chlorobenzene solvent) (STV 1.0 0.9091)) +(: cnet_isa_3941876489 (IsA chlorobenzylidenemalononitrile tear_gas) (STV 1.0 0.9091)) +(: cnet_isa_9bad4de5b9 (IsA chlorococcale protoctist_order) (STV 1.0 0.9091)) +(: cnet_isa_6f943ab12f (IsA chlorococcum protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_b7837bc1bd (IsA chlorofluorocarbon fluorocarbon) (STV 1.0 0.9091)) +(: cnet_isa_710d32ff20 (IsA chlorofluorocarbon greenhouse_gas) (STV 1.0 0.9091)) +(: cnet_isa_3f8cf27572 (IsA chlorofluorocarbon pollutant) (STV 1.0 0.9091)) +(: cnet_isa_ffb54c6d10 (IsA chloroform haloform) (STV 1.0 0.9091)) +(: cnet_isa_24a0d9343a (IsA chloroform inhalation_anesthetic) (STV 1.0 0.9091)) +(: cnet_isa_a60c770423 (IsA chlorophis reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_79776fbdc2 (IsA chlorophoneus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_cbefcf0e41 (IsA chlorophthalmidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_d4e9f80e1a (IsA chlorophyceae class) (STV 1.0 0.9091)) +(: cnet_isa_cc5b5ed533 (IsA chlorophyll chemical) (STV 1.0 0.9339)) +(: cnet_isa_b55f8f13b9 (IsA chlorophyll chlorophyll) (STV 1.0 0.9091)) +(: cnet_isa_e63279bf16 (IsA chlorophyll pigment) (STV 1.0 0.9091)) +(: cnet_isa_4247a97382 (IsA chlorophyll_b chlorophyll) (STV 1.0 0.9091)) +(: cnet_isa_a407d5135f (IsA chlorophyll_c chlorophyll) (STV 1.0 0.9091)) +(: cnet_isa_11f977eacf (IsA chlorophyll_d chlorophyll) (STV 1.0 0.9091)) +(: cnet_isa_6d5ce38112 (IsA chlorophyll_molecule chlorophyll) (STV 1.0 0.9091)) +(: cnet_isa_518a23962e (IsA chlorophyll_molecule molecule) (STV 1.0 0.9091)) +(: cnet_isa_1522edb60c (IsA chlorophyllum_molybdite agaric) (STV 1.0 0.9091)) +(: cnet_isa_707ed19f40 (IsA chlorophyta division) (STV 1.0 0.9091)) +(: cnet_isa_4261574b01 (IsA chloropicrin compound) (STV 1.0 0.9091)) +(: cnet_isa_70888cc1cd (IsA chloroplast plastid) (STV 1.0 0.9091)) +(: cnet_isa_46b39a291c (IsA chloroprene butadiene) (STV 1.0 0.9091)) +(: cnet_isa_35e4c7d99a (IsA chloroquine antimalarial) (STV 1.0 0.9091)) +(: cnet_isa_0ca82da366 (IsA chlorosis iron_deficiency_anemia) (STV 1.0 0.9091)) +(: cnet_isa_fb8e8cf406 (IsA chlorous_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_decebfa7a7 (IsA chloroxylon rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_54d733c309 (IsA chlorpyrifo organophosphate) (STV 1.0 0.9091)) +(: cnet_isa_e20be5c7c7 (IsA chlorura bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_45a46fa2bd (IsA choanocyte flagellated_cell) (STV 1.0 0.9091)) +(: cnet_isa_b431073f84 (IsA choc chocolate_candy) (STV 1.0 0.9091)) +(: cnet_isa_be4a5bee90 (IsA choc_ice chocolate_ice_cream) (STV 1.0 0.9091)) +(: cnet_isa_07bc27e0b7 (IsA chock block) (STV 1.0 0.9091)) +(: cnet_isa_394e5c10eb (IsA chocolate candy) (STV 1.0 0.9524)) +(: cnet_isa_beeb79e08c (IsA chocolate favorite_food_of_people) (STV 1.0 0.9091)) +(: cnet_isa_39e0478dd4 (IsA chocolate food) (STV 1.0 0.9659)) +(: cnet_isa_f33ec44cac (IsA chocolate brown) (STV 1.0 0.9091)) +(: cnet_isa_b7e50181b3 (IsA chocolate_bar chocolate_candy) (STV 1.0 0.9091)) +(: cnet_isa_61170aaef9 (IsA chocolate_cake cake) (STV 1.0 0.9091)) +(: cnet_isa_e68d85b073 (IsA chocolate_candy chocolate) (STV 1.0 0.9091)) +(: cnet_isa_e6ed171d7e (IsA chocolate_chip_cookie cookie) (STV 1.0 0.9091)) +(: cnet_isa_6ea60e0b69 (IsA chocolate_eclair eclair) (STV 1.0 0.9091)) +(: cnet_isa_8244d30149 (IsA chocolate_egg easter_egg) (STV 1.0 0.9091)) +(: cnet_isa_b25a96855d (IsA chocolate_fondue fondue) (STV 1.0 0.9091)) +(: cnet_isa_7429da05c4 (IsA chocolate_fudge fudge) (STV 1.0 0.9091)) +(: cnet_isa_09e606ed48 (IsA chocolate_ice_cream ice_cream) (STV 1.0 0.9091)) +(: cnet_isa_5c035dd9eb (IsA chocolate_kiss chocolate_candy) (STV 1.0 0.9091)) +(: cnet_isa_2060f03ded (IsA chocolate_kiss kiss) (STV 1.0 0.9091)) +(: cnet_isa_2ac5be0e20 (IsA chocolate_liquor chocolate) (STV 1.0 0.9091)) +(: cnet_isa_3eb0250a20 (IsA chocolate_milk milk) (STV 1.0 0.9091)) +(: cnet_isa_8329f0ace4 (IsA chocolate_mousse mousse) (STV 1.0 0.9091)) +(: cnet_isa_e06f93ec51 (IsA chocolate_pudding pudding) (STV 1.0 0.9091)) +(: cnet_isa_00aa10c0a7 (IsA chocolate_sauce sauce) (STV 1.0 0.9091)) +(: cnet_isa_c2d51a4117 (IsA choctaw muskhogean) (STV 1.0 0.9091)) +(: cnet_isa_10351c7db1 (IsA choctaw muskogean) (STV 1.0 0.9091)) +(: cnet_isa_3645a24e20 (IsA choeronycteris mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_0b1bddf03a (IsA choice action) (STV 1.0 0.9091)) +(: cnet_isa_0b40cae923 (IsA choice decision_making) (STV 1.0 0.9091)) +(: cnet_isa_72f4dd1503 (IsA choice_morsel dainty) (STV 1.0 0.9091)) +(: cnet_isa_6039ff4ac7 (IsA choir group_of_people) (STV 1.0 0.9091)) +(: cnet_isa_296f4e9d10 (IsA choir area) (STV 1.0 0.9091)) +(: cnet_isa_2f4cf76550 (IsA choir chorus) (STV 1.0 0.9091)) +(: cnet_isa_2633af33c7 (IsA choir set) (STV 1.0 0.9091)) +(: cnet_isa_4bdcd8f788 (IsA choir_loft gallery) (STV 1.0 0.9091)) +(: cnet_isa_54db1e37c7 (IsA choir_school preparatory_school) (STV 1.0 0.9091)) +(: cnet_isa_8d3624a033 (IsA choirboy chorister) (STV 1.0 0.9091)) +(: cnet_isa_48c8863d49 (IsA choirmaster musician) (STV 1.0 0.9091)) +(: cnet_isa_a155bb2e88 (IsA choke coil) (STV 1.0 0.9091)) +(: cnet_isa_aed9a6a29f (IsA choke valve) (STV 1.0 0.9091)) +(: cnet_isa_91540c6744 (IsA chokecherry cherry) (STV 1.0 0.9091)) +(: cnet_isa_b8ee2ad612 (IsA chokecherry fruit) (STV 1.0 0.9091)) +(: cnet_isa_6f09b55374 (IsA chokedamp carbon_dioxide) (STV 1.0 0.9091)) +(: cnet_isa_7df8449be5 (IsA chokehold clasp) (STV 1.0 0.9091)) +(: cnet_isa_efcae5d9da (IsA chokepoint point) (STV 1.0 0.9091)) +(: cnet_isa_a109c60ee2 (IsA choker collar) (STV 1.0 0.9091)) +(: cnet_isa_9ec25c15fe (IsA choker necklace) (STV 1.0 0.9091)) +(: cnet_isa_81aa959e41 (IsA choker unfortunate) (STV 1.0 0.9091)) +(: cnet_isa_15f79b2f02 (IsA chokey prison) (STV 1.0 0.9091)) +(: cnet_isa_d5e7e2b308 (IsA choking suffocation) (STV 1.0 0.9091)) +(: cnet_isa_f97d9a2e84 (IsA choking disorder) (STV 1.0 0.9091)) +(: cnet_isa_35e62e7711 (IsA cholangiography roentgenography) (STV 1.0 0.9091)) +(: cnet_isa_872cf41868 (IsA cholangitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_a8598457d0 (IsA cholecystectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_42d70a24e9 (IsA cholecystitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_ecf017c35a (IsA cholecystokinin gastrointestinal_hormone) (STV 1.0 0.9091)) +(: cnet_isa_b53f661072 (IsA cholelithiasis lithiasis) (STV 1.0 0.9091)) +(: cnet_isa_3d643738b1 (IsA cholelithotomy lithotomy) (STV 1.0 0.9091)) +(: cnet_isa_5058c7e60d (IsA cholera infectious_disease) (STV 1.0 0.9091)) +(: cnet_isa_f93ee2b3e6 (IsA cholera_infantum gastroenteritis) (STV 1.0 0.9091)) +(: cnet_isa_53855fb72d (IsA cholera_morbus gastroenteritis) (STV 1.0 0.9091)) +(: cnet_isa_23686bccf8 (IsA cholesterol sterol) (STV 1.0 0.9091)) +(: cnet_isa_d140b4d13e (IsA cholic_acid bile_acid) (STV 1.0 0.9091)) +(: cnet_isa_4169a5e43f (IsA choline b_complex_vitamin) (STV 1.0 0.9091)) +(: cnet_isa_ecf3314cea (IsA cholinesterase enzyme) (STV 1.0 0.9091)) +(: cnet_isa_4aea0bd815 (IsA cholla cactus) (STV 1.0 0.9091)) +(: cnet_isa_7fb901009b (IsA choloepus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_f74d1a830f (IsA chomping chew) (STV 1.0 0.9091)) +(: cnet_isa_f05dc76410 (IsA chon north_korean_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_44eb63efe5 (IsA chon south_korean_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_16677c77a7 (IsA chondrichthye class) (STV 1.0 0.9091)) +(: cnet_isa_a7c4bdd382 (IsA chondrin scleroprotein) (STV 1.0 0.9091)) +(: cnet_isa_c0550a73c4 (IsA chondrite meteorite) (STV 1.0 0.9091)) +(: cnet_isa_1eef9701cc (IsA chondrite rock) (STV 1.0 0.9091)) +(: cnet_isa_a2f580d97f (IsA chondroma benign_tumor) (STV 1.0 0.9091)) +(: cnet_isa_c9e2e2549b (IsA chondrosarcoma sarcoma) (STV 1.0 0.9091)) +(: cnet_isa_6b06494ede (IsA chondrule granule) (STV 1.0 0.9091)) +(: cnet_isa_64d3947e0c (IsA chondrus protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_3b3765b3ab (IsA choo_choo locomotive) (STV 1.0 0.9091)) +(: cnet_isa_312af18779 (IsA chop grounder) (STV 1.0 0.9091)) +(: cnet_isa_76b7bccbe0 (IsA chop return) (STV 1.0 0.9091)) +(: cnet_isa_891fe0c279 (IsA chop jaw) (STV 1.0 0.9091)) +(: cnet_isa_be2b91418e (IsA chop cut) (STV 1.0 0.9091)) +(: cnet_isa_b26225b618 (IsA chop physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_101bbce59a (IsA chop_shop workshop) (STV 1.0 0.9091)) +(: cnet_isa_fd4d06a41a (IsA chop_suey dish) (STV 1.0 0.9091)) +(: cnet_isa_a6b28dcae8 (IsA chop_suey_green green) (STV 1.0 0.9091)) +(: cnet_isa_be7653f1bd (IsA chop_suey_green chrysanthemum) (STV 1.0 0.9091)) +(: cnet_isa_c52f241653 (IsA chopin music) (STV 1.0 0.9091)) +(: cnet_isa_57853f1895 (IsA chopine shoe) (STV 1.0 0.9091)) +(: cnet_isa_dff89cec9b (IsA chopped_steak beefsteak) (STV 1.0 0.9091)) +(: cnet_isa_eecf7481bf (IsA chopper tooth) (STV 1.0 0.9091)) +(: cnet_isa_59a4588f47 (IsA choppiness storminess) (STV 1.0 0.9091)) +(: cnet_isa_3f67cea708 (IsA chopping_block block) (STV 1.0 0.9091)) +(: cnet_isa_df2b3fcdfd (IsA chopping_board board) (STV 1.0 0.9091)) +(: cnet_isa_a495b3b18d (IsA chopstick tableware) (STV 1.0 0.9091)) +(: cnet_isa_63512a1b06 (IsA choragus leader) (STV 1.0 0.9091)) +(: cnet_isa_8053005cad (IsA choral_ode ode) (STV 1.0 0.9091)) +(: cnet_isa_a3d22777e4 (IsA chorale hymn) (STV 1.0 0.9091)) +(: cnet_isa_fd98aa361c (IsA chorale_prelude prelude) (STV 1.0 0.9091)) +(: cnet_isa_9a3521b892 (IsA chord note) (STV 1.0 0.9091)) +(: cnet_isa_3db6646e44 (IsA chord straight_line) (STV 1.0 0.9091)) +(: cnet_isa_c44e35bc8f (IsA chordamesoderm mesoderm) (STV 1.0 0.9091)) +(: cnet_isa_e7baff68df (IsA chordata phylum) (STV 1.0 0.9091)) +(: cnet_isa_4643f8a58e (IsA chordate animal) (STV 1.0 0.9091)) +(: cnet_isa_994dc15fc0 (IsA chordate_family family) (STV 1.0 0.9091)) +(: cnet_isa_59684e6e86 (IsA chordate_genus genus) (STV 1.0 0.9091)) +(: cnet_isa_6823ce6888 (IsA chordeile bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_ecf77fd127 (IsA chorditis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_60f6fd73ce (IsA chordophone stringed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_d54018ab8c (IsA chordospartium rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b44a7ee3fe (IsA chorea degenerative_disorder) (STV 1.0 0.9091)) +(: cnet_isa_1dc23bb2a8 (IsA chorea nervous_disorder) (STV 1.0 0.9091)) +(: cnet_isa_aac45280cc (IsA choreic_abasia abasia) (STV 1.0 0.9091)) +(: cnet_isa_4eb4a1c5d9 (IsA choreographer creator) (STV 1.0 0.9091)) +(: cnet_isa_dc20fd3482 (IsA choreography dance) (STV 1.0 0.9091)) +(: cnet_isa_f3abc2563e (IsA choreography notation) (STV 1.0 0.9091)) +(: cnet_isa_6d3650acb4 (IsA chorioallantois membrane) (STV 1.0 0.9091)) +(: cnet_isa_9e26d577fd (IsA choriomeningitis meningitis) (STV 1.0 0.9091)) +(: cnet_isa_4a6eb6419e (IsA chorion sac) (STV 1.0 0.9091)) +(: cnet_isa_bfb4dcc51d (IsA chorionic_villus villus) (STV 1.0 0.9091)) +(: cnet_isa_df7e398b0c (IsA chorionic_villus_sampling biopsy) (STV 1.0 0.9091)) +(: cnet_isa_50679a568d (IsA chorioretinitis retinitis) (STV 1.0 0.9091)) +(: cnet_isa_0785a838ea (IsA choriotis bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_eb422b3764 (IsA chorister singer) (STV 1.0 0.9091)) +(: cnet_isa_07383cbf5d (IsA chorizagrotis arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_1a31d599d6 (IsA chorizema rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b51558780a (IsA chorizo sausage) (STV 1.0 0.9091)) +(: cnet_isa_e12fef5349 (IsA choroid membrane) (STV 1.0 0.9091)) +(: cnet_isa_9167b9945b (IsA choroid_plexus plexus) (STV 1.0 0.9091)) +(: cnet_isa_38f7e5f18d (IsA choroid_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_02726ce1a3 (IsA choroidal_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_ff9277b398 (IsA choropleth_map map) (STV 1.0 0.9091)) +(: cnet_isa_68c03a528a (IsA chortle laugh) (STV 1.0 0.9091)) +(: cnet_isa_603fca7f9f (IsA chorus sound) (STV 1.0 0.9091)) +(: cnet_isa_e1b717bd06 (IsA chorus line) (STV 1.0 0.9091)) +(: cnet_isa_11ace3a134 (IsA chorus musical_organization) (STV 1.0 0.9091)) +(: cnet_isa_cd95040674 (IsA chorus company) (STV 1.0 0.9091)) +(: cnet_isa_90a0191b21 (IsA chorus_frog tree_toad) (STV 1.0 0.9091)) +(: cnet_isa_bc13f875d1 (IsA chorus_girl dancer) (STV 1.0 0.9091)) +(: cnet_isa_41d759eb96 (IsA chosen elite) (STV 1.0 0.9091)) +(: cnet_isa_0e2fe08d6a (IsA chosen darling) (STV 1.0 0.9091)) +(: cnet_isa_9a219f090a (IsA chosen_people people) (STV 1.0 0.9091)) +(: cnet_isa_a961e4985c (IsA chough corvine_bird) (STV 1.0 0.9091)) +(: cnet_isa_19447200af (IsA chow breed_of_dog) (STV 1.0 0.9091)) +(: cnet_isa_cddafdb53e (IsA chow spitz) (STV 1.0 0.9091)) +(: cnet_isa_ee33bb9a53 (IsA chow fare) (STV 1.0 0.9091)) +(: cnet_isa_dfc9a3e351 (IsA chow_line queue) (STV 1.0 0.9091)) +(: cnet_isa_69981253b0 (IsA chow_mein dish) (STV 1.0 0.9091)) +(: cnet_isa_260733405c (IsA chowchow conserve) (STV 1.0 0.9091)) +(: cnet_isa_3de29e8e70 (IsA chowchow relish) (STV 1.0 0.9091)) +(: cnet_isa_cd8ab18ddb (IsA chowder soup) (STV 1.0 0.9091)) +(: cnet_isa_f01845dafe (IsA chrestomathy excerpt) (STV 1.0 0.9091)) +(: cnet_isa_6fc3dd43b4 (IsA chrism ointment) (STV 1.0 0.9091)) +(: cnet_isa_788afaebac (IsA christ_s_thorn shrub) (STV 1.0 0.9091)) +(: cnet_isa_ad5807287b (IsA christella fern) (STV 1.0 0.9091)) +(: cnet_isa_cb8fb631ce (IsA christendom body) (STV 1.0 0.9091)) +(: cnet_isa_9947340160 (IsA christening baptism) (STV 1.0 0.9091)) +(: cnet_isa_e49140a7c1 (IsA christian follower_of_christ) (STV 1.0 0.9339)) +(: cnet_isa_c5547ee322 (IsA christian religionist) (STV 1.0 0.9091)) +(: cnet_isa_b57ea7c5ae (IsA christian_church protestant_denomination) (STV 1.0 0.9091)) +(: cnet_isa_6cde4d20f4 (IsA christian_holy_day religious_holiday) (STV 1.0 0.9091)) +(: cnet_isa_78a103385a (IsA christian_liturgy liturgy) (STV 1.0 0.9091)) +(: cnet_isa_e6176d35ff (IsA christian_name first_name) (STV 1.0 0.9091)) +(: cnet_isa_f961ce665e (IsA christian_science protestantism) (STV 1.0 0.9091)) +(: cnet_isa_22700350db (IsA christian_science protestant_denomination) (STV 1.0 0.9091)) +(: cnet_isa_ca9a42e881 (IsA christian_scientist protestant) (STV 1.0 0.9091)) +(: cnet_isa_0d531f298f (IsA christian_theology theology) (STV 1.0 0.9091)) +(: cnet_isa_1e80473ebe (IsA christianity major_world_religion) (STV 1.0 0.9091)) +(: cnet_isa_65deb14062 (IsA christianity monotheistic_religion) (STV 1.0 0.9091)) +(: cnet_isa_c83b089a68 (IsA christianity relegion) (STV 1.0 0.9091)) +(: cnet_isa_672dddc58b (IsA christianity religion) (STV 1.0 0.9677)) +(: cnet_isa_ee07a879d2 (IsA christianization conversion) (STV 1.0 0.9091)) +(: cnet_isa_121c8ff3d2 (IsA christian people) (STV 1.0 0.9339)) +(: cnet_isa_5ff406a22d (IsA christma christian_holiday) (STV 1.0 0.9524)) +(: cnet_isa_86cecf735c (IsA christma commercialized_holiday) (STV 1.0 0.9339)) +(: cnet_isa_17b47244ca (IsA christma holiday) (STV 1.0 0.9572)) +(: cnet_isa_769fe8948e (IsA christma on_december_25) (STV 1.0 0.9091)) +(: cnet_isa_e3fbd1dc33 (IsA christma subset_of_holiday) (STV 1.0 0.9339)) +(: cnet_isa_b9e35acc26 (IsA christma feast_day) (STV 1.0 0.9091)) +(: cnet_isa_e92eff98d7 (IsA christma holy_day_of_obligation) (STV 1.0 0.9091)) +(: cnet_isa_c18acdf986 (IsA christma legal_holiday) (STV 1.0 0.9091)) +(: cnet_isa_d05413bfa9 (IsA christma quarter_day) (STV 1.0 0.9091)) +(: cnet_isa_a02c5efb12 (IsA christma season) (STV 1.0 0.9091)) +(: cnet_isa_1a8a9f8406 (IsA christma_begonia begonia) (STV 1.0 0.9091)) +(: cnet_isa_c2cfcedae1 (IsA christma_bell flower) (STV 1.0 0.9091)) +(: cnet_isa_e05232eed5 (IsA christma_box gratuity) (STV 1.0 0.9091)) +(: cnet_isa_bdfc255f8e (IsA christma_bush tree) (STV 1.0 0.9091)) +(: cnet_isa_dc988b232d (IsA christma_cactus cactus) (STV 1.0 0.9091)) +(: cnet_isa_a0611f50b6 (IsA christma_cake fruitcake) (STV 1.0 0.9091)) +(: cnet_isa_03b734256f (IsA christma_card greeting_card) (STV 1.0 0.9091)) +(: cnet_isa_100fb0a608 (IsA christma_eve holiday) (STV 1.0 0.9091)) +(: cnet_isa_71c72b5aba (IsA christma_factor coagulation_factor) (STV 1.0 0.9091)) +(: cnet_isa_df01732eb7 (IsA christma_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_3bfc7c2fec (IsA christma_present present) (STV 1.0 0.9091)) +(: cnet_isa_d147621d43 (IsA christma_rose hellebore) (STV 1.0 0.9091)) +(: cnet_isa_f681c0f1a8 (IsA christma_stocking stocking) (STV 1.0 0.9091)) +(: cnet_isa_357a29edfc (IsA christma_tree decoration) (STV 1.0 0.9091)) +(: cnet_isa_8f93afcc97 (IsA christmasberry shrub) (STV 1.0 0.9091)) +(: cnet_isa_fef083cd54 (IsA christology christian_theology) (STV 1.0 0.9091)) +(: cnet_isa_75b40d51b7 (IsA christology theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_2fa236b296 (IsA chromate salt) (STV 1.0 0.9091)) +(: cnet_isa_4d0fe34354 (IsA chromatic_aberration aberration) (STV 1.0 0.9091)) +(: cnet_isa_35e293ffc5 (IsA chromatic_color color) (STV 1.0 0.9091)) +(: cnet_isa_9430832cdd (IsA chromatic_scale scale) (STV 1.0 0.9091)) +(: cnet_isa_0cfcb2aea1 (IsA chromatid fibril) (STV 1.0 0.9091)) +(: cnet_isa_962fd24196 (IsA chromatin body_substance) (STV 1.0 0.9091)) +(: cnet_isa_97690b9851 (IsA chromatism pigmentation) (STV 1.0 0.9091)) +(: cnet_isa_acd6e5a444 (IsA chromatism visual_hallucination) (STV 1.0 0.9091)) +(: cnet_isa_e8b4a23f67 (IsA chromatogram recording) (STV 1.0 0.9091)) +(: cnet_isa_53c800c34b (IsA chromatography natural_process) (STV 1.0 0.9091)) +(: cnet_isa_f59013b116 (IsA chrome chromium) (STV 1.0 0.9091)) +(: cnet_isa_7dc6c7222a (IsA chrome_alum mordant) (STV 1.0 0.9091)) +(: cnet_isa_dc1edcaec8 (IsA chrome_alum salt) (STV 1.0 0.9091)) +(: cnet_isa_8daeb33255 (IsA chrome_green green) (STV 1.0 0.9091)) +(: cnet_isa_b82b423692 (IsA chrome_green pigment) (STV 1.0 0.9091)) +(: cnet_isa_c1b2414f10 (IsA chrome_red red) (STV 1.0 0.9091)) +(: cnet_isa_6d17b1883e (IsA chrome_tungsten_steel alloy_steel) (STV 1.0 0.9091)) +(: cnet_isa_f53cd0a0a3 (IsA chrome_yellow pigment) (STV 1.0 0.9091)) +(: cnet_isa_7155cf09ac (IsA chromesthesia synesthesia) (STV 1.0 0.9091)) +(: cnet_isa_631b120e6f (IsA chromic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_5b7b239c35 (IsA chromite mineral) (STV 1.0 0.9091)) +(: cnet_isa_172d992ab3 (IsA chromium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_f7c0047121 (IsA chromoblastomycosis blastomycosis) (STV 1.0 0.9091)) +(: cnet_isa_a30c0178a0 (IsA chromogen compound) (STV 1.0 0.9091)) +(: cnet_isa_7b70c8cb39 (IsA chromolithography lithography) (STV 1.0 0.9091)) +(: cnet_isa_dfffcf4083 (IsA chromophore group) (STV 1.0 0.9091)) +(: cnet_isa_b81d3ada93 (IsA chromoplast plastid) (STV 1.0 0.9091)) +(: cnet_isa_6af6fc3a7f (IsA chromosomal_aberration aberrance) (STV 1.0 0.9091)) +(: cnet_isa_022a8a13ac (IsA chromosome body) (STV 1.0 0.9091)) +(: cnet_isa_f12505c861 (IsA chromosphere layer) (STV 1.0 0.9091)) +(: cnet_isa_6016a4adea (IsA chronic_bronchitis bronchitis) (STV 1.0 0.9091)) +(: cnet_isa_a9626c7073 (IsA chronic_gastritis gastritis) (STV 1.0 0.9091)) +(: cnet_isa_9cb6e7e8e1 (IsA chronic_glaucoma glaucoma) (STV 1.0 0.9091)) +(: cnet_isa_f67a1df79e (IsA chronic_glossitis glossitis) (STV 1.0 0.9091)) +(: cnet_isa_3c2aeca7b3 (IsA chronic_leukemia leukemia) (STV 1.0 0.9091)) +(: cnet_isa_f2e291485e (IsA chronic_lymphocytic_leukemia chronic_leukemia) (STV 1.0 0.9091)) +(: cnet_isa_7e95b2725e (IsA chronic_myelocytic_leukemia chronic_leukemia) (STV 1.0 0.9091)) +(: cnet_isa_cc4eb408d1 (IsA chronic_myelocytic_leukemia myelocytic_leukemia) (STV 1.0 0.9091)) +(: cnet_isa_cb633f14df (IsA chronic_obstructive_pulmonary_disease chronic_bronchitis) (STV 1.0 0.9091)) +(: cnet_isa_3d7c5b0d6b (IsA chronic_obstructive_pulmonary_disease emphysema) (STV 1.0 0.9091)) +(: cnet_isa_ebf1d88503 (IsA chronic_pyelonephritis pyelonephritis) (STV 1.0 0.9091)) +(: cnet_isa_ad6e77ba61 (IsA chronic_renal_failure renal_failure) (STV 1.0 0.9091)) +(: cnet_isa_3a7ca046e8 (IsA chronic_wasting_disease animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_0843b8eb2b (IsA chronicler historian) (STV 1.0 0.9091)) +(: cnet_isa_6c8d0b3a9f (IsA chronograph timer) (STV 1.0 0.9091)) +(: cnet_isa_d46c4119e1 (IsA chronological_age age) (STV 1.0 0.9091)) +(: cnet_isa_3bf1a6ed1f (IsA chronology humanistic_discipline) (STV 1.0 0.9091)) +(: cnet_isa_fe43071310 (IsA chronology written_record) (STV 1.0 0.9091)) +(: cnet_isa_925ff81ef0 (IsA chronology temporal_relation) (STV 1.0 0.9091)) +(: cnet_isa_a30194fddc (IsA chronometer clock) (STV 1.0 0.9091)) +(: cnet_isa_8996b9b337 (IsA chronoperate reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_c42a7757d4 (IsA chronoperate_paradoxus therapsid) (STV 1.0 0.9091)) +(: cnet_isa_506a1e4cee (IsA chronoscope measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_0e0b8bd62c (IsA chrysalis pupa) (STV 1.0 0.9091)) +(: cnet_isa_13a268ca74 (IsA chrysanthemum flower) (STV 1.0 0.9091)) +(: cnet_isa_f2a8e28584 (IsA chrysaora coelenterate_genus) (STV 1.0 0.9091)) +(: cnet_isa_05f722e3b8 (IsA chrysaora_quinquecirrha jellyfish) (STV 1.0 0.9091)) +(: cnet_isa_95738aef9f (IsA chrysemy reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_eabec0b2f3 (IsA chrysobalanus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d3cecdef3b (IsA chrysoberyl mineral) (STV 1.0 0.9091)) +(: cnet_isa_94c13c5eb0 (IsA chrysoberyl opaque_gem) (STV 1.0 0.9091)) +(: cnet_isa_b93876a7b6 (IsA chrysochloridae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_dbf4543432 (IsA chrysochloris mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_ff6e4c2dc6 (IsA chrysolepis hamamelid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_86e144269a (IsA chrysolite olivine) (STV 1.0 0.9091)) +(: cnet_isa_0a7db61488 (IsA chrysolite transparent_gem) (STV 1.0 0.9091)) +(: cnet_isa_49774650a8 (IsA chrysolophus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_cc7ed6144d (IsA chrysomelidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_b019b392c0 (IsA chrysophry fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_f5a4725f18 (IsA chrysophyceae class) (STV 1.0 0.9091)) +(: cnet_isa_4ed057c5ea (IsA chrysophyllum dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0ad92a275f (IsA chrysophyta division) (STV 1.0 0.9091)) +(: cnet_isa_36e5ae1775 (IsA chrysopidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_77358b7b1f (IsA chrysoprase chalcedony) (STV 1.0 0.9091)) +(: cnet_isa_d9a3030b35 (IsA chrysoprase transparent_gem) (STV 1.0 0.9091)) +(: cnet_isa_19be17b92f (IsA chrysopsis asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d49c3d926d (IsA chrysosplenium rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f63209003f (IsA chrysothamnus asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5ea546e2f3 (IsA chrysotherapy chemotherapy) (STV 1.0 0.9091)) +(: cnet_isa_261da47b5e (IsA chrysotile asbesto) (STV 1.0 0.9091)) +(: cnet_isa_2735947909 (IsA chub cyprinid) (STV 1.0 0.9091)) +(: cnet_isa_7c238a9216 (IsA chub_mackerel mackerel) (STV 1.0 0.9091)) +(: cnet_isa_d8eed7fcf4 (IsA chubbiness plumpness) (STV 1.0 0.9091)) +(: cnet_isa_2c380aa9cd (IsA chuck holding_device) (STV 1.0 0.9091)) +(: cnet_isa_46a2d6abf3 (IsA chuck cut_of_beef) (STV 1.0 0.9091)) +(: cnet_isa_e79326dfa9 (IsA chuck_short_rib cut_of_beef) (STV 1.0 0.9091)) +(: cnet_isa_5ff67d372e (IsA chuck_wagon wagon) (STV 1.0 0.9091)) +(: cnet_isa_5e0b9f4894 (IsA chuck_will_s_widow goatsucker) (STV 1.0 0.9091)) +(: cnet_isa_e6d3020146 (IsA chuckwalla iguanid) (STV 1.0 0.9091)) +(: cnet_isa_52acef34f8 (IsA chufa sedge) (STV 1.0 0.9091)) +(: cnet_isa_9d2bc0fd1a (IsA chug noise) (STV 1.0 0.9091)) +(: cnet_isa_a36dd413d1 (IsA chukchi siberian) (STV 1.0 0.9091)) +(: cnet_isa_a7dee2998f (IsA chukchi_language natural_language) (STV 1.0 0.9091)) +(: cnet_isa_c4a79511e0 (IsA chukka part) (STV 1.0 0.9091)) +(: cnet_isa_c0b86f29a6 (IsA chukka_boot shoe) (STV 1.0 0.9091)) +(: cnet_isa_9dc6bf2edd (IsA chum bait) (STV 1.0 0.9091)) +(: cnet_isa_5d165c2151 (IsA chum_salmon salmon) (STV 1.0 0.9091)) +(: cnet_isa_2cc47798d8 (IsA chumminess sociability) (STV 1.0 0.9091)) +(: cnet_isa_e4fc461a18 (IsA chump victim) (STV 1.0 0.9091)) +(: cnet_isa_29cec9e7aa (IsA chunga wading_bird) (STV 1.0 0.9091)) +(: cnet_isa_9bb5e1d223 (IsA chunk large_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_99686ed6bc (IsA church building) (STV 1.0 0.9339)) +(: cnet_isa_c36500038f (IsA church place_of_worship) (STV 1.0 0.9091)) +(: cnet_isa_251698e3ca (IsA church body) (STV 1.0 0.9091)) +(: cnet_isa_ff87eede9a (IsA church religion) (STV 1.0 0.9091)) +(: cnet_isa_f82e2fbb11 (IsA church_bell bell) (STV 1.0 0.9091)) +(: cnet_isa_3761efa3ff (IsA church_calendar gregorian_calendar) (STV 1.0 0.9091)) +(: cnet_isa_fcffd9ecc4 (IsA church_hat millinery) (STV 1.0 0.9091)) +(: cnet_isa_5105ac9f27 (IsA church_key can_opener) (STV 1.0 0.9091)) +(: cnet_isa_57a22eb4c3 (IsA church_of_brethren baptist_denomination) (STV 1.0 0.9091)) +(: cnet_isa_091bb95a74 (IsA church_of_ireland anglican_church) (STV 1.0 0.9091)) +(: cnet_isa_697632d50a (IsA church_officer official) (STV 1.0 0.9091)) +(: cnet_isa_5434b47460 (IsA church_roll roll) (STV 1.0 0.9091)) +(: cnet_isa_7dd2179408 (IsA church_school religious_school) (STV 1.0 0.9091)) +(: cnet_isa_ec31446f1d (IsA church_service service) (STV 1.0 0.9091)) +(: cnet_isa_9abadfb838 (IsA church_state theocracy) (STV 1.0 0.9091)) +(: cnet_isa_0c57e08454 (IsA church_tower tower) (STV 1.0 0.9091)) +(: cnet_isa_4c81d71da3 (IsA church_year year) (STV 1.0 0.9091)) +(: cnet_isa_f2140771cc (IsA churchgoer religionist) (STV 1.0 0.9091)) +(: cnet_isa_16330b4d06 (IsA churchwarden church_officer) (STV 1.0 0.9091)) +(: cnet_isa_5f386f4f08 (IsA churchyard yard) (STV 1.0 0.9091)) +(: cnet_isa_a1c9ed26b1 (IsA churidar pair_of_trouser) (STV 1.0 0.9091)) +(: cnet_isa_c951aebefd (IsA churn vessel) (STV 1.0 0.9091)) +(: cnet_isa_58b2bd18cf (IsA chute gutter) (STV 1.0 0.9091)) +(: cnet_isa_aa6e963a7c (IsA chutney condiment) (STV 1.0 0.9091)) +(: cnet_isa_55ae78c6d0 (IsA chutzpa crust) (STV 1.0 0.9091)) +(: cnet_isa_8788e7745b (IsA chutzpanik person) (STV 1.0 0.9091)) +(: cnet_isa_08dfa2b583 (IsA chuvash turki) (STV 1.0 0.9091)) +(: cnet_isa_ecaeb9c3b1 (IsA chyle liquid_body_substance) (STV 1.0 0.9091)) +(: cnet_isa_1c05fd1119 (IsA chylomicron atom) (STV 1.0 0.9091)) +(: cnet_isa_36c256c1ed (IsA chyme food) (STV 1.0 0.9091)) +(: cnet_isa_3995289774 (IsA chytridiaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_3de120b847 (IsA chytridiale fungus_order) (STV 1.0 0.9091)) +(: cnet_isa_8d3abd7bfe (IsA chytridiomycete class) (STV 1.0 0.9091)) +(: cnet_isa_2e5dce377b (IsA cibotium fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_0c92e164c8 (IsA cicada homopterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_a4dc7fa3f8 (IsA cicada_killer digger_wasp) (STV 1.0 0.9091)) +(: cnet_isa_cd821c4f44 (IsA cicadellidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_2a918844eb (IsA cicadidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_8a9d599248 (IsA cicer rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_32c1ddf3d4 (IsA cicero linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_ec9ff46972 (IsA cicerone guide) (STV 1.0 0.9091)) +(: cnet_isa_bf9009b75c (IsA cichlid percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_318c5b6285 (IsA cichlidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_a4ad1d2ad1 (IsA cichorium asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_16d159b136 (IsA cicindelidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_bb1021f3cc (IsA ciconia bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_e841dbfb97 (IsA ciconiidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_412a9a9df2 (IsA ciconiiforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_f85c1b77cb (IsA cicuta rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5ecd1527e4 (IsA cider beverage) (STV 1.0 0.9091)) +(: cnet_isa_d8d455ce96 (IsA cider_gum flooded_gum) (STV 1.0 0.9091)) +(: cnet_isa_e52384cd05 (IsA cider_mill mill) (STV 1.0 0.9091)) +(: cnet_isa_713850632d (IsA cider_vinegar vinegar) (STV 1.0 0.9091)) +(: cnet_isa_e42fbf4898 (IsA ciderpress press) (STV 1.0 0.9091)) +(: cnet_isa_ed9ada5c06 (IsA cigar roll_of_tobacco) (STV 1.0 0.9091)) +(: cnet_isa_7542937036 (IsA cigar_band band) (STV 1.0 0.9091)) +(: cnet_isa_2c6126237d (IsA cigar_box box) (STV 1.0 0.9091)) +(: cnet_isa_90058e3d7a (IsA cigar_box_cedar mahogany) (STV 1.0 0.9091)) +(: cnet_isa_14f97b7dbe (IsA cigar_butt butt) (STV 1.0 0.9091)) +(: cnet_isa_4870caeaef (IsA cigar_cutter cutter) (STV 1.0 0.9091)) +(: cnet_isa_b6bfc5af5c (IsA cigar_lighter lighter) (STV 1.0 0.9091)) +(: cnet_isa_5e927ea267 (IsA cigar_smoker smoker) (STV 1.0 0.9091)) +(: cnet_isa_491c3644c9 (IsA cigarette roll_of_tobacco) (STV 1.0 0.9091)) +(: cnet_isa_c88b064b7e (IsA cigarette_burn burn) (STV 1.0 0.9091)) +(: cnet_isa_d3b2a8d91b (IsA cigarette_butt butt) (STV 1.0 0.9091)) +(: cnet_isa_79bec61b72 (IsA cigarette_case case) (STV 1.0 0.9091)) +(: cnet_isa_5f8d108c9b (IsA cigarette_holder holder) (STV 1.0 0.9091)) +(: cnet_isa_343f338ea2 (IsA cigarette_holder tube) (STV 1.0 0.9091)) +(: cnet_isa_6ebee4ae5d (IsA cigarette_paper tissue) (STV 1.0 0.9091)) +(: cnet_isa_e9ce3ccc67 (IsA cigarette_smoker smoker) (STV 1.0 0.9091)) +(: cnet_isa_3568ee362d (IsA cigarillo cigar) (STV 1.0 0.9091)) +(: cnet_isa_bcce467ebb (IsA ciliary_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_8338938640 (IsA ciliary_body membrane) (STV 1.0 0.9091)) +(: cnet_isa_43ff8e2d28 (IsA ciliary_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_d9ef49ecc3 (IsA ciliata class) (STV 1.0 0.9091)) +(: cnet_isa_988aab3d93 (IsA ciliate protozoan) (STV 1.0 0.9091)) +(: cnet_isa_9ca3a4b60d (IsA cilium organelle) (STV 1.0 0.9091)) +(: cnet_isa_7de1871a79 (IsA cimex arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_3432910a98 (IsA cimicidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_c65348d8cd (IsA cimicifuga magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d589b51140 (IsA cinch all_four) (STV 1.0 0.9091)) +(: cnet_isa_ff8b4cd472 (IsA cinch undertaking) (STV 1.0 0.9091)) +(: cnet_isa_1402ac35af (IsA cinch stable_gear) (STV 1.0 0.9091)) +(: cnet_isa_243382700f (IsA cinchona tree) (STV 1.0 0.9091)) +(: cnet_isa_f76a4e75f4 (IsA cinchona_bark bark) (STV 1.0 0.9091)) +(: cnet_isa_419c339849 (IsA cinchona_tree cinchona) (STV 1.0 0.9091)) +(: cnet_isa_907be2c664 (IsA cinchonine alkaloid) (STV 1.0 0.9091)) +(: cnet_isa_7e75fa6dd0 (IsA cinclidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_6141d5b8a4 (IsA cinclus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_3bce28e71e (IsA cinco_de_mayo day) (STV 1.0 0.9091)) +(: cnet_isa_99c7b6f2c0 (IsA cinder fragment) (STV 1.0 0.9091)) +(: cnet_isa_a3e5a5fd60 (IsA cinder_block building_block) (STV 1.0 0.9091)) +(: cnet_isa_5e3154fd18 (IsA cinder_pig pig_iron) (STV 1.0 0.9091)) +(: cnet_isa_cb57fd2c55 (IsA cinder_track racetrack) (STV 1.0 0.9091)) +(: cnet_isa_6b7c1ae420 (IsA cinderella fictional_character) (STV 1.0 0.9339)) +(: cnet_isa_4fab4c8d3c (IsA cinderella woman) (STV 1.0 0.9091)) +(: cnet_isa_212a137ea0 (IsA cinema theater) (STV 1.0 0.9091)) +(: cnet_isa_60966142a6 (IsA cinema_verite movie) (STV 1.0 0.9091)) +(: cnet_isa_7e74375d77 (IsA cineraria flower) (STV 1.0 0.9091)) +(: cnet_isa_56a3288ed4 (IsA cingulate_gyrus neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_3bd29c0807 (IsA cingulum structure) (STV 1.0 0.9091)) +(: cnet_isa_35473be6fa (IsA cinnabar arctiid) (STV 1.0 0.9091)) +(: cnet_isa_c5b31efa18 (IsA cinnabar mineral) (STV 1.0 0.9091)) +(: cnet_isa_0d0002ef29 (IsA cinnabar_chanterelle agaric) (STV 1.0 0.9091)) +(: cnet_isa_6aab617349 (IsA cinnamomum magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2e8fbc02f3 (IsA cinnamon spice) (STV 1.0 0.9524)) +(: cnet_isa_d176be365e (IsA cinnamon bark) (STV 1.0 0.9091)) +(: cnet_isa_234fcb6d0e (IsA cinnamon laurel) (STV 1.0 0.9091)) +(: cnet_isa_ce607747f7 (IsA cinnamon_bark bark) (STV 1.0 0.9091)) +(: cnet_isa_5d3736c89f (IsA cinnamon_bear american_black_bear) (STV 1.0 0.9091)) +(: cnet_isa_fe805dcda4 (IsA cinnamon_bread bread) (STV 1.0 0.9091)) +(: cnet_isa_0159dfd1ba (IsA cinnamon_fern flowering_fern) (STV 1.0 0.9091)) +(: cnet_isa_cdadb5bc57 (IsA cinnamon_roll sweet_roll) (STV 1.0 0.9091)) +(: cnet_isa_93eb66828a (IsA cinnamon_stone garnet) (STV 1.0 0.9091)) +(: cnet_isa_982dcc885b (IsA cinnamon_toast toast) (STV 1.0 0.9091)) +(: cnet_isa_1d0190bb0a (IsA cinnamon_vine yam) (STV 1.0 0.9091)) +(: cnet_isa_5bfb189ddf (IsA cinquefoil carving) (STV 1.0 0.9091)) +(: cnet_isa_50ead5b58e (IsA cinquefoil shrub) (STV 1.0 0.9091)) +(: cnet_isa_b4b88caab2 (IsA cipher code) (STV 1.0 0.9091)) +(: cnet_isa_dbd99200fa (IsA cipher message) (STV 1.0 0.9091)) +(: cnet_isa_96fb904e40 (IsA cipher commoner) (STV 1.0 0.9091)) +(: cnet_isa_b02e3a10d2 (IsA circadian_rhythm biological_time) (STV 1.0 0.9091)) +(: cnet_isa_250fc9f7fc (IsA circaea rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8e1f763c53 (IsA circaea_lutetiana enchanter_s_nightshade) (STV 1.0 0.9091)) +(: cnet_isa_4bfbc5ba58 (IsA circaetus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_055d4734a4 (IsA circassian caucasian) (STV 1.0 0.9091)) +(: cnet_isa_9faff5d93a (IsA circassian community) (STV 1.0 0.9091)) +(: cnet_isa_3b0ac0970d (IsA circassian white_person) (STV 1.0 0.9091)) +(: cnet_isa_5e57912fab (IsA circe sorceress) (STV 1.0 0.9091)) +(: cnet_isa_0107a2d0ac (IsA circle shape) (STV 1.0 0.9608)) +(: cnet_isa_088d007435 (IsA circle rotating_mechanism) (STV 1.0 0.9091)) +(: cnet_isa_9b9ce0665a (IsA circle seating) (STV 1.0 0.9091)) +(: cnet_isa_2ba3bb7caf (IsA circle ellipse) (STV 1.0 0.9091)) +(: cnet_isa_94b1cee1ea (IsA circle_of_curvature circle) (STV 1.0 0.9091)) +(: cnet_isa_0d76bfce0d (IsA circle_of_willis artery) (STV 1.0 0.9091)) +(: cnet_isa_d1dd376d34 (IsA circlet adornment) (STV 1.0 0.9091)) +(: cnet_isa_8ab428d7f5 (IsA circlet circle) (STV 1.0 0.9091)) +(: cnet_isa_0cf9cb3007 (IsA circuit electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_dd1dc76177 (IsA circuit group) (STV 1.0 0.9091)) +(: cnet_isa_ccf67f809d (IsA circuit path) (STV 1.0 0.9091)) +(: cnet_isa_09e769c06c (IsA circuit_board printed_circuit) (STV 1.0 0.9091)) +(: cnet_isa_dd8902d8ca (IsA circuit_breaker fuse) (STV 1.0 0.9091)) +(: cnet_isa_284eb531c0 (IsA circuit_court_of_appeal appellate_court) (STV 1.0 0.9091)) +(: cnet_isa_0e1e487c8d (IsA circuitry electronic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_e08b2375cd (IsA circular shape) (STV 1.0 0.9091)) +(: cnet_isa_5e6eac56af (IsA circular ad) (STV 1.0 0.9091)) +(: cnet_isa_e7fcd2c260 (IsA circular_measure system_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_d64bd58525 (IsA circular_plane plane) (STV 1.0 0.9091)) +(: cnet_isa_0066c82ba9 (IsA circular_saw power_saw) (STV 1.0 0.9091)) +(: cnet_isa_96b2ea8cfe (IsA circularity roundness) (STV 1.0 0.9091)) +(: cnet_isa_9f08fab192 (IsA circularization advertising) (STV 1.0 0.9091)) +(: cnet_isa_770111d28d (IsA circulating_decimal decimal_fraction) (STV 1.0 0.9091)) +(: cnet_isa_07168ac765 (IsA circulation spread) (STV 1.0 0.9091)) +(: cnet_isa_c161b6c2f8 (IsA circulation dissemination) (STV 1.0 0.9091)) +(: cnet_isa_30f1aea05e (IsA circulation count) (STV 1.0 0.9091)) +(: cnet_isa_abf03a6e0b (IsA circulation organic_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_6160a75183 (IsA circulation change_of_location) (STV 1.0 0.9091)) +(: cnet_isa_1d57ef147f (IsA circulatory_failure cardiovascular_disease) (STV 1.0 0.9091)) +(: cnet_isa_9f8a78fbc1 (IsA circulatory_system vascular_system) (STV 1.0 0.9091)) +(: cnet_isa_5080b6c58d (IsA circumcision abscission) (STV 1.0 0.9091)) +(: cnet_isa_68c18c6c5a (IsA circumcision rite) (STV 1.0 0.9091)) +(: cnet_isa_5418f9e477 (IsA circumcision feast_day) (STV 1.0 0.9091)) +(: cnet_isa_eda92615cc (IsA circumduction motion) (STV 1.0 0.9091)) +(: cnet_isa_9ff251c84b (IsA circumference length) (STV 1.0 0.9091)) +(: cnet_isa_e19d1a35c1 (IsA circumference size) (STV 1.0 0.9091)) +(: cnet_isa_029633694e (IsA circumference boundary_line) (STV 1.0 0.9091)) +(: cnet_isa_bcbdd38201 (IsA circumflex diacritical_mark) (STV 1.0 0.9091)) +(: cnet_isa_651b9ff278 (IsA circumflex_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_e4b6f98a76 (IsA circumflex_artery_of_thigh circumflex_artery) (STV 1.0 0.9091)) +(: cnet_isa_18f7b6a240 (IsA circumflex_femoral_vein circumflex_vein) (STV 1.0 0.9091)) +(: cnet_isa_4970bb7947 (IsA circumflex_humeral_artery circumflex_artery) (STV 1.0 0.9091)) +(: cnet_isa_d75f6a6d55 (IsA circumflex_iliac_artery circumflex_artery) (STV 1.0 0.9091)) +(: cnet_isa_ece42a47cb (IsA circumflex_iliac_vein circumflex_vein) (STV 1.0 0.9091)) +(: cnet_isa_f997c329e0 (IsA circumflex_scapular_artery circumflex_artery) (STV 1.0 0.9091)) +(: cnet_isa_7d9b62469c (IsA circumflex_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_d477b034cd (IsA circumlocution evasion) (STV 1.0 0.9091)) +(: cnet_isa_952e7c8047 (IsA circumlocution verboseness) (STV 1.0 0.9091)) +(: cnet_isa_37feb00a06 (IsA circumnavigation travel) (STV 1.0 0.9091)) +(: cnet_isa_e188fea951 (IsA circumposition adposition) (STV 1.0 0.9091)) +(: cnet_isa_2a67f0ac58 (IsA circumscription restriction) (STV 1.0 0.9091)) +(: cnet_isa_464b1c1575 (IsA circumspection discretion) (STV 1.0 0.9091)) +(: cnet_isa_f86fefa0c1 (IsA circumstance information) (STV 1.0 0.9091)) +(: cnet_isa_a3193269b6 (IsA circumstance ceremony) (STV 1.0 0.9091)) +(: cnet_isa_ae3933a626 (IsA circumstance condition) (STV 1.0 0.9091)) +(: cnet_isa_f10e53bfd6 (IsA circumstance possession) (STV 1.0 0.9091)) +(: cnet_isa_f51a57264e (IsA circumstantial_evidence evidence) (STV 1.0 0.9091)) +(: cnet_isa_800153804d (IsA circumvention evasion) (STV 1.0 0.9091)) +(: cnet_isa_15380af081 (IsA circumvolution rotation) (STV 1.0 0.9091)) +(: cnet_isa_f11f58b666 (IsA circus disturbance) (STV 1.0 0.9091)) +(: cnet_isa_c87dbadda4 (IsA circus show) (STV 1.0 0.9091)) +(: cnet_isa_dbd7da8b78 (IsA circus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_5a7635efb3 (IsA circus stadium) (STV 1.0 0.9091)) +(: cnet_isa_4d48b19701 (IsA circus arena) (STV 1.0 0.9091)) +(: cnet_isa_170325846b (IsA circus company) (STV 1.0 0.9091)) +(: cnet_isa_b4b9cabbd3 (IsA circus_acrobat acrobat) (STV 1.0 0.9091)) +(: cnet_isa_a8d534ad76 (IsA circus_tent canva_tent) (STV 1.0 0.9091)) +(: cnet_isa_3c5a113d06 (IsA cirque basin) (STV 1.0 0.9091)) +(: cnet_isa_4c0f9b77ae (IsA cirrhosis liver_disease) (STV 1.0 0.9091)) +(: cnet_isa_a44cb6faa5 (IsA cirripedia class) (STV 1.0 0.9091)) +(: cnet_isa_f18429757c (IsA cirrocumulus cloud) (STV 1.0 0.9091)) +(: cnet_isa_a2cbad3802 (IsA cirrostratus cloud) (STV 1.0 0.9091)) +(: cnet_isa_69569bf520 (IsA cirrus process) (STV 1.0 0.9091)) +(: cnet_isa_c2fb2591f1 (IsA cirrus cloud) (STV 1.0 0.9091)) +(: cnet_isa_ff75fdcf5a (IsA cirrus tendril) (STV 1.0 0.9091)) +(: cnet_isa_df66204004 (IsA cirsium asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ffbf8387fa (IsA cisco whitefish) (STV 1.0 0.9091)) +(: cnet_isa_a750c2f8a1 (IsA cistaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_06984dc854 (IsA cistercian monk) (STV 1.0 0.9091)) +(: cnet_isa_62c26bfeb8 (IsA cistern pool) (STV 1.0 0.9091)) +(: cnet_isa_fd72a1828e (IsA cistern reservoir) (STV 1.0 0.9091)) +(: cnet_isa_286d3940f7 (IsA cistern tank) (STV 1.0 0.9091)) +(: cnet_isa_fe4072dc96 (IsA cisterna sac) (STV 1.0 0.9091)) +(: cnet_isa_421c7c710e (IsA cistothorus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_3fb13bfc56 (IsA cistus dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_cf97b24171 (IsA citation award) (STV 1.0 0.9091)) +(: cnet_isa_958dfadb71 (IsA citation note) (STV 1.0 0.9091)) +(: cnet_isa_e7c512d239 (IsA citation speech_act) (STV 1.0 0.9091)) +(: cnet_isa_76a467a907 (IsA citation summon) (STV 1.0 0.9091)) +(: cnet_isa_710aa28f14 (IsA citation_form form) (STV 1.0 0.9091)) +(: cnet_isa_ee2ac3fbc2 (IsA citellus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_9a808d40cb (IsA citharichthy fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_1057581208 (IsA citizen national) (STV 1.0 0.9091)) +(: cnet_isa_30dba53828 (IsA citizenry group) (STV 1.0 0.9091)) +(: cnet_isa_d86dba38f8 (IsA citizenship demeanor) (STV 1.0 0.9091)) +(: cnet_isa_f55be1e045 (IsA citizenship legal_status) (STV 1.0 0.9091)) +(: cnet_isa_5479732131 (IsA citizenship_day day) (STV 1.0 0.9091)) +(: cnet_isa_96a01f0303 (IsA citrange citrus) (STV 1.0 0.9091)) +(: cnet_isa_84b1c9be38 (IsA citrate ester) (STV 1.0 0.9091)) +(: cnet_isa_1b63ac28d9 (IsA citrate salt) (STV 1.0 0.9091)) +(: cnet_isa_44f66412c9 (IsA citric_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_aa2578b1b8 (IsA citrine quartz) (STV 1.0 0.9091)) +(: cnet_isa_c86e53a793 (IsA citrine transparent_gem) (STV 1.0 0.9091)) +(: cnet_isa_8c66555c13 (IsA citron citrus) (STV 1.0 0.9091)) +(: cnet_isa_a5df396b6f (IsA citroncirus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b08c9ae2f7 (IsA citronwood wood) (STV 1.0 0.9091)) +(: cnet_isa_cc7fd8846e (IsA citrophilous_mealybug mealybug) (STV 1.0 0.9091)) +(: cnet_isa_a906449a55 (IsA citrulline amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_7061728a8f (IsA citrullus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a0a1f3ea4f (IsA citrus edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_c975eea807 (IsA citrus fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_b411cdbfc4 (IsA citrus_mealybug mealybug) (STV 1.0 0.9091)) +(: cnet_isa_ecdf29bdd2 (IsA citrus_whitefly whitefly) (STV 1.0 0.9091)) +(: cnet_isa_e27c1e5796 (IsA cittern guitar) (STV 1.0 0.9091)) +(: cnet_isa_927e6aba98 (IsA city larger_than_town) (STV 1.0 0.9091)) +(: cnet_isa_4cc2114cca (IsA city place) (STV 1.0 0.9707)) +(: cnet_isa_c575be03e8 (IsA city market) (STV 1.0 0.9091)) +(: cnet_isa_de39da57a7 (IsA city municipality) (STV 1.0 0.9091)) +(: cnet_isa_a1f9126f20 (IsA city administrative_district) (STV 1.0 0.9091)) +(: cnet_isa_7133cde204 (IsA city_center center) (STV 1.0 0.9091)) +(: cnet_isa_8e06138bb2 (IsA city_council council) (STV 1.0 0.9091)) +(: cnet_isa_af7ed5abb4 (IsA city_desk editorial_department) (STV 1.0 0.9091)) +(: cnet_isa_5c52542901 (IsA city_district district) (STV 1.0 0.9091)) +(: cnet_isa_66ea389df8 (IsA city_editor newspaper_editor) (STV 1.0 0.9091)) +(: cnet_isa_3900b8af37 (IsA city_father official) (STV 1.0 0.9091)) +(: cnet_isa_01b12a012a (IsA city_hall hall) (STV 1.0 0.9091)) +(: cnet_isa_bf3ddbc2d5 (IsA city_limit limit) (STV 1.0 0.9091)) +(: cnet_isa_9c1fbdd197 (IsA city_line boundary) (STV 1.0 0.9091)) +(: cnet_isa_115b24a56b (IsA city_man financier) (STV 1.0 0.9091)) +(: cnet_isa_2e52d61c49 (IsA city_park park) (STV 1.0 0.9091)) +(: cnet_isa_2647be4a9c (IsA city_planning planning) (STV 1.0 0.9091)) +(: cnet_isa_0768badfab (IsA city_slicker slicker) (STV 1.0 0.9091)) +(: cnet_isa_40618a29dc (IsA city_state state) (STV 1.0 0.9091)) +(: cnet_isa_6566d927a4 (IsA city_university university) (STV 1.0 0.9091)) +(: cnet_isa_fe52e3af0c (IsA cityscape painting) (STV 1.0 0.9091)) +(: cnet_isa_537686d27b (IsA cityscape point_of_view) (STV 1.0 0.9091)) +(: cnet_isa_fcea12b347 (IsA civet viverrine) (STV 1.0 0.9091)) +(: cnet_isa_7f28594460 (IsA civic_center hub) (STV 1.0 0.9091)) +(: cnet_isa_b21e917d2b (IsA civic_duty duty) (STV 1.0 0.9091)) +(: cnet_isa_beb53652ed (IsA civic_leader leader) (STV 1.0 0.9091)) +(: cnet_isa_e2967b6425 (IsA civic_pride pride) (STV 1.0 0.9091)) +(: cnet_isa_0f1c10eee4 (IsA civic social_science) (STV 1.0 0.9091)) +(: cnet_isa_23e7af4cc9 (IsA civy civilian_clothing) (STV 1.0 0.9091)) +(: cnet_isa_d2eaf1b2cb (IsA civil_action legal_action) (STV 1.0 0.9091)) +(: cnet_isa_30db69eaab (IsA civil_authority authority) (STV 1.0 0.9091)) +(: cnet_isa_78fba480b5 (IsA civil_censorship military_censorship) (STV 1.0 0.9091)) +(: cnet_isa_2898a74233 (IsA civil_contempt contempt_of_court) (STV 1.0 0.9091)) +(: cnet_isa_211c82d2a6 (IsA civil_death legal_status) (STV 1.0 0.9091)) +(: cnet_isa_febb1146ce (IsA civil_defense protection) (STV 1.0 0.9091)) +(: cnet_isa_6655c3820f (IsA civil_disobedience direct_action) (STV 1.0 0.9091)) +(: cnet_isa_b243459ace (IsA civil_engineer engineer) (STV 1.0 0.9091)) +(: cnet_isa_1dc8e48b95 (IsA civil_engineering engineering) (STV 1.0 0.9091)) +(: cnet_isa_b7b4b6f60b (IsA civil_law law) (STV 1.0 0.9091)) +(: cnet_isa_0e9d904b0f (IsA civil_libertarian libertarian) (STV 1.0 0.9091)) +(: cnet_isa_fc89e7eb10 (IsA civil_liberty civil_right) (STV 1.0 0.9091)) +(: cnet_isa_180973a67c (IsA civil_liberty freedom) (STV 1.0 0.9091)) +(: cnet_isa_1118405294 (IsA civil_list budget) (STV 1.0 0.9091)) +(: cnet_isa_11218b79d3 (IsA civil_marriage marriage) (STV 1.0 0.9091)) +(: cnet_isa_f70cca7823 (IsA civil_order order) (STV 1.0 0.9091)) +(: cnet_isa_f9b2d80568 (IsA civil_right human_right) (STV 1.0 0.9091)) +(: cnet_isa_3f98a3a742 (IsA civil_right_leader reformer) (STV 1.0 0.9091)) +(: cnet_isa_3df4fb8a9e (IsA civil_right_movement movement) (STV 1.0 0.9091)) +(: cnet_isa_9731579e23 (IsA civil_servant worker) (STV 1.0 0.9091)) +(: cnet_isa_90a667a1f3 (IsA civil_servant official) (STV 1.0 0.9091)) +(: cnet_isa_5d6f8bab9d (IsA civil_service government_official) (STV 1.0 0.9091)) +(: cnet_isa_21813d61af (IsA civil_suit lawsuit) (STV 1.0 0.9091)) +(: cnet_isa_eb91f2b291 (IsA civil_time time) (STV 1.0 0.9091)) +(: cnet_isa_a8c055302c (IsA civil_union marital_status) (STV 1.0 0.9091)) +(: cnet_isa_971c39ffbd (IsA civil_war war) (STV 1.0 0.9091)) +(: cnet_isa_4e7b8f91e1 (IsA civilian citizen) (STV 1.0 0.9091)) +(: cnet_isa_69fe1c9670 (IsA civilian_clothing clothing) (STV 1.0 0.9091)) +(: cnet_isa_7f3ef58243 (IsA civility courtesy) (STV 1.0 0.9091)) +(: cnet_isa_5779bbbee2 (IsA civilization society) (STV 1.0 0.9091)) +(: cnet_isa_1f807ff0a5 (IsA civilization social_process) (STV 1.0 0.9091)) +(: cnet_isa_75ec3e26e0 (IsA clabber dairy_product) (STV 1.0 0.9091)) +(: cnet_isa_018919174d (IsA clack noise) (STV 1.0 0.9091)) +(: cnet_isa_a07c91db18 (IsA clack_valve valve) (STV 1.0 0.9091)) +(: cnet_isa_e3a15f2fe4 (IsA clade biological_group) (STV 1.0 0.9091)) +(: cnet_isa_1373baf777 (IsA cladistic taxonomy) (STV 1.0 0.9091)) +(: cnet_isa_0b30645cab (IsA cladode stalk) (STV 1.0 0.9091)) +(: cnet_isa_5e81a7c692 (IsA cladogram tree) (STV 1.0 0.9091)) +(: cnet_isa_28b4edfa5e (IsA cladonia fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_e0eefd3199 (IsA cladoniaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_769ab59cc9 (IsA cladorhyncus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_e4805cb21e (IsA cladrastis rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a6520b9b90 (IsA claim demand) (STV 1.0 0.9091)) +(: cnet_isa_a37b2bb809 (IsA claim right) (STV 1.0 0.9091)) +(: cnet_isa_1f34ebd55d (IsA claim assertion) (STV 1.0 0.9091)) +(: cnet_isa_be35b3bd5b (IsA claim_form form) (STV 1.0 0.9091)) +(: cnet_isa_d9550fcdfc (IsA claim_jumper usurper) (STV 1.0 0.9091)) +(: cnet_isa_ed34bfa0d9 (IsA claimant applicant) (STV 1.0 0.9091)) +(: cnet_isa_14bb9df26d (IsA claiming_race horse_race) (STV 1.0 0.9091)) +(: cnet_isa_0589d6e2d3 (IsA clairvoyance psychic_phenomena) (STV 1.0 0.9091)) +(: cnet_isa_93a5af8dd4 (IsA clairvoyant psychic) (STV 1.0 0.9091)) +(: cnet_isa_4a837d09cd (IsA clam bivalve) (STV 1.0 0.9091)) +(: cnet_isa_ddf9fce0c6 (IsA clam shellfish) (STV 1.0 0.9091)) +(: cnet_isa_20103fa91f (IsA clam_chowder chowder) (STV 1.0 0.9091)) +(: cnet_isa_32a9e4bada (IsA clam_dip dip) (STV 1.0 0.9091)) +(: cnet_isa_3199d4b6e3 (IsA clamatore animal_order) (STV 1.0 0.9091)) +(: cnet_isa_a77d34db1a (IsA clambake cookout) (STV 1.0 0.9091)) +(: cnet_isa_5703767e14 (IsA clamber climb) (STV 1.0 0.9091)) +(: cnet_isa_974f64f565 (IsA clammy_locust locust_tree) (STV 1.0 0.9091)) +(: cnet_isa_e11c8a6176 (IsA clammyweed herb) (STV 1.0 0.9091)) +(: cnet_isa_36f8e9a2bd (IsA clamor cry) (STV 1.0 0.9091)) +(: cnet_isa_d805b70c96 (IsA clamp holding_device) (STV 1.0 0.9091)) +(: cnet_isa_c7bf88072d (IsA clampdown limitation) (STV 1.0 0.9091)) +(: cnet_isa_7e1ecdb0e6 (IsA clamshell shell) (STV 1.0 0.9091)) +(: cnet_isa_5c714c2bc8 (IsA clamshell dredging_bucket) (STV 1.0 0.9091)) +(: cnet_isa_294dc2d53d (IsA clandestine_operation intelligence) (STV 1.0 0.9091)) +(: cnet_isa_fe70f05ca7 (IsA clang noise) (STV 1.0 0.9091)) +(: cnet_isa_5de003003f (IsA clanger blunder) (STV 1.0 0.9091)) +(: cnet_isa_ffe6433792 (IsA clangula bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_71e1adf3b6 (IsA clannishness snobbery) (STV 1.0 0.9091)) +(: cnet_isa_a8f21871d5 (IsA clansman member) (STV 1.0 0.9091)) +(: cnet_isa_86488cf4a8 (IsA clapboard siding) (STV 1.0 0.9091)) +(: cnet_isa_ddaeb9bf1b (IsA clapper striker) (STV 1.0 0.9091)) +(: cnet_isa_521ef61503 (IsA clapper laudator) (STV 1.0 0.9091)) +(: cnet_isa_3844bf9ce5 (IsA clapperboard photographic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_5db6efc8bc (IsA claque following) (STV 1.0 0.9091)) +(: cnet_isa_86c627fe1b (IsA clarence carriage) (STV 1.0 0.9091)) +(: cnet_isa_f8e42cb5af (IsA claret dark_red) (STV 1.0 0.9091)) +(: cnet_isa_65ddf8574d (IsA claret bordeaux) (STV 1.0 0.9091)) +(: cnet_isa_2c220f933d (IsA claret red_wine) (STV 1.0 0.9091)) +(: cnet_isa_d03a5a6e60 (IsA claret_cup cup) (STV 1.0 0.9091)) +(: cnet_isa_69ad6a26d6 (IsA clarification interpretation) (STV 1.0 0.9091)) +(: cnet_isa_de52f41c5b (IsA clarified_butter butter) (STV 1.0 0.9091)) +(: cnet_isa_ecdfdbe360 (IsA clarinet instrument) (STV 1.0 0.9659)) +(: cnet_isa_f22e8bd237 (IsA clarinet member_of_woodwind_section) (STV 1.0 0.9091)) +(: cnet_isa_9bfd59f6ed (IsA clarinet musical_instrument) (STV 1.0 0.9454)) +(: cnet_isa_62ba9f6c5c (IsA clarinet woodwind_instrument) (STV 1.0 0.9339)) +(: cnet_isa_114ad033a5 (IsA clarinet single_reed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_cc1aacf419 (IsA clarinet_section reed_section) (STV 1.0 0.9091)) +(: cnet_isa_ed57bd2b0f (IsA clarinetist musician) (STV 1.0 0.9091)) +(: cnet_isa_febc42b305 (IsA clarion brass) (STV 1.0 0.9091)) +(: cnet_isa_5240cb1021 (IsA clarity comprehensibility) (STV 1.0 0.9091)) +(: cnet_isa_95ba04cb2e (IsA clark_s_nutcracker nutcracker) (STV 1.0 0.9091)) +(: cnet_isa_5096206248 (IsA clark_cell standard_cell) (STV 1.0 0.9091)) +(: cnet_isa_673ef12eed (IsA claro cigar) (STV 1.0 0.9091)) +(: cnet_isa_bab74ba8d7 (IsA clary sage) (STV 1.0 0.9091)) +(: cnet_isa_fcb853e2c7 (IsA clary_sage sage) (STV 1.0 0.9091)) +(: cnet_isa_3282e21fe8 (IsA clash conflict) (STV 1.0 0.9091)) +(: cnet_isa_5e7f269dd9 (IsA clasp grasping) (STV 1.0 0.9091)) +(: cnet_isa_15aa346156 (IsA clasp fastener) (STV 1.0 0.9091)) +(: cnet_isa_9d3e13eb4f (IsA clasp_knife pocketknife) (STV 1.0 0.9091)) +(: cnet_isa_585fe39db2 (IsA class group_of_student) (STV 1.0 0.9091)) +(: cnet_isa_4c5c50ddfb (IsA class elegance) (STV 1.0 0.9091)) +(: cnet_isa_648b47b65d (IsA class taxonomic_group) (STV 1.0 0.9091)) +(: cnet_isa_0ae0808698 (IsA class collection) (STV 1.0 0.9091)) +(: cnet_isa_70eab28403 (IsA class gathering) (STV 1.0 0.9091)) +(: cnet_isa_8230eafeaa (IsA class league) (STV 1.0 0.9091)) +(: cnet_isa_6817c09f48 (IsA class people) (STV 1.0 0.9091)) +(: cnet_isa_663dadb39f (IsA class_act ideal) (STV 1.0 0.9091)) +(: cnet_isa_66d964566b (IsA class_action lawsuit) (STV 1.0 0.9091)) +(: cnet_isa_a1778ec3c9 (IsA class_cyanobacteria class) (STV 1.0 0.9091)) +(: cnet_isa_dbe36977b1 (IsA class_feeling hostility) (STV 1.0 0.9091)) +(: cnet_isa_f17224fc0a (IsA class_list list) (STV 1.0 0.9091)) +(: cnet_isa_324fabf3d9 (IsA class_structure social_organization) (STV 1.0 0.9091)) +(: cnet_isa_dcb03bc887 (IsA class_struggle conflict) (STV 1.0 0.9091)) +(: cnet_isa_83564d0f97 (IsA classic creation) (STV 1.0 0.9091)) +(: cnet_isa_46844880d6 (IsA classic artist) (STV 1.0 0.9091)) +(: cnet_isa_8488d2bc98 (IsA classic_hemochromatosis hemochromatosis) (STV 1.0 0.9091)) +(: cnet_isa_7541187ccc (IsA classical music) (STV 1.0 0.9524)) +(: cnet_isa_85a67522df (IsA classical_architecture architectural_style) (STV 1.0 0.9091)) +(: cnet_isa_92d86b25b9 (IsA classical_ballet ballet) (STV 1.0 0.9091)) +(: cnet_isa_43459c07c9 (IsA classical_conditioning conditioning) (STV 1.0 0.9091)) +(: cnet_isa_8f296253cf (IsA classical_latin latin) (STV 1.0 0.9091)) +(: cnet_isa_c52d75995a (IsA classical_mechanic mechanic) (STV 1.0 0.9091)) +(: cnet_isa_d9741a0a67 (IsA classical_music music) (STV 1.0 0.9091)) +(: cnet_isa_213147ad6d (IsA classical_music music_genre) (STV 1.0 0.9091)) +(: cnet_isa_4749cbcf5e (IsA classical_mythology mythology) (STV 1.0 0.9091)) +(: cnet_isa_32ec6f0f8a (IsA classical_style artistic_style) (STV 1.0 0.9091)) +(: cnet_isa_4a199cbba0 (IsA classicism artistic_style) (STV 1.0 0.9091)) +(: cnet_isa_eba467ae4a (IsA classicism humanistic_discipline) (STV 1.0 0.9091)) +(: cnet_isa_36d93acfd6 (IsA classicist artist) (STV 1.0 0.9091)) +(: cnet_isa_74fa1a9d7d (IsA classicist humanist) (STV 1.0 0.9091)) +(: cnet_isa_fb7fb1fbb1 (IsA classic literary_study) (STV 1.0 0.9091)) +(: cnet_isa_3cf20e3010 (IsA classification restriction) (STV 1.0 0.9091)) +(: cnet_isa_f03bd787be (IsA classification basic_cognitive_process) (STV 1.0 0.9091)) +(: cnet_isa_b7da68e44d (IsA classification arrangement) (STV 1.0 0.9091)) +(: cnet_isa_10aa5d2d7b (IsA classification_system arrangement) (STV 1.0 0.9091)) +(: cnet_isa_fec6256359 (IsA classified_ad newspaper_ad) (STV 1.0 0.9091)) +(: cnet_isa_b8c391f66f (IsA classified_stock common_stock) (STV 1.0 0.9091)) +(: cnet_isa_9c6469cf22 (IsA classifier morpheme) (STV 1.0 0.9091)) +(: cnet_isa_2e4f491d0f (IsA classifier word) (STV 1.0 0.9091)) +(: cnet_isa_8c5e17711b (IsA classifier thinker) (STV 1.0 0.9091)) +(: cnet_isa_6bad3b199b (IsA classroom room) (STV 1.0 0.9091)) +(: cnet_isa_4e161a6f58 (IsA classroom_project school_assignment) (STV 1.0 0.9091)) +(: cnet_isa_216dd5b412 (IsA classroom in_school) (STV 1.0 0.9719)) +(: cnet_isa_b14b4f7ecc (IsA classwork school_assignment) (STV 1.0 0.9091)) +(: cnet_isa_11de450984 (IsA clast fragment) (STV 1.0 0.9091)) +(: cnet_isa_1bb64efa35 (IsA clastic_rock rock) (STV 1.0 0.9091)) +(: cnet_isa_611b7a773b (IsA clathraceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_44d1470778 (IsA clathrus fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_efd5925fa1 (IsA clatter noise) (STV 1.0 0.9091)) +(: cnet_isa_dba7f609b0 (IsA clause construction) (STV 1.0 0.9091)) +(: cnet_isa_e6888cae35 (IsA claustrophobe neurotic) (STV 1.0 0.9091)) +(: cnet_isa_30731e4102 (IsA claustrophobia simple_phobia) (STV 1.0 0.9091)) +(: cnet_isa_9c513df873 (IsA claustrum basal_ganglion) (STV 1.0 0.9091)) +(: cnet_isa_c3dc312887 (IsA clavariaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_2606504bf0 (IsA clavicep fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_9da957d569 (IsA clavichord keyboard_instrument) (STV 1.0 0.9091)) +(: cnet_isa_43dc5b17fb (IsA clavichord stringed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_8698ed14ea (IsA clavichord instrument) (STV 1.0 0.9572)) +(: cnet_isa_f7993aa06d (IsA clavicipitaceae ascomycete) (STV 1.0 0.9091)) +(: cnet_isa_c890da01c0 (IsA clavicle bone) (STV 1.0 0.9091)) +(: cnet_isa_81810dabb5 (IsA clavier keyboard_instrument) (STV 1.0 0.9091)) +(: cnet_isa_db67a5afa2 (IsA clavier stringed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_8710818276 (IsA claw bird_s_foot) (STV 1.0 0.9091)) +(: cnet_isa_6e23691ee7 (IsA claw extremity) (STV 1.0 0.9091)) +(: cnet_isa_c9a876f740 (IsA claw horny_structure) (STV 1.0 0.9091)) +(: cnet_isa_37a1edb914 (IsA claw_hatchet hatchet) (STV 1.0 0.9091)) +(: cnet_isa_4daa403839 (IsA clawback restoration) (STV 1.0 0.9091)) +(: cnet_isa_e3f8767a5b (IsA clawfoot deformity) (STV 1.0 0.9091)) +(: cnet_isa_dc421a5c82 (IsA clay soil) (STV 1.0 0.9091)) +(: cnet_isa_67d193b868 (IsA clay_colored_robin thrush) (STV 1.0 0.9091)) +(: cnet_isa_b0facdcee1 (IsA clay_pigeon target) (STV 1.0 0.9091)) +(: cnet_isa_ea3fca4ecb (IsA clay_pipe pipe) (STV 1.0 0.9091)) +(: cnet_isa_e3e126c1ef (IsA claymore broadsword) (STV 1.0 0.9091)) +(: cnet_isa_b993c2e79a (IsA claymore_mine land_mine) (STV 1.0 0.9091)) +(: cnet_isa_3ec36b3774 (IsA claystone rock) (STV 1.0 0.9091)) +(: cnet_isa_52c22592e8 (IsA claytonia caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_17079086f9 (IsA clean_and_jerk weightlifting) (STV 1.0 0.9091)) +(: cnet_isa_dc3e331a39 (IsA clean_bill_of_health assurance) (STV 1.0 0.9091)) +(: cnet_isa_d120a9b2a8 (IsA clean_bomb atom_bomb) (STV 1.0 0.9091)) +(: cnet_isa_e6ad377d0d (IsA clean_room room) (STV 1.0 0.9091)) +(: cnet_isa_ec5333482d (IsA cleaner laborer) (STV 1.0 0.9091)) +(: cnet_isa_c41239d12d (IsA cleaner shopkeeper) (STV 1.0 0.9091)) +(: cnet_isa_082e624186 (IsA cleaner shop) (STV 1.0 0.9091)) +(: cnet_isa_9042df81cf (IsA cleaning improvement) (STV 1.0 0.9091)) +(: cnet_isa_8410e98759 (IsA cleaning_implement implement) (STV 1.0 0.9091)) +(: cnet_isa_e3919932ee (IsA cleaning_pad cleaning_implement) (STV 1.0 0.9091)) +(: cnet_isa_8c944239a3 (IsA cleaning_pad pad) (STV 1.0 0.9091)) +(: cnet_isa_a155a88fad (IsA cleanliness good_thing) (STV 1.0 0.9091)) +(: cnet_isa_2a54972258 (IsA cleanliness trait) (STV 1.0 0.9091)) +(: cnet_isa_9f5697f97b (IsA cleanliness habit) (STV 1.0 0.9091)) +(: cnet_isa_007fbd6082 (IsA cleanness purity) (STV 1.0 0.9091)) +(: cnet_isa_8f64ee0645 (IsA cleanness sanitary_condition) (STV 1.0 0.9091)) +(: cnet_isa_62be918782 (IsA cleansing_agent formulation) (STV 1.0 0.9091)) +(: cnet_isa_f456494637 (IsA cleanup position) (STV 1.0 0.9091)) +(: cnet_isa_9c0c047280 (IsA clear innocence) (STV 1.0 0.9091)) +(: cnet_isa_c0eb59a721 (IsA clear_air_turbulence turbulence) (STV 1.0 0.9091)) +(: cnet_isa_d1787b6e47 (IsA clear_and_present_danger danger) (STV 1.0 0.9091)) +(: cnet_isa_e82692483e (IsA clear_liquid_diet liquid_diet) (STV 1.0 0.9091)) +(: cnet_isa_b0c3f4a52d (IsA clearance license) (STV 1.0 0.9091)) +(: cnet_isa_09b4c6745e (IsA clearance interval) (STV 1.0 0.9091)) +(: cnet_isa_592de87ef1 (IsA clearance_sale sale) (STV 1.0 0.9091)) +(: cnet_isa_44a8147066 (IsA clearing improvement) (STV 1.0 0.9091)) +(: cnet_isa_5794faf2c8 (IsA clearing liberation) (STV 1.0 0.9091)) +(: cnet_isa_6e0618fae1 (IsA clearing tract) (STV 1.0 0.9091)) +(: cnet_isa_5ab157e57c (IsA clearing_house financial_institution) (STV 1.0 0.9091)) +(: cnet_isa_2c17bf843d (IsA clearness quality) (STV 1.0 0.9091)) +(: cnet_isa_9ef06e3cf9 (IsA clearway road) (STV 1.0 0.9091)) +(: cnet_isa_a227677ebc (IsA cleat fastener) (STV 1.0 0.9091)) +(: cnet_isa_e13924c3df (IsA cleat projection) (STV 1.0 0.9091)) +(: cnet_isa_60210ce35f (IsA cleat strip) (STV 1.0 0.9091)) +(: cnet_isa_8b459efe48 (IsA cleat shoe) (STV 1.0 0.9091)) +(: cnet_isa_8c9a4c7726 (IsA cleavage division) (STV 1.0 0.9091)) +(: cnet_isa_842d7cf28b (IsA cleavage area) (STV 1.0 0.9091)) +(: cnet_isa_e45a0d5b2c (IsA cleavage cell_division) (STV 1.0 0.9091)) +(: cnet_isa_d24c1796bb (IsA cleavage chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_a1e8787f8b (IsA cleavage state) (STV 1.0 0.9091)) +(: cnet_isa_b05a6231e1 (IsA cleaver knife) (STV 1.0 0.9091)) +(: cnet_isa_d1d2edaff6 (IsA cleaver bedstraw) (STV 1.0 0.9091)) +(: cnet_isa_fc6aaf943e (IsA clef musical_notation) (STV 1.0 0.9091)) +(: cnet_isa_e4005332a2 (IsA cleft indentation) (STV 1.0 0.9091)) +(: cnet_isa_9a8608564f (IsA cleft_foot deformity) (STV 1.0 0.9091)) +(: cnet_isa_3f4ff8ad9f (IsA cleft_lip birth_defect) (STV 1.0 0.9091)) +(: cnet_isa_22743d6c98 (IsA cleft_palate birth_defect) (STV 1.0 0.9091)) +(: cnet_isa_970fa86920 (IsA cleiste monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_dc0aba008c (IsA cleistogamy self_pollination) (STV 1.0 0.9091)) +(: cnet_isa_203812820e (IsA cleistothecium ascocarp) (STV 1.0 0.9091)) +(: cnet_isa_9916f85a8d (IsA clematis climber) (STV 1.0 0.9091)) +(: cnet_isa_7579a0063a (IsA clematis vine) (STV 1.0 0.9091)) +(: cnet_isa_01a549a3cf (IsA clemency lenience) (STV 1.0 0.9091)) +(: cnet_isa_f1ebc6eeac (IsA clementine mandarin) (STV 1.0 0.9091)) +(: cnet_isa_9d727e7f92 (IsA clerestory window) (STV 1.0 0.9091)) +(: cnet_isa_81b6bfd238 (IsA clergy priesthood) (STV 1.0 0.9091)) +(: cnet_isa_128c85aaab (IsA clergyman spiritual_leader) (STV 1.0 0.9091)) +(: cnet_isa_3c4b5465b2 (IsA cleric clergyman) (STV 1.0 0.9091)) +(: cnet_isa_ce81851629 (IsA clerical_collar collar) (STV 1.0 0.9091)) +(: cnet_isa_0d2e6e587a (IsA clericalism policy) (STV 1.0 0.9091)) +(: cnet_isa_07a90eb14c (IsA clericalist disciple) (STV 1.0 0.9091)) +(: cnet_isa_a189a22d90 (IsA clerid_beetle beetle) (STV 1.0 0.9091)) +(: cnet_isa_f700de9411 (IsA cleridae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_3660ff18b2 (IsA clerihew verse) (STV 1.0 0.9091)) +(: cnet_isa_620392b0cc (IsA clerk employee) (STV 1.0 0.9091)) +(: cnet_isa_ae2aaabf44 (IsA clerkship position) (STV 1.0 0.9091)) +(: cnet_isa_88743f31bb (IsA clethra dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_16f2842a2d (IsA clethraceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_e3aadd651c (IsA clethrionomy mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_e8dd13eea5 (IsA clever_dick intellectual) (STV 1.0 0.9091)) +(: cnet_isa_80571720fb (IsA clevis coupling) (STV 1.0 0.9091)) +(: cnet_isa_89f455d417 (IsA clew ball) (STV 1.0 0.9091)) +(: cnet_isa_40555c69eb (IsA clew cord) (STV 1.0 0.9091)) +(: cnet_isa_6dec0558e3 (IsA cliche overused_expression) (STV 1.0 0.9339)) +(: cnet_isa_0073cc3a0d (IsA click depression) (STV 1.0 0.9091)) +(: cnet_isa_76bd145059 (IsA click_beetle elaterid_beetle) (STV 1.0 0.9091)) +(: cnet_isa_64d5b3ea13 (IsA click_clack sound) (STV 1.0 0.9091)) +(: cnet_isa_2394ce8dbc (IsA clickety_clack click_clack) (STV 1.0 0.9091)) +(: cnet_isa_4f7aafc4fc (IsA client case) (STV 1.0 0.9091)) +(: cnet_isa_5e1519d743 (IsA client_centered_therapy psychotherapy) (STV 1.0 0.9091)) +(: cnet_isa_42464f6387 (IsA clientage business_relation) (STV 1.0 0.9091)) +(: cnet_isa_af59628760 (IsA clientele people) (STV 1.0 0.9091)) +(: cnet_isa_768213426d (IsA cliff geological_formation) (STV 1.0 0.9091)) +(: cnet_isa_2d014ad64c (IsA cliff_brake fern) (STV 1.0 0.9091)) +(: cnet_isa_aac694ea16 (IsA cliff_diving dive) (STV 1.0 0.9091)) +(: cnet_isa_da577d47ec (IsA cliff_dweller anasazi) (STV 1.0 0.9091)) +(: cnet_isa_efad88cb6d (IsA cliff_dwelling dwelling) (STV 1.0 0.9091)) +(: cnet_isa_2e0794a756 (IsA cliff_rose thrift) (STV 1.0 0.9091)) +(: cnet_isa_2fc4cf1502 (IsA cliff_swallow swallow) (STV 1.0 0.9091)) +(: cnet_isa_6dd5738606 (IsA cliffhanger episode) (STV 1.0 0.9091)) +(: cnet_isa_5aacff32f4 (IsA cliffhanger contest) (STV 1.0 0.9091)) +(: cnet_isa_5c776ac2ba (IsA clifford_trust trust) (STV 1.0 0.9091)) +(: cnet_isa_73bb8296b3 (IsA cliftonia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a46d9d456e (IsA climacteric biological_time) (STV 1.0 0.9091)) +(: cnet_isa_d9e129bd68 (IsA climate condition) (STV 1.0 0.9091)) +(: cnet_isa_d4cbd1bae7 (IsA climate environmental_condition) (STV 1.0 0.9091)) +(: cnet_isa_335b41b289 (IsA climate_change temperature_change) (STV 1.0 0.9091)) +(: cnet_isa_7b49c957ce (IsA climatic_zone zone) (STV 1.0 0.9091)) +(: cnet_isa_f29b99a4ab (IsA climatologist expert) (STV 1.0 0.9091)) +(: cnet_isa_ca366cf9de (IsA climatology meteorology) (STV 1.0 0.9091)) +(: cnet_isa_819fd462f6 (IsA climax moment) (STV 1.0 0.9091)) +(: cnet_isa_f7c2543e11 (IsA climax rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_b8f817cd62 (IsA climax juncture) (STV 1.0 0.9091)) +(: cnet_isa_4126ed618f (IsA climax degree) (STV 1.0 0.9091)) +(: cnet_isa_4b49a186c2 (IsA climb rise) (STV 1.0 0.9091)) +(: cnet_isa_6a75d2ac83 (IsA climber athlete) (STV 1.0 0.9091)) +(: cnet_isa_47426eb883 (IsA climber vine) (STV 1.0 0.9091)) +(: cnet_isa_5ddc363dbc (IsA climbing_bird_s_nest_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_698f742f77 (IsA climbing_corydalis vine) (STV 1.0 0.9091)) +(: cnet_isa_304ce974c6 (IsA climbing_fern climber) (STV 1.0 0.9091)) +(: cnet_isa_afdace32a9 (IsA climbing_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_439df30f19 (IsA climbing_frame framework) (STV 1.0 0.9091)) +(: cnet_isa_04a0a155f1 (IsA climbing_fumitory vine) (STV 1.0 0.9091)) +(: cnet_isa_8b3380ee62 (IsA climbing_hempweed vine) (STV 1.0 0.9091)) +(: cnet_isa_deca9ae5b2 (IsA climbing_hydrangea hydrangea) (STV 1.0 0.9091)) +(: cnet_isa_4a49d43edd (IsA climbing_hydrangea shrub) (STV 1.0 0.9091)) +(: cnet_isa_9d2a24d31d (IsA climbing_maidenhair climbing_fern) (STV 1.0 0.9091)) +(: cnet_isa_f2dc040e23 (IsA climbing_mountain dangerous_activity) (STV 1.0 0.9091)) +(: cnet_isa_8c05671600 (IsA climbing_onion herb) (STV 1.0 0.9091)) +(: cnet_isa_90c7117270 (IsA climbing_perch fish) (STV 1.0 0.9091)) +(: cnet_isa_aaf69ab78f (IsA climbing_salamander salamander) (STV 1.0 0.9091)) +(: cnet_isa_265b5f7ddc (IsA clinch fastener) (STV 1.0 0.9091)) +(: cnet_isa_e1957bbd68 (IsA clinch maneuver) (STV 1.0 0.9091)) +(: cnet_isa_58972a3024 (IsA clinch noose) (STV 1.0 0.9091)) +(: cnet_isa_7d2d83bb30 (IsA clincher tool) (STV 1.0 0.9091)) +(: cnet_isa_2eb0e7fbdb (IsA clincher determinant) (STV 1.0 0.9091)) +(: cnet_isa_9423fc02e9 (IsA clincher argument) (STV 1.0 0.9091)) +(: cnet_isa_39a5ff422f (IsA cling edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_a8fe228d55 (IsA cling_film plastic_wrap) (STV 1.0 0.9091)) +(: cnet_isa_f38ddad05c (IsA clingfish percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_9d82350718 (IsA clinic medical_building) (STV 1.0 0.9091)) +(: cnet_isa_e01ad8508e (IsA clinic session) (STV 1.0 0.9091)) +(: cnet_isa_c4f6b82d3a (IsA clinic medical_institution) (STV 1.0 0.9091)) +(: cnet_isa_28ba4ef9dc (IsA clinical_anatomy anatomy) (STV 1.0 0.9091)) +(: cnet_isa_bdeab47dce (IsA clinical_psychology psychotherapy) (STV 1.0 0.9091)) +(: cnet_isa_3869acc74f (IsA clinical_thermometer mercury_thermometer) (STV 1.0 0.9091)) +(: cnet_isa_860c9456a6 (IsA clinical_trial test) (STV 1.0 0.9091)) +(: cnet_isa_249e76f6ca (IsA clinician practitioner) (STV 1.0 0.9091)) +(: cnet_isa_cbdeb5ad6f (IsA clinid blennioid_fish) (STV 1.0 0.9091)) +(: cnet_isa_aeba4aec5e (IsA clinidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_1849aebe79 (IsA clinker brick) (STV 1.0 0.9091)) +(: cnet_isa_90f9030b78 (IsA clinocephaly birth_defect) (STV 1.0 0.9091)) +(: cnet_isa_453856c913 (IsA clinodactyly birth_defect) (STV 1.0 0.9091)) +(: cnet_isa_2755b21b7c (IsA clinometer surveying_instrument) (STV 1.0 0.9091)) +(: cnet_isa_d6577057d1 (IsA clinopodium asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5c6324756f (IsA clinton liar) (STV 1.0 0.9091)) +(: cnet_isa_0e5582e60d (IsA clinton president) (STV 1.0 0.9091)) +(: cnet_isa_e82790961c (IsA clinton_administration executive) (STV 1.0 0.9091)) +(: cnet_isa_8530e4a53f (IsA clintonia liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_2625c7bd51 (IsA clip short_video_segment) (STV 1.0 0.9091)) +(: cnet_isa_c47ba07ad0 (IsA clip blow) (STV 1.0 0.9091)) +(: cnet_isa_534c1b9cd8 (IsA clip cut) (STV 1.0 0.9091)) +(: cnet_isa_43d63ad1c3 (IsA clip fastener) (STV 1.0 0.9091)) +(: cnet_isa_9e4d20a7d0 (IsA clip jewelry) (STV 1.0 0.9091)) +(: cnet_isa_447dd6e1fd (IsA clip_art computer_graphic) (STV 1.0 0.9091)) +(: cnet_isa_e0bd49ea8f (IsA clip_artist swindler) (STV 1.0 0.9091)) +(: cnet_isa_979d9d684c (IsA clip_joint spot) (STV 1.0 0.9091)) +(: cnet_isa_b1ec8d57ff (IsA clip_lead jumper_cable) (STV 1.0 0.9091)) +(: cnet_isa_92dec8750f (IsA clip_on device) (STV 1.0 0.9091)) +(: cnet_isa_af3bb320f7 (IsA clipboard writing_board) (STV 1.0 0.9091)) +(: cnet_isa_32b789465d (IsA clipper sailing_vessel) (STV 1.0 0.9091)) +(: cnet_isa_85ea733560 (IsA clipper scissor) (STV 1.0 0.9091)) +(: cnet_isa_a32da2b490 (IsA clipper shear) (STV 1.0 0.9091)) +(: cnet_isa_86cdd06735 (IsA clippety_clop sound) (STV 1.0 0.9091)) +(: cnet_isa_25c9e79038 (IsA clipping excerpt) (STV 1.0 0.9091)) +(: cnet_isa_46a97a8a53 (IsA clique set) (STV 1.0 0.9091)) +(: cnet_isa_fb6ebe1488 (IsA clitocybe fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_17a5d90082 (IsA clitocybe_clavipe agaric) (STV 1.0 0.9091)) +(: cnet_isa_109f88b3f9 (IsA clitocybe_dealbata agaric) (STV 1.0 0.9091)) +(: cnet_isa_6737d446f5 (IsA clitocybe_inornata agaric) (STV 1.0 0.9091)) +(: cnet_isa_dc47acd9e1 (IsA clitocybe_irina agaric) (STV 1.0 0.9091)) +(: cnet_isa_a9a6448cc7 (IsA clitocybe_robusta agaric) (STV 1.0 0.9091)) +(: cnet_isa_686b76ee67 (IsA clitocybe_subconnexa agaric) (STV 1.0 0.9091)) +(: cnet_isa_39ce5d08a5 (IsA clitoral_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_86ba71ee9b (IsA clitoria rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0e1fd88d5c (IsA clitoridectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_a10babfeba (IsA clitoris erectile_organ) (STV 1.0 0.9091)) +(: cnet_isa_7b57dcae4f (IsA cloaca cavity) (STV 1.0 0.9091)) +(: cnet_isa_785d91a68e (IsA cloak covering) (STV 1.0 0.9091)) +(: cnet_isa_b8927b1088 (IsA cloak overgarment) (STV 1.0 0.9091)) +(: cnet_isa_6208a08b20 (IsA cloakmaker garmentmaker) (STV 1.0 0.9091)) +(: cnet_isa_84e0ce8d0d (IsA cloakroom lounge) (STV 1.0 0.9091)) +(: cnet_isa_d75292f460 (IsA cloakroom room) (STV 1.0 0.9091)) +(: cnet_isa_4c5c53a712 (IsA cloche millinery) (STV 1.0 0.9091)) +(: cnet_isa_774c992434 (IsA cloche protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_6f9278c4ac (IsA clock machine) (STV 1.0 0.9091)) +(: cnet_isa_f71d069fdf (IsA clock timepiece) (STV 1.0 0.9091)) +(: cnet_isa_c2d0263a13 (IsA clock_face face) (STV 1.0 0.9091)) +(: cnet_isa_efc2d44303 (IsA clock_golf golf) (STV 1.0 0.9091)) +(: cnet_isa_a237c818f4 (IsA clock_pendulum physical_pendulum) (STV 1.0 0.9091)) +(: cnet_isa_d6701e1b4e (IsA clock_radio radio_receiver) (STV 1.0 0.9091)) +(: cnet_isa_c81aeef8c7 (IsA clock_time reading) (STV 1.0 0.9091)) +(: cnet_isa_d48a1a4830 (IsA clock_tower tower) (STV 1.0 0.9091)) +(: cnet_isa_7ea1078179 (IsA clock_watcher idler) (STV 1.0 0.9091)) +(: cnet_isa_22576e2166 (IsA clock_watching attention) (STV 1.0 0.9091)) +(: cnet_isa_baa764bff9 (IsA clocking duration) (STV 1.0 0.9091)) +(: cnet_isa_aa35cc40b9 (IsA clocksmith craftsman) (STV 1.0 0.9091)) +(: cnet_isa_1d860b785b (IsA clockwork mechanism) (STV 1.0 0.9091)) +(: cnet_isa_eead6ce9fa (IsA clockwork_universe weltanschauung) (STV 1.0 0.9091)) +(: cnet_isa_d09bb6187f (IsA clog footwear) (STV 1.0 0.9091)) +(: cnet_isa_e9af3f0f0e (IsA clog hindrance) (STV 1.0 0.9091)) +(: cnet_isa_50ae40e7e3 (IsA clog_dance tap_dancing) (STV 1.0 0.9091)) +(: cnet_isa_0cac15d25b (IsA clog_dancer dancer) (STV 1.0 0.9091)) +(: cnet_isa_0850cddcd0 (IsA cloisonne enamelware) (STV 1.0 0.9091)) +(: cnet_isa_2544e3b730 (IsA cloister court) (STV 1.0 0.9091)) +(: cnet_isa_6e7ed108b5 (IsA clomipramine tricyclic) (STV 1.0 0.9091)) +(: cnet_isa_a00cd112e9 (IsA clone organism) (STV 1.0 0.9091)) +(: cnet_isa_ad0ab40639 (IsA cloning biological_research) (STV 1.0 0.9091)) +(: cnet_isa_a0d97ab593 (IsA clonus convulsion) (STV 1.0 0.9091)) +(: cnet_isa_aace1a9e28 (IsA close_call accomplishment) (STV 1.0 0.9091)) +(: cnet_isa_7d0eaa3354 (IsA close_order military_formation) (STV 1.0 0.9091)) +(: cnet_isa_851980b806 (IsA close_order_drill military_drill) (STV 1.0 0.9091)) +(: cnet_isa_47c7bf7893 (IsA close_quarter_fighting fight) (STV 1.0 0.9091)) +(: cnet_isa_8c6bde87f8 (IsA close_quarter site) (STV 1.0 0.9091)) +(: cnet_isa_017b5f9ae3 (IsA close_support support) (STV 1.0 0.9091)) +(: cnet_isa_84d119c077 (IsA close_supporting_fire supporting_fire) (STV 1.0 0.9091)) +(: cnet_isa_921d7a0a89 (IsA closed_chain chain) (STV 1.0 0.9091)) +(: cnet_isa_4e3758f245 (IsA closed_circuit circuit) (STV 1.0 0.9091)) +(: cnet_isa_e4d4bc972e (IsA closed_circuit_television television) (STV 1.0 0.9091)) +(: cnet_isa_2161cf4f80 (IsA closed_corporation corporation) (STV 1.0 0.9091)) +(: cnet_isa_ce8718f9ad (IsA closed_couplet couplet) (STV 1.0 0.9091)) +(: cnet_isa_07b7437231 (IsA closed_curve curve) (STV 1.0 0.9091)) +(: cnet_isa_ff3fb96a64 (IsA closed_end_fund investment_company) (STV 1.0 0.9091)) +(: cnet_isa_78728a007b (IsA closed_gentian gentian) (STV 1.0 0.9091)) +(: cnet_isa_9d1aa8342a (IsA closed_heart_surgery heart_surgery) (STV 1.0 0.9091)) +(: cnet_isa_a0d2613324 (IsA closed_interval interval) (STV 1.0 0.9091)) +(: cnet_isa_fefd5025e4 (IsA closed_loop control_system) (STV 1.0 0.9091)) +(: cnet_isa_219b1ab7fc (IsA closed_primary direct_primary) (STV 1.0 0.9091)) +(: cnet_isa_004385ad59 (IsA closed_shop company) (STV 1.0 0.9091)) +(: cnet_isa_6a9f5c2ecc (IsA closed_universe universe) (STV 1.0 0.9091)) +(: cnet_isa_c5d1c98bbd (IsA closely_held_corporation corporation) (STV 1.0 0.9091)) +(: cnet_isa_a216866624 (IsA closeness unsociability) (STV 1.0 0.9091)) +(: cnet_isa_fc3325c060 (IsA closeness belonging) (STV 1.0 0.9091)) +(: cnet_isa_e34e614ace (IsA closeout sale) (STV 1.0 0.9091)) +(: cnet_isa_0432df13ad (IsA closer reliever) (STV 1.0 0.9091)) +(: cnet_isa_80e08e23a3 (IsA closer person) (STV 1.0 0.9091)) +(: cnet_isa_27a85c323a (IsA closet room) (STV 1.0 0.9091)) +(: cnet_isa_545ff42738 (IsA closet_auger hydra) (STV 1.0 0.9091)) +(: cnet_isa_337a3bfe50 (IsA closet_drama drama) (STV 1.0 0.9091)) +(: cnet_isa_b45a7be881 (IsA closet_queen homosexual) (STV 1.0 0.9091)) +(: cnet_isa_68df0f792c (IsA closeup picture) (STV 1.0 0.9091)) +(: cnet_isa_194ea604a1 (IsA closeup_len camera_len) (STV 1.0 0.9091)) +(: cnet_isa_272577d241 (IsA closing approach) (STV 1.0 0.9091)) +(: cnet_isa_9d1212b625 (IsA closing_drawer pushing) (STV 1.0 0.9091)) +(: cnet_isa_555c800055 (IsA closing_price price) (STV 1.0 0.9091)) +(: cnet_isa_e3e06b1f7f (IsA closing_time hour) (STV 1.0 0.9091)) +(: cnet_isa_fde15b52bc (IsA clostridium eubacteria) (STV 1.0 0.9091)) +(: cnet_isa_2d3171aff9 (IsA clostridium_perfringen bioweapon) (STV 1.0 0.9091)) +(: cnet_isa_23f4780711 (IsA clostridium_perfringen eubacteria) (STV 1.0 0.9091)) +(: cnet_isa_7647d10503 (IsA closure termination) (STV 1.0 0.9091)) +(: cnet_isa_6dfa6b4833 (IsA closure gestalt_law_of_organization) (STV 1.0 0.9091)) +(: cnet_isa_76836d169f (IsA closure order) (STV 1.0 0.9091)) +(: cnet_isa_da0c7d0d24 (IsA closure_by_compartment closure) (STV 1.0 0.9091)) +(: cnet_isa_4e38c56a20 (IsA clot ball) (STV 1.0 0.9091)) +(: cnet_isa_47b60f57fb (IsA cloth_cap cap) (STV 1.0 0.9091)) +(: cnet_isa_dcf327ac2a (IsA cloth_covering covering) (STV 1.0 0.9091)) +(: cnet_isa_3609fa0183 (IsA cloth_linen fabric) (STV 1.0 0.9091)) +(: cnet_isa_59b3e8b2be (IsA clothe_closet wardrobe) (STV 1.0 0.9091)) +(: cnet_isa_81a5a2c3dd (IsA clothe_dryer dryer) (STV 1.0 0.9091)) +(: cnet_isa_1785f21818 (IsA clothe_dryer white_good) (STV 1.0 0.9091)) +(: cnet_isa_4c6f736877 (IsA clothe_hamper hamper) (STV 1.0 0.9091)) +(: cnet_isa_f087e487c2 (IsA clothe_moth tineid) (STV 1.0 0.9091)) +(: cnet_isa_6247e30f01 (IsA clothe_tree pole) (STV 1.0 0.9091)) +(: cnet_isa_05e1e26665 (IsA clothesbrush brush) (STV 1.0 0.9091)) +(: cnet_isa_830da19f14 (IsA clotheshorse framework) (STV 1.0 0.9091)) +(: cnet_isa_e6e17fd0f2 (IsA clothesline cord) (STV 1.0 0.9091)) +(: cnet_isa_2b253a211b (IsA clothespin fastener) (STV 1.0 0.9091)) +(: cnet_isa_9a7e45a4da (IsA clothier merchant) (STV 1.0 0.9091)) +(: cnet_isa_054bf84c5e (IsA clothing consumer_good) (STV 1.0 0.9091)) +(: cnet_isa_36558c2dd5 (IsA clothing covering) (STV 1.0 0.9091)) +(: cnet_isa_88f8781109 (IsA clothing_store shop) (STV 1.0 0.9091)) +(: cnet_isa_241e2e0cf6 (IsA clotted_cream cream) (STV 1.0 0.9091)) +(: cnet_isa_7f7069b495 (IsA clotting_time time_period) (STV 1.0 0.9091)) +(: cnet_isa_9909ea3e0f (IsA cloud atmospheric_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_5289b7663d (IsA cloud physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_d5edb47c99 (IsA cloud gloom) (STV 1.0 0.9091)) +(: cnet_isa_65e09c9030 (IsA cloud suspicion) (STV 1.0 0.9091)) +(: cnet_isa_3b1c00dd90 (IsA cloud unreality) (STV 1.0 0.9091)) +(: cnet_isa_27a593a3f4 (IsA cloud_bank cloud) (STV 1.0 0.9091)) +(: cnet_isa_0683f8e70e (IsA cloud_chamber particle_detector) (STV 1.0 0.9091)) +(: cnet_isa_09fccca203 (IsA cloud_cuckoo_land land) (STV 1.0 0.9091)) +(: cnet_isa_867b8cd448 (IsA cloud_cuckoo_land imaginary_place) (STV 1.0 0.9091)) +(: cnet_isa_8322fb1a3a (IsA cloud_grass bent) (STV 1.0 0.9091)) +(: cnet_isa_2a3942b09e (IsA cloudberry raspberry) (STV 1.0 0.9091)) +(: cnet_isa_7c25dad537 (IsA cloudiness opacity) (STV 1.0 0.9091)) +(: cnet_isa_4128c0d061 (IsA cloudiness bad_weather) (STV 1.0 0.9091)) +(: cnet_isa_c667a63c34 (IsA cloudiness semidarkness) (STV 1.0 0.9091)) +(: cnet_isa_c53738edf1 (IsA clouding vaporization) (STV 1.0 0.9091)) +(: cnet_isa_649e3046f8 (IsA cloudlessness sunniness) (STV 1.0 0.9091)) +(: cnet_isa_d8458eeb0b (IsA cloud often_in_sky) (STV 1.0 0.9339)) +(: cnet_isa_0d4e6ddd98 (IsA cloud usually_in_sky) (STV 1.0 0.9339)) +(: cnet_isa_60fbb76c77 (IsA cloud water_vapor) (STV 1.0 0.9524)) +(: cnet_isa_6216d4a483 (IsA clout target) (STV 1.0 0.9091)) +(: cnet_isa_3692c90d3b (IsA clout_nail nail) (STV 1.0 0.9091)) +(: cnet_isa_c29bfa4898 (IsA clove garlic) (STV 1.0 0.9091)) +(: cnet_isa_eb598685de (IsA clove spice) (STV 1.0 0.9091)) +(: cnet_isa_98162ac02f (IsA clove flower_bud) (STV 1.0 0.9091)) +(: cnet_isa_e231a87b9e (IsA clove spice_tree) (STV 1.0 0.9091)) +(: cnet_isa_7cfebc6cfe (IsA clove_hitch knot) (STV 1.0 0.9091)) +(: cnet_isa_8c644cbfa5 (IsA clove_oil essential_oil) (STV 1.0 0.9091)) +(: cnet_isa_b9fdc8790e (IsA cloven_foot hoof) (STV 1.0 0.9091)) +(: cnet_isa_03fa5f2aa5 (IsA cloven_hoof mark) (STV 1.0 0.9091)) +(: cnet_isa_aec8dec1c3 (IsA clover herb) (STV 1.0 0.9091)) +(: cnet_isa_72540d60b4 (IsA clover_fern aquatic_fern) (STV 1.0 0.9091)) +(: cnet_isa_211a62b388 (IsA clover_leaf_roll bun) (STV 1.0 0.9091)) +(: cnet_isa_16ee523ee8 (IsA cloverleaf interchange) (STV 1.0 0.9091)) +(: cnet_isa_cdf45d2d08 (IsA clovis_culture paleo_american_culture) (STV 1.0 0.9091)) +(: cnet_isa_f9124adaee (IsA clowder animal_group) (STV 1.0 0.9091)) +(: cnet_isa_fd14a4f785 (IsA clown comedian) (STV 1.0 0.9091)) +(: cnet_isa_4c007dc9a4 (IsA clown fool) (STV 1.0 0.9091)) +(: cnet_isa_e207aa4ec2 (IsA clown_anemone_fish anemone_fish) (STV 1.0 0.9091)) +(: cnet_isa_486c745bea (IsA cloze_procedure diagnostic_test) (STV 1.0 0.9091)) +(: cnet_isa_bed0524dcd (IsA club exclusive_group_of_people) (STV 1.0 0.9339)) +(: cnet_isa_f5f4da1739 (IsA club playing_card) (STV 1.0 0.9091)) +(: cnet_isa_fa35720c68 (IsA club stick) (STV 1.0 0.9091)) +(: cnet_isa_b6156d88e3 (IsA club association) (STV 1.0 0.9091)) +(: cnet_isa_35a1a03885 (IsA club_car car) (STV 1.0 0.9091)) +(: cnet_isa_dbb04f2797 (IsA club_drug controlled_substance) (STV 1.0 0.9091)) +(: cnet_isa_20f7c8c250 (IsA club_fungus coral_fungus) (STV 1.0 0.9091)) +(: cnet_isa_d979e3d362 (IsA club_member member) (STV 1.0 0.9091)) +(: cnet_isa_65ac50503b (IsA club_moss fern_ally) (STV 1.0 0.9091)) +(: cnet_isa_ffaf636dd5 (IsA club_sandwich sandwich) (STV 1.0 0.9091)) +(: cnet_isa_92c459bce1 (IsA clubbing symptom) (STV 1.0 0.9091)) +(: cnet_isa_d7db237655 (IsA clubfoot deformity) (STV 1.0 0.9091)) +(: cnet_isa_f7b1fa30aa (IsA clubhouse building) (STV 1.0 0.9091)) +(: cnet_isa_2027c369fe (IsA clubroom room) (STV 1.0 0.9091)) +(: cnet_isa_03a8ca4feb (IsA clubroot_fungus fungus) (STV 1.0 0.9091)) +(: cnet_isa_fbf3a44336 (IsA cluck cry) (STV 1.0 0.9091)) +(: cnet_isa_f5bcbc741d (IsA clue evidence) (STV 1.0 0.9091)) +(: cnet_isa_2a7a54495e (IsA clumber spaniel) (STV 1.0 0.9091)) +(: cnet_isa_9822517e69 (IsA clumsy_person person) (STV 1.0 0.9091)) +(: cnet_isa_65d8ff712b (IsA clunch soil) (STV 1.0 0.9091)) +(: cnet_isa_416a2058af (IsA clupea fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_348a862bbd (IsA clupeid_fish soft_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_f075b7e3fd (IsA clupeidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_188f181afb (IsA clusia tree) (STV 1.0 0.9091)) +(: cnet_isa_0cb459995e (IsA cluster_bomb bomb) (STV 1.0 0.9091)) +(: cnet_isa_98d4193d49 (IsA cluster_of_differentiation_4 glycoprotein) (STV 1.0 0.9091)) +(: cnet_isa_e32f937b77 (IsA cluster_of_differentiation_8 glycoprotein) (STV 1.0 0.9091)) +(: cnet_isa_1c0b0a1997 (IsA clustered_bellflower campanula) (STV 1.0 0.9091)) +(: cnet_isa_464b64dc13 (IsA clustered_lady_s_slipper lady_s_slipper) (STV 1.0 0.9091)) +(: cnet_isa_762e338784 (IsA clustered_poppy_mallow poppy_mallow) (STV 1.0 0.9091)) +(: cnet_isa_4d418d9ac1 (IsA clutch coupling) (STV 1.0 0.9091)) +(: cnet_isa_2d15bf9497 (IsA clutch pedal) (STV 1.0 0.9091)) +(: cnet_isa_700215362b (IsA clutch brood) (STV 1.0 0.9091)) +(: cnet_isa_8dc21bd9ab (IsA clutch temporary_state) (STV 1.0 0.9091)) +(: cnet_isa_38952325d3 (IsA clutch_bag bag) (STV 1.0 0.9091)) +(: cnet_isa_3880d617bc (IsA clutter noise) (STV 1.0 0.9091)) +(: cnet_isa_bd325e3dae (IsA clutter radar_echo) (STV 1.0 0.9091)) +(: cnet_isa_9c18e86682 (IsA clutter disorderliness) (STV 1.0 0.9091)) +(: cnet_isa_2fe4f5ad51 (IsA clydesdale draft_horse) (STV 1.0 0.9091)) +(: cnet_isa_0f573a6540 (IsA clydesdale_terrier skye_terrier) (STV 1.0 0.9091)) +(: cnet_isa_c68a6c9dc8 (IsA clypeus protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_f7166046d2 (IsA cnemidophorus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_d1e16be926 (IsA cnicus asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4c8a4f2cf9 (IsA cnidaria phylum) (STV 1.0 0.9091)) +(: cnet_isa_b77eb705c8 (IsA cnidoscolus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_42a120d6e8 (IsA cnidosporidia class) (STV 1.0 0.9091)) +(: cnet_isa_8d2e3d15b9 (IsA cnn television_channel) (STV 1.0 0.9091)) +(: cnet_isa_402eb5503e (IsA cnn television_network) (STV 1.0 0.9091)) +(: cnet_isa_3410716869 (IsA co_beneficiary beneficiary) (STV 1.0 0.9091)) +(: cnet_isa_5bacf8e5d3 (IsA co_discoverer finder) (STV 1.0 0.9091)) +(: cnet_isa_0788b2dc21 (IsA co_ed undergraduate) (STV 1.0 0.9091)) +(: cnet_isa_54af70e9ed (IsA co_option appointment) (STV 1.0 0.9091)) +(: cnet_isa_cb37884917 (IsA co_option election) (STV 1.0 0.9091)) +(: cnet_isa_b7c37baa65 (IsA co_star star) (STV 1.0 0.9091)) +(: cnet_isa_a86663324d (IsA coach person_who_coache_other_people) (STV 1.0 0.9091)) +(: cnet_isa_3d53ddab5e (IsA coach carriage) (STV 1.0 0.9091)) +(: cnet_isa_a261bb272d (IsA coach teacher) (STV 1.0 0.9091)) +(: cnet_isa_795e74db81 (IsA coach trainer) (STV 1.0 0.9091)) +(: cnet_isa_b2efbf6267 (IsA coach_horse draft_horse) (STV 1.0 0.9091)) +(: cnet_isa_d96ef17acb (IsA coach_house outbuilding) (STV 1.0 0.9091)) +(: cnet_isa_77c398a8f2 (IsA coachbuilder craftsman) (STV 1.0 0.9091)) +(: cnet_isa_c212140fc3 (IsA coaching employment) (STV 1.0 0.9091)) +(: cnet_isa_4e2fbb8de3 (IsA coachman driver) (STV 1.0 0.9091)) +(: cnet_isa_165ac4c58d (IsA coachwhip whip_snake) (STV 1.0 0.9091)) +(: cnet_isa_77e80dfa6c (IsA coadjutor assistant) (STV 1.0 0.9091)) +(: cnet_isa_24505021de (IsA coagulant agent) (STV 1.0 0.9091)) +(: cnet_isa_5245d21c0f (IsA coagulase enzyme) (STV 1.0 0.9091)) +(: cnet_isa_e9e1b4ef35 (IsA coagulation_factor plasma_protein) (STV 1.0 0.9091)) +(: cnet_isa_6e0d012490 (IsA coal fossil_fuel) (STV 1.0 0.9091)) +(: cnet_isa_5806daf87e (IsA coal vegetable_matter) (STV 1.0 0.9091)) +(: cnet_isa_4af18961dc (IsA coal_black black) (STV 1.0 0.9091)) +(: cnet_isa_7d8c3d5c1a (IsA coal_car freight_car) (STV 1.0 0.9091)) +(: cnet_isa_e75282812b (IsA coal_chute chute) (STV 1.0 0.9091)) +(: cnet_isa_34f98e6a6d (IsA coal_gas fuel) (STV 1.0 0.9091)) +(: cnet_isa_b460b1009a (IsA coal_house shed) (STV 1.0 0.9091)) +(: cnet_isa_f26b710e76 (IsA coal_industry industry) (STV 1.0 0.9091)) +(: cnet_isa_a5c6534dc7 (IsA coal_mine mine) (STV 1.0 0.9091)) +(: cnet_isa_cc3933377c (IsA coal_miner miner) (STV 1.0 0.9091)) +(: cnet_isa_55f6ebe300 (IsA coal_seam seam) (STV 1.0 0.9091)) +(: cnet_isa_fa1e77ef42 (IsA coal_shovel hand_shovel) (STV 1.0 0.9091)) +(: cnet_isa_d8bc6fa427 (IsA coal_tar pitch) (STV 1.0 0.9091)) +(: cnet_isa_730ed112f7 (IsA coalbin bin) (STV 1.0 0.9091)) +(: cnet_isa_95f4fc3a55 (IsA coalescence union) (STV 1.0 0.9091)) +(: cnet_isa_aa02c8f9ab (IsA coalface face) (STV 1.0 0.9091)) +(: cnet_isa_ab85e9def7 (IsA coalfield field) (STV 1.0 0.9091)) +(: cnet_isa_d156c874b2 (IsA coaling_station seaport) (STV 1.0 0.9091)) +(: cnet_isa_956a7fe783 (IsA coalition union) (STV 1.0 0.9091)) +(: cnet_isa_dfdffb535c (IsA coalman deliveryman) (STV 1.0 0.9091)) +(: cnet_isa_97ffc4e98f (IsA coaming framework) (STV 1.0 0.9091)) +(: cnet_isa_c06eaa70d1 (IsA coarctation narrowing) (STV 1.0 0.9091)) +(: cnet_isa_c71879a5b7 (IsA coarseness inelegance) (STV 1.0 0.9091)) +(: cnet_isa_2d195d8eb6 (IsA coarseness roughness) (STV 1.0 0.9091)) +(: cnet_isa_fbe2fbabff (IsA coarseness expressive_style) (STV 1.0 0.9091)) +(: cnet_isa_5da2822398 (IsA coast view) (STV 1.0 0.9091)) +(: cnet_isa_d0aae1cd6c (IsA coast slope) (STV 1.0 0.9091)) +(: cnet_isa_257eee4273 (IsA coast_boykinia wildflower) (STV 1.0 0.9091)) +(: cnet_isa_37124daa9b (IsA coast_lily lily) (STV 1.0 0.9091)) +(: cnet_isa_7b04fd9060 (IsA coast_live_oak live_oak) (STV 1.0 0.9091)) +(: cnet_isa_fc33f0865d (IsA coast_rhododendron rhododendron) (STV 1.0 0.9091)) +(: cnet_isa_9298b791e8 (IsA coastal_diving_bird seabird) (STV 1.0 0.9091)) +(: cnet_isa_80ae9b81b6 (IsA coastal_plain land) (STV 1.0 0.9091)) +(: cnet_isa_2728ac8c95 (IsA coastal_rein_orchid rein_orchid) (STV 1.0 0.9091)) +(: cnet_isa_6b5631a0b5 (IsA coaster protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_c50b6f0b1d (IsA coaster mover) (STV 1.0 0.9091)) +(: cnet_isa_242fd0fcaa (IsA coaster resident) (STV 1.0 0.9091)) +(: cnet_isa_3845873bf1 (IsA coaster_brake brake) (STV 1.0 0.9091)) +(: cnet_isa_c2e521bb8a (IsA coastguard military_service) (STV 1.0 0.9091)) +(: cnet_isa_6422eb4ea6 (IsA coastguardsman bluejacket) (STV 1.0 0.9091)) +(: cnet_isa_9e8c1ad922 (IsA coastland land) (STV 1.0 0.9091)) +(: cnet_isa_65e28e4ab1 (IsA coastline outline) (STV 1.0 0.9091)) +(: cnet_isa_fda0a328e8 (IsA coat garment) (STV 1.0 0.9091)) +(: cnet_isa_827111419f (IsA coat hair) (STV 1.0 0.9091)) +(: cnet_isa_5d050dccf1 (IsA coat overgarment) (STV 1.0 0.9091)) +(: cnet_isa_8eec04618a (IsA coat_button button) (STV 1.0 0.9091)) +(: cnet_isa_f63951e4ed (IsA coat_closet wardrobe) (STV 1.0 0.9091)) +(: cnet_isa_243486eade (IsA coat_hanger inanimate_object) (STV 1.0 0.9339)) +(: cnet_isa_d4694975de (IsA coat_hanger hanger) (STV 1.0 0.9091)) +(: cnet_isa_eda317d31c (IsA coat_of_arm heraldry) (STV 1.0 0.9091)) +(: cnet_isa_6329df33fc (IsA coat_of_paint coating) (STV 1.0 0.9091)) +(: cnet_isa_7a4a9d149d (IsA coat_of_paint paint) (STV 1.0 0.9091)) +(: cnet_isa_5edbd705cc (IsA coatdress dress) (STV 1.0 0.9091)) +(: cnet_isa_1e4c13dcf1 (IsA coatee coat) (STV 1.0 0.9091)) +(: cnet_isa_05da69730d (IsA coati procyonid) (STV 1.0 0.9091)) +(: cnet_isa_4ddeddf4a3 (IsA coating covering) (STV 1.0 0.9091)) +(: cnet_isa_4cb93eed55 (IsA coating fabric) (STV 1.0 0.9091)) +(: cnet_isa_c2d2a454fc (IsA coating decorativeness) (STV 1.0 0.9091)) +(: cnet_isa_b87581e96e (IsA coatrack rack) (STV 1.0 0.9091)) +(: cnet_isa_e01be22db5 (IsA coattail flap) (STV 1.0 0.9091)) +(: cnet_isa_b038e3f851 (IsA coattail_effect consequence) (STV 1.0 0.9091)) +(: cnet_isa_559c55d2e1 (IsA coauthor writer) (STV 1.0 0.9091)) +(: cnet_isa_2f23a91c2f (IsA coaxial_cable cable) (STV 1.0 0.9091)) +(: cnet_isa_b48dc70a0c (IsA cob harness_horse) (STV 1.0 0.9091)) +(: cnet_isa_02ed5c0cf6 (IsA cob swan) (STV 1.0 0.9091)) +(: cnet_isa_173cda1f3b (IsA cobalt metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_25e9fd9d1d (IsA cobalt_60 cobalt) (STV 1.0 0.9091)) +(: cnet_isa_592b96e28a (IsA cobalt_blue pigment) (STV 1.0 0.9091)) +(: cnet_isa_552f780243 (IsA cobaltite mineral) (STV 1.0 0.9091)) +(: cnet_isa_a4ea6f6c40 (IsA cobber buddy) (STV 1.0 0.9091)) +(: cnet_isa_eda4ec65d2 (IsA cobble paving_stone) (STV 1.0 0.9091)) +(: cnet_isa_5ebfe3a826 (IsA cobbler highball) (STV 1.0 0.9091)) +(: cnet_isa_2f9e4e883e (IsA cobbler maker) (STV 1.0 0.9091)) +(: cnet_isa_a4284dc007 (IsA cobbler testis) (STV 1.0 0.9091)) +(: cnet_isa_814866cfd5 (IsA cobbler nonsense) (STV 1.0 0.9091)) +(: cnet_isa_0e1b27b112 (IsA cobia percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_b0a4183604 (IsA cobitidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_08608319e8 (IsA cobnut hazelnut) (STV 1.0 0.9091)) +(: cnet_isa_8269a244c5 (IsA cobol programming_language) (STV 1.0 0.9091)) +(: cnet_isa_38738ceecb (IsA cobra snake) (STV 1.0 0.9454)) +(: cnet_isa_aa5d621e59 (IsA cobra elapid) (STV 1.0 0.9091)) +(: cnet_isa_fafd4aae1b (IsA cobweb fabric) (STV 1.0 0.9091)) +(: cnet_isa_1836083a2d (IsA cobweb fibril) (STV 1.0 0.9091)) +(: cnet_isa_d255d5f3d2 (IsA cobweb spider_web) (STV 1.0 0.9091)) +(: cnet_isa_8c1be266d8 (IsA coca tree) (STV 1.0 0.9091)) +(: cnet_isa_adecefb737 (IsA coca plant_product) (STV 1.0 0.9091)) +(: cnet_isa_2274b12068 (IsA coca_cola soft_drink) (STV 1.0 0.9091)) +(: cnet_isa_c00a41a99a (IsA coca_cola cola) (STV 1.0 0.9091)) +(: cnet_isa_f511a2695f (IsA cocaine chemical) (STV 1.0 0.9091)) +(: cnet_isa_2e01b67549 (IsA cocaine hard_drug) (STV 1.0 0.9091)) +(: cnet_isa_ac0119d276 (IsA cocaine_addict drug_addict) (STV 1.0 0.9091)) +(: cnet_isa_46492b5bb9 (IsA cocaine_addiction drug_addiction) (STV 1.0 0.9091)) +(: cnet_isa_d02696dbe6 (IsA cocarboxylase coenzyme) (STV 1.0 0.9091)) +(: cnet_isa_697ae31be0 (IsA coccid_insect homopterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_75415a0de4 (IsA coccidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_e5cf2b65ab (IsA coccidia animal_order) (STV 1.0 0.9091)) +(: cnet_isa_bfcad935ba (IsA coccidioidomycosis fungal_infection) (STV 1.0 0.9091)) +(: cnet_isa_52ae8c8fe1 (IsA coccidiosis infestation) (STV 1.0 0.9091)) +(: cnet_isa_c0784c05c7 (IsA coccidium sporozoan) (STV 1.0 0.9091)) +(: cnet_isa_aaaf18b999 (IsA coccinellidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_390fd0ef0e (IsA coccobacillus eubacteria) (STV 1.0 0.9091)) +(: cnet_isa_46a654586b (IsA coccoidea arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_6480e0273c (IsA coccothrauste bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_c8e85416d4 (IsA cocculus magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ed1e9bab28 (IsA coccus eubacteria) (STV 1.0 0.9091)) +(: cnet_isa_b787e9fbf4 (IsA coccygeal_nerve spinal_nerve) (STV 1.0 0.9091)) +(: cnet_isa_fb8c3dd88d (IsA coccygeal_plexus nerve_plexus) (STV 1.0 0.9091)) +(: cnet_isa_f207d210ed (IsA coccygeal_vertebra vertebra) (STV 1.0 0.9091)) +(: cnet_isa_8d16d7f7c4 (IsA coccyx bone) (STV 1.0 0.9091)) +(: cnet_isa_48debd4dbd (IsA coccyzus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_5e548f0267 (IsA cochimi yuman) (STV 1.0 0.9091)) +(: cnet_isa_2f24d3e013 (IsA cochimi hoka) (STV 1.0 0.9091)) +(: cnet_isa_cf073968cf (IsA cochin domestic_fowl) (STV 1.0 0.9091)) +(: cnet_isa_a13304d8a1 (IsA cochineal dye) (STV 1.0 0.9091)) +(: cnet_isa_147e0d4533 (IsA cochineal_insect scale_insect) (STV 1.0 0.9091)) +(: cnet_isa_10e2fe580e (IsA cochlea tube) (STV 1.0 0.9091)) +(: cnet_isa_2b889474cb (IsA cochlearia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_07a02e8547 (IsA cochlearius bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_0ad3b2ddcf (IsA cochon_de_lait pork) (STV 1.0 0.9091)) +(: cnet_isa_3c43023f6f (IsA cock_s_egg vine) (STV 1.0 0.9091)) +(: cnet_isa_e7197b551a (IsA cock male_chicken) (STV 1.0 0.9339)) +(: cnet_isa_41b28c3070 (IsA cock bird) (STV 1.0 0.9091)) +(: cnet_isa_8d9149fb45 (IsA cock chicken) (STV 1.0 0.9091)) +(: cnet_isa_ad403aca2e (IsA cock penis) (STV 1.0 0.9091)) +(: cnet_isa_55b1743367 (IsA cock_doodle_doo crow) (STV 1.0 0.9091)) +(: cnet_isa_f12c8c7364 (IsA cock_leekie soup) (STV 1.0 0.9091)) +(: cnet_isa_c59e61246b (IsA cock_of_rock cotinga) (STV 1.0 0.9091)) +(: cnet_isa_6c3e2bbfe0 (IsA cock_sucking fellatio) (STV 1.0 0.9091)) +(: cnet_isa_1fd683bcb0 (IsA cockade decoration) (STV 1.0 0.9091)) +(: cnet_isa_97a0592823 (IsA cockaigne imaginary_place) (STV 1.0 0.9091)) +(: cnet_isa_54fd734c70 (IsA cockateel parrot) (STV 1.0 0.9091)) +(: cnet_isa_a9c16a126d (IsA cockatoo parrot) (STV 1.0 0.9091)) +(: cnet_isa_552d99aed9 (IsA cockatrice mythical_monster) (STV 1.0 0.9091)) +(: cnet_isa_6ab94769c0 (IsA cockchafer melolonthid_beetle) (STV 1.0 0.9091)) +(: cnet_isa_fdc6f0690b (IsA cockcroft_and_walton_accelerator accelerator) (STV 1.0 0.9091)) +(: cnet_isa_4bceb7dc86 (IsA cocked_hat hat) (STV 1.0 0.9091)) +(: cnet_isa_dfbc7aebbb (IsA cocker_spaniel dog) (STV 1.0 0.9454)) +(: cnet_isa_8430e01183 (IsA cocker_spaniel spaniel) (STV 1.0 0.9091)) +(: cnet_isa_a1c78f03b2 (IsA cockerel cock) (STV 1.0 0.9091)) +(: cnet_isa_5a0005d27b (IsA cockfight match) (STV 1.0 0.9091)) +(: cnet_isa_60f367cf6b (IsA cockfighting blood_sport) (STV 1.0 0.9091)) +(: cnet_isa_7b9f9f445e (IsA cockhorse plaything) (STV 1.0 0.9091)) +(: cnet_isa_1e172b4e47 (IsA cockle bivalve) (STV 1.0 0.9091)) +(: cnet_isa_3d86e4e966 (IsA cockle shellfish) (STV 1.0 0.9091)) +(: cnet_isa_8bb59a1c9d (IsA cocklebur weed) (STV 1.0 0.9091)) +(: cnet_isa_96f0775c0d (IsA cockleshell small_boat) (STV 1.0 0.9091)) +(: cnet_isa_32fb32ecbc (IsA cockloft loft) (STV 1.0 0.9091)) +(: cnet_isa_4396bc1808 (IsA cockney english) (STV 1.0 0.9091)) +(: cnet_isa_51a3b09ce1 (IsA cockney londoner) (STV 1.0 0.9091)) +(: cnet_isa_22882648b5 (IsA cockpit compartment) (STV 1.0 0.9091)) +(: cnet_isa_c94e9509ed (IsA cockpit pit) (STV 1.0 0.9091)) +(: cnet_isa_b6c09d5dca (IsA cockpit seat) (STV 1.0 0.9091)) +(: cnet_isa_ed72578e21 (IsA cockroach dictyopterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_209b29ee97 (IsA cockroache insect) (STV 1.0 0.9454)) +(: cnet_isa_d42542c5ce (IsA cockscomb cap) (STV 1.0 0.9091)) +(: cnet_isa_57c2631f69 (IsA cockscomb herb) (STV 1.0 0.9091)) +(: cnet_isa_ccd1426108 (IsA cockspur tree) (STV 1.0 0.9091)) +(: cnet_isa_4aa3ef6d95 (IsA cockspur_thorn hawthorn) (STV 1.0 0.9091)) +(: cnet_isa_605af8d78d (IsA cocksucker sensualist) (STV 1.0 0.9091)) +(: cnet_isa_5d85c79a8f (IsA cocktail appetizer) (STV 1.0 0.9091)) +(: cnet_isa_2e9a784763 (IsA cocktail mixed_drink) (STV 1.0 0.9091)) +(: cnet_isa_5b5c6f6e85 (IsA cocktail_dress dress) (STV 1.0 0.9091)) +(: cnet_isa_ce47a5b4b7 (IsA cocktail_lounge barroom) (STV 1.0 0.9091)) +(: cnet_isa_14eeacb21e (IsA cocktail_party party) (STV 1.0 0.9091)) +(: cnet_isa_271d824e78 (IsA cocktail_sauce sauce) (STV 1.0 0.9091)) +(: cnet_isa_9631877bd8 (IsA cocktail_shaker shaker) (STV 1.0 0.9091)) +(: cnet_isa_3eeeae8534 (IsA coco_plum fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_ebc6cc4016 (IsA cocoa beverage) (STV 1.0 0.9091)) +(: cnet_isa_a368074dec (IsA cocoa foodstuff) (STV 1.0 0.9091)) +(: cnet_isa_6a2c6fef93 (IsA cocoa_butter chocolate) (STV 1.0 0.9091)) +(: cnet_isa_1c2806363e (IsA cocoa_butter fat) (STV 1.0 0.9091)) +(: cnet_isa_92adceb059 (IsA cocoa_plum edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_984ffc630f (IsA cocoa_powder chocolate) (STV 1.0 0.9091)) +(: cnet_isa_8bc0539e61 (IsA cocobolo tree) (STV 1.0 0.9091)) +(: cnet_isa_2e4542cf8c (IsA coconut edible_nut) (STV 1.0 0.9091)) +(: cnet_isa_0c008add20 (IsA coconut food) (STV 1.0 0.9091)) +(: cnet_isa_0360a3d1d0 (IsA coconut palm) (STV 1.0 0.9091)) +(: cnet_isa_b216fe5618 (IsA coconut_cake cake) (STV 1.0 0.9091)) +(: cnet_isa_34c5b50074 (IsA coconut_macaroon macaroon) (STV 1.0 0.9091)) +(: cnet_isa_acbafc3269 (IsA coconut_milk milk) (STV 1.0 0.9091)) +(: cnet_isa_53609c8ab3 (IsA coconut_oil vegetable_oil) (STV 1.0 0.9091)) +(: cnet_isa_ac2ced0621 (IsA cocoon natural_object) (STV 1.0 0.9091)) +(: cnet_isa_47ba3fe021 (IsA cocooning seclusion) (STV 1.0 0.9091)) +(: cnet_isa_bf4fb5cbdc (IsA cocopa yuman) (STV 1.0 0.9091)) +(: cnet_isa_7a1b6fc57a (IsA cocopah hoka) (STV 1.0 0.9091)) +(: cnet_isa_b0cff5a4d4 (IsA coco monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ab6062ce1b (IsA cocotte casserole) (STV 1.0 0.9091)) +(: cnet_isa_f3b721dff7 (IsA cocozelle summer_squash) (STV 1.0 0.9091)) +(: cnet_isa_832203e563 (IsA cocozelle marrow) (STV 1.0 0.9091)) +(: cnet_isa_441e077ebf (IsA cocuswood wood) (STV 1.0 0.9091)) +(: cnet_isa_ccc3ed12b7 (IsA cod gadoid) (STV 1.0 0.9091)) +(: cnet_isa_626873b2b3 (IsA cod saltwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_f69bee4f55 (IsA cod_liver_oil animal_oil) (STV 1.0 0.9091)) +(: cnet_isa_8f94aea15f (IsA cod_oil cod_liver_oil) (STV 1.0 0.9091)) +(: cnet_isa_649c846669 (IsA codariocalyx rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_806c4df416 (IsA code coding_system) (STV 1.0 0.9091)) +(: cnet_isa_46012c5524 (IsA code written_communication) (STV 1.0 0.9091)) +(: cnet_isa_9524a7f349 (IsA code_flag flag) (STV 1.0 0.9091)) +(: cnet_isa_875f57837b (IsA code_of_conduct convention) (STV 1.0 0.9091)) +(: cnet_isa_73627597a6 (IsA codefendant defendant) (STV 1.0 0.9091)) +(: cnet_isa_e5bdb2778f (IsA codeine analgesic) (STV 1.0 0.9091)) +(: cnet_isa_de8272efcd (IsA codeine antitussive) (STV 1.0 0.9091)) +(: cnet_isa_e98475fb8c (IsA codeine opiate) (STV 1.0 0.9091)) +(: cnet_isa_af882d2f42 (IsA codetalker secret_agent) (STV 1.0 0.9091)) +(: cnet_isa_99e0c4ba68 (IsA codex list) (STV 1.0 0.9091)) +(: cnet_isa_9c815c370f (IsA codex manuscript) (STV 1.0 0.9091)) +(: cnet_isa_231bd3977b (IsA codfish_ball fish_cake) (STV 1.0 0.9091)) +(: cnet_isa_7d5bd75f01 (IsA codger old_man) (STV 1.0 0.9091)) +(: cnet_isa_d9c03711d4 (IsA codiaeum rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d4eec4914a (IsA codicil appendix) (STV 1.0 0.9091)) +(: cnet_isa_387a7f152d (IsA codification systematization) (STV 1.0 0.9091)) +(: cnet_isa_54f55d9e92 (IsA coding_system writing) (STV 1.0 0.9091)) +(: cnet_isa_7dea44ac0a (IsA codling cod) (STV 1.0 0.9091)) +(: cnet_isa_0999974247 (IsA codling_moth tortricid) (STV 1.0 0.9091)) +(: cnet_isa_82b462cc9f (IsA codon sequence) (STV 1.0 0.9091)) +(: cnet_isa_e175f52e1f (IsA codpiece flap) (STV 1.0 0.9091)) +(: cnet_isa_7ccb55f0e0 (IsA coeducation education) (STV 1.0 0.9091)) +(: cnet_isa_b95cfb5853 (IsA coefficient constant) (STV 1.0 0.9091)) +(: cnet_isa_d6cbe7ef1c (IsA coefficient_of_concordance kendall_test) (STV 1.0 0.9091)) +(: cnet_isa_02378cc72a (IsA coefficient_of_elasticity modulus) (STV 1.0 0.9091)) +(: cnet_isa_1986f814e1 (IsA coefficient_of_expansion coefficient) (STV 1.0 0.9091)) +(: cnet_isa_21fdb08430 (IsA coefficient_of_friction coefficient) (STV 1.0 0.9091)) +(: cnet_isa_ee95d7f8a4 (IsA coefficient_of_mutual_induction coefficient) (STV 1.0 0.9091)) +(: cnet_isa_e4e39b0e25 (IsA coefficient_of_reflection coefficient) (STV 1.0 0.9091)) +(: cnet_isa_6ff009c864 (IsA coefficient_of_self_induction coefficient) (STV 1.0 0.9091)) +(: cnet_isa_412ea98ac2 (IsA coefficient_of_viscosity coefficient) (STV 1.0 0.9091)) +(: cnet_isa_0df75abf85 (IsA coelacanth crossopterygian) (STV 1.0 0.9091)) +(: cnet_isa_9f8d2d4543 (IsA coelenterate invertebrate) (STV 1.0 0.9091)) +(: cnet_isa_4d33c0400f (IsA coelenterate_family family) (STV 1.0 0.9091)) +(: cnet_isa_ad5b5517ce (IsA coelenterate_genus genus) (STV 1.0 0.9091)) +(: cnet_isa_03c053f363 (IsA coelenteron sac) (STV 1.0 0.9091)) +(: cnet_isa_ceedbc41e2 (IsA coeloglossum monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4feca0f546 (IsA coelogyne orchid) (STV 1.0 0.9091)) +(: cnet_isa_1e2598caff (IsA coelophysis ceratosaur) (STV 1.0 0.9091)) +(: cnet_isa_4d06a1b7f6 (IsA coelostat optical_device) (STV 1.0 0.9091)) +(: cnet_isa_a4c195ba94 (IsA coenzyme coenzyme) (STV 1.0 0.9091)) +(: cnet_isa_7c3c294eea (IsA coenzyme molecule) (STV 1.0 0.9091)) +(: cnet_isa_946ce0214f (IsA coercion enforcement) (STV 1.0 0.9091)) +(: cnet_isa_a0c5158037 (IsA coereba bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_a277daeba7 (IsA coerebidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_d12cd2d60f (IsA coeur_d_alene native_american) (STV 1.0 0.9091)) +(: cnet_isa_8cc89d257b (IsA coeval people) (STV 1.0 0.9091)) +(: cnet_isa_6717ef442c (IsA coexistence being) (STV 1.0 0.9091)) +(: cnet_isa_bb8062c0ad (IsA coextension extension) (STV 1.0 0.9091)) +(: cnet_isa_a34a9b2216 (IsA cofactor compound) (STV 1.0 0.9091)) +(: cnet_isa_70bd3c3f57 (IsA coffea asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f71158862a (IsA coffee acquired_taste) (STV 1.0 0.9091)) +(: cnet_isa_4bf19920d6 (IsA coffee addictive_substance) (STV 1.0 0.9091)) +(: cnet_isa_f9114a6af4 (IsA coffee beverage) (STV 1.0 0.9091)) +(: cnet_isa_50706258ac (IsA coffee bushy_plant) (STV 1.0 0.9091)) +(: cnet_isa_52ef5b6540 (IsA coffee good_after_dinner_drink) (STV 1.0 0.9091)) +(: cnet_isa_85c5557c4a (IsA coffee popular_drink) (STV 1.0 0.9091)) +(: cnet_isa_cca1e995c1 (IsA coffee stimulant) (STV 1.0 0.9636)) +(: cnet_isa_3660126240 (IsA coffee tree) (STV 1.0 0.9091)) +(: cnet_isa_a2dc1e84ac (IsA coffee_bean seed) (STV 1.0 0.9091)) +(: cnet_isa_44c425dc7f (IsA coffee_blight blight) (STV 1.0 0.9091)) +(: cnet_isa_34e51f55ff (IsA coffee_break bite) (STV 1.0 0.9091)) +(: cnet_isa_12c43a087f (IsA coffee_can can) (STV 1.0 0.9091)) +(: cnet_isa_140b93fd3c (IsA coffee_cup cup) (STV 1.0 0.9091)) +(: cnet_isa_d1d0058aee (IsA coffee_fern cliff_brake) (STV 1.0 0.9091)) +(: cnet_isa_db30668b19 (IsA coffee_filter filter) (STV 1.0 0.9091)) +(: cnet_isa_816b1f5da0 (IsA coffee_fungus fungus) (STV 1.0 0.9091)) +(: cnet_isa_3f6aa118c4 (IsA coffee_ground ground) (STV 1.0 0.9091)) +(: cnet_isa_3b17027a36 (IsA coffee_liqueur liqueur) (STV 1.0 0.9091)) +(: cnet_isa_15c7f437bc (IsA coffee_maker kitchen_appliance) (STV 1.0 0.9091)) +(: cnet_isa_ca9f20fa33 (IsA coffee_mill mill) (STV 1.0 0.9091)) +(: cnet_isa_8118cfcd5a (IsA coffee_mug mug) (STV 1.0 0.9091)) +(: cnet_isa_6f64dcb45a (IsA coffee_ring coffeecake) (STV 1.0 0.9091)) +(: cnet_isa_ce9db0d6bf (IsA coffee_senna senna) (STV 1.0 0.9091)) +(: cnet_isa_30cf0f429d (IsA coffee_stall stall) (STV 1.0 0.9091)) +(: cnet_isa_cfbf518dd3 (IsA coffee_substitute coffee) (STV 1.0 0.9091)) +(: cnet_isa_8b853fd939 (IsA coffee_table table) (STV 1.0 0.9091)) +(: cnet_isa_7ab9fb41e4 (IsA coffee_table_book book) (STV 1.0 0.9091)) +(: cnet_isa_d6c910706d (IsA coffee_urn urn) (STV 1.0 0.9091)) +(: cnet_isa_81116b3ce9 (IsA coffeeberry buckthorn) (STV 1.0 0.9091)) +(: cnet_isa_afce877df1 (IsA coffeecake cake) (STV 1.0 0.9091)) +(: cnet_isa_8f413da0b9 (IsA coffeepot pot) (STV 1.0 0.9091)) +(: cnet_isa_017a9e205d (IsA coffer chest) (STV 1.0 0.9091)) +(: cnet_isa_c9d262d956 (IsA coffer panel) (STV 1.0 0.9091)) +(: cnet_isa_63d6303a75 (IsA coffey_still still) (STV 1.0 0.9091)) +(: cnet_isa_9546896132 (IsA coffin box) (STV 1.0 0.9339)) +(: cnet_isa_700656d12a (IsA cofounder founder) (STV 1.0 0.9091)) +(: cnet_isa_248d6ee883 (IsA cog tooth) (STV 1.0 0.9091)) +(: cnet_isa_8be2d347db (IsA cog subordinate) (STV 1.0 0.9091)) +(: cnet_isa_9b2e0a0bbc (IsA cog_railway railway) (STV 1.0 0.9091)) +(: cnet_isa_d906adca0a (IsA cogency credibility) (STV 1.0 0.9091)) +(: cnet_isa_bd16b41cb5 (IsA cogency relevance) (STV 1.0 0.9091)) +(: cnet_isa_3009fe9beb (IsA cogitation contemplation) (STV 1.0 0.9091)) +(: cnet_isa_fabcdf5611 (IsA cogitation idea) (STV 1.0 0.9091)) +(: cnet_isa_7db0ba5c45 (IsA cognac brandy) (STV 1.0 0.9091)) +(: cnet_isa_ebd5fecb7e (IsA cognate word) (STV 1.0 0.9091)) +(: cnet_isa_fbe40add05 (IsA cognition psychological_feature) (STV 1.0 0.9091)) +(: cnet_isa_0d2e034c1c (IsA cognitive_factor cognition) (STV 1.0 0.9091)) +(: cnet_isa_c0c8c8ba01 (IsA cognitive_neuroscience neuroscience) (STV 1.0 0.9091)) +(: cnet_isa_6ceb87aa79 (IsA cognitive_neuroscientist cognitive_scientist) (STV 1.0 0.9091)) +(: cnet_isa_b1997fccdf (IsA cognitive_psychology psychology) (STV 1.0 0.9091)) +(: cnet_isa_6a8f5734d1 (IsA cognitive_science science) (STV 1.0 0.9091)) +(: cnet_isa_028dc4d40b (IsA cognitive_scientist scientist) (STV 1.0 0.9091)) +(: cnet_isa_b76ada7e31 (IsA cognitive_state psychological_state) (STV 1.0 0.9091)) +(: cnet_isa_524cac5e4c (IsA cognizance knowing) (STV 1.0 0.9091)) +(: cnet_isa_1879e9bcfb (IsA cognizance perception) (STV 1.0 0.9091)) +(: cnet_isa_298ae33234 (IsA cohabitation inhabitancy) (STV 1.0 0.9091)) +(: cnet_isa_0c395531ed (IsA coherence comprehensibility) (STV 1.0 0.9091)) +(: cnet_isa_9c38d463eb (IsA coherence connection) (STV 1.0 0.9091)) +(: cnet_isa_5510ed001d (IsA cohesion growth) (STV 1.0 0.9091)) +(: cnet_isa_dd79e23a75 (IsA cohesion force) (STV 1.0 0.9091)) +(: cnet_isa_5cb50e2dff (IsA cohesiveness viscosity) (STV 1.0 0.9091)) +(: cnet_isa_b6e97f923f (IsA coho salmon) (STV 1.0 0.9091)) +(: cnet_isa_cb4d42aad2 (IsA cohort company) (STV 1.0 0.9091)) +(: cnet_isa_8b10f7afca (IsA cohort set) (STV 1.0 0.9091)) +(: cnet_isa_0bf537161e (IsA cohune_nut seed) (STV 1.0 0.9091)) +(: cnet_isa_3a129d96dc (IsA cohune_nut_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_e81221cc62 (IsA cohune_palm feather_palm) (STV 1.0 0.9091)) +(: cnet_isa_23a1bec6ac (IsA coif skullcap) (STV 1.0 0.9091)) +(: cnet_isa_a69ae1522b (IsA coiffeur hairdresser) (STV 1.0 0.9091)) +(: cnet_isa_bc8c3abeca (IsA coiffeuse hairdresser) (STV 1.0 0.9091)) +(: cnet_isa_8240c1c48e (IsA coigue southern_beech) (STV 1.0 0.9091)) +(: cnet_isa_86802fc3ee (IsA coil shape) (STV 1.0 0.9091)) +(: cnet_isa_19a56c2a1e (IsA coil contraceptive) (STV 1.0 0.9091)) +(: cnet_isa_c26b697bb3 (IsA coil reactor) (STV 1.0 0.9091)) +(: cnet_isa_f019aa408e (IsA coil structure) (STV 1.0 0.9091)) +(: cnet_isa_862a98070a (IsA coil transformer) (STV 1.0 0.9091)) +(: cnet_isa_c59042798f (IsA coil tube) (STV 1.0 0.9091)) +(: cnet_isa_8c92a15be6 (IsA coil round_shape) (STV 1.0 0.9091)) +(: cnet_isa_4726d1ba9b (IsA coil_spring spring) (STV 1.0 0.9091)) +(: cnet_isa_969385f999 (IsA coin metal_disc) (STV 1.0 0.9091)) +(: cnet_isa_5fcdf59751 (IsA coin coinage) (STV 1.0 0.9091)) +(: cnet_isa_0a48f37183 (IsA coin_box receptacle) (STV 1.0 0.9091)) +(: cnet_isa_094b5784d9 (IsA coin_collection collection) (STV 1.0 0.9091)) +(: cnet_isa_19b5d0f45c (IsA coin_silver silver) (STV 1.0 0.9091)) +(: cnet_isa_71c843cf4c (IsA coin_slot slot) (STV 1.0 0.9091)) +(: cnet_isa_1a467539a1 (IsA coinage currency) (STV 1.0 0.9091)) +(: cnet_isa_7624ab1f23 (IsA coincidence position) (STV 1.0 0.9091)) +(: cnet_isa_59ccc6db34 (IsA coincidence accident) (STV 1.0 0.9091)) +(: cnet_isa_98b5c7c639 (IsA coiner forger) (STV 1.0 0.9091)) +(: cnet_isa_e73840e544 (IsA coiner generator) (STV 1.0 0.9091)) +(: cnet_isa_ded8e67819 (IsA coiner skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_fa61fa30d7 (IsA coin small_metal_disk) (STV 1.0 0.9339)) +(: cnet_isa_25d765c711 (IsA coinsurance insurance) (STV 1.0 0.9091)) +(: cnet_isa_b1968f1777 (IsA coir fiber) (STV 1.0 0.9091)) +(: cnet_isa_f7e27ff843 (IsA coitus_interruptus birth_control) (STV 1.0 0.9091)) +(: cnet_isa_ad91a80641 (IsA coke beverage) (STV 1.0 0.9339)) +(: cnet_isa_76bdb1c70a (IsA coke soda) (STV 1.0 0.9719)) +(: cnet_isa_89e0feed86 (IsA coke cocaine) (STV 1.0 0.9091)) +(: cnet_isa_30b3a51367 (IsA coke fuel) (STV 1.0 0.9091)) +(: cnet_isa_5267f5405e (IsA coke_and_pepsi competitor) (STV 1.0 0.9091)) +(: cnet_isa_2fb41b3603 (IsA coke_float ice_cream_soda) (STV 1.0 0.9091)) +(: cnet_isa_afaa377e1d (IsA col pass) (STV 1.0 0.9091)) +(: cnet_isa_a7d364f5da (IsA cola soft_drink) (STV 1.0 0.9091)) +(: cnet_isa_9c7d7f43a1 (IsA cola dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3085044940 (IsA cola_extract flavorer) (STV 1.0 0.9091)) +(: cnet_isa_e31244ec7a (IsA colander strainer) (STV 1.0 0.9091)) +(: cnet_isa_f302e6e761 (IsA colapte bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_1723b6e637 (IsA colbert sauce) (STV 1.0 0.9091)) +(: cnet_isa_e1e4cad0ee (IsA colchicaceae liliid_monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_2088d94c95 (IsA colchicine analgesic) (STV 1.0 0.9091)) +(: cnet_isa_d053cbab19 (IsA colchicum liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_47c2390274 (IsA cold sickness) (STV 1.0 0.9091)) +(: cnet_isa_4253d0432c (IsA cold temperature) (STV 1.0 0.9091)) +(: cnet_isa_79c48755c1 (IsA cold communicable_disease) (STV 1.0 0.9091)) +(: cnet_isa_e64d7ac9fc (IsA cold respiratory_disease) (STV 1.0 0.9091)) +(: cnet_isa_1ba941b8e8 (IsA cold_cathode cathode) (STV 1.0 0.9091)) +(: cnet_isa_9244b2fb53 (IsA cold_cereal cereal) (STV 1.0 0.9091)) +(: cnet_isa_59417531c0 (IsA cold_chisel chisel) (STV 1.0 0.9091)) +(: cnet_isa_8b2ed94122 (IsA cold_comfort consolation) (STV 1.0 0.9091)) +(: cnet_isa_bcd6ba844c (IsA cold_cream cream) (STV 1.0 0.9091)) +(: cnet_isa_413beb5c26 (IsA cold_cut meat) (STV 1.0 0.9091)) +(: cnet_isa_6ad507f547 (IsA cold_duck sparkling_wine) (STV 1.0 0.9091)) +(: cnet_isa_4fa62b722e (IsA cold_feet timidity) (STV 1.0 0.9091)) +(: cnet_isa_472ab479b8 (IsA cold_fish unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_fc18eb6857 (IsA cold_frame protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_9392169544 (IsA cold_front front) (STV 1.0 0.9091)) +(: cnet_isa_769fe4d252 (IsA cold_fusion fusion) (STV 1.0 0.9091)) +(: cnet_isa_b9f89ee89a (IsA cold_medicine medicine) (STV 1.0 0.9091)) +(: cnet_isa_92cf5bcc11 (IsA cold_medium medium) (STV 1.0 0.9091)) +(: cnet_isa_c0a95f9afc (IsA cold_rubber rubber) (STV 1.0 0.9091)) +(: cnet_isa_1fcaf39250 (IsA cold_spell while) (STV 1.0 0.9091)) +(: cnet_isa_596c20af99 (IsA cold_storage storage) (STV 1.0 0.9091)) +(: cnet_isa_f8d1ce081d (IsA cold_storage abeyance) (STV 1.0 0.9091)) +(: cnet_isa_767b79cfe1 (IsA cold_sweat physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_87952667d0 (IsA cold_turkey withdrawal) (STV 1.0 0.9091)) +(: cnet_isa_182739de7a (IsA cold_turkey expression) (STV 1.0 0.9091)) +(: cnet_isa_57163aed43 (IsA cold_war hostility) (STV 1.0 0.9091)) +(: cnet_isa_1d842e8567 (IsA cold_water disparagement) (STV 1.0 0.9091)) +(: cnet_isa_3208c5a210 (IsA cold_water_flat apartment) (STV 1.0 0.9091)) +(: cnet_isa_8038ed671d (IsA cold_wave wave) (STV 1.0 0.9091)) +(: cnet_isa_871ceb148b (IsA cold_weather weather) (STV 1.0 0.9091)) +(: cnet_isa_634e2c0ae4 (IsA coldness temperature) (STV 1.0 0.9091)) +(: cnet_isa_b4b23b2a5f (IsA coldness unemotionality) (STV 1.0 0.9091)) +(: cnet_isa_1b4ebb7950 (IsA coldness vasoconstrictor) (STV 1.0 0.9091)) +(: cnet_isa_055c27423a (IsA coleonyx reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_5a3aba38b9 (IsA coleoptera animal_order) (STV 1.0 0.9091)) +(: cnet_isa_cb23c62061 (IsA coleslaw salad) (STV 1.0 0.9091)) +(: cnet_isa_f3de6d9d5c (IsA coleus herb) (STV 1.0 0.9091)) +(: cnet_isa_c200e6aff6 (IsA colic pain) (STV 1.0 0.9091)) +(: cnet_isa_73968f8885 (IsA colic_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_a2587e1041 (IsA colic_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_1e3756a287 (IsA colicroot liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_e67c11b336 (IsA colinus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_d40eea98c9 (IsA coliphage bacteriophage) (STV 1.0 0.9091)) +(: cnet_isa_515ea0589e (IsA colitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_466eccaee4 (IsA collaboration cooperation) (STV 1.0 0.9091)) +(: cnet_isa_1338e6878c (IsA collaborator associate) (STV 1.0 0.9091)) +(: cnet_isa_ab1463b7eb (IsA collaborator traitor) (STV 1.0 0.9091)) +(: cnet_isa_0757db7401 (IsA collage ikon) (STV 1.0 0.9091)) +(: cnet_isa_15796a3811 (IsA collage paste_up) (STV 1.0 0.9091)) +(: cnet_isa_03840e7956 (IsA collage collection) (STV 1.0 0.9091)) +(: cnet_isa_2f3b70c0b4 (IsA collage_film movie) (STV 1.0 0.9091)) +(: cnet_isa_1f208e4c3b (IsA collagen scleroprotein) (STV 1.0 0.9091)) +(: cnet_isa_7db06895d2 (IsA collagenase enzyme) (STV 1.0 0.9091)) +(: cnet_isa_1d270a7c25 (IsA collapse happening) (STV 1.0 0.9091)) +(: cnet_isa_e81a46d3c2 (IsA collapse illness) (STV 1.0 0.9091)) +(: cnet_isa_c40199aa5d (IsA collar restraint) (STV 1.0 0.9091)) +(: cnet_isa_157f025919 (IsA collar band) (STV 1.0 0.9091)) +(: cnet_isa_f4b0e20560 (IsA collar hoop) (STV 1.0 0.9091)) +(: cnet_isa_f66be69f9f (IsA collar neckpiece) (STV 1.0 0.9091)) +(: cnet_isa_94a80149c4 (IsA collar_blight blight) (STV 1.0 0.9091)) +(: cnet_isa_f2fe33e63b (IsA collard kale) (STV 1.0 0.9091)) +(: cnet_isa_a59b7c8730 (IsA collared_lizard iguanid) (STV 1.0 0.9091)) +(: cnet_isa_1e292443fe (IsA collared_peccary peccary) (STV 1.0 0.9091)) +(: cnet_isa_73c25b2940 (IsA collared_pika pika) (STV 1.0 0.9091)) +(: cnet_isa_c3c90a1fa5 (IsA collateral security_interest) (STV 1.0 0.9091)) +(: cnet_isa_e924834ed5 (IsA collateral_damage fatal_accident) (STV 1.0 0.9091)) +(: cnet_isa_5b1244622c (IsA collation collection) (STV 1.0 0.9091)) +(: cnet_isa_8038682cfa (IsA collation comparison) (STV 1.0 0.9091)) +(: cnet_isa_cf2f0713c2 (IsA colleague associate) (STV 1.0 0.9091)) +(: cnet_isa_82ac4fe583 (IsA collect prayer) (STV 1.0 0.9091)) +(: cnet_isa_de9e0a58f2 (IsA collect_call call) (STV 1.0 0.9091)) +(: cnet_isa_37aeeab8b2 (IsA collectible curio) (STV 1.0 0.9091)) +(: cnet_isa_ea455a6299 (IsA collection grouping) (STV 1.0 0.9091)) +(: cnet_isa_0b1383e7c0 (IsA collection publication) (STV 1.0 0.9091)) +(: cnet_isa_e25c57b808 (IsA collection group) (STV 1.0 0.9091)) +(: cnet_isa_d91f7002f7 (IsA collective enterprise) (STV 1.0 0.9091)) +(: cnet_isa_d2cea78cff (IsA collective_bargaining negotiation) (STV 1.0 0.9091)) +(: cnet_isa_b05c795878 (IsA collective_farm collective) (STV 1.0 0.9091)) +(: cnet_isa_a066d495da (IsA collective_noun noun) (STV 1.0 0.9091)) +(: cnet_isa_66e4eff14f (IsA collective_security peace) (STV 1.0 0.9091)) +(: cnet_isa_31713cb309 (IsA collectivism political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_ba5bfda133 (IsA collectivist socialist) (STV 1.0 0.9091)) +(: cnet_isa_fa619c257a (IsA collectivization constitution) (STV 1.0 0.9091)) +(: cnet_isa_49c246322f (IsA collector_s_item curio) (STV 1.0 0.9091)) +(: cnet_isa_a39833057e (IsA collector electrode) (STV 1.0 0.9091)) +(: cnet_isa_fa30c53c5f (IsA collector crater) (STV 1.0 0.9091)) +(: cnet_isa_07934262f0 (IsA collector person) (STV 1.0 0.9091)) +(: cnet_isa_284e98d5a3 (IsA collector worker) (STV 1.0 0.9091)) +(: cnet_isa_13138dfdfb (IsA colleen girl) (STV 1.0 0.9091)) +(: cnet_isa_23784a0be7 (IsA college educational_institution) (STV 1.0 0.9091)) +(: cnet_isa_37476eed46 (IsA college place) (STV 1.0 0.9763)) +(: cnet_isa_79d867689e (IsA college place_of_learning) (STV 1.0 0.9339)) +(: cnet_isa_c3f725095c (IsA college school) (STV 1.0 0.9572)) +(: cnet_isa_9ac52f8f53 (IsA college building_complex) (STV 1.0 0.9091)) +(: cnet_isa_2c8ceffd4b (IsA college body) (STV 1.0 0.9091)) +(: cnet_isa_592b5fc63d (IsA college_level grade) (STV 1.0 0.9091)) +(: cnet_isa_5ed74168f7 (IsA college_student student_attending_college) (STV 1.0 0.9091)) +(: cnet_isa_70077f617e (IsA college_student collegian) (STV 1.0 0.9091)) +(: cnet_isa_5d4316322b (IsA collegian student) (STV 1.0 0.9091)) +(: cnet_isa_47c1ba8d9e (IsA collembola animal_order) (STV 1.0 0.9091)) +(: cnet_isa_128eb52f4e (IsA collembolan insect) (STV 1.0 0.9091)) +(: cnet_isa_7dc311fef0 (IsA collet band) (STV 1.0 0.9091)) +(: cnet_isa_ad995e1123 (IsA collet chuck) (STV 1.0 0.9091)) +(: cnet_isa_d7a8b46272 (IsA collider accelerator) (STV 1.0 0.9091)) +(: cnet_isa_37be9190e1 (IsA collie shepherd_dog) (STV 1.0 0.9091)) +(: cnet_isa_425e0ae349 (IsA colliery workplace) (STV 1.0 0.9091)) +(: cnet_isa_6681b46d9d (IsA colligation association) (STV 1.0 0.9091)) +(: cnet_isa_a1057bc7fa (IsA collimation adjustment) (STV 1.0 0.9091)) +(: cnet_isa_d2b20bc195 (IsA collimator optical_device) (STV 1.0 0.9091)) +(: cnet_isa_c14f979bd8 (IsA collimator telescope) (STV 1.0 0.9091)) +(: cnet_isa_3969280ea9 (IsA collin highball) (STV 1.0 0.9091)) +(: cnet_isa_aa01218cd8 (IsA collinsia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9e5b5f9235 (IsA collinsonia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d95a3c1c0d (IsA collision dispute) (STV 1.0 0.9091)) +(: cnet_isa_2fac69ac06 (IsA collision accident) (STV 1.0 0.9091)) +(: cnet_isa_358f1093e3 (IsA collision contact) (STV 1.0 0.9091)) +(: cnet_isa_cc55bd9df0 (IsA collision_course course) (STV 1.0 0.9091)) +(: cnet_isa_e06c7d9841 (IsA collision_course path) (STV 1.0 0.9091)) +(: cnet_isa_bb189e2572 (IsA collocalia bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_2bdb318ae1 (IsA collocation language_unit) (STV 1.0 0.9091)) +(: cnet_isa_8a1ce73be4 (IsA collodion solution) (STV 1.0 0.9091)) +(: cnet_isa_6559756aa5 (IsA colloid mixture) (STV 1.0 0.9091)) +(: cnet_isa_1a60a0857b (IsA colloquialism formulation) (STV 1.0 0.9091)) +(: cnet_isa_4c96db9e8f (IsA colloquium address) (STV 1.0 0.9091)) +(: cnet_isa_51a489ac78 (IsA colloquium conference) (STV 1.0 0.9091)) +(: cnet_isa_30c9d10853 (IsA colloquy conference) (STV 1.0 0.9091)) +(: cnet_isa_2471c7689d (IsA colloquy conversation) (STV 1.0 0.9091)) +(: cnet_isa_155be7dc0e (IsA collotype planographic_printing) (STV 1.0 0.9091)) +(: cnet_isa_bd38914bd3 (IsA collusion agreement) (STV 1.0 0.9091)) +(: cnet_isa_be2d2f5bc4 (IsA colobus old_world_monkey) (STV 1.0 0.9091)) +(: cnet_isa_1ed70c164e (IsA colocasia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f847ecace8 (IsA cologne perfume) (STV 1.0 0.9091)) +(: cnet_isa_429b099712 (IsA colombian south_american) (STV 1.0 0.9091)) +(: cnet_isa_124794e5b2 (IsA colombian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_d162065abb (IsA colombian_peso colombian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_05f3647e5e (IsA colon large_intestine) (STV 1.0 0.9091)) +(: cnet_isa_28d6d5330b (IsA colon punctuation) (STV 1.0 0.9091)) +(: cnet_isa_305fbb3ea5 (IsA colon costa_rican_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_09364ba70e (IsA colon el_salvadoran_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_1be6e5feea (IsA colon_cancer carcinoma) (STV 1.0 0.9091)) +(: cnet_isa_58f8694e92 (IsA colonel commissioned_military_officer) (STV 1.0 0.9091)) +(: cnet_isa_714f31097b (IsA colonial resident) (STV 1.0 0.9091)) +(: cnet_isa_e10cb72395 (IsA colonialism exploitation) (STV 1.0 0.9091)) +(: cnet_isa_624d9d08ea (IsA colonialist believer) (STV 1.0 0.9091)) +(: cnet_isa_6014d09bb3 (IsA colonic colonic_irrigation) (STV 1.0 0.9091)) +(: cnet_isa_584586e5c5 (IsA colonic_irrigation enema) (STV 1.0 0.9091)) +(: cnet_isa_5aebafd3c1 (IsA colonization constitution) (STV 1.0 0.9091)) +(: cnet_isa_08eef21ad0 (IsA colonizer founder) (STV 1.0 0.9091)) +(: cnet_isa_158e4dc772 (IsA colonnade structure) (STV 1.0 0.9091)) +(: cnet_isa_e78d6246ff (IsA colonoscope endoscope) (STV 1.0 0.9091)) +(: cnet_isa_d3f4c9ce3c (IsA colonoscopy endoscopy) (STV 1.0 0.9091)) +(: cnet_isa_581d5712ba (IsA colony biological_group) (STV 1.0 0.9091)) +(: cnet_isa_8147f57c9d (IsA colony body) (STV 1.0 0.9091)) +(: cnet_isa_396397efa7 (IsA colony geographical_area) (STV 1.0 0.9454)) +(: cnet_isa_768dc0f75a (IsA colony place) (STV 1.0 0.9091)) +(: cnet_isa_ba5b7fedfd (IsA colony animal_group) (STV 1.0 0.9091)) +(: cnet_isa_093c485587 (IsA colophon emblem) (STV 1.0 0.9091)) +(: cnet_isa_225f96d514 (IsA colophony natural_resin) (STV 1.0 0.9091)) +(: cnet_isa_75d38189c6 (IsA color appearance) (STV 1.0 0.9091)) +(: cnet_isa_b1f3f36f83 (IsA color interest) (STV 1.0 0.9091)) +(: cnet_isa_5f1b8fe5ee (IsA color timbre) (STV 1.0 0.9091)) +(: cnet_isa_2bedf25636 (IsA color visual_property) (STV 1.0 0.9091)) +(: cnet_isa_8a8f68cbaa (IsA color kind) (STV 1.0 0.9091)) +(: cnet_isa_646f36a808 (IsA color_bar ideological_barrier) (STV 1.0 0.9091)) +(: cnet_isa_76476a9572 (IsA color_barrier barrier) (STV 1.0 0.9091)) +(: cnet_isa_cdee7a4eda (IsA color_bearer soldier) (STV 1.0 0.9091)) +(: cnet_isa_04abebba04 (IsA color_blind_person person) (STV 1.0 0.9091)) +(: cnet_isa_8e6c219140 (IsA color_blindness birth_defect) (STV 1.0 0.9091)) +(: cnet_isa_1a83dd7baf (IsA color_blindness visual_impairment) (STV 1.0 0.9091)) +(: cnet_isa_4097be11f5 (IsA color_chart chart) (STV 1.0 0.9091)) +(: cnet_isa_b6fad09b8b (IsA color_circle color_chart) (STV 1.0 0.9091)) +(: cnet_isa_7c76bf2c9f (IsA color_code code) (STV 1.0 0.9091)) +(: cnet_isa_fbba438d99 (IsA color_constancy constancy) (STV 1.0 0.9091)) +(: cnet_isa_0d13c77bdd (IsA color_guard escort) (STV 1.0 0.9091)) +(: cnet_isa_a81e1e371a (IsA color_of_law semblance) (STV 1.0 0.9091)) +(: cnet_isa_ddd6b9694b (IsA color_property visual_property) (STV 1.0 0.9091)) +(: cnet_isa_0a61e5c7db (IsA color_scheme combination) (STV 1.0 0.9091)) +(: cnet_isa_9c17a58e4e (IsA color_sergeant sergeant) (STV 1.0 0.9091)) +(: cnet_isa_6e1c5481a7 (IsA color_television television) (STV 1.0 0.9091)) +(: cnet_isa_5c3bb654ea (IsA color_tube kinescope) (STV 1.0 0.9091)) +(: cnet_isa_838d64f1a9 (IsA color_vision sight) (STV 1.0 0.9091)) +(: cnet_isa_6778552095 (IsA color_wash wash) (STV 1.0 0.9091)) +(: cnet_isa_e2d1d0565a (IsA coloradan american) (STV 1.0 0.9091)) +(: cnet_isa_a40b3ce5a6 (IsA colorado place) (STV 1.0 0.9091)) +(: cnet_isa_7cf00756d3 (IsA colorado state) (STV 1.0 0.9677)) +(: cnet_isa_d0beec9fdf (IsA colorado_blue_spruce plant) (STV 1.0 0.9339)) +(: cnet_isa_7e053603fc (IsA colorado_potato_beetle leaf_beetle) (STV 1.0 0.9091)) +(: cnet_isa_ab775cb7db (IsA colorado_river_hemp sesbania) (STV 1.0 0.9091)) +(: cnet_isa_0ef5bfe351 (IsA colorado_spruce spruce) (STV 1.0 0.9091)) +(: cnet_isa_b6ac698a13 (IsA coloration choice) (STV 1.0 0.9091)) +(: cnet_isa_5c83f43b96 (IsA coloration color) (STV 1.0 0.9091)) +(: cnet_isa_c53a7bf8c3 (IsA coloratura singing) (STV 1.0 0.9091)) +(: cnet_isa_72af76d102 (IsA coloratura soprano) (STV 1.0 0.9091)) +(: cnet_isa_4072ae7560 (IsA colored_hearing chromesthesia) (STV 1.0 0.9091)) +(: cnet_isa_63c7f6cdee (IsA colorimeter measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_07dac3c902 (IsA colorimetry quantitative_analysis) (STV 1.0 0.9091)) +(: cnet_isa_6887513f77 (IsA coloring change_of_color) (STV 1.0 0.9091)) +(: cnet_isa_66337c9789 (IsA coloring foodstuff) (STV 1.0 0.9091)) +(: cnet_isa_4eba3769fb (IsA coloring_book picture_book) (STV 1.0 0.9091)) +(: cnet_isa_2335998162 (IsA coloring_material material) (STV 1.0 0.9091)) +(: cnet_isa_73a083ac19 (IsA colorist painter) (STV 1.0 0.9091)) +(: cnet_isa_cd5c1d6d91 (IsA colorlessness visual_property) (STV 1.0 0.9091)) +(: cnet_isa_8473312658 (IsA color emblem) (STV 1.0 0.9091)) +(: cnet_isa_51277354d4 (IsA color flag) (STV 1.0 0.9091)) +(: cnet_isa_ac305423fa (IsA colossian phrygian) (STV 1.0 0.9091)) +(: cnet_isa_c9f3af10c6 (IsA colossus important_person) (STV 1.0 0.9091)) +(: cnet_isa_161ac72c1e (IsA colostomy ostomy) (STV 1.0 0.9091)) +(: cnet_isa_0cc4ac4880 (IsA colostrum milk) (STV 1.0 0.9091)) +(: cnet_isa_69623b56dd (IsA colour_supplement magazine) (STV 1.0 0.9091)) +(: cnet_isa_28d91b0d0c (IsA colourcast television_program) (STV 1.0 0.9091)) +(: cnet_isa_c0df941783 (IsA colpitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_5fe343f495 (IsA colpocele hernia) (STV 1.0 0.9091)) +(: cnet_isa_fcfe0d66fe (IsA colpocystitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_6cd2803be2 (IsA colpoxerosis disorder) (STV 1.0 0.9091)) +(: cnet_isa_cc5a49dd48 (IsA colt foal) (STV 1.0 0.9091)) +(: cnet_isa_ac35bc40d8 (IsA colt male) (STV 1.0 0.9091)) +(: cnet_isa_f603e08286 (IsA colter wedge) (STV 1.0 0.9091)) +(: cnet_isa_819bf766c3 (IsA coltsfoot herb) (STV 1.0 0.9091)) +(: cnet_isa_77986dd236 (IsA coluber reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_0be9f61585 (IsA colubrid_snake snake) (STV 1.0 0.9091)) +(: cnet_isa_277889ec8b (IsA colubridae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_2af92d0ee0 (IsA colubrina dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3e4be026d7 (IsA columba bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_0c4d4e2a5e (IsA columbarium recess) (STV 1.0 0.9091)) +(: cnet_isa_afc027bda1 (IsA columbarium vault) (STV 1.0 0.9091)) +(: cnet_isa_0be0225898 (IsA columbia_tiger_lily lily) (STV 1.0 0.9091)) +(: cnet_isa_ad29d18ad2 (IsA columbian_mammoth mammoth) (STV 1.0 0.9091)) +(: cnet_isa_f149afee76 (IsA columbidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_bde8e82afb (IsA columbiform_bird gallinaceous_bird) (STV 1.0 0.9091)) +(: cnet_isa_128106f298 (IsA columbiforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_c0a3879187 (IsA columbine flower) (STV 1.0 0.9091)) +(: cnet_isa_5f00ce057d (IsA columbite_tantalite mineral) (STV 1.0 0.9091)) +(: cnet_isa_37bbef1ab2 (IsA columbium niobium) (STV 1.0 0.9091)) +(: cnet_isa_ab71c7335c (IsA columbo herb) (STV 1.0 0.9091)) +(: cnet_isa_9642a82f27 (IsA columbus_day legal_holiday) (STV 1.0 0.9091)) +(: cnet_isa_f0f5dd0e22 (IsA columella column) (STV 1.0 0.9091)) +(: cnet_isa_8158bd0231 (IsA column upright) (STV 1.0 0.9091)) +(: cnet_isa_b6a5f75361 (IsA column structure) (STV 1.0 0.9091)) +(: cnet_isa_8e07eb9f54 (IsA column tube) (STV 1.0 0.9091)) +(: cnet_isa_c729ce697c (IsA column skeletal_structure) (STV 1.0 0.9091)) +(: cnet_isa_0d80c9f1f4 (IsA column article) (STV 1.0 0.9091)) +(: cnet_isa_2bfa330ee9 (IsA column text) (STV 1.0 0.9091)) +(: cnet_isa_13aca5f394 (IsA column array) (STV 1.0 0.9091)) +(: cnet_isa_3b040acd23 (IsA column file) (STV 1.0 0.9091)) +(: cnet_isa_9739e417a1 (IsA column shape) (STV 1.0 0.9091)) +(: cnet_isa_6fd93f2d86 (IsA column_chromatography chromatography) (STV 1.0 0.9091)) +(: cnet_isa_503fbcdca2 (IsA column_inch area_unit) (STV 1.0 0.9091)) +(: cnet_isa_5b4bfb2eb2 (IsA column_vector vector) (STV 1.0 0.9091)) +(: cnet_isa_bfcccee27d (IsA columnar_cell epithelial_cell) (STV 1.0 0.9091)) +(: cnet_isa_fae94b1089 (IsA columnea shrub) (STV 1.0 0.9091)) +(: cnet_isa_48861e46e2 (IsA columniation placement) (STV 1.0 0.9091)) +(: cnet_isa_f1197f2aa4 (IsA columnist journalist) (STV 1.0 0.9091)) +(: cnet_isa_b4ff2756b4 (IsA colutea rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0b4e1efcfd (IsA coma cloud) (STV 1.0 0.9091)) +(: cnet_isa_4c618ca228 (IsA coma tuft) (STV 1.0 0.9091)) +(: cnet_isa_b3029a0bb6 (IsA coma unconsciousness) (STV 1.0 0.9091)) +(: cnet_isa_4f99dcb864 (IsA comanche shoshonean) (STV 1.0 0.9091)) +(: cnet_isa_8c9b2dd967 (IsA comanche shoshoni) (STV 1.0 0.9091)) +(: cnet_isa_37718b9d63 (IsA comandra dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7dca6b8c1b (IsA comatula antedon) (STV 1.0 0.9091)) +(: cnet_isa_74bf187d11 (IsA comatulidae antedonidae) (STV 1.0 0.9091)) +(: cnet_isa_a951ed40d1 (IsA comb tool) (STV 1.0 0.9091)) +(: cnet_isa_e0ed41df8c (IsA comb hair_care) (STV 1.0 0.9091)) +(: cnet_isa_8c3a8cd989 (IsA comb crest) (STV 1.0 0.9091)) +(: cnet_isa_40f8a8332d (IsA comb plate) (STV 1.0 0.9091)) +(: cnet_isa_c980890553 (IsA comb device) (STV 1.0 0.9091)) +(: cnet_isa_d13f32e90d (IsA comb_footed_spider spider) (STV 1.0 0.9091)) +(: cnet_isa_1056f3e349 (IsA comb_out comb) (STV 1.0 0.9091)) +(: cnet_isa_ce135c4826 (IsA comb_out disposal) (STV 1.0 0.9091)) +(: cnet_isa_a4047f85db (IsA combat battle) (STV 1.0 0.9091)) +(: cnet_isa_f3ceb13db8 (IsA combat_ceiling ceiling) (STV 1.0 0.9091)) +(: cnet_isa_ea6d29585b (IsA combat_mission mission) (STV 1.0 0.9091)) +(: cnet_isa_0dde347698 (IsA combat_pay wage) (STV 1.0 0.9091)) +(: cnet_isa_1eed7689cc (IsA combat_pilot pilot) (STV 1.0 0.9091)) +(: cnet_isa_6631268d21 (IsA combat_zone city_district) (STV 1.0 0.9091)) +(: cnet_isa_be09e8f735 (IsA combat_zone zone) (STV 1.0 0.9091)) +(: cnet_isa_340075fdee (IsA combatant person) (STV 1.0 0.9091)) +(: cnet_isa_ee05b6f08a (IsA combativeness aggressiveness) (STV 1.0 0.9091)) +(: cnet_isa_09d6e36fbf (IsA comber machine) (STV 1.0 0.9091)) +(: cnet_isa_08d3585d8b (IsA comber wave) (STV 1.0 0.9091)) +(: cnet_isa_9c5d7493ff (IsA comber worker) (STV 1.0 0.9091)) +(: cnet_isa_630edc8977 (IsA combination change_of_integrity) (STV 1.0 0.9091)) +(: cnet_isa_226ffb35ab (IsA combination mathematical_process) (STV 1.0 0.9091)) +(: cnet_isa_54ea54c951 (IsA combination collection) (STV 1.0 0.9091)) +(: cnet_isa_63c5869424 (IsA combination sequence) (STV 1.0 0.9091)) +(: cnet_isa_faaaf46c6b (IsA combination unit) (STV 1.0 0.9091)) +(: cnet_isa_c9ebb4cdee (IsA combination alliance) (STV 1.0 0.9091)) +(: cnet_isa_d87075c259 (IsA combination_in_restraint_of_trade combination) (STV 1.0 0.9091)) +(: cnet_isa_f48395bbae (IsA combination_lock lock) (STV 1.0 0.9091)) +(: cnet_isa_7ed62e3861 (IsA combination_plane plane) (STV 1.0 0.9091)) +(: cnet_isa_89924a65be (IsA combination_salad tossed_salad) (STV 1.0 0.9091)) +(: cnet_isa_8e9d8e2f20 (IsA combine harvester) (STV 1.0 0.9091)) +(: cnet_isa_9634d1910b (IsA combined_operation operation) (STV 1.0 0.9091)) +(: cnet_isa_6492036dc9 (IsA combining union) (STV 1.0 0.9091)) +(: cnet_isa_f3a1e7d24b (IsA combining_form bound_morpheme) (STV 1.0 0.9091)) +(: cnet_isa_7bde92dd0c (IsA combretaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_d068123862 (IsA combretum woody_plant) (STV 1.0 0.9091)) +(: cnet_isa_116bd7138b (IsA combustible fuel) (STV 1.0 0.9091)) +(: cnet_isa_08d9af6bd9 (IsA combustibleness quality) (STV 1.0 0.9091)) +(: cnet_isa_ee3dd32bd2 (IsA combustion oxidation) (STV 1.0 0.9091)) +(: cnet_isa_89beacd72b (IsA combustion tumult) (STV 1.0 0.9091)) +(: cnet_isa_d82065176c (IsA comeback reappearance) (STV 1.0 0.9091)) +(: cnet_isa_d42efe6948 (IsA comedian actor) (STV 1.0 0.9091)) +(: cnet_isa_a7e644174e (IsA comedian performer) (STV 1.0 0.9091)) +(: cnet_isa_562a3f0762 (IsA comedienne comedian) (STV 1.0 0.9091)) +(: cnet_isa_388b7c85a4 (IsA comedown humiliation) (STV 1.0 0.9091)) +(: cnet_isa_48b28349b5 (IsA comedy drama) (STV 1.0 0.9091)) +(: cnet_isa_0cfcac9fb7 (IsA comedy_ballet ballet) (STV 1.0 0.9091)) +(: cnet_isa_8896031e8a (IsA comeliness beauty) (STV 1.0 0.9091)) +(: cnet_isa_4fe5ca46ea (IsA comer rival) (STV 1.0 0.9091)) +(: cnet_isa_06f60338d9 (IsA comestible food) (STV 1.0 0.9091)) +(: cnet_isa_572aa6a4ee (IsA comet extraterrestrial_object) (STV 1.0 0.9091)) +(: cnet_isa_fbf9586c81 (IsA comet like_dirty_snowball) (STV 1.0 0.9091)) +(: cnet_isa_19e4186cf2 (IsA comfit sweet) (STV 1.0 0.9091)) +(: cnet_isa_c6f2daef41 (IsA comfort good_feeling) (STV 1.0 0.9091)) +(: cnet_isa_8addfa62fa (IsA comfort aid) (STV 1.0 0.9091)) +(: cnet_isa_9e86592946 (IsA comfort pleasure) (STV 1.0 0.9091)) +(: cnet_isa_1c782953b9 (IsA comfort condition) (STV 1.0 0.9091)) +(: cnet_isa_d44617efca (IsA comfort gratification) (STV 1.0 0.9091)) +(: cnet_isa_cd8ad22242 (IsA comfort_food food) (STV 1.0 0.9091)) +(: cnet_isa_aff9997fee (IsA comfort_woman prostitute) (STV 1.0 0.9091)) +(: cnet_isa_747ec50fcd (IsA comfort_zone temperature) (STV 1.0 0.9091)) +(: cnet_isa_5883900a17 (IsA comfortableness belonging) (STV 1.0 0.9091)) +(: cnet_isa_c59a8229c0 (IsA comforter blanket) (STV 1.0 0.9091)) +(: cnet_isa_edcd3509a7 (IsA comforter device) (STV 1.0 0.9091)) +(: cnet_isa_b785523a52 (IsA comfort support) (STV 1.0 0.9091)) +(: cnet_isa_aee791fa83 (IsA comfrey herb) (STV 1.0 0.9091)) +(: cnet_isa_0b97e03ac4 (IsA comic_book magazine) (STV 1.0 0.9091)) +(: cnet_isa_9191d3633b (IsA comic_opera opera) (STV 1.0 0.9091)) +(: cnet_isa_b72b91efe6 (IsA comic_strip cartoon) (STV 1.0 0.9091)) +(: cnet_isa_347864c742 (IsA comicality humor) (STV 1.0 0.9091)) +(: cnet_isa_2f28c08cbb (IsA coming_attraction movie) (STV 1.0 0.9091)) +(: cnet_isa_0e15486a20 (IsA comity harmony) (STV 1.0 0.9091)) +(: cnet_isa_bfd5d76988 (IsA comity_of_nation comity) (STV 1.0 0.9091)) +(: cnet_isa_779e7f8d25 (IsA comma nymphalid) (STV 1.0 0.9091)) +(: cnet_isa_2800956cbd (IsA comma punctuation) (STV 1.0 0.9091)) +(: cnet_isa_e00789b1f2 (IsA comma_bacillus vibrio) (STV 1.0 0.9091)) +(: cnet_isa_a8ad371a84 (IsA command authority) (STV 1.0 0.9091)) +(: cnet_isa_bf4838a3b2 (IsA command handiness) (STV 1.0 0.9091)) +(: cnet_isa_3366f4d698 (IsA command skillfulness) (STV 1.0 0.9091)) +(: cnet_isa_ea0dd6a893 (IsA command speech_act) (STV 1.0 0.9091)) +(: cnet_isa_0c05665a3d (IsA command military_unit) (STV 1.0 0.9091)) +(: cnet_isa_f624f8c8eb (IsA command status) (STV 1.0 0.9091)) +(: cnet_isa_e989ad4d04 (IsA command_guidance steering) (STV 1.0 0.9091)) +(: cnet_isa_926c0a2388 (IsA command_language source_language) (STV 1.0 0.9091)) +(: cnet_isa_2ac3b8c0d1 (IsA command_line instruction) (STV 1.0 0.9091)) +(: cnet_isa_087c60eba3 (IsA command_line_interface interface) (STV 1.0 0.9091)) +(: cnet_isa_2b9c9dd0a2 (IsA command_module module) (STV 1.0 0.9091)) +(: cnet_isa_4c312a5fc8 (IsA command_post headquarter) (STV 1.0 0.9091)) +(: cnet_isa_618f780bc7 (IsA command_processing_overhead_time processing_time) (STV 1.0 0.9091)) +(: cnet_isa_e1178f2ae1 (IsA commander commissioned_naval_officer) (STV 1.0 0.9091)) +(: cnet_isa_97eb377285 (IsA commander leader) (STV 1.0 0.9091)) +(: cnet_isa_d40d5829b1 (IsA commander_in_chief commanding_officer) (STV 1.0 0.9091)) +(: cnet_isa_e3acc389b6 (IsA commandership position) (STV 1.0 0.9091)) +(: cnet_isa_b5342b64c1 (IsA commanding_officer military_officer) (STV 1.0 0.9091)) +(: cnet_isa_c574e82fe1 (IsA commandment command) (STV 1.0 0.9091)) +(: cnet_isa_416f2553b4 (IsA commando military_unit) (STV 1.0 0.9091)) +(: cnet_isa_e0971e29fb (IsA commando serviceman) (STV 1.0 0.9091)) +(: cnet_isa_d791544e95 (IsA commedia_dell_arte comedy) (STV 1.0 0.9091)) +(: cnet_isa_29d4f9c4da (IsA commelina flower) (STV 1.0 0.9091)) +(: cnet_isa_d4ea047a92 (IsA commelinaceae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_f1589dceda (IsA commelinidae class) (STV 1.0 0.9091)) +(: cnet_isa_c6a39ccd78 (IsA commemoration ceremony) (STV 1.0 0.9091)) +(: cnet_isa_3a79570c0a (IsA commemorative object) (STV 1.0 0.9091)) +(: cnet_isa_17cd44d048 (IsA commencement exercise) (STV 1.0 0.9091)) +(: cnet_isa_ee1034bca4 (IsA commencement_day day) (STV 1.0 0.9091)) +(: cnet_isa_ab1e0d84e9 (IsA commensal organism) (STV 1.0 0.9091)) +(: cnet_isa_eb07f4238b (IsA commensalism mutuality) (STV 1.0 0.9091)) +(: cnet_isa_f7bf895d7e (IsA commensurateness proportionality) (STV 1.0 0.9091)) +(: cnet_isa_d43deb2307 (IsA comment statement) (STV 1.0 0.9091)) +(: cnet_isa_831416a1e8 (IsA commentator writer) (STV 1.0 0.9091)) +(: cnet_isa_4e22b40f2d (IsA commerce transaction) (STV 1.0 0.9091)) +(: cnet_isa_7a6d2e7ffc (IsA commerce conversation) (STV 1.0 0.9091)) +(: cnet_isa_869bf9575e (IsA commerce_secretary secretary) (STV 1.0 0.9091)) +(: cnet_isa_a087b1c00a (IsA commercial ad) (STV 1.0 0.9091)) +(: cnet_isa_52f0d876f8 (IsA commercial_art art) (STV 1.0 0.9091)) +(: cnet_isa_f3528f3bba (IsA commercial_artist illustrator) (STV 1.0 0.9091)) +(: cnet_isa_273970576b (IsA commercial_bank depository_financial_institution) (STV 1.0 0.9091)) +(: cnet_isa_91800d4a6e (IsA commercial_bribery bribery) (STV 1.0 0.9091)) +(: cnet_isa_cdb6dfb412 (IsA commercial_credit credit) (STV 1.0 0.9091)) +(: cnet_isa_8b1424380f (IsA commercial_document document) (STV 1.0 0.9091)) +(: cnet_isa_53ebb56ed6 (IsA commercial_enterprise commerce) (STV 1.0 0.9091)) +(: cnet_isa_b43a06c685 (IsA commercial_enterprise enterprise) (STV 1.0 0.9091)) +(: cnet_isa_619c91896b (IsA commercial_finance_company finance_company) (STV 1.0 0.9091)) +(: cnet_isa_4a8eb1e81f (IsA commercial_letter_of_credit letter_of_credit) (STV 1.0 0.9091)) +(: cnet_isa_8771e7a4c6 (IsA commercial_paper cash_equivalent) (STV 1.0 0.9091)) +(: cnet_isa_468e18e2f7 (IsA commercial_treaty treaty) (STV 1.0 0.9091)) +(: cnet_isa_532e9df943 (IsA commercialization exploitation) (STV 1.0 0.9091)) +(: cnet_isa_b1226eca10 (IsA commination prayer) (STV 1.0 0.9091)) +(: cnet_isa_0d0f17613f (IsA commination threat) (STV 1.0 0.9091)) +(: cnet_isa_57b00f1b69 (IsA comminuted_fracture fracture) (STV 1.0 0.9091)) +(: cnet_isa_317184c72d (IsA commiphora rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_350f517602 (IsA commiseration sympathy) (STV 1.0 0.9091)) +(: cnet_isa_359933c16b (IsA commissar official) (STV 1.0 0.9091)) +(: cnet_isa_809cbc2a6f (IsA commissariat food) (STV 1.0 0.9091)) +(: cnet_isa_422f2ef2aa (IsA commissary snack_bar) (STV 1.0 0.9091)) +(: cnet_isa_6abed165e7 (IsA commissary shop) (STV 1.0 0.9091)) +(: cnet_isa_3c66c4f614 (IsA commission authorization) (STV 1.0 0.9091)) +(: cnet_isa_fd7bdcbfc1 (IsA commission command) (STV 1.0 0.9091)) +(: cnet_isa_115064fcec (IsA commission certificate) (STV 1.0 0.9091)) +(: cnet_isa_887b24923d (IsA commission fee) (STV 1.0 0.9091)) +(: cnet_isa_2595a0334e (IsA commission operation) (STV 1.0 0.9091)) +(: cnet_isa_00178714d9 (IsA commission_on_human_right economic_and_social_council_commission) (STV 1.0 0.9091)) +(: cnet_isa_29b7bdd792 (IsA commission_on_narcotic_drug economic_and_social_council_commission) (STV 1.0 0.9091)) +(: cnet_isa_d74f98439c (IsA commission_on_status_of_women economic_and_social_council_commission) (STV 1.0 0.9091)) +(: cnet_isa_9ebdb42249 (IsA commission_plan municipal_government) (STV 1.0 0.9091)) +(: cnet_isa_05bb2d93f9 (IsA commissionaire doorkeeper) (STV 1.0 0.9091)) +(: cnet_isa_302490db48 (IsA commissioned_military_officer commissioned_officer) (STV 1.0 0.9091)) +(: cnet_isa_8f552b39b2 (IsA commissioned_naval_officer commissioned_officer) (STV 1.0 0.9091)) +(: cnet_isa_d2a5b7fd8f (IsA commissioned_officer military_officer) (STV 1.0 0.9091)) +(: cnet_isa_8d9d13edfd (IsA commissioner administrator) (STV 1.0 0.9091)) +(: cnet_isa_fdabfa6bbe (IsA commissioner member) (STV 1.0 0.9091)) +(: cnet_isa_2bdeff166f (IsA commissure nerve_pathway) (STV 1.0 0.9091)) +(: cnet_isa_382cd4bf2b (IsA commiting_crime breaking_law) (STV 1.0 0.9091)) +(: cnet_isa_3eb6ee06c2 (IsA commitment confinement) (STV 1.0 0.9091)) +(: cnet_isa_21804cef7f (IsA commitment cooperation) (STV 1.0 0.9091)) +(: cnet_isa_4972ce8211 (IsA commitment engagement) (STV 1.0 0.9091)) +(: cnet_isa_a01f418cc6 (IsA commitment message) (STV 1.0 0.9091)) +(: cnet_isa_9f674842ca (IsA committal_service service) (STV 1.0 0.9091)) +(: cnet_isa_574e2bb680 (IsA committedness seriousness) (STV 1.0 0.9091)) +(: cnet_isa_086daeb16c (IsA committee administrative_unit) (STV 1.0 0.9091)) +(: cnet_isa_8237422ba4 (IsA committee nongovernmental_organization) (STV 1.0 0.9091)) +(: cnet_isa_d257c96d82 (IsA committee_for_state_security russian_agency) (STV 1.0 0.9091)) +(: cnet_isa_2252330433 (IsA committee_member member) (STV 1.0 0.9091)) +(: cnet_isa_5dcc7a8fe0 (IsA committeeman committee_member) (STV 1.0 0.9091)) +(: cnet_isa_d22ac0a860 (IsA committeewoman committee_member) (STV 1.0 0.9091)) +(: cnet_isa_e213b8e0ca (IsA committing_crime against_social_good) (STV 1.0 0.9091)) +(: cnet_isa_780e89b4b0 (IsA committing_crime civil_faux_pa) (STV 1.0 0.9091)) +(: cnet_isa_dddb916f6d (IsA committing_crime civil_faux_pas) (STV 1.0 0.9091)) +(: cnet_isa_4fb0ee17b9 (IsA commodity object) (STV 1.0 0.9091)) +(: cnet_isa_94c780f9c1 (IsA commodity artifact) (STV 1.0 0.9091)) +(: cnet_isa_320027cd6b (IsA commodity_brokerage brokerage) (STV 1.0 0.9091)) +(: cnet_isa_ce9721ab31 (IsA commodity_exchange exchange) (STV 1.0 0.9091)) +(: cnet_isa_621b1d3a20 (IsA commodore commissioned_naval_officer) (STV 1.0 0.9091)) +(: cnet_isa_b0afb5937a (IsA common_ageratum ageratum) (STV 1.0 0.9091)) +(: cnet_isa_c8cd7efb3f (IsA common_alder alder) (STV 1.0 0.9091)) +(: cnet_isa_ef33a4278c (IsA common_allamanda allamanda) (STV 1.0 0.9091)) +(: cnet_isa_30918bdeaf (IsA common_american_shad shad) (STV 1.0 0.9091)) +(: cnet_isa_57d3f2c617 (IsA common_amsinckia herb) (STV 1.0 0.9091)) +(: cnet_isa_f8ea4ade76 (IsA common_apricot apricot) (STV 1.0 0.9091)) +(: cnet_isa_123d5b8d2c (IsA common_arrowhead sagittaria) (STV 1.0 0.9091)) +(: cnet_isa_d4405fab8b (IsA common_ax ax) (STV 1.0 0.9091)) +(: cnet_isa_074b156989 (IsA common_bamboo bamboo) (STV 1.0 0.9091)) +(: cnet_isa_e63a501802 (IsA common_barberry barberry) (STV 1.0 0.9091)) +(: cnet_isa_f1c5b59266 (IsA common_barley barley) (STV 1.0 0.9091)) +(: cnet_isa_fbfa6175eb (IsA common_basil basil) (STV 1.0 0.9091)) +(: cnet_isa_faaff9bcc7 (IsA common_bean bean) (STV 1.0 0.9091)) +(: cnet_isa_241fb1982d (IsA common_bean bush_bean) (STV 1.0 0.9091)) +(: cnet_isa_6b54470ae5 (IsA common_bearberry bearberry) (STV 1.0 0.9091)) +(: cnet_isa_593f8f96d8 (IsA common_beech beech) (STV 1.0 0.9091)) +(: cnet_isa_a748e3477e (IsA common_bile_duct duct) (STV 1.0 0.9091)) +(: cnet_isa_8798c7819b (IsA common_booklouse booklouse) (STV 1.0 0.9091)) +(: cnet_isa_579793e47e (IsA common_box box) (STV 1.0 0.9091)) +(: cnet_isa_4d8ab80b49 (IsA common_brant_goose brant) (STV 1.0 0.9091)) +(: cnet_isa_3c7daae795 (IsA common_broom broom) (STV 1.0 0.9091)) +(: cnet_isa_2cf0d6a6c3 (IsA common_burdock burdock) (STV 1.0 0.9091)) +(: cnet_isa_0acddb9a6b (IsA common_buttercup buttercup) (STV 1.0 0.9091)) +(: cnet_isa_54b48e9dae (IsA common_calamint calamint) (STV 1.0 0.9091)) +(: cnet_isa_43986faa58 (IsA common_cama cama) (STV 1.0 0.9091)) +(: cnet_isa_ef54703826 (IsA common_canary canary) (STV 1.0 0.9091)) +(: cnet_isa_5edb39b219 (IsA common_caper caper) (STV 1.0 0.9091)) +(: cnet_isa_2532a4c51b (IsA common_cardinal_vein cardinal_vein) (STV 1.0 0.9091)) +(: cnet_isa_149a1aa8a6 (IsA common_carline_thistle carline_thistle) (STV 1.0 0.9091)) +(: cnet_isa_9373414e79 (IsA common_carotid_artery carotid_artery) (STV 1.0 0.9091)) +(: cnet_isa_b8abaa453b (IsA common_chickweed chickweed) (STV 1.0 0.9091)) +(: cnet_isa_85e079d31c (IsA common_chord chord) (STV 1.0 0.9091)) +(: cnet_isa_9c98f91fca (IsA common_comfrey comfrey) (STV 1.0 0.9091)) +(: cnet_isa_b15b46e5b8 (IsA common_corn_salad corn_salad) (STV 1.0 0.9091)) +(: cnet_isa_74d665bdf7 (IsA common_cotton_grass cotton_grass) (STV 1.0 0.9091)) +(: cnet_isa_54e50f3f9d (IsA common_daisy daisy) (STV 1.0 0.9091)) +(: cnet_isa_64e4d635eb (IsA common_dandelion dandelion) (STV 1.0 0.9091)) +(: cnet_isa_3ea359c86d (IsA common_denominator attribute) (STV 1.0 0.9091)) +(: cnet_isa_9b5ed9b251 (IsA common_denominator denominator) (STV 1.0 0.9091)) +(: cnet_isa_e2cf8b40ac (IsA common_divisor divisor) (STV 1.0 0.9091)) +(: cnet_isa_147f613cfd (IsA common_dogbane dogbane) (STV 1.0 0.9091)) +(: cnet_isa_6eab792604 (IsA common_dolphin dolphin) (STV 1.0 0.9091)) +(: cnet_isa_190e412034 (IsA common_duckweed duckweed) (STV 1.0 0.9091)) +(: cnet_isa_c482927dd2 (IsA common_eel eel) (STV 1.0 0.9091)) +(: cnet_isa_14aed0de24 (IsA common_eland eland) (STV 1.0 0.9091)) +(: cnet_isa_d2d717a365 (IsA common_european_dogwood dogwood) (STV 1.0 0.9091)) +(: cnet_isa_f29b8ed6cb (IsA common_european_earwig earwig) (STV 1.0 0.9091)) +(: cnet_isa_f33df14b50 (IsA common_european_jay old_world_jay) (STV 1.0 0.9091)) +(: cnet_isa_3fd31c6a12 (IsA common_evening_primrose evening_primrose) (STV 1.0 0.9091)) +(: cnet_isa_5c81ded6af (IsA common_facial_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_2ea5abc819 (IsA common_fate gestalt_law_of_organization) (STV 1.0 0.9091)) +(: cnet_isa_8c53bf5fe4 (IsA common_fennel fennel) (STV 1.0 0.9091)) +(: cnet_isa_2c8912d1ae (IsA common_flat_pea shrub) (STV 1.0 0.9091)) +(: cnet_isa_73561bb61f (IsA common_four_o_clock four_o_clock) (STV 1.0 0.9091)) +(: cnet_isa_eba0bcab06 (IsA common_foxglove foxglove) (STV 1.0 0.9091)) +(: cnet_isa_e1ede097ea (IsA common_fraction fraction) (STV 1.0 0.9091)) +(: cnet_isa_457dd9d6a9 (IsA common_front movement) (STV 1.0 0.9091)) +(: cnet_isa_705a2d5881 (IsA common_garden_cress cress) (STV 1.0 0.9091)) +(: cnet_isa_49919f8241 (IsA common_garter_snake garter_snake) (STV 1.0 0.9091)) +(: cnet_isa_a6fbfe5d1f (IsA common_ginger ginger) (STV 1.0 0.9091)) +(: cnet_isa_e2d146363c (IsA common_good good) (STV 1.0 0.9091)) +(: cnet_isa_a055c28fbb (IsA common_grape_hyacinth grape_hyacinth) (STV 1.0 0.9091)) +(: cnet_isa_4ffb8931a7 (IsA common_ground footing) (STV 1.0 0.9091)) +(: cnet_isa_d8b94ebe84 (IsA common_gum_cistus rockrose) (STV 1.0 0.9091)) +(: cnet_isa_43d208a167 (IsA common_heath epacris) (STV 1.0 0.9091)) +(: cnet_isa_ea5f8ec316 (IsA common_hop hop) (STV 1.0 0.9091)) +(: cnet_isa_4942811f0e (IsA common_horehound horehound) (STV 1.0 0.9091)) +(: cnet_isa_ebf7a0d884 (IsA common_horsetail horsetail) (STV 1.0 0.9091)) +(: cnet_isa_bbd8167ef1 (IsA common_hyacinth hyacinth) (STV 1.0 0.9091)) +(: cnet_isa_7a6c963d08 (IsA common_iguana iguanid) (STV 1.0 0.9091)) +(: cnet_isa_13f943d093 (IsA common_iliac_artery iliac_artery) (STV 1.0 0.9091)) +(: cnet_isa_2c5b4902a6 (IsA common_iliac_vein iliac_vein) (STV 1.0 0.9091)) +(: cnet_isa_eabeb8f9da (IsA common_jasmine jasmine) (STV 1.0 0.9091)) +(: cnet_isa_eade48a3f4 (IsA common_juniper juniper) (STV 1.0 0.9091)) +(: cnet_isa_f8a45d14c3 (IsA common_kingsnake king_snake) (STV 1.0 0.9091)) +(: cnet_isa_af3287368d (IsA common_knowledge public_knowledge) (STV 1.0 0.9091)) +(: cnet_isa_fee510f964 (IsA common_laburnum flowering_shrub) (STV 1.0 0.9091)) +(: cnet_isa_72698a4222 (IsA common_lady_s_slipper lady_s_slipper) (STV 1.0 0.9091)) +(: cnet_isa_c09c408cf6 (IsA common_law law) (STV 1.0 0.9091)) +(: cnet_isa_b28c26fb3f (IsA common_law_marriage marriage) (STV 1.0 0.9091)) +(: cnet_isa_4c2e2f1b1a (IsA common_lilac lilac) (STV 1.0 0.9091)) +(: cnet_isa_a00a934077 (IsA common_limpet limpet) (STV 1.0 0.9091)) +(: cnet_isa_e1f5b99544 (IsA common_logarithm logarithm) (STV 1.0 0.9091)) +(: cnet_isa_7f7c944268 (IsA common_louse louse) (STV 1.0 0.9091)) +(: cnet_isa_a53485f138 (IsA common_lynx lynx) (STV 1.0 0.9091)) +(: cnet_isa_964f5fcef9 (IsA common_mackerel mackerel) (STV 1.0 0.9091)) +(: cnet_isa_2090a92f3a (IsA common_madia wildflower) (STV 1.0 0.9091)) +(: cnet_isa_674c5f075e (IsA common_maidenhair maidenhair) (STV 1.0 0.9091)) +(: cnet_isa_195701acf6 (IsA common_mallow mallow) (STV 1.0 0.9091)) +(: cnet_isa_904b97ddca (IsA common_marigold calendula) (STV 1.0 0.9091)) +(: cnet_isa_e3675d6681 (IsA common_matrimony_vine matrimony_vine) (STV 1.0 0.9091)) +(: cnet_isa_43056c9f08 (IsA common_measure meter) (STV 1.0 0.9091)) +(: cnet_isa_11c871a065 (IsA common_milkwort milkwort) (STV 1.0 0.9091)) +(: cnet_isa_0bcc7cf142 (IsA common_moonseed moonseed) (STV 1.0 0.9091)) +(: cnet_isa_7c93893407 (IsA common_morel morel) (STV 1.0 0.9091)) +(: cnet_isa_8ec511d8eb (IsA common_morning_glory morning_glory) (STV 1.0 0.9091)) +(: cnet_isa_6d9d272b14 (IsA common_mosquito mosquito) (STV 1.0 0.9091)) +(: cnet_isa_eaa5c12dbb (IsA common_mugwort mugwort) (STV 1.0 0.9091)) +(: cnet_isa_d710680ab2 (IsA common_mullein mullein) (STV 1.0 0.9091)) +(: cnet_isa_f6a8b0ddac (IsA common_multiple integer) (STV 1.0 0.9091)) +(: cnet_isa_9c38167a12 (IsA common_murre murre) (STV 1.0 0.9091)) +(: cnet_isa_e603b4bc04 (IsA common_myrtle myrtle) (STV 1.0 0.9091)) +(: cnet_isa_d6bb3eae37 (IsA common_newt newt) (STV 1.0 0.9091)) +(: cnet_isa_5a88d1139b (IsA common_noun noun) (STV 1.0 0.9091)) +(: cnet_isa_605cc7d41d (IsA common_nutcracker nutcracker) (STV 1.0 0.9091)) +(: cnet_isa_f7e6bce891 (IsA common_oak white_oak) (STV 1.0 0.9091)) +(: cnet_isa_89981cd0a8 (IsA common_opossum opossum) (STV 1.0 0.9091)) +(: cnet_isa_86ac50a738 (IsA common_osier osier) (STV 1.0 0.9091)) +(: cnet_isa_e6cbd078af (IsA common_pitcher_plant pitcher_plant) (STV 1.0 0.9091)) +(: cnet_isa_88da8786ac (IsA common_plum plum) (STV 1.0 0.9091)) +(: cnet_isa_30bc2ae463 (IsA common_polypody polypody) (STV 1.0 0.9091)) +(: cnet_isa_ff3a5f6d5e (IsA common_pond_skater water_strider) (STV 1.0 0.9091)) +(: cnet_isa_2bbd95ea49 (IsA common_privet privet) (STV 1.0 0.9091)) +(: cnet_isa_3327c70fad (IsA common_purslane purslane) (STV 1.0 0.9091)) +(: cnet_isa_586740e5ce (IsA common_raccoon raccoon) (STV 1.0 0.9091)) +(: cnet_isa_c9b5ebca6f (IsA common_ragweed ragweed) (STV 1.0 0.9091)) +(: cnet_isa_a064ccc29e (IsA common_room living_room) (STV 1.0 0.9091)) +(: cnet_isa_6317642d13 (IsA common_roundworm nematode) (STV 1.0 0.9091)) +(: cnet_isa_fe747ea1dc (IsA common_sage sage) (STV 1.0 0.9091)) +(: cnet_isa_3a5418ad56 (IsA common_scoter scoter) (STV 1.0 0.9091)) +(: cnet_isa_d5163bda84 (IsA common_sense sagacity) (STV 1.0 0.9091)) +(: cnet_isa_fa4fb10749 (IsA common_shiner shiner) (STV 1.0 0.9091)) +(: cnet_isa_f96ed64a1d (IsA common_shrew shrew) (STV 1.0 0.9091)) +(: cnet_isa_490e487975 (IsA common_sickle_pine conifer) (STV 1.0 0.9091)) +(: cnet_isa_37c4bde631 (IsA common_snapping_turtle snapping_turtle) (STV 1.0 0.9091)) +(: cnet_isa_65b704877e (IsA common_speedwell veronica) (STV 1.0 0.9091)) +(: cnet_isa_7dec78d872 (IsA common_spindle_tree spindle_tree) (STV 1.0 0.9091)) +(: cnet_isa_3be5ea9aae (IsA common_spoonbill spoonbill) (STV 1.0 0.9091)) +(: cnet_isa_87870f6148 (IsA common_spotted_orchid orchid) (STV 1.0 0.9091)) +(: cnet_isa_52e86cf630 (IsA common_st_john_s_wort st_john_s_wort) (STV 1.0 0.9091)) +(: cnet_isa_904365ae0b (IsA common_staghorn_fern staghorn_fern) (STV 1.0 0.9091)) +(: cnet_isa_0d2c6ccf37 (IsA common_starling starling) (STV 1.0 0.9091)) +(: cnet_isa_5885973095 (IsA common_stinkhorn stinkhorn) (STV 1.0 0.9091)) +(: cnet_isa_68164a843b (IsA common_stock stock) (STV 1.0 0.9091)) +(: cnet_isa_13cf049e41 (IsA common_stock_equivalent stock) (STV 1.0 0.9091)) +(: cnet_isa_17530adcff (IsA common_sunflower sunflower) (STV 1.0 0.9091)) +(: cnet_isa_81b365311b (IsA common_teasel teasel) (STV 1.0 0.9091)) +(: cnet_isa_15728dc2b6 (IsA common_thyme thyme) (STV 1.0 0.9091)) +(: cnet_isa_9362d5a337 (IsA common_time musical_time) (STV 1.0 0.9091)) +(: cnet_isa_539d6eac63 (IsA common_tobacco tobacco) (STV 1.0 0.9091)) +(: cnet_isa_f87b395f72 (IsA common_touch touch) (STV 1.0 0.9091)) +(: cnet_isa_2c0c887d10 (IsA common_unicorn_plant herb) (STV 1.0 0.9091)) +(: cnet_isa_bfef5db2ea (IsA common_valerian valerian) (STV 1.0 0.9091)) +(: cnet_isa_7a06a8fa3b (IsA common_vetchling wild_pea) (STV 1.0 0.9091)) +(: cnet_isa_b53f8bf893 (IsA common_wallaby wallaby) (STV 1.0 0.9091)) +(: cnet_isa_a556395985 (IsA common_wart wart) (STV 1.0 0.9091)) +(: cnet_isa_1fd8d13c2b (IsA common_wasp vespid) (STV 1.0 0.9091)) +(: cnet_isa_fbb9399753 (IsA common_water_snake water_snake) (STV 1.0 0.9091)) +(: cnet_isa_33c39689cc (IsA common_watercress watercress) (STV 1.0 0.9091)) +(: cnet_isa_e7020eb20e (IsA common_wheat wheat) (STV 1.0 0.9091)) +(: cnet_isa_55972905b8 (IsA common_white_dogwood dogwood) (STV 1.0 0.9091)) +(: cnet_isa_18bea62549 (IsA common_winterberry_holly holly) (STV 1.0 0.9091)) +(: cnet_isa_8765282688 (IsA common_wolffia watermeal) (STV 1.0 0.9091)) +(: cnet_isa_17f761a12f (IsA common_wood_sorrel oxalis) (STV 1.0 0.9091)) +(: cnet_isa_4035a175c3 (IsA common_wormwood wormwood) (STV 1.0 0.9091)) +(: cnet_isa_48a3230db6 (IsA common_year year) (STV 1.0 0.9091)) +(: cnet_isa_9d76712130 (IsA common_yellowthroat yellowthroat) (STV 1.0 0.9091)) +(: cnet_isa_d360c65035 (IsA common_yellowwood gymnospermous_yellowwood) (STV 1.0 0.9091)) +(: cnet_isa_13a13238bd (IsA common_zebra zebra) (STV 1.0 0.9091)) +(: cnet_isa_248dab7932 (IsA commonage property) (STV 1.0 0.9091)) +(: cnet_isa_7c1a9b6290 (IsA commonality generality) (STV 1.0 0.9091)) +(: cnet_isa_073d7bdcd5 (IsA commonalty class) (STV 1.0 0.9091)) +(: cnet_isa_cf1e217851 (IsA commoner person) (STV 1.0 0.9091)) +(: cnet_isa_6cb821941d (IsA commonness ordinariness) (STV 1.0 0.9091)) +(: cnet_isa_d2a29cac05 (IsA commonness normality) (STV 1.0 0.9091)) +(: cnet_isa_2c70cdbcf8 (IsA commonplace_book notebook) (STV 1.0 0.9091)) +(: cnet_isa_2f611c1eb4 (IsA common pasture) (STV 1.0 0.9091)) +(: cnet_isa_db627ffb27 (IsA commonwealth world_organization) (STV 1.0 0.9091)) +(: cnet_isa_680cfa66ae (IsA commonwealth state) (STV 1.0 0.9091)) +(: cnet_isa_3de1e78eb1 (IsA commonwealth_country state) (STV 1.0 0.9091)) +(: cnet_isa_eaad8f2cab (IsA commonwealth_day legal_holiday) (STV 1.0 0.9091)) +(: cnet_isa_db614c34ea (IsA commonwealth_of_independent_state world_organization) (STV 1.0 0.9091)) +(: cnet_isa_642e5ceada (IsA commotion disturbance) (STV 1.0 0.9091)) +(: cnet_isa_0b328302ab (IsA communalism commitment) (STV 1.0 0.9091)) +(: cnet_isa_b80bf8bf01 (IsA communalism group_action) (STV 1.0 0.9091)) +(: cnet_isa_6111e51999 (IsA commune gathering) (STV 1.0 0.9091)) +(: cnet_isa_3031f988c2 (IsA commune administrative_district) (STV 1.0 0.9091)) +(: cnet_isa_191a2efa75 (IsA communicable_disease disease) (STV 1.0 0.9091)) +(: cnet_isa_55b4169f80 (IsA communicant christian) (STV 1.0 0.9091)) +(: cnet_isa_4b2bbd6b04 (IsA communicating_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_4764bcb808 (IsA communication abstraction) (STV 1.0 0.9091)) +(: cnet_isa_b9c20c337f (IsA communication act) (STV 1.0 0.9091)) +(: cnet_isa_0de79b0249 (IsA communication connection) (STV 1.0 0.9091)) +(: cnet_isa_c4c541eca4 (IsA communication_system facility) (STV 1.0 0.9091)) +(: cnet_isa_f771aac13a (IsA communication_system system) (STV 1.0 0.9091)) +(: cnet_isa_339e544c6e (IsA communication discipline) (STV 1.0 0.9091)) +(: cnet_isa_1975230c35 (IsA communication_intelligence signal_intelligence) (STV 1.0 0.9091)) +(: cnet_isa_16511b5412 (IsA communication_officer officer) (STV 1.0 0.9091)) +(: cnet_isa_e1958b6c8b (IsA communication_officer worker) (STV 1.0 0.9091)) +(: cnet_isa_a45ea98421 (IsA communication_satellite satellite) (STV 1.0 0.9091)) +(: cnet_isa_8787e35eb9 (IsA communication_security_establishment international_intelligence_agency) (STV 1.0 0.9091)) +(: cnet_isa_102bb0ad5e (IsA communication_specialist worker) (STV 1.0 0.9091)) +(: cnet_isa_3a318cebd9 (IsA communication_technology technology) (STV 1.0 0.9091)) +(: cnet_isa_c70201dcab (IsA communicativeness trait) (STV 1.0 0.9091)) +(: cnet_isa_99366a3fd6 (IsA communicator person) (STV 1.0 0.9091)) +(: cnet_isa_1520d43f38 (IsA communion ritual) (STV 1.0 0.9091)) +(: cnet_isa_04f9b2743b (IsA communion denomination) (STV 1.0 0.9091)) +(: cnet_isa_e06be57578 (IsA communion intercourse) (STV 1.0 0.9091)) +(: cnet_isa_35513298fc (IsA communism extreme_leftist_ideology) (STV 1.0 0.9091)) +(: cnet_isa_3eef54d2b4 (IsA communism government) (STV 1.0 0.9091)) +(: cnet_isa_7f4b80895e (IsA communism political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_8ba83374f8 (IsA communism socialism) (STV 1.0 0.9091)) +(: cnet_isa_0f7fbb0a8a (IsA communist politician) (STV 1.0 0.9091)) +(: cnet_isa_885434420e (IsA communist socialist) (STV 1.0 0.9091)) +(: cnet_isa_6dfc03ca1c (IsA communist_economy managed_economy) (STV 1.0 0.9091)) +(: cnet_isa_7a4e60def4 (IsA communist_party party) (STV 1.0 0.9091)) +(: cnet_isa_7c842f68e7 (IsA community group) (STV 1.0 0.9091)) +(: cnet_isa_007e1e6997 (IsA community gathering) (STV 1.0 0.9091)) +(: cnet_isa_21cd710c5a (IsA community people) (STV 1.0 0.9091)) +(: cnet_isa_795114d26c (IsA community world_organization) (STV 1.0 0.9091)) +(: cnet_isa_7fe638a346 (IsA community ownership) (STV 1.0 0.9091)) +(: cnet_isa_9d7b04d8bc (IsA community agreement) (STV 1.0 0.9091)) +(: cnet_isa_8ce7cc6bab (IsA community_center center) (STV 1.0 0.9091)) +(: cnet_isa_2db3e0b8a1 (IsA community_chest charity) (STV 1.0 0.9091)) +(: cnet_isa_de4d3f3be8 (IsA community_college junior_college) (STV 1.0 0.9091)) +(: cnet_isa_14f28dab4c (IsA community_of_scholar profession) (STV 1.0 0.9091)) +(: cnet_isa_eb66e4c1a1 (IsA community_property property) (STV 1.0 0.9091)) +(: cnet_isa_525fbd1912 (IsA community_service service) (STV 1.0 0.9091)) +(: cnet_isa_02c48cb68e (IsA communization change) (STV 1.0 0.9091)) +(: cnet_isa_999f2edfb8 (IsA communization constitution) (STV 1.0 0.9091)) +(: cnet_isa_16da37bf3e (IsA commutability changeableness) (STV 1.0 0.9091)) +(: cnet_isa_7460555fdf (IsA commutation travel) (STV 1.0 0.9091)) +(: cnet_isa_a3503a469f (IsA commutation clemency) (STV 1.0 0.9091)) +(: cnet_isa_4dbd0a9326 (IsA commutation warrant) (STV 1.0 0.9091)) +(: cnet_isa_e1c9b5ab6b (IsA commutation_ticket ticket) (STV 1.0 0.9091)) +(: cnet_isa_46f65764c5 (IsA commutator switch) (STV 1.0 0.9091)) +(: cnet_isa_1b794715a3 (IsA commute journey) (STV 1.0 0.9091)) +(: cnet_isa_6830a82393 (IsA commuter passenger_train) (STV 1.0 0.9091)) +(: cnet_isa_b0c89e9abd (IsA commuter passenger) (STV 1.0 0.9091)) +(: cnet_isa_b42a272847 (IsA commuter_traffic traffic) (STV 1.0 0.9091)) +(: cnet_isa_d6c853632a (IsA compact car) (STV 1.0 0.9091)) +(: cnet_isa_819af95fd6 (IsA compact case) (STV 1.0 0.9091)) +(: cnet_isa_09ba739126 (IsA compact_disk optical_disk) (STV 1.0 0.9091)) +(: cnet_isa_c7e91dbe0f (IsA compact_disk recording) (STV 1.0 0.9091)) +(: cnet_isa_436afb7769 (IsA compact_disk_burner recorder) (STV 1.0 0.9091)) +(: cnet_isa_923b2b1935 (IsA compaction concentration) (STV 1.0 0.9091)) +(: cnet_isa_b3e55ac591 (IsA compactness solidity) (STV 1.0 0.9091)) +(: cnet_isa_c8f94cd5f6 (IsA companion attendant) (STV 1.0 0.9091)) +(: cnet_isa_dd6350518a (IsA companion friend) (STV 1.0 0.9091)) +(: cnet_isa_c6fa0f82ef (IsA companion traveler) (STV 1.0 0.9091)) +(: cnet_isa_ad723ed68e (IsA companionability sociability) (STV 1.0 0.9091)) +(: cnet_isa_4764679c37 (IsA companionway stairway) (STV 1.0 0.9091)) +(: cnet_isa_26cb685128 (IsA company legal_entity) (STV 1.0 0.9091)) +(: cnet_isa_1792f05c49 (IsA company institution) (STV 1.0 0.9091)) +(: cnet_isa_8286b3ce58 (IsA company organization) (STV 1.0 0.9091)) +(: cnet_isa_6d87cc07d2 (IsA company social_gathering) (STV 1.0 0.9091)) +(: cnet_isa_53b2421eec (IsA company unit) (STV 1.0 0.9091)) +(: cnet_isa_67f5b566a3 (IsA company army_unit) (STV 1.0 0.9091)) +(: cnet_isa_65610723a0 (IsA company friendship) (STV 1.0 0.9091)) +(: cnet_isa_cc5ffdbeaa (IsA company_man employee) (STV 1.0 0.9091)) +(: cnet_isa_73df45e269 (IsA company_name name) (STV 1.0 0.9091)) +(: cnet_isa_317ff6dabc (IsA company_operator operator) (STV 1.0 0.9091)) +(: cnet_isa_1a38332723 (IsA company_union union) (STV 1.0 0.9091)) +(: cnet_isa_64c51fdb2f (IsA comparative adjective) (STV 1.0 0.9091)) +(: cnet_isa_b42ff9c7fe (IsA comparative adverb) (STV 1.0 0.9091)) +(: cnet_isa_e7716429d3 (IsA comparative_anatomist anatomist) (STV 1.0 0.9091)) +(: cnet_isa_a08ca872c7 (IsA comparative_anatomy anatomy) (STV 1.0 0.9091)) +(: cnet_isa_4809d74eaa (IsA comparative_literature literary_study) (STV 1.0 0.9091)) +(: cnet_isa_4b76863fb5 (IsA comparative_negligence negligence) (STV 1.0 0.9091)) +(: cnet_isa_895b7b1bf1 (IsA comparative_psychology psychology) (STV 1.0 0.9091)) +(: cnet_isa_03f72e53b2 (IsA comparison examination) (STV 1.0 0.9091)) +(: cnet_isa_0c9c539afa (IsA comparison likeness) (STV 1.0 0.9091)) +(: cnet_isa_f97df99e8b (IsA comparison relation) (STV 1.0 0.9091)) +(: cnet_isa_1f2805b556 (IsA compartment room) (STV 1.0 0.9091)) +(: cnet_isa_88202fcba9 (IsA compartment space) (STV 1.0 0.9091)) +(: cnet_isa_13958c7ff2 (IsA compartment_pressure atmospheric_pressure) (STV 1.0 0.9091)) +(: cnet_isa_4b72cff4b2 (IsA compartmentalization dissociation) (STV 1.0 0.9091)) +(: cnet_isa_92a22e0ca4 (IsA compass drafting_instrument) (STV 1.0 0.9091)) +(: cnet_isa_ef060214b2 (IsA compass navigational_instrument) (STV 1.0 0.9091)) +(: cnet_isa_6928794b1e (IsA compass capability) (STV 1.0 0.9091)) +(: cnet_isa_ee0ea9ed4a (IsA compass_card magnetic_compass) (STV 1.0 0.9091)) +(: cnet_isa_abff11ee50 (IsA compass_plant composite) (STV 1.0 0.9091)) +(: cnet_isa_b4cc9e470c (IsA compass_point direction) (STV 1.0 0.9091)) +(: cnet_isa_4da8c1d6d8 (IsA compass_saw handsaw) (STV 1.0 0.9091)) +(: cnet_isa_56da703d1b (IsA compassion mercifulness) (STV 1.0 0.9091)) +(: cnet_isa_da6117e28d (IsA compassion sympathy) (STV 1.0 0.9091)) +(: cnet_isa_8288efe036 (IsA compassionate_leave leave) (STV 1.0 0.9091)) +(: cnet_isa_42e05b087f (IsA compatibility characteristic) (STV 1.0 0.9091)) +(: cnet_isa_da24306a3e (IsA compatibility sympathy) (STV 1.0 0.9091)) +(: cnet_isa_81fa4bd407 (IsA compatible_software software) (STV 1.0 0.9091)) +(: cnet_isa_461f180a54 (IsA compatriot national) (STV 1.0 0.9091)) +(: cnet_isa_21ab2a65c5 (IsA compendium summary) (STV 1.0 0.9091)) +(: cnet_isa_a9e2b6e5ec (IsA compensating_balance balance) (STV 1.0 0.9091)) +(: cnet_isa_2fc647b5a7 (IsA compensation recompense) (STV 1.0 0.9091)) +(: cnet_isa_af6ab9b3f7 (IsA compensation defense_mechanism) (STV 1.0 0.9091)) +(: cnet_isa_fe4df785e3 (IsA compensatory_time time_off) (STV 1.0 0.9091)) +(: cnet_isa_f71f292080 (IsA compere master_of_ceremony) (STV 1.0 0.9091)) +(: cnet_isa_81c19b01f7 (IsA competence ability) (STV 1.0 0.9091)) +(: cnet_isa_ab4896de27 (IsA competence_hearing hearing) (STV 1.0 0.9091)) +(: cnet_isa_7bb81306d3 (IsA competition group_action) (STV 1.0 0.9091)) +(: cnet_isa_2915a8538a (IsA competition business_relation) (STV 1.0 0.9091)) +(: cnet_isa_4e9f9c84b9 (IsA competitiveness aggressiveness) (STV 1.0 0.9091)) +(: cnet_isa_f9cb987293 (IsA compilation collection) (STV 1.0 0.9091)) +(: cnet_isa_c99febe8f1 (IsA compiler program) (STV 1.0 0.9091)) +(: cnet_isa_c8410013c1 (IsA complacency satisfaction) (STV 1.0 0.9091)) +(: cnet_isa_fc4f05991a (IsA complaint pleading) (STV 1.0 0.9091)) +(: cnet_isa_779ac16cf6 (IsA complaint cry) (STV 1.0 0.9091)) +(: cnet_isa_ae3e4ac0d4 (IsA complaint objection) (STV 1.0 0.9091)) +(: cnet_isa_955a0893b8 (IsA complaisance agreeableness) (STV 1.0 0.9091)) +(: cnet_isa_4c7b888c49 (IsA complement adjunct) (STV 1.0 0.9091)) +(: cnet_isa_b62312f8a4 (IsA complement counterpart) (STV 1.0 0.9091)) +(: cnet_isa_3612dac6b3 (IsA complement construction) (STV 1.0 0.9091)) +(: cnet_isa_bc296e3c46 (IsA complement work_force) (STV 1.0 0.9091)) +(: cnet_isa_e0754ba006 (IsA complement count) (STV 1.0 0.9091)) +(: cnet_isa_d22ee9a90f (IsA complement enzyme) (STV 1.0 0.9091)) +(: cnet_isa_f66c5815ec (IsA complement_fixation immune_response) (STV 1.0 0.9091)) +(: cnet_isa_6334820b8c (IsA complement_fixation_test blood_test) (STV 1.0 0.9091)) +(: cnet_isa_56d8ca034d (IsA complementarity reciprocality) (STV 1.0 0.9091)) +(: cnet_isa_c0299ab4ac (IsA complementarity ungradable_opposition) (STV 1.0 0.9091)) +(: cnet_isa_4768e0707f (IsA complementary_angle angle) (STV 1.0 0.9091)) +(: cnet_isa_2d7fcdbf35 (IsA complementary_color chromatic_color) (STV 1.0 0.9091)) +(: cnet_isa_dc41dda0a7 (IsA complementary_distribution distribution) (STV 1.0 0.9091)) +(: cnet_isa_6022a5e310 (IsA complementary_dna deoxyribonucleic_acid) (STV 1.0 0.9091)) +(: cnet_isa_9c46c802b9 (IsA complementary_medicine medicine) (STV 1.0 0.9091)) +(: cnet_isa_9c0b56b973 (IsA complementation grammatical_relation) (STV 1.0 0.9091)) +(: cnet_isa_aef1dbd525 (IsA complete_blood_count blood_count) (STV 1.0 0.9091)) +(: cnet_isa_087a7b7a23 (IsA complete_fracture fracture) (STV 1.0 0.9091)) +(: cnet_isa_d95ea4d586 (IsA completeness logicality) (STV 1.0 0.9091)) +(: cnet_isa_013489144d (IsA completeness integrity) (STV 1.0 0.9091)) +(: cnet_isa_c008539809 (IsA completion termination) (STV 1.0 0.9091)) +(: cnet_isa_b9302a3ea9 (IsA completion maneuver) (STV 1.0 0.9091)) +(: cnet_isa_c5d50800ea (IsA complex whole) (STV 1.0 0.9091)) +(: cnet_isa_c90e393284 (IsA complex feeling) (STV 1.0 0.9091)) +(: cnet_isa_2130b827e7 (IsA complex compound) (STV 1.0 0.9091)) +(: cnet_isa_c0f410dfa3 (IsA complex_absence petit_mal_epilepsy) (STV 1.0 0.9091)) +(: cnet_isa_b43373056a (IsA complex_conjugate complex_number) (STV 1.0 0.9091)) +(: cnet_isa_8005fb6afb (IsA complex_fraction fraction) (STV 1.0 0.9091)) +(: cnet_isa_fa4795d9c6 (IsA complex_instruction_set_computing computer_architecture) (STV 1.0 0.9091)) +(: cnet_isa_1a4d4d35fb (IsA complex_number number) (STV 1.0 0.9091)) +(: cnet_isa_b9231754a2 (IsA complex_plane cartesian_plane) (STV 1.0 0.9091)) +(: cnet_isa_9ccfc35b4e (IsA complex_sentence sentence) (STV 1.0 0.9091)) +(: cnet_isa_d2d15a6c8d (IsA complexifier person) (STV 1.0 0.9091)) +(: cnet_isa_6d647f1417 (IsA complexion appearance) (STV 1.0 0.9091)) +(: cnet_isa_b693984e30 (IsA complexion color) (STV 1.0 0.9091)) +(: cnet_isa_3d51ce63ac (IsA complexion nature) (STV 1.0 0.9091)) +(: cnet_isa_0831a0706c (IsA complexion point_of_view) (STV 1.0 0.9091)) +(: cnet_isa_415523c4c8 (IsA complexion combination) (STV 1.0 0.9091)) +(: cnet_isa_df13078b64 (IsA complexity quality) (STV 1.0 0.9091)) +(: cnet_isa_66abce7455 (IsA compliance group_action) (STV 1.0 0.9091)) +(: cnet_isa_c0ab4009ef (IsA complicatedness complexity) (STV 1.0 0.9091)) +(: cnet_isa_94e60394d7 (IsA complication hindrance) (STV 1.0 0.9091)) +(: cnet_isa_e48f446efd (IsA complication development) (STV 1.0 0.9091)) +(: cnet_isa_d6ab69e7cd (IsA complication disease) (STV 1.0 0.9091)) +(: cnet_isa_a165945737 (IsA complication situation) (STV 1.0 0.9091)) +(: cnet_isa_c0609f4f17 (IsA complicity guilt) (STV 1.0 0.9091)) +(: cnet_isa_ab2633c1d4 (IsA compliment praise) (STV 1.0 0.9091)) +(: cnet_isa_ceb28b3581 (IsA compline canonical_hour) (STV 1.0 0.9091)) +(: cnet_isa_bab4423273 (IsA component part) (STV 1.0 0.9091)) +(: cnet_isa_2070ad9a10 (IsA composer musician) (STV 1.0 0.9091)) +(: cnet_isa_2b6fd73f2b (IsA composing creating_by_mental_act) (STV 1.0 0.9091)) +(: cnet_isa_fd8cb8796b (IsA compositae asterid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_38d79a8fcb (IsA composite flower) (STV 1.0 0.9091)) +(: cnet_isa_21eeaa3eb4 (IsA composite_material material) (STV 1.0 0.9091)) +(: cnet_isa_4fbb1ed947 (IsA composite_number number) (STV 1.0 0.9091)) +(: cnet_isa_271b7b20f0 (IsA composite_order order) (STV 1.0 0.9091)) +(: cnet_isa_7d7bd07a04 (IsA compositeness property) (STV 1.0 0.9091)) +(: cnet_isa_4ce0373ebd (IsA composition creation) (STV 1.0 0.9091)) +(: cnet_isa_8a01da32ec (IsA composition placement) (STV 1.0 0.9091)) +(: cnet_isa_48e568a26b (IsA composition essay) (STV 1.0 0.9091)) +(: cnet_isa_ba3a227680 (IsA composition mixture) (STV 1.0 0.9091)) +(: cnet_isa_27e8b9357a (IsA composition_of_earth 17_percent_magnesium) (STV 1.0 0.9091)) +(: cnet_isa_e2d7c9e361 (IsA compositor_s_case receptacle) (STV 1.0 0.9091)) +(: cnet_isa_ca1df1b9c5 (IsA compositor printer) (STV 1.0 0.9091)) +(: cnet_isa_f7a3038161 (IsA compost composition) (STV 1.0 0.9091)) +(: cnet_isa_8cfd262df2 (IsA compost_heap pile) (STV 1.0 0.9091)) +(: cnet_isa_01d2649a57 (IsA composure disposition) (STV 1.0 0.9091)) +(: cnet_isa_93a8b5dc29 (IsA compote dessert) (STV 1.0 0.9091)) +(: cnet_isa_6a277c42d6 (IsA compound enclosure) (STV 1.0 0.9091)) +(: cnet_isa_5c3f1ff166 (IsA compound chemical) (STV 1.0 0.9091)) +(: cnet_isa_e26c05aaa1 (IsA compound whole) (STV 1.0 0.9091)) +(: cnet_isa_536aa394cd (IsA compound_eye eye) (STV 1.0 0.9091)) +(: cnet_isa_d23870cdae (IsA compound_fracture fracture) (STV 1.0 0.9091)) +(: cnet_isa_fbf9899037 (IsA compound_interest interest) (STV 1.0 0.9091)) +(: cnet_isa_9e73ebbd51 (IsA compound_leaf leaf) (STV 1.0 0.9091)) +(: cnet_isa_86e9c9b909 (IsA compound_len len) (STV 1.0 0.9091)) +(: cnet_isa_60c68beca7 (IsA compound_lever lever) (STV 1.0 0.9091)) +(: cnet_isa_d68f238d93 (IsA compound_microscope light_microscope) (STV 1.0 0.9091)) +(: cnet_isa_66d424163f (IsA compound_morphology morphology) (STV 1.0 0.9091)) +(: cnet_isa_948c775279 (IsA compound_number number) (STV 1.0 0.9091)) +(: cnet_isa_2334af563a (IsA compound_pistil pistil) (STV 1.0 0.9091)) +(: cnet_isa_4167fa25f4 (IsA compound_sentence sentence) (STV 1.0 0.9091)) +(: cnet_isa_e53d10f53a (IsA comprehensibility quality) (STV 1.0 0.9091)) +(: cnet_isa_3fcee7c255 (IsA comprehension understanding) (STV 1.0 0.9091)) +(: cnet_isa_63413a1d22 (IsA comprehensive_examination examination) (STV 1.0 0.9091)) +(: cnet_isa_a561671515 (IsA comprehensive_school secondary_school) (STV 1.0 0.9091)) +(: cnet_isa_c08ccd7509 (IsA comprehensiveness completeness) (STV 1.0 0.9091)) +(: cnet_isa_51ea02edc7 (IsA compress dressing) (STV 1.0 0.9091)) +(: cnet_isa_e7d2ea3f0c (IsA compressed_air compressed_gas) (STV 1.0 0.9091)) +(: cnet_isa_f2125077aa (IsA compressed_gas gas) (STV 1.0 0.9091)) +(: cnet_isa_da6689af6a (IsA compressed_gas propellant) (STV 1.0 0.9091)) +(: cnet_isa_077f8a9f14 (IsA compressibility softness) (STV 1.0 0.9091)) +(: cnet_isa_18c84d4f6f (IsA compression encoding) (STV 1.0 0.9091)) +(: cnet_isa_2dd8099367 (IsA compression press) (STV 1.0 0.9091)) +(: cnet_isa_711603b92d (IsA compression shrinking) (STV 1.0 0.9091)) +(: cnet_isa_58bf8f614f (IsA compression_bandage bandage) (STV 1.0 0.9091)) +(: cnet_isa_1aff7544ea (IsA compression_fracture fracture) (STV 1.0 0.9091)) +(: cnet_isa_0c46045e22 (IsA compressor mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_b2ccf7ff2c (IsA compromise cooperation) (STV 1.0 0.9091)) +(: cnet_isa_74ce533cdb (IsA compromise accommodation) (STV 1.0 0.9091)) +(: cnet_isa_e0b9a130b8 (IsA compromise_verdict verdict) (STV 1.0 0.9091)) +(: cnet_isa_4bae668176 (IsA compromiser negotiator) (STV 1.0 0.9091)) +(: cnet_isa_0fe8a9d619 (IsA compsognathus theropod) (STV 1.0 0.9091)) +(: cnet_isa_73dbd44f1e (IsA comptonia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c70d3b11e2 (IsA comptroller_general official) (STV 1.0 0.9091)) +(: cnet_isa_5e1c7a30ad (IsA comptroller_of_currency agency) (STV 1.0 0.9091)) +(: cnet_isa_9ce537c72d (IsA comptroller_of_currency official) (STV 1.0 0.9091)) +(: cnet_isa_c3f22b64f6 (IsA comptrollership position) (STV 1.0 0.9091)) +(: cnet_isa_4236101cc1 (IsA compulsion causing) (STV 1.0 0.9091)) +(: cnet_isa_43bfd7b075 (IsA compulsion irrational_impulse) (STV 1.0 0.9091)) +(: cnet_isa_529e283336 (IsA compulsion irrational_motive) (STV 1.0 0.9091)) +(: cnet_isa_76b57db515 (IsA compulsive person) (STV 1.0 0.9091)) +(: cnet_isa_ce63821ac5 (IsA compulsive_hoarding symptom_of_ocd) (STV 1.0 0.9091)) +(: cnet_isa_b73b8a6ce3 (IsA compulsiveness trait) (STV 1.0 0.9091)) +(: cnet_isa_5c706f9710 (IsA compulsory_process legal_right) (STV 1.0 0.9091)) +(: cnet_isa_1c8900d624 (IsA compunction sorrow) (STV 1.0 0.9091)) +(: cnet_isa_0dd6626189 (IsA computational_linguist computer_scientist) (STV 1.0 0.9091)) +(: cnet_isa_ad127e3a49 (IsA computational_linguist linguist) (STV 1.0 0.9091)) +(: cnet_isa_0272e3ba8c (IsA computational_linguistic linguistic) (STV 1.0 0.9091)) +(: cnet_isa_2f80e69f76 (IsA computer electronic_device) (STV 1.0 0.9748)) +(: cnet_isa_a8242d49e2 (IsA computer machine) (STV 1.0 0.9091)) +(: cnet_isa_e54b5557aa (IsA computer one_type_of_machine) (STV 1.0 0.9091)) +(: cnet_isa_2ac64844f7 (IsA computer_accessory accessory) (STV 1.0 0.9091)) +(: cnet_isa_9bcf7b7d6d (IsA computer_aided_design software) (STV 1.0 0.9091)) +(: cnet_isa_d7ad832920 (IsA computer_architecture specification) (STV 1.0 0.9091)) +(: cnet_isa_356b32b1ea (IsA computer_architecture structure) (STV 1.0 0.9091)) +(: cnet_isa_c256a0fc00 (IsA computer_business manufacturer) (STV 1.0 0.9091)) +(: cnet_isa_a6b7115be6 (IsA computer_chip integrated_circuit) (STV 1.0 0.9091)) +(: cnet_isa_b8920b580f (IsA computer_circuit circuit) (STV 1.0 0.9091)) +(: cnet_isa_aad462d7b3 (IsA computer_dealer dealer) (STV 1.0 0.9091)) +(: cnet_isa_46cd436071 (IsA computer_expert computer_user) (STV 1.0 0.9091)) +(: cnet_isa_92581fc6fe (IsA computer_expert expert) (STV 1.0 0.9091)) +(: cnet_isa_ee8c2fbe01 (IsA computer_file file) (STV 1.0 0.9091)) +(: cnet_isa_8b9a6be206 (IsA computer_game game) (STV 1.0 0.9091)) +(: cnet_isa_aceed4ea5d (IsA computer_graphic ikon) (STV 1.0 0.9091)) +(: cnet_isa_201684586f (IsA computer_graphic graphic) (STV 1.0 0.9091)) +(: cnet_isa_aac0cb9691 (IsA computer_industry industry) (STV 1.0 0.9091)) +(: cnet_isa_48723b1725 (IsA computer_keyboard data_input_device) (STV 1.0 0.9091)) +(: cnet_isa_722fd4e088 (IsA computer_keyboard keyboard) (STV 1.0 0.9091)) +(: cnet_isa_be7b343a46 (IsA computer_language programming_language) (STV 1.0 0.9091)) +(: cnet_isa_deaf8117cf (IsA computer_memory_unit unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_1fe83729e4 (IsA computer_monitor monitor) (STV 1.0 0.9091)) +(: cnet_isa_1b0aa49368 (IsA computer_network network) (STV 1.0 0.9091)) +(: cnet_isa_1a1177c4f1 (IsA computer_operation operation) (STV 1.0 0.9091)) +(: cnet_isa_f59e41ade8 (IsA computer_paper paper) (STV 1.0 0.9091)) +(: cnet_isa_5c244b0200 (IsA computer_program program) (STV 1.0 0.9339)) +(: cnet_isa_9f484da489 (IsA computer_science science) (STV 1.0 0.9524)) +(: cnet_isa_61a1c84719 (IsA computer_science engineering) (STV 1.0 0.9091)) +(: cnet_isa_9602344c86 (IsA computer_scientist computer_user) (STV 1.0 0.9091)) +(: cnet_isa_929cba226e (IsA computer_scientist scientist) (STV 1.0 0.9091)) +(: cnet_isa_5e052eb156 (IsA computer_screen screen) (STV 1.0 0.9091)) +(: cnet_isa_990ff224f6 (IsA computer_store shop) (STV 1.0 0.9091)) +(: cnet_isa_096893c1d4 (IsA computer_store_owner worker) (STV 1.0 0.9091)) +(: cnet_isa_fe1ac52675 (IsA computer_system system) (STV 1.0 0.9091)) +(: cnet_isa_cc86ee4fb2 (IsA computer_technology technology) (STV 1.0 0.9091)) +(: cnet_isa_0cd0322e58 (IsA computer_user person) (STV 1.0 0.9091)) +(: cnet_isa_d187863188 (IsA computer_vision artificial_intelligence) (STV 1.0 0.9091)) +(: cnet_isa_8ac564b7d8 (IsA computerization automation) (STV 1.0 0.9091)) +(: cnet_isa_2dbe97dd0f (IsA computerized_axial_tomography_scanner tomograph) (STV 1.0 0.9091)) +(: cnet_isa_4c5a8e427c (IsA computerized_tomography x_raying) (STV 1.0 0.9091)) +(: cnet_isa_9befc1847c (IsA computer not_sentient_being) (STV 1.0 0.9091)) +(: cnet_isa_1828d5bd1c (IsA comrade communist) (STV 1.0 0.9091)) +(: cnet_isa_b97e71dc09 (IsA comstock_mealybug mealybug) (STV 1.0 0.9091)) +(: cnet_isa_f2a9c49110 (IsA comstockery censoring) (STV 1.0 0.9091)) +(: cnet_isa_8cf7ef4105 (IsA comtism positivism) (STV 1.0 0.9091)) +(: cnet_isa_40e9d34feb (IsA con argument) (STV 1.0 0.9091)) +(: cnet_isa_09b467685f (IsA conacaste tree) (STV 1.0 0.9091)) +(: cnet_isa_9617729429 (IsA concatenation joining) (STV 1.0 0.9091)) +(: cnet_isa_1875e49461 (IsA concatenation connection) (STV 1.0 0.9091)) +(: cnet_isa_48c6f72142 (IsA concave_polygon polygon) (STV 1.0 0.9091)) +(: cnet_isa_821ee6313d (IsA concave_polyhedron polyhedron) (STV 1.0 0.9091)) +(: cnet_isa_1d1b4a0f83 (IsA concave_shape solid) (STV 1.0 0.9091)) +(: cnet_isa_49a55eb6e5 (IsA concavity shape) (STV 1.0 0.9091)) +(: cnet_isa_c69259b525 (IsA concealment activity) (STV 1.0 0.9091)) +(: cnet_isa_401ef9e0ac (IsA conceit trait) (STV 1.0 0.9091)) +(: cnet_isa_a6cbfd6d5b (IsA conceit device) (STV 1.0 0.9091)) +(: cnet_isa_45d407f719 (IsA conceit trope) (STV 1.0 0.9091)) +(: cnet_isa_035febbc5f (IsA conceit turn_of_expression) (STV 1.0 0.9091)) +(: cnet_isa_b1bd8dedb5 (IsA conceivableness possibility) (STV 1.0 0.9091)) +(: cnet_isa_ec3747337b (IsA concentrate prototype) (STV 1.0 0.9091)) +(: cnet_isa_6e4e076df2 (IsA concentrate foodstuff) (STV 1.0 0.9091)) +(: cnet_isa_6fd1bb75a0 (IsA concentrated_fire fire) (STV 1.0 0.9091)) +(: cnet_isa_16ff644d93 (IsA concentration assembly) (STV 1.0 0.9091)) +(: cnet_isa_314df6fb61 (IsA concentration strengthening) (STV 1.0 0.9091)) +(: cnet_isa_20dccf4bcf (IsA concentration compactness) (STV 1.0 0.9091)) +(: cnet_isa_c88b304b32 (IsA concentration property) (STV 1.0 0.9091)) +(: cnet_isa_e7797ae5ef (IsA concentration attention) (STV 1.0 0.9091)) +(: cnet_isa_05a8d3249d (IsA concentration increase) (STV 1.0 0.9091)) +(: cnet_isa_3b2d05cfac (IsA concentration_camp camp) (STV 1.0 0.9091)) +(: cnet_isa_380bffe395 (IsA concentration_camp misery) (STV 1.0 0.9091)) +(: cnet_isa_13398989d8 (IsA concentration_gradient gradient) (STV 1.0 0.9091)) +(: cnet_isa_50114b4c98 (IsA concentricity circularity) (STV 1.0 0.9091)) +(: cnet_isa_1b3a71067f (IsA concept idea) (STV 1.0 0.9091)) +(: cnet_isa_53b563126f (IsA concept_album album) (STV 1.0 0.9091)) +(: cnet_isa_0fd434e8dc (IsA conception sexual_activity) (STV 1.0 0.9091)) +(: cnet_isa_c76c595a62 (IsA conceptual_semantic semantic) (STV 1.0 0.9091)) +(: cnet_isa_1eb8519179 (IsA conceptualism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_1d156f9b4f (IsA conceptualization creating_by_mental_act) (STV 1.0 0.9091)) +(: cnet_isa_0be19b71e6 (IsA conceptualization concept) (STV 1.0 0.9091)) +(: cnet_isa_344bb550a1 (IsA concern interest) (STV 1.0 0.9091)) +(: cnet_isa_67eda4cf0e (IsA concern negative_stimulus) (STV 1.0 0.9091)) +(: cnet_isa_f3b9526b26 (IsA concern anxiety) (STV 1.0 0.9091)) +(: cnet_isa_f68b829040 (IsA concern sympathy) (STV 1.0 0.9091)) +(: cnet_isa_308ff41727 (IsA concert show) (STV 1.0 0.9091)) +(: cnet_isa_885115435c (IsA concert performance) (STV 1.0 0.9091)) +(: cnet_isa_62025f3a9c (IsA concert_band band) (STV 1.0 0.9091)) +(: cnet_isa_debf67cfcf (IsA concert_goer consumer) (STV 1.0 0.9091)) +(: cnet_isa_9602fdcd17 (IsA concert_grand grand_piano) (STV 1.0 0.9091)) +(: cnet_isa_5a212e709b (IsA concert_hall hall) (STV 1.0 0.9091)) +(: cnet_isa_43035e6408 (IsA concert_pitch pitch) (STV 1.0 0.9091)) +(: cnet_isa_825b908bb2 (IsA concertina barbed_wire) (STV 1.0 0.9091)) +(: cnet_isa_da6803e221 (IsA concertina free_reed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_9ef2d98481 (IsA concertinist musician) (STV 1.0 0.9091)) +(: cnet_isa_91d20d3e30 (IsA concerto classical_music) (STV 1.0 0.9091)) +(: cnet_isa_b88b976f93 (IsA concerto_grosso concerto) (STV 1.0 0.9091)) +(: cnet_isa_ce97b3231d (IsA concession agreement) (STV 1.0 0.9091)) +(: cnet_isa_4468501708 (IsA concession assent) (STV 1.0 0.9091)) +(: cnet_isa_dbb81f18c8 (IsA concession contract) (STV 1.0 0.9091)) +(: cnet_isa_9164bba08f (IsA concessionaire small_businessman) (STV 1.0 0.9091)) +(: cnet_isa_70094ba5f6 (IsA conch gastropod) (STV 1.0 0.9091)) +(: cnet_isa_85acc96f3e (IsA concha structure) (STV 1.0 0.9091)) +(: cnet_isa_abdbb5cdf9 (IsA conchfish cardinalfish) (STV 1.0 0.9091)) +(: cnet_isa_27f5ef80dd (IsA conchologist collector) (STV 1.0 0.9091)) +(: cnet_isa_2572ed108d (IsA conchology collection) (STV 1.0 0.9091)) +(: cnet_isa_7238e8a91c (IsA conchology malacology) (STV 1.0 0.9091)) +(: cnet_isa_42e0ee5c25 (IsA concierge caretaker) (STV 1.0 0.9091)) +(: cnet_isa_3cad96602c (IsA conciliation mediation) (STV 1.0 0.9091)) +(: cnet_isa_af1ae3cd08 (IsA conciliation peace) (STV 1.0 0.9091)) +(: cnet_isa_9dfa51d7f9 (IsA conciliator mediator) (STV 1.0 0.9091)) +(: cnet_isa_c969aca174 (IsA conciseness terseness) (STV 1.0 0.9091)) +(: cnet_isa_c2acc14f99 (IsA conclave meeting) (STV 1.0 0.9091)) +(: cnet_isa_054baf7f53 (IsA conclusion assumption) (STV 1.0 0.9091)) +(: cnet_isa_25223dfe16 (IsA conclusion proposition) (STV 1.0 0.9091)) +(: cnet_isa_6915ec6ed7 (IsA conclusion section) (STV 1.0 0.9091)) +(: cnet_isa_a05f2ae16d (IsA conclusion settlement) (STV 1.0 0.9091)) +(: cnet_isa_025f1abf8f (IsA concoction invention) (STV 1.0 0.9091)) +(: cnet_isa_f40ec1d3af (IsA concoction mix) (STV 1.0 0.9091)) +(: cnet_isa_8af4c7e376 (IsA concoction foodstuff) (STV 1.0 0.9091)) +(: cnet_isa_46f6d72675 (IsA concomitance concurrence) (STV 1.0 0.9091)) +(: cnet_isa_4e88996f65 (IsA concord_grape fox_grape) (STV 1.0 0.9091)) +(: cnet_isa_88dad00f1e (IsA concordance index) (STV 1.0 0.9091)) +(: cnet_isa_f838c657aa (IsA concourse merging) (STV 1.0 0.9091)) +(: cnet_isa_783f8b37f3 (IsA concourse hallway) (STV 1.0 0.9091)) +(: cnet_isa_733688556c (IsA concrete building_material) (STV 1.0 0.9091)) +(: cnet_isa_a3115c93e4 (IsA concrete paving_material) (STV 1.0 0.9091)) +(: cnet_isa_48bd5b4fcf (IsA concrete_jungle jungle) (STV 1.0 0.9091)) +(: cnet_isa_1dfe498653 (IsA concrete_mixer machine) (STV 1.0 0.9091)) +(: cnet_isa_57a825d66b (IsA concreteness materiality) (STV 1.0 0.9091)) +(: cnet_isa_fda6ac2624 (IsA concretion natural_process) (STV 1.0 0.9091)) +(: cnet_isa_ac442f922c (IsA concretism representation) (STV 1.0 0.9091)) +(: cnet_isa_6c1626410c (IsA concubinage cohabitation) (STV 1.0 0.9091)) +(: cnet_isa_973852a0c7 (IsA concubine mistress) (STV 1.0 0.9091)) +(: cnet_isa_d579646f58 (IsA concurrence cooperation) (STV 1.0 0.9091)) +(: cnet_isa_b47bd6337a (IsA concurrence simultaneity) (STV 1.0 0.9091)) +(: cnet_isa_40fbcee5dc (IsA concurrence agreement) (STV 1.0 0.9091)) +(: cnet_isa_9b21f8ec20 (IsA concurrent_negligence negligence) (STV 1.0 0.9091)) +(: cnet_isa_0ec8724339 (IsA concurrent_operation operation) (STV 1.0 0.9091)) +(: cnet_isa_8fa6aa90b8 (IsA concurring_opinion opinion) (STV 1.0 0.9091)) +(: cnet_isa_cbfa631d29 (IsA concussion bump) (STV 1.0 0.9091)) +(: cnet_isa_e8b8ed792c (IsA concussion injury) (STV 1.0 0.9091)) +(: cnet_isa_bec7f4d8d5 (IsA condemnation disapproval) (STV 1.0 0.9091)) +(: cnet_isa_b9a4a122b8 (IsA condemnation condition) (STV 1.0 0.9091)) +(: cnet_isa_f97dd5b2e2 (IsA condensate fresh_water) (STV 1.0 0.9091)) +(: cnet_isa_ec8db1b6e9 (IsA condensation summary) (STV 1.0 0.9091)) +(: cnet_isa_01093b2378 (IsA condensation atmospheric_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_ff0dea3e6e (IsA condensation natural_process) (STV 1.0 0.9091)) +(: cnet_isa_6c79a41b8e (IsA condensation process) (STV 1.0 0.9091)) +(: cnet_isa_5ba8871c47 (IsA condensation_pump air_pump) (STV 1.0 0.9091)) +(: cnet_isa_5668cc52fa (IsA condensed_milk milk) (STV 1.0 0.9091)) +(: cnet_isa_3f00688850 (IsA condenser apparatus) (STV 1.0 0.9091)) +(: cnet_isa_65d8c6cc4b (IsA condenser coil) (STV 1.0 0.9091)) +(: cnet_isa_00aa3a6a93 (IsA condenser len) (STV 1.0 0.9091)) +(: cnet_isa_5ebbaf7345 (IsA condenser_microphone microphone) (STV 1.0 0.9091)) +(: cnet_isa_f68f0906e2 (IsA condensing compression) (STV 1.0 0.9091)) +(: cnet_isa_0b7d42cdea (IsA condescension affability) (STV 1.0 0.9091)) +(: cnet_isa_e39d1ec677 (IsA condescension arrogance) (STV 1.0 0.9091)) +(: cnet_isa_d66652fa04 (IsA condescension disparagement) (STV 1.0 0.9091)) +(: cnet_isa_159af96d8f (IsA condiment flavorer) (STV 1.0 0.9091)) +(: cnet_isa_b10aae86a4 (IsA condition procedure) (STV 1.0 0.9091)) +(: cnet_isa_da2c448d6a (IsA condition premise) (STV 1.0 0.9091)) +(: cnet_isa_7554f8450e (IsA condition statement) (STV 1.0 0.9091)) +(: cnet_isa_cc8fc054de (IsA condition good_health) (STV 1.0 0.9091)) +(: cnet_isa_dc1edc52ef (IsA condition illness) (STV 1.0 0.9091)) +(: cnet_isa_ee522aac45 (IsA condition state) (STV 1.0 0.9091)) +(: cnet_isa_84cec1643a (IsA conditional_contract contract) (STV 1.0 0.9091)) +(: cnet_isa_4bff49a3e1 (IsA conditional_probability probability) (STV 1.0 0.9091)) +(: cnet_isa_bb7ce64871 (IsA conditional_reflex learned_reaction) (STV 1.0 0.9091)) +(: cnet_isa_2ba3196525 (IsA conditional_sale sale) (STV 1.0 0.9091)) +(: cnet_isa_2e5bfb3de7 (IsA conditional_sale security_interest) (STV 1.0 0.9091)) +(: cnet_isa_f6187c6e03 (IsA conditionality state) (STV 1.0 0.9091)) +(: cnet_isa_0ee0a86bbc (IsA conditioned_avoidance conditional_reflex) (STV 1.0 0.9091)) +(: cnet_isa_400d7a285d (IsA conditioned_emotional_response emotion) (STV 1.0 0.9091)) +(: cnet_isa_e9a674110d (IsA conditioned_stimulus stimulation) (STV 1.0 0.9091)) +(: cnet_isa_6409e01bc9 (IsA conditioner cardiopulmonary_exercise) (STV 1.0 0.9091)) +(: cnet_isa_a845b90572 (IsA conditioner softener) (STV 1.0 0.9091)) +(: cnet_isa_147dff30e6 (IsA conditioner coach) (STV 1.0 0.9091)) +(: cnet_isa_19ab2440f1 (IsA conditioning learning) (STV 1.0 0.9091)) +(: cnet_isa_1791501365 (IsA condition context) (STV 1.0 0.9091)) +(: cnet_isa_91f1ae73d3 (IsA condolence acknowledgment) (STV 1.0 0.9091)) +(: cnet_isa_5da22cfeea (IsA condom contraceptive) (STV 1.0 0.9091)) +(: cnet_isa_5e9fb063a3 (IsA condominium dwelling) (STV 1.0 0.9091)) +(: cnet_isa_589c0c7e32 (IsA condominium housing) (STV 1.0 0.9091)) +(: cnet_isa_6599b81afb (IsA condom protection) (STV 1.0 0.9091)) +(: cnet_isa_5b265b88fd (IsA condonation forgiveness) (STV 1.0 0.9091)) +(: cnet_isa_467a7b4bd0 (IsA condor new_world_vulture) (STV 1.0 0.9091)) +(: cnet_isa_1113a6275e (IsA conductance electrical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_c2b3d73c36 (IsA conductance_unit electromagnetic_unit) (STV 1.0 0.9091)) +(: cnet_isa_5c1ca3ecb2 (IsA conducting administration) (STV 1.0 0.9091)) +(: cnet_isa_f9c950b21b (IsA conducting management) (STV 1.0 0.9091)) +(: cnet_isa_3f93dd317e (IsA conduction physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_4c6d4fd8bc (IsA conduction_anesthesia anesthesia) (STV 1.0 0.9091)) +(: cnet_isa_af0d887c57 (IsA conduction_aphasia aphasia) (STV 1.0 0.9091)) +(: cnet_isa_6d66952954 (IsA conductive_hearing_loss hearing_impairment) (STV 1.0 0.9091)) +(: cnet_isa_59c6fc9e9e (IsA conductor device) (STV 1.0 0.9091)) +(: cnet_isa_51869d140a (IsA conductor collector) (STV 1.0 0.9091)) +(: cnet_isa_a06144963d (IsA conductor musician) (STV 1.0 0.9091)) +(: cnet_isa_982bdf3423 (IsA conductor material) (STV 1.0 0.9091)) +(: cnet_isa_145521de07 (IsA conductress conductor) (STV 1.0 0.9091)) +(: cnet_isa_d2ed2c573e (IsA conduit passage) (STV 1.0 0.9091)) +(: cnet_isa_325b9db02c (IsA condylar_process condyle) (STV 1.0 0.9091)) +(: cnet_isa_2fc9055872 (IsA condyle process) (STV 1.0 0.9091)) +(: cnet_isa_c24743cbb9 (IsA condylion craniometric_point) (STV 1.0 0.9091)) +(: cnet_isa_26e817bcb3 (IsA condylura mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_8cb7e4ee90 (IsA cone artifact) (STV 1.0 0.9091)) +(: cnet_isa_e7771dadf9 (IsA cone visual_cell) (STV 1.0 0.9091)) +(: cnet_isa_f477d181aa (IsA cone reproductive_structure) (STV 1.0 0.9091)) +(: cnet_isa_615c75405d (IsA cone round_shape) (STV 1.0 0.9091)) +(: cnet_isa_e19b58b0dc (IsA cone_clutch friction_clutch) (STV 1.0 0.9091)) +(: cnet_isa_e205a8c99a (IsA cone_pepper capsicum) (STV 1.0 0.9091)) +(: cnet_isa_9c78e6d0d5 (IsA coneflower flower) (STV 1.0 0.9091)) +(: cnet_isa_8d19ae2c21 (IsA coneflower wildflower) (STV 1.0 0.9091)) +(: cnet_isa_28d2be4739 (IsA conenose assassin_bug) (STV 1.0 0.9091)) +(: cnet_isa_d2cb4a4f33 (IsA conepatus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_c95f11d519 (IsA coney grouper) (STV 1.0 0.9091)) +(: cnet_isa_6fe2377096 (IsA confabulation memory) (STV 1.0 0.9091)) +(: cnet_isa_baf0f90633 (IsA confection creating_from_raw_material) (STV 1.0 0.9091)) +(: cnet_isa_6da55dd50e (IsA confectioner maker) (STV 1.0 0.9091)) +(: cnet_isa_a6bdefc5cf (IsA confectionery occupation) (STV 1.0 0.9091)) +(: cnet_isa_fe8e58122e (IsA confectionery shop) (STV 1.0 0.9091)) +(: cnet_isa_86696c0bf0 (IsA confectionery sweet) (STV 1.0 0.9091)) +(: cnet_isa_f6e73bf73c (IsA confederate accessory) (STV 1.0 0.9091)) +(: cnet_isa_2167f3e13d (IsA confederate southerner) (STV 1.0 0.9091)) +(: cnet_isa_188d609443 (IsA confederate supporter) (STV 1.0 0.9091)) +(: cnet_isa_c465d28314 (IsA confederate_army army) (STV 1.0 0.9091)) +(: cnet_isa_0ce69ea9b5 (IsA confederate_army gray) (STV 1.0 0.9091)) +(: cnet_isa_c783fee2ee (IsA confederate_soldier confederate) (STV 1.0 0.9091)) +(: cnet_isa_77d051c054 (IsA confederate_soldier soldier) (STV 1.0 0.9091)) +(: cnet_isa_852c809b91 (IsA confederation group_action) (STV 1.0 0.9091)) +(: cnet_isa_1db5fb4768 (IsA confederation union) (STV 1.0 0.9091)) +(: cnet_isa_2bd03245f6 (IsA conferee communicator) (STV 1.0 0.9091)) +(: cnet_isa_0663b217b9 (IsA conferee recipient) (STV 1.0 0.9091)) +(: cnet_isa_23494de4d2 (IsA conference discussion) (STV 1.0 0.9091)) +(: cnet_isa_a9637a4b3a (IsA conference meeting) (STV 1.0 0.9091)) +(: cnet_isa_3619d39b34 (IsA conference_call call) (STV 1.0 0.9091)) +(: cnet_isa_a2837587e6 (IsA conference_center center) (STV 1.0 0.9091)) +(: cnet_isa_207315f7df (IsA conference_room room) (STV 1.0 0.9091)) +(: cnet_isa_d7efdff38c (IsA conference_table table) (STV 1.0 0.9091)) +(: cnet_isa_eae5552521 (IsA conferrer communicator) (STV 1.0 0.9091)) +(: cnet_isa_daa9fae870 (IsA conferva yellow_green_algae) (STV 1.0 0.9091)) +(: cnet_isa_ca827ef31e (IsA confervoid_algae alga) (STV 1.0 0.9091)) +(: cnet_isa_4d239f2357 (IsA confession admission) (STV 1.0 0.9091)) +(: cnet_isa_70e90e323d (IsA confession declaration) (STV 1.0 0.9091)) +(: cnet_isa_837bec08d3 (IsA confession document) (STV 1.0 0.9091)) +(: cnet_isa_d97f66449e (IsA confession religious_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_d4fd03190b (IsA confession penance) (STV 1.0 0.9091)) +(: cnet_isa_fedcc27b11 (IsA confession_of_judgment judgment) (STV 1.0 0.9091)) +(: cnet_isa_ec7edcbe22 (IsA confessional booth) (STV 1.0 0.9091)) +(: cnet_isa_9e683de123 (IsA confessor communicator) (STV 1.0 0.9091)) +(: cnet_isa_ef2104fe8f (IsA confessor priest) (STV 1.0 0.9091)) +(: cnet_isa_3d8e7b5988 (IsA confetti small_piece_of_paper) (STV 1.0 0.9339)) +(: cnet_isa_18a52e53f5 (IsA confetti paper) (STV 1.0 0.9091)) +(: cnet_isa_e8df9044f9 (IsA confidant friend) (STV 1.0 0.9091)) +(: cnet_isa_1756723c7d (IsA confidante confidant) (STV 1.0 0.9091)) +(: cnet_isa_2d6875e61d (IsA confidence secret) (STV 1.0 0.9091)) +(: cnet_isa_d7f958cb14 (IsA confidence security) (STV 1.0 0.9091)) +(: cnet_isa_31c2990f23 (IsA confidence friendship) (STV 1.0 0.9091)) +(: cnet_isa_7409b9cd2c (IsA confidence hopefulness) (STV 1.0 0.9091)) +(: cnet_isa_d9595c7d6d (IsA confidence_man swindler) (STV 1.0 0.9091)) +(: cnet_isa_fb58cf1992 (IsA confidential_adviser_advisee_relation fiduciary_relation) (STV 1.0 0.9091)) +(: cnet_isa_22d8939290 (IsA confidentiality discretion) (STV 1.0 0.9091)) +(: cnet_isa_7a5deed889 (IsA confidentiality privacy) (STV 1.0 0.9091)) +(: cnet_isa_2dcb0875e0 (IsA configuration design) (STV 1.0 0.9091)) +(: cnet_isa_c069757cf4 (IsA confinement restraint) (STV 1.0 0.9091)) +(: cnet_isa_767c625a27 (IsA confinement subjugation) (STV 1.0 0.9091)) +(: cnet_isa_1e16494fda (IsA confine scope) (STV 1.0 0.9091)) +(: cnet_isa_0c1b099b7c (IsA confirmation religious_ceremony) (STV 1.0 0.9091)) +(: cnet_isa_fcc1184356 (IsA confirmation sacrament) (STV 1.0 0.9091)) +(: cnet_isa_f001b95402 (IsA confirmation proof) (STV 1.0 0.9091)) +(: cnet_isa_f939bcd4ae (IsA confirmation information) (STV 1.0 0.9091)) +(: cnet_isa_f98e5ea6ec (IsA confirmation_hearing hearing) (STV 1.0 0.9091)) +(: cnet_isa_a88f3c609e (IsA confiscation seizure) (STV 1.0 0.9091)) +(: cnet_isa_640504415a (IsA confit cut) (STV 1.0 0.9091)) +(: cnet_isa_0f1af2ba62 (IsA confiture sweet) (STV 1.0 0.9091)) +(: cnet_isa_72d78c83f1 (IsA conflagration fire) (STV 1.0 0.9091)) +(: cnet_isa_e7d56fcec1 (IsA conflict group_action) (STV 1.0 0.9091)) +(: cnet_isa_f72f177619 (IsA conflict incompatibility) (STV 1.0 0.9091)) +(: cnet_isa_3b562421fe (IsA conflict ambivalence) (STV 1.0 0.9091)) +(: cnet_isa_99d032f5fc (IsA conflict opposition) (STV 1.0 0.9091)) +(: cnet_isa_720c25c58f (IsA conflict state) (STV 1.0 0.9091)) +(: cnet_isa_6d4c8925c1 (IsA conflict_of_interest situation) (STV 1.0 0.9091)) +(: cnet_isa_9eae47b530 (IsA confluence blend) (STV 1.0 0.9091)) +(: cnet_isa_835282d900 (IsA confluence geographic_point) (STV 1.0 0.9091)) +(: cnet_isa_3f418d25ff (IsA conformal_projection map_projection) (STV 1.0 0.9091)) +(: cnet_isa_548344d1de (IsA conformation balance) (STV 1.0 0.9091)) +(: cnet_isa_83a09acdf2 (IsA conformational_entropy randomness) (STV 1.0 0.9091)) +(: cnet_isa_4007877fbd (IsA conformist conservative) (STV 1.0 0.9091)) +(: cnet_isa_e64d92fc7f (IsA conformity cooperation) (STV 1.0 0.9091)) +(: cnet_isa_28630d97df (IsA conformity agreement) (STV 1.0 0.9091)) +(: cnet_isa_5e45d87c55 (IsA conformity orthodoxy) (STV 1.0 0.9091)) +(: cnet_isa_78e69775a7 (IsA confrontation comparison) (STV 1.0 0.9091)) +(: cnet_isa_accb5e4bac (IsA confrontation resistance) (STV 1.0 0.9091)) +(: cnet_isa_de89f63618 (IsA confrontation challenge) (STV 1.0 0.9091)) +(: cnet_isa_60a3e183f5 (IsA confrontation disagreement) (STV 1.0 0.9091)) +(: cnet_isa_3b9c3b9195 (IsA confrontation discord) (STV 1.0 0.9091)) +(: cnet_isa_5b25756422 (IsA confucianism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_1d1f8d6061 (IsA confucianist believer) (STV 1.0 0.9091)) +(: cnet_isa_b483b2a085 (IsA confusion combination) (STV 1.0 0.9091)) +(: cnet_isa_4e94f5be36 (IsA confusion mistake) (STV 1.0 0.9091)) +(: cnet_isa_a2d5ce8b5d (IsA confusion cognitive_state) (STV 1.0 0.9091)) +(: cnet_isa_075fb6126d (IsA confusion embarrassment) (STV 1.0 0.9091)) +(: cnet_isa_cd6a7c58f5 (IsA confusion disorder) (STV 1.0 0.9091)) +(: cnet_isa_6a76517af1 (IsA confutation disproof) (STV 1.0 0.9091)) +(: cnet_isa_0695c97729 (IsA confutation refutation) (STV 1.0 0.9091)) +(: cnet_isa_b95f9ef7fe (IsA conga ballroom_dancing) (STV 1.0 0.9091)) +(: cnet_isa_b35ac0c3f6 (IsA conga dance_music) (STV 1.0 0.9091)) +(: cnet_isa_266646bf4e (IsA conga_line line) (STV 1.0 0.9091)) +(: cnet_isa_c5c6457d26 (IsA conge dismissal) (STV 1.0 0.9091)) +(: cnet_isa_0fb8a272db (IsA conge license) (STV 1.0 0.9091)) +(: cnet_isa_7ea5e9fa68 (IsA conge molding) (STV 1.0 0.9091)) +(: cnet_isa_f5708b3f7f (IsA congealment hardening) (STV 1.0 0.9091)) +(: cnet_isa_e5c85ba0df (IsA congee gruel) (STV 1.0 0.9091)) +(: cnet_isa_2b4a1b660c (IsA congener whole) (STV 1.0 0.9091)) +(: cnet_isa_41fd334612 (IsA congener chemical) (STV 1.0 0.9091)) +(: cnet_isa_c29625f827 (IsA congeniality friendliness) (STV 1.0 0.9091)) +(: cnet_isa_610f6a7f43 (IsA congenialness compatibility) (STV 1.0 0.9091)) +(: cnet_isa_454c1066b0 (IsA congenital_afibrinogenemia afibrinogenemia) (STV 1.0 0.9091)) +(: cnet_isa_f1b08336bf (IsA congenital_afibrinogenemia genetic_disease) (STV 1.0 0.9091)) +(: cnet_isa_7180c41210 (IsA congenital_heart_defect birth_defect) (STV 1.0 0.9091)) +(: cnet_isa_0f28b9296d (IsA conger eel) (STV 1.0 0.9091)) +(: cnet_isa_087dd1a734 (IsA congestion crowding) (STV 1.0 0.9091)) +(: cnet_isa_cb4814fe05 (IsA congestion symptom) (STV 1.0 0.9091)) +(: cnet_isa_0c3efd7238 (IsA congestive_heart_failure heart_failure) (STV 1.0 0.9091)) +(: cnet_isa_0944489bc6 (IsA conglomerate corporation) (STV 1.0 0.9091)) +(: cnet_isa_79f1eac7a3 (IsA conglomeration combining) (STV 1.0 0.9091)) +(: cnet_isa_25cbad9da2 (IsA conglomeration sphere) (STV 1.0 0.9091)) +(: cnet_isa_7ba76128eb (IsA congo_copal copal) (STV 1.0 0.9091)) +(: cnet_isa_aae9379818 (IsA congo_franc franc) (STV 1.0 0.9091)) +(: cnet_isa_961406346e (IsA congo_red acid_base_indicator) (STV 1.0 0.9091)) +(: cnet_isa_435c990d1b (IsA congo_red azo_dye) (STV 1.0 0.9091)) +(: cnet_isa_df68d265bf (IsA congolese african) (STV 1.0 0.9091)) +(: cnet_isa_4313a2be13 (IsA congou black_tea) (STV 1.0 0.9091)) +(: cnet_isa_2bccb5def1 (IsA congratulation expression) (STV 1.0 0.9091)) +(: cnet_isa_f444ad74df (IsA congratulation speech_act) (STV 1.0 0.9091)) +(: cnet_isa_3fbc64ba2b (IsA congregant churchgoer) (STV 1.0 0.9091)) +(: cnet_isa_750e557862 (IsA congregation assembly) (STV 1.0 0.9091)) +(: cnet_isa_f714645b07 (IsA congregation collection) (STV 1.0 0.9091)) +(: cnet_isa_b99d2ca08a (IsA congregation social_group) (STV 1.0 0.9091)) +(: cnet_isa_951f70240e (IsA congregational_christian_church protestant_denomination) (STV 1.0 0.9091)) +(: cnet_isa_64e21e3411 (IsA congregational_church protestant_denomination) (STV 1.0 0.9091)) +(: cnet_isa_791886da71 (IsA congregationalism protestantism) (STV 1.0 0.9091)) +(: cnet_isa_21c84d9675 (IsA congregationalist protestant) (STV 1.0 0.9091)) +(: cnet_isa_f92957fc4f (IsA congress legislature) (STV 1.0 0.9454)) +(: cnet_isa_8023396a83 (IsA congress meeting) (STV 1.0 0.9091)) +(: cnet_isa_46694e7e97 (IsA congress_boot shoe) (STV 1.0 0.9091)) +(: cnet_isa_0f7bf9f61e (IsA congress_of_industrial_organization federation) (STV 1.0 0.9091)) +(: cnet_isa_17d26c4a18 (IsA congress_of_racial_equality nongovernmental_organization) (STV 1.0 0.9091)) +(: cnet_isa_3c7022715c (IsA congressional_district district) (STV 1.0 0.9091)) +(: cnet_isa_39ab225ef5 (IsA congressional_record minute) (STV 1.0 0.9091)) +(: cnet_isa_87dd0a83c2 (IsA congressman member_of_congress) (STV 1.0 0.9339)) +(: cnet_isa_0c89329b17 (IsA congressman legislator) (STV 1.0 0.9091)) +(: cnet_isa_8d5af55d1f (IsA congridae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_7c7d8e9924 (IsA congruity harmony) (STV 1.0 0.9091)) +(: cnet_isa_39909eb4a3 (IsA conic_projection map_projection) (STV 1.0 0.9091)) +(: cnet_isa_8b8277019c (IsA conic_section plane_figure) (STV 1.0 0.9091)) +(: cnet_isa_5ce7933132 (IsA conical_buoy buoy) (STV 1.0 0.9091)) +(: cnet_isa_cfbea85f80 (IsA conidiophore hypha) (STV 1.0 0.9091)) +(: cnet_isa_806a5b2be6 (IsA conidium spore) (STV 1.0 0.9091)) +(: cnet_isa_f6a7620c0d (IsA conifer gymnospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_84177b58f4 (IsA coniferale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_98601d029d (IsA coniferopsida class) (STV 1.0 0.9091)) +(: cnet_isa_7e53c2c92e (IsA conilurus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_4f2614c906 (IsA conima gum) (STV 1.0 0.9091)) +(: cnet_isa_01002e80b8 (IsA coniogramme fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_1d350e1150 (IsA conium rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_fe9b7fd4ac (IsA conjecture reasoning) (STV 1.0 0.9091)) +(: cnet_isa_02cf389a78 (IsA conjoined_twin identical_twin) (STV 1.0 0.9091)) +(: cnet_isa_f4a5af3220 (IsA conjugal_right legal_right) (STV 1.0 0.9091)) +(: cnet_isa_97c11b1597 (IsA conjugal_visitation_right legal_right) (STV 1.0 0.9091)) +(: cnet_isa_5300243b3a (IsA conjugate_solution solution) (STV 1.0 0.9091)) +(: cnet_isa_5f214ed656 (IsA conjugated_protein protein) (STV 1.0 0.9091)) +(: cnet_isa_8dce49ad7d (IsA conjugation class) (STV 1.0 0.9091)) +(: cnet_isa_5400e454c1 (IsA conjugation set) (STV 1.0 0.9091)) +(: cnet_isa_c23d6eb6fa (IsA conjugation inflection) (STV 1.0 0.9091)) +(: cnet_isa_755a1523b1 (IsA conjunction meeting) (STV 1.0 0.9091)) +(: cnet_isa_6d830c940d (IsA conjunction function_word) (STV 1.0 0.9091)) +(: cnet_isa_733da481b2 (IsA conjunction grammatical_relation) (STV 1.0 0.9091)) +(: cnet_isa_9f9e2ebb0f (IsA conjunctiva mucous_membrane) (STV 1.0 0.9091)) +(: cnet_isa_710a8b7e18 (IsA conjunctival_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_235202bfd4 (IsA conjunctivitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_90e87d0704 (IsA conjuncture juncture) (STV 1.0 0.9091)) +(: cnet_isa_a02eeb165e (IsA conjurer witch_doctor) (STV 1.0 0.9091)) +(: cnet_isa_cc227d1a04 (IsA conjuring magic) (STV 1.0 0.9091)) +(: cnet_isa_ce0efc0b8e (IsA conk nose) (STV 1.0 0.9091)) +(: cnet_isa_2cb2b22192 (IsA conn_s_syndrome syndrome) (STV 1.0 0.9091)) +(: cnet_isa_8a70410955 (IsA connaraceae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_cd6322e8e8 (IsA connarus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_78d0f2c84d (IsA connarus_guianensis zebrawood) (STV 1.0 0.9091)) +(: cnet_isa_96a936d5bf (IsA connecticut state) (STV 1.0 0.9339)) +(: cnet_isa_2ad73894d1 (IsA connecticuter american) (STV 1.0 0.9091)) +(: cnet_isa_21a0a8ce23 (IsA connecting_flight flight) (STV 1.0 0.9091)) +(: cnet_isa_d1553e00bd (IsA connecting_rod rod) (STV 1.0 0.9091)) +(: cnet_isa_f15d082d86 (IsA connecting_room hotel_room) (STV 1.0 0.9091)) +(: cnet_isa_2876c04c74 (IsA connection transportation) (STV 1.0 0.9091)) +(: cnet_isa_f979672f0d (IsA connection instrumentality) (STV 1.0 0.9091)) +(: cnet_isa_cf98a0876a (IsA connection relation) (STV 1.0 0.9091)) +(: cnet_isa_58a07ba445 (IsA connection supplier) (STV 1.0 0.9091)) +(: cnet_isa_7364f678a5 (IsA connection acquaintance) (STV 1.0 0.9091)) +(: cnet_isa_d606aaa72e (IsA connection shape) (STV 1.0 0.9091)) +(: cnet_isa_9dd4b82c2d (IsA connection union) (STV 1.0 0.9091)) +(: cnet_isa_adb9f50e65 (IsA connective_tissue animal_tissue) (STV 1.0 0.9091)) +(: cnet_isa_3fea0c70c9 (IsA connectivity property) (STV 1.0 0.9091)) +(: cnet_isa_4279ca1d2f (IsA connemara_heath heath) (STV 1.0 0.9091)) +(: cnet_isa_baff72e7fa (IsA conning_tower bridge) (STV 1.0 0.9091)) +(: cnet_isa_47b27d5b7c (IsA conning_tower pilothouse) (STV 1.0 0.9091)) +(: cnet_isa_9b1004557c (IsA connivance agreement) (STV 1.0 0.9091)) +(: cnet_isa_42c6e2a009 (IsA connivance approval) (STV 1.0 0.9091)) +(: cnet_isa_7259e8dddc (IsA connochaete mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_37fb672ba3 (IsA connoisseur authority) (STV 1.0 0.9091)) +(: cnet_isa_10e23334eb (IsA connotation meaning) (STV 1.0 0.9091)) +(: cnet_isa_a94f432eb8 (IsA conocarpus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7aa05f4b49 (IsA conoclinium asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3955a6a69a (IsA conodont jawless_vertebrate) (STV 1.0 0.9091)) +(: cnet_isa_bcc04d1609 (IsA conodont tooth) (STV 1.0 0.9091)) +(: cnet_isa_2e3ed2093d (IsA conodonta animal_order) (STV 1.0 0.9091)) +(: cnet_isa_b75aff4dd2 (IsA conopodium rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_08c6ab0099 (IsA conospermum dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_878e042e7c (IsA conoy algonquin) (STV 1.0 0.9091)) +(: cnet_isa_3f617f82d6 (IsA conqueror victor) (STV 1.0 0.9091)) +(: cnet_isa_a5c152ad3c (IsA conquest capture) (STV 1.0 0.9091)) +(: cnet_isa_2fcd0a941f (IsA conquest success) (STV 1.0 0.9091)) +(: cnet_isa_e0fbb5e9d9 (IsA conquistador explorer) (STV 1.0 0.9091)) +(: cnet_isa_f89ec269d4 (IsA conradina asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5f03071265 (IsA consanguinity kinship) (STV 1.0 0.9091)) +(: cnet_isa_d8efbeab6d (IsA conscience morality) (STV 1.0 0.9091)) +(: cnet_isa_f10fbf3454 (IsA conscience shame) (STV 1.0 0.9091)) +(: cnet_isa_4d9631f4f7 (IsA conscience ethical_motive) (STV 1.0 0.9091)) +(: cnet_isa_493f8c4bc7 (IsA conscience_money payment) (STV 1.0 0.9091)) +(: cnet_isa_7e58b849da (IsA conscientious_objector dissenter) (STV 1.0 0.9091)) +(: cnet_isa_ec51661e2c (IsA conscientiousness carefulness) (STV 1.0 0.9091)) +(: cnet_isa_32d26ca1ab (IsA conscientiousness conscience) (STV 1.0 0.9091)) +(: cnet_isa_647e7885b3 (IsA consciousness cognitive_state) (STV 1.0 0.9091)) +(: cnet_isa_49f83302c5 (IsA conscription mobilization) (STV 1.0 0.9091)) +(: cnet_isa_9887ddda20 (IsA consecration commitment) (STV 1.0 0.9091)) +(: cnet_isa_a05c5d3439 (IsA consecration sanctification) (STV 1.0 0.9091)) +(: cnet_isa_5dbe7aaf36 (IsA consensus agreement) (STV 1.0 0.9091)) +(: cnet_isa_9d167a7fee (IsA consent permission) (STV 1.0 0.9091)) +(: cnet_isa_194e7f9c4d (IsA consent_decree decree) (STV 1.0 0.9091)) +(: cnet_isa_438d2167e2 (IsA consequence significance) (STV 1.0 0.9091)) +(: cnet_isa_c6f5f12b44 (IsA consequence result) (STV 1.0 0.9091)) +(: cnet_isa_c23a644362 (IsA consequence phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_4bda232a6a (IsA conservancy conservation) (STV 1.0 0.9091)) +(: cnet_isa_5537ce4950 (IsA conservancy committee) (STV 1.0 0.9091)) +(: cnet_isa_391d1e7f58 (IsA conservation preservation) (STV 1.0 0.9091)) +(: cnet_isa_0883b6e8eb (IsA conservation improvement) (STV 1.0 0.9091)) +(: cnet_isa_36f5687e1e (IsA conservation principle) (STV 1.0 0.9091)) +(: cnet_isa_663be3484c (IsA conservation_of_charge conservation) (STV 1.0 0.9091)) +(: cnet_isa_b90a8dbdb7 (IsA conservation_of_energy conservation) (STV 1.0 0.9091)) +(: cnet_isa_b0bb3ebb35 (IsA conservation_of_energy law_of_thermodynamic) (STV 1.0 0.9091)) +(: cnet_isa_883248b733 (IsA conservation_of_mass conservation) (STV 1.0 0.9091)) +(: cnet_isa_e3fb899b76 (IsA conservation_of_momentum conservation) (STV 1.0 0.9091)) +(: cnet_isa_fbfde57346 (IsA conservatism political_ideology) (STV 1.0 0.9091)) +(: cnet_isa_331632121d (IsA conservatism political_philosophy) (STV 1.0 0.9091)) +(: cnet_isa_71c99e2857 (IsA conservatism political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_8a8d1aa1a8 (IsA conservative adult) (STV 1.0 0.9091)) +(: cnet_isa_011d90dda2 (IsA conservative member) (STV 1.0 0.9091)) +(: cnet_isa_74f3888340 (IsA conservative_jew israelite) (STV 1.0 0.9091)) +(: cnet_isa_6fb34a71c2 (IsA conservative_judaism judaism) (STV 1.0 0.9091)) +(: cnet_isa_dcb17c852a (IsA conservative_party party) (STV 1.0 0.9091)) +(: cnet_isa_70362407f5 (IsA conservator fiduciary) (STV 1.0 0.9091)) +(: cnet_isa_8e829d1a2b (IsA conservator_ward_relation fiduciary_relation) (STV 1.0 0.9091)) +(: cnet_isa_2899072fca (IsA conservatory greenhouse) (STV 1.0 0.9091)) +(: cnet_isa_8cadd529c6 (IsA conservatory school) (STV 1.0 0.9091)) +(: cnet_isa_e4cf5ff312 (IsA conserve confiture) (STV 1.0 0.9091)) +(: cnet_isa_52004c6d93 (IsA consideration kindness) (STV 1.0 0.9091)) +(: cnet_isa_0b28fafb78 (IsA consideration thinking) (STV 1.0 0.9091)) +(: cnet_isa_73c9949ce3 (IsA consideration discussion) (STV 1.0 0.9091)) +(: cnet_isa_0da64ee864 (IsA consignee recipient) (STV 1.0 0.9091)) +(: cnet_isa_65dd25259b (IsA consigner shipper) (STV 1.0 0.9091)) +(: cnet_isa_66494888f4 (IsA consignment delivery) (STV 1.0 0.9091)) +(: cnet_isa_6388a21717 (IsA consistency property) (STV 1.0 0.9091)) +(: cnet_isa_b37e022a89 (IsA consistency uniformity) (STV 1.0 0.9091)) +(: cnet_isa_8878727761 (IsA consistency logicality) (STV 1.0 0.9091)) +(: cnet_isa_aaaaae77c4 (IsA consistency coherence) (STV 1.0 0.9091)) +(: cnet_isa_d911796914 (IsA consistory court) (STV 1.0 0.9091)) +(: cnet_isa_7470ffe3fc (IsA consolation relief) (STV 1.0 0.9091)) +(: cnet_isa_b5dc64d882 (IsA consolation comfort) (STV 1.0 0.9091)) +(: cnet_isa_7046f3253e (IsA console bracket) (STV 1.0 0.9091)) +(: cnet_isa_1d1ed4736c (IsA console scientific_instrument) (STV 1.0 0.9091)) +(: cnet_isa_23df0885ce (IsA console_table table) (STV 1.0 0.9091)) +(: cnet_isa_b5b06138e2 (IsA consolida magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_167c4e5345 (IsA consolidation combination) (STV 1.0 0.9091)) +(: cnet_isa_52a44305a7 (IsA consolidation combining) (STV 1.0 0.9091)) +(: cnet_isa_873a93661d (IsA consolidation natural_object) (STV 1.0 0.9091)) +(: cnet_isa_f2c6ee9bfb (IsA consomme soup) (STV 1.0 0.9091)) +(: cnet_isa_0918e6c2b9 (IsA consonance harmony) (STV 1.0 0.9091)) +(: cnet_isa_2eafbb2aa4 (IsA consonance rhyme) (STV 1.0 0.9091)) +(: cnet_isa_73381848d1 (IsA consonant letter) (STV 1.0 0.9091)) +(: cnet_isa_339b941e7e (IsA consonant phone) (STV 1.0 0.9091)) +(: cnet_isa_32b8db7ba5 (IsA consonant_system phonemic_system) (STV 1.0 0.9091)) +(: cnet_isa_e870bf4d4b (IsA consort spouse) (STV 1.0 0.9091)) +(: cnet_isa_c0588e6fdd (IsA consortium association) (STV 1.0 0.9091)) +(: cnet_isa_e9d6581a3e (IsA conspecific organism) (STV 1.0 0.9091)) +(: cnet_isa_7d648c5a75 (IsA conspectus summary) (STV 1.0 0.9091)) +(: cnet_isa_0fdffa017d (IsA conspicuous_consumption consumption) (STV 1.0 0.9091)) +(: cnet_isa_bb079f08d6 (IsA conspicuousness visibility) (STV 1.0 0.9091)) +(: cnet_isa_34b4f27256 (IsA conspicuousness salience) (STV 1.0 0.9091)) +(: cnet_isa_61d5ff13c0 (IsA conspiracy agreement) (STV 1.0 0.9091)) +(: cnet_isa_0f5802ecb2 (IsA conspiracy set) (STV 1.0 0.9091)) +(: cnet_isa_e5378cb590 (IsA conspiracy plot) (STV 1.0 0.9091)) +(: cnet_isa_8507af79b9 (IsA conspiracy_of_silence conspiracy) (STV 1.0 0.9091)) +(: cnet_isa_b4e2fe08ef (IsA conspirator criminal) (STV 1.0 0.9091)) +(: cnet_isa_f793ce7df5 (IsA constable lawman) (STV 1.0 0.9091)) +(: cnet_isa_48d0e449b0 (IsA constable policeman) (STV 1.0 0.9091)) +(: cnet_isa_fa12cd25d4 (IsA constancy changelessness) (STV 1.0 0.9091)) +(: cnet_isa_b8694d9c05 (IsA constancy fidelity) (STV 1.0 0.9091)) +(: cnet_isa_f920f5f49a (IsA constancy perception) (STV 1.0 0.9091)) +(: cnet_isa_0afcf8c4ab (IsA constant quantity) (STV 1.0 0.9091)) +(: cnet_isa_5feba9f8e8 (IsA constant number) (STV 1.0 0.9091)) +(: cnet_isa_a0ca02d31c (IsA constantan copper_base_alloy) (STV 1.0 0.9091)) +(: cnet_isa_f3825f4200 (IsA constellation natural_object) (STV 1.0 0.9091)) +(: cnet_isa_6e2f66fc04 (IsA constipation symptom) (STV 1.0 0.9091)) +(: cnet_isa_111e14b05a (IsA constituency body) (STV 1.0 0.9091)) +(: cnet_isa_3bf9b1d891 (IsA constituent syntagma) (STV 1.0 0.9091)) +(: cnet_isa_a8b746ec20 (IsA constituent voter) (STV 1.0 0.9091)) +(: cnet_isa_89904e9d17 (IsA constitution beginning) (STV 1.0 0.9091)) +(: cnet_isa_a6f58dc453 (IsA constitution property) (STV 1.0 0.9091)) +(: cnet_isa_50b2e8c4c1 (IsA constitutional walk) (STV 1.0 0.9091)) +(: cnet_isa_a1539c75ed (IsA constitutional_convention convention) (STV 1.0 0.9091)) +(: cnet_isa_dfad33c53e (IsA constitutional_union_party party) (STV 1.0 0.9091)) +(: cnet_isa_2b4c83115f (IsA constitutionalism political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_4446d384bc (IsA constitutionalism political_system) (STV 1.0 0.9091)) +(: cnet_isa_26946a5547 (IsA constitutionalist advocate) (STV 1.0 0.9091)) +(: cnet_isa_453fd2837f (IsA constraint restriction) (STV 1.0 0.9091)) +(: cnet_isa_265ea450b6 (IsA constraint confinement) (STV 1.0 0.9091)) +(: cnet_isa_075215a702 (IsA constriction compression) (STV 1.0 0.9091)) +(: cnet_isa_1f86f0896b (IsA constriction feeling) (STV 1.0 0.9091)) +(: cnet_isa_ff8b8c8a33 (IsA constriction narrowing) (STV 1.0 0.9091)) +(: cnet_isa_acda986870 (IsA constrictor snake) (STV 1.0 0.9091)) +(: cnet_isa_281caa74dd (IsA construal interpretation) (STV 1.0 0.9091)) +(: cnet_isa_898c81af09 (IsA construction commercial_enterprise) (STV 1.0 0.9091)) +(: cnet_isa_4bf1438e95 (IsA construction creating_from_raw_material) (STV 1.0 0.9091)) +(: cnet_isa_50678d289f (IsA construction mathematical_process) (STV 1.0 0.9091)) +(: cnet_isa_fc576c97cd (IsA construction thinking) (STV 1.0 0.9091)) +(: cnet_isa_3c34b032d5 (IsA construction constituent) (STV 1.0 0.9091)) +(: cnet_isa_11db6b1cc5 (IsA construction interpretation) (STV 1.0 0.9091)) +(: cnet_isa_076dbe2a1c (IsA construction_industry industry) (STV 1.0 0.9091)) +(: cnet_isa_5aa7c3e62d (IsA construction_paper paper) (STV 1.0 0.9091)) +(: cnet_isa_5afd7ebd60 (IsA construction_worker craftsman) (STV 1.0 0.9091)) +(: cnet_isa_6addc4adaa (IsA constructive_fraud fraud) (STV 1.0 0.9091)) +(: cnet_isa_86300df913 (IsA constructive_possession possession) (STV 1.0 0.9091)) +(: cnet_isa_87a8cc2da6 (IsA constructive_trust implied_trust) (STV 1.0 0.9091)) +(: cnet_isa_c6261a94a1 (IsA constructiveness quality) (STV 1.0 0.9091)) +(: cnet_isa_17a11929f2 (IsA constructivism artistic_movement) (STV 1.0 0.9091)) +(: cnet_isa_68f68c4b12 (IsA constructivist artist) (STV 1.0 0.9091)) +(: cnet_isa_072c14461c (IsA consubstantiation theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_11b6ffe980 (IsA consuetude custom) (STV 1.0 0.9091)) +(: cnet_isa_801cf4d3a9 (IsA consuetudinary manual) (STV 1.0 0.9091)) +(: cnet_isa_26981dc3dc (IsA consul diplomat) (STV 1.0 0.9091)) +(: cnet_isa_98270efe09 (IsA consulate diplomatic_building) (STV 1.0 0.9091)) +(: cnet_isa_91cd2dd224 (IsA consulship position) (STV 1.0 0.9091)) +(: cnet_isa_79f9c7fc52 (IsA consultancy practice) (STV 1.0 0.9091)) +(: cnet_isa_668c4393a4 (IsA consultation conference) (STV 1.0 0.9091)) +(: cnet_isa_ef489442e3 (IsA consulting_firm firm) (STV 1.0 0.9091)) +(: cnet_isa_6c3338b7f1 (IsA consulting_service service) (STV 1.0 0.9091)) +(: cnet_isa_a89d583141 (IsA consumer user) (STV 1.0 0.9091)) +(: cnet_isa_a712580c37 (IsA consumer_credit credit_line) (STV 1.0 0.9091)) +(: cnet_isa_ddab50712b (IsA consumer_finance_company finance_company) (STV 1.0 0.9091)) +(: cnet_isa_2efb1a760a (IsA consumer_good commodity) (STV 1.0 0.9091)) +(: cnet_isa_85ad2983a2 (IsA consumer_price_index price_index) (STV 1.0 0.9091)) +(: cnet_isa_5c317aa905 (IsA consumer_research marketing_research) (STV 1.0 0.9091)) +(: cnet_isa_024ae7964f (IsA consumerism global_evil) (STV 1.0 0.9091)) +(: cnet_isa_2c88e1987e (IsA consumerism campaign) (STV 1.0 0.9091)) +(: cnet_isa_3f2f4a12c8 (IsA consumerism economic_theory) (STV 1.0 0.9091)) +(: cnet_isa_c29174a490 (IsA consummation completion) (STV 1.0 0.9091)) +(: cnet_isa_26c850e375 (IsA consumption bodily_process) (STV 1.0 0.9091)) +(: cnet_isa_d9d41a5302 (IsA consumption depletion) (STV 1.0 0.9091)) +(: cnet_isa_04fd15aeaa (IsA consumption demand) (STV 1.0 0.9091)) +(: cnet_isa_a14abcd83d (IsA consumptive sick_person) (STV 1.0 0.9091)) +(: cnet_isa_3994af14a7 (IsA contact interaction) (STV 1.0 0.9091)) +(: cnet_isa_e207cdcac8 (IsA contact touch) (STV 1.0 0.9091)) +(: cnet_isa_e4d13be4f8 (IsA contact len) (STV 1.0 0.9091)) +(: cnet_isa_65b196fd6e (IsA contact communication) (STV 1.0 0.9091)) +(: cnet_isa_b4c5d47a8c (IsA contact junction) (STV 1.0 0.9091)) +(: cnet_isa_03153d1d6e (IsA contact happening) (STV 1.0 0.9091)) +(: cnet_isa_d28e75e5ed (IsA contact representative) (STV 1.0 0.9091)) +(: cnet_isa_69445491e8 (IsA contact connection) (STV 1.0 0.9091)) +(: cnet_isa_1e26b45947 (IsA contact_dermatitis dermatitis) (STV 1.0 0.9091)) +(: cnet_isa_50d1e17ec9 (IsA contact_lens alternative_to_wearing_glass) (STV 1.0 0.9091)) +(: cnet_isa_ee0d4e93f5 (IsA contact_microphone microphone) (STV 1.0 0.9091)) +(: cnet_isa_14dea96e71 (IsA contact_print print) (STV 1.0 0.9091)) +(: cnet_isa_dcce277470 (IsA contact_sport sport) (STV 1.0 0.9091)) +(: cnet_isa_67eacce1e2 (IsA contadino farmer) (STV 1.0 0.9091)) +(: cnet_isa_8d3114b1d2 (IsA contagion communication) (STV 1.0 0.9091)) +(: cnet_isa_763b03ccf5 (IsA contagious_disease communicable_disease) (STV 1.0 0.9091)) +(: cnet_isa_83a828cef7 (IsA container instrumentality) (STV 1.0 0.9091)) +(: cnet_isa_a5f9712b40 (IsA container_ship cargo_ship) (STV 1.0 0.9091)) +(: cnet_isa_84e37f4390 (IsA containerful indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_32d72a803b (IsA containment restraint) (STV 1.0 0.9091)) +(: cnet_isa_94363cf4a2 (IsA containment policy) (STV 1.0 0.9091)) +(: cnet_isa_5a76b81f50 (IsA containment system) (STV 1.0 0.9091)) +(: cnet_isa_24210992dd (IsA contaminant material) (STV 1.0 0.9091)) +(: cnet_isa_acc21ea9de (IsA contamination soiling) (STV 1.0 0.9091)) +(: cnet_isa_6a159733f7 (IsA contamination impurity) (STV 1.0 0.9091)) +(: cnet_isa_1ce0d5fec6 (IsA contemplation stare) (STV 1.0 0.9091)) +(: cnet_isa_1fd4ddc068 (IsA contemplation consideration) (STV 1.0 0.9091)) +(: cnet_isa_af8d6c4943 (IsA contemplative person) (STV 1.0 0.9091)) +(: cnet_isa_9ae2157c4d (IsA contemporaneity concurrence) (STV 1.0 0.9091)) +(: cnet_isa_a5c486b7ac (IsA contemporary peer) (STV 1.0 0.9091)) +(: cnet_isa_318235b3f0 (IsA contempt discourtesy) (STV 1.0 0.9091)) +(: cnet_isa_028ae1365d (IsA contempt disrespect) (STV 1.0 0.9091)) +(: cnet_isa_e7572bf6b3 (IsA contempt dislike) (STV 1.0 0.9091)) +(: cnet_isa_e6f17914c9 (IsA contempt disobedience) (STV 1.0 0.9091)) +(: cnet_isa_3fa0f406e0 (IsA contempt_of_congress contempt) (STV 1.0 0.9091)) +(: cnet_isa_20e2291d9e (IsA contempt_of_court contempt) (STV 1.0 0.9091)) +(: cnet_isa_d208f04b10 (IsA contemptuousness arrogance) (STV 1.0 0.9091)) +(: cnet_isa_a440db094a (IsA content cognition) (STV 1.0 0.9091)) +(: cnet_isa_c1dae8207d (IsA content collection) (STV 1.0 0.9091)) +(: cnet_isa_02e15a3e82 (IsA content proportion) (STV 1.0 0.9091)) +(: cnet_isa_da5b48e343 (IsA content_management_system management_system) (STV 1.0 0.9091)) +(: cnet_isa_194b8e0844 (IsA content_word word) (STV 1.0 0.9091)) +(: cnet_isa_2b728a5b93 (IsA contentedness acceptance) (STV 1.0 0.9091)) +(: cnet_isa_234ff972f3 (IsA contention assertion) (STV 1.0 0.9091)) +(: cnet_isa_76951e0fbf (IsA contentiousness disagreeableness) (STV 1.0 0.9091)) +(: cnet_isa_7922c725a5 (IsA contentment good_feeling) (STV 1.0 0.9091)) +(: cnet_isa_05c5393a4e (IsA contentment happiness) (STV 1.0 0.9091)) +(: cnet_isa_680c9a067c (IsA content list) (STV 1.0 0.9091)) +(: cnet_isa_f5fe6ce74a (IsA content table) (STV 1.0 0.9091)) +(: cnet_isa_2f3bfafc9f (IsA contest competition) (STV 1.0 0.9091)) +(: cnet_isa_aae07bed65 (IsA contest social_event) (STV 1.0 0.9091)) +(: cnet_isa_84741e0216 (IsA contestant person) (STV 1.0 0.9091)) +(: cnet_isa_98d7268deb (IsA contestee winner) (STV 1.0 0.9091)) +(: cnet_isa_588c9e695f (IsA contester disputant) (STV 1.0 0.9091)) +(: cnet_isa_bb0942b4ff (IsA context discourse) (STV 1.0 0.9091)) +(: cnet_isa_c88dd86f49 (IsA context environment) (STV 1.0 0.9091)) +(: cnet_isa_9dc5f80f28 (IsA contextual_definition definition) (STV 1.0 0.9091)) +(: cnet_isa_7eb84d0bd7 (IsA contextualism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_f08bff95d1 (IsA continence restraint) (STV 1.0 0.9091)) +(: cnet_isa_5ed1c43b45 (IsA continence self_discipline) (STV 1.0 0.9091)) +(: cnet_isa_7b9ffa08a8 (IsA continent landmass) (STV 1.0 0.9091)) +(: cnet_isa_79492652e2 (IsA continental_army army) (STV 1.0 0.9091)) +(: cnet_isa_e37f0179a8 (IsA continental_breakfast breakfast) (STV 1.0 0.9091)) +(: cnet_isa_4ddb82a5e2 (IsA continental_congress congress) (STV 1.0 0.9091)) +(: cnet_isa_93127255b9 (IsA continental_divide watershed) (STV 1.0 0.9091)) +(: cnet_isa_c3a9c111fc (IsA continental_drift geological_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_1b02813c6e (IsA continental_glacier glacier) (STV 1.0 0.9091)) +(: cnet_isa_c2a3d644a5 (IsA continental_shelf ocean_floor) (STV 1.0 0.9091)) +(: cnet_isa_6a430f5387 (IsA continental_slope ocean_floor) (STV 1.0 0.9091)) +(: cnet_isa_712cdcef20 (IsA contingency dependence) (STV 1.0 0.9091)) +(: cnet_isa_c8af4570c1 (IsA contingency_fee fee) (STV 1.0 0.9091)) +(: cnet_isa_dbe7b56af9 (IsA contingency_procedure routine) (STV 1.0 0.9091)) +(: cnet_isa_b5cd5d048f (IsA contingent gathering) (STV 1.0 0.9091)) +(: cnet_isa_619950fc1a (IsA contingent military_unit) (STV 1.0 0.9091)) +(: cnet_isa_d269f34283 (IsA continuance activity) (STV 1.0 0.9091)) +(: cnet_isa_1872cee660 (IsA continuant_consonant obstruent) (STV 1.0 0.9091)) +(: cnet_isa_c8463432f9 (IsA continued_fraction fraction) (STV 1.0 0.9091)) +(: cnet_isa_61edd52d97 (IsA continuing_education education) (STV 1.0 0.9091)) +(: cnet_isa_1239c25bb7 (IsA continuing_trespass trespass) (STV 1.0 0.9091)) +(: cnet_isa_5a55965ba6 (IsA continuity lastingness) (STV 1.0 0.9091)) +(: cnet_isa_334f8b7f9b (IsA continuity script) (STV 1.0 0.9091)) +(: cnet_isa_4a8373b22b (IsA continuity coherence) (STV 1.0 0.9091)) +(: cnet_isa_03166b727d (IsA continuous_creation_theory scientific_theory) (STV 1.0 0.9091)) +(: cnet_isa_cd4e668061 (IsA continuousness endlessness) (STV 1.0 0.9091)) +(: cnet_isa_7df64a9344 (IsA continuum time) (STV 1.0 0.9091)) +(: cnet_isa_a87b94f85d (IsA conto portuguese_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_c987454ea7 (IsA contopus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_61c84a8632 (IsA contortion change_of_shape) (STV 1.0 0.9091)) +(: cnet_isa_2a978def59 (IsA contortionist acrobat) (STV 1.0 0.9091)) +(: cnet_isa_7b2b61f3fa (IsA contour feature) (STV 1.0 0.9091)) +(: cnet_isa_787135f7e9 (IsA contour isometric_line) (STV 1.0 0.9091)) +(: cnet_isa_59742dea33 (IsA contour_feather feather) (STV 1.0 0.9091)) +(: cnet_isa_7ecab26167 (IsA contour_language tone_language) (STV 1.0 0.9091)) +(: cnet_isa_99b51c7859 (IsA contour_map map) (STV 1.0 0.9091)) +(: cnet_isa_cec2681cb0 (IsA contra nicaraguan) (STV 1.0 0.9091)) +(: cnet_isa_0e5c3f50e9 (IsA contraband merchandise) (STV 1.0 0.9091)) +(: cnet_isa_69c6f33ad2 (IsA contrabassoon bassoon) (STV 1.0 0.9091)) +(: cnet_isa_ca939f9703 (IsA contraception birth_control) (STV 1.0 0.9091)) +(: cnet_isa_9929c4c5ff (IsA contraceptive device) (STV 1.0 0.9091)) +(: cnet_isa_5d2d9e400e (IsA contraceptive pill) (STV 1.0 0.9091)) +(: cnet_isa_0e24759c0c (IsA contract agreement_enforceable_at_law) (STV 1.0 0.9339)) +(: cnet_isa_2227209911 (IsA contract bridge) (STV 1.0 0.9091)) +(: cnet_isa_2465dc6038 (IsA contract written_agreement) (STV 1.0 0.9091)) +(: cnet_isa_25b1e5fa8b (IsA contract bid) (STV 1.0 0.9091)) +(: cnet_isa_b184a5b4d4 (IsA contract_killing murder) (STV 1.0 0.9091)) +(: cnet_isa_98e55aa62c (IsA contract_law jurisprudence) (STV 1.0 0.9091)) +(: cnet_isa_ab4c10fbcc (IsA contract_offer offer) (STV 1.0 0.9091)) +(: cnet_isa_97f16e832d (IsA contractile_organ organ) (STV 1.0 0.9091)) +(: cnet_isa_bcd293f5b5 (IsA contractility ability) (STV 1.0 0.9091)) +(: cnet_isa_b3c8e17d24 (IsA contraction decrease) (STV 1.0 0.9091)) +(: cnet_isa_3291cc0615 (IsA contraction word) (STV 1.0 0.9091)) +(: cnet_isa_f2a448afb4 (IsA contraction shortening) (STV 1.0 0.9091)) +(: cnet_isa_887a505fc0 (IsA contractor party) (STV 1.0 0.9091)) +(: cnet_isa_df9490d82b (IsA contractor bridge_player) (STV 1.0 0.9091)) +(: cnet_isa_e991137c7c (IsA contractor builder) (STV 1.0 0.9091)) +(: cnet_isa_ab048032d7 (IsA contracture contraction) (STV 1.0 0.9091)) +(: cnet_isa_61830ad5e8 (IsA contradiction negation) (STV 1.0 0.9091)) +(: cnet_isa_94a515a01d (IsA contradiction opposition) (STV 1.0 0.9091)) +(: cnet_isa_bbb0e9cc6b (IsA contradiction falsehood) (STV 1.0 0.9091)) +(: cnet_isa_12d34260b4 (IsA contradictoriness opposition) (STV 1.0 0.9091)) +(: cnet_isa_5ef2995516 (IsA contradictory logical_relation) (STV 1.0 0.9091)) +(: cnet_isa_7d62af2fb0 (IsA contradistinction differentiation) (STV 1.0 0.9091)) +(: cnet_isa_85ef8279cd (IsA contrail cloud) (STV 1.0 0.9091)) +(: cnet_isa_65e7392496 (IsA contraindication reason) (STV 1.0 0.9091)) +(: cnet_isa_4645a2a8fb (IsA contralto singing_voice) (STV 1.0 0.9091)) +(: cnet_isa_7710ee334c (IsA contralto singer) (STV 1.0 0.9091)) +(: cnet_isa_e12af75e9b (IsA contrapuntist composer) (STV 1.0 0.9091)) +(: cnet_isa_8ebf6c0ac8 (IsA contrarian investor) (STV 1.0 0.9091)) +(: cnet_isa_cc63ad5035 (IsA contrariety opposition) (STV 1.0 0.9091)) +(: cnet_isa_f1785204b9 (IsA contrariness unruliness) (STV 1.0 0.9091)) +(: cnet_isa_9da7654d07 (IsA contrary logical_relation) (STV 1.0 0.9091)) +(: cnet_isa_fd9403305e (IsA contrary opposition) (STV 1.0 0.9091)) +(: cnet_isa_90a7703bb4 (IsA contrast comparison) (STV 1.0 0.9091)) +(: cnet_isa_b21e4a8b04 (IsA contrast visual_perception) (STV 1.0 0.9091)) +(: cnet_isa_1c78f8d412 (IsA contrast opposition) (STV 1.0 0.9091)) +(: cnet_isa_389028f469 (IsA contrast scope) (STV 1.0 0.9091)) +(: cnet_isa_1e926e9de9 (IsA contrast_medium medium) (STV 1.0 0.9091)) +(: cnet_isa_289d287d6e (IsA contretemp brush) (STV 1.0 0.9091)) +(: cnet_isa_b7ec9605f0 (IsA contribution attempt) (STV 1.0 0.9091)) +(: cnet_isa_77aa1083df (IsA contribution giving) (STV 1.0 0.9091)) +(: cnet_isa_d5fa3478ea (IsA contribution publication) (STV 1.0 0.9091)) +(: cnet_isa_9b4c0d96ce (IsA contribution gift) (STV 1.0 0.9091)) +(: cnet_isa_987b165505 (IsA contribution sum) (STV 1.0 0.9091)) +(: cnet_isa_8ef3e869e4 (IsA contributor writer) (STV 1.0 0.9091)) +(: cnet_isa_cd3c6c9c02 (IsA contributory_negligence negligence) (STV 1.0 0.9091)) +(: cnet_isa_802e4f3996 (IsA contrivance arrangement) (STV 1.0 0.9091)) +(: cnet_isa_42937bc11a (IsA contrivance invention) (STV 1.0 0.9091)) +(: cnet_isa_7325d9d95c (IsA contrivance scheme) (STV 1.0 0.9091)) +(: cnet_isa_53f37747d6 (IsA control activity) (STV 1.0 0.9091)) +(: cnet_isa_974cd712ac (IsA control mechanism) (STV 1.0 0.9091)) +(: cnet_isa_15a4fb63ef (IsA control power) (STV 1.0 0.9091)) +(: cnet_isa_5a407df5b7 (IsA control economic_policy) (STV 1.0 0.9091)) +(: cnet_isa_1eac404178 (IsA control relation) (STV 1.0 0.9091)) +(: cnet_isa_17b26def9a (IsA control spirit) (STV 1.0 0.9091)) +(: cnet_isa_0ce093f21d (IsA control bodily_process) (STV 1.0 0.9091)) +(: cnet_isa_69a34c94bb (IsA control_account accounting) (STV 1.0 0.9091)) +(: cnet_isa_d0d574d6eb (IsA control_center center) (STV 1.0 0.9091)) +(: cnet_isa_947c2d7608 (IsA control_character ascii_character) (STV 1.0 0.9091)) +(: cnet_isa_cc943f8b6c (IsA control_circuit feedback_circuit) (STV 1.0 0.9091)) +(: cnet_isa_86aa9c1878 (IsA control_condition criterion) (STV 1.0 0.9091)) +(: cnet_isa_db72a4093e (IsA control_experiment experiment) (STV 1.0 0.9091)) +(: cnet_isa_55a1e6b304 (IsA control_freak compulsive) (STV 1.0 0.9091)) +(: cnet_isa_c722fed41e (IsA control_key key) (STV 1.0 0.9091)) +(: cnet_isa_5c6cc6f157 (IsA control_operation operation) (STV 1.0 0.9091)) +(: cnet_isa_01e33d5e81 (IsA control_panel electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_77ee0e61ba (IsA control_rod rod) (STV 1.0 0.9091)) +(: cnet_isa_a743593369 (IsA control_room room) (STV 1.0 0.9091)) +(: cnet_isa_47ef8d1ca2 (IsA control_stock stock) (STV 1.0 0.9091)) +(: cnet_isa_95e92979e4 (IsA control_system system) (STV 1.0 0.9091)) +(: cnet_isa_46a9a2b276 (IsA control_tower tower) (STV 1.0 0.9091)) +(: cnet_isa_b82ca3620a (IsA controlled_substance drug) (STV 1.0 0.9091)) +(: cnet_isa_f77833ec01 (IsA controllership position) (STV 1.0 0.9091)) +(: cnet_isa_4bdb89160e (IsA controlling_interest interest) (STV 1.0 0.9091)) +(: cnet_isa_c71b495b14 (IsA controversy dispute) (STV 1.0 0.9091)) +(: cnet_isa_db0e58ebc9 (IsA contumacy insubordination) (STV 1.0 0.9091)) +(: cnet_isa_d253439653 (IsA contumacy disobedience) (STV 1.0 0.9091)) +(: cnet_isa_2597b37e82 (IsA contusion hit) (STV 1.0 0.9091)) +(: cnet_isa_b6d3c56bb6 (IsA conurbation urban_area) (STV 1.0 0.9091)) +(: cnet_isa_af32a28be9 (IsA conuropsis bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_bb0de31b98 (IsA convalescence healing) (STV 1.0 0.9091)) +(: cnet_isa_a837c67b2f (IsA convalescent sick_person) (STV 1.0 0.9091)) +(: cnet_isa_8b3fc760ea (IsA convallaria liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_62fc5ef309 (IsA convallariaceae liliid_monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_4453c4e61a (IsA convection natural_process) (STV 1.0 0.9091)) +(: cnet_isa_b9b2aa09d0 (IsA convection temperature_change) (STV 1.0 0.9091)) +(: cnet_isa_ce1b01bece (IsA convector heater) (STV 1.0 0.9091)) +(: cnet_isa_dbc3692f8d (IsA convener caller) (STV 1.0 0.9091)) +(: cnet_isa_3710af25dc (IsA convenience suitability) (STV 1.0 0.9091)) +(: cnet_isa_254dcb198f (IsA convenience comfort) (STV 1.0 0.9091)) +(: cnet_isa_c20681b95e (IsA convenience_food food) (STV 1.0 0.9091)) +(: cnet_isa_c2edfbd920 (IsA convenience_store shop) (STV 1.0 0.9091)) +(: cnet_isa_1c28d81f34 (IsA convent religious_residence) (STV 1.0 0.9091)) +(: cnet_isa_bd1ce60279 (IsA convent community) (STV 1.0 0.9091)) +(: cnet_isa_65b9f335aa (IsA conventicle place_of_worship) (STV 1.0 0.9091)) +(: cnet_isa_441f84a7a2 (IsA conventicle meeting) (STV 1.0 0.9091)) +(: cnet_isa_23fdf3c1e0 (IsA convention assembly) (STV 1.0 0.9091)) +(: cnet_isa_4c70776f24 (IsA convention practice) (STV 1.0 0.9091)) +(: cnet_isa_33315b43d3 (IsA convention treaty) (STV 1.0 0.9091)) +(: cnet_isa_fc7a615b3f (IsA convention meeting) (STV 1.0 0.9091)) +(: cnet_isa_249f8e661e (IsA conventionality orthodoxy) (STV 1.0 0.9091)) +(: cnet_isa_de2a270b3d (IsA conventionality conformity) (STV 1.0 0.9091)) +(: cnet_isa_156ad8a142 (IsA conventionality unoriginality) (STV 1.0 0.9091)) +(: cnet_isa_f1e399ed3f (IsA conventionalization stylization) (STV 1.0 0.9091)) +(: cnet_isa_077a408ec3 (IsA conventioneer attendant) (STV 1.0 0.9091)) +(: cnet_isa_39fce36732 (IsA convergence joining) (STV 1.0 0.9091)) +(: cnet_isa_198bddb84a (IsA convergence sery) (STV 1.0 0.9091)) +(: cnet_isa_449a0d345c (IsA convergence happening) (STV 1.0 0.9091)) +(: cnet_isa_10ebb18d04 (IsA convergent_thinking thinking) (STV 1.0 0.9091)) +(: cnet_isa_cfff51bf83 (IsA converging_len len) (STV 1.0 0.9091)) +(: cnet_isa_d245760ab2 (IsA conversation speech) (STV 1.0 0.9091)) +(: cnet_isa_98d42e5fce (IsA conversation_piece center) (STV 1.0 0.9091)) +(: cnet_isa_a06bcad0b9 (IsA conversation_stopper remark) (STV 1.0 0.9091)) +(: cnet_isa_e000d638f7 (IsA conversationalist speaker) (STV 1.0 0.9091)) +(: cnet_isa_e534cfe9a2 (IsA converse proposition) (STV 1.0 0.9091)) +(: cnet_isa_f086297cad (IsA conversion change) (STV 1.0 0.9091)) +(: cnet_isa_74ac69effa (IsA conversion exchange) (STV 1.0 0.9091)) +(: cnet_isa_69894f1680 (IsA conversion redemption) (STV 1.0 0.9091)) +(: cnet_isa_369dd13297 (IsA conversion score) (STV 1.0 0.9091)) +(: cnet_isa_d93493dda3 (IsA conversion calculation) (STV 1.0 0.9091)) +(: cnet_isa_f72509e579 (IsA conversion rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_37dd26241b (IsA conversion transformation) (STV 1.0 0.9091)) +(: cnet_isa_bb02c1daf3 (IsA conversion defense_mechanism) (STV 1.0 0.9091)) +(: cnet_isa_f8439c4d91 (IsA conversion_disorder mental_disorder) (STV 1.0 0.9091)) +(: cnet_isa_325997c27c (IsA conversion_factor factor) (STV 1.0 0.9091)) +(: cnet_isa_cf63bd10fc (IsA converso convert) (STV 1.0 0.9091)) +(: cnet_isa_10c623ea5b (IsA convert person) (STV 1.0 0.9091)) +(: cnet_isa_b6ccbefddf (IsA converter device) (STV 1.0 0.9091)) +(: cnet_isa_8eb28c3748 (IsA convertibility exchangeability) (STV 1.0 0.9091)) +(: cnet_isa_de1fdfc618 (IsA convertible car) (STV 1.0 0.9091)) +(: cnet_isa_7d0b1260ad (IsA convertible sofa) (STV 1.0 0.9091)) +(: cnet_isa_1bcf33f268 (IsA convertible security) (STV 1.0 0.9091)) +(: cnet_isa_37e994dfc9 (IsA convertible_bond bond) (STV 1.0 0.9091)) +(: cnet_isa_9d2d5129e1 (IsA convex_polygon polygon) (STV 1.0 0.9091)) +(: cnet_isa_d24c875bdc (IsA convex_polyhedron polyhedron) (STV 1.0 0.9091)) +(: cnet_isa_0a3d2791bc (IsA convex_shape solid) (STV 1.0 0.9091)) +(: cnet_isa_f7838329be (IsA convexity shape) (STV 1.0 0.9091)) +(: cnet_isa_e52366822f (IsA conveyance transfer) (STV 1.0 0.9091)) +(: cnet_isa_e2a87948e2 (IsA conveyance instrumentality) (STV 1.0 0.9091)) +(: cnet_isa_bf06f1c70b (IsA conveyance transmission) (STV 1.0 0.9091)) +(: cnet_isa_4f5efc63b6 (IsA conveyance legal_document) (STV 1.0 0.9091)) +(: cnet_isa_0defa9e2db (IsA conveyancer lawyer) (STV 1.0 0.9091)) +(: cnet_isa_65e2c99df7 (IsA conveyer messenger) (STV 1.0 0.9091)) +(: cnet_isa_15f13410b7 (IsA conveyer_belt belt) (STV 1.0 0.9091)) +(: cnet_isa_0774c5ed24 (IsA convict prisoner) (STV 1.0 0.9091)) +(: cnet_isa_f1d59c1d7b (IsA convict wrongdoer) (STV 1.0 0.9091)) +(: cnet_isa_9de59ac64f (IsA conviction belief) (STV 1.0 0.9091)) +(: cnet_isa_24248745b9 (IsA conviction final_judgment) (STV 1.0 0.9091)) +(: cnet_isa_33e769c4ac (IsA convincingness persuasiveness) (STV 1.0 0.9091)) +(: cnet_isa_3c4b00d267 (IsA conviviality sociability) (STV 1.0 0.9091)) +(: cnet_isa_70dc476f25 (IsA convocation assembly) (STV 1.0 0.9091)) +(: cnet_isa_3c3c807abb (IsA convocation gathering) (STV 1.0 0.9091)) +(: cnet_isa_a56d369930 (IsA convolution change_of_shape) (STV 1.0 0.9091)) +(: cnet_isa_02ddb349cc (IsA convolvulaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_5dd442df2e (IsA convolvulus vine) (STV 1.0 0.9091)) +(: cnet_isa_53771faafd (IsA convoy escort) (STV 1.0 0.9091)) +(: cnet_isa_d27fc1b033 (IsA convoy collection) (STV 1.0 0.9091)) +(: cnet_isa_15fe0e01a4 (IsA convoy procession) (STV 1.0 0.9091)) +(: cnet_isa_adb5aa6876 (IsA convulsion trouble) (STV 1.0 0.9091)) +(: cnet_isa_b2efcfc8c2 (IsA convulsion disturbance) (STV 1.0 0.9091)) +(: cnet_isa_6a527b6d2e (IsA convulsion seizure) (STV 1.0 0.9091)) +(: cnet_isa_4b6782e8ad (IsA conyza asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b5adfd98aa (IsA coo cry) (STV 1.0 0.9091)) +(: cnet_isa_898537a227 (IsA cook skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_53aa6ebdd9 (IsA cookbook reference_book) (STV 1.0 0.9091)) +(: cnet_isa_639516666c (IsA cooker cooking_utensil) (STV 1.0 0.9091)) +(: cnet_isa_a2d631d4e5 (IsA cookfire fire) (STV 1.0 0.9091)) +(: cnet_isa_d5ed60d1c2 (IsA cookhouse shelter) (STV 1.0 0.9091)) +(: cnet_isa_4288275fc6 (IsA cookie text) (STV 1.0 0.9091)) +(: cnet_isa_e8272d7521 (IsA cookie cake) (STV 1.0 0.9091)) +(: cnet_isa_16a51735f6 (IsA cookie cook) (STV 1.0 0.9091)) +(: cnet_isa_6f65375546 (IsA cookie_cutter kitchen_utensil) (STV 1.0 0.9091)) +(: cnet_isa_caf242cf67 (IsA cookie_jar jar) (STV 1.0 0.9091)) +(: cnet_isa_ff95c9cbb3 (IsA cookie_jar_reserve hidden_reserve) (STV 1.0 0.9091)) +(: cnet_isa_2f0c63f605 (IsA cookie_sheet cooking_utensil) (STV 1.0 0.9091)) +(: cnet_isa_34e6183195 (IsA cooking change_of_state) (STV 1.0 0.9091)) +(: cnet_isa_8182448195 (IsA cooking_apple apple) (STV 1.0 0.9091)) +(: cnet_isa_6ea6bc85fe (IsA cooking_food fun_activity) (STV 1.0 0.9091)) +(: cnet_isa_1df1993c1f (IsA cooking_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_5f06c79027 (IsA cooking_oil vegetable_oil) (STV 1.0 0.9091)) +(: cnet_isa_44e50743fa (IsA cooking_utensil kitchen_utensil) (STV 1.0 0.9091)) +(: cnet_isa_c4319e5625 (IsA cookout picnic) (STV 1.0 0.9091)) +(: cnet_isa_65c566ee5d (IsA cookstove stove) (STV 1.0 0.9091)) +(: cnet_isa_08554297c6 (IsA cool coldness) (STV 1.0 0.9091)) +(: cnet_isa_ae0e560916 (IsA cool_jazz jazz) (STV 1.0 0.9091)) +(: cnet_isa_93adf51ede (IsA coolant agent) (STV 1.0 0.9091)) +(: cnet_isa_30823c9b6c (IsA coolant fluid) (STV 1.0 0.9091)) +(: cnet_isa_db84d74ef8 (IsA coolant_system cooling_system) (STV 1.0 0.9091)) +(: cnet_isa_3da8a595e1 (IsA cooler cell) (STV 1.0 0.9091)) +(: cnet_isa_77fad01598 (IsA cooler refrigerator) (STV 1.0 0.9091)) +(: cnet_isa_47fbc0aead (IsA cooler beverage) (STV 1.0 0.9091)) +(: cnet_isa_127bc40a10 (IsA cooley_s_anemia thalassemia) (STV 1.0 0.9091)) +(: cnet_isa_962e9eec47 (IsA coolie asiatic) (STV 1.0 0.9091)) +(: cnet_isa_752cb9dd75 (IsA cooling temperature_change) (STV 1.0 0.9091)) +(: cnet_isa_12108148e7 (IsA cooling_system equipment) (STV 1.0 0.9091)) +(: cnet_isa_ae1171e7d9 (IsA cooling_system mechanism) (STV 1.0 0.9091)) +(: cnet_isa_4d2402a9a5 (IsA cooling_tower cooling_system) (STV 1.0 0.9091)) +(: cnet_isa_3e7803214f (IsA coolness fearlessness) (STV 1.0 0.9091)) +(: cnet_isa_e78a6e78b1 (IsA coolness calmness) (STV 1.0 0.9091)) +(: cnet_isa_a25067bb90 (IsA coon rustic) (STV 1.0 0.9091)) +(: cnet_isa_ee61ecaa71 (IsA coondog coonhound) (STV 1.0 0.9091)) +(: cnet_isa_ca6e552eb9 (IsA coonhound hound) (STV 1.0 0.9091)) +(: cnet_isa_4f6b42f235 (IsA coonskin_cap cap) (STV 1.0 0.9091)) +(: cnet_isa_b2d6b030b4 (IsA coontie zamia) (STV 1.0 0.9091)) +(: cnet_isa_ca985edb6d (IsA cooper_s_hawk hawk) (STV 1.0 0.9091)) +(: cnet_isa_bcb9f248ad (IsA cooperation group_action) (STV 1.0 0.9091)) +(: cnet_isa_80c09d1b1d (IsA cooperation practice) (STV 1.0 0.9091)) +(: cnet_isa_96c983bd7f (IsA cooperative commercial_enterprise) (STV 1.0 0.9091)) +(: cnet_isa_815cbbb43c (IsA cooperative association) (STV 1.0 0.9091)) +(: cnet_isa_fec08130b9 (IsA coordinate number) (STV 1.0 0.9091)) +(: cnet_isa_872f78c42c (IsA coordinate_axis axis) (STV 1.0 0.9091)) +(: cnet_isa_4dcff9c077 (IsA coordinate_bond covalent_bond) (STV 1.0 0.9091)) +(: cnet_isa_4a24d1b03a (IsA coordinate_clause clause) (STV 1.0 0.9091)) +(: cnet_isa_2ccbc0359a (IsA coordinate_system arrangement) (STV 1.0 0.9091)) +(: cnet_isa_317d2ed7ab (IsA coordinated_universal_time greenwich_mean_time) (STV 1.0 0.9091)) +(: cnet_isa_a2909aa2e8 (IsA coordinating_conjunction conjunction) (STV 1.0 0.9091)) +(: cnet_isa_bfb986abdf (IsA coordination timing) (STV 1.0 0.9091)) +(: cnet_isa_3e61dd10dc (IsA coordination classification) (STV 1.0 0.9091)) +(: cnet_isa_8482a7d037 (IsA coordination skillfulness) (STV 1.0 0.9091)) +(: cnet_isa_523523fcda (IsA coordination grammatical_relation) (STV 1.0 0.9091)) +(: cnet_isa_b5a0e86c9a (IsA coordinator organizer) (STV 1.0 0.9091)) +(: cnet_isa_bbaea7c11b (IsA coot rail) (STV 1.0 0.9091)) +(: cnet_isa_b2626a50a5 (IsA cooter turtle) (STV 1.0 0.9091)) +(: cnet_isa_93ce95dbb3 (IsA copaiba oleoresin) (STV 1.0 0.9091)) +(: cnet_isa_22181774e7 (IsA copal natural_resin) (STV 1.0 0.9091)) +(: cnet_isa_c7967c7b53 (IsA copalite copal) (STV 1.0 0.9091)) +(: cnet_isa_6b47e0b884 (IsA copartner partner) (STV 1.0 0.9091)) +(: cnet_isa_36f592b0fa (IsA copartnership partnership) (STV 1.0 0.9091)) +(: cnet_isa_ae69ca3cc0 (IsA cope cloak) (STV 1.0 0.9091)) +(: cnet_isa_2244d79af6 (IsA copehan penutian) (STV 1.0 0.9091)) +(: cnet_isa_c5fcfc80f5 (IsA copepod crustacean) (STV 1.0 0.9091)) +(: cnet_isa_1b39bafc7b (IsA copepoda class) (STV 1.0 0.9091)) +(: cnet_isa_227a3be829 (IsA copernican_system model) (STV 1.0 0.9091)) +(: cnet_isa_45af2b7587 (IsA copernicia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c535a61706 (IsA copilot pilot) (STV 1.0 0.9091)) +(: cnet_isa_cf598ce8dc (IsA coping_saw handsaw) (STV 1.0 0.9091)) +(: cnet_isa_32354a11be (IsA copolymer polymer) (STV 1.0 0.9091)) +(: cnet_isa_d750580aa3 (IsA copout failure) (STV 1.0 0.9091)) +(: cnet_isa_a9eb5009af (IsA copper element) (STV 1.0 0.9339)) +(: cnet_isa_0c699e7c1a (IsA copper good_conductor_of_electricity) (STV 1.0 0.9636)) +(: cnet_isa_8ed1ca72e4 (IsA copper good_electrical_conductor) (STV 1.0 0.9339)) +(: cnet_isa_3d5f9a0b56 (IsA copper metal) (STV 1.0 0.9524)) +(: cnet_isa_81e4c9f2c7 (IsA copper lycaenid) (STV 1.0 0.9091)) +(: cnet_isa_5db7e64876 (IsA copper reddish_brown) (STV 1.0 0.9091)) +(: cnet_isa_99cc683010 (IsA copper penny) (STV 1.0 0.9091)) +(: cnet_isa_6ef21872b8 (IsA copper conductor) (STV 1.0 0.9091)) +(: cnet_isa_6860d0154d (IsA copper metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_607d6e5827 (IsA copper_base_alloy alloy) (STV 1.0 0.9091)) +(: cnet_isa_108ad26c0f (IsA copper_beech beech) (STV 1.0 0.9091)) +(: cnet_isa_cbdc777bdb (IsA copper_mine mine) (STV 1.0 0.9091)) +(: cnet_isa_91641c535f (IsA copper_oxide oxide) (STV 1.0 0.9091)) +(: cnet_isa_b5c9ec08ff (IsA copper_rockfish rockfish) (STV 1.0 0.9091)) +(: cnet_isa_cacbe8924d (IsA copper_sulfate sulfate) (STV 1.0 0.9091)) +(: cnet_isa_fd85edb5ec (IsA copperhead elapid) (STV 1.0 0.9091)) +(: cnet_isa_13d1f48ff3 (IsA copperhead pit_viper) (STV 1.0 0.9091)) +(: cnet_isa_2f39d818c0 (IsA copperplate engraving) (STV 1.0 0.9091)) +(: cnet_isa_ad51d0055b (IsA copperplate print) (STV 1.0 0.9091)) +(: cnet_isa_1519860777 (IsA copperplate longhand) (STV 1.0 0.9091)) +(: cnet_isa_7a9ceff9ad (IsA coppersmith craftsman) (STV 1.0 0.9091)) +(: cnet_isa_af10d776bd (IsA copperware utensil) (STV 1.0 0.9091)) +(: cnet_isa_b030fa1707 (IsA copra coconut) (STV 1.0 0.9091)) +(: cnet_isa_2df42550ca (IsA coprinaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_0a2bd95fb4 (IsA coprinus fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_55f38bd011 (IsA coprolalia pathology) (STV 1.0 0.9091)) +(: cnet_isa_3e3de5bf71 (IsA coprolite dropping) (STV 1.0 0.9091)) +(: cnet_isa_7e49b325fe (IsA coprolith mass) (STV 1.0 0.9091)) +(: cnet_isa_7b49d36e59 (IsA coprophagy eating) (STV 1.0 0.9091)) +(: cnet_isa_4b51cdd1b5 (IsA copt christian) (STV 1.0 0.9091)) +(: cnet_isa_f2e7f0fcec (IsA copt egyptian) (STV 1.0 0.9091)) +(: cnet_isa_96fe918bb3 (IsA coptic egyptian) (STV 1.0 0.9091)) +(: cnet_isa_cd75c38e79 (IsA coptic_church church) (STV 1.0 0.9091)) +(: cnet_isa_e94aa574f1 (IsA coptis magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6724a992ce (IsA copula verb) (STV 1.0 0.9091)) +(: cnet_isa_1e728a816c (IsA copulative_conjunction conjunction) (STV 1.0 0.9091)) +(: cnet_isa_d575add3d3 (IsA copy representation) (STV 1.0 0.9091)) +(: cnet_isa_b614f6f090 (IsA copy material) (STV 1.0 0.9091)) +(: cnet_isa_79c4ecb4ab (IsA copy text) (STV 1.0 0.9091)) +(: cnet_isa_5b46813459 (IsA copy_editing editing) (STV 1.0 0.9091)) +(: cnet_isa_a346fa4510 (IsA copy_editor editor) (STV 1.0 0.9091)) +(: cnet_isa_aba4ac9172 (IsA copybook book) (STV 1.0 0.9091)) +(: cnet_isa_8f18d1bd51 (IsA copycat person) (STV 1.0 0.9091)) +(: cnet_isa_93c2d87126 (IsA copyhold tenure) (STV 1.0 0.9091)) +(: cnet_isa_ddada783e1 (IsA copyholder mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_067ae1b6de (IsA copying repetition) (STV 1.0 0.9091)) +(: cnet_isa_8e0513208f (IsA copyist employee) (STV 1.0 0.9091)) +(: cnet_isa_33bb68826b (IsA copyright document) (STV 1.0 0.9091)) +(: cnet_isa_4b83efaa9c (IsA copyright legal_right) (STV 1.0 0.9091)) +(: cnet_isa_c2296eec2e (IsA copyright_infringement crime) (STV 1.0 0.9091)) +(: cnet_isa_a8301524c4 (IsA copyright_infringement violation) (STV 1.0 0.9091)) +(: cnet_isa_61070ea60a (IsA copywriter employee) (STV 1.0 0.9091)) +(: cnet_isa_19262ac429 (IsA coq_au_vin dish) (STV 1.0 0.9091)) +(: cnet_isa_122727973c (IsA coquette woman) (STV 1.0 0.9091)) +(: cnet_isa_80e8a22c75 (IsA coquilla_nut seed) (STV 1.0 0.9091)) +(: cnet_isa_0de70c129f (IsA coquille dish) (STV 1.0 0.9091)) +(: cnet_isa_0224922d86 (IsA coquille_saint_jacque dish) (STV 1.0 0.9091)) +(: cnet_isa_144a703f89 (IsA cor_pulmonale hypertrophy) (STV 1.0 0.9091)) +(: cnet_isa_315bfae784 (IsA coracia bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_df973230ac (IsA coraciidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_b3df667f6c (IsA coraciiform_bird bird) (STV 1.0 0.9091)) +(: cnet_isa_e89b9afd9d (IsA coraciiforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_b600216f1b (IsA coracle small_boat) (STV 1.0 0.9091)) +(: cnet_isa_74a88574da (IsA coragyp bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_f26ac7de18 (IsA coral anthozoan) (STV 1.0 0.9091)) +(: cnet_isa_14006d280c (IsA coral pink) (STV 1.0 0.9091)) +(: cnet_isa_92fbb20c63 (IsA coral roe) (STV 1.0 0.9091)) +(: cnet_isa_9fab685f7b (IsA coral opaque_gem) (STV 1.0 0.9091)) +(: cnet_isa_67d1d399d1 (IsA coral_bean_tree coral_tree) (STV 1.0 0.9091)) +(: cnet_isa_84e09bc1c6 (IsA coral_bush shrub) (STV 1.0 0.9091)) +(: cnet_isa_ae9ec1d7ec (IsA coral_drop flower) (STV 1.0 0.9091)) +(: cnet_isa_b700a801b4 (IsA coral_fungus fungus) (STV 1.0 0.9091)) +(: cnet_isa_24c7e002a7 (IsA coral_gem subshrub) (STV 1.0 0.9091)) +(: cnet_isa_5e0928d036 (IsA coral_necklace herb) (STV 1.0 0.9091)) +(: cnet_isa_40c3ed5fbc (IsA coral_pea vine) (STV 1.0 0.9091)) +(: cnet_isa_a0be9836b1 (IsA coral_reef reef) (STV 1.0 0.9091)) +(: cnet_isa_ee589dbf17 (IsA coral_root orchid) (STV 1.0 0.9091)) +(: cnet_isa_1b38cfa0bc (IsA coral_root_bittercress bittercress) (STV 1.0 0.9091)) +(: cnet_isa_faec8590a9 (IsA coral_snake elapid) (STV 1.0 0.9091)) +(: cnet_isa_84fcaee53a (IsA coral_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_994f0f1259 (IsA coral_vine coral_pea) (STV 1.0 0.9091)) +(: cnet_isa_035504eab3 (IsA coralbell alumroot) (STV 1.0 0.9091)) +(: cnet_isa_7cf14c6272 (IsA coralberry shrub) (STV 1.0 0.9091)) +(: cnet_isa_d0e03cbd93 (IsA corallorhiza monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_46111c43a4 (IsA coralwood tree) (STV 1.0 0.9091)) +(: cnet_isa_ac0bdae419 (IsA corbel bracket) (STV 1.0 0.9091)) +(: cnet_isa_6c3af200b7 (IsA corbel_arch arch) (STV 1.0 0.9091)) +(: cnet_isa_ac2e0c5a20 (IsA corbel_step step) (STV 1.0 0.9091)) +(: cnet_isa_0902eed52a (IsA corbie_gable gable) (STV 1.0 0.9091)) +(: cnet_isa_129edea57f (IsA corbina whiting) (STV 1.0 0.9091)) +(: cnet_isa_bf7c7f3665 (IsA corchorus dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1a80b4f1e3 (IsA corchorus subshrub) (STV 1.0 0.9091)) +(: cnet_isa_34ee4d677e (IsA cord conductor) (STV 1.0 0.9091)) +(: cnet_isa_0d0be77d1e (IsA cord fabric) (STV 1.0 0.9091)) +(: cnet_isa_3426438763 (IsA cord line) (STV 1.0 0.9091)) +(: cnet_isa_8bac195041 (IsA cord volume_unit) (STV 1.0 0.9091)) +(: cnet_isa_175fd1a7d2 (IsA cord_blood blood) (STV 1.0 0.9091)) +(: cnet_isa_be77a38422 (IsA cordage rope) (STV 1.0 0.9091)) +(: cnet_isa_82128008d5 (IsA cordage measure) (STV 1.0 0.9091)) +(: cnet_isa_9e724f491d (IsA cordaitaceae gymnosperm_family) (STV 1.0 0.9091)) +(: cnet_isa_84bf9ad0c7 (IsA cordaitale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_3f9d6c9029 (IsA cordaite gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_58d4c64b2f (IsA cordate_leaf simple_leaf) (STV 1.0 0.9091)) +(: cnet_isa_6ea5217735 (IsA cordgrass grass) (STV 1.0 0.9091)) +(: cnet_isa_71fa1e34ce (IsA cordia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_014139bf64 (IsA cordial_reception welcome) (STV 1.0 0.9091)) +(: cnet_isa_9a12e00b9f (IsA cordierite mineral) (STV 1.0 0.9091)) +(: cnet_isa_f27e7cb4c4 (IsA cordite explosive_compound) (STV 1.0 0.9091)) +(: cnet_isa_3f53555224 (IsA corditis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_2c586b139d (IsA cordoba nicaraguan_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_539e15e4bd (IsA cordon adornment) (STV 1.0 0.9091)) +(: cnet_isa_6d0a3231c8 (IsA cordon insignia) (STV 1.0 0.9091)) +(: cnet_isa_c4ef04f05d (IsA cordon sery) (STV 1.0 0.9091)) +(: cnet_isa_819dc1d47f (IsA cordon_bleu chef) (STV 1.0 0.9091)) +(: cnet_isa_fb1f8ed94e (IsA cordovan leather) (STV 1.0 0.9091)) +(: cnet_isa_207aee44b2 (IsA cord pair_of_trouser) (STV 1.0 0.9091)) +(: cnet_isa_1d59770e09 (IsA corduroy road) (STV 1.0 0.9091)) +(: cnet_isa_7e3422a9fd (IsA cordwood firewood) (STV 1.0 0.9091)) +(: cnet_isa_32e1efafd4 (IsA cordylidae reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_bea42e888a (IsA cordyline liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6c1943f933 (IsA cordylus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_cef2bcd3fa (IsA core bar) (STV 1.0 0.9091)) +(: cnet_isa_a9cf472568 (IsA core chamber) (STV 1.0 0.9091)) +(: cnet_isa_8ae4da1247 (IsA core set) (STV 1.0 0.9091)) +(: cnet_isa_c71b3144e4 (IsA core center) (STV 1.0 0.9091)) +(: cnet_isa_c6494582e9 (IsA core sample) (STV 1.0 0.9091)) +(: cnet_isa_af67b961e7 (IsA core_bit drilling_bit) (STV 1.0 0.9091)) +(: cnet_isa_0119c8766b (IsA core_drill drill) (STV 1.0 0.9091)) +(: cnet_isa_71bb57d4de (IsA core_dump dump) (STV 1.0 0.9091)) +(: cnet_isa_41472a8f13 (IsA coreference grammatical_relation) (STV 1.0 0.9091)) +(: cnet_isa_3d2bb49724 (IsA coregonidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_81ba957ca4 (IsA coregonus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_2aa97150c1 (IsA coreid_bug hemipterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_1e195066a7 (IsA coreidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_45c01bce50 (IsA coreligionist religionist) (STV 1.0 0.9091)) +(: cnet_isa_b6e485816e (IsA coreopsis herb) (STV 1.0 0.9091)) +(: cnet_isa_ab54fc18a7 (IsA corer device) (STV 1.0 0.9091)) +(: cnet_isa_39a9fd3920 (IsA corespondent codefendant) (STV 1.0 0.9091)) +(: cnet_isa_dac354eec5 (IsA corgi dog) (STV 1.0 0.9091)) +(: cnet_isa_7ff8dc9f5e (IsA coriander flavorer) (STV 1.0 0.9091)) +(: cnet_isa_dbc223c031 (IsA coriander herb) (STV 1.0 0.9091)) +(: cnet_isa_dfbc2da906 (IsA coriandrum rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c699d9a814 (IsA corinthian hellene) (STV 1.0 0.9091)) +(: cnet_isa_f7b16e81af (IsA corinthian_order order) (STV 1.0 0.9091)) +(: cnet_isa_a578145fc5 (IsA coriolis_effect consequence) (STV 1.0 0.9091)) +(: cnet_isa_40eeb38c49 (IsA coriolis_force force) (STV 1.0 0.9091)) +(: cnet_isa_b6dacf60c0 (IsA corixa arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_d26aefade2 (IsA corixidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_a0f6c29df0 (IsA cork plug) (STV 1.0 0.9091)) +(: cnet_isa_27d1e12d83 (IsA cork bark) (STV 1.0 0.9091)) +(: cnet_isa_b4489edeb0 (IsA cork plant_material) (STV 1.0 0.9091)) +(: cnet_isa_453a57a152 (IsA cork_oak oak) (STV 1.0 0.9091)) +(: cnet_isa_9d61a5cee1 (IsA cork_tree coral_tree) (STV 1.0 0.9091)) +(: cnet_isa_cb0745b4ca (IsA cork_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_3a4aa71cee (IsA corkage service_charge) (STV 1.0 0.9091)) +(: cnet_isa_76b8b81e2b (IsA corkboard insulating_material) (STV 1.0 0.9091)) +(: cnet_isa_daa431b870 (IsA corker machine) (STV 1.0 0.9091)) +(: cnet_isa_28792eac23 (IsA corker message) (STV 1.0 0.9091)) +(: cnet_isa_a307122247 (IsA corkscrew bottle_opener) (STV 1.0 0.9091)) +(: cnet_isa_fc533df9cf (IsA corkwood shrub) (STV 1.0 0.9091)) +(: cnet_isa_0a6f316116 (IsA corm stalk) (STV 1.0 0.9091)) +(: cnet_isa_3cdc90b485 (IsA cormorant pelecaniform_seabird) (STV 1.0 0.9091)) +(: cnet_isa_6379045d2c (IsA cormous_plant vascular_plant) (STV 1.0 0.9091)) +(: cnet_isa_d966bf106a (IsA corn food) (STV 1.0 0.9677)) +(: cnet_isa_8735f63d43 (IsA corn starchy_vegetable) (STV 1.0 0.9091)) +(: cnet_isa_184d4c37d5 (IsA corn vegetable) (STV 1.0 0.9781)) +(: cnet_isa_705eb29c70 (IsA corn mawkishness) (STV 1.0 0.9091)) +(: cnet_isa_6a952ece90 (IsA corn grain) (STV 1.0 0.9091)) +(: cnet_isa_5240fd94b6 (IsA corn cereal) (STV 1.0 0.9091)) +(: cnet_isa_3c2a67e442 (IsA corn kernel) (STV 1.0 0.9091)) +(: cnet_isa_1bdb9f6b87 (IsA corn callosity) (STV 1.0 0.9091)) +(: cnet_isa_65ede18b2b (IsA corn_borer caterpillar) (STV 1.0 0.9091)) +(: cnet_isa_4008c04a1f (IsA corn_borer pyralid) (STV 1.0 0.9091)) +(: cnet_isa_0a98be4be3 (IsA corn_bread bread) (STV 1.0 0.9091)) +(: cnet_isa_3fc110adce (IsA corn_cake cornbread) (STV 1.0 0.9091)) +(: cnet_isa_78973e8df5 (IsA corn_chamomile composite) (STV 1.0 0.9091)) +(: cnet_isa_960bfb9de2 (IsA corn_chip snack_food) (STV 1.0 0.9091)) +(: cnet_isa_dc59e6dac3 (IsA corn_chowder chowder) (STV 1.0 0.9091)) +(: cnet_isa_b8f7219a29 (IsA corn_cockle weed) (STV 1.0 0.9091)) +(: cnet_isa_f55a775da2 (IsA corn_dab cornbread) (STV 1.0 0.9091)) +(: cnet_isa_71add1f44d (IsA corn_dance rain_dance) (STV 1.0 0.9091)) +(: cnet_isa_53f6f02d89 (IsA corn_earworm bollworm) (STV 1.0 0.9091)) +(: cnet_isa_194dda1ecb (IsA corn_exchange exchange) (STV 1.0 0.9091)) +(: cnet_isa_4900553e0d (IsA corn_flake cold_cereal) (STV 1.0 0.9091)) +(: cnet_isa_7f6feaa275 (IsA corn_fritter fritter) (STV 1.0 0.9091)) +(: cnet_isa_b93dfef8b8 (IsA corn_gluten gluten) (STV 1.0 0.9091)) +(: cnet_isa_3849da92b1 (IsA corn_gluten_feed feed) (STV 1.0 0.9091)) +(: cnet_isa_97145130d2 (IsA corn_lily iridaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_38a9834ea7 (IsA corn_marigold chrysanthemum) (STV 1.0 0.9091)) +(: cnet_isa_4aeb411854 (IsA corn_mint mint) (STV 1.0 0.9091)) +(: cnet_isa_8383c59ad6 (IsA corn_muffin muffin) (STV 1.0 0.9091)) +(: cnet_isa_4c2d9c96b7 (IsA corn_oil vegetable_oil) (STV 1.0 0.9091)) +(: cnet_isa_64fafe4593 (IsA corn_poppy poppy) (STV 1.0 0.9091)) +(: cnet_isa_5eef82feb2 (IsA corn_pudding pudding) (STV 1.0 0.9091)) +(: cnet_isa_95ab7f82ca (IsA corn_salad herb) (STV 1.0 0.9091)) +(: cnet_isa_8594cc1a32 (IsA corn_silk style) (STV 1.0 0.9091)) +(: cnet_isa_0ab3244c7c (IsA corn_snake rat_snake) (STV 1.0 0.9091)) +(: cnet_isa_0379a287a4 (IsA corn_snow snow) (STV 1.0 0.9091)) +(: cnet_isa_9de54d0742 (IsA corn_speedwell veronica) (STV 1.0 0.9091)) +(: cnet_isa_769be44bf7 (IsA corn_spurry weed) (STV 1.0 0.9091)) +(: cnet_isa_9ad48770b7 (IsA corn_stalk stalk) (STV 1.0 0.9091)) +(: cnet_isa_9a3423a8dd (IsA corn_sugar sugar) (STV 1.0 0.9091)) +(: cnet_isa_e891d60e96 (IsA corn_sugar glucose) (STV 1.0 0.9091)) +(: cnet_isa_f70d17969d (IsA corn_syrup syrup) (STV 1.0 0.9091)) +(: cnet_isa_ec3e50c9ae (IsA corn_whiskey whiskey) (STV 1.0 0.9091)) +(: cnet_isa_09927fb7aa (IsA cornaceae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_009fe90f67 (IsA cornbread food) (STV 1.0 0.9091)) +(: cnet_isa_d5b17badb8 (IsA cornbread quick_bread) (STV 1.0 0.9091)) +(: cnet_isa_3f6c99440f (IsA corncob core) (STV 1.0 0.9091)) +(: cnet_isa_a5d58518d6 (IsA corncrake crake) (STV 1.0 0.9091)) +(: cnet_isa_da6a5dd545 (IsA corncrib crib) (STV 1.0 0.9091)) +(: cnet_isa_c87e41e269 (IsA cornea membrane) (STV 1.0 0.9091)) +(: cnet_isa_f169f66080 (IsA corned_beef_hash hash) (STV 1.0 0.9091)) +(: cnet_isa_7bffcb1704 (IsA cornelian_cherry dogwood) (STV 1.0 0.9091)) +(: cnet_isa_300046a48b (IsA corner structure) (STV 1.0 0.9091)) +(: cnet_isa_2f008250b0 (IsA corner area) (STV 1.0 0.9091)) +(: cnet_isa_2a4f00dee3 (IsA corner intersection) (STV 1.0 0.9091)) +(: cnet_isa_2a8c51f64b (IsA corner point) (STV 1.0 0.9091)) +(: cnet_isa_ad14e1e11e (IsA corner part) (STV 1.0 0.9091)) +(: cnet_isa_bdb1b88de4 (IsA corner monopoly) (STV 1.0 0.9091)) +(: cnet_isa_20587bd468 (IsA corner predicament) (STV 1.0 0.9091)) +(: cnet_isa_f425227601 (IsA corner_kick free_kick) (STV 1.0 0.9091)) +(: cnet_isa_660e3b6451 (IsA corner_pocket pocket) (STV 1.0 0.9091)) +(: cnet_isa_d17460feeb (IsA corner_post post) (STV 1.0 0.9091)) +(: cnet_isa_bcf0d1ce8f (IsA cornerback football_player) (STV 1.0 0.9091)) +(: cnet_isa_cf79e190df (IsA cornerstone stone) (STV 1.0 0.9091)) +(: cnet_isa_e799ed440c (IsA cornet brass) (STV 1.0 0.9091)) +(: cnet_isa_c27f3eb439 (IsA cornetfish teleost_fish) (STV 1.0 0.9091)) +(: cnet_isa_3fec696415 (IsA cornfield grainfield) (STV 1.0 0.9091)) +(: cnet_isa_7064f81a28 (IsA cornflower flower) (STV 1.0 0.9091)) +(: cnet_isa_def4cbd928 (IsA cornhusk husk) (STV 1.0 0.9091)) +(: cnet_isa_49e929a8d9 (IsA cornhusker american) (STV 1.0 0.9091)) +(: cnet_isa_7ae3bc8a27 (IsA cornhusker worker) (STV 1.0 0.9091)) +(: cnet_isa_cfab9b27d7 (IsA cornhusking denudation) (STV 1.0 0.9091)) +(: cnet_isa_4f05664bfd (IsA cornice framework) (STV 1.0 0.9091)) +(: cnet_isa_e8b78063e9 (IsA cornice molding) (STV 1.0 0.9091)) +(: cnet_isa_bde1c323dc (IsA cornice projection) (STV 1.0 0.9091)) +(: cnet_isa_41968086e7 (IsA cornish domestic_fowl) (STV 1.0 0.9091)) +(: cnet_isa_55d692eb5b (IsA cornish brythonic) (STV 1.0 0.9091)) +(: cnet_isa_2b61647d90 (IsA cornish_heath erica) (STV 1.0 0.9091)) +(: cnet_isa_2a7b8f4724 (IsA cornish_pasty pasty) (STV 1.0 0.9091)) +(: cnet_isa_3f07ca048b (IsA cornishman englishman) (STV 1.0 0.9091)) +(: cnet_isa_d4cfe92b4e (IsA cornishwoman englishwoman) (STV 1.0 0.9091)) +(: cnet_isa_0f53951bf8 (IsA cornmeal meal) (STV 1.0 0.9091)) +(: cnet_isa_c54c1048f8 (IsA cornpone cornbread) (STV 1.0 0.9091)) +(: cnet_isa_3893231c34 (IsA cornsmut smut) (STV 1.0 0.9091)) +(: cnet_isa_6426784f15 (IsA cornstarch starch) (STV 1.0 0.9091)) +(: cnet_isa_5fc6846956 (IsA cornu structure) (STV 1.0 0.9091)) +(: cnet_isa_cca2e82464 (IsA cornus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4f9247739d (IsA corokia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ea5d23fb95 (IsA corolla coil) (STV 1.0 0.9091)) +(: cnet_isa_487e480e59 (IsA corollary consequence) (STV 1.0 0.9091)) +(: cnet_isa_cc0d954e4b (IsA corollary inference) (STV 1.0 0.9091)) +(: cnet_isa_5d743f0473 (IsA corona structure) (STV 1.0 0.9091)) +(: cnet_isa_649769cd56 (IsA corona cigar) (STV 1.0 0.9091)) +(: cnet_isa_e06a0ce9c4 (IsA corona plant_part) (STV 1.0 0.9091)) +(: cnet_isa_68b2e8ddb0 (IsA corona light) (STV 1.0 0.9091)) +(: cnet_isa_ce5dcdc0d8 (IsA corona_discharge discharge) (STV 1.0 0.9091)) +(: cnet_isa_9ffb33e2c7 (IsA coronal_suture suture) (STV 1.0 0.9091)) +(: cnet_isa_a01e2c62ff (IsA coronary_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_a005c324ff (IsA coronary_bypass open_heart_surgery) (STV 1.0 0.9091)) +(: cnet_isa_6540780088 (IsA coronary_care_unit intensive_care_unit) (STV 1.0 0.9091)) +(: cnet_isa_65d246db23 (IsA coronary_heart_disease heart_disease) (STV 1.0 0.9091)) +(: cnet_isa_10b17e4d3a (IsA coronary_insufficiency insufficiency) (STV 1.0 0.9091)) +(: cnet_isa_a9da896b8f (IsA coronary_occlusion coronary_heart_disease) (STV 1.0 0.9091)) +(: cnet_isa_eb9cb65561 (IsA coronary_occlusion occlusion) (STV 1.0 0.9091)) +(: cnet_isa_6e249a2735 (IsA coronary_sinus venous_sinus) (STV 1.0 0.9091)) +(: cnet_isa_2de1a0a69e (IsA coronary_thrombosis coronary_heart_disease) (STV 1.0 0.9091)) +(: cnet_isa_9ae1250220 (IsA coronary_thrombosis thrombosis) (STV 1.0 0.9091)) +(: cnet_isa_d1d05a25b5 (IsA coronation initiation) (STV 1.0 0.9091)) +(: cnet_isa_e1d301cde0 (IsA coroner investigator) (STV 1.0 0.9091)) +(: cnet_isa_6cc57f4191 (IsA coronet animal_tissue) (STV 1.0 0.9091)) +(: cnet_isa_9e1b07b2d8 (IsA coronet crown) (STV 1.0 0.9091)) +(: cnet_isa_90c35fbfbf (IsA coronilla shrub) (STV 1.0 0.9091)) +(: cnet_isa_ee5c2c9964 (IsA coronion craniometric_point) (STV 1.0 0.9091)) +(: cnet_isa_6a2fced352 (IsA coronoid_process process) (STV 1.0 0.9091)) +(: cnet_isa_35ef1b1dec (IsA coronoid_process_of_mandible coronoid_process) (STV 1.0 0.9091)) +(: cnet_isa_80a413ec56 (IsA corozo palm) (STV 1.0 0.9091)) +(: cnet_isa_38f2145b9a (IsA corporal noncommissioned_officer) (STV 1.0 0.9091)) +(: cnet_isa_5d736501b5 (IsA corporal_punishment punishment) (STV 1.0 0.9091)) +(: cnet_isa_983de8e998 (IsA corporate_bond bond) (STV 1.0 0.9091)) +(: cnet_isa_ea5aa1cf44 (IsA corporate_executive executive) (STV 1.0 0.9091)) +(: cnet_isa_6143acc0a2 (IsA corporate_finance finance) (STV 1.0 0.9091)) +(: cnet_isa_64f9523351 (IsA corporate_investor company) (STV 1.0 0.9091)) +(: cnet_isa_7b0da54033 (IsA corporation firm) (STV 1.0 0.9091)) +(: cnet_isa_f1dc339d38 (IsA corporation_law jurisprudence) (STV 1.0 0.9091)) +(: cnet_isa_6bedcdb76d (IsA corporatism control) (STV 1.0 0.9091)) +(: cnet_isa_9f004e8d0d (IsA corporatist supporter) (STV 1.0 0.9091)) +(: cnet_isa_5110660cc1 (IsA corp army_unit) (STV 1.0 0.9091)) +(: cnet_isa_675a34197a (IsA corp body) (STV 1.0 0.9091)) +(: cnet_isa_6dbf9a1dfb (IsA corp_de_ballet chorus) (STV 1.0 0.9091)) +(: cnet_isa_5e42b07d0e (IsA corpulence fleshiness) (STV 1.0 0.9091)) +(: cnet_isa_962c1b23b8 (IsA corpus part) (STV 1.0 0.9091)) +(: cnet_isa_7cbaa8abca (IsA corpus collection) (STV 1.0 0.9091)) +(: cnet_isa_587a4be081 (IsA corpus_callosum commissure) (STV 1.0 0.9091)) +(: cnet_isa_6a91854ffe (IsA corpus_christi christian_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_e6bd09bf6c (IsA corpus_delicti evidence) (STV 1.0 0.9091)) +(: cnet_isa_05381918ab (IsA corpus_luteum endocrine_gland) (STV 1.0 0.9091)) +(: cnet_isa_c2980d6138 (IsA corpus_striatum basal_ganglion) (STV 1.0 0.9091)) +(: cnet_isa_69b6c99aac (IsA corpuscular_radiation radiation) (STV 1.0 0.9091)) +(: cnet_isa_8362d8651a (IsA corpuscular_theory scientific_theory) (STV 1.0 0.9091)) +(: cnet_isa_6a6012b7fe (IsA correction improvement) (STV 1.0 0.9091)) +(: cnet_isa_93ea6faa01 (IsA correction therapy) (STV 1.0 0.9091)) +(: cnet_isa_4df2f46f95 (IsA correction drop) (STV 1.0 0.9091)) +(: cnet_isa_dcf637402b (IsA correction editing) (STV 1.0 0.9091)) +(: cnet_isa_841d11e2ab (IsA correction rebuke) (STV 1.0 0.9091)) +(: cnet_isa_2e9e211791 (IsA correction indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_278c223f82 (IsA correctional_institution penal_institution) (STV 1.0 0.9091)) +(: cnet_isa_f35eea1ff9 (IsA correctional_rehabilitation rehabilitation) (STV 1.0 0.9091)) +(: cnet_isa_04e5d67696 (IsA correction social_control) (STV 1.0 0.9091)) +(: cnet_isa_58b299c26f (IsA correction local_department) (STV 1.0 0.9091)) +(: cnet_isa_b883d4384b (IsA corrective device) (STV 1.0 0.9091)) +(: cnet_isa_306fb2c0eb (IsA correctness propriety) (STV 1.0 0.9091)) +(: cnet_isa_300f2cf899 (IsA correctness quality) (STV 1.0 0.9091)) +(: cnet_isa_7b0515bf87 (IsA correlate variable) (STV 1.0 0.9091)) +(: cnet_isa_ffc831cb4b (IsA correlation statistic) (STV 1.0 0.9091)) +(: cnet_isa_c01bd4feb7 (IsA correlation reciprocality) (STV 1.0 0.9091)) +(: cnet_isa_5dadcc4a14 (IsA correlation_coefficient parametric_statistic) (STV 1.0 0.9091)) +(: cnet_isa_2245313a24 (IsA correlation_matrix matrix) (STV 1.0 0.9091)) +(: cnet_isa_9374cd7bfb (IsA correlation_table table) (STV 1.0 0.9091)) +(: cnet_isa_4aaffcfcfc (IsA correlational_analysis multivariate_analysis) (STV 1.0 0.9091)) +(: cnet_isa_8433d6d124 (IsA correspondence first_class) (STV 1.0 0.9091)) +(: cnet_isa_ab17df94dd (IsA correspondence written_communication) (STV 1.0 0.9091)) +(: cnet_isa_f70ee51fbe (IsA correspondence_course course) (STV 1.0 0.9091)) +(: cnet_isa_bfb86f75aa (IsA correspondence_school school) (STV 1.0 0.9091)) +(: cnet_isa_109d03273e (IsA correspondent communicator) (STV 1.0 0.9091)) +(: cnet_isa_ffb500b08f (IsA correspondent journalist) (STV 1.0 0.9091)) +(: cnet_isa_aec4160612 (IsA corridor passageway) (STV 1.0 0.9091)) +(: cnet_isa_6d163453cb (IsA corrigenda list) (STV 1.0 0.9091)) +(: cnet_isa_515ca0a9bb (IsA corrigendum error) (STV 1.0 0.9091)) +(: cnet_isa_cc22b3608a (IsA corroborating_evidence evidence) (STV 1.0 0.9091)) +(: cnet_isa_bffe8f552f (IsA corrosion chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_a9288d4a7c (IsA corrosion deterioration) (STV 1.0 0.9091)) +(: cnet_isa_e284f2dd50 (IsA corrosive compound) (STV 1.0 0.9091)) +(: cnet_isa_562b3be56f (IsA corrugated_board cardboard) (STV 1.0 0.9091)) +(: cnet_isa_61a5774abd (IsA corrugated_fastener fastener) (STV 1.0 0.9091)) +(: cnet_isa_6e41bc1a73 (IsA corrugated_iron sheet_metal) (STV 1.0 0.9091)) +(: cnet_isa_72c23b30f8 (IsA corrugation change_of_shape) (STV 1.0 0.9091)) +(: cnet_isa_c2e4b7e07b (IsA corrugation ridge) (STV 1.0 0.9091)) +(: cnet_isa_6552305d9a (IsA corruptibility immorality) (STV 1.0 0.9091)) +(: cnet_isa_3d7d5c6889 (IsA corruption degradation) (STV 1.0 0.9091)) +(: cnet_isa_7bf3908963 (IsA corruption inducement) (STV 1.0 0.9091)) +(: cnet_isa_1e800d9c16 (IsA corruption immorality) (STV 1.0 0.9091)) +(: cnet_isa_2a9c8e96c8 (IsA corruption decay) (STV 1.0 0.9091)) +(: cnet_isa_f101b4e993 (IsA corruptness dishonesty) (STV 1.0 0.9091)) +(: cnet_isa_60d281a5b3 (IsA corruptness dishonor) (STV 1.0 0.9091)) +(: cnet_isa_4b9031e613 (IsA corsair pirate) (STV 1.0 0.9091)) +(: cnet_isa_abd5feecfd (IsA corselet body_armor) (STV 1.0 0.9091)) +(: cnet_isa_c4e5b7aea9 (IsA corset foundation_garment) (STV 1.0 0.9091)) +(: cnet_isa_f2458663fc (IsA cortaderia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_470a771453 (IsA cortege gathering) (STV 1.0 0.9091)) +(: cnet_isa_c38a70a77f (IsA cortege procession) (STV 1.0 0.9091)) +(: cnet_isa_08ef3fb1f7 (IsA cortex animal_tissue) (STV 1.0 0.9091)) +(: cnet_isa_fc6e3fd2c4 (IsA cortex plant_tissue) (STV 1.0 0.9091)) +(: cnet_isa_a9cff8340b (IsA cortical_area area) (STV 1.0 0.9091)) +(: cnet_isa_5787beb5e3 (IsA cortical_cataract cataract) (STV 1.0 0.9091)) +(: cnet_isa_312adf1936 (IsA cortical_epilepsy epilepsy) (STV 1.0 0.9091)) +(: cnet_isa_cdcac9e8af (IsA corticium fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_56284e3ab3 (IsA corticosteroid steroid_hormone) (STV 1.0 0.9091)) +(: cnet_isa_6e2d76f937 (IsA corticosterone glucocorticoid) (STV 1.0 0.9091)) +(: cnet_isa_b96db9f231 (IsA cortina partial_veil) (STV 1.0 0.9091)) +(: cnet_isa_9ac270ff29 (IsA cortinariaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_d600038177 (IsA cortinarius fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_d8f25b384d (IsA cortinarius_armillatus agaric) (STV 1.0 0.9091)) +(: cnet_isa_891ef3bdec (IsA cortinarius_atkinsonianus agaric) (STV 1.0 0.9091)) +(: cnet_isa_f45ba96c89 (IsA cortinarius_corrugatus agaric) (STV 1.0 0.9091)) +(: cnet_isa_709a3f07b9 (IsA cortinarius_gentilis agaric) (STV 1.0 0.9091)) +(: cnet_isa_e843c3ec54 (IsA cortinarius_mutabilis agaric) (STV 1.0 0.9091)) +(: cnet_isa_9ee5de35cc (IsA cortinarius_semisanguineus agaric) (STV 1.0 0.9091)) +(: cnet_isa_30e9283933 (IsA cortinarius_subfoetidus agaric) (STV 1.0 0.9091)) +(: cnet_isa_5cd88674ae (IsA cortinarius_violaceus agaric) (STV 1.0 0.9091)) +(: cnet_isa_7ce56b8484 (IsA cortisone corticosteroid) (STV 1.0 0.9091)) +(: cnet_isa_df25fbf508 (IsA cortisone ketosteroid) (STV 1.0 0.9091)) +(: cnet_isa_3f76d120cb (IsA cortland eating_apple) (STV 1.0 0.9091)) +(: cnet_isa_2c9fa2dd37 (IsA corundom mineral) (STV 1.0 0.9091)) +(: cnet_isa_075a927a06 (IsA coruscation brilliance) (STV 1.0 0.9091)) +(: cnet_isa_511b4de8cf (IsA corvee labor) (STV 1.0 0.9091)) +(: cnet_isa_c2b2c16be3 (IsA corvette warship) (STV 1.0 0.9091)) +(: cnet_isa_353a79d950 (IsA corvidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_9dc4b5fa8e (IsA corvine_bird oscine) (STV 1.0 0.9091)) +(: cnet_isa_fc7b20329e (IsA corvus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_aa6a3ebb22 (IsA coryanthe monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_21920bd5fa (IsA corydalidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_0c89d77041 (IsA corydalis dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_574a89f874 (IsA corydalis flower) (STV 1.0 0.9091)) +(: cnet_isa_720a9accd4 (IsA corydalus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_d7ffc4f3e6 (IsA corylaceae hamamelid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_cc3b92b3ea (IsA corylopsis plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_cdae0fea3b (IsA corylus hamamelid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_686c8336d9 (IsA corymb inflorescence) (STV 1.0 0.9091)) +(: cnet_isa_56be7fd92b (IsA corynebacteriaceae bacteria_family) (STV 1.0 0.9091)) +(: cnet_isa_50c4f7a3ca (IsA corynebacterium eubacteria) (STV 1.0 0.9091)) +(: cnet_isa_1f452644cc (IsA corynebacterium_diphtheriae corynebacterium) (STV 1.0 0.9091)) +(: cnet_isa_0294b36117 (IsA corypha monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1165558787 (IsA coryphaena_equisetis dolphinfish) (STV 1.0 0.9091)) +(: cnet_isa_a197577a7a (IsA coryphaena_hippurus dolphinfish) (STV 1.0 0.9091)) +(: cnet_isa_f43dde0a85 (IsA coryphaenidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_40ee238ba4 (IsA coryphantha cactus) (STV 1.0 0.9091)) +(: cnet_isa_f9bad10b37 (IsA corythosaur hadrosaur) (STV 1.0 0.9091)) +(: cnet_isa_e37b520946 (IsA cos lettuce) (STV 1.0 0.9091)) +(: cnet_isa_9e711ff89f (IsA cos_lettuce lettuce) (STV 1.0 0.9091)) +(: cnet_isa_b08f6a1233 (IsA coscoroba swan) (STV 1.0 0.9091)) +(: cnet_isa_333e233084 (IsA cosecant trigonometric_function) (STV 1.0 0.9091)) +(: cnet_isa_d41d9967d7 (IsA cosigner signer) (STV 1.0 0.9091)) +(: cnet_isa_ff1b763345 (IsA cosine trigonometric_function) (STV 1.0 0.9091)) +(: cnet_isa_1537c50995 (IsA cosmetic toiletry) (STV 1.0 0.9091)) +(: cnet_isa_96b5f4036d (IsA cosmetic_dentistry dentistry) (STV 1.0 0.9091)) +(: cnet_isa_de8b3b81f7 (IsA cosmetic_surgeon surgeon) (STV 1.0 0.9091)) +(: cnet_isa_cb3d36f658 (IsA cosmetician seller) (STV 1.0 0.9091)) +(: cnet_isa_6fcec80b95 (IsA cosmetologist expert) (STV 1.0 0.9091)) +(: cnet_isa_a8bc859bf1 (IsA cosmetology practice) (STV 1.0 0.9091)) +(: cnet_isa_a647fcbbe1 (IsA cosmic_background_radiation cosmic_radiation) (STV 1.0 0.9091)) +(: cnet_isa_57112501cc (IsA cosmic_dust cloud) (STV 1.0 0.9091)) +(: cnet_isa_9ef191755d (IsA cosmic_radiation radiation) (STV 1.0 0.9091)) +(: cnet_isa_fbfe1212cc (IsA cosmic_ray ionizing_radiation) (STV 1.0 0.9091)) +(: cnet_isa_527ce307d4 (IsA cosmic_string elementary_particle) (STV 1.0 0.9091)) +(: cnet_isa_ca4130a5e4 (IsA cosmic_time time) (STV 1.0 0.9091)) +(: cnet_isa_5b6ec5001b (IsA cosmid vector) (STV 1.0 0.9091)) +(: cnet_isa_fa5bd56221 (IsA cosmocampus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_6dc8f848ce (IsA cosmographer scientist) (STV 1.0 0.9091)) +(: cnet_isa_0d47ea60b5 (IsA cosmography representation) (STV 1.0 0.9091)) +(: cnet_isa_fe4c4e62be (IsA cosmography natural_science) (STV 1.0 0.9091)) +(: cnet_isa_2d4ea03abd (IsA cosmolatry worship) (STV 1.0 0.9091)) +(: cnet_isa_770802a290 (IsA cosmological_constant constant) (STV 1.0 0.9091)) +(: cnet_isa_ef1661326f (IsA cosmologist astronomer) (STV 1.0 0.9091)) +(: cnet_isa_e8ad30b216 (IsA cosmology astrophysic) (STV 1.0 0.9091)) +(: cnet_isa_34b2def102 (IsA cosmology metaphysic) (STV 1.0 0.9091)) +(: cnet_isa_99c2cb5f20 (IsA cosmopolitan sophisticate) (STV 1.0 0.9091)) +(: cnet_isa_5b378d0e57 (IsA cosmo flower) (STV 1.0 0.9091)) +(: cnet_isa_7ce0e22400 (IsA cosmotron synchrotron) (STV 1.0 0.9091)) +(: cnet_isa_0c4292c08e (IsA cossack slav) (STV 1.0 0.9091)) +(: cnet_isa_79e2ecf0e8 (IsA cost outgo) (STV 1.0 0.9091)) +(: cnet_isa_917136eb25 (IsA cost_accountant accountant) (STV 1.0 0.9091)) +(: cnet_isa_5f74fa18aa (IsA cost_accounting accountancy) (STV 1.0 0.9091)) +(: cnet_isa_33fb6b84d7 (IsA cost_analysis analysis) (STV 1.0 0.9091)) +(: cnet_isa_60f3e0ea25 (IsA cost_benefit_analysis analysis) (STV 1.0 0.9091)) +(: cnet_isa_395d0c8dbe (IsA cost_cutting cut) (STV 1.0 0.9091)) +(: cnet_isa_80ded797f8 (IsA cost_ledger ledger) (STV 1.0 0.9091)) +(: cnet_isa_fddde0e1dd (IsA cost_of_capital opportunity_cost) (STV 1.0 0.9091)) +(: cnet_isa_77516a4b72 (IsA cost_of_living cost) (STV 1.0 0.9091)) +(: cnet_isa_87ece6c586 (IsA cost_of_living_allowance allowance) (STV 1.0 0.9091)) +(: cnet_isa_bc5da4a6fb (IsA cost_of_living_benefit benefit) (STV 1.0 0.9091)) +(: cnet_isa_e8b04e25f5 (IsA cost_overrun cost) (STV 1.0 0.9091)) +(: cnet_isa_93043db5a9 (IsA cost_plus_contract contract) (STV 1.0 0.9091)) +(: cnet_isa_befd154ae1 (IsA cost_pull_inflation inflation) (STV 1.0 0.9091)) +(: cnet_isa_e35e075fc3 (IsA costa structure) (STV 1.0 0.9091)) +(: cnet_isa_4fe4203480 (IsA costa_rican central_american) (STV 1.0 0.9091)) +(: cnet_isa_d9e66eabb2 (IsA costa_rican_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_15e7b1d2ce (IsA costal_cartilage cartilaginous_structure) (STV 1.0 0.9091)) +(: cnet_isa_839be94b1f (IsA costal_groove groove) (STV 1.0 0.9091)) +(: cnet_isa_98683d8471 (IsA costanoan penutian) (STV 1.0 0.9091)) +(: cnet_isa_c251d25468 (IsA costermonger trader) (STV 1.0 0.9091)) +(: cnet_isa_a0d230be2a (IsA costia flagellate) (STV 1.0 0.9091)) +(: cnet_isa_98f3844962 (IsA costiasis animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_68a8234b1e (IsA costing cost_accounting) (STV 1.0 0.9091)) +(: cnet_isa_58b38b0134 (IsA costliness expensiveness) (STV 1.0 0.9091)) +(: cnet_isa_7d4c112331 (IsA costmary herb) (STV 1.0 0.9091)) +(: cnet_isa_c1fd95b946 (IsA costoaxillary_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_aa50dc4200 (IsA costochondritis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_a08b66897f (IsA cost reimbursement) (STV 1.0 0.9091)) +(: cnet_isa_8d0c79f551 (IsA costume attire) (STV 1.0 0.9091)) +(: cnet_isa_3d366a41d7 (IsA costumier couturier) (STV 1.0 0.9091)) +(: cnet_isa_0404968617 (IsA costus_oil essential_oil) (STV 1.0 0.9091)) +(: cnet_isa_f1e4c99b64 (IsA costusroot herb) (STV 1.0 0.9091)) +(: cnet_isa_38e53da5f9 (IsA cosy cloth_covering) (STV 1.0 0.9091)) +(: cnet_isa_163313f14d (IsA cot bed) (STV 1.0 0.9091)) +(: cnet_isa_8064407b59 (IsA cotangent trigonometric_function) (STV 1.0 0.9091)) +(: cnet_isa_00d6806224 (IsA cote shelter) (STV 1.0 0.9091)) +(: cnet_isa_38dad1e24f (IsA cotenant tenant) (STV 1.0 0.9091)) +(: cnet_isa_71386b91d1 (IsA cote_de_provence wine) (STV 1.0 0.9091)) +(: cnet_isa_78f0cfe7d5 (IsA cotillion ballroom_dancing) (STV 1.0 0.9091)) +(: cnet_isa_4ab3048476 (IsA cotillion ball) (STV 1.0 0.9091)) +(: cnet_isa_96b2e65b72 (IsA cotinga new_world_flycatcher) (STV 1.0 0.9091)) +(: cnet_isa_18982dfe3c (IsA cotingidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_f94d2980c4 (IsA cotinus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c3abb79ba1 (IsA cotoneaster shrub) (STV 1.0 0.9091)) +(: cnet_isa_17a7a90eff (IsA cotoneaster_dammeri cotoneaster) (STV 1.0 0.9091)) +(: cnet_isa_2de92c6d1b (IsA cotoneaster_horizontalis cotoneaster) (STV 1.0 0.9091)) +(: cnet_isa_1a77b9034c (IsA cotswold domestic_sheep) (STV 1.0 0.9091)) +(: cnet_isa_92afc15e0e (IsA cottage house) (STV 1.0 0.9454)) +(: cnet_isa_43c1348bc4 (IsA cottage_cheese cheese) (STV 1.0 0.9091)) +(: cnet_isa_f89c064c3d (IsA cottage_industry industry) (STV 1.0 0.9091)) +(: cnet_isa_c8e092a027 (IsA cottage_pie dish) (STV 1.0 0.9091)) +(: cnet_isa_b776036bcc (IsA cottage_pink pink) (STV 1.0 0.9091)) +(: cnet_isa_cae030096c (IsA cottage_tent tent) (STV 1.0 0.9091)) +(: cnet_isa_4f28aface3 (IsA cottage_tulip tulip) (STV 1.0 0.9091)) +(: cnet_isa_08e3ff078f (IsA cottager inhabitant) (STV 1.0 0.9091)) +(: cnet_isa_793d188e76 (IsA cotter fastener) (STV 1.0 0.9091)) +(: cnet_isa_deeda58618 (IsA cotter peasant) (STV 1.0 0.9091)) +(: cnet_isa_c909c6a88f (IsA cotter serf) (STV 1.0 0.9091)) +(: cnet_isa_303f61e3fb (IsA cotter_pin cotter) (STV 1.0 0.9091)) +(: cnet_isa_4fd6cfbd53 (IsA cottidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_a98e00b243 (IsA cotton crop) (STV 1.0 0.9454)) +(: cnet_isa_403a2f8cff (IsA cotton fabric) (STV 1.0 0.9339)) +(: cnet_isa_b9ba07e001 (IsA cotton fiber_from_plant) (STV 1.0 0.9339)) +(: cnet_isa_39998d2e07 (IsA cotton natural_fiber) (STV 1.0 0.9454)) +(: cnet_isa_de735108a8 (IsA cotton plant) (STV 1.0 0.9454)) +(: cnet_isa_95cefa9203 (IsA cotton thread) (STV 1.0 0.9091)) +(: cnet_isa_a1733bdb13 (IsA cotton shrub) (STV 1.0 0.9091)) +(: cnet_isa_c1f7e2ed9b (IsA cotton plant_fiber) (STV 1.0 0.9091)) +(: cnet_isa_f2d9207e7a (IsA cotton_ball plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_460d069b19 (IsA cotton_candy candy) (STV 1.0 0.9091)) +(: cnet_isa_10560ed1d7 (IsA cotton_flannel fabric) (STV 1.0 0.9091)) +(: cnet_isa_36c0cab9ec (IsA cotton_gin machine) (STV 1.0 0.9091)) +(: cnet_isa_78c99a2216 (IsA cotton_grass sedge) (STV 1.0 0.9091)) +(: cnet_isa_34ad039213 (IsA cotton_mill textile_mill) (STV 1.0 0.9091)) +(: cnet_isa_585a452f3d (IsA cotton_mouse wood_mouse) (STV 1.0 0.9091)) +(: cnet_isa_ac4d6c5a30 (IsA cotton_rat rodent) (STV 1.0 0.9091)) +(: cnet_isa_b7ab5697b2 (IsA cotton_rose flower) (STV 1.0 0.9091)) +(: cnet_isa_5bbdfab8a7 (IsA cotton_rose hibiscus) (STV 1.0 0.9091)) +(: cnet_isa_ce2642b63e (IsA cotton_stainer heteropterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_3b7cb3e591 (IsA cotton_strain sweet_potato_whitefly) (STV 1.0 0.9091)) +(: cnet_isa_e8a1480edc (IsA cotton_thistle thistle) (STV 1.0 0.9091)) +(: cnet_isa_97c778373e (IsA cottonseed oilseed) (STV 1.0 0.9091)) +(: cnet_isa_cbdea4989c (IsA cottonseed_cake residue) (STV 1.0 0.9091)) +(: cnet_isa_197f313221 (IsA cottonseed_oil vegetable_oil) (STV 1.0 0.9091)) +(: cnet_isa_b1536b0acf (IsA cottonweed herb) (STV 1.0 0.9091)) +(: cnet_isa_b5dc1c54a3 (IsA cottonwick grunt) (STV 1.0 0.9091)) +(: cnet_isa_487161696a (IsA cottonwood poplar) (STV 1.0 0.9091)) +(: cnet_isa_df48f643f0 (IsA cottus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_5a3c6a7fca (IsA cotula asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_26e20da009 (IsA coturnix bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_fc88ebe2c2 (IsA cotyledon cataphyll) (STV 1.0 0.9091)) +(: cnet_isa_c48aec9941 (IsA coucal cuckoo) (STV 1.0 0.9091)) +(: cnet_isa_21f73d4553 (IsA couch bed) (STV 1.0 0.9091)) +(: cnet_isa_64ee9a187f (IsA couch flat_coat) (STV 1.0 0.9091)) +(: cnet_isa_8cf10b84e3 (IsA couch_potato idler) (STV 1.0 0.9091)) +(: cnet_isa_4d601f6556 (IsA couchette compartment) (STV 1.0 0.9091)) +(: cnet_isa_4e298bd1a5 (IsA coude_telescope reflecting_telescope) (STV 1.0 0.9091)) +(: cnet_isa_d4a1ddb37e (IsA cougar wildcat) (STV 1.0 0.9091)) +(: cnet_isa_c1daeb0abe (IsA cough symptom) (STV 1.0 0.9091)) +(: cnet_isa_5e8f38e064 (IsA cough_drop lozenge) (STV 1.0 0.9091)) +(: cnet_isa_e7f50fe0a5 (IsA coughing_up expulsion) (STV 1.0 0.9091)) +(: cnet_isa_ef368a5023 (IsA coulisse flat) (STV 1.0 0.9091)) +(: cnet_isa_8ed9a9965d (IsA coulisse timber) (STV 1.0 0.9091)) +(: cnet_isa_aef3d20b48 (IsA coulomb_s_law law) (STV 1.0 0.9091)) +(: cnet_isa_b6cec93cc7 (IsA coulomb charge_unit) (STV 1.0 0.9091)) +(: cnet_isa_e862259dfb (IsA coumarone_indene_resin plastic) (STV 1.0 0.9091)) +(: cnet_isa_1d0ff21d4c (IsA coumarouna rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1e5b69aab5 (IsA council assembly) (STV 1.0 0.9091)) +(: cnet_isa_28c5e2875c (IsA council administrative_unit) (STV 1.0 0.9091)) +(: cnet_isa_0cb8f19f7b (IsA council meeting) (STV 1.0 0.9091)) +(: cnet_isa_de2292f6ed (IsA council_member member) (STV 1.0 0.9091)) +(: cnet_isa_fdb472eb4e (IsA council_of_basel_ferrara_florence council) (STV 1.0 0.9091)) +(: cnet_isa_2dfd452ec3 (IsA council_of_chalcedon ecumenical_council) (STV 1.0 0.9091)) +(: cnet_isa_153b672346 (IsA council_of_constance council) (STV 1.0 0.9091)) +(: cnet_isa_9e268a53c7 (IsA council_of_economic_advisor executive_agency) (STV 1.0 0.9091)) +(: cnet_isa_f4b65f4e54 (IsA council_of_ephesus ecumenical_council) (STV 1.0 0.9091)) +(: cnet_isa_db4d89445b (IsA council_of_trent council) (STV 1.0 0.9091)) +(: cnet_isa_01609c2848 (IsA council_of_vienne council) (STV 1.0 0.9091)) +(: cnet_isa_04d860cc36 (IsA council_on_environmental_policy executive_agency) (STV 1.0 0.9091)) +(: cnet_isa_8c024a217e (IsA council_tax property_tax) (STV 1.0 0.9091)) +(: cnet_isa_aa87d28d47 (IsA councillorship position) (STV 1.0 0.9091)) +(: cnet_isa_16a8574b6e (IsA councilman council_member) (STV 1.0 0.9091)) +(: cnet_isa_f0e19f30c6 (IsA councilwoman council_member) (STV 1.0 0.9091)) +(: cnet_isa_bc84bdb5c7 (IsA counsel_to_crown barrister) (STV 1.0 0.9091)) +(: cnet_isa_5d1a1e87e7 (IsA counselor adviser) (STV 1.0 0.9091)) +(: cnet_isa_81ff513de4 (IsA counselor supervisor) (STV 1.0 0.9091)) +(: cnet_isa_a0375a5b3e (IsA counselorship position) (STV 1.0 0.9091)) +(: cnet_isa_2fe33ecb58 (IsA count investigation) (STV 1.0 0.9091)) +(: cnet_isa_a9250715a1 (IsA count nobleman) (STV 1.0 0.9091)) +(: cnet_isa_59ac1fab9e (IsA count number) (STV 1.0 0.9091)) +(: cnet_isa_ad59a25cac (IsA count_noun noun) (STV 1.0 0.9091)) +(: cnet_isa_89342e211e (IsA count_palatine count) (STV 1.0 0.9091)) +(: cnet_isa_f4188492a3 (IsA count_per_minute frequency) (STV 1.0 0.9091)) +(: cnet_isa_c3c6434a96 (IsA countdown count) (STV 1.0 0.9091)) +(: cnet_isa_49d408255d (IsA countenance appearance) (STV 1.0 0.9091)) +(: cnet_isa_58655ae445 (IsA countenance face) (STV 1.0 0.9091)) +(: cnet_isa_1a4c10c878 (IsA counter flat_horizontal_surface) (STV 1.0 0.9091)) +(: cnet_isa_fc7b0e6a4f (IsA counter calculator) (STV 1.0 0.9091)) +(: cnet_isa_09c07a6438 (IsA counter game_equipment) (STV 1.0 0.9091)) +(: cnet_isa_ea8cf0b074 (IsA counter piece_of_leather) (STV 1.0 0.9091)) +(: cnet_isa_6983f937a6 (IsA counter table) (STV 1.0 0.9091)) +(: cnet_isa_53aa843de4 (IsA counter register) (STV 1.0 0.9091)) +(: cnet_isa_dedaff7050 (IsA counter person) (STV 1.0 0.9091)) +(: cnet_isa_50847f73d3 (IsA counter_check check) (STV 1.0 0.9091)) +(: cnet_isa_4eff6adfcf (IsA counter_conditioning conditioning) (STV 1.0 0.9091)) +(: cnet_isa_2da4fc464c (IsA counter_reformation religious_movement) (STV 1.0 0.9091)) +(: cnet_isa_78e65ca6ad (IsA counter_sabotage counterintelligence) (STV 1.0 0.9091)) +(: cnet_isa_6827aedd01 (IsA counter_tube measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_ab22d9d8da (IsA counterargument argument) (STV 1.0 0.9091)) +(: cnet_isa_3ad7427347 (IsA counterattack attack) (STV 1.0 0.9091)) +(: cnet_isa_ce59a1075e (IsA counterattraction attraction) (STV 1.0 0.9091)) +(: cnet_isa_fee7c72875 (IsA counterbalance compensation) (STV 1.0 0.9091)) +(: cnet_isa_5f86492472 (IsA counterbattery_fire counterfire) (STV 1.0 0.9091)) +(: cnet_isa_204c513eeb (IsA counterblast reply) (STV 1.0 0.9091)) +(: cnet_isa_55e599642f (IsA counterblow blow) (STV 1.0 0.9091)) +(: cnet_isa_e967eaa52d (IsA counterbombardment counterfire) (STV 1.0 0.9091)) +(: cnet_isa_f8835cbb44 (IsA counterbore bit) (STV 1.0 0.9091)) +(: cnet_isa_19ff6cf6f5 (IsA countercharge charge) (STV 1.0 0.9091)) +(: cnet_isa_e14e094460 (IsA countercharge accusation) (STV 1.0 0.9091)) +(: cnet_isa_750e08db04 (IsA countercheck assay) (STV 1.0 0.9091)) +(: cnet_isa_0ec01c5f08 (IsA countercheck arrest) (STV 1.0 0.9091)) +(: cnet_isa_209d037ab0 (IsA counterclaim legal_action) (STV 1.0 0.9091)) +(: cnet_isa_995a7da951 (IsA countercoup coup_d_etat) (STV 1.0 0.9091)) +(: cnet_isa_28b4a69534 (IsA counterculture culture) (STV 1.0 0.9091)) +(: cnet_isa_5345556cd1 (IsA countercurrent strife) (STV 1.0 0.9091)) +(: cnet_isa_bec7495671 (IsA counterdemonstration presentation) (STV 1.0 0.9091)) +(: cnet_isa_1c8c9d907f (IsA counterdemonstrator demonstrator) (STV 1.0 0.9091)) +(: cnet_isa_08a9995a65 (IsA counterespionage counterintelligence) (STV 1.0 0.9091)) +(: cnet_isa_214182ec26 (IsA counterexample disproof) (STV 1.0 0.9091)) +(: cnet_isa_afd82385ad (IsA counterfactuality quality) (STV 1.0 0.9091)) +(: cnet_isa_97282f1728 (IsA counterfeit imitation) (STV 1.0 0.9091)) +(: cnet_isa_9e17db2255 (IsA counterfire fire) (STV 1.0 0.9091)) +(: cnet_isa_965f7be0a3 (IsA counterglow light) (STV 1.0 0.9091)) +(: cnet_isa_ff726971de (IsA counterintelligence intelligence) (STV 1.0 0.9091)) +(: cnet_isa_87426ed18a (IsA counterirritant medicine) (STV 1.0 0.9091)) +(: cnet_isa_b6dc90e393 (IsA countermand command) (STV 1.0 0.9091)) +(: cnet_isa_a30c9ecf95 (IsA countermarch march) (STV 1.0 0.9091)) +(: cnet_isa_9e8c80807f (IsA countermeasure measure) (STV 1.0 0.9091)) +(: cnet_isa_9d9453d733 (IsA countermine countermeasure) (STV 1.0 0.9091)) +(: cnet_isa_aaf674e3a1 (IsA countermortar_fire counterfire) (STV 1.0 0.9091)) +(: cnet_isa_f6494e2cd5 (IsA counteroffensive offense) (STV 1.0 0.9091)) +(: cnet_isa_f0896d7357 (IsA counteroffer offer) (STV 1.0 0.9091)) +(: cnet_isa_23c5d40397 (IsA counterpart duplicate) (STV 1.0 0.9091)) +(: cnet_isa_1227bfe652 (IsA counterpart equivalent) (STV 1.0 0.9091)) +(: cnet_isa_23cd5fcc77 (IsA counterperson waiter) (STV 1.0 0.9091)) +(: cnet_isa_17f315d2b6 (IsA counterplea plea) (STV 1.0 0.9091)) +(: cnet_isa_ebb2573add (IsA counterplot plot) (STV 1.0 0.9091)) +(: cnet_isa_d4305d1105 (IsA counterpoint polyphony) (STV 1.0 0.9091)) +(: cnet_isa_812a2e40e4 (IsA counterpreparation_fire fire) (STV 1.0 0.9091)) +(: cnet_isa_0c83c4722f (IsA counterproposal proposal) (STV 1.0 0.9091)) +(: cnet_isa_440c239c49 (IsA counterpunch punch) (STV 1.0 0.9091)) +(: cnet_isa_6c820a48c2 (IsA counterreformation reformation) (STV 1.0 0.9091)) +(: cnet_isa_26b543d23c (IsA counterrevolution revolution) (STV 1.0 0.9091)) +(: cnet_isa_cdeaaa2991 (IsA counterrevolutionist revolutionist) (STV 1.0 0.9091)) +(: cnet_isa_5d7ebf7fee (IsA countershot shooting) (STV 1.0 0.9091)) +(: cnet_isa_91843b2d11 (IsA countersignature signature) (STV 1.0 0.9091)) +(: cnet_isa_db516c83fd (IsA countersink hole) (STV 1.0 0.9091)) +(: cnet_isa_38267e50db (IsA counterspy spy) (STV 1.0 0.9091)) +(: cnet_isa_5034432a08 (IsA counterstain stain) (STV 1.0 0.9091)) +(: cnet_isa_4d7c12fcdd (IsA countersubversion counterintelligence) (STV 1.0 0.9091)) +(: cnet_isa_6e1b79c490 (IsA countersuit lawsuit) (STV 1.0 0.9091)) +(: cnet_isa_303756f281 (IsA countertenor singing_voice) (STV 1.0 0.9091)) +(: cnet_isa_54b2d0cb92 (IsA countertenor alto) (STV 1.0 0.9091)) +(: cnet_isa_fb41dea225 (IsA counterterrorism scheme) (STV 1.0 0.9091)) +(: cnet_isa_4551816612 (IsA counterterrorist person) (STV 1.0 0.9091)) +(: cnet_isa_a0928abafd (IsA counterterrorist_center agency) (STV 1.0 0.9091)) +(: cnet_isa_9a6ce3ffbf (IsA countertop tabletop) (STV 1.0 0.9091)) +(: cnet_isa_d7ce145722 (IsA countertransference transference) (STV 1.0 0.9091)) +(: cnet_isa_df90dff852 (IsA countervailing_duty duty) (STV 1.0 0.9091)) +(: cnet_isa_fad84a099e (IsA counterweight weight) (STV 1.0 0.9091)) +(: cnet_isa_7a54eb9073 (IsA countess noblewoman) (STV 1.0 0.9091)) +(: cnet_isa_6120e96ea0 (IsA countinghouse office) (STV 1.0 0.9091)) +(: cnet_isa_c3145c3ccc (IsA country administrative_district) (STV 1.0 0.9091)) +(: cnet_isa_f36ac7d7bd (IsA country geographical_area) (STV 1.0 0.9091)) +(: cnet_isa_7d8853be6b (IsA country_borage coleus) (STV 1.0 0.9091)) +(: cnet_isa_7a61052d8f (IsA country_club club) (STV 1.0 0.9091)) +(: cnet_isa_9a71eb989d (IsA country_dance folk_dancing) (STV 1.0 0.9091)) +(: cnet_isa_3e85e8f740 (IsA country_doctor general_practitioner) (STV 1.0 0.9091)) +(: cnet_isa_a23958ab84 (IsA country_house house) (STV 1.0 0.9091)) +(: cnet_isa_02775f7c5a (IsA country_music folk_music) (STV 1.0 0.9091)) +(: cnet_isa_a41abcf3d4 (IsA country_people folk) (STV 1.0 0.9091)) +(: cnet_isa_96fa335aa8 (IsA country_store mercantile_establishment) (STV 1.0 0.9091)) +(: cnet_isa_50ed83f6e5 (IsA countryfolk citizenry) (STV 1.0 0.9091)) +(: cnet_isa_feb0388908 (IsA countryman compatriot) (STV 1.0 0.9091)) +(: cnet_isa_d70cdecc6e (IsA countryman rustic) (STV 1.0 0.9091)) +(: cnet_isa_5b3bc7acca (IsA countryseat estate) (STV 1.0 0.9091)) +(: cnet_isa_ca31de0c25 (IsA countryside country) (STV 1.0 0.9091)) +(: cnet_isa_ee0b07e8e7 (IsA countrywoman compatriot) (STV 1.0 0.9091)) +(: cnet_isa_946188eb17 (IsA countrywoman rustic) (STV 1.0 0.9091)) +(: cnet_isa_9e38e8e1d0 (IsA county administrative_district) (STV 1.0 0.9091)) +(: cnet_isa_bf81cb538e (IsA county region) (STV 1.0 0.9091)) +(: cnet_isa_2c850f9adf (IsA county_agent adviser) (STV 1.0 0.9091)) +(: cnet_isa_d04f982765 (IsA county_council administration) (STV 1.0 0.9091)) +(: cnet_isa_24c5203bbb (IsA county_line boundary) (STV 1.0 0.9091)) +(: cnet_isa_5e7bc08fa1 (IsA county_palatine administrative_district) (STV 1.0 0.9091)) +(: cnet_isa_700aa10a43 (IsA county_seat seat) (STV 1.0 0.9091)) +(: cnet_isa_854bdf1171 (IsA county_town seat) (STV 1.0 0.9091)) +(: cnet_isa_aad57042a1 (IsA coup success) (STV 1.0 0.9091)) +(: cnet_isa_7fa9476321 (IsA coup_d_etat group_action) (STV 1.0 0.9091)) +(: cnet_isa_18f9ff0fd2 (IsA coup_de_theatre stagecraft) (STV 1.0 0.9091)) +(: cnet_isa_ce44dada9c (IsA coup_de_theatre theatrical_production) (STV 1.0 0.9091)) +(: cnet_isa_6deb62754a (IsA coup_de_theatre surprise) (STV 1.0 0.9091)) +(: cnet_isa_f5dd61c31b (IsA coupe car) (STV 1.0 0.9091)) +(: cnet_isa_af96a7e287 (IsA couple family) (STV 1.0 0.9091)) +(: cnet_isa_2e2da3fada (IsA couple pair) (STV 1.0 0.9091)) +(: cnet_isa_6f788f9826 (IsA couple unit) (STV 1.0 0.9091)) +(: cnet_isa_5f65f8af98 (IsA couple small_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_35ba02f8a9 (IsA couplet stanza) (STV 1.0 0.9091)) +(: cnet_isa_58c0ebc916 (IsA coupling sexual_activity) (STV 1.0 0.9091)) +(: cnet_isa_e5153bdad9 (IsA coupling mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_fef029bc9e (IsA coupon sample) (STV 1.0 0.9091)) +(: cnet_isa_f132448ca1 (IsA coupon commercial_document) (STV 1.0 0.9091)) +(: cnet_isa_a8143d0a48 (IsA coupon_bond bond) (STV 1.0 0.9091)) +(: cnet_isa_e7886ee53f (IsA courage spirit) (STV 1.0 0.9091)) +(: cnet_isa_394e629ebf (IsA courante dancing) (STV 1.0 0.9091)) +(: cnet_isa_6c1d1721b0 (IsA courbaril locust_tree) (STV 1.0 0.9091)) +(: cnet_isa_629dbed9de (IsA courbaril_copal copal) (STV 1.0 0.9091)) +(: cnet_isa_35528b3273 (IsA coureur_de_bois trapper) (STV 1.0 0.9091)) +(: cnet_isa_940a3c63c2 (IsA courlan wading_bird) (STV 1.0 0.9091)) +(: cnet_isa_3da8bb88f4 (IsA course action) (STV 1.0 0.9091)) +(: cnet_isa_01da367fef (IsA course education) (STV 1.0 0.9091)) +(: cnet_isa_c622ca829d (IsA course facility) (STV 1.0 0.9091)) +(: cnet_isa_311ef4e645 (IsA course layer) (STV 1.0 0.9091)) +(: cnet_isa_7d78c9746e (IsA course nutriment) (STV 1.0 0.9091)) +(: cnet_isa_9c0e21e423 (IsA course sery) (STV 1.0 0.9091)) +(: cnet_isa_b73a145416 (IsA course direction) (STV 1.0 0.9091)) +(: cnet_isa_96b30fa145 (IsA course_catalog catalog) (STV 1.0 0.9091)) +(: cnet_isa_cd6486b8a3 (IsA course_of_lecture course) (STV 1.0 0.9091)) +(: cnet_isa_158b933e30 (IsA course_of_study information) (STV 1.0 0.9091)) +(: cnet_isa_412dd2d58b (IsA course_session session) (STV 1.0 0.9091)) +(: cnet_isa_87469cdbb8 (IsA courser hunting_dog) (STV 1.0 0.9091)) +(: cnet_isa_967292b096 (IsA courser shorebird) (STV 1.0 0.9091)) +(: cnet_isa_dc4db8150c (IsA courser hunter) (STV 1.0 0.9091)) +(: cnet_isa_b31e8cce0a (IsA coursework work) (STV 1.0 0.9091)) +(: cnet_isa_c3ab4f8c23 (IsA coursing hunt) (STV 1.0 0.9091)) +(: cnet_isa_90b31dede1 (IsA court deference) (STV 1.0 0.9091)) +(: cnet_isa_13c3806ccd (IsA court area) (STV 1.0 0.9091)) +(: cnet_isa_6b08dac18a (IsA court playing_field) (STV 1.0 0.9091)) +(: cnet_isa_01da6798b1 (IsA court residence) (STV 1.0 0.9091)) +(: cnet_isa_590d0ed643 (IsA court assembly) (STV 1.0 0.9091)) +(: cnet_isa_b194814ba6 (IsA court cortege) (STV 1.0 0.9091)) +(: cnet_isa_e2b179de68 (IsA court government) (STV 1.0 0.9091)) +(: cnet_isa_b317aeede8 (IsA court room) (STV 1.0 0.9091)) +(: cnet_isa_713d3b4a1d (IsA court_game athletic_game) (STV 1.0 0.9091)) +(: cnet_isa_7bdfaca51d (IsA court_martial military_court) (STV 1.0 0.9091)) +(: cnet_isa_75b7c47925 (IsA court_martial trial) (STV 1.0 0.9091)) +(: cnet_isa_d81800c603 (IsA court_of_saint_jame_s court) (STV 1.0 0.9091)) +(: cnet_isa_b5dac352f6 (IsA court_order writ) (STV 1.0 0.9091)) +(: cnet_isa_4463369f36 (IsA court_plaster plaster) (STV 1.0 0.9091)) +(: cnet_isa_728fa1944a (IsA courtesy politeness) (STV 1.0 0.9091)) +(: cnet_isa_1a65ec772a (IsA courtesy manner) (STV 1.0 0.9091)) +(: cnet_isa_1101639e16 (IsA courtesy remark) (STV 1.0 0.9091)) +(: cnet_isa_3965068b69 (IsA courthouse government_building) (STV 1.0 0.9091)) +(: cnet_isa_af242e8960 (IsA courthouse house) (STV 1.0 0.9091)) +(: cnet_isa_55649dacfe (IsA courtier attendant) (STV 1.0 0.9091)) +(: cnet_isa_47f6ddad3a (IsA courtliness elegance) (STV 1.0 0.9091)) +(: cnet_isa_ad1f0b8a80 (IsA courtly_love code_of_conduct) (STV 1.0 0.9091)) +(: cnet_isa_7e8911f960 (IsA courtship entreaty) (STV 1.0 0.9091)) +(: cnet_isa_1093b947e3 (IsA courtyard open_space) (STV 1.0 0.9091)) +(: cnet_isa_64134fe0fd (IsA couscous dish) (STV 1.0 0.9091)) +(: cnet_isa_c76979a3e4 (IsA couscous pasta) (STV 1.0 0.9091)) +(: cnet_isa_fc34cb2c49 (IsA cousin relative) (STV 1.0 0.9091)) +(: cnet_isa_8d40bf794a (IsA couth perfection) (STV 1.0 0.9091)) +(: cnet_isa_8f1797fcdb (IsA couture dressmaking) (STV 1.0 0.9091)) +(: cnet_isa_66f8db358c (IsA couturier creator) (STV 1.0 0.9091)) +(: cnet_isa_d6681e80df (IsA couvade custom) (STV 1.0 0.9091)) +(: cnet_isa_bec653e0c2 (IsA couverture chocolate) (STV 1.0 0.9091)) +(: cnet_isa_83a25c2bfc (IsA covalence valence) (STV 1.0 0.9091)) +(: cnet_isa_09cbb65d7c (IsA covalent_bond chemical_bond) (STV 1.0 0.9091)) +(: cnet_isa_34c468c89f (IsA covariance variance) (STV 1.0 0.9091)) +(: cnet_isa_156463977a (IsA covariation variation) (STV 1.0 0.9091)) +(: cnet_isa_58544cc8fa (IsA cove cave) (STV 1.0 0.9091)) +(: cnet_isa_c00f79211e (IsA cove inlet) (STV 1.0 0.9091)) +(: cnet_isa_908ab19c45 (IsA coven assembly) (STV 1.0 0.9091)) +(: cnet_isa_e5daf83fa5 (IsA covenant agreement) (STV 1.0 0.9091)) +(: cnet_isa_7a626d8b2f (IsA covenant written_agreement) (STV 1.0 0.9091)) +(: cnet_isa_5ea63bc302 (IsA cover concealment) (STV 1.0 0.9091)) +(: cnet_isa_4f8c1d8d38 (IsA cover fire) (STV 1.0 0.9091)) +(: cnet_isa_e87e8fe46b (IsA cover recording) (STV 1.0 0.9091)) +(: cnet_isa_9a4780d005 (IsA cover_charge fixed_charge) (STV 1.0 0.9091)) +(: cnet_isa_c5ed96a1ce (IsA cover_crop crop) (STV 1.0 0.9091)) +(: cnet_isa_0f9783316e (IsA cover_girl photographer_s_model) (STV 1.0 0.9091)) +(: cnet_isa_b1a4bff80a (IsA cover_glass plate_glass) (STV 1.0 0.9091)) +(: cnet_isa_e636f44daa (IsA cover_plate covering) (STV 1.0 0.9091)) +(: cnet_isa_59e3b456c9 (IsA cover_up concealment) (STV 1.0 0.9091)) +(: cnet_isa_a42bb4df14 (IsA coverage extent) (STV 1.0 0.9091)) +(: cnet_isa_9abf5a609a (IsA coverage new) (STV 1.0 0.9091)) +(: cnet_isa_66d1cdbf0e (IsA coverage sum) (STV 1.0 0.9091)) +(: cnet_isa_bfd94a651f (IsA coverall protective_garment) (STV 1.0 0.9091)) +(: cnet_isa_d819261858 (IsA covered_bridge bridge) (STV 1.0 0.9091)) +(: cnet_isa_9c2b9b414c (IsA covered_couch litter) (STV 1.0 0.9091)) +(: cnet_isa_94cd9a04e7 (IsA covered_option option) (STV 1.0 0.9091)) +(: cnet_isa_105d0d76ba (IsA covered_smut smut) (STV 1.0 0.9091)) +(: cnet_isa_35725523cf (IsA covered_wagon wagon) (STV 1.0 0.9091)) +(: cnet_isa_97bc352153 (IsA covering protection) (STV 1.0 0.9091)) +(: cnet_isa_663dbdb529 (IsA covering artifact) (STV 1.0 0.9091)) +(: cnet_isa_7fc7cc1612 (IsA covering natural_object) (STV 1.0 0.9091)) +(: cnet_isa_2f5b1e48a0 (IsA covering_letter letter) (STV 1.0 0.9091)) +(: cnet_isa_c9677300e2 (IsA covering_material building_material) (STV 1.0 0.9091)) +(: cnet_isa_c554191fca (IsA coverlet bedspread) (STV 1.0 0.9091)) +(: cnet_isa_230b587423 (IsA covert flock) (STV 1.0 0.9091)) +(: cnet_isa_8ab317c9b4 (IsA covert_operation operation) (STV 1.0 0.9091)) +(: cnet_isa_17c72b6469 (IsA covertness privacy) (STV 1.0 0.9091)) +(: cnet_isa_5f10890940 (IsA covetousness envy) (STV 1.0 0.9091)) +(: cnet_isa_78fb8d8e24 (IsA covey flock) (STV 1.0 0.9091)) +(: cnet_isa_6f66892361 (IsA covey gathering) (STV 1.0 0.9091)) +(: cnet_isa_bdceb589ae (IsA cow cattle) (STV 1.0 0.9091)) +(: cnet_isa_2906a826ab (IsA cow placental) (STV 1.0 0.9091)) +(: cnet_isa_fcf881908b (IsA cow unpleasant_woman) (STV 1.0 0.9091)) +(: cnet_isa_6b35443358 (IsA cow_manure manure) (STV 1.0 0.9091)) +(: cnet_isa_bc4417cd79 (IsA cow_parsley herb) (STV 1.0 0.9091)) +(: cnet_isa_2089f68c19 (IsA cow_parsnip herb) (STV 1.0 0.9091)) +(: cnet_isa_e3000f919e (IsA cow_pasture pasture) (STV 1.0 0.9091)) +(: cnet_isa_94928d21e0 (IsA cow_pen pen) (STV 1.0 0.9091)) +(: cnet_isa_43d37367b5 (IsA cow_pie dropping) (STV 1.0 0.9091)) +(: cnet_isa_21972ca837 (IsA cow_pony saddle_horse) (STV 1.0 0.9091)) +(: cnet_isa_2f7c5cd791 (IsA cow_shark shark) (STV 1.0 0.9091)) +(: cnet_isa_d5d5298aac (IsA cow_town town) (STV 1.0 0.9091)) +(: cnet_isa_0a3e65df08 (IsA cowage mucuna) (STV 1.0 0.9091)) +(: cnet_isa_91a5da21c0 (IsA cowage pod) (STV 1.0 0.9091)) +(: cnet_isa_fd059cd541 (IsA coward person) (STV 1.0 0.9091)) +(: cnet_isa_a3c4fcc5ae (IsA cowardice spirit) (STV 1.0 0.9091)) +(: cnet_isa_415566d208 (IsA cowbarn barn) (STV 1.0 0.9091)) +(: cnet_isa_9d4a71e9c2 (IsA cowbell bell) (STV 1.0 0.9091)) +(: cnet_isa_c559900fec (IsA cowberry cranberry) (STV 1.0 0.9091)) +(: cnet_isa_b4fd7b8f05 (IsA cowbird new_world_blackbird) (STV 1.0 0.9091)) +(: cnet_isa_e65d26f46f (IsA cowboy adventurer) (STV 1.0 0.9091)) +(: cnet_isa_a93fd76724 (IsA cowboy performer) (STV 1.0 0.9091)) +(: cnet_isa_6bacdb5fd6 (IsA cowboy ranch_hand) (STV 1.0 0.9091)) +(: cnet_isa_fa3ef40484 (IsA cowboy_boot boot) (STV 1.0 0.9091)) +(: cnet_isa_e3901814f1 (IsA cowboy_hat hat) (STV 1.0 0.9091)) +(: cnet_isa_5e36bf8aee (IsA cowfish boxfish) (STV 1.0 0.9091)) +(: cnet_isa_a0110fae2b (IsA cowgirl cowboy) (STV 1.0 0.9091)) +(: cnet_isa_f2206c834d (IsA cowherb flower) (STV 1.0 0.9091)) +(: cnet_isa_e5bedb0ad6 (IsA cowhide whip) (STV 1.0 0.9091)) +(: cnet_isa_2341b71d9f (IsA cowhide hide) (STV 1.0 0.9091)) +(: cnet_isa_be782d8d17 (IsA cowhide leather) (STV 1.0 0.9091)) +(: cnet_isa_b20bae9ab2 (IsA cowl hood) (STV 1.0 0.9091)) +(: cnet_isa_a7d7f04176 (IsA cowlick hair) (STV 1.0 0.9091)) +(: cnet_isa_73281abcd1 (IsA cownose_ray eagle_ray) (STV 1.0 0.9091)) +(: cnet_isa_061a98ec94 (IsA cowpea legume) (STV 1.0 0.9091)) +(: cnet_isa_f9a28d6426 (IsA cowpen_daisy crownbeard) (STV 1.0 0.9091)) +(: cnet_isa_58545c0ed5 (IsA cowper_s_gland exocrine_gland) (STV 1.0 0.9091)) +(: cnet_isa_0fc1f86ef2 (IsA cowpox animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_99915da637 (IsA cowpox pox) (STV 1.0 0.9091)) +(: cnet_isa_34c893688b (IsA cowrie gastropod) (STV 1.0 0.9091)) +(: cnet_isa_a468333bea (IsA cow_milk milk) (STV 1.0 0.9091)) +(: cnet_isa_f74ab5ba92 (IsA cowslip primrose) (STV 1.0 0.9091)) +(: cnet_isa_e30139c706 (IsA cox_s_orange_pippin pippin) (STV 1.0 0.9091)) +(: cnet_isa_262c62ccbc (IsA cox_2_inhibitor anti_inflammatory) (STV 1.0 0.9091)) +(: cnet_isa_536f6b3541 (IsA coxcomb dandy) (STV 1.0 0.9091)) +(: cnet_isa_19fb61ccef (IsA coxsackievirus enterovirus) (STV 1.0 0.9091)) +(: cnet_isa_6b40ad3abd (IsA coxswain helmsman) (STV 1.0 0.9091)) +(: cnet_isa_b7a982b414 (IsA coydog coyote) (STV 1.0 0.9091)) +(: cnet_isa_54de78116e (IsA coyness affectedness) (STV 1.0 0.9091)) +(: cnet_isa_a8236f6c48 (IsA coyol feather_palm) (STV 1.0 0.9091)) +(: cnet_isa_7c3194653f (IsA coyote wolf) (STV 1.0 0.9091)) +(: cnet_isa_57d491a0a5 (IsA coyote fire_warden) (STV 1.0 0.9091)) +(: cnet_isa_713c3822f0 (IsA coyote smuggler) (STV 1.0 0.9091)) +(: cnet_isa_99cfa56bcd (IsA coyote_brush shrub) (STV 1.0 0.9091)) +(: cnet_isa_b78316e5cb (IsA coypu rodent) (STV 1.0 0.9091)) +(: cnet_isa_08348c0cc1 (IsA coziness comfort) (STV 1.0 0.9091)) +(: cnet_isa_e7e695450c (IsA cpu_board circuit_board) (STV 1.0 0.9091)) +(: cnet_isa_d20f04eeb3 (IsA crab animal) (STV 1.0 0.9091)) +(: cnet_isa_c8e32ba1e8 (IsA crab crustacean) (STV 1.0 0.9091)) +(: cnet_isa_2812822412 (IsA crab rowing) (STV 1.0 0.9091)) +(: cnet_isa_b3f8a49740 (IsA crab decapod_crustacean) (STV 1.0 0.9091)) +(: cnet_isa_4ea3ff36bf (IsA crab person) (STV 1.0 0.9091)) +(: cnet_isa_5cd92c16ba (IsA crab shellfish) (STV 1.0 0.9091)) +(: cnet_isa_c9e29d8726 (IsA crab grouch) (STV 1.0 0.9091)) +(: cnet_isa_4c0e1cc2e1 (IsA crab_apple apple) (STV 1.0 0.9091)) +(: cnet_isa_0986b17915 (IsA crab_apple apple_tree) (STV 1.0 0.9091)) +(: cnet_isa_1866f05f89 (IsA crab_cactus cactus) (STV 1.0 0.9091)) +(: cnet_isa_fc932505db (IsA crab_cocktail cocktail) (STV 1.0 0.9091)) +(: cnet_isa_19c9e5dd79 (IsA crab_eating_dog wild_dog) (STV 1.0 0.9091)) +(: cnet_isa_49c60328c8 (IsA crab_eating_macaque macaque) (STV 1.0 0.9091)) +(: cnet_isa_5d3bcfe838 (IsA crab_eating_opossum opossum) (STV 1.0 0.9091)) +(: cnet_isa_2d67e2ac5b (IsA crab_eating_raccoon raccoon) (STV 1.0 0.9091)) +(: cnet_isa_9722f56ec3 (IsA crab_leg crab) (STV 1.0 0.9091)) +(: cnet_isa_8254ca4dbe (IsA crab_louis salad) (STV 1.0 0.9091)) +(: cnet_isa_8bfd4fd79a (IsA crab_louse louse) (STV 1.0 0.9091)) +(: cnet_isa_b3e89d2dc2 (IsA crabapple_jelly apple_jelly) (STV 1.0 0.9091)) +(: cnet_isa_272fa6986c (IsA crabbiness ill_nature) (STV 1.0 0.9091)) +(: cnet_isa_83f3d03e15 (IsA crabeater_seal seal) (STV 1.0 0.9091)) +(: cnet_isa_bdfc995a43 (IsA crabgrass grass) (STV 1.0 0.9091)) +(: cnet_isa_92fcf3e411 (IsA crab seafood) (STV 1.0 0.9091)) +(: cnet_isa_5eff71a5f7 (IsA cracidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_452ff9aa63 (IsA crack cocaine) (STV 1.0 0.9091)) +(: cnet_isa_59603dcfab (IsA crack attempt) (STV 1.0 0.9091)) +(: cnet_isa_86885f1c80 (IsA crack blemish) (STV 1.0 0.9091)) +(: cnet_isa_7429b4b7be (IsA crack noise) (STV 1.0 0.9091)) +(: cnet_isa_ed7072303f (IsA crack opening) (STV 1.0 0.9091)) +(: cnet_isa_fe1a36f137 (IsA crack_addict drug_addict) (STV 1.0 0.9091)) +(: cnet_isa_9203196bcf (IsA crack_willow willow) (STV 1.0 0.9091)) +(: cnet_isa_19218f2e56 (IsA crackdown suppression) (STV 1.0 0.9091)) +(: cnet_isa_badf910e8d (IsA cracked_wheat wheat) (STV 1.0 0.9091)) +(: cnet_isa_724717e7a4 (IsA cracked_wheat_bread bread) (STV 1.0 0.9091)) +(: cnet_isa_13202cad92 (IsA cracker party_favor) (STV 1.0 0.9091)) +(: cnet_isa_e3d7b9658f (IsA cracker bread) (STV 1.0 0.9091)) +(: cnet_isa_9796abdcb1 (IsA cracker programmer) (STV 1.0 0.9091)) +(: cnet_isa_2f8f29be46 (IsA cracker_crumb crumb) (STV 1.0 0.9091)) +(: cnet_isa_a42794fd87 (IsA cracking chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_fb44739859 (IsA crackle china) (STV 1.0 0.9091)) +(: cnet_isa_626155b873 (IsA crackle noise) (STV 1.0 0.9091)) +(: cnet_isa_eadc62329b (IsA crackling residue) (STV 1.0 0.9091)) +(: cnet_isa_648c0b574e (IsA crackling edible_fat) (STV 1.0 0.9091)) +(: cnet_isa_d2597dda38 (IsA crackpot eccentric) (STV 1.0 0.9091)) +(: cnet_isa_3a8df3ccc7 (IsA cracticidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_d43a29ac30 (IsA cracticus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_ec37c8b04a (IsA cradle baby_bed) (STV 1.0 0.9091)) +(: cnet_isa_71d16a489b (IsA cradle birth) (STV 1.0 0.9091)) +(: cnet_isa_019157ce26 (IsA cradle_cap dermatitis) (STV 1.0 0.9091)) +(: cnet_isa_b51f9460da (IsA craft vehicle) (STV 1.0 0.9091)) +(: cnet_isa_751e5a34c7 (IsA craft shrewdness) (STV 1.0 0.9091)) +(: cnet_isa_dd85dd8186 (IsA craft skill) (STV 1.0 0.9091)) +(: cnet_isa_9986d28b39 (IsA craft class) (STV 1.0 0.9091)) +(: cnet_isa_a189f8f9b6 (IsA craft_fair bazaar) (STV 1.0 0.9091)) +(: cnet_isa_a6e08dc602 (IsA craft_union union) (STV 1.0 0.9091)) +(: cnet_isa_bb2c006390 (IsA craftiness disingenuousness) (STV 1.0 0.9091)) +(: cnet_isa_bff10e791b (IsA craftsman creator) (STV 1.0 0.9091)) +(: cnet_isa_2d246255cd (IsA craftsman professional) (STV 1.0 0.9091)) +(: cnet_isa_8e6ae1195f (IsA craftsman skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_0a66640049 (IsA crag cliff) (STV 1.0 0.9091)) +(: cnet_isa_5c4cf0cd55 (IsA crake rail) (STV 1.0 0.9091)) +(: cnet_isa_b75256d819 (IsA crambe dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_54d3038e5a (IsA crammer textbook) (STV 1.0 0.9091)) +(: cnet_isa_55b8c5c34f (IsA crammer school) (STV 1.0 0.9091)) +(: cnet_isa_6dbd815b96 (IsA crammer coach) (STV 1.0 0.9091)) +(: cnet_isa_be176638b6 (IsA crammer student) (STV 1.0 0.9091)) +(: cnet_isa_a4868e40d6 (IsA cramp clamp) (STV 1.0 0.9091)) +(: cnet_isa_a0d41a4c22 (IsA cramp strip) (STV 1.0 0.9091)) +(: cnet_isa_6f1311135e (IsA crampon grapnel) (STV 1.0 0.9091)) +(: cnet_isa_d3bee2a983 (IsA crampon spike) (STV 1.0 0.9091)) +(: cnet_isa_6813d49bd2 (IsA cran volume_unit) (STV 1.0 0.9091)) +(: cnet_isa_95137a7856 (IsA cranberry berry) (STV 1.0 0.9091)) +(: cnet_isa_cb9690970a (IsA cranberry shrub) (STV 1.0 0.9091)) +(: cnet_isa_ae9e9b15b6 (IsA cranberry_bush shrub) (STV 1.0 0.9091)) +(: cnet_isa_307a423430 (IsA cranberry_culture culture) (STV 1.0 0.9091)) +(: cnet_isa_f8bafeba9a (IsA cranberry_juice fruit_juice) (STV 1.0 0.9091)) +(: cnet_isa_2539903767 (IsA cranberry_sauce condiment) (STV 1.0 0.9091)) +(: cnet_isa_bb7c751cea (IsA crane wading_bird) (STV 1.0 0.9091)) +(: cnet_isa_b29db3dada (IsA crane lifting_device) (STV 1.0 0.9091)) +(: cnet_isa_3e68c36145 (IsA crane_fly dipterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_b13c918585 (IsA cranesbill geranium) (STV 1.0 0.9091)) +(: cnet_isa_44506f38de (IsA crangon arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_df43c780ec (IsA crangonidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_23248cce60 (IsA cranial_cavity cavity) (STV 1.0 0.9091)) +(: cnet_isa_1e21a046cf (IsA cranial_nerve nerve) (STV 1.0 0.9091)) +(: cnet_isa_c6c5157029 (IsA craniology life_science) (STV 1.0 0.9091)) +(: cnet_isa_8ca15fd532 (IsA craniometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_b69d2dab63 (IsA craniometric_point landmark) (STV 1.0 0.9091)) +(: cnet_isa_f4f5c25ba4 (IsA craniometry physical_anthropology) (STV 1.0 0.9091)) +(: cnet_isa_25e20a176e (IsA craniotomy operation) (STV 1.0 0.9091)) +(: cnet_isa_19050b19d5 (IsA cranium bone) (STV 1.0 0.9091)) +(: cnet_isa_474b54a290 (IsA crank hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_ef44487296 (IsA crank_call call) (STV 1.0 0.9091)) +(: cnet_isa_162fe841b1 (IsA crank_handle crank) (STV 1.0 0.9091)) +(: cnet_isa_d182ea199d (IsA crank_letter letter) (STV 1.0 0.9091)) +(: cnet_isa_f3375af739 (IsA crankcase housing) (STV 1.0 0.9091)) +(: cnet_isa_aa052c8e35 (IsA crankiness ill_nature) (STV 1.0 0.9091)) +(: cnet_isa_37a9015230 (IsA crankshaft rotating_shaft) (STV 1.0 0.9091)) +(: cnet_isa_1228dbd9f4 (IsA cranny hole) (STV 1.0 0.9091)) +(: cnet_isa_8623bfdf9f (IsA crap fecal_matter) (STV 1.0 0.9091)) +(: cnet_isa_c64ce4b1e7 (IsA crap_shooting crap) (STV 1.0 0.9091)) +(: cnet_isa_c9892eb7dd (IsA crapaud frog) (STV 1.0 0.9091)) +(: cnet_isa_f1776ef1fd (IsA crape pancake) (STV 1.0 0.9091)) +(: cnet_isa_15fd2dbd60 (IsA crape_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_ee88ded80f (IsA crape_jasmine shrub) (STV 1.0 0.9091)) +(: cnet_isa_d1584d763c (IsA crape_myrtle shrub) (STV 1.0 0.9091)) +(: cnet_isa_9deb7fb2d3 (IsA crappie fish) (STV 1.0 0.9659)) +(: cnet_isa_9c94fbb55a (IsA crappie sunfish) (STV 1.0 0.9091)) +(: cnet_isa_f4bed71a32 (IsA crap game_of_chance) (STV 1.0 0.9091)) +(: cnet_isa_12e0a59d5e (IsA crap two) (STV 1.0 0.9091)) +(: cnet_isa_869e740b0e (IsA crapshoot risk) (STV 1.0 0.9091)) +(: cnet_isa_b419081c34 (IsA crapshooter gambler) (STV 1.0 0.9091)) +(: cnet_isa_d65ef0a87e (IsA crash hit) (STV 1.0 0.9091)) +(: cnet_isa_6e8510a5c6 (IsA crash mishap) (STV 1.0 0.9091)) +(: cnet_isa_2e3dc6ed8d (IsA crash accident) (STV 1.0 0.9091)) +(: cnet_isa_013f284f14 (IsA crash happening) (STV 1.0 0.9091)) +(: cnet_isa_90350d9d69 (IsA crash_barrier barrier) (STV 1.0 0.9091)) +(: cnet_isa_09d2a2e119 (IsA crash_course course_of_study) (STV 1.0 0.9091)) +(: cnet_isa_4caceea620 (IsA crash_dive descent) (STV 1.0 0.9091)) +(: cnet_isa_63c65fa6e9 (IsA crash_helmet helmet) (STV 1.0 0.9091)) +(: cnet_isa_078069b2b8 (IsA crash_landing forced_landing) (STV 1.0 0.9091)) +(: cnet_isa_980ded28c7 (IsA craspedia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d0363c8356 (IsA crassness insensitivity) (STV 1.0 0.9091)) +(: cnet_isa_a338173adb (IsA crassostrea mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_73db5c3765 (IsA crassula plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_3d06166969 (IsA crassulaceae plant_family) (STV 1.0 0.9091)) +(: cnet_isa_3b63546873 (IsA crataegus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_52fad2e0e5 (IsA crate box) (STV 1.0 0.9091)) +(: cnet_isa_f91db7f5b2 (IsA crate containerful) (STV 1.0 0.9091)) +(: cnet_isa_10d765275a (IsA crater natural_depression) (STV 1.0 0.9091)) +(: cnet_isa_ea6f61dba0 (IsA crateva dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_93d96013e2 (IsA craton part) (STV 1.0 0.9091)) +(: cnet_isa_586f046462 (IsA cravat neckwear) (STV 1.0 0.9091)) +(: cnet_isa_7c27a93f17 (IsA cravenness cowardice) (STV 1.0 0.9091)) +(: cnet_isa_8ca4874886 (IsA craving desire) (STV 1.0 0.9091)) +(: cnet_isa_71dcf87cb0 (IsA craw stomach) (STV 1.0 0.9091)) +(: cnet_isa_065cb660ce (IsA crawl locomotion) (STV 1.0 0.9091)) +(: cnet_isa_dfd6b7109d (IsA crawl motion) (STV 1.0 0.9091)) +(: cnet_isa_25498f10a8 (IsA crawl swimming_stroke) (STV 1.0 0.9091)) +(: cnet_isa_6befe70f05 (IsA crawler person) (STV 1.0 0.9091)) +(: cnet_isa_fb67b27f17 (IsA crawlspace space) (STV 1.0 0.9091)) +(: cnet_isa_f9691ad85c (IsA crax bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_2c2240bb98 (IsA crayfish decapod_crustacean) (STV 1.0 0.9091)) +(: cnet_isa_4bc38edd5e (IsA crayfish shellfish) (STV 1.0 0.9091)) +(: cnet_isa_221c18e837 (IsA crayon writing_implement) (STV 1.0 0.9091)) +(: cnet_isa_0c86d8bb70 (IsA crayon colorful_stick_of_wax) (STV 1.0 0.9091)) +(: cnet_isa_40d8784383 (IsA craze crack) (STV 1.0 0.9091)) +(: cnet_isa_4de537600a (IsA craze mania) (STV 1.0 0.9091)) +(: cnet_isa_93924b3ce9 (IsA craziness insanity) (STV 1.0 0.9091)) +(: cnet_isa_c5ff541178 (IsA crazy lunatic) (STV 1.0 0.9091)) +(: cnet_isa_212ac10bd0 (IsA crazy_quilt patchwork) (STV 1.0 0.9091)) +(: cnet_isa_026b11903a (IsA creak noise) (STV 1.0 0.9091)) +(: cnet_isa_cf13cd4a7b (IsA cream toiletry) (STV 1.0 0.9091)) +(: cnet_isa_7e356b423c (IsA cream dairy_product) (STV 1.0 0.9091)) +(: cnet_isa_86f166730d (IsA cream elite) (STV 1.0 0.9091)) +(: cnet_isa_c113e17b62 (IsA cream_cheese cheese) (STV 1.0 0.9091)) +(: cnet_isa_caf77a21b9 (IsA cream_colored_courser courser) (STV 1.0 0.9091)) +(: cnet_isa_325ada491a (IsA cream_of_tartar salt) (STV 1.0 0.9091)) +(: cnet_isa_0292f311c7 (IsA cream_of_tartar_tree angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_900b167602 (IsA cream_pitcher pitcher) (STV 1.0 0.9091)) +(: cnet_isa_0d2e63219b (IsA cream_puff puff) (STV 1.0 0.9091)) +(: cnet_isa_021fef3723 (IsA cream_sauce white_sauce) (STV 1.0 0.9091)) +(: cnet_isa_059b4cffa6 (IsA cream_soda soft_drink) (STV 1.0 0.9091)) +(: cnet_isa_20e0f6820c (IsA creamcup poppy) (STV 1.0 0.9091)) +(: cnet_isa_f6bc106766 (IsA creamery workplace) (STV 1.0 0.9091)) +(: cnet_isa_c5c0fb6c51 (IsA creaminess thickness) (STV 1.0 0.9091)) +(: cnet_isa_f2a8dbb6f3 (IsA creatine amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_e855d42bc0 (IsA creating_by_mental_act creation) (STV 1.0 0.9091)) +(: cnet_isa_85e370ebd2 (IsA creating_by_removal creation) (STV 1.0 0.9091)) +(: cnet_isa_1444f265ac (IsA creating_from_raw_material creation) (STV 1.0 0.9091)) +(: cnet_isa_9fc3988ac0 (IsA creation activity) (STV 1.0 0.9091)) +(: cnet_isa_bc5aaff5f0 (IsA creation artifact) (STV 1.0 0.9091)) +(: cnet_isa_1479bf7364 (IsA creation beginning) (STV 1.0 0.9091)) +(: cnet_isa_75c4d23509 (IsA creation_science creationism) (STV 1.0 0.9091)) +(: cnet_isa_85688af45b (IsA creationism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_ee82595d98 (IsA creativity ability) (STV 1.0 0.9091)) +(: cnet_isa_b00ca3848d (IsA creator person) (STV 1.0 0.9091)) +(: cnet_isa_e03076c7e9 (IsA creature created_being) (STV 1.0 0.9091)) +(: cnet_isa_024e3e1fb4 (IsA creature living_thing) (STV 1.0 0.9091)) +(: cnet_isa_7f447db607 (IsA creature person) (STV 1.0 0.9091)) +(: cnet_isa_81e2234c44 (IsA creature slave) (STV 1.0 0.9091)) +(: cnet_isa_1bc5c536c9 (IsA creche hospital) (STV 1.0 0.9091)) +(: cnet_isa_e661843bb1 (IsA creche representation) (STV 1.0 0.9091)) +(: cnet_isa_f70f3be665 (IsA credence attitude) (STV 1.0 0.9091)) +(: cnet_isa_2f7a969d64 (IsA credenza buffet) (STV 1.0 0.9091)) +(: cnet_isa_6d30eaca64 (IsA credibility quality) (STV 1.0 0.9091)) +(: cnet_isa_e0bff41ae5 (IsA credit accomplishment) (STV 1.0 0.9091)) +(: cnet_isa_c99e86e5d0 (IsA credit attainment) (STV 1.0 0.9091)) +(: cnet_isa_93a06f2f9b (IsA credit title) (STV 1.0 0.9091)) +(: cnet_isa_ab836b8c77 (IsA credit asset) (STV 1.0 0.9091)) +(: cnet_isa_70d206f92f (IsA credit entry) (STV 1.0 0.9091)) +(: cnet_isa_277f1d90e3 (IsA credit payment) (STV 1.0 0.9091)) +(: cnet_isa_f345dc26f5 (IsA credit_account open_end_credit) (STV 1.0 0.9091)) +(: cnet_isa_a7cc197c9c (IsA credit_analyst analyst) (STV 1.0 0.9091)) +(: cnet_isa_43a34a89d0 (IsA credit_application application) (STV 1.0 0.9091)) +(: cnet_isa_cca4002274 (IsA credit_bureau agency) (STV 1.0 0.9091)) +(: cnet_isa_b257186882 (IsA credit_card card) (STV 1.0 0.9091)) +(: cnet_isa_89c7d3d67a (IsA credit_card open_end_credit) (STV 1.0 0.9091)) +(: cnet_isa_0c12ae38ab (IsA credit_card positive_identification) (STV 1.0 0.9091)) +(: cnet_isa_7021cae77b (IsA credit_crunch financial_condition) (STV 1.0 0.9091)) +(: cnet_isa_366306e1b0 (IsA credit_line credit) (STV 1.0 0.9091)) +(: cnet_isa_44a7f8cf46 (IsA credit_order order) (STV 1.0 0.9091)) +(: cnet_isa_38a8e731d5 (IsA credit_rating estimate) (STV 1.0 0.9091)) +(: cnet_isa_cee7b2301d (IsA credit_side accounting) (STV 1.0 0.9091)) +(: cnet_isa_25e312e1d5 (IsA credit_system system) (STV 1.0 0.9091)) +(: cnet_isa_bb2f655765 (IsA credit_union depository_financial_institution) (STV 1.0 0.9091)) +(: cnet_isa_674dd653f4 (IsA creditor person) (STV 1.0 0.9091)) +(: cnet_isa_53f5360e77 (IsA credit acknowledgment) (STV 1.0 0.9091)) +(: cnet_isa_e1fad2eaa0 (IsA credit list) (STV 1.0 0.9091)) +(: cnet_isa_7f3be17fe2 (IsA creditworthiness trustworthiness) (STV 1.0 0.9091)) +(: cnet_isa_e4e29710b7 (IsA credulity trust) (STV 1.0 0.9091)) +(: cnet_isa_9a433b9e1b (IsA credulousness naivete) (STV 1.0 0.9091)) +(: cnet_isa_0700a14b6a (IsA cree algonquian) (STV 1.0 0.9091)) +(: cnet_isa_cb15571d7c (IsA cree algonquin) (STV 1.0 0.9091)) +(: cnet_isa_95c89c3212 (IsA creed doctrine) (STV 1.0 0.9091)) +(: cnet_isa_b37708c953 (IsA creek small_river) (STV 1.0 0.9454)) +(: cnet_isa_11294b0f29 (IsA creek native_american) (STV 1.0 0.9091)) +(: cnet_isa_8a07683ffc (IsA creek_confederacy confederation) (STV 1.0 0.9091)) +(: cnet_isa_1b0f74930b (IsA creel basket) (STV 1.0 0.9091)) +(: cnet_isa_851448c5e8 (IsA creep pen) (STV 1.0 0.9091)) +(: cnet_isa_9064f93c47 (IsA creep change_of_location) (STV 1.0 0.9091)) +(: cnet_isa_b928a1af0e (IsA creep unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_12894653d3 (IsA creep_feed feed) (STV 1.0 0.9091)) +(: cnet_isa_66883a432b (IsA creeper oscine) (STV 1.0 0.9091)) +(: cnet_isa_d0308eecaa (IsA creeper vascular_plant) (STV 1.0 0.9091)) +(: cnet_isa_cd1cd58cab (IsA creepiness touch) (STV 1.0 0.9091)) +(: cnet_isa_4f694e3691 (IsA creeping_bellflower campanula) (STV 1.0 0.9091)) +(: cnet_isa_c3cecb1879 (IsA creeping_bent bent) (STV 1.0 0.9091)) +(: cnet_isa_d3bbc16961 (IsA creeping_bugle bugle) (STV 1.0 0.9091)) +(: cnet_isa_2d975b8874 (IsA creeping_buttercup buttercup) (STV 1.0 0.9091)) +(: cnet_isa_e8e7b2b1a1 (IsA creeping_fern climbing_fern) (STV 1.0 0.9091)) +(: cnet_isa_1a1677536e (IsA creeping_juniper juniper) (STV 1.0 0.9091)) +(: cnet_isa_c2d3b906ce (IsA creeping_oxalis oxalis) (STV 1.0 0.9091)) +(: cnet_isa_bbcdda72bd (IsA creeping_snowberry shrublet) (STV 1.0 0.9091)) +(: cnet_isa_f7f2074730 (IsA creeping_soft_grass grass) (STV 1.0 0.9091)) +(: cnet_isa_90c781892b (IsA creeping_spike_rush spike_rush) (STV 1.0 0.9091)) +(: cnet_isa_cc803f500d (IsA creeping_st_john_s_wort st_john_s_wort) (STV 1.0 0.9091)) +(: cnet_isa_d4be573693 (IsA creeping_willow willow) (STV 1.0 0.9091)) +(: cnet_isa_8fc52cea64 (IsA creeping_zinnia herb) (STV 1.0 0.9091)) +(: cnet_isa_85bb439a68 (IsA creep fear) (STV 1.0 0.9091)) +(: cnet_isa_742f84770c (IsA creep animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_e63e66ffaf (IsA creepy_crawly dislike) (STV 1.0 0.9091)) +(: cnet_isa_eec097d4c8 (IsA creepy_crawly animal) (STV 1.0 0.9091)) +(: cnet_isa_9ae682255c (IsA cremain cadaver) (STV 1.0 0.9091)) +(: cnet_isa_51850bd6cb (IsA cremation incineration) (STV 1.0 0.9091)) +(: cnet_isa_84e5db19df (IsA crematory furnace) (STV 1.0 0.9091)) +(: cnet_isa_ed864c0543 (IsA crematory morgue) (STV 1.0 0.9091)) +(: cnet_isa_994391d187 (IsA creme_anglais custard) (STV 1.0 0.9091)) +(: cnet_isa_fa28d16b03 (IsA creme_brulee custard) (STV 1.0 0.9091)) +(: cnet_isa_2617451958 (IsA creme_caramel custard) (STV 1.0 0.9091)) +(: cnet_isa_0d3b1e7d01 (IsA creme_de_cacao liqueur) (STV 1.0 0.9091)) +(: cnet_isa_5b7560d598 (IsA creme_de_fraise liqueur) (STV 1.0 0.9091)) +(: cnet_isa_e7b78d95f9 (IsA creme_de_menthe liqueur) (STV 1.0 0.9091)) +(: cnet_isa_d998055fc2 (IsA crenate_leaf leaf) (STV 1.0 0.9091)) +(: cnet_isa_281c6d84ad (IsA crenel space) (STV 1.0 0.9091)) +(: cnet_isa_32df784a71 (IsA crenelation construction) (STV 1.0 0.9091)) +(: cnet_isa_964d1804c8 (IsA creole natural_language) (STV 1.0 0.9091)) +(: cnet_isa_d8b9d2aebc (IsA creole american) (STV 1.0 0.9091)) +(: cnet_isa_92e7fd86b2 (IsA creole_fish grouper) (STV 1.0 0.9091)) +(: cnet_isa_2351c65739 (IsA creosol phenol) (STV 1.0 0.9091)) +(: cnet_isa_039fea2db9 (IsA creosote organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_d07ba2bd4a (IsA creosote_bush shrub) (STV 1.0 0.9091)) +(: cnet_isa_a9eaf00d65 (IsA crepe fabric) (STV 1.0 0.9091)) +(: cnet_isa_c45e635605 (IsA crepe paper) (STV 1.0 0.9091)) +(: cnet_isa_2a36912cc9 (IsA crepe_de_chine crepe) (STV 1.0 0.9091)) +(: cnet_isa_7c1c428f04 (IsA crepe_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_b04bd2f3d5 (IsA crepe_rubber rubber) (STV 1.0 0.9091)) +(: cnet_isa_14282573ab (IsA crepe_suzette crape) (STV 1.0 0.9091)) +(: cnet_isa_aee0f1c110 (IsA crepis asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ce621c735b (IsA crepitation_rale rattle) (STV 1.0 0.9091)) +(: cnet_isa_38f4a8a52d (IsA crepitation_rale symptom) (STV 1.0 0.9091)) +(: cnet_isa_ab12f952cd (IsA crescendo volume) (STV 1.0 0.9091)) +(: cnet_isa_187736989b (IsA crescent curve) (STV 1.0 0.9091)) +(: cnet_isa_bbe1099394 (IsA crescent_roll bun) (STV 1.0 0.9091)) +(: cnet_isa_083e4e64c0 (IsA crescentia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_84493078b4 (IsA cresol phenol) (STV 1.0 0.9091)) +(: cnet_isa_6676861c4f (IsA cress salad_green) (STV 1.0 0.9091)) +(: cnet_isa_437c1bb489 (IsA cress crucifer) (STV 1.0 0.9091)) +(: cnet_isa_693ebcd85a (IsA crest process) (STV 1.0 0.9091)) +(: cnet_isa_ba1eb3d46b (IsA crest emblem) (STV 1.0 0.9091)) +(: cnet_isa_352304c851 (IsA crest line) (STV 1.0 0.9091)) +(: cnet_isa_2227ef8fdd (IsA crested_cariama wading_bird) (STV 1.0 0.9091)) +(: cnet_isa_c1f82f379c (IsA crested_coral_root orchid) (STV 1.0 0.9091)) +(: cnet_isa_66eeab4412 (IsA crested_myna myna) (STV 1.0 0.9091)) +(: cnet_isa_5a1cdc3697 (IsA crested_screamer screamer) (STV 1.0 0.9091)) +(: cnet_isa_b1ce577c4e (IsA crested_wheatgrass wheatgrass) (STV 1.0 0.9091)) +(: cnet_isa_8909686846 (IsA cretan european) (STV 1.0 0.9091)) +(: cnet_isa_94207664d1 (IsA cretinism hypothyroidism) (STV 1.0 0.9091)) +(: cnet_isa_595d09ec33 (IsA cretonne fabric) (STV 1.0 0.9091)) +(: cnet_isa_1b1c20ff0e (IsA creutzfeldt_jakob_disease brain_disorder) (STV 1.0 0.9091)) +(: cnet_isa_758aeb55fd (IsA crevalle_jack jack) (STV 1.0 0.9091)) +(: cnet_isa_dbf408bc9e (IsA crevasse crack) (STV 1.0 0.9091)) +(: cnet_isa_cdddbd307d (IsA crevice depression) (STV 1.0 0.9091)) +(: cnet_isa_ed0f493914 (IsA crew team) (STV 1.0 0.9091)) +(: cnet_isa_a088df0e1c (IsA crew unit) (STV 1.0 0.9091)) +(: cnet_isa_3d0fde8c12 (IsA crew_cut haircut) (STV 1.0 0.9091)) +(: cnet_isa_e80997a726 (IsA crew_neck neckline) (STV 1.0 0.9091)) +(: cnet_isa_366fd02bf2 (IsA crewelwork embroidery) (STV 1.0 0.9091)) +(: cnet_isa_b6fadb0948 (IsA crewman employee) (STV 1.0 0.9091)) +(: cnet_isa_407a73b6bd (IsA crewman skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_c35e822ac3 (IsA crex bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_4b0a7c7904 (IsA crib playing_card) (STV 1.0 0.9091)) +(: cnet_isa_a09c045d6c (IsA crib baby_bed) (STV 1.0 0.9091)) +(: cnet_isa_41447d358c (IsA crib bin) (STV 1.0 0.9091)) +(: cnet_isa_3b5894ca4d (IsA crib granary) (STV 1.0 0.9091)) +(: cnet_isa_e73ee2824e (IsA cribbage card_game) (STV 1.0 0.9091)) +(: cnet_isa_7a72bfd285 (IsA cribbage_board board) (STV 1.0 0.9091)) +(: cnet_isa_ce11b18f80 (IsA cricetidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_02b0ca0b37 (IsA cricetus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_cb8f181415 (IsA crick spasm) (STV 1.0 0.9091)) +(: cnet_isa_43234d3520 (IsA cricket game) (STV 1.0 0.9091)) +(: cnet_isa_f553d916aa (IsA cricket field_game) (STV 1.0 0.9091)) +(: cnet_isa_f9d54f3937 (IsA cricket orthopterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_b11b0f1b40 (IsA cricket_ball ball) (STV 1.0 0.9091)) +(: cnet_isa_97db3bdf1a (IsA cricket_ball cricket_equipment) (STV 1.0 0.9091)) +(: cnet_isa_68a5f234cd (IsA cricket_bat cricket_equipment) (STV 1.0 0.9091)) +(: cnet_isa_823f2bbe38 (IsA cricket_bat_willow willow) (STV 1.0 0.9091)) +(: cnet_isa_b9a00fd74c (IsA cricket_equipment sport_equipment) (STV 1.0 0.9091)) +(: cnet_isa_6ffa0e8eec (IsA cricket_frog tree_toad) (STV 1.0 0.9091)) +(: cnet_isa_6a176d70a7 (IsA cricket_match match) (STV 1.0 0.9091)) +(: cnet_isa_2f49e82068 (IsA cricketer athlete) (STV 1.0 0.9091)) +(: cnet_isa_562b24e71d (IsA crier peddler) (STV 1.0 0.9091)) +(: cnet_isa_8612de4d7b (IsA crier roarer) (STV 1.0 0.9091)) +(: cnet_isa_5ac3a7afd8 (IsA crime activity) (STV 1.0 0.9091)) +(: cnet_isa_f6a4cc4bdd (IsA crime transgression) (STV 1.0 0.9091)) +(: cnet_isa_6e91e58654 (IsA crime crime) (STV 1.0 0.9091)) +(: cnet_isa_bf3b230442 (IsA crime_rate rate) (STV 1.0 0.9091)) +(: cnet_isa_1cf6514754 (IsA crime_wave rise) (STV 1.0 0.9091)) +(: cnet_isa_d256a9bfa2 (IsA crimea_congo_hemorrhagic_fever hemorrhagic_fever) (STV 1.0 0.9091)) +(: cnet_isa_2d88939812 (IsA criminal person_who_commit_crime) (STV 1.0 0.9091)) +(: cnet_isa_d3c2d36513 (IsA criminal principal) (STV 1.0 0.9091)) +(: cnet_isa_9fb99c81bf (IsA criminal_contempt contempt_of_court) (STV 1.0 0.9091)) +(: cnet_isa_2527c8714c (IsA criminal_court court) (STV 1.0 0.9091)) +(: cnet_isa_7cb9341da7 (IsA criminal_intelligence_service_of_canada international_intelligence_agency) (STV 1.0 0.9091)) +(: cnet_isa_8eab8335e2 (IsA criminal_investigation_command law_enforcement_agency) (STV 1.0 0.9091)) +(: cnet_isa_2dc9105551 (IsA criminal_law legal_code) (STV 1.0 0.9091)) +(: cnet_isa_b224118f8b (IsA criminal_maintenance wrongdoing) (STV 1.0 0.9091)) +(: cnet_isa_16a07eabac (IsA criminal_negligence negligence) (STV 1.0 0.9091)) +(: cnet_isa_d76462ecad (IsA criminal_possession possession) (STV 1.0 0.9091)) +(: cnet_isa_589dcb1fa9 (IsA criminal_record list) (STV 1.0 0.9091)) +(: cnet_isa_89e0b5f8d1 (IsA criminal_suit lawsuit) (STV 1.0 0.9091)) +(: cnet_isa_7cc4352ac3 (IsA criminalism guilt) (STV 1.0 0.9091)) +(: cnet_isa_39139f125e (IsA criminalization legislation) (STV 1.0 0.9091)) +(: cnet_isa_a96046e79f (IsA criminal people) (STV 1.0 0.9572)) +(: cnet_isa_16526f1672 (IsA criminologist specialist) (STV 1.0 0.9091)) +(: cnet_isa_20de63fe54 (IsA criminology sociology) (STV 1.0 0.9091)) +(: cnet_isa_4f32fc25a4 (IsA crimp lock) (STV 1.0 0.9091)) +(: cnet_isa_a0986b21a4 (IsA crimp kidnapper) (STV 1.0 0.9091)) +(: cnet_isa_c3dbbc955f (IsA crimson red) (STV 1.0 0.9091)) +(: cnet_isa_23714333cc (IsA crimson_clover clover) (STV 1.0 0.9091)) +(: cnet_isa_9759d56f97 (IsA cringle fastener) (STV 1.0 0.9091)) +(: cnet_isa_b82853bc72 (IsA crinkleroot bittercress) (STV 1.0 0.9091)) +(: cnet_isa_2d2db6eea8 (IsA crinoid echinoderm) (STV 1.0 0.9091)) +(: cnet_isa_9057a8116e (IsA crinoidea class) (STV 1.0 0.9091)) +(: cnet_isa_614bbe5d35 (IsA crinoline fabric) (STV 1.0 0.9091)) +(: cnet_isa_0ec9cf697f (IsA crinoline petticoat) (STV 1.0 0.9091)) +(: cnet_isa_d1a5a38e45 (IsA criollo cocoa) (STV 1.0 0.9091)) +(: cnet_isa_1de2d23a78 (IsA criollo hispanic_american) (STV 1.0 0.9091)) +(: cnet_isa_320d2a22d9 (IsA cripple person) (STV 1.0 0.9091)) +(: cnet_isa_170c87c54a (IsA crisis juncture) (STV 1.0 0.9091)) +(: cnet_isa_6927651969 (IsA crisis situation) (STV 1.0 0.9091)) +(: cnet_isa_402c13eda1 (IsA crisis_intervention psychotherapy) (STV 1.0 0.9091)) +(: cnet_isa_cbc48a4500 (IsA crisphead_lettuce lettuce) (STV 1.0 0.9091)) +(: cnet_isa_32c3190baf (IsA crispness freshness) (STV 1.0 0.9091)) +(: cnet_isa_83e0ee17a8 (IsA crispness terseness) (STV 1.0 0.9091)) +(: cnet_isa_78c3003cf6 (IsA crisscross marking) (STV 1.0 0.9091)) +(: cnet_isa_e369f8809d (IsA cristobalite mineral) (STV 1.0 0.9091)) +(: cnet_isa_039443fd62 (IsA criterion ideal) (STV 1.0 0.9091)) +(: cnet_isa_b8a11de2a3 (IsA criterium bicycle_race) (STV 1.0 0.9091)) +(: cnet_isa_6338045876 (IsA crith weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_08aef7e71f (IsA critic evaluator) (STV 1.0 0.9091)) +(: cnet_isa_b159703211 (IsA critic professional) (STV 1.0 0.9091)) +(: cnet_isa_7f95f145e8 (IsA critic unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_ef1f6fd169 (IsA critical_angle angle_of_incidence) (STV 1.0 0.9091)) +(: cnet_isa_9798b1dacb (IsA critical_appraisal appraisal) (STV 1.0 0.9091)) +(: cnet_isa_b3b4e4498c (IsA critical_mass amount) (STV 1.0 0.9091)) +(: cnet_isa_f883543ffd (IsA critical_mass mass) (STV 1.0 0.9091)) +(: cnet_isa_22b6a47760 (IsA criticality juncture) (STV 1.0 0.9091)) +(: cnet_isa_693e1a799d (IsA criticality urgency) (STV 1.0 0.9091)) +(: cnet_isa_be8a727c92 (IsA criticism critical_appraisal) (STV 1.0 0.9091)) +(: cnet_isa_f4f0a913f0 (IsA criticism disapproval) (STV 1.0 0.9091)) +(: cnet_isa_f9a4dfebd9 (IsA criticism writing) (STV 1.0 0.9091)) +(: cnet_isa_e14862317c (IsA critter animal) (STV 1.0 0.9091)) +(: cnet_isa_60d827d235 (IsA cro_magnon homo_sapien) (STV 1.0 0.9091)) +(: cnet_isa_1e725d369f (IsA croak utterance) (STV 1.0 0.9091)) +(: cnet_isa_75c8055f47 (IsA croaker sciaenid_fish) (STV 1.0 0.9091)) +(: cnet_isa_0697c3c631 (IsA croaker saltwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_7cf913d816 (IsA croat slav) (STV 1.0 0.9091)) +(: cnet_isa_c0f7b9c9f6 (IsA croatia country) (STV 1.0 0.9091)) +(: cnet_isa_16b9ffd546 (IsA croatia in_europe) (STV 1.0 0.9454)) +(: cnet_isa_02805c7212 (IsA crocethia bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_8ff13be807 (IsA crochet needlework) (STV 1.0 0.9091)) +(: cnet_isa_f81fdf98bb (IsA crochet_needle needle) (STV 1.0 0.9091)) +(: cnet_isa_7753288cff (IsA crochet_stitch stitch) (STV 1.0 0.9091)) +(: cnet_isa_ffc377962e (IsA crocheting handicraft) (STV 1.0 0.9091)) +(: cnet_isa_a43bdf5d22 (IsA crock jar) (STV 1.0 0.9091)) +(: cnet_isa_f39e6c2e44 (IsA crock nonsense) (STV 1.0 0.9091)) +(: cnet_isa_4d77c15e70 (IsA crockery tableware) (STV 1.0 0.9091)) +(: cnet_isa_466fa8ad8a (IsA crocket architectural_ornament) (STV 1.0 0.9091)) +(: cnet_isa_2510f4d42e (IsA crocodile reptile) (STV 1.0 0.9339)) +(: cnet_isa_767503322c (IsA crocodile crocodilian_reptile) (STV 1.0 0.9091)) +(: cnet_isa_d790723759 (IsA crocodile_bird courser) (STV 1.0 0.9091)) +(: cnet_isa_6e79d75467 (IsA crocodile_tear hypocrisy) (STV 1.0 0.9091)) +(: cnet_isa_f832abe16b (IsA crocodilian_reptile diapsid) (STV 1.0 0.9091)) +(: cnet_isa_00478cfefe (IsA crocodylia animal_order) (STV 1.0 0.9091)) +(: cnet_isa_74d0b19009 (IsA crocodylidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_8afbfa5a2c (IsA crocodylus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_b26356d8d1 (IsA crocolite mineral) (STV 1.0 0.9091)) +(: cnet_isa_8a60480c62 (IsA crocus iridaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_af9036453a (IsA crocuta mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_26a344bb36 (IsA croesus rich_person) (STV 1.0 0.9091)) +(: cnet_isa_157c948990 (IsA croft farm) (STV 1.0 0.9091)) +(: cnet_isa_746261b130 (IsA crofter small_farmer) (STV 1.0 0.9091)) +(: cnet_isa_9b8a2e9926 (IsA croix_de_guerre decoration) (STV 1.0 0.9091)) +(: cnet_isa_0b4598c9b7 (IsA cronartium fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_5837cb26d1 (IsA cronyism discrimination) (STV 1.0 0.9091)) +(: cnet_isa_a248a408e1 (IsA crook staff) (STV 1.0 0.9091)) +(: cnet_isa_abc2aa9298 (IsA crooked_stemmed_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_9c577b106f (IsA crookedness dishonesty) (STV 1.0 0.9091)) +(: cnet_isa_95171fe2b4 (IsA crookedness shape) (STV 1.0 0.9091)) +(: cnet_isa_45d666f89d (IsA crooke_radiometer radiometer) (STV 1.0 0.9091)) +(: cnet_isa_29b7fa70d5 (IsA crooke_tube cathode_ray_tube) (STV 1.0 0.9091)) +(: cnet_isa_be83276d8f (IsA crookneck yellow_squash) (STV 1.0 0.9091)) +(: cnet_isa_7ea604f8d3 (IsA crooner singer) (STV 1.0 0.9091)) +(: cnet_isa_c0d0bceed3 (IsA crooning singing) (STV 1.0 0.9091)) +(: cnet_isa_ba69b9b151 (IsA crop end_product) (STV 1.0 0.9091)) +(: cnet_isa_7efa2c19d9 (IsA crop handle) (STV 1.0 0.9091)) +(: cnet_isa_0bc600d0b5 (IsA crop collection) (STV 1.0 0.9091)) +(: cnet_isa_da17e141dd (IsA crop output) (STV 1.0 0.9091)) +(: cnet_isa_da678656db (IsA crop plant) (STV 1.0 0.9091)) +(: cnet_isa_8c6600dde5 (IsA crop_dusting dispersion) (STV 1.0 0.9091)) +(: cnet_isa_32d3e5beac (IsA crop_failure failure) (STV 1.0 0.9091)) +(: cnet_isa_bee40308c5 (IsA croquet outdoor_game) (STV 1.0 0.9091)) +(: cnet_isa_4f2d0e953f (IsA croquet_ball ball) (STV 1.0 0.9091)) +(: cnet_isa_f53b754ee4 (IsA croquet_ball croquet_equipment) (STV 1.0 0.9091)) +(: cnet_isa_bd3dc4aa85 (IsA croquet_equipment sport_equipment) (STV 1.0 0.9091)) +(: cnet_isa_0eb48123cf (IsA croquet_mallet croquet_equipment) (STV 1.0 0.9091)) +(: cnet_isa_dcf6f470cf (IsA croquet_mallet mallet) (STV 1.0 0.9091)) +(: cnet_isa_aa36378847 (IsA croquette dish) (STV 1.0 0.9091)) +(: cnet_isa_ca676d0c89 (IsA crore large_integer) (STV 1.0 0.9091)) +(: cnet_isa_db97ebde21 (IsA crosier staff) (STV 1.0 0.9091)) +(: cnet_isa_509f684b02 (IsA cross emblem) (STV 1.0 0.9091)) +(: cnet_isa_7cc1f4f2c0 (IsA cross structure) (STV 1.0 0.9091)) +(: cnet_isa_eae1436782 (IsA cross affliction) (STV 1.0 0.9091)) +(: cnet_isa_3988600739 (IsA cross_bit bore_bit) (STV 1.0 0.9091)) +(: cnet_isa_f23502fec9 (IsA cross_bun sweet_roll) (STV 1.0 0.9091)) +(: cnet_isa_4d8cd21796 (IsA cross_classification classification) (STV 1.0 0.9091)) +(: cnet_isa_5ef6df16c9 (IsA cross_country race) (STV 1.0 0.9091)) +(: cnet_isa_c3a9cb9ba8 (IsA cross_country_riding equestrian_sport) (STV 1.0 0.9091)) +(: cnet_isa_118bbca08c (IsA cross_country_skiing skiing) (STV 1.0 0.9091)) +(: cnet_isa_6efb9acd42 (IsA cross_examination interrogation) (STV 1.0 0.9091)) +(: cnet_isa_d2409b3b3d (IsA cross_examiner inquirer) (STV 1.0 0.9091)) +(: cnet_isa_d2379499e6 (IsA cross_eye strabismus) (STV 1.0 0.9091)) +(: cnet_isa_13289af83e (IsA cross_fertilization interchange) (STV 1.0 0.9091)) +(: cnet_isa_db5ced290a (IsA cross_fertilization fertilization) (STV 1.0 0.9091)) +(: cnet_isa_54d545d763 (IsA cross_hair line) (STV 1.0 0.9091)) +(: cnet_isa_9dde1de9d8 (IsA cross_leaved_heath erica) (STV 1.0 0.9091)) +(: cnet_isa_af215d97e9 (IsA cross_link chemical_bond) (STV 1.0 0.9091)) +(: cnet_isa_38611ad9d2 (IsA cross_pollination influence) (STV 1.0 0.9091)) +(: cnet_isa_0c8378804c (IsA cross_pollination pollination) (STV 1.0 0.9091)) +(: cnet_isa_d1b1efecae (IsA cross_purpose purpose) (STV 1.0 0.9091)) +(: cnet_isa_d5c8819490 (IsA cross_question question) (STV 1.0 0.9091)) +(: cnet_isa_f109f58b6b (IsA cross_reference citation) (STV 1.0 0.9091)) +(: cnet_isa_0c9bf87d83 (IsA cross_section section) (STV 1.0 0.9091)) +(: cnet_isa_17922e9b34 (IsA cross_section probability) (STV 1.0 0.9091)) +(: cnet_isa_1e8d049a14 (IsA cross_section sample) (STV 1.0 0.9091)) +(: cnet_isa_1f71ae92cb (IsA cross_stitch embroidery) (STV 1.0 0.9091)) +(: cnet_isa_978f4f5024 (IsA cross_stitch embroidery_stitch) (STV 1.0 0.9091)) +(: cnet_isa_9d040334b0 (IsA cross_street street) (STV 1.0 0.9091)) +(: cnet_isa_4977dc669d (IsA cross_vine vine) (STV 1.0 0.9091)) +(: cnet_isa_02dc9e8ed2 (IsA crossbar bar) (STV 1.0 0.9091)) +(: cnet_isa_ed2ad9a25c (IsA crossbar crosspiece) (STV 1.0 0.9091)) +(: cnet_isa_c8e4553b3e (IsA crossbar game_equipment) (STV 1.0 0.9091)) +(: cnet_isa_7c775c9c90 (IsA crossbench seat) (STV 1.0 0.9091)) +(: cnet_isa_ef68481d36 (IsA crossbencher legislator) (STV 1.0 0.9091)) +(: cnet_isa_279f981e55 (IsA crossbill finch) (STV 1.0 0.9091)) +(: cnet_isa_accea77ae8 (IsA crossbone symbol) (STV 1.0 0.9091)) +(: cnet_isa_28036b0f5d (IsA crossbow bow) (STV 1.0 0.9091)) +(: cnet_isa_3041b84643 (IsA crosscheck check) (STV 1.0 0.9091)) +(: cnet_isa_26d0aa8b33 (IsA crosscheck confirmation) (STV 1.0 0.9091)) +(: cnet_isa_3c657e6c93 (IsA crosscut path) (STV 1.0 0.9091)) +(: cnet_isa_d6de91bb7c (IsA crosscut_saw handsaw) (STV 1.0 0.9091)) +(: cnet_isa_740f9ecf40 (IsA crosse racket) (STV 1.0 0.9091)) +(: cnet_isa_619370a5a1 (IsA crossfire fire) (STV 1.0 0.9091)) +(: cnet_isa_d2aa27536a (IsA crossfire conversation) (STV 1.0 0.9091)) +(: cnet_isa_a4aa75d6d8 (IsA crosshair center) (STV 1.0 0.9091)) +(: cnet_isa_3b23c131aa (IsA crosshead block) (STV 1.0 0.9091)) +(: cnet_isa_5f32e9226c (IsA crossheading heading) (STV 1.0 0.9091)) +(: cnet_isa_1bc914a2a6 (IsA crossing travel) (STV 1.0 0.9091)) +(: cnet_isa_818198ac89 (IsA crossing voyage) (STV 1.0 0.9091)) +(: cnet_isa_852efb386e (IsA crossing path) (STV 1.0 0.9091)) +(: cnet_isa_b11280c13a (IsA crossing point) (STV 1.0 0.9091)) +(: cnet_isa_b84cdaac4b (IsA crossing_guard traffic_cop) (STV 1.0 0.9091)) +(: cnet_isa_50a4d12661 (IsA crossing_over organic_process) (STV 1.0 0.9091)) +(: cnet_isa_910e3a5267 (IsA crossjack sail) (STV 1.0 0.9091)) +(: cnet_isa_f8f75cf9ba (IsA crossopterygian bony_fish) (STV 1.0 0.9091)) +(: cnet_isa_b4fd56512e (IsA crossopterygii class) (STV 1.0 0.9091)) +(: cnet_isa_aa3ce94c3a (IsA crossover borrowing) (STV 1.0 0.9091)) +(: cnet_isa_4793a2de73 (IsA crossover_voter voter) (STV 1.0 0.9091)) +(: cnet_isa_7d4c5ebcf3 (IsA crosspiece brace) (STV 1.0 0.9091)) +(: cnet_isa_dee1014d8b (IsA crossroad overlap) (STV 1.0 0.9091)) +(: cnet_isa_1d8159643c (IsA crosstalk noise) (STV 1.0 0.9091)) +(: cnet_isa_9a2b04eb4d (IsA crosswind wind) (STV 1.0 0.9091)) +(: cnet_isa_8375e10d79 (IsA crossword_puzzle puzzle) (STV 1.0 0.9091)) +(: cnet_isa_38fc91b1b2 (IsA crotalaria herb) (STV 1.0 0.9091)) +(: cnet_isa_4e9d1b3b95 (IsA crotalidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_46c73d282b (IsA crotalus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_087de28eed (IsA crotaphion craniometric_point) (STV 1.0 0.9091)) +(: cnet_isa_8e366b0fb0 (IsA crotaphytus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_181d5c102a (IsA crotch angle) (STV 1.0 0.9091)) +(: cnet_isa_f207e2615a (IsA crotch branch) (STV 1.0 0.9091)) +(: cnet_isa_5b0ee7ccdf (IsA crotchet hook) (STV 1.0 0.9091)) +(: cnet_isa_1d141b3f7d (IsA croton shrub) (STV 1.0 0.9091)) +(: cnet_isa_3f26387934 (IsA croton_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_f4ff9b8143 (IsA crotophaga bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_bb601b702f (IsA crottle lichen) (STV 1.0 0.9091)) +(: cnet_isa_e9ea667450 (IsA crouch bending) (STV 1.0 0.9091)) +(: cnet_isa_786eb52604 (IsA croup angina) (STV 1.0 0.9091)) +(: cnet_isa_88e9246aef (IsA croupier_s_rake rake) (STV 1.0 0.9091)) +(: cnet_isa_7def379783 (IsA croupier gambler) (STV 1.0 0.9091)) +(: cnet_isa_e4f5300727 (IsA crouton bread) (STV 1.0 0.9091)) +(: cnet_isa_3338b57fda (IsA crow_s_foot wrinkle) (STV 1.0 0.9091)) +(: cnet_isa_02ab8fd047 (IsA crow_s_nest platform) (STV 1.0 0.9091)) +(: cnet_isa_ee6daf1ece (IsA crow bird) (STV 1.0 0.9572)) +(: cnet_isa_b2bf973a43 (IsA crow corvine_bird) (STV 1.0 0.9091)) +(: cnet_isa_73c33be36a (IsA crow siouan) (STV 1.0 0.9091)) +(: cnet_isa_6b63525b65 (IsA crow cry) (STV 1.0 0.9091)) +(: cnet_isa_47504c6ef5 (IsA crow_garlic wild_onion) (STV 1.0 0.9091)) +(: cnet_isa_0c86bc8be0 (IsA crow_pheasant coucal) (STV 1.0 0.9091)) +(: cnet_isa_50beb8d52d (IsA crowbait saddle_horse) (STV 1.0 0.9091)) +(: cnet_isa_5c247330ee (IsA crowbar lever) (STV 1.0 0.9091)) +(: cnet_isa_ef8665733b (IsA crowberry shrub) (STV 1.0 0.9091)) +(: cnet_isa_c14c4efd1a (IsA crowd gathering) (STV 1.0 0.9091)) +(: cnet_isa_a717d53ff1 (IsA crowd_control control) (STV 1.0 0.9091)) +(: cnet_isa_37d1710e79 (IsA crowding situation) (STV 1.0 0.9091)) +(: cnet_isa_988877996e (IsA crown crown_jewel) (STV 1.0 0.9091)) +(: cnet_isa_8ee27fd659 (IsA crown jewelled_headdress) (STV 1.0 0.9091)) +(: cnet_isa_65d42c21de (IsA crown top) (STV 1.0 0.9091)) +(: cnet_isa_85abfdc4b5 (IsA crown vertex) (STV 1.0 0.9091)) +(: cnet_isa_fec3e4e571 (IsA crown wreath) (STV 1.0 0.9091)) +(: cnet_isa_9c23149c6a (IsA crown symbol) (STV 1.0 0.9091)) +(: cnet_isa_9ab2aaeebb (IsA crown coin) (STV 1.0 0.9091)) +(: cnet_isa_e1cbd62f8f (IsA crown_colony colony) (STV 1.0 0.9091)) +(: cnet_isa_c4c0599b0a (IsA crown_daisy chrysanthemum) (STV 1.0 0.9091)) +(: cnet_isa_0f0f9b1969 (IsA crown_fire forest_fire) (STV 1.0 0.9091)) +(: cnet_isa_3ad5c849d7 (IsA crown_gall plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_47844e0896 (IsA crown_glass glass) (STV 1.0 0.9091)) +(: cnet_isa_a4d2b1fb54 (IsA crown_imperial fritillary) (STV 1.0 0.9091)) +(: cnet_isa_467cdf05ec (IsA crown_jewel jewel) (STV 1.0 0.9091)) +(: cnet_isa_3d26360f1d (IsA crown_jewel asset) (STV 1.0 0.9091)) +(: cnet_isa_3d36df7c6e (IsA crown_jewel regalia) (STV 1.0 0.9091)) +(: cnet_isa_1d21e58a05 (IsA crown_land estate) (STV 1.0 0.9091)) +(: cnet_isa_c2fc37a984 (IsA crown_len len) (STV 1.0 0.9091)) +(: cnet_isa_567f16dc33 (IsA crown_of_thorn crown) (STV 1.0 0.9091)) +(: cnet_isa_82608a6b07 (IsA crown_of_thorn spurge) (STV 1.0 0.9091)) +(: cnet_isa_ede635234d (IsA crown_prince prince) (STV 1.0 0.9091)) +(: cnet_isa_8b5f3af15b (IsA crown_princess princess) (STV 1.0 0.9091)) +(: cnet_isa_b915098f62 (IsA crown_princess wife) (STV 1.0 0.9091)) +(: cnet_isa_1c8851e784 (IsA crown_saw saw) (STV 1.0 0.9091)) +(: cnet_isa_d366a2c26f (IsA crown_wart plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_0073807c87 (IsA crownbeard composite) (STV 1.0 0.9091)) +(: cnet_isa_beab68fbb4 (IsA crownwork dental_appliance) (STV 1.0 0.9091)) +(: cnet_isa_afb2d74d79 (IsA crucian_carp cyprinid) (STV 1.0 0.9091)) +(: cnet_isa_f30248d8d4 (IsA crucible vessel) (STV 1.0 0.9091)) +(: cnet_isa_89811ac44b (IsA crucible_steel steel) (STV 1.0 0.9091)) +(: cnet_isa_58ef90d4a6 (IsA crucifer herb) (STV 1.0 0.9091)) +(: cnet_isa_14c4631caf (IsA cruciferae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_ca9dee50e0 (IsA cruciferous_vegetable vegetable) (STV 1.0 0.9091)) +(: cnet_isa_c84bbfd9a4 (IsA crucifix gymnastic_exercise) (STV 1.0 0.9091)) +(: cnet_isa_c548c5b411 (IsA crucifix cross) (STV 1.0 0.9091)) +(: cnet_isa_4bef00cfaa (IsA crucifix_fish sea_catfish) (STV 1.0 0.9091)) +(: cnet_isa_fe6c7ff281 (IsA crucifixion ancient_mean_of_execution) (STV 1.0 0.9091)) +(: cnet_isa_cb37a3ee46 (IsA crucifixion execution) (STV 1.0 0.9091)) +(: cnet_isa_48b07c7ba7 (IsA crucifixion torture) (STV 1.0 0.9091)) +(: cnet_isa_ff82128c9e (IsA crud disease) (STV 1.0 0.9091)) +(: cnet_isa_33ce18d24a (IsA crud snow) (STV 1.0 0.9091)) +(: cnet_isa_0739b27e02 (IsA crudeness impoliteness) (STV 1.0 0.9091)) +(: cnet_isa_5a7b937c68 (IsA crudeness inelegance) (STV 1.0 0.9091)) +(: cnet_isa_c95d721ed8 (IsA crudeness wild) (STV 1.0 0.9091)) +(: cnet_isa_ceeeac496f (IsA crudite appetizer) (STV 1.0 0.9091)) +(: cnet_isa_70a026bdbb (IsA cruel_and_unusual_punishment punishment) (STV 1.0 0.9091)) +(: cnet_isa_9e8bce49a6 (IsA cruel_plant vine) (STV 1.0 0.9091)) +(: cnet_isa_b327df1321 (IsA cruelty maltreatment) (STV 1.0 0.9091)) +(: cnet_isa_33208a27fb (IsA cruelty malevolence) (STV 1.0 0.9091)) +(: cnet_isa_9c693ab108 (IsA cruelty heartlessness) (STV 1.0 0.9091)) +(: cnet_isa_4abe6ca542 (IsA cruet bottle) (STV 1.0 0.9091)) +(: cnet_isa_19f85bc217 (IsA cruet_stand rack) (STV 1.0 0.9091)) +(: cnet_isa_8560c58591 (IsA cruise ocean_trip) (STV 1.0 0.9091)) +(: cnet_isa_d125b92956 (IsA cruise_control control) (STV 1.0 0.9091)) +(: cnet_isa_6d7b33ad19 (IsA cruise_missile aircraft) (STV 1.0 0.9091)) +(: cnet_isa_88e53355e8 (IsA cruise_missile bomb) (STV 1.0 0.9091)) +(: cnet_isa_3c15d7182b (IsA cruise_ship liner) (STV 1.0 0.9091)) +(: cnet_isa_d310221ac2 (IsA cruiser car) (STV 1.0 0.9091)) +(: cnet_isa_f5f8e28c7b (IsA cruiser warship) (STV 1.0 0.9091)) +(: cnet_isa_d24e70942f (IsA cruller friedcake) (STV 1.0 0.9091)) +(: cnet_isa_b394acb9bb (IsA crumb morsel) (STV 1.0 0.9091)) +(: cnet_isa_803df62dcf (IsA crumb small_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_e9a30dfb41 (IsA crumb_cake cake) (STV 1.0 0.9091)) +(: cnet_isa_8417faf2cf (IsA crumbliness breakableness) (STV 1.0 0.9091)) +(: cnet_isa_4e1ebda7f0 (IsA crumpet cake) (STV 1.0 0.9091)) +(: cnet_isa_b8b52455ea (IsA crunch noise) (STV 1.0 0.9091)) +(: cnet_isa_edaa473c4d (IsA crunch situation) (STV 1.0 0.9091)) +(: cnet_isa_b396da288a (IsA crupper strap) (STV 1.0 0.9091)) +(: cnet_isa_9fdb715c2f (IsA crus limb) (STV 1.0 0.9091)) +(: cnet_isa_53b81f632b (IsA crusade expedition) (STV 1.0 0.9091)) +(: cnet_isa_61a45bc192 (IsA crusader warrior) (STV 1.0 0.9091)) +(: cnet_isa_9865c6a158 (IsA cruse jar) (STV 1.0 0.9091)) +(: cnet_isa_cce57bc702 (IsA crush compression) (STV 1.0 0.9091)) +(: cnet_isa_c7427b792c (IsA crush crowd) (STV 1.0 0.9091)) +(: cnet_isa_8fcd04ee64 (IsA crushed_leather leather) (STV 1.0 0.9091)) +(: cnet_isa_6bbc097529 (IsA crusher device) (STV 1.0 0.9091)) +(: cnet_isa_de029a4b2d (IsA crust discourtesy) (STV 1.0 0.9091)) +(: cnet_isa_0990679d2b (IsA crust covering) (STV 1.0 0.9091)) +(: cnet_isa_7ff093e13c (IsA crust layer) (STV 1.0 0.9091)) +(: cnet_isa_32e75a4a00 (IsA crustacea class) (STV 1.0 0.9091)) +(: cnet_isa_9df7dfaf6f (IsA crustacean animal) (STV 1.0 0.9091)) +(: cnet_isa_8ad7aca1a1 (IsA crustacean arthropod) (STV 1.0 0.9091)) +(: cnet_isa_e4e7a479ec (IsA crustal_movement movement) (STV 1.0 0.9091)) +(: cnet_isa_61113de5fd (IsA crustose_thallus thallus) (STV 1.0 0.9091)) +(: cnet_isa_f12eec3e14 (IsA crusty rheum) (STV 1.0 0.9091)) +(: cnet_isa_75360eefab (IsA crutch expedient) (STV 1.0 0.9091)) +(: cnet_isa_55921fbdc9 (IsA crutch staff) (STV 1.0 0.9091)) +(: cnet_isa_a47112750b (IsA crux point) (STV 1.0 0.9091)) +(: cnet_isa_70d04746a5 (IsA cry effusion) (STV 1.0 0.9091)) +(: cnet_isa_c231e4d656 (IsA cry utterance) (STV 1.0 0.9091)) +(: cnet_isa_40504c3404 (IsA cry sound) (STV 1.0 0.9091)) +(: cnet_isa_190f99eeaa (IsA cryesthesia hypersensitivity) (STV 1.0 0.9091)) +(: cnet_isa_ae6c354b57 (IsA crying bodily_process) (STV 1.0 0.9091)) +(: cnet_isa_b8bf3958a2 (IsA cryoanesthesia anesthesia) (STV 1.0 0.9091)) +(: cnet_isa_bd4aab5a7a (IsA cryobiology biology) (STV 1.0 0.9091)) +(: cnet_isa_676d4eb98f (IsA cryocautery cautery) (STV 1.0 0.9091)) +(: cnet_isa_2c3e0f8980 (IsA cryogen refrigerant) (STV 1.0 0.9091)) +(: cnet_isa_b2f4fa28f0 (IsA cryogenic physic) (STV 1.0 0.9091)) +(: cnet_isa_363038711d (IsA cryolite mineral) (STV 1.0 0.9091)) +(: cnet_isa_1586bb6585 (IsA cryometer thermometer) (STV 1.0 0.9091)) +(: cnet_isa_3bfcf9313a (IsA cryonic cryobiology) (STV 1.0 0.9091)) +(: cnet_isa_3980c77427 (IsA cryophobia simple_phobia) (STV 1.0 0.9091)) +(: cnet_isa_c1c8983cf1 (IsA cryoscope measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_6be3a0ee2f (IsA cryostat thermostat) (STV 1.0 0.9091)) +(: cnet_isa_00242511eb (IsA cryosurgery operation) (STV 1.0 0.9091)) +(: cnet_isa_fb14243cc1 (IsA crypt burial_chamber) (STV 1.0 0.9091)) +(: cnet_isa_fed4858bf1 (IsA cryptacanthode fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_f043f65980 (IsA cryptanalysis science) (STV 1.0 0.9091)) +(: cnet_isa_c3ebad6eff (IsA cryptanalyst decoder) (STV 1.0 0.9091)) +(: cnet_isa_19b1adc976 (IsA cryptic_coloration protective_coloration) (STV 1.0 0.9091)) +(: cnet_isa_af0c6637b7 (IsA cryptobiosis physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_2a30d27fd0 (IsA cryptobranchidae amphibian_family) (STV 1.0 0.9091)) +(: cnet_isa_52ec95950b (IsA cryptobranchus amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_85debed464 (IsA cryptocercidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_d414b8d9ad (IsA cryptocercus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_2a4af3b3e0 (IsA cryptococcosis fungal_infection) (STV 1.0 0.9091)) +(: cnet_isa_a9fdbae003 (IsA cryptocoryne aquatic_plant) (STV 1.0 0.9091)) +(: cnet_isa_3c8293ee87 (IsA cryptogam plant) (STV 1.0 0.9091)) +(: cnet_isa_8a968c8576 (IsA cryptogamia division) (STV 1.0 0.9091)) +(: cnet_isa_34b5a927d1 (IsA cryptogram writing) (STV 1.0 0.9091)) +(: cnet_isa_dbf70c44a0 (IsA cryptogramma fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_228598fa27 (IsA cryptogrammataceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_2703b940d8 (IsA cryptograph device) (STV 1.0 0.9091)) +(: cnet_isa_a68423deeb (IsA cryptography writing) (STV 1.0 0.9091)) +(: cnet_isa_6fe9e28bc3 (IsA cryptomeria gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_dce12524bc (IsA cryptomonad alga) (STV 1.0 0.9091)) +(: cnet_isa_e1769e68cb (IsA cryptophyceae class) (STV 1.0 0.9091)) +(: cnet_isa_85f4b0f5ff (IsA cryptophyta phylum) (STV 1.0 0.9091)) +(: cnet_isa_92ec28b4c5 (IsA cryptoprocta civet) (STV 1.0 0.9091)) +(: cnet_isa_de2bf25d30 (IsA cryptorchidy abnormality) (STV 1.0 0.9091)) +(: cnet_isa_b1deceb017 (IsA cryptoterme arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_a2f4057054 (IsA cryptotis mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_166664e06a (IsA crystal component) (STV 1.0 0.9091)) +(: cnet_isa_09e04e095d (IsA crystal glassware) (STV 1.0 0.9091)) +(: cnet_isa_b398e30f3b (IsA crystal protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_0564c6da85 (IsA crystal rock) (STV 1.0 0.9091)) +(: cnet_isa_203f1a7fea (IsA crystal solid) (STV 1.0 0.9091)) +(: cnet_isa_1e0b159431 (IsA crystal_ball ball) (STV 1.0 0.9091)) +(: cnet_isa_b1d5cebd47 (IsA crystal_counter counter_tube) (STV 1.0 0.9091)) +(: cnet_isa_5c848d9d2b (IsA crystal_detector detector) (STV 1.0 0.9091)) +(: cnet_isa_a2e4641491 (IsA crystal_gazing prophecy) (STV 1.0 0.9091)) +(: cnet_isa_ac6958ac26 (IsA crystal_microphone microphone) (STV 1.0 0.9091)) +(: cnet_isa_9f2cb59763 (IsA crystal_oscillator oscillator) (STV 1.0 0.9091)) +(: cnet_isa_8cb3aece60 (IsA crystal_pickup cartridge) (STV 1.0 0.9091)) +(: cnet_isa_66c207abfe (IsA crystal_set radio_receiver) (STV 1.0 0.9091)) +(: cnet_isa_e27463a03e (IsA crystallite crystal) (STV 1.0 0.9091)) +(: cnet_isa_af428906da (IsA crystallization construction) (STV 1.0 0.9091)) +(: cnet_isa_bb866db01f (IsA crystallization chemical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_56dbecb978 (IsA crystallized_ginger candied_fruit) (STV 1.0 0.9091)) +(: cnet_isa_04116c9bd4 (IsA crystallographer specialist) (STV 1.0 0.9091)) +(: cnet_isa_1bdcacc37f (IsA crystallography physic) (STV 1.0 0.9091)) +(: cnet_isa_6d2cb86a51 (IsA ctene organ) (STV 1.0 0.9091)) +(: cnet_isa_ab57256fbe (IsA ctenidium gill) (STV 1.0 0.9091)) +(: cnet_isa_49f955f704 (IsA ctenizidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_3981e695e5 (IsA ctenocephalide arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_a347ba0935 (IsA ctenocephalus ctenocephalide) (STV 1.0 0.9091)) +(: cnet_isa_b58f348512 (IsA ctenophora phylum) (STV 1.0 0.9091)) +(: cnet_isa_b449712380 (IsA ctenophore invertebrate) (STV 1.0 0.9091)) +(: cnet_isa_7b3b5d5759 (IsA ctenophore_family family) (STV 1.0 0.9091)) +(: cnet_isa_5f30843a32 (IsA ctenophore_genus genus) (STV 1.0 0.9091)) +(: cnet_isa_be6382a50d (IsA cub young_mammal) (STV 1.0 0.9091)) +(: cnet_isa_45059d1862 (IsA cub male_child) (STV 1.0 0.9091)) +(: cnet_isa_50b398ac73 (IsA cub novice) (STV 1.0 0.9091)) +(: cnet_isa_d4f9bcbae6 (IsA cub_scout boy_scout) (STV 1.0 0.9091)) +(: cnet_isa_244a87bc5b (IsA cuba country) (STV 1.0 0.9091)) +(: cnet_isa_a4c8d07ad6 (IsA cuban west_indian) (STV 1.0 0.9091)) +(: cnet_isa_00c21514cc (IsA cuban_bast hibiscus) (STV 1.0 0.9091)) +(: cnet_isa_0d01543001 (IsA cuban_heel heel) (STV 1.0 0.9091)) +(: cnet_isa_c897279e2e (IsA cuban_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_fc175f9cfc (IsA cuban_peso cuban_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_fb6301f735 (IsA cubbyhole room) (STV 1.0 0.9091)) +(: cnet_isa_4d201b5a72 (IsA cube block) (STV 1.0 0.9091)) +(: cnet_isa_df678d704b (IsA cube subshrub) (STV 1.0 0.9091)) +(: cnet_isa_9ffab0c0c1 (IsA cube number) (STV 1.0 0.9091)) +(: cnet_isa_29d49a2e80 (IsA cube regular_polyhedron) (STV 1.0 0.9091)) +(: cnet_isa_6009d7dd27 (IsA cube_root root) (STV 1.0 0.9091)) +(: cnet_isa_67730718fc (IsA cubeb cigarette) (STV 1.0 0.9091)) +(: cnet_isa_089b6fa0b0 (IsA cubeb fruit) (STV 1.0 0.9091)) +(: cnet_isa_52f527b475 (IsA cubeb true_pepper) (STV 1.0 0.9091)) +(: cnet_isa_193178a352 (IsA cubic_foot volume_unit) (STV 1.0 0.9091)) +(: cnet_isa_1674569b15 (IsA cubic_inch volume_unit) (STV 1.0 0.9091)) +(: cnet_isa_7fca6b689c (IsA cubic_kilometer metric_capacity_unit) (STV 1.0 0.9091)) +(: cnet_isa_0965433812 (IsA cubic_millimeter metric_capacity_unit) (STV 1.0 0.9091)) +(: cnet_isa_03a91b7db3 (IsA cubic_yard volume_unit) (STV 1.0 0.9091)) +(: cnet_isa_d08205c776 (IsA cubicity three_dimensionality) (STV 1.0 0.9091)) +(: cnet_isa_24854f09fa (IsA cubicle alternative_to_office) (STV 1.0 0.9454)) +(: cnet_isa_a3b134c1a3 (IsA cubicle workspace) (STV 1.0 0.9454)) +(: cnet_isa_32cfd022c9 (IsA cubism artistic_movement) (STV 1.0 0.9091)) +(: cnet_isa_4e9a5c8f47 (IsA cubist painter) (STV 1.0 0.9091)) +(: cnet_isa_2f044e5694 (IsA cubit linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_0dbd465512 (IsA cubitiere armor_plate) (STV 1.0 0.9091)) +(: cnet_isa_4ab7b13c6d (IsA cubitus limb) (STV 1.0 0.9091)) +(: cnet_isa_4e1f93602e (IsA cuboid parallelepiped) (STV 1.0 0.9091)) +(: cnet_isa_2fd4436619 (IsA cuboid_bone bone) (STV 1.0 0.9091)) +(: cnet_isa_cfb9a9c5b1 (IsA cuboidal_cell epithelial_cell) (STV 1.0 0.9091)) +(: cnet_isa_d19ea2dd95 (IsA cucking_stool instrument_of_punishment) (STV 1.0 0.9091)) +(: cnet_isa_eed5a3d87c (IsA cuckold husband) (STV 1.0 0.9091)) +(: cnet_isa_cf0d8c8564 (IsA cuckoldom marriage) (STV 1.0 0.9091)) +(: cnet_isa_984e5e1073 (IsA cuckoldry sexual_conquest) (STV 1.0 0.9091)) +(: cnet_isa_ff0e9c6b01 (IsA cuckoo cuculiform_bird) (STV 1.0 0.9091)) +(: cnet_isa_39fefd83ff (IsA cuckoo_bumblebee bee) (STV 1.0 0.9091)) +(: cnet_isa_c6ea73d0f3 (IsA cuckoo_clock clock) (STV 1.0 0.9091)) +(: cnet_isa_644283ee09 (IsA cuckoopint arum) (STV 1.0 0.9091)) +(: cnet_isa_f2b90b39c6 (IsA cuculidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_38bf2f2fee (IsA cuculiform_bird bird) (STV 1.0 0.9091)) +(: cnet_isa_321dc1fde0 (IsA cuculiforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_b2c3547182 (IsA cuculus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_537829d812 (IsA cucumber vegetable) (STV 1.0 0.9454)) +(: cnet_isa_8c170b0bdc (IsA cucumber melon) (STV 1.0 0.9091)) +(: cnet_isa_46406c6a6c (IsA cucumber_tree magnolia) (STV 1.0 0.9091)) +(: cnet_isa_d181f939a9 (IsA cucumis dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a4ed9d841c (IsA cucurbit cucurbitaceae) (STV 1.0 0.9091)) +(: cnet_isa_6b1e1ee564 (IsA cucurbita dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2e86f1a0f3 (IsA cucurbitaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_935030d286 (IsA cud feed) (STV 1.0 0.9091)) +(: cnet_isa_f26661d56f (IsA cuddle embrace) (STV 1.0 0.9091)) +(: cnet_isa_c101286be8 (IsA cuddy galley) (STV 1.0 0.9091)) +(: cnet_isa_015162ab63 (IsA cudgel club) (STV 1.0 0.9091)) +(: cnet_isa_bc802bff8a (IsA cudweed everlasting) (STV 1.0 0.9091)) +(: cnet_isa_6eba29c674 (IsA cue sport_implement) (STV 1.0 0.9091)) +(: cnet_isa_a096787a9c (IsA cue actor_s_line) (STV 1.0 0.9091)) +(: cnet_isa_97e8bb8aee (IsA cue_ball billiard_ball) (STV 1.0 0.9091)) +(: cnet_isa_3c56968f37 (IsA cuff lap) (STV 1.0 0.9091)) +(: cnet_isa_d01c0286e1 (IsA cufflink jewelry) (STV 1.0 0.9091)) +(: cnet_isa_e934ebddc6 (IsA cuirass body_armor) (STV 1.0 0.9091)) +(: cnet_isa_2c59599cd9 (IsA cuirassier cavalryman) (STV 1.0 0.9091)) +(: cnet_isa_cd6ae8f02c (IsA cuisine cooking) (STV 1.0 0.9091)) +(: cnet_isa_d2b5b9cc9d (IsA cuisse armor_plate) (STV 1.0 0.9091)) +(: cnet_isa_f8912528cf (IsA cul passage) (STV 1.0 0.9091)) +(: cnet_isa_78eca34f75 (IsA culcita fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_b37e1d372c (IsA culdoscope endoscope) (STV 1.0 0.9091)) +(: cnet_isa_44e65e6638 (IsA culdoscopy endoscopy) (STV 1.0 0.9091)) +(: cnet_isa_c621fcfbd0 (IsA culex arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_726ea597a5 (IsA culex_quinquefasciatus mosquito) (STV 1.0 0.9091)) +(: cnet_isa_5bbcef53e1 (IsA culicidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_0305361f24 (IsA cull decision_making) (STV 1.0 0.9091)) +(: cnet_isa_61d3f141db (IsA cullis gutter) (STV 1.0 0.9091)) +(: cnet_isa_4b407e0082 (IsA culm stalk) (STV 1.0 0.9091)) +(: cnet_isa_7f81ccb4b2 (IsA culmination celestial_point) (STV 1.0 0.9091)) +(: cnet_isa_506e57aff8 (IsA culotte skirt) (STV 1.0 0.9091)) +(: cnet_isa_adee3a2eb5 (IsA cult religion) (STV 1.0 0.9091)) +(: cnet_isa_3a4ac0ed27 (IsA cult_of_personality fashion) (STV 1.0 0.9091)) +(: cnet_isa_8d22dc0936 (IsA cultism devotion) (STV 1.0 0.9091)) +(: cnet_isa_c83ca3218d (IsA cultist follower) (STV 1.0 0.9091)) +(: cnet_isa_82ec7bd433 (IsA cultivar variety) (STV 1.0 0.9091)) +(: cnet_isa_948e53a895 (IsA cultivar vascular_plant) (STV 1.0 0.9091)) +(: cnet_isa_6123e6fc03 (IsA cultivated_land land) (STV 1.0 0.9091)) +(: cnet_isa_e0b4bd9678 (IsA cultivated_parsnip parsnip) (STV 1.0 0.9091)) +(: cnet_isa_25d51cd95c (IsA cultivated_plant vascular_plant) (STV 1.0 0.9091)) +(: cnet_isa_2006e9cc6b (IsA cultivated_rice rice) (STV 1.0 0.9091)) +(: cnet_isa_6affde1c9b (IsA cultivation production) (STV 1.0 0.9091)) +(: cnet_isa_8cc966b2a0 (IsA cultivation socialization) (STV 1.0 0.9091)) +(: cnet_isa_69585e1943 (IsA cultivation growth) (STV 1.0 0.9091)) +(: cnet_isa_1dc605f661 (IsA cultivator farm_machine) (STV 1.0 0.9091)) +(: cnet_isa_9b78eb2d71 (IsA cultural_attache attache) (STV 1.0 0.9091)) +(: cnet_isa_9b3e751eb5 (IsA cultural_movement movement) (STV 1.0 0.9091)) +(: cnet_isa_45a62c1bd2 (IsA cultural_revolution revolution) (STV 1.0 0.9091)) +(: cnet_isa_5980fb0a76 (IsA culturati intelligentsia) (STV 1.0 0.9091)) +(: cnet_isa_5ef1c53c6b (IsA culture cultivation) (STV 1.0 0.9091)) +(: cnet_isa_7b87347485 (IsA culture society) (STV 1.0 0.9091)) +(: cnet_isa_ad1f6c7226 (IsA culture growth) (STV 1.0 0.9091)) +(: cnet_isa_eb49c50013 (IsA culture attitude) (STV 1.0 0.9091)) +(: cnet_isa_2b9a31755a (IsA culture taste) (STV 1.0 0.9091)) +(: cnet_isa_b176ea60b2 (IsA culture_medium food) (STV 1.0 0.9091)) +(: cnet_isa_6516f3f538 (IsA culture_shock disorientation) (STV 1.0 0.9091)) +(: cnet_isa_ca4aabe21a (IsA culver_s_root asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_82814cc7bb (IsA culverin cannon) (STV 1.0 0.9091)) +(: cnet_isa_a58c32c6b7 (IsA culverin musket) (STV 1.0 0.9091)) +(: cnet_isa_621a7258a3 (IsA culvert drain) (STV 1.0 0.9091)) +(: cnet_isa_1de48c384e (IsA cumin edible_seed) (STV 1.0 0.9091)) +(: cnet_isa_d4db24c738 (IsA cumin herb) (STV 1.0 0.9091)) +(: cnet_isa_724212ffc7 (IsA cuminum rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1cac753223 (IsA cummerbund girdle) (STV 1.0 0.9091)) +(: cnet_isa_4428593a32 (IsA cumulative_preferred preferred_stock) (STV 1.0 0.9091)) +(: cnet_isa_be6691de50 (IsA cumulative_vote election) (STV 1.0 0.9091)) +(: cnet_isa_b0e9a84854 (IsA cumulonimbus cloud) (STV 1.0 0.9091)) +(: cnet_isa_01f1e4e6e1 (IsA cumulus cloud) (STV 1.0 0.9091)) +(: cnet_isa_155d981eba (IsA cuneate_leaf simple_leaf) (STV 1.0 0.9091)) +(: cnet_isa_565c63ad63 (IsA cuneiform script) (STV 1.0 0.9091)) +(: cnet_isa_a84eba8f5c (IsA cuniculus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_2bc56b763d (IsA cunner wrasse) (STV 1.0 0.9091)) +(: cnet_isa_1940713dfa (IsA cunnilingus oral_sex) (STV 1.0 0.9091)) +(: cnet_isa_0056721850 (IsA cunning artfulness) (STV 1.0 0.9091)) +(: cnet_isa_16c5f5509b (IsA cunoniaceae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_455dbd9ac8 (IsA cunt female_genitalia) (STV 1.0 0.9091)) +(: cnet_isa_978cf7d2fa (IsA cunt unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_0b122babb7 (IsA cuon mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_34eee35dec (IsA cup container) (STV 1.0 0.9091)) +(: cnet_isa_bee5cf6b31 (IsA cup crockery) (STV 1.0 0.9091)) +(: cnet_isa_2c84b29bb5 (IsA cup hole) (STV 1.0 0.9091)) +(: cnet_isa_9be5c06ffb (IsA cup trophy) (STV 1.0 0.9091)) +(: cnet_isa_3e44465d71 (IsA cup punch) (STV 1.0 0.9091)) +(: cnet_isa_39f7927cd3 (IsA cup plant_organ) (STV 1.0 0.9091)) +(: cnet_isa_c1292c04b9 (IsA cup containerful) (STV 1.0 0.9091)) +(: cnet_isa_c92c67226c (IsA cup united_state_liquid_unit) (STV 1.0 0.9091)) +(: cnet_isa_2a4d6cc647 (IsA cup concave_shape) (STV 1.0 0.9091)) +(: cnet_isa_b20775ee4b (IsA cup_final final) (STV 1.0 0.9091)) +(: cnet_isa_bdd23536e6 (IsA cup_hook hook) (STV 1.0 0.9091)) +(: cnet_isa_6b09a0ba6e (IsA cup_of_tea activity) (STV 1.0 0.9091)) +(: cnet_isa_f1c2e3d7c4 (IsA cup_tie game) (STV 1.0 0.9091)) +(: cnet_isa_ba2c62db83 (IsA cupbearer attendant) (STV 1.0 0.9091)) +(: cnet_isa_d452a0b6c5 (IsA cupboard compound_word) (STV 1.0 0.9091)) +(: cnet_isa_9d3842297b (IsA cupboard storage_space) (STV 1.0 0.9091)) +(: cnet_isa_258df45fe4 (IsA cupboard_love kindness) (STV 1.0 0.9091)) +(: cnet_isa_d37fdf2ef4 (IsA cupcake cake) (STV 1.0 0.9091)) +(: cnet_isa_393b5da391 (IsA cupflower herb) (STV 1.0 0.9091)) +(: cnet_isa_78b7d12da8 (IsA cupid_s_bow bow) (STV 1.0 0.9091)) +(: cnet_isa_3dc0720f20 (IsA cupid_s_bow curve) (STV 1.0 0.9091)) +(: cnet_isa_f88c4979cc (IsA cupid emblem) (STV 1.0 0.9091)) +(: cnet_isa_8c7745a19d (IsA cupola dome) (STV 1.0 0.9091)) +(: cnet_isa_b28b92686f (IsA cupola furnace) (STV 1.0 0.9091)) +(: cnet_isa_b18833794b (IsA cuppa tea) (STV 1.0 0.9091)) +(: cnet_isa_259762fa59 (IsA cupping bloodletting) (STV 1.0 0.9091)) +(: cnet_isa_0917d1abb3 (IsA cupressaceae gymnosperm_family) (STV 1.0 0.9091)) +(: cnet_isa_7062c2446d (IsA cupressus gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_8e00dd6643 (IsA cuprite mineral) (STV 1.0 0.9091)) +(: cnet_isa_6287a59a9a (IsA cupronickel copper_base_alloy) (STV 1.0 0.9091)) +(: cnet_isa_aeba7fda4e (IsA cupule sucker) (STV 1.0 0.9091)) +(: cnet_isa_6abbe69e32 (IsA cupule cup) (STV 1.0 0.9091)) +(: cnet_isa_553c95ed47 (IsA cur dog) (STV 1.0 0.9091)) +(: cnet_isa_d05ec456d7 (IsA cur coward) (STV 1.0 0.9091)) +(: cnet_isa_61ebfe72d7 (IsA curability characteristic) (STV 1.0 0.9091)) +(: cnet_isa_103bb05f9d (IsA curacao orange_liqueur) (STV 1.0 0.9091)) +(: cnet_isa_65e5824355 (IsA curacy position) (STV 1.0 0.9091)) +(: cnet_isa_45c35a6476 (IsA curandera therapist) (STV 1.0 0.9091)) +(: cnet_isa_1460dff398 (IsA curandero therapist) (STV 1.0 0.9091)) +(: cnet_isa_610bb83f79 (IsA curassow gallinaceous_bird) (STV 1.0 0.9091)) +(: cnet_isa_0da0ec901d (IsA curate clergyman) (STV 1.0 0.9091)) +(: cnet_isa_5ec0699820 (IsA curator custodian) (STV 1.0 0.9091)) +(: cnet_isa_12d71ea7e0 (IsA curatorship position) (STV 1.0 0.9091)) +(: cnet_isa_55f7f3e2a8 (IsA curb bit) (STV 1.0 0.9091)) +(: cnet_isa_e93018f3b1 (IsA curb edge) (STV 1.0 0.9091)) +(: cnet_isa_936baf037e (IsA curb_market stock_exchange) (STV 1.0 0.9091)) +(: cnet_isa_9d676e56ba (IsA curb_roof roof) (STV 1.0 0.9091)) +(: cnet_isa_5fe24bd100 (IsA curb_service service) (STV 1.0 0.9091)) +(: cnet_isa_b0c7e91139 (IsA curbside pavement) (STV 1.0 0.9091)) +(: cnet_isa_3afdfb6d3b (IsA curbstone paving_stone) (STV 1.0 0.9091)) +(: cnet_isa_835fdead47 (IsA curculionidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_5108a9c940 (IsA curcuma monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b5873c5a2f (IsA curd dairy_product) (STV 1.0 0.9091)) +(: cnet_isa_5e14068de0 (IsA curd foodstuff) (STV 1.0 0.9091)) +(: cnet_isa_f4c0d214b0 (IsA curdling natural_process) (STV 1.0 0.9091)) +(: cnet_isa_ba55ae83a1 (IsA curettage operation) (STV 1.0 0.9091)) +(: cnet_isa_5c2a44601b (IsA curette surgical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_94efe6edd1 (IsA curfew signal) (STV 1.0 0.9091)) +(: cnet_isa_4c88d33f46 (IsA curfew decree) (STV 1.0 0.9091)) +(: cnet_isa_ae5bcbe0d6 (IsA curfew deadline) (STV 1.0 0.9091)) +(: cnet_isa_00787a19ef (IsA curia administration) (STV 1.0 0.9091)) +(: cnet_isa_fe694fd704 (IsA curie radioactivity_unit) (STV 1.0 0.9091)) +(: cnet_isa_4de4df9470 (IsA curie_temperature temperature) (STV 1.0 0.9091)) +(: cnet_isa_d10e721ce4 (IsA curio object) (STV 1.0 0.9091)) +(: cnet_isa_3ad9afee0c (IsA curiosa book) (STV 1.0 0.9091)) +(: cnet_isa_d0b1e9d705 (IsA curiosity cognitive_state) (STV 1.0 0.9091)) +(: cnet_isa_d59809abc0 (IsA curiousness curiosity) (STV 1.0 0.9091)) +(: cnet_isa_0c333e73d1 (IsA curium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_198e20fa73 (IsA curler mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_775a7de807 (IsA curlew shorebird) (STV 1.0 0.9091)) +(: cnet_isa_77bea4c154 (IsA curlew_sandpiper sandpiper) (STV 1.0 0.9091)) +(: cnet_isa_22b63f926b (IsA curleyleaf_pondweed pondweed) (STV 1.0 0.9091)) +(: cnet_isa_b26b601900 (IsA curliness curvature) (STV 1.0 0.9091)) +(: cnet_isa_cc01bc3a07 (IsA curling game) (STV 1.0 0.9091)) +(: cnet_isa_a1ab1a806e (IsA curling_iron home_appliance) (STV 1.0 0.9091)) +(: cnet_isa_3d41c13de4 (IsA curly_coated_retriever retriever) (STV 1.0 0.9091)) +(: cnet_isa_c46da191df (IsA curly_grass fern) (STV 1.0 0.9091)) +(: cnet_isa_b9d9fceb4b (IsA curly_head clematis) (STV 1.0 0.9091)) +(: cnet_isa_dd7ea7cdf9 (IsA curlycup_gumweed gumweed) (STV 1.0 0.9091)) +(: cnet_isa_93c6f96b2e (IsA curmudgeon oldster) (STV 1.0 0.9091)) +(: cnet_isa_0aaef9997d (IsA currant berry) (STV 1.0 0.9091)) +(: cnet_isa_8a10af51b8 (IsA currant raisin) (STV 1.0 0.9091)) +(: cnet_isa_af3674e52b (IsA currant shrub) (STV 1.0 0.9091)) +(: cnet_isa_8f07277a0f (IsA currawong australian_magpie) (STV 1.0 0.9091)) +(: cnet_isa_0ab42ec37a (IsA currency prevalence) (STV 1.0 0.9091)) +(: cnet_isa_dc2954e35d (IsA currency medium_of_exchange) (STV 1.0 0.9091)) +(: cnet_isa_ddffd5b6bb (IsA currency acceptance) (STV 1.0 0.9091)) +(: cnet_isa_20d540129d (IsA current flow) (STV 1.0 0.9091)) +(: cnet_isa_c88f57f153 (IsA current electrical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_e88ed139f1 (IsA current_account accounting) (STV 1.0 0.9091)) +(: cnet_isa_8f905ed95e (IsA current_intelligence intelligence) (STV 1.0 0.9091)) +(: cnet_isa_f7f59b6109 (IsA current_unit electromagnetic_unit) (STV 1.0 0.9091)) +(: cnet_isa_b8f68a14d3 (IsA currentness presentness) (STV 1.0 0.9091)) +(: cnet_isa_b67f00c8f5 (IsA curriculum_vitae summary) (STV 1.0 0.9091)) +(: cnet_isa_8d718e438f (IsA currier craftsman) (STV 1.0 0.9091)) +(: cnet_isa_b3eacff6a5 (IsA curry spice) (STV 1.0 0.9524)) +(: cnet_isa_e2d37656d3 (IsA curry dish) (STV 1.0 0.9091)) +(: cnet_isa_b7f64e8324 (IsA curry_powder flavorer) (STV 1.0 0.9091)) +(: cnet_isa_e63bdaada9 (IsA curry_sauce sauce) (STV 1.0 0.9091)) +(: cnet_isa_5d7a676c95 (IsA currycomb comb) (STV 1.0 0.9091)) +(: cnet_isa_784463894d (IsA curse profanity) (STV 1.0 0.9091)) +(: cnet_isa_479b8a77e2 (IsA curse affliction) (STV 1.0 0.9091)) +(: cnet_isa_7b3aacd3de (IsA cursed_crowfoot buttercup) (STV 1.0 0.9091)) +(: cnet_isa_b61ed09a26 (IsA cursor indicator) (STV 1.0 0.9091)) +(: cnet_isa_133da7b3ef (IsA cursorius bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_5587bb070c (IsA curtailment shortness) (STV 1.0 0.9091)) +(: cnet_isa_3057d8b506 (IsA curtain blind) (STV 1.0 0.9091)) +(: cnet_isa_77c4b804af (IsA curtain furnishing) (STV 1.0 0.9091)) +(: cnet_isa_8fa8ee9b3c (IsA curtain barrier) (STV 1.0 0.9091)) +(: cnet_isa_820a9d0490 (IsA curtain_lecture lecture) (STV 1.0 0.9091)) +(: cnet_isa_774a418159 (IsA curtain_raiser first_step) (STV 1.0 0.9091)) +(: cnet_isa_73dfd002d8 (IsA curtain_raiser play) (STV 1.0 0.9091)) +(: cnet_isa_17e9494c64 (IsA curtain_ring hoop) (STV 1.0 0.9091)) +(: cnet_isa_e189ccd21a (IsA curtate_cycloid cycloid) (STV 1.0 0.9091)) +(: cnet_isa_14cc03b9ae (IsA curtisia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e9521ef666 (IsA curtsy gesture) (STV 1.0 0.9091)) +(: cnet_isa_b686930c11 (IsA curtsy reverence) (STV 1.0 0.9091)) +(: cnet_isa_835b1ff3b8 (IsA curvaceousness pulchritude) (STV 1.0 0.9091)) +(: cnet_isa_25dc5f5360 (IsA curvature derived_function) (STV 1.0 0.9091)) +(: cnet_isa_4a95276483 (IsA curvature shape) (STV 1.0 0.9091)) +(: cnet_isa_e271eab875 (IsA curvature condition) (STV 1.0 0.9091)) +(: cnet_isa_27d1528879 (IsA curve pitch) (STV 1.0 0.9091)) +(: cnet_isa_8e87d6f2c7 (IsA curve line) (STV 1.0 0.9091)) +(: cnet_isa_5e44207c94 (IsA curvet dressage) (STV 1.0 0.9091)) +(: cnet_isa_478ec13bac (IsA curvilinear_correlation correlation) (STV 1.0 0.9091)) +(: cnet_isa_b0443e5d95 (IsA curvilinear_regression regression) (STV 1.0 0.9091)) +(: cnet_isa_d04738d8da (IsA cuscus phalanger) (STV 1.0 0.9091)) +(: cnet_isa_87fa59daaf (IsA cuscuta dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_61c68980d0 (IsA cush_cush yam) (STV 1.0 0.9091)) +(: cnet_isa_3af4ebff71 (IsA cushaw winter_squash) (STV 1.0 0.9091)) +(: cnet_isa_9b0864221b (IsA cushing_s_disease glandular_disease) (STV 1.0 0.9091)) +(: cnet_isa_35e0d87f85 (IsA cushing_s_syndrome glandular_disease) (STV 1.0 0.9091)) +(: cnet_isa_428853e792 (IsA cushion layer) (STV 1.0 0.9091)) +(: cnet_isa_945aa9f07e (IsA cushion padding) (STV 1.0 0.9091)) +(: cnet_isa_ff9d324055 (IsA cushion_flower shrub) (STV 1.0 0.9091)) +(: cnet_isa_68539b9204 (IsA cushitic afroasiatic) (STV 1.0 0.9091)) +(: cnet_isa_2bfe4b15c6 (IsA cusk gadoid) (STV 1.0 0.9091)) +(: cnet_isa_218383332d (IsA cusk saltwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_aa28bfad60 (IsA cusk_eel percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_4d9e544bb7 (IsA cusp point) (STV 1.0 0.9091)) +(: cnet_isa_952f667ca1 (IsA cusp flap) (STV 1.0 0.9091)) +(: cnet_isa_39e39884cd (IsA cuspidation embellishment) (STV 1.0 0.9091)) +(: cnet_isa_1fe5800196 (IsA cussedness contrariness) (STV 1.0 0.9091)) +(: cnet_isa_0517597ccf (IsA custard dish) (STV 1.0 0.9091)) +(: cnet_isa_1b4f8d449b (IsA custard_apple edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_74caf54f77 (IsA custard_apple fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_f2cb9ad66e (IsA custard_pie property) (STV 1.0 0.9091)) +(: cnet_isa_8ed6a65035 (IsA custodial_account cash_account) (STV 1.0 0.9091)) +(: cnet_isa_696a1fae0d (IsA custodian defender) (STV 1.0 0.9091)) +(: cnet_isa_4a65652a75 (IsA custodianship position) (STV 1.0 0.9091)) +(: cnet_isa_0ecf534145 (IsA custody imprisonment) (STV 1.0 0.9091)) +(: cnet_isa_08a2b04dec (IsA custody_battle litigation) (STV 1.0 0.9091)) +(: cnet_isa_4d3d2411ba (IsA custody_case legal_action) (STV 1.0 0.9091)) +(: cnet_isa_305710a33b (IsA custom practice) (STV 1.0 0.9091)) +(: cnet_isa_dce2c1250f (IsA custom survival) (STV 1.0 0.9091)) +(: cnet_isa_f82e435a4d (IsA custom trade) (STV 1.0 0.9091)) +(: cnet_isa_7685de790f (IsA custom_built item) (STV 1.0 0.9091)) +(: cnet_isa_095967703d (IsA customer consumer) (STV 1.0 0.9091)) +(: cnet_isa_515214d6d1 (IsA customer_agent buyer) (STV 1.0 0.9091)) +(: cnet_isa_196088e203 (IsA customhouse government_building) (STV 1.0 0.9091)) +(: cnet_isa_a8c30f6f3c (IsA custom duty) (STV 1.0 0.9091)) +(: cnet_isa_eace26df58 (IsA custom_union union) (STV 1.0 0.9091)) +(: cnet_isa_71d9f91ad3 (IsA cut absence) (STV 1.0 0.9091)) +(: cnet_isa_5104cc39f4 (IsA cut decrease) (STV 1.0 0.9091)) +(: cnet_isa_297da4e8a6 (IsA cut division) (STV 1.0 0.9091)) +(: cnet_isa_afbb51742e (IsA cut opening) (STV 1.0 0.9091)) +(: cnet_isa_7f8978b0ce (IsA cut shortening) (STV 1.0 0.9091)) +(: cnet_isa_3ae2175610 (IsA cut canal) (STV 1.0 0.9091)) +(: cnet_isa_27a199a037 (IsA cut furrow) (STV 1.0 0.9091)) +(: cnet_isa_f6ff915d2d (IsA cut fashion) (STV 1.0 0.9091)) +(: cnet_isa_dd3f0b2f42 (IsA cut excerpt) (STV 1.0 0.9091)) +(: cnet_isa_51af9e7b42 (IsA cut transition) (STV 1.0 0.9091)) +(: cnet_isa_061226c38e (IsA cut meat) (STV 1.0 0.9091)) +(: cnet_isa_a25876d667 (IsA cut share) (STV 1.0 0.9091)) +(: cnet_isa_51fbec4f9d (IsA cut gradation) (STV 1.0 0.9091)) +(: cnet_isa_0a2e6bf4d5 (IsA cut wound) (STV 1.0 0.9091)) +(: cnet_isa_bd9de0c099 (IsA cut stroke) (STV 1.0 0.9091)) +(: cnet_isa_d5c7e08876 (IsA cut_glass glassware) (STV 1.0 0.9091)) +(: cnet_isa_8626a478bc (IsA cut_in break) (STV 1.0 0.9091)) +(: cnet_isa_143278ced6 (IsA cut_of_beef cut) (STV 1.0 0.9091)) +(: cnet_isa_5cd11a9377 (IsA cut_of_lamb cut) (STV 1.0 0.9091)) +(: cnet_isa_6517b63e0a (IsA cut_of_mutton cut) (STV 1.0 0.9091)) +(: cnet_isa_463cadf232 (IsA cut_of_pork cut) (STV 1.0 0.9091)) +(: cnet_isa_285e70ea07 (IsA cut_of_veal cut) (STV 1.0 0.9091)) +(: cnet_isa_5bb8800fd7 (IsA cutaneous_anthrax anthrax) (STV 1.0 0.9091)) +(: cnet_isa_5641ae611b (IsA cutaneous_leishmaniasis leishmaniasis) (STV 1.0 0.9091)) +(: cnet_isa_94a1768fdf (IsA cutaneous_sensation touch) (STV 1.0 0.9091)) +(: cnet_isa_40a4c43931 (IsA cutaneous_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_5a4de06edf (IsA cutaway coat) (STV 1.0 0.9091)) +(: cnet_isa_8b3e6d931b (IsA cutaway representation) (STV 1.0 0.9091)) +(: cnet_isa_848cfdc434 (IsA cutback decrease) (STV 1.0 0.9091)) +(: cnet_isa_e87d714e5c (IsA cutch tannin) (STV 1.0 0.9091)) +(: cnet_isa_d06ef3a9a2 (IsA cuterebra arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_54178a5492 (IsA cuterebridae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_30354f9c5a (IsA cuticle skin) (STV 1.0 0.9091)) +(: cnet_isa_cfe831ce47 (IsA cuticula carapace) (STV 1.0 0.9091)) +(: cnet_isa_e326db7de8 (IsA cutin plant_material) (STV 1.0 0.9091)) +(: cnet_isa_67a5e5992b (IsA cutla sword) (STV 1.0 0.9091)) +(: cnet_isa_7b4e7c66e5 (IsA cutlassfish percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_43548311b5 (IsA cutleaved_coneflower coneflower) (STV 1.0 0.9091)) +(: cnet_isa_633d08422c (IsA cutler trader) (STV 1.0 0.9091)) +(: cnet_isa_956d8e7019 (IsA cutlery tableware) (STV 1.0 0.9091)) +(: cnet_isa_a398c7ad58 (IsA cutlet piece) (STV 1.0 0.9091)) +(: cnet_isa_7249ed7264 (IsA cutoff device) (STV 1.0 0.9091)) +(: cnet_isa_d3b17cccbc (IsA cutoff limit) (STV 1.0 0.9091)) +(: cnet_isa_c3fe876774 (IsA cutout part) (STV 1.0 0.9091)) +(: cnet_isa_233b4a4f9e (IsA cutout photographic_print) (STV 1.0 0.9091)) +(: cnet_isa_8a621eb1de (IsA cutout switch) (STV 1.0 0.9091)) +(: cnet_isa_a1744b0397 (IsA cutter cutting_implement) (STV 1.0 0.9091)) +(: cnet_isa_c006f02c6f (IsA cutter sailing_vessel) (STV 1.0 0.9091)) +(: cnet_isa_4fd1a7a8be (IsA cutter diner) (STV 1.0 0.9091)) +(: cnet_isa_45cce655bc (IsA cutter skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_cf218de221 (IsA cutthroat murderer) (STV 1.0 0.9091)) +(: cnet_isa_46a67f599c (IsA cutting dilution) (STV 1.0 0.9091)) +(: cnet_isa_80c915791a (IsA cutting part) (STV 1.0 0.9091)) +(: cnet_isa_b24ced5302 (IsA cutting stalk) (STV 1.0 0.9091)) +(: cnet_isa_dfc2dac54c (IsA cutting_angle angle) (STV 1.0 0.9091)) +(: cnet_isa_5dd27c9a0c (IsA cutting_implement tool) (STV 1.0 0.9091)) +(: cnet_isa_c5d7de37a9 (IsA cutting_room room) (STV 1.0 0.9091)) +(: cnet_isa_4223cb16d1 (IsA cuttlefish decapod) (STV 1.0 0.9091)) +(: cnet_isa_da26e13511 (IsA cutty_stool stool) (STV 1.0 0.9091)) +(: cnet_isa_29d6840c15 (IsA cutwork embroidery) (STV 1.0 0.9091)) +(: cnet_isa_ea9b6fc070 (IsA cutworm caterpillar) (STV 1.0 0.9091)) +(: cnet_isa_04482653cd (IsA cy_pre rule) (STV 1.0 0.9091)) +(: cnet_isa_e42167f7b7 (IsA cyamopsis rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9cb13103d8 (IsA cyamus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_5daf2de669 (IsA cyan colour) (STV 1.0 0.9091)) +(: cnet_isa_115031c5f2 (IsA cyan bluish_green) (STV 1.0 0.9091)) +(: cnet_isa_c98a3bfbd8 (IsA cyanamide acid) (STV 1.0 0.9091)) +(: cnet_isa_62a655078e (IsA cyanic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_8c730d644c (IsA cyanide salt) (STV 1.0 0.9091)) +(: cnet_isa_15df059ec2 (IsA cyanide_poisoning poisoning) (STV 1.0 0.9091)) +(: cnet_isa_d14372e2c8 (IsA cyanide_process industrial_process) (STV 1.0 0.9091)) +(: cnet_isa_dc78bda810 (IsA cyanine_dye dye) (STV 1.0 0.9091)) +(: cnet_isa_c07a85f2e8 (IsA cyano_group group) (STV 1.0 0.9091)) +(: cnet_isa_3f1958377e (IsA cyanobacteria eubacteria) (STV 1.0 0.9091)) +(: cnet_isa_a7098ba053 (IsA cyanocitta bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_1ffa6d3cf2 (IsA cyanogen gas) (STV 1.0 0.9091)) +(: cnet_isa_e2a77b49c5 (IsA cyanohydrin organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_f046c08730 (IsA cyanophyta division) (STV 1.0 0.9091)) +(: cnet_isa_9a2d5ac980 (IsA cyanosis symptom) (STV 1.0 0.9091)) +(: cnet_isa_df3d66acf1 (IsA cyanuric_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_5a63d8bde2 (IsA cyathea fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_6bee4b3630 (IsA cyatheaceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_2a8bf066ee (IsA cyber_terrorism terrorism) (STV 1.0 0.9091)) +(: cnet_isa_a546d3c96a (IsA cyberart art) (STV 1.0 0.9091)) +(: cnet_isa_0704dd87ec (IsA cybercafe cafe) (STV 1.0 0.9091)) +(: cnet_isa_ad26323ef2 (IsA cybercrime crime) (STV 1.0 0.9091)) +(: cnet_isa_0ed24b96ca (IsA cyberculture culture) (STV 1.0 0.9091)) +(: cnet_isa_716d3496ce (IsA cybernaut computer_user) (STV 1.0 0.9091)) +(: cnet_isa_d0ba93031f (IsA cybernetic information_science) (STV 1.0 0.9091)) +(: cnet_isa_8b91842939 (IsA cyberphobia simple_phobia) (STV 1.0 0.9091)) +(: cnet_isa_efcfe94265 (IsA cyberpunk science_fiction) (STV 1.0 0.9091)) +(: cnet_isa_cdb0dcea99 (IsA cyberpunk writer) (STV 1.0 0.9091)) +(: cnet_isa_db5f87fe1a (IsA cybersex sexual_arousal) (STV 1.0 0.9091)) +(: cnet_isa_7f4b7757cd (IsA cyborg machine) (STV 1.0 0.9091)) +(: cnet_isa_bf44cb2dd2 (IsA cycad gymnosperm) (STV 1.0 0.9091)) +(: cnet_isa_99b4d6e942 (IsA cycadaceae gymnosperm_family) (STV 1.0 0.9091)) +(: cnet_isa_ee70707201 (IsA cycadale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_3d70924b39 (IsA cycadofilicale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_6e711a85da (IsA cycadopsida class) (STV 1.0 0.9091)) +(: cnet_isa_af5c8fede2 (IsA cyca gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_f67b22cdc1 (IsA cycladic_civilization aegean_civilization) (STV 1.0 0.9091)) +(: cnet_isa_a3318bf0db (IsA cyclamen flower) (STV 1.0 0.9091)) +(: cnet_isa_9870672fef (IsA cycle periodic_event) (STV 1.0 0.9091)) +(: cnet_isa_8578123f2c (IsA cycle repeat) (STV 1.0 0.9091)) +(: cnet_isa_6a5a8f2142 (IsA cycle sery) (STV 1.0 0.9091)) +(: cnet_isa_d92c1e0f36 (IsA cycle time_interval) (STV 1.0 0.9091)) +(: cnet_isa_83f3df996f (IsA cycle_of_rebirth reincarnation) (STV 1.0 0.9091)) +(: cnet_isa_1bc736c3b0 (IsA cyclic_neutropenia neutropenia) (STV 1.0 0.9091)) +(: cnet_isa_76bf37f860 (IsA cyclic_redundancy_check error_correction_code) (STV 1.0 0.9091)) +(: cnet_isa_e4be77f8c8 (IsA cyclicity regularity) (STV 1.0 0.9091)) +(: cnet_isa_ab75086134 (IsA cyclin cyclin) (STV 1.0 0.9091)) +(: cnet_isa_583068ad0d (IsA cyclin_molecule cyclin) (STV 1.0 0.9339)) +(: cnet_isa_9f108d2b95 (IsA cyclin_molecule cyclin_molecule) (STV 1.0 0.9091)) +(: cnet_isa_eaebdadc65 (IsA cyclin_molecule molecule) (STV 1.0 0.9339)) +(: cnet_isa_d30362b308 (IsA cycling sport) (STV 1.0 0.9091)) +(: cnet_isa_6f706172aa (IsA cycliophora phylum) (STV 1.0 0.9091)) +(: cnet_isa_d0a9c5af7d (IsA cyclist pedaler) (STV 1.0 0.9091)) +(: cnet_isa_21411c408a (IsA cyclodestructive_surgery eye_operation) (STV 1.0 0.9091)) +(: cnet_isa_73c29777a8 (IsA cyclohexanol alcohol) (STV 1.0 0.9091)) +(: cnet_isa_02d4d8e9b9 (IsA cyclohexanol_phthalate ester) (STV 1.0 0.9091)) +(: cnet_isa_b6faa55807 (IsA cycloid roulette) (STV 1.0 0.9091)) +(: cnet_isa_f59209c3fd (IsA cycloloma caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_713de0b819 (IsA cyclone atmosphere) (STV 1.0 0.9091)) +(: cnet_isa_22f3fbf9d5 (IsA cyclone windstorm) (STV 1.0 0.9091)) +(: cnet_isa_e67bcfe92f (IsA cyclooxygenase enzyme) (STV 1.0 0.9091)) +(: cnet_isa_3aa9bf6d80 (IsA cyclooxygenase_1 cyclooxygenase) (STV 1.0 0.9091)) +(: cnet_isa_f5123c3a18 (IsA cyclooxygenase_2 cyclooxygenase) (STV 1.0 0.9091)) +(: cnet_isa_aa99d3086d (IsA cyclopean_masonry stonework) (STV 1.0 0.9091)) +(: cnet_isa_50f08b388d (IsA cyclope mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_d885902986 (IsA cyclophorus fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_560fd34589 (IsA cyclopia abnormality) (STV 1.0 0.9091)) +(: cnet_isa_b20aa3cb65 (IsA cyclopropane inhalation_anesthetic) (STV 1.0 0.9091)) +(: cnet_isa_80f54ca2dd (IsA cyclop copepod) (STV 1.0 0.9091)) +(: cnet_isa_9aafc49712 (IsA cyclop giant) (STV 1.0 0.9091)) +(: cnet_isa_95a984dcdb (IsA cyclopteridae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_c3f629bce0 (IsA cyclopterus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_e0f0be79b9 (IsA cycloserine antibiotic) (STV 1.0 0.9091)) +(: cnet_isa_4e8838b142 (IsA cyclosis organic_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_211648caf4 (IsA cyclosorus fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_e29ab0e1bd (IsA cyclosporeae class) (STV 1.0 0.9091)) +(: cnet_isa_bfd6e97d03 (IsA cyclostomata animal_order) (STV 1.0 0.9091)) +(: cnet_isa_b61debd39e (IsA cyclostome jawless_vertebrate) (STV 1.0 0.9091)) +(: cnet_isa_af9e758ea3 (IsA cyclostyle writing_implement) (STV 1.0 0.9091)) +(: cnet_isa_3c6050ee15 (IsA cyclothymia bipolar_disorder) (STV 1.0 0.9091)) +(: cnet_isa_4a7ddf5ffd (IsA cyclotron accelerator) (STV 1.0 0.9091)) +(: cnet_isa_d18a8deb93 (IsA cycnoche monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ec8afda399 (IsA cydippida animal_order) (STV 1.0 0.9091)) +(: cnet_isa_4dd628ccbd (IsA cydonia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_60c0deabe4 (IsA cygnet swan) (STV 1.0 0.9091)) +(: cnet_isa_671a3851dc (IsA cygnet young_bird) (STV 1.0 0.9091)) +(: cnet_isa_c25d680674 (IsA cygnus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_7465506e19 (IsA cylinder chamber) (STV 1.0 0.9091)) +(: cnet_isa_ff2ef7ed7d (IsA cylinder container) (STV 1.0 0.9091)) +(: cnet_isa_b610d0a0ef (IsA cylinder round_shape) (STV 1.0 0.9091)) +(: cnet_isa_b32e26d736 (IsA cylinder solid) (STV 1.0 0.9091)) +(: cnet_isa_97eb73ae62 (IsA cylinder_head plate) (STV 1.0 0.9091)) +(: cnet_isa_47179dea20 (IsA cylinder_lock lock) (STV 1.0 0.9091)) +(: cnet_isa_fa16eb54a6 (IsA cylindricality roundness) (STV 1.0 0.9091)) +(: cnet_isa_2c29cc6d65 (IsA cyma molding) (STV 1.0 0.9091)) +(: cnet_isa_656e9e3e0b (IsA cyma_recta cyma) (STV 1.0 0.9091)) +(: cnet_isa_d60ac3dcac (IsA cyma_reversa cyma) (STV 1.0 0.9091)) +(: cnet_isa_9d1b91cfb5 (IsA cymatiidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_af10ec68f9 (IsA cymbal percussion_instrument) (STV 1.0 0.9091)) +(: cnet_isa_a5654f62fb (IsA cymbalist percussionist) (STV 1.0 0.9091)) +(: cnet_isa_be7dd80ad4 (IsA cymbid orchid) (STV 1.0 0.9091)) +(: cnet_isa_5b3f442b86 (IsA cyme inflorescence) (STV 1.0 0.9091)) +(: cnet_isa_cef81c3af9 (IsA cymene hydrocarbon) (STV 1.0 0.9091)) +(: cnet_isa_010e0c9828 (IsA cymling summer_squash) (STV 1.0 0.9091)) +(: cnet_isa_1e8c5e892b (IsA cymry european) (STV 1.0 0.9091)) +(: cnet_isa_266d1f510b (IsA cymule cyme) (STV 1.0 0.9091)) +(: cnet_isa_70ae2beaa1 (IsA cynancum liana) (STV 1.0 0.9091)) +(: cnet_isa_e3da4c5984 (IsA cynara asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_90676578d2 (IsA cynic philosopher) (STV 1.0 0.9091)) +(: cnet_isa_32e613188b (IsA cynic unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_108511818a (IsA cynicism pessimism) (STV 1.0 0.9091)) +(: cnet_isa_2ebde6e6fd (IsA cynipidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_964c743a75 (IsA cynip arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_ff3637e805 (IsA cynocephalidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_bc6ebee34e (IsA cynocephalus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_aadd5fa09e (IsA cynocephalus_variegatus flying_lemur) (STV 1.0 0.9091)) +(: cnet_isa_252b9c38c9 (IsA cynodon monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d254e607d4 (IsA cynodont therapsid) (STV 1.0 0.9091)) +(: cnet_isa_fda55aa70a (IsA cynodontia division) (STV 1.0 0.9091)) +(: cnet_isa_96fc3cfc67 (IsA cynoglossidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_d17c22e863 (IsA cynoglossum plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_e0d3b6e08e (IsA cynomy mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_763a8956ff (IsA cynophobia zoophobia) (STV 1.0 0.9091)) +(: cnet_isa_c134348550 (IsA cynopterus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_d2f7bb7130 (IsA cynopterus_sphinx fruit_bat) (STV 1.0 0.9091)) +(: cnet_isa_ce3669f085 (IsA cynoscion fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_c543167d34 (IsA cynosure center) (STV 1.0 0.9091)) +(: cnet_isa_8030792747 (IsA cynosure guidance) (STV 1.0 0.9091)) +(: cnet_isa_bd87ccc095 (IsA cynthia_moth giant_silkworm_moth) (STV 1.0 0.9091)) +(: cnet_isa_9837e401d3 (IsA cyperaceae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_056c5416ee (IsA cyperus cyperaceae) (STV 1.0 0.9091)) +(: cnet_isa_b1fa411a23 (IsA cyperus monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7d11b397bb (IsA cyphomandra asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ddce16c13d (IsA cypraea mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_cd10a860b5 (IsA cypraeidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_21ad69f2dd (IsA cypress conifer) (STV 1.0 0.9091)) +(: cnet_isa_5ec18c0f5b (IsA cypress wood) (STV 1.0 0.9091)) +(: cnet_isa_06f23e702a (IsA cypress_pine cypress) (STV 1.0 0.9091)) +(: cnet_isa_ced4bcbcfd (IsA cypress_sedge sedge) (STV 1.0 0.9091)) +(: cnet_isa_3af24971fd (IsA cypress_spurge spurge) (STV 1.0 0.9091)) +(: cnet_isa_9d2edc0063 (IsA cypress_vine morning_glory) (STV 1.0 0.9091)) +(: cnet_isa_cbf086953e (IsA cyprinid cypriniform_fish) (STV 1.0 0.9091)) +(: cnet_isa_8bef651aea (IsA cyprinidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_7016fabe2b (IsA cypriniform_fish soft_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_0a27729d73 (IsA cypriniforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_15e331d4d2 (IsA cyprinodont cypriniform_fish) (STV 1.0 0.9091)) +(: cnet_isa_a8cf0d5672 (IsA cyprinodontidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_6a7f79a39e (IsA cyprinus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_8d15430aa2 (IsA cypriot_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_0f6852a1cd (IsA cypriot_pound cypriot_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_e4e3fd50b0 (IsA cypriote european) (STV 1.0 0.9091)) +(: cnet_isa_58800328c0 (IsA cypripedia orchid) (STV 1.0 0.9091)) +(: cnet_isa_3ae7a0de09 (IsA cypripedium monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_91fa7f09c2 (IsA cyrilla shrub) (STV 1.0 0.9091)) +(: cnet_isa_78c3b8396a (IsA cyrilliaceae dicot) (STV 1.0 0.9091)) +(: cnet_isa_14f16e8c6b (IsA cyrillic_alphabet alphabet) (STV 1.0 0.9091)) +(: cnet_isa_ff995825ff (IsA cyrillic_alphabet bicameral_script) (STV 1.0 0.9091)) +(: cnet_isa_b1dbfcb68e (IsA cyrtomium fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_5d1b400ed7 (IsA cyst pathology) (STV 1.0 0.9091)) +(: cnet_isa_be01fbcecf (IsA cysteine amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_b886d52145 (IsA cystic_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_7b9d3946c3 (IsA cystic_fibrosis fibrosis) (STV 1.0 0.9091)) +(: cnet_isa_2238d50c98 (IsA cystic_fibrosis monogenic_disorder) (STV 1.0 0.9091)) +(: cnet_isa_3d999275db (IsA cystic_fibrosis_transport_regulator mutant_gene) (STV 1.0 0.9091)) +(: cnet_isa_32b69394c2 (IsA cystic_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_9729df11e0 (IsA cystine amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_fa9fa4f3cf (IsA cystitis urinary_tract_infection) (STV 1.0 0.9091)) +(: cnet_isa_988572e056 (IsA cystocele colpocele) (STV 1.0 0.9091)) +(: cnet_isa_736f22aac4 (IsA cystoid_macular_edema edema) (STV 1.0 0.9091)) +(: cnet_isa_7fd4bffc4f (IsA cystoid_macular_edema eye_disease) (STV 1.0 0.9091)) +(: cnet_isa_ec7575e8ed (IsA cystophora mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_c4155cefa1 (IsA cystoplegia paralysis) (STV 1.0 0.9091)) +(: cnet_isa_7a9d8363b3 (IsA cystopteris fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_a45c6994cc (IsA cytisus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_811703b13d (IsA cytoarchitecture structure) (STV 1.0 0.9091)) +(: cnet_isa_839e800adf (IsA cytochrome hemoprotein) (STV 1.0 0.9091)) +(: cnet_isa_8d476de957 (IsA cytochrome_c cytochrome) (STV 1.0 0.9091)) +(: cnet_isa_63b87f8c18 (IsA cytogenesis growth) (STV 1.0 0.9091)) +(: cnet_isa_deb98cda73 (IsA cytogeneticist geneticist) (STV 1.0 0.9091)) +(: cnet_isa_0e78ed31ee (IsA cytogenetic cytology) (STV 1.0 0.9091)) +(: cnet_isa_0360d8afb4 (IsA cytogenetic genetic) (STV 1.0 0.9091)) +(: cnet_isa_283f79bc32 (IsA cytokine protein) (STV 1.0 0.9091)) +(: cnet_isa_2156122806 (IsA cytokinesis organic_process) (STV 1.0 0.9091)) +(: cnet_isa_2794d2ec2b (IsA cytologic_specimen specimen) (STV 1.0 0.9091)) +(: cnet_isa_b77065f380 (IsA cytologist biologist) (STV 1.0 0.9091)) +(: cnet_isa_3cf0c46fc3 (IsA cytology biology) (STV 1.0 0.9091)) +(: cnet_isa_e7c7a97688 (IsA cytology microscopic_anatomy) (STV 1.0 0.9091)) +(: cnet_isa_1817aec4d1 (IsA cytolysin lysin) (STV 1.0 0.9091)) +(: cnet_isa_4dade8d1bd (IsA cytolysis lysis) (STV 1.0 0.9091)) +(: cnet_isa_fbd577a12d (IsA cytomegalovirus herpe) (STV 1.0 0.9091)) +(: cnet_isa_881acca816 (IsA cytopenia blood_disease) (STV 1.0 0.9091)) +(: cnet_isa_9aeb741e94 (IsA cytophotometer light_meter) (STV 1.0 0.9091)) +(: cnet_isa_6b991b9620 (IsA cytophotometry photometry) (STV 1.0 0.9091)) +(: cnet_isa_5670a0bdfe (IsA cytoplasm protoplasm) (STV 1.0 0.9091)) +(: cnet_isa_f8da940434 (IsA cytoplast cytoplasm) (STV 1.0 0.9091)) +(: cnet_isa_14e3bfb85f (IsA cytosine pyrimidine) (STV 1.0 0.9091)) +(: cnet_isa_de2af031c6 (IsA cytoskeleton structure) (STV 1.0 0.9091)) +(: cnet_isa_3170a2ce3b (IsA cytosol cytoplasm) (STV 1.0 0.9091)) +(: cnet_isa_be5a6d1c6e (IsA cytostome mouth) (STV 1.0 0.9091)) +(: cnet_isa_8346fe40b2 (IsA cytotoxic_drug medicine) (STV 1.0 0.9091)) +(: cnet_isa_ef299aef93 (IsA cytotoxicity toxicity) (STV 1.0 0.9091)) +(: cnet_isa_5d11c72557 (IsA cytotoxin toxin) (STV 1.0 0.9091)) +(: cnet_isa_b6b5c6c5da (IsA czar sovereign) (STV 1.0 0.9091)) +(: cnet_isa_21c64cdf54 (IsA czar tyrant) (STV 1.0 0.9091)) +(: cnet_isa_1845abb46d (IsA czarina female_aristocrat) (STV 1.0 0.9091)) +(: cnet_isa_2f3e0eb8cd (IsA czech slavic) (STV 1.0 0.9091)) +(: cnet_isa_f89922820a (IsA czech european) (STV 1.0 0.9091)) +(: cnet_isa_4789fbae6a (IsA czech_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_bc2004c1ec (IsA czechoslovak european) (STV 1.0 0.9091)) +(: cnet_isa_a9a31a5a47 (IsA d_a doctor_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_dbff244b0a (IsA d letter) (STV 1.0 0.9091)) +(: cnet_isa_ab77a76b23 (IsA da_wah mission) (STV 1.0 0.9091)) +(: cnet_isa_1cd913b240 (IsA dab small_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_6c3ad97aaf (IsA daba biu_mandara) (STV 1.0 0.9091)) +(: cnet_isa_461043e13e (IsA dabbler amateur) (STV 1.0 0.9091)) +(: cnet_isa_cd7d12c890 (IsA dabbling_duck duck) (STV 1.0 0.9091)) +(: cnet_isa_58eb7e0bd8 (IsA dabchick grebe) (STV 1.0 0.9091)) +(: cnet_isa_d961342e95 (IsA daboecia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6436f203d6 (IsA dace cyprinid) (STV 1.0 0.9091)) +(: cnet_isa_978ab8a08b (IsA dacelo bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_65661c1b4c (IsA dacha country_house) (STV 1.0 0.9091)) +(: cnet_isa_c3a6ffbd7b (IsA dachshund hunting_dog) (STV 1.0 0.9091)) +(: cnet_isa_2087559708 (IsA dacite volcanic_rock) (STV 1.0 0.9091)) +(: cnet_isa_29687bf060 (IsA dacoit thief) (STV 1.0 0.9091)) +(: cnet_isa_aca10fec9b (IsA dacoity robbery) (STV 1.0 0.9091)) +(: cnet_isa_94f621f973 (IsA dacrycarpus gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_697b44d9c5 (IsA dacrydium gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_401dc6ddc9 (IsA dacrymyce fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_983fa5a132 (IsA dacrymycetaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_8ab4025762 (IsA dacryocystitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_e6f7bf174c (IsA dacryon craniometric_point) (STV 1.0 0.9091)) +(: cnet_isa_3f9e2f8948 (IsA dactyl metrical_foot) (STV 1.0 0.9091)) +(: cnet_isa_6cbc303b99 (IsA dactylis monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0a094cc555 (IsA dactyloctenium monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f377ebf16b (IsA dactylomegaly hypertrophy) (STV 1.0 0.9091)) +(: cnet_isa_9894fd305c (IsA dactylopiidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_ee9078d55a (IsA dactylopius arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_7320bc1384 (IsA dactylopteridae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_3f6d61f24d (IsA dactylopterus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_3d0477f520 (IsA dactylorhiza monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9c748c0f8b (IsA dactyloscopidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_fdf0ffa1f6 (IsA dad father) (STV 1.0 0.9091)) +(: cnet_isa_eeb6ae7722 (IsA dada artistic_movement) (STV 1.0 0.9091)) +(: cnet_isa_a283aa1f40 (IsA dado groove) (STV 1.0 0.9091)) +(: cnet_isa_562cb18cfa (IsA dado section) (STV 1.0 0.9091)) +(: cnet_isa_0fe58c391e (IsA dado_plane openside_plane) (STV 1.0 0.9091)) +(: cnet_isa_8159d0792b (IsA daemon deity) (STV 1.0 0.9091)) +(: cnet_isa_f40be47bb9 (IsA daffodil narcissus) (STV 1.0 0.9091)) +(: cnet_isa_8b84bb25bf (IsA daffodil_garlic alliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_bbcb92a0b8 (IsA daffodil flower) (STV 1.0 0.9091)) +(: cnet_isa_ad612e59c2 (IsA dagame tree) (STV 1.0 0.9091)) +(: cnet_isa_f5beafd603 (IsA dagestani ethnic_minority) (STV 1.0 0.9091)) +(: cnet_isa_008df3ffe1 (IsA dagga herb) (STV 1.0 0.9091)) +(: cnet_isa_3270623831 (IsA dagger knife) (STV 1.0 0.9091)) +(: cnet_isa_cf8d16fedf (IsA dagger character) (STV 1.0 0.9091)) +(: cnet_isa_d72ceac669 (IsA daggerboard centerboard) (STV 1.0 0.9091)) +(: cnet_isa_3a0c8530b6 (IsA daguerreotype picture) (STV 1.0 0.9091)) +(: cnet_isa_590d959896 (IsA dahlia flower) (STV 1.0 0.9091)) +(: cnet_isa_962d02e304 (IsA daikon radish_plant) (STV 1.0 0.9091)) +(: cnet_isa_090be8a1a5 (IsA dail_eireann house) (STV 1.0 0.9091)) +(: cnet_isa_f735076f40 (IsA daily newspaper) (STV 1.0 0.9091)) +(: cnet_isa_7fb09a562b (IsA daily_double bet) (STV 1.0 0.9091)) +(: cnet_isa_04ee47bb2a (IsA daily_variation variation) (STV 1.0 0.9091)) +(: cnet_isa_2404d1e8f4 (IsA daintiness elegance) (STV 1.0 0.9091)) +(: cnet_isa_89632fe8fc (IsA dainty nutriment) (STV 1.0 0.9091)) +(: cnet_isa_c83fa0a442 (IsA daiquiri cocktail) (STV 1.0 0.9091)) +(: cnet_isa_7c4d8cf39a (IsA dairy farm) (STV 1.0 0.9091)) +(: cnet_isa_81ca625a67 (IsA dairy_cattle cattle) (STV 1.0 0.9091)) +(: cnet_isa_ea4d6d5af0 (IsA dairy_product foodstuff) (STV 1.0 0.9091)) +(: cnet_isa_cd5072e2c1 (IsA dairying farming) (STV 1.0 0.9091)) +(: cnet_isa_aede20c455 (IsA dairymaid farmhand) (STV 1.0 0.9091)) +(: cnet_isa_c7058d0899 (IsA dairyman farmer) (STV 1.0 0.9091)) +(: cnet_isa_efe9ce5c87 (IsA dairyman farmhand) (STV 1.0 0.9091)) +(: cnet_isa_5830b76cc7 (IsA dais platform) (STV 1.0 0.9091)) +(: cnet_isa_de31564f27 (IsA daisy flower) (STV 1.0 0.9091)) +(: cnet_isa_3c85c2dc07 (IsA daisy_chain flower_chain) (STV 1.0 0.9091)) +(: cnet_isa_a4f10a6650 (IsA daisy_chain chain) (STV 1.0 0.9091)) +(: cnet_isa_b727dc50a3 (IsA daisy_cutter baseball) (STV 1.0 0.9091)) +(: cnet_isa_8e14680813 (IsA daisy_fleabane fleabane) (STV 1.0 0.9091)) +(: cnet_isa_ba80f77dd9 (IsA daisy_print_wheel wheel) (STV 1.0 0.9091)) +(: cnet_isa_00a62d7012 (IsA daisybush shrub) (STV 1.0 0.9091)) +(: cnet_isa_c6c86b02d0 (IsA daisyleaf_grape_fern grape_fern) (STV 1.0 0.9091)) +(: cnet_isa_44d956657a (IsA daisywheel_printer character_printer) (STV 1.0 0.9091)) +(: cnet_isa_a82171bf4e (IsA dakota siouan) (STV 1.0 0.9091)) +(: cnet_isa_95ba35e9cd (IsA dalasi gambian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_d5ff119571 (IsA dalbergia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ffb7b8f98f (IsA dale valley) (STV 1.0 0.9091)) +(: cnet_isa_f416a0cc32 (IsA dalea rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9ff490652b (IsA dalesman resident) (STV 1.0 0.9091)) +(: cnet_isa_f26ec65852 (IsA daleth letter) (STV 1.0 0.9091)) +(: cnet_isa_de95fee39b (IsA dall_sheep wild_sheep) (STV 1.0 0.9091)) +(: cnet_isa_3cd9c3df09 (IsA dalla city) (STV 1.0 0.9454)) +(: cnet_isa_91965d88e2 (IsA dalla city_in_texa) (STV 1.0 0.9091)) +(: cnet_isa_d400942d71 (IsA dalliance delay) (STV 1.0 0.9091)) +(: cnet_isa_0c1ebcf39e (IsA dallier idler) (STV 1.0 0.9091)) +(: cnet_isa_6ba4997577 (IsA dallisgrass grass) (STV 1.0 0.9091)) +(: cnet_isa_d72e22a544 (IsA dalmatian dog) (STV 1.0 0.9091)) +(: cnet_isa_dac35bbe02 (IsA dalmatian european) (STV 1.0 0.9091)) +(: cnet_isa_451b3b42ba (IsA dalmatian_iris bearded_iris) (STV 1.0 0.9091)) +(: cnet_isa_6e1e14d3dc (IsA dalmatian_laburnum shrub) (STV 1.0 0.9091)) +(: cnet_isa_58000b768b (IsA dalton_s_law law) (STV 1.0 0.9091)) +(: cnet_isa_b834672d3c (IsA dam female) (STV 1.0 0.9091)) +(: cnet_isa_446241f463 (IsA dam barrier) (STV 1.0 0.9091)) +(: cnet_isa_34753b9777 (IsA dama mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_8bb3b67090 (IsA damage change_of_integrity) (STV 1.0 0.9091)) +(: cnet_isa_bf2e593998 (IsA damage change) (STV 1.0 0.9091)) +(: cnet_isa_16ab193ac1 (IsA damage casualty) (STV 1.0 0.9091)) +(: cnet_isa_c00faf1806 (IsA damage_control control) (STV 1.0 0.9091)) +(: cnet_isa_7d467fd467 (IsA damage compensation) (STV 1.0 0.9091)) +(: cnet_isa_81963b17b6 (IsA damaliscus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_92f6831142 (IsA damaraland_mole_rat fossorial_mammal) (STV 1.0 0.9091)) +(: cnet_isa_54e3a411ba (IsA damascene design) (STV 1.0 0.9091)) +(: cnet_isa_6b5772d690 (IsA damascene syrian) (STV 1.0 0.9091)) +(: cnet_isa_122863a6d1 (IsA damascus_steel steel) (STV 1.0 0.9091)) +(: cnet_isa_01b1865928 (IsA damask fabric) (STV 1.0 0.9091)) +(: cnet_isa_97e77c332a (IsA damask table_linen) (STV 1.0 0.9091)) +(: cnet_isa_334a5cadb8 (IsA damask_rose rose) (STV 1.0 0.9091)) +(: cnet_isa_d065f6589a (IsA damask_violet flower) (STV 1.0 0.9091)) +(: cnet_isa_da226b6b06 (IsA dame girl) (STV 1.0 0.9091)) +(: cnet_isa_917d7a0f8a (IsA dame woman) (STV 1.0 0.9091)) +(: cnet_isa_3b6b80f2e9 (IsA dammar natural_resin) (STV 1.0 0.9091)) +(: cnet_isa_49fee86aef (IsA damn worthlessness) (STV 1.0 0.9091)) +(: cnet_isa_2a29dcd7d4 (IsA damnation denunciation) (STV 1.0 0.9091)) +(: cnet_isa_94df1d8971 (IsA damnation state) (STV 1.0 0.9091)) +(: cnet_isa_84a3992dfc (IsA damned people) (STV 1.0 0.9091)) +(: cnet_isa_05b56b67e0 (IsA damourite muscovite) (STV 1.0 0.9091)) +(: cnet_isa_48e9747f9b (IsA damp wetness) (STV 1.0 0.9091)) +(: cnet_isa_b35f7fd68e (IsA damp_proof_course course) (STV 1.0 0.9091)) +(: cnet_isa_23a1924480 (IsA dampener device) (STV 1.0 0.9091)) +(: cnet_isa_5f7e71b033 (IsA damper restraint) (STV 1.0 0.9091)) +(: cnet_isa_412e531c2f (IsA damper device) (STV 1.0 0.9091)) +(: cnet_isa_655c8003fd (IsA damper plate) (STV 1.0 0.9091)) +(: cnet_isa_233e3d7bb3 (IsA damper_block damper) (STV 1.0 0.9091)) +(: cnet_isa_553e137717 (IsA damping_off plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_64635fcd51 (IsA damping_off_fungus pythium) (STV 1.0 0.9091)) +(: cnet_isa_0067f58f98 (IsA damsel maid) (STV 1.0 0.9091)) +(: cnet_isa_081a5c7971 (IsA damselfish percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_5a3f8be227 (IsA damselfly odonate) (STV 1.0 0.9091)) +(: cnet_isa_211d71e3e5 (IsA damson plum) (STV 1.0 0.9091)) +(: cnet_isa_20dbce36cf (IsA damson_plum bullace) (STV 1.0 0.9091)) +(: cnet_isa_afce196461 (IsA danaea fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_468a73b7ae (IsA danaid butterfly) (STV 1.0 0.9091)) +(: cnet_isa_fdbdf1fb47 (IsA danaidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_3573f438b0 (IsA danaus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_4cd705bd53 (IsA dance art) (STV 1.0 0.9091)) +(: cnet_isa_a2f9f95ea6 (IsA dance party) (STV 1.0 0.9091)) +(: cnet_isa_4e7942c036 (IsA dance_band musical_organization) (STV 1.0 0.9091)) +(: cnet_isa_d84abb2b6b (IsA dance_floor floor) (STV 1.0 0.9091)) +(: cnet_isa_c03f1a74fa (IsA dance_lesson lesson) (STV 1.0 0.9091)) +(: cnet_isa_c5c5cc7e6c (IsA dance_music music) (STV 1.0 0.9091)) +(: cnet_isa_ad2ad54ebe (IsA dance_school school) (STV 1.0 0.9091)) +(: cnet_isa_fb3ac2bf93 (IsA dance_step locomotion) (STV 1.0 0.9091)) +(: cnet_isa_477f423d62 (IsA dancer performer) (STV 1.0 0.9091)) +(: cnet_isa_994e386e6b (IsA dancer person) (STV 1.0 0.9091)) +(: cnet_isa_b79fa746cd (IsA danceroom_music popular_music) (STV 1.0 0.9091)) +(: cnet_isa_ab04c3982b (IsA dancing great_way_to_relieve_tension) (STV 1.0 0.9339)) +(: cnet_isa_a2a2488221 (IsA dancing diversion) (STV 1.0 0.9091)) +(: cnet_isa_34d0734d15 (IsA dancing performing_art) (STV 1.0 0.9091)) +(: cnet_isa_e3c2e3999d (IsA dancing_master dancer) (STV 1.0 0.9091)) +(: cnet_isa_f7c3da1306 (IsA dancing_master teacher) (STV 1.0 0.9091)) +(: cnet_isa_a5b8780cc5 (IsA dancing_partner collaborator) (STV 1.0 0.9091)) +(: cnet_isa_e209f4eb8b (IsA dancing_partner dancer) (STV 1.0 0.9091)) +(: cnet_isa_de8fb9c77f (IsA dancing_school school) (STV 1.0 0.9091)) +(: cnet_isa_e7f5980533 (IsA dandelion flower) (STV 1.0 0.9339)) +(: cnet_isa_b700105a0c (IsA dandelion herb) (STV 1.0 0.9091)) +(: cnet_isa_f07ab63747 (IsA dandelion_green green) (STV 1.0 0.9091)) +(: cnet_isa_371cec1741 (IsA dandelion_green leaf) (STV 1.0 0.9091)) +(: cnet_isa_4cb2c85c9d (IsA dander anger) (STV 1.0 0.9091)) +(: cnet_isa_f807108e69 (IsA dander scale) (STV 1.0 0.9091)) +(: cnet_isa_7fb2a6b1c8 (IsA dandie_dinmont terrier) (STV 1.0 0.9091)) +(: cnet_isa_b7094cb16e (IsA dandruff scale) (STV 1.0 0.9091)) +(: cnet_isa_289f2e904f (IsA dandruff pityriasis) (STV 1.0 0.9091)) +(: cnet_isa_e53adb1048 (IsA dandy man) (STV 1.0 0.9091)) +(: cnet_isa_75d15114af (IsA dane european) (STV 1.0 0.9091)) +(: cnet_isa_f2f7a5bf6e (IsA danger area) (STV 1.0 0.9091)) +(: cnet_isa_fcb9ec4bb0 (IsA danger causal_agent) (STV 1.0 0.9091)) +(: cnet_isa_d879e2bc2a (IsA danger condition) (STV 1.0 0.9091)) +(: cnet_isa_740870c9b1 (IsA danger_line line) (STV 1.0 0.9091)) +(: cnet_isa_8b943847ff (IsA danger_zone zone) (STV 1.0 0.9091)) +(: cnet_isa_a373b1ad86 (IsA dangerousness characteristic) (STV 1.0 0.9091)) +(: cnet_isa_fc16629e5e (IsA dangla east_chadic) (STV 1.0 0.9091)) +(: cnet_isa_47bf9565c3 (IsA dangleberry huckleberry) (STV 1.0 0.9091)) +(: cnet_isa_14de3a5d97 (IsA dangling_modifier modifier) (STV 1.0 0.9091)) +(: cnet_isa_df518f2632 (IsA dangling_participle dangling_modifier) (STV 1.0 0.9091)) +(: cnet_isa_5fd2d3b7cd (IsA daniel judge) (STV 1.0 0.9091)) +(: cnet_isa_d1d2248b9d (IsA danish scandinavian) (STV 1.0 0.9091)) +(: cnet_isa_3be241dff9 (IsA danish sweet_roll) (STV 1.0 0.9091)) +(: cnet_isa_4da2741720 (IsA danish_blue bleu) (STV 1.0 0.9091)) +(: cnet_isa_bc7915f1b9 (IsA danish_krone danish_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_a290e7fc0f (IsA danish_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_b38d66a0b3 (IsA dankness damp) (STV 1.0 0.9091)) +(: cnet_isa_62b2f21231 (IsA danse_macabre ritual_dancing) (STV 1.0 0.9091)) +(: cnet_isa_df8fd3475c (IsA danseur ballet_dancer) (STV 1.0 0.9091)) +(: cnet_isa_eb8029c0e9 (IsA daphne nymph) (STV 1.0 0.9091)) +(: cnet_isa_ca4bbc1858 (IsA daphne shrub) (STV 1.0 0.9091)) +(: cnet_isa_9191b404d7 (IsA daphnia branchiopod_crustacean) (STV 1.0 0.9091)) +(: cnet_isa_61e63ba962 (IsA dapple_gray gray) (STV 1.0 0.9091)) +(: cnet_isa_0801fc1dba (IsA dapsone antibacterial) (STV 1.0 0.9091)) +(: cnet_isa_8cb043ea3f (IsA dar_al_harb geographical_area) (STV 1.0 0.9091)) +(: cnet_isa_4b931a65c5 (IsA dar_al_islam geographical_area) (STV 1.0 0.9091)) +(: cnet_isa_0553d42353 (IsA daraf elastance_unit) (STV 1.0 0.9091)) +(: cnet_isa_1919990c5c (IsA dard indic) (STV 1.0 0.9091)) +(: cnet_isa_4bcd721354 (IsA dardanian asiatic) (STV 1.0 0.9091)) +(: cnet_isa_815e306e12 (IsA dare challenge) (STV 1.0 0.9091)) +(: cnet_isa_27fb4f5773 (IsA daredevil adventurer) (STV 1.0 0.9091)) +(: cnet_isa_ee4133bda2 (IsA daredevilry boldness) (STV 1.0 0.9091)) +(: cnet_isa_6449510d8d (IsA dari iranian) (STV 1.0 0.9091)) +(: cnet_isa_2b96772251 (IsA darjeeling black_tea) (STV 1.0 0.9091)) +(: cnet_isa_c90d374992 (IsA dark unenlightenment) (STV 1.0 0.9091)) +(: cnet_isa_ab4bde3c1c (IsA dark illumination) (STV 1.0 0.9091)) +(: cnet_isa_b8d4ba2f41 (IsA dark_adaptation adaptation) (STV 1.0 0.9091)) +(: cnet_isa_13e99dacdc (IsA dark_blue blue) (STV 1.0 0.9091)) +(: cnet_isa_228db03117 (IsA dark_bread bread) (STV 1.0 0.9091)) +(: cnet_isa_d636b02f82 (IsA dark_comedy comedy) (STV 1.0 0.9091)) +(: cnet_isa_f121de0784 (IsA dark_eyed_junco junco) (STV 1.0 0.9091)) +(: cnet_isa_1784b2b349 (IsA dark_green_spreader_yew plant) (STV 1.0 0.9091)) +(: cnet_isa_88a945b1e4 (IsA dark_ground_illumination microscopy) (STV 1.0 0.9091)) +(: cnet_isa_909c9afce3 (IsA dark_horse racehorse) (STV 1.0 0.9091)) +(: cnet_isa_00c971ef5b (IsA dark_horse campaigner) (STV 1.0 0.9091)) +(: cnet_isa_ce2d733e7e (IsA dark_lantern lantern) (STV 1.0 0.9091)) +(: cnet_isa_213f041931 (IsA dark_matter substance) (STV 1.0 0.9091)) +(: cnet_isa_d4c3c89f17 (IsA dark_meat meat) (STV 1.0 0.9091)) +(: cnet_isa_4df4d1d1e4 (IsA dark_red red) (STV 1.0 0.9091)) +(: cnet_isa_fa7675f8a3 (IsA darkling_beetle weevil) (STV 1.0 0.9091)) +(: cnet_isa_004c390fb9 (IsA darkness complexion) (STV 1.0 0.9091)) +(: cnet_isa_79598d81dd (IsA darkness value) (STV 1.0 0.9091)) +(: cnet_isa_227c7cbe68 (IsA darkness scene) (STV 1.0 0.9091)) +(: cnet_isa_39a9dd581e (IsA darkroom room) (STV 1.0 0.9091)) +(: cnet_isa_672ecae884 (IsA darling lover) (STV 1.0 0.9091)) +(: cnet_isa_c084338eec (IsA darling_pea subshrub) (STV 1.0 0.9091)) +(: cnet_isa_0cbe5408de (IsA darlingtonia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_26fdb02e0d (IsA darmera rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a62d0ad8db (IsA darmstadtium chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_d0f003bc66 (IsA darnel rye_grass) (STV 1.0 0.9091)) +(: cnet_isa_a694570ea0 (IsA darner mender) (STV 1.0 0.9091)) +(: cnet_isa_dd5b01ea6f (IsA darning repair) (STV 1.0 0.9091)) +(: cnet_isa_3e229e0e01 (IsA darning_needle sewing_needle) (STV 1.0 0.9091)) +(: cnet_isa_cddba39a02 (IsA darsana hinduism) (STV 1.0 0.9091)) +(: cnet_isa_6f93d83b55 (IsA dart object) (STV 1.0 0.9339)) +(: cnet_isa_d6fbd4330b (IsA dart projectile) (STV 1.0 0.9091)) +(: cnet_isa_ac238fe6a1 (IsA dart tuck) (STV 1.0 0.9091)) +(: cnet_isa_05c9fba929 (IsA dart_player player) (STV 1.0 0.9091)) +(: cnet_isa_8619f4e286 (IsA dartboard board) (STV 1.0 0.9091)) +(: cnet_isa_546a095bf9 (IsA darter animal) (STV 1.0 0.9091)) +(: cnet_isa_c5cb04210a (IsA dart board_game) (STV 1.0 0.9091)) +(: cnet_isa_19d5fe1242 (IsA darwin_tulip tulip) (STV 1.0 0.9091)) +(: cnet_isa_6528715bc2 (IsA darwinian advocate) (STV 1.0 0.9091)) +(: cnet_isa_25171c9581 (IsA darwinism theory_of_evolution) (STV 1.0 0.9091)) +(: cnet_isa_54f8993bb0 (IsA dash haste) (STV 1.0 0.9091)) +(: cnet_isa_623d9c01b8 (IsA dash run) (STV 1.0 0.9091)) +(: cnet_isa_9511f134bf (IsA dash elegance) (STV 1.0 0.9091)) +(: cnet_isa_de65fe0c55 (IsA dash telegraphic_signal) (STV 1.0 0.9091)) +(: cnet_isa_b4aaf26dcd (IsA dash track_event) (STV 1.0 0.9091)) +(: cnet_isa_342e555e3b (IsA dash_pot damper) (STV 1.0 0.9091)) +(: cnet_isa_819bbc5abe (IsA dashboard control_panel) (STV 1.0 0.9091)) +(: cnet_isa_40cc6c8eef (IsA dashiki shirt) (STV 1.0 0.9091)) +(: cnet_isa_fd8eb9bfb2 (IsA dastard coward) (STV 1.0 0.9091)) +(: cnet_isa_ad5e9f241e (IsA dastardliness cowardice) (STV 1.0 0.9091)) +(: cnet_isa_20446d03dc (IsA dasyatidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_8cd4f4ea80 (IsA dasyatis fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_662f5885b7 (IsA dasymeter densimeter) (STV 1.0 0.9091)) +(: cnet_isa_fbcfd9defd (IsA dasypodidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_01c07a2353 (IsA dasyprocta mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_cae807aaed (IsA dasyproctidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_7905bf665b (IsA dasypus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_f368941030 (IsA dasyure dasyurid_marsupial) (STV 1.0 0.9091)) +(: cnet_isa_fb360e5136 (IsA dasyurid_marsupial marsupial) (STV 1.0 0.9091)) +(: cnet_isa_de51edfd1e (IsA dasyuridae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_79fa5f275b (IsA dasyurus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_aea02b8356 (IsA data information) (STV 1.0 0.9454)) +(: cnet_isa_7a1ccbc5a1 (IsA data collection) (STV 1.0 0.9091)) +(: cnet_isa_243ade0b45 (IsA data_conversion conversion) (STV 1.0 0.9091)) +(: cnet_isa_25c2e1013e (IsA data_converter converter) (STV 1.0 0.9091)) +(: cnet_isa_423a109e70 (IsA data_encryption encoding) (STV 1.0 0.9091)) +(: cnet_isa_bad77b52ad (IsA data_hierarchy hierarchy) (STV 1.0 0.9091)) +(: cnet_isa_bcfec46b92 (IsA data_input_accuracy problem_for_computer_system) (STV 1.0 0.9091)) +(: cnet_isa_da185ff82b (IsA data_input_device peripheral) (STV 1.0 0.9091)) +(: cnet_isa_3464b79372 (IsA data_mining data_processing) (STV 1.0 0.9091)) +(: cnet_isa_fa988105ad (IsA data_multiplexer multiplexer) (STV 1.0 0.9091)) +(: cnet_isa_32b3a79e98 (IsA data_processing processing) (STV 1.0 0.9091)) +(: cnet_isa_79129919ef (IsA data_rate rate) (STV 1.0 0.9091)) +(: cnet_isa_a0d0e085de (IsA data_structure arrangement) (STV 1.0 0.9091)) +(: cnet_isa_ddbdf132de (IsA data_system system) (STV 1.0 0.9091)) +(: cnet_isa_5f6f160c76 (IsA database example_of_computer_software) (STV 1.0 0.9091)) +(: cnet_isa_584556d21f (IsA database information) (STV 1.0 0.9091)) +(: cnet_isa_a59e47c106 (IsA database_management management) (STV 1.0 0.9091)) +(: cnet_isa_8f27778817 (IsA database_management_system software) (STV 1.0 0.9091)) +(: cnet_isa_9f946b98ac (IsA date edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_ecfe8bb1ab (IsA date meeting) (STV 1.0 0.9091)) +(: cnet_isa_dbba9aab57 (IsA date companion) (STV 1.0 0.9091)) +(: cnet_isa_039b781434 (IsA date calendar_day) (STV 1.0 0.9091)) +(: cnet_isa_8aafc7dd79 (IsA date calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_f6f7c08eb7 (IsA date calendar_year) (STV 1.0 0.9091)) +(: cnet_isa_a54bc8220d (IsA date day) (STV 1.0 0.9091)) +(: cnet_isa_7196b37aab (IsA date present) (STV 1.0 0.9091)) +(: cnet_isa_d1fcccdd58 (IsA date_bar fruit_bar) (STV 1.0 0.9091)) +(: cnet_isa_0ffb1fb107 (IsA date_bread quick_bread) (STV 1.0 0.9091)) +(: cnet_isa_c0cb2a044a (IsA date_nut_bread quick_bread) (STV 1.0 0.9091)) +(: cnet_isa_2b04b0b456 (IsA date_palm feather_palm) (STV 1.0 0.9091)) +(: cnet_isa_348f906b98 (IsA date_plum persimmon) (STV 1.0 0.9091)) +(: cnet_isa_031f5d0e04 (IsA date_rape rape) (STV 1.0 0.9091)) +(: cnet_isa_eeec89c27a (IsA dateline line) (STV 1.0 0.9091)) +(: cnet_isa_91deebc1dc (IsA dating chemical_analysis) (STV 1.0 0.9091)) +(: cnet_isa_f16e17080f (IsA dative oblique) (STV 1.0 0.9091)) +(: cnet_isa_0870115503 (IsA datum information) (STV 1.0 0.9091)) +(: cnet_isa_9fef897697 (IsA datura asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_07dc633950 (IsA daub painting) (STV 1.0 0.9091)) +(: cnet_isa_f86480d832 (IsA daub clay) (STV 1.0 0.9091)) +(: cnet_isa_266a6d7fa6 (IsA daubentonia mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_af9ed733f8 (IsA daubentoniidae lemuroidea) (STV 1.0 0.9091)) +(: cnet_isa_f1c27bf1fd (IsA daubentoniidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_307b7f3bd7 (IsA dauber painter) (STV 1.0 0.9091)) +(: cnet_isa_7c5202402d (IsA daucus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d59d29c291 (IsA daughter female_offspring) (STV 1.0 0.9091)) +(: cnet_isa_675a00fb1c (IsA daughter_cell cell) (STV 1.0 0.9091)) +(: cnet_isa_b247b77208 (IsA daughter_in_law in_law) (STV 1.0 0.9091)) +(: cnet_isa_47e0280dd2 (IsA dauntlessness courage) (STV 1.0 0.9091)) +(: cnet_isa_f5f759dfda (IsA dauphin prince) (STV 1.0 0.9091)) +(: cnet_isa_61b521a87c (IsA davallia fern) (STV 1.0 0.9091)) +(: cnet_isa_068b316bc2 (IsA davalliaceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_a7d93b3918 (IsA davenport convertible) (STV 1.0 0.9091)) +(: cnet_isa_328934fcc9 (IsA davenport desk) (STV 1.0 0.9091)) +(: cnet_isa_a006fe2b87 (IsA david_spade not_god) (STV 1.0 0.9091)) +(: cnet_isa_6a01a44fcb (IsA davidson_s_penstemon wildflower) (STV 1.0 0.9091)) +(: cnet_isa_5ef6206987 (IsA daviesia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6644904455 (IsA davis_cup cup) (STV 1.0 0.9091)) +(: cnet_isa_d82005edbe (IsA davit crane) (STV 1.0 0.9091)) +(: cnet_isa_5786c0247f (IsA dawdler idler) (STV 1.0 0.9091)) +(: cnet_isa_b0ca16399d (IsA dawn start) (STV 1.0 0.9091)) +(: cnet_isa_7fcade598f (IsA dawn hour) (STV 1.0 0.9091)) +(: cnet_isa_3e8e01a3af (IsA dawn time_period) (STV 1.0 0.9091)) +(: cnet_isa_c63479b73c (IsA day 24_hour_long) (STV 1.0 0.9454)) +(: cnet_isa_523fb8eb10 (IsA day opportunity) (STV 1.0 0.9091)) +(: cnet_isa_302fcf70bc (IsA day calendar_day) (STV 1.0 0.9091)) +(: cnet_isa_7fa05161b8 (IsA day era) (STV 1.0 0.9091)) +(: cnet_isa_4f1eee7d76 (IsA day time) (STV 1.0 0.9091)) +(: cnet_isa_b02d25fbe2 (IsA day time_period) (STV 1.0 0.9091)) +(: cnet_isa_cabb7990f3 (IsA day time_unit) (STV 1.0 0.9091)) +(: cnet_isa_5daf856ad4 (IsA day work_time) (STV 1.0 0.9091)) +(: cnet_isa_f92fdd9a41 (IsA day_boarder schoolchild) (STV 1.0 0.9091)) +(: cnet_isa_b2529314b9 (IsA day_camp camp) (STV 1.0 0.9091)) +(: cnet_isa_a661b4f234 (IsA day_game outdoor_game) (STV 1.0 0.9091)) +(: cnet_isa_56de01bbab (IsA day_jessamine shrub) (STV 1.0 0.9091)) +(: cnet_isa_cb8de22662 (IsA day_laborer laborer) (STV 1.0 0.9091)) +(: cnet_isa_037dbfe485 (IsA day_lily liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_1406dbb9dd (IsA day_nursery nursery) (STV 1.0 0.9091)) +(: cnet_isa_b8af7d182c (IsA day_of_week calendar_day) (STV 1.0 0.9091)) +(: cnet_isa_5ad8e77724 (IsA day_off time_off) (STV 1.0 0.9091)) +(: cnet_isa_d72882f347 (IsA day_return round_trip_ticket) (STV 1.0 0.9091)) +(: cnet_isa_f0513a6c24 (IsA day_school school) (STV 1.0 0.9091)) +(: cnet_isa_dd71af6b3f (IsA day_school private_school) (STV 1.0 0.9091)) +(: cnet_isa_78f69b98db (IsA day_shift shift) (STV 1.0 0.9091)) +(: cnet_isa_6292a0d68c (IsA daybed sofa) (STV 1.0 0.9091)) +(: cnet_isa_895286d65a (IsA daybook journal) (STV 1.0 0.9091)) +(: cnet_isa_1477806d53 (IsA daybook ledger) (STV 1.0 0.9091)) +(: cnet_isa_472c44fe87 (IsA dayboy day_boarder) (STV 1.0 0.9091)) +(: cnet_isa_c44792e3cf (IsA daycare childcare) (STV 1.0 0.9091)) +(: cnet_isa_0d4a869cc1 (IsA daydreamer idler) (STV 1.0 0.9091)) +(: cnet_isa_e98894539a (IsA daygirl day_boarder) (STV 1.0 0.9091)) +(: cnet_isa_cfbf6eddb9 (IsA daylight light) (STV 1.0 0.9091)) +(: cnet_isa_9c4a6ff17a (IsA daylight_saving_time time) (STV 1.0 0.9091)) +(: cnet_isa_143f245141 (IsA daylight_vision sight) (STV 1.0 0.9091)) +(: cnet_isa_8a8fb0d7ee (IsA day life) (STV 1.0 0.9091)) +(: cnet_isa_ca8cb1ac02 (IsA daze confusion) (STV 1.0 0.9091)) +(: cnet_isa_c6321db489 (IsA daze stupefaction) (STV 1.0 0.9091)) +(: cnet_isa_a10406b14e (IsA dazzle brightness) (STV 1.0 0.9091)) +(: cnet_isa_b0f32ff8b5 (IsA dci administrator) (STV 1.0 0.9091)) +(: cnet_isa_bd7bb5d6ed (IsA de_escalation decrease) (STV 1.0 0.9091)) +(: cnet_isa_cd011eff20 (IsA de_facto_segregation segregation) (STV 1.0 0.9091)) +(: cnet_isa_0f22a9f424 (IsA de_iodinase enzyme) (STV 1.0 0.9091)) +(: cnet_isa_be1807f093 (IsA de_iodination chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_d2b44f4791 (IsA de_jure_segregation segregation) (STV 1.0 0.9091)) +(: cnet_isa_f76efc2dea (IsA deacon church_officer) (STV 1.0 0.9091)) +(: cnet_isa_6f44d9ddad (IsA deacon clergyman) (STV 1.0 0.9091)) +(: cnet_isa_42e5083fb3 (IsA deacon holy_order) (STV 1.0 0.9091)) +(: cnet_isa_d2f54985b5 (IsA deaconess deacon) (STV 1.0 0.9091)) +(: cnet_isa_21b9b12f6a (IsA deactivation termination) (STV 1.0 0.9091)) +(: cnet_isa_0b4e0f6476 (IsA deactivation dismissal) (STV 1.0 0.9091)) +(: cnet_isa_9b17f33db2 (IsA dead people) (STV 1.0 0.9091)) +(: cnet_isa_0925ef90e9 (IsA dead time) (STV 1.0 0.9091)) +(: cnet_isa_6b3ef30132 (IsA dead_air pause) (STV 1.0 0.9091)) +(: cnet_isa_f061cba9a0 (IsA dead_air_space area) (STV 1.0 0.9091)) +(: cnet_isa_dbc56e41c0 (IsA dead_axle axle) (STV 1.0 0.9091)) +(: cnet_isa_b83ccbeec3 (IsA dead_center position) (STV 1.0 0.9091)) +(: cnet_isa_8bf3148aec (IsA dead_drop drop) (STV 1.0 0.9091)) +(: cnet_isa_6781d1d754 (IsA dead_duck failure) (STV 1.0 0.9091)) +(: cnet_isa_5250257f10 (IsA dead_hand influence) (STV 1.0 0.9091)) +(: cnet_isa_a4de829150 (IsA dead_heat draw) (STV 1.0 0.9091)) +(: cnet_isa_b86c6adf88 (IsA dead_language language) (STV 1.0 0.9091)) +(: cnet_isa_9d9d8c801c (IsA dead_letter letter) (STV 1.0 0.9091)) +(: cnet_isa_1725eaaf26 (IsA dead_letter state) (STV 1.0 0.9091)) +(: cnet_isa_cbce881951 (IsA dead_load load) (STV 1.0 0.9091)) +(: cnet_isa_51515040a4 (IsA dead_man_s_finger fungus) (STV 1.0 0.9091)) +(: cnet_isa_6fd476b40c (IsA dead_man_s_float floating) (STV 1.0 0.9091)) +(: cnet_isa_2e6cd585e8 (IsA dead_metaphor metaphor) (STV 1.0 0.9091)) +(: cnet_isa_9b2bfb4cdc (IsA dead_nettle herb) (STV 1.0 0.9091)) +(: cnet_isa_58ec588dac (IsA dead_person person) (STV 1.0 0.9091)) +(: cnet_isa_0db7c22b62 (IsA dead_reckoning navigation) (STV 1.0 0.9091)) +(: cnet_isa_7126a493d5 (IsA dead_sea in_israel) (STV 1.0 0.9091)) +(: cnet_isa_e369c77bb2 (IsA dead_weight weight) (STV 1.0 0.9091)) +(: cnet_isa_f3f264f88d (IsA dead_weight burden) (STV 1.0 0.9091)) +(: cnet_isa_1a51b1f695 (IsA deadbeat_dad defaulter) (STV 1.0 0.9091)) +(: cnet_isa_caed263da2 (IsA deadeye marksman) (STV 1.0 0.9091)) +(: cnet_isa_0bacbdfd42 (IsA deadeye disk) (STV 1.0 0.9091)) +(: cnet_isa_6f7374d08a (IsA deadhead public_transport) (STV 1.0 0.9091)) +(: cnet_isa_457ec5f032 (IsA deadhead nonworker) (STV 1.0 0.9091)) +(: cnet_isa_db3eb5214a (IsA deadlight shutter) (STV 1.0 0.9091)) +(: cnet_isa_fda9ecaf26 (IsA deadline point) (STV 1.0 0.9091)) +(: cnet_isa_0bf2d59a36 (IsA deadliness unwholesomeness) (STV 1.0 0.9091)) +(: cnet_isa_79c7852d38 (IsA deadlock situation) (STV 1.0 0.9091)) +(: cnet_isa_605e896c29 (IsA deadness inanimateness) (STV 1.0 0.9091)) +(: cnet_isa_6230672ae5 (IsA deadness inelasticity) (STV 1.0 0.9091)) +(: cnet_isa_2c6e93a1e1 (IsA deadwood branch) (STV 1.0 0.9091)) +(: cnet_isa_e4d8a28bbe (IsA deaf people) (STV 1.0 0.9091)) +(: cnet_isa_8185d2ba36 (IsA deaf_mutism deafness) (STV 1.0 0.9091)) +(: cnet_isa_698a0e54e7 (IsA deaf_mutism mutism) (STV 1.0 0.9091)) +(: cnet_isa_153695c1bf (IsA deaf_people people) (STV 1.0 0.9091)) +(: cnet_isa_e3223adc6f (IsA deaf_person person) (STV 1.0 0.9091)) +(: cnet_isa_89c5b9f305 (IsA deafness hearing_impairment) (STV 1.0 0.9091)) +(: cnet_isa_53c4185834 (IsA deal allotment) (STV 1.0 0.9091)) +(: cnet_isa_8b544e6a06 (IsA deal transaction) (STV 1.0 0.9091)) +(: cnet_isa_79cfaf31fe (IsA deal distribution) (STV 1.0 0.9091)) +(: cnet_isa_1b26ba475a (IsA deal result) (STV 1.0 0.9091)) +(: cnet_isa_ec958a084e (IsA deal board) (STV 1.0 0.9091)) +(: cnet_isa_0b4076b90e (IsA dealer firm) (STV 1.0 0.9091)) +(: cnet_isa_bfe011f9de (IsA dealer card_player) (STV 1.0 0.9091)) +(: cnet_isa_2a4ecd5ac2 (IsA dealer seller) (STV 1.0 0.9091)) +(: cnet_isa_d3b88f0987 (IsA dealfish ribbonfish) (STV 1.0 0.9091)) +(: cnet_isa_7f6d8f97af (IsA dealignment process) (STV 1.0 0.9091)) +(: cnet_isa_8c83737834 (IsA dealing treatment) (STV 1.0 0.9091)) +(: cnet_isa_422c924eb3 (IsA dealing interchange) (STV 1.0 0.9091)) +(: cnet_isa_67cf53c7d0 (IsA deamination chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_b90592700d (IsA dean academic_administrator) (STV 1.0 0.9091)) +(: cnet_isa_90707641f8 (IsA dean elder) (STV 1.0 0.9091)) +(: cnet_isa_59740189f7 (IsA dean cardinal) (STV 1.0 0.9091)) +(: cnet_isa_e97d1d8735 (IsA deanery residence) (STV 1.0 0.9091)) +(: cnet_isa_24671e66cb (IsA deanship position) (STV 1.0 0.9091)) +(: cnet_isa_c4c1ba90e1 (IsA dear innocent) (STV 1.0 0.9091)) +(: cnet_isa_0094e01ff2 (IsA dearth scarcity) (STV 1.0 0.9091)) +(: cnet_isa_3bf467948c (IsA dearth lack) (STV 1.0 0.9091)) +(: cnet_isa_85b87fc157 (IsA death_s_head symbol) (STV 1.0 0.9091)) +(: cnet_isa_0072b6cde6 (IsA death_s_head_moth hawkmoth) (STV 1.0 0.9091)) +(: cnet_isa_8fcb504f0b (IsA death killing) (STV 1.0 0.9091)) +(: cnet_isa_3e75e4571a (IsA death change) (STV 1.0 0.9091)) +(: cnet_isa_7f3e148058 (IsA death organic_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_7aad76ac81 (IsA death state) (STV 1.0 0.9091)) +(: cnet_isa_729162658b (IsA death end) (STV 1.0 0.9091)) +(: cnet_isa_5aaa7dd55a (IsA death_adder elapid) (STV 1.0 0.9091)) +(: cnet_isa_aec63a5a01 (IsA death_benefit benefit) (STV 1.0 0.9091)) +(: cnet_isa_8d0acb1946 (IsA death_cama liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_e50c82b8eb (IsA death_camp concentration_camp) (STV 1.0 0.9091)) +(: cnet_isa_2c65672518 (IsA death_cap agaric) (STV 1.0 0.9091)) +(: cnet_isa_6ad5c07ce4 (IsA death_house cellblock) (STV 1.0 0.9091)) +(: cnet_isa_54962474d3 (IsA death_instinct urge) (STV 1.0 0.9091)) +(: cnet_isa_d4e50dae77 (IsA death_knell bell) (STV 1.0 0.9091)) +(: cnet_isa_af137b885e (IsA death_knell omen) (STV 1.0 0.9091)) +(: cnet_isa_cb724d395b (IsA death_mask cast) (STV 1.0 0.9091)) +(: cnet_isa_2c3a09a71a (IsA death_penalty issue) (STV 1.0 0.9091)) +(: cnet_isa_1ff745c3b9 (IsA death_roll roll) (STV 1.0 0.9091)) +(: cnet_isa_f83b7d4244 (IsA death_seat car_seat) (STV 1.0 0.9091)) +(: cnet_isa_0d4c4d409b (IsA death_squad hit_squad) (STV 1.0 0.9091)) +(: cnet_isa_f5c6c2a52a (IsA death_toll price) (STV 1.0 0.9091)) +(: cnet_isa_f114a15965 (IsA death_warrant warrant) (STV 1.0 0.9091)) +(: cnet_isa_c7305549f1 (IsA deathbed bed) (STV 1.0 0.9091)) +(: cnet_isa_17647ec14d (IsA deathbed time_of_life) (STV 1.0 0.9091)) +(: cnet_isa_1d4dc4c5f3 (IsA deathblow killing) (STV 1.0 0.9091)) +(: cnet_isa_b8f6d44175 (IsA deathrate rate) (STV 1.0 0.9091)) +(: cnet_isa_6afdbddd50 (IsA deathtrap structure) (STV 1.0 0.9091)) +(: cnet_isa_e9d96ce930 (IsA deathwatch_beetle beetle) (STV 1.0 0.9091)) +(: cnet_isa_ba1fba3f36 (IsA debacle collapse) (STV 1.0 0.9091)) +(: cnet_isa_5e939d5887 (IsA debacle flood) (STV 1.0 0.9091)) +(: cnet_isa_a75974ee31 (IsA debarkation landing) (STV 1.0 0.9091)) +(: cnet_isa_f323533d5d (IsA debarment prevention) (STV 1.0 0.9091)) +(: cnet_isa_929b143336 (IsA debarment exclusion) (STV 1.0 0.9091)) +(: cnet_isa_2e5005998c (IsA debaser person) (STV 1.0 0.9091)) +(: cnet_isa_8306152d09 (IsA debate public_speaking) (STV 1.0 0.9091)) +(: cnet_isa_484decf6ca (IsA debater disputant) (STV 1.0 0.9091)) +(: cnet_isa_9f421f4662 (IsA debenture legal_document) (STV 1.0 0.9091)) +(: cnet_isa_853975a8f8 (IsA debian operating_system) (STV 1.0 0.9091)) +(: cnet_isa_607c60e887 (IsA debilitation weakening) (STV 1.0 0.9091)) +(: cnet_isa_048f3153eb (IsA debit entry) (STV 1.0 0.9091)) +(: cnet_isa_ce8ae40049 (IsA debit_card open_end_credit) (STV 1.0 0.9091)) +(: cnet_isa_3a997044d4 (IsA debit_card positive_identification) (STV 1.0 0.9091)) +(: cnet_isa_150927944b (IsA debit_side accounting) (STV 1.0 0.9091)) +(: cnet_isa_2c0e5619c2 (IsA debridement operation) (STV 1.0 0.9091)) +(: cnet_isa_98b09b680f (IsA debriefing interrogation) (STV 1.0 0.9091)) +(: cnet_isa_32bdeca1e4 (IsA debriefing report) (STV 1.0 0.9091)) +(: cnet_isa_ed3fdb7d80 (IsA debris rubbish) (STV 1.0 0.9091)) +(: cnet_isa_53c671de42 (IsA debris_surge rush) (STV 1.0 0.9091)) +(: cnet_isa_93209fdced (IsA debt obligation) (STV 1.0 0.9091)) +(: cnet_isa_7a8fd37354 (IsA debt liability) (STV 1.0 0.9091)) +(: cnet_isa_4fbf6bbe2b (IsA debt indebtedness) (STV 1.0 0.9091)) +(: cnet_isa_fdc9b3649b (IsA debt_instrument document) (STV 1.0 0.9091)) +(: cnet_isa_ebeee5e3b7 (IsA debt_limit debt) (STV 1.0 0.9091)) +(: cnet_isa_f2886c239f (IsA debtor person) (STV 1.0 0.9091)) +(: cnet_isa_235eb7ca0e (IsA debugger program) (STV 1.0 0.9091)) +(: cnet_isa_8ff601ed5c (IsA debut presentation) (STV 1.0 0.9091)) +(: cnet_isa_39214e59f7 (IsA debutante woman) (STV 1.0 0.9091)) +(: cnet_isa_b362543a41 (IsA decade time_period) (STV 1.0 0.9091)) +(: cnet_isa_892deef6a6 (IsA decadent bad_person) (STV 1.0 0.9091)) +(: cnet_isa_acb5b75b48 (IsA decaffeinated_coffee coffee) (STV 1.0 0.9091)) +(: cnet_isa_963c462ef7 (IsA decagon closed_shape_with_10_side) (STV 1.0 0.9091)) +(: cnet_isa_67509dfd2b (IsA decagon polygon) (STV 1.0 0.9091)) +(: cnet_isa_5690a3a0e6 (IsA decahedron polyhedron) (STV 1.0 0.9091)) +(: cnet_isa_29659d3f8e (IsA decal art) (STV 1.0 0.9091)) +(: cnet_isa_6c12c43aa8 (IsA decal design) (STV 1.0 0.9091)) +(: cnet_isa_7fea9f37ae (IsA decal transfer_paper) (STV 1.0 0.9091)) +(: cnet_isa_99d5ac25d9 (IsA decalcification chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_1a30cff492 (IsA decalescence physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_1e4613b9cd (IsA decameter metric_linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_3060cab2f1 (IsA decampment withdrawal) (STV 1.0 0.9091)) +(: cnet_isa_5213394a77 (IsA decantation transfusion) (STV 1.0 0.9091)) +(: cnet_isa_5cb96daa0d (IsA decanter container) (STV 1.0 0.9091)) +(: cnet_isa_49f6106e71 (IsA decapitation execution) (STV 1.0 0.9091)) +(: cnet_isa_041d169693 (IsA decapitation killing) (STV 1.0 0.9091)) +(: cnet_isa_0f86acd7a1 (IsA decapod cephalopod) (STV 1.0 0.9091)) +(: cnet_isa_5be1cf1b5e (IsA decapod_crustacean crustacean) (STV 1.0 0.9091)) +(: cnet_isa_7ad1cf0537 (IsA decapoda animal_order) (STV 1.0 0.9091)) +(: cnet_isa_818606a5c4 (IsA decapterus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_8ef910b066 (IsA decarboxylase enzyme) (STV 1.0 0.9091)) +(: cnet_isa_cd522a8992 (IsA decarboxylation chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_7d6629fff4 (IsA decasyllable verse) (STV 1.0 0.9091)) +(: cnet_isa_df81bff7a6 (IsA decathlon athletic_contest) (STV 1.0 0.9091)) +(: cnet_isa_8d254b958a (IsA decay organic_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_f509d3aa6e (IsA decay decrease) (STV 1.0 0.9091)) +(: cnet_isa_affc33bac5 (IsA decay natural_process) (STV 1.0 0.9091)) +(: cnet_isa_b464c33146 (IsA decay nuclear_reaction) (STV 1.0 0.9091)) +(: cnet_isa_343ffe2cbd (IsA decay unsoundness) (STV 1.0 0.9091)) +(: cnet_isa_1cb79a0b42 (IsA deceiver wrongdoer) (STV 1.0 0.9091)) +(: cnet_isa_ffdc8fbbd2 (IsA deceleration speed) (STV 1.0 0.9091)) +(: cnet_isa_903dbeb7f9 (IsA deceleration change) (STV 1.0 0.9091)) +(: cnet_isa_ae1876661e (IsA deceleration rate) (STV 1.0 0.9091)) +(: cnet_isa_13d0fdd523 (IsA december month) (STV 1.0 0.9339)) +(: cnet_isa_3c018860cb (IsA december gregorian_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_c375c6b9cd (IsA decency propriety) (STV 1.0 0.9091)) +(: cnet_isa_1bc4038682 (IsA decency respectability) (STV 1.0 0.9091)) +(: cnet_isa_aa6b1fb826 (IsA decentralization spread) (STV 1.0 0.9091)) +(: cnet_isa_890ef0094e (IsA decentralization social_process) (STV 1.0 0.9091)) +(: cnet_isa_bd393693b8 (IsA deception falsification) (STV 1.0 0.9091)) +(: cnet_isa_27da666666 (IsA deceptiveness dishonesty) (STV 1.0 0.9091)) +(: cnet_isa_cccb872441 (IsA decibel sound_unit) (STV 1.0 0.9091)) +(: cnet_isa_f04d09d44b (IsA decidua epithelium) (STV 1.0 0.9091)) +(: cnet_isa_52576d88b9 (IsA deciduous_holly holly) (STV 1.0 0.9091)) +(: cnet_isa_bdc8d916fd (IsA deciduous_plant vascular_plant) (STV 1.0 0.9091)) +(: cnet_isa_ea490d1319 (IsA decigram metric_weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_9c6e150ff3 (IsA decile mark) (STV 1.0 0.9091)) +(: cnet_isa_1746279c2e (IsA deciliter metric_capacity_unit) (STV 1.0 0.9091)) +(: cnet_isa_b9bcb45559 (IsA decimal number) (STV 1.0 0.9091)) +(: cnet_isa_40692fb1fb (IsA decimal_digit digit) (STV 1.0 0.9091)) +(: cnet_isa_430835a0da (IsA decimal_fraction proper_fraction) (STV 1.0 0.9091)) +(: cnet_isa_c49805f65f (IsA decimal_notation mathematical_notation) (STV 1.0 0.9091)) +(: cnet_isa_82a59749d8 (IsA decimal_numeration_system positional_notation) (STV 1.0 0.9091)) +(: cnet_isa_e77f8e178e (IsA decimal_point mathematical_notation) (STV 1.0 0.9091)) +(: cnet_isa_0a0c8d71ca (IsA decimalization change) (STV 1.0 0.9091)) +(: cnet_isa_0cc8af47c8 (IsA decimation destruction) (STV 1.0 0.9091)) +(: cnet_isa_587038ce28 (IsA decimeter metric_linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_368214e3a3 (IsA decipherer reader) (STV 1.0 0.9091)) +(: cnet_isa_43e918da4e (IsA decision choice) (STV 1.0 0.9091)) +(: cnet_isa_80a01bd73e (IsA decision result) (STV 1.0 0.9091)) +(: cnet_isa_3249de470d (IsA decision judgment) (STV 1.0 0.9091)) +(: cnet_isa_b1dfc4e69c (IsA decision_making higher_cognitive_process) (STV 1.0 0.9091)) +(: cnet_isa_a247c8c507 (IsA decision_table multidimensional_language) (STV 1.0 0.9091)) +(: cnet_isa_cf45de601f (IsA decisiveness resoluteness) (STV 1.0 0.9091)) +(: cnet_isa_0a2fcf6d6f (IsA deck packet) (STV 1.0 0.9091)) +(: cnet_isa_1df27d6759 (IsA deck platform) (STV 1.0 0.9091)) +(: cnet_isa_7cf7b58f4f (IsA deck porch) (STV 1.0 0.9091)) +(: cnet_isa_b04fc87fe5 (IsA deck_chair folding_chair) (STV 1.0 0.9091)) +(: cnet_isa_3f5a35da0f (IsA deck_house superstructure) (STV 1.0 0.9091)) +(: cnet_isa_d66a78363c (IsA deck_tennis court_game) (STV 1.0 0.9091)) +(: cnet_isa_dcfb7db764 (IsA decker artifact) (STV 1.0 0.9091)) +(: cnet_isa_05521c40c3 (IsA deckhand mariner) (STV 1.0 0.9091)) +(: cnet_isa_fc3eb02ec3 (IsA deckle framework) (STV 1.0 0.9091)) +(: cnet_isa_b206f58668 (IsA deckle_edge edge) (STV 1.0 0.9091)) +(: cnet_isa_ac4db9b49e (IsA declamation oratory) (STV 1.0 0.9091)) +(: cnet_isa_33ae6db6e9 (IsA declamation recitation) (STV 1.0 0.9091)) +(: cnet_isa_5ef7521fef (IsA declaration statement) (STV 1.0 0.9091)) +(: cnet_isa_80f651560c (IsA declaration testimony) (STV 1.0 0.9091)) +(: cnet_isa_8170a44bd2 (IsA declaration_of_estimated_tax tax_return) (STV 1.0 0.9091)) +(: cnet_isa_990f18a661 (IsA declarative_sentence sentence) (STV 1.0 0.9091)) +(: cnet_isa_1e9de03e26 (IsA declassification decrease) (STV 1.0 0.9091)) +(: cnet_isa_9fda19b421 (IsA declension class) (STV 1.0 0.9091)) +(: cnet_isa_1d0560b1c7 (IsA declension inflection) (STV 1.0 0.9091)) +(: cnet_isa_9614b998d5 (IsA declination angular_distance) (STV 1.0 0.9091)) +(: cnet_isa_9f61069cb0 (IsA declination acknowledgment) (STV 1.0 0.9091)) +(: cnet_isa_75dd5afb87 (IsA declination refusal) (STV 1.0 0.9091)) +(: cnet_isa_063556bf7d (IsA decline decrease) (STV 1.0 0.9091)) +(: cnet_isa_8e721bae1b (IsA decline condition) (STV 1.0 0.9091)) +(: cnet_isa_6d3a147fba (IsA declinometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_87f34652aa (IsA decoction extraction) (STV 1.0 0.9091)) +(: cnet_isa_ce95a1d56b (IsA decoction_process boiling) (STV 1.0 0.9091)) +(: cnet_isa_0cb9a41527 (IsA decoder machine) (STV 1.0 0.9091)) +(: cnet_isa_4c1d44940a (IsA decoder intellectual) (STV 1.0 0.9091)) +(: cnet_isa_7aeb179365 (IsA decoding cryptography) (STV 1.0 0.9091)) +(: cnet_isa_28105fa09e (IsA decolletage neckline) (STV 1.0 0.9091)) +(: cnet_isa_5a3c96e921 (IsA decolonization group_action) (STV 1.0 0.9091)) +(: cnet_isa_edea33861c (IsA decomposition decay) (STV 1.0 0.9091)) +(: cnet_isa_16dac290df (IsA decomposition chemical_reaction) (STV 1.0 0.9091)) +(: cnet_isa_7fd213d4ad (IsA decomposition vector_algebra) (STV 1.0 0.9091)) +(: cnet_isa_66464fdd9c (IsA decompound_leaf compound_leaf) (STV 1.0 0.9091)) +(: cnet_isa_c2041a28cd (IsA decompression decoding) (STV 1.0 0.9091)) +(: cnet_isa_9478d15f46 (IsA decompression easing) (STV 1.0 0.9091)) +(: cnet_isa_022991e359 (IsA decompression_sickness illness) (STV 1.0 0.9091)) +(: cnet_isa_b4ad2d1602 (IsA decongestant medicine) (STV 1.0 0.9091)) +(: cnet_isa_b6d89273f6 (IsA deconstruction philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_4639c0f2d7 (IsA deconstructivism school) (STV 1.0 0.9091)) +(: cnet_isa_5f8496a948 (IsA decontamination removal) (STV 1.0 0.9091)) +(: cnet_isa_a7410435dd (IsA decoration change_of_state) (STV 1.0 0.9091)) +(: cnet_isa_f444663a2d (IsA decoration artifact) (STV 1.0 0.9091)) +(: cnet_isa_2ca0153fcf (IsA decoration award) (STV 1.0 0.9091)) +(: cnet_isa_71f0956ee3 (IsA decorativeness appearance) (STV 1.0 0.9091)) +(: cnet_isa_df3c3910e3 (IsA decorator artist) (STV 1.0 0.9091)) +(: cnet_isa_d145120bdd (IsA decortication operation) (STV 1.0 0.9091)) +(: cnet_isa_23d820799f (IsA decorum propriety) (STV 1.0 0.9091)) +(: cnet_isa_d40086e4fa (IsA decoupage art) (STV 1.0 0.9091)) +(: cnet_isa_906371eabe (IsA decoy fake_duck) (STV 1.0 0.9091)) +(: cnet_isa_c1414c037b (IsA decoy object) (STV 1.0 0.9091)) +(: cnet_isa_507f59e34b (IsA decoy accomplice) (STV 1.0 0.9091)) +(: cnet_isa_e41dd15605 (IsA decoy deceiver) (STV 1.0 0.9091)) +(: cnet_isa_bbe2198729 (IsA decrease change_of_magnitude) (STV 1.0 0.9091)) +(: cnet_isa_33c6566a6b (IsA decrease amount) (STV 1.0 0.9091)) +(: cnet_isa_4a02d49f58 (IsA decrease change) (STV 1.0 0.9091)) +(: cnet_isa_ed2d919f5a (IsA decrease process) (STV 1.0 0.9091)) +(: cnet_isa_cd2fe9bae1 (IsA decree act) (STV 1.0 0.9091)) +(: cnet_isa_9715618e34 (IsA decree_nisi decree) (STV 1.0 0.9091)) +(: cnet_isa_4c9b6898f0 (IsA decrepitation crackle) (STV 1.0 0.9091)) +(: cnet_isa_d97c611d0c (IsA decrepitude deterioration) (STV 1.0 0.9091)) +(: cnet_isa_7d71f513fd (IsA decrescendo softness) (STV 1.0 0.9091)) +(: cnet_isa_6765b191ee (IsA decriminalization legislation) (STV 1.0 0.9091)) +(: cnet_isa_17ddfdece2 (IsA decubitus position) (STV 1.0 0.9091)) +(: cnet_isa_418e159290 (IsA decumaria rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4ee091db57 (IsA decumary hydrangea) (STV 1.0 0.9091)) +(: cnet_isa_901c48450e (IsA dedicated_file_server file_server) (STV 1.0 0.9091)) +(: cnet_isa_8ab60bde8d (IsA dedication fidelity) (STV 1.0 0.9091)) +(: cnet_isa_7eb5daf4de (IsA dedication ceremony) (STV 1.0 0.9091)) +(: cnet_isa_1f9adca858 (IsA dedication message) (STV 1.0 0.9091)) +(: cnet_isa_59b875519b (IsA dedifferentiation adaptation) (STV 1.0 0.9091)) +(: cnet_isa_99b1573ad8 (IsA deductible article) (STV 1.0 0.9091)) +(: cnet_isa_f6941b7f22 (IsA deductible sum) (STV 1.0 0.9091)) +(: cnet_isa_a8671b679b (IsA deduction inference) (STV 1.0 0.9091)) +(: cnet_isa_9380fd17b8 (IsA deduction reasoning) (STV 1.0 0.9091)) +(: cnet_isa_de78e60ba9 (IsA deduction allowance) (STV 1.0 0.9091)) +(: cnet_isa_367b7da8ab (IsA deed accomplishment) (STV 1.0 0.9091)) +(: cnet_isa_cc2551df86 (IsA deed legal_document) (STV 1.0 0.9091)) +(: cnet_isa_4b99af62ed (IsA deed_poll deed) (STV 1.0 0.9091)) +(: cnet_isa_9f2cfcec47 (IsA deep ocean) (STV 1.0 0.9091)) +(: cnet_isa_45357c29b5 (IsA deep middle) (STV 1.0 0.9091)) +(: cnet_isa_bcf9f13b79 (IsA deep_dish_pie pie) (STV 1.0 0.9091)) +(: cnet_isa_8aabafe052 (IsA deep_fording ford) (STV 1.0 0.9091)) +(: cnet_isa_6cddd75899 (IsA deep_freeze electric_refrigerator) (STV 1.0 0.9091)) +(: cnet_isa_68f118b727 (IsA deep_freeze inaction) (STV 1.0 0.9091)) +(: cnet_isa_efede751bb (IsA deep_middle_cerebral_vein middle_cerebral_vein) (STV 1.0 0.9091)) +(: cnet_isa_ab5018440d (IsA deep_pocket asset) (STV 1.0 0.9091)) +(: cnet_isa_2c8f9d1fe1 (IsA deep_sea_diver diver) (STV 1.0 0.9091)) +(: cnet_isa_f7aeec696c (IsA deep_space region) (STV 1.0 0.9091)) +(: cnet_isa_9e8a4644fa (IsA deep_supporting_fire supporting_fire) (STV 1.0 0.9091)) +(: cnet_isa_4e29ec2320 (IsA deep_temporal_vein temporal_vein) (STV 1.0 0.9091)) +(: cnet_isa_575bb89d1d (IsA deep_water trouble) (STV 1.0 0.9091)) +(: cnet_isa_db9df2d22b (IsA deepening development) (STV 1.0 0.9091)) +(: cnet_isa_8b3bd3247e (IsA deepness depth) (STV 1.0 0.9091)) +(: cnet_isa_07925d1f2b (IsA deepness low_pitch) (STV 1.0 0.9091)) +(: cnet_isa_cdcfe0552b (IsA deepwater_pipefish pipefish) (STV 1.0 0.9091)) +(: cnet_isa_2ef63186e7 (IsA deepwater_squirrelfish squirrelfish) (STV 1.0 0.9091)) +(: cnet_isa_54b9c20b25 (IsA deer animal) (STV 1.0 0.9339)) +(: cnet_isa_c16764d4e2 (IsA deer ruminant) (STV 1.0 0.9091)) +(: cnet_isa_388f978b49 (IsA deer_fern hard_fern) (STV 1.0 0.9091)) +(: cnet_isa_a8b53943b4 (IsA deer_grass subshrub) (STV 1.0 0.9091)) +(: cnet_isa_05e5df7735 (IsA deer_hunter hunter) (STV 1.0 0.9091)) +(: cnet_isa_d2b0e16879 (IsA deer_hunting hunt) (STV 1.0 0.9091)) +(: cnet_isa_81bbe8dc93 (IsA deer_mouse wood_mouse) (STV 1.0 0.9091)) +(: cnet_isa_5c0f3ca52f (IsA deer_mushroom agaric) (STV 1.0 0.9091)) +(: cnet_isa_d178ae4b6f (IsA deer_trail trail) (STV 1.0 0.9091)) +(: cnet_isa_9de263e492 (IsA deerberry blueberry) (STV 1.0 0.9091)) +(: cnet_isa_9ce839ac06 (IsA deerskin leather) (STV 1.0 0.9091)) +(: cnet_isa_44966dd95f (IsA deerstalker hat) (STV 1.0 0.9091)) +(: cnet_isa_7c0e576483 (IsA deerstalking stalk) (STV 1.0 0.9091)) +(: cnet_isa_8daeb83700 (IsA defacement damage) (STV 1.0 0.9091)) +(: cnet_isa_0688eae6d6 (IsA defalcation sum) (STV 1.0 0.9091)) +(: cnet_isa_bd0ed46d93 (IsA defamation disparagement) (STV 1.0 0.9091)) +(: cnet_isa_9c8870c5df (IsA defamer detractor) (STV 1.0 0.9091)) +(: cnet_isa_5859ef0fed (IsA default absence) (STV 1.0 0.9091)) +(: cnet_isa_b0ccc4af83 (IsA default loss) (STV 1.0 0.9091)) +(: cnet_isa_0ac421dd53 (IsA default failure) (STV 1.0 0.9091)) +(: cnet_isa_9575f75708 (IsA default_judgment judgment) (STV 1.0 0.9091)) +(: cnet_isa_7ab6224d07 (IsA default_option option) (STV 1.0 0.9091)) +(: cnet_isa_b14604e76a (IsA defaulter absentee) (STV 1.0 0.9091)) +(: cnet_isa_9d11c2be3f (IsA defaulter contestant) (STV 1.0 0.9091)) +(: cnet_isa_e8eef36353 (IsA defaulter debtor) (STV 1.0 0.9091)) +(: cnet_isa_93c7989251 (IsA defeat ending) (STV 1.0 0.9091)) +(: cnet_isa_b2e78bec1f (IsA defeat failure) (STV 1.0 0.9091)) +(: cnet_isa_c583e66d79 (IsA defeated people) (STV 1.0 0.9091)) +(: cnet_isa_f7d574addf (IsA defeatism resignation) (STV 1.0 0.9091)) +(: cnet_isa_ef402ab5d1 (IsA defeatist pessimist) (STV 1.0 0.9091)) +(: cnet_isa_d391c7dc1d (IsA defecation elimination) (STV 1.0 0.9091)) +(: cnet_isa_3cf77feb35 (IsA defecation_reflex reflex) (STV 1.0 0.9091)) +(: cnet_isa_15728cdf44 (IsA defecator person) (STV 1.0 0.9091)) +(: cnet_isa_122795132c (IsA defect disadvantage) (STV 1.0 0.9091)) +(: cnet_isa_24c1a9ec5a (IsA defect imperfection) (STV 1.0 0.9091)) +(: cnet_isa_95aabfb946 (IsA defective_pleading pleading) (STV 1.0 0.9091)) +(: cnet_isa_18d6a7e9e8 (IsA defectiveness imperfection) (STV 1.0 0.9091)) +(: cnet_isa_4257442969 (IsA defence protection) (STV 1.0 0.9091)) +(: cnet_isa_d0724117bd (IsA defendant litigant) (STV 1.0 0.9091)) +(: cnet_isa_c01b27cfa9 (IsA defender combatant) (STV 1.0 0.9091)) +(: cnet_isa_4ea44319e8 (IsA defender preserver) (STV 1.0 0.9091)) +(: cnet_isa_4b76163e31 (IsA defender_of_faith title) (STV 1.0 0.9091)) +(: cnet_isa_7078edc414 (IsA defenestration ejection) (STV 1.0 0.9091)) +(: cnet_isa_f2f7c5b700 (IsA defense protection) (STV 1.0 0.9091)) +(: cnet_isa_63cc8bf2a1 (IsA defense justification) (STV 1.0 0.9091)) +(: cnet_isa_4b25b51c05 (IsA defense collection) (STV 1.0 0.9091)) +(: cnet_isa_9b29de68fe (IsA defense organization) (STV 1.0 0.9091)) +(: cnet_isa_669c8cf7ba (IsA defense due_process) (STV 1.0 0.9091)) +(: cnet_isa_1a06dc70c8 (IsA defense military_action) (STV 1.0 0.9091)) +(: cnet_isa_dd575e5380 (IsA defense team) (STV 1.0 0.9091)) +(: cnet_isa_5f5828a454 (IsA defense_advanced_research_project_agency agency) (STV 1.0 0.9091)) +(: cnet_isa_ee08c0006e (IsA defense_attorney lawyer) (STV 1.0 0.9091)) +(: cnet_isa_b1f5349151 (IsA defense_contractor contractor) (STV 1.0 0.9091)) +(: cnet_isa_f0dd8b8694 (IsA defense_information_system_agency agency) (STV 1.0 0.9091)) +(: cnet_isa_8299c6bc45 (IsA defense_intelligence_agency military_intelligence) (STV 1.0 0.9091)) +(: cnet_isa_fde0bf5836 (IsA defense_intelligence_agency united_state_intelligence_agency) (STV 1.0 0.9091)) +(: cnet_isa_565e03b7d1 (IsA defense_laboratory lab) (STV 1.0 0.9091)) +(: cnet_isa_7fe2c9cf4b (IsA defense_logistic_agency agency) (STV 1.0 0.9091)) +(: cnet_isa_2c90e53447 (IsA defense_mechanism process) (STV 1.0 0.9091)) +(: cnet_isa_cac4b940be (IsA defense_mechanism psychoanalytic_process) (STV 1.0 0.9091)) +(: cnet_isa_8ba9ed7cc3 (IsA defense_program program) (STV 1.0 0.9091)) +(: cnet_isa_dc3e83dc82 (IsA defense_reutilization_and_marketing_service agency) (STV 1.0 0.9091)) +(: cnet_isa_5aa6984ff5 (IsA defense_secretary secretary) (STV 1.0 0.9091)) +(: cnet_isa_fdf05a26f8 (IsA defense_system weaponry) (STV 1.0 0.9091)) +(: cnet_isa_582e8161e6 (IsA defense_technical_information_center agency) (STV 1.0 0.9091)) +(: cnet_isa_d54e07bc58 (IsA defenselessness vulnerability) (STV 1.0 0.9091)) +(: cnet_isa_3f87ee1457 (IsA defensibility capability) (STV 1.0 0.9091)) +(: cnet_isa_50e0950ab1 (IsA defensive attitude) (STV 1.0 0.9091)) +(: cnet_isa_92b0ec8e04 (IsA defensive_structure structure) (STV 1.0 0.9091)) +(: cnet_isa_d741f58eb3 (IsA defensiveness sensitivity) (STV 1.0 0.9091)) +(: cnet_isa_9a079b9aba (IsA deference politeness) (STV 1.0 0.9091)) +(: cnet_isa_40131c9052 (IsA deference courtesy) (STV 1.0 0.9091)) +(: cnet_isa_9a5982841c (IsA deferral abeyance) (STV 1.0 0.9091)) +(: cnet_isa_544318d8aa (IsA defervescence suspension) (STV 1.0 0.9091)) +(: cnet_isa_74c71ad1ba (IsA defiance resistance) (STV 1.0 0.9091)) +(: cnet_isa_42fa0d0e94 (IsA defiance intractability) (STV 1.0 0.9091)) +(: cnet_isa_be987038bd (IsA defiance challenge) (STV 1.0 0.9091)) +(: cnet_isa_90330eff16 (IsA defibrillation medical_care) (STV 1.0 0.9091)) +(: cnet_isa_a3571a5bea (IsA defibrillator electronic_device) (STV 1.0 0.9091)) +(: cnet_isa_10d9f1fa17 (IsA deficiency_disease disease) (STV 1.0 0.9091)) +(: cnet_isa_2d87be9c0d (IsA deficit insufficiency) (STV 1.0 0.9091)) +(: cnet_isa_4780f69e67 (IsA deficit liability) (STV 1.0 0.9091)) +(: cnet_isa_c08258f86f (IsA deficit score) (STV 1.0 0.9091)) +(: cnet_isa_6ebe5d57df (IsA deficit lack) (STV 1.0 0.9091)) +(: cnet_isa_0777f38b38 (IsA deficit_spending spending) (STV 1.0 0.9091)) +(: cnet_isa_4dd94ff402 (IsA defilade fortification) (STV 1.0 0.9091)) +(: cnet_isa_0269b5960e (IsA defile pass) (STV 1.0 0.9091)) +(: cnet_isa_c3097f4114 (IsA definite_article article) (STV 1.0 0.9091)) +(: cnet_isa_555b4bfc27 (IsA definite_integral integral) (STV 1.0 0.9091)) +(: cnet_isa_a71285c13c (IsA definite_quantity measure) (STV 1.0 0.9091)) +(: cnet_isa_6ea346ce95 (IsA definition distinctness) (STV 1.0 0.9091)) +(: cnet_isa_5266cd3d15 (IsA definition explanation) (STV 1.0 0.9091)) +(: cnet_isa_57d817e3a5 (IsA definitive_host host) (STV 1.0 0.9091)) +(: cnet_isa_68cd453d1a (IsA deflagration combustion) (STV 1.0 0.9091)) +(: cnet_isa_ca7285fedc (IsA deflation decrease) (STV 1.0 0.9091)) +(: cnet_isa_9b4410f426 (IsA deflation erosion) (STV 1.0 0.9091)) +(: cnet_isa_dd5cda3c45 (IsA deflation economic_process) (STV 1.0 0.9091)) +(: cnet_isa_d8f486ab6a (IsA deflationary_spiral spiral) (STV 1.0 0.9091)) +(: cnet_isa_fafb28276d (IsA deflator factor) (STV 1.0 0.9091)) +(: cnet_isa_81730f9e80 (IsA deflection physical_property) (STV 1.0 0.9091)) +(: cnet_isa_c729c7f2c2 (IsA deflection bending) (STV 1.0 0.9091)) +(: cnet_isa_63fa1b1f0b (IsA deflection movement) (STV 1.0 0.9091)) +(: cnet_isa_e4d7d18cf0 (IsA deflection aberrance) (STV 1.0 0.9091)) +(: cnet_isa_a0a6ac76ed (IsA deflector device) (STV 1.0 0.9091)) +(: cnet_isa_7204066a0e (IsA defloration damage) (STV 1.0 0.9091)) +(: cnet_isa_90c4169e0c (IsA defloration sexual_intercourse) (STV 1.0 0.9091)) +(: cnet_isa_af764b8d80 (IsA defoliant compound) (STV 1.0 0.9091)) +(: cnet_isa_d185ad1daf (IsA defoliation change_of_state) (STV 1.0 0.9091)) +(: cnet_isa_c874e69037 (IsA defoliation organic_process) (STV 1.0 0.9091)) +(: cnet_isa_d470a1069a (IsA defoliator insect) (STV 1.0 0.9091)) +(: cnet_isa_06789af2ef (IsA deforestation denudation) (STV 1.0 0.9091)) +(: cnet_isa_f864f0b54f (IsA deforestation environmental_condition) (STV 1.0 0.9091)) +(: cnet_isa_853cc19434 (IsA deformation change) (STV 1.0 0.9091)) +(: cnet_isa_5ddd515ad0 (IsA deformity affliction) (STV 1.0 0.9091)) +(: cnet_isa_0c4450bd21 (IsA defroster heater) (STV 1.0 0.9091)) +(: cnet_isa_cf9a4fe9bb (IsA degaussing demagnetization) (STV 1.0 0.9091)) +(: cnet_isa_8cc1d7f399 (IsA degeneracy abasement) (STV 1.0 0.9091)) +(: cnet_isa_654b63f83f (IsA degeneration transformation) (STV 1.0 0.9091)) +(: cnet_isa_a723259fcb (IsA degeneration process) (STV 1.0 0.9091)) +(: cnet_isa_00676bb673 (IsA degenerative_disorder disorder) (STV 1.0 0.9091)) +(: cnet_isa_29c2051e43 (IsA degradation change_of_state) (STV 1.0 0.9091)) +(: cnet_isa_11cfe9dbb0 (IsA degree magnitude) (STV 1.0 0.9091)) +(: cnet_isa_d10b4e8c80 (IsA degree property) (STV 1.0 0.9091)) +(: cnet_isa_fef2cef604 (IsA degree exponent) (STV 1.0 0.9091)) +(: cnet_isa_a907037127 (IsA degree angular_unit) (STV 1.0 0.9091)) +(: cnet_isa_f02ab6ba87 (IsA degree temperature_unit) (STV 1.0 0.9091)) +(: cnet_isa_88e38e4c84 (IsA degree state) (STV 1.0 0.9091)) +(: cnet_isa_ddb904fdeb (IsA degree_centigrade degree) (STV 1.0 0.9091)) +(: cnet_isa_aa5d95fe36 (IsA degree_day temperature_unit) (STV 1.0 0.9091)) +(: cnet_isa_08e4e4528b (IsA degree_fahrenheit degree) (STV 1.0 0.9091)) +(: cnet_isa_d16c84f082 (IsA degree_of_freedom parameter) (STV 1.0 0.9091)) +(: cnet_isa_50eb2b667d (IsA degree_of_freedom variable) (STV 1.0 0.9091)) +(: cnet_isa_52be788536 (IsA degree_of_polynomial degree) (STV 1.0 0.9091)) +(: cnet_isa_acc7f2ccbf (IsA degree_of_term degree) (STV 1.0 0.9091)) +(: cnet_isa_b7c96b073c (IsA degree_program course_of_study) (STV 1.0 0.9091)) +(: cnet_isa_b7fbe25d84 (IsA degressive_tax tax) (STV 1.0 0.9091)) +(: cnet_isa_56d6d2d403 (IsA dehiscence organic_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_8970007899 (IsA dehumanization degradation) (STV 1.0 0.9091)) +(: cnet_isa_a36fc6bc42 (IsA dehumidifier appliance) (STV 1.0 0.9091)) +(: cnet_isa_4de0a7a162 (IsA dehydrated_food foodstuff) (STV 1.0 0.9091)) +(: cnet_isa_62c64af142 (IsA dehydration extraction) (STV 1.0 0.9091)) +(: cnet_isa_60de345507 (IsA dehydration dryness) (STV 1.0 0.9091)) +(: cnet_isa_6839679948 (IsA dehydration thirst) (STV 1.0 0.9091)) +(: cnet_isa_c8f4982b6b (IsA deictic word) (STV 1.0 0.9091)) +(: cnet_isa_57c186b5b5 (IsA deification worship) (STV 1.0 0.9091)) +(: cnet_isa_b28063826c (IsA deification embodiment) (STV 1.0 0.9091)) +(: cnet_isa_272832e43e (IsA deification condition) (STV 1.0 0.9091)) +(: cnet_isa_4a401cb43b (IsA deinocheirus ornithomimid) (STV 1.0 0.9091)) +(: cnet_isa_c0120ec285 (IsA deinonychus maniraptor) (STV 1.0 0.9091)) +(: cnet_isa_6a7ada13f3 (IsA deipnosophist conversationalist) (STV 1.0 0.9091)) +(: cnet_isa_21db1a5c98 (IsA deism rationalism) (STV 1.0 0.9091)) +(: cnet_isa_e1d82befe4 (IsA deist nonreligious_person) (STV 1.0 0.9091)) +(: cnet_isa_f83f1b8a8e (IsA deity spiritual_being) (STV 1.0 0.9091)) +(: cnet_isa_6322b86cc3 (IsA deixis semantic) (STV 1.0 0.9091)) +(: cnet_isa_9a156fbeb6 (IsA deja_vu reminder) (STV 1.0 0.9091)) +(: cnet_isa_4804b42aef (IsA dejection depression) (STV 1.0 0.9091)) +(: cnet_isa_e13d1ca43e (IsA dekagram metric_weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_1bba7c6974 (IsA dekaliter metric_capacity_unit) (STV 1.0 0.9091)) +(: cnet_isa_bc98f63df9 (IsA dekko look) (STV 1.0 0.9091)) +(: cnet_isa_8f55fc88c5 (IsA delairea asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c0530d1bd6 (IsA delaware state) (STV 1.0 0.9339)) +(: cnet_isa_3d6215418d (IsA delaware algonquian) (STV 1.0 0.9091)) +(: cnet_isa_59f6e3f855 (IsA delaware algonquin) (STV 1.0 0.9091)) +(: cnet_isa_c17b47e42c (IsA delawarian american) (STV 1.0 0.9091)) +(: cnet_isa_3e01cde31b (IsA delay inactivity) (STV 1.0 0.9091)) +(: cnet_isa_ebfb25491a (IsA delay pause) (STV 1.0 0.9091)) +(: cnet_isa_a840a88e47 (IsA delay_line circuit) (STV 1.0 0.9091)) +(: cnet_isa_329f1cab49 (IsA delayed_action mechanism) (STV 1.0 0.9091)) +(: cnet_isa_7d27231dbe (IsA delayed_allergy allergy) (STV 1.0 0.9091)) +(: cnet_isa_d5429eaa10 (IsA delayer person) (STV 1.0 0.9091)) +(: cnet_isa_3d8e25709c (IsA delectability appetizingness) (STV 1.0 0.9091)) +(: cnet_isa_2a3fa5aa32 (IsA delegacy appointment) (STV 1.0 0.9091)) +(: cnet_isa_43358d91d1 (IsA delegate representative) (STV 1.0 0.9091)) +(: cnet_isa_80436a7a6d (IsA delegating authorization) (STV 1.0 0.9091)) +(: cnet_isa_3b05fa2c23 (IsA deletion removal) (STV 1.0 0.9091)) +(: cnet_isa_499556ddb1 (IsA deletion editing) (STV 1.0 0.9091)) +(: cnet_isa_c96e8aca2d (IsA deletion mutation) (STV 1.0 0.9091)) +(: cnet_isa_398c9c8b43 (IsA delf excavation) (STV 1.0 0.9091)) +(: cnet_isa_92e1d1f53a (IsA delft earthenware) (STV 1.0 0.9091)) +(: cnet_isa_ede835b12e (IsA deli_restaurant place_to_get_food_quickly) (STV 1.0 0.9091)) +(: cnet_isa_62b18ea4bb (IsA deliberate_defense defense) (STV 1.0 0.9091)) +(: cnet_isa_b8ea15bd57 (IsA deliberation thoughtfulness) (STV 1.0 0.9091)) +(: cnet_isa_bb61d38a20 (IsA deliberation consideration) (STV 1.0 0.9091)) +(: cnet_isa_5236ef7c88 (IsA deliberation discussion) (STV 1.0 0.9091)) +(: cnet_isa_dce2c83bec (IsA deliberative_assembly assembly) (STV 1.0 0.9091)) +(: cnet_isa_8fc01f0a6b (IsA delicacy smallness) (STV 1.0 0.9091)) +(: cnet_isa_a685de146c (IsA delicacy tact) (STV 1.0 0.9091)) +(: cnet_isa_a00cae8ee2 (IsA delicacy taste) (STV 1.0 0.9091)) +(: cnet_isa_19cddfc6d6 (IsA delicatessen shop) (STV 1.0 0.9091)) +(: cnet_isa_cb905bdb78 (IsA delicatessen convenience_food) (STV 1.0 0.9091)) +(: cnet_isa_11fc7ac251 (IsA delichon bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_b487b74518 (IsA delicious eating_apple) (STV 1.0 0.9091)) +(: cnet_isa_9cccc71957 (IsA delight pleasure) (STV 1.0 0.9091)) +(: cnet_isa_01c79ab5d4 (IsA delineation drawing) (STV 1.0 0.9091)) +(: cnet_isa_d306110dc8 (IsA delinquency negligence) (STV 1.0 0.9091)) +(: cnet_isa_07ee0c2d07 (IsA delinquency misbehavior) (STV 1.0 0.9091)) +(: cnet_isa_dd5968a0a4 (IsA delinquency nonpayment) (STV 1.0 0.9091)) +(: cnet_isa_d8747c8176 (IsA delinquent wrongdoer) (STV 1.0 0.9091)) +(: cnet_isa_5fe916c67f (IsA delirium mental_disorder) (STV 1.0 0.9091)) +(: cnet_isa_b78ac085f1 (IsA delirium_tremen psychosis) (STV 1.0 0.9091)) +(: cnet_isa_01103f3c21 (IsA deliverable product) (STV 1.0 0.9091)) +(: cnet_isa_44fdf431c9 (IsA deliverer person) (STV 1.0 0.9091)) +(: cnet_isa_41350a06e6 (IsA delivery act) (STV 1.0 0.9091)) +(: cnet_isa_fe9d122011 (IsA delivery conveyance) (STV 1.0 0.9091)) +(: cnet_isa_503cc536a2 (IsA delivery transportation) (STV 1.0 0.9091)) +(: cnet_isa_a92ca5633a (IsA delivery birth) (STV 1.0 0.9091)) +(: cnet_isa_cf722e57f5 (IsA delivery_truck van) (STV 1.0 0.9091)) +(: cnet_isa_3bb5343ab0 (IsA deliveryman employee) (STV 1.0 0.9091)) +(: cnet_isa_16ca6ddef1 (IsA dell hollow) (STV 1.0 0.9091)) +(: cnet_isa_7ac703a637 (IsA delmonico_steak beefsteak) (STV 1.0 0.9091)) +(: cnet_isa_cb81b7eeac (IsA delonix rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_fcb6368853 (IsA delphinapterus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_7f2851cd31 (IsA delphinidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_82cd9a5887 (IsA delphinium flower) (STV 1.0 0.9091)) +(: cnet_isa_3de58475e8 (IsA delphinus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_6a2ec5146f (IsA delta letter) (STV 1.0 0.9091)) +(: cnet_isa_c2a8ee64ec (IsA delta alluvial_sediment) (STV 1.0 0.9091)) +(: cnet_isa_96e55d4a3c (IsA delta geological_formation) (STV 1.0 0.9091)) +(: cnet_isa_5018fd6af3 (IsA delta equilateral_triangle) (STV 1.0 0.9091)) +(: cnet_isa_91db2dcd10 (IsA delta_iron iron) (STV 1.0 0.9091)) +(: cnet_isa_a22d28a9cc (IsA delta_ray electron) (STV 1.0 0.9091)) +(: cnet_isa_66e9174bad (IsA delta_rhythm brainwave) (STV 1.0 0.9091)) +(: cnet_isa_510acbeccf (IsA delta_wing airplane) (STV 1.0 0.9091)) +(: cnet_isa_cd53615fe5 (IsA deltoid skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_28be068218 (IsA deltoid_leaf simple_leaf) (STV 1.0 0.9091)) +(: cnet_isa_08a6449386 (IsA deltoid_tuberosity tuberosity) (STV 1.0 0.9091)) +(: cnet_isa_c485006306 (IsA delusion deception) (STV 1.0 0.9091)) +(: cnet_isa_950e52753b (IsA delusion misconception) (STV 1.0 0.9091)) +(: cnet_isa_cd15d1f8d8 (IsA delusion psychological_state) (STV 1.0 0.9091)) +(: cnet_isa_91246d109e (IsA delusional_disorder mental_disorder) (STV 1.0 0.9091)) +(: cnet_isa_d1212ca501 (IsA delusion_of_grandeur delusion) (STV 1.0 0.9091)) +(: cnet_isa_5f1e14ff10 (IsA delusion_of_persecution delusion) (STV 1.0 0.9091)) +(: cnet_isa_ae4927964b (IsA demagnetization natural_process) (STV 1.0 0.9091)) +(: cnet_isa_3c1aff613f (IsA demagogue politician) (STV 1.0 0.9091)) +(: cnet_isa_6a83d764c2 (IsA demagoguery entreaty) (STV 1.0 0.9091)) +(: cnet_isa_49e881893d (IsA demand activity) (STV 1.0 0.9091)) +(: cnet_isa_81e722af8c (IsA demand request) (STV 1.0 0.9091)) +(: cnet_isa_8bea160ad5 (IsA demand economic_process) (STV 1.0 0.9091)) +(: cnet_isa_78d5af8179 (IsA demand_deposit deposit) (STV 1.0 0.9091)) +(: cnet_isa_a998324378 (IsA demand_feeding infant_feeding) (STV 1.0 0.9091)) +(: cnet_isa_a277e1b5cd (IsA demand_for_identification challenge) (STV 1.0 0.9091)) +(: cnet_isa_52b7f5ee07 (IsA demand_note note) (STV 1.0 0.9091)) +(: cnet_isa_74946dde2c (IsA demand_pull_inflation inflation) (STV 1.0 0.9091)) +(: cnet_isa_d065051e1f (IsA demander person) (STV 1.0 0.9091)) +(: cnet_isa_3e5f64436b (IsA demantoid andradite) (STV 1.0 0.9091)) +(: cnet_isa_04ebbf6a5a (IsA demarche move) (STV 1.0 0.9091)) +(: cnet_isa_c260ea6adb (IsA dematiaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_d4c56019c8 (IsA demeanor trait) (STV 1.0 0.9091)) +(: cnet_isa_ee816528bc (IsA dementia insanity) (STV 1.0 0.9091)) +(: cnet_isa_dfd9740c1f (IsA demerara brown_sugar) (STV 1.0 0.9091)) +(: cnet_isa_15746716a8 (IsA demerara rum) (STV 1.0 0.9091)) +(: cnet_isa_f3c90958e7 (IsA demerara cane_sugar) (STV 1.0 0.9091)) +(: cnet_isa_5b59d237c4 (IsA demerit worth) (STV 1.0 0.9091)) +(: cnet_isa_0e088bffea (IsA demerit mark) (STV 1.0 0.9091)) +(: cnet_isa_286e49caf1 (IsA demiglace sauce) (STV 1.0 0.9091)) +(: cnet_isa_365d383736 (IsA demigod leader) (STV 1.0 0.9091)) +(: cnet_isa_099949a63e (IsA demijohn bottle) (STV 1.0 0.9091)) +(: cnet_isa_f8bb819f98 (IsA demilitarized_zone zone) (STV 1.0 0.9091)) +(: cnet_isa_3bc2057076 (IsA demimondaine prostitute) (STV 1.0 0.9091)) +(: cnet_isa_4df998bb4b (IsA demimonde class) (STV 1.0 0.9091)) +(: cnet_isa_9341729cab (IsA demineralization chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_177f8c444a (IsA demineralization pathology) (STV 1.0 0.9091)) +(: cnet_isa_378ef619d5 (IsA demister heater) (STV 1.0 0.9091)) +(: cnet_isa_e9bc5bc409 (IsA demitasse coffee_cup) (STV 1.0 0.9091)) +(: cnet_isa_abb0504dd0 (IsA demiurge deity) (STV 1.0 0.9091)) +(: cnet_isa_a21a84c855 (IsA demobilization social_control) (STV 1.0 0.9091)) +(: cnet_isa_64e8bac106 (IsA democracy form_of_government) (STV 1.0 0.9091)) +(: cnet_isa_da087f411d (IsA democracy good_thing) (STV 1.0 0.9091)) +(: cnet_isa_bf6bede44c (IsA democracy political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_1f229200ea (IsA democracy political_system) (STV 1.0 0.9091)) +(: cnet_isa_e401f7765e (IsA democrat advocate) (STV 1.0 0.9091)) +(: cnet_isa_d4828d414e (IsA democrat politician) (STV 1.0 0.9091)) +(: cnet_isa_d515d8aa59 (IsA democratic_party party) (STV 1.0 0.9091)) +(: cnet_isa_29d2e0f56a (IsA democratic_republican_party party) (STV 1.0 0.9091)) +(: cnet_isa_9d8a00a288 (IsA democratization group_action) (STV 1.0 0.9091)) +(: cnet_isa_59e7390dc5 (IsA demodulation reception) (STV 1.0 0.9091)) +(: cnet_isa_bbfc1065b5 (IsA demographer sociologist) (STV 1.0 0.9091)) +(: cnet_isa_eceb4edec8 (IsA demographic statistic) (STV 1.0 0.9091)) +(: cnet_isa_d5c08e9946 (IsA demography sociology) (STV 1.0 0.9091)) +(: cnet_isa_99a7b1762c (IsA demolition destruction) (STV 1.0 0.9091)) +(: cnet_isa_00bb3060a2 (IsA demon actor) (STV 1.0 0.9091)) +(: cnet_isa_81d24f7230 (IsA demonetization termination) (STV 1.0 0.9091)) +(: cnet_isa_160bdb025f (IsA demoniac monster) (STV 1.0 0.9091)) +(: cnet_isa_927d67d089 (IsA demonization disapprobation) (STV 1.0 0.9091)) +(: cnet_isa_fb690a122f (IsA demonstrability indisputability) (STV 1.0 0.9091)) +(: cnet_isa_b8fc4cbeac (IsA demonstration proof) (STV 1.0 0.9091)) +(: cnet_isa_ba1759c7af (IsA demonstration visual_communication) (STV 1.0 0.9091)) +(: cnet_isa_0af0731986 (IsA demonstration show) (STV 1.0 0.9091)) +(: cnet_isa_43fafe0d00 (IsA demonstration protest) (STV 1.0 0.9091)) +(: cnet_isa_f0244f36a6 (IsA demonstrative_pronoun pronoun) (STV 1.0 0.9091)) +(: cnet_isa_d69ff28b04 (IsA demonstrativeness emotionality) (STV 1.0 0.9091)) +(: cnet_isa_3c589777cf (IsA demonstrator reformer) (STV 1.0 0.9091)) +(: cnet_isa_3456343786 (IsA demonstrator salesperson) (STV 1.0 0.9091)) +(: cnet_isa_00c3ffdfdc (IsA demonstrator teacher) (STV 1.0 0.9091)) +(: cnet_isa_9e6289399a (IsA demoralization degradation) (STV 1.0 0.9091)) +(: cnet_isa_3944c60ce9 (IsA demoralization depression) (STV 1.0 0.9091)) +(: cnet_isa_7352aaa66e (IsA demoralization confusion) (STV 1.0 0.9091)) +(: cnet_isa_83a7e8a2e8 (IsA demotic_script hieratic) (STV 1.0 0.9091)) +(: cnet_isa_e953b87b44 (IsA demotion change) (STV 1.0 0.9091)) +(: cnet_isa_732150e6a2 (IsA demulcent medicine) (STV 1.0 0.9091)) +(: cnet_isa_ba1f36fc6a (IsA demur objection) (STV 1.0 0.9091)) +(: cnet_isa_dd945e1c46 (IsA demureness modesty) (STV 1.0 0.9091)) +(: cnet_isa_14f3e71b4a (IsA demurrage delay) (STV 1.0 0.9091)) +(: cnet_isa_127037c848 (IsA demurrage charge) (STV 1.0 0.9091)) +(: cnet_isa_80dafdf94e (IsA demurrer pleading) (STV 1.0 0.9091)) +(: cnet_isa_61993c0c69 (IsA demyelination degenerative_disorder) (STV 1.0 0.9091)) +(: cnet_isa_e18eeb92f2 (IsA demythologization restatement) (STV 1.0 0.9091)) +(: cnet_isa_5ff67d3cdd (IsA den room) (STV 1.0 0.9091)) +(: cnet_isa_1cd20d0f71 (IsA den unit) (STV 1.0 0.9091)) +(: cnet_isa_4c9ff5c907 (IsA den_mother chaperon) (STV 1.0 0.9091)) +(: cnet_isa_0885b1e72c (IsA den_mother supervisor) (STV 1.0 0.9091)) +(: cnet_isa_ae58101b4e (IsA denationalization social_control) (STV 1.0 0.9091)) +(: cnet_isa_63ae54f038 (IsA denaturant substance) (STV 1.0 0.9091)) +(: cnet_isa_9293369e61 (IsA denatured_alcohol ethyl_alcohol) (STV 1.0 0.9091)) +(: cnet_isa_a2697d4649 (IsA denazification social_process) (STV 1.0 0.9091)) +(: cnet_isa_9b7c7fe3eb (IsA dendranthema asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_84b351a606 (IsA dendrite nerve_fiber) (STV 1.0 0.9091)) +(: cnet_isa_36b0640641 (IsA dendroaspis reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_5728cc30d2 (IsA dendrobium orchid) (STV 1.0 0.9091)) +(: cnet_isa_0c1868281e (IsA dendrocalamus monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a15c378614 (IsA dendrocolapte bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_c3280511ba (IsA dendrocolaptidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_7b74aa21c4 (IsA dendroctonus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_206644496a (IsA dendroica bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_995c11ee27 (IsA dendrolagus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_0e571c0626 (IsA dendrology systematic) (STV 1.0 0.9091)) +(: cnet_isa_f60f137713 (IsA dendromecon dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_da45be21d8 (IsA dengue infectious_disease) (STV 1.0 0.9091)) +(: cnet_isa_1d839ef054 (IsA denial assertion) (STV 1.0 0.9091)) +(: cnet_isa_ab6603aea0 (IsA denial speech_act) (STV 1.0 0.9091)) +(: cnet_isa_b756f32828 (IsA denial defense_mechanism) (STV 1.0 0.9091)) +(: cnet_isa_04fd06a4e9 (IsA denier disputant) (STV 1.0 0.9091)) +(: cnet_isa_402167abf9 (IsA denier coin) (STV 1.0 0.9091)) +(: cnet_isa_82044f0b4d (IsA denier unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_d6b267f134 (IsA denigration disparagement) (STV 1.0 0.9091)) +(: cnet_isa_019b10c64f (IsA denim fabric) (STV 1.0 0.9693)) +(: cnet_isa_d6e325e5ca (IsA denisonia reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_0b9f3e6815 (IsA denizen organism) (STV 1.0 0.9091)) +(: cnet_isa_7a871298cf (IsA denmark country) (STV 1.0 0.9091)) +(: cnet_isa_5cb62d8a26 (IsA dennstaedtia fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_e878453ebe (IsA dennstaedtiaceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_44c4097e5c (IsA denomination class) (STV 1.0 0.9091)) +(: cnet_isa_321bde2696 (IsA denomination nongovernmental_organization) (STV 1.0 0.9091)) +(: cnet_isa_46923aa4d9 (IsA denominationalism inclination) (STV 1.0 0.9091)) +(: cnet_isa_56c59986da (IsA denominator divisor) (STV 1.0 0.9091)) +(: cnet_isa_9bb58f8265 (IsA denotatum referent) (STV 1.0 0.9091)) +(: cnet_isa_def01ab6be (IsA denouement solution) (STV 1.0 0.9091)) +(: cnet_isa_956cb306ab (IsA denouement result) (STV 1.0 0.9091)) +(: cnet_isa_ef34bf6331 (IsA dense_blazing_star blazing_star) (STV 1.0 0.9091)) +(: cnet_isa_c8c3bc8b39 (IsA dense_leaved_elodea waterweed) (STV 1.0 0.9091)) +(: cnet_isa_9a12e1747d (IsA denseness stupidity) (STV 1.0 0.9091)) +(: cnet_isa_f3844a941b (IsA densiformis_gem_yew plant) (STV 1.0 0.9091)) +(: cnet_isa_22919c9f30 (IsA densimeter measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_c8f505acbf (IsA densitometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_84816f18cb (IsA densitometry measurement) (STV 1.0 0.9091)) +(: cnet_isa_6c5f116274 (IsA density spacing) (STV 1.0 0.9091)) +(: cnet_isa_39a11b5687 (IsA dent blemish) (STV 1.0 0.9091)) +(: cnet_isa_fdcce8eb2a (IsA dent consequence) (STV 1.0 0.9091)) +(: cnet_isa_6b8c5ad7fd (IsA dent_corn field_corn) (STV 1.0 0.9091)) +(: cnet_isa_c38802cb6c (IsA dental_anatomy gross_anatomy) (STV 1.0 0.9091)) +(: cnet_isa_2eb81be661 (IsA dental_appliance device) (STV 1.0 0.9091)) +(: cnet_isa_7059d1c06d (IsA dental_assistant assistant) (STV 1.0 0.9091)) +(: cnet_isa_898e032b64 (IsA dental_care care) (STV 1.0 0.9091)) +(: cnet_isa_14fc81c7c2 (IsA dental_floss thread) (STV 1.0 0.9091)) +(: cnet_isa_2505a402d1 (IsA dental_gold alloy) (STV 1.0 0.9091)) +(: cnet_isa_6399f5fb0b (IsA dental_hygienist skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_18f3f7bc3c (IsA dental_implant implant) (STV 1.0 0.9091)) +(: cnet_isa_ef415ba882 (IsA dental_plaque plaque) (STV 1.0 0.9091)) +(: cnet_isa_54b3766b4e (IsA dental_practice practice) (STV 1.0 0.9091)) +(: cnet_isa_2b2a7f350d (IsA dental_procedure medical_procedure) (STV 1.0 0.9091)) +(: cnet_isa_a45dfffc33 (IsA dental_school graduate_school) (STV 1.0 0.9091)) +(: cnet_isa_009e5bfc01 (IsA dental_surgeon dentist) (STV 1.0 0.9091)) +(: cnet_isa_ea268618df (IsA dental_surgery dentistry) (STV 1.0 0.9091)) +(: cnet_isa_32309328cb (IsA dental_technician technician) (STV 1.0 0.9091)) +(: cnet_isa_b89ef541ca (IsA dentaria dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_77cd089483 (IsA dentate_leaf leaf) (STV 1.0 0.9091)) +(: cnet_isa_333f36e814 (IsA dentate_nucleus nucleus) (STV 1.0 0.9091)) +(: cnet_isa_9f5e37843e (IsA denticle tooth) (STV 1.0 0.9091)) +(: cnet_isa_125d7c1ae7 (IsA denticulate_leaf dentate_leaf) (STV 1.0 0.9091)) +(: cnet_isa_3d5e7e555e (IsA dentifrice cleansing_agent) (STV 1.0 0.9091)) +(: cnet_isa_ae3b6af9cd (IsA dentine bone) (STV 1.0 0.9091)) +(: cnet_isa_fcb6119af4 (IsA dentine animal_material) (STV 1.0 0.9091)) +(: cnet_isa_56a08e5416 (IsA dentist_s_drill drill) (STV 1.0 0.9091)) +(: cnet_isa_f5c1e5af8f (IsA dentist medical_practitioner) (STV 1.0 0.9091)) +(: cnet_isa_8f9139d265 (IsA dentistry medicine) (STV 1.0 0.9091)) +(: cnet_isa_05955d7e78 (IsA dentition set) (STV 1.0 0.9091)) +(: cnet_isa_a9b75f453b (IsA denture dental_appliance) (STV 1.0 0.9091)) +(: cnet_isa_cc1f8fcfb9 (IsA denudation removal) (STV 1.0 0.9091)) +(: cnet_isa_8889c46794 (IsA denunciation speech_act) (STV 1.0 0.9091)) +(: cnet_isa_f5131f1d83 (IsA deodar cedar) (STV 1.0 0.9091)) +(: cnet_isa_985aa26e2f (IsA deodorant toiletry) (STV 1.0 0.9091)) +(: cnet_isa_677dcab580 (IsA deontic_logic modal_logic) (STV 1.0 0.9091)) +(: cnet_isa_72eefa6ea5 (IsA deossification organic_process) (STV 1.0 0.9091)) +(: cnet_isa_0eaead7ea3 (IsA deoxyadenosine nucleoside) (STV 1.0 0.9091)) +(: cnet_isa_3ee0601c20 (IsA deoxyadenosine_monophosphate nucleotide) (STV 1.0 0.9091)) +(: cnet_isa_c214865b3c (IsA deoxycytidine nucleoside) (STV 1.0 0.9091)) +(: cnet_isa_46f7a6d2d8 (IsA deoxycytidine_monophosphate nucleotide) (STV 1.0 0.9091)) +(: cnet_isa_d66ed4843a (IsA deoxyguanosine nucleoside) (STV 1.0 0.9091)) +(: cnet_isa_d601087d7f (IsA deoxyguanosine_monophosphate nucleotide) (STV 1.0 0.9091)) +(: cnet_isa_53d7cdbca6 (IsA deoxyribonucleic_acid polymer) (STV 1.0 0.9091)) +(: cnet_isa_fe3ac3f416 (IsA deoxyribose carbohydrate) (STV 1.0 0.9091)) +(: cnet_isa_02c1fda7cd (IsA deoxythymidine nucleoside) (STV 1.0 0.9091)) +(: cnet_isa_6bc8833c52 (IsA deoxythymidine_monophosphate nucleotide) (STV 1.0 0.9091)) +(: cnet_isa_22d9d5b717 (IsA deparia fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_07fcc8b41b (IsA departer migrant) (STV 1.0 0.9091)) +(: cnet_isa_9afa65b2bf (IsA department sector) (STV 1.0 0.9091)) +(: cnet_isa_35ae7645a0 (IsA department division) (STV 1.0 0.9091)) +(: cnet_isa_233b2df3e8 (IsA department administrative_district) (STV 1.0 0.9091)) +(: cnet_isa_1b8e815415 (IsA department_head head) (STV 1.0 0.9091)) +(: cnet_isa_b5f9ccc600 (IsA department_of_agriculture executive_department) (STV 1.0 0.9091)) +(: cnet_isa_9f6e3c03bd (IsA department_of_commerce executive_department) (STV 1.0 0.9091)) +(: cnet_isa_225cc1c0d4 (IsA department_of_commerce_and_labor executive_department) (STV 1.0 0.9091)) +(: cnet_isa_1554781130 (IsA department_of_computer_science academic_department) (STV 1.0 0.9091)) +(: cnet_isa_78e0679297 (IsA department_of_defense executive_department) (STV 1.0 0.9091)) +(: cnet_isa_9936e6eefc (IsA department_of_defense_laboratory_system agency) (STV 1.0 0.9091)) +(: cnet_isa_8eda031319 (IsA department_of_education executive_department) (STV 1.0 0.9091)) +(: cnet_isa_67bafa6098 (IsA department_of_energy executive_department) (STV 1.0 0.9091)) +(: cnet_isa_2d5c4d9716 (IsA department_of_energy_intelligence agency) (STV 1.0 0.9091)) +(: cnet_isa_13b8994985 (IsA department_of_health_and_human_service executive_department) (STV 1.0 0.9091)) +(: cnet_isa_58748e6183 (IsA department_of_health_education_and_welfare executive_department) (STV 1.0 0.9091)) +(: cnet_isa_0c9857bb4e (IsA department_of_housing_and_urban_development executive_department) (STV 1.0 0.9091)) +(: cnet_isa_cf5cb1c345 (IsA department_of_interior executive_department) (STV 1.0 0.9091)) +(: cnet_isa_c3f030a826 (IsA department_of_justice executive_department) (STV 1.0 0.9091)) +(: cnet_isa_c73f77d7b7 (IsA department_of_justice_canada international_law_enforcement_agency) (STV 1.0 0.9091)) +(: cnet_isa_d83314bc4d (IsA department_of_labor executive_department) (STV 1.0 0.9091)) +(: cnet_isa_56ab673c8b (IsA department_of_state executive_department) (STV 1.0 0.9091)) +(: cnet_isa_14b08b458a (IsA department_of_transportation executive_department) (STV 1.0 0.9091)) +(: cnet_isa_6dee45c88d (IsA department_of_treasury executive_department) (STV 1.0 0.9091)) +(: cnet_isa_9776be8b91 (IsA department_of_veteran_affair executive_department) (STV 1.0 0.9091)) +(: cnet_isa_a62b540b47 (IsA department_store mercantile_establishment) (STV 1.0 0.9091)) +(: cnet_isa_519750fc29 (IsA departure act) (STV 1.0 0.9091)) +(: cnet_isa_4a0f4172ad (IsA departure_gate gate) (STV 1.0 0.9091)) +(: cnet_isa_c1b699f90f (IsA departure_lounge lounge) (STV 1.0 0.9091)) +(: cnet_isa_4d394f2317 (IsA departure_tax tax) (STV 1.0 0.9091)) +(: cnet_isa_bfaa2f76c9 (IsA departure_time point) (STV 1.0 0.9091)) +(: cnet_isa_23ea347109 (IsA dependability responsibility) (STV 1.0 0.9091)) +(: cnet_isa_141ef8a102 (IsA dependant recipient) (STV 1.0 0.9091)) +(: cnet_isa_27e9b5a5f2 (IsA dependence state) (STV 1.0 0.9091)) +(: cnet_isa_ed87f02756 (IsA dependent_variable variable) (STV 1.0 0.9091)) +(: cnet_isa_93d6aba46c (IsA depersonalization objectification) (STV 1.0 0.9091)) +(: cnet_isa_1c738137fd (IsA depersonalization psychological_state) (STV 1.0 0.9091)) +(: cnet_isa_f605a96c33 (IsA depersonalization dissociative_disorder) (STV 1.0 0.9091)) +(: cnet_isa_d4ea94d582 (IsA depicting representational_process) (STV 1.0 0.9091)) +(: cnet_isa_6c2318dc9e (IsA depiction pictorial_representation) (STV 1.0 0.9091)) +(: cnet_isa_711dfb9cfd (IsA depigmentation coloration) (STV 1.0 0.9091)) +(: cnet_isa_283413533d (IsA depilation cleaning) (STV 1.0 0.9091)) +(: cnet_isa_c051116055 (IsA depilatory cosmetic) (STV 1.0 0.9091)) +(: cnet_isa_7da0ab3aaf (IsA depilatory compound) (STV 1.0 0.9091)) +(: cnet_isa_66fc68a962 (IsA depletion decrease) (STV 1.0 0.9091)) +(: cnet_isa_b90fb96c05 (IsA depletion temporary_state) (STV 1.0 0.9091)) +(: cnet_isa_cb47bf0947 (IsA deployment preparation) (STV 1.0 0.9091)) +(: cnet_isa_5a41eef035 (IsA depolarization change) (STV 1.0 0.9091)) +(: cnet_isa_476bcc5dd4 (IsA depopulation environmental_condition) (STV 1.0 0.9091)) +(: cnet_isa_76f0ff3065 (IsA deportation ejection) (STV 1.0 0.9091)) +(: cnet_isa_7618ded213 (IsA deposit buildup) (STV 1.0 0.9091)) +(: cnet_isa_ffa6c13c6f (IsA deposit guarantee) (STV 1.0 0.9091)) +(: cnet_isa_a6677fd076 (IsA deposit geological_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_b3cd27334f (IsA deposit fund) (STV 1.0 0.9091)) +(: cnet_isa_2690a9371c (IsA deposit security) (STV 1.0 0.9091)) +(: cnet_isa_c41d4321e5 (IsA deposition ouster) (STV 1.0 0.9091)) +(: cnet_isa_8a1dbbb5a4 (IsA deposition interrogation) (STV 1.0 0.9091)) +(: cnet_isa_8ecbe2d8f0 (IsA deposition accretion) (STV 1.0 0.9091)) +(: cnet_isa_ea47dbdc3b (IsA depositor investor) (STV 1.0 0.9091)) +(: cnet_isa_5047810eb1 (IsA depository facility) (STV 1.0 0.9091)) +(: cnet_isa_41068d12aa (IsA depository_financial_institution financial_institution) (STV 1.0 0.9091)) +(: cnet_isa_a7fb4be0b6 (IsA depravity transgression) (STV 1.0 0.9091)) +(: cnet_isa_9ab83a43e5 (IsA deprecation disparagement) (STV 1.0 0.9091)) +(: cnet_isa_6d96839e53 (IsA deprecation prayer) (STV 1.0 0.9091)) +(: cnet_isa_e717126d38 (IsA depreciation decrease) (STV 1.0 0.9091)) +(: cnet_isa_496e65ccdd (IsA depreciation financial_loss) (STV 1.0 0.9091)) +(: cnet_isa_74a48e19cc (IsA depreciation non_cash_expense) (STV 1.0 0.9091)) +(: cnet_isa_75c0087cb0 (IsA depreciation_allowance allowance) (STV 1.0 0.9091)) +(: cnet_isa_9bb342fb51 (IsA depreciation_charge charge) (STV 1.0 0.9091)) +(: cnet_isa_6c34b08393 (IsA depredation plundering) (STV 1.0 0.9091)) +(: cnet_isa_04bf33db0d (IsA depressed_fracture fracture) (STV 1.0 0.9091)) +(: cnet_isa_6cb53b0b9f (IsA depression hell) (STV 1.0 0.9091)) +(: cnet_isa_f5f3179439 (IsA depression push) (STV 1.0 0.9091)) +(: cnet_isa_213e80e712 (IsA depression sadness) (STV 1.0 0.9091)) +(: cnet_isa_cd599ea07e (IsA depression angular_position) (STV 1.0 0.9091)) +(: cnet_isa_b64b8d70f0 (IsA depression concave_shape) (STV 1.0 0.9091)) +(: cnet_isa_66e8f840ec (IsA depression crisis) (STV 1.0 0.9091)) +(: cnet_isa_42b698f64c (IsA depression economic_condition) (STV 1.0 0.9091)) +(: cnet_isa_e6f87e05b5 (IsA depression psychological_state) (STV 1.0 0.9091)) +(: cnet_isa_6af759bd31 (IsA depressive sick_person) (STV 1.0 0.9091)) +(: cnet_isa_05ac99e98a (IsA depressive_disorder affective_disorder) (STV 1.0 0.9091)) +(: cnet_isa_1e1a598798 (IsA depressor device) (STV 1.0 0.9091)) +(: cnet_isa_e57904b47e (IsA depressor nerve) (STV 1.0 0.9091)) +(: cnet_isa_5d4caa4322 (IsA depressor skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_6d38c1ea60 (IsA depth attribute) (STV 1.0 0.9091)) +(: cnet_isa_86055285d4 (IsA depth degree) (STV 1.0 0.9091)) +(: cnet_isa_c4d2eed92f (IsA depth extent) (STV 1.0 0.9091)) +(: cnet_isa_796c3ee157 (IsA depth abasement) (STV 1.0 0.9091)) +(: cnet_isa_cf9a5ca115 (IsA depth_charge bomb) (STV 1.0 0.9091)) +(: cnet_isa_1f851cb562 (IsA depth_finder navigational_instrument) (STV 1.0 0.9091)) +(: cnet_isa_add96528fd (IsA depth_gauge gauge) (STV 1.0 0.9091)) +(: cnet_isa_3fcce5deed (IsA depth region) (STV 1.0 0.9091)) +(: cnet_isa_6d715927b6 (IsA deputation organization) (STV 1.0 0.9091)) +(: cnet_isa_da958983f1 (IsA deputy agent) (STV 1.0 0.9091)) +(: cnet_isa_d97703d77c (IsA deputy assistant) (STV 1.0 0.9091)) +(: cnet_isa_03f70ab83e (IsA deputy lawman) (STV 1.0 0.9091)) +(: cnet_isa_8b462d7f53 (IsA deputy legislator) (STV 1.0 0.9091)) +(: cnet_isa_f4e22555c6 (IsA derailment mishap) (STV 1.0 0.9091)) +(: cnet_isa_187e186c46 (IsA derangement insanity) (STV 1.0 0.9091)) +(: cnet_isa_c7e4e3ffe6 (IsA deregulation liberation) (STV 1.0 0.9091)) +(: cnet_isa_b422e76ef4 (IsA derelict pauper) (STV 1.0 0.9091)) +(: cnet_isa_7aaf5203dc (IsA dereliction negligence) (STV 1.0 0.9091)) +(: cnet_isa_ff0a687fef (IsA dereliction wrongdoing) (STV 1.0 0.9091)) +(: cnet_isa_732aee58b1 (IsA derision discourtesy) (STV 1.0 0.9091)) +(: cnet_isa_67630e41dc (IsA derision disrespect) (STV 1.0 0.9091)) +(: cnet_isa_a3471bff2f (IsA derivation act) (STV 1.0 0.9091)) +(: cnet_isa_50ed3826bd (IsA derivation drawing) (STV 1.0 0.9091)) +(: cnet_isa_5f8c4c11f2 (IsA derivation inference) (STV 1.0 0.9091)) +(: cnet_isa_b1c2fa5ef0 (IsA derivation beginning) (STV 1.0 0.9091)) +(: cnet_isa_12226b2e32 (IsA derivation linguistic_process) (STV 1.0 0.9091)) +(: cnet_isa_837e775695 (IsA derivational_morphology morphology) (STV 1.0 0.9091)) +(: cnet_isa_3c5c43e1c7 (IsA derivative word) (STV 1.0 0.9091)) +(: cnet_isa_a5ae9e587b (IsA derivative compound) (STV 1.0 0.9091)) +(: cnet_isa_ef5263eec4 (IsA derivative_instrument legal_document) (STV 1.0 0.9091)) +(: cnet_isa_70b98947f9 (IsA derived_function calculation) (STV 1.0 0.9091)) +(: cnet_isa_d9ed52c5ad (IsA deriving explanation) (STV 1.0 0.9091)) +(: cnet_isa_2f1673bb98 (IsA dermabrasion removal) (STV 1.0 0.9091)) +(: cnet_isa_622e8e99c1 (IsA dermacentor arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_3d8cfac793 (IsA dermaptera animal_order) (STV 1.0 0.9091)) +(: cnet_isa_a57ea1c7df (IsA dermatitis eczema) (STV 1.0 0.9091)) +(: cnet_isa_b1dceba0fe (IsA dermatobia arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_cf2b4606db (IsA dermatoglyphic wrinkle) (STV 1.0 0.9091)) +(: cnet_isa_79b2ad8225 (IsA dermatoglyphic life_science) (STV 1.0 0.9091)) +(: cnet_isa_80bf9f44f7 (IsA dermatologist specialist) (STV 1.0 0.9091)) +(: cnet_isa_07e673c2ae (IsA dermatology medicine) (STV 1.0 0.9091)) +(: cnet_isa_7547c0817d (IsA dermatome surgical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_0434090f4d (IsA dermatomycosis fungal_infection) (STV 1.0 0.9091)) +(: cnet_isa_76c84040e3 (IsA dermatomyositis myositis) (STV 1.0 0.9091)) +(: cnet_isa_26c7527fb5 (IsA dermatosis skin_disease) (STV 1.0 0.9091)) +(: cnet_isa_407e75d197 (IsA dermestidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_345134039d (IsA dermis stratum) (STV 1.0 0.9091)) +(: cnet_isa_45655801f8 (IsA dermochelyidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_bd35bb40ed (IsA dermochely reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_667535c49a (IsA dermoid_cyst cyst) (STV 1.0 0.9091)) +(: cnet_isa_93bcccb1a6 (IsA dermoptera animal_order) (STV 1.0 0.9091)) +(: cnet_isa_f4ef309418 (IsA derogation abrogation) (STV 1.0 0.9091)) +(: cnet_isa_dab251befb (IsA derrick crane) (STV 1.0 0.9091)) +(: cnet_isa_a29d15a454 (IsA derrick framework) (STV 1.0 0.9091)) +(: cnet_isa_493f3aaaa2 (IsA derring_do deed) (STV 1.0 0.9091)) +(: cnet_isa_8c8d2d4de7 (IsA derringer pistol) (STV 1.0 0.9091)) +(: cnet_isa_952f2194c0 (IsA derris shrub) (STV 1.0 0.9091)) +(: cnet_isa_46351bb49f (IsA derris_root vine) (STV 1.0 0.9091)) +(: cnet_isa_de5efbc994 (IsA derv diesel_oil) (STV 1.0 0.9091)) +(: cnet_isa_3fbda68104 (IsA dervish fakir) (STV 1.0 0.9091)) +(: cnet_isa_6d04b6940a (IsA desalination chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_3020bd3502 (IsA descant accompaniment) (STV 1.0 0.9091)) +(: cnet_isa_69b01b2852 (IsA descendant relative) (STV 1.0 0.9091)) +(: cnet_isa_f53540daff (IsA descendant biological_group) (STV 1.0 0.9091)) +(: cnet_isa_d875453e99 (IsA descender letter) (STV 1.0 0.9091)) +(: cnet_isa_7b78aadd0f (IsA descender mover) (STV 1.0 0.9091)) +(: cnet_isa_289771408c (IsA descender line) (STV 1.0 0.9091)) +(: cnet_isa_3e2ff81099 (IsA descending_aorta aorta) (STV 1.0 0.9091)) +(: cnet_isa_8148d7cb59 (IsA descending_colon colon) (STV 1.0 0.9091)) +(: cnet_isa_3846bda74f (IsA descending_node node) (STV 1.0 0.9091)) +(: cnet_isa_445f8524f7 (IsA descent motion) (STV 1.0 0.9091)) +(: cnet_isa_bc1c334091 (IsA descent change_of_location) (STV 1.0 0.9091)) +(: cnet_isa_5fb23c7212 (IsA descent kinship) (STV 1.0 0.9091)) +(: cnet_isa_1c87e85f5e (IsA descent slope) (STV 1.0 0.9091)) +(: cnet_isa_a9c8d7d1ab (IsA description kind) (STV 1.0 0.9091)) +(: cnet_isa_358edab671 (IsA description speech_act) (STV 1.0 0.9091)) +(: cnet_isa_f99fcffcb5 (IsA description statement) (STV 1.0 0.9091)) +(: cnet_isa_e2793f9f4e (IsA descriptive_adjective adjective) (STV 1.0 0.9091)) +(: cnet_isa_728d9ca3cb (IsA descriptive_grammar grammar) (STV 1.0 0.9091)) +(: cnet_isa_30fef48655 (IsA descriptivism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_fee6bf5c28 (IsA descriptor information) (STV 1.0 0.9091)) +(: cnet_isa_9edeb79149 (IsA descurainia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d6a9d7ce3c (IsA desensitization decrease) (STV 1.0 0.9091)) +(: cnet_isa_99c6a6d9b1 (IsA desensitization_technique behavior_therapy) (STV 1.0 0.9091)) +(: cnet_isa_b665b19fef (IsA desert place) (STV 1.0 0.9091)) +(: cnet_isa_6d3713bf8f (IsA desert terrain) (STV 1.0 0.9636)) +(: cnet_isa_bb15a55bea (IsA desert deservingness) (STV 1.0 0.9091)) +(: cnet_isa_b96c96ca10 (IsA desert biome) (STV 1.0 0.9091)) +(: cnet_isa_3072d52e0c (IsA desert tract) (STV 1.0 0.9091)) +(: cnet_isa_f90dcd1cf9 (IsA desert_four_o_clock four_o_clock) (STV 1.0 0.9091)) +(: cnet_isa_4cb18ffd7c (IsA desert_holly saltbush) (STV 1.0 0.9091)) +(: cnet_isa_a4289cf248 (IsA desert_iguana iguanid) (STV 1.0 0.9091)) +(: cnet_isa_7f3d12b0e8 (IsA desert_mariposa_tulip mariposa) (STV 1.0 0.9091)) +(: cnet_isa_cb13c17000 (IsA desert_paintbrush indian_paintbrush) (STV 1.0 0.9091)) +(: cnet_isa_c987320456 (IsA desert_pea glory_pea) (STV 1.0 0.9091)) +(: cnet_isa_fe4f40609e (IsA desert_plant vascular_plant) (STV 1.0 0.9091)) +(: cnet_isa_9aa3d17aa3 (IsA desert_plume subshrub) (STV 1.0 0.9091)) +(: cnet_isa_2272b1da67 (IsA desert_sand_verbena sand_verbena) (STV 1.0 0.9091)) +(: cnet_isa_a00f288f46 (IsA desert_selaginella spikemoss) (STV 1.0 0.9091)) +(: cnet_isa_ca8ed27324 (IsA desert_soil soil) (STV 1.0 0.9091)) +(: cnet_isa_a261aea5bc (IsA desert_sunflower wildflower) (STV 1.0 0.9091)) +(: cnet_isa_9c5d9921f4 (IsA desert_tortoise tortoise) (STV 1.0 0.9091)) +(: cnet_isa_a4c7e9731c (IsA desert_willow shrub) (STV 1.0 0.9091)) +(: cnet_isa_e6f6f34d22 (IsA deserter wrongdoer) (STV 1.0 0.9091)) +(: cnet_isa_c167ba42a4 (IsA deserter quitter) (STV 1.0 0.9091)) +(: cnet_isa_c1d5a70b8a (IsA desertification geological_process) (STV 1.0 0.9091)) +(: cnet_isa_88195a58fd (IsA desertion withdrawal) (STV 1.0 0.9091)) +(: cnet_isa_49b506a7f2 (IsA desert consequence) (STV 1.0 0.9091)) +(: cnet_isa_c4a74462d8 (IsA deservingness worthiness) (STV 1.0 0.9091)) +(: cnet_isa_2235beccfd (IsA desiccant chemical_agent) (STV 1.0 0.9091)) +(: cnet_isa_313d8b3e9c (IsA desideratum necessity) (STV 1.0 0.9091)) +(: cnet_isa_1e9e074580 (IsA design creating_by_mental_act) (STV 1.0 0.9091)) +(: cnet_isa_32e18981f6 (IsA design decoration) (STV 1.0 0.9091)) +(: cnet_isa_a8c6f21038 (IsA design sketch) (STV 1.0 0.9091)) +(: cnet_isa_2eeafb9fed (IsA design arrangement) (STV 1.0 0.9091)) +(: cnet_isa_e38b2d81cb (IsA design_criteria criterion) (STV 1.0 0.9091)) +(: cnet_isa_2d13b8593d (IsA designated_driver driver) (STV 1.0 0.9091)) +(: cnet_isa_f29243a4d9 (IsA designated_hitter batter) (STV 1.0 0.9091)) +(: cnet_isa_6a1654c632 (IsA designation determination) (STV 1.0 0.9091)) +(: cnet_isa_d57bcdac4c (IsA designatum referent) (STV 1.0 0.9091)) +(: cnet_isa_2580c135d8 (IsA designer planner) (STV 1.0 0.9091)) +(: cnet_isa_e9b4a6fae8 (IsA designer_drug psychoactive_drug) (STV 1.0 0.9091)) +(: cnet_isa_176abbfd65 (IsA desipramine tricyclic) (STV 1.0 0.9091)) +(: cnet_isa_55310665a7 (IsA desirability good) (STV 1.0 0.9091)) +(: cnet_isa_b2b8ae88f6 (IsA desire tendency) (STV 1.0 0.9091)) +(: cnet_isa_8030946e59 (IsA desire feeling) (STV 1.0 0.9091)) +(: cnet_isa_13807dd936 (IsA desire arousal) (STV 1.0 0.9091)) +(: cnet_isa_abc485ad97 (IsA desire_to_know curiosity) (STV 1.0 0.9091)) +(: cnet_isa_f197ed4b00 (IsA desk furniture) (STV 1.0 0.9572)) +(: cnet_isa_260aaac3da (IsA desk table) (STV 1.0 0.9339)) +(: cnet_isa_2d76de90cf (IsA desk_clerk clerk) (STV 1.0 0.9091)) +(: cnet_isa_c614925f10 (IsA desk_dictionary dictionary) (STV 1.0 0.9091)) +(: cnet_isa_c6613b206d (IsA desk_officer military_officer) (STV 1.0 0.9091)) +(: cnet_isa_7723f919ba (IsA desk_phone telephone) (STV 1.0 0.9091)) +(: cnet_isa_c4d578fab8 (IsA desk_sergeant police_sergeant) (STV 1.0 0.9091)) +(: cnet_isa_aeb611e2f8 (IsA desktop top) (STV 1.0 0.9091)) +(: cnet_isa_0618645018 (IsA desktop_computer personal_computer) (STV 1.0 0.9091)) +(: cnet_isa_ca03195b3a (IsA desktop_publishing publication) (STV 1.0 0.9091)) +(: cnet_isa_c9c0819a53 (IsA desmanthus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_40798b5a66 (IsA desmid green_algae) (STV 1.0 0.9091)) +(: cnet_isa_b9d02ad02e (IsA desmidiaceae protoctist_family) (STV 1.0 0.9091)) +(: cnet_isa_ebf8610bdf (IsA desmidium protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_2b055bc394 (IsA desmodium rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7bed64b8d7 (IsA desmodontidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_f7b69a7616 (IsA desmodus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_b24e677aa9 (IsA desmodus_rotundus vampire_bat) (STV 1.0 0.9091)) +(: cnet_isa_4c9a67c374 (IsA desmograthus amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_659cd62d01 (IsA desorption natural_process) (STV 1.0 0.9091)) +(: cnet_isa_2145da5f8e (IsA despair feeling) (STV 1.0 0.9091)) +(: cnet_isa_68ebb26d43 (IsA despair condition) (STV 1.0 0.9091)) +(: cnet_isa_270c2420f0 (IsA desperado criminal) (STV 1.0 0.9091)) +(: cnet_isa_d1172d495e (IsA desperate unfortunate) (STV 1.0 0.9091)) +(: cnet_isa_393a7c961d (IsA desperate_measure mean) (STV 1.0 0.9091)) +(: cnet_isa_96ba3b5c3a (IsA desperate_strait pass) (STV 1.0 0.9091)) +(: cnet_isa_335619db63 (IsA desperation recklessness) (STV 1.0 0.9091)) +(: cnet_isa_5b31db3612 (IsA despisal hate) (STV 1.0 0.9091)) +(: cnet_isa_eefc8828fe (IsA despite disregard) (STV 1.0 0.9091)) +(: cnet_isa_380f7ede8f (IsA despondency depression) (STV 1.0 0.9091)) +(: cnet_isa_958ba608a8 (IsA desquamation organic_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_c39f02ade3 (IsA dessert course) (STV 1.0 0.9091)) +(: cnet_isa_b8655e8d57 (IsA dessert_plate plate) (STV 1.0 0.9091)) +(: cnet_isa_4a0beb7f52 (IsA dessert_spoon spoon) (STV 1.0 0.9091)) +(: cnet_isa_e9c75ba81b (IsA dessert_wine wine) (STV 1.0 0.9091)) +(: cnet_isa_147b73762e (IsA dessertspoon containerful) (STV 1.0 0.9091)) +(: cnet_isa_06ec3ea1ba (IsA dessiatine area_unit) (STV 1.0 0.9091)) +(: cnet_isa_0e51580655 (IsA destabilization change) (STV 1.0 0.9091)) +(: cnet_isa_6c8f613b98 (IsA destabilization action) (STV 1.0 0.9091)) +(: cnet_isa_3239fc88f4 (IsA destalinization social_process) (STV 1.0 0.9091)) +(: cnet_isa_c9a9594b05 (IsA destination goal) (STV 1.0 0.9091)) +(: cnet_isa_288bf8dc49 (IsA destiny happening) (STV 1.0 0.9091)) +(: cnet_isa_c830ee06a8 (IsA destitution poverty) (STV 1.0 0.9091)) +(: cnet_isa_513051a2b9 (IsA destroyer warship) (STV 1.0 0.9091)) +(: cnet_isa_8b2641cdbd (IsA destroyer bad_person) (STV 1.0 0.9091)) +(: cnet_isa_c44174c54e (IsA destroyer_escort warship) (STV 1.0 0.9091)) +(: cnet_isa_b52de3544d (IsA destroying_angel agaric) (STV 1.0 0.9091)) +(: cnet_isa_339baf3e06 (IsA destructibility vulnerability) (STV 1.0 0.9091)) +(: cnet_isa_302830138d (IsA destruction termination) (STV 1.0 0.9091)) +(: cnet_isa_a0571cc3f3 (IsA destruction ending) (STV 1.0 0.9091)) +(: cnet_isa_5cc257c23b (IsA destruction_fire fire) (STV 1.0 0.9091)) +(: cnet_isa_10323b816c (IsA destructive_distillation fractionation) (STV 1.0 0.9091)) +(: cnet_isa_4217b30d32 (IsA destructiveness quality) (STV 1.0 0.9091)) +(: cnet_isa_c9a252bc07 (IsA desuetude inaction) (STV 1.0 0.9091)) +(: cnet_isa_fa757d2cd1 (IsA detached_house house) (STV 1.0 0.9091)) +(: cnet_isa_d1a1d8b80f (IsA detachment separation) (STV 1.0 0.9091)) +(: cnet_isa_fb9b1380e6 (IsA detachment army_unit) (STV 1.0 0.9091)) +(: cnet_isa_f0032b2b91 (IsA detail fact) (STV 1.0 0.9091)) +(: cnet_isa_c5c295ba6c (IsA detail discussion) (STV 1.0 0.9091)) +(: cnet_isa_43b70e0c50 (IsA detail gang) (STV 1.0 0.9091)) +(: cnet_isa_53601e1f7d (IsA detail part) (STV 1.0 0.9091)) +(: cnet_isa_a29c958c36 (IsA detail information) (STV 1.0 0.9091)) +(: cnet_isa_a8322af7d3 (IsA detainee prisoner) (STV 1.0 0.9091)) +(: cnet_isa_7c2642b0f5 (IsA detection discovery) (STV 1.0 0.9091)) +(: cnet_isa_f2cd6027dc (IsA detection police_work) (STV 1.0 0.9091)) +(: cnet_isa_c2dd61c7ec (IsA detection perception) (STV 1.0 0.9091)) +(: cnet_isa_a98655edd2 (IsA detective investigator) (STV 1.0 0.9091)) +(: cnet_isa_378dd76003 (IsA detective policeman) (STV 1.0 0.9091)) +(: cnet_isa_8916bac499 (IsA detective_agency agency) (STV 1.0 0.9091)) +(: cnet_isa_cbf2e7df20 (IsA detective_novel novel) (STV 1.0 0.9091)) +(: cnet_isa_6691047fa6 (IsA detective_story mystery) (STV 1.0 0.9091)) +(: cnet_isa_fa9eadd400 (IsA detector device) (STV 1.0 0.9091)) +(: cnet_isa_fbb608c8af (IsA detector electronic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_d5ef4e3215 (IsA detector rectifier) (STV 1.0 0.9091)) +(: cnet_isa_cba61315cd (IsA detente easing) (STV 1.0 0.9091)) +(: cnet_isa_7c9d019175 (IsA detention punishment) (STV 1.0 0.9091)) +(: cnet_isa_b76b9c0e6d (IsA detention confinement) (STV 1.0 0.9091)) +(: cnet_isa_dc45a08edb (IsA detention_basin catchment_area) (STV 1.0 0.9091)) +(: cnet_isa_dbd62c4f72 (IsA detention_home correctional_institution) (STV 1.0 0.9091)) +(: cnet_isa_ed580ec7e0 (IsA detergency utility) (STV 1.0 0.9091)) +(: cnet_isa_c02bffb936 (IsA detergent cleansing_agent) (STV 1.0 0.9091)) +(: cnet_isa_81a16bb8f2 (IsA detergent wetting_agent) (STV 1.0 0.9091)) +(: cnet_isa_c21578c623 (IsA deterioration decline) (STV 1.0 0.9091)) +(: cnet_isa_2ba5ba61f9 (IsA deterioration decay) (STV 1.0 0.9091)) +(: cnet_isa_db012f0c2d (IsA determent discouragement) (STV 1.0 0.9091)) +(: cnet_isa_17427e0d5a (IsA determinant cognitive_factor) (STV 1.0 0.9091)) +(: cnet_isa_5c0781e4ff (IsA determinant square_matrix) (STV 1.0 0.9091)) +(: cnet_isa_f71493379e (IsA determinateness predictability) (STV 1.0 0.9091)) +(: cnet_isa_e2ff75b2bd (IsA determination discovery) (STV 1.0 0.9091)) +(: cnet_isa_9a21fd91ed (IsA determination resoluteness) (STV 1.0 0.9091)) +(: cnet_isa_1571c2e19f (IsA determination decision_making) (STV 1.0 0.9091)) +(: cnet_isa_0db5654cdc (IsA determiner function_word) (STV 1.0 0.9091)) +(: cnet_isa_af2b8dc8a9 (IsA determinism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_ddfa8c2dd4 (IsA deterrence hindrance) (STV 1.0 0.9091)) +(: cnet_isa_734d5c6dc6 (IsA detonating_fuse fuse) (STV 1.0 0.9091)) +(: cnet_isa_2eacb40c8e (IsA detonation explosion) (STV 1.0 0.9091)) +(: cnet_isa_a25f955763 (IsA detonator explosive_device) (STV 1.0 0.9091)) +(: cnet_isa_e6302f58c1 (IsA detour road) (STV 1.0 0.9091)) +(: cnet_isa_771cd7b5c4 (IsA detox ward) (STV 1.0 0.9091)) +(: cnet_isa_e1db1060a2 (IsA detoxification medical_care) (STV 1.0 0.9091)) +(: cnet_isa_5927eab1e9 (IsA detoxification treatment) (STV 1.0 0.9091)) +(: cnet_isa_7b3a735645 (IsA detraction disparagement) (STV 1.0 0.9091)) +(: cnet_isa_53aad1c291 (IsA detractor cynic) (STV 1.0 0.9091)) +(: cnet_isa_400a614ca2 (IsA detribalization disunion) (STV 1.0 0.9091)) +(: cnet_isa_970f6a0d46 (IsA detribalization social_control) (STV 1.0 0.9091)) +(: cnet_isa_9f9d884934 (IsA detriment damage) (STV 1.0 0.9091)) +(: cnet_isa_f0aea210e8 (IsA detritus material) (STV 1.0 0.9091)) +(: cnet_isa_c5a53741a2 (IsA detumescence decline) (STV 1.0 0.9091)) +(: cnet_isa_088f1a5a7d (IsA deuce playing_card) (STV 1.0 0.9091)) +(: cnet_isa_cc549d05c5 (IsA deuce tie) (STV 1.0 0.9091)) +(: cnet_isa_c973059078 (IsA deus_ex_machina causal_agent) (STV 1.0 0.9091)) +(: cnet_isa_be0a260a06 (IsA deuteranopia red_green_dichromacy) (STV 1.0 0.9091)) +(: cnet_isa_293fcd8cc3 (IsA deuterium hydrogen_atom) (STV 1.0 0.9091)) +(: cnet_isa_126357c1be (IsA deuterium isotope) (STV 1.0 0.9091)) +(: cnet_isa_c7b4ee1b4f (IsA deuteromycete class) (STV 1.0 0.9091)) +(: cnet_isa_57182ea70f (IsA deuteromycota division) (STV 1.0 0.9091)) +(: cnet_isa_dcc5c6c254 (IsA deuteron particle) (STV 1.0 0.9091)) +(: cnet_isa_a3d0c80da9 (IsA deutzia hydrangea) (STV 1.0 0.9091)) +(: cnet_isa_c38eb3226e (IsA devaluation decrease) (STV 1.0 0.9091)) +(: cnet_isa_fa6ffdee28 (IsA devaluation regulation) (STV 1.0 0.9091)) +(: cnet_isa_66b362f093 (IsA devanagari script) (STV 1.0 0.9091)) +(: cnet_isa_da58466895 (IsA devanagari syllabary) (STV 1.0 0.9091)) +(: cnet_isa_9bf931ab86 (IsA devastation ruin) (STV 1.0 0.9091)) +(: cnet_isa_f4724fb39c (IsA devastation feeling) (STV 1.0 0.9091)) +(: cnet_isa_a2a677aa79 (IsA devastation deterioration) (STV 1.0 0.9091)) +(: cnet_isa_f2abb44e14 (IsA developer programmer) (STV 1.0 0.9091)) +(: cnet_isa_55885360d6 (IsA developer photographic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_756cce00fd (IsA developer creator) (STV 1.0 0.9091)) +(: cnet_isa_86804ca51f (IsA developing_country state) (STV 1.0 0.9091)) +(: cnet_isa_0240e7d286 (IsA development improvement) (STV 1.0 0.9091)) +(: cnet_isa_c69db777c4 (IsA development change) (STV 1.0 0.9091)) +(: cnet_isa_9bcc829b82 (IsA development district) (STV 1.0 0.9091)) +(: cnet_isa_0ce38113f2 (IsA development section) (STV 1.0 0.9091)) +(: cnet_isa_4688a57465 (IsA development process) (STV 1.0 0.9091)) +(: cnet_isa_7bda2d6a97 (IsA development processing) (STV 1.0 0.9091)) +(: cnet_isa_9d25ecfe95 (IsA developmental_age age) (STV 1.0 0.9091)) +(: cnet_isa_c1e7dcbb4b (IsA developmental_anatomy anatomy) (STV 1.0 0.9091)) +(: cnet_isa_98b7f370e0 (IsA developmental_learning learning) (STV 1.0 0.9091)) +(: cnet_isa_0fc1c05667 (IsA developmental_psychology psychology) (STV 1.0 0.9091)) +(: cnet_isa_e9f8d8d024 (IsA deviated_nasal_septum deviated_septum) (STV 1.0 0.9091)) +(: cnet_isa_6379f2091f (IsA deviated_septum abnormality) (STV 1.0 0.9091)) +(: cnet_isa_25056b8cc8 (IsA deviation abnormality) (STV 1.0 0.9091)) +(: cnet_isa_f6affd340b (IsA deviation erroneousness) (STV 1.0 0.9091)) +(: cnet_isa_e684651782 (IsA deviation variation) (STV 1.0 0.9091)) +(: cnet_isa_0b5ec7273d (IsA deviation statistic) (STV 1.0 0.9091)) +(: cnet_isa_c47e5a502f (IsA deviationism desertion) (STV 1.0 0.9091)) +(: cnet_isa_87df98a903 (IsA deviationist deserter) (STV 1.0 0.9091)) +(: cnet_isa_8454633838 (IsA device maneuver) (STV 1.0 0.9091)) +(: cnet_isa_d8e44bf51a (IsA device design) (STV 1.0 0.9091)) +(: cnet_isa_f95e45369b (IsA device instrumentality) (STV 1.0 0.9091)) +(: cnet_isa_8620064164 (IsA device expressive_style) (STV 1.0 0.9091)) +(: cnet_isa_ef9f52603c (IsA device emblem) (STV 1.0 0.9091)) +(: cnet_isa_1def00b276 (IsA device inclination) (STV 1.0 0.9091)) +(: cnet_isa_30e1cfc941 (IsA devil_s_advocate debater) (STV 1.0 0.9091)) +(: cnet_isa_a7fbb52929 (IsA devil_s_cigar sarcosomataceae) (STV 1.0 0.9091)) +(: cnet_isa_21e351e63f (IsA devil_s_food chocolate_cake) (STV 1.0 0.9091)) +(: cnet_isa_aaf300e90a (IsA devil_s_tongue arum) (STV 1.0 0.9091)) +(: cnet_isa_0ffd6b0944 (IsA devil_s_urn sarcosomataceae) (STV 1.0 0.9091)) +(: cnet_isa_d5743ce93b (IsA devil trouble) (STV 1.0 0.9091)) +(: cnet_isa_c3002168b2 (IsA devil exclamation) (STV 1.0 0.9091)) +(: cnet_isa_da077ff05a (IsA devil evil_spirit) (STV 1.0 0.9091)) +(: cnet_isa_f1d97510bb (IsA devil_ray manta) (STV 1.0 0.9091)) +(: cnet_isa_eb0566deb4 (IsA devil_worshiper believer) (STV 1.0 0.9091)) +(: cnet_isa_55ea9375f6 (IsA deviled_egg dish) (STV 1.0 0.9091)) +(: cnet_isa_9c1826b894 (IsA deviltry evil) (STV 1.0 0.9091)) +(: cnet_isa_8fad0eb017 (IsA devilwood tree) (STV 1.0 0.9091)) +(: cnet_isa_1af0f79be9 (IsA deviousness indirectness) (STV 1.0 0.9091)) +(: cnet_isa_1e8cc472de (IsA devisal invention) (STV 1.0 0.9091)) +(: cnet_isa_88cebf6a9b (IsA devise gift) (STV 1.0 0.9091)) +(: cnet_isa_85aa7ae305 (IsA devise inheritance) (STV 1.0 0.9091)) +(: cnet_isa_e914d3960b (IsA devise will) (STV 1.0 0.9091)) +(: cnet_isa_958cef895a (IsA devisee beneficiary) (STV 1.0 0.9091)) +(: cnet_isa_a7cc2aea58 (IsA devising production) (STV 1.0 0.9091)) +(: cnet_isa_d7ea525cd4 (IsA devisor testator) (STV 1.0 0.9091)) +(: cnet_isa_465685274d (IsA devitalization decrease) (STV 1.0 0.9091)) +(: cnet_isa_fb5ddbdc56 (IsA devoir politeness) (STV 1.0 0.9091)) +(: cnet_isa_beef3d9fc2 (IsA devolution delegating) (STV 1.0 0.9091)) +(: cnet_isa_b8f6733c7d (IsA devon cattle) (STV 1.0 0.9091)) +(: cnet_isa_0c5182a22e (IsA devotion commitment) (STV 1.0 0.9091)) +(: cnet_isa_314d7ebe31 (IsA devotion prayer) (STV 1.0 0.9091)) +(: cnet_isa_b7a2779082 (IsA devotion love) (STV 1.0 0.9091)) +(: cnet_isa_5b82554409 (IsA devotional service) (STV 1.0 0.9091)) +(: cnet_isa_d956f45f5a (IsA devourer eater) (STV 1.0 0.9091)) +(: cnet_isa_b89ce4f7fd (IsA devoutness piety) (STV 1.0 0.9091)) +(: cnet_isa_7b6172b8ff (IsA dew condensation) (STV 1.0 0.9091)) +(: cnet_isa_c42009e24c (IsA dew_point saturation_point) (STV 1.0 0.9091)) +(: cnet_isa_85e8d34255 (IsA dew_point temperature) (STV 1.0 0.9091)) +(: cnet_isa_e9c47e6d10 (IsA dewar_flask vacuum_flask) (STV 1.0 0.9091)) +(: cnet_isa_917ab15ffb (IsA dewberry berry) (STV 1.0 0.9091)) +(: cnet_isa_d1c952aeb0 (IsA dewberry blackberry) (STV 1.0 0.9091)) +(: cnet_isa_feccefcf27 (IsA dewdrop drop) (STV 1.0 0.9091)) +(: cnet_isa_d14df0e1c2 (IsA dewey_decimal_classification classification_system) (STV 1.0 0.9091)) +(: cnet_isa_f48a04795c (IsA dewlap skin) (STV 1.0 0.9091)) +(: cnet_isa_6c4988fac3 (IsA dexterity adeptness) (STV 1.0 0.9091)) +(: cnet_isa_795be288a0 (IsA dextrin polysaccharide) (STV 1.0 0.9091)) +(: cnet_isa_273fb7098c (IsA dextrocardia abnormality) (STV 1.0 0.9091)) +(: cnet_isa_63831021f3 (IsA dextrorotation rotation) (STV 1.0 0.9091)) +(: cnet_isa_bbaf3b2e3e (IsA dextrose glucose) (STV 1.0 0.9091)) +(: cnet_isa_17e6eda20b (IsA dhak tree) (STV 1.0 0.9091)) +(: cnet_isa_3ac3338376 (IsA dharma hindu_deity) (STV 1.0 0.9091)) +(: cnet_isa_043f2dfbaa (IsA dhawa tree) (STV 1.0 0.9091)) +(: cnet_isa_12efd814d5 (IsA dhegiha siouan) (STV 1.0 0.9091)) +(: cnet_isa_325b358086 (IsA dhobi_itch tinea) (STV 1.0 0.9091)) +(: cnet_isa_3dfe4a3592 (IsA dhole wild_dog) (STV 1.0 0.9091)) +(: cnet_isa_6f3cd37713 (IsA dhoti breechcloth) (STV 1.0 0.9091)) +(: cnet_isa_e91644f69f (IsA dhow sailing_vessel) (STV 1.0 0.9091)) +(: cnet_isa_4568dd7825 (IsA dhu_l_hijja islamic_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_351b1e4215 (IsA dhu_l_qa_dah islamic_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_ab0ebaad98 (IsA di_iodotyrosine iodotyrosine) (STV 1.0 0.9091)) +(: cnet_isa_e548737507 (IsA diabete disease) (STV 1.0 0.9091)) +(: cnet_isa_916c173d4d (IsA diabete polygenic_disorder) (STV 1.0 0.9091)) +(: cnet_isa_a4e10faf36 (IsA diabete_insipidus diabete) (STV 1.0 0.9091)) +(: cnet_isa_3bf347d102 (IsA diabete_mellitus diabete) (STV 1.0 0.9091)) +(: cnet_isa_1886e54fe4 (IsA diabetic sick_person) (STV 1.0 0.9091)) +(: cnet_isa_db9b4b6f92 (IsA diabetic_coma coma) (STV 1.0 0.9091)) +(: cnet_isa_8878d562f1 (IsA diabetic_diet diet) (STV 1.0 0.9091)) +(: cnet_isa_b0428bca45 (IsA diabetic_retinopathy retinopathy) (STV 1.0 0.9091)) +(: cnet_isa_f3ab01cfb4 (IsA diabolatry worship) (STV 1.0 0.9091)) +(: cnet_isa_58b9357d15 (IsA diabolism sorcery) (STV 1.0 0.9091)) +(: cnet_isa_89d52b603f (IsA diabolist devil_worshiper) (STV 1.0 0.9091)) +(: cnet_isa_c61ed0eb1a (IsA diabolist disciple) (STV 1.0 0.9091)) +(: cnet_isa_3e7e6861b9 (IsA diacalpa fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_baf23bbe2f (IsA diacritical_mark mark) (STV 1.0 0.9091)) +(: cnet_isa_1ec3660532 (IsA diadophis reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_d634b64a83 (IsA diagnosis designation) (STV 1.0 0.9091)) +(: cnet_isa_5c57e007e3 (IsA diagnosis_of_atherosclerosis medical_diagnosis) (STV 1.0 0.9091)) +(: cnet_isa_0aa2e6c9de (IsA diagnostic_procedure procedure) (STV 1.0 0.9091)) +(: cnet_isa_0418809a6a (IsA diagnostic_program utility_program) (STV 1.0 0.9091)) +(: cnet_isa_86d3107a7f (IsA diagnostic_test assay) (STV 1.0 0.9091)) +(: cnet_isa_796bdeb709 (IsA diagnostician specialist) (STV 1.0 0.9091)) +(: cnet_isa_14928274a3 (IsA diagonal straight_line) (STV 1.0 0.9091)) +(: cnet_isa_60908452d2 (IsA diagonal line) (STV 1.0 0.9091)) +(: cnet_isa_80dcbcd9e4 (IsA diagonal set) (STV 1.0 0.9091)) +(: cnet_isa_2a0810f148 (IsA diagonal_matrix square_matrix) (STV 1.0 0.9091)) +(: cnet_isa_05b9dfdfa0 (IsA diagonalization resolution) (STV 1.0 0.9091)) +(: cnet_isa_ed4c6e90b4 (IsA diagram drawing) (STV 1.0 0.9091)) +(: cnet_isa_545b4d20a8 (IsA diakinesis phase) (STV 1.0 0.9091)) +(: cnet_isa_947490e30e (IsA dial control) (STV 1.0 0.9091)) +(: cnet_isa_6079a8d067 (IsA dial face) (STV 1.0 0.9091)) +(: cnet_isa_3fabedb783 (IsA dial indicator) (STV 1.0 0.9091)) +(: cnet_isa_04df186040 (IsA dial selector) (STV 1.0 0.9091)) +(: cnet_isa_a7ec597dca (IsA dial_telephone telephone) (STV 1.0 0.9091)) +(: cnet_isa_916a09b50e (IsA dialect non_standard_speech) (STV 1.0 0.9091)) +(: cnet_isa_05f95be0cd (IsA dialect_atla atla) (STV 1.0 0.9091)) +(: cnet_isa_55696de5d9 (IsA dialect_geography linguistic) (STV 1.0 0.9091)) +(: cnet_isa_b37b1346fa (IsA dialectic philosophy) (STV 1.0 0.9091)) +(: cnet_isa_3830f3c1fc (IsA dialectic contradiction) (STV 1.0 0.9091)) +(: cnet_isa_af08525409 (IsA dialectical_materialism materialism) (STV 1.0 0.9091)) +(: cnet_isa_19550328c3 (IsA dialectician logician) (STV 1.0 0.9091)) +(: cnet_isa_e7a422c3bf (IsA dialectic rationale) (STV 1.0 0.9091)) +(: cnet_isa_951117324d (IsA dialectology linguistic) (STV 1.0 0.9091)) +(: cnet_isa_92f8be5694 (IsA dialeurode arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_e0f8fa40c3 (IsA dialog_box window) (STV 1.0 0.9091)) +(: cnet_isa_e575bf1013 (IsA dialogue literary_composition) (STV 1.0 0.9091)) +(: cnet_isa_7ac9204077 (IsA dialogue script) (STV 1.0 0.9091)) +(: cnet_isa_ef8b7f2f19 (IsA dialogue talk) (STV 1.0 0.9091)) +(: cnet_isa_ce9c41a74b (IsA dialysis chemical_analysis) (STV 1.0 0.9091)) +(: cnet_isa_e35dc052d1 (IsA dialyzer medical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_146e69552e (IsA diamagnet material) (STV 1.0 0.9091)) +(: cnet_isa_22b4e510ef (IsA diamagnetism magnetism) (STV 1.0 0.9091)) +(: cnet_isa_e50d4d5d6e (IsA diamante fabric) (STV 1.0 0.9091)) +(: cnet_isa_23c5959df8 (IsA diameter length) (STV 1.0 0.9091)) +(: cnet_isa_15447af869 (IsA diameter straight_line) (STV 1.0 0.9091)) +(: cnet_isa_0a75a14605 (IsA diamine organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_4b3659d260 (IsA diamond expensive_stone) (STV 1.0 0.9091)) +(: cnet_isa_a9df0c159f (IsA diamond forever) (STV 1.0 0.9091)) +(: cnet_isa_77df8a51e4 (IsA diamond girl_s_best_friend) (STV 1.0 0.9091)) +(: cnet_isa_944e3c520e (IsA diamond jewel) (STV 1.0 0.9091)) +(: cnet_isa_937745ef87 (IsA diamond precious_stone) (STV 1.0 0.9339)) +(: cnet_isa_ed2552365e (IsA diamond stone) (STV 1.0 0.9091)) +(: cnet_isa_13dd7a11a7 (IsA diamond playing_card) (STV 1.0 0.9091)) +(: cnet_isa_c7480eeda0 (IsA diamond carbon) (STV 1.0 0.9091)) +(: cnet_isa_ef8e044dd5 (IsA diamond transparent_gem) (STV 1.0 0.9091)) +(: cnet_isa_187380447f (IsA diamond_jubilee jubilee) (STV 1.0 0.9091)) +(: cnet_isa_9dd1f777e3 (IsA diamond_point point) (STV 1.0 0.9091)) +(: cnet_isa_64f8059448 (IsA diamond_wedding_anniversary wedding_anniversary) (STV 1.0 0.9091)) +(: cnet_isa_5cf393f318 (IsA diamondback rattlesnake) (STV 1.0 0.9091)) +(: cnet_isa_24bfbc8ca3 (IsA diamondback_terrapin terrapin) (STV 1.0 0.9091)) +(: cnet_isa_aa55e47180 (IsA dianthus caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b42d1f1278 (IsA diapason organ_stop) (STV 1.0 0.9091)) +(: cnet_isa_5e15597cea (IsA diapedesis organic_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_760ff60643 (IsA diapensia subshrub) (STV 1.0 0.9091)) +(: cnet_isa_40cc7e30c3 (IsA diapensiaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_f25c7f116c (IsA diapensiale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_f90f482c36 (IsA diaper fabric) (STV 1.0 0.9091)) +(: cnet_isa_38be929e83 (IsA diaper garment) (STV 1.0 0.9091)) +(: cnet_isa_fab15104c8 (IsA diaper_rash dermatitis) (STV 1.0 0.9091)) +(: cnet_isa_c468c852b2 (IsA diapheromera walking_stick) (STV 1.0 0.9091)) +(: cnet_isa_2eca01b9ec (IsA diaphone foghorn) (STV 1.0 0.9091)) +(: cnet_isa_84938bc656 (IsA diaphoretic medicine) (STV 1.0 0.9091)) +(: cnet_isa_62c9ac8a79 (IsA diaphragm membrane) (STV 1.0 0.9091)) +(: cnet_isa_7e6c490bf0 (IsA diaphragm muscular_structure) (STV 1.0 0.9091)) +(: cnet_isa_1165c77beb (IsA diaphragm contraceptive) (STV 1.0 0.9091)) +(: cnet_isa_3d897c918e (IsA diaphragm disk) (STV 1.0 0.9091)) +(: cnet_isa_f727e2889e (IsA diaphragm mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_04cd62330e (IsA diaphysis long_bone) (STV 1.0 0.9091)) +(: cnet_isa_22ed30a59a (IsA diapir geological_formation) (STV 1.0 0.9091)) +(: cnet_isa_d996e58e51 (IsA diapsid reptile) (STV 1.0 0.9091)) +(: cnet_isa_a7bcdc706f (IsA diapsida reptile) (STV 1.0 0.9091)) +(: cnet_isa_8fdc13c996 (IsA diarchy political_system) (STV 1.0 0.9091)) +(: cnet_isa_d5efdc7919 (IsA diarist writer) (STV 1.0 0.9091)) +(: cnet_isa_7307312cca (IsA diarrhea symptom) (STV 1.0 0.9091)) +(: cnet_isa_3b561cdfba (IsA diary journal) (STV 1.0 0.9091)) +(: cnet_isa_724e02f848 (IsA diary writing) (STV 1.0 0.9091)) +(: cnet_isa_cc2d29aefe (IsA diaspididae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_d16b7ba8a2 (IsA diaspora distribution) (STV 1.0 0.9091)) +(: cnet_isa_3fab5f2585 (IsA diaspora dispersion) (STV 1.0 0.9091)) +(: cnet_isa_a0aaa19ec0 (IsA diaspora body) (STV 1.0 0.9091)) +(: cnet_isa_bd92528814 (IsA diastasis dislocation) (STV 1.0 0.9091)) +(: cnet_isa_7c50d55fb1 (IsA diastema opening) (STV 1.0 0.9091)) +(: cnet_isa_bb69ae0224 (IsA diastole pulse) (STV 1.0 0.9091)) +(: cnet_isa_13ce715341 (IsA diastolic_pressure blood_pressure) (STV 1.0 0.9091)) +(: cnet_isa_0b44a7bab2 (IsA diastrophism geological_process) (STV 1.0 0.9091)) +(: cnet_isa_2c82aad294 (IsA diathermy modality) (STV 1.0 0.9091)) +(: cnet_isa_afd7851bb5 (IsA diathermy_machine medical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_8251d58647 (IsA diathesis sensitivity) (STV 1.0 0.9091)) +(: cnet_isa_c769f01d8c (IsA diatom alga) (STV 1.0 0.9091)) +(: cnet_isa_7d4698e7ea (IsA diatom phytoplankton) (STV 1.0 0.9091)) +(: cnet_isa_98854cb10a (IsA diatomaceous_earth earth) (STV 1.0 0.9091)) +(: cnet_isa_a0594b1785 (IsA diatomaceous_earth filter) (STV 1.0 0.9091)) +(: cnet_isa_a846ed84b7 (IsA diatonic_scale scale) (STV 1.0 0.9091)) +(: cnet_isa_293f623ff1 (IsA diazonium cation) (STV 1.0 0.9091)) +(: cnet_isa_a38d9068c1 (IsA dibasic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_4f31264a70 (IsA dibasic_salt salt) (STV 1.0 0.9091)) +(: cnet_isa_0cfda3d462 (IsA dibble hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_3140bcb9cf (IsA dibranchiata class) (STV 1.0 0.9091)) +(: cnet_isa_fad3b9c875 (IsA dibranchiate cephalopod) (STV 1.0 0.9091)) +(: cnet_isa_01d2c106f1 (IsA dib claim) (STV 1.0 0.9091)) +(: cnet_isa_82d75403e7 (IsA dibucaine intravenous_anesthetic) (STV 1.0 0.9091)) +(: cnet_isa_1beb669aa0 (IsA dicamptodon salamander) (STV 1.0 0.9091)) +(: cnet_isa_4a0460ee80 (IsA dicamptodontidae amphibian_family) (STV 1.0 0.9091)) +(: cnet_isa_87362408ee (IsA dice cube) (STV 1.0 0.9091)) +(: cnet_isa_d6c7de3fa0 (IsA dice_cup container) (STV 1.0 0.9091)) +(: cnet_isa_6ee6626fc3 (IsA dicentra dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a23bd91976 (IsA dicer mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_bc1fb879df (IsA dicero mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_d851d922c1 (IsA dichloride chloride) (STV 1.0 0.9091)) +(: cnet_isa_301ca2fe4f (IsA dichlorodiphenyltrichloroethane insecticide) (STV 1.0 0.9091)) +(: cnet_isa_06d8bf6665 (IsA dichlorodiphenyltrichloroethane pollutant) (STV 1.0 0.9091)) +(: cnet_isa_2d8377af1b (IsA dichondra vine) (STV 1.0 0.9091)) +(: cnet_isa_fe20899fd7 (IsA dichotomization division) (STV 1.0 0.9091)) +(: cnet_isa_0d8d260355 (IsA dichotomy classification) (STV 1.0 0.9091)) +(: cnet_isa_6114ad8c44 (IsA dichroism pleochroism) (STV 1.0 0.9091)) +(: cnet_isa_27f4bb6518 (IsA dichromacy color_blindness) (STV 1.0 0.9091)) +(: cnet_isa_b3b8e382e2 (IsA dichromat color_blind_person) (STV 1.0 0.9091)) +(: cnet_isa_62f1717867 (IsA dichromic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_696dcf21a4 (IsA dick character_in_children_s_book) (STV 1.0 0.9091)) +(: cnet_isa_7bab65b60a (IsA dick detective) (STV 1.0 0.9091)) +(: cnet_isa_fff06ae053 (IsA dick_test skin_test) (STV 1.0 0.9091)) +(: cnet_isa_b55249a860 (IsA dickey backseat) (STV 1.0 0.9091)) +(: cnet_isa_ca2cab260b (IsA dickey insert) (STV 1.0 0.9091)) +(: cnet_isa_b41e470515 (IsA dickeybird bird) (STV 1.0 0.9091)) +(: cnet_isa_c5726e75fe (IsA dicksonia fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_fe46b98649 (IsA dicksoniaceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_ace1de6208 (IsA dicot angiosperm) (STV 1.0 0.9091)) +(: cnet_isa_3aa789926d (IsA dicot_family family) (STV 1.0 0.9091)) +(: cnet_isa_0b5dd89523 (IsA dicot_genus genus) (STV 1.0 0.9091)) +(: cnet_isa_0a8944e371 (IsA dicotyledone class) (STV 1.0 0.9091)) +(: cnet_isa_f7ef1bb93e (IsA dicranaceae moss_family) (STV 1.0 0.9091)) +(: cnet_isa_8df63c5ba3 (IsA dicranale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_2ea4b8733e (IsA dicranopteris fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_11ed3e8aa6 (IsA dicranum moss_genus) (STV 1.0 0.9091)) +(: cnet_isa_d1b84c7428 (IsA dicrostonyx mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_b31793fba2 (IsA dictamnus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_891ea5f0c3 (IsA dictaphone tape_recorder) (STV 1.0 0.9091)) +(: cnet_isa_8dfc07a90c (IsA dictate principle) (STV 1.0 0.9091)) +(: cnet_isa_e3f5684102 (IsA dictate rule) (STV 1.0 0.9091)) +(: cnet_isa_83c1a7e726 (IsA dictation matter) (STV 1.0 0.9091)) +(: cnet_isa_c0800de619 (IsA dictation speech) (STV 1.0 0.9091)) +(: cnet_isa_2555dc7d47 (IsA dictator ruler) (STV 1.0 0.9091)) +(: cnet_isa_5330b027ca (IsA dictator speaker) (STV 1.0 0.9091)) +(: cnet_isa_0d2ffd611b (IsA dictatorship autocracy) (STV 1.0 0.9091)) +(: cnet_isa_1231bb0c72 (IsA dictionary book) (STV 1.0 0.9454)) +(: cnet_isa_5d1f8bd242 (IsA dictionary wordbook) (STV 1.0 0.9091)) +(: cnet_isa_30f84acc28 (IsA dictionary_definition definition) (STV 1.0 0.9091)) +(: cnet_isa_d47f1a7a42 (IsA dictostylium cellular_slime_mold) (STV 1.0 0.9091)) +(: cnet_isa_72ea73fbd7 (IsA dictyophera fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_93452f1782 (IsA dictyoptera animal_order) (STV 1.0 0.9091)) +(: cnet_isa_b80f6ab94e (IsA dictyopterous_insect insect) (STV 1.0 0.9091)) +(: cnet_isa_27865001c9 (IsA dicumarol anticoagulant) (STV 1.0 0.9091)) +(: cnet_isa_53664b0825 (IsA dicynodont therapsid) (STV 1.0 0.9091)) +(: cnet_isa_470c5871b4 (IsA dicynodontia division) (STV 1.0 0.9091)) +(: cnet_isa_ced8c8b0ce (IsA didacticism communication) (STV 1.0 0.9091)) +(: cnet_isa_f4753a4466 (IsA didelphidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_fb2b14a900 (IsA didelphis mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_46cf5438c7 (IsA dideoxycytosine antiviral) (STV 1.0 0.9091)) +(: cnet_isa_30c4e8c96f (IsA dideoxyinosine antiviral) (STV 1.0 0.9091)) +(: cnet_isa_b59471f9a9 (IsA die cutter) (STV 1.0 0.9091)) +(: cnet_isa_4fb9350cbb (IsA die shaping_tool) (STV 1.0 0.9091)) +(: cnet_isa_135bc91d13 (IsA dieback plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_7fd9c199bf (IsA dieffenbachia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1e0728738f (IsA diegueno yuman) (STV 1.0 0.9091)) +(: cnet_isa_1df152d8f0 (IsA diegueno hoka) (STV 1.0 0.9091)) +(: cnet_isa_50c9555919 (IsA dielectric_heating electrical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_a10f350085 (IsA diemaker craftsman) (STV 1.0 0.9091)) +(: cnet_isa_7b0514dc4a (IsA diencephalon neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_b8b785e40f (IsA diervilla asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9aecf33514 (IsA diesel fuel) (STV 1.0 0.9091)) +(: cnet_isa_f213315082 (IsA diesel internal_combustion_engine) (STV 1.0 0.9091)) +(: cnet_isa_25a6eff488 (IsA diesel_electric_locomotive diesel_locomotive) (STV 1.0 0.9091)) +(: cnet_isa_6c91ee927e (IsA diesel_hydraulic_locomotive diesel_locomotive) (STV 1.0 0.9091)) +(: cnet_isa_cf35ff7a9b (IsA diesel_locomotive locomotive) (STV 1.0 0.9091)) +(: cnet_isa_d4e53aaa04 (IsA diesel_oil fuel) (STV 1.0 0.9091)) +(: cnet_isa_d7fd2f51d5 (IsA diestock device) (STV 1.0 0.9091)) +(: cnet_isa_e90286a5b8 (IsA diestrus anestrus) (STV 1.0 0.9091)) +(: cnet_isa_8a86f79fde (IsA diet fast) (STV 1.0 0.9091)) +(: cnet_isa_c1bf90604b (IsA diet fare) (STV 1.0 0.9091)) +(: cnet_isa_9abca91701 (IsA diet legislature) (STV 1.0 0.9091)) +(: cnet_isa_7531a35472 (IsA dietary fare) (STV 1.0 0.9091)) +(: cnet_isa_f9146dc38f (IsA dietary_supplement diet) (STV 1.0 0.9091)) +(: cnet_isa_c218ac08d0 (IsA dieter person) (STV 1.0 0.9091)) +(: cnet_isa_905129e30d (IsA dietetic life_science) (STV 1.0 0.9091)) +(: cnet_isa_bd4de6f756 (IsA diethylaminoethyl_cellulose cellulose) (STV 1.0 0.9091)) +(: cnet_isa_953cbeae42 (IsA diethylstilbesterol nonsteroid) (STV 1.0 0.9091)) +(: cnet_isa_5aa834bca9 (IsA diethylstilbestrol estrogen) (STV 1.0 0.9091)) +(: cnet_isa_4da37a1a8f (IsA dietician specialist) (STV 1.0 0.9091)) +(: cnet_isa_44edf4aec1 (IsA difference quality) (STV 1.0 0.9091)) +(: cnet_isa_d92b9a1e18 (IsA difference change) (STV 1.0 0.9091)) +(: cnet_isa_3436c400ba (IsA difference_threshold threshold) (STV 1.0 0.9091)) +(: cnet_isa_1453790198 (IsA differentia difference) (STV 1.0 0.9091)) +(: cnet_isa_4fe40b7664 (IsA differential difference) (STV 1.0 0.9091)) +(: cnet_isa_08e3d707d3 (IsA differential_analyzer analog_computer) (STV 1.0 0.9091)) +(: cnet_isa_881237cb09 (IsA differential_blood_count blood_count) (STV 1.0 0.9091)) +(: cnet_isa_ccff0a4f83 (IsA differential_calculus calculus) (STV 1.0 0.9091)) +(: cnet_isa_e1abf180ec (IsA differential_diagnosis medical_diagnosis) (STV 1.0 0.9091)) +(: cnet_isa_ae9aaf99f6 (IsA differential_equation equation) (STV 1.0 0.9091)) +(: cnet_isa_da5ed64799 (IsA differential_gear bevel_gear) (STV 1.0 0.9091)) +(: cnet_isa_b85287fee1 (IsA differential_psychology psychology) (STV 1.0 0.9091)) +(: cnet_isa_10f87a38d6 (IsA differentiation mathematical_process) (STV 1.0 0.9091)) +(: cnet_isa_6032ea6e8a (IsA differentiation discrimination) (STV 1.0 0.9091)) +(: cnet_isa_34fd10a347 (IsA differentiator person) (STV 1.0 0.9091)) +(: cnet_isa_f4987b524d (IsA difficulty quality) (STV 1.0 0.9091)) +(: cnet_isa_34f95e2ff5 (IsA difficulty cognitive_factor) (STV 1.0 0.9091)) +(: cnet_isa_da54b2be94 (IsA difficulty condition) (STV 1.0 0.9091)) +(: cnet_isa_bb744daded (IsA diffidence timidity) (STV 1.0 0.9091)) +(: cnet_isa_ca008b4665 (IsA difflugia protozoan) (STV 1.0 0.9091)) +(: cnet_isa_f2574840f6 (IsA diffraction optical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_fee7cdd604 (IsA diffraction_grating optical_device) (STV 1.0 0.9091)) +(: cnet_isa_900f290487 (IsA diffuse_nebula nebula) (STV 1.0 0.9091)) +(: cnet_isa_f183a828da (IsA diffuseness scatter) (STV 1.0 0.9091)) +(: cnet_isa_a7e7562972 (IsA diffuser baffle) (STV 1.0 0.9091)) +(: cnet_isa_5a3d85a6b8 (IsA diffuser optical_device) (STV 1.0 0.9091)) +(: cnet_isa_84a952fc46 (IsA diffusion spread) (STV 1.0 0.9091)) +(: cnet_isa_38a8968d87 (IsA diffusion natural_process) (STV 1.0 0.9091)) +(: cnet_isa_8cae046d0f (IsA dig touch) (STV 1.0 0.9091)) +(: cnet_isa_13bbd5580d (IsA dig site) (STV 1.0 0.9091)) +(: cnet_isa_905b34a461 (IsA dig dent) (STV 1.0 0.9091)) +(: cnet_isa_a56fa9f703 (IsA digest periodical) (STV 1.0 0.9091)) +(: cnet_isa_b2487df26d (IsA digester autoclave) (STV 1.0 0.9091)) +(: cnet_isa_7242755435 (IsA digestibility edibility) (STV 1.0 0.9091)) +(: cnet_isa_6f445d3047 (IsA digestion improved_if_masticate_food) (STV 1.0 0.9091)) +(: cnet_isa_9c3d1bee2d (IsA digestion learning) (STV 1.0 0.9091)) +(: cnet_isa_a77ccb0517 (IsA digestion chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_4db82cff35 (IsA digestion organic_process) (STV 1.0 0.9091)) +(: cnet_isa_cfb1f09935 (IsA digestive substance) (STV 1.0 0.9091)) +(: cnet_isa_c4a075acde (IsA digestive_gland exocrine_gland) (STV 1.0 0.9091)) +(: cnet_isa_083155f6a3 (IsA digestive_juice juice) (STV 1.0 0.9091)) +(: cnet_isa_5681d6adec (IsA digestive_system system) (STV 1.0 0.9091)) +(: cnet_isa_708c4448cf (IsA digger laborer) (STV 1.0 0.9091)) +(: cnet_isa_7c5b12d299 (IsA digger_wasp sphecoid_wasp) (STV 1.0 0.9091)) +(: cnet_isa_cc9c0a80f9 (IsA digging living_quarter) (STV 1.0 0.9091)) +(: cnet_isa_c590e095fd (IsA digit extremity) (STV 1.0 0.9091)) +(: cnet_isa_0e6c634554 (IsA digit integer) (STV 1.0 0.9091)) +(: cnet_isa_a126f23ad4 (IsA digital_analog_converter data_converter) (STV 1.0 0.9091)) +(: cnet_isa_9812a9c9bb (IsA digital_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_c093a4cdd9 (IsA digital_audiotape audiotape) (STV 1.0 0.9091)) +(: cnet_isa_de779a177f (IsA digital_camera camera) (STV 1.0 0.9091)) +(: cnet_isa_697e170169 (IsA digital_clock clock) (STV 1.0 0.9091)) +(: cnet_isa_381ecb5017 (IsA digital_communication electronic_communication) (STV 1.0 0.9091)) +(: cnet_isa_36466066cb (IsA digital_communication_technology communication_technology) (STV 1.0 0.9091)) +(: cnet_isa_5fb848b649 (IsA digital_computer computer) (STV 1.0 0.9091)) +(: cnet_isa_ef3b3de3f4 (IsA digital_display display) (STV 1.0 0.9091)) +(: cnet_isa_e8138e7130 (IsA digital_photography photography) (STV 1.0 0.9091)) +(: cnet_isa_afffd28553 (IsA digital_plethysmograph plethysmograph) (STV 1.0 0.9091)) +(: cnet_isa_86e74ec701 (IsA digital_subscriber_line telephone_line) (STV 1.0 0.9091)) +(: cnet_isa_17168c2658 (IsA digital_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_d222a4c9df (IsA digital_voltmeter electronic_voltmeter) (STV 1.0 0.9091)) +(: cnet_isa_e7665f09b7 (IsA digital_watch watch) (STV 1.0 0.9091)) +(: cnet_isa_ca7532116f (IsA digitalis cardiac_glycoside) (STV 1.0 0.9091)) +(: cnet_isa_94b6b8372f (IsA digitalization medical_care) (STV 1.0 0.9091)) +(: cnet_isa_16a0ecdf15 (IsA digitaria monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ea23608ecf (IsA digitigrade_mammal placental) (STV 1.0 0.9091)) +(: cnet_isa_db6fb2993e (IsA digitization conversion) (STV 1.0 0.9091)) +(: cnet_isa_d34a4fc0d9 (IsA digitizer data_converter) (STV 1.0 0.9091)) +(: cnet_isa_8c1767e3ab (IsA digitoxin digitalis) (STV 1.0 0.9091)) +(: cnet_isa_c44272876b (IsA dignity bearing) (STV 1.0 0.9091)) +(: cnet_isa_ada78a68e0 (IsA dignity pride) (STV 1.0 0.9091)) +(: cnet_isa_f9d57bd820 (IsA dignity status) (STV 1.0 0.9091)) +(: cnet_isa_6fd63bdb05 (IsA digraph letter) (STV 1.0 0.9091)) +(: cnet_isa_2e8b996dd7 (IsA digression journey) (STV 1.0 0.9091)) +(: cnet_isa_d3739cd21f (IsA digression message) (STV 1.0 0.9091)) +(: cnet_isa_cfeb073868 (IsA dig excavation) (STV 1.0 0.9091)) +(: cnet_isa_52965c34ed (IsA dihybrid hybrid) (STV 1.0 0.9091)) +(: cnet_isa_df3dce9964 (IsA dihybrid_cross hybridization) (STV 1.0 0.9091)) +(: cnet_isa_a368f12d8b (IsA dihydrostreptomycin antibiotic) (STV 1.0 0.9091)) +(: cnet_isa_dfdd00e50a (IsA dik_dik antelope) (STV 1.0 0.9091)) +(: cnet_isa_403672279f (IsA dika_bread food) (STV 1.0 0.9091)) +(: cnet_isa_580ffd8ed6 (IsA dika_nut edible_seed) (STV 1.0 0.9091)) +(: cnet_isa_b4d1109603 (IsA dilapidation decay) (STV 1.0 0.9091)) +(: cnet_isa_ca793bbcc6 (IsA dilatation physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_bc13d7d96c (IsA dilation expansion) (STV 1.0 0.9091)) +(: cnet_isa_b0811a1648 (IsA dilation discussion) (STV 1.0 0.9091)) +(: cnet_isa_60e81439ec (IsA dilation_and_curettage operation) (STV 1.0 0.9091)) +(: cnet_isa_759a65e0db (IsA dilator drug) (STV 1.0 0.9091)) +(: cnet_isa_d2e42b5580 (IsA dilator surgical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_6ba9fbb0f1 (IsA dilator body_part) (STV 1.0 0.9091)) +(: cnet_isa_0e3e19ee54 (IsA dilatoriness slowness) (STV 1.0 0.9091)) +(: cnet_isa_5ff3a7664a (IsA dilatory_plea plea) (STV 1.0 0.9091)) +(: cnet_isa_4a0d24066d (IsA dildo vibrator) (STV 1.0 0.9091)) +(: cnet_isa_fc89fab64c (IsA dilemma perplexity) (STV 1.0 0.9091)) +(: cnet_isa_9d10ddd49f (IsA diligence conscientiousness) (STV 1.0 0.9091)) +(: cnet_isa_b21fd6c6db (IsA diligence determination) (STV 1.0 0.9091)) +(: cnet_isa_122ca5eeb8 (IsA dill herb) (STV 1.0 0.9091)) +(: cnet_isa_7f43fbc9fa (IsA dill_pickle pickle) (STV 1.0 0.9091)) +(: cnet_isa_7692553fde (IsA dill_seed flavorer) (STV 1.0 0.9091)) +(: cnet_isa_f4adfbdfd1 (IsA dillenia angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_230ba38b25 (IsA dilleniaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_ef0b5b1bdd (IsA dilleniid_dicot_family dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_2dc8395a75 (IsA dilleniid_dicot_genus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_cf0cf82bb4 (IsA dilleniidae class) (STV 1.0 0.9091)) +(: cnet_isa_0b1b77f662 (IsA dilutant agent) (STV 1.0 0.9091)) +(: cnet_isa_010802af75 (IsA dilution weakening) (STV 1.0 0.9091)) +(: cnet_isa_1a701f7cce (IsA dilution solution) (STV 1.0 0.9091)) +(: cnet_isa_63dc541dd8 (IsA dim_sum cuisine) (STV 1.0 0.9091)) +(: cnet_isa_08845e13e9 (IsA dime worth_ten_cent) (STV 1.0 0.9454)) +(: cnet_isa_70ead5c6cf (IsA dime coin) (STV 1.0 0.9091)) +(: cnet_isa_b7bdf10bd6 (IsA dime_bag deck) (STV 1.0 0.9091)) +(: cnet_isa_985ba461f5 (IsA dime_novel novel) (STV 1.0 0.9091)) +(: cnet_isa_0c5fc4d626 (IsA dimension magnitude) (STV 1.0 0.9091)) +(: cnet_isa_8881bd3389 (IsA dimension cartesian_coordinate) (STV 1.0 0.9091)) +(: cnet_isa_51decc41e1 (IsA dimensionality spatial_property) (STV 1.0 0.9091)) +(: cnet_isa_20a1b9676b (IsA dimer compound) (STV 1.0 0.9091)) +(: cnet_isa_c25536fcf3 (IsA dimethylglyoxime precipitant) (STV 1.0 0.9091)) +(: cnet_isa_2b425c1d69 (IsA dimetrodon synapsid) (STV 1.0 0.9091)) +(: cnet_isa_83a0630985 (IsA diminution statement) (STV 1.0 0.9091)) +(: cnet_isa_e2bf1cd230 (IsA diminutive word) (STV 1.0 0.9091)) +(: cnet_isa_0274acb660 (IsA diminutiveness smallness) (STV 1.0 0.9091)) +(: cnet_isa_5d723466bf (IsA dimity fabric) (STV 1.0 0.9091)) +(: cnet_isa_126d173d3b (IsA dimmer rheostat) (STV 1.0 0.9091)) +(: cnet_isa_914ad408a5 (IsA dimness dullness) (STV 1.0 0.9091)) +(: cnet_isa_2b476dea23 (IsA dimness indistinctness) (STV 1.0 0.9091)) +(: cnet_isa_1fd10b3d2f (IsA dimness semidarkness) (STV 1.0 0.9091)) +(: cnet_isa_ffe8c4e0f6 (IsA dimocarpus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5bf803d1a6 (IsA dimorphism polymorphism) (STV 1.0 0.9091)) +(: cnet_isa_6ea9470d1e (IsA dimorphotheca asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_802f61bd1d (IsA dimple depression) (STV 1.0 0.9091)) +(: cnet_isa_8ec39e5e08 (IsA dimpled_chad chad) (STV 1.0 0.9091)) +(: cnet_isa_bc964b338d (IsA dimwit simpleton) (STV 1.0 0.9091)) +(: cnet_isa_61bdb4ece9 (IsA diner restaurant) (STV 1.0 0.9091)) +(: cnet_isa_9da1ca8e66 (IsA diner eater) (STV 1.0 0.9091)) +(: cnet_isa_4dae126152 (IsA dinette room) (STV 1.0 0.9091)) +(: cnet_isa_665a948171 (IsA ding sound) (STV 1.0 0.9091)) +(: cnet_isa_1048045403 (IsA ding_dong noise) (STV 1.0 0.9091)) +(: cnet_isa_c60ac12189 (IsA dingbat simpleton) (STV 1.0 0.9091)) +(: cnet_isa_0c5d8dcb97 (IsA dinghy small_boat) (STV 1.0 0.9091)) +(: cnet_isa_cdcd094f4b (IsA dinginess dirtiness) (STV 1.0 0.9091)) +(: cnet_isa_87df0b501d (IsA dingo wild_dog) (STV 1.0 0.9091)) +(: cnet_isa_faaadada5e (IsA dining eating) (STV 1.0 0.9091)) +(: cnet_isa_86fc195617 (IsA dining_area area) (STV 1.0 0.9091)) +(: cnet_isa_74f6e76162 (IsA dining_car passenger_car) (STV 1.0 0.9091)) +(: cnet_isa_021b19417f (IsA dining_hall dining_room) (STV 1.0 0.9091)) +(: cnet_isa_5149b44f9c (IsA dining_room place_to_eat_food) (STV 1.0 0.9091)) +(: cnet_isa_4f0e60ea88 (IsA dining_room room) (STV 1.0 0.9091)) +(: cnet_isa_6f8b7404e9 (IsA dining_room room_where_people_eat) (STV 1.0 0.9572)) +(: cnet_isa_ee00f06d29 (IsA dining_room_attendant employee) (STV 1.0 0.9091)) +(: cnet_isa_a139acfdbc (IsA dining_room_furniture furniture) (STV 1.0 0.9091)) +(: cnet_isa_cf6d0f8fec (IsA dining_room_suite suite) (STV 1.0 0.9091)) +(: cnet_isa_3eb0f05d45 (IsA dining_room_table dining_room_furniture) (STV 1.0 0.9091)) +(: cnet_isa_ded7dbb85e (IsA dining_room_table dining_table) (STV 1.0 0.9091)) +(: cnet_isa_118bfe07ff (IsA dining_table table) (STV 1.0 0.9091)) +(: cnet_isa_0695b9ae2b (IsA dink couple) (STV 1.0 0.9091)) +(: cnet_isa_1c695291d6 (IsA dinka nilotic) (STV 1.0 0.9091)) +(: cnet_isa_4f2c38ed10 (IsA dinky locomotive) (STV 1.0 0.9091)) +(: cnet_isa_6d7fa8cd08 (IsA dinner great_time_for_socialization) (STV 1.0 0.9339)) +(: cnet_isa_950f35319b (IsA dinner meal) (STV 1.0 0.9636)) +(: cnet_isa_0ac37324d0 (IsA dinner party) (STV 1.0 0.9091)) +(: cnet_isa_1532657f71 (IsA dinner_bell bell) (STV 1.0 0.9091)) +(: cnet_isa_b3275ac0dc (IsA dinner_dress formalwear) (STV 1.0 0.9091)) +(: cnet_isa_f1af50327c (IsA dinner_dress gown) (STV 1.0 0.9091)) +(: cnet_isa_57f8592dd4 (IsA dinner_jacket formalwear) (STV 1.0 0.9091)) +(: cnet_isa_050af8f1f8 (IsA dinner_napkin napkin) (STV 1.0 0.9091)) +(: cnet_isa_bf27fd9fd8 (IsA dinner_pail bucket) (STV 1.0 0.9091)) +(: cnet_isa_f1f5e76f45 (IsA dinner_plate plate) (STV 1.0 0.9091)) +(: cnet_isa_0ec6b7caab (IsA dinner_service service) (STV 1.0 0.9091)) +(: cnet_isa_acc0ffff4c (IsA dinner_table dining_table) (STV 1.0 0.9091)) +(: cnet_isa_5198c22619 (IsA dinner_theater theater) (STV 1.0 0.9091)) +(: cnet_isa_90a2c4bcaf (IsA dinnertime mealtime) (STV 1.0 0.9091)) +(: cnet_isa_101bd2d76f (IsA dinnerware tableware) (STV 1.0 0.9091)) +(: cnet_isa_d47ae0862f (IsA dinocera dinocerate) (STV 1.0 0.9091)) +(: cnet_isa_acf419bef4 (IsA dinocerata animal_order) (STV 1.0 0.9091)) +(: cnet_isa_ceeb2c41ba (IsA dinocerate ungulate) (STV 1.0 0.9091)) +(: cnet_isa_c10e375245 (IsA dinoflagellata animal_order) (STV 1.0 0.9091)) +(: cnet_isa_23cfb53238 (IsA dinoflagellate flagellate) (STV 1.0 0.9091)) +(: cnet_isa_6ca0b77126 (IsA dinornis bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_cca5e437c8 (IsA dinornithidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_e32e1f0089 (IsA dinornithiforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_fd7510897f (IsA dinosaur archosaur) (STV 1.0 0.9091)) +(: cnet_isa_93bf71d01c (IsA dint mean) (STV 1.0 0.9091)) +(: cnet_isa_883c72ebc1 (IsA diocesan bishop) (STV 1.0 0.9091)) +(: cnet_isa_33911e1c2e (IsA diocese jurisdiction) (STV 1.0 0.9091)) +(: cnet_isa_596e0a2704 (IsA diode semiconductor_device) (STV 1.0 0.9091)) +(: cnet_isa_61a7780c5b (IsA diode tube) (STV 1.0 0.9091)) +(: cnet_isa_530cab134c (IsA diodon fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_47122c46ce (IsA diodontidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_97c6ad3de3 (IsA diol alcohol) (STV 1.0 0.9091)) +(: cnet_isa_d12137368a (IsA diomedeidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_2d50cde95a (IsA dionaea dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_dd01b0f041 (IsA dionysia festival) (STV 1.0 0.9091)) +(: cnet_isa_d160806928 (IsA dioon cycad) (STV 1.0 0.9091)) +(: cnet_isa_27c9c4358f (IsA diopter unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_d4aabe6f8a (IsA diorite igneous_rock) (STV 1.0 0.9091)) +(: cnet_isa_48e0eb20d9 (IsA dioscorea plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_011c08edb4 (IsA dioscoreaceae plant_family) (STV 1.0 0.9091)) +(: cnet_isa_ffca352749 (IsA diospyro dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_98466c8dee (IsA dioxide oxide) (STV 1.0 0.9091)) +(: cnet_isa_d648206ead (IsA dioxin hydrocarbon) (STV 1.0 0.9091)) +(: cnet_isa_c6a0ad14a4 (IsA dip gymnastic_exercise) (STV 1.0 0.9091)) +(: cnet_isa_d32653ec1e (IsA dip swimming) (STV 1.0 0.9091)) +(: cnet_isa_6cd09ee9f3 (IsA dip candle) (STV 1.0 0.9091)) +(: cnet_isa_8dce799dcd (IsA dip submergence) (STV 1.0 0.9091)) +(: cnet_isa_41348ebc80 (IsA dip condiment) (STV 1.0 0.9091)) +(: cnet_isa_ad01eabf42 (IsA dip angle) (STV 1.0 0.9091)) +(: cnet_isa_52115a475d (IsA dip depression) (STV 1.0 0.9091)) +(: cnet_isa_9f3d0a33b9 (IsA dip_switch toggle_switch) (STV 1.0 0.9091)) +(: cnet_isa_c227f41044 (IsA diphenylbutyl_piperidine major_tranquilizer) (STV 1.0 0.9091)) +(: cnet_isa_abe1bf3782 (IsA diphtheria contagious_disease) (STV 1.0 0.9091)) +(: cnet_isa_79f3c589ab (IsA diphthong vowel) (STV 1.0 0.9091)) +(: cnet_isa_ea82f56014 (IsA diphylla mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_599a54ca83 (IsA diplegia paralysis) (STV 1.0 0.9091)) +(: cnet_isa_f03008ff5f (IsA diplococcus bacteria) (STV 1.0 0.9091)) +(: cnet_isa_432a7cf215 (IsA diplodocus dinosaur) (STV 1.0 0.9091)) +(: cnet_isa_f29ff9cc0f (IsA diploic_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_a4a1184a9d (IsA diploid organism) (STV 1.0 0.9091)) +(: cnet_isa_df076270ed (IsA diploidy condition) (STV 1.0 0.9091)) +(: cnet_isa_9b75fcaf5a (IsA diploma certificate) (STV 1.0 0.9091)) +(: cnet_isa_00b8b4275e (IsA diplomacy negotiation) (STV 1.0 0.9091)) +(: cnet_isa_f62847606e (IsA diplomat mediator) (STV 1.0 0.9091)) +(: cnet_isa_eeedb37b3b (IsA diplomat official) (STV 1.0 0.9091)) +(: cnet_isa_86b96acea9 (IsA diplomate specialist) (STV 1.0 0.9091)) +(: cnet_isa_ea6cc3c7c7 (IsA diplomatic_building government_building) (STV 1.0 0.9091)) +(: cnet_isa_bc4f2f5a78 (IsA diplomatic_immunity exemption) (STV 1.0 0.9091)) +(: cnet_isa_281f35ab11 (IsA diplomatic_mission deputation) (STV 1.0 0.9091)) +(: cnet_isa_331339ca30 (IsA diplomatic_pouch mailbag) (STV 1.0 0.9091)) +(: cnet_isa_3614128b8a (IsA diplomatic_service corp) (STV 1.0 0.9091)) +(: cnet_isa_d8a13ed536 (IsA diplopia visual_impairment) (STV 1.0 0.9091)) +(: cnet_isa_a43c4674dc (IsA diplopoda class) (STV 1.0 0.9091)) +(: cnet_isa_803ac8e151 (IsA diplopterygium fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_1c2694556b (IsA diplotaxis dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1fbe62abe4 (IsA diplotene phase) (STV 1.0 0.9091)) +(: cnet_isa_3ad544497e (IsA dipnoi class) (STV 1.0 0.9091)) +(: cnet_isa_2aafb52981 (IsA dipodidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_d33f021f86 (IsA dipodomy mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_0b3130a59b (IsA dipogon rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_09c5bf62d0 (IsA dipole antenna) (STV 1.0 0.9091)) +(: cnet_isa_ee67dfb690 (IsA dipole couple) (STV 1.0 0.9091)) +(: cnet_isa_12baef9d14 (IsA dipole_molecule molecule) (STV 1.0 0.9091)) +(: cnet_isa_49c9599654 (IsA dipole_moment moment) (STV 1.0 0.9091)) +(: cnet_isa_d6cccccf11 (IsA dipper ladle) (STV 1.0 0.9091)) +(: cnet_isa_d3d42492b1 (IsA dipsacaceae asterid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_537c080bc8 (IsA dipsacus asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0194572491 (IsA dipsomania mania) (STV 1.0 0.9091)) +(: cnet_isa_002179cdc4 (IsA dipsosaurus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_4286100520 (IsA dipstick gauge) (STV 1.0 0.9091)) +(: cnet_isa_e748570d78 (IsA diptera animal_order) (STV 1.0 0.9091)) +(: cnet_isa_e171d69c4e (IsA dipterocarp tree) (STV 1.0 0.9091)) +(: cnet_isa_e4a7d198e1 (IsA dipterocarpaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_7859598fef (IsA dipteronia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_df331235b8 (IsA dipterous_insect insect) (STV 1.0 0.9091)) +(: cnet_isa_3705120c30 (IsA diptych art) (STV 1.0 0.9091)) +(: cnet_isa_c7b0b751ab (IsA dipus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_a8dd45e8bd (IsA dirca dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7368306c93 (IsA direct_action protest) (STV 1.0 0.9091)) +(: cnet_isa_590cb9ed39 (IsA direct_antonym antonym) (STV 1.0 0.9091)) +(: cnet_isa_a3c1a9b424 (IsA direct_current electricity) (STV 1.0 0.9091)) +(: cnet_isa_2f4868bd17 (IsA direct_discourse report) (STV 1.0 0.9091)) +(: cnet_isa_0dc4442af9 (IsA direct_dye dye) (STV 1.0 0.9091)) +(: cnet_isa_5b7fce9b5d (IsA direct_evidence evidence) (STV 1.0 0.9091)) +(: cnet_isa_494ee45e05 (IsA direct_examination interrogation) (STV 1.0 0.9091)) +(: cnet_isa_16bae3219a (IsA direct_fire fire) (STV 1.0 0.9091)) +(: cnet_isa_8eb5555d6f (IsA direct_flight flight) (STV 1.0 0.9091)) +(: cnet_isa_41bf259b10 (IsA direct_grant_school school) (STV 1.0 0.9091)) +(: cnet_isa_5a4ca4a93d (IsA direct_loan loan) (STV 1.0 0.9091)) +(: cnet_isa_045d01de6a (IsA direct_mail ad) (STV 1.0 0.9091)) +(: cnet_isa_3ca044fc5e (IsA direct_mailer distributor) (STV 1.0 0.9091)) +(: cnet_isa_6e8b099bec (IsA direct_marketing marketing) (STV 1.0 0.9091)) +(: cnet_isa_648b93383a (IsA direct_object object) (STV 1.0 0.9091)) +(: cnet_isa_596998416f (IsA direct_primary primary) (STV 1.0 0.9091)) +(: cnet_isa_6c63512b5d (IsA direct_sum union) (STV 1.0 0.9091)) +(: cnet_isa_3205e418ff (IsA direct_support mission) (STV 1.0 0.9091)) +(: cnet_isa_df34a341f0 (IsA direct_supporting_fire supporting_fire) (STV 1.0 0.9091)) +(: cnet_isa_0bbd76e58d (IsA direct_tax tax) (STV 1.0 0.9091)) +(: cnet_isa_bdf60ece03 (IsA direct_tide high_tide) (STV 1.0 0.9091)) +(: cnet_isa_3319ca6db1 (IsA direct_transmission transmission_mechanism) (STV 1.0 0.9091)) +(: cnet_isa_e9e4dffb41 (IsA direct_trust trust) (STV 1.0 0.9091)) +(: cnet_isa_f6242f69f8 (IsA directed_study course) (STV 1.0 0.9091)) +(: cnet_isa_5c2b3b07a0 (IsA directed_verdict verdict) (STV 1.0 0.9091)) +(: cnet_isa_8cc82bf3cc (IsA direction inclination) (STV 1.0 0.9091)) +(: cnet_isa_f1c377bd44 (IsA direction message) (STV 1.0 0.9091)) +(: cnet_isa_16ee50b46c (IsA direction position) (STV 1.0 0.9091)) +(: cnet_isa_7d2f0847e7 (IsA direction path) (STV 1.0 0.9091)) +(: cnet_isa_1694926b56 (IsA direction_finder receiver) (STV 1.0 0.9091)) +(: cnet_isa_65de1e91af (IsA directional_antenna antenna) (STV 1.0 0.9091)) +(: cnet_isa_f3141bc5b6 (IsA directional_microphone microphone) (STV 1.0 0.9091)) +(: cnet_isa_238c6eb71c (IsA directionality spatial_property) (STV 1.0 0.9091)) +(: cnet_isa_686ac6d976 (IsA directive pronouncement) (STV 1.0 0.9091)) +(: cnet_isa_2da02f8344 (IsA directiveness quality) (STV 1.0 0.9091)) +(: cnet_isa_4598e725a1 (IsA directivity radial_asymmetry) (STV 1.0 0.9091)) +(: cnet_isa_130a964613 (IsA directness characteristic) (STV 1.0 0.9091)) +(: cnet_isa_4184590ed6 (IsA director person_who_direct_movie) (STV 1.0 0.9091)) +(: cnet_isa_083dfeb624 (IsA director administrator) (STV 1.0 0.9091)) +(: cnet_isa_5ab2eb0d9c (IsA director committee_member) (STV 1.0 0.9091)) +(: cnet_isa_a49eb6b68a (IsA director supervisor) (STV 1.0 0.9091)) +(: cnet_isa_f9e34d5e45 (IsA director_stockholder_relation fiduciary_relation) (STV 1.0 0.9091)) +(: cnet_isa_0945804c97 (IsA directorate board) (STV 1.0 0.9091)) +(: cnet_isa_c54488c5cd (IsA directorate_for_inter_service_intelligence international_intelligence_agency) (STV 1.0 0.9091)) +(: cnet_isa_6cacdf90ac (IsA directorship position) (STV 1.0 0.9091)) +(: cnet_isa_a3c9056994 (IsA directory reference_book) (STV 1.0 0.9091)) +(: cnet_isa_8b058544ce (IsA directory list) (STV 1.0 0.9091)) +(: cnet_isa_875031081c (IsA dirge song) (STV 1.0 0.9091)) +(: cnet_isa_dd49d01d61 (IsA diriment_impediment hindrance) (STV 1.0 0.9091)) +(: cnet_isa_dac8f08804 (IsA dirk dagger) (STV 1.0 0.9091)) +(: cnet_isa_003856c8b9 (IsA dirndl dress) (STV 1.0 0.9091)) +(: cnet_isa_71e633c84c (IsA dirndl gathered_skirt) (STV 1.0 0.9091)) +(: cnet_isa_9510d9f234 (IsA dirt dirtiness) (STV 1.0 0.9091)) +(: cnet_isa_84e21e230d (IsA dirt_track racetrack) (STV 1.0 0.9091)) +(: cnet_isa_8411f05060 (IsA dirtiness impurity) (STV 1.0 0.9091)) +(: cnet_isa_e4b1f7c61b (IsA dirtiness sanitary_condition) (STV 1.0 0.9091)) +(: cnet_isa_3bcb383830 (IsA dirty_bomb atom_bomb) (STV 1.0 0.9091)) +(: cnet_isa_c815613b24 (IsA dirty_joke joke) (STV 1.0 0.9091)) +(: cnet_isa_88e0396f3e (IsA dirty_linen personal_business) (STV 1.0 0.9091)) +(: cnet_isa_31c243a75d (IsA dirty_old_man middle_aged_man) (STV 1.0 0.9091)) +(: cnet_isa_3893d59154 (IsA dirty_pool behavior) (STV 1.0 0.9091)) +(: cnet_isa_a37eede0f4 (IsA dirty_trick antic) (STV 1.0 0.9091)) +(: cnet_isa_6a2e3d38f6 (IsA dirty_trick behavior) (STV 1.0 0.9091)) +(: cnet_isa_c82d3d50c1 (IsA dirty_war offense) (STV 1.0 0.9091)) +(: cnet_isa_0585183664 (IsA dirty_word word) (STV 1.0 0.9091)) +(: cnet_isa_ca0f83ae9c (IsA disa orchid) (STV 1.0 0.9091)) +(: cnet_isa_9c937557b8 (IsA disability unfitness) (STV 1.0 0.9091)) +(: cnet_isa_c29d53fe89 (IsA disability_benefit benefit) (STV 1.0 0.9091)) +(: cnet_isa_73b86250e7 (IsA disability_check regular_payment) (STV 1.0 0.9091)) +(: cnet_isa_73d1353d7d (IsA disability_insurance social_insurance) (STV 1.0 0.9091)) +(: cnet_isa_afbfcb6ea9 (IsA disability_of_walking disability) (STV 1.0 0.9091)) +(: cnet_isa_67175fdd97 (IsA disabled people) (STV 1.0 0.9091)) +(: cnet_isa_c30f5130a0 (IsA disaccharidase enzyme) (STV 1.0 0.9091)) +(: cnet_isa_3ad9538e53 (IsA disaccharide oligosaccharide) (STV 1.0 0.9091)) +(: cnet_isa_41dafcef39 (IsA disadvantage liability) (STV 1.0 0.9091)) +(: cnet_isa_ae2d87c8ba (IsA disaffection disloyalty) (STV 1.0 0.9091)) +(: cnet_isa_722cdd4787 (IsA disagreeableness disposition) (STV 1.0 0.9091)) +(: cnet_isa_9c4b5c89e9 (IsA disagreeableness unpleasantness) (STV 1.0 0.9091)) +(: cnet_isa_aa8b2892a5 (IsA disagreement speech_act) (STV 1.0 0.9091)) +(: cnet_isa_f7e4ebb392 (IsA disagreement conflict) (STV 1.0 0.9091)) +(: cnet_isa_1ab6a44b6f (IsA disambiguation clarification) (STV 1.0 0.9091)) +(: cnet_isa_73f66b273d (IsA disambiguator natural_language_processor) (STV 1.0 0.9091)) +(: cnet_isa_e2d88003b5 (IsA disappearance departure) (STV 1.0 0.9091)) +(: cnet_isa_6038851dde (IsA disappearance happening) (STV 1.0 0.9091)) +(: cnet_isa_c90eb7893d (IsA disappointment failure) (STV 1.0 0.9091)) +(: cnet_isa_0ceda81e18 (IsA disappointment dissatisfaction) (STV 1.0 0.9091)) +(: cnet_isa_a38b48725d (IsA disapprobation disapproval) (STV 1.0 0.9091)) +(: cnet_isa_31d3227b40 (IsA disapproval judgment) (STV 1.0 0.9091)) +(: cnet_isa_52f7d187d7 (IsA disapproval message) (STV 1.0 0.9091)) +(: cnet_isa_8302686167 (IsA disapproval dislike) (STV 1.0 0.9091)) +(: cnet_isa_7c1ad6a022 (IsA disarming demobilization) (STV 1.0 0.9091)) +(: cnet_isa_35a8aeb6ab (IsA disarray untidiness) (STV 1.0 0.9091)) +(: cnet_isa_dbe306db6b (IsA disassociation separation) (STV 1.0 0.9091)) +(: cnet_isa_8451e2e79a (IsA disassortative_mating coupling) (STV 1.0 0.9091)) +(: cnet_isa_ca02681093 (IsA disaster destruction) (STV 1.0 0.9091)) +(: cnet_isa_d400037d38 (IsA disaster_area area) (STV 1.0 0.9091)) +(: cnet_isa_6583c45ab2 (IsA disavowal denial) (STV 1.0 0.9091)) +(: cnet_isa_f9b5e3be51 (IsA disbandment group_action) (STV 1.0 0.9091)) +(: cnet_isa_ee30ea1dcb (IsA disbarment banishment) (STV 1.0 0.9091)) +(: cnet_isa_0453b9649e (IsA disbeliever nonreligious_person) (STV 1.0 0.9091)) +(: cnet_isa_b93c8d9022 (IsA discard abandonment) (STV 1.0 0.9091)) +(: cnet_isa_6fe57e4e1a (IsA discard object) (STV 1.0 0.9091)) +(: cnet_isa_d99bdd1bd0 (IsA discernability distinctness) (STV 1.0 0.9091)) +(: cnet_isa_178b85efb0 (IsA discernment perception) (STV 1.0 0.9091)) +(: cnet_isa_29e993ece0 (IsA discharge emission) (STV 1.0 0.9091)) +(: cnet_isa_84eb75cd93 (IsA discharge shooting) (STV 1.0 0.9091)) +(: cnet_isa_a42493c30c (IsA discharge flow) (STV 1.0 0.9091)) +(: cnet_isa_f5471563e2 (IsA discharge happening) (STV 1.0 0.9091)) +(: cnet_isa_2fe157f51a (IsA discharge electrical_conduction) (STV 1.0 0.9091)) +(: cnet_isa_9830af43a0 (IsA discharge bodily_process) (STV 1.0 0.9091)) +(: cnet_isa_2f36372ed5 (IsA discharge material) (STV 1.0 0.9091)) +(: cnet_isa_9bbf17e424 (IsA discharge_lamp lamp) (STV 1.0 0.9091)) +(: cnet_isa_06147415e7 (IsA discharge_pipe pipe) (STV 1.0 0.9091)) +(: cnet_isa_5190650e60 (IsA discina false_morel) (STV 1.0 0.9091)) +(: cnet_isa_2b73bd5047 (IsA discina_macrospora discina) (STV 1.0 0.9091)) +(: cnet_isa_d80f151683 (IsA disciotis_venosa morel) (STV 1.0 0.9091)) +(: cnet_isa_87abd17088 (IsA disciple follower) (STV 1.0 0.9091)) +(: cnet_isa_e19bd0e460 (IsA discipleship position) (STV 1.0 0.9091)) +(: cnet_isa_ae633a57a8 (IsA discipline punishment) (STV 1.0 0.9091)) +(: cnet_isa_c344bb1f6f (IsA discipline training) (STV 1.0 0.9091)) +(: cnet_isa_8539a1e8e8 (IsA discipline trait) (STV 1.0 0.9091)) +(: cnet_isa_33579e55e4 (IsA discipline knowledge_domain) (STV 1.0 0.9091)) +(: cnet_isa_277e113dd2 (IsA discipline system) (STV 1.0 0.9091)) +(: cnet_isa_32687516e2 (IsA disclaimer repudiation) (STV 1.0 0.9091)) +(: cnet_isa_7920e4c9df (IsA disclosure speech_act) (STV 1.0 0.9091)) +(: cnet_isa_7ad9c000c4 (IsA disco ballroom) (STV 1.0 0.9091)) +(: cnet_isa_a76f66987d (IsA disco_music popular_music) (STV 1.0 0.9091)) +(: cnet_isa_ee125ceb9f (IsA discocephali animal_order) (STV 1.0 0.9091)) +(: cnet_isa_cc4b39d49c (IsA discoglossidae amphibian_family) (STV 1.0 0.9091)) +(: cnet_isa_67137db39b (IsA discography catalog) (STV 1.0 0.9091)) +(: cnet_isa_465b8a7074 (IsA discoid_lupus_erythematosus autoimmune_disease) (STV 1.0 0.9091)) +(: cnet_isa_6055f263ec (IsA discoid_lupus_erythematosus lupus) (STV 1.0 0.9091)) +(: cnet_isa_66463bdfdc (IsA discoloration change_of_color) (STV 1.0 0.9091)) +(: cnet_isa_be93f66adc (IsA discomfiture anxiety) (STV 1.0 0.9091)) +(: cnet_isa_cb600252b7 (IsA discomfiture embarrassment) (STV 1.0 0.9091)) +(: cnet_isa_114d3e3316 (IsA discomfort suffering) (STV 1.0 0.9091)) +(: cnet_isa_9d9e02f1b0 (IsA discomfort condition) (STV 1.0 0.9091)) +(: cnet_isa_5e9fdb121f (IsA discomposure disposition) (STV 1.0 0.9091)) +(: cnet_isa_c29acdaba5 (IsA discomycete ascomycete) (STV 1.0 0.9091)) +(: cnet_isa_110b914bfa (IsA discomycete class) (STV 1.0 0.9091)) +(: cnet_isa_c175f56080 (IsA disconnection separation) (STV 1.0 0.9091)) +(: cnet_isa_2169b362a9 (IsA discontentment longing) (STV 1.0 0.9091)) +(: cnet_isa_736aee37fd (IsA discontinuance termination) (STV 1.0 0.9091)) +(: cnet_isa_a6b42b7e58 (IsA discontinuity separation) (STV 1.0 0.9091)) +(: cnet_isa_7a7cc00d9d (IsA discord strife) (STV 1.0 0.9091)) +(: cnet_isa_295bbc61f4 (IsA discord disagreement) (STV 1.0 0.9091)) +(: cnet_isa_2c3ed9228a (IsA discord disorder) (STV 1.0 0.9091)) +(: cnet_isa_e621b1cc97 (IsA discordance dissonance) (STV 1.0 0.9091)) +(: cnet_isa_1c974fc8e4 (IsA discount decrease) (STV 1.0 0.9091)) +(: cnet_isa_7540eb791f (IsA discount_business commercial_enterprise) (STV 1.0 0.9091)) +(: cnet_isa_b6adcdeb7a (IsA discount_chain chain) (STV 1.0 0.9091)) +(: cnet_isa_b9353a7486 (IsA discount_house mercantile_establishment) (STV 1.0 0.9091)) +(: cnet_isa_54899044cc (IsA discount_rate interest_rate) (STV 1.0 0.9091)) +(: cnet_isa_18988c0c7d (IsA discouragement deterrence) (STV 1.0 0.9091)) +(: cnet_isa_8b4fc7e5ed (IsA discouragement disapproval) (STV 1.0 0.9091)) +(: cnet_isa_40b6a5a8d7 (IsA discouragement despair) (STV 1.0 0.9091)) +(: cnet_isa_8e6d8cb086 (IsA discourse language_unit) (STV 1.0 0.9091)) +(: cnet_isa_d21073c047 (IsA discourtesy behavior) (STV 1.0 0.9091)) +(: cnet_isa_86903aabfe (IsA discourtesy manner) (STV 1.0 0.9091)) +(: cnet_isa_8fbdbb1b1f (IsA discovered_check check) (STV 1.0 0.9091)) +(: cnet_isa_be5243188d (IsA discovery act) (STV 1.0 0.9091)) +(: cnet_isa_13d4eaa771 (IsA discovery insight) (STV 1.0 0.9091)) +(: cnet_isa_03e52c7edd (IsA discovery disclosure) (STV 1.0 0.9091)) +(: cnet_isa_c69c551746 (IsA discrepancy difference) (STV 1.0 0.9091)) +(: cnet_isa_2f117669a1 (IsA discrepancy deviation) (STV 1.0 0.9091)) +(: cnet_isa_3ff5bc6cf5 (IsA discreteness separation) (STV 1.0 0.9091)) +(: cnet_isa_ef89a87533 (IsA discretion wisdom) (STV 1.0 0.9091)) +(: cnet_isa_0ab9f87b8a (IsA discretion sagacity) (STV 1.0 0.9091)) +(: cnet_isa_7ce9bf488f (IsA discretion liberty) (STV 1.0 0.9091)) +(: cnet_isa_0c02e187e7 (IsA discretionary_trust trust) (STV 1.0 0.9091)) +(: cnet_isa_3066e6d1ed (IsA discrimination social_control) (STV 1.0 0.9091)) +(: cnet_isa_a89851d509 (IsA discrimination basic_cognitive_process) (STV 1.0 0.9091)) +(: cnet_isa_0afde07fd5 (IsA discriminative_stimulus stimulation) (STV 1.0 0.9091)) +(: cnet_isa_033809e1e5 (IsA discursiveness indirectness) (STV 1.0 0.9091)) +(: cnet_isa_ad7978ba26 (IsA discus disk) (STV 1.0 0.9091)) +(: cnet_isa_fc362fc34c (IsA discus sport_equipment) (STV 1.0 0.9091)) +(: cnet_isa_9a7aa6837c (IsA discus field_event) (STV 1.0 0.9091)) +(: cnet_isa_9da3ce8786 (IsA discussant participant) (STV 1.0 0.9091)) +(: cnet_isa_431a6fab68 (IsA discussion communication) (STV 1.0 0.9091)) +(: cnet_isa_847ffa137b (IsA discussion speech) (STV 1.0 0.9091)) +(: cnet_isa_559cfadf41 (IsA discussion_section class) (STV 1.0 0.9091)) +(: cnet_isa_34e79f9a06 (IsA disease illness) (STV 1.0 0.9091)) +(: cnet_isa_bd2343438b (IsA disease_of_neuromuscular_junction disease) (STV 1.0 0.9091)) +(: cnet_isa_075b51a96d (IsA disembarrassment easing) (STV 1.0 0.9091)) +(: cnet_isa_6ea81fd671 (IsA disembowelment removal) (STV 1.0 0.9091)) +(: cnet_isa_cb45e09cf0 (IsA disenchantment edification) (STV 1.0 0.9091)) +(: cnet_isa_119b28ecf2 (IsA disenfranchisement management) (STV 1.0 0.9091)) +(: cnet_isa_72b22b880c (IsA disengagement retreat) (STV 1.0 0.9091)) +(: cnet_isa_73953a1cf1 (IsA disentangler person) (STV 1.0 0.9091)) +(: cnet_isa_82bdefa290 (IsA disequilibrium situation) (STV 1.0 0.9091)) +(: cnet_isa_fd745edaa3 (IsA disestablishment group_action) (STV 1.0 0.9091)) +(: cnet_isa_3b01eba177 (IsA disesteem dishonor) (STV 1.0 0.9091)) +(: cnet_isa_8e3b909e3e (IsA disfavor inclination) (STV 1.0 0.9091)) +(: cnet_isa_65e5bfe110 (IsA disfavor rejection) (STV 1.0 0.9091)) +(: cnet_isa_6d387b78cf (IsA disfigurement appearance) (STV 1.0 0.9091)) +(: cnet_isa_57a1140588 (IsA disfluency unskillfulness) (STV 1.0 0.9091)) +(: cnet_isa_b4bf479ca9 (IsA disfranchisement discontinuance) (STV 1.0 0.9091)) +(: cnet_isa_d9a39bf9f8 (IsA disgruntlement discontentment) (STV 1.0 0.9091)) +(: cnet_isa_934fc526c7 (IsA disguise concealment) (STV 1.0 0.9091)) +(: cnet_isa_1a1868e2f0 (IsA disguise attire) (STV 1.0 0.9091)) +(: cnet_isa_4be168930c (IsA disguise semblance) (STV 1.0 0.9091)) +(: cnet_isa_cc2216247e (IsA disgust emotion) (STV 1.0 0.9524)) +(: cnet_isa_43e801f2c9 (IsA disgust dislike) (STV 1.0 0.9091)) +(: cnet_isa_657700b989 (IsA disgustingness unpalatability) (STV 1.0 0.9091)) +(: cnet_isa_68b0e9b678 (IsA dish plate) (STV 1.0 0.9091)) +(: cnet_isa_85fea0fdc9 (IsA dish container) (STV 1.0 0.9091)) +(: cnet_isa_f1677bc1a4 (IsA dish crockery) (STV 1.0 0.9091)) +(: cnet_isa_df1fad2eb8 (IsA dish directional_antenna) (STV 1.0 0.9091)) +(: cnet_isa_2e916d3521 (IsA dish nutriment) (STV 1.0 0.9091)) +(: cnet_isa_790e6cbbd3 (IsA dish containerful) (STV 1.0 0.9091)) +(: cnet_isa_003da5947e (IsA dish_rack rack) (STV 1.0 0.9091)) +(: cnet_isa_4e8989da5b (IsA dish_towel towel) (STV 1.0 0.9091)) +(: cnet_isa_da3589a713 (IsA dishabille condition) (STV 1.0 0.9091)) +(: cnet_isa_181576023a (IsA disharmony dissonance) (STV 1.0 0.9091)) +(: cnet_isa_786ca2958a (IsA disheartenment discouragement) (STV 1.0 0.9091)) +(: cnet_isa_99e12c7d7d (IsA dishonesty wrongdoing) (STV 1.0 0.9091)) +(: cnet_isa_c5edb6f6b1 (IsA dishonesty unrighteousness) (STV 1.0 0.9091)) +(: cnet_isa_e6ee16ba3a (IsA dishonor unrighteousness) (STV 1.0 0.9091)) +(: cnet_isa_584ce1ee88 (IsA dishonor standing) (STV 1.0 0.9091)) +(: cnet_isa_49259e34fc (IsA dishonorable_discharge dismissal) (STV 1.0 0.9091)) +(: cnet_isa_7fe4b556e8 (IsA dishonorableness unrighteousness) (STV 1.0 0.9091)) +(: cnet_isa_046c843b70 (IsA dishpan pan) (STV 1.0 0.9091)) +(: cnet_isa_d6b5de46f5 (IsA dishrag piece_of_cloth) (STV 1.0 0.9091)) +(: cnet_isa_ed2384ecd5 (IsA dishwasher white_good) (STV 1.0 0.9091)) +(: cnet_isa_1c496b102b (IsA dishwasher laborer) (STV 1.0 0.9091)) +(: cnet_isa_0c0db67d80 (IsA dishwasher_detergent detergent) (STV 1.0 0.9091)) +(: cnet_isa_a27ce5cf1d (IsA dishwasher_safe safe) (STV 1.0 0.9091)) +(: cnet_isa_f9e5f3a868 (IsA dishwashing wash) (STV 1.0 0.9091)) +(: cnet_isa_a16923d847 (IsA dishwater water) (STV 1.0 0.9091)) +(: cnet_isa_faa447185d (IsA disincentive rational_motive) (STV 1.0 0.9091)) +(: cnet_isa_91c8c2db20 (IsA disinclination dislike) (STV 1.0 0.9091)) +(: cnet_isa_e3038c3a06 (IsA disinfectant agent) (STV 1.0 0.9091)) +(: cnet_isa_221b4ab39e (IsA disinfection medical_care) (STV 1.0 0.9091)) +(: cnet_isa_8eb17aa4a9 (IsA disinfestation cleaning) (STV 1.0 0.9091)) +(: cnet_isa_ae77e6af00 (IsA disinflation economic_process) (STV 1.0 0.9091)) +(: cnet_isa_d50b877c85 (IsA disinformation misinformation) (STV 1.0 0.9091)) +(: cnet_isa_91749692a5 (IsA disingenuousness dishonesty) (STV 1.0 0.9091)) +(: cnet_isa_b02e468eba (IsA disinheritance discontinuance) (STV 1.0 0.9091)) +(: cnet_isa_f4cf345340 (IsA disintegration disability) (STV 1.0 0.9091)) +(: cnet_isa_67beae80b0 (IsA disinterest tolerance) (STV 1.0 0.9091)) +(: cnet_isa_2ee7980567 (IsA disinterestedness impartiality) (STV 1.0 0.9091)) +(: cnet_isa_31bdcf76a9 (IsA disinvestment withdrawal) (STV 1.0 0.9091)) +(: cnet_isa_514c254697 (IsA disjointedness incoherence) (STV 1.0 0.9091)) +(: cnet_isa_42b927d431 (IsA disjunction separation) (STV 1.0 0.9091)) +(: cnet_isa_6bab9329ed (IsA disjunctive_conjunction conjunction) (STV 1.0 0.9091)) +(: cnet_isa_e8d9dd5089 (IsA disk circle) (STV 1.0 0.9091)) +(: cnet_isa_0a43d6a050 (IsA disk plate) (STV 1.0 0.9091)) +(: cnet_isa_9baec08685 (IsA disk round_shape) (STV 1.0 0.9091)) +(: cnet_isa_8744fcb887 (IsA disk_access access) (STV 1.0 0.9091)) +(: cnet_isa_0b3a989e17 (IsA disk_brake hydraulic_brake) (STV 1.0 0.9091)) +(: cnet_isa_ccaba04b8d (IsA disk_cache cache) (STV 1.0 0.9091)) +(: cnet_isa_93d3f49a85 (IsA disk_clutch friction_clutch) (STV 1.0 0.9091)) +(: cnet_isa_201e2c5d51 (IsA disk_controller control) (STV 1.0 0.9091)) +(: cnet_isa_b0e6fc2755 (IsA disk_drive drive) (STV 1.0 0.9091)) +(: cnet_isa_99ce57880b (IsA disk_error hardware_error) (STV 1.0 0.9091)) +(: cnet_isa_7a494777fd (IsA disk_file computer_file) (STV 1.0 0.9091)) +(: cnet_isa_786f2bb2a2 (IsA disk_harrow harrow) (STV 1.0 0.9091)) +(: cnet_isa_c437b8b336 (IsA disk_jockey broadcaster) (STV 1.0 0.9091)) +(: cnet_isa_acb5dd1bb9 (IsA disk_overhead disk_space) (STV 1.0 0.9091)) +(: cnet_isa_323dfaecd8 (IsA disk_pack pack) (STV 1.0 0.9091)) +(: cnet_isa_09c9597dc2 (IsA disk_space space) (STV 1.0 0.9091)) +(: cnet_isa_f339d56105 (IsA diskette magnetic_disk) (STV 1.0 0.9091)) +(: cnet_isa_b4ca3c5525 (IsA dislike feeling) (STV 1.0 0.9091)) +(: cnet_isa_80e7ef35fc (IsA dislocation disruption) (STV 1.0 0.9091)) +(: cnet_isa_0ddf955947 (IsA dislocation interruption) (STV 1.0 0.9091)) +(: cnet_isa_90704c061c (IsA dislocation injury) (STV 1.0 0.9091)) +(: cnet_isa_9899a34c17 (IsA dislodgment removal) (STV 1.0 0.9091)) +(: cnet_isa_9397cdf695 (IsA disloyalty infidelity) (STV 1.0 0.9091)) +(: cnet_isa_299cb0e762 (IsA dismantling activity) (STV 1.0 0.9091)) +(: cnet_isa_5c5cb0c38e (IsA dismemberment mutilation) (STV 1.0 0.9091)) +(: cnet_isa_18631c602d (IsA dismemberment torture) (STV 1.0 0.9091)) +(: cnet_isa_bdfaef4d2f (IsA dismissal termination) (STV 1.0 0.9091)) +(: cnet_isa_cd5b342649 (IsA dismissal notice) (STV 1.0 0.9091)) +(: cnet_isa_8ec37b6b48 (IsA dismissal permission) (STV 1.0 0.9091)) +(: cnet_isa_76259e5e02 (IsA dismount discontinuance) (STV 1.0 0.9091)) +(: cnet_isa_73d9829f48 (IsA disobedience insubordination) (STV 1.0 0.9091)) +(: cnet_isa_2d1001525a (IsA disobedience intractability) (STV 1.0 0.9091)) +(: cnet_isa_3db3f43938 (IsA disorder physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_1334096845 (IsA disorder state) (STV 1.0 0.9091)) +(: cnet_isa_4f92a4c4c7 (IsA disorderliness condition) (STV 1.0 0.9091)) +(: cnet_isa_be16f5af8d (IsA disorderly_conduct misdemeanor) (STV 1.0 0.9091)) +(: cnet_isa_431744b329 (IsA disorganization disturbance) (STV 1.0 0.9091)) +(: cnet_isa_eca81bb2b7 (IsA disorganization disorderliness) (STV 1.0 0.9091)) +(: cnet_isa_939c9e5a89 (IsA disorientation confusion) (STV 1.0 0.9091)) +(: cnet_isa_8de3492df0 (IsA disorientation delusion) (STV 1.0 0.9091)) +(: cnet_isa_ee10b6320b (IsA disownment repudiation) (STV 1.0 0.9091)) +(: cnet_isa_ce253fca10 (IsA disparagement disapproval) (STV 1.0 0.9091)) +(: cnet_isa_e1b214aace (IsA disparagement disrespect) (STV 1.0 0.9091)) +(: cnet_isa_63ae7e97fe (IsA disparateness dissimilarity) (STV 1.0 0.9091)) +(: cnet_isa_59456baf1b (IsA disparity inequality) (STV 1.0 0.9091)) +(: cnet_isa_e0aa1bf4a7 (IsA dispassion unemotionality) (STV 1.0 0.9091)) +(: cnet_isa_9554548cdc (IsA dispatch departure) (STV 1.0 0.9091)) +(: cnet_isa_8fe591afcd (IsA dispatch killing) (STV 1.0 0.9091)) +(: cnet_isa_c4bcc4ea33 (IsA dispatch celerity) (STV 1.0 0.9091)) +(: cnet_isa_499e7f8c5c (IsA dispatch report) (STV 1.0 0.9091)) +(: cnet_isa_21251e9861 (IsA dispatch_case case) (STV 1.0 0.9091)) +(: cnet_isa_3f8d20ec5d (IsA dispatch_rider messenger) (STV 1.0 0.9091)) +(: cnet_isa_1a3351ac8c (IsA dispatcher employee) (STV 1.0 0.9091)) +(: cnet_isa_de84963dfc (IsA dispensability inessentiality) (STV 1.0 0.9091)) +(: cnet_isa_2a0d15ece9 (IsA dispensary clinic) (STV 1.0 0.9091)) +(: cnet_isa_a2bb54753a (IsA dispensation distribution) (STV 1.0 0.9091)) +(: cnet_isa_0f1ba09964 (IsA dispensation license) (STV 1.0 0.9091)) +(: cnet_isa_6c23f7a78b (IsA dispensation share) (STV 1.0 0.9091)) +(: cnet_isa_406473be6c (IsA dispenser container) (STV 1.0 0.9091)) +(: cnet_isa_86cf4a3a6a (IsA dispenser supplier) (STV 1.0 0.9091)) +(: cnet_isa_37081a8603 (IsA dispersed_phase phase) (STV 1.0 0.9091)) +(: cnet_isa_534be0d893 (IsA dispersing_phase phase) (STV 1.0 0.9091)) +(: cnet_isa_79d9aacdd3 (IsA dispersion spread) (STV 1.0 0.9091)) +(: cnet_isa_e430f57083 (IsA displaced_fracture fracture) (STV 1.0 0.9091)) +(: cnet_isa_b30c83f193 (IsA displaced_person refugee) (STV 1.0 0.9091)) +(: cnet_isa_19f2d4c4d1 (IsA displacement movement) (STV 1.0 0.9091)) +(: cnet_isa_bb57d09679 (IsA displacement rejection) (STV 1.0 0.9091)) +(: cnet_isa_bb853970ed (IsA displacement chemical_reaction) (STV 1.0 0.9091)) +(: cnet_isa_222dec0f24 (IsA displacement defense_mechanism) (STV 1.0 0.9091)) +(: cnet_isa_09717fee80 (IsA displacement_vector vector) (STV 1.0 0.9091)) +(: cnet_isa_3a8bc14196 (IsA display show) (STV 1.0 0.9091)) +(: cnet_isa_dbd5e1925f (IsA display electronic_device) (STV 1.0 0.9091)) +(: cnet_isa_77a33e3f6f (IsA display representation) (STV 1.0 0.9091)) +(: cnet_isa_36f8316289 (IsA display communication) (STV 1.0 0.9091)) +(: cnet_isa_49bd0bc381 (IsA display demonstration) (STV 1.0 0.9091)) +(: cnet_isa_06c62fd045 (IsA display disclosure) (STV 1.0 0.9091)) +(: cnet_isa_32782f0d01 (IsA display_adapter electronic_device) (STV 1.0 0.9091)) +(: cnet_isa_2d5a151b6f (IsA display_panel display) (STV 1.0 0.9091)) +(: cnet_isa_74272fa83c (IsA display_window window) (STV 1.0 0.9091)) +(: cnet_isa_5fdf79708e (IsA displeasure annoyance) (STV 1.0 0.9091)) +(: cnet_isa_110116b7af (IsA displeasure dissatisfaction) (STV 1.0 0.9091)) +(: cnet_isa_afaf9e66c8 (IsA disposable item) (STV 1.0 0.9091)) +(: cnet_isa_889b97640d (IsA disposable_income income) (STV 1.0 0.9091)) +(: cnet_isa_c7ee64c7e9 (IsA disposal act) (STV 1.0 0.9091)) +(: cnet_isa_e5fa72dd61 (IsA disposal kitchen_appliance) (STV 1.0 0.9091)) +(: cnet_isa_0e7d242340 (IsA disposal power) (STV 1.0 0.9091)) +(: cnet_isa_696007b858 (IsA disposition nature) (STV 1.0 0.9091)) +(: cnet_isa_0c36e221e5 (IsA disposition property) (STV 1.0 0.9091)) +(: cnet_isa_60d0243c32 (IsA disproof evidence) (STV 1.0 0.9091)) +(: cnet_isa_2897862426 (IsA disproportion disparity) (STV 1.0 0.9091)) +(: cnet_isa_5fbe4db65b (IsA disputant person) (STV 1.0 0.9091)) +(: cnet_isa_5225bc4633 (IsA dispute resistance) (STV 1.0 0.9091)) +(: cnet_isa_d2dd7b6348 (IsA dispute disagreement) (STV 1.0 0.9091)) +(: cnet_isa_7a50c535aa (IsA disqualification prevention) (STV 1.0 0.9091)) +(: cnet_isa_470e1813e8 (IsA disqualification unfitness) (STV 1.0 0.9091)) +(: cnet_isa_b9a9734dc9 (IsA disquiet discomposure) (STV 1.0 0.9091)) +(: cnet_isa_21ae1356be (IsA disquisition essay) (STV 1.0 0.9091)) +(: cnet_isa_6c4e9ed32d (IsA disregard mistreatment) (STV 1.0 0.9091)) +(: cnet_isa_0858924bc6 (IsA disregard inattention) (STV 1.0 0.9091)) +(: cnet_isa_02dbc9bd02 (IsA disrepair unsoundness) (STV 1.0 0.9091)) +(: cnet_isa_b3d8b4fc4a (IsA disreputable_person unwelcome_person) (STV 1.0 0.9091)) +(: cnet_isa_57660e3252 (IsA disrepute dishonor) (STV 1.0 0.9091)) +(: cnet_isa_860b8d6a7c (IsA disrespect attitude) (STV 1.0 0.9091)) +(: cnet_isa_ee02076ae7 (IsA disrespect message) (STV 1.0 0.9091)) +(: cnet_isa_0437fd9bdb (IsA disrupting_explosive high_explosive) (STV 1.0 0.9091)) +(: cnet_isa_23b4e22401 (IsA disruption disturbance) (STV 1.0 0.9091)) +(: cnet_isa_26579b8ef9 (IsA dissatisfaction discontentment) (STV 1.0 0.9091)) +(: cnet_isa_6b855bbc17 (IsA dissection analysis) (STV 1.0 0.9091)) +(: cnet_isa_2df3968563 (IsA dissection cut) (STV 1.0 0.9091)) +(: cnet_isa_c14d5d9860 (IsA dissemination distribution) (STV 1.0 0.9091)) +(: cnet_isa_60636acc1e (IsA dissemination transmission) (STV 1.0 0.9091)) +(: cnet_isa_c1f976b284 (IsA dissent disagreement) (STV 1.0 0.9091)) +(: cnet_isa_e952113318 (IsA dissent objection) (STV 1.0 0.9091)) +(: cnet_isa_f4486a1a69 (IsA dissenter person) (STV 1.0 0.9091)) +(: cnet_isa_22dabea9ed (IsA dissenting_opinion opinion) (STV 1.0 0.9091)) +(: cnet_isa_808d394e24 (IsA dissertation treatise) (STV 1.0 0.9091)) +(: cnet_isa_b1cf52b959 (IsA disservice injury) (STV 1.0 0.9091)) +(: cnet_isa_75518e02ff (IsA dissidence disagreement) (STV 1.0 0.9091)) +(: cnet_isa_016543edd4 (IsA dissilience emergence) (STV 1.0 0.9091)) +(: cnet_isa_5894b4fb70 (IsA dissimilarity difference) (STV 1.0 0.9091)) +(: cnet_isa_165e9ead3e (IsA dissimilation linguistic_process) (STV 1.0 0.9091)) +(: cnet_isa_1d752a43e2 (IsA dissipation dispersion) (STV 1.0 0.9091)) +(: cnet_isa_f31fc74a06 (IsA dissociation separation) (STV 1.0 0.9091)) +(: cnet_isa_2526372866 (IsA dissociation chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_160b37ebc0 (IsA dissociation psychological_state) (STV 1.0 0.9091)) +(: cnet_isa_f6d6a27414 (IsA dissociation_constant equilibrium_constant) (STV 1.0 0.9091)) +(: cnet_isa_91e83785cd (IsA dissociative_disorder dissociation) (STV 1.0 0.9091)) +(: cnet_isa_5e938dc284 (IsA dissociative_disorder mental_disorder) (STV 1.0 0.9091)) +(: cnet_isa_b4e732ad1f (IsA dissolubility physical_property) (STV 1.0 0.9091)) +(: cnet_isa_f5a4d7afc2 (IsA dissoluteness indiscipline) (STV 1.0 0.9091)) +(: cnet_isa_c45083bf0d (IsA dissolution termination) (STV 1.0 0.9091)) +(: cnet_isa_bcc848c87a (IsA dissolution natural_process) (STV 1.0 0.9091)) +(: cnet_isa_3cbd07b3f1 (IsA dissolution_of_marriage annulment) (STV 1.0 0.9091)) +(: cnet_isa_b9b4fe2b5f (IsA dissolve transition) (STV 1.0 0.9091)) +(: cnet_isa_1436b13478 (IsA dissolving liquefaction) (STV 1.0 0.9091)) +(: cnet_isa_a1f3b6e874 (IsA dissonance sound_property) (STV 1.0 0.9091)) +(: cnet_isa_4e0e90a5bb (IsA dissonance sound) (STV 1.0 0.9091)) +(: cnet_isa_e40d8702b8 (IsA dissuasion communication) (STV 1.0 0.9091)) +(: cnet_isa_67f12ee5ab (IsA dissuasion discouragement) (STV 1.0 0.9091)) +(: cnet_isa_9c1cc0eef4 (IsA distaff staff) (STV 1.0 0.9091)) +(: cnet_isa_98c1c5bc49 (IsA distaff sphere) (STV 1.0 0.9091)) +(: cnet_isa_e027745990 (IsA distal_muscular_dystrophy muscular_dystrophy) (STV 1.0 0.9091)) +(: cnet_isa_75e54cda22 (IsA distance size) (STV 1.0 0.9091)) +(: cnet_isa_a54c9c61c1 (IsA distance spacing) (STV 1.0 0.9091)) +(: cnet_isa_fc449242ac (IsA distance indifference) (STV 1.0 0.9091)) +(: cnet_isa_b805412e1f (IsA distance region) (STV 1.0 0.9091)) +(: cnet_isa_f5107f8c64 (IsA distance point) (STV 1.0 0.9091)) +(: cnet_isa_593eb4a8c4 (IsA distance time_interval) (STV 1.0 0.9091)) +(: cnet_isa_a554fbe89b (IsA distance_vision sight) (STV 1.0 0.9091)) +(: cnet_isa_176d21dad0 (IsA distemper painting) (STV 1.0 0.9091)) +(: cnet_isa_eea89574c2 (IsA distemper paint) (STV 1.0 0.9091)) +(: cnet_isa_aed938e82f (IsA distemper animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_877cb79688 (IsA distention expansion) (STV 1.0 0.9091)) +(: cnet_isa_c6c708eb01 (IsA distillate liquid) (STV 1.0 0.9091)) +(: cnet_isa_47e91aabbc (IsA distillation natural_process) (STV 1.0 0.9091)) +(: cnet_isa_cb50adbce6 (IsA distilled_water water) (STV 1.0 0.9091)) +(: cnet_isa_273e7f893f (IsA distiller manufacturer) (STV 1.0 0.9091)) +(: cnet_isa_fc39c88698 (IsA distillery factory) (STV 1.0 0.9091)) +(: cnet_isa_d52f56d00a (IsA distillery plant) (STV 1.0 0.9091)) +(: cnet_isa_3deb324f9d (IsA distinction difference) (STV 1.0 0.9091)) +(: cnet_isa_0d16c32bdb (IsA distinction award) (STV 1.0 0.9091)) +(: cnet_isa_e06f7a0bf4 (IsA distinctness clearness) (STV 1.0 0.9091)) +(: cnet_isa_da660fbdd1 (IsA distinguished_conduct_medal decoration) (STV 1.0 0.9091)) +(: cnet_isa_f88c57048e (IsA distinguished_flying_cross decoration) (STV 1.0 0.9091)) +(: cnet_isa_6813bc7559 (IsA distinguished_service_cross decoration) (STV 1.0 0.9091)) +(: cnet_isa_6d8ff9251b (IsA distinguished_service_medal decoration) (STV 1.0 0.9091)) +(: cnet_isa_d52d582acb (IsA distinguished_service_order decoration) (STV 1.0 0.9091)) +(: cnet_isa_bb43b4f8cc (IsA distorted_shape shape) (STV 1.0 0.9091)) +(: cnet_isa_a02b617eee (IsA distortion falsification) (STV 1.0 0.9091)) +(: cnet_isa_f6d771f96c (IsA distortion mistake) (STV 1.0 0.9091)) +(: cnet_isa_057cbc78db (IsA distortion damage) (STV 1.0 0.9091)) +(: cnet_isa_c2f545cfbe (IsA distortion acoustic_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_36e605b00d (IsA distortion electrical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_2d5a9c55e6 (IsA distortionist painter) (STV 1.0 0.9091)) +(: cnet_isa_2dafd0321b (IsA distraction revision) (STV 1.0 0.9091)) +(: cnet_isa_93a2083aab (IsA distraction confusion) (STV 1.0 0.9091)) +(: cnet_isa_a37aa38f73 (IsA distraction inattention) (STV 1.0 0.9091)) +(: cnet_isa_d82bf0877a (IsA distress seizure) (STV 1.0 0.9091)) +(: cnet_isa_3977a2846c (IsA distress pain) (STV 1.0 0.9091)) +(: cnet_isa_d80072f6a3 (IsA distress adversity) (STV 1.0 0.9091)) +(: cnet_isa_5943126aea (IsA distress_signal signal) (STV 1.0 0.9091)) +(: cnet_isa_2cfe819168 (IsA distressingness quality) (STV 1.0 0.9091)) +(: cnet_isa_617cdd3f36 (IsA distributary branch) (STV 1.0 0.9091)) +(: cnet_isa_152b0eaf00 (IsA distributed_data_processing data_processing) (STV 1.0 0.9091)) +(: cnet_isa_95914bbb2e (IsA distributed_fire fire) (STV 1.0 0.9091)) +(: cnet_isa_05377e59a3 (IsA distribution act) (STV 1.0 0.9091)) +(: cnet_isa_277c44e5c3 (IsA distribution commerce) (STV 1.0 0.9091)) +(: cnet_isa_f19963bce0 (IsA distribution spacing) (STV 1.0 0.9091)) +(: cnet_isa_19743d2cd2 (IsA distribution arrangement) (STV 1.0 0.9091)) +(: cnet_isa_1756c36e90 (IsA distribution_agreement contract) (STV 1.0 0.9091)) +(: cnet_isa_c76a121ee4 (IsA distribution_channel marketing) (STV 1.0 0.9091)) +(: cnet_isa_1692ca38d2 (IsA distribution_cost cost) (STV 1.0 0.9091)) +(: cnet_isa_04fe7a7b22 (IsA distribution_law law) (STV 1.0 0.9091)) +(: cnet_isa_40971505f6 (IsA distribution_list list) (STV 1.0 0.9091)) +(: cnet_isa_a8ed8867e9 (IsA distributive_shock shock) (STV 1.0 0.9091)) +(: cnet_isa_51cb7987a6 (IsA distributor electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_e385b94fff (IsA distributor company) (STV 1.0 0.9091)) +(: cnet_isa_bca3ba864d (IsA distributor supplier) (STV 1.0 0.9091)) +(: cnet_isa_9619d4b40c (IsA distributor_cam cam) (STV 1.0 0.9091)) +(: cnet_isa_3f64b67860 (IsA distributor_cap cap) (STV 1.0 0.9091)) +(: cnet_isa_c2ba022c73 (IsA distributor_housing housing) (STV 1.0 0.9091)) +(: cnet_isa_56f5b635e2 (IsA distributor_point contact) (STV 1.0 0.9091)) +(: cnet_isa_f035ee179f (IsA district region) (STV 1.0 0.9091)) +(: cnet_isa_3fd4d66a52 (IsA district_attorney prosecutor) (STV 1.0 0.9091)) +(: cnet_isa_69419aca11 (IsA district_line boundary) (STV 1.0 0.9091)) +(: cnet_isa_a13cbbcff8 (IsA district_manager director) (STV 1.0 0.9091)) +(: cnet_isa_a74355bfbe (IsA distrust trait) (STV 1.0 0.9091)) +(: cnet_isa_032c89812d (IsA disturbance motion) (STV 1.0 0.9091)) +(: cnet_isa_39d647081a (IsA disturbance agitation) (STV 1.0 0.9091)) +(: cnet_isa_4b4cd8a619 (IsA disturbance disorder) (STV 1.0 0.9091)) +(: cnet_isa_fb1e3770b5 (IsA disturber troublemaker) (STV 1.0 0.9091)) +(: cnet_isa_082e93af8d (IsA disunion separation) (STV 1.0 0.9091)) +(: cnet_isa_779049f268 (IsA disunity disagreement) (STV 1.0 0.9091)) +(: cnet_isa_5d73f9adcd (IsA disyllable word) (STV 1.0 0.9091)) +(: cnet_isa_c8ab2641e5 (IsA dita tree) (STV 1.0 0.9091)) +(: cnet_isa_5fe2814e56 (IsA ditch excavation) (STV 1.0 0.9091)) +(: cnet_isa_3a5b6109c9 (IsA ditch waterway) (STV 1.0 0.9091)) +(: cnet_isa_c5727d1987 (IsA ditch_digger digger) (STV 1.0 0.9091)) +(: cnet_isa_71df47a5da (IsA ditch_reed reed) (STV 1.0 0.9091)) +(: cnet_isa_9b3fd778e9 (IsA ditch_spade spade) (STV 1.0 0.9091)) +(: cnet_isa_fca33ae620 (IsA dither agitation) (STV 1.0 0.9091)) +(: cnet_isa_86e7d748c6 (IsA dithering video_digitizing) (STV 1.0 0.9091)) +(: cnet_isa_6c597aea32 (IsA dithyramb hymn) (STV 1.0 0.9091)) +(: cnet_isa_56c1155435 (IsA dithyramb address) (STV 1.0 0.9091)) +(: cnet_isa_f630bdbab6 (IsA dithyramb writing) (STV 1.0 0.9091)) +(: cnet_isa_f224c53728 (IsA dittany_of_crete origanum) (STV 1.0 0.9091)) +(: cnet_isa_7cf40cb55f (IsA ditto_mark mark) (STV 1.0 0.9091)) +(: cnet_isa_29ca11af4a (IsA ditty song) (STV 1.0 0.9091)) +(: cnet_isa_5af2439b51 (IsA ditty_bag kit) (STV 1.0 0.9091)) +(: cnet_isa_012da1b491 (IsA diuresis symptom) (STV 1.0 0.9091)) +(: cnet_isa_ec3948c205 (IsA diuretic_drug drug) (STV 1.0 0.9091)) +(: cnet_isa_5fabb7b9f0 (IsA diurnal_variation variation) (STV 1.0 0.9091)) +(: cnet_isa_588b2dbeb9 (IsA divan boardroom) (STV 1.0 0.9091)) +(: cnet_isa_83a70f645a (IsA divan chamber) (STV 1.0 0.9091)) +(: cnet_isa_e4eea54f20 (IsA divan sofa) (STV 1.0 0.9091)) +(: cnet_isa_4a6475cce4 (IsA divan anthology) (STV 1.0 0.9091)) +(: cnet_isa_a3858a7bb5 (IsA divan privy_council) (STV 1.0 0.9091)) +(: cnet_isa_b11129f2f0 (IsA divarication branching) (STV 1.0 0.9091)) +(: cnet_isa_2dc8511d67 (IsA dive descent) (STV 1.0 0.9091)) +(: cnet_isa_4a2eddd7ff (IsA dive swimming) (STV 1.0 0.9091)) +(: cnet_isa_c769902fc3 (IsA dive_bomber bomber) (STV 1.0 0.9091)) +(: cnet_isa_4dbf075012 (IsA dive_bombing bombing_run) (STV 1.0 0.9091)) +(: cnet_isa_28e7d96c19 (IsA diver explorer) (STV 1.0 0.9091)) +(: cnet_isa_5e205d89cf (IsA diver swimmer) (STV 1.0 0.9091)) +(: cnet_isa_8ad2aa1e2e (IsA divergence separation) (STV 1.0 0.9091)) +(: cnet_isa_ab410f64b6 (IsA divergence sery) (STV 1.0 0.9091)) +(: cnet_isa_3a6c85b2aa (IsA divergent_thinker thinker) (STV 1.0 0.9091)) +(: cnet_isa_ee0a519484 (IsA divergent_thinking thinking) (STV 1.0 0.9091)) +(: cnet_isa_8c6b473fa5 (IsA diverging_len len) (STV 1.0 0.9091)) +(: cnet_isa_e4ef039c98 (IsA diverseness heterogeneity) (STV 1.0 0.9091)) +(: cnet_isa_e1d024c80d (IsA diversification change) (STV 1.0 0.9091)) +(: cnet_isa_1610fc6506 (IsA diversification condition) (STV 1.0 0.9091)) +(: cnet_isa_1c94ba53b3 (IsA diversion activity) (STV 1.0 0.9091)) +(: cnet_isa_f6a7c25509 (IsA diversion attack) (STV 1.0 0.9091)) +(: cnet_isa_92c751b095 (IsA diversion turn) (STV 1.0 0.9091)) +(: cnet_isa_4e5d3c52f5 (IsA diversionary_landing diversion) (STV 1.0 0.9091)) +(: cnet_isa_ff0d990120 (IsA diversity condition) (STV 1.0 0.9091)) +(: cnet_isa_682b32deb4 (IsA diverticulitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_7106208df6 (IsA diverticulosis pathology) (STV 1.0 0.9091)) +(: cnet_isa_fb0f4058d3 (IsA diverticulum hernia) (STV 1.0 0.9091)) +(: cnet_isa_3726fdb668 (IsA divertimento musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_a518e60420 (IsA divestiture sale) (STV 1.0 0.9091)) +(: cnet_isa_03623c8914 (IsA divestiture court_order) (STV 1.0 0.9091)) +(: cnet_isa_6ae5e11025 (IsA divi_divi bean) (STV 1.0 0.9091)) +(: cnet_isa_dfd628e411 (IsA divi_divi tree) (STV 1.0 0.9091)) +(: cnet_isa_c414cbcc4e (IsA divide disagreement) (STV 1.0 0.9091)) +(: cnet_isa_b53af5aca1 (IsA divided_highway highway) (STV 1.0 0.9091)) +(: cnet_isa_454c0c8982 (IsA dividend bonus) (STV 1.0 0.9091)) +(: cnet_isa_e907a8da98 (IsA dividend net_income) (STV 1.0 0.9091)) +(: cnet_isa_1a153abca4 (IsA dividend number) (STV 1.0 0.9091)) +(: cnet_isa_c80130a85a (IsA dividend_warrant draft) (STV 1.0 0.9091)) +(: cnet_isa_819eae1a41 (IsA divider drafting_instrument) (STV 1.0 0.9091)) +(: cnet_isa_1ee6e4afa7 (IsA divider person) (STV 1.0 0.9091)) +(: cnet_isa_80d0bb7a45 (IsA divination prophecy) (STV 1.0 0.9091)) +(: cnet_isa_34a48f3ea8 (IsA divination guess) (STV 1.0 0.9091)) +(: cnet_isa_0efe9cc002 (IsA divine_guidance cognitive_factor) (STV 1.0 0.9091)) +(: cnet_isa_5801f70cb2 (IsA divine_law law) (STV 1.0 0.9091)) +(: cnet_isa_e9d9579571 (IsA divine_messenger angel) (STV 1.0 0.9091)) +(: cnet_isa_8bd71d90f1 (IsA divine_office office) (STV 1.0 0.9091)) +(: cnet_isa_8c3b1c04a9 (IsA divine_right_of_king doctrine) (STV 1.0 0.9091)) +(: cnet_isa_20cc7d1101 (IsA diviner visionary) (STV 1.0 0.9091)) +(: cnet_isa_12dfcd5adc (IsA diving match) (STV 1.0 0.9091)) +(: cnet_isa_9a6247aaab (IsA diving_bell submersible) (STV 1.0 0.9091)) +(: cnet_isa_228f0a000f (IsA diving_board springboard) (STV 1.0 0.9091)) +(: cnet_isa_700ad5caf3 (IsA diving_duck duck) (STV 1.0 0.9091)) +(: cnet_isa_4ce62a1653 (IsA diving_petrel pelagic_bird) (STV 1.0 0.9091)) +(: cnet_isa_0ac900be25 (IsA diving_suit protective_garment) (STV 1.0 0.9091)) +(: cnet_isa_fb61f04018 (IsA divining_rod stick) (STV 1.0 0.9091)) +(: cnet_isa_91beb16d92 (IsA divinity quality) (STV 1.0 0.9091)) +(: cnet_isa_b387c57502 (IsA divinity fudge) (STV 1.0 0.9091)) +(: cnet_isa_f1bf9a1ce7 (IsA divisibility quality) (STV 1.0 0.9091)) +(: cnet_isa_da95529c8b (IsA division operation) (STV 1.0 0.9091)) +(: cnet_isa_0d1abc8b5b (IsA division arithmetic_operation) (STV 1.0 0.9091)) +(: cnet_isa_e5470eff0f (IsA division separation) (STV 1.0 0.9091)) +(: cnet_isa_a014d556cd (IsA division biological_group) (STV 1.0 0.9091)) +(: cnet_isa_95a5896a2f (IsA division phylum) (STV 1.0 0.9091)) +(: cnet_isa_9f486f9091 (IsA division discord) (STV 1.0 0.9091)) +(: cnet_isa_f55c27ac87 (IsA division administrative_unit) (STV 1.0 0.9091)) +(: cnet_isa_4f2a7a3861 (IsA division air_unit) (STV 1.0 0.9091)) +(: cnet_isa_8c31c2a96c (IsA division army_unit) (STV 1.0 0.9091)) +(: cnet_isa_98143ab339 (IsA division naval_unit) (STV 1.0 0.9091)) +(: cnet_isa_9d5be083ec (IsA division_archaebacteria division) (STV 1.0 0.9091)) +(: cnet_isa_5f10a5dc94 (IsA division_eubacteria division) (STV 1.0 0.9091)) +(: cnet_isa_aab1182398 (IsA divisor integer) (STV 1.0 0.9091)) +(: cnet_isa_d580f2210a (IsA divisor number) (STV 1.0 0.9091)) +(: cnet_isa_e00f05873f (IsA divorce separation) (STV 1.0 0.9091)) +(: cnet_isa_6c5648aecf (IsA divorce_court court) (STV 1.0 0.9091)) +(: cnet_isa_8abe95f825 (IsA divorce_lawyer lawyer) (STV 1.0 0.9091)) +(: cnet_isa_a866500402 (IsA divorcee woman) (STV 1.0 0.9091)) +(: cnet_isa_93aebb0a7d (IsA divot pit) (STV 1.0 0.9091)) +(: cnet_isa_10d14bd403 (IsA divot turf) (STV 1.0 0.9091)) +(: cnet_isa_ab9713cb23 (IsA divulgence disclosure) (STV 1.0 0.9091)) +(: cnet_isa_a8ec08b141 (IsA divvy dividend) (STV 1.0 0.9091)) +(: cnet_isa_86180ec236 (IsA dixie pot) (STV 1.0 0.9091)) +(: cnet_isa_31ccbc6706 (IsA dixie_cup cup) (STV 1.0 0.9091)) +(: cnet_isa_8a4c8915c0 (IsA dizziness symptom) (STV 1.0 0.9091)) +(: cnet_isa_01d8ccc9e4 (IsA djibouti_franc franc) (STV 1.0 0.9091)) +(: cnet_isa_031aa6ea1a (IsA djiboutian african) (STV 1.0 0.9091)) +(: cnet_isa_9148745126 (IsA dna complex_molecule) (STV 1.0 0.9339)) +(: cnet_isa_a5d3cd64df (IsA dna double_stranded_molecule) (STV 1.0 0.9339)) +(: cnet_isa_0e77e0c86a (IsA dna molecule) (STV 1.0 0.9454)) +(: cnet_isa_56bcc88295 (IsA dna nature_s_instruction) (STV 1.0 0.9091)) +(: cnet_isa_7dd8a02b08 (IsA dna nature_s_way_of_programming_living_creature) (STV 1.0 0.9091)) +(: cnet_isa_cccda12299 (IsA dna_fingerprint biometric_identification) (STV 1.0 0.9091)) +(: cnet_isa_02ee5f1b2e (IsA dna_polymerase polymerase) (STV 1.0 0.9091)) +(: cnet_isa_0160fbf602 (IsA do solfa_syllable) (STV 1.0 0.9091)) +(: cnet_isa_00a81ef539 (IsA do_in_gym gymnastic) (STV 1.0 0.9091)) +(: cnet_isa_11046887fa (IsA do_si_do country_dance) (STV 1.0 0.9091)) +(: cnet_isa_d4ddcd05bf (IsA doberman pinscher) (STV 1.0 0.9091)) +(: cnet_isa_e4ed4b9816 (IsA dobra sao_thome_e_principe_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_f012fd4ad1 (IsA dobson neuropteron) (STV 1.0 0.9091)) +(: cnet_isa_74e60a4ab3 (IsA docent teacher) (STV 1.0 0.9091)) +(: cnet_isa_6e83bbcf32 (IsA docetism heresy) (STV 1.0 0.9091)) +(: cnet_isa_e1fa35a856 (IsA docetism theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_2e86a20728 (IsA docility tractability) (STV 1.0 0.9091)) +(: cnet_isa_4120281a79 (IsA dock body_part) (STV 1.0 0.9091)) +(: cnet_isa_67c66281bb (IsA dock landing) (STV 1.0 0.9091)) +(: cnet_isa_9e1a1aa40f (IsA dock platform) (STV 1.0 0.9091)) +(: cnet_isa_93688deb9e (IsA dock enclosure) (STV 1.0 0.9091)) +(: cnet_isa_b0379bb721 (IsA dock herb) (STV 1.0 0.9091)) +(: cnet_isa_d5d6bc068a (IsA dockage fee) (STV 1.0 0.9091)) +(: cnet_isa_4c93f94a22 (IsA docket calendar) (STV 1.0 0.9091)) +(: cnet_isa_8bea96bc88 (IsA docking arrival) (STV 1.0 0.9091)) +(: cnet_isa_f568f3a691 (IsA dockside side) (STV 1.0 0.9091)) +(: cnet_isa_8f2288259b (IsA dockyard waterfront) (STV 1.0 0.9091)) +(: cnet_isa_90af61019d (IsA docosahexaenoic_acid omega_3_fatty_acid) (STV 1.0 0.9091)) +(: cnet_isa_9882d0de9b (IsA doctor_s_degree academic_degree) (STV 1.0 0.9091)) +(: cnet_isa_e49b0df8ce (IsA doctor man_of_science) (STV 1.0 0.9091)) +(: cnet_isa_9b1818f3d9 (IsA doctor play) (STV 1.0 0.9091)) +(: cnet_isa_1be4b5bf98 (IsA doctor medical_practitioner) (STV 1.0 0.9091)) +(: cnet_isa_512347fba1 (IsA doctor scholar) (STV 1.0 0.9091)) +(: cnet_isa_09dcbbf02a (IsA doctor theologian) (STV 1.0 0.9091)) +(: cnet_isa_4bb0b98f79 (IsA doctor_of_art honorary_degree) (STV 1.0 0.9091)) +(: cnet_isa_3c93a8db0e (IsA doctor_of_dental_medicine doctor_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_9b3581551d (IsA doctor_of_dental_surgery doctor_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_fbc0dc5051 (IsA doctor_of_divinity doctor_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_ca579fd542 (IsA doctor_of_education doctor_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_7fae04714e (IsA doctor_of_fine_art honorary_degree) (STV 1.0 0.9091)) +(: cnet_isa_7ba566dd5d (IsA doctor_of_humane_letter honorary_degree) (STV 1.0 0.9091)) +(: cnet_isa_c8c44fcb40 (IsA doctor_of_humanity honorary_degree) (STV 1.0 0.9091)) +(: cnet_isa_f4e6706609 (IsA doctor_of_law honorary_degree) (STV 1.0 0.9091)) +(: cnet_isa_5ffd010292 (IsA doctor_of_medicine doctor_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_19828f6c88 (IsA doctor_of_music doctor_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_2fb3df2fc4 (IsA doctor_of_musical_art doctor_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_c08cf223be (IsA doctor_of_optometry doctor_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_e1a218f0af (IsA doctor_of_osteopathy doctor_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_a106733695 (IsA doctor_of_philosophy doctor_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_af4c1ffb34 (IsA doctor_of_public_health doctor_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_3ac5c43865 (IsA doctor_of_sacred_theology doctor_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_58e7e8ff9b (IsA doctor_of_science honorary_degree) (STV 1.0 0.9091)) +(: cnet_isa_0c561c23b2 (IsA doctor_of_theology doctor_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_510417f14e (IsA doctor_patient_relation medical_relation) (STV 1.0 0.9091)) +(: cnet_isa_3abbaafa7d (IsA doctorfish surgeonfish) (STV 1.0 0.9091)) +(: cnet_isa_f1c9d9ec3f (IsA doctorspeak jargon) (STV 1.0 0.9091)) +(: cnet_isa_d97a360651 (IsA doctrine belief) (STV 1.0 0.9091)) +(: cnet_isa_68bf080ed3 (IsA doctrine_of_analogy religion) (STV 1.0 0.9091)) +(: cnet_isa_b87819c0ca (IsA document representation) (STV 1.0 0.9091)) +(: cnet_isa_e5566b8f1e (IsA document writing) (STV 1.0 0.9091)) +(: cnet_isa_4d19021319 (IsA document communication) (STV 1.0 0.9091)) +(: cnet_isa_07bc68aa9d (IsA documentary movie) (STV 1.0 0.9091)) +(: cnet_isa_2e98ce2ad5 (IsA documentation validation) (STV 1.0 0.9091)) +(: cnet_isa_09f15c769d (IsA documentation confirmation) (STV 1.0 0.9091)) +(: cnet_isa_32c3184e28 (IsA dodder vine) (STV 1.0 0.9091)) +(: cnet_isa_8b5ecb90c1 (IsA dodderer oldster) (STV 1.0 0.9091)) +(: cnet_isa_4ec117c885 (IsA doddle cinch) (STV 1.0 0.9091)) +(: cnet_isa_3385e5d7d0 (IsA dodecagon polygon) (STV 1.0 0.9091)) +(: cnet_isa_8a9324af42 (IsA dodecahedron polyhedron) (STV 1.0 0.9091)) +(: cnet_isa_64a7fdaf19 (IsA dodge evasion) (STV 1.0 0.9091)) +(: cnet_isa_1c1ec2398f (IsA dodge falsehood) (STV 1.0 0.9091)) +(: cnet_isa_8ce29314e0 (IsA dodger deceiver) (STV 1.0 0.9091)) +(: cnet_isa_c31e408e40 (IsA dodo columbiform_bird) (STV 1.0 0.9091)) +(: cnet_isa_9e0e976162 (IsA dodo oldster) (STV 1.0 0.9091)) +(: cnet_isa_bf46df03fe (IsA dodonaea dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_fd7c3dad31 (IsA doe deer) (STV 1.0 0.9091)) +(: cnet_isa_ad23ad13c9 (IsA doe placental) (STV 1.0 0.9091)) +(: cnet_isa_ffebfc3715 (IsA doeskin fabric) (STV 1.0 0.9091)) +(: cnet_isa_17a2a4ac5f (IsA doeskin leather) (STV 1.0 0.9091)) +(: cnet_isa_74b99e05b1 (IsA dog_s_breakfast fix) (STV 1.0 0.9091)) +(: cnet_isa_ab9a155877 (IsA dog_s_mercury herb) (STV 1.0 0.9091)) +(: cnet_isa_e7da1540ef (IsA dog canine) (STV 1.0 0.9608)) +(: cnet_isa_7dd48d0be2 (IsA dog curious_observer_of_mankind) (STV 1.0 0.9091)) +(: cnet_isa_dc3567745f (IsA dog example_of_pet) (STV 1.0 0.9091)) +(: cnet_isa_b41f043ebe (IsA dog faithful_companion) (STV 1.0 0.9091)) +(: cnet_isa_da3522ab42 (IsA dog four_legged_animal) (STV 1.0 0.9339)) +(: cnet_isa_3c9308d0dc (IsA dog good_friend) (STV 1.0 0.9454)) +(: cnet_isa_eedde89642 (IsA dog loyal_friend) (STV 1.0 0.9707)) +(: cnet_isa_b153506263 (IsA dog mammal) (STV 1.0 0.9636)) +(: cnet_isa_af3b585d62 (IsA dog man_best_friend) (STV 1.0 0.9091)) +(: cnet_isa_0c15f4aca5 (IsA dog nice_friend) (STV 1.0 0.9091)) +(: cnet_isa_16525a214d (IsA dog pet) (STV 1.0 0.9677)) +(: cnet_isa_74d97cd6b6 (IsA dog domestic_animal) (STV 1.0 0.9091)) +(: cnet_isa_615e097282 (IsA dog chap) (STV 1.0 0.9091)) +(: cnet_isa_5e6a909d9c (IsA dog_biscuit cookie) (STV 1.0 0.9091)) +(: cnet_isa_05424acae4 (IsA dog_bite bite) (STV 1.0 0.9091)) +(: cnet_isa_3ef8998ebf (IsA dog_breeding breeding) (STV 1.0 0.9091)) +(: cnet_isa_f48436c97f (IsA dog_catcher employee) (STV 1.0 0.9091)) +(: cnet_isa_2b4449a3d8 (IsA dog_collar collar) (STV 1.0 0.9091)) +(: cnet_isa_ae1e6c9845 (IsA dog_day_cicada cicada) (STV 1.0 0.9091)) +(: cnet_isa_dcafd48b36 (IsA dog_day time_period) (STV 1.0 0.9091)) +(: cnet_isa_4fc95baf1a (IsA dog_ear signal) (STV 1.0 0.9091)) +(: cnet_isa_6ec2585c59 (IsA dog_fennel herb) (STV 1.0 0.9091)) +(: cnet_isa_b7434d2519 (IsA dog_flea flea) (STV 1.0 0.9091)) +(: cnet_isa_db48dddd97 (IsA dog_food petfood) (STV 1.0 0.9091)) +(: cnet_isa_19bfc0c3e9 (IsA dog_grass wheatgrass) (STV 1.0 0.9091)) +(: cnet_isa_e95ef83e1c (IsA dog_in_manger selfish_person) (STV 1.0 0.9091)) +(: cnet_isa_58ff26a599 (IsA dog_laurel shrub) (STV 1.0 0.9091)) +(: cnet_isa_415d372d5d (IsA dog_paddle swimming_stroke) (STV 1.0 0.9091)) +(: cnet_isa_1af2fd555b (IsA dog_racing race) (STV 1.0 0.9091)) +(: cnet_isa_ca945f9537 (IsA dog_rose rose) (STV 1.0 0.9091)) +(: cnet_isa_d73e3e81db (IsA dog_shit fecal_matter) (STV 1.0 0.9091)) +(: cnet_isa_8841b1dc30 (IsA dog_show show) (STV 1.0 0.9091)) +(: cnet_isa_273480960d (IsA dog_stinkhorn stinkhorn) (STV 1.0 0.9091)) +(: cnet_isa_89b41127df (IsA dog_tag tag) (STV 1.0 0.9091)) +(: cnet_isa_ca6c4f2451 (IsA dog_violet violet) (STV 1.0 0.9091)) +(: cnet_isa_c4e95bad49 (IsA dog_wrench wrench) (STV 1.0 0.9091)) +(: cnet_isa_4a046315a7 (IsA dogbane poisonous_plant) (STV 1.0 0.9091)) +(: cnet_isa_8af0c39f2c (IsA dogcart cart) (STV 1.0 0.9091)) +(: cnet_isa_84185203b5 (IsA doge judge) (STV 1.0 0.9091)) +(: cnet_isa_b4cf17ac7f (IsA dogfight battle) (STV 1.0 0.9091)) +(: cnet_isa_2e0b63cf85 (IsA dogfight fight) (STV 1.0 0.9091)) +(: cnet_isa_e4e52cadb2 (IsA dogfight contest) (STV 1.0 0.9091)) +(: cnet_isa_bc48c1346a (IsA dogfighter fighter_pilot) (STV 1.0 0.9091)) +(: cnet_isa_8e736a7a51 (IsA dogfish shark) (STV 1.0 0.9091)) +(: cnet_isa_ecea7f3065 (IsA doggedness determination) (STV 1.0 0.9091)) +(: cnet_isa_0410c69072 (IsA doggerel verse) (STV 1.0 0.9091)) +(: cnet_isa_c1aac23ccf (IsA doggie_bag sack) (STV 1.0 0.9091)) +(: cnet_isa_45516a6a9b (IsA doghouse disfavor) (STV 1.0 0.9091)) +(: cnet_isa_d2f3534cf8 (IsA dogie calf) (STV 1.0 0.9091)) +(: cnet_isa_62c9e8c23b (IsA dogleg hole) (STV 1.0 0.9091)) +(: cnet_isa_ed531674d4 (IsA dogleg angle) (STV 1.0 0.9091)) +(: cnet_isa_061c28caae (IsA dogma doctrine) (STV 1.0 0.9091)) +(: cnet_isa_cab5134494 (IsA dogma religious_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_ad1fb316ca (IsA dogmatist partisan) (STV 1.0 0.9091)) +(: cnet_isa_db30483f09 (IsA dog dog) (STV 1.0 0.9339)) +(: cnet_isa_29aa29cba5 (IsA dog great_pet) (STV 1.0 0.9339)) +(: cnet_isa_6f46749baf (IsA dog loyal_pet) (STV 1.0 0.9091)) +(: cnet_isa_6e88eed6f0 (IsA dog n_t_bird) (STV 1.0 0.9339)) +(: cnet_isa_e93c043fc2 (IsA dog_and_bird animal) (STV 1.0 0.9339)) +(: cnet_isa_13d6ee9708 (IsA dog_and_bird both_animal) (STV 1.0 0.9091)) +(: cnet_isa_52cadf8d75 (IsA dogsbody proletarian) (STV 1.0 0.9091)) +(: cnet_isa_8a5879641a (IsA dogsled sled) (STV 1.0 0.9091)) +(: cnet_isa_7b05e7be8f (IsA dogtooth architectural_ornament) (STV 1.0 0.9091)) +(: cnet_isa_362a0bc297 (IsA dogtooth_violet liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_78a72ba07f (IsA dogtrot jog) (STV 1.0 0.9091)) +(: cnet_isa_fdacc56c2a (IsA dogwatch watch) (STV 1.0 0.9091)) +(: cnet_isa_af565ab08b (IsA dogwood angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_5616c8ab0d (IsA dogwood wood) (STV 1.0 0.9091)) +(: cnet_isa_20a54b9555 (IsA dohickey whatchamacallit) (STV 1.0 0.9091)) +(: cnet_isa_b10a1ed46e (IsA doily linen) (STV 1.0 0.9091)) +(: cnet_isa_195e66d8b8 (IsA dol pain_unit) (STV 1.0 0.9091)) +(: cnet_isa_856d09daeb (IsA dolce_far_niente idleness) (STV 1.0 0.9091)) +(: cnet_isa_8416d693fd (IsA doldrum wind) (STV 1.0 0.9091)) +(: cnet_isa_7e46fbad6a (IsA dole social_welfare) (STV 1.0 0.9091)) +(: cnet_isa_5cee845c3a (IsA dole share) (STV 1.0 0.9091)) +(: cnet_isa_b49e1baf2a (IsA dolefulness sadness) (STV 1.0 0.9091)) +(: cnet_isa_2849753474 (IsA dolichocephalic adult) (STV 1.0 0.9091)) +(: cnet_isa_4ca2b0f50e (IsA dolichocephalism quality) (STV 1.0 0.9091)) +(: cnet_isa_f3a3583316 (IsA dolichonyx bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_770ed1b7f5 (IsA dolicho rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_18b8f0f987 (IsA dolichotis mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_01834b6240 (IsA doliolidae chordate_family) (STV 1.0 0.9091)) +(: cnet_isa_5e723e8620 (IsA doliolum tunicate) (STV 1.0 0.9091)) +(: cnet_isa_6d24297ab0 (IsA doll toy) (STV 1.0 0.9770)) +(: cnet_isa_bf93b37428 (IsA doll plaything) (STV 1.0 0.9091)) +(: cnet_isa_f28b14e01e (IsA dollar money) (STV 1.0 0.9454)) +(: cnet_isa_f12898d21d (IsA dollar unit_of_currency) (STV 1.0 0.9339)) +(: cnet_isa_1da38d7f3e (IsA dollar symbol) (STV 1.0 0.9091)) +(: cnet_isa_647071d2ff (IsA dollar bill) (STV 1.0 0.9091)) +(: cnet_isa_9ae7a074db (IsA dollar coin) (STV 1.0 0.9091)) +(: cnet_isa_d358eb838f (IsA dollar monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_f7f8c1b74b (IsA dollar_diplomacy diplomacy) (STV 1.0 0.9091)) +(: cnet_isa_7d0c06f812 (IsA dollar_mark mark) (STV 1.0 0.9091)) +(: cnet_isa_499a23119a (IsA dollar_volume bulk) (STV 1.0 0.9091)) +(: cnet_isa_335ec5c1f5 (IsA dollarfish butterfish) (STV 1.0 0.9091)) +(: cnet_isa_4e6036abdf (IsA dollhouse house) (STV 1.0 0.9091)) +(: cnet_isa_934e932ce9 (IsA dollhouse plaything) (STV 1.0 0.9091)) +(: cnet_isa_4fce3eec98 (IsA dollop small_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_1503166fdb (IsA doll ancient_artifact) (STV 1.0 0.9091)) +(: cnet_isa_a4cfaaa595 (IsA dolly conveyance) (STV 1.0 0.9091)) +(: cnet_isa_c15520655a (IsA dolman cloak) (STV 1.0 0.9091)) +(: cnet_isa_0d7f1a7f3c (IsA dolman jacket) (STV 1.0 0.9091)) +(: cnet_isa_11ea9efbe1 (IsA dolman_sleeve sleeve) (STV 1.0 0.9091)) +(: cnet_isa_d88e12dd20 (IsA dolma dish) (STV 1.0 0.9091)) +(: cnet_isa_4aaadd5699 (IsA dolmen megalith) (STV 1.0 0.9091)) +(: cnet_isa_671fe6717b (IsA dolomite mineral) (STV 1.0 0.9091)) +(: cnet_isa_ee8134916a (IsA dolomite rock) (STV 1.0 0.9091)) +(: cnet_isa_51cad8d359 (IsA dolor grief) (STV 1.0 0.9091)) +(: cnet_isa_ed2cc7da48 (IsA dolphin animal) (STV 1.0 0.9524)) +(: cnet_isa_4b5d8b7f16 (IsA dolphin toothed_whale) (STV 1.0 0.9091)) +(: cnet_isa_925f3d8058 (IsA dolphin_kick swimming_kick) (STV 1.0 0.9091)) +(: cnet_isa_5e9afa9554 (IsA dolphin_oil animal_oil) (STV 1.0 0.9091)) +(: cnet_isa_84fc242222 (IsA dolphin_striker spar) (STV 1.0 0.9091)) +(: cnet_isa_7d3f862f04 (IsA dolphinfish percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_99c4c4f4d6 (IsA dolphinfish saltwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_19d5346c84 (IsA dolphin mammal) (STV 1.0 0.9707)) +(: cnet_isa_29d7ce0638 (IsA dom_pedro mixed_drink) (STV 1.0 0.9091)) +(: cnet_isa_3f6fe4d86d (IsA domain knowledge_domain) (STV 1.0 0.9091)) +(: cnet_isa_4f2c54cc87 (IsA domain region) (STV 1.0 0.9091)) +(: cnet_isa_7c708a6926 (IsA domain set) (STV 1.0 0.9091)) +(: cnet_isa_96abb1e73f (IsA domain_name name) (STV 1.0 0.9091)) +(: cnet_isa_883955ff6d (IsA domatium plant_part) (STV 1.0 0.9091)) +(: cnet_isa_28dadb5010 (IsA dombeya shrub) (STV 1.0 0.9091)) +(: cnet_isa_99361662ba (IsA dome roof) (STV 1.0 0.9091)) +(: cnet_isa_964f428d1d (IsA dome stadium) (STV 1.0 0.9091)) +(: cnet_isa_7077246bb5 (IsA dome concave_shape) (STV 1.0 0.9091)) +(: cnet_isa_fcae799c19 (IsA domestic servant) (STV 1.0 0.9091)) +(: cnet_isa_bb455af70e (IsA domestic_animal animal) (STV 1.0 0.9091)) +(: cnet_isa_c32ed18245 (IsA domestic_ass ass) (STV 1.0 0.9091)) +(: cnet_isa_b3db175819 (IsA domestic_carp carp) (STV 1.0 0.9091)) +(: cnet_isa_b941db7c47 (IsA domestic_cat cat) (STV 1.0 0.9091)) +(: cnet_isa_f182c5fc1e (IsA domestic_cat domestic_animal) (STV 1.0 0.9091)) +(: cnet_isa_c711b8b6f7 (IsA domestic_flight flight) (STV 1.0 0.9091)) +(: cnet_isa_fa7901a9de (IsA domestic_fowl gallinaceous_bird) (STV 1.0 0.9091)) +(: cnet_isa_db94051dfe (IsA domestic_goat goat) (STV 1.0 0.9091)) +(: cnet_isa_39c14cd7d1 (IsA domestic_llama llama) (STV 1.0 0.9091)) +(: cnet_isa_4fa10ba90a (IsA domestic_partner person) (STV 1.0 0.9091)) +(: cnet_isa_16698578bd (IsA domestic_pigeon pigeon) (STV 1.0 0.9091)) +(: cnet_isa_82c26c0271 (IsA domestic_prelate priest) (STV 1.0 0.9091)) +(: cnet_isa_03f920efee (IsA domestic_sheep sheep) (STV 1.0 0.9091)) +(: cnet_isa_8b2d619047 (IsA domestic_silkworm_moth bombycid) (STV 1.0 0.9091)) +(: cnet_isa_470047626a (IsA domestic_terrorism terrorism) (STV 1.0 0.9091)) +(: cnet_isa_19807c5156 (IsA domestic_violence violence) (STV 1.0 0.9091)) +(: cnet_isa_c7a2f5cb84 (IsA domestication adjustment) (STV 1.0 0.9091)) +(: cnet_isa_365872cdf8 (IsA domestication adaptation) (STV 1.0 0.9091)) +(: cnet_isa_ef99b7f132 (IsA domesticity activity) (STV 1.0 0.9091)) +(: cnet_isa_0866cd27c8 (IsA domesticity quality) (STV 1.0 0.9091)) +(: cnet_isa_e9f6b5531a (IsA domicile residence) (STV 1.0 0.9091)) +(: cnet_isa_b28b774e9b (IsA dominance organic_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_ea2c3393b6 (IsA dominance condition) (STV 1.0 0.9091)) +(: cnet_isa_07a7422319 (IsA dominant note) (STV 1.0 0.9091)) +(: cnet_isa_f971ce3ca3 (IsA dominant_allele allele) (STV 1.0 0.9091)) +(: cnet_isa_9727122eaa (IsA dominant_gene gene) (STV 1.0 0.9091)) +(: cnet_isa_26befc806b (IsA domination social_control) (STV 1.0 0.9091)) +(: cnet_isa_43c6132ae0 (IsA domination dominance) (STV 1.0 0.9091)) +(: cnet_isa_7475680358 (IsA dominatrix woman) (STV 1.0 0.9091)) +(: cnet_isa_2b034af923 (IsA dominican west_indian) (STV 1.0 0.9091)) +(: cnet_isa_ad58a4596e (IsA dominican_dollar dollar) (STV 1.0 0.9091)) +(: cnet_isa_cec1b123bc (IsA dominican_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_49b6d44813 (IsA dominican_order order) (STV 1.0 0.9091)) +(: cnet_isa_5dacdf4338 (IsA dominican_peso dominican_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_003d8aa7d2 (IsA dominion state) (STV 1.0 0.9091)) +(: cnet_isa_2fc565c8b2 (IsA dominion dominance) (STV 1.0 0.9091)) +(: cnet_isa_17cb4a726f (IsA dominion_day legal_holiday) (STV 1.0 0.9091)) +(: cnet_isa_1c23b37ee2 (IsA dominique chicken) (STV 1.0 0.9091)) +(: cnet_isa_33bf9bf3bc (IsA domino block) (STV 1.0 0.9091)) +(: cnet_isa_45047480a2 (IsA domino cloak) (STV 1.0 0.9091)) +(: cnet_isa_2c1fc974b9 (IsA domino mask) (STV 1.0 0.9091)) +(: cnet_isa_3054138799 (IsA domino_effect consequence) (STV 1.0 0.9091)) +(: cnet_isa_9d05365bd2 (IsA domino_theory political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_a52fbc8928 (IsA dominoe table_game) (STV 1.0 0.9091)) +(: cnet_isa_0461014643 (IsA dominus clergyman) (STV 1.0 0.9091)) +(: cnet_isa_dbca407d6f (IsA domoic_acid neurotoxin) (STV 1.0 0.9091)) +(: cnet_isa_b4419ea7f4 (IsA don head) (STV 1.0 0.9091)) +(: cnet_isa_25b8d4243b (IsA don gentleman) (STV 1.0 0.9091)) +(: cnet_isa_a030cf3962 (IsA don title) (STV 1.0 0.9091)) +(: cnet_isa_bb7ccb3069 (IsA don_juan womanizer) (STV 1.0 0.9091)) +(: cnet_isa_98cbaa13dd (IsA don_quixote idealist) (STV 1.0 0.9091)) +(: cnet_isa_873c69a154 (IsA don_t_know interviewee) (STV 1.0 0.9091)) +(: cnet_isa_23f4531fc1 (IsA dona title) (STV 1.0 0.9091)) +(: cnet_isa_3fbc0c1c12 (IsA donatism christianity) (STV 1.0 0.9091)) +(: cnet_isa_c2180bfb60 (IsA donatist disciple) (STV 1.0 0.9091)) +(: cnet_isa_6368c9ed1d (IsA dong vietnamese_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_d41a59d0a5 (IsA dongle electronic_device) (STV 1.0 0.9091)) +(: cnet_isa_509b56ab9e (IsA donkey emblem) (STV 1.0 0.9091)) +(: cnet_isa_6dfcbb3fd5 (IsA donkey_jacket jacket) (STV 1.0 0.9091)) +(: cnet_isa_0d143b9053 (IsA donna woman) (STV 1.0 0.9091)) +(: cnet_isa_ee257c6ff4 (IsA donor benefactor) (STV 1.0 0.9091)) +(: cnet_isa_2185d239dc (IsA donor_card card) (STV 1.0 0.9091)) +(: cnet_isa_2ce11b1a7b (IsA doo_wop gospel) (STV 1.0 0.9091)) +(: cnet_isa_c55b69c99b (IsA doodia fern) (STV 1.0 0.9091)) +(: cnet_isa_2800148713 (IsA doodlebug larva) (STV 1.0 0.9091)) +(: cnet_isa_55824caf20 (IsA doodlebug motor_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_8b3bca579e (IsA doom destiny) (STV 1.0 0.9091)) +(: cnet_isa_bfc73c966a (IsA doomed people) (STV 1.0 0.9091)) +(: cnet_isa_f7b83d6256 (IsA door movable_barrier) (STV 1.0 0.9091)) +(: cnet_isa_023d9fb23b (IsA door room) (STV 1.0 0.9091)) +(: cnet_isa_f06df10a63 (IsA door structure) (STV 1.0 0.9091)) +(: cnet_isa_eb0d3a5c8a (IsA door entree) (STV 1.0 0.9091)) +(: cnet_isa_eeb2766283 (IsA door_prize prize) (STV 1.0 0.9091)) +(: cnet_isa_b93c469d5d (IsA doorbell push_button) (STV 1.0 0.9091)) +(: cnet_isa_8ecb84176f (IsA doorframe framework) (STV 1.0 0.9091)) +(: cnet_isa_5c39b68574 (IsA doorjamb jamb) (STV 1.0 0.9091)) +(: cnet_isa_ba276275b9 (IsA doorkeeper clergyman) (STV 1.0 0.9091)) +(: cnet_isa_d10927905f (IsA doorkeeper guard) (STV 1.0 0.9091)) +(: cnet_isa_5b19318870 (IsA doorkeeper holy_order) (STV 1.0 0.9091)) +(: cnet_isa_09ecbcdc4e (IsA doorknob knob) (STV 1.0 0.9091)) +(: cnet_isa_23d5fb68ad (IsA doorlock lock) (STV 1.0 0.9091)) +(: cnet_isa_241eb07707 (IsA doormat mat) (STV 1.0 0.9091)) +(: cnet_isa_7c51bc2eab (IsA doornail nail) (STV 1.0 0.9091)) +(: cnet_isa_174d600bed (IsA doorplate nameplate) (STV 1.0 0.9091)) +(: cnet_isa_77f1aeabde (IsA doorsill sill) (STV 1.0 0.9091)) +(: cnet_isa_5bf9fa368b (IsA doorstop catch) (STV 1.0 0.9091)) +(: cnet_isa_7c4e86b3ee (IsA doorway entrance) (STV 1.0 0.9091)) +(: cnet_isa_adc53d3d39 (IsA dooryard yard) (STV 1.0 0.9091)) +(: cnet_isa_f1b93574cd (IsA dopa amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_70be79be34 (IsA dope detail) (STV 1.0 0.9091)) +(: cnet_isa_4955650a90 (IsA dope_sheet tip_sheet) (STV 1.0 0.9091)) +(: cnet_isa_5b17fe0c7a (IsA doppelganger legendary_creature) (STV 1.0 0.9091)) +(: cnet_isa_736bad3bd2 (IsA doppler_effect propagation) (STV 1.0 0.9091)) +(: cnet_isa_1102b1ae1c (IsA doppler_radar radar) (STV 1.0 0.9091)) +(: cnet_isa_0926e7a5ee (IsA dorbeetle dung_beetle) (STV 1.0 0.9091)) +(: cnet_isa_881eee3aba (IsA dorian citizenry) (STV 1.0 0.9091)) +(: cnet_isa_9c4709a996 (IsA dorian hellene) (STV 1.0 0.9091)) +(: cnet_isa_d0e66f7938 (IsA doric ancient_greek) (STV 1.0 0.9091)) +(: cnet_isa_7b7a260923 (IsA doric_order order) (STV 1.0 0.9091)) +(: cnet_isa_5f6ef7c5e4 (IsA dorking domestic_fowl) (STV 1.0 0.9091)) +(: cnet_isa_0b9e1fbb14 (IsA dormancy inaction) (STV 1.0 0.9091)) +(: cnet_isa_b72c57279f (IsA dormant_account saving_account) (STV 1.0 0.9091)) +(: cnet_isa_09faf842e4 (IsA dormer window) (STV 1.0 0.9091)) +(: cnet_isa_2b40a28f14 (IsA dormer_window window) (STV 1.0 0.9091)) +(: cnet_isa_f355a0d866 (IsA dormition religious_holiday) (STV 1.0 0.9091)) +(: cnet_isa_a8b3dbf80a (IsA dormitory bedroom) (STV 1.0 0.9091)) +(: cnet_isa_7f4dc95515 (IsA dormitory building) (STV 1.0 0.9091)) +(: cnet_isa_78f8eaeafb (IsA dormitory living_quarter) (STV 1.0 0.9091)) +(: cnet_isa_39b36689f3 (IsA dormouse rodent) (STV 1.0 0.9091)) +(: cnet_isa_399ade15cc (IsA doronicum asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7e33dcd4ac (IsA dorotheanthus caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e26cbc718b (IsA dorsal_fin fin) (STV 1.0 0.9091)) +(: cnet_isa_0acae058c6 (IsA dorsal_scapular_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_2f32986887 (IsA dorsiflexion flexion) (STV 1.0 0.9091)) +(: cnet_isa_bde6a6f862 (IsA dorsum body_part) (STV 1.0 0.9091)) +(: cnet_isa_f44ab961db (IsA dory spiny_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_dc871783df (IsA dorylinae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_2da680e88e (IsA doryopteris fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_986d76fa48 (IsA dos operating_system) (STV 1.0 0.9091)) +(: cnet_isa_44339d9c89 (IsA dose medicine) (STV 1.0 0.9091)) +(: cnet_isa_4d9175f987 (IsA dose indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_9668191274 (IsA dose_rate rate) (STV 1.0 0.9091)) +(: cnet_isa_83ccf24958 (IsA dosemeter measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_a0d6c98e50 (IsA dosimetry measurement) (STV 1.0 0.9091)) +(: cnet_isa_15becb6175 (IsA dossal hanging) (STV 1.0 0.9091)) +(: cnet_isa_18d8b75942 (IsA dosser tramp) (STV 1.0 0.9091)) +(: cnet_isa_f77e09ecc4 (IsA dossier written_record) (STV 1.0 0.9091)) +(: cnet_isa_197c323f1c (IsA dot telegraphic_signal) (STV 1.0 0.9091)) +(: cnet_isa_43acdd9e99 (IsA dot_com company) (STV 1.0 0.9091)) +(: cnet_isa_c33f5d244a (IsA dot_matrix matrix) (STV 1.0 0.9091)) +(: cnet_isa_dde4400295 (IsA dot_matrix_printer printer) (STV 1.0 0.9091)) +(: cnet_isa_4433408023 (IsA dotage old_age) (STV 1.0 0.9091)) +(: cnet_isa_391afb13be (IsA dotard oldster) (STV 1.0 0.9091)) +(: cnet_isa_261e379f78 (IsA dotted_gayfeather blazing_star) (STV 1.0 0.9091)) +(: cnet_isa_d798568dd6 (IsA dotted_line line) (STV 1.0 0.9091)) +(: cnet_isa_4893f4499d (IsA dotterel plover) (STV 1.0 0.9091)) +(: cnet_isa_c80c6e8916 (IsA dottle residue) (STV 1.0 0.9091)) +(: cnet_isa_8f83a3bfc2 (IsA double base_hit) (STV 1.0 0.9091)) +(: cnet_isa_caf0a20772 (IsA double multiple) (STV 1.0 0.9091)) +(: cnet_isa_1f7367934a (IsA double person) (STV 1.0 0.9091)) +(: cnet_isa_11d510f6ea (IsA double stand_in) (STV 1.0 0.9091)) +(: cnet_isa_041d3457b1 (IsA double_agent spy) (STV 1.0 0.9091)) +(: cnet_isa_864c68df62 (IsA double_bar bar_line) (STV 1.0 0.9091)) +(: cnet_isa_9412e5c74e (IsA double_bed bed) (STV 1.0 0.9091)) +(: cnet_isa_c58fb26ae1 (IsA double_bind dilemma) (STV 1.0 0.9091)) +(: cnet_isa_9017e4f9dd (IsA double_bitted_ax ax) (STV 1.0 0.9091)) +(: cnet_isa_7682f1a1b2 (IsA double_blind test) (STV 1.0 0.9091)) +(: cnet_isa_b9ebd4f3c8 (IsA double_blind_procedure experimental_procedure) (STV 1.0 0.9091)) +(: cnet_isa_dae616b43d (IsA double_bogey score) (STV 1.0 0.9091)) +(: cnet_isa_19c5f851cd (IsA double_boiler saucepan) (STV 1.0 0.9091)) +(: cnet_isa_bddafe8b3e (IsA double_bond covalent_bond) (STV 1.0 0.9091)) +(: cnet_isa_9d6454bb5c (IsA double_breasted_jacket jacket) (STV 1.0 0.9091)) +(: cnet_isa_aad9010af1 (IsA double_breasted_suit suit) (STV 1.0 0.9091)) +(: cnet_isa_a90df6f5cd (IsA double_chin chin) (STV 1.0 0.9091)) +(: cnet_isa_069e41e0b6 (IsA double_clinch clinch) (STV 1.0 0.9091)) +(: cnet_isa_e032afafdc (IsA double_cream cream_cheese) (STV 1.0 0.9091)) +(: cnet_isa_cc4a9da262 (IsA double_creme cream) (STV 1.0 0.9091)) +(: cnet_isa_605d7f0497 (IsA double_crochet crochet_stitch) (STV 1.0 0.9091)) +(: cnet_isa_eef9bda25f (IsA double_cross treachery) (STV 1.0 0.9091)) +(: cnet_isa_952b67d1a5 (IsA double_crosser deceiver) (STV 1.0 0.9091)) +(: cnet_isa_0dc565f726 (IsA double_dagger character) (STV 1.0 0.9091)) +(: cnet_isa_830aec80fa (IsA double_damage punitive_damage) (STV 1.0 0.9091)) +(: cnet_isa_108ceb606d (IsA double_date date) (STV 1.0 0.9091)) +(: cnet_isa_d8bb4f3776 (IsA double_decomposition chemical_reaction) (STV 1.0 0.9091)) +(: cnet_isa_53b7675354 (IsA double_digit integer) (STV 1.0 0.9091)) +(: cnet_isa_876852f197 (IsA double_dipper earner) (STV 1.0 0.9091)) +(: cnet_isa_1f3e767191 (IsA double_dipping income) (STV 1.0 0.9091)) +(: cnet_isa_4f5d91244e (IsA double_door door) (STV 1.0 0.9091)) +(: cnet_isa_93708994cf (IsA double_dribble dribble) (STV 1.0 0.9091)) +(: cnet_isa_f7357484ba (IsA double_dutch jump_rope) (STV 1.0 0.9091)) +(: cnet_isa_e8ccee23cf (IsA double_dutch gibberish) (STV 1.0 0.9091)) +(: cnet_isa_53ac507ee8 (IsA double_eagle score) (STV 1.0 0.9091)) +(: cnet_isa_f9d000a664 (IsA double_eagle coin) (STV 1.0 0.9091)) +(: cnet_isa_ac7f35391e (IsA double_entendre ambiguity) (STV 1.0 0.9091)) +(: cnet_isa_9561d89406 (IsA double_entry bookkeeping) (STV 1.0 0.9091)) +(: cnet_isa_b7ae282330 (IsA double_fault fault) (STV 1.0 0.9091)) +(: cnet_isa_e30b2eec64 (IsA double_first first) (STV 1.0 0.9091)) +(: cnet_isa_c8394fd6fa (IsA double_flat flat) (STV 1.0 0.9091)) +(: cnet_isa_5dc89227f0 (IsA double_glazing window) (STV 1.0 0.9091)) +(: cnet_isa_df7293d449 (IsA double_gloucester cheese) (STV 1.0 0.9091)) +(: cnet_isa_813393aa45 (IsA double_helix helix) (STV 1.0 0.9091)) +(: cnet_isa_333fe475bf (IsA double_hung_window window) (STV 1.0 0.9091)) +(: cnet_isa_f8c86cc33c (IsA double_indemnity article) (STV 1.0 0.9091)) +(: cnet_isa_35beb177ad (IsA double_jeopardy prosecution) (STV 1.0 0.9091)) +(: cnet_isa_b5475c783b (IsA double_knit knit) (STV 1.0 0.9091)) +(: cnet_isa_95a0b14c29 (IsA double_leg_circle gymnastic_exercise) (STV 1.0 0.9091)) +(: cnet_isa_bb6aebaa61 (IsA double_negative affirmative) (STV 1.0 0.9091)) +(: cnet_isa_47f7bccc1f (IsA double_negative negative) (STV 1.0 0.9091)) +(: cnet_isa_70e0e3723f (IsA double_play baseball_play) (STV 1.0 0.9091)) +(: cnet_isa_a1f4f50ab6 (IsA double_pneumonia lobar_pneumonia) (STV 1.0 0.9091)) +(: cnet_isa_55a4b7d156 (IsA double_prop propeller_plane) (STV 1.0 0.9091)) +(: cnet_isa_a729274dde (IsA double_quote quotation_mark) (STV 1.0 0.9091)) +(: cnet_isa_693f87ec18 (IsA double_reed reed) (STV 1.0 0.9091)) +(: cnet_isa_7e75f90985 (IsA double_reed_instrument beating_reed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_1e8841bc7b (IsA double_refraction refraction) (STV 1.0 0.9091)) +(: cnet_isa_8a5d6d00d2 (IsA double_replacement_reaction double_decomposition) (STV 1.0 0.9091)) +(: cnet_isa_fdea4ff8b3 (IsA double_reverse reverse) (STV 1.0 0.9091)) +(: cnet_isa_61ad4249c6 (IsA double_rhyme rhyme) (STV 1.0 0.9091)) +(: cnet_isa_a2a0e6adb9 (IsA double_salt salt) (STV 1.0 0.9091)) +(: cnet_isa_bbc4efc595 (IsA double_salt solid_solution) (STV 1.0 0.9091)) +(: cnet_isa_3ea863a869 (IsA double_sharp sharp) (STV 1.0 0.9091)) +(: cnet_isa_a250c1f8f5 (IsA double_spacing typing) (STV 1.0 0.9091)) +(: cnet_isa_5093bc165a (IsA double_standard ethic) (STV 1.0 0.9091)) +(: cnet_isa_d9aa4f4390 (IsA double_standard_of_sexual_behavior double_standard) (STV 1.0 0.9091)) +(: cnet_isa_9a0bdf6755 (IsA double_stopping stopping) (STV 1.0 0.9091)) +(: cnet_isa_e2162196d8 (IsA double_take reaction) (STV 1.0 0.9091)) +(: cnet_isa_d94ef53683 (IsA double_talk gibberish) (STV 1.0 0.9091)) +(: cnet_isa_cf653fb4de (IsA double_time wage) (STV 1.0 0.9091)) +(: cnet_isa_f69930dd5c (IsA double_time pace) (STV 1.0 0.9091)) +(: cnet_isa_fac1979820 (IsA doubler electronic_device) (STV 1.0 0.9091)) +(: cnet_isa_35ff92c280 (IsA double badminton) (STV 1.0 0.9091)) +(: cnet_isa_566a441322 (IsA double tennis) (STV 1.0 0.9091)) +(: cnet_isa_83ae64328f (IsA doublespeak evasion) (STV 1.0 0.9091)) +(: cnet_isa_e0d7975203 (IsA doublet jacket) (STV 1.0 0.9091)) +(: cnet_isa_44a2f3f526 (IsA doublethink believing) (STV 1.0 0.9091)) +(: cnet_isa_5822746b1b (IsA doubleton couple) (STV 1.0 0.9091)) +(: cnet_isa_2921c4d384 (IsA doubletree crossbar) (STV 1.0 0.9091)) +(: cnet_isa_0e049a714c (IsA doubling raise) (STV 1.0 0.9091)) +(: cnet_isa_0b19737873 (IsA doubling multiplication) (STV 1.0 0.9091)) +(: cnet_isa_a4f2ec1b26 (IsA doubloon coin) (STV 1.0 0.9091)) +(: cnet_isa_793230cb58 (IsA doubly_transitive_verb transitive_verb) (STV 1.0 0.9091)) +(: cnet_isa_ffe9566d49 (IsA doubt uncertainty) (STV 1.0 0.9091)) +(: cnet_isa_a47757f09c (IsA doubt cognitive_state) (STV 1.0 0.9091)) +(: cnet_isa_d90a64551b (IsA doubting_thoma skeptic) (STV 1.0 0.9091)) +(: cnet_isa_155b5efd9a (IsA douche irrigation) (STV 1.0 0.9091)) +(: cnet_isa_382eaf883f (IsA douche syringe) (STV 1.0 0.9091)) +(: cnet_isa_c3c549b9d9 (IsA dough concoction) (STV 1.0 0.9091)) +(: cnet_isa_0b9e764693 (IsA doughboy friedcake) (STV 1.0 0.9091)) +(: cnet_isa_bec517e8c4 (IsA doughboy infantryman) (STV 1.0 0.9091)) +(: cnet_isa_c08244d730 (IsA doughnut friedcake) (STV 1.0 0.9091)) +(: cnet_isa_36232a60ae (IsA dougla_fir conifer) (STV 1.0 0.9091)) +(: cnet_isa_b76b4968b4 (IsA dougla_fir fir) (STV 1.0 0.9091)) +(: cnet_isa_7ee857456e (IsA douroucouli new_world_monkey) (STV 1.0 0.9091)) +(: cnet_isa_123d0b6c99 (IsA dove_s_foot_geranium cranesbill) (STV 1.0 0.9091)) +(: cnet_isa_04ecf02755 (IsA dove bird) (STV 1.0 0.9091)) +(: cnet_isa_b7c86eff5d (IsA dove pigeon) (STV 1.0 0.9091)) +(: cnet_isa_be1843e6f6 (IsA dove emblem) (STV 1.0 0.9091)) +(: cnet_isa_d8eae8dbdc (IsA dove pacifist) (STV 1.0 0.9091)) +(: cnet_isa_43e2bbe309 (IsA dovecote birdhouse) (STV 1.0 0.9091)) +(: cnet_isa_1e49917a1f (IsA dover_s_powder powder) (STV 1.0 0.9091)) +(: cnet_isa_11005f6c4d (IsA dovetail mortise_joint) (STV 1.0 0.9091)) +(: cnet_isa_d1e2dce066 (IsA dovetail_plane plane) (STV 1.0 0.9091)) +(: cnet_isa_cf0a67c9b2 (IsA dovishness political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_6eb757af08 (IsA dovyalis dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0cd986498e (IsA dowager_s_hump osteoporosis) (STV 1.0 0.9091)) +(: cnet_isa_90fccdd379 (IsA dowager_s_hump spinal_curvature) (STV 1.0 0.9091)) +(: cnet_isa_13aa69229b (IsA dowager widow) (STV 1.0 0.9091)) +(: cnet_isa_ccd18382aa (IsA dowdiness inelegance) (STV 1.0 0.9091)) +(: cnet_isa_f0d55f0c1c (IsA dowdy pastry) (STV 1.0 0.9091)) +(: cnet_isa_02ce1f133f (IsA dowel fastener) (STV 1.0 0.9091)) +(: cnet_isa_996e071fc4 (IsA doweling fastening) (STV 1.0 0.9091)) +(: cnet_isa_5150fe1c80 (IsA dower life_estate) (STV 1.0 0.9091)) +(: cnet_isa_bf66a19eb1 (IsA dowitcher snipe) (STV 1.0 0.9091)) +(: cnet_isa_c59f178541 (IsA down direction) (STV 1.0 0.9091)) +(: cnet_isa_64861b27e5 (IsA down turn) (STV 1.0 0.9091)) +(: cnet_isa_873f211e38 (IsA down feather) (STV 1.0 0.9091)) +(: cnet_isa_84b9954654 (IsA down hair) (STV 1.0 0.9091)) +(: cnet_isa_685b716838 (IsA down highland) (STV 1.0 0.9091)) +(: cnet_isa_b232386824 (IsA down_and_out poor_person) (STV 1.0 0.9091)) +(: cnet_isa_bf3d787af4 (IsA down_bow bow) (STV 1.0 0.9091)) +(: cnet_isa_50c6f76cf7 (IsA down_easter american) (STV 1.0 0.9091)) +(: cnet_isa_2f254a6d5c (IsA down_payment payment) (STV 1.0 0.9091)) +(: cnet_isa_836d8deb89 (IsA down_quark quark) (STV 1.0 0.9091)) +(: cnet_isa_357ae9f555 (IsA downbeat rhythm) (STV 1.0 0.9091)) +(: cnet_isa_8032674458 (IsA downcast shaft) (STV 1.0 0.9091)) +(: cnet_isa_885b5ffcb6 (IsA downdraft draft) (STV 1.0 0.9091)) +(: cnet_isa_f2829f4908 (IsA downfall failure) (STV 1.0 0.9091)) +(: cnet_isa_6485c488f5 (IsA downgrade grade) (STV 1.0 0.9091)) +(: cnet_isa_6ce2f93a33 (IsA downheartedness sadness) (STV 1.0 0.9091)) +(: cnet_isa_84af49d8e7 (IsA downhill ski_race) (STV 1.0 0.9091)) +(: cnet_isa_b19b9390aa (IsA downhill descent) (STV 1.0 0.9091)) +(: cnet_isa_43449ffc1d (IsA downiness softness) (STV 1.0 0.9091)) +(: cnet_isa_ffe618c74a (IsA downing_street government) (STV 1.0 0.9091)) +(: cnet_isa_484810d64f (IsA downpour rain) (STV 1.0 0.9091)) +(: cnet_isa_6e229b8474 (IsA downrightness directness) (STV 1.0 0.9091)) +(: cnet_isa_e7aa348a44 (IsA downshift change) (STV 1.0 0.9091)) +(: cnet_isa_005813370a (IsA downside side) (STV 1.0 0.9091)) +(: cnet_isa_622830910f (IsA downspin downturn) (STV 1.0 0.9091)) +(: cnet_isa_4ef66560fe (IsA downstage stage) (STV 1.0 0.9091)) +(: cnet_isa_7414760d9e (IsA downstroke stroke) (STV 1.0 0.9091)) +(: cnet_isa_1054065f7a (IsA downswing golf_stroke) (STV 1.0 0.9091)) +(: cnet_isa_46e55f460d (IsA downtick transaction) (STV 1.0 0.9091)) +(: cnet_isa_f70c0016b0 (IsA downtime time_period) (STV 1.0 0.9091)) +(: cnet_isa_594287f82e (IsA downturn worsening) (STV 1.0 0.9091)) +(: cnet_isa_c68dd78325 (IsA downy_birch birch) (STV 1.0 0.9091)) +(: cnet_isa_c1321db513 (IsA downy_brome brome) (STV 1.0 0.9091)) +(: cnet_isa_a826bc5583 (IsA downy_ground_cherry ground_cherry) (STV 1.0 0.9091)) +(: cnet_isa_b7f76cff92 (IsA downy_manzanita manzanita) (STV 1.0 0.9091)) +(: cnet_isa_03b3f8ab13 (IsA downy_mildew mildew) (STV 1.0 0.9091)) +(: cnet_isa_f89e70e006 (IsA downy_wood_mint wood_mint) (STV 1.0 0.9091)) +(: cnet_isa_84966a56a9 (IsA downy_woodpecker woodpecker) (STV 1.0 0.9091)) +(: cnet_isa_6aed4a3793 (IsA downy_yellow_violet violet) (STV 1.0 0.9091)) +(: cnet_isa_c89db13c84 (IsA dowry gift) (STV 1.0 0.9091)) +(: cnet_isa_207cd3a13d (IsA dowse divination) (STV 1.0 0.9091)) +(: cnet_isa_d93a8c7f51 (IsA doxastic_logic modal_logic) (STV 1.0 0.9091)) +(: cnet_isa_96b004e99f (IsA doxology hymn) (STV 1.0 0.9091)) +(: cnet_isa_ca84f345c2 (IsA doxorubicin antibiotic) (STV 1.0 0.9091)) +(: cnet_isa_ce30f51564 (IsA doyenne elder) (STV 1.0 0.9091)) +(: cnet_isa_e8900e0ee8 (IsA doze sleeping) (STV 1.0 0.9091)) +(: cnet_isa_f5937cefa5 (IsA dphil doctor_of_philosophy) (STV 1.0 0.9091)) +(: cnet_isa_e7efe56b76 (IsA dpt_vaccine vaccine) (STV 1.0 0.9091)) +(: cnet_isa_75abac3838 (IsA draba herb) (STV 1.0 0.9091)) +(: cnet_isa_f37845a5c8 (IsA dracaena agave) (STV 1.0 0.9091)) +(: cnet_isa_8f1e125330 (IsA dracenaceae liliid_monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_889a675d1b (IsA drachma greek_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_9529dc59b0 (IsA draco reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_9cd9f4ded1 (IsA dracocephalum asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c0850f947e (IsA dracontium arum) (STV 1.0 0.9091)) +(: cnet_isa_eb4c44374f (IsA dracula vampire) (STV 1.0 0.9339)) +(: cnet_isa_af2a043f58 (IsA dracula monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_45afc73dfd (IsA dracunculidae worm_family) (STV 1.0 0.9091)) +(: cnet_isa_0525271a18 (IsA dracunculus worm_genus) (STV 1.0 0.9091)) +(: cnet_isa_0e3866e4c4 (IsA dracunculus monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4524399974 (IsA draft pull) (STV 1.0 0.9091)) +(: cnet_isa_06fa14bc39 (IsA draft dose) (STV 1.0 0.9091)) +(: cnet_isa_a63d108829 (IsA draft regulator) (STV 1.0 0.9091)) +(: cnet_isa_edb434aa4d (IsA draft sketch) (STV 1.0 0.9091)) +(: cnet_isa_113a972ba8 (IsA draft depth) (STV 1.0 0.9091)) +(: cnet_isa_d3a9caa0db (IsA draft text) (STV 1.0 0.9091)) +(: cnet_isa_050b325832 (IsA draft drink) (STV 1.0 0.9091)) +(: cnet_isa_02e8c12413 (IsA draft wind) (STV 1.0 0.9091)) +(: cnet_isa_f509f0bf91 (IsA draft negotiable_instrument) (STV 1.0 0.9091)) +(: cnet_isa_3b57075523 (IsA draft_animal work_animal) (STV 1.0 0.9091)) +(: cnet_isa_bb171d61ff (IsA draft_beer beer) (STV 1.0 0.9091)) +(: cnet_isa_f56188e6d4 (IsA draft_board board) (STV 1.0 0.9091)) +(: cnet_isa_9fcd372566 (IsA draft_dodger deserter) (STV 1.0 0.9091)) +(: cnet_isa_cdf9ff0429 (IsA draft_horse workhorse) (STV 1.0 0.9091)) +(: cnet_isa_fe0d7cb798 (IsA draftee serviceman) (STV 1.0 0.9091)) +(: cnet_isa_dfbc3338ea (IsA drafter writer) (STV 1.0 0.9091)) +(: cnet_isa_2be440eb41 (IsA drafting trade) (STV 1.0 0.9091)) +(: cnet_isa_e956308d33 (IsA drafting writing) (STV 1.0 0.9091)) +(: cnet_isa_bda6d2e50e (IsA drafting_board board) (STV 1.0 0.9091)) +(: cnet_isa_e411a4bcda (IsA drafting_instrument instrument) (STV 1.0 0.9091)) +(: cnet_isa_8f2397c9ef (IsA drafting_table worktable) (STV 1.0 0.9091)) +(: cnet_isa_836d99a4c2 (IsA draftsman artist) (STV 1.0 0.9091)) +(: cnet_isa_bfe0c31c42 (IsA draftsman skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_84e3dd04f0 (IsA drag pull) (STV 1.0 0.9091)) +(: cnet_isa_ffb7584852 (IsA drag clothing) (STV 1.0 0.9091)) +(: cnet_isa_c65f253851 (IsA drag tediousness) (STV 1.0 0.9091)) +(: cnet_isa_055b8b9518 (IsA drag hindrance) (STV 1.0 0.9091)) +(: cnet_isa_0af85161a5 (IsA drag resistance) (STV 1.0 0.9091)) +(: cnet_isa_dbe8a8eb81 (IsA drag_coefficient coefficient) (STV 1.0 0.9091)) +(: cnet_isa_5eeffce800 (IsA dragee pill) (STV 1.0 0.9091)) +(: cnet_isa_e8c1b2e636 (IsA dragee candy) (STV 1.0 0.9091)) +(: cnet_isa_d18e62b90f (IsA dragnet system) (STV 1.0 0.9091)) +(: cnet_isa_a411d42f80 (IsA dragoman interpreter) (STV 1.0 0.9091)) +(: cnet_isa_85f3bf3849 (IsA dragon_s_blood gum) (STV 1.0 0.9091)) +(: cnet_isa_712ee29e29 (IsA dragon mystical_animal) (STV 1.0 0.9091)) +(: cnet_isa_f6ade418e2 (IsA dragon mythical_beast) (STV 1.0 0.9339)) +(: cnet_isa_869f0983f3 (IsA dragon mythological_creature) (STV 1.0 0.9091)) +(: cnet_isa_83aca9251a (IsA dragon mythological_reptilian_monster) (STV 1.0 0.9339)) +(: cnet_isa_3f742b7516 (IsA dragon agamid) (STV 1.0 0.9091)) +(: cnet_isa_6db191d35f (IsA dragon mythical_monster) (STV 1.0 0.9091)) +(: cnet_isa_0fff9a6eb9 (IsA dragon unpleasant_woman) (STV 1.0 0.9091)) +(: cnet_isa_1fb0b8d753 (IsA dragon_arum arum) (STV 1.0 0.9091)) +(: cnet_isa_66a91fe2e9 (IsA dragon_tree dracaena) (STV 1.0 0.9091)) +(: cnet_isa_6f60a2cbdf (IsA dragonet spiny_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_ee9e5594d0 (IsA dragonfly insect) (STV 1.0 0.9091)) +(: cnet_isa_1aa408d6fa (IsA dragonfly odonate) (STV 1.0 0.9091)) +(: cnet_isa_e8a9e558ae (IsA dragonhead herb) (STV 1.0 0.9091)) +(: cnet_isa_1d8259313b (IsA dragon fictional_giant_lizard) (STV 1.0 0.9091)) +(: cnet_isa_bc94de39b0 (IsA dragoon cavalryman) (STV 1.0 0.9091)) +(: cnet_isa_758f6c9de9 (IsA dragunov sniper_rifle) (STV 1.0 0.9091)) +(: cnet_isa_40b6af9c14 (IsA drain depletion) (STV 1.0 0.9091)) +(: cnet_isa_06127c4edd (IsA drain emptying) (STV 1.0 0.9091)) +(: cnet_isa_40babb7b48 (IsA drain pipe) (STV 1.0 0.9091)) +(: cnet_isa_3c59a52392 (IsA drain tube) (STV 1.0 0.9091)) +(: cnet_isa_17073dee67 (IsA drain_basket filter) (STV 1.0 0.9091)) +(: cnet_isa_9a2ddc8177 (IsA drainage_ditch ditch) (STV 1.0 0.9091)) +(: cnet_isa_d67a4106b6 (IsA drainage_system system) (STV 1.0 0.9091)) +(: cnet_isa_4768612c12 (IsA drainboard board) (STV 1.0 0.9091)) +(: cnet_isa_134231fe05 (IsA drainplug plug) (STV 1.0 0.9091)) +(: cnet_isa_e9716cc002 (IsA drake duck) (STV 1.0 0.9091)) +(: cnet_isa_09b168a06a (IsA dram apothecary_unit) (STV 1.0 0.9091)) +(: cnet_isa_4226116685 (IsA dram armenian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_c050262b04 (IsA dram avoirdupois_unit) (STV 1.0 0.9091)) +(: cnet_isa_cb0c01bcd7 (IsA drama emotionality) (STV 1.0 0.9091)) +(: cnet_isa_8e1e52ccb3 (IsA drama writing_style) (STV 1.0 0.9091)) +(: cnet_isa_03f3b41c11 (IsA drama episode) (STV 1.0 0.9091)) +(: cnet_isa_5c0428ef21 (IsA drama_critic critic) (STV 1.0 0.9091)) +(: cnet_isa_17c4592e52 (IsA dramatic_composition writing) (STV 1.0 0.9091)) +(: cnet_isa_21fa48d8c2 (IsA dramatic_irony irony) (STV 1.0 0.9091)) +(: cnet_isa_474949c8c7 (IsA dramatic_production performance) (STV 1.0 0.9091)) +(: cnet_isa_a82d1afd4f (IsA dramatic extracurricular_activity) (STV 1.0 0.9091)) +(: cnet_isa_13b853119c (IsA dramatist writer) (STV 1.0 0.9091)) +(: cnet_isa_898630ccd9 (IsA dramatization representation) (STV 1.0 0.9091)) +(: cnet_isa_c7de554431 (IsA dramatization writing) (STV 1.0 0.9091)) +(: cnet_isa_3617e7f214 (IsA dramaturgy communication) (STV 1.0 0.9091)) +(: cnet_isa_f320da60ef (IsA drambuie liqueur) (STV 1.0 0.9091)) +(: cnet_isa_2fc8c714c7 (IsA drambuie scotch) (STV 1.0 0.9091)) +(: cnet_isa_20ec8d5e04 (IsA drape covering) (STV 1.0 0.9091)) +(: cnet_isa_a1bbf6643b (IsA drape manner) (STV 1.0 0.9091)) +(: cnet_isa_6edc2dc806 (IsA draper trader) (STV 1.0 0.9091)) +(: cnet_isa_c8b4a4b670 (IsA drapery fabric) (STV 1.0 0.9091)) +(: cnet_isa_7e642b970f (IsA dravidian natural_language) (STV 1.0 0.9091)) +(: cnet_isa_de927a032e (IsA dravidian indian) (STV 1.0 0.9091)) +(: cnet_isa_3d6b70baad (IsA draw poker) (STV 1.0 0.9091)) +(: cnet_isa_e584e42092 (IsA draw pull) (STV 1.0 0.9091)) +(: cnet_isa_800b198745 (IsA draw run) (STV 1.0 0.9091)) +(: cnet_isa_186e68f75f (IsA draw object) (STV 1.0 0.9091)) +(: cnet_isa_2bdbd714c1 (IsA draw playing_card) (STV 1.0 0.9091)) +(: cnet_isa_25af675f1a (IsA draw finish) (STV 1.0 0.9091)) +(: cnet_isa_3f49dbfc0c (IsA draw gully) (STV 1.0 0.9091)) +(: cnet_isa_ff4633668b (IsA drawback disadvantage) (STV 1.0 0.9091)) +(: cnet_isa_ed49fb0308 (IsA drawbar bar) (STV 1.0 0.9091)) +(: cnet_isa_73d6d142bd (IsA drawbridge bridge) (STV 1.0 0.9091)) +(: cnet_isa_88b8151f99 (IsA drawee payer) (STV 1.0 0.9091)) +(: cnet_isa_61f0500129 (IsA drawer container) (STV 1.0 0.9454)) +(: cnet_isa_0ad6fd6ce8 (IsA drawer storage_space) (STV 1.0 0.9091)) +(: cnet_isa_5b0988ad24 (IsA drawer money_handler) (STV 1.0 0.9091)) +(: cnet_isa_3111a98c14 (IsA drawer underpant) (STV 1.0 0.9091)) +(: cnet_isa_06259e2555 (IsA drawing art) (STV 1.0 0.9091)) +(: cnet_isa_6356f5e3b4 (IsA drawing drain) (STV 1.0 0.9091)) +(: cnet_isa_3782b2da23 (IsA drawing representation) (STV 1.0 0.9091)) +(: cnet_isa_bbc25d78d1 (IsA drawing artwork) (STV 1.0 0.9091)) +(: cnet_isa_a3c0085e29 (IsA drawing_card feature) (STV 1.0 0.9091)) +(: cnet_isa_6f730652ec (IsA drawing_card entertainer) (STV 1.0 0.9091)) +(: cnet_isa_a23b0aabd1 (IsA drawing_chalk chalk) (STV 1.0 0.9091)) +(: cnet_isa_5593c18c0f (IsA drawing_paper paper) (STV 1.0 0.9091)) +(: cnet_isa_eae955ca6f (IsA drawing_power attraction) (STV 1.0 0.9091)) +(: cnet_isa_b31d938eb5 (IsA drawing_room room_in_home) (STV 1.0 0.9339)) +(: cnet_isa_83ddbd2917 (IsA drawing_room compartment) (STV 1.0 0.9091)) +(: cnet_isa_bc48fe8cec (IsA drawing_room reception_room) (STV 1.0 0.9091)) +(: cnet_isa_455944db25 (IsA drawknife knife) (STV 1.0 0.9091)) +(: cnet_isa_725691e3d1 (IsA drawl accent) (STV 1.0 0.9091)) +(: cnet_isa_1a15869210 (IsA drawler speaker) (STV 1.0 0.9091)) +(: cnet_isa_7e052122c4 (IsA drawnwork embroidery) (STV 1.0 0.9091)) +(: cnet_isa_0509beca32 (IsA drawstring tie) (STV 1.0 0.9091)) +(: cnet_isa_8af49bc46e (IsA drawstring_bag bag) (STV 1.0 0.9091)) +(: cnet_isa_49b65feda4 (IsA dray horse_cart) (STV 1.0 0.9091)) +(: cnet_isa_069bd18d98 (IsA dreadlock lock) (STV 1.0 0.9091)) +(: cnet_isa_731858b2ac (IsA dreadnought battleship) (STV 1.0 0.9091)) +(: cnet_isa_3d616a747a (IsA dream imagination) (STV 1.0 0.9091)) +(: cnet_isa_7201f07105 (IsA dream reverie) (STV 1.0 0.9091)) +(: cnet_isa_37e80f932f (IsA dream perfection) (STV 1.0 0.9091)) +(: cnet_isa_80926739ff (IsA dreamer sleeper) (STV 1.0 0.9091)) +(: cnet_isa_4322bbcc1d (IsA dredge power_shovel) (STV 1.0 0.9091)) +(: cnet_isa_8c7b3da850 (IsA dredger barge) (STV 1.0 0.9091)) +(: cnet_isa_a40bebe281 (IsA dredging_bucket bucket) (STV 1.0 0.9091)) +(: cnet_isa_cabdf4c0bb (IsA dreg small_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_194656a241 (IsA dreg sediment) (STV 1.0 0.9091)) +(: cnet_isa_bb85a0376a (IsA dreissena mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_e02070baa6 (IsA drenching wetting) (STV 1.0 0.9091)) +(: cnet_isa_85de01a5a7 (IsA drepanididae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_25eb8039e9 (IsA drepanis bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_0c6ee474b3 (IsA dress form_of_clothing) (STV 1.0 0.9091)) +(: cnet_isa_9ed4f1a5ca (IsA dress woman_s_clothing) (STV 1.0 0.9091)) +(: cnet_isa_fdcc22a0cc (IsA dress_blue dress_uniform) (STV 1.0 0.9091)) +(: cnet_isa_6eac0aee8f (IsA dress_code code) (STV 1.0 0.9091)) +(: cnet_isa_1cb8d99a92 (IsA dress_hat hat) (STV 1.0 0.9091)) +(: cnet_isa_06e62ce4bc (IsA dress_hat man_s_clothing) (STV 1.0 0.9091)) +(: cnet_isa_3231c02a97 (IsA dress_rack rack) (STV 1.0 0.9091)) +(: cnet_isa_66cba0ecd8 (IsA dress_rehearsal rehearsal) (STV 1.0 0.9091)) +(: cnet_isa_93500da15b (IsA dress_shirt shirt) (STV 1.0 0.9091)) +(: cnet_isa_82e59100db (IsA dress_suit formalwear) (STV 1.0 0.9091)) +(: cnet_isa_877834750d (IsA dress_uniform military_uniform) (STV 1.0 0.9091)) +(: cnet_isa_0332373bf0 (IsA dressage equestrian_sport) (STV 1.0 0.9091)) +(: cnet_isa_7f5f7a2ed1 (IsA dressed_ore ore) (STV 1.0 0.9091)) +(: cnet_isa_82f755e0cc (IsA dresser piece_of_furniture) (STV 1.0 0.9091)) +(: cnet_isa_7fba9159d1 (IsA dresser cabinet) (STV 1.0 0.9091)) +(: cnet_isa_237e4d9296 (IsA dresser assistant) (STV 1.0 0.9091)) +(: cnet_isa_d701965958 (IsA dresser person) (STV 1.0 0.9091)) +(: cnet_isa_04e102ac99 (IsA dressing conversion) (STV 1.0 0.9091)) +(: cnet_isa_88761c311c (IsA dressing covering) (STV 1.0 0.9091)) +(: cnet_isa_e414e75c0b (IsA dressing medical_care) (STV 1.0 0.9091)) +(: cnet_isa_bdde5ef6a5 (IsA dressing cloth_covering) (STV 1.0 0.9091)) +(: cnet_isa_8524553d00 (IsA dressing sauce) (STV 1.0 0.9091)) +(: cnet_isa_0254af245e (IsA dressing_case baggage) (STV 1.0 0.9091)) +(: cnet_isa_c5c1a3e9bf (IsA dressing_gown robe) (STV 1.0 0.9091)) +(: cnet_isa_1c12fcc306 (IsA dressing_room room) (STV 1.0 0.9091)) +(: cnet_isa_e3fb1c00c6 (IsA dressing_sack jacket) (STV 1.0 0.9091)) +(: cnet_isa_5055d485fd (IsA dressing_station first_aid_station) (STV 1.0 0.9091)) +(: cnet_isa_431c156d59 (IsA dressing_table table) (STV 1.0 0.9091)) +(: cnet_isa_d97cc80422 (IsA dressmaker_s_model model) (STV 1.0 0.9091)) +(: cnet_isa_6339354939 (IsA dressmaker garmentmaker) (STV 1.0 0.9091)) +(: cnet_isa_2cc25d07e0 (IsA dressmaking trade) (STV 1.0 0.9091)) +(: cnet_isa_d8d6669994 (IsA drey nest) (STV 1.0 0.9091)) +(: cnet_isa_6d799ed59c (IsA dribble propulsion) (STV 1.0 0.9091)) +(: cnet_isa_4b6c0ae586 (IsA dribbler basketball_player) (STV 1.0 0.9091)) +(: cnet_isa_345ec67e68 (IsA dribbler person) (STV 1.0 0.9091)) +(: cnet_isa_5c3def26fd (IsA dried_apricot dried_fruit) (STV 1.0 0.9091)) +(: cnet_isa_642c55c457 (IsA dried_fruit edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_03fe9557b3 (IsA drift natural_process) (STV 1.0 0.9091)) +(: cnet_isa_bb8fc28e9e (IsA drift inclination) (STV 1.0 0.9091)) +(: cnet_isa_670e9c2a4a (IsA drift tenor) (STV 1.0 0.9091)) +(: cnet_isa_b7ea143114 (IsA drift passageway) (STV 1.0 0.9091)) +(: cnet_isa_1f5dddd587 (IsA drift mass) (STV 1.0 0.9091)) +(: cnet_isa_355d5ccca7 (IsA drift force) (STV 1.0 0.9091)) +(: cnet_isa_7b68c83abd (IsA drift linguistic_process) (STV 1.0 0.9091)) +(: cnet_isa_a1b45d084d (IsA drift_ice ice) (STV 1.0 0.9091)) +(: cnet_isa_a0c1c8ef8a (IsA drift_net fishnet) (STV 1.0 0.9091)) +(: cnet_isa_fc43a8b34a (IsA driftage deviation) (STV 1.0 0.9091)) +(: cnet_isa_3bd10fb399 (IsA driftfish butterfish) (STV 1.0 0.9091)) +(: cnet_isa_e195242fe6 (IsA drifting wandering) (STV 1.0 0.9091)) +(: cnet_isa_8110f7f31a (IsA driftwood wood) (STV 1.0 0.9091)) +(: cnet_isa_d609aaefe1 (IsA drill baboon) (STV 1.0 0.9091)) +(: cnet_isa_6743948c08 (IsA drill tool) (STV 1.0 0.9091)) +(: cnet_isa_3f396bc98d (IsA drill training) (STV 1.0 0.9091)) +(: cnet_isa_0cb9e4d2b8 (IsA drill_master noncommissioned_officer) (STV 1.0 0.9091)) +(: cnet_isa_e3dd7a6844 (IsA drill_press machine_tool) (STV 1.0 0.9091)) +(: cnet_isa_96a6e7969a (IsA drill_rig rig) (STV 1.0 0.9091)) +(: cnet_isa_e95897b427 (IsA drill_site workplace) (STV 1.0 0.9091)) +(: cnet_isa_0a59927b87 (IsA drill_steel carbon_steel) (STV 1.0 0.9091)) +(: cnet_isa_f4e3c2966b (IsA drilling creating_by_removal) (STV 1.0 0.9091)) +(: cnet_isa_675892058f (IsA drilling_bit bit) (STV 1.0 0.9091)) +(: cnet_isa_07af7a8bad (IsA drilling_mud lubricant) (STV 1.0 0.9091)) +(: cnet_isa_31bf687941 (IsA drilling_pipe pipe) (STV 1.0 0.9091)) +(: cnet_isa_e9a5e8a14a (IsA drilling_platform drill_rig) (STV 1.0 0.9091)) +(: cnet_isa_7728b7c8d6 (IsA drimy magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_85ec8350b7 (IsA drink liquid) (STV 1.0 0.9091)) +(: cnet_isa_d462099bbb (IsA drink intemperance) (STV 1.0 0.9091)) +(: cnet_isa_5eadf8a674 (IsA drink helping) (STV 1.0 0.9091)) +(: cnet_isa_24a0a44f62 (IsA drink body_of_water) (STV 1.0 0.9091)) +(: cnet_isa_d9a78c16ec (IsA drinker consumer) (STV 1.0 0.9091)) +(: cnet_isa_1ead4a0c8a (IsA drinking consumption) (STV 1.0 0.9091)) +(: cnet_isa_cb8d960dd9 (IsA drinking_age age) (STV 1.0 0.9091)) +(: cnet_isa_b230bc6ec0 (IsA drinking_bout drink) (STV 1.0 0.9091)) +(: cnet_isa_b266fbf0e4 (IsA drinking_fountain fountain) (STV 1.0 0.9091)) +(: cnet_isa_d57187eb8a (IsA drinking_song song) (STV 1.0 0.9091)) +(: cnet_isa_5c5b0a7db0 (IsA drinking_vessel vessel) (STV 1.0 0.9091)) +(: cnet_isa_d9c8d9f0b0 (IsA drinking_water beverage) (STV 1.0 0.9091)) +(: cnet_isa_56ab1fc26d (IsA drinking_water water) (STV 1.0 0.9091)) +(: cnet_isa_c280984c42 (IsA drip projection) (STV 1.0 0.9091)) +(: cnet_isa_6436845cfb (IsA drip flow) (STV 1.0 0.9091)) +(: cnet_isa_c5b8e300f8 (IsA drip sound) (STV 1.0 0.9091)) +(: cnet_isa_b5812a3ffd (IsA drip_coffee coffee) (STV 1.0 0.9091)) +(: cnet_isa_32c53406a2 (IsA drip_culture hydroponic) (STV 1.0 0.9091)) +(: cnet_isa_5074c3bc10 (IsA drip_feed administration) (STV 1.0 0.9091)) +(: cnet_isa_7b7b1a7050 (IsA drip_loop loop) (STV 1.0 0.9091)) +(: cnet_isa_b5b8e23675 (IsA drip_mat mat) (STV 1.0 0.9091)) +(: cnet_isa_9f2867b644 (IsA drip_pan pan) (STV 1.0 0.9091)) +(: cnet_isa_1497e6db8f (IsA drip_pot coffeepot) (STV 1.0 0.9091)) +(: cnet_isa_01db770d95 (IsA drippiness physical_property) (STV 1.0 0.9091)) +(: cnet_isa_39720f3ad1 (IsA dripping flow) (STV 1.0 0.9091)) +(: cnet_isa_b3f0487f15 (IsA dripping_pan pan) (STV 1.0 0.9091)) +(: cnet_isa_4b1cd88624 (IsA dripping edible_fat) (STV 1.0 0.9091)) +(: cnet_isa_3dfe16718c (IsA dripstone drip) (STV 1.0 0.9091)) +(: cnet_isa_e18127ded4 (IsA dripstone calcium_carbonate) (STV 1.0 0.9091)) +(: cnet_isa_2c56314a45 (IsA drive golf_stroke) (STV 1.0 0.9091)) +(: cnet_isa_8a4e68dbac (IsA drive journey) (STV 1.0 0.9091)) +(: cnet_isa_a2eb01115e (IsA drive propulsion) (STV 1.0 0.9091)) +(: cnet_isa_aec52fc073 (IsA drive transportation) (STV 1.0 0.9091)) +(: cnet_isa_125f147c7b (IsA drive mechanism) (STV 1.0 0.9091)) +(: cnet_isa_2c4e4bb714 (IsA drive road) (STV 1.0 0.9091)) +(: cnet_isa_142bf0060c (IsA drive trait) (STV 1.0 0.9091)) +(: cnet_isa_5631052d2c (IsA drive device) (STV 1.0 0.9091)) +(: cnet_isa_7f363b291d (IsA drive return) (STV 1.0 0.9091)) +(: cnet_isa_fa2f5eefae (IsA drive physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_346e337fa1 (IsA drive_by_killing shooting) (STV 1.0 0.9091)) +(: cnet_isa_dd269a2cdd (IsA drive_by_shooting shooting) (STV 1.0 0.9091)) +(: cnet_isa_67abb84b0a (IsA drive_in facility) (STV 1.0 0.9091)) +(: cnet_isa_ddeae31153 (IsA drive_line mechanism) (STV 1.0 0.9091)) +(: cnet_isa_b2f8059529 (IsA drivel message) (STV 1.0 0.9091)) +(: cnet_isa_0f4d27ba34 (IsA driveller speaker) (STV 1.0 0.9091)) +(: cnet_isa_066be2a890 (IsA driven_well well) (STV 1.0 0.9091)) +(: cnet_isa_d4f69402fa (IsA driver_s_license license) (STV 1.0 0.9091)) +(: cnet_isa_a58b74cd33 (IsA driver wood) (STV 1.0 0.9091)) +(: cnet_isa_fed48fe29e (IsA driver utility_program) (STV 1.0 0.9091)) +(: cnet_isa_33cb5a2a01 (IsA driver golfer) (STV 1.0 0.9091)) +(: cnet_isa_3cfc1581e8 (IsA driver operator) (STV 1.0 0.9091)) +(: cnet_isa_2fc06695c5 (IsA driver worker) (STV 1.0 0.9091)) +(: cnet_isa_ca151c8bd9 (IsA driveshaft rotating_shaft) (STV 1.0 0.9091)) +(: cnet_isa_35df02c70e (IsA driveway road) (STV 1.0 0.9091)) +(: cnet_isa_c1c0bc64e8 (IsA driving steering) (STV 1.0 0.9091)) +(: cnet_isa_e7376ff2b8 (IsA driving travel) (STV 1.0 0.9091)) +(: cnet_isa_97783f7e78 (IsA driving_belt belt) (STV 1.0 0.9091)) +(: cnet_isa_1c4578ba44 (IsA driving_car dangerous_activity) (STV 1.0 0.9091)) +(: cnet_isa_8cc448faba (IsA driving_iron iron) (STV 1.0 0.9091)) +(: cnet_isa_c9dcd32f2e (IsA driving_school school) (STV 1.0 0.9091)) +(: cnet_isa_704b055045 (IsA driving_wheel wheel) (STV 1.0 0.9091)) +(: cnet_isa_d5ce7bab2c (IsA drizzle rain) (STV 1.0 0.9091)) +(: cnet_isa_d8710a2218 (IsA drogue parachute) (STV 1.0 0.9091)) +(: cnet_isa_a9a2e07101 (IsA drogue target) (STV 1.0 0.9091)) +(: cnet_isa_0cba8ce464 (IsA drogue_parachute parachute) (STV 1.0 0.9091)) +(: cnet_isa_989a552746 (IsA drollery jest) (STV 1.0 0.9091)) +(: cnet_isa_4022143d9f (IsA drollery fun) (STV 1.0 0.9091)) +(: cnet_isa_eb29eec6b8 (IsA dromaeosaur maniraptor) (STV 1.0 0.9091)) +(: cnet_isa_4a294869e7 (IsA dromaeosauridae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_136f2dfdef (IsA dromaius bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_3363b9bef0 (IsA dronabinol psychoactive_drug) (STV 1.0 0.9091)) +(: cnet_isa_07437d0f97 (IsA drone bee) (STV 1.0 0.9091)) +(: cnet_isa_bc83c3bdcd (IsA drone heavier_than_air_craft) (STV 1.0 0.9091)) +(: cnet_isa_6ac8ea8e39 (IsA drone pipe) (STV 1.0 0.9091)) +(: cnet_isa_991fd0e120 (IsA drool saliva) (STV 1.0 0.9091)) +(: cnet_isa_7d15621b3e (IsA drop descent) (STV 1.0 0.9091)) +(: cnet_isa_cb40ca10ff (IsA drop depository) (STV 1.0 0.9091)) +(: cnet_isa_33cf9c0c48 (IsA drop decrease) (STV 1.0 0.9091)) +(: cnet_isa_6b531ec0cd (IsA drop hiding_place) (STV 1.0 0.9091)) +(: cnet_isa_052b412a20 (IsA drop gravitation) (STV 1.0 0.9091)) +(: cnet_isa_36b20e5bff (IsA drop small_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_26e36b59dd (IsA drop sphere) (STV 1.0 0.9091)) +(: cnet_isa_6e0994336a (IsA drop_arch pointed_arch) (STV 1.0 0.9091)) +(: cnet_isa_2b62397f66 (IsA drop_biscuit biscuit) (STV 1.0 0.9091)) +(: cnet_isa_a0e8d40308 (IsA drop_cloth piece_of_cloth) (STV 1.0 0.9091)) +(: cnet_isa_ec50d0fccc (IsA drop_curtain curtain) (STV 1.0 0.9091)) +(: cnet_isa_98e9476ef0 (IsA drop_down_menu menu) (STV 1.0 0.9091)) +(: cnet_isa_88aad3ace6 (IsA drop_forge device) (STV 1.0 0.9091)) +(: cnet_isa_09b1f68b01 (IsA drop_leaf leaf) (STV 1.0 0.9091)) +(: cnet_isa_9e93d1cf84 (IsA drop_leaf_table table) (STV 1.0 0.9091)) +(: cnet_isa_85ebb32d5f (IsA drop_off_charge fee) (STV 1.0 0.9091)) +(: cnet_isa_73bf0e87c5 (IsA drop_scone scone) (STV 1.0 0.9091)) +(: cnet_isa_3e4851bf32 (IsA drop_shot return) (STV 1.0 0.9091)) +(: cnet_isa_5b7fe8a017 (IsA drop_zone zone) (STV 1.0 0.9091)) +(: cnet_isa_bf914830cc (IsA dropkick kick) (STV 1.0 0.9091)) +(: cnet_isa_b17b1c67a8 (IsA dropkicker kicker) (STV 1.0 0.9091)) +(: cnet_isa_9f24a17f58 (IsA droplet drop) (STV 1.0 0.9091)) +(: cnet_isa_218af1e2cc (IsA dropline headline) (STV 1.0 0.9091)) +(: cnet_isa_e4b2819f0e (IsA dropout individualist) (STV 1.0 0.9091)) +(: cnet_isa_5dee30045d (IsA dropout quitter) (STV 1.0 0.9091)) +(: cnet_isa_b29086e53b (IsA dropper pipet) (STV 1.0 0.9091)) +(: cnet_isa_1e8093a7cc (IsA dropping fecal_matter) (STV 1.0 0.9091)) +(: cnet_isa_1eb3355e1c (IsA dropseed grass) (STV 1.0 0.9091)) +(: cnet_isa_f761f17163 (IsA drosera dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d48eaa9be7 (IsA droseraceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_242fa86ed1 (IsA droshky carriage) (STV 1.0 0.9091)) +(: cnet_isa_3f5edb54b2 (IsA drosophila fruit_fly) (STV 1.0 0.9091)) +(: cnet_isa_605aff02ac (IsA drosophilidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_1df416e38b (IsA drosophyllum dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_09f2a9b1ab (IsA drosophyllum_lusitanicum carnivorous_plant) (STV 1.0 0.9091)) +(: cnet_isa_0bfd4e3996 (IsA drought dryness) (STV 1.0 0.9091)) +(: cnet_isa_7c63e8a1f3 (IsA drought time_period) (STV 1.0 0.9091)) +(: cnet_isa_983740d348 (IsA drove chisel) (STV 1.0 0.9091)) +(: cnet_isa_7bdb86ac43 (IsA drove animal_group) (STV 1.0 0.9091)) +(: cnet_isa_3066e1860a (IsA drove crowd) (STV 1.0 0.9091)) +(: cnet_isa_23a12e9eb4 (IsA drudge laborer) (STV 1.0 0.9091)) +(: cnet_isa_edbf04e569 (IsA drudgery labor) (STV 1.0 0.9091)) +(: cnet_isa_907345fef0 (IsA drug chemical) (STV 1.0 0.9091)) +(: cnet_isa_8e7ef1e57b (IsA drug agent) (STV 1.0 0.9091)) +(: cnet_isa_0e6199b281 (IsA drug_addict addict) (STV 1.0 0.9091)) +(: cnet_isa_828a51f071 (IsA drug_addiction addiction) (STV 1.0 0.9091)) +(: cnet_isa_f281977ea4 (IsA drug_baron boss) (STV 1.0 0.9091)) +(: cnet_isa_7303a63be7 (IsA drug_bust impoundment) (STV 1.0 0.9091)) +(: cnet_isa_28a2190b7e (IsA drug_cartel trust) (STV 1.0 0.9091)) +(: cnet_isa_43a7bbfb1b (IsA drug_cocktail medicine) (STV 1.0 0.9091)) +(: cnet_isa_c62508a943 (IsA drug_company company) (STV 1.0 0.9091)) +(: cnet_isa_de0a704c85 (IsA drug_enforcement_administration law_enforcement_agency) (STV 1.0 0.9091)) +(: cnet_isa_3e8e9b97c0 (IsA drug_of_abuse drug) (STV 1.0 0.9091)) +(: cnet_isa_712cfee2b9 (IsA drug_traffic traffic) (STV 1.0 0.9091)) +(: cnet_isa_fc6efc72e5 (IsA drug_use problem) (STV 1.0 0.9091)) +(: cnet_isa_1c0847180e (IsA drug_user person) (STV 1.0 0.9091)) +(: cnet_isa_8e9387843c (IsA drug_war war) (STV 1.0 0.9091)) +(: cnet_isa_97ce4566f8 (IsA drugget rug) (STV 1.0 0.9091)) +(: cnet_isa_b60e3ce904 (IsA drug substance) (STV 1.0 0.9339)) +(: cnet_isa_86830eeb98 (IsA drugstore shop) (STV 1.0 0.9091)) +(: cnet_isa_321a50d442 (IsA druid priest) (STV 1.0 0.9091)) +(: cnet_isa_583d8f3790 (IsA druidism paganism) (STV 1.0 0.9091)) +(: cnet_isa_9f316e1876 (IsA drum percussion_instrument) (STV 1.0 0.9636)) +(: cnet_isa_96a995d4df (IsA drum sciaenid_fish) (STV 1.0 0.9091)) +(: cnet_isa_84710eafb3 (IsA drum vessel) (STV 1.0 0.9091)) +(: cnet_isa_f162af85bc (IsA drum sound) (STV 1.0 0.9091)) +(: cnet_isa_cba5eb9396 (IsA drum_brake hydraulic_brake) (STV 1.0 0.9091)) +(: cnet_isa_25519c826d (IsA drum_major conductor) (STV 1.0 0.9091)) +(: cnet_isa_b2c323cbef (IsA drum_majorette baton_twirler) (STV 1.0 0.9091)) +(: cnet_isa_fcbc6bd290 (IsA drum_majorette conductor) (STV 1.0 0.9091)) +(: cnet_isa_2f1f54f291 (IsA drum_printer line_printer) (STV 1.0 0.9091)) +(: cnet_isa_616c30451a (IsA drum_sander power_tool) (STV 1.0 0.9091)) +(: cnet_isa_fa5dca1eb0 (IsA drumbeat advocacy) (STV 1.0 0.9091)) +(: cnet_isa_0bb6b61a0b (IsA drumbeat signal) (STV 1.0 0.9091)) +(: cnet_isa_795e27eed8 (IsA drumhead membrane) (STV 1.0 0.9091)) +(: cnet_isa_d81cad9349 (IsA drumhead_court_martial court_martial) (STV 1.0 0.9091)) +(: cnet_isa_02b0a8bf71 (IsA drumlin drift) (STV 1.0 0.9091)) +(: cnet_isa_d2f88e8b3c (IsA drummer percussionist) (STV 1.0 0.9091)) +(: cnet_isa_a1253cf463 (IsA drumming percussion) (STV 1.0 0.9091)) +(: cnet_isa_1cc7fd5870 (IsA drumstick stick) (STV 1.0 0.9091)) +(: cnet_isa_1de01b8b30 (IsA drumstick helping) (STV 1.0 0.9091)) +(: cnet_isa_5c98605dbc (IsA drunk drinker) (STV 1.0 0.9091)) +(: cnet_isa_eed9dddec2 (IsA drunk_and_disorderly drunk) (STV 1.0 0.9091)) +(: cnet_isa_5c72749c57 (IsA drunkard drinker) (STV 1.0 0.9091)) +(: cnet_isa_b745e51faa (IsA drunken_reveler drinker) (STV 1.0 0.9091)) +(: cnet_isa_b7bb0d87e9 (IsA drunkenness temporary_state) (STV 1.0 0.9091)) +(: cnet_isa_b60d79c990 (IsA drupe fruit) (STV 1.0 0.9091)) +(: cnet_isa_8588e095bd (IsA drupelet drupe) (STV 1.0 0.9091)) +(: cnet_isa_bccd027269 (IsA druse disciple) (STV 1.0 0.9091)) +(: cnet_isa_ec8d02f216 (IsA drusen eye_disease) (STV 1.0 0.9091)) +(: cnet_isa_58b09bee33 (IsA dry reformer) (STV 1.0 0.9091)) +(: cnet_isa_754dacbab0 (IsA dry_battery voltaic_battery) (STV 1.0 0.9091)) +(: cnet_isa_e0fb3f0b2a (IsA dry_bulb_thermometer thermometer) (STV 1.0 0.9091)) +(: cnet_isa_4bfb17ce50 (IsA dry_cell leclanche_cell) (STV 1.0 0.9091)) +(: cnet_isa_6ebd2dd577 (IsA dry_cleaning cleaning) (STV 1.0 0.9091)) +(: cnet_isa_89e311fa6c (IsA dry_dock dock) (STV 1.0 0.9091)) +(: cnet_isa_706618b87f (IsA dry_fly fly) (STV 1.0 0.9091)) +(: cnet_isa_21020f2bab (IsA dry_gangrene gangrene) (STV 1.0 0.9091)) +(: cnet_isa_c89f86b1c2 (IsA dry_gulching ambush) (STV 1.0 0.9091)) +(: cnet_isa_3876988854 (IsA dry_gulching murder) (STV 1.0 0.9091)) +(: cnet_isa_81968a785f (IsA dry_ice solid) (STV 1.0 0.9091)) +(: cnet_isa_91c11500d2 (IsA dry_kiln kiln) (STV 1.0 0.9091)) +(: cnet_isa_825a3abb36 (IsA dry_masonry masonry) (STV 1.0 0.9091)) +(: cnet_isa_c023ff6286 (IsA dry_nurse nanny) (STV 1.0 0.9091)) +(: cnet_isa_3751d13da3 (IsA dry_plate_process photography) (STV 1.0 0.9091)) +(: cnet_isa_dc3edbbae3 (IsA dry_point engraving) (STV 1.0 0.9091)) +(: cnet_isa_1b83c2ff40 (IsA dry_point needle) (STV 1.0 0.9091)) +(: cnet_isa_03e249902a (IsA dry_rot fungus) (STV 1.0 0.9091)) +(: cnet_isa_55e17c06a9 (IsA dry_rot plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_002f6d63a9 (IsA dry_season season) (STV 1.0 0.9091)) +(: cnet_isa_d80f8f2b42 (IsA dry_unit volume_unit) (STV 1.0 0.9091)) +(: cnet_isa_fab53e0dc5 (IsA dry_vermouth vermouth) (STV 1.0 0.9091)) +(: cnet_isa_cec111d8cf (IsA dry_wall dry_masonry) (STV 1.0 0.9091)) +(: cnet_isa_788708b4c3 (IsA dry_wall stone_wall) (STV 1.0 0.9091)) +(: cnet_isa_c3fdc482c3 (IsA dry_walling construction) (STV 1.0 0.9091)) +(: cnet_isa_a4b83ae2f4 (IsA dry_wood_termite termite) (STV 1.0 0.9091)) +(: cnet_isa_9a404acfd9 (IsA dryad nymph) (STV 1.0 0.9091)) +(: cnet_isa_2ecd9e2bac (IsA dryadella monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c610892b09 (IsA drya rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0658b78544 (IsA dryer appliance) (STV 1.0 0.9091)) +(: cnet_isa_cece176464 (IsA drygood commodity) (STV 1.0 0.9091)) +(: cnet_isa_004b4ae6c4 (IsA drying_oil animal_oil) (STV 1.0 0.9091)) +(: cnet_isa_037b977b90 (IsA drying_oil vegetable_oil) (STV 1.0 0.9091)) +(: cnet_isa_f45cd19f24 (IsA dryland_blueberry blueberry) (STV 1.0 0.9091)) +(: cnet_isa_fb803b3b7b (IsA drymarchon reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_a48173488b (IsA drymoglossum fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_c93d475a49 (IsA drynaria fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_9784d240cd (IsA dryness condition) (STV 1.0 0.9091)) +(: cnet_isa_d192a8ede9 (IsA dryopithecine hominid) (STV 1.0 0.9091)) +(: cnet_isa_8e0e27d207 (IsA dryopithecus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_0e505105a1 (IsA dryopteridaceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_bf5dcfabbc (IsA dryopteris fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_f996b4cbd0 (IsA drypis herb) (STV 1.0 0.9091)) +(: cnet_isa_f29acd4dab (IsA dscdna complementary_dna) (STV 1.0 0.9091)) +(: cnet_isa_efda829ca4 (IsA dual_scan_display passive_matrix_display) (STV 1.0 0.9091)) +(: cnet_isa_9847f17084 (IsA dualism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_6752398fcd (IsA dualist disciple) (STV 1.0 0.9091)) +(: cnet_isa_55f87ac875 (IsA duality exchangeability) (STV 1.0 0.9091)) +(: cnet_isa_efba6f3cc1 (IsA duality property) (STV 1.0 0.9091)) +(: cnet_isa_1784d8e60b (IsA dub sound) (STV 1.0 0.9091)) +(: cnet_isa_4eca26ee7d (IsA dubbin tallow) (STV 1.0 0.9091)) +(: cnet_isa_c65e12b934 (IsA dubbing soundtrack) (STV 1.0 0.9091)) +(: cnet_isa_a73f7a1518 (IsA dubliner irelander) (STV 1.0 0.9091)) +(: cnet_isa_dfa41b0dcf (IsA dubonnet wine) (STV 1.0 0.9091)) +(: cnet_isa_4610483675 (IsA ducat coin) (STV 1.0 0.9091)) +(: cnet_isa_353b376d5d (IsA duce leader) (STV 1.0 0.9091)) +(: cnet_isa_b2dabe046a (IsA duchenne_s_muscular_dystrophy muscular_dystrophy) (STV 1.0 0.9091)) +(: cnet_isa_7416c260dd (IsA duchess noblewoman) (STV 1.0 0.9091)) +(: cnet_isa_715f20c6a0 (IsA duchy domain) (STV 1.0 0.9091)) +(: cnet_isa_d71142ff71 (IsA duck carbon_based_life_form) (STV 1.0 0.9091)) +(: cnet_isa_0026ceed1d (IsA duck anseriform_bird) (STV 1.0 0.9091)) +(: cnet_isa_583837a479 (IsA duck fabric) (STV 1.0 0.9091)) +(: cnet_isa_d598a560c4 (IsA duck score) (STV 1.0 0.9091)) +(: cnet_isa_2c8f5ea5c4 (IsA duck poultry) (STV 1.0 0.9091)) +(: cnet_isa_406d998b8b (IsA duck_down down) (STV 1.0 0.9091)) +(: cnet_isa_818df4e046 (IsA duck_hunter hunter) (STV 1.0 0.9091)) +(: cnet_isa_0089577917 (IsA duck_pate pate) (STV 1.0 0.9091)) +(: cnet_isa_4f711921de (IsA duck_sauce condiment) (STV 1.0 0.9091)) +(: cnet_isa_d8ace35bbe (IsA duckboard boardwalk) (STV 1.0 0.9091)) +(: cnet_isa_13b6f960ca (IsA ducking hunt) (STV 1.0 0.9091)) +(: cnet_isa_3021a9c636 (IsA duckling duck) (STV 1.0 0.9091)) +(: cnet_isa_87295c3402 (IsA duckpin bowling_pin) (STV 1.0 0.9091)) +(: cnet_isa_ae5ae1b8e2 (IsA duckpin bowling) (STV 1.0 0.9091)) +(: cnet_isa_23a8f33bf7 (IsA duck_and_drake game) (STV 1.0 0.9091)) +(: cnet_isa_c5ac40f77a (IsA duckweed aquatic_plant) (STV 1.0 0.9091)) +(: cnet_isa_46c4da3efe (IsA duct conduit) (STV 1.0 0.9091)) +(: cnet_isa_5e5d4d7d0e (IsA duct passage) (STV 1.0 0.9091)) +(: cnet_isa_6b1954a77f (IsA duct plant_part) (STV 1.0 0.9091)) +(: cnet_isa_ebdbfdbb16 (IsA duct_tape adhesive_tape) (STV 1.0 0.9091)) +(: cnet_isa_46b6ce03bf (IsA ductility malleability) (STV 1.0 0.9091)) +(: cnet_isa_8c313602a3 (IsA ductule duct) (STV 1.0 0.9091)) +(: cnet_isa_077c40d0fd (IsA ductus_arteriosus blood_vessel) (STV 1.0 0.9091)) +(: cnet_isa_f00e512c5b (IsA dude_ranch resort) (STV 1.0 0.9091)) +(: cnet_isa_8aa38b4667 (IsA dudeen clay_pipe) (STV 1.0 0.9091)) +(: cnet_isa_2e9120628e (IsA dudgeon indignation) (STV 1.0 0.9091)) +(: cnet_isa_e42e41a0c4 (IsA due right) (STV 1.0 0.9091)) +(: cnet_isa_ec0ece4c49 (IsA due fixed_charge) (STV 1.0 0.9091)) +(: cnet_isa_b55940c301 (IsA due_care care) (STV 1.0 0.9091)) +(: cnet_isa_d738002ff5 (IsA due_process group_action) (STV 1.0 0.9091)) +(: cnet_isa_6032ca7baa (IsA duel fight) (STV 1.0 0.9091)) +(: cnet_isa_fe67311c4e (IsA duel struggle) (STV 1.0 0.9091)) +(: cnet_isa_ec28384b0f (IsA dueler adversary) (STV 1.0 0.9091)) +(: cnet_isa_dba42e0232 (IsA duenna chaperon) (STV 1.0 0.9091)) +(: cnet_isa_2fba866a30 (IsA duet musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_1c2385bebf (IsA duet musical_organization) (STV 1.0 0.9091)) +(: cnet_isa_f0c272dbb2 (IsA duff pudding) (STV 1.0 0.9091)) +(: cnet_isa_d361644c04 (IsA duffel fabric) (STV 1.0 0.9091)) +(: cnet_isa_f679ae05c7 (IsA duffel_bag drawstring_bag) (STV 1.0 0.9091)) +(: cnet_isa_c930488f28 (IsA duffel_coat coat) (STV 1.0 0.9091)) +(: cnet_isa_cd34e94e4e (IsA duffer clumsy_person) (STV 1.0 0.9091)) +(: cnet_isa_df5dc82c82 (IsA dug mammary_gland) (STV 1.0 0.9091)) +(: cnet_isa_80e42e5077 (IsA dugong sea_cow) (STV 1.0 0.9091)) +(: cnet_isa_37dccb5473 (IsA dugongidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_550b432e31 (IsA dugout shelter) (STV 1.0 0.9091)) +(: cnet_isa_7d25ebe943 (IsA dugout_canoe canoe) (STV 1.0 0.9091)) +(: cnet_isa_537d42df6c (IsA duke nobleman) (STV 1.0 0.9091)) +(: cnet_isa_372d28d909 (IsA duke peer) (STV 1.0 0.9091)) +(: cnet_isa_a86c2ab098 (IsA dukedom rank) (STV 1.0 0.9091)) +(: cnet_isa_655907b794 (IsA dulciana organ_stop) (STV 1.0 0.9091)) +(: cnet_isa_9a9d3179be (IsA dulcimer stringed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_08ce13f00e (IsA dulcimer zither) (STV 1.0 0.9091)) +(: cnet_isa_c5cb8fa570 (IsA dullness shape) (STV 1.0 0.9091)) +(: cnet_isa_b0e490aafc (IsA dullness unfeelingness) (STV 1.0 0.9091)) +(: cnet_isa_475d871430 (IsA dullness uninterestingness) (STV 1.0 0.9091)) +(: cnet_isa_55531d1051 (IsA dullness visual_property) (STV 1.0 0.9091)) +(: cnet_isa_09da0677dc (IsA dullness stupidity) (STV 1.0 0.9091)) +(: cnet_isa_95af4b8659 (IsA dulse red_algae) (STV 1.0 0.9091)) +(: cnet_isa_6d25c5d869 (IsA duma legislature) (STV 1.0 0.9091)) +(: cnet_isa_5a20549ed8 (IsA dumb_bomb bomb) (STV 1.0 0.9091)) +(: cnet_isa_7503595acc (IsA dumb_cane arum) (STV 1.0 0.9091)) +(: cnet_isa_92e2742622 (IsA dumbbell item) (STV 1.0 0.9091)) +(: cnet_isa_ce5e69080a (IsA dumbbell weight) (STV 1.0 0.9091)) +(: cnet_isa_65039aeb3e (IsA dumbbell simpleton) (STV 1.0 0.9091)) +(: cnet_isa_04855089ee (IsA dumbwaiter elevator) (STV 1.0 0.9091)) +(: cnet_isa_b347bbaf70 (IsA dumdum bullet) (STV 1.0 0.9091)) +(: cnet_isa_78b3efe154 (IsA dumetella bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_91a3880815 (IsA dummy figure) (STV 1.0 0.9091)) +(: cnet_isa_2fa6af5791 (IsA dummy mute) (STV 1.0 0.9091)) +(: cnet_isa_a73de5b2ff (IsA dummy_whist whist) (STV 1.0 0.9091)) +(: cnet_isa_057f5ad14e (IsA dump storehouse) (STV 1.0 0.9091)) +(: cnet_isa_85fb8b4d09 (IsA dump copy) (STV 1.0 0.9091)) +(: cnet_isa_a04d6eadc0 (IsA dump site) (STV 1.0 0.9091)) +(: cnet_isa_ea231a9b93 (IsA dump_routine utility_routine) (STV 1.0 0.9091)) +(: cnet_isa_305ec06dc1 (IsA dump_truck truck) (STV 1.0 0.9091)) +(: cnet_isa_a63672843e (IsA dumpcart cart) (STV 1.0 0.9091)) +(: cnet_isa_062ec8bb61 (IsA dumpiness physique) (STV 1.0 0.9091)) +(: cnet_isa_87b5480c24 (IsA dumping selling) (STV 1.0 0.9091)) +(: cnet_isa_872204c2f0 (IsA dumpling dessert) (STV 1.0 0.9091)) +(: cnet_isa_514dc130bd (IsA dumpling pasta) (STV 1.0 0.9091)) +(: cnet_isa_b45bebf492 (IsA dump low_spirit) (STV 1.0 0.9091)) +(: cnet_isa_e18b352277 (IsA dumpy_level surveyor_s_level) (STV 1.0 0.9091)) +(: cnet_isa_5697cefc0b (IsA dun saddle_horse) (STV 1.0 0.9091)) +(: cnet_isa_33f7ad0668 (IsA dun light_brown) (STV 1.0 0.9091)) +(: cnet_isa_86c4c478f9 (IsA dunce stupid) (STV 1.0 0.9091)) +(: cnet_isa_e0bf970e44 (IsA dunce_cap hat) (STV 1.0 0.9091)) +(: cnet_isa_3baf6919e4 (IsA dundathu_pine kauri_pine) (STV 1.0 0.9091)) +(: cnet_isa_c317965fee (IsA dune ridge) (STV 1.0 0.9091)) +(: cnet_isa_0d4750e9cd (IsA dune_buggy recreational_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_5c201799ad (IsA dune_cycling cycling) (STV 1.0 0.9091)) +(: cnet_isa_5221842603 (IsA dung_beetle scarabaeid_beetle) (STV 1.0 0.9091)) +(: cnet_isa_a8ca9839fe (IsA dungeness_crab crab) (STV 1.0 0.9091)) +(: cnet_isa_895ff0955f (IsA dungeon cell) (STV 1.0 0.9091)) +(: cnet_isa_1bab5d8e8c (IsA dunghill pile) (STV 1.0 0.9091)) +(: cnet_isa_2b90dbf30f (IsA dunghill unsanitariness) (STV 1.0 0.9091)) +(: cnet_isa_974c51de1a (IsA dunk basketball_shot) (STV 1.0 0.9091)) +(: cnet_isa_c50d4ff7c1 (IsA dunkard baptist) (STV 1.0 0.9091)) +(: cnet_isa_a879dd85e6 (IsA dunker basketball_player) (STV 1.0 0.9091)) +(: cnet_isa_524b355866 (IsA dunker eater) (STV 1.0 0.9091)) +(: cnet_isa_fe5c8663b2 (IsA dunkirk crisis) (STV 1.0 0.9091)) +(: cnet_isa_0fd052b02b (IsA duodecimal_digit digit) (STV 1.0 0.9091)) +(: cnet_isa_ab296c2806 (IsA duodecimal_notation mathematical_notation) (STV 1.0 0.9091)) +(: cnet_isa_e96d21332a (IsA duodecimal_number_system positional_notation) (STV 1.0 0.9091)) +(: cnet_isa_7d19852bf6 (IsA duodenal_ulcer peptic_ulcer) (STV 1.0 0.9091)) +(: cnet_isa_c41ed32dc1 (IsA duodenum small_intestine) (STV 1.0 0.9091)) +(: cnet_isa_cfd4bcddf6 (IsA duologue dialogue) (STV 1.0 0.9091)) +(: cnet_isa_146012f96d (IsA duple_time musical_time) (STV 1.0 0.9091)) +(: cnet_isa_f6f549e0cb (IsA duplex apartment_building) (STV 1.0 0.9091)) +(: cnet_isa_2a521e8c8e (IsA duplex building) (STV 1.0 0.9091)) +(: cnet_isa_30a633cd63 (IsA duplex housing) (STV 1.0 0.9339)) +(: cnet_isa_71a6227f19 (IsA duplex_apartment apartment) (STV 1.0 0.9091)) +(: cnet_isa_0e338bec82 (IsA duplex_house house) (STV 1.0 0.9091)) +(: cnet_isa_b86279c7b5 (IsA duplicate copy) (STV 1.0 0.9091)) +(: cnet_isa_fd8a375986 (IsA duplication copying) (STV 1.0 0.9091)) +(: cnet_isa_2a8349f1b8 (IsA duplicator apparatus) (STV 1.0 0.9091)) +(: cnet_isa_bec667024d (IsA duplicidentata lagomorph) (STV 1.0 0.9091)) +(: cnet_isa_27c3d45879 (IsA duplicity deception) (STV 1.0 0.9091)) +(: cnet_isa_4a9d3ba973 (IsA dura_mater meninx) (STV 1.0 0.9091)) +(: cnet_isa_b4f569a7d1 (IsA durable consumer_good) (STV 1.0 0.9091)) +(: cnet_isa_9821d7cad7 (IsA durance captivity) (STV 1.0 0.9091)) +(: cnet_isa_d5c10bd792 (IsA duration temporal_property) (STV 1.0 0.9091)) +(: cnet_isa_137d304e62 (IsA duration time) (STV 1.0 0.9091)) +(: cnet_isa_7cd845789c (IsA duration time_period) (STV 1.0 0.9091)) +(: cnet_isa_90bc006c63 (IsA durative aspect) (STV 1.0 0.9091)) +(: cnet_isa_cc26f93a71 (IsA durbar room) (STV 1.0 0.9091)) +(: cnet_isa_c040501ede (IsA duress force) (STV 1.0 0.9091)) +(: cnet_isa_0fe58654cc (IsA durham beef) (STV 1.0 0.9091)) +(: cnet_isa_1a8b8b1fb0 (IsA durian edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_1eea0860fa (IsA durian fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_b02e256450 (IsA durio dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_705776986c (IsA durmast white_oak) (STV 1.0 0.9091)) +(: cnet_isa_f572b17702 (IsA durra grain_sorghum) (STV 1.0 0.9091)) +(: cnet_isa_3d55d104c1 (IsA durum wheat) (STV 1.0 0.9091)) +(: cnet_isa_a8d149054e (IsA dusicyon mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_2e9928e707 (IsA dusky_footed_wood_rat wood_rat) (STV 1.0 0.9091)) +(: cnet_isa_8a46065dd5 (IsA dusky_footed_woodrat packrat) (STV 1.0 0.9091)) +(: cnet_isa_262b7d773a (IsA dusky_salamander salamander) (STV 1.0 0.9091)) +(: cnet_isa_7e1ac14e7f (IsA dusky_shark requiem_shark) (STV 1.0 0.9091)) +(: cnet_isa_5b004e7b30 (IsA dust material) (STV 1.0 0.9091)) +(: cnet_isa_8a8a5747e7 (IsA dust particulate) (STV 1.0 0.9091)) +(: cnet_isa_61be518f8e (IsA dust_bag bag) (STV 1.0 0.9091)) +(: cnet_isa_4b38499484 (IsA dust_bowl geographical_area) (STV 1.0 0.9091)) +(: cnet_isa_2e12ed5207 (IsA dust_cloud cloud) (STV 1.0 0.9091)) +(: cnet_isa_a9afc192f6 (IsA dust_contamination contamination) (STV 1.0 0.9091)) +(: cnet_isa_742d8490c9 (IsA dust_cover piece_of_cloth) (STV 1.0 0.9091)) +(: cnet_isa_9e2f456bc2 (IsA dust_cover protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_62e298242f (IsA dust_devil whirlwind) (STV 1.0 0.9091)) +(: cnet_isa_dc6928e9ef (IsA dust_storm windstorm) (STV 1.0 0.9091)) +(: cnet_isa_29e5ca85c3 (IsA dustcloth piece_of_cloth) (STV 1.0 0.9091)) +(: cnet_isa_478f1141df (IsA duster pitch) (STV 1.0 0.9091)) +(: cnet_isa_52f74dbb66 (IsA duster coverall) (STV 1.0 0.9091)) +(: cnet_isa_04514a1d24 (IsA dustiness dirtiness) (STV 1.0 0.9091)) +(: cnet_isa_6e17b39f3d (IsA dustmop swab) (STV 1.0 0.9091)) +(: cnet_isa_8746252e0b (IsA dustpan receptacle) (STV 1.0 0.9091)) +(: cnet_isa_db903458fc (IsA dustpan containerful) (STV 1.0 0.9091)) +(: cnet_isa_178cdf9b96 (IsA dusty_miller centaury) (STV 1.0 0.9091)) +(: cnet_isa_7694d7d26c (IsA dusty_miller composite) (STV 1.0 0.9091)) +(: cnet_isa_44883ac314 (IsA dusty_miller shrub) (STV 1.0 0.9091)) +(: cnet_isa_e9b29b18d4 (IsA dusty_miller wormwood) (STV 1.0 0.9091)) +(: cnet_isa_f251bcf20d (IsA dutch west_germanic) (STV 1.0 0.9091)) +(: cnet_isa_8eeaf4814a (IsA dutch_auction selling) (STV 1.0 0.9091)) +(: cnet_isa_5614951caf (IsA dutch_courage courage) (STV 1.0 0.9091)) +(: cnet_isa_ec4581072b (IsA dutch_door exterior_door) (STV 1.0 0.9091)) +(: cnet_isa_6831686421 (IsA dutch_elm elm) (STV 1.0 0.9091)) +(: cnet_isa_807e1fe05a (IsA dutch_elm_beetle bark_beetle) (STV 1.0 0.9091)) +(: cnet_isa_f40ea7593f (IsA dutch_elm_disease plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_210c0cb548 (IsA dutch_elm_fungus fungus) (STV 1.0 0.9091)) +(: cnet_isa_9b602d8f9e (IsA dutch_iris beardless_iris) (STV 1.0 0.9091)) +(: cnet_isa_a28a850f5f (IsA dutch_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_0f8eb7ebdd (IsA dutch_oven oven) (STV 1.0 0.9091)) +(: cnet_isa_9c45a5065a (IsA dutch_oven pot) (STV 1.0 0.9091)) +(: cnet_isa_a5d29cf787 (IsA dutch_people nation) (STV 1.0 0.9091)) +(: cnet_isa_12f9d50409 (IsA dutch_processed_cocoa cocoa_powder) (STV 1.0 0.9091)) +(: cnet_isa_a98e734133 (IsA dutch_treat dining) (STV 1.0 0.9091)) +(: cnet_isa_d622b43d43 (IsA dutch_uncle counselor) (STV 1.0 0.9091)) +(: cnet_isa_0dba90a47c (IsA dutchman_s_breeche herb) (STV 1.0 0.9091)) +(: cnet_isa_11c2cf55d0 (IsA dutchman_s_pipe birthwort) (STV 1.0 0.9091)) +(: cnet_isa_8ab4104e4f (IsA dutifulness piety) (STV 1.0 0.9091)) +(: cnet_isa_0361db2516 (IsA duty social_control) (STV 1.0 0.9091)) +(: cnet_isa_a9d943384f (IsA duty work) (STV 1.0 0.9091)) +(: cnet_isa_32a3d280b6 (IsA duty indirect_tax) (STV 1.0 0.9091)) +(: cnet_isa_9fa6f7a4da (IsA dvd optical_disk) (STV 1.0 0.9091)) +(: cnet_isa_577a9fbf88 (IsA dwarf organism) (STV 1.0 0.9091)) +(: cnet_isa_fbe7e60973 (IsA dwarf small_person) (STV 1.0 0.9091)) +(: cnet_isa_2c97cc1c71 (IsA dwarf_astilbe astilbe) (STV 1.0 0.9091)) +(: cnet_isa_4ba5db7072 (IsA dwarf_banana banana) (STV 1.0 0.9091)) +(: cnet_isa_529306c645 (IsA dwarf_bilberry blueberry) (STV 1.0 0.9091)) +(: cnet_isa_48abe954a8 (IsA dwarf_buckeye horse_chestnut) (STV 1.0 0.9091)) +(: cnet_isa_99fe592a6e (IsA dwarf_chinkapin_oak chestnut_oak) (STV 1.0 0.9091)) +(: cnet_isa_6e2d451e6d (IsA dwarf_dandelion krigia) (STV 1.0 0.9091)) +(: cnet_isa_c75fe30f00 (IsA dwarf_elder elder) (STV 1.0 0.9091)) +(: cnet_isa_4a5e3b91a2 (IsA dwarf_flowering_almond almond_tree) (STV 1.0 0.9091)) +(: cnet_isa_32198f9047 (IsA dwarf_golden_chinkapin shrub) (STV 1.0 0.9091)) +(: cnet_isa_097a835a9f (IsA dwarf_gray_willow willow) (STV 1.0 0.9091)) +(: cnet_isa_499610787b (IsA dwarf_hulsea wildflower) (STV 1.0 0.9091)) +(: cnet_isa_20fac1168e (IsA dwarf_iris iris) (STV 1.0 0.9091)) +(: cnet_isa_18e432a535 (IsA dwarf_juniper juniper) (STV 1.0 0.9091)) +(: cnet_isa_1ff0d0d6c5 (IsA dwarf_maple maple) (STV 1.0 0.9091)) +(: cnet_isa_bb35037d3a (IsA dwarf_pipefish pipefish) (STV 1.0 0.9091)) +(: cnet_isa_16eb0b83e7 (IsA dwarf_sperm_whale toothed_whale) (STV 1.0 0.9091)) +(: cnet_isa_d6be07fe51 (IsA dwarf_spurge spurge) (STV 1.0 0.9091)) +(: cnet_isa_7fee51a17c (IsA dwarf_sumac sumac) (STV 1.0 0.9091)) +(: cnet_isa_c4dc763c18 (IsA dwarf_tulip tulip) (STV 1.0 0.9091)) +(: cnet_isa_4078e2a53f (IsA dwarf_white_trillium trillium) (STV 1.0 0.9091)) +(: cnet_isa_c3118d2210 (IsA dwarf_willow willow) (STV 1.0 0.9091)) +(: cnet_isa_a676d292d6 (IsA dwarfishness smallness) (STV 1.0 0.9091)) +(: cnet_isa_6a3dac1d7f (IsA dwarfism genetic_disease) (STV 1.0 0.9091)) +(: cnet_isa_a08f143557 (IsA dwelling housing) (STV 1.0 0.9091)) +(: cnet_isa_1026a40787 (IsA dwindling decrease) (STV 1.0 0.9091)) +(: cnet_isa_7b7eed8466 (IsA dyadic_operation operation) (STV 1.0 0.9091)) +(: cnet_isa_9505eb32a3 (IsA dybbuk devil) (STV 1.0 0.9091)) +(: cnet_isa_477c4696da (IsA dye coloring_material) (STV 1.0 0.9091)) +(: cnet_isa_02fc4fbfed (IsA dye_work workshop) (STV 1.0 0.9091)) +(: cnet_isa_687bddf981 (IsA dyeing coloring) (STV 1.0 0.9091)) +(: cnet_isa_30a6501c07 (IsA dyer_s_rocket reseda) (STV 1.0 0.9091)) +(: cnet_isa_48bdaadc04 (IsA dyer_s_weed goldenrod) (STV 1.0 0.9091)) +(: cnet_isa_39612b2214 (IsA dyer_s_woad woad) (STV 1.0 0.9091)) +(: cnet_isa_7702016a6b (IsA dyer_s_woodruff woodruff) (STV 1.0 0.9091)) +(: cnet_isa_186de6d707 (IsA dyer skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_3360b38195 (IsA dyewood wood) (STV 1.0 0.9091)) +(: cnet_isa_01aa3c2259 (IsA dyirbal australian) (STV 1.0 0.9091)) +(: cnet_isa_3b70bbef76 (IsA dynamic_balance equilibrium) (STV 1.0 0.9091)) +(: cnet_isa_61ad706579 (IsA dynamic_electricity electricity) (STV 1.0 0.9091)) +(: cnet_isa_7192b8c95a (IsA dynamical_system phase_space) (STV 1.0 0.9091)) +(: cnet_isa_4c8509d8fb (IsA dynamic mechanic) (STV 1.0 0.9091)) +(: cnet_isa_f6279692a5 (IsA dynamism activeness) (STV 1.0 0.9091)) +(: cnet_isa_813993b344 (IsA dynamism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_787a4662cd (IsA dynamite explosive) (STV 1.0 0.9339)) +(: cnet_isa_be8919fc82 (IsA dynamite explosive_compound) (STV 1.0 0.9091)) +(: cnet_isa_2363a00914 (IsA dynamiter revolutionist) (STV 1.0 0.9091)) +(: cnet_isa_cbccd88690 (IsA dynamo generator) (STV 1.0 0.9091)) +(: cnet_isa_dc547eafa1 (IsA dynamometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_bd4543664a (IsA dynast ruler) (STV 1.0 0.9091)) +(: cnet_isa_5008be2705 (IsA dynasty family) (STV 1.0 0.9091)) +(: cnet_isa_356ffc3e01 (IsA dyne force_unit) (STV 1.0 0.9091)) +(: cnet_isa_ad29a0bb84 (IsA dysaphia disorder) (STV 1.0 0.9091)) +(: cnet_isa_d39bcfa4b0 (IsA dysarthria speech_disorder) (STV 1.0 0.9091)) +(: cnet_isa_5a9cd3b5c5 (IsA dyscalculia learning_disorder) (STV 1.0 0.9091)) +(: cnet_isa_1f54d3f0d5 (IsA dyschezia constipation) (STV 1.0 0.9091)) +(: cnet_isa_93264cc741 (IsA dyscrasia ill_health) (STV 1.0 0.9091)) +(: cnet_isa_4621d9876e (IsA dysdercus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_c0e4f8a828 (IsA dysentery infectious_disease) (STV 1.0 0.9091)) +(: cnet_isa_835dfd9bff (IsA dysfunction pathology) (STV 1.0 0.9091)) +(: cnet_isa_3a11c25579 (IsA dysgenesis sterility) (STV 1.0 0.9091)) +(: cnet_isa_59350ec6b1 (IsA dysgenic life_science) (STV 1.0 0.9091)) +(: cnet_isa_969b08ce58 (IsA dysgraphia learning_disorder) (STV 1.0 0.9091)) +(: cnet_isa_8de1564d49 (IsA dyskinesia nervous_disorder) (STV 1.0 0.9091)) +(: cnet_isa_23d235d388 (IsA dyslectic person) (STV 1.0 0.9091)) +(: cnet_isa_ead48bb4b3 (IsA dyslexia learning_disorder) (STV 1.0 0.9091)) +(: cnet_isa_39a9231d47 (IsA dyslogia speech_disorder) (STV 1.0 0.9091)) +(: cnet_isa_bb6d368b00 (IsA dysmenorrhea pain) (STV 1.0 0.9091)) +(: cnet_isa_1cdd85e7a1 (IsA dysomia disability) (STV 1.0 0.9091)) +(: cnet_isa_1ae9bbf14b (IsA dysosmia disorder) (STV 1.0 0.9091)) +(: cnet_isa_d4fe132fec (IsA dyspeptic sick_person) (STV 1.0 0.9091)) +(: cnet_isa_da7a91c5ae (IsA dysphagia disorder) (STV 1.0 0.9091)) +(: cnet_isa_b79d310fa0 (IsA dysphasia disability) (STV 1.0 0.9091)) +(: cnet_isa_081b557c39 (IsA dysphemism saying) (STV 1.0 0.9091)) +(: cnet_isa_378b339168 (IsA dysphonia speech_disorder) (STV 1.0 0.9091)) +(: cnet_isa_be0b0b9a2c (IsA dysphoria depression) (STV 1.0 0.9091)) +(: cnet_isa_f43748ec67 (IsA dysphoria discontentment) (STV 1.0 0.9091)) +(: cnet_isa_7bc928cfd9 (IsA dysplasia abnormality) (STV 1.0 0.9091)) +(: cnet_isa_0ddeb7de8e (IsA dyspnea symptom) (STV 1.0 0.9091)) +(: cnet_isa_bb21e09693 (IsA dysprosium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_7947a0177e (IsA dysthymia depressive_disorder) (STV 1.0 0.9091)) +(: cnet_isa_569a872a37 (IsA dystopia fiction) (STV 1.0 0.9091)) +(: cnet_isa_2c117bb089 (IsA dystopia state) (STV 1.0 0.9091)) +(: cnet_isa_3c591edb23 (IsA dystrophy degenerative_disorder) (STV 1.0 0.9091)) +(: cnet_isa_c41672caea (IsA dysuria disorder) (STV 1.0 0.9091)) +(: cnet_isa_e815deae22 (IsA dytiscidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_510daaba7c (IsA e letter) (STV 1.0 0.9091)) +(: cnet_isa_eb3be1fab5 (IsA e transcendental_number) (STV 1.0 0.9091)) +(: cnet_isa_9e0f3f167b (IsA e_commerce commerce) (STV 1.0 0.9091)) +(: cnet_isa_b1403a4488 (IsA e_mail example_of_asynchronous_communication) (STV 1.0 0.9091)) +(: cnet_isa_64ebb05725 (IsA eacle arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_1c13a93e46 (IsA eager_beaver actor) (STV 1.0 0.9091)) +(: cnet_isa_8d7e51b98d (IsA eagerness enthusiasm) (STV 1.0 0.9091)) +(: cnet_isa_74853fc8f7 (IsA eagle bird_of_prey) (STV 1.0 0.9091)) +(: cnet_isa_7f8c926ca3 (IsA eagle emblem) (STV 1.0 0.9091)) +(: cnet_isa_5b89f39916 (IsA eagle score) (STV 1.0 0.9091)) +(: cnet_isa_0fdc5b4988 (IsA eagle coin) (STV 1.0 0.9091)) +(: cnet_isa_105dd0421b (IsA eagle_ray ray) (STV 1.0 0.9091)) +(: cnet_isa_6f81c3c9c3 (IsA eagle_scout boy_scout) (STV 1.0 0.9091)) +(: cnet_isa_a664a853a7 (IsA eaglet eagle) (STV 1.0 0.9091)) +(: cnet_isa_cf3b1f2ff7 (IsA eaglet young_bird) (STV 1.0 0.9091)) +(: cnet_isa_63358a1d7e (IsA eame_chair chair) (STV 1.0 0.9091)) +(: cnet_isa_5f6a21ebe4 (IsA ear part_of_body) (STV 1.0 0.9524)) +(: cnet_isa_02fd7971b7 (IsA ear sense_organ) (STV 1.0 0.9091)) +(: cnet_isa_51291a6ffb (IsA ear attention) (STV 1.0 0.9091)) +(: cnet_isa_cd721c4c5f (IsA ear hearing) (STV 1.0 0.9091)) +(: cnet_isa_615525b708 (IsA ear fruit) (STV 1.0 0.9091)) +(: cnet_isa_cac59a1460 (IsA ear_doctor specialist) (STV 1.0 0.9091)) +(: cnet_isa_ff3ad0ae07 (IsA ear_hole hole) (STV 1.0 0.9091)) +(: cnet_isa_c4213598af (IsA ear_nose_and_throat_doctor specialist) (STV 1.0 0.9091)) +(: cnet_isa_ff7f460e88 (IsA earache ache) (STV 1.0 0.9091)) +(: cnet_isa_8442cf3e9d (IsA eardrum membrane) (STV 1.0 0.9091)) +(: cnet_isa_a8ac5cbb1a (IsA eared_seal seal) (STV 1.0 0.9091)) +(: cnet_isa_79c7e98e18 (IsA earflap flap) (STV 1.0 0.9091)) +(: cnet_isa_da392b555a (IsA earful gossip) (STV 1.0 0.9091)) +(: cnet_isa_ea3f769cfa (IsA earl peer) (STV 1.0 0.9091)) +(: cnet_isa_e296f9bd3b (IsA earl_marshal peer) (STV 1.0 0.9091)) +(: cnet_isa_ded8796f68 (IsA earldom domain) (STV 1.0 0.9091)) +(: cnet_isa_e941745137 (IsA earldom rank) (STV 1.0 0.9091)) +(: cnet_isa_89a47bf1d6 (IsA earleaved_umbrella_tree magnolia) (STV 1.0 0.9091)) +(: cnet_isa_203ffdb61f (IsA earless_lizard iguanid) (STV 1.0 0.9091)) +(: cnet_isa_8b4ff16e66 (IsA earless_seal seal) (STV 1.0 0.9091)) +(: cnet_isa_070e4b8dd2 (IsA earliness timing) (STV 1.0 0.9091)) +(: cnet_isa_5fbfed8591 (IsA earlobe lobe) (STV 1.0 0.9091)) +(: cnet_isa_af0104e16e (IsA early_bird arrival) (STV 1.0 0.9091)) +(: cnet_isa_06312f8dae (IsA early_bird riser) (STV 1.0 0.9091)) +(: cnet_isa_c80a07c6a7 (IsA early_coral_root coral_root) (STV 1.0 0.9091)) +(: cnet_isa_98d4f1542e (IsA early_morning_hour hour) (STV 1.0 0.9091)) +(: cnet_isa_2476793d46 (IsA early_spider_orchid spider_orchid) (STV 1.0 0.9091)) +(: cnet_isa_a8c414fece (IsA early_warning_radar radar) (STV 1.0 0.9091)) +(: cnet_isa_324c2fad44 (IsA early_warning_system network) (STV 1.0 0.9091)) +(: cnet_isa_09d68627b0 (IsA earmark marker) (STV 1.0 0.9091)) +(: cnet_isa_33589ad213 (IsA earmuff covering) (STV 1.0 0.9091)) +(: cnet_isa_2b18952d9b (IsA earned_run run) (STV 1.0 0.9091)) +(: cnet_isa_e8a354434a (IsA earned_run_average standard) (STV 1.0 0.9091)) +(: cnet_isa_4d6ac800af (IsA earner jobholder) (STV 1.0 0.9091)) +(: cnet_isa_b1d3e23b82 (IsA earnest security) (STV 1.0 0.9091)) +(: cnet_isa_36007233e1 (IsA earnest_money earnest) (STV 1.0 0.9091)) +(: cnet_isa_84decf664f (IsA earnestness gravity) (STV 1.0 0.9091)) +(: cnet_isa_6a4a64e6c4 (IsA earning_per_share net_income) (STV 1.0 0.9091)) +(: cnet_isa_fe41282411 (IsA earphone electro_acoustic_transducer) (STV 1.0 0.9091)) +(: cnet_isa_23b8f8ded0 (IsA earplug earphone) (STV 1.0 0.9091)) +(: cnet_isa_99b03edd12 (IsA earplug plug) (STV 1.0 0.9091)) +(: cnet_isa_f8e25b64a6 (IsA earring piece_of_jewlery) (STV 1.0 0.9091)) +(: cnet_isa_3c64977ae1 (IsA earring jewelry) (STV 1.0 0.9091)) +(: cnet_isa_8c129a5b36 (IsA earshot range) (STV 1.0 0.9091)) +(: cnet_isa_5cfb4d55f5 (IsA earth 4_5_billion_year_old) (STV 1.0 0.9339)) +(: cnet_isa_a5c4af9e93 (IsA earth bigger_than_moon) (STV 1.0 0.9091)) +(: cnet_isa_2dd47ab811 (IsA earth globe) (STV 1.0 0.9091)) +(: cnet_isa_7286fdb385 (IsA earth natural_building_material) (STV 1.0 0.9339)) +(: cnet_isa_ebf67a029b (IsA earth oblate_sphere) (STV 1.0 0.9091)) +(: cnet_isa_0ad0ec346c (IsA earth oblate_sphereoid) (STV 1.0 0.9454)) +(: cnet_isa_83d2386a11 (IsA earth oblate_spheroid) (STV 1.0 0.9454)) +(: cnet_isa_b44f090a1e (IsA earth one_astronomical_unit_from_sun) (STV 1.0 0.9339)) +(: cnet_isa_2a3db20a0a (IsA earth partially_molten_planet) (STV 1.0 0.9091)) +(: cnet_isa_94127ac642 (IsA earth place_name) (STV 1.0 0.9454)) +(: cnet_isa_d3d91dfad1 (IsA earth planet_in_solar_system) (STV 1.0 0.9454)) +(: cnet_isa_f8e6ad4326 (IsA earth word) (STV 1.0 0.9454)) +(: cnet_isa_47a79d443f (IsA earth location) (STV 1.0 0.9091)) +(: cnet_isa_d415a66e73 (IsA earth element) (STV 1.0 0.9091)) +(: cnet_isa_262301443a (IsA earth material) (STV 1.0 0.9091)) +(: cnet_isa_3ef2246a7c (IsA earth_color mineral) (STV 1.0 0.9091)) +(: cnet_isa_67030b524b (IsA earth_color pigment) (STV 1.0 0.9091)) +(: cnet_isa_32316acb0c (IsA earth_god deity) (STV 1.0 0.9091)) +(: cnet_isa_3dfcf009f0 (IsA earth_goddess goddess) (STV 1.0 0.9091)) +(: cnet_isa_619d29dbc7 (IsA earth_mother earth_goddess) (STV 1.0 0.9091)) +(: cnet_isa_9ba2dc22c2 (IsA earth_received_time coordinated_universal_time) (STV 1.0 0.9091)) +(: cnet_isa_499366cdab (IsA earth_science natural_science) (STV 1.0 0.9091)) +(: cnet_isa_14a6b22549 (IsA earthball fungus) (STV 1.0 0.9091)) +(: cnet_isa_1ac5302e35 (IsA earthenware ceramic_ware) (STV 1.0 0.9091)) +(: cnet_isa_e11c88b4a4 (IsA earthnut herb) (STV 1.0 0.9091)) +(: cnet_isa_fb6229a070 (IsA earthquake natural_disaster) (STV 1.0 0.9524)) +(: cnet_isa_79f4313006 (IsA earthquake geological_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_2a96e9b314 (IsA earthquake disturbance) (STV 1.0 0.9091)) +(: cnet_isa_f605ceaaba (IsA earthstar fungus) (STV 1.0 0.9091)) +(: cnet_isa_28fd1c7fa6 (IsA earthtongue fungus) (STV 1.0 0.9091)) +(: cnet_isa_81b7dfb67e (IsA earthwork rampart) (STV 1.0 0.9091)) +(: cnet_isa_f913929429 (IsA earthworm oligochaete) (STV 1.0 0.9091)) +(: cnet_isa_1617d3edd3 (IsA earwig insect) (STV 1.0 0.9339)) +(: cnet_isa_c0428f71fc (IsA ease naturalness) (STV 1.0 0.9091)) +(: cnet_isa_ad36030ea2 (IsA ease quality) (STV 1.0 0.9091)) +(: cnet_isa_d97c9ab6b9 (IsA ease affluence) (STV 1.0 0.9091)) +(: cnet_isa_6f86537ba1 (IsA easel tripod) (STV 1.0 0.9091)) +(: cnet_isa_bebf0aa7a1 (IsA easement prerogative) (STV 1.0 0.9091)) +(: cnet_isa_2d27cbca4e (IsA easiness behavior) (STV 1.0 0.9091)) +(: cnet_isa_bf710d9bcb (IsA easiness tranquillity) (STV 1.0 0.9091)) +(: cnet_isa_dce323e1f8 (IsA easing decrease) (STV 1.0 0.9091)) +(: cnet_isa_3d5b0a9cee (IsA easing change) (STV 1.0 0.9091)) +(: cnet_isa_cab3b0e80a (IsA east cardinal_compass_point) (STV 1.0 0.9091)) +(: cnet_isa_b5bf4a3dc0 (IsA east direction) (STV 1.0 0.9091)) +(: cnet_isa_691892a170 (IsA east location) (STV 1.0 0.9091)) +(: cnet_isa_05327af444 (IsA east_african_cedar pencil_cedar) (STV 1.0 0.9091)) +(: cnet_isa_41b400ef59 (IsA east_by_north compass_point) (STV 1.0 0.9091)) +(: cnet_isa_d02cbccdc6 (IsA east_by_south compass_point) (STV 1.0 0.9091)) +(: cnet_isa_1f632e25b2 (IsA east_chadic chad) (STV 1.0 0.9091)) +(: cnet_isa_2b8cc6f513 (IsA east_german german) (STV 1.0 0.9091)) +(: cnet_isa_ff65f8963e (IsA east_germanic germanic) (STV 1.0 0.9091)) +(: cnet_isa_bb3f0a4ab3 (IsA east_india_company company) (STV 1.0 0.9091)) +(: cnet_isa_2b668353dc (IsA east_india_kino resin) (STV 1.0 0.9091)) +(: cnet_isa_731843d085 (IsA east_indian asiatic) (STV 1.0 0.9091)) +(: cnet_isa_3755b3bc98 (IsA east_midland middle_english) (STV 1.0 0.9091)) +(: cnet_isa_d14b49fc0f (IsA east_northeast compass_point) (STV 1.0 0.9091)) +(: cnet_isa_faee7ccde5 (IsA east_side side) (STV 1.0 0.9091)) +(: cnet_isa_16e175c63c (IsA east_sider new_yorker) (STV 1.0 0.9091)) +(: cnet_isa_6b699ca0bc (IsA east_southeast compass_point) (STV 1.0 0.9091)) +(: cnet_isa_f08ddf7bf4 (IsA east_west_direction direction) (STV 1.0 0.9091)) +(: cnet_isa_b4941a18a5 (IsA east_wind wind) (STV 1.0 0.9091)) +(: cnet_isa_bff95f68f0 (IsA easter movable_feast) (STV 1.0 0.9091)) +(: cnet_isa_9695f5934d (IsA easter_cactus cactus) (STV 1.0 0.9091)) +(: cnet_isa_aa430e59c8 (IsA easter_card greeting_card) (STV 1.0 0.9091)) +(: cnet_isa_31375bfb6a (IsA easter_daisy flower) (STV 1.0 0.9091)) +(: cnet_isa_e5c93d7517 (IsA easter_egg candy) (STV 1.0 0.9091)) +(: cnet_isa_da821cbf63 (IsA easter_egg hard_boiled_egg) (STV 1.0 0.9091)) +(: cnet_isa_e6c4bf64a7 (IsA easter_lily lily) (STV 1.0 0.9091)) +(: cnet_isa_8e5202f649 (IsA easter_sunday christian_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_1c32672fbc (IsA eastern_catholicism catholicism) (STV 1.0 0.9091)) +(: cnet_isa_a76c309f77 (IsA eastern_chimpanzee chimpanzee) (STV 1.0 0.9091)) +(: cnet_isa_a4196fd335 (IsA eastern_chipmunk squirrel) (STV 1.0 0.9091)) +(: cnet_isa_2dcabc727b (IsA eastern_church catholic_church) (STV 1.0 0.9091)) +(: cnet_isa_2c5efeb492 (IsA eastern_coral_snake coral_snake) (STV 1.0 0.9091)) +(: cnet_isa_f80fe82e48 (IsA eastern_cottontail wood_rabbit) (STV 1.0 0.9091)) +(: cnet_isa_38442aa858 (IsA eastern_cottonwood cottonwood) (STV 1.0 0.9091)) +(: cnet_isa_d03e797900 (IsA eastern_cricket_frog cricket_frog) (STV 1.0 0.9091)) +(: cnet_isa_843d2ae14d (IsA eastern_dasyure dasyure) (STV 1.0 0.9091)) +(: cnet_isa_2827ff1739 (IsA eastern_fence_lizard fence_lizard) (STV 1.0 0.9091)) +(: cnet_isa_fdde20b8cc (IsA eastern_gray_squirrel tree_squirrel) (STV 1.0 0.9091)) +(: cnet_isa_9c977ab11b (IsA eastern_ground_snake colubrid_snake) (STV 1.0 0.9091)) +(: cnet_isa_9b736c4d65 (IsA eastern_hemisphere hemisphere) (STV 1.0 0.9091)) +(: cnet_isa_d7a22b79d6 (IsA eastern_hemlock hemlock) (STV 1.0 0.9091)) +(: cnet_isa_8847cebd22 (IsA eastern_hop_hornbeam hop_hornbeam) (STV 1.0 0.9091)) +(: cnet_isa_b8727a9af9 (IsA eastern_indigo_snake indigo_snake) (STV 1.0 0.9091)) +(: cnet_isa_02d000a87d (IsA eastern_kingbird kingbird) (STV 1.0 0.9091)) +(: cnet_isa_1cbab4552c (IsA eastern_lowland_gorilla gorilla) (STV 1.0 0.9091)) +(: cnet_isa_127adef38a (IsA eastern_meadowlark meadowlark) (STV 1.0 0.9091)) +(: cnet_isa_8124d02320 (IsA eastern_narrow_mouthed_toad frog) (STV 1.0 0.9091)) +(: cnet_isa_c17960f43b (IsA eastern_pipistrel vespertilian_bat) (STV 1.0 0.9091)) +(: cnet_isa_0cf84f9b82 (IsA eastern_poison_oak poisonous_plant) (STV 1.0 0.9091)) +(: cnet_isa_8db43bf519 (IsA eastern_red_backed_salamander salamander) (STV 1.0 0.9091)) +(: cnet_isa_b1a7e208db (IsA eastern_red_cedar pencil_cedar) (STV 1.0 0.9091)) +(: cnet_isa_190ac4ef30 (IsA eastern_silvery_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_0b9fcf07f6 (IsA eastern_sioux siouan) (STV 1.0 0.9091)) +(: cnet_isa_e84ce6d088 (IsA eastern_time civil_time) (STV 1.0 0.9091)) +(: cnet_isa_f95e4a643f (IsA eastern_woodrat wood_rat) (STV 1.0 0.9091)) +(: cnet_isa_b6a31f65b0 (IsA easterner inhabitant) (STV 1.0 0.9091)) +(: cnet_isa_9b8e030bcd (IsA eastertide season) (STV 1.0 0.9091)) +(: cnet_isa_9223dba9bb (IsA easy_chair armchair) (STV 1.0 0.9091)) +(: cnet_isa_d202b5e1f4 (IsA easy_money financial_condition) (STV 1.0 0.9091)) +(: cnet_isa_be2d27a71c (IsA easy_money income) (STV 1.0 0.9091)) +(: cnet_isa_39349eb533 (IsA easy_street security) (STV 1.0 0.9091)) +(: cnet_isa_7321f7b4ac (IsA easygoingness good_nature) (STV 1.0 0.9091)) +(: cnet_isa_db81c696ab (IsA eatage fodder) (STV 1.0 0.9091)) +(: cnet_isa_31eb118452 (IsA eater produce) (STV 1.0 0.9091)) +(: cnet_isa_b9bec49911 (IsA eater consumer) (STV 1.0 0.9091)) +(: cnet_isa_a4016ecf62 (IsA eatery restaurant) (STV 1.0 0.9091)) +(: cnet_isa_eb48d7f287 (IsA eating social_activity) (STV 1.0 0.9339)) +(: cnet_isa_cd82d299fd (IsA eating social_event) (STV 1.0 0.9339)) +(: cnet_isa_65cf884ef3 (IsA eating way) (STV 1.0 0.9091)) +(: cnet_isa_c600b6915e (IsA eating consumption) (STV 1.0 0.9091)) +(: cnet_isa_119e6cd00a (IsA eating_apple apple) (STV 1.0 0.9091)) +(: cnet_isa_d08cb97cdf (IsA eating_at_captain_s_table honor) (STV 1.0 0.9339)) +(: cnet_isa_0d554bb67c (IsA eating_children cannibalism) (STV 1.0 0.9091)) +(: cnet_isa_09982de4e3 (IsA eating_disorder disorder) (STV 1.0 0.9091)) +(: cnet_isa_071b0b5795 (IsA eating_meal_together social_activity) (STV 1.0 0.9091)) +(: cnet_isa_950e6b615b (IsA eau_de_vie brandy) (STV 1.0 0.9091)) +(: cnet_isa_583fc5a94f (IsA eave overhang) (STV 1.0 0.9091)) +(: cnet_isa_413bebc90e (IsA eavesdropper hearer) (STV 1.0 0.9091)) +(: cnet_isa_650339caf2 (IsA eavesdropper snoop) (STV 1.0 0.9091)) +(: cnet_isa_37acf96aad (IsA ebb flow) (STV 1.0 0.9091)) +(: cnet_isa_aa225835d5 (IsA ebb decline) (STV 1.0 0.9091)) +(: cnet_isa_2389f70750 (IsA ebbtide tide) (STV 1.0 0.9091)) +(: cnet_isa_f1eecfe4dd (IsA ebenaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_704bcbc344 (IsA ebenale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_c9332ca84b (IsA ebionite religionist) (STV 1.0 0.9091)) +(: cnet_isa_05599e799e (IsA ebitda income) (STV 1.0 0.9091)) +(: cnet_isa_42da59292c (IsA eblis genie) (STV 1.0 0.9091)) +(: cnet_isa_166d95116d (IsA ebola lethal_virus) (STV 1.0 0.9091)) +(: cnet_isa_53ac2013e5 (IsA ebola_hemorrhagic_fever hemorrhagic_fever) (STV 1.0 0.9091)) +(: cnet_isa_c153ada0f3 (IsA ebola_virus filovirus) (STV 1.0 0.9091)) +(: cnet_isa_4bab9f5574 (IsA ebony tree) (STV 1.0 0.9091)) +(: cnet_isa_32c6245de4 (IsA ebony wood) (STV 1.0 0.9091)) +(: cnet_isa_44b2d3f522 (IsA ebony_spleenwort spleenwort) (STV 1.0 0.9091)) +(: cnet_isa_40408a66af (IsA eburnation organic_process) (STV 1.0 0.9091)) +(: cnet_isa_80357107a7 (IsA eburophyton monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_563c8bdb83 (IsA ecarte card_game) (STV 1.0 0.9091)) +(: cnet_isa_44bdbffe30 (IsA ecballium dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_eef1111345 (IsA ecce_homo representation) (STV 1.0 0.9091)) +(: cnet_isa_0f54c7446f (IsA eccentric person) (STV 1.0 0.9091)) +(: cnet_isa_52e469d543 (IsA eccentricity circularity) (STV 1.0 0.9091)) +(: cnet_isa_61af646b6b (IsA eccentricity unfamiliarity) (STV 1.0 0.9091)) +(: cnet_isa_9854a34162 (IsA eccentricity ratio) (STV 1.0 0.9091)) +(: cnet_isa_cf2559cbaf (IsA ecchymosis organic_process) (STV 1.0 0.9091)) +(: cnet_isa_d596969bc6 (IsA ecchymosis bruise) (STV 1.0 0.9091)) +(: cnet_isa_925b12b603 (IsA eccle_cake cake) (STV 1.0 0.9091)) +(: cnet_isa_f52b64f3ef (IsA ecclesiastical_attire attire) (STV 1.0 0.9091)) +(: cnet_isa_c979e94ae8 (IsA ecclesiastical_mode mode) (STV 1.0 0.9091)) +(: cnet_isa_247bc533a2 (IsA ecclesiastical_province province) (STV 1.0 0.9091)) +(: cnet_isa_db2ca4d3bd (IsA ecclesiasticism attachment) (STV 1.0 0.9091)) +(: cnet_isa_5937f329a7 (IsA ecclesiasticism religion) (STV 1.0 0.9091)) +(: cnet_isa_da36d00d74 (IsA ecclesiology theology) (STV 1.0 0.9091)) +(: cnet_isa_dd612f33fa (IsA eccrine_gland sweat_gland) (STV 1.0 0.9091)) +(: cnet_isa_f53ea2e195 (IsA echelon diffraction_grating) (STV 1.0 0.9091)) +(: cnet_isa_1f593835c2 (IsA echelon military_unit) (STV 1.0 0.9091)) +(: cnet_isa_4233e4c17c (IsA echelon status) (STV 1.0 0.9091)) +(: cnet_isa_da42e9d8c8 (IsA echeneididae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_1191e920d5 (IsA echeneis fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_6fd6ab65c0 (IsA echidna monotreme) (STV 1.0 0.9091)) +(: cnet_isa_c24ae3ce39 (IsA echidnophaga arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_fa63bb2f62 (IsA echinacea asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_39d5d80568 (IsA echinocactus cactus) (STV 1.0 0.9091)) +(: cnet_isa_2f185afcb7 (IsA echinocereus caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1263e1b3c6 (IsA echinochloa monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c464e23f70 (IsA echinococcosis infestation) (STV 1.0 0.9091)) +(: cnet_isa_f037d1a264 (IsA echinococcus tapeworm) (STV 1.0 0.9091)) +(: cnet_isa_1134356b7a (IsA echinoderm invertebrate) (STV 1.0 0.9091)) +(: cnet_isa_e6f40969a0 (IsA echinoderm_family family) (STV 1.0 0.9091)) +(: cnet_isa_ead1bb7ca5 (IsA echinoderm_genus genus) (STV 1.0 0.9091)) +(: cnet_isa_185210bc9b (IsA echinodermata phylum) (STV 1.0 0.9091)) +(: cnet_isa_93940a4ce1 (IsA echinoidea class) (STV 1.0 0.9091)) +(: cnet_isa_572824100c (IsA echinop asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f97a52fa2e (IsA echinus ovolo) (STV 1.0 0.9091)) +(: cnet_isa_3ee80168ff (IsA echium plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_96b6273887 (IsA echo imitation) (STV 1.0 0.9091)) +(: cnet_isa_92dbac0929 (IsA echo analogue) (STV 1.0 0.9091)) +(: cnet_isa_55bdbd6ebc (IsA echo reflection) (STV 1.0 0.9091)) +(: cnet_isa_7b34c04724 (IsA echo reply) (STV 1.0 0.9091)) +(: cnet_isa_07489081e5 (IsA echo nymph) (STV 1.0 0.9091)) +(: cnet_isa_024098be56 (IsA echo_chamber enclosure) (STV 1.0 0.9091)) +(: cnet_isa_96931725ed (IsA echocardiogram graph) (STV 1.0 0.9091)) +(: cnet_isa_a8d85af1f5 (IsA echocardiograph sonograph) (STV 1.0 0.9091)) +(: cnet_isa_18e3b5eba3 (IsA echocardiography diagnostic_procedure) (STV 1.0 0.9091)) +(: cnet_isa_289a01da26 (IsA echoencephalogram graph) (STV 1.0 0.9091)) +(: cnet_isa_e253b9efd2 (IsA echoencephalograph sonograph) (STV 1.0 0.9091)) +(: cnet_isa_17b7161d74 (IsA echoencephalography diagnostic_procedure) (STV 1.0 0.9091)) +(: cnet_isa_ca41c5105c (IsA echolalia echo) (STV 1.0 0.9091)) +(: cnet_isa_b4bdd319bd (IsA echolalia repetition) (STV 1.0 0.9091)) +(: cnet_isa_7e383b1f03 (IsA echolocation localization) (STV 1.0 0.9091)) +(: cnet_isa_bf33f783dd (IsA echovirus enterovirus) (STV 1.0 0.9091)) +(: cnet_isa_d48fb3ed58 (IsA eclair cream_puff) (STV 1.0 0.9091)) +(: cnet_isa_721f98d8dc (IsA eclampsia toxemia_of_pregnancy) (STV 1.0 0.9091)) +(: cnet_isa_d0545f797f (IsA eclat magnificence) (STV 1.0 0.9091)) +(: cnet_isa_508b9a2ad7 (IsA eclectic philosopher) (STV 1.0 0.9091)) +(: cnet_isa_ccd3f1e1d4 (IsA eclecticism decision_making) (STV 1.0 0.9091)) +(: cnet_isa_6d0cd23a57 (IsA eclipse interruption) (STV 1.0 0.9091)) +(: cnet_isa_745f2319d6 (IsA ecliptic great_circle) (STV 1.0 0.9091)) +(: cnet_isa_7bbca36974 (IsA eclogue pastoral) (STV 1.0 0.9091)) +(: cnet_isa_e72f4aba01 (IsA ecobabble jargon) (STV 1.0 0.9091)) +(: cnet_isa_12a7d42172 (IsA ecologist biologist) (STV 1.0 0.9091)) +(: cnet_isa_a7a7a2f8e0 (IsA ecology biology) (STV 1.0 0.9091)) +(: cnet_isa_d1a83dacd2 (IsA ecology environment) (STV 1.0 0.9091)) +(: cnet_isa_894e5602df (IsA econometrician economist) (STV 1.0 0.9091)) +(: cnet_isa_f6e93beb30 (IsA econometric economic) (STV 1.0 0.9091)) +(: cnet_isa_c28fb00d9c (IsA economic_and_social_council council) (STV 1.0 0.9091)) +(: cnet_isa_3543f80eea (IsA economic_and_social_council_commission committee) (STV 1.0 0.9091)) +(: cnet_isa_f8720e2944 (IsA economic_commission_for_africa economic_and_social_council_commission) (STV 1.0 0.9091)) +(: cnet_isa_e9d5230ea2 (IsA economic_commission_for_asia_and_far_east economic_and_social_council_commission) (STV 1.0 0.9091)) +(: cnet_isa_f0c8359b2e (IsA economic_commission_for_europe economic_and_social_council_commission) (STV 1.0 0.9091)) +(: cnet_isa_f853db7498 (IsA economic_commission_for_latin_america economic_and_social_council_commission) (STV 1.0 0.9091)) +(: cnet_isa_8ddfe207ef (IsA economic_condition condition) (STV 1.0 0.9091)) +(: cnet_isa_4e64b7dd98 (IsA economic_geography geography) (STV 1.0 0.9091)) +(: cnet_isa_0797e8d049 (IsA economic_geology geology) (STV 1.0 0.9091)) +(: cnet_isa_93202cb827 (IsA economic_growth economic_process) (STV 1.0 0.9091)) +(: cnet_isa_4d6bd950ac (IsA economic_libertarian libertarian) (STV 1.0 0.9091)) +(: cnet_isa_8d95718b16 (IsA economic_mobilization mobilization) (STV 1.0 0.9091)) +(: cnet_isa_5a79cdcc4e (IsA economic_policy policy) (STV 1.0 0.9091)) +(: cnet_isa_9710542ef2 (IsA economic_process process) (STV 1.0 0.9091)) +(: cnet_isa_5c2c23007b (IsA economic_rent return) (STV 1.0 0.9091)) +(: cnet_isa_08cb6f5ef5 (IsA economic_strangulation punishment) (STV 1.0 0.9091)) +(: cnet_isa_2eb86e91b6 (IsA economic_theory theory) (STV 1.0 0.9091)) +(: cnet_isa_12b1c4a8ed (IsA economic social_science) (STV 1.0 0.9091)) +(: cnet_isa_195ba6e782 (IsA economic_department academic_department) (STV 1.0 0.9091)) +(: cnet_isa_6ead50eee0 (IsA economic_profession profession) (STV 1.0 0.9091)) +(: cnet_isa_0d5137f071 (IsA economist social_scientist) (STV 1.0 0.9091)) +(: cnet_isa_7acde4f4a0 (IsA economizer saver) (STV 1.0 0.9091)) +(: cnet_isa_aece0e8f27 (IsA economy action) (STV 1.0 0.9091)) +(: cnet_isa_2cb6d87f95 (IsA economy frugality) (STV 1.0 0.9091)) +(: cnet_isa_05fc067f2a (IsA economy efficiency) (STV 1.0 0.9091)) +(: cnet_isa_a99196663c (IsA economy system) (STV 1.0 0.9091)) +(: cnet_isa_6154289e39 (IsA economy_of_scale economy) (STV 1.0 0.9091)) +(: cnet_isa_3d0711d16c (IsA ecosystem system) (STV 1.0 0.9091)) +(: cnet_isa_7be67f94ac (IsA ecoterrorism terrorism) (STV 1.0 0.9091)) +(: cnet_isa_a8aff30f3c (IsA ecotourism tourism) (STV 1.0 0.9091)) +(: cnet_isa_05c87a3592 (IsA ecphonesis rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_ce5ba2fe92 (IsA ecstasy drug) (STV 1.0 0.9339)) +(: cnet_isa_e49b04c370 (IsA ecstasy emotion) (STV 1.0 0.9339)) +(: cnet_isa_d477bd93fb (IsA ecstasy mdma) (STV 1.0 0.9091)) +(: cnet_isa_541d7a55a8 (IsA ecstasy bliss) (STV 1.0 0.9091)) +(: cnet_isa_5540bc6758 (IsA ecstasy emotional_state) (STV 1.0 0.9091)) +(: cnet_isa_d4b14b56cc (IsA ectasia dilatation) (STV 1.0 0.9091)) +(: cnet_isa_9d50fb0f45 (IsA ectoderm germ_layer) (STV 1.0 0.9091)) +(: cnet_isa_11f8ba47c9 (IsA ectomorph person) (STV 1.0 0.9091)) +(: cnet_isa_d755d393d2 (IsA ectoparasite parasite) (STV 1.0 0.9091)) +(: cnet_isa_2029e28052 (IsA ectopia position) (STV 1.0 0.9091)) +(: cnet_isa_995d45921e (IsA ectopic_pregnancy pregnancy) (STV 1.0 0.9091)) +(: cnet_isa_f57096f84d (IsA ectopiste bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_3e45d76dd4 (IsA ectoplasm cytoplasm) (STV 1.0 0.9091)) +(: cnet_isa_52d05542c2 (IsA ectoplasm emanation) (STV 1.0 0.9091)) +(: cnet_isa_51c9561e85 (IsA ectoproct invertebrate) (STV 1.0 0.9091)) +(: cnet_isa_936cff7fcd (IsA ectoprocta phylum) (STV 1.0 0.9091)) +(: cnet_isa_753456fcbb (IsA ectrodactyly abnormality) (STV 1.0 0.9091)) +(: cnet_isa_835d5ce2f6 (IsA ecuadoran south_american) (STV 1.0 0.9091)) +(: cnet_isa_ab70c1e6ca (IsA ecuadoran_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_9869282f66 (IsA ecumenical_council council) (STV 1.0 0.9091)) +(: cnet_isa_70142c9e33 (IsA ecumenical_movement religious_movement) (STV 1.0 0.9091)) +(: cnet_isa_e6d4839571 (IsA ecumenism religious_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_1c83b02cff (IsA eczema skin_disease) (STV 1.0 0.9091)) +(: cnet_isa_1143c13452 (IsA eczema_herpeticum eczema) (STV 1.0 0.9091)) +(: cnet_isa_f545fc71bd (IsA eczema_vaccinatum eczema) (STV 1.0 0.9091)) +(: cnet_isa_0856acd9f5 (IsA eczema_vaccinatum eruption) (STV 1.0 0.9091)) +(: cnet_isa_a83f913806 (IsA edacity gluttony) (STV 1.0 0.9091)) +(: cnet_isa_3c19916d6d (IsA edacity hunger) (STV 1.0 0.9091)) +(: cnet_isa_b10a9d1868 (IsA edam cheese) (STV 1.0 0.9091)) +(: cnet_isa_53466bc887 (IsA edaphosauridae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_1f2d1ec426 (IsA edaphosaurus synapsid) (STV 1.0 0.9091)) +(: cnet_isa_ea42655a23 (IsA edda ballad) (STV 1.0 0.9091)) +(: cnet_isa_75775c0a75 (IsA eddy current) (STV 1.0 0.9091)) +(: cnet_isa_7ef6be31ab (IsA edelweiss wildflower) (STV 1.0 0.9091)) +(: cnet_isa_0472aed3e1 (IsA edema swelling) (STV 1.0 0.9091)) +(: cnet_isa_35f297ec16 (IsA eden heaven) (STV 1.0 0.9091)) +(: cnet_isa_d62d1cf2ab (IsA eden region) (STV 1.0 0.9091)) +(: cnet_isa_18cccac61e (IsA edentata animal_order) (STV 1.0 0.9091)) +(: cnet_isa_558c6081b6 (IsA edentate placental) (STV 1.0 0.9091)) +(: cnet_isa_b0f0149911 (IsA edge limit) (STV 1.0 0.9091)) +(: cnet_isa_9037584e2a (IsA edge side) (STV 1.0 0.9091)) +(: cnet_isa_9929882403 (IsA edge superiority) (STV 1.0 0.9091)) +(: cnet_isa_2f8a0b1d8c (IsA edge urgency) (STV 1.0 0.9091)) +(: cnet_isa_ec2be4ecb6 (IsA edge boundary) (STV 1.0 0.9091)) +(: cnet_isa_53d12c7411 (IsA edge_tool cutter) (STV 1.0 0.9091)) +(: cnet_isa_cb0c0f2dae (IsA edger garden_tool) (STV 1.0 0.9091)) +(: cnet_isa_78ee464e3d (IsA edger needleworker) (STV 1.0 0.9091)) +(: cnet_isa_560d3b857f (IsA edgeworth_kuiper_belt region) (STV 1.0 0.9091)) +(: cnet_isa_5056b638b2 (IsA edginess anxiety) (STV 1.0 0.9091)) +(: cnet_isa_585932ea9a (IsA edging border) (STV 1.0 0.9091)) +(: cnet_isa_e2a61e9c28 (IsA edibility property) (STV 1.0 0.9091)) +(: cnet_isa_f679d9dd47 (IsA edible_banana banana) (STV 1.0 0.9091)) +(: cnet_isa_7bccb7da2d (IsA edible_cockle cockle) (STV 1.0 0.9091)) +(: cnet_isa_22e4e5d922 (IsA edible_fat fat) (STV 1.0 0.9091)) +(: cnet_isa_711dc1d976 (IsA edible_fruit fruit) (STV 1.0 0.9091)) +(: cnet_isa_527b2a8ff3 (IsA edible_fruit produce) (STV 1.0 0.9091)) +(: cnet_isa_d95e25216d (IsA edible_mussel marine_mussel) (STV 1.0 0.9091)) +(: cnet_isa_acf66c7672 (IsA edible_nut nut) (STV 1.0 0.9091)) +(: cnet_isa_ae2b766bda (IsA edible_pod_pea pea) (STV 1.0 0.9091)) +(: cnet_isa_f25387e376 (IsA edible_sea_urchin sea_urchin) (STV 1.0 0.9091)) +(: cnet_isa_519c9e9205 (IsA edible_seed seed) (STV 1.0 0.9091)) +(: cnet_isa_21cdbff12f (IsA edible_snail snail) (STV 1.0 0.9091)) +(: cnet_isa_ef2b764b53 (IsA edict announcement) (STV 1.0 0.9091)) +(: cnet_isa_1cd1ca9828 (IsA edification enlightenment) (STV 1.0 0.9091)) +(: cnet_isa_fe2d0a5093 (IsA editing writing) (STV 1.0 0.9091)) +(: cnet_isa_32e7bf492a (IsA edition impression) (STV 1.0 0.9091)) +(: cnet_isa_687d24d3fd (IsA edition issue) (STV 1.0 0.9091)) +(: cnet_isa_d2658aa081 (IsA edition group) (STV 1.0 0.9091)) +(: cnet_isa_31aabc4410 (IsA editor skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_fd1d169298 (IsA editor_program application) (STV 1.0 0.9091)) +(: cnet_isa_a8ff584c77 (IsA editorial_department business_department) (STV 1.0 0.9091)) +(: cnet_isa_1f1542345d (IsA editorship position) (STV 1.0 0.9091)) +(: cnet_isa_467bf5813f (IsA edmonton city_of_one_million) (STV 1.0 0.9091)) +(: cnet_isa_05ac222598 (IsA edmontonia ankylosaur) (STV 1.0 0.9091)) +(: cnet_isa_837437fa90 (IsA edmontosaurus hadrosaur) (STV 1.0 0.9091)) +(: cnet_isa_2f22666d31 (IsA edo nigerian) (STV 1.0 0.9091)) +(: cnet_isa_0d0c012438 (IsA education acquisition_of_knowledge_and_understanding) (STV 1.0 0.9454)) +(: cnet_isa_39b7a6d8a1 (IsA education activity) (STV 1.0 0.9091)) +(: cnet_isa_3370ec9466 (IsA education upbringing) (STV 1.0 0.9091)) +(: cnet_isa_75d5985089 (IsA education content) (STV 1.0 0.9091)) +(: cnet_isa_0340db06b7 (IsA education learning) (STV 1.0 0.9091)) +(: cnet_isa_33a8726b83 (IsA education profession) (STV 1.0 0.9091)) +(: cnet_isa_3b9c293ca5 (IsA education_secretary secretary) (STV 1.0 0.9091)) +(: cnet_isa_2565ce6554 (IsA educational_institution institution) (STV 1.0 0.9091)) +(: cnet_isa_fd3a21ab57 (IsA educational_program program) (STV 1.0 0.9091)) +(: cnet_isa_24b8efa7f7 (IsA educationist specialist) (STV 1.0 0.9091)) +(: cnet_isa_80c45315ba (IsA educator professional) (STV 1.0 0.9091)) +(: cnet_isa_5f521d3f47 (IsA edutainment entertainment) (STV 1.0 0.9091)) +(: cnet_isa_c67e2b6dce (IsA edwardian sporting_man) (STV 1.0 0.9091)) +(: cnet_isa_3267782dbe (IsA eel soft_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_48530f9937 (IsA eel fish) (STV 1.0 0.9091)) +(: cnet_isa_49a3bcebda (IsA eelblenny prickleback) (STV 1.0 0.9091)) +(: cnet_isa_cbbb6a4fce (IsA eelgrass aquatic_plant) (STV 1.0 0.9091)) +(: cnet_isa_c7382358b7 (IsA eelpout blennioid_fish) (STV 1.0 0.9091)) +(: cnet_isa_55e0202ce4 (IsA eelworm nematode) (STV 1.0 0.9091)) +(: cnet_isa_e468785465 (IsA eeriness unfamiliarity) (STV 1.0 0.9091)) +(: cnet_isa_8b1ca08b9d (IsA effacement withdrawal) (STV 1.0 0.9091)) +(: cnet_isa_a63ff45377 (IsA effacement organic_process) (STV 1.0 0.9091)) +(: cnet_isa_262ac4a363 (IsA effect impression) (STV 1.0 0.9091)) +(: cnet_isa_cf6762ef63 (IsA effect meaning) (STV 1.0 0.9091)) +(: cnet_isa_86e411758a (IsA effect validity) (STV 1.0 0.9091)) +(: cnet_isa_b7707fe4e6 (IsA effect symptom) (STV 1.0 0.9091)) +(: cnet_isa_ea6c2c1214 (IsA effecter person) (STV 1.0 0.9091)) +(: cnet_isa_c3741aec20 (IsA effectiveness power) (STV 1.0 0.9091)) +(: cnet_isa_8ea5d4eb5c (IsA effector nerve_fiber) (STV 1.0 0.9091)) +(: cnet_isa_1edbf3ad65 (IsA effector organ) (STV 1.0 0.9091)) +(: cnet_isa_c2dc59b3cb (IsA effect personal_property) (STV 1.0 0.9091)) +(: cnet_isa_84b91adc5f (IsA effeminacy femininity) (STV 1.0 0.9091)) +(: cnet_isa_bc56181a20 (IsA effendi turk) (STV 1.0 0.9091)) +(: cnet_isa_8e4586b2d7 (IsA efferent_fiber nerve_fiber) (STV 1.0 0.9091)) +(: cnet_isa_482f47f927 (IsA effervescence natural_process) (STV 1.0 0.9091)) +(: cnet_isa_a737993f9e (IsA efficacy effectiveness) (STV 1.0 0.9091)) +(: cnet_isa_e88c42b3f7 (IsA efficiency skillfulness) (STV 1.0 0.9091)) +(: cnet_isa_1939a8abab (IsA efficiency ratio) (STV 1.0 0.9091)) +(: cnet_isa_252fe7cb91 (IsA efficiency_apartment apartment) (STV 1.0 0.9091)) +(: cnet_isa_9b40164483 (IsA efficiency_expert expert) (STV 1.0 0.9091)) +(: cnet_isa_f260602910 (IsA effiel_tower in_paris) (STV 1.0 0.9091)) +(: cnet_isa_64563fbed4 (IsA effigy representation) (STV 1.0 0.9091)) +(: cnet_isa_0a57a2b414 (IsA effleurage massage) (STV 1.0 0.9091)) +(: cnet_isa_c3ac25bd4b (IsA efflorescence crystallization) (STV 1.0 0.9091)) +(: cnet_isa_79256d5c34 (IsA effluent waste) (STV 1.0 0.9091)) +(: cnet_isa_c262dce847 (IsA effluvium discharge) (STV 1.0 0.9091)) +(: cnet_isa_98144476f8 (IsA effort labor) (STV 1.0 0.9091)) +(: cnet_isa_7862206f86 (IsA effortfulness difficulty) (STV 1.0 0.9091)) +(: cnet_isa_fda9dcbd3e (IsA effortlessness ease) (STV 1.0 0.9091)) +(: cnet_isa_1a2efb909c (IsA effusion flood) (STV 1.0 0.9091)) +(: cnet_isa_41b18a8faf (IsA effusion expression) (STV 1.0 0.9091)) +(: cnet_isa_1fa8395f6e (IsA effusiveness communicativeness) (STV 1.0 0.9091)) +(: cnet_isa_8cece4b241 (IsA eft newt) (STV 1.0 0.9091)) +(: cnet_isa_78e9225b8b (IsA egalitarian moralist) (STV 1.0 0.9091)) +(: cnet_isa_babbd6b051 (IsA egalitarianism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_8596b9f528 (IsA egalite equality) (STV 1.0 0.9091)) +(: cnet_isa_efcbae6202 (IsA egeria monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_bfcc9a8a4b (IsA egg ovum) (STV 1.0 0.9091)) +(: cnet_isa_43327d898f (IsA egg foodstuff) (STV 1.0 0.9091)) +(: cnet_isa_0fd5fb636b (IsA egg_and_dart molding) (STV 1.0 0.9091)) +(: cnet_isa_ed4530ec12 (IsA egg_cream soft_drink) (STV 1.0 0.9091)) +(: cnet_isa_d6746cfc42 (IsA egg_foo_yong omelet) (STV 1.0 0.9091)) +(: cnet_isa_7c1c91fd91 (IsA egg_noodle noodle) (STV 1.0 0.9091)) +(: cnet_isa_caff6d0d9a (IsA egg_roll dish) (STV 1.0 0.9091)) +(: cnet_isa_0da1be4154 (IsA egg_timer sandglass) (STV 1.0 0.9091)) +(: cnet_isa_bbea3bb46b (IsA egg_white ingredient) (STV 1.0 0.9091)) +(: cnet_isa_389cf31d4c (IsA egg_yolk ingredient) (STV 1.0 0.9091)) +(: cnet_isa_7fdfea2a70 (IsA eggar lasiocampid) (STV 1.0 0.9091)) +(: cnet_isa_0753c27842 (IsA eggbeater beater) (STV 1.0 0.9091)) +(: cnet_isa_cebf621310 (IsA eggbeater mixer) (STV 1.0 0.9091)) +(: cnet_isa_4c03a3f88a (IsA eggcup crockery) (STV 1.0 0.9091)) +(: cnet_isa_d7de053296 (IsA eggdrop_soup soup) (STV 1.0 0.9091)) +(: cnet_isa_b9438de6b6 (IsA egghead intellectual) (STV 1.0 0.9091)) +(: cnet_isa_f5f8f45898 (IsA eggnog punch) (STV 1.0 0.9091)) +(: cnet_isa_c3224127a2 (IsA eggplant vegetable) (STV 1.0 0.9091)) +(: cnet_isa_76819818aa (IsA eggplant solanaceous_vegetable) (STV 1.0 0.9091)) +(: cnet_isa_dc735982d7 (IsA eggplant herb) (STV 1.0 0.9091)) +(: cnet_isa_ed0be57260 (IsA egg food) (STV 1.0 0.9572)) +(: cnet_isa_2cdd9a8ec8 (IsA egg_benedict dish) (STV 1.0 0.9091)) +(: cnet_isa_0d0d058ff2 (IsA eggshake milkshake) (STV 1.0 0.9091)) +(: cnet_isa_941e18d112 (IsA ego pride) (STV 1.0 0.9091)) +(: cnet_isa_daaf3fac62 (IsA ego mind) (STV 1.0 0.9091)) +(: cnet_isa_f0290857c0 (IsA ego_ideal ideal) (STV 1.0 0.9091)) +(: cnet_isa_959c3d9b4d (IsA egocentric selfish_person) (STV 1.0 0.9091)) +(: cnet_isa_4190e9b535 (IsA egoism trait) (STV 1.0 0.9091)) +(: cnet_isa_3c3fb75619 (IsA egoism theory) (STV 1.0 0.9091)) +(: cnet_isa_4ca0019e12 (IsA egomania mania) (STV 1.0 0.9091)) +(: cnet_isa_78779b8dea (IsA egomaniac egotist) (STV 1.0 0.9091)) +(: cnet_isa_76c8ab8e43 (IsA egotism conceit) (STV 1.0 0.9091)) +(: cnet_isa_245263a1c8 (IsA egotist unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_dac928eba4 (IsA egress act) (STV 1.0 0.9091)) +(: cnet_isa_3e043da02f (IsA egress reappearance) (STV 1.0 0.9091)) +(: cnet_isa_b4e0323002 (IsA egret heron) (STV 1.0 0.9091)) +(: cnet_isa_6cd575ec66 (IsA egretta bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_a78fbec023 (IsA egypt country) (STV 1.0 0.9339)) +(: cnet_isa_3a8213b71b (IsA egypt country_in_africa) (STV 1.0 0.9339)) +(: cnet_isa_c7782954c0 (IsA egyptian afroasiatic) (STV 1.0 0.9091)) +(: cnet_isa_218a40fdaf (IsA egyptian african) (STV 1.0 0.9091)) +(: cnet_isa_ce94aee36d (IsA egyptian_cat domestic_cat) (STV 1.0 0.9091)) +(: cnet_isa_7c38bffdb1 (IsA egyptian_cotton cotton) (STV 1.0 0.9091)) +(: cnet_isa_b45d05fa3b (IsA egyptian_deity deity) (STV 1.0 0.9091)) +(: cnet_isa_1568d649c5 (IsA egyptian_grass crabgrass) (STV 1.0 0.9091)) +(: cnet_isa_64902b1335 (IsA egyptian_henbane herb) (STV 1.0 0.9091)) +(: cnet_isa_6cae1ed47a (IsA egyptian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_d523a8e292 (IsA egyptian_pound egyptian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_fec1f0f779 (IsA egyptian_vulture old_world_vulture) (STV 1.0 0.9091)) +(: cnet_isa_55005d41dc (IsA egyptologist archeologist) (STV 1.0 0.9091)) +(: cnet_isa_ed18b0b93b (IsA egyptology archeology) (STV 1.0 0.9091)) +(: cnet_isa_a46c49e04c (IsA eichhornia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_48323bd2d3 (IsA eicosapentaenoic_acid omega_3_fatty_acid) (STV 1.0 0.9091)) +(: cnet_isa_70243d17f7 (IsA eider sea_duck) (STV 1.0 0.9091)) +(: cnet_isa_e82d9fce27 (IsA eiderdown duck_down) (STV 1.0 0.9091)) +(: cnet_isa_95749dc28a (IsA eiderdown quilt) (STV 1.0 0.9091)) +(: cnet_isa_ae231b7730 (IsA eido attribute) (STV 1.0 0.9091)) +(: cnet_isa_aa7cd63130 (IsA eiffel_tower in_france) (STV 1.0 0.9339)) +(: cnet_isa_ad55d1e50c (IsA eiffel_tower in_paris) (STV 1.0 0.9677)) +(: cnet_isa_639e52ece7 (IsA eiffel_tower in_paris_france) (STV 1.0 0.9091)) +(: cnet_isa_1e5d9abca5 (IsA eiffel_tower_in_paris in_france) (STV 1.0 0.9339)) +(: cnet_isa_13786be207 (IsA eight digit) (STV 1.0 0.9091)) +(: cnet_isa_ab4f362147 (IsA eight_ball pool_ball) (STV 1.0 0.9091)) +(: cnet_isa_455b4a9404 (IsA eight_spot spot) (STV 1.0 0.9091)) +(: cnet_isa_83ed8b0b3b (IsA eighteen large_integer) (STV 1.0 0.9091)) +(: cnet_isa_fb0f1a2936 (IsA eighteenth rank) (STV 1.0 0.9091)) +(: cnet_isa_b276704c63 (IsA eighth rank) (STV 1.0 0.9091)) +(: cnet_isa_b34a33fb98 (IsA eighth_note note) (STV 1.0 0.9091)) +(: cnet_isa_e0c8f000c6 (IsA eighty decade) (STV 1.0 0.9091)) +(: cnet_isa_317f705f49 (IsA eighty time_of_life) (STV 1.0 0.9091)) +(: cnet_isa_58b289bb2a (IsA eightieth rank) (STV 1.0 0.9091)) +(: cnet_isa_29f7b460d0 (IsA eightpence coin) (STV 1.0 0.9091)) +(: cnet_isa_2265b87276 (IsA eightpenny_nail nail) (STV 1.0 0.9091)) +(: cnet_isa_18eae325dd (IsA eightsome reel) (STV 1.0 0.9091)) +(: cnet_isa_bcbafe9249 (IsA eighty large_integer) (STV 1.0 0.9091)) +(: cnet_isa_c9ddbd7b9d (IsA eimeriidae protoctist_family) (STV 1.0 0.9091)) +(: cnet_isa_8c2091f89e (IsA einsteinium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_d044a6f961 (IsA eira mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_fa67aa6a44 (IsA eisegesis interpretation) (STV 1.0 0.9091)) +(: cnet_isa_1477b2f80b (IsA eisteddfod festival) (STV 1.0 0.9091)) +(: cnet_isa_59a459ca64 (IsA eitchen_midden dump) (STV 1.0 0.9091)) +(: cnet_isa_85d075b653 (IsA ejaculation exclamation) (STV 1.0 0.9091)) +(: cnet_isa_92cab5d577 (IsA ejaculation discharge) (STV 1.0 0.9091)) +(: cnet_isa_806feec212 (IsA ejaculator man) (STV 1.0 0.9091)) +(: cnet_isa_3150c96e3e (IsA ejaculator speaker) (STV 1.0 0.9091)) +(: cnet_isa_653b70553b (IsA ejaculatory_duct duct) (STV 1.0 0.9091)) +(: cnet_isa_a3a86a5f3b (IsA ejection banishment) (STV 1.0 0.9091)) +(: cnet_isa_5ca3533cb7 (IsA ejection_seat seat) (STV 1.0 0.9091)) +(: cnet_isa_6482c7bc43 (IsA el_dorado imaginary_place) (STV 1.0 0.9091)) +(: cnet_isa_cd746db1fe (IsA el_nino ocean_current) (STV 1.0 0.9091)) +(: cnet_isa_fbaf63896f (IsA el_nino_southern_oscillation el_nino) (STV 1.0 0.9091)) +(: cnet_isa_6157dacb49 (IsA el_salvadoran_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_efc340050e (IsA elaborateness complexity) (STV 1.0 0.9091)) +(: cnet_isa_46e78d23ec (IsA elaboration development) (STV 1.0 0.9091)) +(: cnet_isa_e4c9aefb9a (IsA elaeagnaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_3be7b4649a (IsA elaeagnus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_cc91ca04dd (IsA elaeis monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7b86110202 (IsA elaeocarpaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_b0945626a6 (IsA elaeocarpus dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_cf6cd98cab (IsA elagatis fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_679d338050 (IsA elaidic_acid monounsaturated_fatty_acid) (STV 1.0 0.9091)) +(: cnet_isa_83bec22323 (IsA elaidic_acid tran_fatty_acid) (STV 1.0 0.9091)) +(: cnet_isa_70deeca982 (IsA elamite white_person) (STV 1.0 0.9091)) +(: cnet_isa_dd24ac7817 (IsA elamitic natural_language) (STV 1.0 0.9091)) +(: cnet_isa_79deff3bde (IsA elan liveliness) (STV 1.0 0.9091)) +(: cnet_isa_ed9c8d9c06 (IsA eland antelope) (STV 1.0 0.9091)) +(: cnet_isa_8b999980d0 (IsA elanoide bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_2eed8aafac (IsA elanus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_791e57729b (IsA elaphe reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_773321c565 (IsA elaphurus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_0c9bd457ec (IsA elapid snake) (STV 1.0 0.9091)) +(: cnet_isa_547e84094c (IsA elapidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_23c236376c (IsA elapsed_time time_period) (STV 1.0 0.9091)) +(: cnet_isa_4211ed87db (IsA elasmobranch cartilaginous_fish) (STV 1.0 0.9091)) +(: cnet_isa_64e1bc4877 (IsA elasmobranchii class) (STV 1.0 0.9091)) +(: cnet_isa_85063e63ac (IsA elastance electrical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_37d2e1c3d4 (IsA elastance_unit electromagnetic_unit) (STV 1.0 0.9091)) +(: cnet_isa_6fa71756c5 (IsA elastase enzyme) (STV 1.0 0.9091)) +(: cnet_isa_31af67f4f3 (IsA elastic fabric) (STV 1.0 0.9091)) +(: cnet_isa_954ab4af42 (IsA elastic_bandage bandage) (STV 1.0 0.9091)) +(: cnet_isa_ef49158a0d (IsA elastic_device device) (STV 1.0 0.9091)) +(: cnet_isa_daceaa346a (IsA elastic_energy potential_energy) (STV 1.0 0.9091)) +(: cnet_isa_791a75afa8 (IsA elastic_tissue connective_tissue) (STV 1.0 0.9091)) +(: cnet_isa_e8eb6dee91 (IsA elasticity physical_property) (STV 1.0 0.9091)) +(: cnet_isa_bb767c0acc (IsA elasticity_of_shear elasticity) (STV 1.0 0.9091)) +(: cnet_isa_db76372cd2 (IsA elastin scleroprotein) (STV 1.0 0.9091)) +(: cnet_isa_bf6f1b4a1b (IsA elastomer material) (STV 1.0 0.9091)) +(: cnet_isa_382154b8bb (IsA elastosis physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_ab17f12e44 (IsA elaterid_beetle beetle) (STV 1.0 0.9091)) +(: cnet_isa_2808dbe829 (IsA elateridae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_6eb91fa303 (IsA elation joy) (STV 1.0 0.9091)) +(: cnet_isa_a074a131b0 (IsA elation psychological_state) (STV 1.0 0.9091)) +(: cnet_isa_754749fbd7 (IsA elbow joint) (STV 1.0 0.9091)) +(: cnet_isa_f8b56ecdc2 (IsA elbow bend) (STV 1.0 0.9091)) +(: cnet_isa_76d02f32c2 (IsA elbow cloth_covering) (STV 1.0 0.9091)) +(: cnet_isa_cef267ba22 (IsA elbow pipe) (STV 1.0 0.9091)) +(: cnet_isa_4ca469b0ed (IsA elbow hinge_joint) (STV 1.0 0.9091)) +(: cnet_isa_aab4ffc6be (IsA elbow_pad protective_garment) (STV 1.0 0.9091)) +(: cnet_isa_14ded1b033 (IsA elbowing jostle) (STV 1.0 0.9091)) +(: cnet_isa_2eb18ff1b9 (IsA elder adult) (STV 1.0 0.9091)) +(: cnet_isa_e1f146e1c1 (IsA elder church_officer) (STV 1.0 0.9091)) +(: cnet_isa_ec30c3ddf1 (IsA elder shrub) (STV 1.0 0.9091)) +(: cnet_isa_2df2e16f66 (IsA elder_statesman important_person) (STV 1.0 0.9091)) +(: cnet_isa_1d450c601a (IsA elder_statesman statesman) (STV 1.0 0.9091)) +(: cnet_isa_8d40600ca4 (IsA elderberry drupe) (STV 1.0 0.9091)) +(: cnet_isa_4a51ffb7f2 (IsA elderberry edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_6965a81a1a (IsA eldership position) (STV 1.0 0.9091)) +(: cnet_isa_e75dfba12d (IsA eldest_hand card_player) (STV 1.0 0.9091)) +(: cnet_isa_7b21562f09 (IsA elecampane inula) (STV 1.0 0.9091)) +(: cnet_isa_019cdb3656 (IsA elected_official official) (STV 1.0 0.9091)) +(: cnet_isa_c4ea0f84ab (IsA election choice) (STV 1.0 0.9091)) +(: cnet_isa_6464f61896 (IsA election vote) (STV 1.0 0.9091)) +(: cnet_isa_3d6f3834d0 (IsA election predestination) (STV 1.0 0.9091)) +(: cnet_isa_a2109cee8a (IsA election status) (STV 1.0 0.9091)) +(: cnet_isa_f892860da6 (IsA election_commission committee) (STV 1.0 0.9091)) +(: cnet_isa_1b945457d6 (IsA election_fraud fraud) (STV 1.0 0.9091)) +(: cnet_isa_2abd7a73a9 (IsA electioneering persuasion) (STV 1.0 0.9091)) +(: cnet_isa_e8e3c7d3b9 (IsA election event) (STV 1.0 0.9091)) +(: cnet_isa_ed557adb0b (IsA elective_course course) (STV 1.0 0.9091)) +(: cnet_isa_44783f03f8 (IsA elector prince) (STV 1.0 0.9091)) +(: cnet_isa_1db548e13d (IsA electoral_college body) (STV 1.0 0.9091)) +(: cnet_isa_7b7b0ae8ca (IsA electorate citizenry) (STV 1.0 0.9091)) +(: cnet_isa_796386a1bf (IsA electra_complex complex) (STV 1.0 0.9091)) +(: cnet_isa_d9ff04eab5 (IsA electric car) (STV 1.0 0.9091)) +(: cnet_isa_3e245e5abd (IsA electric_bell bell) (STV 1.0 0.9091)) +(: cnet_isa_b6ddaa78c7 (IsA electric_bill bill) (STV 1.0 0.9091)) +(: cnet_isa_e211333cb1 (IsA electric_blanket blanket) (STV 1.0 0.9091)) +(: cnet_isa_1bdbab8fd0 (IsA electric_burn burn) (STV 1.0 0.9091)) +(: cnet_isa_568130e83a (IsA electric_catfish silurid) (STV 1.0 0.9091)) +(: cnet_isa_b2fae58ac5 (IsA electric_chair instrument_of_execution) (STV 1.0 0.9091)) +(: cnet_isa_5670b1237e (IsA electric_clock clock) (STV 1.0 0.9091)) +(: cnet_isa_2b60679d00 (IsA electric_dipole dipole) (STV 1.0 0.9091)) +(: cnet_isa_26b90ed64d (IsA electric_dipole_moment dipole_moment) (STV 1.0 0.9091)) +(: cnet_isa_3c479ae9e5 (IsA electric_discharge_lamp electric_lamp) (STV 1.0 0.9091)) +(: cnet_isa_efc6a3b3fa (IsA electric_drill power_drill) (STV 1.0 0.9091)) +(: cnet_isa_be774e39b4 (IsA electric_eel fish) (STV 1.0 0.9091)) +(: cnet_isa_16c4c723fa (IsA electric_eel cypriniform_fish) (STV 1.0 0.9091)) +(: cnet_isa_0236cd19ad (IsA electric_fan fan) (STV 1.0 0.9091)) +(: cnet_isa_c8df0e356e (IsA electric_field field) (STV 1.0 0.9091)) +(: cnet_isa_25358d1cba (IsA electric_frying_pan frying_pan) (STV 1.0 0.9091)) +(: cnet_isa_9028edde36 (IsA electric_furnace furnace) (STV 1.0 0.9091)) +(: cnet_isa_92883e8bed (IsA electric_guitar guitar) (STV 1.0 0.9091)) +(: cnet_isa_7e07b635f2 (IsA electric_hammer hammer) (STV 1.0 0.9091)) +(: cnet_isa_59221c8907 (IsA electric_heater space_heater) (STV 1.0 0.9091)) +(: cnet_isa_893c629d3e (IsA electric_lamp lamp) (STV 1.0 0.9091)) +(: cnet_isa_9ea17c23d4 (IsA electric_locomotive locomotive) (STV 1.0 0.9091)) +(: cnet_isa_553f9934b5 (IsA electric_main main) (STV 1.0 0.9091)) +(: cnet_isa_8ecbf2b887 (IsA electric_meter meter) (STV 1.0 0.9091)) +(: cnet_isa_239e30f619 (IsA electric_mixer mixer) (STV 1.0 0.9091)) +(: cnet_isa_795720da8d (IsA electric_motor motor) (STV 1.0 0.9091)) +(: cnet_isa_3b5a46ec3d (IsA electric_organ electronic_instrument) (STV 1.0 0.9091)) +(: cnet_isa_49fbe6b257 (IsA electric_potential electrical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_ea13bd8112 (IsA electric_range stove) (STV 1.0 0.9091)) +(: cnet_isa_df90ca7871 (IsA electric_range white_good) (STV 1.0 0.9091)) +(: cnet_isa_1a1ae593b4 (IsA electric_ray ray) (STV 1.0 0.9091)) +(: cnet_isa_5223d630ce (IsA electric_refrigerator refrigerator) (STV 1.0 0.9091)) +(: cnet_isa_2b3ca8e29e (IsA electric_resistance electrical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_3fa88d967d (IsA electric_shock corporal_punishment) (STV 1.0 0.9091)) +(: cnet_isa_94a8a45c28 (IsA electric_shock reflex) (STV 1.0 0.9091)) +(: cnet_isa_7844258a69 (IsA electric_shock torture) (STV 1.0 0.9091)) +(: cnet_isa_e8200e63db (IsA electric_shock injury) (STV 1.0 0.9091)) +(: cnet_isa_d3e3016b93 (IsA electric_socket socket) (STV 1.0 0.9091)) +(: cnet_isa_ba822e64b8 (IsA electric_toothbrush toothbrush) (STV 1.0 0.9091)) +(: cnet_isa_93620aa9bf (IsA electric_typewriter typewriter) (STV 1.0 0.9091)) +(: cnet_isa_6aba6e3cbd (IsA electric_vehicle vehicle) (STV 1.0 0.9091)) +(: cnet_isa_02fba009c1 (IsA electrical_cable cable) (STV 1.0 0.9091)) +(: cnet_isa_af983da280 (IsA electrical_conduction conduction) (STV 1.0 0.9091)) +(: cnet_isa_b7ca074245 (IsA electrical_contact contact) (STV 1.0 0.9091)) +(: cnet_isa_2710703efb (IsA electrical_converter converter) (STV 1.0 0.9091)) +(: cnet_isa_1021de0224 (IsA electrical_device device) (STV 1.0 0.9091)) +(: cnet_isa_6384ae1955 (IsA electrical_discharge discharge) (STV 1.0 0.9091)) +(: cnet_isa_4c3deadc0f (IsA electrical_disturbance electrical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_cf164cc097 (IsA electrical_engineer engineer) (STV 1.0 0.9091)) +(: cnet_isa_cfb17ab858 (IsA electrical_engineering engineering) (STV 1.0 0.9091)) +(: cnet_isa_76667a4d00 (IsA electrical_line_of_force line_of_force) (STV 1.0 0.9091)) +(: cnet_isa_872d9a337e (IsA electrical_phenomenon physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_b7ef4dafc7 (IsA electrical_power power) (STV 1.0 0.9091)) +(: cnet_isa_1618d21243 (IsA electrical_system equipment) (STV 1.0 0.9091)) +(: cnet_isa_1fe15ec392 (IsA electrical_system utility) (STV 1.0 0.9091)) +(: cnet_isa_5d705ddc7b (IsA electrical_work trade) (STV 1.0 0.9091)) +(: cnet_isa_c283a8a3d3 (IsA electrician skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_63dc07e765 (IsA electricity stir) (STV 1.0 0.9091)) +(: cnet_isa_6e51542693 (IsA electricity energy) (STV 1.0 0.9091)) +(: cnet_isa_5718a791e4 (IsA electricity physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_6b01a0d815 (IsA electrification energizing) (STV 1.0 0.9091)) +(: cnet_isa_e62f332774 (IsA electrification exploitation) (STV 1.0 0.9091)) +(: cnet_isa_2921e16b7b (IsA electro_acoustic_transducer transducer) (STV 1.0 0.9091)) +(: cnet_isa_3b85555034 (IsA electrocardiogram graph) (STV 1.0 0.9091)) +(: cnet_isa_0fe574d19c (IsA electrocautery thermocautery) (STV 1.0 0.9091)) +(: cnet_isa_d61f4578aa (IsA electrochemistry chemistry) (STV 1.0 0.9091)) +(: cnet_isa_694319d67b (IsA electroconvulsive_therapy galvanism) (STV 1.0 0.9091)) +(: cnet_isa_579344b168 (IsA electroconvulsive_therapy shock_therapy) (STV 1.0 0.9091)) +(: cnet_isa_189c390be8 (IsA electrocution execution) (STV 1.0 0.9091)) +(: cnet_isa_8f5c7a769a (IsA electrocution killing) (STV 1.0 0.9091)) +(: cnet_isa_e658b5ecfc (IsA electrocutioner executioner) (STV 1.0 0.9091)) +(: cnet_isa_eab778f459 (IsA electrode conductor) (STV 1.0 0.9091)) +(: cnet_isa_d7c43a36a7 (IsA electrodeposition deposition) (STV 1.0 0.9091)) +(: cnet_isa_666c6d7196 (IsA electrodynamometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_e91c53cd1b (IsA electroencephalogram graph) (STV 1.0 0.9091)) +(: cnet_isa_7d3ad92cc8 (IsA electroencephalograph medical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_f931cf214e (IsA electrograph apparatus) (STV 1.0 0.9091)) +(: cnet_isa_ac040600b2 (IsA electrograph electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_6828eef8a1 (IsA electrologist health_professional) (STV 1.0 0.9091)) +(: cnet_isa_ba374663e3 (IsA electrolysis depilation) (STV 1.0 0.9091)) +(: cnet_isa_cedf6f675a (IsA electrolysis decomposition) (STV 1.0 0.9091)) +(: cnet_isa_f5f409c284 (IsA electrolyte solution) (STV 1.0 0.9091)) +(: cnet_isa_1a7e7d8ad5 (IsA electrolyte_balance balance) (STV 1.0 0.9091)) +(: cnet_isa_0a87e05daa (IsA electrolytic capacitor) (STV 1.0 0.9091)) +(: cnet_isa_69936c1d86 (IsA electrolytic_cell cell) (STV 1.0 0.9091)) +(: cnet_isa_b9437ae306 (IsA electromagnet magnet) (STV 1.0 0.9091)) +(: cnet_isa_7114266415 (IsA electromagnetic_delay_line delay_line) (STV 1.0 0.9091)) +(: cnet_isa_6b22917727 (IsA electromagnetic_interaction interaction) (STV 1.0 0.9091)) +(: cnet_isa_35b831fd35 (IsA electromagnetic_intrusion electronic_warfare) (STV 1.0 0.9091)) +(: cnet_isa_ac2f6a92e7 (IsA electromagnetic_radiation radiation) (STV 1.0 0.9091)) +(: cnet_isa_8c020ec0b0 (IsA electromagnetic_spectrum spectrum) (STV 1.0 0.9091)) +(: cnet_isa_b4ec0c1fbc (IsA electromagnetic_unit unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_55d9374dc4 (IsA electromagnetism physic) (STV 1.0 0.9091)) +(: cnet_isa_0db568d9d9 (IsA electromagnetism magnetism) (STV 1.0 0.9091)) +(: cnet_isa_2809a3a7ca (IsA electromechanical_device mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_baaa1debce (IsA electrometer meter) (STV 1.0 0.9091)) +(: cnet_isa_1ef940eb11 (IsA electromotive_sery sery) (STV 1.0 0.9091)) +(: cnet_isa_390224264f (IsA electromyogram myogram) (STV 1.0 0.9091)) +(: cnet_isa_8e6500cefc (IsA electromyograph medical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_721254d7ce (IsA electromyography diagnostic_procedure) (STV 1.0 0.9091)) +(: cnet_isa_b7e746c1c5 (IsA electron elementary_particle) (STV 1.0 0.9091)) +(: cnet_isa_6b19c0e05e (IsA electron lepton) (STV 1.0 0.9091)) +(: cnet_isa_521190b09e (IsA electron_accelerator collider) (STV 1.0 0.9091)) +(: cnet_isa_6ff5e6c6e2 (IsA electron_gun electrode) (STV 1.0 0.9091)) +(: cnet_isa_9ab797fc0c (IsA electron_microscope microscope) (STV 1.0 0.9091)) +(: cnet_isa_4bff0eefd1 (IsA electron_microscopy microscopy) (STV 1.0 0.9091)) +(: cnet_isa_79548c38d4 (IsA electron_multiplier tube) (STV 1.0 0.9091)) +(: cnet_isa_6c9462b839 (IsA electron_optic electronic) (STV 1.0 0.9091)) +(: cnet_isa_7cf5f8bf38 (IsA electron_shell group) (STV 1.0 0.9091)) +(: cnet_isa_33f9986d1d (IsA electron_spin_resonance microwave_spectroscopy) (STV 1.0 0.9091)) +(: cnet_isa_10c46efb65 (IsA electron_volt work_unit) (STV 1.0 0.9091)) +(: cnet_isa_dad73966f1 (IsA electronegativity tendency) (STV 1.0 0.9091)) +(: cnet_isa_cafa6ab066 (IsA electronic_balance balance) (STV 1.0 0.9091)) +(: cnet_isa_c4a724d030 (IsA electronic_communication transmission) (STV 1.0 0.9091)) +(: cnet_isa_b4144654f5 (IsA electronic_converter converter) (STV 1.0 0.9091)) +(: cnet_isa_de92d6a6d0 (IsA electronic_counter_countermeasure electronic_warfare) (STV 1.0 0.9091)) +(: cnet_isa_2f5b64cddc (IsA electronic_countermeasure electronic_warfare) (STV 1.0 0.9091)) +(: cnet_isa_b6df444808 (IsA electronic_data_processing automatic_data_processing) (STV 1.0 0.9091)) +(: cnet_isa_8298dd39aa (IsA electronic_database database) (STV 1.0 0.9091)) +(: cnet_isa_efc2b8eb5f (IsA electronic_deception electronic_countermeasure) (STV 1.0 0.9091)) +(: cnet_isa_7d994f602c (IsA electronic_device device) (STV 1.0 0.9091)) +(: cnet_isa_8aa284be34 (IsA electronic_equipment equipment) (STV 1.0 0.9091)) +(: cnet_isa_f1da6a0894 (IsA electronic_fetal_monitor monitor) (STV 1.0 0.9091)) +(: cnet_isa_e22b9a271c (IsA electronic_instrument musical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_cb3c2f8e92 (IsA electronic_mail electronic_communication) (STV 1.0 0.9091)) +(: cnet_isa_262fa88c8f (IsA electronic_reconnaissance reconnaissance) (STV 1.0 0.9091)) +(: cnet_isa_5b94a60281 (IsA electronic_signal signal) (STV 1.0 0.9091)) +(: cnet_isa_3fe5ba0be5 (IsA electronic_surveillance surveillance) (STV 1.0 0.9091)) +(: cnet_isa_438b745231 (IsA electronic_text text) (STV 1.0 0.9091)) +(: cnet_isa_014b561a4f (IsA electronic_voltmeter voltmeter) (STV 1.0 0.9091)) +(: cnet_isa_7205dcf461 (IsA electronic_warfare military_action) (STV 1.0 0.9091)) +(: cnet_isa_e456566c85 (IsA electronic_warfare_support_measure electronic_warfare) (STV 1.0 0.9091)) +(: cnet_isa_95812711c5 (IsA electronic physic) (STV 1.0 0.9091)) +(: cnet_isa_b3bea8cf92 (IsA electronic_company company) (STV 1.0 0.9091)) +(: cnet_isa_71d99c1cc9 (IsA electronic_industry industry) (STV 1.0 0.9091)) +(: cnet_isa_236acbc5f5 (IsA electronic_intelligence signal_intelligence) (STV 1.0 0.9091)) +(: cnet_isa_550c519c29 (IsA electrophoresis natural_process) (STV 1.0 0.9091)) +(: cnet_isa_2a450304d6 (IsA electrophoridae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_354016a9ba (IsA electrophorus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_0a2b304b15 (IsA electrophorus electrostatic_generator) (STV 1.0 0.9091)) +(: cnet_isa_0c198fa1f5 (IsA electroplate artifact) (STV 1.0 0.9091)) +(: cnet_isa_51387d19de (IsA electroplater plater) (STV 1.0 0.9091)) +(: cnet_isa_28a06c0df0 (IsA electroretinogram graph) (STV 1.0 0.9091)) +(: cnet_isa_0d7d168817 (IsA electroscope measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_89cecf06ff (IsA electrosleep unconsciousness) (STV 1.0 0.9091)) +(: cnet_isa_c467610329 (IsA electrostatic_charge charge) (STV 1.0 0.9091)) +(: cnet_isa_228a41d463 (IsA electrostatic_field electric_field) (STV 1.0 0.9091)) +(: cnet_isa_ced0e8c5ee (IsA electrostatic_generator electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_ff9e7af14e (IsA electrostatic_precipitation industrial_process) (STV 1.0 0.9091)) +(: cnet_isa_3354420913 (IsA electrostatic_printer printer) (STV 1.0 0.9091)) +(: cnet_isa_1d083d8f9a (IsA electrostatic_unit unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_418ddd2722 (IsA electrostatic physic) (STV 1.0 0.9091)) +(: cnet_isa_5eb8bccba9 (IsA electrosurgery operation) (STV 1.0 0.9091)) +(: cnet_isa_3641cb0c7c (IsA electrotherapist therapist) (STV 1.0 0.9091)) +(: cnet_isa_6e8579c06e (IsA electrum alloy) (STV 1.0 0.9091)) +(: cnet_isa_38ff57c23b (IsA elegance quality) (STV 1.0 0.9091)) +(: cnet_isa_84cb1b752e (IsA elegant_brodiaea brodiaea) (STV 1.0 0.9091)) +(: cnet_isa_0008050e35 (IsA elegant_habenaria rein_orchid) (STV 1.0 0.9091)) +(: cnet_isa_0f7fb55553 (IsA elegiac_stanza quatrain) (STV 1.0 0.9091)) +(: cnet_isa_d97be86661 (IsA elegist poet) (STV 1.0 0.9091)) +(: cnet_isa_2d6beb27e9 (IsA elegy poem) (STV 1.0 0.9091)) +(: cnet_isa_59a016bfdd (IsA element environment) (STV 1.0 0.9091)) +(: cnet_isa_ba7190e700 (IsA element straight_line) (STV 1.0 0.9091)) +(: cnet_isa_09d8a479f3 (IsA element situation) (STV 1.0 0.9091)) +(: cnet_isa_4503660dc3 (IsA element substance) (STV 1.0 0.9091)) +(: cnet_isa_3acc512a01 (IsA element_of_cone element) (STV 1.0 0.9091)) +(: cnet_isa_49454675f7 (IsA element_of_cylinder element) (STV 1.0 0.9091)) +(: cnet_isa_a2c78db871 (IsA elementary_education education) (STV 1.0 0.9091)) +(: cnet_isa_f01ad96ac4 (IsA elementary_geometry geometry) (STV 1.0 0.9091)) +(: cnet_isa_b10c7b6ce9 (IsA elementary_particle particle) (STV 1.0 0.9091)) +(: cnet_isa_d5935c50c2 (IsA elementary_school school) (STV 1.0 0.9659)) +(: cnet_isa_6f688008f1 (IsA element weather) (STV 1.0 0.9091)) +(: cnet_isa_274d8f6358 (IsA elemi gum_resin) (STV 1.0 0.9091)) +(: cnet_isa_69ae0ad5c3 (IsA eleocharis monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e9b3b93a7f (IsA eleostearic_acid unsaturated_fatty_acid) (STV 1.0 0.9091)) +(: cnet_isa_1a19688ea0 (IsA eleotridae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_ba5dd25059 (IsA elephant_s_foot herb) (STV 1.0 0.9091)) +(: cnet_isa_9a16726a6f (IsA elephant_s_foot vine) (STV 1.0 0.9091)) +(: cnet_isa_55749bed79 (IsA elephant pachiderm) (STV 1.0 0.9091)) +(: cnet_isa_51594b2d19 (IsA elephant pachyderm) (STV 1.0 0.9091)) +(: cnet_isa_33178029c8 (IsA elephant proboscidean) (STV 1.0 0.9091)) +(: cnet_isa_f10da56d78 (IsA elephant emblem) (STV 1.0 0.9091)) +(: cnet_isa_45663fe50e (IsA elephant_bird ratite) (STV 1.0 0.9091)) +(: cnet_isa_7cb8de71dd (IsA elephant_seal earless_seal) (STV 1.0 0.9091)) +(: cnet_isa_383f2aa490 (IsA elephant_tree incense_tree) (STV 1.0 0.9091)) +(: cnet_isa_8f37a477b3 (IsA elephantiasis hypertrophy) (STV 1.0 0.9091)) +(: cnet_isa_40250380e3 (IsA elephantiasis_neuromatosa elephantiasis) (STV 1.0 0.9091)) +(: cnet_isa_afe2399680 (IsA elephantiasis_scroti elephantiasis) (STV 1.0 0.9091)) +(: cnet_isa_084cb512fb (IsA elephantidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_31248d4575 (IsA elephantopus asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7451138e80 (IsA elepha mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_f1bd27ae71 (IsA elettaria monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_78b3e9ff41 (IsA eleusine monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_63c3b50276 (IsA eleutherodactylus amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_71876184ad (IsA elevated_railway railway) (STV 1.0 0.9091)) +(: cnet_isa_ba2219446b (IsA elevation plan) (STV 1.0 0.9091)) +(: cnet_isa_f27b6dfff4 (IsA elevation distance) (STV 1.0 0.9091)) +(: cnet_isa_5a7225c9f2 (IsA elevation leap) (STV 1.0 0.9091)) +(: cnet_isa_d6e43e77a7 (IsA elevation rise) (STV 1.0 0.9091)) +(: cnet_isa_a3b42f2cd6 (IsA elevation angular_position) (STV 1.0 0.9091)) +(: cnet_isa_836182c20a (IsA elevator airfoil) (STV 1.0 0.9091)) +(: cnet_isa_8064b008c7 (IsA elevator lifting_device) (STV 1.0 0.9091)) +(: cnet_isa_c31339b27f (IsA elevator_girl elevator_operator) (STV 1.0 0.9091)) +(: cnet_isa_e810f64ec3 (IsA elevator_man elevator_operator) (STV 1.0 0.9091)) +(: cnet_isa_6f904eef90 (IsA elevator_operator operator) (STV 1.0 0.9091)) +(: cnet_isa_58f8a10fa1 (IsA elevator_shaft shaft) (STV 1.0 0.9091)) +(: cnet_isa_f06d3ce271 (IsA eleven large_integer) (STV 1.0 0.9091)) +(: cnet_isa_8cc557e65b (IsA eleven_plus examination) (STV 1.0 0.9091)) +(: cnet_isa_1614345415 (IsA eleventh rank) (STV 1.0 0.9091)) +(: cnet_isa_6fe619048d (IsA eleventh_hour moment) (STV 1.0 0.9091)) +(: cnet_isa_7022b84965 (IsA eleventh_month_of_year november) (STV 1.0 0.9091)) +(: cnet_isa_3f346e88b6 (IsA elf fairy) (STV 1.0 0.9091)) +(: cnet_isa_0cb2ba06e9 (IsA elf_cup apothecium) (STV 1.0 0.9091)) +(: cnet_isa_22e0242ad5 (IsA elgin_marble statuary) (STV 1.0 0.9091)) +(: cnet_isa_f4e39d56b3 (IsA eligibility qualification) (STV 1.0 0.9091)) +(: cnet_isa_cbc03bd834 (IsA elimination murder) (STV 1.0 0.9091)) +(: cnet_isa_704010b166 (IsA elimination removal) (STV 1.0 0.9091)) +(: cnet_isa_13e4c94693 (IsA elimination analysis) (STV 1.0 0.9091)) +(: cnet_isa_3489df272b (IsA elimination discharge) (STV 1.0 0.9091)) +(: cnet_isa_5d9575ca47 (IsA elimination_reaction chemical_reaction) (STV 1.0 0.9091)) +(: cnet_isa_5e641b170c (IsA elimination_tournament tournament) (STV 1.0 0.9091)) +(: cnet_isa_dc1bd4cb64 (IsA eliminator agent) (STV 1.0 0.9091)) +(: cnet_isa_8959ed9432 (IsA eliomy mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_e5d622a544 (IsA elision omission) (STV 1.0 0.9091)) +(: cnet_isa_7ff6a23d52 (IsA elite upper_class) (STV 1.0 0.9091)) +(: cnet_isa_4bd38eafe8 (IsA elitism political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_82c10485f3 (IsA elitist moralist) (STV 1.0 0.9091)) +(: cnet_isa_612cd45ed6 (IsA elixir panacea) (STV 1.0 0.9091)) +(: cnet_isa_f3d77c8f22 (IsA elixir potion) (STV 1.0 0.9091)) +(: cnet_isa_7f67f89b92 (IsA elixir liquid) (STV 1.0 0.9091)) +(: cnet_isa_9facb14e7d (IsA elixir_of_life elixir) (STV 1.0 0.9091)) +(: cnet_isa_97f1f70359 (IsA elizabeth woman_s_name) (STV 1.0 0.9091)) +(: cnet_isa_b9eed59c2e (IsA elizabethan person) (STV 1.0 0.9091)) +(: cnet_isa_eb5aab7183 (IsA elk deer) (STV 1.0 0.9091)) +(: cnet_isa_91d8e7185b (IsA ell annex) (STV 1.0 0.9091)) +(: cnet_isa_6b00b70b6a (IsA elliott_s_goldenrod goldenrod) (STV 1.0 0.9091)) +(: cnet_isa_65e5b64863 (IsA ellipse conic_section) (STV 1.0 0.9091)) +(: cnet_isa_af62f9f2ad (IsA ellipsis omission) (STV 1.0 0.9091)) +(: cnet_isa_6fec428b21 (IsA ellipsoid plane_figure) (STV 1.0 0.9091)) +(: cnet_isa_54ba71350f (IsA elliptic_geometry non_euclidean_geometry) (STV 1.0 0.9091)) +(: cnet_isa_e5b862c641 (IsA elliptic_leaf simple_leaf) (STV 1.0 0.9091)) +(: cnet_isa_b2ed1b107c (IsA elm tree) (STV 1.0 0.9091)) +(: cnet_isa_0dec67a2ed (IsA elm wood) (STV 1.0 0.9091)) +(: cnet_isa_f67859c6ab (IsA elocution manner_of_speaking) (STV 1.0 0.9091)) +(: cnet_isa_a2543866be (IsA elocutionist orator) (STV 1.0 0.9091)) +(: cnet_isa_dda2f2d815 (IsA elodea monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_40c9439c10 (IsA elongation change_of_shape) (STV 1.0 0.9091)) +(: cnet_isa_efa6b43cc9 (IsA elongation addition) (STV 1.0 0.9091)) +(: cnet_isa_9f3b7e6d94 (IsA elongation longness) (STV 1.0 0.9091)) +(: cnet_isa_3873e92fa8 (IsA elopement running_away) (STV 1.0 0.9091)) +(: cnet_isa_450b5c5bb5 (IsA elopidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_92ee27474e (IsA elop fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_98e13aa5c2 (IsA eloquence expressive_style) (STV 1.0 0.9091)) +(: cnet_isa_1016cac0f1 (IsA elsholtzia herb) (STV 1.0 0.9091)) +(: cnet_isa_2e35dadb3f (IsA eluate solution) (STV 1.0 0.9091)) +(: cnet_isa_8b823d535c (IsA elucidation explanation) (STV 1.0 0.9091)) +(: cnet_isa_d33e767ded (IsA elul jewish_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_6b31a9f95b (IsA elusiveness unclearness) (STV 1.0 0.9091)) +(: cnet_isa_8b4793e7a1 (IsA elution extraction) (STV 1.0 0.9091)) +(: cnet_isa_c1947dabb6 (IsA elver eel) (STV 1.0 0.9091)) +(: cnet_isa_a2b029b3d9 (IsA elve atmospheric_electricity) (STV 1.0 0.9091)) +(: cnet_isa_462cbbbdf7 (IsA elvis famous_singer) (STV 1.0 0.9091)) +(: cnet_isa_eb52f548e5 (IsA elymus monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_fae158c961 (IsA elysium imaginary_place) (STV 1.0 0.9091)) +(: cnet_isa_39c69a3eaa (IsA elysium heaven) (STV 1.0 0.9091)) +(: cnet_isa_b6fd3fe6bd (IsA em area_unit) (STV 1.0 0.9091)) +(: cnet_isa_ad95ce9f2c (IsA em linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_fe120fa8d1 (IsA emac text_editor) (STV 1.0 0.9091)) +(: cnet_isa_2d58a7958f (IsA email electronic_mail) (STV 1.0 0.9091)) +(: cnet_isa_25055c5201 (IsA emanation substance) (STV 1.0 0.9091)) +(: cnet_isa_cedd52894b (IsA emanation origin) (STV 1.0 0.9091)) +(: cnet_isa_700e1a3a71 (IsA emancipation liberation) (STV 1.0 0.9091)) +(: cnet_isa_3df2a0cf00 (IsA emancipator liberator) (STV 1.0 0.9091)) +(: cnet_isa_d767c4b260 (IsA emarginate_leaf leaf) (STV 1.0 0.9091)) +(: cnet_isa_73b7157982 (IsA emarld_beauty_arborvitae plant) (STV 1.0 0.9091)) +(: cnet_isa_c7cd6f6e3a (IsA emasculation effeminacy) (STV 1.0 0.9091)) +(: cnet_isa_ec4952c235 (IsA embalmer mortician) (STV 1.0 0.9091)) +(: cnet_isa_be49bfe540 (IsA embalmment preservation) (STV 1.0 0.9091)) +(: cnet_isa_6d8b3446dc (IsA embankment mound) (STV 1.0 0.9091)) +(: cnet_isa_adb530fcd5 (IsA embargo trade_barrier) (STV 1.0 0.9091)) +(: cnet_isa_01ce6249be (IsA embarrassment trouble) (STV 1.0 0.9091)) +(: cnet_isa_95f386c3bb (IsA embarrassment shame) (STV 1.0 0.9091)) +(: cnet_isa_da903d323a (IsA embarrassment emotional_state) (STV 1.0 0.9091)) +(: cnet_isa_9248626e37 (IsA embassy diplomatic_building) (STV 1.0 0.9091)) +(: cnet_isa_228585d5cb (IsA embassy deputation) (STV 1.0 0.9091)) +(: cnet_isa_249257e078 (IsA embellishment decoration) (STV 1.0 0.9091)) +(: cnet_isa_0197a08858 (IsA embellishment expansion) (STV 1.0 0.9091)) +(: cnet_isa_429eadc8e6 (IsA ember fragment) (STV 1.0 0.9091)) +(: cnet_isa_733d4206a1 (IsA ember_day christian_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_dc189a1bdf (IsA emberiza bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_6c69c4f02c (IsA emberizidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_3fe8712511 (IsA embezzlement larceny) (STV 1.0 0.9091)) +(: cnet_isa_2ca9f67b44 (IsA embezzler deceiver) (STV 1.0 0.9091)) +(: cnet_isa_f01baee206 (IsA embezzler thief) (STV 1.0 0.9091)) +(: cnet_isa_2a333b01f4 (IsA embioptera animal_order) (STV 1.0 0.9091)) +(: cnet_isa_31c91ea59f (IsA embiotocidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_7e99211ff8 (IsA embitterment unhappiness) (STV 1.0 0.9091)) +(: cnet_isa_50e594b52d (IsA emblem design) (STV 1.0 0.9091)) +(: cnet_isa_18f5c1923e (IsA emblem symbol) (STV 1.0 0.9091)) +(: cnet_isa_797a63beb6 (IsA embodiment objectification) (STV 1.0 0.9091)) +(: cnet_isa_cdabe6ca7d (IsA embodiment personification) (STV 1.0 0.9091)) +(: cnet_isa_38b1b00e0b (IsA embolectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_d632ecfab0 (IsA embolism occlusion) (STV 1.0 0.9091)) +(: cnet_isa_47e7cb332a (IsA embolism time_interval) (STV 1.0 0.9091)) +(: cnet_isa_b323eda3ee (IsA embolus clot) (STV 1.0 0.9091)) +(: cnet_isa_0bd0e6a940 (IsA embothrium dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ffa078c903 (IsA embrace adoption) (STV 1.0 0.9091)) +(: cnet_isa_b0189429da (IsA embrace clasp) (STV 1.0 0.9091)) +(: cnet_isa_e360315fae (IsA embrace inclusion) (STV 1.0 0.9091)) +(: cnet_isa_2cdc96bc53 (IsA embroiderer needleworker) (STV 1.0 0.9091)) +(: cnet_isa_4cd172c31a (IsA embroideress embroiderer) (STV 1.0 0.9091)) +(: cnet_isa_24d109d301 (IsA embroidery needlework) (STV 1.0 0.9091)) +(: cnet_isa_4ce0503a64 (IsA embroidery_stitch stitch) (STV 1.0 0.9091)) +(: cnet_isa_58443c9085 (IsA embryo animal) (STV 1.0 0.9091)) +(: cnet_isa_9063d00b6d (IsA embryo plant) (STV 1.0 0.9091)) +(: cnet_isa_883447b6bc (IsA embryologist specialist) (STV 1.0 0.9091)) +(: cnet_isa_ee90041c1b (IsA embryology biology) (STV 1.0 0.9091)) +(: cnet_isa_de8bdc8d40 (IsA embryonal_carcinoma carcinoma) (STV 1.0 0.9091)) +(: cnet_isa_bcdb8686c0 (IsA embryonal_rhabdomyosarcoma rhabdomyosarcoma) (STV 1.0 0.9091)) +(: cnet_isa_40d7824847 (IsA embryonic_cell cell) (STV 1.0 0.9091)) +(: cnet_isa_5c10e0090c (IsA embryonic_stem_cell_research stem_cell_research) (STV 1.0 0.9091)) +(: cnet_isa_37ff1ff72e (IsA embryonic_tissue animal_tissue) (STV 1.0 0.9091)) +(: cnet_isa_8123c924d3 (IsA emendation correction) (STV 1.0 0.9091)) +(: cnet_isa_da1d4c22be (IsA emerald precious_stone) (STV 1.0 0.9339)) +(: cnet_isa_a0d664d916 (IsA emerald jewel) (STV 1.0 0.9091)) +(: cnet_isa_ae2ac74d35 (IsA emerald beryl) (STV 1.0 0.9091)) +(: cnet_isa_5efa7f8690 (IsA emerald transparent_gem) (STV 1.0 0.9091)) +(: cnet_isa_fff10fef0e (IsA emerald_shiner shiner) (STV 1.0 0.9091)) +(: cnet_isa_d0abb1f04f (IsA emerald stone) (STV 1.0 0.9091)) +(: cnet_isa_07caf2fa41 (IsA emergence appearance) (STV 1.0 0.9091)) +(: cnet_isa_578157d1c7 (IsA emergence beginning) (STV 1.0 0.9091)) +(: cnet_isa_283c31c86d (IsA emergency crisis) (STV 1.0 0.9091)) +(: cnet_isa_f13c4c2c23 (IsA emergency temporary_state) (STV 1.0 0.9091)) +(: cnet_isa_fcc6b32c83 (IsA emergency_medicine medicine) (STV 1.0 0.9091)) +(: cnet_isa_e3e2d4f15a (IsA emergency_procedure procedure) (STV 1.0 0.9091)) +(: cnet_isa_6cc30a1ca6 (IsA emergency_room hospital_room) (STV 1.0 0.9091)) +(: cnet_isa_ff9044451b (IsA emergent_evolution evolution) (STV 1.0 0.9091)) +(: cnet_isa_eef5dbda65 (IsA emeritus retiree) (STV 1.0 0.9091)) +(: cnet_isa_c6ea2198d2 (IsA emery mineral) (STV 1.0 0.9091)) +(: cnet_isa_2d84f36ce8 (IsA emery_cloth abrasive) (STV 1.0 0.9091)) +(: cnet_isa_1b7b579fe0 (IsA emery_paper abrasive) (STV 1.0 0.9091)) +(: cnet_isa_7baf5b89cf (IsA emery_stone rock) (STV 1.0 0.9091)) +(: cnet_isa_72bc1c9bcb (IsA emesis_basin basin) (STV 1.0 0.9091)) +(: cnet_isa_aa2d747fae (IsA emetic remedy) (STV 1.0 0.9091)) +(: cnet_isa_b271f3fa08 (IsA emigrant migrant) (STV 1.0 0.9091)) +(: cnet_isa_b7cee39e09 (IsA emigration migration) (STV 1.0 0.9091)) +(: cnet_isa_9d64ffe613 (IsA emile_coue psychotherapist) (STV 1.0 0.9091)) +(: cnet_isa_dcbdf53adf (IsA emilia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_dfec0eb35f (IsA eminence high_status) (STV 1.0 0.9091)) +(: cnet_isa_e3bde7900e (IsA eminence_grise important_person) (STV 1.0 0.9091)) +(: cnet_isa_08b285d70a (IsA eminent_domain legal_right) (STV 1.0 0.9091)) +(: cnet_isa_fabfbb97a1 (IsA emir ruler) (STV 1.0 0.9091)) +(: cnet_isa_7f25063cc0 (IsA emirate position) (STV 1.0 0.9091)) +(: cnet_isa_291afb28c7 (IsA emirate domain) (STV 1.0 0.9091)) +(: cnet_isa_eae116c060 (IsA emissary representative) (STV 1.0 0.9091)) +(: cnet_isa_010420f697 (IsA emissary_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_2877b78e4a (IsA emission egress) (STV 1.0 0.9091)) +(: cnet_isa_1841fa1fc9 (IsA emission flow) (STV 1.0 0.9091)) +(: cnet_isa_c0ad3bc2c5 (IsA emission release) (STV 1.0 0.9091)) +(: cnet_isa_5b2a8f8219 (IsA emission_spectrum spectrum) (STV 1.0 0.9091)) +(: cnet_isa_398d6606c7 (IsA emitter electrode) (STV 1.0 0.9091)) +(: cnet_isa_aaef2420de (IsA emmanthe asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_945c0e7d29 (IsA emmenagogue agent) (STV 1.0 0.9091)) +(: cnet_isa_cb5d07b1ba (IsA emmenthal swiss_cheese) (STV 1.0 0.9091)) +(: cnet_isa_e19d2a28e4 (IsA emmer wheat) (STV 1.0 0.9091)) +(: cnet_isa_7baa3b7a20 (IsA emmetropia physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_21197efab7 (IsA emmy award) (STV 1.0 0.9091)) +(: cnet_isa_1d7e2d4719 (IsA emolument compensation) (STV 1.0 0.9091)) +(: cnet_isa_48eb7d5d57 (IsA emoticon facial_expression) (STV 1.0 0.9091)) +(: cnet_isa_f3d4ed03ee (IsA emotion feeling) (STV 1.0 0.9091)) +(: cnet_isa_e24dc7b97a (IsA emotional_arousal arousal) (STV 1.0 0.9091)) +(: cnet_isa_b1b2d04126 (IsA emotional_person person) (STV 1.0 0.9091)) +(: cnet_isa_6bd1cd778d (IsA emotional_state emotion) (STV 1.0 0.9091)) +(: cnet_isa_0b7941afba (IsA emotionality trait) (STV 1.0 0.9091)) +(: cnet_isa_38f41fd24d (IsA emotionlessness apathy) (STV 1.0 0.9091)) +(: cnet_isa_bd52e7f599 (IsA empathy sympathy) (STV 1.0 0.9091)) +(: cnet_isa_b777f451f6 (IsA emperor monarch) (STV 1.0 0.9091)) +(: cnet_isa_e309ca38fa (IsA emperor saturniid) (STV 1.0 0.9091)) +(: cnet_isa_b0277ce628 (IsA emperor vinifera_grape) (STV 1.0 0.9091)) +(: cnet_isa_575ef986b1 (IsA emperor sovereign) (STV 1.0 0.9091)) +(: cnet_isa_3bda82150a (IsA emperor_butterfly nymphalid) (STV 1.0 0.9091)) +(: cnet_isa_dbb555a3d4 (IsA emperor_of_rome emperor) (STV 1.0 0.9091)) +(: cnet_isa_412acc57c5 (IsA emperor_penguin penguin) (STV 1.0 0.9091)) +(: cnet_isa_3f78c95796 (IsA empetraceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_30a766ee51 (IsA empetrum dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8e86f014ea (IsA emphasis rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_39b4ac8762 (IsA emphasis importance) (STV 1.0 0.9091)) +(: cnet_isa_863170d3b8 (IsA emphasizing action) (STV 1.0 0.9091)) +(: cnet_isa_911a651d7f (IsA emphysema respiratory_disease) (STV 1.0 0.9091)) +(: cnet_isa_07bf05b560 (IsA empire eating_apple) (STV 1.0 0.9091)) +(: cnet_isa_999928ba66 (IsA empire government) (STV 1.0 0.9091)) +(: cnet_isa_635c506f4d (IsA empire monarchy) (STV 1.0 0.9091)) +(: cnet_isa_a1b9d5bd48 (IsA empire domain) (STV 1.0 0.9091)) +(: cnet_isa_ba0d4e597e (IsA empire_state_building in_new_york) (STV 1.0 0.9339)) +(: cnet_isa_5d4c9488fa (IsA empirical_formula formula) (STV 1.0 0.9091)) +(: cnet_isa_aa533c2225 (IsA empirical_research inquiry) (STV 1.0 0.9091)) +(: cnet_isa_e69cf0c365 (IsA empiricism investigation) (STV 1.0 0.9091)) +(: cnet_isa_04c00639f6 (IsA empiricism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_a07456d15d (IsA empiricist philosopher) (STV 1.0 0.9091)) +(: cnet_isa_81b450cead (IsA emplacement military_installation) (STV 1.0 0.9091)) +(: cnet_isa_175cf43993 (IsA employable worker) (STV 1.0 0.9091)) +(: cnet_isa_a806edf539 (IsA employee worker) (STV 1.0 0.9091)) +(: cnet_isa_c6329d4b8d (IsA employee_owned_enterprise commercial_enterprise) (STV 1.0 0.9091)) +(: cnet_isa_7d523830e2 (IsA employee_ownership ownership) (STV 1.0 0.9091)) +(: cnet_isa_d26a1876e8 (IsA employee_saving_plan plan) (STV 1.0 0.9091)) +(: cnet_isa_571797dff1 (IsA employee_stock_ownership_plan stock_purchase_plan) (STV 1.0 0.9091)) +(: cnet_isa_670fd778ef (IsA employee_turnover ratio) (STV 1.0 0.9091)) +(: cnet_isa_123efa5180 (IsA employer leader) (STV 1.0 0.9091)) +(: cnet_isa_1bd9b3b89a (IsA employment action) (STV 1.0 0.9091)) +(: cnet_isa_c8340d6323 (IsA employment occupation) (STV 1.0 0.9091)) +(: cnet_isa_1fa2099399 (IsA employment state) (STV 1.0 0.9091)) +(: cnet_isa_68523cf0e5 (IsA employment_agency agency) (STV 1.0 0.9091)) +(: cnet_isa_db6e9ccfed (IsA employment_agent agent) (STV 1.0 0.9091)) +(: cnet_isa_cfda1b2efc (IsA employment_contract contract) (STV 1.0 0.9091)) +(: cnet_isa_596d1ba329 (IsA empress emperor) (STV 1.0 0.9091)) +(: cnet_isa_c313f6a0d0 (IsA emptiness condition) (STV 1.0 0.9091)) +(: cnet_isa_9f458079b2 (IsA emptiness hunger) (STV 1.0 0.9091)) +(: cnet_isa_dd90400547 (IsA empty container) (STV 1.0 0.9091)) +(: cnet_isa_033232030c (IsA empty_nester parent) (STV 1.0 0.9091)) +(: cnet_isa_b031366f08 (IsA emptying removal) (STV 1.0 0.9091)) +(: cnet_isa_70e2436225 (IsA empyema inflammatory_disease) (STV 1.0 0.9091)) +(: cnet_isa_97bb3ee002 (IsA emu flightless_bird) (STV 1.0 0.9339)) +(: cnet_isa_0ec3e1e0f7 (IsA emu ratite) (STV 1.0 0.9091)) +(: cnet_isa_82af984849 (IsA emulation imitation) (STV 1.0 0.9091)) +(: cnet_isa_88be07c3c7 (IsA emulation technique) (STV 1.0 0.9091)) +(: cnet_isa_f59f8b08e1 (IsA emulation ambition) (STV 1.0 0.9091)) +(: cnet_isa_38c3c6274e (IsA emulsifier wetting_agent) (STV 1.0 0.9091)) +(: cnet_isa_9ca98e191f (IsA emulsion coating) (STV 1.0 0.9091)) +(: cnet_isa_9877795620 (IsA emulsion colloid) (STV 1.0 0.9091)) +(: cnet_isa_d4a8dcf4d5 (IsA emydidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_a6c21ecdb9 (IsA en linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_419129fc15 (IsA en_passant capture) (STV 1.0 0.9091)) +(: cnet_isa_1c9e43a850 (IsA enabling_act legislative_act) (STV 1.0 0.9091)) +(: cnet_isa_c1d7c4aef9 (IsA enabling_legislation legislation) (STV 1.0 0.9091)) +(: cnet_isa_24c831859b (IsA enactment legislation) (STV 1.0 0.9091)) +(: cnet_isa_12bcb28087 (IsA enallage rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_a0a9993bd1 (IsA enamel coating) (STV 1.0 0.9091)) +(: cnet_isa_acc3920ff3 (IsA enamel paint) (STV 1.0 0.9091)) +(: cnet_isa_99ada80c60 (IsA enamel solid_body_substance) (STV 1.0 0.9091)) +(: cnet_isa_361bc202b3 (IsA enamel compound) (STV 1.0 0.9091)) +(: cnet_isa_90a12eabca (IsA enamelware cooking_utensil) (STV 1.0 0.9091)) +(: cnet_isa_9a1e5b01f4 (IsA enamine amine) (STV 1.0 0.9091)) +(: cnet_isa_e129638cdf (IsA enanthem eruption) (STV 1.0 0.9091)) +(: cnet_isa_af880bd47b (IsA enantiomorph compound) (STV 1.0 0.9091)) +(: cnet_isa_be8d6cee15 (IsA enantiomorphism opposition) (STV 1.0 0.9091)) +(: cnet_isa_7e7bbf211b (IsA enate relative) (STV 1.0 0.9091)) +(: cnet_isa_eb5ffb9fe4 (IsA encapsulation process) (STV 1.0 0.9091)) +(: cnet_isa_7f547ea52f (IsA encapsulation condition) (STV 1.0 0.9091)) +(: cnet_isa_450a9440a4 (IsA encasement enclosure) (STV 1.0 0.9091)) +(: cnet_isa_a415c7fb70 (IsA encaustic paint) (STV 1.0 0.9091)) +(: cnet_isa_7e48a096ce (IsA encelia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1b701051db (IsA enceliopsis asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_289d3620b2 (IsA encephalarto cycad) (STV 1.0 0.9091)) +(: cnet_isa_690369f549 (IsA encephalitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_3bdf11cbd8 (IsA encephalocele birth_defect) (STV 1.0 0.9091)) +(: cnet_isa_1b60b14519 (IsA encephalogram roentgenogram) (STV 1.0 0.9091)) +(: cnet_isa_9d006ca4bf (IsA encephalography roentgenography) (STV 1.0 0.9091)) +(: cnet_isa_cc7a35c111 (IsA encephalomyelitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_e31aa0e71f (IsA enchanter_s_nightshade evening_primrose) (STV 1.0 0.9091)) +(: cnet_isa_ba70bcfa32 (IsA enchanter sorcerer) (STV 1.0 0.9091)) +(: cnet_isa_0cb1a95605 (IsA enchantment sorcery) (STV 1.0 0.9091)) +(: cnet_isa_2a79f3fc88 (IsA enchantment psychological_state) (STV 1.0 0.9091)) +(: cnet_isa_80018b4a49 (IsA enchantress occultist) (STV 1.0 0.9091)) +(: cnet_isa_ee6b750a70 (IsA enchantress woman) (STV 1.0 0.9091)) +(: cnet_isa_9a2c250e95 (IsA enchilada dish) (STV 1.0 0.9091)) +(: cnet_isa_268e2940a4 (IsA enchondroma benign_tumor) (STV 1.0 0.9091)) +(: cnet_isa_6874c5deb1 (IsA enclave district) (STV 1.0 0.9091)) +(: cnet_isa_0bb68e8e34 (IsA enclitic clitic) (STV 1.0 0.9091)) +(: cnet_isa_46f4243d20 (IsA enclosure insertion) (STV 1.0 0.9091)) +(: cnet_isa_74a5832625 (IsA enclosure area) (STV 1.0 0.9091)) +(: cnet_isa_382daada3a (IsA enclosure document) (STV 1.0 0.9091)) +(: cnet_isa_7daac9a4af (IsA enclosure space) (STV 1.0 0.9091)) +(: cnet_isa_dba45c3855 (IsA encoding cryptography) (STV 1.0 0.9091)) +(: cnet_isa_6a4c9235d0 (IsA encolure mane) (STV 1.0 0.9091)) +(: cnet_isa_250a49952e (IsA encomium praise) (STV 1.0 0.9091)) +(: cnet_isa_5b76e0221c (IsA encompassment inclusion) (STV 1.0 0.9091)) +(: cnet_isa_a4e74d843b (IsA encopresis mental_disorder) (STV 1.0 0.9091)) +(: cnet_isa_068b19ded4 (IsA encore performance) (STV 1.0 0.9091)) +(: cnet_isa_c8a924542f (IsA encounter joining) (STV 1.0 0.9091)) +(: cnet_isa_0f68d5c920 (IsA encounter_group psychotherapy_group) (STV 1.0 0.9091)) +(: cnet_isa_5ba13fd966 (IsA encouragement approval) (STV 1.0 0.9091)) +(: cnet_isa_4e5767d20f (IsA encouragement hope) (STV 1.0 0.9091)) +(: cnet_isa_35f8aca150 (IsA encumbrance charge) (STV 1.0 0.9091)) +(: cnet_isa_13cb02e8a9 (IsA encyclia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1962807df1 (IsA encyclical letter) (STV 1.0 0.9091)) +(: cnet_isa_71c6aa5353 (IsA encyclopaedist encyclopedist) (STV 1.0 0.9091)) +(: cnet_isa_6988e86397 (IsA encyclopedia reference_book) (STV 1.0 0.9091)) +(: cnet_isa_8270f000e7 (IsA encyclopedist writer) (STV 1.0 0.9091)) +(: cnet_isa_e68ca78685 (IsA end contribution) (STV 1.0 0.9091)) +(: cnet_isa_8b0cc682c1 (IsA end lineman) (STV 1.0 0.9091)) +(: cnet_isa_95e9ffef3e (IsA end piece_of_cloth) (STV 1.0 0.9091)) +(: cnet_isa_c9e962eb62 (IsA end part) (STV 1.0 0.9091)) +(: cnet_isa_ee063777b6 (IsA end ending) (STV 1.0 0.9091)) +(: cnet_isa_e18f39cef4 (IsA end boundary) (STV 1.0 0.9091)) +(: cnet_isa_e817059e59 (IsA end extremity) (STV 1.0 0.9091)) +(: cnet_isa_24315bb1b1 (IsA end surface) (STV 1.0 0.9091)) +(: cnet_isa_7a55ca8a7c (IsA end topographic_point) (STV 1.0 0.9091)) +(: cnet_isa_06ad2268e8 (IsA end state) (STV 1.0 0.9091)) +(: cnet_isa_98b27f224a (IsA end point) (STV 1.0 0.9091)) +(: cnet_isa_77dbc5edda (IsA end_all goal) (STV 1.0 0.9091)) +(: cnet_isa_2b2aa509e6 (IsA end_man acquaintance) (STV 1.0 0.9091)) +(: cnet_isa_e6a5ab3a67 (IsA end_man minstrel) (STV 1.0 0.9091)) +(: cnet_isa_cadd7a2472 (IsA end_organ organ) (STV 1.0 0.9091)) +(: cnet_isa_ca9893362f (IsA end_plate end_organ) (STV 1.0 0.9091)) +(: cnet_isa_a96d93f864 (IsA end_point end) (STV 1.0 0.9091)) +(: cnet_isa_c8332fa101 (IsA end_product product) (STV 1.0 0.9091)) +(: cnet_isa_c7fb4c0e00 (IsA end_run run) (STV 1.0 0.9091)) +(: cnet_isa_b49580e13d (IsA end_user user) (STV 1.0 0.9091)) +(: cnet_isa_1772156160 (IsA endameba ameba) (STV 1.0 0.9091)) +(: cnet_isa_988e144d7b (IsA endamoeba protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_e5563acd1e (IsA endamoeba_histolytica endameba) (STV 1.0 0.9091)) +(: cnet_isa_b35d13fa0d (IsA endamoebidae family) (STV 1.0 0.9091)) +(: cnet_isa_031f861a5e (IsA endangered_specy specy) (STV 1.0 0.9091)) +(: cnet_isa_8c8b8ced44 (IsA endarterectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_2ecc55e660 (IsA endarteritis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_75c3fe3f5d (IsA endearment kindness) (STV 1.0 0.9091)) +(: cnet_isa_46af7edfc2 (IsA endemic plant) (STV 1.0 0.9091)) +(: cnet_isa_1cb91c2c94 (IsA endemic disease) (STV 1.0 0.9091)) +(: cnet_isa_172ecb845b (IsA endgame end) (STV 1.0 0.9091)) +(: cnet_isa_81a72e3e26 (IsA ending morpheme) (STV 1.0 0.9091)) +(: cnet_isa_5ebb66ab32 (IsA ending happening) (STV 1.0 0.9091)) +(: cnet_isa_71bcd81bad (IsA endive herb) (STV 1.0 0.9091)) +(: cnet_isa_e1e7dd440d (IsA endlessness duration) (STV 1.0 0.9091)) +(: cnet_isa_89afe076a5 (IsA endocarditis carditis) (STV 1.0 0.9091)) +(: cnet_isa_7e225973d8 (IsA endocardium serous_membrane) (STV 1.0 0.9091)) +(: cnet_isa_cce58f6ef2 (IsA endocervicitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_666eba8280 (IsA endocranium membrane) (STV 1.0 0.9091)) +(: cnet_isa_3c0a0d1193 (IsA endocrine_gland gland) (STV 1.0 0.9091)) +(: cnet_isa_591634ddc5 (IsA endocrine_system system) (STV 1.0 0.9091)) +(: cnet_isa_a7774649ad (IsA endocrinologist specialist) (STV 1.0 0.9091)) +(: cnet_isa_3ddd20b21a (IsA endocrinology medicine) (STV 1.0 0.9091)) +(: cnet_isa_a7d76828e8 (IsA endoderm germ_layer) (STV 1.0 0.9091)) +(: cnet_isa_254997911d (IsA endodontic dentistry) (STV 1.0 0.9091)) +(: cnet_isa_837841b175 (IsA endodontist dentist) (STV 1.0 0.9091)) +(: cnet_isa_4b84f5137e (IsA endoergic_reaction nuclear_reaction) (STV 1.0 0.9091)) +(: cnet_isa_82b766b0e3 (IsA endogamy marriage) (STV 1.0 0.9091)) +(: cnet_isa_62d699385d (IsA endogenous_depression depressive_disorder) (STV 1.0 0.9091)) +(: cnet_isa_789b663351 (IsA endogeny geological_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_ccbab3fd5d (IsA endolymph liquid_body_substance) (STV 1.0 0.9091)) +(: cnet_isa_6c8977ea41 (IsA endometrial_carcinoma carcinoma) (STV 1.0 0.9091)) +(: cnet_isa_c255d016c6 (IsA endometriosis pathology) (STV 1.0 0.9091)) +(: cnet_isa_875e40ae9e (IsA endometrium mucous_membrane) (STV 1.0 0.9091)) +(: cnet_isa_44df6d121d (IsA endomorph person) (STV 1.0 0.9091)) +(: cnet_isa_5175aabb77 (IsA endomorphy body_type) (STV 1.0 0.9091)) +(: cnet_isa_eefc9169d2 (IsA endomycetale fungus_order) (STV 1.0 0.9091)) +(: cnet_isa_9511c63741 (IsA endoneurium connective_tissue) (STV 1.0 0.9091)) +(: cnet_isa_0ef35ea61e (IsA endonuclease nuclease) (STV 1.0 0.9091)) +(: cnet_isa_9629c142dc (IsA endoparasite parasite) (STV 1.0 0.9091)) +(: cnet_isa_e67c5da250 (IsA endoplasm cytoplasm) (STV 1.0 0.9091)) +(: cnet_isa_a74ab65c92 (IsA endorphin neurochemical) (STV 1.0 0.9091)) +(: cnet_isa_a59d02a0e6 (IsA endorphin peptide) (STV 1.0 0.9091)) +(: cnet_isa_681e7e7872 (IsA endorsement support) (STV 1.0 0.9091)) +(: cnet_isa_ddd16b9255 (IsA endorsement promotion) (STV 1.0 0.9091)) +(: cnet_isa_1238a34f28 (IsA endorsement signature) (STV 1.0 0.9091)) +(: cnet_isa_0fe5610114 (IsA endorser signer) (STV 1.0 0.9091)) +(: cnet_isa_5e828c3440 (IsA endoscope medical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_b375a5637c (IsA endoscopy examination) (STV 1.0 0.9091)) +(: cnet_isa_bf14da6f02 (IsA endoskeleton skeletal_system) (STV 1.0 0.9091)) +(: cnet_isa_a41cd143b2 (IsA endosperm reproductive_structure) (STV 1.0 0.9091)) +(: cnet_isa_5e9ce23bd5 (IsA endospore spore) (STV 1.0 0.9091)) +(: cnet_isa_12123b8309 (IsA endospore_forming_bacteria eubacteria) (STV 1.0 0.9091)) +(: cnet_isa_a6bff6a7ab (IsA endosteum membrane) (STV 1.0 0.9091)) +(: cnet_isa_0692bfcbaf (IsA endothelium epithelium) (STV 1.0 0.9091)) +(: cnet_isa_25ace49801 (IsA endothermic_reaction chemical_reaction) (STV 1.0 0.9091)) +(: cnet_isa_6164ab24bc (IsA endotoxin toxin) (STV 1.0 0.9091)) +(: cnet_isa_42f7c9a792 (IsA endotracheal_tube catheter) (STV 1.0 0.9091)) +(: cnet_isa_20b64edd61 (IsA endowment giving) (STV 1.0 0.9091)) +(: cnet_isa_d35e78c449 (IsA endowment natural_ability) (STV 1.0 0.9091)) +(: cnet_isa_4b5a016f75 (IsA endowment capital) (STV 1.0 0.9091)) +(: cnet_isa_2e0c3b5dbe (IsA endowment_insurance life_insurance) (STV 1.0 0.9091)) +(: cnet_isa_5d08cd8adc (IsA endurance strength) (STV 1.0 0.9091)) +(: cnet_isa_9d115ffb19 (IsA endurance_riding riding) (STV 1.0 0.9091)) +(: cnet_isa_37af5c3f81 (IsA enema irrigation) (STV 1.0 0.9091)) +(: cnet_isa_fb5223c165 (IsA enemy people) (STV 1.0 0.9091)) +(: cnet_isa_063432833a (IsA enemy military_unit) (STV 1.0 0.9091)) +(: cnet_isa_ab074116f1 (IsA enemy adversary) (STV 1.0 0.9091)) +(: cnet_isa_1e6de07677 (IsA energid body_part) (STV 1.0 0.9091)) +(: cnet_isa_00e36679c3 (IsA energizer device) (STV 1.0 0.9091)) +(: cnet_isa_97146626da (IsA energizer actor) (STV 1.0 0.9091)) +(: cnet_isa_e2090eb547 (IsA energizing activity) (STV 1.0 0.9091)) +(: cnet_isa_0983fdbd7c (IsA energy drive) (STV 1.0 0.9091)) +(: cnet_isa_4ec95491ca (IsA energy force) (STV 1.0 0.9091)) +(: cnet_isa_d3415bb753 (IsA energy liveliness) (STV 1.0 0.9091)) +(: cnet_isa_77c88a2346 (IsA energy physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_5081bfd253 (IsA energy good_health) (STV 1.0 0.9091)) +(: cnet_isa_b21917b108 (IsA energy_level energy) (STV 1.0 0.9091)) +(: cnet_isa_741c6abd97 (IsA energy_secretary secretary) (STV 1.0 0.9091)) +(: cnet_isa_576a26fb4a (IsA enervation ablation) (STV 1.0 0.9091)) +(: cnet_isa_51ac767ba7 (IsA enervation weakness) (STV 1.0 0.9091)) +(: cnet_isa_1129c9a011 (IsA enet samoyedic) (STV 1.0 0.9091)) +(: cnet_isa_6a7d22f9a4 (IsA enfant_terrible nonconformist) (STV 1.0 0.9091)) +(: cnet_isa_97d172e5e4 (IsA enfeoffment deed) (STV 1.0 0.9091)) +(: cnet_isa_e7c5cc7de1 (IsA enfilade gunfire) (STV 1.0 0.9091)) +(: cnet_isa_73b512c3e0 (IsA enforcement social_control) (STV 1.0 0.9091)) +(: cnet_isa_29b96f36e5 (IsA enfranchisement freedom) (STV 1.0 0.9091)) +(: cnet_isa_266191a567 (IsA engagement employment) (STV 1.0 0.9091)) +(: cnet_isa_6721ca4f5c (IsA engagement group_action) (STV 1.0 0.9091)) +(: cnet_isa_2ad1a3dd1e (IsA engagement contact) (STV 1.0 0.9091)) +(: cnet_isa_8e9acb424f (IsA engagement_ring ring) (STV 1.0 0.9091)) +(: cnet_isa_ef9ee151c5 (IsA engelmann_spruce spruce) (STV 1.0 0.9091)) +(: cnet_isa_92c7b12354 (IsA engelmannia wildflower) (STV 1.0 0.9091)) +(: cnet_isa_31cf444787 (IsA engine instrument) (STV 1.0 0.9091)) +(: cnet_isa_8df7160c04 (IsA engine motor) (STV 1.0 0.9091)) +(: cnet_isa_a5ff73ed59 (IsA engine causal_agent) (STV 1.0 0.9091)) +(: cnet_isa_c814746497 (IsA engine_block cast) (STV 1.0 0.9091)) +(: cnet_isa_cdfdb0e476 (IsA engine_failure breakdown) (STV 1.0 0.9091)) +(: cnet_isa_a3c683535e (IsA engineer_s_chain chain) (STV 1.0 0.9091)) +(: cnet_isa_5b2c1f52a3 (IsA engineer operator) (STV 1.0 0.9091)) +(: cnet_isa_bbf798b24e (IsA engineer person) (STV 1.0 0.9091)) +(: cnet_isa_e85de7b1a2 (IsA engineering discipline) (STV 1.0 0.9091)) +(: cnet_isa_a54c0037e9 (IsA engineering room) (STV 1.0 0.9091)) +(: cnet_isa_a543288c6e (IsA enginery machinery) (STV 1.0 0.9091)) +(: cnet_isa_314deb497d (IsA england country) (STV 1.0 0.9339)) +(: cnet_isa_a2ed1e6bcf (IsA england place_name) (STV 1.0 0.9091)) +(: cnet_isa_ace2783a87 (IsA english human_language) (STV 1.0 0.9091)) +(: cnet_isa_5d6891f825 (IsA english language) (STV 1.0 0.9608)) +(: cnet_isa_aefbf0f00c (IsA english humanistic_discipline) (STV 1.0 0.9091)) +(: cnet_isa_6bfa54540f (IsA english west_germanic) (STV 1.0 0.9091)) +(: cnet_isa_afd79cf64f (IsA english spin) (STV 1.0 0.9091)) +(: cnet_isa_2bb2caf9d2 (IsA english_concertina concertina) (STV 1.0 0.9091)) +(: cnet_isa_3f2137d0b9 (IsA english_department academic_department) (STV 1.0 0.9091)) +(: cnet_isa_1ee7c5309b (IsA english_elm elm) (STV 1.0 0.9091)) +(: cnet_isa_394e60f1fd (IsA english_foxhound foxhound) (STV 1.0 0.9091)) +(: cnet_isa_900e9f04f8 (IsA english_hawthorn hawthorn) (STV 1.0 0.9091)) +(: cnet_isa_4ab8a6ca69 (IsA english_horn double_reed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_f98edec74d (IsA english_iris iris) (STV 1.0 0.9091)) +(: cnet_isa_0489d17e89 (IsA english_lady_crab swimming_crab) (STV 1.0 0.9091)) +(: cnet_isa_79666663bd (IsA english_lavender lavender) (STV 1.0 0.9091)) +(: cnet_isa_cc95530787 (IsA english_muffin bread) (STV 1.0 0.9091)) +(: cnet_isa_549c13ca77 (IsA english_people nation) (STV 1.0 0.9091)) +(: cnet_isa_a6aa3a0d5b (IsA english_person brit) (STV 1.0 0.9091)) +(: cnet_isa_8346817c1f (IsA english_plantain plantain) (STV 1.0 0.9091)) +(: cnet_isa_1f5163d933 (IsA english_primrose primrose) (STV 1.0 0.9091)) +(: cnet_isa_b533200f0b (IsA english_professor teacher) (STV 1.0 0.9091)) +(: cnet_isa_41e6568143 (IsA english_saddle saddle) (STV 1.0 0.9091)) +(: cnet_isa_2f3040c403 (IsA english_setter setter) (STV 1.0 0.9091)) +(: cnet_isa_b245334d86 (IsA english_sole sole) (STV 1.0 0.9091)) +(: cnet_isa_bd9acc2645 (IsA english_sparrow sparrow) (STV 1.0 0.9091)) +(: cnet_isa_613db176e3 (IsA english_springer springer_spaniel) (STV 1.0 0.9091)) +(: cnet_isa_df525655ce (IsA english_toy_spaniel toy_spaniel) (STV 1.0 0.9091)) +(: cnet_isa_56b142a7f4 (IsA english_walnut walnut) (STV 1.0 0.9091)) +(: cnet_isa_de7203b1b6 (IsA englishman english_person) (STV 1.0 0.9091)) +(: cnet_isa_0faeb7168e (IsA englishwoman english_person) (STV 1.0 0.9091)) +(: cnet_isa_da1d8aca90 (IsA engorgement eating) (STV 1.0 0.9091)) +(: cnet_isa_d7158d9e03 (IsA engorgement hyperemia) (STV 1.0 0.9091)) +(: cnet_isa_d53329c7b9 (IsA engram memory) (STV 1.0 0.9091)) +(: cnet_isa_c576e24b2f (IsA engraulidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_5f1843d73e (IsA engraulis fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_fbebce12cc (IsA engraver printmaker) (STV 1.0 0.9091)) +(: cnet_isa_0d114a17b1 (IsA engraver skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_6cda96b985 (IsA engraving printmaking) (STV 1.0 0.9091)) +(: cnet_isa_6e39b6b548 (IsA engraving plate) (STV 1.0 0.9091)) +(: cnet_isa_04eba66906 (IsA engraving print) (STV 1.0 0.9091)) +(: cnet_isa_81c322a94f (IsA enhancement improvement) (STV 1.0 0.9091)) +(: cnet_isa_c736cdcd3b (IsA enhydra mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_517c143f02 (IsA enigma_canon canon) (STV 1.0 0.9091)) +(: cnet_isa_f299fd72af (IsA enjambment prosody) (STV 1.0 0.9091)) +(: cnet_isa_32055f1f0d (IsA enjoyableness pleasantness) (STV 1.0 0.9091)) +(: cnet_isa_8fecf3c12b (IsA enjoyer person) (STV 1.0 0.9091)) +(: cnet_isa_414991d8af (IsA enjoyment activity) (STV 1.0 0.9091)) +(: cnet_isa_77f01e9918 (IsA enjoyment pleasure) (STV 1.0 0.9091)) +(: cnet_isa_caca852671 (IsA enkephalin endorphin) (STV 1.0 0.9091)) +(: cnet_isa_b241299212 (IsA enlargement picture) (STV 1.0 0.9091)) +(: cnet_isa_729c8bbdd2 (IsA enlargement state) (STV 1.0 0.9091)) +(: cnet_isa_ffe5885ab1 (IsA enlarger photographic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_68b6032369 (IsA enlightenment education) (STV 1.0 0.9091)) +(: cnet_isa_1050ce95f9 (IsA enlightenment reform_movement) (STV 1.0 0.9091)) +(: cnet_isa_69ea4d2c9d (IsA enlisted_man enlisted_person) (STV 1.0 0.9091)) +(: cnet_isa_769cd7c048 (IsA enlisted_person serviceman) (STV 1.0 0.9091)) +(: cnet_isa_9d0ac93601 (IsA enlisted_woman enlisted_person) (STV 1.0 0.9091)) +(: cnet_isa_498ea38587 (IsA enlistment commitment) (STV 1.0 0.9091)) +(: cnet_isa_ff70c0f869 (IsA enlistment time_period) (STV 1.0 0.9091)) +(: cnet_isa_f39f38d2d1 (IsA ennoblement promotion) (STV 1.0 0.9091)) +(: cnet_isa_2e5d9d523c (IsA ennoblement condition) (STV 1.0 0.9091)) +(: cnet_isa_5820055ee4 (IsA ennui boredom) (STV 1.0 0.9091)) +(: cnet_isa_433aa0ea0c (IsA enol organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_c3ef0dc29b (IsA enologist specialist) (STV 1.0 0.9091)) +(: cnet_isa_f0f980aa83 (IsA enology art) (STV 1.0 0.9091)) +(: cnet_isa_990c88f898 (IsA enophile appreciator) (STV 1.0 0.9091)) +(: cnet_isa_3820bb94fa (IsA enormity atrocity) (STV 1.0 0.9091)) +(: cnet_isa_f21b526d48 (IsA enormity enormousness) (STV 1.0 0.9091)) +(: cnet_isa_105511d59b (IsA enormity nefariousness) (STV 1.0 0.9091)) +(: cnet_isa_6fa9a2d9e3 (IsA enormousness largeness) (STV 1.0 0.9091)) +(: cnet_isa_7a05af8254 (IsA enosis union) (STV 1.0 0.9091)) +(: cnet_isa_0b081e0308 (IsA enough relative_quantity) (STV 1.0 0.9091)) +(: cnet_isa_1cc2f1693c (IsA enrichment improvement) (STV 1.0 0.9091)) +(: cnet_isa_398fdd8b70 (IsA enrichment gift) (STV 1.0 0.9091)) +(: cnet_isa_5ca4864711 (IsA enrollee person) (STV 1.0 0.9091)) +(: cnet_isa_14ad623164 (IsA ensemble collection) (STV 1.0 0.9091)) +(: cnet_isa_1ccde2f6c9 (IsA ensemble outfit) (STV 1.0 0.9091)) +(: cnet_isa_e4c08d84cc (IsA ensemble cast) (STV 1.0 0.9091)) +(: cnet_isa_e57371e5c9 (IsA ensemble musical_organization) (STV 1.0 0.9091)) +(: cnet_isa_6880b50b95 (IsA ensete monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_17d99075f3 (IsA ensiform_leaf simple_leaf) (STV 1.0 0.9091)) +(: cnet_isa_9ee8a398bd (IsA ensign color) (STV 1.0 0.9091)) +(: cnet_isa_1ad2d0c0a1 (IsA ensign commissioned_naval_officer) (STV 1.0 0.9091)) +(: cnet_isa_70810f26cd (IsA ensis mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_bdb04f87ac (IsA enslavement capture) (STV 1.0 0.9091)) +(: cnet_isa_bb7af99015 (IsA enslavement subjugation) (STV 1.0 0.9091)) +(: cnet_isa_8440d46b5f (IsA entablature structure) (STV 1.0 0.9091)) +(: cnet_isa_96efc0f34d (IsA entail change) (STV 1.0 0.9091)) +(: cnet_isa_a946a010be (IsA entail estate) (STV 1.0 0.9091)) +(: cnet_isa_75197ad61c (IsA entandrophragma rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6a83398c63 (IsA entasis convex_shape) (STV 1.0 0.9091)) +(: cnet_isa_939568192b (IsA entelea dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_dfa201be40 (IsA entelechy actuality) (STV 1.0 0.9091)) +(: cnet_isa_0b57a3da2d (IsA entellus langur) (STV 1.0 0.9091)) +(: cnet_isa_feb81ff64a (IsA entente agreement) (STV 1.0 0.9091)) +(: cnet_isa_28aa3c4edb (IsA entente alliance) (STV 1.0 0.9091)) +(: cnet_isa_22f014fdda (IsA enteric_bacteria eubacteria) (STV 1.0 0.9091)) +(: cnet_isa_a2d9da4126 (IsA enteric_coated_aspirin aspirin) (STV 1.0 0.9091)) +(: cnet_isa_9a8fd0ee82 (IsA enteritis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_7054e830d0 (IsA enterobacteriaceae bacteria_family) (STV 1.0 0.9091)) +(: cnet_isa_736d36bac9 (IsA enterobiasis infection) (STV 1.0 0.9091)) +(: cnet_isa_23f18f4afc (IsA enterobiasis infestation) (STV 1.0 0.9091)) +(: cnet_isa_a661bb50fe (IsA enterobius worm_genus) (STV 1.0 0.9091)) +(: cnet_isa_a425a2a343 (IsA enterokinase enzyme) (STV 1.0 0.9091)) +(: cnet_isa_52017c6ed0 (IsA enterolith calculus) (STV 1.0 0.9091)) +(: cnet_isa_179a8ff6f1 (IsA enterolithiasis lithiasis) (STV 1.0 0.9091)) +(: cnet_isa_dfaebdbcf6 (IsA enterolobium rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1c674230ee (IsA enteron alimentary_canal) (STV 1.0 0.9091)) +(: cnet_isa_04716fb500 (IsA enteropathy disease) (STV 1.0 0.9091)) +(: cnet_isa_a9e62b17d3 (IsA enteroptosis prolapse) (STV 1.0 0.9091)) +(: cnet_isa_91f2c89525 (IsA enterostenosis stenosis) (STV 1.0 0.9091)) +(: cnet_isa_bcc156e619 (IsA enterostomy operation) (STV 1.0 0.9091)) +(: cnet_isa_ac4ed09ddf (IsA enterotoxemia animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_b3649c89ef (IsA enterotoxin cytotoxin) (STV 1.0 0.9091)) +(: cnet_isa_060e6e5177 (IsA enterovirus picornavirus) (STV 1.0 0.9091)) +(: cnet_isa_689147b6a4 (IsA enterprise undertaking) (STV 1.0 0.9091)) +(: cnet_isa_eb79910156 (IsA enterprise drive) (STV 1.0 0.9091)) +(: cnet_isa_81bc4aa758 (IsA enterprise organization) (STV 1.0 0.9091)) +(: cnet_isa_1ff5b96f87 (IsA enterprise_zone city_district) (STV 1.0 0.9091)) +(: cnet_isa_921e1479b1 (IsA entertainer person) (STV 1.0 0.9091)) +(: cnet_isa_61e5141d1c (IsA entertainment diversion) (STV 1.0 0.9091)) +(: cnet_isa_04a6f3984a (IsA entertainment_center wall_unit) (STV 1.0 0.9091)) +(: cnet_isa_a07a78f3db (IsA entertainment_deduction business_deduction) (STV 1.0 0.9091)) +(: cnet_isa_131ad3f1d9 (IsA entertainment_industry industry) (STV 1.0 0.9091)) +(: cnet_isa_41cf789efc (IsA enthusiasm interest) (STV 1.0 0.9091)) +(: cnet_isa_25b3ad6a96 (IsA enthusiasm feeling) (STV 1.0 0.9091)) +(: cnet_isa_192ad02b14 (IsA enthusiast supporter) (STV 1.0 0.9091)) +(: cnet_isa_4ad49c7aa1 (IsA enticement influence) (STV 1.0 0.9091)) +(: cnet_isa_e1fd2fcbf6 (IsA entire_leaf leaf) (STV 1.0 0.9091)) +(: cnet_isa_0506247347 (IsA entirety completeness) (STV 1.0 0.9091)) +(: cnet_isa_8789d3a28b (IsA entitlement title) (STV 1.0 0.9091)) +(: cnet_isa_3756be998f (IsA entlebucher_sennenhund sennenhund) (STV 1.0 0.9091)) +(: cnet_isa_ab7375bb8d (IsA entoloma fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_f7305d9729 (IsA entoloma_aprile agaric) (STV 1.0 0.9091)) +(: cnet_isa_80e766792d (IsA entoloma_lividum agaric) (STV 1.0 0.9091)) +(: cnet_isa_075b167f79 (IsA entolomataceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_2d8f48b04d (IsA entomion craniometric_point) (STV 1.0 0.9091)) +(: cnet_isa_86de1d5d28 (IsA entomologist zoologist) (STV 1.0 0.9091)) +(: cnet_isa_46b3560e8f (IsA entomology zoology) (STV 1.0 0.9091)) +(: cnet_isa_6d87ace3ec (IsA entomophobia zoophobia) (STV 1.0 0.9091)) +(: cnet_isa_1e3441d2ed (IsA entomophthora fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_344d722466 (IsA entomophthoraceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_7c9504f331 (IsA entomophthorale fungus_order) (STV 1.0 0.9091)) +(: cnet_isa_6b010b0145 (IsA entomostraca class) (STV 1.0 0.9091)) +(: cnet_isa_0ab350c847 (IsA entopic_pregnancy pregnancy) (STV 1.0 0.9091)) +(: cnet_isa_bcafe1abf1 (IsA entoproct invertebrate) (STV 1.0 0.9091)) +(: cnet_isa_14a18be82c (IsA entoprocta phylum) (STV 1.0 0.9091)) +(: cnet_isa_c977993dc8 (IsA entr_acte interlude) (STV 1.0 0.9091)) +(: cnet_isa_1459e2cbf2 (IsA entrance arrival) (STV 1.0 0.9091)) +(: cnet_isa_6ff2f01358 (IsA entrance access) (STV 1.0 0.9091)) +(: cnet_isa_d1b2e66566 (IsA entrance change_of_location) (STV 1.0 0.9091)) +(: cnet_isa_f3dfa8c5c1 (IsA entrance_examination examination) (STV 1.0 0.9091)) +(: cnet_isa_1786bb839e (IsA entrance_fee fee) (STV 1.0 0.9091)) +(: cnet_isa_3b73a8eca3 (IsA entrancement delight) (STV 1.0 0.9091)) +(: cnet_isa_6ed26cfc86 (IsA entranceway location) (STV 1.0 0.9091)) +(: cnet_isa_98a671bde7 (IsA entrant commodity) (STV 1.0 0.9091)) +(: cnet_isa_d68b6693f7 (IsA entrant contestant) (STV 1.0 0.9091)) +(: cnet_isa_dd3654c041 (IsA entrant traveler) (STV 1.0 0.9091)) +(: cnet_isa_39744e541c (IsA entrapment defense) (STV 1.0 0.9091)) +(: cnet_isa_35092fd6d9 (IsA entreaty request) (STV 1.0 0.9091)) +(: cnet_isa_3393dbabef (IsA entrecote cut) (STV 1.0 0.9091)) +(: cnet_isa_381cd65c6c (IsA entree entrance) (STV 1.0 0.9091)) +(: cnet_isa_94e450eecb (IsA entree right) (STV 1.0 0.9091)) +(: cnet_isa_2d8851a95b (IsA entree course) (STV 1.0 0.9091)) +(: cnet_isa_204fe0c0ee (IsA entrenching_tool hand_shovel) (STV 1.0 0.9091)) +(: cnet_isa_4ae8ea61d4 (IsA entrenchment fortification) (STV 1.0 0.9091)) +(: cnet_isa_51411f1154 (IsA entrepot port) (STV 1.0 0.9091)) +(: cnet_isa_344748acda (IsA entrepreneur businessperson) (STV 1.0 0.9091)) +(: cnet_isa_50c9e3ecf8 (IsA entry written_record) (STV 1.0 0.9091)) +(: cnet_isa_bf789942d5 (IsA entry accounting) (STV 1.0 0.9091)) +(: cnet_isa_e6135368f8 (IsA enucleation operation) (STV 1.0 0.9091)) +(: cnet_isa_b49a3d1236 (IsA enuki semitic_deity) (STV 1.0 0.9091)) +(: cnet_isa_4c3c7fe8d7 (IsA enumeration list) (STV 1.0 0.9091)) +(: cnet_isa_513fcde977 (IsA enunciation articulation) (STV 1.0 0.9091)) +(: cnet_isa_469062b0ab (IsA enuresis incontinence) (STV 1.0 0.9091)) +(: cnet_isa_d3e58dbe91 (IsA envelope bag) (STV 1.0 0.9091)) +(: cnet_isa_3728a39621 (IsA envelope container) (STV 1.0 0.9091)) +(: cnet_isa_fda38e586d (IsA envelope wrapping) (STV 1.0 0.9091)) +(: cnet_isa_8ff83e2204 (IsA envelope operating_capability) (STV 1.0 0.9091)) +(: cnet_isa_b855cb17d7 (IsA envelope covering) (STV 1.0 0.9091)) +(: cnet_isa_534075584d (IsA envelope curve) (STV 1.0 0.9091)) +(: cnet_isa_3f4f63da2d (IsA environment geographical_area) (STV 1.0 0.9091)) +(: cnet_isa_f8fa05c485 (IsA environment situation) (STV 1.0 0.9091)) +(: cnet_isa_375c5986c5 (IsA environmental_condition condition) (STV 1.0 0.9091)) +(: cnet_isa_b3f072d58b (IsA environmental_protection_agency independent_agency) (STV 1.0 0.9091)) +(: cnet_isa_a72615f257 (IsA environmentalism preservation) (STV 1.0 0.9091)) +(: cnet_isa_a853e0a6e4 (IsA environmentalism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_6b946c6b6b (IsA environmentalist reformer) (STV 1.0 0.9091)) +(: cnet_isa_3143e61bd5 (IsA environ geographical_area) (STV 1.0 0.9091)) +(: cnet_isa_7d29d1fd9a (IsA envoy stanza) (STV 1.0 0.9091)) +(: cnet_isa_23ca514428 (IsA envoy diplomat) (STV 1.0 0.9091)) +(: cnet_isa_2a4374aaa9 (IsA envy mortal_sin) (STV 1.0 0.9091)) +(: cnet_isa_a5499d31df (IsA envy resentment) (STV 1.0 0.9091)) +(: cnet_isa_f142219c04 (IsA enzyme catalyst) (STV 1.0 0.9091)) +(: cnet_isa_cf14cc7600 (IsA enzyme protein) (STV 1.0 0.9091)) +(: cnet_isa_369b4a69a6 (IsA enzyme_linked_immunosorbent_serologic_assay assay) (STV 1.0 0.9091)) +(: cnet_isa_2cde987cbe (IsA enzymologist biochemist) (STV 1.0 0.9091)) +(: cnet_isa_416e0e20c3 (IsA enzymology biochemistry) (STV 1.0 0.9091)) +(: cnet_isa_3fe50729df (IsA eohippus horse) (STV 1.0 0.9091)) +(: cnet_isa_2a33bf24a8 (IsA eolian hellene) (STV 1.0 0.9091)) +(: cnet_isa_fc6803e3e1 (IsA eolith tool) (STV 1.0 0.9091)) +(: cnet_isa_125f90b838 (IsA eon spiritual_being) (STV 1.0 0.9091)) +(: cnet_isa_5fc3c6486c (IsA eon geological_time) (STV 1.0 0.9091)) +(: cnet_isa_a897844f0e (IsA eon long_time) (STV 1.0 0.9091)) +(: cnet_isa_0f367c12be (IsA eoraptor theropod) (STV 1.0 0.9091)) +(: cnet_isa_b753e25d4f (IsA eosin fluorescein) (STV 1.0 0.9091)) +(: cnet_isa_a2a51dbb6a (IsA eosinopenia symptom) (STV 1.0 0.9091)) +(: cnet_isa_920ff7ec25 (IsA eosinophil leukocyte) (STV 1.0 0.9091)) +(: cnet_isa_207a8c4ba1 (IsA eosinophilia symptom) (STV 1.0 0.9091)) +(: cnet_isa_d371532081 (IsA epacridaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_5f8ab5bfe4 (IsA epacris australian_heath) (STV 1.0 0.9091)) +(: cnet_isa_6a76a3477f (IsA epanalepsis repetition) (STV 1.0 0.9091)) +(: cnet_isa_7a04a13cef (IsA epanaphora repetition) (STV 1.0 0.9091)) +(: cnet_isa_36e4493485 (IsA epanodo recapitulation) (STV 1.0 0.9091)) +(: cnet_isa_6031444181 (IsA epanodo repetition) (STV 1.0 0.9091)) +(: cnet_isa_894758eb85 (IsA epanorthosis rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_8ddd69ef77 (IsA eparch bishop) (STV 1.0 0.9091)) +(: cnet_isa_28ab4624fa (IsA eparch governor) (STV 1.0 0.9091)) +(: cnet_isa_50fe53c1ce (IsA eparchy diocese) (STV 1.0 0.9091)) +(: cnet_isa_a641904ff8 (IsA eparchy state) (STV 1.0 0.9091)) +(: cnet_isa_4b55817b3b (IsA epaulet adornment) (STV 1.0 0.9091)) +(: cnet_isa_abfa915fb1 (IsA epauliere armor_plate) (STV 1.0 0.9091)) +(: cnet_isa_911e8edba3 (IsA epee fencing_sword) (STV 1.0 0.9091)) +(: cnet_isa_8d2aeb80b7 (IsA ependyma membrane) (STV 1.0 0.9091)) +(: cnet_isa_552b769385 (IsA epenthesis articulation) (STV 1.0 0.9091)) +(: cnet_isa_7ee3a50d50 (IsA epergne centerpiece) (STV 1.0 0.9091)) +(: cnet_isa_8a19031a21 (IsA ephah dry_unit) (STV 1.0 0.9091)) +(: cnet_isa_28454a9b62 (IsA ephedra shrub) (STV 1.0 0.9091)) +(: cnet_isa_da132b43f0 (IsA ephedraceae gymnosperm_family) (STV 1.0 0.9091)) +(: cnet_isa_e4c074b9d4 (IsA ephedrine alkaloid) (STV 1.0 0.9091)) +(: cnet_isa_6b1d089a7e (IsA ephedrine bronchodilator) (STV 1.0 0.9091)) +(: cnet_isa_a180ab2538 (IsA ephemera insect) (STV 1.0 0.9091)) +(: cnet_isa_f83ef10f22 (IsA ephemera time) (STV 1.0 0.9091)) +(: cnet_isa_12cc9d40ef (IsA ephemerality transience) (STV 1.0 0.9091)) +(: cnet_isa_af7d8850dd (IsA ephemerid insect) (STV 1.0 0.9091)) +(: cnet_isa_8dc595a5f5 (IsA ephemeridae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_94be3ff883 (IsA ephemeris annual) (STV 1.0 0.9091)) +(: cnet_isa_c7f0fe7573 (IsA ephemeroptera animal_order) (STV 1.0 0.9091)) +(: cnet_isa_f96f6cf565 (IsA ephesian hellene) (STV 1.0 0.9091)) +(: cnet_isa_d5462eb47e (IsA ephestia arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_b8334b9899 (IsA ephippidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_5f70904a82 (IsA ephippiorhynchus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_b89f1268c7 (IsA epic_poem poem) (STV 1.0 0.9091)) +(: cnet_isa_8af6e76c34 (IsA epicalyx bract) (STV 1.0 0.9091)) +(: cnet_isa_ad716b423f (IsA epicanthus fold) (STV 1.0 0.9091)) +(: cnet_isa_4beb7f43a4 (IsA epicardia passage) (STV 1.0 0.9091)) +(: cnet_isa_9742ee473f (IsA epicardium serous_membrane) (STV 1.0 0.9091)) +(: cnet_isa_71991ef78c (IsA epicarp pericarp) (STV 1.0 0.9091)) +(: cnet_isa_075970ad85 (IsA epicenter geographic_point) (STV 1.0 0.9091)) +(: cnet_isa_ea0cb596c3 (IsA epicondyle process) (STV 1.0 0.9091)) +(: cnet_isa_c05f66284e (IsA epicondylitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_d5bc350928 (IsA epicranium body_covering) (STV 1.0 0.9091)) +(: cnet_isa_aacd77e038 (IsA epicure sensualist) (STV 1.0 0.9091)) +(: cnet_isa_a03cce5e5d (IsA epicureanism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_1eb4426357 (IsA epicurism disposition) (STV 1.0 0.9091)) +(: cnet_isa_f8eb6f6a30 (IsA epicycle circle) (STV 1.0 0.9091)) +(: cnet_isa_23a6598720 (IsA epicyclic_train gearing) (STV 1.0 0.9091)) +(: cnet_isa_4ca4097f47 (IsA epicycloid roulette) (STV 1.0 0.9091)) +(: cnet_isa_79336fa7f5 (IsA epideictic_oratory oratory) (STV 1.0 0.9091)) +(: cnet_isa_6fb6efa5fe (IsA epidemic outbreak) (STV 1.0 0.9091)) +(: cnet_isa_5412ac88b5 (IsA epidemic_disease infectious_disease) (STV 1.0 0.9091)) +(: cnet_isa_f1189c0b74 (IsA epidemic_pleurodynia epidemic_disease) (STV 1.0 0.9091)) +(: cnet_isa_9ce365e886 (IsA epidemiologist medical_scientist) (STV 1.0 0.9091)) +(: cnet_isa_761077b7de (IsA epidemiology medicine) (STV 1.0 0.9091)) +(: cnet_isa_2d4befb4b4 (IsA epidendron orchid) (STV 1.0 0.9091)) +(: cnet_isa_1ebd7956e7 (IsA epidendrum monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6d071323b2 (IsA epidermal_cell skin_cell) (STV 1.0 0.9091)) +(: cnet_isa_605d610e74 (IsA epidermis stratum) (STV 1.0 0.9091)) +(: cnet_isa_41901d2d28 (IsA epidiascope projector) (STV 1.0 0.9091)) +(: cnet_isa_1e7202bc49 (IsA epididymis duct) (STV 1.0 0.9091)) +(: cnet_isa_8d8c19f6b6 (IsA epididymitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_21ae0197c3 (IsA epidural_anesthesia regional_anesthesia) (STV 1.0 0.9091)) +(: cnet_isa_cf94c16985 (IsA epidural_injection injection) (STV 1.0 0.9091)) +(: cnet_isa_76634061fc (IsA epigaea dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a97c7ca9ea (IsA epigastric_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_d60291b9dd (IsA epigastric_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_fc2ebe9573 (IsA epigastrium area) (STV 1.0 0.9091)) +(: cnet_isa_9b20ed8ebd (IsA epigenesis metamorphism) (STV 1.0 0.9091)) +(: cnet_isa_416d0e44c1 (IsA epiglottis cartilaginous_structure) (STV 1.0 0.9091)) +(: cnet_isa_89a1817994 (IsA epiglottitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_e5f0631a3d (IsA epigone copycat) (STV 1.0 0.9091)) +(: cnet_isa_e0e0c9d1d5 (IsA epigram saying) (STV 1.0 0.9091)) +(: cnet_isa_7c9bb50f94 (IsA epigraph inscription) (STV 1.0 0.9091)) +(: cnet_isa_9cbffcadd4 (IsA epigraph quotation) (STV 1.0 0.9091)) +(: cnet_isa_c7407dbc43 (IsA epigraphy paleography) (STV 1.0 0.9091)) +(: cnet_isa_4fbe69d307 (IsA epikeratophakia keratoplasty) (STV 1.0 0.9091)) +(: cnet_isa_fb9faaa7cf (IsA epilachna arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_fc1170211b (IsA epilating_wax depilatory) (STV 1.0 0.9091)) +(: cnet_isa_8f5c11dd46 (IsA epilation loss) (STV 1.0 0.9091)) +(: cnet_isa_fe034632f7 (IsA epilepsia_minor epilepsy) (STV 1.0 0.9091)) +(: cnet_isa_f880575ee7 (IsA epilepsy brain_disorder) (STV 1.0 0.9091)) +(: cnet_isa_6c0baefd7b (IsA epileptic sick_person) (STV 1.0 0.9091)) +(: cnet_isa_d17bbbc55a (IsA epileptic_seizure convulsion) (STV 1.0 0.9091)) +(: cnet_isa_056feb301a (IsA epilobium rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c6f5b45347 (IsA epilogue conclusion) (STV 1.0 0.9091)) +(: cnet_isa_33db46d93e (IsA epimedium magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e76e87f6e9 (IsA epimetheus titan) (STV 1.0 0.9091)) +(: cnet_isa_4331df36ad (IsA epinephelus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_e569167695 (IsA epinephrine catecholamine) (STV 1.0 0.9091)) +(: cnet_isa_e4c672e764 (IsA epinephrine hormone) (STV 1.0 0.9091)) +(: cnet_isa_eb4347993d (IsA epinephrine neurotransmitter) (STV 1.0 0.9091)) +(: cnet_isa_db0b81492f (IsA epinephrine vasoconstrictor) (STV 1.0 0.9091)) +(: cnet_isa_e757a05c41 (IsA epipactis monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b72a958da4 (IsA epipactis_helleborine helleborine) (STV 1.0 0.9091)) +(: cnet_isa_18929a3419 (IsA epiphany manifestation) (STV 1.0 0.9091)) +(: cnet_isa_7e363ee07a (IsA epiphany christian_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_da5cfe07ed (IsA epiphenomenon by_product) (STV 1.0 0.9091)) +(: cnet_isa_1d2079e9b5 (IsA epiphora repetition) (STV 1.0 0.9091)) +(: cnet_isa_e9be733e5a (IsA epiphyllum cactus) (STV 1.0 0.9091)) +(: cnet_isa_7b3934fc82 (IsA epiphysis long_bone) (STV 1.0 0.9091)) +(: cnet_isa_f3da15d89c (IsA epiplexis rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_09a6475cf0 (IsA epipremnum monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_63c9886f3f (IsA episcia houseplant) (STV 1.0 0.9091)) +(: cnet_isa_803fd1011d (IsA episcleral_vein venule) (STV 1.0 0.9091)) +(: cnet_isa_d81cf43bc8 (IsA episcleritis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_4f51ada758 (IsA episcopacy people) (STV 1.0 0.9091)) +(: cnet_isa_93100a6a25 (IsA episcopal_church anglican_church) (STV 1.0 0.9091)) +(: cnet_isa_72a59279ac (IsA episcopalian protestant) (STV 1.0 0.9091)) +(: cnet_isa_69ae9e5f7a (IsA episcopalianism theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_19df81dd21 (IsA episcopate tenure) (STV 1.0 0.9091)) +(: cnet_isa_3dad3b01ec (IsA episiotomy perineotomy) (STV 1.0 0.9091)) +(: cnet_isa_f39dafda23 (IsA episode broadcast) (STV 1.0 0.9091)) +(: cnet_isa_3aa1e2837a (IsA episode section) (STV 1.0 0.9091)) +(: cnet_isa_d11f016543 (IsA episode happening) (STV 1.0 0.9091)) +(: cnet_isa_63ed333893 (IsA episodic_memory long_term_memory) (STV 1.0 0.9091)) +(: cnet_isa_a090b81a57 (IsA episome deoxyribonucleic_acid) (STV 1.0 0.9091)) +(: cnet_isa_3bc03f9b62 (IsA epispadia birth_defect) (STV 1.0 0.9091)) +(: cnet_isa_f2571a8720 (IsA episteme cognition) (STV 1.0 0.9091)) +(: cnet_isa_f6ea4281b9 (IsA epistemic_logic modal_logic) (STV 1.0 0.9091)) +(: cnet_isa_c77c6f9459 (IsA epistemologist philosopher) (STV 1.0 0.9091)) +(: cnet_isa_1ed8fed29c (IsA epistemology philosophy) (STV 1.0 0.9091)) +(: cnet_isa_e93585d45e (IsA epistle book) (STV 1.0 0.9091)) +(: cnet_isa_cf263927eb (IsA epistle letter) (STV 1.0 0.9091)) +(: cnet_isa_75a333291f (IsA epitaph inscription) (STV 1.0 0.9091)) +(: cnet_isa_55e2560af2 (IsA epitaph memorial) (STV 1.0 0.9091)) +(: cnet_isa_426c794682 (IsA epitaxy growing) (STV 1.0 0.9091)) +(: cnet_isa_28cd718a7a (IsA epithalamium ode) (STV 1.0 0.9091)) +(: cnet_isa_d19af93125 (IsA epithelial_cell somatic_cell) (STV 1.0 0.9091)) +(: cnet_isa_e4b5457925 (IsA epithelioma skin_cancer) (STV 1.0 0.9091)) +(: cnet_isa_c8116a8692 (IsA epithelium animal_tissue) (STV 1.0 0.9091)) +(: cnet_isa_9f8259054e (IsA epithet word_picture) (STV 1.0 0.9091)) +(: cnet_isa_58154143f5 (IsA epitome outline) (STV 1.0 0.9091)) +(: cnet_isa_3af380840f (IsA epoch date) (STV 1.0 0.9091)) +(: cnet_isa_730dc84538 (IsA epoch geological_time) (STV 1.0 0.9091)) +(: cnet_isa_1402742ffb (IsA eponym name) (STV 1.0 0.9091)) +(: cnet_isa_1ecc2d7986 (IsA eponymy derivation) (STV 1.0 0.9091)) +(: cnet_isa_d4d58a777f (IsA epo poetry) (STV 1.0 0.9091)) +(: cnet_isa_c37d44df86 (IsA epoxy glue) (STV 1.0 0.9454)) +(: cnet_isa_5826a6294a (IsA epoxy synthetic_resin) (STV 1.0 0.9091)) +(: cnet_isa_5f621e861a (IsA epsilon letter) (STV 1.0 0.9091)) +(: cnet_isa_35c383f653 (IsA epsilon_toxin bacterial_toxin) (STV 1.0 0.9091)) +(: cnet_isa_f84caa4896 (IsA epsom_salt purgative) (STV 1.0 0.9091)) +(: cnet_isa_89f915b5b6 (IsA epsom_salt magnesium_sulfate) (STV 1.0 0.9091)) +(: cnet_isa_f8e3bf4373 (IsA epstein_barr_virus herpe) (STV 1.0 0.9091)) +(: cnet_isa_8334c7166d (IsA eptatretus hagfish) (STV 1.0 0.9091)) +(: cnet_isa_ec2a4533be (IsA eptesicus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_9e2de9191d (IsA equal_area_projection map_projection) (STV 1.0 0.9091)) +(: cnet_isa_0ca92b37ea (IsA equal_opportunity civil_right) (STV 1.0 0.9091)) +(: cnet_isa_e1f636720b (IsA equal_protection_of_law civil_right) (STV 1.0 0.9091)) +(: cnet_isa_88c2ac93fb (IsA equal_sign sign) (STV 1.0 0.9091)) +(: cnet_isa_8247203bf8 (IsA equal_temperament temperament) (STV 1.0 0.9091)) +(: cnet_isa_a4c0c7566c (IsA equality sameness) (STV 1.0 0.9091)) +(: cnet_isa_ae5e84383e (IsA equality status) (STV 1.0 0.9091)) +(: cnet_isa_98a3f593a4 (IsA equality_before_law human_right) (STV 1.0 0.9091)) +(: cnet_isa_7b7997f141 (IsA equality_for_everyone ideal) (STV 1.0 0.9339)) +(: cnet_isa_24c0ea1ff5 (IsA equalization act) (STV 1.0 0.9091)) +(: cnet_isa_52ce6d836a (IsA equalizer score) (STV 1.0 0.9091)) +(: cnet_isa_d24734c588 (IsA equalizer electronic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_f26bf547d4 (IsA equalizing_dividend dividend) (STV 1.0 0.9091)) +(: cnet_isa_f377123d56 (IsA equatability equality) (STV 1.0 0.9091)) +(: cnet_isa_53647dce7d (IsA equation mathematical_statement) (STV 1.0 0.9091)) +(: cnet_isa_80bdd0134f (IsA equation equalization) (STV 1.0 0.9091)) +(: cnet_isa_7a7e302d4f (IsA equator great_circle) (STV 1.0 0.9091)) +(: cnet_isa_7e3f5c39ad (IsA equator circle) (STV 1.0 0.9091)) +(: cnet_isa_11227c180f (IsA equatorial telescope) (STV 1.0 0.9091)) +(: cnet_isa_7a0be4863a (IsA equatorial_current ocean_current) (STV 1.0 0.9091)) +(: cnet_isa_12b573f8b5 (IsA equerry attendant) (STV 1.0 0.9091)) +(: cnet_isa_abc01c3ca0 (IsA equerry official) (STV 1.0 0.9091)) +(: cnet_isa_0207fca3ce (IsA equestrian sport) (STV 1.0 0.9454)) +(: cnet_isa_7828e275c8 (IsA equestrian_sport riding) (STV 1.0 0.9091)) +(: cnet_isa_5cecebf7e0 (IsA equetus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_d9215d03d5 (IsA equidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_111e598412 (IsA equidistribution distribution) (STV 1.0 0.9091)) +(: cnet_isa_2bf2ecb6a3 (IsA equilateral figure) (STV 1.0 0.9091)) +(: cnet_isa_ff20d8e752 (IsA equilateral_triangle regular_polygon) (STV 1.0 0.9091)) +(: cnet_isa_d88edc8302 (IsA equilateral_triangle triangle) (STV 1.0 0.9091)) +(: cnet_isa_cd59cc34ce (IsA equilibration stabilization) (STV 1.0 0.9091)) +(: cnet_isa_5b51fc6b7a (IsA equilibrium proprioception) (STV 1.0 0.9091)) +(: cnet_isa_560a8fe0b1 (IsA equilibrium situation) (STV 1.0 0.9091)) +(: cnet_isa_6bca48a9ba (IsA equilibrium_constant constant) (STV 1.0 0.9091)) +(: cnet_isa_2c815d23ac (IsA equilibrium_law law) (STV 1.0 0.9091)) +(: cnet_isa_ad46e8ca30 (IsA equine odd_toed_ungulate) (STV 1.0 0.9091)) +(: cnet_isa_0abe4dfee0 (IsA equine_distemper distemper) (STV 1.0 0.9091)) +(: cnet_isa_ab6f908c9b (IsA equine_encephalitis encephalitis) (STV 1.0 0.9091)) +(: cnet_isa_e6228a7dea (IsA equinoctial_point celestial_point) (STV 1.0 0.9091)) +(: cnet_isa_95ec1e95e0 (IsA equinox cosmic_time) (STV 1.0 0.9091)) +(: cnet_isa_4ec24df3c0 (IsA equipment instrumentality) (STV 1.0 0.9091)) +(: cnet_isa_d2a54a1ee9 (IsA equisetaceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_1ee7024b2f (IsA equisetale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_9bb601f174 (IsA equisetum fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_910673dfd5 (IsA equity asset) (STV 1.0 0.9091)) +(: cnet_isa_76ab6381e6 (IsA equity interest) (STV 1.0 0.9091)) +(: cnet_isa_75bdb250c3 (IsA equivalence equality) (STV 1.0 0.9091)) +(: cnet_isa_44380df774 (IsA equivalent atomic_mass) (STV 1.0 0.9091)) +(: cnet_isa_ea48ee9e22 (IsA equivalent cognition) (STV 1.0 0.9091)) +(: cnet_isa_9b08f115a1 (IsA equivalent_binary_digit_factor divisor) (STV 1.0 0.9091)) +(: cnet_isa_2090565fa3 (IsA equivocation falsification) (STV 1.0 0.9091)) +(: cnet_isa_e23cac8ee1 (IsA equivocation ambiguity) (STV 1.0 0.9091)) +(: cnet_isa_f53e0f76ec (IsA equivocation untruthfulness) (STV 1.0 0.9091)) +(: cnet_isa_a7139b21b2 (IsA equus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_85e43d45ad (IsA era geological_time) (STV 1.0 0.9091)) +(: cnet_isa_e290a4572e (IsA era time_period) (STV 1.0 0.9091)) +(: cnet_isa_a65dcdf597 (IsA eradication destruction) (STV 1.0 0.9091)) +(: cnet_isa_dafab71bab (IsA eragrostis monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_359f36ee36 (IsA eranthis magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6946e1759f (IsA erasable_programmable_read_only_memory read_only_memory) (STV 1.0 0.9091)) +(: cnet_isa_6634f03c43 (IsA eraser implement) (STV 1.0 0.9091)) +(: cnet_isa_f9cc4d9cc4 (IsA erastianism theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_d190819c95 (IsA erasure area) (STV 1.0 0.9091)) +(: cnet_isa_70ad68c26f (IsA erasure correction) (STV 1.0 0.9091)) +(: cnet_isa_2fdbb4bda3 (IsA erb_s_palsy paralysis) (STV 1.0 0.9091)) +(: cnet_isa_694c1ad564 (IsA erbium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_0964a81f0d (IsA ercilla caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ec1e1cdbc9 (IsA erect_bugle bugle) (STV 1.0 0.9091)) +(: cnet_isa_95657e7c51 (IsA erectile_dysfunction dysfunction) (STV 1.0 0.9091)) +(: cnet_isa_ef0a959dd7 (IsA erectile_dysfunction impotence) (STV 1.0 0.9091)) +(: cnet_isa_d139443c37 (IsA erectile_organ organ) (STV 1.0 0.9091)) +(: cnet_isa_316a1db27e (IsA erectile_tissue animal_tissue) (STV 1.0 0.9091)) +(: cnet_isa_80d816b95d (IsA erecting construction) (STV 1.0 0.9091)) +(: cnet_isa_bfa8974120 (IsA erecting_prism prism) (STV 1.0 0.9091)) +(: cnet_isa_f59c5a4487 (IsA erection structure) (STV 1.0 0.9091)) +(: cnet_isa_273f45eeef (IsA erection sexual_arousal) (STV 1.0 0.9091)) +(: cnet_isa_3342b09b88 (IsA erectness stance) (STV 1.0 0.9091)) +(: cnet_isa_592907b10e (IsA eremite religious) (STV 1.0 0.9091)) +(: cnet_isa_91068b8afe (IsA eremitism monasticism) (STV 1.0 0.9091)) +(: cnet_isa_f67a599af5 (IsA erethism abnormality) (STV 1.0 0.9091)) +(: cnet_isa_da14b14283 (IsA erethizon mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_1d5ef7d336 (IsA erethizontidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_e52abe422c (IsA eretmochely reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_be721e7f44 (IsA erg work_unit) (STV 1.0 0.9091)) +(: cnet_isa_d60403f46d (IsA ergodicity randomness) (STV 1.0 0.9091)) +(: cnet_isa_f4aa96efa3 (IsA ergosterol sterol) (STV 1.0 0.9091)) +(: cnet_isa_692d93e5b1 (IsA ergot fungus) (STV 1.0 0.9091)) +(: cnet_isa_7ad44848b9 (IsA ergot plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_06314f2fdf (IsA ergotamine alkaloid) (STV 1.0 0.9091)) +(: cnet_isa_c9cc6090d4 (IsA ergotism poisoning) (STV 1.0 0.9091)) +(: cnet_isa_1c5451d572 (IsA ergotropism tropism) (STV 1.0 0.9091)) +(: cnet_isa_2849ceea1e (IsA erianthus monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5a0c1d86fc (IsA erica heath) (STV 1.0 0.9091)) +(: cnet_isa_0753c20a22 (IsA ericaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_0e58251e5f (IsA ericaceae ericale) (STV 1.0 0.9091)) +(: cnet_isa_6a00509322 (IsA ericale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_6d2f4530bf (IsA erie iroquois) (STV 1.0 0.9091)) +(: cnet_isa_a733c32be4 (IsA erigeron asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f96f10a450 (IsA erignathus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_fa395b0ddb (IsA erinaceidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_b352550bfe (IsA erinaceus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_25ee63b89a (IsA eriobotrya rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_965413427b (IsA eriocaulaceae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_76b06e8fe9 (IsA eriocaulon monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_dff2439123 (IsA eriodictyon asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_13c770efc7 (IsA eriogonum subshrub) (STV 1.0 0.9091)) +(: cnet_isa_5b52cc70c2 (IsA eriophorum monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0b6fc7c327 (IsA eriophyllum asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_94e1be7309 (IsA eriosoma arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_11c08a1e7b (IsA eristic art) (STV 1.0 0.9091)) +(: cnet_isa_f37e47276d (IsA erithacus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_a435597d9d (IsA eritrean ethiopian) (STV 1.0 0.9091)) +(: cnet_isa_0eb58aa65c (IsA erlang telephone_unit) (STV 1.0 0.9091)) +(: cnet_isa_2d0bb64b0d (IsA erlenmeyer_flask flask) (STV 1.0 0.9091)) +(: cnet_isa_ac5b87727f (IsA ermine weasel) (STV 1.0 0.9091)) +(: cnet_isa_7883c886a4 (IsA ermine fur) (STV 1.0 0.9091)) +(: cnet_isa_4b34cf3260 (IsA ern sea_eagle) (STV 1.0 0.9091)) +(: cnet_isa_7365fd0abf (IsA erodium rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3e2d2b16e0 (IsA erogenous_zone area) (STV 1.0 0.9091)) +(: cnet_isa_596f24829b (IsA erolia bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_a2c01e2109 (IsA erose_leaf leaf) (STV 1.0 0.9091)) +(: cnet_isa_64ec750954 (IsA erosion geological_process) (STV 1.0 0.9091)) +(: cnet_isa_1fc0894592 (IsA erosion decline) (STV 1.0 0.9091)) +(: cnet_isa_f75353c3b0 (IsA erosion environmental_condition) (STV 1.0 0.9091)) +(: cnet_isa_e9794e52f3 (IsA erotic sensualist) (STV 1.0 0.9091)) +(: cnet_isa_4ae71dc50b (IsA eroticism sexual_arousal) (STV 1.0 0.9091)) +(: cnet_isa_e314a43ccb (IsA errancy fallibility) (STV 1.0 0.9091)) +(: cnet_isa_046b643136 (IsA errancy unacceptability) (STV 1.0 0.9091)) +(: cnet_isa_390986aa49 (IsA errand trip) (STV 1.0 0.9091)) +(: cnet_isa_9869be00c9 (IsA erroneousness incorrectness) (STV 1.0 0.9091)) +(: cnet_isa_38e6f10489 (IsA error evil) (STV 1.0 0.9091)) +(: cnet_isa_be81d8bc37 (IsA error failure) (STV 1.0 0.9091)) +(: cnet_isa_4b168d85ed (IsA error misconception) (STV 1.0 0.9091)) +(: cnet_isa_e6f3097888 (IsA error misstatement) (STV 1.0 0.9091)) +(: cnet_isa_b66090385f (IsA error happening) (STV 1.0 0.9091)) +(: cnet_isa_0efa8eb2b6 (IsA error_correction_code code) (STV 1.0 0.9091)) +(: cnet_isa_4b512d1d52 (IsA ersatz substitute) (STV 1.0 0.9091)) +(: cnet_isa_30ce1c4bca (IsA eruca dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_89304f7809 (IsA eruditeness education) (STV 1.0 0.9091)) +(: cnet_isa_0a7429f6ad (IsA eruption emergence) (STV 1.0 0.9091)) +(: cnet_isa_ed899e9630 (IsA eruption symptom) (STV 1.0 0.9091)) +(: cnet_isa_8a3dfe59a3 (IsA eruption action) (STV 1.0 0.9091)) +(: cnet_isa_84c1303858 (IsA erwinia enteric_bacteria) (STV 1.0 0.9091)) +(: cnet_isa_dda8e8f29f (IsA eryngium rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_753371a602 (IsA eryngo subshrub) (STV 1.0 0.9091)) +(: cnet_isa_8ce40cd2d2 (IsA erysimum dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_800b04176b (IsA erysipela saint_anthony_s_fire) (STV 1.0 0.9091)) +(: cnet_isa_79e3f28015 (IsA erysiphaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_9fb4f3dfd0 (IsA erysiphale fungus_order) (STV 1.0 0.9091)) +(: cnet_isa_e39024c8fe (IsA erysiphe fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_4fe647a9a4 (IsA erythema erythroderma) (STV 1.0 0.9091)) +(: cnet_isa_4dfff896d4 (IsA erythema_multiforme erythema) (STV 1.0 0.9091)) +(: cnet_isa_7891729c9a (IsA erythema_nodosum erythema) (STV 1.0 0.9091)) +(: cnet_isa_b31a8f56f8 (IsA erythema_nodosum_leprosum erythema_nodosum) (STV 1.0 0.9091)) +(: cnet_isa_afaaedcdce (IsA erythrite mineral) (STV 1.0 0.9091)) +(: cnet_isa_54de122a25 (IsA erythroblast embryonic_cell) (STV 1.0 0.9091)) +(: cnet_isa_df2bd0ecc3 (IsA erythroblastosis blood_disease) (STV 1.0 0.9091)) +(: cnet_isa_1929a2bc64 (IsA erythroblastosis_fetalis anemia) (STV 1.0 0.9091)) +(: cnet_isa_cbbed873fd (IsA erythrocebus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_f10c7abdec (IsA erythrocyte_sedimentation_rate rate) (STV 1.0 0.9091)) +(: cnet_isa_648114e891 (IsA erythroderma skin_disease) (STV 1.0 0.9091)) +(: cnet_isa_cca827a68e (IsA erythronium liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a9baf47c92 (IsA erythropoiesis organic_process) (STV 1.0 0.9091)) +(: cnet_isa_6419b9df26 (IsA erythropoietin glycoprotein) (STV 1.0 0.9091)) +(: cnet_isa_37533e3caa (IsA erythroxylaceae plant_family) (STV 1.0 0.9091)) +(: cnet_isa_c488b558c0 (IsA erythroxylon plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_24171f574e (IsA erythroxylon_coca shrub) (STV 1.0 0.9091)) +(: cnet_isa_6f432e678b (IsA erythroxylon_truxiuense shrub) (STV 1.0 0.9091)) +(: cnet_isa_124ef24c2b (IsA escadrille squadron) (STV 1.0 0.9091)) +(: cnet_isa_cb793b062a (IsA escalade scaling) (STV 1.0 0.9091)) +(: cnet_isa_b3926f116c (IsA escalader climber) (STV 1.0 0.9091)) +(: cnet_isa_dacd101b71 (IsA escalation increase) (STV 1.0 0.9091)) +(: cnet_isa_67e90709c3 (IsA escalator stairway) (STV 1.0 0.9091)) +(: cnet_isa_9e8d87d20d (IsA escalator_clause article) (STV 1.0 0.9091)) +(: cnet_isa_889c79f272 (IsA escalope_de_veau_orloff dish) (STV 1.0 0.9091)) +(: cnet_isa_985090dbb9 (IsA escapade diversion) (STV 1.0 0.9091)) +(: cnet_isa_4ca65e7398 (IsA escape avoidance) (STV 1.0 0.9091)) +(: cnet_isa_08a32932bb (IsA escape diversion) (STV 1.0 0.9091)) +(: cnet_isa_ed2ca99a42 (IsA escape mean) (STV 1.0 0.9091)) +(: cnet_isa_8637723b67 (IsA escape running_away) (STV 1.0 0.9091)) +(: cnet_isa_afcda7e6b6 (IsA escape discharge) (STV 1.0 0.9091)) +(: cnet_isa_962df722dd (IsA escape plant) (STV 1.0 0.9091)) +(: cnet_isa_3e7ced13b1 (IsA escape_hatch hatchway) (STV 1.0 0.9091)) +(: cnet_isa_ab4ef84f2a (IsA escape_mechanism evasion) (STV 1.0 0.9091)) +(: cnet_isa_ba59b43796 (IsA escape_velocity speed) (STV 1.0 0.9091)) +(: cnet_isa_f26bb4c7e6 (IsA escape_wheel gear) (STV 1.0 0.9091)) +(: cnet_isa_fcd1b30bf2 (IsA escapee fugitive) (STV 1.0 0.9091)) +(: cnet_isa_872e2b8dc6 (IsA escapement mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_5174a6844c (IsA escapist daydreamer) (STV 1.0 0.9091)) +(: cnet_isa_83d134393d (IsA escapologist magician) (STV 1.0 0.9091)) +(: cnet_isa_81a690c437 (IsA escapology discipline) (STV 1.0 0.9091)) +(: cnet_isa_82507bbfd8 (IsA escargot meat) (STV 1.0 0.9091)) +(: cnet_isa_7f57337181 (IsA escarpment fortification) (STV 1.0 0.9091)) +(: cnet_isa_e5120749c5 (IsA escarpment slope) (STV 1.0 0.9091)) +(: cnet_isa_2fb89b5e84 (IsA eschar scab) (STV 1.0 0.9091)) +(: cnet_isa_b38d8799c2 (IsA eschatologist theologian) (STV 1.0 0.9091)) +(: cnet_isa_ac47fc435d (IsA eschatology theology) (STV 1.0 0.9091)) +(: cnet_isa_b54b8c6198 (IsA escheat reversion) (STV 1.0 0.9091)) +(: cnet_isa_db15cec058 (IsA escheat transferred_property) (STV 1.0 0.9091)) +(: cnet_isa_f097842d0f (IsA escherichia enteric_bacteria) (STV 1.0 0.9091)) +(: cnet_isa_e033fd721f (IsA escherichia_coli escherichia) (STV 1.0 0.9091)) +(: cnet_isa_17a5785211 (IsA eschrichtiidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_cded9d113e (IsA eschrichtius mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_697f62210f (IsA eschscholtzia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0d3e7fd7b2 (IsA escolar gempylid) (STV 1.0 0.9091)) +(: cnet_isa_0cc0476033 (IsA escort protection) (STV 1.0 0.9091)) +(: cnet_isa_6d767aa752 (IsA escort attendant) (STV 1.0 0.9091)) +(: cnet_isa_656109456e (IsA escrow written_agreement) (STV 1.0 0.9091)) +(: cnet_isa_5df1683ba0 (IsA escrow_fund fund) (STV 1.0 0.9091)) +(: cnet_isa_b3c953bd0c (IsA escutcheon shield) (STV 1.0 0.9091)) +(: cnet_isa_df7496af6a (IsA escutcheon plate) (STV 1.0 0.9091)) +(: cnet_isa_ba4c5fa764 (IsA esker ridge) (STV 1.0 0.9091)) +(: cnet_isa_898a377f7d (IsA eskimo eskimo_aleut) (STV 1.0 0.9091)) +(: cnet_isa_ef7d4efc09 (IsA eskimo_aleut natural_language) (STV 1.0 0.9091)) +(: cnet_isa_a0500151a0 (IsA eskimo_curlew curlew) (STV 1.0 0.9091)) +(: cnet_isa_064da5cd95 (IsA eskimo_dog working_dog) (STV 1.0 0.9091)) +(: cnet_isa_3f0e73ce09 (IsA esocidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_76aff883a0 (IsA esophageal_smear alimentary_tract_smear) (STV 1.0 0.9091)) +(: cnet_isa_b70704d31d (IsA esophageal_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_700ae4e230 (IsA esophagitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_1d20ba68ba (IsA esophagogastric_junction articulation) (STV 1.0 0.9091)) +(: cnet_isa_0c49147562 (IsA esophagoscope optical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_2872a53241 (IsA esophagus muscular_structure) (STV 1.0 0.9091)) +(: cnet_isa_b21ba32c6c (IsA esophagus passage) (STV 1.0 0.9091)) +(: cnet_isa_0143be2317 (IsA esoterica secret) (STV 1.0 0.9091)) +(: cnet_isa_4912300254 (IsA esox fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_6826bb9014 (IsA espadrille sandal) (STV 1.0 0.9091)) +(: cnet_isa_8249c62df7 (IsA espalier trellis) (STV 1.0 0.9091)) +(: cnet_isa_68f974dfdf (IsA esperantido artificial_language) (STV 1.0 0.9091)) +(: cnet_isa_7c9e8118fa (IsA esperanto artificial_language) (STV 1.0 0.9091)) +(: cnet_isa_ba3e6e5797 (IsA espionage spying) (STV 1.0 0.9091)) +(: cnet_isa_5d9239bb8c (IsA espionage_agent spy) (STV 1.0 0.9091)) +(: cnet_isa_934dbce30d (IsA espionage_network network) (STV 1.0 0.9091)) +(: cnet_isa_6629d79b24 (IsA esplanade promenade) (STV 1.0 0.9091)) +(: cnet_isa_c0537b248a (IsA espoo in_finland) (STV 1.0 0.9091)) +(: cnet_isa_98aa56c4b4 (IsA espresso coffee) (STV 1.0 0.9091)) +(: cnet_isa_5c407fcba5 (IsA espresso_maker coffee_maker) (STV 1.0 0.9091)) +(: cnet_isa_65ddc60a83 (IsA espresso_shop cafe) (STV 1.0 0.9091)) +(: cnet_isa_b2190422fa (IsA esprit liveliness) (STV 1.0 0.9091)) +(: cnet_isa_2bda00b52c (IsA esprit_de_corp disposition) (STV 1.0 0.9091)) +(: cnet_isa_85cbb7b249 (IsA esprit_de_l_escalier wit) (STV 1.0 0.9091)) +(: cnet_isa_9607e71971 (IsA esq man) (STV 1.0 0.9091)) +(: cnet_isa_27eaed47da (IsA esquimau native_american) (STV 1.0 0.9091)) +(: cnet_isa_3a5cf6186b (IsA esquire attendant) (STV 1.0 0.9091)) +(: cnet_isa_a88c97c72f (IsA essay attempt) (STV 1.0 0.9091)) +(: cnet_isa_c9b3185c04 (IsA essay writing) (STV 1.0 0.9091)) +(: cnet_isa_1395693a6a (IsA essayist writer) (STV 1.0 0.9091)) +(: cnet_isa_25e9c06400 (IsA esselen hokan) (STV 1.0 0.9091)) +(: cnet_isa_24983fd883 (IsA esselen hoka) (STV 1.0 0.9091)) +(: cnet_isa_98e116fb32 (IsA essence substance) (STV 1.0 0.9091)) +(: cnet_isa_b357aca23d (IsA essene israelite) (STV 1.0 0.9091)) +(: cnet_isa_16ca7239e9 (IsA essential_amino_acid amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_9c9e461350 (IsA essential_condition prerequisite) (STV 1.0 0.9091)) +(: cnet_isa_e38e6f871c (IsA essential_hypertension high_blood_pressure) (STV 1.0 0.9091)) +(: cnet_isa_8ba14ab111 (IsA essential_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_e65ae62e20 (IsA essential_thrombocytopenia thrombocytopenia) (STV 1.0 0.9091)) +(: cnet_isa_aa6b33c9ae (IsA essential_tremor tremor) (STV 1.0 0.9091)) +(: cnet_isa_1803b68a69 (IsA essentiality importance) (STV 1.0 0.9091)) +(: cnet_isa_364886d83a (IsA established_church religion) (STV 1.0 0.9091)) +(: cnet_isa_fba27aa6b3 (IsA establishment proof) (STV 1.0 0.9091)) +(: cnet_isa_1b80121bbd (IsA establishment structure) (STV 1.0 0.9091)) +(: cnet_isa_2d4d6de043 (IsA establishment natural_process) (STV 1.0 0.9091)) +(: cnet_isa_f673de3125 (IsA establishment organization) (STV 1.0 0.9091)) +(: cnet_isa_6fa93c1d9d (IsA establishmentarianism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_1c6f2611d5 (IsA estaminet cafe) (STV 1.0 0.9091)) +(: cnet_isa_67e1b517a4 (IsA estate class) (STV 1.0 0.9091)) +(: cnet_isa_6256561c2a (IsA estate property) (STV 1.0 0.9091)) +(: cnet_isa_cbab6ea8b6 (IsA estate real_property) (STV 1.0 0.9091)) +(: cnet_isa_0c941d83da (IsA estate_general state_general) (STV 1.0 0.9091)) +(: cnet_isa_a0abe31388 (IsA esteem honor) (STV 1.0 0.9091)) +(: cnet_isa_ad64f13141 (IsA ester organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_c4e4fe6e47 (IsA esterification chemical_reaction) (STV 1.0 0.9091)) +(: cnet_isa_f91671feda (IsA esthete connoisseur) (STV 1.0 0.9091)) +(: cnet_isa_fc383e8680 (IsA esthetician philosopher) (STV 1.0 0.9091)) +(: cnet_isa_d37ec7618d (IsA esthetician skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_71fa2597b1 (IsA estimate judgment) (STV 1.0 0.9091)) +(: cnet_isa_ea051777c5 (IsA estimate calculation) (STV 1.0 0.9091)) +(: cnet_isa_03fe4be04f (IsA estimate respect) (STV 1.0 0.9091)) +(: cnet_isa_115f96e678 (IsA estimate statement) (STV 1.0 0.9091)) +(: cnet_isa_3f354e265b (IsA estimated_tax income_tax) (STV 1.0 0.9091)) +(: cnet_isa_5d757866fe (IsA estivation arrangement) (STV 1.0 0.9091)) +(: cnet_isa_2dc3e9e7b3 (IsA estivation dormancy) (STV 1.0 0.9091)) +(: cnet_isa_6cc9fca6fe (IsA estonian baltic_finnic) (STV 1.0 0.9091)) +(: cnet_isa_b0cd849a7c (IsA estonian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_9d59dbb428 (IsA estoppel rule_of_evidence) (STV 1.0 0.9091)) +(: cnet_isa_f455a44276 (IsA estradiol_patch transdermal_patch) (STV 1.0 0.9091)) +(: cnet_isa_d1ecb77bb5 (IsA estrilda bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_e63f4edc0d (IsA estriol estrogen) (STV 1.0 0.9091)) +(: cnet_isa_eb4338ad25 (IsA estrogen steroid_hormone) (STV 1.0 0.9091)) +(: cnet_isa_44630f2c1b (IsA estrogen_antagonist antagonist) (STV 1.0 0.9091)) +(: cnet_isa_b57f6c8a89 (IsA estrone estrogen) (STV 1.0 0.9091)) +(: cnet_isa_746cc7f270 (IsA estrone ketosteroid) (STV 1.0 0.9091)) +(: cnet_isa_b0383211a9 (IsA estrus physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_3be198145b (IsA estuary body_of_water) (STV 1.0 0.9091)) +(: cnet_isa_6a7a7bddd0 (IsA eta letter) (STV 1.0 0.9091)) +(: cnet_isa_d8070a0f38 (IsA etagere furniture) (STV 1.0 0.9091)) +(: cnet_isa_91684ec286 (IsA etamine fabric) (STV 1.0 0.9091)) +(: cnet_isa_456e3fd1a5 (IsA etcetera whatchamacallit) (STV 1.0 0.9091)) +(: cnet_isa_34a0c3b4ef (IsA etcher artist) (STV 1.0 0.9091)) +(: cnet_isa_a4468d582a (IsA etching engraving) (STV 1.0 0.9091)) +(: cnet_isa_12de6cfd21 (IsA eternal_life animation) (STV 1.0 0.9091)) +(: cnet_isa_e9ac5a7543 (IsA eternity being) (STV 1.0 0.9091)) +(: cnet_isa_cdfab34578 (IsA eternity time) (STV 1.0 0.9091)) +(: cnet_isa_65ef4492af (IsA eternity time_interval) (STV 1.0 0.9091)) +(: cnet_isa_7e763888fa (IsA ethane alkane) (STV 1.0 0.9091)) +(: cnet_isa_e941d2ba2c (IsA ethane hydrocarbon) (STV 1.0 0.9091)) +(: cnet_isa_05ab61992a (IsA ethane methane_sery) (STV 1.0 0.9091)) +(: cnet_isa_b9cc0ae7d7 (IsA ethanol alcohol) (STV 1.0 0.9454)) +(: cnet_isa_bb082a7536 (IsA ether inhalation_anesthetic) (STV 1.0 0.9091)) +(: cnet_isa_9277adf21e (IsA ether medium) (STV 1.0 0.9091)) +(: cnet_isa_fa13e4e701 (IsA ether organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_ab3ca91058 (IsA ethernet local_area_network) (STV 1.0 0.9091)) +(: cnet_isa_af52e07538 (IsA ethernet_cable coaxial_cable) (STV 1.0 0.9091)) +(: cnet_isa_b44db8cc95 (IsA ethic principle) (STV 1.0 0.9091)) +(: cnet_isa_e4b05e5dc8 (IsA ethic system) (STV 1.0 0.9091)) +(: cnet_isa_3d99fa5fad (IsA ethical_motive motivation) (STV 1.0 0.9091)) +(: cnet_isa_ceb7944f3b (IsA ethicism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_ded51bd20e (IsA ethicist philosopher) (STV 1.0 0.9091)) +(: cnet_isa_cec3eee06b (IsA ethic philosophy) (STV 1.0 0.9091)) +(: cnet_isa_0a057fab7b (IsA ethic_committee committee) (STV 1.0 0.9091)) +(: cnet_isa_80c676cc6f (IsA ethiopia country) (STV 1.0 0.9091)) +(: cnet_isa_1437904cc6 (IsA ethiopian african) (STV 1.0 0.9091)) +(: cnet_isa_3550dcfc7c (IsA ethiopian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_42326626af (IsA ethmoid bone) (STV 1.0 0.9091)) +(: cnet_isa_9ccc9a27fc (IsA ethmoid_sinus sinus) (STV 1.0 0.9091)) +(: cnet_isa_1b1b06cc3d (IsA ethmoidal_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_6c30ee22a0 (IsA ethmoidal_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_7e6b345890 (IsA ethnarch ruler) (STV 1.0 0.9091)) +(: cnet_isa_f6158ce570 (IsA ethnic person) (STV 1.0 0.9091)) +(: cnet_isa_3d63eb8132 (IsA ethnic_cleansing group_action) (STV 1.0 0.9091)) +(: cnet_isa_fcf5e27bef (IsA ethnic_group group) (STV 1.0 0.9091)) +(: cnet_isa_53b85c3035 (IsA ethnic_joke joke) (STV 1.0 0.9091)) +(: cnet_isa_3e2d6f7770 (IsA ethnic_minority ethnic_group) (STV 1.0 0.9091)) +(: cnet_isa_442817ce67 (IsA ethnic_slur aspersion) (STV 1.0 0.9091)) +(: cnet_isa_0c89f83ef3 (IsA ethnicity quality) (STV 1.0 0.9091)) +(: cnet_isa_e4152c8441 (IsA ethnocentrism partiality) (STV 1.0 0.9091)) +(: cnet_isa_0fb31433f7 (IsA ethnographer anthropologist) (STV 1.0 0.9091)) +(: cnet_isa_37cc2d40fc (IsA ethnography anthropology) (STV 1.0 0.9091)) +(: cnet_isa_0fbe879872 (IsA ethnologist anthropologist) (STV 1.0 0.9091)) +(: cnet_isa_cfd83572c3 (IsA ethnology anthropology) (STV 1.0 0.9091)) +(: cnet_isa_bfe8d94542 (IsA ethologist zoologist) (STV 1.0 0.9091)) +(: cnet_isa_20892e168a (IsA ethology zoology) (STV 1.0 0.9091)) +(: cnet_isa_d7c288f6dd (IsA etho attribute) (STV 1.0 0.9091)) +(: cnet_isa_de5f089874 (IsA ethyl alkyl) (STV 1.0 0.9091)) +(: cnet_isa_574fd77480 (IsA ethyl_acetate ester) (STV 1.0 0.9091)) +(: cnet_isa_78cc512a6b (IsA ethyl_alcohol alcohol) (STV 1.0 0.9091)) +(: cnet_isa_b48522fbf7 (IsA ethyl_alcohol plant_product) (STV 1.0 0.9091)) +(: cnet_isa_bfea420584 (IsA ethyl_chloride local_anesthetic) (STV 1.0 0.9091)) +(: cnet_isa_6ff19e66d5 (IsA ethylene alkene) (STV 1.0 0.9091)) +(: cnet_isa_e23e017e79 (IsA ethylene gas) (STV 1.0 0.9091)) +(: cnet_isa_6dc8e74e16 (IsA ethylene_glycol antifreeze) (STV 1.0 0.9091)) +(: cnet_isa_1f7bf4aafe (IsA ethylenediaminetetraacetic_acid molecule) (STV 1.0 0.9091)) +(: cnet_isa_4ff0d1aad9 (IsA etiolation weakening) (STV 1.0 0.9091)) +(: cnet_isa_0fe3679b22 (IsA etiolation appearance) (STV 1.0 0.9091)) +(: cnet_isa_8e8e291894 (IsA etiolation bleach) (STV 1.0 0.9091)) +(: cnet_isa_fba238d6e3 (IsA etiologist diagnostician) (STV 1.0 0.9091)) +(: cnet_isa_daf9722f7a (IsA etiology philosophy) (STV 1.0 0.9091)) +(: cnet_isa_6262d3fe75 (IsA etiology cause) (STV 1.0 0.9091)) +(: cnet_isa_7f37cd2ec6 (IsA etiquette rule) (STV 1.0 0.9091)) +(: cnet_isa_87a1226c8e (IsA eton_collar collar) (STV 1.0 0.9091)) +(: cnet_isa_7a4bbba618 (IsA eton_college public_school) (STV 1.0 0.9091)) +(: cnet_isa_1d6731f7cc (IsA eton_jacket jacket) (STV 1.0 0.9091)) +(: cnet_isa_c5e5decbd4 (IsA etonian student) (STV 1.0 0.9091)) +(: cnet_isa_90145c9685 (IsA etropus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_c2d5198c30 (IsA etruscan italian) (STV 1.0 0.9091)) +(: cnet_isa_c6902220e7 (IsA etude musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_30fefa7c6d (IsA etui bag) (STV 1.0 0.9091)) +(: cnet_isa_f6c9b504d4 (IsA etymological_dictionary dictionary) (STV 1.0 0.9091)) +(: cnet_isa_15bc24d49a (IsA etymologist lexicographer) (STV 1.0 0.9091)) +(: cnet_isa_fb133b3dc3 (IsA etymology linguistic) (STV 1.0 0.9091)) +(: cnet_isa_df588131f6 (IsA etymology history) (STV 1.0 0.9091)) +(: cnet_isa_f6c73e4052 (IsA etymon form) (STV 1.0 0.9091)) +(: cnet_isa_ee97cd4bab (IsA euarcto mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_a79ad30776 (IsA euascomycete class) (STV 1.0 0.9091)) +(: cnet_isa_0dd45a3b12 (IsA eubacteria bacteria) (STV 1.0 0.9091)) +(: cnet_isa_4ce74c80b4 (IsA eubacteria moneran) (STV 1.0 0.9091)) +(: cnet_isa_ed26499153 (IsA eubacteriale animal_order) (STV 1.0 0.9091)) +(: cnet_isa_035ad0b05d (IsA eubryale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_49dc8e7c57 (IsA eucalyptus gum_tree) (STV 1.0 0.9091)) +(: cnet_isa_5d0c977fc8 (IsA eucalyptus wood) (STV 1.0 0.9091)) +(: cnet_isa_129c2759c7 (IsA eucalyptus_gum gum) (STV 1.0 0.9091)) +(: cnet_isa_caa6aba72d (IsA eucalyptus_oil essential_oil) (STV 1.0 0.9091)) +(: cnet_isa_7c3103622e (IsA eucarya dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c77a4a180a (IsA euchre card_game) (STV 1.0 0.9091)) +(: cnet_isa_486d8572a9 (IsA eucinostomus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_a709c1bc38 (IsA euclid_s_first_axiom euclid_s_postulate) (STV 1.0 0.9091)) +(: cnet_isa_b7e87970dc (IsA euclid_s_fourth_axiom euclid_s_postulate) (STV 1.0 0.9091)) +(: cnet_isa_a8190d42b5 (IsA euclid_s_postulate axiom) (STV 1.0 0.9091)) +(: cnet_isa_0959781d23 (IsA euclid_s_second_axiom euclid_s_postulate) (STV 1.0 0.9091)) +(: cnet_isa_a003975dc6 (IsA euclid_s_third_axiom euclid_s_postulate) (STV 1.0 0.9091)) +(: cnet_isa_54adc6ea84 (IsA euclidean_space metric_space) (STV 1.0 0.9091)) +(: cnet_isa_1921d7e7e7 (IsA eudemon guardian_spirit) (STV 1.0 0.9091)) +(: cnet_isa_9e027a5ed1 (IsA eudemonism ethic) (STV 1.0 0.9091)) +(: cnet_isa_64e3eba0e8 (IsA euderma mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_77e93ec037 (IsA eudiometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_3ab36184f8 (IsA eudypte bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_a98720cd96 (IsA eugenia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_13993c1560 (IsA eugenic life_science) (STV 1.0 0.9091)) +(: cnet_isa_4852df3c40 (IsA euglena protozoan) (STV 1.0 0.9091)) +(: cnet_isa_e4f692a59e (IsA euglenaceae protoctist_family) (STV 1.0 0.9091)) +(: cnet_isa_68eaa15649 (IsA euglenoid alga) (STV 1.0 0.9091)) +(: cnet_isa_4059e4d384 (IsA euglenophyceae class) (STV 1.0 0.9091)) +(: cnet_isa_4340ca09f7 (IsA euglenophyta division) (STV 1.0 0.9091)) +(: cnet_isa_1ce45780ce (IsA eukaryote organism) (STV 1.0 0.9091)) +(: cnet_isa_28fd2f07bb (IsA eukaryoyte organism) (STV 1.0 0.9339)) +(: cnet_isa_4e28d525d9 (IsA eulogist orator) (STV 1.0 0.9091)) +(: cnet_isa_9edbcccfcf (IsA eulogium praise) (STV 1.0 0.9091)) +(: cnet_isa_d40d5a3a36 (IsA eumece reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_7ef0f7957b (IsA eumene arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_a636a8193d (IsA eumetopia mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_dd66d81d07 (IsA eumop mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_8677528718 (IsA eumycete class) (STV 1.0 0.9091)) +(: cnet_isa_64b756e078 (IsA eumycota division) (STV 1.0 0.9091)) +(: cnet_isa_afda96b2bb (IsA eunecte reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_c4297e172c (IsA eunuch man) (STV 1.0 0.9091)) +(: cnet_isa_26a9510734 (IsA euonymus plant) (STV 1.0 0.9091)) +(: cnet_isa_d364f41488 (IsA euonymus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_81a2d2a59b (IsA euopean_hoopoe hoopoe) (STV 1.0 0.9091)) +(: cnet_isa_4c9914954d (IsA eupatorium asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3847951911 (IsA euphagus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_d132abfb1f (IsA euphausia_pacifica krill) (STV 1.0 0.9091)) +(: cnet_isa_7a0443fc7e (IsA euphausiacea animal_order) (STV 1.0 0.9091)) +(: cnet_isa_dd9bbf74d5 (IsA euphemism saying) (STV 1.0 0.9091)) +(: cnet_isa_874f4eaba4 (IsA euphonium bass_horn) (STV 1.0 0.9091)) +(: cnet_isa_be54a1fb6c (IsA euphorbia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2c89cb3b29 (IsA euphorbiaceae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_b8e92da41c (IsA euphorbium gum) (STV 1.0 0.9091)) +(: cnet_isa_b6db26e806 (IsA euphoria elation) (STV 1.0 0.9091)) +(: cnet_isa_591a090563 (IsA euphoriant psychoactive_drug) (STV 1.0 0.9091)) +(: cnet_isa_b4d9d81a40 (IsA euphractus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_30497d5781 (IsA euphrosyne grace) (STV 1.0 0.9091)) +(: cnet_isa_c1733da683 (IsA euphuism expressive_style) (STV 1.0 0.9091)) +(: cnet_isa_866568e7fa (IsA euphuism prose) (STV 1.0 0.9091)) +(: cnet_isa_f751e812b9 (IsA euplectella sponge_genus) (STV 1.0 0.9091)) +(: cnet_isa_c076d058fa (IsA eupnea breathing) (STV 1.0 0.9091)) +(: cnet_isa_d234b0fe8f (IsA euproctis arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_a29060af79 (IsA eurafrican african) (STV 1.0 0.9091)) +(: cnet_isa_851c459ace (IsA eurafrican european) (STV 1.0 0.9091)) +(: cnet_isa_4327bcdb7f (IsA eurasian asiatic) (STV 1.0 0.9091)) +(: cnet_isa_1d2b9c85d6 (IsA eurasian european) (STV 1.0 0.9091)) +(: cnet_isa_03385df85d (IsA eurasian_badger badger) (STV 1.0 0.9091)) +(: cnet_isa_5e031dcc00 (IsA eurasian_green_toad true_toad) (STV 1.0 0.9091)) +(: cnet_isa_0422e12751 (IsA eurasian_hamster hamster) (STV 1.0 0.9091)) +(: cnet_isa_46508c30da (IsA eurasian_kingfisher kingfisher) (STV 1.0 0.9091)) +(: cnet_isa_028fb979fc (IsA eurasian_otter otter) (STV 1.0 0.9091)) +(: cnet_isa_2fb97be193 (IsA eurasian_woodcock woodcock) (STV 1.0 0.9091)) +(: cnet_isa_013287d6fe (IsA euro monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_f5c7a10ac9 (IsA eurobabble jargon) (STV 1.0 0.9091)) +(: cnet_isa_9ac7cbd2d3 (IsA eurocentrism partiality) (STV 1.0 0.9091)) +(: cnet_isa_04f42debf9 (IsA eurocurrency currency) (STV 1.0 0.9091)) +(: cnet_isa_d910d4e701 (IsA eurodollar eurocurrency) (STV 1.0 0.9091)) +(: cnet_isa_7c962416f5 (IsA eurodollar united_state_dollar) (STV 1.0 0.9091)) +(: cnet_isa_4eb62cd9ac (IsA euronithopoda animal_order) (STV 1.0 0.9091)) +(: cnet_isa_3e1690e894 (IsA europa moon_of_jupiter) (STV 1.0 0.9339)) +(: cnet_isa_729f02d3ec (IsA europan artificial_language) (STV 1.0 0.9091)) +(: cnet_isa_31b5b6c4dc (IsA europe continent) (STV 1.0 0.9339)) +(: cnet_isa_90511089ff (IsA europe collection) (STV 1.0 0.9091)) +(: cnet_isa_c89b47f9f0 (IsA european inhabitant) (STV 1.0 0.9091)) +(: cnet_isa_a0d6c3212a (IsA european_ash ash) (STV 1.0 0.9091)) +(: cnet_isa_d176db9ad7 (IsA european_beggar_tick bur_marigold) (STV 1.0 0.9091)) +(: cnet_isa_1242e1c727 (IsA european_bittern bittern) (STV 1.0 0.9091)) +(: cnet_isa_32eef02a70 (IsA european_black_grouse black_grouse) (STV 1.0 0.9091)) +(: cnet_isa_6bb8098993 (IsA european_bog_asphodel bog_asphodel) (STV 1.0 0.9091)) +(: cnet_isa_b1de112a47 (IsA european_bream freshwater_bream) (STV 1.0 0.9091)) +(: cnet_isa_7a7fb90a01 (IsA european_catfish silurid) (STV 1.0 0.9091)) +(: cnet_isa_bcfa57a470 (IsA european_central_bank central_bank) (STV 1.0 0.9091)) +(: cnet_isa_7c3ffeb996 (IsA european_chestnut chestnut) (STV 1.0 0.9091)) +(: cnet_isa_b6b69ca78a (IsA european_country country) (STV 1.0 0.9091)) +(: cnet_isa_789c702cbf (IsA european_cranberry cranberry) (STV 1.0 0.9091)) +(: cnet_isa_ed717b6f31 (IsA european_creeper creeper) (STV 1.0 0.9091)) +(: cnet_isa_f564059703 (IsA european_cuckoo cuckoo) (STV 1.0 0.9091)) +(: cnet_isa_7308923758 (IsA european_curlew curlew) (STV 1.0 0.9091)) +(: cnet_isa_84f86b8d9a (IsA european_dewberry dewberry) (STV 1.0 0.9091)) +(: cnet_isa_b80e6470bf (IsA european_dogtooth dogtooth_violet) (STV 1.0 0.9091)) +(: cnet_isa_0cf37aff1b (IsA european_fire_salamander salamander) (STV 1.0 0.9091)) +(: cnet_isa_3d23bd1c9f (IsA european_flatfish righteye_flounder) (STV 1.0 0.9091)) +(: cnet_isa_157d0c0fd1 (IsA european_fly_honeysuckle honeysuckle) (STV 1.0 0.9091)) +(: cnet_isa_abaf42e4e8 (IsA european_gallinule purple_gallinule) (STV 1.0 0.9091)) +(: cnet_isa_db21344495 (IsA european_goatsucker goatsucker) (STV 1.0 0.9091)) +(: cnet_isa_0a14ba7106 (IsA european_hackberry hackberry) (STV 1.0 0.9091)) +(: cnet_isa_4db0a60b1a (IsA european_hare hare) (STV 1.0 0.9091)) +(: cnet_isa_e01a3ac74b (IsA european_hornbeam hornbeam) (STV 1.0 0.9091)) +(: cnet_isa_1be6911894 (IsA european_house_cricket cricket) (STV 1.0 0.9091)) +(: cnet_isa_1eb22decd2 (IsA european_lady_tress lady_tress) (STV 1.0 0.9091)) +(: cnet_isa_6dd9ce7687 (IsA european_larch larch) (STV 1.0 0.9091)) +(: cnet_isa_8d3f96c920 (IsA european_lemming lemming) (STV 1.0 0.9091)) +(: cnet_isa_852464b43e (IsA european_lobster true_lobster) (STV 1.0 0.9091)) +(: cnet_isa_af3a76f9cd (IsA european_lobster lobster) (STV 1.0 0.9091)) +(: cnet_isa_74588af578 (IsA european_magpie magpie) (STV 1.0 0.9091)) +(: cnet_isa_8930dcc0ba (IsA european_nuthatch nuthatch) (STV 1.0 0.9091)) +(: cnet_isa_3571acf313 (IsA european_parsley_fern rock_brake) (STV 1.0 0.9091)) +(: cnet_isa_7460d8f357 (IsA european_pasqueflower pasqueflower) (STV 1.0 0.9091)) +(: cnet_isa_959c562b11 (IsA european_perch perch) (STV 1.0 0.9091)) +(: cnet_isa_e9c41cf29a (IsA european_plan hotel_plan) (STV 1.0 0.9091)) +(: cnet_isa_7bd3252525 (IsA european_rabbit rabbit) (STV 1.0 0.9091)) +(: cnet_isa_a04f7a2c31 (IsA european_red_elder elder) (STV 1.0 0.9091)) +(: cnet_isa_9a15392206 (IsA european_roller roller) (STV 1.0 0.9091)) +(: cnet_isa_6bea720b6c (IsA european_sandpiper sandpiper) (STV 1.0 0.9091)) +(: cnet_isa_1ce93feebb (IsA european_sanicle sanicle) (STV 1.0 0.9091)) +(: cnet_isa_130edad379 (IsA european_sea_bream sea_bream) (STV 1.0 0.9091)) +(: cnet_isa_75e3eafd31 (IsA european_shrike butcherbird) (STV 1.0 0.9091)) +(: cnet_isa_6e3aee0011 (IsA european_silver_fir silver_fir) (STV 1.0 0.9091)) +(: cnet_isa_0c98c52ed5 (IsA european_smelt smelt) (STV 1.0 0.9091)) +(: cnet_isa_c9e18d3ad6 (IsA european_sole sole) (STV 1.0 0.9091)) +(: cnet_isa_1e24d1a65f (IsA european_spider_crab spider_crab) (STV 1.0 0.9091)) +(: cnet_isa_b04e6de196 (IsA european_swift swift) (STV 1.0 0.9091)) +(: cnet_isa_75c9e992c5 (IsA european_toad true_toad) (STV 1.0 0.9091)) +(: cnet_isa_94fddcb722 (IsA european_tortoise tortoise) (STV 1.0 0.9091)) +(: cnet_isa_63f4a9424b (IsA european_turkey_oak oak) (STV 1.0 0.9091)) +(: cnet_isa_87ab247b11 (IsA european_union world_organization) (STV 1.0 0.9091)) +(: cnet_isa_0d8b3c6c15 (IsA european_water_ouzel water_ouzel) (STV 1.0 0.9091)) +(: cnet_isa_16d6277d80 (IsA european_water_shrew water_shrew) (STV 1.0 0.9091)) +(: cnet_isa_9f3e7bde5d (IsA european_white_lily water_lily) (STV 1.0 0.9091)) +(: cnet_isa_d029df205b (IsA european_wildcat wildcat) (STV 1.0 0.9091)) +(: cnet_isa_994d9bea4a (IsA european_wolf_spider wolf_spider) (STV 1.0 0.9091)) +(: cnet_isa_cc03085f89 (IsA european_wood_mouse field_mouse) (STV 1.0 0.9091)) +(: cnet_isa_10b89fbf96 (IsA european_woolly_thistle woolly_thistle) (STV 1.0 0.9091)) +(: cnet_isa_1ddaedb40f (IsA europeanization assimilation) (STV 1.0 0.9091)) +(: cnet_isa_03bb897d33 (IsA europium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_7d59eaa132 (IsA europol police) (STV 1.0 0.9091)) +(: cnet_isa_479f11c9db (IsA eurotiale fungus_order) (STV 1.0 0.9091)) +(: cnet_isa_5e5d52f7f0 (IsA eurotium fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_5975e54ff1 (IsA euryale echinoderm_genus) (STV 1.0 0.9091)) +(: cnet_isa_237f4e409d (IsA euryale gorgon) (STV 1.0 0.9091)) +(: cnet_isa_7be036db42 (IsA euryalida class) (STV 1.0 0.9091)) +(: cnet_isa_7c6fca8418 (IsA eurylaimi animal_order) (STV 1.0 0.9091)) +(: cnet_isa_0f25ba48e3 (IsA eurylaimidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_bebbcd9393 (IsA eurypterid arthropod) (STV 1.0 0.9091)) +(: cnet_isa_0a6574caa9 (IsA eurypterida animal_order) (STV 1.0 0.9091)) +(: cnet_isa_02af94cb3c (IsA eurythmy diversion) (STV 1.0 0.9091)) +(: cnet_isa_8c3a025d3e (IsA eurythmy motion) (STV 1.0 0.9091)) +(: cnet_isa_7a6f0ce202 (IsA eusporangium sporangium) (STV 1.0 0.9091)) +(: cnet_isa_955c48e095 (IsA eustachian_tube salpinx) (STV 1.0 0.9091)) +(: cnet_isa_3c934cabec (IsA eustoma dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_67dfa25288 (IsA eutamia mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_1aea419188 (IsA eutectic mixture) (STV 1.0 0.9091)) +(: cnet_isa_93826352c6 (IsA eutectoid_steel carbon_steel) (STV 1.0 0.9091)) +(: cnet_isa_08190d2100 (IsA euterpe monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f262ea375c (IsA euthanasia killing) (STV 1.0 0.9091)) +(: cnet_isa_294c9fe2e9 (IsA euthenic life_science) (STV 1.0 0.9091)) +(: cnet_isa_07f19781f5 (IsA eutheria class) (STV 1.0 0.9091)) +(: cnet_isa_2c6ed533b4 (IsA euthynnus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_4201227c6c (IsA eutrophication organic_process) (STV 1.0 0.9091)) +(: cnet_isa_6387cee198 (IsA evacuation withdrawal) (STV 1.0 0.9091)) +(: cnet_isa_a352a514e6 (IsA evacuee migrant) (STV 1.0 0.9091)) +(: cnet_isa_af31307efe (IsA evaluation judgment) (STV 1.0 0.9091)) +(: cnet_isa_d337c5397e (IsA evaluation appraisal) (STV 1.0 0.9091)) +(: cnet_isa_8e30e174de (IsA evaluator authority) (STV 1.0 0.9091)) +(: cnet_isa_d51b7ece4a (IsA evanescence disappearance) (STV 1.0 0.9091)) +(: cnet_isa_e3fe421184 (IsA evangelical_and_reformed_church protestant_denomination) (STV 1.0 0.9091)) +(: cnet_isa_408422f02d (IsA evangelical_united_brethren_church methodist_denomination) (STV 1.0 0.9091)) +(: cnet_isa_be27967a22 (IsA evangelicalism protestantism) (STV 1.0 0.9091)) +(: cnet_isa_3271648aa5 (IsA evangelism sermon) (STV 1.0 0.9091)) +(: cnet_isa_c16ae15a95 (IsA evangelist preacher) (STV 1.0 0.9091)) +(: cnet_isa_f5a8c267e8 (IsA evangelist spiritual_leader) (STV 1.0 0.9091)) +(: cnet_isa_705e0e428c (IsA evaporated_milk concentrate) (STV 1.0 0.9091)) +(: cnet_isa_22519bbe33 (IsA evaporated_milk milk) (STV 1.0 0.9091)) +(: cnet_isa_d865d1ce76 (IsA evaporative_cooler cooling_system) (STV 1.0 0.9091)) +(: cnet_isa_55d4695bcd (IsA evaporite sediment) (STV 1.0 0.9091)) +(: cnet_isa_dd883af5ca (IsA evasion commerce) (STV 1.0 0.9091)) +(: cnet_isa_b94aadb915 (IsA evasion escape) (STV 1.0 0.9091)) +(: cnet_isa_8a37c0b72b (IsA evasion negligence) (STV 1.0 0.9091)) +(: cnet_isa_dd875c10c9 (IsA evasion misrepresentation) (STV 1.0 0.9091)) +(: cnet_isa_919c081f8e (IsA evasive_answer answer) (STV 1.0 0.9091)) +(: cnet_isa_c94fb9c78e (IsA eve day) (STV 1.0 0.9091)) +(: cnet_isa_955bd54f5b (IsA eve time_period) (STV 1.0 0.9091)) +(: cnet_isa_43a414779d (IsA even_pinnate_leaf pinnate_leaf) (STV 1.0 0.9091)) +(: cnet_isa_a935cea196 (IsA even_spacing regularity) (STV 1.0 0.9091)) +(: cnet_isa_bc3db626be (IsA even_toed_ungulate ungulate) (STV 1.0 0.9091)) +(: cnet_isa_8468f0af0a (IsA evening day) (STV 1.0 0.9091)) +(: cnet_isa_23a86589dd (IsA evening time_period) (STV 1.0 0.9091)) +(: cnet_isa_28da71f83f (IsA evening_bag bag) (STV 1.0 0.9091)) +(: cnet_isa_92970bda00 (IsA evening_grosbeak grosbeak) (STV 1.0 0.9091)) +(: cnet_isa_6306e84fdf (IsA evening_primrose herb) (STV 1.0 0.9091)) +(: cnet_isa_5b7cca1983 (IsA evening_shift shift) (STV 1.0 0.9091)) +(: cnet_isa_0e695548ca (IsA evening_snow phlox) (STV 1.0 0.9091)) +(: cnet_isa_110b69e336 (IsA evenk tungusic) (STV 1.0 0.9091)) +(: cnet_isa_dd25796508 (IsA evenness equality) (STV 1.0 0.9091)) +(: cnet_isa_57ea1d523e (IsA evenness regularity) (STV 1.0 0.9091)) +(: cnet_isa_543a614355 (IsA evenness parity) (STV 1.0 0.9091)) +(: cnet_isa_0e27f48499 (IsA event psychological_feature) (STV 1.0 0.9091)) +(: cnet_isa_a377ead64f (IsA event physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_53474034d0 (IsA event circumstance) (STV 1.0 0.9091)) +(: cnet_isa_6e1613b948 (IsA event_planner assistant) (STV 1.0 0.9091)) +(: cnet_isa_9b49a4ad6f (IsA eventration hernia) (STV 1.0 0.9091)) +(: cnet_isa_7483d0aade (IsA eventuality happening) (STV 1.0 0.9091)) +(: cnet_isa_33e006421f (IsA evergreen vascular_plant) (STV 1.0 0.9091)) +(: cnet_isa_2dc049cd9e (IsA evergreen_bittersweet vine) (STV 1.0 0.9091)) +(: cnet_isa_06f55d8001 (IsA evergreen_blueberry blueberry) (STV 1.0 0.9091)) +(: cnet_isa_a1cde60085 (IsA evergreen_huckleberry blueberry) (STV 1.0 0.9091)) +(: cnet_isa_420d235113 (IsA evergreen_thorn hawthorn) (STV 1.0 0.9091)) +(: cnet_isa_30d12591ca (IsA everlasting composite) (STV 1.0 0.9091)) +(: cnet_isa_5d40dc2582 (IsA everlasting_pea vine) (STV 1.0 0.9091)) +(: cnet_isa_e0dc9ec319 (IsA everlastingness lastingness) (STV 1.0 0.9091)) +(: cnet_isa_21a26e760d (IsA evernia fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_30aaab0ab0 (IsA eversion position) (STV 1.0 0.9091)) +(: cnet_isa_c05ad5d631 (IsA everybody alway_younger_than_father) (STV 1.0 0.9091)) +(: cnet_isa_b541945db8 (IsA everyman commoner) (STV 1.0 0.9091)) +(: cnet_isa_b20e1dd629 (IsA eviction compulsion) (STV 1.0 0.9091)) +(: cnet_isa_6d43cec7ed (IsA eviction due_process) (STV 1.0 0.9091)) +(: cnet_isa_93cbd17cd0 (IsA evidence information) (STV 1.0 0.9091)) +(: cnet_isa_0247085e48 (IsA evidence indication) (STV 1.0 0.9091)) +(: cnet_isa_efc9bdc916 (IsA evil transgression) (STV 1.0 0.9091)) +(: cnet_isa_3c24021b99 (IsA evil immorality) (STV 1.0 0.9091)) +(: cnet_isa_d1109082ec (IsA evil_eye look) (STV 1.0 0.9091)) +(: cnet_isa_67e40ac9f7 (IsA evil_spirit spirit) (STV 1.0 0.9091)) +(: cnet_isa_fb66e5bbbb (IsA evisceration devaluation) (STV 1.0 0.9091)) +(: cnet_isa_aa0d9b0cc8 (IsA evisceration operation) (STV 1.0 0.9091)) +(: cnet_isa_528890a728 (IsA evocation conjuring) (STV 1.0 0.9091)) +(: cnet_isa_b1bbcac215 (IsA evocation imagination) (STV 1.0 0.9091)) +(: cnet_isa_90431587be (IsA evocation stimulation) (STV 1.0 0.9091)) +(: cnet_isa_6adedaaeb1 (IsA evoked_potential electric_potential) (STV 1.0 0.9091)) +(: cnet_isa_f6c1b7704c (IsA evolution organic_process) (STV 1.0 0.9091)) +(: cnet_isa_8aac41e6fa (IsA evolutionary_trend drift) (STV 1.0 0.9091)) +(: cnet_isa_2573bf8ff1 (IsA evolutionist believer) (STV 1.0 0.9091)) +(: cnet_isa_94ce267e5d (IsA ewe sheep) (STV 1.0 0.9091)) +(: cnet_isa_6fbc14d162 (IsA ewe kwa) (STV 1.0 0.9091)) +(: cnet_isa_d75f69099f (IsA ewe african) (STV 1.0 0.9091)) +(: cnet_isa_13f69267b7 (IsA ewenki asiatic) (STV 1.0 0.9091)) +(: cnet_isa_5e9b420b48 (IsA ewing_s_sarcoma sarcoma) (STV 1.0 0.9091)) +(: cnet_isa_86db6a8c08 (IsA ex_boyfriend man) (STV 1.0 0.9091)) +(: cnet_isa_5afc2b34f9 (IsA ex_gambler gambler) (STV 1.0 0.9091)) +(: cnet_isa_bafefe3225 (IsA ex_husband man) (STV 1.0 0.9091)) +(: cnet_isa_ea1924e7e5 (IsA ex_mayor mayor) (STV 1.0 0.9091)) +(: cnet_isa_69fb75da50 (IsA ex_president president) (STV 1.0 0.9091)) +(: cnet_isa_dbee5ae14e (IsA ex_spouse adult) (STV 1.0 0.9091)) +(: cnet_isa_17153a8d60 (IsA exabit computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_8dae133c18 (IsA exabyte computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_02e1785de0 (IsA exacerbation exasperation) (STV 1.0 0.9091)) +(: cnet_isa_47f8bc1c91 (IsA exacta bet) (STV 1.0 0.9091)) +(: cnet_isa_1147fb6865 (IsA exaction demand) (STV 1.0 0.9091)) +(: cnet_isa_d536318e36 (IsA exactness accuracy) (STV 1.0 0.9091)) +(: cnet_isa_2c527180a2 (IsA exacum dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_75ae57a62d (IsA exaeretodon reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_71534b450e (IsA exaggeration increase) (STV 1.0 0.9091)) +(: cnet_isa_15dafa4f54 (IsA exaggeration misrepresentation) (STV 1.0 0.9091)) +(: cnet_isa_729c2eff17 (IsA exaltation flock) (STV 1.0 0.9091)) +(: cnet_isa_1a39f3f499 (IsA exaltation celestial_point) (STV 1.0 0.9091)) +(: cnet_isa_2c5439494b (IsA exam_table table_where_person_examed) (STV 1.0 0.9091)) +(: cnet_isa_6973c79b50 (IsA examen criticism) (STV 1.0 0.9091)) +(: cnet_isa_c6c755e480 (IsA examen introspection) (STV 1.0 0.9091)) +(: cnet_isa_e6c2e8a4a6 (IsA examination investigation) (STV 1.0 0.9091)) +(: cnet_isa_5a501fdca2 (IsA examination communication) (STV 1.0 0.9091)) +(: cnet_isa_3c5ef00871 (IsA examiner inquirer) (STV 1.0 0.9091)) +(: cnet_isa_8814a4c76e (IsA examiner investigator) (STV 1.0 0.9091)) +(: cnet_isa_22370c3b4f (IsA example information) (STV 1.0 0.9091)) +(: cnet_isa_c44c970fdf (IsA example admonition) (STV 1.0 0.9091)) +(: cnet_isa_20f3338706 (IsA exanthem eruption) (STV 1.0 0.9091)) +(: cnet_isa_990102658d (IsA exanthema_subitum disease) (STV 1.0 0.9091)) +(: cnet_isa_942faf348c (IsA exarch bishop) (STV 1.0 0.9091)) +(: cnet_isa_9b0b6d24ee (IsA exarch viceroy) (STV 1.0 0.9091)) +(: cnet_isa_ecd984b0a1 (IsA exasperation annoyance) (STV 1.0 0.9091)) +(: cnet_isa_719813ab21 (IsA exbibit computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_3c487a4eb3 (IsA exbibyte computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_a246cf9066 (IsA excavation creating_by_removal) (STV 1.0 0.9091)) +(: cnet_isa_15de5a3cf4 (IsA excavation artifact) (STV 1.0 0.9091)) +(: cnet_isa_f31166f2e8 (IsA excavator workman) (STV 1.0 0.9091)) +(: cnet_isa_f202899866 (IsA exceedance probability) (STV 1.0 0.9091)) +(: cnet_isa_de42791fb7 (IsA excellence quality) (STV 1.0 0.9091)) +(: cnet_isa_aa6a5106c6 (IsA excellence feature) (STV 1.0 0.9091)) +(: cnet_isa_8f997b571b (IsA excellency important_person) (STV 1.0 0.9091)) +(: cnet_isa_20fe1ebe05 (IsA excelsior packing_material) (STV 1.0 0.9091)) +(: cnet_isa_3d4b8cd641 (IsA exception example) (STV 1.0 0.9091)) +(: cnet_isa_449d44f4cf (IsA exception omission) (STV 1.0 0.9091)) +(: cnet_isa_a44acbd523 (IsA exception objection) (STV 1.0 0.9091)) +(: cnet_isa_b8549583bd (IsA excercise physical_activity) (STV 1.0 0.9091)) +(: cnet_isa_9c1a3fc7d1 (IsA excerpt passage) (STV 1.0 0.9091)) +(: cnet_isa_b6f43d2dff (IsA excess immoderation) (STV 1.0 0.9091)) +(: cnet_isa_df42852fed (IsA excess overabundance) (STV 1.0 0.9091)) +(: cnet_isa_0c296e4ece (IsA exchange commerce) (STV 1.0 0.9091)) +(: cnet_isa_30422b5316 (IsA exchange group_action) (STV 1.0 0.9091)) +(: cnet_isa_e63ba06132 (IsA exchange transaction) (STV 1.0 0.9091)) +(: cnet_isa_42a28745a5 (IsA exchange workplace) (STV 1.0 0.9091)) +(: cnet_isa_9894e036dc (IsA exchange capture) (STV 1.0 0.9091)) +(: cnet_isa_a19ee1fd4b (IsA exchange conversation) (STV 1.0 0.9091)) +(: cnet_isa_15e77012f7 (IsA exchange chemical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_a6a1c831e9 (IsA exchange_traded_fund mutual_fund) (STV 1.0 0.9091)) +(: cnet_isa_7d566f6bed (IsA exchange_transfusion transfusion) (STV 1.0 0.9091)) +(: cnet_isa_60ad6d358d (IsA exchangeability changeableness) (STV 1.0 0.9091)) +(: cnet_isa_089fd0cf19 (IsA exchanger money_handler) (STV 1.0 0.9091)) +(: cnet_isa_e3c04229d0 (IsA excise indirect_tax) (STV 1.0 0.9091)) +(: cnet_isa_5dc2393a31 (IsA excitability emotionality) (STV 1.0 0.9091)) +(: cnet_isa_2073e3d63e (IsA excitability responsiveness) (STV 1.0 0.9091)) +(: cnet_isa_f5db3dfee0 (IsA excitation arousal) (STV 1.0 0.9091)) +(: cnet_isa_a7c7a37b2b (IsA excitement emotional_arousal) (STV 1.0 0.9091)) +(: cnet_isa_244787d851 (IsA exclamation complaint) (STV 1.0 0.9091)) +(: cnet_isa_101b93759d (IsA exclamation utterance) (STV 1.0 0.9091)) +(: cnet_isa_cac8a55ec8 (IsA exclamation_mark punctuation) (STV 1.0 0.9091)) +(: cnet_isa_fb7af90a27 (IsA exclusion situation) (STV 1.0 0.9091)) +(: cnet_isa_c7eb547729 (IsA exclusionary_rule rule_of_evidence) (STV 1.0 0.9091)) +(: cnet_isa_de163df197 (IsA exclusive report) (STV 1.0 0.9091)) +(: cnet_isa_167dabe1ef (IsA excogitation thinking) (STV 1.0 0.9091)) +(: cnet_isa_5b480efbfc (IsA excogitator thinker) (STV 1.0 0.9091)) +(: cnet_isa_f978db3f01 (IsA excommunication banishment) (STV 1.0 0.9091)) +(: cnet_isa_e062955ca9 (IsA excommunication rejection) (STV 1.0 0.9091)) +(: cnet_isa_50c4dde3d2 (IsA excoriation denunciation) (STV 1.0 0.9091)) +(: cnet_isa_409a6606c9 (IsA excrescence growth) (STV 1.0 0.9091)) +(: cnet_isa_5a1ae58884 (IsA excrescence process) (STV 1.0 0.9091)) +(: cnet_isa_9ceb1f5db1 (IsA excretory_organ internal_organ) (STV 1.0 0.9091)) +(: cnet_isa_e417c04d91 (IsA exculpation forgiveness) (STV 1.0 0.9091)) +(: cnet_isa_47f4716d56 (IsA excursion journey) (STV 1.0 0.9091)) +(: cnet_isa_4d445f82a4 (IsA excursion_rate rate) (STV 1.0 0.9091)) +(: cnet_isa_cbdbbdae33 (IsA excuse defense) (STV 1.0 0.9091)) +(: cnet_isa_992e7b25ee (IsA excuse note) (STV 1.0 0.9091)) +(: cnet_isa_ee9d01cdd4 (IsA execration object) (STV 1.0 0.9091)) +(: cnet_isa_2cdee0bd50 (IsA execration denunciation) (STV 1.0 0.9091)) +(: cnet_isa_3595dc1f6b (IsA executability capability) (STV 1.0 0.9091)) +(: cnet_isa_821d69e614 (IsA executant performer) (STV 1.0 0.9091)) +(: cnet_isa_e4765c07d9 (IsA execute form_of_punishment) (STV 1.0 0.9091)) +(: cnet_isa_facc8e6d8d (IsA execution corporal_punishment) (STV 1.0 0.9091)) +(: cnet_isa_3b47e27be9 (IsA execution enforcement) (STV 1.0 0.9091)) +(: cnet_isa_54956d1b69 (IsA execution process) (STV 1.0 0.9091)) +(: cnet_isa_82769e6063 (IsA execution court_order) (STV 1.0 0.9091)) +(: cnet_isa_649b4b6407 (IsA execution subscription) (STV 1.0 0.9091)) +(: cnet_isa_3572c8dc9f (IsA execution_speed speed) (STV 1.0 0.9091)) +(: cnet_isa_5b104af899 (IsA executioner killer) (STV 1.0 0.9091)) +(: cnet_isa_b607f3661e (IsA executive administration) (STV 1.0 0.9091)) +(: cnet_isa_a28e64248b (IsA executive administrator) (STV 1.0 0.9091)) +(: cnet_isa_f49a3a04d0 (IsA executive_agency agency) (STV 1.0 0.9091)) +(: cnet_isa_7d3faaa510 (IsA executive_branch branch) (STV 1.0 0.9091)) +(: cnet_isa_35d200487a (IsA executive_clemency office) (STV 1.0 0.9091)) +(: cnet_isa_eb36db6d16 (IsA executive_council council) (STV 1.0 0.9091)) +(: cnet_isa_cf0dda6cb8 (IsA executive_department federal_department) (STV 1.0 0.9091)) +(: cnet_isa_6af0341a4f (IsA executive_officer military_officer) (STV 1.0 0.9091)) +(: cnet_isa_879bcf1650 (IsA executive_secretary secretary) (STV 1.0 0.9091)) +(: cnet_isa_fb645747cf (IsA executive_session session) (STV 1.0 0.9091)) +(: cnet_isa_dbcc4faac4 (IsA executive_vice_president vice_president) (STV 1.0 0.9091)) +(: cnet_isa_ac9246561f (IsA executor fiduciary) (STV 1.0 0.9091)) +(: cnet_isa_1037d7372f (IsA executor_heir_relation fiduciary_relation) (STV 1.0 0.9091)) +(: cnet_isa_87b5aff231 (IsA executrix executor) (STV 1.0 0.9091)) +(: cnet_isa_7ba7d283a5 (IsA exegesis interpretation) (STV 1.0 0.9091)) +(: cnet_isa_0a1e586f94 (IsA exegete expert) (STV 1.0 0.9091)) +(: cnet_isa_52ae5ed6d5 (IsA exemplar ideal) (STV 1.0 0.9091)) +(: cnet_isa_ed8b11b57a (IsA exemplification demonstration) (STV 1.0 0.9091)) +(: cnet_isa_f4536d7ebd (IsA exemption release) (STV 1.0 0.9091)) +(: cnet_isa_a064dd55e2 (IsA exemption tax_write_off) (STV 1.0 0.9091)) +(: cnet_isa_09cd9a54ea (IsA exemption unsusceptibility) (STV 1.0 0.9091)) +(: cnet_isa_9ba527fb2d (IsA exenteration operation) (STV 1.0 0.9091)) +(: cnet_isa_c050120e2f (IsA exercise event) (STV 1.0 0.9091)) +(: cnet_isa_500f0c6b52 (IsA exercise way_of_coping_with_stress) (STV 1.0 0.9339)) +(: cnet_isa_4f606d649f (IsA exercise action) (STV 1.0 0.9091)) +(: cnet_isa_a8e646be8b (IsA exercise effort) (STV 1.0 0.9091)) +(: cnet_isa_cee91db174 (IsA exercise lesson) (STV 1.0 0.9091)) +(: cnet_isa_caed65b159 (IsA exercise training) (STV 1.0 0.9091)) +(: cnet_isa_ad789b6062 (IsA exercise ceremony) (STV 1.0 0.9091)) +(: cnet_isa_538cf8919f (IsA exercise_bike exercise_device) (STV 1.0 0.9091)) +(: cnet_isa_5d6432ac7e (IsA exercise_device device) (STV 1.0 0.9091)) +(: cnet_isa_5d4d15017f (IsA exfiltration_operation clandestine_operation) (STV 1.0 0.9091)) +(: cnet_isa_abeb05c9c0 (IsA exfoliation organic_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_87fbaad556 (IsA exhalation breath) (STV 1.0 0.9091)) +(: cnet_isa_b418dfdbd4 (IsA exhaust system) (STV 1.0 0.9091)) +(: cnet_isa_4ce1d02581 (IsA exhaust gas) (STV 1.0 0.9091)) +(: cnet_isa_73fccb0745 (IsA exhaust waste) (STV 1.0 0.9091)) +(: cnet_isa_a2922ca0fc (IsA exhaust_fan fan) (STV 1.0 0.9091)) +(: cnet_isa_c61376d765 (IsA exhaust_manifold manifold) (STV 1.0 0.9091)) +(: cnet_isa_f95df4b79b (IsA exhaust_pipe pipe) (STV 1.0 0.9091)) +(: cnet_isa_18a865f457 (IsA exhaust_valve valve) (STV 1.0 0.9091)) +(: cnet_isa_932e72dc1e (IsA exhaustion depletion) (STV 1.0 0.9091)) +(: cnet_isa_649fb5f76e (IsA exhaustion fatigue) (STV 1.0 0.9091)) +(: cnet_isa_b1f5ce5bdf (IsA exhibit evidence) (STV 1.0 0.9091)) +(: cnet_isa_980833470f (IsA exhibition presentation) (STV 1.0 0.9091)) +(: cnet_isa_3ef6c28519 (IsA exhibition collection) (STV 1.0 0.9091)) +(: cnet_isa_3c20d119a1 (IsA exhibition_game game) (STV 1.0 0.9091)) +(: cnet_isa_4da1a020db (IsA exhibition_hall hall) (STV 1.0 0.9091)) +(: cnet_isa_744f6baf40 (IsA exhibition_season season) (STV 1.0 0.9091)) +(: cnet_isa_c741c865aa (IsA exhibitionism paraphilia) (STV 1.0 0.9091)) +(: cnet_isa_65dde414eb (IsA exhibitionism ostentation) (STV 1.0 0.9091)) +(: cnet_isa_ef1ea0d48e (IsA exhibitionist compulsive) (STV 1.0 0.9091)) +(: cnet_isa_27987e43a3 (IsA exhibitionist egotist) (STV 1.0 0.9091)) +(: cnet_isa_c0aa7252b1 (IsA exhibitor showman) (STV 1.0 0.9091)) +(: cnet_isa_70b93127db (IsA exhilaration joy) (STV 1.0 0.9091)) +(: cnet_isa_d99315ab04 (IsA exhortation communication) (STV 1.0 0.9091)) +(: cnet_isa_42f7774d56 (IsA exhortation persuasion) (STV 1.0 0.9091)) +(: cnet_isa_ba2528aee8 (IsA exhumation act) (STV 1.0 0.9091)) +(: cnet_isa_3bf08fb1e8 (IsA exigency crisis) (STV 1.0 0.9091)) +(: cnet_isa_647618d36c (IsA exile banishment) (STV 1.0 0.9091)) +(: cnet_isa_a34e99eeb2 (IsA exile absentee) (STV 1.0 0.9091)) +(: cnet_isa_f2c228ac9d (IsA exile foreigner) (STV 1.0 0.9091)) +(: cnet_isa_7b71c43893 (IsA existential_quantifier quantifier) (STV 1.0 0.9091)) +(: cnet_isa_1c048a7f91 (IsA existentialism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_1b10225697 (IsA existentialist philosopher) (STV 1.0 0.9091)) +(: cnet_isa_31ce10026e (IsA exit departure) (STV 1.0 0.9091)) +(: cnet_isa_f447a10a06 (IsA exit opening) (STV 1.0 0.9091)) +(: cnet_isa_b71abc37ae (IsA exit_poll poll) (STV 1.0 0.9091)) +(: cnet_isa_9145564b00 (IsA exmoor domestic_sheep) (STV 1.0 0.9091)) +(: cnet_isa_73c9b6e1b2 (IsA exmoor pony) (STV 1.0 0.9091)) +(: cnet_isa_e557cfd98f (IsA exobiology biology) (STV 1.0 0.9091)) +(: cnet_isa_f4aae9bca7 (IsA exocet guided_missile) (STV 1.0 0.9091)) +(: cnet_isa_8325e2c839 (IsA exocoetidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_3ad4118a81 (IsA exocrine_gland gland) (STV 1.0 0.9091)) +(: cnet_isa_5af5d9b257 (IsA exocycloida animal_order) (STV 1.0 0.9091)) +(: cnet_isa_b7013b6434 (IsA exode afterpiece) (STV 1.0 0.9091)) +(: cnet_isa_4bb0ea3b3c (IsA exodontic dental_surgery) (STV 1.0 0.9091)) +(: cnet_isa_5a58f6e1fc (IsA exodontist dentist) (STV 1.0 0.9091)) +(: cnet_isa_400d2bad54 (IsA exodus escape) (STV 1.0 0.9091)) +(: cnet_isa_adac0a7798 (IsA exoergic_reaction nuclear_reaction) (STV 1.0 0.9091)) +(: cnet_isa_d15fb151e1 (IsA exogamy marriage) (STV 1.0 0.9091)) +(: cnet_isa_bd3a6f326c (IsA exogenous_depression depressive_disorder) (STV 1.0 0.9091)) +(: cnet_isa_28e0a02e9c (IsA exogenous_obesity fleshiness) (STV 1.0 0.9091)) +(: cnet_isa_7660792d66 (IsA exomphalo hernia) (STV 1.0 0.9091)) +(: cnet_isa_4572e64a03 (IsA exon deoxyribonucleic_acid) (STV 1.0 0.9091)) +(: cnet_isa_cb0a400cf7 (IsA exoneration condition) (STV 1.0 0.9091)) +(: cnet_isa_bba89af27a (IsA exonuclease nuclease) (STV 1.0 0.9091)) +(: cnet_isa_9c61b568cf (IsA exophthalmo symptom) (STV 1.0 0.9091)) +(: cnet_isa_1d1b040be2 (IsA exopterygota class) (STV 1.0 0.9091)) +(: cnet_isa_99a1132dad (IsA exorbitance excess) (STV 1.0 0.9091)) +(: cnet_isa_b301b84cab (IsA exorcism supernaturalism) (STV 1.0 0.9091)) +(: cnet_isa_4fccd1dda7 (IsA exorcist holy_order) (STV 1.0 0.9091)) +(: cnet_isa_b36c63de63 (IsA exorcist sorcerer) (STV 1.0 0.9091)) +(: cnet_isa_559d26a43c (IsA exordium introduction) (STV 1.0 0.9091)) +(: cnet_isa_d10e709cc5 (IsA exoskeleton body_covering) (STV 1.0 0.9091)) +(: cnet_isa_8a87a743fc (IsA exoskeleton skeletal_system) (STV 1.0 0.9091)) +(: cnet_isa_0f33b32245 (IsA exosphere layer) (STV 1.0 0.9091)) +(: cnet_isa_d723cd80ac (IsA exostosis growth) (STV 1.0 0.9091)) +(: cnet_isa_a9ca0fdc29 (IsA exotherm compound) (STV 1.0 0.9091)) +(: cnet_isa_4049ed8620 (IsA exothermic_reaction chemical_reaction) (STV 1.0 0.9091)) +(: cnet_isa_9efb92ac4e (IsA exoticism foreignness) (STV 1.0 0.9091)) +(: cnet_isa_599c0e1dfb (IsA exotoxin toxin) (STV 1.0 0.9091)) +(: cnet_isa_4acd630b43 (IsA expanse space) (STV 1.0 0.9091)) +(: cnet_isa_70679291fc (IsA expansion increase) (STV 1.0 0.9091)) +(: cnet_isa_43fc224d67 (IsA expansion discussion) (STV 1.0 0.9091)) +(: cnet_isa_b04f7c7f58 (IsA expansion mapping) (STV 1.0 0.9091)) +(: cnet_isa_eac8f70363 (IsA expansion_bit bit) (STV 1.0 0.9091)) +(: cnet_isa_947ab371a2 (IsA expansion_bolt bolt) (STV 1.0 0.9091)) +(: cnet_isa_020aed98be (IsA expansionism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_3c2a270e39 (IsA expansiveness impressiveness) (STV 1.0 0.9091)) +(: cnet_isa_af5b6d1cdc (IsA expatiation expansion) (STV 1.0 0.9091)) +(: cnet_isa_49f93bd3d6 (IsA expectation belief) (STV 1.0 0.9091)) +(: cnet_isa_0a9587ffed (IsA expectation feeling) (STV 1.0 0.9091)) +(: cnet_isa_c627abbcde (IsA expectedness ordinariness) (STV 1.0 0.9091)) +(: cnet_isa_67d72410c3 (IsA expectorant medicine) (STV 1.0 0.9091)) +(: cnet_isa_82b457286f (IsA expectoration bodily_process) (STV 1.0 0.9091)) +(: cnet_isa_e6517a2966 (IsA expedience advantage) (STV 1.0 0.9091)) +(: cnet_isa_048f464dad (IsA expedient mean) (STV 1.0 0.9091)) +(: cnet_isa_3ff18a3960 (IsA expedition journey) (STV 1.0 0.9091)) +(: cnet_isa_ddb62f385f (IsA expedition working_group) (STV 1.0 0.9091)) +(: cnet_isa_bde004d2a6 (IsA expedition campaign) (STV 1.0 0.9091)) +(: cnet_isa_b127d001e2 (IsA expending spending) (STV 1.0 0.9091)) +(: cnet_isa_357c5ae9a2 (IsA expense detriment) (STV 1.0 0.9091)) +(: cnet_isa_5dc41466ab (IsA expense cost) (STV 1.0 0.9091)) +(: cnet_isa_b5e0d54199 (IsA expense outgo) (STV 1.0 0.9091)) +(: cnet_isa_39393f2fec (IsA expense_account account) (STV 1.0 0.9091)) +(: cnet_isa_c130b1c9f6 (IsA expense_record record) (STV 1.0 0.9091)) +(: cnet_isa_9af79502fc (IsA expensiveness monetary_value) (STV 1.0 0.9091)) +(: cnet_isa_109a61a5f7 (IsA experience content) (STV 1.0 0.9091)) +(: cnet_isa_35febd57bf (IsA experience education) (STV 1.0 0.9091)) +(: cnet_isa_9ed176e1cb (IsA experience happening) (STV 1.0 0.9091)) +(: cnet_isa_6fc0726c38 (IsA experiment scientific_research) (STV 1.0 0.9091)) +(: cnet_isa_9047421c9b (IsA experiment venture) (STV 1.0 0.9091)) +(: cnet_isa_43bddd38df (IsA experiment inquiry) (STV 1.0 0.9091)) +(: cnet_isa_3737838629 (IsA experimental_method scientific_method) (STV 1.0 0.9091)) +(: cnet_isa_f242064849 (IsA experimental_procedure procedure) (STV 1.0 0.9091)) +(: cnet_isa_caae0bd62b (IsA experimental_psychology psychology) (STV 1.0 0.9091)) +(: cnet_isa_a071461036 (IsA experimentalism empiricism) (STV 1.0 0.9091)) +(: cnet_isa_cf13265f39 (IsA experimentalism orientation) (STV 1.0 0.9091)) +(: cnet_isa_7f93256ea3 (IsA experimenter person) (STV 1.0 0.9091)) +(: cnet_isa_0f842b0e46 (IsA experimenter research_worker) (STV 1.0 0.9091)) +(: cnet_isa_94b98ec4c3 (IsA experimenter_bia bia) (STV 1.0 0.9091)) +(: cnet_isa_7ef57b4853 (IsA expert person) (STV 1.0 0.9091)) +(: cnet_isa_bdd8fb8a3b (IsA expert_witness witness) (STV 1.0 0.9091)) +(: cnet_isa_03bdf7c129 (IsA expertness skillfulness) (STV 1.0 0.9091)) +(: cnet_isa_84aa42f101 (IsA expiation redemption) (STV 1.0 0.9091)) +(: cnet_isa_bbe500e595 (IsA explanan statement) (STV 1.0 0.9091)) +(: cnet_isa_430c65af3d (IsA explanation thinking) (STV 1.0 0.9091)) +(: cnet_isa_30ab170c0c (IsA explanation speech_act) (STV 1.0 0.9091)) +(: cnet_isa_0607561aa2 (IsA explanation statement) (STV 1.0 0.9091)) +(: cnet_isa_44a91b76f2 (IsA expletive utterance) (STV 1.0 0.9091)) +(: cnet_isa_5831bebe20 (IsA explicandum statement) (STV 1.0 0.9091)) +(: cnet_isa_db68696799 (IsA explication explanation) (STV 1.0 0.9091)) +(: cnet_isa_6cf53ffb83 (IsA explication_de_texte criticism) (STV 1.0 0.9091)) +(: cnet_isa_ffa386b486 (IsA explicit_definition definition) (STV 1.0 0.9091)) +(: cnet_isa_e0c3e342db (IsA explicitness clarity) (STV 1.0 0.9091)) +(: cnet_isa_40acc0c9a4 (IsA exploitation mistreatment) (STV 1.0 0.9091)) +(: cnet_isa_1f23bbdeef (IsA exploitation use) (STV 1.0 0.9091)) +(: cnet_isa_5d3de8084f (IsA exploiter selfish_person) (STV 1.0 0.9091)) +(: cnet_isa_87a18dfcab (IsA exploration expedition) (STV 1.0 0.9091)) +(: cnet_isa_3a3a7064a2 (IsA exploration search) (STV 1.0 0.9091)) +(: cnet_isa_6a636404e0 (IsA exploration consideration) (STV 1.0 0.9091)) +(: cnet_isa_263e0d0077 (IsA explorer_s_gentian gentian) (STV 1.0 0.9091)) +(: cnet_isa_51098be073 (IsA explorer person) (STV 1.0 0.9091)) +(: cnet_isa_6967a481ca (IsA explosion change_of_integrity) (STV 1.0 0.9091)) +(: cnet_isa_998e6d2a6b (IsA explosion golf_stroke) (STV 1.0 0.9091)) +(: cnet_isa_2649e1ef20 (IsA explosion effusion) (STV 1.0 0.9091)) +(: cnet_isa_abffb19f08 (IsA explosion discharge) (STV 1.0 0.9091)) +(: cnet_isa_cbaafdd7bd (IsA explosion increase) (STV 1.0 0.9091)) +(: cnet_isa_dfe4215b76 (IsA explosion noise) (STV 1.0 0.9091)) +(: cnet_isa_70d16f1920 (IsA explosive chemical) (STV 1.0 0.9091)) +(: cnet_isa_475c13a99e (IsA explosive_compound explosive) (STV 1.0 0.9091)) +(: cnet_isa_6e1d7cead9 (IsA explosive_detection_system system) (STV 1.0 0.9091)) +(: cnet_isa_2d5e6938e9 (IsA explosive_device device) (STV 1.0 0.9091)) +(: cnet_isa_f9376de3c6 (IsA explosive_mixture explosive) (STV 1.0 0.9091)) +(: cnet_isa_787d930012 (IsA explosive_trace_detection system) (STV 1.0 0.9091)) +(: cnet_isa_0ee804e1a9 (IsA explosive_unit unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_9ab44aab97 (IsA exponent mathematical_notation) (STV 1.0 0.9091)) +(: cnet_isa_413e38452f (IsA exponent intellectual) (STV 1.0 0.9091)) +(: cnet_isa_7e3c71c0b0 (IsA exponential mapping) (STV 1.0 0.9091)) +(: cnet_isa_f01aec3ee6 (IsA exponential_curve graph) (STV 1.0 0.9091)) +(: cnet_isa_bae38740fd (IsA exponential_decay decay) (STV 1.0 0.9091)) +(: cnet_isa_51b53cf562 (IsA exponential_equation equation) (STV 1.0 0.9091)) +(: cnet_isa_5891c2fcb3 (IsA exponential_expression formula) (STV 1.0 0.9091)) +(: cnet_isa_0f4a80383a (IsA exponential_sery sery) (STV 1.0 0.9091)) +(: cnet_isa_1f1adde25b (IsA exponentiation mathematical_process) (STV 1.0 0.9091)) +(: cnet_isa_cef4d8bdce (IsA export commodity) (STV 1.0 0.9091)) +(: cnet_isa_4709af50fc (IsA export_credit credit) (STV 1.0 0.9091)) +(: cnet_isa_efc9e2182a (IsA export_duty duty) (STV 1.0 0.9091)) +(: cnet_isa_50d167b83a (IsA exporter businessperson) (STV 1.0 0.9091)) +(: cnet_isa_a76f83fc20 (IsA exporting commerce) (STV 1.0 0.9091)) +(: cnet_isa_008a8ff6b7 (IsA expose exposure) (STV 1.0 0.9091)) +(: cnet_isa_9a617398cb (IsA exposition explanation) (STV 1.0 0.9091)) +(: cnet_isa_b7412d4fc3 (IsA exposition interpretation) (STV 1.0 0.9091)) +(: cnet_isa_4a226d4949 (IsA exposition section) (STV 1.0 0.9091)) +(: cnet_isa_82fa0694fd (IsA expositor intellectual) (STV 1.0 0.9091)) +(: cnet_isa_0e8d5031cf (IsA expostulation communication) (STV 1.0 0.9091)) +(: cnet_isa_c217843b5c (IsA expostulation exclamation) (STV 1.0 0.9091)) +(: cnet_isa_4f3621ac30 (IsA exposure abandonment) (STV 1.0 0.9091)) +(: cnet_isa_3720f0e7fd (IsA exposure influence) (STV 1.0 0.9091)) +(: cnet_isa_ec4e037a7a (IsA exposure photography) (STV 1.0 0.9091)) +(: cnet_isa_e8fa80e94f (IsA exposure presentation) (STV 1.0 0.9091)) +(: cnet_isa_626fb0a17c (IsA exposure vulnerability) (STV 1.0 0.9091)) +(: cnet_isa_87b42b7b1b (IsA exposure view) (STV 1.0 0.9091)) +(: cnet_isa_3442252dce (IsA exposure disclosure) (STV 1.0 0.9091)) +(: cnet_isa_5089ee07d5 (IsA exposure light_unit) (STV 1.0 0.9091)) +(: cnet_isa_9c6dab5258 (IsA exposure_therapy desensitization_technique) (STV 1.0 0.9091)) +(: cnet_isa_8350517e8d (IsA express transportation) (STV 1.0 0.9091)) +(: cnet_isa_6f95f2707c (IsA express public_transport) (STV 1.0 0.9091)) +(: cnet_isa_f80aa4a985 (IsA express mail) (STV 1.0 0.9091)) +(: cnet_isa_c49bcf9f89 (IsA expression squeeze) (STV 1.0 0.9091)) +(: cnet_isa_9921763b6f (IsA expression countenance) (STV 1.0 0.9091)) +(: cnet_isa_b723b6d423 (IsA expression communication) (STV 1.0 0.9091)) +(: cnet_isa_ea140ef21c (IsA expression demonstration) (STV 1.0 0.9091)) +(: cnet_isa_fe0bfa1cdc (IsA expression organic_process) (STV 1.0 0.9091)) +(: cnet_isa_44d327e90b (IsA expressionism artistic_movement) (STV 1.0 0.9091)) +(: cnet_isa_371d94890b (IsA expressionist artist) (STV 1.0 0.9091)) +(: cnet_isa_12d4ecbe0f (IsA expressive_style communication) (STV 1.0 0.9091)) +(: cnet_isa_12ac58b0a9 (IsA expressiveness quality) (STV 1.0 0.9091)) +(: cnet_isa_9077ab6f9c (IsA expressway highway) (STV 1.0 0.9091)) +(: cnet_isa_7e249362f2 (IsA expressway main_road) (STV 1.0 0.9091)) +(: cnet_isa_2f0bebc671 (IsA expropriation confiscation) (STV 1.0 0.9091)) +(: cnet_isa_b8f569c319 (IsA expulsion propulsion) (STV 1.0 0.9091)) +(: cnet_isa_a011759669 (IsA expunction deletion) (STV 1.0 0.9091)) +(: cnet_isa_c3df5cfaa1 (IsA expurgation deletion) (STV 1.0 0.9091)) +(: cnet_isa_f93583fcff (IsA exquisiteness beauty) (STV 1.0 0.9091)) +(: cnet_isa_ce144111c1 (IsA extemporization performance) (STV 1.0 0.9091)) +(: cnet_isa_6929ab6261 (IsA extended_care_facility medical_institution) (STV 1.0 0.9091)) +(: cnet_isa_4290e61c7e (IsA extended_family family) (STV 1.0 0.9091)) +(: cnet_isa_b6e750c40c (IsA extended_order military_formation) (STV 1.0 0.9091)) +(: cnet_isa_e40fedd935 (IsA extended_time_scale time_scale) (STV 1.0 0.9091)) +(: cnet_isa_057e35fd99 (IsA extension education) (STV 1.0 0.9091)) +(: cnet_isa_5c5407ea91 (IsA extension expansion) (STV 1.0 0.9091)) +(: cnet_isa_726c748499 (IsA extension stretching) (STV 1.0 0.9091)) +(: cnet_isa_20b87ed2c4 (IsA extension telephone) (STV 1.0 0.9091)) +(: cnet_isa_f4795ff5ec (IsA extension dance) (STV 1.0 0.9091)) +(: cnet_isa_a8f3f8a057 (IsA extension longness) (STV 1.0 0.9091)) +(: cnet_isa_d6184499fc (IsA extension property) (STV 1.0 0.9091)) +(: cnet_isa_be8d28fec5 (IsA extension string) (STV 1.0 0.9091)) +(: cnet_isa_ab8353569f (IsA extension delay) (STV 1.0 0.9091)) +(: cnet_isa_c7c31e8162 (IsA extension_cord cord) (STV 1.0 0.9091)) +(: cnet_isa_2484015163 (IsA extension_course course) (STV 1.0 0.9091)) +(: cnet_isa_429bde9889 (IsA extension_ladder ladder) (STV 1.0 0.9091)) +(: cnet_isa_e4188eefed (IsA extensiveness magnitude) (STV 1.0 0.9091)) +(: cnet_isa_91100d1e2f (IsA extensor_muscle skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_c5248f79a9 (IsA extent magnitude) (STV 1.0 0.9091)) +(: cnet_isa_6a0ef6664d (IsA extent degree) (STV 1.0 0.9091)) +(: cnet_isa_825f9ef53d (IsA extenuation decrease) (STV 1.0 0.9091)) +(: cnet_isa_78f6e87297 (IsA extenuation excuse) (STV 1.0 0.9091)) +(: cnet_isa_70a12b5f1b (IsA exterior_angle angle) (STV 1.0 0.9091)) +(: cnet_isa_bf724ce54e (IsA exterior_door doorway) (STV 1.0 0.9091)) +(: cnet_isa_abebf42ce9 (IsA extermination destruction) (STV 1.0 0.9091)) +(: cnet_isa_cbb712e837 (IsA exterminator killer) (STV 1.0 0.9091)) +(: cnet_isa_7cdc0cb142 (IsA extern doctor) (STV 1.0 0.9091)) +(: cnet_isa_45082b99f3 (IsA external feature) (STV 1.0 0.9091)) +(: cnet_isa_016bb0a4ac (IsA external_body_part body_part) (STV 1.0 0.9091)) +(: cnet_isa_af6cc5d9e2 (IsA external_carotid_artery carotid_artery) (STV 1.0 0.9091)) +(: cnet_isa_67f218a1ed (IsA external_combustion_engine heat_engine) (STV 1.0 0.9091)) +(: cnet_isa_162600008f (IsA external_drive drive) (STV 1.0 0.9091)) +(: cnet_isa_3c9d9b86f4 (IsA external_ear external_organ) (STV 1.0 0.9091)) +(: cnet_isa_19e9f65fa1 (IsA external_gill gill) (STV 1.0 0.9091)) +(: cnet_isa_8e406d8124 (IsA external_iliac_artery iliac_artery) (STV 1.0 0.9091)) +(: cnet_isa_7243e19d5e (IsA external_iliac_vein iliac_vein) (STV 1.0 0.9091)) +(: cnet_isa_eef611f32d (IsA external_jugular_vein jugular_vein) (STV 1.0 0.9091)) +(: cnet_isa_3a7b2e0340 (IsA external_nasal_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_3373860735 (IsA external_oblique_muscle abdominal) (STV 1.0 0.9091)) +(: cnet_isa_fbcf3f6d9d (IsA external_organ organ) (STV 1.0 0.9091)) +(: cnet_isa_2d10240ff7 (IsA externalization objectification) (STV 1.0 0.9091)) +(: cnet_isa_9e2b7cec96 (IsA externalization attribution) (STV 1.0 0.9091)) +(: cnet_isa_14eafaaa7b (IsA exteroception sensitivity) (STV 1.0 0.9091)) +(: cnet_isa_81e003b343 (IsA exteroceptor sense_organ) (STV 1.0 0.9091)) +(: cnet_isa_b21f56b4ce (IsA extinction termination) (STV 1.0 0.9091)) +(: cnet_isa_ab9ac07269 (IsA extinction conditioning) (STV 1.0 0.9091)) +(: cnet_isa_9a702d4db8 (IsA extinction annihilation) (STV 1.0 0.9091)) +(: cnet_isa_3187f99dc5 (IsA extinction natural_process) (STV 1.0 0.9091)) +(: cnet_isa_8c4d60336d (IsA extinction death) (STV 1.0 0.9091)) +(: cnet_isa_0a3c8537ba (IsA extinction inaction) (STV 1.0 0.9091)) +(: cnet_isa_1d3a4587c3 (IsA extirpation pull) (STV 1.0 0.9091)) +(: cnet_isa_cb9976d791 (IsA extortion exaction) (STV 1.0 0.9091)) +(: cnet_isa_bf44abf525 (IsA extortion felony) (STV 1.0 0.9091)) +(: cnet_isa_b13584f1cc (IsA extortion overcharge) (STV 1.0 0.9091)) +(: cnet_isa_1363411f51 (IsA extra artifact) (STV 1.0 0.9091)) +(: cnet_isa_d54629acf4 (IsA extra edition) (STV 1.0 0.9091)) +(: cnet_isa_3b331b11a6 (IsA extra_dividend dividend) (STV 1.0 0.9091)) +(: cnet_isa_1ec5dfc3d2 (IsA extra_inning overtime) (STV 1.0 0.9091)) +(: cnet_isa_225a66abe0 (IsA extra_large size) (STV 1.0 0.9091)) +(: cnet_isa_35da8c3cdb (IsA extracapsular_surgery cataract_surgery) (STV 1.0 0.9091)) +(: cnet_isa_3aed686c68 (IsA extracellular_fluid liquid_body_substance) (STV 1.0 0.9091)) +(: cnet_isa_47efafc8f3 (IsA extraction removal) (STV 1.0 0.9091)) +(: cnet_isa_59a26afdb6 (IsA extraction natural_process) (STV 1.0 0.9091)) +(: cnet_isa_7568d13b68 (IsA extractor instrument) (STV 1.0 0.9091)) +(: cnet_isa_043ffd4cbf (IsA extracurricular_activity education) (STV 1.0 0.9091)) +(: cnet_isa_1efd556568 (IsA extradition surrender) (STV 1.0 0.9091)) +(: cnet_isa_0c46848755 (IsA extrado curve) (STV 1.0 0.9091)) +(: cnet_isa_8319744bc5 (IsA extramarital_sex unlawful_carnal_knowledge) (STV 1.0 0.9091)) +(: cnet_isa_ccc83521d6 (IsA extraneousness unrelatedness) (STV 1.0 0.9091)) +(: cnet_isa_64877b2b03 (IsA extraordinariness quality) (STV 1.0 0.9091)) +(: cnet_isa_911c7f816c (IsA extrapolation inference) (STV 1.0 0.9091)) +(: cnet_isa_ec7e7423ca (IsA extrapolation calculation) (STV 1.0 0.9091)) +(: cnet_isa_7b9426f21e (IsA extrasystole systole) (STV 1.0 0.9091)) +(: cnet_isa_6577ede071 (IsA extraterrestrial_being hypothetical_creature) (STV 1.0 0.9091)) +(: cnet_isa_bc9182d45a (IsA extraterrestrial_object natural_object) (STV 1.0 0.9091)) +(: cnet_isa_e7f08536bc (IsA extravagance waste) (STV 1.0 0.9091)) +(: cnet_isa_da8661f726 (IsA extravagance excess) (STV 1.0 0.9091)) +(: cnet_isa_8aa807599d (IsA extravagance improvidence) (STV 1.0 0.9091)) +(: cnet_isa_758083853a (IsA extravaganza entertainment) (STV 1.0 0.9091)) +(: cnet_isa_2935d90747 (IsA extravasation organic_process) (STV 1.0 0.9091)) +(: cnet_isa_e900e34386 (IsA extravasation liquid) (STV 1.0 0.9091)) +(: cnet_isa_a60a7cb074 (IsA extraversion sociability) (STV 1.0 0.9091)) +(: cnet_isa_ab0ee4bc55 (IsA extreme degree) (STV 1.0 0.9091)) +(: cnet_isa_b0db6f6551 (IsA extreme_point extremity) (STV 1.0 0.9091)) +(: cnet_isa_1e337154de (IsA extremely_high_frequency radio_frequency) (STV 1.0 0.9091)) +(: cnet_isa_a3341ec264 (IsA extremely_low_frequency radio_frequency) (STV 1.0 0.9091)) +(: cnet_isa_95ea7030cc (IsA extremeness quality) (STV 1.0 0.9091)) +(: cnet_isa_edc389546b (IsA extremism political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_2bd50b1950 (IsA extremist radical) (STV 1.0 0.9091)) +(: cnet_isa_285f77bd17 (IsA extremity external_body_part) (STV 1.0 0.9091)) +(: cnet_isa_7e642d8bd4 (IsA extremity region) (STV 1.0 0.9091)) +(: cnet_isa_fbfc395dc5 (IsA extremity adversity) (STV 1.0 0.9091)) +(: cnet_isa_c4705ddcc9 (IsA extremity ultimacy) (STV 1.0 0.9091)) +(: cnet_isa_0b9031027e (IsA extremum limit) (STV 1.0 0.9091)) +(: cnet_isa_e1329739b2 (IsA extrinsic_fraud fraud) (STV 1.0 0.9091)) +(: cnet_isa_749c26ce53 (IsA extropy prediction) (STV 1.0 0.9091)) +(: cnet_isa_7873e64d6c (IsA extrovert person) (STV 1.0 0.9091)) +(: cnet_isa_e171f2f0a5 (IsA extrusion squeeze) (STV 1.0 0.9091)) +(: cnet_isa_a93e6ff928 (IsA exuberance liveliness) (STV 1.0 0.9091)) +(: cnet_isa_e215b01c4a (IsA exuberance enthusiasm) (STV 1.0 0.9091)) +(: cnet_isa_6fd090a8c9 (IsA exuberance joy) (STV 1.0 0.9091)) +(: cnet_isa_3beee21fbd (IsA exudate discharge) (STV 1.0 0.9091)) +(: cnet_isa_5efea19a69 (IsA exudation seepage) (STV 1.0 0.9091)) +(: cnet_isa_38786c37fb (IsA exultation utterance) (STV 1.0 0.9091)) +(: cnet_isa_16d04f3304 (IsA exultation joy) (STV 1.0 0.9091)) +(: cnet_isa_cf1b21fdf9 (IsA exurbia residential_district) (STV 1.0 0.9091)) +(: cnet_isa_bc53285596 (IsA exuviae body_covering) (STV 1.0 0.9091)) +(: cnet_isa_3ecb71ec3c (IsA exwife woman) (STV 1.0 0.9091)) +(: cnet_isa_56e976a999 (IsA eya hawk) (STV 1.0 0.9091)) +(: cnet_isa_be167f862e (IsA eye biological_organ) (STV 1.0 0.9091)) +(: cnet_isa_6851ddc37f (IsA eye complex_organ) (STV 1.0 0.9091)) +(: cnet_isa_481e738ed6 (IsA eye optical_sensor_for_living_being) (STV 1.0 0.9339)) +(: cnet_isa_5735a27749 (IsA eye hole) (STV 1.0 0.9091)) +(: cnet_isa_7f1d959fbe (IsA eye sense_organ) (STV 1.0 0.9091)) +(: cnet_isa_86396faa9b (IsA eye attention) (STV 1.0 0.9091)) +(: cnet_isa_9eb7fa938a (IsA eye sagacity) (STV 1.0 0.9091)) +(: cnet_isa_3257ed5968 (IsA eye_bank bank) (STV 1.0 0.9091)) +(: cnet_isa_46b7322826 (IsA eye_beaming glance) (STV 1.0 0.9091)) +(: cnet_isa_2716a3d3c4 (IsA eye_candy visual_percept) (STV 1.0 0.9091)) +(: cnet_isa_9987fce8f7 (IsA eye_catcher center) (STV 1.0 0.9091)) +(: cnet_isa_7785caf26b (IsA eye_chart chart) (STV 1.0 0.9091)) +(: cnet_isa_a8627536f8 (IsA eye_clinic clinic) (STV 1.0 0.9091)) +(: cnet_isa_ff1fcf4f74 (IsA eye_condition condition) (STV 1.0 0.9091)) +(: cnet_isa_94ce7c61f2 (IsA eye_contact contact) (STV 1.0 0.9091)) +(: cnet_isa_3f1776e803 (IsA eye_contact visual_communication) (STV 1.0 0.9091)) +(: cnet_isa_bba375e578 (IsA eye_dialect dialect) (STV 1.0 0.9091)) +(: cnet_isa_c79cfed2a8 (IsA eye_disease disease) (STV 1.0 0.9091)) +(: cnet_isa_8e964c6faa (IsA eye_drop irrigation) (STV 1.0 0.9091)) +(: cnet_isa_67f412bda7 (IsA eye_lotion lotion) (STV 1.0 0.9091)) +(: cnet_isa_9c69bd40d4 (IsA eye_movement motion) (STV 1.0 0.9091)) +(: cnet_isa_d71cb77849 (IsA eye_opener surprise) (STV 1.0 0.9091)) +(: cnet_isa_b3279b05d3 (IsA eye_opener drink) (STV 1.0 0.9091)) +(: cnet_isa_7660e0e1d6 (IsA eye_operation operation) (STV 1.0 0.9091)) +(: cnet_isa_f72b4dbe50 (IsA eye_rhyme rhyme) (STV 1.0 0.9091)) +(: cnet_isa_139406e366 (IsA eye_socket cavity) (STV 1.0 0.9091)) +(: cnet_isa_54383753bb (IsA eyeball capsule) (STV 1.0 0.9091)) +(: cnet_isa_88b4569a84 (IsA eyebrow hair) (STV 1.0 0.9091)) +(: cnet_isa_533bd98d9e (IsA eyebrow_pencil makeup) (STV 1.0 0.9091)) +(: cnet_isa_2e6c6653be (IsA eyecup vessel) (STV 1.0 0.9091)) +(: cnet_isa_fa49460b71 (IsA eyedness asymmetry) (STV 1.0 0.9091)) +(: cnet_isa_3f6143b28a (IsA eyedrop drop) (STV 1.0 0.9091)) +(: cnet_isa_e889cd8e19 (IsA eyeful view) (STV 1.0 0.9091)) +(: cnet_isa_f2ff62cdf6 (IsA eyeful woman) (STV 1.0 0.9091)) +(: cnet_isa_cd7771b9d2 (IsA eyeglass_wearer perceiver) (STV 1.0 0.9091)) +(: cnet_isa_1e3a78d9bb (IsA eyeish caddo) (STV 1.0 0.9091)) +(: cnet_isa_9958b45d5e (IsA eyelash hair) (STV 1.0 0.9091)) +(: cnet_isa_23751b2d3f (IsA eyelessness blindness) (STV 1.0 0.9091)) +(: cnet_isa_ba1547c1d9 (IsA eyelet hole) (STV 1.0 0.9091)) +(: cnet_isa_3a0918e00c (IsA eyelid protective_fold) (STV 1.0 0.9091)) +(: cnet_isa_6dd866d4a3 (IsA eyeliner makeup) (STV 1.0 0.9091)) +(: cnet_isa_51f665022b (IsA eyepatch cloth_covering) (STV 1.0 0.9091)) +(: cnet_isa_625ba49432 (IsA eyepiece len) (STV 1.0 0.9091)) +(: cnet_isa_29168de339 (IsA eye opinion) (STV 1.0 0.9091)) +(: cnet_isa_4ed41d954b (IsA eyeshadow makeup) (STV 1.0 0.9091)) +(: cnet_isa_000be3fe75 (IsA eyesight sight) (STV 1.0 0.9091)) +(: cnet_isa_91a4ea11d6 (IsA eyesore ugliness) (STV 1.0 0.9091)) +(: cnet_isa_fbbda081ea (IsA eyespot marking) (STV 1.0 0.9091)) +(: cnet_isa_2fccceaf07 (IsA eyestrain fatigue) (STV 1.0 0.9091)) +(: cnet_isa_bf325d5e89 (IsA eyewitness spectator) (STV 1.0 0.9091)) +(: cnet_isa_74ddf2bb6d (IsA eyore fictional_character) (STV 1.0 0.9091)) +(: cnet_isa_09263876e5 (IsA eysenck_personality_inventory self_report_personality_inventory) (STV 1.0 0.9091)) +(: cnet_isa_597177ff18 (IsA f letter) (STV 1.0 0.9091)) +(: cnet_isa_918a427ed7 (IsA fa solfa_syllable) (STV 1.0 0.9091)) +(: cnet_isa_01c787d76e (IsA fa_la nonsense) (STV 1.0 0.9091)) +(: cnet_isa_ab9f11d951 (IsA fabian socialist) (STV 1.0 0.9091)) +(: cnet_isa_0180f89676 (IsA fabian_society association) (STV 1.0 0.9091)) +(: cnet_isa_d2a4834cac (IsA fabiana asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_eeeda54106 (IsA fabianism socialism) (STV 1.0 0.9091)) +(: cnet_isa_219a6ffc3e (IsA fable story) (STV 1.0 0.9091)) +(: cnet_isa_5efe78b93f (IsA fabric artifact) (STV 1.0 0.9091)) +(: cnet_isa_c7093c4d94 (IsA fabrication construction) (STV 1.0 0.9091)) +(: cnet_isa_83801ae139 (IsA fabrication creating_from_raw_material) (STV 1.0 0.9091)) +(: cnet_isa_aa663c7484 (IsA fabrication writing) (STV 1.0 0.9091)) +(: cnet_isa_c90055f0d8 (IsA fabrication falsehood) (STV 1.0 0.9091)) +(: cnet_isa_11a9c5f0e2 (IsA fabulist narrator) (STV 1.0 0.9091)) +(: cnet_isa_1718887083 (IsA facade front) (STV 1.0 0.9091)) +(: cnet_isa_74b124f4be (IsA facade misrepresentation) (STV 1.0 0.9091)) +(: cnet_isa_2577477f50 (IsA face front) (STV 1.0 0.9091)) +(: cnet_isa_b067cab45a (IsA face surface) (STV 1.0 0.9091)) +(: cnet_isa_5c9ba7c176 (IsA face vertical_surface) (STV 1.0 0.9091)) +(: cnet_isa_eeaa0f95a2 (IsA face appearance) (STV 1.0 0.9091)) +(: cnet_isa_16bb46cc55 (IsA face status) (STV 1.0 0.9091)) +(: cnet_isa_23f32d6e38 (IsA face external_body_part) (STV 1.0 0.9091)) +(: cnet_isa_ce5baa925c (IsA face person) (STV 1.0 0.9091)) +(: cnet_isa_78cff18eb0 (IsA face_amount_certificate_company investment_company) (STV 1.0 0.9091)) +(: cnet_isa_4c3ac6769a (IsA face_angle angle) (STV 1.0 0.9091)) +(: cnet_isa_ecf9ba88a5 (IsA face_card playing_card) (STV 1.0 0.9091)) +(: cnet_isa_ea7bbcd9e5 (IsA face_guard face_mask) (STV 1.0 0.9091)) +(: cnet_isa_b31d6dcbee (IsA face_lift plastic_surgery) (STV 1.0 0.9091)) +(: cnet_isa_f7309c36cd (IsA face_lift renovation) (STV 1.0 0.9091)) +(: cnet_isa_289a61907d (IsA face_mask mask) (STV 1.0 0.9091)) +(: cnet_isa_c552c9efb3 (IsA face_off beginning) (STV 1.0 0.9091)) +(: cnet_isa_96ef419eb2 (IsA face_powder makeup) (STV 1.0 0.9091)) +(: cnet_isa_80094b3e2b (IsA face_powder powder) (STV 1.0 0.9091)) +(: cnet_isa_37715a5f9d (IsA face_recognition visual_perception) (STV 1.0 0.9091)) +(: cnet_isa_4fb7556e36 (IsA face_recognition biometric_identification) (STV 1.0 0.9091)) +(: cnet_isa_6108beb3e8 (IsA face_saver accomplishment) (STV 1.0 0.9091)) +(: cnet_isa_791f1b4db2 (IsA face_time work_time) (STV 1.0 0.9091)) +(: cnet_isa_bc2cfff68d (IsA face_value semblance) (STV 1.0 0.9091)) +(: cnet_isa_218c7d8e4e (IsA face_veil head_covering) (STV 1.0 0.9091)) +(: cnet_isa_e6998bde83 (IsA faceplate protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_9630373f57 (IsA facer difficulty) (STV 1.0 0.9091)) +(: cnet_isa_5526ee052e (IsA facet subfigure) (STV 1.0 0.9091)) +(: cnet_isa_eb68e9f4e3 (IsA facet_plane plane) (STV 1.0 0.9091)) +(: cnet_isa_53d1d6d05e (IsA facetiousness playfulness) (STV 1.0 0.9091)) +(: cnet_isa_109488cdd5 (IsA facial beauty_treatment) (STV 1.0 0.9091)) +(: cnet_isa_e4f2d711a4 (IsA facial skin_care) (STV 1.0 0.9091)) +(: cnet_isa_617d9a2b1c (IsA facial cranial_nerve) (STV 1.0 0.9091)) +(: cnet_isa_a50b67c2b6 (IsA facial_artery maxillary_artery) (STV 1.0 0.9091)) +(: cnet_isa_f7fb15e793 (IsA facial_expression gesture) (STV 1.0 0.9091)) +(: cnet_isa_5064a1c5d5 (IsA facial_hair hair) (STV 1.0 0.9091)) +(: cnet_isa_f92da4e7fe (IsA facial_index ratio) (STV 1.0 0.9091)) +(: cnet_isa_eb0ba84c0f (IsA facial_muscle skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_3e58d68066 (IsA facial_profiling identification) (STV 1.0 0.9091)) +(: cnet_isa_45bff73ae3 (IsA facial_tissue tissue) (STV 1.0 0.9091)) +(: cnet_isa_7a4650619a (IsA facial_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_d49b6de615 (IsA facilitation aid) (STV 1.0 0.9091)) +(: cnet_isa_49641979ce (IsA facilitation organic_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_bb20f1639f (IsA facilitation condition) (STV 1.0 0.9091)) +(: cnet_isa_c490e10d9c (IsA facilitator assistant) (STV 1.0 0.9091)) +(: cnet_isa_bb6829f524 (IsA facility artifact) (STV 1.0 0.9091)) +(: cnet_isa_097318b6d6 (IsA facility service) (STV 1.0 0.9091)) +(: cnet_isa_efc0e518a9 (IsA facility effortlessness) (STV 1.0 0.9091)) +(: cnet_isa_b2ada64cb9 (IsA facing coating) (STV 1.0 0.9091)) +(: cnet_isa_466fad94c8 (IsA facing lining) (STV 1.0 0.9091)) +(: cnet_isa_fdfe4f6ff7 (IsA facing protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_f05e767dd1 (IsA facism political_ideology) (STV 1.0 0.9091)) +(: cnet_isa_36d2471041 (IsA facsimile copy) (STV 1.0 0.9091)) +(: cnet_isa_5b14a453c0 (IsA facsimile duplicator) (STV 1.0 0.9091)) +(: cnet_isa_0e2d0b3690 (IsA fact 4_letter_word) (STV 1.0 0.9091)) +(: cnet_isa_9f63337e8f (IsA fact actuality_real) (STV 1.0 0.9091)) +(: cnet_isa_6f9097c652 (IsA fact piece_of_information) (STV 1.0 0.9339)) +(: cnet_isa_ec7c2d7b41 (IsA fact undisputable_piece_of_information) (STV 1.0 0.9091)) +(: cnet_isa_efcd77cc55 (IsA fact concept) (STV 1.0 0.9091)) +(: cnet_isa_f6aa05999a (IsA fact information) (STV 1.0 0.9091)) +(: cnet_isa_3faf3258f4 (IsA fact reality) (STV 1.0 0.9091)) +(: cnet_isa_b2d5e80b4d (IsA faction clique) (STV 1.0 0.9091)) +(: cnet_isa_59d9e19352 (IsA factoid information) (STV 1.0 0.9091)) +(: cnet_isa_883038aa4a (IsA factoid new_item) (STV 1.0 0.9091)) +(: cnet_isa_b1790c5c51 (IsA factor independent_variable) (STV 1.0 0.9091)) +(: cnet_isa_98d3027ee4 (IsA factor cause) (STV 1.0 0.9091)) +(: cnet_isa_9dd771a675 (IsA factor number) (STV 1.0 0.9091)) +(: cnet_isa_0d42b07297 (IsA factor_analysis correlational_analysis) (STV 1.0 0.9091)) +(: cnet_isa_1a12dc4851 (IsA factor_of_proportionality constant) (STV 1.0 0.9091)) +(: cnet_isa_882effae9f (IsA factor_of_proportionality factor) (STV 1.0 0.9091)) +(: cnet_isa_1d5258b94d (IsA factorial product) (STV 1.0 0.9091)) +(: cnet_isa_82b95978bb (IsA factorization resolution) (STV 1.0 0.9091)) +(: cnet_isa_14824637ed (IsA factory plant) (STV 1.0 0.9091)) +(: cnet_isa_0dd3890354 (IsA factory_price price) (STV 1.0 0.9091)) +(: cnet_isa_27bc91d4fd (IsA factory_ship whaler) (STV 1.0 0.9091)) +(: cnet_isa_ae03d0259f (IsA factory_whistle whistle) (STV 1.0 0.9091)) +(: cnet_isa_f8becb2acd (IsA factotum servant) (STV 1.0 0.9091)) +(: cnet_isa_1691d95a6f (IsA factuality quality) (STV 1.0 0.9091)) +(: cnet_isa_75e79ad7b1 (IsA facula spot) (STV 1.0 0.9091)) +(: cnet_isa_6a8c0c4583 (IsA faculty ability) (STV 1.0 0.9091)) +(: cnet_isa_b1efb4e99a (IsA fad fashion) (STV 1.0 0.9091)) +(: cnet_isa_ff8249a817 (IsA fad_diet reducing_diet) (STV 1.0 0.9091)) +(: cnet_isa_9dc550384e (IsA faddist person) (STV 1.0 0.9091)) +(: cnet_isa_1b3b5f4b44 (IsA fade termination) (STV 1.0 0.9091)) +(: cnet_isa_2cdc5764c1 (IsA fadeout noise) (STV 1.0 0.9091)) +(: cnet_isa_1182ecac2a (IsA fading_away dwindling) (STV 1.0 0.9091)) +(: cnet_isa_e934c2c7f0 (IsA fado folk_song) (STV 1.0 0.9091)) +(: cnet_isa_443af0a89d (IsA fag_end end) (STV 1.0 0.9091)) +(: cnet_isa_57001acf38 (IsA fagaceae hamamelid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_0f649cc58e (IsA fagale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_7a26b3bb86 (IsA faggot_stitch embroidery_stitch) (STV 1.0 0.9091)) +(: cnet_isa_bb1f427fbe (IsA faggoting embroidery) (STV 1.0 0.9091)) +(: cnet_isa_d930c7bb44 (IsA fagopyrum dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6d5a32549e (IsA fagot bundle) (STV 1.0 0.9091)) +(: cnet_isa_761b9710aa (IsA fagot homosexual) (STV 1.0 0.9091)) +(: cnet_isa_b57b56fde9 (IsA fagus hamamelid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_fd2c4f8c1f (IsA fahrenheit_scale temperature_scale) (STV 1.0 0.9091)) +(: cnet_isa_e8176da431 (IsA fahrenheit_thermometer thermometer) (STV 1.0 0.9091)) +(: cnet_isa_9b941cf46c (IsA faience earthenware) (STV 1.0 0.9091)) +(: cnet_isa_821556a998 (IsA fail_safe mechanism) (STV 1.0 0.9091)) +(: cnet_isa_3fe799f927 (IsA failing failure) (STV 1.0 0.9091)) +(: cnet_isa_eb941c8183 (IsA failing imperfection) (STV 1.0 0.9091)) +(: cnet_isa_02671a2e2a (IsA faille fabric) (STV 1.0 0.9091)) +(: cnet_isa_fb20116c9b (IsA failure nonaccomplishment) (STV 1.0 0.9091)) +(: cnet_isa_6c2eb289ec (IsA failure omission) (STV 1.0 0.9091)) +(: cnet_isa_61b2a794a9 (IsA failure happening) (STV 1.0 0.9091)) +(: cnet_isa_f2c6af88f5 (IsA failure unfortunate) (STV 1.0 0.9091)) +(: cnet_isa_a51f357c97 (IsA failure disorder) (STV 1.0 0.9091)) +(: cnet_isa_6063045268 (IsA failure fortune) (STV 1.0 0.9091)) +(: cnet_isa_e1dadc526a (IsA faineance indolence) (STV 1.0 0.9091)) +(: cnet_isa_84c3cac2f0 (IsA faint loss_of_consciousness) (STV 1.0 0.9091)) +(: cnet_isa_0b1ff04354 (IsA faintheartedness timidity) (STV 1.0 0.9091)) +(: cnet_isa_deaab1ff42 (IsA faintness softness) (STV 1.0 0.9091)) +(: cnet_isa_8738d46f4b (IsA faintness weakness) (STV 1.0 0.9091)) +(: cnet_isa_732077cb2c (IsA faintness feeling) (STV 1.0 0.9091)) +(: cnet_isa_62999dc6bb (IsA fair exhibition) (STV 1.0 0.9091)) +(: cnet_isa_0dbe210db6 (IsA fair gathering) (STV 1.0 0.9091)) +(: cnet_isa_4be56c1a7c (IsA fair_ball contact) (STV 1.0 0.9091)) +(: cnet_isa_5e37548e2a (IsA fair_catch catch) (STV 1.0 0.9091)) +(: cnet_isa_8b1a9dde21 (IsA fair_chance probability) (STV 1.0 0.9091)) +(: cnet_isa_277626f14d (IsA fair_copy copy) (STV 1.0 0.9091)) +(: cnet_isa_5193c539cd (IsA fair_deal deal) (STV 1.0 0.9091)) +(: cnet_isa_331a921335 (IsA fair_hearing hearing) (STV 1.0 0.9091)) +(: cnet_isa_08a127f465 (IsA fair_trade trade) (STV 1.0 0.9091)) +(: cnet_isa_ecb6817ee1 (IsA fair_trade_act legislative_act) (STV 1.0 0.9091)) +(: cnet_isa_0377729bf5 (IsA fair_trade_agreement agreement) (STV 1.0 0.9091)) +(: cnet_isa_a8f7e375e3 (IsA fair_use use) (STV 1.0 0.9091)) +(: cnet_isa_50c984f613 (IsA fair_weather weather) (STV 1.0 0.9091)) +(: cnet_isa_0b1c2a92f5 (IsA fairground tract) (STV 1.0 0.9091)) +(: cnet_isa_22b2f4eea0 (IsA fairlead pulley) (STV 1.0 0.9091)) +(: cnet_isa_266c466cee (IsA fairness justice) (STV 1.0 0.9091)) +(: cnet_isa_704e274256 (IsA fairness impartiality) (STV 1.0 0.9091)) +(: cnet_isa_ffe5b26e8d (IsA fairness_commission committee) (STV 1.0 0.9091)) +(: cnet_isa_34cf6df6e3 (IsA fairway path) (STV 1.0 0.9091)) +(: cnet_isa_1511c0ff04 (IsA fairway site) (STV 1.0 0.9091)) +(: cnet_isa_6f5b20075a (IsA fairway tract) (STV 1.0 0.9091)) +(: cnet_isa_6f7a1c701b (IsA fairy spiritual_being) (STV 1.0 0.9091)) +(: cnet_isa_6d43e9351b (IsA fairy_bluebird oscine) (STV 1.0 0.9091)) +(: cnet_isa_dde10662ed (IsA fairy_cup miterwort) (STV 1.0 0.9091)) +(: cnet_isa_5bcc225ae0 (IsA fairy_godmother benefactor) (STV 1.0 0.9091)) +(: cnet_isa_f3f0990f40 (IsA fairy_godmother fairy) (STV 1.0 0.9091)) +(: cnet_isa_cc36558bbf (IsA fairy_light light) (STV 1.0 0.9091)) +(: cnet_isa_7b14ca31dc (IsA fairy_ring ring) (STV 1.0 0.9091)) +(: cnet_isa_7a38fb48ea (IsA fairy_ring_mushroom agaric) (STV 1.0 0.9091)) +(: cnet_isa_f697857253 (IsA fairy_shrimp branchiopod_crustacean) (STV 1.0 0.9091)) +(: cnet_isa_5058f1513d (IsA fairy_swallow domestic_pigeon) (STV 1.0 0.9091)) +(: cnet_isa_7176fbc93d (IsA fairyland imaginary_place) (STV 1.0 0.9091)) +(: cnet_isa_9750deb7ea (IsA fairytale fib) (STV 1.0 0.9091)) +(: cnet_isa_cdf760cdbf (IsA fairytale narrative) (STV 1.0 0.9091)) +(: cnet_isa_9faae47279 (IsA fait_accompli accomplishment) (STV 1.0 0.9091)) +(: cnet_isa_6f3b26f08a (IsA faith trust) (STV 1.0 0.9091)) +(: cnet_isa_3f3b713ec0 (IsA faith commitment) (STV 1.0 0.9091)) +(: cnet_isa_dd35d02f23 (IsA faith belief) (STV 1.0 0.9091)) +(: cnet_isa_c7cd93a9ee (IsA faith_healing care) (STV 1.0 0.9091)) +(: cnet_isa_66f67233da (IsA faithful following) (STV 1.0 0.9091)) +(: cnet_isa_5934ea687c (IsA faithlessness infidelity) (STV 1.0 0.9091)) +(: cnet_isa_52e18d6879 (IsA fake imitation) (STV 1.0 0.9091)) +(: cnet_isa_e975714e37 (IsA fake_book fake) (STV 1.0 0.9091)) +(: cnet_isa_c4cfe8343f (IsA fakery deception) (STV 1.0 0.9091)) +(: cnet_isa_d6585b0041 (IsA fakir moslem) (STV 1.0 0.9091)) +(: cnet_isa_76dc45797f (IsA fakir saint) (STV 1.0 0.9091)) +(: cnet_isa_a1644922fc (IsA falafel dish) (STV 1.0 0.9091)) +(: cnet_isa_bb8b65254a (IsA falanga torture) (STV 1.0 0.9091)) +(: cnet_isa_3b81b46758 (IsA falange nazism) (STV 1.0 0.9091)) +(: cnet_isa_59c51187a9 (IsA falcatifolium gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_86898838ff (IsA falchion sword) (STV 1.0 0.9091)) +(: cnet_isa_f2b84a1e11 (IsA falciform_ligament ligament) (STV 1.0 0.9091)) +(: cnet_isa_2ad0356522 (IsA falco bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_092c00a47d (IsA falcon bird) (STV 1.0 0.9524)) +(: cnet_isa_7602d4cc19 (IsA falcon hawk) (STV 1.0 0.9091)) +(: cnet_isa_cdb777fb6e (IsA falcon_gentle peregrine) (STV 1.0 0.9091)) +(: cnet_isa_5b76de6849 (IsA falconer hunter) (STV 1.0 0.9091)) +(: cnet_isa_f0d6cd29a7 (IsA falconidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_dd09f6e913 (IsA falconiforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_ff385971b4 (IsA falconry art) (STV 1.0 0.9091)) +(: cnet_isa_dfb69f2d3f (IsA falderal decoration) (STV 1.0 0.9091)) +(: cnet_isa_91fd792df0 (IsA fall season) (STV 1.0 0.9339)) +(: cnet_isa_431b72d205 (IsA fall sin) (STV 1.0 0.9091)) +(: cnet_isa_7fcc2012ee (IsA fall change_of_location) (STV 1.0 0.9091)) +(: cnet_isa_381e27070a (IsA fall victory) (STV 1.0 0.9091)) +(: cnet_isa_97971ad623 (IsA fall weakening) (STV 1.0 0.9091)) +(: cnet_isa_9be8e24e83 (IsA fall_armyworm caterpillar) (STV 1.0 0.9091)) +(: cnet_isa_9d3b87e538 (IsA fall_blooming_hydrangea hydrangea) (STV 1.0 0.9091)) +(: cnet_isa_8333952812 (IsA fall_board protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_f0bfd4e30d (IsA fall_cankerworm cankerworm) (STV 1.0 0.9091)) +(: cnet_isa_02e6082e37 (IsA fall_dandelion hawkbit) (STV 1.0 0.9091)) +(: cnet_isa_aae9ecc481 (IsA fall_of_man landmark) (STV 1.0 0.9091)) +(: cnet_isa_d49c072f57 (IsA fall_webworm webworm) (STV 1.0 0.9091)) +(: cnet_isa_1179f472da (IsA fallaciousness invalidity) (STV 1.0 0.9091)) +(: cnet_isa_cf1aaee503 (IsA fallacy misconception) (STV 1.0 0.9091)) +(: cnet_isa_83f554114d (IsA faller person) (STV 1.0 0.9091)) +(: cnet_isa_424a4d172e (IsA fallibility undependability) (STV 1.0 0.9091)) +(: cnet_isa_3d34c77c6d (IsA falling_in_love wonderful_feeling) (STV 1.0 0.9091)) +(: cnet_isa_73d79a2f20 (IsA falling_star meteor) (STV 1.0 0.9091)) +(: cnet_isa_3a54faff02 (IsA fallopian_tube female_internal_reproductive_organ) (STV 1.0 0.9091)) +(: cnet_isa_030523696d (IsA fallopian_tube salpinx) (STV 1.0 0.9091)) +(: cnet_isa_f2439153f6 (IsA fallout dust) (STV 1.0 0.9091)) +(: cnet_isa_18b004de36 (IsA fallout_shelter shelter) (STV 1.0 0.9091)) +(: cnet_isa_cf5ea5f1eb (IsA fallow cultivated_land) (STV 1.0 0.9091)) +(: cnet_isa_61167c68fa (IsA fallow_deer deer) (STV 1.0 0.9091)) +(: cnet_isa_7f8c6c88dc (IsA fall perianth) (STV 1.0 0.9091)) +(: cnet_isa_09310ea482 (IsA false_alarm warning) (STV 1.0 0.9091)) +(: cnet_isa_1259edac24 (IsA false_alumroot wildflower) (STV 1.0 0.9091)) +(: cnet_isa_6182a5fd03 (IsA false_asphodel liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_7f0445b06d (IsA false_azalea shrub) (STV 1.0 0.9091)) +(: cnet_isa_c89f0ba246 (IsA false_bottom structure) (STV 1.0 0.9091)) +(: cnet_isa_8f641d76df (IsA false_bracken fern) (STV 1.0 0.9091)) +(: cnet_isa_61ec69fd32 (IsA false_buckthorn buckthorn) (STV 1.0 0.9091)) +(: cnet_isa_2d9dff0e0b (IsA false_bugbane herb) (STV 1.0 0.9091)) +(: cnet_isa_2aa4430c5e (IsA false_chamomile wildflower) (STV 1.0 0.9091)) +(: cnet_isa_00de194cae (IsA false_deathcap agaric) (STV 1.0 0.9091)) +(: cnet_isa_5431268006 (IsA false_dragonhead physostegia) (STV 1.0 0.9091)) +(: cnet_isa_6611e0a29a (IsA false_face mask) (STV 1.0 0.9091)) +(: cnet_isa_a4700b2351 (IsA false_foxglove herb) (STV 1.0 0.9091)) +(: cnet_isa_dc8fbe98d5 (IsA false_gavial crocodilian_reptile) (STV 1.0 0.9091)) +(: cnet_isa_bdcfaa1c3f (IsA false_goatsbeard astilbe) (STV 1.0 0.9091)) +(: cnet_isa_41e821d7bb (IsA false_gromwell herb) (STV 1.0 0.9091)) +(: cnet_isa_204960b061 (IsA false_heather subshrub) (STV 1.0 0.9091)) +(: cnet_isa_f5d27467d9 (IsA false_imprisonment imprisonment) (STV 1.0 0.9091)) +(: cnet_isa_f3fd66a85f (IsA false_indigo amorpha) (STV 1.0 0.9091)) +(: cnet_isa_c79c71e3de (IsA false_lily_of_valley liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_dd4660cb1d (IsA false_lupine bush_pea) (STV 1.0 0.9091)) +(: cnet_isa_8f6c6950eb (IsA false_mallow mallow) (STV 1.0 0.9091)) +(: cnet_isa_48bde5c717 (IsA false_miterwort wildflower) (STV 1.0 0.9091)) +(: cnet_isa_9b4416a1a9 (IsA false_morel fungus) (STV 1.0 0.9091)) +(: cnet_isa_b34408e335 (IsA false_nettle herb) (STV 1.0 0.9091)) +(: cnet_isa_088ab23445 (IsA false_pregnancy physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_5252b251f9 (IsA false_pretense misdemeanor) (STV 1.0 0.9091)) +(: cnet_isa_cf343d8463 (IsA false_return tax_return) (STV 1.0 0.9091)) +(: cnet_isa_0664f6707b (IsA false_rue_anemone herb) (STV 1.0 0.9091)) +(: cnet_isa_033cd86d5f (IsA false_saber_toothed_tiger saber_toothed_tiger) (STV 1.0 0.9091)) +(: cnet_isa_e294e18863 (IsA false_sago sago_palm) (STV 1.0 0.9091)) +(: cnet_isa_006ab32b6e (IsA false_scorpion arachnid) (STV 1.0 0.9091)) +(: cnet_isa_b8006623f9 (IsA false_tamarisk shrub) (STV 1.0 0.9091)) +(: cnet_isa_25866df444 (IsA false_teeth denture) (STV 1.0 0.9091)) +(: cnet_isa_8c1c6fe3ae (IsA false_truffle fungus) (STV 1.0 0.9091)) +(: cnet_isa_b2fae1d4fc (IsA false_vampire leafnose_bat) (STV 1.0 0.9091)) +(: cnet_isa_62bf087b42 (IsA false_verdict verdict) (STV 1.0 0.9091)) +(: cnet_isa_b7f78b7bad (IsA false_vocal_cord vocal_cord) (STV 1.0 0.9091)) +(: cnet_isa_0554a389fe (IsA false_wintergreen wintergreen) (STV 1.0 0.9091)) +(: cnet_isa_9ec5bdace3 (IsA falsehood statement) (STV 1.0 0.9091)) +(: cnet_isa_52cb7ce33a (IsA falsetto head_register) (STV 1.0 0.9091)) +(: cnet_isa_84f3847ffc (IsA falsie padding) (STV 1.0 0.9091)) +(: cnet_isa_8cac8c4539 (IsA falsification determination) (STV 1.0 0.9091)) +(: cnet_isa_f8788f80b4 (IsA falsification dishonesty) (STV 1.0 0.9091)) +(: cnet_isa_d98c0ff5d7 (IsA falsification wrongdoing) (STV 1.0 0.9091)) +(: cnet_isa_5564341963 (IsA falsifier deceiver) (STV 1.0 0.9091)) +(: cnet_isa_a3a8747be8 (IsA falsity unreality) (STV 1.0 0.9091)) +(: cnet_isa_a007226f0a (IsA falun_gong movement) (STV 1.0 0.9091)) +(: cnet_isa_4b695a03ae (IsA fame honor) (STV 1.0 0.9091)) +(: cnet_isa_b49588b913 (IsA fame repute) (STV 1.0 0.9091)) +(: cnet_isa_60bb2ec332 (IsA familial_hypercholesterolemia hypercholesterolemia) (STV 1.0 0.9091)) +(: cnet_isa_b634c10082 (IsA familial_hypercholesterolemia monogenic_disorder) (STV 1.0 0.9091)) +(: cnet_isa_8615ad6cb3 (IsA familiar servant) (STV 1.0 0.9091)) +(: cnet_isa_7138ca4018 (IsA familiar spirit) (STV 1.0 0.9091)) +(: cnet_isa_c1123cd4a8 (IsA familiarity misbehavior) (STV 1.0 0.9091)) +(: cnet_isa_2e319664fe (IsA familiarity friendliness) (STV 1.0 0.9091)) +(: cnet_isa_0c067aada7 (IsA familiarity usualness) (STV 1.0 0.9091)) +(: cnet_isa_8c57e01b1e (IsA familiarization experience) (STV 1.0 0.9091)) +(: cnet_isa_1915929231 (IsA family good_thing_to_have) (STV 1.0 0.9091)) +(: cnet_isa_999c98edf7 (IsA family group_of_related_people) (STV 1.0 0.9454)) +(: cnet_isa_9ea2f3dbd5 (IsA family taxonomic_group) (STV 1.0 0.9091)) +(: cnet_isa_c4c3be7d6c (IsA family association) (STV 1.0 0.9091)) +(: cnet_isa_39db221870 (IsA family kin) (STV 1.0 0.9091)) +(: cnet_isa_358d9892d3 (IsA family lineage) (STV 1.0 0.9091)) +(: cnet_isa_7bfac1f82a (IsA family unit) (STV 1.0 0.9091)) +(: cnet_isa_e6511f6228 (IsA family_bible bible) (STV 1.0 0.9091)) +(: cnet_isa_17fb1908fb (IsA family_business closed_corporation) (STV 1.0 0.9091)) +(: cnet_isa_ce5171719f (IsA family_court court) (STV 1.0 0.9091)) +(: cnet_isa_5fbc672972 (IsA family_doctor general_practitioner) (STV 1.0 0.9091)) +(: cnet_isa_23cd5418b4 (IsA family_history case_history) (STV 1.0 0.9091)) +(: cnet_isa_18135565cc (IsA family_man husband) (STV 1.0 0.9091)) +(: cnet_isa_1e6714d9e8 (IsA family_osteoglossidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_5fb40bf56b (IsA family_practice medical_practice) (STV 1.0 0.9091)) +(: cnet_isa_c7c19061b4 (IsA family_room recreation_room) (STV 1.0 0.9091)) +(: cnet_isa_989ef7e7ea (IsA family_therapy group_therapy) (STV 1.0 0.9091)) +(: cnet_isa_92b69d683f (IsA family_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_819c119b83 (IsA famine calamity) (STV 1.0 0.9091)) +(: cnet_isa_c99cb1b1c0 (IsA famliy_room room_in_house) (STV 1.0 0.9091)) +(: cnet_isa_ab39a146d6 (IsA famulus attendant) (STV 1.0 0.9091)) +(: cnet_isa_a4fe7a206d (IsA fan device) (STV 1.0 0.9091)) +(: cnet_isa_5484ff48dd (IsA fan follower) (STV 1.0 0.9091)) +(: cnet_isa_70fb26754a (IsA fan_belt belt) (STV 1.0 0.9091)) +(: cnet_isa_9103117721 (IsA fan_blade blade) (STV 1.0 0.9091)) +(: cnet_isa_9d6f6579e1 (IsA fan_dance nude_dancing) (STV 1.0 0.9091)) +(: cnet_isa_0657d5bfbf (IsA fan_letter letter) (STV 1.0 0.9091)) +(: cnet_isa_204050eb4d (IsA fan_mail mail) (STV 1.0 0.9091)) +(: cnet_isa_f67a244c2e (IsA fan_palm palm) (STV 1.0 0.9091)) +(: cnet_isa_ced6e7558b (IsA fan_tracery tracery) (STV 1.0 0.9091)) +(: cnet_isa_e8a762ea91 (IsA fan_vaulting vaulting) (STV 1.0 0.9091)) +(: cnet_isa_3ce8882569 (IsA fanaloka civet) (STV 1.0 0.9091)) +(: cnet_isa_6cb013f9d2 (IsA fanatic person) (STV 1.0 0.9091)) +(: cnet_isa_d9f3b895f9 (IsA fanatic enthusiast) (STV 1.0 0.9091)) +(: cnet_isa_00446f7b90 (IsA fanaticism intolerance) (STV 1.0 0.9091)) +(: cnet_isa_841cced2fc (IsA fancier admirer) (STV 1.0 0.9091)) +(: cnet_isa_d78d4cb148 (IsA fanconi_s_anemia anemia) (STV 1.0 0.9091)) +(: cnet_isa_bfc854caa9 (IsA fanconi_s_anemia genetic_disease) (STV 1.0 0.9091)) +(: cnet_isa_514dba0fd0 (IsA fancy imagination) (STV 1.0 0.9091)) +(: cnet_isa_e3e11ac931 (IsA fancy_dress costume) (STV 1.0 0.9091)) +(: cnet_isa_87d07db383 (IsA fancy_dress disguise) (STV 1.0 0.9091)) +(: cnet_isa_88bb65c93e (IsA fancy_good commodity) (STV 1.0 0.9091)) +(: cnet_isa_20e5306236 (IsA fancy_man lover) (STV 1.0 0.9091)) +(: cnet_isa_ab4078b2b5 (IsA fandango social_dancing) (STV 1.0 0.9091)) +(: cnet_isa_146f98160e (IsA fandom following) (STV 1.0 0.9091)) +(: cnet_isa_e3e508d792 (IsA fang canine) (STV 1.0 0.9091)) +(: cnet_isa_9f4e2dd7e7 (IsA fang extremity) (STV 1.0 0.9091)) +(: cnet_isa_2cf147b371 (IsA fang tooth) (STV 1.0 0.9091)) +(: cnet_isa_30df053694 (IsA fang bantu) (STV 1.0 0.9091)) +(: cnet_isa_28869e048c (IsA fanion flag) (STV 1.0 0.9091)) +(: cnet_isa_3aff5cbe76 (IsA fanlight window) (STV 1.0 0.9091)) +(: cnet_isa_14fccb646a (IsA fanny_adam canned_meat) (STV 1.0 0.9091)) +(: cnet_isa_9203aaa6ba (IsA fanny_pack waist_pack) (STV 1.0 0.9091)) +(: cnet_isa_39e1e8377f (IsA fantail overhang) (STV 1.0 0.9091)) +(: cnet_isa_7bdcdb8978 (IsA fantan card_game) (STV 1.0 0.9091)) +(: cnet_isa_ff6cbffc66 (IsA fantan game_of_chance) (STV 1.0 0.9091)) +(: cnet_isa_ed12a214a9 (IsA fantasia musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_86d6631497 (IsA fantasist creator) (STV 1.0 0.9091)) +(: cnet_isa_ba1828f87b (IsA fantast visionary) (STV 1.0 0.9091)) +(: cnet_isa_8fc7138f68 (IsA fantasy imagination) (STV 1.0 0.9091)) +(: cnet_isa_97fc2b96cc (IsA fantasy fiction) (STV 1.0 0.9091)) +(: cnet_isa_aa736b306c (IsA fantasy_life fantasy) (STV 1.0 0.9091)) +(: cnet_isa_ace7c842fa (IsA fantasy_world fantasy) (STV 1.0 0.9091)) +(: cnet_isa_648fde94f4 (IsA fantod disorder) (STV 1.0 0.9091)) +(: cnet_isa_771c307d8f (IsA faq list) (STV 1.0 0.9091)) +(: cnet_isa_2d0455c1b0 (IsA far_cry disparity) (STV 1.0 0.9091)) +(: cnet_isa_e5dc367198 (IsA far_cry farness) (STV 1.0 0.9091)) +(: cnet_isa_18008232b4 (IsA farad capacitance_unit) (STV 1.0 0.9091)) +(: cnet_isa_ac931b7942 (IsA farandole folk_dancing) (STV 1.0 0.9091)) +(: cnet_isa_5b2c144ac4 (IsA farce comedy) (STV 1.0 0.9091)) +(: cnet_isa_9013639ebd (IsA fardel burden) (STV 1.0 0.9091)) +(: cnet_isa_afb4d8825d (IsA fare food) (STV 1.0 0.9091)) +(: cnet_isa_2f5cba3c79 (IsA fare passenger) (STV 1.0 0.9091)) +(: cnet_isa_03160173d8 (IsA fare charge) (STV 1.0 0.9091)) +(: cnet_isa_30aaa89483 (IsA fare_increase increase) (STV 1.0 0.9091)) +(: cnet_isa_d86b9a9939 (IsA fare_stage stage) (STV 1.0 0.9091)) +(: cnet_isa_dfeb1cbeaf (IsA fare_thee_well perfection) (STV 1.0 0.9091)) +(: cnet_isa_d730979b1e (IsA farewell departure) (STV 1.0 0.9091)) +(: cnet_isa_ef35fc1d23 (IsA farewell acknowledgment) (STV 1.0 0.9091)) +(: cnet_isa_2134489ac5 (IsA farina meal) (STV 1.0 0.9091)) +(: cnet_isa_36170d4a29 (IsA farkleberry blueberry) (STV 1.0 0.9091)) +(: cnet_isa_a56e18fb5a (IsA farley_maidenhair brittle_maidenhair) (STV 1.0 0.9091)) +(: cnet_isa_a43320f988 (IsA farm workplace) (STV 1.0 0.9091)) +(: cnet_isa_f8c043c69f (IsA farm_animal animal) (STV 1.0 0.9339)) +(: cnet_isa_4a33af09e5 (IsA farm_bill bill) (STV 1.0 0.9091)) +(: cnet_isa_c34420699d (IsA farm_boy male_child) (STV 1.0 0.9091)) +(: cnet_isa_620ae916a5 (IsA farm_building building) (STV 1.0 0.9091)) +(: cnet_isa_7a43fca017 (IsA farm_credit_system banking_industry) (STV 1.0 0.9091)) +(: cnet_isa_2ff2da10fa (IsA farm_girl female_child) (STV 1.0 0.9091)) +(: cnet_isa_eb48206fcb (IsA farm_horse workhorse) (STV 1.0 0.9091)) +(: cnet_isa_b00f962437 (IsA farm_machine machine) (STV 1.0 0.9091)) +(: cnet_isa_4f009349ac (IsA farm_team minor_league_team) (STV 1.0 0.9091)) +(: cnet_isa_cb7a4e5bee (IsA farmer_s_lung alveolitis) (STV 1.0 0.9091)) +(: cnet_isa_f242b7605f (IsA farmer_s_market open_air_market) (STV 1.0 0.9091)) +(: cnet_isa_05aaca2592 (IsA farmer creator) (STV 1.0 0.9091)) +(: cnet_isa_665b87ab45 (IsA farmer_labor_party party) (STV 1.0 0.9091)) +(: cnet_isa_7f7c411a89 (IsA farmerette farmhand) (STV 1.0 0.9091)) +(: cnet_isa_3430fb318d (IsA farmhand hired_hand) (STV 1.0 0.9091)) +(: cnet_isa_ed6ce3a5d9 (IsA farmhouse house_at_farm) (STV 1.0 0.9091)) +(: cnet_isa_bc728a5009 (IsA farmhouse house) (STV 1.0 0.9091)) +(: cnet_isa_4973467868 (IsA farming cultivation) (STV 1.0 0.9091)) +(: cnet_isa_2b55c44de4 (IsA farming occupation) (STV 1.0 0.9091)) +(: cnet_isa_991c55878a (IsA farmland country) (STV 1.0 0.9091)) +(: cnet_isa_6ea89fad1f (IsA farmplace farm) (STV 1.0 0.9091)) +(: cnet_isa_c0701b3ece (IsA farmstead land) (STV 1.0 0.9091)) +(: cnet_isa_80610007c8 (IsA farmyard yard) (STV 1.0 0.9091)) +(: cnet_isa_3bc26e937f (IsA farness distance) (STV 1.0 0.9091)) +(: cnet_isa_e3dc780a7f (IsA faro card_game) (STV 1.0 0.9091)) +(: cnet_isa_06b2ab1caf (IsA faroese scandinavian) (STV 1.0 0.9091)) +(: cnet_isa_e4df9ae37d (IsA farrier blacksmith) (STV 1.0 0.9091)) +(: cnet_isa_ad1f07cf36 (IsA farrow parturition) (STV 1.0 0.9091)) +(: cnet_isa_4479c39f9d (IsA farsi iranian) (STV 1.0 0.9091)) +(: cnet_isa_921e8b5017 (IsA fart reflex) (STV 1.0 0.9091)) +(: cnet_isa_06c06e9236 (IsA farthing coin) (STV 1.0 0.9091)) +(: cnet_isa_563021feaa (IsA farthingale hoop) (STV 1.0 0.9091)) +(: cnet_isa_9d723c7d8e (IsA fartlek athletic_training) (STV 1.0 0.9091)) +(: cnet_isa_1a77c1f237 (IsA fasce emblem) (STV 1.0 0.9091)) +(: cnet_isa_4b484d0413 (IsA fascia connective_tissue) (STV 1.0 0.9091)) +(: cnet_isa_f95b44e4f8 (IsA fascicle installment) (STV 1.0 0.9091)) +(: cnet_isa_04a39e053e (IsA fasciculation twitch) (STV 1.0 0.9091)) +(: cnet_isa_12c45c69ab (IsA fascination attraction) (STV 1.0 0.9091)) +(: cnet_isa_0b8d7192e5 (IsA fascination enchantment) (STV 1.0 0.9091)) +(: cnet_isa_791fc0f39c (IsA fasciola worm_genus) (STV 1.0 0.9091)) +(: cnet_isa_34c39e3046 (IsA fascioliasis infestation) (STV 1.0 0.9091)) +(: cnet_isa_ee9cc1f06e (IsA fasciolidae worm_family) (STV 1.0 0.9091)) +(: cnet_isa_c607d2c46e (IsA fasciolopsiasis infestation) (STV 1.0 0.9091)) +(: cnet_isa_10d9b958d7 (IsA fasciolopsis worm_genus) (STV 1.0 0.9091)) +(: cnet_isa_3136adc9d6 (IsA fasciolopsis_buski fluke) (STV 1.0 0.9091)) +(: cnet_isa_20413f5166 (IsA fascism political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_05183bf5a8 (IsA fascist adult) (STV 1.0 0.9091)) +(: cnet_isa_6cae329c67 (IsA fascista fascist) (STV 1.0 0.9091)) +(: cnet_isa_1a161b361e (IsA fashion practice) (STV 1.0 0.9091)) +(: cnet_isa_491ec6f74a (IsA fashion consumer_good) (STV 1.0 0.9091)) +(: cnet_isa_aa1134e6cc (IsA fashion vogue) (STV 1.0 0.9091)) +(: cnet_isa_ecf4c873f0 (IsA fashion_consultant adviser) (STV 1.0 0.9091)) +(: cnet_isa_7bb467d792 (IsA fashion_plate plate) (STV 1.0 0.9091)) +(: cnet_isa_ed925e8098 (IsA fast abstinence) (STV 1.0 0.9091)) +(: cnet_isa_ad8cb345d4 (IsA fast_break break) (STV 1.0 0.9091)) +(: cnet_isa_19ae771d18 (IsA fast_buck net_income) (STV 1.0 0.9091)) +(: cnet_isa_e0e27ccc45 (IsA fast_day religious_holiday) (STV 1.0 0.9091)) +(: cnet_isa_3a8dc35655 (IsA fast_food nutriment) (STV 1.0 0.9091)) +(: cnet_isa_bfea37e503 (IsA fast_food_resturant resturant) (STV 1.0 0.9091)) +(: cnet_isa_8a67390c66 (IsA fast_lane traffic_lane) (STV 1.0 0.9091)) +(: cnet_isa_4abc75fb30 (IsA fast_lane life_style) (STV 1.0 0.9091)) +(: cnet_isa_d7876fe3be (IsA fast_of_esther minor_fast_day) (STV 1.0 0.9091)) +(: cnet_isa_6b7ed39555 (IsA fast_of_firstborn minor_fast_day) (STV 1.0 0.9091)) +(: cnet_isa_529e567fec (IsA fast_of_gedaliah minor_fast_day) (STV 1.0 0.9091)) +(: cnet_isa_b4ea81460a (IsA fast_of_tammuz minor_fast_day) (STV 1.0 0.9091)) +(: cnet_isa_9028814a07 (IsA fast_of_tevet minor_fast_day) (STV 1.0 0.9091)) +(: cnet_isa_52b1ba2634 (IsA fast_reactor nuclear_reactor) (STV 1.0 0.9091)) +(: cnet_isa_afdc32d687 (IsA fast_time_scale time_scale) (STV 1.0 0.9091)) +(: cnet_isa_eab85deb7d (IsA fast_track mean) (STV 1.0 0.9091)) +(: cnet_isa_5e974869de (IsA fastball pitch) (STV 1.0 0.9091)) +(: cnet_isa_13fea24a87 (IsA fastener restraint) (STV 1.0 0.9091)) +(: cnet_isa_b3c5be943e (IsA fastener person) (STV 1.0 0.9091)) +(: cnet_isa_790739d456 (IsA fastening joining) (STV 1.0 0.9091)) +(: cnet_isa_c46a293dd3 (IsA fastidiousness cleanliness) (STV 1.0 0.9091)) +(: cnet_isa_dcb975a263 (IsA fastnacht raised_doughnut) (STV 1.0 0.9091)) +(: cnet_isa_ec62c797b8 (IsA fastness immovability) (STV 1.0 0.9091)) +(: cnet_isa_8fbeff2ff7 (IsA fat lipid) (STV 1.0 0.9091)) +(: cnet_isa_64dc7d1bb3 (IsA fat_cat rich_person) (STV 1.0 0.9091)) +(: cnet_isa_b228f2ea7d (IsA fat_cell somatic_cell) (STV 1.0 0.9091)) +(: cnet_isa_a861d041f8 (IsA fat_chance probability) (STV 1.0 0.9091)) +(: cnet_isa_34d63be4b7 (IsA fat_embolism embolism) (STV 1.0 0.9091)) +(: cnet_isa_00fce32e98 (IsA fat_farm health_spa) (STV 1.0 0.9091)) +(: cnet_isa_06b92afdf4 (IsA fat_metabolism metabolism) (STV 1.0 0.9091)) +(: cnet_isa_cdfbaab045 (IsA fat_soluble_vitamin vitamin) (STV 1.0 0.9091)) +(: cnet_isa_7bf804f17f (IsA fata_morgana mirage) (STV 1.0 0.9091)) +(: cnet_isa_6582e9a4c6 (IsA fatal_accident accident) (STV 1.0 0.9091)) +(: cnet_isa_8b23009540 (IsA fatal_accident fatality) (STV 1.0 0.9091)) +(: cnet_isa_8dbc29a459 (IsA fatalism credence) (STV 1.0 0.9091)) +(: cnet_isa_d06775f61f (IsA fatalism determinism) (STV 1.0 0.9091)) +(: cnet_isa_5bc0905248 (IsA fatalist necessitarian) (STV 1.0 0.9091)) +(: cnet_isa_ce6cbec020 (IsA fatality deadliness) (STV 1.0 0.9091)) +(: cnet_isa_9beb383cfc (IsA fatality death) (STV 1.0 0.9091)) +(: cnet_isa_31c7253552 (IsA fatback salt_pork) (STV 1.0 0.9091)) +(: cnet_isa_71d00aaa27 (IsA fate causal_agent) (STV 1.0 0.9091)) +(: cnet_isa_6d60ba51bf (IsA fathead fool) (STV 1.0 0.9091)) +(: cnet_isa_52d3ee346c (IsA father_s_day day) (STV 1.0 0.9091)) +(: cnet_isa_e400f9af4c (IsA father parent) (STV 1.0 0.9091)) +(: cnet_isa_030d833b8d (IsA father leader) (STV 1.0 0.9091)) +(: cnet_isa_d3e8e3ea98 (IsA father_figure man) (STV 1.0 0.9454)) +(: cnet_isa_71055fa203 (IsA father_in_law father) (STV 1.0 0.9091)) +(: cnet_isa_a7ebb77a54 (IsA father_in_law in_law) (STV 1.0 0.9091)) +(: cnet_isa_4174ec2d79 (IsA father_of_church theologian) (STV 1.0 0.9091)) +(: cnet_isa_0284099dbe (IsA fatherhood position) (STV 1.0 0.9091)) +(: cnet_isa_bb0a5af385 (IsA fatherhood kinship) (STV 1.0 0.9091)) +(: cnet_isa_f467997953 (IsA fatherland country) (STV 1.0 0.9091)) +(: cnet_isa_0aeef95a83 (IsA fatherliness parental_quality) (STV 1.0 0.9091)) +(: cnet_isa_b6d587dbd6 (IsA fathom volume_unit) (STV 1.0 0.9091)) +(: cnet_isa_8dbd9f73b0 (IsA fathom linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_561beeae79 (IsA fatigability weakness) (STV 1.0 0.9091)) +(: cnet_isa_66c90ddf1a (IsA fatigue deadly_problem_on_australian_road) (STV 1.0 0.9091)) +(: cnet_isa_f72b0067a3 (IsA fatigue boredom) (STV 1.0 0.9091)) +(: cnet_isa_2fa848ae7f (IsA fatigue failing) (STV 1.0 0.9091)) +(: cnet_isa_d8caa84591 (IsA fatigue temporary_state) (STV 1.0 0.9091)) +(: cnet_isa_4ad511a672 (IsA fatigue_crack crack) (STV 1.0 0.9091)) +(: cnet_isa_b53f3be932 (IsA fatigue_duty assignment) (STV 1.0 0.9091)) +(: cnet_isa_42e7cec22b (IsA fatigue_fracture fracture) (STV 1.0 0.9091)) +(: cnet_isa_e284f16904 (IsA fatigue_party party) (STV 1.0 0.9091)) +(: cnet_isa_07a29917be (IsA fatigue military_uniform) (STV 1.0 0.9091)) +(: cnet_isa_04306a0f49 (IsA fatness bodily_property) (STV 1.0 0.9091)) +(: cnet_isa_2aef130e96 (IsA fatso large_person) (STV 1.0 0.9091)) +(: cnet_isa_7bc48f0bcc (IsA fattism discrimination) (STV 1.0 0.9091)) +(: cnet_isa_6945bd299f (IsA fatty_acid carboxylic_acid) (STV 1.0 0.9091)) +(: cnet_isa_9e7341b6d2 (IsA fatty_liver liver_disease) (STV 1.0 0.9091)) +(: cnet_isa_4874402132 (IsA fatwa opinion) (STV 1.0 0.9091)) +(: cnet_isa_a029219b7c (IsA fatwah opinion) (STV 1.0 0.9091)) +(: cnet_isa_4f2854e613 (IsA faubourg suburb) (STV 1.0 0.9091)) +(: cnet_isa_4e83e63bfa (IsA fauce passage) (STV 1.0 0.9091)) +(: cnet_isa_8ddb68ffae (IsA faucet regulator) (STV 1.0 0.9091)) +(: cnet_isa_53fff3281b (IsA fauld armor_plate) (STV 1.0 0.9091)) +(: cnet_isa_b9c2245693 (IsA fault responsibility) (STV 1.0 0.9091)) +(: cnet_isa_b41d08fa65 (IsA fault breakdown) (STV 1.0 0.9091)) +(: cnet_isa_1dbfb65c08 (IsA fault crack) (STV 1.0 0.9091)) +(: cnet_isa_c99273700c (IsA fault serve) (STV 1.0 0.9091)) +(: cnet_isa_8628b990ff (IsA fault_line line) (STV 1.0 0.9091)) +(: cnet_isa_50678ca782 (IsA faultfinding criticism) (STV 1.0 0.9091)) +(: cnet_isa_86cea6bdb2 (IsA faultlessness correctness) (STV 1.0 0.9091)) +(: cnet_isa_c98e3397c1 (IsA faun roman_deity) (STV 1.0 0.9091)) +(: cnet_isa_c129f3fd41 (IsA fauna collection) (STV 1.0 0.9091)) +(: cnet_isa_48768afa13 (IsA fauteuil armchair) (STV 1.0 0.9091)) +(: cnet_isa_dc0f4e42a9 (IsA fauvism artistic_movement) (STV 1.0 0.9091)) +(: cnet_isa_99066c96be (IsA fauvist painter) (STV 1.0 0.9091)) +(: cnet_isa_90a5a669ae (IsA faux_pas blunder) (STV 1.0 0.9091)) +(: cnet_isa_071445eed1 (IsA fava_bean shell_bean) (STV 1.0 0.9091)) +(: cnet_isa_efe7c89077 (IsA favism anemia) (STV 1.0 0.9091)) +(: cnet_isa_00cc1e3bb2 (IsA favor kindness) (STV 1.0 0.9091)) +(: cnet_isa_c7979943b5 (IsA favor advantage) (STV 1.0 0.9091)) +(: cnet_isa_4a6e4990d4 (IsA favor inclination) (STV 1.0 0.9091)) +(: cnet_isa_0a6aa4a293 (IsA favor approval) (STV 1.0 0.9091)) +(: cnet_isa_1ab8a81874 (IsA favorableness advantage) (STV 1.0 0.9091)) +(: cnet_isa_d932c477f2 (IsA favorite choice) (STV 1.0 0.9091)) +(: cnet_isa_03aa9aaa1e (IsA favorite_son campaigner) (STV 1.0 0.9091)) +(: cnet_isa_51a7c66f2f (IsA favoritism inclination) (STV 1.0 0.9091)) +(: cnet_isa_7278afd05a (IsA favus fungal_infection) (STV 1.0 0.9091)) +(: cnet_isa_bb8fb87a3e (IsA fawn deer) (STV 1.0 0.9091)) +(: cnet_isa_62ce981c3b (IsA fawn young_mammal) (STV 1.0 0.9091)) +(: cnet_isa_4ee05bcec6 (IsA fawn_lily dogtooth_violet) (STV 1.0 0.9091)) +(: cnet_isa_a31b923858 (IsA fear emotion) (STV 1.0 0.9659)) +(: cnet_isa_1d9b5bc5ee (IsA fearfulness cowardice) (STV 1.0 0.9091)) +(: cnet_isa_eaef289e85 (IsA fearlessness courage) (STV 1.0 0.9091)) +(: cnet_isa_6df8d3c119 (IsA fearlessness feeling) (STV 1.0 0.9091)) +(: cnet_isa_ac84d3f6c2 (IsA feasibility practicability) (STV 1.0 0.9091)) +(: cnet_isa_f5015944a0 (IsA feast thing) (STV 1.0 0.9091)) +(: cnet_isa_3e3de9508a (IsA feast_day holiday) (STV 1.0 0.9091)) +(: cnet_isa_cd399fb7d8 (IsA feasting eating) (STV 1.0 0.9091)) +(: cnet_isa_3942e22d79 (IsA feather rotation) (STV 1.0 0.9091)) +(: cnet_isa_7cd64878f2 (IsA feather animal_material) (STV 1.0 0.9091)) +(: cnet_isa_424d5a890c (IsA feather body_covering) (STV 1.0 0.9091)) +(: cnet_isa_c70f762511 (IsA feather_ball cactus) (STV 1.0 0.9091)) +(: cnet_isa_45e7fc5176 (IsA feather_bed mattress) (STV 1.0 0.9091)) +(: cnet_isa_a233fa6283 (IsA feather_boa scarf) (STV 1.0 0.9091)) +(: cnet_isa_8e544a0820 (IsA feather_palm palm) (STV 1.0 0.9091)) +(: cnet_isa_52ca4f5178 (IsA feather_reed_grass reed_grass) (STV 1.0 0.9091)) +(: cnet_isa_e204947b05 (IsA feather_star crinoid) (STV 1.0 0.9091)) +(: cnet_isa_550ba917cc (IsA featherbedding practice) (STV 1.0 0.9091)) +(: cnet_isa_5b580af769 (IsA featheredge edge) (STV 1.0 0.9091)) +(: cnet_isa_c3f27f2390 (IsA featherfoil aquatic_plant) (STV 1.0 0.9091)) +(: cnet_isa_0de49de9ae (IsA feathertop grass) (STV 1.0 0.9091)) +(: cnet_isa_e8a3c65183 (IsA featherweight boxer) (STV 1.0 0.9091)) +(: cnet_isa_a4954160a0 (IsA featherweight prizefighter) (STV 1.0 0.9091)) +(: cnet_isa_f1672eb507 (IsA featherweight wrestler) (STV 1.0 0.9091)) +(: cnet_isa_b851c4b9b7 (IsA feature merchandise) (STV 1.0 0.9091)) +(: cnet_isa_cc93a7daeb (IsA feature body_part) (STV 1.0 0.9091)) +(: cnet_isa_f9f23d69a4 (IsA feature property) (STV 1.0 0.9091)) +(: cnet_isa_20c05539e0 (IsA feature article) (STV 1.0 0.9091)) +(: cnet_isa_8ccc19b2e7 (IsA feature movie) (STV 1.0 0.9091)) +(: cnet_isa_c59f0a37fa (IsA feature_of_speech property) (STV 1.0 0.9091)) +(: cnet_isa_40adc11820 (IsA february gregorian_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_d9f22d47b1 (IsA fecal_impaction constipation) (STV 1.0 0.9091)) +(: cnet_isa_38d2724d50 (IsA fecal_matter body_waste) (STV 1.0 0.9091)) +(: cnet_isa_7e2b8ea6e8 (IsA fecal_occult_test diagnostic_test) (STV 1.0 0.9091)) +(: cnet_isa_14c778daa3 (IsA fechner_s_law law) (STV 1.0 0.9091)) +(: cnet_isa_4862092403 (IsA fecklessness worthlessness) (STV 1.0 0.9091)) +(: cnet_isa_b4053ab324 (IsA fecula body_waste) (STV 1.0 0.9091)) +(: cnet_isa_85d5c43f06 (IsA feculence dirtiness) (STV 1.0 0.9091)) +(: cnet_isa_755822a9e2 (IsA fecundity creativity) (STV 1.0 0.9091)) +(: cnet_isa_84f9a17dfd (IsA fedayeen paramilitary) (STV 1.0 0.9091)) +(: cnet_isa_b251700528 (IsA fedayeen_saddam paramilitary) (STV 1.0 0.9091)) +(: cnet_isa_f14c33a4e5 (IsA fedelline pasta) (STV 1.0 0.9091)) +(: cnet_isa_31dcd9f45d (IsA federal_aviation_agency agency) (STV 1.0 0.9091)) +(: cnet_isa_82e6be57e6 (IsA federal_bureau_of_investigation law_enforcement_agency) (STV 1.0 0.9091)) +(: cnet_isa_2dc5ba9c66 (IsA federal_bureau_of_prison law_enforcement_agency) (STV 1.0 0.9091)) +(: cnet_isa_7e44d84f1d (IsA federal_communication_commission independent_agency) (STV 1.0 0.9091)) +(: cnet_isa_cfcf6ba24f (IsA federal_court court) (STV 1.0 0.9091)) +(: cnet_isa_661f75d8d8 (IsA federal_deficit budget_deficit) (STV 1.0 0.9091)) +(: cnet_isa_98d4516c1a (IsA federal_department government_department) (STV 1.0 0.9091)) +(: cnet_isa_49a3441907 (IsA federal_deposit_insurance_corporation corporation) (STV 1.0 0.9091)) +(: cnet_isa_1e95431d52 (IsA federal_district administrative_district) (STV 1.0 0.9091)) +(: cnet_isa_c840c03d2c (IsA federal_emergency_management_agency independent_agency) (STV 1.0 0.9091)) +(: cnet_isa_6f70318924 (IsA federal_government government) (STV 1.0 0.9091)) +(: cnet_isa_9863b7b0f3 (IsA federal_home_loan_bank_system financial_institution) (STV 1.0 0.9091)) +(: cnet_isa_f4f63a9de7 (IsA federal_home_loan_mortgage_corporation corporation) (STV 1.0 0.9091)) +(: cnet_isa_628b6d43e2 (IsA federal_housing_administration agency) (STV 1.0 0.9091)) +(: cnet_isa_1ccd34dd76 (IsA federal_judiciary judiciary) (STV 1.0 0.9091)) +(: cnet_isa_ecc5436021 (IsA federal_judiciary law_enforcement_agency) (STV 1.0 0.9091)) +(: cnet_isa_e9885237c4 (IsA federal_law_enforcement_training_center law_enforcement_agency) (STV 1.0 0.9091)) +(: cnet_isa_83d3545ae5 (IsA federal_national_mortgage_association corporation) (STV 1.0 0.9091)) +(: cnet_isa_aea9db35ff (IsA federal_official agent) (STV 1.0 0.9091)) +(: cnet_isa_82ffa24af2 (IsA federal_protective_service independent_agency) (STV 1.0 0.9091)) +(: cnet_isa_353087280c (IsA federal_reserve_bank depository_financial_institution) (STV 1.0 0.9091)) +(: cnet_isa_2621cfc600 (IsA federal_reserve_board board) (STV 1.0 0.9091)) +(: cnet_isa_6afd204b0a (IsA federal_reserve_system central_bank) (STV 1.0 0.9091)) +(: cnet_isa_0be4071495 (IsA federal_saving_bank saving_bank) (STV 1.0 0.9091)) +(: cnet_isa_a58cddac4a (IsA federal_security_bureau russian_agency) (STV 1.0 0.9091)) +(: cnet_isa_28c5fdfc2c (IsA federal_soldier yank) (STV 1.0 0.9091)) +(: cnet_isa_f6bf72170e (IsA federal_tax_lien tax_lien) (STV 1.0 0.9091)) +(: cnet_isa_c818e3489d (IsA federal_trade_commission independent_agency) (STV 1.0 0.9091)) +(: cnet_isa_fde8e3d402 (IsA federalism political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_fc2d0920d8 (IsA federalist advocate) (STV 1.0 0.9091)) +(: cnet_isa_f9ac391cf8 (IsA federalist politician) (STV 1.0 0.9091)) +(: cnet_isa_630a94aa55 (IsA federalist_party party) (STV 1.0 0.9091)) +(: cnet_isa_d093b4aef1 (IsA federalization control) (STV 1.0 0.9091)) +(: cnet_isa_4d4be439e8 (IsA federalization coalition) (STV 1.0 0.9091)) +(: cnet_isa_08476dc476 (IsA federation constitution) (STV 1.0 0.9091)) +(: cnet_isa_bc2a21623a (IsA federation organization) (STV 1.0 0.9091)) +(: cnet_isa_bf0d782add (IsA fedora hat) (STV 1.0 0.9091)) +(: cnet_isa_04ba4fe54c (IsA fee fixed_charge) (STV 1.0 0.9091)) +(: cnet_isa_f9bba2a283 (IsA fee interest) (STV 1.0 0.9091)) +(: cnet_isa_40234bf7ad (IsA fee_simple fee) (STV 1.0 0.9091)) +(: cnet_isa_483af81c98 (IsA fee_splitting payment) (STV 1.0 0.9091)) +(: cnet_isa_009938dd20 (IsA fee_tail fee) (STV 1.0 0.9091)) +(: cnet_isa_4e484ee7b6 (IsA feeblemindedness abnormality) (STV 1.0 0.9091)) +(: cnet_isa_69cd8f1879 (IsA feebleness weakness) (STV 1.0 0.9091)) +(: cnet_isa_83a2aa847c (IsA feed food) (STV 1.0 0.9091)) +(: cnet_isa_07461fb4a9 (IsA feed_grain feed) (STV 1.0 0.9091)) +(: cnet_isa_7c2140f5b6 (IsA feedback answer) (STV 1.0 0.9091)) +(: cnet_isa_2e75edb378 (IsA feedback natural_process) (STV 1.0 0.9091)) +(: cnet_isa_2faaddfaaa (IsA feedback_circuit circuit) (STV 1.0 0.9091)) +(: cnet_isa_9d0d4a287a (IsA feeder animal) (STV 1.0 0.9091)) +(: cnet_isa_21a2586f08 (IsA feeder domestic_animal) (STV 1.0 0.9091)) +(: cnet_isa_088649776f (IsA feeder branch) (STV 1.0 0.9091)) +(: cnet_isa_b099b06ba4 (IsA feeder_line path) (STV 1.0 0.9091)) +(: cnet_isa_9f558a6132 (IsA feeding provision) (STV 1.0 0.9091)) +(: cnet_isa_b59aa048ce (IsA feedlot building) (STV 1.0 0.9091)) +(: cnet_isa_9221ec89e1 (IsA feedstock raw_material) (STV 1.0 0.9091)) +(: cnet_isa_7928abf440 (IsA feel foreplay) (STV 1.0 0.9091)) +(: cnet_isa_af00df1228 (IsA feel awareness) (STV 1.0 0.9091)) +(: cnet_isa_8523b9dbf7 (IsA feeling state) (STV 1.0 0.9091)) +(: cnet_isa_49675cfa5b (IsA feeling intuition) (STV 1.0 0.9091)) +(: cnet_isa_4446029b34 (IsA feeling somesthesia) (STV 1.0 0.9091)) +(: cnet_isa_129028bc5a (IsA feeling_dominated threat_control_override_symptom) (STV 1.0 0.9091)) +(: cnet_isa_42781580b1 (IsA feeling not) (STV 1.0 0.9091)) +(: cnet_isa_77cc3a763e (IsA feeling not_fact) (STV 1.0 0.9091)) +(: cnet_isa_5cda5296e4 (IsA feeling sensitivity) (STV 1.0 0.9091)) +(: cnet_isa_a9fa5391ad (IsA fehling_s_solution solution) (STV 1.0 0.9091)) +(: cnet_isa_0db91d31a9 (IsA feijoa edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_72abb7d794 (IsA feijoa shrub) (STV 1.0 0.9091)) +(: cnet_isa_8129a47081 (IsA feint maneuver) (STV 1.0 0.9091)) +(: cnet_isa_55f67e6eef (IsA feist cur) (STV 1.0 0.9091)) +(: cnet_isa_121745066c (IsA feldspar spar) (STV 1.0 0.9091)) +(: cnet_isa_86c15beed8 (IsA felicia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_95f7fcd3a8 (IsA felicity appropriateness) (STV 1.0 0.9091)) +(: cnet_isa_c4249cfb2f (IsA felidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_d562e056c9 (IsA feline carnivore) (STV 1.0 0.9091)) +(: cnet_isa_cabd49ae8d (IsA felis mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_4d34c4085a (IsA fell killing) (STV 1.0 0.9091)) +(: cnet_isa_00ef363bfc (IsA fell seam) (STV 1.0 0.9091)) +(: cnet_isa_3e0dd3114a (IsA fellah peasant) (STV 1.0 0.9091)) +(: cnet_isa_1cb50739ed (IsA fellata african) (STV 1.0 0.9091)) +(: cnet_isa_723d0d7027 (IsA fellatio oral_sex) (STV 1.0 0.9091)) +(: cnet_isa_d2b6c4af82 (IsA felloe rim) (STV 1.0 0.9091)) +(: cnet_isa_fe2e1cc867 (IsA fellow man) (STV 1.0 0.9091)) +(: cnet_isa_f9c7c806cc (IsA fellow member) (STV 1.0 0.9091)) +(: cnet_isa_5771d08d0e (IsA fellow singleton) (STV 1.0 0.9091)) +(: cnet_isa_f5c0f8defd (IsA fellow_traveler sympathizer) (STV 1.0 0.9091)) +(: cnet_isa_dd9e17689c (IsA fellowship financial_aid) (STV 1.0 0.9091)) +(: cnet_isa_a1a97b88c3 (IsA fellowship prize) (STV 1.0 0.9091)) +(: cnet_isa_e5a679b66d (IsA felo_de_se suicide) (STV 1.0 0.9091)) +(: cnet_isa_0a3c65b7f2 (IsA felon infection) (STV 1.0 0.9091)) +(: cnet_isa_87a18b107d (IsA felony crime) (STV 1.0 0.9091)) +(: cnet_isa_ea7d4a095f (IsA felt very_soft_kind_of_fabric) (STV 1.0 0.9091)) +(: cnet_isa_5685182c85 (IsA felt fabric) (STV 1.0 0.9091)) +(: cnet_isa_d4d00d1b55 (IsA felt_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_9343446b0e (IsA felt_fungus fungus) (STV 1.0 0.9091)) +(: cnet_isa_9960f83224 (IsA felt_tip_pen pen) (STV 1.0 0.9091)) +(: cnet_isa_e0f6954322 (IsA felucca sailing_vessel) (STV 1.0 0.9091)) +(: cnet_isa_1fb8d3fe2c (IsA felwort gentian) (STV 1.0 0.9091)) +(: cnet_isa_174eb42c35 (IsA female animal) (STV 1.0 0.9091)) +(: cnet_isa_1bc0364b33 (IsA female person) (STV 1.0 0.9091)) +(: cnet_isa_d78b7a93a6 (IsA female_aristocrat aristocrat) (STV 1.0 0.9091)) +(: cnet_isa_2020ab7f25 (IsA female_body human_body) (STV 1.0 0.9091)) +(: cnet_isa_ca7264a8c6 (IsA female_bonding bonding) (STV 1.0 0.9091)) +(: cnet_isa_a0307a99f9 (IsA female_chest thorax) (STV 1.0 0.9091)) +(: cnet_isa_3211501e0b (IsA female_child female) (STV 1.0 0.9091)) +(: cnet_isa_0eeaac729f (IsA female_genitalia genitalia) (STV 1.0 0.9091)) +(: cnet_isa_096d8610b8 (IsA female_internal_reproductive_organ reproductive_organ) (STV 1.0 0.9091)) +(: cnet_isa_5780ceb3c1 (IsA female_mammal female) (STV 1.0 0.9091)) +(: cnet_isa_2331ae230d (IsA female_mammal mammal) (STV 1.0 0.9091)) +(: cnet_isa_ba5ac41823 (IsA female_offspring child) (STV 1.0 0.9091)) +(: cnet_isa_5d12f5936d (IsA female_offspring female) (STV 1.0 0.9091)) +(: cnet_isa_fadb211b3a (IsA female_reproductive_system reproductive_system) (STV 1.0 0.9091)) +(: cnet_isa_a1253f0098 (IsA female_sibling kinswoman) (STV 1.0 0.9091)) +(: cnet_isa_21744b0860 (IsA femaleness sex) (STV 1.0 0.9091)) +(: cnet_isa_38f173ce69 (IsA feminine gender) (STV 1.0 0.9091)) +(: cnet_isa_69d1692cff (IsA femininity trait) (STV 1.0 0.9091)) +(: cnet_isa_0c57451015 (IsA feminism political_ideology) (STV 1.0 0.9091)) +(: cnet_isa_38a8e1bd05 (IsA feminism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_38f19a7b5e (IsA feminist reformer) (STV 1.0 0.9091)) +(: cnet_isa_7994560685 (IsA feminist_movement campaign) (STV 1.0 0.9091)) +(: cnet_isa_5a7588f771 (IsA feminization pathologic_process) (STV 1.0 0.9091)) +(: cnet_isa_4cef80d65e (IsA femoral_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_5931ca4aa0 (IsA femoral_nerve spinal_nerve) (STV 1.0 0.9091)) +(: cnet_isa_c7199163a6 (IsA femoral_pulse pulse) (STV 1.0 0.9091)) +(: cnet_isa_0bd614ab65 (IsA femoral_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_e59fbe17e8 (IsA femtochemistry chemistry) (STV 1.0 0.9091)) +(: cnet_isa_4d532d5c24 (IsA femtometer metric_linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_ab8af16a60 (IsA femtosecond time_unit) (STV 1.0 0.9091)) +(: cnet_isa_b0990ea143 (IsA femtovolt potential_unit) (STV 1.0 0.9091)) +(: cnet_isa_39ebf0e6b3 (IsA femur leg_bone) (STV 1.0 0.9091)) +(: cnet_isa_3b4ee29783 (IsA fen chinese_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_2e9b20234b (IsA fen_orchid orchid) (STV 1.0 0.9091)) +(: cnet_isa_22e0537e83 (IsA fence barrier) (STV 1.0 0.9091)) +(: cnet_isa_beef5f87cb (IsA fence trader) (STV 1.0 0.9091)) +(: cnet_isa_d20a6a3ec4 (IsA fence_line boundary_line) (STV 1.0 0.9091)) +(: cnet_isa_f51cfbcd11 (IsA fence_lizard spiny_lizard) (STV 1.0 0.9091)) +(: cnet_isa_e0ba13179f (IsA fence_mending social_action) (STV 1.0 0.9091)) +(: cnet_isa_ed4cbd9ae5 (IsA fence_sitter neutral) (STV 1.0 0.9091)) +(: cnet_isa_4487955323 (IsA fencer combatant) (STV 1.0 0.9091)) +(: cnet_isa_4c851270ee (IsA fencing olympic_sport) (STV 1.0 0.9339)) +(: cnet_isa_14474d8308 (IsA fencing fight) (STV 1.0 0.9091)) +(: cnet_isa_4f525437ef (IsA fencing play) (STV 1.0 0.9091)) +(: cnet_isa_4ea51950d5 (IsA fencing_mask face_mask) (STV 1.0 0.9091)) +(: cnet_isa_315b424422 (IsA fencing_material building_material) (STV 1.0 0.9091)) +(: cnet_isa_b6140539bb (IsA fencing_sword sword) (STV 1.0 0.9091)) +(: cnet_isa_0eb06275a8 (IsA fender barrier) (STV 1.0 0.9091)) +(: cnet_isa_cf8812e528 (IsA fender framework) (STV 1.0 0.9091)) +(: cnet_isa_4625e046e6 (IsA fender guard) (STV 1.0 0.9091)) +(: cnet_isa_8104507a3d (IsA fender_bender collision) (STV 1.0 0.9091)) +(: cnet_isa_339cd2c31a (IsA fenestra orifice) (STV 1.0 0.9091)) +(: cnet_isa_885c2ff9bd (IsA fenestra_ovalis fenestra) (STV 1.0 0.9091)) +(: cnet_isa_1bdcef13d4 (IsA fenestra_rotunda fenestra) (STV 1.0 0.9091)) +(: cnet_isa_1b252f7c07 (IsA fenestration placement) (STV 1.0 0.9091)) +(: cnet_isa_c209a98659 (IsA fenestration operation) (STV 1.0 0.9091)) +(: cnet_isa_69a7195eab (IsA feng_shui principle) (STV 1.0 0.9091)) +(: cnet_isa_497e160cf7 (IsA fennel herb) (STV 1.0 0.9091)) +(: cnet_isa_a84f7f89d1 (IsA fennel spice) (STV 1.0 0.9091)) +(: cnet_isa_e599ce32a2 (IsA fennel vegetable) (STV 1.0 0.9091)) +(: cnet_isa_380cc8fd07 (IsA fennel_flower nigella) (STV 1.0 0.9091)) +(: cnet_isa_92be7de401 (IsA fennel_seed flavorer) (STV 1.0 0.9091)) +(: cnet_isa_10f2106a74 (IsA fennic finno_ugric) (STV 1.0 0.9091)) +(: cnet_isa_6bf68dd692 (IsA fenugreek flavorer) (STV 1.0 0.9091)) +(: cnet_isa_576fed2e9b (IsA fenugreek herb) (STV 1.0 0.9091)) +(: cnet_isa_3c4b0de03b (IsA fenusa arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_ef264329df (IsA fer_de_lance pit_viper) (STV 1.0 0.9091)) +(: cnet_isa_7326cf5302 (IsA fergusonite mineral) (STV 1.0 0.9091)) +(: cnet_isa_51122478fe (IsA feria celebration) (STV 1.0 0.9091)) +(: cnet_isa_df16ae4f54 (IsA feria weekday) (STV 1.0 0.9091)) +(: cnet_isa_3b04ec0ec5 (IsA fermata musical_notation) (STV 1.0 0.9091)) +(: cnet_isa_d57272791a (IsA fermata lengthiness) (STV 1.0 0.9091)) +(: cnet_isa_4b9b74712d (IsA ferment substance) (STV 1.0 0.9091)) +(: cnet_isa_4dc92b5102 (IsA ferment_grape_juice ferment_juice) (STV 1.0 0.9091)) +(: cnet_isa_e96266b557 (IsA fermi_dirac_statistic law) (STV 1.0 0.9091)) +(: cnet_isa_a4f54d8d58 (IsA fermion particle) (STV 1.0 0.9091)) +(: cnet_isa_231358babd (IsA fermium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_7f477d8224 (IsA fern pteridophyte) (STV 1.0 0.9091)) +(: cnet_isa_6fbf8e2e26 (IsA fern_ally pteridophyte) (STV 1.0 0.9091)) +(: cnet_isa_230494a88a (IsA fern_family family) (STV 1.0 0.9091)) +(: cnet_isa_232cb61648 (IsA fern_genus genus) (STV 1.0 0.9091)) +(: cnet_isa_656d80077c (IsA fern_seed spore) (STV 1.0 0.9091)) +(: cnet_isa_de4cc8bda8 (IsA ferocactus caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4a0b3b96f8 (IsA ferociousness cruelty) (STV 1.0 0.9091)) +(: cnet_isa_65ca1446fd (IsA ferocity intensity) (STV 1.0 0.9091)) +(: cnet_isa_0410755826 (IsA ferret animal) (STV 1.0 0.9091)) +(: cnet_isa_5e3d8b78a7 (IsA ferret wild_animal) (STV 1.0 0.9091)) +(: cnet_isa_a6aa984017 (IsA ferret polecat) (STV 1.0 0.9091)) +(: cnet_isa_ac0dde8e45 (IsA ferret_badger badger) (STV 1.0 0.9091)) +(: cnet_isa_d1aed91563 (IsA ferric_oxide oxide) (STV 1.0 0.9091)) +(: cnet_isa_1a96585546 (IsA ferricyanic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_8837139db4 (IsA ferricyanide salt) (STV 1.0 0.9091)) +(: cnet_isa_2a93759844 (IsA ferrimagnetism antiferromagnetism) (STV 1.0 0.9091)) +(: cnet_isa_c68d16642a (IsA ferris_wheel ride) (STV 1.0 0.9091)) +(: cnet_isa_eef494b7e5 (IsA ferris_wheel rotating_mechanism) (STV 1.0 0.9091)) +(: cnet_isa_829b994d2d (IsA ferrite solid_solution) (STV 1.0 0.9091)) +(: cnet_isa_90aa79fe01 (IsA ferritin protein) (STV 1.0 0.9091)) +(: cnet_isa_d6d39e8870 (IsA ferrocerium pyrophoric_alloy) (STV 1.0 0.9091)) +(: cnet_isa_fc7b66bcbc (IsA ferrocyanic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_d9ab554ead (IsA ferrocyanide salt) (STV 1.0 0.9091)) +(: cnet_isa_d0dd3d7979 (IsA ferromagnetism magnetism) (STV 1.0 0.9091)) +(: cnet_isa_e3322caeee (IsA ferrule cap) (STV 1.0 0.9091)) +(: cnet_isa_149587baed (IsA ferry transportation) (STV 1.0 0.9091)) +(: cnet_isa_cb8a7c1c05 (IsA ferry boat) (STV 1.0 0.9091)) +(: cnet_isa_2c746a59b7 (IsA ferryman boatman) (STV 1.0 0.9091)) +(: cnet_isa_76209d6b67 (IsA fertile_period phase) (STV 1.0 0.9091)) +(: cnet_isa_d3c07bb4e3 (IsA fertility physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_23b297da96 (IsA fertility_drug drug) (STV 1.0 0.9091)) +(: cnet_isa_f83905f157 (IsA fertilization creation) (STV 1.0 0.9091)) +(: cnet_isa_99e274bca4 (IsA fertilization enrichment) (STV 1.0 0.9091)) +(: cnet_isa_4b247bf13d (IsA fertilization_membrane membrane) (STV 1.0 0.9091)) +(: cnet_isa_fa377e1ba6 (IsA fertilizer chemical) (STV 1.0 0.9091)) +(: cnet_isa_a96d83849b (IsA ferule switch) (STV 1.0 0.9091)) +(: cnet_isa_5adf6c59f8 (IsA fescue grass) (STV 1.0 0.9091)) +(: cnet_isa_768620d363 (IsA fesse ordinary) (STV 1.0 0.9091)) +(: cnet_isa_c7f074b55c (IsA fester sore) (STV 1.0 0.9091)) +(: cnet_isa_4586643704 (IsA festering bodily_process) (STV 1.0 0.9091)) +(: cnet_isa_56e1a11262 (IsA festination symptom) (STV 1.0 0.9091)) +(: cnet_isa_3f72941a37 (IsA festival celebration) (STV 1.0 0.9091)) +(: cnet_isa_b26e0ecb3f (IsA festival time_period) (STV 1.0 0.9091)) +(: cnet_isa_c07996c544 (IsA festoon curtain) (STV 1.0 0.9091)) +(: cnet_isa_dc05da30e1 (IsA festoon embellishment) (STV 1.0 0.9091)) +(: cnet_isa_19d150890c (IsA festoon flower_chain) (STV 1.0 0.9091)) +(: cnet_isa_e99ae904ca (IsA festschrift memorial) (STV 1.0 0.9091)) +(: cnet_isa_34c6852796 (IsA festuca monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_24247cf972 (IsA fetal_age age) (STV 1.0 0.9091)) +(: cnet_isa_1510139898 (IsA fetal_alcohol_syndrome syndrome) (STV 1.0 0.9091)) +(: cnet_isa_f6760d3aeb (IsA fetal_circulation circulatory_system) (STV 1.0 0.9091)) +(: cnet_isa_8be6ec983d (IsA fetal_distress abnormality) (STV 1.0 0.9091)) +(: cnet_isa_6102348d2f (IsA fetal_membrane membrane) (STV 1.0 0.9091)) +(: cnet_isa_32afda35a4 (IsA fetal_movement motion) (STV 1.0 0.9091)) +(: cnet_isa_f6655e330b (IsA fetch action) (STV 1.0 0.9091)) +(: cnet_isa_ac802528dd (IsA fete party) (STV 1.0 0.9091)) +(: cnet_isa_8efa47f7f0 (IsA feterita grain_sorghum) (STV 1.0 0.9091)) +(: cnet_isa_eb15f66cf0 (IsA fetid_bugbane bugbane) (STV 1.0 0.9091)) +(: cnet_isa_e5566f0089 (IsA fetish devotion) (STV 1.0 0.9091)) +(: cnet_isa_3e85426580 (IsA fetish sexual_desire) (STV 1.0 0.9091)) +(: cnet_isa_0ce6eb8bc2 (IsA fetishism paraphilia) (STV 1.0 0.9091)) +(: cnet_isa_d0445b566f (IsA fetishism belief) (STV 1.0 0.9091)) +(: cnet_isa_5a6d19c82c (IsA fetishist pervert) (STV 1.0 0.9091)) +(: cnet_isa_a86e52ba17 (IsA fetlock joint) (STV 1.0 0.9091)) +(: cnet_isa_6262afc7a1 (IsA fetlock process) (STV 1.0 0.9091)) +(: cnet_isa_a029f73270 (IsA fetology obstetric) (STV 1.0 0.9091)) +(: cnet_isa_85914c2d69 (IsA fetometry measurement) (STV 1.0 0.9091)) +(: cnet_isa_6f99c9663e (IsA fetoprotein antigen) (STV 1.0 0.9091)) +(: cnet_isa_3677d8d11e (IsA fetoscope stethoscope) (STV 1.0 0.9091)) +(: cnet_isa_7c7e070467 (IsA fetoscopy prenatal_diagnosis) (STV 1.0 0.9091)) +(: cnet_isa_a7e793b082 (IsA fetter shackle) (STV 1.0 0.9091)) +(: cnet_isa_8434541abd (IsA fetterbush shrub) (STV 1.0 0.9091)) +(: cnet_isa_c601b18720 (IsA fettle fitness) (STV 1.0 0.9091)) +(: cnet_isa_185408fa66 (IsA fettuccine pasta) (STV 1.0 0.9091)) +(: cnet_isa_ef13ba2aa8 (IsA fettuccine_alfredo fettuccine) (STV 1.0 0.9091)) +(: cnet_isa_e8a24d1614 (IsA fetus vertebrate) (STV 1.0 0.9091)) +(: cnet_isa_0e3d8d5c37 (IsA feud conflict) (STV 1.0 0.9091)) +(: cnet_isa_f9d12b692c (IsA feudal_lord overlord) (STV 1.0 0.9091)) +(: cnet_isa_8330ef1194 (IsA feudal_lordship position) (STV 1.0 0.9091)) +(: cnet_isa_70005ebd59 (IsA feudalism social_organization) (STV 1.0 0.9091)) +(: cnet_isa_7e9a0944b8 (IsA fever symptom_of_many_illness) (STV 1.0 0.9091)) +(: cnet_isa_43f7c8a5bf (IsA fever anticipation) (STV 1.0 0.9091)) +(: cnet_isa_313ada450d (IsA fever symptom) (STV 1.0 0.9091)) +(: cnet_isa_b022b96455 (IsA fever_pitch excitement) (STV 1.0 0.9091)) +(: cnet_isa_8a2151d5cb (IsA fever_tree acacia) (STV 1.0 0.9091)) +(: cnet_isa_4974807687 (IsA fever_tree shrub) (STV 1.0 0.9091)) +(: cnet_isa_27dae63de8 (IsA fever_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_6364c1a2bb (IsA feverfew herb) (STV 1.0 0.9091)) +(: cnet_isa_385e36391a (IsA feverroot herb) (STV 1.0 0.9091)) +(: cnet_isa_ef5c40eb92 (IsA few elite) (STV 1.0 0.9091)) +(: cnet_isa_73a2d91793 (IsA few_flowered_leek alliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_8ab7f192c7 (IsA few_women mayor) (STV 1.0 0.9091)) +(: cnet_isa_ef25221e8e (IsA fewness number) (STV 1.0 0.9091)) +(: cnet_isa_61201a43cc (IsA fez cap) (STV 1.0 0.9091)) +(: cnet_isa_1efaf126ea (IsA fiance betrothed) (STV 1.0 0.9091)) +(: cnet_isa_89d2c76c10 (IsA fiancee betrothed) (STV 1.0 0.9091)) +(: cnet_isa_84fab6fa4a (IsA fiat_money paper_money) (STV 1.0 0.9091)) +(: cnet_isa_86344084a9 (IsA fib lie) (STV 1.0 0.9091)) +(: cnet_isa_28c50c3e00 (IsA fibbing lying) (STV 1.0 0.9091)) +(: cnet_isa_dbd8f713e1 (IsA fiber fabric) (STV 1.0 0.9091)) +(: cnet_isa_c7a9c3b8cc (IsA fiber material) (STV 1.0 0.9091)) +(: cnet_isa_3843c52074 (IsA fiber_bundle nervous_tissue) (STV 1.0 0.9091)) +(: cnet_isa_4444b8d9e3 (IsA fiber_optic_cable cable) (STV 1.0 0.9091)) +(: cnet_isa_9ebef0b570 (IsA fiber_optic_transmission_system communication_system) (STV 1.0 0.9091)) +(: cnet_isa_1013dac0e7 (IsA fiber_optic transmission) (STV 1.0 0.9091)) +(: cnet_isa_69d455af23 (IsA fiberboard wallboard) (STV 1.0 0.9091)) +(: cnet_isa_efdab5e642 (IsA fiberglass covering_material) (STV 1.0 0.9091)) +(: cnet_isa_d6614795c1 (IsA fiberscope medical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_24adee2f2a (IsA fibia bone_in_arm) (STV 1.0 0.9091)) +(: cnet_isa_c759330e28 (IsA fibonacci_number number) (STV 1.0 0.9091)) +(: cnet_isa_24855d3c25 (IsA fibonacci_sequence sequence) (STV 1.0 0.9091)) +(: cnet_isa_5afcff4543 (IsA fibre cell) (STV 1.0 0.9091)) +(: cnet_isa_109ea4000a (IsA fibril fiber) (STV 1.0 0.9091)) +(: cnet_isa_bf3bc12b4a (IsA fibrillation branching) (STV 1.0 0.9091)) +(: cnet_isa_80fde4743a (IsA fibrillation twitch) (STV 1.0 0.9091)) +(: cnet_isa_c04d76c90a (IsA fibrin protein) (STV 1.0 0.9091)) +(: cnet_isa_db09d77587 (IsA fibrinase coagulation_factor) (STV 1.0 0.9091)) +(: cnet_isa_008f552c16 (IsA fibrinogen coagulation_factor) (STV 1.0 0.9091)) +(: cnet_isa_ad381aa03f (IsA fibrinolysis dissolution) (STV 1.0 0.9091)) +(: cnet_isa_3eb6d0b937 (IsA fibrinopeptide peptide) (STV 1.0 0.9091)) +(: cnet_isa_532d7ae057 (IsA fibroadenoma adenoma) (STV 1.0 0.9091)) +(: cnet_isa_b0b4075a85 (IsA fibroblast embryonic_cell) (STV 1.0 0.9091)) +(: cnet_isa_568ab452ac (IsA fibrocartilage cartilage) (STV 1.0 0.9091)) +(: cnet_isa_706236d2c2 (IsA fibrocystic_breast_disease disease) (STV 1.0 0.9091)) +(: cnet_isa_a705cd3d95 (IsA fibroid_tumor fibroma) (STV 1.0 0.9091)) +(: cnet_isa_5744a01f10 (IsA fibroma benign_tumor) (STV 1.0 0.9091)) +(: cnet_isa_b391acaef2 (IsA fibromyositis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_430ca3657d (IsA fibrosis pathology) (STV 1.0 0.9091)) +(: cnet_isa_bed5b942f4 (IsA fibrositis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_92ec24f018 (IsA fibrous_astrocyte astrocyte) (STV 1.0 0.9091)) +(: cnet_isa_01616f32a7 (IsA fibrous_dysplasia_of_bone dysplasia) (STV 1.0 0.9091)) +(: cnet_isa_6ad6cff743 (IsA fibrous_rooted_begonia begonia) (STV 1.0 0.9091)) +(: cnet_isa_02871b742e (IsA fibrous_tissue animal_tissue) (STV 1.0 0.9091)) +(: cnet_isa_d49e5689e6 (IsA fibrous_tissue plant_tissue) (STV 1.0 0.9091)) +(: cnet_isa_aa74828114 (IsA fibrousness quality) (STV 1.0 0.9091)) +(: cnet_isa_a3f72762d8 (IsA fibula leg_bone) (STV 1.0 0.9091)) +(: cnet_isa_d731e7d2e6 (IsA fica income_tax) (STV 1.0 0.9091)) +(: cnet_isa_3f98217ec6 (IsA fichu scarf) (STV 1.0 0.9091)) +(: cnet_isa_c6079cbb89 (IsA fiction literary_composition) (STV 1.0 0.9091)) +(: cnet_isa_79d4033f86 (IsA fictional_animal animal) (STV 1.0 0.9091)) +(: cnet_isa_e903483e73 (IsA fictional_character imaginary_being) (STV 1.0 0.9091)) +(: cnet_isa_ae9b910819 (IsA fictionalization literary_composition) (STV 1.0 0.9091)) +(: cnet_isa_83edad0d4e (IsA fictitious_name name) (STV 1.0 0.9091)) +(: cnet_isa_7ff1e772a6 (IsA ficus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5af32981d9 (IsA fiddle another_name_for_violin) (STV 1.0 0.9091)) +(: cnet_isa_1b82819d45 (IsA fiddleneck scorpionweed) (STV 1.0 0.9091)) +(: cnet_isa_9fc9260788 (IsA fiddler_crab crab) (STV 1.0 0.9091)) +(: cnet_isa_700a924da6 (IsA fiddlestick bow) (STV 1.0 0.9091)) +(: cnet_isa_02e5454c06 (IsA fidelity accuracy) (STV 1.0 0.9091)) +(: cnet_isa_f699943697 (IsA fidelity quality) (STV 1.0 0.9091)) +(: cnet_isa_00e893e5d0 (IsA fidget agitation) (STV 1.0 0.9091)) +(: cnet_isa_88e1dd8893 (IsA fiduciary person) (STV 1.0 0.9091)) +(: cnet_isa_c70a4730dc (IsA fiduciary_duty legal_duty) (STV 1.0 0.9091)) +(: cnet_isa_2a567aa348 (IsA fiduciary_relation legal_relation) (STV 1.0 0.9091)) +(: cnet_isa_bdeb98408a (IsA fief estate) (STV 1.0 0.9091)) +(: cnet_isa_e952e722b8 (IsA fiefdom organization) (STV 1.0 0.9091)) +(: cnet_isa_f998f42f1b (IsA fiefdom domain) (STV 1.0 0.9091)) +(: cnet_isa_0ca87ccbeb (IsA field commercial_enterprise) (STV 1.0 0.9091)) +(: cnet_isa_0e90147255 (IsA field visual_percept) (STV 1.0 0.9091)) +(: cnet_isa_3c88e93d27 (IsA field set) (STV 1.0 0.9091)) +(: cnet_isa_f24ff81295 (IsA field geographical_area) (STV 1.0 0.9091)) +(: cnet_isa_6122604a34 (IsA field region) (STV 1.0 0.9091)) +(: cnet_isa_b7943c216a (IsA field tract) (STV 1.0 0.9091)) +(: cnet_isa_f95380b8f0 (IsA field physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_1d51eaeb1c (IsA field_artillery artillery) (STV 1.0 0.9091)) +(: cnet_isa_ffb0dc1aeb (IsA field_bindweed bindweed) (STV 1.0 0.9091)) +(: cnet_isa_cdc9c0bafc (IsA field_brome brome) (STV 1.0 0.9091)) +(: cnet_isa_70037abbcb (IsA field_capacity volume_unit) (STV 1.0 0.9091)) +(: cnet_isa_4b98cb0350 (IsA field_chickweed mouse_ear_chickweed) (STV 1.0 0.9091)) +(: cnet_isa_67da4315cd (IsA field_coil coil) (STV 1.0 0.9091)) +(: cnet_isa_44bd476c29 (IsA field_corn corn) (STV 1.0 0.9091)) +(: cnet_isa_21ebb5395a (IsA field_corn field_crop) (STV 1.0 0.9091)) +(: cnet_isa_864c81e85e (IsA field_cricket cricket) (STV 1.0 0.9091)) +(: cnet_isa_6b59c197f1 (IsA field_crop crop) (STV 1.0 0.9091)) +(: cnet_isa_2a15a186d9 (IsA field_day day) (STV 1.0 0.9091)) +(: cnet_isa_d1a8ec13e1 (IsA field_day time_period) (STV 1.0 0.9091)) +(: cnet_isa_02286ead3a (IsA field_day vacation) (STV 1.0 0.9091)) +(: cnet_isa_606fddb6fd (IsA field_effect_transistor transistor) (STV 1.0 0.9091)) +(: cnet_isa_75e92f2e8e (IsA field_emission emission) (STV 1.0 0.9091)) +(: cnet_isa_db3d6567d7 (IsA field_emission_microscope electron_microscope) (STV 1.0 0.9091)) +(: cnet_isa_aa80ed2276 (IsA field_event match) (STV 1.0 0.9091)) +(: cnet_isa_1309a33a0d (IsA field_game outdoor_game) (STV 1.0 0.9091)) +(: cnet_isa_630f87bc6b (IsA field_glass refracting_telescope) (STV 1.0 0.9091)) +(: cnet_isa_777ea7a625 (IsA field_goal score) (STV 1.0 0.9091)) +(: cnet_isa_a06de8f45d (IsA field_grade_officer commissioned_military_officer) (STV 1.0 0.9091)) +(: cnet_isa_c28a55bd7e (IsA field_guide guidebook) (STV 1.0 0.9091)) +(: cnet_isa_fd6ed0ed32 (IsA field_hockey field_game) (STV 1.0 0.9091)) +(: cnet_isa_d98a459e45 (IsA field_hockey_ball ball) (STV 1.0 0.9091)) +(: cnet_isa_132fcaeec4 (IsA field_hospital military_hospital) (STV 1.0 0.9091)) +(: cnet_isa_406c809e54 (IsA field_house athletic_facility) (STV 1.0 0.9091)) +(: cnet_isa_13b7100ec5 (IsA field_house house) (STV 1.0 0.9091)) +(: cnet_isa_51e38dbc29 (IsA field_judge football_official) (STV 1.0 0.9091)) +(: cnet_isa_aedc669e14 (IsA field_len len) (STV 1.0 0.9091)) +(: cnet_isa_e97e39b1ef (IsA field_magnet magnet) (STV 1.0 0.9091)) +(: cnet_isa_0d094d3b7c (IsA field_marshal marshall) (STV 1.0 0.9091)) +(: cnet_isa_792955ecd0 (IsA field_mouse mouse) (STV 1.0 0.9091)) +(: cnet_isa_ccf23dfa22 (IsA field_mustard mustard) (STV 1.0 0.9091)) +(: cnet_isa_5ef36b466a (IsA field_of_fire tract) (STV 1.0 0.9091)) +(: cnet_isa_e41f7d38a6 (IsA field_of_honor scene) (STV 1.0 0.9091)) +(: cnet_isa_804488ef8b (IsA field_pansy viola) (STV 1.0 0.9091)) +(: cnet_isa_9163876eb6 (IsA field_pea pea) (STV 1.0 0.9091)) +(: cnet_isa_79b80963d3 (IsA field_pea legume) (STV 1.0 0.9091)) +(: cnet_isa_76bb5d129b (IsA field_pennycress pennycress) (STV 1.0 0.9091)) +(: cnet_isa_200b4164ce (IsA field_press_censorship military_censorship) (STV 1.0 0.9091)) +(: cnet_isa_54fa988400 (IsA field_pussytoe cat_s_foot) (STV 1.0 0.9091)) +(: cnet_isa_41ffe75773 (IsA field_ration ration) (STV 1.0 0.9091)) +(: cnet_isa_1bc92e809f (IsA field_scabious scabious) (STV 1.0 0.9091)) +(: cnet_isa_437a32e2d7 (IsA field_sequential_color_television color_television) (STV 1.0 0.9091)) +(: cnet_isa_740630c201 (IsA field_soybean soy) (STV 1.0 0.9091)) +(: cnet_isa_a4b6d0dc71 (IsA field_spaniel spaniel) (STV 1.0 0.9091)) +(: cnet_isa_e386d326ec (IsA field_sparrow new_world_sparrow) (STV 1.0 0.9091)) +(: cnet_isa_8f328c8d61 (IsA field_speedwell veronica) (STV 1.0 0.9091)) +(: cnet_isa_39bfc26492 (IsA field_strength intensity) (STV 1.0 0.9091)) +(: cnet_isa_5a9f2c9202 (IsA field_strength_unit electromagnetic_unit) (STV 1.0 0.9091)) +(: cnet_isa_823c7a43ee (IsA field_tent canva_tent) (STV 1.0 0.9091)) +(: cnet_isa_65ed66bf8e (IsA field_theory theory) (STV 1.0 0.9091)) +(: cnet_isa_0a115ee6c8 (IsA field_thistle thistle) (STV 1.0 0.9091)) +(: cnet_isa_b4759d5b48 (IsA field_trial test) (STV 1.0 0.9091)) +(: cnet_isa_05c003638c (IsA field_trial trial) (STV 1.0 0.9091)) +(: cnet_isa_b901ee76c7 (IsA field_trial contest) (STV 1.0 0.9091)) +(: cnet_isa_8074e1f87b (IsA field_trip excursion) (STV 1.0 0.9091)) +(: cnet_isa_e91469b9c6 (IsA field_work research) (STV 1.0 0.9091)) +(: cnet_isa_9fe2f06363 (IsA field_wormwood wormwood) (STV 1.0 0.9091)) +(: cnet_isa_a0630dc63e (IsA fielder_s_choice putout) (STV 1.0 0.9091)) +(: cnet_isa_fe806801a9 (IsA fielder ballplayer) (STV 1.0 0.9091)) +(: cnet_isa_8bb72c1cd6 (IsA fielder cricketer) (STV 1.0 0.9091)) +(: cnet_isa_cb3e3b98a6 (IsA fieldfare thrush) (STV 1.0 0.9091)) +(: cnet_isa_27e45f2f55 (IsA fielding handling) (STV 1.0 0.9091)) +(: cnet_isa_b783ae4de3 (IsA fielding_average average) (STV 1.0 0.9091)) +(: cnet_isa_4033d84b5c (IsA fieldstone rock) (STV 1.0 0.9091)) +(: cnet_isa_02d7ee9309 (IsA fieldwork fortification) (STV 1.0 0.9091)) +(: cnet_isa_46dcf51a37 (IsA fieldworker research_worker) (STV 1.0 0.9091)) +(: cnet_isa_2af955de6e (IsA fieri_facia writ) (STV 1.0 0.9091)) +(: cnet_isa_c94580cfd1 (IsA fieriness heat) (STV 1.0 0.9091)) +(: cnet_isa_66e815f984 (IsA fieriness hotness) (STV 1.0 0.9091)) +(: cnet_isa_1d5667dd76 (IsA fiesta_flower herb) (STV 1.0 0.9091)) +(: cnet_isa_114dba489a (IsA fife flute) (STV 1.0 0.9091)) +(: cnet_isa_441178efd2 (IsA fife_rail railing) (STV 1.0 0.9091)) +(: cnet_isa_68bc83493f (IsA fifteen large_integer) (STV 1.0 0.9091)) +(: cnet_isa_2bdd7a0e23 (IsA fifteenth rank) (STV 1.0 0.9091)) +(: cnet_isa_672ccbd38c (IsA fifth interval) (STV 1.0 0.9091)) +(: cnet_isa_43cefecc09 (IsA fifth rank) (STV 1.0 0.9091)) +(: cnet_isa_a62c28a4fb (IsA fifth united_state_liquid_unit) (STV 1.0 0.9091)) +(: cnet_isa_1f9aa4294d (IsA fifth_column unit) (STV 1.0 0.9091)) +(: cnet_isa_7b8c1d586d (IsA fifth_columnist traitor) (STV 1.0 0.9091)) +(: cnet_isa_2c3cb0d236 (IsA fifth_lateran_council lateran_council) (STV 1.0 0.9091)) +(: cnet_isa_e37ee28988 (IsA fifth_wheel bearing) (STV 1.0 0.9091)) +(: cnet_isa_5bf899c0b3 (IsA fifth_wheel car_wheel) (STV 1.0 0.9091)) +(: cnet_isa_628f107343 (IsA fifth_wheel redundancy) (STV 1.0 0.9091)) +(: cnet_isa_58c67e9dd4 (IsA fifty decade) (STV 1.0 0.9091)) +(: cnet_isa_28725ebf4f (IsA fifty time_of_life) (STV 1.0 0.9091)) +(: cnet_isa_6321958c2c (IsA fiftieth rank) (STV 1.0 0.9091)) +(: cnet_isa_49ca5dd86c (IsA fifty large_integer) (STV 1.0 0.9091)) +(: cnet_isa_4f1629e3dd (IsA fifty_dollar_bill bill) (STV 1.0 0.9091)) +(: cnet_isa_77dd246571 (IsA fifty_percent one_half) (STV 1.0 0.9091)) +(: cnet_isa_23a0bb9d4a (IsA fig fruit) (STV 1.0 0.9091)) +(: cnet_isa_cce6c10354 (IsA fig edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_060a34791e (IsA fig fig_tree) (STV 1.0 0.9091)) +(: cnet_isa_b07e5f53f3 (IsA fig_bird old_world_oriole) (STV 1.0 0.9091)) +(: cnet_isa_4e1ca7c6ea (IsA fig_leaf covering) (STV 1.0 0.9091)) +(: cnet_isa_6e6cf6d5b0 (IsA fig_leaf leaf) (STV 1.0 0.9091)) +(: cnet_isa_be30200eb8 (IsA fig_marigold flower) (STV 1.0 0.9091)) +(: cnet_isa_1f240d8613 (IsA fig_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_c5724f7468 (IsA fight boxing) (STV 1.0 0.9091)) +(: cnet_isa_d4c51e880f (IsA fight conflict) (STV 1.0 0.9091)) +(: cnet_isa_ad4c4c3c7b (IsA fight controversy) (STV 1.0 0.9091)) +(: cnet_isa_de6ff16414 (IsA fighter airplane) (STV 1.0 0.9091)) +(: cnet_isa_f714186e79 (IsA fighter warplane) (STV 1.0 0.9091)) +(: cnet_isa_f6d8ffd41c (IsA fighter_pilot combat_pilot) (STV 1.0 0.9091)) +(: cnet_isa_0ff999aff5 (IsA fighting_chair chair) (STV 1.0 0.9091)) +(: cnet_isa_7401931ec6 (IsA figment idea) (STV 1.0 0.9091)) +(: cnet_isa_0785f7efb2 (IsA figural_blindness blindness) (STV 1.0 0.9091)) +(: cnet_isa_58d1a4da61 (IsA figuration decoration) (STV 1.0 0.9091)) +(: cnet_isa_b512522c4d (IsA figuration representation) (STV 1.0 0.9091)) +(: cnet_isa_c7fd1769a6 (IsA figure maneuver) (STV 1.0 0.9091)) +(: cnet_isa_dbcb00e66a (IsA figure model) (STV 1.0 0.9091)) +(: cnet_isa_1e913bb82e (IsA figure impression) (STV 1.0 0.9091)) +(: cnet_isa_4864366edb (IsA figure percept) (STV 1.0 0.9091)) +(: cnet_isa_35e14c98f0 (IsA figure illustration) (STV 1.0 0.9091)) +(: cnet_isa_5359798f72 (IsA figure sum) (STV 1.0 0.9091)) +(: cnet_isa_51b2623826 (IsA figure shape) (STV 1.0 0.9091)) +(: cnet_isa_a301154a50 (IsA figure_eight figure) (STV 1.0 0.9091)) +(: cnet_isa_aaef661c08 (IsA figure_eight knot) (STV 1.0 0.9091)) +(: cnet_isa_f6e80885f1 (IsA figure_loom loom) (STV 1.0 0.9091)) +(: cnet_isa_bec2fd9650 (IsA figure_of_eight plane_figure) (STV 1.0 0.9091)) +(: cnet_isa_1b5dc9c056 (IsA figure_of_merit efficiency) (STV 1.0 0.9091)) +(: cnet_isa_44cb8d16e0 (IsA figure_skate ice_skate) (STV 1.0 0.9091)) +(: cnet_isa_b0c29962fd (IsA figure_skating ice_skating) (STV 1.0 0.9091)) +(: cnet_isa_4fe5cf97e8 (IsA figured_bass bass) (STV 1.0 0.9091)) +(: cnet_isa_756904a518 (IsA figurehead figure) (STV 1.0 0.9091)) +(: cnet_isa_68e17e77b4 (IsA figurine figure) (STV 1.0 0.9091)) +(: cnet_isa_65d0ac9dd5 (IsA figwort woody_plant) (STV 1.0 0.9091)) +(: cnet_isa_cc4b914d1f (IsA fiji_dollar dollar) (STV 1.0 0.9091)) +(: cnet_isa_4dc34e65dd (IsA fijian oceanic) (STV 1.0 0.9091)) +(: cnet_isa_ff547aed57 (IsA fijian polynesian) (STV 1.0 0.9091)) +(: cnet_isa_06c6e21d91 (IsA filaggrin protein) (STV 1.0 0.9091)) +(: cnet_isa_a420a59e8e (IsA filament wire) (STV 1.0 0.9091)) +(: cnet_isa_0e62205fb1 (IsA filament structure) (STV 1.0 0.9091)) +(: cnet_isa_0ed1234526 (IsA filament stalk) (STV 1.0 0.9091)) +(: cnet_isa_2be58f2918 (IsA filaria nematode) (STV 1.0 0.9091)) +(: cnet_isa_19ab7bfb88 (IsA filariasis disease) (STV 1.0 0.9091)) +(: cnet_isa_a431e91605 (IsA filariidae worm_family) (STV 1.0 0.9091)) +(: cnet_isa_af7a26b6ce (IsA filature bobbin) (STV 1.0 0.9091)) +(: cnet_isa_b9ed211d9b (IsA filbert nut) (STV 1.0 0.9091)) +(: cnet_isa_197362270e (IsA file collection) (STV 1.0 0.9091)) +(: cnet_isa_3da099c80b (IsA file hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_74446a6ef8 (IsA file office_furniture) (STV 1.0 0.9091)) +(: cnet_isa_ec54998242 (IsA file record) (STV 1.0 0.9091)) +(: cnet_isa_2ae10d98b7 (IsA file line) (STV 1.0 0.9091)) +(: cnet_isa_f7b4b30842 (IsA file_allocation_table table) (STV 1.0 0.9091)) +(: cnet_isa_df29d5a04f (IsA file_clerk clerk) (STV 1.0 0.9091)) +(: cnet_isa_f142a611eb (IsA file_folder folder) (STV 1.0 0.9091)) +(: cnet_isa_2bd930d2d1 (IsA file_server digital_computer) (STV 1.0 0.9091)) +(: cnet_isa_8a1761cc3a (IsA file_system classification_system) (STV 1.0 0.9091)) +(: cnet_isa_0c69414436 (IsA file_transfer_protocol protocol) (STV 1.0 0.9091)) +(: cnet_isa_75be45ec6a (IsA filefish plectognath) (STV 1.0 0.9091)) +(: cnet_isa_b78fc436b3 (IsA filename name) (STV 1.0 0.9091)) +(: cnet_isa_28ffea0423 (IsA filer litigant) (STV 1.0 0.9091)) +(: cnet_isa_e00845e419 (IsA filet lace) (STV 1.0 0.9091)) +(: cnet_isa_b7b225a76b (IsA filet_mignon fillet) (STV 1.0 0.9091)) +(: cnet_isa_4182a9583a (IsA filial_duty duty) (STV 1.0 0.9091)) +(: cnet_isa_cc3fbaba01 (IsA filial_love love) (STV 1.0 0.9091)) +(: cnet_isa_36d2fce1cf (IsA filibuster delay) (STV 1.0 0.9091)) +(: cnet_isa_520f6efa41 (IsA filibuster delayer) (STV 1.0 0.9091)) +(: cnet_isa_c232ed7379 (IsA filibuster legislator) (STV 1.0 0.9091)) +(: cnet_isa_bb4fa6ae89 (IsA filicale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_06d7bc2db0 (IsA filicide murder) (STV 1.0 0.9091)) +(: cnet_isa_fc1ccb734d (IsA filicide parent) (STV 1.0 0.9091)) +(: cnet_isa_7c640ee834 (IsA filicopsida class) (STV 1.0 0.9091)) +(: cnet_isa_662bb023b1 (IsA filigree embellishment) (STV 1.0 0.9091)) +(: cnet_isa_5a77d44a56 (IsA filing formation) (STV 1.0 0.9091)) +(: cnet_isa_052a3cca45 (IsA filing storage) (STV 1.0 0.9091)) +(: cnet_isa_80e3236b71 (IsA filing submission) (STV 1.0 0.9091)) +(: cnet_isa_2565d1c5ac (IsA filing fragment) (STV 1.0 0.9091)) +(: cnet_isa_f1eb5fb2ed (IsA filipino aborigine) (STV 1.0 0.9091)) +(: cnet_isa_8c3b934feb (IsA fill enough) (STV 1.0 0.9091)) +(: cnet_isa_4c14639d24 (IsA filler tobacco) (STV 1.0 0.9091)) +(: cnet_isa_bb73217f7e (IsA filler copy) (STV 1.0 0.9091)) +(: cnet_isa_f8d5c4708c (IsA filler hungarian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_8204bd6524 (IsA filler sealing_material) (STV 1.0 0.9091)) +(: cnet_isa_45e7a35c08 (IsA fillet fastener) (STV 1.0 0.9091)) +(: cnet_isa_2ed5877d94 (IsA fillet beefsteak) (STV 1.0 0.9091)) +(: cnet_isa_7199d2fba2 (IsA fillet piece) (STV 1.0 0.9091)) +(: cnet_isa_fd511249b2 (IsA filling change_of_integrity) (STV 1.0 0.9091)) +(: cnet_isa_f03419b67f (IsA filling dental_appliance) (STV 1.0 0.9091)) +(: cnet_isa_8d1242c966 (IsA filling concoction) (STV 1.0 0.9091)) +(: cnet_isa_ad73fc77e7 (IsA filling flow) (STV 1.0 0.9091)) +(: cnet_isa_1b88e975ad (IsA filling material) (STV 1.0 0.9091)) +(: cnet_isa_a66259639d (IsA filly young_female_horse) (STV 1.0 0.9091)) +(: cnet_isa_bb8ddc56a8 (IsA filly female) (STV 1.0 0.9091)) +(: cnet_isa_a7fa6b06d9 (IsA filly foal) (STV 1.0 0.9091)) +(: cnet_isa_154cfb1c58 (IsA film artistic_expression) (STV 1.0 0.9091)) +(: cnet_isa_87c608827f (IsA film medium) (STV 1.0 0.9339)) +(: cnet_isa_3be8bdc1f9 (IsA film object) (STV 1.0 0.9091)) +(: cnet_isa_f4e3cf6053 (IsA film photographic_paper) (STV 1.0 0.9091)) +(: cnet_isa_2826eb5817 (IsA film sheet) (STV 1.0 0.9091)) +(: cnet_isa_a1267e30a9 (IsA film wrapping) (STV 1.0 0.9091)) +(: cnet_isa_e8ed7897ea (IsA film_advance mechanism) (STV 1.0 0.9091)) +(: cnet_isa_4dfe798e5e (IsA film_clip film) (STV 1.0 0.9091)) +(: cnet_isa_81d2e40341 (IsA film_company company) (STV 1.0 0.9091)) +(: cnet_isa_ae7cce1fed (IsA film_director film_maker) (STV 1.0 0.9091)) +(: cnet_isa_0ffc20117d (IsA film_editing creating_by_removal) (STV 1.0 0.9091)) +(: cnet_isa_7442278db6 (IsA film_festival festival) (STV 1.0 0.9091)) +(: cnet_isa_d39cba20bb (IsA film_industry industry) (STV 1.0 0.9091)) +(: cnet_isa_576b58623e (IsA film_maker producer) (STV 1.0 0.9091)) +(: cnet_isa_8747a8d87c (IsA film_noir movie) (STV 1.0 0.9091)) +(: cnet_isa_2896d8225c (IsA film_star screen_actor) (STV 1.0 0.9091)) +(: cnet_isa_536f8ca7b8 (IsA film_star star) (STV 1.0 0.9091)) +(: cnet_isa_f4e6c725b7 (IsA filming photography) (STV 1.0 0.9091)) +(: cnet_isa_fbbf86e17b (IsA filmy_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_3f68a8451a (IsA filoviridae family) (STV 1.0 0.9091)) +(: cnet_isa_7cfe351e8b (IsA filovirus animal_virus) (STV 1.0 0.9091)) +(: cnet_isa_df9972fa93 (IsA fil fractional_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_2a395c6a97 (IsA filter device) (STV 1.0 0.9091)) +(: cnet_isa_d6ceb56d7f (IsA filter electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_2442ef0809 (IsA filter_bed filter) (STV 1.0 0.9091)) +(: cnet_isa_4c2b86cbd7 (IsA filter_paper paper) (STV 1.0 0.9091)) +(: cnet_isa_7a410e13e7 (IsA filter_tip air_filter) (STV 1.0 0.9091)) +(: cnet_isa_8365f98ef2 (IsA filter_tipped_cigarette cigarette) (STV 1.0 0.9091)) +(: cnet_isa_4ab11822cf (IsA filth unsanitariness) (STV 1.0 0.9091)) +(: cnet_isa_04437a63aa (IsA filth waste) (STV 1.0 0.9091)) +(: cnet_isa_be61be908f (IsA filthiness nefariousness) (STV 1.0 0.9091)) +(: cnet_isa_dc7d391057 (IsA filthy_lucre net_income) (STV 1.0 0.9091)) +(: cnet_isa_2f0fb87ce0 (IsA filtrate fluid) (STV 1.0 0.9091)) +(: cnet_isa_66def8d0c5 (IsA filtrate product) (STV 1.0 0.9091)) +(: cnet_isa_58e65cf53e (IsA filtration change) (STV 1.0 0.9091)) +(: cnet_isa_ee4369fbe2 (IsA filtration natural_process) (STV 1.0 0.9091)) +(: cnet_isa_5cb688bf05 (IsA filtration_surgery eye_operation) (STV 1.0 0.9091)) +(: cnet_isa_2086199364 (IsA fimbria process) (STV 1.0 0.9091)) +(: cnet_isa_cecc81b8a0 (IsA fin extremity) (STV 1.0 0.9091)) +(: cnet_isa_3b577f3eb9 (IsA fin stabilizer) (STV 1.0 0.9091)) +(: cnet_isa_927cbc8890 (IsA fin_de_siecle end) (STV 1.0 0.9091)) +(: cnet_isa_b0ff50b4a9 (IsA fin_keel plate) (STV 1.0 0.9091)) +(: cnet_isa_8e177b0eb7 (IsA finagler deceiver) (STV 1.0 0.9091)) +(: cnet_isa_a4eea6d3fa (IsA final match) (STV 1.0 0.9091)) +(: cnet_isa_6bbfd8d5cf (IsA final_cause purpose) (STV 1.0 0.9091)) +(: cnet_isa_a1a109bd73 (IsA final_cut movie) (STV 1.0 0.9091)) +(: cnet_isa_cf1f3921b3 (IsA final_examination examination) (STV 1.0 0.9091)) +(: cnet_isa_8b36da475c (IsA final_judgment judgment) (STV 1.0 0.9091)) +(: cnet_isa_5f5a746ac7 (IsA final_period part) (STV 1.0 0.9091)) +(: cnet_isa_2ae9e1c202 (IsA finale finish) (STV 1.0 0.9091)) +(: cnet_isa_fc4fcde77d (IsA finale conclusion) (STV 1.0 0.9091)) +(: cnet_isa_51684d91c5 (IsA finalist rival) (STV 1.0 0.9091)) +(: cnet_isa_3fac691e30 (IsA finality determinateness) (STV 1.0 0.9091)) +(: cnet_isa_2cf8e56b30 (IsA finalization completion) (STV 1.0 0.9091)) +(: cnet_isa_0a3f4883cd (IsA finance commercial_enterprise) (STV 1.0 0.9091)) +(: cnet_isa_417737616c (IsA finance economic) (STV 1.0 0.9091)) +(: cnet_isa_178cd8be6d (IsA finance management) (STV 1.0 0.9091)) +(: cnet_isa_eccf1ae0e2 (IsA finance_committee committee) (STV 1.0 0.9091)) +(: cnet_isa_c0413bddca (IsA finance_company nondepository_financial_institution) (STV 1.0 0.9091)) +(: cnet_isa_f3f979e7a0 (IsA finance_minister minister) (STV 1.0 0.9091)) +(: cnet_isa_c6320e9f67 (IsA financial_aid gift) (STV 1.0 0.9091)) +(: cnet_isa_2ab09a7432 (IsA financial_analyst analyst) (STV 1.0 0.9091)) +(: cnet_isa_6eb8cbf783 (IsA financial_audit attestation_service) (STV 1.0 0.9091)) +(: cnet_isa_6a2153ea95 (IsA financial_audit audited_account) (STV 1.0 0.9091)) +(: cnet_isa_3405ff4a68 (IsA financial_center center) (STV 1.0 0.9091)) +(: cnet_isa_7988def2b2 (IsA financial_condition condition) (STV 1.0 0.9091)) +(: cnet_isa_8f4e4e9244 (IsA financial_crime_enforcement_network law_enforcement_agency) (STV 1.0 0.9091)) +(: cnet_isa_32d0e737e9 (IsA financial_forecast prognosis) (STV 1.0 0.9091)) +(: cnet_isa_322c926e37 (IsA financial_gain gain) (STV 1.0 0.9091)) +(: cnet_isa_70c54fca72 (IsA financial_institution institution) (STV 1.0 0.9091)) +(: cnet_isa_31897637ec (IsA financial_loss loss) (STV 1.0 0.9091)) +(: cnet_isa_13764c7982 (IsA financial_management_service agency) (STV 1.0 0.9091)) +(: cnet_isa_dd54d472e1 (IsA financier capitalist) (STV 1.0 0.9091)) +(: cnet_isa_369301a8b2 (IsA financing finance) (STV 1.0 0.9091)) +(: cnet_isa_572c7f710e (IsA finback rorqual) (STV 1.0 0.9091)) +(: cnet_isa_2f9d82cbed (IsA finch bird) (STV 1.0 0.9707)) +(: cnet_isa_dca5ab74a1 (IsA finch oscine) (STV 1.0 0.9091)) +(: cnet_isa_2599c7a695 (IsA finche animal) (STV 1.0 0.9091)) +(: cnet_isa_b5c5295df1 (IsA find_book idea) (STV 1.0 0.9091)) +(: cnet_isa_d66cf67e4b (IsA find_downstair basement) (STV 1.0 0.9091)) +(: cnet_isa_aeb8dea08d (IsA find_downstair water_heater) (STV 1.0 0.9091)) +(: cnet_isa_314d408cc6 (IsA find_downtown building) (STV 1.0 0.9339)) +(: cnet_isa_9ed067a2c9 (IsA find_downtown coffee_shop) (STV 1.0 0.9091)) +(: cnet_isa_730666d5c0 (IsA find_downtown office) (STV 1.0 0.9091)) +(: cnet_isa_175e8193ce (IsA find_downtown skyscraper) (STV 1.0 0.9091)) +(: cnet_isa_aa1b389e61 (IsA find_downtown taxi) (STV 1.0 0.9091)) +(: cnet_isa_778d48899e (IsA find_downtown traffic) (STV 1.0 0.9091)) +(: cnet_isa_89a0e8bb64 (IsA find_inside bed) (STV 1.0 0.9091)) +(: cnet_isa_0144403d8e (IsA find_inside bedroom) (STV 1.0 0.9091)) +(: cnet_isa_f4f215fd92 (IsA find_inside carpet) (STV 1.0 0.9339)) +(: cnet_isa_bc9b402c74 (IsA find_inside furniture) (STV 1.0 0.9339)) +(: cnet_isa_4da36599c2 (IsA find_jar vegemite) (STV 1.0 0.9339)) +(: cnet_isa_4babf6363f (IsA find_outside grass) (STV 1.0 0.9091)) +(: cnet_isa_5ef26441f9 (IsA find_outside rain) (STV 1.0 0.9339)) +(: cnet_isa_b19501b3f0 (IsA find_outside road) (STV 1.0 0.9091)) +(: cnet_isa_ade096ed19 (IsA find_outside tree) (STV 1.0 0.9454)) +(: cnet_isa_a01c22461a (IsA find_underground carrot) (STV 1.0 0.9091)) +(: cnet_isa_9edca3dc37 (IsA find_underground earthworm) (STV 1.0 0.9091)) +(: cnet_isa_34f5979ff5 (IsA find_underground metro) (STV 1.0 0.9091)) +(: cnet_isa_b56406a016 (IsA find_underground root) (STV 1.0 0.9091)) +(: cnet_isa_bf460ef1e9 (IsA find_underground worm) (STV 1.0 0.9091)) +(: cnet_isa_9aa7992827 (IsA find_underwater aquatic_plant) (STV 1.0 0.9339)) +(: cnet_isa_a65f8b1326 (IsA find_underwater blowfish) (STV 1.0 0.9339)) +(: cnet_isa_299c08c02e (IsA find_underwater coral_reef) (STV 1.0 0.9091)) +(: cnet_isa_620fe9e43b (IsA find_underwater fish) (STV 1.0 0.9524)) +(: cnet_isa_b280573a9f (IsA find_underwater marine_life) (STV 1.0 0.9091)) +(: cnet_isa_73cb81a569 (IsA find_underwater seaweed) (STV 1.0 0.9454)) +(: cnet_isa_35390e792c (IsA find_underwater whale) (STV 1.0 0.9339)) +(: cnet_isa_e67cb78c99 (IsA find_upstair attic) (STV 1.0 0.9091)) +(: cnet_isa_4b382c1ed3 (IsA find_upstair bathroom) (STV 1.0 0.9091)) +(: cnet_isa_2b8dbadffb (IsA find_upstair bedroom) (STV 1.0 0.9339)) +(: cnet_isa_dd1c03fa19 (IsA find_upstair room) (STV 1.0 0.9091)) +(: cnet_isa_be5e02cfa8 (IsA finder_s_fee fee) (STV 1.0 0.9091)) +(: cnet_isa_8ba82e2af0 (IsA finder optical_device) (STV 1.0 0.9091)) +(: cnet_isa_106f1b1d23 (IsA finder perceiver) (STV 1.0 0.9091)) +(: cnet_isa_783314797f (IsA finder seeker) (STV 1.0 0.9091)) +(: cnet_isa_eabeccf938 (IsA finding judgment) (STV 1.0 0.9091)) +(: cnet_isa_127043d279 (IsA finding object) (STV 1.0 0.9091)) +(: cnet_isa_8052b2d46c (IsA finding_of_law finding) (STV 1.0 0.9091)) +(: cnet_isa_daffb6607c (IsA finding_thing important_activity) (STV 1.0 0.9091)) +(: cnet_isa_64edce1eb2 (IsA finding collection) (STV 1.0 0.9091)) +(: cnet_isa_d0731f745c (IsA fine penalty) (STV 1.0 0.9091)) +(: cnet_isa_f0cad87b06 (IsA fine_art humanistic_discipline) (STV 1.0 0.9091)) +(: cnet_isa_7cf44cce12 (IsA fine_print reservation) (STV 1.0 0.9091)) +(: cnet_isa_46855996f9 (IsA fine_spray precipitation) (STV 1.0 0.9091)) +(: cnet_isa_b99529913e (IsA fine_structure spectrum_line) (STV 1.0 0.9091)) +(: cnet_isa_e97904bbb5 (IsA fine_tooth_comb examination) (STV 1.0 0.9091)) +(: cnet_isa_80fe793d86 (IsA fine_tooth_comb comb) (STV 1.0 0.9091)) +(: cnet_isa_f2d2fa26c9 (IsA fineness narrowness) (STV 1.0 0.9091)) +(: cnet_isa_64f3922794 (IsA fineness smoothness) (STV 1.0 0.9091)) +(: cnet_isa_a90f4f8906 (IsA fineness superiority) (STV 1.0 0.9091)) +(: cnet_isa_e73a7a9fe4 (IsA finery attire) (STV 1.0 0.9091)) +(: cnet_isa_50eae9de7a (IsA fine_herbe herb) (STV 1.0 0.9091)) +(: cnet_isa_5babdd7fdc (IsA finger digit) (STV 1.0 0.9091)) +(: cnet_isa_029f7e211a (IsA finger covering) (STV 1.0 0.9091)) +(: cnet_isa_909dbdd0a9 (IsA finger extremity) (STV 1.0 0.9091)) +(: cnet_isa_3a4c416aad (IsA finger linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_7063c4e3b9 (IsA finger_bowl bowl) (STV 1.0 0.9091)) +(: cnet_isa_b54fb77cfa (IsA finger_food nutriment) (STV 1.0 0.9091)) +(: cnet_isa_6af63d0124 (IsA finger_grass grass) (STV 1.0 0.9091)) +(: cnet_isa_14e71ba0d0 (IsA finger_hole hole) (STV 1.0 0.9091)) +(: cnet_isa_d8e90041aa (IsA finger_millet millet) (STV 1.0 0.9091)) +(: cnet_isa_5e86cb1840 (IsA finger_paint paint) (STV 1.0 0.9091)) +(: cnet_isa_5451135b89 (IsA finger_painting painting) (STV 1.0 0.9091)) +(: cnet_isa_8d3d08b84d (IsA finger_plate protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_f8399ec33b (IsA finger_pointing imputation) (STV 1.0 0.9091)) +(: cnet_isa_4c2af5cdd1 (IsA finger_roll basketball_shot) (STV 1.0 0.9091)) +(: cnet_isa_d212bb1244 (IsA finger_scan biometric_identification) (STV 1.0 0.9091)) +(: cnet_isa_d13a24c13f (IsA finger_spelling sign_language) (STV 1.0 0.9091)) +(: cnet_isa_6909c7febe (IsA finger_wave wave) (STV 1.0 0.9091)) +(: cnet_isa_d51f4e59dc (IsA fingerboard strip) (STV 1.0 0.9091)) +(: cnet_isa_d653b92156 (IsA fingering placement) (STV 1.0 0.9091)) +(: cnet_isa_9ff0445fe9 (IsA fingering touch) (STV 1.0 0.9091)) +(: cnet_isa_a1df7ce613 (IsA fingerling fish) (STV 1.0 0.9091)) +(: cnet_isa_742b651ab4 (IsA fingermark smudge) (STV 1.0 0.9091)) +(: cnet_isa_de988ecde5 (IsA fingernail nail) (STV 1.0 0.9091)) +(: cnet_isa_5e672a619d (IsA fingerpainting very_messy_activity) (STV 1.0 0.9091)) +(: cnet_isa_facca0f552 (IsA fingerpost signpost) (STV 1.0 0.9091)) +(: cnet_isa_390ec7ea42 (IsA fingerprint biometric_identification) (STV 1.0 0.9091)) +(: cnet_isa_cadc437f57 (IsA fingerprint identification) (STV 1.0 0.9091)) +(: cnet_isa_6496caadd7 (IsA fingerprint mark) (STV 1.0 0.9091)) +(: cnet_isa_480f14d5fe (IsA fingerprint_expert specialist) (STV 1.0 0.9091)) +(: cnet_isa_9be9ab1fbf (IsA fingerprinting procedure) (STV 1.0 0.9091)) +(: cnet_isa_6ee51afae6 (IsA fingerprint unique_identification) (STV 1.0 0.9091)) +(: cnet_isa_2ec1f4ffae (IsA fingerstall sheath) (STV 1.0 0.9091)) +(: cnet_isa_2d918b2c6c (IsA fingertip tip) (STV 1.0 0.9091)) +(: cnet_isa_d7acd0f7ed (IsA finial decoration) (STV 1.0 0.9091)) +(: cnet_isa_43ea04b2d7 (IsA finish completion) (STV 1.0 0.9091)) +(: cnet_isa_b6da6239ac (IsA finish downfall) (STV 1.0 0.9091)) +(: cnet_isa_982e8a6845 (IsA finish happening) (STV 1.0 0.9091)) +(: cnet_isa_b848652ac4 (IsA finish end) (STV 1.0 0.9091)) +(: cnet_isa_d8961b246a (IsA finish taste) (STV 1.0 0.9091)) +(: cnet_isa_5cbccf1d31 (IsA finish_coat coating) (STV 1.0 0.9091)) +(: cnet_isa_f4ada361ae (IsA finish_coat plaster) (STV 1.0 0.9091)) +(: cnet_isa_544ec9a43b (IsA finisher racer) (STV 1.0 0.9091)) +(: cnet_isa_9900d1dfec (IsA finisher painter) (STV 1.0 0.9091)) +(: cnet_isa_6150813dd7 (IsA finisher worker) (STV 1.0 0.9091)) +(: cnet_isa_a427de7811 (IsA finishing_line finish) (STV 1.0 0.9091)) +(: cnet_isa_a77ae48b09 (IsA finishing_line line) (STV 1.0 0.9091)) +(: cnet_isa_93ee01b7c1 (IsA finishing_school school) (STV 1.0 0.9091)) +(: cnet_isa_1b39cba747 (IsA finishing_touch touch) (STV 1.0 0.9091)) +(: cnet_isa_a22791f499 (IsA finiteness quality) (STV 1.0 0.9091)) +(: cnet_isa_25d04b98f8 (IsA fink informer) (STV 1.0 0.9091)) +(: cnet_isa_92236b7f07 (IsA finland country) (STV 1.0 0.9339)) +(: cnet_isa_dc74c9fd07 (IsA finn european) (STV 1.0 0.9091)) +(: cnet_isa_58f09361a0 (IsA finnan_haddie haddock) (STV 1.0 0.9091)) +(: cnet_isa_5e0a2c83b3 (IsA finnish baltic_finnic) (STV 1.0 0.9091)) +(: cnet_isa_a4f21b57f4 (IsA finnish_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_30f56e2c93 (IsA finno_ugric uralic) (STV 1.0 0.9091)) +(: cnet_isa_a846ffc80c (IsA fipple plug) (STV 1.0 0.9091)) +(: cnet_isa_f7c1e3ae74 (IsA fipple_flute pipe) (STV 1.0 0.9091)) +(: cnet_isa_f7a3f39bfa (IsA fir conifer) (STV 1.0 0.9091)) +(: cnet_isa_6989ab6301 (IsA fir wood) (STV 1.0 0.9091)) +(: cnet_isa_ae0e90a3a4 (IsA fir_clubmoss club_moss) (STV 1.0 0.9091)) +(: cnet_isa_50e773cddb (IsA fir_cone cone) (STV 1.0 0.9091)) +(: cnet_isa_fb5d564e53 (IsA fire combustion) (STV 1.0 0.9659)) +(: cnet_isa_aebc13003f (IsA fire attack) (STV 1.0 0.9091)) +(: cnet_isa_b8083221af (IsA fire fireplace) (STV 1.0 0.9091)) +(: cnet_isa_2123d18a6b (IsA fire criticism) (STV 1.0 0.9091)) +(: cnet_isa_4ddefce6ff (IsA fire happening) (STV 1.0 0.9091)) +(: cnet_isa_f0ddb1f7d5 (IsA fire trial) (STV 1.0 0.9091)) +(: cnet_isa_69e911b58d (IsA fire element) (STV 1.0 0.9091)) +(: cnet_isa_54b9e2a705 (IsA fire fuel) (STV 1.0 0.9091)) +(: cnet_isa_3c9f01c5c9 (IsA fire_alarm alarm) (STV 1.0 0.9091)) +(: cnet_isa_9848a5ce99 (IsA fire_and_brimstone damnation) (STV 1.0 0.9091)) +(: cnet_isa_75959092b3 (IsA fire_ant ant) (STV 1.0 0.9091)) +(: cnet_isa_4b53543e50 (IsA fire_bell bell) (STV 1.0 0.9091)) +(: cnet_isa_6f21e75786 (IsA fire_bellied_toad frog) (STV 1.0 0.9091)) +(: cnet_isa_19e067a069 (IsA fire_blight leaf_blight) (STV 1.0 0.9091)) +(: cnet_isa_644b05d53e (IsA fire_brigade fire_department) (STV 1.0 0.9091)) +(: cnet_isa_e1db63100d (IsA fire_brigade organization) (STV 1.0 0.9091)) +(: cnet_isa_86c168610b (IsA fire_chief fireman) (STV 1.0 0.9091)) +(: cnet_isa_3ef97e0945 (IsA fire_code code) (STV 1.0 0.9091)) +(: cnet_isa_1945f280cb (IsA fire_control preparation) (STV 1.0 0.9091)) +(: cnet_isa_b2a76d620b (IsA fire_control_radar naval_radar) (STV 1.0 0.9091)) +(: cnet_isa_b983d2aae0 (IsA fire_control_system naval_weaponry) (STV 1.0 0.9091)) +(: cnet_isa_5fadb773bc (IsA fire_department local_department) (STV 1.0 0.9091)) +(: cnet_isa_a020df1f54 (IsA fire_door door) (STV 1.0 0.9091)) +(: cnet_isa_126356bb82 (IsA fire_drill exercise) (STV 1.0 0.9091)) +(: cnet_isa_0b6a9caaed (IsA fire_eater grouch) (STV 1.0 0.9091)) +(: cnet_isa_bf00c472a4 (IsA fire_eater performer) (STV 1.0 0.9091)) +(: cnet_isa_d48de36b28 (IsA fire_engine truck) (STV 1.0 0.9091)) +(: cnet_isa_47c2548cde (IsA fire_escape stairway) (STV 1.0 0.9091)) +(: cnet_isa_07fa2cc6a5 (IsA fire_extinguisher device) (STV 1.0 0.9091)) +(: cnet_isa_10de0dc3b8 (IsA fire_hose hose) (STV 1.0 0.9091)) +(: cnet_isa_4e6a8a7d65 (IsA fire_insurance insurance) (STV 1.0 0.9091)) +(: cnet_isa_bc797d2e32 (IsA fire_iron implement) (STV 1.0 0.9091)) +(: cnet_isa_4964405fb4 (IsA fire_marshall official) (STV 1.0 0.9091)) +(: cnet_isa_afc9ffa1fb (IsA fire_on_mountain spurge) (STV 1.0 0.9091)) +(: cnet_isa_fd9723e3f2 (IsA fire_opal opal) (STV 1.0 0.9091)) +(: cnet_isa_7dcf3e261d (IsA fire_pink silene) (STV 1.0 0.9091)) +(: cnet_isa_9789293ae8 (IsA fire_pit pit) (STV 1.0 0.9091)) +(: cnet_isa_784828c9ea (IsA fire_sale sale) (STV 1.0 0.9091)) +(: cnet_isa_8d7d54582d (IsA fire_screen screen) (STV 1.0 0.9091)) +(: cnet_isa_d69bc573a9 (IsA fire_ship weapon) (STV 1.0 0.9091)) +(: cnet_isa_40849143fa (IsA fire_station station) (STV 1.0 0.9091)) +(: cnet_isa_9cdeb5fa8b (IsA fire_tong fire_iron) (STV 1.0 0.9091)) +(: cnet_isa_b18d3cdee0 (IsA fire_tong tong) (STV 1.0 0.9091)) +(: cnet_isa_cec569c77c (IsA fire_tower watchtower) (STV 1.0 0.9091)) +(: cnet_isa_ca3f0a4ce7 (IsA fire_trench trench) (STV 1.0 0.9091)) +(: cnet_isa_fc7cf9672e (IsA fire_walker performer) (STV 1.0 0.9091)) +(: cnet_isa_730f768e7d (IsA fire_walking ceremony) (STV 1.0 0.9091)) +(: cnet_isa_9e61dff64e (IsA fire_warden fireman) (STV 1.0 0.9091)) +(: cnet_isa_785d29061c (IsA fire_warden official) (STV 1.0 0.9091)) +(: cnet_isa_0f74ba8038 (IsA fire_watcher watchman) (STV 1.0 0.9091)) +(: cnet_isa_e94e3b834b (IsA fire_watching civil_defense) (STV 1.0 0.9091)) +(: cnet_isa_51d31f4063 (IsA firearm gun) (STV 1.0 0.9091)) +(: cnet_isa_2e8cd4b7f2 (IsA fireball ball) (STV 1.0 0.9091)) +(: cnet_isa_0c8845e193 (IsA firebase base) (STV 1.0 0.9091)) +(: cnet_isa_e6753e4387 (IsA fireboat boat) (STV 1.0 0.9091)) +(: cnet_isa_5f5ab35f5c (IsA firebox furnace) (STV 1.0 0.9091)) +(: cnet_isa_4e9cf8a0a5 (IsA firebrat bristletail) (STV 1.0 0.9091)) +(: cnet_isa_0b76cec11a (IsA firebreak field) (STV 1.0 0.9091)) +(: cnet_isa_5569ae9ecc (IsA firebrick brick) (STV 1.0 0.9091)) +(: cnet_isa_342c4287e0 (IsA firebug heteropterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_2cd9c903cd (IsA fireclay clay) (STV 1.0 0.9091)) +(: cnet_isa_5ba31b6b32 (IsA firecracker firework) (STV 1.0 0.9091)) +(: cnet_isa_856e668f3a (IsA firedamp gas) (STV 1.0 0.9091)) +(: cnet_isa_5487053d0a (IsA firefly insect) (STV 1.0 0.9091)) +(: cnet_isa_92e6cc7958 (IsA firefly beetle) (STV 1.0 0.9091)) +(: cnet_isa_86dfd2736d (IsA firefly elaterid_beetle) (STV 1.0 0.9091)) +(: cnet_isa_a6b9410572 (IsA firefox web_browser) (STV 1.0 0.9339)) +(: cnet_isa_f89dc4ebce (IsA firelight light) (STV 1.0 0.9091)) +(: cnet_isa_0392bd121f (IsA firelighter igniter) (STV 1.0 0.9091)) +(: cnet_isa_6dcea4a0b1 (IsA fireman_s_ax ax) (STV 1.0 0.9091)) +(: cnet_isa_8f688464b0 (IsA fireman_s_carry carry) (STV 1.0 0.9091)) +(: cnet_isa_9a69718a05 (IsA fireman firefighter) (STV 1.0 0.9091)) +(: cnet_isa_0e0f325ba7 (IsA fireman play) (STV 1.0 0.9091)) +(: cnet_isa_feb954efbc (IsA fireman defender) (STV 1.0 0.9091)) +(: cnet_isa_b33df3002d (IsA fireplace recess) (STV 1.0 0.9091)) +(: cnet_isa_21af9450cd (IsA fireplug hydrant) (STV 1.0 0.9091)) +(: cnet_isa_ac99816700 (IsA firepower military_capability) (STV 1.0 0.9091)) +(: cnet_isa_de7d862885 (IsA firestone sandstone) (STV 1.0 0.9091)) +(: cnet_isa_07b7fa9b3f (IsA firestone flint) (STV 1.0 0.9091)) +(: cnet_isa_1557597c5b (IsA firestorm controversy) (STV 1.0 0.9091)) +(: cnet_isa_20e3f0667c (IsA firestorm storm) (STV 1.0 0.9091)) +(: cnet_isa_633aa98033 (IsA firetrap building) (STV 1.0 0.9091)) +(: cnet_isa_c5b13a8fd1 (IsA firewall drive) (STV 1.0 0.9091)) +(: cnet_isa_020ff96813 (IsA firewall wall) (STV 1.0 0.9091)) +(: cnet_isa_41173923a8 (IsA firewall security_system) (STV 1.0 0.9091)) +(: cnet_isa_d000fdbb6e (IsA firewater liquor) (STV 1.0 0.9091)) +(: cnet_isa_d7dd534e23 (IsA fireweed weed) (STV 1.0 0.9091)) +(: cnet_isa_70437c320e (IsA fireweed willowherb) (STV 1.0 0.9091)) +(: cnet_isa_73d0db027d (IsA firewoman firefighter) (STV 1.0 0.9091)) +(: cnet_isa_918473061c (IsA firewood fuel) (STV 1.0 0.9091)) +(: cnet_isa_eeb73d8ef2 (IsA firework low_explosive) (STV 1.0 0.9091)) +(: cnet_isa_26afdaa21e (IsA firework explosive) (STV 1.0 0.9091)) +(: cnet_isa_809d991595 (IsA firing_chamber chamber) (STV 1.0 0.9091)) +(: cnet_isa_ab6e33e25a (IsA firing_line class) (STV 1.0 0.9091)) +(: cnet_isa_e3c31c78dc (IsA firing_line line) (STV 1.0 0.9091)) +(: cnet_isa_306c17000a (IsA firing_pin striker) (STV 1.0 0.9091)) +(: cnet_isa_1e7aefb07e (IsA firing_range practice_range) (STV 1.0 0.9091)) +(: cnet_isa_8ad05c1bfb (IsA firing_squad squad) (STV 1.0 0.9091)) +(: cnet_isa_43f11a937b (IsA firkin keg) (STV 1.0 0.9091)) +(: cnet_isa_6686a57ff2 (IsA firkin british_capacity_unit) (STV 1.0 0.9091)) +(: cnet_isa_2f28f0409c (IsA firm business) (STV 1.0 0.9091)) +(: cnet_isa_b2b00a756c (IsA firm_omelet omelet) (STV 1.0 0.9091)) +(: cnet_isa_ab5ba9ebf4 (IsA firmer_chisel chisel) (STV 1.0 0.9091)) +(: cnet_isa_df39ed4146 (IsA firmiana dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7045db96b0 (IsA firmness hardness) (STV 1.0 0.9091)) +(: cnet_isa_b27453ec24 (IsA firmness strength) (STV 1.0 0.9091)) +(: cnet_isa_6d48ca1c58 (IsA firmware code) (STV 1.0 0.9091)) +(: cnet_isa_9eddc5e859 (IsA first honour) (STV 1.0 0.9091)) +(: cnet_isa_480d9c946c (IsA first rank) (STV 1.0 0.9091)) +(: cnet_isa_767ff0e391 (IsA first ordinal_number) (STV 1.0 0.9091)) +(: cnet_isa_07c30c6144 (IsA first_aid care) (STV 1.0 0.9091)) +(: cnet_isa_b72ea4991d (IsA first_aid_kit kit) (STV 1.0 0.9091)) +(: cnet_isa_dfc2ef64f3 (IsA first_aid_station station) (STV 1.0 0.9091)) +(: cnet_isa_209ef307c8 (IsA first_base first_step) (STV 1.0 0.9091)) +(: cnet_isa_c417a2e126 (IsA first_base position) (STV 1.0 0.9091)) +(: cnet_isa_0d5de5c95c (IsA first_base base) (STV 1.0 0.9091)) +(: cnet_isa_68aa6774ac (IsA first_baseman infielder) (STV 1.0 0.9091)) +(: cnet_isa_0056719d6f (IsA first_blush impression) (STV 1.0 0.9091)) +(: cnet_isa_19ffd465f1 (IsA first_cause causal_agent) (STV 1.0 0.9091)) +(: cnet_isa_0489a18738 (IsA first_class accommodation) (STV 1.0 0.9091)) +(: cnet_isa_0ede77fa8e (IsA first_class superiority) (STV 1.0 0.9091)) +(: cnet_isa_9fbed346d2 (IsA first_class mail) (STV 1.0 0.9091)) +(: cnet_isa_52b8e8cd69 (IsA first_council_of_constantinople ecumenical_council) (STV 1.0 0.9091)) +(: cnet_isa_06cd4626f7 (IsA first_council_of_lyon council) (STV 1.0 0.9091)) +(: cnet_isa_29793bdab1 (IsA first_council_of_nicaea ecumenical_council) (STV 1.0 0.9091)) +(: cnet_isa_9e0d8bea1e (IsA first_day_of_week monday) (STV 1.0 0.9091)) +(: cnet_isa_f09207caa3 (IsA first_day_of_week sunday) (STV 1.0 0.9091)) +(: cnet_isa_4a8b7e0a6c (IsA first_degree degree) (STV 1.0 0.9091)) +(: cnet_isa_603d94aff0 (IsA first_degree_burn burn) (STV 1.0 0.9091)) +(: cnet_isa_e6b7a7373d (IsA first_estate estate) (STV 1.0 0.9091)) +(: cnet_isa_24f1fdc9c6 (IsA first_gear gear) (STV 1.0 0.9091)) +(: cnet_isa_2f2150e086 (IsA first_half half) (STV 1.0 0.9091)) +(: cnet_isa_1459873e32 (IsA first_in_first_out inventory_accounting) (STV 1.0 0.9091)) +(: cnet_isa_94c7a9d7a8 (IsA first_lady achiever) (STV 1.0 0.9091)) +(: cnet_isa_b65003b502 (IsA first_lady wife) (STV 1.0 0.9091)) +(: cnet_isa_10323a2f75 (IsA first_lateran_council lateran_council) (STV 1.0 0.9091)) +(: cnet_isa_44edeaa0d0 (IsA first_law_of_motion newton_s_law_of_motion) (STV 1.0 0.9091)) +(: cnet_isa_01ebc94013 (IsA first_lieutenant lieutenant) (STV 1.0 0.9091)) +(: cnet_isa_98ebfae622 (IsA first_lord_of_treasury cabinet_minister) (STV 1.0 0.9091)) +(: cnet_isa_3d12e379d1 (IsA first_month_of_year january) (STV 1.0 0.9091)) +(: cnet_isa_ef02c24566 (IsA first_mortgage mortgage) (STV 1.0 0.9091)) +(: cnet_isa_e73420edbe (IsA first_name name) (STV 1.0 0.9091)) +(: cnet_isa_c88083eb4c (IsA first_nighter playgoer) (STV 1.0 0.9091)) +(: cnet_isa_bbbde478e1 (IsA first_offender convict) (STV 1.0 0.9091)) +(: cnet_isa_c71b60d6c0 (IsA first_order_correlation partial_correlation) (STV 1.0 0.9091)) +(: cnet_isa_0158324790 (IsA first_period part) (STV 1.0 0.9091)) +(: cnet_isa_0ee2fad144 (IsA first_person person) (STV 1.0 0.9091)) +(: cnet_isa_7fe5ec9dc4 (IsA first_place_finish win) (STV 1.0 0.9091)) +(: cnet_isa_ed5112303e (IsA first_quarter half_moon) (STV 1.0 0.9091)) +(: cnet_isa_0a059cd7be (IsA first_rater person) (STV 1.0 0.9091)) +(: cnet_isa_b286375f7f (IsA first_reading presentation) (STV 1.0 0.9091)) +(: cnet_isa_be74cfe7e9 (IsA first_sergeant sergeant) (STV 1.0 0.9091)) +(: cnet_isa_153a028f12 (IsA first_step beginning) (STV 1.0 0.9091)) +(: cnet_isa_6af20261f7 (IsA first_strike strike) (STV 1.0 0.9091)) +(: cnet_isa_ec6ea4d855 (IsA first_three_dimension space) (STV 1.0 0.9091)) +(: cnet_isa_0dcc724a97 (IsA first_trimester trimester) (STV 1.0 0.9091)) +(: cnet_isa_30196b72fd (IsA first_vatican_council vatican_council) (STV 1.0 0.9091)) +(: cnet_isa_8a8bbcd017 (IsA first_visual_area cortical_area) (STV 1.0 0.9091)) +(: cnet_isa_87f03aec75 (IsA first_water superiority) (STV 1.0 0.9091)) +(: cnet_isa_1dd2dd7027 (IsA firstborn offspring) (STV 1.0 0.9091)) +(: cnet_isa_2f37ba3ad3 (IsA firth estuary) (STV 1.0 0.9091)) +(: cnet_isa_beea1531c4 (IsA fisc treasury) (STV 1.0 0.9091)) +(: cnet_isa_b0cabbd3a7 (IsA fiscal_policy economic_policy) (STV 1.0 0.9091)) +(: cnet_isa_3a601093ba (IsA fiscal_year year) (STV 1.0 0.9091)) +(: cnet_isa_efb6a3fccb (IsA fischer_s_slime_mushroom slime_mushroom) (STV 1.0 0.9091)) +(: cnet_isa_b44beaddbb (IsA fish animal) (STV 1.0 0.9572)) +(: cnet_isa_1a9580b2f7 (IsA fish aquatic_vertebrate) (STV 1.0 0.9091)) +(: cnet_isa_308ee92c1c (IsA fish person) (STV 1.0 0.9091)) +(: cnet_isa_b801cf62f0 (IsA fish food) (STV 1.0 0.9091)) +(: cnet_isa_54b8916a05 (IsA fish_and_chip dish) (STV 1.0 0.9091)) +(: cnet_isa_387b613035 (IsA fish_cake patty) (STV 1.0 0.9091)) +(: cnet_isa_6e7016acac (IsA fish_chowder chowder) (STV 1.0 0.9091)) +(: cnet_isa_ca15f6089a (IsA fish_doctor eelpout) (STV 1.0 0.9091)) +(: cnet_isa_48713d7456 (IsA fish_family family) (STV 1.0 0.9091)) +(: cnet_isa_437446f918 (IsA fish_farm workplace) (STV 1.0 0.9091)) +(: cnet_isa_0faa305337 (IsA fish_fly neuropteron) (STV 1.0 0.9091)) +(: cnet_isa_c4f28322e3 (IsA fish_fry cookout) (STV 1.0 0.9091)) +(: cnet_isa_f6538aec00 (IsA fish_genus genus) (STV 1.0 0.9091)) +(: cnet_isa_9787262080 (IsA fish_geranium geranium) (STV 1.0 0.9091)) +(: cnet_isa_00d94075e3 (IsA fish_glue animal_product) (STV 1.0 0.9091)) +(: cnet_isa_12c707af6d (IsA fish_glue glue) (STV 1.0 0.9091)) +(: cnet_isa_de57441852 (IsA fish_house_punch punch) (STV 1.0 0.9091)) +(: cnet_isa_3b24ff6ed7 (IsA fish_joint butt_joint) (STV 1.0 0.9091)) +(: cnet_isa_027f85a7cd (IsA fish_knife table_knife) (STV 1.0 0.9091)) +(: cnet_isa_879006f8e4 (IsA fish_ladder passage) (STV 1.0 0.9091)) +(: cnet_isa_b8b2bf2d91 (IsA fish_loaf meat_loaf) (STV 1.0 0.9091)) +(: cnet_isa_be53a8d5d2 (IsA fish_louse copepod) (STV 1.0 0.9091)) +(: cnet_isa_e904b3cd62 (IsA fish_meal feed) (STV 1.0 0.9091)) +(: cnet_isa_a4cf2562b5 (IsA fish_meal organic) (STV 1.0 0.9091)) +(: cnet_isa_cea6a3c17d (IsA fish_mousse mousse) (STV 1.0 0.9091)) +(: cnet_isa_d92d0211d8 (IsA fish_oil animal_oil) (STV 1.0 0.9091)) +(: cnet_isa_4be2228f1c (IsA fish_scale scale) (STV 1.0 0.9091)) +(: cnet_isa_a09ef8fbf3 (IsA fish_slice turner) (STV 1.0 0.9091)) +(: cnet_isa_6dba774e32 (IsA fish_specy specy) (STV 1.0 0.9091)) +(: cnet_isa_fe6217a721 (IsA fish_steak steak) (STV 1.0 0.9091)) +(: cnet_isa_6de9362633 (IsA fish_stew stew) (STV 1.0 0.9091)) +(: cnet_isa_2d4925c970 (IsA fish_stick dish) (STV 1.0 0.9091)) +(: cnet_isa_cd2308ad37 (IsA fishbone bone) (STV 1.0 0.9091)) +(: cnet_isa_681cfbaf3b (IsA fishbowl aquarium) (STV 1.0 0.9091)) +(: cnet_isa_35fe5a8136 (IsA fishbowl bowl) (STV 1.0 0.9091)) +(: cnet_isa_c48d878192 (IsA fisher marten) (STV 1.0 0.9091)) +(: cnet_isa_a3135f15a1 (IsA fisherman_s_bend knot) (STV 1.0 0.9091)) +(: cnet_isa_9cdd9c3233 (IsA fisherman_s_knot knot) (STV 1.0 0.9091)) +(: cnet_isa_c0b3c2477f (IsA fisherman_s_lure bait) (STV 1.0 0.9091)) +(: cnet_isa_c6196b4aee (IsA fisherman skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_ed44e2e88a (IsA fishery workplace) (STV 1.0 0.9091)) +(: cnet_isa_dd02dbfe63 (IsA fishhook hook) (STV 1.0 0.9091)) +(: cnet_isa_5534be7a79 (IsA fishing sport) (STV 1.0 0.9339)) +(: cnet_isa_8d5177a087 (IsA fishing commercial_enterprise) (STV 1.0 0.9091)) +(: cnet_isa_29f08d9ead (IsA fishing outdoor_sport) (STV 1.0 0.9091)) +(: cnet_isa_eb87abc7fe (IsA fishing_boat vessel) (STV 1.0 0.9091)) +(: cnet_isa_d561c1433d (IsA fishing_eagle sea_eagle) (STV 1.0 0.9091)) +(: cnet_isa_3ae93f0cde (IsA fishing_expedition probe) (STV 1.0 0.9091)) +(: cnet_isa_3a2283da74 (IsA fishing_gear gear) (STV 1.0 0.9091)) +(: cnet_isa_d3d2c044af (IsA fishing_license license) (STV 1.0 0.9091)) +(: cnet_isa_937830df67 (IsA fishing_line cord) (STV 1.0 0.9091)) +(: cnet_isa_7e94a0ed72 (IsA fishing_rod rod) (STV 1.0 0.9091)) +(: cnet_isa_e28d81c32d (IsA fishing_season season) (STV 1.0 0.9091)) +(: cnet_isa_bcb1420f3f (IsA fishmonger trader) (STV 1.0 0.9091)) +(: cnet_isa_56314348d9 (IsA fishnet net) (STV 1.0 0.9091)) +(: cnet_isa_60c62bd9cf (IsA fishpaste spread) (STV 1.0 0.9091)) +(: cnet_isa_19db3d5716 (IsA fishplate plate) (STV 1.0 0.9091)) +(: cnet_isa_38879d05ac (IsA fishpole_bamboo bamboo) (STV 1.0 0.9091)) +(: cnet_isa_f2c09dcf22 (IsA fishpond pond) (STV 1.0 0.9091)) +(: cnet_isa_52e27ef23c (IsA fishtail_bit drilling_bit) (STV 1.0 0.9091)) +(: cnet_isa_e430bfccdb (IsA fishtail_palm palm) (STV 1.0 0.9091)) +(: cnet_isa_77322a00fa (IsA fission asexual_reproduction) (STV 1.0 0.9091)) +(: cnet_isa_900155b214 (IsA fission nuclear_reaction) (STV 1.0 0.9091)) +(: cnet_isa_04ea290d79 (IsA fissiparity divisibility) (STV 1.0 0.9091)) +(: cnet_isa_52205160c8 (IsA fissiparity asexual_reproduction) (STV 1.0 0.9091)) +(: cnet_isa_f33acde14b (IsA fissiped_mammal carnivore) (STV 1.0 0.9091)) +(: cnet_isa_6b36f2c292 (IsA fissipedia placental) (STV 1.0 0.9091)) +(: cnet_isa_febd1ba68f (IsA fissure groove) (STV 1.0 0.9091)) +(: cnet_isa_f00de64a1c (IsA fissure_of_rolando sulcus) (STV 1.0 0.9091)) +(: cnet_isa_5e0c4c3e0e (IsA fissure_of_sylvius sulcus) (STV 1.0 0.9091)) +(: cnet_isa_e21082cc84 (IsA fissurella mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_67e6fbd996 (IsA fissurellidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_963e19a325 (IsA fist hand) (STV 1.0 0.9091)) +(: cnet_isa_cb96b94641 (IsA fistfight fight) (STV 1.0 0.9091)) +(: cnet_isa_0d5eac4b52 (IsA fistmele linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_5685fcd103 (IsA fistula passage) (STV 1.0 0.9091)) +(: cnet_isa_70154d97ee (IsA fistularia fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_531a5560b2 (IsA fistulariidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_0e94adb0c8 (IsA fistulina fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_5e49ed6148 (IsA fistulinaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_46342702d4 (IsA fistulous_wither animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_d4bf45270c (IsA fit manner) (STV 1.0 0.9091)) +(: cnet_isa_3737159a55 (IsA fit bad_temper) (STV 1.0 0.9091)) +(: cnet_isa_9d09ffe092 (IsA fitfulness irregularity) (STV 1.0 0.9091)) +(: cnet_isa_7d3f3f4338 (IsA fitment furniture) (STV 1.0 0.9091)) +(: cnet_isa_7ee41a199b (IsA fitness competence) (STV 1.0 0.9091)) +(: cnet_isa_f94d5ec6fa (IsA fitness suitability) (STV 1.0 0.9091)) +(: cnet_isa_d9ed7cdaed (IsA fitness condition) (STV 1.0 0.9091)) +(: cnet_isa_9d4ee37ef8 (IsA fit_and_start burst) (STV 1.0 0.9091)) +(: cnet_isa_bee23195e9 (IsA fitted_sheet sheet) (STV 1.0 0.9091)) +(: cnet_isa_d766eb2eb4 (IsA fitter tailor) (STV 1.0 0.9091)) +(: cnet_isa_20bf9a1122 (IsA fitting test) (STV 1.0 0.9091)) +(: cnet_isa_2f297738b6 (IsA fitting accessory) (STV 1.0 0.9091)) +(: cnet_isa_8b3936063f (IsA five digit) (STV 1.0 0.9091)) +(: cnet_isa_b50609d9b3 (IsA five_and_four number) (STV 1.0 0.9091)) +(: cnet_isa_cc9df58526 (IsA five_hitter baseball) (STV 1.0 0.9091)) +(: cnet_isa_f5ba6af3e7 (IsA five_hundred large_integer) (STV 1.0 0.9091)) +(: cnet_isa_e5362f7fb8 (IsA five_point_bishop_s_cap miterwort) (STV 1.0 0.9091)) +(: cnet_isa_07cf42f4d2 (IsA five_spice_powder spice) (STV 1.0 0.9091)) +(: cnet_isa_a90d2b3296 (IsA five_spot dice) (STV 1.0 0.9091)) +(: cnet_isa_09bf626de5 (IsA five_spot domino) (STV 1.0 0.9091)) +(: cnet_isa_a7b4bb0945 (IsA five_spot spot) (STV 1.0 0.9091)) +(: cnet_isa_25e30b9718 (IsA five_spot nemophila) (STV 1.0 0.9091)) +(: cnet_isa_a7b302ecaa (IsA fivepence coin) (STV 1.0 0.9091)) +(: cnet_isa_f72f6ac6be (IsA fiver bill) (STV 1.0 0.9091)) +(: cnet_isa_1e6e303cfa (IsA five court_game) (STV 1.0 0.9091)) +(: cnet_isa_b6bfb56c8c (IsA fix exemption) (STV 1.0 0.9091)) +(: cnet_isa_7078e86794 (IsA fix intravenous_injection) (STV 1.0 0.9091)) +(: cnet_isa_dc921e67c4 (IsA fix difficulty) (STV 1.0 0.9091)) +(: cnet_isa_cb38b69293 (IsA fixation fastening) (STV 1.0 0.9091)) +(: cnet_isa_4770e220e1 (IsA fixation preservation) (STV 1.0 0.9091)) +(: cnet_isa_ebfe812ec4 (IsA fixative varnish) (STV 1.0 0.9091)) +(: cnet_isa_35ab50b557 (IsA fixative fixing_agent) (STV 1.0 0.9091)) +(: cnet_isa_13db88fe3c (IsA fixed_charge charge) (STV 1.0 0.9091)) +(: cnet_isa_5abab675b2 (IsA fixed_combination_drug medicine) (STV 1.0 0.9091)) +(: cnet_isa_32162a5a34 (IsA fixed_cycle_operation operation) (STV 1.0 0.9091)) +(: cnet_isa_653f192588 (IsA fixed_intonation intonation) (STV 1.0 0.9091)) +(: cnet_isa_bfa8c0759d (IsA fixed_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_d5fdfe70d0 (IsA fixed_phagocyte phagocyte) (STV 1.0 0.9091)) +(: cnet_isa_e6f3833196 (IsA fixed_point_notation mathematical_notation) (STV 1.0 0.9091)) +(: cnet_isa_ec88cc256a (IsA fixed_point_number number) (STV 1.0 0.9091)) +(: cnet_isa_87017e1c16 (IsA fixed_star star) (STV 1.0 0.9091)) +(: cnet_isa_ae5b55d8f1 (IsA fixedness changelessness) (STV 1.0 0.9091)) +(: cnet_isa_31c46959c7 (IsA fixer important_person) (STV 1.0 0.9091)) +(: cnet_isa_fe03021f23 (IsA fixer_upper dwelling) (STV 1.0 0.9091)) +(: cnet_isa_e6064e6435 (IsA fixing_agent compound) (STV 1.0 0.9091)) +(: cnet_isa_afb9db7e2d (IsA fixing accessory) (STV 1.0 0.9091)) +(: cnet_isa_c633fcb3d8 (IsA fixture artifact) (STV 1.0 0.9091)) +(: cnet_isa_6f041fbe7e (IsA fizgig firework) (STV 1.0 0.9091)) +(: cnet_isa_cb73ffa53d (IsA fizz beverage) (STV 1.0 0.9091)) +(: cnet_isa_a8d0348611 (IsA fjord inlet) (STV 1.0 0.9091)) +(: cnet_isa_e946ec7dfa (IsA flab adipose_tissue) (STV 1.0 0.9091)) +(: cnet_isa_c14fdcb122 (IsA flabbiness softness) (STV 1.0 0.9091)) +(: cnet_isa_7c84ce2687 (IsA flaccid_bladder bladder_disorder) (STV 1.0 0.9091)) +(: cnet_isa_cbc36e1bfd (IsA flaccid_paralysis nervous_disorder) (STV 1.0 0.9091)) +(: cnet_isa_9f2aeda85b (IsA flacourtia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_cbe249440d (IsA flacourtiaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_91f61b356f (IsA flag tail) (STV 1.0 0.9091)) +(: cnet_isa_1411efac71 (IsA flag emblem) (STV 1.0 0.9091)) +(: cnet_isa_2ad52ee16f (IsA flag paving_stone) (STV 1.0 0.9091)) +(: cnet_isa_29a41654d8 (IsA flag visual_signal) (STV 1.0 0.9091)) +(: cnet_isa_939586556b (IsA flag_captain captain) (STV 1.0 0.9091)) +(: cnet_isa_3320df06ad (IsA flag_day day) (STV 1.0 0.9091)) +(: cnet_isa_442cf37be9 (IsA flag_officer commissioned_naval_officer) (STV 1.0 0.9091)) +(: cnet_isa_1ffcd97800 (IsA flag_rank military_rank) (STV 1.0 0.9091)) +(: cnet_isa_5279eb9f25 (IsA flag_smut smut) (STV 1.0 0.9091)) +(: cnet_isa_09de2eaaf3 (IsA flag_smut_fungus smut) (STV 1.0 0.9091)) +(: cnet_isa_dbfcaa51d6 (IsA flag_waving demagoguery) (STV 1.0 0.9091)) +(: cnet_isa_dad4e903e2 (IsA flagellant masochist) (STV 1.0 0.9091)) +(: cnet_isa_14c8e2cd88 (IsA flagellant penitent) (STV 1.0 0.9091)) +(: cnet_isa_6f7c863ce8 (IsA flagellate protozoan) (STV 1.0 0.9091)) +(: cnet_isa_ca15a7816f (IsA flagellated_cell cell) (STV 1.0 0.9091)) +(: cnet_isa_3cab9fba32 (IsA flagellation beating) (STV 1.0 0.9091)) +(: cnet_isa_f0f31f950e (IsA flagellum process) (STV 1.0 0.9091)) +(: cnet_isa_d6c53dad2d (IsA flageolet fipple_flute) (STV 1.0 0.9091)) +(: cnet_isa_cc475249f4 (IsA flageolet common_bean) (STV 1.0 0.9091)) +(: cnet_isa_c53fdbf5ae (IsA flagfish killifish) (STV 1.0 0.9091)) +(: cnet_isa_6cf093f3ed (IsA flagging walk) (STV 1.0 0.9091)) +(: cnet_isa_a92ab3c85a (IsA flagging collection) (STV 1.0 0.9091)) +(: cnet_isa_d7d534a063 (IsA flagon vessel) (STV 1.0 0.9091)) +(: cnet_isa_076c104597 (IsA flagpole staff) (STV 1.0 0.9091)) +(: cnet_isa_d159c4e53d (IsA flagship ship) (STV 1.0 0.9091)) +(: cnet_isa_a76459a7ee (IsA flagship thing) (STV 1.0 0.9091)) +(: cnet_isa_7c8c6ea26b (IsA flail implement) (STV 1.0 0.9091)) +(: cnet_isa_562a2e217b (IsA flair endowment) (STV 1.0 0.9091)) +(: cnet_isa_b84f6092d8 (IsA flak_catcher spokesperson) (STV 1.0 0.9091)) +(: cnet_isa_8bfcefeb05 (IsA flakiness brittleness) (STV 1.0 0.9091)) +(: cnet_isa_d0ae9ae422 (IsA flambeau torch) (STV 1.0 0.9091)) +(: cnet_isa_824b3f6c0d (IsA flamboyance ornateness) (STV 1.0 0.9091)) +(: cnet_isa_80babe7ea3 (IsA flame_cell excretory_organ) (STV 1.0 0.9091)) +(: cnet_isa_d786f5c683 (IsA flame_fish cardinalfish) (STV 1.0 0.9091)) +(: cnet_isa_a44ebc37f6 (IsA flame_flower wildflower) (STV 1.0 0.9091)) +(: cnet_isa_ec7f870c09 (IsA flame_out failure) (STV 1.0 0.9091)) +(: cnet_isa_2dc9c028bc (IsA flame_out power_outage) (STV 1.0 0.9091)) +(: cnet_isa_a646336939 (IsA flame_pea shrub) (STV 1.0 0.9091)) +(: cnet_isa_3b1f1235e7 (IsA flame_tokay tokay) (STV 1.0 0.9091)) +(: cnet_isa_128f5dbfe7 (IsA flame_tree bottle_tree) (STV 1.0 0.9091)) +(: cnet_isa_775dab5835 (IsA flame_tree parasitic_plant) (STV 1.0 0.9091)) +(: cnet_isa_135e039dfb (IsA flamen priest) (STV 1.0 0.9091)) +(: cnet_isa_f6b683a80e (IsA flamenco social_dancing) (STV 1.0 0.9091)) +(: cnet_isa_38505d4044 (IsA flamenco dance_music) (STV 1.0 0.9091)) +(: cnet_isa_a881a26426 (IsA flamethrower weapon) (STV 1.0 0.9091)) +(: cnet_isa_1cb5dac1de (IsA flamingo bird) (STV 1.0 0.9454)) +(: cnet_isa_e03e5ef47d (IsA flamingo wading_bird) (STV 1.0 0.9091)) +(: cnet_isa_6b472aba64 (IsA flamingo_flower anthurium) (STV 1.0 0.9091)) +(: cnet_isa_e333c9e2b4 (IsA flammulina fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_9d719cf4c2 (IsA flan dessert) (STV 1.0 0.9091)) +(: cnet_isa_116c9e78cb (IsA flange projection) (STV 1.0 0.9091)) +(: cnet_isa_8666e39687 (IsA flank body_part) (STV 1.0 0.9091)) +(: cnet_isa_f88de41bdc (IsA flank cut_of_beef) (STV 1.0 0.9091)) +(: cnet_isa_3f1ec710dd (IsA flank formation) (STV 1.0 0.9091)) +(: cnet_isa_fa4c0730b0 (IsA flank subfigure) (STV 1.0 0.9091)) +(: cnet_isa_f293c06a7b (IsA flank_steak beefsteak) (STV 1.0 0.9091)) +(: cnet_isa_c6a6073e7c (IsA flanker soldier) (STV 1.0 0.9091)) +(: cnet_isa_101ef4f91f (IsA flanker_back back) (STV 1.0 0.9091)) +(: cnet_isa_fff2c7c7e2 (IsA flannel fabric) (STV 1.0 0.9091)) +(: cnet_isa_5b869de56b (IsA flannel pair_of_trouser) (STV 1.0 0.9091)) +(: cnet_isa_883965ce15 (IsA flannelbush shrub) (STV 1.0 0.9091)) +(: cnet_isa_1775db8219 (IsA flannelette fabric) (STV 1.0 0.9091)) +(: cnet_isa_acc6d51e3b (IsA flap airfoil) (STV 1.0 0.9091)) +(: cnet_isa_b99a6ce133 (IsA flap covering) (STV 1.0 0.9091)) +(: cnet_isa_cb851e31e4 (IsA flap animal_tissue) (STV 1.0 0.9091)) +(: cnet_isa_6b77a5cf5f (IsA flap wave) (STV 1.0 0.9091)) +(: cnet_isa_e20e93e979 (IsA flapper girl) (STV 1.0 0.9091)) +(: cnet_isa_b976dce838 (IsA flare device) (STV 1.0 0.9091)) +(: cnet_isa_8e96905550 (IsA flare fly) (STV 1.0 0.9091)) +(: cnet_isa_6b4ea59497 (IsA flare effusion) (STV 1.0 0.9091)) +(: cnet_isa_ccf6b57bec (IsA flare visual_signal) (STV 1.0 0.9091)) +(: cnet_isa_03a6c3484b (IsA flare reflection) (STV 1.0 0.9091)) +(: cnet_isa_01803f8575 (IsA flare fire) (STV 1.0 0.9091)) +(: cnet_isa_301b9020cb (IsA flare shape) (STV 1.0 0.9091)) +(: cnet_isa_b52859deb5 (IsA flare attack) (STV 1.0 0.9091)) +(: cnet_isa_d5dcb03f99 (IsA flare erythroderma) (STV 1.0 0.9091)) +(: cnet_isa_e76af065d9 (IsA flare_pass forward_pass) (STV 1.0 0.9091)) +(: cnet_isa_69a6c927b1 (IsA flare_path airstrip) (STV 1.0 0.9091)) +(: cnet_isa_1eead279ce (IsA flare_star red_dwarf) (STV 1.0 0.9091)) +(: cnet_isa_43cc9640b9 (IsA flash lamp) (STV 1.0 0.9091)) +(: cnet_isa_5ef14bf634 (IsA flash patch) (STV 1.0 0.9091)) +(: cnet_isa_2a825cfafa (IsA flash photographic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_0ebcc0ef1b (IsA flash brightness) (STV 1.0 0.9091)) +(: cnet_isa_a21f9dbf34 (IsA flash insight) (STV 1.0 0.9091)) +(: cnet_isa_568a5cb0ef (IsA flash experience) (STV 1.0 0.9091)) +(: cnet_isa_cd5999df39 (IsA flash happening) (STV 1.0 0.9091)) +(: cnet_isa_1b7ce724bc (IsA flash_camera camera) (STV 1.0 0.9091)) +(: cnet_isa_1df678c24c (IsA flash_card poster) (STV 1.0 0.9091)) +(: cnet_isa_35a8852eaa (IsA flash_flood flood) (STV 1.0 0.9091)) +(: cnet_isa_3620cea3fb (IsA flash_forward transition) (STV 1.0 0.9091)) +(: cnet_isa_8d9af24e6c (IsA flash_in_pan failure) (STV 1.0 0.9091)) +(: cnet_isa_50b4cc5ec8 (IsA flash_memory non_volatile_storage) (STV 1.0 0.9091)) +(: cnet_isa_52fe237073 (IsA flash_point temperature) (STV 1.0 0.9091)) +(: cnet_isa_6f86d08bc6 (IsA flash_point criticality) (STV 1.0 0.9091)) +(: cnet_isa_f02285ed92 (IsA flash_welding butt_welding) (STV 1.0 0.9091)) +(: cnet_isa_1c8b2025ee (IsA flashback recurrence) (STV 1.0 0.9091)) +(: cnet_isa_29ef2db5da (IsA flashback transition) (STV 1.0 0.9091)) +(: cnet_isa_2b965d7163 (IsA flashboard boarding) (STV 1.0 0.9091)) +(: cnet_isa_7363c0d2c9 (IsA flasher electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_4ae57f82c8 (IsA flashiness tastelessness) (STV 1.0 0.9091)) +(: cnet_isa_df4643202e (IsA flashing sheet_metal) (STV 1.0 0.9091)) +(: cnet_isa_c7ebe6e172 (IsA flashlight electric_lamp) (STV 1.0 0.9091)) +(: cnet_isa_4ec54ec9ee (IsA flashlight_battery dry_battery) (STV 1.0 0.9091)) +(: cnet_isa_fe8d950796 (IsA flashlight_fish spiny_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_46eef9c9a2 (IsA flashover discharge) (STV 1.0 0.9091)) +(: cnet_isa_94a1c3fce1 (IsA flask container) (STV 1.0 0.9339)) +(: cnet_isa_5568cfb988 (IsA flask bottle) (STV 1.0 0.9091)) +(: cnet_isa_7e594b514c (IsA flask containerful) (STV 1.0 0.9091)) +(: cnet_isa_82ebc183a7 (IsA flat box) (STV 1.0 0.9091)) +(: cnet_isa_b88544930b (IsA flat pneumatic_tire) (STV 1.0 0.9091)) +(: cnet_isa_17f0cee5e6 (IsA flat scenery) (STV 1.0 0.9091)) +(: cnet_isa_102bd2bc10 (IsA flat musical_notation) (STV 1.0 0.9091)) +(: cnet_isa_c2935ed0c4 (IsA flat plain) (STV 1.0 0.9091)) +(: cnet_isa_35734c7e78 (IsA flat_arch arch) (STV 1.0 0.9091)) +(: cnet_isa_e9acb22835 (IsA flat_bench bench) (STV 1.0 0.9091)) +(: cnet_isa_9a1b235455 (IsA flat_bone cut_of_beef) (STV 1.0 0.9091)) +(: cnet_isa_815676b4be (IsA flat_coat coat_of_paint) (STV 1.0 0.9091)) +(: cnet_isa_37b56a3b75 (IsA flat_coated_retriever retriever) (STV 1.0 0.9091)) +(: cnet_isa_2eb923ab69 (IsA flat_file file) (STV 1.0 0.9091)) +(: cnet_isa_7e6c84c260 (IsA flat_panel_display display) (STV 1.0 0.9091)) +(: cnet_isa_e83b98a338 (IsA flat_pea everlasting_pea) (STV 1.0 0.9091)) +(: cnet_isa_b84b355c6e (IsA flat_pea shrub) (STV 1.0 0.9091)) +(: cnet_isa_6750b3af4c (IsA flat_tip_screwdriver screwdriver) (STV 1.0 0.9091)) +(: cnet_isa_e803e73922 (IsA flat_topped_white_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_a83e240565 (IsA flatbed truck_bed) (STV 1.0 0.9091)) +(: cnet_isa_2b9c1667f1 (IsA flatbed_press press) (STV 1.0 0.9091)) +(: cnet_isa_2e568bb07f (IsA flatbread bread) (STV 1.0 0.9091)) +(: cnet_isa_fc675793a4 (IsA flatbrod flatbread) (STV 1.0 0.9091)) +(: cnet_isa_5676756654 (IsA flatcar freight_car) (STV 1.0 0.9091)) +(: cnet_isa_d02ab9104d (IsA flatfish spiny_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_67c8b54b72 (IsA flatfish saltwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_3d4411fca0 (IsA flatfoot foot) (STV 1.0 0.9091)) +(: cnet_isa_bbab52d17c (IsA flatfoot lawman) (STV 1.0 0.9091)) +(: cnet_isa_5143020229 (IsA flathead percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_f1bf1f76f5 (IsA flathead scorpaenoid) (STV 1.0 0.9091)) +(: cnet_isa_fd76f15e2d (IsA flathead_catfish catfish) (STV 1.0 0.9091)) +(: cnet_isa_4d8f31931c (IsA flatiron iron) (STV 1.0 0.9091)) +(: cnet_isa_acb83643d7 (IsA flatlet apartment) (STV 1.0 0.9091)) +(: cnet_isa_b37cfbd4cb (IsA flatliner movie) (STV 1.0 0.9091)) +(: cnet_isa_8bf084218f (IsA flatmate friend) (STV 1.0 0.9091)) +(: cnet_isa_4aaaba284b (IsA flatness dullness) (STV 1.0 0.9091)) +(: cnet_isa_ee8a2bb0f6 (IsA flatness taste) (STV 1.0 0.9091)) +(: cnet_isa_aacadcb08b (IsA flatness expressive_style) (STV 1.0 0.9091)) +(: cnet_isa_39afb3f867 (IsA flat footwear) (STV 1.0 0.9091)) +(: cnet_isa_a2e7328a37 (IsA flatterer follower) (STV 1.0 0.9091)) +(: cnet_isa_9458aff78a (IsA flattery compliment) (STV 1.0 0.9091)) +(: cnet_isa_fc5a0538e5 (IsA flatulence physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_2796e8892f (IsA flatware silverware) (STV 1.0 0.9091)) +(: cnet_isa_5d2b5490d1 (IsA flatware tableware) (STV 1.0 0.9091)) +(: cnet_isa_9d91360415 (IsA flatwork ironing) (STV 1.0 0.9091)) +(: cnet_isa_2783f5e905 (IsA flatworm worm) (STV 1.0 0.9091)) +(: cnet_isa_cfbc21bdf4 (IsA flaunt display) (STV 1.0 0.9091)) +(: cnet_isa_830155257b (IsA flavian_dynasty dynasty) (STV 1.0 0.9091)) +(: cnet_isa_6890e20947 (IsA flavin ketone) (STV 1.0 0.9091)) +(: cnet_isa_1016fba038 (IsA flaviviridae arbovirus) (STV 1.0 0.9091)) +(: cnet_isa_5f89b77a9a (IsA flavivirus animal_virus) (STV 1.0 0.9091)) +(: cnet_isa_417349ae88 (IsA flavone compound) (STV 1.0 0.9091)) +(: cnet_isa_addd09ad41 (IsA flavonoid phytochemical) (STV 1.0 0.9091)) +(: cnet_isa_ab7171756b (IsA flavonoid pigment) (STV 1.0 0.9091)) +(: cnet_isa_2eaedf08b3 (IsA flavor kind) (STV 1.0 0.9091)) +(: cnet_isa_ccb3bc82e5 (IsA flavored_coffee recent_popular_luxury) (STV 1.0 0.9091)) +(: cnet_isa_874ed067db (IsA flavorer ingredient) (STV 1.0 0.9091)) +(: cnet_isa_80a4593f9b (IsA flavorlessness unappetizingness) (STV 1.0 0.9091)) +(: cnet_isa_4ca2001d84 (IsA flavorsomeness appetizingness) (STV 1.0 0.9091)) +(: cnet_isa_7cb55906f5 (IsA flaw failing) (STV 1.0 0.9091)) +(: cnet_isa_9772b4f8a7 (IsA flaw imperfection) (STV 1.0 0.9091)) +(: cnet_isa_bc0405548b (IsA flax herb) (STV 1.0 0.9091)) +(: cnet_isa_c2b2cbc101 (IsA flax plant_fiber) (STV 1.0 0.9091)) +(: cnet_isa_65ab9ad559 (IsA flax_rust rust) (STV 1.0 0.9091)) +(: cnet_isa_b895645fff (IsA flea ectoparasite) (STV 1.0 0.9091)) +(: cnet_isa_3aec783572 (IsA flea insect) (STV 1.0 0.9091)) +(: cnet_isa_22675e0cdb (IsA flea_beetle leaf_beetle) (STV 1.0 0.9091)) +(: cnet_isa_850ff2b684 (IsA flea_bite troublesomeness) (STV 1.0 0.9091)) +(: cnet_isa_07e64c8e8b (IsA flea_bite sting) (STV 1.0 0.9091)) +(: cnet_isa_1a2c44763a (IsA flea_market open_air_market) (STV 1.0 0.9091)) +(: cnet_isa_1d0951a03f (IsA fleabag hotel) (STV 1.0 0.9091)) +(: cnet_isa_b709dae6f9 (IsA fleabane herb) (STV 1.0 0.9091)) +(: cnet_isa_7e4266a64e (IsA fleabane wildflower) (STV 1.0 0.9091)) +(: cnet_isa_6ebd3d3cfd (IsA fleapit cinema) (STV 1.0 0.9091)) +(: cnet_isa_aae5caf5af (IsA fleawort plantain) (STV 1.0 0.9091)) +(: cnet_isa_1c26eca92c (IsA fledgling young_bird) (STV 1.0 0.9091)) +(: cnet_isa_a818319eb2 (IsA fleece fabric) (STV 1.0 0.9091)) +(: cnet_isa_0ee2e2ff67 (IsA fleece wool) (STV 1.0 0.9091)) +(: cnet_isa_772b22f62d (IsA fleer contempt) (STV 1.0 0.9091)) +(: cnet_isa_230f51ffac (IsA fleet collection) (STV 1.0 0.9091)) +(: cnet_isa_a213d9598d (IsA fleet steamship_company) (STV 1.0 0.9091)) +(: cnet_isa_cd7d39eb90 (IsA fleet_admiral flag_officer) (STV 1.0 0.9091)) +(: cnet_isa_b6902948b6 (IsA fleet_ballistic_missile_submarine submarine) (STV 1.0 0.9091)) +(: cnet_isa_482f953e29 (IsA fleet_street journalism) (STV 1.0 0.9091)) +(: cnet_isa_7e228342ca (IsA fleetness celerity) (STV 1.0 0.9091)) +(: cnet_isa_8caa5a43d4 (IsA fleming belgian) (STV 1.0 0.9091)) +(: cnet_isa_33849c2041 (IsA flemish dutch) (STV 1.0 0.9091)) +(: cnet_isa_1704368978 (IsA flemish ethnic_group) (STV 1.0 0.9091)) +(: cnet_isa_09437d81c9 (IsA flesh color) (STV 1.0 0.9091)) +(: cnet_isa_63588eadee (IsA flesh animal_tissue) (STV 1.0 0.9091)) +(: cnet_isa_c1a2b59d2a (IsA flesh_fly fly) (STV 1.0 0.9091)) +(: cnet_isa_f4817470f2 (IsA flesh_wound wound) (STV 1.0 0.9091)) +(: cnet_isa_55f6fb1162 (IsA fleshiness fatness) (STV 1.0 0.9091)) +(: cnet_isa_20e8a68d05 (IsA fleur_de_lis charge) (STV 1.0 0.9091)) +(: cnet_isa_19cb7f4e40 (IsA flex flexion) (STV 1.0 0.9091)) +(: cnet_isa_43fedd3cb9 (IsA flexibility adaptability) (STV 1.0 0.9091)) +(: cnet_isa_309b0bbd23 (IsA flexibility malleability) (STV 1.0 0.9091)) +(: cnet_isa_b36741ab7e (IsA flexion bending) (STV 1.0 0.9091)) +(: cnet_isa_7d1982a992 (IsA flexor_muscle skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_a0772e1425 (IsA flexure physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_c8f566a4fa (IsA flibbertigibbet fool) (STV 1.0 0.9091)) +(: cnet_isa_76e3e26b3f (IsA flick stroke) (STV 1.0 0.9091)) +(: cnet_isa_4568ed81ba (IsA flick contact) (STV 1.0 0.9091)) +(: cnet_isa_e1b6627297 (IsA flicker woodpecker) (STV 1.0 0.9091)) +(: cnet_isa_76960da057 (IsA flicker flash) (STV 1.0 0.9091)) +(: cnet_isa_5af919801f (IsA flickertail ground_squirrel) (STV 1.0 0.9091)) +(: cnet_isa_286390b830 (IsA flier traveler) (STV 1.0 0.9091)) +(: cnet_isa_dea0294d38 (IsA fly insect) (STV 1.0 0.9730)) +(: cnet_isa_a5b62c3f8c (IsA fly space) (STV 1.0 0.9091)) +(: cnet_isa_e315603969 (IsA flight air_travel) (STV 1.0 0.9091)) +(: cnet_isa_137ac1947c (IsA flight trip) (STV 1.0 0.9091)) +(: cnet_isa_9a3625560b (IsA flight stairway) (STV 1.0 0.9091)) +(: cnet_isa_7dec8cc42a (IsA flight creativity) (STV 1.0 0.9091)) +(: cnet_isa_424c8d2fe4 (IsA flight air_unit) (STV 1.0 0.9091)) +(: cnet_isa_bd13f6996c (IsA flight flock) (STV 1.0 0.9091)) +(: cnet_isa_5d5afa3a77 (IsA flight formation) (STV 1.0 0.9091)) +(: cnet_isa_b99c3c6fa0 (IsA flight_control control) (STV 1.0 0.9091)) +(: cnet_isa_b91339c68b (IsA flight_deck deck) (STV 1.0 0.9091)) +(: cnet_isa_ea5bd154fa (IsA flight_engineer aircrewman) (STV 1.0 0.9091)) +(: cnet_isa_212185a00e (IsA flight_feather feather) (STV 1.0 0.9091)) +(: cnet_isa_eeae84842e (IsA flight_line line) (STV 1.0 0.9091)) +(: cnet_isa_6fd85043b3 (IsA flight_maneuver maneuver) (STV 1.0 0.9091)) +(: cnet_isa_081b7c9121 (IsA flight_path path) (STV 1.0 0.9091)) +(: cnet_isa_aabc4c8590 (IsA flight_simulator simulator) (STV 1.0 0.9091)) +(: cnet_isa_2d77c003ca (IsA flight_surgeon medical_officer) (STV 1.0 0.9091)) +(: cnet_isa_d106ecca63 (IsA flightiness irresponsibility) (STV 1.0 0.9091)) +(: cnet_isa_99aedb2fe0 (IsA flimsiness weakness) (STV 1.0 0.9091)) +(: cnet_isa_1f30a302bc (IsA flinder collection) (STV 1.0 0.9091)) +(: cnet_isa_7baa58695c (IsA flindersia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_cecbf7b144 (IsA fling throw) (STV 1.0 0.9091)) +(: cnet_isa_8c3df5c924 (IsA flint silica) (STV 1.0 0.9091)) +(: cnet_isa_1c015a19c4 (IsA flint_corn field_corn) (STV 1.0 0.9091)) +(: cnet_isa_e630020412 (IsA flintlock gunlock) (STV 1.0 0.9091)) +(: cnet_isa_f123dcc4e7 (IsA flintlock muzzle_loader) (STV 1.0 0.9091)) +(: cnet_isa_1f686fcbee (IsA flintstone flint) (STV 1.0 0.9091)) +(: cnet_isa_cd2964bb60 (IsA flip dive) (STV 1.0 0.9091)) +(: cnet_isa_733d3aeaf5 (IsA flip throw) (STV 1.0 0.9091)) +(: cnet_isa_07305e3264 (IsA flip mixed_drink) (STV 1.0 0.9091)) +(: cnet_isa_d4040746c1 (IsA flip_chart chart) (STV 1.0 0.9091)) +(: cnet_isa_259b20f608 (IsA flip_flop somersault) (STV 1.0 0.9091)) +(: cnet_isa_97ba94da99 (IsA flip_flop circuit) (STV 1.0 0.9091)) +(: cnet_isa_112a49811f (IsA flip_flop sandal) (STV 1.0 0.9091)) +(: cnet_isa_a7779c7098 (IsA flip_side opposition) (STV 1.0 0.9091)) +(: cnet_isa_382b0aa290 (IsA flippancy levity) (STV 1.0 0.9091)) +(: cnet_isa_3037c83615 (IsA flipper limb) (STV 1.0 0.9091)) +(: cnet_isa_9ba2283aac (IsA flipper shoe) (STV 1.0 0.9091)) +(: cnet_isa_214a0fa14a (IsA flirt play) (STV 1.0 0.9091)) +(: cnet_isa_fa673cdd36 (IsA flit motion) (STV 1.0 0.9091)) +(: cnet_isa_035083bc49 (IsA flit move) (STV 1.0 0.9091)) +(: cnet_isa_a9b7a62fa7 (IsA flitch bacon) (STV 1.0 0.9091)) +(: cnet_isa_15691c8c22 (IsA flitch fish_steak) (STV 1.0 0.9091)) +(: cnet_isa_fb186ea55d (IsA float artifact) (STV 1.0 0.9091)) +(: cnet_isa_bcba058780 (IsA float display) (STV 1.0 0.9091)) +(: cnet_isa_74b3c1bf16 (IsA float hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_db27780f25 (IsA float stock) (STV 1.0 0.9091)) +(: cnet_isa_2a38f93465 (IsA float time_interval) (STV 1.0 0.9091)) +(: cnet_isa_c0c9c747f9 (IsA floater policy) (STV 1.0 0.9091)) +(: cnet_isa_9142c08761 (IsA floater object) (STV 1.0 0.9091)) +(: cnet_isa_a87272c4f4 (IsA floater employee) (STV 1.0 0.9091)) +(: cnet_isa_a8da732819 (IsA floater swimmer) (STV 1.0 0.9091)) +(: cnet_isa_3d68c41d9c (IsA floater voter) (STV 1.0 0.9091)) +(: cnet_isa_ec71753c00 (IsA floater debt_instrument) (STV 1.0 0.9091)) +(: cnet_isa_23b236ec75 (IsA floating swimming) (STV 1.0 0.9091)) +(: cnet_isa_8f04f564e8 (IsA floating_dock dry_dock) (STV 1.0 0.9091)) +(: cnet_isa_79e280f53d (IsA floating_fern aquatic_fern) (STV 1.0 0.9091)) +(: cnet_isa_b654f15d48 (IsA floating_mine mine) (STV 1.0 0.9091)) +(: cnet_isa_f37f951b9f (IsA floating_moss aquatic_fern) (STV 1.0 0.9091)) +(: cnet_isa_89d0ad92e5 (IsA floating_point_notation mathematical_notation) (STV 1.0 0.9091)) +(: cnet_isa_e9f5139154 (IsA floating_point_number number) (STV 1.0 0.9091)) +(: cnet_isa_386f2bcc1a (IsA floating_point_operation computer_operation) (STV 1.0 0.9091)) +(: cnet_isa_534ebe8cb9 (IsA floatplane seaplane) (STV 1.0 0.9091)) +(: cnet_isa_8fd12c9b3f (IsA floccose_chanterelle agaric) (STV 1.0 0.9091)) +(: cnet_isa_572a46ee41 (IsA flocculation natural_process) (STV 1.0 0.9091)) +(: cnet_isa_958ca353a4 (IsA floccule material) (STV 1.0 0.9091)) +(: cnet_isa_a1d48691e2 (IsA flock animal_group) (STV 1.0 0.9091)) +(: cnet_isa_e865452e57 (IsA flock congregation) (STV 1.0 0.9091)) +(: cnet_isa_fab2fab4ff (IsA flogger torturer) (STV 1.0 0.9091)) +(: cnet_isa_c6685e63b9 (IsA flood filling) (STV 1.0 0.9091)) +(: cnet_isa_3a8d88fe91 (IsA flood flow) (STV 1.0 0.9091)) +(: cnet_isa_5e2e0c2d77 (IsA flood light) (STV 1.0 0.9091)) +(: cnet_isa_919d55ffec (IsA flood geological_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_71a443e0c1 (IsA flood batch) (STV 1.0 0.9091)) +(: cnet_isa_d0a1ff387d (IsA flood_control control) (STV 1.0 0.9091)) +(: cnet_isa_56d12587d4 (IsA flood_tide tide) (STV 1.0 0.9091)) +(: cnet_isa_61cd78e525 (IsA flooded_gum eucalyptus) (STV 1.0 0.9091)) +(: cnet_isa_a874f05cf0 (IsA floodgate restraint) (STV 1.0 0.9091)) +(: cnet_isa_b24c7e48c1 (IsA floodhead flash_flood) (STV 1.0 0.9091)) +(: cnet_isa_8df598f9f5 (IsA floodplain plain) (STV 1.0 0.9091)) +(: cnet_isa_0309c256cc (IsA floor hall) (STV 1.0 0.9091)) +(: cnet_isa_4e76084630 (IsA floor horizontal_surface) (STV 1.0 0.9091)) +(: cnet_isa_66a6232d42 (IsA floor room) (STV 1.0 0.9091)) +(: cnet_isa_fee82e9c0c (IsA floor structure) (STV 1.0 0.9091)) +(: cnet_isa_6a6071cb66 (IsA floor right) (STV 1.0 0.9091)) +(: cnet_isa_790ec289c8 (IsA floor control) (STV 1.0 0.9091)) +(: cnet_isa_43ea7a0e0d (IsA floor gathering) (STV 1.0 0.9091)) +(: cnet_isa_a8917ed00e (IsA floor land) (STV 1.0 0.9091)) +(: cnet_isa_88d791a947 (IsA floor surface) (STV 1.0 0.9091)) +(: cnet_isa_e3e942c976 (IsA floor_cover covering) (STV 1.0 0.9091)) +(: cnet_isa_3fa677c165 (IsA floor_joist joist) (STV 1.0 0.9091)) +(: cnet_isa_c06934d7e2 (IsA floor_lamp lamp) (STV 1.0 0.9091)) +(: cnet_isa_ae8a8dc2ac (IsA floor_leader legislator) (STV 1.0 0.9091)) +(: cnet_isa_956042ca58 (IsA floor_plan plan) (STV 1.0 0.9091)) +(: cnet_isa_0901319a1b (IsA floor_wax wax) (STV 1.0 0.9091)) +(: cnet_isa_7ab510bfed (IsA floorboard board) (STV 1.0 0.9091)) +(: cnet_isa_3564b6ce9c (IsA floorboard floor) (STV 1.0 0.9091)) +(: cnet_isa_927880151f (IsA flooring building_material) (STV 1.0 0.9091)) +(: cnet_isa_22ec99e354 (IsA floorwalker employee) (STV 1.0 0.9091)) +(: cnet_isa_2a1f085bba (IsA flop descent) (STV 1.0 0.9091)) +(: cnet_isa_d63b6d6c8e (IsA flop failure) (STV 1.0 0.9091)) +(: cnet_isa_62beda8e4f (IsA flophouse lodging_house) (STV 1.0 0.9091)) +(: cnet_isa_173f036c0f (IsA floral_leaf leaf) (STV 1.0 0.9091)) +(: cnet_isa_495bcdd806 (IsA floreal revolutionary_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_491aa5308c (IsA florence_fennel fennel) (STV 1.0 0.9091)) +(: cnet_isa_758daf9155 (IsA florentine italian) (STV 1.0 0.9091)) +(: cnet_isa_49f79396fc (IsA florentine_iris bearded_iris) (STV 1.0 0.9091)) +(: cnet_isa_9fe31f009c (IsA florest_s_cineraria flower) (STV 1.0 0.9091)) +(: cnet_isa_16b19babb6 (IsA floret flower) (STV 1.0 0.9091)) +(: cnet_isa_635c50f8ee (IsA florida state) (STV 1.0 0.9339)) +(: cnet_isa_a1db5b9e57 (IsA florida_gallinule gallinule) (STV 1.0 0.9091)) +(: cnet_isa_dc0f7e67bd (IsA florida_pompano pompano) (STV 1.0 0.9091)) +(: cnet_isa_a49859f3c2 (IsA florida_selaginella spikemoss) (STV 1.0 0.9091)) +(: cnet_isa_be6a816a83 (IsA florida_smoothhound smooth_dogfish) (STV 1.0 0.9091)) +(: cnet_isa_2eafaaf7f8 (IsA florida_strap_fern strap_fern) (STV 1.0 0.9091)) +(: cnet_isa_19fcb04d61 (IsA florida_yew yew) (STV 1.0 0.9091)) +(: cnet_isa_48f923136c (IsA floridian american) (STV 1.0 0.9091)) +(: cnet_isa_572f6b6ff6 (IsA florilegium anthology) (STV 1.0 0.9091)) +(: cnet_isa_c36c587d83 (IsA florist_s_chrysanthemum chrysanthemum) (STV 1.0 0.9091)) +(: cnet_isa_976c10fc57 (IsA florist_s_gloxinia gloxinia) (STV 1.0 0.9091)) +(: cnet_isa_449b27041c (IsA florist shop) (STV 1.0 0.9091)) +(: cnet_isa_cb1cbc8979 (IsA florist shopkeeper) (STV 1.0 0.9091)) +(: cnet_isa_b7487f6859 (IsA floss thread) (STV 1.0 0.9091)) +(: cnet_isa_fc406ebfaa (IsA flotation finance) (STV 1.0 0.9091)) +(: cnet_isa_7a86646b3b (IsA flotation physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_02897fe8cc (IsA flotilla fleet) (STV 1.0 0.9091)) +(: cnet_isa_46755fe430 (IsA flotsam wreckage) (STV 1.0 0.9091)) +(: cnet_isa_e21f74b35e (IsA flounce gait) (STV 1.0 0.9091)) +(: cnet_isa_09a157b005 (IsA flounder fish) (STV 1.0 0.9339)) +(: cnet_isa_f4fe4d2c12 (IsA flounder flatfish) (STV 1.0 0.9091)) +(: cnet_isa_4c8a44f2b4 (IsA flour foodstuff) (STV 1.0 0.9091)) +(: cnet_isa_dbda7701bb (IsA flour_beetle darkling_beetle) (STV 1.0 0.9091)) +(: cnet_isa_7bf0be779f (IsA flour_bin bin) (STV 1.0 0.9091)) +(: cnet_isa_625af51dae (IsA flour_mill mill) (STV 1.0 0.9091)) +(: cnet_isa_3e78fef2a0 (IsA flourish embellishment) (STV 1.0 0.9091)) +(: cnet_isa_fcce0530d1 (IsA flourish gesture) (STV 1.0 0.9091)) +(: cnet_isa_a4d37e0fd9 (IsA flourish grandiosity) (STV 1.0 0.9091)) +(: cnet_isa_7f5295de87 (IsA flourish wave) (STV 1.0 0.9091)) +(: cnet_isa_b575dafbeb (IsA flourish tune) (STV 1.0 0.9091)) +(: cnet_isa_af0d570afd (IsA flow motion) (STV 1.0 0.9091)) +(: cnet_isa_04ee20b6e0 (IsA flow change_of_location) (STV 1.0 0.9091)) +(: cnet_isa_34fdabffb9 (IsA flow natural_process) (STV 1.0 0.9091)) +(: cnet_isa_c2453f1a85 (IsA flow rate) (STV 1.0 0.9091)) +(: cnet_isa_ce768b4cbc (IsA flow_chart multidimensional_language) (STV 1.0 0.9091)) +(: cnet_isa_013adf0ae9 (IsA flowage body_of_water) (STV 1.0 0.9091)) +(: cnet_isa_1e373fd718 (IsA flowage flow) (STV 1.0 0.9091)) +(: cnet_isa_3d89f1e6d6 (IsA flower part_of_plant) (STV 1.0 0.9339)) +(: cnet_isa_8b7b7e4ff6 (IsA flower angiosperm) (STV 1.0 0.9091)) +(: cnet_isa_205f5a5a25 (IsA flower reproductive_structure) (STV 1.0 0.9091)) +(: cnet_isa_d40971bf15 (IsA flower time_period) (STV 1.0 0.9091)) +(: cnet_isa_fd57665b60 (IsA flower_arrangement arrangement) (STV 1.0 0.9091)) +(: cnet_isa_42ab306fb1 (IsA flower_arrangement decoration) (STV 1.0 0.9091)) +(: cnet_isa_32adecb46a (IsA flower_bud bud) (STV 1.0 0.9091)) +(: cnet_isa_635b31391a (IsA flower_chain flower_arrangement) (STV 1.0 0.9091)) +(: cnet_isa_082bee3f42 (IsA flower_cluster inflorescence) (STV 1.0 0.9091)) +(: cnet_isa_076ec65e39 (IsA flower_garden garden) (STV 1.0 0.9091)) +(: cnet_isa_b208465304 (IsA flower_gardening gardening) (STV 1.0 0.9091)) +(: cnet_isa_137fbcae47 (IsA flower_girl child) (STV 1.0 0.9091)) +(: cnet_isa_782d792e5c (IsA flower_girl assistant) (STV 1.0 0.9091)) +(: cnet_isa_6abcf29920 (IsA flower_girl female_child) (STV 1.0 0.9091)) +(: cnet_isa_de09bb4b07 (IsA flower_girl seller) (STV 1.0 0.9091)) +(: cnet_isa_85f69e1b95 (IsA flower_head inflorescence) (STV 1.0 0.9091)) +(: cnet_isa_8e91c2096a (IsA flower_of_hour hibiscus) (STV 1.0 0.9091)) +(: cnet_isa_8965f1ca3a (IsA flower_people youth_subculture) (STV 1.0 0.9091)) +(: cnet_isa_1249f8588a (IsA flower_power counterculture) (STV 1.0 0.9091)) +(: cnet_isa_72cfc62b67 (IsA flowerbed bed) (STV 1.0 0.9091)) +(: cnet_isa_90740b5e76 (IsA flowering_almond almond_tree) (STV 1.0 0.9091)) +(: cnet_isa_bcb1dec8b8 (IsA flowering_ash ash) (STV 1.0 0.9091)) +(: cnet_isa_9072670b9f (IsA flowering_cherry cherry) (STV 1.0 0.9091)) +(: cnet_isa_3615fb598a (IsA flowering_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_cd192eca28 (IsA flowering_maple ornamental) (STV 1.0 0.9091)) +(: cnet_isa_4499e182ae (IsA flowering_quince shrub) (STV 1.0 0.9091)) +(: cnet_isa_526b91857d (IsA flowering_raspberry raspberry) (STV 1.0 0.9091)) +(: cnet_isa_947badc9a7 (IsA flowering_shrub shrub) (STV 1.0 0.9091)) +(: cnet_isa_aa3ad2f305 (IsA flowering_tobacco tobacco) (STV 1.0 0.9091)) +(: cnet_isa_fd47d34027 (IsA flowering_wintergreen milkwort) (STV 1.0 0.9091)) +(: cnet_isa_d99cc49b0c (IsA flower perennial) (STV 1.0 0.9091)) +(: cnet_isa_d7140a9145 (IsA floxuridine antineoplastic) (STV 1.0 0.9091)) +(: cnet_isa_0aad49cebd (IsA flu virus) (STV 1.0 0.9339)) +(: cnet_isa_0a7e0d7ba5 (IsA fluctuation irregularity) (STV 1.0 0.9091)) +(: cnet_isa_ce5d0e3dec (IsA fluctuation wave) (STV 1.0 0.9091)) +(: cnet_isa_cf553699b3 (IsA flue conduit) (STV 1.0 0.9091)) +(: cnet_isa_fb6fa66447 (IsA flue_pipe organ_pipe) (STV 1.0 0.9091)) +(: cnet_isa_17ad03b691 (IsA flue_stop organ_stop) (STV 1.0 0.9091)) +(: cnet_isa_6643cf774a (IsA fluency communicativeness) (STV 1.0 0.9091)) +(: cnet_isa_5b05f8bdb1 (IsA fluency skillfulness) (STV 1.0 0.9091)) +(: cnet_isa_07c413a936 (IsA fluff blunder) (STV 1.0 0.9091)) +(: cnet_isa_5eada245f5 (IsA fluff material) (STV 1.0 0.9091)) +(: cnet_isa_c2e680de1a (IsA fluffy_omelet omelet) (STV 1.0 0.9091)) +(: cnet_isa_fed842ad5e (IsA flugelhorn brass) (STV 1.0 0.9091)) +(: cnet_isa_4bd79cbf36 (IsA fluid substance) (STV 1.0 0.9091)) +(: cnet_isa_baa5d70eba (IsA fluid_drive coupling) (STV 1.0 0.9091)) +(: cnet_isa_b676ce1251 (IsA fluid_flywheel flywheel) (STV 1.0 0.9091)) +(: cnet_isa_ecdd44f932 (IsA fluid_mechanic mechanic) (STV 1.0 0.9091)) +(: cnet_isa_d51ef92d06 (IsA fluidity thinness) (STV 1.0 0.9091)) +(: cnet_isa_3d51999825 (IsA fluidness changeableness) (STV 1.0 0.9091)) +(: cnet_isa_c23691d63c (IsA fluidounce british_capacity_unit) (STV 1.0 0.9091)) +(: cnet_isa_d119bdeff1 (IsA fluidounce united_state_liquid_unit) (STV 1.0 0.9091)) +(: cnet_isa_6f09a4cbf0 (IsA fluidram british_capacity_unit) (STV 1.0 0.9091)) +(: cnet_isa_b6dc304884 (IsA fluidram united_state_liquid_unit) (STV 1.0 0.9091)) +(: cnet_isa_50b07e2b0d (IsA fluke flatworm) (STV 1.0 0.9091)) +(: cnet_isa_8454dd95c8 (IsA fluke tail) (STV 1.0 0.9091)) +(: cnet_isa_70f54d3e5e (IsA fluke barb) (STV 1.0 0.9091)) +(: cnet_isa_09b8042f30 (IsA fluke projection) (STV 1.0 0.9091)) +(: cnet_isa_2cfa3ebfe7 (IsA flume watercourse) (STV 1.0 0.9091)) +(: cnet_isa_6673f4afd2 (IsA flummery pudding) (STV 1.0 0.9091)) +(: cnet_isa_d1b1c0d325 (IsA flunky follower) (STV 1.0 0.9091)) +(: cnet_isa_d68a540d28 (IsA fluorapatite apatite) (STV 1.0 0.9091)) +(: cnet_isa_529be3291e (IsA fluorescein absorption_indicator) (STV 1.0 0.9091)) +(: cnet_isa_3290e2b27a (IsA fluorescein dye) (STV 1.0 0.9091)) +(: cnet_isa_1d8d83c406 (IsA fluorescein_isothiocyanate fluorochrome) (STV 1.0 0.9091)) +(: cnet_isa_d0210ac987 (IsA fluorescence light) (STV 1.0 0.9091)) +(: cnet_isa_035a691860 (IsA fluorescence_microscopy microscopy) (STV 1.0 0.9091)) +(: cnet_isa_c5a50e6648 (IsA fluorescent_fixture lighting_fixture) (STV 1.0 0.9091)) +(: cnet_isa_7ff5e85215 (IsA fluorescent_lamp lamp) (STV 1.0 0.9091)) +(: cnet_isa_bd12f0d527 (IsA fluoridation addition) (STV 1.0 0.9091)) +(: cnet_isa_e488d71d93 (IsA fluoride element) (STV 1.0 0.9091)) +(: cnet_isa_91d1564cec (IsA fluoride halide) (STV 1.0 0.9091)) +(: cnet_isa_4093c8e336 (IsA fluorine chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_fb3cbc6dc0 (IsA fluorine gas) (STV 1.0 0.9091)) +(: cnet_isa_3176620a67 (IsA fluorine halogen) (STV 1.0 0.9091)) +(: cnet_isa_94f7100459 (IsA fluorite mineral) (STV 1.0 0.9091)) +(: cnet_isa_d4b72f19ba (IsA fluoroboric_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_2fb77b6779 (IsA fluoroboride salt) (STV 1.0 0.9091)) +(: cnet_isa_df1ae0dcbc (IsA fluorocarbon halocarbon) (STV 1.0 0.9091)) +(: cnet_isa_8b2458c415 (IsA fluorocarbon_plastic plastic) (STV 1.0 0.9091)) +(: cnet_isa_fed9e9578f (IsA fluorochrome dye) (STV 1.0 0.9091)) +(: cnet_isa_d61ab6927e (IsA fluoroform haloform) (STV 1.0 0.9091)) +(: cnet_isa_a11fb35de1 (IsA fluoroscope x_ray_machine) (STV 1.0 0.9091)) +(: cnet_isa_9f2d662383 (IsA fluoroscopy radioscopy) (STV 1.0 0.9091)) +(: cnet_isa_bd8fb5de47 (IsA fluorosis pathology) (STV 1.0 0.9091)) +(: cnet_isa_088ba6fd90 (IsA fluorouracil antimetabolite) (STV 1.0 0.9091)) +(: cnet_isa_6537167ea0 (IsA fluosilicate salt) (STV 1.0 0.9091)) +(: cnet_isa_2b012ded74 (IsA fluosilicic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_961cf50ac7 (IsA fluoxetine ssri) (STV 1.0 0.9091)) +(: cnet_isa_6bb9ea7760 (IsA fluphenazine major_tranquilizer) (STV 1.0 0.9091)) +(: cnet_isa_892dc9a75e (IsA flurry snow) (STV 1.0 0.9091)) +(: cnet_isa_45fe81b576 (IsA flush flow) (STV 1.0 0.9091)) +(: cnet_isa_5fd738a081 (IsA flush poker_hand) (STV 1.0 0.9091)) +(: cnet_isa_c760a3335e (IsA flush_toilet toilet) (STV 1.0 0.9091)) +(: cnet_isa_2525777a59 (IsA flushless_toilet toilet) (STV 1.0 0.9091)) +(: cnet_isa_9403066b78 (IsA flute instrument) (STV 1.0 0.9572)) +(: cnet_isa_664cf6f26c (IsA flute wind_instrument) (STV 1.0 0.9608)) +(: cnet_isa_5861a5ac43 (IsA flute groove) (STV 1.0 0.9091)) +(: cnet_isa_8e9fe28921 (IsA flute wineglass) (STV 1.0 0.9091)) +(: cnet_isa_acf302ba33 (IsA flute woodwind) (STV 1.0 0.9091)) +(: cnet_isa_9c082ded66 (IsA flutist musician) (STV 1.0 0.9091)) +(: cnet_isa_8aa063e4ea (IsA flutter cardiac_arrhythmia) (STV 1.0 0.9091)) +(: cnet_isa_95298a303b (IsA flutter_kick swimming_kick) (STV 1.0 0.9091)) +(: cnet_isa_d4f8201890 (IsA flux change) (STV 1.0 0.9091)) +(: cnet_isa_e6a7588d25 (IsA flux flow) (STV 1.0 0.9091)) +(: cnet_isa_8f2974e151 (IsA flux pathology) (STV 1.0 0.9091)) +(: cnet_isa_f8cfddac11 (IsA flux state) (STV 1.0 0.9091)) +(: cnet_isa_ac14efd9b7 (IsA flux chemical) (STV 1.0 0.9091)) +(: cnet_isa_edaeedd8ff (IsA flux rate) (STV 1.0 0.9091)) +(: cnet_isa_13ccebcfc6 (IsA flux_applicator applicator) (STV 1.0 0.9091)) +(: cnet_isa_7890776f7b (IsA flux_density concentration) (STV 1.0 0.9091)) +(: cnet_isa_c7811a0e3d (IsA flux_density_unit electromagnetic_unit) (STV 1.0 0.9091)) +(: cnet_isa_f9f94b1f92 (IsA flux_unit magnetic_flux) (STV 1.0 0.9091)) +(: cnet_isa_bf7e330d19 (IsA fluxmeter meter) (STV 1.0 0.9091)) +(: cnet_isa_1159c0978d (IsA fly dipterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_2a217ff1e8 (IsA fly fisherman_s_lure) (STV 1.0 0.9091)) +(: cnet_isa_087a73e16c (IsA fly opening) (STV 1.0 0.9091)) +(: cnet_isa_2ca0f60489 (IsA fly hit) (STV 1.0 0.9091)) +(: cnet_isa_50faf85f16 (IsA fly_agaric agaric) (STV 1.0 0.9091)) +(: cnet_isa_98053aa222 (IsA fly_ash ash) (STV 1.0 0.9091)) +(: cnet_isa_4353ea897e (IsA fly_by_night debtor) (STV 1.0 0.9091)) +(: cnet_isa_d02bba655e (IsA fly_casting casting) (STV 1.0 0.9091)) +(: cnet_isa_62d6602e29 (IsA fly_fishing angling) (STV 1.0 0.9091)) +(: cnet_isa_fb1ec0c95c (IsA fly_gallery platform) (STV 1.0 0.9091)) +(: cnet_isa_c88a2c1030 (IsA fly_in_ointment troublesomeness) (STV 1.0 0.9091)) +(: cnet_isa_9c36fab194 (IsA fly_orchid orchid) (STV 1.0 0.9091)) +(: cnet_isa_70131ed044 (IsA fly_poison liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_17f2ff2d91 (IsA fly_rod fishing_rod) (STV 1.0 0.9091)) +(: cnet_isa_4e5a5bb4c6 (IsA fly_tent tent) (STV 1.0 0.9091)) +(: cnet_isa_21baaf5371 (IsA flycatching_warbler new_world_warbler) (STV 1.0 0.9091)) +(: cnet_isa_e86ec1ca77 (IsA flying_boat seaplane) (STV 1.0 0.9091)) +(: cnet_isa_c81fadb8d7 (IsA flying_bridge bridge) (STV 1.0 0.9091)) +(: cnet_isa_f171d318cf (IsA flying_buttress buttress) (STV 1.0 0.9091)) +(: cnet_isa_e19fe7f3dd (IsA flying_carpet rug) (STV 1.0 0.9091)) +(: cnet_isa_d6b9e19838 (IsA flying_color success) (STV 1.0 0.9091)) +(: cnet_isa_e0bfdc5a75 (IsA flying_dutchman apparition) (STV 1.0 0.9091)) +(: cnet_isa_6471870dcc (IsA flying_fish teleost_fish) (STV 1.0 0.9091)) +(: cnet_isa_b9e5863b0d (IsA flying_fox fruit_bat) (STV 1.0 0.9091)) +(: cnet_isa_cb539539a6 (IsA flying_gecko gecko) (STV 1.0 0.9091)) +(: cnet_isa_2a757862cc (IsA flying_gurnard scorpaenoid) (STV 1.0 0.9091)) +(: cnet_isa_686efba44a (IsA flying_jib jib) (STV 1.0 0.9091)) +(: cnet_isa_8edd841f97 (IsA flying_lemur placental) (STV 1.0 0.9091)) +(: cnet_isa_b0d6bd39e6 (IsA flying_mare wrestling) (STV 1.0 0.9091)) +(: cnet_isa_e44829844b (IsA flying_mouse flying_phalanger) (STV 1.0 0.9091)) +(: cnet_isa_5ee92af837 (IsA flying_phalanger phalanger) (STV 1.0 0.9091)) +(: cnet_isa_2335b6bdc2 (IsA flying_school school) (STV 1.0 0.9091)) +(: cnet_isa_69275f500e (IsA flying_squad team) (STV 1.0 0.9091)) +(: cnet_isa_a705c4d392 (IsA flying_start racing_start) (STV 1.0 0.9091)) +(: cnet_isa_422784868d (IsA flying_start start) (STV 1.0 0.9091)) +(: cnet_isa_32763c9764 (IsA flying_visit visit) (STV 1.0 0.9091)) +(: cnet_isa_52bf5cde8f (IsA flyleaf leaf) (STV 1.0 0.9091)) +(: cnet_isa_47c507c2df (IsA flyover flight) (STV 1.0 0.9091)) +(: cnet_isa_92822a5511 (IsA flypaper paper) (STV 1.0 0.9091)) +(: cnet_isa_9f05c7d4dd (IsA flyspeck atom) (STV 1.0 0.9091)) +(: cnet_isa_8f03463f8f (IsA flytrap trap) (STV 1.0 0.9091)) +(: cnet_isa_4fc15709d6 (IsA flyweight boxer) (STV 1.0 0.9091)) +(: cnet_isa_b6064b267f (IsA flyweight wrestler) (STV 1.0 0.9091)) +(: cnet_isa_27661ff764 (IsA flywheel governor) (STV 1.0 0.9091)) +(: cnet_isa_f9ff5f2250 (IsA foal young_mammal) (STV 1.0 0.9091)) +(: cnet_isa_41e84497f9 (IsA foam bubble) (STV 1.0 0.9091)) +(: cnet_isa_c09ebde4c9 (IsA foam material) (STV 1.0 0.9091)) +(: cnet_isa_222de7bd0b (IsA foam_rubber foam) (STV 1.0 0.9091)) +(: cnet_isa_9c60ae27dd (IsA foam_rubber rubber) (STV 1.0 0.9091)) +(: cnet_isa_6a6493f9a6 (IsA foamflower herb) (STV 1.0 0.9091)) +(: cnet_isa_8b92f17bb0 (IsA foaminess gaseousness) (STV 1.0 0.9091)) +(: cnet_isa_d1281e682d (IsA fob adornment) (STV 1.0 0.9091)) +(: cnet_isa_6600a0df28 (IsA fob chain) (STV 1.0 0.9091)) +(: cnet_isa_35644bc657 (IsA fob vest_pocket) (STV 1.0 0.9091)) +(: cnet_isa_33d11726b1 (IsA focal_distance distance) (STV 1.0 0.9091)) +(: cnet_isa_0717567deb (IsA focal_infection infection) (STV 1.0 0.9091)) +(: cnet_isa_5fc9cba22f (IsA focal_ratio ratio) (STV 1.0 0.9091)) +(: cnet_isa_18578c792d (IsA focal_seizure seizure) (STV 1.0 0.9091)) +(: cnet_isa_9ac4bef98f (IsA focalization intensification) (STV 1.0 0.9091)) +(: cnet_isa_7b41bdde1b (IsA focalization pathogenesis) (STV 1.0 0.9091)) +(: cnet_isa_3ef0108956 (IsA focus clarity) (STV 1.0 0.9091)) +(: cnet_isa_878ddda952 (IsA focus distinctness) (STV 1.0 0.9091)) +(: cnet_isa_8cde25e814 (IsA focus concentration) (STV 1.0 0.9091)) +(: cnet_isa_e7b4cc6541 (IsA focus point) (STV 1.0 0.9091)) +(: cnet_isa_0895a34dbf (IsA fodder feed) (STV 1.0 0.9091)) +(: cnet_isa_db9ba5682a (IsA foe rival) (STV 1.0 0.9091)) +(: cnet_isa_0427bd8082 (IsA foeniculum rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7236f1dddb (IsA fog aerosol) (STV 1.0 0.9091)) +(: cnet_isa_ab43a82433 (IsA fog atmosphere) (STV 1.0 0.9091)) +(: cnet_isa_9be478355a (IsA fogbank fog) (STV 1.0 0.9091)) +(: cnet_isa_e17d543f4a (IsA foggy_bottom department_of_state) (STV 1.0 0.9091)) +(: cnet_isa_3c1c5e6a47 (IsA foghorn horn) (STV 1.0 0.9091)) +(: cnet_isa_4c4a06af81 (IsA foghorn signaling_device) (STV 1.0 0.9091)) +(: cnet_isa_b37f3076c0 (IsA foghorn alarm) (STV 1.0 0.9091)) +(: cnet_isa_b6e3f0abda (IsA foglamp headlight) (STV 1.0 0.9091)) +(: cnet_isa_fc94171dbf (IsA fohn wind) (STV 1.0 0.9091)) +(: cnet_isa_1958e1a415 (IsA foible part) (STV 1.0 0.9091)) +(: cnet_isa_53bee9acd5 (IsA foie_gra pate) (STV 1.0 0.9091)) +(: cnet_isa_625306b995 (IsA foil ikon) (STV 1.0 0.9091)) +(: cnet_isa_7be70632aa (IsA foil sheet_metal) (STV 1.0 0.9091)) +(: cnet_isa_e33f6a31f4 (IsA foil attention) (STV 1.0 0.9091)) +(: cnet_isa_16a8931762 (IsA foil fencing_sword) (STV 1.0 0.9091)) +(: cnet_isa_cfe2f71541 (IsA fold change_of_shape) (STV 1.0 0.9091)) +(: cnet_isa_f25d54a8a7 (IsA fold pen) (STV 1.0 0.9091)) +(: cnet_isa_3dfb05c551 (IsA fold structure) (STV 1.0 0.9091)) +(: cnet_isa_f15847a977 (IsA fold group) (STV 1.0 0.9091)) +(: cnet_isa_027d537399 (IsA fold angular_shape) (STV 1.0 0.9091)) +(: cnet_isa_94a00fea42 (IsA folder covering) (STV 1.0 0.9091)) +(: cnet_isa_51bb099dfe (IsA folderol drivel) (STV 1.0 0.9091)) +(: cnet_isa_23aed3a93c (IsA folding geological_process) (STV 1.0 0.9091)) +(: cnet_isa_ce21ce5297 (IsA folding_chair chair) (STV 1.0 0.9091)) +(: cnet_isa_ef4d270605 (IsA folding_door interior_door) (STV 1.0 0.9091)) +(: cnet_isa_825779e8d4 (IsA folding_saw saw) (STV 1.0 0.9091)) +(: cnet_isa_3f934a7de3 (IsA foldout page) (STV 1.0 0.9091)) +(: cnet_isa_fe81bcfcea (IsA foliation application) (STV 1.0 0.9091)) +(: cnet_isa_ef616cd941 (IsA foliation production) (STV 1.0 0.9091)) +(: cnet_isa_342b5ef681 (IsA foliation architectural_ornament) (STV 1.0 0.9091)) +(: cnet_isa_14b3fca9d4 (IsA foliation growth) (STV 1.0 0.9091)) +(: cnet_isa_9812349e38 (IsA foliation stratification) (STV 1.0 0.9091)) +(: cnet_isa_ec7c562e0d (IsA folie_deux mental_disorder) (STV 1.0 0.9091)) +(: cnet_isa_f951498b86 (IsA folio book) (STV 1.0 0.9091)) +(: cnet_isa_1b9c1214b4 (IsA folium geological_formation) (STV 1.0 0.9091)) +(: cnet_isa_2f9d5d9ff5 (IsA folk people) (STV 1.0 0.9091)) +(: cnet_isa_20e964c2cc (IsA folk_art genre) (STV 1.0 0.9091)) +(: cnet_isa_c262780530 (IsA folk_dancer dancer) (STV 1.0 0.9091)) +(: cnet_isa_09a542941d (IsA folk_dancing social_dancing) (STV 1.0 0.9091)) +(: cnet_isa_9706722cc2 (IsA folk_etymology etymology) (STV 1.0 0.9091)) +(: cnet_isa_360056cd9c (IsA folk_music popular_music) (STV 1.0 0.9091)) +(: cnet_isa_ad521d3d27 (IsA folk_poet folk_writer) (STV 1.0 0.9091)) +(: cnet_isa_4017f7b563 (IsA folk_singer singer) (STV 1.0 0.9091)) +(: cnet_isa_b28e73c04c (IsA folk_song folk_music) (STV 1.0 0.9091)) +(: cnet_isa_9273c9b190 (IsA folk_song song) (STV 1.0 0.9091)) +(: cnet_isa_2737ab5c2b (IsA folk_writer writer) (STV 1.0 0.9091)) +(: cnet_isa_09230b1174 (IsA folklore lore) (STV 1.0 0.9091)) +(: cnet_isa_4f33390688 (IsA folk kin) (STV 1.0 0.9091)) +(: cnet_isa_38ff6e10bf (IsA folktale narrative) (STV 1.0 0.9091)) +(: cnet_isa_41aca9660a (IsA follicle vesicle) (STV 1.0 0.9091)) +(: cnet_isa_50d7e52c48 (IsA follicle_stimulating_hormone gonadotropin) (STV 1.0 0.9091)) +(: cnet_isa_ef4d953c29 (IsA folliculitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_536b02bd8b (IsA folly revue) (STV 1.0 0.9091)) +(: cnet_isa_132691cde5 (IsA follow_on inning) (STV 1.0 0.9091)) +(: cnet_isa_4251ed6a52 (IsA follow_through completion) (STV 1.0 0.9091)) +(: cnet_isa_4c2e49a808 (IsA follow_up activity) (STV 1.0 0.9091)) +(: cnet_isa_8a8068c3a8 (IsA follow_up examination) (STV 1.0 0.9091)) +(: cnet_isa_c1f51bda1c (IsA follow_up work) (STV 1.0 0.9091)) +(: cnet_isa_493c587357 (IsA follower person) (STV 1.0 0.9091)) +(: cnet_isa_d3d092f66f (IsA follower traveler) (STV 1.0 0.9091)) +(: cnet_isa_b9cdedc683 (IsA following multitude) (STV 1.0 0.9091)) +(: cnet_isa_d2057a1d6b (IsA folly play) (STV 1.0 0.9091)) +(: cnet_isa_08ad7ab2dd (IsA folly trait) (STV 1.0 0.9091)) +(: cnet_isa_d3cc7b0ba6 (IsA folly stupidity) (STV 1.0 0.9091)) +(: cnet_isa_b01e070ed0 (IsA folsom_culture paleo_american_culture) (STV 1.0 0.9091)) +(: cnet_isa_ba9137cf42 (IsA fomentation treatment) (STV 1.0 0.9091)) +(: cnet_isa_e07f9cbd04 (IsA fomentation trigger) (STV 1.0 0.9091)) +(: cnet_isa_4768b4518f (IsA fomentation substance) (STV 1.0 0.9091)) +(: cnet_isa_432061fdd7 (IsA fome fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_bd56da5ab3 (IsA fomite object) (STV 1.0 0.9091)) +(: cnet_isa_f83320984c (IsA fomorian celtic_deity) (STV 1.0 0.9091)) +(: cnet_isa_2b8834ef3f (IsA fondant candy) (STV 1.0 0.9091)) +(: cnet_isa_96a237b394 (IsA fondler molester) (STV 1.0 0.9091)) +(: cnet_isa_633ad516b2 (IsA fondness liking) (STV 1.0 0.9091)) +(: cnet_isa_56b6da698c (IsA fondue dish) (STV 1.0 0.9091)) +(: cnet_isa_1962efe09e (IsA font type) (STV 1.0 0.9091)) +(: cnet_isa_0ff2f8fc55 (IsA font_cartridge font) (STV 1.0 0.9091)) +(: cnet_isa_1d93a9f1d2 (IsA fontanelle orifice) (STV 1.0 0.9091)) +(: cnet_isa_58f4129a58 (IsA food substance) (STV 1.0 0.9339)) +(: cnet_isa_42ce325724 (IsA food content) (STV 1.0 0.9091)) +(: cnet_isa_f5d44ea99d (IsA food solid) (STV 1.0 0.9091)) +(: cnet_isa_6a2fabf4f6 (IsA food_additive additive) (STV 1.0 0.9091)) +(: cnet_isa_1af10dabed (IsA food_allergy allergy) (STV 1.0 0.9091)) +(: cnet_isa_22edbb34a5 (IsA food_and_agriculture_organization united_nation_agency) (STV 1.0 0.9091)) +(: cnet_isa_c630cb7830 (IsA food_and_drug_administration agency) (STV 1.0 0.9091)) +(: cnet_isa_815fcffef4 (IsA food_bank bank) (STV 1.0 0.9091)) +(: cnet_isa_0ea07e6348 (IsA food_cache commissariat) (STV 1.0 0.9091)) +(: cnet_isa_e89909ca74 (IsA food_chain organic_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_dc13a1504f (IsA food_company company) (STV 1.0 0.9091)) +(: cnet_isa_29ab916d79 (IsA food_court court) (STV 1.0 0.9091)) +(: cnet_isa_440214477d (IsA food_faddist faddist) (STV 1.0 0.9091)) +(: cnet_isa_9030b8b605 (IsA food_fish fish) (STV 1.0 0.9091)) +(: cnet_isa_c9afb0e7bb (IsA food_hamper hamper) (STV 1.0 0.9091)) +(: cnet_isa_2ce2f96b8b (IsA food_manufacturer manufacturer) (STV 1.0 0.9091)) +(: cnet_isa_5baf782adb (IsA food_poisoning illness) (STV 1.0 0.9091)) +(: cnet_isa_49688a8fdc (IsA food_processor kitchen_appliance) (STV 1.0 0.9091)) +(: cnet_isa_664be66847 (IsA food_pyramid organic_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_58500561e0 (IsA food_stamp tender) (STV 1.0 0.9091)) +(: cnet_isa_7e6cfb3c26 (IsA food_store place_to_buy_food) (STV 1.0 0.9091)) +(: cnet_isa_3eeb3d0335 (IsA food_web organic_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_6709cc5627 (IsA foodstuff food) (STV 1.0 0.9091)) +(: cnet_isa_dae4b5b63c (IsA fool_s_errand mission) (STV 1.0 0.9091)) +(: cnet_isa_19e15472c7 (IsA fool_s_paradise wellbeing) (STV 1.0 0.9091)) +(: cnet_isa_5c548893d1 (IsA fool_s_parsley poisonous_plant) (STV 1.0 0.9091)) +(: cnet_isa_0be2fa10f4 (IsA fool simpleton) (STV 1.0 0.9091)) +(: cnet_isa_964ef8004d (IsA foolscap sheet) (STV 1.0 0.9091)) +(: cnet_isa_b670c2444e (IsA foot measurement) (STV 1.0 0.9339)) +(: cnet_isa_ca828684c8 (IsA foot unit_of_measurement) (STV 1.0 0.9454)) +(: cnet_isa_007b582a3c (IsA foot walk) (STV 1.0 0.9091)) +(: cnet_isa_26b8ceef8e (IsA foot organ) (STV 1.0 0.9091)) +(: cnet_isa_706fd2de88 (IsA foot support) (STV 1.0 0.9091)) +(: cnet_isa_ad73509478 (IsA foot vertebrate_foot) (STV 1.0 0.9091)) +(: cnet_isa_2cc96d9ccb (IsA foot bottom) (STV 1.0 0.9091)) +(: cnet_isa_5c70ed8835 (IsA foot secret_agent) (STV 1.0 0.9091)) +(: cnet_isa_24712a0904 (IsA foot linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_d45e364b61 (IsA foot_and_mouth_disease animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_e976d7aceb (IsA foot_brake hydraulic_brake) (STV 1.0 0.9091)) +(: cnet_isa_b91d060295 (IsA foot_lambert luminance_unit) (STV 1.0 0.9091)) +(: cnet_isa_631b6a6522 (IsA foot_pound work_unit) (STV 1.0 0.9091)) +(: cnet_isa_b9326149bf (IsA foot_poundal work_unit) (STV 1.0 0.9091)) +(: cnet_isa_7ad140be49 (IsA foot_rot animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_8589ea78bd (IsA foot_rot plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_81c8a10989 (IsA foot_rule rule) (STV 1.0 0.9091)) +(: cnet_isa_e579bd8508 (IsA foot_ton work_unit) (STV 1.0 0.9091)) +(: cnet_isa_2517f7b288 (IsA footage film) (STV 1.0 0.9091)) +(: cnet_isa_4105799b41 (IsA footage rate) (STV 1.0 0.9091)) +(: cnet_isa_ad4559a64f (IsA football game) (STV 1.0 0.9786)) +(: cnet_isa_426c83251e (IsA football human_recreational_activity) (STV 1.0 0.9091)) +(: cnet_isa_2c60900999 (IsA football one_type_of_game) (STV 1.0 0.9091)) +(: cnet_isa_80dd560094 (IsA football physical_activity) (STV 1.0 0.9454)) +(: cnet_isa_7b5fd03459 (IsA football sport) (STV 1.0 0.9756)) +(: cnet_isa_216a58b927 (IsA football sport_people_play) (STV 1.0 0.9339)) +(: cnet_isa_76c241fbbb (IsA football contact_sport) (STV 1.0 0.9091)) +(: cnet_isa_f1b2ca80d3 (IsA football field_game) (STV 1.0 0.9091)) +(: cnet_isa_dbf64c6960 (IsA football ball) (STV 1.0 0.9091)) +(: cnet_isa_106c78c112 (IsA football_and_basketball both_sport) (STV 1.0 0.9339)) +(: cnet_isa_07e99eb755 (IsA football_coach coach) (STV 1.0 0.9091)) +(: cnet_isa_405d543de2 (IsA football_field one_hundred_yard_long) (STV 1.0 0.9454)) +(: cnet_isa_fe14b5a178 (IsA football_field playing_field) (STV 1.0 0.9091)) +(: cnet_isa_6fbf93fef2 (IsA football_helmet helmet) (STV 1.0 0.9091)) +(: cnet_isa_cf2454a890 (IsA football_hero football_player) (STV 1.0 0.9091)) +(: cnet_isa_7a94be1d6d (IsA football_league league) (STV 1.0 0.9091)) +(: cnet_isa_bb3ff71391 (IsA football_official official) (STV 1.0 0.9091)) +(: cnet_isa_beb6c2c693 (IsA football_play play) (STV 1.0 0.9091)) +(: cnet_isa_ba51f0445d (IsA football_player athlete) (STV 1.0 0.9091)) +(: cnet_isa_45690bf403 (IsA football_player player) (STV 1.0 0.9091)) +(: cnet_isa_26c935cc8f (IsA football_score score) (STV 1.0 0.9091)) +(: cnet_isa_f4f31a9ddb (IsA football_season season) (STV 1.0 0.9091)) +(: cnet_isa_2713cb207a (IsA football_stadium athletic_facility) (STV 1.0 0.9091)) +(: cnet_isa_d5cdd8ee9d (IsA football_stadium stadium) (STV 1.0 0.9091)) +(: cnet_isa_33ae06387c (IsA football_team team) (STV 1.0 0.9091)) +(: cnet_isa_58dc5621ec (IsA footbath bathtub) (STV 1.0 0.9091)) +(: cnet_isa_f29966feaa (IsA footboard panel) (STV 1.0 0.9091)) +(: cnet_isa_094794d64e (IsA footboard platform) (STV 1.0 0.9091)) +(: cnet_isa_f6514fc0c9 (IsA footbridge bridge) (STV 1.0 0.9091)) +(: cnet_isa_c53533d6fa (IsA footcandle illumination_unit) (STV 1.0 0.9091)) +(: cnet_isa_3b706570bd (IsA footedness asymmetry) (STV 1.0 0.9091)) +(: cnet_isa_775a2a5c60 (IsA footer linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_bc8a59bff8 (IsA footfall sound) (STV 1.0 0.9091)) +(: cnet_isa_38efc12295 (IsA footfault fault) (STV 1.0 0.9091)) +(: cnet_isa_354de24850 (IsA foothill hill) (STV 1.0 0.9091)) +(: cnet_isa_8fdd0a8d8f (IsA foothold support) (STV 1.0 0.9091)) +(: cnet_isa_2f0d472cdd (IsA footing foundation) (STV 1.0 0.9091)) +(: cnet_isa_de7c4ebd14 (IsA footing status) (STV 1.0 0.9091)) +(: cnet_isa_22ce612662 (IsA footlight theater_light) (STV 1.0 0.9091)) +(: cnet_isa_7a05008926 (IsA footlocker trunk) (STV 1.0 0.9091)) +(: cnet_isa_0341e7cac9 (IsA footman manservant) (STV 1.0 0.9091)) +(: cnet_isa_f6de4b8f09 (IsA footnote note) (STV 1.0 0.9091)) +(: cnet_isa_0735d1a74a (IsA footpad highjacker) (STV 1.0 0.9091)) +(: cnet_isa_e521f586a2 (IsA footplate platform) (STV 1.0 0.9091)) +(: cnet_isa_3cd65401ab (IsA footprint area) (STV 1.0 0.9091)) +(: cnet_isa_1ddfffa178 (IsA footprint mark) (STV 1.0 0.9091)) +(: cnet_isa_0c5bacae55 (IsA footprint trace) (STV 1.0 0.9091)) +(: cnet_isa_f1449eade8 (IsA footprint_evidence evidence) (STV 1.0 0.9091)) +(: cnet_isa_df91b7bf70 (IsA footprint_evidence footprint) (STV 1.0 0.9091)) +(: cnet_isa_569eb35aa5 (IsA footrace race) (STV 1.0 0.9091)) +(: cnet_isa_2cf62901d9 (IsA footstep step) (STV 1.0 0.9091)) +(: cnet_isa_4b440868a1 (IsA footstep indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_98085baa92 (IsA footstep_of_spring sanicle) (STV 1.0 0.9091)) +(: cnet_isa_eb91b2f777 (IsA footstool stool) (STV 1.0 0.9091)) +(: cnet_isa_1dd8d71d2d (IsA footwall wall) (STV 1.0 0.9091)) +(: cnet_isa_6ac379f00b (IsA footwear clothing) (STV 1.0 0.9091)) +(: cnet_isa_077065d4dc (IsA footwear covering) (STV 1.0 0.9091)) +(: cnet_isa_ba507eb128 (IsA footwork maneuver) (STV 1.0 0.9091)) +(: cnet_isa_7a2d72ad72 (IsA foppishness manner) (STV 1.0 0.9091)) +(: cnet_isa_eccc213965 (IsA forager hunter) (STV 1.0 0.9091)) +(: cnet_isa_8a14af2a83 (IsA foraging search) (STV 1.0 0.9091)) +(: cnet_isa_70d8fde51c (IsA foram rhizopod) (STV 1.0 0.9091)) +(: cnet_isa_aff89e9519 (IsA foramen opening) (STV 1.0 0.9091)) +(: cnet_isa_466f1389df (IsA foramen_magnum foramen) (STV 1.0 0.9091)) +(: cnet_isa_6b3adfe9c6 (IsA foraminifera animal_order) (STV 1.0 0.9091)) +(: cnet_isa_d51931399a (IsA foray attempt) (STV 1.0 0.9091)) +(: cnet_isa_da40e26036 (IsA foray penetration) (STV 1.0 0.9091)) +(: cnet_isa_7ec217f7e6 (IsA forbearance delay) (STV 1.0 0.9091)) +(: cnet_isa_97261d876a (IsA forbidden_fruit temptation) (STV 1.0 0.9091)) +(: cnet_isa_80004feb8e (IsA force influence) (STV 1.0 0.9091)) +(: cnet_isa_82d4e1ca96 (IsA force intensity) (STV 1.0 0.9091)) +(: cnet_isa_83280b4f8d (IsA force organization) (STV 1.0 0.9091)) +(: cnet_isa_121a2bca2f (IsA force social_group) (STV 1.0 0.9091)) +(: cnet_isa_0bed82e3bd (IsA force physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_3d44aa088a (IsA force_play putout) (STV 1.0 0.9091)) +(: cnet_isa_6c804f4689 (IsA force_pump pump) (STV 1.0 0.9091)) +(: cnet_isa_a07ede26cf (IsA force_unit unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_9f3ed4459c (IsA forced_feeding feeding) (STV 1.0 0.9091)) +(: cnet_isa_fbe31450e8 (IsA forced_landing aircraft_landing) (STV 1.0 0.9091)) +(: cnet_isa_fc8549b377 (IsA forcemeat stuffing) (STV 1.0 0.9091)) +(: cnet_isa_7f268215cf (IsA forcep extractor) (STV 1.0 0.9091)) +(: cnet_isa_88dd39fa74 (IsA forcep_delivery delivery) (STV 1.0 0.9091)) +(: cnet_isa_986b363f7a (IsA ford brand_of_car) (STV 1.0 0.9524)) +(: cnet_isa_ac73dfff4e (IsA ford company) (STV 1.0 0.9339)) +(: cnet_isa_56caab044d (IsA ford crossing) (STV 1.0 0.9091)) +(: cnet_isa_aceb957897 (IsA ford body_of_water) (STV 1.0 0.9091)) +(: cnet_isa_ac91c9738f (IsA fordhook lima_bean) (STV 1.0 0.9091)) +(: cnet_isa_88408543ca (IsA fore_and_aft_rig rig) (STV 1.0 0.9091)) +(: cnet_isa_12102ae28e (IsA fore_and_aft_sail sail) (STV 1.0 0.9091)) +(: cnet_isa_d1384d4704 (IsA fore_and_after sailing_vessel) (STV 1.0 0.9091)) +(: cnet_isa_8485d839dc (IsA fore_edge part) (STV 1.0 0.9091)) +(: cnet_isa_57eebdf6eb (IsA fore_plane plane) (STV 1.0 0.9091)) +(: cnet_isa_8bbf12dda7 (IsA fore_topmast topmast) (STV 1.0 0.9091)) +(: cnet_isa_20e1fb001e (IsA fore_topsail topsail) (STV 1.0 0.9091)) +(: cnet_isa_f774f4a482 (IsA forearm limb) (STV 1.0 0.9091)) +(: cnet_isa_449e37817f (IsA forebear ancestor) (STV 1.0 0.9091)) +(: cnet_isa_71eb35fdb7 (IsA foreboding omen) (STV 1.0 0.9091)) +(: cnet_isa_1946f089fd (IsA foreboding apprehension) (STV 1.0 0.9091)) +(: cnet_isa_cd4649bbed (IsA forebrain neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_fdb265e025 (IsA forecaster visionary) (STV 1.0 0.9091)) +(: cnet_isa_364a911b29 (IsA forecastle living_quarter) (STV 1.0 0.9091)) +(: cnet_isa_23e7632f6a (IsA foreclosure proceeding) (STV 1.0 0.9091)) +(: cnet_isa_fed83430d9 (IsA forecourt court) (STV 1.0 0.9091)) +(: cnet_isa_a4ee9d9650 (IsA foredeck deck) (STV 1.0 0.9091)) +(: cnet_isa_e629d0bf87 (IsA forefather ancestor) (STV 1.0 0.9091)) +(: cnet_isa_9be5ebba03 (IsA forefather predecessor) (STV 1.0 0.9091)) +(: cnet_isa_92e2c855e6 (IsA forefoot animal_foot) (STV 1.0 0.9091)) +(: cnet_isa_ea69a00bed (IsA forefront front) (STV 1.0 0.9091)) +(: cnet_isa_143b9449f5 (IsA foregone_conclusion ending) (STV 1.0 0.9091)) +(: cnet_isa_69963f5122 (IsA foreground view) (STV 1.0 0.9091)) +(: cnet_isa_14c8301572 (IsA foreground window) (STV 1.0 0.9091)) +(: cnet_isa_5ce28a9da8 (IsA foreground_processing priority_processing) (STV 1.0 0.9091)) +(: cnet_isa_f5029063b6 (IsA forehand return) (STV 1.0 0.9091)) +(: cnet_isa_944271df0c (IsA forehand_drive drive) (STV 1.0 0.9091)) +(: cnet_isa_4dc1cab6da (IsA foreign_agent spy) (STV 1.0 0.9091)) +(: cnet_isa_bfdff14db2 (IsA foreign_aid financial_aid) (STV 1.0 0.9091)) +(: cnet_isa_5bc5586eb5 (IsA foreign_bill draft) (STV 1.0 0.9091)) +(: cnet_isa_02f33a0d65 (IsA foreign_correspondent correspondent) (STV 1.0 0.9091)) +(: cnet_isa_09b30d5f04 (IsA foreign_country state) (STV 1.0 0.9091)) +(: cnet_isa_a32092d19b (IsA foreign_direct_investment investing) (STV 1.0 0.9091)) +(: cnet_isa_178ebba95a (IsA foreign_direct_investment joint_venture) (STV 1.0 0.9091)) +(: cnet_isa_e3ccc94bbb (IsA foreign_exchange exchange) (STV 1.0 0.9091)) +(: cnet_isa_26dc17eb5b (IsA foreign_intelligence_service international_intelligence_agency) (STV 1.0 0.9091)) +(: cnet_isa_347c768f34 (IsA foreign_intelligence_surveillance_act legislative_act) (STV 1.0 0.9091)) +(: cnet_isa_b3a9ffec09 (IsA foreign_intelligence_surveillance_court court) (STV 1.0 0.9091)) +(: cnet_isa_48486cd4fa (IsA foreign_legion legion) (STV 1.0 0.9091)) +(: cnet_isa_16694a0687 (IsA foreign_minister minister) (STV 1.0 0.9091)) +(: cnet_isa_d9fbab470a (IsA foreign_office ministry) (STV 1.0 0.9091)) +(: cnet_isa_4bf650857d (IsA foreign_policy policy) (STV 1.0 0.9091)) +(: cnet_isa_05b9b772b0 (IsA foreign_service agency) (STV 1.0 0.9091)) +(: cnet_isa_fa803d8d83 (IsA foreigner stranger) (STV 1.0 0.9091)) +(: cnet_isa_6c44d4684e (IsA foreigner traveler) (STV 1.0 0.9091)) +(: cnet_isa_bfc1030b5c (IsA foreignness quality) (STV 1.0 0.9091)) +(: cnet_isa_3f2123a326 (IsA foreland land) (STV 1.0 0.9091)) +(: cnet_isa_ce4e626347 (IsA foreleg forelimb) (STV 1.0 0.9091)) +(: cnet_isa_e582c807f4 (IsA forelimb limb) (STV 1.0 0.9091)) +(: cnet_isa_2e59a4d55e (IsA forelock hair) (STV 1.0 0.9091)) +(: cnet_isa_6d92bbe2a3 (IsA forelock lock) (STV 1.0 0.9091)) +(: cnet_isa_a2bb9ea3a0 (IsA foreman foreperson) (STV 1.0 0.9091)) +(: cnet_isa_06dabebc9a (IsA foreman supervisor) (STV 1.0 0.9091)) +(: cnet_isa_f38c070c00 (IsA foremanship position) (STV 1.0 0.9091)) +(: cnet_isa_5865a330d0 (IsA foremast mast) (STV 1.0 0.9091)) +(: cnet_isa_c23ea664e8 (IsA foremother ancestor) (STV 1.0 0.9091)) +(: cnet_isa_0a8cf6a128 (IsA forensic_medicine medicine) (STV 1.0 0.9091)) +(: cnet_isa_3a22c0130e (IsA forensic police_work) (STV 1.0 0.9091)) +(: cnet_isa_d37ca86573 (IsA forepaw paw) (STV 1.0 0.9091)) +(: cnet_isa_38036e075f (IsA foreperson juror) (STV 1.0 0.9091)) +(: cnet_isa_0706130db5 (IsA foreplay sexual_activity) (STV 1.0 0.9091)) +(: cnet_isa_7a058c7d9c (IsA forequarter cut) (STV 1.0 0.9091)) +(: cnet_isa_28f6936f09 (IsA foresail sail) (STV 1.0 0.9091)) +(: cnet_isa_0fb17150bc (IsA foreshank shank) (STV 1.0 0.9091)) +(: cnet_isa_bc1a0ce300 (IsA foreshock tremor) (STV 1.0 0.9091)) +(: cnet_isa_46a91d206c (IsA foreshore geological_formation) (STV 1.0 0.9091)) +(: cnet_isa_819d5c8567 (IsA foresight providence) (STV 1.0 0.9091)) +(: cnet_isa_91a35e6ff0 (IsA forest group_of_tree) (STV 1.0 0.9091)) +(: cnet_isa_fd3c5196ad (IsA forest natural_growth_area) (STV 1.0 0.9339)) +(: cnet_isa_ed8c8c98b3 (IsA forest vegetation) (STV 1.0 0.9091)) +(: cnet_isa_0fc977e0e0 (IsA forest biome) (STV 1.0 0.9091)) +(: cnet_isa_707fd3ca07 (IsA forest land) (STV 1.0 0.9091)) +(: cnet_isa_54cf2d0583 (IsA forest_fire fire) (STV 1.0 0.9091)) +(: cnet_isa_79fc9f50ed (IsA forest_goat bovid) (STV 1.0 0.9091)) +(: cnet_isa_f351eae3c3 (IsA forest_red_gum flooded_gum) (STV 1.0 0.9091)) +(: cnet_isa_e29776df45 (IsA forest_tent_caterpillar tent_caterpillar) (STV 1.0 0.9091)) +(: cnet_isa_7d4847ac07 (IsA forestay stay) (STV 1.0 0.9091)) +(: cnet_isa_8edc9bd954 (IsA forester farmer) (STV 1.0 0.9091)) +(: cnet_isa_c9cd19ff32 (IsA forestiera shrub) (STV 1.0 0.9091)) +(: cnet_isa_bdb67c0dfc (IsA forestry biology) (STV 1.0 0.9091)) +(: cnet_isa_81ca29fbf1 (IsA foretaste expectation) (STV 1.0 0.9091)) +(: cnet_isa_879a673c54 (IsA foretop platform) (STV 1.0 0.9091)) +(: cnet_isa_36b0f53c26 (IsA forewarning warning) (STV 1.0 0.9091)) +(: cnet_isa_00db1b49a9 (IsA forewing wing) (STV 1.0 0.9091)) +(: cnet_isa_c4ec43dd30 (IsA forewoman foreperson) (STV 1.0 0.9091)) +(: cnet_isa_b912c53957 (IsA forewoman supervisor) (STV 1.0 0.9091)) +(: cnet_isa_e4ce41e6ae (IsA foreword introduction) (STV 1.0 0.9091)) +(: cnet_isa_e83f102651 (IsA forfeit act) (STV 1.0 0.9091)) +(: cnet_isa_f7d2cdb895 (IsA forfeit loss) (STV 1.0 0.9091)) +(: cnet_isa_ec53878a0e (IsA forfeit penalty) (STV 1.0 0.9091)) +(: cnet_isa_e89936fb84 (IsA forficula arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_17319dafaf (IsA forficulidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_e692f08e94 (IsA forge furnace) (STV 1.0 0.9091)) +(: cnet_isa_1df1d89e90 (IsA forge workplace) (STV 1.0 0.9091)) +(: cnet_isa_e282c4cd94 (IsA forger deceiver) (STV 1.0 0.9091)) +(: cnet_isa_383629884d (IsA forger smith) (STV 1.0 0.9091)) +(: cnet_isa_7c8f8dfa16 (IsA forgery crime) (STV 1.0 0.9091)) +(: cnet_isa_1b74e9c343 (IsA forgery falsification) (STV 1.0 0.9091)) +(: cnet_isa_8d37e7d3c4 (IsA forget_me_not herb) (STV 1.0 0.9091)) +(: cnet_isa_5c94c75f9b (IsA forgetfulness amnesia) (STV 1.0 0.9091)) +(: cnet_isa_75eb02f327 (IsA forgetfulness unknowingness) (STV 1.0 0.9091)) +(: cnet_isa_382a134f45 (IsA forging formation) (STV 1.0 0.9091)) +(: cnet_isa_a77d498a85 (IsA forgiveness kindness) (STV 1.0 0.9091)) +(: cnet_isa_8930ba643a (IsA forgiveness mercifulness) (STV 1.0 0.9091)) +(: cnet_isa_b814dcbecc (IsA forgivingness mercifulness) (STV 1.0 0.9091)) +(: cnet_isa_4bd1347f17 (IsA forint hungarian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_69eb01fe02 (IsA fork eating_utensil) (STV 1.0 0.9091)) +(: cnet_isa_960c634607 (IsA fork cutlery) (STV 1.0 0.9091)) +(: cnet_isa_0b77df77ea (IsA fork tool) (STV 1.0 0.9091)) +(: cnet_isa_b9863189e0 (IsA forked_lightning lightning) (STV 1.0 0.9091)) +(: cnet_isa_1da4c750d1 (IsA forklift self_propelled_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_82bc1e1569 (IsA forlorn_hope enterprise) (STV 1.0 0.9091)) +(: cnet_isa_2af2a3705f (IsA forlornness sadness) (STV 1.0 0.9091)) +(: cnet_isa_5f296485c9 (IsA form mold) (STV 1.0 0.9091)) +(: cnet_isa_f658774bc1 (IsA form ability) (STV 1.0 0.9091)) +(: cnet_isa_15f97e831c (IsA form appearance) (STV 1.0 0.9091)) +(: cnet_isa_b9b4d2625f (IsA form manner) (STV 1.0 0.9091)) +(: cnet_isa_ab68846388 (IsA form taxonomic_group) (STV 1.0 0.9091)) +(: cnet_isa_f0954d68d0 (IsA form structure) (STV 1.0 0.9091)) +(: cnet_isa_54c30d9d32 (IsA form document) (STV 1.0 0.9091)) +(: cnet_isa_4b95dda5a3 (IsA form writing_style) (STV 1.0 0.9091)) +(: cnet_isa_b1c146b296 (IsA form word) (STV 1.0 0.9091)) +(: cnet_isa_530cdfbbb1 (IsA form_division division) (STV 1.0 0.9091)) +(: cnet_isa_4d86e3021b (IsA form_family family) (STV 1.0 0.9091)) +(: cnet_isa_ccfdf04a9e (IsA form_genus genus) (STV 1.0 0.9091)) +(: cnet_isa_85b8615d15 (IsA form_letter letter) (STV 1.0 0.9091)) +(: cnet_isa_a59a880212 (IsA formal_garden garden) (STV 1.0 0.9091)) +(: cnet_isa_b7a44f0d08 (IsA formal_logic logic) (STV 1.0 0.9524)) +(: cnet_isa_32037f49f6 (IsA formal_semantic semantic) (STV 1.0 0.9091)) +(: cnet_isa_040468c1c1 (IsA formaldehyde aldehyde) (STV 1.0 0.9091)) +(: cnet_isa_da2918b64b (IsA formaldehyde gas) (STV 1.0 0.9091)) +(: cnet_isa_99246f3dc0 (IsA formalin solution) (STV 1.0 0.9091)) +(: cnet_isa_0d004058c5 (IsA formalism practice) (STV 1.0 0.9091)) +(: cnet_isa_4180d4abe7 (IsA formalism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_d3fafa9fef (IsA formalism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_2f56ebe13d (IsA formality conformity) (STV 1.0 0.9091)) +(: cnet_isa_cfc0374328 (IsA formality manner) (STV 1.0 0.9091)) +(: cnet_isa_c5b126ffe8 (IsA formality ceremony) (STV 1.0 0.9091)) +(: cnet_isa_cdee56023a (IsA formalization systematization) (STV 1.0 0.9091)) +(: cnet_isa_5c03bf88a7 (IsA formalwear attire) (STV 1.0 0.9091)) +(: cnet_isa_2ef0b2d7ce (IsA format appearance) (STV 1.0 0.9091)) +(: cnet_isa_60e732b742 (IsA format information) (STV 1.0 0.9091)) +(: cnet_isa_31181fee34 (IsA formation creating_by_mental_act) (STV 1.0 0.9091)) +(: cnet_isa_3f3909ea00 (IsA formation fabrication) (STV 1.0 0.9091)) +(: cnet_isa_c4145d63b8 (IsA formation placement) (STV 1.0 0.9091)) +(: cnet_isa_7ef8cd01b2 (IsA formation arrangement) (STV 1.0 0.9091)) +(: cnet_isa_cf35102dc6 (IsA formation natural_process) (STV 1.0 0.9091)) +(: cnet_isa_7e02971705 (IsA formative language_unit) (STV 1.0 0.9091)) +(: cnet_isa_05a463d2a1 (IsA formatted_capacity capacity) (STV 1.0 0.9091)) +(: cnet_isa_fd746c36d8 (IsA former first) (STV 1.0 0.9091)) +(: cnet_isa_2deb3e8b5c (IsA formic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_7fb8b51340 (IsA formica arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_a8c3016a6d (IsA formica_fusca slave_ant) (STV 1.0 0.9091)) +(: cnet_isa_da99af7467 (IsA formicariidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_34902b2b85 (IsA formicarius bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_604ec8f33c (IsA formication paresthesia) (STV 1.0 0.9091)) +(: cnet_isa_5bfa9eb2e9 (IsA formicidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_0e11be7f09 (IsA formidability difficulty) (STV 1.0 0.9091)) +(: cnet_isa_cdb8fc5c7e (IsA formosan austronesian) (STV 1.0 0.9091)) +(: cnet_isa_23b15d0b21 (IsA formula statement) (STV 1.0 0.9091)) +(: cnet_isa_10440e7a69 (IsA formula milk) (STV 1.0 0.9091)) +(: cnet_isa_eb911f232e (IsA formula mathematical_statement) (STV 1.0 0.9091)) +(: cnet_isa_4d3cdd2d25 (IsA formulary book) (STV 1.0 0.9091)) +(: cnet_isa_4021b36984 (IsA formulation expressive_style) (STV 1.0 0.9091)) +(: cnet_isa_917c034dea (IsA formulation compound) (STV 1.0 0.9091)) +(: cnet_isa_a7c95331f5 (IsA fornication extramarital_sex) (STV 1.0 0.9091)) +(: cnet_isa_18ab201d37 (IsA fornix body_part) (STV 1.0 0.9091)) +(: cnet_isa_e39917e0b4 (IsA fornix fiber_bundle) (STV 1.0 0.9091)) +(: cnet_isa_d7375c3115 (IsA forsaking renunciation) (STV 1.0 0.9091)) +(: cnet_isa_ac1ed9d5a2 (IsA forsythia shrub) (STV 1.0 0.9091)) +(: cnet_isa_8f0265cdec (IsA forte part) (STV 1.0 0.9091)) +(: cnet_isa_002ac8cdd2 (IsA forte asset) (STV 1.0 0.9091)) +(: cnet_isa_a26d954d2f (IsA forte passage) (STV 1.0 0.9091)) +(: cnet_isa_99ebf99c28 (IsA forty decade) (STV 1.0 0.9091)) +(: cnet_isa_f46dbe38ac (IsA forty time_of_life) (STV 1.0 0.9091)) +(: cnet_isa_cb02dcfe50 (IsA fortieth rank) (STV 1.0 0.9091)) +(: cnet_isa_98a2c6f256 (IsA fortification enrichment) (STV 1.0 0.9091)) +(: cnet_isa_dd87b129d1 (IsA fortification defensive_structure) (STV 1.0 0.9091)) +(: cnet_isa_76a6fa1f17 (IsA fortification art) (STV 1.0 0.9091)) +(: cnet_isa_7e3dc8d558 (IsA fortified_wine wine) (STV 1.0 0.9091)) +(: cnet_isa_17250a1426 (IsA fortissimo passage) (STV 1.0 0.9091)) +(: cnet_isa_3f55438954 (IsA fortitude courage) (STV 1.0 0.9091)) +(: cnet_isa_e71854b569 (IsA fortitude natural_virtue) (STV 1.0 0.9091)) +(: cnet_isa_bb8a45320b (IsA fortnight time_period) (STV 1.0 0.9091)) +(: cnet_isa_3284b34183 (IsA fortran programming_language) (STV 1.0 0.9339)) +(: cnet_isa_b41a6d10b4 (IsA fortran algebraic_language) (STV 1.0 0.9091)) +(: cnet_isa_c97b195dd4 (IsA fortran_compiler compiler) (STV 1.0 0.9091)) +(: cnet_isa_96bc2c332b (IsA fortran_program program) (STV 1.0 0.9091)) +(: cnet_isa_5026a589d6 (IsA fortress defensive_structure) (STV 1.0 0.9091)) +(: cnet_isa_6d013f47bc (IsA fortuitousness uncertainty) (STV 1.0 0.9091)) +(: cnet_isa_8eb56a95d2 (IsA fortune lot_of_money) (STV 1.0 0.9339)) +(: cnet_isa_f6b7851d24 (IsA fortune prediction_about_future) (STV 1.0 0.9091)) +(: cnet_isa_baffe0bb5c (IsA fortune treasure) (STV 1.0 0.9091)) +(: cnet_isa_092751f88e (IsA fortune condition) (STV 1.0 0.9091)) +(: cnet_isa_05263d50a7 (IsA fortune_cookie cookie) (STV 1.0 0.9091)) +(: cnet_isa_1b47a6ea38 (IsA fortune_hunter deceiver) (STV 1.0 0.9091)) +(: cnet_isa_fed0ba3983 (IsA fortunella rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3a5f4aef7d (IsA fortuneteller forecaster) (STV 1.0 0.9091)) +(: cnet_isa_44e5b0eb51 (IsA fortunetelling prediction) (STV 1.0 0.9091)) +(: cnet_isa_a21af377f9 (IsA forty large_integer) (STV 1.0 0.9091)) +(: cnet_isa_05fe20f7a6 (IsA forty_five pistol) (STV 1.0 0.9091)) +(: cnet_isa_8184563f11 (IsA forty_niner gold_miner) (STV 1.0 0.9091)) +(: cnet_isa_212824c0e9 (IsA forum facility) (STV 1.0 0.9091)) +(: cnet_isa_271d984c6d (IsA forum meeting) (STV 1.0 0.9091)) +(: cnet_isa_efb9cd5f5c (IsA forward position) (STV 1.0 0.9091)) +(: cnet_isa_da7eef67b7 (IsA forward basketball_player) (STV 1.0 0.9091)) +(: cnet_isa_c97420a4dc (IsA forward_pass pass) (STV 1.0 0.9091)) +(: cnet_isa_d4bb4b71ac (IsA forwarding advancement) (STV 1.0 0.9091)) +(: cnet_isa_aa9a591816 (IsA forwarding transmission) (STV 1.0 0.9091)) +(: cnet_isa_aee7caaa47 (IsA forwardness earliness) (STV 1.0 0.9091)) +(: cnet_isa_89aa0c6139 (IsA foryml acyl) (STV 1.0 0.9091)) +(: cnet_isa_4853aac39a (IsA fosbury_flop high_jump) (STV 1.0 0.9091)) +(: cnet_isa_96a7b99e2e (IsA fossa mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_6234e2af5b (IsA fossa viverrine) (STV 1.0 0.9091)) +(: cnet_isa_839a217d86 (IsA fossil remain) (STV 1.0 0.9091)) +(: cnet_isa_8cfacd0b36 (IsA fossil_fuel fuel) (STV 1.0 0.9091)) +(: cnet_isa_59c7d92541 (IsA fossilization passage) (STV 1.0 0.9091)) +(: cnet_isa_d858196c06 (IsA fossilization natural_process) (STV 1.0 0.9091)) +(: cnet_isa_cca21d92bc (IsA fossorial_foot animal_foot) (STV 1.0 0.9091)) +(: cnet_isa_e05e29e448 (IsA fossorial_mammal mammal) (STV 1.0 0.9091)) +(: cnet_isa_672e0e7943 (IsA foster_brother male) (STV 1.0 0.9091)) +(: cnet_isa_f04cdb2674 (IsA foster_care care) (STV 1.0 0.9091)) +(: cnet_isa_81ba9154db (IsA foster_child child) (STV 1.0 0.9091)) +(: cnet_isa_585d59943c (IsA foster_daughter foster_child) (STV 1.0 0.9091)) +(: cnet_isa_64fa932f11 (IsA foster_family family) (STV 1.0 0.9091)) +(: cnet_isa_dcbf4af4db (IsA foster_father father_figure) (STV 1.0 0.9091)) +(: cnet_isa_403a4709df (IsA foster_father foster_parent) (STV 1.0 0.9091)) +(: cnet_isa_283814d55b (IsA foster_home family) (STV 1.0 0.9091)) +(: cnet_isa_87c32cf2be (IsA foster_mother foster_parent) (STV 1.0 0.9091)) +(: cnet_isa_db5de32fa9 (IsA foster_nurse nurse) (STV 1.0 0.9091)) +(: cnet_isa_ec230bd12d (IsA foster_parent defender) (STV 1.0 0.9091)) +(: cnet_isa_0a5eeb96d6 (IsA foster_sister female) (STV 1.0 0.9091)) +(: cnet_isa_a3caaf30cf (IsA foster_son foster_child) (STV 1.0 0.9091)) +(: cnet_isa_19e75d9362 (IsA fostering encouragement) (STV 1.0 0.9091)) +(: cnet_isa_3eb87920d3 (IsA fothergilla shrub) (STV 1.0 0.9091)) +(: cnet_isa_5ec71fdb98 (IsA foucault_pendulum pendulum) (STV 1.0 0.9091)) +(: cnet_isa_8fcaee9b66 (IsA foul violation) (STV 1.0 0.9091)) +(: cnet_isa_50626a5ac8 (IsA foul_ball foul) (STV 1.0 0.9091)) +(: cnet_isa_7521fa2087 (IsA foul_line line) (STV 1.0 0.9091)) +(: cnet_isa_3e4ae2751f (IsA foul_play evil) (STV 1.0 0.9091)) +(: cnet_isa_7e3377438f (IsA foul_shot basketball_shot) (STV 1.0 0.9091)) +(: cnet_isa_6904b67a24 (IsA foul_weather_gear protective_garment) (STV 1.0 0.9091)) +(: cnet_isa_c9901d1703 (IsA foulard fabric) (STV 1.0 0.9091)) +(: cnet_isa_084ae4a8cd (IsA foulness iniquity) (STV 1.0 0.9091)) +(: cnet_isa_fb2d902cff (IsA found wage) (STV 1.0 0.9091)) +(: cnet_isa_6d8f3cfa91 (IsA foundation support) (STV 1.0 0.9091)) +(: cnet_isa_2fb81f2ca9 (IsA foundation education) (STV 1.0 0.9091)) +(: cnet_isa_0b9ecc03ca (IsA foundation financial_institution) (STV 1.0 0.9091)) +(: cnet_isa_349e3a83f9 (IsA foundation relation) (STV 1.0 0.9091)) +(: cnet_isa_25364a8eae (IsA foundation_garment undergarment) (STV 1.0 0.9091)) +(: cnet_isa_39597bf9f7 (IsA foundation_stone stone) (STV 1.0 0.9091)) +(: cnet_isa_185d992b3e (IsA founder originator) (STV 1.0 0.9091)) +(: cnet_isa_8a390f016b (IsA founder skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_e230206c04 (IsA foundering sinking) (STV 1.0 0.9091)) +(: cnet_isa_77dc9802cf (IsA founding_father statesman) (STV 1.0 0.9091)) +(: cnet_isa_08addb2d10 (IsA foundling baby) (STV 1.0 0.9091)) +(: cnet_isa_d6c481061b (IsA foundress founder) (STV 1.0 0.9091)) +(: cnet_isa_09663ea843 (IsA foundry factory) (STV 1.0 0.9091)) +(: cnet_isa_7b224132d2 (IsA foundry_proof proof) (STV 1.0 0.9091)) +(: cnet_isa_d0f03c9c7c (IsA fountain flow) (STV 1.0 0.9091)) +(: cnet_isa_75fcb2b522 (IsA fountain plumbing_fixture) (STV 1.0 0.9091)) +(: cnet_isa_6733f9971b (IsA fountain structure) (STV 1.0 0.9091)) +(: cnet_isa_1180a89923 (IsA fountain_grass grass) (STV 1.0 0.9091)) +(: cnet_isa_4a0a9b694f (IsA fountain_of_youth spring) (STV 1.0 0.9091)) +(: cnet_isa_a8221b8c61 (IsA fountain_pen pen) (STV 1.0 0.9091)) +(: cnet_isa_d3626ac7f5 (IsA fountainhead beginning) (STV 1.0 0.9091)) +(: cnet_isa_dda0d90aba (IsA fouquieria dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a690a059d4 (IsA fouquieriaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_8917bb5acd (IsA four digit) (STV 1.0 0.9091)) +(: cnet_isa_0207ee6b00 (IsA four_hitter baseball) (STV 1.0 0.9091)) +(: cnet_isa_a56cdb59da (IsA four_horsemen evil) (STV 1.0 0.9091)) +(: cnet_isa_aa6ce7d17f (IsA four_hundred set) (STV 1.0 0.9091)) +(: cnet_isa_2467ad5d3f (IsA four_in_hand necktie) (STV 1.0 0.9091)) +(: cnet_isa_2b3826f0a0 (IsA four_letter_word word) (STV 1.0 0.9091)) +(: cnet_isa_f09dd3139c (IsA four_lined_plant_bug mirid_bug) (STV 1.0 0.9091)) +(: cnet_isa_7ec66dff90 (IsA four_main_direction north_south_east_and_west) (STV 1.0 0.9091)) +(: cnet_isa_7e12a008e1 (IsA four_minute_man miler) (STV 1.0 0.9091)) +(: cnet_isa_f3f2733ef9 (IsA four_o_clock flower) (STV 1.0 0.9091)) +(: cnet_isa_19f8f9a770 (IsA four_part_harmony harmony) (STV 1.0 0.9091)) +(: cnet_isa_0356de0f54 (IsA four_poster bed) (STV 1.0 0.9091)) +(: cnet_isa_cfcf7f3fa4 (IsA four_pounder artillery) (STV 1.0 0.9091)) +(: cnet_isa_30abd38c6b (IsA four_spot dice) (STV 1.0 0.9091)) +(: cnet_isa_505854aa3c (IsA four_spot domino) (STV 1.0 0.9091)) +(: cnet_isa_29af0fe35b (IsA four_spot spot) (STV 1.0 0.9091)) +(: cnet_isa_e85902067c (IsA four_stroke_engine internal_combustion_engine) (STV 1.0 0.9091)) +(: cnet_isa_7bb4a89865 (IsA four_tailed_bandage bandage) (STV 1.0 0.9091)) +(: cnet_isa_d240fb9c4a (IsA four_wheel_drive motor_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_6d76097003 (IsA four_wheel_drive transmission) (STV 1.0 0.9091)) +(: cnet_isa_6f66963f27 (IsA four_wheeler hackney) (STV 1.0 0.9091)) +(: cnet_isa_4e72038472 (IsA fourier_analysis analysis) (STV 1.0 0.9091)) +(: cnet_isa_8c4b95f644 (IsA fourier_sery sery) (STV 1.0 0.9091)) +(: cnet_isa_e62d0b89bf (IsA fourpence coin) (STV 1.0 0.9091)) +(: cnet_isa_c64c4c49be (IsA fourpenny_nail nail) (STV 1.0 0.9091)) +(: cnet_isa_7d95b9e9fb (IsA fourteen large_integer) (STV 1.0 0.9091)) +(: cnet_isa_8ba5b1dd78 (IsA fourteenth rank) (STV 1.0 0.9091)) +(: cnet_isa_cb390d6075 (IsA fourth interval) (STV 1.0 0.9091)) +(: cnet_isa_06c7a34aef (IsA fourth rank) (STV 1.0 0.9091)) +(: cnet_isa_72cdf49efc (IsA fourth_council_of_constantinople council) (STV 1.0 0.9091)) +(: cnet_isa_b33c8d88d5 (IsA fourth_day_of_week wednesday) (STV 1.0 0.9091)) +(: cnet_isa_0e95c24725 (IsA fourth_dimension time) (STV 1.0 0.9091)) +(: cnet_isa_13ff52b710 (IsA fourth_dimension dimension) (STV 1.0 0.9091)) +(: cnet_isa_bb7b621103 (IsA fourth_lateran_council lateran_council) (STV 1.0 0.9091)) +(: cnet_isa_82119180ff (IsA fourth_ventricle ventricle) (STV 1.0 0.9091)) +(: cnet_isa_2a2ff57bf6 (IsA fovea area) (STV 1.0 0.9091)) +(: cnet_isa_1f9a93fe25 (IsA foveal_vision daylight_vision) (STV 1.0 0.9091)) +(: cnet_isa_029e9ca2f4 (IsA fowl_cholera animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_75fdc9c73e (IsA fowl_cholera blood_poisoning) (STV 1.0 0.9091)) +(: cnet_isa_0b5521e39d (IsA fowl_pest animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_93a446788e (IsA fowler hunter) (STV 1.0 0.9091)) +(: cnet_isa_9f71225482 (IsA fowling_piece shotgun) (STV 1.0 0.9091)) +(: cnet_isa_8104f10400 (IsA fox animal) (STV 1.0 0.9524)) +(: cnet_isa_b689065bea (IsA fox canine) (STV 1.0 0.9091)) +(: cnet_isa_2fff7e2dc6 (IsA fox algonquian) (STV 1.0 0.9091)) +(: cnet_isa_2a1604b55b (IsA fox algonquin) (STV 1.0 0.9091)) +(: cnet_isa_e9ef8b3342 (IsA fox fur) (STV 1.0 0.9091)) +(: cnet_isa_53b7812c55 (IsA fox_grape slipskin_grape) (STV 1.0 0.9091)) +(: cnet_isa_42d9c04687 (IsA fox_grape grape) (STV 1.0 0.9091)) +(: cnet_isa_e1476b4aae (IsA fox_hunter horseman) (STV 1.0 0.9091)) +(: cnet_isa_990eec962e (IsA fox_hunting hunt) (STV 1.0 0.9091)) +(: cnet_isa_2ab6218213 (IsA fox_squirrel tree_squirrel) (STV 1.0 0.9091)) +(: cnet_isa_2fcfad98a8 (IsA fox_terrier terrier) (STV 1.0 0.9091)) +(: cnet_isa_0c87e0c7a1 (IsA fox_trot ballroom_dancing) (STV 1.0 0.9091)) +(: cnet_isa_efa75e5bcb (IsA foxe canine) (STV 1.0 0.9339)) +(: cnet_isa_3b06e1c464 (IsA foxglove herb) (STV 1.0 0.9091)) +(: cnet_isa_e06da3156e (IsA foxhole bunker) (STV 1.0 0.9091)) +(: cnet_isa_a7e0cb086c (IsA foxhound hound) (STV 1.0 0.9091)) +(: cnet_isa_04510b8f9f (IsA foxtail meadowgrass) (STV 1.0 0.9091)) +(: cnet_isa_03bdddfd73 (IsA foxtail_grass ground_pine) (STV 1.0 0.9091)) +(: cnet_isa_33675a1ca2 (IsA foxtail_millet foxtail) (STV 1.0 0.9091)) +(: cnet_isa_ad7c32f43c (IsA foxtail_orchid orchid) (STV 1.0 0.9091)) +(: cnet_isa_f5f7147fee (IsA fractal form) (STV 1.0 0.9091)) +(: cnet_isa_b29787ca63 (IsA fractal_geometry geometry) (STV 1.0 0.9091)) +(: cnet_isa_91ab451ce8 (IsA fraction part) (STV 1.0 0.9091)) +(: cnet_isa_8aa9f4cc18 (IsA fraction rational_number) (STV 1.0 0.9091)) +(: cnet_isa_52a0ce70be (IsA fraction chemical) (STV 1.0 0.9091)) +(: cnet_isa_ec5475dbc4 (IsA fractional_currency paper_money) (STV 1.0 0.9091)) +(: cnet_isa_1d5bcc3898 (IsA fractional_distillation fractionation) (STV 1.0 0.9091)) +(: cnet_isa_ef1ab52df4 (IsA fractional_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_9e6d48cffe (IsA fractionation division) (STV 1.0 0.9091)) +(: cnet_isa_4bc46f949e (IsA fractionation industrial_process) (STV 1.0 0.9091)) +(: cnet_isa_b4bc5a22e9 (IsA fracture breakage) (STV 1.0 0.9091)) +(: cnet_isa_094774abb7 (IsA fracture injury) (STV 1.0 0.9091)) +(: cnet_isa_60a2d1e54a (IsA fragaria rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_80dbd580c7 (IsA fragility vulnerability) (STV 1.0 0.9091)) +(: cnet_isa_b890e35182 (IsA fragility weakness) (STV 1.0 0.9091)) +(: cnet_isa_25188dc8b8 (IsA fragment piece) (STV 1.0 0.9091)) +(: cnet_isa_71829359c7 (IsA fragment part) (STV 1.0 0.9091)) +(: cnet_isa_4f887a3c03 (IsA fragmentation storage) (STV 1.0 0.9091)) +(: cnet_isa_56ad60535b (IsA fragmentation explosion) (STV 1.0 0.9091)) +(: cnet_isa_205bff8bc7 (IsA fragmentation decomposition) (STV 1.0 0.9091)) +(: cnet_isa_2e2ff179f8 (IsA fragmentation_bomb bomb) (STV 1.0 0.9091)) +(: cnet_isa_8a20d46f15 (IsA fragrant_agrimony agrimonia) (STV 1.0 0.9091)) +(: cnet_isa_bc5b86ce44 (IsA fragrant_cliff_fern wood_fern) (STV 1.0 0.9091)) +(: cnet_isa_cd6bc3b6be (IsA fragrant_orchid orchid) (STV 1.0 0.9091)) +(: cnet_isa_22fa845eb8 (IsA fragrant_sumac sumac) (STV 1.0 0.9091)) +(: cnet_isa_66c1625a0f (IsA frail basket) (STV 1.0 0.9091)) +(: cnet_isa_1d081e7d58 (IsA frail weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_3e09aef98f (IsA frailty evil) (STV 1.0 0.9091)) +(: cnet_isa_89b004b4d6 (IsA fraise choker) (STV 1.0 0.9091)) +(: cnet_isa_5f9c171f6b (IsA fraise rampart) (STV 1.0 0.9091)) +(: cnet_isa_5e4998d3a9 (IsA frame part) (STV 1.0 0.9091)) +(: cnet_isa_db5f0ba04f (IsA frame framework) (STV 1.0 0.9091)) +(: cnet_isa_1cf1dbf1bc (IsA frame picture) (STV 1.0 0.9091)) +(: cnet_isa_587c7fc5b9 (IsA frame application) (STV 1.0 0.9091)) +(: cnet_isa_b537e49689 (IsA frame drawing) (STV 1.0 0.9091)) +(: cnet_isa_bc14ddef7a (IsA frame_buffer buffer) (STV 1.0 0.9091)) +(: cnet_isa_234d522a01 (IsA frame_of_reference system) (STV 1.0 0.9091)) +(: cnet_isa_483fefd562 (IsA frame_up falsification) (STV 1.0 0.9091)) +(: cnet_isa_45767b00f0 (IsA framer skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_cc5d6e14d7 (IsA framer writer) (STV 1.0 0.9091)) +(: cnet_isa_8ec98f6fbd (IsA framework supporting_structure) (STV 1.0 0.9091)) +(: cnet_isa_e1a7839073 (IsA framework structure) (STV 1.0 0.9091)) +(: cnet_isa_cbacca4a3c (IsA framing conceptualization) (STV 1.0 0.9091)) +(: cnet_isa_7d0d851de3 (IsA framing framework) (STV 1.0 0.9091)) +(: cnet_isa_4268c570f5 (IsA franc monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_e119f51483 (IsA franc_tireur marksman) (STV 1.0 0.9091)) +(: cnet_isa_b067c4bd8d (IsA france country) (STV 1.0 0.9707)) +(: cnet_isa_2817295d45 (IsA france country_in_europe) (STV 1.0 0.9454)) +(: cnet_isa_dd41c8849c (IsA franchise concession) (STV 1.0 0.9091)) +(: cnet_isa_5669d9fc88 (IsA franchise business) (STV 1.0 0.9091)) +(: cnet_isa_370201e7c7 (IsA franchise legal_right) (STV 1.0 0.9091)) +(: cnet_isa_f16e6aaf90 (IsA franchise_tax tax) (STV 1.0 0.9091)) +(: cnet_isa_a49634604f (IsA francis_turbine hydroelectric_turbine) (STV 1.0 0.9091)) +(: cnet_isa_5fec2a0c3c (IsA franciscan_order order) (STV 1.0 0.9091)) +(: cnet_isa_5e8acd0341 (IsA francisella bacteria) (STV 1.0 0.9091)) +(: cnet_isa_744b171893 (IsA francisella_tularensis bacteria_specy) (STV 1.0 0.9091)) +(: cnet_isa_61e7083ae6 (IsA francium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_fb219e67da (IsA franco_american american) (STV 1.0 0.9091)) +(: cnet_isa_cc231d17ae (IsA francoa rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_bdb37ab3a4 (IsA francophil supporter) (STV 1.0 0.9091)) +(: cnet_isa_eafd00ee25 (IsA francophobe hater) (STV 1.0 0.9091)) +(: cnet_isa_d8f8087664 (IsA frangipane pastry) (STV 1.0 0.9091)) +(: cnet_isa_eef23d7cc1 (IsA frangipani shrub) (STV 1.0 0.9091)) +(: cnet_isa_2091b46cbc (IsA frank sausage) (STV 1.0 0.9091)) +(: cnet_isa_34b61bcb22 (IsA frank european) (STV 1.0 0.9091)) +(: cnet_isa_f6645e0525 (IsA frank_breech breech_delivery) (STV 1.0 0.9091)) +(: cnet_isa_468f781b16 (IsA frankenstein agency) (STV 1.0 0.9091)) +(: cnet_isa_1628b3ac3d (IsA frankfurter_bun bun) (STV 1.0 0.9091)) +(: cnet_isa_f4b987e2de (IsA frankincense gum) (STV 1.0 0.9091)) +(: cnet_isa_eb3ea7f208 (IsA franking_machine machine) (STV 1.0 0.9091)) +(: cnet_isa_e348840f30 (IsA franklin landowner) (STV 1.0 0.9091)) +(: cnet_isa_4f598a6c96 (IsA frankliniella arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_ec960ec1ee (IsA frankness communicativeness) (STV 1.0 0.9091)) +(: cnet_isa_cd3c4e2f37 (IsA frappe drink) (STV 1.0 0.9091)) +(: cnet_isa_982f88f621 (IsA frappe milkshake) (STV 1.0 0.9091)) +(: cnet_isa_17f6d1542c (IsA fraser_fir silver_fir) (STV 1.0 0.9091)) +(: cnet_isa_c4286c8fb2 (IsA frasera dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4540caf1ae (IsA fratercula bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_b7de7ef741 (IsA fraternal_twin twin) (STV 1.0 0.9091)) +(: cnet_isa_2a7a642988 (IsA fraternity club) (STV 1.0 0.9091)) +(: cnet_isa_49e614563f (IsA fraternization association) (STV 1.0 0.9091)) +(: cnet_isa_d03bab074e (IsA fratricide murder) (STV 1.0 0.9091)) +(: cnet_isa_b7e2225ad8 (IsA fratricide murderer) (STV 1.0 0.9091)) +(: cnet_isa_8ce3466cd2 (IsA frau title) (STV 1.0 0.9091)) +(: cnet_isa_42258c59a3 (IsA fraud deception) (STV 1.0 0.9091)) +(: cnet_isa_ba6963a251 (IsA fraud crime) (STV 1.0 0.9091)) +(: cnet_isa_861b2304f9 (IsA fraud trickery) (STV 1.0 0.9091)) +(: cnet_isa_c1028bb0ea (IsA fraud_in_fact fraud) (STV 1.0 0.9091)) +(: cnet_isa_5c3e930cee (IsA fraud_in_factum fraud) (STV 1.0 0.9091)) +(: cnet_isa_92101bdd85 (IsA fraud_in_inducement fraud) (STV 1.0 0.9091)) +(: cnet_isa_0964710c34 (IsA fraud_in_law constructive_fraud) (STV 1.0 0.9091)) +(: cnet_isa_7f5f912213 (IsA fraudulence dishonesty) (STV 1.0 0.9091)) +(: cnet_isa_0ad5718474 (IsA fraudulence misrepresentation) (STV 1.0 0.9091)) +(: cnet_isa_79928bdea4 (IsA fraulein title) (STV 1.0 0.9091)) +(: cnet_isa_4af4793783 (IsA fraxinella herb) (STV 1.0 0.9091)) +(: cnet_isa_41e548ef67 (IsA fraxinus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_efa5ee9c22 (IsA frazzle exhaustion) (STV 1.0 0.9091)) +(: cnet_isa_fd2c3f6481 (IsA freak mutant) (STV 1.0 0.9091)) +(: cnet_isa_dc10314f44 (IsA freckle macule) (STV 1.0 0.9091)) +(: cnet_isa_53955cf386 (IsA free people) (STV 1.0 0.9091)) +(: cnet_isa_2e754e2fb2 (IsA free_agency representation) (STV 1.0 0.9091)) +(: cnet_isa_b51396cf7b (IsA free_agent person) (STV 1.0 0.9091)) +(: cnet_isa_bf33e55825 (IsA free_agent professional) (STV 1.0 0.9091)) +(: cnet_isa_aa75cc1478 (IsA free_association thinking) (STV 1.0 0.9091)) +(: cnet_isa_d913c42725 (IsA free_central_placentation placentation) (STV 1.0 0.9091)) +(: cnet_isa_731b3c0ff9 (IsA free_electron electron) (STV 1.0 0.9091)) +(: cnet_isa_80a8ecb1b8 (IsA free_fall drop) (STV 1.0 0.9091)) +(: cnet_isa_0afdf849a3 (IsA free_french movement) (STV 1.0 0.9091)) +(: cnet_isa_6c6f297620 (IsA free_hand freedom) (STV 1.0 0.9091)) +(: cnet_isa_a9fc705e62 (IsA free_house public_house) (STV 1.0 0.9091)) +(: cnet_isa_aac823d998 (IsA free_kick place_kick) (STV 1.0 0.9091)) +(: cnet_isa_d1ea870293 (IsA free_list list) (STV 1.0 0.9091)) +(: cnet_isa_89ed25fc09 (IsA free_liver free_agent) (STV 1.0 0.9091)) +(: cnet_isa_b4a1f30858 (IsA free_living life_style) (STV 1.0 0.9091)) +(: cnet_isa_afd101d11a (IsA free_lunch gift) (STV 1.0 0.9091)) +(: cnet_isa_346d78052a (IsA free_morpheme morpheme) (STV 1.0 0.9091)) +(: cnet_isa_d3a06d93f7 (IsA free_nerve_ending nerve_ending) (STV 1.0 0.9091)) +(: cnet_isa_f95872bbbc (IsA free_phagocyte phagocyte) (STV 1.0 0.9091)) +(: cnet_isa_fa49f1d881 (IsA free_port area) (STV 1.0 0.9091)) +(: cnet_isa_139d287c8d (IsA free_port port) (STV 1.0 0.9091)) +(: cnet_isa_94e75add64 (IsA free_press press) (STV 1.0 0.9091)) +(: cnet_isa_91fe589047 (IsA free_radical atom) (STV 1.0 0.9091)) +(: cnet_isa_0435b46305 (IsA free_reed beating_reed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_fc6dcbc057 (IsA free_reed_instrument wind_instrument) (STV 1.0 0.9091)) +(: cnet_isa_39a0c6b4ac (IsA free_rein freedom) (STV 1.0 0.9091)) +(: cnet_isa_aa42625697 (IsA free_soil_party party) (STV 1.0 0.9091)) +(: cnet_isa_b2d133b399 (IsA free_state american_state) (STV 1.0 0.9091)) +(: cnet_isa_9026a03cb4 (IsA free_throw_lane lane) (STV 1.0 0.9091)) +(: cnet_isa_367bf32e2d (IsA free_time leisure) (STV 1.0 0.9091)) +(: cnet_isa_c330d9e954 (IsA free_trade trade) (STV 1.0 0.9091)) +(: cnet_isa_88b06f4dd9 (IsA free_trader supporter) (STV 1.0 0.9091)) +(: cnet_isa_fb612b7afc (IsA free_verse poem) (STV 1.0 0.9091)) +(: cnet_isa_9306ac1911 (IsA free_will power) (STV 1.0 0.9091)) +(: cnet_isa_6801d4a7cd (IsA free_world collection) (STV 1.0 0.9091)) +(: cnet_isa_e3f9f7f1fa (IsA freebie gift) (STV 1.0 0.9091)) +(: cnet_isa_ee606e634d (IsA freeboard_deck upper_deck) (STV 1.0 0.9091)) +(: cnet_isa_5749e66396 (IsA freebsd operating_system) (STV 1.0 0.9091)) +(: cnet_isa_ee2d41cd63 (IsA freedman freeman) (STV 1.0 0.9091)) +(: cnet_isa_93c8311c97 (IsA freedom abstract_concept) (STV 1.0 0.9091)) +(: cnet_isa_2a24742d34 (IsA freedom belief) (STV 1.0 0.9339)) +(: cnet_isa_0127e7abf6 (IsA freedom state_of_mind) (STV 1.0 0.9091)) +(: cnet_isa_3b963dae32 (IsA freedom universal_right) (STV 1.0 0.9339)) +(: cnet_isa_e19c39c394 (IsA freedom state) (STV 1.0 0.9091)) +(: cnet_isa_a034803bb4 (IsA freedom_from_cruel_and_unusual_punishment civil_right) (STV 1.0 0.9091)) +(: cnet_isa_5ce29fb537 (IsA freedom_from_discrimination civil_right) (STV 1.0 0.9091)) +(: cnet_isa_65ae4571ed (IsA freedom_from_double_jeopardy civil_right) (STV 1.0 0.9091)) +(: cnet_isa_205c6f3fba (IsA freedom_from_involuntary_servitude civil_right) (STV 1.0 0.9091)) +(: cnet_isa_03c249b5a0 (IsA freedom_from_search_and_seizure civil_right) (STV 1.0 0.9091)) +(: cnet_isa_8f9a5c8867 (IsA freedom_from_self_incrimination civil_right) (STV 1.0 0.9091)) +(: cnet_isa_b1e1aa0149 (IsA freedom_of_assembly civil_right) (STV 1.0 0.9091)) +(: cnet_isa_48f10d58bd (IsA freedom_of_press civil_right) (STV 1.0 0.9091)) +(: cnet_isa_1279075ed1 (IsA freedom_of_religion civil_right) (STV 1.0 0.9091)) +(: cnet_isa_02112675ba (IsA freedom_of_sea freedom) (STV 1.0 0.9091)) +(: cnet_isa_4a52cc065b (IsA freedom_of_speech civil_right) (STV 1.0 0.9091)) +(: cnet_isa_0c54356a08 (IsA freedom_of_thought human_right) (STV 1.0 0.9091)) +(: cnet_isa_3d16825106 (IsA freedom_rider civil_right_leader) (STV 1.0 0.9091)) +(: cnet_isa_75ebd1be4e (IsA freedom_to_bear_arm civil_right) (STV 1.0 0.9091)) +(: cnet_isa_245f64f19d (IsA freehold estate) (STV 1.0 0.9091)) +(: cnet_isa_9e5d769655 (IsA freehold tenure) (STV 1.0 0.9091)) +(: cnet_isa_bf71861ef6 (IsA freeholder landowner) (STV 1.0 0.9091)) +(: cnet_isa_594a3243ac (IsA freelance worker) (STV 1.0 0.9091)) +(: cnet_isa_6a2bd1373c (IsA freeloader borrower) (STV 1.0 0.9091)) +(: cnet_isa_49883f10b3 (IsA freemail electronic_mail) (STV 1.0 0.9091)) +(: cnet_isa_abad6c8f4d (IsA freeman citizen) (STV 1.0 0.9091)) +(: cnet_isa_388168cd96 (IsA freemason brother) (STV 1.0 0.9091)) +(: cnet_isa_0613a1e6b7 (IsA freemasonry secret_society) (STV 1.0 0.9091)) +(: cnet_isa_963889baeb (IsA freemasonry company) (STV 1.0 0.9091)) +(: cnet_isa_3da678ef78 (IsA freesia iridaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_fe45183687 (IsA freestone edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_fb4c9f3f7f (IsA freestyle race) (STV 1.0 0.9091)) +(: cnet_isa_bae0ccb9aa (IsA freetail carnivorous_bat) (STV 1.0 0.9091)) +(: cnet_isa_245449516c (IsA freeware software) (STV 1.0 0.9091)) +(: cnet_isa_16ff1727dd (IsA freeway road) (STV 1.0 0.9339)) +(: cnet_isa_61a813e623 (IsA freewheel clutch) (STV 1.0 0.9091)) +(: cnet_isa_fc77e56e39 (IsA freeze limitation) (STV 1.0 0.9091)) +(: cnet_isa_f0e0bb557e (IsA freeze pause) (STV 1.0 0.9091)) +(: cnet_isa_0da8f16fbd (IsA freeze cold_weather) (STV 1.0 0.9091)) +(: cnet_isa_0059a9f521 (IsA freeze cooling) (STV 1.0 0.9091)) +(: cnet_isa_1458f284b8 (IsA freeze phase_change) (STV 1.0 0.9091)) +(: cnet_isa_0ac0814b28 (IsA freeze_drying dehydration) (STV 1.0 0.9091)) +(: cnet_isa_4b4911f442 (IsA freeze_drying freeze) (STV 1.0 0.9091)) +(: cnet_isa_957ccf8523 (IsA freezing_mixture mixture) (STV 1.0 0.9091)) +(: cnet_isa_1ab0dcf51d (IsA freezing_point temperature) (STV 1.0 0.9091)) +(: cnet_isa_e25aa33e38 (IsA fregata bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_f4772b680b (IsA fregatidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_7d31c950f7 (IsA freight transportation) (STV 1.0 0.9091)) +(: cnet_isa_400f356c87 (IsA freight rate) (STV 1.0 0.9091)) +(: cnet_isa_ef15390023 (IsA freight_agent agent) (STV 1.0 0.9091)) +(: cnet_isa_5451380057 (IsA freight_car car) (STV 1.0 0.9091)) +(: cnet_isa_3104848ba9 (IsA freight_elevator elevator) (STV 1.0 0.9091)) +(: cnet_isa_8be4291e2e (IsA freight_liner freight_train) (STV 1.0 0.9091)) +(: cnet_isa_64ecea86cf (IsA freight_train train) (STV 1.0 0.9091)) +(: cnet_isa_2d9038dfe7 (IsA fremontodendron dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0897b4f80f (IsA french human_language) (STV 1.0 0.9091)) +(: cnet_isa_d36fe03af6 (IsA french language) (STV 1.0 0.9740)) +(: cnet_isa_78242e70dc (IsA french romance) (STV 1.0 0.9091)) +(: cnet_isa_b48fd76d7c (IsA french_academy academy) (STV 1.0 0.9091)) +(: cnet_isa_fba6bafc0f (IsA french_blue ultramarine) (STV 1.0 0.9091)) +(: cnet_isa_951a7148f6 (IsA french_bread white_bread) (STV 1.0 0.9091)) +(: cnet_isa_86670b05db (IsA french_bulldog bulldog) (STV 1.0 0.9091)) +(: cnet_isa_87e2afb52c (IsA french_canadian canadian) (STV 1.0 0.9091)) +(: cnet_isa_217815d680 (IsA french_chalk talc) (STV 1.0 0.9091)) +(: cnet_isa_6c323a62d3 (IsA french_door door) (STV 1.0 0.9091)) +(: cnet_isa_3b769988ce (IsA french_dressing dressing) (STV 1.0 0.9091)) +(: cnet_isa_a7b7456b7b (IsA french_foreign_legion foreign_legion) (STV 1.0 0.9091)) +(: cnet_isa_7e470e767e (IsA french_foreign_office foreign_office) (STV 1.0 0.9091)) +(: cnet_isa_12ae5a6795 (IsA french_franc franc) (STV 1.0 0.9091)) +(: cnet_isa_12577a7295 (IsA french_fry potato) (STV 1.0 0.9091)) +(: cnet_isa_4888bb4fef (IsA french_fritter friedcake) (STV 1.0 0.9091)) +(: cnet_isa_1ade18a250 (IsA french_heel heel) (STV 1.0 0.9091)) +(: cnet_isa_fef44e26a5 (IsA french_honeysuckle subshrub) (STV 1.0 0.9091)) +(: cnet_isa_428b077144 (IsA french_horn musical_instrument) (STV 1.0 0.9572)) +(: cnet_isa_c37cbc2ddd (IsA french_horn brass) (STV 1.0 0.9091)) +(: cnet_isa_545b71c684 (IsA french_knot embroidery_stitch) (STV 1.0 0.9091)) +(: cnet_isa_3cd586d5a3 (IsA french_lavender lavender) (STV 1.0 0.9091)) +(: cnet_isa_7ef2c6b831 (IsA french_leave departure) (STV 1.0 0.9091)) +(: cnet_isa_7aa8232737 (IsA french_lesson language_lesson) (STV 1.0 0.9091)) +(: cnet_isa_8f9f4c933f (IsA french_loaf loaf_of_bread) (STV 1.0 0.9091)) +(: cnet_isa_9a4592956c (IsA french_marigold marigold) (STV 1.0 0.9091)) +(: cnet_isa_278651fdfb (IsA french_omelet firm_omelet) (STV 1.0 0.9091)) +(: cnet_isa_04fcf7a5a1 (IsA french_pastry pastry) (STV 1.0 0.9091)) +(: cnet_isa_5f127fba24 (IsA french_people nation) (STV 1.0 0.9091)) +(: cnet_isa_2ac94fa46f (IsA french_person european) (STV 1.0 0.9091)) +(: cnet_isa_c0936780db (IsA french_polish shellac) (STV 1.0 0.9091)) +(: cnet_isa_a928863ee4 (IsA french_polish polish) (STV 1.0 0.9091)) +(: cnet_isa_84f9c33396 (IsA french_region geographical_area) (STV 1.0 0.9091)) +(: cnet_isa_9da5e6bd13 (IsA french_restaurant restaurant) (STV 1.0 0.9091)) +(: cnet_isa_80dd20e9e7 (IsA french_roof mansard) (STV 1.0 0.9091)) +(: cnet_isa_51dd82e50d (IsA french_sorrel green) (STV 1.0 0.9091)) +(: cnet_isa_b575ce1cef (IsA french_sorrel dock) (STV 1.0 0.9091)) +(: cnet_isa_d13ba3fe3a (IsA french_teacher teacher) (STV 1.0 0.9091)) +(: cnet_isa_b0f4b56bf1 (IsA french_toast dish) (STV 1.0 0.9091)) +(: cnet_isa_6c11defdbd (IsA french_window french_door) (STV 1.0 0.9091)) +(: cnet_isa_56c455a9c5 (IsA frequency ratio) (STV 1.0 0.9091)) +(: cnet_isa_57fbc15e92 (IsA frequency cardinal_number) (STV 1.0 0.9091)) +(: cnet_isa_71c5df3124 (IsA frequency rate) (STV 1.0 0.9091)) +(: cnet_isa_f9a4bcabf0 (IsA frequency_band band) (STV 1.0 0.9091)) +(: cnet_isa_1a71cd7bee (IsA frequency_distribution distribution) (STV 1.0 0.9091)) +(: cnet_isa_652871d71b (IsA frequency_modulation modulation) (STV 1.0 0.9091)) +(: cnet_isa_f719e6c657 (IsA frequency_response sensitivity) (STV 1.0 0.9091)) +(: cnet_isa_334ce3f9ea (IsA frequency_response_curve characteristic_curve) (STV 1.0 0.9091)) +(: cnet_isa_f4fa098801 (IsA frequentative verb) (STV 1.0 0.9091)) +(: cnet_isa_396386542a (IsA fresco painting) (STV 1.0 0.9091)) +(: cnet_isa_67e694fc93 (IsA fresco mural) (STV 1.0 0.9091)) +(: cnet_isa_df025fad3c (IsA fresh_bean common_bean) (STV 1.0 0.9091)) +(: cnet_isa_abe8d363db (IsA fresh_breeze breeze) (STV 1.0 0.9091)) +(: cnet_isa_2a62050883 (IsA fresh_food food) (STV 1.0 0.9091)) +(: cnet_isa_4b7576e002 (IsA fresh_gale gale) (STV 1.0 0.9091)) +(: cnet_isa_fe24a2ef1b (IsA fresh_start opportunity) (STV 1.0 0.9091)) +(: cnet_isa_76ed89ae1f (IsA fresh_water water) (STV 1.0 0.9091)) +(: cnet_isa_93797a93ab (IsA freshener thing) (STV 1.0 0.9091)) +(: cnet_isa_4774812b2f (IsA freshet flow) (STV 1.0 0.9091)) +(: cnet_isa_4f616a289d (IsA freshman lowerclassman) (STV 1.0 0.9091)) +(: cnet_isa_55fc932b6f (IsA freshman_class class) (STV 1.0 0.9091)) +(: cnet_isa_80b47c6e5a (IsA freshness newness) (STV 1.0 0.9091)) +(: cnet_isa_a47c1a22f9 (IsA freshness originality) (STV 1.0 0.9091)) +(: cnet_isa_a24f178015 (IsA freshness good_health) (STV 1.0 0.9091)) +(: cnet_isa_c6ff0edf9e (IsA freshwater_bass bass) (STV 1.0 0.9091)) +(: cnet_isa_fec248eea3 (IsA freshwater_bass freshwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_a514a37254 (IsA freshwater_bream sunfish) (STV 1.0 0.9091)) +(: cnet_isa_0c6c64486f (IsA freshwater_fish seafood) (STV 1.0 0.9091)) +(: cnet_isa_318ad87a57 (IsA freshwater_mussel mussel) (STV 1.0 0.9091)) +(: cnet_isa_cf63af065d (IsA fresnel_len len) (STV 1.0 0.9091)) +(: cnet_isa_724ccf3d37 (IsA fret architectural_ornament) (STV 1.0 0.9091)) +(: cnet_isa_b4364efadc (IsA fret bar) (STV 1.0 0.9091)) +(: cnet_isa_eed8e52e0d (IsA fret agitation) (STV 1.0 0.9091)) +(: cnet_isa_9da9863481 (IsA freudian follower) (STV 1.0 0.9091)) +(: cnet_isa_6217865fd3 (IsA freudian_psychology psychotherapy) (STV 1.0 0.9091)) +(: cnet_isa_24e211be10 (IsA freudian_slip slip) (STV 1.0 0.9091)) +(: cnet_isa_ff8e4ad5f8 (IsA friar_s_cowl arum) (STV 1.0 0.9091)) +(: cnet_isa_43e7ac019b (IsA friar_s_lantern light) (STV 1.0 0.9091)) +(: cnet_isa_e821442a35 (IsA friar religious) (STV 1.0 0.9091)) +(: cnet_isa_4fbfaaaa00 (IsA friar_preacher friar) (STV 1.0 0.9091)) +(: cnet_isa_25c30b200c (IsA friary monastery) (STV 1.0 0.9091)) +(: cnet_isa_169e261a9a (IsA fricandeau veal_roast) (STV 1.0 0.9091)) +(: cnet_isa_e1848ae4e7 (IsA fricassee stew) (STV 1.0 0.9091)) +(: cnet_isa_6fb355c98e (IsA fricative_consonant continuant_consonant) (STV 1.0 0.9091)) +(: cnet_isa_81f8c02c36 (IsA friction effort) (STV 1.0 0.9091)) +(: cnet_isa_638288ffb0 (IsA friction resistance) (STV 1.0 0.9091)) +(: cnet_isa_c0476549f4 (IsA friction_clutch clutch) (STV 1.0 0.9091)) +(: cnet_isa_9fc9bb7bbd (IsA friction_tape adhesive_tape) (STV 1.0 0.9091)) +(: cnet_isa_f5693232c5 (IsA friday weekday) (STV 1.0 0.9091)) +(: cnet_isa_101bc99107 (IsA fried_egg dish) (STV 1.0 0.9091)) +(: cnet_isa_eba9513ff3 (IsA fried_rice dish) (STV 1.0 0.9091)) +(: cnet_isa_4f8ea9b425 (IsA friedcake cake) (STV 1.0 0.9091)) +(: cnet_isa_087527e473 (IsA friedman_test pregnancy_test) (STV 1.0 0.9091)) +(: cnet_isa_2f7d568800 (IsA friedreich_s_ataxia ataxia) (STV 1.0 0.9091)) +(: cnet_isa_5733c7f171 (IsA friend person) (STV 1.0 0.9091)) +(: cnet_isa_f93a30f76c (IsA friendlessness aloneness) (STV 1.0 0.9091)) +(: cnet_isa_cd2d278f33 (IsA friendliness disposition) (STV 1.0 0.9091)) +(: cnet_isa_ec9d97f8b8 (IsA friendliness liking) (STV 1.0 0.9091)) +(: cnet_isa_0a5dfe838b (IsA friendly military_personnel) (STV 1.0 0.9091)) +(: cnet_isa_cf113d2d11 (IsA friendly_fire fire) (STV 1.0 0.9091)) +(: cnet_isa_df512a2de0 (IsA friendly_takeover takeover) (STV 1.0 0.9091)) +(: cnet_isa_4e18f23a4b (IsA friend people_whom) (STV 1.0 0.9091)) +(: cnet_isa_9df4beeba7 (IsA friendship relationship) (STV 1.0 0.9091)) +(: cnet_isa_742d573f7a (IsA friendship_plant nettle) (STV 1.0 0.9091)) +(: cnet_isa_002a00db29 (IsA friesian dairy_cattle) (STV 1.0 0.9091)) +(: cnet_isa_acb9a52191 (IsA frieze architectural_ornament) (STV 1.0 0.9091)) +(: cnet_isa_d66e4a5862 (IsA frieze fabric) (STV 1.0 0.9091)) +(: cnet_isa_dd3072f645 (IsA frigate warship) (STV 1.0 0.9091)) +(: cnet_isa_933d01682f (IsA frigate_bird pelecaniform_seabird) (STV 1.0 0.9091)) +(: cnet_isa_dd972cc430 (IsA frightfulness awfulness) (STV 1.0 0.9091)) +(: cnet_isa_eeb23b644a (IsA frigid_zone climatic_zone) (STV 1.0 0.9091)) +(: cnet_isa_a234fcb0a7 (IsA frigidity unresponsiveness) (STV 1.0 0.9091)) +(: cnet_isa_de9e5f435d (IsA frijole common_bean) (STV 1.0 0.9091)) +(: cnet_isa_80d2527137 (IsA frill adornment) (STV 1.0 0.9091)) +(: cnet_isa_7c18425431 (IsA frill external_body_part) (STV 1.0 0.9091)) +(: cnet_isa_54dd6331b9 (IsA frill plate) (STV 1.0 0.9091)) +(: cnet_isa_2f2fc82c75 (IsA frilled_lizard agamid) (STV 1.0 0.9091)) +(: cnet_isa_0aa80aaf0e (IsA frimaire revolutionary_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_16f7c6a615 (IsA fringe edging) (STV 1.0 0.9091)) +(: cnet_isa_81c2a03f35 (IsA fringe social_group) (STV 1.0 0.9091)) +(: cnet_isa_98da07fad3 (IsA fringe_benefit benefit) (STV 1.0 0.9091)) +(: cnet_isa_fc0eaf28ae (IsA fringe_bush fringe_tree) (STV 1.0 0.9091)) +(: cnet_isa_11a6a55011 (IsA fringe_toed_lizard iguanid) (STV 1.0 0.9091)) +(: cnet_isa_8f366c5400 (IsA fringe_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_46dda7ce12 (IsA fringed_gentian gentian) (STV 1.0 0.9091)) +(: cnet_isa_16d5786447 (IsA fringed_grass_of_parnassus wildflower) (STV 1.0 0.9091)) +(: cnet_isa_af0ba546e9 (IsA fringed_loosestrife loosestrife) (STV 1.0 0.9091)) +(: cnet_isa_77575b0ecb (IsA fringed_orchis orchid) (STV 1.0 0.9091)) +(: cnet_isa_1407e17418 (IsA fringed_pink pink) (STV 1.0 0.9091)) +(: cnet_isa_33ff2435fa (IsA fringed_poppy_mallow poppy_mallow) (STV 1.0 0.9091)) +(: cnet_isa_aea88c5ca1 (IsA fringepod herb) (STV 1.0 0.9091)) +(: cnet_isa_c50a9aa237 (IsA fringilla bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_59b46d0fc9 (IsA fringillidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_4c4ecddfd4 (IsA frisbee aerodynamic_toy_disc) (STV 1.0 0.9339)) +(: cnet_isa_17dbb1cd73 (IsA frisbee fun_sport) (STV 1.0 0.9454)) +(: cnet_isa_f2bd6669db (IsA frisbee round_flying_disc) (STV 1.0 0.9091)) +(: cnet_isa_5acc779841 (IsA frisian west_germanic) (STV 1.0 0.9091)) +(: cnet_isa_81f519a1b2 (IsA frisian dutch_people) (STV 1.0 0.9091)) +(: cnet_isa_358c8339a0 (IsA frisk search) (STV 1.0 0.9091)) +(: cnet_isa_239c81a851 (IsA friskiness playfulness) (STV 1.0 0.9091)) +(: cnet_isa_d9e5cda368 (IsA frisson fear) (STV 1.0 0.9091)) +(: cnet_isa_6da9ae72e6 (IsA fritillaria liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_abcc33dc3f (IsA fritillary nymphalid) (STV 1.0 0.9091)) +(: cnet_isa_7f5276d422 (IsA fritillary bulbous_plant) (STV 1.0 0.9091)) +(: cnet_isa_8455befaf2 (IsA frittata dish) (STV 1.0 0.9091)) +(: cnet_isa_cc76406504 (IsA fritter friedcake) (STV 1.0 0.9091)) +(: cnet_isa_f491545555 (IsA fritter_batter batter) (STV 1.0 0.9091)) +(: cnet_isa_371ed5bc94 (IsA friulian rhaeto_romance) (STV 1.0 0.9091)) +(: cnet_isa_9b8f8da61e (IsA frivolity trait) (STV 1.0 0.9091)) +(: cnet_isa_776fbeb361 (IsA frizz condition) (STV 1.0 0.9091)) +(: cnet_isa_467a2cca09 (IsA frock habit) (STV 1.0 0.9091)) +(: cnet_isa_df2b813a1c (IsA frock overgarment) (STV 1.0 0.9091)) +(: cnet_isa_210f0e0f20 (IsA frock_coat coat) (STV 1.0 0.9091)) +(: cnet_isa_9d41899001 (IsA froelichia caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5d2c4af3cd (IsA frog_s_lettuce pondweed) (STV 1.0 0.9091)) +(: cnet_isa_d8240e9507 (IsA frog amphibian) (STV 1.0 0.9091)) +(: cnet_isa_0fcdc9847c (IsA frog adornment) (STV 1.0 0.9091)) +(: cnet_isa_6d96a230c4 (IsA frog french_person) (STV 1.0 0.9091)) +(: cnet_isa_d064e8ee64 (IsA frog_kick swimming_kick) (STV 1.0 0.9091)) +(: cnet_isa_80d03fe364 (IsA frog_leg dish) (STV 1.0 0.9091)) +(: cnet_isa_db135ece57 (IsA frog_orchid orchid) (STV 1.0 0.9091)) +(: cnet_isa_2cf6fcc2e5 (IsA frogbit aquatic_plant) (STV 1.0 0.9091)) +(: cnet_isa_8a31df8ba8 (IsA frogfish spiny_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_af50348ca6 (IsA froghopper spittle_insect) (STV 1.0 0.9091)) +(: cnet_isa_5f42b5cba0 (IsA frogmouth caprimulgiform_bird) (STV 1.0 0.9091)) +(: cnet_isa_714210fd28 (IsA frog animal) (STV 1.0 0.9572)) +(: cnet_isa_d03dab938c (IsA frond leaf) (STV 1.0 0.9091)) +(: cnet_isa_329dcf5bc0 (IsA front side) (STV 1.0 0.9091)) +(: cnet_isa_390038d63a (IsA front appearance) (STV 1.0 0.9091)) +(: cnet_isa_98598e1a47 (IsA front position) (STV 1.0 0.9091)) +(: cnet_isa_e1dac6fb97 (IsA front atmospheric_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_b5291a9663 (IsA front sphere) (STV 1.0 0.9091)) +(: cnet_isa_5afc14c6cb (IsA front_bench seat) (STV 1.0 0.9091)) +(: cnet_isa_edbe0e1b6f (IsA front_burner precedence) (STV 1.0 0.9091)) +(: cnet_isa_ef27e67c3f (IsA front_door exterior_door) (STV 1.0 0.9091)) +(: cnet_isa_72e4fc3096 (IsA front_man deceiver) (STV 1.0 0.9091)) +(: cnet_isa_fe0302a4aa (IsA front_matter matter) (STV 1.0 0.9091)) +(: cnet_isa_e40dbc1950 (IsA front_porch porch) (STV 1.0 0.9091)) +(: cnet_isa_5b384f5ace (IsA front_porch_campaigning campaigning) (STV 1.0 0.9091)) +(: cnet_isa_c4bcb8487b (IsA front_projector projector) (STV 1.0 0.9091)) +(: cnet_isa_3c6066ed0c (IsA front_runner rival) (STV 1.0 0.9091)) +(: cnet_isa_15708b08fc (IsA front_tooth tooth) (STV 1.0 0.9091)) +(: cnet_isa_b2b5816341 (IsA front_yard yard) (STV 1.0 0.9091)) +(: cnet_isa_20938495cc (IsA frontage direction) (STV 1.0 0.9091)) +(: cnet_isa_8f49cc0de2 (IsA frontage extent) (STV 1.0 0.9091)) +(: cnet_isa_d1053b6287 (IsA frontage_road local_road) (STV 1.0 0.9091)) +(: cnet_isa_cf93e52ca0 (IsA frontal curtain) (STV 1.0 0.9091)) +(: cnet_isa_eade6cf579 (IsA frontal_area lobe) (STV 1.0 0.9091)) +(: cnet_isa_ec5f6d4e2c (IsA frontal_bone membrane_bone) (STV 1.0 0.9091)) +(: cnet_isa_919cd6494d (IsA frontal_eminence bulge) (STV 1.0 0.9091)) +(: cnet_isa_82db4f9106 (IsA frontal_gyrus gyrus) (STV 1.0 0.9091)) +(: cnet_isa_e215f4318c (IsA frontal_sinus sinus) (STV 1.0 0.9091)) +(: cnet_isa_79bb2f5ea7 (IsA frontal_suture suture) (STV 1.0 0.9091)) +(: cnet_isa_9f0dc069b1 (IsA frontbencher legislator) (STV 1.0 0.9091)) +(: cnet_isa_dedda11dda (IsA frontier discipline) (STV 1.0 0.9091)) +(: cnet_isa_87c1cd0a30 (IsA frontier boundary) (STV 1.0 0.9091)) +(: cnet_isa_abe777d7f6 (IsA frontier wilderness) (STV 1.0 0.9091)) +(: cnet_isa_033b0f0509 (IsA frontier_settlement colony) (STV 1.0 0.9091)) +(: cnet_isa_78101238c9 (IsA frontiersman pioneer) (STV 1.0 0.9091)) +(: cnet_isa_11eb3d247a (IsA frontierswoman pioneer) (STV 1.0 0.9091)) +(: cnet_isa_de8e6a6b52 (IsA frontispiece facade) (STV 1.0 0.9091)) +(: cnet_isa_a2cfe79d37 (IsA frontispiece front) (STV 1.0 0.9091)) +(: cnet_isa_08b356de14 (IsA frontlet adornment) (STV 1.0 0.9091)) +(: cnet_isa_35b347ed2a (IsA frost_s_bolete bolete) (STV 1.0 0.9091)) +(: cnet_isa_5d8e245d84 (IsA frost freeze) (STV 1.0 0.9091)) +(: cnet_isa_3c72cec7a6 (IsA frost ice) (STV 1.0 0.9091)) +(: cnet_isa_094e409ad1 (IsA frost_heave geological_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_14f44ee54c (IsA frostbite injury) (STV 1.0 0.9091)) +(: cnet_isa_e47c184c59 (IsA frosted_bat vespertilian_bat) (STV 1.0 0.9091)) +(: cnet_isa_ae8ffc3895 (IsA frostiness coldness) (STV 1.0 0.9091)) +(: cnet_isa_73bd9a848c (IsA frostiness white) (STV 1.0 0.9091)) +(: cnet_isa_96aad22c67 (IsA frosting topping) (STV 1.0 0.9091)) +(: cnet_isa_1ff11e392a (IsA frostweed helianthemum) (STV 1.0 0.9091)) +(: cnet_isa_cc30428863 (IsA frottage masturbation) (STV 1.0 0.9091)) +(: cnet_isa_4f4221fba4 (IsA frotteur masturbator) (STV 1.0 0.9091)) +(: cnet_isa_13a6b5a631 (IsA frown facial_expression) (STV 1.0 0.9091)) +(: cnet_isa_8ec1dedbd8 (IsA frown_line wrinkle) (STV 1.0 0.9091)) +(: cnet_isa_f4a9abab2c (IsA frozen_custard frozen_dessert) (STV 1.0 0.9091)) +(: cnet_isa_f5d9a4279b (IsA frozen_dessert dessert) (STV 1.0 0.9091)) +(: cnet_isa_55df5730bc (IsA frozen_food foodstuff) (STV 1.0 0.9091)) +(: cnet_isa_17ab3b3574 (IsA frozen_orange_juice concentrate) (STV 1.0 0.9091)) +(: cnet_isa_36332270ec (IsA frozen_orange_juice orange_juice) (STV 1.0 0.9091)) +(: cnet_isa_384f165660 (IsA frozen_pudding frozen_dessert) (STV 1.0 0.9091)) +(: cnet_isa_5f1ccd44e1 (IsA frozen_yogurt frozen_dessert) (STV 1.0 0.9091)) +(: cnet_isa_a758d0f22e (IsA frozen_yogurt yogurt) (STV 1.0 0.9091)) +(: cnet_isa_0963a69acb (IsA fructidor revolutionary_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_9ead5fc788 (IsA fructification reproductive_structure) (STV 1.0 0.9091)) +(: cnet_isa_3d37726dca (IsA fructification growth) (STV 1.0 0.9091)) +(: cnet_isa_a325ea7c2f (IsA fructose ketohexose) (STV 1.0 0.9091)) +(: cnet_isa_1afe18d342 (IsA fructosuria glycosuria) (STV 1.0 0.9091)) +(: cnet_isa_0d66a71245 (IsA frugality prudence) (STV 1.0 0.9091)) +(: cnet_isa_c7601d2b43 (IsA fruit another_name_for_homosexual) (STV 1.0 0.9091)) +(: cnet_isa_65caf551eb (IsA fruit better_snack_than_candy) (STV 1.0 0.9339)) +(: cnet_isa_ca43420252 (IsA fruit good_snack) (STV 1.0 0.9091)) +(: cnet_isa_42a7264c28 (IsA fruit good_source_of_vitamin) (STV 1.0 0.9677)) +(: cnet_isa_53d639648b (IsA fruit important_food_group) (STV 1.0 0.9091)) +(: cnet_isa_f507867809 (IsA fruit important_food_source) (STV 1.0 0.9091)) +(: cnet_isa_e697737fe0 (IsA fruit source_of_vitamin_c) (STV 1.0 0.9091)) +(: cnet_isa_7f363c132d (IsA fruit consequence) (STV 1.0 0.9091)) +(: cnet_isa_183427f047 (IsA fruit reproductive_structure) (STV 1.0 0.9091)) +(: cnet_isa_2fa496a93f (IsA fruit_bar cookie) (STV 1.0 0.9091)) +(: cnet_isa_50fff1e401 (IsA fruit_bat bat) (STV 1.0 0.9091)) +(: cnet_isa_5087cb7fe9 (IsA fruit_cocktail cocktail) (STV 1.0 0.9091)) +(: cnet_isa_1af9b9b252 (IsA fruit_custard custard) (STV 1.0 0.9091)) +(: cnet_isa_db16cb1d39 (IsA fruit_drink beverage) (STV 1.0 0.9091)) +(: cnet_isa_33b5a7617a (IsA fruit_fly dipterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_ee25c11078 (IsA fruit_grower agriculturist) (STV 1.0 0.9091)) +(: cnet_isa_9e8e584945 (IsA fruit_juice beverage) (STV 1.0 0.9091)) +(: cnet_isa_48f26e20d6 (IsA fruit_machine slot) (STV 1.0 0.9091)) +(: cnet_isa_875d0a458d (IsA fruit_of_poisonous_tree rule_of_evidence) (STV 1.0 0.9091)) +(: cnet_isa_2d6e149c56 (IsA fruit_punch drink) (STV 1.0 0.9091)) +(: cnet_isa_9033ff92da (IsA fruit_punch punch) (STV 1.0 0.9091)) +(: cnet_isa_cb287bdfdd (IsA fruit_salad salad) (STV 1.0 0.9091)) +(: cnet_isa_5d9c6e8ad8 (IsA fruit_tree angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_60eb5bd486 (IsA fruitage crop) (STV 1.0 0.9091)) +(: cnet_isa_50e6961f07 (IsA fruitcake cake) (STV 1.0 0.9091)) +(: cnet_isa_973eb3164b (IsA fruiterer seller) (STV 1.0 0.9091)) +(: cnet_isa_4f7f5487b8 (IsA fruitfulness quality) (STV 1.0 0.9091)) +(: cnet_isa_d27b9488cd (IsA fruiting_body plant_organ) (STV 1.0 0.9091)) +(: cnet_isa_560e3d65e1 (IsA fruition use) (STV 1.0 0.9091)) +(: cnet_isa_fa9023926c (IsA fruition condition) (STV 1.0 0.9091)) +(: cnet_isa_e79aa52784 (IsA fruitlessness quality) (STV 1.0 0.9091)) +(: cnet_isa_3dfdc05a8c (IsA fruitlessness uncreativeness) (STV 1.0 0.9091)) +(: cnet_isa_c4d95b9074 (IsA fruitlet fruit) (STV 1.0 0.9091)) +(: cnet_isa_26a4c4fc2b (IsA fruitwood wood) (STV 1.0 0.9091)) +(: cnet_isa_cdda9fbd8d (IsA frumenty hot_cereal) (STV 1.0 0.9091)) +(: cnet_isa_f07937592c (IsA frump unpleasant_woman) (STV 1.0 0.9091)) +(: cnet_isa_15bf36d608 (IsA frustration emotion) (STV 1.0 0.9091)) +(: cnet_isa_52c50451a3 (IsA frustration hindrance) (STV 1.0 0.9091)) +(: cnet_isa_b2f415716e (IsA frustration annoyance) (STV 1.0 0.9091)) +(: cnet_isa_8479897478 (IsA frustration disappointment) (STV 1.0 0.9091)) +(: cnet_isa_377e1d4330 (IsA frustum solid) (STV 1.0 0.9091)) +(: cnet_isa_30eb624f5f (IsA fry_cook cook) (STV 1.0 0.9091)) +(: cnet_isa_56e20132c7 (IsA fryer chicken) (STV 1.0 0.9091)) +(: cnet_isa_63696c99c9 (IsA frying cooking) (STV 1.0 0.9091)) +(: cnet_isa_7ccde5dc17 (IsA frying_pan pan) (STV 1.0 0.9091)) +(: cnet_isa_f2d2dc2824 (IsA fucaceae protoctist_family) (STV 1.0 0.9091)) +(: cnet_isa_1ca7829f39 (IsA fucale animal_order) (STV 1.0 0.9091)) +(: cnet_isa_f65019dd65 (IsA fuchsia purplish_red) (STV 1.0 0.9091)) +(: cnet_isa_a237a7dbd7 (IsA fuchsia shrub) (STV 1.0 0.9091)) +(: cnet_isa_9b046a6146 (IsA fuck sexual_intercourse) (STV 1.0 0.9091)) +(: cnet_isa_d9048c3351 (IsA fucker fool) (STV 1.0 0.9091)) +(: cnet_isa_23bfa48665 (IsA fucoid brown_algae) (STV 1.0 0.9091)) +(: cnet_isa_57449758c6 (IsA fucoid fossil) (STV 1.0 0.9091)) +(: cnet_isa_9b4b4a4f1f (IsA fucus rockweed) (STV 1.0 0.9091)) +(: cnet_isa_aa3706b052 (IsA fuddy_duddy bore) (STV 1.0 0.9091)) +(: cnet_isa_812792c125 (IsA fuddy_duddy conservative) (STV 1.0 0.9091)) +(: cnet_isa_507c740b24 (IsA fudge candy) (STV 1.0 0.9091)) +(: cnet_isa_6d1fe5294b (IsA fuel substance) (STV 1.0 0.9091)) +(: cnet_isa_bc9538bfb2 (IsA fuel_air_explosive explosive_device) (STV 1.0 0.9091)) +(: cnet_isa_a9dd2dd790 (IsA fuel_cell cell) (STV 1.0 0.9091)) +(: cnet_isa_21bf88c6a9 (IsA fuel_filter filter) (STV 1.0 0.9091)) +(: cnet_isa_ba1445668c (IsA fuel_gauge indicator) (STV 1.0 0.9091)) +(: cnet_isa_15bae86bf0 (IsA fuel_injection mechanical_system) (STV 1.0 0.9091)) +(: cnet_isa_763ad1d1aa (IsA fuel_level reserve) (STV 1.0 0.9091)) +(: cnet_isa_0289f848b8 (IsA fuel_line pipe) (STV 1.0 0.9091)) +(: cnet_isa_4116c257d9 (IsA fuel_oil fuel) (STV 1.0 0.9091)) +(: cnet_isa_c4d46eeef2 (IsA fuel_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_edb1b043a9 (IsA fuel_system equipment) (STV 1.0 0.9091)) +(: cnet_isa_bd1158140d (IsA fueling provision) (STV 1.0 0.9091)) +(: cnet_isa_f84f452647 (IsA fug fog) (STV 1.0 0.9091)) +(: cnet_isa_f7d5d37666 (IsA fugacity physical_property) (STV 1.0 0.9091)) +(: cnet_isa_d617fa38ea (IsA fugacity transience) (STV 1.0 0.9091)) +(: cnet_isa_aaec3f21c5 (IsA fugitive criminal) (STV 1.0 0.9091)) +(: cnet_isa_eab6eaebd6 (IsA fugitive person) (STV 1.0 0.9091)) +(: cnet_isa_2e0db07b0b (IsA fugleman leader) (STV 1.0 0.9091)) +(: cnet_isa_0d7da5a1f9 (IsA fugu blowfish) (STV 1.0 0.9091)) +(: cnet_isa_7080513cd7 (IsA fugue classical_music) (STV 1.0 0.9091)) +(: cnet_isa_e10cf88430 (IsA fugue dissociative_disorder) (STV 1.0 0.9091)) +(: cnet_isa_9ef98e71db (IsA fugue psychological_state) (STV 1.0 0.9091)) +(: cnet_isa_f8ebfccced (IsA fuji flowering_cherry) (STV 1.0 0.9091)) +(: cnet_isa_e8640fb12e (IsA fula west_african) (STV 1.0 0.9091)) +(: cnet_isa_fe16403fa8 (IsA fulcrum pivot) (STV 1.0 0.9091)) +(: cnet_isa_8a83ba4cba (IsA fulfillment consummation) (STV 1.0 0.9091)) +(: cnet_isa_900e0a8afe (IsA fulfillment satisfaction) (STV 1.0 0.9091)) +(: cnet_isa_2bd0731f7c (IsA fulgoridae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_6dc77dc330 (IsA fulica bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_44f58690ae (IsA full_blood origin) (STV 1.0 0.9091)) +(: cnet_isa_49a020db47 (IsA full_dress_uniform military_uniform) (STV 1.0 0.9091)) +(: cnet_isa_f640fafc5b (IsA full_employment economic_condition) (STV 1.0 0.9091)) +(: cnet_isa_3cefa610e6 (IsA full_faith_and_credit guarantee) (STV 1.0 0.9091)) +(: cnet_isa_f9574f590f (IsA full_house poker_hand) (STV 1.0 0.9091)) +(: cnet_isa_b1cb295409 (IsA full_metal_jacket bullet) (STV 1.0 0.9091)) +(: cnet_isa_9c44fd9953 (IsA full_moon phase_of_moon) (STV 1.0 0.9091)) +(: cnet_isa_7443c0a9a1 (IsA full_nelson nelson) (STV 1.0 0.9091)) +(: cnet_isa_c2c0dca1d0 (IsA full_page page) (STV 1.0 0.9091)) +(: cnet_isa_e7d123ecd1 (IsA full_professor professor) (STV 1.0 0.9091)) +(: cnet_isa_4fcade7c8f (IsA full_skirt skirt) (STV 1.0 0.9091)) +(: cnet_isa_6f747cc53d (IsA full_wave_rectifier rectifier) (STV 1.0 0.9091)) +(: cnet_isa_689c5115f8 (IsA fullback back) (STV 1.0 0.9091)) +(: cnet_isa_9a45854cb2 (IsA fullback running_back) (STV 1.0 0.9091)) +(: cnet_isa_2e2360c82f (IsA fuller_s_earth soil) (STV 1.0 0.9091)) +(: cnet_isa_7bad0b71bf (IsA fuller_s_teasel teasel) (STV 1.0 0.9091)) +(: cnet_isa_86676d754f (IsA fuller workman) (STV 1.0 0.9091)) +(: cnet_isa_da39dd3fac (IsA fullerene carbon) (STV 1.0 0.9091)) +(: cnet_isa_171be380f9 (IsA fullness largeness) (STV 1.0 0.9091)) +(: cnet_isa_94eb89a6d0 (IsA fullness property) (STV 1.0 0.9091)) +(: cnet_isa_500b85beb6 (IsA fullness condition) (STV 1.0 0.9091)) +(: cnet_isa_676a07cb3c (IsA fulmar petrel) (STV 1.0 0.9091)) +(: cnet_isa_ba0a404079 (IsA fulmarus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_84f554a421 (IsA fulminate salt) (STV 1.0 0.9091)) +(: cnet_isa_ee9fcf65eb (IsA fulmination explosion) (STV 1.0 0.9091)) +(: cnet_isa_fcfeb805b1 (IsA fulmination denunciation) (STV 1.0 0.9091)) +(: cnet_isa_99a6d3a0c5 (IsA fulminic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_abab7788f2 (IsA fulsomeness hypocrisy) (STV 1.0 0.9091)) +(: cnet_isa_89e462044d (IsA fulvic_acid humic_substance) (STV 1.0 0.9091)) +(: cnet_isa_7f4476dcd0 (IsA fumaria dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0dd3d94702 (IsA fumariaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_8135f18eb2 (IsA fumaric_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_9b2e89945f (IsA fumble blunder) (STV 1.0 0.9091)) +(: cnet_isa_6b1337a1c4 (IsA fumed_oak oak) (STV 1.0 0.9091)) +(: cnet_isa_5be78663a8 (IsA fumewort corydalis) (STV 1.0 0.9091)) +(: cnet_isa_1e3e11f4ec (IsA fumigant chemical) (STV 1.0 0.9091)) +(: cnet_isa_41208f6804 (IsA fumigation application) (STV 1.0 0.9091)) +(: cnet_isa_f8a139c38d (IsA fumigator device) (STV 1.0 0.9091)) +(: cnet_isa_80036ac380 (IsA fumigator skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_5d169e43c9 (IsA fumitory herb) (STV 1.0 0.9091)) +(: cnet_isa_941cf5316b (IsA fun activity) (STV 1.0 0.9091)) +(: cnet_isa_7c4452d764 (IsA fun diversion) (STV 1.0 0.9091)) +(: cnet_isa_6cbcfa358e (IsA fun wit) (STV 1.0 0.9091)) +(: cnet_isa_3c38e28f2b (IsA funambulist acrobat) (STV 1.0 0.9091)) +(: cnet_isa_320270e5b8 (IsA function duty) (STV 1.0 0.9091)) +(: cnet_isa_fa0adcb4d4 (IsA function utility) (STV 1.0 0.9091)) +(: cnet_isa_4fc17e662f (IsA function social_gathering) (STV 1.0 0.9091)) +(: cnet_isa_22001b6ad2 (IsA function relation) (STV 1.0 0.9091)) +(: cnet_isa_1ad15cf15a (IsA function_call call) (STV 1.0 0.9091)) +(: cnet_isa_6b1cb0c41d (IsA function_word word) (STV 1.0 0.9091)) +(: cnet_isa_11b2b77eb5 (IsA functional_anatomy anatomy) (STV 1.0 0.9091)) +(: cnet_isa_3aa5bbafe8 (IsA functional_disorder disorder) (STV 1.0 0.9091)) +(: cnet_isa_a5dc77cce7 (IsA functional_genomic genomic) (STV 1.0 0.9091)) +(: cnet_isa_0b90b84a9b (IsA functional_illiterate illiterate) (STV 1.0 0.9091)) +(: cnet_isa_7e47f7123b (IsA functional_magnetic_resonance_imaging magnetic_resonance_imaging) (STV 1.0 0.9091)) +(: cnet_isa_49029710a8 (IsA functionalism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_052cd45331 (IsA functionalism scientific_theory) (STV 1.0 0.9091)) +(: cnet_isa_511f61e8c2 (IsA functionalist supporter) (STV 1.0 0.9091)) +(: cnet_isa_01cdaf527b (IsA functionality practicality) (STV 1.0 0.9091)) +(: cnet_isa_98cfd6c52d (IsA fund money) (STV 1.0 0.9091)) +(: cnet_isa_81cf609663 (IsA fund_raising_campaign campaign) (STV 1.0 0.9091)) +(: cnet_isa_83ae18c193 (IsA fundamental harmonic) (STV 1.0 0.9091)) +(: cnet_isa_048e56fb8c (IsA fundamental factor) (STV 1.0 0.9091)) +(: cnet_isa_2f5cadd097 (IsA fundamental_law law) (STV 1.0 0.9091)) +(: cnet_isa_0528954875 (IsA fundamental_quantity measure) (STV 1.0 0.9091)) +(: cnet_isa_260032ef7a (IsA fundamentalism political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_abcf01c556 (IsA fundamentalism protestantism) (STV 1.0 0.9091)) +(: cnet_isa_fec3953f80 (IsA fundamentalist disciple) (STV 1.0 0.9091)) +(: cnet_isa_0105cac64b (IsA fundamentalist protestant) (STV 1.0 0.9091)) +(: cnet_isa_4b2a018225 (IsA fundamental principle) (STV 1.0 0.9091)) +(: cnet_isa_6566cf2f4a (IsA fundamental_analysis analysis) (STV 1.0 0.9091)) +(: cnet_isa_79d3248dc4 (IsA fundraiser affair) (STV 1.0 0.9091)) +(: cnet_isa_2e035f55c5 (IsA fundraiser solicitor) (STV 1.0 0.9091)) +(: cnet_isa_c71616afa8 (IsA fund asset) (STV 1.0 0.9091)) +(: cnet_isa_071a6e4768 (IsA fundulus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_c810c03953 (IsA fundus structure) (STV 1.0 0.9091)) +(: cnet_isa_2e3e11e20e (IsA funeral ceremony) (STV 1.0 0.9091)) +(: cnet_isa_38883fbb7f (IsA funeral_home morgue) (STV 1.0 0.9091)) +(: cnet_isa_735d23552f (IsA funeral_march processional_march) (STV 1.0 0.9091)) +(: cnet_isa_5f2b257251 (IsA fungal_infection zymosis) (STV 1.0 0.9091)) +(: cnet_isa_409d2a0a8a (IsA fungi not_plant) (STV 1.0 0.9091)) +(: cnet_isa_433ebe37e4 (IsA fungi kingdom) (STV 1.0 0.9091)) +(: cnet_isa_76a4e46ccb (IsA fungia coelenterate_genus) (STV 1.0 0.9091)) +(: cnet_isa_13d478b7af (IsA fungible commodity) (STV 1.0 0.9091)) +(: cnet_isa_1351da9435 (IsA fungus organism) (STV 1.0 0.9091)) +(: cnet_isa_663a7886cd (IsA fungus_family family) (STV 1.0 0.9091)) +(: cnet_isa_bababa202f (IsA fungus_genus genus) (STV 1.0 0.9091)) +(: cnet_isa_d5e0f0e48d (IsA fungus_gnat dipterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_e2bff248e8 (IsA fungus_order order) (STV 1.0 0.9091)) +(: cnet_isa_a5bb6a91ad (IsA funicle stalk) (STV 1.0 0.9091)) +(: cnet_isa_893714f50e (IsA funiculitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_2dec2186d5 (IsA funiculus structure) (STV 1.0 0.9091)) +(: cnet_isa_d7cf5d85ac (IsA funk jazz) (STV 1.0 0.9091)) +(: cnet_isa_533d68c2e1 (IsA funk depression) (STV 1.0 0.9091)) +(: cnet_isa_7bced54e3d (IsA funk_hole bunker) (STV 1.0 0.9091)) +(: cnet_isa_204e5f1f15 (IsA funnel utensil) (STV 1.0 0.9091)) +(: cnet_isa_0792f488af (IsA funnel cone) (STV 1.0 0.9091)) +(: cnet_isa_550bc46a8c (IsA funnel smokestack) (STV 1.0 0.9091)) +(: cnet_isa_bfe27e93fc (IsA funnel_web spider_web) (STV 1.0 0.9091)) +(: cnet_isa_bd44e89186 (IsA funny_bone ulnar_nerve) (STV 1.0 0.9091)) +(: cnet_isa_2c16a244ef (IsA funny_story joke) (STV 1.0 0.9091)) +(: cnet_isa_4608d95467 (IsA funny_wagon ambulance) (STV 1.0 0.9091)) +(: cnet_isa_d88c0086a5 (IsA funrun footrace) (STV 1.0 0.9091)) +(: cnet_isa_dd5ff5e2e0 (IsA fur coat) (STV 1.0 0.9091)) +(: cnet_isa_2c568eb9a1 (IsA fur garment) (STV 1.0 0.9091)) +(: cnet_isa_59aef19f03 (IsA fur animal_skin) (STV 1.0 0.9091)) +(: cnet_isa_05a93f7acb (IsA fur_coat coat) (STV 1.0 0.9091)) +(: cnet_isa_5f01f86856 (IsA fur_hat hat) (STV 1.0 0.9091)) +(: cnet_isa_c2f7396a69 (IsA fur_piece neckpiece) (STV 1.0 0.9091)) +(: cnet_isa_5bf22cb50e (IsA fur_seal eared_seal) (STV 1.0 0.9091)) +(: cnet_isa_b6174ddde4 (IsA furan organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_439f60cdb2 (IsA furcation angular_shape) (STV 1.0 0.9091)) +(: cnet_isa_99162699ba (IsA furcula bone) (STV 1.0 0.9091)) +(: cnet_isa_c8613a1dc1 (IsA furfural aldehyde) (STV 1.0 0.9091)) +(: cnet_isa_28d917c1d7 (IsA furfural plant_product) (STV 1.0 0.9091)) +(: cnet_isa_686ed644ff (IsA furlong linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_719427ef55 (IsA furlough leave) (STV 1.0 0.9091)) +(: cnet_isa_fc84593cad (IsA furnace chamber) (STV 1.0 0.9091)) +(: cnet_isa_0092c65319 (IsA furnace_lining lining) (STV 1.0 0.9091)) +(: cnet_isa_fb2f903f26 (IsA furnace_room room) (STV 1.0 0.9091)) +(: cnet_isa_a170c21b91 (IsA furnariidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_3fd964577f (IsA furnarius bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_cc5e960ca4 (IsA furnishing interior_decoration) (STV 1.0 0.9091)) +(: cnet_isa_3604a979e2 (IsA furnishing accessory) (STV 1.0 0.9091)) +(: cnet_isa_8adbb78299 (IsA furnishing instrumentality) (STV 1.0 0.9091)) +(: cnet_isa_6b725a03ea (IsA furniture furnishing) (STV 1.0 0.9091)) +(: cnet_isa_5924425b59 (IsA furniture_company company) (STV 1.0 0.9091)) +(: cnet_isa_5aac15b150 (IsA furniture_secretary desk) (STV 1.0 0.9091)) +(: cnet_isa_d22a134899 (IsA furor disturbance) (STV 1.0 0.9091)) +(: cnet_isa_f8c2289bf3 (IsA furring symptom) (STV 1.0 0.9091)) +(: cnet_isa_1c6e4daf51 (IsA furring_strip strip) (STV 1.0 0.9091)) +(: cnet_isa_d14d673451 (IsA furrow trench) (STV 1.0 0.9091)) +(: cnet_isa_bfd556e275 (IsA furtiveness closeness) (STV 1.0 0.9091)) +(: cnet_isa_f0263c7983 (IsA furunculosis skin_disease) (STV 1.0 0.9091)) +(: cnet_isa_10d14a5d6b (IsA fury anger) (STV 1.0 0.9091)) +(: cnet_isa_458f88d3c6 (IsA fusarium_wilt wilt) (STV 1.0 0.9091)) +(: cnet_isa_5b02dee297 (IsA fuschia purplish_red) (STV 1.0 0.9091)) +(: cnet_isa_7fcbdc7468 (IsA fuscoboletinus fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_066824104f (IsA fuscoboletinus_paluster bolete) (STV 1.0 0.9091)) +(: cnet_isa_5b9d9a390b (IsA fuscoboletinus_serotinus bolete) (STV 1.0 0.9091)) +(: cnet_isa_a0b3c4417a (IsA fuse electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_05298e39c3 (IsA fuse lighter) (STV 1.0 0.9091)) +(: cnet_isa_1a8ee7936a (IsA fusee flare) (STV 1.0 0.9091)) +(: cnet_isa_82ac0b5a91 (IsA fusee match) (STV 1.0 0.9091)) +(: cnet_isa_4462965e2a (IsA fusee_drive drive) (STV 1.0 0.9091)) +(: cnet_isa_1e8d4345f5 (IsA fusel_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_b9bd8fae27 (IsA fuselage body) (STV 1.0 0.9091)) +(: cnet_isa_433a582e38 (IsA fusible_metal alloy) (STV 1.0 0.9091)) +(: cnet_isa_6660bc09d1 (IsA fusil musket) (STV 1.0 0.9091)) +(: cnet_isa_daf5aa67d1 (IsA fusilier infantryman) (STV 1.0 0.9091)) +(: cnet_isa_c6241e315f (IsA fusillade fire) (STV 1.0 0.9091)) +(: cnet_isa_17622adafd (IsA fusion combination) (STV 1.0 0.9091)) +(: cnet_isa_8167246bc8 (IsA fusion correction) (STV 1.0 0.9091)) +(: cnet_isa_454850b5d6 (IsA fusion visual_perception) (STV 1.0 0.9091)) +(: cnet_isa_8b208fb6cc (IsA fusion union) (STV 1.0 0.9091)) +(: cnet_isa_b8d754aae2 (IsA fusion linguistic_process) (STV 1.0 0.9091)) +(: cnet_isa_ffdb6bc33d (IsA fusion nuclear_reaction) (STV 1.0 0.9091)) +(: cnet_isa_34eb93a883 (IsA fusion_cooking cooking) (STV 1.0 0.9091)) +(: cnet_isa_4842279ac2 (IsA fuss perturbation) (STV 1.0 0.9091)) +(: cnet_isa_dc3bbbe6c7 (IsA fussiness ornateness) (STV 1.0 0.9091)) +(: cnet_isa_e87fd5930d (IsA fustian fabric) (STV 1.0 0.9091)) +(: cnet_isa_255f21b44f (IsA futility inutility) (STV 1.0 0.9091)) +(: cnet_isa_2018b89004 (IsA futon mattress) (STV 1.0 0.9091)) +(: cnet_isa_767c067650 (IsA futtock_shroud sheet) (STV 1.0 0.9091)) +(: cnet_isa_dc4eb672f0 (IsA future commodity) (STV 1.0 0.9091)) +(: cnet_isa_5eb432b4e4 (IsA future tense) (STV 1.0 0.9091)) +(: cnet_isa_c4ffc72594 (IsA future time) (STV 1.0 0.9091)) +(: cnet_isa_89a25ec03a (IsA future_date date) (STV 1.0 0.9091)) +(: cnet_isa_a562974554 (IsA future_perfect perfective) (STV 1.0 0.9091)) +(: cnet_isa_5e39fcd4f0 (IsA future_progressive progressive) (STV 1.0 0.9091)) +(: cnet_isa_e0045226f4 (IsA future_contract derivative_instrument) (STV 1.0 0.9091)) +(: cnet_isa_2356a565fa (IsA future_exchange commodity_exchange) (STV 1.0 0.9091)) +(: cnet_isa_de50ae9405 (IsA futurism position) (STV 1.0 0.9091)) +(: cnet_isa_67542ce60c (IsA futurism artistic_movement) (STV 1.0 0.9091)) +(: cnet_isa_6b0514880f (IsA futurist theologian) (STV 1.0 0.9091)) +(: cnet_isa_d0dc5fa8fb (IsA futurity timing) (STV 1.0 0.9091)) +(: cnet_isa_b5c04b2bb2 (IsA futurology discipline) (STV 1.0 0.9091)) +(: cnet_isa_089a97a603 (IsA fuzz beard) (STV 1.0 0.9091)) +(: cnet_isa_11de2afc6e (IsA fuzzy_logic artificial_intelligence) (STV 1.0 0.9091)) +(: cnet_isa_d83fbc9a98 (IsA fuzzy_logic symbolic_logic) (STV 1.0 0.9091)) +(: cnet_isa_6bd8b3c9ce (IsA g letter) (STV 1.0 0.9091)) +(: cnet_isa_74c3a51838 (IsA g force_unit) (STV 1.0 0.9091)) +(: cnet_isa_d7cf759ee2 (IsA g_string woman_s_clothing) (STV 1.0 0.9091)) +(: cnet_isa_8e0abca8a0 (IsA gabardine fabric) (STV 1.0 0.9091)) +(: cnet_isa_9a2397bc74 (IsA gabbro igneous_rock) (STV 1.0 0.9091)) +(: cnet_isa_2c37bcfada (IsA gable wall) (STV 1.0 0.9091)) +(: cnet_isa_8a28dc83a8 (IsA gable_roof roof) (STV 1.0 0.9091)) +(: cnet_isa_1fe8bdcafa (IsA gabon_franc franc) (STV 1.0 0.9091)) +(: cnet_isa_6a9405616d (IsA gabonese african) (STV 1.0 0.9091)) +(: cnet_isa_762a93922d (IsA gaboon_viper viper) (STV 1.0 0.9091)) +(: cnet_isa_921e9a3996 (IsA gabriel archangel) (STV 1.0 0.9091)) +(: cnet_isa_0115560fd1 (IsA gadaba central_dravidian) (STV 1.0 0.9091)) +(: cnet_isa_5f2beaf77d (IsA gadaba dravidian) (STV 1.0 0.9091)) +(: cnet_isa_3e4608461c (IsA gadabout seeker) (STV 1.0 0.9091)) +(: cnet_isa_e22eeb2e60 (IsA gaddi cushion) (STV 1.0 0.9091)) +(: cnet_isa_3930392d68 (IsA gadfly fly) (STV 1.0 0.9091)) +(: cnet_isa_6bde7c00a0 (IsA gadgeteer enthusiast) (STV 1.0 0.9091)) +(: cnet_isa_968cc022e7 (IsA gadgetry appliance) (STV 1.0 0.9091)) +(: cnet_isa_8f9cba60aa (IsA gadidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_7b7e79aa1a (IsA gadiforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_75154d5559 (IsA gadoid soft_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_e6c3189438 (IsA gadolinite mineral) (STV 1.0 0.9091)) +(: cnet_isa_cd44d8c00f (IsA gadolinium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_d8240e98cd (IsA gadus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_3e9fb3a76d (IsA gael kelt) (STV 1.0 0.9091)) +(: cnet_isa_ad7eae5f24 (IsA gaelic celtic) (STV 1.0 0.9091)) +(: cnet_isa_87741f72a4 (IsA gaff hook) (STV 1.0 0.9091)) +(: cnet_isa_16db85dfc1 (IsA gaff spar) (STV 1.0 0.9091)) +(: cnet_isa_784614c6a9 (IsA gaff spike) (STV 1.0 0.9091)) +(: cnet_isa_2e1f1f199a (IsA gaff_topsail fore_and_aft_sail) (STV 1.0 0.9091)) +(: cnet_isa_359d52804d (IsA gaffer electrician) (STV 1.0 0.9091)) +(: cnet_isa_1fa147fd09 (IsA gaffsail fore_and_aft_sail) (STV 1.0 0.9091)) +(: cnet_isa_b040352904 (IsA gag restraint) (STV 1.0 0.9091)) +(: cnet_isa_8af4b13b85 (IsA gag_law law) (STV 1.0 0.9091)) +(: cnet_isa_f62d7d8ab1 (IsA gag_order court_order) (STV 1.0 0.9091)) +(: cnet_isa_1beb2fe381 (IsA gaggle flock) (STV 1.0 0.9091)) +(: cnet_isa_2005fb0f04 (IsA gagman comedian) (STV 1.0 0.9091)) +(: cnet_isa_aec64bdfca (IsA gagman writer) (STV 1.0 0.9091)) +(: cnet_isa_b8282749d2 (IsA gaiety happiness) (STV 1.0 0.9091)) +(: cnet_isa_c13ae02096 (IsA gaiety levity) (STV 1.0 0.9091)) +(: cnet_isa_245fbb9765 (IsA gaillardia wildflower) (STV 1.0 0.9091)) +(: cnet_isa_01a724a418 (IsA gain sum) (STV 1.0 0.9091)) +(: cnet_isa_99f8cd6a76 (IsA gainer dive) (STV 1.0 0.9091)) +(: cnet_isa_f873dab62e (IsA gainer person) (STV 1.0 0.9091)) +(: cnet_isa_a06dddc0d3 (IsA gait locomotion) (STV 1.0 0.9091)) +(: cnet_isa_aa661673a4 (IsA gait walk) (STV 1.0 0.9091)) +(: cnet_isa_1c5498f090 (IsA gaiter legging) (STV 1.0 0.9091)) +(: cnet_isa_bb872ccb4a (IsA gaiter shoe) (STV 1.0 0.9091)) +(: cnet_isa_b7d0c04e24 (IsA gal girl) (STV 1.0 0.9091)) +(: cnet_isa_83d2379781 (IsA gal acceleration_unit) (STV 1.0 0.9091)) +(: cnet_isa_e65c29e1a5 (IsA gala celebration) (STV 1.0 0.9091)) +(: cnet_isa_951c6be34e (IsA galactagogue agent) (STV 1.0 0.9091)) +(: cnet_isa_ba8e6c95e1 (IsA galactocele cyst) (STV 1.0 0.9091)) +(: cnet_isa_87a7b239c7 (IsA galactose sucrose) (STV 1.0 0.9091)) +(: cnet_isa_ef3bb98cef (IsA galactosemia inborn_error_of_metabolism) (STV 1.0 0.9091)) +(: cnet_isa_6b04301371 (IsA galactosis secretion) (STV 1.0 0.9091)) +(: cnet_isa_4d266eff98 (IsA galago lemur) (STV 1.0 0.9091)) +(: cnet_isa_b68005131b (IsA galangal ginger) (STV 1.0 0.9091)) +(: cnet_isa_f27ae69664 (IsA galantine dish) (STV 1.0 0.9091)) +(: cnet_isa_2e7989c525 (IsA galanty_show show) (STV 1.0 0.9091)) +(: cnet_isa_e1550caede (IsA galatian gaul) (STV 1.0 0.9091)) +(: cnet_isa_22eb6e99c4 (IsA galax herb) (STV 1.0 0.9091)) +(: cnet_isa_4ab0858950 (IsA galaxy enormous_group_of_star) (STV 1.0 0.9091)) +(: cnet_isa_8156eed436 (IsA galaxy group_of_star) (STV 1.0 0.9091)) +(: cnet_isa_f2dcdea558 (IsA galaxy collection) (STV 1.0 0.9091)) +(: cnet_isa_ee2e088b64 (IsA galbanum gum) (STV 1.0 0.9091)) +(: cnet_isa_b81f4cfe80 (IsA galbulidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_99e7810c86 (IsA galbulus cone) (STV 1.0 0.9091)) +(: cnet_isa_788e3eeb86 (IsA gale wind) (STV 1.0 0.9091)) +(: cnet_isa_cae34893d5 (IsA galea plant_organ) (STV 1.0 0.9091)) +(: cnet_isa_1ca9ff6b4d (IsA galega rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_434477cb23 (IsA galena mineral) (STV 1.0 0.9091)) +(: cnet_isa_40b1030eea (IsA galeocerdo fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_bf453e03f0 (IsA galeopsis asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f3b30ecd46 (IsA galeorhinus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_33ad161791 (IsA galere clique) (STV 1.0 0.9091)) +(: cnet_isa_6e4152bf33 (IsA galician romance) (STV 1.0 0.9091)) +(: cnet_isa_f2383326d7 (IsA galiella_rufa discomycete) (STV 1.0 0.9091)) +(: cnet_isa_3867b5b7e1 (IsA galilaean inhabitant) (STV 1.0 0.9091)) +(: cnet_isa_70be8bf5f1 (IsA galilean_satellite satellite) (STV 1.0 0.9091)) +(: cnet_isa_91506d62ca (IsA galilean_telescope refracting_telescope) (STV 1.0 0.9091)) +(: cnet_isa_b4603789c2 (IsA galingale sedge) (STV 1.0 0.9091)) +(: cnet_isa_c88e7374c7 (IsA galium asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0a87d855c1 (IsA gall plant_tissue) (STV 1.0 0.9091)) +(: cnet_isa_d6af394c28 (IsA gall sore) (STV 1.0 0.9091)) +(: cnet_isa_4c84ef5617 (IsA gall_midge dipterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_01ce35787e (IsA gall_wasp wasp) (STV 1.0 0.9091)) +(: cnet_isa_5065b0dfb3 (IsA gallantry courtesy) (STV 1.0 0.9091)) +(: cnet_isa_945b786a21 (IsA gallbladder bladder) (STV 1.0 0.9091)) +(: cnet_isa_036203c2de (IsA galleon sailing_vessel) (STV 1.0 0.9091)) +(: cnet_isa_29bf2d45b5 (IsA galleria arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_221375fe65 (IsA gallery balcony) (STV 1.0 0.9091)) +(: cnet_isa_ec9a2ed80e (IsA gallery corridor) (STV 1.0 0.9091)) +(: cnet_isa_1e8210ddaa (IsA gallery room) (STV 1.0 0.9091)) +(: cnet_isa_1037167cab (IsA gallery audience) (STV 1.0 0.9091)) +(: cnet_isa_d69787ecf3 (IsA galley vessel) (STV 1.0 0.9091)) +(: cnet_isa_fa605bef5c (IsA galley kitchen) (STV 1.0 0.9091)) +(: cnet_isa_40ce9c4c9d (IsA galley_proof proof) (STV 1.0 0.9091)) +(: cnet_isa_fb05b88ef9 (IsA galley_slave slave) (STV 1.0 0.9091)) +(: cnet_isa_a114dd5ab5 (IsA gallfly insect) (STV 1.0 0.9091)) +(: cnet_isa_1ec9f3c2b7 (IsA galliano liqueur) (STV 1.0 0.9091)) +(: cnet_isa_d08ae0a2d2 (IsA gallic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_73cf989e1c (IsA gallicanism religious_movement) (STV 1.0 0.9091)) +(: cnet_isa_a2ddc17a19 (IsA gallicism loanword) (STV 1.0 0.9091)) +(: cnet_isa_4c003a31ca (IsA galliforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_cf1ff75708 (IsA gallinaceous_bird bird) (STV 1.0 0.9091)) +(: cnet_isa_1f071af140 (IsA gallinago bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_a20670e196 (IsA gallinula bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_a496089112 (IsA gallinule aquatic_bird) (STV 1.0 0.9091)) +(: cnet_isa_20ba24a29c (IsA gallirallus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_5833b9def4 (IsA gallium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_e85b1cd288 (IsA gallon british_capacity_unit) (STV 1.0 0.9091)) +(: cnet_isa_e636eb63cd (IsA gallon united_state_liquid_unit) (STV 1.0 0.9091)) +(: cnet_isa_503e74533a (IsA gallop gait) (STV 1.0 0.9091)) +(: cnet_isa_e91f190ba7 (IsA gallop_rhythm cardiac_arrhythmia) (STV 1.0 0.9091)) +(: cnet_isa_5615b307c4 (IsA galloway beef) (STV 1.0 0.9091)) +(: cnet_isa_37dcb3e7a9 (IsA gallow instrument_of_execution) (STV 1.0 0.9091)) +(: cnet_isa_adc39eee50 (IsA gallow_bird villain) (STV 1.0 0.9091)) +(: cnet_isa_57a1c920f6 (IsA gallow_tree gallow) (STV 1.0 0.9091)) +(: cnet_isa_7a53aa3860 (IsA gallstone calculus) (STV 1.0 0.9091)) +(: cnet_isa_fe4ba77712 (IsA gallus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_ade3709972 (IsA galois_theory group_theory) (STV 1.0 0.9091)) +(: cnet_isa_3c967f3d60 (IsA galoot man) (STV 1.0 0.9091)) +(: cnet_isa_a83b202812 (IsA galvanic_skin_response reaction) (STV 1.0 0.9091)) +(: cnet_isa_39d3c9e90b (IsA galvanism therapy) (STV 1.0 0.9091)) +(: cnet_isa_8012550677 (IsA galvanism electricity) (STV 1.0 0.9091)) +(: cnet_isa_d2a380cb52 (IsA galvanization application) (STV 1.0 0.9091)) +(: cnet_isa_ae2ead6290 (IsA galvanization stimulation) (STV 1.0 0.9091)) +(: cnet_isa_fd8427224f (IsA galvanized_iron iron) (STV 1.0 0.9091)) +(: cnet_isa_6dd1226e20 (IsA galvanizer leader) (STV 1.0 0.9091)) +(: cnet_isa_fce9ba74e4 (IsA galvanizer skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_e26f9b5d18 (IsA galvanometer meter) (STV 1.0 0.9091)) +(: cnet_isa_837f13d50a (IsA gam herd) (STV 1.0 0.9091)) +(: cnet_isa_39b5f1bec0 (IsA gambelia reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_96127cb86a (IsA gambian african) (STV 1.0 0.9091)) +(: cnet_isa_4407781552 (IsA gambian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_d317d262ed (IsA gambist musician) (STV 1.0 0.9091)) +(: cnet_isa_aaaad9a237 (IsA gambit chess_move) (STV 1.0 0.9091)) +(: cnet_isa_6dc2f14df6 (IsA gambit remark) (STV 1.0 0.9091)) +(: cnet_isa_b610085b19 (IsA gamble risk) (STV 1.0 0.9091)) +(: cnet_isa_7801f3f32b (IsA gamble speculation) (STV 1.0 0.9091)) +(: cnet_isa_1e1a4f7e52 (IsA gambler adventurer) (STV 1.0 0.9091)) +(: cnet_isa_a0a598ff6e (IsA gambler person) (STV 1.0 0.9091)) +(: cnet_isa_ff8c49d6c0 (IsA gambling diversion) (STV 1.0 0.9091)) +(: cnet_isa_22130440ba (IsA gambling vice) (STV 1.0 0.9091)) +(: cnet_isa_01701fe3a1 (IsA gambling_contract contract) (STV 1.0 0.9091)) +(: cnet_isa_7fef0a0d0c (IsA gambling_house building) (STV 1.0 0.9091)) +(: cnet_isa_e4aebddb34 (IsA gambling_house place_of_business) (STV 1.0 0.9091)) +(: cnet_isa_6481c97805 (IsA gambling_system system) (STV 1.0 0.9091)) +(: cnet_isa_91fc7f4008 (IsA gamboge yellow) (STV 1.0 0.9091)) +(: cnet_isa_de114d9aa3 (IsA gamboge gum_resin) (STV 1.0 0.9091)) +(: cnet_isa_619fc546e4 (IsA gamboge_tree angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_b7696cbcdd (IsA gambrel gable_roof) (STV 1.0 0.9091)) +(: cnet_isa_4e3d4b0291 (IsA gambusia fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_823ebed3bf (IsA game activity) (STV 1.0 0.9572)) +(: cnet_isa_658492c107 (IsA game diversion) (STV 1.0 0.9091)) +(: cnet_isa_da6b2f7132 (IsA game occupation) (STV 1.0 0.9091)) +(: cnet_isa_30b8cfcc1d (IsA game play) (STV 1.0 0.9091)) +(: cnet_isa_7f8034c593 (IsA game animal) (STV 1.0 0.9091)) +(: cnet_isa_af7e413e10 (IsA game meat) (STV 1.0 0.9091)) +(: cnet_isa_f9655cb148 (IsA game contest) (STV 1.0 0.9091)) +(: cnet_isa_875cef1f3f (IsA game game_equipment) (STV 1.0 0.9091)) +(: cnet_isa_a98cbaf885 (IsA game score) (STV 1.0 0.9091)) +(: cnet_isa_016618882a (IsA game part) (STV 1.0 0.9091)) +(: cnet_isa_e772c848e4 (IsA game_bird gallinaceous_bird) (STV 1.0 0.9091)) +(: cnet_isa_8f2924e0be (IsA game_bird game) (STV 1.0 0.9091)) +(: cnet_isa_5c4d362998 (IsA game_equipment equipment) (STV 1.0 0.9091)) +(: cnet_isa_19e1f6af63 (IsA game_fish fish) (STV 1.0 0.9091)) +(: cnet_isa_dd15d0fb3f (IsA game_fowl domestic_fowl) (STV 1.0 0.9091)) +(: cnet_isa_f4e66eb8f7 (IsA game_law regulation) (STV 1.0 0.9091)) +(: cnet_isa_941bfdc752 (IsA game_misconduct penalty) (STV 1.0 0.9091)) +(: cnet_isa_7677a30ea2 (IsA game_of_chance gambling) (STV 1.0 0.9091)) +(: cnet_isa_dc6aa6d27f (IsA game_of_chance game) (STV 1.0 0.9091)) +(: cnet_isa_65ff58ca67 (IsA game_plan scheme) (STV 1.0 0.9091)) +(: cnet_isa_c4eff2bfd7 (IsA game_show broadcast) (STV 1.0 0.9091)) +(: cnet_isa_66b1022027 (IsA game_theory scientific_theory) (STV 1.0 0.9091)) +(: cnet_isa_94a1830f5d (IsA gamebag bag) (STV 1.0 0.9091)) +(: cnet_isa_f7481649f4 (IsA gamecock cock) (STV 1.0 0.9091)) +(: cnet_isa_6d5741b893 (IsA gamekeeper custodian) (STV 1.0 0.9091)) +(: cnet_isa_97e8913aca (IsA gamelan ensemble) (STV 1.0 0.9091)) +(: cnet_isa_6b27c2658d (IsA game entertainment_in_themselve) (STV 1.0 0.9091)) +(: cnet_isa_f00ff3c596 (IsA game_master schoolteacher) (STV 1.0 0.9091)) +(: cnet_isa_85afde2021 (IsA gamesmanship unfairness) (STV 1.0 0.9091)) +(: cnet_isa_f80c5f6262 (IsA gametangium reproductive_structure) (STV 1.0 0.9091)) +(: cnet_isa_48f5a6828e (IsA gamete reproductive_cell) (STV 1.0 0.9091)) +(: cnet_isa_0f43ad4b6c (IsA gametocyte cell) (STV 1.0 0.9091)) +(: cnet_isa_fc47df08cf (IsA gametoecium reproductive_structure) (STV 1.0 0.9091)) +(: cnet_isa_3144247183 (IsA gametogenesis growth) (STV 1.0 0.9091)) +(: cnet_isa_2ef9fc92aa (IsA gametophore reproductive_structure) (STV 1.0 0.9091)) +(: cnet_isa_77892e0df2 (IsA gametophyte plant) (STV 1.0 0.9091)) +(: cnet_isa_b41d69abf3 (IsA gamine girl) (STV 1.0 0.9091)) +(: cnet_isa_1dcd9f9565 (IsA gamine street_urchin) (STV 1.0 0.9091)) +(: cnet_isa_b01385953a (IsA gaminess indelicacy) (STV 1.0 0.9091)) +(: cnet_isa_bbb5f3dbb3 (IsA gaming_card playing_card) (STV 1.0 0.9091)) +(: cnet_isa_6ee5befac8 (IsA gaming_table table) (STV 1.0 0.9091)) +(: cnet_isa_79ddcfe97a (IsA gamma letter) (STV 1.0 0.9091)) +(: cnet_isa_e5e2ed3fb4 (IsA gamma field_strength_unit) (STV 1.0 0.9091)) +(: cnet_isa_939256aa06 (IsA gamma_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_842feb7624 (IsA gamma_aminobutyric_acid amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_c1d5c04220 (IsA gamma_aminobutyric_acid neurotransmitter) (STV 1.0 0.9091)) +(: cnet_isa_cf5fd88f84 (IsA gamma_globulin globulin) (STV 1.0 0.9091)) +(: cnet_isa_63b78c7f52 (IsA gamma_globulin plasma_protein) (STV 1.0 0.9091)) +(: cnet_isa_6c9629b524 (IsA gamma_hydroxybutyrate club_drug) (STV 1.0 0.9091)) +(: cnet_isa_c66af47b47 (IsA gamma_interferon interferon) (STV 1.0 0.9091)) +(: cnet_isa_9337756a3f (IsA gamma_iron iron) (STV 1.0 0.9091)) +(: cnet_isa_0f47934ee5 (IsA gamma_radiation electromagnetic_radiation) (STV 1.0 0.9091)) +(: cnet_isa_66011595b9 (IsA gammon bacon) (STV 1.0 0.9091)) +(: cnet_isa_7af2f3fc8d (IsA gammopathy pathology) (STV 1.0 0.9091)) +(: cnet_isa_e3dfb9cd98 (IsA gamp umbrella) (STV 1.0 0.9091)) +(: cnet_isa_e33f307630 (IsA gamut scope) (STV 1.0 0.9091)) +(: cnet_isa_dd983ccff3 (IsA gamut scale) (STV 1.0 0.9091)) +(: cnet_isa_31dad2c2a6 (IsA gander goose) (STV 1.0 0.9091)) +(: cnet_isa_f7ecfaa9e4 (IsA gandy_dancer laborer) (STV 1.0 0.9091)) +(: cnet_isa_9d7079ff0f (IsA gang tool) (STV 1.0 0.9091)) +(: cnet_isa_c76062d483 (IsA gang association) (STV 1.0 0.9091)) +(: cnet_isa_3d69b63b28 (IsA gang unit) (STV 1.0 0.9091)) +(: cnet_isa_bf46794cda (IsA ganger foreman) (STV 1.0 0.9091)) +(: cnet_isa_988d9cad93 (IsA ganglion neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_e0ea1acaea (IsA ganglion_cell nerve_cell) (STV 1.0 0.9091)) +(: cnet_isa_1038fac5ec (IsA gangplank footbridge) (STV 1.0 0.9091)) +(: cnet_isa_8211f167c6 (IsA gangrene pathology) (STV 1.0 0.9091)) +(: cnet_isa_4456148fb9 (IsA gangsaw power_saw) (STV 1.0 0.9091)) +(: cnet_isa_4af8c32305 (IsA gangsta peer) (STV 1.0 0.9091)) +(: cnet_isa_5f833ad845 (IsA gangster criminal) (STV 1.0 0.9091)) +(: cnet_isa_36f774f34d (IsA gangway passageway) (STV 1.0 0.9091)) +(: cnet_isa_29c8ee2c92 (IsA gannet pelecaniform_seabird) (STV 1.0 0.9091)) +(: cnet_isa_4962e8ca0a (IsA ganoid teleost_fish) (STV 1.0 0.9091)) +(: cnet_isa_1835a59ed7 (IsA ganoidei animal_order) (STV 1.0 0.9091)) +(: cnet_isa_03fad654cc (IsA ganoin secretion) (STV 1.0 0.9091)) +(: cnet_isa_7977ec1258 (IsA gantlet railroad_track) (STV 1.0 0.9091)) +(: cnet_isa_10546d6ab9 (IsA gantry framework) (STV 1.0 0.9091)) +(: cnet_isa_195a23b2c8 (IsA gap opening) (STV 1.0 0.9091)) +(: cnet_isa_830f593290 (IsA gap disparity) (STV 1.0 0.9091)) +(: cnet_isa_b2de293e3a (IsA gap dispute) (STV 1.0 0.9091)) +(: cnet_isa_72ab26c153 (IsA gape stare) (STV 1.0 0.9091)) +(: cnet_isa_f667105442 (IsA gape facial_expression) (STV 1.0 0.9091)) +(: cnet_isa_80e82db0fc (IsA gapped_scale scale) (STV 1.0 0.9091)) +(: cnet_isa_5b324bf666 (IsA gar ganoid) (STV 1.0 0.9091)) +(: cnet_isa_e30ceb3273 (IsA garage outbuilding) (STV 1.0 0.9091)) +(: cnet_isa_f2a76ca021 (IsA garage repair_shop) (STV 1.0 0.9091)) +(: cnet_isa_9e3708dc26 (IsA garage_sale sale) (STV 1.0 0.9091)) +(: cnet_isa_fd85a62a4b (IsA garageman_s_lien mechanic_s_lien) (STV 1.0 0.9091)) +(: cnet_isa_1ac09102bf (IsA garage source_of_many_home_fire) (STV 1.0 0.9091)) +(: cnet_isa_3d810d448d (IsA garambulla edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_d069f6b9d2 (IsA garambulla cactus) (STV 1.0 0.9091)) +(: cnet_isa_cf012d663f (IsA garand_rifle rifle) (STV 1.0 0.9091)) +(: cnet_isa_7fd7a7c59f (IsA garand_rifle semiautomatic_firearm) (STV 1.0 0.9091)) +(: cnet_isa_01b07b16b0 (IsA garbage waste_material) (STV 1.0 0.9091)) +(: cnet_isa_6c841b42e7 (IsA garbage receptacle) (STV 1.0 0.9091)) +(: cnet_isa_51f3826bf1 (IsA garbage waste) (STV 1.0 0.9091)) +(: cnet_isa_569e77e92d (IsA garbage_collection pickup) (STV 1.0 0.9091)) +(: cnet_isa_dc67188fe1 (IsA garbage_heap dump) (STV 1.0 0.9091)) +(: cnet_isa_070094729e (IsA garbage_man hauler) (STV 1.0 0.9091)) +(: cnet_isa_4c6bbfe388 (IsA garbage_truck truck) (STV 1.0 0.9091)) +(: cnet_isa_869e5cf42e (IsA garbage_waste bad_thing) (STV 1.0 0.9091)) +(: cnet_isa_d1d29ebcfb (IsA garboard wale) (STV 1.0 0.9091)) +(: cnet_isa_4baa80b9b6 (IsA garbology social_anthropology) (STV 1.0 0.9091)) +(: cnet_isa_2fceed2ded (IsA garcinia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_91e13656d6 (IsA garden place_with_plant) (STV 1.0 0.9091)) +(: cnet_isa_a0c36d3a9b (IsA garden plot) (STV 1.0 0.9091)) +(: cnet_isa_cc5ceebc12 (IsA garden yard) (STV 1.0 0.9091)) +(: cnet_isa_b542c990b5 (IsA garden vegetation) (STV 1.0 0.9091)) +(: cnet_isa_ce2b306480 (IsA garden_angelica angelica) (STV 1.0 0.9091)) +(: cnet_isa_7581706ad0 (IsA garden_centipede arthropod) (STV 1.0 0.9091)) +(: cnet_isa_6b1134b289 (IsA garden_cress cress) (STV 1.0 0.9091)) +(: cnet_isa_5e42e6f010 (IsA garden_forget_me_not herb) (STV 1.0 0.9091)) +(: cnet_isa_0c521e5a3e (IsA garden_hose long_tube) (STV 1.0 0.9091)) +(: cnet_isa_096298523e (IsA garden_hose hose) (STV 1.0 0.9091)) +(: cnet_isa_984365cf07 (IsA garden_huckleberry black_nightshade) (STV 1.0 0.9091)) +(: cnet_isa_b4d83f40b9 (IsA garden_lettuce lettuce) (STV 1.0 0.9091)) +(: cnet_isa_741cfc79cc (IsA garden_nasturtium nasturtium) (STV 1.0 0.9091)) +(: cnet_isa_82165ac468 (IsA garden_orache orach) (STV 1.0 0.9091)) +(: cnet_isa_63517e120f (IsA garden_party party) (STV 1.0 0.9091)) +(: cnet_isa_d9da2ae2a3 (IsA garden_pea pea) (STV 1.0 0.9091)) +(: cnet_isa_159882cd50 (IsA garden_plant plant) (STV 1.0 0.9091)) +(: cnet_isa_1a70536ef4 (IsA garden_rake rake) (STV 1.0 0.9091)) +(: cnet_isa_cf9c8e2902 (IsA garden_roller roller) (STV 1.0 0.9091)) +(: cnet_isa_2f265288ec (IsA garden_snail snail) (STV 1.0 0.9091)) +(: cnet_isa_85e43c8538 (IsA garden_spade spade) (STV 1.0 0.9091)) +(: cnet_isa_e1e4ff645c (IsA garden_spider spider) (STV 1.0 0.9091)) +(: cnet_isa_3f2a9d86a7 (IsA garden_stater american) (STV 1.0 0.9091)) +(: cnet_isa_5ead9233ad (IsA garden_strawberry strawberry) (STV 1.0 0.9091)) +(: cnet_isa_f264a28390 (IsA garden_tool tool) (STV 1.0 0.9091)) +(: cnet_isa_059778f7b6 (IsA garden_trowel trowel) (STV 1.0 0.9091)) +(: cnet_isa_edec096e7d (IsA garden_webworm webworm) (STV 1.0 0.9091)) +(: cnet_isa_b4b39d76de (IsA gardener employee) (STV 1.0 0.9091)) +(: cnet_isa_3ea8d157d3 (IsA gardener horticulturist) (STV 1.0 0.9091)) +(: cnet_isa_9b018b55fd (IsA gardenia shrub) (STV 1.0 0.9091)) +(: cnet_isa_f1c3119f78 (IsA gardening hobby) (STV 1.0 0.9091)) +(: cnet_isa_8f1f16aee3 (IsA gardening necessary_activity_to_grow_tomatoe) (STV 1.0 0.9454)) +(: cnet_isa_7ab1b15610 (IsA gardening farming) (STV 1.0 0.9091)) +(: cnet_isa_caffe60886 (IsA garganey teal) (STV 1.0 0.9091)) +(: cnet_isa_c73a0d9304 (IsA gargle sound) (STV 1.0 0.9091)) +(: cnet_isa_213d512621 (IsA gargle solution) (STV 1.0 0.9091)) +(: cnet_isa_b253d5bdaf (IsA gargoyle decoration) (STV 1.0 0.9091)) +(: cnet_isa_5c7afebf93 (IsA gargoyle spout) (STV 1.0 0.9091)) +(: cnet_isa_64d60c5808 (IsA garibaldi blouse) (STV 1.0 0.9091)) +(: cnet_isa_579562e417 (IsA garishness ugliness) (STV 1.0 0.9091)) +(: cnet_isa_51eaf1a602 (IsA garland_flower daphne) (STV 1.0 0.9091)) +(: cnet_isa_7eebd6786e (IsA garlic herb_often) (STV 1.0 0.9091)) +(: cnet_isa_d5fc1abbf9 (IsA garlic ingredient) (STV 1.0 0.9454)) +(: cnet_isa_cc259c3fc4 (IsA garlic popular_ingredient) (STV 1.0 0.9454)) +(: cnet_isa_529f3c1b1a (IsA garlic flavorer) (STV 1.0 0.9091)) +(: cnet_isa_133da9828f (IsA garlic alliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_e0c368cce4 (IsA garlic_bread bread) (STV 1.0 0.9091)) +(: cnet_isa_4f329d46c9 (IsA garlic_butter spread) (STV 1.0 0.9091)) +(: cnet_isa_ece5b4ad68 (IsA garlic_chive flavorer) (STV 1.0 0.9091)) +(: cnet_isa_99252f2a84 (IsA garlic_chive alliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_912cecfaa2 (IsA garlic_mustard crucifer) (STV 1.0 0.9091)) +(: cnet_isa_8cad410e0a (IsA garlic_press press) (STV 1.0 0.9091)) +(: cnet_isa_b2e2bfdec1 (IsA garlic_salt flavorer) (STV 1.0 0.9091)) +(: cnet_isa_dd9bdf4d8d (IsA garment clothing) (STV 1.0 0.9091)) +(: cnet_isa_498ef296d8 (IsA garment_bag bag) (STV 1.0 0.9091)) +(: cnet_isa_b08136c0b4 (IsA garment_cutter cutter) (STV 1.0 0.9091)) +(: cnet_isa_f6300d423f (IsA garmentmaker needleworker) (STV 1.0 0.9091)) +(: cnet_isa_49091228d1 (IsA garnet stone) (STV 1.0 0.9454)) +(: cnet_isa_4853b71a1a (IsA garnet mineral) (STV 1.0 0.9091)) +(: cnet_isa_b706aef045 (IsA garnet transparent_gem) (STV 1.0 0.9091)) +(: cnet_isa_a43e07974c (IsA garnet_lac lac) (STV 1.0 0.9091)) +(: cnet_isa_83387b3c08 (IsA garnierite mineral) (STV 1.0 0.9091)) +(: cnet_isa_63a6fa24c9 (IsA garnish decoration) (STV 1.0 0.9091)) +(: cnet_isa_005d8a41a9 (IsA garnishee earner) (STV 1.0 0.9091)) +(: cnet_isa_280d39715c (IsA garnishment court_order) (STV 1.0 0.9091)) +(: cnet_isa_5c7cc919f2 (IsA garrison military_personnel) (STV 1.0 0.9091)) +(: cnet_isa_0bc033b6e0 (IsA garrison military_post) (STV 1.0 0.9091)) +(: cnet_isa_df947a168f (IsA garrison_cap cap) (STV 1.0 0.9091)) +(: cnet_isa_63e8ffe4e4 (IsA garrote instrument_of_execution) (STV 1.0 0.9091)) +(: cnet_isa_6cb4881f91 (IsA garroter killer) (STV 1.0 0.9091)) +(: cnet_isa_391f21e605 (IsA garrulinae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_e6f4bb10bb (IsA garrulity communicativeness) (STV 1.0 0.9091)) +(: cnet_isa_b67c72d5cc (IsA garrulus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_1ad10b6151 (IsA garter band) (STV 1.0 0.9091)) +(: cnet_isa_d2140d4c2d (IsA garter_belt undergarment) (STV 1.0 0.9091)) +(: cnet_isa_e4d605f8c2 (IsA garter_snake colubrid_snake) (STV 1.0 0.9091)) +(: cnet_isa_448295c52a (IsA garter_stitch knitting_stitch) (STV 1.0 0.9091)) +(: cnet_isa_f7f439ebb5 (IsA garuda hindu_deity) (STV 1.0 0.9091)) +(: cnet_isa_dccf697f86 (IsA gas state_of_matter) (STV 1.0 0.9572)) +(: cnet_isa_796a78c7e5 (IsA gas term_for_gasoline) (STV 1.0 0.9091)) +(: cnet_isa_6cfadb32ce (IsA gas fluid) (STV 1.0 0.9091)) +(: cnet_isa_71ecee82bb (IsA gas_bracket burner) (STV 1.0 0.9091)) +(: cnet_isa_a97b0fb355 (IsA gas_burner burner) (STV 1.0 0.9091)) +(: cnet_isa_7558d31d68 (IsA gas_chamber instrument_of_execution) (STV 1.0 0.9091)) +(: cnet_isa_a30c40ab3e (IsA gas_company utility) (STV 1.0 0.9091)) +(: cnet_isa_f706dca896 (IsA gas_constant constant) (STV 1.0 0.9091)) +(: cnet_isa_f0bb68978e (IsA gas_cooled_reactor nuclear_reactor) (STV 1.0 0.9091)) +(: cnet_isa_c7587b356c (IsA gas_discharge_tube tube) (STV 1.0 0.9091)) +(: cnet_isa_8c99635ff6 (IsA gas_engine internal_combustion_engine) (STV 1.0 0.9091)) +(: cnet_isa_d7237162f2 (IsA gas_fitter workman) (STV 1.0 0.9091)) +(: cnet_isa_d5c5d6468d (IsA gas_fitting fitting) (STV 1.0 0.9091)) +(: cnet_isa_6c31aff769 (IsA gas_fixture device) (STV 1.0 0.9091)) +(: cnet_isa_940be51e0c (IsA gas_furnace furnace) (STV 1.0 0.9091)) +(: cnet_isa_0873364cbd (IsA gas_gangrene gangrene) (STV 1.0 0.9091)) +(: cnet_isa_596374dd10 (IsA gas_gun gun) (STV 1.0 0.9091)) +(: cnet_isa_140399de5e (IsA gas_guzzler car) (STV 1.0 0.9091)) +(: cnet_isa_b77e020c61 (IsA gas_heat heating_system) (STV 1.0 0.9091)) +(: cnet_isa_10a55a13cd (IsA gas_heater heater) (STV 1.0 0.9091)) +(: cnet_isa_80e85d1f62 (IsA gas_holder tank) (STV 1.0 0.9091)) +(: cnet_isa_fdb3a75082 (IsA gas_lamp lamp) (STV 1.0 0.9091)) +(: cnet_isa_da255c6323 (IsA gas_line pipeline) (STV 1.0 0.9091)) +(: cnet_isa_69ebac9ea4 (IsA gas_line queue) (STV 1.0 0.9091)) +(: cnet_isa_49bd88eb55 (IsA gas_main main) (STV 1.0 0.9091)) +(: cnet_isa_7a3e603bd0 (IsA gas_maser maser) (STV 1.0 0.9091)) +(: cnet_isa_d07332157c (IsA gas_meter meter) (STV 1.0 0.9091)) +(: cnet_isa_5959993ad4 (IsA gas_oil fuel_oil) (STV 1.0 0.9091)) +(: cnet_isa_3e1b9bf22f (IsA gas_oil hydrocarbon) (STV 1.0 0.9091)) +(: cnet_isa_4ac7dd65a5 (IsA gas_oven crematory) (STV 1.0 0.9091)) +(: cnet_isa_66bb9612d1 (IsA gas_oven oven) (STV 1.0 0.9091)) +(: cnet_isa_d902bdd4e2 (IsA gas_pressure pressure) (STV 1.0 0.9091)) +(: cnet_isa_c843b23344 (IsA gas_pump pump) (STV 1.0 0.9091)) +(: cnet_isa_f30e65244f (IsA gas_range stove) (STV 1.0 0.9091)) +(: cnet_isa_85c3ee1125 (IsA gas_ring gas_burner) (STV 1.0 0.9091)) +(: cnet_isa_14bbde2a6b (IsA gas_shell bomb) (STV 1.0 0.9091)) +(: cnet_isa_da2472879f (IsA gas_system facility) (STV 1.0 0.9091)) +(: cnet_isa_abca42c4db (IsA gas_tank tank) (STV 1.0 0.9091)) +(: cnet_isa_77cac7b0d4 (IsA gas_thermometer thermometer) (STV 1.0 0.9091)) +(: cnet_isa_7afdd3d46c (IsA gas_turbine turbine) (STV 1.0 0.9091)) +(: cnet_isa_24aa9f3198 (IsA gas_turbine_ship ship) (STV 1.0 0.9091)) +(: cnet_isa_8baad14507 (IsA gas_well well) (STV 1.0 0.9091)) +(: cnet_isa_2c4388d7de (IsA gasbag bore) (STV 1.0 0.9091)) +(: cnet_isa_79dbc8a8eb (IsA gaseousness consistency) (STV 1.0 0.9091)) +(: cnet_isa_191bca46f2 (IsA gasfield field) (STV 1.0 0.9091)) +(: cnet_isa_dc5ea24e6f (IsA gasification chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_94f36d9dd1 (IsA gasket seal) (STV 1.0 0.9091)) +(: cnet_isa_ed3bca5de4 (IsA gaskin body_part) (STV 1.0 0.9091)) +(: cnet_isa_448d05a290 (IsA gaslight light) (STV 1.0 0.9091)) +(: cnet_isa_53749c9eb7 (IsA gasman employee) (STV 1.0 0.9091)) +(: cnet_isa_77015c1a06 (IsA gasmask mask) (STV 1.0 0.9091)) +(: cnet_isa_3f8ee06551 (IsA gasohol fuel) (STV 1.0 0.9091)) +(: cnet_isa_0b53475fce (IsA gasohol hydrocarbon) (STV 1.0 0.9091)) +(: cnet_isa_4845900e20 (IsA gasoline fuel) (STV 1.0 0.9091)) +(: cnet_isa_20f65495b3 (IsA gasoline liquid) (STV 1.0 0.9572)) +(: cnet_isa_5772bd4c61 (IsA gasoline hydrocarbon) (STV 1.0 0.9091)) +(: cnet_isa_e065939329 (IsA gasoline_engine internal_combustion_engine) (STV 1.0 0.9091)) +(: cnet_isa_29e23d7774 (IsA gasoline_gauge gauge) (STV 1.0 0.9091)) +(: cnet_isa_8723448239 (IsA gasoline_station service_station) (STV 1.0 0.9091)) +(: cnet_isa_6c57df2a6c (IsA gasoline_tax excise) (STV 1.0 0.9091)) +(: cnet_isa_3725339127 (IsA gasp inhalation) (STV 1.0 0.9091)) +(: cnet_isa_7677170816 (IsA gassing poisoning) (STV 1.0 0.9091)) +(: cnet_isa_dee034711d (IsA gassing chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_463ad52172 (IsA gasteromycete fungus) (STV 1.0 0.9091)) +(: cnet_isa_2ef6313e6d (IsA gasteromycete class) (STV 1.0 0.9091)) +(: cnet_isa_3791ffbf10 (IsA gasterophilidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_ea2d03cfc9 (IsA gasterophilus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_daee20975f (IsA gasterosteidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_1ddd7be168 (IsA gasterosteus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_778d93d71b (IsA gastrectomy operation) (STV 1.0 0.9091)) +(: cnet_isa_46684f2267 (IsA gastric_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_fa26a645c7 (IsA gastric_digestion digestion) (STV 1.0 0.9091)) +(: cnet_isa_92b9aa055f (IsA gastric_juice digestive_juice) (STV 1.0 0.9091)) +(: cnet_isa_ddf987d296 (IsA gastric_lavage lavage) (STV 1.0 0.9091)) +(: cnet_isa_fe2a3636ad (IsA gastric_smear alimentary_tract_smear) (STV 1.0 0.9091)) +(: cnet_isa_f3d53a338f (IsA gastric_ulcer peptic_ulcer) (STV 1.0 0.9091)) +(: cnet_isa_0530915234 (IsA gastric_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_98f93526e1 (IsA gastrin gastrointestinal_hormone) (STV 1.0 0.9091)) +(: cnet_isa_f6e690b092 (IsA gastritis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_90c30c3530 (IsA gastroboletus fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_92ac6342a6 (IsA gastroboletus_scabrosus fungus) (STV 1.0 0.9091)) +(: cnet_isa_afc89ff97e (IsA gastroboletus_turbinatus fungus) (STV 1.0 0.9091)) +(: cnet_isa_4d28c47710 (IsA gastrocnemius skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_5b75fe1594 (IsA gastrocybe fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_31c67cdea7 (IsA gastrocybe_lateritia fungus) (STV 1.0 0.9091)) +(: cnet_isa_e6c39cc937 (IsA gastroenteritis inflammatory_disease) (STV 1.0 0.9091)) +(: cnet_isa_42fca136bd (IsA gastroenterologist doctor) (STV 1.0 0.9091)) +(: cnet_isa_75e4694b88 (IsA gastroenterology medicine) (STV 1.0 0.9091)) +(: cnet_isa_65566cd5b8 (IsA gastroenterostomy operation) (STV 1.0 0.9091)) +(: cnet_isa_bbe3c93858 (IsA gastroesophageal_reflux reflux) (STV 1.0 0.9091)) +(: cnet_isa_f652dc2485 (IsA gastrogavage forced_feeding) (STV 1.0 0.9091)) +(: cnet_isa_48c22b4377 (IsA gastrointestinal_hormone hormone) (STV 1.0 0.9091)) +(: cnet_isa_28cd0d30e7 (IsA gastromy incision) (STV 1.0 0.9091)) +(: cnet_isa_f97bf25cfd (IsA gastronomy art) (STV 1.0 0.9091)) +(: cnet_isa_4de8e701b7 (IsA gastronomy cuisine) (STV 1.0 0.9091)) +(: cnet_isa_ec12c2d7fd (IsA gastroomental_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_526059e5a1 (IsA gastrophryne amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_76a5f11bbf (IsA gastropod mollusk) (STV 1.0 0.9091)) +(: cnet_isa_b08aa41770 (IsA gastropoda class) (STV 1.0 0.9091)) +(: cnet_isa_481bad5a5a (IsA gastroscope endoscope) (STV 1.0 0.9091)) +(: cnet_isa_1bf8bfb839 (IsA gastroscopy endoscopy) (STV 1.0 0.9091)) +(: cnet_isa_09bac993a1 (IsA gastrostomy operation) (STV 1.0 0.9091)) +(: cnet_isa_fdcd625db7 (IsA gastrula embryo) (STV 1.0 0.9091)) +(: cnet_isa_81cb621b2e (IsA gastrulation organic_process) (STV 1.0 0.9091)) +(: cnet_isa_7046dbfd4e (IsA gaswork workplace) (STV 1.0 0.9091)) +(: cnet_isa_5395c0e704 (IsA gat pistol) (STV 1.0 0.9091)) +(: cnet_isa_deb7397f23 (IsA gate computer_circuit) (STV 1.0 0.9091)) +(: cnet_isa_6832ea0cbb (IsA gate movable_barrier) (STV 1.0 0.9091)) +(: cnet_isa_46bc9f432f (IsA gate passageway) (STV 1.0 0.9091)) +(: cnet_isa_ede52e77aa (IsA gate gross) (STV 1.0 0.9091)) +(: cnet_isa_4f1531a227 (IsA gateau cake) (STV 1.0 0.9091)) +(: cnet_isa_9731fda004 (IsA gatecrasher intruder) (STV 1.0 0.9091)) +(: cnet_isa_8489d83c6a (IsA gatehouse house) (STV 1.0 0.9091)) +(: cnet_isa_45281cf9d6 (IsA gatekeeper person) (STV 1.0 0.9091)) +(: cnet_isa_10a4a94212 (IsA gateleg_table drop_leaf_table) (STV 1.0 0.9091)) +(: cnet_isa_a7d8020f22 (IsA gatepost post) (STV 1.0 0.9091)) +(: cnet_isa_cfa7f74009 (IsA gateway entrance) (STV 1.0 0.9091)) +(: cnet_isa_1717375068 (IsA gateway_drug drug_of_abuse) (STV 1.0 0.9091)) +(: cnet_isa_c0539944be (IsA gather collection) (STV 1.0 0.9091)) +(: cnet_isa_76a67c6d7d (IsA gather sewing) (STV 1.0 0.9091)) +(: cnet_isa_b2de2935e6 (IsA gathered_skirt skirt) (STV 1.0 0.9091)) +(: cnet_isa_1cf083c21d (IsA gatherer person) (STV 1.0 0.9091)) +(: cnet_isa_00375f6bbb (IsA gathering social_group) (STV 1.0 0.9091)) +(: cnet_isa_9003738355 (IsA gathering_place haunt) (STV 1.0 0.9091)) +(: cnet_isa_cf79c0a2de (IsA gathic iranian) (STV 1.0 0.9091)) +(: cnet_isa_24786853af (IsA gatling_gun machine_gun) (STV 1.0 0.9091)) +(: cnet_isa_38af8947ec (IsA gaucher_s_disease lipidosis) (STV 1.0 0.9091)) +(: cnet_isa_55a0342fae (IsA gaucher_s_disease monogenic_disorder) (STV 1.0 0.9091)) +(: cnet_isa_6cf41af27b (IsA gaucho cowboy) (STV 1.0 0.9091)) +(: cnet_isa_f5b2595d16 (IsA gaudery display) (STV 1.0 0.9091)) +(: cnet_isa_32bae75846 (IsA gaudy banquet) (STV 1.0 0.9091)) +(: cnet_isa_3245a48e57 (IsA gauge measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_8734230640 (IsA gauge distance) (STV 1.0 0.9091)) +(: cnet_isa_54afb43aa5 (IsA gauge thickness) (STV 1.0 0.9091)) +(: cnet_isa_d07247ed0c (IsA gauge standard) (STV 1.0 0.9091)) +(: cnet_isa_7b6b17bcd3 (IsA gauge_boson boson) (STV 1.0 0.9091)) +(: cnet_isa_99b0a3a9e7 (IsA gaul kelt) (STV 1.0 0.9091)) +(: cnet_isa_d31aad6d33 (IsA gaultheria dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_54292e3f95 (IsA gauntlet corporal_punishment) (STV 1.0 0.9091)) +(: cnet_isa_d0b44dac58 (IsA gauntlet glove) (STV 1.0 0.9091)) +(: cnet_isa_d25f250af0 (IsA gauntlet challenge) (STV 1.0 0.9091)) +(: cnet_isa_cfe6fdfb8d (IsA gaur asian_wild_ox) (STV 1.0 0.9091)) +(: cnet_isa_61b24e8c98 (IsA gauss flux_density_unit) (STV 1.0 0.9091)) +(: cnet_isa_a3557d05b1 (IsA gauze net) (STV 1.0 0.9091)) +(: cnet_isa_fa365f6ab8 (IsA gauze cotton) (STV 1.0 0.9091)) +(: cnet_isa_c167fd7d3c (IsA gavel mallet) (STV 1.0 0.9091)) +(: cnet_isa_7d4819fa99 (IsA gavia bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_63ffb08530 (IsA gavial crocodilian_reptile) (STV 1.0 0.9091)) +(: cnet_isa_b31b89b8d6 (IsA gavialidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_e7480a6008 (IsA gavialis reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_f66afff4ba (IsA gavidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_8183333625 (IsA gaviiform_seabird seabird) (STV 1.0 0.9091)) +(: cnet_isa_c56b77e8f9 (IsA gaviiforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_a43437403e (IsA gavotte social_dancing) (STV 1.0 0.9091)) +(: cnet_isa_151951abe0 (IsA gavotte dance_music) (STV 1.0 0.9091)) +(: cnet_isa_1a2a691de5 (IsA gawker spectator) (STV 1.0 0.9091)) +(: cnet_isa_b4cac5ebf9 (IsA gawkiness awkwardness) (STV 1.0 0.9091)) +(: cnet_isa_154adb7543 (IsA gay slang_term_for_homosexual) (STV 1.0 0.9572)) +(: cnet_isa_02b3864b69 (IsA gay_liberation_movement campaign) (STV 1.0 0.9091)) +(: cnet_isa_e25fc946c1 (IsA gay_lussac_s_law law) (STV 1.0 0.9091)) +(: cnet_isa_a721518d32 (IsA gayal asian_wild_ox) (STV 1.0 0.9091)) +(: cnet_isa_6407c3bd43 (IsA gaylussacia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_923bf1bee6 (IsA gazania flower) (STV 1.0 0.9091)) +(: cnet_isa_17428dd64a (IsA gaze stare) (STV 1.0 0.9091)) +(: cnet_isa_53c00736d4 (IsA gazebo building) (STV 1.0 0.9091)) +(: cnet_isa_ec7a2d408b (IsA gazella mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_afb8b62b7f (IsA gazella_subgutturosa gazelle) (STV 1.0 0.9091)) +(: cnet_isa_e20f1c15dd (IsA gazelle antelope) (STV 1.0 0.9091)) +(: cnet_isa_24c6d93163 (IsA gazette newspaper) (STV 1.0 0.9091)) +(: cnet_isa_07313cb42e (IsA gazetteer dictionary) (STV 1.0 0.9091)) +(: cnet_isa_b53d638417 (IsA gazetteer journalist) (STV 1.0 0.9091)) +(: cnet_isa_1675309d40 (IsA gazpacho soup) (STV 1.0 0.9091)) +(: cnet_isa_87c40d6bfa (IsA gb computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_afb4acad5b (IsA gean sweet_cherry) (STV 1.0 0.9091)) +(: cnet_isa_b724bdbb0c (IsA gear equipment) (STV 1.0 0.9091)) +(: cnet_isa_7a2e12fb76 (IsA gear mechanism) (STV 1.0 0.9091)) +(: cnet_isa_12e9f4741d (IsA gear wheel) (STV 1.0 0.9091)) +(: cnet_isa_86c6f7262a (IsA gearbox shell) (STV 1.0 0.9091)) +(: cnet_isa_d7d678150f (IsA gearing wheelwork) (STV 1.0 0.9091)) +(: cnet_isa_7e7a7ccce7 (IsA gearset gear) (STV 1.0 0.9091)) +(: cnet_isa_a03b835b87 (IsA gearshift mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_c16b878067 (IsA geastraceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_8c25520e06 (IsA geastrum fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_9029e55e0e (IsA geastrum_coronatum earthstar) (STV 1.0 0.9091)) +(: cnet_isa_76315ceb7d (IsA gebang_palm fan_palm) (STV 1.0 0.9091)) +(: cnet_isa_8a7bafc7ca (IsA gebhard_leberecht_von_blucher general) (STV 1.0 0.9091)) +(: cnet_isa_34e71f5457 (IsA gecko reptile) (STV 1.0 0.9091)) +(: cnet_isa_d15182aa0d (IsA gecko lizard) (STV 1.0 0.9091)) +(: cnet_isa_d6c8680c87 (IsA gee_gee horse) (STV 1.0 0.9091)) +(: cnet_isa_1e459bed26 (IsA geebung shrub) (STV 1.0 0.9091)) +(: cnet_isa_97dcad4be2 (IsA geek performer) (STV 1.0 0.9091)) +(: cnet_isa_087e536f86 (IsA geen primary_colour) (STV 1.0 0.9091)) +(: cnet_isa_a5ac9e5d4c (IsA geezer man) (STV 1.0 0.9091)) +(: cnet_isa_6006dee0b0 (IsA gefilte_fish dish) (STV 1.0 0.9091)) +(: cnet_isa_ffb77bc224 (IsA geglossaceae ascomycete) (STV 1.0 0.9091)) +(: cnet_isa_0a7738dfa1 (IsA gehenna hell) (STV 1.0 0.9091)) +(: cnet_isa_03d858c1b3 (IsA geiger_counter counter_tube) (STV 1.0 0.9091)) +(: cnet_isa_9919e64f38 (IsA geiger_tube ionization_chamber) (STV 1.0 0.9091)) +(: cnet_isa_aea4f32c05 (IsA geisha nipponese) (STV 1.0 0.9091)) +(: cnet_isa_b58173ca4b (IsA geisha woman) (STV 1.0 0.9091)) +(: cnet_isa_c16f55285b (IsA gekkonidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_e4641d66a3 (IsA gel colloid) (STV 1.0 0.9091)) +(: cnet_isa_d9cc6d5459 (IsA gelatin membrane) (STV 1.0 0.9091)) +(: cnet_isa_46c4f6fde2 (IsA gelatin dainty) (STV 1.0 0.9091)) +(: cnet_isa_158d4c1b3a (IsA gelatin scleroprotein) (STV 1.0 0.9091)) +(: cnet_isa_af9154eb35 (IsA gelatin_dessert gelatin) (STV 1.0 0.9091)) +(: cnet_isa_5a524d96d0 (IsA gelatinousness viscosity) (STV 1.0 0.9091)) +(: cnet_isa_5273dcba30 (IsA gelding male_horse) (STV 1.0 0.9091)) +(: cnet_isa_642be774fd (IsA gelechia arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_72f4dcde71 (IsA gelechia_gossypiella gelechiid) (STV 1.0 0.9091)) +(: cnet_isa_107929ec81 (IsA gelechiid moth) (STV 1.0 0.9091)) +(: cnet_isa_a270bc171c (IsA gelechiidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_c8d6b94918 (IsA gelignite dynamite) (STV 1.0 0.9091)) +(: cnet_isa_366eec1a2e (IsA gelsemium dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2c8ef3fb19 (IsA gem art) (STV 1.0 0.9091)) +(: cnet_isa_cb54d75165 (IsA gem crystal) (STV 1.0 0.9091)) +(: cnet_isa_8d19c5b51d (IsA gem_cutter cutter) (STV 1.0 0.9091)) +(: cnet_isa_bc55a2e2e8 (IsA geminate consonant) (STV 1.0 0.9091)) +(: cnet_isa_5db9520c4e (IsA gemination repetition) (STV 1.0 0.9091)) +(: cnet_isa_a18fdacaca (IsA gemini person) (STV 1.0 0.9091)) +(: cnet_isa_5ee1e57f3d (IsA gemma reproductive_structure) (STV 1.0 0.9091)) +(: cnet_isa_1142de84bc (IsA gemmule hypothesis) (STV 1.0 0.9091)) +(: cnet_isa_37d6e635ab (IsA gempylid percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_02c1d1463f (IsA gempylidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_282a89767b (IsA gempylus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_e9b9086e97 (IsA gemsbok oryx) (STV 1.0 0.9091)) +(: cnet_isa_26c9094c24 (IsA gen information) (STV 1.0 0.9091)) +(: cnet_isa_c65698e519 (IsA gendarme policeman) (STV 1.0 0.9091)) +(: cnet_isa_ec20687a97 (IsA gendarmerie police) (STV 1.0 0.9091)) +(: cnet_isa_ca15bfec24 (IsA gender grammatical_category) (STV 1.0 0.9091)) +(: cnet_isa_d3d6b541d2 (IsA gender_agreement agreement) (STV 1.0 0.9091)) +(: cnet_isa_53432ed1e3 (IsA gender_identity identity) (STV 1.0 0.9091)) +(: cnet_isa_bf3dc43c65 (IsA gender_role role) (STV 1.0 0.9091)) +(: cnet_isa_2b4ee14183 (IsA gene sequence) (STV 1.0 0.9091)) +(: cnet_isa_9f7e23cf1e (IsA gene_chip chip) (STV 1.0 0.9091)) +(: cnet_isa_315d8e873b (IsA gene_expression organic_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_be2252e978 (IsA genealogist expert) (STV 1.0 0.9091)) +(: cnet_isa_cc4432fb4f (IsA genealogy discipline) (STV 1.0 0.9091)) +(: cnet_isa_db2ec53dd6 (IsA genealogy kin) (STV 1.0 0.9091)) +(: cnet_isa_304a83eed3 (IsA general high_rank) (STV 1.0 0.9091)) +(: cnet_isa_5af629276b (IsA general fact) (STV 1.0 0.9091)) +(: cnet_isa_5651e5d191 (IsA general general_officer) (STV 1.0 0.9091)) +(: cnet_isa_f3479755f2 (IsA general head) (STV 1.0 0.9091)) +(: cnet_isa_7909e0b821 (IsA general_agreement_on_tariff_and_trade united_nation_agency) (STV 1.0 0.9091)) +(: cnet_isa_207ef00ad6 (IsA general_anesthesia anesthesia) (STV 1.0 0.9091)) +(: cnet_isa_c1c9b226a1 (IsA general_anesthetic anesthetic) (STV 1.0 0.9091)) +(: cnet_isa_ea6b653ee3 (IsA general_assembly deliberative_assembly) (STV 1.0 0.9091)) +(: cnet_isa_59c810dc87 (IsA general_delivery unit) (STV 1.0 0.9091)) +(: cnet_isa_6880f7821a (IsA general_election election) (STV 1.0 0.9091)) +(: cnet_isa_797fd3928f (IsA general_ledger ledger) (STV 1.0 0.9091)) +(: cnet_isa_339a00e5ac (IsA general_lien lien) (STV 1.0 0.9091)) +(: cnet_isa_ca165e1b55 (IsA general_manager head) (STV 1.0 0.9091)) +(: cnet_isa_6b18237ac8 (IsA general_officer commissioned_military_officer) (STV 1.0 0.9091)) +(: cnet_isa_7744c5b093 (IsA general_practitioner doctor) (STV 1.0 0.9091)) +(: cnet_isa_29aa882692 (IsA general_purpose_bomb bomb) (STV 1.0 0.9091)) +(: cnet_isa_d0f0f1813d (IsA general_relativity relativity) (STV 1.0 0.9091)) +(: cnet_isa_f7bcda841e (IsA general_service_administration independent_agency) (STV 1.0 0.9091)) +(: cnet_isa_9639b7816f (IsA general_staff staff) (STV 1.0 0.9091)) +(: cnet_isa_dc336f6937 (IsA general_verdict verdict) (STV 1.0 0.9091)) +(: cnet_isa_32a1c2e34c (IsA generalist scholar) (STV 1.0 0.9091)) +(: cnet_isa_b295a19752 (IsA generality quality) (STV 1.0 0.9091)) +(: cnet_isa_bd35454116 (IsA generalization colligation) (STV 1.0 0.9091)) +(: cnet_isa_c60b4b730d (IsA generalization idea) (STV 1.0 0.9091)) +(: cnet_isa_09481aa874 (IsA generalization transfer) (STV 1.0 0.9091)) +(: cnet_isa_5c24005d17 (IsA generalized_anxiety_disorder anxiety_disorder) (STV 1.0 0.9091)) +(: cnet_isa_5cfdce8b2a (IsA generally_accepted_accounting_practice collection) (STV 1.0 0.9091)) +(: cnet_isa_4953ab61a9 (IsA generalship position) (STV 1.0 0.9091)) +(: cnet_isa_5636e02ff5 (IsA generalship leadership) (STV 1.0 0.9091)) +(: cnet_isa_a81624b116 (IsA generation production) (STV 1.0 0.9091)) +(: cnet_isa_dcab693dc0 (IsA generation reproduction) (STV 1.0 0.9091)) +(: cnet_isa_51049e7161 (IsA generation biological_group) (STV 1.0 0.9091)) +(: cnet_isa_9af79492dd (IsA generation phase) (STV 1.0 0.9091)) +(: cnet_isa_f04cb49d8f (IsA generation time_period) (STV 1.0 0.9091)) +(: cnet_isa_f867fd8cb5 (IsA generation_gap gap) (STV 1.0 0.9091)) +(: cnet_isa_b566e165cf (IsA generation_x generation) (STV 1.0 0.9091)) +(: cnet_isa_f355589fcf (IsA generative_grammar syntax) (STV 1.0 0.9091)) +(: cnet_isa_c1eebe5941 (IsA generator apparatus) (STV 1.0 0.9091)) +(: cnet_isa_53db35b851 (IsA generator electronic_device) (STV 1.0 0.9091)) +(: cnet_isa_e8a3f301b9 (IsA generator engine) (STV 1.0 0.9091)) +(: cnet_isa_b4e085fca4 (IsA generator maker) (STV 1.0 0.9091)) +(: cnet_isa_00fbb673bd (IsA generic merchandise) (STV 1.0 0.9091)) +(: cnet_isa_1b4e1e2513 (IsA generic_drug drug) (STV 1.0 0.9091)) +(: cnet_isa_bf32002048 (IsA generic_drug generic) (STV 1.0 0.9091)) +(: cnet_isa_2784faf8ff (IsA generic_noun noun) (STV 1.0 0.9091)) +(: cnet_isa_6aeb259d57 (IsA generic_wine wine) (STV 1.0 0.9091)) +(: cnet_isa_67d60e64c2 (IsA generosity sharing) (STV 1.0 0.9091)) +(: cnet_isa_b9adbdf1c4 (IsA generosity kindness) (STV 1.0 0.9091)) +(: cnet_isa_23c72ebd7e (IsA genesis beginning) (STV 1.0 0.9091)) +(: cnet_isa_32870d8184 (IsA genet viverrine) (STV 1.0 0.9091)) +(: cnet_isa_162394851b (IsA genetic_code ordering) (STV 1.0 0.9091)) +(: cnet_isa_d23227bf23 (IsA genetic_counseling guidance) (STV 1.0 0.9091)) +(: cnet_isa_87448eefae (IsA genetic_disease disease) (STV 1.0 0.9091)) +(: cnet_isa_2aa654ae05 (IsA genetic_engineering biotechnology) (STV 1.0 0.9091)) +(: cnet_isa_b657148bcf (IsA genetic_map arrangement) (STV 1.0 0.9091)) +(: cnet_isa_2fca8046a8 (IsA genetic_marker gene) (STV 1.0 0.9091)) +(: cnet_isa_ee732cf59f (IsA genetic_profiling procedure) (STV 1.0 0.9091)) +(: cnet_isa_a75b5b9cbc (IsA genetic_screening screening) (STV 1.0 0.9091)) +(: cnet_isa_c9c7cb5f1a (IsA geneticism belief) (STV 1.0 0.9091)) +(: cnet_isa_571d6eb49d (IsA geneticist biologist) (STV 1.0 0.9091)) +(: cnet_isa_9d72ac34fb (IsA genetic biology) (STV 1.0 0.9091)) +(: cnet_isa_6c1cf310dc (IsA genetta mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_7689549ce0 (IsA geneva gin) (STV 1.0 0.9091)) +(: cnet_isa_cded63765a (IsA geneva_gown academic_gown) (STV 1.0 0.9091)) +(: cnet_isa_53d2561e83 (IsA genevan necessitarian) (STV 1.0 0.9091)) +(: cnet_isa_fff1512dfe (IsA genevan swiss_people) (STV 1.0 0.9091)) +(: cnet_isa_f214a91b7f (IsA genicular_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_b0692ec0a3 (IsA geniculate_body neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_7cc06327b6 (IsA genie spirit) (STV 1.0 0.9091)) +(: cnet_isa_8a45bf141a (IsA genip edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_6e6a7604c6 (IsA genipa fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_08a36bf496 (IsA genipap edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_4b19ca423e (IsA genipap_fruit genipa) (STV 1.0 0.9091)) +(: cnet_isa_7073d465af (IsA genista rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_606f45f680 (IsA genital_herpe herpe_simplex) (STV 1.0 0.9091)) +(: cnet_isa_1ccc66f555 (IsA genital_herpe venereal_disease) (STV 1.0 0.9091)) +(: cnet_isa_996e801ef5 (IsA genital_personality personality) (STV 1.0 0.9091)) +(: cnet_isa_7eca3b7f71 (IsA genital_stage phase) (STV 1.0 0.9091)) +(: cnet_isa_6365ee996f (IsA genital_torture torture) (STV 1.0 0.9091)) +(: cnet_isa_690f6da305 (IsA genital_wart wart) (STV 1.0 0.9091)) +(: cnet_isa_de0146d326 (IsA genitalia reproductive_organ) (STV 1.0 0.9091)) +(: cnet_isa_9fb153a3a9 (IsA genitive oblique) (STV 1.0 0.9091)) +(: cnet_isa_6c93854195 (IsA genitor progenitor) (STV 1.0 0.9091)) +(: cnet_isa_5179aebbad (IsA genius creativity) (STV 1.0 0.9091)) +(: cnet_isa_267a71b657 (IsA genius intellectual) (STV 1.0 0.9091)) +(: cnet_isa_07dce861ef (IsA genius_loci guardian_spirit) (STV 1.0 0.9091)) +(: cnet_isa_d91ab02d4b (IsA genius_loci atmosphere) (STV 1.0 0.9091)) +(: cnet_isa_f0f19e4f1f (IsA genlisea carnivorous_plant) (STV 1.0 0.9091)) +(: cnet_isa_3e62c87e38 (IsA genocide crime) (STV 1.0 0.9339)) +(: cnet_isa_08205c5b44 (IsA genocide killing) (STV 1.0 0.9091)) +(: cnet_isa_c3cb02925c (IsA genoese italian) (STV 1.0 0.9091)) +(: cnet_isa_28267a6c9f (IsA genoise cake) (STV 1.0 0.9091)) +(: cnet_isa_c0b5992f8e (IsA genome ordering) (STV 1.0 0.9091)) +(: cnet_isa_4ba18401af (IsA genomic genetic) (STV 1.0 0.9091)) +(: cnet_isa_a1a81d7ce4 (IsA genotype constitution) (STV 1.0 0.9091)) +(: cnet_isa_389f8a3247 (IsA genotype biological_group) (STV 1.0 0.9091)) +(: cnet_isa_c03a97cacb (IsA genre art) (STV 1.0 0.9091)) +(: cnet_isa_59bfcae15d (IsA genre kind) (STV 1.0 0.9091)) +(: cnet_isa_8522b52041 (IsA genre_painter painter) (STV 1.0 0.9091)) +(: cnet_isa_9a79a46241 (IsA genre_painting genre) (STV 1.0 0.9091)) +(: cnet_isa_4d40776e0e (IsA gent gentleman) (STV 1.0 0.9091)) +(: cnet_isa_5e9da19e4b (IsA gentian flower) (STV 1.0 0.9091)) +(: cnet_isa_c09d92c67c (IsA gentian_violet antibacterial) (STV 1.0 0.9091)) +(: cnet_isa_3469361e8c (IsA gentian_violet antifungal) (STV 1.0 0.9091)) +(: cnet_isa_cca228031c (IsA gentian_violet stain) (STV 1.0 0.9091)) +(: cnet_isa_fba01ed281 (IsA gentian_violet vermifuge) (STV 1.0 0.9091)) +(: cnet_isa_24056b110b (IsA gentiana dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_53d8ebef9a (IsA gentianaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_698da32ff1 (IsA gentianale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_d01dabefa7 (IsA gentianella dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_adc181e2ba (IsA gentianella gentian) (STV 1.0 0.9091)) +(: cnet_isa_0649c2f786 (IsA gentianopsid_procera fringed_gentian) (STV 1.0 0.9091)) +(: cnet_isa_951286632f (IsA gentianopsis dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b67740ff96 (IsA gentianopsis_crinita fringed_gentian) (STV 1.0 0.9091)) +(: cnet_isa_0cadbf2f28 (IsA gentianopsis_detonsa fringed_gentian) (STV 1.0 0.9091)) +(: cnet_isa_198d42ee1b (IsA gentianopsis_thermalis fringed_gentian) (STV 1.0 0.9091)) +(: cnet_isa_a37ba9aff1 (IsA gentile christian) (STV 1.0 0.9091)) +(: cnet_isa_2c93b9ce08 (IsA gentile person) (STV 1.0 0.9091)) +(: cnet_isa_212ef4725d (IsA gentle_breeze breeze) (STV 1.0 0.9091)) +(: cnet_isa_f0336337ee (IsA gentlefolk folk) (STV 1.0 0.9091)) +(: cnet_isa_12e47d7f6e (IsA gentleman man) (STV 1.0 0.9091)) +(: cnet_isa_29da8325b9 (IsA gentleman_at_arm gentleman) (STV 1.0 0.9091)) +(: cnet_isa_3808045247 (IsA gentlemen_s_agreement agreement) (STV 1.0 0.9091)) +(: cnet_isa_fc86fe3a00 (IsA gentleness manner) (STV 1.0 0.9091)) +(: cnet_isa_0c30d5dfe8 (IsA gentrification restoration) (STV 1.0 0.9091)) +(: cnet_isa_0e661b4508 (IsA gentry upper_class) (STV 1.0 0.9091)) +(: cnet_isa_8225068b27 (IsA genuflection bow) (STV 1.0 0.9091)) +(: cnet_isa_38a7e4f216 (IsA genuineness actuality) (STV 1.0 0.9091)) +(: cnet_isa_5eed6431c9 (IsA genus taxonomic_group) (STV 1.0 0.9091)) +(: cnet_isa_1a5eee19d8 (IsA genus kind) (STV 1.0 0.9091)) +(: cnet_isa_77f232b36f (IsA genus_abelia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_86f82348eb (IsA genus_acacia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d72fcb43a6 (IsA genus_acanthus asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a64738b338 (IsA genus_achillea asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d5639ccc7a (IsA genus_achimene asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4f9abfaf96 (IsA genus_actinomyce bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_b0e81c0fd5 (IsA genus_addax mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_0f8e37490f (IsA genus_aegyptopithecus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_8b8bc0a7db (IsA genus_aepyornis bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_d27d18e07a (IsA genus_aeride monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ddcf28c8a3 (IsA genus_aeschynanthus asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_46004da262 (IsA genus_afropavo bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_2e8256967d (IsA genus_agama reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_182d1c5021 (IsA genus_agapanthus liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1e67221ae5 (IsA genus_agave liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_21e02e02d7 (IsA genus_ageratum asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0fd67e5cbf (IsA genus_agrimonia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1c636c4caf (IsA genus_ailanthus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f061c14b3a (IsA genus_albizia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9c2e71343c (IsA genus_albuca liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_bee4e7b099 (IsA genus_allamanda dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2d2f9deede (IsA genus_alligator reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_44d31a7baa (IsA genus_allosaurus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_a4c7a29ae1 (IsA genus_alocasia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6add64edd0 (IsA genus_aloe liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_91a6181efe (IsA genus_alstroemeria liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_65ad0cb352 (IsA genus_althaea dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8e790027fb (IsA genus_amaryllis liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_fb00425ba9 (IsA genus_ambrosia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f16faa1082 (IsA genus_ammobium asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_42d366e6d0 (IsA genus_amoeba protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_3ba2cf029c (IsA genus_amorpha rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e8623b01e7 (IsA genus_amorphophallus monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_94cecd1bd9 (IsA genus_amphioxus chordate_genus) (STV 1.0 0.9091)) +(: cnet_isa_c2985c3c5e (IsA genus_amphiuma amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_62bc999a48 (IsA genus_anatotitan reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_d45fda8fa9 (IsA genus_anchusa plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_d539e5bd16 (IsA genus_andrena arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_24559fc9bf (IsA genus_andromeda dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_21d9edbb7e (IsA genus_andryala asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9643b3893e (IsA genus_anemone magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c82a43f84f (IsA genus_angelica rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b73dfe0be6 (IsA genus_angelica umbelliferae) (STV 1.0 0.9091)) +(: cnet_isa_c72d48a73f (IsA genus_angiopteris fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_c2b7f0b7c8 (IsA genus_angrecum monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_35d80ac3a1 (IsA genus_anhinga bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_7d14c73e67 (IsA genus_ankylosaurus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_1fa5afac5a (IsA genus_anoa mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_6aea32c053 (IsA genus_anomalop fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_d961ac8918 (IsA genus_anomalopteryx bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_8994bddea9 (IsA genus_anthurium monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_83b6c394a8 (IsA genus_apatosaurus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_f228527f37 (IsA genus_appendicularia chordate_genus) (STV 1.0 0.9091)) +(: cnet_isa_b8a55456f5 (IsA genus_apteryx bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_bba962a54f (IsA genus_aquilegia magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_735aa6ef99 (IsA genus_aralia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6ea6415453 (IsA genus_araucaria gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_78803650c2 (IsA genus_arbutus dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b9134dc70f (IsA genus_arcella protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_5ce960f59b (IsA genus_archaeopteryx bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_a54f2251ed (IsA genus_archaeornis bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_9445ebc060 (IsA genus_architeuthis arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_751e56e128 (IsA genus_areca monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3b49040009 (IsA genus_arethusa monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3bf33e206c (IsA genus_argemone dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ff4d9b45fb (IsA genus_argentinosaurus titanosaur) (STV 1.0 0.9091)) +(: cnet_isa_24a531eeee (IsA genus_arnica asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c0688c8f94 (IsA genus_artemisia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5005fc2125 (IsA genus_arum monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_fe7386b8c1 (IsA genus_asparagus liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0a52369f02 (IsA genus_aspidistra liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_22d3ea5f8d (IsA genus_aster asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e5a2eed9b7 (IsA genus_astilbe rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2a95eb49c5 (IsA genus_astrantia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_053f9ff02a (IsA genus_australopithecus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_e87fd1af8c (IsA genus_ayapana rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a567fd27a2 (IsA genus_babesia protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_722e96b131 (IsA genus_bacillus bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_1ff4f7b055 (IsA genus_banksia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_aa6277f177 (IsA genus_barosaurus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_ce901237c0 (IsA genus_begonia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2ea356bfbb (IsA genus_bergenia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_36fad86841 (IsA genus_beroe ctenophore_genus) (STV 1.0 0.9091)) +(: cnet_isa_90fb399e47 (IsA genus_bison mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_96eba151b9 (IsA genus_bletia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_bffc7ca207 (IsA genus_bocconia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b9018f7b48 (IsA genus_borrelia bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_3f2359a6ca (IsA genus_bougainvillea caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3746dade00 (IsA genus_brassavola monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f3d53c7e28 (IsA genus_brodiaea liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f3ece111a5 (IsA genus_browallia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_79eb9f6256 (IsA genus_bryanthus dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9490aa9246 (IsA genus_bryonia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b19fe3da86 (IsA genus_buckleya dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_68f8b10258 (IsA genus_buddleia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_36a90015e7 (IsA genus_bufo amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_e89ab67c60 (IsA genus_cabassous mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_daaec91f10 (IsA genus_caiman reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_27ab436aa5 (IsA genus_caladenia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_fcc0fb609e (IsA genus_caladium monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4a916a0a28 (IsA genus_calamus monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8ceddd9ff4 (IsA genus_calanthe monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ef718b2021 (IsA genus_calceolaria asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c4ff1292bc (IsA genus_calendula asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_943114a5ba (IsA genus_calliandra rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_fa274a45a4 (IsA genus_calosoma arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_f0f052b1ef (IsA genus_calypso monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f2815012d8 (IsA genus_camellia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3951994b6f (IsA genus_campanula plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_c572a933ca (IsA genus_candida fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_a8041dd3bd (IsA genus_canella dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ba3d8b7637 (IsA genus_canna monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_83a6d19e48 (IsA genus_cannabis dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a7b81cb6a1 (IsA genus_capsicum asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f2abe832a7 (IsA genus_caragana rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d3c704d6ee (IsA genus_carissa dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_23ab7c0b8b (IsA genus_carpenteria rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_24226ccd5a (IsA genus_cassia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7aeaf4b28a (IsA genus_casuarina dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_342ba0aa27 (IsA genus_catalpa asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f59b8933d7 (IsA genus_catananche asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7386fb72fd (IsA genus_cathaya gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_1b05d6742b (IsA genus_cattleya monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2611563108 (IsA genus_ceraste reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_a6cdb58d70 (IsA genus_ceratodus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_2e6d1536bb (IsA genus_ceratosaurus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_c70e21ccb5 (IsA genus_ceratozamia gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_51204b7ef2 (IsA genus_chaenactis asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2298da145d (IsA genus_chaetodon fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_ec46999c38 (IsA genus_chimaera fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_2c02bed974 (IsA genus_chinchilla mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_58f374b348 (IsA genus_chiton mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_5ed713fcba (IsA genus_chlamydia bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_c2518debe0 (IsA genus_chlorella protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_afffc861b3 (IsA genus_chlorophyllum fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_cbce38349b (IsA genus_christella fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_1e9553777d (IsA genus_chrysanthemum asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b393194855 (IsA genus_chunga bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_e52b729e01 (IsA genus_cicada arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_c9725cdba5 (IsA genus_cinchona asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_16b9366259 (IsA genus_citrus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3dbcbffdcf (IsA genus_clematis magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5eb36de6f4 (IsA genus_cleome dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ade128cec2 (IsA genus_clianthus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_20ab450e75 (IsA genus_clintonia liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7092aaf0ba (IsA genus_clostridium bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_16f0812ba3 (IsA genus_clusia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e563b643cb (IsA genus_coccus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_ce5931fbde (IsA genus_coelogyne monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_29ee585390 (IsA genus_coelophysis reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_3e0578fb79 (IsA genus_coleus asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_dc9d7b6bee (IsA genus_colobus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_9e09787d75 (IsA genus_columnea asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_01f4e59991 (IsA genus_combretum dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ba6f12cb39 (IsA genus_commelina monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_193709ead9 (IsA genus_compsognathus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_4588eefe47 (IsA genus_convolvulus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5126e6668f (IsA genus_coreopsis asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a972d26465 (IsA genus_coronilla rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_671a8de25f (IsA genus_corozo monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_43ea67a3ae (IsA genus_corynebacterium bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_06952d1a3c (IsA genus_coryphantha caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_86b2504a7c (IsA genus_corythosaurus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_b60d331b11 (IsA genus_coscoroba bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_2174288ea4 (IsA genus_cosmo asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b83f314a99 (IsA genus_costia protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_64b7941349 (IsA genus_cotinga bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_d05352e334 (IsA genus_cotoneaster rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4624c8c21e (IsA genus_crocus liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8104828f90 (IsA genus_crotalaria rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_75c24252a3 (IsA genus_croton rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d1f1d6f4f3 (IsA genus_cryptocoryne monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_58ab7f7e06 (IsA genus_cyclamen dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c921c44b5d (IsA genus_cyclop arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_fa3155a203 (IsA genus_cymbidium monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b680f4eaa3 (IsA genus_cynancum dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d86773b13f (IsA genus_cyrilla dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_088e1342a6 (IsA genus_dahlia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_36be2badf2 (IsA genus_daphne dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_52209cff2c (IsA genus_daphnia arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_85552208ae (IsA genus_davallia fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_8cae75a36e (IsA genus_deinocheirus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_8b74149734 (IsA genus_deinonychus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_b56741785e (IsA genus_delphinium magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e4838029b5 (IsA genus_dendrobium monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e079b79926 (IsA genus_derris rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6faf938faa (IsA genus_deutzia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b0ca584cac (IsA genus_diapensia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_16e40f2a84 (IsA genus_diapheromera arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_38aee4c13e (IsA genus_dicamptodon amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_4a734d052f (IsA genus_dichondra dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9d4bf13110 (IsA genus_dictostylium fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_9bab3d1a7d (IsA genus_difflugia protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_e0e3907e74 (IsA genus_digitalis asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0b31c5080c (IsA genus_dillenia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_30e8917816 (IsA genus_dimetrodon reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_f6dbb771b4 (IsA genus_diomedea bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_3768f5cdb9 (IsA genus_dioon gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_bcf9e8ca06 (IsA genus_diplococcus bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_fa03ea4cd6 (IsA genus_diplodocus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_4b2bba73dc (IsA genus_disa monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_75fa9db190 (IsA genus_discina fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_b1eee74f45 (IsA genus_doliolum chordate_genus) (STV 1.0 0.9091)) +(: cnet_isa_95558d9b31 (IsA genus_dombeya dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_98ef0d8d33 (IsA genus_doodia fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_68080ca8ea (IsA genus_draba dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_844e80dcb8 (IsA genus_dracaena liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8ffbcae059 (IsA genus_dracontium monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_62fedd9c60 (IsA genus_drosophila arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_e0593e865d (IsA genus_drypis caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3b6ecf1b51 (IsA genus_dugong mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_614581c5e1 (IsA genus_echinocactus caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c200560a85 (IsA genus_echinococcus worm_genus) (STV 1.0 0.9091)) +(: cnet_isa_6b0f71126a (IsA genus_edaphosaurus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_517021eb45 (IsA genus_edmontosaurus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_653d68bc96 (IsA genus_eimeria protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_0f693f723f (IsA genus_elsholtzia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6060fbfa3c (IsA genus_encephalarto gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_e0ed324add (IsA genus_engelmannia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9f4ddef2b3 (IsA genus_eoraptor reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_3a90f5b4bc (IsA genus_epacris dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_78523ccec1 (IsA genus_ephedra gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_485398abd1 (IsA genus_epiphyllum caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_076452bb63 (IsA genus_episcia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5d43a0f22e (IsA genus_eptatretus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_59be4721bd (IsA genus_erechtite asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3d3b1264a4 (IsA genus_erica dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_96a4c5fd9b (IsA genus_eriogonum dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_dd56d9ffd4 (IsA genus_erwinia bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_1f07bd1a3f (IsA genus_erythrina rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1ba184f056 (IsA genus_escherichia bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_849de1aeae (IsA genus_eucalyptus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_fa3466e61b (IsA genus_euglena protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_42b80b0749 (IsA genus_feijoa dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_cc8cb2dc95 (IsA genus_filago asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b2dad16205 (IsA genus_forestiera dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c2a2e2515a (IsA genus_forsythia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8c3dd9b9de (IsA genus_fothergilla plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_a77ee65595 (IsA genus_freesia liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1e1a80b2af (IsA genus_fuchsia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_fbc866cbbd (IsA genus_fucus protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_1e7d4bde24 (IsA genus_fusarium fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_14c1bd75ab (IsA genus_gaillardia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_cad042fffc (IsA genus_galago mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_075bdb4f10 (IsA genus_galax dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3bcdb78ea9 (IsA genus_galictis mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_5a52a05357 (IsA genus_gardenia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_650ad2c8c3 (IsA genus_gastrolobium rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_496d08d16a (IsA genus_gazania asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8d9f48c46a (IsA genus_genipa asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5991700b5f (IsA genus_genlisea plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_53c163520b (IsA genus_geranium plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_75d141e963 (IsA genus_gerardia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_042d3e4ef3 (IsA genus_gesneria asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_77c4002170 (IsA genus_giardia protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_a46281b4d2 (IsA genus_ginkgo gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_608c5f5a36 (IsA genus_gladiolus liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f53bb97571 (IsA genus_gliricidia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_89541b37ef (IsA genus_globigerina protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_dc2bb23d0f (IsA genus_gloriosa liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_00436fda5d (IsA genus_glossina arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_436ed54873 (IsA genus_gloxinia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6a5c32802b (IsA genus_gnetum gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_7647c21b55 (IsA genus_gorilla mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_4fed3d6d5f (IsA genus_grampus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_a6bd29966c (IsA genus_grevillea dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a50495a86d (IsA genus_grison mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_78388c77ee (IsA genus_gyromitra fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_1e987eef8a (IsA genus_halogeton caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4006196f9e (IsA genus_hamelia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_fb9f58cb89 (IsA genus_harpullia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_cfc9d20b49 (IsA genus_helianthemum dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b65a142a12 (IsA genus_helianthus asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_64d13a698a (IsA genus_heliophila dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e92fa09a5f (IsA genus_heliopsis asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0c8fd61c76 (IsA genus_helvella fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_0d6e04b561 (IsA genus_hepatica magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f95a67611e (IsA genus_herrerasaurus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_5a8ef4f68a (IsA genus_hibiscus dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_da342b4116 (IsA genus_hippeastrum liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4f37a0d388 (IsA genus_hippopotamus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_f55f9a45d6 (IsA genus_homo mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_7ceb285bab (IsA genus_hovea rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1f32370900 (IsA genus_hoya dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_cf5b8178a0 (IsA genus_hyacinthus liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_16d723f64a (IsA genus_hyaena mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_049cfe2364 (IsA genus_hydra coelenterate_genus) (STV 1.0 0.9091)) +(: cnet_isa_3951972a44 (IsA genus_hydrangea rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_aee5693939 (IsA genus_hydrilla monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_342cd091f4 (IsA genus_ibero_mesornis bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_5d0ed79a57 (IsA genus_ibis bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_d26324d331 (IsA genus_ichthyosaurus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_9ba038626f (IsA genus_ichthyostega amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_62bdcabe8a (IsA genus_idesia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b345a31117 (IsA genus_iguana reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_acd888cea9 (IsA genus_iguanodon reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_55b226c458 (IsA genus_impatien rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_24e609fbd4 (IsA genus_indri mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_2f83871cb9 (IsA genus_inga rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_902f6d7aa2 (IsA genus_inula asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_494013319c (IsA genus_iris iridaceae) (STV 1.0 0.9091)) +(: cnet_isa_6a7f78ae3e (IsA genus_iris liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5bc5695702 (IsA genus_iva asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5f71f344f8 (IsA genus_jabiru bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_a8b279888f (IsA genus_junco bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_701383fb92 (IsA genus_kalmia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_db6e1f53d7 (IsA genus_keteleeria gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_c27cc9390c (IsA genus_klebsiella bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_6a4ac07d2d (IsA genus_kniphofia liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_53e527e36c (IsA genus_kohleria asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6ca90f672d (IsA genus_krigia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ea3571f1bf (IsA genus_lactobacillus bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_8497a9d892 (IsA genus_laelia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_696ed69472 (IsA genus_lansium rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_27b456f4c3 (IsA genus_late fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_4fea5f60e7 (IsA genus_lecanopteris fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_b8de020eda (IsA genus_lecanora fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_175e9421a4 (IsA genus_leipoa bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_6f18bcfc7d (IsA genus_lemur mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_378a2b5c7a (IsA genus_lepidobotry rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_806aa70114 (IsA genus_lepiota fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_7c5fa0ee76 (IsA genus_leptospira bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_597396775c (IsA genus_lespedeza rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_725f0661bd (IsA genus_leucocytozoon protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_54ffc6eba9 (IsA genus_leucothoe dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d7699c60e6 (IsA genus_liparis monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_84dcd1f1d6 (IsA genus_liquidambar plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_aa972c81f6 (IsA genus_listeria bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_d24a1a1b1b (IsA genus_litchi dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_aaf55851e5 (IsA genus_lithop caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7a7667fa46 (IsA genus_loasa dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1505d18f98 (IsA genus_lobelia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_66b033b691 (IsA genus_loligo mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_8fe71157e6 (IsA genus_lomatia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f181b956a7 (IsA genus_loris mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_22ca900892 (IsA genus_luffa dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2298459b27 (IsA genus_lychnis caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4a92be32c9 (IsA genus_lynx mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_b70336c747 (IsA genus_macadamia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2ca09289a9 (IsA genus_macrotus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_e9634c1df1 (IsA genus_macrozamia gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_badb25e0fc (IsA genus_magnolia magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_652f4510ce (IsA genus_malope dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_11415d544e (IsA genus_mammillaria caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5f4cd150ec (IsA genus_manta fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_a4f6f248d5 (IsA genus_mantis arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_8bd9851479 (IsA genus_maranta monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7795b98fb7 (IsA genus_martynia plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_377ee4fb56 (IsA genus_masdevallia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e559692758 (IsA genus_maxillaria monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_049d571280 (IsA genus_megalosaurus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_66643aacc2 (IsA genus_melilotus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d52500080a (IsA genus_mesohippus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_9984f31c3d (IsA genus_metasequoia gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_b8cb8436a5 (IsA genus_millettia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7f12b01a65 (IsA genus_mimosa rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7264e87a1f (IsA genus_mola fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_496e51fdaa (IsA genus_moloch reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_1e0059adc6 (IsA genus_monarda asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_eef8c979cd (IsA genus_monilia fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_134ba76060 (IsA genus_mononychus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_6870c95305 (IsA genus_monstera monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ff07219f22 (IsA genus_montezuma dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_adbaade6d8 (IsA genus_mucor fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_bd801bd81d (IsA genus_mucuna rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e6ef33222f (IsA genus_mutisia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a3fd85484a (IsA genus_mycobacterium bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_3b9a377e94 (IsA genus_mycoplasma bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_03452b5d44 (IsA genus_mylodon mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_7d4922093c (IsA genus_nanomia coelenterate_genus) (STV 1.0 0.9091)) +(: cnet_isa_432cafcfe5 (IsA genus_narcissus liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3849af007a (IsA genus_nautilus mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_64b63429d3 (IsA genus_nemophila asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b1d1dca8f6 (IsA genus_nephthytis monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_854865d275 (IsA genus_nerita mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_60e1319ecc (IsA genus_neritina mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_d8fbb28eda (IsA genus_nierembergia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d432f86c2b (IsA genus_nigella magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c32d5e06e3 (IsA genus_noctiluca protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_4da0285151 (IsA genus_nostoc bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_ad829cf50b (IsA genus_nothosaurus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_03ba493492 (IsA genus_notornis bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_2a4ce020da (IsA genus_octopus mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_37b96ef0b0 (IsA genus_odontoglossum monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_fd55e90da4 (IsA genus_ommastrephe mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_52087e3031 (IsA genus_oncidium monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a3e63fb9a8 (IsA genus_oncorhynchus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_1ddc8eade1 (IsA genus_orchis monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ec8d79bb37 (IsA genus_origanum asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_54eda0203c (IsA genus_oryx mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_bcdb629d47 (IsA genus_osmunda fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_9669305162 (IsA genus_othonna asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_dee23570f5 (IsA genus_oxalis rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8c011037e5 (IsA genus_pachysandra dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1f03c0e0d6 (IsA genus_palometa fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_0cf7c30687 (IsA genus_pandanus monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f944dbeb4c (IsA genus_paramecium protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_920a806103 (IsA genus_parnassia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_cb62853e3b (IsA genus_paspalum monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_02dc35730c (IsA genus_pavonia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_84e34c0169 (IsA genus_pecopteris fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_40b7918af6 (IsA genus_pecten mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_f8553d6739 (IsA genus_peperomia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3c8f07a092 (IsA genus_peripatus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_ede466e8d1 (IsA genus_petunia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e6f2b37f18 (IsA genus_phacelia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3902ce1177 (IsA genus_phaius monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1cdd1f716b (IsA genus_phalanger mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_c651881b55 (IsA genus_phenacomy mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_9f10e80249 (IsA genus_philadelphus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_07a0d7f28b (IsA genus_philodendron monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_10f06faf0c (IsA genus_phlomis asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_65e1d38230 (IsA genus_phlox plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_2cf6305147 (IsA genus_phocoena mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_c5ecab38fc (IsA genus_physa mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_5a2015b02b (IsA genus_physostegia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a6fd62e824 (IsA genus_pisanosaurus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_53a0726db6 (IsA genus_pistia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c2a100b59d (IsA genus_pitta bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_99952c3b8e (IsA genus_plasmodium protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_2e2dc382e5 (IsA genus_plectranthus asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1634b48587 (IsA genus_plesiosaurus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_3b12bedd62 (IsA genus_pleurothallis monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7235493d3b (IsA genus_plumbago dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_fb69fac37c (IsA genus_pogonia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d022fa8e25 (IsA genus_polemonium asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_dbc465c8a7 (IsA genus_portulaca caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c11d1f4504 (IsA genus_potamogale mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_da2a9acfb2 (IsA genus_primula dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1f9a9d4e06 (IsA genus_proconsul mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_67004064ca (IsA genus_protea dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3c8b77651a (IsA genus_protoavis bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_65d0b08e5c (IsA genus_protoceratop reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_d3d9bd4601 (IsA genus_protohippus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_df5b1b6ace (IsA genus_psilophyton fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_4dca0a19e8 (IsA genus_psittacosaurus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_716d6da21e (IsA genus_pteropogon asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9e5b86ec82 (IsA genus_pyracantha rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_983f3389d5 (IsA genus_pyrola dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6fb9b1b925 (IsA genus_pyrrhuloxia bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_903125a820 (IsA genus_pythium fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_f9f1f3fc01 (IsA genus_python reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_5227e56c18 (IsA genus_quassia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d237f4a0c2 (IsA genus_rauwolfia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0150b2fa88 (IsA genus_ravenala monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b55bbf9a13 (IsA genus_regnellidium fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_c07a00fca7 (IsA genus_reseda dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_80c422b4a4 (IsA genus_rhea bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_7138175b20 (IsA genus_rhinocero mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_b0a51eb828 (IsA genus_rhizoctinia fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_bf6d50a8e4 (IsA genus_rhizopus fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_8e8b292b8e (IsA genus_rhodanthe asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2e7c1cdd2e (IsA genus_rhododendron dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_108dcf527f (IsA genus_rickettsia bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_976e5bd3ab (IsA genus_rivulus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_8b206a69ea (IsA genus_roccella fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_7856326a90 (IsA genus_roridula dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3abe083618 (IsA genus_sabbatia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9f35129be4 (IsA genus_sagitta worm_genus) (STV 1.0 0.9091)) +(: cnet_isa_c441294a2a (IsA genus_saiga mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_115827f78d (IsA genus_salmonella bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_0ef691fa36 (IsA genus_salpa chordate_genus) (STV 1.0 0.9091)) +(: cnet_isa_bc5eab4d81 (IsA genus_salpiglossis asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9d95802a84 (IsA genus_salvia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_93c9217649 (IsA genus_sansevieria liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ab1168dca1 (IsA genus_sargassum protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_3ea7d4517e (IsA genus_sassafra magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6d01cf5fc6 (IsA genus_scabiosa asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2d7ae9d136 (IsA genus_scarabaeus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_450ed9fba4 (IsA genus_schizanthus asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1a9343a8e6 (IsA genus_schizopetalon dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_84aced5b59 (IsA genus_sciara arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_4e4a28f867 (IsA genus_scilla liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7d7c5b087a (IsA genus_scleropage fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_cdb3ecf4a6 (IsA genus_sclerotinia fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_bde3d2495e (IsA genus_scorzonera asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_20d371dd74 (IsA genus_sedum plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_cfdf005c66 (IsA genus_senna rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7c1f327d25 (IsA genus_sequoia gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_d966392fd3 (IsA genus_serratia bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_62935e296d (IsA genus_sesbania rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_20fd9fef6b (IsA genus_shigella bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_1cf1d85687 (IsA genus_shortia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_fb643469c1 (IsA genus_silene caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3ba58580cc (IsA genus_sinornis bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_82aedf3183 (IsA genus_siren amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_50c36cc8e5 (IsA genus_sisymbrium dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_90051bec8a (IsA genus_sivapithecus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_74b32b997c (IsA genus_sobralia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7f5e30f624 (IsA genus_sorghum monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_62c8e112c2 (IsA genus_spadella worm_genus) (STV 1.0 0.9091)) +(: cnet_isa_2db9d53c8d (IsA genus_spathiphyllum monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c69f8c9386 (IsA genus_sphagnum moss_genus) (STV 1.0 0.9091)) +(: cnet_isa_e5a42266dd (IsA genus_spirillum bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_b19ac1eb3a (IsA genus_spirogyra protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_1a54d8072d (IsA genus_spirula mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_3ca3a4eaf3 (IsA genus_squilla arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_4d79311eb5 (IsA genus_stanhopea monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_13f19fac5f (IsA genus_stapelia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_45f810c303 (IsA genus_staphylococcus bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_269946b422 (IsA genus_staurikosaurus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_ae5e2c46fd (IsA genus_stegosaurus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_efaf9305fb (IsA genus_stelis monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_269115ee93 (IsA genus_stenopterygius reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_58543b5689 (IsA genus_stentor protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_f1a49efd5e (IsA genus_stephanotis dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e09bd08d8a (IsA genus_sterculia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_853586f1e5 (IsA genus_stevia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c78b361e38 (IsA genus_streptocarpus asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0efd329d4e (IsA genus_streptococcus bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_23db121e01 (IsA genus_streptomyce bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_16608568a1 (IsA genus_strophanthus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0dd7823dfe (IsA genus_struthiomimus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_6c2297b12c (IsA genus_styracosaurus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_abdbbae676 (IsA genus_styrax dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_fac850db68 (IsA genus_suksdorfia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3bff1979d7 (IsA genus_taenia worm_genus) (STV 1.0 0.9091)) +(: cnet_isa_08e5de787a (IsA genus_tamandua mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_f5a80c44c3 (IsA genus_tarpon fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_2f5ff938fb (IsA genus_tenrec mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_4d87f47e8b (IsA genus_teredo mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_4ffa8f7505 (IsA genus_tetrahymena protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_640a5c7d07 (IsA genus_thiobacillus bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_a9afae6a07 (IsA genus_thrip arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_a89b7b258a (IsA genus_thyrsopteris fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_555456c07a (IsA genus_tithonia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_226c1691e8 (IsA genus_tortrix arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_3a92d9b8c3 (IsA genus_trachodon reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_040da0741f (IsA genus_tragopan bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_7029979ae5 (IsA genus_treponema bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_b76bcb0519 (IsA genus_triceratop reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_525cc82054 (IsA genus_trichodesmium bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_dfaefa577e (IsA genus_trichomona protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_bb805cb877 (IsA genus_trillium liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ebd0d8c319 (IsA genus_trogon bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_01130dde76 (IsA genus_turreae rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9732cb7e5e (IsA genus_tyrannosaurus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_839cf3ae43 (IsA genus_ursinia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d6896e43af (IsA genus_utahraptor reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_55c25c96a9 (IsA genus_vanda monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8494ef40d5 (IsA genus_vanilla monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3eb8a098cb (IsA genus_velociraptor reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_4a456e7c3c (IsA genus_verbena asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6400902835 (IsA genus_vernonia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f6a7e51bb9 (IsA genus_veronica asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a11db6342c (IsA genus_verticillium fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_b447acdbde (IsA genus_vibrio bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_d66213e531 (IsA genus_vireo bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_1a2fc732a7 (IsA genus_vorticella protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_9bdf563035 (IsA genus_weigela asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c428ed373c (IsA genus_welwitschia gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_d355839a0a (IsA genus_wisteria rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_aa7e51dcdb (IsA genus_woodsia fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_665b380825 (IsA genus_wyethia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0473a876f5 (IsA genus_xeranthemum asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_243599b9e2 (IsA genus_xylosma dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d4adaa5354 (IsA genus_yucca liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f10af12a67 (IsA genus_zamia gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_6e2caa2a16 (IsA genus_zinnia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d238722ee9 (IsA genus_zoysia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f33be65329 (IsA genyonemus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_f0bda3b2a2 (IsA geocentric_parallax parallax) (STV 1.0 0.9091)) +(: cnet_isa_ba69f57f30 (IsA geochelone reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_e347d6621d (IsA geochemistry chemistry) (STV 1.0 0.9091)) +(: cnet_isa_18ed9d58c4 (IsA geococcyx bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_08a3d9491e (IsA geode nodule) (STV 1.0 0.9091)) +(: cnet_isa_1279aa2191 (IsA geodesic line) (STV 1.0 0.9091)) +(: cnet_isa_6fc54b2a93 (IsA geodesic_dome dome) (STV 1.0 0.9091)) +(: cnet_isa_b646ab816f (IsA geodesy geophysic) (STV 1.0 0.9091)) +(: cnet_isa_53c79b0af7 (IsA geoduck clam) (STV 1.0 0.9091)) +(: cnet_isa_369fdde85f (IsA geoffroea rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_dad260751b (IsA geogia_holly holly) (STV 1.0 0.9091)) +(: cnet_isa_acd6d4d565 (IsA geoglossaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_febf192c0b (IsA geoglossum fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_b6748bfe25 (IsA geographer expert) (STV 1.0 0.9091)) +(: cnet_isa_c00f9484df (IsA geographic_point point) (STV 1.0 0.9091)) +(: cnet_isa_a7f2603c1e (IsA geographical_area region) (STV 1.0 0.9091)) +(: cnet_isa_c38be60e91 (IsA geographical_indication name) (STV 1.0 0.9091)) +(: cnet_isa_08ee210d43 (IsA geography earth_science) (STV 1.0 0.9091)) +(: cnet_isa_6b8e4ca88a (IsA geological_formation object) (STV 1.0 0.9091)) +(: cnet_isa_838b321894 (IsA geological_horizon horizon) (STV 1.0 0.9091)) +(: cnet_isa_602fd84cd9 (IsA geological_phenomenon natural_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_c6d81ee09b (IsA geological_process natural_process) (STV 1.0 0.9091)) +(: cnet_isa_8ab87cf665 (IsA geological_time time) (STV 1.0 0.9091)) +(: cnet_isa_4a698faa05 (IsA geologist scientist) (STV 1.0 0.9091)) +(: cnet_isa_330998a663 (IsA geology science) (STV 1.0 0.9454)) +(: cnet_isa_789c3ee18a (IsA geology earth_science) (STV 1.0 0.9091)) +(: cnet_isa_ee8f278b7c (IsA geomagnetic_storm natural_hazard) (STV 1.0 0.9091)) +(: cnet_isa_1e4cba8f68 (IsA geomancer diviner) (STV 1.0 0.9091)) +(: cnet_isa_3e5cc2caf8 (IsA geomancy divination) (STV 1.0 0.9091)) +(: cnet_isa_b2ae4fed3d (IsA geometer mathematician) (STV 1.0 0.9091)) +(: cnet_isa_a172d81e22 (IsA geometric_mean mean) (STV 1.0 0.9091)) +(: cnet_isa_1b87de287c (IsA geometric_pace linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_49a279fc52 (IsA geometric_progression progression) (STV 1.0 0.9091)) +(: cnet_isa_466080ec8e (IsA geometric_sery sery) (STV 1.0 0.9091)) +(: cnet_isa_9eed0bf878 (IsA geometrid moth) (STV 1.0 0.9091)) +(: cnet_isa_381c81900f (IsA geometridae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_34bc21da0e (IsA geometry branch_of_mathematic) (STV 1.0 0.9091)) +(: cnet_isa_74dcdf4a63 (IsA geometry math) (STV 1.0 0.9524)) +(: cnet_isa_d737500c6d (IsA geometry mathematic) (STV 1.0 0.9454)) +(: cnet_isa_606ef7c8b5 (IsA geometry subject) (STV 1.0 0.9454)) +(: cnet_isa_0aca2c8c70 (IsA geometry pure_mathematic) (STV 1.0 0.9091)) +(: cnet_isa_9a00360888 (IsA geometry_teacher math_teacher) (STV 1.0 0.9091)) +(: cnet_isa_57981a6ab8 (IsA geomyidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_c38ce60b54 (IsA geomy mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_0d6cd91232 (IsA geophagy pica) (STV 1.0 0.9091)) +(: cnet_isa_6f00009a69 (IsA geophilidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_007993e540 (IsA geophilomorpha animal_order) (STV 1.0 0.9091)) +(: cnet_isa_1fd234e5b5 (IsA geophilus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_a723203905 (IsA geophysicist geologist) (STV 1.0 0.9091)) +(: cnet_isa_8ad139adc0 (IsA geophysic geology) (STV 1.0 0.9091)) +(: cnet_isa_422b77cb2a (IsA geophyte vascular_plant) (STV 1.0 0.9091)) +(: cnet_isa_c5d467f8d4 (IsA geopolitic politic) (STV 1.0 0.9091)) +(: cnet_isa_e8191efd9c (IsA geordie english) (STV 1.0 0.9091)) +(: cnet_isa_caf275f8cb (IsA geordie english_person) (STV 1.0 0.9091)) +(: cnet_isa_6cdacc94ea (IsA george_bush murder) (STV 1.0 0.9091)) +(: cnet_isa_7aeac27b7d (IsA george_bush president) (STV 1.0 0.9091)) +(: cnet_isa_5e7af42808 (IsA george_bush right_wing_president) (STV 1.0 0.9091)) +(: cnet_isa_0e69c144d0 (IsA george_frost_kennan diplomat) (STV 1.0 0.9091)) +(: cnet_isa_1a86a539a9 (IsA george_washington president) (STV 1.0 0.9091)) +(: cnet_isa_aa6c3f7025 (IsA georgette fabric) (STV 1.0 0.9091)) +(: cnet_isa_9544b57725 (IsA georgia state) (STV 1.0 0.9572)) +(: cnet_isa_9ba0905219 (IsA georgia state_with_coastline) (STV 1.0 0.9091)) +(: cnet_isa_c6c8570881 (IsA georgian caucasian) (STV 1.0 0.9091)) +(: cnet_isa_103543b081 (IsA georgian american) (STV 1.0 0.9091)) +(: cnet_isa_b0a5737cfa (IsA georgian russian) (STV 1.0 0.9091)) +(: cnet_isa_ae95e57fe6 (IsA georgian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_11f3379931 (IsA geostationary_orbit geosynchronous_orbit) (STV 1.0 0.9091)) +(: cnet_isa_c84fbe74c0 (IsA geostrategy geopolitic) (STV 1.0 0.9091)) +(: cnet_isa_404e1f5c73 (IsA geosynchronous_orbit orbit) (STV 1.0 0.9091)) +(: cnet_isa_bbf0740f62 (IsA geothermal_energy heat) (STV 1.0 0.9091)) +(: cnet_isa_6801003424 (IsA geothlypis bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_d4483e76f1 (IsA geotropism tropism) (STV 1.0 0.9091)) +(: cnet_isa_a8c7da5afb (IsA geraniaceae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_0f46e20a15 (IsA geraniale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_48adacaa23 (IsA geranium annual_plant) (STV 1.0 0.9091)) +(: cnet_isa_53fff86d9e (IsA geranium herb) (STV 1.0 0.9091)) +(: cnet_isa_4df996c433 (IsA gerardia flower) (STV 1.0 0.9091)) +(: cnet_isa_e2c6b5db6e (IsA gerbera asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b3bcddf07c (IsA gerbil rodent) (STV 1.0 0.9091)) +(: cnet_isa_1d58d39ee3 (IsA gerbillinae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_78661a6840 (IsA gerbillus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_ce91fccffa (IsA gerea asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_11932a1ab8 (IsA gerenuk antelope) (STV 1.0 0.9091)) +(: cnet_isa_85d7a6c628 (IsA geriatric medicine) (STV 1.0 0.9091)) +(: cnet_isa_27e81f4880 (IsA germ microorganism) (STV 1.0 0.9339)) +(: cnet_isa_f79c9befc7 (IsA germ structure) (STV 1.0 0.9091)) +(: cnet_isa_9d4e5aa48d (IsA germ_layer embryonic_tissue) (STV 1.0 0.9091)) +(: cnet_isa_5dac4529dd (IsA germ_plasm protoplasm) (STV 1.0 0.9091)) +(: cnet_isa_e83e33babf (IsA germ_pore stoma) (STV 1.0 0.9091)) +(: cnet_isa_bcdf26ccc0 (IsA germ_theory scientific_theory) (STV 1.0 0.9091)) +(: cnet_isa_e628851ca0 (IsA germ_tube plant_part) (STV 1.0 0.9091)) +(: cnet_isa_ada1e14ff9 (IsA germ_warfare biological_warfare) (STV 1.0 0.9091)) +(: cnet_isa_e56bbec905 (IsA german human_language) (STV 1.0 0.9091)) +(: cnet_isa_c411a544b9 (IsA german language) (STV 1.0 0.9659)) +(: cnet_isa_8143f0b945 (IsA german west_germanic) (STV 1.0 0.9091)) +(: cnet_isa_afad2122d7 (IsA german european) (STV 1.0 0.9091)) +(: cnet_isa_0a2e741971 (IsA german_american american) (STV 1.0 0.9091)) +(: cnet_isa_7cc5dc4669 (IsA german_cockroach cockroach) (STV 1.0 0.9091)) +(: cnet_isa_862bfda22f (IsA german_iris bearded_iris) (STV 1.0 0.9091)) +(: cnet_isa_d3cdec1ae5 (IsA german_ivy vine) (STV 1.0 0.9091)) +(: cnet_isa_b57429d597 (IsA german_lesson language_lesson) (STV 1.0 0.9091)) +(: cnet_isa_4efb23d592 (IsA german_measle measle) (STV 1.0 0.9091)) +(: cnet_isa_0b4ea37c02 (IsA german_millet foxtail_millet) (STV 1.0 0.9091)) +(: cnet_isa_1fd85e405b (IsA german_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_c05f5c7be0 (IsA german_nazi fascist) (STV 1.0 0.9091)) +(: cnet_isa_dac9f8177f (IsA german_shepherd shepherd_dog) (STV 1.0 0.9091)) +(: cnet_isa_36359208f7 (IsA german_short_haired_pointer pointer) (STV 1.0 0.9091)) +(: cnet_isa_adcf0e81f4 (IsA germander subshrub) (STV 1.0 0.9091)) +(: cnet_isa_5b30446912 (IsA germander_speedwell veronica) (STV 1.0 0.9091)) +(: cnet_isa_45ebed1273 (IsA germaneness applicability) (STV 1.0 0.9091)) +(: cnet_isa_69058fb709 (IsA germanic indo_european) (STV 1.0 0.9091)) +(: cnet_isa_482bf61312 (IsA germanism custom) (STV 1.0 0.9091)) +(: cnet_isa_27ba70fecd (IsA germanist specialist) (STV 1.0 0.9091)) +(: cnet_isa_cd6b6d3922 (IsA germanite mineral) (STV 1.0 0.9091)) +(: cnet_isa_dc25b77f6e (IsA germanium chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_4df59cae37 (IsA germanium semiconductor) (STV 1.0 0.9091)) +(: cnet_isa_7589792890 (IsA germany country) (STV 1.0 0.9524)) +(: cnet_isa_43adec5d7d (IsA germany country_of_europe) (STV 1.0 0.9339)) +(: cnet_isa_5d178ce58a (IsA germany european_country) (STV 1.0 0.9091)) +(: cnet_isa_470dfd567c (IsA germany in_europe) (STV 1.0 0.9454)) +(: cnet_isa_b1a84262f3 (IsA germany member_of_european_union) (STV 1.0 0.9091)) +(: cnet_isa_deafd7aa51 (IsA germinal revolutionary_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_f5726c1be6 (IsA germination origin) (STV 1.0 0.9091)) +(: cnet_isa_681eb67af0 (IsA germination growth) (STV 1.0 0.9091)) +(: cnet_isa_1ddaac56df (IsA gerontocracy political_system) (STV 1.0 0.9091)) +(: cnet_isa_6b0c2a01da (IsA gerontologist specialist) (STV 1.0 0.9091)) +(: cnet_isa_8877309c3a (IsA gerreidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_2ff92ccabb (IsA gerre fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_eae87daea0 (IsA gerrhonotus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_915df5d68e (IsA gerrididae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_e07f6b67fc (IsA gerris arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_4aaaaee98d (IsA gerrymander cheat) (STV 1.0 0.9091)) +(: cnet_isa_834e4fd51d (IsA gerund verbal_noun) (STV 1.0 0.9091)) +(: cnet_isa_e6033ccc14 (IsA geryon mythical_monster) (STV 1.0 0.9091)) +(: cnet_isa_25f8ee8307 (IsA gesneria herb) (STV 1.0 0.9091)) +(: cnet_isa_8690b2f602 (IsA gesneriaceae asterid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_372e773ba2 (IsA gesneriad woody_plant) (STV 1.0 0.9091)) +(: cnet_isa_758a8b1303 (IsA gesso gypsum) (STV 1.0 0.9091)) +(: cnet_isa_559849219c (IsA gesso plaster_of_paris) (STV 1.0 0.9091)) +(: cnet_isa_8e948e22e9 (IsA gestalt form) (STV 1.0 0.9091)) +(: cnet_isa_b149afbd6c (IsA gestalt_law_of_organization principle) (STV 1.0 0.9091)) +(: cnet_isa_b877443a65 (IsA gestalt_psychology scientific_theory) (STV 1.0 0.9091)) +(: cnet_isa_a4b7cbee4a (IsA gestapo secret_police) (STV 1.0 0.9091)) +(: cnet_isa_e0520f7c41 (IsA gestation construction) (STV 1.0 0.9091)) +(: cnet_isa_577f5ae6fb (IsA gestation biological_time) (STV 1.0 0.9091)) +(: cnet_isa_70a931f5d6 (IsA gesticulation gesture) (STV 1.0 0.9091)) +(: cnet_isa_20e1e68915 (IsA gesture indication) (STV 1.0 0.9091)) +(: cnet_isa_9ebbff907a (IsA gesture motion) (STV 1.0 0.9091)) +(: cnet_isa_5de7fd05b4 (IsA gesture visual_communication) (STV 1.0 0.9091)) +(: cnet_isa_e3792767d3 (IsA get return) (STV 1.0 0.9091)) +(: cnet_isa_6c4267bd86 (IsA get_well_card card) (STV 1.0 0.9091)) +(: cnet_isa_407bbb682a (IsA getaway escape) (STV 1.0 0.9091)) +(: cnet_isa_fad3f4305e (IsA geum rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_751779eb72 (IsA geyser spring) (STV 1.0 0.9091)) +(: cnet_isa_478108e058 (IsA ghanian african) (STV 1.0 0.9091)) +(: cnet_isa_ef92f562df (IsA ghanian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_890e018829 (IsA gharry carriage) (STV 1.0 0.9091)) +(: cnet_isa_b9c2514000 (IsA ghastliness frightfulness) (STV 1.0 0.9091)) +(: cnet_isa_b320c91845 (IsA ghat stairway) (STV 1.0 0.9091)) +(: cnet_isa_c12e5db3c2 (IsA ghatti gum) (STV 1.0 0.9091)) +(: cnet_isa_4c0bb395d9 (IsA ghedda_wax beeswax) (STV 1.0 0.9091)) +(: cnet_isa_e2d4e5ee24 (IsA ghee clarified_butter) (STV 1.0 0.9091)) +(: cnet_isa_46638f704a (IsA gheg albanian) (STV 1.0 0.9091)) +(: cnet_isa_9ac55b6b56 (IsA gherkin cucumber) (STV 1.0 0.9091)) +(: cnet_isa_d3c9fe3307 (IsA gherkin pickle) (STV 1.0 0.9091)) +(: cnet_isa_8e0416b6db (IsA ghetto city_district) (STV 1.0 0.9091)) +(: cnet_isa_da2dbe5e53 (IsA ghetto quarter) (STV 1.0 0.9091)) +(: cnet_isa_3a69a22d29 (IsA ghetto life) (STV 1.0 0.9091)) +(: cnet_isa_6e140235c0 (IsA ghetto_blaster stereo) (STV 1.0 0.9091)) +(: cnet_isa_f6d1f7dfcf (IsA ghillie shoe) (STV 1.0 0.9091)) +(: cnet_isa_d4b6c6d09b (IsA ghost disembodied_spirit) (STV 1.0 0.9091)) +(: cnet_isa_62ce1245ec (IsA ghost apparition) (STV 1.0 0.9091)) +(: cnet_isa_05b12a5939 (IsA ghost soul) (STV 1.0 0.9091)) +(: cnet_isa_1718caf485 (IsA ghost_dance ritual_dancing) (STV 1.0 0.9091)) +(: cnet_isa_af5104611b (IsA ghost_town town) (STV 1.0 0.9091)) +(: cnet_isa_86d99f29a4 (IsA ghost_word form) (STV 1.0 0.9091)) +(: cnet_isa_d43ab3e8f3 (IsA ghostwriter writer) (STV 1.0 0.9091)) +(: cnet_isa_958c023239 (IsA ghoul evil_spirit) (STV 1.0 0.9091)) +(: cnet_isa_73d5bf1f4c (IsA ghrelin gastrointestinal_hormone) (STV 1.0 0.9091)) +(: cnet_isa_6999ad665a (IsA gi_sery diagnostic_test) (STV 1.0 0.9091)) +(: cnet_isa_835bfa43a8 (IsA giant animal) (STV 1.0 0.9091)) +(: cnet_isa_b47dd48e0d (IsA giant enterprise) (STV 1.0 0.9091)) +(: cnet_isa_034e9bd9a9 (IsA giant imaginary_being) (STV 1.0 0.9091)) +(: cnet_isa_b86772a094 (IsA giant large_person) (STV 1.0 0.9091)) +(: cnet_isa_b2b756263d (IsA giant_armadillo armadillo) (STV 1.0 0.9091)) +(: cnet_isa_6e2d4ca67f (IsA giant_bamboo bamboo) (STV 1.0 0.9091)) +(: cnet_isa_5ccb123169 (IsA giant_buttercup herb) (STV 1.0 0.9091)) +(: cnet_isa_7b0449ad9f (IsA giant_cane bamboo) (STV 1.0 0.9091)) +(: cnet_isa_743700a02d (IsA giant_chinkapin tree) (STV 1.0 0.9091)) +(: cnet_isa_0cfa0d9e54 (IsA giant_clam clam) (STV 1.0 0.9091)) +(: cnet_isa_b017892db3 (IsA giant_cockroach cockroach) (STV 1.0 0.9091)) +(: cnet_isa_b0b5dbb210 (IsA giant_conch conch) (STV 1.0 0.9091)) +(: cnet_isa_fb5f715451 (IsA giant_coreopsis coreopsis) (STV 1.0 0.9091)) +(: cnet_isa_1578f38441 (IsA giant_crab spider_crab) (STV 1.0 0.9091)) +(: cnet_isa_f7d202762d (IsA giant_eland eland) (STV 1.0 0.9091)) +(: cnet_isa_571ff20243 (IsA giant_foxtail foxtail) (STV 1.0 0.9091)) +(: cnet_isa_079f49fbcf (IsA giant_hornet hornet) (STV 1.0 0.9091)) +(: cnet_isa_c1d885aa06 (IsA giant_hyssop herb) (STV 1.0 0.9091)) +(: cnet_isa_349dec7825 (IsA giant_kangaroo kangaroo) (STV 1.0 0.9091)) +(: cnet_isa_c7a59bd4a0 (IsA giant_moa moa) (STV 1.0 0.9091)) +(: cnet_isa_e8601b0b47 (IsA giant_northwest_shipworm shipworm) (STV 1.0 0.9091)) +(: cnet_isa_4f2a2f0fda (IsA giant_panda procyonid) (STV 1.0 0.9091)) +(: cnet_isa_9ce56c3979 (IsA giant_petrel petrel) (STV 1.0 0.9091)) +(: cnet_isa_254b21f788 (IsA giant_puffball puffball) (STV 1.0 0.9091)) +(: cnet_isa_24af0fe7c4 (IsA giant_red_paintbrush indian_paintbrush) (STV 1.0 0.9091)) +(: cnet_isa_477cff7933 (IsA giant_reed reed) (STV 1.0 0.9091)) +(: cnet_isa_727a584712 (IsA giant_ryegrass lyme_grass) (STV 1.0 0.9091)) +(: cnet_isa_f35d23c8bd (IsA giant_salamander salamander) (STV 1.0 0.9091)) +(: cnet_isa_251cca4c13 (IsA giant_schnauzer schnauzer) (STV 1.0 0.9091)) +(: cnet_isa_6b4ecb750a (IsA giant_scrambling_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_b788f533e4 (IsA giant_seaperch fish_specy) (STV 1.0 0.9091)) +(: cnet_isa_764cd5bf32 (IsA giant_sequoia sequoia) (STV 1.0 0.9091)) +(: cnet_isa_0ee5d16e10 (IsA giant_silkworm_moth saturniid) (STV 1.0 0.9091)) +(: cnet_isa_c50f1d1d8a (IsA giant_star star) (STV 1.0 0.9091)) +(: cnet_isa_590f585e03 (IsA giant_star_grass grass) (STV 1.0 0.9091)) +(: cnet_isa_4914e61db1 (IsA giant_sunflower sunflower) (STV 1.0 0.9091)) +(: cnet_isa_f8f100df9b (IsA giant_taro alocasia) (STV 1.0 0.9091)) +(: cnet_isa_926f3e55ff (IsA giant_timber_bamboo bamboo) (STV 1.0 0.9091)) +(: cnet_isa_04f9e21f28 (IsA giant_tortoise tortoise) (STV 1.0 0.9091)) +(: cnet_isa_26e6d09baa (IsA giant_water_bug water_bug) (STV 1.0 0.9091)) +(: cnet_isa_9b6652add2 (IsA giantess giant) (STV 1.0 0.9091)) +(: cnet_isa_ee862183d6 (IsA giantism hypertrophy) (STV 1.0 0.9091)) +(: cnet_isa_b8569c6882 (IsA giant sport_team) (STV 1.0 0.9091)) +(: cnet_isa_99e91fbfd2 (IsA giardia flagellate) (STV 1.0 0.9091)) +(: cnet_isa_ef4ebf1707 (IsA giardiasis protozoal_infection) (STV 1.0 0.9091)) +(: cnet_isa_d4d73a477b (IsA gib tom) (STV 1.0 0.9091)) +(: cnet_isa_2a0d953084 (IsA gibberellic_acid gibberellin) (STV 1.0 0.9091)) +(: cnet_isa_1e87779b6b (IsA gibberellin phytohormone) (STV 1.0 0.9091)) +(: cnet_isa_8166823413 (IsA gibberish nonsense) (STV 1.0 0.9091)) +(: cnet_isa_7b06d1288f (IsA gibbon lesser_ape) (STV 1.0 0.9091)) +(: cnet_isa_c19165ffe5 (IsA gibbsite mineral) (STV 1.0 0.9091)) +(: cnet_isa_adcb54bc06 (IsA gibibit computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_db01633de3 (IsA giblet variety_meat) (STV 1.0 0.9091)) +(: cnet_isa_dad0f1f66e (IsA gibraltarian european) (STV 1.0 0.9091)) +(: cnet_isa_57ccdce1fb (IsA gibson_girl girl) (STV 1.0 0.9091)) +(: cnet_isa_ce4fd8582e (IsA gidar biu_mandara) (STV 1.0 0.9091)) +(: cnet_isa_fcc6468560 (IsA giddiness frivolity) (STV 1.0 0.9091)) +(: cnet_isa_60de871360 (IsA gidgee wattle) (STV 1.0 0.9091)) +(: cnet_isa_386a06d54d (IsA gift acquisition) (STV 1.0 0.9091)) +(: cnet_isa_c72fa2851d (IsA gift_horse gift) (STV 1.0 0.9091)) +(: cnet_isa_5de34e0bc6 (IsA gift_shop shop) (STV 1.0 0.9091)) +(: cnet_isa_368b51e632 (IsA gift_tax tax) (STV 1.0 0.9091)) +(: cnet_isa_ce648bf321 (IsA gift_wrap wrapping_paper) (STV 1.0 0.9091)) +(: cnet_isa_3f76206fa1 (IsA gift_wrapping wrapping) (STV 1.0 0.9091)) +(: cnet_isa_d847bde7d6 (IsA gig engagement) (STV 1.0 0.9091)) +(: cnet_isa_335fcd7ff5 (IsA gig carriage) (STV 1.0 0.9091)) +(: cnet_isa_1b9c51c0e9 (IsA gig hook) (STV 1.0 0.9091)) +(: cnet_isa_1beb2ca79e (IsA gig small_boat) (STV 1.0 0.9091)) +(: cnet_isa_5aaf9650ae (IsA gig tender) (STV 1.0 0.9091)) +(: cnet_isa_b33f86ecf5 (IsA gigabit computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_ccd9ea3a91 (IsA gigabyte computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_4bf5fda197 (IsA gigahertz rate) (STV 1.0 0.9091)) +(: cnet_isa_6c3ff4b564 (IsA gigantism largeness) (STV 1.0 0.9091)) +(: cnet_isa_bc66785bf5 (IsA gigartinaceae protoctist_family) (STV 1.0 0.9091)) +(: cnet_isa_1ec1fe44be (IsA giggle laugh) (STV 1.0 0.9091)) +(: cnet_isa_ed973c990c (IsA gigo rule) (STV 1.0 0.9091)) +(: cnet_isa_e0c6638592 (IsA gigolo libertine) (STV 1.0 0.9091)) +(: cnet_isa_01cc61dc6f (IsA gikuyu bantu) (STV 1.0 0.9091)) +(: cnet_isa_fd66bcdf63 (IsA gila_monster venomous_lizard) (STV 1.0 0.9091)) +(: cnet_isa_e96217a23b (IsA gilbert magnetomotive_force_unit) (STV 1.0 0.9091)) +(: cnet_isa_04a5d6c2b6 (IsA gilbert_and_sullivan music) (STV 1.0 0.9091)) +(: cnet_isa_c49457b19c (IsA gilded_flicker flicker) (STV 1.0 0.9091)) +(: cnet_isa_e47a4b18e1 (IsA gilder skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_0c589bde03 (IsA gildhall guildhall) (STV 1.0 0.9091)) +(: cnet_isa_37eb648569 (IsA gilding_metal brass) (STV 1.0 0.9091)) +(: cnet_isa_9d55cf6184 (IsA gilgai_soil soil) (STV 1.0 0.9091)) +(: cnet_isa_9d63a90c26 (IsA gill respiratory_organ) (STV 1.0 0.9091)) +(: cnet_isa_15041c0452 (IsA gill plant_organ) (STV 1.0 0.9091)) +(: cnet_isa_7be91f6f5c (IsA gill british_capacity_unit) (STV 1.0 0.9091)) +(: cnet_isa_ff2a1db7cc (IsA gill united_state_liquid_unit) (STV 1.0 0.9091)) +(: cnet_isa_a0fce248ba (IsA gill_arch structure) (STV 1.0 0.9091)) +(: cnet_isa_59c9578fe8 (IsA gill_fungus basidiomycete) (STV 1.0 0.9091)) +(: cnet_isa_04e071cf64 (IsA gill_net fishnet) (STV 1.0 0.9091)) +(: cnet_isa_a784f30369 (IsA gill_slit structure) (STV 1.0 0.9091)) +(: cnet_isa_931db779ca (IsA gillie attendant) (STV 1.0 0.9091)) +(: cnet_isa_0a394ce37e (IsA gilt coating) (STV 1.0 0.9091)) +(: cnet_isa_d029bd313c (IsA gimbal appliance) (STV 1.0 0.9091)) +(: cnet_isa_41c6ff20e3 (IsA gimel letter) (STV 1.0 0.9091)) +(: cnet_isa_53abd53ba2 (IsA gimlet cocktail) (STV 1.0 0.9091)) +(: cnet_isa_89e47a18ab (IsA gimmickry collection) (STV 1.0 0.9091)) +(: cnet_isa_2950b26e68 (IsA gin alcohol) (STV 1.0 0.9339)) +(: cnet_isa_8d78375746 (IsA gin rummy) (STV 1.0 0.9091)) +(: cnet_isa_56049c215b (IsA gin liquor) (STV 1.0 0.9091)) +(: cnet_isa_ef8690045c (IsA gin_and_it cocktail) (STV 1.0 0.9091)) +(: cnet_isa_859ee2ab4a (IsA gin_and_tonic highball) (STV 1.0 0.9091)) +(: cnet_isa_0c2f899df9 (IsA gin_rickey rickey) (STV 1.0 0.9091)) +(: cnet_isa_496ac0e857 (IsA gin_sling sling) (STV 1.0 0.9091)) +(: cnet_isa_c3e0708553 (IsA ginger flavorer) (STV 1.0 0.9091)) +(: cnet_isa_f4ba545a26 (IsA ginger spice) (STV 1.0 0.9091)) +(: cnet_isa_40de495012 (IsA ginger herb) (STV 1.0 0.9091)) +(: cnet_isa_771485b1ee (IsA ginger_ale soft_drink) (STV 1.0 0.9091)) +(: cnet_isa_c8938ab452 (IsA ginger_beer beverage) (STV 1.0 0.9091)) +(: cnet_isa_995c4fca21 (IsA gingerbread cake) (STV 1.0 0.9091)) +(: cnet_isa_ca020fe21b (IsA gingerbread_man cookie) (STV 1.0 0.9091)) +(: cnet_isa_3beb1b9a74 (IsA gingerol chemical_irritant) (STV 1.0 0.9091)) +(: cnet_isa_ba5f547743 (IsA gingersnap cookie) (STV 1.0 0.9091)) +(: cnet_isa_f444120b7f (IsA gingham fabric) (STV 1.0 0.9091)) +(: cnet_isa_e2f042a277 (IsA gingiva animal_tissue) (STV 1.0 0.9091)) +(: cnet_isa_2327a9658f (IsA gingivitis periodontal_disease) (STV 1.0 0.9091)) +(: cnet_isa_9728c1d8a0 (IsA ginglymostoma fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_b15340b6be (IsA ginkgo gymnospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_ccd8c0550e (IsA ginkgoaceae gymnosperm_family) (STV 1.0 0.9091)) +(: cnet_isa_1d9b379163 (IsA ginkgoale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_027f3a4330 (IsA ginkgopsida class) (STV 1.0 0.9091)) +(: cnet_isa_c49c58e96f (IsA ginseng herb) (STV 1.0 0.9091)) +(: cnet_isa_834a26846d (IsA ginseng root) (STV 1.0 0.9091)) +(: cnet_isa_6eda2168d8 (IsA gipsy person) (STV 1.0 0.9091)) +(: cnet_isa_607ccf93ec (IsA gipsywort herb) (STV 1.0 0.9091)) +(: cnet_isa_f56104bcf8 (IsA giraffa mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_1e044d8162 (IsA giraffe ruminant) (STV 1.0 0.9091)) +(: cnet_isa_f21d5a35e0 (IsA giraffidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_65c61ce492 (IsA girandole candlestick) (STV 1.0 0.9091)) +(: cnet_isa_39de444766 (IsA girder beam) (STV 1.0 0.9091)) +(: cnet_isa_328905a089 (IsA girdle band) (STV 1.0 0.9091)) +(: cnet_isa_a1fb1acb51 (IsA girdle skeletal_structure) (STV 1.0 0.9091)) +(: cnet_isa_b8087d234c (IsA giriama bantu) (STV 1.0 0.9091)) +(: cnet_isa_451ef91656 (IsA girl woman) (STV 1.0 0.9091)) +(: cnet_isa_3dd0793d15 (IsA girl_friday assistant) (STV 1.0 0.9091)) +(: cnet_isa_6702329fc4 (IsA girl_scout scout) (STV 1.0 0.9091)) +(: cnet_isa_d4ffb37de6 (IsA girl_scout organization) (STV 1.0 0.9091)) +(: cnet_isa_f24b1e6953 (IsA girl_wonder female) (STV 1.0 0.9091)) +(: cnet_isa_0b0f7a5787 (IsA girl_wonder prodigy) (STV 1.0 0.9091)) +(: cnet_isa_a83222e94e (IsA girlfriend friend) (STV 1.0 0.9091)) +(: cnet_isa_c83325fc45 (IsA girlfriend lover) (STV 1.0 0.9091)) +(: cnet_isa_d796ca78c8 (IsA girlfriend woman) (STV 1.0 0.9091)) +(: cnet_isa_0f085583a6 (IsA girlhood childhood) (STV 1.0 0.9091)) +(: cnet_isa_d854409142 (IsA girlishness femininity) (STV 1.0 0.9091)) +(: cnet_isa_db1cbe807b (IsA giro financial_institution) (STV 1.0 0.9091)) +(: cnet_isa_330c6584fa (IsA giro check) (STV 1.0 0.9091)) +(: cnet_isa_e07444b34c (IsA giro_account bank_account) (STV 1.0 0.9091)) +(: cnet_isa_7c68907274 (IsA gironde party) (STV 1.0 0.9091)) +(: cnet_isa_1139cfc2b7 (IsA girondin revolutionist) (STV 1.0 0.9091)) +(: cnet_isa_d9fc11e08f (IsA girondism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_3dc0336a3f (IsA girth circumference) (STV 1.0 0.9091)) +(: cnet_isa_05f8c844f9 (IsA gitana rommany) (STV 1.0 0.9091)) +(: cnet_isa_656e51e5d0 (IsA gitano rommany) (STV 1.0 0.9091)) +(: cnet_isa_bec53ccd24 (IsA give elasticity) (STV 1.0 0.9091)) +(: cnet_isa_502951b4d3 (IsA give_and_go basketball_play) (STV 1.0 0.9091)) +(: cnet_isa_c097c06703 (IsA giveaway disclosure) (STV 1.0 0.9091)) +(: cnet_isa_e8ea563d59 (IsA giveaway gift) (STV 1.0 0.9091)) +(: cnet_isa_022c21cd64 (IsA given assumption) (STV 1.0 0.9091)) +(: cnet_isa_d38d9e42d6 (IsA givenness indisputability) (STV 1.0 0.9091)) +(: cnet_isa_a41eb1c10e (IsA giver good_person) (STV 1.0 0.9091)) +(: cnet_isa_e41a0aa0da (IsA giving disposal) (STV 1.0 0.9091)) +(: cnet_isa_87df5970ca (IsA giving sharing) (STV 1.0 0.9091)) +(: cnet_isa_cb4fcbc546 (IsA giving conveyance) (STV 1.0 0.9091)) +(: cnet_isa_260636a83b (IsA giving_up relinquishment) (STV 1.0 0.9091)) +(: cnet_isa_398e9a821e (IsA gizzard pouch) (STV 1.0 0.9091)) +(: cnet_isa_7ec84d4391 (IsA glabella craniometric_point) (STV 1.0 0.9091)) +(: cnet_isa_8bc0575ffa (IsA glacial_boulder boulder) (STV 1.0 0.9091)) +(: cnet_isa_9f12bd06c1 (IsA glaciation geological_process) (STV 1.0 0.9091)) +(: cnet_isa_7a7be8427e (IsA glaciation environmental_condition) (STV 1.0 0.9091)) +(: cnet_isa_2edd61d07f (IsA glacier slowly_moving_river_of_ice) (STV 1.0 0.9091)) +(: cnet_isa_7389f66a86 (IsA glacier ice_mass) (STV 1.0 0.9091)) +(: cnet_isa_23ee79c6ab (IsA glacier_lily dogtooth_violet) (STV 1.0 0.9091)) +(: cnet_isa_6f489ed86c (IsA glacier_mill chute) (STV 1.0 0.9091)) +(: cnet_isa_4fb3042e2d (IsA glad_hand welcome) (STV 1.0 0.9091)) +(: cnet_isa_2f69dcc09b (IsA glade_mallow mallow) (STV 1.0 0.9091)) +(: cnet_isa_e3a75c6440 (IsA gladiator combatant) (STV 1.0 0.9091)) +(: cnet_isa_cef873899a (IsA gladiolus bone) (STV 1.0 0.9091)) +(: cnet_isa_b0c4290893 (IsA gladiolus iridaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_6f635db0ae (IsA gladness happiness) (STV 1.0 0.9091)) +(: cnet_isa_a334883080 (IsA glamor beauty) (STV 1.0 0.9091)) +(: cnet_isa_f9abd594da (IsA glamorization beautification) (STV 1.0 0.9091)) +(: cnet_isa_f00b23e2a5 (IsA glance look) (STV 1.0 0.9091)) +(: cnet_isa_2791e3390d (IsA gland organ) (STV 1.0 0.9091)) +(: cnet_isa_0f07f37597 (IsA glander zoonosis) (STV 1.0 0.9091)) +(: cnet_isa_43e3936bad (IsA glandular_disease disorder) (STV 1.0 0.9091)) +(: cnet_isa_204cdd7909 (IsA glan structure) (STV 1.0 0.9091)) +(: cnet_isa_f65ad5ca59 (IsA glan_clitoridis glan) (STV 1.0 0.9091)) +(: cnet_isa_5f72dfc95a (IsA glan_penis glan) (STV 1.0 0.9091)) +(: cnet_isa_75e4818e41 (IsA glare stare) (STV 1.0 0.9091)) +(: cnet_isa_5b62adf09b (IsA glare brightness) (STV 1.0 0.9091)) +(: cnet_isa_44e48826e7 (IsA glareola bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_e233b46699 (IsA glareolidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_31c4bc560a (IsA glasnost social_policy) (STV 1.0 0.9091)) +(: cnet_isa_61dddbbb6f (IsA glass solid) (STV 1.0 0.9339)) +(: cnet_isa_a30b82dff3 (IsA glass container) (STV 1.0 0.9091)) +(: cnet_isa_e44ba083ab (IsA glass glassware) (STV 1.0 0.9091)) +(: cnet_isa_dc4ece3be9 (IsA glass containerful) (STV 1.0 0.9091)) +(: cnet_isa_82afd40d85 (IsA glass_ceiling ceiling) (STV 1.0 0.9091)) +(: cnet_isa_584e10ee95 (IsA glass_cutter cutter) (STV 1.0 0.9091)) +(: cnet_isa_e13cd9a5b2 (IsA glass_cutter craftsman) (STV 1.0 0.9091)) +(: cnet_isa_b0098be08a (IsA glass_eye prosthesis) (STV 1.0 0.9091)) +(: cnet_isa_5a8e7d5dca (IsA glass_lizard anguid_lizard) (STV 1.0 0.9091)) +(: cnet_isa_1f56305569 (IsA glass_sponge sponge) (STV 1.0 0.9091)) +(: cnet_isa_b019c17430 (IsA glass_wool filter) (STV 1.0 0.9091)) +(: cnet_isa_c015640ec5 (IsA glass_wool insulator) (STV 1.0 0.9091)) +(: cnet_isa_bfb2360514 (IsA glassblower craftsman) (STV 1.0 0.9091)) +(: cnet_isa_466b34dee2 (IsA glass_case case) (STV 1.0 0.9091)) +(: cnet_isa_1737aa1fe2 (IsA glassmaker maker) (STV 1.0 0.9091)) +(: cnet_isa_62ae9acdbc (IsA glassware tableware) (STV 1.0 0.9091)) +(: cnet_isa_d5a656cc1d (IsA glasswork workplace) (STV 1.0 0.9091)) +(: cnet_isa_55d2468c8a (IsA glasswort herb) (STV 1.0 0.9091)) +(: cnet_isa_06a3530b1a (IsA glaswegian scotchman) (STV 1.0 0.9091)) +(: cnet_isa_132c83050f (IsA glauber_s_salt salt) (STV 1.0 0.9091)) +(: cnet_isa_714935c648 (IsA glaucium dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_532373558b (IsA glaucoma eye_disease) (STV 1.0 0.9091)) +(: cnet_isa_0d35a1d0c5 (IsA glaucomy mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_8d381cae66 (IsA glauconite mineral) (STV 1.0 0.9091)) +(: cnet_isa_8810c44f3d (IsA glaux dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_05f706308d (IsA glaze coating) (STV 1.0 0.9091)) +(: cnet_isa_e28d3de1f2 (IsA glaze polish) (STV 1.0 0.9091)) +(: cnet_isa_9bc1adc1ef (IsA glaze topping) (STV 1.0 0.9091)) +(: cnet_isa_7bf0aabbd3 (IsA gleam radiance) (STV 1.0 0.9091)) +(: cnet_isa_9bcafdfd69 (IsA gleam flash) (STV 1.0 0.9091)) +(: cnet_isa_72126cba02 (IsA gleaner collector) (STV 1.0 0.9091)) +(: cnet_isa_7da832f40b (IsA gleaner farmhand) (STV 1.0 0.9091)) +(: cnet_isa_7314d87fcc (IsA gleba reproductive_structure) (STV 1.0 0.9091)) +(: cnet_isa_2d0f43c04b (IsA glebe estate) (STV 1.0 0.9091)) +(: cnet_isa_182cd36133 (IsA glebe_house parsonage) (STV 1.0 0.9091)) +(: cnet_isa_bca3e382b3 (IsA glechoma asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0191dcf015 (IsA gleditsia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_195568dacc (IsA glee_club club) (STV 1.0 0.9091)) +(: cnet_isa_b470b24c6d (IsA gleet pus) (STV 1.0 0.9091)) +(: cnet_isa_568ca32267 (IsA gleichenia fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_cf5def9786 (IsA gleicheniaceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_a5580ce35b (IsA glen valley) (STV 1.0 0.9091)) +(: cnet_isa_b1455ebcf8 (IsA glengarry cap) (STV 1.0 0.9091)) +(: cnet_isa_2234b92d29 (IsA glenoid_fossa pit) (STV 1.0 0.9091)) +(: cnet_isa_b1ed23c806 (IsA glibness superficiality) (STV 1.0 0.9091)) +(: cnet_isa_1552aa59f1 (IsA glide flight) (STV 1.0 0.9091)) +(: cnet_isa_de8d55f18d (IsA glider heavier_than_air_craft) (STV 1.0 0.9091)) +(: cnet_isa_86c53a56d8 (IsA gliding_joint synovial_joint) (STV 1.0 0.9091)) +(: cnet_isa_a15c50e7dd (IsA glimpse view) (STV 1.0 0.9091)) +(: cnet_isa_c3ae87dc91 (IsA glimpse indication) (STV 1.0 0.9091)) +(: cnet_isa_cc0cf147ce (IsA glint brightness) (STV 1.0 0.9091)) +(: cnet_isa_11ce3fb4fb (IsA glioblastoma brain_tumor) (STV 1.0 0.9091)) +(: cnet_isa_b757c360f5 (IsA glioma brain_tumor) (STV 1.0 0.9091)) +(: cnet_isa_8f46c33179 (IsA gliricidia tree) (STV 1.0 0.9091)) +(: cnet_isa_aa906fdcf6 (IsA gliridae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_14e7500354 (IsA glis mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_6460b26ed9 (IsA glissade dance_step) (STV 1.0 0.9091)) +(: cnet_isa_7aeb6f5078 (IsA glissando tune) (STV 1.0 0.9091)) +(: cnet_isa_a291d683d2 (IsA glitter brightness) (STV 1.0 0.9091)) +(: cnet_isa_9ed383be6f (IsA glitter flash) (STV 1.0 0.9091)) +(: cnet_isa_8b908c0261 (IsA gloat satisfaction) (STV 1.0 0.9091)) +(: cnet_isa_ce4964b870 (IsA global_aphasia aphasia) (STV 1.0 0.9091)) +(: cnet_isa_bc58c2f3c2 (IsA global_positioning_system navigational_system) (STV 1.0 0.9091)) +(: cnet_isa_9f08246159 (IsA global_warming heating) (STV 1.0 0.9091)) +(: cnet_isa_6c015c0f8b (IsA globalization economic_process) (STV 1.0 0.9091)) +(: cnet_isa_ac583d21f1 (IsA globe ball) (STV 1.0 0.9091)) +(: cnet_isa_e8fadc7f7d (IsA globe map) (STV 1.0 0.9091)) +(: cnet_isa_322782e5de (IsA globe spherical_map_of_earth) (STV 1.0 0.9339)) +(: cnet_isa_6bbf18acbf (IsA globe three_dimensional_map_of_world) (STV 1.0 0.9339)) +(: cnet_isa_985943071f (IsA globe model) (STV 1.0 0.9091)) +(: cnet_isa_638a222459 (IsA globe sphere) (STV 1.0 0.9091)) +(: cnet_isa_90118bf39b (IsA globe_amaranth flower) (STV 1.0 0.9091)) +(: cnet_isa_b78f2f6f4d (IsA globe_lily liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_13b800d719 (IsA globe_mallow mallow) (STV 1.0 0.9091)) +(: cnet_isa_3d07e47c6a (IsA globe_pepper sweet_pepper) (STV 1.0 0.9091)) +(: cnet_isa_c5b152aa2a (IsA globe_thistle herb) (STV 1.0 0.9091)) +(: cnet_isa_b5ab7dd9c7 (IsA globeflower herb) (STV 1.0 0.9091)) +(: cnet_isa_e261b42feb (IsA globetrotter cosmopolitan) (STV 1.0 0.9091)) +(: cnet_isa_d56a30dd53 (IsA globicephala mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_9039062321 (IsA globigerina foram) (STV 1.0 0.9091)) +(: cnet_isa_5f9f699670 (IsA globigerinidae protoctist_family) (STV 1.0 0.9091)) +(: cnet_isa_3ab399e68c (IsA globin simple_protein) (STV 1.0 0.9091)) +(: cnet_isa_06180893e6 (IsA globule ball) (STV 1.0 0.9091)) +(: cnet_isa_65aa3c0d80 (IsA globulin simple_protein) (STV 1.0 0.9091)) +(: cnet_isa_44012d733f (IsA glochidium spine) (STV 1.0 0.9091)) +(: cnet_isa_7f8bf0fa0d (IsA glock gun) (STV 1.0 0.9572)) +(: cnet_isa_e3db73841d (IsA glock gun_manufacturer) (STV 1.0 0.9091)) +(: cnet_isa_3595514914 (IsA glockenspiel percussion_instrument) (STV 1.0 0.9091)) +(: cnet_isa_82dd70c17d (IsA glogg punch) (STV 1.0 0.9091)) +(: cnet_isa_01a334f4c7 (IsA glomerule cyme) (STV 1.0 0.9091)) +(: cnet_isa_de405e2d11 (IsA glomerulonephritis nephritis) (STV 1.0 0.9091)) +(: cnet_isa_9201da57a6 (IsA glomerulus capillary) (STV 1.0 0.9091)) +(: cnet_isa_96e1ca8cf3 (IsA gloom apprehension) (STV 1.0 0.9091)) +(: cnet_isa_72bd820987 (IsA gloom melancholy) (STV 1.0 0.9091)) +(: cnet_isa_c5f4156457 (IsA gloom atmosphere) (STV 1.0 0.9091)) +(: cnet_isa_cc5288b00c (IsA gloom semidarkness) (STV 1.0 0.9091)) +(: cnet_isa_515977bf49 (IsA gloominess uncheerfulness) (STV 1.0 0.9091)) +(: cnet_isa_ed2e075d62 (IsA glop substance) (STV 1.0 0.9091)) +(: cnet_isa_1a29486606 (IsA glorification adoration) (STV 1.0 0.9091)) +(: cnet_isa_4827d9c01d (IsA gloriosa poisonous_plant) (STV 1.0 0.9091)) +(: cnet_isa_8a110205f4 (IsA glory beauty) (STV 1.0 0.9091)) +(: cnet_isa_b8b53a2e95 (IsA glory honor) (STV 1.0 0.9091)) +(: cnet_isa_2bde3112b9 (IsA glory_hole cabinet) (STV 1.0 0.9091)) +(: cnet_isa_20acc7c143 (IsA glory_pea shrub) (STV 1.0 0.9091)) +(: cnet_isa_799b56a2f2 (IsA gloss explanation) (STV 1.0 0.9091)) +(: cnet_isa_9d4aa1412a (IsA glossalgia pain) (STV 1.0 0.9091)) +(: cnet_isa_f0f4040e5f (IsA glossarist scholiast) (STV 1.0 0.9091)) +(: cnet_isa_925238ccae (IsA glossary wordbook) (STV 1.0 0.9091)) +(: cnet_isa_cdb101df36 (IsA glossinidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_1f64863ba6 (IsA glossitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_508f2c4fa1 (IsA glossodia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ca75593cf4 (IsA glossolalia pathology) (STV 1.0 0.9091)) +(: cnet_isa_a44ea8e8d3 (IsA glossopharyngeal_nerve cranial_nerve) (STV 1.0 0.9091)) +(: cnet_isa_90bb3e59f6 (IsA glossopsitta bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_861f88858d (IsA glossoptosis prolapse) (STV 1.0 0.9091)) +(: cnet_isa_24f99084d1 (IsA glossy picture) (STV 1.0 0.9091)) +(: cnet_isa_5d05bf036a (IsA glossy_snake colubrid_snake) (STV 1.0 0.9091)) +(: cnet_isa_ca838b8df4 (IsA glottal_stop stop_consonant) (STV 1.0 0.9091)) +(: cnet_isa_ce6fed90af (IsA glottis speech_organ) (STV 1.0 0.9091)) +(: cnet_isa_402fc43db5 (IsA glottochronology chronology) (STV 1.0 0.9091)) +(: cnet_isa_9cef2cfd22 (IsA glove handwear) (STV 1.0 0.9091)) +(: cnet_isa_f162e89247 (IsA glove_anesthesia conversion_disorder) (STV 1.0 0.9091)) +(: cnet_isa_f0414c5aa9 (IsA glove_compartment compartment) (STV 1.0 0.9091)) +(: cnet_isa_099bbdc53b (IsA glove_leather leather) (STV 1.0 0.9091)) +(: cnet_isa_6d2bf67c71 (IsA glow feeling) (STV 1.0 0.9091)) +(: cnet_isa_6ca7a57dc2 (IsA glow light) (STV 1.0 0.9091)) +(: cnet_isa_bd0255e793 (IsA glow_lamp gas_discharge_tube) (STV 1.0 0.9091)) +(: cnet_isa_46ed7eadf7 (IsA glowworm firefly) (STV 1.0 0.9091)) +(: cnet_isa_1b854e2202 (IsA gloxinia houseplant) (STV 1.0 0.9091)) +(: cnet_isa_8babfbcb89 (IsA glucagon hormone) (STV 1.0 0.9091)) +(: cnet_isa_9949b6187d (IsA glucocorticoid corticosteroid) (STV 1.0 0.9091)) +(: cnet_isa_c161cb440a (IsA glucocorticoid hormone) (STV 1.0 0.9091)) +(: cnet_isa_a95102c49c (IsA glucosamine amino) (STV 1.0 0.9091)) +(: cnet_isa_16b6b0a977 (IsA glucosamine glucose) (STV 1.0 0.9091)) +(: cnet_isa_ab2d1ad582 (IsA glucose sugar) (STV 1.0 0.9339)) +(: cnet_isa_6765dd05b9 (IsA glucose aldohexose) (STV 1.0 0.9091)) +(: cnet_isa_e3c0bb4651 (IsA glucose_tolerance_test diagnostic_test) (STV 1.0 0.9091)) +(: cnet_isa_c1d1dd7e2a (IsA glucoside glycoside) (STV 1.0 0.9091)) +(: cnet_isa_8e0cad4374 (IsA glucosuria glycosuria) (STV 1.0 0.9091)) +(: cnet_isa_133bc90a7e (IsA glue adhesive) (STV 1.0 0.9524)) +(: cnet_isa_66407a0abf (IsA glue substance) (STV 1.0 0.9608)) +(: cnet_isa_611e415e2d (IsA glue cement) (STV 1.0 0.9091)) +(: cnet_isa_37ce2088b8 (IsA glume bract) (STV 1.0 0.9091)) +(: cnet_isa_b7eea700b6 (IsA gluon boson) (STV 1.0 0.9091)) +(: cnet_isa_707aecbcee (IsA gluon gauge_boson) (STV 1.0 0.9091)) +(: cnet_isa_4dc51b1fce (IsA glut overabundance) (STV 1.0 0.9091)) +(: cnet_isa_404e53f859 (IsA glutamate salt) (STV 1.0 0.9091)) +(: cnet_isa_4c57518e7e (IsA glutamic_acid amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_46ba0da00e (IsA glutamic_oxalacetic_transaminase transaminase) (STV 1.0 0.9091)) +(: cnet_isa_819bc3d6ac (IsA glutamine amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_fe4347a7a5 (IsA glutathione_peroxidase antioxidant) (STV 1.0 0.9091)) +(: cnet_isa_82b682d2fe (IsA glutathione_peroxidase peroxidase) (STV 1.0 0.9091)) +(: cnet_isa_90acf89094 (IsA gluteal_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_4efed0b712 (IsA gluteal_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_2dacaad944 (IsA glutelin simple_protein) (STV 1.0 0.9091)) +(: cnet_isa_25ec54b005 (IsA gluten protein) (STV 1.0 0.9091)) +(: cnet_isa_8c81992e18 (IsA gluten_bread bread) (STV 1.0 0.9091)) +(: cnet_isa_7fe702f01e (IsA gluten_free_diet diet) (STV 1.0 0.9091)) +(: cnet_isa_7bf00bf95a (IsA gluteus skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_2ee6171013 (IsA gluteus_maximus gluteus) (STV 1.0 0.9091)) +(: cnet_isa_d0a44b4cb0 (IsA gluteus_medius gluteus) (STV 1.0 0.9091)) +(: cnet_isa_669fe21634 (IsA gluteus_minimus gluteus) (STV 1.0 0.9091)) +(: cnet_isa_3f47009135 (IsA glutton musteline_mammal) (STV 1.0 0.9091)) +(: cnet_isa_50d3935d72 (IsA glutton eater) (STV 1.0 0.9091)) +(: cnet_isa_158ff3accb (IsA gluttony mortal_sin) (STV 1.0 0.9091)) +(: cnet_isa_d6f85b498d (IsA gluttony intemperance) (STV 1.0 0.9091)) +(: cnet_isa_fea458a14b (IsA glyceraldehyde aldehyde) (STV 1.0 0.9091)) +(: cnet_isa_eb5e53745a (IsA glyceria monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f7381265fd (IsA glyceric_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_6415cfc903 (IsA glyceride animal_oil) (STV 1.0 0.9091)) +(: cnet_isa_ad485f8267 (IsA glyceride glyceryl_ester) (STV 1.0 0.9091)) +(: cnet_isa_60cb8cd140 (IsA glycerin_jelly glyceryl_ester) (STV 1.0 0.9091)) +(: cnet_isa_7f1cf7eeda (IsA glycerinated_gelatin formulation) (STV 1.0 0.9091)) +(: cnet_isa_841805f608 (IsA glycerite glyceryl_ester) (STV 1.0 0.9091)) +(: cnet_isa_e8cdc1b084 (IsA glycerogelatin glyceryl_ester) (STV 1.0 0.9091)) +(: cnet_isa_e8ffcde3db (IsA glycerol alcohol) (STV 1.0 0.9091)) +(: cnet_isa_7b89aa27da (IsA glyceryl group) (STV 1.0 0.9091)) +(: cnet_isa_3b017fff27 (IsA glyceryl_ester ester) (STV 1.0 0.9091)) +(: cnet_isa_64b84aaf86 (IsA glycine rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b11558b06f (IsA glycine amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_9ab33ea2b5 (IsA glycogen polysaccharide) (STV 1.0 0.9091)) +(: cnet_isa_a6cdd24e06 (IsA glycogenesis conversion) (STV 1.0 0.9091)) +(: cnet_isa_a43c6ee5a5 (IsA glycogenesis organic_process) (STV 1.0 0.9091)) +(: cnet_isa_0e0c821360 (IsA glycolic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_b6b6b34457 (IsA glycolysis metabolism) (STV 1.0 0.9091)) +(: cnet_isa_5270df71fd (IsA glycoprotein conjugated_protein) (STV 1.0 0.9091)) +(: cnet_isa_496818e207 (IsA glycoside organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_cb537448dc (IsA glycosuria symptom) (STV 1.0 0.9091)) +(: cnet_isa_93f6483245 (IsA glycyrrhiza rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_59dab49049 (IsA glyph glyptic_art) (STV 1.0 0.9091)) +(: cnet_isa_802497529f (IsA glyptic_art carving) (STV 1.0 0.9091)) +(: cnet_isa_e4f42dd442 (IsA glyptic glyptic_art) (STV 1.0 0.9091)) +(: cnet_isa_1b05833f41 (IsA glyptography art) (STV 1.0 0.9091)) +(: cnet_isa_1613c19967 (IsA gnaphalium asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_05f74196dd (IsA gnat dipterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_1bc99d4764 (IsA gnat mosquito) (STV 1.0 0.9091)) +(: cnet_isa_de50e919c2 (IsA gnatcatcher warbler) (STV 1.0 0.9091)) +(: cnet_isa_ccacdad993 (IsA gnathion craniometric_point) (STV 1.0 0.9091)) +(: cnet_isa_62d635c76f (IsA gnathostomata class) (STV 1.0 0.9091)) +(: cnet_isa_a34c716bb6 (IsA gnathostome vertebrate) (STV 1.0 0.9091)) +(: cnet_isa_a9cc268f4a (IsA gneiss metamorphic_rock) (STV 1.0 0.9091)) +(: cnet_isa_38d656dea0 (IsA gnetaceae gymnosperm_family) (STV 1.0 0.9091)) +(: cnet_isa_ed583be873 (IsA gnetale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_424057b642 (IsA gnetopsida class) (STV 1.0 0.9091)) +(: cnet_isa_bbac036045 (IsA gnetum gymnospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_c6c024dc15 (IsA gnocchi food) (STV 1.0 0.9091)) +(: cnet_isa_9e5232b52b (IsA gnocchi pasta) (STV 1.0 0.9091)) +(: cnet_isa_f82db49ab0 (IsA gnocchi dumpling) (STV 1.0 0.9091)) +(: cnet_isa_c13815264a (IsA gnome maxim) (STV 1.0 0.9091)) +(: cnet_isa_c6188a080a (IsA gnome fairy) (STV 1.0 0.9091)) +(: cnet_isa_d5f8b99e26 (IsA gnomon indicator) (STV 1.0 0.9091)) +(: cnet_isa_f521e75089 (IsA gnosis intuition) (STV 1.0 0.9091)) +(: cnet_isa_db528f47fe (IsA gnostic advocate) (STV 1.0 0.9091)) +(: cnet_isa_ca1b275e31 (IsA gnosticism heresy) (STV 1.0 0.9091)) +(: cnet_isa_f377ad569c (IsA gnosticism theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_330128f8dc (IsA gnu antelope) (STV 1.0 0.9091)) +(: cnet_isa_5dcf1a4a84 (IsA go board_game) (STV 1.0 0.9091)) +(: cnet_isa_e56e02ffa2 (IsA go shift) (STV 1.0 0.9091)) +(: cnet_isa_e114548ffe (IsA go_board board) (STV 1.0 0.9091)) +(: cnet_isa_457c2cd090 (IsA go_fish card_game) (STV 1.0 0.9091)) +(: cnet_isa_300a7d0196 (IsA go_getter actor) (STV 1.0 0.9091)) +(: cnet_isa_da7099eabc (IsA go_kart motor_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_a1b64ebe5b (IsA go_slow job_action) (STV 1.0 0.9091)) +(: cnet_isa_b52baf8ec1 (IsA goa_bean bean) (STV 1.0 0.9091)) +(: cnet_isa_8955ec8b32 (IsA goad encouragement) (STV 1.0 0.9091)) +(: cnet_isa_0d37b2db13 (IsA goal score) (STV 1.0 0.9091)) +(: cnet_isa_d8322c5787 (IsA goal game_equipment) (STV 1.0 0.9091)) +(: cnet_isa_0fc09969c0 (IsA goal content) (STV 1.0 0.9091)) +(: cnet_isa_5669b7222a (IsA goal_kick kick) (STV 1.0 0.9091)) +(: cnet_isa_601ff386cc (IsA goal_line line) (STV 1.0 0.9091)) +(: cnet_isa_980f4c8794 (IsA goalkeeper position) (STV 1.0 0.9091)) +(: cnet_isa_98c351a1b6 (IsA goalkeeper hockey_player) (STV 1.0 0.9091)) +(: cnet_isa_b3f96e98e8 (IsA goalkeeper soccer_player) (STV 1.0 0.9091)) +(: cnet_isa_7e25b0bac4 (IsA goalmouth area) (STV 1.0 0.9091)) +(: cnet_isa_b879cc445f (IsA goalpost post) (STV 1.0 0.9091)) +(: cnet_isa_62d8160142 (IsA goat_s_rue herb) (STV 1.0 0.9091)) +(: cnet_isa_18dfe763b8 (IsA goat bovid) (STV 1.0 0.9091)) +(: cnet_isa_5b51245480 (IsA goat person) (STV 1.0 0.9091)) +(: cnet_isa_2522fd95db (IsA goat_antelope bovid) (STV 1.0 0.9091)) +(: cnet_isa_77d06ec63b (IsA goat_cheese cheese) (STV 1.0 0.9091)) +(: cnet_isa_d0b527baa0 (IsA goat_grass grass) (STV 1.0 0.9091)) +(: cnet_isa_9762638811 (IsA goat_herder herder) (STV 1.0 0.9091)) +(: cnet_isa_d2a4099ecb (IsA goat_willow sallow) (STV 1.0 0.9091)) +(: cnet_isa_468bee0559 (IsA goatee beard) (STV 1.0 0.9091)) +(: cnet_isa_51242f4db7 (IsA goatfish mullet) (STV 1.0 0.9091)) +(: cnet_isa_b8b34e5de2 (IsA goat_milk milk) (STV 1.0 0.9091)) +(: cnet_isa_865ff46c5e (IsA goatsfoot oxalis) (STV 1.0 0.9091)) +(: cnet_isa_8a0b8f2d8b (IsA goatskin hide) (STV 1.0 0.9091)) +(: cnet_isa_42a7a9e2f5 (IsA goatsucker caprimulgiform_bird) (STV 1.0 0.9091)) +(: cnet_isa_b0a0229fc0 (IsA gob ball) (STV 1.0 0.9091)) +(: cnet_isa_3cd9060e8a (IsA gobbet raw_meat) (STV 1.0 0.9091)) +(: cnet_isa_86d5d758aa (IsA gobble cry) (STV 1.0 0.9091)) +(: cnet_isa_10b77e37bf (IsA gobbledygook jargon) (STV 1.0 0.9091)) +(: cnet_isa_6400d43db0 (IsA gobbler eater) (STV 1.0 0.9091)) +(: cnet_isa_5079a1f374 (IsA gobiesocidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_c709d6979e (IsA gobiesox fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_b1689c1940 (IsA gobiidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_bea918b886 (IsA gobio fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_c485dd4d91 (IsA goblet glass) (STV 1.0 0.9091)) +(: cnet_isa_e7174abd1c (IsA goblet_cell epithelial_cell) (STV 1.0 0.9091)) +(: cnet_isa_29940f2fef (IsA goblin evil_spirit) (STV 1.0 0.9091)) +(: cnet_isa_2d56f3dca0 (IsA goby percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_3f100506cb (IsA god_s_will omnipotence) (STV 1.0 0.9091)) +(: cnet_isa_295b6e9328 (IsA god_s_wisdom omniscience) (STV 1.0 0.9091)) +(: cnet_isa_25f490c242 (IsA god abstract_creation_of_humanity) (STV 1.0 0.9454)) +(: cnet_isa_4103590c22 (IsA god concept) (STV 1.0 0.9608)) +(: cnet_isa_6c02efe7db (IsA god creator) (STV 1.0 0.9091)) +(: cnet_isa_31451bd208 (IsA god fairy_tale_for_adult) (STV 1.0 0.9339)) +(: cnet_isa_ec446d83e1 (IsA god imaginary_friend_for_grown_ups) (STV 1.0 0.9454)) +(: cnet_isa_b9b728e47a (IsA god love) (STV 1.0 0.9454)) +(: cnet_isa_a8664456b0 (IsA god omnipotent) (STV 1.0 0.9091)) +(: cnet_isa_9393642446 (IsA god superior) (STV 1.0 0.9091)) +(: cnet_isa_f7a1ac8459 (IsA godchild baby) (STV 1.0 0.9091)) +(: cnet_isa_c9ab4a310a (IsA goddaughter godchild) (STV 1.0 0.9091)) +(: cnet_isa_879e1a3993 (IsA goddess deity) (STV 1.0 0.9091)) +(: cnet_isa_245f73b2e1 (IsA godfather godparent) (STV 1.0 0.9091)) +(: cnet_isa_84eae2cd9c (IsA godfather patron) (STV 1.0 0.9091)) +(: cnet_isa_466e37ca8f (IsA godliness piety) (STV 1.0 0.9091)) +(: cnet_isa_bcde7c3e18 (IsA godmother godparent) (STV 1.0 0.9091)) +(: cnet_isa_fda29d091c (IsA godown warehouse) (STV 1.0 0.9091)) +(: cnet_isa_33187dacde (IsA godparent patron) (STV 1.0 0.9091)) +(: cnet_isa_de5cbb7b55 (IsA godson godchild) (STV 1.0 0.9091)) +(: cnet_isa_b7c7f0b838 (IsA godspeed success) (STV 1.0 0.9091)) +(: cnet_isa_c760ca4bb6 (IsA godwit shorebird) (STV 1.0 0.9091)) +(: cnet_isa_f676e857d1 (IsA goethite iron_ore) (STV 1.0 0.9091)) +(: cnet_isa_9c9a6f4ffa (IsA gofer employee) (STV 1.0 0.9091)) +(: cnet_isa_abe72590f8 (IsA goffer frill) (STV 1.0 0.9091)) +(: cnet_isa_94c2a64e75 (IsA goffer iron) (STV 1.0 0.9091)) +(: cnet_isa_1378cad866 (IsA goffer eager_beaver) (STV 1.0 0.9091)) +(: cnet_isa_76ad4b1c4e (IsA gog_and_magog mythical_being) (STV 1.0 0.9091)) +(: cnet_isa_299a470329 (IsA goggle spectacle) (STV 1.0 0.9091)) +(: cnet_isa_b7a62e4fed (IsA going accomplishment) (STV 1.0 0.9091)) +(: cnet_isa_e18033d64f (IsA going_ashore debarkation) (STV 1.0 0.9091)) +(: cnet_isa_3fd7295061 (IsA going_on_cuise good_way_to_relax) (STV 1.0 0.9339)) +(: cnet_isa_b7f7ee0ca4 (IsA going_out_of_business_sale sale) (STV 1.0 0.9091)) +(: cnet_isa_b7685b7696 (IsA going_over examination) (STV 1.0 0.9091)) +(: cnet_isa_eccd0425df (IsA going_to_doctor often_about_diseas) (STV 1.0 0.9091)) +(: cnet_isa_2dd78e8cfe (IsA going_to_doctor smart_thing_to_do) (STV 1.0 0.9091)) +(: cnet_isa_4c81b56636 (IsA goiter disease) (STV 1.0 0.9091)) +(: cnet_isa_fbd6413dca (IsA goitrogen compound) (STV 1.0 0.9091)) +(: cnet_isa_13c9fe6f1d (IsA golconda source) (STV 1.0 0.9091)) +(: cnet_isa_ca83b3599a (IsA gold metal) (STV 1.0 0.9853)) +(: cnet_isa_886d7654db (IsA gold precious_metal) (STV 1.0 0.9524)) +(: cnet_isa_495094b613 (IsA gold soft_metal) (STV 1.0 0.9339)) +(: cnet_isa_fbdb3d88d6 (IsA gold invaluableness) (STV 1.0 0.9091)) +(: cnet_isa_536fdc7413 (IsA gold wealth) (STV 1.0 0.9091)) +(: cnet_isa_01039adce0 (IsA gold noble_metal) (STV 1.0 0.9091)) +(: cnet_isa_ff1730ff7f (IsA gold_coast vicinity) (STV 1.0 0.9091)) +(: cnet_isa_9f7497e926 (IsA gold_crowned_kinglet kinglet) (STV 1.0 0.9091)) +(: cnet_isa_ae8e1f20f0 (IsA gold_digger woman) (STV 1.0 0.9091)) +(: cnet_isa_b3082ca6c6 (IsA gold_dust gold) (STV 1.0 0.9091)) +(: cnet_isa_f73a4499e4 (IsA gold_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_2015039a88 (IsA gold_fever fever) (STV 1.0 0.9091)) +(: cnet_isa_388b3caa19 (IsA gold_foil foil) (STV 1.0 0.9091)) +(: cnet_isa_1bf81a2606 (IsA gold_leaf gold_foil) (STV 1.0 0.9091)) +(: cnet_isa_2042f216aa (IsA gold_medal trophy) (STV 1.0 0.9091)) +(: cnet_isa_4f315aeac3 (IsA gold_miner miner) (STV 1.0 0.9091)) +(: cnet_isa_971a5eeb3e (IsA gold_of_pleasure crucifer) (STV 1.0 0.9091)) +(: cnet_isa_3a37e15c1b (IsA gold_plate plating) (STV 1.0 0.9091)) +(: cnet_isa_6204e5c665 (IsA gold_plate tableware) (STV 1.0 0.9091)) +(: cnet_isa_ded89e3acf (IsA gold_rush migration) (STV 1.0 0.9091)) +(: cnet_isa_267fb1fa27 (IsA gold_standard paragon) (STV 1.0 0.9091)) +(: cnet_isa_3211b59f86 (IsA gold_standard standard) (STV 1.0 0.9091)) +(: cnet_isa_193c6c9d90 (IsA gold_tail_moth lymantriid) (STV 1.0 0.9091)) +(: cnet_isa_73ea538f96 (IsA gold_thread_falsecypress plant) (STV 1.0 0.9091)) +(: cnet_isa_927112f4d4 (IsA goldbeater craftsman) (STV 1.0 0.9091)) +(: cnet_isa_15a22dde2f (IsA goldbrick fraud) (STV 1.0 0.9091)) +(: cnet_isa_ca4a65810e (IsA goldbrick block) (STV 1.0 0.9091)) +(: cnet_isa_6315efd0dd (IsA goldbrick idler) (STV 1.0 0.9091)) +(: cnet_isa_414b7d96ae (IsA goldbrick slacker) (STV 1.0 0.9091)) +(: cnet_isa_d84a4d79e0 (IsA goldbrick soldier) (STV 1.0 0.9091)) +(: cnet_isa_7ebc7495e6 (IsA goldcrest kinglet) (STV 1.0 0.9091)) +(: cnet_isa_8bf1662506 (IsA golden_age time_period) (STV 1.0 0.9091)) +(: cnet_isa_2610059c1e (IsA golden_age flower) (STV 1.0 0.9091)) +(: cnet_isa_be16c19a18 (IsA golden_age period) (STV 1.0 0.9091)) +(: cnet_isa_a69bf6851a (IsA golden_algae alga) (STV 1.0 0.9091)) +(: cnet_isa_ca729d2bf2 (IsA golden_and_labrador_retriever type_of_dog) (STV 1.0 0.9091)) +(: cnet_isa_97e5b34933 (IsA golden_aster wildflower) (STV 1.0 0.9091)) +(: cnet_isa_ab5ecbf2d5 (IsA golden_barrel_cactus echinocactus) (STV 1.0 0.9091)) +(: cnet_isa_8f12c2161f (IsA golden_beard_penstemon wildflower) (STV 1.0 0.9091)) +(: cnet_isa_9208f91d5e (IsA golden_calf idol) (STV 1.0 0.9091)) +(: cnet_isa_a0871e7ae8 (IsA golden_calla calla_lily) (STV 1.0 0.9091)) +(: cnet_isa_ddcc81f05e (IsA golden_clematis clematis) (STV 1.0 0.9091)) +(: cnet_isa_7135901ac0 (IsA golden_club aquatic_plant) (STV 1.0 0.9091)) +(: cnet_isa_b75145ad53 (IsA golden_cup poppy) (STV 1.0 0.9091)) +(: cnet_isa_990d5bc7b1 (IsA golden_delicious delicious) (STV 1.0 0.9091)) +(: cnet_isa_279bca7053 (IsA golden_eagle eagle) (STV 1.0 0.9091)) +(: cnet_isa_a853718a5f (IsA golden_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_962b1670e9 (IsA golden_fig fig_tree) (STV 1.0 0.9091)) +(: cnet_isa_bd39e0a2e3 (IsA golden_fleece sheepskin) (STV 1.0 0.9091)) +(: cnet_isa_79bd384f37 (IsA golden_gate_bridge near_san_francisco) (STV 1.0 0.9091)) +(: cnet_isa_5496a353bb (IsA golden_glow cutleaved_coneflower) (STV 1.0 0.9091)) +(: cnet_isa_95fb0eddb9 (IsA golden_gram bean) (STV 1.0 0.9091)) +(: cnet_isa_7b47aec3e7 (IsA golden_groundsel herb) (STV 1.0 0.9091)) +(: cnet_isa_2219efa14c (IsA golden_hamster hamster) (STV 1.0 0.9091)) +(: cnet_isa_0d4708e3a8 (IsA golden_handshake severance_agreement) (STV 1.0 0.9091)) +(: cnet_isa_be474d0f8c (IsA golden_horde horde) (STV 1.0 0.9091)) +(: cnet_isa_5d5ee13870 (IsA golden_larch conifer) (STV 1.0 0.9091)) +(: cnet_isa_3f7e7612d5 (IsA golden_mean moderation) (STV 1.0 0.9091)) +(: cnet_isa_e4922a9077 (IsA golden_mole mole) (STV 1.0 0.9091)) +(: cnet_isa_9b7db97885 (IsA golden_oriole old_world_oriole) (STV 1.0 0.9091)) +(: cnet_isa_de7c5a479d (IsA golden_parachute shark_repellent) (STV 1.0 0.9091)) +(: cnet_isa_864cc2c9a8 (IsA golden_pheasant pheasant) (STV 1.0 0.9091)) +(: cnet_isa_5b0951ef15 (IsA golden_plover plover) (STV 1.0 0.9091)) +(: cnet_isa_f1e6a23839 (IsA golden_polypody fern) (STV 1.0 0.9091)) +(: cnet_isa_8558859ff3 (IsA golden_potho liana) (STV 1.0 0.9091)) +(: cnet_isa_6aa4ab8d53 (IsA golden_retriever dog) (STV 1.0 0.9091)) +(: cnet_isa_83ec335157 (IsA golden_retriever retriever) (STV 1.0 0.9091)) +(: cnet_isa_fa3af4e577 (IsA golden_retriever breed_of_dog) (STV 1.0 0.9524)) +(: cnet_isa_a7ee852899 (IsA golden_retriever type_of_dog) (STV 1.0 0.9339)) +(: cnet_isa_87d37fe4dd (IsA golden_rule teaching) (STV 1.0 0.9091)) +(: cnet_isa_2ae42667f6 (IsA golden_rule rule) (STV 1.0 0.9091)) +(: cnet_isa_23d83444f2 (IsA golden_saxifrage aquatic_plant) (STV 1.0 0.9091)) +(: cnet_isa_0078eaf482 (IsA golden_section proportion) (STV 1.0 0.9091)) +(: cnet_isa_3b8632d68c (IsA golden_shiner shiner) (STV 1.0 0.9091)) +(: cnet_isa_5fa6392e9f (IsA golden_shower_tree cassia) (STV 1.0 0.9091)) +(: cnet_isa_5760436335 (IsA golden_star liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_9ef277ce24 (IsA golden_thistle thistle) (STV 1.0 0.9091)) +(: cnet_isa_e3a7283c7c (IsA golden_wattle wattle) (STV 1.0 0.9091)) +(: cnet_isa_07969a4f93 (IsA golden_wedding_anniversary wedding_anniversary) (STV 1.0 0.9091)) +(: cnet_isa_a91d2aa8a5 (IsA golden_willow osier) (STV 1.0 0.9091)) +(: cnet_isa_f8605ec42c (IsA golden_yarrow woolly_sunflower) (STV 1.0 0.9091)) +(: cnet_isa_f561892233 (IsA golden_year time_of_life) (STV 1.0 0.9091)) +(: cnet_isa_783027c1fd (IsA goldenbush shrub) (STV 1.0 0.9091)) +(: cnet_isa_2949e68226 (IsA goldenbush wildflower) (STV 1.0 0.9091)) +(: cnet_isa_8fdee18475 (IsA goldeneye duck) (STV 1.0 0.9091)) +(: cnet_isa_f5882718f9 (IsA goldeneye green_lacewing) (STV 1.0 0.9091)) +(: cnet_isa_b1fc73e00b (IsA goldenrod wildflower) (STV 1.0 0.9091)) +(: cnet_isa_7fbf084b2b (IsA goldenseal herb) (STV 1.0 0.9091)) +(: cnet_isa_8b98b49e08 (IsA goldfield district) (STV 1.0 0.9091)) +(: cnet_isa_b07c0e34e2 (IsA goldfield wildflower) (STV 1.0 0.9091)) +(: cnet_isa_22e23dbca6 (IsA goldfinch finch) (STV 1.0 0.9091)) +(: cnet_isa_774e9ea54a (IsA goldfish carp) (STV 1.0 0.9756)) +(: cnet_isa_d93117fb1e (IsA goldfish fish) (STV 1.0 0.9091)) +(: cnet_isa_03280e433f (IsA goldfish cyprinid) (STV 1.0 0.9091)) +(: cnet_isa_1ff8367795 (IsA goldfish_bowl situation) (STV 1.0 0.9091)) +(: cnet_isa_7134de7a7e (IsA goldie_s_fern shield_fern) (STV 1.0 0.9091)) +(: cnet_isa_db0fdfca6b (IsA goldilock aster) (STV 1.0 0.9091)) +(: cnet_isa_0860dd0063 (IsA goldmine mine) (STV 1.0 0.9091)) +(: cnet_isa_276e1adeac (IsA goldmine source) (STV 1.0 0.9091)) +(: cnet_isa_bab512c5c0 (IsA goldsmith jewelry_maker) (STV 1.0 0.9091)) +(: cnet_isa_acb5ddd3ce (IsA goldstone sunstone) (STV 1.0 0.9091)) +(: cnet_isa_c55eddcc3f (IsA goldthread herb) (STV 1.0 0.9091)) +(: cnet_isa_69f341874f (IsA golem mythical_being) (STV 1.0 0.9091)) +(: cnet_isa_6062ed8bb9 (IsA golf boring_sport) (STV 1.0 0.9091)) +(: cnet_isa_183b4a1c74 (IsA golf elitist_sport) (STV 1.0 0.9091)) +(: cnet_isa_e06fc15a5d (IsA golf expensive_hobby) (STV 1.0 0.9454)) +(: cnet_isa_849b5972e9 (IsA golf healthy_pastime) (STV 1.0 0.9091)) +(: cnet_isa_69eeebe57f (IsA golf sport) (STV 1.0 0.9454)) +(: cnet_isa_e94b27771c (IsA golf outdoor_game) (STV 1.0 0.9091)) +(: cnet_isa_abd3cbf519 (IsA golf_bag bag) (STV 1.0 0.9091)) +(: cnet_isa_f8e2c955dd (IsA golf_bag golf_equipment) (STV 1.0 0.9091)) +(: cnet_isa_c9e6efe5c9 (IsA golf_ball ball) (STV 1.0 0.9091)) +(: cnet_isa_db554b7014 (IsA golf_ball golf_equipment) (STV 1.0 0.9091)) +(: cnet_isa_a926e6f647 (IsA golf_club golf_equipment) (STV 1.0 0.9091)) +(: cnet_isa_8f12408964 (IsA golf_club club) (STV 1.0 0.9091)) +(: cnet_isa_3e06ce373f (IsA golf_club_head head) (STV 1.0 0.9091)) +(: cnet_isa_079e94bf35 (IsA golf_course course) (STV 1.0 0.9091)) +(: cnet_isa_7db1d914af (IsA golf_equipment sport_equipment) (STV 1.0 0.9091)) +(: cnet_isa_a3e8c1242c (IsA golf_glove glove) (STV 1.0 0.9091)) +(: cnet_isa_a9374850f9 (IsA golf_glove golf_equipment) (STV 1.0 0.9091)) +(: cnet_isa_a97c75587a (IsA golf_lesson lesson) (STV 1.0 0.9091)) +(: cnet_isa_f0407b5c8a (IsA golf_link golf_course) (STV 1.0 0.9091)) +(: cnet_isa_a9dbfc8930 (IsA golf_pro golfer) (STV 1.0 0.9091)) +(: cnet_isa_e4ae072b1c (IsA golf_range practice_range) (STV 1.0 0.9091)) +(: cnet_isa_05e1852def (IsA golf_stroke stroke) (STV 1.0 0.9091)) +(: cnet_isa_ed5a866286 (IsA golf_widow wife) (STV 1.0 0.9091)) +(: cnet_isa_a6061b208e (IsA golfcart golf_equipment) (STV 1.0 0.9091)) +(: cnet_isa_97c76dc179 (IsA golfcart motor_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_440e7af214 (IsA golfer player) (STV 1.0 0.9091)) +(: cnet_isa_7d2896ea29 (IsA golfing playing) (STV 1.0 0.9091)) +(: cnet_isa_c5bd6fde13 (IsA golgi_s_cell brain_cell) (STV 1.0 0.9091)) +(: cnet_isa_c5801667bd (IsA golgi_body vesicle) (STV 1.0 0.9091)) +(: cnet_isa_b2afb569be (IsA goliard scholar) (STV 1.0 0.9091)) +(: cnet_isa_c266684e4b (IsA goliath_frog true_frog) (STV 1.0 0.9091)) +(: cnet_isa_902a4bbe53 (IsA golliwog doll) (STV 1.0 0.9091)) +(: cnet_isa_830c72d59c (IsA gomphothere elephant) (STV 1.0 0.9091)) +(: cnet_isa_25e0aad968 (IsA gomphotheriidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_6d21b34f3e (IsA gomphotherium mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_de2f65d76f (IsA gomphrena caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7e28ced51e (IsA gonad endocrine_gland) (STV 1.0 0.9091)) +(: cnet_isa_59e34440e7 (IsA gonadotropin hormone) (STV 1.0 0.9091)) +(: cnet_isa_7538f366da (IsA goncalo_alve zebrawood) (STV 1.0 0.9091)) +(: cnet_isa_cc97611b05 (IsA gond dravidian) (STV 1.0 0.9091)) +(: cnet_isa_b075bba5d8 (IsA gondang_wax wax) (STV 1.0 0.9091)) +(: cnet_isa_0d9fa213bc (IsA gondi south_central_dravidian) (STV 1.0 0.9091)) +(: cnet_isa_4759f263ef (IsA gondola boat) (STV 1.0 0.9091)) +(: cnet_isa_5396531e4d (IsA gondola_car freight_car) (STV 1.0 0.9091)) +(: cnet_isa_eeed5b464a (IsA gondolier boatman) (STV 1.0 0.9091)) +(: cnet_isa_8b70a02f76 (IsA goner desperate) (STV 1.0 0.9091)) +(: cnet_isa_863d48451b (IsA gong percussion_instrument) (STV 1.0 0.9091)) +(: cnet_isa_3308ac26ef (IsA gongorism euphuism) (STV 1.0 0.9091)) +(: cnet_isa_ad68dcd5f1 (IsA gongorist practitioner) (STV 1.0 0.9091)) +(: cnet_isa_2d4793a7ff (IsA gonif wrongdoer) (STV 1.0 0.9091)) +(: cnet_isa_6a4b0daedd (IsA goniometer direction_finder) (STV 1.0 0.9091)) +(: cnet_isa_489d149bd8 (IsA gonion craniometric_point) (STV 1.0 0.9091)) +(: cnet_isa_a8eb8cd4ac (IsA goniopteris fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_9d7efd2576 (IsA gonioscopy examination) (STV 1.0 0.9091)) +(: cnet_isa_546fac7dc8 (IsA gonococcus bacteria) (STV 1.0 0.9091)) +(: cnet_isa_981a5fa748 (IsA gonorhynchidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_48d1e93a08 (IsA gonorhynchus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_8744ef75db (IsA gonorrhea venereal_disease) (STV 1.0 0.9091)) +(: cnet_isa_a78e7f000c (IsA good advantage) (STV 1.0 0.9091)) +(: cnet_isa_937b3fadf6 (IsA good morality) (STV 1.0 0.9091)) +(: cnet_isa_963835de2c (IsA good quality) (STV 1.0 0.9091)) +(: cnet_isa_6cf2cc9356 (IsA good_afternoon farewell) (STV 1.0 0.9091)) +(: cnet_isa_0095fd1ba6 (IsA good_afternoon greeting) (STV 1.0 0.9091)) +(: cnet_isa_e110a8a892 (IsA good_assertion statement) (STV 1.0 0.9339)) +(: cnet_isa_271e507ff5 (IsA good_authority testimony) (STV 1.0 0.9091)) +(: cnet_isa_b079e95738 (IsA good_continuation gestalt_law_of_organization) (STV 1.0 0.9091)) +(: cnet_isa_7326495687 (IsA good_doctor doctor) (STV 1.0 0.9091)) +(: cnet_isa_b75520f580 (IsA good_egg good_person) (STV 1.0 0.9091)) +(: cnet_isa_b562c6b33b (IsA good_faith honesty) (STV 1.0 0.9091)) +(: cnet_isa_91583bd0b6 (IsA good_form propriety) (STV 1.0 0.9091)) +(: cnet_isa_150ed0e210 (IsA good_fortune fortune) (STV 1.0 0.9091)) +(: cnet_isa_a871f1b83e (IsA good_friday christian_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_a8fe2962c2 (IsA good_guy person) (STV 1.0 0.9091)) +(: cnet_isa_399f49dba3 (IsA good_health physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_ce9bebe5df (IsA good_humor temper) (STV 1.0 0.9091)) +(: cnet_isa_787c11f372 (IsA good_king_henry goosefoot) (STV 1.0 0.9091)) +(: cnet_isa_bd2c9e591c (IsA good_luck luck) (STV 1.0 0.9091)) +(: cnet_isa_40c1f92011 (IsA good_manner important_part_of_good_behavior) (STV 1.0 0.9091)) +(: cnet_isa_7525b43c6c (IsA good_morning farewell) (STV 1.0 0.9091)) +(: cnet_isa_ec20718900 (IsA good_morning greeting) (STV 1.0 0.9091)) +(: cnet_isa_c559073ff5 (IsA good_nature disposition) (STV 1.0 0.9091)) +(: cnet_isa_28ca7ebd87 (IsA good_night farewell) (STV 1.0 0.9091)) +(: cnet_isa_7e09bc126b (IsA good_old_boy southerner) (STV 1.0 0.9091)) +(: cnet_isa_7325c09ad3 (IsA good_old_boy white_man) (STV 1.0 0.9091)) +(: cnet_isa_a4c0d11d31 (IsA good_part strength) (STV 1.0 0.9091)) +(: cnet_isa_e24dc2e28a (IsA good_person person) (STV 1.0 0.9091)) +(: cnet_isa_4ed0a999e6 (IsA good_samaritan benefactor) (STV 1.0 0.9091)) +(: cnet_isa_ef9c5dd29a (IsA good_temperedness cheerfulness) (STV 1.0 0.9091)) +(: cnet_isa_9e92eeff0b (IsA good_time experience) (STV 1.0 0.9091)) +(: cnet_isa_0b51068a89 (IsA good_weather weather) (STV 1.0 0.9091)) +(: cnet_isa_cb0974a52f (IsA good_will intangible) (STV 1.0 0.9091)) +(: cnet_isa_8ae56f330e (IsA good_will friendliness) (STV 1.0 0.9091)) +(: cnet_isa_d811392ce8 (IsA good_word new) (STV 1.0 0.9091)) +(: cnet_isa_31d0248cec (IsA goodenia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7dd63e7d8d (IsA goodeniaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_359921f6cc (IsA goody_goody sycophant) (STV 1.0 0.9091)) +(: cnet_isa_dcf82fda9e (IsA goodyera monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2a2785d232 (IsA google search_engine) (STV 1.0 0.9524)) +(: cnet_isa_322c04572f (IsA googly bowling) (STV 1.0 0.9091)) +(: cnet_isa_adcc697bbc (IsA googol cardinal_number) (STV 1.0 0.9091)) +(: cnet_isa_296ee44914 (IsA googolplex cardinal_number) (STV 1.0 0.9091)) +(: cnet_isa_0f4ac5e011 (IsA goosander merganser) (STV 1.0 0.9091)) +(: cnet_isa_4e764dffa2 (IsA goose bird) (STV 1.0 0.9524)) +(: cnet_isa_2c63aa642d (IsA goose anseriform_bird) (STV 1.0 0.9091)) +(: cnet_isa_fc170c0604 (IsA goose poultry) (STV 1.0 0.9091)) +(: cnet_isa_8108ee6a97 (IsA goose_barnacle barnacle) (STV 1.0 0.9091)) +(: cnet_isa_14c7062404 (IsA goose_down down) (STV 1.0 0.9091)) +(: cnet_isa_80e35a65c8 (IsA goose_grass panic_grass) (STV 1.0 0.9091)) +(: cnet_isa_a94aa793f2 (IsA goose_grease animal_oil) (STV 1.0 0.9091)) +(: cnet_isa_e485dd0bd5 (IsA goose_liver liver) (STV 1.0 0.9091)) +(: cnet_isa_bae78e62c2 (IsA goose_step march) (STV 1.0 0.9091)) +(: cnet_isa_288b568918 (IsA gooseberry currant) (STV 1.0 0.9091)) +(: cnet_isa_47efcacd1d (IsA gooseberry shrub) (STV 1.0 0.9091)) +(: cnet_isa_f78ab9eee5 (IsA goosefish spiny_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_410edcbada (IsA goosefoot herb) (STV 1.0 0.9091)) +(: cnet_isa_aba0a2b939 (IsA gooseneck curve) (STV 1.0 0.9091)) +(: cnet_isa_014df6b2c4 (IsA gooseneck_loosestrife loosestrife) (STV 1.0 0.9091)) +(: cnet_isa_bacac0df40 (IsA gopher pocket_rat) (STV 1.0 0.9091)) +(: cnet_isa_6b3b6628f0 (IsA gopher american) (STV 1.0 0.9091)) +(: cnet_isa_389945e8bf (IsA gopher_hole hole) (STV 1.0 0.9091)) +(: cnet_isa_18130b5aff (IsA gopher_snake bull_snake) (STV 1.0 0.9091)) +(: cnet_isa_656b506026 (IsA gopher_tortoise tortoise) (STV 1.0 0.9091)) +(: cnet_isa_d4fe103bc4 (IsA gopherus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_51cf28a951 (IsA goral goat_antelope) (STV 1.0 0.9091)) +(: cnet_isa_c21ba79dd5 (IsA gordian_knot knot) (STV 1.0 0.9091)) +(: cnet_isa_30171eef99 (IsA gordian_knot problem) (STV 1.0 0.9091)) +(: cnet_isa_eb45a0b16d (IsA gordon_setter setter) (STV 1.0 0.9091)) +(: cnet_isa_b2d9165728 (IsA gore piece_of_cloth) (STV 1.0 0.9091)) +(: cnet_isa_49f3e2f7d0 (IsA gore blood) (STV 1.0 0.9091)) +(: cnet_isa_6566fa2d6b (IsA gorge ravine) (STV 1.0 0.9091)) +(: cnet_isa_165a84fc76 (IsA gorgerin molding) (STV 1.0 0.9091)) +(: cnet_isa_669c56dcaf (IsA gorget armor_plate) (STV 1.0 0.9091)) +(: cnet_isa_b4d83ac2e4 (IsA gorgon mythical_monster) (STV 1.0 0.9091)) +(: cnet_isa_e69f1f910c (IsA gorgonacea animal_order) (STV 1.0 0.9091)) +(: cnet_isa_60ae2c529c (IsA gorgonian coral) (STV 1.0 0.9091)) +(: cnet_isa_6d1f50ba55 (IsA gorgonocephalus echinoderm_genus) (STV 1.0 0.9091)) +(: cnet_isa_d87f39617b (IsA gorgonzola bleu) (STV 1.0 0.9091)) +(: cnet_isa_2abddb592a (IsA gorilla ape) (STV 1.0 0.9636)) +(: cnet_isa_d2558955b3 (IsA gorilla great_ape) (STV 1.0 0.9091)) +(: cnet_isa_085d1b1c80 (IsA gorse shrub) (STV 1.0 0.9091)) +(: cnet_isa_450e432b4e (IsA goshawk hawk) (STV 1.0 0.9091)) +(: cnet_isa_ac1a3102c0 (IsA gosling goose) (STV 1.0 0.9091)) +(: cnet_isa_404aa6a042 (IsA gospel folk_music) (STV 1.0 0.9091)) +(: cnet_isa_1f5b3d16b2 (IsA gospel doctrine) (STV 1.0 0.9091)) +(: cnet_isa_dc34868f9f (IsA gospel sacred_text) (STV 1.0 0.9091)) +(: cnet_isa_0dcd50a206 (IsA gospel truth) (STV 1.0 0.9091)) +(: cnet_isa_e7f1ed63f4 (IsA gossamer gauze) (STV 1.0 0.9091)) +(: cnet_isa_f46e10b262 (IsA gossip report) (STV 1.0 0.9091)) +(: cnet_isa_77ea18c4a8 (IsA gossip communicator) (STV 1.0 0.9091)) +(: cnet_isa_94a082c053 (IsA gossip_columnist newspaper_columnist) (STV 1.0 0.9091)) +(: cnet_isa_2ca3f5d925 (IsA gossiping conversation) (STV 1.0 0.9091)) +(: cnet_isa_ce2868795e (IsA gossypium dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_20651d1ce7 (IsA goth teuton) (STV 1.0 0.9091)) +(: cnet_isa_d04e018349 (IsA gothic architectural_style) (STV 1.0 0.9091)) +(: cnet_isa_dcde649ddd (IsA gothic east_germanic) (STV 1.0 0.9091)) +(: cnet_isa_d7b6d6962a (IsA gothic font) (STV 1.0 0.9091)) +(: cnet_isa_07c962b6a7 (IsA gothic_arch pointed_arch) (STV 1.0 0.9091)) +(: cnet_isa_94ad6d0caa (IsA gothic_romance romance) (STV 1.0 0.9091)) +(: cnet_isa_d5f0bf0da8 (IsA gothic_romancer writer) (STV 1.0 0.9091)) +(: cnet_isa_d9b89fdbed (IsA gotterdammerung myth) (STV 1.0 0.9091)) +(: cnet_isa_db213782bd (IsA gouache watercolor) (STV 1.0 0.9091)) +(: cnet_isa_5c3b15bc71 (IsA gouda cheese) (STV 1.0 0.9091)) +(: cnet_isa_b447ecbd71 (IsA gouge creating_by_removal) (STV 1.0 0.9091)) +(: cnet_isa_2d0bc7b09a (IsA gouge edge_tool) (STV 1.0 0.9091)) +(: cnet_isa_7b1bf03b5c (IsA gouger combatant) (STV 1.0 0.9091)) +(: cnet_isa_58553a8eba (IsA goulash stew) (STV 1.0 0.9091)) +(: cnet_isa_66c75a5ec6 (IsA gourd bottle) (STV 1.0 0.9091)) +(: cnet_isa_aa6a05a353 (IsA gourd fruit) (STV 1.0 0.9091)) +(: cnet_isa_09b36830e9 (IsA gourd vine) (STV 1.0 0.9091)) +(: cnet_isa_f8286115e0 (IsA gourde haitian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_709eb4c4fc (IsA gourmandism disposition) (STV 1.0 0.9091)) +(: cnet_isa_407a3ab051 (IsA gout arthritis) (STV 1.0 0.9091)) +(: cnet_isa_f9a0c14142 (IsA governed citizenry) (STV 1.0 0.9091)) +(: cnet_isa_3f3b43e3eb (IsA governess teacher) (STV 1.0 0.9091)) +(: cnet_isa_6a128bbc61 (IsA governing_board board) (STV 1.0 0.9091)) +(: cnet_isa_dc43ddfc5e (IsA government organization) (STV 1.0 0.9091)) +(: cnet_isa_a4509e4201 (IsA government social_control) (STV 1.0 0.9091)) +(: cnet_isa_7a9bc3a4f6 (IsA government polity) (STV 1.0 0.9091)) +(: cnet_isa_d704cf19c8 (IsA government system) (STV 1.0 0.9091)) +(: cnet_isa_810b9e0e8e (IsA government_accounting_office agency) (STV 1.0 0.9091)) +(: cnet_isa_643ee53c63 (IsA government_agent agent) (STV 1.0 0.9091)) +(: cnet_isa_ee545a8fae (IsA government_bond bond) (STV 1.0 0.9091)) +(: cnet_isa_01dd214885 (IsA government_building building) (STV 1.0 0.9091)) +(: cnet_isa_b3ed476b28 (IsA government_department department) (STV 1.0 0.9091)) +(: cnet_isa_9b580680fd (IsA government_in_exile government) (STV 1.0 0.9091)) +(: cnet_isa_17afcff5b4 (IsA government_income income) (STV 1.0 0.9091)) +(: cnet_isa_f120d9dd6e (IsA government_man government_agent) (STV 1.0 0.9091)) +(: cnet_isa_bc2a2396ae (IsA government_office office) (STV 1.0 0.9091)) +(: cnet_isa_66e25d40ae (IsA government_official administration) (STV 1.0 0.9091)) +(: cnet_isa_5c0e3756a8 (IsA government_security security) (STV 1.0 0.9091)) +(: cnet_isa_79a3c7a28f (IsA governor_s_plum shrub) (STV 1.0 0.9091)) +(: cnet_isa_c6cb0db10a (IsA governor_s_race political_campaign) (STV 1.0 0.9091)) +(: cnet_isa_4f8dac90d5 (IsA governor control) (STV 1.0 0.9091)) +(: cnet_isa_09bdda368d (IsA governor politician) (STV 1.0 0.9091)) +(: cnet_isa_ba190e5b70 (IsA governor_general governor) (STV 1.0 0.9091)) +(: cnet_isa_3defd0d860 (IsA governorship position) (STV 1.0 0.9091)) +(: cnet_isa_adef6bacc5 (IsA gowen_cypress cypress) (STV 1.0 0.9091)) +(: cnet_isa_bc1fc96c16 (IsA gown dress) (STV 1.0 0.9091)) +(: cnet_isa_15b30edb58 (IsA gown garment) (STV 1.0 0.9091)) +(: cnet_isa_23ec6ae7d0 (IsA gown outerwear) (STV 1.0 0.9091)) +(: cnet_isa_a440606a39 (IsA gown university) (STV 1.0 0.9091)) +(: cnet_isa_26c9ee4052 (IsA goy christian) (STV 1.0 0.9091)) +(: cnet_isa_83aec94413 (IsA graafian_follicle follicle) (STV 1.0 0.9091)) +(: cnet_isa_d42166f2bf (IsA grab mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_646dfc4750 (IsA grab_bag container) (STV 1.0 0.9091)) +(: cnet_isa_dab0acba76 (IsA grab_bag assortment) (STV 1.0 0.9091)) +(: cnet_isa_a318308078 (IsA grab_bar bar) (STV 1.0 0.9091)) +(: cnet_isa_58a0049efc (IsA grab_sample sample) (STV 1.0 0.9091)) +(: cnet_isa_5b425802e9 (IsA grabber unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_8bf87d3a95 (IsA grace good_nature) (STV 1.0 0.9091)) +(: cnet_isa_53dc7d6889 (IsA grace gracefulness) (STV 1.0 0.9091)) +(: cnet_isa_bdb152761c (IsA grace beneficence) (STV 1.0 0.9091)) +(: cnet_isa_71b19e170e (IsA grace state) (STV 1.0 0.9091)) +(: cnet_isa_1fa1e1f9e1 (IsA grace prayer) (STV 1.0 0.9091)) +(: cnet_isa_b3bd1d291d (IsA grace greek_deity) (STV 1.0 0.9091)) +(: cnet_isa_5771bdf69e (IsA grace_cup cup) (STV 1.0 0.9091)) +(: cnet_isa_97d23b9a4c (IsA grace_note note) (STV 1.0 0.9091)) +(: cnet_isa_0fc33db4db (IsA grace_period time_period) (STV 1.0 0.9091)) +(: cnet_isa_43a8e69cbb (IsA gracefulness carriage) (STV 1.0 0.9091)) +(: cnet_isa_ae68272ceb (IsA gracelessness awkwardness) (STV 1.0 0.9091)) +(: cnet_isa_23bd2a521e (IsA gracilariid tineoid) (STV 1.0 0.9091)) +(: cnet_isa_82554aed2b (IsA gracilariidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_6a6d178200 (IsA graciousness courtesy) (STV 1.0 0.9091)) +(: cnet_isa_1c2c6f559f (IsA grackle new_world_blackbird) (STV 1.0 0.9091)) +(: cnet_isa_15d2c437f9 (IsA gracula bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_f1a8345380 (IsA grad angular_unit) (STV 1.0 0.9091)) +(: cnet_isa_a0f3cc8955 (IsA gradable_opposition opposition) (STV 1.0 0.9091)) +(: cnet_isa_614ee4b3cb (IsA gradation quantification) (STV 1.0 0.9091)) +(: cnet_isa_6bc789c49b (IsA gradation rank) (STV 1.0 0.9091)) +(: cnet_isa_1005ce8137 (IsA grade cattle) (STV 1.0 0.9091)) +(: cnet_isa_a4f16ee98d (IsA grade elevation) (STV 1.0 0.9091)) +(: cnet_isa_ae97d7cd53 (IsA grade gradient) (STV 1.0 0.9091)) +(: cnet_isa_c1ee5dd6c7 (IsA grade ablaut) (STV 1.0 0.9091)) +(: cnet_isa_860420b98c (IsA grade rank) (STV 1.0 0.9091)) +(: cnet_isa_ad7e8cec26 (IsA grade_point mark) (STV 1.0 0.9091)) +(: cnet_isa_ada7aa29db (IsA grade_point_average standard) (STV 1.0 0.9091)) +(: cnet_isa_751ade8169 (IsA grade_school school) (STV 1.0 0.9091)) +(: cnet_isa_c4d031839e (IsA grade_separation crossing) (STV 1.0 0.9091)) +(: cnet_isa_66e5c8a430 (IsA grader critic) (STV 1.0 0.9091)) +(: cnet_isa_30bd61f6b5 (IsA gradient position) (STV 1.0 0.9091)) +(: cnet_isa_307fd97300 (IsA gradient change) (STV 1.0 0.9091)) +(: cnet_isa_1ea9cf688c (IsA gradient_vector vector) (STV 1.0 0.9091)) +(: cnet_isa_9e0c385438 (IsA grading construction) (STV 1.0 0.9091)) +(: cnet_isa_22d2f85f85 (IsA gradual antiphon) (STV 1.0 0.9091)) +(: cnet_isa_228b657e9c (IsA graduality speed) (STV 1.0 0.9091)) +(: cnet_isa_d7077d74c7 (IsA gradualness gradient) (STV 1.0 0.9091)) +(: cnet_isa_f9c649070b (IsA graduate measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_c0b8959260 (IsA graduate_nurse nurse) (STV 1.0 0.9091)) +(: cnet_isa_65f84ab635 (IsA graduate_school school) (STV 1.0 0.9091)) +(: cnet_isa_7c816b2507 (IsA graduate_student collegian) (STV 1.0 0.9091)) +(: cnet_isa_8aa534b34f (IsA graduated_cylinder graduate) (STV 1.0 0.9091)) +(: cnet_isa_1a9d0752cf (IsA graduating_class class) (STV 1.0 0.9091)) +(: cnet_isa_f5c6fc40a4 (IsA graduation completion) (STV 1.0 0.9091)) +(: cnet_isa_2f47e8350b (IsA graduation line) (STV 1.0 0.9091)) +(: cnet_isa_8505152053 (IsA graeco_roman_deity deity) (STV 1.0 0.9091)) +(: cnet_isa_580caa5e2c (IsA graffito decoration) (STV 1.0 0.9091)) +(: cnet_isa_f01d1201c4 (IsA graft attachment) (STV 1.0 0.9091)) +(: cnet_isa_bd7065f297 (IsA graft animal_tissue) (STV 1.0 0.9091)) +(: cnet_isa_c5358f0402 (IsA graham_bread dark_bread) (STV 1.0 0.9091)) +(: cnet_isa_3c255cfc67 (IsA graham_cracker cracker) (STV 1.0 0.9091)) +(: cnet_isa_5b0f5690ee (IsA grail aim) (STV 1.0 0.9091)) +(: cnet_isa_70163ea791 (IsA grain smallness) (STV 1.0 0.9091)) +(: cnet_isa_01bd6863bc (IsA grain texture) (STV 1.0 0.9091)) +(: cnet_isa_c920c2e53a (IsA grain foodstuff) (STV 1.0 0.9091)) +(: cnet_isa_3485c31470 (IsA grain atom) (STV 1.0 0.9091)) +(: cnet_isa_8759c477c8 (IsA grain cereal) (STV 1.0 0.9091)) +(: cnet_isa_00228ef899 (IsA grain seed) (STV 1.0 0.9091)) +(: cnet_isa_b19407ed53 (IsA grain apothecary_unit) (STV 1.0 0.9091)) +(: cnet_isa_d6b03d4d37 (IsA grain avoirdupois_unit) (STV 1.0 0.9091)) +(: cnet_isa_e8f3717b6d (IsA grain metric_weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_ca9a9ebd09 (IsA grain troy_unit) (STV 1.0 0.9091)) +(: cnet_isa_d79d37086f (IsA grain leather) (STV 1.0 0.9091)) +(: cnet_isa_ef634296c7 (IsA grain_merchant merchant) (STV 1.0 0.9091)) +(: cnet_isa_fc046bd20a (IsA grain_moth gelechiid) (STV 1.0 0.9091)) +(: cnet_isa_69b6c0c255 (IsA grain_sorghum sorghum) (STV 1.0 0.9091)) +(: cnet_isa_47af851f09 (IsA grainfield field) (STV 1.0 0.9091)) +(: cnet_isa_3164432ff3 (IsA graining grain) (STV 1.0 0.9091)) +(: cnet_isa_50d9a42d59 (IsA grain_of_paradise herb) (STV 1.0 0.9091)) +(: cnet_isa_52fbe17651 (IsA grainy_club clavicipitaceae) (STV 1.0 0.9091)) +(: cnet_isa_7fe7f0d617 (IsA gram_s_method staining) (STV 1.0 0.9091)) +(: cnet_isa_793c57a7c8 (IsA gram_s_solution solution) (STV 1.0 0.9091)) +(: cnet_isa_7a435d22e2 (IsA gram metric_weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_09e62ed56c (IsA gram_atom metric_weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_53ae758343 (IsA gram_molecule metric_weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_d4433d2f97 (IsA grama grass) (STV 1.0 0.9091)) +(: cnet_isa_5a88366445 (IsA gramicidin antibiotic) (STV 1.0 0.9091)) +(: cnet_isa_f43bab37b5 (IsA gramicidin antiseptic) (STV 1.0 0.9091)) +(: cnet_isa_7e0aa50f64 (IsA graminale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_909789384d (IsA gramineae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_79d3bbf001 (IsA gramineous_plant herb) (STV 1.0 0.9091)) +(: cnet_isa_b50ce58107 (IsA grammar synchronic_linguistic) (STV 1.0 0.9091)) +(: cnet_isa_b697f4736b (IsA grammar_school secondary_school) (STV 1.0 0.9091)) +(: cnet_isa_12d5d1d961 (IsA grammarian linguist) (STV 1.0 0.9091)) +(: cnet_isa_6af6fce80e (IsA grammatical_category class) (STV 1.0 0.9091)) +(: cnet_isa_d650d327e8 (IsA grammatical_meaning meaning) (STV 1.0 0.9091)) +(: cnet_isa_798e76ca9c (IsA grammatical_relation linguistic_relation) (STV 1.0 0.9091)) +(: cnet_isa_4c43ae5188 (IsA grammatical_rule rule) (STV 1.0 0.9091)) +(: cnet_isa_0844391e7c (IsA grammatophyllum monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_51e90c1f3f (IsA gramophone record_player) (STV 1.0 0.9091)) +(: cnet_isa_fa06d32f11 (IsA grampus dolphin) (STV 1.0 0.9091)) +(: cnet_isa_e386ba8ef1 (IsA granadilla passion_fruit) (STV 1.0 0.9091)) +(: cnet_isa_e6363b24c3 (IsA granadilla passionflower) (STV 1.0 0.9091)) +(: cnet_isa_d2f44d9474 (IsA granadilla_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_7bc0d0bf0f (IsA granadilla_wood wood) (STV 1.0 0.9091)) +(: cnet_isa_1475a350fe (IsA granary storehouse) (STV 1.0 0.9091)) +(: cnet_isa_0a51652c86 (IsA grand_circle gymnastic_exercise) (STV 1.0 0.9091)) +(: cnet_isa_c950179023 (IsA grand_dragon head) (STV 1.0 0.9091)) +(: cnet_isa_8824e1599b (IsA grand_duchess duchess) (STV 1.0 0.9091)) +(: cnet_isa_29d1c7d4a5 (IsA grand_duchy domain) (STV 1.0 0.9091)) +(: cnet_isa_f9621db8fd (IsA grand_duke prince) (STV 1.0 0.9091)) +(: cnet_isa_355adc4604 (IsA grand_guignol play) (STV 1.0 0.9091)) +(: cnet_isa_e53117d78e (IsA grand_inquisitor inquisitor) (STV 1.0 0.9091)) +(: cnet_isa_8937f74751 (IsA grand_jury jury) (STV 1.0 0.9091)) +(: cnet_isa_20b476ac6b (IsA grand_lama lama) (STV 1.0 0.9091)) +(: cnet_isa_f8f07c7d97 (IsA grand_larceny larceny) (STV 1.0 0.9091)) +(: cnet_isa_1634d5f90a (IsA grand_mal epileptic_seizure) (STV 1.0 0.9091)) +(: cnet_isa_d49ffe677b (IsA grand_mal_epilepsy epilepsy) (STV 1.0 0.9091)) +(: cnet_isa_10beed2360 (IsA grand_marnier orange_liqueur) (STV 1.0 0.9091)) +(: cnet_isa_f5211ae10d (IsA grand_mufti mufti) (STV 1.0 0.9091)) +(: cnet_isa_da5005924e (IsA grand_national steeplechase) (STV 1.0 0.9091)) +(: cnet_isa_90020e54f0 (IsA grand_opera opera) (STV 1.0 0.9091)) +(: cnet_isa_6e3c446c57 (IsA grand_piano piano) (STV 1.0 0.9091)) +(: cnet_isa_40bf7b07eb (IsA grand_prix automobile_race) (STV 1.0 0.9091)) +(: cnet_isa_f787b5878b (IsA grand_slam slam) (STV 1.0 0.9091)) +(: cnet_isa_1ee7d3d940 (IsA grand_total sum) (STV 1.0 0.9091)) +(: cnet_isa_61c168ac90 (IsA grand_tour tour) (STV 1.0 0.9091)) +(: cnet_isa_03f62c7461 (IsA grandchild offspring) (STV 1.0 0.9091)) +(: cnet_isa_4a9ffc2874 (IsA granddaughter grandchild) (STV 1.0 0.9091)) +(: cnet_isa_fa1d357481 (IsA grande_dame dame) (STV 1.0 0.9091)) +(: cnet_isa_b381a3badc (IsA grandee nobleman) (STV 1.0 0.9091)) +(: cnet_isa_943e532be0 (IsA grandfather male) (STV 1.0 0.9091)) +(: cnet_isa_123a94a529 (IsA grandfather grandparent) (STV 1.0 0.9091)) +(: cnet_isa_38b8b69093 (IsA grandfather_clause exemption) (STV 1.0 0.9091)) +(: cnet_isa_ce0a1be393 (IsA grandfather_clock pendulum_clock) (STV 1.0 0.9091)) +(: cnet_isa_cbdeeff503 (IsA grandiosity expressive_style) (STV 1.0 0.9091)) +(: cnet_isa_df32602304 (IsA grandma grandparent) (STV 1.0 0.9091)) +(: cnet_isa_e6a2fecd5e (IsA grandmaster player) (STV 1.0 0.9091)) +(: cnet_isa_7d78f8ba04 (IsA grandmother grandparent) (STV 1.0 0.9091)) +(: cnet_isa_4a00ad1d4b (IsA grandparent forebear) (STV 1.0 0.9091)) +(: cnet_isa_afc4218d88 (IsA grandparent parent_s_parent) (STV 1.0 0.9091)) +(: cnet_isa_d82e46475d (IsA grandson grandchild) (STV 1.0 0.9091)) +(: cnet_isa_20b506f40a (IsA grandstand stand) (STV 1.0 0.9091)) +(: cnet_isa_20c532ff0f (IsA grandstand audience) (STV 1.0 0.9091)) +(: cnet_isa_0268e2d669 (IsA grandstander exhibitionist) (STV 1.0 0.9091)) +(: cnet_isa_ac707fe69b (IsA grange farm) (STV 1.0 0.9091)) +(: cnet_isa_edf040727f (IsA granite stone) (STV 1.0 0.9091)) +(: cnet_isa_343209ae92 (IsA granite very_hard_type_of_rock) (STV 1.0 0.9339)) +(: cnet_isa_ceac811e8e (IsA granite steadiness) (STV 1.0 0.9091)) +(: cnet_isa_0dc203cc16 (IsA granite batholith) (STV 1.0 0.9091)) +(: cnet_isa_d19cf89f8c (IsA granite_stater american) (STV 1.0 0.9091)) +(: cnet_isa_456e094c6b (IsA graniteware enamelware) (STV 1.0 0.9091)) +(: cnet_isa_0966ea8592 (IsA granny_s_bonnet columbine) (STV 1.0 0.9091)) +(: cnet_isa_0104b03af2 (IsA granny old_woman) (STV 1.0 0.9091)) +(: cnet_isa_abcd18f119 (IsA granny_knot reef_knot) (STV 1.0 0.9091)) +(: cnet_isa_4df156f5bd (IsA granny_smith eating_apple) (STV 1.0 0.9091)) +(: cnet_isa_b2aec77c38 (IsA granola cold_cereal) (STV 1.0 0.9091)) +(: cnet_isa_e5228c9f4c (IsA granola_bar cookie) (STV 1.0 0.9091)) +(: cnet_isa_0f32b7a2e7 (IsA grant allotment) (STV 1.0 0.9091)) +(: cnet_isa_0ce2af2acf (IsA grant right) (STV 1.0 0.9091)) +(: cnet_isa_6d31a7db0e (IsA grant transferred_property) (STV 1.0 0.9091)) +(: cnet_isa_a5931230f5 (IsA grant financial_aid) (STV 1.0 0.9091)) +(: cnet_isa_d1e96229c5 (IsA grant_in_aid grant) (STV 1.0 0.9091)) +(: cnet_isa_86e5d0f1e3 (IsA grant_in_aid financial_aid) (STV 1.0 0.9091)) +(: cnet_isa_c6f86bae3c (IsA grantee recipient) (STV 1.0 0.9091)) +(: cnet_isa_ae52729fa4 (IsA granter person) (STV 1.0 0.9091)) +(: cnet_isa_fec2e5cc42 (IsA grantor granter) (STV 1.0 0.9091)) +(: cnet_isa_63d243be0c (IsA granular_pearlite pearlite) (STV 1.0 0.9091)) +(: cnet_isa_72a39929a9 (IsA granulated_sugar sugar) (STV 1.0 0.9091)) +(: cnet_isa_941f34c966 (IsA granulation formation) (STV 1.0 0.9091)) +(: cnet_isa_00e8708792 (IsA granulation connective_tissue) (STV 1.0 0.9091)) +(: cnet_isa_bf485a9848 (IsA granule grain) (STV 1.0 0.9091)) +(: cnet_isa_57c224f363 (IsA granulocyte leukocyte) (STV 1.0 0.9091)) +(: cnet_isa_2f6488bdfb (IsA granuloma tumor) (STV 1.0 0.9091)) +(: cnet_isa_6815ffd2c4 (IsA granuloma_inguinale venereal_disease) (STV 1.0 0.9091)) +(: cnet_isa_8a3d4e9e8b (IsA granville_wilt wilt) (STV 1.0 0.9091)) +(: cnet_isa_e30bf9561a (IsA grape edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_8c24a40aab (IsA grape vine) (STV 1.0 0.9091)) +(: cnet_isa_30b92da4b4 (IsA grape_arbor arbor) (STV 1.0 0.9091)) +(: cnet_isa_b33d38f071 (IsA grape_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_3b94e0b06f (IsA grape_hyacinth liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_ec40289210 (IsA grape_jelly jelly) (STV 1.0 0.9091)) +(: cnet_isa_bd2c1ef5de (IsA grape_juice fruit_juice) (STV 1.0 0.9091)) +(: cnet_isa_75f8777036 (IsA grape_leaf_begonia begonia) (STV 1.0 0.9091)) +(: cnet_isa_9ec6bf0a27 (IsA grape_louse plant_louse) (STV 1.0 0.9091)) +(: cnet_isa_f5a9606dd8 (IsA grapefruit citrus) (STV 1.0 0.9091)) +(: cnet_isa_349b1c8fbe (IsA grapefruit_juice fruit_juice) (STV 1.0 0.9091)) +(: cnet_isa_f90b632ee7 (IsA grapefruit_peel candied_citrus_peel) (STV 1.0 0.9091)) +(: cnet_isa_fc425afe63 (IsA grapeshot shot) (STV 1.0 0.9091)) +(: cnet_isa_c40332f61b (IsA grapevine gossip) (STV 1.0 0.9091)) +(: cnet_isa_efac04386f (IsA graph diagram) (STV 1.0 0.9091)) +(: cnet_isa_95013f5691 (IsA graph visual_communication) (STV 1.0 0.9091)) +(: cnet_isa_e328fd9a1c (IsA graph_paper paper) (STV 1.0 0.9091)) +(: cnet_isa_591c4555fe (IsA graphic_art art) (STV 1.0 0.9091)) +(: cnet_isa_7b3b4e7dcd (IsA graphic_design visual_communication) (STV 1.0 0.9091)) +(: cnet_isa_1172eecdc2 (IsA graphic_designer specialist) (STV 1.0 0.9091)) +(: cnet_isa_614c681a6a (IsA graphical_user_interface interface) (STV 1.0 0.9091)) +(: cnet_isa_159862776e (IsA graphic graphic_art) (STV 1.0 0.9091)) +(: cnet_isa_fe7579fc40 (IsA graphite carbon) (STV 1.0 0.9091)) +(: cnet_isa_e4f71482ca (IsA graphologist specialist) (STV 1.0 0.9091)) +(: cnet_isa_2670620c1e (IsA graphology discipline) (STV 1.0 0.9091)) +(: cnet_isa_d88134e41d (IsA grapnel anchor) (STV 1.0 0.9091)) +(: cnet_isa_c03c5554c7 (IsA grapnel tool) (STV 1.0 0.9091)) +(: cnet_isa_c3b6209eb7 (IsA grappa brandy) (STV 1.0 0.9091)) +(: cnet_isa_e858092667 (IsA graptophyllum asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b13bc4403a (IsA grasping control) (STV 1.0 0.9091)) +(: cnet_isa_36a467c156 (IsA grasping understanding) (STV 1.0 0.9091)) +(: cnet_isa_63b9f04a76 (IsA grass around_hous) (STV 1.0 0.9091)) +(: cnet_isa_59ec8f0cb9 (IsA grass plant) (STV 1.0 0.9339)) +(: cnet_isa_788804ac90 (IsA grass gramineous_plant) (STV 1.0 0.9091)) +(: cnet_isa_c57e881e89 (IsA grass_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_12d7320892 (IsA grass_frog true_frog) (STV 1.0 0.9091)) +(: cnet_isa_357d204849 (IsA grass_leaved_golden_aster golden_aster) (STV 1.0 0.9091)) +(: cnet_isa_5f719bf825 (IsA grass_pea vetchling) (STV 1.0 0.9091)) +(: cnet_isa_6cf42c9529 (IsA grass_pink orchid) (STV 1.0 0.9091)) +(: cnet_isa_f44b846cba (IsA grass_poly loosestrife) (STV 1.0 0.9091)) +(: cnet_isa_532a590caf (IsA grass_root folk) (STV 1.0 0.9091)) +(: cnet_isa_2217c3cbdc (IsA grass_root foundation) (STV 1.0 0.9091)) +(: cnet_isa_1f9280d211 (IsA grass_skirt skirt) (STV 1.0 0.9091)) +(: cnet_isa_852cc58aa6 (IsA grass_snake water_snake) (STV 1.0 0.9091)) +(: cnet_isa_318851b9ac (IsA grass_tree arborescent_plant) (STV 1.0 0.9091)) +(: cnet_isa_15d73c41fb (IsA grass_vetch vetchling) (STV 1.0 0.9091)) +(: cnet_isa_3d4cca957a (IsA grass_widower man) (STV 1.0 0.9091)) +(: cnet_isa_ef4a1b59a8 (IsA grassfinch weaver) (STV 1.0 0.9091)) +(: cnet_isa_9e21f6ab37 (IsA grassfire fire) (STV 1.0 0.9091)) +(: cnet_isa_78ec7b7a2c (IsA grasshopper orthopterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_d1d450899c (IsA grasshopper cocktail) (STV 1.0 0.9091)) +(: cnet_isa_0e7d3876e2 (IsA grasshopper_mouse vole) (STV 1.0 0.9091)) +(: cnet_isa_17bb254f47 (IsA grasshopper insect) (STV 1.0 0.9091)) +(: cnet_isa_69a1282664 (IsA grassland biome) (STV 1.0 0.9091)) +(: cnet_isa_88b0f32f4c (IsA grassland tract) (STV 1.0 0.9091)) +(: cnet_isa_2c44d3c79a (IsA grassy_death_cama death_cama) (STV 1.0 0.9091)) +(: cnet_isa_663e3ab7bd (IsA grate barrier) (STV 1.0 0.9091)) +(: cnet_isa_093de1a471 (IsA grate framework) (STV 1.0 0.9091)) +(: cnet_isa_7f4c23e5d3 (IsA grate noise) (STV 1.0 0.9091)) +(: cnet_isa_6a6bcf8c8c (IsA grated_cheese cheese) (STV 1.0 0.9091)) +(: cnet_isa_4fd195b3e1 (IsA gratefulness gratitude) (STV 1.0 0.9091)) +(: cnet_isa_721adcde2a (IsA grater kitchen_utensil) (STV 1.0 0.9091)) +(: cnet_isa_c294b11155 (IsA gratification satisfaction) (STV 1.0 0.9091)) +(: cnet_isa_cff304c451 (IsA gratification emotional_state) (STV 1.0 0.9091)) +(: cnet_isa_0e5a87f452 (IsA gratitude feeling) (STV 1.0 0.9091)) +(: cnet_isa_f3f774138f (IsA gratuity fringe_benefit) (STV 1.0 0.9091)) +(: cnet_isa_de6e81db18 (IsA gratuity prize) (STV 1.0 0.9091)) +(: cnet_isa_ea680f25a1 (IsA grave topographic_point) (STV 1.0 0.9091)) +(: cnet_isa_6f1be14d9f (IsA grave death) (STV 1.0 0.9091)) +(: cnet_isa_350c1686ec (IsA grave_accent accent) (STV 1.0 0.9091)) +(: cnet_isa_b2d2e80145 (IsA gravedigger laborer) (STV 1.0 0.9091)) +(: cnet_isa_2be9ee3821 (IsA gravel rock) (STV 1.0 0.9091)) +(: cnet_isa_de85f0b4d8 (IsA gravel_pit pit) (STV 1.0 0.9091)) +(: cnet_isa_a08445dbf3 (IsA gravelweed crownbeard) (STV 1.0 0.9091)) +(: cnet_isa_df1c8e0c5f (IsA graveness seriousness) (STV 1.0 0.9091)) +(: cnet_isa_bca34660fa (IsA graver hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_e11f88a17e (IsA graverobber thief) (STV 1.0 0.9091)) +(: cnet_isa_016693f1e9 (IsA grave_disease autoimmune_disease) (STV 1.0 0.9091)) +(: cnet_isa_42e8fdbb9f (IsA grave_disease exophthalmo) (STV 1.0 0.9091)) +(: cnet_isa_0be3b0b64c (IsA grave_disease hyperthyroidism) (STV 1.0 0.9091)) +(: cnet_isa_dd795588c6 (IsA gravestone memorial) (STV 1.0 0.9091)) +(: cnet_isa_9c3f56d570 (IsA gravestone stone) (STV 1.0 0.9091)) +(: cnet_isa_31fdeb64e9 (IsA graveyard_watch watch) (STV 1.0 0.9091)) +(: cnet_isa_8e7d0351b5 (IsA gravida woman) (STV 1.0 0.9091)) +(: cnet_isa_dd31c89069 (IsA gravida pregnancy) (STV 1.0 0.9091)) +(: cnet_isa_8518ee775b (IsA gravidity pregnancy) (STV 1.0 0.9091)) +(: cnet_isa_0acbc7c0bf (IsA gravimeter measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_0fefc4e657 (IsA gravimetric_analysis quantitative_analysis) (STV 1.0 0.9091)) +(: cnet_isa_10f379d1fc (IsA gravitation drift) (STV 1.0 0.9091)) +(: cnet_isa_b32b2f7327 (IsA gravitation change_of_location) (STV 1.0 0.9091)) +(: cnet_isa_17d79faf05 (IsA gravitational_collapse implosion) (STV 1.0 0.9091)) +(: cnet_isa_1500d686c2 (IsA gravitational_constant constant) (STV 1.0 0.9091)) +(: cnet_isa_756e21619b (IsA gravitational_field field) (STV 1.0 0.9091)) +(: cnet_isa_fd451a8298 (IsA gravitational_interaction interaction) (STV 1.0 0.9091)) +(: cnet_isa_0391128486 (IsA gravitational_mass mass) (STV 1.0 0.9091)) +(: cnet_isa_4e259ba09d (IsA graviton gauge_boson) (STV 1.0 0.9091)) +(: cnet_isa_455b74da1c (IsA gravity force) (STV 1.0 0.9756)) +(: cnet_isa_47ce6c4d7e (IsA gravity force_of_nature) (STV 1.0 0.9339)) +(: cnet_isa_d659466a96 (IsA gravity property_of_matter) (STV 1.0 0.9454)) +(: cnet_isa_07eb81d1c1 (IsA gravity feeling) (STV 1.0 0.9091)) +(: cnet_isa_2d67db1cad (IsA gravity attraction) (STV 1.0 0.9091)) +(: cnet_isa_ba705b010b (IsA gravity_assist trajectory) (STV 1.0 0.9091)) +(: cnet_isa_ec8e7bb3e0 (IsA gravity_gradient gradient) (STV 1.0 0.9091)) +(: cnet_isa_fae200a0dd (IsA gravity_wave wave) (STV 1.0 0.9091)) +(: cnet_isa_936487a6b4 (IsA gravure printing) (STV 1.0 0.9091)) +(: cnet_isa_78a3947800 (IsA gravure engraving) (STV 1.0 0.9091)) +(: cnet_isa_4ba9856c0f (IsA gravure print) (STV 1.0 0.9091)) +(: cnet_isa_8f029922c0 (IsA gravy sauce) (STV 1.0 0.9091)) +(: cnet_isa_7872701585 (IsA gravy_boat dish) (STV 1.0 0.9091)) +(: cnet_isa_b53fefd3a0 (IsA gray saddle_horse) (STV 1.0 0.9091)) +(: cnet_isa_d442ce15ee (IsA gray clothing) (STV 1.0 0.9091)) +(: cnet_isa_113a035e54 (IsA gray achromatic_color) (STV 1.0 0.9091)) +(: cnet_isa_b8a3ec324d (IsA gray organization) (STV 1.0 0.9091)) +(: cnet_isa_6f35efe8c2 (IsA gray_alder alder) (STV 1.0 0.9091)) +(: cnet_isa_3817f69a5e (IsA gray_area area) (STV 1.0 0.9091)) +(: cnet_isa_658895d060 (IsA gray_birch birch) (STV 1.0 0.9091)) +(: cnet_isa_0e0325566b (IsA gray_flounder lefteye_flounder) (STV 1.0 0.9091)) +(: cnet_isa_e49d6762a5 (IsA gray_fox fox) (STV 1.0 0.9091)) +(: cnet_isa_258e2f40c3 (IsA gray_goldenrod goldenrod) (STV 1.0 0.9091)) +(: cnet_isa_d41007302d (IsA gray_kingbird kingbird) (STV 1.0 0.9091)) +(: cnet_isa_6dab3d736f (IsA gray_lemming lemming) (STV 1.0 0.9091)) +(: cnet_isa_10372adbf9 (IsA gray_market market) (STV 1.0 0.9091)) +(: cnet_isa_c4cba74f4b (IsA gray_polypody polypody) (STV 1.0 0.9091)) +(: cnet_isa_3203afbd39 (IsA gray_poplar poplar) (STV 1.0 0.9091)) +(: cnet_isa_9d4833474d (IsA gray_skate skate) (STV 1.0 0.9091)) +(: cnet_isa_20fb1d4651 (IsA gray_snapper snapper) (STV 1.0 0.9091)) +(: cnet_isa_97aae966d8 (IsA gray_sole sole) (STV 1.0 0.9091)) +(: cnet_isa_4bfc98fa67 (IsA gray_whale baleen_whale) (STV 1.0 0.9091)) +(: cnet_isa_a594e88b33 (IsA gray_willow willow) (STV 1.0 0.9091)) +(: cnet_isa_08e9cb8ec4 (IsA grayback dowitcher) (STV 1.0 0.9091)) +(: cnet_isa_82fad0c8bf (IsA grayhen black_grouse) (STV 1.0 0.9091)) +(: cnet_isa_f983ebeb63 (IsA graylag goose) (STV 1.0 0.9091)) +(: cnet_isa_73b651c72c (IsA graze eating) (STV 1.0 0.9091)) +(: cnet_isa_421be43e42 (IsA graze abrasion) (STV 1.0 0.9091)) +(: cnet_isa_b19989e06f (IsA grazier rancher) (STV 1.0 0.9091)) +(: cnet_isa_eba0ba0e70 (IsA grazing touch) (STV 1.0 0.9091)) +(: cnet_isa_c5f38ac483 (IsA grazing_fire fire) (STV 1.0 0.9091)) +(: cnet_isa_359e9f865d (IsA grease oil) (STV 1.0 0.9091)) +(: cnet_isa_d2f9623138 (IsA grease_gun pump) (STV 1.0 0.9091)) +(: cnet_isa_e7c1b3297e (IsA greasepaint makeup) (STV 1.0 0.9091)) +(: cnet_isa_aa92f425c4 (IsA greaseproof_paper paper) (STV 1.0 0.9091)) +(: cnet_isa_eda681f4d7 (IsA greaser mexican) (STV 1.0 0.9091)) +(: cnet_isa_2e82b7ea49 (IsA greasewood shrub) (STV 1.0 0.9091)) +(: cnet_isa_a9c757897a (IsA greasiness fatness) (STV 1.0 0.9091)) +(: cnet_isa_07e8f40a2f (IsA greasy_spoon restaurant) (STV 1.0 0.9091)) +(: cnet_isa_8af155ea40 (IsA great achiever) (STV 1.0 0.9091)) +(: cnet_isa_1d70839731 (IsA great_ape anthropoid_ape) (STV 1.0 0.9091)) +(: cnet_isa_c74e87fc71 (IsA great_attractor galaxy) (STV 1.0 0.9091)) +(: cnet_isa_9de3eb3878 (IsA great_auk auk) (STV 1.0 0.9091)) +(: cnet_isa_9aeec0f6f5 (IsA great_aunt aunt) (STV 1.0 0.9091)) +(: cnet_isa_3f60475bb8 (IsA great_barracuda barracuda) (STV 1.0 0.9091)) +(: cnet_isa_00fed1d0cb (IsA great_barrier_reef world_heritage_area) (STV 1.0 0.9091)) +(: cnet_isa_cce0b1a3b2 (IsA great_blue_heron heron) (STV 1.0 0.9091)) +(: cnet_isa_2f939f9d83 (IsA great_bowerbird bowerbird) (STV 1.0 0.9091)) +(: cnet_isa_2b928d7aa5 (IsA great_britain country_in_europe) (STV 1.0 0.9091)) +(: cnet_isa_ab94d7bd40 (IsA great_burdock burdock) (STV 1.0 0.9091)) +(: cnet_isa_ef08f015e8 (IsA great_bustard bustard) (STV 1.0 0.9091)) +(: cnet_isa_054b48e06f (IsA great_care care) (STV 1.0 0.9091)) +(: cnet_isa_4299b081e9 (IsA great_cerebral_vein cerebral_vein) (STV 1.0 0.9091)) +(: cnet_isa_1425511907 (IsA great_circle line) (STV 1.0 0.9091)) +(: cnet_isa_5890ab3b9e (IsA great_crested_grebe grebe) (STV 1.0 0.9091)) +(: cnet_isa_e398e75100 (IsA great_dane dog) (STV 1.0 0.9339)) +(: cnet_isa_e35d12f47e (IsA great_dane very_large_dog) (STV 1.0 0.9091)) +(: cnet_isa_c7fa330235 (IsA great_dane working_dog) (STV 1.0 0.9091)) +(: cnet_isa_9f268083d3 (IsA great_duckweed duckweed) (STV 1.0 0.9091)) +(: cnet_isa_635c01cb85 (IsA great_grandchild grandchild) (STV 1.0 0.9091)) +(: cnet_isa_297f7ea55f (IsA great_granddaughter great_grandchild) (STV 1.0 0.9091)) +(: cnet_isa_322dec8f0a (IsA great_grandfather great_grandparent) (STV 1.0 0.9091)) +(: cnet_isa_e1fceb15ef (IsA great_grandmother great_grandparent) (STV 1.0 0.9091)) +(: cnet_isa_2d075677f9 (IsA great_grandparent forebear) (STV 1.0 0.9091)) +(: cnet_isa_f24ff7963e (IsA great_grandson great_grandchild) (STV 1.0 0.9091)) +(: cnet_isa_f2a148398e (IsA great_gray_owl owl) (STV 1.0 0.9091)) +(: cnet_isa_03aca08df0 (IsA great_gross large_integer) (STV 1.0 0.9091)) +(: cnet_isa_86cdd790cc (IsA great_hall hall) (STV 1.0 0.9091)) +(: cnet_isa_fd8d3a98a4 (IsA great_horned_owl horned_owl) (STV 1.0 0.9091)) +(: cnet_isa_bf312350b9 (IsA great_knapweed knapweed) (STV 1.0 0.9091)) +(: cnet_isa_7c4705a47b (IsA great_lake fresh_water) (STV 1.0 0.9091)) +(: cnet_isa_d50e81b070 (IsA great_lobelia lobelia) (STV 1.0 0.9091)) +(: cnet_isa_2c23361cc3 (IsA great_millet sorghum) (STV 1.0 0.9091)) +(: cnet_isa_f2be8398a6 (IsA great_nephew nephew) (STV 1.0 0.9091)) +(: cnet_isa_c07147f866 (IsA great_niece niece) (STV 1.0 0.9091)) +(: cnet_isa_fbe8cbed92 (IsA great_plain_paintbrush indian_paintbrush) (STV 1.0 0.9091)) +(: cnet_isa_5b62258c58 (IsA great_pumkin fictional_holiday_deity) (STV 1.0 0.9091)) +(: cnet_isa_af2fd402ec (IsA great_pyrenee dog) (STV 1.0 0.9091)) +(: cnet_isa_11052c1328 (IsA great_ragweed ragweed) (STV 1.0 0.9091)) +(: cnet_isa_a8b122ea80 (IsA great_russian russian) (STV 1.0 0.9091)) +(: cnet_isa_4a88544cc6 (IsA great_seal seal) (STV 1.0 0.9091)) +(: cnet_isa_9ee89c8da3 (IsA great_skua skua) (STV 1.0 0.9091)) +(: cnet_isa_461ded84d9 (IsA great_snipe snipe) (STV 1.0 0.9091)) +(: cnet_isa_a7c762cb34 (IsA great_solomon_s_seal solomon_s_seal) (STV 1.0 0.9091)) +(: cnet_isa_66698d0921 (IsA great_st_john_s_wort st_john_s_wort) (STV 1.0 0.9091)) +(: cnet_isa_4c2032529a (IsA great_uncle uncle) (STV 1.0 0.9091)) +(: cnet_isa_b8ce69b5bb (IsA great_white_heron egret) (STV 1.0 0.9091)) +(: cnet_isa_1e9feb2ced (IsA great_white_heron heron) (STV 1.0 0.9091)) +(: cnet_isa_bd4b61fa67 (IsA great_white_shark shark) (STV 1.0 0.9091)) +(: cnet_isa_0e705f8b7c (IsA great_white_shark mackerel_shark) (STV 1.0 0.9091)) +(: cnet_isa_dc72829ce4 (IsA great_year time_period) (STV 1.0 0.9091)) +(: cnet_isa_4b99fc3f35 (IsA great_yellow_gentian gentian) (STV 1.0 0.9091)) +(: cnet_isa_5235e97c92 (IsA great_yellowcress watercress) (STV 1.0 0.9091)) +(: cnet_isa_9c73cc257a (IsA greatcoat coat) (STV 1.0 0.9091)) +(: cnet_isa_e42a835694 (IsA greater_butterfly_orchid orchid) (STV 1.0 0.9091)) +(: cnet_isa_aa9c9554f7 (IsA greater_kudu kudu) (STV 1.0 0.9091)) +(: cnet_isa_97fda54440 (IsA greater_masterwort astrantia) (STV 1.0 0.9091)) +(: cnet_isa_f6cb60d317 (IsA greater_omentum omentum) (STV 1.0 0.9091)) +(: cnet_isa_238b7a621f (IsA greater_pichiciego armadillo) (STV 1.0 0.9091)) +(: cnet_isa_15fac7fc68 (IsA greater_prairie_chicken prairie_chicken) (STV 1.0 0.9091)) +(: cnet_isa_19241dcee6 (IsA greater_scaup scaup) (STV 1.0 0.9091)) +(: cnet_isa_95b1b78277 (IsA greater_spearwort marsh_plant) (STV 1.0 0.9091)) +(: cnet_isa_352453e413 (IsA greater_swiss_mountain_dog sennenhund) (STV 1.0 0.9091)) +(: cnet_isa_42c66ceb43 (IsA greater_water_parsnip marsh_plant) (STV 1.0 0.9091)) +(: cnet_isa_551e988df5 (IsA greater_whitethroat warbler) (STV 1.0 0.9091)) +(: cnet_isa_d97a9f4398 (IsA greater_yellowleg yellowleg) (STV 1.0 0.9091)) +(: cnet_isa_91087bcda7 (IsA greatest_common_divisor common_divisor) (STV 1.0 0.9091)) +(: cnet_isa_d99d1362c2 (IsA greatness importance) (STV 1.0 0.9091)) +(: cnet_isa_0de843c885 (IsA greave armor_plate) (STV 1.0 0.9091)) +(: cnet_isa_e49be789c4 (IsA grebe podicipitiform_seabird) (STV 1.0 0.9091)) +(: cnet_isa_17939c73d5 (IsA grecian european) (STV 1.0 0.9091)) +(: cnet_isa_f8e2af7464 (IsA greco_roman_wrestling wrestling) (STV 1.0 0.9091)) +(: cnet_isa_4dc8435d1b (IsA greece balkan_country) (STV 1.0 0.9091)) +(: cnet_isa_2d5316b6da (IsA greed desire) (STV 1.0 0.9091)) +(: cnet_isa_003ea58afc (IsA greediness gluttony) (STV 1.0 0.9091)) +(: cnet_isa_930d25ac7e (IsA greediness selfishness) (STV 1.0 0.9091)) +(: cnet_isa_1225720b70 (IsA greek human_language) (STV 1.0 0.9091)) +(: cnet_isa_05ed51743a (IsA greek indo_european) (STV 1.0 0.9091)) +(: cnet_isa_06f3d852b0 (IsA greek_alphabet alphabet) (STV 1.0 0.9091)) +(: cnet_isa_4309d9dc2a (IsA greek_architecture classical_architecture) (STV 1.0 0.9091)) +(: cnet_isa_c2159cb4a3 (IsA greek_catholic catholic) (STV 1.0 0.9091)) +(: cnet_isa_b7e5ec460e (IsA greek_cross cross) (STV 1.0 0.9091)) +(: cnet_isa_58b13395ad (IsA greek_deity deity) (STV 1.0 0.9091)) +(: cnet_isa_cfab8665fe (IsA greek_fire mixture) (STV 1.0 0.9091)) +(: cnet_isa_553d863b05 (IsA greek_fire weapon) (STV 1.0 0.9091)) +(: cnet_isa_e8c82a4e29 (IsA greek_mode mode) (STV 1.0 0.9091)) +(: cnet_isa_ff97401c37 (IsA greek_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_ea8e7581b0 (IsA greek_mythology classical_mythology) (STV 1.0 0.9091)) +(: cnet_isa_29099f56a8 (IsA greek_orthodox_church orthodox_church) (STV 1.0 0.9091)) +(: cnet_isa_6b78baf0a2 (IsA greek_partridge partridge) (STV 1.0 0.9091)) +(: cnet_isa_c5cc0695e2 (IsA greek_valerian polemonium) (STV 1.0 0.9091)) +(: cnet_isa_25404a702f (IsA green color) (STV 1.0 0.9693)) +(: cnet_isa_acf995984c (IsA green colour) (STV 1.0 0.9524)) +(: cnet_isa_35b97c2009 (IsA green chromatic_color) (STV 1.0 0.9091)) +(: cnet_isa_e39aebaa5e (IsA green site) (STV 1.0 0.9091)) +(: cnet_isa_9a4f403bfc (IsA green environmentalist) (STV 1.0 0.9091)) +(: cnet_isa_9e8fcc6297 (IsA green_adder_s_mouth orchid) (STV 1.0 0.9091)) +(: cnet_isa_aa31ef89b9 (IsA green_alder alder) (STV 1.0 0.9091)) +(: cnet_isa_795134c8d8 (IsA green_algae alga) (STV 1.0 0.9091)) +(: cnet_isa_33a48b2fcb (IsA green_arrow_arum arrow_arum) (STV 1.0 0.9091)) +(: cnet_isa_df6e6ef7c5 (IsA green_ash red_ash) (STV 1.0 0.9091)) +(: cnet_isa_5ab74e257e (IsA green_bean fresh_bean) (STV 1.0 0.9091)) +(: cnet_isa_65c9f6a640 (IsA green_bean common_bean) (STV 1.0 0.9091)) +(: cnet_isa_bba4cdfea3 (IsA green_beret soldier) (STV 1.0 0.9091)) +(: cnet_isa_5c663f3f45 (IsA green_bristlegrass foxtail) (STV 1.0 0.9091)) +(: cnet_isa_3ffa5e53c3 (IsA green_card positive_identification) (STV 1.0 0.9091)) +(: cnet_isa_4465f21ec0 (IsA green_dougla_fir dougla_fir) (STV 1.0 0.9091)) +(: cnet_isa_89b89e6c1e (IsA green_dragon arum) (STV 1.0 0.9091)) +(: cnet_isa_7563976577 (IsA green_frog true_frog) (STV 1.0 0.9091)) +(: cnet_isa_0769526557 (IsA green_gentian herb) (STV 1.0 0.9091)) +(: cnet_isa_e132d03dc7 (IsA green_gland gland) (STV 1.0 0.9091)) +(: cnet_isa_c40f503f39 (IsA green_gold gold) (STV 1.0 0.9091)) +(: cnet_isa_68af976c5e (IsA green_hellebore hellebore) (STV 1.0 0.9091)) +(: cnet_isa_29857e5ffc (IsA green_june_beetle june_beetle) (STV 1.0 0.9091)) +(: cnet_isa_54f69895ae (IsA green_lacewing lacewing) (STV 1.0 0.9091)) +(: cnet_isa_e701df97f5 (IsA green_light permission) (STV 1.0 0.9091)) +(: cnet_isa_8abb798111 (IsA green_light traffic_light) (STV 1.0 0.9091)) +(: cnet_isa_962e99cbc9 (IsA green_lizard lacertid_lizard) (STV 1.0 0.9091)) +(: cnet_isa_02eaec5725 (IsA green_mamba black_mamba) (STV 1.0 0.9091)) +(: cnet_isa_4c788d5cb8 (IsA green_manure manure) (STV 1.0 0.9091)) +(: cnet_isa_545ddb829f (IsA green_mayonnaise mayonnaise) (STV 1.0 0.9091)) +(: cnet_isa_cd673b010e (IsA green_monkey guenon) (STV 1.0 0.9091)) +(: cnet_isa_03c2028d22 (IsA green_monster slang_name_for_jealousy) (STV 1.0 0.9091)) +(: cnet_isa_217b4c3aa8 (IsA green_mushroom_pimple mushroom_pimple) (STV 1.0 0.9091)) +(: cnet_isa_846eab7f36 (IsA green_olive olive) (STV 1.0 0.9091)) +(: cnet_isa_92f6c40cda (IsA green_onion onion) (STV 1.0 0.9091)) +(: cnet_isa_9e56d84c85 (IsA green_paper report) (STV 1.0 0.9091)) +(: cnet_isa_8dff17f200 (IsA green_party party) (STV 1.0 0.9091)) +(: cnet_isa_791b5465ba (IsA green_pea pea) (STV 1.0 0.9091)) +(: cnet_isa_844aa4944f (IsA green_pea_soup soup) (STV 1.0 0.9091)) +(: cnet_isa_317033b8ad (IsA green_peach_aphid greenfly) (STV 1.0 0.9091)) +(: cnet_isa_1e525fe247 (IsA green_peafowl peafowl) (STV 1.0 0.9091)) +(: cnet_isa_a23d85024f (IsA green_pepper sweet_pepper) (STV 1.0 0.9091)) +(: cnet_isa_f5784ea642 (IsA green_revolution revolution) (STV 1.0 0.9091)) +(: cnet_isa_072ee76816 (IsA green_salad tossed_salad) (STV 1.0 0.9091)) +(: cnet_isa_f52379ff5a (IsA green_smut smut) (STV 1.0 0.9091)) +(: cnet_isa_ddab12ffa7 (IsA green_smut_fungus fungus) (STV 1.0 0.9091)) +(: cnet_isa_f595a1e4cc (IsA green_snake colubrid_snake) (STV 1.0 0.9091)) +(: cnet_isa_f4d5c52796 (IsA green_soybean shell_bean) (STV 1.0 0.9091)) +(: cnet_isa_b75de716f5 (IsA green_spleenwort spleenwort) (STV 1.0 0.9091)) +(: cnet_isa_074feb8d07 (IsA green_tailed_towhee towhee) (STV 1.0 0.9091)) +(: cnet_isa_a3337dac3a (IsA green_tea tea) (STV 1.0 0.9091)) +(: cnet_isa_ff685b7b55 (IsA green_thumb forte) (STV 1.0 0.9091)) +(: cnet_isa_06a825d2a8 (IsA green_turtle sea_turtle) (STV 1.0 0.9091)) +(: cnet_isa_e40ed48e12 (IsA green_woodpecker woodpecker) (STV 1.0 0.9091)) +(: cnet_isa_aa79a42107 (IsA greenback_party party) (STV 1.0 0.9091)) +(: cnet_isa_268aed136f (IsA greenbelt belt) (STV 1.0 0.9091)) +(: cnet_isa_7cd6458aa0 (IsA greenbottle blowfly) (STV 1.0 0.9091)) +(: cnet_isa_5c310ba654 (IsA greenery leaf) (STV 1.0 0.9091)) +(: cnet_isa_f962a37853 (IsA greeneye soft_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_b5eb3fdf1c (IsA greenfly aphid) (STV 1.0 0.9091)) +(: cnet_isa_74b3d7e105 (IsA greengage plum) (STV 1.0 0.9091)) +(: cnet_isa_476bc47493 (IsA greengrocer grocer) (STV 1.0 0.9091)) +(: cnet_isa_e13a655c68 (IsA greengrocery grocery) (STV 1.0 0.9091)) +(: cnet_isa_3db08fb549 (IsA greengrocery grocery_store) (STV 1.0 0.9091)) +(: cnet_isa_5b20f10992 (IsA greenhouse building) (STV 1.0 0.9091)) +(: cnet_isa_4be67c7427 (IsA greenhouse_effect atmospheric_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_cc77cf5e5c (IsA greenhouse_gas gas) (STV 1.0 0.9091)) +(: cnet_isa_0b4737fcbd (IsA greenhouse_gas causing_world_s_temperature_to_rise) (STV 1.0 0.9091)) +(: cnet_isa_58b05a3d14 (IsA greenhouse_whitefly whitefly) (STV 1.0 0.9091)) +(: cnet_isa_cb05f1717e (IsA greenish_blue blue) (STV 1.0 0.9091)) +(: cnet_isa_9423046abc (IsA greenish_yellow yellow) (STV 1.0 0.9091)) +(: cnet_isa_893da86025 (IsA greenishness green) (STV 1.0 0.9091)) +(: cnet_isa_4059db9c80 (IsA greenling scorpaenoid) (STV 1.0 0.9091)) +(: cnet_isa_651d80e867 (IsA greenmail shark_repellent) (STV 1.0 0.9091)) +(: cnet_isa_f11652c5c6 (IsA greenness profusion) (STV 1.0 0.9091)) +(: cnet_isa_2359cb506f (IsA greenness immaturity) (STV 1.0 0.9091)) +(: cnet_isa_9fb8aff9e3 (IsA greenockite mineral) (STV 1.0 0.9091)) +(: cnet_isa_9331c20727 (IsA greenroom room) (STV 1.0 0.9091)) +(: cnet_isa_c2647a07bb (IsA green vegetable) (STV 1.0 0.9091)) +(: cnet_isa_08bf80b9f0 (IsA greensand sandstone) (STV 1.0 0.9091)) +(: cnet_isa_5752a7175a (IsA greenshank sandpiper) (STV 1.0 0.9091)) +(: cnet_isa_49639dd97f (IsA greenskeeper custodian) (STV 1.0 0.9091)) +(: cnet_isa_19da2d90cc (IsA greenstick_fracture incomplete_fracture) (STV 1.0 0.9091)) +(: cnet_isa_fce23a563a (IsA greenwich_mean_time time) (STV 1.0 0.9091)) +(: cnet_isa_75494b7036 (IsA greenwing teal) (STV 1.0 0.9091)) +(: cnet_isa_b0eb4ad858 (IsA greenwood forest) (STV 1.0 0.9091)) +(: cnet_isa_b915e84c31 (IsA greeter person) (STV 1.0 0.9091)) +(: cnet_isa_770913b91e (IsA greeting acknowledgment) (STV 1.0 0.9091)) +(: cnet_isa_d2b18d0dad (IsA greeting_card card) (STV 1.0 0.9091)) +(: cnet_isa_6fecfce348 (IsA gregarine sporozoan) (STV 1.0 0.9091)) +(: cnet_isa_ea7796fb7c (IsA gregarinida animal_order) (STV 1.0 0.9091)) +(: cnet_isa_e0436028a5 (IsA gregariousness sociability) (STV 1.0 0.9091)) +(: cnet_isa_77907335d5 (IsA gregorian_calendar solar_calendar) (STV 1.0 0.9091)) +(: cnet_isa_7906a0d488 (IsA gregorian_calendar_month calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_e70536a9a0 (IsA greisen rock) (STV 1.0 0.9091)) +(: cnet_isa_dec2e695f5 (IsA grenada_dollar dollar) (STV 1.0 0.9091)) +(: cnet_isa_0955431e95 (IsA grenade bomb) (STV 1.0 0.9091)) +(: cnet_isa_8b23f66919 (IsA grenadian west_indian) (STV 1.0 0.9091)) +(: cnet_isa_d99f6fcdbc (IsA grenadier gadoid) (STV 1.0 0.9091)) +(: cnet_isa_2c29088776 (IsA grenadier infantryman) (STV 1.0 0.9091)) +(: cnet_isa_97297d71bf (IsA grenadine syrup) (STV 1.0 0.9091)) +(: cnet_isa_9fa85d7bb8 (IsA gresham_s_law principle) (STV 1.0 0.9091)) +(: cnet_isa_320d41d83f (IsA grevillea shrub) (STV 1.0 0.9091)) +(: cnet_isa_86e799765f (IsA grevy_s_zebra zebra) (STV 1.0 0.9091)) +(: cnet_isa_32be283791 (IsA grewia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7001d01da6 (IsA grey_friar friar) (STV 1.0 0.9091)) +(: cnet_isa_6285d139f7 (IsA grey_matter nervous_tissue) (STV 1.0 0.9091)) +(: cnet_isa_dc3912f5c1 (IsA greyback confederate_soldier) (STV 1.0 0.9091)) +(: cnet_isa_db97c00345 (IsA greyhound hound) (STV 1.0 0.9091)) +(: cnet_isa_a0a68f2d6b (IsA greyhound racer) (STV 1.0 0.9091)) +(: cnet_isa_e1188c83fb (IsA greyhound_racing racing) (STV 1.0 0.9091)) +(: cnet_isa_6d70a1ed00 (IsA gria dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1a5039994b (IsA grid cooking_utensil) (STV 1.0 0.9091)) +(: cnet_isa_a17ab17384 (IsA grid electrode) (STV 1.0 0.9091)) +(: cnet_isa_23303c8143 (IsA grid facility) (STV 1.0 0.9091)) +(: cnet_isa_1da3a7a310 (IsA grid form) (STV 1.0 0.9091)) +(: cnet_isa_b387ed9d23 (IsA grid_metal hard_lead) (STV 1.0 0.9091)) +(: cnet_isa_729a012f10 (IsA griddle cooking_utensil) (STV 1.0 0.9091)) +(: cnet_isa_757bca3062 (IsA gridlock traffic_jam) (STV 1.0 0.9091)) +(: cnet_isa_6d75b02481 (IsA grief negative_stimulus) (STV 1.0 0.9091)) +(: cnet_isa_d19bee0439 (IsA grief sorrow) (STV 1.0 0.9091)) +(: cnet_isa_ad1ae29e92 (IsA grievance allegation) (STV 1.0 0.9091)) +(: cnet_isa_f12443feec (IsA grievance complaint) (STV 1.0 0.9091)) +(: cnet_isa_e6f7aff68e (IsA griffon dog) (STV 1.0 0.9091)) +(: cnet_isa_e10e092c0e (IsA griffon sporting_dog) (STV 1.0 0.9091)) +(: cnet_isa_bbd58e4354 (IsA griffon_vulture old_world_vulture) (STV 1.0 0.9091)) +(: cnet_isa_7ea3dfb4db (IsA grigori_aleksandrovich_potemkin military_officer) (STV 1.0 0.9091)) +(: cnet_isa_0c24dad930 (IsA grigori_aleksandrovich_potemkin politician) (STV 1.0 0.9091)) +(: cnet_isa_9706735c69 (IsA grigri amulet) (STV 1.0 0.9091)) +(: cnet_isa_ed844d2ae2 (IsA grill framework) (STV 1.0 0.9091)) +(: cnet_isa_94ccf5a2f8 (IsA grille grate) (STV 1.0 0.9091)) +(: cnet_isa_d64e2c4b11 (IsA grilling cooking) (STV 1.0 0.9091)) +(: cnet_isa_7f616b99f7 (IsA grilling good_way_too_cook) (STV 1.0 0.9091)) +(: cnet_isa_5f37636c84 (IsA grillroom restaurant) (STV 1.0 0.9091)) +(: cnet_isa_e45ecbf9b0 (IsA grimace facial_expression) (STV 1.0 0.9091)) +(: cnet_isa_849edb579d (IsA grime_golden eating_apple) (STV 1.0 0.9091)) +(: cnet_isa_0de51450a5 (IsA griminess dirtiness) (STV 1.0 0.9091)) +(: cnet_isa_80a141b794 (IsA grimm_s_law sound_law) (STV 1.0 0.9091)) +(: cnet_isa_97dd398331 (IsA grimoire manual) (STV 1.0 0.9091)) +(: cnet_isa_ae726f53cd (IsA grin smile) (STV 1.0 0.9091)) +(: cnet_isa_f34f7e0fe9 (IsA grind crush) (STV 1.0 0.9091)) +(: cnet_isa_e5b9980f4c (IsA grind degree) (STV 1.0 0.9091)) +(: cnet_isa_bc8c7af2ef (IsA grindelia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_46816b28af (IsA grindelia_robusta gumweed) (STV 1.0 0.9091)) +(: cnet_isa_2f6bf03e5b (IsA grinder machine_tool) (STV 1.0 0.9091)) +(: cnet_isa_97a90c1352 (IsA grinding noise) (STV 1.0 0.9091)) +(: cnet_isa_83c42a99d2 (IsA grinding atom) (STV 1.0 0.9091)) +(: cnet_isa_8ad2dd7b35 (IsA grinding friction) (STV 1.0 0.9091)) +(: cnet_isa_5807c9bf01 (IsA grinding_wheel wheel) (STV 1.0 0.9091)) +(: cnet_isa_eb6e5544fb (IsA grindstone sharpener) (STV 1.0 0.9091)) +(: cnet_isa_4f52f9b98d (IsA grindstone stone) (STV 1.0 0.9091)) +(: cnet_isa_223cf76205 (IsA gringo foreigner) (STV 1.0 0.9091)) +(: cnet_isa_b4d3173128 (IsA grinner person) (STV 1.0 0.9091)) +(: cnet_isa_9a9ef19502 (IsA griot narrator) (STV 1.0 0.9091)) +(: cnet_isa_28e9ec95de (IsA grip influence) (STV 1.0 0.9091)) +(: cnet_isa_751ec8d72d (IsA grip friction) (STV 1.0 0.9091)) +(: cnet_isa_50bd191fd7 (IsA grip skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_42ced4880e (IsA gripe objection) (STV 1.0 0.9091)) +(: cnet_isa_73cc43fd6f (IsA gripsack bag) (STV 1.0 0.9091)) +(: cnet_isa_a0675a08a5 (IsA grisaille chiaroscuro) (STV 1.0 0.9091)) +(: cnet_isa_431dd1bf5a (IsA griselinia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5f9aeae9b6 (IsA grison musteline_mammal) (STV 1.0 0.9091)) +(: cnet_isa_01acf6bdc9 (IsA grissino breadstick) (STV 1.0 0.9091)) +(: cnet_isa_1fc86b8af6 (IsA grist grain) (STV 1.0 0.9091)) +(: cnet_isa_4d70563321 (IsA gristmill mill) (STV 1.0 0.9091)) +(: cnet_isa_edf4c92a03 (IsA grit sandstone) (STV 1.0 0.9091)) +(: cnet_isa_8a58a52512 (IsA grit hot_cereal) (STV 1.0 0.9091)) +(: cnet_isa_729a627bec (IsA grivet guenon) (STV 1.0 0.9091)) +(: cnet_isa_83fedfcd91 (IsA grizzle wig) (STV 1.0 0.9091)) +(: cnet_isa_1230224466 (IsA grizzly bear) (STV 1.0 0.9091)) +(: cnet_isa_a2d9dbe94e (IsA grizzly brown_bear) (STV 1.0 0.9091)) +(: cnet_isa_c167716e11 (IsA grizzly_bear bear) (STV 1.0 0.9091)) +(: cnet_isa_b4b2b3e9b9 (IsA groan utterance) (STV 1.0 0.9091)) +(: cnet_isa_157dddfed9 (IsA groaner person) (STV 1.0 0.9091)) +(: cnet_isa_7acc709944 (IsA groat grain) (STV 1.0 0.9091)) +(: cnet_isa_e90f144d68 (IsA grocer merchant) (STV 1.0 0.9091)) +(: cnet_isa_3f894348be (IsA grocery consumer_good) (STV 1.0 0.9091)) +(: cnet_isa_c74771e619 (IsA grocery_bag sack) (STV 1.0 0.9091)) +(: cnet_isa_b8eadb7dea (IsA grocery_boy deliveryman) (STV 1.0 0.9091)) +(: cnet_isa_f88ad61a5d (IsA grocery_list list) (STV 1.0 0.9091)) +(: cnet_isa_571e139153 (IsA grocery_list shopping_list) (STV 1.0 0.9091)) +(: cnet_isa_4836fd6daa (IsA grocery_store marketplace) (STV 1.0 0.9091)) +(: cnet_isa_ccabda4c50 (IsA groenendael belgian_sheepdog) (STV 1.0 0.9091)) +(: cnet_isa_73c207e428 (IsA groenlandia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8be40fcdc1 (IsA grog rum) (STV 1.0 0.9091)) +(: cnet_isa_7fad6d3a96 (IsA grogginess unconsciousness) (STV 1.0 0.9091)) +(: cnet_isa_00830d3bd3 (IsA grogginess drunkenness) (STV 1.0 0.9091)) +(: cnet_isa_75057c7f73 (IsA grogginess fatigue) (STV 1.0 0.9091)) +(: cnet_isa_5a374e0f37 (IsA grogram fabric) (STV 1.0 0.9091)) +(: cnet_isa_b8416679c5 (IsA groin edge) (STV 1.0 0.9091)) +(: cnet_isa_cd5fbe49f9 (IsA groin area) (STV 1.0 0.9091)) +(: cnet_isa_9222cd111c (IsA groined_vault vault) (STV 1.0 0.9091)) +(: cnet_isa_6eeffcc021 (IsA gromwell herb) (STV 1.0 0.9091)) +(: cnet_isa_f85606b7de (IsA groom newlywed) (STV 1.0 0.9091)) +(: cnet_isa_9162abf525 (IsA groom participant) (STV 1.0 0.9091)) +(: cnet_isa_e863da3437 (IsA groomsman attendant) (STV 1.0 0.9091)) +(: cnet_isa_c1e9bc4683 (IsA groove body_part) (STV 1.0 0.9091)) +(: cnet_isa_702a486557 (IsA groove depression) (STV 1.0 0.9091)) +(: cnet_isa_49a83c30a1 (IsA groover device) (STV 1.0 0.9091)) +(: cnet_isa_e7da4cde2e (IsA grooving formation) (STV 1.0 0.9091)) +(: cnet_isa_3e5482738c (IsA grope touch) (STV 1.0 0.9091)) +(: cnet_isa_4d98e02354 (IsA gro_point embroidery_stitch) (STV 1.0 0.9091)) +(: cnet_isa_e2df0789fc (IsA gro_point needlepoint) (STV 1.0 0.9091)) +(: cnet_isa_2500b62e70 (IsA gro_ventre siouan) (STV 1.0 0.9091)) +(: cnet_isa_a3214f7636 (IsA grosbeak finch) (STV 1.0 0.9091)) +(: cnet_isa_064e2858cb (IsA groschen austrian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_9980ef7696 (IsA grosgrain fabric) (STV 1.0 0.9091)) +(: cnet_isa_08afe27b3e (IsA gross sum) (STV 1.0 0.9091)) +(: cnet_isa_d8f3811a44 (IsA gross large_integer) (STV 1.0 0.9091)) +(: cnet_isa_097bd0689d (IsA gross_anatomy anatomy) (STV 1.0 0.9091)) +(: cnet_isa_82eeedddf3 (IsA gross_domestic_product value) (STV 1.0 0.9091)) +(: cnet_isa_c6f81c9eeb (IsA gross_estate estate) (STV 1.0 0.9091)) +(: cnet_isa_83d2e9b30b (IsA gross_national_product value) (STV 1.0 0.9091)) +(: cnet_isa_738940c314 (IsA gross_profit net_income) (STV 1.0 0.9091)) +(: cnet_isa_d44f8bdb1d (IsA gross_sale income) (STV 1.0 0.9091)) +(: cnet_isa_f6fb4b16a5 (IsA grossulariaceae plant_family) (STV 1.0 0.9091)) +(: cnet_isa_6c282a2c5b (IsA grosz polish_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_7596be88c2 (IsA grotesque art) (STV 1.0 0.9091)) +(: cnet_isa_b09de54f20 (IsA grotesqueness ugliness) (STV 1.0 0.9091)) +(: cnet_isa_1043dcae6c (IsA grotto cave) (STV 1.0 0.9091)) +(: cnet_isa_bba3b58292 (IsA grouch unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_c63478aefc (IsA groucho_marx famous_comedian) (STV 1.0 0.9339)) +(: cnet_isa_3704db5394 (IsA ground surface) (STV 1.0 0.9091)) +(: cnet_isa_38e32ac041 (IsA ground percept) (STV 1.0 0.9091)) +(: cnet_isa_e80ecbdbfc (IsA ground connection) (STV 1.0 0.9091)) +(: cnet_isa_f39c981869 (IsA ground military_position) (STV 1.0 0.9091)) +(: cnet_isa_adf9d92e5d (IsA ground_attack attack) (STV 1.0 0.9091)) +(: cnet_isa_d2a9da5e01 (IsA ground_bait bait) (STV 1.0 0.9091)) +(: cnet_isa_340e7c1d42 (IsA ground_bass bass) (STV 1.0 0.9091)) +(: cnet_isa_0226faf3db (IsA ground_bass ostinato) (STV 1.0 0.9091)) +(: cnet_isa_ea139417ec (IsA ground_beef beef) (STV 1.0 0.9091)) +(: cnet_isa_3ce2bc5af3 (IsA ground_beetle beetle) (STV 1.0 0.9091)) +(: cnet_isa_ad0f2f442f (IsA ground_cable cable) (STV 1.0 0.9091)) +(: cnet_isa_d3c34e0670 (IsA ground_cedar ground_pine) (STV 1.0 0.9091)) +(: cnet_isa_5335c92892 (IsA ground_cedar juniper) (STV 1.0 0.9091)) +(: cnet_isa_043004b612 (IsA ground_cherry herb) (STV 1.0 0.9091)) +(: cnet_isa_d9895904b1 (IsA ground_control communication_system) (STV 1.0 0.9091)) +(: cnet_isa_6dfa7d2e29 (IsA ground_controlled_approach aircraft_landing) (STV 1.0 0.9091)) +(: cnet_isa_7e6f9d84fb (IsA ground_crew gang) (STV 1.0 0.9091)) +(: cnet_isa_b22cf1322b (IsA ground_effect aerodynamic_lift) (STV 1.0 0.9091)) +(: cnet_isa_c65ebeddad (IsA ground_fir ground_pine) (STV 1.0 0.9091)) +(: cnet_isa_d58a5a53c5 (IsA ground_fire forest_fire) (STV 1.0 0.9091)) +(: cnet_isa_03112883ca (IsA ground_floor level_of_building) (STV 1.0 0.9091)) +(: cnet_isa_c24234fce1 (IsA ground_floor floor) (STV 1.0 0.9091)) +(: cnet_isa_940dd94810 (IsA ground_floor beginning) (STV 1.0 0.9091)) +(: cnet_isa_375eeb7db7 (IsA ground_glass glass) (STV 1.0 0.9091)) +(: cnet_isa_a6f3b54135 (IsA ground_ivy vine) (STV 1.0 0.9091)) +(: cnet_isa_7b3ba08184 (IsA ground_loop mishap) (STV 1.0 0.9091)) +(: cnet_isa_2e7170a843 (IsA ground_pine bugle) (STV 1.0 0.9091)) +(: cnet_isa_39a29a6be8 (IsA ground_pine club_moss) (STV 1.0 0.9091)) +(: cnet_isa_31120362e2 (IsA ground_pink phlox) (STV 1.0 0.9091)) +(: cnet_isa_178eb0f7ed (IsA ground_plan floor_plan) (STV 1.0 0.9091)) +(: cnet_isa_9e85640518 (IsA ground_rattler rattlesnake) (STV 1.0 0.9091)) +(: cnet_isa_34f37730d8 (IsA ground_rent rent) (STV 1.0 0.9091)) +(: cnet_isa_f842a91ab4 (IsA ground_roller roller) (STV 1.0 0.9091)) +(: cnet_isa_e71f6b5134 (IsA ground_rose rose) (STV 1.0 0.9091)) +(: cnet_isa_4a71dfc858 (IsA ground_rule rule) (STV 1.0 0.9091)) +(: cnet_isa_d3b2e13eec (IsA ground_shaker dinosaur) (STV 1.0 0.9091)) +(: cnet_isa_69e9cedbbc (IsA ground_sloth megatherian) (STV 1.0 0.9091)) +(: cnet_isa_5f0529fc0e (IsA ground_snake colubrid_snake) (STV 1.0 0.9091)) +(: cnet_isa_e10eff2bfb (IsA ground_squirrel squirrel) (STV 1.0 0.9091)) +(: cnet_isa_7cd9be16df (IsA ground_state state) (STV 1.0 0.9091)) +(: cnet_isa_7b8c6e09ab (IsA ground_stroke return) (STV 1.0 0.9091)) +(: cnet_isa_46b890bd0a (IsA ground_swell swell) (STV 1.0 0.9091)) +(: cnet_isa_9416d85ec6 (IsA ground_swell transition) (STV 1.0 0.9091)) +(: cnet_isa_38273ce0e0 (IsA ground_water water) (STV 1.0 0.9091)) +(: cnet_isa_39dfe0bf19 (IsA ground_wave radio_wave) (STV 1.0 0.9091)) +(: cnet_isa_6b8b0ab49e (IsA ground_zero point) (STV 1.0 0.9091)) +(: cnet_isa_5de57c6ce9 (IsA ground_zero target) (STV 1.0 0.9091)) +(: cnet_isa_3e2275a8c7 (IsA groundbreaking beginning) (STV 1.0 0.9091)) +(: cnet_isa_8789806c17 (IsA groundbreaking ceremony) (STV 1.0 0.9091)) +(: cnet_isa_87a17879c0 (IsA groundcover underbrush) (STV 1.0 0.9091)) +(: cnet_isa_8734e01273 (IsA groundcover vegetation) (STV 1.0 0.9091)) +(: cnet_isa_51d83ddeb8 (IsA grounder hit) (STV 1.0 0.9091)) +(: cnet_isa_ada59f5630 (IsA groundfish food_fish) (STV 1.0 0.9091)) +(: cnet_isa_4bb1e2b89b (IsA groundhog marmot) (STV 1.0 0.9091)) +(: cnet_isa_89be425c53 (IsA groundhog_day day) (STV 1.0 0.9091)) +(: cnet_isa_12d6cbfd74 (IsA groundhog animal) (STV 1.0 0.9091)) +(: cnet_isa_68654e3e70 (IsA grounding fastening) (STV 1.0 0.9091)) +(: cnet_isa_c7d56b3f92 (IsA groundlessness worthlessness) (STV 1.0 0.9091)) +(: cnet_isa_5799c872dd (IsA groundling playgoer) (STV 1.0 0.9091)) +(: cnet_isa_6807cf52b4 (IsA groundmass igneous_rock) (STV 1.0 0.9091)) +(: cnet_isa_5a4c4bcf16 (IsA groundnut tuber) (STV 1.0 0.9091)) +(: cnet_isa_9091e27e26 (IsA groundnut vine) (STV 1.0 0.9091)) +(: cnet_isa_8bc2cf83d8 (IsA ground tract) (STV 1.0 0.9091)) +(: cnet_isa_05239fad4e (IsA ground dreg) (STV 1.0 0.9091)) +(: cnet_isa_44ebab1ed1 (IsA groundsel weed) (STV 1.0 0.9091)) +(: cnet_isa_efd12dbcfe (IsA groundsel_tree shrub) (STV 1.0 0.9091)) +(: cnet_isa_0094a29c56 (IsA groundsheet piece_of_cloth) (STV 1.0 0.9091)) +(: cnet_isa_fb1fe75078 (IsA groundsman gardener) (STV 1.0 0.9091)) +(: cnet_isa_c9ea0cf90e (IsA groundspeed speed) (STV 1.0 0.9091)) +(: cnet_isa_d2dae075ed (IsA groundwork preparation) (STV 1.0 0.9091)) +(: cnet_isa_a71ffdc912 (IsA group_s_operation associative) (STV 1.0 0.9091)) +(: cnet_isa_02699851e0 (IsA group set) (STV 1.0 0.9339)) +(: cnet_isa_75b4f128ae (IsA group abstraction) (STV 1.0 0.9091)) +(: cnet_isa_7a915b838a (IsA group unit) (STV 1.0 0.9091)) +(: cnet_isa_4279db3f26 (IsA group_action act) (STV 1.0 0.9091)) +(: cnet_isa_a59e083cc9 (IsA group_action event) (STV 1.0 0.9091)) +(: cnet_isa_ea633bc17c (IsA group_captain captain) (STV 1.0 0.9091)) +(: cnet_isa_d044b0e742 (IsA group_dynamic psychodynamic) (STV 1.0 0.9091)) +(: cnet_isa_765dc1c28c (IsA group_insurance insurance) (STV 1.0 0.9091)) +(: cnet_isa_a45d8f049d (IsA group_of_gorilla troop) (STV 1.0 0.9091)) +(: cnet_isa_0d0b740445 (IsA group_participation engagement) (STV 1.0 0.9091)) +(: cnet_isa_a621849cb4 (IsA group_practice medical_practice) (STV 1.0 0.9091)) +(: cnet_isa_7fd64f12e9 (IsA group_theory pure_mathematic) (STV 1.0 0.9091)) +(: cnet_isa_02ffaf416f (IsA group_therapy psychotherapy) (STV 1.0 0.9091)) +(: cnet_isa_d1e0dcf84f (IsA grouper fish) (STV 1.0 0.9091)) +(: cnet_isa_ea2bc2442f (IsA grouper sea_bass) (STV 1.0 0.9091)) +(: cnet_isa_d3fe19fa3c (IsA grouper saltwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_a8bc24038d (IsA groupie fan) (STV 1.0 0.9091)) +(: cnet_isa_440e895367 (IsA grouping activity) (STV 1.0 0.9091)) +(: cnet_isa_4a45e2909e (IsA grouping classification_system) (STV 1.0 0.9091)) +(: cnet_isa_c59ee7d1ef (IsA groupthink decision_making) (STV 1.0 0.9091)) +(: cnet_isa_e499ba108e (IsA groupware software) (STV 1.0 0.9091)) +(: cnet_isa_c7df8245b8 (IsA grouse game_bird) (STV 1.0 0.9091)) +(: cnet_isa_10c6d62cd6 (IsA grouse wildfowl) (STV 1.0 0.9091)) +(: cnet_isa_217df3e4f4 (IsA grouseberry blueberry) (STV 1.0 0.9091)) +(: cnet_isa_b45c24cf5b (IsA grout plaster) (STV 1.0 0.9091)) +(: cnet_isa_411725b10d (IsA grove garden) (STV 1.0 0.9091)) +(: cnet_isa_14130af19d (IsA grove forest) (STV 1.0 0.9091)) +(: cnet_isa_4db83dbd1f (IsA growing production) (STV 1.0 0.9091)) +(: cnet_isa_5cb6db46ea (IsA growing_pain trouble) (STV 1.0 0.9091)) +(: cnet_isa_2419dcaf58 (IsA growing_pain pain) (STV 1.0 0.9091)) +(: cnet_isa_2ead051e1b (IsA growing_season season) (STV 1.0 0.9091)) +(: cnet_isa_a65d32b146 (IsA growl cry) (STV 1.0 0.9091)) +(: cnet_isa_673553b196 (IsA growler iceberg) (STV 1.0 0.9091)) +(: cnet_isa_4e24918b82 (IsA growler speaker) (STV 1.0 0.9091)) +(: cnet_isa_d131a1974f (IsA growling utterance) (STV 1.0 0.9091)) +(: cnet_isa_46bb4c68be (IsA growth organic_process) (STV 1.0 0.9091)) +(: cnet_isa_1df649df21 (IsA growth vegetation) (STV 1.0 0.9091)) +(: cnet_isa_ca5abbd1c1 (IsA growth object) (STV 1.0 0.9091)) +(: cnet_isa_2766f80d52 (IsA growth illness) (STV 1.0 0.9091)) +(: cnet_isa_8705be1931 (IsA growth development) (STV 1.0 0.9091)) +(: cnet_isa_dfe422fa16 (IsA growth_factor protein) (STV 1.0 0.9091)) +(: cnet_isa_9a26391224 (IsA growth_hormone_releasing_factor releasing_factor) (STV 1.0 0.9091)) +(: cnet_isa_e908fdbc67 (IsA growth_industry industry) (STV 1.0 0.9091)) +(: cnet_isa_0d432ab4d2 (IsA growth_rate rate) (STV 1.0 0.9091)) +(: cnet_isa_9ccb342681 (IsA growth_stock stock) (STV 1.0 0.9091)) +(: cnet_isa_18128eb51a (IsA grub larva) (STV 1.0 0.9091)) +(: cnet_isa_f32ff860aa (IsA grub_street world) (STV 1.0 0.9091)) +(: cnet_isa_26cd5789e7 (IsA grubby sculpin) (STV 1.0 0.9091)) +(: cnet_isa_b02f5938e2 (IsA grubstake interest) (STV 1.0 0.9091)) +(: cnet_isa_68f9d4b4be (IsA grudge resentment) (STV 1.0 0.9091)) +(: cnet_isa_f5c4d084dc (IsA gruel porridge) (STV 1.0 0.9091)) +(: cnet_isa_0c73d42ffc (IsA gruffness harshness) (STV 1.0 0.9091)) +(: cnet_isa_2005283aad (IsA grugru feather_palm) (STV 1.0 0.9091)) +(: cnet_isa_ef8f591d44 (IsA grugru_nut edible_nut) (STV 1.0 0.9091)) +(: cnet_isa_c1fe0b64d7 (IsA gruidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_a9b0dfee77 (IsA gruiforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_9f39e00759 (IsA grumble complaint) (STV 1.0 0.9091)) +(: cnet_isa_67893ff0fc (IsA grume liquid) (STV 1.0 0.9091)) +(: cnet_isa_7d8be1e922 (IsA grunt percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_3e55fa4d0a (IsA grunt noise) (STV 1.0 0.9091)) +(: cnet_isa_4d09b4bd3f (IsA grunt unskilled_person) (STV 1.0 0.9091)) +(: cnet_isa_72b4dc227e (IsA grunter person) (STV 1.0 0.9091)) +(: cnet_isa_683132a814 (IsA grus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_5f39260680 (IsA gruyere swiss_cheese) (STV 1.0 0.9091)) +(: cnet_isa_ed6c58cc98 (IsA gryllidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_c28a5c08a5 (IsA gryphon mythical_monster) (STV 1.0 0.9091)) +(: cnet_isa_e288f4f2cf (IsA guacamole dip) (STV 1.0 0.9091)) +(: cnet_isa_ba7af780a8 (IsA guadalupe_cypress cypress) (STV 1.0 0.9091)) +(: cnet_isa_7cc7d728ad (IsA guadalupe_fur_seal fur_seal) (STV 1.0 0.9091)) +(: cnet_isa_7702c4c8a5 (IsA guaiac_wood wood) (STV 1.0 0.9091)) +(: cnet_isa_890fb5be7f (IsA guaiacum natural_resin) (STV 1.0 0.9091)) +(: cnet_isa_5c73429e07 (IsA guaiacum rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_272f35c008 (IsA guama tree) (STV 1.0 0.9091)) +(: cnet_isa_6880685df4 (IsA guan gallinaceous_bird) (STV 1.0 0.9091)) +(: cnet_isa_17a75c42e8 (IsA guanaco llama) (STV 1.0 0.9091)) +(: cnet_isa_a67d7663e5 (IsA guangzhou administrative_district) (STV 1.0 0.9091)) +(: cnet_isa_2e21893470 (IsA guanine purine) (STV 1.0 0.9091)) +(: cnet_isa_b2d47afef4 (IsA guano body_waste) (STV 1.0 0.9091)) +(: cnet_isa_953a3189d6 (IsA guano organic) (STV 1.0 0.9091)) +(: cnet_isa_f5376ae7d4 (IsA guano_bat freetail) (STV 1.0 0.9091)) +(: cnet_isa_9c2eef8696 (IsA guantanamo_bay bay) (STV 1.0 0.9091)) +(: cnet_isa_cb1211c98e (IsA guar legume) (STV 1.0 0.9091)) +(: cnet_isa_fe5e664941 (IsA guar_gum gum) (STV 1.0 0.9091)) +(: cnet_isa_f8e9d9f0e4 (IsA guarani tupi_guarani) (STV 1.0 0.9091)) +(: cnet_isa_affe1c660f (IsA guarani south_american) (STV 1.0 0.9091)) +(: cnet_isa_9c1561d965 (IsA guarani paraguayan_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_9e8843f8bb (IsA guarantee assurance) (STV 1.0 0.9091)) +(: cnet_isa_6b899e92f6 (IsA guarantee collateral) (STV 1.0 0.9091)) +(: cnet_isa_7ec9961c6f (IsA guarantor patron) (STV 1.0 0.9091)) +(: cnet_isa_2dec4be6b8 (IsA guard_s_van car) (STV 1.0 0.9091)) +(: cnet_isa_95ee2805a0 (IsA guard lineman) (STV 1.0 0.9091)) +(: cnet_isa_1a66bb2af8 (IsA guard position) (STV 1.0 0.9091)) +(: cnet_isa_2305a76529 (IsA guard device) (STV 1.0 0.9091)) +(: cnet_isa_b6c58e60b7 (IsA guard detachment) (STV 1.0 0.9091)) +(: cnet_isa_4c5df7bb56 (IsA guard guard) (STV 1.0 0.9091)) +(: cnet_isa_2ab980b6df (IsA guard military_unit) (STV 1.0 0.9091)) +(: cnet_isa_30bee186bf (IsA guard basketball_player) (STV 1.0 0.9091)) +(: cnet_isa_e08a9bbc02 (IsA guard defender) (STV 1.0 0.9091)) +(: cnet_isa_6ae07850ea (IsA guard_boat boat) (STV 1.0 0.9091)) +(: cnet_isa_4567488fd4 (IsA guard_duty assignment) (STV 1.0 0.9091)) +(: cnet_isa_b8692bcffc (IsA guard_hair hair) (STV 1.0 0.9091)) +(: cnet_isa_b77ce08986 (IsA guard_ship warship) (STV 1.0 0.9091)) +(: cnet_isa_9217d36113 (IsA guardhouse headquarter) (STV 1.0 0.9091)) +(: cnet_isa_52b07255d9 (IsA guardian_spirit angel) (STV 1.0 0.9091)) +(: cnet_isa_a3a0b2394a (IsA guardianship duty) (STV 1.0 0.9091)) +(: cnet_isa_6ca40e2619 (IsA guardroom cell) (STV 1.0 0.9091)) +(: cnet_isa_3887ffe8ad (IsA guardroom room) (STV 1.0 0.9091)) +(: cnet_isa_db40480213 (IsA guardsman soldier) (STV 1.0 0.9091)) +(: cnet_isa_9fadfc055e (IsA guarnerius violin) (STV 1.0 0.9091)) +(: cnet_isa_04d80ee7a9 (IsA guatemalan central_american) (STV 1.0 0.9091)) +(: cnet_isa_58fd7ad194 (IsA guatemalan_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_8688e1a10f (IsA guava edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_2b3bce4f35 (IsA guava fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_71a668752e (IsA guayule subshrub) (STV 1.0 0.9091)) +(: cnet_isa_56c25f4270 (IsA gudgeon cyprinid) (STV 1.0 0.9091)) +(: cnet_isa_96429504ea (IsA guelder_rose shrub) (STV 1.0 0.9091)) +(: cnet_isa_491a686e9d (IsA guenon old_world_monkey) (STV 1.0 0.9091)) +(: cnet_isa_aa80e22e07 (IsA guerdon reward) (STV 1.0 0.9091)) +(: cnet_isa_d1e34af2fa (IsA guereza colobus) (STV 1.0 0.9091)) +(: cnet_isa_1d252d2142 (IsA gueridon table) (STV 1.0 0.9091)) +(: cnet_isa_1a0675df7f (IsA guernsey dairy_cattle) (STV 1.0 0.9091)) +(: cnet_isa_1fffcb4b92 (IsA guerrilla warrior) (STV 1.0 0.9091)) +(: cnet_isa_bbf147473a (IsA guerrilla_force force) (STV 1.0 0.9091)) +(: cnet_isa_5332160916 (IsA guerrilla_theater dramatization) (STV 1.0 0.9091)) +(: cnet_isa_4e7c9be0d3 (IsA guess estimate) (STV 1.0 0.9091)) +(: cnet_isa_51cb97407f (IsA guess opinion) (STV 1.0 0.9091)) +(: cnet_isa_759c44f590 (IsA guesser person) (STV 1.0 0.9091)) +(: cnet_isa_4121a9e9b2 (IsA guessing_game game) (STV 1.0 0.9091)) +(: cnet_isa_0ac18ba461 (IsA guesstimate estimate) (STV 1.0 0.9091)) +(: cnet_isa_54fc151eca (IsA guest customer) (STV 1.0 0.9091)) +(: cnet_isa_49d88e07d0 (IsA guest visitor) (STV 1.0 0.9091)) +(: cnet_isa_8862477ef1 (IsA guest_night evening) (STV 1.0 0.9091)) +(: cnet_isa_a7b5a9f96f (IsA guest_of_honor guest) (STV 1.0 0.9091)) +(: cnet_isa_4a7689a66f (IsA guest_worker workman) (STV 1.0 0.9091)) +(: cnet_isa_09cc5e2883 (IsA guesthouse house) (STV 1.0 0.9091)) +(: cnet_isa_49b891592a (IsA guestroom bedroom) (STV 1.0 0.9091)) +(: cnet_isa_618de381e0 (IsA guevina dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2a1f6c0a0b (IsA guffaw laugh) (STV 1.0 0.9091)) +(: cnet_isa_25b6327c4a (IsA guidance management) (STV 1.0 0.9091)) +(: cnet_isa_3e75bce11a (IsA guidance message) (STV 1.0 0.9091)) +(: cnet_isa_adf5785349 (IsA guidance_system system) (STV 1.0 0.9091)) +(: cnet_isa_930a907454 (IsA guide structure) (STV 1.0 0.9091)) +(: cnet_isa_18631417d5 (IsA guide leader) (STV 1.0 0.9091)) +(: cnet_isa_d2014ad1a0 (IsA guide_dog working_dog) (STV 1.0 0.9091)) +(: cnet_isa_fe0903a4f3 (IsA guide_rope rope) (STV 1.0 0.9091)) +(: cnet_isa_e863efa190 (IsA guide_word word) (STV 1.0 0.9091)) +(: cnet_isa_b7b770de4a (IsA guidebook handbook) (STV 1.0 0.9091)) +(: cnet_isa_e4dd6d5c38 (IsA guided_missile missile) (STV 1.0 0.9091)) +(: cnet_isa_8731dcc655 (IsA guided_missile_cruiser cruiser) (STV 1.0 0.9091)) +(: cnet_isa_b44eaf4219 (IsA guided_missile_frigate frigate) (STV 1.0 0.9091)) +(: cnet_isa_bd5deb4ffe (IsA guideline line) (STV 1.0 0.9091)) +(: cnet_isa_d872b6db63 (IsA guidepost rule) (STV 1.0 0.9091)) +(: cnet_isa_a26a1e3d29 (IsA guild_socialism socialism) (STV 1.0 0.9091)) +(: cnet_isa_bce94f4e37 (IsA guilder dutch_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_6dd706e1c6 (IsA guilder surinamese_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_797bcfa43a (IsA guildhall hall) (STV 1.0 0.9091)) +(: cnet_isa_f6e9dc38a0 (IsA guillain_barre_syndrome polyneuritis) (STV 1.0 0.9091)) +(: cnet_isa_65239811aa (IsA guillemot auk) (STV 1.0 0.9091)) +(: cnet_isa_55036e277a (IsA guilloche architectural_ornament) (STV 1.0 0.9091)) +(: cnet_isa_45f8058f60 (IsA guillotine instrument_of_execution) (STV 1.0 0.9091)) +(: cnet_isa_833cb78e08 (IsA guilt compunction) (STV 1.0 0.9091)) +(: cnet_isa_de39704f75 (IsA guilt condition) (STV 1.0 0.9091)) +(: cnet_isa_54eee4dc63 (IsA guilt_by_association guilt) (STV 1.0 0.9091)) +(: cnet_isa_fa0e75c813 (IsA guilt_pang pang) (STV 1.0 0.9091)) +(: cnet_isa_5a5240071c (IsA guimpe blouse) (STV 1.0 0.9091)) +(: cnet_isa_9e0203205c (IsA guimpe piece_of_cloth) (STV 1.0 0.9091)) +(: cnet_isa_a0936d31e7 (IsA guinea coin) (STV 1.0 0.9091)) +(: cnet_isa_3e0dce6f98 (IsA guinea_bissau_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_12b8316d46 (IsA guinea_bissau_peso guinea_bissau_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_e635950c84 (IsA guinea_fowl domestic_fowl) (STV 1.0 0.9091)) +(: cnet_isa_ff34763647 (IsA guinea_gold gold) (STV 1.0 0.9091)) +(: cnet_isa_baceac41f7 (IsA guinea_gold_vine shrub) (STV 1.0 0.9091)) +(: cnet_isa_e7b89b28a1 (IsA guinea_hen guinea_fowl) (STV 1.0 0.9091)) +(: cnet_isa_ee71221241 (IsA guinea_hen poultry) (STV 1.0 0.9091)) +(: cnet_isa_c206bd7ab2 (IsA guinea_pepper tree) (STV 1.0 0.9091)) +(: cnet_isa_c28f12afaf (IsA guinea_pig cavy) (STV 1.0 0.9091)) +(: cnet_isa_30e4dfe3c7 (IsA guinea_worm nematode) (STV 1.0 0.9091)) +(: cnet_isa_684e7fe6ce (IsA guinea_worm_disease infestation) (STV 1.0 0.9091)) +(: cnet_isa_ae43678ac7 (IsA guinean african) (STV 1.0 0.9091)) +(: cnet_isa_5a56ae1087 (IsA guinean_franc franc) (STV 1.0 0.9091)) +(: cnet_isa_4e915ba232 (IsA guinean_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_c046b97316 (IsA guinness stout) (STV 1.0 0.9091)) +(: cnet_isa_43f8aca1f3 (IsA guise semblance) (STV 1.0 0.9091)) +(: cnet_isa_349abbb0ac (IsA guitar instrument) (STV 1.0 0.9091)) +(: cnet_isa_3512c2cc3c (IsA guitar string_instrument) (STV 1.0 0.9693)) +(: cnet_isa_63268c5a13 (IsA guitar stringed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_db939ae7b7 (IsA guitar_pick pick) (STV 1.0 0.9091)) +(: cnet_isa_e45905204d (IsA guitare instrument) (STV 1.0 0.9719)) +(: cnet_isa_7f7560e4cb (IsA guitarfish ray) (STV 1.0 0.9091)) +(: cnet_isa_af4bf98dcb (IsA guitarist musician) (STV 1.0 0.9091)) +(: cnet_isa_6cbee90564 (IsA gujarati sanskrit) (STV 1.0 0.9091)) +(: cnet_isa_bfcf60f69e (IsA gujerati indian) (STV 1.0 0.9091)) +(: cnet_isa_bfe9221501 (IsA gulag prison_camp) (STV 1.0 0.9091)) +(: cnet_isa_809256e777 (IsA gulch gorge) (STV 1.0 0.9091)) +(: cnet_isa_692786d80b (IsA gulf disparity) (STV 1.0 0.9091)) +(: cnet_isa_89a1241e12 (IsA gulf body_of_water) (STV 1.0 0.9091)) +(: cnet_isa_529b3ccaf5 (IsA gulf chasm) (STV 1.0 0.9091)) +(: cnet_isa_18f38ff6db (IsA gulf_of_carpenteria hydrangea) (STV 1.0 0.9091)) +(: cnet_isa_1dc34ba1d5 (IsA gulf_stream ocean_current) (STV 1.0 0.9091)) +(: cnet_isa_1d373e25a0 (IsA gulf_war_syndrome syndrome) (STV 1.0 0.9091)) +(: cnet_isa_c97a3beda6 (IsA gulfweed brown_algae) (STV 1.0 0.9091)) +(: cnet_isa_c45187f1ed (IsA gull bird) (STV 1.0 0.9454)) +(: cnet_isa_e959f87183 (IsA gull seabird) (STV 1.0 0.9091)) +(: cnet_isa_cf391d8ba8 (IsA gull larid) (STV 1.0 0.9091)) +(: cnet_isa_b95f09dc5f (IsA gully valley) (STV 1.0 0.9091)) +(: cnet_isa_ee750ff94d (IsA gulo mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_e270236a29 (IsA gulp reflex) (STV 1.0 0.9091)) +(: cnet_isa_cc8170e5be (IsA gulp swallow) (STV 1.0 0.9091)) +(: cnet_isa_0b31828190 (IsA gulper drinker) (STV 1.0 0.9091)) +(: cnet_isa_e93b8d3868 (IsA gulping drinking) (STV 1.0 0.9091)) +(: cnet_isa_13f5a9d6bb (IsA gum exudate) (STV 1.0 0.9091)) +(: cnet_isa_3443b28e23 (IsA gum_arabic gum) (STV 1.0 0.9091)) +(: cnet_isa_45638e7111 (IsA gum_ball chewing_gum) (STV 1.0 0.9091)) +(: cnet_isa_37a4572bf3 (IsA gum_butea gum) (STV 1.0 0.9091)) +(: cnet_isa_6a1fc50940 (IsA gum_lac lac) (STV 1.0 0.9091)) +(: cnet_isa_5388515776 (IsA gum_resin natural_resin) (STV 1.0 0.9091)) +(: cnet_isa_7e5dba82e8 (IsA gum_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_860f41eef8 (IsA gumbo soup) (STV 1.0 0.9091)) +(: cnet_isa_835c7f62ee (IsA gumbo vegetable) (STV 1.0 0.9091)) +(: cnet_isa_b11063013b (IsA gumbo soil) (STV 1.0 0.9091)) +(: cnet_isa_665b672b21 (IsA gumbo_limbo incense_tree) (STV 1.0 0.9091)) +(: cnet_isa_77011ef88a (IsA gumboil boil) (STV 1.0 0.9091)) +(: cnet_isa_2bbb185dc3 (IsA gumdrop candy) (STV 1.0 0.9091)) +(: cnet_isa_80238e4945 (IsA gumma granuloma) (STV 1.0 0.9091)) +(: cnet_isa_af196abe80 (IsA gummed_label label) (STV 1.0 0.9091)) +(: cnet_isa_85447f8327 (IsA gummite mixture) (STV 1.0 0.9091)) +(: cnet_isa_d0bf2923b8 (IsA gummosis plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_a4060c41b2 (IsA gumweed herb) (STV 1.0 0.9091)) +(: cnet_isa_1f6a083a0f (IsA gumwood wood) (STV 1.0 0.9091)) +(: cnet_isa_a1081def0e (IsA gun_s_purpose kill) (STV 1.0 0.9091)) +(: cnet_isa_8e3763de6d (IsA gun_s_purpose kill_thing) (STV 1.0 0.9091)) +(: cnet_isa_8485b230df (IsA gun firearm_shoot_bullet) (STV 1.0 0.9091)) +(: cnet_isa_55b411bf25 (IsA gun weapon) (STV 1.0 0.9091)) +(: cnet_isa_a8d8ce38b2 (IsA gun discharge) (STV 1.0 0.9091)) +(: cnet_isa_6f55bd43a3 (IsA gun_carriage framework) (STV 1.0 0.9091)) +(: cnet_isa_5270806e8c (IsA gun_case case) (STV 1.0 0.9091)) +(: cnet_isa_0eee3921ce (IsA gun_control regulation) (STV 1.0 0.9091)) +(: cnet_isa_6b8a5814b6 (IsA gun_deck deck) (STV 1.0 0.9091)) +(: cnet_isa_fc78690fb6 (IsA gun_emplacement emplacement) (STV 1.0 0.9091)) +(: cnet_isa_38fac2f2a5 (IsA gun_enclosure platform) (STV 1.0 0.9091)) +(: cnet_isa_04b8b960ab (IsA gun_muzzle opening) (STV 1.0 0.9091)) +(: cnet_isa_984e90b171 (IsA gun_pendulum ballistic_pendulum) (STV 1.0 0.9091)) +(: cnet_isa_c8f53409ee (IsA gun_room military_quarter) (STV 1.0 0.9091)) +(: cnet_isa_8032889c62 (IsA gun_smoke smoke) (STV 1.0 0.9091)) +(: cnet_isa_072aec9bb3 (IsA gun_trigger lever) (STV 1.0 0.9091)) +(: cnet_isa_99467d166c (IsA gunboat boat) (STV 1.0 0.9091)) +(: cnet_isa_05f94b3354 (IsA gunfight fight) (STV 1.0 0.9091)) +(: cnet_isa_085fcb845e (IsA gunfire shooting) (STV 1.0 0.9091)) +(: cnet_isa_004731c1ac (IsA gunflint flint) (STV 1.0 0.9091)) +(: cnet_isa_2cdf00a719 (IsA gunite building_material) (STV 1.0 0.9091)) +(: cnet_isa_fe1f7091c2 (IsA gunlock action) (STV 1.0 0.9091)) +(: cnet_isa_cb15f87f41 (IsA gunman murderer) (STV 1.0 0.9091)) +(: cnet_isa_ec75e1f83c (IsA gunman shot) (STV 1.0 0.9091)) +(: cnet_isa_d6982dbc94 (IsA gunmetal bronze) (STV 1.0 0.9091)) +(: cnet_isa_2501213fae (IsA gunnel blennioid_fish) (STV 1.0 0.9091)) +(: cnet_isa_c128960697 (IsA gunnery weaponry) (STV 1.0 0.9091)) +(: cnet_isa_e2ced5b65e (IsA gunnery_sergeant sergeant) (STV 1.0 0.9091)) +(: cnet_isa_7e8d2beac6 (IsA gunnysack bag) (STV 1.0 0.9091)) +(: cnet_isa_3275702a42 (IsA gunpowder explosive) (STV 1.0 0.9091)) +(: cnet_isa_ae4db2475e (IsA gunpowder_plot conspiracy) (STV 1.0 0.9091)) +(: cnet_isa_1d32d14c91 (IsA gunrunner smuggler) (STV 1.0 0.9091)) +(: cnet_isa_9063da35a7 (IsA gunrunning smuggling) (STV 1.0 0.9091)) +(: cnet_isa_9e94ffb4f3 (IsA gun type_of_weapon) (STV 1.0 0.9091)) +(: cnet_isa_38f8ac12c9 (IsA gunsight sight) (STV 1.0 0.9091)) +(: cnet_isa_f9c4e841b7 (IsA gunsmith smith) (STV 1.0 0.9091)) +(: cnet_isa_b24ddc26e2 (IsA gunter_s_chain chain) (STV 1.0 0.9091)) +(: cnet_isa_c6f12d058f (IsA gunwale wale) (STV 1.0 0.9091)) +(: cnet_isa_9320d1216e (IsA guppy cyprinodont) (STV 1.0 0.9091)) +(: cnet_isa_491f398b27 (IsA gur niger_congo) (STV 1.0 0.9091)) +(: cnet_isa_92f38ee788 (IsA gurgle sound) (STV 1.0 0.9091)) +(: cnet_isa_b045fb8a35 (IsA gurkha nepalese) (STV 1.0 0.9091)) +(: cnet_isa_dad98da693 (IsA gurkha soldier) (STV 1.0 0.9091)) +(: cnet_isa_fd04c59500 (IsA gurnard scorpaenoid) (STV 1.0 0.9091)) +(: cnet_isa_da94351ae2 (IsA gurney stretcher) (STV 1.0 0.9091)) +(: cnet_isa_92a864fca9 (IsA guru religious_leader) (STV 1.0 0.9091)) +(: cnet_isa_3baf618a62 (IsA guru leader) (STV 1.0 0.9091)) +(: cnet_isa_cf9ae0350c (IsA gusher oil_well) (STV 1.0 0.9091)) +(: cnet_isa_726946ed67 (IsA gusset brace) (STV 1.0 0.9091)) +(: cnet_isa_45d4865534 (IsA gusset piece_of_cloth) (STV 1.0 0.9091)) +(: cnet_isa_6baff0510e (IsA gusset plate) (STV 1.0 0.9091)) +(: cnet_isa_ef429d746b (IsA gust wind) (STV 1.0 0.9091)) +(: cnet_isa_3013b3245d (IsA gusto enjoyment) (STV 1.0 0.9091)) +(: cnet_isa_d244641259 (IsA gusto enthusiasm) (STV 1.0 0.9091)) +(: cnet_isa_795d135ee9 (IsA gut channel) (STV 1.0 0.9091)) +(: cnet_isa_9e6db62bba (IsA gutierrezia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f18c369a37 (IsA gutlessness fearfulness) (STV 1.0 0.9091)) +(: cnet_isa_cd6a930ba9 (IsA gutsiness fearlessness) (STV 1.0 0.9091)) +(: cnet_isa_d0fd1375ea (IsA gutta_percha gum) (STV 1.0 0.9091)) +(: cnet_isa_ff87a3b1cb (IsA gutta_percha_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_fb0b7d3407 (IsA gutter channel) (STV 1.0 0.9091)) +(: cnet_isa_cbdeabc4a2 (IsA gutter hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_32f016473d (IsA gutter worker) (STV 1.0 0.9091)) +(: cnet_isa_2383f7d6d0 (IsA gutter misfortune) (STV 1.0 0.9091)) +(: cnet_isa_ee57417564 (IsA gutter_press free_press) (STV 1.0 0.9091)) +(: cnet_isa_5d785da31d (IsA guttiferae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_3cc6fb880e (IsA guttiferale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_b255367462 (IsA guttural consonant) (STV 1.0 0.9091)) +(: cnet_isa_b638dc0dff (IsA guvnor boss) (STV 1.0 0.9091)) +(: cnet_isa_d4c4795bc2 (IsA guy brace) (STV 1.0 0.9091)) +(: cnet_isa_40778a6eba (IsA guy effigy) (STV 1.0 0.9091)) +(: cnet_isa_3453656ad9 (IsA guy man) (STV 1.0 0.9091)) +(: cnet_isa_41c894ec45 (IsA guy_fawke_day november_5) (STV 1.0 0.9091)) +(: cnet_isa_b766d10734 (IsA guyana_dollar dollar) (STV 1.0 0.9091)) +(: cnet_isa_b805540400 (IsA guyanese south_american) (STV 1.0 0.9091)) +(: cnet_isa_e39220d41a (IsA guyot seamount) (STV 1.0 0.9091)) +(: cnet_isa_5e84c142f1 (IsA guzzler drinker) (STV 1.0 0.9091)) +(: cnet_isa_e415e2a669 (IsA gy radioactivity_unit) (STV 1.0 0.9091)) +(: cnet_isa_23c509e594 (IsA gym enclosed_area_for_getting_fit) (STV 1.0 0.9091)) +(: cnet_isa_38894af665 (IsA gym place) (STV 1.0 0.9339)) +(: cnet_isa_05bbf3e4ff (IsA gym_rat addict) (STV 1.0 0.9091)) +(: cnet_isa_5a5a915fb4 (IsA gym_shoe shoe) (STV 1.0 0.9091)) +(: cnet_isa_c5912e4a84 (IsA gym_suit sportswear) (STV 1.0 0.9091)) +(: cnet_isa_b4e8e40852 (IsA gymkhana meet) (STV 1.0 0.9091)) +(: cnet_isa_e97657ece1 (IsA gymnadenia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_55a54b0c00 (IsA gymnadeniopsis monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5f232e5f56 (IsA gymnasium room) (STV 1.0 0.9091)) +(: cnet_isa_2263be11fb (IsA gymnasium athletic_facility) (STV 1.0 0.9091)) +(: cnet_isa_547f07cd0e (IsA gymnast athlete) (STV 1.0 0.9091)) +(: cnet_isa_e7f58291e6 (IsA gymnastic_apparatus sport_equipment) (STV 1.0 0.9091)) +(: cnet_isa_4219fd2428 (IsA gymnastic_exercise exercise) (STV 1.0 0.9091)) +(: cnet_isa_066ad797da (IsA gymnastic sport) (STV 1.0 0.9091)) +(: cnet_isa_f9875fb159 (IsA gymnelis fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_346e6becbf (IsA gymnocalycium caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_53240315fb (IsA gymnocarpium fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_cea631bb30 (IsA gymnocladus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_61871912c8 (IsA gymnogyp bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_b942acb42f (IsA gymnophiona animal_order) (STV 1.0 0.9091)) +(: cnet_isa_4f50463686 (IsA gymnopilus fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_11e59b341c (IsA gymnopilus_spectabilis agaric) (STV 1.0 0.9091)) +(: cnet_isa_5fd677e00c (IsA gymnopilus_validipe agaric) (STV 1.0 0.9091)) +(: cnet_isa_21a2d91a26 (IsA gymnopilus_ventricosus agaric) (STV 1.0 0.9091)) +(: cnet_isa_ebbb4e0ed6 (IsA gymnorhina bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_a7445d2b22 (IsA gymnosophist philosopher) (STV 1.0 0.9091)) +(: cnet_isa_db94bcf7a0 (IsA gymnosophy doctrine) (STV 1.0 0.9091)) +(: cnet_isa_6eb5f71b30 (IsA gymnosperm spermatophyte) (STV 1.0 0.9091)) +(: cnet_isa_837a37bb98 (IsA gymnosperm_family plant_family) (STV 1.0 0.9091)) +(: cnet_isa_78ce2ffc7c (IsA gymnosperm_genus genus) (STV 1.0 0.9091)) +(: cnet_isa_cb607da22b (IsA gymnospermae class) (STV 1.0 0.9091)) +(: cnet_isa_f206d927c2 (IsA gymnospermous_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_e3e47f3461 (IsA gymnospermous_yellowwood yellowwood) (STV 1.0 0.9091)) +(: cnet_isa_57873223f8 (IsA gymnosporangium fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_284e2503fb (IsA gymnura fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_72f5d7f8f7 (IsA gymslip tunic) (STV 1.0 0.9091)) +(: cnet_isa_f5f8f3e785 (IsA gynecocracy political_system) (STV 1.0 0.9091)) +(: cnet_isa_77a6c854c1 (IsA gynecologist specialist) (STV 1.0 0.9091)) +(: cnet_isa_1d42210bdd (IsA gynecology medicine) (STV 1.0 0.9091)) +(: cnet_isa_c6bda315e6 (IsA gynecomastia abnormality) (STV 1.0 0.9091)) +(: cnet_isa_0a916e8ea6 (IsA gyneolatry worship) (STV 1.0 0.9091)) +(: cnet_isa_2dc1aed352 (IsA gynobase receptacle) (STV 1.0 0.9091)) +(: cnet_isa_d6b55cef74 (IsA gynoecium gametoecium) (STV 1.0 0.9091)) +(: cnet_isa_3502c6f0da (IsA gynogenesis parthenogenesis) (STV 1.0 0.9091)) +(: cnet_isa_a5fb3a5cff (IsA gynophobia social_phobia) (STV 1.0 0.9091)) +(: cnet_isa_4d5d8d869f (IsA gynophore stalk) (STV 1.0 0.9091)) +(: cnet_isa_aed33564a8 (IsA gynostegium plant_part) (STV 1.0 0.9091)) +(: cnet_isa_d7ca3e4aa9 (IsA gynura asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b9797e5d6b (IsA gypaetus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_63198b5930 (IsA gyp bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_9bd82d4fa0 (IsA gypsophila caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4ffe0f209f (IsA gypsum calcium_sulphate) (STV 1.0 0.9091)) +(: cnet_isa_63ee812757 (IsA gypsum mineral) (STV 1.0 0.9091)) +(: cnet_isa_992d28d064 (IsA gypsy_cab cab) (STV 1.0 0.9091)) +(: cnet_isa_769d339b42 (IsA gypsy_moth lymantriid) (STV 1.0 0.9091)) +(: cnet_isa_cd8d71ea07 (IsA gyration rotation) (STV 1.0 0.9091)) +(: cnet_isa_50270b35bb (IsA gyrfalcon falcon) (STV 1.0 0.9091)) +(: cnet_isa_7134ff058f (IsA gyrinidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_9f0e9ae3d3 (IsA gyro sandwich) (STV 1.0 0.9091)) +(: cnet_isa_5d90bdbd4b (IsA gyrocompass compass) (STV 1.0 0.9091)) +(: cnet_isa_e4499060ec (IsA gyromitra fungus) (STV 1.0 0.9091)) +(: cnet_isa_499e714ea4 (IsA gyromitra_californica gyromitra) (STV 1.0 0.9091)) +(: cnet_isa_9666a68b8d (IsA gyromitra_esculenta gyromitra) (STV 1.0 0.9091)) +(: cnet_isa_276afbc7da (IsA gyromitra_fastigiata lorchel) (STV 1.0 0.9091)) +(: cnet_isa_1e0978cbf6 (IsA gyromitra_giga gyromitra) (STV 1.0 0.9091)) +(: cnet_isa_83bb3c550d (IsA gyromitra_infula gyromitra) (STV 1.0 0.9091)) +(: cnet_isa_1c6b44de6a (IsA gyromitra_sphaerospora gyromitra) (STV 1.0 0.9091)) +(: cnet_isa_5c58bfcbdf (IsA gyroscope rotating_mechanism) (STV 1.0 0.9091)) +(: cnet_isa_1909ea6db5 (IsA gyrostabilizer stabilizer) (STV 1.0 0.9091)) +(: cnet_isa_0357f050e8 (IsA gyrovector vector) (STV 1.0 0.9091)) +(: cnet_isa_5ab91fd6bc (IsA gyrus structure) (STV 1.0 0.9091)) +(: cnet_isa_c6ec768c20 (IsA h inorganic_substance) (STV 1.0 0.9091)) +(: cnet_isa_ebd15a1065 (IsA h letter) (STV 1.0 0.9091)) +(: cnet_isa_6181644726 (IsA haastia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_69b979715f (IsA habanera social_dancing) (STV 1.0 0.9091)) +(: cnet_isa_2138ac4909 (IsA habanera dance_music) (STV 1.0 0.9091)) +(: cnet_isa_88f8244e1d (IsA habea_corpus civil_right) (STV 1.0 0.9091)) +(: cnet_isa_e93c64d31a (IsA habea_corpus writ) (STV 1.0 0.9091)) +(: cnet_isa_8ef39c7933 (IsA habenaria monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_104635b2cc (IsA haber_process industrial_process) (STV 1.0 0.9091)) +(: cnet_isa_8d7c12579c (IsA haberdashery drygood) (STV 1.0 0.9091)) +(: cnet_isa_e06e0eea95 (IsA habergeon chain_mail) (STV 1.0 0.9091)) +(: cnet_isa_282889d516 (IsA habit custom) (STV 1.0 0.9091)) +(: cnet_isa_838719b8c9 (IsA habit growth) (STV 1.0 0.9091)) +(: cnet_isa_6123001f69 (IsA habit attire) (STV 1.0 0.9091)) +(: cnet_isa_cc25611a2d (IsA habitableness fitness) (STV 1.0 0.9091)) +(: cnet_isa_1dd97a596c (IsA habitat environment) (STV 1.0 0.9091)) +(: cnet_isa_59f2372a62 (IsA habitation habitat) (STV 1.0 0.9091)) +(: cnet_isa_473e5f8bd6 (IsA habitual_abortion spontaneous_abortion) (STV 1.0 0.9091)) +(: cnet_isa_2b6d3b8289 (IsA habituation adjustment) (STV 1.0 0.9091)) +(: cnet_isa_930f62ff18 (IsA habitude practice) (STV 1.0 0.9091)) +(: cnet_isa_e440b4f1a1 (IsA habitus sensitivity) (STV 1.0 0.9091)) +(: cnet_isa_c3e7485089 (IsA habsburg dynasty) (STV 1.0 0.9091)) +(: cnet_isa_4a2a897cd6 (IsA habsburg royalty) (STV 1.0 0.9091)) +(: cnet_isa_4670bba520 (IsA hacek diacritical_mark) (STV 1.0 0.9091)) +(: cnet_isa_4e5a1cc974 (IsA hacienda house) (STV 1.0 0.9091)) +(: cnet_isa_7f32d8ce3b (IsA hacienda estate) (STV 1.0 0.9091)) +(: cnet_isa_5a2c0ab5fd (IsA hack horse) (STV 1.0 0.9091)) +(: cnet_isa_55984c0c99 (IsA hack saddle_horse) (STV 1.0 0.9091)) +(: cnet_isa_e2edbbb5fe (IsA hack tool) (STV 1.0 0.9091)) +(: cnet_isa_97c392818d (IsA hack unskilled_person) (STV 1.0 0.9091)) +(: cnet_isa_9ad19f247d (IsA hack writer) (STV 1.0 0.9091)) +(: cnet_isa_a15d6caa4b (IsA hackberry tree) (STV 1.0 0.9091)) +(: cnet_isa_6731dd27c1 (IsA hackelia plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_0d7920d4e8 (IsA hacker programmer) (STV 1.0 0.9091)) +(: cnet_isa_ba920971f4 (IsA hacker golfer) (STV 1.0 0.9091)) +(: cnet_isa_abfab85c9b (IsA hacker terrorist) (STV 1.0 0.9091)) +(: cnet_isa_6dabd15163 (IsA hacking cybercrime_activity) (STV 1.0 0.9091)) +(: cnet_isa_52257a1b2e (IsA hackle feather) (STV 1.0 0.9091)) +(: cnet_isa_4d1567dbd7 (IsA hackney harness_horse) (STV 1.0 0.9091)) +(: cnet_isa_8b6ec823cf (IsA hackney carriage) (STV 1.0 0.9091)) +(: cnet_isa_9a87d39b08 (IsA hacksaw saw) (STV 1.0 0.9091)) +(: cnet_isa_e952c19a7a (IsA hackwork labor) (STV 1.0 0.9091)) +(: cnet_isa_16a2c0532c (IsA had_crime crime) (STV 1.0 0.9091)) +(: cnet_isa_4b8f143f0e (IsA haddock gadoid) (STV 1.0 0.9091)) +(: cnet_isa_9b7b7c597d (IsA haddock fish) (STV 1.0 0.9091)) +(: cnet_isa_3f81200b3c (IsA hadith custom) (STV 1.0 0.9091)) +(: cnet_isa_cd2741400a (IsA hadron elementary_particle) (STV 1.0 0.9091)) +(: cnet_isa_284f65ce3b (IsA hadrosaur ornithischian) (STV 1.0 0.9091)) +(: cnet_isa_c64ad9ff90 (IsA hadrosauridae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_4f67127bb7 (IsA haemanthus liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_37b10876bd (IsA haematobia arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_a2c1ea22d9 (IsA haematopodidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_416a224a7f (IsA haematopus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_8f60858148 (IsA haematoxylum rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c3902298bb (IsA haemodoraceae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_973e4038b5 (IsA haemodorum monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c3206f168d (IsA haemopis worm_genus) (STV 1.0 0.9091)) +(: cnet_isa_767d5a6635 (IsA haemoproteid sporozoan) (STV 1.0 0.9091)) +(: cnet_isa_d9fb222a1b (IsA haemoproteidae protoctist_family) (STV 1.0 0.9091)) +(: cnet_isa_e6dc4b30fd (IsA haemoproteus protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_b5c0348af8 (IsA haemosporidia animal_order) (STV 1.0 0.9091)) +(: cnet_isa_798fa5d573 (IsA haemosporidian sporozoan) (STV 1.0 0.9091)) +(: cnet_isa_79cfec2487 (IsA haemulidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_1a31d94850 (IsA haemulon fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_69a4875b4b (IsA hafnium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_c13638c3fb (IsA haft handle) (STV 1.0 0.9091)) +(: cnet_isa_428e8b6d87 (IsA hag old_woman) (STV 1.0 0.9091)) +(: cnet_isa_77ce75dedf (IsA haganah military_unit) (STV 1.0 0.9091)) +(: cnet_isa_8265b478ee (IsA hagberry fruit) (STV 1.0 0.9091)) +(: cnet_isa_dab4ff7daa (IsA hagberry_tree bird_cherry) (STV 1.0 0.9091)) +(: cnet_isa_b7bdee4cb3 (IsA hageman_factor coagulation_factor) (STV 1.0 0.9091)) +(: cnet_isa_baceea6801 (IsA hagfish jawless_vertebrate) (STV 1.0 0.9091)) +(: cnet_isa_fb7b19e80a (IsA haggadah talmudic_literature) (STV 1.0 0.9091)) +(: cnet_isa_64522d7a72 (IsA haggis dish) (STV 1.0 0.9091)) +(: cnet_isa_c090d7b353 (IsA haggle bargaining) (STV 1.0 0.9091)) +(: cnet_isa_37397e0fc4 (IsA haggler bargainer) (STV 1.0 0.9091)) +(: cnet_isa_a1de4d91cd (IsA hagiographer biographer) (STV 1.0 0.9091)) +(: cnet_isa_c68dabd273 (IsA hagiography biography) (STV 1.0 0.9091)) +(: cnet_isa_2a7210e608 (IsA hagiolatry worship) (STV 1.0 0.9091)) +(: cnet_isa_5328bd7d12 (IsA hagiology literary_composition) (STV 1.0 0.9091)) +(: cnet_isa_5c01a2c503 (IsA haida na_dene) (STV 1.0 0.9091)) +(: cnet_isa_440198f2cb (IsA haida native_american) (STV 1.0 0.9091)) +(: cnet_isa_75db11acb6 (IsA haik garment) (STV 1.0 0.9091)) +(: cnet_isa_c4ff501659 (IsA haiku poem) (STV 1.0 0.9091)) +(: cnet_isa_d8eb2034c1 (IsA hail greeting) (STV 1.0 0.9091)) +(: cnet_isa_fc4688ce5e (IsA hail object) (STV 1.0 0.9091)) +(: cnet_isa_4090f09198 (IsA hail precipitation) (STV 1.0 0.9091)) +(: cnet_isa_bc636a73aa (IsA hailstone ice) (STV 1.0 0.9091)) +(: cnet_isa_ef1d12dc44 (IsA hailstorm storm) (STV 1.0 0.9091)) +(: cnet_isa_d97accdab3 (IsA hair_s_breadth small_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_d7df3343a4 (IsA hair strand) (STV 1.0 0.9091)) +(: cnet_isa_8bf5c34cf4 (IsA hair process) (STV 1.0 0.9091)) +(: cnet_isa_d7ec01679a (IsA hair body_covering) (STV 1.0 0.9091)) +(: cnet_isa_dd4d096f81 (IsA hair filament) (STV 1.0 0.9091)) +(: cnet_isa_535efd2dfc (IsA hair plant_process) (STV 1.0 0.9091)) +(: cnet_isa_7cc5c5021a (IsA hair_care care) (STV 1.0 0.9091)) +(: cnet_isa_f86ba3fcf5 (IsA hair_cell epithelial_cell) (STV 1.0 0.9091)) +(: cnet_isa_20d349423f (IsA hair_coloring coloring) (STV 1.0 0.9091)) +(: cnet_isa_11480d9ed5 (IsA hair_coloring coloration) (STV 1.0 0.9091)) +(: cnet_isa_82d72d0a85 (IsA hair_dye dye) (STV 1.0 0.9091)) +(: cnet_isa_9ecb3d84c3 (IsA hair_follicle follicle) (STV 1.0 0.9091)) +(: cnet_isa_2455d3171b (IsA hair_of_dog drink) (STV 1.0 0.9091)) +(: cnet_isa_25c8732487 (IsA hair_raiser excitation) (STV 1.0 0.9091)) +(: cnet_isa_19dd57be3b (IsA hair_shirt shirt) (STV 1.0 0.9091)) +(: cnet_isa_78ffa66b02 (IsA hair_slide clip) (STV 1.0 0.9091)) +(: cnet_isa_9121c9ca29 (IsA hair_space quad) (STV 1.0 0.9091)) +(: cnet_isa_8cc28266c2 (IsA hair_spray toiletry) (STV 1.0 0.9091)) +(: cnet_isa_b9c46f1b30 (IsA hair_stroke hairline) (STV 1.0 0.9091)) +(: cnet_isa_c00bfb6ec2 (IsA hair_trigger gun_trigger) (STV 1.0 0.9091)) +(: cnet_isa_00d942ef9e (IsA hairball tangle) (STV 1.0 0.9091)) +(: cnet_isa_09869cfcf0 (IsA hairbrush brush) (STV 1.0 0.9091)) +(: cnet_isa_40836f20a6 (IsA haircloth fabric) (STV 1.0 0.9091)) +(: cnet_isa_f896ce45af (IsA haircut cut) (STV 1.0 0.9091)) +(: cnet_isa_25fe555377 (IsA haircut hairdo) (STV 1.0 0.9091)) +(: cnet_isa_7bdbdf2f5e (IsA hairdo hair) (STV 1.0 0.9091)) +(: cnet_isa_fd43f6f958 (IsA hairdresser craftsman) (STV 1.0 0.9091)) +(: cnet_isa_39e897f963 (IsA hairdressing toiletry) (STV 1.0 0.9091)) +(: cnet_isa_58b7c494df (IsA hairiness appearance) (STV 1.0 0.9091)) +(: cnet_isa_eca1e755c7 (IsA hairlessness appearance) (STV 1.0 0.9091)) +(: cnet_isa_c598f77309 (IsA hairlessness condition) (STV 1.0 0.9091)) +(: cnet_isa_8d55ca9db9 (IsA hairline boundary) (STV 1.0 0.9091)) +(: cnet_isa_df7f7537e9 (IsA hairline line) (STV 1.0 0.9091)) +(: cnet_isa_8e0dd462af (IsA hairline_fracture fracture) (STV 1.0 0.9091)) +(: cnet_isa_23e9d13852 (IsA hairnet net) (STV 1.0 0.9091)) +(: cnet_isa_4c6a26b2e0 (IsA hairpiece attire) (STV 1.0 0.9091)) +(: cnet_isa_42a3cb05fb (IsA hairpin pin) (STV 1.0 0.9091)) +(: cnet_isa_331aafbb45 (IsA hairpin_bend bend) (STV 1.0 0.9091)) +(: cnet_isa_ed503a4fe3 (IsA hairsplitter disputant) (STV 1.0 0.9091)) +(: cnet_isa_db8440bd6d (IsA hairsplitting differentiation) (STV 1.0 0.9091)) +(: cnet_isa_a9ae47ea31 (IsA hairspring spiral_spring) (STV 1.0 0.9091)) +(: cnet_isa_ae22a041c5 (IsA hairstreak lycaenid) (STV 1.0 0.9091)) +(: cnet_isa_b3675f0d07 (IsA hairweaving hair_care) (STV 1.0 0.9091)) +(: cnet_isa_9e0fa2b8ca (IsA hairy_darling_pea darling_pea) (STV 1.0 0.9091)) +(: cnet_isa_1b51373428 (IsA hairy_golden_aster wildflower) (STV 1.0 0.9091)) +(: cnet_isa_dba821a5c7 (IsA hairy_honeysuckle honeysuckle) (STV 1.0 0.9091)) +(: cnet_isa_57d1abff3a (IsA hairy_legged_vampire_bat vampire_bat) (STV 1.0 0.9091)) +(: cnet_isa_05c3b555b0 (IsA hairy_root crown_gall) (STV 1.0 0.9091)) +(: cnet_isa_4632982658 (IsA hairy_spurge spurge) (STV 1.0 0.9091)) +(: cnet_isa_255fd0678e (IsA hairy_tongue side_effect) (STV 1.0 0.9091)) +(: cnet_isa_e446c37c56 (IsA hairy_vetch tare) (STV 1.0 0.9091)) +(: cnet_isa_96a69dd07c (IsA hairy_willowherb willowherb) (STV 1.0 0.9091)) +(: cnet_isa_72ce0ee0ed (IsA hairy_wood_mint wood_mint) (STV 1.0 0.9091)) +(: cnet_isa_3da6862371 (IsA haitian west_indian) (STV 1.0 0.9091)) +(: cnet_isa_21aae4cabd (IsA haitian_centime centime) (STV 1.0 0.9091)) +(: cnet_isa_3b2cca5264 (IsA haitian_creole creole) (STV 1.0 0.9091)) +(: cnet_isa_e6b91053f4 (IsA haitian_creole romance) (STV 1.0 0.9091)) +(: cnet_isa_f060aa8754 (IsA haitian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_cff4bc1c38 (IsA hajj pilgrimage) (STV 1.0 0.9091)) +(: cnet_isa_b83be70d9a (IsA hajj pillar_of_islam) (STV 1.0 0.9091)) +(: cnet_isa_14c649248c (IsA hajji iraki) (STV 1.0 0.9091)) +(: cnet_isa_14a7070a3b (IsA hajji pilgrim) (STV 1.0 0.9091)) +(: cnet_isa_17705b0aa6 (IsA hake gadoid) (STV 1.0 0.9091)) +(: cnet_isa_a1f0e668b5 (IsA hake fish) (STV 1.0 0.9091)) +(: cnet_isa_5431514a76 (IsA hakea dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a4cdf49345 (IsA hakham sage) (STV 1.0 0.9091)) +(: cnet_isa_f0ff168878 (IsA hakham title) (STV 1.0 0.9091)) +(: cnet_isa_0992cf5db9 (IsA hakim doctor) (STV 1.0 0.9091)) +(: cnet_isa_fdade0048e (IsA hakim moslem) (STV 1.0 0.9091)) +(: cnet_isa_d2648ec2f3 (IsA hakim ruler) (STV 1.0 0.9091)) +(: cnet_isa_bbc891de3d (IsA hakka chinese) (STV 1.0 0.9091)) +(: cnet_isa_44f571c31f (IsA hal intelligent_computer) (STV 1.0 0.9091)) +(: cnet_isa_59bc51092c (IsA halakah talmudic_literature) (STV 1.0 0.9091)) +(: cnet_isa_da2c37af43 (IsA halal meat) (STV 1.0 0.9091)) +(: cnet_isa_b7590692fc (IsA halberd pike) (STV 1.0 0.9091)) +(: cnet_isa_ff6c19822b (IsA halberdier guard) (STV 1.0 0.9091)) +(: cnet_isa_2d1a511cee (IsA halchidhoma hoka) (STV 1.0 0.9091)) +(: cnet_isa_c21bb7d472 (IsA halcyon bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_dc385b3987 (IsA haldea reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_dea7760fd8 (IsA halenia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ccc56256d8 (IsA haler czech_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_c354f8bb18 (IsA haler slovakian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_49d617814e (IsA halesia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7c058f4874 (IsA half part) (STV 1.0 0.9091)) +(: cnet_isa_369ae79ba6 (IsA half_and_half dairy_product) (STV 1.0 0.9091)) +(: cnet_isa_3deded32ad (IsA half_and_half_dressing dressing) (STV 1.0 0.9091)) +(: cnet_isa_b5f7331deb (IsA half_binding binding) (STV 1.0 0.9091)) +(: cnet_isa_ad6553e346 (IsA half_blood sibling) (STV 1.0 0.9091)) +(: cnet_isa_c64d21636a (IsA half_breed half_caste) (STV 1.0 0.9091)) +(: cnet_isa_ebe77a2ba9 (IsA half_caste mixed_blood) (STV 1.0 0.9091)) +(: cnet_isa_0f0cebf8dd (IsA half_century time_period) (STV 1.0 0.9091)) +(: cnet_isa_09b1e7205f (IsA half_cock confusion) (STV 1.0 0.9091)) +(: cnet_isa_b70ee15121 (IsA half_cross_stitch cross_stitch) (STV 1.0 0.9091)) +(: cnet_isa_61d6433d04 (IsA half_crown coin) (STV 1.0 0.9091)) +(: cnet_isa_9de4263107 (IsA half_dollar coin) (STV 1.0 0.9091)) +(: cnet_isa_8959ba7136 (IsA half_eagle coin) (STV 1.0 0.9091)) +(: cnet_isa_bd01015867 (IsA half_gainer dive) (STV 1.0 0.9091)) +(: cnet_isa_9ccbfc49e3 (IsA half_hatchet hatchet) (STV 1.0 0.9091)) +(: cnet_isa_edc9d23dda (IsA half_hitch knot) (STV 1.0 0.9091)) +(: cnet_isa_c5207087bc (IsA half_holiday holiday) (STV 1.0 0.9091)) +(: cnet_isa_73218ffd5d (IsA half_hour time_unit) (STV 1.0 0.9091)) +(: cnet_isa_61966f53d4 (IsA half_intensity intensity) (STV 1.0 0.9091)) +(: cnet_isa_3d5288d35c (IsA half_length portrait) (STV 1.0 0.9091)) +(: cnet_isa_1ac9372237 (IsA half_life time_period) (STV 1.0 0.9091)) +(: cnet_isa_0a3a0bc984 (IsA half_light light) (STV 1.0 0.9091)) +(: cnet_isa_c991844e10 (IsA half_mast position) (STV 1.0 0.9091)) +(: cnet_isa_9c53e1de59 (IsA half_mile linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_913084a9eb (IsA half_moon area) (STV 1.0 0.9091)) +(: cnet_isa_b540f56b7b (IsA half_moon phase_of_moon) (STV 1.0 0.9091)) +(: cnet_isa_3e64652ebb (IsA half_nelson nelson) (STV 1.0 0.9091)) +(: cnet_isa_9d57585392 (IsA half_note note) (STV 1.0 0.9091)) +(: cnet_isa_5f2b35a173 (IsA half_page page) (STV 1.0 0.9091)) +(: cnet_isa_6a62dd7e51 (IsA half_pay wage) (STV 1.0 0.9091)) +(: cnet_isa_3164b2f9c4 (IsA half_pound avoirdupois_unit) (STV 1.0 0.9091)) +(: cnet_isa_20071b70b4 (IsA half_rest rest) (STV 1.0 0.9091)) +(: cnet_isa_4fb0d36631 (IsA half_sister sister) (STV 1.0 0.9091)) +(: cnet_isa_49b462b6dc (IsA half_sole sole) (STV 1.0 0.9091)) +(: cnet_isa_66a3b9173b (IsA half_term vacation) (STV 1.0 0.9091)) +(: cnet_isa_5d71ee4c01 (IsA half_title page) (STV 1.0 0.9091)) +(: cnet_isa_cc425e69d0 (IsA half_track track) (STV 1.0 0.9091)) +(: cnet_isa_d3aa2c3f8b (IsA half_track military_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_75f1853a96 (IsA half_track tracked_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_953da0d352 (IsA half_truth misrepresentation) (STV 1.0 0.9091)) +(: cnet_isa_43e05b44bd (IsA half_volley return) (STV 1.0 0.9091)) +(: cnet_isa_0beca352be (IsA halfback back) (STV 1.0 0.9091)) +(: cnet_isa_6da93cc0f4 (IsA halfback running_back) (STV 1.0 0.9091)) +(: cnet_isa_b22809b675 (IsA halfbeak teleost_fish) (STV 1.0 0.9091)) +(: cnet_isa_5c3dee4448 (IsA halfpenny coin) (STV 1.0 0.9091)) +(: cnet_isa_fdffac0b30 (IsA halfpennyworth worth) (STV 1.0 0.9091)) +(: cnet_isa_c0549c47a2 (IsA halftime pause) (STV 1.0 0.9091)) +(: cnet_isa_14ab86ce07 (IsA halftone engraving) (STV 1.0 0.9091)) +(: cnet_isa_b9bab36660 (IsA haliaeetus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_47d80449f4 (IsA halibut flatfish) (STV 1.0 0.9091)) +(: cnet_isa_07c7c0423c (IsA halibut_liver_oil animal_oil) (STV 1.0 0.9091)) +(: cnet_isa_4e9724ee0b (IsA halicoere fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_797a2c0126 (IsA halictidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_b698c3a0c4 (IsA halide salt) (STV 1.0 0.9091)) +(: cnet_isa_09c8ea4ea4 (IsA halimodendron rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1530a23098 (IsA haliotidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_7024c4e0ff (IsA haliotis mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_76c25a09af (IsA halite mineral) (STV 1.0 0.9091)) +(: cnet_isa_115ac6125c (IsA halite sodium_chloride) (STV 1.0 0.9091)) +(: cnet_isa_2c081fb6a6 (IsA halitosis halitus) (STV 1.0 0.9091)) +(: cnet_isa_7d3daf9b50 (IsA halitus breath) (STV 1.0 0.9091)) +(: cnet_isa_f7f5592d10 (IsA hall_s_honeysuckle honeysuckle) (STV 1.0 0.9091)) +(: cnet_isa_1455273303 (IsA hall passage_way) (STV 1.0 0.9091)) +(: cnet_isa_0b713d4892 (IsA hall building) (STV 1.0 0.9091)) +(: cnet_isa_6d6ac8ef75 (IsA hall room) (STV 1.0 0.9091)) +(: cnet_isa_179ecc2fe2 (IsA hall_of_fame building) (STV 1.0 0.9091)) +(: cnet_isa_9b5aeddd15 (IsA hall_of_residence dormitory) (STV 1.0 0.9091)) +(: cnet_isa_532c53eefb (IsA hall_pass pass) (STV 1.0 0.9091)) +(: cnet_isa_0c9863761a (IsA hallelujah praise) (STV 1.0 0.9091)) +(: cnet_isa_5f52dd5894 (IsA hallmark characteristic) (STV 1.0 0.9091)) +(: cnet_isa_2e05453598 (IsA halloo cry) (STV 1.0 0.9091)) +(: cnet_isa_3b9713f8d8 (IsA halloween day) (STV 1.0 0.9091)) +(: cnet_isa_e8aa97f8ed (IsA hallstand furniture) (STV 1.0 0.9091)) +(: cnet_isa_96603354f7 (IsA hallucination object) (STV 1.0 0.9091)) +(: cnet_isa_dfc6c13a0e (IsA hallucination delusion) (STV 1.0 0.9091)) +(: cnet_isa_1f2bbb517e (IsA hallucinogen psychoactive_drug) (STV 1.0 0.9091)) +(: cnet_isa_bb230153fb (IsA hallucinosis psychological_state) (STV 1.0 0.9091)) +(: cnet_isa_9d9067d8d8 (IsA hallway corridor) (STV 1.0 0.9091)) +(: cnet_isa_5c74e25387 (IsA halma board_game) (STV 1.0 0.9091)) +(: cnet_isa_167c078937 (IsA halo atmospheric_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_4171cbca7a (IsA halo_blight blight) (STV 1.0 0.9091)) +(: cnet_isa_1749706709 (IsA halobacteria halophile) (STV 1.0 0.9091)) +(: cnet_isa_24ff2c7af2 (IsA halocarbon organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_33fc3d5d84 (IsA halocarpus gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_f5768949ea (IsA haloform alkyl_halide) (STV 1.0 0.9091)) +(: cnet_isa_5a0c333075 (IsA halogen group) (STV 1.0 0.9091)) +(: cnet_isa_b072c53730 (IsA halogeton herb) (STV 1.0 0.9091)) +(: cnet_isa_ab3693d379 (IsA halon organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_0474d7d0af (IsA halon pollutant) (STV 1.0 0.9091)) +(: cnet_isa_9c378f1b29 (IsA halophile archaebacteria) (STV 1.0 0.9091)) +(: cnet_isa_4ec49ad4fa (IsA halophyte vascular_plant) (STV 1.0 0.9091)) +(: cnet_isa_d63f434f00 (IsA haloragidaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_fc51f7395b (IsA halothane inhalation_anesthetic) (STV 1.0 0.9091)) +(: cnet_isa_5e2779cda0 (IsA halt disabled) (STV 1.0 0.9091)) +(: cnet_isa_dbb617d528 (IsA halter wing) (STV 1.0 0.9091)) +(: cnet_isa_865407c033 (IsA halter headgear) (STV 1.0 0.9091)) +(: cnet_isa_200d3835b8 (IsA halter top) (STV 1.0 0.9091)) +(: cnet_isa_5e526d0b8e (IsA halyard rope) (STV 1.0 0.9091)) +(: cnet_isa_b283102a24 (IsA ham food) (STV 1.0 0.9339)) +(: cnet_isa_b43bb27d30 (IsA ham cut_of_pork) (STV 1.0 0.9091)) +(: cnet_isa_f9b3dd7d9b (IsA ham actor) (STV 1.0 0.9091)) +(: cnet_isa_b49699bae7 (IsA ham radio_operator) (STV 1.0 0.9091)) +(: cnet_isa_a274b2d261 (IsA ham_and_egg dish) (STV 1.0 0.9091)) +(: cnet_isa_251ad14047 (IsA ham_hock leg) (STV 1.0 0.9091)) +(: cnet_isa_8d59eb8142 (IsA ham_sandwich sandwich) (STV 1.0 0.9091)) +(: cnet_isa_557d0002a7 (IsA hamadryad cobra) (STV 1.0 0.9091)) +(: cnet_isa_f2dc3cb302 (IsA hamadryad dryad) (STV 1.0 0.9091)) +(: cnet_isa_f11cdc98dd (IsA hamamelid_dicot_family dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_0357302ad8 (IsA hamamelid_dicot_genus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0e65765677 (IsA hamamelidaceae hamamelid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_9444cea1ff (IsA hamamelidae class) (STV 1.0 0.9091)) +(: cnet_isa_c96f452e65 (IsA hamamelidanthum dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_34e3dbccf2 (IsA hamamelidoxylon dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_85e72a9e01 (IsA hamamelis plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_fd1a98e286 (IsA hamamelite dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3382dce334 (IsA hamartoma growth) (STV 1.0 0.9091)) +(: cnet_isa_c10aa4f8b6 (IsA hamate carpal_bone) (STV 1.0 0.9091)) +(: cnet_isa_35d022cec9 (IsA hamburg_parsley parsley) (STV 1.0 0.9091)) +(: cnet_isa_98dceb809a (IsA hamburger food) (STV 1.0 0.9454)) +(: cnet_isa_5a4d1b3a7f (IsA hamburger sandwich) (STV 1.0 0.9091)) +(: cnet_isa_d14d079518 (IsA hamburger_bun bun) (STV 1.0 0.9091)) +(: cnet_isa_38da927dec (IsA hamburger meat) (STV 1.0 0.9091)) +(: cnet_isa_2510f9f909 (IsA hame stable_gear) (STV 1.0 0.9091)) +(: cnet_isa_8670c57c62 (IsA hamelia shrub) (STV 1.0 0.9091)) +(: cnet_isa_84072344d5 (IsA haminoea mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_f943a80be2 (IsA hamitic afroasiatic) (STV 1.0 0.9091)) +(: cnet_isa_3f6c7b7e1e (IsA hamlet community) (STV 1.0 0.9091)) +(: cnet_isa_098d3f7071 (IsA hammer blow) (STV 1.0 0.9091)) +(: cnet_isa_9ad38c02a3 (IsA hammer hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_2c7a8a5604 (IsA hammer power_tool) (STV 1.0 0.9091)) +(: cnet_isa_705ce5c8d3 (IsA hammer sport_equipment) (STV 1.0 0.9091)) +(: cnet_isa_656dfbaede (IsA hammer striker) (STV 1.0 0.9091)) +(: cnet_isa_081651b162 (IsA hammer field_event) (STV 1.0 0.9091)) +(: cnet_isa_f95af45faf (IsA hammer_and_sickle emblem) (STV 1.0 0.9091)) +(: cnet_isa_5c0003db50 (IsA hammer_head_shark shark) (STV 1.0 0.9091)) +(: cnet_isa_7f0699811d (IsA hammerhead shark) (STV 1.0 0.9091)) +(: cnet_isa_b31bdf663c (IsA hammerhead head) (STV 1.0 0.9091)) +(: cnet_isa_f2bbcaaffa (IsA hammerlock lock) (STV 1.0 0.9091)) +(: cnet_isa_4f8dfe01a8 (IsA hammertoe toe) (STV 1.0 0.9091)) +(: cnet_isa_8eb43f3019 (IsA hamming acting) (STV 1.0 0.9091)) +(: cnet_isa_7a1ad315c7 (IsA hammock bed) (STV 1.0 0.9091)) +(: cnet_isa_98326482c0 (IsA hamper basket) (STV 1.0 0.9091)) +(: cnet_isa_219ed97554 (IsA hampshire domestic_sheep) (STV 1.0 0.9091)) +(: cnet_isa_7c8bf37c51 (IsA hamster rodent) (STV 1.0 0.9091)) +(: cnet_isa_da47076094 (IsA hamstring tendon) (STV 1.0 0.9091)) +(: cnet_isa_708661a4b0 (IsA han dynasty) (STV 1.0 0.9091)) +(: cnet_isa_c50eb8c86d (IsA hand aid) (STV 1.0 0.9091)) +(: cnet_isa_ab79657b50 (IsA hand forepaw) (STV 1.0 0.9091)) +(: cnet_isa_8ed1246cdb (IsA hand pointer) (STV 1.0 0.9091)) +(: cnet_isa_c2073b9cdc (IsA hand extremity) (STV 1.0 0.9091)) +(: cnet_isa_1c1081c121 (IsA hand ability) (STV 1.0 0.9091)) +(: cnet_isa_c57f2e43bb (IsA hand side) (STV 1.0 0.9091)) +(: cnet_isa_c0a6067b56 (IsA hand applause) (STV 1.0 0.9091)) +(: cnet_isa_da759b2773 (IsA hand collection) (STV 1.0 0.9091)) +(: cnet_isa_ce00781b10 (IsA hand sailor) (STV 1.0 0.9091)) +(: cnet_isa_1793a59036 (IsA hand handbreadth) (STV 1.0 0.9091)) +(: cnet_isa_24eba84e19 (IsA hand_ax edge_tool) (STV 1.0 0.9091)) +(: cnet_isa_dfba02001b (IsA hand_blower blower) (STV 1.0 0.9091)) +(: cnet_isa_4c52b56fe1 (IsA hand_blower dryer) (STV 1.0 0.9091)) +(: cnet_isa_ca33723b82 (IsA hand_brake brake) (STV 1.0 0.9091)) +(: cnet_isa_0d196a294f (IsA hand_calculator calculator) (STV 1.0 0.9091)) +(: cnet_isa_2d4f7056b0 (IsA hand_cheese cheese) (STV 1.0 0.9091)) +(: cnet_isa_6aca93f3a0 (IsA hand_cream cream) (STV 1.0 0.9091)) +(: cnet_isa_4d3d571cfb (IsA hand_drill drill) (STV 1.0 0.9091)) +(: cnet_isa_c1a68b24bc (IsA hand_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_3c25165333 (IsA hand_glass light_microscope) (STV 1.0 0.9091)) +(: cnet_isa_566671349b (IsA hand_glass mirror) (STV 1.0 0.9091)) +(: cnet_isa_985f72aec0 (IsA hand_grenade grenade) (STV 1.0 0.9091)) +(: cnet_isa_9e69cb1dd8 (IsA hand_held_computer portable_computer) (STV 1.0 0.9091)) +(: cnet_isa_c0b37f7dae (IsA hand_lotion lotion) (STV 1.0 0.9091)) +(: cnet_isa_36ae614db1 (IsA hand_luggage baggage) (STV 1.0 0.9091)) +(: cnet_isa_92d0d8033d (IsA hand_me_down garment) (STV 1.0 0.9091)) +(: cnet_isa_07ea819e5a (IsA hand_mower lawn_mower) (STV 1.0 0.9091)) +(: cnet_isa_8d7a4c777b (IsA hand_pump pump) (STV 1.0 0.9091)) +(: cnet_isa_11febdcca7 (IsA hand_puppet puppet) (STV 1.0 0.9091)) +(: cnet_isa_06ade103d8 (IsA hand_schuller_christian_disease histiocytosis) (STV 1.0 0.9091)) +(: cnet_isa_76415e0a22 (IsA hand_shovel hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_22267c2e9c (IsA hand_shovel shovel) (STV 1.0 0.9091)) +(: cnet_isa_be7b4ee5f7 (IsA hand_throttle lever) (STV 1.0 0.9091)) +(: cnet_isa_7c2027882a (IsA hand_tool tool) (STV 1.0 0.9091)) +(: cnet_isa_fad86350c4 (IsA hand_towel towel) (STV 1.0 0.9091)) +(: cnet_isa_db41b860ee (IsA hand_truck handcart) (STV 1.0 0.9091)) +(: cnet_isa_d72ad03d9a (IsA handball court_game) (STV 1.0 0.9091)) +(: cnet_isa_a5b7edbdcd (IsA handball ball) (STV 1.0 0.9091)) +(: cnet_isa_3137082ba6 (IsA handball_court court) (STV 1.0 0.9091)) +(: cnet_isa_be2f2ed1ae (IsA handbarrow framework) (STV 1.0 0.9091)) +(: cnet_isa_034d2f861c (IsA handbell chime) (STV 1.0 0.9091)) +(: cnet_isa_34672c1b1a (IsA handbook reference_book) (STV 1.0 0.9091)) +(: cnet_isa_a4c54d25c7 (IsA handbow bow) (STV 1.0 0.9091)) +(: cnet_isa_699ab16803 (IsA handbreadth linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_b87c21c8af (IsA handcar car) (STV 1.0 0.9091)) +(: cnet_isa_dfd7891d5e (IsA handcart wheeled_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_b0476c9852 (IsA handclap applause) (STV 1.0 0.9091)) +(: cnet_isa_ab1cbff3a4 (IsA handcuff shackle) (STV 1.0 0.9091)) +(: cnet_isa_092c4eb7ef (IsA handedness asymmetry) (STV 1.0 0.9091)) +(: cnet_isa_e0133c94bf (IsA handel music) (STV 1.0 0.9091)) +(: cnet_isa_8b81e3fda6 (IsA handful containerful) (STV 1.0 0.9091)) +(: cnet_isa_2a21ecfc7f (IsA handful small_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_aac39ce356 (IsA handgun dangerous_weapon) (STV 1.0 0.9091)) +(: cnet_isa_23066e613c (IsA handgun weapon) (STV 1.0 0.9572)) +(: cnet_isa_ea353e250d (IsA handgun_and_rifle firearm) (STV 1.0 0.9091)) +(: cnet_isa_ee5baf966e (IsA handgun_and_rifle kind_of_gun) (STV 1.0 0.9091)) +(: cnet_isa_b1d110471b (IsA handhold appendage) (STV 1.0 0.9091)) +(: cnet_isa_fb07fdd45e (IsA handicap advantage) (STV 1.0 0.9091)) +(: cnet_isa_5efdc630a1 (IsA handicapped_person person) (STV 1.0 0.9091)) +(: cnet_isa_dcd27bdde7 (IsA handicraft art_and_craft) (STV 1.0 0.9091)) +(: cnet_isa_157c96ba77 (IsA handicraft trade) (STV 1.0 0.9091)) +(: cnet_isa_1d4bba358a (IsA handicraft work) (STV 1.0 0.9091)) +(: cnet_isa_194fc8011d (IsA handiness convenience) (STV 1.0 0.9091)) +(: cnet_isa_21713be549 (IsA handiness skillfulness) (STV 1.0 0.9091)) +(: cnet_isa_64aa908a61 (IsA handkerchief piece_of_cloth) (STV 1.0 0.9091)) +(: cnet_isa_641b5c5ee9 (IsA handle appendage) (STV 1.0 0.9091)) +(: cnet_isa_0d601537fe (IsA handlebar bar) (STV 1.0 0.9091)) +(: cnet_isa_50e2e3d031 (IsA handler agent) (STV 1.0 0.9091)) +(: cnet_isa_29a0ce3831 (IsA handline fishing_line) (STV 1.0 0.9091)) +(: cnet_isa_db7a213edc (IsA handling manual_labor) (STV 1.0 0.9091)) +(: cnet_isa_c2570a1c9f (IsA handling touch) (STV 1.0 0.9091)) +(: cnet_isa_b4b248729b (IsA handling_cost cost) (STV 1.0 0.9091)) +(: cnet_isa_7afd8f7d24 (IsA handloom loom) (STV 1.0 0.9091)) +(: cnet_isa_ffddd555f9 (IsA handmaid maid) (STV 1.0 0.9091)) +(: cnet_isa_0b1820505c (IsA handmaid subordinateness) (STV 1.0 0.9091)) +(: cnet_isa_3f325b7077 (IsA handoff football_play) (STV 1.0 0.9091)) +(: cnet_isa_e56c87bf6e (IsA handout charity) (STV 1.0 0.9091)) +(: cnet_isa_f201024c77 (IsA handout announcement) (STV 1.0 0.9091)) +(: cnet_isa_53e72235d8 (IsA handover relinquishment) (STV 1.0 0.9091)) +(: cnet_isa_6772a2efa5 (IsA handrest support) (STV 1.0 0.9091)) +(: cnet_isa_27219fda28 (IsA hand body_part) (STV 1.0 0.9454)) +(: cnet_isa_e81c156c90 (IsA hand guardianship) (STV 1.0 0.9091)) +(: cnet_isa_4e19752608 (IsA handsaw saw) (STV 1.0 0.9091)) +(: cnet_isa_ca0cf60e2b (IsA handsaw_fish soft_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_234cab122e (IsA handset telephone) (STV 1.0 0.9091)) +(: cnet_isa_46d92b2277 (IsA handshake acknowledgment) (STV 1.0 0.9091)) +(: cnet_isa_688793ca7c (IsA handsomeness beauty) (STV 1.0 0.9091)) +(: cnet_isa_697413bebf (IsA handspike bar) (STV 1.0 0.9091)) +(: cnet_isa_31de7db225 (IsA handspring acrobatic_stunt) (STV 1.0 0.9091)) +(: cnet_isa_031226e5d5 (IsA handstamp seal) (STV 1.0 0.9091)) +(: cnet_isa_262b928aed (IsA handstand gymnastic_exercise) (STV 1.0 0.9091)) +(: cnet_isa_9a33d81339 (IsA handwear clothing) (STV 1.0 0.9091)) +(: cnet_isa_acac83dab7 (IsA handwheel control) (STV 1.0 0.9091)) +(: cnet_isa_1195e65186 (IsA handwheel wheel) (STV 1.0 0.9091)) +(: cnet_isa_855fcd76ed (IsA handwriting writing) (STV 1.0 0.9091)) +(: cnet_isa_17dbe15fbc (IsA handyman maintenance_man) (STV 1.0 0.9091)) +(: cnet_isa_889c5be5f3 (IsA hang gymnastic_exercise) (STV 1.0 0.9091)) +(: cnet_isa_93414823e4 (IsA hang fit) (STV 1.0 0.9091)) +(: cnet_isa_8056c15b3c (IsA hang_glider glider) (STV 1.0 0.9091)) +(: cnet_isa_e093792895 (IsA hang_glider rider) (STV 1.0 0.9091)) +(: cnet_isa_b3ffc503ab (IsA hang_gliding glide) (STV 1.0 0.9091)) +(: cnet_isa_9b6595ffb7 (IsA hang_up obstacle) (STV 1.0 0.9091)) +(: cnet_isa_90c09f2d7c (IsA hang_up preoccupation) (STV 1.0 0.9091)) +(: cnet_isa_42988dc03f (IsA hangar_queen airplane) (STV 1.0 0.9091)) +(: cnet_isa_924fa9467c (IsA hanger support) (STV 1.0 0.9091)) +(: cnet_isa_fe3755a4be (IsA hanger worker) (STV 1.0 0.9091)) +(: cnet_isa_47a14f7557 (IsA hanging execution) (STV 1.0 0.9091)) +(: cnet_isa_94eb35e0d7 (IsA hanging decoration) (STV 1.0 0.9091)) +(: cnet_isa_42dbdc98d4 (IsA hanging_chad chad) (STV 1.0 0.9091)) +(: cnet_isa_15d6a56ec8 (IsA hanging_fly mecopteran) (STV 1.0 0.9091)) +(: cnet_isa_06c9795115 (IsA hanging_wall wall) (STV 1.0 0.9091)) +(: cnet_isa_6738dbbea3 (IsA hangman_s_rope rope) (STV 1.0 0.9091)) +(: cnet_isa_c75ce074d3 (IsA hangman executioner) (STV 1.0 0.9091)) +(: cnet_isa_73d0c2bbfa (IsA hangnail skin) (STV 1.0 0.9091)) +(: cnet_isa_e724c833e5 (IsA hangover survival) (STV 1.0 0.9091)) +(: cnet_isa_3be7e587b2 (IsA hangover discomfort) (STV 1.0 0.9091)) +(: cnet_isa_c7642dec76 (IsA hani loloish) (STV 1.0 0.9091)) +(: cnet_isa_241cf55377 (IsA hank coil) (STV 1.0 0.9091)) +(: cnet_isa_9d6771214d (IsA hank_panky sexual_intercourse) (STV 1.0 0.9091)) +(: cnet_isa_a0e825eaeb (IsA hankering longing) (STV 1.0 0.9091)) +(: cnet_isa_41675c7541 (IsA hanover dynasty) (STV 1.0 0.9091)) +(: cnet_isa_bb8ce0e280 (IsA hanover royalty) (STV 1.0 0.9091)) +(: cnet_isa_afe890ed33 (IsA hanoverian english_person) (STV 1.0 0.9091)) +(: cnet_isa_279d802b62 (IsA hanoverian ruler) (STV 1.0 0.9091)) +(: cnet_isa_2fd3c5cae7 (IsA hansard minute) (STV 1.0 0.9091)) +(: cnet_isa_4be5f84feb (IsA hanseatic_league confederation) (STV 1.0 0.9091)) +(: cnet_isa_643d72480e (IsA hansom carriage) (STV 1.0 0.9091)) +(: cnet_isa_9550f29575 (IsA hanukkah jewish_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_df53c5e66b (IsA hao vietnamese_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_4aef5d6082 (IsA hap accident) (STV 1.0 0.9091)) +(: cnet_isa_aa19c27cac (IsA haploid organism) (STV 1.0 0.9091)) +(: cnet_isa_9f529f7824 (IsA haploidy condition) (STV 1.0 0.9091)) +(: cnet_isa_492e5a97c2 (IsA haplopappus asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e9a698f0f4 (IsA haplosporidia animal_order) (STV 1.0 0.9091)) +(: cnet_isa_59e20cc51e (IsA haplosporidian sporozoan) (STV 1.0 0.9091)) +(: cnet_isa_e1de480deb (IsA haplotype combination) (STV 1.0 0.9091)) +(: cnet_isa_3d0d1eca6b (IsA happening event) (STV 1.0 0.9091)) +(: cnet_isa_181a527ccd (IsA happiness bliss) (STV 1.0 0.9091)) +(: cnet_isa_0aa6883756 (IsA happiness emotion) (STV 1.0 0.9572)) +(: cnet_isa_73b3a45d87 (IsA happiness state_of_mind) (STV 1.0 0.9091)) +(: cnet_isa_e06c0ef526 (IsA happiness feeling) (STV 1.0 0.9091)) +(: cnet_isa_838fa89b3a (IsA happiness emotional_state) (STV 1.0 0.9091)) +(: cnet_isa_eb9b34f015 (IsA happy_hour hour) (STV 1.0 0.9091)) +(: cnet_isa_30724b8ede (IsA haptoglobin protein) (STV 1.0 0.9091)) +(: cnet_isa_9ffa9449f9 (IsA harakiri suicide) (STV 1.0 0.9091)) +(: cnet_isa_0aeb20dac4 (IsA harangue declamation) (STV 1.0 0.9091)) +(: cnet_isa_d95efc9247 (IsA haranguer orator) (STV 1.0 0.9091)) +(: cnet_isa_2c2908f432 (IsA harasser attacker) (STV 1.0 0.9091)) +(: cnet_isa_8a21b95930 (IsA harasser tormentor) (STV 1.0 0.9091)) +(: cnet_isa_50213fc3e6 (IsA harassing_fire fire) (STV 1.0 0.9091)) +(: cnet_isa_7216a358d5 (IsA harassment mistreatment) (STV 1.0 0.9091)) +(: cnet_isa_dfd999b5fa (IsA harassment annoyance) (STV 1.0 0.9091)) +(: cnet_isa_855e1b2749 (IsA harbinger indication) (STV 1.0 0.9091)) +(: cnet_isa_2b312d3870 (IsA harbor refuge) (STV 1.0 0.9091)) +(: cnet_isa_1bec48a277 (IsA harbor_patrol patrol) (STV 1.0 0.9091)) +(: cnet_isa_1a57aa7957 (IsA harbor_porpoise porpoise) (STV 1.0 0.9091)) +(: cnet_isa_a7459b288b (IsA harbor_seal earless_seal) (STV 1.0 0.9091)) +(: cnet_isa_d1d5816d1e (IsA harborage safety) (STV 1.0 0.9091)) +(: cnet_isa_4fc1eecb6f (IsA hard_beech southern_beech) (STV 1.0 0.9091)) +(: cnet_isa_ba80d18561 (IsA hard_boiled_egg boiled_egg) (STV 1.0 0.9091)) +(: cnet_isa_f12dd59636 (IsA hard_candy candy) (STV 1.0 0.9091)) +(: cnet_isa_5a825843a7 (IsA hard_cheese misfortune) (STV 1.0 0.9091)) +(: cnet_isa_cb87e6a2a0 (IsA hard_cider alcohol) (STV 1.0 0.9091)) +(: cnet_isa_5e4bddecb8 (IsA hard_cider cider) (STV 1.0 0.9091)) +(: cnet_isa_3319ff1408 (IsA hard_copy matter) (STV 1.0 0.9091)) +(: cnet_isa_f248c3b0d3 (IsA hard_core clique) (STV 1.0 0.9091)) +(: cnet_isa_d8c3e4e81a (IsA hard_currency currency) (STV 1.0 0.9091)) +(: cnet_isa_2ed6797dbe (IsA hard_disc magnetic_disk) (STV 1.0 0.9091)) +(: cnet_isa_5919e3d385 (IsA hard_drug controlled_substance) (STV 1.0 0.9091)) +(: cnet_isa_2911243520 (IsA hard_drug narcotic) (STV 1.0 0.9091)) +(: cnet_isa_9684ed66dc (IsA hard_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_47b118c5fc (IsA hard_hat helmet) (STV 1.0 0.9091)) +(: cnet_isa_aa13258be1 (IsA hard_lead lead) (STV 1.0 0.9091)) +(: cnet_isa_9e50822c0f (IsA hard_line position) (STV 1.0 0.9091)) +(: cnet_isa_efb2307279 (IsA hard_new new) (STV 1.0 0.9091)) +(: cnet_isa_9769a8d0c0 (IsA hard_palate surface) (STV 1.0 0.9091)) +(: cnet_isa_2218def634 (IsA hard_right right) (STV 1.0 0.9091)) +(: cnet_isa_84e5b8fb4d (IsA hard_roll bun) (STV 1.0 0.9091)) +(: cnet_isa_00c73cbb66 (IsA hard_rubber rubber) (STV 1.0 0.9091)) +(: cnet_isa_ede7278521 (IsA hard_rush rush) (STV 1.0 0.9091)) +(: cnet_isa_8c3d7b2564 (IsA hard_sauce sauce) (STV 1.0 0.9091)) +(: cnet_isa_314ad625b8 (IsA hard_sell advertising) (STV 1.0 0.9091)) +(: cnet_isa_b82163a5f2 (IsA hard_shell_crab crab) (STV 1.0 0.9091)) +(: cnet_isa_3aaf0435d9 (IsA hard_shoulder shoulder) (STV 1.0 0.9091)) +(: cnet_isa_89f12e447c (IsA hard_solder solder) (STV 1.0 0.9091)) +(: cnet_isa_a27c315cf2 (IsA hard_steel steel) (STV 1.0 0.9091)) +(: cnet_isa_d4ace4eee7 (IsA hard_tick tick) (STV 1.0 0.9091)) +(: cnet_isa_61205d103d (IsA hard_time difficulty) (STV 1.0 0.9091)) +(: cnet_isa_47b85d6ef3 (IsA hard_time prison_term) (STV 1.0 0.9091)) +(: cnet_isa_e922d8fb0a (IsA hard_time time) (STV 1.0 0.9091)) +(: cnet_isa_b1df517bf2 (IsA hard_water water) (STV 1.0 0.9091)) +(: cnet_isa_f2b349f3fc (IsA hardback book) (STV 1.0 0.9091)) +(: cnet_isa_6c071a6218 (IsA hardbake sweet) (STV 1.0 0.9091)) +(: cnet_isa_fe8f1473fa (IsA hardball baseball) (STV 1.0 0.9091)) +(: cnet_isa_d74c0d74ab (IsA hardball attitude) (STV 1.0 0.9091)) +(: cnet_isa_e412d3c9db (IsA hardenbergia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6c4e44a487 (IsA hardening change_of_integrity) (STV 1.0 0.9091)) +(: cnet_isa_4b984cfea1 (IsA hardening natural_process) (STV 1.0 0.9091)) +(: cnet_isa_5b82b853fd (IsA hardening symptom) (STV 1.0 0.9091)) +(: cnet_isa_d6d51d7c51 (IsA hardinggrass grass) (STV 1.0 0.9091)) +(: cnet_isa_0c69b22945 (IsA hardliner conservative) (STV 1.0 0.9091)) +(: cnet_isa_d254b118b8 (IsA hardness mechanical_property) (STV 1.0 0.9339)) +(: cnet_isa_273de1b2e4 (IsA hardness consistency) (STV 1.0 0.9091)) +(: cnet_isa_a132f4222f (IsA hardness difficulty) (STV 1.0 0.9091)) +(: cnet_isa_92575f1ec5 (IsA hardness quality) (STV 1.0 0.9091)) +(: cnet_isa_7be64114ff (IsA hardship misfortune) (STV 1.0 0.9091)) +(: cnet_isa_7f7bd59441 (IsA hardstem_bulrush sedge) (STV 1.0 0.9091)) +(: cnet_isa_3b1987bcb9 (IsA hardtack biscuit) (STV 1.0 0.9091)) +(: cnet_isa_3ddbfdb235 (IsA hardtack mahogany) (STV 1.0 0.9091)) +(: cnet_isa_6acb5b80a4 (IsA hardtop car) (STV 1.0 0.9091)) +(: cnet_isa_6a04486117 (IsA hardware instrumentality) (STV 1.0 0.9091)) +(: cnet_isa_e41767fd5d (IsA hardware component) (STV 1.0 0.9091)) +(: cnet_isa_4d6526b669 (IsA hardware weaponry) (STV 1.0 0.9091)) +(: cnet_isa_da496dd01a (IsA hardware_error error) (STV 1.0 0.9091)) +(: cnet_isa_49fa74b087 (IsA hardware_store shop) (STV 1.0 0.9091)) +(: cnet_isa_520af9073b (IsA hardwood wood) (STV 1.0 0.9091)) +(: cnet_isa_c83e19a27b (IsA hare_s_foot_bristle_fern bristle_fern) (STV 1.0 0.9091)) +(: cnet_isa_f5bdcbd723 (IsA hare_s_foot_fern davallia) (STV 1.0 0.9091)) +(: cnet_isa_00f41b7c41 (IsA hare leporid) (STV 1.0 0.9091)) +(: cnet_isa_e3a1528a25 (IsA hare_krishna sect) (STV 1.0 0.9091)) +(: cnet_isa_736feaa6b0 (IsA hare_krishna hindoo) (STV 1.0 0.9091)) +(: cnet_isa_7f63d3b9bd (IsA hare_wallaby wallaby) (STV 1.0 0.9091)) +(: cnet_isa_6a8cefbaba (IsA harebell campanula) (STV 1.0 0.9091)) +(: cnet_isa_00e67a6ef3 (IsA haredi sect) (STV 1.0 0.9091)) +(: cnet_isa_215914ad6c (IsA harem living_quarter) (STV 1.0 0.9091)) +(: cnet_isa_65fd8cb23e (IsA hare mammal) (STV 1.0 0.9091)) +(: cnet_isa_6caf3309a3 (IsA haricot green_bean) (STV 1.0 0.9091)) +(: cnet_isa_90408ddd81 (IsA haricot_vert green_bean) (STV 1.0 0.9091)) +(: cnet_isa_dc5cefa7d4 (IsA harlequin clown) (STV 1.0 0.9091)) +(: cnet_isa_bca27fd9d6 (IsA harlequin_opal opal) (STV 1.0 0.9091)) +(: cnet_isa_ab11d9b704 (IsA harmattan wind) (STV 1.0 0.9091)) +(: cnet_isa_e80b43b8d8 (IsA harmfulness destructiveness) (STV 1.0 0.9091)) +(: cnet_isa_3455eb34ef (IsA harmfulness unwholesomeness) (STV 1.0 0.9091)) +(: cnet_isa_7097fcac6b (IsA harmonic timbre) (STV 1.0 0.9091)) +(: cnet_isa_32180ea11a (IsA harmonic tone) (STV 1.0 0.9091)) +(: cnet_isa_2465403421 (IsA harmonic_mean mean) (STV 1.0 0.9091)) +(: cnet_isa_6a560f344d (IsA harmonic_motion periodic_motion) (STV 1.0 0.9091)) +(: cnet_isa_93ef34c051 (IsA harmonic_progression progression) (STV 1.0 0.9091)) +(: cnet_isa_5d24c27e54 (IsA harmonica instrument) (STV 1.0 0.9524)) +(: cnet_isa_a6273b9050 (IsA harmonica musical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_129de0f35a (IsA harmonica free_reed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_2160e254e4 (IsA harmonic acoustic) (STV 1.0 0.9091)) +(: cnet_isa_d8e6bd11f8 (IsA harmonium instrument) (STV 1.0 0.9091)) +(: cnet_isa_5bbd35d0a9 (IsA harmonization singing) (STV 1.0 0.9091)) +(: cnet_isa_5b29c2bd0a (IsA harmonization harmony) (STV 1.0 0.9091)) +(: cnet_isa_d38a3aee3d (IsA harmonizer mediator) (STV 1.0 0.9091)) +(: cnet_isa_6267f490d8 (IsA harmonizer musician) (STV 1.0 0.9091)) +(: cnet_isa_793fcaf7bc (IsA harmony compatibility) (STV 1.0 0.9091)) +(: cnet_isa_5631305bcb (IsA harmony sound_property) (STV 1.0 0.9091)) +(: cnet_isa_1a196c6728 (IsA harmony agreement) (STV 1.0 0.9091)) +(: cnet_isa_b732f55e3d (IsA harmony music) (STV 1.0 0.9091)) +(: cnet_isa_a660cbc33c (IsA harmony order) (STV 1.0 0.9091)) +(: cnet_isa_03193145ab (IsA harness stable_gear) (STV 1.0 0.9091)) +(: cnet_isa_212a5c6710 (IsA harness support) (STV 1.0 0.9091)) +(: cnet_isa_d638ae80f3 (IsA harness_horse horse) (STV 1.0 0.9091)) +(: cnet_isa_939c0e4900 (IsA harness_race horse_race) (STV 1.0 0.9091)) +(: cnet_isa_b8ee2fe5e3 (IsA harnessed_antelope antelope) (STV 1.0 0.9091)) +(: cnet_isa_254e468dfb (IsA harp instrument) (STV 1.0 0.9572)) +(: cnet_isa_7fc737740f (IsA harp chordophone) (STV 1.0 0.9091)) +(: cnet_isa_ce9966e5ae (IsA harp support) (STV 1.0 0.9091)) +(: cnet_isa_d135011826 (IsA harp_seal earless_seal) (STV 1.0 0.9091)) +(: cnet_isa_c08d800009 (IsA harpia bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_8985cc35a8 (IsA harpist musician) (STV 1.0 0.9091)) +(: cnet_isa_e29326359e (IsA harpoon spear) (STV 1.0 0.9091)) +(: cnet_isa_e8fe51de09 (IsA harpoon_gun cannon) (STV 1.0 0.9091)) +(: cnet_isa_5b5d79b3df (IsA harpoon_line rope) (STV 1.0 0.9091)) +(: cnet_isa_4040ff6cbc (IsA harpoon_log log) (STV 1.0 0.9091)) +(: cnet_isa_313304cfc6 (IsA harpooner skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_76c0b5af67 (IsA harpsichord musical_instrument) (STV 1.0 0.9524)) +(: cnet_isa_63abd903e0 (IsA harpsichord clavier) (STV 1.0 0.9091)) +(: cnet_isa_3c25dc755c (IsA harpsichordist musician) (STV 1.0 0.9091)) +(: cnet_isa_adbc17ad2f (IsA harpulla harpullia) (STV 1.0 0.9091)) +(: cnet_isa_f55196e692 (IsA harpullia tulipwood_tree) (STV 1.0 0.9091)) +(: cnet_isa_66f413a7cf (IsA harpy eagle) (STV 1.0 0.9091)) +(: cnet_isa_a7f196752d (IsA harpy fruit_bat) (STV 1.0 0.9091)) +(: cnet_isa_4378f9a13d (IsA harpy mythical_monster) (STV 1.0 0.9091)) +(: cnet_isa_03d187cefe (IsA harridan scold) (STV 1.0 0.9091)) +(: cnet_isa_6985631bfc (IsA harrier hawk) (STV 1.0 0.9091)) +(: cnet_isa_9e134dedf9 (IsA harrier hound) (STV 1.0 0.9091)) +(: cnet_isa_b2b6c807bc (IsA harrier_eagle hawk) (STV 1.0 0.9091)) +(: cnet_isa_a0dd6a71f5 (IsA harrisia caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_63bc397f50 (IsA harrow cultivator) (STV 1.0 0.9091)) +(: cnet_isa_52e07d0ad3 (IsA harry_potter boy_who_cast_spell) (STV 1.0 0.9091)) +(: cnet_isa_1e266539b3 (IsA harry_potter character_in_novel) (STV 1.0 0.9091)) +(: cnet_isa_865e7595f1 (IsA harshness roughness) (STV 1.0 0.9091)) +(: cnet_isa_17e23bbe93 (IsA harshness unpleasantness) (STV 1.0 0.9091)) +(: cnet_isa_4017031a10 (IsA hart_s_tongue fern) (STV 1.0 0.9091)) +(: cnet_isa_45dbea8c74 (IsA hart red_deer) (STV 1.0 0.9091)) +(: cnet_isa_637651fbe2 (IsA hartebeest antelope) (STV 1.0 0.9091)) +(: cnet_isa_20e176dfad (IsA harvest gather) (STV 1.0 0.9091)) +(: cnet_isa_5bba610c7a (IsA harvest season) (STV 1.0 0.9091)) +(: cnet_isa_efe017984b (IsA harvest consequence) (STV 1.0 0.9091)) +(: cnet_isa_01f3ec5ca6 (IsA harvest_lice agrimonia) (STV 1.0 0.9091)) +(: cnet_isa_3bb3a7f8cc (IsA harvest_mite trombiculid) (STV 1.0 0.9091)) +(: cnet_isa_5d3b1b25a7 (IsA harvest_moon full_moon) (STV 1.0 0.9091)) +(: cnet_isa_8ab93d59f8 (IsA harvest_mouse mouse) (STV 1.0 0.9091)) +(: cnet_isa_9da5a3af9d (IsA harvester farm_machine) (STV 1.0 0.9091)) +(: cnet_isa_d219516eca (IsA harvester farmhand) (STV 1.0 0.9091)) +(: cnet_isa_2b2b27cabb (IsA harvestfish butterfish) (STV 1.0 0.9091)) +(: cnet_isa_e2e00b7d1c (IsA harvestman arachnid) (STV 1.0 0.9091)) +(: cnet_isa_e6b9f03058 (IsA harvey_wallbanger cocktail) (STV 1.0 0.9091)) +(: cnet_isa_fc17b2f7d4 (IsA has_been oldster) (STV 1.0 0.9091)) +(: cnet_isa_df5a4eaac0 (IsA hash dish) (STV 1.0 0.9091)) +(: cnet_isa_d25731fb41 (IsA hash_head head) (STV 1.0 0.9091)) +(: cnet_isa_1ca59743fe (IsA hash_house restaurant) (STV 1.0 0.9091)) +(: cnet_isa_d56d4fe780 (IsA hashimoto_s_disease autoimmune_disease) (STV 1.0 0.9091)) +(: cnet_isa_90113fcdd3 (IsA hashish soft_drug) (STV 1.0 0.9091)) +(: cnet_isa_b9000da5fe (IsA hasidim orthodox_judaism) (STV 1.0 0.9091)) +(: cnet_isa_91781b1f09 (IsA hasidism orthodox_judaism) (STV 1.0 0.9091)) +(: cnet_isa_99ea0d1549 (IsA haslet loaf) (STV 1.0 0.9091)) +(: cnet_isa_e2a7476e56 (IsA haslet variety_meat) (STV 1.0 0.9091)) +(: cnet_isa_e20eed26d3 (IsA hasp catch) (STV 1.0 0.9091)) +(: cnet_isa_d27450b128 (IsA hassium chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_bcf29c47e0 (IsA hassle fight) (STV 1.0 0.9091)) +(: cnet_isa_7a22d583d1 (IsA hassock cushion) (STV 1.0 0.9091)) +(: cnet_isa_f245d6b722 (IsA hastate_leaf simple_leaf) (STV 1.0 0.9091)) +(: cnet_isa_46119748d5 (IsA haste motion) (STV 1.0 0.9091)) +(: cnet_isa_bba9d18fc3 (IsA haste speed) (STV 1.0 0.9091)) +(: cnet_isa_f67ccfd2fa (IsA hastinapura sanskrit_literature) (STV 1.0 0.9091)) +(: cnet_isa_ce389ea4a9 (IsA hastiness impulsiveness) (STV 1.0 0.9091)) +(: cnet_isa_a40ce72467 (IsA hasty_defense defense) (STV 1.0 0.9091)) +(: cnet_isa_d5392de9b0 (IsA hasty_pudding mush) (STV 1.0 0.9091)) +(: cnet_isa_ff19d9095e (IsA hasty_pudding porridge) (STV 1.0 0.9091)) +(: cnet_isa_db03aab674 (IsA hat form_of_clothing) (STV 1.0 0.9091)) +(: cnet_isa_ba997f4ce1 (IsA hat function) (STV 1.0 0.9091)) +(: cnet_isa_a6bc4cca87 (IsA hat headdress) (STV 1.0 0.9091)) +(: cnet_isa_39c45b7ffd (IsA hat_box special_kind_of_box) (STV 1.0 0.9091)) +(: cnet_isa_9162116e07 (IsA hat_trick score) (STV 1.0 0.9091)) +(: cnet_isa_d38748cd59 (IsA hatband band) (STV 1.0 0.9091)) +(: cnet_isa_20288c82b6 (IsA hatbox baggage) (STV 1.0 0.9091)) +(: cnet_isa_8959cf2c03 (IsA hatch movable_barrier) (STV 1.0 0.9091)) +(: cnet_isa_dc774a58d1 (IsA hatch shading) (STV 1.0 0.9091)) +(: cnet_isa_4b8bc6cb6b (IsA hatch parturition) (STV 1.0 0.9091)) +(: cnet_isa_403121963d (IsA hatchback car) (STV 1.0 0.9091)) +(: cnet_isa_88b5cb223a (IsA hatchback car_door) (STV 1.0 0.9091)) +(: cnet_isa_6a9849bb59 (IsA hatchel comb) (STV 1.0 0.9091)) +(: cnet_isa_c5847ef503 (IsA hatchery place) (STV 1.0 0.9091)) +(: cnet_isa_ec182eaad9 (IsA hatchet ax) (STV 1.0 0.9091)) +(: cnet_isa_a2b67861a7 (IsA hatchet_man assistant) (STV 1.0 0.9091)) +(: cnet_isa_f81ab15f5b (IsA hatchet_man murderer) (STV 1.0 0.9091)) +(: cnet_isa_004ba9b355 (IsA hatchling young) (STV 1.0 0.9091)) +(: cnet_isa_f2119766b0 (IsA hatchway entrance) (STV 1.0 0.9091)) +(: cnet_isa_eeeae67d21 (IsA hate emotion) (STV 1.0 0.9572)) +(: cnet_isa_cf50180081 (IsA hate human_emotion) (STV 1.0 0.9091)) +(: cnet_isa_598329c444 (IsA hate strong_emotion) (STV 1.0 0.9454)) +(: cnet_isa_0b88522e24 (IsA hate very_strong_emotion) (STV 1.0 0.9091)) +(: cnet_isa_33ca1663be (IsA hate_mail mail) (STV 1.0 0.9091)) +(: cnet_isa_d018760665 (IsA hatefulness offensiveness) (STV 1.0 0.9091)) +(: cnet_isa_8850ccabc9 (IsA hatemonger detractor) (STV 1.0 0.9091)) +(: cnet_isa_c34276d9c1 (IsA hater person) (STV 1.0 0.9091)) +(: cnet_isa_c274dba00a (IsA hatful containerful) (STV 1.0 0.9091)) +(: cnet_isa_ba24282f43 (IsA hatha_yoga yoga) (STV 1.0 0.9091)) +(: cnet_isa_c42fdd005b (IsA hatiora caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0d651f8b8a (IsA hatpin pin) (STV 1.0 0.9091)) +(: cnet_isa_5d82e34f80 (IsA hauberk chain_mail) (STV 1.0 0.9091)) +(: cnet_isa_e31451c8c9 (IsA hauler contractor) (STV 1.0 0.9091)) +(: cnet_isa_dac71c201d (IsA hauling transportation) (STV 1.0 0.9091)) +(: cnet_isa_643a26d894 (IsA haulm stalk) (STV 1.0 0.9091)) +(: cnet_isa_fa184d6db9 (IsA haunch hindquarter) (STV 1.0 0.9091)) +(: cnet_isa_dd05c95cbb (IsA haunch body_part) (STV 1.0 0.9091)) +(: cnet_isa_6d86b2a11e (IsA haunt area) (STV 1.0 0.9091)) +(: cnet_isa_f9b616c89e (IsA hausa west_chadic) (STV 1.0 0.9091)) +(: cnet_isa_4e9768c659 (IsA hausmannite mineral) (STV 1.0 0.9091)) +(: cnet_isa_13d04edd7a (IsA haussa nigerian) (STV 1.0 0.9091)) +(: cnet_isa_711b494ade (IsA haustorium plant_process) (STV 1.0 0.9091)) +(: cnet_isa_41d407903a (IsA haute_couture fashion) (STV 1.0 0.9091)) +(: cnet_isa_9e06392025 (IsA haute_cuisine cuisine) (STV 1.0 0.9091)) +(: cnet_isa_e01c66609e (IsA havasupai yuman) (STV 1.0 0.9091)) +(: cnet_isa_b4a3abb3fc (IsA havasupai hoka) (STV 1.0 0.9091)) +(: cnet_isa_51133f6a43 (IsA havelock cloth_covering) (STV 1.0 0.9091)) +(: cnet_isa_4f6f1f1787 (IsA haven shelter) (STV 1.0 0.9091)) +(: cnet_isa_87a221b071 (IsA haverhill_fever ratbite_fever) (STV 1.0 0.9091)) +(: cnet_isa_c03a4fdbc8 (IsA haversian_canal duct) (STV 1.0 0.9091)) +(: cnet_isa_5febc9b0e2 (IsA having_ball having_very_good_time) (STV 1.0 0.9091)) +(: cnet_isa_48f209356c (IsA having_daughter wonderful_experience) (STV 1.0 0.9091)) +(: cnet_isa_88fda3691b (IsA having_sex having_fun) (STV 1.0 0.9454)) +(: cnet_isa_8b29e94cae (IsA havoc disturbance) (STV 1.0 0.9091)) +(: cnet_isa_d43e0df631 (IsA haw nictitating_membrane) (STV 1.0 0.9091)) +(: cnet_isa_8a3e213887 (IsA hawaii place) (STV 1.0 0.9339)) +(: cnet_isa_2b72e695c5 (IsA hawaii state) (STV 1.0 0.9454)) +(: cnet_isa_f4661e4fdb (IsA hawaii_time civil_time) (STV 1.0 0.9091)) +(: cnet_isa_59d7745c8f (IsA hawaiian human_language) (STV 1.0 0.9091)) +(: cnet_isa_a403211466 (IsA hawaiian oceanic) (STV 1.0 0.9091)) +(: cnet_isa_5aeeeeff51 (IsA hawaiian american) (STV 1.0 0.9091)) +(: cnet_isa_5cd9acab6d (IsA hawaiian_guitar guitar) (STV 1.0 0.9091)) +(: cnet_isa_1528eab35e (IsA hawala banking_industry) (STV 1.0 0.9091)) +(: cnet_isa_8b1475de2e (IsA hawfinch grosbeak) (STV 1.0 0.9091)) +(: cnet_isa_26b6ce3744 (IsA hawk_s_beard wildflower) (STV 1.0 0.9091)) +(: cnet_isa_3e4e328083 (IsA hawk bird) (STV 1.0 0.9524)) +(: cnet_isa_ca4647d65d (IsA hawk bird_of_prey) (STV 1.0 0.9091)) +(: cnet_isa_9984729300 (IsA hawk militarist) (STV 1.0 0.9091)) +(: cnet_isa_21bccdb7fa (IsA hawk_nose nose) (STV 1.0 0.9091)) +(: cnet_isa_8b99db5a7f (IsA hawk_owl owl) (STV 1.0 0.9091)) +(: cnet_isa_9c0559b26c (IsA hawkbit wildflower) (STV 1.0 0.9091)) +(: cnet_isa_a80dad6baa (IsA hawkishness political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_51a1060c8e (IsA hawkmoth moth) (STV 1.0 0.9091)) +(: cnet_isa_5f0fb95725 (IsA hawksbill_turtle sea_turtle) (STV 1.0 0.9091)) +(: cnet_isa_eae7e42702 (IsA hawkweed herb) (STV 1.0 0.9091)) +(: cnet_isa_7b1d8173d4 (IsA hawse hole) (STV 1.0 0.9091)) +(: cnet_isa_a8eb71a3da (IsA hawser rope) (STV 1.0 0.9091)) +(: cnet_isa_d2ad77158e (IsA hawser_bend knot) (STV 1.0 0.9091)) +(: cnet_isa_4b6aabe2e9 (IsA hawthorn shrub) (STV 1.0 0.9091)) +(: cnet_isa_9712005557 (IsA hay fodder) (STV 1.0 0.9091)) +(: cnet_isa_4de82d3fd9 (IsA hay_bale bale) (STV 1.0 0.9091)) +(: cnet_isa_28217aeb7b (IsA hay_fever allergic_rhinitis) (STV 1.0 0.9091)) +(: cnet_isa_a4a159d54e (IsA hay_scented fern) (STV 1.0 0.9091)) +(: cnet_isa_13af2caee9 (IsA haycock haystack) (STV 1.0 0.9091)) +(: cnet_isa_5a58b272f3 (IsA haydn music) (STV 1.0 0.9091)) +(: cnet_isa_49f931a36c (IsA hayfield grassland) (STV 1.0 0.9091)) +(: cnet_isa_c7c83e358a (IsA hayfork fork) (STV 1.0 0.9091)) +(: cnet_isa_cebefa51e4 (IsA haying harvest) (STV 1.0 0.9091)) +(: cnet_isa_0836f52877 (IsA haying season) (STV 1.0 0.9091)) +(: cnet_isa_7f0c8fb927 (IsA hayloft loft) (STV 1.0 0.9091)) +(: cnet_isa_cd83b7ba8e (IsA haymaker punch) (STV 1.0 0.9091)) +(: cnet_isa_b89015a58a (IsA haymaker farm_machine) (STV 1.0 0.9091)) +(: cnet_isa_2f1a31a7ef (IsA haymaking accomplishment) (STV 1.0 0.9091)) +(: cnet_isa_9e5906b5f3 (IsA haymaking labor) (STV 1.0 0.9091)) +(: cnet_isa_ea1213ed57 (IsA haymow batch) (STV 1.0 0.9091)) +(: cnet_isa_761c50a7b0 (IsA hayrack framework) (STV 1.0 0.9091)) +(: cnet_isa_1c143279cc (IsA hayrack rack) (STV 1.0 0.9091)) +(: cnet_isa_00c24b34bf (IsA haystack stack) (STV 1.0 0.9091)) +(: cnet_isa_bf2d90af44 (IsA haywire wire) (STV 1.0 0.9091)) +(: cnet_isa_c23ef2e3d1 (IsA hazard obstacle) (STV 1.0 0.9091)) +(: cnet_isa_a17491feac (IsA hazard danger) (STV 1.0 0.9091)) +(: cnet_isa_1353aff75c (IsA hazard_insurance insurance) (STV 1.0 0.9091)) +(: cnet_isa_9ab4653437 (IsA hazardia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_fd5f140148 (IsA hazardousness danger) (STV 1.0 0.9091)) +(: cnet_isa_0e18278f2f (IsA haze aerosol) (STV 1.0 0.9091)) +(: cnet_isa_8727ce8868 (IsA hazel brown) (STV 1.0 0.9091)) +(: cnet_isa_e7ce3ec022 (IsA hazel tree) (STV 1.0 0.9091)) +(: cnet_isa_b7a14b6c92 (IsA hazel wood) (STV 1.0 0.9091)) +(: cnet_isa_6308931530 (IsA hazel_mouse dormouse) (STV 1.0 0.9091)) +(: cnet_isa_5a66d0f266 (IsA hazelnut edible_nut) (STV 1.0 0.9091)) +(: cnet_isa_1d24c8ec78 (IsA hazelnut nut_tree) (STV 1.0 0.9091)) +(: cnet_isa_bf0d0402f8 (IsA haziness cloudiness) (STV 1.0 0.9091)) +(: cnet_isa_989dd6b061 (IsA haziness vagueness) (STV 1.0 0.9091)) +(: cnet_isa_71a08f6087 (IsA hazmat material) (STV 1.0 0.9091)) +(: cnet_isa_875b2b4128 (IsA hdl_cholesterol cholesterol) (STV 1.0 0.9091)) +(: cnet_isa_a2ca8a1758 (IsA he letter) (STV 1.0 0.9091)) +(: cnet_isa_b3f2253f6d (IsA head domestic_animal) (STV 1.0 0.9091)) +(: cnet_isa_aa7383e2ed (IsA head obverse) (STV 1.0 0.9091)) +(: cnet_isa_f16909fdf4 (IsA head projection) (STV 1.0 0.9091)) +(: cnet_isa_91961de29c (IsA head striker) (STV 1.0 0.9091)) +(: cnet_isa_4fc794c43e (IsA head toilet) (STV 1.0 0.9091)) +(: cnet_isa_7fc58bcd70 (IsA head external_body_part) (STV 1.0 0.9091)) +(: cnet_isa_697fe79120 (IsA head structure) (STV 1.0 0.9091)) +(: cnet_isa_7f4f1a7125 (IsA head word) (STV 1.0 0.9091)) +(: cnet_isa_dcbcfd6c93 (IsA head top) (STV 1.0 0.9091)) +(: cnet_isa_a3a9e53df7 (IsA head formation) (STV 1.0 0.9091)) +(: cnet_isa_502f2c275d (IsA head foam) (STV 1.0 0.9091)) +(: cnet_isa_301ebca337 (IsA head object) (STV 1.0 0.9091)) +(: cnet_isa_9ab5598a8d (IsA head drug_user) (STV 1.0 0.9091)) +(: cnet_isa_63ae954413 (IsA head individual) (STV 1.0 0.9091)) +(: cnet_isa_cfc4f15927 (IsA head leader) (STV 1.0 0.9091)) +(: cnet_isa_9c64fde4d5 (IsA head pressure) (STV 1.0 0.9091)) +(: cnet_isa_fb8584f9d4 (IsA head linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_0cdeaba61f (IsA head point) (STV 1.0 0.9091)) +(: cnet_isa_b913c959f3 (IsA head_blight blight) (STV 1.0 0.9091)) +(: cnet_isa_47c280b1f6 (IsA head_cabbage cabbage) (STV 1.0 0.9091)) +(: cnet_isa_72b7aa1eec (IsA head_cold cold) (STV 1.0 0.9091)) +(: cnet_isa_199e1e904f (IsA head_count count) (STV 1.0 0.9091)) +(: cnet_isa_e57471e82f (IsA head_covering garment) (STV 1.0 0.9091)) +(: cnet_isa_20d6f8ced6 (IsA head_crash crash) (STV 1.0 0.9091)) +(: cnet_isa_e7cf3011cb (IsA head_gasket gasket) (STV 1.0 0.9091)) +(: cnet_isa_c9c55f892a (IsA head_gate gate) (STV 1.0 0.9091)) +(: cnet_isa_0940ba82a0 (IsA head_lettuce lettuce) (STV 1.0 0.9091)) +(: cnet_isa_340479b7f1 (IsA head_linesman football_official) (STV 1.0 0.9091)) +(: cnet_isa_13af8f9b3d (IsA head_louse louse) (STV 1.0 0.9091)) +(: cnet_isa_1575ae3789 (IsA head_nurse nurse) (STV 1.0 0.9091)) +(: cnet_isa_51bbe3075d (IsA head_of_household head) (STV 1.0 0.9091)) +(: cnet_isa_e6b52ce470 (IsA head_of_state representative) (STV 1.0 0.9091)) +(: cnet_isa_dd6d21f774 (IsA head_register register) (STV 1.0 0.9091)) +(: cnet_isa_f34c81df5b (IsA head_sea sea) (STV 1.0 0.9091)) +(: cnet_isa_c350df3914 (IsA head_shop shop) (STV 1.0 0.9091)) +(: cnet_isa_c308705798 (IsA head_smut smut) (STV 1.0 0.9091)) +(: cnet_isa_92dbe4675b (IsA headache ache) (STV 1.0 0.9091)) +(: cnet_isa_a0c2e2a19c (IsA headband band) (STV 1.0 0.9091)) +(: cnet_isa_b76f090618 (IsA headboard panel) (STV 1.0 0.9091)) +(: cnet_isa_2f997dba7a (IsA headcheese loaf) (STV 1.0 0.9091)) +(: cnet_isa_3704c3a100 (IsA headcheese sausage) (STV 1.0 0.9091)) +(: cnet_isa_d90d1b7930 (IsA headdress clothing) (STV 1.0 0.9091)) +(: cnet_isa_c9bd0c4cfa (IsA header jump) (STV 1.0 0.9091)) +(: cnet_isa_49d718f2de (IsA header beam) (STV 1.0 0.9091)) +(: cnet_isa_23c0a3f63e (IsA header brick) (STV 1.0 0.9091)) +(: cnet_isa_e8dffe59f4 (IsA header harvester) (STV 1.0 0.9091)) +(: cnet_isa_d27256c193 (IsA header hit) (STV 1.0 0.9091)) +(: cnet_isa_7a64216d75 (IsA headfast mooring) (STV 1.0 0.9091)) +(: cnet_isa_157879fc51 (IsA headful body_covering) (STV 1.0 0.9091)) +(: cnet_isa_04bb740fac (IsA headful containerful) (STV 1.0 0.9091)) +(: cnet_isa_9287029ff2 (IsA headgear hoist) (STV 1.0 0.9091)) +(: cnet_isa_06e439bc7b (IsA headgear stable_gear) (STV 1.0 0.9091)) +(: cnet_isa_10040e2c9a (IsA headhunter recruiter) (STV 1.0 0.9091)) +(: cnet_isa_dd559fbe6d (IsA headhunter savage) (STV 1.0 0.9091)) +(: cnet_isa_45296bb999 (IsA heading line) (STV 1.0 0.9091)) +(: cnet_isa_0a802abb34 (IsA headlight light) (STV 1.0 0.9091)) +(: cnet_isa_27d6f43f8d (IsA headline heading) (STV 1.0 0.9091)) +(: cnet_isa_a934fdacff (IsA headliner performer) (STV 1.0 0.9091)) +(: cnet_isa_09e5ceb020 (IsA headlinese expressive_style) (STV 1.0 0.9091)) +(: cnet_isa_1324286741 (IsA headlock lock) (STV 1.0 0.9091)) +(: cnet_isa_a1dc9a6de0 (IsA headman leader) (STV 1.0 0.9091)) +(: cnet_isa_30150af5c9 (IsA headmaster principal) (STV 1.0 0.9091)) +(: cnet_isa_9ec78ba0bb (IsA headmastership headship) (STV 1.0 0.9091)) +(: cnet_isa_d8feae2853 (IsA headmistress principal) (STV 1.0 0.9091)) +(: cnet_isa_0109cb2eaf (IsA headmistressship headship) (STV 1.0 0.9091)) +(: cnet_isa_92a613eace (IsA headpiece helmet) (STV 1.0 0.9091)) +(: cnet_isa_94c6fe6138 (IsA headpin bowling_pin) (STV 1.0 0.9091)) +(: cnet_isa_acad629406 (IsA headquarter office) (STV 1.0 0.9091)) +(: cnet_isa_9a5afccb7b (IsA headquarter military_installation) (STV 1.0 0.9091)) +(: cnet_isa_57ae405b70 (IsA headquarter military_unit) (STV 1.0 0.9091)) +(: cnet_isa_eddceeb847 (IsA headquarter_staff staff) (STV 1.0 0.9091)) +(: cnet_isa_7e3bb63c1f (IsA headrace watercourse) (STV 1.0 0.9091)) +(: cnet_isa_17dbb024c9 (IsA headrest cushion) (STV 1.0 0.9091)) +(: cnet_isa_0c0d2dcb12 (IsA headrest rest) (STV 1.0 0.9091)) +(: cnet_isa_07d408a6ed (IsA headroom high_fidelity) (STV 1.0 0.9091)) +(: cnet_isa_fb2d07b82b (IsA headroom room) (STV 1.0 0.9091)) +(: cnet_isa_8629d09ccd (IsA head_up warning) (STV 1.0 0.9091)) +(: cnet_isa_81c246354f (IsA headsail sail) (STV 1.0 0.9091)) +(: cnet_isa_c19f5ebfc0 (IsA headscarf kerchief) (STV 1.0 0.9091)) +(: cnet_isa_666c55e4ad (IsA headset telephone_receiver) (STV 1.0 0.9091)) +(: cnet_isa_ffedd29348 (IsA headshake motion) (STV 1.0 0.9091)) +(: cnet_isa_b1d42b177b (IsA headship position) (STV 1.0 0.9091)) +(: cnet_isa_7706f6d960 (IsA headshot shooting) (STV 1.0 0.9091)) +(: cnet_isa_475f18ed19 (IsA headshot shot) (STV 1.0 0.9091)) +(: cnet_isa_6d597a86e4 (IsA headshot picture) (STV 1.0 0.9091)) +(: cnet_isa_1dc404ed83 (IsA headsman executioner) (STV 1.0 0.9091)) +(: cnet_isa_e6dfb7f9bf (IsA headspace indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_b5b1770a21 (IsA headstall band) (STV 1.0 0.9091)) +(: cnet_isa_e4e0735b7f (IsA headstand acrobatic_stunt) (STV 1.0 0.9091)) +(: cnet_isa_409010d761 (IsA headstock support) (STV 1.0 0.9091)) +(: cnet_isa_e33aba94bf (IsA headstream stream) (STV 1.0 0.9091)) +(: cnet_isa_4e2e81f6ea (IsA headwater beginning) (STV 1.0 0.9091)) +(: cnet_isa_c670459408 (IsA headway progress) (STV 1.0 0.9091)) +(: cnet_isa_aa6ff942de (IsA headwind wind) (STV 1.0 0.9091)) +(: cnet_isa_a2658b6c99 (IsA headword content_word) (STV 1.0 0.9091)) +(: cnet_isa_257ae63ebb (IsA headword word) (STV 1.0 0.9091)) +(: cnet_isa_288db8ca39 (IsA healing bodily_process) (STV 1.0 0.9091)) +(: cnet_isa_b4a6957dd6 (IsA health condition) (STV 1.0 0.9091)) +(: cnet_isa_1d5f7c8cae (IsA health wellbeing) (STV 1.0 0.9091)) +(: cnet_isa_2751c4a46c (IsA health_care social_insurance) (STV 1.0 0.9091)) +(: cnet_isa_2fe8b40e72 (IsA health_food food) (STV 1.0 0.9091)) +(: cnet_isa_303fae91ee (IsA health_hazard hazard) (STV 1.0 0.9091)) +(: cnet_isa_7d80cd5401 (IsA health_insurance insurance) (STV 1.0 0.9091)) +(: cnet_isa_e9f04f50bd (IsA health_maintenance_organization health_insurance) (STV 1.0 0.9091)) +(: cnet_isa_c112111937 (IsA health_profession profession) (STV 1.0 0.9091)) +(: cnet_isa_11b0ad0d13 (IsA health_professional professional) (STV 1.0 0.9091)) +(: cnet_isa_373ea051f5 (IsA health_spa place_of_business) (STV 1.0 0.9091)) +(: cnet_isa_a5a51aa144 (IsA healthcare care) (STV 1.0 0.9091)) +(: cnet_isa_3cde3f648a (IsA healthcare_delivery provision) (STV 1.0 0.9091)) +(: cnet_isa_aeb6260be1 (IsA healthfulness wholesomeness) (STV 1.0 0.9091)) +(: cnet_isa_86b285104c (IsA hearer perceiver) (STV 1.0 0.9091)) +(: cnet_isa_14f0ae8e12 (IsA hearing exteroception) (STV 1.0 0.9091)) +(: cnet_isa_10fc3ae544 (IsA hearing modality) (STV 1.0 0.9091)) +(: cnet_isa_bd50e4e428 (IsA hearing session) (STV 1.0 0.9091)) +(: cnet_isa_fb250de6f3 (IsA hearing proceeding) (STV 1.0 0.9091)) +(: cnet_isa_758067ace5 (IsA hearing opportunity) (STV 1.0 0.9091)) +(: cnet_isa_275d731b58 (IsA hearing_aid acoustic_device) (STV 1.0 0.9091)) +(: cnet_isa_675c3462d3 (IsA hearing_aid electronic_device) (STV 1.0 0.9091)) +(: cnet_isa_5d8b3e49d3 (IsA hearing_dog working_dog) (STV 1.0 0.9091)) +(: cnet_isa_84190aa0fe (IsA hearing_examiner official) (STV 1.0 0.9091)) +(: cnet_isa_c11eb919d9 (IsA hearing_impairment disability) (STV 1.0 0.9091)) +(: cnet_isa_3f4a13eebd (IsA hearsay_evidence evidence) (STV 1.0 0.9091)) +(: cnet_isa_bb0e389611 (IsA hearsay_rule rule_of_evidence) (STV 1.0 0.9091)) +(: cnet_isa_c1c2779b98 (IsA hearse motor_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_21e8a643f3 (IsA heart beating) (STV 1.0 0.9091)) +(: cnet_isa_4a73ca312f (IsA heart essential_organ) (STV 1.0 0.9091)) +(: cnet_isa_02f89fd78f (IsA heart muscle) (STV 1.0 0.9636)) +(: cnet_isa_3be0932484 (IsA heart pump_for_blood) (STV 1.0 0.9339)) +(: cnet_isa_45ad763ef2 (IsA heart shape) (STV 1.0 0.9091)) +(: cnet_isa_fca6ef752a (IsA heart playing_card) (STV 1.0 0.9091)) +(: cnet_isa_e03f354ea8 (IsA heart courage) (STV 1.0 0.9091)) +(: cnet_isa_359e159bd5 (IsA heart disposition) (STV 1.0 0.9091)) +(: cnet_isa_5bbc9169b1 (IsA heart internal_organ) (STV 1.0 0.9091)) +(: cnet_isa_ea40549842 (IsA heart intuition) (STV 1.0 0.9091)) +(: cnet_isa_a20eb7b39f (IsA heart variety_meat) (STV 1.0 0.9091)) +(: cnet_isa_b86e5c0940 (IsA heart plane_figure) (STV 1.0 0.9091)) +(: cnet_isa_7d1e7f9f18 (IsA heart_attack attack) (STV 1.0 0.9091)) +(: cnet_isa_4dcee20429 (IsA heart_attack heart_failure) (STV 1.0 0.9091)) +(: cnet_isa_407534988d (IsA heart_block cardiac_arrhythmia) (STV 1.0 0.9091)) +(: cnet_isa_9853e28f71 (IsA heart_cherry sweet_cherry) (STV 1.0 0.9091)) +(: cnet_isa_8ca6fafe2d (IsA heart_disease cardiovascular_disease) (STV 1.0 0.9091)) +(: cnet_isa_871602be40 (IsA heart_failure failure) (STV 1.0 0.9091)) +(: cnet_isa_1612a1b9c6 (IsA heart_failure heart_disease) (STV 1.0 0.9091)) +(: cnet_isa_1efa23fa0f (IsA heart_leaved_aster wood_aster) (STV 1.0 0.9091)) +(: cnet_isa_1915c8d80c (IsA heart_lung_machine pump) (STV 1.0 0.9091)) +(: cnet_isa_23861c0d0f (IsA heart_murmur symptom) (STV 1.0 0.9091)) +(: cnet_isa_a24b33b846 (IsA heart_surgery operation) (STV 1.0 0.9091)) +(: cnet_isa_09885e2369 (IsA heart_to_heart talk) (STV 1.0 0.9091)) +(: cnet_isa_7230285247 (IsA heart_urchin sea_urchin) (STV 1.0 0.9091)) +(: cnet_isa_c6f4c024f8 (IsA heart_valve implant) (STV 1.0 0.9091)) +(: cnet_isa_bf8a213e56 (IsA heart_valve valve) (STV 1.0 0.9091)) +(: cnet_isa_04a36fa65d (IsA heartbeat force) (STV 1.0 0.9091)) +(: cnet_isa_adc87845f7 (IsA heartbreaker defeat) (STV 1.0 0.9091)) +(: cnet_isa_f6bc84beae (IsA heartbreaker charmer) (STV 1.0 0.9091)) +(: cnet_isa_134595a9e5 (IsA heartburn symptom) (STV 1.0 0.9091)) +(: cnet_isa_fb7e135bb6 (IsA heartburning resentment) (STV 1.0 0.9091)) +(: cnet_isa_ea78d9549e (IsA hearth dwelling) (STV 1.0 0.9091)) +(: cnet_isa_70568bfff0 (IsA hearth area) (STV 1.0 0.9091)) +(: cnet_isa_bd27ed85e1 (IsA hearth_money offering) (STV 1.0 0.9091)) +(: cnet_isa_bf33046c64 (IsA hearthrug rug) (STV 1.0 0.9091)) +(: cnet_isa_5f311785a6 (IsA hearthstone stone) (STV 1.0 0.9091)) +(: cnet_isa_54a4fdec62 (IsA heartiness sincerity) (STV 1.0 0.9091)) +(: cnet_isa_b67192a0a2 (IsA heartland region) (STV 1.0 0.9091)) +(: cnet_isa_68f4ac59b9 (IsA heartleaf herb) (STV 1.0 0.9091)) +(: cnet_isa_0b8dbdc874 (IsA heartleaf wild_ginger) (STV 1.0 0.9091)) +(: cnet_isa_f6832bc426 (IsA heartleaf_arnica wildflower) (STV 1.0 0.9091)) +(: cnet_isa_6fe4bbe26c (IsA heartleaf_manzanita manzanita) (STV 1.0 0.9091)) +(: cnet_isa_ddc950de87 (IsA heartlessness unconcern) (STV 1.0 0.9091)) +(: cnet_isa_ae70a3064e (IsA heartrot plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_ad44151eaa (IsA heart whist) (STV 1.0 0.9091)) +(: cnet_isa_cf54359534 (IsA heartseed soapberry_vine) (STV 1.0 0.9091)) +(: cnet_isa_9a6faa755f (IsA heartstring compassion) (STV 1.0 0.9091)) +(: cnet_isa_a14916b7a7 (IsA heartstring love) (STV 1.0 0.9091)) +(: cnet_isa_957468ac50 (IsA heartthrob idol) (STV 1.0 0.9091)) +(: cnet_isa_a8c2203bb8 (IsA heartwood wood) (STV 1.0 0.9091)) +(: cnet_isa_6d813046df (IsA heat energy) (STV 1.0 0.9572)) +(: cnet_isa_6c036d227f (IsA heat form_of_energy) (STV 1.0 0.9339)) +(: cnet_isa_5b01c2645a (IsA heat emotionality) (STV 1.0 0.9091)) +(: cnet_isa_96486015cb (IsA heat temperature) (STV 1.0 0.9091)) +(: cnet_isa_82a469f078 (IsA heat race) (STV 1.0 0.9091)) +(: cnet_isa_dbcf91e55a (IsA heat_content physical_property) (STV 1.0 0.9091)) +(: cnet_isa_11e555097d (IsA heat_dissipation cooling) (STV 1.0 0.9091)) +(: cnet_isa_712fb0db35 (IsA heat_engine engine) (STV 1.0 0.9091)) +(: cnet_isa_b89a65832a (IsA heat_exchanger device) (STV 1.0 0.9091)) +(: cnet_isa_17018be5cb (IsA heat_exhaustion heatstroke) (STV 1.0 0.9091)) +(: cnet_isa_6965a0f713 (IsA heat_flash flash) (STV 1.0 0.9091)) +(: cnet_isa_cadb69b875 (IsA heat_lamp electric_heater) (STV 1.0 0.9091)) +(: cnet_isa_16bcbca48b (IsA heat_lightning lightning) (STV 1.0 0.9091)) +(: cnet_isa_746b74a2ce (IsA heat_of_condensation latent_heat) (STV 1.0 0.9091)) +(: cnet_isa_984228fc34 (IsA heat_of_dissociation heat) (STV 1.0 0.9091)) +(: cnet_isa_024d9beeae (IsA heat_of_formation heat) (STV 1.0 0.9091)) +(: cnet_isa_342e597a5c (IsA heat_of_fusion latent_heat) (STV 1.0 0.9091)) +(: cnet_isa_259f5153e9 (IsA heat_of_solidification latent_heat) (STV 1.0 0.9091)) +(: cnet_isa_05dfda9951 (IsA heat_of_solution heat) (STV 1.0 0.9091)) +(: cnet_isa_35e79d8912 (IsA heat_of_sublimation latent_heat) (STV 1.0 0.9091)) +(: cnet_isa_78bc553084 (IsA heat_of_vaporization latent_heat) (STV 1.0 0.9091)) +(: cnet_isa_2b5672a05f (IsA heat_pump apparatus) (STV 1.0 0.9091)) +(: cnet_isa_91f49790b3 (IsA heat_ray beam) (STV 1.0 0.9091)) +(: cnet_isa_dd53a1669c (IsA heat_seeking_missile missile) (STV 1.0 0.9091)) +(: cnet_isa_e9c3d9b786 (IsA heat_shield protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_ec7cb34707 (IsA heat_sink conductor) (STV 1.0 0.9091)) +(: cnet_isa_fdf3a626c9 (IsA heat_sink sink) (STV 1.0 0.9091)) +(: cnet_isa_5cf4b77e7f (IsA heat_wave wave) (STV 1.0 0.9091)) +(: cnet_isa_d20085ef6a (IsA heater device) (STV 1.0 0.9091)) +(: cnet_isa_25e59479be (IsA heath barren) (STV 1.0 0.9091)) +(: cnet_isa_bef112dd23 (IsA heath shrub) (STV 1.0 0.9091)) +(: cnet_isa_d3b3444ef4 (IsA heath_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_aa02aa0424 (IsA heath_hen prairie_chicken) (STV 1.0 0.9091)) +(: cnet_isa_ed30c20c0c (IsA heath_pea vine) (STV 1.0 0.9091)) +(: cnet_isa_5b37db71a4 (IsA heathen nonreligious_person) (STV 1.0 0.9091)) +(: cnet_isa_11b6dcce11 (IsA heather heath) (STV 1.0 0.9091)) +(: cnet_isa_dcb5445bc8 (IsA heather_mixture color) (STV 1.0 0.9091)) +(: cnet_isa_a1a7d5e20e (IsA heating temperature_change) (STV 1.0 0.9091)) +(: cnet_isa_b1c706bd7e (IsA heating_element component) (STV 1.0 0.9091)) +(: cnet_isa_76246dbf7e (IsA heating_pad heater) (STV 1.0 0.9091)) +(: cnet_isa_34ce2536b9 (IsA heating_system utility) (STV 1.0 0.9091)) +(: cnet_isa_54a8a30e42 (IsA heatstroke collapse) (STV 1.0 0.9091)) +(: cnet_isa_0e7c84e9d2 (IsA heaume helmet) (STV 1.0 0.9091)) +(: cnet_isa_97efccf140 (IsA heave rise) (STV 1.0 0.9091)) +(: cnet_isa_0a99c3fda3 (IsA heave spasm) (STV 1.0 0.9091)) +(: cnet_isa_f40057a279 (IsA heave throw) (STV 1.0 0.9091)) +(: cnet_isa_f3efcf8ff6 (IsA heave movement) (STV 1.0 0.9091)) +(: cnet_isa_a926ac41ae (IsA heaven thing) (STV 1.0 0.9091)) +(: cnet_isa_785fee4711 (IsA heaven imaginary_place) (STV 1.0 0.9091)) +(: cnet_isa_f3ef674b30 (IsA heaver bar) (STV 1.0 0.9091)) +(: cnet_isa_bc70305f4d (IsA heaver workman) (STV 1.0 0.9091)) +(: cnet_isa_68524f1d20 (IsA heave animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_13d4c62941 (IsA heavier_than_air_craft aircraft) (STV 1.0 0.9091)) +(: cnet_isa_a7164ec7d2 (IsA heaviness weight) (STV 1.0 0.9091)) +(: cnet_isa_47d6e185bc (IsA heaviness sadness) (STV 1.0 0.9091)) +(: cnet_isa_f49d679fcb (IsA heavy character) (STV 1.0 0.9091)) +(: cnet_isa_e3df88bafb (IsA heavy actor) (STV 1.0 0.9091)) +(: cnet_isa_b08927403d (IsA heavy_cream cream) (STV 1.0 0.9091)) +(: cnet_isa_f860f449a3 (IsA heavy_hitter important_person) (STV 1.0 0.9091)) +(: cnet_isa_934c668b82 (IsA heavy_lifting work) (STV 1.0 0.9091)) +(: cnet_isa_a72d64ebf0 (IsA heavy_metal metal) (STV 1.0 0.9091)) +(: cnet_isa_3349d21f9e (IsA heavy_metal rock_n_roll) (STV 1.0 0.9091)) +(: cnet_isa_a52912fa62 (IsA heavy_metal alloy) (STV 1.0 0.9091)) +(: cnet_isa_4b70af7179 (IsA heavy_metal metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_a1d4ee995c (IsA heavy_spar mineral) (STV 1.0 0.9091)) +(: cnet_isa_d248e3ab8c (IsA heavy_water moderator) (STV 1.0 0.9091)) +(: cnet_isa_0d67799b3c (IsA heavyheartedness melancholy) (STV 1.0 0.9091)) +(: cnet_isa_3397f67474 (IsA heavyweight boxer) (STV 1.0 0.9091)) +(: cnet_isa_d1cd184ee1 (IsA heavyweight prizefighter) (STV 1.0 0.9091)) +(: cnet_isa_d7185c09b5 (IsA heavyweight wrestler) (STV 1.0 0.9091)) +(: cnet_isa_4f5135577e (IsA hebephrenia schizophrenia) (STV 1.0 0.9091)) +(: cnet_isa_0c4acea5f0 (IsA hebetude lethargy) (STV 1.0 0.9091)) +(: cnet_isa_c15c5c542a (IsA hebraist linguist) (STV 1.0 0.9091)) +(: cnet_isa_69ad014c7b (IsA hebrew human_language) (STV 1.0 0.9091)) +(: cnet_isa_a73db20310 (IsA hebrew canaanitic) (STV 1.0 0.9091)) +(: cnet_isa_ef44daa551 (IsA hebrew_alphabet alphabet) (STV 1.0 0.9091)) +(: cnet_isa_f03fc98ab1 (IsA hebrew_alphabet unicameral_script) (STV 1.0 0.9091)) +(: cnet_isa_4fe833ec52 (IsA hebrew_lesson language_lesson) (STV 1.0 0.9091)) +(: cnet_isa_96e0dda6db (IsA hebrew chosen_people) (STV 1.0 0.9091)) +(: cnet_isa_ccd4a51dda (IsA hebrew ethnic_group) (STV 1.0 0.9091)) +(: cnet_isa_66059b7845 (IsA hecatomb sacrifice) (STV 1.0 0.9091)) +(: cnet_isa_15c8e84ebb (IsA heckelphone oboe) (STV 1.0 0.9091)) +(: cnet_isa_ae749713e1 (IsA heckler troublemaker) (STV 1.0 0.9091)) +(: cnet_isa_0d3727b825 (IsA heckling break) (STV 1.0 0.9091)) +(: cnet_isa_14cb33690f (IsA hectare area_unit) (STV 1.0 0.9091)) +(: cnet_isa_6735a14802 (IsA hectogram metric_weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_68d14fd764 (IsA hectograph collotype) (STV 1.0 0.9091)) +(: cnet_isa_71fcbcc33d (IsA hectograph duplicator) (STV 1.0 0.9091)) +(: cnet_isa_55d826d877 (IsA hectoliter metric_capacity_unit) (STV 1.0 0.9091)) +(: cnet_isa_cb4804b5d4 (IsA hectometer metric_linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_c5468a712d (IsA hedeoma asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0ed60778a3 (IsA hedera rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4ffe34945e (IsA hedge fence) (STV 1.0 0.9091)) +(: cnet_isa_6fea7f69b4 (IsA hedge evasion) (STV 1.0 0.9091)) +(: cnet_isa_83267462e7 (IsA hedge security) (STV 1.0 0.9091)) +(: cnet_isa_dd27beb1a4 (IsA hedge_bindweed bindweed) (STV 1.0 0.9091)) +(: cnet_isa_0236105a08 (IsA hedge_fund investment_company) (STV 1.0 0.9091)) +(: cnet_isa_ac463d1308 (IsA hedge_maple maple) (STV 1.0 0.9091)) +(: cnet_isa_6de73ada9c (IsA hedge_mustard herb) (STV 1.0 0.9091)) +(: cnet_isa_4deb599b5e (IsA hedge_nettle herb) (STV 1.0 0.9091)) +(: cnet_isa_be6bc0e2be (IsA hedge_sparrow accentor) (STV 1.0 0.9091)) +(: cnet_isa_89b47aada9 (IsA hedge_thorn carissa) (STV 1.0 0.9091)) +(: cnet_isa_9f432275e2 (IsA hedge_trimmer garden_tool) (STV 1.0 0.9091)) +(: cnet_isa_6a56e7ffee (IsA hedge_violet violet) (STV 1.0 0.9091)) +(: cnet_isa_605dd26d04 (IsA hedgehog insectivore) (STV 1.0 0.9091)) +(: cnet_isa_3313ca774e (IsA hedgehog_cactus echinocactus) (STV 1.0 0.9091)) +(: cnet_isa_1483c51b00 (IsA hedgehog_cereus cactus) (STV 1.0 0.9091)) +(: cnet_isa_b9490b0bae (IsA hedger gardener) (STV 1.0 0.9091)) +(: cnet_isa_d62e7d8537 (IsA hedger respondent) (STV 1.0 0.9091)) +(: cnet_isa_094ec844fb (IsA hedger speculator) (STV 1.0 0.9091)) +(: cnet_isa_4346efb723 (IsA hedonism ethic) (STV 1.0 0.9091)) +(: cnet_isa_ca2f63332a (IsA hedonism ethical_motive) (STV 1.0 0.9091)) +(: cnet_isa_1eb0884f01 (IsA hedonist sensualist) (STV 1.0 0.9091)) +(: cnet_isa_665d33ca1b (IsA hedysarum rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_bce67d93c4 (IsA hee_haw laugh) (STV 1.0 0.9091)) +(: cnet_isa_401f853745 (IsA heedlessness imprudence) (STV 1.0 0.9091)) +(: cnet_isa_a46231787a (IsA heel bottom) (STV 1.0 0.9091)) +(: cnet_isa_625b998d84 (IsA heel end) (STV 1.0 0.9091)) +(: cnet_isa_07017a802a (IsA heel skeletal_structure) (STV 1.0 0.9091)) +(: cnet_isa_f9e9d8662c (IsA heel part) (STV 1.0 0.9091)) +(: cnet_isa_525027d7de (IsA heelbone bone) (STV 1.0 0.9091)) +(: cnet_isa_3955e43d30 (IsA heft heaviness) (STV 1.0 0.9091)) +(: cnet_isa_1c01c6aae0 (IsA hegari grain_sorghum) (STV 1.0 0.9091)) +(: cnet_isa_9b86510b15 (IsA hegelian follower) (STV 1.0 0.9091)) +(: cnet_isa_532e5b9b4d (IsA hegemon world_power) (STV 1.0 0.9091)) +(: cnet_isa_1ee3c16e55 (IsA hegemony political_system) (STV 1.0 0.9091)) +(: cnet_isa_605a3ca785 (IsA heifer cow) (STV 1.0 0.9091)) +(: cnet_isa_9f6c13a152 (IsA heifer young_mammal) (STV 1.0 0.9091)) +(: cnet_isa_526667a5a8 (IsA height dimension) (STV 1.0 0.9091)) +(: cnet_isa_c9593f1789 (IsA heimlich_maneuver emergency_procedure) (STV 1.0 0.9091)) +(: cnet_isa_ad33738942 (IsA heir recipient) (STV 1.0 0.9091)) +(: cnet_isa_bd2b394492 (IsA heir_apparent heir) (STV 1.0 0.9091)) +(: cnet_isa_baa4e7d849 (IsA heir_at_law heir) (STV 1.0 0.9091)) +(: cnet_isa_da54439339 (IsA heir_presumptive heir) (STV 1.0 0.9091)) +(: cnet_isa_7206767b94 (IsA heiress heir) (STV 1.0 0.9091)) +(: cnet_isa_99b00a23d6 (IsA heirloom property) (STV 1.0 0.9091)) +(: cnet_isa_c8863c69e2 (IsA heirloom inheritance) (STV 1.0 0.9091)) +(: cnet_isa_0c4b930f78 (IsA heist robbery) (STV 1.0 0.9091)) +(: cnet_isa_8da728f11c (IsA hel imaginary_place) (STV 1.0 0.9091)) +(: cnet_isa_6b000f396a (IsA helenium asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7874ea3566 (IsA heliamphora dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_80f9e42061 (IsA helianthemum shrub) (STV 1.0 0.9091)) +(: cnet_isa_1b1add6e8d (IsA helichrysum asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_deb4c4b07b (IsA helicidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_2f1c46be79 (IsA helicon bass_horn) (STV 1.0 0.9091)) +(: cnet_isa_0de1a59f90 (IsA helicopter heavier_than_air_craft) (STV 1.0 0.9091)) +(: cnet_isa_c3238f1c5a (IsA helictere dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_eb17bdde20 (IsA heliobacter bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_2fd388f70c (IsA heliobacter_pylori bacteria_specy) (STV 1.0 0.9091)) +(: cnet_isa_32ece67373 (IsA heliocentric_parallax parallax) (STV 1.0 0.9091)) +(: cnet_isa_acb86f5adb (IsA heliogram message) (STV 1.0 0.9091)) +(: cnet_isa_588710c799 (IsA heliograph apparatus) (STV 1.0 0.9091)) +(: cnet_isa_418dc227c6 (IsA heliolatry worship) (STV 1.0 0.9091)) +(: cnet_isa_3b7f18f3a7 (IsA heliometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_cc15a79680 (IsA heliopause boundary) (STV 1.0 0.9091)) +(: cnet_isa_7250e54ef5 (IsA heliophila flower) (STV 1.0 0.9091)) +(: cnet_isa_fc310c94cd (IsA heliopsis wildflower) (STV 1.0 0.9091)) +(: cnet_isa_2a2955d99e (IsA heliosphere region) (STV 1.0 0.9091)) +(: cnet_isa_f4d57e625a (IsA heliotherapy therapy) (STV 1.0 0.9091)) +(: cnet_isa_623e233685 (IsA heliothis arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_12ffa72617 (IsA heliothis_moth noctuid_moth) (STV 1.0 0.9091)) +(: cnet_isa_ad9306e3a2 (IsA heliotropism tropism) (STV 1.0 0.9091)) +(: cnet_isa_df96411a4f (IsA heliozoa animal_order) (STV 1.0 0.9091)) +(: cnet_isa_a660ec9a08 (IsA heliozoan actinopod) (STV 1.0 0.9091)) +(: cnet_isa_2b8377af6b (IsA heliport airport) (STV 1.0 0.9091)) +(: cnet_isa_0abc83f9ae (IsA helipterum asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ca75001d3e (IsA helium element) (STV 1.0 0.9091)) +(: cnet_isa_89ecad1323 (IsA helium gas) (STV 1.0 0.9636)) +(: cnet_isa_d36c0094d6 (IsA helium lighter_than_air) (STV 1.0 0.9454)) +(: cnet_isa_3c557113a0 (IsA helium noble_gas) (STV 1.0 0.9091)) +(: cnet_isa_555f5f5822 (IsA helium chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_7b087ae903 (IsA helium_group sery) (STV 1.0 0.9091)) +(: cnet_isa_b864db608e (IsA helix mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_3b70abae67 (IsA helix curve) (STV 1.0 0.9091)) +(: cnet_isa_50c53c5037 (IsA helix_angle angle) (STV 1.0 0.9091)) +(: cnet_isa_358535f86f (IsA helix_hortensis garden_snail) (STV 1.0 0.9091)) +(: cnet_isa_0391a0c99b (IsA hell bad_place) (STV 1.0 0.9091)) +(: cnet_isa_0a47a6253d (IsA hell mischief) (STV 1.0 0.9091)) +(: cnet_isa_7dd5d27240 (IsA hell imaginary_place) (STV 1.0 0.9091)) +(: cnet_isa_19e67b14fa (IsA hell trouble) (STV 1.0 0.9091)) +(: cnet_isa_2f83f372d7 (IsA hell region) (STV 1.0 0.9091)) +(: cnet_isa_331c1828b8 (IsA hell_kite combatant) (STV 1.0 0.9091)) +(: cnet_isa_e6b3817f4e (IsA hell_to_pay consequence) (STV 1.0 0.9091)) +(: cnet_isa_c778f878f2 (IsA helladic_civilization culture) (STV 1.0 0.9091)) +(: cnet_isa_09cac000b4 (IsA hellbender salamander) (STV 1.0 0.9091)) +(: cnet_isa_8707f1fd69 (IsA hellebore liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_ce61b046fd (IsA hellebore poisonous_plant) (STV 1.0 0.9091)) +(: cnet_isa_5e149f88b5 (IsA helleborine orchid) (STV 1.0 0.9091)) +(: cnet_isa_529e74e506 (IsA helleborus magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2abeabc9b2 (IsA hellene european) (STV 1.0 0.9091)) +(: cnet_isa_6738915354 (IsA hellenism principle) (STV 1.0 0.9091)) +(: cnet_isa_b937c8f519 (IsA hellfire hell) (STV 1.0 0.9091)) +(: cnet_isa_c8e60a8ed0 (IsA hellgrammiate larva) (STV 1.0 0.9091)) +(: cnet_isa_68e748728c (IsA hellhound mythical_monster) (STV 1.0 0.9091)) +(: cnet_isa_53c4c10cb7 (IsA hellhound troublemaker) (STV 1.0 0.9091)) +(: cnet_isa_0658401ded (IsA hellion troublemaker) (STV 1.0 0.9091)) +(: cnet_isa_1ac1e4ac79 (IsA hello greeting) (STV 1.0 0.9454)) +(: cnet_isa_cf8ffc5bc7 (IsA helm leadership) (STV 1.0 0.9091)) +(: cnet_isa_c9e6111e9d (IsA helm steering_system) (STV 1.0 0.9091)) +(: cnet_isa_7cdb001b3f (IsA helmet hat) (STV 1.0 0.9339)) +(: cnet_isa_c01a4f0967 (IsA helmet armor_plate) (STV 1.0 0.9091)) +(: cnet_isa_c202f2308d (IsA helmet headdress) (STV 1.0 0.9091)) +(: cnet_isa_3c3ca8c683 (IsA helmet_orchid orchid) (STV 1.0 0.9091)) +(: cnet_isa_0984a8daae (IsA helmetflower herb) (STV 1.0 0.9091)) +(: cnet_isa_730c189589 (IsA helmetflower orchid) (STV 1.0 0.9091)) +(: cnet_isa_691b61eedd (IsA helminth worm) (STV 1.0 0.9091)) +(: cnet_isa_1df4b79284 (IsA helminthiasis infestation) (STV 1.0 0.9091)) +(: cnet_isa_73728916fe (IsA helminthostachy fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_bc5ab4967a (IsA helmsman mariner) (STV 1.0 0.9091)) +(: cnet_isa_5a7a66a444 (IsA heloderma reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_a2ac624dad (IsA helodermatidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_77eaf42ccd (IsA helotiaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_5c7ac667da (IsA helotiale fungus_order) (STV 1.0 0.9091)) +(: cnet_isa_24cd3d8a20 (IsA helotium fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_e3f55dcc07 (IsA help_desk service) (STV 1.0 0.9091)) +(: cnet_isa_ad556ba517 (IsA helper_t_cell t_cell) (STV 1.0 0.9091)) +(: cnet_isa_aa9b25d3de (IsA helpfulness utility) (STV 1.0 0.9091)) +(: cnet_isa_186c6491f4 (IsA helping small_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_94af478a04 (IsA helplessness powerlessness) (STV 1.0 0.9091)) +(: cnet_isa_d63809386f (IsA helplessness depression) (STV 1.0 0.9091)) +(: cnet_isa_ea2b655a47 (IsA helplessness dependence) (STV 1.0 0.9091)) +(: cnet_isa_90166f97dc (IsA helpmate spouse) (STV 1.0 0.9091)) +(: cnet_isa_6f8091243c (IsA helvella false_morel) (STV 1.0 0.9091)) +(: cnet_isa_b35cb03929 (IsA helvella_acetabulum helvella) (STV 1.0 0.9091)) +(: cnet_isa_919926ce83 (IsA helvella_crispa helvella) (STV 1.0 0.9091)) +(: cnet_isa_14422b9e5e (IsA helvella_sulcata helvella) (STV 1.0 0.9091)) +(: cnet_isa_b8d3c3f4f2 (IsA helvellaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_03d6b6b3e7 (IsA helvetian swiss_people) (STV 1.0 0.9091)) +(: cnet_isa_a115ce7a41 (IsA helwingia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_705dd6c3a9 (IsA helxine dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_65ba6fe681 (IsA hem edge) (STV 1.0 0.9091)) +(: cnet_isa_c98b3c9e99 (IsA hemachatus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_9ce07c4610 (IsA hemagglutination agglutination) (STV 1.0 0.9091)) +(: cnet_isa_dd9b7d98b4 (IsA hemal_arch arch) (STV 1.0 0.9091)) +(: cnet_isa_3753801837 (IsA hemangioma angioma) (STV 1.0 0.9091)) +(: cnet_isa_bac3b402c0 (IsA hematemesis vomit) (STV 1.0 0.9091)) +(: cnet_isa_a1544ac2cd (IsA hematinic medicine) (STV 1.0 0.9091)) +(: cnet_isa_d796b497f1 (IsA hematite iron_ore) (STV 1.0 0.9091)) +(: cnet_isa_a61222330a (IsA hematocele swelling) (STV 1.0 0.9091)) +(: cnet_isa_80757e10cc (IsA hematochezia defecation) (STV 1.0 0.9091)) +(: cnet_isa_77fed2d5f1 (IsA hematochrome coloring_material) (STV 1.0 0.9091)) +(: cnet_isa_982e0e1986 (IsA hematocolpometra disorder) (STV 1.0 0.9091)) +(: cnet_isa_c28b76cdfc (IsA hematocolpo disorder) (STV 1.0 0.9091)) +(: cnet_isa_a00952ccab (IsA hematocrit centrifuge) (STV 1.0 0.9091)) +(: cnet_isa_e3c23b94c0 (IsA hematocrit measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_4e1f8b7d9e (IsA hematocrit ratio) (STV 1.0 0.9091)) +(: cnet_isa_4ed1c52a77 (IsA hematocytopenia cytopenia) (STV 1.0 0.9091)) +(: cnet_isa_70e5aeb07c (IsA hematocyturia hematuria) (STV 1.0 0.9091)) +(: cnet_isa_3b516a6ab5 (IsA hematologist specialist) (STV 1.0 0.9091)) +(: cnet_isa_122cbefd62 (IsA hematology medicine) (STV 1.0 0.9091)) +(: cnet_isa_a4a06ce303 (IsA hematoma intumescence) (STV 1.0 0.9091)) +(: cnet_isa_753bd4fde4 (IsA hematopoeitic_stem_cell stem_cell) (STV 1.0 0.9091)) +(: cnet_isa_a8587bcd8e (IsA hematopoiesis organic_process) (STV 1.0 0.9091)) +(: cnet_isa_c1c1ce7f7b (IsA hematuria symptom) (STV 1.0 0.9091)) +(: cnet_isa_da585228d2 (IsA heme pigment) (STV 1.0 0.9091)) +(: cnet_isa_0918511665 (IsA hemeralopia visual_impairment) (STV 1.0 0.9091)) +(: cnet_isa_6eb8490505 (IsA hemerobiidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_aaaf9f1d67 (IsA hemerocallidaceae liliid_monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_82fccd0dc6 (IsA hemerocallis liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_096168e06c (IsA hemiacetal organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_1018657904 (IsA hemianopia visual_impairment) (STV 1.0 0.9091)) +(: cnet_isa_983282c140 (IsA hemianopic_scotoma scotoma) (STV 1.0 0.9091)) +(: cnet_isa_1382bc994d (IsA hemiascomycete class) (STV 1.0 0.9091)) +(: cnet_isa_7eeebead43 (IsA hemiepiphyte air_plant) (STV 1.0 0.9091)) +(: cnet_isa_515b004ad8 (IsA hemigalus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_c6d938d432 (IsA hemigrammus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_ef73774b94 (IsA hemimetamorphosis metamorphosis) (STV 1.0 0.9091)) +(: cnet_isa_f80c60d2f1 (IsA hemimorphite mineral) (STV 1.0 0.9091)) +(: cnet_isa_d2a30aff90 (IsA hemin chloride) (STV 1.0 0.9091)) +(: cnet_isa_243e1cf55e (IsA hemiparasite parasitic_plant) (STV 1.0 0.9091)) +(: cnet_isa_47167e9863 (IsA hemiplegia paralysis) (STV 1.0 0.9091)) +(: cnet_isa_4f54cd4194 (IsA hemiplegic handicapped_person) (STV 1.0 0.9091)) +(: cnet_isa_863ec15723 (IsA hemiprocnidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_e0e3f08cd4 (IsA hemiptera animal_order) (STV 1.0 0.9091)) +(: cnet_isa_847d1cbda6 (IsA hemipteronatus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_5ba19acc30 (IsA hemipterous_insect insect) (STV 1.0 0.9091)) +(: cnet_isa_11051d4473 (IsA hemiramphidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_0009ca6d28 (IsA hemisphere neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_97312444d0 (IsA hemisphere geographical_area) (STV 1.0 0.9091)) +(: cnet_isa_a202cad039 (IsA hemisphere subfigure) (STV 1.0 0.9091)) +(: cnet_isa_7f9009bfc9 (IsA hemitripterus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_ec8502e377 (IsA hemizygo_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_a010229505 (IsA hemline line) (STV 1.0 0.9091)) +(: cnet_isa_b68a7af70a (IsA hemlock conifer) (STV 1.0 0.9091)) +(: cnet_isa_6411c31195 (IsA hemlock poisonous_plant) (STV 1.0 0.9091)) +(: cnet_isa_5a175e1863 (IsA hemlock wood) (STV 1.0 0.9091)) +(: cnet_isa_00edc103c3 (IsA hemlock plant_toxin) (STV 1.0 0.9091)) +(: cnet_isa_8db91c13cc (IsA hemming_stitch embroidery_stitch) (STV 1.0 0.9091)) +(: cnet_isa_8cce3db897 (IsA hemochromatosis pathology) (STV 1.0 0.9091)) +(: cnet_isa_b4085c003b (IsA hemodialysis dialysis) (STV 1.0 0.9091)) +(: cnet_isa_4f9a16a9ed (IsA hemodynamic physiology) (STV 1.0 0.9091)) +(: cnet_isa_fc3ef49ab7 (IsA hemoglobin chemical) (STV 1.0 0.9339)) +(: cnet_isa_8ea932381f (IsA hemoglobin complex_molecule) (STV 1.0 0.9091)) +(: cnet_isa_c12cd0b76f (IsA hemoglobin organic_chemical) (STV 1.0 0.9091)) +(: cnet_isa_712093889d (IsA hemoglobin pigment) (STV 1.0 0.9091)) +(: cnet_isa_60efafa991 (IsA hemoglobin hemoprotein) (STV 1.0 0.9091)) +(: cnet_isa_00513d4f75 (IsA hemoglobinemia symptom) (STV 1.0 0.9091)) +(: cnet_isa_a4a4df0128 (IsA hemoglobinopathy blood_disease) (STV 1.0 0.9091)) +(: cnet_isa_8505355b1c (IsA hemoglobinuria symptom) (STV 1.0 0.9091)) +(: cnet_isa_1406e5eca4 (IsA hemolysin organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_cd99e1098e (IsA hemolysis lysis) (STV 1.0 0.9091)) +(: cnet_isa_00ac88193d (IsA hemolytic_anemia anemia) (STV 1.0 0.9091)) +(: cnet_isa_378d07b991 (IsA hemophilia blood_disease) (STV 1.0 0.9091)) +(: cnet_isa_daa838af34 (IsA hemophilia hemophilia) (STV 1.0 0.9091)) +(: cnet_isa_d8ea973349 (IsA hemophilia sex_linked_disorder) (STV 1.0 0.9091)) +(: cnet_isa_1d0f0840d0 (IsA hemophilia_b hemophilia) (STV 1.0 0.9091)) +(: cnet_isa_7830ed78a2 (IsA hemophiliac sick_person) (STV 1.0 0.9091)) +(: cnet_isa_d57c8e2ce6 (IsA hemoprotein conjugated_protein) (STV 1.0 0.9091)) +(: cnet_isa_f608b94990 (IsA hemoptysis symptom) (STV 1.0 0.9091)) +(: cnet_isa_000e74ba1e (IsA hemorrhagic_cyst cyst) (STV 1.0 0.9091)) +(: cnet_isa_2b420d3889 (IsA hemorrhagic_fever viral_infection) (STV 1.0 0.9091)) +(: cnet_isa_f3eff5fbeb (IsA hemorrhagic_septicemia animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_5042c57b94 (IsA hemorrhagic_stroke bleeding) (STV 1.0 0.9091)) +(: cnet_isa_5a5957d8f0 (IsA hemorrhagic_stroke stroke) (STV 1.0 0.9091)) +(: cnet_isa_a3d2756ec0 (IsA hemorrhoid symptom) (STV 1.0 0.9091)) +(: cnet_isa_a766f2a188 (IsA hemorrhoidal_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_89c9c08072 (IsA hemorrhoidectomy operation) (STV 1.0 0.9091)) +(: cnet_isa_d1826d85ea (IsA hemosiderin pigment) (STV 1.0 0.9091)) +(: cnet_isa_7b290640a5 (IsA hemosiderosis symptom) (STV 1.0 0.9091)) +(: cnet_isa_f01a55d79c (IsA hemostasis stop) (STV 1.0 0.9091)) +(: cnet_isa_83b059d4cf (IsA hemostat surgical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_4b42fdb3ce (IsA hemothorax congestion) (STV 1.0 0.9091)) +(: cnet_isa_6b96c66168 (IsA hemp plant_fiber) (STV 1.0 0.9091)) +(: cnet_isa_e407ee2d3b (IsA hemp_agrimony herb) (STV 1.0 0.9091)) +(: cnet_isa_b499d6cd74 (IsA hemp_nettle herb) (STV 1.0 0.9091)) +(: cnet_isa_c8ea4729c4 (IsA hemstitch embroidery) (STV 1.0 0.9091)) +(: cnet_isa_2d355d599b (IsA hemstitch embroidery_stitch) (STV 1.0 0.9091)) +(: cnet_isa_99affcc349 (IsA hen chicken) (STV 1.0 0.9339)) +(: cnet_isa_610003e96d (IsA hen bird) (STV 1.0 0.9091)) +(: cnet_isa_bd93b1ffdb (IsA hen female) (STV 1.0 0.9091)) +(: cnet_isa_cbceb74378 (IsA hen_of_wood fungus) (STV 1.0 0.9091)) +(: cnet_isa_0bc270e4e9 (IsA hen_party party) (STV 1.0 0.9091)) +(: cnet_isa_b9660a026c (IsA henbane herb) (STV 1.0 0.9091)) +(: cnet_isa_e8d9055bc2 (IsA henbit dead_nettle) (STV 1.0 0.9091)) +(: cnet_isa_4ada0076c7 (IsA hendiady rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_7d5fac1ad4 (IsA henna hair_dye) (STV 1.0 0.9091)) +(: cnet_isa_5815f4f800 (IsA henroost roost) (STV 1.0 0.9091)) +(: cnet_isa_41331c632d (IsA henry_s_law law) (STV 1.0 0.9091)) +(: cnet_isa_a830170133 (IsA henry inductance_unit) (STV 1.0 0.9091)) +(: cnet_isa_e0dbc76a08 (IsA hepadnavirus animal_virus) (STV 1.0 0.9091)) +(: cnet_isa_02a9a3a266 (IsA hepatic_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_254fedf0e6 (IsA hepatic_coma coma) (STV 1.0 0.9091)) +(: cnet_isa_5fd4983579 (IsA hepatic_duct duct) (STV 1.0 0.9091)) +(: cnet_isa_df20353e5b (IsA hepatic_lobe lobe) (STV 1.0 0.9091)) +(: cnet_isa_3a263470b2 (IsA hepatic_tanager tanager) (STV 1.0 0.9091)) +(: cnet_isa_d1d912e663 (IsA hepatic_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_a48d2b959f (IsA hepatica herb) (STV 1.0 0.9091)) +(: cnet_isa_c980263ff5 (IsA hepatica liverwort) (STV 1.0 0.9091)) +(: cnet_isa_7d35763d91 (IsA hepaticopsida class) (STV 1.0 0.9091)) +(: cnet_isa_3a6d2ea328 (IsA hepatitis infectious_disease) (STV 1.0 0.9091)) +(: cnet_isa_a657af7697 (IsA hepatitis liver_disease) (STV 1.0 0.9091)) +(: cnet_isa_e087d35649 (IsA hepatitis viral_hepatitis) (STV 1.0 0.9091)) +(: cnet_isa_a72f7c5e8a (IsA hepatitis_b viral_hepatitis) (STV 1.0 0.9091)) +(: cnet_isa_722b339e32 (IsA hepatitis_c viral_hepatitis) (STV 1.0 0.9091)) +(: cnet_isa_c09ff0e38a (IsA hepatitis_delta hepatitis) (STV 1.0 0.9091)) +(: cnet_isa_c06cc0b66d (IsA hepatitis_virus enterovirus) (STV 1.0 0.9091)) +(: cnet_isa_96747bf692 (IsA hepatojugular_reflux reflux) (STV 1.0 0.9091)) +(: cnet_isa_038cefd442 (IsA hepatolenticular_degeneration genetic_disease) (STV 1.0 0.9091)) +(: cnet_isa_64b7b68768 (IsA hepatoma carcinoma) (STV 1.0 0.9091)) +(: cnet_isa_e08d0073a8 (IsA hepatomegaly abnormality) (STV 1.0 0.9091)) +(: cnet_isa_e010862236 (IsA hepatotoxin toxin) (STV 1.0 0.9091)) +(: cnet_isa_526ec0e57e (IsA heptagon closed_shape_with_seven_side) (STV 1.0 0.9091)) +(: cnet_isa_27aedacec1 (IsA heptagon polygon) (STV 1.0 0.9091)) +(: cnet_isa_c9c27a77f7 (IsA heptane methane_sery) (STV 1.0 0.9091)) +(: cnet_isa_10e871ea73 (IsA heracleum rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_10f26b1c67 (IsA herald messenger) (STV 1.0 0.9091)) +(: cnet_isa_4ac494ac0d (IsA heraldry emblem) (STV 1.0 0.9091)) +(: cnet_isa_5fe7f4a8c8 (IsA heraldry inquiry) (STV 1.0 0.9091)) +(: cnet_isa_f1103d0680 (IsA herb flavorer) (STV 1.0 0.9091)) +(: cnet_isa_c41d865d9f (IsA herb vascular_plant) (STV 1.0 0.9091)) +(: cnet_isa_26afbed5ab (IsA herb_bennet aven) (STV 1.0 0.9091)) +(: cnet_isa_2e435f2a85 (IsA herb_garden garden) (STV 1.0 0.9091)) +(: cnet_isa_bbb0cb0f3a (IsA herb_mercury herb) (STV 1.0 0.9091)) +(: cnet_isa_2cba68f3a7 (IsA herb_paris herb) (STV 1.0 0.9091)) +(: cnet_isa_7c8a60dcbb (IsA herb_robert cranesbill) (STV 1.0 0.9091)) +(: cnet_isa_d8bb2d9fe0 (IsA herb_tea tea) (STV 1.0 0.9091)) +(: cnet_isa_3462a25da3 (IsA herba_impia cotton_rose) (STV 1.0 0.9091)) +(: cnet_isa_2294be625f (IsA herbage herb) (STV 1.0 0.9091)) +(: cnet_isa_0069753086 (IsA herbal_medicine alternative_medicine) (STV 1.0 0.9091)) +(: cnet_isa_898756a526 (IsA herbal_medicine medicine) (STV 1.0 0.9091)) +(: cnet_isa_131125ac25 (IsA herbalist therapist) (STV 1.0 0.9091)) +(: cnet_isa_bfc93ef6d6 (IsA herbarium collection) (STV 1.0 0.9091)) +(: cnet_isa_e5fbf5626d (IsA herbicide chemical) (STV 1.0 0.9091)) +(: cnet_isa_511351fd66 (IsA herbivore animal) (STV 1.0 0.9091)) +(: cnet_isa_cd6fe99ac7 (IsA herb plant) (STV 1.0 0.9454)) +(: cnet_isa_508a85486e (IsA hercule_club prickly_ash) (STV 1.0 0.9091)) +(: cnet_isa_804e5a50cc (IsA herd animal_group) (STV 1.0 0.9091)) +(: cnet_isa_ec9587c509 (IsA herder hired_hand) (STV 1.0 0.9091)) +(: cnet_isa_9df448d6f9 (IsA here location) (STV 1.0 0.9091)) +(: cnet_isa_00a442f09e (IsA here_and_now present) (STV 1.0 0.9091)) +(: cnet_isa_1738eeae77 (IsA hereditament property) (STV 1.0 0.9091)) +(: cnet_isa_997edf8ada (IsA hereditarianism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_ba93788d69 (IsA hereditary_cerebellar_ataxia ataxia) (STV 1.0 0.9091)) +(: cnet_isa_9a0ee7f90e (IsA heredity property) (STV 1.0 0.9091)) +(: cnet_isa_dac2018923 (IsA heredity organic_process) (STV 1.0 0.9091)) +(: cnet_isa_63fce222cb (IsA hereford beef) (STV 1.0 0.9091)) +(: cnet_isa_bed1d6b4f6 (IsA hereness presence) (STV 1.0 0.9091)) +(: cnet_isa_2c30e07d17 (IsA herero bantu) (STV 1.0 0.9091)) +(: cnet_isa_62faa43e49 (IsA heresy content) (STV 1.0 0.9091)) +(: cnet_isa_ae0f653175 (IsA heretic nonconformist) (STV 1.0 0.9091)) +(: cnet_isa_9ed390f724 (IsA heretic outcast) (STV 1.0 0.9091)) +(: cnet_isa_0bc8c58928 (IsA heritage practice) (STV 1.0 0.9091)) +(: cnet_isa_fdfdbff3f4 (IsA heritiera dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_87326dae15 (IsA herm statue) (STV 1.0 0.9091)) +(: cnet_isa_aa9ea369d6 (IsA hermannia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_18f6a1445a (IsA hermaphrodite bisexual) (STV 1.0 0.9091)) +(: cnet_isa_4238323c53 (IsA hermaphroditism birth_defect) (STV 1.0 0.9091)) +(: cnet_isa_3660f90c05 (IsA hermeneutic theology) (STV 1.0 0.9091)) +(: cnet_isa_622962c4e9 (IsA hermissenda mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_c23e7a8576 (IsA hermissenda_crassicornis sea_slug) (STV 1.0 0.9091)) +(: cnet_isa_43c7ebab88 (IsA hermit loner) (STV 1.0 0.9091)) +(: cnet_isa_22981a9fe6 (IsA hermit_crab decapod_crustacean) (STV 1.0 0.9091)) +(: cnet_isa_abcf974ef7 (IsA hermit_thrush thrush) (STV 1.0 0.9091)) +(: cnet_isa_e5b4ccad06 (IsA hermitage dwelling) (STV 1.0 0.9091)) +(: cnet_isa_a0585fe2fa (IsA hernaria caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0decfb09e8 (IsA hernia rupture) (STV 1.0 0.9091)) +(: cnet_isa_f634da94e7 (IsA herniated_disc rupture) (STV 1.0 0.9091)) +(: cnet_isa_f84ec558e1 (IsA hero mythical_being) (STV 1.0 0.9091)) +(: cnet_isa_49899eef31 (IsA hero character) (STV 1.0 0.9091)) +(: cnet_isa_c14487c589 (IsA hero leader) (STV 1.0 0.9091)) +(: cnet_isa_256e4c8714 (IsA hero_worship admiration) (STV 1.0 0.9091)) +(: cnet_isa_dcd0f385c3 (IsA hero_worshiper worshiper) (STV 1.0 0.9091)) +(: cnet_isa_c4975b38a8 (IsA heroic_couplet couplet) (STV 1.0 0.9091)) +(: cnet_isa_987062483d (IsA heroic_poetry poetry) (STV 1.0 0.9091)) +(: cnet_isa_9d1f263132 (IsA heroic_stanza quatrain) (STV 1.0 0.9091)) +(: cnet_isa_1deaad79b7 (IsA heroic_verse epic_poem) (STV 1.0 0.9091)) +(: cnet_isa_c58984392f (IsA heroic acting) (STV 1.0 0.9091)) +(: cnet_isa_e3cf05b21c (IsA heroin drug) (STV 1.0 0.9572)) +(: cnet_isa_53538d19e4 (IsA heroin illegal_drug) (STV 1.0 0.9091)) +(: cnet_isa_d0d1153e2f (IsA heroin hard_drug) (STV 1.0 0.9091)) +(: cnet_isa_dca4ac522d (IsA heroin opiate) (STV 1.0 0.9091)) +(: cnet_isa_407b27dfd9 (IsA heroin_addict drug_addict) (STV 1.0 0.9091)) +(: cnet_isa_6ba482cbea (IsA heroin_addiction drug_addiction) (STV 1.0 0.9091)) +(: cnet_isa_6331a7ff71 (IsA heroine character) (STV 1.0 0.9091)) +(: cnet_isa_fe5e12a0f2 (IsA heroine woman) (STV 1.0 0.9091)) +(: cnet_isa_63e3fe72ca (IsA heroism courage) (STV 1.0 0.9091)) +(: cnet_isa_f9e2cff7e3 (IsA heron wading_bird) (STV 1.0 0.9091)) +(: cnet_isa_4afcc62ae4 (IsA heronry rookery) (STV 1.0 0.9091)) +(: cnet_isa_19582f2a25 (IsA herpangia viral_infection) (STV 1.0 0.9091)) +(: cnet_isa_0f8abf7ba8 (IsA herpe disease) (STV 1.0 0.9091)) +(: cnet_isa_a8cff75bc4 (IsA herpe animal_virus) (STV 1.0 0.9091)) +(: cnet_isa_4c18d431ac (IsA herpe infectious_disease) (STV 1.0 0.9091)) +(: cnet_isa_cd9758b35c (IsA herpe_simplex herpe) (STV 1.0 0.9091)) +(: cnet_isa_faa7fdde28 (IsA herpe_simplex_1 herpe_simplex) (STV 1.0 0.9091)) +(: cnet_isa_4ca90fc62f (IsA herpe_simplex_2 herpe_simplex) (STV 1.0 0.9091)) +(: cnet_isa_4d4a7adfa6 (IsA herpe_simplex_encephalitis encephalitis) (STV 1.0 0.9091)) +(: cnet_isa_edbd430012 (IsA herpe_varicella_zoster herpe_zoster) (STV 1.0 0.9091)) +(: cnet_isa_d249981a16 (IsA herpe_zoster herpe) (STV 1.0 0.9091)) +(: cnet_isa_ea5dfa425b (IsA herpeste mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_2034d4dd48 (IsA herpetologist zoologist) (STV 1.0 0.9091)) +(: cnet_isa_19c9e357e5 (IsA herpetology zoology) (STV 1.0 0.9091)) +(: cnet_isa_aa4b4ebc7d (IsA herr title) (STV 1.0 0.9091)) +(: cnet_isa_96b6b6df14 (IsA herr man) (STV 1.0 0.9091)) +(: cnet_isa_facc53c62d (IsA herrerasaur theropod) (STV 1.0 0.9091)) +(: cnet_isa_37a70c0c06 (IsA herring clupeid_fish) (STV 1.0 0.9091)) +(: cnet_isa_d351c78cae (IsA herring food_fish) (STV 1.0 0.9091)) +(: cnet_isa_e711eabfce (IsA herring saltwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_d765522de3 (IsA herring_gull gull) (STV 1.0 0.9091)) +(: cnet_isa_3bf471c390 (IsA herring_salad salad) (STV 1.0 0.9091)) +(: cnet_isa_5e6c944b23 (IsA herringbone fabric) (STV 1.0 0.9091)) +(: cnet_isa_8cf4c578fc (IsA herringbone_pattern design) (STV 1.0 0.9091)) +(: cnet_isa_3350b279a6 (IsA herschelian_telescope reflecting_telescope) (STV 1.0 0.9091)) +(: cnet_isa_db9bac2049 (IsA hershey_bar chocolate_bar) (STV 1.0 0.9091)) +(: cnet_isa_9371d5e741 (IsA hertz rate) (STV 1.0 0.9091)) +(: cnet_isa_240f80686e (IsA hertzian_wave radio_wave) (STV 1.0 0.9091)) +(: cnet_isa_347a452f37 (IsA heshvan jewish_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_951adb33be (IsA hesitance diffidence) (STV 1.0 0.9091)) +(: cnet_isa_b721f321cb (IsA hesitation pause) (STV 1.0 0.9091)) +(: cnet_isa_e9c6d23b53 (IsA hesitation indecision) (STV 1.0 0.9091)) +(: cnet_isa_e6b2685f35 (IsA hesperiphona bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_a522578ab6 (IsA hesperis dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_bef691e59e (IsA hessian_boot boot) (STV 1.0 0.9091)) +(: cnet_isa_0fe886803e (IsA hessian_fly gall_midge) (STV 1.0 0.9091)) +(: cnet_isa_2974d64482 (IsA heteranthera monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7c589c0a69 (IsA heterobasidiomycete class) (STV 1.0 0.9091)) +(: cnet_isa_b356f8c4d7 (IsA heterocephalus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_16ae25960c (IsA heterocercal_fin tail_fin) (STV 1.0 0.9091)) +(: cnet_isa_cb5425f447 (IsA heterocyclic_compound compound) (STV 1.0 0.9091)) +(: cnet_isa_bba64b6f16 (IsA heterocyclic_ring closed_chain) (STV 1.0 0.9091)) +(: cnet_isa_13dea2c0d4 (IsA heterodactyl_foot bird_s_foot) (STV 1.0 0.9091)) +(: cnet_isa_b626cecc6f (IsA heterodon reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_f19e05b332 (IsA heterodyne_receiver radio_receiver) (STV 1.0 0.9091)) +(: cnet_isa_9e5fe64e2e (IsA heterogeneity nonuniformity) (STV 1.0 0.9091)) +(: cnet_isa_e9a869eb3f (IsA heterograft graft) (STV 1.0 0.9091)) +(: cnet_isa_1bdc8429c3 (IsA heterokontophyta division) (STV 1.0 0.9091)) +(: cnet_isa_4ce1a1d189 (IsA heterology dissimilarity) (STV 1.0 0.9091)) +(: cnet_isa_b260b03217 (IsA heteromele rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_82ff9776d2 (IsA heterometabolism metamorphosis) (STV 1.0 0.9091)) +(: cnet_isa_f0fc48bf8a (IsA heteromyidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_e5a5f275ab (IsA heteronym word) (STV 1.0 0.9091)) +(: cnet_isa_643d3d9141 (IsA heterophil_antibody antibody) (STV 1.0 0.9091)) +(: cnet_isa_e0b78687e9 (IsA heterophil_test agglutination_test) (STV 1.0 0.9091)) +(: cnet_isa_23d0c14401 (IsA heteroploid organism) (STV 1.0 0.9091)) +(: cnet_isa_2a758f6ff6 (IsA heteroploidy condition) (STV 1.0 0.9091)) +(: cnet_isa_6bd9592a44 (IsA heteroptera animal_order) (STV 1.0 0.9091)) +(: cnet_isa_ff869787bc (IsA heteropterous_insect insect) (STV 1.0 0.9091)) +(: cnet_isa_605ff98fc5 (IsA heteroscelus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_92afcb60ca (IsA heterosexism discrimination) (STV 1.0 0.9091)) +(: cnet_isa_621360d6e7 (IsA heterosexual person) (STV 1.0 0.9091)) +(: cnet_isa_e2aee29461 (IsA heterosexuality sexual_activity) (STV 1.0 0.9091)) +(: cnet_isa_0c5c31bc84 (IsA heterosomata animal_order) (STV 1.0 0.9091)) +(: cnet_isa_58eed7ab5c (IsA heterospory monogenesis) (STV 1.0 0.9091)) +(: cnet_isa_ebee88f7e0 (IsA heterostracan jawless_vertebrate) (STV 1.0 0.9091)) +(: cnet_isa_551caf5e97 (IsA heterostraci animal_order) (STV 1.0 0.9091)) +(: cnet_isa_194170f689 (IsA heterotheca asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_fc3b36b1a6 (IsA heterotrichale protoctist_order) (STV 1.0 0.9091)) +(: cnet_isa_c4bfe8f524 (IsA heterotroph organism) (STV 1.0 0.9091)) +(: cnet_isa_cf1515d761 (IsA heterozygosity state) (STV 1.0 0.9091)) +(: cnet_isa_9d62d26402 (IsA heterozygote zygote) (STV 1.0 0.9091)) +(: cnet_isa_6202958964 (IsA heth letter) (STV 1.0 0.9091)) +(: cnet_isa_b1d0fc1bdd (IsA hetz_midget_arborvitae plant) (STV 1.0 0.9091)) +(: cnet_isa_c773a5112a (IsA heuchera rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_23cff8d517 (IsA heulandite zeolite) (STV 1.0 0.9091)) +(: cnet_isa_d25e6d8d42 (IsA heuristic rule) (STV 1.0 0.9091)) +(: cnet_isa_beef1bcc4b (IsA hevea rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8f0d7ff9cb (IsA hewer laborer) (STV 1.0 0.9091)) +(: cnet_isa_2c61aadb54 (IsA hex spell) (STV 1.0 0.9091)) +(: cnet_isa_05935e7631 (IsA hex_nut nut) (STV 1.0 0.9091)) +(: cnet_isa_a02ed615c5 (IsA hexachlorophene antibacterial) (STV 1.0 0.9091)) +(: cnet_isa_5bf29a92c3 (IsA hexadecimal_digit digit) (STV 1.0 0.9091)) +(: cnet_isa_25a1a87835 (IsA hexadecimal_notation mathematical_notation) (STV 1.0 0.9091)) +(: cnet_isa_5a805f863b (IsA hexadecimal_number_system positional_notation) (STV 1.0 0.9091)) +(: cnet_isa_bd2c3ca07d (IsA hexagon closed_shape_with_six_side) (STV 1.0 0.9091)) +(: cnet_isa_272ab2e040 (IsA hexagon polygon) (STV 1.0 0.9091)) +(: cnet_isa_adc3173570 (IsA hexagram star) (STV 1.0 0.9091)) +(: cnet_isa_d597a87593 (IsA hexagrammidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_79e34e5eea (IsA hexagrammo fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_cd152d0906 (IsA hexahedron polyhedron) (STV 1.0 0.9091)) +(: cnet_isa_615c7f4ccc (IsA hexalectris monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ddf2755097 (IsA hexameter verse) (STV 1.0 0.9091)) +(: cnet_isa_f0ebeb12fc (IsA hexamita protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_e3747f52e3 (IsA hexanchidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_d9f933d05d (IsA hexanchus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_819385d5e9 (IsA hexane methane_sery) (STV 1.0 0.9091)) +(: cnet_isa_34d5dc4c6d (IsA hexane solvent) (STV 1.0 0.9091)) +(: cnet_isa_8c08283eb8 (IsA hexanedioic_acid carboxylic_acid) (STV 1.0 0.9091)) +(: cnet_isa_33d48bf88b (IsA hexapod animal) (STV 1.0 0.9091)) +(: cnet_isa_f288998901 (IsA hexestrol estrogen) (STV 1.0 0.9091)) +(: cnet_isa_7c9b42ca9d (IsA hexose monosaccharide) (STV 1.0 0.9091)) +(: cnet_isa_d420dfddd6 (IsA hi_fi reproducer) (STV 1.0 0.9091)) +(: cnet_isa_fc6a646dbb (IsA hiatus piece) (STV 1.0 0.9091)) +(: cnet_isa_a6b5dc37eb (IsA hiatus_hernia hernia) (STV 1.0 0.9091)) +(: cnet_isa_32cbf25e71 (IsA hiba_arborvitae arborvitae) (STV 1.0 0.9091)) +(: cnet_isa_454e52e655 (IsA hibachi brazier) (STV 1.0 0.9091)) +(: cnet_isa_16cda8bb87 (IsA hibbertia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_eb09816d18 (IsA hibernation retirement) (STV 1.0 0.9091)) +(: cnet_isa_02c78ab8e4 (IsA hibernation dormancy) (STV 1.0 0.9091)) +(: cnet_isa_86fb669ffd (IsA hibernation torpor) (STV 1.0 0.9091)) +(: cnet_isa_e1e8bc91a5 (IsA hibiscus flower) (STV 1.0 0.9636)) +(: cnet_isa_250d3c7dd6 (IsA hibiscus mallow) (STV 1.0 0.9091)) +(: cnet_isa_792884de36 (IsA hiccup reflex) (STV 1.0 0.9091)) +(: cnet_isa_32384337e8 (IsA hiccup symptom) (STV 1.0 0.9091)) +(: cnet_isa_a6cf5491b1 (IsA hiccup_nut shrub) (STV 1.0 0.9091)) +(: cnet_isa_0afce0bf78 (IsA hickey erythema) (STV 1.0 0.9091)) +(: cnet_isa_7ffd9415a7 (IsA hickory tree) (STV 1.0 0.9091)) +(: cnet_isa_afc8d501b7 (IsA hickory nut_tree) (STV 1.0 0.9091)) +(: cnet_isa_c72e833326 (IsA hickory wood) (STV 1.0 0.9091)) +(: cnet_isa_7902d86afc (IsA hickory_nut edible_nut) (STV 1.0 0.9091)) +(: cnet_isa_3beb371fec (IsA hidatsa siouan) (STV 1.0 0.9091)) +(: cnet_isa_4dcd069123 (IsA hidden_reserve reserve_account) (STV 1.0 0.9091)) +(: cnet_isa_2cc9b3f830 (IsA hidden_tax indirect_tax) (STV 1.0 0.9091)) +(: cnet_isa_e8eab34679 (IsA hiddenite spodumene) (STV 1.0 0.9091)) +(: cnet_isa_bc06dbdcc4 (IsA hiddenite transparent_gem) (STV 1.0 0.9091)) +(: cnet_isa_714c4cb0ed (IsA hide animal_skin) (STV 1.0 0.9091)) +(: cnet_isa_a4934c0e8d (IsA hide_and_seek child_s_game) (STV 1.0 0.9091)) +(: cnet_isa_741f3fda2d (IsA hideaway area) (STV 1.0 0.9091)) +(: cnet_isa_6687b754a7 (IsA hideousness ugliness) (STV 1.0 0.9091)) +(: cnet_isa_2ee9248b67 (IsA hideout hiding_place) (STV 1.0 0.9091)) +(: cnet_isa_269b2b3677 (IsA hiding privacy) (STV 1.0 0.9091)) +(: cnet_isa_698997f84e (IsA hiding_place topographic_point) (STV 1.0 0.9091)) +(: cnet_isa_c542ee8ac2 (IsA hieracium asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a0ceb56112 (IsA hierarch important_person) (STV 1.0 0.9091)) +(: cnet_isa_4e7094efe1 (IsA hierarchical_classification_system classification_system) (STV 1.0 0.9091)) +(: cnet_isa_d88f001406 (IsA hierarchical_menu menu) (STV 1.0 0.9091)) +(: cnet_isa_7bda263755 (IsA hierarchical_structure data_structure) (STV 1.0 0.9091)) +(: cnet_isa_91c1b9c43b (IsA hierarchy organization) (STV 1.0 0.9091)) +(: cnet_isa_d237d9ea90 (IsA hierarchy sery) (STV 1.0 0.9091)) +(: cnet_isa_ca094576e7 (IsA hieratic hieroglyph) (STV 1.0 0.9091)) +(: cnet_isa_f898408fb9 (IsA hierocracy theocracy) (STV 1.0 0.9091)) +(: cnet_isa_cef494b0b6 (IsA hieroglyph orthography) (STV 1.0 0.9091)) +(: cnet_isa_c8611b7b89 (IsA hieroglyph writing) (STV 1.0 0.9091)) +(: cnet_isa_38025c3785 (IsA high degree) (STV 1.0 0.9091)) +(: cnet_isa_415f859040 (IsA high topographic_point) (STV 1.0 0.9091)) +(: cnet_isa_6904cb2da7 (IsA high air_mass) (STV 1.0 0.9091)) +(: cnet_isa_47ecdb5bd4 (IsA high elation) (STV 1.0 0.9091)) +(: cnet_isa_93cd8294ae (IsA high_altar altar) (STV 1.0 0.9091)) +(: cnet_isa_3ddc8f5938 (IsA high_angle_fire artillery_fire) (STV 1.0 0.9091)) +(: cnet_isa_ae357cb96c (IsA high_angle_gun cannon) (STV 1.0 0.9091)) +(: cnet_isa_c71522bcde (IsA high_beam beam) (STV 1.0 0.9091)) +(: cnet_isa_09647dfd6b (IsA high_bit bit) (STV 1.0 0.9091)) +(: cnet_isa_6b325de39b (IsA high_blood_pressure cardiovascular_disease) (STV 1.0 0.9091)) +(: cnet_isa_f07e9c32fb (IsA high_brass brass) (STV 1.0 0.9091)) +(: cnet_isa_cff74a1cb4 (IsA high_bush_blueberry blueberry) (STV 1.0 0.9091)) +(: cnet_isa_655038fa34 (IsA high_church sect) (STV 1.0 0.9091)) +(: cnet_isa_4cedb5a7a7 (IsA high_comedy comedy) (STV 1.0 0.9091)) +(: cnet_isa_6e43d4c6df (IsA high_command leadership) (STV 1.0 0.9091)) +(: cnet_isa_0c38202ff4 (IsA high_commission embassy) (STV 1.0 0.9091)) +(: cnet_isa_e2417d1e4e (IsA high_commissioner diplomat) (STV 1.0 0.9091)) +(: cnet_isa_ec648b54d4 (IsA high_country area) (STV 1.0 0.9091)) +(: cnet_isa_29bdd0145c (IsA high_definition_television television) (STV 1.0 0.9091)) +(: cnet_isa_fd08c058d8 (IsA high_density_lipoprotein lipoprotein) (STV 1.0 0.9091)) +(: cnet_isa_986d1fe6f2 (IsA high_explosive explosive) (STV 1.0 0.9091)) +(: cnet_isa_989b789a10 (IsA high_explosive weapon_of_mass_destruction) (STV 1.0 0.9091)) +(: cnet_isa_0faacd76f9 (IsA high_fidelity sound_reproduction) (STV 1.0 0.9091)) +(: cnet_isa_73d8194eab (IsA high_finance finance) (STV 1.0 0.9091)) +(: cnet_isa_c74b60587a (IsA high_five gesture) (STV 1.0 0.9091)) +(: cnet_isa_363cad99ae (IsA high_frequency radio_frequency) (STV 1.0 0.9091)) +(: cnet_isa_29a8068932 (IsA high_gear gear) (STV 1.0 0.9091)) +(: cnet_isa_5453b17f2a (IsA high_ground status) (STV 1.0 0.9091)) +(: cnet_isa_28821d9278 (IsA high_hat_cymbal cymbal) (STV 1.0 0.9091)) +(: cnet_isa_f4e6ad1db9 (IsA high_holy_day jewish_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_528c30b509 (IsA high_horse attitude) (STV 1.0 0.9091)) +(: cnet_isa_6dbf96f75e (IsA high_jump jumping) (STV 1.0 0.9091)) +(: cnet_isa_0b59a3f4eb (IsA high_jump field_event) (STV 1.0 0.9091)) +(: cnet_isa_f9b007908d (IsA high_level_formatting format) (STV 1.0 0.9091)) +(: cnet_isa_b9306d24da (IsA high_level_language application_oriented_language) (STV 1.0 0.9091)) +(: cnet_isa_7c169d6f57 (IsA high_level_radioactive_waste radioactive_waste) (STV 1.0 0.9091)) +(: cnet_isa_62f7ce0e37 (IsA high_low poker) (STV 1.0 0.9091)) +(: cnet_isa_bca7fd9fb4 (IsA high_mass mass) (STV 1.0 0.9091)) +(: cnet_isa_95c84de0c2 (IsA high_mindedness nobility) (STV 1.0 0.9091)) +(: cnet_isa_1cd6b9aece (IsA high_muck_muck important_person) (STV 1.0 0.9091)) +(: cnet_isa_e1db956f21 (IsA high_pass_filter filter) (STV 1.0 0.9091)) +(: cnet_isa_48d543fe27 (IsA high_pitch pitch) (STV 1.0 0.9091)) +(: cnet_isa_1346cfdc79 (IsA high_point part) (STV 1.0 0.9091)) +(: cnet_isa_9da0a2a2ac (IsA high_priest authority) (STV 1.0 0.9091)) +(: cnet_isa_7128226b62 (IsA high_profile status) (STV 1.0 0.9091)) +(: cnet_isa_052c568f3f (IsA high_protein_diet diet) (STV 1.0 0.9091)) +(: cnet_isa_819dd2dd15 (IsA high_renaissance artistic_style) (STV 1.0 0.9091)) +(: cnet_isa_8b74a51fd1 (IsA high_rise building) (STV 1.0 0.9707)) +(: cnet_isa_0fef6ff175 (IsA high_rise tower) (STV 1.0 0.9091)) +(: cnet_isa_721c09c5d9 (IsA high_roller gambler) (STV 1.0 0.9091)) +(: cnet_isa_4fded1b666 (IsA high_sea body_of_water) (STV 1.0 0.9091)) +(: cnet_isa_eec95bd1b8 (IsA high_season season) (STV 1.0 0.9091)) +(: cnet_isa_af7cba5896 (IsA high_sign signal) (STV 1.0 0.9091)) +(: cnet_isa_947b8cf9cf (IsA high_speed_steel tool_steel) (STV 1.0 0.9091)) +(: cnet_isa_9cfa97e31c (IsA high_spiritedness liveliness) (STV 1.0 0.9091)) +(: cnet_isa_70e1d8c59f (IsA high_status status) (STV 1.0 0.9091)) +(: cnet_isa_69327668d4 (IsA high_table dining_table) (STV 1.0 0.9091)) +(: cnet_isa_6c7f0c5208 (IsA high_tea dinner) (STV 1.0 0.9091)) +(: cnet_isa_04f54883e9 (IsA high_technology technology) (STV 1.0 0.9091)) +(: cnet_isa_b0c44dfb2f (IsA high_tide tide) (STV 1.0 0.9091)) +(: cnet_isa_e53683b12c (IsA high_time time) (STV 1.0 0.9091)) +(: cnet_isa_cf6703ff45 (IsA high_vitamin_diet diet) (STV 1.0 0.9091)) +(: cnet_isa_166d13aaf0 (IsA high_warp_loom handloom) (STV 1.0 0.9091)) +(: cnet_isa_04c996b20d (IsA high_water_mark water_line) (STV 1.0 0.9091)) +(: cnet_isa_2c736c127a (IsA high_wind wind) (STV 1.0 0.9091)) +(: cnet_isa_01461a49f5 (IsA high_wire tightrope) (STV 1.0 0.9091)) +(: cnet_isa_1899d73c0e (IsA highball mixed_drink) (STV 1.0 0.9091)) +(: cnet_isa_28745bdb31 (IsA highball_glass glass) (STV 1.0 0.9091)) +(: cnet_isa_c46f4e3077 (IsA highbinder criminal) (STV 1.0 0.9091)) +(: cnet_isa_125ef962cd (IsA highboard diving_board) (STV 1.0 0.9091)) +(: cnet_isa_f90c0dd37d (IsA highboy chest_of_drawer) (STV 1.0 0.9091)) +(: cnet_isa_c5f05ede14 (IsA highbrow intellectual) (STV 1.0 0.9091)) +(: cnet_isa_ebe5286583 (IsA highchair chair) (STV 1.0 0.9091)) +(: cnet_isa_b90c6ebff1 (IsA higher_cognitive_process process) (STV 1.0 0.9091)) +(: cnet_isa_b9fd881f01 (IsA higher_criticism textual_criticism) (STV 1.0 0.9091)) +(: cnet_isa_5e738b7d0e (IsA higher_education education) (STV 1.0 0.9091)) +(: cnet_isa_e1c2a5e6f8 (IsA higher_law principle) (STV 1.0 0.9091)) +(: cnet_isa_9b390a986e (IsA higher_national_diploma diploma) (STV 1.0 0.9091)) +(: cnet_isa_0130e693a2 (IsA highflier achiever) (STV 1.0 0.9091)) +(: cnet_isa_39c8ff7d4c (IsA highjacker criminal) (STV 1.0 0.9091)) +(: cnet_isa_ea6e13c61b (IsA highjacker holdup_man) (STV 1.0 0.9091)) +(: cnet_isa_ebbd6e3a12 (IsA highjacking robbery) (STV 1.0 0.9091)) +(: cnet_isa_a20f2b92df (IsA highland natural_elevation) (STV 1.0 0.9091)) +(: cnet_isa_15a2cdab1c (IsA highland_fling reel) (STV 1.0 0.9091)) +(: cnet_isa_aa864776a5 (IsA highlander soldier) (STV 1.0 0.9091)) +(: cnet_isa_40307f4053 (IsA highlight light) (STV 1.0 0.9091)) +(: cnet_isa_d2fc2d8caa (IsA highlight detail) (STV 1.0 0.9091)) +(: cnet_isa_1bf43f9723 (IsA highlighter cosmetic) (STV 1.0 0.9091)) +(: cnet_isa_823af471d4 (IsA highlighter marker) (STV 1.0 0.9091)) +(: cnet_isa_2e7327f394 (IsA highness degree) (STV 1.0 0.9091)) +(: cnet_isa_068098ae42 (IsA highness height) (STV 1.0 0.9091)) +(: cnet_isa_df20ede2f4 (IsA highness aristocrat) (STV 1.0 0.9091)) +(: cnet_isa_cc6c32b63a (IsA highroad highway) (STV 1.0 0.9091)) +(: cnet_isa_98447e6c1a (IsA highway australian_freeway) (STV 1.0 0.9091)) +(: cnet_isa_6dc965ee94 (IsA highway road) (STV 1.0 0.9740)) +(: cnet_isa_8f189a5ef8 (IsA highway_code code) (STV 1.0 0.9091)) +(: cnet_isa_bd81513aa6 (IsA highway_engineer civil_engineer) (STV 1.0 0.9091)) +(: cnet_isa_4b1eefdf89 (IsA highway_robbery robbery) (STV 1.0 0.9091)) +(: cnet_isa_5fa2575ed0 (IsA highway_robbery price) (STV 1.0 0.9091)) +(: cnet_isa_a2d67de5d6 (IsA highway_system transportation_system) (STV 1.0 0.9091)) +(: cnet_isa_47c214f1dd (IsA higi biu_mandara) (STV 1.0 0.9091)) +(: cnet_isa_bbcf8b6dc0 (IsA hijab custom) (STV 1.0 0.9091)) +(: cnet_isa_21a0a5bec9 (IsA hijab headscarf) (STV 1.0 0.9091)) +(: cnet_isa_f65606d538 (IsA hijack crime) (STV 1.0 0.9091)) +(: cnet_isa_7955f27d7b (IsA hike walk) (STV 1.0 0.9091)) +(: cnet_isa_3431685cf9 (IsA hiker pedestrian) (STV 1.0 0.9091)) +(: cnet_isa_b9979cc5c8 (IsA hiking exercise_too) (STV 1.0 0.9339)) +(: cnet_isa_9624b6a6c5 (IsA hilarity gaiety) (STV 1.0 0.9091)) +(: cnet_isa_6af6cee5a2 (IsA hilbert_space metric_space) (STV 1.0 0.9091)) +(: cnet_isa_5140acd335 (IsA hill mound_of_earth) (STV 1.0 0.9091)) +(: cnet_isa_fbfb00167d (IsA hill natural_elevation) (STV 1.0 0.9091)) +(: cnet_isa_569ccb27ad (IsA hill_myna myna) (STV 1.0 0.9091)) +(: cnet_isa_964b954d0e (IsA hillbilly rustic) (STV 1.0 0.9091)) +(: cnet_isa_ca3da377a1 (IsA hillbilly_music country_music) (STV 1.0 0.9091)) +(: cnet_isa_ae4124bf32 (IsA hilliness ruggedness) (STV 1.0 0.9091)) +(: cnet_isa_453ba3fa12 (IsA hillside slope) (STV 1.0 0.9091)) +(: cnet_isa_1603ba552b (IsA hilltop peak) (STV 1.0 0.9091)) +(: cnet_isa_c1d689004a (IsA hilt handle) (STV 1.0 0.9091)) +(: cnet_isa_4b63cf7a8e (IsA hilum point) (STV 1.0 0.9091)) +(: cnet_isa_4b24b40ab1 (IsA hilus fissure) (STV 1.0 0.9091)) +(: cnet_isa_de340eb19e (IsA himalaya_honeysuckle shrub) (STV 1.0 0.9091)) +(: cnet_isa_e33236cfbc (IsA himalayan_lilac lilac) (STV 1.0 0.9091)) +(: cnet_isa_f259d29aa7 (IsA himalayan_rhubarb rhubarb) (STV 1.0 0.9091)) +(: cnet_isa_1f702e1320 (IsA himalayish tibeto_burman) (STV 1.0 0.9091)) +(: cnet_isa_8d3d3b28c5 (IsA himantoglossum monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_bc9e1fbe8b (IsA himantopus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_35fe4c6583 (IsA hin volume_unit) (STV 1.0 0.9091)) +(: cnet_isa_29b50f574c (IsA hinayana theravada) (STV 1.0 0.9091)) +(: cnet_isa_4272cc97c1 (IsA hinayana buddhism) (STV 1.0 0.9091)) +(: cnet_isa_45d848861c (IsA hinayanism theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_5fd0ba58ad (IsA hinayanist disciple) (STV 1.0 0.9091)) +(: cnet_isa_134198eb7c (IsA hind grouper) (STV 1.0 0.9091)) +(: cnet_isa_07be640f18 (IsA hind red_deer) (STV 1.0 0.9091)) +(: cnet_isa_10d96b82bc (IsA hind_leg hind_limb) (STV 1.0 0.9091)) +(: cnet_isa_ded4244276 (IsA hind_limb limb) (STV 1.0 0.9091)) +(: cnet_isa_ec4f87b1d6 (IsA hindbrain neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_778cdc67b8 (IsA hindfoot animal_foot) (STV 1.0 0.9091)) +(: cnet_isa_36a21b0191 (IsA hindgut internal_organ) (STV 1.0 0.9091)) +(: cnet_isa_234f87f438 (IsA hindi sanskrit) (STV 1.0 0.9091)) +(: cnet_isa_5a97a25948 (IsA hindoo religionist) (STV 1.0 0.9091)) +(: cnet_isa_03213b48e7 (IsA hindquarter cut) (STV 1.0 0.9091)) +(: cnet_isa_650f719b2b (IsA hindquarter body_part) (STV 1.0 0.9091)) +(: cnet_isa_a3689e2153 (IsA hindrance act) (STV 1.0 0.9091)) +(: cnet_isa_c7db0afd3d (IsA hindrance obstruction) (STV 1.0 0.9091)) +(: cnet_isa_7b2671339e (IsA hindrance difficulty) (STV 1.0 0.9091)) +(: cnet_isa_395c69d1a4 (IsA hindshank shank) (STV 1.0 0.9091)) +(: cnet_isa_ad7f2c4891 (IsA hindsight understanding) (STV 1.0 0.9091)) +(: cnet_isa_909a691ce2 (IsA hindu_calendar lunisolar_calendar) (STV 1.0 0.9091)) +(: cnet_isa_99ab4341fc (IsA hindu_calendar_month calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_b5dacd8589 (IsA hindu_deity deity) (STV 1.0 0.9091)) +(: cnet_isa_813720a029 (IsA hinduism religion) (STV 1.0 0.9339)) +(: cnet_isa_8239239fd9 (IsA hindustani hindi) (STV 1.0 0.9091)) +(: cnet_isa_7914ffb1a2 (IsA hindustani asiatic) (STV 1.0 0.9091)) +(: cnet_isa_f80f117bcc (IsA hinge joint) (STV 1.0 0.9091)) +(: cnet_isa_a6a1594a2f (IsA hinge circumstance) (STV 1.0 0.9091)) +(: cnet_isa_aad942e1a4 (IsA hinge_joint synovial_joint) (STV 1.0 0.9091)) +(: cnet_isa_977054835e (IsA hinging_post gatepost) (STV 1.0 0.9091)) +(: cnet_isa_de24b040f4 (IsA hinny equine) (STV 1.0 0.9091)) +(: cnet_isa_960a9887c6 (IsA hint indication) (STV 1.0 0.9091)) +(: cnet_isa_12e9e12f63 (IsA hint suggestion) (STV 1.0 0.9091)) +(: cnet_isa_b63c6f431b (IsA hip exterior_angle) (STV 1.0 0.9091)) +(: cnet_isa_ceed434f43 (IsA hip ball_and_socket_joint) (STV 1.0 0.9091)) +(: cnet_isa_36d4ca016d (IsA hip body_part) (STV 1.0 0.9091)) +(: cnet_isa_a29614daf0 (IsA hip fruit) (STV 1.0 0.9091)) +(: cnet_isa_b3b1dbc1b8 (IsA hip_boot boot) (STV 1.0 0.9091)) +(: cnet_isa_a393c6fa2a (IsA hip_hop youth_culture) (STV 1.0 0.9091)) +(: cnet_isa_78745b65b9 (IsA hip_pad protective_garment) (STV 1.0 0.9091)) +(: cnet_isa_9317fb1f71 (IsA hip_pocket pocket) (STV 1.0 0.9091)) +(: cnet_isa_97049b42df (IsA hip_roof roof) (STV 1.0 0.9091)) +(: cnet_isa_62bcf1b3fc (IsA hip_socket socket) (STV 1.0 0.9091)) +(: cnet_isa_d72b9d3671 (IsA hip_tile tile) (STV 1.0 0.9091)) +(: cnet_isa_39510faabf (IsA hipbone bone) (STV 1.0 0.9091)) +(: cnet_isa_ea07c4cd2f (IsA hipflask flask) (STV 1.0 0.9091)) +(: cnet_isa_b130938d04 (IsA hipline line) (STV 1.0 0.9091)) +(: cnet_isa_e82bf2336b (IsA hippeastrum amaryllis) (STV 1.0 0.9091)) +(: cnet_isa_c11c2f46ed (IsA hippie reformer) (STV 1.0 0.9091)) +(: cnet_isa_3209c043af (IsA hippobosca arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_5288b883ed (IsA hippoboscidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_2d8940a232 (IsA hippocampus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_a3d2b5e2d3 (IsA hippocampus neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_2953be8ce1 (IsA hippocampus_ca1_pyramidal_cell diploid_cell) (STV 1.0 0.9091)) +(: cnet_isa_98120e8cb0 (IsA hippocastanaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_1219d52c62 (IsA hippocrepis rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_95ab7ab110 (IsA hippodamia arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_efc1a504fc (IsA hippodamia_convergen ladybug) (STV 1.0 0.9091)) +(: cnet_isa_e0a9491706 (IsA hippodrome stadium) (STV 1.0 0.9091)) +(: cnet_isa_aa33cc5a69 (IsA hippoglossoide fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_f137540914 (IsA hippoglossus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_2f867d1138 (IsA hippopotamidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_3cb50f6c6e (IsA hippopotamus even_toed_ungulate) (STV 1.0 0.9091)) +(: cnet_isa_33892d5246 (IsA hipposideridae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_74fdb41ad1 (IsA hipposidero mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_53845536ff (IsA hippotragus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_0a46b36a63 (IsA hipsurus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_d931b4e1d3 (IsA hire act) (STV 1.0 0.9091)) +(: cnet_isa_5edcbdad66 (IsA hire employee) (STV 1.0 0.9091)) +(: cnet_isa_77b2d2310d (IsA hire_purchase installment_plan) (STV 1.0 0.9091)) +(: cnet_isa_cca61fdfab (IsA hired_hand laborer) (STV 1.0 0.9091)) +(: cnet_isa_0d61b9c457 (IsA hired_help employee) (STV 1.0 0.9091)) +(: cnet_isa_4658166ef7 (IsA hireling employee) (STV 1.0 0.9091)) +(: cnet_isa_75570e541a (IsA hiring_freeze freeze) (STV 1.0 0.9091)) +(: cnet_isa_8a75faa17f (IsA hiring_hall placement_office) (STV 1.0 0.9091)) +(: cnet_isa_84c46b8f7e (IsA hirschsprung_s_disease genetic_disease) (STV 1.0 0.9091)) +(: cnet_isa_c7657eff1a (IsA hirsuteness hairiness) (STV 1.0 0.9091)) +(: cnet_isa_a39617cb18 (IsA hirudinea class) (STV 1.0 0.9091)) +(: cnet_isa_aa98ba7c3f (IsA hirudinidae worm_family) (STV 1.0 0.9091)) +(: cnet_isa_64ba061d18 (IsA hirudo worm_genus) (STV 1.0 0.9091)) +(: cnet_isa_e623a7e49e (IsA hirundinidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_7e8c41d567 (IsA hirundo bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_faaf8fdbf3 (IsA hispanic_american american) (STV 1.0 0.9091)) +(: cnet_isa_09abf24fa5 (IsA hispid_pocket_mouse pocket_mouse) (STV 1.0 0.9091)) +(: cnet_isa_ddb8959398 (IsA hiss noise) (STV 1.0 0.9091)) +(: cnet_isa_a476834eda (IsA hisser communicator) (STV 1.0 0.9091)) +(: cnet_isa_9240c3257a (IsA histaminase enzyme) (STV 1.0 0.9091)) +(: cnet_isa_15c0a27669 (IsA histamine amine) (STV 1.0 0.9091)) +(: cnet_isa_f0c6a46ced (IsA histamine_blocker medicine) (STV 1.0 0.9091)) +(: cnet_isa_1437fca2fd (IsA histamine_headache headache) (STV 1.0 0.9091)) +(: cnet_isa_03c299eac8 (IsA histidine essential_amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_70c7736efa (IsA histiocyte macrophage) (STV 1.0 0.9091)) +(: cnet_isa_731cc9bf02 (IsA histiocytosis blood_disease) (STV 1.0 0.9091)) +(: cnet_isa_5fa43587b7 (IsA histocompatibility organic_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_0968ad9745 (IsA histocompatibility_complex class) (STV 1.0 0.9091)) +(: cnet_isa_31b41da7a8 (IsA histogram bar_chart) (STV 1.0 0.9091)) +(: cnet_isa_c9b29b7eba (IsA histoincompatibility incompatibility) (STV 1.0 0.9091)) +(: cnet_isa_6738d20922 (IsA histologist anatomist) (STV 1.0 0.9091)) +(: cnet_isa_3128ed5f69 (IsA histology microscopic_anatomy) (STV 1.0 0.9091)) +(: cnet_isa_175455a520 (IsA histone simple_protein) (STV 1.0 0.9091)) +(: cnet_isa_0b2da2dfba (IsA historian scholar) (STV 1.0 0.9091)) +(: cnet_isa_8758e4a9ff (IsA historical_document history) (STV 1.0 0.9091)) +(: cnet_isa_dcf88df277 (IsA historical_linguistic linguistic) (STV 1.0 0.9091)) +(: cnet_isa_c3af3557a4 (IsA historical_present present) (STV 1.0 0.9091)) +(: cnet_isa_9c4e7a1401 (IsA historical_school school) (STV 1.0 0.9091)) +(: cnet_isa_21a83358b3 (IsA historicalness significance) (STV 1.0 0.9091)) +(: cnet_isa_8c6147ed6d (IsA historicalness reality) (STV 1.0 0.9091)) +(: cnet_isa_26c5c042b4 (IsA historicism hypothesis) (STV 1.0 0.9091)) +(: cnet_isa_da355569e3 (IsA historiography writing) (STV 1.0 0.9091)) +(: cnet_isa_71bda73e66 (IsA historiography literature) (STV 1.0 0.9091)) +(: cnet_isa_a72a2e005c (IsA history cognition) (STV 1.0 0.9091)) +(: cnet_isa_2b481f0f44 (IsA history humanistic_discipline) (STV 1.0 0.9091)) +(: cnet_isa_f3d7073db0 (IsA history record) (STV 1.0 0.9091)) +(: cnet_isa_54db35d073 (IsA history continuum) (STV 1.0 0.9091)) +(: cnet_isa_f1998e8a18 (IsA history past) (STV 1.0 0.9091)) +(: cnet_isa_a33fa9cd26 (IsA history_department academic_department) (STV 1.0 0.9091)) +(: cnet_isa_074124a297 (IsA history_lesson lesson) (STV 1.0 0.9091)) +(: cnet_isa_cf0fbfb6d7 (IsA histrionic display) (STV 1.0 0.9091)) +(: cnet_isa_67c0bd85d4 (IsA hit joining) (STV 1.0 0.9091)) +(: cnet_isa_ec85c0d9c5 (IsA hit murder) (STV 1.0 0.9091)) +(: cnet_isa_091ffe1fc9 (IsA hit success) (STV 1.0 0.9091)) +(: cnet_isa_1194cd53e5 (IsA hit touch) (STV 1.0 0.9091)) +(: cnet_isa_7bdd7c7dda (IsA hit dose) (STV 1.0 0.9091)) +(: cnet_isa_4cd84fc7a7 (IsA hit deed) (STV 1.0 0.9091)) +(: cnet_isa_de771f7f2d (IsA hit_and_run crime) (STV 1.0 0.9091)) +(: cnet_isa_28d8758d62 (IsA hit_list list) (STV 1.0 0.9091)) +(: cnet_isa_47dff32fa1 (IsA hit_parade list) (STV 1.0 0.9091)) +(: cnet_isa_73896628f9 (IsA hit_parade collection) (STV 1.0 0.9091)) +(: cnet_isa_3b56facf03 (IsA hit_squad team) (STV 1.0 0.9091)) +(: cnet_isa_a7a01ff8f4 (IsA hitch gait) (STV 1.0 0.9091)) +(: cnet_isa_c75f681409 (IsA hitch connection) (STV 1.0 0.9091)) +(: cnet_isa_662bb382de (IsA hitch knot) (STV 1.0 0.9091)) +(: cnet_isa_2ee8b2dd9d (IsA hitchhiker passenger) (STV 1.0 0.9091)) +(: cnet_isa_21b617ced7 (IsA hitching_post post) (STV 1.0 0.9091)) +(: cnet_isa_368e92fab1 (IsA hitchiti muskhogean) (STV 1.0 0.9091)) +(: cnet_isa_eae9dffbef (IsA hitchiti muskogean) (STV 1.0 0.9091)) +(: cnet_isa_3942b2cee8 (IsA hitchrack rail) (STV 1.0 0.9091)) +(: cnet_isa_93c05e3d21 (IsA hitler antisemite) (STV 1.0 0.9091)) +(: cnet_isa_76e532ea95 (IsA hitter mover) (STV 1.0 0.9091)) +(: cnet_isa_59030308b6 (IsA hitting_average average) (STV 1.0 0.9091)) +(: cnet_isa_7ac570485b (IsA hittite anatolian) (STV 1.0 0.9091)) +(: cnet_isa_ba2185da9a (IsA hittite inhabitant) (STV 1.0 0.9091)) +(: cnet_isa_e42558c0c6 (IsA hiv viral_infection) (STV 1.0 0.9091)) +(: cnet_isa_baa5c9eba4 (IsA hive multitude) (STV 1.0 0.9091)) +(: cnet_isa_a30826f362 (IsA hmg_coa_reductase reductase) (STV 1.0 0.9091)) +(: cnet_isa_3c3a6d76e9 (IsA hmong asiatic) (STV 1.0 0.9091)) +(: cnet_isa_b41a0080a6 (IsA hmong_language natural_language) (STV 1.0 0.9091)) +(: cnet_isa_115a40a081 (IsA hoard store) (STV 1.0 0.9091)) +(: cnet_isa_8097aab346 (IsA hoarder saver) (STV 1.0 0.9091)) +(: cnet_isa_2afb2f1680 (IsA hoariness oldness) (STV 1.0 0.9091)) +(: cnet_isa_63558f3b74 (IsA hoary_alison herb) (STV 1.0 0.9091)) +(: cnet_isa_c0c8d2ad0e (IsA hoary_golden_bush shrub) (STV 1.0 0.9091)) +(: cnet_isa_9404d8707f (IsA hoary_marmot marmot) (STV 1.0 0.9091)) +(: cnet_isa_0f1994f42e (IsA hoary_pea subshrub) (STV 1.0 0.9091)) +(: cnet_isa_5f1afc1529 (IsA hoary_plantain plantain) (STV 1.0 0.9091)) +(: cnet_isa_32b2b9662f (IsA hoary_puccoon herb) (STV 1.0 0.9091)) +(: cnet_isa_f420ee31b6 (IsA hoary_willow willow) (STV 1.0 0.9091)) +(: cnet_isa_6ee5b6b866 (IsA hoatzin gallinaceous_bird) (STV 1.0 0.9091)) +(: cnet_isa_939d780430 (IsA hob edge_tool) (STV 1.0 0.9091)) +(: cnet_isa_20782af5e4 (IsA hob shelf) (STV 1.0 0.9091)) +(: cnet_isa_c2d8e00e5c (IsA hobbit imaginary_being) (STV 1.0 0.9091)) +(: cnet_isa_2013142d39 (IsA hobble_skirt skirt) (STV 1.0 0.9091)) +(: cnet_isa_20943960f3 (IsA hobbledehoy young_person) (STV 1.0 0.9091)) +(: cnet_isa_2d5a48de3a (IsA hobbler pedestrian) (STV 1.0 0.9091)) +(: cnet_isa_4a847ab66c (IsA hobby falcon) (STV 1.0 0.9091)) +(: cnet_isa_9a149dea47 (IsA hobby plaything) (STV 1.0 0.9091)) +(: cnet_isa_e40793493a (IsA hobbyhorse preoccupation) (STV 1.0 0.9091)) +(: cnet_isa_a8b808e239 (IsA hobbyism devotion) (STV 1.0 0.9091)) +(: cnet_isa_d01c5ac3bd (IsA hobbyist amateur) (STV 1.0 0.9091)) +(: cnet_isa_d3e8c5cdf9 (IsA hobnail nail) (STV 1.0 0.9091)) +(: cnet_isa_aadf4c2ca1 (IsA hobo_camp camp) (STV 1.0 0.9091)) +(: cnet_isa_b2c52ca27b (IsA hobson_s_choice option) (STV 1.0 0.9091)) +(: cnet_isa_aafea00f4b (IsA hock joint) (STV 1.0 0.9091)) +(: cnet_isa_730fb0e7df (IsA hockey game) (STV 1.0 0.9454)) +(: cnet_isa_86b92b6431 (IsA hockey great_sport) (STV 1.0 0.9454)) +(: cnet_isa_c4286373b3 (IsA hockey popular_sport_in_canada) (STV 1.0 0.9091)) +(: cnet_isa_e5e6cc775d (IsA hockey sport) (STV 1.0 0.9740)) +(: cnet_isa_a16d774de9 (IsA hockey sport_of_skill_and_precision) (STV 1.0 0.9091)) +(: cnet_isa_6e3de6e7ae (IsA hockey team_sport) (STV 1.0 0.9454)) +(: cnet_isa_57b48c3de8 (IsA hockey violent_sport) (STV 1.0 0.9572)) +(: cnet_isa_694dd56a24 (IsA hockey winter_game) (STV 1.0 0.9091)) +(: cnet_isa_e40e052962 (IsA hockey_clinic clinic) (STV 1.0 0.9091)) +(: cnet_isa_27a4440884 (IsA hockey_coach coach) (STV 1.0 0.9091)) +(: cnet_isa_d5966a5352 (IsA hockey_league league) (STV 1.0 0.9091)) +(: cnet_isa_9804c820fb (IsA hockey_player athlete) (STV 1.0 0.9091)) +(: cnet_isa_4bf2433dc8 (IsA hockey_player player) (STV 1.0 0.9091)) +(: cnet_isa_277d94f884 (IsA hockey_season season) (STV 1.0 0.9091)) +(: cnet_isa_fbf58dfd4e (IsA hockey_skate ice_skate) (STV 1.0 0.9091)) +(: cnet_isa_8a03b943be (IsA hockey_stick stick) (STV 1.0 0.9091)) +(: cnet_isa_dd9a4acfa3 (IsA hockey_team team) (STV 1.0 0.9091)) +(: cnet_isa_ae9c6dacb3 (IsA hod box) (STV 1.0 0.9091)) +(: cnet_isa_f52a34645d (IsA hod_carrier laborer) (STV 1.0 0.9091)) +(: cnet_isa_995157dab5 (IsA hodgkin_s_disease lymphoma) (STV 1.0 0.9091)) +(: cnet_isa_86e758542d (IsA hodoscope scientific_instrument) (STV 1.0 0.9091)) +(: cnet_isa_b62e5663d2 (IsA hoe tool) (STV 1.0 0.9091)) +(: cnet_isa_75265174d6 (IsA hoe_handle handle) (STV 1.0 0.9091)) +(: cnet_isa_58d90a577a (IsA hoecake johnnycake) (STV 1.0 0.9091)) +(: cnet_isa_7fd7930765 (IsA hog lamb) (STV 1.0 0.9091)) +(: cnet_isa_6b8f7d7e4d (IsA hog swine) (STV 1.0 0.9091)) +(: cnet_isa_9029edfb41 (IsA hog selfish_person) (STV 1.0 0.9091)) +(: cnet_isa_baeadf04b3 (IsA hog_badger badger) (STV 1.0 0.9091)) +(: cnet_isa_f2cfbfca4a (IsA hog_cholera animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_5072b2b649 (IsA hog_nosed_skunk skunk) (STV 1.0 0.9091)) +(: cnet_isa_0cf86f4ee8 (IsA hog_peanut vine) (STV 1.0 0.9091)) +(: cnet_isa_cbcbc93b4b (IsA hog_plum edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_396eee69d6 (IsA hog_plum fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_574904e7d3 (IsA hog_sucker sucker) (STV 1.0 0.9091)) +(: cnet_isa_5f27c147d7 (IsA hogan lodge) (STV 1.0 0.9091)) +(: cnet_isa_f1479e8fe5 (IsA hogback ridge) (STV 1.0 0.9091)) +(: cnet_isa_b27afb7d24 (IsA hogchoker sole) (STV 1.0 0.9091)) +(: cnet_isa_f7eb74198e (IsA hogfish wrasse) (STV 1.0 0.9091)) +(: cnet_isa_61082e6bce (IsA hogmanay new_year_s_eve) (STV 1.0 0.9091)) +(: cnet_isa_431b7325bb (IsA hognose_bat leafnose_bat) (STV 1.0 0.9091)) +(: cnet_isa_a438d0ff0c (IsA hognose_snake colubrid_snake) (STV 1.0 0.9091)) +(: cnet_isa_ecca7c285b (IsA hogshead barrel) (STV 1.0 0.9091)) +(: cnet_isa_8ed027c496 (IsA hogshead british_capacity_unit) (STV 1.0 0.9091)) +(: cnet_isa_290b69294a (IsA hohenzollern dynasty) (STV 1.0 0.9091)) +(: cnet_isa_817763d16d (IsA hohenzollern royalty) (STV 1.0 0.9091)) +(: cnet_isa_04816109ab (IsA hohenzollern_empire reich) (STV 1.0 0.9091)) +(: cnet_isa_6a50e45500 (IsA hoheria dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8e2e9181e7 (IsA hoist lifting_device) (STV 1.0 0.9091)) +(: cnet_isa_f7f725e685 (IsA hoister operator) (STV 1.0 0.9091)) +(: cnet_isa_36730a591a (IsA hoka native_american) (STV 1.0 0.9091)) +(: cnet_isa_d8284f8e6a (IsA hokan amerind) (STV 1.0 0.9091)) +(: cnet_isa_b07bc2eb7c (IsA holarrhena dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f2dd1db04c (IsA holbrookia reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_f192d46eb5 (IsA holcus monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_46a477b6a0 (IsA hold cell) (STV 1.0 0.9091)) +(: cnet_isa_dc22b2e8e6 (IsA hold stronghold) (STV 1.0 0.9091)) +(: cnet_isa_1c99e3b4be (IsA hold control) (STV 1.0 0.9091)) +(: cnet_isa_af6c279036 (IsA hold_down limitation) (STV 1.0 0.9091)) +(: cnet_isa_9f145351e9 (IsA holder holding_device) (STV 1.0 0.9091)) +(: cnet_isa_8e0dd74c99 (IsA holder owner) (STV 1.0 0.9091)) +(: cnet_isa_56886c171e (IsA holding_cell jail) (STV 1.0 0.9091)) +(: cnet_isa_72ce466c6f (IsA holding_company company) (STV 1.0 0.9091)) +(: cnet_isa_84eab2c3c3 (IsA holding_device device) (STV 1.0 0.9091)) +(: cnet_isa_06169f9e7f (IsA holding_paddock pen) (STV 1.0 0.9091)) +(: cnet_isa_a4d7e9c678 (IsA holding_pattern air_lane) (STV 1.0 0.9091)) +(: cnet_isa_800a8d887f (IsA holding_pattern inaction) (STV 1.0 0.9091)) +(: cnet_isa_e13feb8602 (IsA holdout swindle) (STV 1.0 0.9091)) +(: cnet_isa_4c9b8dbcd1 (IsA holdout bargaining) (STV 1.0 0.9091)) +(: cnet_isa_23edee1841 (IsA holdout negotiator) (STV 1.0 0.9091)) +(: cnet_isa_9b59ce25fa (IsA holdover official) (STV 1.0 0.9091)) +(: cnet_isa_d1909cd5c6 (IsA holdup_man thief) (STV 1.0 0.9091)) +(: cnet_isa_4679841e2a (IsA hole opening) (STV 1.0 0.9091)) +(: cnet_isa_e2ff25e9fd (IsA hole playing_period) (STV 1.0 0.9091)) +(: cnet_isa_d3d66e7b19 (IsA hole natural_depression) (STV 1.0 0.9091)) +(: cnet_isa_4909499e9f (IsA hole space) (STV 1.0 0.9091)) +(: cnet_isa_c41b5df011 (IsA hole defect) (STV 1.0 0.9091)) +(: cnet_isa_a74e3e46b7 (IsA hole_card asset) (STV 1.0 0.9091)) +(: cnet_isa_4b9e02a835 (IsA hole_card playing_card) (STV 1.0 0.9091)) +(: cnet_isa_e4f3b1bef4 (IsA hole_in_wall topographic_point) (STV 1.0 0.9091)) +(: cnet_isa_0c8f33438e (IsA holiday special_day) (STV 1.0 0.9339)) +(: cnet_isa_c0c8825185 (IsA holiday day) (STV 1.0 0.9091)) +(: cnet_isa_db41e2184c (IsA holiday_season season) (STV 1.0 0.9091)) +(: cnet_isa_7ef3253004 (IsA holiness quality) (STV 1.0 0.9091)) +(: cnet_isa_6dfe6e6b74 (IsA holism theory) (STV 1.0 0.9091)) +(: cnet_isa_06572d2776 (IsA holistic_medicine medical_care) (STV 1.0 0.9091)) +(: cnet_isa_ff0ae77109 (IsA holland country) (STV 1.0 0.9572)) +(: cnet_isa_0690070740 (IsA holland country_in_europe) (STV 1.0 0.9091)) +(: cnet_isa_d81bd5f9c8 (IsA hollandaise sauce) (STV 1.0 0.9091)) +(: cnet_isa_9a29b33b57 (IsA hollander european) (STV 1.0 0.9091)) +(: cnet_isa_667c2034ed (IsA hollow valley) (STV 1.0 0.9091)) +(: cnet_isa_1f38c36707 (IsA hollow cavity) (STV 1.0 0.9091)) +(: cnet_isa_9835c7b9ab (IsA hollowness concavity) (STV 1.0 0.9091)) +(: cnet_isa_4dc17a5fa8 (IsA hollowness emptiness) (STV 1.0 0.9091)) +(: cnet_isa_c2ec3e61af (IsA hollowware silverware) (STV 1.0 0.9091)) +(: cnet_isa_7448fecc9d (IsA holly tree) (STV 1.0 0.9091)) +(: cnet_isa_4abf900d33 (IsA holly angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_56f2579ef6 (IsA holly_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_b3f0c503f5 (IsA holly_leaved_cherry wild_plum) (STV 1.0 0.9091)) +(: cnet_isa_41e1963269 (IsA hollyhock mallow) (STV 1.0 0.9091)) +(: cnet_isa_0935ebdb08 (IsA hollywood film_industry) (STV 1.0 0.9091)) +(: cnet_isa_f141b0a5cd (IsA hollywood spirit) (STV 1.0 0.9091)) +(: cnet_isa_db61132853 (IsA hollywood_bowl famous_bowl) (STV 1.0 0.9091)) +(: cnet_isa_e878349db8 (IsA holm_oak oak) (STV 1.0 0.9091)) +(: cnet_isa_3621fcd9d7 (IsA holmium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_1ce15761cb (IsA holocaust destruction) (STV 1.0 0.9091)) +(: cnet_isa_15acb16e9f (IsA holocentridae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_68a5dd814e (IsA holocentrus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_8012ac7b83 (IsA holocentrus_ascensionis squirrelfish) (STV 1.0 0.9091)) +(: cnet_isa_f15579f6be (IsA holocephalan cartilaginous_fish) (STV 1.0 0.9091)) +(: cnet_isa_0157c51c4b (IsA holocephali class) (STV 1.0 0.9091)) +(: cnet_isa_da4b739cc2 (IsA hologram picture) (STV 1.0 0.9091)) +(: cnet_isa_b9acc6a5bd (IsA holography optic) (STV 1.0 0.9091)) +(: cnet_isa_a26df5547a (IsA holometabola insect) (STV 1.0 0.9091)) +(: cnet_isa_3e6b6c7ecd (IsA holometabolism metamorphosis) (STV 1.0 0.9091)) +(: cnet_isa_8ff58b102f (IsA holonym word) (STV 1.0 0.9091)) +(: cnet_isa_1359252f42 (IsA holonymy semantic_relation) (STV 1.0 0.9091)) +(: cnet_isa_dae2313d17 (IsA holophyte plant) (STV 1.0 0.9091)) +(: cnet_isa_1243a4006b (IsA holothuria echinoderm_genus) (STV 1.0 0.9091)) +(: cnet_isa_54bb234afa (IsA holothuridae echinoderm_family) (STV 1.0 0.9091)) +(: cnet_isa_bd4afdfac9 (IsA holothuroidea class) (STV 1.0 0.9091)) +(: cnet_isa_ce377d1b64 (IsA holster belt) (STV 1.0 0.9091)) +(: cnet_isa_f69135537a (IsA holster sheath) (STV 1.0 0.9091)) +(: cnet_isa_01bf94a72c (IsA holy_day_of_obligation christian_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_fb127f913f (IsA holy_eucharist sacrament) (STV 1.0 0.9091)) +(: cnet_isa_f53063ee5e (IsA holy_innocent_day christian_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_ad7044a784 (IsA holy_of_holy sacredness) (STV 1.0 0.9091)) +(: cnet_isa_328fedbcd0 (IsA holy_of_holy sanctuary) (STV 1.0 0.9091)) +(: cnet_isa_4a5e1acbee (IsA holy_order sacrament) (STV 1.0 0.9091)) +(: cnet_isa_bde72caafb (IsA holy_order status) (STV 1.0 0.9091)) +(: cnet_isa_a4965c0d0b (IsA holy_place topographic_point) (STV 1.0 0.9091)) +(: cnet_isa_48dffdb8b8 (IsA holy_roller churchgoer) (STV 1.0 0.9091)) +(: cnet_isa_a84314708c (IsA holy_roman_emperor emperor) (STV 1.0 0.9091)) +(: cnet_isa_fe6f760cb5 (IsA holy_roman_empire political_unit) (STV 1.0 0.9091)) +(: cnet_isa_bfee5a263c (IsA holy_saturday christian_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_a21ddded48 (IsA holy_water water) (STV 1.0 0.9091)) +(: cnet_isa_b486abaee8 (IsA holy_week week) (STV 1.0 0.9091)) +(: cnet_isa_03daac5b08 (IsA holy_year year) (STV 1.0 0.9091)) +(: cnet_isa_914864ca88 (IsA holystone sandstone) (STV 1.0 0.9091)) +(: cnet_isa_f4a40b9b17 (IsA homaridae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_b6e586002b (IsA homarus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_769d00dff4 (IsA home place_where_one_live) (STV 1.0 0.9339)) +(: cnet_isa_149dd9fd8a (IsA home where_heart) (STV 1.0 0.9572)) +(: cnet_isa_298e1ef339 (IsA home where_live) (STV 1.0 0.9339)) +(: cnet_isa_498775f75a (IsA home where_people_live) (STV 1.0 0.9091)) +(: cnet_isa_4e023b3690 (IsA home institution) (STV 1.0 0.9091)) +(: cnet_isa_642fb51020 (IsA home beginning) (STV 1.0 0.9091)) +(: cnet_isa_8184e3782c (IsA home location) (STV 1.0 0.9091)) +(: cnet_isa_a5fffe14df (IsA home residence) (STV 1.0 0.9091)) +(: cnet_isa_14bf84dabd (IsA home environment) (STV 1.0 0.9091)) +(: cnet_isa_6c4fb44df0 (IsA home_appliance appliance) (STV 1.0 0.9091)) +(: cnet_isa_aa23ab3f7e (IsA home_away_from_home home) (STV 1.0 0.9091)) +(: cnet_isa_3069d3545b (IsA home_banking banking) (STV 1.0 0.9091)) +(: cnet_isa_8ffdcab8d9 (IsA home_brew alcohol) (STV 1.0 0.9091)) +(: cnet_isa_e5df73a731 (IsA home_buyer buyer) (STV 1.0 0.9091)) +(: cnet_isa_50057f5326 (IsA home_computer computer) (STV 1.0 0.9091)) +(: cnet_isa_12c5f726c5 (IsA home_court basketball_court) (STV 1.0 0.9091)) +(: cnet_isa_801da71b97 (IsA home_economic social_science) (STV 1.0 0.9091)) +(: cnet_isa_70e3b00087 (IsA home_farm farm) (STV 1.0 0.9091)) +(: cnet_isa_1314f97060 (IsA home_folk folk) (STV 1.0 0.9091)) +(: cnet_isa_2c170286c1 (IsA home_fry potato) (STV 1.0 0.9091)) +(: cnet_isa_9f9fbc57eb (IsA home_front population) (STV 1.0 0.9091)) +(: cnet_isa_94cefea61d (IsA home_game game) (STV 1.0 0.9091)) +(: cnet_isa_f5770da2df (IsA home_guard guard) (STV 1.0 0.9091)) +(: cnet_isa_2e2ae2b0d3 (IsA home_help domestic) (STV 1.0 0.9091)) +(: cnet_isa_1e8eca966c (IsA home_invasion housebreaking) (STV 1.0 0.9091)) +(: cnet_isa_98740861af (IsA home_loan consumer_credit) (STV 1.0 0.9091)) +(: cnet_isa_a3f848bd21 (IsA home_loan loan) (STV 1.0 0.9091)) +(: cnet_isa_7b8698eacd (IsA home_loan_bank depository_financial_institution) (STV 1.0 0.9091)) +(: cnet_isa_d961bd3066 (IsA home_movie movie) (STV 1.0 0.9091)) +(: cnet_isa_e25c8eec16 (IsA home_office ministry) (STV 1.0 0.9091)) +(: cnet_isa_020519781b (IsA home_page web_page) (STV 1.0 0.9091)) +(: cnet_isa_76da0f3cea (IsA home_plate base) (STV 1.0 0.9091)) +(: cnet_isa_559edd0eaf (IsA home_port port) (STV 1.0 0.9091)) +(: cnet_isa_e5174ff3e3 (IsA home_range range) (STV 1.0 0.9091)) +(: cnet_isa_1201bf5d4e (IsA home_room classroom) (STV 1.0 0.9091)) +(: cnet_isa_4de44b87d4 (IsA home_rule self_government) (STV 1.0 0.9091)) +(: cnet_isa_21119f5f9f (IsA home_stand sery) (STV 1.0 0.9091)) +(: cnet_isa_c08af8fca4 (IsA home_study course) (STV 1.0 0.9091)) +(: cnet_isa_6eab564b71 (IsA home_theater theater) (STV 1.0 0.9091)) +(: cnet_isa_ee8259162b (IsA home_truth truth) (STV 1.0 0.9091)) +(: cnet_isa_164d65afcc (IsA homebound people) (STV 1.0 0.9091)) +(: cnet_isa_d4a399d6c8 (IsA homeboy acquaintance) (STV 1.0 0.9091)) +(: cnet_isa_267bb0c7ab (IsA homeboy member) (STV 1.0 0.9091)) +(: cnet_isa_0a20216ac5 (IsA homebuilder builder) (STV 1.0 0.9091)) +(: cnet_isa_759e7a3912 (IsA homecoming reunion) (STV 1.0 0.9091)) +(: cnet_isa_776953b731 (IsA homecourt_advantage advantage) (STV 1.0 0.9091)) +(: cnet_isa_f74622588f (IsA homefolk family) (STV 1.0 0.9091)) +(: cnet_isa_9209906280 (IsA homegirl member) (STV 1.0 0.9091)) +(: cnet_isa_ac747c6b61 (IsA homeland_security executive_department) (STV 1.0 0.9091)) +(: cnet_isa_6b1d7a10b3 (IsA homeless poor_people) (STV 1.0 0.9091)) +(: cnet_isa_fa1b18a77b (IsA homeless unfortunate) (STV 1.0 0.9091)) +(: cnet_isa_d61650cc25 (IsA homelessness social_and_economic_problem) (STV 1.0 0.9091)) +(: cnet_isa_b3dee2a1dc (IsA homelessness condition) (STV 1.0 0.9091)) +(: cnet_isa_033fdde144 (IsA homeliness appearance) (STV 1.0 0.9091)) +(: cnet_isa_f0dcf5330d (IsA homemaking management) (STV 1.0 0.9091)) +(: cnet_isa_f6d1e49505 (IsA homeobox homeotic_gene) (STV 1.0 0.9091)) +(: cnet_isa_dbb603cec1 (IsA homeopath practitioner) (STV 1.0 0.9091)) +(: cnet_isa_b47d85542e (IsA homeopathy medical_care) (STV 1.0 0.9091)) +(: cnet_isa_8de2015463 (IsA homeostasis equilibrium) (STV 1.0 0.9091)) +(: cnet_isa_f5629e885d (IsA homeotic_gene gene) (STV 1.0 0.9091)) +(: cnet_isa_78450fdd76 (IsA homeowner owner) (STV 1.0 0.9091)) +(: cnet_isa_954ca9e6bc (IsA homer base_hit) (STV 1.0 0.9091)) +(: cnet_isa_e2d6ab89d3 (IsA homer volume_unit) (STV 1.0 0.9091)) +(: cnet_isa_f822e69ca9 (IsA homeschooling education) (STV 1.0 0.9091)) +(: cnet_isa_6f5d55d3e0 (IsA homesickness nostalgia) (STV 1.0 0.9091)) +(: cnet_isa_f9202ae8c1 (IsA homespun fabric) (STV 1.0 0.9091)) +(: cnet_isa_a567763afd (IsA homestead dwelling) (STV 1.0 0.9091)) +(: cnet_isa_0110a08180 (IsA homestead estate) (STV 1.0 0.9091)) +(: cnet_isa_b6707b1db8 (IsA homestead land) (STV 1.0 0.9091)) +(: cnet_isa_ed0394bf82 (IsA homestead_law law) (STV 1.0 0.9091)) +(: cnet_isa_b2017b542b (IsA homestretch stretch) (STV 1.0 0.9091)) +(: cnet_isa_8cccacc12d (IsA homestretch end) (STV 1.0 0.9091)) +(: cnet_isa_3dfe309f19 (IsA hometown town) (STV 1.0 0.9091)) +(: cnet_isa_009ccbe74d (IsA homework school_assignment) (STV 1.0 0.9091)) +(: cnet_isa_6afa56b0d3 (IsA homework_problem problem) (STV 1.0 0.9091)) +(: cnet_isa_3a700e8ca1 (IsA homicide killing) (STV 1.0 0.9091)) +(: cnet_isa_bdbb3f89a4 (IsA homiletic art) (STV 1.0 0.9091)) +(: cnet_isa_5a64a51a8a (IsA homiletic theology) (STV 1.0 0.9091)) +(: cnet_isa_0259af729d (IsA homily sermon) (STV 1.0 0.9091)) +(: cnet_isa_3832bb9eb8 (IsA homing_device mechanism) (STV 1.0 0.9091)) +(: cnet_isa_bc0775d2e0 (IsA homing_pigeon domestic_pigeon) (STV 1.0 0.9091)) +(: cnet_isa_89533771bb (IsA homing_torpedo torpedo) (STV 1.0 0.9091)) +(: cnet_isa_70bb8e3534 (IsA hominid primate) (STV 1.0 0.9091)) +(: cnet_isa_d44775f559 (IsA hominidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_17a4f18351 (IsA hominoid primate) (STV 1.0 0.9091)) +(: cnet_isa_767e495b5d (IsA hominoidea class) (STV 1.0 0.9091)) +(: cnet_isa_fe55ea10e5 (IsA hominy corn) (STV 1.0 0.9091)) +(: cnet_isa_2cc618f9b8 (IsA homo hominid) (STV 1.0 0.9091)) +(: cnet_isa_ab66452744 (IsA homo_erectus homo) (STV 1.0 0.9091)) +(: cnet_isa_7ee680ab4d (IsA homo_habilis homo) (STV 1.0 0.9091)) +(: cnet_isa_454b73a381 (IsA homo_heidelbergensis primitive) (STV 1.0 0.9091)) +(: cnet_isa_a3611e7699 (IsA homo_rhodesiensis homo) (STV 1.0 0.9091)) +(: cnet_isa_49ac8c8898 (IsA homo_sapien homo) (STV 1.0 0.9091)) +(: cnet_isa_51fefceee8 (IsA homo_sapien_sapien homo_sapien) (STV 1.0 0.9091)) +(: cnet_isa_6dd3db9ed0 (IsA homo_soloensis homo) (STV 1.0 0.9091)) +(: cnet_isa_489319ba08 (IsA homobasidiomycete class) (STV 1.0 0.9091)) +(: cnet_isa_b0b1bcf442 (IsA homocaust holocaust) (STV 1.0 0.9091)) +(: cnet_isa_40250f5a7b (IsA homocercal_fin tail_fin) (STV 1.0 0.9091)) +(: cnet_isa_fb26b21ef8 (IsA homogenate material) (STV 1.0 0.9091)) +(: cnet_isa_e885b52c5d (IsA homogeneity uniformity) (STV 1.0 0.9091)) +(: cnet_isa_3a9ff5cf4f (IsA homogeneous_polynomial polynomial) (STV 1.0 0.9091)) +(: cnet_isa_0f2d6f9e54 (IsA homogenization blend) (STV 1.0 0.9091)) +(: cnet_isa_0b91aa14c1 (IsA homogenized_milk milk) (STV 1.0 0.9091)) +(: cnet_isa_a71a6c93e9 (IsA homogeny similarity) (STV 1.0 0.9091)) +(: cnet_isa_cb97301852 (IsA homograft graft) (STV 1.0 0.9091)) +(: cnet_isa_1d2319021c (IsA homograph homonym) (STV 1.0 0.9091)) +(: cnet_isa_a4e098afc7 (IsA homogyne asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7f20627dc8 (IsA homoiotherm animal) (STV 1.0 0.9091)) +(: cnet_isa_ea1e1a1a66 (IsA homology similarity) (STV 1.0 0.9091)) +(: cnet_isa_4a3554c512 (IsA homolosine_projection equal_area_projection) (STV 1.0 0.9091)) +(: cnet_isa_e443b74c24 (IsA homomorphism similarity) (STV 1.0 0.9091)) +(: cnet_isa_5cdd13e70d (IsA homona arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_582e666901 (IsA homonym word) (STV 1.0 0.9091)) +(: cnet_isa_95fd37f833 (IsA homonymy linguistic_relation) (STV 1.0 0.9091)) +(: cnet_isa_5673306ba7 (IsA homophobe bigot) (STV 1.0 0.9091)) +(: cnet_isa_58bf276d7e (IsA homophobia bia) (STV 1.0 0.9091)) +(: cnet_isa_02e2ae9cfb (IsA homophone homonym) (STV 1.0 0.9091)) +(: cnet_isa_cc3f51e435 (IsA homophony part_music) (STV 1.0 0.9091)) +(: cnet_isa_9e2401fca2 (IsA homophony pronunciation) (STV 1.0 0.9091)) +(: cnet_isa_8fe5fbce92 (IsA homoptera animal_order) (STV 1.0 0.9091)) +(: cnet_isa_c292560e00 (IsA homopterous_insect insect) (STV 1.0 0.9091)) +(: cnet_isa_ec127eea8c (IsA homosexual person) (STV 1.0 0.9091)) +(: cnet_isa_578e84f58e (IsA homosexuality sexual_orientation) (STV 1.0 0.9339)) +(: cnet_isa_a1a9393be1 (IsA homosexuality sexual_activity) (STV 1.0 0.9091)) +(: cnet_isa_de066d2eab (IsA homospory monogenesis) (STV 1.0 0.9091)) +(: cnet_isa_9e6a38786c (IsA homozygosity state) (STV 1.0 0.9091)) +(: cnet_isa_0228204823 (IsA homozygote zygote) (STV 1.0 0.9091)) +(: cnet_isa_0220ce4041 (IsA homunculus person) (STV 1.0 0.9091)) +(: cnet_isa_212b44bbeb (IsA honda car) (STV 1.0 0.9454)) +(: cnet_isa_6ee9b00744 (IsA honduran central_american) (STV 1.0 0.9091)) +(: cnet_isa_26877d08b4 (IsA honduran_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_efb1c870c5 (IsA hondura_mahogany mahogany) (STV 1.0 0.9091)) +(: cnet_isa_4db66c276f (IsA hondura_rosewood rosewood) (STV 1.0 0.9091)) +(: cnet_isa_a6c3f81ed8 (IsA hone whetstone) (STV 1.0 0.9091)) +(: cnet_isa_2b67747f72 (IsA honest_woman wife) (STV 1.0 0.9091)) +(: cnet_isa_a355a3287f (IsA honesty positive_trait) (STV 1.0 0.9091)) +(: cnet_isa_b03dae9dec (IsA honesty virtue) (STV 1.0 0.9524)) +(: cnet_isa_21085eb363 (IsA honesty righteousness) (STV 1.0 0.9091)) +(: cnet_isa_c287a66096 (IsA honesty herb) (STV 1.0 0.9091)) +(: cnet_isa_1474d0344d (IsA honey thick_liquid) (STV 1.0 0.9091)) +(: cnet_isa_394764c3d1 (IsA honey sweetening) (STV 1.0 0.9091)) +(: cnet_isa_a0be0db25c (IsA honey_bell shrub) (STV 1.0 0.9091)) +(: cnet_isa_4a98b37c08 (IsA honey_bun sweet_roll) (STV 1.0 0.9091)) +(: cnet_isa_e630274e28 (IsA honey_buzzard hawk) (STV 1.0 0.9091)) +(: cnet_isa_355d0f5353 (IsA honey_cake cake) (STV 1.0 0.9091)) +(: cnet_isa_81c055e215 (IsA honey_crisp candy) (STV 1.0 0.9091)) +(: cnet_isa_e9da4b59f9 (IsA honey_eater oscine) (STV 1.0 0.9091)) +(: cnet_isa_554ecd2c60 (IsA honey_guide piciform_bird) (STV 1.0 0.9091)) +(: cnet_isa_b0a043276e (IsA honey_locust locust_tree) (STV 1.0 0.9091)) +(: cnet_isa_de3ab64ae7 (IsA honey_mesquite mesquite) (STV 1.0 0.9091)) +(: cnet_isa_38e3e3585e (IsA honey_mushroom agaric) (STV 1.0 0.9091)) +(: cnet_isa_7e1a0f945c (IsA honey_plant hoya) (STV 1.0 0.9091)) +(: cnet_isa_e5cc299b1b (IsA honeybee bee) (STV 1.0 0.9091)) +(: cnet_isa_0971ccb92e (IsA honeycomb framework) (STV 1.0 0.9091)) +(: cnet_isa_265012c288 (IsA honeycomb structure) (STV 1.0 0.9091)) +(: cnet_isa_faf05f5fdf (IsA honeycomb_tripe tripe) (STV 1.0 0.9091)) +(: cnet_isa_9b517372cf (IsA honeycreeper finch) (STV 1.0 0.9091)) +(: cnet_isa_9994a9b635 (IsA honeycreeper oscine) (STV 1.0 0.9091)) +(: cnet_isa_18481a3e1c (IsA honeydew winter_melon) (STV 1.0 0.9091)) +(: cnet_isa_e49ec8f632 (IsA honeyflower protea) (STV 1.0 0.9091)) +(: cnet_isa_d5b2745d81 (IsA honeyflower shrub) (STV 1.0 0.9091)) +(: cnet_isa_b3a2a6a836 (IsA honeymoon time_period) (STV 1.0 0.9091)) +(: cnet_isa_8f7b555579 (IsA honeymoon vacation) (STV 1.0 0.9091)) +(: cnet_isa_9f590945c3 (IsA honeymoon_resort resort) (STV 1.0 0.9091)) +(: cnet_isa_7781c2b15e (IsA honeypot protea) (STV 1.0 0.9091)) +(: cnet_isa_651a8f9633 (IsA honeysuckle banksia) (STV 1.0 0.9091)) +(: cnet_isa_bc2aa024a0 (IsA honeysuckle shrub) (STV 1.0 0.9091)) +(: cnet_isa_1689ffce30 (IsA hong_kong_dollar dollar) (STV 1.0 0.9091)) +(: cnet_isa_d3f49d0dcc (IsA hongkong in_china) (STV 1.0 0.9091)) +(: cnet_isa_6807f17ac7 (IsA honk cry) (STV 1.0 0.9091)) +(: cnet_isa_ee962819d3 (IsA honker goose) (STV 1.0 0.9091)) +(: cnet_isa_d76b0142aa (IsA honker driver) (STV 1.0 0.9091)) +(: cnet_isa_b0c90dc66b (IsA honkytonk cabaret) (STV 1.0 0.9091)) +(: cnet_isa_fd6dd23905 (IsA honor virtue) (STV 1.0 0.9091)) +(: cnet_isa_24f2c3efd1 (IsA honor righteousness) (STV 1.0 0.9091)) +(: cnet_isa_780d2cff70 (IsA honor standing) (STV 1.0 0.9091)) +(: cnet_isa_80e3a1828f (IsA honor_guard escort) (STV 1.0 0.9091)) +(: cnet_isa_1fb49c1d28 (IsA honor_killing homicide) (STV 1.0 0.9091)) +(: cnet_isa_f1b9442e3d (IsA honor_system system) (STV 1.0 0.9091)) +(: cnet_isa_1c578724e6 (IsA honorable_discharge dismissal) (STV 1.0 0.9091)) +(: cnet_isa_5a402226e8 (IsA honorableness righteousness) (STV 1.0 0.9091)) +(: cnet_isa_2209ff83a2 (IsA honorarium reward) (STV 1.0 0.9091)) +(: cnet_isa_bbce6ce9ad (IsA honorary_degree academic_degree) (STV 1.0 0.9091)) +(: cnet_isa_ae68b6a7d2 (IsA honoree recipient) (STV 1.0 0.9091)) +(: cnet_isa_defdb7670e (IsA honorific formulation) (STV 1.0 0.9091)) +(: cnet_isa_ad4b1a18b9 (IsA honoring conformity) (STV 1.0 0.9091)) +(: cnet_isa_298c631a0e (IsA honour academic_degree) (STV 1.0 0.9091)) +(: cnet_isa_6d7a3d08d6 (IsA hooch alcohol) (STV 1.0 0.9091)) +(: cnet_isa_fa1b6d3b4d (IsA hood covering) (STV 1.0 0.9091)) +(: cnet_isa_f2c3e04058 (IsA hood headdress) (STV 1.0 0.9091)) +(: cnet_isa_f39b3f98d5 (IsA hood protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_81fe8ef8b1 (IsA hood roof) (STV 1.0 0.9091)) +(: cnet_isa_341de6b4c4 (IsA hood neighborhood) (STV 1.0 0.9091)) +(: cnet_isa_52c64948ae (IsA hood vicinity) (STV 1.0 0.9091)) +(: cnet_isa_ecd1cb5d7f (IsA hood criminal) (STV 1.0 0.9091)) +(: cnet_isa_f57203fd29 (IsA hood external_body_part) (STV 1.0 0.9091)) +(: cnet_isa_7d901e513f (IsA hood_latch catch) (STV 1.0 0.9091)) +(: cnet_isa_2e651ec9c2 (IsA hood_ornament decoration) (STV 1.0 0.9091)) +(: cnet_isa_d625cd4fbd (IsA hooded_lady_tress lady_tress) (STV 1.0 0.9091)) +(: cnet_isa_f1feb921a1 (IsA hooded_merganser merganser) (STV 1.0 0.9091)) +(: cnet_isa_255de8f325 (IsA hooded_pitcher_plant pitcher_plant) (STV 1.0 0.9091)) +(: cnet_isa_23e5a02364 (IsA hooded_seal earless_seal) (STV 1.0 0.9091)) +(: cnet_isa_68fa0d5f26 (IsA hooded_skunk skunk) (STV 1.0 0.9091)) +(: cnet_isa_11aeab6568 (IsA hoodoo object) (STV 1.0 0.9091)) +(: cnet_isa_27e77423a6 (IsA hoodoo column) (STV 1.0 0.9091)) +(: cnet_isa_01e3ffae65 (IsA hoodoo priest) (STV 1.0 0.9091)) +(: cnet_isa_fc288f1aa7 (IsA hoodoo voodoo) (STV 1.0 0.9091)) +(: cnet_isa_761201bb37 (IsA hoof animal_foot) (STV 1.0 0.9091)) +(: cnet_isa_b81305dc35 (IsA hoof horny_structure) (STV 1.0 0.9091)) +(: cnet_isa_94f1e67d3b (IsA hoofer dancer) (STV 1.0 0.9091)) +(: cnet_isa_595331be47 (IsA hoofprint mark) (STV 1.0 0.9091)) +(: cnet_isa_9700861586 (IsA hook golf_stroke) (STV 1.0 0.9091)) +(: cnet_isa_5592215fad (IsA hook punch) (STV 1.0 0.9091)) +(: cnet_isa_13b3145d69 (IsA hook catch) (STV 1.0 0.9091)) +(: cnet_isa_6833b409d4 (IsA hook implement) (STV 1.0 0.9091)) +(: cnet_isa_3b0fee4bf0 (IsA hook mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_e6af616fe8 (IsA hook curve) (STV 1.0 0.9091)) +(: cnet_isa_8da14a0e91 (IsA hook_and_eye fastener) (STV 1.0 0.9091)) +(: cnet_isa_6306fdebfe (IsA hook_shot basketball_shot) (STV 1.0 0.9091)) +(: cnet_isa_1fb6c3a097 (IsA hook_wrench wrench) (STV 1.0 0.9091)) +(: cnet_isa_6e7efc217d (IsA hookah pipe) (STV 1.0 0.9091)) +(: cnet_isa_b04992f3c6 (IsA hooke_s_law law) (STV 1.0 0.9091)) +(: cnet_isa_061caf1e61 (IsA hooker_s_green pigment) (STV 1.0 0.9091)) +(: cnet_isa_5d0375a096 (IsA hooker_s_onion wild_onion) (STV 1.0 0.9091)) +(: cnet_isa_e0ce433336 (IsA hooker_s_orchid fringed_orchis) (STV 1.0 0.9091)) +(: cnet_isa_3fdc4028fc (IsA hooker golfer) (STV 1.0 0.9091)) +(: cnet_isa_0d757b03ef (IsA hooker athlete) (STV 1.0 0.9091)) +(: cnet_isa_a62f2291ca (IsA hook hand) (STV 1.0 0.9091)) +(: cnet_isa_72dcf4bcfe (IsA hookup connection) (STV 1.0 0.9091)) +(: cnet_isa_c7ef0970b4 (IsA hookup system) (STV 1.0 0.9091)) +(: cnet_isa_2f6a371e8b (IsA hookworm nematode) (STV 1.0 0.9091)) +(: cnet_isa_899affce29 (IsA hookworm helminthiasis) (STV 1.0 0.9091)) +(: cnet_isa_699325bfc9 (IsA hoop band) (STV 1.0 0.9091)) +(: cnet_isa_0a93062ab7 (IsA hoop skeleton) (STV 1.0 0.9091)) +(: cnet_isa_15d321e27b (IsA hoop_pine araucaria) (STV 1.0 0.9091)) +(: cnet_isa_4ea16502a3 (IsA hoop_snake colubrid_snake) (STV 1.0 0.9091)) +(: cnet_isa_54fc8cb96a (IsA hoopoe coraciiform_bird) (STV 1.0 0.9091)) +(: cnet_isa_269399067d (IsA hoopskirt skirt) (STV 1.0 0.9091)) +(: cnet_isa_423fbba078 (IsA hooray_henry man) (STV 1.0 0.9091)) +(: cnet_isa_daf8338bac (IsA hoosegow jail) (STV 1.0 0.9091)) +(: cnet_isa_152c4ff200 (IsA hoosier american) (STV 1.0 0.9091)) +(: cnet_isa_a4d07fa045 (IsA hoot cry) (STV 1.0 0.9091)) +(: cnet_isa_19f608731d (IsA hoot_owl owl) (STV 1.0 0.9091)) +(: cnet_isa_9e42602501 (IsA hop jump) (STV 1.0 0.9091)) +(: cnet_isa_99be87a5f1 (IsA hop dance) (STV 1.0 0.9091)) +(: cnet_isa_67f66e7409 (IsA hop vine) (STV 1.0 0.9091)) +(: cnet_isa_fcc99b4056 (IsA hop_clover clover) (STV 1.0 0.9091)) +(: cnet_isa_61be2f1225 (IsA hop_garden garden) (STV 1.0 0.9091)) +(: cnet_isa_9e4f2846b4 (IsA hop_hornbeam tree) (STV 1.0 0.9091)) +(: cnet_isa_0cc68d3ca7 (IsA hop_picker machine) (STV 1.0 0.9091)) +(: cnet_isa_8f5ad38e1d (IsA hop_pole post) (STV 1.0 0.9091)) +(: cnet_isa_588df1ca26 (IsA hope feeling) (STV 1.0 0.9091)) +(: cnet_isa_2c26c54ffb (IsA hope theological_virtue) (STV 1.0 0.9091)) +(: cnet_isa_8e824ece71 (IsA hope anticipation) (STV 1.0 0.9091)) +(: cnet_isa_6abb38b5e7 (IsA hope person) (STV 1.0 0.9091)) +(: cnet_isa_ef7a963473 (IsA hope_chest chest) (STV 1.0 0.9091)) +(: cnet_isa_10edd77917 (IsA hopefulness hope) (STV 1.0 0.9091)) +(: cnet_isa_9d7b5bd266 (IsA hopefulness condition) (STV 1.0 0.9091)) +(: cnet_isa_b24c220da1 (IsA hopelessness despair) (STV 1.0 0.9091)) +(: cnet_isa_6a59439e67 (IsA hoper person) (STV 1.0 0.9091)) +(: cnet_isa_343f8ac11f (IsA hopi tribe_of_native_american) (STV 1.0 0.9091)) +(: cnet_isa_33e4079410 (IsA hopi shoshonean) (STV 1.0 0.9091)) +(: cnet_isa_1b5f632928 (IsA hopi pueblo) (STV 1.0 0.9091)) +(: cnet_isa_12653e6a59 (IsA hopi shoshoni) (STV 1.0 0.9091)) +(: cnet_isa_505c999255 (IsA hopper receptacle) (STV 1.0 0.9091)) +(: cnet_isa_d9c3cafaa2 (IsA hopper bounder) (STV 1.0 0.9091)) +(: cnet_isa_4542aaaa95 (IsA hopsacking fabric) (STV 1.0 0.9091)) +(: cnet_isa_d7df4ca518 (IsA hopscotch child_s_game) (STV 1.0 0.9091)) +(: cnet_isa_f295e46095 (IsA horatian_ode ode) (STV 1.0 0.9091)) +(: cnet_isa_bc91480184 (IsA horde community) (STV 1.0 0.9091)) +(: cnet_isa_c2d4aa74df (IsA horde multitude) (STV 1.0 0.9091)) +(: cnet_isa_dfa30e8727 (IsA hordeum monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_db0be10351 (IsA horehound candy) (STV 1.0 0.9091)) +(: cnet_isa_ae32affeff (IsA horehound herb) (STV 1.0 0.9091)) +(: cnet_isa_d87ff1c3e5 (IsA horizon scope) (STV 1.0 0.9091)) +(: cnet_isa_afff662fb1 (IsA horizon great_circle) (STV 1.0 0.9091)) +(: cnet_isa_11d7ff0d93 (IsA horizon line) (STV 1.0 0.9091)) +(: cnet_isa_f29727ede4 (IsA horizon stratum) (STV 1.0 0.9091)) +(: cnet_isa_87df020e3d (IsA horizontal orientation) (STV 1.0 0.9091)) +(: cnet_isa_89f5b6415e (IsA horizontal_bar gymnastic_apparatus) (STV 1.0 0.9091)) +(: cnet_isa_74e2944805 (IsA horizontal_integration consolidation) (STV 1.0 0.9091)) +(: cnet_isa_6116b76b85 (IsA horizontal_parallax geocentric_parallax) (STV 1.0 0.9091)) +(: cnet_isa_09aa13753a (IsA horizontal_section mechanical_drawing) (STV 1.0 0.9091)) +(: cnet_isa_9b7e5bcabe (IsA horizontal_stabilizer airfoil) (STV 1.0 0.9091)) +(: cnet_isa_6ec10d0186 (IsA horizontal_surface surface) (STV 1.0 0.9091)) +(: cnet_isa_d02fd1d1b6 (IsA horizontal_tail stabilizer) (STV 1.0 0.9091)) +(: cnet_isa_bfd82a2ab8 (IsA horizontality position) (STV 1.0 0.9091)) +(: cnet_isa_44629d75c0 (IsA hormone secretion) (STV 1.0 0.9091)) +(: cnet_isa_097b2dc320 (IsA hormone_replacement_therapy therapy) (STV 1.0 0.9091)) +(: cnet_isa_aff9c5dcce (IsA horn musical_instrument) (STV 1.0 0.9748)) +(: cnet_isa_5775cf6335 (IsA horn process) (STV 1.0 0.9091)) +(: cnet_isa_d07d1bca90 (IsA horn alarm) (STV 1.0 0.9091)) +(: cnet_isa_90046e9e86 (IsA horn device) (STV 1.0 0.9091)) +(: cnet_isa_04f9a24333 (IsA horn pommel) (STV 1.0 0.9091)) +(: cnet_isa_295ea695cf (IsA horn noisemaker) (STV 1.0 0.9091)) +(: cnet_isa_ffcc0558cb (IsA horn animal_material) (STV 1.0 0.9091)) +(: cnet_isa_226cc88c29 (IsA horn_button push_button) (STV 1.0 0.9091)) +(: cnet_isa_d1a71d12ed (IsA horn_fly fly) (STV 1.0 0.9091)) +(: cnet_isa_beb2c47381 (IsA horn_of_plenty symbol) (STV 1.0 0.9091)) +(: cnet_isa_2f74941661 (IsA horn_poppy flower) (STV 1.0 0.9091)) +(: cnet_isa_b121143ce2 (IsA hornbeam tree) (STV 1.0 0.9091)) +(: cnet_isa_9aeaf010b0 (IsA hornbill coraciiform_bird) (STV 1.0 0.9091)) +(: cnet_isa_1d2c8fc5fc (IsA hornblende amphibole) (STV 1.0 0.9091)) +(: cnet_isa_f2e87d43f6 (IsA hornbook primer) (STV 1.0 0.9091)) +(: cnet_isa_515eaed282 (IsA horned_chameleon chameleon) (STV 1.0 0.9091)) +(: cnet_isa_f0508754ca (IsA horned_lizard iguanid) (STV 1.0 0.9091)) +(: cnet_isa_9d41b3b9fb (IsA horned_owl owl) (STV 1.0 0.9091)) +(: cnet_isa_38face7f58 (IsA horned_pondweed pondweed) (STV 1.0 0.9091)) +(: cnet_isa_89aaf7dc44 (IsA horned_pout bullhead) (STV 1.0 0.9091)) +(: cnet_isa_d2fed18ccd (IsA horned_puffin puffin) (STV 1.0 0.9091)) +(: cnet_isa_3564963eff (IsA horned_screamer screamer) (STV 1.0 0.9091)) +(: cnet_isa_070e22cb1c (IsA horned_violet viola) (STV 1.0 0.9091)) +(: cnet_isa_996d7b84fa (IsA horned_viper viper) (STV 1.0 0.9091)) +(: cnet_isa_359ed7cff4 (IsA horned_whiff whiff) (STV 1.0 0.9091)) +(: cnet_isa_3badcf6b61 (IsA horneophyton fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_8e0e62a643 (IsA horner_s_syndrome syndrome) (STV 1.0 0.9091)) +(: cnet_isa_a49c7b3c87 (IsA hornet_s_nest situation) (STV 1.0 0.9091)) +(: cnet_isa_56182c7d9c (IsA hornet vespid) (STV 1.0 0.9091)) +(: cnet_isa_5782b4382d (IsA hornfel metamorphic_rock) (STV 1.0 0.9091)) +(: cnet_isa_8edff7279c (IsA horniness sexual_arousal) (STV 1.0 0.9091)) +(: cnet_isa_1a22820d98 (IsA hornist musician) (STV 1.0 0.9091)) +(: cnet_isa_d1175d87a6 (IsA hornpipe folk_dancing) (STV 1.0 0.9091)) +(: cnet_isa_fedfadbd97 (IsA hornpipe single_reed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_bede0815c4 (IsA hornpipe dance_music) (STV 1.0 0.9091)) +(: cnet_isa_16b0f087e6 (IsA hornwort aquatic_plant) (STV 1.0 0.9091)) +(: cnet_isa_e6e89ce403 (IsA hornwort liverwort) (STV 1.0 0.9091)) +(: cnet_isa_51f43e7127 (IsA horny_structure structure) (STV 1.0 0.9091)) +(: cnet_isa_f8acd55425 (IsA horology art) (STV 1.0 0.9091)) +(: cnet_isa_fdc5c6e20a (IsA horoscope diagram) (STV 1.0 0.9091)) +(: cnet_isa_3fb5e7bb57 (IsA horoscope prediction) (STV 1.0 0.9091)) +(: cnet_isa_f6f74a5a78 (IsA horoscopy astrology) (STV 1.0 0.9091)) +(: cnet_isa_12ab96cfe6 (IsA horror thing) (STV 1.0 0.9091)) +(: cnet_isa_18725dbd7b (IsA horror fear) (STV 1.0 0.9091)) +(: cnet_isa_a9f39c8d33 (IsA hor_d_oeuvre appetizer) (STV 1.0 0.9091)) +(: cnet_isa_2600c0d83a (IsA horse_s_foot hoof) (STV 1.0 0.9091)) +(: cnet_isa_639c4da65c (IsA horse equine) (STV 1.0 0.9091)) +(: cnet_isa_63907a43dc (IsA horse gymnastic_apparatus) (STV 1.0 0.9091)) +(: cnet_isa_cec588fb0a (IsA horse_balm herb) (STV 1.0 0.9091)) +(: cnet_isa_15b8ae0671 (IsA horse_botfly botfly) (STV 1.0 0.9091)) +(: cnet_isa_e666cc9272 (IsA horse_breeding breeding) (STV 1.0 0.9091)) +(: cnet_isa_313c5555fc (IsA horse_cart cart) (STV 1.0 0.9091)) +(: cnet_isa_88e40bb376 (IsA horse_cassia cassia) (STV 1.0 0.9091)) +(: cnet_isa_635251df9d (IsA horse_cavalry cavalry) (STV 1.0 0.9091)) +(: cnet_isa_a961f85104 (IsA horse_chestnut angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_70e298a223 (IsA horse_doctor veterinarian) (STV 1.0 0.9091)) +(: cnet_isa_ca2bd2a9d3 (IsA horse_drawn_vehicle wheeled_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_6edc998b66 (IsA horse_gram legume) (STV 1.0 0.9091)) +(: cnet_isa_2a9e8b4bc2 (IsA horse_jumping olympic_sport) (STV 1.0 0.9339)) +(: cnet_isa_1fbb444e7e (IsA horse_latitude latitude) (STV 1.0 0.9091)) +(: cnet_isa_21f7deb6bf (IsA horse_mackerel scad) (STV 1.0 0.9091)) +(: cnet_isa_4a276be518 (IsA horse_manure manure) (STV 1.0 0.9091)) +(: cnet_isa_4bbbbc5427 (IsA horse_mushroom agaric) (STV 1.0 0.9091)) +(: cnet_isa_a7e251d9b9 (IsA horse_nettle nightshade) (STV 1.0 0.9091)) +(: cnet_isa_71893ff247 (IsA horse_pistol pistol) (STV 1.0 0.9091)) +(: cnet_isa_ef6973d674 (IsA horse_race race) (STV 1.0 0.9091)) +(: cnet_isa_7bcc5433a4 (IsA horse_racing racing) (STV 1.0 0.9091)) +(: cnet_isa_3e16abbe34 (IsA horse_riding olympic_sport) (STV 1.0 0.9524)) +(: cnet_isa_f50288b8b4 (IsA horse_tick louse_fly) (STV 1.0 0.9091)) +(: cnet_isa_105eeb9550 (IsA horse_trade barter) (STV 1.0 0.9091)) +(: cnet_isa_5b6aac1d7b (IsA horse_trader trader) (STV 1.0 0.9091)) +(: cnet_isa_b928051b34 (IsA horse_trading negotiation) (STV 1.0 0.9091)) +(: cnet_isa_d4a77a70c8 (IsA horse_trail trail) (STV 1.0 0.9091)) +(: cnet_isa_1ca839e0da (IsA horse_wrangler cowboy) (STV 1.0 0.9091)) +(: cnet_isa_3bd16b25d0 (IsA horseback body_part) (STV 1.0 0.9091)) +(: cnet_isa_50d51585da (IsA horseback_riding good_way_to_enjoy_nature) (STV 1.0 0.9091)) +(: cnet_isa_5196c0f4d4 (IsA horsebox conveyance) (STV 1.0 0.9091)) +(: cnet_isa_70c24429cc (IsA horsecar streetcar) (STV 1.0 0.9091)) +(: cnet_isa_7750947e58 (IsA horsecloth caparison) (STV 1.0 0.9091)) +(: cnet_isa_bf26e06b1d (IsA horsefly gadfly) (STV 1.0 0.9091)) +(: cnet_isa_b759ca130f (IsA horsehair fabric) (STV 1.0 0.9091)) +(: cnet_isa_36ebb363f7 (IsA horsehair animal_fiber) (STV 1.0 0.9091)) +(: cnet_isa_0ed323da41 (IsA horsehair_lichen lichen) (STV 1.0 0.9091)) +(: cnet_isa_75f6000129 (IsA horsehair_wig wig) (STV 1.0 0.9091)) +(: cnet_isa_cbd9aa3081 (IsA horsehide leather) (STV 1.0 0.9091)) +(: cnet_isa_553a8738b7 (IsA horseleech leech) (STV 1.0 0.9091)) +(: cnet_isa_267a2a9334 (IsA horseless_carriage car) (STV 1.0 0.9091)) +(: cnet_isa_0977b4463c (IsA horseman animal_fancier) (STV 1.0 0.9091)) +(: cnet_isa_987928ba55 (IsA horseman rider) (STV 1.0 0.9091)) +(: cnet_isa_63d0a7e10c (IsA horsemanship skill) (STV 1.0 0.9091)) +(: cnet_isa_7264b07ae0 (IsA horsemeat meat) (STV 1.0 0.9091)) +(: cnet_isa_8f442e23e0 (IsA horsemint mint) (STV 1.0 0.9091)) +(: cnet_isa_65fc0b5bfa (IsA horsemint monarda) (STV 1.0 0.9091)) +(: cnet_isa_637815da05 (IsA horseplay play) (STV 1.0 0.9091)) +(: cnet_isa_1033d2b538 (IsA horsepond pond) (STV 1.0 0.9091)) +(: cnet_isa_83876d8477 (IsA horsepower power_unit) (STV 1.0 0.9091)) +(: cnet_isa_f10827916a (IsA horsepower_hour work_unit) (STV 1.0 0.9091)) +(: cnet_isa_4702c3e0a2 (IsA horseradish condiment) (STV 1.0 0.9091)) +(: cnet_isa_5743c083c3 (IsA horseradish herb) (STV 1.0 0.9091)) +(: cnet_isa_d4838709e8 (IsA horseradish root) (STV 1.0 0.9091)) +(: cnet_isa_b919f64442 (IsA horseradish_peroxidase peroxidase) (STV 1.0 0.9091)) +(: cnet_isa_1190a7d66a (IsA horseradish_sauce sauce) (STV 1.0 0.9091)) +(: cnet_isa_3b3771e0a7 (IsA hors domesticated_animal) (STV 1.0 0.9091)) +(: cnet_isa_0f6efefa59 (IsA hors expensive_pet) (STV 1.0 0.9091)) +(: cnet_isa_e906a14ce1 (IsA hors not_human) (STV 1.0 0.9091)) +(: cnet_isa_333cb96583 (IsA horseshoe game_equipment) (STV 1.0 0.9091)) +(: cnet_isa_7ad4bb08d0 (IsA horseshoe plate) (STV 1.0 0.9091)) +(: cnet_isa_f6d6fbcc51 (IsA horseshoe_bat leafnose_bat) (STV 1.0 0.9091)) +(: cnet_isa_ffaedcb55f (IsA horseshoe_crab arthropod) (STV 1.0 0.9091)) +(: cnet_isa_fa5ebfac5d (IsA horseshoe_vetch subshrub) (STV 1.0 0.9091)) +(: cnet_isa_8cf97c9b18 (IsA horseshoe_whipsnake racer) (STV 1.0 0.9091)) +(: cnet_isa_11858c47e7 (IsA horseshow show) (STV 1.0 0.9091)) +(: cnet_isa_aaaad21f7e (IsA horsetail fern_ally) (STV 1.0 0.9091)) +(: cnet_isa_0ac71eb7e6 (IsA horseweed weed) (STV 1.0 0.9091)) +(: cnet_isa_ed33637188 (IsA horsewhip whip) (STV 1.0 0.9091)) +(: cnet_isa_b0d7b999af (IsA horsewhipping whipping) (STV 1.0 0.9091)) +(: cnet_isa_56b1c7c22e (IsA horsewoman horseman) (STV 1.0 0.9091)) +(: cnet_isa_9c50a23a18 (IsA horst crust) (STV 1.0 0.9091)) +(: cnet_isa_c18992a3a4 (IsA horsy_set set) (STV 1.0 0.9091)) +(: cnet_isa_813e96f9e8 (IsA hortensia hydrangea) (STV 1.0 0.9091)) +(: cnet_isa_0f48e9a02e (IsA horticulturist expert) (STV 1.0 0.9091)) +(: cnet_isa_5f4a897594 (IsA hosanna cry) (STV 1.0 0.9091)) +(: cnet_isa_124b7c5677 (IsA hose garment) (STV 1.0 0.9091)) +(: cnet_isa_a51c7463d6 (IsA hose tube) (STV 1.0 0.9091)) +(: cnet_isa_38edeadb1f (IsA hosier shopkeeper) (STV 1.0 0.9091)) +(: cnet_isa_2777f603ff (IsA hosiery footwear) (STV 1.0 0.9091)) +(: cnet_isa_30876b2da7 (IsA hospice medical_care) (STV 1.0 0.9091)) +(: cnet_isa_b09590febd (IsA hospice housing) (STV 1.0 0.9091)) +(: cnet_isa_41de2a0d09 (IsA hospitableness friendliness) (STV 1.0 0.9091)) +(: cnet_isa_0838634481 (IsA hospital medical_building) (STV 1.0 0.9091)) +(: cnet_isa_7cf1353cc8 (IsA hospital medical_institution) (STV 1.0 0.9091)) +(: cnet_isa_af5703fc4f (IsA hospital_bed single_bed) (STV 1.0 0.9091)) +(: cnet_isa_386df7a6b4 (IsA hospital_chaplain chaplain) (STV 1.0 0.9091)) +(: cnet_isa_e3e4e8d9f6 (IsA hospital_occupancy occupancy_rate) (STV 1.0 0.9091)) +(: cnet_isa_cf22bd0cc6 (IsA hospital_room room) (STV 1.0 0.9091)) +(: cnet_isa_3a4ffd51a3 (IsA hospital_ship ship) (STV 1.0 0.9091)) +(: cnet_isa_b15501d07b (IsA hospital_train train) (STV 1.0 0.9091)) +(: cnet_isa_9aff2edf7a (IsA hospitalization medical_care) (STV 1.0 0.9091)) +(: cnet_isa_f64d087eaf (IsA hospitalization condition) (STV 1.0 0.9091)) +(: cnet_isa_4d5f90df59 (IsA hospitalization time_period) (STV 1.0 0.9091)) +(: cnet_isa_add2927c65 (IsA hospitalization_insurance health_insurance) (STV 1.0 0.9091)) +(: cnet_isa_242621a60c (IsA host organism) (STV 1.0 0.9091)) +(: cnet_isa_243f5652c7 (IsA host bread) (STV 1.0 0.9091)) +(: cnet_isa_0f15997712 (IsA host army) (STV 1.0 0.9091)) +(: cnet_isa_2a1fb8ef35 (IsA host organization) (STV 1.0 0.9091)) +(: cnet_isa_a7460d1113 (IsA host recipient) (STV 1.0 0.9091)) +(: cnet_isa_3b5e001197 (IsA host adult) (STV 1.0 0.9091)) +(: cnet_isa_bc66b5bde8 (IsA host patron) (STV 1.0 0.9091)) +(: cnet_isa_ad01ed6b2a (IsA hosta liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_78c59e2260 (IsA hostaceae liliid_monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_28ac669123 (IsA hostage prisoner) (STV 1.0 0.9091)) +(: cnet_isa_1f5bc31839 (IsA hostel hotel) (STV 1.0 0.9091)) +(: cnet_isa_b738039cdc (IsA hostel housing) (STV 1.0 0.9091)) +(: cnet_isa_693171a0b2 (IsA hosteller traveler) (STV 1.0 0.9091)) +(: cnet_isa_431679142b (IsA hostess host) (STV 1.0 0.9091)) +(: cnet_isa_ae3a484c2c (IsA hostile military_personnel) (STV 1.0 0.9091)) +(: cnet_isa_25f58a4810 (IsA hostile_fire fire) (STV 1.0 0.9091)) +(: cnet_isa_60097a5ca2 (IsA hostile_takeover takeover) (STV 1.0 0.9091)) +(: cnet_isa_0fd5139c77 (IsA hostility combat) (STV 1.0 0.9091)) +(: cnet_isa_b405ca8758 (IsA hostility unfriendliness) (STV 1.0 0.9091)) +(: cnet_isa_60ed3eb245 (IsA hostility hate) (STV 1.0 0.9091)) +(: cnet_isa_c47306ad1b (IsA hostility state) (STV 1.0 0.9091)) +(: cnet_isa_67a6f0e31e (IsA hot_air lighter_than_cold_air) (STV 1.0 0.9339)) +(: cnet_isa_731b584f59 (IsA hot_air lighter_than_cool_air) (STV 1.0 0.9091)) +(: cnet_isa_10c8b50b3e (IsA hot_air air) (STV 1.0 0.9091)) +(: cnet_isa_b196b8e670 (IsA hot_air_balloon balloon) (STV 1.0 0.9091)) +(: cnet_isa_3bb05ed464 (IsA hot_and_cold opposite) (STV 1.0 0.9091)) +(: cnet_isa_e5b3a88ac2 (IsA hot_button_issue issue) (STV 1.0 0.9091)) +(: cnet_isa_c3e7cee0f2 (IsA hot_cereal cereal) (STV 1.0 0.9091)) +(: cnet_isa_28cd0b5dee (IsA hot_flash symptom) (STV 1.0 0.9091)) +(: cnet_isa_22b828b7e1 (IsA hot_fudge_sauce chocolate_sauce) (STV 1.0 0.9091)) +(: cnet_isa_6b7b3260e3 (IsA hot_jazz jazz) (STV 1.0 0.9091)) +(: cnet_isa_7c4e54e875 (IsA hot_line telephone_line) (STV 1.0 0.9091)) +(: cnet_isa_cc823474fb (IsA hot_medium medium) (STV 1.0 0.9091)) +(: cnet_isa_11034ddd86 (IsA hot_pant short_pant) (STV 1.0 0.9091)) +(: cnet_isa_6622bc0045 (IsA hot_pepper pepper) (STV 1.0 0.9091)) +(: cnet_isa_67820e5189 (IsA hot_plate kitchen_appliance) (STV 1.0 0.9091)) +(: cnet_isa_05ff6c1d5a (IsA hot_pot stew) (STV 1.0 0.9091)) +(: cnet_isa_99157d2c2b (IsA hot_potato situation) (STV 1.0 0.9091)) +(: cnet_isa_6dd2b68eef (IsA hot_rock_penstemon wildflower) (STV 1.0 0.9091)) +(: cnet_isa_4270919e34 (IsA hot_rod car) (STV 1.0 0.9091)) +(: cnet_isa_6b4912e41d (IsA hot_sauce sauce) (STV 1.0 0.9091)) +(: cnet_isa_91517ba363 (IsA hot_seat position) (STV 1.0 0.9091)) +(: cnet_isa_528133e025 (IsA hot_spell while) (STV 1.0 0.9091)) +(: cnet_isa_4242a20b39 (IsA hot_spot spot) (STV 1.0 0.9091)) +(: cnet_isa_dea203f80c (IsA hot_spot geographical_area) (STV 1.0 0.9091)) +(: cnet_isa_fc5faf0210 (IsA hot_spot point) (STV 1.0 0.9091)) +(: cnet_isa_7b64175954 (IsA hot_spring spring) (STV 1.0 0.9091)) +(: cnet_isa_64470585e3 (IsA hot_stock stock) (STV 1.0 0.9091)) +(: cnet_isa_29f013f2d3 (IsA hot_stuff popularity) (STV 1.0 0.9091)) +(: cnet_isa_82cd06298e (IsA hot_stuff quality) (STV 1.0 0.9091)) +(: cnet_isa_7f69b59456 (IsA hot_toddy mixed_drink) (STV 1.0 0.9091)) +(: cnet_isa_0c543e9cb4 (IsA hot_tub bathtub) (STV 1.0 0.9091)) +(: cnet_isa_bd6c10f2c4 (IsA hot_war war) (STV 1.0 0.9091)) +(: cnet_isa_0cb7497361 (IsA hot_water predicament) (STV 1.0 0.9091)) +(: cnet_isa_27a7797a80 (IsA hot_water_bottle receptacle) (STV 1.0 0.9091)) +(: cnet_isa_442fcb85a5 (IsA hot_weather weather) (STV 1.0 0.9091)) +(: cnet_isa_7fc2f674bd (IsA hotbed bed) (STV 1.0 0.9091)) +(: cnet_isa_0526066c6a (IsA hotbed situation) (STV 1.0 0.9091)) +(: cnet_isa_8b729c9741 (IsA hotbox journal_bearing) (STV 1.0 0.9091)) +(: cnet_isa_c2c208800f (IsA hotchpotch stew) (STV 1.0 0.9091)) +(: cnet_isa_55908e203d (IsA hotdog sandwich) (STV 1.0 0.9091)) +(: cnet_isa_6172fa4791 (IsA hotdog exhibitionist) (STV 1.0 0.9091)) +(: cnet_isa_3c8542dea8 (IsA hotel building) (STV 1.0 0.9091)) +(: cnet_isa_bc082a327f (IsA hotel_bill bill) (STV 1.0 0.9091)) +(: cnet_isa_72c3a5a02c (IsA hotel_casino building) (STV 1.0 0.9091)) +(: cnet_isa_ac8759e2d7 (IsA hotel_casino place_of_business) (STV 1.0 0.9091)) +(: cnet_isa_32f4aceab7 (IsA hotel_detective private_detective) (STV 1.0 0.9091)) +(: cnet_isa_086ebbf665 (IsA hotel_occupancy occupancy_rate) (STV 1.0 0.9091)) +(: cnet_isa_526395440a (IsA hotel_plan design) (STV 1.0 0.9091)) +(: cnet_isa_7aca293693 (IsA hotel_room bedroom) (STV 1.0 0.9091)) +(: cnet_isa_8a1f8c7fd3 (IsA hotelier administrator) (STV 1.0 0.9091)) +(: cnet_isa_b5a5b12966 (IsA hotfoot practical_joke) (STV 1.0 0.9091)) +(: cnet_isa_10e4182dc9 (IsA hotness spiciness) (STV 1.0 0.9091)) +(: cnet_isa_7248435a24 (IsA hotness temperature) (STV 1.0 0.9091)) +(: cnet_isa_557963e7b3 (IsA hot sexual_desire) (STV 1.0 0.9091)) +(: cnet_isa_be841cf61d (IsA hotspur adventurer) (STV 1.0 0.9091)) +(: cnet_isa_e542bc44da (IsA hottentot_bread root) (STV 1.0 0.9091)) +(: cnet_isa_d04bd806f3 (IsA hottentot_fig succulent) (STV 1.0 0.9091)) +(: cnet_isa_f8d7265af4 (IsA hottonia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7a7ded3205 (IsA hound_s_tongue herb) (STV 1.0 0.9091)) +(: cnet_isa_5fe17d0d0d (IsA hound hunting_dog) (STV 1.0 0.9091)) +(: cnet_isa_1ff2efa38f (IsA houndstooth_check check) (STV 1.0 0.9091)) +(: cnet_isa_b154d2c703 (IsA hour distance) (STV 1.0 0.9091)) +(: cnet_isa_d8ba7f776c (IsA hour clock_time) (STV 1.0 0.9091)) +(: cnet_isa_cefd7ad1e3 (IsA hour time_period) (STV 1.0 0.9091)) +(: cnet_isa_6e5299442f (IsA hour time_unit) (STV 1.0 0.9091)) +(: cnet_isa_f77b11f447 (IsA hour_angle angular_distance) (STV 1.0 0.9091)) +(: cnet_isa_e1da20b5a1 (IsA hour_angle distance) (STV 1.0 0.9091)) +(: cnet_isa_1159dc560f (IsA hour_circle great_circle) (STV 1.0 0.9091)) +(: cnet_isa_c7adc9fe0d (IsA hour_hand hand) (STV 1.0 0.9091)) +(: cnet_isa_efa1e155bb (IsA hourglass old_way_of_telling_time) (STV 1.0 0.9524)) +(: cnet_isa_a26e47b9e0 (IsA hourglass way_to_measure_time) (STV 1.0 0.9091)) +(: cnet_isa_f91bbcd784 (IsA hourglass sandglass) (STV 1.0 0.9091)) +(: cnet_isa_87a6b09331 (IsA houri mythical_being) (STV 1.0 0.9091)) +(: cnet_isa_e0cc7bdce6 (IsA hour work_time) (STV 1.0 0.9091)) +(: cnet_isa_9061a01641 (IsA house place_and_thing) (STV 1.0 0.9454)) +(: cnet_isa_47d0c81739 (IsA house shelter) (STV 1.0 0.9339)) +(: cnet_isa_ee6a63508c (IsA house thing) (STV 1.0 0.9091)) +(: cnet_isa_23917b92b4 (IsA house tv_show) (STV 1.0 0.9091)) +(: cnet_isa_4d7d7639c1 (IsA house play) (STV 1.0 0.9091)) +(: cnet_isa_72ca15d060 (IsA house building) (STV 1.0 0.9091)) +(: cnet_isa_85ae61acc0 (IsA house dwelling) (STV 1.0 0.9091)) +(: cnet_isa_edb3e4a72b (IsA house audience) (STV 1.0 0.9091)) +(: cnet_isa_3d22c44605 (IsA house community) (STV 1.0 0.9091)) +(: cnet_isa_f25d374387 (IsA house family) (STV 1.0 0.9091)) +(: cnet_isa_3404119c95 (IsA house legislature) (STV 1.0 0.9091)) +(: cnet_isa_5c4c3dd798 (IsA house management) (STV 1.0 0.9091)) +(: cnet_isa_94d6cfcd64 (IsA house_arrest confinement) (STV 1.0 0.9091)) +(: cnet_isa_cad8b9ae09 (IsA house_centipede centipede) (STV 1.0 0.9091)) +(: cnet_isa_7cd1e52436 (IsA house_finch finch) (STV 1.0 0.9091)) +(: cnet_isa_e805ccc0aa (IsA house_guest guest) (STV 1.0 0.9091)) +(: cnet_isa_3de2abd334 (IsA house_hold_oil lubricant) (STV 1.0 0.9091)) +(: cnet_isa_a5bf470586 (IsA house_hold_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_f0dcb3b8dc (IsA house_husband husband) (STV 1.0 0.9091)) +(: cnet_isa_342a813a32 (IsA house_keeper servant) (STV 1.0 0.9091)) +(: cnet_isa_2688db93b4 (IsA house_martin martin) (STV 1.0 0.9091)) +(: cnet_isa_1a804c6168 (IsA house_mouse mouse) (STV 1.0 0.9091)) +(: cnet_isa_c1281fcd54 (IsA house_of_burgess house) (STV 1.0 0.9091)) +(: cnet_isa_139d28dc4d (IsA house_of_card structure) (STV 1.0 0.9091)) +(: cnet_isa_df10d7f639 (IsA house_of_card scheme) (STV 1.0 0.9091)) +(: cnet_isa_a6c2245707 (IsA house_of_common house) (STV 1.0 0.9091)) +(: cnet_isa_37feb4eca9 (IsA house_of_correction jail) (STV 1.0 0.9091)) +(: cnet_isa_b49bb6e3f7 (IsA house_of_lord house) (STV 1.0 0.9091)) +(: cnet_isa_9e9a914e19 (IsA house_organ organ) (STV 1.0 0.9091)) +(: cnet_isa_d9568ccde2 (IsA house_paint paint) (STV 1.0 0.9091)) +(: cnet_isa_1d374833dd (IsA house_painter painter) (STV 1.0 0.9091)) +(: cnet_isa_2a87d1367a (IsA house_party party) (STV 1.0 0.9091)) +(: cnet_isa_a948b22398 (IsA house_physician doctor) (STV 1.0 0.9091)) +(: cnet_isa_4a72327019 (IsA house_plant flower) (STV 1.0 0.9091)) +(: cnet_isa_44e278923b (IsA house_raising construction) (STV 1.0 0.9091)) +(: cnet_isa_efceeabb26 (IsA house_sitter custodian) (STV 1.0 0.9091)) +(: cnet_isa_b3c7ffd1df (IsA house_wren wren) (STV 1.0 0.9091)) +(: cnet_isa_4a73b9a834 (IsA houseboat barge) (STV 1.0 0.9091)) +(: cnet_isa_c9bcdd1a3b (IsA housebreaker burglar) (STV 1.0 0.9091)) +(: cnet_isa_9a77d6e13a (IsA housebreaking burglary) (STV 1.0 0.9091)) +(: cnet_isa_fbbf53fef5 (IsA housecleaning cleaning) (STV 1.0 0.9091)) +(: cnet_isa_270aa5aacc (IsA housecleaning reform) (STV 1.0 0.9091)) +(: cnet_isa_a6fa72ca8d (IsA housecraft craft) (STV 1.0 0.9091)) +(: cnet_isa_ead62edb8a (IsA housedog watchdog) (STV 1.0 0.9091)) +(: cnet_isa_9a0631dba4 (IsA housefather man) (STV 1.0 0.9091)) +(: cnet_isa_16c460614c (IsA housefly fly) (STV 1.0 0.9091)) +(: cnet_isa_1d2d3192e7 (IsA houseful containerful) (STV 1.0 0.9091)) +(: cnet_isa_64bca3f6c0 (IsA housekeeper domestic) (STV 1.0 0.9091)) +(: cnet_isa_3eab9f0a6e (IsA houselight light) (STV 1.0 0.9091)) +(: cnet_isa_1d1c4248f1 (IsA housemaid_s_knee bursitis) (STV 1.0 0.9091)) +(: cnet_isa_53e4cbb97a (IsA housemaster headmaster) (STV 1.0 0.9091)) +(: cnet_isa_79e7b00ff9 (IsA housemate resident) (STV 1.0 0.9091)) +(: cnet_isa_756d0a9d47 (IsA housemother chaperon) (STV 1.0 0.9091)) +(: cnet_isa_67ef2413f3 (IsA houseplant plant) (STV 1.0 0.9091)) +(: cnet_isa_9d72bff28a (IsA houseroom room) (STV 1.0 0.9091)) +(: cnet_isa_48f8cb8fce (IsA housetop roof) (STV 1.0 0.9091)) +(: cnet_isa_77babf2375 (IsA housewarming party) (STV 1.0 0.9091)) +(: cnet_isa_1b27130381 (IsA housewife homemaker) (STV 1.0 0.9339)) +(: cnet_isa_6e15f62695 (IsA housewife wife) (STV 1.0 0.9091)) +(: cnet_isa_3ee95a7c8a (IsA housewifery work) (STV 1.0 0.9091)) +(: cnet_isa_fef8d4d4e3 (IsA housework work) (STV 1.0 0.9091)) +(: cnet_isa_1831545c25 (IsA housewrecker wrecker) (STV 1.0 0.9091)) +(: cnet_isa_89178702dd (IsA housing protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_b9f69302e9 (IsA housing structure) (STV 1.0 0.9091)) +(: cnet_isa_43ba520c26 (IsA housing_commissioner commissioner) (STV 1.0 0.9091)) +(: cnet_isa_01540c42c7 (IsA housing_development development) (STV 1.0 0.9091)) +(: cnet_isa_e295b80ecb (IsA housing_estate development) (STV 1.0 0.9091)) +(: cnet_isa_63d6692b42 (IsA housing_project housing_development) (STV 1.0 0.9091)) +(: cnet_isa_af66eec05c (IsA housing_start beginning) (STV 1.0 0.9091)) +(: cnet_isa_c9691fcd6e (IsA houttuynia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2eb7a71379 (IsA houyhnhnm imaginary_place) (STV 1.0 0.9091)) +(: cnet_isa_620c053d66 (IsA hovea shrub) (STV 1.0 0.9091)) +(: cnet_isa_3c2d4e0622 (IsA hovel shelter) (STV 1.0 0.9091)) +(: cnet_isa_2d34a8ed51 (IsA hovercraft craft) (STV 1.0 0.9091)) +(: cnet_isa_f47b17bb53 (IsA how_do_you_do situation) (STV 1.0 0.9091)) +(: cnet_isa_24a86205ee (IsA howdah seat) (STV 1.0 0.9091)) +(: cnet_isa_9c95cc25fa (IsA howl utterance) (STV 1.0 0.9091)) +(: cnet_isa_5faa92242e (IsA howl cry) (STV 1.0 0.9091)) +(: cnet_isa_ca66a391dc (IsA howl noise) (STV 1.0 0.9091)) +(: cnet_isa_00ce31ab37 (IsA howler blunder) (STV 1.0 0.9091)) +(: cnet_isa_813f5a012e (IsA howler_monkey new_world_monkey) (STV 1.0 0.9091)) +(: cnet_isa_1c913c20e1 (IsA hoya vine) (STV 1.0 0.9091)) +(: cnet_isa_3dd97fd3c7 (IsA hoydenism masculinity) (STV 1.0 0.9091)) +(: cnet_isa_337341e288 (IsA hryvnia ukranian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_9546237503 (IsA hualapai hoka) (STV 1.0 0.9091)) +(: cnet_isa_6bf7dd5ed0 (IsA huarache sandal) (STV 1.0 0.9091)) +(: cnet_isa_073794c5d4 (IsA huayna_capac inca) (STV 1.0 0.9091)) +(: cnet_isa_dc042c04e5 (IsA hub part) (STV 1.0 0.9091)) +(: cnet_isa_80625d8244 (IsA hub center) (STV 1.0 0.9091)) +(: cnet_isa_83b7dec3f5 (IsA hub_and_spoke air_transportation_system) (STV 1.0 0.9091)) +(: cnet_isa_ac14b2aad7 (IsA hubbard_squash winter_squash) (STV 1.0 0.9091)) +(: cnet_isa_f492078746 (IsA hubble_s_constant constant) (STV 1.0 0.9091)) +(: cnet_isa_505c29ce17 (IsA hubble_s_law law) (STV 1.0 0.9091)) +(: cnet_isa_4c80e17526 (IsA hubbub noise) (STV 1.0 0.9091)) +(: cnet_isa_5296cfd644 (IsA hubcap cap) (STV 1.0 0.9091)) +(: cnet_isa_1224ca85e4 (IsA hubris arrogance) (STV 1.0 0.9091)) +(: cnet_isa_8c7624d387 (IsA huck toweling) (STV 1.0 0.9091)) +(: cnet_isa_047d834fbb (IsA huckleberry berry) (STV 1.0 0.9091)) +(: cnet_isa_3bc503b238 (IsA huckleberry blueberry) (STV 1.0 0.9091)) +(: cnet_isa_00e6a0590f (IsA huckleberry shrub) (STV 1.0 0.9091)) +(: cnet_isa_69c28a274b (IsA huckleberry_oak shrub) (STV 1.0 0.9091)) +(: cnet_isa_d070b778d0 (IsA huckster advertiser) (STV 1.0 0.9091)) +(: cnet_isa_f4ae7ff60f (IsA huckster seller) (STV 1.0 0.9091)) +(: cnet_isa_3215c23602 (IsA huddersfield town) (STV 1.0 0.9091)) +(: cnet_isa_1f176218a2 (IsA huddle conference) (STV 1.0 0.9091)) +(: cnet_isa_718be2e8d0 (IsA huddle crowd) (STV 1.0 0.9091)) +(: cnet_isa_8644fd5723 (IsA huddler member) (STV 1.0 0.9091)) +(: cnet_isa_332247ac2a (IsA huddler person) (STV 1.0 0.9091)) +(: cnet_isa_a654b02cfa (IsA hudson_bay_collared_lemming pied_lemming) (STV 1.0 0.9091)) +(: cnet_isa_3f0d79f816 (IsA hudson_river_school artistic_movement) (STV 1.0 0.9091)) +(: cnet_isa_8afc24cfd0 (IsA hudson_seal muskrat) (STV 1.0 0.9091)) +(: cnet_isa_6a74279173 (IsA hudsonia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2ad0e9bafd (IsA hudsonian_godwit godwit) (STV 1.0 0.9091)) +(: cnet_isa_74e78684da (IsA hudud shariah) (STV 1.0 0.9091)) +(: cnet_isa_4f90644854 (IsA hue color_property) (STV 1.0 0.9091)) +(: cnet_isa_923583ab17 (IsA huff irritation) (STV 1.0 0.9091)) +(: cnet_isa_b77adec645 (IsA huffiness anger) (STV 1.0 0.9091)) +(: cnet_isa_0c38ced4b2 (IsA hug embrace) (STV 1.0 0.9091)) +(: cnet_isa_587894029b (IsA hug_me_tight jacket) (STV 1.0 0.9091)) +(: cnet_isa_2ac96141b9 (IsA hugger person) (STV 1.0 0.9091)) +(: cnet_isa_a158ffdf8b (IsA hugger_mugger confusion) (STV 1.0 0.9091)) +(: cnet_isa_657202caac (IsA hugueninia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d4b1dc1378 (IsA huguenot genevan) (STV 1.0 0.9091)) +(: cnet_isa_fddce58cf7 (IsA huisache acacia) (STV 1.0 0.9091)) +(: cnet_isa_82c2cd05fe (IsA huitre shellfish) (STV 1.0 0.9091)) +(: cnet_isa_b96d075776 (IsA hula rain_dance) (STV 1.0 0.9091)) +(: cnet_isa_bce477b120 (IsA hula_hoop plaything) (STV 1.0 0.9091)) +(: cnet_isa_defc1a33de (IsA hulk ship) (STV 1.0 0.9091)) +(: cnet_isa_f86307cb0c (IsA hull structure) (STV 1.0 0.9091)) +(: cnet_isa_f14b5210f9 (IsA hull calyx) (STV 1.0 0.9091)) +(: cnet_isa_0a33a9f34b (IsA hull husk) (STV 1.0 0.9091)) +(: cnet_isa_e572675184 (IsA hulsea asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f3bca6ef5e (IsA hum noise) (STV 1.0 0.9091)) +(: cnet_isa_14c91b32fe (IsA human biped) (STV 1.0 0.9454)) +(: cnet_isa_899d5fe146 (IsA human primate) (STV 1.0 0.9091)) +(: cnet_isa_6191ecae17 (IsA human synonym_for_person) (STV 1.0 0.9091)) +(: cnet_isa_ac5fc4a989 (IsA human_being another_name_for_person) (STV 1.0 0.9091)) +(: cnet_isa_4483ea3e83 (IsA human_body body) (STV 1.0 0.9091)) +(: cnet_isa_366de1a249 (IsA human_botfly botfly) (STV 1.0 0.9091)) +(: cnet_isa_4fd2e53c32 (IsA human_chorionic_gonadotropin gonadotropin) (STV 1.0 0.9091)) +(: cnet_isa_a4bbd9651a (IsA human_head head) (STV 1.0 0.9091)) +(: cnet_isa_4b63fbee2d (IsA human_immunodeficiency_virus retrovirus) (STV 1.0 0.9091)) +(: cnet_isa_f68d713eb5 (IsA human_jumping jumping) (STV 1.0 0.9091)) +(: cnet_isa_a54e3f7f5d (IsA human_male sexually) (STV 1.0 0.9091)) +(: cnet_isa_1b549c8801 (IsA human_nature attribute) (STV 1.0 0.9091)) +(: cnet_isa_95201f7d1c (IsA human_papilloma_virus papovavirus) (STV 1.0 0.9091)) +(: cnet_isa_29dc02835b (IsA human_process process) (STV 1.0 0.9091)) +(: cnet_isa_8807192da6 (IsA human_reproductive_cloning reproductive_cloning) (STV 1.0 0.9091)) +(: cnet_isa_7038dadb2c (IsA human_right right) (STV 1.0 0.9091)) +(: cnet_isa_d06ca655cb (IsA human_running running) (STV 1.0 0.9091)) +(: cnet_isa_7454ac1073 (IsA human_t_cell_leukemia_virus_1 retrovirus) (STV 1.0 0.9091)) +(: cnet_isa_cf579f1377 (IsA human_waste body_waste) (STV 1.0 0.9091)) +(: cnet_isa_07fb63d9d7 (IsA humaneness quality) (STV 1.0 0.9091)) +(: cnet_isa_b51e00cb46 (IsA humanism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_a00fd90e83 (IsA humanism cultural_movement) (STV 1.0 0.9091)) +(: cnet_isa_2b59666611 (IsA humanist advocate) (STV 1.0 0.9091)) +(: cnet_isa_a24bd09e93 (IsA humanist scholar) (STV 1.0 0.9091)) +(: cnet_isa_fe46160467 (IsA humanistic_discipline discipline) (STV 1.0 0.9091)) +(: cnet_isa_1e8403dfc9 (IsA humanitarian benefactor) (STV 1.0 0.9091)) +(: cnet_isa_269d8955ca (IsA humanitarian_aid_worker worker) (STV 1.0 0.9091)) +(: cnet_isa_37bf8b877f (IsA humanitarianism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_aaadc9881b (IsA humanity humaneness) (STV 1.0 0.9091)) +(: cnet_isa_6e6f242ca3 (IsA humanization improvement) (STV 1.0 0.9091)) +(: cnet_isa_208eded45d (IsA humanness quality) (STV 1.0 0.9091)) +(: cnet_isa_b4681a3030 (IsA human bipedal) (STV 1.0 0.9091)) +(: cnet_isa_1c4c493e57 (IsA human higher_animal) (STV 1.0 0.9091)) +(: cnet_isa_34227b336c (IsA human omnivore) (STV 1.0 0.9091)) +(: cnet_isa_b0750a2f41 (IsA human omnivor) (STV 1.0 0.9091)) +(: cnet_isa_6cb077f542 (IsA humate material) (STV 1.0 0.9091)) +(: cnet_isa_2e805443f1 (IsA humbleness obscurity) (STV 1.0 0.9091)) +(: cnet_isa_baaa865188 (IsA humbug misrepresentation) (STV 1.0 0.9091)) +(: cnet_isa_cb21b83c8a (IsA humdinger ideal) (STV 1.0 0.9091)) +(: cnet_isa_387c22a54b (IsA humectant substance) (STV 1.0 0.9091)) +(: cnet_isa_a1b7819638 (IsA humeral_veil vestment) (STV 1.0 0.9091)) +(: cnet_isa_97e19d53c1 (IsA humerus arm_bone) (STV 1.0 0.9091)) +(: cnet_isa_9d3fd2aa81 (IsA humic_acid humic_substance) (STV 1.0 0.9091)) +(: cnet_isa_65bfad8983 (IsA humic_shale humate) (STV 1.0 0.9091)) +(: cnet_isa_88b7d8a3fd (IsA humic_shale shale) (STV 1.0 0.9091)) +(: cnet_isa_bc5c180d68 (IsA humic_substance organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_7a3f717509 (IsA humidifier appliance) (STV 1.0 0.9091)) +(: cnet_isa_2e2d9a9502 (IsA humidity wetness) (STV 1.0 0.9091)) +(: cnet_isa_e202626f78 (IsA humification organic_process) (STV 1.0 0.9091)) +(: cnet_isa_3b018d98e0 (IsA humiliation degradation) (STV 1.0 0.9091)) +(: cnet_isa_b4890886ba (IsA humiliation case) (STV 1.0 0.9091)) +(: cnet_isa_67ff33b140 (IsA humiliation shame) (STV 1.0 0.9091)) +(: cnet_isa_88584c7b04 (IsA humility trait) (STV 1.0 0.9091)) +(: cnet_isa_a2b8d1b020 (IsA humility feeling) (STV 1.0 0.9091)) +(: cnet_isa_31d5235f99 (IsA humin humic_substance) (STV 1.0 0.9091)) +(: cnet_isa_6da538a884 (IsA hummer singer) (STV 1.0 0.9091)) +(: cnet_isa_8f570cba42 (IsA humming singing) (STV 1.0 0.9091)) +(: cnet_isa_bb07fb8108 (IsA humming_top top) (STV 1.0 0.9091)) +(: cnet_isa_12475b5588 (IsA hummingbird bird) (STV 1.0 0.9091)) +(: cnet_isa_31543d9757 (IsA hummingbird apodiform_bird) (STV 1.0 0.9091)) +(: cnet_isa_697d4192da (IsA hummus spread) (STV 1.0 0.9091)) +(: cnet_isa_a437476a78 (IsA humor body_substance) (STV 1.0 0.9091)) +(: cnet_isa_01462329fc (IsA humor playfulness) (STV 1.0 0.9091)) +(: cnet_isa_391b9f94ee (IsA humor quality) (STV 1.0 0.9091)) +(: cnet_isa_48ceafcfe6 (IsA humoral_immune_response immune_response) (STV 1.0 0.9091)) +(: cnet_isa_f45fcadcbf (IsA humorist entertainer) (STV 1.0 0.9091)) +(: cnet_isa_2ec7320bfb (IsA humpback baleen_whale) (STV 1.0 0.9091)) +(: cnet_isa_d0d870311d (IsA humpback cripple) (STV 1.0 0.9091)) +(: cnet_isa_2db9d610db (IsA humpty_dumpty egg) (STV 1.0 0.9339)) +(: cnet_isa_1767425f74 (IsA humpty_dumpty egg_in_fairy_tale) (STV 1.0 0.9091)) +(: cnet_isa_7aec23a8e0 (IsA humulus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ea566497d8 (IsA humus soil) (STV 1.0 0.9091)) +(: cnet_isa_6c9c230adc (IsA hun nomad) (STV 1.0 0.9091)) +(: cnet_isa_ddbc243a1d (IsA hunch bending) (STV 1.0 0.9091)) +(: cnet_isa_6924bf5eec (IsA hundred large_integer) (STV 1.0 0.9091)) +(: cnet_isa_4a872f01f7 (IsA hundred_dollar_bill bill) (STV 1.0 0.9091)) +(: cnet_isa_b98f831f94 (IsA hundred_thousand large_integer) (STV 1.0 0.9091)) +(: cnet_isa_5c5444801c (IsA hundredth rank) (STV 1.0 0.9091)) +(: cnet_isa_c08a6243e3 (IsA hundredweight avoirdupois_unit) (STV 1.0 0.9091)) +(: cnet_isa_59f3b57b87 (IsA hundredweight metric_weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_a1b22b481e (IsA hung_jury jury) (STV 1.0 0.9091)) +(: cnet_isa_a229609cc4 (IsA hungarian ugric) (STV 1.0 0.9091)) +(: cnet_isa_b8d4e06b28 (IsA hungarian_lilac lilac) (STV 1.0 0.9091)) +(: cnet_isa_f1c8cd56fc (IsA hungarian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_abeb2a1dd1 (IsA hungarian_partridge partridge) (STV 1.0 0.9091)) +(: cnet_isa_009990186f (IsA hungarian_sauce sauce) (STV 1.0 0.9091)) +(: cnet_isa_023987b7ea (IsA hunger feeling) (STV 1.0 0.9339)) +(: cnet_isa_184c5445f8 (IsA hunger sensation) (STV 1.0 0.9454)) +(: cnet_isa_b1c1bfb8bb (IsA hunger desire) (STV 1.0 0.9091)) +(: cnet_isa_b3d4d26a65 (IsA hunger drive) (STV 1.0 0.9091)) +(: cnet_isa_909eb38594 (IsA hunger_march march) (STV 1.0 0.9091)) +(: cnet_isa_74e70c9cb0 (IsA hunger_marcher unemployed_person) (STV 1.0 0.9091)) +(: cnet_isa_5e8b04e0cc (IsA hunger_strike fast) (STV 1.0 0.9091)) +(: cnet_isa_5a4c4e0768 (IsA hunger_strike passive_resistance) (STV 1.0 0.9091)) +(: cnet_isa_b793b4108c (IsA hunk part) (STV 1.0 0.9091)) +(: cnet_isa_f048f3fa67 (IsA hunk man) (STV 1.0 0.9091)) +(: cnet_isa_d6f5e3558b (IsA hunkpapa siouan) (STV 1.0 0.9091)) +(: cnet_isa_1c1f072396 (IsA hunkpapa teton_dakota) (STV 1.0 0.9091)) +(: cnet_isa_d9f7936413 (IsA hunnemannia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6d676049a3 (IsA hunt blood_sport) (STV 1.0 0.9091)) +(: cnet_isa_e4f305230d (IsA hunt labor) (STV 1.0 0.9091)) +(: cnet_isa_f8c4c75dff (IsA hunt outdoor_sport) (STV 1.0 0.9091)) +(: cnet_isa_19fb959499 (IsA hunt search) (STV 1.0 0.9091)) +(: cnet_isa_a733e933de (IsA hunt club) (STV 1.0 0.9091)) +(: cnet_isa_5c6526c89a (IsA hunted_person victim) (STV 1.0 0.9091)) +(: cnet_isa_bfc018b47d (IsA hunter_s_sauce sauce) (STV 1.0 0.9091)) +(: cnet_isa_34dc7d1ff1 (IsA hunter watch) (STV 1.0 0.9091)) +(: cnet_isa_7cda14d906 (IsA hunter seeker) (STV 1.0 0.9091)) +(: cnet_isa_9f91341e31 (IsA hunter skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_b4a57e5408 (IsA hunter_gatherer savage) (STV 1.0 0.9091)) +(: cnet_isa_a1a7a18174 (IsA hunting_and_gathering_tribe tribal_society) (STV 1.0 0.9091)) +(: cnet_isa_4bfb870520 (IsA hunting_dog dog) (STV 1.0 0.9091)) +(: cnet_isa_c07c83f278 (IsA hunting_ground area) (STV 1.0 0.9091)) +(: cnet_isa_49e743e739 (IsA hunting_ground opportunity) (STV 1.0 0.9091)) +(: cnet_isa_3730ff78ee (IsA hunting_guide scout) (STV 1.0 0.9091)) +(: cnet_isa_af5ec73056 (IsA hunting_knife knife) (STV 1.0 0.9091)) +(: cnet_isa_d1bb3de4e4 (IsA hunting_license license) (STV 1.0 0.9091)) +(: cnet_isa_d6e55e01c4 (IsA hunting_season season) (STV 1.0 0.9091)) +(: cnet_isa_9913c8e9ba (IsA huntingdon_elm elm) (STV 1.0 0.9091)) +(: cnet_isa_fb0a9d1413 (IsA huntington_s_chorea autosomal_dominant_disease) (STV 1.0 0.9091)) +(: cnet_isa_111ac84393 (IsA huntington_s_chorea chorea) (STV 1.0 0.9091)) +(: cnet_isa_79706a323b (IsA huntington_s_chorea monogenic_disorder) (STV 1.0 0.9091)) +(: cnet_isa_48a37065b0 (IsA huntress hunter) (STV 1.0 0.9091)) +(: cnet_isa_f112defe69 (IsA huntsman_s_horn pitcher_plant) (STV 1.0 0.9091)) +(: cnet_isa_902e9f7909 (IsA huon_pine conifer) (STV 1.0 0.9091)) +(: cnet_isa_d538038fa8 (IsA hupa athapaskan) (STV 1.0 0.9091)) +(: cnet_isa_a2b729fd52 (IsA hupa athabascan) (STV 1.0 0.9091)) +(: cnet_isa_87c8bb8578 (IsA hurdle barrier) (STV 1.0 0.9091)) +(: cnet_isa_7a76fb1b53 (IsA hurdle obstacle) (STV 1.0 0.9091)) +(: cnet_isa_91328deaa8 (IsA hurdler athlete) (STV 1.0 0.9091)) +(: cnet_isa_f55e9b41d9 (IsA hurdle track_event) (STV 1.0 0.9091)) +(: cnet_isa_8bed7e7496 (IsA hurl throw) (STV 1.0 0.9091)) +(: cnet_isa_f90eb2684b (IsA hurler_s_syndrome monogenic_disorder) (STV 1.0 0.9091)) +(: cnet_isa_041af71bee (IsA hurler_s_syndrome mucopolysaccharidosis) (STV 1.0 0.9091)) +(: cnet_isa_b389638c53 (IsA hurling field_game) (STV 1.0 0.9091)) +(: cnet_isa_05da0cd055 (IsA hurrah cheer) (STV 1.0 0.9091)) +(: cnet_isa_b2142c1ade (IsA hurricane storm) (STV 1.0 0.9524)) +(: cnet_isa_03616bfa5a (IsA hurricane cyclone) (STV 1.0 0.9091)) +(: cnet_isa_e018cea56e (IsA hurricane_deck deck) (STV 1.0 0.9091)) +(: cnet_isa_23a961434e (IsA hurricane_lamp lamp) (STV 1.0 0.9091)) +(: cnet_isa_bd83a1ed85 (IsA hurry urgency) (STV 1.0 0.9091)) +(: cnet_isa_5807b53427 (IsA husband spouse) (STV 1.0 0.9091)) +(: cnet_isa_812294bea1 (IsA hush silence) (STV 1.0 0.9091)) +(: cnet_isa_80213ac5c3 (IsA hush_money bribe) (STV 1.0 0.9091)) +(: cnet_isa_14b4add425 (IsA hush_puppy cornbread) (STV 1.0 0.9091)) +(: cnet_isa_a29014b017 (IsA husk sheath) (STV 1.0 0.9091)) +(: cnet_isa_03f4d8213b (IsA huskiness strength) (STV 1.0 0.9091)) +(: cnet_isa_2c4613d982 (IsA husking_bee bee) (STV 1.0 0.9091)) +(: cnet_isa_5b509d166f (IsA hussar cavalryman) (STV 1.0 0.9091)) +(: cnet_isa_185c880142 (IsA hussite disciple) (STV 1.0 0.9091)) +(: cnet_isa_df0469b41a (IsA husting campaigning) (STV 1.0 0.9091)) +(: cnet_isa_a7eb2a3fdb (IsA hustler opportunist) (STV 1.0 0.9091)) +(: cnet_isa_64987306f6 (IsA hut shelter) (STV 1.0 0.9091)) +(: cnet_isa_1ced0ca181 (IsA hutch cage) (STV 1.0 0.9091)) +(: cnet_isa_b1aa2c866f (IsA hutment camp) (STV 1.0 0.9091)) +(: cnet_isa_5eaa55b766 (IsA hutu bantu) (STV 1.0 0.9091)) +(: cnet_isa_9baa570451 (IsA hyacinth liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_584e77c95e (IsA hyacinth zircon) (STV 1.0 0.9091)) +(: cnet_isa_ac8c2058e6 (IsA hyacinth_bean vine) (STV 1.0 0.9091)) +(: cnet_isa_91b57a3a5d (IsA hyacinthaceae liliid_monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_1f863e698c (IsA hyacinthoide liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0a7eada18a (IsA hyade nymph) (STV 1.0 0.9091)) +(: cnet_isa_2f58f16793 (IsA hyaenidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_012f5e6a78 (IsA hyaline transparent_substance) (STV 1.0 0.9091)) +(: cnet_isa_64f0739da7 (IsA hyaline_cartilage cartilage) (STV 1.0 0.9091)) +(: cnet_isa_3a3d01925f (IsA hyalinization condition) (STV 1.0 0.9091)) +(: cnet_isa_3c2ad3a7c8 (IsA hyaloid_membrane membrane) (STV 1.0 0.9091)) +(: cnet_isa_aee066c356 (IsA hyalophora arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_c4fd873bdf (IsA hyaloplasm cytoplasm) (STV 1.0 0.9091)) +(: cnet_isa_0dd66b78d8 (IsA hyalosperma asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_25d54357d5 (IsA hyalospongiae class) (STV 1.0 0.9091)) +(: cnet_isa_917f99be1a (IsA hyaluronic_acid mucopolysaccharide) (STV 1.0 0.9091)) +(: cnet_isa_a6db2412c4 (IsA hybanthus dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_963ca35984 (IsA hybrid complex) (STV 1.0 0.9091)) +(: cnet_isa_3a2f1174ec (IsA hybrid organism) (STV 1.0 0.9091)) +(: cnet_isa_46597d0133 (IsA hybrid_petunia petunia) (STV 1.0 0.9091)) +(: cnet_isa_a7da991a81 (IsA hybrid_tuberous_begonia tuberous_begonia) (STV 1.0 0.9091)) +(: cnet_isa_ef5a54c467 (IsA hybrid_vigor tendency) (STV 1.0 0.9091)) +(: cnet_isa_2394f1e710 (IsA hybridization coupling) (STV 1.0 0.9091)) +(: cnet_isa_c420f70f67 (IsA hybridoma somatic_cell) (STV 1.0 0.9091)) +(: cnet_isa_f9188071cb (IsA hydantoin anticonvulsant) (STV 1.0 0.9091)) +(: cnet_isa_540244a286 (IsA hydathode stoma) (STV 1.0 0.9091)) +(: cnet_isa_bef87cb4fb (IsA hydatid cyst) (STV 1.0 0.9091)) +(: cnet_isa_f333baa1f1 (IsA hydatid_mole abnormality) (STV 1.0 0.9091)) +(: cnet_isa_c880de90c7 (IsA hydnaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_9b5981f3f3 (IsA hydnocarpus dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a14198408e (IsA hydnocarpus_laurifolia tree) (STV 1.0 0.9091)) +(: cnet_isa_68e18ac29a (IsA hydnocarpus_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_be627108c3 (IsA hydnoraceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_35e0f71fb0 (IsA hydnum fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_e32961a91e (IsA hydra hydrozoan) (STV 1.0 0.9091)) +(: cnet_isa_f5083a8e28 (IsA hydra object) (STV 1.0 0.9091)) +(: cnet_isa_cedf3cbeb4 (IsA hydra trouble) (STV 1.0 0.9091)) +(: cnet_isa_17101506b3 (IsA hydra mythical_monster) (STV 1.0 0.9091)) +(: cnet_isa_5c6fc729df (IsA hydramnio abnormality) (STV 1.0 0.9091)) +(: cnet_isa_0c6ee6a593 (IsA hydrangea shrub) (STV 1.0 0.9091)) +(: cnet_isa_c927194ef7 (IsA hydrangeaceae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_79e93f590f (IsA hydrant discharge_pipe) (STV 1.0 0.9091)) +(: cnet_isa_f9fca62d01 (IsA hydrarthrosis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_66becfedad (IsA hydrastis magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_17064d28e3 (IsA hydrate compound) (STV 1.0 0.9091)) +(: cnet_isa_9ea0512a7a (IsA hydration association) (STV 1.0 0.9091)) +(: cnet_isa_26b0a673ad (IsA hydraulic_brake brake_system) (STV 1.0 0.9091)) +(: cnet_isa_8c700b43e4 (IsA hydraulic_cement cement) (STV 1.0 0.9091)) +(: cnet_isa_7cdc726df2 (IsA hydraulic_engineering civil_engineering) (STV 1.0 0.9091)) +(: cnet_isa_c33ca97194 (IsA hydraulic_press press) (STV 1.0 0.9091)) +(: cnet_isa_6b015c3ec4 (IsA hydraulic_pump pump) (STV 1.0 0.9091)) +(: cnet_isa_485a3682bd (IsA hydraulic_system mechanism) (STV 1.0 0.9091)) +(: cnet_isa_39cdb4f405 (IsA hydraulic_transmission hydraulic_system) (STV 1.0 0.9091)) +(: cnet_isa_bba1712094 (IsA hydraulic_transmission transmission) (STV 1.0 0.9091)) +(: cnet_isa_215fbc44bd (IsA hydrazine reducing_agent) (STV 1.0 0.9091)) +(: cnet_isa_c7bf97f26a (IsA hydrazo_group group) (STV 1.0 0.9091)) +(: cnet_isa_51aeaedbaa (IsA hydrazoic_acid explosive) (STV 1.0 0.9091)) +(: cnet_isa_f05ad79168 (IsA hydrazoic_acid hydride) (STV 1.0 0.9091)) +(: cnet_isa_fa4fba6c23 (IsA hydrazoite azide) (STV 1.0 0.9091)) +(: cnet_isa_7c3a38a8d4 (IsA hydremia blood_disease) (STV 1.0 0.9091)) +(: cnet_isa_c24af92f4a (IsA hydride binary_compound) (STV 1.0 0.9091)) +(: cnet_isa_90e9d32107 (IsA hydrilla aquatic_plant) (STV 1.0 0.9091)) +(: cnet_isa_a0070d98a3 (IsA hydriodic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_c071d50ecc (IsA hydrobate bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_1df31a799b (IsA hydrobatidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_d660a16217 (IsA hydrobromic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_e109b06960 (IsA hydrocarbon organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_407acafad7 (IsA hydrocele disorder) (STV 1.0 0.9091)) +(: cnet_isa_7eafa0e721 (IsA hydrocephalus abnormality) (STV 1.0 0.9091)) +(: cnet_isa_8220b68143 (IsA hydrocharis monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_19eb122e8e (IsA hydrocharitaceae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_df0dbba5ef (IsA hydrochloric_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_d81af7ab38 (IsA hydrochloride complex) (STV 1.0 0.9091)) +(: cnet_isa_b73bea3312 (IsA hydrochlorofluorocarbon chlorofluorocarbon) (STV 1.0 0.9091)) +(: cnet_isa_a4fc330182 (IsA hydrochoeridae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_9e6cb8426a (IsA hydrochoerus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_ed4eff218b (IsA hydrocolloid substance) (STV 1.0 0.9091)) +(: cnet_isa_dd9a0fe772 (IsA hydrocortisone corticosteroid) (STV 1.0 0.9091)) +(: cnet_isa_414190e51f (IsA hydrocracking cracking) (STV 1.0 0.9091)) +(: cnet_isa_c2757544b4 (IsA hydrocyanic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_774dbf2f59 (IsA hydrodamalis mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_746ead3f8d (IsA hydrodynamic fluid_mechanic) (STV 1.0 0.9091)) +(: cnet_isa_73b2cab3a5 (IsA hydroelectric_turbine turbine) (STV 1.0 0.9091)) +(: cnet_isa_9bfc70450d (IsA hydroelectricity electricity) (STV 1.0 0.9091)) +(: cnet_isa_ede15d2844 (IsA hydroflumethiazide thiazide) (STV 1.0 0.9091)) +(: cnet_isa_0c1bd979d6 (IsA hydrofluoric_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_733ca681ac (IsA hydrofluorocarbon fluorocarbon) (STV 1.0 0.9091)) +(: cnet_isa_affdc289af (IsA hydrofluorocarbon greenhouse_gas) (STV 1.0 0.9091)) +(: cnet_isa_68f506b213 (IsA hydrofoil device) (STV 1.0 0.9091)) +(: cnet_isa_4467800d57 (IsA hydrofoil speedboat) (STV 1.0 0.9091)) +(: cnet_isa_dca29371cd (IsA hydrogel gel) (STV 1.0 0.9091)) +(: cnet_isa_29aec06a66 (IsA hydrogen_s_chemical_symbol h) (STV 1.0 0.9091)) +(: cnet_isa_4a11e663f3 (IsA hydrogen element) (STV 1.0 0.9572)) +(: cnet_isa_4550d0b930 (IsA hydrogen gas) (STV 1.0 0.9091)) +(: cnet_isa_bffc089476 (IsA hydrogen piece_of_water_molecule) (STV 1.0 0.9091)) +(: cnet_isa_93dadc6eeb (IsA hydrogen very_reactive) (STV 1.0 0.9091)) +(: cnet_isa_927945565e (IsA hydrogen chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_b33756e55e (IsA hydrogen_atom atom) (STV 1.0 0.9091)) +(: cnet_isa_3e46c2d6ea (IsA hydrogen_bomb weapon) (STV 1.0 0.9091)) +(: cnet_isa_95ca1e3546 (IsA hydrogen_bomb bomb) (STV 1.0 0.9091)) +(: cnet_isa_e12752e54f (IsA hydrogen_bomb nuclear_weapon) (STV 1.0 0.9091)) +(: cnet_isa_2f5b4a6c22 (IsA hydrogen_bond chemical_bond) (STV 1.0 0.9091)) +(: cnet_isa_c47c3d40e9 (IsA hydrogen_bromide bromide) (STV 1.0 0.9091)) +(: cnet_isa_055b0b98dc (IsA hydrogen_chloride acid) (STV 1.0 0.9091)) +(: cnet_isa_453565a043 (IsA hydrogen_cyanide compound) (STV 1.0 0.9091)) +(: cnet_isa_dc860b419d (IsA hydrogen_fluoride fluoride) (STV 1.0 0.9091)) +(: cnet_isa_e562185a1d (IsA hydrogen_iodide iodide) (STV 1.0 0.9091)) +(: cnet_isa_377580e623 (IsA hydrogen_ion cation) (STV 1.0 0.9091)) +(: cnet_isa_3523c8b748 (IsA hydrogen_ion proton) (STV 1.0 0.9091)) +(: cnet_isa_f7192ff612 (IsA hydrogen_ion_concentration concentration) (STV 1.0 0.9091)) +(: cnet_isa_084503e730 (IsA hydrogen_peroxide oxidant) (STV 1.0 0.9091)) +(: cnet_isa_17d57ce06c (IsA hydrogen_sulfide sulfide) (STV 1.0 0.9091)) +(: cnet_isa_82293fcc15 (IsA hydrogenation chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_88646cb59c (IsA hydrography oceanography) (STV 1.0 0.9091)) +(: cnet_isa_b5769c9fa2 (IsA hydroiodic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_9d6c23387b (IsA hydrologist geologist) (STV 1.0 0.9091)) +(: cnet_isa_5caba29d97 (IsA hydrology geophysic) (STV 1.0 0.9091)) +(: cnet_isa_cea7b6551e (IsA hydrolysate product) (STV 1.0 0.9091)) +(: cnet_isa_9256e6563f (IsA hydrolysis chemical_reaction) (STV 1.0 0.9339)) +(: cnet_isa_a736d83297 (IsA hydromancer diviner) (STV 1.0 0.9091)) +(: cnet_isa_02618ace77 (IsA hydromancy divination) (STV 1.0 0.9091)) +(: cnet_isa_fae3164b39 (IsA hydromante amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_bbb9541c64 (IsA hydromel beverage) (STV 1.0 0.9091)) +(: cnet_isa_f9b8cf5fea (IsA hydrometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_f2fbbdd1e0 (IsA hydrometry measurement) (STV 1.0 0.9091)) +(: cnet_isa_34434fadc7 (IsA hydromyinae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_1e5815d0bb (IsA hydromy mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_dfd50e3263 (IsA hydronephrosis pathology) (STV 1.0 0.9091)) +(: cnet_isa_f5f64a1215 (IsA hydropathy treatment) (STV 1.0 0.9091)) +(: cnet_isa_9d159d3905 (IsA hydrophidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_008dc36ae3 (IsA hydrophobia simple_phobia) (STV 1.0 0.9091)) +(: cnet_isa_6d63667ff9 (IsA hydrophobia symptom) (STV 1.0 0.9091)) +(: cnet_isa_4b4072831d (IsA hydrophobicity property) (STV 1.0 0.9091)) +(: cnet_isa_b2cd4e64f2 (IsA hydrophyllaceae asterid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_842f4aa7e0 (IsA hydrophyllum asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8e339841b1 (IsA hydroplane_racing boat_racing) (STV 1.0 0.9091)) +(: cnet_isa_c45bfbdb9b (IsA hydroponic farming) (STV 1.0 0.9091)) +(: cnet_isa_bbb9f0b2d7 (IsA hydrosphere layer) (STV 1.0 0.9091)) +(: cnet_isa_23146f434c (IsA hydrostatic_head pressure) (STV 1.0 0.9091)) +(: cnet_isa_3a062b7aa3 (IsA hydrostatic fluid_mechanic) (STV 1.0 0.9091)) +(: cnet_isa_f88b4c5db9 (IsA hydrothorax congestion) (STV 1.0 0.9091)) +(: cnet_isa_8138abf208 (IsA hydroxide compound) (STV 1.0 0.9091)) +(: cnet_isa_80058db974 (IsA hydroxide_ion anion) (STV 1.0 0.9091)) +(: cnet_isa_a9ce5c8d9b (IsA hydroxy_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_19f46d7ace (IsA hydroxybenzoic_acid hydroxy_acid) (STV 1.0 0.9091)) +(: cnet_isa_8d54abeb75 (IsA hydroxybutyric_acid butyric_acid) (STV 1.0 0.9091)) +(: cnet_isa_0482ccf1d0 (IsA hydroxyl group) (STV 1.0 0.9091)) +(: cnet_isa_501ce85d99 (IsA hydroxymethyl methyl) (STV 1.0 0.9091)) +(: cnet_isa_e0f3c9b220 (IsA hydroxyproline amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_303293072b (IsA hydrozoa class) (STV 1.0 0.9091)) +(: cnet_isa_0c4bdc8623 (IsA hydrozoan coelenterate) (STV 1.0 0.9091)) +(: cnet_isa_f0655bf995 (IsA hyemoschus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_80e6deef1b (IsA hyena canine) (STV 1.0 0.9091)) +(: cnet_isa_b4de1c53e8 (IsA hygiene medicine) (STV 1.0 0.9091)) +(: cnet_isa_6b68686525 (IsA hygiene sanitariness) (STV 1.0 0.9091)) +(: cnet_isa_7177979398 (IsA hygienist specialist) (STV 1.0 0.9091)) +(: cnet_isa_b8e98a00f1 (IsA hygrocybe fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_016e252b7e (IsA hygrocybe_acutoconica waxycap) (STV 1.0 0.9091)) +(: cnet_isa_b04de18a93 (IsA hygrodeik hygrometer) (STV 1.0 0.9091)) +(: cnet_isa_04f27044a8 (IsA hygrometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_5cf6ff9438 (IsA hygrophoraceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_4bda80e655 (IsA hygrophorus fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_41e6a93689 (IsA hygrophorus_borealis waxycap) (STV 1.0 0.9091)) +(: cnet_isa_e7dab0b1dd (IsA hygrophorus_caeruleus waxycap) (STV 1.0 0.9091)) +(: cnet_isa_c670d69ac6 (IsA hygrophorus_inocybiformis waxycap) (STV 1.0 0.9091)) +(: cnet_isa_6144a827a9 (IsA hygrophorus_kauffmanii waxycap) (STV 1.0 0.9091)) +(: cnet_isa_4a07ac6ff1 (IsA hygrophorus_marzuolus waxycap) (STV 1.0 0.9091)) +(: cnet_isa_d96700ea8b (IsA hygrophorus_purpurascen waxycap) (STV 1.0 0.9091)) +(: cnet_isa_00573d5470 (IsA hygrophorus_russula waxycap) (STV 1.0 0.9091)) +(: cnet_isa_e441e2f206 (IsA hygrophorus_sordidus waxycap) (STV 1.0 0.9091)) +(: cnet_isa_8dbf0c8569 (IsA hygrophorus_tennesseensis waxycap) (STV 1.0 0.9091)) +(: cnet_isa_de97e25f7b (IsA hygrophorus_turundus waxycap) (STV 1.0 0.9091)) +(: cnet_isa_0a5aa4d580 (IsA hygrophyte plant) (STV 1.0 0.9091)) +(: cnet_isa_d047161a1f (IsA hygroscope hygrometer) (STV 1.0 0.9091)) +(: cnet_isa_9abd34aabd (IsA hygrotrama fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_9b27f7a1d7 (IsA hygrotrama_foeten waxycap) (STV 1.0 0.9091)) +(: cnet_isa_7a157439fb (IsA hyla amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_0a25e54ef4 (IsA hylactophryne amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_9f20bea880 (IsA hylidae amphibian_family) (STV 1.0 0.9091)) +(: cnet_isa_ba0123e764 (IsA hylobate mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_0bb7801fbf (IsA hylobatidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_449a7214e7 (IsA hylocereus caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0db85178ec (IsA hylocichla bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_343d3cf285 (IsA hylophylax bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_81e5d849d7 (IsA hymen mucous_membrane) (STV 1.0 0.9091)) +(: cnet_isa_890fe19682 (IsA hymenaea rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9abc957d00 (IsA hymenanthera dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3e7f049e89 (IsA hymeneal hymn) (STV 1.0 0.9091)) +(: cnet_isa_915574dacd (IsA hymenium reproductive_structure) (STV 1.0 0.9091)) +(: cnet_isa_915b2d7e92 (IsA hymenogastrale fungus_order) (STV 1.0 0.9091)) +(: cnet_isa_44259f2faa (IsA hymenomycete class) (STV 1.0 0.9091)) +(: cnet_isa_8968fc6970 (IsA hymenophyllaceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_cd1337f8c1 (IsA hymenophyllum fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_3194376279 (IsA hymenoptera animal_order) (STV 1.0 0.9091)) +(: cnet_isa_9169725991 (IsA hymenopterous_insect insect) (STV 1.0 0.9091)) +(: cnet_isa_e5d6a44282 (IsA hymn religious_song) (STV 1.0 0.9091)) +(: cnet_isa_eb9f69f5ea (IsA hymnal songbook) (STV 1.0 0.9091)) +(: cnet_isa_4c003cabf2 (IsA hynerpeton amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_530b0df69c (IsA hynerpeton_bassetti amphibian) (STV 1.0 0.9091)) +(: cnet_isa_a34f60684e (IsA hyoid bone) (STV 1.0 0.9091)) +(: cnet_isa_dcb5de1d6e (IsA hyoscyamine alkaloid) (STV 1.0 0.9091)) +(: cnet_isa_6d6f0b0043 (IsA hyoscyamine poison) (STV 1.0 0.9091)) +(: cnet_isa_65667b5c99 (IsA hyoscyamus asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_82e3722110 (IsA hypallage rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_49f3fb2df3 (IsA hypanthium plant_organ) (STV 1.0 0.9091)) +(: cnet_isa_8e61723545 (IsA hypentelium fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_d47b40b90c (IsA hyper_eutectoid_steel carbon_steel) (STV 1.0 0.9091)) +(: cnet_isa_95f380528e (IsA hyperacidity acidity) (STV 1.0 0.9091)) +(: cnet_isa_632d380917 (IsA hyperactivity disorder) (STV 1.0 0.9091)) +(: cnet_isa_58059fb6b0 (IsA hyperacusis hearing_impairment) (STV 1.0 0.9091)) +(: cnet_isa_52414c7459 (IsA hyperbaric_chamber chamber) (STV 1.0 0.9091)) +(: cnet_isa_8b9bc9fdd7 (IsA hyperbaton rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_e0bc8b2176 (IsA hyperbetalipoproteinemia genetic_disease) (STV 1.0 0.9091)) +(: cnet_isa_d0b80afe08 (IsA hyperbetalipoproteinemia hyperlipoproteinemia) (STV 1.0 0.9091)) +(: cnet_isa_3cbd8248d5 (IsA hyperbilirubinemia pathology) (STV 1.0 0.9091)) +(: cnet_isa_d1f859775d (IsA hyperbilirubinemia_of_newborn hyperbilirubinemia) (STV 1.0 0.9091)) +(: cnet_isa_110f58c0b5 (IsA hyperbola conic_section) (STV 1.0 0.9091)) +(: cnet_isa_c61a6619c5 (IsA hyperbole trope) (STV 1.0 0.9091)) +(: cnet_isa_4a4f162e15 (IsA hyperbolic_geometry non_euclidean_geometry) (STV 1.0 0.9091)) +(: cnet_isa_1c7c5c8c3c (IsA hyperboloid quadric) (STV 1.0 0.9091)) +(: cnet_isa_467619f2cd (IsA hypercalcemia symptom) (STV 1.0 0.9091)) +(: cnet_isa_34079d1c7e (IsA hypercalciuria symptom) (STV 1.0 0.9091)) +(: cnet_isa_94c0675d52 (IsA hypercapnia physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_69ce2f1efd (IsA hypercatalectic line_of_poetry) (STV 1.0 0.9091)) +(: cnet_isa_0d3c6607b0 (IsA hypercellularity cellularity) (STV 1.0 0.9091)) +(: cnet_isa_b2fdd63fc0 (IsA hypercholesterolemia symptom) (STV 1.0 0.9091)) +(: cnet_isa_92d1b960e6 (IsA hyperchromic_anemia anemia) (STV 1.0 0.9091)) +(: cnet_isa_e4eb82b721 (IsA hypercoaster roller_coaster) (STV 1.0 0.9091)) +(: cnet_isa_e1b0fa027d (IsA hyperemesis vomit) (STV 1.0 0.9091)) +(: cnet_isa_eafddde01b (IsA hyperemesis_gravidarum hyperemesis) (STV 1.0 0.9091)) +(: cnet_isa_be001f1a27 (IsA hyperemia congestion) (STV 1.0 0.9091)) +(: cnet_isa_ff90aa3987 (IsA hyperextension extension) (STV 1.0 0.9091)) +(: cnet_isa_73f5bcea4e (IsA hyperfocal_distance distance) (STV 1.0 0.9091)) +(: cnet_isa_860ce2fdc7 (IsA hyperglycemia symptom) (STV 1.0 0.9091)) +(: cnet_isa_6e940c662a (IsA hyperhidrosis perspiration) (STV 1.0 0.9091)) +(: cnet_isa_08c9757143 (IsA hypericaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_cf7f3b04a3 (IsA hypericism dermatitis) (STV 1.0 0.9091)) +(: cnet_isa_225705eb0c (IsA hypericum dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1903fb4057 (IsA hyperkalemia symptom) (STV 1.0 0.9091)) +(: cnet_isa_dc8e81cd41 (IsA hyperlink link) (STV 1.0 0.9091)) +(: cnet_isa_0f67266c26 (IsA hyperlipoproteinemia metabolic_disorder) (STV 1.0 0.9091)) +(: cnet_isa_431d720173 (IsA hypermarket supermarket) (STV 1.0 0.9091)) +(: cnet_isa_ad94b39e59 (IsA hypermastigina animal_order) (STV 1.0 0.9091)) +(: cnet_isa_373c85f988 (IsA hypermastigote flagellate) (STV 1.0 0.9091)) +(: cnet_isa_85cff8d168 (IsA hypermedia multimedia) (STV 1.0 0.9091)) +(: cnet_isa_52a458afd9 (IsA hypermotility illness) (STV 1.0 0.9091)) +(: cnet_isa_f5482b21a8 (IsA hypernatremia symptom) (STV 1.0 0.9091)) +(: cnet_isa_6175212e4a (IsA hypernym word) (STV 1.0 0.9091)) +(: cnet_isa_53d6f72d48 (IsA hypernymy semantic_relation) (STV 1.0 0.9091)) +(: cnet_isa_7b88c3c173 (IsA hyperoglyphe fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_23fa392c41 (IsA hyperon baryon) (STV 1.0 0.9091)) +(: cnet_isa_affa33f6a0 (IsA hyperoodon mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_fb6b0af677 (IsA hyperope visually_impaired_person) (STV 1.0 0.9091)) +(: cnet_isa_c55c1f93dd (IsA hyperopia ametropia) (STV 1.0 0.9091)) +(: cnet_isa_c8f85eece9 (IsA hyperparathyroidism glandular_disease) (STV 1.0 0.9091)) +(: cnet_isa_6b0fef0c5d (IsA hyperpigmentation physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_642d251359 (IsA hyperpituitarism glandular_disease) (STV 1.0 0.9091)) +(: cnet_isa_84510e60db (IsA hyperplasia dysplasia) (STV 1.0 0.9091)) +(: cnet_isa_8b4cb60a1f (IsA hyperpnea breathing) (STV 1.0 0.9091)) +(: cnet_isa_15d8d2ccc0 (IsA hyperpyrexia fever) (STV 1.0 0.9091)) +(: cnet_isa_33bfabaad2 (IsA hyperpyrexia hyperthermia) (STV 1.0 0.9091)) +(: cnet_isa_5666de14ad (IsA hypersecretion secretion) (STV 1.0 0.9091)) +(: cnet_isa_2ba4aa3b8f (IsA hypersensitivity sensitivity) (STV 1.0 0.9091)) +(: cnet_isa_92f1c0a769 (IsA hypersensitivity_reaction hypersensitivity) (STV 1.0 0.9091)) +(: cnet_isa_ae48016f56 (IsA hypersomnia sleep_disorder) (STV 1.0 0.9091)) +(: cnet_isa_495114f3b7 (IsA hypersplenism symptom) (STV 1.0 0.9091)) +(: cnet_isa_4c214383f1 (IsA hypertensive patient) (STV 1.0 0.9091)) +(: cnet_isa_ce412a482f (IsA hypertext machine_readable_text) (STV 1.0 0.9091)) +(: cnet_isa_f8d17378d0 (IsA hypertext_markup_language markup_language) (STV 1.0 0.9091)) +(: cnet_isa_7f72a7e185 (IsA hypertext_system object_oriented_database_management_system) (STV 1.0 0.9091)) +(: cnet_isa_174ab2b904 (IsA hypertext_transfer_protocol protocol) (STV 1.0 0.9091)) +(: cnet_isa_5fe139bd80 (IsA hyperthermia physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_95256fedf2 (IsA hyperthyroidism glandular_disease) (STV 1.0 0.9091)) +(: cnet_isa_9a721985c2 (IsA hypertonia tonicity) (STV 1.0 0.9091)) +(: cnet_isa_d1e8168f08 (IsA hypertonicity osmotic_pressure) (STV 1.0 0.9091)) +(: cnet_isa_684d266a30 (IsA hypertrophic_cardiomyopathy cardiomyopathy) (STV 1.0 0.9091)) +(: cnet_isa_e7102dd30e (IsA hypertrophy dysplasia) (STV 1.0 0.9091)) +(: cnet_isa_c6844c91c2 (IsA hypervelocity speed) (STV 1.0 0.9091)) +(: cnet_isa_1a5ca0296a (IsA hyperventilation breathing) (STV 1.0 0.9091)) +(: cnet_isa_ba92f501af (IsA hypervitaminosis abnormality) (STV 1.0 0.9091)) +(: cnet_isa_fc4f1057a7 (IsA hypervolemia blood_disease) (STV 1.0 0.9091)) +(: cnet_isa_c82a621ea8 (IsA hypha fibril) (STV 1.0 0.9091)) +(: cnet_isa_8ddedb86ae (IsA hyphantria arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_22910e5a5e (IsA hyphantria_cunea webworm_moth) (STV 1.0 0.9091)) +(: cnet_isa_df5cc6c443 (IsA hyphema bleeding) (STV 1.0 0.9091)) +(: cnet_isa_7f4d4e03f0 (IsA hyphen punctuation) (STV 1.0 0.9091)) +(: cnet_isa_ee8b013c0d (IsA hyphenation punctuation) (STV 1.0 0.9091)) +(: cnet_isa_c7d07b5d17 (IsA hypnagogue agent) (STV 1.0 0.9091)) +(: cnet_isa_b6e978949e (IsA hypnoanalysis psychoanalysis) (STV 1.0 0.9091)) +(: cnet_isa_e91769fe31 (IsA hypnogenesis induction) (STV 1.0 0.9091)) +(: cnet_isa_eb6ed9f8a7 (IsA hypnophobia simple_phobia) (STV 1.0 0.9091)) +(: cnet_isa_8252b25ca0 (IsA hypnosis psychological_state) (STV 1.0 0.9091)) +(: cnet_isa_5b4eaa2981 (IsA hypnotherapy psychotherapy) (STV 1.0 0.9091)) +(: cnet_isa_ca19e14197 (IsA hypnotic_trance trance) (STV 1.0 0.9091)) +(: cnet_isa_7c6bd81658 (IsA hypnotism influence) (STV 1.0 0.9091)) +(: cnet_isa_97c4f2a775 (IsA hypnotist psychologist) (STV 1.0 0.9091)) +(: cnet_isa_27025cc0b1 (IsA hypo fixing_agent) (STV 1.0 0.9091)) +(: cnet_isa_2e7e28ff61 (IsA hypo_eutectoid_steel carbon_steel) (STV 1.0 0.9091)) +(: cnet_isa_6b22ebc97a (IsA hypobasidium plant_organ) (STV 1.0 0.9091)) +(: cnet_isa_10e62c0b8f (IsA hypobetalipoproteinemia hypolipoproteinemia) (STV 1.0 0.9091)) +(: cnet_isa_3bc2ac9c73 (IsA hypocalcemia symptom) (STV 1.0 0.9091)) +(: cnet_isa_6cc908dcee (IsA hypocapnia physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_6067e127da (IsA hypocellularity cellularity) (STV 1.0 0.9091)) +(: cnet_isa_682cb09ed7 (IsA hypochaeris asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_afebd4e1e3 (IsA hypochlorite salt) (STV 1.0 0.9091)) +(: cnet_isa_35e319e615 (IsA hypochlorous_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_c3679e023f (IsA hypochondria anxiety) (STV 1.0 0.9091)) +(: cnet_isa_a8b0bb203e (IsA hypochondriac patient) (STV 1.0 0.9091)) +(: cnet_isa_6736c50ae0 (IsA hypochondrium area) (STV 1.0 0.9091)) +(: cnet_isa_f8b6441976 (IsA hypochromic_anemia anemia) (STV 1.0 0.9091)) +(: cnet_isa_9ffe23233c (IsA hypocreaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_b522bdf441 (IsA hypocreale fungus_order) (STV 1.0 0.9091)) +(: cnet_isa_ced1e801c5 (IsA hypocrisy insincerity) (STV 1.0 0.9091)) +(: cnet_isa_882ec7c25b (IsA hypocrisy pretense) (STV 1.0 0.9091)) +(: cnet_isa_9e75aca318 (IsA hypocrite deceiver) (STV 1.0 0.9091)) +(: cnet_isa_74edaeb953 (IsA hypocycloid roulette) (STV 1.0 0.9091)) +(: cnet_isa_4999bd7eea (IsA hypoderma arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_aa6d5c6d19 (IsA hypodermic_needle needle) (STV 1.0 0.9091)) +(: cnet_isa_7ad17a93b5 (IsA hypodermic_syringe syringe) (STV 1.0 0.9091)) +(: cnet_isa_70fdb360c3 (IsA hypodermis layer) (STV 1.0 0.9091)) +(: cnet_isa_928e819db0 (IsA hypoesthesia disability) (STV 1.0 0.9091)) +(: cnet_isa_ef86f73449 (IsA hypogammaglobulinemia immunodeficiency) (STV 1.0 0.9091)) +(: cnet_isa_87c3c54ff8 (IsA hypogastric_plexus nerve_plexus) (STV 1.0 0.9091)) +(: cnet_isa_a9c88663c9 (IsA hypogastric_vein iliac_vein) (STV 1.0 0.9091)) +(: cnet_isa_2765c882c7 (IsA hypoglossal cranial_nerve) (STV 1.0 0.9091)) +(: cnet_isa_18d3f6b6fe (IsA hypoglycemia symptom) (STV 1.0 0.9091)) +(: cnet_isa_51eacdfcdf (IsA hypoglycemic_agent agent) (STV 1.0 0.9091)) +(: cnet_isa_d4771410e9 (IsA hypogonadism incompetence) (STV 1.0 0.9091)) +(: cnet_isa_a05acccadc (IsA hypokalemia symptom) (STV 1.0 0.9091)) +(: cnet_isa_71a15667bc (IsA hypolipoproteinemia metabolic_disorder) (STV 1.0 0.9091)) +(: cnet_isa_6eb033d5a1 (IsA hyponatremia symptom) (STV 1.0 0.9091)) +(: cnet_isa_28c96fd7e4 (IsA hyponitrous_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_35ce9b8cbd (IsA hyponym word) (STV 1.0 0.9091)) +(: cnet_isa_d1a3b2f893 (IsA hyponymy semantic_relation) (STV 1.0 0.9091)) +(: cnet_isa_279bcba527 (IsA hypopachus amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_53fe067df4 (IsA hypoparathyroidism glandular_disease) (STV 1.0 0.9091)) +(: cnet_isa_714e3a2538 (IsA hypophosphoric_acid oxyacid) (STV 1.0 0.9091)) +(: cnet_isa_76c861b9ed (IsA hypophosphorous_acid oxyacid) (STV 1.0 0.9091)) +(: cnet_isa_a216f8a723 (IsA hypophyseal_stalk infundibulum) (STV 1.0 0.9091)) +(: cnet_isa_34fccc0d5f (IsA hypophysectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_9592cdc6dc (IsA hypophysial_dwarf dwarf) (STV 1.0 0.9091)) +(: cnet_isa_c7ce085b32 (IsA hypopigmentation physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_72172707ba (IsA hypopity dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_844bc4a3aa (IsA hypoplasia dysplasia) (STV 1.0 0.9091)) +(: cnet_isa_e367ea47eb (IsA hypoplastic_anemia anemia) (STV 1.0 0.9091)) +(: cnet_isa_6ae3563d3b (IsA hypopnea breathing) (STV 1.0 0.9091)) +(: cnet_isa_247d4199e3 (IsA hypoproteinemia symptom) (STV 1.0 0.9091)) +(: cnet_isa_da681cc58a (IsA hyposmia dysomia) (STV 1.0 0.9091)) +(: cnet_isa_b8c63ee5f4 (IsA hypospadia abnormality) (STV 1.0 0.9091)) +(: cnet_isa_22ddeac972 (IsA hypostasis kernel) (STV 1.0 0.9091)) +(: cnet_isa_39366523fe (IsA hypostasis god_almighty) (STV 1.0 0.9091)) +(: cnet_isa_b85605beb6 (IsA hypostasis bodily_process) (STV 1.0 0.9091)) +(: cnet_isa_0f53621fe7 (IsA hypostasis organic_process) (STV 1.0 0.9091)) +(: cnet_isa_fcde79449d (IsA hypostatization objectification) (STV 1.0 0.9091)) +(: cnet_isa_74c3380bab (IsA hypotension cardiovascular_disease) (STV 1.0 0.9091)) +(: cnet_isa_4672c7a116 (IsA hypotensive patient) (STV 1.0 0.9091)) +(: cnet_isa_a77b12bb5d (IsA hypotenuse flank) (STV 1.0 0.9091)) +(: cnet_isa_d137d3b346 (IsA hypothalamus neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_2e2030680a (IsA hypothermia physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_1a1af605c9 (IsA hypothesis concept) (STV 1.0 0.9091)) +(: cnet_isa_e4b0cff2dd (IsA hypothesis proposal) (STV 1.0 0.9091)) +(: cnet_isa_4fedb71842 (IsA hypothetical hypothesis) (STV 1.0 0.9091)) +(: cnet_isa_5cdfe0fe90 (IsA hypothetical_creature imaginary_being) (STV 1.0 0.9091)) +(: cnet_isa_342ae56255 (IsA hypothetical_imperative principle) (STV 1.0 0.9091)) +(: cnet_isa_2f85c4ae31 (IsA hypothrombinemia blood_disease) (STV 1.0 0.9091)) +(: cnet_isa_8514ef828e (IsA hypothyroidism glandular_disease) (STV 1.0 0.9091)) +(: cnet_isa_84b8bb257b (IsA hypotonia tonicity) (STV 1.0 0.9091)) +(: cnet_isa_df5d2566ab (IsA hypotonicity osmotic_pressure) (STV 1.0 0.9091)) +(: cnet_isa_00f3e4706b (IsA hypovolemia blood_disease) (STV 1.0 0.9091)) +(: cnet_isa_de6f154237 (IsA hypovolemic_shock shock) (STV 1.0 0.9091)) +(: cnet_isa_1be14e6aa6 (IsA hypoxia drive) (STV 1.0 0.9091)) +(: cnet_isa_7116dad819 (IsA hypoxic_hypoxia hypoxia) (STV 1.0 0.9091)) +(: cnet_isa_bc41671850 (IsA hypoxidaceae liliid_monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_0e085a5940 (IsA hypoxis liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b5151e403f (IsA hypozeugma rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_27903b855a (IsA hypozeuxis rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_e7702a7bd3 (IsA hypsiglena reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_aad743c677 (IsA hypsiprymnodon mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_4de543bdac (IsA hypsography geology) (STV 1.0 0.9091)) +(: cnet_isa_e3378d89af (IsA hypsometer altimeter) (STV 1.0 0.9091)) +(: cnet_isa_17f91ec91e (IsA hypsometry measurement) (STV 1.0 0.9091)) +(: cnet_isa_d5b7bbcafc (IsA hyracoidea animal_order) (STV 1.0 0.9091)) +(: cnet_isa_b29e70cdb9 (IsA hyracotherium mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_ac980086c1 (IsA hyrax placental) (STV 1.0 0.9091)) +(: cnet_isa_520cdc9d49 (IsA hyson green_tea) (STV 1.0 0.9091)) +(: cnet_isa_0919def8df (IsA hyssop herb) (STV 1.0 0.9091)) +(: cnet_isa_7cc0c2ed72 (IsA hyssop_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_b000049775 (IsA hyssopus asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9545d21dbb (IsA hysterectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_0034ec672c (IsA hysteresis physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_b6b41cbd6c (IsA hysteria fear) (STV 1.0 0.9091)) +(: cnet_isa_6b98008592 (IsA hysteria neurosis) (STV 1.0 0.9091)) +(: cnet_isa_1976ea95b8 (IsA hysteric neurotic) (STV 1.0 0.9091)) +(: cnet_isa_fe3d41f819 (IsA hysteric attack) (STV 1.0 0.9091)) +(: cnet_isa_edc8f4c834 (IsA hysterocatalepsy hysteria) (STV 1.0 0.9091)) +(: cnet_isa_508a8fa09e (IsA hysteron_proteron logical_fallacy) (STV 1.0 0.9091)) +(: cnet_isa_35ccd9a1d2 (IsA hysteron_proteron rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_38957d205c (IsA hysterosalpingogram roentgenogram) (STV 1.0 0.9091)) +(: cnet_isa_c9c670ac7f (IsA hysteroscopy endoscopy) (STV 1.0 0.9091)) +(: cnet_isa_a09b93a3ed (IsA hysterotomy operation) (STV 1.0 0.9091)) +(: cnet_isa_97cf7109c2 (IsA hystricidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_aa66aa4181 (IsA hystricomorpha animal_order) (STV 1.0 0.9091)) +(: cnet_isa_de9c181194 (IsA i letter) (STV 1.0 0.9091)) +(: cnet_isa_e576745746 (IsA i_beam girder) (STV 1.0 0.9091)) +(: cnet_isa_d5c016962b (IsA iamb metrical_foot) (STV 1.0 0.9091)) +(: cnet_isa_65a44ccccc (IsA iambic verse) (STV 1.0 0.9091)) +(: cnet_isa_15bcad1bc0 (IsA iberian asiatic) (STV 1.0 0.9091)) +(: cnet_isa_af244d5c53 (IsA iberian european) (STV 1.0 0.9091)) +(: cnet_isa_6e1cbb0d63 (IsA iberis dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_46f5777bbc (IsA ibero_mesornis bird) (STV 1.0 0.9091)) +(: cnet_isa_a2adc11f2b (IsA ibex wild_goat) (STV 1.0 0.9091)) +(: cnet_isa_0f063b8a29 (IsA ibis wading_bird) (STV 1.0 0.9091)) +(: cnet_isa_335562b2e6 (IsA ibizan_hound hound) (STV 1.0 0.9091)) +(: cnet_isa_f0b4f43474 (IsA ibm company) (STV 1.0 0.9454)) +(: cnet_isa_6366f8b68c (IsA ibm computer) (STV 1.0 0.9339)) +(: cnet_isa_8b677dcae1 (IsA ibm computer_manufacturer) (STV 1.0 0.9454)) +(: cnet_isa_889442f6b9 (IsA ibm manufacturer_of_information_processing_device) (STV 1.0 0.9339)) +(: cnet_isa_5c64eeed14 (IsA ibm specific_brand_of_pc) (STV 1.0 0.9339)) +(: cnet_isa_c16c6c962f (IsA ibolium_privet privet) (STV 1.0 0.9091)) +(: cnet_isa_5d310d1ba3 (IsA ice frozen_water) (STV 1.0 0.9454)) +(: cnet_isa_34b71dff18 (IsA ice material) (STV 1.0 0.9091)) +(: cnet_isa_7bef21e6cb (IsA ice near_frictionless_surface) (STV 1.0 0.9091)) +(: cnet_isa_5c44d88579 (IsA ice frozen_dessert) (STV 1.0 0.9091)) +(: cnet_isa_5f28237fb7 (IsA ice object) (STV 1.0 0.9091)) +(: cnet_isa_798a02be18 (IsA ice diamond) (STV 1.0 0.9091)) +(: cnet_isa_3b205d281b (IsA ice crystal) (STV 1.0 0.9091)) +(: cnet_isa_20012f7d39 (IsA ice_age period) (STV 1.0 0.9091)) +(: cnet_isa_6cb94ab081 (IsA ice_ax ax) (STV 1.0 0.9091)) +(: cnet_isa_d3e93d830c (IsA ice_bear bear) (STV 1.0 0.9091)) +(: cnet_isa_58e053b31c (IsA ice_cream dessert) (STV 1.0 0.9339)) +(: cnet_isa_6ed83406f4 (IsA ice_cream frozen_dairy_treat) (STV 1.0 0.9091)) +(: cnet_isa_f27122a115 (IsA ice_cream good_dessert_item) (STV 1.0 0.9091)) +(: cnet_isa_9d0d738761 (IsA ice_cream tasty_treat) (STV 1.0 0.9091)) +(: cnet_isa_9b022a1736 (IsA ice_cream frozen_dessert) (STV 1.0 0.9091)) +(: cnet_isa_36ecd569f0 (IsA ice_cream_bean tree) (STV 1.0 0.9091)) +(: cnet_isa_1596ffc2d9 (IsA ice_cream_cake frozen_dessert) (STV 1.0 0.9091)) +(: cnet_isa_f64b953dcc (IsA ice_cream_cone frozen_dessert) (STV 1.0 0.9091)) +(: cnet_isa_249410188a (IsA ice_cream_float ice_cream_soda) (STV 1.0 0.9091)) +(: cnet_isa_15fb78d116 (IsA ice_cream_soda drink) (STV 1.0 0.9091)) +(: cnet_isa_bb4818f479 (IsA ice_cream_sundae frozen_dessert) (STV 1.0 0.9091)) +(: cnet_isa_4f18a8af09 (IsA ice_crystal crystal) (STV 1.0 0.9091)) +(: cnet_isa_b4e5f12e5d (IsA ice_cube cube) (STV 1.0 0.9091)) +(: cnet_isa_43007a73b3 (IsA ice_field ice_mass) (STV 1.0 0.9091)) +(: cnet_isa_4c3cb74f29 (IsA ice_floe ice_mass) (STV 1.0 0.9091)) +(: cnet_isa_50052b1abe (IsA ice_fog fog) (STV 1.0 0.9091)) +(: cnet_isa_66dc350269 (IsA ice_hockey dangerous_sport) (STV 1.0 0.9091)) +(: cnet_isa_ddfd4f1dd4 (IsA ice_hockey violent_game) (STV 1.0 0.9091)) +(: cnet_isa_caf2247210 (IsA ice_hockey athletic_game) (STV 1.0 0.9091)) +(: cnet_isa_0fd6b53e14 (IsA ice_hockey contact_sport) (STV 1.0 0.9091)) +(: cnet_isa_464c01851c (IsA ice_hockey_rink ice_rink) (STV 1.0 0.9091)) +(: cnet_isa_60ed9fd8c7 (IsA ice_lolly frozen_dessert) (STV 1.0 0.9091)) +(: cnet_isa_6ea15e0476 (IsA ice_machine electric_refrigerator) (STV 1.0 0.9091)) +(: cnet_isa_5ca8b9af95 (IsA ice_maker kitchen_appliance) (STV 1.0 0.9091)) +(: cnet_isa_d319e60131 (IsA ice_mass geological_formation) (STV 1.0 0.9091)) +(: cnet_isa_08bb303a4a (IsA ice_milk frozen_dessert) (STV 1.0 0.9091)) +(: cnet_isa_35ffa1d96b (IsA ice_pack bag) (STV 1.0 0.9091)) +(: cnet_isa_802467eb8a (IsA ice_plant fig_marigold) (STV 1.0 0.9091)) +(: cnet_isa_0b3294f034 (IsA ice_rink rink) (STV 1.0 0.9091)) +(: cnet_isa_bbda414b80 (IsA ice_show show) (STV 1.0 0.9091)) +(: cnet_isa_00456a2015 (IsA ice_skate skate) (STV 1.0 0.9091)) +(: cnet_isa_ce9d99b35c (IsA ice_skater skater) (STV 1.0 0.9091)) +(: cnet_isa_32b2814494 (IsA ice_skating skating) (STV 1.0 0.9091)) +(: cnet_isa_e9b1125dd8 (IsA ice_storm storm) (STV 1.0 0.9091)) +(: cnet_isa_1b59bfe861 (IsA ice_tea tea) (STV 1.0 0.9091)) +(: cnet_isa_f42b7ba855 (IsA ice_tong tong) (STV 1.0 0.9091)) +(: cnet_isa_ac1a344b77 (IsA ice_wagon wagon) (STV 1.0 0.9091)) +(: cnet_isa_8f897bb319 (IsA ice_water drinking_water) (STV 1.0 0.9091)) +(: cnet_isa_4d353b02ec (IsA iceberg floater) (STV 1.0 0.9091)) +(: cnet_isa_613aa3744f (IsA iceberg ice_mass) (STV 1.0 0.9091)) +(: cnet_isa_0e662f65ef (IsA iceboat vessel) (STV 1.0 0.9091)) +(: cnet_isa_599bfed957 (IsA icebreaker beginning) (STV 1.0 0.9091)) +(: cnet_isa_973a01cba0 (IsA icebreaker ship) (STV 1.0 0.9091)) +(: cnet_isa_89367fe840 (IsA icecap ice_mass) (STV 1.0 0.9091)) +(: cnet_isa_31dbee4936 (IsA iced_coffee coffee) (STV 1.0 0.9091)) +(: cnet_isa_3ffc11c8fe (IsA iced_tea_spoon teaspoon) (STV 1.0 0.9091)) +(: cnet_isa_a5969b61ba (IsA icefall ice) (STV 1.0 0.9091)) +(: cnet_isa_da69677353 (IsA icehouse house) (STV 1.0 0.9091)) +(: cnet_isa_4d3af463a7 (IsA iceland country) (STV 1.0 0.9091)) +(: cnet_isa_888f5a2f02 (IsA iceland island) (STV 1.0 0.9091)) +(: cnet_isa_315bb3e888 (IsA iceland_moss lichen) (STV 1.0 0.9091)) +(: cnet_isa_242b7bf07a (IsA iceland_poppy poppy) (STV 1.0 0.9091)) +(: cnet_isa_1ca86da728 (IsA iceland_spar calcite) (STV 1.0 0.9091)) +(: cnet_isa_356748109a (IsA icelander european) (STV 1.0 0.9091)) +(: cnet_isa_d55a0b6920 (IsA icelandic scandinavian) (STV 1.0 0.9091)) +(: cnet_isa_9fac0fba22 (IsA icelandic_krona icelandic_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_008b1e9572 (IsA icelandic_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_b428e09f25 (IsA iceman deliveryman) (STV 1.0 0.9091)) +(: cnet_isa_308d76728b (IsA icepick pick) (STV 1.0 0.9091)) +(: cnet_isa_f59d3584f8 (IsA icetray tray) (STV 1.0 0.9091)) +(: cnet_isa_34e9e9fe5f (IsA ichneumon mongoose) (STV 1.0 0.9091)) +(: cnet_isa_f7476f8fbc (IsA ichneumon_fly hymenopterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_2c885bb46d (IsA ichneumonidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_a0c878d756 (IsA ichor fluid) (STV 1.0 0.9091)) +(: cnet_isa_8a1acc285c (IsA ichthyolatry zoolatry) (STV 1.0 0.9091)) +(: cnet_isa_eb19e2f9a4 (IsA ichthyologist zoologist) (STV 1.0 0.9091)) +(: cnet_isa_eefc9909e2 (IsA ichthyology zoology) (STV 1.0 0.9091)) +(: cnet_isa_29bc2384cc (IsA ichthyosaur archosaur) (STV 1.0 0.9091)) +(: cnet_isa_5adbd3427f (IsA ichthyosauria animal_order) (STV 1.0 0.9091)) +(: cnet_isa_0ee4093a15 (IsA ichthyosauridae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_b2f839442d (IsA ichthyosaurus ichthyosaur) (STV 1.0 0.9091)) +(: cnet_isa_d893a82054 (IsA ichthyosis genetic_disease) (STV 1.0 0.9091)) +(: cnet_isa_67709c1389 (IsA ichyostega amphibian) (STV 1.0 0.9091)) +(: cnet_isa_bccc15fd43 (IsA icicle ice) (STV 1.0 0.9091)) +(: cnet_isa_801f9955b8 (IsA icing maneuver) (STV 1.0 0.9091)) +(: cnet_isa_27e6b9e519 (IsA icing_sugar powdered_sugar) (STV 1.0 0.9091)) +(: cnet_isa_90e3077676 (IsA icon painting) (STV 1.0 0.9091)) +(: cnet_isa_426a365fd4 (IsA icon symbol) (STV 1.0 0.9091)) +(: cnet_isa_662d97d495 (IsA iconoclasm unorthodoxy) (STV 1.0 0.9091)) +(: cnet_isa_053d4157c7 (IsA iconoclast attacker) (STV 1.0 0.9091)) +(: cnet_isa_e1f62a6887 (IsA iconoclast destroyer) (STV 1.0 0.9091)) +(: cnet_isa_34a15af67b (IsA iconography ikon) (STV 1.0 0.9091)) +(: cnet_isa_91cec5d937 (IsA iconolatry idolatry) (STV 1.0 0.9091)) +(: cnet_isa_e6c60b37c2 (IsA iconology art_history) (STV 1.0 0.9091)) +(: cnet_isa_08395da786 (IsA iconoscope television_camera_tube) (STV 1.0 0.9091)) +(: cnet_isa_f71637d841 (IsA icosahedron polyhedron) (STV 1.0 0.9091)) +(: cnet_isa_716080afdc (IsA ictalurus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_cd5a9b88ab (IsA icteria bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_c9623611d8 (IsA icteridae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_d8daac1c2c (IsA icterus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_0a9dc80716 (IsA ictiobus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_53f779dd75 (IsA ictodosaur synapsid) (STV 1.0 0.9091)) +(: cnet_isa_23c698b643 (IsA ictodosauria animal_order) (STV 1.0 0.9091)) +(: cnet_isa_8e68e66d27 (IsA ictonyx mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_0f8be15ef0 (IsA id badge) (STV 1.0 0.9091)) +(: cnet_isa_a50e8d4a83 (IsA id positive_identification) (STV 1.0 0.9091)) +(: cnet_isa_6bb18ea96a (IsA id instinct) (STV 1.0 0.9091)) +(: cnet_isa_171ad0f5a9 (IsA id_al_adha feast_day) (STV 1.0 0.9091)) +(: cnet_isa_c7e21421e7 (IsA id_al_fitr feast_day) (STV 1.0 0.9091)) +(: cnet_isa_af2a50cdc8 (IsA idaho state) (STV 1.0 0.9091)) +(: cnet_isa_ea5a6d1df6 (IsA idahoan american) (STV 1.0 0.9091)) +(: cnet_isa_b8d86a2492 (IsA idea central_meaning_purpose_or_concept) (STV 1.0 0.9091)) +(: cnet_isa_8eab710fbc (IsA idea content) (STV 1.0 0.9091)) +(: cnet_isa_bb749479a0 (IsA idea opinion) (STV 1.0 0.9091)) +(: cnet_isa_052379ddc2 (IsA ideal idea) (STV 1.0 0.9091)) +(: cnet_isa_3ac5aa8edf (IsA ideal model) (STV 1.0 0.9091)) +(: cnet_isa_f841c63f98 (IsA ideal_gas gas) (STV 1.0 0.9091)) +(: cnet_isa_bd91b456c7 (IsA idealism impracticality) (STV 1.0 0.9091)) +(: cnet_isa_d687fbe518 (IsA idealism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_a9d122dca5 (IsA idealist visionary) (STV 1.0 0.9091)) +(: cnet_isa_fc494c38b6 (IsA ideality quality) (STV 1.0 0.9091)) +(: cnet_isa_2af8d5add8 (IsA idealization admiration) (STV 1.0 0.9091)) +(: cnet_isa_e8a1597f54 (IsA idealization idea) (STV 1.0 0.9091)) +(: cnet_isa_363569ff31 (IsA idealization defense_mechanism) (STV 1.0 0.9091)) +(: cnet_isa_404295280e (IsA idea not_object) (STV 1.0 0.9339)) +(: cnet_isa_48067b93a8 (IsA ideation thinking) (STV 1.0 0.9091)) +(: cnet_isa_c1db5dbc96 (IsA identical_twin twin) (STV 1.0 0.9091)) +(: cnet_isa_b17defed82 (IsA identification identity) (STV 1.0 0.9091)) +(: cnet_isa_77f073b660 (IsA identification evidence) (STV 1.0 0.9091)) +(: cnet_isa_ecb8963a97 (IsA identification condition) (STV 1.0 0.9091)) +(: cnet_isa_cd6397c76c (IsA identification_particle atom) (STV 1.0 0.9091)) +(: cnet_isa_f51751c071 (IsA identifier symbol) (STV 1.0 0.9091)) +(: cnet_isa_34253e2eb3 (IsA identity personality) (STV 1.0 0.9091)) +(: cnet_isa_05f0249788 (IsA identity sameness) (STV 1.0 0.9091)) +(: cnet_isa_bec54cbc30 (IsA identity recognition) (STV 1.0 0.9091)) +(: cnet_isa_cc7e6df83a (IsA identity operator) (STV 1.0 0.9091)) +(: cnet_isa_c64801679c (IsA identity_crisis psychological_state) (STV 1.0 0.9091)) +(: cnet_isa_4ee482164d (IsA identity_matrix scalar_matrix) (STV 1.0 0.9091)) +(: cnet_isa_f73c63ff72 (IsA identity_theft fraud) (STV 1.0 0.9091)) +(: cnet_isa_a11bf73f55 (IsA ideogram character) (STV 1.0 0.9091)) +(: cnet_isa_83a0d218b8 (IsA ideography orthography) (STV 1.0 0.9091)) +(: cnet_isa_ad9a9c83ce (IsA ideological_barrier barrier) (STV 1.0 0.9091)) +(: cnet_isa_5af671cc23 (IsA ideologist advocate) (STV 1.0 0.9091)) +(: cnet_isa_ea89ceab67 (IsA ideology theorization) (STV 1.0 0.9091)) +(: cnet_isa_36808b6182 (IsA ide day) (STV 1.0 0.9091)) +(: cnet_isa_2f27dcccb6 (IsA idesia tree) (STV 1.0 0.9091)) +(: cnet_isa_bf21b46ed1 (IsA idiocy retardation) (STV 1.0 0.9091)) +(: cnet_isa_80bba0b6fa (IsA idiolatry worship) (STV 1.0 0.9091)) +(: cnet_isa_da99dc9ac7 (IsA idiolect speech) (STV 1.0 0.9091)) +(: cnet_isa_5810dd70e2 (IsA idiom saying) (STV 1.0 0.9091)) +(: cnet_isa_5b38049650 (IsA idiom_neutral artificial_language) (STV 1.0 0.9091)) +(: cnet_isa_5d24d78d45 (IsA idiopathic_disease disorder) (STV 1.0 0.9091)) +(: cnet_isa_60ff4fd863 (IsA idiosyncrasy peculiarity) (STV 1.0 0.9091)) +(: cnet_isa_3248295eb9 (IsA idiot simpleton) (STV 1.0 0.9091)) +(: cnet_isa_403e7c9ca9 (IsA idiot_light red_light) (STV 1.0 0.9091)) +(: cnet_isa_5c17d73eda (IsA idiot_savant simpleton) (STV 1.0 0.9091)) +(: cnet_isa_37f70fc9e1 (IsA iditarod cross_country) (STV 1.0 0.9091)) +(: cnet_isa_34e1461a8d (IsA idle operation) (STV 1.0 0.9091)) +(: cnet_isa_01534bb6fa (IsA idle_pulley pulley) (STV 1.0 0.9091)) +(: cnet_isa_71dcb5a423 (IsA idleness inactivity) (STV 1.0 0.9091)) +(: cnet_isa_4c95e2d420 (IsA idler nonworker) (STV 1.0 0.9091)) +(: cnet_isa_8fb6eda6dd (IsA ido artificial_language) (STV 1.0 0.9091)) +(: cnet_isa_2c58fa493d (IsA idol effigy) (STV 1.0 0.9091)) +(: cnet_isa_3fa29895b6 (IsA idol star) (STV 1.0 0.9091)) +(: cnet_isa_0de483274e (IsA idolater heathen) (STV 1.0 0.9091)) +(: cnet_isa_b48c470774 (IsA idolatress idolater) (STV 1.0 0.9091)) +(: cnet_isa_fcb2ca7d6e (IsA idolatry worship) (STV 1.0 0.9091)) +(: cnet_isa_77da8e0d04 (IsA idolization worship) (STV 1.0 0.9091)) +(: cnet_isa_e0e98f36d3 (IsA idolizer lover) (STV 1.0 0.9091)) +(: cnet_isa_26f0502c24 (IsA idyll episode) (STV 1.0 0.9091)) +(: cnet_isa_a73c380926 (IsA igbo ethnic_group) (STV 1.0 0.9091)) +(: cnet_isa_d76fbf0149 (IsA igbo nigerian) (STV 1.0 0.9091)) +(: cnet_isa_fb0248accc (IsA igloo house) (STV 1.0 0.9091)) +(: cnet_isa_eb2f259065 (IsA igloo hovel) (STV 1.0 0.9091)) +(: cnet_isa_06f1cf9874 (IsA igneous_rock rock) (STV 1.0 0.9091)) +(: cnet_isa_6a4d12f515 (IsA igniter fuel) (STV 1.0 0.9091)) +(: cnet_isa_5cef9713d3 (IsA ignition burning) (STV 1.0 0.9091)) +(: cnet_isa_984be69f7c (IsA ignition mechanism) (STV 1.0 0.9091)) +(: cnet_isa_a0d068d682 (IsA ignition fire) (STV 1.0 0.9091)) +(: cnet_isa_52f045cdfc (IsA ignition_coil induction_coil) (STV 1.0 0.9091)) +(: cnet_isa_db8b052a9b (IsA ignition_interlock device) (STV 1.0 0.9091)) +(: cnet_isa_04c1af716e (IsA ignition_key key) (STV 1.0 0.9091)) +(: cnet_isa_3c0c4ba173 (IsA ignition_switch switch) (STV 1.0 0.9091)) +(: cnet_isa_61df4f81e6 (IsA ignobleness dishonorableness) (STV 1.0 0.9091)) +(: cnet_isa_ae5c9368a3 (IsA ignoramus unskilled_person) (STV 1.0 0.9091)) +(: cnet_isa_311200f525 (IsA ignorance bliss) (STV 1.0 0.9636)) +(: cnet_isa_696af500a6 (IsA ignorance content) (STV 1.0 0.9091)) +(: cnet_isa_9def3ba030 (IsA ignorantness ignorance) (STV 1.0 0.9091)) +(: cnet_isa_182cb38dce (IsA ignoratio_elenchi logical_fallacy) (STV 1.0 0.9091)) +(: cnet_isa_ca60370bc1 (IsA iguanid lizard) (STV 1.0 0.9091)) +(: cnet_isa_7158f4f2e5 (IsA iguanidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_2c3afd9a80 (IsA iguanodon dinosaur) (STV 1.0 0.9091)) +(: cnet_isa_cd7dd7a109 (IsA iguanodontidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_1d4bc1cb34 (IsA ijtihad interpretation) (STV 1.0 0.9091)) +(: cnet_isa_982f706b50 (IsA ikon representation) (STV 1.0 0.9091)) +(: cnet_isa_251927e577 (IsA ilama custard_apple) (STV 1.0 0.9091)) +(: cnet_isa_e9438d002d (IsA ilang_ilang angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_647c825b88 (IsA ilang_ilang essential_oil) (STV 1.0 0.9091)) +(: cnet_isa_0675b05520 (IsA ileal_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_8b3cbbaaa8 (IsA ileitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_314e56e485 (IsA ileocecal_valve valve) (STV 1.0 0.9091)) +(: cnet_isa_e067e9f42c (IsA ileocolic_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_3f0fe45f94 (IsA ileocolic_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_baaa4e6864 (IsA ileostomy ostomy) (STV 1.0 0.9091)) +(: cnet_isa_e327a62fbe (IsA ileum small_intestine) (STV 1.0 0.9091)) +(: cnet_isa_57c8675735 (IsA ilex dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f9926bd85c (IsA iliac_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_54a2a93736 (IsA iliac_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_04fa0e9c61 (IsA iliamna dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2552b02619 (IsA iliolumbar_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_f7112088e2 (IsA iliolumbar_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_e56d864621 (IsA ilium bone) (STV 1.0 0.9091)) +(: cnet_isa_41c019ba19 (IsA ilk kind) (STV 1.0 0.9091)) +(: cnet_isa_3c7ca31767 (IsA ill_being adversity) (STV 1.0 0.9091)) +(: cnet_isa_91f16f9f31 (IsA ill_health pathological_state) (STV 1.0 0.9091)) +(: cnet_isa_714b23ab9b (IsA ill_humor temper) (STV 1.0 0.9091)) +(: cnet_isa_33c7b149c1 (IsA ill_nature disposition) (STV 1.0 0.9091)) +(: cnet_isa_2b6fd87a1c (IsA illecebrum caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ef1824135c (IsA illegal_alien person) (STV 1.0 0.9091)) +(: cnet_isa_a1485f7f64 (IsA illegal_possession criminal_possession) (STV 1.0 0.9091)) +(: cnet_isa_3972178f03 (IsA illegality unlawfulness) (STV 1.0 0.9091)) +(: cnet_isa_7aa4fb43a0 (IsA illegibility incomprehensibility) (STV 1.0 0.9091)) +(: cnet_isa_2efc76eb31 (IsA illegitimacy unlawfulness) (STV 1.0 0.9091)) +(: cnet_isa_85e5f42666 (IsA illiberality stinginess) (STV 1.0 0.9091)) +(: cnet_isa_15be96ab6a (IsA illicitness unlawfulness) (STV 1.0 0.9091)) +(: cnet_isa_0482417bb9 (IsA illicium magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9a17026916 (IsA illinois state) (STV 1.0 0.9091)) +(: cnet_isa_afff8d12d8 (IsA illinois algonquian) (STV 1.0 0.9091)) +(: cnet_isa_bc37b26543 (IsA illinois algonquin) (STV 1.0 0.9091)) +(: cnet_isa_6d577240f2 (IsA illinoisan american) (STV 1.0 0.9091)) +(: cnet_isa_b92274d88b (IsA illiteracy ignorance) (STV 1.0 0.9091)) +(: cnet_isa_a70c350319 (IsA illiteracy inability) (STV 1.0 0.9091)) +(: cnet_isa_164fcf30a5 (IsA illiterate ignoramus) (STV 1.0 0.9091)) +(: cnet_isa_e6ab956c2c (IsA illness ill_health) (STV 1.0 0.9091)) +(: cnet_isa_b7e71e8d78 (IsA illogicality quality) (STV 1.0 0.9091)) +(: cnet_isa_f33c6807ee (IsA illuminance luminosity) (STV 1.0 0.9091)) +(: cnet_isa_2db29232f9 (IsA illuminant fuel) (STV 1.0 0.9091)) +(: cnet_isa_c04e28febb (IsA illumination state) (STV 1.0 0.9091)) +(: cnet_isa_d4759d97ae (IsA illumination_unit light_unit) (STV 1.0 0.9091)) +(: cnet_isa_245ec5f3ce (IsA illusion appearance) (STV 1.0 0.9091)) +(: cnet_isa_7c8e6c45a3 (IsA illusion misconception) (STV 1.0 0.9091)) +(: cnet_isa_46a4ba9f13 (IsA illustration representation) (STV 1.0 0.9091)) +(: cnet_isa_5ef072f3be (IsA illustration artwork) (STV 1.0 0.9091)) +(: cnet_isa_9d0a8eadd0 (IsA illustrator artist) (STV 1.0 0.9091)) +(: cnet_isa_683655ad23 (IsA illyrian indo_european) (STV 1.0 0.9091)) +(: cnet_isa_2e125a5aec (IsA ilmenite mineral) (STV 1.0 0.9091)) +(: cnet_isa_1a38c4276f (IsA imac computer) (STV 1.0 0.9572)) +(: cnet_isa_649ae50c52 (IsA image impression) (STV 1.0 0.9091)) +(: cnet_isa_f3497ed79a (IsA image representation) (STV 1.0 0.9091)) +(: cnet_isa_2b0b181904 (IsA image_compression compression) (STV 1.0 0.9091)) +(: cnet_isa_50a2693242 (IsA imaginary_being imagination) (STV 1.0 0.9091)) +(: cnet_isa_a7f71984ce (IsA imaginary_number complex_number) (STV 1.0 0.9091)) +(: cnet_isa_c91ce396ff (IsA imaginary_part pure_imaginary_number) (STV 1.0 0.9091)) +(: cnet_isa_902b005636 (IsA imaginary_place imagination) (STV 1.0 0.9091)) +(: cnet_isa_c2b821984b (IsA imagination creativity) (STV 1.0 0.9091)) +(: cnet_isa_129af11f61 (IsA imagination representational_process) (STV 1.0 0.9091)) +(: cnet_isa_e53f94328a (IsA imagination_image image) (STV 1.0 0.9091)) +(: cnet_isa_145730cea6 (IsA imaginative_comparison comparison) (STV 1.0 0.9091)) +(: cnet_isa_ba675d9f86 (IsA imaging pictorial_representation) (STV 1.0 0.9091)) +(: cnet_isa_cbafc0d3eb (IsA imagism artistic_movement) (STV 1.0 0.9091)) +(: cnet_isa_597ca63362 (IsA imago insect) (STV 1.0 0.9091)) +(: cnet_isa_8b069611fb (IsA imago prototype) (STV 1.0 0.9091)) +(: cnet_isa_3948f389d3 (IsA imam leader) (STV 1.0 0.9091)) +(: cnet_isa_d39860e2ea (IsA imam moslem) (STV 1.0 0.9091)) +(: cnet_isa_f70530fe83 (IsA imaret hostel) (STV 1.0 0.9091)) +(: cnet_isa_1fd07396bf (IsA imbalance disequilibrium) (STV 1.0 0.9091)) +(: cnet_isa_702d1c3d99 (IsA imbecility retardation) (STV 1.0 0.9091)) +(: cnet_isa_c60fb7cec8 (IsA imbibition absorption) (STV 1.0 0.9091)) +(: cnet_isa_69dbfc6e49 (IsA imbrication covering) (STV 1.0 0.9091)) +(: cnet_isa_a2a40861c8 (IsA imbroglio misinterpretation) (STV 1.0 0.9091)) +(: cnet_isa_3400d6b5e4 (IsA imbroglio situation) (STV 1.0 0.9091)) +(: cnet_isa_0bfde9d73b (IsA imidazole base) (STV 1.0 0.9091)) +(: cnet_isa_f1ca675ecd (IsA imide organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_2d7b0f8eb5 (IsA imitation copying) (STV 1.0 0.9091)) +(: cnet_isa_678ef31b8f (IsA imitation copy) (STV 1.0 0.9091)) +(: cnet_isa_c0e3759100 (IsA imitation doctrine) (STV 1.0 0.9091)) +(: cnet_isa_cdc4fc85f7 (IsA imitative_electronic_deception electronic_deception) (STV 1.0 0.9091)) +(: cnet_isa_d08ffdac60 (IsA immaculate_conception religious_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_307724877b (IsA immaculate_conception holy_day_of_obligation) (STV 1.0 0.9091)) +(: cnet_isa_d6f73bd63b (IsA immanence presence) (STV 1.0 0.9091)) +(: cnet_isa_4dd60cc707 (IsA immateriality quality) (STV 1.0 0.9091)) +(: cnet_isa_c903c9e048 (IsA immateriality irrelevance) (STV 1.0 0.9091)) +(: cnet_isa_ae796f9e65 (IsA immaturity state) (STV 1.0 0.9091)) +(: cnet_isa_ad1a6ea616 (IsA immediacy celerity) (STV 1.0 0.9091)) +(: cnet_isa_b7d41cc7da (IsA immediacy directness) (STV 1.0 0.9091)) +(: cnet_isa_9370d11407 (IsA immediacy intuition) (STV 1.0 0.9091)) +(: cnet_isa_0535fff79b (IsA immediate_allergy allergy) (STV 1.0 0.9091)) +(: cnet_isa_6b7dc83515 (IsA immediate_constituent constituent) (STV 1.0 0.9091)) +(: cnet_isa_43abce4c45 (IsA immersion baptism) (STV 1.0 0.9091)) +(: cnet_isa_13198fb293 (IsA immersion_heater heating_element) (STV 1.0 0.9091)) +(: cnet_isa_65dae12834 (IsA immigrant migrant) (STV 1.0 0.9091)) +(: cnet_isa_0dee17eeff (IsA immigrant_class class) (STV 1.0 0.9091)) +(: cnet_isa_31d0078d8b (IsA immigration migration) (STV 1.0 0.9091)) +(: cnet_isa_b1897492ce (IsA immigration body) (STV 1.0 0.9091)) +(: cnet_isa_7042439edf (IsA immigration_and_naturalization_service agency) (STV 1.0 0.9091)) +(: cnet_isa_6e840c8769 (IsA imminence state) (STV 1.0 0.9091)) +(: cnet_isa_24de45c0ad (IsA imminent_abortion spontaneous_abortion) (STV 1.0 0.9091)) +(: cnet_isa_11dd742b01 (IsA immobility quality) (STV 1.0 0.9091)) +(: cnet_isa_cf15debf49 (IsA immobilization preservation) (STV 1.0 0.9091)) +(: cnet_isa_d79be84898 (IsA immobilization restraint) (STV 1.0 0.9091)) +(: cnet_isa_f7f60191db (IsA immoderation degree) (STV 1.0 0.9091)) +(: cnet_isa_e84233af07 (IsA immodesty indecency) (STV 1.0 0.9091)) +(: cnet_isa_2c82ec71da (IsA immolation sacrifice) (STV 1.0 0.9091)) +(: cnet_isa_c55457a626 (IsA immorality quality) (STV 1.0 0.9091)) +(: cnet_isa_cb35b2edf5 (IsA immortal celebrity) (STV 1.0 0.9091)) +(: cnet_isa_73bfc2c648 (IsA immortality permanence) (STV 1.0 0.9091)) +(: cnet_isa_108820ae73 (IsA immortality afterlife) (STV 1.0 0.9091)) +(: cnet_isa_673e8142ef (IsA immortelle everlasting) (STV 1.0 0.9091)) +(: cnet_isa_2c5e0d74ba (IsA immotility immobility) (STV 1.0 0.9091)) +(: cnet_isa_9121a4211b (IsA immovability immobility) (STV 1.0 0.9091)) +(: cnet_isa_124fc278d5 (IsA immovable_bandage bandage) (STV 1.0 0.9091)) +(: cnet_isa_8cb8b503ac (IsA immune person) (STV 1.0 0.9091)) +(: cnet_isa_126e7ff8ed (IsA immune_response reaction) (STV 1.0 0.9091)) +(: cnet_isa_ee880d0970 (IsA immune_system system) (STV 1.0 0.9091)) +(: cnet_isa_5578e0c209 (IsA immunity invulnerability) (STV 1.0 0.9091)) +(: cnet_isa_c4d084bf31 (IsA immunity condition) (STV 1.0 0.9091)) +(: cnet_isa_c1e7d06848 (IsA immunization protection) (STV 1.0 0.9091)) +(: cnet_isa_defe0442c5 (IsA immunoassay bioassay) (STV 1.0 0.9091)) +(: cnet_isa_3ec9abc11c (IsA immunochemistry chemistry) (STV 1.0 0.9091)) +(: cnet_isa_3cc7ce1de9 (IsA immunochemistry immunology) (STV 1.0 0.9091)) +(: cnet_isa_1a65ac8aa3 (IsA immunocompetence ability) (STV 1.0 0.9091)) +(: cnet_isa_d845922837 (IsA immunodeficiency immunological_disorder) (STV 1.0 0.9091)) +(: cnet_isa_25181bd28f (IsA immunoelectrophoresis electrophoresis) (STV 1.0 0.9091)) +(: cnet_isa_8a8cbff997 (IsA immunofluorescence technique) (STV 1.0 0.9091)) +(: cnet_isa_7e808fe92d (IsA immunogen antigen) (STV 1.0 0.9091)) +(: cnet_isa_b24fe8ca37 (IsA immunogenicity immunity) (STV 1.0 0.9091)) +(: cnet_isa_2fc5a01e88 (IsA immunoglobulin antibody) (STV 1.0 0.9091)) +(: cnet_isa_4464cf5893 (IsA immunoglobulin gamma_globulin) (STV 1.0 0.9091)) +(: cnet_isa_5314eee10c (IsA immunoglobulin immunoglobulin) (STV 1.0 0.9091)) +(: cnet_isa_d0b8f1aeb5 (IsA immunoglobulin_d immunoglobulin) (STV 1.0 0.9091)) +(: cnet_isa_75f5e8989a (IsA immunoglobulin_e immunoglobulin) (STV 1.0 0.9091)) +(: cnet_isa_8120f789de (IsA immunoglobulin_g immunoglobulin) (STV 1.0 0.9091)) +(: cnet_isa_39d889d6e9 (IsA immunoglobulin_m immunoglobulin) (STV 1.0 0.9091)) +(: cnet_isa_5539f03b85 (IsA immunohistochemistry assay) (STV 1.0 0.9091)) +(: cnet_isa_563172a537 (IsA immunological_disorder disorder) (STV 1.0 0.9091)) +(: cnet_isa_6bfac83e4f (IsA immunologist medical_scientist) (STV 1.0 0.9091)) +(: cnet_isa_161325ca03 (IsA immunology medicine) (STV 1.0 0.9091)) +(: cnet_isa_53af165c4c (IsA immunopathology immunology) (STV 1.0 0.9091)) +(: cnet_isa_5db78a852c (IsA immunosuppressant medicine) (STV 1.0 0.9091)) +(: cnet_isa_1d998e27e3 (IsA immunosuppression immunological_disorder) (STV 1.0 0.9091)) +(: cnet_isa_2154fe6bc6 (IsA immunotherapy therapy) (STV 1.0 0.9091)) +(: cnet_isa_b293ebf1ec (IsA immutability changelessness) (STV 1.0 0.9091)) +(: cnet_isa_dca96a78ca (IsA imp child) (STV 1.0 0.9091)) +(: cnet_isa_e0be19a5ed (IsA impact contact) (STV 1.0 0.9091)) +(: cnet_isa_120347d4b3 (IsA impact consequence) (STV 1.0 0.9091)) +(: cnet_isa_cab860e1a5 (IsA impact_printer printer) (STV 1.0 0.9091)) +(: cnet_isa_de03bcac4f (IsA impacted_fracture fracture) (STV 1.0 0.9091)) +(: cnet_isa_628ff4d37c (IsA impaction condition) (STV 1.0 0.9091)) +(: cnet_isa_bf94568e59 (IsA impaction disorder) (STV 1.0 0.9091)) +(: cnet_isa_adfca5a5f4 (IsA impairer agent) (STV 1.0 0.9091)) +(: cnet_isa_f7a4c1013f (IsA impairment damage) (STV 1.0 0.9091)) +(: cnet_isa_fedbed6328 (IsA impala antelope) (STV 1.0 0.9091)) +(: cnet_isa_5d3e68ec2d (IsA impala_lily shrub) (STV 1.0 0.9091)) +(: cnet_isa_faa055ca10 (IsA impalement cruelty) (STV 1.0 0.9091)) +(: cnet_isa_4a042950e2 (IsA impartiality inclination) (STV 1.0 0.9091)) +(: cnet_isa_4b6a5d328a (IsA impasto painting) (STV 1.0 0.9091)) +(: cnet_isa_0e9b085e21 (IsA impatience ill_nature) (STV 1.0 0.9091)) +(: cnet_isa_dd4fe32326 (IsA impatience fidget) (STV 1.0 0.9091)) +(: cnet_isa_30eaf8a8e2 (IsA impeachability guilt) (STV 1.0 0.9091)) +(: cnet_isa_f5cbe6bcd2 (IsA impeachment legal_document) (STV 1.0 0.9091)) +(: cnet_isa_4ff0859bf7 (IsA impeccability righteousness) (STV 1.0 0.9091)) +(: cnet_isa_a3ac20f581 (IsA impecuniousness poverty) (STV 1.0 0.9091)) +(: cnet_isa_c7a4a7c836 (IsA impedimenta baggage) (STV 1.0 0.9091)) +(: cnet_isa_a19e4a74af (IsA impeller blade) (STV 1.0 0.9091)) +(: cnet_isa_cd342b9989 (IsA impenetrability incomprehensibility) (STV 1.0 0.9091)) +(: cnet_isa_2c7768f47b (IsA impenetrability quality) (STV 1.0 0.9091)) +(: cnet_isa_d3bee3b931 (IsA impenitence stubbornness) (STV 1.0 0.9091)) +(: cnet_isa_629be49fae (IsA imperative duty) (STV 1.0 0.9091)) +(: cnet_isa_b300d51c63 (IsA imperative_mood mood) (STV 1.0 0.9091)) +(: cnet_isa_7aadbe9a66 (IsA imperativeness urgency) (STV 1.0 0.9091)) +(: cnet_isa_6a1c4ba27a (IsA imperceptibility physical_property) (STV 1.0 0.9091)) +(: cnet_isa_00627d07a9 (IsA imperfectibility capability) (STV 1.0 0.9091)) +(: cnet_isa_d2f31c09d2 (IsA imperfection state) (STV 1.0 0.9091)) +(: cnet_isa_45e08db66e (IsA imperfective durative) (STV 1.0 0.9091)) +(: cnet_isa_9ec3858daf (IsA imperforate_anus anus) (STV 1.0 0.9091)) +(: cnet_isa_c781644c66 (IsA imperforate_hymen hymen) (STV 1.0 0.9091)) +(: cnet_isa_bed9e19bf0 (IsA imperial baggage) (STV 1.0 0.9091)) +(: cnet_isa_cffba454a6 (IsA imperial beard) (STV 1.0 0.9091)) +(: cnet_isa_d78be3402e (IsA imperial_decree decree) (STV 1.0 0.9091)) +(: cnet_isa_b60c1e3b07 (IsA imperial_japanese_morning_glory morning_glory) (STV 1.0 0.9091)) +(: cnet_isa_ac6bde6916 (IsA imperial_mammoth mammoth) (STV 1.0 0.9091)) +(: cnet_isa_109e5820bd (IsA imperial_moth saturniid) (STV 1.0 0.9091)) +(: cnet_isa_2bfeac1226 (IsA imperialism control) (STV 1.0 0.9091)) +(: cnet_isa_c760348e2b (IsA imperialism political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_cc9c9719c6 (IsA imperialism foreign_policy) (STV 1.0 0.9091)) +(: cnet_isa_18ce4f1a29 (IsA imperialist believer) (STV 1.0 0.9091)) +(: cnet_isa_102ef1cf38 (IsA imperiousness arrogance) (STV 1.0 0.9091)) +(: cnet_isa_d98892468a (IsA imperishability permanence) (STV 1.0 0.9091)) +(: cnet_isa_44a404d84c (IsA imperium authority) (STV 1.0 0.9091)) +(: cnet_isa_daa5b19662 (IsA impermanence duration) (STV 1.0 0.9091)) +(: cnet_isa_eface1e895 (IsA impermeability solidity) (STV 1.0 0.9091)) +(: cnet_isa_24b3268e37 (IsA impermissibility inadmissibility) (STV 1.0 0.9091)) +(: cnet_isa_a4c5b000be (IsA impersonation acting) (STV 1.0 0.9091)) +(: cnet_isa_2be97a31af (IsA impersonator deceiver) (STV 1.0 0.9091)) +(: cnet_isa_ef177a44ec (IsA impertinence playfulness) (STV 1.0 0.9091)) +(: cnet_isa_aa0cf47805 (IsA impetigo skin_disease) (STV 1.0 0.9091)) +(: cnet_isa_02aa782fdf (IsA impetuousness impulsiveness) (STV 1.0 0.9091)) +(: cnet_isa_2e2cb66946 (IsA impiety unrighteousness) (STV 1.0 0.9091)) +(: cnet_isa_ff6d9ebdcc (IsA impingement crash) (STV 1.0 0.9091)) +(: cnet_isa_3069f6c446 (IsA impingement influence) (STV 1.0 0.9091)) +(: cnet_isa_877dfebf46 (IsA impishness playfulness) (STV 1.0 0.9091)) +(: cnet_isa_e0db8a80b2 (IsA implant prosthesis) (STV 1.0 0.9091)) +(: cnet_isa_8f022d3d41 (IsA implantation operation) (STV 1.0 0.9091)) +(: cnet_isa_42dee9852e (IsA implantation placement) (STV 1.0 0.9091)) +(: cnet_isa_e0a6b2702e (IsA implantation organic_process) (STV 1.0 0.9091)) +(: cnet_isa_4649dac1a3 (IsA implausibility incredibility) (STV 1.0 0.9091)) +(: cnet_isa_4e32652696 (IsA implement instrumentality) (STV 1.0 0.9091)) +(: cnet_isa_0c57dbbabe (IsA implementation act) (STV 1.0 0.9091)) +(: cnet_isa_f2ddc09b0e (IsA implication accusation) (STV 1.0 0.9091)) +(: cnet_isa_772547a614 (IsA implication involvement) (STV 1.0 0.9091)) +(: cnet_isa_fab40f9a10 (IsA implication logical_relation) (STV 1.0 0.9091)) +(: cnet_isa_127392bbfc (IsA implicitness inexplicitness) (STV 1.0 0.9091)) +(: cnet_isa_f716e6df3b (IsA implied_trust trust) (STV 1.0 0.9091)) +(: cnet_isa_71e124a758 (IsA implosion blockage) (STV 1.0 0.9091)) +(: cnet_isa_c89da161c6 (IsA implosion collapse) (STV 1.0 0.9091)) +(: cnet_isa_d8729d651e (IsA implosion_therapy behavior_therapy) (STV 1.0 0.9091)) +(: cnet_isa_3a2ae07dcf (IsA impoliteness discourtesy) (STV 1.0 0.9091)) +(: cnet_isa_a88ea6539e (IsA imponderable influence) (STV 1.0 0.9091)) +(: cnet_isa_cd2da977f9 (IsA import commodity) (STV 1.0 0.9091)) +(: cnet_isa_119c0c5a81 (IsA import foreigner) (STV 1.0 0.9091)) +(: cnet_isa_ab466f5391 (IsA import_credit credit) (STV 1.0 0.9091)) +(: cnet_isa_803023f547 (IsA import_duty duty) (STV 1.0 0.9091)) +(: cnet_isa_ed3365472e (IsA importance value) (STV 1.0 0.9091)) +(: cnet_isa_520f54f103 (IsA importance standing) (STV 1.0 0.9091)) +(: cnet_isa_b678bf6b6f (IsA important_person adult) (STV 1.0 0.9091)) +(: cnet_isa_5c407cb04d (IsA importer businessperson) (STV 1.0 0.9091)) +(: cnet_isa_d501cfccde (IsA importing commerce) (STV 1.0 0.9091)) +(: cnet_isa_b734dadf82 (IsA importunity solicitation) (STV 1.0 0.9091)) +(: cnet_isa_5ad60c0d1a (IsA imposition burden) (STV 1.0 0.9091)) +(: cnet_isa_417cc654fd (IsA imposition enforcement) (STV 1.0 0.9091)) +(: cnet_isa_070f024292 (IsA impossibility option) (STV 1.0 0.9091)) +(: cnet_isa_4721ae9fc1 (IsA impossibility nonexistence) (STV 1.0 0.9091)) +(: cnet_isa_afb1f330f9 (IsA impossible impossibility) (STV 1.0 0.9091)) +(: cnet_isa_5a5dd52709 (IsA imposter deceiver) (STV 1.0 0.9091)) +(: cnet_isa_f39bf301cb (IsA imposture deception) (STV 1.0 0.9091)) +(: cnet_isa_9cc961b823 (IsA impotence sterility) (STV 1.0 0.9091)) +(: cnet_isa_c9e334087e (IsA impoundment seizure) (STV 1.0 0.9091)) +(: cnet_isa_57d04d9589 (IsA impracticability inutility) (STV 1.0 0.9091)) +(: cnet_isa_89d869fc40 (IsA impracticality inutility) (STV 1.0 0.9091)) +(: cnet_isa_77de703168 (IsA imprecation accusation) (STV 1.0 0.9091)) +(: cnet_isa_03bd64b840 (IsA imprecation execration) (STV 1.0 0.9091)) +(: cnet_isa_f52efce833 (IsA impreciseness inexactness) (STV 1.0 0.9091)) +(: cnet_isa_ab5d0cdacc (IsA impregnation permeation) (STV 1.0 0.9091)) +(: cnet_isa_3cd5adc63d (IsA impregnation material) (STV 1.0 0.9091)) +(: cnet_isa_256c87f263 (IsA impress seizure) (STV 1.0 0.9091)) +(: cnet_isa_0f35217293 (IsA impression portrayal) (STV 1.0 0.9091)) +(: cnet_isa_ba55673a3d (IsA impression press) (STV 1.0 0.9091)) +(: cnet_isa_02c0b20b8f (IsA impression appearance) (STV 1.0 0.9091)) +(: cnet_isa_fc62c71721 (IsA impression idea) (STV 1.0 0.9091)) +(: cnet_isa_282f2e9407 (IsA impression imprint) (STV 1.0 0.9091)) +(: cnet_isa_15ecb62f73 (IsA impression publication) (STV 1.0 0.9091)) +(: cnet_isa_82971a2719 (IsA impressionism artistic_movement) (STV 1.0 0.9091)) +(: cnet_isa_e95ba053aa (IsA impressionist painter) (STV 1.0 0.9091)) +(: cnet_isa_4c874da42a (IsA impressiveness excellence) (STV 1.0 0.9091)) +(: cnet_isa_b9be41b2db (IsA impressiveness quality) (STV 1.0 0.9091)) +(: cnet_isa_fca027479d (IsA imprint device) (STV 1.0 0.9091)) +(: cnet_isa_b7fbb6ca16 (IsA imprint influence) (STV 1.0 0.9091)) +(: cnet_isa_0860da120c (IsA imprint identification) (STV 1.0 0.9091)) +(: cnet_isa_fab18e602f (IsA imprint stamp) (STV 1.0 0.9091)) +(: cnet_isa_f5e79d9024 (IsA imprinting learning) (STV 1.0 0.9091)) +(: cnet_isa_865785f816 (IsA imprisonment confinement) (STV 1.0 0.9091)) +(: cnet_isa_efb0a3d2fb (IsA imprisonment punishment) (STV 1.0 0.9091)) +(: cnet_isa_b8c39f0b97 (IsA improbability uncertainty) (STV 1.0 0.9091)) +(: cnet_isa_468abb18e7 (IsA impromptu address) (STV 1.0 0.9091)) +(: cnet_isa_652343ac4a (IsA impromptu passage) (STV 1.0 0.9091)) +(: cnet_isa_cad71c34ec (IsA improper_fraction fraction) (STV 1.0 0.9091)) +(: cnet_isa_c239d05a41 (IsA impropriety demeanor) (STV 1.0 0.9091)) +(: cnet_isa_986ecd04d6 (IsA impropriety condition) (STV 1.0 0.9091)) +(: cnet_isa_65620ab0f9 (IsA improvement change_of_state) (STV 1.0 0.9091)) +(: cnet_isa_14c78fa1ac (IsA improvement transformation) (STV 1.0 0.9091)) +(: cnet_isa_17079c4870 (IsA improvement condition) (STV 1.0 0.9091)) +(: cnet_isa_265ceb2f9c (IsA improvidence imprudence) (STV 1.0 0.9091)) +(: cnet_isa_d461a690d6 (IsA improvisation expedient) (STV 1.0 0.9091)) +(: cnet_isa_9cf791b74f (IsA improvisation creation) (STV 1.0 0.9091)) +(: cnet_isa_941acdd7ab (IsA improvised_explosive_device explosive_device) (STV 1.0 0.9091)) +(: cnet_isa_b93bad04af (IsA imprudence incaution) (STV 1.0 0.9091)) +(: cnet_isa_3da3267e1e (IsA impudence disrespect) (STV 1.0 0.9091)) +(: cnet_isa_bb292f6f5b (IsA impulse drive) (STV 1.0 0.9091)) +(: cnet_isa_f14be0d68c (IsA impulse_turbine turbine) (STV 1.0 0.9091)) +(: cnet_isa_72d94aa0f5 (IsA impulsiveness unthoughtfulness) (STV 1.0 0.9091)) +(: cnet_isa_1a87ae1ad9 (IsA impunity exemption) (STV 1.0 0.9091)) +(: cnet_isa_7e082f8c4b (IsA impurity condition) (STV 1.0 0.9091)) +(: cnet_isa_5bb8ef7e51 (IsA impurity waste) (STV 1.0 0.9091)) +(: cnet_isa_16f68aae44 (IsA imputation attribution) (STV 1.0 0.9091)) +(: cnet_isa_d8f0a855f1 (IsA imputation accusation) (STV 1.0 0.9091)) +(: cnet_isa_324f6375ef (IsA in_basket receptacle) (STV 1.0 0.9091)) +(: cnet_isa_810c210da8 (IsA in_fighting boxing) (STV 1.0 0.9091)) +(: cnet_isa_f079978b6c (IsA in_fighting fight) (STV 1.0 0.9091)) +(: cnet_isa_766404c89a (IsA in_joke joke) (STV 1.0 0.9091)) +(: cnet_isa_434d7c7bc0 (IsA in_law relative) (STV 1.0 0.9091)) +(: cnet_isa_44330cdcc6 (IsA in_time musical_time) (STV 1.0 0.9091)) +(: cnet_isa_d972fd9ea5 (IsA inability quality) (STV 1.0 0.9091)) +(: cnet_isa_4e1eb7b83a (IsA inability cognition) (STV 1.0 0.9091)) +(: cnet_isa_ffa2539eef (IsA inaccessibility inconvenience) (STV 1.0 0.9091)) +(: cnet_isa_e6d31855f0 (IsA inaccuracy quality) (STV 1.0 0.9091)) +(: cnet_isa_bf64fa8d26 (IsA inachis arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_1643e623ef (IsA inaction state) (STV 1.0 0.9091)) +(: cnet_isa_9d44995651 (IsA inactivation natural_process) (STV 1.0 0.9091)) +(: cnet_isa_99f924c171 (IsA inactiveness trait) (STV 1.0 0.9091)) +(: cnet_isa_f517d5096a (IsA inactivity act) (STV 1.0 0.9091)) +(: cnet_isa_106e7ab1c9 (IsA inadequacy unsatisfactoriness) (STV 1.0 0.9091)) +(: cnet_isa_b29ea88cf9 (IsA inadmissibility unacceptability) (STV 1.0 0.9091)) +(: cnet_isa_917b1620b5 (IsA inadvisability bad) (STV 1.0 0.9091)) +(: cnet_isa_7116ac9d4a (IsA inamorata lover) (STV 1.0 0.9091)) +(: cnet_isa_36c36d1520 (IsA inamorata woman) (STV 1.0 0.9091)) +(: cnet_isa_8587e815b1 (IsA inamorato lover) (STV 1.0 0.9091)) +(: cnet_isa_02fcde1b98 (IsA inamorato man) (STV 1.0 0.9091)) +(: cnet_isa_be623b4fab (IsA inanimateness physiological_property) (STV 1.0 0.9091)) +(: cnet_isa_8363da76b4 (IsA inanition exhaustion) (STV 1.0 0.9091)) +(: cnet_isa_9b9f2283e0 (IsA inanition weakness) (STV 1.0 0.9091)) +(: cnet_isa_a25acb1e52 (IsA inanity meaninglessness) (STV 1.0 0.9091)) +(: cnet_isa_ad2d7aff44 (IsA inapplicability irrelevance) (STV 1.0 0.9091)) +(: cnet_isa_950e6c950d (IsA inappropriateness impropriety) (STV 1.0 0.9091)) +(: cnet_isa_25ed8cb579 (IsA inappropriateness unsuitability) (STV 1.0 0.9091)) +(: cnet_isa_ca5bf2611f (IsA inaptitude inability) (STV 1.0 0.9091)) +(: cnet_isa_56911c59a9 (IsA inaptness inappropriateness) (STV 1.0 0.9091)) +(: cnet_isa_6041ce4dab (IsA inattention basic_cognitive_process) (STV 1.0 0.9091)) +(: cnet_isa_108087b80c (IsA inattentiveness trait) (STV 1.0 0.9091)) +(: cnet_isa_627dbc10dc (IsA inattentiveness inattention) (STV 1.0 0.9091)) +(: cnet_isa_1f9e3c4692 (IsA inaudibility physical_property) (STV 1.0 0.9091)) +(: cnet_isa_e15a058867 (IsA inaugural_address address) (STV 1.0 0.9091)) +(: cnet_isa_360c829f32 (IsA inauguration beginning) (STV 1.0 0.9091)) +(: cnet_isa_3016971fd4 (IsA inauguration initiation) (STV 1.0 0.9091)) +(: cnet_isa_dc05783575 (IsA inauguration_day day) (STV 1.0 0.9091)) +(: cnet_isa_0d7065606a (IsA inauspiciousness unfavorableness) (STV 1.0 0.9091)) +(: cnet_isa_79cb0a2ffc (IsA inborn_error_of_metabolism genetic_disease) (STV 1.0 0.9091)) +(: cnet_isa_a5300ebe39 (IsA inborn_error_of_metabolism metabolic_disorder) (STV 1.0 0.9091)) +(: cnet_isa_8cec47f8d2 (IsA inbreeding coupling) (STV 1.0 0.9091)) +(: cnet_isa_11e7555f67 (IsA inca ruler) (STV 1.0 0.9091)) +(: cnet_isa_5850f78ac4 (IsA incan quechua) (STV 1.0 0.9091)) +(: cnet_isa_5f88ac93a7 (IsA incandescence luminosity) (STV 1.0 0.9091)) +(: cnet_isa_41e3b0427f (IsA incandescence light) (STV 1.0 0.9091)) +(: cnet_isa_72ca25a010 (IsA incantation spell) (STV 1.0 0.9091)) +(: cnet_isa_f55dfedc9e (IsA incapability inability) (STV 1.0 0.9091)) +(: cnet_isa_68404360f0 (IsA incapability inaptitude) (STV 1.0 0.9091)) +(: cnet_isa_1e75ff09f7 (IsA incapacity incapability) (STV 1.0 0.9091)) +(: cnet_isa_7c3c9cffe6 (IsA incapacity inability) (STV 1.0 0.9091)) +(: cnet_isa_154e4acd38 (IsA incarnation religious_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_0b9b72f8f9 (IsA incarnation time) (STV 1.0 0.9091)) +(: cnet_isa_a3c55a4959 (IsA incaution carelessness) (STV 1.0 0.9091)) +(: cnet_isa_1ad70732a7 (IsA incendiary_bomb bomb) (STV 1.0 0.9091)) +(: cnet_isa_1df2d54998 (IsA incendiary_bomb_large_vehicle attack) (STV 1.0 0.9091)) +(: cnet_isa_1b1eaa8674 (IsA incense aroma) (STV 1.0 0.9091)) +(: cnet_isa_a8f2d14af6 (IsA incense compound) (STV 1.0 0.9091)) +(: cnet_isa_5fd25b6a45 (IsA incense_cedar cedar) (STV 1.0 0.9091)) +(: cnet_isa_a179529a34 (IsA incense_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_63a356cdb4 (IsA incense_wood wood) (STV 1.0 0.9091)) +(: cnet_isa_73f8f59378 (IsA incentive rational_motive) (STV 1.0 0.9091)) +(: cnet_isa_93a1340b77 (IsA incentive_option option) (STV 1.0 0.9091)) +(: cnet_isa_99321eed86 (IsA incentive_program scheme) (STV 1.0 0.9091)) +(: cnet_isa_815aa0e66d (IsA incest unlawful_carnal_knowledge) (STV 1.0 0.9091)) +(: cnet_isa_3699bf4a90 (IsA inch linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_163c8da8f8 (IsA inchoative_aspect aspect) (STV 1.0 0.9091)) +(: cnet_isa_91941522d0 (IsA incidence frequency) (STV 1.0 0.9091)) +(: cnet_isa_326f9195fd (IsA incidence optical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_68a23654c3 (IsA incident happening) (STV 1.0 0.9091)) +(: cnet_isa_1323c59048 (IsA incident disturbance) (STV 1.0 0.9091)) +(: cnet_isa_a338f7ec03 (IsA incidental item) (STV 1.0 0.9091)) +(: cnet_isa_30a10d868b (IsA incidental_expense expense) (STV 1.0 0.9091)) +(: cnet_isa_6120b0e932 (IsA incidental_music musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_5e6c99207f (IsA incineration burning) (STV 1.0 0.9091)) +(: cnet_isa_db25f08a0b (IsA incinerator furnace) (STV 1.0 0.9091)) +(: cnet_isa_bd184b41c0 (IsA incipiency beginning) (STV 1.0 0.9091)) +(: cnet_isa_5d93f8b393 (IsA incision cut) (STV 1.0 0.9091)) +(: cnet_isa_4dcc639dee (IsA incision depression) (STV 1.0 0.9091)) +(: cnet_isa_a7b3abd98a (IsA incisiveness effectiveness) (STV 1.0 0.9091)) +(: cnet_isa_f9270833e1 (IsA incisor tooth) (STV 1.0 0.9091)) +(: cnet_isa_bab4e8f6c4 (IsA incisure notch) (STV 1.0 0.9091)) +(: cnet_isa_c499a02e89 (IsA incitation arousal) (STV 1.0 0.9091)) +(: cnet_isa_85df4a53f8 (IsA incitement psychic_energy) (STV 1.0 0.9091)) +(: cnet_isa_34d225968e (IsA incivility discourtesy) (STV 1.0 0.9091)) +(: cnet_isa_27691be407 (IsA inclination motion) (STV 1.0 0.9091)) +(: cnet_isa_fa33d68350 (IsA inclination angle) (STV 1.0 0.9091)) +(: cnet_isa_e7a88a4e6c (IsA inclination attitude) (STV 1.0 0.9091)) +(: cnet_isa_1edcd1511a (IsA inclination liking) (STV 1.0 0.9091)) +(: cnet_isa_0f34845a68 (IsA incline_bench_press bench_press) (STV 1.0 0.9091)) +(: cnet_isa_fb45059098 (IsA inclined_fault fault) (STV 1.0 0.9091)) +(: cnet_isa_2e3ff0e6ee (IsA inclined_plane machine) (STV 1.0 0.9091)) +(: cnet_isa_2fde1057ec (IsA inclinometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_f3a661ce6b (IsA inclinometer navigational_instrument) (STV 1.0 0.9091)) +(: cnet_isa_6c8e12608f (IsA inclusion increase) (STV 1.0 0.9091)) +(: cnet_isa_138293373a (IsA inclusion involvement) (STV 1.0 0.9091)) +(: cnet_isa_ea41efbcd6 (IsA inclusion situation) (STV 1.0 0.9091)) +(: cnet_isa_c6a2e1abb5 (IsA inclusion_body body) (STV 1.0 0.9091)) +(: cnet_isa_bdd5a54f23 (IsA inclusion_body_myositis myositis) (STV 1.0 0.9091)) +(: cnet_isa_5c912185a0 (IsA incognizance knowing) (STV 1.0 0.9091)) +(: cnet_isa_628c7af6dc (IsA incoherence nonsense) (STV 1.0 0.9091)) +(: cnet_isa_f1a3b0071a (IsA incoherence disjunction) (STV 1.0 0.9091)) +(: cnet_isa_489cd4d960 (IsA income financial_gain) (STV 1.0 0.9091)) +(: cnet_isa_7f51022b23 (IsA income_bracket bracket) (STV 1.0 0.9091)) +(: cnet_isa_d9f403e9a5 (IsA income_statement statement) (STV 1.0 0.9091)) +(: cnet_isa_2f7416c2f9 (IsA income_tax tax) (STV 1.0 0.9091)) +(: cnet_isa_d6e0a96357 (IsA incommutability unexchangeability) (STV 1.0 0.9091)) +(: cnet_isa_d22b94644d (IsA incompatibility characteristic) (STV 1.0 0.9091)) +(: cnet_isa_e0a2db13be (IsA incompatibility physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_00e4ab95ea (IsA incompatibility contradictoriness) (STV 1.0 0.9091)) +(: cnet_isa_0ad679636a (IsA incompetence inability) (STV 1.0 0.9091)) +(: cnet_isa_3a8f2a6e1d (IsA incompetence disease) (STV 1.0 0.9091)) +(: cnet_isa_8d047ba18b (IsA incompetent unskilled_person) (STV 1.0 0.9091)) +(: cnet_isa_f650fb865c (IsA incompetent_cervix cervix) (STV 1.0 0.9091)) +(: cnet_isa_8ab2c65048 (IsA incomplete_abortion spontaneous_abortion) (STV 1.0 0.9091)) +(: cnet_isa_776c923892 (IsA incomplete_fracture fracture) (STV 1.0 0.9091)) +(: cnet_isa_2c0d37b619 (IsA incompleteness integrity) (STV 1.0 0.9091)) +(: cnet_isa_10f735765b (IsA incomprehensibility quality) (STV 1.0 0.9091)) +(: cnet_isa_b400cfbe09 (IsA incomprehension inability) (STV 1.0 0.9091)) +(: cnet_isa_aa67d0bf19 (IsA incompressibility hardness) (STV 1.0 0.9091)) +(: cnet_isa_9be2e63de5 (IsA inconceivability impossibility) (STV 1.0 0.9091)) +(: cnet_isa_d0c4fead71 (IsA inconclusiveness indefiniteness) (STV 1.0 0.9091)) +(: cnet_isa_2b76331209 (IsA incongruity incompatibility) (STV 1.0 0.9091)) +(: cnet_isa_597247d305 (IsA inconsequence insignificance) (STV 1.0 0.9091)) +(: cnet_isa_34d6f978e0 (IsA inconsideration unkindness) (STV 1.0 0.9091)) +(: cnet_isa_1af9cae835 (IsA inconsistency nonuniformity) (STV 1.0 0.9091)) +(: cnet_isa_eb783e07c2 (IsA inconspicuousness invisibility) (STV 1.0 0.9091)) +(: cnet_isa_957ce5d5f1 (IsA inconstancy changeableness) (STV 1.0 0.9091)) +(: cnet_isa_00d97c0b27 (IsA incontinence elimination) (STV 1.0 0.9091)) +(: cnet_isa_0a53dbc204 (IsA incontrovertibility indisputability) (STV 1.0 0.9091)) +(: cnet_isa_a3e02be174 (IsA inconvenience unsuitability) (STV 1.0 0.9091)) +(: cnet_isa_89931c9b81 (IsA inconvenience discomfort) (STV 1.0 0.9091)) +(: cnet_isa_cb4726862e (IsA inconvertibility exchangeability) (STV 1.0 0.9091)) +(: cnet_isa_0ab2d77684 (IsA incoordination unskillfulness) (STV 1.0 0.9091)) +(: cnet_isa_871b3e5d75 (IsA incorporation consolidation) (STV 1.0 0.9091)) +(: cnet_isa_9e7dd09726 (IsA incorporation inclusion) (STV 1.0 0.9091)) +(: cnet_isa_824cb6a941 (IsA incorrectness impropriety) (STV 1.0 0.9091)) +(: cnet_isa_ed735966d4 (IsA incorrectness quality) (STV 1.0 0.9091)) +(: cnet_isa_ebf775c40f (IsA incorruptibility honesty) (STV 1.0 0.9091)) +(: cnet_isa_0f66bae875 (IsA incorruptness honesty) (STV 1.0 0.9091)) +(: cnet_isa_d8a5fbc848 (IsA increase change_of_magnitude) (STV 1.0 0.9091)) +(: cnet_isa_bae01833fb (IsA increase amount) (STV 1.0 0.9091)) +(: cnet_isa_16f4f7360e (IsA increase change) (STV 1.0 0.9091)) +(: cnet_isa_30afa55412 (IsA increase process) (STV 1.0 0.9091)) +(: cnet_isa_dc6adc972b (IsA increased_taxe issue) (STV 1.0 0.9091)) +(: cnet_isa_d3ac2ea7aa (IsA incredibility quality) (STV 1.0 0.9091)) +(: cnet_isa_5d9f0076c6 (IsA incredulity doubt) (STV 1.0 0.9091)) +(: cnet_isa_150f3dc743 (IsA incrimination accusation) (STV 1.0 0.9091)) +(: cnet_isa_69f8f58d4c (IsA incrustation decoration) (STV 1.0 0.9091)) +(: cnet_isa_bffe334945 (IsA incrustation formation) (STV 1.0 0.9091)) +(: cnet_isa_3b26b4eeda (IsA incubation care) (STV 1.0 0.9091)) +(: cnet_isa_f5d7f7a088 (IsA incubation phase) (STV 1.0 0.9091)) +(: cnet_isa_f3d106cf45 (IsA incubation_period time_period) (STV 1.0 0.9091)) +(: cnet_isa_dfc005bcb6 (IsA incubator apparatus) (STV 1.0 0.9091)) +(: cnet_isa_29cebe6a24 (IsA incubus devil) (STV 1.0 0.9091)) +(: cnet_isa_d423a9ff77 (IsA incubus unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_d38c7b5c76 (IsA inculcation indoctrination) (STV 1.0 0.9091)) +(: cnet_isa_2e3edbe762 (IsA incumbency duty) (STV 1.0 0.9091)) +(: cnet_isa_cd5965b0c1 (IsA incumbency position) (STV 1.0 0.9091)) +(: cnet_isa_c978f328ff (IsA incumbent holder) (STV 1.0 0.9091)) +(: cnet_isa_dfc4cd795c (IsA incumbent official) (STV 1.0 0.9091)) +(: cnet_isa_00c69fd99d (IsA incurability characteristic) (STV 1.0 0.9091)) +(: cnet_isa_fedd4a5b0e (IsA incurability unalterability) (STV 1.0 0.9091)) +(: cnet_isa_38ed69eb04 (IsA incurable sick_person) (STV 1.0 0.9091)) +(: cnet_isa_7da42d1636 (IsA incurrence commitment) (STV 1.0 0.9091)) +(: cnet_isa_24797d5df6 (IsA incurring acquisition) (STV 1.0 0.9091)) +(: cnet_isa_754ef5dc89 (IsA incursion entrance) (STV 1.0 0.9091)) +(: cnet_isa_13aad6834a (IsA incursion mistake) (STV 1.0 0.9091)) +(: cnet_isa_7af12a6252 (IsA incurvation bending) (STV 1.0 0.9091)) +(: cnet_isa_1562f2ff53 (IsA incus auditory_ossicle) (STV 1.0 0.9091)) +(: cnet_isa_9c5ac3efdf (IsA indaba council) (STV 1.0 0.9091)) +(: cnet_isa_c8d6d5e970 (IsA indebtedness obligation) (STV 1.0 0.9091)) +(: cnet_isa_a9c389f06a (IsA indecency misbehavior) (STV 1.0 0.9091)) +(: cnet_isa_73487e3c7c (IsA indecency impropriety) (STV 1.0 0.9091)) +(: cnet_isa_23a12244ff (IsA indecent_exposure misdemeanor) (STV 1.0 0.9091)) +(: cnet_isa_677afdf389 (IsA indecision doubt) (STV 1.0 0.9091)) +(: cnet_isa_044485229e (IsA indecisiveness irresoluteness) (STV 1.0 0.9091)) +(: cnet_isa_c3fc0f36b7 (IsA indecorum impropriety) (STV 1.0 0.9091)) +(: cnet_isa_80e3c73094 (IsA indefatigability determination) (STV 1.0 0.9091)) +(: cnet_isa_d9728451a8 (IsA indefinite_article article) (STV 1.0 0.9091)) +(: cnet_isa_21d79042f8 (IsA indefinite_integral integral) (STV 1.0 0.9091)) +(: cnet_isa_db92be853f (IsA indefinite_quantity measure) (STV 1.0 0.9091)) +(: cnet_isa_75d9e246ef (IsA indefiniteness uncertainty) (STV 1.0 0.9091)) +(: cnet_isa_41de322cf3 (IsA indelible_ink ink) (STV 1.0 0.9091)) +(: cnet_isa_f3c88b1b1b (IsA indelicacy discourtesy) (STV 1.0 0.9091)) +(: cnet_isa_b3bd4aaeb2 (IsA indelicacy impropriety) (STV 1.0 0.9091)) +(: cnet_isa_4cb2c0dda0 (IsA indemnification recompense) (STV 1.0 0.9091)) +(: cnet_isa_63ee2b8548 (IsA indemnity exemption) (STV 1.0 0.9091)) +(: cnet_isa_58ba46da21 (IsA indemnity protection) (STV 1.0 0.9091)) +(: cnet_isa_e1b36dddd8 (IsA indene hydrocarbon) (STV 1.0 0.9091)) +(: cnet_isa_83a92096f8 (IsA indent order) (STV 1.0 0.9091)) +(: cnet_isa_1cad8ce54f (IsA indentation change_of_shape) (STV 1.0 0.9091)) +(: cnet_isa_06d7399569 (IsA indentation space) (STV 1.0 0.9091)) +(: cnet_isa_efb355d5b4 (IsA indentation concave_shape) (STV 1.0 0.9091)) +(: cnet_isa_aa592a3a6c (IsA indenture contract) (STV 1.0 0.9091)) +(: cnet_isa_de3478929b (IsA indenture written_agreement) (STV 1.0 0.9091)) +(: cnet_isa_61e71e0a2b (IsA independence victory) (STV 1.0 0.9091)) +(: cnet_isa_63d86e7cfe (IsA independence freedom) (STV 1.0 0.9091)) +(: cnet_isa_e1fbfdf146 (IsA independence_day legal_holiday) (STV 1.0 0.9091)) +(: cnet_isa_7931be8930 (IsA independent_agency agency) (STV 1.0 0.9091)) +(: cnet_isa_36e8a09aca (IsA independent_variable variable) (STV 1.0 0.9091)) +(: cnet_isa_ef9587e18c (IsA indestructibility lastingness) (STV 1.0 0.9091)) +(: cnet_isa_1db0847d3a (IsA index finger) (STV 1.0 0.9091)) +(: cnet_isa_0af7e103a1 (IsA index fact) (STV 1.0 0.9091)) +(: cnet_isa_e6ca5b9c0c (IsA index list) (STV 1.0 0.9091)) +(: cnet_isa_da771854ea (IsA index scale) (STV 1.0 0.9091)) +(: cnet_isa_34bc6cddf6 (IsA index_card small_piece_of_lightweight_card) (STV 1.0 0.9091)) +(: cnet_isa_e2e07e5d61 (IsA index_case patient) (STV 1.0 0.9091)) +(: cnet_isa_3a93a788b5 (IsA index_finger finger) (STV 1.0 0.9091)) +(: cnet_isa_9935126b63 (IsA index_fossil fossil) (STV 1.0 0.9091)) +(: cnet_isa_b228424bfc (IsA index_fund mutual_fund) (STV 1.0 0.9091)) +(: cnet_isa_059ec58836 (IsA index_register register) (STV 1.0 0.9091)) +(: cnet_isa_f44f5359bd (IsA indexation regulation) (STV 1.0 0.9091)) +(: cnet_isa_a87be9d06d (IsA indexer skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_0e04ea8b21 (IsA indexing categorization) (STV 1.0 0.9091)) +(: cnet_isa_a96128145e (IsA india asian_country) (STV 1.0 0.9454)) +(: cnet_isa_0874de3e91 (IsA india country) (STV 1.0 0.9454)) +(: cnet_isa_2804fd4d83 (IsA india country_in_asia) (STV 1.0 0.9524)) +(: cnet_isa_15e0291df4 (IsA india very_populous_country) (STV 1.0 0.9454)) +(: cnet_isa_a53056a7dc (IsA india_ink ink) (STV 1.0 0.9091)) +(: cnet_isa_8383fe7e7b (IsA india_paper paper) (STV 1.0 0.9091)) +(: cnet_isa_029147bd34 (IsA india_rubber_tree fig_tree) (STV 1.0 0.9091)) +(: cnet_isa_49fac2c8d5 (IsA indiaman sailing_vessel) (STV 1.0 0.9091)) +(: cnet_isa_45fd173e65 (IsA indian asiatic) (STV 1.0 0.9091)) +(: cnet_isa_937ff2ece3 (IsA indian_agent agent) (STV 1.0 0.9091)) +(: cnet_isa_20f6d3945d (IsA indian_beech tree) (STV 1.0 0.9091)) +(: cnet_isa_fbce0b56eb (IsA indian_blackwood rosewood) (STV 1.0 0.9091)) +(: cnet_isa_e5d81fca68 (IsA indian_buffalo water_buffalo) (STV 1.0 0.9091)) +(: cnet_isa_79a9b9a451 (IsA indian_button_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_1a2cca4134 (IsA indian_chieftain headman) (STV 1.0 0.9091)) +(: cnet_isa_ef7d6127a1 (IsA indian_club club) (STV 1.0 0.9091)) +(: cnet_isa_5865a1c27b (IsA indian_cobra cobra) (STV 1.0 0.9091)) +(: cnet_isa_c17f7d618a (IsA indian_coral_tree coral_tree) (STV 1.0 0.9091)) +(: cnet_isa_dc032d5d8d (IsA indian_crocus orchid) (STV 1.0 0.9091)) +(: cnet_isa_6342231563 (IsA indian_elephant elephant) (STV 1.0 0.9091)) +(: cnet_isa_e60997b923 (IsA indian_giver donor) (STV 1.0 0.9091)) +(: cnet_isa_afecab6d68 (IsA indian_hemp cannabis) (STV 1.0 0.9091)) +(: cnet_isa_be47df57d9 (IsA indian_hemp dogbane) (STV 1.0 0.9091)) +(: cnet_isa_7b3ff842ca (IsA indian_lettuce herb) (STV 1.0 0.9091)) +(: cnet_isa_ce96356e8d (IsA indian_madder madderwort) (STV 1.0 0.9091)) +(: cnet_isa_a116da5a2c (IsA indian_mallow mallow) (STV 1.0 0.9091)) +(: cnet_isa_9f1ec699ad (IsA indian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_ab295b07c5 (IsA indian_mongoose mongoose) (STV 1.0 0.9091)) +(: cnet_isa_f36399d78b (IsA indian_paintbrush wildflower) (STV 1.0 0.9091)) +(: cnet_isa_643eeef890 (IsA indian_pipe wildflower) (STV 1.0 0.9091)) +(: cnet_isa_edcf776b7e (IsA indian_plantain herb) (STV 1.0 0.9091)) +(: cnet_isa_2869e6589b (IsA indian_poke pokeweed) (STV 1.0 0.9091)) +(: cnet_isa_1921290877 (IsA indian_python python) (STV 1.0 0.9091)) +(: cnet_isa_1b522e06aa (IsA indian_rat_snake rat_snake) (STV 1.0 0.9091)) +(: cnet_isa_3a0daaf769 (IsA indian_rattlebox crotalaria) (STV 1.0 0.9091)) +(: cnet_isa_5fed6a361f (IsA indian_red reddish_brown) (STV 1.0 0.9091)) +(: cnet_isa_6da3ee2eea (IsA indian_red pigment) (STV 1.0 0.9091)) +(: cnet_isa_db2c9509ec (IsA indian_red soil) (STV 1.0 0.9091)) +(: cnet_isa_4bf10e0382 (IsA indian_reservation reservation) (STV 1.0 0.9091)) +(: cnet_isa_0ca1c0a66f (IsA indian_rhinocero rhinocero) (STV 1.0 0.9091)) +(: cnet_isa_255fe7e7f6 (IsA indian_rhododendron shrub) (STV 1.0 0.9091)) +(: cnet_isa_d8d720a2ae (IsA indian_rupee indian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_c56baf8c75 (IsA indian_summer time_period) (STV 1.0 0.9091)) +(: cnet_isa_b68e50fa08 (IsA indian_tobacco lobelia) (STV 1.0 0.9091)) +(: cnet_isa_af2a1b939a (IsA indian_trail trail) (STV 1.0 0.9091)) +(: cnet_isa_66534bf468 (IsA indiana_jone fictional_character) (STV 1.0 0.9091)) +(: cnet_isa_a1ec1ccd5c (IsA indic indo_iranian) (STV 1.0 0.9091)) +(: cnet_isa_667a405241 (IsA indica marijuana) (STV 1.0 0.9339)) +(: cnet_isa_dc7999683e (IsA indica marijuanna) (STV 1.0 0.9091)) +(: cnet_isa_77334ae4dd (IsA indication advice) (STV 1.0 0.9091)) +(: cnet_isa_366a686c82 (IsA indication communication) (STV 1.0 0.9091)) +(: cnet_isa_bff1186ce6 (IsA indication naming) (STV 1.0 0.9091)) +(: cnet_isa_5c6708ed63 (IsA indication reason) (STV 1.0 0.9091)) +(: cnet_isa_23d3424a8c (IsA indicative_mood mood) (STV 1.0 0.9091)) +(: cnet_isa_fe30b97068 (IsA indicator device) (STV 1.0 0.9091)) +(: cnet_isa_eacf86e1be (IsA indicator coloring_material) (STV 1.0 0.9091)) +(: cnet_isa_053d16f326 (IsA indicator signal) (STV 1.0 0.9091)) +(: cnet_isa_35a0457402 (IsA indicatoridae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_e731c1b0b8 (IsA indiction time_period) (STV 1.0 0.9091)) +(: cnet_isa_441183aaa9 (IsA indictment accusation) (STV 1.0 0.9091)) +(: cnet_isa_266263150d (IsA indictment legal_document) (STV 1.0 0.9091)) +(: cnet_isa_462fd41b13 (IsA indie film_company) (STV 1.0 0.9091)) +(: cnet_isa_74d865c2ef (IsA indie pop_group) (STV 1.0 0.9091)) +(: cnet_isa_e1e2f39e27 (IsA indifference unconcern) (STV 1.0 0.9091)) +(: cnet_isa_3f3a83b8be (IsA indigence poverty) (STV 1.0 0.9091)) +(: cnet_isa_90b8505597 (IsA indigenous_language language) (STV 1.0 0.9091)) +(: cnet_isa_759e5a32b8 (IsA indigenousness nativeness) (STV 1.0 0.9091)) +(: cnet_isa_28a79149dd (IsA indigestibility edibility) (STV 1.0 0.9091)) +(: cnet_isa_73a218dfae (IsA indigestion symptom) (STV 1.0 0.9091)) +(: cnet_isa_ffec36e875 (IsA indignation anger) (STV 1.0 0.9091)) +(: cnet_isa_c639d157f9 (IsA indignity insult) (STV 1.0 0.9091)) +(: cnet_isa_15517ee929 (IsA indigo violet) (STV 1.0 0.9091)) +(: cnet_isa_719ba30679 (IsA indigo shrub) (STV 1.0 0.9091)) +(: cnet_isa_a5e8a5a907 (IsA indigo_broom wild_indigo) (STV 1.0 0.9091)) +(: cnet_isa_d01a91e5c3 (IsA indigo_bunting bunting) (STV 1.0 0.9091)) +(: cnet_isa_27590b9e97 (IsA indigo_snake colubrid_snake) (STV 1.0 0.9091)) +(: cnet_isa_250f7c845f (IsA indigofera rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8b9c7f42f9 (IsA indirect_antonym antonym) (STV 1.0 0.9091)) +(: cnet_isa_d2f11d8c99 (IsA indirect_discourse report) (STV 1.0 0.9091)) +(: cnet_isa_b77334bc5b (IsA indirect_fire fire) (STV 1.0 0.9091)) +(: cnet_isa_a35c28e3d3 (IsA indirect_immunofluorescence fluorescence_microscopy) (STV 1.0 0.9091)) +(: cnet_isa_d70793d805 (IsA indirect_lighting lighting_fixture) (STV 1.0 0.9091)) +(: cnet_isa_85fefd7336 (IsA indirect_object object) (STV 1.0 0.9091)) +(: cnet_isa_6758bc432e (IsA indirect_tax tax) (STV 1.0 0.9091)) +(: cnet_isa_4d91976360 (IsA indirect_transmission transmission_mechanism) (STV 1.0 0.9091)) +(: cnet_isa_2731db9f72 (IsA indirection deception) (STV 1.0 0.9091)) +(: cnet_isa_7ea8d60b91 (IsA indirection procedure) (STV 1.0 0.9091)) +(: cnet_isa_d128f3f7d5 (IsA indirectness characteristic) (STV 1.0 0.9091)) +(: cnet_isa_69ac9ed66f (IsA indiscipline trait) (STV 1.0 0.9091)) +(: cnet_isa_0b3f566470 (IsA indiscretion misbehavior) (STV 1.0 0.9091)) +(: cnet_isa_04df4f717f (IsA indiscretion folly) (STV 1.0 0.9091)) +(: cnet_isa_143e432964 (IsA indispensability essentiality) (STV 1.0 0.9091)) +(: cnet_isa_c62ef98b22 (IsA indisposition illness) (STV 1.0 0.9091)) +(: cnet_isa_4932888ecb (IsA indisputability certainty) (STV 1.0 0.9091)) +(: cnet_isa_82356f5334 (IsA indistinctness opacity) (STV 1.0 0.9091)) +(: cnet_isa_fffffa40eb (IsA indium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_c5a17d0630 (IsA individual organism) (STV 1.0 0.9091)) +(: cnet_isa_14393fd61d (IsA individual_retirement_account pension_plan) (STV 1.0 0.9091)) +(: cnet_isa_0f0b944299 (IsA individualism belief) (STV 1.0 0.9091)) +(: cnet_isa_ea13f784f4 (IsA individualism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_a4959f8946 (IsA individualist person) (STV 1.0 0.9091)) +(: cnet_isa_3cb860b9ea (IsA individuality trait) (STV 1.0 0.9091)) +(: cnet_isa_d6d5149f69 (IsA individualization discrimination) (STV 1.0 0.9091)) +(: cnet_isa_aa8308aff2 (IsA indo_european natural_language) (STV 1.0 0.9091)) +(: cnet_isa_9cb800b3fb (IsA indo_european primitive) (STV 1.0 0.9091)) +(: cnet_isa_d82b2a40ac (IsA indo_iranian indo_european) (STV 1.0 0.9091)) +(: cnet_isa_5b8a6fc664 (IsA indoctrination teaching) (STV 1.0 0.9091)) +(: cnet_isa_b2108111f0 (IsA indoleacetic_acid auxin) (STV 1.0 0.9091)) +(: cnet_isa_7c5fb54ceb (IsA indolebutyric_acid auxin) (STV 1.0 0.9091)) +(: cnet_isa_dd12ac2623 (IsA indolence inactiveness) (STV 1.0 0.9091)) +(: cnet_isa_e1eafe8446 (IsA indomitability strength) (STV 1.0 0.9091)) +(: cnet_isa_5ea7695c80 (IsA indonesia archipelago) (STV 1.0 0.9091)) +(: cnet_isa_ae681a2a1b (IsA indonesian malay) (STV 1.0 0.9091)) +(: cnet_isa_7763ef086d (IsA indonesian asiatic) (STV 1.0 0.9091)) +(: cnet_isa_59099da7b6 (IsA indonesian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_38addb6969 (IsA indri lemur) (STV 1.0 0.9091)) +(: cnet_isa_b3dcbd4c01 (IsA indriidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_338cb90102 (IsA induced_abortion abortion) (STV 1.0 0.9091)) +(: cnet_isa_f0bfcef2db (IsA inducement causing) (STV 1.0 0.9091)) +(: cnet_isa_168287962e (IsA inducer agent) (STV 1.0 0.9091)) +(: cnet_isa_3a6948c0af (IsA inductance_unit electromagnetic_unit) (STV 1.0 0.9091)) +(: cnet_isa_cd81a640e1 (IsA inductee member) (STV 1.0 0.9091)) +(: cnet_isa_e0b0d95ce3 (IsA induction introduction) (STV 1.0 0.9091)) +(: cnet_isa_eb05bc764a (IsA induction electrical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_b266df2b9c (IsA induction_coil coil) (STV 1.0 0.9091)) +(: cnet_isa_66a908c43e (IsA induction_heating heating) (STV 1.0 0.9091)) +(: cnet_isa_4665cd2963 (IsA induction_of_labor induction) (STV 1.0 0.9091)) +(: cnet_isa_31f5e4a568 (IsA inductor electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_f305d49377 (IsA indulgence gratification) (STV 1.0 0.9091)) +(: cnet_isa_41e702c4f9 (IsA indulgence indiscipline) (STV 1.0 0.9091)) +(: cnet_isa_4a7ce62154 (IsA indulgence permissiveness) (STV 1.0 0.9091)) +(: cnet_isa_23522858bc (IsA indulgence absolution) (STV 1.0 0.9091)) +(: cnet_isa_057e4a14df (IsA indumentum covering) (STV 1.0 0.9091)) +(: cnet_isa_a6bdbd3d87 (IsA indurated_clay soil) (STV 1.0 0.9091)) +(: cnet_isa_0a774b8c71 (IsA indus_civilization culture) (STV 1.0 0.9091)) +(: cnet_isa_58bc501afe (IsA indusium covering) (STV 1.0 0.9091)) +(: cnet_isa_998f2ebffa (IsA industrial_air_pollution air_pollution) (STV 1.0 0.9091)) +(: cnet_isa_1e86c9ead4 (IsA industrial_art course) (STV 1.0 0.9091)) +(: cnet_isa_9278665dda (IsA industrial_bank consumer_finance_company) (STV 1.0 0.9091)) +(: cnet_isa_717fe9a9bc (IsA industrial_engineering engineering) (STV 1.0 0.9091)) +(: cnet_isa_4122baa72a (IsA industrial_park tract) (STV 1.0 0.9091)) +(: cnet_isa_5d7f212531 (IsA industrial_process process) (STV 1.0 0.9091)) +(: cnet_isa_4cbdba8822 (IsA industrial_union union) (STV 1.0 0.9091)) +(: cnet_isa_38f6eaa638 (IsA industrial_watercourse canal) (STV 1.0 0.9091)) +(: cnet_isa_625f32b24f (IsA industrial_worker_of_world labor_movement) (STV 1.0 0.9091)) +(: cnet_isa_d5c365bfae (IsA industrial_worker_of_world union) (STV 1.0 0.9091)) +(: cnet_isa_b1133b0794 (IsA industrialism economy) (STV 1.0 0.9091)) +(: cnet_isa_79fe9bb226 (IsA industrialist businessman) (STV 1.0 0.9091)) +(: cnet_isa_0850009601 (IsA industrialization industry) (STV 1.0 0.9091)) +(: cnet_isa_a75d2badd6 (IsA industry commercial_enterprise) (STV 1.0 0.9091)) +(: cnet_isa_1cf294ac1b (IsA industry_analyst analyst) (STV 1.0 0.9091)) +(: cnet_isa_f6de377033 (IsA indweller activation) (STV 1.0 0.9091)) +(: cnet_isa_6a90a8f67f (IsA inebriated another_word_for_drunk) (STV 1.0 0.9091)) +(: cnet_isa_4d87004353 (IsA ineffectiveness powerlessness) (STV 1.0 0.9091)) +(: cnet_isa_a42c629818 (IsA inefficacy ineffectiveness) (STV 1.0 0.9091)) +(: cnet_isa_eb6b8d1c60 (IsA inefficiency unskillfulness) (STV 1.0 0.9091)) +(: cnet_isa_a11597db42 (IsA inelasticity physical_property) (STV 1.0 0.9091)) +(: cnet_isa_e23753291c (IsA inelegance quality) (STV 1.0 0.9091)) +(: cnet_isa_c6afad02bb (IsA ineligibility qualification) (STV 1.0 0.9091)) +(: cnet_isa_6eac1bb1e7 (IsA ineluctability certainty) (STV 1.0 0.9091)) +(: cnet_isa_f9672a65db (IsA inequality difference) (STV 1.0 0.9091)) +(: cnet_isa_8bd7a3af90 (IsA inerrancy infallibility) (STV 1.0 0.9091)) +(: cnet_isa_e6899512ee (IsA inertia mechanical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_e52866fca3 (IsA inertial_guidance steering) (STV 1.0 0.9091)) +(: cnet_isa_b4f8e92c20 (IsA inertial_guidance_system system) (STV 1.0 0.9091)) +(: cnet_isa_cc76900368 (IsA inertial_mass mass) (STV 1.0 0.9091)) +(: cnet_isa_4de19da9a7 (IsA inertial_reference_frame coordinate_system) (STV 1.0 0.9091)) +(: cnet_isa_61541730e9 (IsA inertness immobility) (STV 1.0 0.9091)) +(: cnet_isa_fd3cbb19af (IsA inessential thing) (STV 1.0 0.9091)) +(: cnet_isa_db5118753b (IsA inessentiality unimportance) (STV 1.0 0.9091)) +(: cnet_isa_71b426c6ca (IsA inevitability certainty) (STV 1.0 0.9091)) +(: cnet_isa_4461030991 (IsA inevitable destiny) (STV 1.0 0.9091)) +(: cnet_isa_c810ed5134 (IsA inexactness inaccuracy) (STV 1.0 0.9091)) +(: cnet_isa_3ba0693870 (IsA inexpedience disadvantage) (STV 1.0 0.9091)) +(: cnet_isa_10f79c69e3 (IsA inexpensiveness monetary_value) (STV 1.0 0.9091)) +(: cnet_isa_3fc5e26139 (IsA inexperience ignorance) (STV 1.0 0.9091)) +(: cnet_isa_b4984c1143 (IsA inexplicitness unclearness) (STV 1.0 0.9091)) +(: cnet_isa_51e7dabef0 (IsA infallibility dependability) (STV 1.0 0.9091)) +(: cnet_isa_7439dbf706 (IsA infamy dishonor) (STV 1.0 0.9091)) +(: cnet_isa_10b8a01785 (IsA infamy disrepute) (STV 1.0 0.9091)) +(: cnet_isa_857ec4fd3b (IsA infancy immaturity) (STV 1.0 0.9091)) +(: cnet_isa_6a7e439ef2 (IsA infancy time_of_life) (STV 1.0 0.9091)) +(: cnet_isa_41990cfeab (IsA infant_deathrate deathrate) (STV 1.0 0.9091)) +(: cnet_isa_971f0b70a9 (IsA infant_feeding feeding) (STV 1.0 0.9091)) +(: cnet_isa_6aebb9d385 (IsA infant_school grade_school) (STV 1.0 0.9091)) +(: cnet_isa_9e508cf94d (IsA infanticide murder) (STV 1.0 0.9091)) +(: cnet_isa_5fcd845c21 (IsA infanticide murderer) (STV 1.0 0.9091)) +(: cnet_isa_f26ed8f3de (IsA infantile_autism autism) (STV 1.0 0.9091)) +(: cnet_isa_207e5362c3 (IsA infantilism misbehavior) (STV 1.0 0.9091)) +(: cnet_isa_cad72c944f (IsA infantilism abnormality) (STV 1.0 0.9091)) +(: cnet_isa_ba4933f676 (IsA infantry army_unit) (STV 1.0 0.9091)) +(: cnet_isa_d3bda2f105 (IsA infantryman soldier) (STV 1.0 0.9091)) +(: cnet_isa_1c7130941e (IsA infarct pathology) (STV 1.0 0.9091)) +(: cnet_isa_c0f0d914eb (IsA infatuation object) (STV 1.0 0.9091)) +(: cnet_isa_27c82c3db4 (IsA infatuation passion) (STV 1.0 0.9091)) +(: cnet_isa_81640f1d9e (IsA infeasibility impracticability) (STV 1.0 0.9091)) +(: cnet_isa_868a889b5e (IsA infection corruptness) (STV 1.0 0.9091)) +(: cnet_isa_0fd5616699 (IsA infection incident) (STV 1.0 0.9091)) +(: cnet_isa_9f6e6e844f (IsA infection illegality) (STV 1.0 0.9091)) +(: cnet_isa_f088c0eeda (IsA infection pathologic_process) (STV 1.0 0.9091)) +(: cnet_isa_9f595ad3fe (IsA infection linguistic_process) (STV 1.0 0.9091)) +(: cnet_isa_b625f7a902 (IsA infection ill_health) (STV 1.0 0.9091)) +(: cnet_isa_86e89f7cda (IsA infectious_agent agent) (STV 1.0 0.9091)) +(: cnet_isa_88967148b0 (IsA infectious_disease communicable_disease) (STV 1.0 0.9091)) +(: cnet_isa_ac8c40ab97 (IsA infectious_mononucleosis infectious_disease) (STV 1.0 0.9091)) +(: cnet_isa_b2d2c0f0b0 (IsA infelicity inappropriateness) (STV 1.0 0.9091)) +(: cnet_isa_39506071fa (IsA inference reasoning) (STV 1.0 0.9091)) +(: cnet_isa_b0f41956f3 (IsA inferior follower) (STV 1.0 0.9091)) +(: cnet_isa_5251efd009 (IsA inferior_alveolar_artery alveolar_artery) (STV 1.0 0.9091)) +(: cnet_isa_27bdd6b8ab (IsA inferior_cerebellar_artery cerebellar_artery) (STV 1.0 0.9091)) +(: cnet_isa_c7e607027e (IsA inferior_cerebral_vein cerebral_vein) (STV 1.0 0.9091)) +(: cnet_isa_5cf03adfe6 (IsA inferior_colliculus center) (STV 1.0 0.9091)) +(: cnet_isa_14fa5e772a (IsA inferior_conjunction conjunction) (STV 1.0 0.9091)) +(: cnet_isa_f586afcbe2 (IsA inferior_court court) (STV 1.0 0.9091)) +(: cnet_isa_bf7afa65c9 (IsA inferior_epigastric_vein epigastric_vein) (STV 1.0 0.9091)) +(: cnet_isa_1b84e4f7e5 (IsA inferior_labial_artery labial_artery) (STV 1.0 0.9091)) +(: cnet_isa_043854c797 (IsA inferior_labial_vein labial_vein) (STV 1.0 0.9091)) +(: cnet_isa_ba44e8967b (IsA inferior_mesenteric_artery mesenteric_artery) (STV 1.0 0.9091)) +(: cnet_isa_a9f8f5dfc0 (IsA inferior_ophthalmic_vein ophthalmic_vein) (STV 1.0 0.9091)) +(: cnet_isa_cdaef1c0e1 (IsA inferior_planet planet) (STV 1.0 0.9091)) +(: cnet_isa_2573d71d7e (IsA inferior_pulmonary_vein pulmonary_vein) (STV 1.0 0.9091)) +(: cnet_isa_b417088a9e (IsA inferior_rectus_muscle ocular_muscle) (STV 1.0 0.9091)) +(: cnet_isa_3c70bafad5 (IsA inferior_thalamostriate_vein thalamostriate_vein) (STV 1.0 0.9091)) +(: cnet_isa_72712ee498 (IsA inferior_thyroid_vein thyroid_vein) (STV 1.0 0.9091)) +(: cnet_isa_032f7009f0 (IsA inferior_vena_cava vena_cava) (STV 1.0 0.9091)) +(: cnet_isa_d255b816bc (IsA inferiority disadvantage) (STV 1.0 0.9091)) +(: cnet_isa_6f7b6d9b58 (IsA inferiority quality) (STV 1.0 0.9091)) +(: cnet_isa_7ee47cad67 (IsA inferiority low_status) (STV 1.0 0.9091)) +(: cnet_isa_6c1e4aa94c (IsA inferiority_complex complex) (STV 1.0 0.9091)) +(: cnet_isa_b21df39357 (IsA infernal dead_person) (STV 1.0 0.9091)) +(: cnet_isa_b2909542d3 (IsA infestation swarm) (STV 1.0 0.9091)) +(: cnet_isa_96f7c85b37 (IsA infestation fullness) (STV 1.0 0.9091)) +(: cnet_isa_da260584a1 (IsA infidelity quality) (STV 1.0 0.9091)) +(: cnet_isa_cb94ce5f21 (IsA infielder fielder) (STV 1.0 0.9091)) +(: cnet_isa_322f2a3a98 (IsA infiltration penetration) (STV 1.0 0.9091)) +(: cnet_isa_cdd10762c3 (IsA infiltrator intruder) (STV 1.0 0.9091)) +(: cnet_isa_e282ebd7c3 (IsA infiltrator spy) (STV 1.0 0.9091)) +(: cnet_isa_80844a619b (IsA infiniteness quality) (STV 1.0 0.9091)) +(: cnet_isa_de46589c9b (IsA infinitesimal variable) (STV 1.0 0.9091)) +(: cnet_isa_b6f9b2ad74 (IsA infinitive verb) (STV 1.0 0.9091)) +(: cnet_isa_40c00bf7b8 (IsA infinitude large_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_41ca6085eb (IsA infirmity unfitness) (STV 1.0 0.9091)) +(: cnet_isa_3c49902739 (IsA infix affix) (STV 1.0 0.9091)) +(: cnet_isa_9c42c1c2e6 (IsA infix_notation mathematical_notation) (STV 1.0 0.9091)) +(: cnet_isa_9de264a518 (IsA inflammability combustibleness) (STV 1.0 0.9091)) +(: cnet_isa_f078d59c2f (IsA inflammation arousal) (STV 1.0 0.9091)) +(: cnet_isa_83a43753e4 (IsA inflammation symptom) (STV 1.0 0.9091)) +(: cnet_isa_c85af33ee7 (IsA inflammatory_disease disease) (STV 1.0 0.9091)) +(: cnet_isa_5c1b2361d6 (IsA inflater air_pump) (STV 1.0 0.9091)) +(: cnet_isa_f4101fd8c5 (IsA inflation expansion) (STV 1.0 0.9091)) +(: cnet_isa_b76c290946 (IsA inflation explosion) (STV 1.0 0.9091)) +(: cnet_isa_e99a0fb3bc (IsA inflation economic_process) (STV 1.0 0.9091)) +(: cnet_isa_1792aebd0d (IsA inflation_rate rate) (STV 1.0 0.9091)) +(: cnet_isa_3862a97ec3 (IsA inflation_therapy therapy) (STV 1.0 0.9091)) +(: cnet_isa_3e208386ef (IsA inflationary_spiral spiral) (STV 1.0 0.9091)) +(: cnet_isa_948e5dbc82 (IsA inflection deviation) (STV 1.0 0.9091)) +(: cnet_isa_3e612810f7 (IsA inflection grammatical_relation) (STV 1.0 0.9091)) +(: cnet_isa_88597331c4 (IsA inflectional_ending ending) (STV 1.0 0.9091)) +(: cnet_isa_c8a289592d (IsA inflectional_morphology morphology) (STV 1.0 0.9091)) +(: cnet_isa_918404b854 (IsA inflexibility rigidity) (STV 1.0 0.9091)) +(: cnet_isa_ed7a742dae (IsA inflexibility unadaptability) (STV 1.0 0.9091)) +(: cnet_isa_3d59eadccb (IsA infliction wrongdoing) (STV 1.0 0.9091)) +(: cnet_isa_c850d266e0 (IsA inflorescence flower) (STV 1.0 0.9091)) +(: cnet_isa_1b5d34d826 (IsA inflow flow) (STV 1.0 0.9091)) +(: cnet_isa_c227133954 (IsA influence causing) (STV 1.0 0.9091)) +(: cnet_isa_85ddf9a95e (IsA influence power) (STV 1.0 0.9091)) +(: cnet_isa_06bd68c9cd (IsA influence determinant) (STV 1.0 0.9091)) +(: cnet_isa_69a3a78289 (IsA influence consequence) (STV 1.0 0.9091)) +(: cnet_isa_5b5eb464dd (IsA influenza contagious_disease) (STV 1.0 0.9091)) +(: cnet_isa_be7affeab8 (IsA influenza respiratory_disease) (STV 1.0 0.9091)) +(: cnet_isa_6291fb54b4 (IsA infomercial commercial) (STV 1.0 0.9091)) +(: cnet_isa_2d8ead0fa1 (IsA informal_logic logic) (STV 1.0 0.9091)) +(: cnet_isa_5e62f85679 (IsA informality manner) (STV 1.0 0.9091)) +(: cnet_isa_84ed5e42b0 (IsA informant communicator) (STV 1.0 0.9091)) +(: cnet_isa_6ad83ae731 (IsA information abstraction) (STV 1.0 0.9091)) +(: cnet_isa_51fdb4d139 (IsA information data) (STV 1.0 0.9339)) +(: cnet_isa_e2ab5bdcea (IsA information cognition) (STV 1.0 0.9091)) +(: cnet_isa_90b99fca27 (IsA information accusation) (STV 1.0 0.9091)) +(: cnet_isa_58ab89236d (IsA information message) (STV 1.0 0.9091)) +(: cnet_isa_dad87223b6 (IsA information information_measure) (STV 1.0 0.9091)) +(: cnet_isa_feebdd59f1 (IsA information_age modern_era) (STV 1.0 0.9091)) +(: cnet_isa_039a0c4888 (IsA information_bulletin bulletin) (STV 1.0 0.9091)) +(: cnet_isa_8965b31c52 (IsA information_gathering operation) (STV 1.0 0.9091)) +(: cnet_isa_df441decfd (IsA information_measure system_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_848285278f (IsA information_return tax_return) (STV 1.0 0.9091)) +(: cnet_isa_40ca678036 (IsA information_science science) (STV 1.0 0.9091)) +(: cnet_isa_f589f90d9e (IsA information_technology engineering) (STV 1.0 0.9091)) +(: cnet_isa_831628b38b (IsA information_theory scientific_theory) (STV 1.0 0.9091)) +(: cnet_isa_d21af2d13b (IsA information_warfare war) (STV 1.0 0.9091)) +(: cnet_isa_1d34d9d4c1 (IsA informed_consent consent) (STV 1.0 0.9091)) +(: cnet_isa_63bef2299d (IsA informer_s_privilege privilege) (STV 1.0 0.9091)) +(: cnet_isa_73b6d24a85 (IsA informer informant) (STV 1.0 0.9091)) +(: cnet_isa_322907bf46 (IsA informing disclosure) (STV 1.0 0.9091)) +(: cnet_isa_2f5a18a984 (IsA informing speech_act) (STV 1.0 0.9091)) +(: cnet_isa_bbc28d4583 (IsA infraorbital_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_d9a0682d5f (IsA infrared frequency) (STV 1.0 0.9091)) +(: cnet_isa_92c23bedf2 (IsA infrared actinic_radiation) (STV 1.0 0.9091)) +(: cnet_isa_91fa06f230 (IsA infrared_ray heat_ray) (STV 1.0 0.9091)) +(: cnet_isa_0b21f06e48 (IsA infrared_spectrum spectrum) (STV 1.0 0.9091)) +(: cnet_isa_b7b5e35384 (IsA infrared_therapy therapy) (STV 1.0 0.9091)) +(: cnet_isa_6160bfca4c (IsA infrastructure store) (STV 1.0 0.9091)) +(: cnet_isa_1a73fa9a95 (IsA infrastructure structure) (STV 1.0 0.9091)) +(: cnet_isa_c86a3bcdb1 (IsA infructescence growth) (STV 1.0 0.9091)) +(: cnet_isa_3a5382e08c (IsA infundibulum structure) (STV 1.0 0.9091)) +(: cnet_isa_805537e192 (IsA infuriation anger) (STV 1.0 0.9091)) +(: cnet_isa_598fd6373d (IsA infusion change_of_state) (STV 1.0 0.9091)) +(: cnet_isa_0b93fc745b (IsA infusion instillation) (STV 1.0 0.9091)) +(: cnet_isa_e4d0537f10 (IsA infusion extraction) (STV 1.0 0.9091)) +(: cnet_isa_b31416675a (IsA infusion solution) (STV 1.0 0.9091)) +(: cnet_isa_64c3eb8c51 (IsA infusoria class) (STV 1.0 0.9091)) +(: cnet_isa_96a8567290 (IsA infusorian ciliate) (STV 1.0 0.9091)) +(: cnet_isa_ce5e37e1a0 (IsA inga tree) (STV 1.0 0.9091)) +(: cnet_isa_a78ce79d6c (IsA ingenue character) (STV 1.0 0.9091)) +(: cnet_isa_1ac5da733d (IsA ingenue actor) (STV 1.0 0.9091)) +(: cnet_isa_2052fdd79d (IsA ingenue juvenile) (STV 1.0 0.9091)) +(: cnet_isa_f9a9285772 (IsA ingenuity superiority) (STV 1.0 0.9091)) +(: cnet_isa_2aa83f4bac (IsA ingenuousness candor) (STV 1.0 0.9091)) +(: cnet_isa_712d3c6256 (IsA ingerman russian) (STV 1.0 0.9091)) +(: cnet_isa_734fcb47cb (IsA ingesta nutriment) (STV 1.0 0.9091)) +(: cnet_isa_f6ef9210d8 (IsA ingot block) (STV 1.0 0.9091)) +(: cnet_isa_06e0a94ec2 (IsA ingot_iron iron) (STV 1.0 0.9091)) +(: cnet_isa_0f070dd501 (IsA ingrate unwelcome_person) (STV 1.0 0.9091)) +(: cnet_isa_607ed3b00a (IsA ingratiation blandishment) (STV 1.0 0.9091)) +(: cnet_isa_f4b975beff (IsA ingratitude feeling) (STV 1.0 0.9091)) +(: cnet_isa_bccaac2aec (IsA ingredient component) (STV 1.0 0.9091)) +(: cnet_isa_cacb4035a3 (IsA ingredient foodstuff) (STV 1.0 0.9091)) +(: cnet_isa_aecd62f570 (IsA ingress disappearance) (STV 1.0 0.9091)) +(: cnet_isa_ca0c40428c (IsA ingrian baltic_finnic) (STV 1.0 0.9091)) +(: cnet_isa_dcca061104 (IsA ingrown_hair hair) (STV 1.0 0.9091)) +(: cnet_isa_941225f43d (IsA ingrown_toenail toenail) (STV 1.0 0.9091)) +(: cnet_isa_49bef3f7bb (IsA ingrowth growth) (STV 1.0 0.9091)) +(: cnet_isa_a7c3a69f89 (IsA inguinal_canal duct) (STV 1.0 0.9091)) +(: cnet_isa_701b884ff7 (IsA inguinal_hernia hernia) (STV 1.0 0.9091)) +(: cnet_isa_a260ed5b61 (IsA inhabitancy occupancy) (STV 1.0 0.9091)) +(: cnet_isa_c73cc2c3bd (IsA inhabitant person) (STV 1.0 0.9091)) +(: cnet_isa_ad81435d95 (IsA inhalant medicine) (STV 1.0 0.9091)) +(: cnet_isa_45b05aa92f (IsA inhalant gas) (STV 1.0 0.9091)) +(: cnet_isa_29e9039afd (IsA inhalation breath) (STV 1.0 0.9091)) +(: cnet_isa_ed63cbffb7 (IsA inhalation_anesthesia general_anesthesia) (STV 1.0 0.9091)) +(: cnet_isa_1b04772a98 (IsA inhalation_anesthetic general_anesthetic) (STV 1.0 0.9091)) +(: cnet_isa_194265c0e5 (IsA inhaler dispenser) (STV 1.0 0.9091)) +(: cnet_isa_5e65afb2c5 (IsA inherence presence) (STV 1.0 0.9091)) +(: cnet_isa_879166cdc8 (IsA inheritance acquisition) (STV 1.0 0.9091)) +(: cnet_isa_4cbdf298a2 (IsA inheritance attribute) (STV 1.0 0.9091)) +(: cnet_isa_0ec37e20c9 (IsA inheritance heredity) (STV 1.0 0.9091)) +(: cnet_isa_14f3da7de5 (IsA inheritance transferred_property) (STV 1.0 0.9091)) +(: cnet_isa_4d8e39ebcd (IsA inheritance_tax transfer_tax) (STV 1.0 0.9091)) +(: cnet_isa_5000df43f4 (IsA inherited_wealth wealth) (STV 1.0 0.9091)) +(: cnet_isa_06902806ab (IsA inhibition restraint) (STV 1.0 0.9091)) +(: cnet_isa_530f89ae5a (IsA inhibition organic_process) (STV 1.0 0.9091)) +(: cnet_isa_23372888ed (IsA inhibition abstinence) (STV 1.0 0.9091)) +(: cnet_isa_ee569a1e62 (IsA inhibitor substance) (STV 1.0 0.9091)) +(: cnet_isa_bbd7e5b8ff (IsA inhomogeneity irregularity) (STV 1.0 0.9091)) +(: cnet_isa_044273d426 (IsA inhospitableness unfriendliness) (STV 1.0 0.9091)) +(: cnet_isa_412d2ad3e0 (IsA inhospitableness environmental_condition) (STV 1.0 0.9091)) +(: cnet_isa_4a572fe84a (IsA inhospitality welcome) (STV 1.0 0.9091)) +(: cnet_isa_ab92f86dd8 (IsA inhumaneness quality) (STV 1.0 0.9091)) +(: cnet_isa_a93f2fa93c (IsA inion craniometric_point) (STV 1.0 0.9091)) +(: cnet_isa_d90944b7c3 (IsA iniquity condition) (STV 1.0 0.9091)) +(: cnet_isa_0b4b4e5ab8 (IsA initial letter) (STV 1.0 0.9091)) +(: cnet_isa_d4fd3bb732 (IsA initial_public_offering commerce) (STV 1.0 0.9091)) +(: cnet_isa_8ba41893de (IsA initialism abbreviation) (STV 1.0 0.9091)) +(: cnet_isa_30f72fa80f (IsA initiate people) (STV 1.0 0.9091)) +(: cnet_isa_9d2f979d5b (IsA initiate scholar) (STV 1.0 0.9091)) +(: cnet_isa_c911c93dd5 (IsA initiation beginning) (STV 1.0 0.9091)) +(: cnet_isa_0b76b1be9c (IsA initiation ceremony) (STV 1.0 0.9091)) +(: cnet_isa_ce8284a3fe (IsA injection insertion) (STV 1.0 0.9091)) +(: cnet_isa_0b48b1a8f9 (IsA injection medical_care) (STV 1.0 0.9091)) +(: cnet_isa_a4d06c23fa (IsA injection solution) (STV 1.0 0.9091)) +(: cnet_isa_4e4a349a18 (IsA injector appliance) (STV 1.0 0.9091)) +(: cnet_isa_b2a64ade84 (IsA injudiciousness sagacity) (STV 1.0 0.9091)) +(: cnet_isa_5ba7be6d6c (IsA injunction command) (STV 1.0 0.9091)) +(: cnet_isa_a3ada2701d (IsA injunction prohibition) (STV 1.0 0.9091)) +(: cnet_isa_4bca3bed2f (IsA injury wrongdoing) (STV 1.0 0.9091)) +(: cnet_isa_b83898fedf (IsA injury accident) (STV 1.0 0.9091)) +(: cnet_isa_3375fdbea0 (IsA injury ill_health) (STV 1.0 0.9091)) +(: cnet_isa_1298ae4fc9 (IsA injustice wrongdoing) (STV 1.0 0.9091)) +(: cnet_isa_fe9dc73df9 (IsA injustice unrighteousness) (STV 1.0 0.9091)) +(: cnet_isa_71cc06d86f (IsA ink liquid) (STV 1.0 0.9091)) +(: cnet_isa_62dcbd7548 (IsA ink liquid_body_substance) (STV 1.0 0.9091)) +(: cnet_isa_3ad97c5f67 (IsA ink_bottle bottle) (STV 1.0 0.9091)) +(: cnet_isa_d99e9c94cc (IsA ink_cartridge cartridge) (STV 1.0 0.9091)) +(: cnet_isa_cc662e3ca2 (IsA ink_eraser eraser) (STV 1.0 0.9091)) +(: cnet_isa_d4862aa605 (IsA ink_jet_printer dot_matrix_printer) (STV 1.0 0.9091)) +(: cnet_isa_f529131c50 (IsA inkberry holly) (STV 1.0 0.9091)) +(: cnet_isa_1ce0494d91 (IsA inkblot smudge) (STV 1.0 0.9091)) +(: cnet_isa_d8d7676395 (IsA inkle tape) (STV 1.0 0.9091)) +(: cnet_isa_d057d47691 (IsA inkling suggestion) (STV 1.0 0.9091)) +(: cnet_isa_8fd3b77360 (IsA inkstand tray) (STV 1.0 0.9091)) +(: cnet_isa_f5ac65b640 (IsA inkwell well) (STV 1.0 0.9091)) +(: cnet_isa_1ea5a25102 (IsA inky_cap agaric) (STV 1.0 0.9091)) +(: cnet_isa_71d8c59687 (IsA inland_bill draft) (STV 1.0 0.9091)) +(: cnet_isa_8ea267a0da (IsA inland_revenue administrative_unit) (STV 1.0 0.9091)) +(: cnet_isa_5713d7ea86 (IsA inlay decoration) (STV 1.0 0.9091)) +(: cnet_isa_d4432f94ad (IsA inlay filling) (STV 1.0 0.9091)) +(: cnet_isa_37f3554cc0 (IsA inlet body_of_water) (STV 1.0 0.9091)) +(: cnet_isa_adfdf41827 (IsA inlet_manifold manifold) (STV 1.0 0.9091)) +(: cnet_isa_c825164294 (IsA inmate resident) (STV 1.0 0.9091)) +(: cnet_isa_ce60a4655b (IsA innateness changelessness) (STV 1.0 0.9091)) +(: cnet_isa_b8eedecd2a (IsA inner_city center) (STV 1.0 0.9091)) +(: cnet_isa_e651022c84 (IsA inner_ear sense_organ) (STV 1.0 0.9091)) +(: cnet_isa_9c459d4612 (IsA inner_light ethical_motive) (STV 1.0 0.9091)) +(: cnet_isa_272838da3f (IsA inner_resource resource) (STV 1.0 0.9091)) +(: cnet_isa_5100008b1b (IsA inner_tube tube) (STV 1.0 0.9091)) +(: cnet_isa_dfbaa35476 (IsA innervation distribution) (STV 1.0 0.9091)) +(: cnet_isa_2907e4310b (IsA inning part) (STV 1.0 0.9091)) +(: cnet_isa_1ea992efdb (IsA inning turn) (STV 1.0 0.9091)) +(: cnet_isa_d8cbba3b7d (IsA innocence condition) (STV 1.0 0.9091)) +(: cnet_isa_0d3d97b370 (IsA innocency artlessness) (STV 1.0 0.9091)) +(: cnet_isa_705a50860b (IsA innocent person) (STV 1.0 0.9091)) +(: cnet_isa_8623a05188 (IsA innominate_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_64a40944bc (IsA innovativeness originality) (STV 1.0 0.9091)) +(: cnet_isa_ef0ddfe038 (IsA innumerableness number) (STV 1.0 0.9091)) +(: cnet_isa_a804f05c32 (IsA inoculant substance) (STV 1.0 0.9091)) +(: cnet_isa_512450bba6 (IsA inoculating protection) (STV 1.0 0.9091)) +(: cnet_isa_353b3831e6 (IsA inoculation immunization) (STV 1.0 0.9091)) +(: cnet_isa_7752fc816e (IsA inoculator medical_practitioner) (STV 1.0 0.9091)) +(: cnet_isa_870cfc02f8 (IsA inopportuneness inconvenience) (STV 1.0 0.9091)) +(: cnet_isa_aa11265ad4 (IsA inorganic_chemistry chemistry) (STV 1.0 0.9091)) +(: cnet_isa_473daa2452 (IsA inorganic_compound compound) (STV 1.0 0.9091)) +(: cnet_isa_dfbcda2bac (IsA inosine nucleoside) (STV 1.0 0.9091)) +(: cnet_isa_01a265d327 (IsA inositol b_complex_vitamin) (STV 1.0 0.9091)) +(: cnet_isa_16dece77f8 (IsA inpatient patient) (STV 1.0 0.9091)) +(: cnet_isa_617ae75024 (IsA inpouring inflow) (STV 1.0 0.9091)) +(: cnet_isa_8d61cac53e (IsA input component) (STV 1.0 0.9091)) +(: cnet_isa_d39af342eb (IsA input_file computer_file) (STV 1.0 0.9091)) +(: cnet_isa_f7fa6fe315 (IsA input_program utility_program) (STV 1.0 0.9091)) +(: cnet_isa_e2b64cfec5 (IsA input_routine utility_routine) (STV 1.0 0.9091)) +(: cnet_isa_4d8d0db21a (IsA input_signal signal) (STV 1.0 0.9091)) +(: cnet_isa_9deb8414df (IsA inquest inquiry) (STV 1.0 0.9091)) +(: cnet_isa_d03d3181ba (IsA inquirer speaker) (STV 1.0 0.9091)) +(: cnet_isa_d7805de4df (IsA inquiry investigation) (STV 1.0 0.9091)) +(: cnet_isa_2d25f983d9 (IsA inquiry problem_solving) (STV 1.0 0.9091)) +(: cnet_isa_86c7a0732f (IsA inquiry_agent private_detective) (STV 1.0 0.9091)) +(: cnet_isa_a42ddd635d (IsA inquisition interrogation) (STV 1.0 0.9091)) +(: cnet_isa_030cbc3319 (IsA inquisition court) (STV 1.0 0.9091)) +(: cnet_isa_8ff6399838 (IsA inquisitor inquirer) (STV 1.0 0.9091)) +(: cnet_isa_1b2955dfb3 (IsA inquisitor official) (STV 1.0 0.9091)) +(: cnet_isa_90f21d153c (IsA inroad invasion) (STV 1.0 0.9091)) +(: cnet_isa_c28d41c2fa (IsA inroad trespass) (STV 1.0 0.9091)) +(: cnet_isa_5c86e9e6ee (IsA insalubrity unhealthfulness) (STV 1.0 0.9091)) +(: cnet_isa_b1bf3ca092 (IsA insanity mental_illness) (STV 1.0 0.9091)) +(: cnet_isa_ce20b00c03 (IsA insanity_plea plea) (STV 1.0 0.9091)) +(: cnet_isa_9e4fbc652a (IsA inscription writing) (STV 1.0 0.9091)) +(: cnet_isa_1407d5cece (IsA inscrutability incomprehensibility) (STV 1.0 0.9091)) +(: cnet_isa_c369aa6285 (IsA insect arthropod) (STV 1.0 0.9091)) +(: cnet_isa_4fe81e7813 (IsA insecta class) (STV 1.0 0.9091)) +(: cnet_isa_4adb34a86a (IsA insecticide pesticide) (STV 1.0 0.9091)) +(: cnet_isa_80ed4a350b (IsA insectifuge repellent) (STV 1.0 0.9091)) +(: cnet_isa_552b0e75c7 (IsA insectivora animal_order) (STV 1.0 0.9091)) +(: cnet_isa_623d76c304 (IsA insectivore animal) (STV 1.0 0.9091)) +(: cnet_isa_165f4cf794 (IsA insectivore placental) (STV 1.0 0.9091)) +(: cnet_isa_86d0bf4dd7 (IsA insect animal) (STV 1.0 0.9091)) +(: cnet_isa_ece570ed2b (IsA insecureness insecurity) (STV 1.0 0.9091)) +(: cnet_isa_be2feb3de9 (IsA insecurity anxiety) (STV 1.0 0.9091)) +(: cnet_isa_d4286b0675 (IsA insecurity danger) (STV 1.0 0.9091)) +(: cnet_isa_737b7b525a (IsA insemination bodily_process) (STV 1.0 0.9091)) +(: cnet_isa_93a8dd6af4 (IsA insemination planting) (STV 1.0 0.9091)) +(: cnet_isa_dbba664668 (IsA insensibility unconsciousness) (STV 1.0 0.9091)) +(: cnet_isa_144ca242aa (IsA insensitivity inability) (STV 1.0 0.9091)) +(: cnet_isa_5118c424ed (IsA insentience inanimateness) (STV 1.0 0.9091)) +(: cnet_isa_da330e7ad6 (IsA insert artifact) (STV 1.0 0.9091)) +(: cnet_isa_2f2b9e3292 (IsA insert section) (STV 1.0 0.9091)) +(: cnet_isa_469b68750e (IsA insertion movement) (STV 1.0 0.9091)) +(: cnet_isa_485224accf (IsA insertional_mutagenesis mutagenesis) (STV 1.0 0.9091)) +(: cnet_isa_d170fe913a (IsA insessore animal_order) (STV 1.0 0.9091)) +(: cnet_isa_1ac6c1602d (IsA inset ikon) (STV 1.0 0.9091)) +(: cnet_isa_38f89dbb9a (IsA inside region) (STV 1.0 0.9091)) +(: cnet_isa_5d8b4bb34d (IsA inside surface) (STV 1.0 0.9091)) +(: cnet_isa_a5ece6a240 (IsA inside_caliper caliper) (STV 1.0 0.9091)) +(: cnet_isa_4f8e08b243 (IsA inside_clinch clinch) (STV 1.0 0.9091)) +(: cnet_isa_64447f5989 (IsA inside_job transgression) (STV 1.0 0.9091)) +(: cnet_isa_40cd974158 (IsA inside_loop loop) (STV 1.0 0.9091)) +(: cnet_isa_1b681632f9 (IsA inside_track superiority) (STV 1.0 0.9091)) +(: cnet_isa_78ce491876 (IsA inside_track path) (STV 1.0 0.9091)) +(: cnet_isa_4fa890b801 (IsA insider corporate_executive) (STV 1.0 0.9091)) +(: cnet_isa_d259840f9d (IsA insider_information information) (STV 1.0 0.9091)) +(: cnet_isa_e97e8ea37d (IsA insider_trading trading) (STV 1.0 0.9091)) +(: cnet_isa_c3f0587638 (IsA insidiousness harmfulness) (STV 1.0 0.9091)) +(: cnet_isa_849f14f0b3 (IsA insidiousness perfidy) (STV 1.0 0.9091)) +(: cnet_isa_1339adcd74 (IsA insight intuition) (STV 1.0 0.9091)) +(: cnet_isa_7eed46513f (IsA insight understanding) (STV 1.0 0.9091)) +(: cnet_isa_e095505963 (IsA insight sensibility) (STV 1.0 0.9091)) +(: cnet_isa_36c7f7f28d (IsA insightfulness shrewdness) (STV 1.0 0.9091)) +(: cnet_isa_a9d46605ee (IsA insignia badge) (STV 1.0 0.9091)) +(: cnet_isa_dd65c3cabb (IsA insignia_of_rank insignia) (STV 1.0 0.9091)) +(: cnet_isa_01344b6194 (IsA insignificance unimportance) (STV 1.0 0.9091)) +(: cnet_isa_468c868592 (IsA insincerity untruthfulness) (STV 1.0 0.9091)) +(: cnet_isa_5e3f431dee (IsA insinuation implication) (STV 1.0 0.9091)) +(: cnet_isa_d5e8f99a4d (IsA insistence demand) (STV 1.0 0.9091)) +(: cnet_isa_30568b1c9d (IsA insistency advocacy) (STV 1.0 0.9091)) +(: cnet_isa_66afe3f905 (IsA insolation solar_radiation) (STV 1.0 0.9091)) +(: cnet_isa_074c8741fb (IsA insole sole) (STV 1.0 0.9091)) +(: cnet_isa_5906736287 (IsA insolence discourtesy) (STV 1.0 0.9091)) +(: cnet_isa_6b9d264b4a (IsA insolubility quality) (STV 1.0 0.9091)) +(: cnet_isa_933abf6249 (IsA insolvency financial_condition) (STV 1.0 0.9091)) +(: cnet_isa_e148fd5438 (IsA insomnia sleep_disorder) (STV 1.0 0.9091)) +(: cnet_isa_d53c7a036c (IsA insomniac sick_person) (STV 1.0 0.9091)) +(: cnet_isa_6f4f3af587 (IsA inspection examination) (STV 1.0 0.9091)) +(: cnet_isa_f02f5b08aa (IsA inspector policeman) (STV 1.0 0.9091)) +(: cnet_isa_e95ca49998 (IsA inspector_general military_officer) (STV 1.0 0.9091)) +(: cnet_isa_b2787a88de (IsA inspectorate body) (STV 1.0 0.9091)) +(: cnet_isa_d76e6e7023 (IsA inspectorship position) (STV 1.0 0.9091)) +(: cnet_isa_1d2f3d8f01 (IsA inspiration arousal) (STV 1.0 0.9091)) +(: cnet_isa_b434d28989 (IsA inspiration product) (STV 1.0 0.9091)) +(: cnet_isa_6ca1f6131f (IsA inspiration idea) (STV 1.0 0.9091)) +(: cnet_isa_9fd0a45493 (IsA inspiration intuition) (STV 1.0 0.9091)) +(: cnet_isa_e79fd85947 (IsA inspissation dehydration) (STV 1.0 0.9091)) +(: cnet_isa_43bc66d5dd (IsA instability undependability) (STV 1.0 0.9091)) +(: cnet_isa_f69f97fc52 (IsA instability unsteadiness) (STV 1.0 0.9091)) +(: cnet_isa_c7f5a3ed73 (IsA instability disorder) (STV 1.0 0.9091)) +(: cnet_isa_74a732ebff (IsA installation beginning) (STV 1.0 0.9091)) +(: cnet_isa_30bec8a6a8 (IsA installation_charge charge) (STV 1.0 0.9091)) +(: cnet_isa_246561fe30 (IsA installment text) (STV 1.0 0.9091)) +(: cnet_isa_57bb1355bf (IsA installment payment) (STV 1.0 0.9091)) +(: cnet_isa_c859854ee4 (IsA installment_credit consumer_credit) (STV 1.0 0.9091)) +(: cnet_isa_e13efc86f5 (IsA installment_credit loan) (STV 1.0 0.9091)) +(: cnet_isa_1555567158 (IsA installment_debt debt) (STV 1.0 0.9091)) +(: cnet_isa_9878b88686 (IsA installment_plan regular_payment) (STV 1.0 0.9091)) +(: cnet_isa_c740dd916b (IsA instant_coffee coffee) (STV 1.0 0.9091)) +(: cnet_isa_d5d1c9bfee (IsA instantiation representation) (STV 1.0 0.9091)) +(: cnet_isa_681916765b (IsA instar arthropod) (STV 1.0 0.9091)) +(: cnet_isa_56964be02a (IsA instep covering) (STV 1.0 0.9091)) +(: cnet_isa_b65d83d299 (IsA instep arch) (STV 1.0 0.9091)) +(: cnet_isa_d4cc4925c5 (IsA instigator leader) (STV 1.0 0.9091)) +(: cnet_isa_937dc7083a (IsA instigator troublemaker) (STV 1.0 0.9091)) +(: cnet_isa_d9f6bfcb41 (IsA instillation insertion) (STV 1.0 0.9091)) +(: cnet_isa_2cdc44ac9c (IsA instillation liquid) (STV 1.0 0.9091)) +(: cnet_isa_6da5dfda14 (IsA instillator apparatus) (STV 1.0 0.9091)) +(: cnet_isa_5462734274 (IsA instinct aptitude) (STV 1.0 0.9091)) +(: cnet_isa_8387f7b36f (IsA institute association) (STV 1.0 0.9091)) +(: cnet_isa_512d2c3069 (IsA institution establishment) (STV 1.0 0.9091)) +(: cnet_isa_416a830721 (IsA institution custom) (STV 1.0 0.9091)) +(: cnet_isa_632d40edbb (IsA institution organization) (STV 1.0 0.9091)) +(: cnet_isa_16b79a0b6d (IsA instroke throw) (STV 1.0 0.9091)) +(: cnet_isa_d706e26abd (IsA instruction code) (STV 1.0 0.9091)) +(: cnet_isa_2b5cb4b039 (IsA instruction_book reference_book) (STV 1.0 0.9091)) +(: cnet_isa_fc69d8067c (IsA instruction_manual manual) (STV 1.0 0.9091)) +(: cnet_isa_038ed24ee4 (IsA instructorship position) (STV 1.0 0.9091)) +(: cnet_isa_ff2b82815d (IsA instructress teacher) (STV 1.0 0.9091)) +(: cnet_isa_038362ef6e (IsA instrument mean) (STV 1.0 0.9091)) +(: cnet_isa_64a0e435a7 (IsA instrument device) (STV 1.0 0.9091)) +(: cnet_isa_b9206f06a7 (IsA instrument assistant) (STV 1.0 0.9091)) +(: cnet_isa_00326bcae6 (IsA instrument_flying navigation) (STV 1.0 0.9091)) +(: cnet_isa_31ef87d153 (IsA instrument_landing aircraft_landing) (STV 1.0 0.9091)) +(: cnet_isa_887d30e897 (IsA instrument_of_execution instrument) (STV 1.0 0.9091)) +(: cnet_isa_23e1a8af04 (IsA instrument_of_punishment instrument) (STV 1.0 0.9091)) +(: cnet_isa_a0e696cb3c (IsA instrument_of_torture instrument_of_punishment) (STV 1.0 0.9091)) +(: cnet_isa_43be46cbe8 (IsA instrumental_conditioning operant_conditioning) (STV 1.0 0.9091)) +(: cnet_isa_3448efb6c1 (IsA instrumental_music music) (STV 1.0 0.9091)) +(: cnet_isa_efbcdd9e56 (IsA instrumental_role semantic_role) (STV 1.0 0.9091)) +(: cnet_isa_10d04d37c3 (IsA instrumentalism pragmatism) (STV 1.0 0.9091)) +(: cnet_isa_fe8335bd29 (IsA instrumentality artifact) (STV 1.0 0.9091)) +(: cnet_isa_bf8464efcc (IsA instrumentality utility) (STV 1.0 0.9091)) +(: cnet_isa_cc4f4ebe85 (IsA instrumentality unit) (STV 1.0 0.9091)) +(: cnet_isa_6fa1e3cf74 (IsA instrumentation implementation) (STV 1.0 0.9091)) +(: cnet_isa_74b963358c (IsA instrumentation musical_arrangement) (STV 1.0 0.9091)) +(: cnet_isa_3c16488328 (IsA insubordination resistance) (STV 1.0 0.9091)) +(: cnet_isa_7cffe9517d (IsA insubordination defiance) (STV 1.0 0.9091)) +(: cnet_isa_b9ceed484e (IsA insubstantiality immateriality) (STV 1.0 0.9091)) +(: cnet_isa_4e274cf82e (IsA insubstantiality weakness) (STV 1.0 0.9091)) +(: cnet_isa_06a01035a7 (IsA insufficiency amount) (STV 1.0 0.9091)) +(: cnet_isa_9ab6861b8a (IsA insufficiency inability) (STV 1.0 0.9091)) +(: cnet_isa_ea10197e99 (IsA insufficiency failing) (STV 1.0 0.9091)) +(: cnet_isa_183fa26cac (IsA insufflation blow) (STV 1.0 0.9091)) +(: cnet_isa_a16d430cf6 (IsA insufflation blowing) (STV 1.0 0.9091)) +(: cnet_isa_6b6dd14854 (IsA insulating_material building_material) (STV 1.0 0.9091)) +(: cnet_isa_2d751dfbb5 (IsA insulation protection) (STV 1.0 0.9091)) +(: cnet_isa_793ea40d5a (IsA insulation isolation) (STV 1.0 0.9091)) +(: cnet_isa_b2616eae80 (IsA insulator material) (STV 1.0 0.9091)) +(: cnet_isa_7861f8b15a (IsA insulin hormone) (STV 1.0 0.9091)) +(: cnet_isa_f5c2eb65b1 (IsA insulin hypoglycemic_agent) (STV 1.0 0.9091)) +(: cnet_isa_a5d7a2cb7a (IsA insulin_shock shock_therapy) (STV 1.0 0.9091)) +(: cnet_isa_9e4700d749 (IsA insulin_shock shock) (STV 1.0 0.9091)) +(: cnet_isa_78c211505b (IsA insult discourtesy) (STV 1.0 0.9091)) +(: cnet_isa_5a34b6eb90 (IsA insurability eligibility) (STV 1.0 0.9091)) +(: cnet_isa_10449698bb (IsA insurable_interest interest) (STV 1.0 0.9091)) +(: cnet_isa_2b43385b9f (IsA insurance contract) (STV 1.0 0.9091)) +(: cnet_isa_02db9fb5a9 (IsA insurance security) (STV 1.0 0.9091)) +(: cnet_isa_fb9eb97de0 (IsA insurance_broker agent) (STV 1.0 0.9091)) +(: cnet_isa_7319ce2420 (IsA insurance_claim claim) (STV 1.0 0.9091)) +(: cnet_isa_1e5ab505fb (IsA insurance_company nondepository_financial_institution) (STV 1.0 0.9091)) +(: cnet_isa_0ab174e4c0 (IsA insured person) (STV 1.0 0.9091)) +(: cnet_isa_c0512f393c (IsA insurgency rebellion) (STV 1.0 0.9091)) +(: cnet_isa_55665b6e05 (IsA insurgent reformer) (STV 1.0 0.9091)) +(: cnet_isa_5350b854de (IsA insurgent revolutionist) (STV 1.0 0.9091)) +(: cnet_isa_2e600a41a8 (IsA insurrectionism principle) (STV 1.0 0.9091)) +(: cnet_isa_4487552cb3 (IsA intactness perfection) (STV 1.0 0.9091)) +(: cnet_isa_9c3e944ee6 (IsA intaglio glyptic_art) (STV 1.0 0.9091)) +(: cnet_isa_7304a64bfe (IsA intaglio_printing printing) (STV 1.0 0.9091)) +(: cnet_isa_ec5b29febc (IsA intake opening) (STV 1.0 0.9091)) +(: cnet_isa_7611b5c1fe (IsA intake_manifold manifold) (STV 1.0 0.9091)) +(: cnet_isa_806bc4b662 (IsA intake_valve valve) (STV 1.0 0.9091)) +(: cnet_isa_2add603044 (IsA intangibility immateriality) (STV 1.0 0.9091)) +(: cnet_isa_8c097b99fc (IsA intangible asset) (STV 1.0 0.9091)) +(: cnet_isa_b11091eef9 (IsA integer number) (STV 1.0 0.9091)) +(: cnet_isa_24641f838c (IsA integral calculation) (STV 1.0 0.9091)) +(: cnet_isa_43623252f7 (IsA integral_calculus calculus) (STV 1.0 0.9091)) +(: cnet_isa_1be72f649d (IsA integrated_circuit computer_circuit) (STV 1.0 0.9091)) +(: cnet_isa_2896d2f0ee (IsA integrated_data_processing automatic_data_processing) (STV 1.0 0.9091)) +(: cnet_isa_b827a70f15 (IsA integrated_logistic_support logistic_support) (STV 1.0 0.9091)) +(: cnet_isa_3a032ba396 (IsA integration group_action) (STV 1.0 0.9091)) +(: cnet_isa_3e85bd7306 (IsA integration mathematical_process) (STV 1.0 0.9091)) +(: cnet_isa_b00b910ff8 (IsA integrator measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_0cfa9f98d2 (IsA integrity honesty) (STV 1.0 0.9091)) +(: cnet_isa_f1bf26e2b6 (IsA integrity state) (STV 1.0 0.9091)) +(: cnet_isa_e8820c689a (IsA integument covering) (STV 1.0 0.9091)) +(: cnet_isa_15a135feda (IsA integumentary_system system) (STV 1.0 0.9091)) +(: cnet_isa_2d99f0ead7 (IsA intel company) (STV 1.0 0.9091)) +(: cnet_isa_4cd63995d1 (IsA intellectual person) (STV 1.0 0.9091)) +(: cnet_isa_28ecbe5f67 (IsA intellectual_property property) (STV 1.0 0.9091)) +(: cnet_isa_d4b6be8679 (IsA intellectualization defense_mechanism) (STV 1.0 0.9091)) +(: cnet_isa_4967c9c69b (IsA intelligence information_gathering) (STV 1.0 0.9091)) +(: cnet_isa_9c25bcb8b6 (IsA intelligence ability) (STV 1.0 0.9091)) +(: cnet_isa_78de73aea7 (IsA intelligence information) (STV 1.0 0.9091)) +(: cnet_isa_21945528da (IsA intelligence administrative_unit) (STV 1.0 0.9091)) +(: cnet_isa_77309b115f (IsA intelligence_analyst analyst) (STV 1.0 0.9091)) +(: cnet_isa_b0b2c9bc0d (IsA intelligence_cell terrorist_cell) (STV 1.0 0.9091)) +(: cnet_isa_9d2561154d (IsA intelligence_community intelligence) (STV 1.0 0.9091)) +(: cnet_isa_d33d2571f3 (IsA intelligence_quotient ratio) (STV 1.0 0.9091)) +(: cnet_isa_f87c17f51e (IsA intelligence_test test) (STV 1.0 0.9091)) +(: cnet_isa_ef71aef365 (IsA intelligentsia elite) (STV 1.0 0.9091)) +(: cnet_isa_93628dca0f (IsA intelligibility comprehensibility) (STV 1.0 0.9091)) +(: cnet_isa_35904d0978 (IsA intelnet computer_network) (STV 1.0 0.9091)) +(: cnet_isa_4c9e2119f3 (IsA intemperance indulgence) (STV 1.0 0.9091)) +(: cnet_isa_533fc337e6 (IsA intemperance vice) (STV 1.0 0.9091)) +(: cnet_isa_f2d9eaa58b (IsA intemperance unrestraint) (STV 1.0 0.9091)) +(: cnet_isa_d6b90ecc2b (IsA intensification increase) (STV 1.0 0.9091)) +(: cnet_isa_8bde043f2f (IsA intensifier modifier) (STV 1.0 0.9091)) +(: cnet_isa_f96475d1a7 (IsA intension meaning) (STV 1.0 0.9091)) +(: cnet_isa_acd5dcbfe1 (IsA intensity degree) (STV 1.0 0.9091)) +(: cnet_isa_0e01390a8f (IsA intensity magnitude) (STV 1.0 0.9091)) +(: cnet_isa_55ee99328f (IsA intensive_care medical_care) (STV 1.0 0.9091)) +(: cnet_isa_870f1cb82a (IsA intensive_care_unit unit) (STV 1.0 0.9091)) +(: cnet_isa_3c9b1e5349 (IsA intent meaning) (STV 1.0 0.9091)) +(: cnet_isa_93175ebdc0 (IsA intention volition) (STV 1.0 0.9091)) +(: cnet_isa_713e429234 (IsA intention goal) (STV 1.0 0.9091)) +(: cnet_isa_1ffba55bed (IsA intentionality deliberation) (STV 1.0 0.9091)) +(: cnet_isa_4cb92d295a (IsA intentness assiduity) (STV 1.0 0.9091)) +(: cnet_isa_d104804dae (IsA inter_service_support logistic_support) (STV 1.0 0.9091)) +(: cnet_isa_974985b909 (IsA interaction action) (STV 1.0 0.9091)) +(: cnet_isa_fcd5dc0c88 (IsA interaction physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_43d68615ce (IsA interbank_loan bank_loan) (STV 1.0 0.9091)) +(: cnet_isa_169920801e (IsA intercapitular_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_2c91df700c (IsA intercept point) (STV 1.0 0.9091)) +(: cnet_isa_178d646c77 (IsA interception prevention) (STV 1.0 0.9091)) +(: cnet_isa_9293369bfc (IsA interception catch) (STV 1.0 0.9091)) +(: cnet_isa_402d5f3ae0 (IsA interceptor fighter) (STV 1.0 0.9091)) +(: cnet_isa_8a6af7a0df (IsA intercession prayer) (STV 1.0 0.9091)) +(: cnet_isa_6fe9553db1 (IsA interchange interaction) (STV 1.0 0.9091)) +(: cnet_isa_3474a7cbf7 (IsA interchange junction) (STV 1.0 0.9091)) +(: cnet_isa_de78625c4d (IsA intercommunication communication) (STV 1.0 0.9091)) +(: cnet_isa_75243fe68d (IsA intercommunication_system communication_system) (STV 1.0 0.9091)) +(: cnet_isa_a09d40c9f9 (IsA intercommunion communion) (STV 1.0 0.9091)) +(: cnet_isa_6fedcf7429 (IsA interconnection joining) (STV 1.0 0.9091)) +(: cnet_isa_f6a174560f (IsA interconnection connection) (STV 1.0 0.9091)) +(: cnet_isa_8ed362a92a (IsA intercontinental_ballistic_missile ballistic_missile) (STV 1.0 0.9091)) +(: cnet_isa_90dccc633b (IsA intercostal skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_8d3b6dcaf4 (IsA intercostal_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_c6e8ff18c5 (IsA intercostal_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_d54245037c (IsA intercourse intercommunication) (STV 1.0 0.9091)) +(: cnet_isa_7b0e880284 (IsA interdepartmental_support logistic_support) (STV 1.0 0.9091)) +(: cnet_isa_dbe2e700b4 (IsA interdict censure) (STV 1.0 0.9091)) +(: cnet_isa_21b2c66746 (IsA interdict court_order) (STV 1.0 0.9091)) +(: cnet_isa_2c1730125e (IsA interdict prohibition) (STV 1.0 0.9091)) +(: cnet_isa_dc32ab8703 (IsA interdiction prohibition) (STV 1.0 0.9091)) +(: cnet_isa_ea8ca7dac9 (IsA interdiction_fire fire) (STV 1.0 0.9091)) +(: cnet_isa_4882660b9d (IsA interest power) (STV 1.0 0.9091)) +(: cnet_isa_7069c3d8d8 (IsA interest curiosity) (STV 1.0 0.9091)) +(: cnet_isa_1411644f60 (IsA interest social_group) (STV 1.0 0.9091)) +(: cnet_isa_ba0cd66451 (IsA interest share) (STV 1.0 0.9091)) +(: cnet_isa_d24a2e45b2 (IsA interest fixed_charge) (STV 1.0 0.9091)) +(: cnet_isa_1ca3f8c8c5 (IsA interest_expense expense) (STV 1.0 0.9091)) +(: cnet_isa_c719224aa2 (IsA interest_rate rate) (STV 1.0 0.9091)) +(: cnet_isa_e63f74decc (IsA interestedness cognitive_state) (STV 1.0 0.9091)) +(: cnet_isa_7ac05e887d (IsA interface overlap) (STV 1.0 0.9091)) +(: cnet_isa_c95c6bcd29 (IsA interface computer_circuit) (STV 1.0 0.9091)) +(: cnet_isa_b7cc0ea2c5 (IsA interface program) (STV 1.0 0.9091)) +(: cnet_isa_6f0a5b5e8a (IsA interface surface) (STV 1.0 0.9091)) +(: cnet_isa_fd7f0a953a (IsA interfacial_tension surface_tension) (STV 1.0 0.9091)) +(: cnet_isa_59c315d678 (IsA interference blocking) (STV 1.0 0.9091)) +(: cnet_isa_d592861ddc (IsA interference_fringe optical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_f5f06b4220 (IsA interferometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_cbc20d0114 (IsA interferon antiviral) (STV 1.0 0.9091)) +(: cnet_isa_7e80011ccc (IsA intergalactic_space region) (STV 1.0 0.9091)) +(: cnet_isa_705c38875e (IsA interim time_interval) (STV 1.0 0.9091)) +(: cnet_isa_901514e3df (IsA interim_overhaul overhaul) (STV 1.0 0.9091)) +(: cnet_isa_a6e87bb12c (IsA interior_angle angle) (STV 1.0 0.9091)) +(: cnet_isa_2d0c195067 (IsA interior_decoration trade) (STV 1.0 0.9091)) +(: cnet_isa_6399320d1b (IsA interior_decoration decoration) (STV 1.0 0.9091)) +(: cnet_isa_99ea04a0f1 (IsA interior_design humanistic_discipline) (STV 1.0 0.9091)) +(: cnet_isa_82e5af0dae (IsA interior_designer specialist) (STV 1.0 0.9091)) +(: cnet_isa_68161050f6 (IsA interior_door door) (STV 1.0 0.9091)) +(: cnet_isa_3d6d6f38b0 (IsA interior_live_oak live_oak) (STV 1.0 0.9091)) +(: cnet_isa_0dae04a599 (IsA interior_monologue prose) (STV 1.0 0.9091)) +(: cnet_isa_110c1a71ac (IsA interior_secretary secretary) (STV 1.0 0.9091)) +(: cnet_isa_269e7dcaec (IsA interjection break) (STV 1.0 0.9091)) +(: cnet_isa_39368caf48 (IsA interlayer layer) (STV 1.0 0.9091)) +(: cnet_isa_9eea763fe9 (IsA interleaf leaf) (STV 1.0 0.9091)) +(: cnet_isa_e286b1dee0 (IsA interleukin lymphokine) (STV 1.0 0.9091)) +(: cnet_isa_9cad02f71a (IsA interlingua artificial_language) (STV 1.0 0.9091)) +(: cnet_isa_8662a04134 (IsA interlocutor conversationalist) (STV 1.0 0.9091)) +(: cnet_isa_a7cf98115a (IsA interlocutor minstrel) (STV 1.0 0.9091)) +(: cnet_isa_7fc065cb42 (IsA interlude show) (STV 1.0 0.9091)) +(: cnet_isa_cfc2764e09 (IsA interlude time_interval) (STV 1.0 0.9091)) +(: cnet_isa_05868c899a (IsA intermaxillary_suture suture) (STV 1.0 0.9091)) +(: cnet_isa_1861a20442 (IsA intermediate chemical) (STV 1.0 0.9091)) +(: cnet_isa_1de8edad3d (IsA intermediate_host host) (STV 1.0 0.9091)) +(: cnet_isa_3bd94821cc (IsA intermediate_temporal_artery temporal_artery) (STV 1.0 0.9091)) +(: cnet_isa_c29b20d565 (IsA intermediate_vector_boson gauge_boson) (STV 1.0 0.9091)) +(: cnet_isa_24361beb03 (IsA intermediate_wheatgrass wheatgrass) (STV 1.0 0.9091)) +(: cnet_isa_d6fb73df14 (IsA intermezzo movement) (STV 1.0 0.9091)) +(: cnet_isa_e3f790d880 (IsA intermezzo musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_5b8287b258 (IsA intermission pause) (STV 1.0 0.9091)) +(: cnet_isa_6511ca5de4 (IsA intermittence irregularity) (STV 1.0 0.9091)) +(: cnet_isa_29218c5560 (IsA intermittent_claudication lameness) (STV 1.0 0.9091)) +(: cnet_isa_461cb63295 (IsA intern doctor) (STV 1.0 0.9091)) +(: cnet_isa_244902537b (IsA internal_auditor auditor) (STV 1.0 0.9091)) +(: cnet_isa_9ea144e92b (IsA internal_carotid_artery carotid_artery) (STV 1.0 0.9091)) +(: cnet_isa_28b9450226 (IsA internal_cerebral_vein cerebral_vein) (STV 1.0 0.9091)) +(: cnet_isa_e60e92e75f (IsA internal_combustion combustion) (STV 1.0 0.9091)) +(: cnet_isa_b27f9f1789 (IsA internal_combustion_engine heat_engine) (STV 1.0 0.9091)) +(: cnet_isa_87db9ee827 (IsA internal_control control) (STV 1.0 0.9091)) +(: cnet_isa_5464c857c5 (IsA internal_drive drive) (STV 1.0 0.9091)) +(: cnet_isa_6950082fbc (IsA internal_iliac_artery iliac_artery) (STV 1.0 0.9091)) +(: cnet_isa_77689599f1 (IsA internal_jugular_vein jugular_vein) (STV 1.0 0.9091)) +(: cnet_isa_363387dbea (IsA internal_maxillary_artery maxillary_artery) (STV 1.0 0.9091)) +(: cnet_isa_524358ed1c (IsA internal_medicine medicine) (STV 1.0 0.9091)) +(: cnet_isa_1e224d1a30 (IsA internal_organ organ) (STV 1.0 0.9091)) +(: cnet_isa_2def258d80 (IsA internal_revenue tax_income) (STV 1.0 0.9091)) +(: cnet_isa_ff7c86b31b (IsA internal_revenue_service agency) (STV 1.0 0.9091)) +(: cnet_isa_14041c89f4 (IsA internal_rhyme rhyme) (STV 1.0 0.9091)) +(: cnet_isa_ffaad24a73 (IsA internalization learning) (STV 1.0 0.9091)) +(: cnet_isa_9198a5d351 (IsA internasal_suture suture) (STV 1.0 0.9091)) +(: cnet_isa_3684acbb67 (IsA international socialism) (STV 1.0 0.9091)) +(: cnet_isa_43f209f32b (IsA international_atomic_energy_agency united_nation_agency) (STV 1.0 0.9091)) +(: cnet_isa_66054587fc (IsA international_bank_for_reconstruction_and_development united_nation_agency) (STV 1.0 0.9091)) +(: cnet_isa_dcba78f749 (IsA international_candle luminous_intensity_unit) (STV 1.0 0.9091)) +(: cnet_isa_b261a0039b (IsA international_civil_aviation_organization united_nation_agency) (STV 1.0 0.9091)) +(: cnet_isa_fc908ea1de (IsA international_court_of_justice court) (STV 1.0 0.9091)) +(: cnet_isa_1cf5e3ac35 (IsA international_development_association united_nation_agency) (STV 1.0 0.9091)) +(: cnet_isa_e93f896eb2 (IsA international_finance_corporation united_nation_agency) (STV 1.0 0.9091)) +(: cnet_isa_300c1b4d49 (IsA international_flight flight) (STV 1.0 0.9091)) +(: cnet_isa_e54023dfbd (IsA international_grandmaster grandmaster) (STV 1.0 0.9091)) +(: cnet_isa_37e8042e88 (IsA international_intelligence_agency intelligence) (STV 1.0 0.9091)) +(: cnet_isa_b1fdb94598 (IsA international_labor_organization united_nation_agency) (STV 1.0 0.9091)) +(: cnet_isa_45f2ac705c (IsA international_law law) (STV 1.0 0.9091)) +(: cnet_isa_acc6951895 (IsA international_law_enforcement_agency administrative_unit) (STV 1.0 0.9091)) +(: cnet_isa_fb7c83ccfb (IsA international_maritime_organization united_nation_agency) (STV 1.0 0.9091)) +(: cnet_isa_b67a9fce05 (IsA international_monetary_fund united_nation_agency) (STV 1.0 0.9091)) +(: cnet_isa_c0b7766705 (IsA international_olympic_committee organization) (STV 1.0 0.9091)) +(: cnet_isa_88772aa4ba (IsA international_relation_and_security_network international_intelligence_agency) (STV 1.0 0.9091)) +(: cnet_isa_fd6a4d715b (IsA international_terrorism terrorism) (STV 1.0 0.9091)) +(: cnet_isa_c509f6c131 (IsA international_wanted_notice wanted_notice) (STV 1.0 0.9091)) +(: cnet_isa_242a9e0f84 (IsA internationalism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_0f95359865 (IsA internationalist advocate) (STV 1.0 0.9091)) +(: cnet_isa_d66c0c24ef (IsA internationalist socialist) (STV 1.0 0.9091)) +(: cnet_isa_b645a28fe8 (IsA internationality scope) (STV 1.0 0.9091)) +(: cnet_isa_2370846ee2 (IsA internationalization group_action) (STV 1.0 0.9091)) +(: cnet_isa_0e8c2a8a5a (IsA internee prisoner) (STV 1.0 0.9091)) +(: cnet_isa_cc45e0c095 (IsA internet amazing_research_tool) (STV 1.0 0.9091)) +(: cnet_isa_fd1cd1728e (IsA internet big_set_of_computer) (STV 1.0 0.9091)) +(: cnet_isa_c318e11d7d (IsA internet collection_of_connected_computer) (STV 1.0 0.9339)) +(: cnet_isa_e6d5380cbd (IsA internet group_of_connected_computer) (STV 1.0 0.9091)) +(: cnet_isa_0538bedb97 (IsA internet net) (STV 1.0 0.9091)) +(: cnet_isa_74e95fe9dd (IsA internet network_of_communicating_computer) (STV 1.0 0.9454)) +(: cnet_isa_b69d00f576 (IsA internet non_local) (STV 1.0 0.9091)) +(: cnet_isa_14dc82f19b (IsA internet rich_online_source_of_information) (STV 1.0 0.9091)) +(: cnet_isa_5b3b9252c1 (IsA internet computer_network) (STV 1.0 0.9091)) +(: cnet_isa_c979424022 (IsA internist specialist) (STV 1.0 0.9091)) +(: cnet_isa_d8dfb5f563 (IsA internment captivity) (STV 1.0 0.9091)) +(: cnet_isa_f6cbc9e147 (IsA internode segment) (STV 1.0 0.9091)) +(: cnet_isa_ff7de69aab (IsA internship position) (STV 1.0 0.9091)) +(: cnet_isa_8baf35f54b (IsA internuncio diplomat) (STV 1.0 0.9091)) +(: cnet_isa_884c5558d3 (IsA interobserver observer) (STV 1.0 0.9091)) +(: cnet_isa_49040b2674 (IsA interoception sensitivity) (STV 1.0 0.9091)) +(: cnet_isa_f7608dc66b (IsA interoceptor sense_organ) (STV 1.0 0.9091)) +(: cnet_isa_04e4f61f62 (IsA interoperability ability) (STV 1.0 0.9091)) +(: cnet_isa_fd45413a71 (IsA interpellation order) (STV 1.0 0.9091)) +(: cnet_isa_ac6b8e7ff7 (IsA interpenetration penetration) (STV 1.0 0.9091)) +(: cnet_isa_e468ed4859 (IsA interphalangeal_joint hinge_joint) (STV 1.0 0.9091)) +(: cnet_isa_08d05ea11e (IsA interphone intercommunication_system) (STV 1.0 0.9091)) +(: cnet_isa_22cbb25e0d (IsA interplanetary_dust dust) (STV 1.0 0.9091)) +(: cnet_isa_095746203b (IsA interplanetary_gas plasma) (STV 1.0 0.9091)) +(: cnet_isa_a2018a9ffb (IsA interplanetary_medium interplanetary_space) (STV 1.0 0.9091)) +(: cnet_isa_9f73447480 (IsA interplanetary_space region) (STV 1.0 0.9091)) +(: cnet_isa_a4f02f3577 (IsA interplay interaction) (STV 1.0 0.9091)) +(: cnet_isa_956eb9950c (IsA interpol international_law_enforcement_agency) (STV 1.0 0.9091)) +(: cnet_isa_9abfc32fb5 (IsA interpolation message) (STV 1.0 0.9091)) +(: cnet_isa_3e26769613 (IsA interpolation calculation) (STV 1.0 0.9091)) +(: cnet_isa_1ede3348a3 (IsA interposition placement) (STV 1.0 0.9091)) +(: cnet_isa_ce5d3901c5 (IsA interpretation explanation) (STV 1.0 0.9091)) +(: cnet_isa_290b0824c6 (IsA interpretation representation) (STV 1.0 0.9091)) +(: cnet_isa_5c4b6dac0d (IsA interpreter computer_program) (STV 1.0 0.9091)) +(: cnet_isa_5f2dcd446b (IsA interpreter program) (STV 1.0 0.9091)) +(: cnet_isa_548b3eaee6 (IsA interpreter mediator) (STV 1.0 0.9091)) +(: cnet_isa_74019190fe (IsA interpreter person) (STV 1.0 0.9091)) +(: cnet_isa_96841c71aa (IsA interpretive_dance modern_dance) (STV 1.0 0.9091)) +(: cnet_isa_680a7851ff (IsA interreflection reflection) (STV 1.0 0.9091)) +(: cnet_isa_fd330b95a1 (IsA interregnum interim) (STV 1.0 0.9091)) +(: cnet_isa_481c4d31c6 (IsA interrelation relation) (STV 1.0 0.9091)) +(: cnet_isa_5ba1345d91 (IsA interrogation questioning) (STV 1.0 0.9091)) +(: cnet_isa_7b15f2d62e (IsA interrogation transmission) (STV 1.0 0.9091)) +(: cnet_isa_c25ab84ace (IsA interrogative_mood mood) (STV 1.0 0.9091)) +(: cnet_isa_804adcef96 (IsA interrupt signal) (STV 1.0 0.9091)) +(: cnet_isa_8891a7312f (IsA interrupted_fern flowering_fern) (STV 1.0 0.9091)) +(: cnet_isa_d90cb2fb9c (IsA interrupter device) (STV 1.0 0.9091)) +(: cnet_isa_ecd3643c53 (IsA interruption happening) (STV 1.0 0.9091)) +(: cnet_isa_f558c9f4a5 (IsA intersection where_two_road_meet) (STV 1.0 0.9091)) +(: cnet_isa_27df98cd81 (IsA intersection joining) (STV 1.0 0.9091)) +(: cnet_isa_0afb2e51f6 (IsA intersection junction) (STV 1.0 0.9091)) +(: cnet_isa_b55845e476 (IsA intersection point) (STV 1.0 0.9091)) +(: cnet_isa_9db6addf72 (IsA intersection set) (STV 1.0 0.9091)) +(: cnet_isa_9ff4972b42 (IsA interspersion combination) (STV 1.0 0.9091)) +(: cnet_isa_6909ded4a9 (IsA interstate_commerce_commission independent_agency) (STV 1.0 0.9091)) +(: cnet_isa_98e8f361ec (IsA interstate_highway highway) (STV 1.0 0.9091)) +(: cnet_isa_734e15c9d0 (IsA interstellar_medium interstellar_space) (STV 1.0 0.9091)) +(: cnet_isa_4141c7528f (IsA interstellar_space region) (STV 1.0 0.9091)) +(: cnet_isa_f37fb04dc2 (IsA interstice opening) (STV 1.0 0.9091)) +(: cnet_isa_cd95972123 (IsA interstice structure) (STV 1.0 0.9091)) +(: cnet_isa_62f2088bb3 (IsA interstitial_fluid extracellular_fluid) (STV 1.0 0.9091)) +(: cnet_isa_f59438ecba (IsA interstitial_pneumonia respiratory_disease) (STV 1.0 0.9091)) +(: cnet_isa_6509c54c4d (IsA interstitial_tissue animal_tissue) (STV 1.0 0.9091)) +(: cnet_isa_b1808ed208 (IsA interstitial_tissue plant_tissue) (STV 1.0 0.9091)) +(: cnet_isa_5f63dbba03 (IsA intertrigo chafing) (STV 1.0 0.9091)) +(: cnet_isa_59ba84234e (IsA interval distance) (STV 1.0 0.9091)) +(: cnet_isa_7997628f4d (IsA interval set) (STV 1.0 0.9091)) +(: cnet_isa_6697d08d33 (IsA interval musical_notation) (STV 1.0 0.9091)) +(: cnet_isa_214d4fc008 (IsA intervenor party) (STV 1.0 0.9091)) +(: cnet_isa_afb829f9ba (IsA intervention engagement) (STV 1.0 0.9091)) +(: cnet_isa_8e08e72f11 (IsA intervention foreign_policy) (STV 1.0 0.9091)) +(: cnet_isa_05bb9dc35f (IsA intervention proceeding) (STV 1.0 0.9091)) +(: cnet_isa_f6a8cf5324 (IsA interventricular_foramen foramen) (STV 1.0 0.9091)) +(: cnet_isa_95846765d3 (IsA intervertebral_disc disk) (STV 1.0 0.9091)) +(: cnet_isa_869715e498 (IsA intervertebral_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_b82d871fbc (IsA interview interrogation) (STV 1.0 0.9091)) +(: cnet_isa_eea9f02694 (IsA interviewee respondent) (STV 1.0 0.9091)) +(: cnet_isa_a3739f112b (IsA interviewer inquirer) (STV 1.0 0.9091)) +(: cnet_isa_b48117fdbe (IsA intestacy situation) (STV 1.0 0.9091)) +(: cnet_isa_47f60affc7 (IsA intestinal_bypass operation) (STV 1.0 0.9091)) +(: cnet_isa_78ff59f70c (IsA intestinal_flora microorganism) (STV 1.0 0.9091)) +(: cnet_isa_3eac0dae06 (IsA intestinal_juice secretion) (STV 1.0 0.9091)) +(: cnet_isa_012d99f6d2 (IsA intestinal_obstruction enteropathy) (STV 1.0 0.9091)) +(: cnet_isa_c84d8ec202 (IsA intestinal_obstruction obstruction) (STV 1.0 0.9091)) +(: cnet_isa_eb4b53128c (IsA intestine internal_organ) (STV 1.0 0.9091)) +(: cnet_isa_282abaa43a (IsA inti peruvian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_6b96ad0104 (IsA intifada rebellion) (STV 1.0 0.9091)) +(: cnet_isa_b791b7b806 (IsA intima membrane) (STV 1.0 0.9091)) +(: cnet_isa_e72857e691 (IsA intimidation discouragement) (STV 1.0 0.9091)) +(: cnet_isa_ff191a4dfc (IsA intimidation fear) (STV 1.0 0.9091)) +(: cnet_isa_24433a4e71 (IsA intolerance impatience) (STV 1.0 0.9091)) +(: cnet_isa_c379d21449 (IsA intolerance attitude) (STV 1.0 0.9091)) +(: cnet_isa_3042c4a30c (IsA intonation music) (STV 1.0 0.9091)) +(: cnet_isa_ba4dfe6cdd (IsA intonation singing) (STV 1.0 0.9091)) +(: cnet_isa_f462e5ada2 (IsA intonation prosody) (STV 1.0 0.9091)) +(: cnet_isa_91a5154501 (IsA intonation_pattern intonation) (STV 1.0 0.9091)) +(: cnet_isa_028ff3ad6c (IsA intoxicant drug) (STV 1.0 0.9091)) +(: cnet_isa_9a5afe49a9 (IsA intoxication exhilaration) (STV 1.0 0.9091)) +(: cnet_isa_e6c929d4b6 (IsA intracapsular_surgery cataract_surgery) (STV 1.0 0.9091)) +(: cnet_isa_45752d8184 (IsA intracellular_fluid liquid_body_substance) (STV 1.0 0.9091)) +(: cnet_isa_1f9bd0f84e (IsA intracranial_aneurysm aneurysm) (STV 1.0 0.9091)) +(: cnet_isa_26a88b139d (IsA intractability trait) (STV 1.0 0.9091)) +(: cnet_isa_57e81f8696 (IsA intradermal_injection injection) (STV 1.0 0.9091)) +(: cnet_isa_51b02eb935 (IsA intradermal_test skin_test) (STV 1.0 0.9091)) +(: cnet_isa_c969925990 (IsA intrado curve) (STV 1.0 0.9091)) +(: cnet_isa_26905a2c39 (IsA intramuscular_injection injection) (STV 1.0 0.9091)) +(: cnet_isa_aed7ab5121 (IsA intranet computer_network) (STV 1.0 0.9091)) +(: cnet_isa_b7c05e7d6b (IsA intransigency stubbornness) (STV 1.0 0.9091)) +(: cnet_isa_1fba08d6e9 (IsA intransitive_verb verb) (STV 1.0 0.9091)) +(: cnet_isa_3c1b5c704e (IsA intransitivity grammatical_relation) (STV 1.0 0.9091)) +(: cnet_isa_8b97ead5bc (IsA intraocular_len len) (STV 1.0 0.9091)) +(: cnet_isa_ed16e2123e (IsA intraocular_pressure pressure) (STV 1.0 0.9091)) +(: cnet_isa_3490ec79f8 (IsA intrauterine_device contraceptive) (STV 1.0 0.9091)) +(: cnet_isa_968ec42bb5 (IsA intravasation injury) (STV 1.0 0.9091)) +(: cnet_isa_40bc666bee (IsA intravenous_anesthetic anesthetic) (STV 1.0 0.9091)) +(: cnet_isa_6c39d87c5c (IsA intravenous_drip drip) (STV 1.0 0.9091)) +(: cnet_isa_4bcc94073f (IsA intravenous_feeding feeding) (STV 1.0 0.9091)) +(: cnet_isa_52b1f23b02 (IsA intravenous_injection injection) (STV 1.0 0.9091)) +(: cnet_isa_705815b4c7 (IsA intravenous_pyelogram pyelogram) (STV 1.0 0.9091)) +(: cnet_isa_7d408099ef (IsA intravenous_pyelography pyelography) (STV 1.0 0.9091)) +(: cnet_isa_c2f218f6a5 (IsA intrigue plot) (STV 1.0 0.9091)) +(: cnet_isa_5056f75194 (IsA intrigue love_affair) (STV 1.0 0.9091)) +(: cnet_isa_588005e6e4 (IsA intrinsic_factor factor) (STV 1.0 0.9091)) +(: cnet_isa_a24325f1b4 (IsA intrinsic_fraud fraud) (STV 1.0 0.9091)) +(: cnet_isa_18b08453b2 (IsA intro passage) (STV 1.0 0.9091)) +(: cnet_isa_da195ca80c (IsA introduction beginning) (STV 1.0 0.9091)) +(: cnet_isa_1ce6730303 (IsA introduction proposal) (STV 1.0 0.9091)) +(: cnet_isa_84ff727f55 (IsA introduction section) (STV 1.0 0.9091)) +(: cnet_isa_d728d7ee98 (IsA introduction textbook) (STV 1.0 0.9091)) +(: cnet_isa_6baeeb1132 (IsA introit musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_27b378a1a1 (IsA introitus orifice) (STV 1.0 0.9091)) +(: cnet_isa_d678a56a5e (IsA introject value) (STV 1.0 0.9091)) +(: cnet_isa_ff39d003f9 (IsA introjection internalization) (STV 1.0 0.9091)) +(: cnet_isa_a37c8a16e3 (IsA intron deoxyribonucleic_acid) (STV 1.0 0.9091)) +(: cnet_isa_291532cc9d (IsA introspection contemplation) (STV 1.0 0.9091)) +(: cnet_isa_ebbd50e04a (IsA introspectiveness thoughtfulness) (STV 1.0 0.9091)) +(: cnet_isa_014e440901 (IsA introversion unsociability) (STV 1.0 0.9091)) +(: cnet_isa_0c7fd09643 (IsA introvert person) (STV 1.0 0.9091)) +(: cnet_isa_9fa89d6ba0 (IsA intruder entrant) (STV 1.0 0.9091)) +(: cnet_isa_6d126c7056 (IsA intruder unwelcome_person) (STV 1.0 0.9091)) +(: cnet_isa_0fdbc45654 (IsA intrusion entrance) (STV 1.0 0.9091)) +(: cnet_isa_74c1bec749 (IsA intrusion rock) (STV 1.0 0.9091)) +(: cnet_isa_8611bdadfd (IsA intrusion geological_process) (STV 1.0 0.9091)) +(: cnet_isa_c810c1948a (IsA intrusiveness aggressiveness) (STV 1.0 0.9091)) +(: cnet_isa_7870ff2f87 (IsA intuition basic_cognitive_process) (STV 1.0 0.9091)) +(: cnet_isa_b4948902e1 (IsA intuition impression) (STV 1.0 0.9091)) +(: cnet_isa_4cab1e426b (IsA intuitionism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_9ab620d41a (IsA intumescence chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_58ce92d63c (IsA intumescence swelling) (STV 1.0 0.9091)) +(: cnet_isa_21861ea312 (IsA intussusception growth) (STV 1.0 0.9091)) +(: cnet_isa_126a87187e (IsA inula herb) (STV 1.0 0.9091)) +(: cnet_isa_eb4950995b (IsA inulin polysaccharide) (STV 1.0 0.9091)) +(: cnet_isa_834ef8be60 (IsA inutility quality) (STV 1.0 0.9091)) +(: cnet_isa_9a671ce199 (IsA invader intruder) (STV 1.0 0.9091)) +(: cnet_isa_7851777081 (IsA invagination organic_process) (STV 1.0 0.9091)) +(: cnet_isa_b69414182f (IsA invagination condition) (STV 1.0 0.9091)) +(: cnet_isa_9959d5ba44 (IsA invalid sick_person) (STV 1.0 0.9091)) +(: cnet_isa_6475e40eff (IsA invalidator official) (STV 1.0 0.9091)) +(: cnet_isa_22e28796f2 (IsA invalidism ill_health) (STV 1.0 0.9091)) +(: cnet_isa_7e732cb615 (IsA invalidity illogicality) (STV 1.0 0.9091)) +(: cnet_isa_1e81ff1b5b (IsA invaluableness value) (STV 1.0 0.9091)) +(: cnet_isa_f4edecc203 (IsA invariability changelessness) (STV 1.0 0.9091)) +(: cnet_isa_b29bf6863f (IsA invariance constancy) (STV 1.0 0.9091)) +(: cnet_isa_611fb883c2 (IsA invariant feature) (STV 1.0 0.9091)) +(: cnet_isa_33ae23ab61 (IsA invasion penetration) (STV 1.0 0.9091)) +(: cnet_isa_e58189dfdf (IsA invasion entrance) (STV 1.0 0.9091)) +(: cnet_isa_10bbf5bda7 (IsA invasion spread) (STV 1.0 0.9091)) +(: cnet_isa_ec0fc69047 (IsA invasion_of_privacy tort) (STV 1.0 0.9091)) +(: cnet_isa_ae75068afc (IsA invention creating_by_mental_act) (STV 1.0 0.9091)) +(: cnet_isa_05e9fb4370 (IsA invention creation) (STV 1.0 0.9091)) +(: cnet_isa_773d78bd31 (IsA invention creativity) (STV 1.0 0.9091)) +(: cnet_isa_887933cf63 (IsA inventiveness creativity) (STV 1.0 0.9091)) +(: cnet_isa_f6dd4cc754 (IsA inventor creator) (STV 1.0 0.9091)) +(: cnet_isa_0b2339b368 (IsA inventory register) (STV 1.0 0.9091)) +(: cnet_isa_95ead0793f (IsA inventory listing) (STV 1.0 0.9091)) +(: cnet_isa_9f105c030d (IsA inventory list) (STV 1.0 0.9091)) +(: cnet_isa_e23af8f332 (IsA inventory_accounting accountancy) (STV 1.0 0.9091)) +(: cnet_isa_8ce5421b2d (IsA inventory_control internal_control) (STV 1.0 0.9091)) +(: cnet_isa_e4155f061a (IsA inventory_item item) (STV 1.0 0.9091)) +(: cnet_isa_126b8b3cae (IsA inverse opposition) (STV 1.0 0.9091)) +(: cnet_isa_860c3df485 (IsA inverse_cosecant trigonometric_function) (STV 1.0 0.9091)) +(: cnet_isa_1084bf77fb (IsA inverse_cosine trigonometric_function) (STV 1.0 0.9091)) +(: cnet_isa_3667b621d3 (IsA inverse_cotangent trigonometric_function) (STV 1.0 0.9091)) +(: cnet_isa_31da7b2a9e (IsA inverse_function mapping) (STV 1.0 0.9091)) +(: cnet_isa_a017c66dda (IsA inverse_secant trigonometric_function) (STV 1.0 0.9091)) +(: cnet_isa_f791302563 (IsA inverse_sine trigonometric_function) (STV 1.0 0.9091)) +(: cnet_isa_abe889e074 (IsA inverse_tangent trigonometric_function) (STV 1.0 0.9091)) +(: cnet_isa_16ed5a2aeb (IsA inversion homosexuality) (STV 1.0 0.9091)) +(: cnet_isa_e82b37579e (IsA inversion motion) (STV 1.0 0.9091)) +(: cnet_isa_f5d2e56df3 (IsA inversion variation) (STV 1.0 0.9091)) +(: cnet_isa_d0f322ce84 (IsA inversion mutation) (STV 1.0 0.9091)) +(: cnet_isa_3591919de5 (IsA inversion atmospheric_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_99dc796608 (IsA inversion chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_8f4a92ec1f (IsA inversion abnormality) (STV 1.0 0.9091)) +(: cnet_isa_7f5c2fcd7c (IsA invert_sugar carbohydrate) (STV 1.0 0.9091)) +(: cnet_isa_1f0c2e2a4d (IsA invertase disaccharidase) (STV 1.0 0.9091)) +(: cnet_isa_10b4ece2e2 (IsA invertebrate animal) (STV 1.0 0.9091)) +(: cnet_isa_039687150d (IsA inverted_hang hang) (STV 1.0 0.9091)) +(: cnet_isa_ba8e936fa5 (IsA inverted_pleat pleat) (STV 1.0 0.9091)) +(: cnet_isa_5b9cdd7e31 (IsA inverter electrical_converter) (STV 1.0 0.9091)) +(: cnet_isa_f9433723ed (IsA investigation work) (STV 1.0 0.9091)) +(: cnet_isa_be7657d0ee (IsA investigator expert) (STV 1.0 0.9091)) +(: cnet_isa_3c8cbd56a7 (IsA investing finance) (STV 1.0 0.9091)) +(: cnet_isa_85fc9ed8c1 (IsA investment dressing) (STV 1.0 0.9091)) +(: cnet_isa_1bbbcbd5ca (IsA investment promotion) (STV 1.0 0.9091)) +(: cnet_isa_5b62cce06f (IsA investment skin) (STV 1.0 0.9091)) +(: cnet_isa_d47023e763 (IsA investment committedness) (STV 1.0 0.9091)) +(: cnet_isa_a09bb6367a (IsA investment asset) (STV 1.0 0.9091)) +(: cnet_isa_3a04f05cdc (IsA investment_adviser adviser) (STV 1.0 0.9091)) +(: cnet_isa_0559cff8e2 (IsA investment_banker agent) (STV 1.0 0.9091)) +(: cnet_isa_e904e075a7 (IsA investment_company nondepository_financial_institution) (STV 1.0 0.9091)) +(: cnet_isa_c729b2c055 (IsA investment_letter letter_of_intent) (STV 1.0 0.9091)) +(: cnet_isa_21df1af610 (IsA investor capitalist) (STV 1.0 0.9091)) +(: cnet_isa_9e64b088b0 (IsA investor_club club) (STV 1.0 0.9091)) +(: cnet_isa_de4a09a659 (IsA invigilation supervision) (STV 1.0 0.9091)) +(: cnet_isa_13538f00ec (IsA invigilator proctor) (STV 1.0 0.9091)) +(: cnet_isa_e70432acd5 (IsA invisibility physical_property) (STV 1.0 0.9091)) +(: cnet_isa_3a3ab3fd39 (IsA invisible_balance balance) (STV 1.0 0.9091)) +(: cnet_isa_26b5cde2c1 (IsA invitation allure) (STV 1.0 0.9091)) +(: cnet_isa_2fedb24805 (IsA invitation letter) (STV 1.0 0.9091)) +(: cnet_isa_e99c2996c6 (IsA invitation request) (STV 1.0 0.9091)) +(: cnet_isa_971ce76e85 (IsA invite invitation) (STV 1.0 0.9091)) +(: cnet_isa_908e055287 (IsA invocation implementation) (STV 1.0 0.9091)) +(: cnet_isa_325118e756 (IsA invocation incantation) (STV 1.0 0.9091)) +(: cnet_isa_d5e7c8ab58 (IsA invocation prayer) (STV 1.0 0.9091)) +(: cnet_isa_b85ca9e27e (IsA involucre bract) (STV 1.0 0.9091)) +(: cnet_isa_4ab72f4538 (IsA involution change_of_shape) (STV 1.0 0.9091)) +(: cnet_isa_64aab7880f (IsA involution construction) (STV 1.0 0.9091)) +(: cnet_isa_585e8bebbf (IsA involution organic_process) (STV 1.0 0.9091)) +(: cnet_isa_143681ed22 (IsA involutional_depression major_depressive_episode) (STV 1.0 0.9091)) +(: cnet_isa_703cf30dec (IsA involvement connection) (STV 1.0 0.9091)) +(: cnet_isa_a0995473e9 (IsA invulnerability strength) (STV 1.0 0.9091)) +(: cnet_isa_b32e858f94 (IsA invulnerability safety) (STV 1.0 0.9091)) +(: cnet_isa_f4d7066b4c (IsA inwardness introversion) (STV 1.0 0.9091)) +(: cnet_isa_a01095705c (IsA inwardness position) (STV 1.0 0.9091)) +(: cnet_isa_69b484bed8 (IsA inwardness cognitive_state) (STV 1.0 0.9091)) +(: cnet_isa_7dec499863 (IsA io_moth saturniid) (STV 1.0 0.9091)) +(: cnet_isa_2b885385e3 (IsA iodic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_82c61aef98 (IsA iodide halide) (STV 1.0 0.9091)) +(: cnet_isa_fa89ed3e85 (IsA iodination chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_026be2be3c (IsA iodine bluish_black_lustrous_solid) (STV 1.0 0.9091)) +(: cnet_isa_f85fa65d53 (IsA iodine chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_e1fce37139 (IsA iodine halogen) (STV 1.0 0.9091)) +(: cnet_isa_522e89c81a (IsA iodine_125 iodine) (STV 1.0 0.9091)) +(: cnet_isa_84072201e1 (IsA iodine_125 radioisotope) (STV 1.0 0.9091)) +(: cnet_isa_b11444c1c2 (IsA iodine_131 iodine) (STV 1.0 0.9091)) +(: cnet_isa_d44e014b67 (IsA iodine_131 radioisotope) (STV 1.0 0.9091)) +(: cnet_isa_1420683be2 (IsA iodoamino_acid amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_91f656c5e2 (IsA iodochlorhydroxyquin antifungal) (STV 1.0 0.9091)) +(: cnet_isa_195b688cd1 (IsA iodocompound compound) (STV 1.0 0.9091)) +(: cnet_isa_60655d6f82 (IsA iodoform antiseptic) (STV 1.0 0.9091)) +(: cnet_isa_f97509743a (IsA iodoform haloform) (STV 1.0 0.9091)) +(: cnet_isa_0f44a121d1 (IsA iodoprotein protein) (STV 1.0 0.9091)) +(: cnet_isa_f89517cfff (IsA iodopsin photopigment) (STV 1.0 0.9091)) +(: cnet_isa_5d8174af7e (IsA iodothyronine iodoamino_acid) (STV 1.0 0.9091)) +(: cnet_isa_7b0befd1eb (IsA iodotyrosine iodoamino_acid) (STV 1.0 0.9091)) +(: cnet_isa_4ea7c8db67 (IsA ion particle) (STV 1.0 0.9091)) +(: cnet_isa_d2ae2bd066 (IsA ion_beam particle_beam) (STV 1.0 0.9091)) +(: cnet_isa_92d0d80d1d (IsA ion_engine reaction_propulsion_engine) (STV 1.0 0.9091)) +(: cnet_isa_5b11fda328 (IsA ion_exchange natural_process) (STV 1.0 0.9091)) +(: cnet_isa_01f9653194 (IsA ion_pump air_pump) (STV 1.0 0.9091)) +(: cnet_isa_022c73f1b9 (IsA ionian citizenry) (STV 1.0 0.9091)) +(: cnet_isa_6cce75b3cf (IsA ionian hellene) (STV 1.0 0.9091)) +(: cnet_isa_dbe1eba07e (IsA ionic ancient_greek) (STV 1.0 0.9091)) +(: cnet_isa_f452484542 (IsA ionic_bond chemical_bond) (STV 1.0 0.9091)) +(: cnet_isa_1dc5eff759 (IsA ionic_charge constant) (STV 1.0 0.9091)) +(: cnet_isa_657105e534 (IsA ionic_order order) (STV 1.0 0.9091)) +(: cnet_isa_2aba6606ce (IsA ionization natural_process) (STV 1.0 0.9091)) +(: cnet_isa_578c74b7d9 (IsA ionization condition) (STV 1.0 0.9091)) +(: cnet_isa_6c31bf73e5 (IsA ionization_chamber measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_dd5bba834b (IsA ionizing_radiation radiation) (STV 1.0 0.9091)) +(: cnet_isa_18fa01fd02 (IsA ionosphere region) (STV 1.0 0.9091)) +(: cnet_isa_b49fb4a37b (IsA ionospheric_wave sky_wave) (STV 1.0 0.9091)) +(: cnet_isa_7f969aa4ca (IsA iontophoresis therapy) (STV 1.0 0.9091)) +(: cnet_isa_73d56422b2 (IsA iota letter) (STV 1.0 0.9091)) +(: cnet_isa_207c6eba54 (IsA iou note) (STV 1.0 0.9091)) +(: cnet_isa_c765a98fc0 (IsA iowa chiwere) (STV 1.0 0.9091)) +(: cnet_isa_3933656b1d (IsA iowa_crab wild_apple) (STV 1.0 0.9091)) +(: cnet_isa_5b4dcd8267 (IsA iowan american) (STV 1.0 0.9091)) +(: cnet_isa_6c3503ebbe (IsA ioway siouan) (STV 1.0 0.9091)) +(: cnet_isa_5776829092 (IsA ip protocol) (STV 1.0 0.9454)) +(: cnet_isa_6fa647dcf3 (IsA ipecac emetic) (STV 1.0 0.9091)) +(: cnet_isa_c5d93073b5 (IsA ipod mp3_player) (STV 1.0 0.9572)) +(: cnet_isa_eb0009a573 (IsA ipod stereo) (STV 1.0 0.9091)) +(: cnet_isa_e497dec2f9 (IsA ipomoea dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c785787d86 (IsA iproclozide monoamine_oxidase_inhibitor) (STV 1.0 0.9091)) +(: cnet_isa_84158f9009 (IsA ipse_dixit assertion) (STV 1.0 0.9091)) +(: cnet_isa_62fbc23ab0 (IsA iraki asiatic) (STV 1.0 0.9091)) +(: cnet_isa_e161b4d811 (IsA iranian indo_iranian) (STV 1.0 0.9091)) +(: cnet_isa_fc6f2a6cb5 (IsA iranian asiatic) (STV 1.0 0.9091)) +(: cnet_isa_fa3f15f5cc (IsA iranian_dinar iranian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_a1411f84d1 (IsA iranian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_cd1eb562d8 (IsA iranian_rial iranian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_d1be9f0fa3 (IsA iraq country) (STV 1.0 0.9572)) +(: cnet_isa_936c1cba9c (IsA iraq country_in_middle_east) (STV 1.0 0.9339)) +(: cnet_isa_c3ec769659 (IsA iraq middle_east_country) (STV 1.0 0.9091)) +(: cnet_isa_5cce4d14e3 (IsA iraqi_dinar iraqi_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_c7b56ddf41 (IsA iraqi_extremist agent_non_geographical) (STV 1.0 0.9091)) +(: cnet_isa_10992a9a14 (IsA iraqi_extremist organization) (STV 1.0 0.9091)) +(: cnet_isa_febafbbc4e (IsA iraqi_intelligence_service international_intelligence_agency) (STV 1.0 0.9091)) +(: cnet_isa_05f900ff0d (IsA iraqi_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_06dcadcd7b (IsA iraqi_national_congress opposition) (STV 1.0 0.9091)) +(: cnet_isa_080f6be781 (IsA irascibility bad_temper) (STV 1.0 0.9091)) +(: cnet_isa_b1922a881f (IsA ireland country) (STV 1.0 0.9572)) +(: cnet_isa_13a2d74674 (IsA ireland island) (STV 1.0 0.9091)) +(: cnet_isa_271e5fd289 (IsA irelander european) (STV 1.0 0.9091)) +(: cnet_isa_c7466782dc (IsA irena bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_12e3baa787 (IsA irenidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_e05c2a787a (IsA iresine caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_daaf265829 (IsA iridaceae liliid_monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_8d96871858 (IsA iridaceous_plant bulbous_plant) (STV 1.0 0.9091)) +(: cnet_isa_e51367d2c6 (IsA iridectomy eye_operation) (STV 1.0 0.9091)) +(: cnet_isa_2c0645329e (IsA iridium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_c373669d80 (IsA iridium_192 solid) (STV 1.0 0.9091)) +(: cnet_isa_6e7070c7dd (IsA iridocyclitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_264e3bdf7e (IsA iridokeratitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_1e46b82b8e (IsA iridoncus swelling) (STV 1.0 0.9091)) +(: cnet_isa_f3f2c31f97 (IsA iridoprocne bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_aaddac618a (IsA iridotomy eye_operation) (STV 1.0 0.9091)) +(: cnet_isa_3c30d6b5ab (IsA iris flower) (STV 1.0 0.9572)) +(: cnet_isa_b1cce20e62 (IsA iris flower_and_flower_bloom) (STV 1.0 0.9091)) +(: cnet_isa_018872b25d (IsA iris diaphragm) (STV 1.0 0.9091)) +(: cnet_isa_3d7ca0b701 (IsA iris membrane) (STV 1.0 0.9091)) +(: cnet_isa_9bf0524440 (IsA iris iridaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_ef46d1773a (IsA iris_scanning biometric_identification) (STV 1.0 0.9091)) +(: cnet_isa_4cebd6d7b8 (IsA irish gaelic) (STV 1.0 0.9091)) +(: cnet_isa_850ff70654 (IsA irish whiskey) (STV 1.0 0.9091)) +(: cnet_isa_d4224a9af6 (IsA irish_breakfast tea) (STV 1.0 0.9091)) +(: cnet_isa_8fa6c402e7 (IsA irish_coffee coffee) (STV 1.0 0.9091)) +(: cnet_isa_3f0dea35fa (IsA irish_famine famine) (STV 1.0 0.9091)) +(: cnet_isa_c8e27642b3 (IsA irish_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_63cbb96bb8 (IsA irish_moss red_algae) (STV 1.0 0.9091)) +(: cnet_isa_a61a6d392e (IsA irish_people nation) (STV 1.0 0.9091)) +(: cnet_isa_44a431229e (IsA irish_pound irish_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_19ce287b4d (IsA irish_setter dog) (STV 1.0 0.9454)) +(: cnet_isa_634e30431d (IsA irish_setter setter) (STV 1.0 0.9091)) +(: cnet_isa_d574c6cb34 (IsA irish_soda_bread quick_bread) (STV 1.0 0.9091)) +(: cnet_isa_f19bb89b0d (IsA irish_stew stew) (STV 1.0 0.9091)) +(: cnet_isa_6f66b46a0d (IsA irish_terrier terrier) (STV 1.0 0.9091)) +(: cnet_isa_240ce1e5a1 (IsA irish_water_spaniel water_spaniel) (STV 1.0 0.9091)) +(: cnet_isa_632408ffd9 (IsA irish_wolfhound wolfhound) (STV 1.0 0.9091)) +(: cnet_isa_5e18492954 (IsA irishman irelander) (STV 1.0 0.9091)) +(: cnet_isa_3fae0f64bc (IsA irishwoman irelander) (STV 1.0 0.9091)) +(: cnet_isa_60618eb56c (IsA iritis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_8f6c86c5c4 (IsA iron element) (STV 1.0 0.9454)) +(: cnet_isa_dd9acdd727 (IsA iron metal) (STV 1.0 0.9719)) +(: cnet_isa_2c29cd1dc6 (IsA iron golf_club) (STV 1.0 0.9091)) +(: cnet_isa_b6d335e1da (IsA iron home_appliance) (STV 1.0 0.9091)) +(: cnet_isa_d4ad2d5d04 (IsA iron implement) (STV 1.0 0.9091)) +(: cnet_isa_a17087b744 (IsA iron shackle) (STV 1.0 0.9091)) +(: cnet_isa_38e0011d89 (IsA iron metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_2c6bd6843a (IsA iron_age time_period) (STV 1.0 0.9091)) +(: cnet_isa_e7eb29e8a4 (IsA iron_blue gray) (STV 1.0 0.9091)) +(: cnet_isa_d105c3b6aa (IsA iron_blue pigment) (STV 1.0 0.9091)) +(: cnet_isa_f191ce28d0 (IsA iron_cage cage) (STV 1.0 0.9091)) +(: cnet_isa_176789dbef (IsA iron_curtain ideological_barrier) (STV 1.0 0.9091)) +(: cnet_isa_392c060764 (IsA iron_deficiency_anemia anemia) (STV 1.0 0.9091)) +(: cnet_isa_9ca22a56be (IsA iron_disulfide sulfide) (STV 1.0 0.9091)) +(: cnet_isa_88a8d31d62 (IsA iron_filing metal_filing) (STV 1.0 0.9091)) +(: cnet_isa_bbe9363f69 (IsA iron_fist control) (STV 1.0 0.9091)) +(: cnet_isa_a111df23da (IsA iron_foundry foundry) (STV 1.0 0.9091)) +(: cnet_isa_209c890e3f (IsA iron_gray gray) (STV 1.0 0.9091)) +(: cnet_isa_0aa8eaa36d (IsA iron_horse locomotive) (STV 1.0 0.9091)) +(: cnet_isa_c3d1f6aaf8 (IsA iron_lung respirator) (STV 1.0 0.9091)) +(: cnet_isa_4aa249e61a (IsA iron_maiden instrument_of_torture) (STV 1.0 0.9091)) +(: cnet_isa_57c14c8a3f (IsA iron_man man) (STV 1.0 0.9091)) +(: cnet_isa_b487b6d49f (IsA iron_mold stain) (STV 1.0 0.9091)) +(: cnet_isa_dd876965e9 (IsA iron_ore ore) (STV 1.0 0.9091)) +(: cnet_isa_501451cd8e (IsA iron_perchloride perchloride) (STV 1.0 0.9091)) +(: cnet_isa_de08f4560d (IsA iron_putty cement) (STV 1.0 0.9091)) +(: cnet_isa_54165a53ef (IsA iron_trap trap) (STV 1.0 0.9091)) +(: cnet_isa_ca852666f0 (IsA iron_tree angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_2eca7f9ecb (IsA ironclad warship) (STV 1.0 0.9091)) +(: cnet_isa_d421fe7674 (IsA ironing work) (STV 1.0 0.9091)) +(: cnet_isa_273934113f (IsA ironing garment) (STV 1.0 0.9091)) +(: cnet_isa_8a4fd29698 (IsA ironing white_good) (STV 1.0 0.9091)) +(: cnet_isa_682a58ff3e (IsA ironing_board board) (STV 1.0 0.9091)) +(: cnet_isa_b801b2d285 (IsA ironmonger trader) (STV 1.0 0.9091)) +(: cnet_isa_9a1df1bbae (IsA ironmongery merchandise) (STV 1.0 0.9091)) +(: cnet_isa_86e223aa40 (IsA ironside man) (STV 1.0 0.9091)) +(: cnet_isa_c35449e049 (IsA ironweed herb) (STV 1.0 0.9091)) +(: cnet_isa_18e9e27bd7 (IsA ironwood wood) (STV 1.0 0.9091)) +(: cnet_isa_1c4d3b6b05 (IsA ironwork work) (STV 1.0 0.9091)) +(: cnet_isa_28c5875504 (IsA ironworker maker) (STV 1.0 0.9091)) +(: cnet_isa_db2ce53544 (IsA ironwork workplace) (STV 1.0 0.9091)) +(: cnet_isa_d11336e5e9 (IsA irony incongruity) (STV 1.0 0.9091)) +(: cnet_isa_0e5006ec34 (IsA irony trope) (STV 1.0 0.9091)) +(: cnet_isa_17535b9a59 (IsA iroquoian amerind) (STV 1.0 0.9091)) +(: cnet_isa_89ef287f87 (IsA iroquois native_american) (STV 1.0 0.9091)) +(: cnet_isa_49b85d7c17 (IsA iroquois_league league) (STV 1.0 0.9091)) +(: cnet_isa_be7e756568 (IsA irradiation generalization) (STV 1.0 0.9091)) +(: cnet_isa_f1e4b1d1c1 (IsA irradiation illusion) (STV 1.0 0.9091)) +(: cnet_isa_cefb3901f9 (IsA irradiation spread) (STV 1.0 0.9091)) +(: cnet_isa_8dc94b6ee5 (IsA irradiation condition) (STV 1.0 0.9091)) +(: cnet_isa_46d8768931 (IsA irrational_hostility bia) (STV 1.0 0.9091)) +(: cnet_isa_146d0384be (IsA irrational_impulse irrational_motive) (STV 1.0 0.9091)) +(: cnet_isa_b08d40b4c0 (IsA irrational_motive motivation) (STV 1.0 0.9091)) +(: cnet_isa_19bc4da42b (IsA irrational_number real_number) (STV 1.0 0.9091)) +(: cnet_isa_48dab53dcb (IsA irrationality insanity) (STV 1.0 0.9091)) +(: cnet_isa_7d6ce670b5 (IsA irredenta region) (STV 1.0 0.9091)) +(: cnet_isa_229bcd8e66 (IsA irredentism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_50e1daf6b6 (IsA irredentist advocate) (STV 1.0 0.9091)) +(: cnet_isa_0701760947 (IsA irregular merchandise) (STV 1.0 0.9091)) +(: cnet_isa_2471d2016c (IsA irregularity asymmetry) (STV 1.0 0.9091)) +(: cnet_isa_772eb66e1d (IsA irregularity quality) (STV 1.0 0.9091)) +(: cnet_isa_1767c8fae6 (IsA irrelevance unconnectedness) (STV 1.0 0.9091)) +(: cnet_isa_8bda988eb7 (IsA irreligionist disbeliever) (STV 1.0 0.9091)) +(: cnet_isa_be30d53a1c (IsA irreligiousness impiety) (STV 1.0 0.9091)) +(: cnet_isa_50263a3d37 (IsA irreplaceableness unexchangeability) (STV 1.0 0.9091)) +(: cnet_isa_f3e1c1125a (IsA irrepressibility liveliness) (STV 1.0 0.9091)) +(: cnet_isa_6da2ba2052 (IsA irreproducibility undependability) (STV 1.0 0.9091)) +(: cnet_isa_418e4f352e (IsA irresistibility power) (STV 1.0 0.9091)) +(: cnet_isa_e31ffe9854 (IsA irresoluteness trait) (STV 1.0 0.9091)) +(: cnet_isa_1e4501ef3c (IsA irresponsibility untrustworthiness) (STV 1.0 0.9091)) +(: cnet_isa_d8559bb088 (IsA irreverence evil) (STV 1.0 0.9091)) +(: cnet_isa_834e5db7cf (IsA irreverence attitude) (STV 1.0 0.9091)) +(: cnet_isa_1b633fd168 (IsA irreversibility changelessness) (STV 1.0 0.9091)) +(: cnet_isa_aab317b665 (IsA irreversible_process process) (STV 1.0 0.9091)) +(: cnet_isa_e53015dbda (IsA irrigation provision) (STV 1.0 0.9091)) +(: cnet_isa_0ccd8f0b2e (IsA irrigation medical_care) (STV 1.0 0.9091)) +(: cnet_isa_e26e5c8098 (IsA irrigation_ditch ditch) (STV 1.0 0.9091)) +(: cnet_isa_820dbd0273 (IsA irritability ill_humor) (STV 1.0 0.9091)) +(: cnet_isa_90892de47c (IsA irritable_bowel_syndrome colitis) (STV 1.0 0.9091)) +(: cnet_isa_72f33485b2 (IsA irritant annoyance) (STV 1.0 0.9091)) +(: cnet_isa_99efa3fc5b (IsA irritation abnormality) (STV 1.0 0.9091)) +(: cnet_isa_693276da65 (IsA irritation sensitization) (STV 1.0 0.9091)) +(: cnet_isa_b0dbe48a58 (IsA irritation psychological_state) (STV 1.0 0.9091)) +(: cnet_isa_f9e0b1e04f (IsA irruption entrance) (STV 1.0 0.9091)) +(: cnet_isa_33262022c3 (IsA irruption population_growth) (STV 1.0 0.9091)) +(: cnet_isa_d024d4905b (IsA irula south_dravidian) (STV 1.0 0.9091)) +(: cnet_isa_5b07903323 (IsA irvingia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2f28a0a4f9 (IsA isa relation) (STV 1.0 0.9091)) +(: cnet_isa_bdc433d9b1 (IsA isatis dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_22bd0ab55b (IsA ischemia anemia) (STV 1.0 0.9091)) +(: cnet_isa_6fa70cecb8 (IsA ischemic_anoxia anoxia) (STV 1.0 0.9091)) +(: cnet_isa_a85cd554f6 (IsA ischemic_hypoxia hypoxia) (STV 1.0 0.9091)) +(: cnet_isa_0d055db063 (IsA ischemic_stroke ischemia) (STV 1.0 0.9091)) +(: cnet_isa_03c83cc5f1 (IsA ischemic_stroke stroke) (STV 1.0 0.9091)) +(: cnet_isa_500c5c0b7a (IsA ischigualastia reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_081e1f8a6f (IsA ischium bone) (STV 1.0 0.9091)) +(: cnet_isa_444fb49461 (IsA islam religion) (STV 1.0 0.9693)) +(: cnet_isa_0cc3dd177b (IsA islam monotheism) (STV 1.0 0.9091)) +(: cnet_isa_f86282e04d (IsA islam civilization) (STV 1.0 0.9091)) +(: cnet_isa_d193d4e3d8 (IsA islamic_calendar lunar_calendar) (STV 1.0 0.9091)) +(: cnet_isa_ac27d59aed (IsA islamic_calendar_month calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_675c38c959 (IsA islamism religious_movement) (STV 1.0 0.9091)) +(: cnet_isa_030b0c511a (IsA islamist moslem) (STV 1.0 0.9091)) +(: cnet_isa_30baf33508 (IsA islamist scholar) (STV 1.0 0.9091)) +(: cnet_isa_34099d67ac (IsA islamophobia bia) (STV 1.0 0.9091)) +(: cnet_isa_54190b5328 (IsA island body_of_land) (STV 1.0 0.9636)) +(: cnet_isa_801df94192 (IsA island completely) (STV 1.0 0.9091)) +(: cnet_isa_9d8d443e5f (IsA island land) (STV 1.0 0.9636)) +(: cnet_isa_14fdb3684a (IsA island land_mass) (STV 1.0 0.9636)) +(: cnet_isa_546dd05e17 (IsA island piece_of_land) (STV 1.0 0.9608)) +(: cnet_isa_e69e7e7ddb (IsA island small_body_of_land) (STV 1.0 0.9091)) +(: cnet_isa_4f8c2a80ee (IsA island small_land_mass) (STV 1.0 0.9091)) +(: cnet_isa_9fb8b73401 (IsA island zone) (STV 1.0 0.9091)) +(: cnet_isa_6414f53582 (IsA island_of_guernsey channel_island) (STV 1.0 0.9091)) +(: cnet_isa_74f5c5eebb (IsA island_of_jersey channel_island) (STV 1.0 0.9091)) +(: cnet_isa_dea24e7a1d (IsA islander inhabitant) (STV 1.0 0.9091)) +(: cnet_isa_ff6e4d4f7d (IsA island_of_langerhan endocrine_gland) (STV 1.0 0.9091)) +(: cnet_isa_097d3a14aa (IsA ismailian disciple) (STV 1.0 0.9091)) +(: cnet_isa_a3016976ef (IsA ismailism shiism) (STV 1.0 0.9091)) +(: cnet_isa_987b78914f (IsA isoagglutination agglutination) (STV 1.0 0.9091)) +(: cnet_isa_a9a8cd8aa2 (IsA isoagglutinin agglutinin) (STV 1.0 0.9091)) +(: cnet_isa_22741ff3f7 (IsA isoagglutinogen agglutinogen) (STV 1.0 0.9091)) +(: cnet_isa_d5f50a1333 (IsA isoantibody antibody) (STV 1.0 0.9091)) +(: cnet_isa_a3ef32477a (IsA isobar isogram) (STV 1.0 0.9091)) +(: cnet_isa_ccdfe15e9b (IsA isobutylene butylene) (STV 1.0 0.9091)) +(: cnet_isa_318913eefb (IsA isochrone isogram) (STV 1.0 0.9091)) +(: cnet_isa_30a1e4abd3 (IsA isoclinic_line isogram) (STV 1.0 0.9091)) +(: cnet_isa_33b60ca746 (IsA isocyanate salt) (STV 1.0 0.9091)) +(: cnet_isa_ad63724c43 (IsA isocyanic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_02c8cd1aa3 (IsA isoetaceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_8c4b5de942 (IsA isoetale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_7c245950bd (IsA isoete fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_ff25b59efe (IsA isoflurane inhalation_anesthetic) (STV 1.0 0.9091)) +(: cnet_isa_ea0c397db1 (IsA isogamete gamete) (STV 1.0 0.9091)) +(: cnet_isa_abd63f49ed (IsA isogamy sexual_reproduction) (STV 1.0 0.9091)) +(: cnet_isa_085f8306b5 (IsA isogon polygon) (STV 1.0 0.9091)) +(: cnet_isa_42a4810801 (IsA isogonic_line line) (STV 1.0 0.9091)) +(: cnet_isa_5859288937 (IsA isogram line) (STV 1.0 0.9091)) +(: cnet_isa_0fbcd8c152 (IsA isohel isogram) (STV 1.0 0.9091)) +(: cnet_isa_34cfc95bbc (IsA isolation non_engagement) (STV 1.0 0.9091)) +(: cnet_isa_98e969f523 (IsA isolation separation) (STV 1.0 0.9091)) +(: cnet_isa_f6a4a434b2 (IsA isolation alienation) (STV 1.0 0.9091)) +(: cnet_isa_7be86cea86 (IsA isolation defense_mechanism) (STV 1.0 0.9091)) +(: cnet_isa_6c1f06e7ae (IsA isolationism foreign_policy) (STV 1.0 0.9091)) +(: cnet_isa_0247437902 (IsA isolationist advocate) (STV 1.0 0.9091)) +(: cnet_isa_187c669ad2 (IsA isoleucine essential_amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_1a024253fd (IsA isomer compound) (STV 1.0 0.9091)) +(: cnet_isa_9a8619eaad (IsA isomerase enzyme) (STV 1.0 0.9091)) +(: cnet_isa_ad679144b0 (IsA isomerism state) (STV 1.0 0.9091)) +(: cnet_isa_a2f5cd83b4 (IsA isomerization conversion) (STV 1.0 0.9091)) +(: cnet_isa_1a6bd6e148 (IsA isometric_line line) (STV 1.0 0.9091)) +(: cnet_isa_13787ec7e6 (IsA isometric exercise) (STV 1.0 0.9091)) +(: cnet_isa_5f9cb8b5d4 (IsA isometropia eye_condition) (STV 1.0 0.9091)) +(: cnet_isa_e69a77bca4 (IsA isometry elevation) (STV 1.0 0.9091)) +(: cnet_isa_b9b05cfe75 (IsA isometry equality) (STV 1.0 0.9091)) +(: cnet_isa_1cd21214cf (IsA isometry growth_rate) (STV 1.0 0.9091)) +(: cnet_isa_0e5991e814 (IsA isometry mapping) (STV 1.0 0.9091)) +(: cnet_isa_0845daed0f (IsA isomorphism similarity) (STV 1.0 0.9091)) +(: cnet_isa_fd832d4579 (IsA isopod malacostracan_crustacean) (STV 1.0 0.9091)) +(: cnet_isa_32f1c87d9b (IsA isopoda animal_order) (STV 1.0 0.9091)) +(: cnet_isa_459ae004de (IsA isopropyl_alcohol alcohol) (STV 1.0 0.9091)) +(: cnet_isa_c370eca98d (IsA isoptera animal_order) (STV 1.0 0.9091)) +(: cnet_isa_2c52b333ab (IsA isopyrum magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9363b18662 (IsA isoscele_triangle triangle) (STV 1.0 0.9091)) +(: cnet_isa_f091d8106b (IsA isospondyli animal_order) (STV 1.0 0.9091)) +(: cnet_isa_8f36d619ac (IsA isostasy equilibrium) (STV 1.0 0.9091)) +(: cnet_isa_ff56e4da4c (IsA isotherm isogram) (STV 1.0 0.9091)) +(: cnet_isa_cbe2c423c7 (IsA isothiocyanate chemical_irritant) (STV 1.0 0.9091)) +(: cnet_isa_e909a8261e (IsA isotonic_exercise exercise) (STV 1.0 0.9091)) +(: cnet_isa_94530abf53 (IsA isotonic_solution solution) (STV 1.0 0.9091)) +(: cnet_isa_3a36beab42 (IsA isotope atom) (STV 1.0 0.9091)) +(: cnet_isa_b026fdf7f0 (IsA isotropy property) (STV 1.0 0.9091)) +(: cnet_isa_61f55f4860 (IsA israel country) (STV 1.0 0.9339)) +(: cnet_isa_f7d37a5241 (IsA israel democracy) (STV 1.0 0.9339)) +(: cnet_isa_dad8acb8d5 (IsA israeli asiatic) (STV 1.0 0.9091)) +(: cnet_isa_ce7e5f948f (IsA israeli_defense_force military_unit) (STV 1.0 0.9091)) +(: cnet_isa_b1f7a15ef6 (IsA israeli_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_2da5872b94 (IsA israelite asiatic) (STV 1.0 0.9091)) +(: cnet_isa_8b2996b0fb (IsA israelite person) (STV 1.0 0.9091)) +(: cnet_isa_c3c4818949 (IsA issue printing) (STV 1.0 0.9091)) +(: cnet_isa_8e1507238c (IsA issue provision) (STV 1.0 0.9091)) +(: cnet_isa_4cb4d43d94 (IsA issue content) (STV 1.0 0.9091)) +(: cnet_isa_0fb541957c (IsA issue periodical) (STV 1.0 0.9091)) +(: cnet_isa_f0ed770598 (IsA issue store) (STV 1.0 0.9091)) +(: cnet_isa_706e67ce2e (IsA issuer institution) (STV 1.0 0.9091)) +(: cnet_isa_506dc38ccc (IsA isthmian_game agon) (STV 1.0 0.9091)) +(: cnet_isa_d21723b2db (IsA isthmus tissue) (STV 1.0 0.9091)) +(: cnet_isa_37e4b432b6 (IsA isthmus land) (STV 1.0 0.9091)) +(: cnet_isa_4593fc9bca (IsA istiophoridae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_83f438429b (IsA istiophorus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_f949081b3a (IsA isuridae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_13712cfdea (IsA isurus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_869712ebb2 (IsA itaconic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_803abb9d70 (IsA italian romance) (STV 1.0 0.9091)) +(: cnet_isa_259cf071f6 (IsA italian european) (STV 1.0 0.9091)) +(: cnet_isa_69bdab577e (IsA italian_bee honeybee) (STV 1.0 0.9091)) +(: cnet_isa_06163b99e4 (IsA italian_bread white_bread) (STV 1.0 0.9091)) +(: cnet_isa_7e47ae1def (IsA italian_cypress cypress) (STV 1.0 0.9091)) +(: cnet_isa_6bf43b0253 (IsA italian_dressing dressing) (STV 1.0 0.9091)) +(: cnet_isa_243473b342 (IsA italian_greyhound greyhound) (STV 1.0 0.9091)) +(: cnet_isa_5fad110c83 (IsA italian_honeysuckle honeysuckle) (STV 1.0 0.9091)) +(: cnet_isa_e37e0d5722 (IsA italian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_eac9386c9f (IsA italian_parsley parsley) (STV 1.0 0.9091)) +(: cnet_isa_43336a1034 (IsA italian_region state) (STV 1.0 0.9091)) +(: cnet_isa_e23afaa08c (IsA italian_ryegrass rye_grass) (STV 1.0 0.9091)) +(: cnet_isa_09c26a4159 (IsA italic font) (STV 1.0 0.9091)) +(: cnet_isa_daa03d156f (IsA italic indo_european) (STV 1.0 0.9091)) +(: cnet_isa_1053c82b1f (IsA italic longhand) (STV 1.0 0.9091)) +(: cnet_isa_b0f0f3d3b7 (IsA italy country) (STV 1.0 0.9454)) +(: cnet_isa_cb5445a876 (IsA italy country_in_europe) (STV 1.0 0.9091)) +(: cnet_isa_98b6936204 (IsA itch cutaneous_sensation) (STV 1.0 0.9091)) +(: cnet_isa_8ab0df2a9e (IsA itch_mite mite) (STV 1.0 0.9091)) +(: cnet_isa_2e898ee3e0 (IsA item whole) (STV 1.0 0.9091)) +(: cnet_isa_a0323516dd (IsA item part) (STV 1.0 0.9091)) +(: cnet_isa_0438d37432 (IsA iteration repetition) (STV 1.0 0.9091)) +(: cnet_isa_7e4b0e84ad (IsA iteration process) (STV 1.0 0.9091)) +(: cnet_isa_f93a84c993 (IsA iterative_aspect aspect) (STV 1.0 0.9091)) +(: cnet_isa_d7daa1deee (IsA ithiel_town architect) (STV 1.0 0.9091)) +(: cnet_isa_16680f4b99 (IsA itinerant laborer) (STV 1.0 0.9091)) +(: cnet_isa_fe79506ea7 (IsA itineration tour) (STV 1.0 0.9091)) +(: cnet_isa_e159cdebb9 (IsA ivory dentine) (STV 1.0 0.9091)) +(: cnet_isa_52286d6c23 (IsA ivory_black pigment) (STV 1.0 0.9091)) +(: cnet_isa_92a5775e01 (IsA ivory_coast_franc franc) (STV 1.0 0.9091)) +(: cnet_isa_fc529b2d69 (IsA ivory_gull gull) (STV 1.0 0.9091)) +(: cnet_isa_47a072ea48 (IsA ivory_nut seed) (STV 1.0 0.9091)) +(: cnet_isa_213d3dc1a5 (IsA ivory_palm feather_palm) (STV 1.0 0.9091)) +(: cnet_isa_37baa4093a (IsA ivory_tower cognitive_state) (STV 1.0 0.9091)) +(: cnet_isa_fa9c02a0fc (IsA ivory_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_9afcd52cf5 (IsA ivorybill woodpecker) (STV 1.0 0.9091)) +(: cnet_isa_f57c431fb7 (IsA ivy vine) (STV 1.0 0.9454)) +(: cnet_isa_cf6e6a8722 (IsA ivy_geranium geranium) (STV 1.0 0.9091)) +(: cnet_isa_69b95f0d26 (IsA ivy_league league) (STV 1.0 0.9091)) +(: cnet_isa_1adac5d512 (IsA ivy_leaguer alumnus) (STV 1.0 0.9091)) +(: cnet_isa_396cec2855 (IsA ivy_leaguer student) (STV 1.0 0.9091)) +(: cnet_isa_1148ef6dd8 (IsA ixia liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4ac843c0d2 (IsA ixobrychus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_4b72cd5f8f (IsA ixode arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_b512a476eb (IsA ixode_dammini hard_tick) (STV 1.0 0.9091)) +(: cnet_isa_6f830c13a0 (IsA ixode_dentatus hard_tick) (STV 1.0 0.9091)) +(: cnet_isa_fe4e68d244 (IsA ixode_neotomae hard_tick) (STV 1.0 0.9091)) +(: cnet_isa_d47dda04a7 (IsA ixode_pacificus hard_tick) (STV 1.0 0.9091)) +(: cnet_isa_729a68c2ad (IsA ixode_persulcatus hard_tick) (STV 1.0 0.9091)) +(: cnet_isa_04c06c9814 (IsA ixode_scapularis hard_tick) (STV 1.0 0.9091)) +(: cnet_isa_98833a3041 (IsA ixode_spinipalpis hard_tick) (STV 1.0 0.9091)) +(: cnet_isa_3d6f0c07c5 (IsA ixodidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_5cf7d6ed28 (IsA iyar jewish_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_bba94bcd0d (IsA izar overgarment) (STV 1.0 0.9091)) +(: cnet_isa_30724a8055 (IsA j letter) (STV 1.0 0.9091)) +(: cnet_isa_32123ff2c3 (IsA j_particle meson) (STV 1.0 0.9091)) +(: cnet_isa_2f71accff1 (IsA jab gesture) (STV 1.0 0.9091)) +(: cnet_isa_d51fa28ba6 (IsA jab punch) (STV 1.0 0.9091)) +(: cnet_isa_768790b712 (IsA jabber gibberish) (STV 1.0 0.9091)) +(: cnet_isa_c02d6e7362 (IsA jabberwocky nonsense) (STV 1.0 0.9091)) +(: cnet_isa_661d543f80 (IsA jabiru stork) (STV 1.0 0.9091)) +(: cnet_isa_0d9eb32e9f (IsA jabot frill) (STV 1.0 0.9091)) +(: cnet_isa_93ec1a812f (IsA jaboticaba edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_17bd1be5b2 (IsA jaboticaba fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_8a4b78363c (IsA jacamar piciform_bird) (STV 1.0 0.9091)) +(: cnet_isa_68f1f3592d (IsA jack boy_s_name) (STV 1.0 0.9091)) +(: cnet_isa_302b30e045 (IsA jack lifting_device) (STV 1.0 0.9572)) +(: cnet_isa_fc49ef06ce (IsA jack nickname_for_john) (STV 1.0 0.9091)) +(: cnet_isa_1f613b2699 (IsA jack ass) (STV 1.0 0.9091)) +(: cnet_isa_c72b4f8cd8 (IsA jack carangid_fish) (STV 1.0 0.9091)) +(: cnet_isa_fb96511421 (IsA jack ball) (STV 1.0 0.9091)) +(: cnet_isa_34193c88de (IsA jack electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_1651ada688 (IsA jack face_card) (STV 1.0 0.9091)) +(: cnet_isa_42849ea59d (IsA jack flag) (STV 1.0 0.9091)) +(: cnet_isa_173a2c99cb (IsA jack tool) (STV 1.0 0.9091)) +(: cnet_isa_ede5a6ff6e (IsA jack small_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_1ec165d60d (IsA jack_bean vine) (STV 1.0 0.9091)) +(: cnet_isa_2db3829852 (IsA jack_in_box plaything) (STV 1.0 0.9091)) +(: cnet_isa_ee8effef9a (IsA jack_in_pulpit arum) (STV 1.0 0.9091)) +(: cnet_isa_1dba53142a (IsA jack_o_lantern lantern) (STV 1.0 0.9091)) +(: cnet_isa_cd7b9a2bb0 (IsA jack_o_lantern_fungus agaric) (STV 1.0 0.9091)) +(: cnet_isa_3d3a7b77a7 (IsA jack_oak oak) (STV 1.0 0.9091)) +(: cnet_isa_c0e47e18a8 (IsA jack_of_all_trade adult) (STV 1.0 0.9091)) +(: cnet_isa_54c4c8b6f9 (IsA jack_pine pine) (STV 1.0 0.9091)) +(: cnet_isa_81136c6080 (IsA jack_plane plane) (STV 1.0 0.9091)) +(: cnet_isa_0f46137b68 (IsA jackal canine) (STV 1.0 0.9091)) +(: cnet_isa_c5a9d6315f (IsA jackass_bat vespertilian_bat) (STV 1.0 0.9091)) +(: cnet_isa_d54c074a66 (IsA jackass_penguin penguin) (STV 1.0 0.9091)) +(: cnet_isa_eacef43f2e (IsA jackdaw corvine_bird) (STV 1.0 0.9091)) +(: cnet_isa_9640a0f13b (IsA jacket coat) (STV 1.0 0.9091)) +(: cnet_isa_b0b5b7ec6b (IsA jacket shell) (STV 1.0 0.9091)) +(: cnet_isa_3c2e8474a6 (IsA jacket wrapping) (STV 1.0 0.9091)) +(: cnet_isa_134900cf69 (IsA jacket peel) (STV 1.0 0.9091)) +(: cnet_isa_c95f99ee20 (IsA jacket_potato baked_potato) (STV 1.0 0.9091)) +(: cnet_isa_9afd9aa9fc (IsA jackfruit edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_e63474b775 (IsA jackfruit fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_4dbfd65cea (IsA jacking_off masturbation) (STV 1.0 0.9091)) +(: cnet_isa_bf1a53b366 (IsA jackknife dive) (STV 1.0 0.9091)) +(: cnet_isa_59ff04f75c (IsA jackknife_fish drum) (STV 1.0 0.9091)) +(: cnet_isa_30364c85bf (IsA jacklight light) (STV 1.0 0.9091)) +(: cnet_isa_7037b21c09 (IsA jackpot prize) (STV 1.0 0.9091)) +(: cnet_isa_0fd50573dc (IsA jackrabbit hare) (STV 1.0 0.9091)) +(: cnet_isa_f6a462e792 (IsA jack traditional_children_s_game) (STV 1.0 0.9091)) +(: cnet_isa_3946989935 (IsA jack child_s_game) (STV 1.0 0.9091)) +(: cnet_isa_c06b074266 (IsA jack game_equipment) (STV 1.0 0.9091)) +(: cnet_isa_71615b6cfe (IsA jackscrew jack) (STV 1.0 0.9091)) +(: cnet_isa_4228613b4f (IsA jacksmelt silverside) (STV 1.0 0.9091)) +(: cnet_isa_01933149ba (IsA jacksnipe snipe) (STV 1.0 0.9091)) +(: cnet_isa_c378d8ad9e (IsA jacksonia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5bed491c02 (IsA jacksonian follower) (STV 1.0 0.9091)) +(: cnet_isa_50ea5efa48 (IsA jacksonian_epilepsy cortical_epilepsy) (STV 1.0 0.9091)) +(: cnet_isa_6ba0d49bf5 (IsA jackstraw strip) (STV 1.0 0.9091)) +(: cnet_isa_5c39ab085d (IsA jackstraw child_s_game) (STV 1.0 0.9091)) +(: cnet_isa_33fb7d6aae (IsA jacob_s_ladder polemonium) (STV 1.0 0.9091)) +(: cnet_isa_c2f3b131aa (IsA jacob_s_ladder ladder) (STV 1.0 0.9091)) +(: cnet_isa_cc7831bb8b (IsA jacob_s_rod asphodel) (STV 1.0 0.9091)) +(: cnet_isa_6ff17f7be7 (IsA jacob patriarch) (STV 1.0 0.9091)) +(: cnet_isa_4cee25cad2 (IsA jacobean englishman) (STV 1.0 0.9091)) +(: cnet_isa_37e44cf9d7 (IsA jacobean_lily amaryllis) (STV 1.0 0.9091)) +(: cnet_isa_4ea58a19e1 (IsA jacobin terrorist) (STV 1.0 0.9091)) +(: cnet_isa_3dbb3b7072 (IsA jacobinism radicalism) (STV 1.0 0.9091)) +(: cnet_isa_a5da011f54 (IsA jacobite supporter) (STV 1.0 0.9091)) +(: cnet_isa_adbe6a1681 (IsA jaconet fabric) (STV 1.0 0.9091)) +(: cnet_isa_3540e32b34 (IsA jacquard fabric) (STV 1.0 0.9091)) +(: cnet_isa_b0b4747353 (IsA jacquard_loom loom) (STV 1.0 0.9091)) +(: cnet_isa_bd18857519 (IsA jacquemier_s_sign symptom) (STV 1.0 0.9091)) +(: cnet_isa_c84dc8cdfc (IsA jacquinia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_50865a2fca (IsA jactitation lie) (STV 1.0 0.9091)) +(: cnet_isa_c3bfdaba7e (IsA jactitation restlessness) (STV 1.0 0.9091)) +(: cnet_isa_a3bfc95155 (IsA jaculus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_9ac1df908d (IsA jaculus_jaculus jerboa) (STV 1.0 0.9091)) +(: cnet_isa_8719d36d6a (IsA jade opaque_gem) (STV 1.0 0.9091)) +(: cnet_isa_aeb8904f96 (IsA jade_green green) (STV 1.0 0.9091)) +(: cnet_isa_f0731e9544 (IsA jade_vine liana) (STV 1.0 0.9091)) +(: cnet_isa_6f2f31f8b7 (IsA jadeite mineral) (STV 1.0 0.9091)) +(: cnet_isa_e8343a1752 (IsA jaeger coastal_diving_bird) (STV 1.0 0.9091)) +(: cnet_isa_d85512430c (IsA jaffa_orange sweet_orange) (STV 1.0 0.9091)) +(: cnet_isa_83b5d5a389 (IsA jafnea_semitosta discomycete) (STV 1.0 0.9091)) +(: cnet_isa_fcfed70a2b (IsA jag intemperance) (STV 1.0 0.9091)) +(: cnet_isa_eee2567d11 (IsA jag flap) (STV 1.0 0.9091)) +(: cnet_isa_9513cb3eec (IsA jag slit) (STV 1.0 0.9091)) +(: cnet_isa_7ffedee3a0 (IsA jag projection) (STV 1.0 0.9091)) +(: cnet_isa_56e82ac8e3 (IsA jaggedness unevenness) (STV 1.0 0.9091)) +(: cnet_isa_0fca0bdb51 (IsA jaggery carbohydrate) (STV 1.0 0.9091)) +(: cnet_isa_9f2efde651 (IsA jaguar big_cat) (STV 1.0 0.9091)) +(: cnet_isa_df77859341 (IsA jaguarundi wildcat) (STV 1.0 0.9091)) +(: cnet_isa_2312660c3f (IsA jai_alai court_game) (STV 1.0 0.9091)) +(: cnet_isa_2dd312111a (IsA jail correctional_institution) (STV 1.0 0.9091)) +(: cnet_isa_c74f639d41 (IsA jail_bird criminal) (STV 1.0 0.9091)) +(: cnet_isa_4a1e5d613a (IsA jail_delivery liberation) (STV 1.0 0.9091)) +(: cnet_isa_732786c7bf (IsA jainism religion) (STV 1.0 0.9091)) +(: cnet_isa_4df4e2658c (IsA jainism sect) (STV 1.0 0.9091)) +(: cnet_isa_bdac4141f7 (IsA jainist disciple) (STV 1.0 0.9091)) +(: cnet_isa_8e914760d1 (IsA jalapeno chili) (STV 1.0 0.9091)) +(: cnet_isa_0f319e4bc6 (IsA jalousie shutter) (STV 1.0 0.9091)) +(: cnet_isa_ffa042551f (IsA jam spread) (STV 1.0 0.9454)) +(: cnet_isa_17669adeb3 (IsA jam conserve) (STV 1.0 0.9091)) +(: cnet_isa_496886a826 (IsA jam_session musical_performance) (STV 1.0 0.9091)) +(: cnet_isa_4f3125e054 (IsA jamaica_dogwood tree) (STV 1.0 0.9091)) +(: cnet_isa_d9cde82edf (IsA jamaica_honeysuckle passionflower) (STV 1.0 0.9091)) +(: cnet_isa_48fef1d0c1 (IsA jamaica_quassia bitterwood_tree) (STV 1.0 0.9091)) +(: cnet_isa_8b8d6232e5 (IsA jamaica_quassia quassia) (STV 1.0 0.9091)) +(: cnet_isa_c70974bf96 (IsA jamaica_rum rum) (STV 1.0 0.9091)) +(: cnet_isa_4ebd4d3635 (IsA jamaican west_indian) (STV 1.0 0.9091)) +(: cnet_isa_f64597c15d (IsA jamaican_cherry tree) (STV 1.0 0.9091)) +(: cnet_isa_7410b5993a (IsA jamaican_dollar dollar) (STV 1.0 0.9091)) +(: cnet_isa_0bc80096ac (IsA jamais_vu confusion) (STV 1.0 0.9091)) +(: cnet_isa_d01fc0cfd2 (IsA jamb upright) (STV 1.0 0.9091)) +(: cnet_isa_a6b4f41c12 (IsA jambalaya dish) (STV 1.0 0.9091)) +(: cnet_isa_7de984ea72 (IsA jambo dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e98138a0a2 (IsA jame_bond fictional_spy) (STV 1.0 0.9091)) +(: cnet_isa_5c0a0d40b4 (IsA jame_bond spy) (STV 1.0 0.9608)) +(: cnet_isa_878dd62ff1 (IsA jamesonia fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_21be7c797d (IsA jammer transmitter) (STV 1.0 0.9091)) +(: cnet_isa_a4981b2c17 (IsA jamming electronic_countermeasure) (STV 1.0 0.9091)) +(: cnet_isa_6661b8af5e (IsA jampan sedan) (STV 1.0 0.9091)) +(: cnet_isa_be1e07048d (IsA jampot jar) (STV 1.0 0.9091)) +(: cnet_isa_5f4c1485d0 (IsA jane_doe party) (STV 1.0 0.9091)) +(: cnet_isa_54b15c01cf (IsA janissary follower) (STV 1.0 0.9091)) +(: cnet_isa_5bc220cc31 (IsA janissary soldier) (STV 1.0 0.9091)) +(: cnet_isa_483bf2dcdb (IsA janitor custodian) (STV 1.0 0.9091)) +(: cnet_isa_5284c89460 (IsA jansenism theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_a45a732fcb (IsA jansenist advocate) (STV 1.0 0.9091)) +(: cnet_isa_5d4eb02c04 (IsA january gregorian_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_af744802c1 (IsA japan country) (STV 1.0 0.9524)) +(: cnet_isa_27457e36dd (IsA japan island) (STV 1.0 0.9091)) +(: cnet_isa_8a5e456823 (IsA japan lacquer) (STV 1.0 0.9091)) +(: cnet_isa_300347e2ec (IsA japan lacquerware) (STV 1.0 0.9091)) +(: cnet_isa_a2d3ef2e8b (IsA japan_allspice shrub) (STV 1.0 0.9091)) +(: cnet_isa_e5052f46d0 (IsA japan_current ocean_current) (STV 1.0 0.9091)) +(: cnet_isa_e75a505cfb (IsA japan_wax wax) (STV 1.0 0.9091)) +(: cnet_isa_8bb30a3687 (IsA japanese human_language) (STV 1.0 0.9524)) +(: cnet_isa_881a80a7b8 (IsA japanese altaic) (STV 1.0 0.9091)) +(: cnet_isa_9bc9ccce61 (IsA japanese_angelica_tree shrub) (STV 1.0 0.9091)) +(: cnet_isa_7e60a452f6 (IsA japanese_apricot apricot) (STV 1.0 0.9091)) +(: cnet_isa_b39f46b980 (IsA japanese_banana banana) (STV 1.0 0.9091)) +(: cnet_isa_fef81717f2 (IsA japanese_barberry barberry) (STV 1.0 0.9091)) +(: cnet_isa_43fc6e2a81 (IsA japanese_beech beech) (STV 1.0 0.9091)) +(: cnet_isa_0ba685265c (IsA japanese_beetle scarabaeid_beetle) (STV 1.0 0.9091)) +(: cnet_isa_3cdad0eeac (IsA japanese_bittersweet vine) (STV 1.0 0.9091)) +(: cnet_isa_27c2bf0e16 (IsA japanese_black_pine pine) (STV 1.0 0.9091)) +(: cnet_isa_b1a3eedb5c (IsA japanese_brome brome) (STV 1.0 0.9091)) +(: cnet_isa_330e04a86e (IsA japanese_cedar cedar) (STV 1.0 0.9091)) +(: cnet_isa_1958fa6211 (IsA japanese_chestnut chestnut) (STV 1.0 0.9091)) +(: cnet_isa_3fff849b22 (IsA japanese_clover bush_clover) (STV 1.0 0.9091)) +(: cnet_isa_2c3bc88f9d (IsA japanese_crab crab) (STV 1.0 0.9091)) +(: cnet_isa_685cc50127 (IsA japanese_deer deer) (STV 1.0 0.9091)) +(: cnet_isa_9c911e6e8c (IsA japanese_deity deity) (STV 1.0 0.9091)) +(: cnet_isa_d2649208d0 (IsA japanese_flowering_cherry flowering_cherry) (STV 1.0 0.9091)) +(: cnet_isa_62f42d3b98 (IsA japanese_honeysuckle honeysuckle) (STV 1.0 0.9091)) +(: cnet_isa_71e7ece662 (IsA japanese_hop hop) (STV 1.0 0.9091)) +(: cnet_isa_03f6c02756 (IsA japanese_iris beardless_iris) (STV 1.0 0.9091)) +(: cnet_isa_dcfa7b2892 (IsA japanese_lilac lilac) (STV 1.0 0.9091)) +(: cnet_isa_dc3f24b7b8 (IsA japanese_linden linden) (STV 1.0 0.9091)) +(: cnet_isa_97e5a960a0 (IsA japanese_maple maple) (STV 1.0 0.9091)) +(: cnet_isa_b92cba6522 (IsA japanese_millet millet) (STV 1.0 0.9091)) +(: cnet_isa_a5e7b8287c (IsA japanese_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_3334d4ff11 (IsA japanese_morning_glory morning_glory) (STV 1.0 0.9091)) +(: cnet_isa_368c922cad (IsA japanese_oak oak) (STV 1.0 0.9091)) +(: cnet_isa_a6e9b7616a (IsA japanese_oak tanbark_oak) (STV 1.0 0.9091)) +(: cnet_isa_2e94248858 (IsA japanese_oyster oyster) (STV 1.0 0.9091)) +(: cnet_isa_031d5cbf4b (IsA japanese_pagoda_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_0cf56029f9 (IsA japanese_persimmon persimmon) (STV 1.0 0.9091)) +(: cnet_isa_e9a35b40ab (IsA japanese_pink china_pink) (STV 1.0 0.9091)) +(: cnet_isa_4ecf29f609 (IsA japanese_plum plum) (STV 1.0 0.9091)) +(: cnet_isa_488a532931 (IsA japanese_poinsettia spurge) (STV 1.0 0.9091)) +(: cnet_isa_45dd4b7dee (IsA japanese_privet privet) (STV 1.0 0.9091)) +(: cnet_isa_03c3a87ac9 (IsA japanese_quince flowering_quince) (STV 1.0 0.9091)) +(: cnet_isa_9d1cbc1d8d (IsA japanese_red_pine pine) (STV 1.0 0.9091)) +(: cnet_isa_8f7acb362b (IsA japanese_snowbell styrax) (STV 1.0 0.9091)) +(: cnet_isa_4cc2cd5c11 (IsA japanese_spaniel toy_dog) (STV 1.0 0.9091)) +(: cnet_isa_631aaf2e8c (IsA japanese_spurge pachysandra) (STV 1.0 0.9091)) +(: cnet_isa_4a9476dde0 (IsA japanese_stranglehold wrestling_hold) (STV 1.0 0.9091)) +(: cnet_isa_065b8c3696 (IsA japanese_tree_lilac lilac) (STV 1.0 0.9091)) +(: cnet_isa_332805548d (IsA japanese_umbrella_pine conifer) (STV 1.0 0.9091)) +(: cnet_isa_c4b00ae960 (IsA japanese_wistaria wisteria) (STV 1.0 0.9091)) +(: cnet_isa_32566041a0 (IsA japanese_yew yew) (STV 1.0 0.9091)) +(: cnet_isa_0411088227 (IsA japonica camellia) (STV 1.0 0.9091)) +(: cnet_isa_2252058ac5 (IsA japonica flowering_quince) (STV 1.0 0.9091)) +(: cnet_isa_e12da9baec (IsA jar container) (STV 1.0 0.9339)) +(: cnet_isa_8f2975e69f (IsA jar vessel) (STV 1.0 0.9091)) +(: cnet_isa_e2f2d3e766 (IsA jar containerful) (STV 1.0 0.9091)) +(: cnet_isa_107bbba75c (IsA jargon expressive_style) (STV 1.0 0.9091)) +(: cnet_isa_bd387b5986 (IsA jargoon zircon) (STV 1.0 0.9091)) +(: cnet_isa_297b1805cf (IsA jarvik_heart artificial_heart) (STV 1.0 0.9091)) +(: cnet_isa_9f240bdb4a (IsA jasmine shrub) (STV 1.0 0.9091)) +(: cnet_isa_0aae5847ff (IsA jasminum dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_248e84ed18 (IsA jasper opaque_gem) (STV 1.0 0.9091)) +(: cnet_isa_b4c0392940 (IsA jassid leafhopper) (STV 1.0 0.9091)) +(: cnet_isa_c3e66663e3 (IsA jassidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_c81e2876ee (IsA jat person) (STV 1.0 0.9091)) +(: cnet_isa_41578e13cc (IsA jati caste) (STV 1.0 0.9091)) +(: cnet_isa_fea96099ac (IsA jatropha rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e063cd2611 (IsA jaundice symptom) (STV 1.0 0.9091)) +(: cnet_isa_de91b1ebf8 (IsA jaundice_of_newborn jaundice) (STV 1.0 0.9091)) +(: cnet_isa_fb25c05a55 (IsA jauntiness chic) (STV 1.0 0.9091)) +(: cnet_isa_49d767d65a (IsA jaunting_car cart) (STV 1.0 0.9091)) +(: cnet_isa_aeb81bd6e1 (IsA java computer_programming_language) (STV 1.0 0.9339)) +(: cnet_isa_ddc2f1a70c (IsA java in_indonesia) (STV 1.0 0.9091)) +(: cnet_isa_45b364fa08 (IsA java island) (STV 1.0 0.9091)) +(: cnet_isa_06f49a0d10 (IsA java object_oriented_programming_language) (STV 1.0 0.9091)) +(: cnet_isa_8fc171beaf (IsA java programming_language) (STV 1.0 0.9740)) +(: cnet_isa_041751ad38 (IsA java_man homo_erectus) (STV 1.0 0.9091)) +(: cnet_isa_f9f4f9408b (IsA java_sparrow weaver) (STV 1.0 0.9091)) +(: cnet_isa_ac2906d907 (IsA javan indonesian) (STV 1.0 0.9091)) +(: cnet_isa_035e646323 (IsA javanese indonesian) (STV 1.0 0.9091)) +(: cnet_isa_41bf7f140b (IsA javanthropus hominid) (STV 1.0 0.9091)) +(: cnet_isa_0c2d95e259 (IsA javascript programming_language) (STV 1.0 0.9339)) +(: cnet_isa_21f4b32016 (IsA javelin spear) (STV 1.0 0.9091)) +(: cnet_isa_196f11df5a (IsA javelin sport_equipment) (STV 1.0 0.9091)) +(: cnet_isa_ba27fe3184 (IsA javelin field_event) (STV 1.0 0.9091)) +(: cnet_isa_8ef9bc6126 (IsA javelle_water sodium_hypochlorite) (STV 1.0 0.9091)) +(: cnet_isa_9e2278f873 (IsA jaw holding_device) (STV 1.0 0.9091)) +(: cnet_isa_74b322a911 (IsA jaw bone) (STV 1.0 0.9091)) +(: cnet_isa_7939c3f902 (IsA jaw feature) (STV 1.0 0.9091)) +(: cnet_isa_ea73967e7a (IsA jawan indian) (STV 1.0 0.9091)) +(: cnet_isa_d0cf431edb (IsA jawan soldier) (STV 1.0 0.9091)) +(: cnet_isa_0ff54ff1ff (IsA jawbreaker polysyllable) (STV 1.0 0.9091)) +(: cnet_isa_2c0eb53744 (IsA jawbreaker hard_candy) (STV 1.0 0.9091)) +(: cnet_isa_75b9e6610f (IsA jawfish percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_ae27c53e70 (IsA jawless_vertebrate aquatic_vertebrate) (STV 1.0 0.9091)) +(: cnet_isa_356d4b7eac (IsA jax game) (STV 1.0 0.9339)) +(: cnet_isa_27d1914f53 (IsA jax old_game) (STV 1.0 0.9091)) +(: cnet_isa_a6d7385e19 (IsA jay corvine_bird) (STV 1.0 0.9091)) +(: cnet_isa_d10557a751 (IsA jaywalker pedestrian) (STV 1.0 0.9091)) +(: cnet_isa_13a9d1fbaf (IsA jazz music) (STV 1.0 0.9572)) +(: cnet_isa_2cad34cc07 (IsA jazz popular_music) (STV 1.0 0.9091)) +(: cnet_isa_a5063ec395 (IsA jazz dance_music) (STV 1.0 0.9091)) +(: cnet_isa_113ffb70ea (IsA jazz_age period) (STV 1.0 0.9091)) +(: cnet_isa_a932cbc338 (IsA jazz_band dance_band) (STV 1.0 0.9091)) +(: cnet_isa_8743a97cee (IsA jazz_festival festival) (STV 1.0 0.9091)) +(: cnet_isa_b98481ed91 (IsA jazz_musician musician) (STV 1.0 0.9091)) +(: cnet_isa_55756ad1ed (IsA jazzercise aerobic_exercise) (STV 1.0 0.9091)) +(: cnet_isa_6203ad9b29 (IsA je_ne_sais_quois object) (STV 1.0 0.9091)) +(: cnet_isa_30b09181a0 (IsA jealousy emotion) (STV 1.0 0.9091)) +(: cnet_isa_4478adde49 (IsA jealousy watchfulness) (STV 1.0 0.9091)) +(: cnet_isa_eac9436ff8 (IsA jealousy envy) (STV 1.0 0.9091)) +(: cnet_isa_f800761ace (IsA jean pair_of_trouser) (STV 1.0 0.9091)) +(: cnet_isa_99e7aad53f (IsA jean workwear) (STV 1.0 0.9091)) +(: cnet_isa_47a0bc96b1 (IsA jean trouser) (STV 1.0 0.9091)) +(: cnet_isa_ee308c7317 (IsA jeep four_wheeled_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_00a3b79879 (IsA jeep off_road_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_0db2f01bcf (IsA jeep car) (STV 1.0 0.9091)) +(: cnet_isa_0ce75e9643 (IsA jeer derision) (STV 1.0 0.9091)) +(: cnet_isa_196a339ba3 (IsA jefferson_davis_birthday day) (STV 1.0 0.9091)) +(: cnet_isa_c0c7d40ac5 (IsA jeffersonian follower) (STV 1.0 0.9091)) +(: cnet_isa_94dfcb2412 (IsA jeffrey_pine pine) (STV 1.0 0.9091)) +(: cnet_isa_12fd923395 (IsA jehovah_s_witness protestant) (STV 1.0 0.9091)) +(: cnet_isa_db5fea7f48 (IsA jehovah_s_witness protestant_denomination) (STV 1.0 0.9091)) +(: cnet_isa_62bd1481ff (IsA jejunal_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_2511513aa9 (IsA jejunitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_f10c4c2060 (IsA jejunity dullness) (STV 1.0 0.9091)) +(: cnet_isa_116373c949 (IsA jejunity inadequacy) (STV 1.0 0.9091)) +(: cnet_isa_39e030521d (IsA jejunoileitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_db5bb40b6c (IsA jejunostomy operation) (STV 1.0 0.9091)) +(: cnet_isa_7910725968 (IsA jejunum small_intestine) (STV 1.0 0.9091)) +(: cnet_isa_d7a90b4a0b (IsA jekyll_and_hyde anomaly) (STV 1.0 0.9091)) +(: cnet_isa_c34adf45de (IsA jellaba cloak) (STV 1.0 0.9091)) +(: cnet_isa_c42ccc0247 (IsA jello gelatin_dessert) (STV 1.0 0.9091)) +(: cnet_isa_a0cc558282 (IsA jello hydrocolloid) (STV 1.0 0.9091)) +(: cnet_isa_f964e061f9 (IsA jelly spread) (STV 1.0 0.9091)) +(: cnet_isa_1a5f1fbc2e (IsA jelly conserve) (STV 1.0 0.9091)) +(: cnet_isa_da7d88f35f (IsA jelly substance) (STV 1.0 0.9091)) +(: cnet_isa_d758644903 (IsA jelly_bean candy) (STV 1.0 0.9091)) +(: cnet_isa_5fcfd0c343 (IsA jelly_fungus fungus) (STV 1.0 0.9091)) +(: cnet_isa_274f870b42 (IsA jellyfish coelenterate) (STV 1.0 0.9091)) +(: cnet_isa_ffa82b515e (IsA jellyroll sponge_cake) (STV 1.0 0.9091)) +(: cnet_isa_93768a9d03 (IsA jennet ass) (STV 1.0 0.9091)) +(: cnet_isa_316a39b6d9 (IsA jerboa rodent) (STV 1.0 0.9091)) +(: cnet_isa_e11a4850b7 (IsA jerboa_kangaroo rat_kangaroo) (STV 1.0 0.9091)) +(: cnet_isa_32a2f3ac24 (IsA jerboa_rat rat) (STV 1.0 0.9091)) +(: cnet_isa_71e1da3f96 (IsA jeremiad complaint) (STV 1.0 0.9091)) +(: cnet_isa_4ac1cd445e (IsA jerk motion) (STV 1.0 0.9091)) +(: cnet_isa_4e799ae933 (IsA jerk weightlifting) (STV 1.0 0.9091)) +(: cnet_isa_c6f9e51c6b (IsA jerk rate) (STV 1.0 0.9091)) +(: cnet_isa_9bb1fe1ced (IsA jerk misfit) (STV 1.0 0.9091)) +(: cnet_isa_3abd7c2683 (IsA jerkin jacket) (STV 1.0 0.9091)) +(: cnet_isa_7e22dabf91 (IsA jerky meat) (STV 1.0 0.9091)) +(: cnet_isa_c47af7c934 (IsA jeroboam wine_bottle) (STV 1.0 0.9091)) +(: cnet_isa_47d1d7dd22 (IsA jerry_builder builder) (STV 1.0 0.9091)) +(: cnet_isa_2312c82e2f (IsA jerry_building construction) (STV 1.0 0.9091)) +(: cnet_isa_885c862307 (IsA jersey dairy_cattle) (STV 1.0 0.9091)) +(: cnet_isa_d5cb2c3ce9 (IsA jersey knit) (STV 1.0 0.9091)) +(: cnet_isa_837aa15961 (IsA jersey shirt) (STV 1.0 0.9091)) +(: cnet_isa_6256e98617 (IsA jersey_elm elm) (STV 1.0 0.9091)) +(: cnet_isa_f42c2265d8 (IsA jersey_knapweed knapweed) (STV 1.0 0.9091)) +(: cnet_isa_f551f6be57 (IsA jerusalem_artichoke root_vegetable) (STV 1.0 0.9091)) +(: cnet_isa_74826d927f (IsA jerusalem_artichoke sunflower) (STV 1.0 0.9091)) +(: cnet_isa_391357d340 (IsA jerusalem_artichoke tuber) (STV 1.0 0.9091)) +(: cnet_isa_83f313de1c (IsA jerusalem_cherry nightshade) (STV 1.0 0.9091)) +(: cnet_isa_5538ad0dcf (IsA jerusalem_cross cross) (STV 1.0 0.9091)) +(: cnet_isa_ac7e8085d1 (IsA jerusalem_oak goosefoot) (STV 1.0 0.9091)) +(: cnet_isa_e9ef8b38e9 (IsA jerusalem_sage subshrub) (STV 1.0 0.9091)) +(: cnet_isa_8afc5319dc (IsA jerusalem_thorn shrub) (STV 1.0 0.9091)) +(: cnet_isa_d6d13e5094 (IsA jest diversion) (STV 1.0 0.9091)) +(: cnet_isa_8536f361f9 (IsA jester clown) (STV 1.0 0.9091)) +(: cnet_isa_3a38df54d8 (IsA jesuit religious) (STV 1.0 0.9091)) +(: cnet_isa_800750567e (IsA jesuit_order order) (STV 1.0 0.9091)) +(: cnet_isa_9ba7bd28ac (IsA jesuitism christian_theology) (STV 1.0 0.9091)) +(: cnet_isa_e215d7f89b (IsA jesus good_man) (STV 1.0 0.9091)) +(: cnet_isa_92a396db72 (IsA jesus good_teacher) (STV 1.0 0.9091)) +(: cnet_isa_d567ae5cf2 (IsA jesus human_being) (STV 1.0 0.9091)) +(: cnet_isa_c895d96f0e (IsA jesus itinerant_preacher_long_ago) (STV 1.0 0.9091)) +(: cnet_isa_967b0aa5f6 (IsA jesus jew) (STV 1.0 0.9572)) +(: cnet_isa_21b4324c0f (IsA jesus king_and_shepard) (STV 1.0 0.9091)) +(: cnet_isa_3179cdefb8 (IsA jesus middle_eastern_dissident) (STV 1.0 0.9091)) +(: cnet_isa_59ff38adee (IsA jesus mythological_hero) (STV 1.0 0.9091)) +(: cnet_isa_e48ac05f70 (IsA jesus person) (STV 1.0 0.9091)) +(: cnet_isa_fb7799c98a (IsA jesus religious_radical_2000_year_ago) (STV 1.0 0.9091)) +(: cnet_isa_33c7fb2f4c (IsA jesus_christ lord_and_saviour) (STV 1.0 0.9454)) +(: cnet_isa_32f1cd58f1 (IsA jet airplane) (STV 1.0 0.9091)) +(: cnet_isa_4c7fdebe02 (IsA jet discharge) (STV 1.0 0.9091)) +(: cnet_isa_568eec03a4 (IsA jet lignite) (STV 1.0 0.9091)) +(: cnet_isa_22d9d50300 (IsA jet_bridge footbridge) (STV 1.0 0.9091)) +(: cnet_isa_f521e11f2b (IsA jet_engine reaction_propulsion_engine) (STV 1.0 0.9091)) +(: cnet_isa_1f43a0b82b (IsA jet_lag fatigue) (STV 1.0 0.9091)) +(: cnet_isa_91c53cbbe6 (IsA jet_propulsion reaction_propulsion) (STV 1.0 0.9091)) +(: cnet_isa_7f3f38458d (IsA jet_set set) (STV 1.0 0.9091)) +(: cnet_isa_1686eef1fa (IsA jet_stream airstream) (STV 1.0 0.9091)) +(: cnet_isa_730020862d (IsA jeth hindu_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_151919fb13 (IsA jetliner jet) (STV 1.0 0.9091)) +(: cnet_isa_3fc8298d3c (IsA jet atmospheric_electricity) (STV 1.0 0.9091)) +(: cnet_isa_6ad680faa9 (IsA jet_and_giant both_ny_football_team) (STV 1.0 0.9091)) +(: cnet_isa_444137686a (IsA jetsam part) (STV 1.0 0.9091)) +(: cnet_isa_30359bda49 (IsA jeu_d_esprit wit) (STV 1.0 0.9091)) +(: cnet_isa_ba75dbefdb (IsA jew_s_ear jelly_fungus) (STV 1.0 0.9091)) +(: cnet_isa_54b348d21e (IsA jew_s_harp musical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_86493e984c (IsA jew ethnic_group) (STV 1.0 0.9524)) +(: cnet_isa_7b1273b173 (IsA jewbush slipper_spurge) (STV 1.0 0.9091)) +(: cnet_isa_3475beec49 (IsA jewel jewelry) (STV 1.0 0.9091)) +(: cnet_isa_3c5ba1668e (IsA jewel person) (STV 1.0 0.9091)) +(: cnet_isa_95602840f3 (IsA jewel_orchid orchid) (STV 1.0 0.9091)) +(: cnet_isa_351d6cc074 (IsA jeweler_s_glass optical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_5b4c8c8355 (IsA jeweler merchant) (STV 1.0 0.9091)) +(: cnet_isa_88445841b3 (IsA jewelled_headdress headdress) (STV 1.0 0.9091)) +(: cnet_isa_c82db3cd3c (IsA jewelry adornment) (STV 1.0 0.9091)) +(: cnet_isa_ce51fce35b (IsA jewelry_dealer dealer) (STV 1.0 0.9091)) +(: cnet_isa_336aa1b7b0 (IsA jewelry_maker maker) (STV 1.0 0.9091)) +(: cnet_isa_94294e0677 (IsA jewel_of_opar flame_flower) (STV 1.0 0.9091)) +(: cnet_isa_e50646b6f8 (IsA jewelweed herb) (STV 1.0 0.9091)) +(: cnet_isa_e0997a46d6 (IsA jewess israelite) (STV 1.0 0.9091)) +(: cnet_isa_59aa9a312b (IsA jewfish grouper) (STV 1.0 0.9091)) +(: cnet_isa_9933912b17 (IsA jewish_calendar lunisolar_calendar) (STV 1.0 0.9091)) +(: cnet_isa_4e5a8dca42 (IsA jewish_calendar_month calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_92bbbd8f0f (IsA jewish_holy_day religious_holiday) (STV 1.0 0.9091)) +(: cnet_isa_bf5f6779b4 (IsA jewish_rye_bread rye_bread) (STV 1.0 0.9091)) +(: cnet_isa_4ad2a9623d (IsA jewry social_group) (STV 1.0 0.9091)) +(: cnet_isa_27e321ac0c (IsA jezebel woman) (STV 1.0 0.9091)) +(: cnet_isa_508fc7c3b9 (IsA jiao chinese_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_bb244c69af (IsA jib fore_and_aft_sail) (STV 1.0 0.9091)) +(: cnet_isa_a7b07d843a (IsA jibboom spar) (STV 1.0 0.9091)) +(: cnet_isa_5567f8c1de (IsA jig folk_dancing) (STV 1.0 0.9091)) +(: cnet_isa_6213de823f (IsA jig device) (STV 1.0 0.9091)) +(: cnet_isa_6801139e0d (IsA jig fisherman_s_lure) (STV 1.0 0.9091)) +(: cnet_isa_9e642bf158 (IsA jig dance_music) (STV 1.0 0.9091)) +(: cnet_isa_344661132a (IsA jiggermast mast) (STV 1.0 0.9091)) +(: cnet_isa_08aca2b129 (IsA jigsaw power_saw) (STV 1.0 0.9091)) +(: cnet_isa_8178d5e393 (IsA jigsaw_puzzle puzzle) (STV 1.0 0.9091)) +(: cnet_isa_2e3806e4c1 (IsA jihad holy_war) (STV 1.0 0.9339)) +(: cnet_isa_f09cb984fd (IsA jihad striving) (STV 1.0 0.9091)) +(: cnet_isa_04bbe3bddc (IsA jihadist moslem) (STV 1.0 0.9091)) +(: cnet_isa_b1b93f899d (IsA jilt woman) (STV 1.0 0.9091)) +(: cnet_isa_6fde2bd53f (IsA jim hamburger_eater) (STV 1.0 0.9091)) +(: cnet_isa_5c245ce993 (IsA jim_crow crowbar) (STV 1.0 0.9091)) +(: cnet_isa_8ec3aa7065 (IsA jimdandy thing) (STV 1.0 0.9091)) +(: cnet_isa_d56bae7047 (IsA jimdandy ideal) (STV 1.0 0.9091)) +(: cnet_isa_ae94d7ef1f (IsA jimmy chocolate_candy) (STV 1.0 0.9091)) +(: cnet_isa_356d468e42 (IsA jimmy crowbar) (STV 1.0 0.9091)) +(: cnet_isa_0b2fd9d082 (IsA jimsonweed thorn_apple) (STV 1.0 0.9091)) +(: cnet_isa_1db08da61e (IsA jinghpo kachin) (STV 1.0 0.9091)) +(: cnet_isa_578e528690 (IsA jingle sound) (STV 1.0 0.9091)) +(: cnet_isa_ba325c27da (IsA jink merrymaking) (STV 1.0 0.9091)) +(: cnet_isa_36ae7194a4 (IsA jinrikisha cart) (STV 1.0 0.9091)) +(: cnet_isa_00fee598e1 (IsA jiqui dicot) (STV 1.0 0.9091)) +(: cnet_isa_c7eb3a0f19 (IsA jird gerbil) (STV 1.0 0.9091)) +(: cnet_isa_753fdc47d0 (IsA jirga council) (STV 1.0 0.9091)) +(: cnet_isa_05e85e31c4 (IsA jitter movement) (STV 1.0 0.9091)) +(: cnet_isa_b7e5d365e2 (IsA jitter noise) (STV 1.0 0.9091)) +(: cnet_isa_2035651af4 (IsA jitterbug social_dancing) (STV 1.0 0.9091)) +(: cnet_isa_eb1bb3147d (IsA jitteriness anxiety) (STV 1.0 0.9091)) +(: cnet_isa_c7456efc6a (IsA jitter nervousness) (STV 1.0 0.9091)) +(: cnet_isa_3447621965 (IsA jnr son) (STV 1.0 0.9091)) +(: cnet_isa_d6d0dac1c9 (IsA job_s_comforter sympathizer) (STV 1.0 0.9091)) +(: cnet_isa_6f62a01b3c (IsA job_s_tear seed) (STV 1.0 0.9091)) +(: cnet_isa_d9edf68615 (IsA job duty) (STV 1.0 0.9091)) +(: cnet_isa_156dae4f79 (IsA job work) (STV 1.0 0.9091)) +(: cnet_isa_4091b3546e (IsA job product) (STV 1.0 0.9091)) +(: cnet_isa_8d350d1cfc (IsA job workplace) (STV 1.0 0.9091)) +(: cnet_isa_d89189b996 (IsA job application) (STV 1.0 0.9091)) +(: cnet_isa_e5b6c28200 (IsA job unfortunate) (STV 1.0 0.9091)) +(: cnet_isa_bf96b3a2f2 (IsA job_action direct_action) (STV 1.0 0.9091)) +(: cnet_isa_cc6805ec36 (IsA job_application application) (STV 1.0 0.9091)) +(: cnet_isa_eab2c0c4c5 (IsA job_candidate applicant) (STV 1.0 0.9091)) +(: cnet_isa_47d4cf8ceb (IsA job_control program) (STV 1.0 0.9091)) +(: cnet_isa_44190b9f3e (IsA job_control_language application_oriented_language) (STV 1.0 0.9091)) +(: cnet_isa_dcdd7d096b (IsA job_description description) (STV 1.0 0.9091)) +(: cnet_isa_89bc3fe53a (IsA job_interview interview) (STV 1.0 0.9091)) +(: cnet_isa_051ecba46a (IsA job_lot collection) (STV 1.0 0.9091)) +(: cnet_isa_b12244c4de (IsA job_oriented_terminal terminal) (STV 1.0 0.9091)) +(: cnet_isa_c50f78ff29 (IsA jobber distributor) (STV 1.0 0.9091)) +(: cnet_isa_7954e0cf3f (IsA jobbery corruptness) (STV 1.0 0.9091)) +(: cnet_isa_1840954ca8 (IsA jobcentre government_office) (STV 1.0 0.9091)) +(: cnet_isa_26add12e13 (IsA jobholder employee) (STV 1.0 0.9091)) +(: cnet_isa_377d62aa00 (IsA jobholder holder) (STV 1.0 0.9091)) +(: cnet_isa_b092620914 (IsA jockey horseman) (STV 1.0 0.9091)) +(: cnet_isa_6e2735d93a (IsA jockey operator) (STV 1.0 0.9091)) +(: cnet_isa_62cf6215dd (IsA jockey_club club) (STV 1.0 0.9091)) +(: cnet_isa_18de6831ae (IsA jocoseness levity) (STV 1.0 0.9091)) +(: cnet_isa_49ed8e1752 (IsA jocosity fun) (STV 1.0 0.9091)) +(: cnet_isa_0648aa8319 (IsA jocundity gaiety) (STV 1.0 0.9091)) +(: cnet_isa_83274a2d24 (IsA jodhpur pair_of_trouser) (STV 1.0 0.9091)) +(: cnet_isa_e166cd6e64 (IsA jodhpur riding_boot) (STV 1.0 0.9091)) +(: cnet_isa_40651601d9 (IsA joe_pye_weed herb) (STV 1.0 0.9091)) +(: cnet_isa_4188a050fd (IsA jog locomotion) (STV 1.0 0.9091)) +(: cnet_isa_1e8924f41c (IsA jog angular_shape) (STV 1.0 0.9091)) +(: cnet_isa_f60441a76e (IsA jog_trot gait) (STV 1.0 0.9091)) +(: cnet_isa_d3675fa631 (IsA jogger runner) (STV 1.0 0.9091)) +(: cnet_isa_27bfe25e93 (IsA jogging exercise) (STV 1.0 0.9608)) +(: cnet_isa_f83b4f8c4c (IsA jogging cardiopulmonary_exercise) (STV 1.0 0.9091)) +(: cnet_isa_c6a48aafe4 (IsA joggle shaking) (STV 1.0 0.9091)) +(: cnet_isa_9cb560dbaa (IsA john boy_name) (STV 1.0 0.9091)) +(: cnet_isa_5936b95e22 (IsA john crying) (STV 1.0 0.9091)) +(: cnet_isa_266836a99b (IsA john hunter) (STV 1.0 0.9091)) +(: cnet_isa_2506bd81d0 (IsA john_doe party) (STV 1.0 0.9091)) +(: cnet_isa_0909d6df19 (IsA john_dory dory) (STV 1.0 0.9091)) +(: cnet_isa_1f19b89a77 (IsA john_mccain republican) (STV 1.0 0.9091)) +(: cnet_isa_6b7d5e81d8 (IsA john_safran provocateur) (STV 1.0 0.9091)) +(: cnet_isa_670369c577 (IsA john_woo film_director) (STV 1.0 0.9091)) +(: cnet_isa_4f4bcdff37 (IsA johnnycake cornbread) (STV 1.0 0.9091)) +(: cnet_isa_441e777824 (IsA johnson_grass sorghum) (STV 1.0 0.9091)) +(: cnet_isa_ae09d2f403 (IsA joie_de_vivre enjoyment) (STV 1.0 0.9091)) +(: cnet_isa_1d447b9b3c (IsA joiner member) (STV 1.0 0.9091)) +(: cnet_isa_64d9bf319d (IsA joiner woodworker) (STV 1.0 0.9091)) +(: cnet_isa_7865576f3b (IsA joinery woodwork) (STV 1.0 0.9091)) +(: cnet_isa_ff7efdf8c6 (IsA joining change_of_integrity) (STV 1.0 0.9091)) +(: cnet_isa_a52768285a (IsA joint body_part) (STV 1.0 0.9091)) +(: cnet_isa_3755684045 (IsA joint cigarette) (STV 1.0 0.9091)) +(: cnet_isa_fbfe50f224 (IsA joint junction) (STV 1.0 0.9091)) +(: cnet_isa_aa2c4feb9d (IsA joint spot) (STV 1.0 0.9091)) +(: cnet_isa_511c69f035 (IsA joint_chief_of_staff executive_agency) (STV 1.0 0.9091)) +(: cnet_isa_7972e4e5c2 (IsA joint_direct_attack_munition guidance_system) (STV 1.0 0.9091)) +(: cnet_isa_b69f679628 (IsA joint_probability probability) (STV 1.0 0.9091)) +(: cnet_isa_dcb6559a17 (IsA joint_resolution resolution) (STV 1.0 0.9091)) +(: cnet_isa_498ea36365 (IsA joint_return tax_return) (STV 1.0 0.9091)) +(: cnet_isa_a647cc627e (IsA joint_stock_company company) (STV 1.0 0.9091)) +(: cnet_isa_38088e20e7 (IsA joint_venture venture) (STV 1.0 0.9091)) +(: cnet_isa_53a39cd7ec (IsA jointed_charlock weed) (STV 1.0 0.9091)) +(: cnet_isa_f5910815b2 (IsA jointed_rush rush) (STV 1.0 0.9091)) +(: cnet_isa_2735f76745 (IsA jointer plane) (STV 1.0 0.9091)) +(: cnet_isa_3663b38416 (IsA jointure estate) (STV 1.0 0.9091)) +(: cnet_isa_6d76289834 (IsA joist beam) (STV 1.0 0.9091)) +(: cnet_isa_52a2b654e7 (IsA joke pettiness) (STV 1.0 0.9091)) +(: cnet_isa_70db2845e4 (IsA joke wit) (STV 1.0 0.9091)) +(: cnet_isa_41320af848 (IsA joker playing_card) (STV 1.0 0.9091)) +(: cnet_isa_d90d93dc2f (IsA joker article) (STV 1.0 0.9091)) +(: cnet_isa_edc6663910 (IsA joker comedian) (STV 1.0 0.9091)) +(: cnet_isa_c08b20512a (IsA joker unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_ebb2d1478b (IsA jollity gaiety) (STV 1.0 0.9091)) +(: cnet_isa_186df21b78 (IsA jollity good_humor) (STV 1.0 0.9091)) +(: cnet_isa_b9300b8f98 (IsA jolly party) (STV 1.0 0.9091)) +(: cnet_isa_62d5604b47 (IsA jolly_boat yawl) (STV 1.0 0.9091)) +(: cnet_isa_ceaef02978 (IsA jolt bump) (STV 1.0 0.9091)) +(: cnet_isa_5c881cfe3a (IsA jonah unfortunate) (STV 1.0 0.9091)) +(: cnet_isa_0a99f2431b (IsA jonah_crab crab) (STV 1.0 0.9091)) +(: cnet_isa_38680bb2b8 (IsA jonathan eating_apple) (STV 1.0 0.9091)) +(: cnet_isa_3af68654dc (IsA jone_penstemon wildflower) (STV 1.0 0.9091)) +(: cnet_isa_d2768344d1 (IsA jonquil daffodil) (STV 1.0 0.9091)) +(: cnet_isa_2830bd96ac (IsA jonquil narcissus) (STV 1.0 0.9091)) +(: cnet_isa_c94dd7793f (IsA jordan_almond almond) (STV 1.0 0.9091)) +(: cnet_isa_aea11dd30d (IsA jordanella fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_bbe08284b5 (IsA jordanian asiatic) (STV 1.0 0.9091)) +(: cnet_isa_24ed16a1af (IsA jordanian_dinar jordanian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_8b4ec248d1 (IsA jordanian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_31279d59e9 (IsA jorum bowl) (STV 1.0 0.9091)) +(: cnet_isa_5a2c3b515a (IsA joshua_tree yucca) (STV 1.0 0.9091)) +(: cnet_isa_c9e5127345 (IsA joss idol) (STV 1.0 0.9091)) +(: cnet_isa_4f3030061e (IsA joss_house temple) (STV 1.0 0.9091)) +(: cnet_isa_39131e0a85 (IsA joss_stick incense) (STV 1.0 0.9091)) +(: cnet_isa_2aa33519f8 (IsA jostle shove) (STV 1.0 0.9091)) +(: cnet_isa_3c7076f679 (IsA jotter notebook) (STV 1.0 0.9091)) +(: cnet_isa_bd70c66361 (IsA jotting note) (STV 1.0 0.9091)) +(: cnet_isa_2bf3ef6b73 (IsA jotunn giant) (STV 1.0 0.9091)) +(: cnet_isa_b9a490daf0 (IsA joule work_unit) (STV 1.0 0.9091)) +(: cnet_isa_c24b57db01 (IsA journal axle) (STV 1.0 0.9091)) +(: cnet_isa_fbb4b6553e (IsA journal book) (STV 1.0 0.9091)) +(: cnet_isa_142153a4d6 (IsA journal periodical) (STV 1.0 0.9091)) +(: cnet_isa_7d4ebf3e01 (IsA journal_bearing bearing) (STV 1.0 0.9091)) +(: cnet_isa_f73d0e124f (IsA journal_box housing) (STV 1.0 0.9091)) +(: cnet_isa_4844cf61be (IsA journalese expressive_style) (STV 1.0 0.9091)) +(: cnet_isa_6ddc587acb (IsA journalism profession) (STV 1.0 0.9091)) +(: cnet_isa_e343ac07ec (IsA journalism print_media) (STV 1.0 0.9091)) +(: cnet_isa_9238e6706b (IsA journalist_s_privilege privilege) (STV 1.0 0.9091)) +(: cnet_isa_b2805f65ca (IsA journalist writer) (STV 1.0 0.9091)) +(: cnet_isa_cc2352032c (IsA journey travel) (STV 1.0 0.9091)) +(: cnet_isa_179230073c (IsA joust struggle) (STV 1.0 0.9091)) +(: cnet_isa_39b74a842c (IsA jovian_planet planet) (STV 1.0 0.9091)) +(: cnet_isa_992075afef (IsA jowl feature) (STV 1.0 0.9091)) +(: cnet_isa_a92cfc54db (IsA joy dog) (STV 1.0 0.9091)) +(: cnet_isa_5124ba9c1b (IsA joy emotion) (STV 1.0 0.9091)) +(: cnet_isa_0c2048b5b2 (IsA joy positive_stimulus) (STV 1.0 0.9091)) +(: cnet_isa_430ed6bf2b (IsA joylessness cheerlessness) (STV 1.0 0.9091)) +(: cnet_isa_abcb13b9ae (IsA joyride drive) (STV 1.0 0.9091)) +(: cnet_isa_3f42b7180c (IsA joystick control) (STV 1.0 0.9091)) +(: cnet_isa_9645bc1f52 (IsA joystick data_input_device) (STV 1.0 0.9091)) +(: cnet_isa_1582cd5b57 (IsA juan_ponce_de_leon navigator) (STV 1.0 0.9091)) +(: cnet_isa_cb2b89b845 (IsA jubilee anniversary) (STV 1.0 0.9091)) +(: cnet_isa_59caa79705 (IsA judaica collection) (STV 1.0 0.9091)) +(: cnet_isa_5ee5bcd719 (IsA judaism religion) (STV 1.0 0.9091)) +(: cnet_isa_8390518ccf (IsA judaism monotheism) (STV 1.0 0.9091)) +(: cnet_isa_96e070ce97 (IsA juda peephole) (STV 1.0 0.9091)) +(: cnet_isa_ece4aeb06b (IsA juda double_crosser) (STV 1.0 0.9091)) +(: cnet_isa_dcce33d802 (IsA juda_tree angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_6b5ff2e4cc (IsA judeo_spanish spanish) (STV 1.0 0.9091)) +(: cnet_isa_23b42f8752 (IsA judge adjudicator) (STV 1.0 0.9091)) +(: cnet_isa_35390d2723 (IsA judge official) (STV 1.0 0.9091)) +(: cnet_isa_01260016ac (IsA judge_advocate commissioned_officer) (STV 1.0 0.9091)) +(: cnet_isa_3cf744340c (IsA judge_advocate staff_officer) (STV 1.0 0.9091)) +(: cnet_isa_f8d1dcee64 (IsA judge_advocate_general commissioned_officer) (STV 1.0 0.9091)) +(: cnet_isa_cdebd4f40c (IsA judgment act) (STV 1.0 0.9091)) +(: cnet_isa_dcf59ed5cc (IsA judgment trait) (STV 1.0 0.9091)) +(: cnet_isa_45ba076cf4 (IsA judgment decision_making) (STV 1.0 0.9091)) +(: cnet_isa_ebecb35f02 (IsA judgment opinion) (STV 1.0 0.9091)) +(: cnet_isa_046d4b6a12 (IsA judgment due_process) (STV 1.0 0.9091)) +(: cnet_isa_13f43a2199 (IsA judgment_day day) (STV 1.0 0.9091)) +(: cnet_isa_8e9ae5a956 (IsA judgment_in_personam judgment) (STV 1.0 0.9091)) +(: cnet_isa_cb199f084c (IsA judgment_in_rem judgment) (STV 1.0 0.9091)) +(: cnet_isa_0c5225d25c (IsA judgment_lien lien) (STV 1.0 0.9091)) +(: cnet_isa_fcd767a736 (IsA judgment_of_dismissal judgment) (STV 1.0 0.9091)) +(: cnet_isa_5823ee6afb (IsA judgment_on_merit judgment) (STV 1.0 0.9091)) +(: cnet_isa_34f9af8c5a (IsA judgship position) (STV 1.0 0.9091)) +(: cnet_isa_a7c81f58bf (IsA judicature justice) (STV 1.0 0.9091)) +(: cnet_isa_b034630c12 (IsA judicial_branch branch) (STV 1.0 0.9091)) +(: cnet_isa_14d3c464be (IsA judicial_review review) (STV 1.0 0.9091)) +(: cnet_isa_2bedd6fd2a (IsA judicial_torture torture) (STV 1.0 0.9091)) +(: cnet_isa_71ce3e1a53 (IsA judiciary administration) (STV 1.0 0.9091)) +(: cnet_isa_9e2935c240 (IsA judiciary system) (STV 1.0 0.9091)) +(: cnet_isa_a00d9cfd5f (IsA judiciousness wisdom) (STV 1.0 0.9091)) +(: cnet_isa_10c2afd87b (IsA judiciousness sagacity) (STV 1.0 0.9091)) +(: cnet_isa_63600a2128 (IsA judo martial_art) (STV 1.0 0.9091)) +(: cnet_isa_ebddc566fe (IsA judo sport) (STV 1.0 0.9091)) +(: cnet_isa_3b9017f9a9 (IsA jug container) (STV 1.0 0.9339)) +(: cnet_isa_06777f6e87 (IsA jug bottle) (STV 1.0 0.9091)) +(: cnet_isa_bd1aad4151 (IsA jug containerful) (STV 1.0 0.9091)) +(: cnet_isa_dee4ec68cd (IsA jug_band ensemble) (STV 1.0 0.9091)) +(: cnet_isa_8d9d9393a7 (IsA jug_wine wine) (STV 1.0 0.9091)) +(: cnet_isa_bd5a839bde (IsA jugale craniometric_point) (STV 1.0 0.9091)) +(: cnet_isa_e5714133ab (IsA juggernaut idol) (STV 1.0 0.9091)) +(: cnet_isa_bc88af99ae (IsA juggernaut power) (STV 1.0 0.9091)) +(: cnet_isa_2f5f3e022f (IsA juggle performance) (STV 1.0 0.9091)) +(: cnet_isa_5688b1753b (IsA juggle rearrangement) (STV 1.0 0.9091)) +(: cnet_isa_fa2fdf85de (IsA juggler performer) (STV 1.0 0.9091)) +(: cnet_isa_7c20d8daf4 (IsA jugglery maneuver) (STV 1.0 0.9091)) +(: cnet_isa_4330d5a6fa (IsA jugglery trickery) (STV 1.0 0.9091)) +(: cnet_isa_cc779a8420 (IsA juglandaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_c92b990237 (IsA juglandale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_ade9e6ecb6 (IsA juglan dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_fb14c29b66 (IsA jugoslavian european) (STV 1.0 0.9091)) +(: cnet_isa_4f93de010a (IsA jugular weak_part) (STV 1.0 0.9091)) +(: cnet_isa_4df32b377b (IsA jugular_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_b211680763 (IsA juice liquid_body_substance) (STV 1.0 0.9091)) +(: cnet_isa_925108024e (IsA juice foodstuff) (STV 1.0 0.9091)) +(: cnet_isa_9b0d5e4185 (IsA juice current) (STV 1.0 0.9091)) +(: cnet_isa_8d3818794a (IsA juice energy) (STV 1.0 0.9091)) +(: cnet_isa_22421207c7 (IsA juju charm) (STV 1.0 0.9091)) +(: cnet_isa_a5f0e917fa (IsA juju magic) (STV 1.0 0.9091)) +(: cnet_isa_0b2566fa61 (IsA jujube drupe) (STV 1.0 0.9091)) +(: cnet_isa_59a235d070 (IsA jujube edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_40601ac4ca (IsA jujube gumdrop) (STV 1.0 0.9091)) +(: cnet_isa_42b6358869 (IsA jujube shrub) (STV 1.0 0.9091)) +(: cnet_isa_3e704d8556 (IsA jujutsu martial_art) (STV 1.0 0.9091)) +(: cnet_isa_ff2889dbd0 (IsA juke joint) (STV 1.0 0.9091)) +(: cnet_isa_7192bef25e (IsA juke feint) (STV 1.0 0.9091)) +(: cnet_isa_dda3316d7d (IsA jukebox record_player) (STV 1.0 0.9091)) +(: cnet_isa_8d8554232b (IsA julep highball) (STV 1.0 0.9091)) +(: cnet_isa_291870ed95 (IsA julian_calendar solar_calendar) (STV 1.0 0.9091)) +(: cnet_isa_cbbc2251b2 (IsA julienne soup) (STV 1.0 0.9091)) +(: cnet_isa_338ccac1d1 (IsA julienne_vegetable vegetable) (STV 1.0 0.9091)) +(: cnet_isa_a22c273d2f (IsA july gregorian_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_eddac98421 (IsA jumada_i islamic_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_dc42390056 (IsA jumada_ii islamic_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_e4e54758bf (IsA jumble cake) (STV 1.0 0.9091)) +(: cnet_isa_be01778483 (IsA jumbojet jet) (STV 1.0 0.9091)) +(: cnet_isa_355ccc4baf (IsA jumby_bead necklace_tree) (STV 1.0 0.9091)) +(: cnet_isa_2076576715 (IsA jump descent) (STV 1.0 0.9091)) +(: cnet_isa_261eb56887 (IsA jump propulsion) (STV 1.0 0.9091)) +(: cnet_isa_a21a18044c (IsA jump transition) (STV 1.0 0.9091)) +(: cnet_isa_df5032cd4f (IsA jump increase) (STV 1.0 0.9091)) +(: cnet_isa_74325f9525 (IsA jump_ball beginning) (STV 1.0 0.9091)) +(: cnet_isa_8a63866d42 (IsA jump_cut cut) (STV 1.0 0.9091)) +(: cnet_isa_e7a07b852c (IsA jump_rope cardiopulmonary_exercise) (STV 1.0 0.9091)) +(: cnet_isa_1fd881cec6 (IsA jump_rope child_s_game) (STV 1.0 0.9091)) +(: cnet_isa_a586de1df6 (IsA jump_rope rope) (STV 1.0 0.9091)) +(: cnet_isa_0ddc358950 (IsA jump_seat seat) (STV 1.0 0.9091)) +(: cnet_isa_dbad75f5df (IsA jump_start action) (STV 1.0 0.9091)) +(: cnet_isa_366bb8e2f2 (IsA jump_suit garment) (STV 1.0 0.9091)) +(: cnet_isa_48fed821b8 (IsA jump_suit uniform) (STV 1.0 0.9091)) +(: cnet_isa_057e29bbd2 (IsA jumper connection) (STV 1.0 0.9091)) +(: cnet_isa_1443d7b3b9 (IsA jumper coverall) (STV 1.0 0.9091)) +(: cnet_isa_0f6cffcb5f (IsA jumper dress) (STV 1.0 0.9091)) +(: cnet_isa_5b81778d9b (IsA jumper jacket) (STV 1.0 0.9091)) +(: cnet_isa_96dcd0152a (IsA jumper basketball_shot) (STV 1.0 0.9091)) +(: cnet_isa_48afcb5f5a (IsA jumper person) (STV 1.0 0.9091)) +(: cnet_isa_e1b39b7f54 (IsA jumper_cable jumper) (STV 1.0 0.9091)) +(: cnet_isa_1c81e71b7b (IsA jumper_cable wire) (STV 1.0 0.9091)) +(: cnet_isa_d567b0c757 (IsA jumping activity) (STV 1.0 0.9091)) +(: cnet_isa_0925cf13ef (IsA jumping track_and_field) (STV 1.0 0.9091)) +(: cnet_isa_f562e49dda (IsA jumping_at_chance idiom) (STV 1.0 0.9091)) +(: cnet_isa_091c6b61c4 (IsA jumping_bean seed) (STV 1.0 0.9091)) +(: cnet_isa_e91e051c6b (IsA jumping_bristletail thysanuran_insect) (STV 1.0 0.9091)) +(: cnet_isa_d406f1d478 (IsA jumping_jack plaything) (STV 1.0 0.9091)) +(: cnet_isa_303da6cb28 (IsA jumping_mouse rodent) (STV 1.0 0.9091)) +(: cnet_isa_1b18d7caa2 (IsA jumping_off_place beginning) (STV 1.0 0.9091)) +(: cnet_isa_9b93cc577f (IsA jumping_orchid orchid) (STV 1.0 0.9091)) +(: cnet_isa_416387071d (IsA jumping_plant_louse plant_louse) (STV 1.0 0.9091)) +(: cnet_isa_d7ca76c10e (IsA jumping_up_and_down jump) (STV 1.0 0.9091)) +(: cnet_isa_a0e9ea759f (IsA juncaceae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_4e6b54d592 (IsA junco finch) (STV 1.0 0.9091)) +(: cnet_isa_9a1958e657 (IsA junction joining) (STV 1.0 0.9091)) +(: cnet_isa_8e11406fd1 (IsA junction connection) (STV 1.0 0.9091)) +(: cnet_isa_4b10efb6b7 (IsA junction topographic_point) (STV 1.0 0.9091)) +(: cnet_isa_77eb104ea1 (IsA junction union) (STV 1.0 0.9091)) +(: cnet_isa_78540e5431 (IsA junction_barrier junction) (STV 1.0 0.9091)) +(: cnet_isa_6d98a83fd2 (IsA juncture happening) (STV 1.0 0.9091)) +(: cnet_isa_bd82c976a5 (IsA juncture crisis) (STV 1.0 0.9091)) +(: cnet_isa_0f786918cd (IsA juncus monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1829f1a9fd (IsA june gregorian_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_063b20a300 (IsA june_beetle scarabaeid_beetle) (STV 1.0 0.9091)) +(: cnet_isa_96d37c64ec (IsA juneberry shrub) (STV 1.0 0.9091)) +(: cnet_isa_9bd2eb1cc6 (IsA juneberry_holly holly) (STV 1.0 0.9091)) +(: cnet_isa_67f0a80ad6 (IsA jungermanniaceae moss_family) (STV 1.0 0.9091)) +(: cnet_isa_2fdf91ede7 (IsA jungermanniale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_b53cbc2e9f (IsA jungian follower) (STV 1.0 0.9091)) +(: cnet_isa_3fd881dbdb (IsA jungian_psychology psychotherapy) (STV 1.0 0.9091)) +(: cnet_isa_9fae5a0428 (IsA jungle forest) (STV 1.0 0.9091)) +(: cnet_isa_aa795d94ae (IsA jungle location) (STV 1.0 0.9091)) +(: cnet_isa_1bffeb62dc (IsA jungle_cat wildcat) (STV 1.0 0.9091)) +(: cnet_isa_93bd9d325e (IsA jungle_cock jungle_fowl) (STV 1.0 0.9091)) +(: cnet_isa_29b28995b1 (IsA jungle_fever malaria) (STV 1.0 0.9091)) +(: cnet_isa_f0547451aa (IsA jungle_fowl gallinaceous_bird) (STV 1.0 0.9091)) +(: cnet_isa_c263de8cc3 (IsA jungle_gym plaything) (STV 1.0 0.9091)) +(: cnet_isa_df58de4e43 (IsA jungle_gym structure) (STV 1.0 0.9091)) +(: cnet_isa_0e930da849 (IsA jungle_hen jungle_fowl) (STV 1.0 0.9091)) +(: cnet_isa_05c883f192 (IsA jungle_rot skin_disease) (STV 1.0 0.9091)) +(: cnet_isa_83272863be (IsA junin_virus arenavirus) (STV 1.0 0.9091)) +(: cnet_isa_d3b00cc5d5 (IsA junior lowerclassman) (STV 1.0 0.9091)) +(: cnet_isa_33dfabe0f3 (IsA junior person) (STV 1.0 0.9091)) +(: cnet_isa_f722c51dc2 (IsA junior upstart) (STV 1.0 0.9091)) +(: cnet_isa_35db31945a (IsA junior_class class) (STV 1.0 0.9091)) +(: cnet_isa_9d7b5f314c (IsA junior_college college) (STV 1.0 0.9091)) +(: cnet_isa_07dc7622ef (IsA junior_featherweight boxer) (STV 1.0 0.9091)) +(: cnet_isa_db7e35dcc2 (IsA junior_high_school secondary_school) (STV 1.0 0.9091)) +(: cnet_isa_5e09eca215 (IsA junior_lightweight boxer) (STV 1.0 0.9091)) +(: cnet_isa_a8cf68c821 (IsA junior_middleweight boxer) (STV 1.0 0.9091)) +(: cnet_isa_2f27bfdbe0 (IsA junior_school grade_school) (STV 1.0 0.9091)) +(: cnet_isa_0a6c9b30e8 (IsA junior_status subordinateness) (STV 1.0 0.9091)) +(: cnet_isa_f42cf955ab (IsA junior_varsity team) (STV 1.0 0.9091)) +(: cnet_isa_cc72076beb (IsA junior_welterweight boxer) (STV 1.0 0.9091)) +(: cnet_isa_44ee94366b (IsA juniper cypress) (STV 1.0 0.9091)) +(: cnet_isa_429c4bbc54 (IsA juniper_berry flavorer) (STV 1.0 0.9091)) +(: cnet_isa_175a696f41 (IsA juniper_berry fruit) (STV 1.0 0.9091)) +(: cnet_isa_fe469a4f54 (IsA juniperic_acid hydroxy_acid) (STV 1.0 0.9091)) +(: cnet_isa_e37e6e4255 (IsA juniperus gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_57fa57126b (IsA junk boat) (STV 1.0 0.9091)) +(: cnet_isa_bf86df4845 (IsA junk_bond bond) (STV 1.0 0.9091)) +(: cnet_isa_9f3d2bb7bd (IsA junk_dna deoxyribonucleic_acid) (STV 1.0 0.9091)) +(: cnet_isa_8f5ce778f2 (IsA junk_food food) (STV 1.0 0.9091)) +(: cnet_isa_5cd5844f56 (IsA junk_mail third_class_mail) (STV 1.0 0.9091)) +(: cnet_isa_901e86b205 (IsA junk_shop shop) (STV 1.0 0.9091)) +(: cnet_isa_331baf0786 (IsA junker prussian) (STV 1.0 0.9091)) +(: cnet_isa_8ad6237e31 (IsA junket trip) (STV 1.0 0.9091)) +(: cnet_isa_349bae6410 (IsA junket dessert) (STV 1.0 0.9091)) +(: cnet_isa_7872e894c2 (IsA junketing travel) (STV 1.0 0.9091)) +(: cnet_isa_36ea6a167e (IsA junkyard yard) (STV 1.0 0.9091)) +(: cnet_isa_8312f02a11 (IsA jupati raffia_palm) (STV 1.0 0.9091)) +(: cnet_isa_8efb7583f5 (IsA jupiter_s_beard shrub) (STV 1.0 0.9091)) +(: cnet_isa_8174891151 (IsA jupiter gas_planet) (STV 1.0 0.9091)) +(: cnet_isa_393dc71045 (IsA jupiter much_larger_than_earth) (STV 1.0 0.9091)) +(: cnet_isa_bb60372e0d (IsA jupiter planet) (STV 1.0 0.9659)) +(: cnet_isa_8458cd2cbd (IsA jurisdiction district) (STV 1.0 0.9091)) +(: cnet_isa_268541f8a2 (IsA jurisprudence philosophy) (STV 1.0 0.9091)) +(: cnet_isa_b35d3a7286 (IsA jurist expert) (STV 1.0 0.9091)) +(: cnet_isa_e1d6b13d36 (IsA juror panelist) (STV 1.0 0.9091)) +(: cnet_isa_ae64a91509 (IsA jury body) (STV 1.0 0.9091)) +(: cnet_isa_453d122db8 (IsA jury committee) (STV 1.0 0.9091)) +(: cnet_isa_94fca9ca0d (IsA jury_box box) (STV 1.0 0.9091)) +(: cnet_isa_abd7e48edf (IsA jury_duty civic_duty) (STV 1.0 0.9091)) +(: cnet_isa_7e7dc6c321 (IsA jury_mast mast) (STV 1.0 0.9091)) +(: cnet_isa_5fad027825 (IsA jury_system legal_system) (STV 1.0 0.9091)) +(: cnet_isa_71c9e4f22e (IsA jus_sanguinis legal_principle) (STV 1.0 0.9091)) +(: cnet_isa_b4cf5d48c0 (IsA jus_soli legal_principle) (STV 1.0 0.9091)) +(: cnet_isa_014886020b (IsA just_noticeable_difference difference_threshold) (STV 1.0 0.9091)) +(: cnet_isa_4e0d7d0f5a (IsA justice judgment) (STV 1.0 0.9091)) +(: cnet_isa_7d5b948160 (IsA justice natural_virtue) (STV 1.0 0.9091)) +(: cnet_isa_5c178f12a2 (IsA justice righteousness) (STV 1.0 0.9091)) +(: cnet_isa_0f63eabad0 (IsA justice_of_peace magistrate) (STV 1.0 0.9091)) +(: cnet_isa_d68699f691 (IsA justiciar judge) (STV 1.0 0.9091)) +(: cnet_isa_c1362cf23b (IsA justiciary jurisdiction) (STV 1.0 0.9091)) +(: cnet_isa_f1149874c7 (IsA justification vindication) (STV 1.0 0.9091)) +(: cnet_isa_0717b4a4a6 (IsA justification circumstance) (STV 1.0 0.9091)) +(: cnet_isa_a12f423c6b (IsA justification explanation) (STV 1.0 0.9091)) +(: cnet_isa_ebdeb19b70 (IsA justness conformity) (STV 1.0 0.9091)) +(: cnet_isa_aacf8c95fc (IsA jute european) (STV 1.0 0.9091)) +(: cnet_isa_95949097be (IsA jute plant_fiber) (STV 1.0 0.9091)) +(: cnet_isa_efac0fdfc9 (IsA juvenescence growth) (STV 1.0 0.9091)) +(: cnet_isa_5fdff907cb (IsA juvenile person) (STV 1.0 0.9091)) +(: cnet_isa_be6dc1499b (IsA juvenile_body human_body) (STV 1.0 0.9091)) +(: cnet_isa_1d2f136952 (IsA juvenile_court court) (STV 1.0 0.9091)) +(: cnet_isa_fef88da4ae (IsA juvenile_wart wart) (STV 1.0 0.9091)) +(: cnet_isa_6a63c96e31 (IsA juxtaposition placement) (STV 1.0 0.9091)) +(: cnet_isa_84fd74887b (IsA juxtaposition position) (STV 1.0 0.9091)) +(: cnet_isa_cad241cc41 (IsA jynx bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_0b868a638a (IsA k ketamine) (STV 1.0 0.9091)) +(: cnet_isa_e736460add (IsA k letter) (STV 1.0 0.9091)) +(: cnet_isa_08377ab1b6 (IsA k_ration field_ration) (STV 1.0 0.9091)) +(: cnet_isa_f7b190ea56 (IsA ka_ba place_of_worship) (STV 1.0 0.9091)) +(: cnet_isa_6f2db02243 (IsA kabbalah theosophy) (STV 1.0 0.9091)) +(: cnet_isa_3219d9aee7 (IsA kabbalism attachment) (STV 1.0 0.9091)) +(: cnet_isa_71983871a6 (IsA kabbalism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_571ad8880c (IsA kabbalist scholar) (STV 1.0 0.9091)) +(: cnet_isa_570e042f5b (IsA kabob dish) (STV 1.0 0.9091)) +(: cnet_isa_08d00e41e2 (IsA kachin tibeto_burman) (STV 1.0 0.9091)) +(: cnet_isa_c5c4b8162c (IsA kachina doll) (STV 1.0 0.9091)) +(: cnet_isa_301520623b (IsA kachina dancer) (STV 1.0 0.9091)) +(: cnet_isa_d2b5727a81 (IsA kachina spirit) (STV 1.0 0.9091)) +(: cnet_isa_e86d72e503 (IsA kadai sino_tibetan) (STV 1.0 0.9091)) +(: cnet_isa_7c3019deac (IsA kaffir black_african) (STV 1.0 0.9091)) +(: cnet_isa_267923d490 (IsA kaffir_boom coral_tree) (STV 1.0 0.9091)) +(: cnet_isa_f4e409e899 (IsA kaffir_bread cycad) (STV 1.0 0.9091)) +(: cnet_isa_851ac42acc (IsA kaffir_cat wildcat) (STV 1.0 0.9091)) +(: cnet_isa_7c009ab053 (IsA kaffiyeh headdress) (STV 1.0 0.9091)) +(: cnet_isa_0cf7256e11 (IsA kafir afghanistani) (STV 1.0 0.9091)) +(: cnet_isa_9bcdde9d32 (IsA kafiri dard) (STV 1.0 0.9091)) +(: cnet_isa_86694396c7 (IsA kahikatea conifer) (STV 1.0 0.9091)) +(: cnet_isa_1d7fc0fc85 (IsA kahlua coffee_liqueur) (STV 1.0 0.9091)) +(: cnet_isa_cd5a2f4d7d (IsA kai_apple edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_7987ebf91f (IsA kainite mineral) (STV 1.0 0.9091)) +(: cnet_isa_7ee075590f (IsA kaiser emperor) (STV 1.0 0.9091)) +(: cnet_isa_1e87210302 (IsA kaiser_roll bun) (STV 1.0 0.9091)) +(: cnet_isa_df9127b4e4 (IsA kakatoe bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_62b0707256 (IsA kakemono hanging) (STV 1.0 0.9091)) +(: cnet_isa_ec27675d8c (IsA kaki stilt) (STV 1.0 0.9091)) +(: cnet_isa_fa23c16167 (IsA kakke_disease beriberi) (STV 1.0 0.9091)) +(: cnet_isa_b77cde218e (IsA kalansuwa cap) (STV 1.0 0.9091)) +(: cnet_isa_ca3914953f (IsA kalapooian penutian) (STV 1.0 0.9091)) +(: cnet_isa_5c8709b2cb (IsA kalashnikov submachine_gun) (STV 1.0 0.9091)) +(: cnet_isa_83e2a782a7 (IsA kalashnikov_culture culture) (STV 1.0 0.9091)) +(: cnet_isa_1144878320 (IsA kale cabbage) (STV 1.0 0.9091)) +(: cnet_isa_e7f398a8f7 (IsA kale crucifer) (STV 1.0 0.9091)) +(: cnet_isa_16e7952b6e (IsA kaleidoscope plaything) (STV 1.0 0.9091)) +(: cnet_isa_11ff522b79 (IsA kaleidoscope form) (STV 1.0 0.9091)) +(: cnet_isa_5f33a50fad (IsA kalemia state) (STV 1.0 0.9091)) +(: cnet_isa_c5f08dc713 (IsA kaliuresis symptom) (STV 1.0 0.9091)) +(: cnet_isa_a3f9cf4a38 (IsA kallay_s_juniper plant) (STV 1.0 0.9091)) +(: cnet_isa_5c5ed395bc (IsA kallman_s_syndrome hypogonadism) (STV 1.0 0.9091)) +(: cnet_isa_ca8b1707ee (IsA kalmia shrub) (STV 1.0 0.9091)) +(: cnet_isa_7ae673c35e (IsA kalon_tripa president) (STV 1.0 0.9091)) +(: cnet_isa_718d7cf147 (IsA kaloterme arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_bfa15d3f74 (IsA kalotermitidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_d12c46f9c4 (IsA kalumpang sterculia) (STV 1.0 0.9091)) +(: cnet_isa_67d2ee2787 (IsA kam_sui kadai) (STV 1.0 0.9091)) +(: cnet_isa_98650025d5 (IsA kamarupan tibeto_burman) (STV 1.0 0.9091)) +(: cnet_isa_f8d6ea8dac (IsA kamba bantu) (STV 1.0 0.9091)) +(: cnet_isa_0faa462c83 (IsA kamchatkan_sea_eagle sea_eagle) (STV 1.0 0.9091)) +(: cnet_isa_2fe36a7023 (IsA kameez tunic) (STV 1.0 0.9091)) +(: cnet_isa_56623a7afc (IsA kamia yuman) (STV 1.0 0.9091)) +(: cnet_isa_ff7a982426 (IsA kamia hoka) (STV 1.0 0.9091)) +(: cnet_isa_fce689211c (IsA kamikaze fighter) (STV 1.0 0.9091)) +(: cnet_isa_5a3dc9d0f5 (IsA kamikaze pilot) (STV 1.0 0.9091)) +(: cnet_isa_e640260d5a (IsA kamikaze suicide_bomber) (STV 1.0 0.9091)) +(: cnet_isa_7576268572 (IsA kampong village) (STV 1.0 0.9091)) +(: cnet_isa_f9888154fb (IsA kampuchean asiatic) (STV 1.0 0.9091)) +(: cnet_isa_c136db0fb7 (IsA kanchil chevrotain) (STV 1.0 0.9091)) +(: cnet_isa_be3de3b70a (IsA kangaroo marsupial) (STV 1.0 0.9091)) +(: cnet_isa_8dc47039ea (IsA kangaroo_apple nightshade) (STV 1.0 0.9091)) +(: cnet_isa_6f7f2dc463 (IsA kangaroo_court court) (STV 1.0 0.9091)) +(: cnet_isa_0bfdc6a7de (IsA kangaroo_mouse jerboa_rat) (STV 1.0 0.9091)) +(: cnet_isa_1753107450 (IsA kangaroo_mouse pocket_rat) (STV 1.0 0.9091)) +(: cnet_isa_08dd8e2980 (IsA kangaroo_paw herb) (STV 1.0 0.9091)) +(: cnet_isa_5bb9398df5 (IsA kangaroo_rat pocket_rat) (STV 1.0 0.9091)) +(: cnet_isa_9109c24011 (IsA kannada south_dravidian) (STV 1.0 0.9091)) +(: cnet_isa_b77e3c4256 (IsA kansa dhegiha) (STV 1.0 0.9091)) +(: cnet_isa_9cf9c66826 (IsA kansan american) (STV 1.0 0.9091)) +(: cnet_isa_9cc080a356 (IsA kanzu garment) (STV 1.0 0.9091)) +(: cnet_isa_2fa6a06a0c (IsA kaoliang grain_sorghum) (STV 1.0 0.9091)) +(: cnet_isa_04aa87ef83 (IsA kaolinite mineral) (STV 1.0 0.9091)) +(: cnet_isa_fcea124a15 (IsA kaon elementary_particle) (STV 1.0 0.9091)) +(: cnet_isa_6ddd5d2092 (IsA kaon meson) (STV 1.0 0.9091)) +(: cnet_isa_bc3f104038 (IsA kapeika belarusian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_3366d47685 (IsA kaph letter) (STV 1.0 0.9091)) +(: cnet_isa_26632f9b46 (IsA kapok angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_3098cba08a (IsA kapok plant_fiber) (STV 1.0 0.9091)) +(: cnet_isa_0dea920747 (IsA kaposi_s_sarcoma sarcoma) (STV 1.0 0.9091)) +(: cnet_isa_36b966a96d (IsA kappa letter) (STV 1.0 0.9091)) +(: cnet_isa_50fd30d9cf (IsA kapuka shrub) (STV 1.0 0.9091)) +(: cnet_isa_2bed668717 (IsA karaite sect) (STV 1.0 0.9091)) +(: cnet_isa_f002cb0f21 (IsA karakalpak turki) (STV 1.0 0.9091)) +(: cnet_isa_5aa1bf495c (IsA karaoke leisure_activity) (STV 1.0 0.9091)) +(: cnet_isa_fae59ab371 (IsA karaoke singing) (STV 1.0 0.9091)) +(: cnet_isa_f85130f3b1 (IsA karat unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_365f24cd08 (IsA karate martial_art) (STV 1.0 0.9091)) +(: cnet_isa_bf348aea29 (IsA karelian baltic_finnic) (STV 1.0 0.9091)) +(: cnet_isa_af2a8c111d (IsA karen tibeto_burman) (STV 1.0 0.9091)) +(: cnet_isa_c94a8ed17f (IsA karma destiny) (STV 1.0 0.9091)) +(: cnet_isa_6475e0e741 (IsA karok quoratean) (STV 1.0 0.9091)) +(: cnet_isa_1818dfd55a (IsA karok hoka) (STV 1.0 0.9091)) +(: cnet_isa_d07039a0d0 (IsA kartik hindu_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_af1f709e43 (IsA karyokinesis organic_process) (STV 1.0 0.9091)) +(: cnet_isa_f03c3047ce (IsA karyolymph liquid_body_substance) (STV 1.0 0.9091)) +(: cnet_isa_7e6cf794cc (IsA karyolysis lysis) (STV 1.0 0.9091)) +(: cnet_isa_6b8682c7f6 (IsA karyotype constitution) (STV 1.0 0.9091)) +(: cnet_isa_7c113d7126 (IsA kasbah quarter) (STV 1.0 0.9091)) +(: cnet_isa_51c93dbfb7 (IsA kasha hot_cereal) (STV 1.0 0.9091)) +(: cnet_isa_95f0ec1a44 (IsA kashag advisory_board) (STV 1.0 0.9091)) +(: cnet_isa_e449f0ce58 (IsA kashmiri dard) (STV 1.0 0.9091)) +(: cnet_isa_6ad76e0440 (IsA kashmiri indian) (STV 1.0 0.9091)) +(: cnet_isa_7a742e4bf3 (IsA kassite natural_language) (STV 1.0 0.9091)) +(: cnet_isa_e1343ce110 (IsA kat stimulant) (STV 1.0 0.9091)) +(: cnet_isa_37ffb4f899 (IsA katabatic_wind wind) (STV 1.0 0.9091)) +(: cnet_isa_40d3aba8fc (IsA katamorphism metamorphism) (STV 1.0 0.9091)) +(: cnet_isa_bf15ac7a2e (IsA katari arabian) (STV 1.0 0.9091)) +(: cnet_isa_15c1445382 (IsA katharevusa modern_greek) (STV 1.0 0.9091)) +(: cnet_isa_224004979a (IsA katharobe organism) (STV 1.0 0.9091)) +(: cnet_isa_520a34af7a (IsA katharometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_29f531c3c3 (IsA katsura_tree angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_89df3e13f9 (IsA katsuwonidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_b5be66ff99 (IsA katsuwonus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_824c24d18e (IsA katydid long_horned_grasshopper) (STV 1.0 0.9091)) +(: cnet_isa_f7aa5c33dc (IsA kauri kauri_pine) (STV 1.0 0.9091)) +(: cnet_isa_3c1d3dda0b (IsA kauri wood) (STV 1.0 0.9091)) +(: cnet_isa_ca1aa29a62 (IsA kauri copal) (STV 1.0 0.9091)) +(: cnet_isa_62177ac6ed (IsA kauri_pine conifer) (STV 1.0 0.9091)) +(: cnet_isa_03349a357b (IsA kava alcohol) (STV 1.0 0.9091)) +(: cnet_isa_a2410a73ac (IsA kawaka cedar) (STV 1.0 0.9091)) +(: cnet_isa_9457df4273 (IsA kawasaki_disease disease) (STV 1.0 0.9091)) +(: cnet_isa_d2f608f148 (IsA kayak canoe) (STV 1.0 0.9091)) +(: cnet_isa_f74ebb4f6c (IsA kayser_fleischer_ring symptom) (STV 1.0 0.9091)) +(: cnet_isa_1b741bbc9c (IsA kazak turki) (STV 1.0 0.9091)) +(: cnet_isa_779893cefd (IsA kazakh turki) (STV 1.0 0.9091)) +(: cnet_isa_133f7acb5f (IsA kazakhstani asiatic) (STV 1.0 0.9091)) +(: cnet_isa_269e36f0fb (IsA kazakhstani_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_7939a404e9 (IsA kazoo wind_instrument) (STV 1.0 0.9091)) +(: cnet_isa_4d21680a8c (IsA kb computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_2b4095923f (IsA kea parrot) (STV 1.0 0.9091)) +(: cnet_isa_c8fd8fac76 (IsA kedgeree dish) (STV 1.0 0.9091)) +(: cnet_isa_45cb60fb3c (IsA keel beam) (STV 1.0 0.9091)) +(: cnet_isa_395f8d9636 (IsA keel carina) (STV 1.0 0.9091)) +(: cnet_isa_19406e8b87 (IsA keel projection) (STV 1.0 0.9091)) +(: cnet_isa_5a5ef34cb4 (IsA keelboat river_boat) (STV 1.0 0.9091)) +(: cnet_isa_133bea4d87 (IsA keeled_garlic alliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_16df6ce0ed (IsA keelson beam) (STV 1.0 0.9091)) +(: cnet_isa_bc9542319a (IsA keen dirge) (STV 1.0 0.9091)) +(: cnet_isa_ed3959d920 (IsA keep stronghold) (STV 1.0 0.9091)) +(: cnet_isa_797827da06 (IsA keeper defender) (STV 1.0 0.9091)) +(: cnet_isa_0f7d29955a (IsA keeping conformity) (STV 1.0 0.9091)) +(: cnet_isa_6ba2c0e028 (IsA keepsake object) (STV 1.0 0.9091)) +(: cnet_isa_9f43e20851 (IsA keeshond spitz) (STV 1.0 0.9091)) +(: cnet_isa_cab05c5400 (IsA keg barrel) (STV 1.0 0.9091)) +(: cnet_isa_f3e3911ff0 (IsA keg containerful) (STV 1.0 0.9091)) +(: cnet_isa_667113e7df (IsA kegel_exercis exercise) (STV 1.0 0.9091)) +(: cnet_isa_58bfe15d69 (IsA kei_apple shrub) (STV 1.0 0.9091)) +(: cnet_isa_a45a69ebad (IsA kekchi maya) (STV 1.0 0.9091)) +(: cnet_isa_f0b130993c (IsA kekchi mayan) (STV 1.0 0.9091)) +(: cnet_isa_c4e0c8d977 (IsA keloid scar) (STV 1.0 0.9091)) +(: cnet_isa_dfcda203e9 (IsA kelp brown_algae) (STV 1.0 0.9091)) +(: cnet_isa_c064295244 (IsA kelp_greenling greenling) (STV 1.0 0.9091)) +(: cnet_isa_b7789ea827 (IsA kelpie shepherd_dog) (STV 1.0 0.9091)) +(: cnet_isa_ef4d3fbc0a (IsA kelpy evil_spirit) (STV 1.0 0.9091)) +(: cnet_isa_4eaa30c623 (IsA kelt european) (STV 1.0 0.9091)) +(: cnet_isa_3e38ae31d9 (IsA kelvin temperature_unit) (STV 1.0 0.9091)) +(: cnet_isa_ed2d6304ff (IsA kelvin_scale temperature_scale) (STV 1.0 0.9091)) +(: cnet_isa_d30550b301 (IsA kenaf hemp) (STV 1.0 0.9091)) +(: cnet_isa_e4507b4ccd (IsA kenaf hibiscus) (STV 1.0 0.9091)) +(: cnet_isa_fdcab98397 (IsA kendal_green dye) (STV 1.0 0.9091)) +(: cnet_isa_290af95663 (IsA kendall_partial_rank_correlation kendall_test) (STV 1.0 0.9091)) +(: cnet_isa_59ca6545f8 (IsA kendall_test nonparametric_statistic) (STV 1.0 0.9091)) +(: cnet_isa_f199b4ee9a (IsA kennedia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_115f0bc6b9 (IsA kennel outbuilding) (STV 1.0 0.9091)) +(: cnet_isa_4c1de74a97 (IsA kennel shelter) (STV 1.0 0.9091)) +(: cnet_isa_9c47756e2e (IsA kenning trope) (STV 1.0 0.9091)) +(: cnet_isa_fed28fe850 (IsA kenosis content) (STV 1.0 0.9091)) +(: cnet_isa_9afa0af45b (IsA kentish middle_english) (STV 1.0 0.9091)) +(: cnet_isa_d2e8e2356e (IsA kentish old_english) (STV 1.0 0.9091)) +(: cnet_isa_6a74fcbe56 (IsA kentucky_black_bass black_bass) (STV 1.0 0.9091)) +(: cnet_isa_ee2eda56c6 (IsA kentucky_bluegrass bluegrass) (STV 1.0 0.9091)) +(: cnet_isa_641e691583 (IsA kentucky_coffee_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_d76bd16735 (IsA kentucky_derby horse_race) (STV 1.0 0.9091)) +(: cnet_isa_6116ea1a12 (IsA kentucky_derby thoroughbred_race) (STV 1.0 0.9091)) +(: cnet_isa_cf88b97447 (IsA kentucky_wonder green_bean) (STV 1.0 0.9091)) +(: cnet_isa_ddf8d310df (IsA kentucky_yellowwood angiospermous_yellowwood) (STV 1.0 0.9091)) +(: cnet_isa_67c5c5eae2 (IsA kenyan african) (STV 1.0 0.9091)) +(: cnet_isa_5f3447560f (IsA kenyan_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_8fe5dd38bd (IsA kenyan_shilling kenyan_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_ec78616bda (IsA kenyapithecus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_b23789408b (IsA keogh_plan pension_plan) (STV 1.0 0.9091)) +(: cnet_isa_e2e6874c7a (IsA kepi cap) (STV 1.0 0.9091)) +(: cnet_isa_c12f651ff0 (IsA kepler_s_first_law kepler_s_law) (STV 1.0 0.9091)) +(: cnet_isa_3c403586ab (IsA kepler_s_law law) (STV 1.0 0.9091)) +(: cnet_isa_16ea7f713a (IsA kepler_s_second_law kepler_s_law) (STV 1.0 0.9091)) +(: cnet_isa_ddc33e6bce (IsA kepler_s_third_law kepler_s_law) (STV 1.0 0.9091)) +(: cnet_isa_1efdcd7450 (IsA kera east_chadic) (STV 1.0 0.9091)) +(: cnet_isa_a058bc41f9 (IsA keratalgia pain) (STV 1.0 0.9091)) +(: cnet_isa_b180302a5d (IsA keratectasia astigmatism) (STV 1.0 0.9091)) +(: cnet_isa_2e5a15225c (IsA keratin scleroprotein) (STV 1.0 0.9091)) +(: cnet_isa_3872462874 (IsA keratinization organic_process) (STV 1.0 0.9091)) +(: cnet_isa_7bd79662ea (IsA keratitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_cba3a7aed7 (IsA keratoacanthoma acanthoma) (STV 1.0 0.9091)) +(: cnet_isa_112be860c7 (IsA keratocele hernia) (STV 1.0 0.9091)) +(: cnet_isa_1a1e7887b1 (IsA keratoconjunctivitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_4c7cd580b0 (IsA keratoconus astigmatism) (STV 1.0 0.9091)) +(: cnet_isa_a72e8d38b7 (IsA keratoderma skin_disease) (STV 1.0 0.9091)) +(: cnet_isa_454cb0029f (IsA keratohyalin hyaline) (STV 1.0 0.9091)) +(: cnet_isa_8cb0367367 (IsA keratoiritis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_f7ca25ba41 (IsA keratomalacia symptom) (STV 1.0 0.9091)) +(: cnet_isa_364c1481e0 (IsA keratomycosis fungal_infection) (STV 1.0 0.9091)) +(: cnet_isa_cfeaa7f24e (IsA keratonosis skin_disease) (STV 1.0 0.9091)) +(: cnet_isa_a04f772813 (IsA keratonosus eye_disease) (STV 1.0 0.9091)) +(: cnet_isa_d81c1c4cb6 (IsA keratoplasty plastic_surgery) (STV 1.0 0.9091)) +(: cnet_isa_1ba28494c6 (IsA keratoplasty transplant) (STV 1.0 0.9091)) +(: cnet_isa_c75dbb445e (IsA keratoscleritis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_beb788be95 (IsA keratoscope medical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_6805ee04ab (IsA keratoscopy examination) (STV 1.0 0.9091)) +(: cnet_isa_1709d2c7c8 (IsA keratosis skin_disease) (STV 1.0 0.9091)) +(: cnet_isa_6e82d22f4e (IsA keratosis_blennorrhagica keratosis) (STV 1.0 0.9091)) +(: cnet_isa_0d1d7957c8 (IsA keratosis_follicularis keratosis) (STV 1.0 0.9091)) +(: cnet_isa_489ee2fe21 (IsA keratosis_pilaris keratosis) (STV 1.0 0.9091)) +(: cnet_isa_b993b05efe (IsA keratotomy eye_operation) (STV 1.0 0.9091)) +(: cnet_isa_016b01378e (IsA kerb_crawler driver) (STV 1.0 0.9091)) +(: cnet_isa_ff74cf3a51 (IsA kerchief scarf) (STV 1.0 0.9091)) +(: cnet_isa_c68379744a (IsA kerion tinea) (STV 1.0 0.9091)) +(: cnet_isa_ed6a4fca69 (IsA kern type) (STV 1.0 0.9091)) +(: cnet_isa_04ce49db45 (IsA kernel content) (STV 1.0 0.9091)) +(: cnet_isa_878b81de4b (IsA kernel grain) (STV 1.0 0.9091)) +(: cnet_isa_1197492833 (IsA kernel plant_part) (STV 1.0 0.9091)) +(: cnet_isa_860c3d35e5 (IsA kernicterus jaundice) (STV 1.0 0.9091)) +(: cnet_isa_648a0b4934 (IsA kernig_s_sign symptom) (STV 1.0 0.9091)) +(: cnet_isa_c9d837964d (IsA kerning important_part_of_typography) (STV 1.0 0.9339)) +(: cnet_isa_b5a23c0a73 (IsA kernite mineral) (STV 1.0 0.9091)) +(: cnet_isa_7f942fddb5 (IsA kerosene fuel) (STV 1.0 0.9091)) +(: cnet_isa_eb6acf38a1 (IsA kerosene hydrocarbon) (STV 1.0 0.9091)) +(: cnet_isa_8b6f9437b1 (IsA kerr_cell optical_device) (STV 1.0 0.9091)) +(: cnet_isa_3178bf057a (IsA kerry_blue_terrier terrier) (STV 1.0 0.9091)) +(: cnet_isa_3d40b8fc4d (IsA kerygma sermon) (STV 1.0 0.9091)) +(: cnet_isa_0ab4f0dd4d (IsA kestrel falcon) (STV 1.0 0.9091)) +(: cnet_isa_d4fde48458 (IsA ketamine club_drug) (STV 1.0 0.9091)) +(: cnet_isa_974443e350 (IsA ketamine general_anesthetic) (STV 1.0 0.9091)) +(: cnet_isa_9094972665 (IsA ketch sailing_vessel) (STV 1.0 0.9091)) +(: cnet_isa_5299f044df (IsA ketchup condiment) (STV 1.0 0.9454)) +(: cnet_isa_0bdd0ceab9 (IsA keteleeria conifer) (STV 1.0 0.9091)) +(: cnet_isa_bcc6f91b29 (IsA ketembilla edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_8f3abbbc36 (IsA ketembilla tree) (STV 1.0 0.9091)) +(: cnet_isa_accfb5367d (IsA ketoacidosis acidosis) (STV 1.0 0.9091)) +(: cnet_isa_4c4dac4147 (IsA ketohexose hexose) (STV 1.0 0.9091)) +(: cnet_isa_95056877eb (IsA ketohexose ketose) (STV 1.0 0.9091)) +(: cnet_isa_37d3aa0c58 (IsA ketone organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_d2e1543601 (IsA ketone_body ketone) (STV 1.0 0.9091)) +(: cnet_isa_8e80c189bd (IsA ketone_group group) (STV 1.0 0.9091)) +(: cnet_isa_38206ddac5 (IsA ketonemia symptom) (STV 1.0 0.9091)) +(: cnet_isa_17bd544c48 (IsA ketonuria symptom) (STV 1.0 0.9091)) +(: cnet_isa_1046f91a89 (IsA ketose monosaccharide) (STV 1.0 0.9091)) +(: cnet_isa_15ce23c68a (IsA ketosteroid steroid) (STV 1.0 0.9091)) +(: cnet_isa_939a21e4d5 (IsA kettle percussion_instrument) (STV 1.0 0.9091)) +(: cnet_isa_a07a2b0746 (IsA kettle pot) (STV 1.0 0.9091)) +(: cnet_isa_9d7e067e0a (IsA kettle containerful) (STV 1.0 0.9091)) +(: cnet_isa_d1c4cae72f (IsA kettle_hole hole) (STV 1.0 0.9091)) +(: cnet_isa_158183fc34 (IsA keurboom tree) (STV 1.0 0.9091)) +(: cnet_isa_774af890d6 (IsA key device) (STV 1.0 0.9091)) +(: cnet_isa_2dede94b2f (IsA key lever) (STV 1.0 0.9091)) +(: cnet_isa_c1f157354b (IsA key pitch) (STV 1.0 0.9091)) +(: cnet_isa_533a2556b6 (IsA key space) (STV 1.0 0.9091)) +(: cnet_isa_1b03a886a1 (IsA key explanation) (STV 1.0 0.9091)) +(: cnet_isa_0fc4d99283 (IsA key list) (STV 1.0 0.9091)) +(: cnet_isa_4f962debe5 (IsA key musical_notation) (STV 1.0 0.9091)) +(: cnet_isa_6c0f4bbdfe (IsA key positive_identification) (STV 1.0 0.9091)) +(: cnet_isa_7dc31ca2f0 (IsA key coral_reef) (STV 1.0 0.9091)) +(: cnet_isa_aa6e79825d (IsA key kilogram) (STV 1.0 0.9091)) +(: cnet_isa_eb6cd08ac1 (IsA key_lime lime) (STV 1.0 0.9091)) +(: cnet_isa_e569221b4b (IsA key_palm fan_palm) (STV 1.0 0.9091)) +(: cnet_isa_3c5b1edbc8 (IsA key_ring hoop) (STV 1.0 0.9091)) +(: cnet_isa_197225dd04 (IsA key_signature musical_notation) (STV 1.0 0.9091)) +(: cnet_isa_9dcd2d8814 (IsA key_stroke stroke) (STV 1.0 0.9091)) +(: cnet_isa_66038c5dd7 (IsA key_word key) (STV 1.0 0.9091)) +(: cnet_isa_d205fb8c29 (IsA key_word word) (STV 1.0 0.9091)) +(: cnet_isa_53c837ad29 (IsA keyboard device) (STV 1.0 0.9091)) +(: cnet_isa_6e9fe7da86 (IsA keyboard holder) (STV 1.0 0.9091)) +(: cnet_isa_fa9cb1d3dd (IsA keyboard_buffer buffer) (STV 1.0 0.9091)) +(: cnet_isa_89b27fbb4f (IsA keyboard_instrument musical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_2e4aa4f314 (IsA keyboardist musician) (STV 1.0 0.9091)) +(: cnet_isa_d43554de09 (IsA keycard card) (STV 1.0 0.9091)) +(: cnet_isa_48d44569dc (IsA keyhole hole) (STV 1.0 0.9091)) +(: cnet_isa_cf8362030d (IsA keyhole_limpet limpet) (STV 1.0 0.9091)) +(: cnet_isa_68dfb29e0b (IsA keyhole_saw handsaw) (STV 1.0 0.9091)) +(: cnet_isa_6d061c23f9 (IsA keynesian follower) (STV 1.0 0.9091)) +(: cnet_isa_897f023f53 (IsA keynesianism economic_theory) (STV 1.0 0.9091)) +(: cnet_isa_c79a5ca794 (IsA keynote idea) (STV 1.0 0.9091)) +(: cnet_isa_81bac2ff08 (IsA keynote subject) (STV 1.0 0.9091)) +(: cnet_isa_e1b2831a1c (IsA keynote_speech oratory) (STV 1.0 0.9091)) +(: cnet_isa_713ca7ffa5 (IsA keystone building_block) (STV 1.0 0.9091)) +(: cnet_isa_6d7fba6e6c (IsA keystone_stater american) (STV 1.0 0.9091)) +(: cnet_isa_d9bc59b459 (IsA khadi fabric) (STV 1.0 0.9091)) +(: cnet_isa_a87dfaa13c (IsA khaki fabric) (STV 1.0 0.9091)) +(: cnet_isa_82696670f7 (IsA khakis military_uniform) (STV 1.0 0.9091)) +(: cnet_isa_d3b2730e0e (IsA khalka mongolian) (STV 1.0 0.9091)) +(: cnet_isa_cebc7d6aa7 (IsA khalkha mongolian) (STV 1.0 0.9091)) +(: cnet_isa_e01489593e (IsA khalsa religion) (STV 1.0 0.9091)) +(: cnet_isa_09ebb6d0a5 (IsA khamsin wind) (STV 1.0 0.9091)) +(: cnet_isa_e0003c0fcd (IsA khamti tai) (STV 1.0 0.9091)) +(: cnet_isa_fa19a40778 (IsA khan ruler) (STV 1.0 0.9091)) +(: cnet_isa_403618f514 (IsA khanate position) (STV 1.0 0.9091)) +(: cnet_isa_89f5107d2d (IsA khanate domain) (STV 1.0 0.9091)) +(: cnet_isa_b782ff7e21 (IsA khanty ugric) (STV 1.0 0.9091)) +(: cnet_isa_a6947b8191 (IsA khanty russian) (STV 1.0 0.9091)) +(: cnet_isa_a2da1443e1 (IsA khaya rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5a66ef3f6b (IsA khedive viceroy) (STV 1.0 0.9091)) +(: cnet_isa_e56f1ea925 (IsA khimar headscarf) (STV 1.0 0.9091)) +(: cnet_isa_c36e1738dd (IsA khirghiz turki) (STV 1.0 0.9091)) +(: cnet_isa_97d5855a5d (IsA khmer mon_khmer) (STV 1.0 0.9091)) +(: cnet_isa_2fbeca3535 (IsA khmer kampuchean) (STV 1.0 0.9091)) +(: cnet_isa_d235ac58ec (IsA khoikhoin khoisan) (STV 1.0 0.9091)) +(: cnet_isa_3a33f023c0 (IsA khoisan natural_language) (STV 1.0 0.9091)) +(: cnet_isa_040558bc21 (IsA khoum mauritanian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_749a543f7e (IsA khowar dard) (STV 1.0 0.9091)) +(: cnet_isa_b29996593e (IsA khuen tai) (STV 1.0 0.9091)) +(: cnet_isa_fc1ddad0f7 (IsA khukuri knife) (STV 1.0 0.9091)) +(: cnet_isa_f687a563ad (IsA kia_quen torture) (STV 1.0 0.9091)) +(: cnet_isa_58425189d0 (IsA kiang wild_ass) (STV 1.0 0.9091)) +(: cnet_isa_f02820456d (IsA kibble bucket) (STV 1.0 0.9091)) +(: cnet_isa_01a96dd500 (IsA kibble meal) (STV 1.0 0.9091)) +(: cnet_isa_7197c725c6 (IsA kibbutz collective_farm) (STV 1.0 0.9091)) +(: cnet_isa_59685105b4 (IsA kibbutznik member) (STV 1.0 0.9091)) +(: cnet_isa_4fc1a304df (IsA kibe chilblain) (STV 1.0 0.9091)) +(: cnet_isa_d71f944077 (IsA kibibit computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_eec6205344 (IsA kibitzer meddler) (STV 1.0 0.9091)) +(: cnet_isa_2ca1e3c803 (IsA kichaga bantu) (STV 1.0 0.9091)) +(: cnet_isa_ec88ba2947 (IsA kichai caddo) (STV 1.0 0.9091)) +(: cnet_isa_8660876c60 (IsA kick blow) (STV 1.0 0.9091)) +(: cnet_isa_7d0a179123 (IsA kick motion) (STV 1.0 0.9091)) +(: cnet_isa_62300f2b67 (IsA kick stimulation) (STV 1.0 0.9091)) +(: cnet_isa_8c17bb9fa0 (IsA kick_in_butt corporal_punishment) (STV 1.0 0.9091)) +(: cnet_isa_768be495e4 (IsA kick_pleat pleat) (STV 1.0 0.9091)) +(: cnet_isa_85715fc900 (IsA kick_starter starter) (STV 1.0 0.9091)) +(: cnet_isa_1e81d1d42b (IsA kick_turn turn) (STV 1.0 0.9091)) +(: cnet_isa_dd0898133b (IsA kick_up exercise) (STV 1.0 0.9091)) +(: cnet_isa_cd4426d536 (IsA kickapoo algonquian) (STV 1.0 0.9091)) +(: cnet_isa_2242a38057 (IsA kickapoo algonquin) (STV 1.0 0.9091)) +(: cnet_isa_6ccc77494e (IsA kickback bribe) (STV 1.0 0.9091)) +(: cnet_isa_681ab670d9 (IsA kicker football_player) (STV 1.0 0.9091)) +(: cnet_isa_65f602d974 (IsA kickoff start) (STV 1.0 0.9091)) +(: cnet_isa_51f05456dc (IsA kickoff beginning) (STV 1.0 0.9091)) +(: cnet_isa_5130b8b884 (IsA kickoff place_kick) (STV 1.0 0.9091)) +(: cnet_isa_687ee523f7 (IsA kicksorter scientific_instrument) (STV 1.0 0.9091)) +(: cnet_isa_6b66894f0a (IsA kickstand rod) (STV 1.0 0.9091)) +(: cnet_isa_6c40fd0faf (IsA kid goat) (STV 1.0 0.9091)) +(: cnet_isa_876bce44ee (IsA kid leather) (STV 1.0 0.9091)) +(: cnet_isa_98cb5c95f5 (IsA kid_glove glove) (STV 1.0 0.9091)) +(: cnet_isa_6b20f327c5 (IsA kiddy child) (STV 1.0 0.9091)) +(: cnet_isa_92524ebfc2 (IsA kidnapper captor) (STV 1.0 0.9091)) +(: cnet_isa_0e110c3549 (IsA kidnapper criminal) (STV 1.0 0.9091)) +(: cnet_isa_2c10785f51 (IsA kidnapping capture) (STV 1.0 0.9091)) +(: cnet_isa_6bc39bce92 (IsA kidney excretory_organ) (STV 1.0 0.9091)) +(: cnet_isa_fd7dd9eb07 (IsA kidney_bean common_bean) (STV 1.0 0.9091)) +(: cnet_isa_728d337bf9 (IsA kidney_disease uropathy) (STV 1.0 0.9091)) +(: cnet_isa_3342040e9a (IsA kidney_fern bristle_fern) (STV 1.0 0.9091)) +(: cnet_isa_e989e450be (IsA kidney_pie meat_pie) (STV 1.0 0.9091)) +(: cnet_isa_a9ded75cbb (IsA kidney_stone calculus) (STV 1.0 0.9091)) +(: cnet_isa_47bd376237 (IsA kidney_vetch herb) (STV 1.0 0.9091)) +(: cnet_isa_6317245171 (IsA kidney organ_in_body) (STV 1.0 0.9091)) +(: cnet_isa_c6561ca803 (IsA kieserite mineral) (STV 1.0 0.9091)) +(: cnet_isa_2cb2eec997 (IsA kiggelaria dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a69acb590b (IsA kike israelite) (STV 1.0 0.9091)) +(: cnet_isa_4939176529 (IsA kilderkin british_capacity_unit) (STV 1.0 0.9091)) +(: cnet_isa_2724966917 (IsA kiliwa yuman) (STV 1.0 0.9091)) +(: cnet_isa_9559ab125f (IsA kiliwi hoka) (STV 1.0 0.9091)) +(: cnet_isa_cb2e9e1f91 (IsA kill crime) (STV 1.0 0.9091)) +(: cnet_isa_2337d2b30c (IsA kill destruction) (STV 1.0 0.9091)) +(: cnet_isa_563cb92e7d (IsA kill body) (STV 1.0 0.9091)) +(: cnet_isa_97e71f3052 (IsA kill_zone zone) (STV 1.0 0.9091)) +(: cnet_isa_2e18e40476 (IsA killarney_fern bristle_fern) (STV 1.0 0.9091)) +(: cnet_isa_6d43ff5024 (IsA killdeer plover) (STV 1.0 0.9091)) +(: cnet_isa_a486f5700e (IsA killer difficulty) (STV 1.0 0.9091)) +(: cnet_isa_06710f4b7c (IsA killer person) (STV 1.0 0.9091)) +(: cnet_isa_dba50a4f25 (IsA killer_bee investment_banker) (STV 1.0 0.9091)) +(: cnet_isa_999b81b502 (IsA killer_t_cell t_cell) (STV 1.0 0.9091)) +(: cnet_isa_d6adf9d1da (IsA killer_whale dolphin) (STV 1.0 0.9091)) +(: cnet_isa_2e8abe321b (IsA killifish cyprinodont) (STV 1.0 0.9091)) +(: cnet_isa_7ed2da2c6b (IsA killing termination) (STV 1.0 0.9091)) +(: cnet_isa_9588fe5ade (IsA killing fatality) (STV 1.0 0.9091)) +(: cnet_isa_f112ccbbb8 (IsA killing net_income) (STV 1.0 0.9091)) +(: cnet_isa_50fde055c7 (IsA killing_field geographical_area) (STV 1.0 0.9091)) +(: cnet_isa_62219e2890 (IsA kiln furnace) (STV 1.0 0.9091)) +(: cnet_isa_fe121c156b (IsA kilobit computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_01f60afa8a (IsA kilobyte computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_c0d9ce0aae (IsA kilogram measure_of_weight) (STV 1.0 0.9091)) +(: cnet_isa_f11ba9281b (IsA kilogram metric_weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_29ca5c75c9 (IsA kilogram_meter work_unit) (STV 1.0 0.9091)) +(: cnet_isa_3992318de2 (IsA kilohertz rate) (STV 1.0 0.9091)) +(: cnet_isa_92780738ed (IsA kiloliter metric_capacity_unit) (STV 1.0 0.9091)) +(: cnet_isa_0539e9af72 (IsA kilometer metric_linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_ef61e68835 (IsA kilometer_per_hour rate) (STV 1.0 0.9091)) +(: cnet_isa_42872619d5 (IsA kiloton avoirdupois_unit) (STV 1.0 0.9091)) +(: cnet_isa_84e5e41a58 (IsA kiloton explosive_unit) (STV 1.0 0.9091)) +(: cnet_isa_50d99cd5b9 (IsA kilovolt potential_unit) (STV 1.0 0.9091)) +(: cnet_isa_370e80d0be (IsA kilovolt_ampere power_unit) (STV 1.0 0.9091)) +(: cnet_isa_38f5405969 (IsA kilowatt power_unit) (STV 1.0 0.9091)) +(: cnet_isa_abe410d987 (IsA kilowatt_hour work_unit) (STV 1.0 0.9091)) +(: cnet_isa_693a6ebe88 (IsA kilt skirt) (STV 1.0 0.9091)) +(: cnet_isa_bcf2672a1e (IsA kilter orderliness) (STV 1.0 0.9091)) +(: cnet_isa_73a61df3c4 (IsA kimberlite peridotite) (STV 1.0 0.9091)) +(: cnet_isa_5ffa829a6b (IsA kimono robe) (STV 1.0 0.9091)) +(: cnet_isa_251f76e37f (IsA kin social_group) (STV 1.0 0.9091)) +(: cnet_isa_8a686a0ec3 (IsA kin relative) (STV 1.0 0.9091)) +(: cnet_isa_f88fcd8df1 (IsA kina papuan_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_d99fb159fe (IsA kinanesthesia proprioception) (STV 1.0 0.9091)) +(: cnet_isa_e694be161a (IsA kinase enzyme) (STV 1.0 0.9091)) +(: cnet_isa_d15d0876be (IsA kind category) (STV 1.0 0.9091)) +(: cnet_isa_f51fa46872 (IsA kindergarten preschool) (STV 1.0 0.9091)) +(: cnet_isa_693dd42ee7 (IsA kindheartedness sympathy) (STV 1.0 0.9091)) +(: cnet_isa_be4b3c5d08 (IsA kindliness friendliness) (STV 1.0 0.9091)) +(: cnet_isa_4e788a940c (IsA kindling igniter) (STV 1.0 0.9091)) +(: cnet_isa_c112dbd094 (IsA kindness human_virtue) (STV 1.0 0.9091)) +(: cnet_isa_10bb86bad5 (IsA kindness action) (STV 1.0 0.9091)) +(: cnet_isa_db8e6a31db (IsA kindness good) (STV 1.0 0.9091)) +(: cnet_isa_69b84a9e5a (IsA kinematic mechanic) (STV 1.0 0.9091)) +(: cnet_isa_b3f19c8197 (IsA kinescope cathode_ray_tube) (STV 1.0 0.9091)) +(: cnet_isa_d9cafeb7de (IsA kinesiology physiology) (STV 1.0 0.9091)) +(: cnet_isa_c4386b5dcb (IsA kinesis reaction) (STV 1.0 0.9091)) +(: cnet_isa_bebeed475a (IsA kinesthesia somatosense) (STV 1.0 0.9091)) +(: cnet_isa_43ccc19670 (IsA kinesthesia somesthesia) (STV 1.0 0.9091)) +(: cnet_isa_8ec500e590 (IsA kinesthesis proprioception) (STV 1.0 0.9091)) +(: cnet_isa_3118463864 (IsA kinetic_energy mechanical_energy) (STV 1.0 0.9091)) +(: cnet_isa_a02ffdabf0 (IsA kinetic_theory scientific_theory) (STV 1.0 0.9091)) +(: cnet_isa_b6c0ead995 (IsA kinetic_theory_of_heat kinetic_theory) (STV 1.0 0.9091)) +(: cnet_isa_98dd85a330 (IsA king_s_counsel counsel_to_crown) (STV 1.0 0.9091)) +(: cnet_isa_9f78e6a761 (IsA king_s_english english) (STV 1.0 0.9091)) +(: cnet_isa_d37a8cbb23 (IsA king_s_ransom treasure) (STV 1.0 0.9091)) +(: cnet_isa_b7b2ecafa5 (IsA king_s_spear asphodel) (STV 1.0 0.9091)) +(: cnet_isa_afb1ad1d9e (IsA king chess_piece) (STV 1.0 0.9091)) +(: cnet_isa_104c1a33f8 (IsA king royalty) (STV 1.0 0.9091)) +(: cnet_isa_e2acac32da (IsA king ruler_of_country) (STV 1.0 0.9091)) +(: cnet_isa_46d19cabe8 (IsA king face_card) (STV 1.0 0.9091)) +(: cnet_isa_e3f4343048 (IsA king checker) (STV 1.0 0.9091)) +(: cnet_isa_308f5b985c (IsA king chessman) (STV 1.0 0.9091)) +(: cnet_isa_dc061adf80 (IsA king sovereign) (STV 1.0 0.9091)) +(: cnet_isa_278164390f (IsA king eminence) (STV 1.0 0.9091)) +(: cnet_isa_66f7fd046e (IsA king_charle_spaniel toy_spaniel) (STV 1.0 0.9091)) +(: cnet_isa_ae61d351cb (IsA king_crab crab) (STV 1.0 0.9091)) +(: cnet_isa_47a8d0ec67 (IsA king_devil weed) (STV 1.0 0.9091)) +(: cnet_isa_07f21d583d (IsA king_mackerel spanish_mackerel) (STV 1.0 0.9091)) +(: cnet_isa_e01b00bf0e (IsA king_of_france king) (STV 1.0 0.9091)) +(: cnet_isa_b6272a8842 (IsA king_of_german king) (STV 1.0 0.9091)) +(: cnet_isa_5be6537abd (IsA king_of_great_britain king) (STV 1.0 0.9091)) +(: cnet_isa_60adaed90b (IsA king_penguin penguin) (STV 1.0 0.9091)) +(: cnet_isa_3034ddb7b9 (IsA king_post post) (STV 1.0 0.9091)) +(: cnet_isa_0519d6a8c0 (IsA king_snake colubrid_snake) (STV 1.0 0.9091)) +(: cnet_isa_d6fe03180a (IsA king_vulture new_world_vulture) (STV 1.0 0.9091)) +(: cnet_isa_98cf178325 (IsA king_whiting whiting) (STV 1.0 0.9091)) +(: cnet_isa_a934b0faac (IsA king_william_pine conifer) (STV 1.0 0.9091)) +(: cnet_isa_f554aef673 (IsA kingbird new_world_flycatcher) (STV 1.0 0.9091)) +(: cnet_isa_ab9c90a2b2 (IsA kingbolt bolt) (STV 1.0 0.9091)) +(: cnet_isa_9c152cfa3d (IsA kingdom group) (STV 1.0 0.9091)) +(: cnet_isa_51d4b231e3 (IsA kingdom monarchy) (STV 1.0 0.9091)) +(: cnet_isa_ce84764cc4 (IsA kingdom taxonomic_group) (STV 1.0 0.9091)) +(: cnet_isa_d011a449c7 (IsA kingdom country) (STV 1.0 0.9091)) +(: cnet_isa_643c6e510d (IsA kingdom domain) (STV 1.0 0.9091)) +(: cnet_isa_539b7f5021 (IsA kingdom sphere) (STV 1.0 0.9091)) +(: cnet_isa_33f5be4d6f (IsA kingdom_come afterlife) (STV 1.0 0.9091)) +(: cnet_isa_2a33f8775b (IsA kingdom_come future) (STV 1.0 0.9091)) +(: cnet_isa_b8c2a10879 (IsA kingdom_of_god spiritual_world) (STV 1.0 0.9091)) +(: cnet_isa_7dcbc7b778 (IsA kingfish jack) (STV 1.0 0.9091)) +(: cnet_isa_7e809f5f33 (IsA kingfish whiting) (STV 1.0 0.9091)) +(: cnet_isa_79e6976652 (IsA kingfish saltwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_619bf1761b (IsA kingfisher bird) (STV 1.0 0.9339)) +(: cnet_isa_f1fbee5553 (IsA kingfisher coraciiform_bird) (STV 1.0 0.9091)) +(: cnet_isa_f3166447f5 (IsA kingfisher_daisy flower) (STV 1.0 0.9091)) +(: cnet_isa_d6b6923aff (IsA kinglet warbler) (STV 1.0 0.9091)) +(: cnet_isa_d76baf0e5e (IsA kingmaker important_person) (STV 1.0 0.9091)) +(: cnet_isa_0a65f6e99c (IsA kingpin important_person) (STV 1.0 0.9091)) +(: cnet_isa_152de6cfad (IsA kingship rank) (STV 1.0 0.9091)) +(: cnet_isa_8b4b5d37de (IsA kingwood tree) (STV 1.0 0.9091)) +(: cnet_isa_be18c6b88d (IsA kingwood wood) (STV 1.0 0.9091)) +(: cnet_isa_fe15aa8e73 (IsA kinin phytohormone) (STV 1.0 0.9091)) +(: cnet_isa_7203deaca6 (IsA kink difficulty) (STV 1.0 0.9091)) +(: cnet_isa_540759330b (IsA kink idea) (STV 1.0 0.9091)) +(: cnet_isa_f02a987b06 (IsA kink person) (STV 1.0 0.9091)) +(: cnet_isa_cba79ff9c8 (IsA kink fold) (STV 1.0 0.9091)) +(: cnet_isa_b5fbf279ae (IsA kinkajou procyonid) (STV 1.0 0.9091)) +(: cnet_isa_906a4c369b (IsA kino tree) (STV 1.0 0.9091)) +(: cnet_isa_76a2662b45 (IsA kino gum) (STV 1.0 0.9091)) +(: cnet_isa_e7e107edff (IsA kinosternidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_70a82a10b5 (IsA kinosternon reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_5a21d92621 (IsA kinship relation) (STV 1.0 0.9091)) +(: cnet_isa_6cd7f2288d (IsA kinship_system arrangement) (STV 1.0 0.9091)) +(: cnet_isa_a3358d4e4f (IsA kinsman relative) (STV 1.0 0.9091)) +(: cnet_isa_7e32953742 (IsA kinswoman relative) (STV 1.0 0.9091)) +(: cnet_isa_75f4e83509 (IsA kinyarwanda bantu) (STV 1.0 0.9091)) +(: cnet_isa_f7e4138061 (IsA kiowa tanoan) (STV 1.0 0.9091)) +(: cnet_isa_d6a4d7ace3 (IsA kiowa buffalo_indian) (STV 1.0 0.9091)) +(: cnet_isa_e2587ae9d3 (IsA kip gymnastic_exercise) (STV 1.0 0.9091)) +(: cnet_isa_e31e9f30c2 (IsA kip laotian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_9c5d71387d (IsA kip sleep) (STV 1.0 0.9091)) +(: cnet_isa_2ed0086bf0 (IsA kipp_s_apparatus apparatus) (STV 1.0 0.9091)) +(: cnet_isa_209036c878 (IsA kipper herring) (STV 1.0 0.9091)) +(: cnet_isa_2044a467dd (IsA kippered_salmon salmon) (STV 1.0 0.9091)) +(: cnet_isa_e0c2508285 (IsA kirchhoff_s_law law) (STV 1.0 0.9091)) +(: cnet_isa_82a8d30a45 (IsA kirghiz turki) (STV 1.0 0.9091)) +(: cnet_isa_27631f4726 (IsA kiribati_dollar dollar) (STV 1.0 0.9091)) +(: cnet_isa_44ae4cdf97 (IsA kirk church) (STV 1.0 0.9091)) +(: cnet_isa_b1ce1c7b5e (IsA kirkia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e190a648a4 (IsA kirpan dagger) (STV 1.0 0.9091)) +(: cnet_isa_48c6f3e6c8 (IsA kirsch brandy) (STV 1.0 0.9091)) +(: cnet_isa_cf8e925a33 (IsA kirtle dress) (STV 1.0 0.9091)) +(: cnet_isa_d7bce2bfb7 (IsA kirtle tunic) (STV 1.0 0.9091)) +(: cnet_isa_b53c748d20 (IsA kishke dish) (STV 1.0 0.9091)) +(: cnet_isa_c7ee75946e (IsA kislev jewish_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_b2eb404bb5 (IsA kismet destiny) (STV 1.0 0.9091)) +(: cnet_isa_2d1d30613e (IsA kiss touch) (STV 1.0 0.9091)) +(: cnet_isa_612d2c2987 (IsA kiss candy) (STV 1.0 0.9091)) +(: cnet_isa_6a293a1525 (IsA kiss cookie) (STV 1.0 0.9091)) +(: cnet_isa_16d95850ae (IsA kiss_of_death calamity) (STV 1.0 0.9091)) +(: cnet_isa_76fb46daf5 (IsA kisser lover) (STV 1.0 0.9091)) +(: cnet_isa_8a7929117c (IsA kissing sign_of_affection) (STV 1.0 0.9707)) +(: cnet_isa_ba3a8f48a0 (IsA kissing sign_of_love) (STV 1.0 0.9339)) +(: cnet_isa_476ea41070 (IsA kissing way_of) (STV 1.0 0.9091)) +(: cnet_isa_7564ac4268 (IsA kissing way_to_show_affection) (STV 1.0 0.9636)) +(: cnet_isa_82a70f3150 (IsA kissing_cousin relative) (STV 1.0 0.9091)) +(: cnet_isa_f6d8bd3251 (IsA kiswahili bantu) (STV 1.0 0.9091)) +(: cnet_isa_21fc581f09 (IsA kit young_mammal) (STV 1.0 0.9091)) +(: cnet_isa_1960e2a643 (IsA kit case) (STV 1.0 0.9091)) +(: cnet_isa_25b1cfd99b (IsA kit gear) (STV 1.0 0.9091)) +(: cnet_isa_3b60d684b4 (IsA kit_fox fox) (STV 1.0 0.9091)) +(: cnet_isa_a75ada59a1 (IsA kitbag backpack) (STV 1.0 0.9091)) +(: cnet_isa_a1fd30409a (IsA kitchen place_for_food_preparation) (STV 1.0 0.9091)) +(: cnet_isa_53fdf1011a (IsA kitchen room_in_house) (STV 1.0 0.9454)) +(: cnet_isa_9c844172e5 (IsA kitchen room) (STV 1.0 0.9091)) +(: cnet_isa_f4fc1b0af3 (IsA kitchen_appliance home_appliance) (STV 1.0 0.9091)) +(: cnet_isa_30e13e0e13 (IsA kitchen_cabinet clique) (STV 1.0 0.9091)) +(: cnet_isa_67fe248665 (IsA kitchen_garden garden) (STV 1.0 0.9091)) +(: cnet_isa_7c470ebd1a (IsA kitchen_help hired_help) (STV 1.0 0.9091)) +(: cnet_isa_84b1b8d85c (IsA kitchen_island island) (STV 1.0 0.9091)) +(: cnet_isa_5a11d52bf7 (IsA kitchen_match match) (STV 1.0 0.9091)) +(: cnet_isa_1347f49dbc (IsA kitchen_police enlisted_person) (STV 1.0 0.9091)) +(: cnet_isa_840a150b10 (IsA kitchen_sink sink) (STV 1.0 0.9091)) +(: cnet_isa_3fb004564f (IsA kitchen_table table) (STV 1.0 0.9091)) +(: cnet_isa_c7d1e3dfce (IsA kitchen_utensil utensil) (STV 1.0 0.9091)) +(: cnet_isa_4cd6b4b19a (IsA kitchenette kitchen) (STV 1.0 0.9091)) +(: cnet_isa_446c682833 (IsA kitchenware kitchen_utensil) (STV 1.0 0.9091)) +(: cnet_isa_5dcb289a20 (IsA kite hawk) (STV 1.0 0.9091)) +(: cnet_isa_20a1d1f24d (IsA kite plaything) (STV 1.0 0.9091)) +(: cnet_isa_d4b97cfc9a (IsA kite check) (STV 1.0 0.9091)) +(: cnet_isa_3bc7d34c34 (IsA kite_balloon barrage_balloon) (STV 1.0 0.9091)) +(: cnet_isa_e3493874e8 (IsA kite_tail bob) (STV 1.0 0.9091)) +(: cnet_isa_12afdcc9f9 (IsA kith social_group) (STV 1.0 0.9091)) +(: cnet_isa_f14038b49c (IsA kitsch art) (STV 1.0 0.9091)) +(: cnet_isa_ddbc8fd9ef (IsA kittee torture) (STV 1.0 0.9091)) +(: cnet_isa_85a9d50a9e (IsA kitten cat) (STV 1.0 0.9572)) +(: cnet_isa_65c1b26887 (IsA kitten fragile_animal) (STV 1.0 0.9091)) +(: cnet_isa_b6cb57b8cb (IsA kitten young_mammal) (STV 1.0 0.9091)) +(: cnet_isa_340fe28906 (IsA kitten_tail wildflower) (STV 1.0 0.9091)) +(: cnet_isa_d214562723 (IsA kittiwake gull) (STV 1.0 0.9091)) +(: cnet_isa_904e546a8c (IsA kitty domestic_cat) (STV 1.0 0.9091)) +(: cnet_isa_3a26a0e678 (IsA kiwi fruit) (STV 1.0 0.9091)) +(: cnet_isa_7ade9e1d67 (IsA kiwi ratite) (STV 1.0 0.9091)) +(: cnet_isa_ee46b46039 (IsA kiwi edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_07a1f7691d (IsA kiwi inhabitant) (STV 1.0 0.9091)) +(: cnet_isa_3852361f99 (IsA klammath_weed st_john_s_wort) (STV 1.0 0.9091)) +(: cnet_isa_f7cc5ec55e (IsA klavern unit) (STV 1.0 0.9091)) +(: cnet_isa_12924d47d4 (IsA klaxon horn) (STV 1.0 0.9091)) +(: cnet_isa_7a09715cf0 (IsA klebsiella enteric_bacteria) (STV 1.0 0.9091)) +(: cnet_isa_fa26d047f7 (IsA klein_bottle surface) (STV 1.0 0.9091)) +(: cnet_isa_29a969e4e1 (IsA kleptomania mania) (STV 1.0 0.9091)) +(: cnet_isa_ee2f7c3fc8 (IsA kleptomaniac appropriator) (STV 1.0 0.9091)) +(: cnet_isa_9108b79952 (IsA klieg_light carbon_arc_lamp) (STV 1.0 0.9091)) +(: cnet_isa_f0f5f9d660 (IsA klinefelter_s_syndrome syndrome) (STV 1.0 0.9091)) +(: cnet_isa_bb71db02de (IsA klondike solitaire) (STV 1.0 0.9091)) +(: cnet_isa_6f53d08b2f (IsA kludge collection) (STV 1.0 0.9091)) +(: cnet_isa_eb141eef43 (IsA klutz stupid) (STV 1.0 0.9091)) +(: cnet_isa_22044995e5 (IsA klystron tube) (STV 1.0 0.9091)) +(: cnet_isa_df33463292 (IsA knacker butcher) (STV 1.0 0.9091)) +(: cnet_isa_a999ae6f1b (IsA knacker wrecker) (STV 1.0 0.9091)) +(: cnet_isa_cf8822ee98 (IsA knackwurst sausage) (STV 1.0 0.9091)) +(: cnet_isa_a766beadd7 (IsA knapweed centaury) (STV 1.0 0.9091)) +(: cnet_isa_000996fd0a (IsA knawel weed) (STV 1.0 0.9091)) +(: cnet_isa_4c74ae636c (IsA knee cloth_covering) (STV 1.0 0.9091)) +(: cnet_isa_55fefa2444 (IsA knee hinge_joint) (STV 1.0 0.9091)) +(: cnet_isa_5559258201 (IsA knee_bend leg_exercise) (STV 1.0 0.9091)) +(: cnet_isa_dbdc0b96ca (IsA knee_brace brace) (STV 1.0 0.9091)) +(: cnet_isa_3293f229a7 (IsA knee_high sock) (STV 1.0 0.9091)) +(: cnet_isa_92099a0bb5 (IsA knee_high stocking) (STV 1.0 0.9091)) +(: cnet_isa_d55c3a39f0 (IsA knee_jerk reflex) (STV 1.0 0.9091)) +(: cnet_isa_e55ff89334 (IsA knee_pad protective_garment) (STV 1.0 0.9091)) +(: cnet_isa_bc77ddfa75 (IsA knee_piece armor_plate) (STV 1.0 0.9091)) +(: cnet_isa_10c797d4cf (IsA kneel motion) (STV 1.0 0.9091)) +(: cnet_isa_745822dbaa (IsA kneeler board) (STV 1.0 0.9091)) +(: cnet_isa_1d680f5648 (IsA kneeler person) (STV 1.0 0.9091)) +(: cnet_isa_1bc5249862 (IsA knell bell) (STV 1.0 0.9091)) +(: cnet_isa_5649f0d4e9 (IsA knesset parliament) (STV 1.0 0.9091)) +(: cnet_isa_b04c5c4dd0 (IsA knickknack article) (STV 1.0 0.9091)) +(: cnet_isa_d4f0037c46 (IsA knife tool) (STV 1.0 0.9454)) +(: cnet_isa_38f6336ae7 (IsA knife edge_tool) (STV 1.0 0.9091)) +(: cnet_isa_2fa61a775d (IsA knife weapon) (STV 1.0 0.9091)) +(: cnet_isa_6b76db19a1 (IsA knife_blade blade) (STV 1.0 0.9091)) +(: cnet_isa_8f3a7ea8d9 (IsA knife_edge edge) (STV 1.0 0.9091)) +(: cnet_isa_129364063a (IsA knife_edge limit) (STV 1.0 0.9091)) +(: cnet_isa_f28ef8764d (IsA knife_fight fight) (STV 1.0 0.9091)) +(: cnet_isa_6b1087ea9e (IsA knife_pleat pleat) (STV 1.0 0.9091)) +(: cnet_isa_93ebe92cb7 (IsA knight_s_service service) (STV 1.0 0.9091)) +(: cnet_isa_b376463514 (IsA knight armored_soldier) (STV 1.0 0.9091)) +(: cnet_isa_f8d13bb6d6 (IsA knight chess_piece) (STV 1.0 0.9339)) +(: cnet_isa_175b0c1aa8 (IsA knight chessman) (STV 1.0 0.9091)) +(: cnet_isa_277a152239 (IsA knight male_aristocrat) (STV 1.0 0.9091)) +(: cnet_isa_3ee279b791 (IsA knight_bachelor knight) (STV 1.0 0.9091)) +(: cnet_isa_d1b689b4d2 (IsA knight_banneret knight) (STV 1.0 0.9091)) +(: cnet_isa_aec851e48b (IsA knight_errant knight) (STV 1.0 0.9091)) +(: cnet_isa_29bebfb40d (IsA knight_errantry idealism) (STV 1.0 0.9091)) +(: cnet_isa_c89925af72 (IsA knight_errantry code_of_conduct) (STV 1.0 0.9091)) +(: cnet_isa_d8e8ffcd76 (IsA knight_of_round_table knight) (STV 1.0 0.9091)) +(: cnet_isa_dc8391baa3 (IsA knight_templar freemason) (STV 1.0 0.9091)) +(: cnet_isa_5927865214 (IsA knighthood nobility) (STV 1.0 0.9091)) +(: cnet_isa_756fb944c2 (IsA knightia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_452919fa4d (IsA kniphofia herb) (STV 1.0 0.9091)) +(: cnet_isa_204f89c797 (IsA knish turnover) (STV 1.0 0.9091)) +(: cnet_isa_b3e5d51fb9 (IsA knit fabric) (STV 1.0 0.9091)) +(: cnet_isa_9ab845fbf7 (IsA knit knitting_stitch) (STV 1.0 0.9091)) +(: cnet_isa_f0e7d6e316 (IsA knit needlework) (STV 1.0 0.9091)) +(: cnet_isa_a37ac74741 (IsA knitter needleworker) (STV 1.0 0.9091)) +(: cnet_isa_0ce47df484 (IsA knitting handicraft) (STV 1.0 0.9091)) +(: cnet_isa_c8c7279a29 (IsA knitting_machine textile_machine) (STV 1.0 0.9091)) +(: cnet_isa_30254bb427 (IsA knitting_needle needle) (STV 1.0 0.9091)) +(: cnet_isa_2f622adbab (IsA knitting_stitch stitch) (STV 1.0 0.9091)) +(: cnet_isa_c8f4758a85 (IsA knitwear clothing) (STV 1.0 0.9091)) +(: cnet_isa_6cc80b268f (IsA knob decoration) (STV 1.0 0.9091)) +(: cnet_isa_2f09d2c8f6 (IsA knob handle) (STV 1.0 0.9091)) +(: cnet_isa_43f84db2d7 (IsA knob projection) (STV 1.0 0.9091)) +(: cnet_isa_6aba72d59b (IsA knobble knob) (STV 1.0 0.9091)) +(: cnet_isa_6fea2a1faf (IsA knobcone_pine pine) (STV 1.0 0.9091)) +(: cnet_isa_4bfe516236 (IsA knobkerrie club) (STV 1.0 0.9091)) +(: cnet_isa_15da7b4ecf (IsA knock blow) (STV 1.0 0.9091)) +(: cnet_isa_398a2fdc8f (IsA knock criticism) (STV 1.0 0.9091)) +(: cnet_isa_0b66ebd9ae (IsA knock bump) (STV 1.0 0.9091)) +(: cnet_isa_92c9733497 (IsA knock misfortune) (STV 1.0 0.9091)) +(: cnet_isa_fd0d4603ea (IsA knock sound) (STV 1.0 0.9091)) +(: cnet_isa_7cc01cfbf6 (IsA knock_knee disability) (STV 1.0 0.9091)) +(: cnet_isa_6e36c04ac1 (IsA knock_on play) (STV 1.0 0.9091)) +(: cnet_isa_df2d36cdbc (IsA knock_on_effect consequence) (STV 1.0 0.9091)) +(: cnet_isa_b0f1b77a64 (IsA knockabout sloop) (STV 1.0 0.9091)) +(: cnet_isa_1c2fb8a938 (IsA knockdown blow) (STV 1.0 0.9091)) +(: cnet_isa_67460383cf (IsA knocker device) (STV 1.0 0.9091)) +(: cnet_isa_76be50c1cf (IsA knocker person) (STV 1.0 0.9091)) +(: cnet_isa_44486a3c00 (IsA knocker big_shot) (STV 1.0 0.9091)) +(: cnet_isa_9151cb2984 (IsA knockoff copy) (STV 1.0 0.9091)) +(: cnet_isa_e10aef4aec (IsA knockout blow) (STV 1.0 0.9091)) +(: cnet_isa_766554eb13 (IsA knockout_drop chloral_hydrate) (STV 1.0 0.9091)) +(: cnet_isa_06ae9169e5 (IsA knoll hill) (STV 1.0 0.9091)) +(: cnet_isa_a74c5f4512 (IsA knot sandpiper) (STV 1.0 0.9091)) +(: cnet_isa_4d954bd0f2 (IsA knot fastener) (STV 1.0 0.9091)) +(: cnet_isa_ea4ca6c2be (IsA knot bunch) (STV 1.0 0.9091)) +(: cnet_isa_8ed1ec0886 (IsA knot distorted_shape) (STV 1.0 0.9091)) +(: cnet_isa_a18aba017c (IsA knot wood) (STV 1.0 0.9091)) +(: cnet_isa_19b00fcc58 (IsA knot rate) (STV 1.0 0.9091)) +(: cnet_isa_feed84e8f4 (IsA knotgrass grass) (STV 1.0 0.9091)) +(: cnet_isa_963611843c (IsA knothole hole) (STV 1.0 0.9091)) +(: cnet_isa_74c12a04f0 (IsA knotty_pine pine) (STV 1.0 0.9091)) +(: cnet_isa_df159f29f8 (IsA knout whip) (STV 1.0 0.9091)) +(: cnet_isa_4e1626addd (IsA know knowing) (STV 1.0 0.9091)) +(: cnet_isa_cfcab88428 (IsA know_how ability) (STV 1.0 0.9091)) +(: cnet_isa_a77cc1f246 (IsA know_it_all egotist) (STV 1.0 0.9091)) +(: cnet_isa_2ebfaef9bd (IsA knower person) (STV 1.0 0.9091)) +(: cnet_isa_4253e06c1b (IsA knowing higher_cognitive_process) (STV 1.0 0.9091)) +(: cnet_isa_5f437e95de (IsA knowingness shrewdness) (STV 1.0 0.9091)) +(: cnet_isa_c9bad68336 (IsA knowledge applied_information) (STV 1.0 0.9091)) +(: cnet_isa_2ab8534891 (IsA knowledge good_thing) (STV 1.0 0.9339)) +(: cnet_isa_82bdb26785 (IsA knowledge information) (STV 1.0 0.9091)) +(: cnet_isa_8b3ba64570 (IsA knowledge power) (STV 1.0 0.9091)) +(: cnet_isa_610389c6b3 (IsA knowledge powerful_thing) (STV 1.0 0.9636)) +(: cnet_isa_931ac64cfa (IsA knowledge_domain content) (STV 1.0 0.9091)) +(: cnet_isa_bbb59b59da (IsA knowledgeability wisdom) (STV 1.0 0.9091)) +(: cnet_isa_fd2f769b6c (IsA knowlton_s_cactus cactus) (STV 1.0 0.9091)) +(: cnet_isa_9f32793275 (IsA knuckle synovial_joint) (STV 1.0 0.9091)) +(: cnet_isa_7e06fe07fa (IsA knuckle_joint joint) (STV 1.0 0.9091)) +(: cnet_isa_ac589cc03c (IsA knuckleball pitch) (STV 1.0 0.9091)) +(: cnet_isa_3d2a039cd9 (IsA koala phalanger) (STV 1.0 0.9091)) +(: cnet_isa_5f3d324fb4 (IsA koala_bear marsupial) (STV 1.0 0.9091)) +(: cnet_isa_3298261832 (IsA koan problem) (STV 1.0 0.9091)) +(: cnet_isa_72dfc117ed (IsA koasati muskhogean) (STV 1.0 0.9091)) +(: cnet_isa_adf4390716 (IsA koasati muskogean) (STV 1.0 0.9091)) +(: cnet_isa_dd4b53bff4 (IsA kob waterbuck) (STV 1.0 0.9091)) +(: cnet_isa_b52d8ba632 (IsA kobo nigerian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_dd5e3f54c8 (IsA kobus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_8fca1555d8 (IsA kogia mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_0e3c36a204 (IsA kohl makeup) (STV 1.0 0.9091)) +(: cnet_isa_42363de085 (IsA kohleria houseplant) (STV 1.0 0.9091)) +(: cnet_isa_ce6f51ce37 (IsA kohlrabi cruciferous_vegetable) (STV 1.0 0.9091)) +(: cnet_isa_cace1b873a (IsA kohlrabi crucifer) (STV 1.0 0.9091)) +(: cnet_isa_6134ab8330 (IsA koine greek) (STV 1.0 0.9091)) +(: cnet_isa_7f1e48b474 (IsA koinonia family) (STV 1.0 0.9091)) +(: cnet_isa_455f5e01ac (IsA kokka_shinto sect) (STV 1.0 0.9091)) +(: cnet_isa_d9f685ad28 (IsA kokoi_venom neurotoxin) (STV 1.0 0.9091)) +(: cnet_isa_a3d273a1d6 (IsA kokoi_venom venom) (STV 1.0 0.9091)) +(: cnet_isa_1f84e2e1d9 (IsA kola nut_tree) (STV 1.0 0.9091)) +(: cnet_isa_9ab68003d0 (IsA kola_nut nut) (STV 1.0 0.9091)) +(: cnet_isa_759cdafd9f (IsA kolam dravidian) (STV 1.0 0.9091)) +(: cnet_isa_a241913b48 (IsA kolami central_dravidian) (STV 1.0 0.9091)) +(: cnet_isa_9a70a23677 (IsA kolkhoz collective_farm) (STV 1.0 0.9091)) +(: cnet_isa_33ac7075de (IsA kolkhoznik member) (STV 1.0 0.9091)) +(: cnet_isa_31c5bc7211 (IsA kolkwitzia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_75cdc0e206 (IsA komi permic) (STV 1.0 0.9091)) +(: cnet_isa_016f954cb5 (IsA komi russian) (STV 1.0 0.9091)) +(: cnet_isa_0c614839fc (IsA komodo_dragon monitor) (STV 1.0 0.9091)) +(: cnet_isa_5db500900c (IsA komodo_dragon reptile) (STV 1.0 0.9091)) +(: cnet_isa_ef6a4b92c7 (IsA komondor shepherd_dog) (STV 1.0 0.9091)) +(: cnet_isa_37877c8dc4 (IsA kongo bantu) (STV 1.0 0.9091)) +(: cnet_isa_d37e664b74 (IsA konini fuchsia) (STV 1.0 0.9091)) +(: cnet_isa_a68b79db8a (IsA kook person) (STV 1.0 0.9091)) +(: cnet_isa_aa5522450a (IsA kookaburra kingfisher) (STV 1.0 0.9091)) +(: cnet_isa_e6ea200ad0 (IsA kopek russian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_08a5df247f (IsA kopiyka ukranian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_aa77d6d56f (IsA kopje knoll) (STV 1.0 0.9091)) +(: cnet_isa_60d430e7b7 (IsA koplik_s_spot symptom) (STV 1.0 0.9091)) +(: cnet_isa_7217cc969a (IsA kordofanian niger_kordofanian) (STV 1.0 0.9091)) +(: cnet_isa_7795e5688e (IsA korea country) (STV 1.0 0.9091)) +(: cnet_isa_1684d5e2d3 (IsA korean altaic) (STV 1.0 0.9091)) +(: cnet_isa_d0b661056e (IsA korean asiatic) (STV 1.0 0.9091)) +(: cnet_isa_5830b93151 (IsA korean_lawn_grass zoysia) (STV 1.0 0.9091)) +(: cnet_isa_0af292fe9f (IsA korean_lespedeza bush_clover) (STV 1.0 0.9091)) +(: cnet_isa_8b24a425ce (IsA koruna czech_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_6fadf761ef (IsA koruna slovakian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_78715d0f53 (IsA kos linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_0922c3821f (IsA kosher nutriment) (STV 1.0 0.9091)) +(: cnet_isa_5ab3773b66 (IsA kosteletzya dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_839455ebe4 (IsA kota south_dravidian) (STV 1.0 0.9091)) +(: cnet_isa_61af3ee71f (IsA kotar dravidian) (STV 1.0 0.9091)) +(: cnet_isa_d6b60059c5 (IsA koto stringed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_4e798a4da9 (IsA koto_player musician) (STV 1.0 0.9091)) +(: cnet_isa_badf071a5a (IsA kotoko biu_mandara) (STV 1.0 0.9091)) +(: cnet_isa_edeb57aacb (IsA koumiss alcohol) (STV 1.0 0.9091)) +(: cnet_isa_e0db7b0ee8 (IsA kowhai tree) (STV 1.0 0.9091)) +(: cnet_isa_6e02d08624 (IsA kowtow bow) (STV 1.0 0.9091)) +(: cnet_isa_f43c4eb5e0 (IsA kraal pen) (STV 1.0 0.9091)) +(: cnet_isa_ee2b3be5cc (IsA kraal village) (STV 1.0 0.9091)) +(: cnet_isa_7fd7a4958f (IsA kraft wrapping_paper) (STV 1.0 0.9091)) +(: cnet_isa_4a2ae807b1 (IsA krait elapid) (STV 1.0 0.9091)) +(: cnet_isa_8f98f05a28 (IsA krak_w city) (STV 1.0 0.9091)) +(: cnet_isa_5288a0bd67 (IsA kraurosis atrophy) (STV 1.0 0.9091)) +(: cnet_isa_cad665729e (IsA kraurosis_vulvae kraurosis) (STV 1.0 0.9091)) +(: cnet_isa_713366ee45 (IsA krauthead german) (STV 1.0 0.9091)) +(: cnet_isa_7939c330a3 (IsA kreb_cycle organic_process) (STV 1.0 0.9091)) +(: cnet_isa_cc7fa3af6f (IsA kremlin bastion) (STV 1.0 0.9091)) +(: cnet_isa_576821a76a (IsA krigia herb) (STV 1.0 0.9091)) +(: cnet_isa_f449a24c08 (IsA krill malacostracan_crustacean) (STV 1.0 0.9091)) +(: cnet_isa_29f9c9579e (IsA kris dagger) (STV 1.0 0.9091)) +(: cnet_isa_ff1d97bfc1 (IsA krishnaism hinduism) (STV 1.0 0.9091)) +(: cnet_isa_2a5c585306 (IsA kronecker_delta mapping) (STV 1.0 0.9091)) +(: cnet_isa_79c328862e (IsA kroon estonian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_f2cfc49ba0 (IsA krubi arum) (STV 1.0 0.9091)) +(: cnet_isa_b6891930c4 (IsA krummhorn double_reed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_395e880f18 (IsA krypterophaneron fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_880e05b1d4 (IsA krypton chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_27b5a8a9af (IsA krypton noble_gas) (STV 1.0 0.9091)) +(: cnet_isa_b37d78c5e1 (IsA kshatriya hindustani) (STV 1.0 0.9091)) +(: cnet_isa_0484c11039 (IsA ku_kluxer white_supremacist) (STV 1.0 0.9091)) +(: cnet_isa_92fa02dc46 (IsA kuchean tocharian) (STV 1.0 0.9091)) +(: cnet_isa_deefd8b34d (IsA kudu antelope) (STV 1.0 0.9091)) +(: cnet_isa_6f8858c389 (IsA kudzu vine) (STV 1.0 0.9091)) +(: cnet_isa_c80fdb6f92 (IsA kui south_central_dravidian) (STV 1.0 0.9091)) +(: cnet_isa_4b6740a95a (IsA kui dravidian) (STV 1.0 0.9091)) +(: cnet_isa_45e086e457 (IsA kuiper_belt asteroid_belt) (STV 1.0 0.9091)) +(: cnet_isa_64bd0dc8c8 (IsA kuiper_belt_object asteroid) (STV 1.0 0.9091)) +(: cnet_isa_abcd084f5d (IsA kuki kamarupan) (STV 1.0 0.9091)) +(: cnet_isa_c992477758 (IsA kulanapan hokan) (STV 1.0 0.9091)) +(: cnet_isa_c0d7f18419 (IsA kummel liqueur) (STV 1.0 0.9091)) +(: cnet_isa_d0d9ad49b7 (IsA kumquat citrus) (STV 1.0 0.9091)) +(: cnet_isa_c26c6569ca (IsA kundt_s_tube measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_8552092552 (IsA kung_fu martial_art) (STV 1.0 0.9091)) +(: cnet_isa_aed9133141 (IsA kunzite spodumene) (STV 1.0 0.9091)) +(: cnet_isa_ef330f8bfd (IsA kunzite transparent_gem) (STV 1.0 0.9091)) +(: cnet_isa_833a20bb81 (IsA kuomintang party) (STV 1.0 0.9091)) +(: cnet_isa_0686bf6fbd (IsA kupffer_s_cell cell) (STV 1.0 0.9091)) +(: cnet_isa_ae5ad29361 (IsA kurd asiatic) (STV 1.0 0.9091)) +(: cnet_isa_9cb0ee88a5 (IsA kurd ethnic_group) (STV 1.0 0.9091)) +(: cnet_isa_4cae5b2518 (IsA kurdish iranian) (STV 1.0 0.9091)) +(: cnet_isa_3f8d793445 (IsA kurdistan rug) (STV 1.0 0.9091)) +(: cnet_isa_aebdee153f (IsA kurrajong bottle_tree) (STV 1.0 0.9091)) +(: cnet_isa_687f2fbd85 (IsA kurta shirt) (STV 1.0 0.9091)) +(: cnet_isa_88001045c9 (IsA kuru turkish_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_d928ed757a (IsA kuru nervous_disorder) (STV 1.0 0.9091)) +(: cnet_isa_0459c8e60c (IsA kurux north_dravidian) (STV 1.0 0.9091)) +(: cnet_isa_d486189fea (IsA kusan penutian) (STV 1.0 0.9091)) +(: cnet_isa_f4ca3bf60d (IsA kuvasz watchdog) (STV 1.0 0.9091)) +(: cnet_isa_9f8ca2932e (IsA kuvi south_central_dravidian) (STV 1.0 0.9091)) +(: cnet_isa_8ca490df05 (IsA kuwaiti asiatic) (STV 1.0 0.9091)) +(: cnet_isa_58133d732c (IsA kuwaiti_dinar kuwaiti_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_679afa3df6 (IsA kuwaiti_dirham kuwaiti_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_00ffa9f3a2 (IsA kuwaiti_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_e645886c45 (IsA kvass brew) (STV 1.0 0.9091)) +(: cnet_isa_88a08b9667 (IsA kvetch complaint) (STV 1.0 0.9091)) +(: cnet_isa_b7c6379267 (IsA kvetch whiner) (STV 1.0 0.9091)) +(: cnet_isa_1ee96c592a (IsA kwa niger_congo) (STV 1.0 0.9091)) +(: cnet_isa_780edf70ee (IsA kwakiutl wakashan) (STV 1.0 0.9091)) +(: cnet_isa_33eb78bd4f (IsA kwanza angolan_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_63b7c7814e (IsA kwanzaa festival) (STV 1.0 0.9091)) +(: cnet_isa_c410e19c86 (IsA kwashiorkor malnutrition) (STV 1.0 0.9091)) +(: cnet_isa_cd608924b7 (IsA kwela dance_music) (STV 1.0 0.9091)) +(: cnet_isa_76325403a4 (IsA kyanite mineral) (STV 1.0 0.9091)) +(: cnet_isa_9d4f947c13 (IsA kyat myanmar_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_71c9a91242 (IsA kylie boomerang) (STV 1.0 0.9091)) +(: cnet_isa_1b07e45d53 (IsA kylix cup) (STV 1.0 0.9091)) +(: cnet_isa_601189d02c (IsA kymograph scientific_instrument) (STV 1.0 0.9091)) +(: cnet_isa_2e53784b01 (IsA kyphosidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_645e2ce81a (IsA kyphosis spinal_curvature) (STV 1.0 0.9091)) +(: cnet_isa_f79fc3042e (IsA kyphosus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_271d9b1889 (IsA kyrgyzstani_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_24f0c53281 (IsA l letter) (STV 1.0 0.9091)) +(: cnet_isa_51f74918c4 (IsA l_plate plate) (STV 1.0 0.9091)) +(: cnet_isa_d80ae80e37 (IsA la solfa_syllable) (STV 1.0 0.9091)) +(: cnet_isa_05f62abd6f (IsA la_carte menu) (STV 1.0 0.9091)) +(: cnet_isa_e049b7babf (IsA laager camp) (STV 1.0 0.9091)) +(: cnet_isa_52c3f93221 (IsA lab workplace) (STV 1.0 0.9091)) +(: cnet_isa_3ffc75054a (IsA lab_bench workbench) (STV 1.0 0.9091)) +(: cnet_isa_7c684cb0e2 (IsA lab_coat coat) (STV 1.0 0.9091)) +(: cnet_isa_00eb47546b (IsA labanotation choreography) (STV 1.0 0.9091)) +(: cnet_isa_b62a0f1eb2 (IsA labdanum oleoresin) (STV 1.0 0.9091)) +(: cnet_isa_7e9a72e3a9 (IsA label description) (STV 1.0 0.9091)) +(: cnet_isa_7ae2e89ef9 (IsA label marker) (STV 1.0 0.9091)) +(: cnet_isa_973db57321 (IsA label trade_name) (STV 1.0 0.9091)) +(: cnet_isa_d8beb1a33d (IsA label radioisotope) (STV 1.0 0.9091)) +(: cnet_isa_d4be5d67c5 (IsA labia_majora labium) (STV 1.0 0.9091)) +(: cnet_isa_70d7cffec5 (IsA labia_minora labium) (STV 1.0 0.9091)) +(: cnet_isa_0321ce83be (IsA labial_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_e74d9b36d9 (IsA labial_consonant consonant) (STV 1.0 0.9091)) +(: cnet_isa_b33b9dce56 (IsA labial_stop labial_consonant) (STV 1.0 0.9091)) +(: cnet_isa_412d574a6c (IsA labial_stop stop_consonant) (STV 1.0 0.9091)) +(: cnet_isa_338dfdd896 (IsA labial_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_de75a02e9a (IsA labiatae asterid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_5f399a9af5 (IsA labiodental_consonant consonant) (STV 1.0 0.9091)) +(: cnet_isa_aaeef6c216 (IsA labium external_body_part) (STV 1.0 0.9091)) +(: cnet_isa_b83a51e683 (IsA lablab rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8414929abb (IsA labor work) (STV 1.0 0.9091)) +(: cnet_isa_1db8d7a748 (IsA labor class) (STV 1.0 0.9091)) +(: cnet_isa_35d1bc339d (IsA labor_coach assistant) (STV 1.0 0.9091)) +(: cnet_isa_604a852a70 (IsA labor_contract contract) (STV 1.0 0.9091)) +(: cnet_isa_46d6dbf369 (IsA labor_day legal_holiday) (STV 1.0 0.9091)) +(: cnet_isa_8d7e6b3052 (IsA labor_force labor) (STV 1.0 0.9091)) +(: cnet_isa_054f5ea95b (IsA labor_leader leader) (STV 1.0 0.9091)) +(: cnet_isa_3ba0322859 (IsA labor_market market) (STV 1.0 0.9091)) +(: cnet_isa_0b4dff8b63 (IsA labor_movement reform_movement) (STV 1.0 0.9091)) +(: cnet_isa_5664fc054e (IsA labor_of_love undertaking) (STV 1.0 0.9091)) +(: cnet_isa_3135d9f828 (IsA labor_pain pain) (STV 1.0 0.9091)) +(: cnet_isa_93b58d5769 (IsA labor_resource resource) (STV 1.0 0.9091)) +(: cnet_isa_bf438e0ce9 (IsA labor_secretary secretary) (STV 1.0 0.9091)) +(: cnet_isa_1c5b8bef64 (IsA laborer workman) (STV 1.0 0.9091)) +(: cnet_isa_62cf759090 (IsA laboriousness effortfulness) (STV 1.0 0.9091)) +(: cnet_isa_25601edd84 (IsA labour_camp camp) (STV 1.0 0.9091)) +(: cnet_isa_2a2d6961b2 (IsA labour_party labour_party) (STV 1.0 0.9091)) +(: cnet_isa_7eaae5091a (IsA labour_party party) (STV 1.0 0.9091)) +(: cnet_isa_81256096a3 (IsA labourite politician) (STV 1.0 0.9091)) +(: cnet_isa_222923a428 (IsA labrador_retriever dog) (STV 1.0 0.9091)) +(: cnet_isa_ca3a97ec94 (IsA labrador_retriever retriever) (STV 1.0 0.9091)) +(: cnet_isa_4705c1ec00 (IsA labrador_tea shrub) (STV 1.0 0.9091)) +(: cnet_isa_65ea015cf8 (IsA labridae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_d543fe2133 (IsA laburnum rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7906ea2615 (IsA labyrinthine_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_e23d2a403f (IsA labyrinthine_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_eab0df73cd (IsA labyrinthitis otitis) (STV 1.0 0.9091)) +(: cnet_isa_7c38f7db05 (IsA labyrinthodont amphibian) (STV 1.0 0.9091)) +(: cnet_isa_ab5178e29c (IsA labyrinthodontia animal_order) (STV 1.0 0.9091)) +(: cnet_isa_713c445627 (IsA lac animal_product) (STV 1.0 0.9091)) +(: cnet_isa_05e9157448 (IsA lac_dye dye) (STV 1.0 0.9091)) +(: cnet_isa_611ef271c7 (IsA laccopetalum magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d50e219657 (IsA lace cord) (STV 1.0 0.9091)) +(: cnet_isa_12fcbdc138 (IsA lace fabric) (STV 1.0 0.9091)) +(: cnet_isa_a8571e02fc (IsA lace_bug leaf_bug) (STV 1.0 0.9091)) +(: cnet_isa_5c8522f8c6 (IsA lace_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_de3b785129 (IsA lace_flower_vine flower) (STV 1.0 0.9091)) +(: cnet_isa_999ad0b436 (IsA lace_making handicraft) (STV 1.0 0.9091)) +(: cnet_isa_3b89d5f288 (IsA lacebark tree) (STV 1.0 0.9091)) +(: cnet_isa_fc3cad3c72 (IsA lacer workman) (STV 1.0 0.9091)) +(: cnet_isa_375afcc1bc (IsA laceration tear) (STV 1.0 0.9091)) +(: cnet_isa_d1f08da80f (IsA laceration wound) (STV 1.0 0.9091)) +(: cnet_isa_211d3f223f (IsA lacerta reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_84769271e1 (IsA lacertid_lizard lizard) (STV 1.0 0.9091)) +(: cnet_isa_9cce907791 (IsA lacertidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_70a5050dc8 (IsA lacewing neuropteron) (STV 1.0 0.9091)) +(: cnet_isa_734df7d9ff (IsA lacework work) (STV 1.0 0.9091)) +(: cnet_isa_3cc03a2ad2 (IsA lachnolaimus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_260907abf1 (IsA lacing liquor) (STV 1.0 0.9091)) +(: cnet_isa_d2cc9f8776 (IsA lack need) (STV 1.0 0.9091)) +(: cnet_isa_87db9c8dca (IsA lackey servant) (STV 1.0 0.9091)) +(: cnet_isa_8f29e5c8da (IsA laconian hellene) (STV 1.0 0.9091)) +(: cnet_isa_edff53f444 (IsA laconism terseness) (STV 1.0 0.9091)) +(: cnet_isa_7b6deda3de (IsA lacquer coating) (STV 1.0 0.9091)) +(: cnet_isa_155d89c716 (IsA lacquer gum) (STV 1.0 0.9091)) +(: cnet_isa_cbb9d8ddde (IsA lacquerware work) (STV 1.0 0.9091)) +(: cnet_isa_b6ad3d8484 (IsA lacrimal_apparatus structure) (STV 1.0 0.9091)) +(: cnet_isa_d529e49ca9 (IsA lacrimal_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_7952026189 (IsA lacrimal_bone bone) (STV 1.0 0.9091)) +(: cnet_isa_76a5ab8465 (IsA lacrimal_duct duct) (STV 1.0 0.9091)) +(: cnet_isa_e962c97246 (IsA lacrimal_gland exocrine_gland) (STV 1.0 0.9091)) +(: cnet_isa_1b669d1865 (IsA lacrimal_sac vesicle) (STV 1.0 0.9091)) +(: cnet_isa_8b19936bc8 (IsA lacrimal_secretion secretion) (STV 1.0 0.9091)) +(: cnet_isa_c2369d6d0b (IsA lacrimal_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_4edf87c8a9 (IsA lacrimation bodily_process) (STV 1.0 0.9091)) +(: cnet_isa_1175647e6e (IsA lacrosse sport) (STV 1.0 0.9091)) +(: cnet_isa_b8473ec33a (IsA lacrosse field_game) (STV 1.0 0.9091)) +(: cnet_isa_e7d8860d84 (IsA lacrosse_ball ball) (STV 1.0 0.9091)) +(: cnet_isa_ab6d932030 (IsA lacrosse_player athlete) (STV 1.0 0.9091)) +(: cnet_isa_cd50e5528c (IsA lacrosse_player player) (STV 1.0 0.9091)) +(: cnet_isa_789e77aa41 (IsA lactalbumin albumin) (STV 1.0 0.9091)) +(: cnet_isa_a734418d72 (IsA lactarius fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_327264f115 (IsA lactase disaccharidase) (STV 1.0 0.9091)) +(: cnet_isa_04f972e290 (IsA lactate ester) (STV 1.0 0.9091)) +(: cnet_isa_2d65be410c (IsA lactate salt) (STV 1.0 0.9091)) +(: cnet_isa_b5a47ab70c (IsA lactation bodily_process) (STV 1.0 0.9091)) +(: cnet_isa_e25cbe2a9a (IsA lactation time_period) (STV 1.0 0.9091)) +(: cnet_isa_4dac8c04fa (IsA lacteal lymph_vessel) (STV 1.0 0.9091)) +(: cnet_isa_c8b304ced6 (IsA lactic_acid carboxylic_acid) (STV 1.0 0.9091)) +(: cnet_isa_3c6a306dc3 (IsA lactiferous_duct duct) (STV 1.0 0.9091)) +(: cnet_isa_8db05d56cb (IsA lactifuge agent) (STV 1.0 0.9091)) +(: cnet_isa_45f099c8e5 (IsA lactobacillaceae bacteria_family) (STV 1.0 0.9091)) +(: cnet_isa_ab1fa03d6e (IsA lactobacillus eubacteria) (STV 1.0 0.9091)) +(: cnet_isa_c715507620 (IsA lactogen agent) (STV 1.0 0.9091)) +(: cnet_isa_ba564f726d (IsA lactophry fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_45e0701d6a (IsA lactose disaccharide) (STV 1.0 0.9091)) +(: cnet_isa_5f5d8e1101 (IsA lactose_intolerance genetic_disease) (STV 1.0 0.9091)) +(: cnet_isa_deb0da4d5d (IsA lactosuria condition) (STV 1.0 0.9091)) +(: cnet_isa_9a1aeeadec (IsA lactuca asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_eff4bb029a (IsA lacuna gap) (STV 1.0 0.9091)) +(: cnet_isa_a43788e3bf (IsA ladder stair) (STV 1.0 0.9091)) +(: cnet_isa_989ec3abc3 (IsA ladder degree) (STV 1.0 0.9091)) +(: cnet_isa_d4ccaa2e9f (IsA ladder_back back) (STV 1.0 0.9091)) +(: cnet_isa_a12260825d (IsA ladder_back chair) (STV 1.0 0.9091)) +(: cnet_isa_ffc5115317 (IsA ladder_truck fire_engine) (STV 1.0 0.9091)) +(: cnet_isa_1123fbf560 (IsA lady_room public_toilet) (STV 1.0 0.9091)) +(: cnet_isa_c14273c484 (IsA lady_tobacco herb) (STV 1.0 0.9091)) +(: cnet_isa_e17780642a (IsA lady_tress orchid) (STV 1.0 0.9091)) +(: cnet_isa_7a5cec32d6 (IsA ladin rhaeto_romance) (STV 1.0 0.9091)) +(: cnet_isa_c2717767c5 (IsA ladle vessel) (STV 1.0 0.9091)) +(: cnet_isa_22489480b3 (IsA lady_s_eardrop fuchsia) (STV 1.0 0.9091)) +(: cnet_isa_c6967fc401 (IsA lady_s_maid maid) (STV 1.0 0.9091)) +(: cnet_isa_76e07b9244 (IsA lady_s_slipper orchid) (STV 1.0 0.9091)) +(: cnet_isa_fdbf1141c5 (IsA lady_s_smock bittercress) (STV 1.0 0.9091)) +(: cnet_isa_dcd7f30212 (IsA lady woman) (STV 1.0 0.9091)) +(: cnet_isa_2a8c1c1852 (IsA lady_chapel chapel) (STV 1.0 0.9091)) +(: cnet_isa_54607cdd7f (IsA lady_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_277ec46a5d (IsA lady_in_waiting noblewoman) (STV 1.0 0.9091)) +(: cnet_isa_cf6a7dab00 (IsA lady_of_night shrub) (STV 1.0 0.9091)) +(: cnet_isa_4ba217d34b (IsA lady_palm palm) (STV 1.0 0.9091)) +(: cnet_isa_8a292b32e2 (IsA lady_tulip tulip) (STV 1.0 0.9091)) +(: cnet_isa_d3d4ba5b2f (IsA ladybug beetle) (STV 1.0 0.9091)) +(: cnet_isa_cfb58b1a59 (IsA ladyfinger cookie) (STV 1.0 0.9091)) +(: cnet_isa_80ae31173d (IsA ladyfish tarpon) (STV 1.0 0.9091)) +(: cnet_isa_7945b52250 (IsA ladylikeness femininity) (STV 1.0 0.9091)) +(: cnet_isa_af1fc7cac0 (IsA ladylove sweetheart) (STV 1.0 0.9091)) +(: cnet_isa_dd6eefee08 (IsA ladyship title) (STV 1.0 0.9091)) +(: cnet_isa_8b96f2c79f (IsA laelia orchid) (STV 1.0 0.9091)) +(: cnet_isa_62c2475a26 (IsA laetrile amygdalin) (STV 1.0 0.9091)) +(: cnet_isa_fe6d42f431 (IsA laffer_curve graph) (STV 1.0 0.9091)) +(: cnet_isa_ec1629f3b6 (IsA lag_b_omer jewish_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_8e9a040590 (IsA lag_screw woodscrew) (STV 1.0 0.9091)) +(: cnet_isa_ed08a20e83 (IsA lagan wreckage) (STV 1.0 0.9091)) +(: cnet_isa_a7b4fb03af (IsA lagarostrobus gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_3b2158c081 (IsA lagenaria dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a2cd06db38 (IsA lagenophera asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_36edcb19f5 (IsA lager light_beer) (STV 1.0 0.9091)) +(: cnet_isa_203adeac91 (IsA lager beer) (STV 1.0 0.9091)) +(: cnet_isa_a40f58e5e0 (IsA lagerphone percussion_instrument) (STV 1.0 0.9091)) +(: cnet_isa_a230362adc (IsA lagerstroemia plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_f5c4dc335a (IsA lagging insulating_material) (STV 1.0 0.9091)) +(: cnet_isa_e163ba5f75 (IsA lagidium mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_acf3fd7265 (IsA lagniappe gift) (STV 1.0 0.9091)) +(: cnet_isa_3288cc9f4d (IsA lagodon fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_9946a1b8d9 (IsA lagomorph placental) (STV 1.0 0.9091)) +(: cnet_isa_4ec5b1cbfe (IsA lagomorpha animal_order) (STV 1.0 0.9091)) +(: cnet_isa_3a1aa109ba (IsA lagoon lake) (STV 1.0 0.9091)) +(: cnet_isa_17c7cdd309 (IsA lagophthalmo abnormality) (STV 1.0 0.9091)) +(: cnet_isa_ae9242e437 (IsA lagopus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_c250c20b7d (IsA lagorcheste mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_96c8987748 (IsA lagostomus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_f0070a8ece (IsA lagothrix mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_38ac6755a9 (IsA laguncularia plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_8712ffeac0 (IsA lahar avalanche) (STV 1.0 0.9091)) +(: cnet_isa_eeb92966c0 (IsA lahu loloish) (STV 1.0 0.9091)) +(: cnet_isa_95421f7302 (IsA laid_paper writing_paper) (STV 1.0 0.9091)) +(: cnet_isa_cbb6049dfb (IsA lair habitation) (STV 1.0 0.9091)) +(: cnet_isa_d0eab341d5 (IsA laird landowner) (STV 1.0 0.9091)) +(: cnet_isa_46296ab9d2 (IsA laity multitude) (STV 1.0 0.9091)) +(: cnet_isa_078eeefcb7 (IsA lake body_of_water) (STV 1.0 0.9572)) +(: cnet_isa_179f975931 (IsA lake large_pond) (STV 1.0 0.9091)) +(: cnet_isa_e9e2ea660a (IsA lake pigment) (STV 1.0 0.9091)) +(: cnet_isa_c1874ecb7e (IsA lake_bed bed) (STV 1.0 0.9091)) +(: cnet_isa_e485e5d655 (IsA lake_dwelling dwelling) (STV 1.0 0.9091)) +(: cnet_isa_c67da7dd2b (IsA lake_herring whitefish) (STV 1.0 0.9091)) +(: cnet_isa_d9ffa12ff3 (IsA lake_poet artistic_movement) (STV 1.0 0.9091)) +(: cnet_isa_d8999e87b1 (IsA lake_poet school) (STV 1.0 0.9091)) +(: cnet_isa_2e1f52a18d (IsA lake_trout trout) (STV 1.0 0.9091)) +(: cnet_isa_656942ee36 (IsA lake_trout freshwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_2e0975ac3e (IsA lake_whitefish whitefish) (STV 1.0 0.9091)) +(: cnet_isa_06dc6ee452 (IsA lakefront geological_formation) (STV 1.0 0.9091)) +(: cnet_isa_f3b74b5e8a (IsA lakeland_terrier wirehair) (STV 1.0 0.9091)) +(: cnet_isa_4efad422bd (IsA lakeside shore) (STV 1.0 0.9091)) +(: cnet_isa_5f6e696f64 (IsA lallan scottish) (STV 1.0 0.9091)) +(: cnet_isa_38e25df3cf (IsA lallation speech_disorder) (STV 1.0 0.9091)) +(: cnet_isa_c02a5d0ba9 (IsA lally support_column) (STV 1.0 0.9091)) +(: cnet_isa_b6f1575781 (IsA lama mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_68dee34c55 (IsA lama priest) (STV 1.0 0.9091)) +(: cnet_isa_7c0841725e (IsA lamaism buddhism) (STV 1.0 0.9091)) +(: cnet_isa_b2d7cf9e03 (IsA lamaist disciple) (STV 1.0 0.9091)) +(: cnet_isa_39f4f1e45d (IsA lamarckian follower) (STV 1.0 0.9091)) +(: cnet_isa_73ce651209 (IsA lamarckism theory_of_evolution) (STV 1.0 0.9091)) +(: cnet_isa_99b08876c8 (IsA lamasery monastery) (STV 1.0 0.9091)) +(: cnet_isa_3ddfe1e7e6 (IsA lamaze_method_of_childbirth natural_childbirth) (STV 1.0 0.9091)) +(: cnet_isa_7ec892aa38 (IsA lamb_s_quarter green) (STV 1.0 0.9091)) +(: cnet_isa_71bf3ade8b (IsA lamb_s_quarter goosefoot) (STV 1.0 0.9091)) +(: cnet_isa_31b6903ab3 (IsA lamb meat) (STV 1.0 0.9091)) +(: cnet_isa_f24c5cd1a2 (IsA lamb young_mammal) (STV 1.0 0.9091)) +(: cnet_isa_adae4801fa (IsA lamb victim) (STV 1.0 0.9091)) +(: cnet_isa_fa275c40e1 (IsA lamb_chop chop) (STV 1.0 0.9091)) +(: cnet_isa_67e6e56069 (IsA lamb_curry curry) (STV 1.0 0.9091)) +(: cnet_isa_4c1f16fb7a (IsA lamb_roast roast) (STV 1.0 0.9091)) +(: cnet_isa_05c5cf7ec1 (IsA lamb_succory herb) (STV 1.0 0.9091)) +(: cnet_isa_b6f7d81a5c (IsA lambda craniometric_point) (STV 1.0 0.9091)) +(: cnet_isa_26080395dd (IsA lambda letter) (STV 1.0 0.9091)) +(: cnet_isa_776330c931 (IsA lambda_particle hyperon) (STV 1.0 0.9091)) +(: cnet_isa_a167ac2835 (IsA lambdacism speech_disorder) (STV 1.0 0.9091)) +(: cnet_isa_e8c468aab4 (IsA lambert illumination_unit) (STV 1.0 0.9091)) +(: cnet_isa_4cbbedc62f (IsA lambert_eaton_syndrome disease_of_neuromuscular_junction) (STV 1.0 0.9091)) +(: cnet_isa_1d92ed1627 (IsA lambertia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7753fbb72c (IsA lambis mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_566c34e6c8 (IsA lambkin lamb) (STV 1.0 0.9091)) +(: cnet_isa_1aa8c5a283 (IsA lamboid_suture suture) (STV 1.0 0.9091)) +(: cnet_isa_91da41e771 (IsA lambrequin hanging) (STV 1.0 0.9091)) +(: cnet_isa_ea852a5ea2 (IsA lambrequin scarf) (STV 1.0 0.9091)) +(: cnet_isa_e1d206b82e (IsA lambskin fur) (STV 1.0 0.9091)) +(: cnet_isa_e389e8fd56 (IsA lame fabric) (STV 1.0 0.9091)) +(: cnet_isa_9fbb956ca2 (IsA lame_duck elected_official) (STV 1.0 0.9091)) +(: cnet_isa_bab5900954 (IsA lamedh letter) (STV 1.0 0.9091)) +(: cnet_isa_f870ad64fb (IsA lamella plate) (STV 1.0 0.9091)) +(: cnet_isa_4d2591b89b (IsA lamella membrane) (STV 1.0 0.9091)) +(: cnet_isa_10ca3d485d (IsA lamellar_mixture mixture) (STV 1.0 0.9091)) +(: cnet_isa_9efae4451f (IsA lamellate_placentation placentation) (STV 1.0 0.9091)) +(: cnet_isa_a174d1ebcd (IsA lamellicorn_beetle beetle) (STV 1.0 0.9091)) +(: cnet_isa_58e0cd66de (IsA lamellicornia arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_3f25741760 (IsA lameness defectiveness) (STV 1.0 0.9091)) +(: cnet_isa_f3a54127f6 (IsA lameness disability_of_walking) (STV 1.0 0.9091)) +(: cnet_isa_4eadfaf196 (IsA lament complaint) (STV 1.0 0.9091)) +(: cnet_isa_b7ff292e3e (IsA lamentation activity) (STV 1.0 0.9091)) +(: cnet_isa_bfff2ee072 (IsA lamentation expression) (STV 1.0 0.9091)) +(: cnet_isa_631e803172 (IsA lamina plate) (STV 1.0 0.9091)) +(: cnet_isa_d9aed228eb (IsA lamina_arcus_vertebrae lamina) (STV 1.0 0.9091)) +(: cnet_isa_91edfb0c4d (IsA laminar_flow streamline_flow) (STV 1.0 0.9091)) +(: cnet_isa_f98496707f (IsA laminar_flow_clean_room clean_room) (STV 1.0 0.9091)) +(: cnet_isa_d4c41da7d6 (IsA laminaria protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_f8922472b2 (IsA laminariaceae protoctist_family) (STV 1.0 0.9091)) +(: cnet_isa_419bc152a2 (IsA laminariale protoctist_order) (STV 1.0 0.9091)) +(: cnet_isa_6fa7e21424 (IsA laminate lamination) (STV 1.0 0.9091)) +(: cnet_isa_9115a39150 (IsA laminate sheet) (STV 1.0 0.9091)) +(: cnet_isa_a15c3dd3f9 (IsA lamination creating_from_raw_material) (STV 1.0 0.9091)) +(: cnet_isa_8406effd11 (IsA lamination structure) (STV 1.0 0.9091)) +(: cnet_isa_e610658aa1 (IsA laminator skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_f3406d6f24 (IsA laminectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_a6e0b2871a (IsA laminitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_c9b4c0e2ce (IsA lamium asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_94711b24f9 (IsA lamivudine nucleoside_reverse_transcriptase_inhibitor) (STV 1.0 0.9091)) +(: cnet_isa_25b7a23779 (IsA lamma quarter_day) (STV 1.0 0.9091)) +(: cnet_isa_4e9636e6c8 (IsA lammastide season) (STV 1.0 0.9091)) +(: cnet_isa_27ee2fc2c9 (IsA lamna fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_923a5f7642 (IsA lamnidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_47b4059517 (IsA lamp furniture) (STV 1.0 0.9091)) +(: cnet_isa_fef68c8144 (IsA lamp source_of_illumination) (STV 1.0 0.9091)) +(: cnet_isa_d57732ce5a (IsA lamp_chimney flue) (STV 1.0 0.9091)) +(: cnet_isa_d38082dfc5 (IsA lamp_house housing) (STV 1.0 0.9091)) +(: cnet_isa_02b9d95206 (IsA lamplight light) (STV 1.0 0.9091)) +(: cnet_isa_b7e47a4809 (IsA lamplighter worker) (STV 1.0 0.9091)) +(: cnet_isa_8a9b27f8a5 (IsA lampoon_artist cartoonist) (STV 1.0 0.9091)) +(: cnet_isa_0a0433e1c8 (IsA lamppost post) (STV 1.0 0.9091)) +(: cnet_isa_981cf83a81 (IsA lamprey jawless_vertebrate) (STV 1.0 0.9091)) +(: cnet_isa_50a8d3b08d (IsA lampridae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_69028931e1 (IsA lampris fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_c6cc0fe4ad (IsA lampropeltis reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_73a63dd97e (IsA lampshade protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_db99234d44 (IsA lampyridae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_3f77b28a60 (IsA lanai veranda) (STV 1.0 0.9091)) +(: cnet_isa_26dafa203e (IsA lancaster dynasty) (STV 1.0 0.9091)) +(: cnet_isa_88bb97f3e9 (IsA lancaster royalty) (STV 1.0 0.9091)) +(: cnet_isa_90dcc848e5 (IsA lancastrian english_person) (STV 1.0 0.9091)) +(: cnet_isa_ffe7eee543 (IsA lance_corporal noncommissioned_officer) (STV 1.0 0.9091)) +(: cnet_isa_875682cdb9 (IsA lancelet cephalochordate) (STV 1.0 0.9091)) +(: cnet_isa_18299d6d7d (IsA lanceolate_leaf simple_leaf) (STV 1.0 0.9091)) +(: cnet_isa_680cda10d3 (IsA lanceolate_spleenwort spleenwort) (STV 1.0 0.9091)) +(: cnet_isa_933b5d69a3 (IsA lancer cavalryman) (STV 1.0 0.9091)) +(: cnet_isa_42ee8821fa (IsA lancer quadrille) (STV 1.0 0.9091)) +(: cnet_isa_6b639769ee (IsA lancet surgical_knife) (STV 1.0 0.9091)) +(: cnet_isa_d2b4480d73 (IsA lancet_arch gothic_arch) (STV 1.0 0.9091)) +(: cnet_isa_fec2602404 (IsA lancet_window window) (STV 1.0 0.9091)) +(: cnet_isa_bb19371cc0 (IsA lancetfish soft_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_b801bc90f7 (IsA lancewood tree) (STV 1.0 0.9091)) +(: cnet_isa_86f2c8bc5a (IsA lancewood wood) (STV 1.0 0.9091)) +(: cnet_isa_415d05d26e (IsA land object) (STV 1.0 0.9091)) +(: cnet_isa_894649705b (IsA land real_property) (STV 1.0 0.9091)) +(: cnet_isa_24a904edec (IsA land_agent administrator) (STV 1.0 0.9091)) +(: cnet_isa_7929985b5c (IsA land_development exploitation) (STV 1.0 0.9091)) +(: cnet_isa_5e62a420fa (IsA land_grant grant) (STV 1.0 0.9091)) +(: cnet_isa_2e063c26e6 (IsA land_line telephone_line) (STV 1.0 0.9091)) +(: cnet_isa_f4359dc207 (IsA land_mine mine) (STV 1.0 0.9091)) +(: cnet_isa_36af98c8e2 (IsA land_office government_office) (STV 1.0 0.9091)) +(: cnet_isa_8dff824d3a (IsA land_office_business business) (STV 1.0 0.9091)) +(: cnet_isa_48f202cf7f (IsA land_reform reform) (STV 1.0 0.9091)) +(: cnet_isa_5a2182745b (IsA land_resource natural_resource) (STV 1.0 0.9091)) +(: cnet_isa_7435d3976d (IsA landau carriage) (STV 1.0 0.9091)) +(: cnet_isa_caf0bdfbd4 (IsA landed_gentry gentry) (STV 1.0 0.9091)) +(: cnet_isa_92e38397f9 (IsA lander spacecraft) (STV 1.0 0.9091)) +(: cnet_isa_a4cfcd619f (IsA landfall sighting) (STV 1.0 0.9091)) +(: cnet_isa_920c87a1f5 (IsA landfall seashore) (STV 1.0 0.9091)) +(: cnet_isa_41fdb81dc8 (IsA landfill place_for_trash) (STV 1.0 0.9091)) +(: cnet_isa_09f4065175 (IsA landfill lowland) (STV 1.0 0.9091)) +(: cnet_isa_929d4d90f3 (IsA landgrave count) (STV 1.0 0.9091)) +(: cnet_isa_773d8910b3 (IsA landholding ownership) (STV 1.0 0.9091)) +(: cnet_isa_1ff9ea2f5f (IsA landholding property) (STV 1.0 0.9091)) +(: cnet_isa_beba5ad1d9 (IsA landing arrival) (STV 1.0 0.9091)) +(: cnet_isa_b32b19df5a (IsA landing platform) (STV 1.0 0.9091)) +(: cnet_isa_3f90d5bda9 (IsA landing structure) (STV 1.0 0.9091)) +(: cnet_isa_f361498580 (IsA landing_approach approach) (STV 1.0 0.9091)) +(: cnet_isa_f8dd40a119 (IsA landing_craft craft) (STV 1.0 0.9091)) +(: cnet_isa_8dc898538f (IsA landing_flap flap) (STV 1.0 0.9091)) +(: cnet_isa_1a522ec7a7 (IsA landing_gear undercarriage) (STV 1.0 0.9091)) +(: cnet_isa_4a57704148 (IsA landing_net fishnet) (STV 1.0 0.9091)) +(: cnet_isa_a480eeee5d (IsA landing_party party) (STV 1.0 0.9091)) +(: cnet_isa_dfe05c1e4b (IsA landing_skid landing_gear) (STV 1.0 0.9091)) +(: cnet_isa_a12500aac1 (IsA landing_stage platform) (STV 1.0 0.9091)) +(: cnet_isa_43c19f038f (IsA landlady landlord) (STV 1.0 0.9091)) +(: cnet_isa_7d8221fdda (IsA landler country_dance) (STV 1.0 0.9091)) +(: cnet_isa_29a095f424 (IsA landler dance_music) (STV 1.0 0.9091)) +(: cnet_isa_74577681bf (IsA landlocked_salmon atlantic_salmon) (STV 1.0 0.9091)) +(: cnet_isa_b3b80d25db (IsA landlord_s_lien lien) (STV 1.0 0.9091)) +(: cnet_isa_cd768abd2f (IsA landlord landowner) (STV 1.0 0.9091)) +(: cnet_isa_d8d0037165 (IsA landlubber inhabitant) (STV 1.0 0.9091)) +(: cnet_isa_82ba7a386d (IsA landlubber novice) (STV 1.0 0.9091)) +(: cnet_isa_d1f11f070f (IsA landmark connection_to_history) (STV 1.0 0.9091)) +(: cnet_isa_f1d28c8138 (IsA landmark reference_point) (STV 1.0 0.9091)) +(: cnet_isa_6f5f3bbe13 (IsA landmark juncture) (STV 1.0 0.9091)) +(: cnet_isa_42dba29317 (IsA landmark position) (STV 1.0 0.9091)) +(: cnet_isa_484cc2ed5b (IsA landmark structure) (STV 1.0 0.9091)) +(: cnet_isa_c2e6604640 (IsA landmass land) (STV 1.0 0.9091)) +(: cnet_isa_f1a122708b (IsA landowner holder) (STV 1.0 0.9091)) +(: cnet_isa_f3bf5c0755 (IsA landscape genre) (STV 1.0 0.9091)) +(: cnet_isa_571595cb75 (IsA landscape painting) (STV 1.0 0.9091)) +(: cnet_isa_4e400f01b5 (IsA landscape point_of_view) (STV 1.0 0.9091)) +(: cnet_isa_9a05e74ab9 (IsA landscape scenery) (STV 1.0 0.9091)) +(: cnet_isa_a10f73ac64 (IsA landscape_architect architect) (STV 1.0 0.9091)) +(: cnet_isa_fb6ac797dd (IsA landscape_architecture discipline) (STV 1.0 0.9091)) +(: cnet_isa_275b63ffbd (IsA landscape_architecture fine_art) (STV 1.0 0.9091)) +(: cnet_isa_f87d77b5ea (IsA landscaping gardening) (STV 1.0 0.9091)) +(: cnet_isa_96b9e2eb94 (IsA landscaping garden) (STV 1.0 0.9091)) +(: cnet_isa_6adc6c7156 (IsA landscapist painter) (STV 1.0 0.9091)) +(: cnet_isa_9ceedde9fb (IsA landside component) (STV 1.0 0.9091)) +(: cnet_isa_d9b3330991 (IsA landslide slide) (STV 1.0 0.9091)) +(: cnet_isa_371790de09 (IsA landslide victory) (STV 1.0 0.9091)) +(: cnet_isa_9289608312 (IsA lane_s_prince_albert cooking_apple) (STV 1.0 0.9091)) +(: cnet_isa_9660cc6ee8 (IsA lane small_road) (STV 1.0 0.9339)) +(: cnet_isa_db6178abf6 (IsA lane path) (STV 1.0 0.9091)) +(: cnet_isa_726fb672e0 (IsA lane way) (STV 1.0 0.9091)) +(: cnet_isa_0739812ed8 (IsA langbeinite mineral) (STV 1.0 0.9091)) +(: cnet_isa_f3dda77126 (IsA langlaufer skier) (STV 1.0 0.9091)) +(: cnet_isa_0949d685ee (IsA langley unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_cbe7e5c0bb (IsA langobard european) (STV 1.0 0.9091)) +(: cnet_isa_f4933f3759 (IsA language faculty) (STV 1.0 0.9091)) +(: cnet_isa_52f7ab5aef (IsA language communication) (STV 1.0 0.9091)) +(: cnet_isa_770097e685 (IsA language_area cortical_area) (STV 1.0 0.9091)) +(: cnet_isa_55d633ff36 (IsA language_barrier barrier) (STV 1.0 0.9091)) +(: cnet_isa_5d0b460d56 (IsA language_learning learning) (STV 1.0 0.9091)) +(: cnet_isa_265e1e37d2 (IsA language_lesson lesson) (STV 1.0 0.9091)) +(: cnet_isa_727908f850 (IsA language_requirement academic_requirement) (STV 1.0 0.9091)) +(: cnet_isa_bbc536b0ee (IsA language_school school) (STV 1.0 0.9091)) +(: cnet_isa_156c029a9a (IsA language_system system) (STV 1.0 0.9091)) +(: cnet_isa_c6ff25aba2 (IsA language_teaching teaching) (STV 1.0 0.9091)) +(: cnet_isa_d9a0967e48 (IsA language_unit part) (STV 1.0 0.9091)) +(: cnet_isa_3aa72d0f89 (IsA langue_d_oc french) (STV 1.0 0.9091)) +(: cnet_isa_651df24951 (IsA langue_d_oil french) (STV 1.0 0.9091)) +(: cnet_isa_1337828a73 (IsA languisher unfortunate) (STV 1.0 0.9091)) +(: cnet_isa_e553d3af0a (IsA languor inactiveness) (STV 1.0 0.9091)) +(: cnet_isa_9764db88fa (IsA languor apathy) (STV 1.0 0.9091)) +(: cnet_isa_380c8595c5 (IsA languor easiness) (STV 1.0 0.9091)) +(: cnet_isa_99c68fdd0d (IsA languor wind) (STV 1.0 0.9091)) +(: cnet_isa_4a88274daa (IsA langur old_world_monkey) (STV 1.0 0.9091)) +(: cnet_isa_80f341ecd2 (IsA laniidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_63818cbf09 (IsA lanius bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_6400d8cc14 (IsA lankiness physique) (STV 1.0 0.9091)) +(: cnet_isa_8cccfc293e (IsA lanolin cream) (STV 1.0 0.9091)) +(: cnet_isa_fbc9037d46 (IsA lanolin animal_oil) (STV 1.0 0.9091)) +(: cnet_isa_5145bbf244 (IsA lanseh edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_0438c9b939 (IsA lanseh_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_1cc4268c7d (IsA lantana poisonous_plant) (STV 1.0 0.9091)) +(: cnet_isa_e7fd00f286 (IsA lantern lamp) (STV 1.0 0.9091)) +(: cnet_isa_98db542f67 (IsA lantern_fly plant_hopper) (STV 1.0 0.9091)) +(: cnet_isa_495a208d7c (IsA lantern_jaw lower_jaw) (STV 1.0 0.9091)) +(: cnet_isa_3fd0de7c56 (IsA lantern_pinion pinion) (STV 1.0 0.9091)) +(: cnet_isa_99536d2c69 (IsA lanternfish soft_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_69bec305cc (IsA lanthanide_sery sery) (STV 1.0 0.9091)) +(: cnet_isa_381a7a5caf (IsA lanthanotidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_09038bef14 (IsA lanthanotus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_3eaab0f5e3 (IsA lanthanotus_borneensis lizard) (STV 1.0 0.9091)) +(: cnet_isa_c86c1890cd (IsA lanthanum metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_ae32b98213 (IsA lanugo down) (STV 1.0 0.9091)) +(: cnet_isa_56b18df3d4 (IsA lanyard cord) (STV 1.0 0.9091)) +(: cnet_isa_8fa7736518 (IsA lanyard line) (STV 1.0 0.9091)) +(: cnet_isa_1b2fb20ae9 (IsA lao tai) (STV 1.0 0.9091)) +(: cnet_isa_07196919e3 (IsA laotian asiatic) (STV 1.0 0.9091)) +(: cnet_isa_e005114a90 (IsA laotian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_e5d2840bbf (IsA lap locomotion) (STV 1.0 0.9091)) +(: cnet_isa_817c1a83df (IsA lap cloth_covering) (STV 1.0 0.9091)) +(: cnet_isa_5fc308c99f (IsA lap flap) (STV 1.0 0.9091)) +(: cnet_isa_961c7afb8c (IsA lap thigh) (STV 1.0 0.9091)) +(: cnet_isa_e9a944c083 (IsA lap sphere) (STV 1.0 0.9091)) +(: cnet_isa_b242611f5b (IsA lap_joint joint) (STV 1.0 0.9091)) +(: cnet_isa_77e40c1436 (IsA lap_of_god lap) (STV 1.0 0.9091)) +(: cnet_isa_02cbcc3633 (IsA lap_of_luxury ease) (STV 1.0 0.9091)) +(: cnet_isa_79d712a3d4 (IsA laparocele hernia) (STV 1.0 0.9091)) +(: cnet_isa_539937982b (IsA laparoscope endoscope) (STV 1.0 0.9091)) +(: cnet_isa_526cf0da3f (IsA laparoscopic_cholecystectomy cholecystectomy) (STV 1.0 0.9091)) +(: cnet_isa_020cb80b42 (IsA laparoscopy laparotomy) (STV 1.0 0.9091)) +(: cnet_isa_6815ccb8d4 (IsA laparotomy incision) (STV 1.0 0.9091)) +(: cnet_isa_27320b34c1 (IsA lapboard writing_board) (STV 1.0 0.9091)) +(: cnet_isa_7bad095864 (IsA lapdog dog) (STV 1.0 0.9091)) +(: cnet_isa_106ca1197e (IsA lapel lap) (STV 1.0 0.9091)) +(: cnet_isa_459345de64 (IsA lapful containerful) (STV 1.0 0.9091)) +(: cnet_isa_674e5fb1d2 (IsA lapidary engraver) (STV 1.0 0.9091)) +(: cnet_isa_dd69ea766b (IsA lapidary expert) (STV 1.0 0.9091)) +(: cnet_isa_2731787d4a (IsA lapin rabbit) (STV 1.0 0.9091)) +(: cnet_isa_fb7d66d6e4 (IsA lapin fur) (STV 1.0 0.9091)) +(: cnet_isa_e509f18fe9 (IsA lapis_lazuli opaque_gem) (STV 1.0 0.9091)) +(: cnet_isa_8fd4dbed13 (IsA laportea dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_cc97ad5280 (IsA lapp lappic) (STV 1.0 0.9091)) +(: cnet_isa_538c04b55a (IsA lappet lasiocampid) (STV 1.0 0.9091)) +(: cnet_isa_76abe7170f (IsA lappet lap) (STV 1.0 0.9091)) +(: cnet_isa_ec7e0ebd99 (IsA lappet_caterpillar caterpillar) (STV 1.0 0.9091)) +(: cnet_isa_267e610835 (IsA lappic uralic) (STV 1.0 0.9091)) +(: cnet_isa_33be5a9309 (IsA lapplander european) (STV 1.0 0.9091)) +(: cnet_isa_a67edd16d5 (IsA lapse pause) (STV 1.0 0.9091)) +(: cnet_isa_39d1c07cbb (IsA laptop portable_computer) (STV 1.0 0.9091)) +(: cnet_isa_c9cd57c68d (IsA laputa imaginary_place) (STV 1.0 0.9091)) +(: cnet_isa_59f94ddd0b (IsA lapwing plover) (STV 1.0 0.9091)) +(: cnet_isa_afdd9e3d88 (IsA larboard side) (STV 1.0 0.9091)) +(: cnet_isa_fb93610902 (IsA larcenist thief) (STV 1.0 0.9091)) +(: cnet_isa_aa4353ca6f (IsA larceny felony) (STV 1.0 0.9091)) +(: cnet_isa_947a70b479 (IsA larch conifer) (STV 1.0 0.9091)) +(: cnet_isa_bf02b1544d (IsA larch wood) (STV 1.0 0.9091)) +(: cnet_isa_f5ef87b9f0 (IsA lard edible_fat) (STV 1.0 0.9091)) +(: cnet_isa_59bdd313ad (IsA lard_oil animal_oil) (STV 1.0 0.9091)) +(: cnet_isa_ae2b47ba73 (IsA larder commissariat) (STV 1.0 0.9091)) +(: cnet_isa_89694b0366 (IsA lardizabala magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_17ae71715d (IsA lardizabalaceae magnoliid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_508cd156e4 (IsA large size) (STV 1.0 0.9091)) +(: cnet_isa_41798be5d9 (IsA large_cap corporation) (STV 1.0 0.9091)) +(: cnet_isa_83c6597699 (IsA large_civet civet) (STV 1.0 0.9091)) +(: cnet_isa_d3cd18a76a (IsA large_container bigger_than_small_container) (STV 1.0 0.9091)) +(: cnet_isa_3265191025 (IsA large_crabgrass crabgrass) (STV 1.0 0.9091)) +(: cnet_isa_40d0c7eb64 (IsA large_flowered_calamint calamint) (STV 1.0 0.9091)) +(: cnet_isa_55a95d3c10 (IsA large_flowered_fiddleneck herb) (STV 1.0 0.9091)) +(: cnet_isa_2847c5a2ba (IsA large_indefinite_quantity indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_5c91acf7bb (IsA large_integer integer) (STV 1.0 0.9091)) +(: cnet_isa_e6fd49fcb6 (IsA large_intestine intestine) (STV 1.0 0.9091)) +(: cnet_isa_af77b63f53 (IsA large_leaved_aster wood_aster) (STV 1.0 0.9091)) +(: cnet_isa_b1ad0c9d34 (IsA large_leaved_magnolia magnolia) (STV 1.0 0.9091)) +(: cnet_isa_6f984d003c (IsA large_magellanic_cloud magellanic_cloud) (STV 1.0 0.9091)) +(: cnet_isa_bc8b38338d (IsA large_periwinkle periwinkle) (STV 1.0 0.9091)) +(: cnet_isa_2629622e78 (IsA large_person person) (STV 1.0 0.9091)) +(: cnet_isa_93a629049f (IsA large_poodle poodle) (STV 1.0 0.9091)) +(: cnet_isa_254d394326 (IsA large_white cabbage_butterfly) (STV 1.0 0.9091)) +(: cnet_isa_be9a44565a (IsA large_white_petunia petunia) (STV 1.0 0.9091)) +(: cnet_isa_cbfcfb8a19 (IsA large_yellow_lady_s_slipper yellow_lady_s_slipper) (STV 1.0 0.9091)) +(: cnet_isa_66dac9bf1f (IsA largeleaf_holly holly) (STV 1.0 0.9091)) +(: cnet_isa_b67863eb20 (IsA largemouth black_bass) (STV 1.0 0.9091)) +(: cnet_isa_995a5b19ca (IsA largemouth_bass freshwater_bass) (STV 1.0 0.9091)) +(: cnet_isa_90af03a494 (IsA largeness size) (STV 1.0 0.9091)) +(: cnet_isa_eaa1e87ab9 (IsA largess gift) (STV 1.0 0.9091)) +(: cnet_isa_a981c31544 (IsA larghetto musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_141c565e6c (IsA largo musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_4d368292bc (IsA largo passage) (STV 1.0 0.9091)) +(: cnet_isa_567d2d9cd8 (IsA lari animal_order) (STV 1.0 0.9091)) +(: cnet_isa_dca3a5c698 (IsA lari georgian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_c092d3d178 (IsA laricariidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_d6c917e8ca (IsA larid coastal_diving_bird) (STV 1.0 0.9091)) +(: cnet_isa_02d93ce762 (IsA laridae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_c0920dcfb3 (IsA larix gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_f58dab4ecf (IsA lark bird) (STV 1.0 0.9339)) +(: cnet_isa_725a183380 (IsA lark oscine) (STV 1.0 0.9091)) +(: cnet_isa_6981d71e4a (IsA larkspur delphinium) (STV 1.0 0.9091)) +(: cnet_isa_c450491680 (IsA larrea rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5facd18b86 (IsA larsony crime) (STV 1.0 0.9091)) +(: cnet_isa_0a3a252db6 (IsA larus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_473de8b198 (IsA larva animal) (STV 1.0 0.9091)) +(: cnet_isa_7110798bcd (IsA larvacea class) (STV 1.0 0.9091)) +(: cnet_isa_c9bf7678b9 (IsA larvacean tunicate) (STV 1.0 0.9091)) +(: cnet_isa_4cad573551 (IsA larvacide insecticide) (STV 1.0 0.9091)) +(: cnet_isa_80d7b32c8e (IsA larvicide chemical) (STV 1.0 0.9091)) +(: cnet_isa_7e271ee18f (IsA laryngeal_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_207ded4534 (IsA laryngeal_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_dcad2471d6 (IsA laryngectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_c2f6398b4f (IsA laryngismus spasm) (STV 1.0 0.9091)) +(: cnet_isa_e46d0181fe (IsA laryngitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_1e2eeceead (IsA laryngopharyngitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_fe5b8a197f (IsA laryngopharynx cavity) (STV 1.0 0.9091)) +(: cnet_isa_daf5324432 (IsA laryngoscope medical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_276f3d2405 (IsA laryngospasm occlusion) (STV 1.0 0.9091)) +(: cnet_isa_f6d10d0ba1 (IsA laryngostenosis stenosis) (STV 1.0 0.9091)) +(: cnet_isa_099c08c9db (IsA laryngotracheobronchitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_cb325c235a (IsA larynx cartilaginous_structure) (STV 1.0 0.9091)) +(: cnet_isa_c9ef9d5bc7 (IsA larynx speech_organ) (STV 1.0 0.9091)) +(: cnet_isa_91a15d906f (IsA lasagna form_of_pasta) (STV 1.0 0.9339)) +(: cnet_isa_1aabcde39d (IsA lasagna pasta) (STV 1.0 0.9091)) +(: cnet_isa_2a3144abf9 (IsA lascar sailor) (STV 1.0 0.9091)) +(: cnet_isa_51b3ce4600 (IsA laser light) (STV 1.0 0.9091)) +(: cnet_isa_0aed9dbc64 (IsA laser optical_device) (STV 1.0 0.9091)) +(: cnet_isa_25b002d3d0 (IsA laser_assisted_in_situ_keratomileusis eye_operation) (STV 1.0 0.9091)) +(: cnet_isa_b81f0da573 (IsA laser_assisted_subepithelial_keratomileusis eye_operation) (STV 1.0 0.9091)) +(: cnet_isa_9e6a4cc5a8 (IsA laser_beam beam) (STV 1.0 0.9091)) +(: cnet_isa_2725a98b01 (IsA laser_guided_bomb smart_bomb) (STV 1.0 0.9091)) +(: cnet_isa_03ce940cc7 (IsA laser_printer electrostatic_printer) (STV 1.0 0.9091)) +(: cnet_isa_61f51c55c3 (IsA laser_trabecular_surgery eye_operation) (STV 1.0 0.9091)) +(: cnet_isa_f5ae9663ea (IsA lash leather_strip) (STV 1.0 0.9091)) +(: cnet_isa_88aaec649f (IsA lash_up arrangement) (STV 1.0 0.9091)) +(: cnet_isa_f35d6347b5 (IsA lasher driver) (STV 1.0 0.9091)) +(: cnet_isa_a6267ac7aa (IsA lashing fastener) (STV 1.0 0.9091)) +(: cnet_isa_a9ae303988 (IsA lashing rope) (STV 1.0 0.9091)) +(: cnet_isa_4ebf6884b0 (IsA lasiocampa arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_a9a69e9d74 (IsA lasiocampid moth) (STV 1.0 0.9091)) +(: cnet_isa_73100abff9 (IsA lasiocampidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_f0e38239d6 (IsA lasiurus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_80f9e73d18 (IsA lass girl) (STV 1.0 0.9091)) +(: cnet_isa_d8a311e8c5 (IsA lassa_fever hemorrhagic_fever) (STV 1.0 0.9091)) +(: cnet_isa_f78c5d8de4 (IsA lassa_virus arenavirus) (STV 1.0 0.9091)) +(: cnet_isa_9bb95a7b1d (IsA lasso rope) (STV 1.0 0.9091)) +(: cnet_isa_45adf0d13a (IsA last activity) (STV 1.0 0.9091)) +(: cnet_isa_2d7ec65f7a (IsA last holding_device) (STV 1.0 0.9091)) +(: cnet_isa_e244e65cb3 (IsA last rank) (STV 1.0 0.9091)) +(: cnet_isa_8ca73fa7ea (IsA last volume_unit) (STV 1.0 0.9091)) +(: cnet_isa_93a555da61 (IsA last weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_c0da6c5d3c (IsA last_gasp end) (STV 1.0 0.9091)) +(: cnet_isa_4cf9576827 (IsA last_in_first_out inventory_accounting) (STV 1.0 0.9091)) +(: cnet_isa_4bf66d4a2f (IsA last_laugh victory) (STV 1.0 0.9091)) +(: cnet_isa_9c72b21ab7 (IsA last_mile walk) (STV 1.0 0.9091)) +(: cnet_isa_782bc11b8c (IsA last_quarter half_moon) (STV 1.0 0.9091)) +(: cnet_isa_6637cba253 (IsA last_respect deference) (STV 1.0 0.9091)) +(: cnet_isa_f3d26a4b8b (IsA last_rite rite) (STV 1.0 0.9091)) +(: cnet_isa_f506969a60 (IsA last_straw aggravation) (STV 1.0 0.9091)) +(: cnet_isa_21389e1ec0 (IsA last_supper seder) (STV 1.0 0.9091)) +(: cnet_isa_e953026bae (IsA last_word argument) (STV 1.0 0.9091)) +(: cnet_isa_6b904ddc61 (IsA last_word authority) (STV 1.0 0.9091)) +(: cnet_isa_3c1e4870c2 (IsA lasthenia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a768828a49 (IsA lastingness permanence) (STV 1.0 0.9091)) +(: cnet_isa_e11ef7eef5 (IsA lastreopsis fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_b58470d517 (IsA latakia turkish_tobacco) (STV 1.0 0.9091)) +(: cnet_isa_6a2ee989a0 (IsA latanier fan_palm) (STV 1.0 0.9091)) +(: cnet_isa_15e7e57893 (IsA latch catch) (STV 1.0 0.9091)) +(: cnet_isa_2bcd192417 (IsA latch lock) (STV 1.0 0.9091)) +(: cnet_isa_2f731f7eb4 (IsA latchet strap) (STV 1.0 0.9091)) +(: cnet_isa_dbf06325e5 (IsA latchkey key) (STV 1.0 0.9091)) +(: cnet_isa_05c1c7ea06 (IsA latchkey_child schoolchild) (STV 1.0 0.9091)) +(: cnet_isa_63047aa981 (IsA latchstring opener) (STV 1.0 0.9091)) +(: cnet_isa_92832aff74 (IsA late_blight blight) (STV 1.0 0.9091)) +(: cnet_isa_18bd68483a (IsA late_greek greek) (STV 1.0 0.9091)) +(: cnet_isa_928ca83df3 (IsA late_latin latin) (STV 1.0 0.9091)) +(: cnet_isa_22f534f4ba (IsA late_night_hour hour) (STV 1.0 0.9091)) +(: cnet_isa_df4f33b89a (IsA late_purple_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_60d95c2337 (IsA latecomer arrival) (STV 1.0 0.9091)) +(: cnet_isa_bf3bc83a1f (IsA lateen fore_and_aft_sail) (STV 1.0 0.9091)) +(: cnet_isa_dc717f19dc (IsA lateen_rig rig) (STV 1.0 0.9091)) +(: cnet_isa_de4f1255de (IsA latency potential) (STV 1.0 0.9091)) +(: cnet_isa_72f1667718 (IsA latency_stage phase) (STV 1.0 0.9091)) +(: cnet_isa_3d04284025 (IsA lateness timing) (STV 1.0 0.9091)) +(: cnet_isa_cb2c22f7bd (IsA latent_content message) (STV 1.0 0.9091)) +(: cnet_isa_e6937fe602 (IsA latent_diabete diabete_mellitus) (STV 1.0 0.9091)) +(: cnet_isa_991ac12545 (IsA latent_heat heat) (STV 1.0 0.9091)) +(: cnet_isa_63a7c78665 (IsA latent_hostility hostility) (STV 1.0 0.9091)) +(: cnet_isa_87c0889ce7 (IsA latent_period time_interval) (STV 1.0 0.9091)) +(: cnet_isa_7e54a7c736 (IsA lateral_condyle condyle) (STV 1.0 0.9091)) +(: cnet_isa_4e38d0479a (IsA lateral_epicondyle epicondyle) (STV 1.0 0.9091)) +(: cnet_isa_bd139ffed8 (IsA lateral_geniculate_body geniculate_body) (STV 1.0 0.9091)) +(: cnet_isa_488a76ccea (IsA lateral_line sense_organ) (STV 1.0 0.9091)) +(: cnet_isa_212f237444 (IsA lateral_pass pass) (STV 1.0 0.9091)) +(: cnet_isa_51b363260f (IsA lateral_thinking heuristic) (STV 1.0 0.9091)) +(: cnet_isa_f20f5fe813 (IsA lateral_ventricle ventricle) (STV 1.0 0.9091)) +(: cnet_isa_f731de5658 (IsA laterality bodily_property) (STV 1.0 0.9091)) +(: cnet_isa_1ae712a0df (IsA lateralization localization_of_function) (STV 1.0 0.9091)) +(: cnet_isa_ee85a7eef7 (IsA lateran_council council) (STV 1.0 0.9091)) +(: cnet_isa_6864814a4b (IsA laterite soil) (STV 1.0 0.9091)) +(: cnet_isa_ce1747891e (IsA latest new) (STV 1.0 0.9091)) +(: cnet_isa_cebc083d5e (IsA latex exudate) (STV 1.0 0.9091)) +(: cnet_isa_01fe710d3b (IsA latex_paint water_base_paint) (STV 1.0 0.9091)) +(: cnet_isa_8838dedc26 (IsA lath slat) (STV 1.0 0.9091)) +(: cnet_isa_55d626847f (IsA lath_and_plaster building_material) (STV 1.0 0.9091)) +(: cnet_isa_89ea6dc29d (IsA lathe shaper) (STV 1.0 0.9091)) +(: cnet_isa_4b24be6147 (IsA lather foam) (STV 1.0 0.9091)) +(: cnet_isa_3f897d0ce2 (IsA lather workman) (STV 1.0 0.9091)) +(: cnet_isa_e24cfbca6d (IsA lathi club) (STV 1.0 0.9091)) +(: cnet_isa_614fd90831 (IsA lathyrus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f67883f481 (IsA laticifer duct) (STV 1.0 0.9091)) +(: cnet_isa_b0b412f3a0 (IsA latimeria fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_f56782f1c5 (IsA latimeridae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_a1133ab2f7 (IsA latin human_language) (STV 1.0 0.9091)) +(: cnet_isa_d821be6710 (IsA latin italic) (STV 1.0 0.9091)) +(: cnet_isa_ac922e6fff (IsA latin inhabitant) (STV 1.0 0.9091)) +(: cnet_isa_0fedbfb2b2 (IsA latin person) (STV 1.0 0.9091)) +(: cnet_isa_6b51d159d0 (IsA latin_cross cross) (STV 1.0 0.9091)) +(: cnet_isa_72408f3c94 (IsA latin_square square_matrix) (STV 1.0 0.9091)) +(: cnet_isa_062a8e59f8 (IsA latinae subfamily) (STV 1.0 0.9091)) +(: cnet_isa_d3176d3bef (IsA latinesce artificial_language) (STV 1.0 0.9091)) +(: cnet_isa_26bf4d5410 (IsA latinism loanword) (STV 1.0 0.9091)) +(: cnet_isa_12743a4551 (IsA latinist classicist) (STV 1.0 0.9091)) +(: cnet_isa_df00e905f1 (IsA latino american) (STV 1.0 0.9091)) +(: cnet_isa_0d7e9b2bb4 (IsA latisimus_dorsi skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_a2ca9cd5ea (IsA latitude scope) (STV 1.0 0.9091)) +(: cnet_isa_f860d660c7 (IsA latitude angular_distance) (STV 1.0 0.9091)) +(: cnet_isa_d38836a692 (IsA latitude line) (STV 1.0 0.9091)) +(: cnet_isa_ee42e548f6 (IsA latitude liberty) (STV 1.0 0.9091)) +(: cnet_isa_4c35f5763c (IsA latitudinarian liberal) (STV 1.0 0.9091)) +(: cnet_isa_22d15b57be (IsA latona graeco_roman_deity) (STV 1.0 0.9091)) +(: cnet_isa_e8406ebfba (IsA latrine public_toilet) (STV 1.0 0.9091)) +(: cnet_isa_954c394182 (IsA latrodectus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_be1dce9bea (IsA lat latvian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_23bc170d2c (IsA latten brass) (STV 1.0 0.9091)) +(: cnet_isa_761d585ff6 (IsA latter second) (STV 1.0 0.9091)) +(: cnet_isa_ff2cedac49 (IsA latter_day_saint protestant) (STV 1.0 0.9091)) +(: cnet_isa_f51cbcefc1 (IsA lattice framework) (STV 1.0 0.9091)) +(: cnet_isa_d347b87859 (IsA lattice arrangement) (STV 1.0 0.9091)) +(: cnet_isa_ecab04eab0 (IsA latvian baltic) (STV 1.0 0.9091)) +(: cnet_isa_34f0861342 (IsA latvian european) (STV 1.0 0.9091)) +(: cnet_isa_6127433b0f (IsA latvian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_1cecc36e45 (IsA laudanum opiate) (STV 1.0 0.9091)) +(: cnet_isa_133c1a960e (IsA laudator communicator) (STV 1.0 0.9091)) +(: cnet_isa_1cb2c3bb6d (IsA laugh facial_expression) (STV 1.0 0.9091)) +(: cnet_isa_8f5cdfd7cc (IsA laugh utterance) (STV 1.0 0.9091)) +(: cnet_isa_83122bf213 (IsA laugh_track soundtrack) (STV 1.0 0.9091)) +(: cnet_isa_c1af834fac (IsA laugher person) (STV 1.0 0.9091)) +(: cnet_isa_298d37a805 (IsA laughing_gull gull) (STV 1.0 0.9091)) +(: cnet_isa_caf8e48167 (IsA laughing_owl owl) (STV 1.0 0.9091)) +(: cnet_isa_46ddae320d (IsA laughter expression_of_humor) (STV 1.0 0.9091)) +(: cnet_isa_f882484a43 (IsA laughter very_special_homosapien_trait) (STV 1.0 0.9091)) +(: cnet_isa_14ad05abba (IsA laughter activity) (STV 1.0 0.9091)) +(: cnet_isa_ef3b553b2b (IsA launch motorboat) (STV 1.0 0.9091)) +(: cnet_isa_2b6edcbdda (IsA launcher armament) (STV 1.0 0.9091)) +(: cnet_isa_1a07cbcc8d (IsA launching propulsion) (STV 1.0 0.9091)) +(: cnet_isa_ecfd0eed98 (IsA launching_pad platform) (STV 1.0 0.9091)) +(: cnet_isa_56297f95bd (IsA launching_site site) (STV 1.0 0.9091)) +(: cnet_isa_380963abfc (IsA launderette laundry) (STV 1.0 0.9091)) +(: cnet_isa_9d1f926f43 (IsA laundering wash) (STV 1.0 0.9091)) +(: cnet_isa_5ab28bc587 (IsA laundry garment) (STV 1.0 0.9091)) +(: cnet_isa_883b52b0ca (IsA laundry white_good) (STV 1.0 0.9091)) +(: cnet_isa_92069e29d2 (IsA laundry workplace) (STV 1.0 0.9091)) +(: cnet_isa_2a02be7f14 (IsA laundry_cart handcart) (STV 1.0 0.9091)) +(: cnet_isa_1d419f9d33 (IsA laundry_detergent detergent) (STV 1.0 0.9091)) +(: cnet_isa_830a06f2f5 (IsA laundry_truck van) (STV 1.0 0.9091)) +(: cnet_isa_0c77a3243d (IsA lauraceae magnoliid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_1d973768de (IsA laureate honoree) (STV 1.0 0.9091)) +(: cnet_isa_75506adcf1 (IsA laurel angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_927accad3b (IsA laurel_oak oak) (STV 1.0 0.9091)) +(: cnet_isa_faed9a680e (IsA laurel_sumac shrub) (STV 1.0 0.9091)) +(: cnet_isa_59970480f4 (IsA laurel_tree laurel) (STV 1.0 0.9091)) +(: cnet_isa_afe41b48ee (IsA laurel wreath) (STV 1.0 0.9091)) +(: cnet_isa_52dd456e28 (IsA laurelwood tree) (STV 1.0 0.9091)) +(: cnet_isa_092ac749b1 (IsA lauric_acid saturated_fatty_acid) (STV 1.0 0.9091)) +(: cnet_isa_1cc1c35004 (IsA laurus magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a2c74880e7 (IsA lauryl_alcohol alcohol) (STV 1.0 0.9091)) +(: cnet_isa_befd1aa45b (IsA lava volcanic_rock) (STV 1.0 0.9091)) +(: cnet_isa_fdb49da1c7 (IsA lavage irrigation) (STV 1.0 0.9091)) +(: cnet_isa_b510baa632 (IsA lavalava skirt) (STV 1.0 0.9091)) +(: cnet_isa_ee8901c17b (IsA lavaliere pendant) (STV 1.0 0.9091)) +(: cnet_isa_e3d4372ecd (IsA lavandula asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4454eb4f4a (IsA lavatera dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_87c7363d6c (IsA lavender purple) (STV 1.0 0.9091)) +(: cnet_isa_be42d699f2 (IsA lavender shrub) (STV 1.0 0.9091)) +(: cnet_isa_66c1d8d621 (IsA lavender_cotton shrub) (STV 1.0 0.9091)) +(: cnet_isa_ab2bcc94c6 (IsA laver basin) (STV 1.0 0.9091)) +(: cnet_isa_793929e71d (IsA lavishness expensiveness) (STV 1.0 0.9091)) +(: cnet_isa_7c7e78ca34 (IsA law obligatory_rule_of_conduct) (STV 1.0 0.9339)) +(: cnet_isa_0bfc6474f6 (IsA law concept) (STV 1.0 0.9091)) +(: cnet_isa_b048f23084 (IsA law collection) (STV 1.0 0.9091)) +(: cnet_isa_7d7daf963c (IsA law learned_profession) (STV 1.0 0.9091)) +(: cnet_isa_81eaa04bf7 (IsA law legal_document) (STV 1.0 0.9091)) +(: cnet_isa_3d80e9a165 (IsA law_agent solicitor) (STV 1.0 0.9091)) +(: cnet_isa_dc4dcb25f3 (IsA law_degree academic_degree) (STV 1.0 0.9091)) +(: cnet_isa_6d1d3d0deb (IsA law_enforcement enforcement) (STV 1.0 0.9091)) +(: cnet_isa_473fe7d2c9 (IsA law_enforcement_agency agency) (STV 1.0 0.9091)) +(: cnet_isa_c1de94bc0d (IsA law_firm firm) (STV 1.0 0.9091)) +(: cnet_isa_4bee30d078 (IsA law_of_average law) (STV 1.0 0.9091)) +(: cnet_isa_94cd36d18e (IsA law_of_constant_proportion law) (STV 1.0 0.9091)) +(: cnet_isa_05fdc1fb5d (IsA law_of_diminishing_return law) (STV 1.0 0.9091)) +(: cnet_isa_b6f010fe93 (IsA law_of_effect law) (STV 1.0 0.9091)) +(: cnet_isa_d563033a47 (IsA law_of_equivalent_proportion law) (STV 1.0 0.9091)) +(: cnet_isa_c72a4b5944 (IsA law_of_gravitation law) (STV 1.0 0.9091)) +(: cnet_isa_871748ff4a (IsA law_of_independent_assortment mendel_s_law) (STV 1.0 0.9091)) +(: cnet_isa_5aa86deb96 (IsA law_of_land law) (STV 1.0 0.9091)) +(: cnet_isa_b8c8d1eb3d (IsA law_of_mass_action law) (STV 1.0 0.9091)) +(: cnet_isa_9e0d6a9029 (IsA law_of_multiple_proportion law) (STV 1.0 0.9091)) +(: cnet_isa_f5bbb5ea59 (IsA law_of_segregation mendel_s_law) (STV 1.0 0.9091)) +(: cnet_isa_4da632fae4 (IsA law_of_thermodynamic law) (STV 1.0 0.9091)) +(: cnet_isa_d43d384a17 (IsA law_practice practice) (STV 1.0 0.9091)) +(: cnet_isa_adc77bb1c6 (IsA law_school graduate_school) (STV 1.0 0.9091)) +(: cnet_isa_89376a355c (IsA law_student student) (STV 1.0 0.9091)) +(: cnet_isa_d6142beef0 (IsA lawcourt court) (STV 1.0 0.9091)) +(: cnet_isa_905e5e2cd5 (IsA lawfulness quality) (STV 1.0 0.9091)) +(: cnet_isa_6b3507d3d3 (IsA lawgiver leader) (STV 1.0 0.9091)) +(: cnet_isa_19b274fb9c (IsA lawlessness illegality) (STV 1.0 0.9091)) +(: cnet_isa_265b1fc068 (IsA lawman defender) (STV 1.0 0.9091)) +(: cnet_isa_75c30edc60 (IsA lawn area_of_grass) (STV 1.0 0.9091)) +(: cnet_isa_e5819c7ab0 (IsA lawn grass) (STV 1.0 0.9091)) +(: cnet_isa_2da69ef5a4 (IsA lawn field) (STV 1.0 0.9091)) +(: cnet_isa_7998dffddc (IsA lawn_bowling bowling) (STV 1.0 0.9091)) +(: cnet_isa_822ac9bc6b (IsA lawn_chair chair) (STV 1.0 0.9091)) +(: cnet_isa_e09b3b65a5 (IsA lawn_furniture furniture) (STV 1.0 0.9091)) +(: cnet_isa_708c69aaaf (IsA lawn_mower garden_tool) (STV 1.0 0.9091)) +(: cnet_isa_1a1cd0b52a (IsA lawrencium chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_d5a5bed135 (IsA law rule) (STV 1.0 0.9091)) +(: cnet_isa_ad8da97fce (IsA law rule_for_conduct) (STV 1.0 0.9091)) +(: cnet_isa_acce362af7 (IsA lawsuit proceeding) (STV 1.0 0.9091)) +(: cnet_isa_315dda9553 (IsA lawyer professional) (STV 1.0 0.9091)) +(: cnet_isa_ea8ea12c99 (IsA lawyer_cane calamus) (STV 1.0 0.9091)) +(: cnet_isa_e9bbf33102 (IsA lawyer_client_relation fiduciary_relation) (STV 1.0 0.9091)) +(: cnet_isa_ba98c2fa44 (IsA lawyerbush bramble_bush) (STV 1.0 0.9091)) +(: cnet_isa_b992421266 (IsA lawyer expert_in_contract) (STV 1.0 0.9091)) +(: cnet_isa_16d7ff2a00 (IsA laxative purgative) (STV 1.0 0.9091)) +(: cnet_isa_100580244b (IsA laxity condition) (STV 1.0 0.9091)) +(: cnet_isa_99f28cece3 (IsA laxness negligence) (STV 1.0 0.9091)) +(: cnet_isa_31cacdbbc0 (IsA lay_figure dummy) (STV 1.0 0.9091)) +(: cnet_isa_7bad065b9f (IsA lay_reader layman) (STV 1.0 0.9091)) +(: cnet_isa_01c874dad1 (IsA lay_up basketball_shot) (STV 1.0 0.9091)) +(: cnet_isa_048676dee6 (IsA lay_witness witness) (STV 1.0 0.9091)) +(: cnet_isa_b3beb9ee37 (IsA layby area) (STV 1.0 0.9091)) +(: cnet_isa_a2ae9db24a (IsA layer hen) (STV 1.0 0.9091)) +(: cnet_isa_33fbb1b035 (IsA layer structure) (STV 1.0 0.9091)) +(: cnet_isa_10a6eee310 (IsA layer artifact) (STV 1.0 0.9091)) +(: cnet_isa_ede5ba79e2 (IsA layer region) (STV 1.0 0.9091)) +(: cnet_isa_18c8e95abe (IsA layer_cake cake) (STV 1.0 0.9091)) +(: cnet_isa_9d2d0e646b (IsA layette kit) (STV 1.0 0.9091)) +(: cnet_isa_942eb950cb (IsA layia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_778126b551 (IsA laying parturition) (STV 1.0 0.9091)) +(: cnet_isa_7df15594a1 (IsA laying_on contact) (STV 1.0 0.9091)) +(: cnet_isa_80e5106d3c (IsA laying_on_of_hand faith_healing) (STV 1.0 0.9091)) +(: cnet_isa_c86d395969 (IsA laying_on_of_hand ordination) (STV 1.0 0.9091)) +(: cnet_isa_f4e28dbd23 (IsA laying_waste destruction) (STV 1.0 0.9091)) +(: cnet_isa_4df744a272 (IsA layman commoner) (STV 1.0 0.9091)) +(: cnet_isa_f09ab1a8b2 (IsA layoff closure) (STV 1.0 0.9091)) +(: cnet_isa_07672012e2 (IsA layout order) (STV 1.0 0.9091)) +(: cnet_isa_89532abaf3 (IsA layout design) (STV 1.0 0.9091)) +(: cnet_isa_38709d241d (IsA lazaretto hospital) (STV 1.0 0.9091)) +(: cnet_isa_b0385e9349 (IsA laziness rest) (STV 1.0 0.9091)) +(: cnet_isa_cf444de96d (IsA lazy_daisy_stitch chain_stitch) (STV 1.0 0.9091)) +(: cnet_isa_ea3321a10a (IsA lazybone idler) (STV 1.0 0.9091)) +(: cnet_isa_0ea6eada4d (IsA ldl_cholesterol cholesterol) (STV 1.0 0.9091)) +(: cnet_isa_53e74717c5 (IsA le_chatelier_s_principle principle) (STV 1.0 0.9091)) +(: cnet_isa_6f919b6be0 (IsA lea linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_dbde9fe3f0 (IsA leach natural_process) (STV 1.0 0.9091)) +(: cnet_isa_66a916561c (IsA lead bluish_white_lustrous_metal) (STV 1.0 0.9524)) +(: cnet_isa_a6603c3314 (IsA lead heavy_metal) (STV 1.0 0.9091)) +(: cnet_isa_3e2bc5a182 (IsA lead very_dense_material) (STV 1.0 0.9091)) +(: cnet_isa_74fe80b158 (IsA lead leadership) (STV 1.0 0.9091)) +(: cnet_isa_0ab5d6c3a4 (IsA lead turn) (STV 1.0 0.9091)) +(: cnet_isa_9dad4804c7 (IsA lead graphite) (STV 1.0 0.9091)) +(: cnet_isa_f058f49b0f (IsA lead strip) (STV 1.0 0.9091)) +(: cnet_isa_55a705f48f (IsA lead advantage) (STV 1.0 0.9091)) +(: cnet_isa_d49f6247bb (IsA lead position) (STV 1.0 0.9091)) +(: cnet_isa_f76bc99c94 (IsA lead evidence) (STV 1.0 0.9091)) +(: cnet_isa_7bba023ffd (IsA lead new_article) (STV 1.0 0.9091)) +(: cnet_isa_0f9d753faf (IsA lead section) (STV 1.0 0.9091)) +(: cnet_isa_86ff01288e (IsA lead angle) (STV 1.0 0.9091)) +(: cnet_isa_787125f6ae (IsA lead score) (STV 1.0 0.9091)) +(: cnet_isa_12a6a592fb (IsA lead metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_5cc2c61bb8 (IsA lead_acetate acetate) (STV 1.0 0.9091)) +(: cnet_isa_f2b6d99573 (IsA lead_acetate dye) (STV 1.0 0.9091)) +(: cnet_isa_78a644f7d2 (IsA lead_acid_battery storage_battery) (STV 1.0 0.9091)) +(: cnet_isa_0e714049ce (IsA lead_arsenate insecticide) (STV 1.0 0.9091)) +(: cnet_isa_84fd412a39 (IsA lead_bank depository_financial_institution) (STV 1.0 0.9091)) +(: cnet_isa_c5a09afa91 (IsA lead_chromate chromate) (STV 1.0 0.9091)) +(: cnet_isa_1e4f85e456 (IsA lead_colic colic) (STV 1.0 0.9091)) +(: cnet_isa_338a318fe1 (IsA lead_glass glass) (STV 1.0 0.9091)) +(: cnet_isa_b2115b4275 (IsA lead_in wire) (STV 1.0 0.9091)) +(: cnet_isa_4d4eb81559 (IsA lead_line plumb_line) (STV 1.0 0.9091)) +(: cnet_isa_78a7a3aab6 (IsA lead_ore ore) (STV 1.0 0.9091)) +(: cnet_isa_054ff43763 (IsA lead_pencil pencil) (STV 1.0 0.9091)) +(: cnet_isa_4c80e43d8c (IsA lead_poisoning illness) (STV 1.0 0.9091)) +(: cnet_isa_379b55dd69 (IsA lead_sheet sheet_music) (STV 1.0 0.9091)) +(: cnet_isa_1e3059a428 (IsA lead_time time_interval) (STV 1.0 0.9091)) +(: cnet_isa_e96bfb356f (IsA lead_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_c820e3e3b2 (IsA leaded_bronze bronze) (STV 1.0 0.9091)) +(: cnet_isa_e1824a29d9 (IsA leaded_gasoline gasoline) (STV 1.0 0.9091)) +(: cnet_isa_a00eda0380 (IsA leader person) (STV 1.0 0.9091)) +(: cnet_isa_670b753f2f (IsA leadership activity) (STV 1.0 0.9091)) +(: cnet_isa_f65a85ded1 (IsA leadership ability) (STV 1.0 0.9091)) +(: cnet_isa_b4fa3acd3a (IsA leadership body) (STV 1.0 0.9091)) +(: cnet_isa_33457640f7 (IsA leadership status) (STV 1.0 0.9091)) +(: cnet_isa_1e00bc9347 (IsA leading_astray enticement) (STV 1.0 0.9091)) +(: cnet_isa_d51a1ec212 (IsA leading_edge edge) (STV 1.0 0.9091)) +(: cnet_isa_38d61401a8 (IsA leading_indicator index) (STV 1.0 0.9091)) +(: cnet_isa_85cf333173 (IsA leading_lady actress) (STV 1.0 0.9091)) +(: cnet_isa_83a502630a (IsA leading_man actor) (STV 1.0 0.9091)) +(: cnet_isa_f32355243b (IsA leading_question question) (STV 1.0 0.9091)) +(: cnet_isa_b4e82d7458 (IsA leading_rein rein) (STV 1.0 0.9091)) +(: cnet_isa_1c3c0c3a3c (IsA leadplant amorpha) (STV 1.0 0.9091)) +(: cnet_isa_5c7ff7a5d9 (IsA leadwort shrub) (STV 1.0 0.9091)) +(: cnet_isa_eda961ca78 (IsA leaf section) (STV 1.0 0.9091)) +(: cnet_isa_b2e87adbad (IsA leaf sheet) (STV 1.0 0.9091)) +(: cnet_isa_32530fffa1 (IsA leaf plant_organ) (STV 1.0 0.9091)) +(: cnet_isa_5e810090d0 (IsA leaf_beetle beetle) (STV 1.0 0.9091)) +(: cnet_isa_8c6f99676d (IsA leaf_blight blight) (STV 1.0 0.9091)) +(: cnet_isa_872fc83d0f (IsA leaf_bud bud) (STV 1.0 0.9091)) +(: cnet_isa_6bbc9504f5 (IsA leaf_bug hemipterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_60f77f6c9a (IsA leaf_cutting_bee bee) (STV 1.0 0.9091)) +(: cnet_isa_e33ff71634 (IsA leaf_disease plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_d3b331bb29 (IsA leaf_fat fat) (STV 1.0 0.9091)) +(: cnet_isa_a301721602 (IsA leaf_footed_bug coreid_bug) (STV 1.0 0.9091)) +(: cnet_isa_36acf96710 (IsA leaf_lettuce lettuce) (STV 1.0 0.9091)) +(: cnet_isa_366a8aaf71 (IsA leaf_miner insect) (STV 1.0 0.9091)) +(: cnet_isa_5fd80a8118 (IsA leaf_mold mold) (STV 1.0 0.9091)) +(: cnet_isa_1fdf1bd42f (IsA leaf_node plant_process) (STV 1.0 0.9091)) +(: cnet_isa_01359ccaf9 (IsA leaf_nosed_snake colubrid_snake) (STV 1.0 0.9091)) +(: cnet_isa_2f4cdfd7e2 (IsA leaf_roller tortricid) (STV 1.0 0.9091)) +(: cnet_isa_63e18a1eb1 (IsA leaf_scorch scorch) (STV 1.0 0.9091)) +(: cnet_isa_e81a7112f3 (IsA leaf_shape natural_shape) (STV 1.0 0.9091)) +(: cnet_isa_fcdc4bdda3 (IsA leaf_spring spring) (STV 1.0 0.9091)) +(: cnet_isa_208d8557dc (IsA leafhopper homopterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_b5c1011b63 (IsA leaflet leaf) (STV 1.0 0.9091)) +(: cnet_isa_a08eff9244 (IsA leafnose_bat carnivorous_bat) (STV 1.0 0.9091)) +(: cnet_isa_0abd1ec3e6 (IsA leafy_liverwort liverwort) (STV 1.0 0.9091)) +(: cnet_isa_0aa0524d59 (IsA leafy_spurge spurge) (STV 1.0 0.9091)) +(: cnet_isa_8455bf223c (IsA league association) (STV 1.0 0.9091)) +(: cnet_isa_636a1f84df (IsA league union) (STV 1.0 0.9091)) +(: cnet_isa_c76a6d3d39 (IsA league linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_eae27e1171 (IsA league_of_nation world_organization) (STV 1.0 0.9091)) +(: cnet_isa_8fc9cf84a1 (IsA leak disclosure) (STV 1.0 0.9091)) +(: cnet_isa_d378560e88 (IsA leak hole) (STV 1.0 0.9091)) +(: cnet_isa_1b47ba388f (IsA leak micturition) (STV 1.0 0.9091)) +(: cnet_isa_cf74453295 (IsA leak soft_rot) (STV 1.0 0.9091)) +(: cnet_isa_f35e9cef14 (IsA leak_fungus rhizoid) (STV 1.0 0.9091)) +(: cnet_isa_37ee054eb4 (IsA leaker informant) (STV 1.0 0.9091)) +(: cnet_isa_4ad8201064 (IsA leakiness condition) (STV 1.0 0.9091)) +(: cnet_isa_92aab26541 (IsA lean_to shelter) (STV 1.0 0.9091)) +(: cnet_isa_eba3e40cd5 (IsA lean_to_tent tent) (STV 1.0 0.9091)) +(: cnet_isa_58647cf8e6 (IsA leaner throw) (STV 1.0 0.9091)) +(: cnet_isa_2aa2a6f7cc (IsA leaning act) (STV 1.0 0.9091)) +(: cnet_isa_3070f9b343 (IsA leaning inclination) (STV 1.0 0.9091)) +(: cnet_isa_1c4d7a978b (IsA leanness bodily_property) (STV 1.0 0.9091)) +(: cnet_isa_1428d12889 (IsA leap jump) (STV 1.0 0.9091)) +(: cnet_isa_2c88dfa6bf (IsA leap distance) (STV 1.0 0.9091)) +(: cnet_isa_f9a25b4577 (IsA leap transition) (STV 1.0 0.9091)) +(: cnet_isa_9f37976ceb (IsA leap_day day) (STV 1.0 0.9091)) +(: cnet_isa_08bbb9897d (IsA leap_second quirk_of_modern_timekeeping) (STV 1.0 0.9091)) +(: cnet_isa_ac4c9c7ecb (IsA leap_second second) (STV 1.0 0.9091)) +(: cnet_isa_7cec10e9c7 (IsA leap_year year) (STV 1.0 0.9091)) +(: cnet_isa_eb5d26ca00 (IsA leaper bounder) (STV 1.0 0.9091)) +(: cnet_isa_e1dadcc463 (IsA leapfrog child_s_game) (STV 1.0 0.9091)) +(: cnet_isa_b40a33f3f1 (IsA leapfrog progress) (STV 1.0 0.9091)) +(: cnet_isa_752056ac39 (IsA learned_profession profession) (STV 1.0 0.9091)) +(: cnet_isa_3f77b68268 (IsA learned_reaction reaction) (STV 1.0 0.9091)) +(: cnet_isa_7d11d75682 (IsA learner_s_dictionary dictionary) (STV 1.0 0.9091)) +(: cnet_isa_a8a1bf912c (IsA learner_s_permit license) (STV 1.0 0.9091)) +(: cnet_isa_afafdb92c5 (IsA learner person) (STV 1.0 0.9091)) +(: cnet_isa_4e3bd3bb8d (IsA learning activity) (STV 1.0 0.9339)) +(: cnet_isa_31cf5f2d95 (IsA learning basic_cognitive_process) (STV 1.0 0.9091)) +(: cnet_isa_30d92e8336 (IsA learning_curve graph) (STV 1.0 0.9091)) +(: cnet_isa_803e4957a1 (IsA learning_disorder disorder) (STV 1.0 0.9091)) +(: cnet_isa_15d3baa121 (IsA lease contract) (STV 1.0 0.9091)) +(: cnet_isa_6814dab406 (IsA lease property) (STV 1.0 0.9091)) +(: cnet_isa_c71c3e7be7 (IsA lease time_period) (STV 1.0 0.9091)) +(: cnet_isa_e7c8abf8ec (IsA leasehold estate) (STV 1.0 0.9091)) +(: cnet_isa_fe4505b09f (IsA leaseholder holder) (STV 1.0 0.9091)) +(: cnet_isa_5c5b0d2182 (IsA leaseholder tenant) (STV 1.0 0.9091)) +(: cnet_isa_755ccb9570 (IsA leash restraint) (STV 1.0 0.9091)) +(: cnet_isa_b9d56d18a5 (IsA least matter) (STV 1.0 0.9091)) +(: cnet_isa_9d24f7ce02 (IsA least_bittern bittern) (STV 1.0 0.9091)) +(: cnet_isa_95dc7e0dd9 (IsA least_effort effort) (STV 1.0 0.9091)) +(: cnet_isa_b3886c6cb5 (IsA least_sandpiper sandpiper) (STV 1.0 0.9091)) +(: cnet_isa_bd369ce901 (IsA least_shrew shrew) (STV 1.0 0.9091)) +(: cnet_isa_a29dc4a6d0 (IsA least_square statistical_method) (STV 1.0 0.9091)) +(: cnet_isa_6b3c98bda2 (IsA leather animal_skin) (STV 1.0 0.9572)) +(: cnet_isa_fe4e983de1 (IsA leather durable_material) (STV 1.0 0.9091)) +(: cnet_isa_b2dd4d2220 (IsA leather material) (STV 1.0 0.9608)) +(: cnet_isa_4b71227d49 (IsA leather tanned_animal_skin) (STV 1.0 0.9454)) +(: cnet_isa_747a012b77 (IsA leather_carp domestic_carp) (STV 1.0 0.9091)) +(: cnet_isa_8d2cef57eb (IsA leather_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_d6ff409bce (IsA leather_flower clematis) (STV 1.0 0.9091)) +(: cnet_isa_7344cc00a6 (IsA leather_strip implement) (STV 1.0 0.9091)) +(: cnet_isa_64331e562a (IsA leatherback_turtle sea_turtle) (STV 1.0 0.9091)) +(: cnet_isa_faf4073efa (IsA leatherette fabric) (STV 1.0 0.9091)) +(: cnet_isa_fb608e8e73 (IsA leatherjacket filefish) (STV 1.0 0.9091)) +(: cnet_isa_8a89342359 (IsA leatherjacket grub) (STV 1.0 0.9091)) +(: cnet_isa_f562771f78 (IsA leatherjacket jack) (STV 1.0 0.9091)) +(: cnet_isa_71815376d1 (IsA leatherleaf polypody) (STV 1.0 0.9091)) +(: cnet_isa_ea5e4c9091 (IsA leatherleaf shrub) (STV 1.0 0.9091)) +(: cnet_isa_6c2957f2f3 (IsA leatherleaf_saxifrage wildflower) (STV 1.0 0.9091)) +(: cnet_isa_ca0218521d (IsA leatherwood shrub) (STV 1.0 0.9091)) +(: cnet_isa_ea1d7d4793 (IsA leatherwork work) (STV 1.0 0.9091)) +(: cnet_isa_259224cb63 (IsA leathery_grape_fern grape_fern) (STV 1.0 0.9091)) +(: cnet_isa_5c0109543c (IsA leave permission) (STV 1.0 0.9091)) +(: cnet_isa_626140a7c6 (IsA leave time_off) (STV 1.0 0.9091)) +(: cnet_isa_d3d036be8d (IsA leaven imponderable) (STV 1.0 0.9091)) +(: cnet_isa_fd8d35bee6 (IsA leaven substance) (STV 1.0 0.9091)) +(: cnet_isa_d892e4f0e2 (IsA lebanese asiatic) (STV 1.0 0.9091)) +(: cnet_isa_f6a0367177 (IsA lebanese_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_78e8357d8d (IsA lebanese_pound lebanese_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_2ba4d777d5 (IsA lebiste fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_7da805aa8b (IsA leboyer_method_of_childbirth natural_childbirth) (STV 1.0 0.9091)) +(: cnet_isa_6d0cb8d25b (IsA lecanopteris fern) (STV 1.0 0.9091)) +(: cnet_isa_986efa984c (IsA lecanora lichen) (STV 1.0 0.9091)) +(: cnet_isa_e457d9c946 (IsA lecanoraceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_fd9d7dec7b (IsA leccinum fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_d466195e83 (IsA leccinum_fibrillosum bolete) (STV 1.0 0.9091)) +(: cnet_isa_25fe0cf8d8 (IsA lechanorale fungus_order) (STV 1.0 0.9091)) +(: cnet_isa_e67a8d8976 (IsA lecherousness sexual_desire) (STV 1.0 0.9091)) +(: cnet_isa_2ff3003123 (IsA lechery sexual_activity) (STV 1.0 0.9091)) +(: cnet_isa_c71d468036 (IsA lechwe waterbuck) (STV 1.0 0.9091)) +(: cnet_isa_974084b92b (IsA lecithin emulsifier) (STV 1.0 0.9091)) +(: cnet_isa_4b7904f820 (IsA lecithin phospholipid) (STV 1.0 0.9091)) +(: cnet_isa_e46c7320be (IsA leclanche_cell voltaic_cell) (STV 1.0 0.9091)) +(: cnet_isa_220265c077 (IsA lectern stand) (STV 1.0 0.9091)) +(: cnet_isa_38927c37da (IsA lectin glycoprotein) (STV 1.0 0.9091)) +(: cnet_isa_3ef3220c21 (IsA lector clergyman) (STV 1.0 0.9091)) +(: cnet_isa_6bc1876285 (IsA lector educator) (STV 1.0 0.9091)) +(: cnet_isa_485eed9028 (IsA lector holy_order) (STV 1.0 0.9091)) +(: cnet_isa_8441f1d9a2 (IsA lecture teaching) (STV 1.0 0.9091)) +(: cnet_isa_786f68b7a4 (IsA lecture address) (STV 1.0 0.9091)) +(: cnet_isa_f985fe65fe (IsA lecture rebuke) (STV 1.0 0.9091)) +(: cnet_isa_968e0480bf (IsA lecture_demonstration presentation) (STV 1.0 0.9091)) +(: cnet_isa_b78e8254c9 (IsA lecture_room classroom) (STV 1.0 0.9091)) +(: cnet_isa_68bc5fca33 (IsA lecturer speaker) (STV 1.0 0.9091)) +(: cnet_isa_93794fe009 (IsA lectureship position) (STV 1.0 0.9091)) +(: cnet_isa_84179528fb (IsA lecythidaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_7914b5f51b (IsA lederhosen short_pant) (STV 1.0 0.9091)) +(: cnet_isa_71f7db5f49 (IsA ledge ridge) (STV 1.0 0.9091)) +(: cnet_isa_d9660a660b (IsA ledger book) (STV 1.0 0.9524)) +(: cnet_isa_8499315ee3 (IsA ledger record) (STV 1.0 0.9091)) +(: cnet_isa_f06c3a7163 (IsA ledger_board rail) (STV 1.0 0.9091)) +(: cnet_isa_3baa3eb698 (IsA ledger_line line) (STV 1.0 0.9091)) +(: cnet_isa_2d0846b8ec (IsA ledger_paper writing_paper) (STV 1.0 0.9091)) +(: cnet_isa_8e2d6d8245 (IsA ledum dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9bdad65cd8 (IsA lee side) (STV 1.0 0.9091)) +(: cnet_isa_c21facf997 (IsA leech annelid) (STV 1.0 0.9091)) +(: cnet_isa_9a742e6f34 (IsA leech follower) (STV 1.0 0.9091)) +(: cnet_isa_a8fd46aa4f (IsA leek vegetable) (STV 1.0 0.9091)) +(: cnet_isa_1c0ac084c8 (IsA leek alliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_c835a103bd (IsA leer expression) (STV 1.0 0.9091)) +(: cnet_isa_94c649455e (IsA lee sediment) (STV 1.0 0.9091)) +(: cnet_isa_199ac205d0 (IsA leeward direction) (STV 1.0 0.9091)) +(: cnet_isa_5e787a95d0 (IsA leeward leeward) (STV 1.0 0.9091)) +(: cnet_isa_33fb91c533 (IsA leeward_tide tide) (STV 1.0 0.9091)) +(: cnet_isa_f5bea8f9b4 (IsA leeway drift) (STV 1.0 0.9091)) +(: cnet_isa_023e4fb33e (IsA left turn) (STV 1.0 0.9091)) +(: cnet_isa_d28b763930 (IsA left hand) (STV 1.0 0.9091)) +(: cnet_isa_25529122fd (IsA left faction) (STV 1.0 0.9091)) +(: cnet_isa_a983e6e790 (IsA left position) (STV 1.0 0.9091)) +(: cnet_isa_2a8a6ec558 (IsA left_atrium atrium_cordis) (STV 1.0 0.9091)) +(: cnet_isa_671946c2a4 (IsA left_coronary_artery coronary_artery) (STV 1.0 0.9091)) +(: cnet_isa_d6143ddc72 (IsA left_ear ear) (STV 1.0 0.9339)) +(: cnet_isa_e6c40ae865 (IsA left_field position) (STV 1.0 0.9091)) +(: cnet_isa_a7d6e2f85a (IsA left_field tract) (STV 1.0 0.9091)) +(: cnet_isa_b8f4b4a47f (IsA left_fielder outfielder) (STV 1.0 0.9091)) +(: cnet_isa_a9d57bbfc9 (IsA left_gastric_artery gastric_artery) (STV 1.0 0.9091)) +(: cnet_isa_b8d751dcfa (IsA left_gastric_vein gastric_vein) (STV 1.0 0.9091)) +(: cnet_isa_cbdccf4d0a (IsA left_handed_pitcher pitcher) (STV 1.0 0.9091)) +(: cnet_isa_7b40249c33 (IsA left_handedness handedness) (STV 1.0 0.9091)) +(: cnet_isa_36e9afdf2d (IsA left_handedness status) (STV 1.0 0.9091)) +(: cnet_isa_bb9ff28d4a (IsA left_hander person) (STV 1.0 0.9091)) +(: cnet_isa_d23cdf0dae (IsA left_hemisphere hemisphere) (STV 1.0 0.9091)) +(: cnet_isa_d1ff610771 (IsA left_leg leg) (STV 1.0 0.9091)) +(: cnet_isa_1b4de1d045 (IsA left_ventricle ventricle) (STV 1.0 0.9091)) +(: cnet_isa_e414f7d23b (IsA lefteye_flounder flatfish) (STV 1.0 0.9091)) +(: cnet_isa_50d6b40653 (IsA leftism political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_79bf85b87b (IsA leftover remainder) (STV 1.0 0.9091)) +(: cnet_isa_b7c09661c5 (IsA leftover food) (STV 1.0 0.9091)) +(: cnet_isa_9014c29939 (IsA leg cloth_covering) (STV 1.0 0.9091)) +(: cnet_isa_a99e4f691e (IsA leg support) (STV 1.0 0.9091)) +(: cnet_isa_7ea80638f3 (IsA leg limb) (STV 1.0 0.9091)) +(: cnet_isa_574cfac318 (IsA leg cut) (STV 1.0 0.9091)) +(: cnet_isa_7a55484e39 (IsA leg distance) (STV 1.0 0.9091)) +(: cnet_isa_0381461a97 (IsA leg_bone long_bone) (STV 1.0 0.9091)) +(: cnet_isa_f278ea5c83 (IsA leg_curl leg_exercise) (STV 1.0 0.9091)) +(: cnet_isa_1189818b0b (IsA leg_exercise exercise) (STV 1.0 0.9091)) +(: cnet_isa_0a8ed3dc56 (IsA leg_extensor leg_exercise) (STV 1.0 0.9091)) +(: cnet_isa_cc37f4a7b5 (IsA leg_of_lamb lamb_roast) (STV 1.0 0.9091)) +(: cnet_isa_959d5a5442 (IsA leg_of_lamb leg) (STV 1.0 0.9091)) +(: cnet_isa_b4429cd28b (IsA leg_pull jest) (STV 1.0 0.9091)) +(: cnet_isa_0ff0c37b82 (IsA legal_action proceeding) (STV 1.0 0.9091)) +(: cnet_isa_da3cf679c0 (IsA legal_blindness blindness) (STV 1.0 0.9091)) +(: cnet_isa_9822b38fec (IsA legal_code code) (STV 1.0 0.9091)) +(: cnet_isa_1795a7f134 (IsA legal_document document) (STV 1.0 0.9091)) +(: cnet_isa_320eb86990 (IsA legal_duty duty) (STV 1.0 0.9091)) +(: cnet_isa_f941161dea (IsA legal_fee fee) (STV 1.0 0.9091)) +(: cnet_isa_28309786e2 (IsA legal_holiday holiday) (STV 1.0 0.9091)) +(: cnet_isa_aa669cd87d (IsA legal_power power) (STV 1.0 0.9091)) +(: cnet_isa_fc6721a7a3 (IsA legal_principle principle) (STV 1.0 0.9091)) +(: cnet_isa_ba49742d75 (IsA legal_profession profession) (STV 1.0 0.9091)) +(: cnet_isa_de013bf7ba (IsA legal_relation professional_relation) (STV 1.0 0.9091)) +(: cnet_isa_227261c233 (IsA legal_representation representation) (STV 1.0 0.9091)) +(: cnet_isa_c93f47a713 (IsA legal_representative personal_representative) (STV 1.0 0.9091)) +(: cnet_isa_deec7b7dc6 (IsA legal_right right) (STV 1.0 0.9091)) +(: cnet_isa_8c3ed49bf5 (IsA legal_separation cessation) (STV 1.0 0.9091)) +(: cnet_isa_a092d067d5 (IsA legal_separation decree) (STV 1.0 0.9091)) +(: cnet_isa_e9699d4e20 (IsA legal_status status) (STV 1.0 0.9091)) +(: cnet_isa_85b3e17280 (IsA legal_system system) (STV 1.0 0.9091)) +(: cnet_isa_aa9bb1e6d7 (IsA legalese expressive_style) (STV 1.0 0.9091)) +(: cnet_isa_fa42c053d9 (IsA legalism conformity) (STV 1.0 0.9091)) +(: cnet_isa_4d45d0c49f (IsA legality lawfulness) (STV 1.0 0.9091)) +(: cnet_isa_2b3677bcb9 (IsA legalization group_action) (STV 1.0 0.9091)) +(: cnet_isa_2d8edf54a0 (IsA legate emissary) (STV 1.0 0.9091)) +(: cnet_isa_b5b0206115 (IsA legatee beneficiary) (STV 1.0 0.9091)) +(: cnet_isa_dd67bd2b1e (IsA legation position) (STV 1.0 0.9091)) +(: cnet_isa_44386048f6 (IsA legation diplomatic_mission) (STV 1.0 0.9091)) +(: cnet_isa_c7164c5513 (IsA legend story) (STV 1.0 0.9091)) +(: cnet_isa_aea9546f6d (IsA legendary_creature mythical_monster) (STV 1.0 0.9091)) +(: cnet_isa_68af0b4239 (IsA legging garment) (STV 1.0 0.9091)) +(: cnet_isa_34c13dc9d2 (IsA legibility comprehensibility) (STV 1.0 0.9091)) +(: cnet_isa_85b1755291 (IsA legion association) (STV 1.0 0.9091)) +(: cnet_isa_e782a08653 (IsA legion military_unit) (STV 1.0 0.9091)) +(: cnet_isa_1695a3a8a2 (IsA legionella_pneumophilia bacteria) (STV 1.0 0.9091)) +(: cnet_isa_09f93ef95a (IsA legionnaire soldier) (STV 1.0 0.9091)) +(: cnet_isa_d69b8739be (IsA legionnaire veteran) (STV 1.0 0.9091)) +(: cnet_isa_d0dd24a567 (IsA legionnaire_disease lobar_pneumonia) (STV 1.0 0.9091)) +(: cnet_isa_57c2391311 (IsA legislation civil_law) (STV 1.0 0.9091)) +(: cnet_isa_cc2a5350ee (IsA legislation government) (STV 1.0 0.9091)) +(: cnet_isa_73b663e767 (IsA legislative_act act) (STV 1.0 0.9091)) +(: cnet_isa_229c151de0 (IsA legislative_branch branch) (STV 1.0 0.9091)) +(: cnet_isa_dbf0f4a5ea (IsA legislative_council legislature) (STV 1.0 0.9091)) +(: cnet_isa_5a7f65f897 (IsA legislator lawgiver) (STV 1.0 0.9091)) +(: cnet_isa_a3854a7eb7 (IsA legislator politician) (STV 1.0 0.9091)) +(: cnet_isa_6d15c2a1a2 (IsA legislatorship position) (STV 1.0 0.9091)) +(: cnet_isa_9bda728c46 (IsA legislature assembly) (STV 1.0 0.9091)) +(: cnet_isa_37a5f17685 (IsA legitimacy lawfulness) (STV 1.0 0.9091)) +(: cnet_isa_6393c53e34 (IsA legitimation act) (STV 1.0 0.9091)) +(: cnet_isa_7921abc002 (IsA legless_lizard lizard) (STV 1.0 0.9091)) +(: cnet_isa_a95e4ce9da (IsA lego good_toy_for_children) (STV 1.0 0.9091)) +(: cnet_isa_bef9725cfc (IsA leg stamina) (STV 1.0 0.9091)) +(: cnet_isa_b4a51014fd (IsA legume vegetable) (STV 1.0 0.9091)) +(: cnet_isa_59310f6149 (IsA legume climber) (STV 1.0 0.9091)) +(: cnet_isa_2f12fc9d69 (IsA legume herb) (STV 1.0 0.9091)) +(: cnet_isa_af9bea7622 (IsA legume pod) (STV 1.0 0.9091)) +(: cnet_isa_b74b2b52ee (IsA leguminosae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_06c57e31ee (IsA leichtlin_s_cama cama) (STV 1.0 0.9091)) +(: cnet_isa_b9e3a0f66d (IsA leiden_jar capacitor) (STV 1.0 0.9091)) +(: cnet_isa_20bb847738 (IsA leiomyoma myoma) (STV 1.0 0.9091)) +(: cnet_isa_11f21d1fcb (IsA leiomyosarcoma sarcoma) (STV 1.0 0.9091)) +(: cnet_isa_0e249e9d47 (IsA leiopelma amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_c319ee1431 (IsA leiopelmatidae amphibian_family) (STV 1.0 0.9091)) +(: cnet_isa_6362f6b374 (IsA leiophyllum dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_02bdb9173c (IsA leishmania flagellate) (STV 1.0 0.9091)) +(: cnet_isa_7936ba5cc3 (IsA leishmaniasis protozoal_infection) (STV 1.0 0.9091)) +(: cnet_isa_192f42302b (IsA leister spear) (STV 1.0 0.9091)) +(: cnet_isa_d627862b89 (IsA leisure rest) (STV 1.0 0.9091)) +(: cnet_isa_fb30b4f20b (IsA leisure time_off) (STV 1.0 0.9091)) +(: cnet_isa_89aead791b (IsA leisure_wear clothing) (STV 1.0 0.9091)) +(: cnet_isa_00a9f2fda7 (IsA leisureliness slowness) (STV 1.0 0.9091)) +(: cnet_isa_c798e6b525 (IsA leitmotiv tune) (STV 1.0 0.9091)) +(: cnet_isa_94e8caf47d (IsA leitneria dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_68cf1bc5d7 (IsA leitneriaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_f085a7f078 (IsA lek albanian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_84a6a16ef9 (IsA lekvar filling) (STV 1.0 0.9091)) +(: cnet_isa_5068d7e91f (IsA lemaireocereus caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0458246ff5 (IsA lemma heading) (STV 1.0 0.9091)) +(: cnet_isa_e81e717761 (IsA lemma proposition) (STV 1.0 0.9091)) +(: cnet_isa_31f6584ae4 (IsA lemma glume) (STV 1.0 0.9091)) +(: cnet_isa_8d9b33f183 (IsA lemming rodent) (STV 1.0 0.9091)) +(: cnet_isa_3d69ee0127 (IsA lemmus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_b8a41debd7 (IsA lemna monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f305850e05 (IsA lemnaceae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_b726518313 (IsA lemniscate curve) (STV 1.0 0.9091)) +(: cnet_isa_2c4354d82a (IsA lemniscus sensory_nerve) (STV 1.0 0.9091)) +(: cnet_isa_4ad5d0755f (IsA lemon artifact) (STV 1.0 0.9091)) +(: cnet_isa_20b9a169b4 (IsA lemon relish) (STV 1.0 0.9091)) +(: cnet_isa_b29ff8b838 (IsA lemon citrus) (STV 1.0 0.9091)) +(: cnet_isa_7d69a3e02d (IsA lemon_balm herb) (STV 1.0 0.9091)) +(: cnet_isa_19ac1bb2fa (IsA lemon_curd conserve) (STV 1.0 0.9091)) +(: cnet_isa_97f89357b4 (IsA lemon_drop hard_candy) (STV 1.0 0.9091)) +(: cnet_isa_62b8e79eb7 (IsA lemon_extract flavorer) (STV 1.0 0.9091)) +(: cnet_isa_30acb3509a (IsA lemon_geranium geranium) (STV 1.0 0.9091)) +(: cnet_isa_3469385c71 (IsA lemon_grass grass) (STV 1.0 0.9091)) +(: cnet_isa_0b146a7dfb (IsA lemon_grove grove) (STV 1.0 0.9091)) +(: cnet_isa_2fced8e40c (IsA lemon_juice juice) (STV 1.0 0.9091)) +(: cnet_isa_c477db716a (IsA lemon_lily day_lily) (STV 1.0 0.9091)) +(: cnet_isa_5cfdf1e6a5 (IsA lemon_meringue_pie pie) (STV 1.0 0.9091)) +(: cnet_isa_b9b3fd9b50 (IsA lemon_mint monarda) (STV 1.0 0.9091)) +(: cnet_isa_bde70c0498 (IsA lemon_oil flavorer) (STV 1.0 0.9091)) +(: cnet_isa_4dfb79468e (IsA lemon_peel candied_citrus_peel) (STV 1.0 0.9091)) +(: cnet_isa_60433020b5 (IsA lemon_peel peel) (STV 1.0 0.9091)) +(: cnet_isa_269872dc12 (IsA lemon_scented_gum eucalyptus) (STV 1.0 0.9091)) +(: cnet_isa_75c2a91b09 (IsA lemon_shark requiem_shark) (STV 1.0 0.9091)) +(: cnet_isa_d7723593d4 (IsA lemon_sole righteye_flounder) (STV 1.0 0.9091)) +(: cnet_isa_7c50d17d1b (IsA lemon_sole sole) (STV 1.0 0.9091)) +(: cnet_isa_a932b93720 (IsA lemon_sole flounder) (STV 1.0 0.9091)) +(: cnet_isa_1ff2af2d43 (IsA lemon_zest lemon_peel) (STV 1.0 0.9091)) +(: cnet_isa_d1dfaad548 (IsA lemonade drink) (STV 1.0 0.9454)) +(: cnet_isa_2e19f759c0 (IsA lemonade fruit_drink) (STV 1.0 0.9091)) +(: cnet_isa_2597d509f0 (IsA lemonade_mix ready_mix) (STV 1.0 0.9091)) +(: cnet_isa_a36c871000 (IsA lemongrass_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_b8652adac1 (IsA lemonwood tree) (STV 1.0 0.9091)) +(: cnet_isa_4867cc8309 (IsA lemonwood wood) (STV 1.0 0.9091)) +(: cnet_isa_4348e7ce38 (IsA lempira honduran_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_519f6c8f60 (IsA lemur primate) (STV 1.0 0.9091)) +(: cnet_isa_e6f3c9537c (IsA lemuridae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_37d59e3846 (IsA lemuroidea animal_order) (STV 1.0 0.9091)) +(: cnet_isa_71476e2dc5 (IsA lemur from_madagascar) (STV 1.0 0.9454)) +(: cnet_isa_fbd2ffeb51 (IsA lend_lease transfer) (STV 1.0 0.9091)) +(: cnet_isa_d6d3ee9f44 (IsA lender investor) (STV 1.0 0.9091)) +(: cnet_isa_78b5ea0cd1 (IsA lending disposal) (STV 1.0 0.9091)) +(: cnet_isa_24f2ac616a (IsA lending_institution financial_institution) (STV 1.0 0.9091)) +(: cnet_isa_d610de6dae (IsA lending_library library) (STV 1.0 0.9091)) +(: cnet_isa_b8614622c8 (IsA length section) (STV 1.0 0.9091)) +(: cnet_isa_9af76653e7 (IsA length dimension) (STV 1.0 0.9091)) +(: cnet_isa_3280dec93b (IsA length extent) (STV 1.0 0.9091)) +(: cnet_isa_5f62627b30 (IsA length fundamental_quantity) (STV 1.0 0.9091)) +(: cnet_isa_c6db2484f6 (IsA length physical_property) (STV 1.0 0.9091)) +(: cnet_isa_129632aa5c (IsA lengthiness duration) (STV 1.0 0.9091)) +(: cnet_isa_03a6136113 (IsA lenience tolerance) (STV 1.0 0.9091)) +(: cnet_isa_b400b24baf (IsA lenience mercifulness) (STV 1.0 0.9091)) +(: cnet_isa_09c1dad530 (IsA leninism communism) (STV 1.0 0.9091)) +(: cnet_isa_54770d591b (IsA lenitive remedy) (STV 1.0 0.9091)) +(: cnet_isa_82f0ff8093 (IsA lennoaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_1a443bc611 (IsA len electronic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_703d17541e (IsA len optical_device) (STV 1.0 0.9091)) +(: cnet_isa_243701d28d (IsA len organ) (STV 1.0 0.9091)) +(: cnet_isa_a3924e6760 (IsA len channel) (STV 1.0 0.9091)) +(: cnet_isa_651c356e04 (IsA len rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_258131c193 (IsA len_cap cap) (STV 1.0 0.9091)) +(: cnet_isa_ef05b80c2e (IsA len_capsule capsule) (STV 1.0 0.9091)) +(: cnet_isa_3b8e244858 (IsA len_cortex animal_tissue) (STV 1.0 0.9091)) +(: cnet_isa_2b8aee5d67 (IsA len_hood attachment) (STV 1.0 0.9091)) +(: cnet_isa_1be222bf51 (IsA len_implant implant) (STV 1.0 0.9091)) +(: cnet_isa_b0710405d9 (IsA len_nucleus structure) (STV 1.0 0.9091)) +(: cnet_isa_0c1f467e61 (IsA lent season) (STV 1.0 0.9091)) +(: cnet_isa_4ecc32d36f (IsA lente_insulin insulin) (STV 1.0 0.9091)) +(: cnet_isa_cc5606223c (IsA lenten_rose hellebore) (STV 1.0 0.9091)) +(: cnet_isa_b2688a037c (IsA lentibulariaceae plant_family) (STV 1.0 0.9091)) +(: cnet_isa_f43a9e1963 (IsA lenticel stoma) (STV 1.0 0.9091)) +(: cnet_isa_ce3328d2c3 (IsA lenticular_nucleus basal_ganglion) (STV 1.0 0.9091)) +(: cnet_isa_5b2b83dbda (IsA lentil legume) (STV 1.0 0.9091)) +(: cnet_isa_76382f8f0e (IsA lentil_soup soup) (STV 1.0 0.9091)) +(: cnet_isa_c405ffcf82 (IsA lentinus fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_4530eef40c (IsA leonardo_di_caprio actor) (STV 1.0 0.9091)) +(: cnet_isa_494e0d830c (IsA leonberg dog) (STV 1.0 0.9091)) +(: cnet_isa_2a79c2d28c (IsA leone sierra_leone_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_a847c6032d (IsA leonotis asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_043331c782 (IsA leontocebus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_2dc31c5d39 (IsA leontodon asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a79a16aaa2 (IsA leontopodium asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3afdace2df (IsA leonurus asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_bc9fd3bb94 (IsA leopard_s_bane herb) (STV 1.0 0.9091)) +(: cnet_isa_f5aef53c71 (IsA leopard operating_system) (STV 1.0 0.9091)) +(: cnet_isa_b3cebf6de0 (IsA leopard big_cat) (STV 1.0 0.9091)) +(: cnet_isa_388aa5c8ed (IsA leopard fur) (STV 1.0 0.9091)) +(: cnet_isa_01cf60db74 (IsA leopard_cat wildcat) (STV 1.0 0.9091)) +(: cnet_isa_f006191b80 (IsA leopard_frog true_frog) (STV 1.0 0.9091)) +(: cnet_isa_b1bf8e4a43 (IsA leopard_lily lily) (STV 1.0 0.9091)) +(: cnet_isa_39775df728 (IsA leopard_lizard iguanid) (STV 1.0 0.9091)) +(: cnet_isa_bf34c58592 (IsA leopard_plant herb) (STV 1.0 0.9091)) +(: cnet_isa_8e71cd2d2b (IsA leopardess leopard) (STV 1.0 0.9091)) +(: cnet_isa_ee9963b812 (IsA leotard garment) (STV 1.0 0.9091)) +(: cnet_isa_3ce9cffcff (IsA leotia_lubrica discomycete) (STV 1.0 0.9091)) +(: cnet_isa_3ec3a3c179 (IsA lepadidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_454d9339ce (IsA lepa arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_0dc0c29326 (IsA lepechinia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1d1b0cb201 (IsA leper outcast) (STV 1.0 0.9091)) +(: cnet_isa_0567c8d969 (IsA leper sick_person) (STV 1.0 0.9091)) +(: cnet_isa_9afc413b07 (IsA lepidium dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_45ef05fd3a (IsA lepidobotryaceae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_2f5af57910 (IsA lepidobotry tree) (STV 1.0 0.9091)) +(: cnet_isa_11fc89df5f (IsA lepidochely reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_c748b0bf7c (IsA lepidocrocite iron_ore) (STV 1.0 0.9091)) +(: cnet_isa_01a9a45a5a (IsA lepidocybium fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_33d2439a87 (IsA lepidodendraceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_92d84da9d0 (IsA lepidodendrale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_0ca548082c (IsA lepidolite mica) (STV 1.0 0.9091)) +(: cnet_isa_72bcd58e44 (IsA lepidomelane biotite) (STV 1.0 0.9091)) +(: cnet_isa_b7e09a46bb (IsA lepidophobia zoophobia) (STV 1.0 0.9091)) +(: cnet_isa_bb27253959 (IsA lepidoptera animal_order) (STV 1.0 0.9091)) +(: cnet_isa_fcdc020e63 (IsA lepidopterist entomologist) (STV 1.0 0.9091)) +(: cnet_isa_5282fdf375 (IsA lepidopterology entomology) (STV 1.0 0.9091)) +(: cnet_isa_641e78bfd9 (IsA lepidopterous_insect insect) (STV 1.0 0.9091)) +(: cnet_isa_357bb83823 (IsA lepidosauria class) (STV 1.0 0.9091)) +(: cnet_isa_a591be82bc (IsA lepidothamnus gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_f232a6ec28 (IsA lepiota agaric) (STV 1.0 0.9091)) +(: cnet_isa_057446c49d (IsA lepiota_clypeolaria lepiota) (STV 1.0 0.9091)) +(: cnet_isa_7f53900187 (IsA lepiota_naucina lepiota) (STV 1.0 0.9091)) +(: cnet_isa_3fa1d5ee9e (IsA lepiota_rhacode lepiota) (STV 1.0 0.9091)) +(: cnet_isa_7248f2e4f3 (IsA lepiota_rubrotincta lepiota) (STV 1.0 0.9091)) +(: cnet_isa_317fbe4395 (IsA lepiotaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_86fc058bc1 (IsA lepisma arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_3b465129ab (IsA lepismatidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_2da360a94f (IsA lepisosteidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_b7431e48a5 (IsA lepisosteus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_4fa01de2ff (IsA lepomis fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_ff9f07ce7e (IsA leporid lagomorph) (STV 1.0 0.9091)) +(: cnet_isa_3fb82b4915 (IsA leporidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_79f9e6c737 (IsA leprechaun elf) (STV 1.0 0.9091)) +(: cnet_isa_e127f7db49 (IsA lepromatous_leprosy leprosy) (STV 1.0 0.9091)) +(: cnet_isa_1e0c50f13e (IsA leprosy infectious_disease) (STV 1.0 0.9091)) +(: cnet_isa_b0dc97d582 (IsA leprosy_bacillus mycobacteria) (STV 1.0 0.9091)) +(: cnet_isa_9390579c5c (IsA leptarrhena rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a9ceba522e (IsA leptinotarsa arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_7d4ba88414 (IsA leptocephalus larva) (STV 1.0 0.9091)) +(: cnet_isa_0bed6a6909 (IsA leptodactylid_frog frog) (STV 1.0 0.9091)) +(: cnet_isa_2e50d8260a (IsA leptodactylidae amphibian_family) (STV 1.0 0.9091)) +(: cnet_isa_8946683a12 (IsA leptodactylus amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_fbbcbba7e9 (IsA leptoglossus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_c3b15d30f9 (IsA leptomeninge meninx) (STV 1.0 0.9091)) +(: cnet_isa_8706677f6f (IsA leptomeningitis meningitis) (STV 1.0 0.9091)) +(: cnet_isa_ad790e2718 (IsA lepton elementary_particle) (STV 1.0 0.9091)) +(: cnet_isa_fcfa076ee5 (IsA lepton fermion) (STV 1.0 0.9091)) +(: cnet_isa_d3ee26e5fb (IsA lepton greek_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_b68b7b22f7 (IsA leptopteris fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_137f8ce010 (IsA leptoptilus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_5e20e4fe9f (IsA leptospira spirochete) (STV 1.0 0.9091)) +(: cnet_isa_2880a7853b (IsA leptosporangium sporangium) (STV 1.0 0.9091)) +(: cnet_isa_9ae5f6eeee (IsA leptotene phase) (STV 1.0 0.9091)) +(: cnet_isa_28a1a08004 (IsA leptotyphlopidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_5775584e9a (IsA leptotyphlop reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_f0da8850bc (IsA lepus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_eae662a31d (IsA ler celtic_deity) (STV 1.0 0.9091)) +(: cnet_isa_71562d7ef4 (IsA leresis garrulity) (STV 1.0 0.9091)) +(: cnet_isa_ed4ac0b91f (IsA lerot dormouse) (STV 1.0 0.9091)) +(: cnet_isa_0baa2986de (IsA lesbian hellene) (STV 1.0 0.9091)) +(: cnet_isa_fa8f3054c8 (IsA lesbian homosexual) (STV 1.0 0.9091)) +(: cnet_isa_24fe2ac00b (IsA lesbianism homosexuality) (STV 1.0 0.9339)) +(: cnet_isa_ae9cb3217e (IsA lesbianism sexual_orientation) (STV 1.0 0.9091)) +(: cnet_isa_754062f85e (IsA lesion pathology) (STV 1.0 0.9091)) +(: cnet_isa_1782e830f4 (IsA lesotho_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_c091ad758b (IsA lesquerella dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c9c8da76a1 (IsA lesser_ape anthropoid_ape) (STV 1.0 0.9091)) +(: cnet_isa_176d39bbd3 (IsA lesser_bullrush cattail) (STV 1.0 0.9091)) +(: cnet_isa_e6cc866718 (IsA lesser_butterfly_orchid orchid) (STV 1.0 0.9091)) +(: cnet_isa_855c984024 (IsA lesser_calamint calamint) (STV 1.0 0.9091)) +(: cnet_isa_209c53e183 (IsA lesser_celandine flower) (STV 1.0 0.9091)) +(: cnet_isa_9643da5569 (IsA lesser_centaury centaury) (STV 1.0 0.9091)) +(: cnet_isa_7ada0fb1db (IsA lesser_galangal ginger) (STV 1.0 0.9091)) +(: cnet_isa_2bcb65caf6 (IsA lesser_knapweed knapweed) (STV 1.0 0.9091)) +(: cnet_isa_b2e46f086a (IsA lesser_kudu kudu) (STV 1.0 0.9091)) +(: cnet_isa_ae3ff8f860 (IsA lesser_omentum omentum) (STV 1.0 0.9091)) +(: cnet_isa_b112c0778b (IsA lesser_panda procyonid) (STV 1.0 0.9091)) +(: cnet_isa_68a873121c (IsA lesser_prairie_chicken prairie_chicken) (STV 1.0 0.9091)) +(: cnet_isa_cf2aab872c (IsA lesser_rorqual rorqual) (STV 1.0 0.9091)) +(: cnet_isa_b360cb912e (IsA lesser_scaup scaup) (STV 1.0 0.9091)) +(: cnet_isa_16c800078f (IsA lesser_spearwort marsh_plant) (STV 1.0 0.9091)) +(: cnet_isa_518a8da90c (IsA lesser_twayblade orchid) (STV 1.0 0.9091)) +(: cnet_isa_e3acf404ba (IsA lesser_whitethroat warbler) (STV 1.0 0.9091)) +(: cnet_isa_7226dc889d (IsA lesser_wintergreen wintergreen) (STV 1.0 0.9091)) +(: cnet_isa_d7ea0f2b44 (IsA lesser_yellowleg yellowleg) (STV 1.0 0.9091)) +(: cnet_isa_65ee60dc83 (IsA lesson school_assignment) (STV 1.0 0.9091)) +(: cnet_isa_c7e849b178 (IsA lesson teaching) (STV 1.0 0.9091)) +(: cnet_isa_dc140cfb8f (IsA lessor owner) (STV 1.0 0.9091)) +(: cnet_isa_7f80ec2df5 (IsA let serve) (STV 1.0 0.9091)) +(: cnet_isa_1dc4078cf8 (IsA lethal_agent agent) (STV 1.0 0.9091)) +(: cnet_isa_ea938ea96c (IsA lethal_dose dose) (STV 1.0 0.9091)) +(: cnet_isa_34b0f3fa23 (IsA lethal_gene gene) (STV 1.0 0.9091)) +(: cnet_isa_703590901b (IsA lethargy torpor) (STV 1.0 0.9091)) +(: cnet_isa_cff2daf4b0 (IsA letter symbol) (STV 1.0 0.9091)) +(: cnet_isa_154aa69eac (IsA letter award) (STV 1.0 0.9091)) +(: cnet_isa_a77aec682e (IsA letter character) (STV 1.0 0.9091)) +(: cnet_isa_11ce36ae28 (IsA letter document) (STV 1.0 0.9091)) +(: cnet_isa_d7617ed0f3 (IsA letter literal_interpretation) (STV 1.0 0.9091)) +(: cnet_isa_8393b93bdd (IsA letter text) (STV 1.0 0.9091)) +(: cnet_isa_2f2f3d1ce7 (IsA letter owner) (STV 1.0 0.9091)) +(: cnet_isa_694c06ed1f (IsA letter_bomb bomb) (STV 1.0 0.9091)) +(: cnet_isa_292a904335 (IsA letter_bond letter_security) (STV 1.0 0.9091)) +(: cnet_isa_7e77562d35 (IsA letter_case case) (STV 1.0 0.9091)) +(: cnet_isa_7733b23c03 (IsA letter_of_credit credit) (STV 1.0 0.9091)) +(: cnet_isa_7f6c93afcc (IsA letter_of_credit document) (STV 1.0 0.9091)) +(: cnet_isa_73c0d3a39c (IsA letter_of_intent letter) (STV 1.0 0.9091)) +(: cnet_isa_55ebb0b924 (IsA letter_of_marque license) (STV 1.0 0.9091)) +(: cnet_isa_bd84d95f1b (IsA letter_opener knife) (STV 1.0 0.9091)) +(: cnet_isa_5f70894c0f (IsA letter_paper writing_paper) (STV 1.0 0.9091)) +(: cnet_isa_194d650de9 (IsA letter_security security) (STV 1.0 0.9091)) +(: cnet_isa_d79d9796b0 (IsA letter_stock letter_security) (STV 1.0 0.9091)) +(: cnet_isa_9ff8d289fb (IsA letter_telegram telegram) (STV 1.0 0.9091)) +(: cnet_isa_39b5dfd8cd (IsA lettercard postcard) (STV 1.0 0.9091)) +(: cnet_isa_6fe6476f13 (IsA letterer painter) (STV 1.0 0.9091)) +(: cnet_isa_5b92820b69 (IsA letterhead stationery) (STV 1.0 0.9091)) +(: cnet_isa_666bbe09c4 (IsA letterman athlete) (STV 1.0 0.9091)) +(: cnet_isa_e249a05756 (IsA letter culture) (STV 1.0 0.9091)) +(: cnet_isa_b6e8e0dfa3 (IsA letter eruditeness) (STV 1.0 0.9091)) +(: cnet_isa_22720055e9 (IsA letter_of_administration legal_document) (STV 1.0 0.9091)) +(: cnet_isa_986e07807a (IsA letter_testamentary legal_document) (STV 1.0 0.9091)) +(: cnet_isa_ff843e10c2 (IsA letterset_printing offset) (STV 1.0 0.9091)) +(: cnet_isa_987b94de1c (IsA lettuce leafy_vegetable) (STV 1.0 0.9091)) +(: cnet_isa_673e1b077f (IsA lettuce vegetable) (STV 1.0 0.9572)) +(: cnet_isa_38b16d7b03 (IsA lettuce salad_green) (STV 1.0 0.9091)) +(: cnet_isa_8bddf5748b (IsA lettuce herb) (STV 1.0 0.9091)) +(: cnet_isa_7d319fb4e4 (IsA letup pause) (STV 1.0 0.9091)) +(: cnet_isa_2a55c3418d (IsA leu moldovan_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_9aff7a28ef (IsA leu romanian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_8dd0bcdb17 (IsA leucadendron dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_bf35ebbce2 (IsA leucaena rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_229c45521f (IsA leucanthemum asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5a58fac5ab (IsA leucine essential_amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_31573ddb53 (IsA leuciscus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_6cc1303625 (IsA leucocytozoan sporozoan) (STV 1.0 0.9091)) +(: cnet_isa_5c0f74578e (IsA leucogene asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_50478d7131 (IsA leucothoe shrub) (STV 1.0 0.9091)) +(: cnet_isa_e65e3f1884 (IsA leukemia cancer) (STV 1.0 0.9091)) +(: cnet_isa_e22ebe5736 (IsA leukocyte blood_cell) (STV 1.0 0.9091)) +(: cnet_isa_d7bb436cb8 (IsA leukocyte free_phagocyte) (STV 1.0 0.9091)) +(: cnet_isa_b252c3d26f (IsA leukocytosis blood_disease) (STV 1.0 0.9091)) +(: cnet_isa_f3ee7e14ac (IsA leukoderma skin_disease) (STV 1.0 0.9091)) +(: cnet_isa_fc4049616f (IsA leukoencephalitis encephalitis) (STV 1.0 0.9091)) +(: cnet_isa_4e4cd03079 (IsA leukoma eye_disease) (STV 1.0 0.9091)) +(: cnet_isa_ac72ef00fd (IsA leukopenia blood_disease) (STV 1.0 0.9091)) +(: cnet_isa_58d1952d37 (IsA leukorrhea mucus) (STV 1.0 0.9091)) +(: cnet_isa_262c10de87 (IsA lev bulgarian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_928c04fbde (IsA levant morocco) (STV 1.0 0.9091)) +(: cnet_isa_9d29e60438 (IsA levant_cotton cotton) (STV 1.0 0.9091)) +(: cnet_isa_702621a81f (IsA levanter east_wind) (STV 1.0 0.9091)) +(: cnet_isa_bc09b22487 (IsA levantine aborigine) (STV 1.0 0.9091)) +(: cnet_isa_4397b98b3e (IsA levator muscle) (STV 1.0 0.9091)) +(: cnet_isa_6c2efb1639 (IsA levee embankment) (STV 1.0 0.9091)) +(: cnet_isa_8f990f88ea (IsA levee pier) (STV 1.0 0.9091)) +(: cnet_isa_22c96e1fb5 (IsA levee reception) (STV 1.0 0.9091)) +(: cnet_isa_797fdd3178 (IsA level tool) (STV 1.0 0.9091)) +(: cnet_isa_c0c41ca34d (IsA level indicator) (STV 1.0 0.9091)) +(: cnet_isa_5a4d4c8833 (IsA level altitude) (STV 1.0 0.9091)) +(: cnet_isa_337416a511 (IsA level place) (STV 1.0 0.9091)) +(: cnet_isa_e06402a19c (IsA level grade) (STV 1.0 0.9091)) +(: cnet_isa_5150528a0c (IsA level_crossing intersection) (STV 1.0 0.9091)) +(: cnet_isa_7a43bac832 (IsA leveler radical) (STV 1.0 0.9091)) +(: cnet_isa_7d98f15c83 (IsA lever bar) (STV 1.0 0.9091)) +(: cnet_isa_01db4a541a (IsA lever machine) (STV 1.0 0.9091)) +(: cnet_isa_906109cc9d (IsA lever tumbler) (STV 1.0 0.9091)) +(: cnet_isa_47cf694ba5 (IsA lever_hang hang) (STV 1.0 0.9091)) +(: cnet_isa_5a4bdfdb29 (IsA lever_lock lock) (STV 1.0 0.9091)) +(: cnet_isa_5633d04c11 (IsA leverage investing) (STV 1.0 0.9091)) +(: cnet_isa_ae0fcbe810 (IsA leverage advantage) (STV 1.0 0.9091)) +(: cnet_isa_25380890b9 (IsA leverage mechanical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_e1b21c6ed7 (IsA leveraged_buyout buyout) (STV 1.0 0.9091)) +(: cnet_isa_8c205e202a (IsA leveret hare) (STV 1.0 0.9091)) +(: cnet_isa_29b51b9643 (IsA leviathan freak) (STV 1.0 0.9091)) +(: cnet_isa_35189b377a (IsA leviathan mythical_monster) (STV 1.0 0.9091)) +(: cnet_isa_a8e2b08634 (IsA levirate institution) (STV 1.0 0.9091)) +(: cnet_isa_c6cf6cb419 (IsA levisticum rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0cef342c8b (IsA levitation rise) (STV 1.0 0.9091)) +(: cnet_isa_98697e239a (IsA levitation change_of_location) (STV 1.0 0.9091)) +(: cnet_isa_d9d00ecaa1 (IsA levitation phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_f1ae4eb799 (IsA levite israelite) (STV 1.0 0.9091)) +(: cnet_isa_888ef2304f (IsA levity frivolity) (STV 1.0 0.9091)) +(: cnet_isa_222082ac87 (IsA levity feeling) (STV 1.0 0.9091)) +(: cnet_isa_2f98fcb6b8 (IsA levorotation rotation) (STV 1.0 0.9091)) +(: cnet_isa_db54450b59 (IsA levy conscription) (STV 1.0 0.9091)) +(: cnet_isa_a70a114587 (IsA levy charge) (STV 1.0 0.9091)) +(: cnet_isa_692b939b1d (IsA lewisia caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d452fa0105 (IsA lexeme language_unit) (STV 1.0 0.9091)) +(: cnet_isa_1cff260a12 (IsA lexical_database electronic_database) (STV 1.0 0.9091)) +(: cnet_isa_82544965f4 (IsA lexical_disambiguation disambiguation) (STV 1.0 0.9091)) +(: cnet_isa_52638ba4a6 (IsA lexical_entry entry) (STV 1.0 0.9091)) +(: cnet_isa_7b92e70161 (IsA lexical_meaning meaning) (STV 1.0 0.9091)) +(: cnet_isa_b2bee7e0f1 (IsA lexical_semantic semantic) (STV 1.0 0.9091)) +(: cnet_isa_820163093b (IsA lexicalization linguistic_process) (STV 1.0 0.9091)) +(: cnet_isa_4273406282 (IsA lexicalized_concept concept) (STV 1.0 0.9091)) +(: cnet_isa_6cd1e0c76d (IsA lexicographer encyclopedist) (STV 1.0 0.9091)) +(: cnet_isa_5b32afa2e3 (IsA lexicographer linguist) (STV 1.0 0.9091)) +(: cnet_isa_156f737f1f (IsA lexicography writing) (STV 1.0 0.9091)) +(: cnet_isa_bf7ca85d3e (IsA lexicology linguistic) (STV 1.0 0.9091)) +(: cnet_isa_4db138a015 (IsA lexicostatistic etymology) (STV 1.0 0.9091)) +(: cnet_isa_f260919b19 (IsA lexis cognition) (STV 1.0 0.9091)) +(: cnet_isa_d07867fee8 (IsA lexus brand_of_car) (STV 1.0 0.9091)) +(: cnet_isa_49503c8516 (IsA leycesteria asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_59d2e486e5 (IsA leydig_cell cell) (STV 1.0 0.9091)) +(: cnet_isa_82d17c68d2 (IsA leymus monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ebde95c26e (IsA lhasa terrier) (STV 1.0 0.9091)) +(: cnet_isa_9b7ddb7489 (IsA li linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_3adca77d07 (IsA liability possession) (STV 1.0 0.9091)) +(: cnet_isa_9acc9cbe86 (IsA liability bad) (STV 1.0 0.9091)) +(: cnet_isa_cf591ab5ed (IsA liability susceptibility) (STV 1.0 0.9091)) +(: cnet_isa_3daa442b97 (IsA liability_insurance insurance) (STV 1.0 0.9091)) +(: cnet_isa_b5155ea8b5 (IsA liaison channel) (STV 1.0 0.9091)) +(: cnet_isa_3794320668 (IsA liana vine) (STV 1.0 0.9091)) +(: cnet_isa_8b141904b0 (IsA liao dynasty) (STV 1.0 0.9091)) +(: cnet_isa_bcb8513454 (IsA liar person_who_lie) (STV 1.0 0.9091)) +(: cnet_isa_0689fdaa5a (IsA liar deceiver) (STV 1.0 0.9091)) +(: cnet_isa_691ea911f7 (IsA liatris asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ffcb36cb06 (IsA libation religious_ceremony) (STV 1.0 0.9091)) +(: cnet_isa_ce078704f9 (IsA libation drink) (STV 1.0 0.9091)) +(: cnet_isa_8839a49404 (IsA libation helping) (STV 1.0 0.9091)) +(: cnet_isa_cb28fab214 (IsA libel complaint) (STV 1.0 0.9091)) +(: cnet_isa_bb7981d0cc (IsA libel defamation) (STV 1.0 0.9091)) +(: cnet_isa_da88592788 (IsA liberal adult) (STV 1.0 0.9091)) +(: cnet_isa_490ba730fa (IsA liberal_democrat_party party) (STV 1.0 0.9091)) +(: cnet_isa_a7a3b70b26 (IsA liberal_party party) (STV 1.0 0.9091)) +(: cnet_isa_5be5475efa (IsA liberalism political_ideology) (STV 1.0 0.9091)) +(: cnet_isa_8f7d130c8c (IsA liberalism economic_theory) (STV 1.0 0.9091)) +(: cnet_isa_e3c3af4382 (IsA liberalism political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_db268df86c (IsA liberality generosity) (STV 1.0 0.9091)) +(: cnet_isa_6dac08f1ba (IsA liberality tolerance) (STV 1.0 0.9091)) +(: cnet_isa_57923d107b (IsA liberalization easing) (STV 1.0 0.9091)) +(: cnet_isa_486fa11b1a (IsA liberation accomplishment) (STV 1.0 0.9091)) +(: cnet_isa_5f4978c0cd (IsA liberation attempt) (STV 1.0 0.9091)) +(: cnet_isa_4d0f9dc0d3 (IsA liberation_theology theology) (STV 1.0 0.9091)) +(: cnet_isa_b19b26c38a (IsA liberator benefactor) (STV 1.0 0.9091)) +(: cnet_isa_97c51e1bcf (IsA liberian african) (STV 1.0 0.9091)) +(: cnet_isa_67ffcd0a7e (IsA liberian_coffee coffee) (STV 1.0 0.9091)) +(: cnet_isa_1b87a830d3 (IsA liberian_dollar dollar) (STV 1.0 0.9091)) +(: cnet_isa_cf60e8ed12 (IsA libertarian individualist) (STV 1.0 0.9091)) +(: cnet_isa_dae99ca838 (IsA libertarian advocate) (STV 1.0 0.9091)) +(: cnet_isa_4945f7e2d3 (IsA libertarian philosopher) (STV 1.0 0.9091)) +(: cnet_isa_ef4b1d97b2 (IsA libertarianism political_ideology) (STV 1.0 0.9091)) +(: cnet_isa_79f894f9a8 (IsA libertarianism political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_b35ffd5bfa (IsA libertine bad_person) (STV 1.0 0.9091)) +(: cnet_isa_d39e9aeba8 (IsA liberty freedom) (STV 1.0 0.9091)) +(: cnet_isa_59293c9191 (IsA liberty_cap cap) (STV 1.0 0.9091)) +(: cnet_isa_1268f1d0b9 (IsA liberty_party party) (STV 1.0 0.9091)) +(: cnet_isa_e940792d69 (IsA liberty_ship cargo_ship) (STV 1.0 0.9091)) +(: cnet_isa_32d2b84120 (IsA libidinal_energy psychic_energy) (STV 1.0 0.9091)) +(: cnet_isa_8d30634c2b (IsA libido sexual_desire) (STV 1.0 0.9091)) +(: cnet_isa_2ab20bf9ca (IsA libocedrus gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_3d4bfd566f (IsA librarian professional) (STV 1.0 0.9091)) +(: cnet_isa_86c9df7e2f (IsA librarianship position) (STV 1.0 0.9091)) +(: cnet_isa_8de2684aec (IsA library building) (STV 1.0 0.9454)) +(: cnet_isa_6276e46efa (IsA library place) (STV 1.0 0.9091)) +(: cnet_isa_4b0522618c (IsA library place_of_wonder) (STV 1.0 0.9091)) +(: cnet_isa_30d3df915b (IsA library depository) (STV 1.0 0.9091)) +(: cnet_isa_1031fe434f (IsA library room) (STV 1.0 0.9091)) +(: cnet_isa_a3059011d8 (IsA library collection) (STV 1.0 0.9091)) +(: cnet_isa_0f75c1e7ef (IsA library_card card) (STV 1.0 0.9091)) +(: cnet_isa_eda35e61ef (IsA library_catalog catalog) (STV 1.0 0.9091)) +(: cnet_isa_6e0707343d (IsA library_fine fine) (STV 1.0 0.9091)) +(: cnet_isa_6ded1079e0 (IsA library_program program) (STV 1.0 0.9091)) +(: cnet_isa_d4a58a1e21 (IsA library_routine routine) (STV 1.0 0.9091)) +(: cnet_isa_06037b91eb (IsA library_science humanistic_discipline) (STV 1.0 0.9091)) +(: cnet_isa_46a5ad79ad (IsA libration oscillation) (STV 1.0 0.9091)) +(: cnet_isa_800a2a777b (IsA libration variation) (STV 1.0 0.9091)) +(: cnet_isa_e06b4946f4 (IsA librettist writer) (STV 1.0 0.9091)) +(: cnet_isa_8e09ce2941 (IsA libretto script) (STV 1.0 0.9091)) +(: cnet_isa_7c81972b3c (IsA libyan african) (STV 1.0 0.9091)) +(: cnet_isa_292e687b5b (IsA libyan_dinar libyan_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_62955805db (IsA libyan_dirham libyan_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_2a280d1c63 (IsA libyan_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_83fc2cd1a3 (IsA license authorization) (STV 1.0 0.9091)) +(: cnet_isa_8d8dc534c6 (IsA license legal_document) (STV 1.0 0.9091)) +(: cnet_isa_727b16d137 (IsA license liberty) (STV 1.0 0.9091)) +(: cnet_isa_ceb8a577c1 (IsA license_number number) (STV 1.0 0.9091)) +(: cnet_isa_850345eb5b (IsA license_plate plate) (STV 1.0 0.9091)) +(: cnet_isa_7c8b17aa47 (IsA licensed_practical_nurse nurse) (STV 1.0 0.9091)) +(: cnet_isa_64449d13ab (IsA licensee retailer) (STV 1.0 0.9091)) +(: cnet_isa_d29fba9eb4 (IsA licenser official) (STV 1.0 0.9091)) +(: cnet_isa_caccfddde0 (IsA licensing_agreement contract) (STV 1.0 0.9091)) +(: cnet_isa_cd30d82a71 (IsA licensing_fee fee) (STV 1.0 0.9091)) +(: cnet_isa_509bfe3b7d (IsA licentiate scholar) (STV 1.0 0.9091)) +(: cnet_isa_2ce68adce4 (IsA licentiousness immorality) (STV 1.0 0.9091)) +(: cnet_isa_5a967e6b2e (IsA lichanura reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_0abbea8d27 (IsA lichen fungus) (STV 1.0 0.9091)) +(: cnet_isa_fe60b72037 (IsA lichen skin_disease) (STV 1.0 0.9091)) +(: cnet_isa_a504f02b6b (IsA lichen_planus lichen) (STV 1.0 0.9091)) +(: cnet_isa_96bbb95753 (IsA lichenale fungus_order) (STV 1.0 0.9091)) +(: cnet_isa_ad7348433d (IsA lichene division) (STV 1.0 0.9091)) +(: cnet_isa_4d0bb45b28 (IsA lichtenoid_eczema eczema) (STV 1.0 0.9091)) +(: cnet_isa_8adf7c6a69 (IsA licitness lawfulness) (STV 1.0 0.9091)) +(: cnet_isa_66beea669a (IsA lick touch) (STV 1.0 0.9091)) +(: cnet_isa_b526c92af6 (IsA licorice candy) (STV 1.0 0.9091)) +(: cnet_isa_eedc46a10c (IsA licorice herb) (STV 1.0 0.9091)) +(: cnet_isa_91aab6707f (IsA licorice_fern polypody) (STV 1.0 0.9091)) +(: cnet_isa_287f75b105 (IsA licorice_root root) (STV 1.0 0.9091)) +(: cnet_isa_4a163ba9ab (IsA lid top) (STV 1.0 0.9091)) +(: cnet_isa_e91b1623cd (IsA lidar measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_7d23d447b5 (IsA lido recreational_facility) (STV 1.0 0.9091)) +(: cnet_isa_b80df24b4f (IsA lido_deck deck) (STV 1.0 0.9091)) +(: cnet_isa_2b04e68895 (IsA lie deception) (STV 1.0 0.9524)) +(: cnet_isa_67c0bef8df (IsA lie false_statement) (STV 1.0 0.9091)) +(: cnet_isa_b6010683f9 (IsA lie falsehood) (STV 1.0 0.9091)) +(: cnet_isa_e15e608a97 (IsA lie position) (STV 1.0 0.9091)) +(: cnet_isa_13df53cfe9 (IsA lie_abed idler) (STV 1.0 0.9091)) +(: cnet_isa_ab93dece38 (IsA lie_detector polygraph) (STV 1.0 0.9091)) +(: cnet_isa_23a561dc33 (IsA lie_in rest) (STV 1.0 0.9091)) +(: cnet_isa_68a3659bfd (IsA liebfraumilch rhine_wine) (STV 1.0 0.9091)) +(: cnet_isa_b526dcc8a4 (IsA liebig_condenser condenser) (STV 1.0 0.9091)) +(: cnet_isa_e9e831962f (IsA liechtensteiner european) (STV 1.0 0.9091)) +(: cnet_isa_e6d9c6a8b9 (IsA lied song) (STV 1.0 0.9091)) +(: cnet_isa_0512eb3ade (IsA lieder_singer singer) (STV 1.0 0.9091)) +(: cnet_isa_55aaae2af6 (IsA liederkranz cheese) (STV 1.0 0.9091)) +(: cnet_isa_023950537f (IsA liege_lord feudal_lord) (STV 1.0 0.9091)) +(: cnet_isa_506ffbdcc8 (IsA lien security_interest) (STV 1.0 0.9091)) +(: cnet_isa_08082e25c3 (IsA lienal_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_d063c7e8ef (IsA lie unreliable_information) (STV 1.0 0.9091)) +(: cnet_isa_68ec50af79 (IsA lieutenancy position) (STV 1.0 0.9091)) +(: cnet_isa_86fe8eb93a (IsA lieutenant commissioned_military_officer) (STV 1.0 0.9091)) +(: cnet_isa_eee377917b (IsA lieutenant commissioned_naval_officer) (STV 1.0 0.9091)) +(: cnet_isa_938ff85510 (IsA lieutenant lawman) (STV 1.0 0.9091)) +(: cnet_isa_c604f51734 (IsA lieutenant_colonel colonel) (STV 1.0 0.9091)) +(: cnet_isa_3a40112a33 (IsA lieutenant_commander commissioned_naval_officer) (STV 1.0 0.9091)) +(: cnet_isa_10d554f53a (IsA lieutenant_general general_officer) (STV 1.0 0.9091)) +(: cnet_isa_d54361d529 (IsA lieutenant_governor elected_official) (STV 1.0 0.9091)) +(: cnet_isa_50f7f336c4 (IsA lieutenant_junior_grade commissioned_naval_officer) (STV 1.0 0.9091)) +(: cnet_isa_096a887068 (IsA life living_thing) (STV 1.0 0.9091)) +(: cnet_isa_32b390e70a (IsA life experience) (STV 1.0 0.9091)) +(: cnet_isa_07597c3aac (IsA life motivation) (STV 1.0 0.9091)) +(: cnet_isa_d763ba7be2 (IsA life person) (STV 1.0 0.9091)) +(: cnet_isa_4073ed01fd (IsA life organic_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_db5f9a73f0 (IsA life being) (STV 1.0 0.9091)) +(: cnet_isa_b84f7e006a (IsA life time_period) (STV 1.0 0.9091)) +(: cnet_isa_e92729720a (IsA life_buoy life_preserver) (STV 1.0 0.9091)) +(: cnet_isa_c8fc1b6588 (IsA life_class art_class) (STV 1.0 0.9091)) +(: cnet_isa_e4ab48e732 (IsA life_cycle organic_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_c792e7f544 (IsA life_cycle growth) (STV 1.0 0.9091)) +(: cnet_isa_eef252561f (IsA life_estate estate) (STV 1.0 0.9091)) +(: cnet_isa_234b390717 (IsA life_expectancy anticipation) (STV 1.0 0.9091)) +(: cnet_isa_460acf40a5 (IsA life_force force) (STV 1.0 0.9091)) +(: cnet_isa_b1ff6d7c5b (IsA life_form body) (STV 1.0 0.9091)) +(: cnet_isa_2b5fc12038 (IsA life_imprisonment captivity) (STV 1.0 0.9091)) +(: cnet_isa_4957b8fa2c (IsA life_insurance insurance) (STV 1.0 0.9091)) +(: cnet_isa_98fbc60708 (IsA life_jacket life_preserver) (STV 1.0 0.9091)) +(: cnet_isa_34ba1902b2 (IsA life_mask cast) (STV 1.0 0.9091)) +(: cnet_isa_1c3162335f (IsA life_office office) (STV 1.0 0.9091)) +(: cnet_isa_b260780320 (IsA life_peer peer) (STV 1.0 0.9091)) +(: cnet_isa_e866110cc7 (IsA life_preserver float) (STV 1.0 0.9091)) +(: cnet_isa_10e82eaa51 (IsA life_preserver rescue_equipment) (STV 1.0 0.9091)) +(: cnet_isa_67b8c7be73 (IsA life_raft raft) (STV 1.0 0.9091)) +(: cnet_isa_223ad18016 (IsA life_saver candy) (STV 1.0 0.9091)) +(: cnet_isa_b84db5c71e (IsA life_science natural_science) (STV 1.0 0.9091)) +(: cnet_isa_e984354ac2 (IsA life_sentence prison_term) (STV 1.0 0.9091)) +(: cnet_isa_7b99c30e36 (IsA life_style manner) (STV 1.0 0.9091)) +(: cnet_isa_c17447f1da (IsA life_support_system equipment) (STV 1.0 0.9091)) +(: cnet_isa_811f35b077 (IsA life_tenant tenant) (STV 1.0 0.9091)) +(: cnet_isa_4c16a625ad (IsA lifeblood force) (STV 1.0 0.9091)) +(: cnet_isa_f1340c1eb4 (IsA lifeblood blood) (STV 1.0 0.9091)) +(: cnet_isa_2e8b72f40f (IsA lifeboat sea_boat) (STV 1.0 0.9091)) +(: cnet_isa_bbbdebf345 (IsA lifeguard attendant) (STV 1.0 0.9091)) +(: cnet_isa_2155b04186 (IsA lifeline line) (STV 1.0 0.9091)) +(: cnet_isa_0d6a672e07 (IsA lifeline support) (STV 1.0 0.9091)) +(: cnet_isa_9a61e720cc (IsA lifer convict) (STV 1.0 0.9091)) +(: cnet_isa_97143d308f (IsA lifesaving rescue) (STV 1.0 0.9091)) +(: cnet_isa_f1f65ecd46 (IsA lifework career) (STV 1.0 0.9091)) +(: cnet_isa_fe551358b9 (IsA lift aid) (STV 1.0 0.9091)) +(: cnet_isa_d18404f5b3 (IsA lift drive) (STV 1.0 0.9091)) +(: cnet_isa_c7347e78e5 (IsA lift propulsion) (STV 1.0 0.9091)) +(: cnet_isa_d91d4949cd (IsA lift device) (STV 1.0 0.9091)) +(: cnet_isa_2fff63dc6a (IsA lift layer) (STV 1.0 0.9091)) +(: cnet_isa_1052fb8d67 (IsA lift wave) (STV 1.0 0.9091)) +(: cnet_isa_cf40f1da85 (IsA lift_pump pump) (STV 1.0 0.9091)) +(: cnet_isa_73f49bff4c (IsA lifting_device device) (STV 1.0 0.9091)) +(: cnet_isa_79dc0b90af (IsA lifting_weight exercise) (STV 1.0 0.9339)) +(: cnet_isa_046e350a24 (IsA liftoff rise) (STV 1.0 0.9091)) +(: cnet_isa_512bb4a348 (IsA ligament attachment) (STV 1.0 0.9091)) +(: cnet_isa_814c4965d0 (IsA ligament connective_tissue) (STV 1.0 0.9091)) +(: cnet_isa_9fe1f2a36d (IsA ligand substance) (STV 1.0 0.9091)) +(: cnet_isa_2e63985885 (IsA ligation tying) (STV 1.0 0.9091)) +(: cnet_isa_802e68e631 (IsA ligature band) (STV 1.0 0.9091)) +(: cnet_isa_6e3b289897 (IsA ligature thread) (STV 1.0 0.9091)) +(: cnet_isa_65b159a60c (IsA ligature character) (STV 1.0 0.9091)) +(: cnet_isa_4dc57c686c (IsA ligature phrase) (STV 1.0 0.9091)) +(: cnet_isa_299ee11364 (IsA liger big_cat) (STV 1.0 0.9091)) +(: cnet_isa_002e60fb78 (IsA light electromagnetic_radiation) (STV 1.0 0.9454)) +(: cnet_isa_aa567afd9f (IsA light energy) (STV 1.0 0.9572)) +(: cnet_isa_5478b4d02d (IsA light particle) (STV 1.0 0.9091)) +(: cnet_isa_37498f43be (IsA light source_of_illumination) (STV 1.0 0.9091)) +(: cnet_isa_7e061449c8 (IsA light visual_property) (STV 1.0 0.9091)) +(: cnet_isa_452398a2ea (IsA light insight) (STV 1.0 0.9091)) +(: cnet_isa_d651427589 (IsA light position) (STV 1.0 0.9091)) +(: cnet_isa_d073772fce (IsA light public_knowledge) (STV 1.0 0.9091)) +(: cnet_isa_61b5e655e0 (IsA light visual_signal) (STV 1.0 0.9091)) +(: cnet_isa_601df0fcbe (IsA light scene) (STV 1.0 0.9091)) +(: cnet_isa_dd8b9f2819 (IsA light friend) (STV 1.0 0.9091)) +(: cnet_isa_19da3f5217 (IsA light actinic_radiation) (STV 1.0 0.9091)) +(: cnet_isa_683c8913ab (IsA light condition) (STV 1.0 0.9091)) +(: cnet_isa_7ab94c0c82 (IsA light illumination) (STV 1.0 0.9091)) +(: cnet_isa_6633754afb (IsA light_adaptation adaptation) (STV 1.0 0.9091)) +(: cnet_isa_54a34658db (IsA light_air breeze) (STV 1.0 0.9091)) +(: cnet_isa_fca5690ca3 (IsA light_arm weapon) (STV 1.0 0.9091)) +(: cnet_isa_56e3d5cca5 (IsA light_beer lager) (STV 1.0 0.9091)) +(: cnet_isa_7c1313c057 (IsA light_breeze breeze) (STV 1.0 0.9091)) +(: cnet_isa_1b21ed072f (IsA light_brown brown) (STV 1.0 0.9091)) +(: cnet_isa_cdb38e328f (IsA light_bulb light_source) (STV 1.0 0.9091)) +(: cnet_isa_0fdf69b84c (IsA light_bulb electric_lamp) (STV 1.0 0.9091)) +(: cnet_isa_dec4522adb (IsA light_circuit wiring) (STV 1.0 0.9091)) +(: cnet_isa_431cc12c43 (IsA light_cream cream) (STV 1.0 0.9091)) +(: cnet_isa_cc706bcbd0 (IsA light_diet diet) (STV 1.0 0.9091)) +(: cnet_isa_6ffd92401d (IsA light_emitting_diode diode) (STV 1.0 0.9091)) +(: cnet_isa_7f9747f14d (IsA light_filter filter) (STV 1.0 0.9091)) +(: cnet_isa_50b3285ce2 (IsA light_flyweight boxer) (STV 1.0 0.9091)) +(: cnet_isa_d223c5bd13 (IsA light_heavyweight boxer) (STV 1.0 0.9091)) +(: cnet_isa_4c801a8ac0 (IsA light_heavyweight prizefighter) (STV 1.0 0.9091)) +(: cnet_isa_b56ff43881 (IsA light_heavyweight wrestler) (STV 1.0 0.9091)) +(: cnet_isa_0e9e65acad (IsA light_hour astronomy_unit) (STV 1.0 0.9091)) +(: cnet_isa_535c05a4af (IsA light_machine_gun submachine_gun) (STV 1.0 0.9091)) +(: cnet_isa_7a1e783fe9 (IsA light_meter photographic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_d4a0fa6d06 (IsA light_microscope microscope) (STV 1.0 0.9091)) +(: cnet_isa_a8474929c3 (IsA light_middleweight boxer) (STV 1.0 0.9091)) +(: cnet_isa_824c7c3374 (IsA light_minute astronomy_unit) (STV 1.0 0.9091)) +(: cnet_isa_446a8088fd (IsA light_o_love wanton) (STV 1.0 0.9091)) +(: cnet_isa_6e6cc2a4b3 (IsA light_pen pointer) (STV 1.0 0.9091)) +(: cnet_isa_d0d98ce878 (IsA light_reaction photochemical_reaction) (STV 1.0 0.9091)) +(: cnet_isa_fe1ee274df (IsA light_reflex reflex) (STV 1.0 0.9091)) +(: cnet_isa_33fc078a75 (IsA light_second astronomy_unit) (STV 1.0 0.9091)) +(: cnet_isa_65bbc68d1d (IsA light_show display) (STV 1.0 0.9091)) +(: cnet_isa_4c62d687b3 (IsA light_time distance) (STV 1.0 0.9091)) +(: cnet_isa_90dee47070 (IsA light_unit electromagnetic_unit) (STV 1.0 0.9091)) +(: cnet_isa_b25c66a3c1 (IsA light_welterweight boxer) (STV 1.0 0.9091)) +(: cnet_isa_2a83b09e69 (IsA light_year astronomy_unit) (STV 1.0 0.9091)) +(: cnet_isa_d1cb105517 (IsA lightening electricity) (STV 1.0 0.9091)) +(: cnet_isa_8c1188693d (IsA lightening descent) (STV 1.0 0.9091)) +(: cnet_isa_37ea6eadbc (IsA lighter tool) (STV 1.0 0.9091)) +(: cnet_isa_d42a7ded48 (IsA lighter device) (STV 1.0 0.9091)) +(: cnet_isa_62398997fc (IsA lighter_than_air_craft aircraft) (STV 1.0 0.9091)) +(: cnet_isa_dc9ca9d3d1 (IsA lighterage transportation) (STV 1.0 0.9091)) +(: cnet_isa_7f1edcba8d (IsA lighterage fee) (STV 1.0 0.9091)) +(: cnet_isa_6495023028 (IsA lighterman mariner) (STV 1.0 0.9091)) +(: cnet_isa_861ea536ef (IsA lightheadedness heedlessness) (STV 1.0 0.9091)) +(: cnet_isa_ebb0880ba4 (IsA lighthouse_keeper custodian) (STV 1.0 0.9091)) +(: cnet_isa_4f3c4c39df (IsA lighting interior_decoration) (STV 1.0 0.9091)) +(: cnet_isa_fa4b01eaf0 (IsA lighting apparatus) (STV 1.0 0.9091)) +(: cnet_isa_427f7e9d95 (IsA lighting_fixture fixture) (STV 1.0 0.9091)) +(: cnet_isa_545bb52136 (IsA lighting_industry industry) (STV 1.0 0.9091)) +(: cnet_isa_ca767a4b5b (IsA lightness value) (STV 1.0 0.9091)) +(: cnet_isa_de566e3346 (IsA lightness weight) (STV 1.0 0.9091)) +(: cnet_isa_3028411459 (IsA lightning electrical_discharge) (STV 1.0 0.9524)) +(: cnet_isa_731c9855c0 (IsA lightning electricity) (STV 1.0 0.9454)) +(: cnet_isa_a653bd43f5 (IsA lightning flash) (STV 1.0 0.9091)) +(: cnet_isa_d554b2d8c0 (IsA lightning atmospheric_electricity) (STV 1.0 0.9091)) +(: cnet_isa_6e281c728e (IsA lightning_rod conductor) (STV 1.0 0.9091)) +(: cnet_isa_8e4ff64fb2 (IsA lightning_rod person) (STV 1.0 0.9091)) +(: cnet_isa_86c5b8dfbc (IsA light_out bedtime) (STV 1.0 0.9091)) +(: cnet_isa_cbd8611826 (IsA lightship ship) (STV 1.0 0.9091)) +(: cnet_isa_ed864f4a4d (IsA lightsomeness giddiness) (STV 1.0 0.9091)) +(: cnet_isa_800d3b04fd (IsA lightweight boxer) (STV 1.0 0.9091)) +(: cnet_isa_b28a62b322 (IsA lightweight prizefighter) (STV 1.0 0.9091)) +(: cnet_isa_333431ae6e (IsA lightweight wrestler) (STV 1.0 0.9091)) +(: cnet_isa_e565834f88 (IsA lightwood blackwood) (STV 1.0 0.9091)) +(: cnet_isa_b20a827a56 (IsA ligne linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_d1cb9c2ed4 (IsA lignin polymer) (STV 1.0 0.9091)) +(: cnet_isa_e2ed0147ab (IsA lignite coal) (STV 1.0 0.9091)) +(: cnet_isa_d0462e80d7 (IsA lignite humate) (STV 1.0 0.9091)) +(: cnet_isa_fde3ebb5ad (IsA lignosae woody_plant) (STV 1.0 0.9091)) +(: cnet_isa_da4a0a86be (IsA lignum plant_tissue) (STV 1.0 0.9091)) +(: cnet_isa_0700d99d89 (IsA lignum_vitae angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_ffc8bee9e4 (IsA lignum_vitae wood) (STV 1.0 0.9091)) +(: cnet_isa_ef5ee31e5e (IsA ligularia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3fd20e5235 (IsA ligule plant_part) (STV 1.0 0.9091)) +(: cnet_isa_9b6d887324 (IsA ligustrum dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8050d37d76 (IsA ligustrum_obtusifolium privet) (STV 1.0 0.9091)) +(: cnet_isa_e7fd626c62 (IsA like kind) (STV 1.0 0.9091)) +(: cnet_isa_0777a72899 (IsA likelihood probability) (STV 1.0 0.9091)) +(: cnet_isa_e041b60d1b (IsA likeness ikon) (STV 1.0 0.9091)) +(: cnet_isa_c754b09134 (IsA likeness similarity) (STV 1.0 0.9091)) +(: cnet_isa_07fd69872f (IsA likening comparison) (STV 1.0 0.9091)) +(: cnet_isa_a4e242776c (IsA liking feeling) (STV 1.0 0.9091)) +(: cnet_isa_3e65afdd12 (IsA likuta zairese_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_c2ef89830b (IsA lilac shrub) (STV 1.0 0.9091)) +(: cnet_isa_db63bed720 (IsA lilangeni swaziland_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_cea67b58b5 (IsA liliaceae liliid_monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_1dd1d4959b (IsA liliaceous_plant bulbous_plant) (STV 1.0 0.9091)) +(: cnet_isa_40e06a718d (IsA liliale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_356b14ce30 (IsA liliid_monocot_family monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_144c792c03 (IsA liliid_monocot_genus monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8792a6e227 (IsA liliidae class) (STV 1.0 0.9091)) +(: cnet_isa_1481090aa6 (IsA lilith semitic_deity) (STV 1.0 0.9091)) +(: cnet_isa_19b35528bc (IsA lilium liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ac138187c4 (IsA lilliput imaginary_place) (STV 1.0 0.9091)) +(: cnet_isa_5c328ef6e0 (IsA lilliputian small_person) (STV 1.0 0.9091)) +(: cnet_isa_241b1be61d (IsA lilt rhythmicity) (STV 1.0 0.9091)) +(: cnet_isa_e7b3ec1cb6 (IsA lily flower) (STV 1.0 0.9524)) +(: cnet_isa_eb49e5f2f2 (IsA lily liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_a64137341c (IsA lily_of_valley liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_ca17e947d2 (IsA lily_pad pad) (STV 1.0 0.9091)) +(: cnet_isa_22f93fc2ff (IsA lilyturf liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_3d97367060 (IsA lima_bean shell_bean) (STV 1.0 0.9091)) +(: cnet_isa_1f841c947e (IsA limacidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_4a6af06b1d (IsA liman lagoon) (STV 1.0 0.9091)) +(: cnet_isa_01e0ccbb3e (IsA limanda fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_bef6f8528e (IsA limax mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_84342a7ca8 (IsA limb arc) (STV 1.0 0.9091)) +(: cnet_isa_d4ac26ab79 (IsA limb part) (STV 1.0 0.9091)) +(: cnet_isa_4858b192ce (IsA limb edge) (STV 1.0 0.9091)) +(: cnet_isa_c7777db880 (IsA limb extremity) (STV 1.0 0.9091)) +(: cnet_isa_15411e10ae (IsA limb branch) (STV 1.0 0.9091)) +(: cnet_isa_869039f820 (IsA limb_girdle_muscular_dystrophy autosomal_recessive_disease) (STV 1.0 0.9091)) +(: cnet_isa_2580c9df59 (IsA limb_girdle_muscular_dystrophy muscular_dystrophy) (STV 1.0 0.9091)) +(: cnet_isa_b5e461397f (IsA limber horse_drawn_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_eff79c2f08 (IsA limber_pine white_pine) (STV 1.0 0.9091)) +(: cnet_isa_d7e0e4ff22 (IsA limber channel) (STV 1.0 0.9091)) +(: cnet_isa_a45aa06a91 (IsA limbic_system neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_943108efa3 (IsA limbo imaginary_place) (STV 1.0 0.9091)) +(: cnet_isa_f5c50c9c04 (IsA limburger cheese) (STV 1.0 0.9091)) +(: cnet_isa_0c71f27324 (IsA limbus structure) (STV 1.0 0.9091)) +(: cnet_isa_f1d8b46498 (IsA lime citrus) (STV 1.0 0.9091)) +(: cnet_isa_ffcf63e54d (IsA lime_juice juice) (STV 1.0 0.9091)) +(: cnet_isa_2a836b1230 (IsA limeade fruit_drink) (STV 1.0 0.9091)) +(: cnet_isa_57ea4e7f12 (IsA limekiln kiln) (STV 1.0 0.9091)) +(: cnet_isa_4c33dfaf7a (IsA limelight lamp) (STV 1.0 0.9091)) +(: cnet_isa_d00df042ad (IsA limelight prominence) (STV 1.0 0.9091)) +(: cnet_isa_9ec9b5c7fe (IsA limenitis arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_c73470d628 (IsA limerick verse) (STV 1.0 0.9091)) +(: cnet_isa_5fffdd7f6d (IsA limestone rock) (STV 1.0 0.9091)) +(: cnet_isa_218f67c59e (IsA limestone sedimentary_rock) (STV 1.0 0.9091)) +(: cnet_isa_4ea1f216d2 (IsA limestone_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_bd80c6b757 (IsA limestone_salamander web_toed_salamander) (STV 1.0 0.9091)) +(: cnet_isa_4269780d83 (IsA limewater water) (STV 1.0 0.9091)) +(: cnet_isa_88b96b01b0 (IsA limey englishman) (STV 1.0 0.9091)) +(: cnet_isa_486e239d96 (IsA limicolae animal_order) (STV 1.0 0.9091)) +(: cnet_isa_972d8ae71f (IsA limit extent) (STV 1.0 0.9091)) +(: cnet_isa_b4eb7fd295 (IsA limit boundary) (STV 1.0 0.9091)) +(: cnet_isa_d9400ed716 (IsA limit extremity) (STV 1.0 0.9091)) +(: cnet_isa_2d9f0179cd (IsA limit indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_9f1594e345 (IsA limitation regulation) (STV 1.0 0.9091)) +(: cnet_isa_f6f0399f93 (IsA limitation disadvantage) (STV 1.0 0.9091)) +(: cnet_isa_14e168c39b (IsA limitation time_limit) (STV 1.0 0.9091)) +(: cnet_isa_1832412fa7 (IsA limited_audit audited_account) (STV 1.0 0.9091)) +(: cnet_isa_9bdd73dae6 (IsA limited_company company) (STV 1.0 0.9091)) +(: cnet_isa_b85c6a0c54 (IsA limited_edition edition) (STV 1.0 0.9091)) +(: cnet_isa_b83e17de16 (IsA limited_liability indebtedness) (STV 1.0 0.9091)) +(: cnet_isa_a6fb6427b8 (IsA limited_war war) (STV 1.0 0.9091)) +(: cnet_isa_477ed06e3e (IsA limiter circuit) (STV 1.0 0.9091)) +(: cnet_isa_1e29a0f4a3 (IsA limnobium monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8e19c5c2d8 (IsA limnocrypte bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_6c8db6d4b1 (IsA limnodromus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_f9e93794db (IsA limnologist specialist) (STV 1.0 0.9091)) +(: cnet_isa_19c9f5f10e (IsA limnology earth_science) (STV 1.0 0.9091)) +(: cnet_isa_7f746d4166 (IsA limonene terpene) (STV 1.0 0.9091)) +(: cnet_isa_e3d0a39c9f (IsA limonite iron_ore) (STV 1.0 0.9091)) +(: cnet_isa_b36094b5e5 (IsA limonium dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7007cac57a (IsA limosa bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_b29e105a35 (IsA limousine automobile) (STV 1.0 0.9091)) +(: cnet_isa_71b1db1ab0 (IsA limousine car) (STV 1.0 0.9091)) +(: cnet_isa_0c98b6dcf3 (IsA limpa rye_bread) (STV 1.0 0.9091)) +(: cnet_isa_39da619c4b (IsA limpet seasnail) (STV 1.0 0.9091)) +(: cnet_isa_f8594637b6 (IsA limpet shellfish) (STV 1.0 0.9091)) +(: cnet_isa_42d21d32c9 (IsA limpkin wading_bird) (STV 1.0 0.9091)) +(: cnet_isa_ab2556b960 (IsA limulidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_184ad7f6c6 (IsA limulus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_e6e815f784 (IsA linaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_1363dc0aec (IsA linage rate) (STV 1.0 0.9091)) +(: cnet_isa_68b8190d20 (IsA linage number) (STV 1.0 0.9091)) +(: cnet_isa_de470ba71c (IsA linalool essential_oil) (STV 1.0 0.9091)) +(: cnet_isa_190016e6e4 (IsA linanthus plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_08b2e2263b (IsA linaria asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5b84ac831f (IsA linchpin pin) (STV 1.0 0.9091)) +(: cnet_isa_7cab99f942 (IsA lincoln_s_birthday day) (STV 1.0 0.9091)) +(: cnet_isa_43881e3eaf (IsA lincoln domestic_sheep) (STV 1.0 0.9091)) +(: cnet_isa_339fcfa2ce (IsA lindane insecticide) (STV 1.0 0.9091)) +(: cnet_isa_dd9ca8e3e9 (IsA linden tree) (STV 1.0 0.9091)) +(: cnet_isa_eed10f3945 (IsA lindera magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1f1ecebe65 (IsA lindheimera asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7d06d7b662 (IsA lindy social_dancing) (STV 1.0 0.9091)) +(: cnet_isa_c9c1c57935 (IsA line imaginary_connection_between_two_point) (STV 1.0 0.9091)) +(: cnet_isa_c70ab9072b (IsA line conformity) (STV 1.0 0.9091)) +(: cnet_isa_dd2a2d5b98 (IsA line artifact) (STV 1.0 0.9091)) +(: cnet_isa_722a729e72 (IsA line carrier) (STV 1.0 0.9091)) +(: cnet_isa_558079865c (IsA line merchandise) (STV 1.0 0.9091)) +(: cnet_isa_0e54bcff6f (IsA line road) (STV 1.0 0.9091)) +(: cnet_isa_9336f7cb3d (IsA line woman_s_clothing) (STV 1.0 0.9091)) +(: cnet_isa_5217113a78 (IsA line differentiation) (STV 1.0 0.9091)) +(: cnet_isa_45091abd7c (IsA line mark) (STV 1.0 0.9091)) +(: cnet_isa_2928625a31 (IsA line persuasion) (STV 1.0 0.9091)) +(: cnet_isa_175be567e7 (IsA line text) (STV 1.0 0.9091)) +(: cnet_isa_8c3acafb0e (IsA line formation) (STV 1.0 0.9091)) +(: cnet_isa_bfa02f47b2 (IsA line location) (STV 1.0 0.9091)) +(: cnet_isa_969d887be9 (IsA line military_position) (STV 1.0 0.9091)) +(: cnet_isa_b31875608b (IsA line electromagnetic_radiation) (STV 1.0 0.9091)) +(: cnet_isa_30915ea51c (IsA line shape) (STV 1.0 0.9091)) +(: cnet_isa_05b2d91274 (IsA line_coach football_coach) (STV 1.0 0.9091)) +(: cnet_isa_90742b4c8e (IsA line_drive_double double) (STV 1.0 0.9091)) +(: cnet_isa_a20e5c158b (IsA line_drive_single single) (STV 1.0 0.9091)) +(: cnet_isa_44f5cc5b3f (IsA line_drive_triple triple) (STV 1.0 0.9091)) +(: cnet_isa_0cf1056c66 (IsA line_feed printing_operation) (STV 1.0 0.9091)) +(: cnet_isa_403e18c6f0 (IsA line_item item) (STV 1.0 0.9091)) +(: cnet_isa_c5f0f278a0 (IsA line_judge football_official) (STV 1.0 0.9091)) +(: cnet_isa_4362af515c (IsA line_management administration) (STV 1.0 0.9091)) +(: cnet_isa_5744e998f4 (IsA line_of_battle line) (STV 1.0 0.9091)) +(: cnet_isa_0471304a5f (IsA line_of_defense defensive_structure) (STV 1.0 0.9091)) +(: cnet_isa_0c6d4f7ddb (IsA line_of_defense organization) (STV 1.0 0.9091)) +(: cnet_isa_23cd4f3d17 (IsA line_of_duty duty) (STV 1.0 0.9091)) +(: cnet_isa_f3cab9cb93 (IsA line_of_fate wrinkle) (STV 1.0 0.9091)) +(: cnet_isa_3a50359509 (IsA line_of_fire path) (STV 1.0 0.9091)) +(: cnet_isa_9e248f0716 (IsA line_of_flight path) (STV 1.0 0.9091)) +(: cnet_isa_30dace1367 (IsA line_of_force line) (STV 1.0 0.9091)) +(: cnet_isa_6b1d2b213b (IsA line_of_heart wrinkle) (STV 1.0 0.9091)) +(: cnet_isa_be64541157 (IsA line_of_inquiry argumentation) (STV 1.0 0.9091)) +(: cnet_isa_d2fee1b900 (IsA line_of_least_resistance fashion) (STV 1.0 0.9091)) +(: cnet_isa_5433df9b0c (IsA line_of_life wrinkle) (STV 1.0 0.9091)) +(: cnet_isa_59d8821251 (IsA line_of_march line) (STV 1.0 0.9091)) +(: cnet_isa_783e2f4116 (IsA line_of_march path) (STV 1.0 0.9091)) +(: cnet_isa_6a7ca5934e (IsA line_of_poetry line) (STV 1.0 0.9091)) +(: cnet_isa_2fce0b4744 (IsA line_of_sight line) (STV 1.0 0.9091)) +(: cnet_isa_924b868850 (IsA line_of_succession line) (STV 1.0 0.9091)) +(: cnet_isa_33315ca225 (IsA line_of_thought thinking) (STV 1.0 0.9091)) +(: cnet_isa_c6b75b457a (IsA line_officer commissioned_officer) (STV 1.0 0.9091)) +(: cnet_isa_6544e39d1c (IsA line_organization organization) (STV 1.0 0.9091)) +(: cnet_isa_1703e641b9 (IsA line_personnel force) (STV 1.0 0.9091)) +(: cnet_isa_5747c385bd (IsA line_printer printer) (STV 1.0 0.9091)) +(: cnet_isa_28a3de69c8 (IsA line_score summary) (STV 1.0 0.9091)) +(: cnet_isa_1dafa57226 (IsA line_spectrum spectrum) (STV 1.0 0.9091)) +(: cnet_isa_6ca99cdcd4 (IsA line_squall squall) (STV 1.0 0.9091)) +(: cnet_isa_f59fcd2cab (IsA line_storm rainstorm) (STV 1.0 0.9091)) +(: cnet_isa_134cb84391 (IsA line_worker employee) (STV 1.0 0.9091)) +(: cnet_isa_dce4151f12 (IsA lineage genealogy) (STV 1.0 0.9091)) +(: cnet_isa_9c1df597e0 (IsA linear_accelerator accelerator) (STV 1.0 0.9091)) +(: cnet_isa_dcb5ea84c2 (IsA linear_algebra algebra) (STV 1.0 0.9091)) +(: cnet_isa_4336042567 (IsA linear_equation equation) (STV 1.0 0.9091)) +(: cnet_isa_7149ee0dd6 (IsA linear_leaf simple_leaf) (STV 1.0 0.9091)) +(: cnet_isa_7f80291835 (IsA linear_operator operator) (STV 1.0 0.9091)) +(: cnet_isa_7902eb17fc (IsA linear_programming applied_mathematic) (STV 1.0 0.9091)) +(: cnet_isa_0edbe3e194 (IsA linear_regression regression) (STV 1.0 0.9091)) +(: cnet_isa_45e63e6053 (IsA linear_unit unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_3dff519566 (IsA lineation marking) (STV 1.0 0.9091)) +(: cnet_isa_26b2deb5ac (IsA linebacker back) (STV 1.0 0.9091)) +(: cnet_isa_286ddb2ea7 (IsA linebacker football_player) (STV 1.0 0.9091)) +(: cnet_isa_afc368f26f (IsA linecut engraving) (STV 1.0 0.9091)) +(: cnet_isa_2bbd627bb7 (IsA lined_snake colubrid_snake) (STV 1.0 0.9091)) +(: cnet_isa_1fa08b7901 (IsA lineman position) (STV 1.0 0.9091)) +(: cnet_isa_ddb92c0274 (IsA lineman football_player) (STV 1.0 0.9091)) +(: cnet_isa_6cc9af3586 (IsA lineman surveyor) (STV 1.0 0.9091)) +(: cnet_isa_43be620706 (IsA linemen line) (STV 1.0 0.9091)) +(: cnet_isa_4d2cfa21e0 (IsA linen cloth) (STV 1.0 0.9524)) +(: cnet_isa_5a95a33181 (IsA linen fabric) (STV 1.0 0.9091)) +(: cnet_isa_3626dbdd08 (IsA linen white_good) (STV 1.0 0.9091)) +(: cnet_isa_746b43418d (IsA linen paper) (STV 1.0 0.9091)) +(: cnet_isa_e74d422f52 (IsA linendraper draper) (STV 1.0 0.9091)) +(: cnet_isa_b09a262cc5 (IsA liner passenger_ship) (STV 1.0 0.9091)) +(: cnet_isa_9ef6b1184a (IsA liner piece_of_cloth) (STV 1.0 0.9091)) +(: cnet_isa_5edb622a1c (IsA liner fly) (STV 1.0 0.9091)) +(: cnet_isa_a170d064ba (IsA linesman official) (STV 1.0 0.9091)) +(: cnet_isa_165e439aa8 (IsA lineup network_programming) (STV 1.0 0.9091)) +(: cnet_isa_7afbe7c95f (IsA lineup line) (STV 1.0 0.9091)) +(: cnet_isa_e2d40c702b (IsA ling gadoid) (STV 1.0 0.9091)) +(: cnet_isa_04fc94acab (IsA ling hake) (STV 1.0 0.9091)) +(: cnet_isa_c714d23263 (IsA ling water_chestnut) (STV 1.0 0.9091)) +(: cnet_isa_5618cebfb9 (IsA lingam symbol) (STV 1.0 0.9091)) +(: cnet_isa_7413d140c4 (IsA lingcod scorpaenoid) (STV 1.0 0.9091)) +(: cnet_isa_73f4b255a6 (IsA lingcod saltwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_f4ba1b7d84 (IsA lingerie underwear) (STV 1.0 0.9091)) +(: cnet_isa_32e679f16d (IsA lingonberry berry) (STV 1.0 0.9091)) +(: cnet_isa_3b890b35e7 (IsA lingua_franca language) (STV 1.0 0.9091)) +(: cnet_isa_bc0a365ad9 (IsA lingual consonant) (STV 1.0 0.9091)) +(: cnet_isa_0d7ffd4cc4 (IsA lingual_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_015a4d555c (IsA lingual_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_edfc3ac945 (IsA lingualumina artificial_language) (STV 1.0 0.9091)) +(: cnet_isa_d2bd2e0224 (IsA linguica pork_sausage) (STV 1.0 0.9091)) +(: cnet_isa_fe6a45bfd0 (IsA linguine pasta) (STV 1.0 0.9091)) +(: cnet_isa_b2c7c6a267 (IsA linguist person) (STV 1.0 0.9091)) +(: cnet_isa_7f766446a4 (IsA linguist scientist) (STV 1.0 0.9091)) +(: cnet_isa_e51703761d (IsA linguistic_competence competence) (STV 1.0 0.9091)) +(: cnet_isa_9404ecf7f0 (IsA linguistic_performance performance) (STV 1.0 0.9091)) +(: cnet_isa_e3cc4405d7 (IsA linguistic_process higher_cognitive_process) (STV 1.0 0.9091)) +(: cnet_isa_9e14cd2116 (IsA linguistic_process human_process) (STV 1.0 0.9091)) +(: cnet_isa_cc993a31a6 (IsA linguistic_profiling identification) (STV 1.0 0.9091)) +(: cnet_isa_7993fa3978 (IsA linguistic_relation relation) (STV 1.0 0.9091)) +(: cnet_isa_235b869a01 (IsA linguistic_universal rule) (STV 1.0 0.9091)) +(: cnet_isa_7281997713 (IsA linguistic humanistic_discipline) (STV 1.0 0.9091)) +(: cnet_isa_3fb158bc6a (IsA linguistic science) (STV 1.0 0.9091)) +(: cnet_isa_793b687932 (IsA linguistic_department academic_department) (STV 1.0 0.9091)) +(: cnet_isa_f1a765149b (IsA lingvo_kosmopolita artificial_language) (STV 1.0 0.9091)) +(: cnet_isa_09bc1a0689 (IsA liniment lotion) (STV 1.0 0.9091)) +(: cnet_isa_5db5b48715 (IsA linin body_substance) (STV 1.0 0.9091)) +(: cnet_isa_c6e9e5c169 (IsA lining application) (STV 1.0 0.9091)) +(: cnet_isa_c867056469 (IsA lining insulation) (STV 1.0 0.9091)) +(: cnet_isa_1668063a03 (IsA lining protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_a5da9df860 (IsA link circuit) (STV 1.0 0.9091)) +(: cnet_isa_5f87900efd (IsA link fastener) (STV 1.0 0.9091)) +(: cnet_isa_325bff46ba (IsA link linkage) (STV 1.0 0.9091)) +(: cnet_isa_5f15d152b0 (IsA link instruction) (STV 1.0 0.9091)) +(: cnet_isa_648a8ed309 (IsA link linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_98e5ac3cb7 (IsA linkage fastening) (STV 1.0 0.9091)) +(: cnet_isa_7fef47d750 (IsA linkage mechanical_system) (STV 1.0 0.9091)) +(: cnet_isa_26eeda3169 (IsA linkage inheritance) (STV 1.0 0.9091)) +(: cnet_isa_88793db177 (IsA linkage connection) (STV 1.0 0.9091)) +(: cnet_isa_f9306d6c8d (IsA linkage_editor editor_program) (STV 1.0 0.9091)) +(: cnet_isa_295ac427a1 (IsA linkage_group gene) (STV 1.0 0.9091)) +(: cnet_isa_576d4592d6 (IsA linkboy attendant) (STV 1.0 0.9091)) +(: cnet_isa_cd7a7ed759 (IsA linnaea asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8956993287 (IsA linnet finch) (STV 1.0 0.9091)) +(: cnet_isa_e04c12bcf8 (IsA linocut design) (STV 1.0 0.9091)) +(: cnet_isa_acada0b550 (IsA linocut print) (STV 1.0 0.9091)) +(: cnet_isa_6d71865ba0 (IsA linoleic_acid polyunsaturated_fatty_acid) (STV 1.0 0.9091)) +(: cnet_isa_68bfeb8649 (IsA linolenic_acid omega_6_fatty_acid) (STV 1.0 0.9091)) +(: cnet_isa_5e91d40825 (IsA linoleum covering_material) (STV 1.0 0.9091)) +(: cnet_isa_fbc07e0288 (IsA linoleum_knife knife) (STV 1.0 0.9091)) +(: cnet_isa_f880769fdd (IsA linseed oilseed) (STV 1.0 0.9091)) +(: cnet_isa_53132ebf92 (IsA linseed_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_fe1f4c1dc8 (IsA linsey_woolsey fabric) (STV 1.0 0.9091)) +(: cnet_isa_9d3339110b (IsA linstock stick) (STV 1.0 0.9091)) +(: cnet_isa_d23104517e (IsA lint fabric) (STV 1.0 0.9091)) +(: cnet_isa_8042d94300 (IsA lint fiber) (STV 1.0 0.9091)) +(: cnet_isa_96a357e0e4 (IsA linum plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_ae17deea60 (IsA linuron herbicide) (STV 1.0 0.9091)) +(: cnet_isa_7905e295d9 (IsA linux open_source_operating_system) (STV 1.0 0.9454)) +(: cnet_isa_240db6b9be (IsA linux operating_system) (STV 1.0 0.9844)) +(: cnet_isa_58815bcd91 (IsA linux_journal magazine) (STV 1.0 0.9339)) +(: cnet_isa_555c4fe742 (IsA liomy mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_df3e8c82b8 (IsA lion_s_ear herb) (STV 1.0 0.9091)) +(: cnet_isa_b6d2dc750a (IsA lion_s_foot herb) (STV 1.0 0.9091)) +(: cnet_isa_26f34213bd (IsA lion animal) (STV 1.0 0.9730)) +(: cnet_isa_69abe6be6c (IsA lion carnivore) (STV 1.0 0.9707)) +(: cnet_isa_c34dbd2909 (IsA lion big_cat) (STV 1.0 0.9091)) +(: cnet_isa_1efa23e902 (IsA lion person) (STV 1.0 0.9091)) +(: cnet_isa_5539b406ca (IsA lion celebrity) (STV 1.0 0.9091)) +(: cnet_isa_eceda827b0 (IsA lion_cub cub) (STV 1.0 0.9091)) +(: cnet_isa_cdd237bbab (IsA lion_cub lion) (STV 1.0 0.9091)) +(: cnet_isa_9cc2ce81aa (IsA lion_hunter hunter) (STV 1.0 0.9091)) +(: cnet_isa_b7b286b4fe (IsA lion_hunter social_climber) (STV 1.0 0.9091)) +(: cnet_isa_bada650a10 (IsA lion_jaw_forcep forcep) (STV 1.0 0.9091)) +(: cnet_isa_fe0ad117ad (IsA lioness lion) (STV 1.0 0.9091)) +(: cnet_isa_cd1ebd101e (IsA lionet lion) (STV 1.0 0.9091)) +(: cnet_isa_a22b11d7e5 (IsA lionfish scorpaenid) (STV 1.0 0.9091)) +(: cnet_isa_07b17ddd17 (IsA lion wild_animal) (STV 1.0 0.9091)) +(: cnet_isa_347d7fbf60 (IsA lion_club service_club) (STV 1.0 0.9091)) +(: cnet_isa_afb6296ce2 (IsA liopelma_hamiltoni frog) (STV 1.0 0.9091)) +(: cnet_isa_9df2c17389 (IsA lip margin) (STV 1.0 0.9091)) +(: cnet_isa_0db3b90c57 (IsA lip articulator) (STV 1.0 0.9091)) +(: cnet_isa_d00eeae681 (IsA lip external_body_part) (STV 1.0 0.9091)) +(: cnet_isa_56b61f07c8 (IsA lip plant_part) (STV 1.0 0.9091)) +(: cnet_isa_d736777377 (IsA lip_balm ointment) (STV 1.0 0.9091)) +(: cnet_isa_27af8d5749 (IsA lip_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_3eeeec7aa3 (IsA lip_gloss makeup) (STV 1.0 0.9091)) +(: cnet_isa_891965ecd6 (IsA lip_reader deaf_person) (STV 1.0 0.9091)) +(: cnet_isa_3406f9a23c (IsA lip_synchronization recording) (STV 1.0 0.9091)) +(: cnet_isa_e7e841258d (IsA liparididae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_d4492e6e9d (IsA liparis fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_d5e5ef6cda (IsA liparis orchid) (STV 1.0 0.9091)) +(: cnet_isa_5d36373e74 (IsA lipase enzyme) (STV 1.0 0.9091)) +(: cnet_isa_0a65e66591 (IsA lipectomy plastic_surgery) (STV 1.0 0.9091)) +(: cnet_isa_27b1527ecc (IsA lipemia symptom) (STV 1.0 0.9091)) +(: cnet_isa_4adcca4f5e (IsA lipid macromolecule) (STV 1.0 0.9091)) +(: cnet_isa_cb4da5bfff (IsA lipid_lowering_medicine medicine) (STV 1.0 0.9091)) +(: cnet_isa_fd18d8049d (IsA lipidosis metabolic_disorder) (STV 1.0 0.9091)) +(: cnet_isa_f80716d540 (IsA lipogram text) (STV 1.0 0.9091)) +(: cnet_isa_b7089b3d4b (IsA lipoma tumor) (STV 1.0 0.9091)) +(: cnet_isa_0411c14266 (IsA lipomatosis pathology) (STV 1.0 0.9091)) +(: cnet_isa_268f17c133 (IsA lipoprotein conjugated_protein) (STV 1.0 0.9091)) +(: cnet_isa_7f2489d20e (IsA liposarcoma sarcoma) (STV 1.0 0.9091)) +(: cnet_isa_1911d5ecc8 (IsA liposcelis arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_3cc5460959 (IsA liposomal_delivery_vector transducing_vector) (STV 1.0 0.9091)) +(: cnet_isa_ef755ebeb8 (IsA liposome vesicle) (STV 1.0 0.9091)) +(: cnet_isa_eaeaaee364 (IsA lipotyphla animal_order) (STV 1.0 0.9091)) +(: cnet_isa_1f767af632 (IsA lippizan saddle_horse) (STV 1.0 0.9091)) +(: cnet_isa_78c22d1039 (IsA lipreading sensing) (STV 1.0 0.9091)) +(: cnet_isa_74d98efc76 (IsA lip important_part_of_mouth) (STV 1.0 0.9091)) +(: cnet_isa_4e45ef357d (IsA lipstick makeup) (STV 1.0 0.9091)) +(: cnet_isa_1071155d90 (IsA lipstick_plant aeschynanthus) (STV 1.0 0.9091)) +(: cnet_isa_5ea86effc0 (IsA liquefaction phase_change) (STV 1.0 0.9091)) +(: cnet_isa_5ebf732eee (IsA liquefied_petroleum_gas gas) (STV 1.0 0.9091)) +(: cnet_isa_402b11c2a8 (IsA liquefied_petroleum_gas hydrocarbon) (STV 1.0 0.9091)) +(: cnet_isa_e985334837 (IsA liqueur alcohol) (STV 1.0 0.9091)) +(: cnet_isa_81f54bf215 (IsA liqueur_glass glass) (STV 1.0 0.9091)) +(: cnet_isa_46b24e8d22 (IsA liquid state_of_matter) (STV 1.0 0.9091)) +(: cnet_isa_36a2d59888 (IsA liquid substance) (STV 1.0 0.9091)) +(: cnet_isa_ffed7b0e2e (IsA liquid consonant) (STV 1.0 0.9091)) +(: cnet_isa_f923a4a110 (IsA liquid fluid) (STV 1.0 0.9091)) +(: cnet_isa_f63beefcf9 (IsA liquid_air air) (STV 1.0 0.9091)) +(: cnet_isa_bbe50eb173 (IsA liquid_air cryogen) (STV 1.0 0.9091)) +(: cnet_isa_a96ac99329 (IsA liquid_asset asset) (STV 1.0 0.9091)) +(: cnet_isa_e64eac964e (IsA liquid_bleach solution) (STV 1.0 0.9091)) +(: cnet_isa_e24bac872b (IsA liquid_body_substance body_substance) (STV 1.0 0.9091)) +(: cnet_isa_096712ac38 (IsA liquid_crystal liquid) (STV 1.0 0.9091)) +(: cnet_isa_94a43b3d5c (IsA liquid_crystal_display digital_display) (STV 1.0 0.9091)) +(: cnet_isa_0fe33d6448 (IsA liquid_detergent detergent) (STV 1.0 0.9091)) +(: cnet_isa_d245ab8231 (IsA liquid_diet diet) (STV 1.0 0.9091)) +(: cnet_isa_db6bd8b16f (IsA liquid_metal_reactor nuclear_reactor) (STV 1.0 0.9091)) +(: cnet_isa_9382cf4b12 (IsA liquid_nitrogen cryogen) (STV 1.0 0.9091)) +(: cnet_isa_265fa1473b (IsA liquid_nitrogen nitrogen) (STV 1.0 0.9091)) +(: cnet_isa_c2aa814b67 (IsA liquid_oxygen oxygen) (STV 1.0 0.9091)) +(: cnet_isa_89001fa481 (IsA liquid_soap soap) (STV 1.0 0.9091)) +(: cnet_isa_90e73807f7 (IsA liquid_unit volume_unit) (STV 1.0 0.9091)) +(: cnet_isa_74f9d2446c (IsA liquidambar gum_tree) (STV 1.0 0.9091)) +(: cnet_isa_9769d42760 (IsA liquidation termination) (STV 1.0 0.9091)) +(: cnet_isa_dfa4ebb370 (IsA liquidator fiduciary) (STV 1.0 0.9091)) +(: cnet_isa_a786e86c79 (IsA liquidity exchangeability) (STV 1.0 0.9091)) +(: cnet_isa_a33b59852d (IsA liquor alcohol) (STV 1.0 0.9091)) +(: cnet_isa_520470ca25 (IsA liquor broth) (STV 1.0 0.9091)) +(: cnet_isa_77435a23f1 (IsA liquor liquid) (STV 1.0 0.9091)) +(: cnet_isa_141d580cf8 (IsA liquor_license license) (STV 1.0 0.9091)) +(: cnet_isa_a5896d7b84 (IsA lira italian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_d3342bd0bc (IsA lira maltese_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_1ddd65ff36 (IsA lira turkish_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_73e8afbfda (IsA liriodendron magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c9cd7db466 (IsA liriope liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0c53b3461f (IsA lis_penden legal_action) (STV 1.0 0.9091)) +(: cnet_isa_66258b2188 (IsA lisa girl_name) (STV 1.0 0.9091)) +(: cnet_isa_caf7ae28de (IsA lisle cotton) (STV 1.0 0.9091)) +(: cnet_isa_47e5b2f907 (IsA lisle fabric) (STV 1.0 0.9091)) +(: cnet_isa_58f20644a6 (IsA lisp functional_programming_language) (STV 1.0 0.9339)) +(: cnet_isa_af8d066ad5 (IsA lisp programming_language) (STV 1.0 0.9636)) +(: cnet_isa_cda047b45a (IsA lisp speech_disorder) (STV 1.0 0.9091)) +(: cnet_isa_4cfcdbdb56 (IsA lisp_compiler compiler) (STV 1.0 0.9091)) +(: cnet_isa_f5ea46035c (IsA lisp_program program) (STV 1.0 0.9091)) +(: cnet_isa_4944571858 (IsA lisper speaker) (STV 1.0 0.9091)) +(: cnet_isa_e264fb8922 (IsA lissomeness gracefulness) (STV 1.0 0.9091)) +(: cnet_isa_5de087a141 (IsA list database) (STV 1.0 0.9091)) +(: cnet_isa_f82fba2b5e (IsA list list) (STV 1.0 0.9091)) +(: cnet_isa_d6f6524588 (IsA list_price asking_price) (STV 1.0 0.9091)) +(: cnet_isa_92190780e6 (IsA list_processing data_processing) (STV 1.0 0.9091)) +(: cnet_isa_1d0dfb260c (IsA list_system voting_system) (STV 1.0 0.9091)) +(: cnet_isa_fa6cf50cd8 (IsA listed_security security) (STV 1.0 0.9091)) +(: cnet_isa_e700c8344c (IsA listening activity) (STV 1.0 0.9339)) +(: cnet_isa_58713a0ca0 (IsA listening sensing) (STV 1.0 0.9091)) +(: cnet_isa_459e9e97ef (IsA listening_watch watch) (STV 1.0 0.9091)) +(: cnet_isa_5549089cf8 (IsA lister moldboard_plow) (STV 1.0 0.9091)) +(: cnet_isa_1d6742d3ad (IsA lister tax_assessor) (STV 1.0 0.9091)) +(: cnet_isa_9beaab0856 (IsA listera monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3dfed4002e (IsA listeria eubacteria) (STV 1.0 0.9091)) +(: cnet_isa_1cc28afcb5 (IsA listeria_monocytogene listeria) (STV 1.0 0.9091)) +(: cnet_isa_b5d90055fb (IsA listeriosis infectious_disease) (STV 1.0 0.9091)) +(: cnet_isa_5ee02be831 (IsA listing organization) (STV 1.0 0.9091)) +(: cnet_isa_8423db7108 (IsA listlessness passivity) (STV 1.0 0.9091)) +(: cnet_isa_b93eab5404 (IsA lisu loloish) (STV 1.0 0.9091)) +(: cnet_isa_88efd7f097 (IsA litany address) (STV 1.0 0.9091)) +(: cnet_isa_462b3b34cf (IsA lita lithuanian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_81cd6904cb (IsA litchi edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_d3bd8b5813 (IsA litchi fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_2cf5174c4e (IsA liter metric_measurement) (STV 1.0 0.9339)) +(: cnet_isa_4fd9923260 (IsA liter metric_capacity_unit) (STV 1.0 0.9091)) +(: cnet_isa_06e49774ba (IsA literacy skill) (STV 1.0 0.9091)) +(: cnet_isa_44e8c8db16 (IsA literal_interpretation interpretation) (STV 1.0 0.9091)) +(: cnet_isa_95caddd03c (IsA literalism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_e729173c2b (IsA literalism inclination) (STV 1.0 0.9091)) +(: cnet_isa_1bab82f0c6 (IsA literalness concreteness) (STV 1.0 0.9091)) +(: cnet_isa_14ec4c3187 (IsA literary_agent agent) (STV 1.0 0.9091)) +(: cnet_isa_0a5b8cf036 (IsA literary_composition writing) (STV 1.0 0.9091)) +(: cnet_isa_2d7fee834f (IsA literary_critic critic) (STV 1.0 0.9091)) +(: cnet_isa_aa4a915706 (IsA literary_criticism literary_study) (STV 1.0 0.9091)) +(: cnet_isa_01e992e0f7 (IsA literary_review review) (STV 1.0 0.9091)) +(: cnet_isa_6681a04202 (IsA literary_study humanistic_discipline) (STV 1.0 0.9091)) +(: cnet_isa_989b7848d6 (IsA literate person) (STV 1.0 0.9091)) +(: cnet_isa_bf57a5b90a (IsA literati intelligentsia) (STV 1.0 0.9091)) +(: cnet_isa_369c8d2be0 (IsA literature written_text) (STV 1.0 0.9091)) +(: cnet_isa_e756345e5f (IsA literature writing) (STV 1.0 0.9091)) +(: cnet_isa_837b79e931 (IsA literature literary_study) (STV 1.0 0.9091)) +(: cnet_isa_01ba9d887b (IsA literature profession) (STV 1.0 0.9091)) +(: cnet_isa_2c869c0e54 (IsA lithia_water mineral_water) (STV 1.0 0.9091)) +(: cnet_isa_e742c79529 (IsA lithiasis pathology) (STV 1.0 0.9091)) +(: cnet_isa_619d0e5087 (IsA lithium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_759c1d514a (IsA lithium_carbonate carbonate) (STV 1.0 0.9091)) +(: cnet_isa_5c6b0597f1 (IsA lithium_carbonate major_tranquilizer) (STV 1.0 0.9091)) +(: cnet_isa_169c5f6173 (IsA lithocarpus hamamelid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3ae11ac277 (IsA lithodidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_c433f7db35 (IsA lithograph duplicator) (STV 1.0 0.9091)) +(: cnet_isa_63dcbd701d (IsA lithograph print) (STV 1.0 0.9091)) +(: cnet_isa_d90edfd684 (IsA lithographer printmaker) (STV 1.0 0.9091)) +(: cnet_isa_eb342554b2 (IsA lithography printmaking) (STV 1.0 0.9091)) +(: cnet_isa_3abb1f4398 (IsA lithography planographic_printing) (STV 1.0 0.9091)) +(: cnet_isa_f4f75201c8 (IsA lithomancer diviner) (STV 1.0 0.9091)) +(: cnet_isa_5cf3743519 (IsA lithomancy divination) (STV 1.0 0.9091)) +(: cnet_isa_8b778b3bfe (IsA lithophragma rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b1ded2a44b (IsA lithophyte rock_plant) (STV 1.0 0.9091)) +(: cnet_isa_a8551b8f12 (IsA lithop succulent) (STV 1.0 0.9091)) +(: cnet_isa_31326bc72b (IsA lithospermum plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_02267fc0a8 (IsA lithosphere layer) (STV 1.0 0.9091)) +(: cnet_isa_d149b4afba (IsA lithotomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_babca8a032 (IsA lithotomy_position position) (STV 1.0 0.9091)) +(: cnet_isa_f952abd199 (IsA lithuanian baltic) (STV 1.0 0.9091)) +(: cnet_isa_c599a06926 (IsA lithuanian european) (STV 1.0 0.9091)) +(: cnet_isa_7c07b883e0 (IsA lithuanian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_0f840eef41 (IsA lithuresis micturition) (STV 1.0 0.9091)) +(: cnet_isa_e681aeddb2 (IsA litigant party) (STV 1.0 0.9091)) +(: cnet_isa_8c1b8db4fe (IsA litigation proceeding) (STV 1.0 0.9091)) +(: cnet_isa_750018236c (IsA litigiousness contentiousness) (STV 1.0 0.9091)) +(: cnet_isa_39cbf95b97 (IsA litmus acid_base_indicator) (STV 1.0 0.9091)) +(: cnet_isa_75b6705478 (IsA litmus_paper paper) (STV 1.0 0.9091)) +(: cnet_isa_c24d2eb3a1 (IsA litmus_test examination) (STV 1.0 0.9091)) +(: cnet_isa_4dafb68202 (IsA litocranius mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_fd1e0317fe (IsA litote rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_7103fd1cbe (IsA litote understatement) (STV 1.0 0.9091)) +(: cnet_isa_4835398b9c (IsA litter conveyance) (STV 1.0 0.9091)) +(: cnet_isa_096f23afeb (IsA litter animal_group) (STV 1.0 0.9091)) +(: cnet_isa_77807aa162 (IsA litter rubbish) (STV 1.0 0.9091)) +(: cnet_isa_9d9f6eeb7a (IsA litterbin bin) (STV 1.0 0.9091)) +(: cnet_isa_30fb5f0c8c (IsA litterer slob) (STV 1.0 0.9091)) +(: cnet_isa_cd73b44366 (IsA little small_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_f7430ccd1a (IsA little_auk auk) (STV 1.0 0.9091)) +(: cnet_isa_155f8121af (IsA little_barley barley) (STV 1.0 0.9091)) +(: cnet_isa_d1c89da689 (IsA little_black_ant ant) (STV 1.0 0.9091)) +(: cnet_isa_1eb54065ce (IsA little_blue_heron heron) (STV 1.0 0.9091)) +(: cnet_isa_9b80e4f0f5 (IsA little_brother brother) (STV 1.0 0.9091)) +(: cnet_isa_1b696bb155 (IsA little_brown_bat vespertilian_bat) (STV 1.0 0.9091)) +(: cnet_isa_75594bf09d (IsA little_chief_hare pika) (STV 1.0 0.9091)) +(: cnet_isa_d5ea4dd68e (IsA little_egret egret) (STV 1.0 0.9091)) +(: cnet_isa_59acef6386 (IsA little_gem_arborvitae plant) (STV 1.0 0.9091)) +(: cnet_isa_7d6de06288 (IsA little_golden_zinnia zinnia) (STV 1.0 0.9091)) +(: cnet_isa_1e6e64b06a (IsA little_head_snakeweed matchweed) (STV 1.0 0.9091)) +(: cnet_isa_48690c8064 (IsA little_league baseball_league) (STV 1.0 0.9091)) +(: cnet_isa_af5138be3d (IsA little_league_team team) (STV 1.0 0.9091)) +(: cnet_isa_6de2eef5b5 (IsA little_leaguer ballplayer) (STV 1.0 0.9091)) +(: cnet_isa_fcf645ea3f (IsA little_lord_fauntleroy male_child) (STV 1.0 0.9091)) +(: cnet_isa_85650185f2 (IsA little_office office) (STV 1.0 0.9091)) +(: cnet_isa_b2f36eaa54 (IsA little_owl owl) (STV 1.0 0.9091)) +(: cnet_isa_6a29832dd4 (IsA little_potato rhizoctinia_disease) (STV 1.0 0.9091)) +(: cnet_isa_51d536fe94 (IsA little_sister sister) (STV 1.0 0.9091)) +(: cnet_isa_37a20316f1 (IsA little_skate skate) (STV 1.0 0.9091)) +(: cnet_isa_c714d482af (IsA little_slam slam) (STV 1.0 0.9091)) +(: cnet_isa_7e3cb04c7f (IsA little_theater theater) (STV 1.0 0.9091)) +(: cnet_isa_38bdf10610 (IsA little_toe minimus) (STV 1.0 0.9091)) +(: cnet_isa_9d0cdd1cb0 (IsA little_toe toe) (STV 1.0 0.9091)) +(: cnet_isa_fc89f65454 (IsA littleneck quahog) (STV 1.0 0.9091)) +(: cnet_isa_786b352c49 (IsA littleneck quahaug) (STV 1.0 0.9091)) +(: cnet_isa_ed6320fcfd (IsA littleness weakness) (STV 1.0 0.9091)) +(: cnet_isa_156859d1ee (IsA littoral seashore) (STV 1.0 0.9091)) +(: cnet_isa_e8f4c87e89 (IsA littorina mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_85274b139d (IsA littorinidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_9a2522906a (IsA liturgic theology) (STV 1.0 0.9091)) +(: cnet_isa_77b8c2e106 (IsA liturgist authority) (STV 1.0 0.9091)) +(: cnet_isa_c3d8c5d3bb (IsA liturgy rite) (STV 1.0 0.9091)) +(: cnet_isa_79acd92107 (IsA live_axle axle) (STV 1.0 0.9091)) +(: cnet_isa_15e4ed1471 (IsA live_birth birth) (STV 1.0 0.9091)) +(: cnet_isa_9214f47de9 (IsA live_body body) (STV 1.0 0.9091)) +(: cnet_isa_17b2482acd (IsA live_load load) (STV 1.0 0.9091)) +(: cnet_isa_1f7374c766 (IsA live_oak oak) (STV 1.0 0.9091)) +(: cnet_isa_88b2120f76 (IsA live_steam steam) (STV 1.0 0.9091)) +(: cnet_isa_6553523dec (IsA liveborn_infant neonate) (STV 1.0 0.9091)) +(: cnet_isa_02a884f58d (IsA livedo skin_disease) (STV 1.0 0.9091)) +(: cnet_isa_f6cb514a8c (IsA liveliness activity) (STV 1.0 0.9091)) +(: cnet_isa_eb6b0c8b90 (IsA liveliness animation) (STV 1.0 0.9091)) +(: cnet_isa_f2ab13c707 (IsA liver organ_in_body) (STV 1.0 0.9091)) +(: cnet_isa_f3b20344d5 (IsA liver internal_organ) (STV 1.0 0.9091)) +(: cnet_isa_f8356bbd62 (IsA liver variety_meat) (STV 1.0 0.9091)) +(: cnet_isa_31296867c9 (IsA liver inhabitant) (STV 1.0 0.9091)) +(: cnet_isa_91dddc65d7 (IsA liver person) (STV 1.0 0.9091)) +(: cnet_isa_fa9a1de277 (IsA liver_cancer carcinoma) (STV 1.0 0.9091)) +(: cnet_isa_4c297ff408 (IsA liver_cancer liver_disease) (STV 1.0 0.9091)) +(: cnet_isa_0311276c16 (IsA liver_chestnut horse) (STV 1.0 0.9091)) +(: cnet_isa_0920a8cd7d (IsA liver_disease disease) (STV 1.0 0.9091)) +(: cnet_isa_fb0a767d02 (IsA liver_fluke fluke) (STV 1.0 0.9091)) +(: cnet_isa_37d721a409 (IsA liver_pudding sausage) (STV 1.0 0.9091)) +(: cnet_isa_8fffd8b017 (IsA liver_spot macule) (STV 1.0 0.9091)) +(: cnet_isa_00d2895199 (IsA liver_spotted_dalmatian dalmatian) (STV 1.0 0.9091)) +(: cnet_isa_27c3a360eb (IsA liverwort bryophyte) (STV 1.0 0.9091)) +(: cnet_isa_68b016ccbc (IsA livery care) (STV 1.0 0.9091)) +(: cnet_isa_c2da389bcb (IsA livery uniform) (STV 1.0 0.9091)) +(: cnet_isa_e34d773661 (IsA livery_company company) (STV 1.0 0.9091)) +(: cnet_isa_b540b8a8ff (IsA livery_stable stall) (STV 1.0 0.9091)) +(: cnet_isa_b93adf9bbf (IsA liveryman employee) (STV 1.0 0.9091)) +(: cnet_isa_5af2e88bb5 (IsA livestock placental) (STV 1.0 0.9091)) +(: cnet_isa_93f12314d5 (IsA lividity fury) (STV 1.0 0.9091)) +(: cnet_isa_0102380c6e (IsA lividness complexion) (STV 1.0 0.9091)) +(: cnet_isa_2d62f47bab (IsA living people) (STV 1.0 0.9091)) +(: cnet_isa_9e88145416 (IsA living_arrangement arrangement) (STV 1.0 0.9091)) +(: cnet_isa_27991a5ec9 (IsA living_death misery) (STV 1.0 0.9091)) +(: cnet_isa_a7a43ebcc0 (IsA living_granite succulent) (STV 1.0 0.9091)) +(: cnet_isa_236eea780f (IsA living_quarter housing) (STV 1.0 0.9091)) +(: cnet_isa_4e8ebaeee1 (IsA living_rock cactus) (STV 1.0 0.9091)) +(: cnet_isa_58f31ff7b1 (IsA living_room place) (STV 1.0 0.9339)) +(: cnet_isa_f214a80c66 (IsA living_room space_in_house) (STV 1.0 0.9091)) +(: cnet_isa_4d1f591374 (IsA living_room room) (STV 1.0 0.9091)) +(: cnet_isa_bac025f57d (IsA living_space room) (STV 1.0 0.9091)) +(: cnet_isa_adcd956461 (IsA living_thing whole) (STV 1.0 0.9091)) +(: cnet_isa_ed8f3791cb (IsA living_trust trust) (STV 1.0 0.9091)) +(: cnet_isa_680a7e8a73 (IsA living_wage wage) (STV 1.0 0.9091)) +(: cnet_isa_3d9d93cdac (IsA living_will legal_document) (STV 1.0 0.9091)) +(: cnet_isa_fd1af403e9 (IsA livingroom place_to_relax) (STV 1.0 0.9091)) +(: cnet_isa_fa5d0c8fd6 (IsA livingroom_suite suite) (STV 1.0 0.9091)) +(: cnet_isa_57dd71a023 (IsA livingstone_daisy succulent) (STV 1.0 0.9091)) +(: cnet_isa_287fe3e482 (IsA livistona plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_25d9fe7c80 (IsA livonian baltic_finnic) (STV 1.0 0.9091)) +(: cnet_isa_c0503d6d8b (IsA livonian latvian) (STV 1.0 0.9091)) +(: cnet_isa_7a8ce3a712 (IsA liza mullet) (STV 1.0 0.9091)) +(: cnet_isa_af53d61258 (IsA lizard_s_tail marsh_plant) (STV 1.0 0.9091)) +(: cnet_isa_59d7324ce9 (IsA lizard saurian) (STV 1.0 0.9091)) +(: cnet_isa_1bd4704087 (IsA lizard_orchid orchid) (STV 1.0 0.9091)) +(: cnet_isa_d4bb3cb640 (IsA lizardfish soft_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_4dd301b761 (IsA llama even_toed_ungulate) (STV 1.0 0.9091)) +(: cnet_isa_7a764f29e1 (IsA llano plain) (STV 1.0 0.9091)) +(: cnet_isa_51db574262 (IsA llew_llaw_gyffe celtic_deity) (STV 1.0 0.9091)) +(: cnet_isa_f663e254b6 (IsA loach cypriniform_fish) (STV 1.0 0.9091)) +(: cnet_isa_f00c75e1f4 (IsA load electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_4b075d615e (IsA load weight) (STV 1.0 0.9091)) +(: cnet_isa_21c032e71c (IsA load electrical_power) (STV 1.0 0.9091)) +(: cnet_isa_532b590e0a (IsA load indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_0592b53acd (IsA load_factor ratio) (STV 1.0 0.9091)) +(: cnet_isa_1e86af2b6d (IsA load_line waterline) (STV 1.0 0.9091)) +(: cnet_isa_cce485099b (IsA load_shedding limitation) (STV 1.0 0.9091)) +(: cnet_isa_1bf0a85091 (IsA loader attendant) (STV 1.0 0.9091)) +(: cnet_isa_abb692b371 (IsA loading handling) (STV 1.0 0.9091)) +(: cnet_isa_237cd85e70 (IsA loading ratio) (STV 1.0 0.9091)) +(: cnet_isa_c310f37902 (IsA loading_zone stop) (STV 1.0 0.9091)) +(: cnet_isa_6d51d49565 (IsA loaf food) (STV 1.0 0.9091)) +(: cnet_isa_943b72ebfe (IsA loaf_of_bread bread) (STV 1.0 0.9091)) +(: cnet_isa_bd1f59c8d8 (IsA loam soil) (STV 1.0 0.9091)) +(: cnet_isa_915df780ee (IsA loan debt) (STV 1.0 0.9091)) +(: cnet_isa_c27abee160 (IsA loan_application application) (STV 1.0 0.9091)) +(: cnet_isa_cab31c7a3c (IsA loan_approval authorization) (STV 1.0 0.9091)) +(: cnet_isa_df1f7117a9 (IsA loan_collection art_collection) (STV 1.0 0.9091)) +(: cnet_isa_4d51113076 (IsA loan_office office) (STV 1.0 0.9091)) +(: cnet_isa_1c1d38c595 (IsA loanblend word) (STV 1.0 0.9091)) +(: cnet_isa_366e4dc062 (IsA loaner car) (STV 1.0 0.9091)) +(: cnet_isa_f0703abbbc (IsA loanword word) (STV 1.0 0.9091)) +(: cnet_isa_1e0db7ec9d (IsA loasa herb) (STV 1.0 0.9091)) +(: cnet_isa_f1a5e065d4 (IsA loasaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_9fa5645b0a (IsA loathsomeness offensiveness) (STV 1.0 0.9091)) +(: cnet_isa_cb3af80210 (IsA lob propulsion) (STV 1.0 0.9091)) +(: cnet_isa_fdcee84a3e (IsA lob return) (STV 1.0 0.9091)) +(: cnet_isa_8d5efdaca3 (IsA lobar_pneumonia pneumonia) (STV 1.0 0.9091)) +(: cnet_isa_f9b0d493b9 (IsA lobata animal_order) (STV 1.0 0.9091)) +(: cnet_isa_7c72263a65 (IsA lobate_foot bird_s_foot) (STV 1.0 0.9091)) +(: cnet_isa_9be5c37a03 (IsA lobby people) (STV 1.0 0.9091)) +(: cnet_isa_8897a186e3 (IsA lobbying_expense expense) (STV 1.0 0.9091)) +(: cnet_isa_1b2865aa6d (IsA lobbyism practice) (STV 1.0 0.9091)) +(: cnet_isa_43155d5ff0 (IsA lobbyist persuader) (STV 1.0 0.9091)) +(: cnet_isa_a252256e0b (IsA lobe body_part) (STV 1.0 0.9091)) +(: cnet_isa_5825034762 (IsA lobe projection) (STV 1.0 0.9091)) +(: cnet_isa_ce6fc46996 (IsA lobe plant_part) (STV 1.0 0.9091)) +(: cnet_isa_7ed5397e32 (IsA lobe loop) (STV 1.0 0.9091)) +(: cnet_isa_18b6141d5f (IsA lobe_of_lung lobe) (STV 1.0 0.9091)) +(: cnet_isa_b19e4552db (IsA lobectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_1611dc9532 (IsA lobed_leaf leaf) (STV 1.0 0.9091)) +(: cnet_isa_372d9652e6 (IsA lobed_spleenwort spleenwort) (STV 1.0 0.9091)) +(: cnet_isa_5deb221224 (IsA lobelia herb) (STV 1.0 0.9091)) +(: cnet_isa_bb04e6876e (IsA lobeliaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_1180b50d30 (IsA lobipe bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_38d20a69c0 (IsA loblolly gruel) (STV 1.0 0.9091)) +(: cnet_isa_633acee297 (IsA loblolly_pine pine) (STV 1.0 0.9091)) +(: cnet_isa_75236e638f (IsA lobote fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_0dd4eb5cc5 (IsA lobotidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_e192677561 (IsA lobotomy psychosurgery) (STV 1.0 0.9091)) +(: cnet_isa_97b8fc1d09 (IsA lobscouse stew) (STV 1.0 0.9091)) +(: cnet_isa_4381071c35 (IsA lobster decapod_crustacean) (STV 1.0 0.9091)) +(: cnet_isa_5428654ef8 (IsA lobster shellfish) (STV 1.0 0.9091)) +(: cnet_isa_8cb727cf0e (IsA lobster_butter spread) (STV 1.0 0.9091)) +(: cnet_isa_2ef7de6399 (IsA lobster_newburg seafood_newburg) (STV 1.0 0.9091)) +(: cnet_isa_c3ca4c6621 (IsA lobster_pot trap) (STV 1.0 0.9091)) +(: cnet_isa_5a71bafd3d (IsA lobster_stew stew) (STV 1.0 0.9091)) +(: cnet_isa_7aeec76b41 (IsA lobster_tail lobster) (STV 1.0 0.9091)) +(: cnet_isa_3be13f3eed (IsA lobster_tart tart) (STV 1.0 0.9091)) +(: cnet_isa_f996067674 (IsA lobster_thermidor dish) (STV 1.0 0.9091)) +(: cnet_isa_2510e29545 (IsA lobsterman skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_cadf89d113 (IsA lobularia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b3051b632c (IsA lobularity shape) (STV 1.0 0.9091)) +(: cnet_isa_b8781b26c8 (IsA lobule lobe) (STV 1.0 0.9091)) +(: cnet_isa_b994749166 (IsA local public_transport) (STV 1.0 0.9091)) +(: cnet_isa_979ac95df7 (IsA local_anesthesia anesthesia) (STV 1.0 0.9091)) +(: cnet_isa_2f19f3c88d (IsA local_anesthetic anesthetic) (STV 1.0 0.9091)) +(: cnet_isa_1a320acb3b (IsA local_area_network computer_network) (STV 1.0 0.9091)) +(: cnet_isa_76b43eb1fd (IsA local_authority agency) (STV 1.0 0.9091)) +(: cnet_isa_f25e60d272 (IsA local_call call) (STV 1.0 0.9091)) +(: cnet_isa_de6168162d (IsA local_department government_department) (STV 1.0 0.9091)) +(: cnet_isa_eb6157d8e6 (IsA local_government government) (STV 1.0 0.9091)) +(: cnet_isa_d4f8ff48ba (IsA local_option self_government) (STV 1.0 0.9091)) +(: cnet_isa_8a9e4dbccc (IsA local_oscillator oscillator) (STV 1.0 0.9091)) +(: cnet_isa_6f8b6acfa2 (IsA local_road street) (STV 1.0 0.9091)) +(: cnet_isa_fc79587bd3 (IsA localism non_standard_speech) (STV 1.0 0.9091)) +(: cnet_isa_940a3944a4 (IsA localization determination) (STV 1.0 0.9091)) +(: cnet_isa_e4b43c5a4a (IsA localization_of_function principle) (STV 1.0 0.9091)) +(: cnet_isa_0bde91bb12 (IsA location object) (STV 1.0 0.9091)) +(: cnet_isa_cb5b9f17b4 (IsA location workplace) (STV 1.0 0.9091)) +(: cnet_isa_b9b5a2bf43 (IsA locative_role semantic_role) (STV 1.0 0.9091)) +(: cnet_isa_f84cd62c83 (IsA locator surveyor) (STV 1.0 0.9091)) +(: cnet_isa_77a71b556b (IsA loch inlet) (STV 1.0 0.9091)) +(: cnet_isa_c8412c5fd4 (IsA loch lake) (STV 1.0 0.9091)) +(: cnet_isa_d15331af53 (IsA lochaber_ax battle_ax) (STV 1.0 0.9091)) +(: cnet_isa_c7d5d4157e (IsA lochia liquid_body_substance) (STV 1.0 0.9091)) +(: cnet_isa_cfae15c951 (IsA lock wrestling_hold) (STV 1.0 0.9091)) +(: cnet_isa_095dae554e (IsA lock enclosure) (STV 1.0 0.9091)) +(: cnet_isa_d4b54e7575 (IsA lock fastener) (STV 1.0 0.9091)) +(: cnet_isa_6ddf8aca1f (IsA lock mechanism) (STV 1.0 0.9091)) +(: cnet_isa_74a0b6542e (IsA lock restraint) (STV 1.0 0.9091)) +(: cnet_isa_59dd9f8cc3 (IsA lock hair) (STV 1.0 0.9091)) +(: cnet_isa_0f7ea9be06 (IsA lock_gate gate) (STV 1.0 0.9091)) +(: cnet_isa_675f7a163a (IsA lock_up_option option) (STV 1.0 0.9091)) +(: cnet_isa_97965d3eb5 (IsA lockage passage) (STV 1.0 0.9091)) +(: cnet_isa_13ae0843ee (IsA lockage system) (STV 1.0 0.9091)) +(: cnet_isa_5fa1c3515d (IsA lockage fee) (STV 1.0 0.9091)) +(: cnet_isa_892795aaf9 (IsA lockdown imprisonment) (STV 1.0 0.9091)) +(: cnet_isa_99e90f1a1b (IsA locker fastener) (STV 1.0 0.9091)) +(: cnet_isa_c32fbf87a0 (IsA locker_room room) (STV 1.0 0.9091)) +(: cnet_isa_b654bf0d35 (IsA locket case) (STV 1.0 0.9091)) +(: cnet_isa_1023292b36 (IsA locking protection) (STV 1.0 0.9091)) +(: cnet_isa_6f70e5d231 (IsA locking_plier plier) (STV 1.0 0.9091)) +(: cnet_isa_3974b748ed (IsA lockmaster skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_6732871a1b (IsA locknut nut) (STV 1.0 0.9091)) +(: cnet_isa_a9ecfa930a (IsA lockout resistance) (STV 1.0 0.9091)) +(: cnet_isa_2d9a264525 (IsA lockring washer) (STV 1.0 0.9091)) +(: cnet_isa_9e92200e45 (IsA locksmith smith) (STV 1.0 0.9091)) +(: cnet_isa_e474246c25 (IsA lockstep march) (STV 1.0 0.9091)) +(: cnet_isa_62fd13c755 (IsA lockstep standing_operating_procedure) (STV 1.0 0.9091)) +(: cnet_isa_6e0c8f3aac (IsA lockstitch machine_stitch) (STV 1.0 0.9091)) +(: cnet_isa_13271af529 (IsA lockup jail) (STV 1.0 0.9091)) +(: cnet_isa_15369745bf (IsA loco_disease animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_9f99ad0f25 (IsA locomotion motion) (STV 1.0 0.9091)) +(: cnet_isa_0bc129491a (IsA locomotion mobility) (STV 1.0 0.9091)) +(: cnet_isa_3e3a223fd3 (IsA locomotive self_propelled_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_4921274c63 (IsA locoweed legume) (STV 1.0 0.9091)) +(: cnet_isa_8adb62b3e3 (IsA locule cavity) (STV 1.0 0.9091)) +(: cnet_isa_2c6da7eb50 (IsA locum_tenen stand_in) (STV 1.0 0.9091)) +(: cnet_isa_2e73bcbcaa (IsA locus set) (STV 1.0 0.9091)) +(: cnet_isa_9eabbc47e1 (IsA locus site) (STV 1.0 0.9091)) +(: cnet_isa_5a9d1728a8 (IsA locus_classicus passage) (STV 1.0 0.9091)) +(: cnet_isa_a55c862b33 (IsA locus_of_infection site) (STV 1.0 0.9091)) +(: cnet_isa_b3da8833e4 (IsA locust short_horned_grasshopper) (STV 1.0 0.9091)) +(: cnet_isa_41e25df798 (IsA locust wood) (STV 1.0 0.9091)) +(: cnet_isa_0f6ffca213 (IsA locust_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_a4df0108e9 (IsA locusta arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_232d83794a (IsA loddon_pondweed pondweed) (STV 1.0 0.9091)) +(: cnet_isa_d5feb1e0f1 (IsA lode deposit) (STV 1.0 0.9091)) +(: cnet_isa_8cf60d3e75 (IsA lodestar model) (STV 1.0 0.9091)) +(: cnet_isa_1ee44c504d (IsA lodestar star) (STV 1.0 0.9091)) +(: cnet_isa_b5ae431f96 (IsA lodestone permanent_magnet) (STV 1.0 0.9091)) +(: cnet_isa_214d3d558c (IsA lodge dwelling) (STV 1.0 0.9091)) +(: cnet_isa_6f2b71a4f1 (IsA lodge gatehouse) (STV 1.0 0.9091)) +(: cnet_isa_27e527e9ee (IsA lodge house) (STV 1.0 0.9091)) +(: cnet_isa_d432226375 (IsA lodger tenant) (STV 1.0 0.9091)) +(: cnet_isa_cdf6f92810 (IsA lodging residency) (STV 1.0 0.9091)) +(: cnet_isa_ace812a585 (IsA lodging_house accommodation) (STV 1.0 0.9091)) +(: cnet_isa_911e1e3bc0 (IsA lodging_house house) (STV 1.0 0.9091)) +(: cnet_isa_8032e59399 (IsA lodgment fastness) (STV 1.0 0.9091)) +(: cnet_isa_8a41927105 (IsA lodgment allegation) (STV 1.0 0.9091)) +(: cnet_isa_a5fd206858 (IsA loess soil) (STV 1.0 0.9091)) +(: cnet_isa_644552034b (IsA lofortyx bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_beb5f400f8 (IsA loft floor) (STV 1.0 0.9091)) +(: cnet_isa_6feeb89333 (IsA loft shelter) (STV 1.0 0.9091)) +(: cnet_isa_7b5234e9d7 (IsA loft pitch) (STV 1.0 0.9091)) +(: cnet_isa_17a6aa50b5 (IsA loft_bombing bombing_run) (STV 1.0 0.9091)) +(: cnet_isa_b820fd386b (IsA log measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_d6884709f6 (IsA log written_record) (STV 1.0 0.9091)) +(: cnet_isa_3ad6043729 (IsA log wood) (STV 1.0 0.9091)) +(: cnet_isa_1344dcfad2 (IsA log_cabin cabin) (STV 1.0 0.9091)) +(: cnet_isa_04e2892165 (IsA log_line cord) (STV 1.0 0.9091)) +(: cnet_isa_67497d9553 (IsA loganberry berry) (STV 1.0 0.9091)) +(: cnet_isa_fdf7733017 (IsA loganberry western_blackberry) (STV 1.0 0.9091)) +(: cnet_isa_7cc6dc05d1 (IsA logania dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_aa553e0665 (IsA loganiaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_5b81b8e0c2 (IsA logarithm exponent) (STV 1.0 0.9091)) +(: cnet_isa_2e9615bbe7 (IsA logarithmic_scale scale) (STV 1.0 0.9091)) +(: cnet_isa_37f0e1ed5b (IsA logbook record) (STV 1.0 0.9091)) +(: cnet_isa_45f148cb21 (IsA loge balcony) (STV 1.0 0.9091)) +(: cnet_isa_d6e0b375d3 (IsA loggerhead sea_turtle) (STV 1.0 0.9091)) +(: cnet_isa_215d54a309 (IsA loggerhead_shrike shrike) (STV 1.0 0.9091)) +(: cnet_isa_553239e8ec (IsA loggia arcade) (STV 1.0 0.9091)) +(: cnet_isa_8cd8ebc3db (IsA logging work) (STV 1.0 0.9091)) +(: cnet_isa_54bf6ca958 (IsA logic science) (STV 1.0 0.9091)) +(: cnet_isa_1c4a205e67 (IsA logic system_of_evaluating_argument) (STV 1.0 0.9339)) +(: cnet_isa_875c3c55b9 (IsA logic system_of_reasoning) (STV 1.0 0.9091)) +(: cnet_isa_c5f8b28857 (IsA logic way_of_thinking) (STV 1.0 0.9339)) +(: cnet_isa_2f62338389 (IsA logic common_sense) (STV 1.0 0.9091)) +(: cnet_isa_fc62ce8d92 (IsA logic philosophy) (STV 1.0 0.9091)) +(: cnet_isa_9233b24d76 (IsA logic principle) (STV 1.0 0.9091)) +(: cnet_isa_5131c05bdf (IsA logic system) (STV 1.0 0.9091)) +(: cnet_isa_c69690a1f8 (IsA logic_bomb malevolent_program) (STV 1.0 0.9091)) +(: cnet_isa_e613ec1bca (IsA logic_diagram multidimensional_language) (STV 1.0 0.9091)) +(: cnet_isa_e2e4195584 (IsA logic_element electronic_device) (STV 1.0 0.9091)) +(: cnet_isa_ef479f245a (IsA logic_operation operation) (STV 1.0 0.9091)) +(: cnet_isa_9cca27fe6e (IsA logic_programming programming) (STV 1.0 0.9091)) +(: cnet_isa_fa4a5b6f3a (IsA logical_fallacy fallacy) (STV 1.0 0.9091)) +(: cnet_isa_42070a8c71 (IsA logical_positivist positivist) (STV 1.0 0.9091)) +(: cnet_isa_5f3982193a (IsA logical_proof proof) (STV 1.0 0.9091)) +(: cnet_isa_c5d39b70b7 (IsA logical_relation relation) (STV 1.0 0.9091)) +(: cnet_isa_24eb3f61df (IsA logical_topology topology) (STV 1.0 0.9091)) +(: cnet_isa_4346adffa1 (IsA logicality quality) (STV 1.0 0.9091)) +(: cnet_isa_54bd87213c (IsA logician expert) (STV 1.0 0.9091)) +(: cnet_isa_322e503eb9 (IsA logicism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_058c8a2fdd (IsA loginess fatigue) (STV 1.0 0.9091)) +(: cnet_isa_3e24c4afa6 (IsA logion saying) (STV 1.0 0.9091)) +(: cnet_isa_dd41b23c18 (IsA logistic_assessment judgment) (STV 1.0 0.9091)) +(: cnet_isa_a025d22942 (IsA logistic_support support) (STV 1.0 0.9091)) +(: cnet_isa_6305aefdd6 (IsA logistic provision) (STV 1.0 0.9091)) +(: cnet_isa_fd25be2061 (IsA logjam mass) (STV 1.0 0.9091)) +(: cnet_isa_1cd5265263 (IsA logjam arrest) (STV 1.0 0.9091)) +(: cnet_isa_33006a0dde (IsA logo trademark) (STV 1.0 0.9091)) +(: cnet_isa_2673d9b7f2 (IsA logogram ideogram) (STV 1.0 0.9091)) +(: cnet_isa_8ada8b67d6 (IsA logomach disputant) (STV 1.0 0.9091)) +(: cnet_isa_e6193ba9d6 (IsA logomachy argument) (STV 1.0 0.9091)) +(: cnet_isa_ce9e6da54d (IsA logorrhea mania) (STV 1.0 0.9091)) +(: cnet_isa_ad3082e772 (IsA logrolling exchange) (STV 1.0 0.9091)) +(: cnet_isa_b516a3d081 (IsA logrono spain) (STV 1.0 0.9091)) +(: cnet_isa_784edd2428 (IsA logwood blackwood) (STV 1.0 0.9091)) +(: cnet_isa_e12a8a9c81 (IsA logwood wood) (STV 1.0 0.9091)) +(: cnet_isa_8dcada8072 (IsA loin body_part) (STV 1.0 0.9091)) +(: cnet_isa_f9a741022d (IsA loin cut) (STV 1.0 0.9091)) +(: cnet_isa_a7daee8901 (IsA loin_of_lamb cut_of_lamb) (STV 1.0 0.9091)) +(: cnet_isa_399e006262 (IsA loir dormouse) (STV 1.0 0.9091)) +(: cnet_isa_4d6cebe24d (IsA loiseleuria dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_783e30f051 (IsA loiterer dawdler) (STV 1.0 0.9091)) +(: cnet_isa_795b7b86c8 (IsA loligo squid) (STV 1.0 0.9091)) +(: cnet_isa_dfedaa3a03 (IsA lolita lass) (STV 1.0 0.9091)) +(: cnet_isa_4f5d1707d3 (IsA lolium monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_cd9e7fe6fc (IsA lollipop candy) (STV 1.0 0.9091)) +(: cnet_isa_c0712c1242 (IsA lollipop_lady crossing_guard) (STV 1.0 0.9091)) +(: cnet_isa_3574dff2c2 (IsA lolo loloish) (STV 1.0 0.9091)) +(: cnet_isa_90f91ce078 (IsA lolo_burmese tibeto_burman) (STV 1.0 0.9091)) +(: cnet_isa_18911c8963 (IsA loloish lolo_burmese) (STV 1.0 0.9091)) +(: cnet_isa_f167fbd7ec (IsA lomariopsidaceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_26f93d6a91 (IsA lomatia shrub) (STV 1.0 0.9091)) +(: cnet_isa_004f3185d4 (IsA lombardy_poplar black_poplar) (STV 1.0 0.9091)) +(: cnet_isa_9a28d5dcf2 (IsA loment pod) (STV 1.0 0.9091)) +(: cnet_isa_6420566863 (IsA lomogramma fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_273141f30b (IsA lomustine antineoplastic) (STV 1.0 0.9091)) +(: cnet_isa_8b11c7a3ee (IsA lona asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ad716b55dc (IsA lonchocarpus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_43afe3d07b (IsA london city) (STV 1.0 0.9636)) +(: cnet_isa_e8797e2fe1 (IsA london city_in_england) (STV 1.0 0.9454)) +(: cnet_isa_d18e3ddcb6 (IsA london place_name) (STV 1.0 0.9339)) +(: cnet_isa_26dff2ed46 (IsA london_plane plane_tree) (STV 1.0 0.9091)) +(: cnet_isa_c3cd00dcad (IsA londoner english_person) (STV 1.0 0.9091)) +(: cnet_isa_98fa21171d (IsA loneliness isolation) (STV 1.0 0.9091)) +(: cnet_isa_a72ae72c08 (IsA loner individualist) (STV 1.0 0.9091)) +(: cnet_isa_f6788c50cb (IsA long_beech_fern beech_fern) (STV 1.0 0.9091)) +(: cnet_isa_3a7b0087d4 (IsA long_billed_marsh_wren marsh_wren) (STV 1.0 0.9091)) +(: cnet_isa_01fcbc94ed (IsA long_bone bone) (STV 1.0 0.9091)) +(: cnet_isa_a8fad2ee4d (IsA long_chain_molecule chain) (STV 1.0 0.9091)) +(: cnet_isa_7926e26d70 (IsA long_clawed_prawn prawn) (STV 1.0 0.9091)) +(: cnet_isa_1511b46770 (IsA long_distance call) (STV 1.0 0.9091)) +(: cnet_isa_48efcf44b4 (IsA long_division division) (STV 1.0 0.9091)) +(: cnet_isa_a22f65dd15 (IsA long_eared_bat vespertilian_bat) (STV 1.0 0.9091)) +(: cnet_isa_7e0ecff583 (IsA long_eared_owl owl) (STV 1.0 0.9091)) +(: cnet_isa_91e585b3e7 (IsA long_fly gymnastic_exercise) (STV 1.0 0.9091)) +(: cnet_isa_1ff139f077 (IsA long_haul journey) (STV 1.0 0.9091)) +(: cnet_isa_038dffad9d (IsA long_head_coneflower coneflower) (STV 1.0 0.9091)) +(: cnet_isa_4624008a33 (IsA long_horned_beetle beetle) (STV 1.0 0.9091)) +(: cnet_isa_5fadb7e700 (IsA long_horned_grasshopper grasshopper) (STV 1.0 0.9091)) +(: cnet_isa_d70385c6be (IsA long_hundred large_integer) (STV 1.0 0.9091)) +(: cnet_isa_75133b9934 (IsA long_iron iron) (STV 1.0 0.9091)) +(: cnet_isa_31402e5b0c (IsA long_john underwear) (STV 1.0 0.9091)) +(: cnet_isa_b3e0c290d9 (IsA long_jump field_event) (STV 1.0 0.9091)) +(: cnet_isa_682bc56585 (IsA long_measure linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_a4511c81db (IsA long_pepper true_pepper) (STV 1.0 0.9091)) +(: cnet_isa_580c97a004 (IsA long_run time_period) (STV 1.0 0.9091)) +(: cnet_isa_f3bf389e25 (IsA long_saphenous_vein saphenous_vein) (STV 1.0 0.9091)) +(: cnet_isa_63460f6654 (IsA long_shot gamble) (STV 1.0 0.9091)) +(: cnet_isa_c2c3106ab2 (IsA long_shot contestant) (STV 1.0 0.9091)) +(: cnet_isa_0447d3983f (IsA long_sleeve sleeve) (STV 1.0 0.9091)) +(: cnet_isa_2f63a8dc8d (IsA long_spurred_violet violet) (STV 1.0 0.9091)) +(: cnet_isa_35b54476a2 (IsA long_staple_cotton cotton) (STV 1.0 0.9091)) +(: cnet_isa_839e3d6c06 (IsA long_sufferance endurance) (STV 1.0 0.9091)) +(: cnet_isa_f8f78e098f (IsA long_suit collection) (STV 1.0 0.9091)) +(: cnet_isa_d3f6b5c62d (IsA long_tailed_porcupine old_world_porcupine) (STV 1.0 0.9091)) +(: cnet_isa_bf36806b2e (IsA long_term_memory memory) (STV 1.0 0.9091)) +(: cnet_isa_5abed382d4 (IsA long_time time_period) (STV 1.0 0.9091)) +(: cnet_isa_fd380e774b (IsA long_tom cannon) (STV 1.0 0.9091)) +(: cnet_isa_bb774797b8 (IsA long_ton avoirdupois_unit) (STV 1.0 0.9091)) +(: cnet_isa_0c843332f9 (IsA long_trouser pair_of_trouser) (STV 1.0 0.9091)) +(: cnet_isa_c651553d38 (IsA long_underwear undergarment) (STV 1.0 0.9091)) +(: cnet_isa_56089997bb (IsA long_wave radio_wave) (STV 1.0 0.9091)) +(: cnet_isa_f44f6e3b06 (IsA longan fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_ef514324ad (IsA longanberry edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_a2f48d0712 (IsA longboat boat) (STV 1.0 0.9091)) +(: cnet_isa_87587d658d (IsA longbow bow) (STV 1.0 0.9091)) +(: cnet_isa_7490eb5073 (IsA longbowman archer) (STV 1.0 0.9091)) +(: cnet_isa_e6ed3d5357 (IsA longer person) (STV 1.0 0.9091)) +(: cnet_isa_275b5c3550 (IsA longevity longness) (STV 1.0 0.9091)) +(: cnet_isa_6bec4f88b2 (IsA longevity oldness) (STV 1.0 0.9091)) +(: cnet_isa_47d8f01209 (IsA longfin_mako mako) (STV 1.0 0.9091)) +(: cnet_isa_056fe0293c (IsA longhand handwriting) (STV 1.0 0.9091)) +(: cnet_isa_c88c6e7179 (IsA longheaded_thimbleweed thimbleweed) (STV 1.0 0.9091)) +(: cnet_isa_cc1fbbd4a2 (IsA longhorn beef) (STV 1.0 0.9091)) +(: cnet_isa_ad508845ad (IsA longing desire) (STV 1.0 0.9091)) +(: cnet_isa_db9a64ddc4 (IsA longitude angular_distance) (STV 1.0 0.9091)) +(: cnet_isa_f1ed89d81c (IsA longleaf_pine yellow_pine) (STV 1.0 0.9091)) +(: cnet_isa_d595bd756e (IsA longness duration) (STV 1.0 0.9091)) +(: cnet_isa_abcc9e79c7 (IsA longness length) (STV 1.0 0.9091)) +(: cnet_isa_c6d5236fa2 (IsA longshot picture) (STV 1.0 0.9091)) +(: cnet_isa_99f0bfc75c (IsA longtail_weasel weasel) (STV 1.0 0.9091)) +(: cnet_isa_55b1338ef5 (IsA longueur duration) (STV 1.0 0.9091)) +(: cnet_isa_0162434f56 (IsA longway country_dance) (STV 1.0 0.9091)) +(: cnet_isa_91b26c74dd (IsA longwool domestic_sheep) (STV 1.0 0.9091)) +(: cnet_isa_b9e3cf9691 (IsA lonicera asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_befe695622 (IsA loofa fiber) (STV 1.0 0.9091)) +(: cnet_isa_4409076d80 (IsA loofah luffa) (STV 1.0 0.9091)) +(: cnet_isa_541b53a505 (IsA look sensing) (STV 1.0 0.9091)) +(: cnet_isa_97665e60d3 (IsA look appearance) (STV 1.0 0.9091)) +(: cnet_isa_62750f5832 (IsA lookahead lookaround) (STV 1.0 0.9091)) +(: cnet_isa_d7f559ba20 (IsA lookbehind lookaround) (STV 1.0 0.9091)) +(: cnet_isa_261e651005 (IsA lookdown moonfish) (STV 1.0 0.9091)) +(: cnet_isa_18eca966b7 (IsA looking search) (STV 1.0 0.9091)) +(: cnet_isa_255afb7eef (IsA looking_glass mirror) (STV 1.0 0.9091)) +(: cnet_isa_aadc0080f1 (IsA looking_glass_plant angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_a0fd8faab3 (IsA looking_glass_tree angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_6e36b6f00f (IsA lookout look) (STV 1.0 0.9091)) +(: cnet_isa_d9662ff48a (IsA lookout structure) (STV 1.0 0.9091)) +(: cnet_isa_41f17f71c2 (IsA lookout post) (STV 1.0 0.9091)) +(: cnet_isa_0aa0c7cc37 (IsA lookout watchman) (STV 1.0 0.9091)) +(: cnet_isa_b68b8746ca (IsA loom textile_machine) (STV 1.0 0.9091)) +(: cnet_isa_684fd1922a (IsA loon gaviiform_seabird) (STV 1.0 0.9091)) +(: cnet_isa_ec427e6c22 (IsA loon idler) (STV 1.0 0.9091)) +(: cnet_isa_6624e13ee4 (IsA loop flight_maneuver) (STV 1.0 0.9091)) +(: cnet_isa_1e6edaea10 (IsA loop intrauterine_device) (STV 1.0 0.9091)) +(: cnet_isa_329d018421 (IsA loop fingerprint) (STV 1.0 0.9091)) +(: cnet_isa_e522d7181e (IsA loop program) (STV 1.0 0.9091)) +(: cnet_isa_08cea19fc4 (IsA loop clique) (STV 1.0 0.9091)) +(: cnet_isa_d2f1b3c7eb (IsA loop simple_closed_curve) (STV 1.0 0.9091)) +(: cnet_isa_7ce34a5b90 (IsA loop_gain amplification) (STV 1.0 0.9091)) +(: cnet_isa_5f81e7b366 (IsA loop_knot knot) (STV 1.0 0.9091)) +(: cnet_isa_64abf38f53 (IsA loop_line branch_line) (STV 1.0 0.9091)) +(: cnet_isa_4b2b20936d (IsA loop_topology topology) (STV 1.0 0.9091)) +(: cnet_isa_0ef2870743 (IsA loophole hole) (STV 1.0 0.9091)) +(: cnet_isa_4c32449761 (IsA loophole ambiguity) (STV 1.0 0.9091)) +(: cnet_isa_5054590c08 (IsA looping_ill animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_f03d67060b (IsA loose_cannon person) (STV 1.0 0.9091)) +(: cnet_isa_b851a7395c (IsA loose_end work) (STV 1.0 0.9091)) +(: cnet_isa_5633ec4caa (IsA loose_sentence complex_sentence) (STV 1.0 0.9091)) +(: cnet_isa_d05f4c91cf (IsA loose_smut smut) (STV 1.0 0.9091)) +(: cnet_isa_2471e6f87f (IsA looseness inaccuracy) (STV 1.0 0.9091)) +(: cnet_isa_75fa2e5d6d (IsA looseness movability) (STV 1.0 0.9091)) +(: cnet_isa_064a68552b (IsA looseness unrestraint) (STV 1.0 0.9091)) +(: cnet_isa_4134925a93 (IsA loosening alteration) (STV 1.0 0.9091)) +(: cnet_isa_3bb74ca2eb (IsA loosestrife herb) (STV 1.0 0.9091)) +(: cnet_isa_ddac684911 (IsA loosestrife subshrub) (STV 1.0 0.9091)) +(: cnet_isa_987c8230cb (IsA loot stolen_property) (STV 1.0 0.9091)) +(: cnet_isa_77f968902f (IsA looting plundering) (STV 1.0 0.9091)) +(: cnet_isa_2c1af47111 (IsA lophiidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_b8000875a8 (IsA lophius fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_628956c0e2 (IsA lophodyte bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_a5318e5eb1 (IsA lopholatilus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_eea84ec919 (IsA lophophora caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1bb2eab756 (IsA lophophorus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_2173c42765 (IsA lophosoria fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_62bf9963ee (IsA lophosoriaceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_ce180945fd (IsA lopsidedness asymmetry) (STV 1.0 0.9091)) +(: cnet_isa_62146cffe0 (IsA loquat edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_28852e4bbf (IsA loquat fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_a64062ff43 (IsA loranthaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_1d2642c15e (IsA loranthaceae parasitic_plant) (STV 1.0 0.9091)) +(: cnet_isa_09a752ec2c (IsA loranthus dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9e237a1fc5 (IsA lorchel fungus) (STV 1.0 0.9091)) +(: cnet_isa_b283b9640d (IsA lord_high_chancellor cabinet_minister) (STV 1.0 0.9091)) +(: cnet_isa_d3c44a3222 (IsA lord_of_misrule master_of_ceremony) (STV 1.0 0.9091)) +(: cnet_isa_655fc773ce (IsA lord_privy_seal cabinet_minister) (STV 1.0 0.9091)) +(: cnet_isa_bc1001b543 (IsA lordolatry worship) (STV 1.0 0.9091)) +(: cnet_isa_09ad30ead2 (IsA lordosis spinal_curvature) (STV 1.0 0.9091)) +(: cnet_isa_5d09d44f6a (IsA lordship authority) (STV 1.0 0.9091)) +(: cnet_isa_04f41866e2 (IsA lordship title) (STV 1.0 0.9091)) +(: cnet_isa_bc70eff1af (IsA lore content) (STV 1.0 0.9091)) +(: cnet_isa_3748599737 (IsA lorentz_force force) (STV 1.0 0.9091)) +(: cnet_isa_4ed3149512 (IsA lorenzo_dressing dressing) (STV 1.0 0.9091)) +(: cnet_isa_523fcfa8f4 (IsA lorgnette spectacle) (STV 1.0 0.9091)) +(: cnet_isa_96a212689e (IsA lorica sheath) (STV 1.0 0.9091)) +(: cnet_isa_8d91811633 (IsA loricata animal_order) (STV 1.0 0.9091)) +(: cnet_isa_e4eaf92ffb (IsA loriinae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_cf311551a3 (IsA lorikeet lory) (STV 1.0 0.9091)) +(: cnet_isa_c57402d38c (IsA lorisidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_8de2781063 (IsA lorraine_cross cross) (STV 1.0 0.9091)) +(: cnet_isa_6872b9d40b (IsA lorry truck) (STV 1.0 0.9091)) +(: cnet_isa_f77cf26426 (IsA lorry wagon) (STV 1.0 0.9091)) +(: cnet_isa_5ff8c003e2 (IsA lory parrot) (STV 1.0 0.9091)) +(: cnet_isa_08e53eebc3 (IsA loser contestant) (STV 1.0 0.9091)) +(: cnet_isa_e91cd5f46a (IsA loser gambler) (STV 1.0 0.9091)) +(: cnet_isa_eebb2a7ca5 (IsA losing_streak streak) (STV 1.0 0.9091)) +(: cnet_isa_7c27ee94a4 (IsA losing financial_loss) (STV 1.0 0.9091)) +(: cnet_isa_41f3cc269a (IsA loss failure) (STV 1.0 0.9091)) +(: cnet_isa_048d6ac27e (IsA loss disadvantage) (STV 1.0 0.9091)) +(: cnet_isa_6c444dac8f (IsA loss experience) (STV 1.0 0.9091)) +(: cnet_isa_ae5051a5a9 (IsA loss sum) (STV 1.0 0.9091)) +(: cnet_isa_347a041140 (IsA loss transferred_property) (STV 1.0 0.9091)) +(: cnet_isa_df786dc441 (IsA loss decline) (STV 1.0 0.9091)) +(: cnet_isa_2c286c45fc (IsA loss_of_consciousness change) (STV 1.0 0.9091)) +(: cnet_isa_da98bbd7b6 (IsA loss_ratio ratio) (STV 1.0 0.9091)) +(: cnet_isa_373988a4f3 (IsA lost_and_found depository) (STV 1.0 0.9091)) +(: cnet_isa_2809a3830f (IsA lost_cause campaign) (STV 1.0 0.9091)) +(: cnet_isa_8bf4dabf82 (IsA lost_tribe tribe_of_israel) (STV 1.0 0.9091)) +(: cnet_isa_f636c66dcb (IsA lot tract) (STV 1.0 0.9091)) +(: cnet_isa_f828ab5ed7 (IsA lota fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_b94d8ba615 (IsA lota water_bottle) (STV 1.0 0.9091)) +(: cnet_isa_e1a6449576 (IsA lothario womanizer) (STV 1.0 0.9091)) +(: cnet_isa_eac4fc49d3 (IsA loti lesotho_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_fccb5f43b9 (IsA lotion remedy) (STV 1.0 0.9091)) +(: cnet_isa_3e32dec795 (IsA lotion toiletry) (STV 1.0 0.9091)) +(: cnet_isa_98b4445bf6 (IsA lottery game_of_chance) (STV 1.0 0.9091)) +(: cnet_isa_09fa2d3d69 (IsA lottery accident) (STV 1.0 0.9091)) +(: cnet_isa_491a084d94 (IsA lotto board_game) (STV 1.0 0.9091)) +(: cnet_isa_5a31c8eb72 (IsA lotus flower) (STV 1.0 0.9091)) +(: cnet_isa_887d0e788f (IsA lotus instance_of_company) (STV 1.0 0.9339)) +(: cnet_isa_f526e9f0ec (IsA lotus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_437c8881c5 (IsA lotus water_lily) (STV 1.0 0.9091)) +(: cnet_isa_8a78b40ef5 (IsA lotus_eater daydreamer) (STV 1.0 0.9091)) +(: cnet_isa_8751dfb272 (IsA lotus_position position) (STV 1.0 0.9091)) +(: cnet_isa_4d610587eb (IsA lotus_tree shrub) (STV 1.0 0.9091)) +(: cnet_isa_9b2a8d8995 (IsA lotusland kingdom) (STV 1.0 0.9091)) +(: cnet_isa_fa891834bc (IsA loudmouth troublemaker) (STV 1.0 0.9091)) +(: cnet_isa_b729e4b9e3 (IsA loudspeaker electro_acoustic_transducer) (STV 1.0 0.9091)) +(: cnet_isa_130d867a52 (IsA lough cove) (STV 1.0 0.9091)) +(: cnet_isa_67faedb3c5 (IsA lough lake) (STV 1.0 0.9091)) +(: cnet_isa_af44b37e41 (IsA louis_d_or coin) (STV 1.0 0.9091)) +(: cnet_isa_bd3a8fef6d (IsA louis_harold_gray radiobiologist) (STV 1.0 0.9091)) +(: cnet_isa_aac067adf8 (IsA louise_erdrich_s_first_novel love_medicine) (STV 1.0 0.9091)) +(: cnet_isa_188cd3e5d7 (IsA louisianian american) (STV 1.0 0.9091)) +(: cnet_isa_6f756dbdaa (IsA lounge room) (STV 1.0 0.9091)) +(: cnet_isa_2f2517d9ce (IsA lounge_lizard gigolo) (STV 1.0 0.9091)) +(: cnet_isa_67f57471f8 (IsA lounger loungewear) (STV 1.0 0.9091)) +(: cnet_isa_6ddd1be4b3 (IsA loungewear clothing) (STV 1.0 0.9091)) +(: cnet_isa_cc24d7b1f5 (IsA lounging_jacket loungewear) (STV 1.0 0.9091)) +(: cnet_isa_7a5dee230b (IsA lounging_pajama loungewear) (STV 1.0 0.9091)) +(: cnet_isa_63a981c17e (IsA loupe hand_glass) (STV 1.0 0.9091)) +(: cnet_isa_196f0c1f23 (IsA louse insect) (STV 1.0 0.9091)) +(: cnet_isa_377bbede28 (IsA louse_fly dipterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_3f6bc962fe (IsA lout clumsy_person) (STV 1.0 0.9091)) +(: cnet_isa_2e7685c63b (IsA louvar scombroid) (STV 1.0 0.9091)) +(: cnet_isa_ce173dd3cb (IsA louver slat) (STV 1.0 0.9091)) +(: cnet_isa_6f959bfe6e (IsA louvered_window window) (STV 1.0 0.9091)) +(: cnet_isa_6d2dbea1cb (IsA lovage herb) (STV 1.0 0.9091)) +(: cnet_isa_54b4d6e4e4 (IsA love aphrodisiac) (STV 1.0 0.9091)) +(: cnet_isa_6315f374b2 (IsA love emotion) (STV 1.0 0.9091)) +(: cnet_isa_6aa1b90e1e (IsA love emotion_between_people) (STV 1.0 0.9091)) +(: cnet_isa_6bcc28b5e4 (IsA love feeling) (STV 1.0 0.9730)) +(: cnet_isa_d918cf2e08 (IsA love powerful_emotion) (STV 1.0 0.9091)) +(: cnet_isa_5ffe4745c8 (IsA love strong_emotion) (STV 1.0 0.9339)) +(: cnet_isa_891a2576a1 (IsA love wonderful_emotion) (STV 1.0 0.9091)) +(: cnet_isa_ec94c30eac (IsA love wonderful_feeling) (STV 1.0 0.9091)) +(: cnet_isa_7af72eaf10 (IsA love object) (STV 1.0 0.9091)) +(: cnet_isa_81ecf71790 (IsA love sexual_desire) (STV 1.0 0.9091)) +(: cnet_isa_9c4c90cce3 (IsA love score) (STV 1.0 0.9091)) +(: cnet_isa_3ea60dd7dd (IsA love_affair relationship) (STV 1.0 0.9091)) +(: cnet_isa_b347d36855 (IsA love_feast social_gathering) (STV 1.0 0.9091)) +(: cnet_isa_10cc7f22b1 (IsA love_grass grass) (STV 1.0 0.9091)) +(: cnet_isa_fb7aa72736 (IsA love_in_mist nigella) (STV 1.0 0.9091)) +(: cnet_isa_4cedbe832a (IsA love_in_mist passionflower) (STV 1.0 0.9091)) +(: cnet_isa_cd722c615c (IsA love_in_winter pipsissewa) (STV 1.0 0.9091)) +(: cnet_isa_ed853b0e17 (IsA love_knot knot) (STV 1.0 0.9091)) +(: cnet_isa_889f039d34 (IsA love_letter personal_letter) (STV 1.0 0.9091)) +(: cnet_isa_0f143f12e0 (IsA love_lie_bleeding amaranth) (STV 1.0 0.9091)) +(: cnet_isa_05a36defac (IsA love_lyric lyric) (STV 1.0 0.9091)) +(: cnet_isa_dee550e30e (IsA love_match marriage) (STV 1.0 0.9091)) +(: cnet_isa_f09e220870 (IsA love_seat sofa) (STV 1.0 0.9091)) +(: cnet_isa_e26fe97ac6 (IsA love_song song) (STV 1.0 0.9091)) +(: cnet_isa_6a1ead6016 (IsA love_story story) (STV 1.0 0.9091)) +(: cnet_isa_4d306f7412 (IsA love_token keepsake) (STV 1.0 0.9091)) +(: cnet_isa_74829976dc (IsA love_vine dodder) (STV 1.0 0.9091)) +(: cnet_isa_c70a07e1dd (IsA lovebird parrot) (STV 1.0 0.9091)) +(: cnet_isa_e217351233 (IsA loved_one person) (STV 1.0 0.9091)) +(: cnet_isa_11044d4101 (IsA lover domestic_partner) (STV 1.0 0.9091)) +(: cnet_isa_b54031160f (IsA lover person) (STV 1.0 0.9091)) +(: cnet_isa_a25ff59010 (IsA lovesickness pining) (STV 1.0 0.9091)) +(: cnet_isa_03de161e79 (IsA loving_cup drinking_vessel) (STV 1.0 0.9091)) +(: cnet_isa_fd3d94e5db (IsA loving_kindness kindness) (STV 1.0 0.9091)) +(: cnet_isa_902dfd91b2 (IsA lovingness love) (STV 1.0 0.9091)) +(: cnet_isa_62cefb0b78 (IsA lovoa rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2ae31bb953 (IsA low degree) (STV 1.0 0.9091)) +(: cnet_isa_584da4a819 (IsA low air_mass) (STV 1.0 0.9091)) +(: cnet_isa_0c23d1dd56 (IsA low_beam beam) (STV 1.0 0.9091)) +(: cnet_isa_e08ace7d5c (IsA low_birth_weight_baby neonate) (STV 1.0 0.9091)) +(: cnet_isa_c598e01827 (IsA low_blow abuse) (STV 1.0 0.9091)) +(: cnet_isa_7826230db2 (IsA low_brass brass) (STV 1.0 0.9091)) +(: cnet_isa_27d5c1f201 (IsA low_bush_blueberry blueberry) (STV 1.0 0.9091)) +(: cnet_isa_73efc1a4f0 (IsA low_calorie_diet reducing_diet) (STV 1.0 0.9091)) +(: cnet_isa_ccd36b3b5b (IsA low_comedy comedy) (STV 1.0 0.9091)) +(: cnet_isa_9135da350c (IsA low_density_lipoprotein lipoprotein) (STV 1.0 0.9091)) +(: cnet_isa_e7a75bb437 (IsA low_explosive explosive) (STV 1.0 0.9091)) +(: cnet_isa_0e1c47774e (IsA low_fat_diet diet) (STV 1.0 0.9091)) +(: cnet_isa_b6478b0576 (IsA low_fat_milk milk) (STV 1.0 0.9091)) +(: cnet_isa_311bf6bec1 (IsA low_frequency radio_frequency) (STV 1.0 0.9091)) +(: cnet_isa_13a9cf1f11 (IsA low_gallberry_holly holly) (STV 1.0 0.9091)) +(: cnet_isa_023a85e638 (IsA low_german west_germanic) (STV 1.0 0.9091)) +(: cnet_isa_4dc2d48087 (IsA low_latin latin) (STV 1.0 0.9091)) +(: cnet_isa_2154b4cc04 (IsA low_level_formatting format) (STV 1.0 0.9091)) +(: cnet_isa_c2cc28a4dd (IsA low_level_radioactive_waste radioactive_waste) (STV 1.0 0.9091)) +(: cnet_isa_bf304b1969 (IsA low_mass mass) (STV 1.0 0.9091)) +(: cnet_isa_2bf9c86d01 (IsA low_pass_filter filter) (STV 1.0 0.9091)) +(: cnet_isa_ac26dc2060 (IsA low_pitch pitch) (STV 1.0 0.9091)) +(: cnet_isa_4919dda37c (IsA low_profile visibility) (STV 1.0 0.9091)) +(: cnet_isa_298d926944 (IsA low_sodium_diet diet) (STV 1.0 0.9091)) +(: cnet_isa_9819623a95 (IsA low_spirit depression) (STV 1.0 0.9091)) +(: cnet_isa_72a6179523 (IsA low_st_andrew_s_cross st_john_s_wort) (STV 1.0 0.9091)) +(: cnet_isa_17c3c84861 (IsA low_status status) (STV 1.0 0.9091)) +(: cnet_isa_de367a0a33 (IsA low_sunday christian_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_ccab0704c4 (IsA low_tide tide) (STV 1.0 0.9091)) +(: cnet_isa_40f97db713 (IsA low_warp_loom handloom) (STV 1.0 0.9091)) +(: cnet_isa_4f598735bf (IsA low_water_mark water_line) (STV 1.0 0.9091)) +(: cnet_isa_6912e4f08b (IsA lowboy chest_of_drawer) (STV 1.0 0.9091)) +(: cnet_isa_27ef8b999f (IsA lower_berth berth) (STV 1.0 0.9091)) +(: cnet_isa_ec4e853f4e (IsA lower_bound boundary) (STV 1.0 0.9091)) +(: cnet_isa_2879d42ade (IsA lower_class class) (STV 1.0 0.9091)) +(: cnet_isa_7847f91dc5 (IsA lower_criticism textual_criticism) (STV 1.0 0.9091)) +(: cnet_isa_c756d18da0 (IsA lower_deck deck) (STV 1.0 0.9091)) +(: cnet_isa_c1a4eaab14 (IsA lower_jaw articulator) (STV 1.0 0.9091)) +(: cnet_isa_76bc32b6d8 (IsA lower_jaw jaw) (STV 1.0 0.9091)) +(: cnet_isa_d214b07881 (IsA lower_limit limit) (STV 1.0 0.9091)) +(: cnet_isa_357ec43bef (IsA lower_mantle layer) (STV 1.0 0.9091)) +(: cnet_isa_27451d7888 (IsA lower_respiratory_infection respiratory_tract_infection) (STV 1.0 0.9091)) +(: cnet_isa_fabf2b9cdb (IsA lower_respiratory_tract respiratory_tract) (STV 1.0 0.9091)) +(: cnet_isa_a698c4e61b (IsA lower_respiratory_tract_smear smear) (STV 1.0 0.9091)) +(: cnet_isa_56ae3be6d2 (IsA lowerclassman undergraduate) (STV 1.0 0.9091)) +(: cnet_isa_9492494993 (IsA lowering decrease) (STV 1.0 0.9091)) +(: cnet_isa_395d69caeb (IsA lowering movement) (STV 1.0 0.9091)) +(: cnet_isa_919f6862ad (IsA lowest_common_multiple multiple) (STV 1.0 0.9091)) +(: cnet_isa_b43f37dc3b (IsA lowland natural_depression) (STV 1.0 0.9091)) +(: cnet_isa_14867c9db8 (IsA lowland_burrowing_treefrog tree_toad) (STV 1.0 0.9091)) +(: cnet_isa_35815b5d8c (IsA lowland_fir silver_fir) (STV 1.0 0.9091)) +(: cnet_isa_fafa67f87e (IsA lowness degree) (STV 1.0 0.9091)) +(: cnet_isa_49f9a28186 (IsA lowness height) (STV 1.0 0.9091)) +(: cnet_isa_1ca315bc2f (IsA lox smoked_salmon) (STV 1.0 0.9091)) +(: cnet_isa_1418110761 (IsA loxia bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_c5ab121396 (IsA loxodonta mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_6b49448651 (IsA loxoma fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_05a20ab5d2 (IsA loxomataceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_a3c3d496b4 (IsA loxostege arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_c90e8fc884 (IsA loxostege_similalis webworm_moth) (STV 1.0 0.9091)) +(: cnet_isa_336390355c (IsA loya_jirga jirga) (STV 1.0 0.9091)) +(: cnet_isa_e77abef28f (IsA loyalist supporter) (STV 1.0 0.9091)) +(: cnet_isa_5880dc635c (IsA loyalty virtue) (STV 1.0 0.9091)) +(: cnet_isa_affd219925 (IsA loyalty fidelity) (STV 1.0 0.9091)) +(: cnet_isa_c9cce2c27c (IsA loyalty love) (STV 1.0 0.9091)) +(: cnet_isa_7c6b24e9e2 (IsA lozenge candy) (STV 1.0 0.9091)) +(: cnet_isa_8af889b8f4 (IsA lp phonograph_record) (STV 1.0 0.9091)) +(: cnet_isa_a5f5926f03 (IsA lsd drug) (STV 1.0 0.9091)) +(: cnet_isa_b8792eabe4 (IsA luau fete) (STV 1.0 0.9091)) +(: cnet_isa_cfe542aeba (IsA luba bantu) (STV 1.0 0.9091)) +(: cnet_isa_64a37ccf11 (IsA lubavitch religious_movement) (STV 1.0 0.9091)) +(: cnet_isa_4266deaaa8 (IsA lubavitcher orthodox_jew) (STV 1.0 0.9091)) +(: cnet_isa_692a2c1478 (IsA lubber_s_hole hole) (STV 1.0 0.9091)) +(: cnet_isa_912785338b (IsA lubber_s_line reference_point) (STV 1.0 0.9091)) +(: cnet_isa_177e46bc8c (IsA lubricant substance) (STV 1.0 0.9091)) +(: cnet_isa_63e23f8255 (IsA lubricating_system mechanical_system) (STV 1.0 0.9091)) +(: cnet_isa_5f3b305223 (IsA lubrication application) (STV 1.0 0.9091)) +(: cnet_isa_dda5e8ee1f (IsA lubrication condition) (STV 1.0 0.9091)) +(: cnet_isa_c1018562e3 (IsA lucanidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_85befa7e4e (IsA lucidity sanity) (STV 1.0 0.9091)) +(: cnet_isa_a16fc9bdb1 (IsA luciferin animal_pigment) (STV 1.0 0.9091)) +(: cnet_isa_f81f4830d6 (IsA lucilia arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_c985010657 (IsA luck phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_209601528e (IsA lucky_dip lottery) (STV 1.0 0.9091)) +(: cnet_isa_d6ca5448e0 (IsA lucky_dip random_sampling) (STV 1.0 0.9091)) +(: cnet_isa_1f2d1b04cc (IsA lucubration cogitation) (STV 1.0 0.9091)) +(: cnet_isa_61934e4639 (IsA lucubration literary_composition) (STV 1.0 0.9091)) +(: cnet_isa_645f132dbf (IsA luddite adversary) (STV 1.0 0.9091)) +(: cnet_isa_60ce057e07 (IsA luddite workman) (STV 1.0 0.9091)) +(: cnet_isa_7a75109cfa (IsA ludi_saeculare celebration) (STV 1.0 0.9091)) +(: cnet_isa_9080624f46 (IsA ludian baltic_finnic) (STV 1.0 0.9091)) +(: cnet_isa_6ea777bcbb (IsA ludo board_game) (STV 1.0 0.9091)) +(: cnet_isa_261f00a059 (IsA lufengpithecus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_a76fb3fcd7 (IsA luff sailing) (STV 1.0 0.9091)) +(: cnet_isa_423e2f1ae4 (IsA luff edge) (STV 1.0 0.9091)) +(: cnet_isa_4c7ec7ae52 (IsA luffa vine) (STV 1.0 0.9091)) +(: cnet_isa_d9c378898b (IsA luftwaffe air_force) (STV 1.0 0.9091)) +(: cnet_isa_c2fa255d8f (IsA lug projection) (STV 1.0 0.9091)) +(: cnet_isa_2f0cc77cc4 (IsA lug_wrench wrench) (STV 1.0 0.9091)) +(: cnet_isa_45491a44d5 (IsA luganda bantu) (STV 1.0 0.9091)) +(: cnet_isa_1ae99a664a (IsA luge sled) (STV 1.0 0.9091)) +(: cnet_isa_0a56d5c6f6 (IsA luger sledder) (STV 1.0 0.9091)) +(: cnet_isa_b37499f746 (IsA luggage_carrier carrier) (STV 1.0 0.9091)) +(: cnet_isa_002534457b (IsA luggage_rack carrier) (STV 1.0 0.9091)) +(: cnet_isa_1f8a841716 (IsA lugger boat) (STV 1.0 0.9091)) +(: cnet_isa_a6b3eb16c2 (IsA luging tobogganing) (STV 1.0 0.9091)) +(: cnet_isa_959cc19869 (IsA lugsail fore_and_aft_sail) (STV 1.0 0.9091)) +(: cnet_isa_5ee1554838 (IsA lugworm polychaete) (STV 1.0 0.9091)) +(: cnet_isa_c9a5851ab2 (IsA lukewarmness warmth) (STV 1.0 0.9091)) +(: cnet_isa_bac75cecab (IsA lull calmness) (STV 1.0 0.9091)) +(: cnet_isa_d5a7874bae (IsA lullaby song) (STV 1.0 0.9091)) +(: cnet_isa_528adba8b4 (IsA lumbago backache) (STV 1.0 0.9091)) +(: cnet_isa_3204970752 (IsA lumbar_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_406066336b (IsA lumbar_nerve spinal_nerve) (STV 1.0 0.9091)) +(: cnet_isa_54754cbf1d (IsA lumbar_plexus nerve_plexus) (STV 1.0 0.9091)) +(: cnet_isa_659a4b70e3 (IsA lumbar_plexus plexus) (STV 1.0 0.9091)) +(: cnet_isa_b81ae8ddc4 (IsA lumbar_puncture centesis) (STV 1.0 0.9091)) +(: cnet_isa_99972960fe (IsA lumbar_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_c26762b993 (IsA lumbar_vertebra vertebra) (STV 1.0 0.9091)) +(: cnet_isa_2e4cd47c44 (IsA lumber building_material) (STV 1.0 0.9091)) +(: cnet_isa_c7a55e4140 (IsA lumber_room storeroom) (STV 1.0 0.9091)) +(: cnet_isa_39589fead0 (IsA lumbering trade) (STV 1.0 0.9091)) +(: cnet_isa_e381a029ed (IsA lumberjack jacket) (STV 1.0 0.9091)) +(: cnet_isa_2aa02547c9 (IsA lumberman laborer) (STV 1.0 0.9091)) +(: cnet_isa_2c35d252d7 (IsA lumbermill factory) (STV 1.0 0.9091)) +(: cnet_isa_fe152e83b4 (IsA lumberyard workplace) (STV 1.0 0.9091)) +(: cnet_isa_682018b8c7 (IsA lumbosacral_plexus nerve_plexus) (STV 1.0 0.9091)) +(: cnet_isa_48296393e8 (IsA lumen cavity) (STV 1.0 0.9091)) +(: cnet_isa_83d244d5cb (IsA lumen luminous_flux_unit) (STV 1.0 0.9091)) +(: cnet_isa_f7d2b39acf (IsA luminance_unit light_unit) (STV 1.0 0.9091)) +(: cnet_isa_f62ddbc6eb (IsA luminary celebrity) (STV 1.0 0.9091)) +(: cnet_isa_89b3e3f9fe (IsA luminescence luminosity) (STV 1.0 0.9091)) +(: cnet_isa_8f00f866c3 (IsA luminescence light) (STV 1.0 0.9091)) +(: cnet_isa_378b6a65fa (IsA luminism artistic_movement) (STV 1.0 0.9091)) +(: cnet_isa_c346ae642e (IsA luminosity physical_property) (STV 1.0 0.9091)) +(: cnet_isa_02e92a1c29 (IsA luminous_energy radiant_energy) (STV 1.0 0.9091)) +(: cnet_isa_bc76048263 (IsA luminous_flux radiant_flux) (STV 1.0 0.9091)) +(: cnet_isa_353e786c4f (IsA luminous_flux_unit light_unit) (STV 1.0 0.9091)) +(: cnet_isa_a8c72bcd04 (IsA luminous_intensity_unit light_unit) (STV 1.0 0.9091)) +(: cnet_isa_d81d67acc6 (IsA lumma armenian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_85b14afb5f (IsA lump_sugar sugar) (STV 1.0 0.9091)) +(: cnet_isa_9d3da0ba92 (IsA lump_sum payment) (STV 1.0 0.9091)) +(: cnet_isa_f710379f71 (IsA lumpectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_617ef74d0b (IsA lumpenproletariat labor) (STV 1.0 0.9091)) +(: cnet_isa_062642fbb7 (IsA lumpenus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_703703b581 (IsA lumper taxonomist) (STV 1.0 0.9091)) +(: cnet_isa_d2bcc9a076 (IsA lumpfish scorpaenoid) (STV 1.0 0.9091)) +(: cnet_isa_6368868f5b (IsA lumpsucker lumpfish) (STV 1.0 0.9091)) +(: cnet_isa_6aaf641ebf (IsA luna_moth saturniid) (STV 1.0 0.9091)) +(: cnet_isa_8312124af4 (IsA lunacy insanity) (STV 1.0 0.9091)) +(: cnet_isa_cacfc9e8db (IsA lunar_calendar calendar) (STV 1.0 0.9091)) +(: cnet_isa_4297aee60e (IsA lunar_caustic silver_nitrate) (STV 1.0 0.9091)) +(: cnet_isa_444e86352e (IsA lunar_crater crater) (STV 1.0 0.9091)) +(: cnet_isa_d2d7ab91b3 (IsA lunar_day day) (STV 1.0 0.9091)) +(: cnet_isa_2c4ad2ff9e (IsA lunar_eclipse eclipse) (STV 1.0 0.9091)) +(: cnet_isa_880c9f9a85 (IsA lunar_excursion_module spacecraft) (STV 1.0 0.9091)) +(: cnet_isa_ff2d506cba (IsA lunar_latitude line) (STV 1.0 0.9091)) +(: cnet_isa_b79904696c (IsA lunar_month month) (STV 1.0 0.9091)) +(: cnet_isa_b34f7ff018 (IsA lunar_year year) (STV 1.0 0.9091)) +(: cnet_isa_ea020d2963 (IsA lunaria dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9a71e67295 (IsA lunate_bone carpal_bone) (STV 1.0 0.9091)) +(: cnet_isa_e4a6a1d151 (IsA lunatic sick_person) (STV 1.0 0.9091)) +(: cnet_isa_0f94057068 (IsA lunatic_fringe political_unit) (STV 1.0 0.9091)) +(: cnet_isa_d3aa66e411 (IsA lunch meal) (STV 1.0 0.9091)) +(: cnet_isa_e559607abc (IsA lunch_meat cold_cut) (STV 1.0 0.9091)) +(: cnet_isa_060e92015e (IsA lunch_meat loaf) (STV 1.0 0.9091)) +(: cnet_isa_16420bcf0d (IsA luncheon_meeting meeting) (STV 1.0 0.9091)) +(: cnet_isa_898e34cbe3 (IsA luncher eater) (STV 1.0 0.9091)) +(: cnet_isa_404de76eb6 (IsA lunching eating) (STV 1.0 0.9091)) +(: cnet_isa_42e72202e1 (IsA lunchroom restaurant) (STV 1.0 0.9091)) +(: cnet_isa_d54a019e89 (IsA lunchtime mealtime) (STV 1.0 0.9091)) +(: cnet_isa_d93c5ed1ff (IsA lunda bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_b5777386b6 (IsA lunette fortification) (STV 1.0 0.9091)) +(: cnet_isa_310401863b (IsA lunette opening) (STV 1.0 0.9091)) +(: cnet_isa_9feed9d41f (IsA lung respiratory_organ) (STV 1.0 0.9091)) +(: cnet_isa_87e47da9a6 (IsA lung_cancer carcinoma) (STV 1.0 0.9091)) +(: cnet_isa_a21758f9d1 (IsA lung_power voice) (STV 1.0 0.9091)) +(: cnet_isa_4d7e4d53ce (IsA lunger mover) (STV 1.0 0.9091)) +(: cnet_isa_26f0eb2092 (IsA lungfish bony_fish) (STV 1.0 0.9091)) +(: cnet_isa_5634a00553 (IsA lungi piece_of_cloth) (STV 1.0 0.9091)) +(: cnet_isa_b873bba930 (IsA lungless_salamander salamander) (STV 1.0 0.9091)) +(: cnet_isa_41c613759a (IsA lunisolar_calendar calendar) (STV 1.0 0.9091)) +(: cnet_isa_7c334fe49e (IsA lunitidal_interval time_interval) (STV 1.0 0.9091)) +(: cnet_isa_af554665b6 (IsA lunula decoration) (STV 1.0 0.9091)) +(: cnet_isa_771e1d092a (IsA luo nilotic) (STV 1.0 0.9091)) +(: cnet_isa_2db470f0c9 (IsA lupine woody_plant) (STV 1.0 0.9091)) +(: cnet_isa_4b33868bbb (IsA lupinus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7fe82bb195 (IsA lupus skin_disease) (STV 1.0 0.9091)) +(: cnet_isa_05c7c04a40 (IsA lupus_erythematosus autoimmune_disease) (STV 1.0 0.9091)) +(: cnet_isa_16ed04decd (IsA lupus_erythematosus lupus) (STV 1.0 0.9091)) +(: cnet_isa_ad6826de62 (IsA lupus_vulgaris lupus) (STV 1.0 0.9091)) +(: cnet_isa_889d05c853 (IsA lupus_vulgaris tuberculosis) (STV 1.0 0.9091)) +(: cnet_isa_8d1a39173e (IsA lurch gait) (STV 1.0 0.9091)) +(: cnet_isa_32417564eb (IsA lurch motion) (STV 1.0 0.9091)) +(: cnet_isa_9fc4381949 (IsA lurch defeat) (STV 1.0 0.9091)) +(: cnet_isa_11f7773939 (IsA lure attraction) (STV 1.0 0.9091)) +(: cnet_isa_7add672781 (IsA lurker waiter) (STV 1.0 0.9091)) +(: cnet_isa_1873c8b71e (IsA lurking_place hiding_place) (STV 1.0 0.9091)) +(: cnet_isa_39a4a4920f (IsA luscinia bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_17f9714bfd (IsA lust mortal_sin) (STV 1.0 0.9091)) +(: cnet_isa_955fb9739f (IsA luster brightness) (STV 1.0 0.9091)) +(: cnet_isa_1cf9805a63 (IsA luster glaze) (STV 1.0 0.9091)) +(: cnet_isa_bc627315e3 (IsA lusterware pottery) (STV 1.0 0.9091)) +(: cnet_isa_3c7e40ff50 (IsA lustrum ceremony) (STV 1.0 0.9091)) +(: cnet_isa_25722e20e6 (IsA lustrum time_period) (STV 1.0 0.9091)) +(: cnet_isa_ff400ec397 (IsA lute chordophone) (STV 1.0 0.9091)) +(: cnet_isa_bcbf1bf0f2 (IsA lute sealing_material) (STV 1.0 0.9091)) +(: cnet_isa_352edcc7c1 (IsA lutefisk dish) (STV 1.0 0.9091)) +(: cnet_isa_ea465e2895 (IsA luteinizing_hormone gonadotropin) (STV 1.0 0.9091)) +(: cnet_isa_5428ed5535 (IsA lutetium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_5b98fc034a (IsA lutheran disciple) (STV 1.0 0.9091)) +(: cnet_isa_964b78ac9c (IsA lutheran_church protestant_denomination) (STV 1.0 0.9091)) +(: cnet_isa_27b5ebfcc8 (IsA lutheranism protestantism) (STV 1.0 0.9091)) +(: cnet_isa_f698dd8791 (IsA luthier craftsman) (STV 1.0 0.9091)) +(: cnet_isa_52755a4179 (IsA lutist musician) (STV 1.0 0.9091)) +(: cnet_isa_f67bf3b56c (IsA lutjanidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_f4064228ff (IsA lutjanus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_cb66a37783 (IsA lutra mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_35e393aa34 (IsA lutrinae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_5db4c2096f (IsA luvaridae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_2940524657 (IsA luvarus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_aee3f500ae (IsA luwian anatolian) (STV 1.0 0.9091)) +(: cnet_isa_23593c3d45 (IsA lux illumination_unit) (STV 1.0 0.9091)) +(: cnet_isa_ee3de4326f (IsA luxation shift) (STV 1.0 0.9091)) +(: cnet_isa_2de43856a7 (IsA luxembourg_franc franc) (STV 1.0 0.9091)) +(: cnet_isa_e1fd9481a9 (IsA luxembourger european) (STV 1.0 0.9091)) +(: cnet_isa_5d81879bb9 (IsA luxuriance abundance) (STV 1.0 0.9091)) +(: cnet_isa_382011f85c (IsA luxuriation pleasure) (STV 1.0 0.9091)) +(: cnet_isa_5729590681 (IsA luxury indulgence) (STV 1.0 0.9091)) +(: cnet_isa_b26280d102 (IsA luxury wealth) (STV 1.0 0.9091)) +(: cnet_isa_5f2a52f2ca (IsA luxury_liner liner) (STV 1.0 0.9091)) +(: cnet_isa_4f7c5bd4bd (IsA luyia bantu) (STV 1.0 0.9091)) +(: cnet_isa_6607f6ebf2 (IsA lwei angolan_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_277ee36443 (IsA lycaena arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_03f13822ba (IsA lycaenid butterfly) (STV 1.0 0.9091)) +(: cnet_isa_ebcfbf83a5 (IsA lycaenidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_a0ddd66596 (IsA lycaeon mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_b71b12a75d (IsA lycanthropy magical_ability) (STV 1.0 0.9091)) +(: cnet_isa_6f48b0c46f (IsA lyceum hall) (STV 1.0 0.9091)) +(: cnet_isa_a632f7e27a (IsA lychgate gate) (STV 1.0 0.9091)) +(: cnet_isa_a5d1266399 (IsA lychnis flower) (STV 1.0 0.9091)) +(: cnet_isa_d27fc9990a (IsA lycian anatolian) (STV 1.0 0.9091)) +(: cnet_isa_04e11176f5 (IsA lycium asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4558925673 (IsA lycopene carotenoid) (STV 1.0 0.9091)) +(: cnet_isa_c7af268ff6 (IsA lycoperdaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_0840281a13 (IsA lycoperdale fungus_order) (STV 1.0 0.9091)) +(: cnet_isa_a72356701f (IsA lycoperdon fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_7fb0ea8a11 (IsA lycopersicon asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_61d32d479c (IsA lycophyta division) (STV 1.0 0.9091)) +(: cnet_isa_2f19d4c892 (IsA lycopodiaceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_0843db2891 (IsA lycopodiale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_3f11b0794c (IsA lycopodineae class) (STV 1.0 0.9091)) +(: cnet_isa_503bcf2f22 (IsA lycopodium fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_d722d23b7e (IsA lycopsida class) (STV 1.0 0.9091)) +(: cnet_isa_f9b7f6ea41 (IsA lycopus asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3799ec2b12 (IsA lycosa arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_9eee9cf43f (IsA lycosidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_e0fd538d0b (IsA lydian anatolian) (STV 1.0 0.9091)) +(: cnet_isa_bf6b090173 (IsA lye caustic) (STV 1.0 0.9091)) +(: cnet_isa_671e72368a (IsA lye_hominy hominy) (STV 1.0 0.9091)) +(: cnet_isa_949d2a36b8 (IsA lygaeid hemipterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_6184485fc5 (IsA lygaeidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_0c33e4073a (IsA lyginopteris gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_e33b04d457 (IsA lygodium fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_93bbf21d2a (IsA lygus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_e40d7ffce4 (IsA lygus_bug mirid_bug) (STV 1.0 0.9091)) +(: cnet_isa_06d6dfe7e8 (IsA lying falsification) (STV 1.0 0.9091)) +(: cnet_isa_dcac42a965 (IsA lymantria arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_eb08a667ec (IsA lymantriid moth) (STV 1.0 0.9091)) +(: cnet_isa_1afcc68568 (IsA lymantriidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_95adf3f88c (IsA lyme_disease zoonosis) (STV 1.0 0.9091)) +(: cnet_isa_3730e0f3ca (IsA lyme_grass grass) (STV 1.0 0.9091)) +(: cnet_isa_2d13713482 (IsA lymph liquid_body_substance) (STV 1.0 0.9091)) +(: cnet_isa_48f63c0d68 (IsA lymph_node lymphatic_tissue) (STV 1.0 0.9091)) +(: cnet_isa_48cc39ecee (IsA lymph_vessel duct) (STV 1.0 0.9091)) +(: cnet_isa_84e3559c51 (IsA lymphadenitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_15c682e215 (IsA lymphadenoma adenoma) (STV 1.0 0.9091)) +(: cnet_isa_368c1649b0 (IsA lymphadenopathy pathology) (STV 1.0 0.9091)) +(: cnet_isa_5d9c1c2f3f (IsA lymphangiectasia ectasia) (STV 1.0 0.9091)) +(: cnet_isa_8cb592dd5e (IsA lymphangiogram angiogram) (STV 1.0 0.9091)) +(: cnet_isa_0a396320e1 (IsA lymphangiography angiography) (STV 1.0 0.9091)) +(: cnet_isa_45eb8cfc96 (IsA lymphangioma angioma) (STV 1.0 0.9091)) +(: cnet_isa_f689f9e2a9 (IsA lymphangitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_5c616267f9 (IsA lymphatic_system vascular_system) (STV 1.0 0.9091)) +(: cnet_isa_42bb579bf4 (IsA lymphatic_tissue animal_tissue) (STV 1.0 0.9091)) +(: cnet_isa_465e681cb9 (IsA lymphedema edema) (STV 1.0 0.9091)) +(: cnet_isa_a05eb534a1 (IsA lymphoblast lymphocyte) (STV 1.0 0.9091)) +(: cnet_isa_219adf62d5 (IsA lymphoblastic_leukemia lymphocytic_leukemia) (STV 1.0 0.9091)) +(: cnet_isa_d171f8493d (IsA lymphocyte leukocyte) (STV 1.0 0.9091)) +(: cnet_isa_f2a9d056d9 (IsA lymphocytic_choriomeningitis choriomeningitis) (STV 1.0 0.9091)) +(: cnet_isa_140c2154f1 (IsA lymphocytic_choriomeningitis_virus arenavirus) (STV 1.0 0.9091)) +(: cnet_isa_32b63b8b0f (IsA lymphocytic_leukemia leukemia) (STV 1.0 0.9091)) +(: cnet_isa_cbd45a39d4 (IsA lymphocytopenia blood_disease) (STV 1.0 0.9091)) +(: cnet_isa_3072593c10 (IsA lymphocytosis blood_disease) (STV 1.0 0.9091)) +(: cnet_isa_09c09f1083 (IsA lymphogranuloma swelling) (STV 1.0 0.9091)) +(: cnet_isa_98fe7ae09b (IsA lymphogranuloma_venereum venereal_disease) (STV 1.0 0.9091)) +(: cnet_isa_211a6d4fdd (IsA lymphokine cytokine) (STV 1.0 0.9091)) +(: cnet_isa_90a1001a5f (IsA lymphoma cancer) (STV 1.0 0.9091)) +(: cnet_isa_f9540bba9f (IsA lymphopoiesis organic_process) (STV 1.0 0.9091)) +(: cnet_isa_b80f42471d (IsA lymphuria symptom) (STV 1.0 0.9091)) +(: cnet_isa_5eaeeeff55 (IsA lynch_law practice) (STV 1.0 0.9091)) +(: cnet_isa_01dfdf5242 (IsA lynch_mob mob) (STV 1.0 0.9091)) +(: cnet_isa_9ed9c558ef (IsA lynching murder) (STV 1.0 0.9091)) +(: cnet_isa_9719b7afe6 (IsA lynx cat) (STV 1.0 0.9091)) +(: cnet_isa_6fcccb689f (IsA lynx wildcat) (STV 1.0 0.9091)) +(: cnet_isa_074a75dd7a (IsA lyonia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4618547324 (IsA lyonnaise_sauce sauce) (STV 1.0 0.9091)) +(: cnet_isa_94e41c65a0 (IsA lypressin antidiuretic) (STV 1.0 0.9091)) +(: cnet_isa_54f18ef424 (IsA lypressin vasoconstrictor) (STV 1.0 0.9091)) +(: cnet_isa_28f54d512f (IsA lyrate_leaf simple_leaf) (STV 1.0 0.9091)) +(: cnet_isa_3c7598a8ab (IsA lyre instrument) (STV 1.0 0.9091)) +(: cnet_isa_fbff0462e8 (IsA lyre harp) (STV 1.0 0.9091)) +(: cnet_isa_99698be487 (IsA lyre_snake colubrid_snake) (STV 1.0 0.9091)) +(: cnet_isa_294aa3b543 (IsA lyrebird passerine) (STV 1.0 0.9091)) +(: cnet_isa_dd693f2c8f (IsA lyric poem) (STV 1.0 0.9091)) +(: cnet_isa_d16fa91370 (IsA lyric text) (STV 1.0 0.9091)) +(: cnet_isa_096ba3526c (IsA lyricality musicality) (STV 1.0 0.9091)) +(: cnet_isa_507854098d (IsA lyricism exuberance) (STV 1.0 0.9091)) +(: cnet_isa_f81553e166 (IsA lyricist writer) (STV 1.0 0.9091)) +(: cnet_isa_6bc817479a (IsA lyrurus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_a9660b3373 (IsA lysergic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_71c86fd373 (IsA lysergic_acid_diethylamide controlled_substance) (STV 1.0 0.9091)) +(: cnet_isa_665852ce16 (IsA lysergic_acid_diethylamide drug_of_abuse) (STV 1.0 0.9091)) +(: cnet_isa_e85895d8ad (IsA lysergic_acid_diethylamide hallucinogen) (STV 1.0 0.9091)) +(: cnet_isa_133dbd0a5b (IsA lysichiton monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_36ea0ae895 (IsA lysiloma rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_12b055b21d (IsA lysimachia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6add2c9142 (IsA lysin substance) (STV 1.0 0.9091)) +(: cnet_isa_29c95f9ff3 (IsA lysine essential_amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_37dfc62f36 (IsA lysine_intolerance metabolic_disorder) (STV 1.0 0.9091)) +(: cnet_isa_b24d238a7b (IsA lysinemia inborn_error_of_metabolism) (STV 1.0 0.9091)) +(: cnet_isa_caea66ea6b (IsA lysis dissolution) (STV 1.0 0.9091)) +(: cnet_isa_0697169b9a (IsA lysis convalescence) (STV 1.0 0.9091)) +(: cnet_isa_dbd6dc4bbb (IsA lysogenization organic_process) (STV 1.0 0.9091)) +(: cnet_isa_3cd9705989 (IsA lysogeny condition) (STV 1.0 0.9091)) +(: cnet_isa_df1414bb07 (IsA lysol cresol) (STV 1.0 0.9091)) +(: cnet_isa_cc62e1550c (IsA lysosome organelle) (STV 1.0 0.9091)) +(: cnet_isa_8a3764035e (IsA lysozyme enzyme) (STV 1.0 0.9091)) +(: cnet_isa_0c20783dcf (IsA lyssavirus animal_virus) (STV 1.0 0.9091)) +(: cnet_isa_e17a081cdb (IsA lythraceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_7d1e1ea703 (IsA lythrum dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6f64799091 (IsA m letter) (STV 1.0 0.9091)) +(: cnet_isa_4178208a36 (IsA m1 money_supply) (STV 1.0 0.9091)) +(: cnet_isa_24877ca730 (IsA m2 money_supply) (STV 1.0 0.9091)) +(: cnet_isa_2082f02cdd (IsA m24 dedicated_military_sniper_rifle) (STV 1.0 0.9091)) +(: cnet_isa_82fb28ad1f (IsA m3 money_supply) (STV 1.0 0.9091)) +(: cnet_isa_f68b1bd643 (IsA m4 motorway_in_england) (STV 1.0 0.9091)) +(: cnet_isa_24e2c2fe10 (IsA m_16 rifle) (STV 1.0 0.9091)) +(: cnet_isa_c18cd354a0 (IsA m_theory model) (STV 1.0 0.9091)) +(: cnet_isa_b4902e4ac9 (IsA ma mother) (STV 1.0 0.9091)) +(: cnet_isa_a1b55259ff (IsA maar volcanic_crater) (STV 1.0 0.9091)) +(: cnet_isa_49e0d68357 (IsA mac computer) (STV 1.0 0.9524)) +(: cnet_isa_986dd1e61a (IsA macaca mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_2b3c5d5012 (IsA macadam paving_material) (STV 1.0 0.9091)) +(: cnet_isa_fb44e81d51 (IsA macadamia nut_tree) (STV 1.0 0.9091)) +(: cnet_isa_efca1f66c4 (IsA macadamia_integrifolia macadamia) (STV 1.0 0.9091)) +(: cnet_isa_596b23efc3 (IsA macadamia_nut edible_nut) (STV 1.0 0.9091)) +(: cnet_isa_edfedbe369 (IsA macadamia_nut macadamia) (STV 1.0 0.9091)) +(: cnet_isa_76ab4eb76a (IsA macao_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_22e3f2c69e (IsA macaque old_world_monkey) (STV 1.0 0.9091)) +(: cnet_isa_e8468fc62a (IsA macaroni pasta) (STV 1.0 0.9091)) +(: cnet_isa_260c82620a (IsA macaroni dandy) (STV 1.0 0.9091)) +(: cnet_isa_cb5abca027 (IsA macaroni_and_cheese pasta) (STV 1.0 0.9091)) +(: cnet_isa_4f1b1e940f (IsA macaroni_salad pasta_salad) (STV 1.0 0.9091)) +(: cnet_isa_3d69d89b56 (IsA macaroon cookie) (STV 1.0 0.9091)) +(: cnet_isa_8e95890286 (IsA macaw parrot) (STV 1.0 0.9091)) +(: cnet_isa_b6ae124151 (IsA mace staff) (STV 1.0 0.9091)) +(: cnet_isa_ca2847cd1f (IsA mace spice) (STV 1.0 0.9091)) +(: cnet_isa_85d30fdb0e (IsA macebearer official) (STV 1.0 0.9091)) +(: cnet_isa_e9617eb4e0 (IsA macedoine dish) (STV 1.0 0.9091)) +(: cnet_isa_d3444949e2 (IsA macedonian slavic) (STV 1.0 0.9091)) +(: cnet_isa_296f102223 (IsA macedonian european) (STV 1.0 0.9091)) +(: cnet_isa_20334be5fc (IsA maceration softening) (STV 1.0 0.9091)) +(: cnet_isa_4958e392e7 (IsA macguffin plot_element) (STV 1.0 0.9091)) +(: cnet_isa_fd6c5d1607 (IsA mach_number ratio) (STV 1.0 0.9091)) +(: cnet_isa_a1b98f3c4f (IsA machaeranthera asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_aa20cb2d0f (IsA machete knife) (STV 1.0 0.9091)) +(: cnet_isa_fd12d0991d (IsA machiavellian follower) (STV 1.0 0.9091)) +(: cnet_isa_0e63f9b15d (IsA machiavellianism autocracy) (STV 1.0 0.9091)) +(: cnet_isa_f4ca566274 (IsA machicolation parapet) (STV 1.0 0.9091)) +(: cnet_isa_cfc0cf303c (IsA machilidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_4474a34672 (IsA machine complex_tool) (STV 1.0 0.9091)) +(: cnet_isa_1fa7f16d1b (IsA machine device) (STV 1.0 0.9091)) +(: cnet_isa_d948f4bcad (IsA machine mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_32eba7e4e8 (IsA machine organization) (STV 1.0 0.9091)) +(: cnet_isa_4ed6eac715 (IsA machine person) (STV 1.0 0.9091)) +(: cnet_isa_686fd2cd16 (IsA machine_bolt bolt) (STV 1.0 0.9091)) +(: cnet_isa_04ef39e9d5 (IsA machine_code code) (STV 1.0 0.9091)) +(: cnet_isa_fca4d9ec89 (IsA machine_displayable_text electronic_text) (STV 1.0 0.9091)) +(: cnet_isa_e7f47a9074 (IsA machine_gun automatic_firearm) (STV 1.0 0.9091)) +(: cnet_isa_245766ae5b (IsA machine_politician politician) (STV 1.0 0.9091)) +(: cnet_isa_e7f29e68c8 (IsA machine_readable_dictionary lexical_database) (STV 1.0 0.9091)) +(: cnet_isa_817e987453 (IsA machine_readable_text electronic_text) (STV 1.0 0.9091)) +(: cnet_isa_d9aae4b404 (IsA machine_screw screw) (STV 1.0 0.9091)) +(: cnet_isa_aa70147d6c (IsA machine_shop workshop) (STV 1.0 0.9091)) +(: cnet_isa_046793f3c0 (IsA machine_stitch embroidery_stitch) (STV 1.0 0.9091)) +(: cnet_isa_82e7c320c1 (IsA machine_tool machine) (STV 1.0 0.9091)) +(: cnet_isa_317fe26a5f (IsA machine_translation artificial_intelligence) (STV 1.0 0.9091)) +(: cnet_isa_6995f0fd07 (IsA machine_translation computational_linguistic) (STV 1.0 0.9091)) +(: cnet_isa_b1dac055da (IsA machinery machine) (STV 1.0 0.9091)) +(: cnet_isa_c6a51bc42c (IsA machinery system) (STV 1.0 0.9091)) +(: cnet_isa_cb70972c45 (IsA machinist_s_vise vise) (STV 1.0 0.9091)) +(: cnet_isa_0f73a685a9 (IsA machinist craftsman) (STV 1.0 0.9091)) +(: cnet_isa_5ed8c13d2d (IsA machismo masculinity) (STV 1.0 0.9091)) +(: cnet_isa_755769e724 (IsA machmeter speedometer) (STV 1.0 0.9091)) +(: cnet_isa_37bf8d4bc7 (IsA macho male) (STV 1.0 0.9091)) +(: cnet_isa_a8280abf11 (IsA machupo_virus arenavirus) (STV 1.0 0.9091)) +(: cnet_isa_2250562082 (IsA macintosh computer) (STV 1.0 0.9091)) +(: cnet_isa_2c4383e7f7 (IsA macintosh raincoat) (STV 1.0 0.9091)) +(: cnet_isa_fb68bf2391 (IsA mackem english_person) (STV 1.0 0.9091)) +(: cnet_isa_2d5d640404 (IsA mackerel scombroid) (STV 1.0 0.9091)) +(: cnet_isa_fe0bebe5f6 (IsA mackerel saltwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_457a5ca3b0 (IsA mackerel_scad scad) (STV 1.0 0.9091)) +(: cnet_isa_dc96b34f00 (IsA mackerel_shark shark) (STV 1.0 0.9091)) +(: cnet_isa_dcf8ac17f3 (IsA mackerel_sky sky) (STV 1.0 0.9091)) +(: cnet_isa_3748485294 (IsA mackinaw blanket) (STV 1.0 0.9091)) +(: cnet_isa_895c2aea6f (IsA mackinaw boat) (STV 1.0 0.9091)) +(: cnet_isa_db1c3e689e (IsA mackinaw coat) (STV 1.0 0.9091)) +(: cnet_isa_635ea0584a (IsA mackinaw fabric) (STV 1.0 0.9091)) +(: cnet_isa_dff494fb7f (IsA mackintosh fabric) (STV 1.0 0.9091)) +(: cnet_isa_f75785654a (IsA mackle impression) (STV 1.0 0.9091)) +(: cnet_isa_504dcfdc33 (IsA macleaya dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1e1997f106 (IsA maclura dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2ec3cc31aa (IsA macon wine) (STV 1.0 0.9091)) +(: cnet_isa_d2a46c88f7 (IsA macoun mcintosh) (STV 1.0 0.9091)) +(: cnet_isa_dd93e9b856 (IsA macowanite fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_1f9bc462a5 (IsA macowanite_americanus fungus) (STV 1.0 0.9091)) +(: cnet_isa_7e88b74a08 (IsA macrame lace) (STV 1.0 0.9091)) +(: cnet_isa_80aa05d9ee (IsA macrencephaly abnormality) (STV 1.0 0.9091)) +(: cnet_isa_27e1c69e1e (IsA macro instruction) (STV 1.0 0.9091)) +(: cnet_isa_5cb689a032 (IsA macrobiotic_diet vegetarianism) (STV 1.0 0.9091)) +(: cnet_isa_1918b83529 (IsA macrobiotic dietetic) (STV 1.0 0.9091)) +(: cnet_isa_533a520c41 (IsA macrocephalon bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_5dfeb4c04c (IsA macrocephaly abnormality) (STV 1.0 0.9091)) +(: cnet_isa_b4af56bf5f (IsA macrocheira arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_628c25e9ce (IsA macroclemy reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_f24a2e2851 (IsA macrocytic_anemia anemia) (STV 1.0 0.9091)) +(: cnet_isa_32111b65bf (IsA macrocytosis pathology) (STV 1.0 0.9091)) +(: cnet_isa_0a19454c66 (IsA macrodactylus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_0b0e34df5e (IsA macroeconomic economic) (STV 1.0 0.9091)) +(: cnet_isa_c2e4ea9e6b (IsA macroeconomist economist) (STV 1.0 0.9091)) +(: cnet_isa_257d95f989 (IsA macroevolution evolution) (STV 1.0 0.9091)) +(: cnet_isa_a48cf6c803 (IsA macroglossia birth_defect) (STV 1.0 0.9091)) +(: cnet_isa_2d6962f37f (IsA macromolecule molecule) (STV 1.0 0.9091)) +(: cnet_isa_5cd8c3f43d (IsA macromolecule organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_4266cb2938 (IsA macron diacritical_mark) (STV 1.0 0.9091)) +(: cnet_isa_d103bb2ba5 (IsA macronecte bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_eacd3d6eb7 (IsA macrophage phagocyte) (STV 1.0 0.9091)) +(: cnet_isa_ed66134961 (IsA macropodidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_e588eba795 (IsA macropus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_84884d035c (IsA macrorhamphosidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_2213e6773f (IsA macrothelypteris fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_baa7603723 (IsA macrotis mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_0cdb8638e6 (IsA macrotus leafnose_bat) (STV 1.0 0.9091)) +(: cnet_isa_ad59c105a8 (IsA macrotyloma rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ab3188333b (IsA macrouridae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_ddfc7e392e (IsA macrozamia cycad) (STV 1.0 0.9091)) +(: cnet_isa_365a2b8446 (IsA macrozoarce fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_f8fa434956 (IsA macula area) (STV 1.0 0.9091)) +(: cnet_isa_b329952258 (IsA macular_degeneration degeneration) (STV 1.0 0.9091)) +(: cnet_isa_dc14be5d16 (IsA macular_degeneration eye_disease) (STV 1.0 0.9091)) +(: cnet_isa_c7d14ed519 (IsA macular_edema eye_disease) (STV 1.0 0.9091)) +(: cnet_isa_86d402adcd (IsA macule spot) (STV 1.0 0.9091)) +(: cnet_isa_f1109840ac (IsA macumba cult) (STV 1.0 0.9091)) +(: cnet_isa_981dbcf1be (IsA macumba popular_music) (STV 1.0 0.9091)) +(: cnet_isa_c208c970ff (IsA macushla darling) (STV 1.0 0.9091)) +(: cnet_isa_42860aef45 (IsA mad_scientist person) (STV 1.0 0.9339)) +(: cnet_isa_59d378f8c3 (IsA madagascan african) (STV 1.0 0.9091)) +(: cnet_isa_d5b6578280 (IsA madagascar_cat lemur) (STV 1.0 0.9091)) +(: cnet_isa_cbff260ca9 (IsA madagascar_franc franc) (STV 1.0 0.9091)) +(: cnet_isa_bd182b92d0 (IsA madagascar_jasmine stephanotis) (STV 1.0 0.9091)) +(: cnet_isa_e65c037fe2 (IsA madam businesswoman) (STV 1.0 0.9091)) +(: cnet_isa_dd4bc3cce7 (IsA madame dame) (STV 1.0 0.9091)) +(: cnet_isa_d7f8d36a00 (IsA madder madderwort) (STV 1.0 0.9091)) +(: cnet_isa_960d9c35c1 (IsA madderwort angiosperm) (STV 1.0 0.9091)) +(: cnet_isa_45ad536ea5 (IsA madeira fortified_wine) (STV 1.0 0.9091)) +(: cnet_isa_bc001ac062 (IsA madeira_cake sponge_cake) (STV 1.0 0.9091)) +(: cnet_isa_232ec1e19d (IsA madia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7cfab2d466 (IsA madia_oil vegetable_oil) (STV 1.0 0.9091)) +(: cnet_isa_9a1d028bc6 (IsA madonna songwriter) (STV 1.0 0.9091)) +(: cnet_isa_8434101a65 (IsA madonna_lily lily) (STV 1.0 0.9091)) +(: cnet_isa_e763bcaf77 (IsA madoqua mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_7d1913fa2d (IsA madra fabric) (STV 1.0 0.9091)) +(: cnet_isa_ebfca3b923 (IsA madrasa religious_school) (STV 1.0 0.9091)) +(: cnet_isa_3682c7197e (IsA madreporaria animal_order) (STV 1.0 0.9091)) +(: cnet_isa_2905490f2c (IsA madrigal partsong) (STV 1.0 0.9091)) +(: cnet_isa_33defb389f (IsA madrigalist singer) (STV 1.0 0.9091)) +(: cnet_isa_6bdf55d9c9 (IsA madrilene consomme) (STV 1.0 0.9091)) +(: cnet_isa_554641eabf (IsA madrona arbutus) (STV 1.0 0.9091)) +(: cnet_isa_9d18e6e241 (IsA madwoman lunatic) (STV 1.0 0.9091)) +(: cnet_isa_ac7d5c37e7 (IsA mae_west life_jacket) (STV 1.0 0.9091)) +(: cnet_isa_a4f9ce2709 (IsA maeandra coelenterate_genus) (STV 1.0 0.9091)) +(: cnet_isa_8b118b031b (IsA maenad woman) (STV 1.0 0.9091)) +(: cnet_isa_5f03228872 (IsA maestro artist) (STV 1.0 0.9091)) +(: cnet_isa_3e559ea84a (IsA mafia clique) (STV 1.0 0.9091)) +(: cnet_isa_a902b14c7e (IsA mafia syndicate) (STV 1.0 0.9091)) +(: cnet_isa_ab6faee6d3 (IsA mafia organized_crime) (STV 1.0 0.9091)) +(: cnet_isa_77cde63f91 (IsA mafioso criminal) (STV 1.0 0.9091)) +(: cnet_isa_e5fb74a040 (IsA mafioso sicilian) (STV 1.0 0.9091)) +(: cnet_isa_877221b3a4 (IsA magadhan sanskrit) (STV 1.0 0.9091)) +(: cnet_isa_fda53749da (IsA magazine book) (STV 1.0 0.9091)) +(: cnet_isa_054b5ded86 (IsA magazine product) (STV 1.0 0.9091)) +(: cnet_isa_773c4475e5 (IsA magazine storehouse) (STV 1.0 0.9091)) +(: cnet_isa_d34308b0bd (IsA magazine supply_chamber) (STV 1.0 0.9091)) +(: cnet_isa_d4d9c9ed4b (IsA magazine press) (STV 1.0 0.9091)) +(: cnet_isa_921f236871 (IsA magazine publication) (STV 1.0 0.9091)) +(: cnet_isa_5b4e986169 (IsA magazine publisher) (STV 1.0 0.9091)) +(: cnet_isa_317a222ba7 (IsA magazine_article article) (STV 1.0 0.9091)) +(: cnet_isa_d2b087f118 (IsA magazine_rack rack) (STV 1.0 0.9091)) +(: cnet_isa_6d3d54072f (IsA magazine about_boat) (STV 1.0 0.9091)) +(: cnet_isa_cb3ba169d9 (IsA magdalen sinner) (STV 1.0 0.9091)) +(: cnet_isa_efbe1a037d (IsA magenta colour) (STV 1.0 0.9091)) +(: cnet_isa_8f1ec5ac74 (IsA maggot grub) (STV 1.0 0.9091)) +(: cnet_isa_d994a52f24 (IsA magh hindu_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_9b83c7cc0a (IsA magic illusion) (STV 1.0 0.9091)) +(: cnet_isa_4f509fd5b8 (IsA magic supernaturalism) (STV 1.0 0.9091)) +(: cnet_isa_2d5033e62b (IsA magic_bullet remedy) (STV 1.0 0.9091)) +(: cnet_isa_0f8849265e (IsA magic_lantern slide_projector) (STV 1.0 0.9091)) +(: cnet_isa_ec9ec3bf08 (IsA magic_number atomic_number) (STV 1.0 0.9091)) +(: cnet_isa_c59640397e (IsA magic_realism genre) (STV 1.0 0.9091)) +(: cnet_isa_0d7f00ebbe (IsA magic_square square_matrix) (STV 1.0 0.9091)) +(: cnet_isa_2dcd34330e (IsA magic_trick performance) (STV 1.0 0.9091)) +(: cnet_isa_e9315e7ec8 (IsA magical_ability ability) (STV 1.0 0.9091)) +(: cnet_isa_14da9fbfd6 (IsA magician performer) (STV 1.0 0.9091)) +(: cnet_isa_70886eb4fc (IsA magicicada arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_6937599ffd (IsA magistracy position) (STV 1.0 0.9091)) +(: cnet_isa_d54de8ba71 (IsA magistrate judge) (STV 1.0 0.9091)) +(: cnet_isa_b98d1f6747 (IsA magma rock) (STV 1.0 0.9091)) +(: cnet_isa_f624b38ac7 (IsA magnesite mineral) (STV 1.0 0.9091)) +(: cnet_isa_ea6d641c9e (IsA magnesium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_eaac26b30f (IsA magnesium_bicarbonate bicarbonate) (STV 1.0 0.9091)) +(: cnet_isa_4c8b3629d2 (IsA magnesium_carbonate carbonate) (STV 1.0 0.9091)) +(: cnet_isa_edb9db03e9 (IsA magnesium_hydroxide hydroxide) (STV 1.0 0.9091)) +(: cnet_isa_e1225e6943 (IsA magnesium_nitride nitride) (STV 1.0 0.9091)) +(: cnet_isa_99dc1b6312 (IsA magnesium_sulfate sulfate) (STV 1.0 0.9091)) +(: cnet_isa_5d5eaa771e (IsA magnet device) (STV 1.0 0.9091)) +(: cnet_isa_4810d4945d (IsA magnetic_bottle container) (STV 1.0 0.9091)) +(: cnet_isa_14b8a7b322 (IsA magnetic_bubble_memory non_volatile_storage) (STV 1.0 0.9091)) +(: cnet_isa_b4cbc1c4db (IsA magnetic_compass compass) (STV 1.0 0.9091)) +(: cnet_isa_c82b624a3c (IsA magnetic_core torus) (STV 1.0 0.9091)) +(: cnet_isa_c45db37d9e (IsA magnetic_core_memory random_access_memory) (STV 1.0 0.9091)) +(: cnet_isa_6f214b3e76 (IsA magnetic_declination angle) (STV 1.0 0.9091)) +(: cnet_isa_4c02a7edb5 (IsA magnetic_dipole dipole) (STV 1.0 0.9091)) +(: cnet_isa_f1bfb5f16b (IsA magnetic_dipole_moment dipole_moment) (STV 1.0 0.9091)) +(: cnet_isa_160bef3885 (IsA magnetic_disk memory_device) (STV 1.0 0.9091)) +(: cnet_isa_cd95cb3f0a (IsA magnetic_field field) (STV 1.0 0.9091)) +(: cnet_isa_06ecec2f31 (IsA magnetic_field_strength field_strength) (STV 1.0 0.9091)) +(: cnet_isa_26802cb344 (IsA magnetic_flux magnetization) (STV 1.0 0.9091)) +(: cnet_isa_fd3a2280fb (IsA magnetic_head electromagnet) (STV 1.0 0.9091)) +(: cnet_isa_3783636343 (IsA magnetic_ink ink) (STV 1.0 0.9091)) +(: cnet_isa_4131f8c149 (IsA magnetic_levitation rail_technology) (STV 1.0 0.9091)) +(: cnet_isa_4459df6e35 (IsA magnetic_line_of_force line_of_force) (STV 1.0 0.9091)) +(: cnet_isa_0496403ade (IsA magnetic_meridian meridian) (STV 1.0 0.9091)) +(: cnet_isa_2c4a2a2862 (IsA magnetic_mine floating_mine) (STV 1.0 0.9091)) +(: cnet_isa_49c0c9b4ed (IsA magnetic_moment torsion) (STV 1.0 0.9091)) +(: cnet_isa_b5f24e45e8 (IsA magnetic_monopole particle) (STV 1.0 0.9091)) +(: cnet_isa_cff804b885 (IsA magnetic_needle magnet) (STV 1.0 0.9091)) +(: cnet_isa_24a0c457c0 (IsA magnetic_pole geographic_point) (STV 1.0 0.9091)) +(: cnet_isa_fc78420bb4 (IsA magnetic_recorder recorder) (STV 1.0 0.9091)) +(: cnet_isa_1941cb0d46 (IsA magnetic_resonance resonance) (STV 1.0 0.9091)) +(: cnet_isa_b012d32425 (IsA magnetic_resonance_imaging imaging) (STV 1.0 0.9091)) +(: cnet_isa_e4477c5b77 (IsA magnetic_storage_medium storage_medium) (STV 1.0 0.9091)) +(: cnet_isa_02e3fa3546 (IsA magnetic_storm perturbation) (STV 1.0 0.9091)) +(: cnet_isa_8109241e6d (IsA magnetic_stripe magnetic_tape) (STV 1.0 0.9091)) +(: cnet_isa_a2e98d749d (IsA magnetic_tape memory_device) (STV 1.0 0.9091)) +(: cnet_isa_d15c271520 (IsA magnetism geophysic) (STV 1.0 0.9091)) +(: cnet_isa_dd445795f7 (IsA magnetism attraction) (STV 1.0 0.9091)) +(: cnet_isa_96e1eec635 (IsA magnetite iron_ore) (STV 1.0 0.9091)) +(: cnet_isa_6741d50fe3 (IsA magnetization physical_property) (STV 1.0 0.9091)) +(: cnet_isa_704c18a1e3 (IsA magnetization natural_process) (STV 1.0 0.9091)) +(: cnet_isa_eda05b5477 (IsA magnetization measure) (STV 1.0 0.9091)) +(: cnet_isa_ef3a5a932c (IsA magneto generator) (STV 1.0 0.9091)) +(: cnet_isa_9413c6ec84 (IsA magnetograph scientific_instrument) (STV 1.0 0.9091)) +(: cnet_isa_6505d5b450 (IsA magnetohydrodynamic hydrodynamic) (STV 1.0 0.9091)) +(: cnet_isa_accaea0371 (IsA magnetometer meter) (STV 1.0 0.9091)) +(: cnet_isa_1f39e766c9 (IsA magnetomotive_force force) (STV 1.0 0.9091)) +(: cnet_isa_17ca345d4f (IsA magnetomotive_force_unit electromagnetic_unit) (STV 1.0 0.9091)) +(: cnet_isa_35a33cc4b9 (IsA magneton magnetomotive_force_unit) (STV 1.0 0.9091)) +(: cnet_isa_af65d76423 (IsA magnetosphere magnetic_field) (STV 1.0 0.9091)) +(: cnet_isa_b51753ad83 (IsA magnetron tube) (STV 1.0 0.9091)) +(: cnet_isa_7114dc1283 (IsA magnification expansion) (STV 1.0 0.9091)) +(: cnet_isa_1aab61a896 (IsA magnification ratio) (STV 1.0 0.9091)) +(: cnet_isa_333420b70d (IsA magnificence elegance) (STV 1.0 0.9091)) +(: cnet_isa_e34a6b3400 (IsA magnifico important_person) (STV 1.0 0.9091)) +(: cnet_isa_3fb025af3d (IsA magnifier scientific_instrument) (STV 1.0 0.9091)) +(: cnet_isa_9203b0c568 (IsA magnitude importance) (STV 1.0 0.9091)) +(: cnet_isa_52416eff6f (IsA magnitude property) (STV 1.0 0.9091)) +(: cnet_isa_cd2ed24c0f (IsA magnitude_relation relation) (STV 1.0 0.9091)) +(: cnet_isa_4ba17c24c2 (IsA magnolia angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_dfdebd49b4 (IsA magnolia bark) (STV 1.0 0.9091)) +(: cnet_isa_c46d012463 (IsA magnoliaceae magnoliid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_7529603e50 (IsA magnoliid_dicot_family dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_ba30c12315 (IsA magnoliid_dicot_genus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d0a0308db1 (IsA magnoliidae class) (STV 1.0 0.9091)) +(: cnet_isa_6c33913b9a (IsA magnum wine_bottle) (STV 1.0 0.9091)) +(: cnet_isa_6cb93f9d7d (IsA magnum_opus work_of_art) (STV 1.0 0.9091)) +(: cnet_isa_1ecd2fa08c (IsA magnus_hitch rolling_hitch) (STV 1.0 0.9091)) +(: cnet_isa_d05dba2227 (IsA magpie corvine_bird) (STV 1.0 0.9091)) +(: cnet_isa_91a1e99396 (IsA magpie hoarder) (STV 1.0 0.9091)) +(: cnet_isa_f7a9c1c256 (IsA maguey agave) (STV 1.0 0.9091)) +(: cnet_isa_6e923a83fe (IsA magus priest) (STV 1.0 0.9091)) +(: cnet_isa_dd2f573d46 (IsA magus sorcerer) (STV 1.0 0.9091)) +(: cnet_isa_172bdec846 (IsA magyar european) (STV 1.0 0.9091)) +(: cnet_isa_0351270d0b (IsA mah_jongg board_game) (STV 1.0 0.9091)) +(: cnet_isa_4ef39bb656 (IsA maha dhegiha) (STV 1.0 0.9091)) +(: cnet_isa_f83ad01aff (IsA maharaja prince) (STV 1.0 0.9091)) +(: cnet_isa_2cfa054c79 (IsA maharani princess) (STV 1.0 0.9091)) +(: cnet_isa_d42452d029 (IsA mahatma sage) (STV 1.0 0.9091)) +(: cnet_isa_0923771403 (IsA mahayana buddhism) (STV 1.0 0.9091)) +(: cnet_isa_af9f2995a8 (IsA mahayanism theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_73c03ddf99 (IsA mahayanist disciple) (STV 1.0 0.9091)) +(: cnet_isa_3eb7a6e0b7 (IsA mahdism islam) (STV 1.0 0.9091)) +(: cnet_isa_40f255efca (IsA mahdist disciple) (STV 1.0 0.9091)) +(: cnet_isa_95546fdc15 (IsA mahican algonquin) (STV 1.0 0.9091)) +(: cnet_isa_e369863db2 (IsA mahoe hibiscus) (STV 1.0 0.9091)) +(: cnet_isa_15d17f4203 (IsA mahogany wood) (STV 1.0 0.9091)) +(: cnet_isa_ab3c77c54a (IsA mahogany tree) (STV 1.0 0.9091)) +(: cnet_isa_4b4fc42121 (IsA mahonia magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2a11ccc584 (IsA mahout driver) (STV 1.0 0.9091)) +(: cnet_isa_baae4e7831 (IsA mahratta indian) (STV 1.0 0.9091)) +(: cnet_isa_58a6d39eda (IsA mahuang ephedra) (STV 1.0 0.9091)) +(: cnet_isa_45cacd8e27 (IsA maianthemum liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e54390d9c4 (IsA maid servant) (STV 1.0 0.9091)) +(: cnet_isa_e1a6e8e988 (IsA maid domestic) (STV 1.0 0.9091)) +(: cnet_isa_a50f0c7ee5 (IsA maid girl) (STV 1.0 0.9091)) +(: cnet_isa_3231553c0e (IsA maiden_aunt aunt) (STV 1.0 0.9091)) +(: cnet_isa_f6254d0118 (IsA maiden_blue_eyed_mary wildflower) (STV 1.0 0.9091)) +(: cnet_isa_c93f45c26a (IsA maiden_flight flight) (STV 1.0 0.9091)) +(: cnet_isa_1537d06a4c (IsA maiden_name surname) (STV 1.0 0.9091)) +(: cnet_isa_c156fb4e50 (IsA maiden_over over) (STV 1.0 0.9091)) +(: cnet_isa_7073c4e6c8 (IsA maiden_pink pink) (STV 1.0 0.9091)) +(: cnet_isa_0d5b51ef53 (IsA maiden_voyage ocean_trip) (STV 1.0 0.9091)) +(: cnet_isa_c50c335b88 (IsA maidenhair fern) (STV 1.0 0.9091)) +(: cnet_isa_97e7c93dba (IsA maidenhair_spleenwort spleenwort) (STV 1.0 0.9091)) +(: cnet_isa_ed90b2f13c (IsA maidenliness femininity) (STV 1.0 0.9091)) +(: cnet_isa_95270090b6 (IsA maidu penutian) (STV 1.0 0.9091)) +(: cnet_isa_ac52abd2b0 (IsA maigre sciaenid_fish) (STV 1.0 0.9091)) +(: cnet_isa_016b66dd42 (IsA mail communication) (STV 1.0 0.9091)) +(: cnet_isa_8b15fe0686 (IsA mail conveyance) (STV 1.0 0.9091)) +(: cnet_isa_c1b85f9708 (IsA mail message) (STV 1.0 0.9091)) +(: cnet_isa_714813b184 (IsA mail collection) (STV 1.0 0.9091)) +(: cnet_isa_2aab0b6a68 (IsA mail_call roll_call) (STV 1.0 0.9091)) +(: cnet_isa_a69fc2bf09 (IsA mail_car car) (STV 1.0 0.9091)) +(: cnet_isa_d16332486c (IsA mail_fraud fraud) (STV 1.0 0.9091)) +(: cnet_isa_07ff7c7e2a (IsA mail_order order) (STV 1.0 0.9091)) +(: cnet_isa_1a7d0eb104 (IsA mail_order_buying buying) (STV 1.0 0.9091)) +(: cnet_isa_70c3d47e3b (IsA mail_slot slot) (STV 1.0 0.9091)) +(: cnet_isa_674ebf18ed (IsA mail_train train) (STV 1.0 0.9091)) +(: cnet_isa_bdef1b7c45 (IsA mailbag bag) (STV 1.0 0.9091)) +(: cnet_isa_5be200f3d1 (IsA mailbag pouch) (STV 1.0 0.9091)) +(: cnet_isa_4dfeb471fb (IsA mailboat boat) (STV 1.0 0.9091)) +(: cnet_isa_b9c6ea3bb3 (IsA mailbox container_for_letter) (STV 1.0 0.9091)) +(: cnet_isa_0ead25e5d5 (IsA mailbox box) (STV 1.0 0.9091)) +(: cnet_isa_ee23a09075 (IsA maildrop drop) (STV 1.0 0.9091)) +(: cnet_isa_2bd8bc7e18 (IsA mailer container) (STV 1.0 0.9091)) +(: cnet_isa_c6a45e7c36 (IsA mailer ad) (STV 1.0 0.9091)) +(: cnet_isa_f61cf939b3 (IsA mailer person) (STV 1.0 0.9091)) +(: cnet_isa_95c6ca1527 (IsA mailing transmission) (STV 1.0 0.9091)) +(: cnet_isa_000c94bca2 (IsA mailing mail) (STV 1.0 0.9091)) +(: cnet_isa_7f824b19f0 (IsA mailing_address address) (STV 1.0 0.9091)) +(: cnet_isa_9713568132 (IsA mailing_list list) (STV 1.0 0.9091)) +(: cnet_isa_369a085366 (IsA maillot swimsuit) (STV 1.0 0.9091)) +(: cnet_isa_8cd8e45499 (IsA maillot tight) (STV 1.0 0.9091)) +(: cnet_isa_21e3e85035 (IsA mailman deliveryman) (STV 1.0 0.9091)) +(: cnet_isa_8d72f1e96e (IsA mailsorter sorter) (STV 1.0 0.9091)) +(: cnet_isa_b3808a74c2 (IsA main pipe) (STV 1.0 0.9091)) +(: cnet_isa_62ee4c69f2 (IsA main body_of_water) (STV 1.0 0.9091)) +(: cnet_isa_0823c4796e (IsA main_clause clause) (STV 1.0 0.9091)) +(: cnet_isa_1ec3e5840e (IsA main_course mainsail) (STV 1.0 0.9091)) +(: cnet_isa_b3b70aaab3 (IsA main_deck deck) (STV 1.0 0.9091)) +(: cnet_isa_114212303d (IsA main_diagonal diagonal) (STV 1.0 0.9091)) +(: cnet_isa_004ebd1c71 (IsA main_drag main_street) (STV 1.0 0.9091)) +(: cnet_isa_195ea3ebb2 (IsA main_line path) (STV 1.0 0.9091)) +(: cnet_isa_d43b601a19 (IsA main_rotor rotor) (STV 1.0 0.9091)) +(: cnet_isa_860577107e (IsA main_street street) (STV 1.0 0.9091)) +(: cnet_isa_daad3202f5 (IsA main_street town) (STV 1.0 0.9091)) +(: cnet_isa_6ee8187d11 (IsA main_topmast topmast) (STV 1.0 0.9091)) +(: cnet_isa_cdb3f8652a (IsA main_topsail sail) (STV 1.0 0.9091)) +(: cnet_isa_e599fd369c (IsA main_yard yard) (STV 1.0 0.9091)) +(: cnet_isa_f5f787dedc (IsA maine state) (STV 1.0 0.9572)) +(: cnet_isa_bb7ed7cabb (IsA mainframe digital_computer) (STV 1.0 0.9091)) +(: cnet_isa_1d628483a9 (IsA mainland land) (STV 1.0 0.9091)) +(: cnet_isa_653914bfbb (IsA mainmast mast) (STV 1.0 0.9091)) +(: cnet_isa_4ff0caa029 (IsA mainsail sail) (STV 1.0 0.9091)) +(: cnet_isa_487afafa3e (IsA mainspring spring) (STV 1.0 0.9091)) +(: cnet_isa_384f18133a (IsA mainstay forestay) (STV 1.0 0.9091)) +(: cnet_isa_9f6860afa6 (IsA mainstream thought) (STV 1.0 0.9091)) +(: cnet_isa_a6fa699303 (IsA maintenance support) (STV 1.0 0.9091)) +(: cnet_isa_228d9af393 (IsA maintenance_man mender) (STV 1.0 0.9091)) +(: cnet_isa_2540b06da3 (IsA maisonette apartment) (STV 1.0 0.9091)) +(: cnet_isa_36c8f5f244 (IsA maisonette house) (STV 1.0 0.9091)) +(: cnet_isa_7353ab098f (IsA maja arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_5b9f5b972a (IsA majidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_3a2382b4df (IsA majolica earthenware) (STV 1.0 0.9091)) +(: cnet_isa_394031121a (IsA major discipline) (STV 1.0 0.9091)) +(: cnet_isa_119cf2681a (IsA major commissioned_military_officer) (STV 1.0 0.9091)) +(: cnet_isa_3e1cdd185e (IsA major student) (STV 1.0 0.9091)) +(: cnet_isa_50f84f2644 (IsA major_axis axis) (STV 1.0 0.9091)) +(: cnet_isa_2ff300717b (IsA major_depressive_episode depressive_disorder) (STV 1.0 0.9091)) +(: cnet_isa_0f6ba63e1b (IsA major_domo servant) (STV 1.0 0.9091)) +(: cnet_isa_81ff4a2c10 (IsA major_fast_day fast_day) (STV 1.0 0.9091)) +(: cnet_isa_ef73cdb846 (IsA major_form_class part_of_speech) (STV 1.0 0.9091)) +(: cnet_isa_0c914dccd8 (IsA major_general general_officer) (STV 1.0 0.9091)) +(: cnet_isa_e543f4213c (IsA major_key key) (STV 1.0 0.9091)) +(: cnet_isa_ef41152a34 (IsA major_league league) (STV 1.0 0.9091)) +(: cnet_isa_1c8b4c3a08 (IsA major_league_team team) (STV 1.0 0.9091)) +(: cnet_isa_0f1b43c7f8 (IsA major_leaguer ballplayer) (STV 1.0 0.9091)) +(: cnet_isa_fd167ae53d (IsA major_lobe lobe) (STV 1.0 0.9091)) +(: cnet_isa_c625414ea1 (IsA major_premise premise) (STV 1.0 0.9091)) +(: cnet_isa_23d6364bca (IsA major_scale mode) (STV 1.0 0.9091)) +(: cnet_isa_dc612c632e (IsA major_suit suit) (STV 1.0 0.9091)) +(: cnet_isa_749b45d40e (IsA major_surgery operation) (STV 1.0 0.9091)) +(: cnet_isa_4cd59bede5 (IsA major_term term) (STV 1.0 0.9091)) +(: cnet_isa_41afc5b39a (IsA major_tranquilizer tranquilizer) (STV 1.0 0.9091)) +(: cnet_isa_79122643c1 (IsA majorana asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8209eb511e (IsA majority number) (STV 1.0 0.9091)) +(: cnet_isa_90e7657227 (IsA majority relative_quantity) (STV 1.0 0.9091)) +(: cnet_isa_edcc23bd83 (IsA majority age) (STV 1.0 0.9091)) +(: cnet_isa_c3eb7e8770 (IsA majority_leader legislator) (STV 1.0 0.9091)) +(: cnet_isa_4aa9869edd (IsA majority_operation threshold_operation) (STV 1.0 0.9091)) +(: cnet_isa_c3ae1740e1 (IsA majority_opinion opinion) (STV 1.0 0.9091)) +(: cnet_isa_95a195cce9 (IsA majority_rule doctrine) (STV 1.0 0.9091)) +(: cnet_isa_9ff865df29 (IsA makaira fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_3ea9a4a86e (IsA make_believe pretense) (STV 1.0 0.9091)) +(: cnet_isa_71899255f2 (IsA makeover beauty_treatment) (STV 1.0 0.9091)) +(: cnet_isa_66f5771bc3 (IsA makeover reconstruction) (STV 1.0 0.9091)) +(: cnet_isa_88bfb579d9 (IsA maker creator) (STV 1.0 0.9091)) +(: cnet_isa_84145b612d (IsA makeready preparation) (STV 1.0 0.9091)) +(: cnet_isa_ef1c83354d (IsA makeshift expedient) (STV 1.0 0.9091)) +(: cnet_isa_be1da498cd (IsA makeup cosmetic) (STV 1.0 0.9091)) +(: cnet_isa_00b26069d9 (IsA makeup event) (STV 1.0 0.9091)) +(: cnet_isa_12e79bc377 (IsA makeweight object) (STV 1.0 0.9091)) +(: cnet_isa_5017a61237 (IsA makeweight weight) (STV 1.0 0.9091)) +(: cnet_isa_1e3cd91374 (IsA making component) (STV 1.0 0.9091)) +(: cnet_isa_caa890d4c6 (IsA making_love valued_human_activity) (STV 1.0 0.9339)) +(: cnet_isa_3c493d9224 (IsA mako mackerel_shark) (STV 1.0 0.9091)) +(: cnet_isa_4e0d82f818 (IsA makomako shrub) (STV 1.0 0.9091)) +(: cnet_isa_c1cefc843a (IsA maksutov_telescope reflecting_telescope) (STV 1.0 0.9091)) +(: cnet_isa_3b14cce0bc (IsA malabsorption assimilation) (STV 1.0 0.9091)) +(: cnet_isa_03fba49cda (IsA malabsorption_syndrome syndrome) (STV 1.0 0.9091)) +(: cnet_isa_69b25b3ce9 (IsA malacanthidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_870f5dc9f8 (IsA malacca cane) (STV 1.0 0.9091)) +(: cnet_isa_dae34462ff (IsA malachite mineral) (STV 1.0 0.9091)) +(: cnet_isa_436fbdb6d0 (IsA malacia pathology) (STV 1.0 0.9091)) +(: cnet_isa_c019a037a2 (IsA malaclemy reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_16ccf00bdc (IsA malacologist zoologist) (STV 1.0 0.9091)) +(: cnet_isa_f642acce29 (IsA malacology zoology) (STV 1.0 0.9091)) +(: cnet_isa_01c48f0b91 (IsA malaconotinae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_4c5059982e (IsA malacopterygii animal_order) (STV 1.0 0.9091)) +(: cnet_isa_305300dc3f (IsA malacosoma arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_457d2b485d (IsA malacostraca class) (STV 1.0 0.9091)) +(: cnet_isa_244c2463c0 (IsA malacostracan_crustacean crustacean) (STV 1.0 0.9091)) +(: cnet_isa_303e4978e0 (IsA malacothamnus dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ffe899011d (IsA maladjustment personality_disorder) (STV 1.0 0.9091)) +(: cnet_isa_60a9b14f8f (IsA malady condition) (STV 1.0 0.9091)) +(: cnet_isa_929faf6932 (IsA malahini newcomer) (STV 1.0 0.9091)) +(: cnet_isa_73a0956961 (IsA malaise discomfort) (STV 1.0 0.9091)) +(: cnet_isa_4d0d830d31 (IsA malamute sled_dog) (STV 1.0 0.9091)) +(: cnet_isa_630da59389 (IsA malapropism misstatement) (STV 1.0 0.9091)) +(: cnet_isa_32a3778e04 (IsA malaria disease) (STV 1.0 0.9091)) +(: cnet_isa_3b41f76e45 (IsA malaria protozoal_infection) (STV 1.0 0.9091)) +(: cnet_isa_cbb5e05d77 (IsA malarial_mosquito mosquito) (STV 1.0 0.9091)) +(: cnet_isa_35450f3987 (IsA malathion_poisoning pesticide_poisoning) (STV 1.0 0.9091)) +(: cnet_isa_fdf4c4d7c4 (IsA malawi_kwacha malawian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_52d7dbc4e4 (IsA malawian african) (STV 1.0 0.9091)) +(: cnet_isa_ee421e90f2 (IsA malawian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_b192fd845b (IsA malaxis monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_793bb0f6ce (IsA malay western_malayo_polynesian) (STV 1.0 0.9091)) +(: cnet_isa_8747c6c402 (IsA malayalam south_dravidian) (STV 1.0 0.9091)) +(: cnet_isa_38907f5397 (IsA malayan asiatic) (STV 1.0 0.9091)) +(: cnet_isa_2719be750f (IsA malayan_tapir tapir) (STV 1.0 0.9091)) +(: cnet_isa_9b88687260 (IsA malayo_polynesian austronesian) (STV 1.0 0.9091)) +(: cnet_isa_aa0bea388b (IsA malaysian malay) (STV 1.0 0.9091)) +(: cnet_isa_054ab1825e (IsA malaysian asiatic) (STV 1.0 0.9091)) +(: cnet_isa_b6932850a5 (IsA malaysian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_3e7938b49d (IsA malaysian_state state) (STV 1.0 0.9091)) +(: cnet_isa_fb34d3cd96 (IsA malcolm_stock flower) (STV 1.0 0.9091)) +(: cnet_isa_ad5284d8ed (IsA malcolmia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9ab3621fd1 (IsA malcontent person) (STV 1.0 0.9091)) +(: cnet_isa_5d4e4e8b3e (IsA maldivan asiatic) (STV 1.0 0.9091)) +(: cnet_isa_d3d53f872b (IsA male animal) (STV 1.0 0.9091)) +(: cnet_isa_cdc039ba9a (IsA male person) (STV 1.0 0.9091)) +(: cnet_isa_7adc482f67 (IsA male_aristocrat aristocrat) (STV 1.0 0.9091)) +(: cnet_isa_c9ed5244c7 (IsA male_body human_body) (STV 1.0 0.9091)) +(: cnet_isa_be0872ebc8 (IsA male_bonding bonding) (STV 1.0 0.9091)) +(: cnet_isa_7510cf3952 (IsA male_chauvinism sexism) (STV 1.0 0.9091)) +(: cnet_isa_007fbcbb2c (IsA male_chauvinist antifeminist) (STV 1.0 0.9091)) +(: cnet_isa_3c53f68547 (IsA male_chest thorax) (STV 1.0 0.9091)) +(: cnet_isa_4c3e802500 (IsA male_child male) (STV 1.0 0.9091)) +(: cnet_isa_b5f685fc38 (IsA male_fern wood_fern) (STV 1.0 0.9091)) +(: cnet_isa_8cf7122690 (IsA male_genitalia penis) (STV 1.0 0.9091)) +(: cnet_isa_4d68bb6060 (IsA male_genitalia genitalia) (STV 1.0 0.9091)) +(: cnet_isa_9fa3581ba7 (IsA male_horse horse) (STV 1.0 0.9091)) +(: cnet_isa_c65d7fc77a (IsA male_horse male) (STV 1.0 0.9091)) +(: cnet_isa_ecaca3c294 (IsA male_hypogonadism hypogonadism) (STV 1.0 0.9091)) +(: cnet_isa_3bfb1c9be3 (IsA male_internal_reproductive_organ reproductive_organ) (STV 1.0 0.9091)) +(: cnet_isa_8a3dfe94f8 (IsA male_offspring child) (STV 1.0 0.9091)) +(: cnet_isa_c522ed5271 (IsA male_offspring male) (STV 1.0 0.9091)) +(: cnet_isa_3118a7d517 (IsA male_orchis orchis) (STV 1.0 0.9091)) +(: cnet_isa_e584e01c9f (IsA male_orgasm orgasm) (STV 1.0 0.9091)) +(: cnet_isa_4b3a88d719 (IsA male_patterned_baldness baldness) (STV 1.0 0.9091)) +(: cnet_isa_521d06b3de (IsA male_reproductive_gland reproductive_organ) (STV 1.0 0.9091)) +(: cnet_isa_28930c88c9 (IsA male_reproductive_system reproductive_system) (STV 1.0 0.9091)) +(: cnet_isa_57e16ba678 (IsA male_sibling kinsman) (STV 1.0 0.9091)) +(: cnet_isa_a25680ea96 (IsA maleate antidepressant) (STV 1.0 0.9091)) +(: cnet_isa_a618024a3b (IsA maleate ester) (STV 1.0 0.9091)) +(: cnet_isa_1b77d00f72 (IsA maleberry shrub) (STV 1.0 0.9091)) +(: cnet_isa_eb73591a46 (IsA malecite algonquian) (STV 1.0 0.9091)) +(: cnet_isa_03fcf1e9df (IsA malecite algonquin) (STV 1.0 0.9091)) +(: cnet_isa_d94620c0df (IsA maleficence evil) (STV 1.0 0.9091)) +(: cnet_isa_7e01ca3870 (IsA maleficence malevolence) (STV 1.0 0.9091)) +(: cnet_isa_5c53edbba3 (IsA maleic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_4a0bce4fc0 (IsA maleness sex) (STV 1.0 0.9091)) +(: cnet_isa_629a98e28d (IsA maleo megapode) (STV 1.0 0.9091)) +(: cnet_isa_2a1a8a496e (IsA malevolence evil) (STV 1.0 0.9091)) +(: cnet_isa_30028ac283 (IsA malevolence hate) (STV 1.0 0.9091)) +(: cnet_isa_20d948a1c3 (IsA malevolent_program program) (STV 1.0 0.9091)) +(: cnet_isa_fdb8fdd5ef (IsA malfeasance wrongdoing) (STV 1.0 0.9091)) +(: cnet_isa_2a98ccf5da (IsA malfeasant wrongdoer) (STV 1.0 0.9091)) +(: cnet_isa_794bf14baa (IsA malformation failure) (STV 1.0 0.9091)) +(: cnet_isa_ae62c39d92 (IsA malfunction failure) (STV 1.0 0.9091)) +(: cnet_isa_86532d1a7a (IsA malheur_wire_lettuce crucifer) (STV 1.0 0.9091)) +(: cnet_isa_ee531d92cb (IsA mali_franc franc) (STV 1.0 0.9091)) +(: cnet_isa_474dec810e (IsA malian african) (STV 1.0 0.9091)) +(: cnet_isa_d056f11e2c (IsA malice malevolence) (STV 1.0 0.9091)) +(: cnet_isa_1ce6958f69 (IsA malignancy disease) (STV 1.0 0.9091)) +(: cnet_isa_9906c15fb6 (IsA malignant_hypertension high_blood_pressure) (STV 1.0 0.9091)) +(: cnet_isa_5d177a0e70 (IsA malignant_hyperthermia autosomal_dominant_disease) (STV 1.0 0.9091)) +(: cnet_isa_946678bc6f (IsA malignant_tumor malignancy) (STV 1.0 0.9091)) +(: cnet_isa_b5238f8fce (IsA malignant_tumor tumor) (STV 1.0 0.9091)) +(: cnet_isa_723b95dbe6 (IsA malignity evil) (STV 1.0 0.9091)) +(: cnet_isa_b0b01cbb02 (IsA malik leader) (STV 1.0 0.9091)) +(: cnet_isa_e735d3eb09 (IsA malingerer slacker) (STV 1.0 0.9091)) +(: cnet_isa_cadb4a9a5b (IsA malingering evasion) (STV 1.0 0.9091)) +(: cnet_isa_d446062aae (IsA malinois belgian_sheepdog) (STV 1.0 0.9091)) +(: cnet_isa_c76d2f90b3 (IsA mallard duck) (STV 1.0 0.9091)) +(: cnet_isa_2c04828e2d (IsA malleability physical_property) (STV 1.0 0.9091)) +(: cnet_isa_23db1a84f2 (IsA mallee eucalyptus) (STV 1.0 0.9091)) +(: cnet_isa_a7a31074c5 (IsA mallee_fowl megapode) (STV 1.0 0.9091)) +(: cnet_isa_b0f7939b55 (IsA mallee_hen mallee_fowl) (STV 1.0 0.9091)) +(: cnet_isa_203c0dc1e4 (IsA mallet drumstick) (STV 1.0 0.9091)) +(: cnet_isa_9e6b84455b (IsA mallet hammer) (STV 1.0 0.9091)) +(: cnet_isa_c53374bfed (IsA mallet sport_implement) (STV 1.0 0.9091)) +(: cnet_isa_f970e9172a (IsA malleus auditory_ossicle) (STV 1.0 0.9091)) +(: cnet_isa_1261f93ee3 (IsA mallophaga animal_order) (STV 1.0 0.9091)) +(: cnet_isa_b1f1f86f4b (IsA mallotus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_83b4a1ed0c (IsA mallow shrub) (STV 1.0 0.9091)) +(: cnet_isa_ca1f4cbfc9 (IsA malmsey madeira) (STV 1.0 0.9091)) +(: cnet_isa_07d6017a27 (IsA malnutrition deficiency_disease) (STV 1.0 0.9091)) +(: cnet_isa_ef0394d5e3 (IsA malocclusion disorder) (STV 1.0 0.9091)) +(: cnet_isa_2d7d095251 (IsA malodor smell) (STV 1.0 0.9091)) +(: cnet_isa_fdfdd4eb60 (IsA malodorousness olfactory_property) (STV 1.0 0.9091)) +(: cnet_isa_720c5ef4b1 (IsA malope mallow) (STV 1.0 0.9091)) +(: cnet_isa_fa4bd55be9 (IsA malopterurus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_6235a73b4f (IsA malosma dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_991c770ae5 (IsA malpighia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b901a35230 (IsA malpighiaceae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_d39f08030f (IsA malpighian_body capsule) (STV 1.0 0.9091)) +(: cnet_isa_64e9f16266 (IsA malposed_tooth tooth) (STV 1.0 0.9091)) +(: cnet_isa_c3e22402a6 (IsA malposition position) (STV 1.0 0.9091)) +(: cnet_isa_e996766e6a (IsA malpractice wrongdoing) (STV 1.0 0.9091)) +(: cnet_isa_d69b2740ac (IsA malpractice_insurance insurance) (STV 1.0 0.9091)) +(: cnet_isa_c0932bebab (IsA malt grain) (STV 1.0 0.9091)) +(: cnet_isa_da9ceb7935 (IsA malt lager) (STV 1.0 0.9091)) +(: cnet_isa_0a8272f2ef (IsA malted milkshake) (STV 1.0 0.9091)) +(: cnet_isa_10617e0128 (IsA malted_milk ingredient) (STV 1.0 0.9091)) +(: cnet_isa_3816de36af (IsA maltese european) (STV 1.0 0.9091)) +(: cnet_isa_090f45bb55 (IsA maltese_cat domestic_cat) (STV 1.0 0.9091)) +(: cnet_isa_e559c4b837 (IsA maltese_cross cross) (STV 1.0 0.9091)) +(: cnet_isa_a7599c7f79 (IsA maltese_dog toy_dog) (STV 1.0 0.9091)) +(: cnet_isa_66864ada0d (IsA maltese_language semitic) (STV 1.0 0.9091)) +(: cnet_isa_7257cc0ce8 (IsA maltese_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_7a0d1f27d1 (IsA maltha mineral) (STV 1.0 0.9091)) +(: cnet_isa_35ba13f48f (IsA malthusian believer) (STV 1.0 0.9091)) +(: cnet_isa_f85f56cf60 (IsA malthusianism economic_theory) (STV 1.0 0.9091)) +(: cnet_isa_a3d347d9fd (IsA malto north_dravidian) (STV 1.0 0.9091)) +(: cnet_isa_51bd42e10e (IsA malto dravidian) (STV 1.0 0.9091)) +(: cnet_isa_3a033f2b6c (IsA maltose disaccharide) (STV 1.0 0.9091)) +(: cnet_isa_fbff7be928 (IsA maltreatment mistreatment) (STV 1.0 0.9091)) +(: cnet_isa_ba99e44fca (IsA maltster maker) (STV 1.0 0.9091)) +(: cnet_isa_d5689f5a5a (IsA malus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2e9b024660 (IsA malva dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f14523ac2e (IsA malvaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_12ec253b4b (IsA malvale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_4873d4c9af (IsA malvasia vinifera) (STV 1.0 0.9091)) +(: cnet_isa_cddd6a3afe (IsA malvastrum dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b750b2ec78 (IsA malvaviscus dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7e7f60cdc2 (IsA malversation wrongdoing) (STV 1.0 0.9091)) +(: cnet_isa_59d5aadb49 (IsA malware software) (STV 1.0 0.9091)) +(: cnet_isa_2ea99a3fd7 (IsA mam maya) (STV 1.0 0.9091)) +(: cnet_isa_acf3dc511a (IsA mam mayan) (STV 1.0 0.9091)) +(: cnet_isa_def264b7f8 (IsA mamba elapid) (STV 1.0 0.9091)) +(: cnet_isa_d2aa5dc3bb (IsA mambo dancing) (STV 1.0 0.9091)) +(: cnet_isa_11d0455755 (IsA mamey edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_45df743de4 (IsA mamillary_body neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_b731e919fd (IsA mammal vertebrate) (STV 1.0 0.9091)) +(: cnet_isa_a03c6dd981 (IsA mammal_family family) (STV 1.0 0.9091)) +(: cnet_isa_2a46c6c6f2 (IsA mammal_genus genus) (STV 1.0 0.9091)) +(: cnet_isa_040a014d93 (IsA mammalia class) (STV 1.0 0.9091)) +(: cnet_isa_54bb05061b (IsA mammalogist zoologist) (STV 1.0 0.9091)) +(: cnet_isa_484394b146 (IsA mammalogy zoology) (STV 1.0 0.9091)) +(: cnet_isa_e49524bae7 (IsA mammary_gland exocrine_gland) (STV 1.0 0.9091)) +(: cnet_isa_d30bdc5b24 (IsA mammea dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_32011cbb3e (IsA mammee_apple fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_f8318e4e8d (IsA mammillaria cactus) (STV 1.0 0.9091)) +(: cnet_isa_60acba4156 (IsA mammogram roentgenogram) (STV 1.0 0.9091)) +(: cnet_isa_d1ebff9e25 (IsA mammography diagnostic_procedure) (STV 1.0 0.9091)) +(: cnet_isa_a261774089 (IsA mammon wealth) (STV 1.0 0.9091)) +(: cnet_isa_672af02f9e (IsA mammoth extinct_animal) (STV 1.0 0.9091)) +(: cnet_isa_d812a962a7 (IsA mammoth elephant) (STV 1.0 0.9091)) +(: cnet_isa_3c95c8ea6d (IsA mammothermography thermography) (STV 1.0 0.9091)) +(: cnet_isa_a83475289b (IsA mammut mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_fce28ade9d (IsA mammuthus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_901f9e003a (IsA mammutidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_b0d3bbf148 (IsA mammy nanny) (STV 1.0 0.9091)) +(: cnet_isa_2cbc19939e (IsA mamo honeycreeper) (STV 1.0 0.9091)) +(: cnet_isa_6bf7721470 (IsA man_s_clothing clothing) (STV 1.0 0.9091)) +(: cnet_isa_7fb12bf9e5 (IsA man game_equipment) (STV 1.0 0.9091)) +(: cnet_isa_a15c17339a (IsA man international_intelligence_agency) (STV 1.0 0.9091)) +(: cnet_isa_66d7eee1a4 (IsA man adult) (STV 1.0 0.9091)) +(: cnet_isa_d243195695 (IsA man lover) (STV 1.0 0.9091)) +(: cnet_isa_dd16d81222 (IsA man male) (STV 1.0 0.9091)) +(: cnet_isa_35755b769b (IsA man person) (STV 1.0 0.9091)) +(: cnet_isa_62c1d5d99b (IsA man subordinate) (STV 1.0 0.9091)) +(: cnet_isa_189e7cc745 (IsA man_at_arm soldier) (STV 1.0 0.9091)) +(: cnet_isa_378d235983 (IsA man_hour hour) (STV 1.0 0.9091)) +(: cnet_isa_ab2e5a74b6 (IsA man_in_street commoner) (STV 1.0 0.9091)) +(: cnet_isa_b0178aa990 (IsA man_in_tailored_suit good_thing) (STV 1.0 0.9091)) +(: cnet_isa_37e80513e4 (IsA man_jack person) (STV 1.0 0.9091)) +(: cnet_isa_241c7363ea (IsA man_made_fiber fiber) (STV 1.0 0.9091)) +(: cnet_isa_bb96caa870 (IsA man_of_action actor) (STV 1.0 0.9091)) +(: cnet_isa_95ceef02a6 (IsA man_of_earth morning_glory) (STV 1.0 0.9091)) +(: cnet_isa_bcf30e9013 (IsA man_of_letter humanist) (STV 1.0 0.9091)) +(: cnet_isa_70ae6e7ccc (IsA man_of_mean rich_person) (STV 1.0 0.9091)) +(: cnet_isa_51ca0a7b1b (IsA man_of_war warship) (STV 1.0 0.9091)) +(: cnet_isa_41ccbcf575 (IsA man_on_horse agaric) (STV 1.0 0.9091)) +(: cnet_isa_ce9624ca80 (IsA manageability tractability) (STV 1.0 0.9091)) +(: cnet_isa_7f3952415a (IsA managed_economy non_market_economy) (STV 1.0 0.9091)) +(: cnet_isa_a5c8e5ea36 (IsA management social_control) (STV 1.0 0.9091)) +(: cnet_isa_b8b58b1d56 (IsA management administration) (STV 1.0 0.9091)) +(: cnet_isa_83b0d55c64 (IsA management_consultant adviser) (STV 1.0 0.9091)) +(: cnet_isa_87eaa9eba6 (IsA management_consulting service_industry) (STV 1.0 0.9091)) +(: cnet_isa_27412f01e6 (IsA management_control internal_control) (STV 1.0 0.9091)) +(: cnet_isa_fd359b7ba1 (IsA management_personnel force) (STV 1.0 0.9091)) +(: cnet_isa_e5ea6e383a (IsA manageress director) (STV 1.0 0.9091)) +(: cnet_isa_93a96a99e5 (IsA managership position) (STV 1.0 0.9091)) +(: cnet_isa_6e3922afba (IsA managing_editor editor) (STV 1.0 0.9091)) +(: cnet_isa_9265f846e5 (IsA manakin tyrannid) (STV 1.0 0.9091)) +(: cnet_isa_00eb12a4eb (IsA manana future) (STV 1.0 0.9091)) +(: cnet_isa_9c7b2c82b5 (IsA manat azerbaijani_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_42093c9fa4 (IsA manat turkmen_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_4f0d83c5b5 (IsA manatee sea_cow) (STV 1.0 0.9091)) +(: cnet_isa_46d165bbc5 (IsA manchester_terrier rat_terrier) (STV 1.0 0.9091)) +(: cnet_isa_23a1c35164 (IsA manchu tungusic) (STV 1.0 0.9091)) +(: cnet_isa_8a8b8b414b (IsA mancunian english_person) (STV 1.0 0.9091)) +(: cnet_isa_3289f144f6 (IsA manda south_central_dravidian) (STV 1.0 0.9091)) +(: cnet_isa_981b8348f3 (IsA mandaean aramaic) (STV 1.0 0.9091)) +(: cnet_isa_b347d1a2b1 (IsA mandaeanism gnosticism) (STV 1.0 0.9091)) +(: cnet_isa_aef5537cb4 (IsA mandala design) (STV 1.0 0.9091)) +(: cnet_isa_dd850063fa (IsA mandamus writ) (STV 1.0 0.9091)) +(: cnet_isa_46385793d7 (IsA mandara biu_mandara) (STV 1.0 0.9091)) +(: cnet_isa_69808f4e0c (IsA mandarin chinese) (STV 1.0 0.9091)) +(: cnet_isa_467a3bc7c0 (IsA mandarin citrus) (STV 1.0 0.9091)) +(: cnet_isa_ba08d248c3 (IsA mandarin elitist) (STV 1.0 0.9091)) +(: cnet_isa_22eb3f21b1 (IsA mandarin official) (STV 1.0 0.9091)) +(: cnet_isa_84f0d3d4b0 (IsA mandarin_duck duck) (STV 1.0 0.9091)) +(: cnet_isa_5700235e72 (IsA mandatary recipient) (STV 1.0 0.9091)) +(: cnet_isa_957a2bfb03 (IsA mandate legal_document) (STV 1.0 0.9091)) +(: cnet_isa_6822c0141a (IsA mandate district) (STV 1.0 0.9091)) +(: cnet_isa_605e68ad31 (IsA mandate commission) (STV 1.0 0.9091)) +(: cnet_isa_84c08d7aad (IsA mandator authority) (STV 1.0 0.9091)) +(: cnet_isa_1b7f8f068a (IsA mandatory_injunction injunction) (STV 1.0 0.9091)) +(: cnet_isa_e41118aa7b (IsA mande niger_congo) (STV 1.0 0.9091)) +(: cnet_isa_195d2382da (IsA mandean religionist) (STV 1.0 0.9091)) +(: cnet_isa_b0e90abf75 (IsA mandelbrot_set set) (STV 1.0 0.9091)) +(: cnet_isa_9e06724784 (IsA mandevilla dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f194ffdc26 (IsA mandibular_joint synovial_joint) (STV 1.0 0.9091)) +(: cnet_isa_70cc228dae (IsA mandibular_notch incisure) (STV 1.0 0.9091)) +(: cnet_isa_f2974a6c99 (IsA mandola mandolin) (STV 1.0 0.9091)) +(: cnet_isa_4ba4d1ddb5 (IsA mandolin instrument) (STV 1.0 0.9572)) +(: cnet_isa_a1e5c04247 (IsA mandolin musical_instrument) (STV 1.0 0.9339)) +(: cnet_isa_23d7d0cf0a (IsA mandolin stringed_musical_instrument) (STV 1.0 0.9454)) +(: cnet_isa_00affaed60 (IsA mandolin chordophone) (STV 1.0 0.9091)) +(: cnet_isa_621505eb63 (IsA mandragora asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c167203151 (IsA mandrake herb) (STV 1.0 0.9091)) +(: cnet_isa_49e423b4a0 (IsA mandrake_root root) (STV 1.0 0.9091)) +(: cnet_isa_ec4ddb70b3 (IsA mandrill baboon) (STV 1.0 0.9091)) +(: cnet_isa_b6c48185cd (IsA mandrillus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_c0090d1cc2 (IsA manduca arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_fe637fa420 (IsA manduca_quinquemaculata hawkmoth) (STV 1.0 0.9091)) +(: cnet_isa_7b98392e2c (IsA manduca_sexta hawkmoth) (STV 1.0 0.9091)) +(: cnet_isa_17873732ad (IsA mane hair) (STV 1.0 0.9091)) +(: cnet_isa_a019de2e3d (IsA maneuver evasion) (STV 1.0 0.9091)) +(: cnet_isa_bc287c3806 (IsA maneuver motion) (STV 1.0 0.9091)) +(: cnet_isa_7851d68ad4 (IsA maneuver move) (STV 1.0 0.9091)) +(: cnet_isa_3a9e8aadad (IsA maneuver operation) (STV 1.0 0.9091)) +(: cnet_isa_c0a0d39633 (IsA maneuverability mobility) (STV 1.0 0.9091)) +(: cnet_isa_19e55ce1cc (IsA maneuverer planner) (STV 1.0 0.9091)) +(: cnet_isa_c771ac2c0d (IsA manfulness masculinity) (STV 1.0 0.9091)) +(: cnet_isa_f2468596d8 (IsA manga novel) (STV 1.0 0.9091)) +(: cnet_isa_a1222dfa81 (IsA mangabey old_world_monkey) (STV 1.0 0.9091)) +(: cnet_isa_7a03b2dd05 (IsA manganate salt) (STV 1.0 0.9091)) +(: cnet_isa_87673c0c0c (IsA manganese metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_a9f99f6f63 (IsA manganese_bronze alpha_beta_brass) (STV 1.0 0.9091)) +(: cnet_isa_230b9cbefb (IsA manganese_steel alloy_steel) (STV 1.0 0.9091)) +(: cnet_isa_609044e022 (IsA manganese_tetroxide compound) (STV 1.0 0.9091)) +(: cnet_isa_cce692fcfc (IsA manganic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_70e1d3a564 (IsA manganite mineral) (STV 1.0 0.9091)) +(: cnet_isa_e2a0ed04a2 (IsA mange animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_afae4d271e (IsA mangel_wurzel beet) (STV 1.0 0.9091)) +(: cnet_isa_f91776f8f3 (IsA manger container) (STV 1.0 0.9091)) +(: cnet_isa_9e08c3d271 (IsA mangifera dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_daec83bfe9 (IsA mangle clothe_dryer) (STV 1.0 0.9091)) +(: cnet_isa_280a9ef201 (IsA manglietia angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_c5f009c9b3 (IsA mango fruit) (STV 1.0 0.9339)) +(: cnet_isa_9cda5dd5fa (IsA mango edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_a05991a907 (IsA mango fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_f51b2a5581 (IsA mangosteen edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_a6adadfda4 (IsA mangosteen fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_dee516226d (IsA mangrove angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_2612bb69e5 (IsA manhattan cocktail) (STV 1.0 0.9091)) +(: cnet_isa_8f34fc2bbc (IsA manhattan_clam_chowder clam_chowder) (STV 1.0 0.9091)) +(: cnet_isa_28595e5a97 (IsA manhattan_project executive_agency) (STV 1.0 0.9091)) +(: cnet_isa_412c247943 (IsA manhole hole) (STV 1.0 0.9091)) +(: cnet_isa_35a95d0d42 (IsA manhole_cover top) (STV 1.0 0.9091)) +(: cnet_isa_fa2995e1fa (IsA manhood position) (STV 1.0 0.9091)) +(: cnet_isa_d14a7bd03a (IsA manhood adulthood) (STV 1.0 0.9091)) +(: cnet_isa_95ecad318f (IsA manhunt search) (STV 1.0 0.9091)) +(: cnet_isa_c34c56b7aa (IsA mania irrational_motive) (STV 1.0 0.9091)) +(: cnet_isa_d9b74ed940 (IsA mania affective_disorder) (STV 1.0 0.9091)) +(: cnet_isa_4a1ce9394a (IsA maniac fancier) (STV 1.0 0.9091)) +(: cnet_isa_673a922475 (IsA manic_depression mental_illness) (STV 1.0 0.9091)) +(: cnet_isa_d7798e34bc (IsA manic_depressive sick_person) (STV 1.0 0.9091)) +(: cnet_isa_6eee041ea4 (IsA manichaeism religion) (STV 1.0 0.9091)) +(: cnet_isa_8e559d26cc (IsA manichean disciple) (STV 1.0 0.9091)) +(: cnet_isa_a87b343650 (IsA manicotti pasta) (STV 1.0 0.9091)) +(: cnet_isa_565115a939 (IsA manicure beauty_treatment) (STV 1.0 0.9091)) +(: cnet_isa_fb76b3515f (IsA manicure care) (STV 1.0 0.9091)) +(: cnet_isa_904c678964 (IsA manicure_set set) (STV 1.0 0.9091)) +(: cnet_isa_66d34b8e7c (IsA manicurist beautician) (STV 1.0 0.9091)) +(: cnet_isa_94c85fbd06 (IsA manidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_a510971304 (IsA manifest legal_document) (STV 1.0 0.9091)) +(: cnet_isa_0bf9e7c1ce (IsA manifest_destiny imperialism) (STV 1.0 0.9091)) +(: cnet_isa_4f5b412232 (IsA manifestation indication) (STV 1.0 0.9091)) +(: cnet_isa_8f4a7bf2cf (IsA manifestation appearance) (STV 1.0 0.9091)) +(: cnet_isa_0def5be200 (IsA manifesto declaration) (STV 1.0 0.9091)) +(: cnet_isa_4c774b86d1 (IsA manifold pipe) (STV 1.0 0.9091)) +(: cnet_isa_c44d870dcb (IsA manifold mathematical_space) (STV 1.0 0.9091)) +(: cnet_isa_3066eebd3b (IsA manifold_paper paper) (STV 1.0 0.9091)) +(: cnet_isa_5c17884e44 (IsA manihot rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d88b135283 (IsA manikin small_person) (STV 1.0 0.9091)) +(: cnet_isa_216b352a58 (IsA manila paper) (STV 1.0 0.9091)) +(: cnet_isa_3fd3b08aa0 (IsA manila_grass zoysia) (STV 1.0 0.9091)) +(: cnet_isa_4d11c818e2 (IsA manila_hemp hemp) (STV 1.0 0.9091)) +(: cnet_isa_44633b7f86 (IsA manila_tamarind tree) (STV 1.0 0.9091)) +(: cnet_isa_26098e0b7f (IsA manilkara dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_260a7c868a (IsA manipulability mobility) (STV 1.0 0.9091)) +(: cnet_isa_f984c84ad9 (IsA manipulation influence) (STV 1.0 0.9091)) +(: cnet_isa_c4209462f1 (IsA manipulative_electronic_deception electronic_deception) (STV 1.0 0.9091)) +(: cnet_isa_c59be25f35 (IsA manipulator person) (STV 1.0 0.9091)) +(: cnet_isa_c55f825b27 (IsA manipur_chief_minister worker) (STV 1.0 0.9091)) +(: cnet_isa_60c01cbb6d (IsA maniraptor theropod) (STV 1.0 0.9091)) +(: cnet_isa_be1a727bbb (IsA maniraptora animal_order) (STV 1.0 0.9091)) +(: cnet_isa_ff88493c26 (IsA manis mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_c9dfe17f63 (IsA mankind one_single_nation) (STV 1.0 0.9339)) +(: cnet_isa_926f857546 (IsA manna sap) (STV 1.0 0.9091)) +(: cnet_isa_593304a35d (IsA manna_ash ash) (STV 1.0 0.9091)) +(: cnet_isa_735fc010a7 (IsA manna_grass meadowgrass) (STV 1.0 0.9091)) +(: cnet_isa_f8ce25ea70 (IsA manna_gum eucalyptus) (STV 1.0 0.9091)) +(: cnet_isa_d6718bd681 (IsA manna_lichen lecanora) (STV 1.0 0.9091)) +(: cnet_isa_de9a11ebb5 (IsA mannequin dummy) (STV 1.0 0.9091)) +(: cnet_isa_127bbbc8dc (IsA mannequin assistant) (STV 1.0 0.9091)) +(: cnet_isa_0b826d75b5 (IsA manner demeanor) (STV 1.0 0.9091)) +(: cnet_isa_f37ac71af7 (IsA manner property) (STV 1.0 0.9091)) +(: cnet_isa_9d9a1cc33e (IsA manner kind) (STV 1.0 0.9091)) +(: cnet_isa_a783899937 (IsA manner_of_speaking expressive_style) (STV 1.0 0.9091)) +(: cnet_isa_a6d7fe7a75 (IsA manometer pressure_gauge) (STV 1.0 0.9091)) +(: cnet_isa_8ab95423f5 (IsA manor mansion) (STV 1.0 0.9091)) +(: cnet_isa_14e03d63f2 (IsA manor estate) (STV 1.0 0.9091)) +(: cnet_isa_5eabe3a69e (IsA manor_hall room) (STV 1.0 0.9091)) +(: cnet_isa_03f6c826e6 (IsA manpad surface_to_air_missile) (STV 1.0 0.9091)) +(: cnet_isa_1c48d33166 (IsA mansard curb_roof) (STV 1.0 0.9091)) +(: cnet_isa_67b49cda41 (IsA manse residence) (STV 1.0 0.9091)) +(: cnet_isa_d0e62b9477 (IsA manservant servant) (STV 1.0 0.9091)) +(: cnet_isa_f805dfc1b5 (IsA mansi ugric) (STV 1.0 0.9091)) +(: cnet_isa_a46756ad1c (IsA mansi russian) (STV 1.0 0.9091)) +(: cnet_isa_73fada03ff (IsA mansion house) (STV 1.0 0.9524)) +(: cnet_isa_386ec286e5 (IsA manslaughter homicide) (STV 1.0 0.9091)) +(: cnet_isa_9f1a88599d (IsA manta ray) (STV 1.0 0.9091)) +(: cnet_isa_d5377082cf (IsA manta blanket) (STV 1.0 0.9091)) +(: cnet_isa_0a2369e99b (IsA mantel shelf) (STV 1.0 0.9091)) +(: cnet_isa_c785fe9bcf (IsA mantelet cape) (STV 1.0 0.9091)) +(: cnet_isa_a1db3aff29 (IsA mantelet shelter) (STV 1.0 0.9091)) +(: cnet_isa_22ac729f0a (IsA manteodea animal_order) (STV 1.0 0.9091)) +(: cnet_isa_d793a49ce5 (IsA manticore mythical_monster) (STV 1.0 0.9091)) +(: cnet_isa_9d9b640f80 (IsA mantidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_831744e82a (IsA mantilla scarf) (STV 1.0 0.9091)) +(: cnet_isa_9ef85a896c (IsA mantis dictyopterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_8075747325 (IsA mantis_shrimp stomatopod) (STV 1.0 0.9091)) +(: cnet_isa_f9de91c8a8 (IsA mantispid neuropteron) (STV 1.0 0.9091)) +(: cnet_isa_dbc435a4c5 (IsA mantispidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_80cf108d1a (IsA mantissa fraction) (STV 1.0 0.9091)) +(: cnet_isa_75419f3f2c (IsA mantle symbol) (STV 1.0 0.9091)) +(: cnet_isa_6517beead7 (IsA mantle layer) (STV 1.0 0.9091)) +(: cnet_isa_219ff358a1 (IsA mantle epidermis) (STV 1.0 0.9091)) +(: cnet_isa_c232ef5a5c (IsA mantled_ground_squirrel ground_squirrel) (STV 1.0 0.9091)) +(: cnet_isa_db989842d3 (IsA mantophasmatodea animal_order) (STV 1.0 0.9091)) +(: cnet_isa_986e791be1 (IsA mantoux_test tuberculin_test) (STV 1.0 0.9091)) +(: cnet_isa_a81e130f82 (IsA mantra sacred_text) (STV 1.0 0.9091)) +(: cnet_isa_be5754490a (IsA mantra motto) (STV 1.0 0.9091)) +(: cnet_isa_c3a7c8c914 (IsA mantrap trap) (STV 1.0 0.9091)) +(: cnet_isa_cab363d32d (IsA mantua gown) (STV 1.0 0.9091)) +(: cnet_isa_43b3f09872 (IsA manual handbook) (STV 1.0 0.9091)) +(: cnet_isa_2fe684fdb6 (IsA manual_alphabet alphabet) (STV 1.0 0.9091)) +(: cnet_isa_ec5f840353 (IsA manual_labor labor) (STV 1.0 0.9091)) +(: cnet_isa_06a997a3b2 (IsA manual_of_arm exercise) (STV 1.0 0.9091)) +(: cnet_isa_89fe9b132d (IsA manubrium bone) (STV 1.0 0.9091)) +(: cnet_isa_047a0d9918 (IsA manufacturer business) (STV 1.0 0.9091)) +(: cnet_isa_4e72a7ec21 (IsA manufacturer maker) (STV 1.0 0.9091)) +(: cnet_isa_12747ec5ce (IsA manul wildcat) (STV 1.0 0.9091)) +(: cnet_isa_8b7dfc6a74 (IsA manumission liberation) (STV 1.0 0.9091)) +(: cnet_isa_205464c481 (IsA manure waste_product_of_cow) (STV 1.0 0.9091)) +(: cnet_isa_61ab3e2abf (IsA manure organic) (STV 1.0 0.9091)) +(: cnet_isa_a43ccd9bda (IsA manuscript autograph) (STV 1.0 0.9091)) +(: cnet_isa_94d5536b39 (IsA manuscript writing) (STV 1.0 0.9091)) +(: cnet_isa_5e37dd43ea (IsA manx gaelic) (STV 1.0 0.9091)) +(: cnet_isa_3ae154ba97 (IsA manx_cat domestic_cat) (STV 1.0 0.9091)) +(: cnet_isa_bfaa10bf11 (IsA manx_shearwater shearwater) (STV 1.0 0.9091)) +(: cnet_isa_086f9e4b2e (IsA many_pet domestic_animal) (STV 1.0 0.9091)) +(: cnet_isa_c7fb160023 (IsA manzanilla sherry) (STV 1.0 0.9091)) +(: cnet_isa_2ed3ad8f77 (IsA manzanita shrub) (STV 1.0 0.9091)) +(: cnet_isa_392f9aa260 (IsA mao_jacket jacket) (STV 1.0 0.9091)) +(: cnet_isa_c812418e9a (IsA maoism communism) (STV 1.0 0.9091)) +(: cnet_isa_277ac06e8c (IsA maoist advocate) (STV 1.0 0.9091)) +(: cnet_isa_6261677b01 (IsA maori oceanic) (STV 1.0 0.9091)) +(: cnet_isa_cbc0e260fe (IsA maori ethnic_minority) (STV 1.0 0.9091)) +(: cnet_isa_82b4f0024f (IsA map symbolic_representation) (STV 1.0 0.9091)) +(: cnet_isa_5461c4e7f9 (IsA map representation) (STV 1.0 0.9091)) +(: cnet_isa_a413fd504e (IsA map_projection projection) (STV 1.0 0.9091)) +(: cnet_isa_7184cf4eb4 (IsA map_reader reader) (STV 1.0 0.9091)) +(: cnet_isa_0a9aa4ab9e (IsA mapinguari mylodontid) (STV 1.0 0.9091)) +(: cnet_isa_50971c8341 (IsA maple wood) (STV 1.0 0.9091)) +(: cnet_isa_82c0c0ec87 (IsA maple angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_19321f2908 (IsA maple_leaf emblem) (STV 1.0 0.9091)) +(: cnet_isa_a06e589d4f (IsA maple_sugar carbohydrate) (STV 1.0 0.9091)) +(: cnet_isa_387dc6eb4f (IsA maple_syrup syrup) (STV 1.0 0.9091)) +(: cnet_isa_08a2c63732 (IsA maple_syrup_urine_disease genetic_disease) (STV 1.0 0.9091)) +(: cnet_isa_a75adbcde7 (IsA maple_syrup_urine_disease ketonuria) (STV 1.0 0.9091)) +(: cnet_isa_dcc799e50d (IsA mapmaking devising) (STV 1.0 0.9091)) +(: cnet_isa_7e68f2b94f (IsA mapping procedure) (STV 1.0 0.9091)) +(: cnet_isa_020faa2a85 (IsA mapping mathematical_relation) (STV 1.0 0.9091)) +(: cnet_isa_c671cd2277 (IsA maquiladora assembly_plant) (STV 1.0 0.9091)) +(: cnet_isa_6b1440100f (IsA maquis underground) (STV 1.0 0.9091)) +(: cnet_isa_bbe7c5dacb (IsA maquisard guerrilla) (STV 1.0 0.9091)) +(: cnet_isa_f6d960fa38 (IsA mara rodent) (STV 1.0 0.9091)) +(: cnet_isa_859b981c06 (IsA marabou feather) (STV 1.0 0.9091)) +(: cnet_isa_c92d748363 (IsA marabou stork) (STV 1.0 0.9091)) +(: cnet_isa_81b24765bc (IsA maraca percussion_instrument) (STV 1.0 0.9091)) +(: cnet_isa_69fc9d145c (IsA maraco amerind) (STV 1.0 0.9091)) +(: cnet_isa_a542ea6d1d (IsA maraco south_american) (STV 1.0 0.9091)) +(: cnet_isa_8d976c5210 (IsA marang edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_d66fc608bf (IsA marang fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_23e89bba59 (IsA maranta herb) (STV 1.0 0.9091)) +(: cnet_isa_232bc58131 (IsA marantaceae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_feb8789312 (IsA marasca fruit) (STV 1.0 0.9091)) +(: cnet_isa_f0992410ba (IsA marasca sour_cherry) (STV 1.0 0.9091)) +(: cnet_isa_222f63c5b6 (IsA maraschino liqueur) (STV 1.0 0.9091)) +(: cnet_isa_ced6275f1a (IsA maraschino sweet) (STV 1.0 0.9091)) +(: cnet_isa_64327cf745 (IsA marasmius fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_9cbc887e96 (IsA marasmus malnutrition) (STV 1.0 0.9091)) +(: cnet_isa_22cc0b0220 (IsA marathi sanskrit) (STV 1.0 0.9091)) +(: cnet_isa_18079f8e86 (IsA marathon great_distance) (STV 1.0 0.9091)) +(: cnet_isa_2a6eb9299e (IsA marathon undertaking) (STV 1.0 0.9091)) +(: cnet_isa_29d70c6a38 (IsA marathon footrace) (STV 1.0 0.9091)) +(: cnet_isa_fe7873c3ff (IsA marathoner runner) (STV 1.0 0.9091)) +(: cnet_isa_56141bebf1 (IsA marathon 26_2_mile_long) (STV 1.0 0.9091)) +(: cnet_isa_cf7fbb75d0 (IsA marattia fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_c43fd827ca (IsA marattiaceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_61ada3ac6c (IsA marattiale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_87f26f130f (IsA marauder attacker) (STV 1.0 0.9091)) +(: cnet_isa_18dc1cc47c (IsA marble easier_to_stain_than_granite) (STV 1.0 0.9091)) +(: cnet_isa_1b5c6ac4a4 (IsA marble rock) (STV 1.0 0.9454)) +(: cnet_isa_3eb8599768 (IsA marble stone) (STV 1.0 0.9454)) +(: cnet_isa_46601773a5 (IsA marble useful_metamorphic_rock) (STV 1.0 0.9091)) +(: cnet_isa_2032175dc3 (IsA marble ball) (STV 1.0 0.9091)) +(: cnet_isa_2335599507 (IsA marble sculpture) (STV 1.0 0.9091)) +(: cnet_isa_27de032c2e (IsA marble_cake cake) (STV 1.0 0.9091)) +(: cnet_isa_745a058f6f (IsA marbleization texture) (STV 1.0 0.9091)) +(: cnet_isa_1b30e78131 (IsA marble sphere) (STV 1.0 0.9091)) +(: cnet_isa_fb23ad23e6 (IsA marble child_s_game) (STV 1.0 0.9091)) +(: cnet_isa_420308f4fb (IsA marblewood tree) (STV 1.0 0.9091)) +(: cnet_isa_2fc1a2c50a (IsA marblewood zebrawood) (STV 1.0 0.9091)) +(: cnet_isa_7e735cd5c4 (IsA marbling edible_fat) (STV 1.0 0.9091)) +(: cnet_isa_7401096533 (IsA marburg_disease hemorrhagic_fever) (STV 1.0 0.9091)) +(: cnet_isa_ba6d3b545f (IsA marburg_virus filovirus) (STV 1.0 0.9091)) +(: cnet_isa_afa64e135e (IsA marc brandy) (STV 1.0 0.9091)) +(: cnet_isa_0e8ebfa255 (IsA marcel hairdo) (STV 1.0 0.9091)) +(: cnet_isa_90325dab91 (IsA march progress) (STV 1.0 0.9091)) +(: cnet_isa_bed9353308 (IsA march walk) (STV 1.0 0.9091)) +(: cnet_isa_fbcaa36a6e (IsA march procession) (STV 1.0 0.9091)) +(: cnet_isa_dbf3fc9498 (IsA march gregorian_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_e550b4eee5 (IsA marchand_de_vin sauce) (STV 1.0 0.9091)) +(: cnet_isa_840a5f88a8 (IsA marchantia moss_genus) (STV 1.0 0.9091)) +(: cnet_isa_54ce636cc2 (IsA marchantiaceae moss_family) (STV 1.0 0.9091)) +(: cnet_isa_e590b02b2f (IsA marchantiale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_fdd4c8b535 (IsA marcher inhabitant) (STV 1.0 0.9091)) +(: cnet_isa_33f62ebad9 (IsA marcher pedestrian) (STV 1.0 0.9091)) +(: cnet_isa_f0c48342d7 (IsA marching_band band) (STV 1.0 0.9091)) +(: cnet_isa_d87ebbbde0 (IsA marching_music music_genre) (STV 1.0 0.9091)) +(: cnet_isa_f08d7f728c (IsA marching_order materiel) (STV 1.0 0.9091)) +(: cnet_isa_6f6b7231d8 (IsA marching_order order) (STV 1.0 0.9091)) +(: cnet_isa_c67b52503e (IsA marchioness noblewoman) (STV 1.0 0.9091)) +(: cnet_isa_ac7263cff0 (IsA marchioness wife) (STV 1.0 0.9091)) +(: cnet_isa_789efee25f (IsA marcionism heresy) (STV 1.0 0.9091)) +(: cnet_isa_9a1b3fb020 (IsA marcionism theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_8f5de236a7 (IsA marco_polo_sheep wild_sheep) (STV 1.0 0.9091)) +(: cnet_isa_3f13062f13 (IsA mardi_gra carnival) (STV 1.0 0.9091)) +(: cnet_isa_e23ee7b5fa (IsA mardi_gra christian_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_154c0b4e61 (IsA mare_s_tail cirrus) (STV 1.0 0.9091)) +(: cnet_isa_a3fb8538ea (IsA mare horse) (STV 1.0 0.9091)) +(: cnet_isa_c3ca779b58 (IsA mare region) (STV 1.0 0.9091)) +(: cnet_isa_f8499a426c (IsA mare_clausum waterway) (STV 1.0 0.9091)) +(: cnet_isa_421f173ccf (IsA mare_liberum waterway) (STV 1.0 0.9091)) +(: cnet_isa_039f716aa2 (IsA mare_nostrum mediterranean) (STV 1.0 0.9091)) +(: cnet_isa_9c3b69bf98 (IsA marfan_s_syndrome autosomal_dominant_disease) (STV 1.0 0.9091)) +(: cnet_isa_80661ca704 (IsA margaric_acid saturated_fatty_acid) (STV 1.0 0.9091)) +(: cnet_isa_5c60b29d03 (IsA margarin glyceryl_ester) (STV 1.0 0.9091)) +(: cnet_isa_fe975fe4cf (IsA margarine spread) (STV 1.0 0.9091)) +(: cnet_isa_d6a69e5ef8 (IsA margarita cocktail) (STV 1.0 0.9091)) +(: cnet_isa_d4bf0e4b89 (IsA margate grunt) (STV 1.0 0.9091)) +(: cnet_isa_4d4cf2055d (IsA margay wildcat) (STV 1.0 0.9091)) +(: cnet_isa_986eee75d8 (IsA margin amount) (STV 1.0 0.9091)) +(: cnet_isa_b8bc57f5c9 (IsA margin space) (STV 1.0 0.9091)) +(: cnet_isa_1b0bf9d30b (IsA margin down_payment) (STV 1.0 0.9091)) +(: cnet_isa_be1446ea75 (IsA margin boundary) (STV 1.0 0.9091)) +(: cnet_isa_20f83b04b7 (IsA margin_account brokerage_account) (STV 1.0 0.9091)) +(: cnet_isa_df1dada25a (IsA margin_call demand) (STV 1.0 0.9091)) +(: cnet_isa_ed4cb9d6cc (IsA margin_of_profit ratio) (STV 1.0 0.9091)) +(: cnet_isa_cbcc9cf3f3 (IsA margin_of_safety index) (STV 1.0 0.9091)) +(: cnet_isa_1fa27cb112 (IsA margin_of_safety margin) (STV 1.0 0.9091)) +(: cnet_isa_fed431e0b2 (IsA marginal_cost monetary_value) (STV 1.0 0.9091)) +(: cnet_isa_98e1e8ec66 (IsA marginal_placentation placentation) (STV 1.0 0.9091)) +(: cnet_isa_b86cb48d3d (IsA marginal_utility utility) (STV 1.0 0.9091)) +(: cnet_isa_289a6ea7d6 (IsA marginal_wood_fern wood_fern) (STV 1.0 0.9091)) +(: cnet_isa_0af9f16e51 (IsA marginalia note) (STV 1.0 0.9091)) +(: cnet_isa_78a57b2825 (IsA marginality position) (STV 1.0 0.9091)) +(: cnet_isa_8a50b64cb6 (IsA marginalization social_process) (STV 1.0 0.9091)) +(: cnet_isa_b0aebe7ddd (IsA marginocephalia animal_order) (STV 1.0 0.9091)) +(: cnet_isa_19193897a6 (IsA margrave military_governor) (STV 1.0 0.9091)) +(: cnet_isa_badd3d3b57 (IsA margrave nobleman) (STV 1.0 0.9091)) +(: cnet_isa_6a74458a11 (IsA marguerite subshrub) (STV 1.0 0.9091)) +(: cnet_isa_6113f09598 (IsA maria tree) (STV 1.0 0.9091)) +(: cnet_isa_cf4aa6d179 (IsA mariachi ensemble) (STV 1.0 0.9091)) +(: cnet_isa_6bc4623bdb (IsA maricopa yuman) (STV 1.0 0.9091)) +(: cnet_isa_7ef7fc3ef7 (IsA maricopa hoka) (STV 1.0 0.9091)) +(: cnet_isa_363449dd46 (IsA marigold annual_plant) (STV 1.0 0.9091)) +(: cnet_isa_187dc86b33 (IsA marigold flower) (STV 1.0 0.9091)) +(: cnet_isa_c9a740e826 (IsA marijuana drug) (STV 1.0 0.9707)) +(: cnet_isa_eb4303500e (IsA marijuana cannabis) (STV 1.0 0.9091)) +(: cnet_isa_13c94c405f (IsA marimba percussion_instrument) (STV 1.0 0.9091)) +(: cnet_isa_03bc2ead94 (IsA marina place_to_keep_boat) (STV 1.0 0.9339)) +(: cnet_isa_21e3888728 (IsA marina place_with_many_boat) (STV 1.0 0.9091)) +(: cnet_isa_12614d6378 (IsA marina dock) (STV 1.0 0.9091)) +(: cnet_isa_5f825fd2ec (IsA marinade condiment) (STV 1.0 0.9091)) +(: cnet_isa_5d0d8001d4 (IsA marinara spaghetti_sauce) (STV 1.0 0.9091)) +(: cnet_isa_237217eabe (IsA marine soldier) (STV 1.0 0.9091)) +(: cnet_isa_411b5e3222 (IsA marine_animal animal) (STV 1.0 0.9091)) +(: cnet_isa_c0bf5c945d (IsA marine_archeology archeology) (STV 1.0 0.9091)) +(: cnet_isa_4be1b46c3a (IsA marine_corp_intelligence_activity agency) (STV 1.0 0.9091)) +(: cnet_isa_8e90954221 (IsA marine_engineer engineer) (STV 1.0 0.9091)) +(: cnet_isa_b9f0e0d3bf (IsA marine_glue glue) (STV 1.0 0.9091)) +(: cnet_isa_03e939eeef (IsA marine_iguana iguanid) (STV 1.0 0.9091)) +(: cnet_isa_a8f59b8d03 (IsA marine_mussel mussel) (STV 1.0 0.9091)) +(: cnet_isa_c62128cb5a (IsA mariner sailor) (STV 1.0 0.9091)) +(: cnet_isa_03e4467083 (IsA marine military_service) (STV 1.0 0.9091)) +(: cnet_isa_92a0302e10 (IsA mariposa liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_4f4073108a (IsA mariposan penutian) (STV 1.0 0.9091)) +(: cnet_isa_dff9485c78 (IsA marital_communication_privilege privilege) (STV 1.0 0.9091)) +(: cnet_isa_46ab63639a (IsA marital_relationship kinship) (STV 1.0 0.9091)) +(: cnet_isa_5296191c56 (IsA marital_status legal_status) (STV 1.0 0.9091)) +(: cnet_isa_1a7f9d61e2 (IsA mariticide murder) (STV 1.0 0.9091)) +(: cnet_isa_ecefe6008c (IsA maritime_law international_law) (STV 1.0 0.9091)) +(: cnet_isa_b908afd499 (IsA marjoram herb) (STV 1.0 0.9091)) +(: cnet_isa_f827133ec8 (IsA mark impression) (STV 1.0 0.9091)) +(: cnet_isa_98563f0649 (IsA mark evaluation) (STV 1.0 0.9091)) +(: cnet_isa_a7fdbdbffd (IsA mark indication) (STV 1.0 0.9091)) +(: cnet_isa_29fd0361e5 (IsA mark symbol) (STV 1.0 0.9091)) +(: cnet_isa_eb2dae2de9 (IsA mark written_symbol) (STV 1.0 0.9091)) +(: cnet_isa_ca0d9e72bb (IsA mark german_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_a7180a38c9 (IsA mark_of_cain sin) (STV 1.0 0.9091)) +(: cnet_isa_fa710cbdc5 (IsA marker pen) (STV 1.0 0.9091)) +(: cnet_isa_a3e6e0a707 (IsA marker pen_with_fat_tip) (STV 1.0 0.9339)) +(: cnet_isa_9389d3f2d9 (IsA marker artifact) (STV 1.0 0.9091)) +(: cnet_isa_be532c689e (IsA marker writing_implement) (STV 1.0 0.9091)) +(: cnet_isa_f8ea14626a (IsA marker symbol) (STV 1.0 0.9091)) +(: cnet_isa_4b5b48d634 (IsA market activity) (STV 1.0 0.9091)) +(: cnet_isa_39bd2a34e0 (IsA market class) (STV 1.0 0.9091)) +(: cnet_isa_20ed79bc15 (IsA market industry) (STV 1.0 0.9091)) +(: cnet_isa_b824de8a3e (IsA market_analysis marketing_research) (STV 1.0 0.9091)) +(: cnet_isa_25974d635e (IsA market_analyst analyst) (STV 1.0 0.9091)) +(: cnet_isa_8314350067 (IsA market_capitalization capitalization) (STV 1.0 0.9091)) +(: cnet_isa_8a13694cf6 (IsA market_cross monument) (STV 1.0 0.9091)) +(: cnet_isa_da6c9e57bc (IsA market_day day) (STV 1.0 0.9091)) +(: cnet_isa_bd16520d61 (IsA market_economy economy) (STV 1.0 0.9091)) +(: cnet_isa_e351907344 (IsA market_force economic_process) (STV 1.0 0.9091)) +(: cnet_isa_a7470781ce (IsA market_garden garden) (STV 1.0 0.9091)) +(: cnet_isa_c5daeda16d (IsA market_gardening gardening) (STV 1.0 0.9091)) +(: cnet_isa_bdcc25b753 (IsA market_letter newsletter) (STV 1.0 0.9091)) +(: cnet_isa_30769ef545 (IsA market_order order) (STV 1.0 0.9091)) +(: cnet_isa_e29d3ee5fa (IsA market_penetration penetration) (STV 1.0 0.9091)) +(: cnet_isa_45e517a5e0 (IsA market_strategist strategist) (STV 1.0 0.9091)) +(: cnet_isa_6cf4f5745c (IsA market_town town) (STV 1.0 0.9091)) +(: cnet_isa_8e23896e10 (IsA market_value value) (STV 1.0 0.9091)) +(: cnet_isa_943ae454e5 (IsA marketing commerce) (STV 1.0 0.9091)) +(: cnet_isa_1833e9f1e1 (IsA marketing shopping) (STV 1.0 0.9091)) +(: cnet_isa_3ebb2d6e16 (IsA marketing_cost cost) (STV 1.0 0.9091)) +(: cnet_isa_fbaf687955 (IsA marketing_research research) (STV 1.0 0.9091)) +(: cnet_isa_5da9731921 (IsA marketplace mercantile_establishment) (STV 1.0 0.9091)) +(: cnet_isa_635b27b5b4 (IsA markhor wild_goat) (STV 1.0 0.9091)) +(: cnet_isa_9f762ff509 (IsA marking decoration) (STV 1.0 0.9091)) +(: cnet_isa_61f2a8181c (IsA marking evaluation) (STV 1.0 0.9091)) +(: cnet_isa_91db95bc34 (IsA marking design) (STV 1.0 0.9091)) +(: cnet_isa_a2d24ba8f3 (IsA marking_ink indelible_ink) (STV 1.0 0.9091)) +(: cnet_isa_b1f2a062e5 (IsA markka finnish_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_74c140e88f (IsA markov_chain markov_process) (STV 1.0 0.9091)) +(: cnet_isa_7e97bb6015 (IsA markov_process stochastic_process) (STV 1.0 0.9091)) +(: cnet_isa_eb43b6e096 (IsA marksman shot) (STV 1.0 0.9091)) +(: cnet_isa_694fd06bfa (IsA marksmanship skill) (STV 1.0 0.9091)) +(: cnet_isa_13f7f8ac2b (IsA markup direction) (STV 1.0 0.9091)) +(: cnet_isa_d73d7f26d0 (IsA markup net_income) (STV 1.0 0.9091)) +(: cnet_isa_d76f89b7b6 (IsA markup_language terminology) (STV 1.0 0.9091)) +(: cnet_isa_d18121444f (IsA marl soil) (STV 1.0 0.9091)) +(: cnet_isa_0b3a2b1a35 (IsA marlberry shrub) (STV 1.0 0.9091)) +(: cnet_isa_c0df44c5c7 (IsA marlin billfish) (STV 1.0 0.9091)) +(: cnet_isa_a0e03bfa8a (IsA marline small_stuff) (STV 1.0 0.9091)) +(: cnet_isa_b967f83d27 (IsA marlinespike hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_598f6a430d (IsA marlite metamorphic_rock) (STV 1.0 0.9091)) +(: cnet_isa_3c095ea16a (IsA marmalade conserve) (STV 1.0 0.9091)) +(: cnet_isa_a7883df40d (IsA marmalade_bush shrub) (STV 1.0 0.9091)) +(: cnet_isa_18c10b3791 (IsA marmalade_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_b49f0fd8a8 (IsA marmite pot) (STV 1.0 0.9091)) +(: cnet_isa_e84fd7c525 (IsA marmite soup) (STV 1.0 0.9091)) +(: cnet_isa_caafff4d34 (IsA marmoset new_world_monkey) (STV 1.0 0.9091)) +(: cnet_isa_1294d5e0eb (IsA marmot animal) (STV 1.0 0.9339)) +(: cnet_isa_cf7a53d811 (IsA marmot rodent) (STV 1.0 0.9091)) +(: cnet_isa_948945f375 (IsA marmota mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_02a562d025 (IsA marocain crepe) (STV 1.0 0.9091)) +(: cnet_isa_a448777b45 (IsA maroon firework) (STV 1.0 0.9091)) +(: cnet_isa_0d5b776f42 (IsA maroon purplish_red) (STV 1.0 0.9091)) +(: cnet_isa_24bdbe8edb (IsA maroon unfortunate) (STV 1.0 0.9091)) +(: cnet_isa_13a572a404 (IsA marquee canopy) (STV 1.0 0.9091)) +(: cnet_isa_aa1fa5cdf4 (IsA marquess peer) (STV 1.0 0.9091)) +(: cnet_isa_038df8771a (IsA marquetry inlay) (STV 1.0 0.9091)) +(: cnet_isa_1d0f3d4f88 (IsA marquis nobleman) (STV 1.0 0.9091)) +(: cnet_isa_840258ce62 (IsA marrano converso) (STV 1.0 0.9091)) +(: cnet_isa_45bca5c5c1 (IsA marriage ritual) (STV 1.0 0.9091)) +(: cnet_isa_add73b6433 (IsA marriage family) (STV 1.0 0.9091)) +(: cnet_isa_5551d89f43 (IsA marriage marital_status) (STV 1.0 0.9091)) +(: cnet_isa_539344d260 (IsA marriage union) (STV 1.0 0.9091)) +(: cnet_isa_1b867f5196 (IsA marriage_bed bed) (STV 1.0 0.9091)) +(: cnet_isa_2e2e32fafd (IsA marriage_brokerage brokerage) (STV 1.0 0.9091)) +(: cnet_isa_f0f23550ae (IsA marriage_contract contract) (STV 1.0 0.9091)) +(: cnet_isa_df241ddd0e (IsA marriage_counseling guidance) (STV 1.0 0.9091)) +(: cnet_isa_e03d28ef86 (IsA marriage_license license) (STV 1.0 0.9091)) +(: cnet_isa_9690139a0a (IsA marriage_of_convenience marriage) (STV 1.0 0.9091)) +(: cnet_isa_7df6eeec2f (IsA marriage_proposal offer) (STV 1.0 0.9091)) +(: cnet_isa_67bcb896a0 (IsA marriageability eligibility) (STV 1.0 0.9091)) +(: cnet_isa_a2118b4c8f (IsA married person) (STV 1.0 0.9091)) +(: cnet_isa_64e2e0c539 (IsA marrow connective_tissue) (STV 1.0 0.9091)) +(: cnet_isa_9a48e189f9 (IsA marrow dainty) (STV 1.0 0.9091)) +(: cnet_isa_d6618f434f (IsA marrow summer_squash) (STV 1.0 0.9091)) +(: cnet_isa_e1fa7119d5 (IsA marrowbone bone) (STV 1.0 0.9091)) +(: cnet_isa_f908519b45 (IsA marrowfat_pea pea) (STV 1.0 0.9091)) +(: cnet_isa_face156376 (IsA marrubium asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_26cd60ce96 (IsA mar planet) (STV 1.0 0.9572)) +(: cnet_isa_60faaf3fec (IsA marsala fortified_wine) (STV 1.0 0.9091)) +(: cnet_isa_d5bd224c5c (IsA marseille fabric) (STV 1.0 0.9091)) +(: cnet_isa_558f7678ec (IsA marseille_fever disease) (STV 1.0 0.9091)) +(: cnet_isa_51155207e6 (IsA marsh wetland) (STV 1.0 0.9091)) +(: cnet_isa_372081ef29 (IsA marsh_andromeda andromeda) (STV 1.0 0.9091)) +(: cnet_isa_23589d06c2 (IsA marsh_bellflower campanula) (STV 1.0 0.9091)) +(: cnet_isa_ace60251cd (IsA marsh_cress watercress) (STV 1.0 0.9091)) +(: cnet_isa_763b0c9cd5 (IsA marsh_elder marsh_plant) (STV 1.0 0.9091)) +(: cnet_isa_cc875f23cc (IsA marsh_felwort herb) (STV 1.0 0.9091)) +(: cnet_isa_381bd37703 (IsA marsh_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_f68b8bea12 (IsA marsh_gas methane) (STV 1.0 0.9091)) +(: cnet_isa_93b7d1d98a (IsA marsh_gentian gentian) (STV 1.0 0.9091)) +(: cnet_isa_8bb24f2998 (IsA marsh_hare wood_rabbit) (STV 1.0 0.9091)) +(: cnet_isa_54aa07ee5b (IsA marsh_harrier harrier) (STV 1.0 0.9091)) +(: cnet_isa_a7472b7133 (IsA marsh_hawk harrier) (STV 1.0 0.9091)) +(: cnet_isa_b88b94a235 (IsA marsh_horsetail horsetail) (STV 1.0 0.9091)) +(: cnet_isa_5dac18b46b (IsA marsh_mallow althea) (STV 1.0 0.9091)) +(: cnet_isa_9f24145207 (IsA marsh_marigold marsh_plant) (STV 1.0 0.9091)) +(: cnet_isa_89bdbc437d (IsA marsh_orchid orchid) (STV 1.0 0.9091)) +(: cnet_isa_ac3d8efb49 (IsA marsh_pea wild_pea) (STV 1.0 0.9091)) +(: cnet_isa_8df62ef725 (IsA marsh_pink sabbatia) (STV 1.0 0.9091)) +(: cnet_isa_d69729385c (IsA marsh_plant aquatic_plant) (STV 1.0 0.9091)) +(: cnet_isa_7f3ff85722 (IsA marsh_st_john_s_wort st_john_s_wort) (STV 1.0 0.9091)) +(: cnet_isa_0cfecd8627 (IsA marsh_wren wren) (STV 1.0 0.9091)) +(: cnet_isa_59c6a8779d (IsA marshal lawman) (STV 1.0 0.9091)) +(: cnet_isa_29e4c24ea8 (IsA marshall commissioned_military_officer) (STV 1.0 0.9091)) +(: cnet_isa_8073d167e8 (IsA marshall_mather famous_rapper) (STV 1.0 0.9091)) +(: cnet_isa_48313e8790 (IsA marshalling_yard yard) (STV 1.0 0.9091)) +(: cnet_isa_26b0f76698 (IsA marshalship position) (STV 1.0 0.9091)) +(: cnet_isa_ef86b4acff (IsA marshmallow candy) (STV 1.0 0.9091)) +(: cnet_isa_42154313a9 (IsA marshmallow_fluff spread) (STV 1.0 0.9091)) +(: cnet_isa_de78a9f51e (IsA marsilea fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_991c387b6a (IsA marsileaceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_892be435a7 (IsA marsupial metatherian) (STV 1.0 0.9091)) +(: cnet_isa_657895f7b1 (IsA marsupialia animal_order) (STV 1.0 0.9091)) +(: cnet_isa_d8e72800f0 (IsA marsupial mammal) (STV 1.0 0.9091)) +(: cnet_isa_ecf8ba91c7 (IsA marsupium pouch) (STV 1.0 0.9091)) +(: cnet_isa_5eb9fc47b7 (IsA martello_tower fortress) (STV 1.0 0.9091)) +(: cnet_isa_db2323be20 (IsA marten musteline_mammal) (STV 1.0 0.9091)) +(: cnet_isa_9bb6527d9a (IsA martensite solid_solution) (STV 1.0 0.9091)) +(: cnet_isa_2f5090c729 (IsA marte mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_b398142606 (IsA martial_art self_defense) (STV 1.0 0.9091)) +(: cnet_isa_b483b986c2 (IsA martial_law law) (STV 1.0 0.9091)) +(: cnet_isa_c9ac4d2afd (IsA martin swallow) (STV 1.0 0.9091)) +(: cnet_isa_5d0cde25ac (IsA martin_luther_king_jr_s_birthday legal_holiday) (STV 1.0 0.9091)) +(: cnet_isa_86765e8b08 (IsA martinet authoritarian) (STV 1.0 0.9091)) +(: cnet_isa_c5ab74b745 (IsA martingale stable_gear) (STV 1.0 0.9091)) +(: cnet_isa_21d300a1d9 (IsA martini cocktail) (STV 1.0 0.9091)) +(: cnet_isa_03110efb93 (IsA martinma quarter_day) (STV 1.0 0.9091)) +(: cnet_isa_16f8e2fc3d (IsA martynia herb) (STV 1.0 0.9091)) +(: cnet_isa_da8da4d9ad (IsA martyniaceae plant_family) (STV 1.0 0.9091)) +(: cnet_isa_3e1438b879 (IsA martyr victim) (STV 1.0 0.9091)) +(: cnet_isa_e7138667d3 (IsA martyrdom death) (STV 1.0 0.9091)) +(: cnet_isa_30fefa1a85 (IsA marumi kumquat) (STV 1.0 0.9091)) +(: cnet_isa_3069224d71 (IsA marupa bitterwood_tree) (STV 1.0 0.9091)) +(: cnet_isa_e1eb848f8c (IsA marut hindu_deity) (STV 1.0 0.9091)) +(: cnet_isa_4a73c6a93e (IsA marvin artificial_intelligence_researcher) (STV 1.0 0.9091)) +(: cnet_isa_0339603a75 (IsA marxism communism) (STV 1.0 0.9091)) +(: cnet_isa_8e1104b552 (IsA marxist advocate) (STV 1.0 0.9091)) +(: cnet_isa_c434c8e99f (IsA maryland state) (STV 1.0 0.9339)) +(: cnet_isa_5daba923bc (IsA maryland_chicken dish) (STV 1.0 0.9091)) +(: cnet_isa_8ec41ca507 (IsA maryland_golden_aster golden_aster) (STV 1.0 0.9091)) +(: cnet_isa_465e9c0c0f (IsA marylander american) (STV 1.0 0.9091)) +(: cnet_isa_c500eabe9c (IsA marzipan candy) (STV 1.0 0.9091)) +(: cnet_isa_8755fc0e11 (IsA masa chad) (STV 1.0 0.9091)) +(: cnet_isa_cb88700982 (IsA masai nilotic) (STV 1.0 0.9091)) +(: cnet_isa_126b165439 (IsA mascara makeup) (STV 1.0 0.9091)) +(: cnet_isa_ce917bbb69 (IsA mascarene_grass zoysia) (STV 1.0 0.9091)) +(: cnet_isa_9d3196c1b1 (IsA mascarpone cream_cheese) (STV 1.0 0.9091)) +(: cnet_isa_fee771fe8a (IsA mascot organism) (STV 1.0 0.9091)) +(: cnet_isa_90d5c72fc8 (IsA masculine gender) (STV 1.0 0.9091)) +(: cnet_isa_c146b7c499 (IsA masculinity trait) (STV 1.0 0.9091)) +(: cnet_isa_8b68c36095 (IsA masculinization growth) (STV 1.0 0.9091)) +(: cnet_isa_2d3beaa896 (IsA masdevallia orchid) (STV 1.0 0.9091)) +(: cnet_isa_da3b6cabcd (IsA maser amplifier) (STV 1.0 0.9091)) +(: cnet_isa_99e59d7f28 (IsA mash feed) (STV 1.0 0.9091)) +(: cnet_isa_3771976993 (IsA mash suspension) (STV 1.0 0.9091)) +(: cnet_isa_696b760399 (IsA mashed_potato potato) (STV 1.0 0.9091)) +(: cnet_isa_3cff208ce8 (IsA masher kitchen_utensil) (STV 1.0 0.9091)) +(: cnet_isa_bbed8cdade (IsA mashi bantu) (STV 1.0 0.9091)) +(: cnet_isa_8566fae1ab (IsA mashie iron) (STV 1.0 0.9091)) +(: cnet_isa_784a1617bc (IsA mashie_niblick iron) (STV 1.0 0.9091)) +(: cnet_isa_71396534b6 (IsA masjid place_of_worship) (STV 1.0 0.9091)) +(: cnet_isa_9945d69834 (IsA mask concealment) (STV 1.0 0.9091)) +(: cnet_isa_ba0eceb707 (IsA mask covering) (STV 1.0 0.9091)) +(: cnet_isa_6472729a3d (IsA mask disguise) (STV 1.0 0.9091)) +(: cnet_isa_30b5efce6d (IsA mask protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_23146de11f (IsA masked_ball ball) (STV 1.0 0.9091)) +(: cnet_isa_f9c61f3883 (IsA masked_ball masquerade) (STV 1.0 0.9091)) +(: cnet_isa_15ca04da67 (IsA masked_shrew shrew) (STV 1.0 0.9091)) +(: cnet_isa_e9e7c9e187 (IsA masking sensation) (STV 1.0 0.9091)) +(: cnet_isa_b39e4b72d8 (IsA masking_piece scenery) (STV 1.0 0.9091)) +(: cnet_isa_a1f2d76629 (IsA masking_tape adhesive_tape) (STV 1.0 0.9091)) +(: cnet_isa_6f23b9d500 (IsA masochism sexual_pleasure) (STV 1.0 0.9091)) +(: cnet_isa_48ed4d0d55 (IsA masochist pervert) (STV 1.0 0.9091)) +(: cnet_isa_a0b8e1e117 (IsA mason_s_level level) (STV 1.0 0.9091)) +(: cnet_isa_04928d3b04 (IsA mason craftsman) (STV 1.0 0.9091)) +(: cnet_isa_ef3e6f7cf5 (IsA mason_bee bee) (STV 1.0 0.9091)) +(: cnet_isa_d14563e3be (IsA mason_jar jar) (STV 1.0 0.9091)) +(: cnet_isa_9247daa76d (IsA mason_wasp sphecoid_wasp) (STV 1.0 0.9091)) +(: cnet_isa_4db006fc26 (IsA mason_wasp vespid) (STV 1.0 0.9091)) +(: cnet_isa_2edfe123d3 (IsA masonry trade) (STV 1.0 0.9091)) +(: cnet_isa_ccccb0b0c9 (IsA masonry structure) (STV 1.0 0.9091)) +(: cnet_isa_8ac573e163 (IsA masorah textual_criticism) (STV 1.0 0.9091)) +(: cnet_isa_963fbcfd13 (IsA masquerade pretense) (STV 1.0 0.9091)) +(: cnet_isa_12ca93ca3d (IsA masquerade party) (STV 1.0 0.9091)) +(: cnet_isa_47e1ec08bd (IsA masquerader participant) (STV 1.0 0.9091)) +(: cnet_isa_11532db649 (IsA mass fundamental_quantity) (STV 1.0 0.9091)) +(: cnet_isa_3cff2a710b (IsA mass physical_property) (STV 1.0 0.9091)) +(: cnet_isa_3e85edae46 (IsA mass prayer) (STV 1.0 0.9091)) +(: cnet_isa_845d75776e (IsA mass religious_music) (STV 1.0 0.9091)) +(: cnet_isa_9fc8e132b4 (IsA mass collection) (STV 1.0 0.9091)) +(: cnet_isa_9034babf03 (IsA mass body) (STV 1.0 0.9091)) +(: cnet_isa_0eefdc3c12 (IsA mass religious_ceremony) (STV 1.0 0.9091)) +(: cnet_isa_23ac60ced9 (IsA mass_action_principle principle) (STV 1.0 0.9091)) +(: cnet_isa_4c628d64cf (IsA mass_card sympathy_card) (STV 1.0 0.9091)) +(: cnet_isa_1338c0c053 (IsA mass_culture culture) (STV 1.0 0.9091)) +(: cnet_isa_27da5efcfa (IsA mass_defect mass) (STV 1.0 0.9091)) +(: cnet_isa_efe029edc7 (IsA mass_energy mass) (STV 1.0 0.9091)) +(: cnet_isa_f0c8970bbe (IsA mass_energy_equivalence principle) (STV 1.0 0.9091)) +(: cnet_isa_ebf4982abc (IsA mass_hysteria craze) (STV 1.0 0.9091)) +(: cnet_isa_443c573317 (IsA mass_murderer murderer) (STV 1.0 0.9091)) +(: cnet_isa_84155b9722 (IsA mass_noun noun) (STV 1.0 0.9091)) +(: cnet_isa_50f37e03a7 (IsA mass_number mass_unit) (STV 1.0 0.9091)) +(: cnet_isa_843904deb5 (IsA mass_production production) (STV 1.0 0.9091)) +(: cnet_isa_1c7ca98c70 (IsA mass_spectrograph mass_spectrometer) (STV 1.0 0.9091)) +(: cnet_isa_f4850a1cd0 (IsA mass_spectrometer spectroscope) (STV 1.0 0.9091)) +(: cnet_isa_a806c491fd (IsA mass_spectroscopy spectroscopy) (STV 1.0 0.9091)) +(: cnet_isa_957f5cb6ff (IsA mass_spectrum spectrum) (STV 1.0 0.9091)) +(: cnet_isa_e739daccf5 (IsA mass_unit unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_c4903b2300 (IsA massachuset algonquian) (STV 1.0 0.9091)) +(: cnet_isa_fc92e0f03a (IsA massachusett state) (STV 1.0 0.9659)) +(: cnet_isa_73e26798eb (IsA massachusett state_in_new_england) (STV 1.0 0.9339)) +(: cnet_isa_a2473a0e17 (IsA massachusett algonquin) (STV 1.0 0.9091)) +(: cnet_isa_0dbc2dc76f (IsA massachusett_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_ab93f19d03 (IsA massage therapy) (STV 1.0 0.9091)) +(: cnet_isa_b2a5fb02b3 (IsA massage treatment) (STV 1.0 0.9091)) +(: cnet_isa_0ef90e8ed9 (IsA massage_parlor place_of_business) (STV 1.0 0.9091)) +(: cnet_isa_13f79da33f (IsA massage_parlor whorehouse) (STV 1.0 0.9091)) +(: cnet_isa_fa77c0c523 (IsA massager physical_therapist) (STV 1.0 0.9091)) +(: cnet_isa_59aab4ce16 (IsA massasauga rattlesnake) (STV 1.0 0.9091)) +(: cnet_isa_57a2d83eee (IsA masse stroke) (STV 1.0 0.9091)) +(: cnet_isa_e06a3f6d47 (IsA masseter facial_muscle) (STV 1.0 0.9091)) +(: cnet_isa_bcfc67c7cf (IsA masseur massager) (STV 1.0 0.9091)) +(: cnet_isa_d2bbed7aa1 (IsA masseuse massager) (STV 1.0 0.9091)) +(: cnet_isa_627df1b473 (IsA massicot lead_ore) (STV 1.0 0.9091)) +(: cnet_isa_c08b4a78af (IsA massif geological_formation) (STV 1.0 0.9091)) +(: cnet_isa_80634f25c3 (IsA massorete scholar) (STV 1.0 0.9091)) +(: cnet_isa_146158224e (IsA mast pole) (STV 1.0 0.9091)) +(: cnet_isa_0df4c0be75 (IsA mast spar) (STV 1.0 0.9091)) +(: cnet_isa_34219e10c4 (IsA mast feed) (STV 1.0 0.9091)) +(: cnet_isa_8129dc7038 (IsA mast nut) (STV 1.0 0.9091)) +(: cnet_isa_20f61789ce (IsA mast_cell somatic_cell) (STV 1.0 0.9091)) +(: cnet_isa_11d1ff2351 (IsA mastaba grave) (STV 1.0 0.9091)) +(: cnet_isa_ebb492a884 (IsA mastalgia pain) (STV 1.0 0.9091)) +(: cnet_isa_519f49d295 (IsA mastectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_018cf45d8e (IsA master_s_degree academic_degree) (STV 1.0 0.9091)) +(: cnet_isa_4904cb9fb1 (IsA master creation) (STV 1.0 0.9091)) +(: cnet_isa_6c46c90349 (IsA master authority) (STV 1.0 0.9091)) +(: cnet_isa_c579bee1dc (IsA master employer) (STV 1.0 0.9091)) +(: cnet_isa_186bb15c27 (IsA master officer) (STV 1.0 0.9091)) +(: cnet_isa_bdc745de9b (IsA master scholar) (STV 1.0 0.9091)) +(: cnet_isa_a3c830b0e9 (IsA master_at_arm petty_officer) (STV 1.0 0.9091)) +(: cnet_isa_3c3b3b316d (IsA master_bedroom bedroom) (STV 1.0 0.9091)) +(: cnet_isa_d75a8c13e2 (IsA master_class class) (STV 1.0 0.9091)) +(: cnet_isa_1dc39d5cbb (IsA master_file computer_file) (STV 1.0 0.9091)) +(: cnet_isa_b1286f499a (IsA master_in_business master_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_4bc5c68293 (IsA master_in_public_affair master_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_96fa58acbd (IsA master_nis_server nis_server) (STV 1.0 0.9091)) +(: cnet_isa_d52711a516 (IsA master_of_architecture master_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_2dc04807d8 (IsA master_of_art master_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_9764a34f59 (IsA master_of_art_in_library_science master_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_ed85e785ae (IsA master_of_art_in_teaching master_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_7e0101408c (IsA master_of_ceremony entertainer) (STV 1.0 0.9091)) +(: cnet_isa_e0ccf7caaf (IsA master_of_divinity master_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_cb62247df5 (IsA master_of_education master_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_e1a960dd66 (IsA master_of_fine_art master_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_972901e39f (IsA master_of_law law_degree) (STV 1.0 0.9091)) +(: cnet_isa_478491f6c2 (IsA master_of_library_science master_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_bf579b7ba8 (IsA master_of_literature master_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_75c05b03e7 (IsA master_of_science master_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_552dc8773c (IsA master_of_science_in_engineering master_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_75165ef70a (IsA master_of_theology master_s_degree) (STV 1.0 0.9091)) +(: cnet_isa_2e695fc110 (IsA master_plan plan) (STV 1.0 0.9091)) +(: cnet_isa_6db6f3693f (IsA master_race race) (STV 1.0 0.9091)) +(: cnet_isa_8b1811352a (IsA master_sergeant sergeant) (STV 1.0 0.9091)) +(: cnet_isa_0d78e4ceae (IsA mastercard credit_card) (STV 1.0 0.9756)) +(: cnet_isa_4ad5c9a4cb (IsA mastering recording) (STV 1.0 0.9091)) +(: cnet_isa_9598586e2c (IsA mastering education) (STV 1.0 0.9091)) +(: cnet_isa_e2741e8da5 (IsA masterpiece accomplishment) (STV 1.0 0.9091)) +(: cnet_isa_48117a8d93 (IsA masterpiece work) (STV 1.0 0.9091)) +(: cnet_isa_745a93d5a2 (IsA mastership position) (STV 1.0 0.9091)) +(: cnet_isa_d1d736ad73 (IsA mastership skill) (STV 1.0 0.9091)) +(: cnet_isa_f5081288af (IsA masterstroke accomplishment) (STV 1.0 0.9091)) +(: cnet_isa_a9135b1154 (IsA mastery domination) (STV 1.0 0.9091)) +(: cnet_isa_045d94e3ac (IsA masthead top) (STV 1.0 0.9091)) +(: cnet_isa_f81adc3d2f (IsA masthead list) (STV 1.0 0.9091)) +(: cnet_isa_351e42061d (IsA masthead title) (STV 1.0 0.9091)) +(: cnet_isa_6abac52732 (IsA mastic cement) (STV 1.0 0.9091)) +(: cnet_isa_1824d573b9 (IsA mastic filler) (STV 1.0 0.9091)) +(: cnet_isa_f9c524fc1d (IsA mastic natural_resin) (STV 1.0 0.9091)) +(: cnet_isa_df15f47a82 (IsA mastic_tree shrub) (STV 1.0 0.9091)) +(: cnet_isa_aa67de9bfb (IsA masticophis reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_cd6235ed93 (IsA mastiff working_dog) (STV 1.0 0.9091)) +(: cnet_isa_8f1c9ddc2e (IsA mastiff_bat carnivorous_bat) (STV 1.0 0.9091)) +(: cnet_isa_d5c7322887 (IsA mastigomycota division) (STV 1.0 0.9091)) +(: cnet_isa_d4d117b1dc (IsA mastigophora class) (STV 1.0 0.9091)) +(: cnet_isa_bf6e57cd79 (IsA mastigoproctus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_69f076bfb0 (IsA mastitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_23009f1728 (IsA mastodon proboscidean) (STV 1.0 0.9091)) +(: cnet_isa_95a75e2f63 (IsA mastoid process) (STV 1.0 0.9091)) +(: cnet_isa_0fb428bf7d (IsA mastoidale craniometric_point) (STV 1.0 0.9091)) +(: cnet_isa_5a9515c9c4 (IsA mastoidectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_f156f2ddb9 (IsA mastoiditis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_c46722d66f (IsA mastopathy pathology) (STV 1.0 0.9091)) +(: cnet_isa_7cde1bba83 (IsA mastopexy plastic_surgery) (STV 1.0 0.9091)) +(: cnet_isa_bd2e7c3621 (IsA mastoterme arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_077ce84e30 (IsA mastoterme_darwiniensis termite) (STV 1.0 0.9091)) +(: cnet_isa_75d3b74b07 (IsA mastoterme_electrodominicus termite) (STV 1.0 0.9091)) +(: cnet_isa_6e395e196e (IsA mastoterme_electromexicus termite) (STV 1.0 0.9091)) +(: cnet_isa_38cbc94a4f (IsA mastotermitidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_1e00e5e1eb (IsA masturbation form_of_self_stimulation) (STV 1.0 0.9524)) +(: cnet_isa_9f9acbea91 (IsA masturbation autoeroticism) (STV 1.0 0.9091)) +(: cnet_isa_af47906615 (IsA masturbator person) (STV 1.0 0.9091)) +(: cnet_isa_ca5f6bae71 (IsA mat floor_cover) (STV 1.0 0.9091)) +(: cnet_isa_984e196ca7 (IsA mat mounting) (STV 1.0 0.9091)) +(: cnet_isa_88c2c4cd41 (IsA mat pad) (STV 1.0 0.9091)) +(: cnet_isa_c420ccae9a (IsA mat sport_equipment) (STV 1.0 0.9091)) +(: cnet_isa_840b0d9828 (IsA mat mass) (STV 1.0 0.9091)) +(: cnet_isa_c2cff0f6b5 (IsA matador bullfighter) (STV 1.0 0.9091)) +(: cnet_isa_d6293d8e59 (IsA matai conifer) (STV 1.0 0.9091)) +(: cnet_isa_694414b8c1 (IsA matakam biu_mandara) (STV 1.0 0.9091)) +(: cnet_isa_fa0488307a (IsA match duplicate) (STV 1.0 0.9091)) +(: cnet_isa_9b8e0a87ef (IsA match lighter) (STV 1.0 0.9091)) +(: cnet_isa_8dd11f3550 (IsA match counterpart) (STV 1.0 0.9091)) +(: cnet_isa_904ca89e6a (IsA match contest) (STV 1.0 0.9091)) +(: cnet_isa_c8f9544fca (IsA match score) (STV 1.0 0.9091)) +(: cnet_isa_b3ace240df (IsA match_plane plane) (STV 1.0 0.9091)) +(: cnet_isa_410105f8a6 (IsA match_play golf) (STV 1.0 0.9091)) +(: cnet_isa_9602ca27a2 (IsA match_point point) (STV 1.0 0.9091)) +(: cnet_isa_03a9ade599 (IsA match_up pairing) (STV 1.0 0.9091)) +(: cnet_isa_43d1c19983 (IsA matchboard board) (STV 1.0 0.9091)) +(: cnet_isa_37481df1cd (IsA matchbook folder) (STV 1.0 0.9091)) +(: cnet_isa_53e6c82be4 (IsA matchbox box) (STV 1.0 0.9091)) +(: cnet_isa_7527533350 (IsA matching_fund fund) (STV 1.0 0.9091)) +(: cnet_isa_b249cf37d2 (IsA matchlock musket) (STV 1.0 0.9091)) +(: cnet_isa_8e13b596ce (IsA matchmaker mediator) (STV 1.0 0.9091)) +(: cnet_isa_2ecf735b51 (IsA matchmaking mediation) (STV 1.0 0.9091)) +(: cnet_isa_34a8da1859 (IsA matchstick stick) (STV 1.0 0.9091)) +(: cnet_isa_c5666e4639 (IsA matchweed subshrub) (STV 1.0 0.9091)) +(: cnet_isa_7875956902 (IsA matchwood bit) (STV 1.0 0.9091)) +(: cnet_isa_0180c91239 (IsA matchwood wood) (STV 1.0 0.9091)) +(: cnet_isa_81d037e73d (IsA mate beverage) (STV 1.0 0.9091)) +(: cnet_isa_c5eefaacea (IsA mate animal) (STV 1.0 0.9091)) +(: cnet_isa_bbd643660b (IsA mate friend) (STV 1.0 0.9091)) +(: cnet_isa_f871db33c1 (IsA mate officer) (STV 1.0 0.9091)) +(: cnet_isa_dde5fe45c3 (IsA mate holly) (STV 1.0 0.9091)) +(: cnet_isa_ebc65d9746 (IsA matelote fish_stew) (STV 1.0 0.9091)) +(: cnet_isa_3d5fc7d731 (IsA mater mother) (STV 1.0 0.9091)) +(: cnet_isa_97e6881b5f (IsA material equipment) (STV 1.0 0.9091)) +(: cnet_isa_ce8a8094b3 (IsA material information) (STV 1.0 0.9091)) +(: cnet_isa_db1bff0b88 (IsA material applicant) (STV 1.0 0.9091)) +(: cnet_isa_81d9591f82 (IsA material substance) (STV 1.0 0.9091)) +(: cnet_isa_3c223f62d3 (IsA material_breach breach_of_contract) (STV 1.0 0.9091)) +(: cnet_isa_348a3d4b9b (IsA material_possession property) (STV 1.0 0.9091)) +(: cnet_isa_886d9a5400 (IsA material_resource asset) (STV 1.0 0.9091)) +(: cnet_isa_2530387dc6 (IsA material_witness witness) (STV 1.0 0.9091)) +(: cnet_isa_0c8ae73d97 (IsA materialism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_73b8d72bdf (IsA materialism desire) (STV 1.0 0.9091)) +(: cnet_isa_396af9620b (IsA materialist capitalist) (STV 1.0 0.9091)) +(: cnet_isa_f2b284474c (IsA materialist disbeliever) (STV 1.0 0.9091)) +(: cnet_isa_6865d509e2 (IsA materiality quality) (STV 1.0 0.9091)) +(: cnet_isa_de55f87a36 (IsA materiality relevance) (STV 1.0 0.9091)) +(: cnet_isa_8b1c42db60 (IsA materialization appearance) (STV 1.0 0.9091)) +(: cnet_isa_7c0eefd22d (IsA materialization natural_process) (STV 1.0 0.9091)) +(: cnet_isa_ac70c390d6 (IsA material_handling handling) (STV 1.0 0.9091)) +(: cnet_isa_976e70dd4a (IsA materiel equipment) (STV 1.0 0.9091)) +(: cnet_isa_5bc0fbbf45 (IsA maternal_infant_bonding bonding) (STV 1.0 0.9091)) +(: cnet_isa_25c4497739 (IsA maternalism care) (STV 1.0 0.9091)) +(: cnet_isa_ed7deef864 (IsA maternity_hospital hospital) (STV 1.0 0.9091)) +(: cnet_isa_6e0d349992 (IsA maternity_ward ward) (STV 1.0 0.9091)) +(: cnet_isa_7e39d395c0 (IsA math important_part_of_education) (STV 1.0 0.9339)) +(: cnet_isa_43de0ea552 (IsA math school_subject) (STV 1.0 0.9339)) +(: cnet_isa_c4d0838007 (IsA math subject) (STV 1.0 0.9693)) +(: cnet_isa_83c0cfb22a (IsA math subject_in_school) (STV 1.0 0.9608)) +(: cnet_isa_3ad6ae5e2d (IsA math subject_student_might_study) (STV 1.0 0.9454)) +(: cnet_isa_464339afa0 (IsA math_teacher teacher) (STV 1.0 0.9091)) +(: cnet_isa_5c891e1143 (IsA mathematical_model model) (STV 1.0 0.9091)) +(: cnet_isa_9a153198d8 (IsA mathematical_notation notation) (STV 1.0 0.9091)) +(: cnet_isa_8d529b1e9f (IsA mathematical_process calculation) (STV 1.0 0.9091)) +(: cnet_isa_03bab2f974 (IsA mathematical_proof proof) (STV 1.0 0.9091)) +(: cnet_isa_13782eb58f (IsA mathematical_relation relation) (STV 1.0 0.9091)) +(: cnet_isa_869e07fdd2 (IsA mathematical_space set) (STV 1.0 0.9091)) +(: cnet_isa_b3688b192d (IsA mathematical_space space) (STV 1.0 0.9091)) +(: cnet_isa_c1aa69a2b5 (IsA mathematical_statement statement) (STV 1.0 0.9091)) +(: cnet_isa_adbcb0f855 (IsA mathematical_symbol character) (STV 1.0 0.9091)) +(: cnet_isa_9e777457c5 (IsA mathematician scientist) (STV 1.0 0.9091)) +(: cnet_isa_fe4c227779 (IsA mathematic aboslute) (STV 1.0 0.9091)) +(: cnet_isa_8f79cbc44e (IsA mathematic first_axiomatised_in_greece) (STV 1.0 0.9091)) +(: cnet_isa_47fbb94b59 (IsA mathematic science) (STV 1.0 0.9091)) +(: cnet_isa_920ade2746 (IsA mathematic_department academic_department) (STV 1.0 0.9091)) +(: cnet_isa_d2bfb4669e (IsA matilija_poppy subshrub) (STV 1.0 0.9091)) +(: cnet_isa_d6b16b8585 (IsA matinee theatrical_performance) (STV 1.0 0.9091)) +(: cnet_isa_389d5c4d7d (IsA mating_factor_molecule ligand) (STV 1.0 0.9091)) +(: cnet_isa_62eb4b64f3 (IsA mating_factor_molecule mating_factor) (STV 1.0 0.9091)) +(: cnet_isa_46abcdfa56 (IsA mating_factor_molecule molecule) (STV 1.0 0.9091)) +(: cnet_isa_816f67cbb1 (IsA matin canonical_hour) (STV 1.0 0.9091)) +(: cnet_isa_d79e0355df (IsA matriarch head_of_household) (STV 1.0 0.9091)) +(: cnet_isa_42641380d2 (IsA matriarch woman) (STV 1.0 0.9091)) +(: cnet_isa_6308f2015e (IsA matriarchy social_organization) (STV 1.0 0.9091)) +(: cnet_isa_ee98d31e9a (IsA matricaria asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_139fa01f54 (IsA matricide parricide) (STV 1.0 0.9091)) +(: cnet_isa_cdb1785a6e (IsA matriculate college_student) (STV 1.0 0.9091)) +(: cnet_isa_43c32e650a (IsA matriculation admission) (STV 1.0 0.9091)) +(: cnet_isa_a417d6e482 (IsA matrilineage unilateral_descent) (STV 1.0 0.9091)) +(: cnet_isa_5c6d00e5b8 (IsA matrimonial_law jurisprudence) (STV 1.0 0.9091)) +(: cnet_isa_5c4bdc3c7c (IsA matrimony sacrament) (STV 1.0 0.9091)) +(: cnet_isa_cf356707f4 (IsA matrimony_vine shrub) (STV 1.0 0.9091)) +(: cnet_isa_f2d6f52ed2 (IsA matrix mold) (STV 1.0 0.9091)) +(: cnet_isa_22543f807d (IsA matrix animal_tissue) (STV 1.0 0.9091)) +(: cnet_isa_1ddc58e6c8 (IsA matrix body_substance) (STV 1.0 0.9091)) +(: cnet_isa_ec9d318cba (IsA matrix rock) (STV 1.0 0.9091)) +(: cnet_isa_3887f2c1c0 (IsA matrix array) (STV 1.0 0.9091)) +(: cnet_isa_97c52b737d (IsA matrix enclosure) (STV 1.0 0.9091)) +(: cnet_isa_a5448d544e (IsA matrix_addition matrix_operation) (STV 1.0 0.9091)) +(: cnet_isa_597fc29a3c (IsA matrix_algebra algebra) (STV 1.0 0.9091)) +(: cnet_isa_a8c6f9ac97 (IsA matrix_inversion matrix_operation) (STV 1.0 0.9091)) +(: cnet_isa_07acc399c6 (IsA matrix_multiplication matrix_operation) (STV 1.0 0.9091)) +(: cnet_isa_5fc3b7b1c7 (IsA matrix_operation mathematical_process) (STV 1.0 0.9091)) +(: cnet_isa_1438971779 (IsA matrix_transposition matrix_operation) (STV 1.0 0.9091)) +(: cnet_isa_f98753a43d (IsA matron nurse) (STV 1.0 0.9091)) +(: cnet_isa_b2d7d8a870 (IsA matron wardress) (STV 1.0 0.9091)) +(: cnet_isa_a019cfb710 (IsA matron wife) (STV 1.0 0.9091)) +(: cnet_isa_b8647b5eb9 (IsA matron woman) (STV 1.0 0.9091)) +(: cnet_isa_090e9ccec0 (IsA matron_of_honor attendant) (STV 1.0 0.9091)) +(: cnet_isa_8699fdff9c (IsA matronymic name) (STV 1.0 0.9091)) +(: cnet_isa_0e703988e5 (IsA matsyendra asana) (STV 1.0 0.9091)) +(: cnet_isa_70fed42881 (IsA matte mixture) (STV 1.0 0.9091)) +(: cnet_isa_bd1afdbde4 (IsA matter consequence) (STV 1.0 0.9091)) +(: cnet_isa_7eeac34e4f (IsA matter concern) (STV 1.0 0.9091)) +(: cnet_isa_b59a5dc72c (IsA matter trouble) (STV 1.0 0.9091)) +(: cnet_isa_24ec1b8767 (IsA matter writing) (STV 1.0 0.9091)) +(: cnet_isa_91ab4fad7d (IsA matter_of_fact fact) (STV 1.0 0.9091)) +(: cnet_isa_7fbfbc8d81 (IsA matteuccia fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_a7b012a73f (IsA matthew_walker stopper_knot) (STV 1.0 0.9091)) +(: cnet_isa_484449e6b9 (IsA matthiola dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d2082c3bed (IsA matting covering) (STV 1.0 0.9091)) +(: cnet_isa_89302d45fd (IsA mattock pick) (STV 1.0 0.9091)) +(: cnet_isa_ec27b55b84 (IsA mattole athapaskan) (STV 1.0 0.9091)) +(: cnet_isa_6e3df6abf0 (IsA mattole athabascan) (STV 1.0 0.9091)) +(: cnet_isa_6c1257883a (IsA mattress pad) (STV 1.0 0.9091)) +(: cnet_isa_1b051edc0c (IsA mattress_cover bedclothe) (STV 1.0 0.9091)) +(: cnet_isa_179ea59e50 (IsA mattress_pad pad) (STV 1.0 0.9091)) +(: cnet_isa_71e6896d55 (IsA maturation organic_process) (STV 1.0 0.9091)) +(: cnet_isa_aa016f4f56 (IsA maturity state) (STV 1.0 0.9091)) +(: cnet_isa_6a8998adc4 (IsA maturity date) (STV 1.0 0.9091)) +(: cnet_isa_6f57989676 (IsA matzo bread) (STV 1.0 0.9091)) +(: cnet_isa_1bc51ef86d (IsA matzo_ball dumpling) (STV 1.0 0.9091)) +(: cnet_isa_0cf1c1eeef (IsA matzo_meal meal) (STV 1.0 0.9091)) +(: cnet_isa_1c7454720d (IsA maul hammer) (STV 1.0 0.9091)) +(: cnet_isa_ceffaf2649 (IsA mauler combatant) (STV 1.0 0.9091)) +(: cnet_isa_4ae9748c67 (IsA maulstick stick) (STV 1.0 0.9091)) +(: cnet_isa_22ca46c214 (IsA maund weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_f10dcff69e (IsA maundy ceremony) (STV 1.0 0.9091)) +(: cnet_isa_3fc5a1be33 (IsA maundy_money coin) (STV 1.0 0.9091)) +(: cnet_isa_e6ad04be59 (IsA maundy_thursday christian_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_77b193297c (IsA mauritanian african) (STV 1.0 0.9091)) +(: cnet_isa_15a62751c5 (IsA mauritanian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_14565140b5 (IsA mauritian aborigine) (STV 1.0 0.9091)) +(: cnet_isa_8137950d5c (IsA mauritian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_25a0e20a7e (IsA mauritian_rupee mauritian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_e14f0b319d (IsA mausoleum burial_chamber) (STV 1.0 0.9091)) +(: cnet_isa_9fad60fab7 (IsA mauve purple) (STV 1.0 0.9091)) +(: cnet_isa_bcd46c4fe7 (IsA maverick calf) (STV 1.0 0.9091)) +(: cnet_isa_febec884d9 (IsA maverick nonconformist) (STV 1.0 0.9091)) +(: cnet_isa_91aceebdaa (IsA mawkishness emotionality) (STV 1.0 0.9091)) +(: cnet_isa_1bfb936a0f (IsA mawkishness sentimentality) (STV 1.0 0.9091)) +(: cnet_isa_ccac5a3563 (IsA maxi skirt) (STV 1.0 0.9091)) +(: cnet_isa_0c2f2d0c7c (IsA maxillaria orchid) (STV 1.0 0.9091)) +(: cnet_isa_5b8e2d61c3 (IsA maxillary_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_84a2519460 (IsA maxillary_sinus sinus) (STV 1.0 0.9091)) +(: cnet_isa_6bf057cc3d (IsA maxillary_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_d6cd65b637 (IsA maxim saying) (STV 1.0 0.9091)) +(: cnet_isa_a3f864b749 (IsA maxim_gun machine_gun) (STV 1.0 0.9091)) +(: cnet_isa_5eec00ed4a (IsA maximilian_s_sunflower sunflower) (STV 1.0 0.9091)) +(: cnet_isa_815ed434bc (IsA maximization increase) (STV 1.0 0.9091)) +(: cnet_isa_839c862628 (IsA maximization mathematical_process) (STV 1.0 0.9091)) +(: cnet_isa_fd6b039db1 (IsA maximum limit) (STV 1.0 0.9091)) +(: cnet_isa_118eaa321c (IsA maximum extremum) (STV 1.0 0.9091)) +(: cnet_isa_8cb4cbd0be (IsA maximum large_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_1b86ff35d9 (IsA maximum_and_minimum_thermometer thermometer) (STV 1.0 0.9091)) +(: cnet_isa_674aef4e2e (IsA maxostoma fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_a1c5f0d335 (IsA maxwell_s_equation differential_equation) (STV 1.0 0.9091)) +(: cnet_isa_ed325aa2f8 (IsA maxwell flux_unit) (STV 1.0 0.9091)) +(: cnet_isa_705480687b (IsA maxwell_boltzmann_distribution_law distribution_law) (STV 1.0 0.9091)) +(: cnet_isa_60767165cf (IsA may gregorian_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_37fb6b2167 (IsA may_apple fruit) (STV 1.0 0.9091)) +(: cnet_isa_69835888fb (IsA may_day day) (STV 1.0 0.9091)) +(: cnet_isa_18d73100b7 (IsA may_wine punch) (STV 1.0 0.9091)) +(: cnet_isa_bc50ec53e0 (IsA maya amerind) (STV 1.0 0.9091)) +(: cnet_isa_4c41cbddff (IsA maya ethnic_minority) (STV 1.0 0.9091)) +(: cnet_isa_28b3870e9d (IsA mayaca monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_481220dec1 (IsA mayacaceae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_f5bf765f63 (IsA mayan native_american) (STV 1.0 0.9091)) +(: cnet_isa_399a95eee7 (IsA mayapple herb) (STV 1.0 0.9091)) +(: cnet_isa_e74221bd5e (IsA mayday distress_signal) (STV 1.0 0.9091)) +(: cnet_isa_e87bebd244 (IsA mayeng tree) (STV 1.0 0.9091)) +(: cnet_isa_2558d27eb8 (IsA mayetiola arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_a1bfde10a9 (IsA mayfly ephemerid) (STV 1.0 0.9091)) +(: cnet_isa_305cb6b28c (IsA mayhaw hawthorn) (STV 1.0 0.9091)) +(: cnet_isa_58ce15ba82 (IsA mayhem crime) (STV 1.0 0.9091)) +(: cnet_isa_043b2fdbdf (IsA mayonnaise dressing) (STV 1.0 0.9091)) +(: cnet_isa_e79c4f3b8f (IsA mayor civil_authority) (STV 1.0 0.9091)) +(: cnet_isa_a39ad8f127 (IsA mayor politician) (STV 1.0 0.9091)) +(: cnet_isa_6486271790 (IsA mayor_and_governor both_local_politician) (STV 1.0 0.9091)) +(: cnet_isa_60a2d64a34 (IsA mayoralty position) (STV 1.0 0.9091)) +(: cnet_isa_b4f1f1d90a (IsA mayoress mayor) (STV 1.0 0.9091)) +(: cnet_isa_19b998ff08 (IsA mayoress wife) (STV 1.0 0.9091)) +(: cnet_isa_7134acf7c7 (IsA maypole post) (STV 1.0 0.9091)) +(: cnet_isa_bc6b157d18 (IsA maypop passionflower) (STV 1.0 0.9091)) +(: cnet_isa_7c619a3ccd (IsA mayweed composite) (STV 1.0 0.9091)) +(: cnet_isa_466a122141 (IsA mazama mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_34b37edbb9 (IsA mazda corporation) (STV 1.0 0.9091)) +(: cnet_isa_7ce1b37e25 (IsA maze system) (STV 1.0 0.9091)) +(: cnet_isa_5abdb9bce5 (IsA mazer bowl) (STV 1.0 0.9091)) +(: cnet_isa_3e2d005869 (IsA mazurka folk_dancing) (STV 1.0 0.9091)) +(: cnet_isa_ff75bffe0f (IsA mazurka dance_music) (STV 1.0 0.9091)) +(: cnet_isa_f38001a0de (IsA mb computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_e0d9ec498c (IsA mbundu ethnic_group) (STV 1.0 0.9091)) +(: cnet_isa_c49a384013 (IsA mcardle_s_disease genetic_disease) (STV 1.0 0.9091)) +(: cnet_isa_14c501405e (IsA mcburney_s_point point) (STV 1.0 0.9091)) +(: cnet_isa_d8d73cb1d3 (IsA mccarthyism witch_hunt) (STV 1.0 0.9091)) +(: cnet_isa_80b280ddd5 (IsA mcguffey_eclectic_reader reader) (STV 1.0 0.9091)) +(: cnet_isa_5da9488f15 (IsA mcintosh eating_apple) (STV 1.0 0.9091)) +(: cnet_isa_b07ab8c898 (IsA mdma empherical_drug) (STV 1.0 0.9339)) +(: cnet_isa_545a47dafc (IsA mea_culpa acknowledgment) (STV 1.0 0.9091)) +(: cnet_isa_1afe08f07f (IsA mead_s_milkweed milkweed) (STV 1.0 0.9091)) +(: cnet_isa_ab980c30d0 (IsA mead alcoholic_beverage) (STV 1.0 0.9091)) +(: cnet_isa_c51a10fa52 (IsA mead brew) (STV 1.0 0.9091)) +(: cnet_isa_b6fdb7ad26 (IsA meadow clearing_in_wood) (STV 1.0 0.9091)) +(: cnet_isa_5c7b838760 (IsA meadow_buttercup buttercup) (STV 1.0 0.9091)) +(: cnet_isa_745c885cba (IsA meadow_clary sage) (STV 1.0 0.9091)) +(: cnet_isa_4367636890 (IsA meadow_cranesbill cranesbill) (STV 1.0 0.9091)) +(: cnet_isa_fbc68771a8 (IsA meadow_foxtail foxtail) (STV 1.0 0.9091)) +(: cnet_isa_4574016db4 (IsA meadow_goldenrod goldenrod) (STV 1.0 0.9091)) +(: cnet_isa_e8747fbfbf (IsA meadow_jumping_mouse jumping_mouse) (STV 1.0 0.9091)) +(: cnet_isa_f8e7845a50 (IsA meadow_mushroom agaric) (STV 1.0 0.9091)) +(: cnet_isa_6133264c2f (IsA meadow_pipit pipit) (STV 1.0 0.9091)) +(: cnet_isa_e462f564bf (IsA meadow_rue wildflower) (STV 1.0 0.9091)) +(: cnet_isa_f8ea08eecf (IsA meadow_salsify wildflower) (STV 1.0 0.9091)) +(: cnet_isa_5fd54b9e71 (IsA meadow_saxifrage saxifrage) (STV 1.0 0.9091)) +(: cnet_isa_d373fbcbec (IsA meadow_spikemoss spikemoss) (STV 1.0 0.9091)) +(: cnet_isa_ef4c96de73 (IsA meadow_spittlebug spittle_insect) (STV 1.0 0.9091)) +(: cnet_isa_0a1fcfa21b (IsA meadow_vole vole) (STV 1.0 0.9091)) +(: cnet_isa_60fabf5ecd (IsA meadowgrass grass) (STV 1.0 0.9091)) +(: cnet_isa_6d7c22bdde (IsA meadowlark new_world_oriole) (STV 1.0 0.9091)) +(: cnet_isa_08f5af765e (IsA meagerness insufficiency) (STV 1.0 0.9091)) +(: cnet_isa_ae6495bde1 (IsA meal foodstuff) (STV 1.0 0.9091)) +(: cnet_isa_d5a7ae7ebc (IsA meal nutriment) (STV 1.0 0.9091)) +(: cnet_isa_685bcaed2d (IsA meal occasion) (STV 1.0 0.9091)) +(: cnet_isa_c096c9e4e4 (IsA meal_ticket coupon) (STV 1.0 0.9091)) +(: cnet_isa_67b6203e3e (IsA meal_ticket support) (STV 1.0 0.9091)) +(: cnet_isa_c6c36c1df4 (IsA mealie ear) (STV 1.0 0.9091)) +(: cnet_isa_32f20f3d11 (IsA mealtime hour) (STV 1.0 0.9091)) +(: cnet_isa_39a041bfe3 (IsA mealworm larva) (STV 1.0 0.9091)) +(: cnet_isa_6771b795e2 (IsA mealybug coccid_insect) (STV 1.0 0.9091)) +(: cnet_isa_f82f9364e5 (IsA mean average) (STV 1.0 0.9091)) +(: cnet_isa_5a014d0d05 (IsA mean_deviation deviation) (STV 1.0 0.9091)) +(: cnet_isa_54d8ba8c7a (IsA mean_distance distance) (STV 1.0 0.9091)) +(: cnet_isa_4880987c03 (IsA mean_sun model) (STV 1.0 0.9091)) +(: cnet_isa_9b2f9f8ac0 (IsA mean_time time_unit) (STV 1.0 0.9091)) +(: cnet_isa_85ebe8f8dc (IsA meander curve) (STV 1.0 0.9091)) +(: cnet_isa_9972d81b13 (IsA meanie oppressor) (STV 1.0 0.9091)) +(: cnet_isa_2af38d238f (IsA meaning idea) (STV 1.0 0.9091)) +(: cnet_isa_3846bd81b8 (IsA meaning message) (STV 1.0 0.9091)) +(: cnet_isa_87369f8da5 (IsA meaningfulness significance) (STV 1.0 0.9091)) +(: cnet_isa_06e22f452d (IsA meaninglessness insignificance) (STV 1.0 0.9091)) +(: cnet_isa_36d6e16125 (IsA meanness stinginess) (STV 1.0 0.9091)) +(: cnet_isa_554e52f35e (IsA mean implementation) (STV 1.0 0.9091)) +(: cnet_isa_cdd1986a65 (IsA mean instrumentality) (STV 1.0 0.9091)) +(: cnet_isa_3669b8fdfc (IsA mean capital) (STV 1.0 0.9091)) +(: cnet_isa_29b9651998 (IsA mean_test inquiry) (STV 1.0 0.9091)) +(: cnet_isa_e85dcb88d3 (IsA measle contagious_disease) (STV 1.0 0.9091)) +(: cnet_isa_d4f683d2f0 (IsA measure abstraction) (STV 1.0 0.9091)) +(: cnet_isa_7ffd2b8bd3 (IsA measure maneuver) (STV 1.0 0.9091)) +(: cnet_isa_5c96d8863f (IsA measure container) (STV 1.0 0.9091)) +(: cnet_isa_5d2a7e1c8e (IsA measure musical_notation) (STV 1.0 0.9091)) +(: cnet_isa_67b9ae3372 (IsA measurement activity) (STV 1.0 0.9091)) +(: cnet_isa_ac9e523dea (IsA measurer person) (STV 1.0 0.9091)) +(: cnet_isa_90c27dcfdc (IsA measuring_cup measure) (STV 1.0 0.9091)) +(: cnet_isa_bdab6e75e7 (IsA measuring_instrument instrument) (STV 1.0 0.9091)) +(: cnet_isa_ef0f7a3f17 (IsA measuring_stick measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_5a6c0152ee (IsA measuring_unit unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_95b4a66afd (IsA measuring_worm caterpillar) (STV 1.0 0.9091)) +(: cnet_isa_d595682b15 (IsA meat animal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_7129c94103 (IsA meat flesh) (STV 1.0 0.9091)) +(: cnet_isa_11f2ec0064 (IsA meat not_bone) (STV 1.0 0.9091)) +(: cnet_isa_e9880fce5a (IsA meat food) (STV 1.0 0.9091)) +(: cnet_isa_4e5f070c74 (IsA meat_and_potatoe basis) (STV 1.0 0.9091)) +(: cnet_isa_c111e44a08 (IsA meat_counter counter) (STV 1.0 0.9091)) +(: cnet_isa_4634df4eff (IsA meat_grinder aggression) (STV 1.0 0.9091)) +(: cnet_isa_4245bb65c8 (IsA meat_grinder mill) (STV 1.0 0.9091)) +(: cnet_isa_f61454c56c (IsA meat_hook hook) (STV 1.0 0.9091)) +(: cnet_isa_40a0c8bdb0 (IsA meat_house house) (STV 1.0 0.9091)) +(: cnet_isa_925e2042de (IsA meat_loaf dish) (STV 1.0 0.9091)) +(: cnet_isa_e7ba253545 (IsA meat_loaf loaf_of_bread) (STV 1.0 0.9091)) +(: cnet_isa_bc00f0801b (IsA meat_packer jobber) (STV 1.0 0.9091)) +(: cnet_isa_8dde19f938 (IsA meat_pie pie) (STV 1.0 0.9091)) +(: cnet_isa_e7c669cd19 (IsA meat_safe safe) (STV 1.0 0.9091)) +(: cnet_isa_3be6332a51 (IsA meat_thermometer thermometer) (STV 1.0 0.9091)) +(: cnet_isa_42c93ec805 (IsA meatball dish) (STV 1.0 0.9091)) +(: cnet_isa_206e52cd83 (IsA meatpacking packaging) (STV 1.0 0.9091)) +(: cnet_isa_578c3193b4 (IsA meatus passage) (STV 1.0 0.9091)) +(: cnet_isa_9f542c845d (IsA mebendazole vermifuge) (STV 1.0 0.9091)) +(: cnet_isa_bf5747d790 (IsA mebibit computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_0ad34cc27a (IsA mecca topographic_point) (STV 1.0 0.9091)) +(: cnet_isa_a1d6d4acdc (IsA mechanic_s_lien lien) (STV 1.0 0.9091)) +(: cnet_isa_38e35643ad (IsA mechanical_advantage ratio) (STV 1.0 0.9091)) +(: cnet_isa_7abffb094a (IsA mechanical_device mechanism) (STV 1.0 0.9091)) +(: cnet_isa_13bac5bd56 (IsA mechanical_drawing drawing) (STV 1.0 0.9091)) +(: cnet_isa_424435a112 (IsA mechanical_energy energy) (STV 1.0 0.9091)) +(: cnet_isa_722780754c (IsA mechanical_engineer engineer) (STV 1.0 0.9091)) +(: cnet_isa_8eea7e38f9 (IsA mechanical_engineering engineering) (STV 1.0 0.9091)) +(: cnet_isa_561f07e325 (IsA mechanical_mixture mixture) (STV 1.0 0.9091)) +(: cnet_isa_bc7b3af8d4 (IsA mechanical_phenomenon physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_490a47d85e (IsA mechanical_piano piano) (STV 1.0 0.9091)) +(: cnet_isa_c8c53ce16b (IsA mechanical_system system) (STV 1.0 0.9091)) +(: cnet_isa_d8c7a1da84 (IsA mechanic physic) (STV 1.0 0.9091)) +(: cnet_isa_26166f3e70 (IsA mechanism performance) (STV 1.0 0.9091)) +(: cnet_isa_f7d55b36be (IsA mechanism device) (STV 1.0 0.9091)) +(: cnet_isa_5b5c4facc8 (IsA mechanism natural_object) (STV 1.0 0.9091)) +(: cnet_isa_988bbc0890 (IsA mechanism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_cdb123d04b (IsA mechanism chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_b56aa8c08d (IsA mechanist philosopher) (STV 1.0 0.9091)) +(: cnet_isa_4f8e62ae61 (IsA mechanization condition) (STV 1.0 0.9091)) +(: cnet_isa_0c8e5c5a78 (IsA mechanized_cavalry cavalry) (STV 1.0 0.9091)) +(: cnet_isa_d5319ac731 (IsA meckel_s_diverticulum diverticulum) (STV 1.0 0.9091)) +(: cnet_isa_f2813d7839 (IsA meconium fecal_matter) (STV 1.0 0.9091)) +(: cnet_isa_1f88f5be53 (IsA meconopsis dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1a84ebd6e9 (IsA mecoptera animal_order) (STV 1.0 0.9091)) +(: cnet_isa_746aa1835b (IsA mecopteran insect) (STV 1.0 0.9091)) +(: cnet_isa_2986a10eff (IsA medaille_militaire decoration) (STV 1.0 0.9091)) +(: cnet_isa_e58ec30f7c (IsA medal_of_honor decoration) (STV 1.0 0.9091)) +(: cnet_isa_b126984c3e (IsA medal_play golf) (STV 1.0 0.9091)) +(: cnet_isa_c90b04bf0b (IsA medalist golfer) (STV 1.0 0.9091)) +(: cnet_isa_514dafdf60 (IsA medalist winner) (STV 1.0 0.9091)) +(: cnet_isa_0ba0a13500 (IsA medallion emblem) (STV 1.0 0.9091)) +(: cnet_isa_639b9eb6e0 (IsA medallion helping) (STV 1.0 0.9091)) +(: cnet_isa_0d767bcd7b (IsA medallion coin) (STV 1.0 0.9091)) +(: cnet_isa_87f0bebe19 (IsA meddler unwelcome_person) (STV 1.0 0.9091)) +(: cnet_isa_c0c8b360bd (IsA meddling change_of_state) (STV 1.0 0.9091)) +(: cnet_isa_dd9c300f6c (IsA media_consultant adviser) (STV 1.0 0.9091)) +(: cnet_isa_e5bf3ce236 (IsA mediacy indirectness) (STV 1.0 0.9091)) +(: cnet_isa_a5f5a68965 (IsA medial_condyle condyle) (STV 1.0 0.9091)) +(: cnet_isa_10c74a19fc (IsA medial_geniculate_body geniculate_body) (STV 1.0 0.9091)) +(: cnet_isa_875cbfe5dd (IsA medial_rectus_muscle ocular_muscle) (STV 1.0 0.9091)) +(: cnet_isa_edd4620830 (IsA median average) (STV 1.0 0.9091)) +(: cnet_isa_4bb3301ef6 (IsA mediant note) (STV 1.0 0.9091)) +(: cnet_isa_0494518a8b (IsA mediastinum cavity) (STV 1.0 0.9091)) +(: cnet_isa_d688b238e2 (IsA mediation intervention) (STV 1.0 0.9091)) +(: cnet_isa_3ebaa0f9da (IsA mediation negotiation) (STV 1.0 0.9091)) +(: cnet_isa_e5d485ffe1 (IsA mediator negotiator) (STV 1.0 0.9091)) +(: cnet_isa_f6b2236147 (IsA mediatrix mediator) (STV 1.0 0.9091)) +(: cnet_isa_ba3b0f39c7 (IsA medic herb) (STV 1.0 0.9091)) +(: cnet_isa_ed69b5c7d1 (IsA medicago papilionoideae) (STV 1.0 0.9091)) +(: cnet_isa_bedb01112b (IsA medicago rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0d7b8050e4 (IsA medicaid health_care) (STV 1.0 0.9091)) +(: cnet_isa_2c9c3bca76 (IsA medicaid_fund fund) (STV 1.0 0.9091)) +(: cnet_isa_1e0765dc0c (IsA medical_assistant health_professional) (STV 1.0 0.9091)) +(: cnet_isa_bbbfa0efd1 (IsA medical_bill bill) (STV 1.0 0.9091)) +(: cnet_isa_15f81d499f (IsA medical_building building) (STV 1.0 0.9091)) +(: cnet_isa_6353d52252 (IsA medical_care treatment) (STV 1.0 0.9091)) +(: cnet_isa_5e69bf5dbc (IsA medical_center center) (STV 1.0 0.9091)) +(: cnet_isa_fc017981ae (IsA medical_diagnosis diagnosis) (STV 1.0 0.9091)) +(: cnet_isa_d4f2679ce5 (IsA medical_doctor doctor) (STV 1.0 0.9091)) +(: cnet_isa_f075babd7d (IsA medical_evacuation evacuation) (STV 1.0 0.9091)) +(: cnet_isa_8ca2709d3c (IsA medical_expense expense) (STV 1.0 0.9091)) +(: cnet_isa_4ac65fd553 (IsA medical_history case_history) (STV 1.0 0.9091)) +(: cnet_isa_59f4af7a82 (IsA medical_institution institution) (STV 1.0 0.9091)) +(: cnet_isa_192e1c734b (IsA medical_instrument instrument) (STV 1.0 0.9091)) +(: cnet_isa_a98b2ad4d9 (IsA medical_officer medical_practitioner) (STV 1.0 0.9091)) +(: cnet_isa_9ff1015762 (IsA medical_practice practice) (STV 1.0 0.9091)) +(: cnet_isa_43d7e76a8f (IsA medical_practitioner health_professional) (STV 1.0 0.9091)) +(: cnet_isa_f94b7c2c73 (IsA medical_procedure procedure) (STV 1.0 0.9091)) +(: cnet_isa_15c47e5711 (IsA medical_profession health_profession) (STV 1.0 0.9091)) +(: cnet_isa_aa74d77a39 (IsA medical_relation professional_relation) (STV 1.0 0.9091)) +(: cnet_isa_c2dc4ef1f2 (IsA medical_report report) (STV 1.0 0.9091)) +(: cnet_isa_1cd5cbdd2d (IsA medical_school graduate_school) (STV 1.0 0.9091)) +(: cnet_isa_377625a72d (IsA medical_science life_science) (STV 1.0 0.9091)) +(: cnet_isa_d1ed7ab008 (IsA medical_scientist scientist) (STV 1.0 0.9091)) +(: cnet_isa_64628dd005 (IsA medical_student student) (STV 1.0 0.9091)) +(: cnet_isa_a34c112ec5 (IsA medicare health_care) (STV 1.0 0.9091)) +(: cnet_isa_ffa6b143ad (IsA medicare_check check) (STV 1.0 0.9091)) +(: cnet_isa_8261d48377 (IsA medication therapy) (STV 1.0 0.9091)) +(: cnet_isa_f2b3ca2a59 (IsA medici house) (STV 1.0 0.9091)) +(: cnet_isa_d2cddef93c (IsA medicinal_leech leech) (STV 1.0 0.9091)) +(: cnet_isa_aac86a1b2b (IsA medicine medical_science) (STV 1.0 0.9091)) +(: cnet_isa_92ac44f7ee (IsA medicine drug) (STV 1.0 0.9091)) +(: cnet_isa_8fa31a9c5b (IsA medicine learned_profession) (STV 1.0 0.9091)) +(: cnet_isa_8272cfd439 (IsA medicine_ball ball) (STV 1.0 0.9091)) +(: cnet_isa_a10d7c2f88 (IsA medicine_chest cabinet) (STV 1.0 0.9091)) +(: cnet_isa_8c5201fb8f (IsA medicine_man shaman) (STV 1.0 0.9091)) +(: cnet_isa_f4f2963c48 (IsA medieval_greek greek) (STV 1.0 0.9091)) +(: cnet_isa_a1191413ba (IsA medieval_latin low_latin) (STV 1.0 0.9091)) +(: cnet_isa_3b8cd1fec4 (IsA medieval_schoolman scholar) (STV 1.0 0.9091)) +(: cnet_isa_2e5febbd68 (IsA medina quarter) (STV 1.0 0.9091)) +(: cnet_isa_64ff7bdb40 (IsA medinilla rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c23bbd5ae5 (IsA medinilla_magnifica shrub) (STV 1.0 0.9091)) +(: cnet_isa_22c7a3af59 (IsA meditation emotional_healer) (STV 1.0 0.9091)) +(: cnet_isa_adb492d5f4 (IsA meditation method_for_relaxation) (STV 1.0 0.9339)) +(: cnet_isa_cb59c334b9 (IsA meditation skill) (STV 1.0 0.9339)) +(: cnet_isa_92c46cc4bc (IsA meditation state_of_reflection_and_contemplation) (STV 1.0 0.9091)) +(: cnet_isa_212c244e6f (IsA meditation tough_skill_to_learn) (STV 1.0 0.9091)) +(: cnet_isa_955f03f457 (IsA meditation way_to_relax) (STV 1.0 0.9339)) +(: cnet_isa_6f51e03e0e (IsA meditation contemplation) (STV 1.0 0.9091)) +(: cnet_isa_8518dfe1a3 (IsA mediterranean_anchovy anchovy) (STV 1.0 0.9091)) +(: cnet_isa_ee14f0643f (IsA mediterranean_flour_moth pyralid) (STV 1.0 0.9091)) +(: cnet_isa_57e1cb7684 (IsA mediterranean_fruit_fly fruit_fly) (STV 1.0 0.9091)) +(: cnet_isa_5c2379b772 (IsA mediterranean_snapdragon snapdragon) (STV 1.0 0.9091)) +(: cnet_isa_1cbaf8e0ef (IsA mediterranean_water_shrew water_shrew) (STV 1.0 0.9091)) +(: cnet_isa_15ce599d59 (IsA medium substance) (STV 1.0 0.9091)) +(: cnet_isa_32bb660e5c (IsA medium communication) (STV 1.0 0.9091)) +(: cnet_isa_dfeda48ec3 (IsA medium instrumentality) (STV 1.0 0.9091)) +(: cnet_isa_936d7c9a24 (IsA medium transmission) (STV 1.0 0.9091)) +(: cnet_isa_c8da8955f5 (IsA medium environment) (STV 1.0 0.9091)) +(: cnet_isa_0ad2f88410 (IsA medium psychic) (STV 1.0 0.9091)) +(: cnet_isa_395c4a2cc6 (IsA medium state) (STV 1.0 0.9091)) +(: cnet_isa_7b979cef0a (IsA medium liquid) (STV 1.0 0.9091)) +(: cnet_isa_ff8b6f9c69 (IsA medium_frequency radio_frequency) (STV 1.0 0.9091)) +(: cnet_isa_a10faa99a9 (IsA medium_of_exchange standard) (STV 1.0 0.9091)) +(: cnet_isa_3b61aacc0d (IsA medium_steel steel) (STV 1.0 0.9091)) +(: cnet_isa_2794462299 (IsA medium_wave radio_wave) (STV 1.0 0.9091)) +(: cnet_isa_82d3e16691 (IsA medlar edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_b5fb1362e4 (IsA medlar fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_07b0228192 (IsA medley musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_f5dea8a567 (IsA medline telephone_system) (STV 1.0 0.9091)) +(: cnet_isa_809ea3ba96 (IsA medoc bordeaux) (STV 1.0 0.9091)) +(: cnet_isa_9955189e73 (IsA medoc red_wine) (STV 1.0 0.9091)) +(: cnet_isa_e2703121d9 (IsA medulla animal_tissue) (STV 1.0 0.9091)) +(: cnet_isa_2610985afc (IsA medulla plant_tissue) (STV 1.0 0.9091)) +(: cnet_isa_a8115ff08a (IsA medulla_oblongata neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_24512e23f5 (IsA medullary_sheath sheath) (STV 1.0 0.9091)) +(: cnet_isa_d34f6e40e3 (IsA medullated_nerve_fiber nerve_fiber) (STV 1.0 0.9091)) +(: cnet_isa_f94687aefd (IsA medusa_s_head spurge) (STV 1.0 0.9091)) +(: cnet_isa_d6fc903bf6 (IsA medusa_s_head wild_rye) (STV 1.0 0.9091)) +(: cnet_isa_1e3f1b31a6 (IsA medusa coelenterate) (STV 1.0 0.9091)) +(: cnet_isa_a287b3c349 (IsA medusa gorgon) (STV 1.0 0.9091)) +(: cnet_isa_c36d280dd6 (IsA meed reward) (STV 1.0 0.9091)) +(: cnet_isa_2eec7294ca (IsA meekness humility) (STV 1.0 0.9091)) +(: cnet_isa_dd55584636 (IsA meerkat viverrine) (STV 1.0 0.9091)) +(: cnet_isa_226877d651 (IsA meerschaum pipe) (STV 1.0 0.9091)) +(: cnet_isa_05cbf8afac (IsA meerschaum mineral) (STV 1.0 0.9091)) +(: cnet_isa_4da8013198 (IsA meet athletic_contest) (STV 1.0 0.9091)) +(: cnet_isa_f6f7c111ef (IsA meeting assembly) (STV 1.0 0.9091)) +(: cnet_isa_71e6f049e6 (IsA meeting convergence) (STV 1.0 0.9091)) +(: cnet_isa_c9bc4c5a99 (IsA meeting gathering) (STV 1.0 0.9091)) +(: cnet_isa_5b2dfd643a (IsA meeting social_gathering) (STV 1.0 0.9091)) +(: cnet_isa_05f7d4e50a (IsA meeting_friend positive_experience) (STV 1.0 0.9091)) +(: cnet_isa_6a93e640a8 (IsA meeting_house columbine) (STV 1.0 0.9091)) +(: cnet_isa_986a93b236 (IsA megabit computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_a513028428 (IsA megabyte computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_d310260443 (IsA megachile arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_6c2e9b10f3 (IsA megachilidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_b804a83c7a (IsA megachiroptera animal_order) (STV 1.0 0.9091)) +(: cnet_isa_96700a0075 (IsA megacolon colon) (STV 1.0 0.9091)) +(: cnet_isa_7e717d3716 (IsA megadeath death) (STV 1.0 0.9091)) +(: cnet_isa_b0cb1109a8 (IsA megaderma mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_4b7397fd98 (IsA megadermatidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_9a5130f941 (IsA megaera eumenide) (STV 1.0 0.9091)) +(: cnet_isa_6109e15421 (IsA megaflop unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_045f80a7db (IsA megagametophyte gametophyte) (STV 1.0 0.9091)) +(: cnet_isa_67efb793e5 (IsA megahertz rate) (STV 1.0 0.9091)) +(: cnet_isa_e2ae512656 (IsA megakaryocyte bone_cell) (STV 1.0 0.9091)) +(: cnet_isa_dc8c2993fb (IsA megalith memorial) (STV 1.0 0.9091)) +(: cnet_isa_a879de2da4 (IsA megalobatrachus amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_36e690f789 (IsA megaloblast red_blood_cell) (STV 1.0 0.9091)) +(: cnet_isa_e9cb5aee9e (IsA megaloblastic_anemia pernicious_anemia) (STV 1.0 0.9091)) +(: cnet_isa_9e7b6216e8 (IsA megalocyte red_blood_cell) (STV 1.0 0.9091)) +(: cnet_isa_b1fec5ba57 (IsA megalomania mental_illness) (STV 1.0 0.9091)) +(: cnet_isa_ac763f1eb0 (IsA megalomaniac egotist) (STV 1.0 0.9091)) +(: cnet_isa_3d6a53ec1f (IsA megalonychidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_0304e5fc6f (IsA megalopolis urban_area) (STV 1.0 0.9091)) +(: cnet_isa_c0aa8898c6 (IsA megaloptera animal_order) (STV 1.0 0.9091)) +(: cnet_isa_4f9a5d7e32 (IsA megalosaur theropod) (STV 1.0 0.9091)) +(: cnet_isa_6d62200ba0 (IsA megalosauridae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_2af942fc4c (IsA megaphone acoustic_device) (STV 1.0 0.9091)) +(: cnet_isa_ca32315084 (IsA megapode gallinaceous_bird) (STV 1.0 0.9091)) +(: cnet_isa_2efcb57354 (IsA megapodiidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_a7bd94f14e (IsA megapodius bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_77e01cc672 (IsA megaptera mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_e950ac8aec (IsA megasporangium sporangium) (STV 1.0 0.9091)) +(: cnet_isa_d93a3a0efc (IsA megaspore spore) (STV 1.0 0.9091)) +(: cnet_isa_28300a67aa (IsA megasporophyll sporophyll) (STV 1.0 0.9091)) +(: cnet_isa_f80d65666a (IsA megatherian edentate) (STV 1.0 0.9091)) +(: cnet_isa_bd8744d9e9 (IsA megatheriidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_012cd9df31 (IsA megatherium mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_0254cb6f18 (IsA megaton avoirdupois_unit) (STV 1.0 0.9091)) +(: cnet_isa_4920b571b1 (IsA megaton explosive_unit) (STV 1.0 0.9091)) +(: cnet_isa_42650d7b97 (IsA megaton_bomb bomb) (STV 1.0 0.9091)) +(: cnet_isa_42c3727d61 (IsA megaton_bomb nuclear_weapon) (STV 1.0 0.9091)) +(: cnet_isa_4b86176b90 (IsA megavitamin_therapy therapy) (STV 1.0 0.9091)) +(: cnet_isa_3dd8e4aa06 (IsA megawatt power_unit) (STV 1.0 0.9091)) +(: cnet_isa_0ef7011ace (IsA megesterol progestin) (STV 1.0 0.9091)) +(: cnet_isa_e2e8cee44f (IsA megillah scroll) (STV 1.0 0.9091)) +(: cnet_isa_2cee064e44 (IsA megillah report) (STV 1.0 0.9091)) +(: cnet_isa_a6b9a45cc1 (IsA megilp medium) (STV 1.0 0.9091)) +(: cnet_isa_cd3d11838a (IsA megohm resistance_unit) (STV 1.0 0.9091)) +(: cnet_isa_60814c2b5d (IsA meibomian_gland sebaceous_gland) (STV 1.0 0.9091)) +(: cnet_isa_d587e09b63 (IsA meiosis cell_division) (STV 1.0 0.9091)) +(: cnet_isa_868d52cfe5 (IsA meitnerium chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_2cabfb2537 (IsA melagra pain) (STV 1.0 0.9091)) +(: cnet_isa_72809c45dc (IsA melamine base) (STV 1.0 0.9091)) +(: cnet_isa_7bd3cdd215 (IsA melamine_resin synthetic_resin) (STV 1.0 0.9091)) +(: cnet_isa_6f104e538a (IsA melampodium asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f8b865a435 (IsA melampsora fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_a278fcb39f (IsA melampsoraceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_d5d8174b1b (IsA melancholia depression) (STV 1.0 0.9091)) +(: cnet_isa_c91959a4d2 (IsA melancholic depressive) (STV 1.0 0.9091)) +(: cnet_isa_d3487f4ca2 (IsA melancholy emotion) (STV 1.0 0.9091)) +(: cnet_isa_26fbb1cbd0 (IsA melancholy sadness) (STV 1.0 0.9091)) +(: cnet_isa_ea6100c672 (IsA melancholy depression) (STV 1.0 0.9091)) +(: cnet_isa_9500f414d1 (IsA melancholy_thistle thistle) (STV 1.0 0.9091)) +(: cnet_isa_148430d932 (IsA melanerpe bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_a104e05fe0 (IsA melanin animal_pigment) (STV 1.0 0.9091)) +(: cnet_isa_c42ca950d1 (IsA melanitta bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_461e3bc45b (IsA melanoblast epidermal_cell) (STV 1.0 0.9091)) +(: cnet_isa_25fe20fde2 (IsA melanocyte epidermal_cell) (STV 1.0 0.9091)) +(: cnet_isa_8162692a7c (IsA melanocyte_stimulating_hormone hormone) (STV 1.0 0.9091)) +(: cnet_isa_64e0262b8e (IsA melanoderma pigmentation) (STV 1.0 0.9091)) +(: cnet_isa_2e58195e05 (IsA melanogrammus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_bd4c11e922 (IsA melanoma skin_cancer) (STV 1.0 0.9091)) +(: cnet_isa_9c93fc9e92 (IsA melanoplus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_233636ec93 (IsA melanosis skin_disease) (STV 1.0 0.9091)) +(: cnet_isa_4bac60dc4c (IsA melanotis bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_4b08acdace (IsA melanthiaceae liliid_monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_d16364eb29 (IsA melastoma rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c6f7e2b5a6 (IsA melastomataceae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_94b14d579e (IsA melatonin hormone) (STV 1.0 0.9091)) +(: cnet_isa_7d87fe0e4d (IsA melba_toast toast) (STV 1.0 0.9091)) +(: cnet_isa_b64b507a26 (IsA melchite christian) (STV 1.0 0.9091)) +(: cnet_isa_87bf341ca3 (IsA meleagrididae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_a7ae5b2208 (IsA meleagris bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_eb04140e94 (IsA melee disturbance) (STV 1.0 0.9091)) +(: cnet_isa_9271d5df97 (IsA melena fecal_matter) (STV 1.0 0.9091)) +(: cnet_isa_1f50f53f88 (IsA mele mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_8cce38aa9e (IsA melia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_51ab16a3ee (IsA meliaceae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_a967edee72 (IsA melicoccus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2f00523d26 (IsA melicytus dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_40f71f841a (IsA melilotus woody_plant) (STV 1.0 0.9091)) +(: cnet_isa_40b4aac468 (IsA melinae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_866b839ea5 (IsA melioration drift) (STV 1.0 0.9091)) +(: cnet_isa_57c07e187f (IsA meliorism belief) (STV 1.0 0.9091)) +(: cnet_isa_482862cd71 (IsA meliphagidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_a6851ced25 (IsA melissa asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_57ae89de2b (IsA mellivora mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_ed9da1f550 (IsA mellowing ripening) (STV 1.0 0.9091)) +(: cnet_isa_5310a87f85 (IsA mellowness affability) (STV 1.0 0.9091)) +(: cnet_isa_38dcf617e0 (IsA mellowness shade) (STV 1.0 0.9091)) +(: cnet_isa_e613f9e275 (IsA mellowness taste) (STV 1.0 0.9091)) +(: cnet_isa_3303b029de (IsA mellowness compassion) (STV 1.0 0.9091)) +(: cnet_isa_c4f36acf66 (IsA melocactus caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9ed4959f7b (IsA melodiousness musicality) (STV 1.0 0.9091)) +(: cnet_isa_4909c7c082 (IsA melodrama comedy) (STV 1.0 0.9091)) +(: cnet_isa_a69aec4000 (IsA melody musical_perception) (STV 1.0 0.9091)) +(: cnet_isa_00803a1a28 (IsA melogale mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_4d864eec69 (IsA meloidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_9669218f03 (IsA melolontha arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_5d436581c0 (IsA melolonthid_beetle scarabaeid_beetle) (STV 1.0 0.9091)) +(: cnet_isa_dc37678d25 (IsA melolonthidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_bfc30e7eb2 (IsA melon edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_60a731f936 (IsA melon gourd) (STV 1.0 0.9091)) +(: cnet_isa_a9b2f69871 (IsA melon_ball melon) (STV 1.0 0.9091)) +(: cnet_isa_f41341528a (IsA melophagus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_fc807e1460 (IsA melopsittacus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_9d45c117d8 (IsA melosa tarweed) (STV 1.0 0.9091)) +(: cnet_isa_382be1c85f (IsA melospiza bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_6b77eecb4d (IsA meltdown calamity) (STV 1.0 0.9091)) +(: cnet_isa_d342eaf1ca (IsA meltdown overheating) (STV 1.0 0.9091)) +(: cnet_isa_3d80311391 (IsA melter worker) (STV 1.0 0.9091)) +(: cnet_isa_01740262c5 (IsA melting_pot environment) (STV 1.0 0.9091)) +(: cnet_isa_6614a32a56 (IsA meltwater water) (STV 1.0 0.9091)) +(: cnet_isa_78142a440c (IsA melursus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_b87c81d57e (IsA mem letter) (STV 1.0 0.9091)) +(: cnet_isa_8d7ab84626 (IsA member unit) (STV 1.0 0.9091)) +(: cnet_isa_65bdba5c87 (IsA member part) (STV 1.0 0.9091)) +(: cnet_isa_f61459abf0 (IsA member associate) (STV 1.0 0.9091)) +(: cnet_isa_0afe5eef21 (IsA member_bank depository_financial_institution) (STV 1.0 0.9091)) +(: cnet_isa_e4b6a13607 (IsA member_of_parliament legislator) (STV 1.0 0.9091)) +(: cnet_isa_c90399dde9 (IsA membership body) (STV 1.0 0.9091)) +(: cnet_isa_0ec3321e9b (IsA membership relationship) (STV 1.0 0.9091)) +(: cnet_isa_00db814e71 (IsA membership_card card) (STV 1.0 0.9091)) +(: cnet_isa_2633507cd2 (IsA membracidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_0c94a5867b (IsA membrane sheet) (STV 1.0 0.9091)) +(: cnet_isa_161e5ea903 (IsA membrane animal_tissue) (STV 1.0 0.9091)) +(: cnet_isa_1eef27e945 (IsA membrane_bone bone) (STV 1.0 0.9091)) +(: cnet_isa_45275e4bd4 (IsA membranous_labyrinth structure) (STV 1.0 0.9091)) +(: cnet_isa_30e2709bb2 (IsA meme acculturation) (STV 1.0 0.9091)) +(: cnet_isa_2bb6f01d7a (IsA memento reminder) (STV 1.0 0.9091)) +(: cnet_isa_641bcb4ca7 (IsA memento_mori reminder) (STV 1.0 0.9091)) +(: cnet_isa_feb3c4d139 (IsA memo note) (STV 1.0 0.9091)) +(: cnet_isa_f94aad23c5 (IsA memoir autobiography) (STV 1.0 0.9091)) +(: cnet_isa_06523bd494 (IsA memoir essay) (STV 1.0 0.9091)) +(: cnet_isa_0645bdce88 (IsA memorabilia record) (STV 1.0 0.9091)) +(: cnet_isa_272474a5fd (IsA memorability quality) (STV 1.0 0.9091)) +(: cnet_isa_ffda55cd4b (IsA memorial structure) (STV 1.0 0.9091)) +(: cnet_isa_6b6bafae5b (IsA memorial message) (STV 1.0 0.9091)) +(: cnet_isa_ae07d117b5 (IsA memorial recognition) (STV 1.0 0.9091)) +(: cnet_isa_a3ea1058ae (IsA memorial_day legal_holiday) (STV 1.0 0.9091)) +(: cnet_isa_d75f0e09da (IsA memorization learning) (STV 1.0 0.9091)) +(: cnet_isa_8aa0733812 (IsA memorizer learner) (STV 1.0 0.9091)) +(: cnet_isa_ad8e28919c (IsA memory hardware) (STV 1.0 0.9091)) +(: cnet_isa_2d1fe1c5fc (IsA memory memory_device) (STV 1.0 0.9091)) +(: cnet_isa_4709361b22 (IsA memory basic_cognitive_process) (STV 1.0 0.9091)) +(: cnet_isa_739e12e47e (IsA memory cognitive_psychology) (STV 1.0 0.9091)) +(: cnet_isa_c3b530be4f (IsA memory faculty) (STV 1.0 0.9091)) +(: cnet_isa_4462b08ae7 (IsA memory representation) (STV 1.0 0.9091)) +(: cnet_isa_62be0db775 (IsA memory_chip chip) (STV 1.0 0.9091)) +(: cnet_isa_c0d113b4de (IsA memory_device device) (STV 1.0 0.9091)) +(: cnet_isa_f462149c4b (IsA memory_image image) (STV 1.0 0.9091)) +(: cnet_isa_c292ad8f7a (IsA memory_picture memory_image) (STV 1.0 0.9091)) +(: cnet_isa_fef260d296 (IsA memsahib sahib) (STV 1.0 0.9091)) +(: cnet_isa_bf4e46af7f (IsA men_s_room public_toilet) (STV 1.0 0.9091)) +(: cnet_isa_6aa2f28691 (IsA menace threat) (STV 1.0 0.9091)) +(: cnet_isa_76ac61cd1d (IsA menace danger) (STV 1.0 0.9091)) +(: cnet_isa_3c44ea8e16 (IsA menage_trois family) (STV 1.0 0.9091)) +(: cnet_isa_81747dba32 (IsA menagerie facility) (STV 1.0 0.9091)) +(: cnet_isa_14ccdc3e6a (IsA menagerie collection) (STV 1.0 0.9091)) +(: cnet_isa_ca050451a7 (IsA menarche start) (STV 1.0 0.9091)) +(: cnet_isa_9441c3c838 (IsA mend sewing) (STV 1.0 0.9091)) +(: cnet_isa_951e23d5de (IsA mendacity untruthfulness) (STV 1.0 0.9091)) +(: cnet_isa_ab1e37bec5 (IsA mendel_s_law law) (STV 1.0 0.9091)) +(: cnet_isa_3817a6be0e (IsA mendelevium chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_fa926a6133 (IsA mendelian follower) (STV 1.0 0.9091)) +(: cnet_isa_547d7c2da3 (IsA mendelism theory_of_inheritance) (STV 1.0 0.9091)) +(: cnet_isa_0f300ab84a (IsA mender skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_e1ddc39f53 (IsA mendicancy indigence) (STV 1.0 0.9091)) +(: cnet_isa_3963c583b6 (IsA mending garment) (STV 1.0 0.9091)) +(: cnet_isa_4703d87d67 (IsA menhaden clupeid_fish) (STV 1.0 0.9091)) +(: cnet_isa_ff3c81fc45 (IsA menhaden_oil animal_oil) (STV 1.0 0.9091)) +(: cnet_isa_b94a2a054b (IsA menhir megalith) (STV 1.0 0.9091)) +(: cnet_isa_f1ac72fccb (IsA menial servant) (STV 1.0 0.9091)) +(: cnet_isa_db5d384e48 (IsA meniere_s_disease disease) (STV 1.0 0.9091)) +(: cnet_isa_d391ab9a13 (IsA meningeal_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_27bc3063a9 (IsA meningeal_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_b22eaa170f (IsA meningioma tumor) (STV 1.0 0.9091)) +(: cnet_isa_1ffa970db4 (IsA meningism symptom) (STV 1.0 0.9091)) +(: cnet_isa_d3d0784e70 (IsA meningitis infectious_disease) (STV 1.0 0.9091)) +(: cnet_isa_7c7a2158e1 (IsA meningocele birth_defect) (STV 1.0 0.9091)) +(: cnet_isa_1338540832 (IsA meningoencephalitis encephalitis) (STV 1.0 0.9091)) +(: cnet_isa_f790ac7705 (IsA meningoencephalitis meningitis) (STV 1.0 0.9091)) +(: cnet_isa_ccbedc37f9 (IsA meninx membrane) (STV 1.0 0.9091)) +(: cnet_isa_cb4a6c8a47 (IsA menippe arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_0fc2d0c5e9 (IsA meniscectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_534720c4fc (IsA meniscium fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_55085fe1bd (IsA meniscus cartilage) (STV 1.0 0.9091)) +(: cnet_isa_94f5797e7f (IsA meniscus len) (STV 1.0 0.9091)) +(: cnet_isa_a9895e3f91 (IsA meniscus surface) (STV 1.0 0.9091)) +(: cnet_isa_d61c828d94 (IsA menispermaceae magnoliid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_f646f75183 (IsA menispermum magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_003e6be3a9 (IsA mennonite anabaptist) (STV 1.0 0.9091)) +(: cnet_isa_82a2d1306c (IsA mennonite_church protestant_denomination) (STV 1.0 0.9091)) +(: cnet_isa_f7da05cb80 (IsA mennonitism protestantism) (STV 1.0 0.9091)) +(: cnet_isa_dbc750983a (IsA meno_mosso tempo) (STV 1.0 0.9091)) +(: cnet_isa_1c96fa79f6 (IsA menominee algonquin) (STV 1.0 0.9091)) +(: cnet_isa_49b46406c5 (IsA menomini algonquian) (STV 1.0 0.9091)) +(: cnet_isa_0ff2a2064e (IsA menopause biological_time) (STV 1.0 0.9091)) +(: cnet_isa_73690985a6 (IsA menopon arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_112467bb4a (IsA menorah candelabrum) (STV 1.0 0.9454)) +(: cnet_isa_62f12a6e18 (IsA menorrhagia menstruation) (STV 1.0 0.9091)) +(: cnet_isa_0684a0b0f3 (IsA menorrhagia symptom) (STV 1.0 0.9091)) +(: cnet_isa_429a6dc5b7 (IsA menorrhea blood) (STV 1.0 0.9091)) +(: cnet_isa_03d67e864b (IsA menotyphla animal_order) (STV 1.0 0.9091)) +(: cnet_isa_bae11236e1 (IsA men_rea planning) (STV 1.0 0.9091)) +(: cnet_isa_a9f29ee810 (IsA mensch good_person) (STV 1.0 0.9091)) +(: cnet_isa_f7d45a1e71 (IsA menshevik socialist) (STV 1.0 0.9091)) +(: cnet_isa_024c61ec1f (IsA menstrual_cycle cycle) (STV 1.0 0.9091)) +(: cnet_isa_8b0c56de86 (IsA menstrual_phase phase) (STV 1.0 0.9091)) +(: cnet_isa_c9e26b5998 (IsA menstruation discharge) (STV 1.0 0.9091)) +(: cnet_isa_bd70e668a5 (IsA menstruum solvent) (STV 1.0 0.9091)) +(: cnet_isa_1c4354ff3d (IsA mental_abnormality abnormality) (STV 1.0 0.9091)) +(: cnet_isa_b020de0710 (IsA mental_age age) (STV 1.0 0.9091)) +(: cnet_isa_5779f43584 (IsA mental_anguish pain) (STV 1.0 0.9091)) +(: cnet_isa_b2f14b17f9 (IsA mental_dexterity intelligence) (STV 1.0 0.9091)) +(: cnet_isa_2eda0742fc (IsA mental_disorder disorder) (STV 1.0 0.9091)) +(: cnet_isa_3cda165492 (IsA mental_exhaustion exhaustion) (STV 1.0 0.9091)) +(: cnet_isa_e74f309898 (IsA mental_health health) (STV 1.0 0.9339)) +(: cnet_isa_b982a00cfa (IsA mental_health psychological_state) (STV 1.0 0.9091)) +(: cnet_isa_ed9c113362 (IsA mental_hospital hospital) (STV 1.0 0.9091)) +(: cnet_isa_d65d05b75f (IsA mental_illness psychological_state) (STV 1.0 0.9091)) +(: cnet_isa_550084cb53 (IsA mental_measurement measurement) (STV 1.0 0.9091)) +(: cnet_isa_fcae8ee77e (IsA mental_note attention) (STV 1.0 0.9091)) +(: cnet_isa_6c7864f429 (IsA mental_picture image) (STV 1.0 0.9091)) +(: cnet_isa_f711549fd8 (IsA mental_quickness intelligence) (STV 1.0 0.9091)) +(: cnet_isa_35bb6bb7d2 (IsA mental_reservation doubt) (STV 1.0 0.9091)) +(: cnet_isa_bfbce7f155 (IsA mental_soundness mental_health) (STV 1.0 0.9091)) +(: cnet_isa_dea27786f1 (IsA mentalism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_7e74ccf869 (IsA mentality attitude) (STV 1.0 0.9091)) +(: cnet_isa_baf629c56a (IsA mentally_retarded people) (STV 1.0 0.9091)) +(: cnet_isa_0902aafe0a (IsA mentha asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0ccc31c6bb (IsA menthol lotion) (STV 1.0 0.9091)) +(: cnet_isa_fd4b517d2b (IsA menthol compound) (STV 1.0 0.9091)) +(: cnet_isa_5011a0f26e (IsA mentholated_salve ointment) (STV 1.0 0.9091)) +(: cnet_isa_c4fac1b3d2 (IsA menticirrhus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_8fde3c8329 (IsA mention award) (STV 1.0 0.9091)) +(: cnet_isa_9d644ce24b (IsA mention remark) (STV 1.0 0.9091)) +(: cnet_isa_d9aef364ee (IsA mentioner speaker) (STV 1.0 0.9091)) +(: cnet_isa_606ac5d259 (IsA mentor intellectual) (STV 1.0 0.9091)) +(: cnet_isa_e11ad54d4e (IsA mentum body_part) (STV 1.0 0.9091)) +(: cnet_isa_a5e187825d (IsA mentum plant_part) (STV 1.0 0.9091)) +(: cnet_isa_0bc204ef35 (IsA mentzelia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a0791fd7a2 (IsA menu agenda) (STV 1.0 0.9091)) +(: cnet_isa_944ac34242 (IsA menu bill) (STV 1.0 0.9091)) +(: cnet_isa_96492a8bc1 (IsA menu list) (STV 1.0 0.9091)) +(: cnet_isa_906b347854 (IsA menu fare) (STV 1.0 0.9091)) +(: cnet_isa_22e7d14afe (IsA menura bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_67ef50372b (IsA menurae animal_order) (STV 1.0 0.9091)) +(: cnet_isa_2e044ec13d (IsA menuridae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_ae51106ab0 (IsA menyanthaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_5777ba0119 (IsA menyanthe dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9230d721a8 (IsA menziesia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_55df0f53c0 (IsA meow cry) (STV 1.0 0.9091)) +(: cnet_isa_ba407ca9b0 (IsA mephitinae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_862fb221f8 (IsA mephitis mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_e1d959dc48 (IsA mephitis gas) (STV 1.0 0.9091)) +(: cnet_isa_1de4a2e48e (IsA meralgia pain) (STV 1.0 0.9091)) +(: cnet_isa_b5e98511a4 (IsA mercalli_scale scale) (STV 1.0 0.9091)) +(: cnet_isa_d0f686aa3a (IsA mercantile_agency agency) (STV 1.0 0.9091)) +(: cnet_isa_b1dd3d70f6 (IsA mercantile_establishment place_of_business) (STV 1.0 0.9091)) +(: cnet_isa_5a6a9d741e (IsA mercantile_law law) (STV 1.0 0.9091)) +(: cnet_isa_52abb020f2 (IsA mercantilism managed_economy) (STV 1.0 0.9091)) +(: cnet_isa_3d062dfe87 (IsA mercator_projection map_projection) (STV 1.0 0.9091)) +(: cnet_isa_c6fd27495e (IsA mercenaria mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_445ea64795 (IsA mercenary adventurer) (STV 1.0 0.9091)) +(: cnet_isa_f619d25955 (IsA mercer trader) (STV 1.0 0.9091)) +(: cnet_isa_b6958ef9ae (IsA merchandise commodity) (STV 1.0 0.9091)) +(: cnet_isa_2947447c2c (IsA merchant businessperson) (STV 1.0 0.9091)) +(: cnet_isa_5e6363285c (IsA merchant_bank depository_financial_institution) (STV 1.0 0.9091)) +(: cnet_isa_386a62ac23 (IsA merchant_marine crew) (STV 1.0 0.9091)) +(: cnet_isa_055f12994b (IsA merchantability state) (STV 1.0 0.9091)) +(: cnet_isa_c0542151bb (IsA mercifulness humaneness) (STV 1.0 0.9091)) +(: cnet_isa_28a205a91a (IsA mercifulness compassion) (STV 1.0 0.9091)) +(: cnet_isa_b6bb570a76 (IsA mercilessness inhumaneness) (STV 1.0 0.9091)) +(: cnet_isa_ffe30ee976 (IsA mercurial_ointment ointment) (STV 1.0 0.9091)) +(: cnet_isa_63eb0a1b06 (IsA mercurialis rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3eb6fe4a40 (IsA mercuric_chloride sublimate) (STV 1.0 0.9091)) +(: cnet_isa_4f4c4cf9c9 (IsA mercury element) (STV 1.0 0.9091)) +(: cnet_isa_4dd638aef9 (IsA mercury liquid_at_room_temperature) (STV 1.0 0.9339)) +(: cnet_isa_0c148378bc (IsA mercury liquid_metal) (STV 1.0 0.9339)) +(: cnet_isa_6fe10f2aac (IsA mercury metal) (STV 1.0 0.9339)) +(: cnet_isa_097e403fde (IsA mercury only_metal) (STV 1.0 0.9636)) +(: cnet_isa_b4a9fa99c3 (IsA mercury planet) (STV 1.0 0.9677)) +(: cnet_isa_1a324963f2 (IsA mercury temperature) (STV 1.0 0.9091)) +(: cnet_isa_aad05252c7 (IsA mercury metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_ddbb13926a (IsA mercury_barometer barometer) (STV 1.0 0.9091)) +(: cnet_isa_492a4098a3 (IsA mercury_cell voltaic_cell) (STV 1.0 0.9091)) +(: cnet_isa_38a0b9001a (IsA mercury_fulminate fulminate) (STV 1.0 0.9091)) +(: cnet_isa_c3d3e589d7 (IsA mercury_poisoning poisoning) (STV 1.0 0.9091)) +(: cnet_isa_0fa7c5d537 (IsA mercury_thermometer thermometer) (STV 1.0 0.9091)) +(: cnet_isa_0e13646568 (IsA mercury_vapor_lamp ultraviolet_lamp) (STV 1.0 0.9091)) +(: cnet_isa_98e8893ca2 (IsA mercy relief) (STV 1.0 0.9091)) +(: cnet_isa_266230da23 (IsA mercy blessing) (STV 1.0 0.9091)) +(: cnet_isa_923240b2fa (IsA mercy_seat covering) (STV 1.0 0.9091)) +(: cnet_isa_e5082ed0d3 (IsA mercy_seat throne) (STV 1.0 0.9091)) +(: cnet_isa_77c3a589b2 (IsA mere pond) (STV 1.0 0.9091)) +(: cnet_isa_957e5384fa (IsA merestone landmark) (STV 1.0 0.9091)) +(: cnet_isa_55fce70241 (IsA merganser sea_duck) (STV 1.0 0.9091)) +(: cnet_isa_8de6d0e4b8 (IsA merger_agreement contract) (STV 1.0 0.9091)) +(: cnet_isa_5c255f18f0 (IsA merginae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_4a8a9f7f84 (IsA merging convergence) (STV 1.0 0.9091)) +(: cnet_isa_abf4b02487 (IsA mergus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_e7b7299487 (IsA mericarp carpel) (STV 1.0 0.9091)) +(: cnet_isa_7273cf5b5c (IsA meridian great_circle) (STV 1.0 0.9091)) +(: cnet_isa_10c220cb9a (IsA meringue topping) (STV 1.0 0.9091)) +(: cnet_isa_925e0ef20c (IsA meringue_kiss kiss) (STV 1.0 0.9091)) +(: cnet_isa_b0bce767bb (IsA merino domestic_sheep) (STV 1.0 0.9091)) +(: cnet_isa_b86bc90255 (IsA merione mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_c9fcd8160f (IsA meristem plant_tissue) (STV 1.0 0.9091)) +(: cnet_isa_ffb93317b9 (IsA merit worth) (STV 1.0 0.9091)) +(: cnet_isa_9d57af3586 (IsA merit_badge badge) (STV 1.0 0.9091)) +(: cnet_isa_d3135cb700 (IsA merit_pay wage) (STV 1.0 0.9091)) +(: cnet_isa_e90b7615fc (IsA merit_system system) (STV 1.0 0.9091)) +(: cnet_isa_3f9d522333 (IsA meritocracy political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_8bb3dd4482 (IsA meritocracy social_organization) (STV 1.0 0.9091)) +(: cnet_isa_c9a531db15 (IsA merlangus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_0514282d57 (IsA merlon rampart) (STV 1.0 0.9091)) +(: cnet_isa_c0a9c2afad (IsA merlot red_wine) (STV 1.0 0.9091)) +(: cnet_isa_b9b0878309 (IsA merlot vinifera) (STV 1.0 0.9091)) +(: cnet_isa_b04b975d09 (IsA merluccius fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_3fb8fc5d43 (IsA mermaid imaginary_being) (STV 1.0 0.9091)) +(: cnet_isa_406536039f (IsA merman imaginary_being) (STV 1.0 0.9091)) +(: cnet_isa_b9b274cb9d (IsA meromelia birth_defect) (STV 1.0 0.9091)) +(: cnet_isa_4c8c14099b (IsA meronym word) (STV 1.0 0.9091)) +(: cnet_isa_1acefed7d7 (IsA meronymy semantic_relation) (STV 1.0 0.9091)) +(: cnet_isa_a0d8bb530e (IsA meropidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_1f9266f219 (IsA merop bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_4c258c5e39 (IsA merostomata arthropod) (STV 1.0 0.9091)) +(: cnet_isa_6f1a5a7b59 (IsA merovingian dynasty) (STV 1.0 0.9091)) +(: cnet_isa_691bc76814 (IsA merovingian sovereign) (STV 1.0 0.9091)) +(: cnet_isa_4558457947 (IsA merozoite sporozoan) (STV 1.0 0.9091)) +(: cnet_isa_612ec878f5 (IsA merry_go_round cycle) (STV 1.0 0.9091)) +(: cnet_isa_eb1491bb7d (IsA merrymaking celebration) (STV 1.0 0.9091)) +(: cnet_isa_b3e9b317ca (IsA mertensia plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_13ca80206c (IsA meryta rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2bb04f7b67 (IsA mesa tableland) (STV 1.0 0.9091)) +(: cnet_isa_8206eef9a8 (IsA mesalliance misalliance) (STV 1.0 0.9091)) +(: cnet_isa_80c5a02fc8 (IsA mesasamkranti holiday) (STV 1.0 0.9091)) +(: cnet_isa_208ee1d7d1 (IsA mescal liquor) (STV 1.0 0.9091)) +(: cnet_isa_b84fa51c94 (IsA mescal cactus) (STV 1.0 0.9091)) +(: cnet_isa_88cfc9d095 (IsA mescal_bean tree) (STV 1.0 0.9091)) +(: cnet_isa_c0e26ddab8 (IsA mescal_button plant_organ) (STV 1.0 0.9091)) +(: cnet_isa_e36296a2a6 (IsA mescaline hallucinogen) (STV 1.0 0.9091)) +(: cnet_isa_2c08c7b172 (IsA mesembryanthemum caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b8e3374fcc (IsA mesenchyme mesoderm) (STV 1.0 0.9091)) +(: cnet_isa_3b6d8a2b6d (IsA mesenteric_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_c633556885 (IsA mesenteric_plexus nerve_plexus) (STV 1.0 0.9091)) +(: cnet_isa_f4210600e7 (IsA mesenteric_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_dce5c7eae2 (IsA mesentery peritoneum) (STV 1.0 0.9091)) +(: cnet_isa_c89add8671 (IsA mesh catch) (STV 1.0 0.9091)) +(: cnet_isa_e5726cc32e (IsA mesh linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_d229a67883 (IsA mesh_topology topology) (STV 1.0 0.9091)) +(: cnet_isa_fc7c6ae5bd (IsA meshugaa folly) (STV 1.0 0.9091)) +(: cnet_isa_6ecab361d1 (IsA meshuggeneh fool) (STV 1.0 0.9091)) +(: cnet_isa_a4b1627208 (IsA mesne_lord nobleman) (STV 1.0 0.9091)) +(: cnet_isa_9d5f7fa131 (IsA mesoamerican american) (STV 1.0 0.9091)) +(: cnet_isa_8248c01b23 (IsA mesocarp pericarp) (STV 1.0 0.9091)) +(: cnet_isa_4ccaae1174 (IsA mesocolon mesentery) (STV 1.0 0.9091)) +(: cnet_isa_663f18013d (IsA mesocricetus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_e9bb762841 (IsA mesoderm germ_layer) (STV 1.0 0.9091)) +(: cnet_isa_991dce8689 (IsA mesohippus horse) (STV 1.0 0.9091)) +(: cnet_isa_6872f58ec4 (IsA mesomorph person) (STV 1.0 0.9091)) +(: cnet_isa_eccedb8504 (IsA meson boson) (STV 1.0 0.9091)) +(: cnet_isa_b873311826 (IsA meson hadron) (STV 1.0 0.9091)) +(: cnet_isa_9ba3c01cc7 (IsA mesophyte vascular_plant) (STV 1.0 0.9091)) +(: cnet_isa_6218817e5a (IsA mesosphere layer) (STV 1.0 0.9091)) +(: cnet_isa_f1aa7e9876 (IsA mesothelioma carcinoma) (STV 1.0 0.9091)) +(: cnet_isa_6f99a72263 (IsA mesothelium epithelium) (STV 1.0 0.9091)) +(: cnet_isa_9fe048fe61 (IsA mespilus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_42fa68f582 (IsA mesquite shrub) (STV 1.0 0.9091)) +(: cnet_isa_fab948b179 (IsA mesquite_gum gum) (STV 1.0 0.9091)) +(: cnet_isa_1c8d6b38cf (IsA mess meal) (STV 1.0 0.9091)) +(: cnet_isa_ed49e2aecc (IsA mess nutriment) (STV 1.0 0.9091)) +(: cnet_isa_d8edf384f8 (IsA mess dining_room) (STV 1.0 0.9091)) +(: cnet_isa_99f53214b3 (IsA mess disorderliness) (STV 1.0 0.9091)) +(: cnet_isa_64e4c9901c (IsA mess_jacket jacket) (STV 1.0 0.9091)) +(: cnet_isa_f4b03a65c3 (IsA mess_kit kit) (STV 1.0 0.9091)) +(: cnet_isa_7df3d53323 (IsA mess_of_pottage value) (STV 1.0 0.9091)) +(: cnet_isa_1b8cd6c3a8 (IsA message communication) (STV 1.0 0.9091)) +(: cnet_isa_075f7d541f (IsA message_pad pad) (STV 1.0 0.9091)) +(: cnet_isa_8eeb3aed07 (IsA messaging electronic_communication) (STV 1.0 0.9091)) +(: cnet_isa_338bca7b34 (IsA messenger traveler) (STV 1.0 0.9091)) +(: cnet_isa_c3c0a49413 (IsA messenger_boy messenger) (STV 1.0 0.9091)) +(: cnet_isa_36cd5d2938 (IsA messenger_rna ribonucleic_acid) (STV 1.0 0.9091)) +(: cnet_isa_8b633434b2 (IsA messiah savior) (STV 1.0 0.9091)) +(: cnet_isa_e0736ce5f3 (IsA messiahship position) (STV 1.0 0.9091)) +(: cnet_isa_1f63d92319 (IsA messidor revolutionary_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_955c8ec5ca (IsA messmate acquaintance) (STV 1.0 0.9091)) +(: cnet_isa_bcba52ab31 (IsA messuage dwelling) (STV 1.0 0.9091)) +(: cnet_isa_75fc842c61 (IsA mestiza woman) (STV 1.0 0.9091)) +(: cnet_isa_5d9336db4f (IsA mestizo person) (STV 1.0 0.9091)) +(: cnet_isa_2abb2c87c3 (IsA mesua dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5b168ce3c2 (IsA metabolic_acidosis acidosis) (STV 1.0 0.9091)) +(: cnet_isa_25df8fbf4c (IsA metabolic_alkalosis alkalosis) (STV 1.0 0.9091)) +(: cnet_isa_9afdabbb41 (IsA metabolic_disorder disorder) (STV 1.0 0.9091)) +(: cnet_isa_8a536a3053 (IsA metabolic_rate rate) (STV 1.0 0.9091)) +(: cnet_isa_dfa8ef9599 (IsA metabolism organic_process) (STV 1.0 0.9091)) +(: cnet_isa_95b4bfcc85 (IsA metabolite substance) (STV 1.0 0.9091)) +(: cnet_isa_fcbcd74ec5 (IsA metacarpal bone) (STV 1.0 0.9091)) +(: cnet_isa_28ce4fadcb (IsA metacarpal_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_b54ce3ed6b (IsA metacarpal_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_7c349cc41d (IsA metacarpus skeletal_structure) (STV 1.0 0.9091)) +(: cnet_isa_120c64ae78 (IsA metacenter intersection) (STV 1.0 0.9091)) +(: cnet_isa_f013ba44ca (IsA metacentric_chromosome chromosome) (STV 1.0 0.9091)) +(: cnet_isa_9953d3e7dd (IsA metadata data) (STV 1.0 0.9091)) +(: cnet_isa_a4725c2eb4 (IsA metagenesis alternation_of_generation) (STV 1.0 0.9091)) +(: cnet_isa_1f8e02bcc6 (IsA metaknowledge content) (STV 1.0 0.9091)) +(: cnet_isa_8a68cfc6d8 (IsA metal conductor) (STV 1.0 0.9091)) +(: cnet_isa_985c43424f (IsA metal music) (STV 1.0 0.9572)) +(: cnet_isa_afbfd6af6f (IsA metal music_style) (STV 1.0 0.9091)) +(: cnet_isa_7724f8413b (IsA metal_detector detector) (STV 1.0 0.9091)) +(: cnet_isa_6abcda9123 (IsA metal_filing filing) (STV 1.0 0.9091)) +(: cnet_isa_4708efe8c8 (IsA metal_screw screw) (STV 1.0 0.9091)) +(: cnet_isa_f5bf0e682f (IsA metal_wood wood) (STV 1.0 0.9091)) +(: cnet_isa_ae02e7d9ce (IsA metalanguage language) (STV 1.0 0.9091)) +(: cnet_isa_857045f7be (IsA metalepsis metonymy) (STV 1.0 0.9091)) +(: cnet_isa_938e7f7049 (IsA metalhead fan) (STV 1.0 0.9091)) +(: cnet_isa_6fc292c8a9 (IsA metallic fabric) (STV 1.0 0.9091)) +(: cnet_isa_b15b60919f (IsA metallic thread) (STV 1.0 0.9091)) +(: cnet_isa_868a532848 (IsA metallic_bond chemical_bond) (STV 1.0 0.9091)) +(: cnet_isa_d5ee3ffecf (IsA metallic_element chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_1d4177b483 (IsA metallized_dye acid_dye) (STV 1.0 0.9091)) +(: cnet_isa_0144e3d45e (IsA metallurgist engineer) (STV 1.0 0.9091)) +(: cnet_isa_ebd8de3003 (IsA metallurgy science) (STV 1.0 0.9091)) +(: cnet_isa_480d31dd76 (IsA metalware ware) (STV 1.0 0.9091)) +(: cnet_isa_7d78b14708 (IsA metalwork work) (STV 1.0 0.9091)) +(: cnet_isa_f5885747dd (IsA metalworking formation) (STV 1.0 0.9091)) +(: cnet_isa_1792f42811 (IsA metamathematic pure_mathematic) (STV 1.0 0.9091)) +(: cnet_isa_0e658444dc (IsA metamere segment) (STV 1.0 0.9091)) +(: cnet_isa_b2a01312f2 (IsA metamorphic_rock rock) (STV 1.0 0.9091)) +(: cnet_isa_3a8b32eb4c (IsA metamorphism geological_process) (STV 1.0 0.9091)) +(: cnet_isa_5d0450e1cb (IsA metamorphopsia visual_impairment) (STV 1.0 0.9091)) +(: cnet_isa_f14ff719e6 (IsA metamorphosis transformation) (STV 1.0 0.9091)) +(: cnet_isa_145106ba92 (IsA metamorphosis organic_process) (STV 1.0 0.9091)) +(: cnet_isa_77d28d82bb (IsA metaphase phase_of_cell_division) (STV 1.0 0.9091)) +(: cnet_isa_ee0ba8b2af (IsA metaphase_cell anucleated_cell) (STV 1.0 0.9091)) +(: cnet_isa_2f0ffb4ee7 (IsA metaphase_cell cell_chromosome_duplicated) (STV 1.0 0.9091)) +(: cnet_isa_a2c7b6c33a (IsA metaphase_cell cell_undergoing_meiosis) (STV 1.0 0.9091)) +(: cnet_isa_2d11fa130e (IsA metaphase_cell eukaryotic_cell) (STV 1.0 0.9091)) +(: cnet_isa_bb98f66278 (IsA metaphor trope) (STV 1.0 0.9091)) +(: cnet_isa_e504550373 (IsA metaphosphoric_acid polyphosphoric_acid) (STV 1.0 0.9091)) +(: cnet_isa_1b32373ff0 (IsA metaphysical_belief belief) (STV 1.0 0.9091)) +(: cnet_isa_49abf8b2cd (IsA metaphysic philosophy) (STV 1.0 0.9091)) +(: cnet_isa_b233a2dca8 (IsA metaphysis process) (STV 1.0 0.9091)) +(: cnet_isa_8d6891a128 (IsA metaplastic_anemia pernicious_anemia) (STV 1.0 0.9091)) +(: cnet_isa_1aed774842 (IsA metarule rule) (STV 1.0 0.9091)) +(: cnet_isa_2ab6ada0a2 (IsA metasequoia conifer) (STV 1.0 0.9091)) +(: cnet_isa_7bac9c40a0 (IsA metastability constancy) (STV 1.0 0.9091)) +(: cnet_isa_6ea55091fc (IsA metastasis pathologic_process) (STV 1.0 0.9091)) +(: cnet_isa_80b82b881a (IsA metatarsal bone) (STV 1.0 0.9091)) +(: cnet_isa_93a9e16ef7 (IsA metatarsal_arch arch) (STV 1.0 0.9091)) +(: cnet_isa_a14b41c4d2 (IsA metatarsal_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_1cd0fbffdb (IsA metatarsal_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_0a08f6b6eb (IsA metatarsus skeletal_structure) (STV 1.0 0.9091)) +(: cnet_isa_696f8c0485 (IsA metatheria class) (STV 1.0 0.9091)) +(: cnet_isa_d2fde75515 (IsA metatherian mammal) (STV 1.0 0.9091)) +(: cnet_isa_43ca1c1248 (IsA metathesis linguistic_process) (STV 1.0 0.9091)) +(: cnet_isa_fdd1339e00 (IsA metazoa subkingdom) (STV 1.0 0.9091)) +(: cnet_isa_dbe1249b99 (IsA metazoan animal) (STV 1.0 0.9091)) +(: cnet_isa_e711af9c5f (IsA metempsychosis phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_f342279c78 (IsA metencephalon hindbrain) (STV 1.0 0.9091)) +(: cnet_isa_e0ce3dc527 (IsA meteor meteoroid) (STV 1.0 0.9091)) +(: cnet_isa_74289496e6 (IsA meteor light) (STV 1.0 0.9091)) +(: cnet_isa_0544109cd3 (IsA meteor_shower atmospheric_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_8052ff01ff (IsA meteor_swarm meteoroid) (STV 1.0 0.9091)) +(: cnet_isa_ebf2148bba (IsA meteorite meteor) (STV 1.0 0.9339)) +(: cnet_isa_3b9aa58a3d (IsA meteorite meteoroid) (STV 1.0 0.9091)) +(: cnet_isa_1633d9ee3e (IsA meteoroid extraterrestrial_object) (STV 1.0 0.9091)) +(: cnet_isa_8a8266c3b8 (IsA meteorological_balloon balloon) (STV 1.0 0.9091)) +(: cnet_isa_2bd70e1906 (IsA meteorological_condition environmental_condition) (STV 1.0 0.9091)) +(: cnet_isa_d12c1b1096 (IsA meteorological_observation_post lookout) (STV 1.0 0.9091)) +(: cnet_isa_d68b0cae51 (IsA meteorologist specialist) (STV 1.0 0.9091)) +(: cnet_isa_cd0896dc36 (IsA meteorology earth_science) (STV 1.0 0.9091)) +(: cnet_isa_29d6578d3f (IsA meteorology prediction) (STV 1.0 0.9091)) +(: cnet_isa_0763b10787 (IsA meteortropism tropism) (STV 1.0 0.9091)) +(: cnet_isa_735627273f (IsA meter measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_133b586a89 (IsA meter rhythmicity) (STV 1.0 0.9091)) +(: cnet_isa_208ba2d920 (IsA meter poetic_rhythm) (STV 1.0 0.9091)) +(: cnet_isa_11120e7f84 (IsA meter metric_linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_17c0b3576d (IsA meter_maid police_matron) (STV 1.0 0.9091)) +(: cnet_isa_f5dc2b90da (IsA meterstick rule) (STV 1.0 0.9091)) +(: cnet_isa_3e6530848c (IsA methacrylic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_f6f9f2362f (IsA methadone narcotic) (STV 1.0 0.9091)) +(: cnet_isa_5c88c3bb9a (IsA methamphetamine amphetamine) (STV 1.0 0.9091)) +(: cnet_isa_7e54024a8f (IsA methamphetamine controlled_substance) (STV 1.0 0.9091)) +(: cnet_isa_c48a07cb26 (IsA methane alkane) (STV 1.0 0.9091)) +(: cnet_isa_4291a26bae (IsA methane gas) (STV 1.0 0.9091)) +(: cnet_isa_d3dcf0fbd2 (IsA methane methane_sery) (STV 1.0 0.9091)) +(: cnet_isa_517c0b87fd (IsA methane_gas greenhouse_gas) (STV 1.0 0.9091)) +(: cnet_isa_a97c4da013 (IsA methane_sery aliphatic_compound) (STV 1.0 0.9091)) +(: cnet_isa_f3c04e5742 (IsA methanogen organism) (STV 1.0 0.9091)) +(: cnet_isa_04563c6ab3 (IsA methanogen archaebacteria) (STV 1.0 0.9091)) +(: cnet_isa_ad127cfd75 (IsA methanol alcohol) (STV 1.0 0.9091)) +(: cnet_isa_5d6ae7e740 (IsA methanol fuel) (STV 1.0 0.9091)) +(: cnet_isa_7ac0e9651d (IsA methapyrilene antihistamine) (STV 1.0 0.9091)) +(: cnet_isa_5fef0a4f23 (IsA metheglin mead) (STV 1.0 0.9091)) +(: cnet_isa_7ea78d777e (IsA methicillin penicillin) (STV 1.0 0.9091)) +(: cnet_isa_ec4fd733be (IsA methionine essential_amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_561bfd0509 (IsA method know_how) (STV 1.0 0.9091)) +(: cnet_isa_877ef10eb3 (IsA method_acting acting) (STV 1.0 0.9091)) +(: cnet_isa_5a415349ba (IsA method_of_choice method) (STV 1.0 0.9091)) +(: cnet_isa_1c94e83a2d (IsA methodism protestantism) (STV 1.0 0.9091)) +(: cnet_isa_f39f91c0cc (IsA methodist protestant) (STV 1.0 0.9091)) +(: cnet_isa_ef67dec7ff (IsA methodist_church protestant_denomination) (STV 1.0 0.9091)) +(: cnet_isa_e7dda4b260 (IsA methodist_denomination protestant_denomination) (STV 1.0 0.9091)) +(: cnet_isa_39b138b091 (IsA methodology epistemology) (STV 1.0 0.9091)) +(: cnet_isa_e245fd9f1b (IsA methodology method) (STV 1.0 0.9091)) +(: cnet_isa_be536eb104 (IsA methotrexate antimetabolite) (STV 1.0 0.9091)) +(: cnet_isa_c0124463c2 (IsA methotrexate immunosuppressant) (STV 1.0 0.9091)) +(: cnet_isa_7106b79bad (IsA methyl alkyl) (STV 1.0 0.9091)) +(: cnet_isa_af2bc90c89 (IsA methyl_bromide bromide) (STV 1.0 0.9091)) +(: cnet_isa_094c73566c (IsA methyl_orange acid_base_indicator) (STV 1.0 0.9091)) +(: cnet_isa_b85f0e040b (IsA methyl_orange azo_dye) (STV 1.0 0.9091)) +(: cnet_isa_da4851846c (IsA methyl_salicylate salicylate) (STV 1.0 0.9091)) +(: cnet_isa_2af6991df1 (IsA methylated_spirit denatured_alcohol) (STV 1.0 0.9091)) +(: cnet_isa_3fc73ca497 (IsA methylene_blue stain) (STV 1.0 0.9091)) +(: cnet_isa_902b1d136b (IsA methylene_blue thiazine) (STV 1.0 0.9091)) +(: cnet_isa_dd274b29a4 (IsA methylene_chloride chloride) (STV 1.0 0.9091)) +(: cnet_isa_0264220cb2 (IsA methylene_group group) (STV 1.0 0.9091)) +(: cnet_isa_36fff5fb0a (IsA methylenedioxymethamphetamine club_drug) (STV 1.0 0.9091)) +(: cnet_isa_bae80fbfb3 (IsA methyltestosterone androgen) (STV 1.0 0.9091)) +(: cnet_isa_01b7b8e755 (IsA metic foreigner) (STV 1.0 0.9091)) +(: cnet_isa_94da470d35 (IsA metical mozambique_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_3e06270e3a (IsA meticulousness conscientiousness) (STV 1.0 0.9091)) +(: cnet_isa_709287406a (IsA metier occupation) (STV 1.0 0.9091)) +(: cnet_isa_f0a680c839 (IsA metis mixed_blood) (STV 1.0 0.9091)) +(: cnet_isa_0fa5ecbe96 (IsA metonym word) (STV 1.0 0.9091)) +(: cnet_isa_4698ef9dcc (IsA metonymy trope) (STV 1.0 0.9091)) +(: cnet_isa_67179c02d5 (IsA metopion craniometric_point) (STV 1.0 0.9091)) +(: cnet_isa_842f94225f (IsA metralgia pain) (STV 1.0 0.9091)) +(: cnet_isa_c3c32f156b (IsA metrazol_shock shock_therapy) (STV 1.0 0.9091)) +(: cnet_isa_729633c892 (IsA metric_capacity_unit metric_unit) (STV 1.0 0.9091)) +(: cnet_isa_d130a25575 (IsA metric_capacity_unit volume_unit) (STV 1.0 0.9091)) +(: cnet_isa_588d80c0b5 (IsA metric_function mapping) (STV 1.0 0.9091)) +(: cnet_isa_0c9b0d2660 (IsA metric_linear_unit linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_2bcc615a84 (IsA metric_linear_unit metric_unit) (STV 1.0 0.9091)) +(: cnet_isa_6fd2b34552 (IsA metric_space mathematical_space) (STV 1.0 0.9091)) +(: cnet_isa_27c742b7f0 (IsA metric_system system_of_weight_and_measure) (STV 1.0 0.9091)) +(: cnet_isa_94db346597 (IsA metric_ton metric_weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_4396fb677a (IsA metric_unit unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_51e7738dd3 (IsA metric_weight_unit mass_unit) (STV 1.0 0.9091)) +(: cnet_isa_fc6c4e8980 (IsA metric_weight_unit metric_unit) (STV 1.0 0.9091)) +(: cnet_isa_3054be20bd (IsA metrical_foot meter) (STV 1.0 0.9091)) +(: cnet_isa_b07b5d8caa (IsA metrification change) (STV 1.0 0.9091)) +(: cnet_isa_9e026a072a (IsA metrification writing) (STV 1.0 0.9091)) +(: cnet_isa_0d92470747 (IsA metritis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_b4515ac1f1 (IsA metro railway) (STV 1.0 0.9091)) +(: cnet_isa_a8ea490fab (IsA metrology science) (STV 1.0 0.9091)) +(: cnet_isa_3e426b7498 (IsA metronome pendulum) (STV 1.0 0.9091)) +(: cnet_isa_d603773938 (IsA metropolitan archbishop) (STV 1.0 0.9091)) +(: cnet_isa_bd1647012b (IsA metropolitan resident) (STV 1.0 0.9091)) +(: cnet_isa_81c8f707a3 (IsA metroptosis prolapse) (STV 1.0 0.9091)) +(: cnet_isa_5262844a29 (IsA metrorrhagia bleeding) (STV 1.0 0.9091)) +(: cnet_isa_9731fed052 (IsA metroxylon monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_960d4a52d7 (IsA mettlesomeness high_spiritedness) (STV 1.0 0.9091)) +(: cnet_isa_cfc84f68b6 (IsA meuniere_butter butter) (STV 1.0 0.9091)) +(: cnet_isa_9069f1b1b8 (IsA mew gull) (STV 1.0 0.9091)) +(: cnet_isa_d8a0576023 (IsA mew street) (STV 1.0 0.9091)) +(: cnet_isa_1f1f9170fc (IsA mexican central_american) (STV 1.0 0.9091)) +(: cnet_isa_d50baede3c (IsA mexican_bean_beetle ladybug) (STV 1.0 0.9091)) +(: cnet_isa_1241b15b5c (IsA mexican_cypress cypress) (STV 1.0 0.9091)) +(: cnet_isa_245ec16e92 (IsA mexican_hairless dog) (STV 1.0 0.9091)) +(: cnet_isa_b67ae2ad04 (IsA mexican_hat coneflower) (STV 1.0 0.9091)) +(: cnet_isa_6fe9544964 (IsA mexican_hyssop giant_hyssop) (STV 1.0 0.9091)) +(: cnet_isa_606804aa86 (IsA mexican_juniper juniper) (STV 1.0 0.9091)) +(: cnet_isa_eb17d09970 (IsA mexican_mint sage) (STV 1.0 0.9091)) +(: cnet_isa_c8ac8c0288 (IsA mexican_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_d4e101b3a0 (IsA mexican_peso mexican_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_3b1874fad1 (IsA mexican_pocket_mouse pocket_mouse) (STV 1.0 0.9091)) +(: cnet_isa_f9b3bd8cb8 (IsA mexican_poppy prickly_poppy) (STV 1.0 0.9091)) +(: cnet_isa_4938597b7c (IsA mexican_spanish spanish) (STV 1.0 0.9091)) +(: cnet_isa_e7f4963ea8 (IsA mexican_standoff situation) (STV 1.0 0.9091)) +(: cnet_isa_94ef3edbd3 (IsA mexican_sunflower flower) (STV 1.0 0.9091)) +(: cnet_isa_400827118e (IsA mexicano mexican) (STV 1.0 0.9091)) +(: cnet_isa_f514ccf136 (IsA mexico country) (STV 1.0 0.9454)) +(: cnet_isa_e639dcb8ec (IsA mezereon daphne) (STV 1.0 0.9091)) +(: cnet_isa_b9e778b682 (IsA mezereum bark) (STV 1.0 0.9091)) +(: cnet_isa_da348938bf (IsA mezuzah section) (STV 1.0 0.9091)) +(: cnet_isa_e7ba9afc3f (IsA mezzanine balcony) (STV 1.0 0.9091)) +(: cnet_isa_7cfbb5e65a (IsA mezzanine floor) (STV 1.0 0.9091)) +(: cnet_isa_08c53e2682 (IsA mezzo_relievo relief) (STV 1.0 0.9091)) +(: cnet_isa_c81c76b30f (IsA mezzo_soprano singing_voice) (STV 1.0 0.9091)) +(: cnet_isa_d53835b5e2 (IsA mezzo_soprano soprano) (STV 1.0 0.9091)) +(: cnet_isa_7c9516f693 (IsA mezzotint print) (STV 1.0 0.9091)) +(: cnet_isa_b835a01e02 (IsA mho conductance_unit) (STV 1.0 0.9091)) +(: cnet_isa_8e3fad419f (IsA mi solfa_syllable) (STV 1.0 0.9091)) +(: cnet_isa_808335bc56 (IsA miami city_in_florida) (STV 1.0 0.9454)) +(: cnet_isa_6e2c6150a1 (IsA miami algonquin) (STV 1.0 0.9091)) +(: cnet_isa_03c959ff35 (IsA miasma air_pollution) (STV 1.0 0.9091)) +(: cnet_isa_4871aaac3e (IsA miasma atmosphere) (STV 1.0 0.9091)) +(: cnet_isa_4a89b7ef4d (IsA mica mineral) (STV 1.0 0.9091)) +(: cnet_isa_d08ee4ff60 (IsA mica transparent_substance) (STV 1.0 0.9091)) +(: cnet_isa_39b278d4c8 (IsA mice small_animal) (STV 1.0 0.9091)) +(: cnet_isa_4f98504cdd (IsA micelle particle) (STV 1.0 0.9091)) +(: cnet_isa_ef4535523e (IsA michael archangel) (STV 1.0 0.9091)) +(: cnet_isa_b52069905d (IsA michaelma quarter_day) (STV 1.0 0.9091)) +(: cnet_isa_dc6422e153 (IsA michaelma_daisy aster) (STV 1.0 0.9091)) +(: cnet_isa_9f0e8297e6 (IsA michaelmastide season) (STV 1.0 0.9091)) +(: cnet_isa_96816a6a35 (IsA michelson_morley_experiment experiment) (STV 1.0 0.9091)) +(: cnet_isa_1225e3fa1a (IsA michigan state) (STV 1.0 0.9608)) +(: cnet_isa_9f057478ee (IsA michigan card_game) (STV 1.0 0.9091)) +(: cnet_isa_0b3bd0706c (IsA michigan_lily lily) (STV 1.0 0.9091)) +(: cnet_isa_9de62b6dee (IsA mickey irishman) (STV 1.0 0.9091)) +(: cnet_isa_ec1403385c (IsA mickey_finn knockout_drop) (STV 1.0 0.9091)) +(: cnet_isa_5f694f16ec (IsA micmac algonquian) (STV 1.0 0.9091)) +(: cnet_isa_91cd3ef93c (IsA microbalance balance) (STV 1.0 0.9091)) +(: cnet_isa_ad23dfa9e8 (IsA microbe microorganism) (STV 1.0 0.9091)) +(: cnet_isa_b64dddba0d (IsA microbiologist biologist) (STV 1.0 0.9091)) +(: cnet_isa_4990ffb9cb (IsA microbiology biology) (STV 1.0 0.9091)) +(: cnet_isa_167f4f0b7c (IsA microbrachia abnormality) (STV 1.0 0.9091)) +(: cnet_isa_be0ada6d36 (IsA microbrewery brewery) (STV 1.0 0.9091)) +(: cnet_isa_fd706ff21f (IsA microcentrum arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_718631d515 (IsA microcephaly abnormality) (STV 1.0 0.9091)) +(: cnet_isa_ca1373af5c (IsA microchiroptera animal_order) (STV 1.0 0.9091)) +(: cnet_isa_8706850720 (IsA micrococcaceae bacteria_family) (STV 1.0 0.9091)) +(: cnet_isa_3fe69af19c (IsA micrococcus bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_bb8714b1f4 (IsA microcosm model) (STV 1.0 0.9091)) +(: cnet_isa_446b42462b (IsA microcosmic_salt salt) (STV 1.0 0.9091)) +(: cnet_isa_260dd75640 (IsA microcyte red_blood_cell) (STV 1.0 0.9091)) +(: cnet_isa_43fedd1dcc (IsA microcytic_anemia anemia) (STV 1.0 0.9091)) +(: cnet_isa_c5e89bc2e3 (IsA microcytosis blood_disease) (STV 1.0 0.9091)) +(: cnet_isa_24917fcfb2 (IsA microdesmidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_820a99d36c (IsA microdipodop mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_da3e84483e (IsA microdot picture) (STV 1.0 0.9091)) +(: cnet_isa_d7c1d4e1f4 (IsA microeconomic economic) (STV 1.0 0.9091)) +(: cnet_isa_47eae707be (IsA microeconomist economist) (STV 1.0 0.9091)) +(: cnet_isa_58fc3519da (IsA microelectronic electronic) (STV 1.0 0.9091)) +(: cnet_isa_d7871f915e (IsA microevolution evolution) (STV 1.0 0.9091)) +(: cnet_isa_c1d3613800 (IsA microfarad capacitance_unit) (STV 1.0 0.9091)) +(: cnet_isa_daf3729b10 (IsA microfiche microfilm) (STV 1.0 0.9091)) +(: cnet_isa_06dd53c338 (IsA microfilm film) (STV 1.0 0.9091)) +(: cnet_isa_4b2beb90ed (IsA microflora microorganism) (STV 1.0 0.9091)) +(: cnet_isa_a13b03db44 (IsA microflora plant) (STV 1.0 0.9091)) +(: cnet_isa_0f7738e0d9 (IsA microfossil fossil) (STV 1.0 0.9091)) +(: cnet_isa_37d221cbc1 (IsA microgametophyte gametophyte) (STV 1.0 0.9091)) +(: cnet_isa_caa8d1162c (IsA microgauss flux_density_unit) (STV 1.0 0.9091)) +(: cnet_isa_230841a2ac (IsA microglia neuroglia) (STV 1.0 0.9091)) +(: cnet_isa_ead33ace34 (IsA microgliacyte neurogliacyte) (STV 1.0 0.9091)) +(: cnet_isa_4c116702b1 (IsA microgram metric_weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_ebdc396632 (IsA microgramma fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_a649b92eeb (IsA microhylidae amphibian_family) (STV 1.0 0.9091)) +(: cnet_isa_5191f0ad63 (IsA micromeria asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_fd1d44dcdc (IsA micrometeorite meteorite) (STV 1.0 0.9091)) +(: cnet_isa_457168ede6 (IsA micrometer caliper) (STV 1.0 0.9091)) +(: cnet_isa_0dc0171d7e (IsA micrometry measurement) (STV 1.0 0.9091)) +(: cnet_isa_f1775cf641 (IsA micromyx mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_ffc258b4b0 (IsA micron metric_linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_2e71eb6a1f (IsA micronutrient food) (STV 1.0 0.9091)) +(: cnet_isa_edfdbd9c43 (IsA microorganism organism) (STV 1.0 0.9091)) +(: cnet_isa_98dd453226 (IsA micropaleontology paleontology) (STV 1.0 0.9091)) +(: cnet_isa_5168cdd725 (IsA micropenis penis) (STV 1.0 0.9091)) +(: cnet_isa_f94a2e6f89 (IsA microphage neutrophil) (STV 1.0 0.9091)) +(: cnet_isa_509afd453b (IsA microphone electro_acoustic_transducer) (STV 1.0 0.9091)) +(: cnet_isa_b3073b3857 (IsA microphoning transduction) (STV 1.0 0.9091)) +(: cnet_isa_bf2c87a22c (IsA microphotometer densitometer) (STV 1.0 0.9091)) +(: cnet_isa_f854700ed1 (IsA micropogonia fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_43ba0f8d62 (IsA microprocessor electronic_component) (STV 1.0 0.9339)) +(: cnet_isa_663043450a (IsA microprocessor chip) (STV 1.0 0.9091)) +(: cnet_isa_b164a014b0 (IsA micropterus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_69cb30c33c (IsA micropyle aperture) (STV 1.0 0.9091)) +(: cnet_isa_3f7c97473f (IsA microradian angular_unit) (STV 1.0 0.9091)) +(: cnet_isa_33aeb47d31 (IsA microscope magnifier) (STV 1.0 0.9091)) +(: cnet_isa_a8874fabda (IsA microscopic_anatomy anatomy) (STV 1.0 0.9091)) +(: cnet_isa_eba7d384a5 (IsA microscopic_field field) (STV 1.0 0.9091)) +(: cnet_isa_dc53f52fc8 (IsA microscopist scientist) (STV 1.0 0.9091)) +(: cnet_isa_d7bdc140a4 (IsA microscopy research) (STV 1.0 0.9091)) +(: cnet_isa_1dfae47a4f (IsA microsecond time_unit) (STV 1.0 0.9091)) +(: cnet_isa_9c02ee6fc4 (IsA microsoft computer_software_company) (STV 1.0 0.9339)) +(: cnet_isa_f6e7c8148b (IsA microsoft corporation) (STV 1.0 0.9454)) +(: cnet_isa_6a3daf51ef (IsA microsoft greedy_corporation) (STV 1.0 0.9091)) +(: cnet_isa_17011acd17 (IsA microsoft monopoly) (STV 1.0 0.9339)) +(: cnet_isa_de40b43990 (IsA microsoft producing_software) (STV 1.0 0.9339)) +(: cnet_isa_286dfd046a (IsA microsoft registered_trademark_of_microsoft_corporation) (STV 1.0 0.9091)) +(: cnet_isa_6c13673e16 (IsA microsoft software_company) (STV 1.0 0.9339)) +(: cnet_isa_f548aeb939 (IsA microsome granule) (STV 1.0 0.9091)) +(: cnet_isa_77fe597279 (IsA microsorium fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_9359149710 (IsA microsporangium sporangium) (STV 1.0 0.9091)) +(: cnet_isa_0598b62bc4 (IsA microspore spore) (STV 1.0 0.9091)) +(: cnet_isa_6cf27dbb4c (IsA microsporidian sporozoan) (STV 1.0 0.9091)) +(: cnet_isa_cf2e507c0b (IsA microsporophyll sporophyll) (STV 1.0 0.9091)) +(: cnet_isa_a555f9aee3 (IsA microsporum fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_713e767d89 (IsA microstomus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_7e20a8ac09 (IsA microstrobo gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_f78525a417 (IsA microsurgery operation) (STV 1.0 0.9091)) +(: cnet_isa_fde27a3810 (IsA microtome scientific_instrument) (STV 1.0 0.9091)) +(: cnet_isa_1ce3c8fc5e (IsA microtubule tubule) (STV 1.0 0.9091)) +(: cnet_isa_dc852764f5 (IsA microtus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_b7f567f0eb (IsA microvolt potential_unit) (STV 1.0 0.9091)) +(: cnet_isa_61c92d6503 (IsA microwave kitchen_appliance) (STV 1.0 0.9091)) +(: cnet_isa_358a9c68a1 (IsA microwave electromagnetic_radiation) (STV 1.0 0.9091)) +(: cnet_isa_43519ec4a5 (IsA microwave_bomb bomb) (STV 1.0 0.9091)) +(: cnet_isa_fe504879ea (IsA microwave_diathermy_machine diathermy_machine) (STV 1.0 0.9091)) +(: cnet_isa_f9ddb3f0bd (IsA microwave_linear_accelerator linear_accelerator) (STV 1.0 0.9091)) +(: cnet_isa_d39546b719 (IsA microwave_spectroscopy spectroscopy) (STV 1.0 0.9091)) +(: cnet_isa_af08472f4a (IsA microwave_spectrum spectrum) (STV 1.0 0.9091)) +(: cnet_isa_258ead6b6e (IsA micruroide reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_c22b81cdb8 (IsA micrurus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_09ccdb0576 (IsA micturition elimination) (STV 1.0 0.9091)) +(: cnet_isa_c123113779 (IsA micturition_reflex reflex) (STV 1.0 0.9091)) +(: cnet_isa_067ad7ef3d (IsA mid_april time_period) (STV 1.0 0.9091)) +(: cnet_isa_27e42b7ff9 (IsA mid_august time_period) (STV 1.0 0.9091)) +(: cnet_isa_c993b88436 (IsA mid_calf calf) (STV 1.0 0.9091)) +(: cnet_isa_bb19c912eb (IsA mid_december time_period) (STV 1.0 0.9091)) +(: cnet_isa_fdcbb37466 (IsA mid_february time_period) (STV 1.0 0.9091)) +(: cnet_isa_7c82ceae2f (IsA mid_january time_period) (STV 1.0 0.9091)) +(: cnet_isa_14b4ba1d72 (IsA mid_july time_period) (STV 1.0 0.9091)) +(: cnet_isa_b3f9135537 (IsA mid_june time_period) (STV 1.0 0.9091)) +(: cnet_isa_2fe8485c49 (IsA mid_march time_period) (STV 1.0 0.9091)) +(: cnet_isa_a1573e92f9 (IsA mid_may time_period) (STV 1.0 0.9091)) +(: cnet_isa_52dac545f3 (IsA mid_november time_period) (STV 1.0 0.9091)) +(: cnet_isa_baa50ea27d (IsA mid_october time_period) (STV 1.0 0.9091)) +(: cnet_isa_47145db3a3 (IsA mid_off position) (STV 1.0 0.9091)) +(: cnet_isa_8cb2782b3d (IsA mid_on position) (STV 1.0 0.9091)) +(: cnet_isa_2b6cf750b6 (IsA mid_september time_period) (STV 1.0 0.9091)) +(: cnet_isa_432b97d168 (IsA mid_water body_of_water) (STV 1.0 0.9091)) +(: cnet_isa_468891b71f (IsA midafternoon day) (STV 1.0 0.9091)) +(: cnet_isa_5d348a29f9 (IsA midair point) (STV 1.0 0.9091)) +(: cnet_isa_39dd242920 (IsA mida_touch ability) (STV 1.0 0.9091)) +(: cnet_isa_543f42ee50 (IsA midbrain neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_7030c0ca99 (IsA middle area) (STV 1.0 0.9091)) +(: cnet_isa_8168bbd45c (IsA middle part) (STV 1.0 0.9091)) +(: cnet_isa_66cacb92b6 (IsA middle point) (STV 1.0 0.9091)) +(: cnet_isa_01b47259bf (IsA middle_age time_of_life) (STV 1.0 0.9091)) +(: cnet_isa_fb8458ec12 (IsA middle_aged_man man) (STV 1.0 0.9091)) +(: cnet_isa_6974708d2b (IsA middle_c note) (STV 1.0 0.9091)) +(: cnet_isa_c85c27ca1f (IsA middle_cerebral_artery cerebral_artery) (STV 1.0 0.9091)) +(: cnet_isa_98926d1d8c (IsA middle_cerebral_vein cerebral_vein) (STV 1.0 0.9091)) +(: cnet_isa_428064fce9 (IsA middle_class class) (STV 1.0 0.9091)) +(: cnet_isa_1d125f094f (IsA middle_distance view) (STV 1.0 0.9091)) +(: cnet_isa_98f5f2de96 (IsA middle_ear cavity) (STV 1.0 0.9091)) +(: cnet_isa_e438118fd8 (IsA middle_english english) (STV 1.0 0.9091)) +(: cnet_isa_c399dc6852 (IsA middle_finger finger) (STV 1.0 0.9091)) +(: cnet_isa_7c7a723a0e (IsA middle_high_german german) (STV 1.0 0.9091)) +(: cnet_isa_9f29f0a040 (IsA middle_irish irish) (STV 1.0 0.9091)) +(: cnet_isa_b6fb64fd64 (IsA middle_low_german low_german) (STV 1.0 0.9091)) +(: cnet_isa_dc9669d56e (IsA middle_meningeal_artery meningeal_artery) (STV 1.0 0.9091)) +(: cnet_isa_46eaebb4a6 (IsA middle_name name) (STV 1.0 0.9091)) +(: cnet_isa_eb97e4c91f (IsA middle_temporal_vein temporal_vein) (STV 1.0 0.9091)) +(: cnet_isa_bdf30f14cd (IsA middle_term term) (STV 1.0 0.9091)) +(: cnet_isa_acedb146c1 (IsA middle_thyroid_vein thyroid_vein) (STV 1.0 0.9091)) +(: cnet_isa_dbf7ad5145 (IsA middlebrow person) (STV 1.0 0.9091)) +(: cnet_isa_86331dfc64 (IsA middleweight boxer) (STV 1.0 0.9091)) +(: cnet_isa_108ed11e12 (IsA middleweight prizefighter) (STV 1.0 0.9091)) +(: cnet_isa_e3b672678d (IsA middleweight wrestler) (STV 1.0 0.9091)) +(: cnet_isa_1b544c34f7 (IsA middling commodity) (STV 1.0 0.9091)) +(: cnet_isa_bcfddba217 (IsA middy blouse) (STV 1.0 0.9091)) +(: cnet_isa_03eb8cfaea (IsA midfield center) (STV 1.0 0.9091)) +(: cnet_isa_1980eb8fe2 (IsA midgard imaginary_place) (STV 1.0 0.9091)) +(: cnet_isa_ffdbf88aa6 (IsA midge gnat) (STV 1.0 0.9091)) +(: cnet_isa_812728fdb2 (IsA midgrass grass) (STV 1.0 0.9091)) +(: cnet_isa_e6aa787fae (IsA midinette salesgirl) (STV 1.0 0.9091)) +(: cnet_isa_81f6c0f2fd (IsA midiron iron) (STV 1.0 0.9091)) +(: cnet_isa_dd8c7d2e7a (IsA midland inside) (STV 1.0 0.9091)) +(: cnet_isa_e4b738a9f7 (IsA midnight hour) (STV 1.0 0.9091)) +(: cnet_isa_2534575b3d (IsA midnight_sun atmospheric_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_49c1b0c46a (IsA midplane plane) (STV 1.0 0.9091)) +(: cnet_isa_f0ebac4a6a (IsA midrash comment) (STV 1.0 0.9091)) +(: cnet_isa_34b794ba5e (IsA midrib vein) (STV 1.0 0.9091)) +(: cnet_isa_4ad7f746b5 (IsA midshipman cadet) (STV 1.0 0.9091)) +(: cnet_isa_5149a767eb (IsA midst inside) (STV 1.0 0.9091)) +(: cnet_isa_efd1db6ced (IsA midstream center) (STV 1.0 0.9091)) +(: cnet_isa_d16fad0627 (IsA midsummer_day quarter_day) (STV 1.0 0.9091)) +(: cnet_isa_69622e07ad (IsA midsummer_eve day) (STV 1.0 0.9091)) +(: cnet_isa_b1f07d9c75 (IsA midterm exam) (STV 1.0 0.9339)) +(: cnet_isa_d70e117803 (IsA midterm point) (STV 1.0 0.9091)) +(: cnet_isa_5e771ad15c (IsA midterm_examination examination) (STV 1.0 0.9091)) +(: cnet_isa_605de86061 (IsA midway tract) (STV 1.0 0.9091)) +(: cnet_isa_4f75cbab83 (IsA midweek time_period) (STV 1.0 0.9091)) +(: cnet_isa_76769bca8a (IsA midwife nurse) (STV 1.0 0.9091)) +(: cnet_isa_bd17fd403d (IsA midwife_toad frog) (STV 1.0 0.9091)) +(: cnet_isa_57a7724293 (IsA midwifery delivery) (STV 1.0 0.9091)) +(: cnet_isa_2a4f33c469 (IsA midwinter time_period) (STV 1.0 0.9091)) +(: cnet_isa_d49a411ea7 (IsA might strength) (STV 1.0 0.9091)) +(: cnet_isa_85b8a97919 (IsA might_have_been event) (STV 1.0 0.9091)) +(: cnet_isa_ff3c8f4748 (IsA mignonette reseda) (STV 1.0 0.9091)) +(: cnet_isa_7e39e63218 (IsA migraine headache) (STV 1.0 0.9091)) +(: cnet_isa_bfa3c270c1 (IsA migrant traveler) (STV 1.0 0.9091)) +(: cnet_isa_f52c312c50 (IsA migrant_shrike shrike) (STV 1.0 0.9091)) +(: cnet_isa_2bd177c047 (IsA migrant_worker temp) (STV 1.0 0.9091)) +(: cnet_isa_58f19f9472 (IsA migration motion) (STV 1.0 0.9091)) +(: cnet_isa_f7d59a716a (IsA migration event) (STV 1.0 0.9091)) +(: cnet_isa_0c93ab5e91 (IsA migration periodic_event) (STV 1.0 0.9091)) +(: cnet_isa_e01800b54a (IsA migration people) (STV 1.0 0.9091)) +(: cnet_isa_b6d1efcbbc (IsA migration_route path) (STV 1.0 0.9091)) +(: cnet_isa_1b111ec25f (IsA migrator animal) (STV 1.0 0.9091)) +(: cnet_isa_543b8c23b9 (IsA migratory_grasshopper locust) (STV 1.0 0.9091)) +(: cnet_isa_09287ed3d9 (IsA migratory_locust locust) (STV 1.0 0.9091)) +(: cnet_isa_4f6576b4af (IsA migratory_quail old_world_quail) (STV 1.0 0.9091)) +(: cnet_isa_eaea2aac54 (IsA mihrab design) (STV 1.0 0.9091)) +(: cnet_isa_d5604ac681 (IsA mihrab recess) (STV 1.0 0.9091)) +(: cnet_isa_31d9abc647 (IsA mikado emperor) (STV 1.0 0.9091)) +(: cnet_isa_b419968403 (IsA mikania asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2a47f44e6f (IsA mikir_meithei kamarupan) (STV 1.0 0.9091)) +(: cnet_isa_75153a1492 (IsA mikmaq algonquin) (STV 1.0 0.9091)) +(: cnet_isa_9ee2aca4bc (IsA mikvah bath) (STV 1.0 0.9091)) +(: cnet_isa_2a6b905645 (IsA mil angular_unit) (STV 1.0 0.9091)) +(: cnet_isa_5dd61636f6 (IsA mil cypriot_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_d90c900cd1 (IsA mil linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_216226cded (IsA milady noblewoman) (STV 1.0 0.9091)) +(: cnet_isa_e68c25f67e (IsA milanese italian) (STV 1.0 0.9091)) +(: cnet_isa_30a552792e (IsA mild_steel steel) (STV 1.0 0.9091)) +(: cnet_isa_e377f21057 (IsA mildew fungus) (STV 1.0 0.9091)) +(: cnet_isa_1c64dd9c28 (IsA mildew spoilage) (STV 1.0 0.9091)) +(: cnet_isa_a66b96ce52 (IsA mildness good_weather) (STV 1.0 0.9091)) +(: cnet_isa_d60f22b4eb (IsA mile track_event) (STV 1.0 0.9091)) +(: cnet_isa_1f5b83fbc2 (IsA mile large_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_64c032b274 (IsA mile linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_492ecc7515 (IsA mileage measurement) (STV 1.0 0.9339)) +(: cnet_isa_25745cce21 (IsA mileage distance) (STV 1.0 0.9091)) +(: cnet_isa_e0cae66c33 (IsA mileage ratio) (STV 1.0 0.9091)) +(: cnet_isa_ace7609b42 (IsA mileage travel_allowance) (STV 1.0 0.9091)) +(: cnet_isa_4812f42aca (IsA miler runner) (STV 1.0 0.9091)) +(: cnet_isa_6b5c2ec4bb (IsA miler linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_87b25f897e (IsA mile_gloriosus egotist) (STV 1.0 0.9091)) +(: cnet_isa_266ed5fa77 (IsA mile_per_gallon unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_c483c87d7a (IsA mile_per_hour rate) (STV 1.0 0.9091)) +(: cnet_isa_e6e2398693 (IsA mile_per_hour reading) (STV 1.0 0.9091)) +(: cnet_isa_d92a2c3ee0 (IsA milestone marker) (STV 1.0 0.9091)) +(: cnet_isa_225e94832c (IsA milestone juncture) (STV 1.0 0.9091)) +(: cnet_isa_063406e3d4 (IsA miliary_tuberculosis tuberculosis) (STV 1.0 0.9091)) +(: cnet_isa_8cc426a7f9 (IsA milieu environment) (STV 1.0 0.9091)) +(: cnet_isa_8b16cdc42d (IsA militainment entertainment) (STV 1.0 0.9091)) +(: cnet_isa_7691b01927 (IsA militant reformer) (STV 1.0 0.9091)) +(: cnet_isa_fb71aab805 (IsA militant_tendency party) (STV 1.0 0.9091)) +(: cnet_isa_5b1ef81602 (IsA militarism hawkishness) (STV 1.0 0.9091)) +(: cnet_isa_b6ace068d5 (IsA militarist adult) (STV 1.0 0.9091)) +(: cnet_isa_957f5cb6e0 (IsA military force) (STV 1.0 0.9091)) +(: cnet_isa_86f7f344cd (IsA military_academy academy) (STV 1.0 0.9091)) +(: cnet_isa_9723f705c2 (IsA military_action group_action) (STV 1.0 0.9091)) +(: cnet_isa_f2840cbb3b (IsA military_adviser adviser) (STV 1.0 0.9091)) +(: cnet_isa_03d35cdf19 (IsA military_adviser military_officer) (STV 1.0 0.9091)) +(: cnet_isa_1b1208359b (IsA military_attache attache) (STV 1.0 0.9091)) +(: cnet_isa_cb5ef67374 (IsA military_capability capability) (STV 1.0 0.9091)) +(: cnet_isa_273c561642 (IsA military_censorship censoring) (STV 1.0 0.9091)) +(: cnet_isa_5a98a790ea (IsA military_ceremony ceremony) (STV 1.0 0.9091)) +(: cnet_isa_8e844e649e (IsA military_chaplain chaplain) (STV 1.0 0.9091)) +(: cnet_isa_324793d174 (IsA military_court court) (STV 1.0 0.9091)) +(: cnet_isa_a3e18d4050 (IsA military_drill exercise) (STV 1.0 0.9091)) +(: cnet_isa_81657c27e7 (IsA military_formation formation) (STV 1.0 0.9091)) +(: cnet_isa_bcb7e657a7 (IsA military_government government) (STV 1.0 0.9091)) +(: cnet_isa_8f9c54de1b (IsA military_governor governor) (STV 1.0 0.9091)) +(: cnet_isa_ccc67f076c (IsA military_hospital hospital) (STV 1.0 0.9091)) +(: cnet_isa_6be7cafcd3 (IsA military_industrial_complex vested_interest) (STV 1.0 0.9091)) +(: cnet_isa_8499058842 (IsA military_installation facility) (STV 1.0 0.9091)) +(: cnet_isa_f8d64478a2 (IsA military_intelligence intelligence) (STV 1.0 0.9091)) +(: cnet_isa_a06affd8a0 (IsA military_junta clique) (STV 1.0 0.9091)) +(: cnet_isa_ac2c045985 (IsA military_law law) (STV 1.0 0.9091)) +(: cnet_isa_ebaeaa0532 (IsA military_leader leader) (STV 1.0 0.9091)) +(: cnet_isa_a31209e16b (IsA military_march marching_music) (STV 1.0 0.9091)) +(: cnet_isa_343b4b0947 (IsA military_officer serviceman) (STV 1.0 0.9091)) +(: cnet_isa_7f759c2ddb (IsA military_pace linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_82ab4bf368 (IsA military_personnel force) (STV 1.0 0.9091)) +(: cnet_isa_4258ea8752 (IsA military_police force) (STV 1.0 0.9091)) +(: cnet_isa_8652356fe9 (IsA military_policeman lawman) (STV 1.0 0.9091)) +(: cnet_isa_dc5b87efa3 (IsA military_position point) (STV 1.0 0.9091)) +(: cnet_isa_deb026a3ed (IsA military_post military_installation) (STV 1.0 0.9091)) +(: cnet_isa_37510f6d58 (IsA military_quarter living_quarter) (STV 1.0 0.9091)) +(: cnet_isa_6114ddbe98 (IsA military_rank rank) (STV 1.0 0.9091)) +(: cnet_isa_18c9c40ff5 (IsA military_reserve military) (STV 1.0 0.9091)) +(: cnet_isa_10c45ffe56 (IsA military_science discipline) (STV 1.0 0.9091)) +(: cnet_isa_8bd57226ce (IsA military_service service) (STV 1.0 0.9091)) +(: cnet_isa_ca01ef09ce (IsA military_service force) (STV 1.0 0.9091)) +(: cnet_isa_a92f8f718b (IsA military_training training) (STV 1.0 0.9091)) +(: cnet_isa_d222c7e519 (IsA military_uniform uniform) (STV 1.0 0.9091)) +(: cnet_isa_7fb30355e7 (IsA military_unit unit) (STV 1.0 0.9091)) +(: cnet_isa_7258447f1f (IsA military_vehicle vehicle) (STV 1.0 0.9091)) +(: cnet_isa_1a112e2476 (IsA militia body) (STV 1.0 0.9091)) +(: cnet_isa_64bdcaa1a2 (IsA militia military_unit) (STV 1.0 0.9091)) +(: cnet_isa_e6f0ef876e (IsA militiaman soldier) (STV 1.0 0.9091)) +(: cnet_isa_5efa2bfce8 (IsA milk beverage) (STV 1.0 0.9339)) +(: cnet_isa_e37ab9ff59 (IsA milk dairy_product) (STV 1.0 0.9454)) +(: cnet_isa_d148fc7ac3 (IsA milk liquid) (STV 1.0 0.9636)) +(: cnet_isa_453e8d3c5b (IsA milk liquid_body_substance) (STV 1.0 0.9091)) +(: cnet_isa_31c83cd708 (IsA milk nutriment) (STV 1.0 0.9091)) +(: cnet_isa_1705253794 (IsA milk foodstuff) (STV 1.0 0.9091)) +(: cnet_isa_ab0a4c7062 (IsA milk_bar snack_bar) (STV 1.0 0.9091)) +(: cnet_isa_b692eaac06 (IsA milk_can can) (STV 1.0 0.9091)) +(: cnet_isa_369462fad6 (IsA milk_chocolate chocolate) (STV 1.0 0.9091)) +(: cnet_isa_3b59073220 (IsA milk_float van) (STV 1.0 0.9091)) +(: cnet_isa_c7119f6b91 (IsA milk_leg thrombosis) (STV 1.0 0.9091)) +(: cnet_isa_3b0c2c57ec (IsA milk_of_magnesia purgative) (STV 1.0 0.9091)) +(: cnet_isa_ef4902eb65 (IsA milk_punch punch) (STV 1.0 0.9091)) +(: cnet_isa_662b5e3369 (IsA milk_sickness disease) (STV 1.0 0.9091)) +(: cnet_isa_b40a8edda4 (IsA milk_snake king_snake) (STV 1.0 0.9091)) +(: cnet_isa_7948a6b349 (IsA milk_thistle herb) (STV 1.0 0.9091)) +(: cnet_isa_807915a0e7 (IsA milk_vetch woody_plant) (STV 1.0 0.9091)) +(: cnet_isa_707dedbabf (IsA milk_wagon wagon) (STV 1.0 0.9091)) +(: cnet_isa_fb0b2859ea (IsA milkcap agaric) (STV 1.0 0.9091)) +(: cnet_isa_c045239eb5 (IsA milking_machine machine) (STV 1.0 0.9091)) +(: cnet_isa_c39831f6c2 (IsA milking_shorthorn dairy_cattle) (STV 1.0 0.9091)) +(: cnet_isa_1a75fe4702 (IsA milking_stool stool) (STV 1.0 0.9091)) +(: cnet_isa_09029e8f81 (IsA milkman deliveryman) (STV 1.0 0.9091)) +(: cnet_isa_33d6e098a8 (IsA milkshake drink) (STV 1.0 0.9091)) +(: cnet_isa_31f111a5d3 (IsA milkweed herb) (STV 1.0 0.9091)) +(: cnet_isa_1cfbab3ccf (IsA milkweed sow_thistle) (STV 1.0 0.9091)) +(: cnet_isa_0519bbfecf (IsA milkwort subshrub) (STV 1.0 0.9091)) +(: cnet_isa_ebb3be31f4 (IsA milky_way galaxy) (STV 1.0 0.9091)) +(: cnet_isa_91f44126f9 (IsA mill machinery) (STV 1.0 0.9091)) +(: cnet_isa_15ec792f28 (IsA mill_agent agent) (STV 1.0 0.9091)) +(: cnet_isa_5e7fb6f466 (IsA mill_girl girl) (STV 1.0 0.9091)) +(: cnet_isa_7fb9d8edc7 (IsA mill_girl mill_hand) (STV 1.0 0.9091)) +(: cnet_isa_a3cef81a03 (IsA mill_hand workman) (STV 1.0 0.9091)) +(: cnet_isa_43553d56e7 (IsA millboard pasteboard) (STV 1.0 0.9091)) +(: cnet_isa_967a38a321 (IsA milldam dam) (STV 1.0 0.9091)) +(: cnet_isa_d77f2e5ed8 (IsA millenarian optimist) (STV 1.0 0.9091)) +(: cnet_isa_ef318b64e0 (IsA millenarianism theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_75d3e30c96 (IsA millenary thousand) (STV 1.0 0.9091)) +(: cnet_isa_d2bff02443 (IsA millennium doctrine) (STV 1.0 0.9091)) +(: cnet_isa_da51bf503c (IsA millennium anniversary) (STV 1.0 0.9091)) +(: cnet_isa_99c28d3fe3 (IsA millennium time_period) (STV 1.0 0.9091)) +(: cnet_isa_522e60ff08 (IsA miller_s_thumb sculpin) (STV 1.0 0.9091)) +(: cnet_isa_2d46d437ed (IsA miller shaper) (STV 1.0 0.9091)) +(: cnet_isa_dddd12e48e (IsA miller craftsman) (STV 1.0 0.9091)) +(: cnet_isa_2b8cd28701 (IsA millerite mineral) (STV 1.0 0.9091)) +(: cnet_isa_5a860a9758 (IsA millet grain) (STV 1.0 0.9091)) +(: cnet_isa_fc0cd6edc7 (IsA millet cereal) (STV 1.0 0.9091)) +(: cnet_isa_d5d7602059 (IsA millettia tree) (STV 1.0 0.9091)) +(: cnet_isa_0ec0e4df4c (IsA milliammeter ammeter) (STV 1.0 0.9091)) +(: cnet_isa_2c4c907def (IsA milliampere current_unit) (STV 1.0 0.9091)) +(: cnet_isa_0e0b930b73 (IsA milliard billion) (STV 1.0 0.9091)) +(: cnet_isa_4252fa93e2 (IsA millibar pressure_unit) (STV 1.0 0.9091)) +(: cnet_isa_26e1b9fbd7 (IsA millicurie radioactivity_unit) (STV 1.0 0.9091)) +(: cnet_isa_14af270a9e (IsA millidegree temperature_unit) (STV 1.0 0.9091)) +(: cnet_isa_270b4e1197 (IsA milliequivalent atomic_mass) (STV 1.0 0.9091)) +(: cnet_isa_dc19312a3c (IsA millifarad capacitance_unit) (STV 1.0 0.9091)) +(: cnet_isa_614d1ff098 (IsA milligram metric_weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_bbf77149e1 (IsA millihenry inductance_unit) (STV 1.0 0.9091)) +(: cnet_isa_b0a5763bad (IsA milliliter metric_capacity_unit) (STV 1.0 0.9091)) +(: cnet_isa_21da3e04c7 (IsA millime tunisian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_e22f1d21f1 (IsA millimeter metric_linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_79031c221d (IsA milline printing_unit) (STV 1.0 0.9091)) +(: cnet_isa_bbcfe4d787 (IsA milliner maker) (STV 1.0 0.9091)) +(: cnet_isa_fb04d86406 (IsA milliner merchant) (STV 1.0 0.9091)) +(: cnet_isa_df7b6f57f9 (IsA millinery hat) (STV 1.0 0.9091)) +(: cnet_isa_8dfe63ec50 (IsA millinery shop) (STV 1.0 0.9091)) +(: cnet_isa_8b744a6b42 (IsA milling edge) (STV 1.0 0.9091)) +(: cnet_isa_a2f2190125 (IsA million large_integer) (STV 1.0 0.9091)) +(: cnet_isa_cf78871519 (IsA millionaire rich_person) (STV 1.0 0.9091)) +(: cnet_isa_4869bf3703 (IsA millionairess rich_person) (STV 1.0 0.9091)) +(: cnet_isa_6d652bb3e0 (IsA million large_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_3283d8bda7 (IsA millionth rank) (STV 1.0 0.9091)) +(: cnet_isa_f799c65db1 (IsA millipede arthropod) (STV 1.0 0.9091)) +(: cnet_isa_97c5437c86 (IsA milliradian angular_unit) (STV 1.0 0.9091)) +(: cnet_isa_8a4b2ed4f9 (IsA millirem radioactivity_unit) (STV 1.0 0.9091)) +(: cnet_isa_28d363aa58 (IsA millisecond time_unit) (STV 1.0 0.9091)) +(: cnet_isa_f8a43796e5 (IsA millivolt potential_unit) (STV 1.0 0.9091)) +(: cnet_isa_2022fe618a (IsA millivoltmeter voltmeter) (STV 1.0 0.9091)) +(: cnet_isa_fe54c889ee (IsA milliwatt power_unit) (STV 1.0 0.9091)) +(: cnet_isa_79a51acfee (IsA millpond pond) (STV 1.0 0.9091)) +(: cnet_isa_73f5d8fc98 (IsA millrace conduit) (STV 1.0 0.9091)) +(: cnet_isa_f2b9d95f7f (IsA millstone load) (STV 1.0 0.9091)) +(: cnet_isa_26a0990fdd (IsA millstone stone) (STV 1.0 0.9091)) +(: cnet_isa_a82820cd83 (IsA millwheel waterwheel) (STV 1.0 0.9091)) +(: cnet_isa_a0a63a4f5f (IsA millwork woodwork) (STV 1.0 0.9091)) +(: cnet_isa_4e70f2da91 (IsA millwright wright) (STV 1.0 0.9091)) +(: cnet_isa_f81897e5e0 (IsA milo grain_sorghum) (STV 1.0 0.9091)) +(: cnet_isa_ca7e76f458 (IsA milord nobleman) (STV 1.0 0.9091)) +(: cnet_isa_8afc0496c3 (IsA milt semen) (STV 1.0 0.9091)) +(: cnet_isa_d9817087c1 (IsA milt seafood) (STV 1.0 0.9091)) +(: cnet_isa_5b9bb2e623 (IsA miltonia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_10dc666511 (IsA milvus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_7f5bad6767 (IsA mimamsa hinduism) (STV 1.0 0.9091)) +(: cnet_isa_1453ab67be (IsA mime acting) (STV 1.0 0.9091)) +(: cnet_isa_55299230e8 (IsA mime actor) (STV 1.0 0.9091)) +(: cnet_isa_cd292708eb (IsA mimeograph duplicator) (STV 1.0 0.9091)) +(: cnet_isa_11810067a5 (IsA mimesis imitation) (STV 1.0 0.9091)) +(: cnet_isa_a4b6ac7289 (IsA mimesis quotation) (STV 1.0 0.9091)) +(: cnet_isa_1b1c918f5d (IsA mimesis disease) (STV 1.0 0.9091)) +(: cnet_isa_5c850d8f88 (IsA mimic impersonator) (STV 1.0 0.9091)) +(: cnet_isa_ba65c59f0e (IsA mimicry imitation) (STV 1.0 0.9091)) +(: cnet_isa_dbf1750d88 (IsA mimidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_0d856f58ad (IsA mimir giant) (STV 1.0 0.9091)) +(: cnet_isa_20e824bb33 (IsA mimosa mixed_drink) (STV 1.0 0.9091)) +(: cnet_isa_27a1894086 (IsA mimosa shrub) (STV 1.0 0.9091)) +(: cnet_isa_3810a09694 (IsA mimosaceae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_e8831546f3 (IsA mimosoideae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_332c7bd603 (IsA mimus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_b10b167e58 (IsA min chinese) (STV 1.0 0.9091)) +(: cnet_isa_e7a8eaecf2 (IsA minamata_disease mercury_poisoning) (STV 1.0 0.9091)) +(: cnet_isa_859579a61b (IsA minaret tower) (STV 1.0 0.9091)) +(: cnet_isa_6a252088da (IsA mince nutriment) (STV 1.0 0.9091)) +(: cnet_isa_c3bfe60579 (IsA mince_pie pie) (STV 1.0 0.9091)) +(: cnet_isa_660aa0f7ec (IsA mincemeat concoction) (STV 1.0 0.9091)) +(: cnet_isa_b134a50e72 (IsA mincer kitchen_utensil) (STV 1.0 0.9091)) +(: cnet_isa_0cb7d6e441 (IsA mind_s_eye imagination) (STV 1.0 0.9091)) +(: cnet_isa_e617ad9de0 (IsA mind cognition) (STV 1.0 0.9091)) +(: cnet_isa_b76cc6447c (IsA mind intelligence) (STV 1.0 0.9091)) +(: cnet_isa_246beafdc8 (IsA mind notice) (STV 1.0 0.9091)) +(: cnet_isa_3f22b3ca70 (IsA mind purpose) (STV 1.0 0.9091)) +(: cnet_isa_44cef34c02 (IsA mind recall) (STV 1.0 0.9091)) +(: cnet_isa_37a2618bd4 (IsA mind_game game) (STV 1.0 0.9091)) +(: cnet_isa_68c0ada419 (IsA mind_game manipulation) (STV 1.0 0.9091)) +(: cnet_isa_c1a10d9472 (IsA mind_reader magician) (STV 1.0 0.9091)) +(: cnet_isa_cdc5519027 (IsA minder escort) (STV 1.0 0.9091)) +(: cnet_isa_e06739180b (IsA mindfulness attentiveness) (STV 1.0 0.9091)) +(: cnet_isa_7ed26691c4 (IsA mine man_made_cave_in_ground) (STV 1.0 0.9091)) +(: cnet_isa_841e18193f (IsA mine weapon) (STV 1.0 0.9339)) +(: cnet_isa_81e4d95f56 (IsA mine excavation) (STV 1.0 0.9091)) +(: cnet_isa_db564058a5 (IsA mine explosive_device) (STV 1.0 0.9091)) +(: cnet_isa_bd71b20cc4 (IsA mine_detector detector) (STV 1.0 0.9091)) +(: cnet_isa_1c6bf39f0b (IsA mine_disposal disposal) (STV 1.0 0.9091)) +(: cnet_isa_87c46be7b2 (IsA mine_field tract) (STV 1.0 0.9091)) +(: cnet_isa_e35315bd26 (IsA mine_pig pig_iron) (STV 1.0 0.9091)) +(: cnet_isa_0ce483f6d9 (IsA minefield tract) (STV 1.0 0.9091)) +(: cnet_isa_9dcd617d00 (IsA minelayer ship) (STV 1.0 0.9091)) +(: cnet_isa_0b1418cf27 (IsA miner laborer) (STV 1.0 0.9091)) +(: cnet_isa_5e5cc23f29 (IsA mineral material) (STV 1.0 0.9091)) +(: cnet_isa_ab298e1b9a (IsA mineral_deficiency lack) (STV 1.0 0.9091)) +(: cnet_isa_ea456015ff (IsA mineral_extraction extraction) (STV 1.0 0.9091)) +(: cnet_isa_54e145b873 (IsA mineral_kingdom kingdom) (STV 1.0 0.9091)) +(: cnet_isa_3423657187 (IsA mineral_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_e0e67db373 (IsA mineral_resource natural_resource) (STV 1.0 0.9091)) +(: cnet_isa_7074d4ba3d (IsA mineral_water drinking_water) (STV 1.0 0.9091)) +(: cnet_isa_2e9fb0b1da (IsA mineral_wool insulator) (STV 1.0 0.9091)) +(: cnet_isa_289a16e88c (IsA mineralocorticoid corticosteroid) (STV 1.0 0.9091)) +(: cnet_isa_0195fd6d3f (IsA mineralogist scientist) (STV 1.0 0.9091)) +(: cnet_isa_3ebb559d0d (IsA mineralogy geology) (STV 1.0 0.9091)) +(: cnet_isa_8aac23b948 (IsA mineshaft excavation) (STV 1.0 0.9091)) +(: cnet_isa_b854a3a165 (IsA minesweeper ship) (STV 1.0 0.9091)) +(: cnet_isa_a558b3752f (IsA minesweeping mine_disposal) (STV 1.0 0.9091)) +(: cnet_isa_b7739c1dac (IsA ming dynasty) (STV 1.0 0.9091)) +(: cnet_isa_9f63feed90 (IsA ming_tree bonsai) (STV 1.0 0.9091)) +(: cnet_isa_e957fba612 (IsA minge female_genitalia) (STV 1.0 0.9091)) +(: cnet_isa_0e99a31fe4 (IsA minge pubic_hair) (STV 1.0 0.9091)) +(: cnet_isa_d49c73a493 (IsA mingling social_activity) (STV 1.0 0.9091)) +(: cnet_isa_4f98d57922 (IsA miniature copy) (STV 1.0 0.9091)) +(: cnet_isa_fbcc51479b (IsA miniature painting) (STV 1.0 0.9091)) +(: cnet_isa_55a4df0bc0 (IsA miniature_fan_palm lady_palm) (STV 1.0 0.9091)) +(: cnet_isa_3a9ee7020d (IsA miniature_golf golf) (STV 1.0 0.9091)) +(: cnet_isa_ecc52f2e86 (IsA miniature_pinscher pinscher) (STV 1.0 0.9091)) +(: cnet_isa_ba10162255 (IsA miniature_poodle poodle) (STV 1.0 0.9091)) +(: cnet_isa_1190f661c7 (IsA miniature_schnauzer schnauzer) (STV 1.0 0.9091)) +(: cnet_isa_410216f9db (IsA miniaturist painter) (STV 1.0 0.9091)) +(: cnet_isa_497f852c71 (IsA miniaturization shrinking) (STV 1.0 0.9091)) +(: cnet_isa_78407259b2 (IsA minibar buffet) (STV 1.0 0.9091)) +(: cnet_isa_aba92b977c (IsA minibike motorcycle) (STV 1.0 0.9091)) +(: cnet_isa_80a047ec4c (IsA minibus bus) (STV 1.0 0.9091)) +(: cnet_isa_b1e79b2424 (IsA minicab cab) (STV 1.0 0.9091)) +(: cnet_isa_f502352fcf (IsA minicab minicar) (STV 1.0 0.9091)) +(: cnet_isa_c4669c9c9f (IsA minicar car) (STV 1.0 0.9091)) +(: cnet_isa_8d49bdd74d (IsA minicomputer digital_computer) (STV 1.0 0.9091)) +(: cnet_isa_06f106917f (IsA miniconju teton_dakota) (STV 1.0 0.9091)) +(: cnet_isa_56303676da (IsA minim british_capacity_unit) (STV 1.0 0.9091)) +(: cnet_isa_6a9680cb95 (IsA minim united_state_liquid_unit) (STV 1.0 0.9091)) +(: cnet_isa_5de17a7b59 (IsA minimalism artistic_movement) (STV 1.0 0.9091)) +(: cnet_isa_6acef3e6c3 (IsA minimalist artist) (STV 1.0 0.9091)) +(: cnet_isa_983d1bf26c (IsA minimalist conservative) (STV 1.0 0.9091)) +(: cnet_isa_0e5b9e2069 (IsA minimally_invasive_coronary_bypass_surgery closed_heart_surgery) (STV 1.0 0.9091)) +(: cnet_isa_8d9315bb33 (IsA minimization decrease) (STV 1.0 0.9091)) +(: cnet_isa_7553e643e1 (IsA minimum limit) (STV 1.0 0.9091)) +(: cnet_isa_19cb6eeb3e (IsA minimum extremum) (STV 1.0 0.9091)) +(: cnet_isa_1b6999f184 (IsA minimum small_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_f88db8b009 (IsA minimum_wage wage) (STV 1.0 0.9091)) +(: cnet_isa_13afb086ae (IsA minimus digit) (STV 1.0 0.9091)) +(: cnet_isa_9446e1b3e8 (IsA mining defense) (STV 1.0 0.9091)) +(: cnet_isa_78e0664fe2 (IsA mining production) (STV 1.0 0.9091)) +(: cnet_isa_0a4a595777 (IsA mining_company company) (STV 1.0 0.9091)) +(: cnet_isa_e020c389a4 (IsA mining_engineer engineer) (STV 1.0 0.9091)) +(: cnet_isa_3d64c40536 (IsA mining_geology economic_geology) (STV 1.0 0.9091)) +(: cnet_isa_e1c78f36ce (IsA minion dependant) (STV 1.0 0.9091)) +(: cnet_isa_f1fd54d59e (IsA miniskirt skirt) (STV 1.0 0.9091)) +(: cnet_isa_af595c9fa1 (IsA minister public_service) (STV 1.0 0.9091)) +(: cnet_isa_57b70c3e3f (IsA minister diplomat) (STV 1.0 0.9091)) +(: cnet_isa_41a98630b7 (IsA minister executive) (STV 1.0 0.9091)) +(: cnet_isa_218772453b (IsA ministrant curate) (STV 1.0 0.9091)) +(: cnet_isa_7f432e31da (IsA ministry employment) (STV 1.0 0.9091)) +(: cnet_isa_43b4dd4904 (IsA ministry building) (STV 1.0 0.9091)) +(: cnet_isa_f221e081f5 (IsA ministry government_department) (STV 1.0 0.9091)) +(: cnet_isa_41882dca17 (IsA ministry priesthood) (STV 1.0 0.9091)) +(: cnet_isa_3d473c98bc (IsA minisub submersible) (STV 1.0 0.9091)) +(: cnet_isa_0e0f225244 (IsA minivan car) (STV 1.0 0.9091)) +(: cnet_isa_5c37330d0f (IsA minivan passenger_van) (STV 1.0 0.9091)) +(: cnet_isa_2909a4758a (IsA miniver trimming) (STV 1.0 0.9091)) +(: cnet_isa_22058e5927 (IsA mink musteline_mammal) (STV 1.0 0.9091)) +(: cnet_isa_eb0f3bcadc (IsA mink fur_coat) (STV 1.0 0.9091)) +(: cnet_isa_52225b793a (IsA mink fur) (STV 1.0 0.9091)) +(: cnet_isa_1b7f43acb1 (IsA minnesota state) (STV 1.0 0.9091)) +(: cnet_isa_dd2f0e2fb5 (IsA minnesota_multiphasic_personality_inventory self_report_personality_inventory) (STV 1.0 0.9091)) +(: cnet_isa_dd065550fa (IsA minniebush shrub) (STV 1.0 0.9091)) +(: cnet_isa_1b86a1f43a (IsA minnow cyprinid) (STV 1.0 0.9091)) +(: cnet_isa_1afe50d87e (IsA minoan cretan) (STV 1.0 0.9091)) +(: cnet_isa_a50c535d1f (IsA minoan_civilization culture) (STV 1.0 0.9091)) +(: cnet_isa_2cc3d54bc5 (IsA minor_axis axis) (STV 1.0 0.9091)) +(: cnet_isa_4287a2ddee (IsA minor_fast_day fast_day) (STV 1.0 0.9091)) +(: cnet_isa_ebd2c2b4d1 (IsA minor_key key) (STV 1.0 0.9091)) +(: cnet_isa_e4ede8bb92 (IsA minor_league league) (STV 1.0 0.9091)) +(: cnet_isa_665625cd79 (IsA minor_league_team team) (STV 1.0 0.9091)) +(: cnet_isa_fe14e0a806 (IsA minor_leaguer ballplayer) (STV 1.0 0.9091)) +(: cnet_isa_022cb4d016 (IsA minor_premise premise) (STV 1.0 0.9091)) +(: cnet_isa_56776d2454 (IsA minor_scale mode) (STV 1.0 0.9091)) +(: cnet_isa_ef91b8c110 (IsA minor_suit suit) (STV 1.0 0.9091)) +(: cnet_isa_bfc557b437 (IsA minor_surgery operation) (STV 1.0 0.9091)) +(: cnet_isa_0dac97e7e6 (IsA minor_term term) (STV 1.0 0.9091)) +(: cnet_isa_6067f3cbbd (IsA minor_tranquilizer tranquilizer) (STV 1.0 0.9091)) +(: cnet_isa_9254d7b589 (IsA minority number) (STV 1.0 0.9091)) +(: cnet_isa_f75fb62f4d (IsA minority social_group) (STV 1.0 0.9091)) +(: cnet_isa_2a248bbe4e (IsA minority age) (STV 1.0 0.9091)) +(: cnet_isa_f030f82606 (IsA minority legal_status) (STV 1.0 0.9091)) +(: cnet_isa_c53ca38f78 (IsA minority_leader legislator) (STV 1.0 0.9091)) +(: cnet_isa_dd3f72cba8 (IsA minotaur mythical_monster) (STV 1.0 0.9091)) +(: cnet_isa_4403f57f2b (IsA minster cathedral) (STV 1.0 0.9091)) +(: cnet_isa_f117e860c4 (IsA minstrel performer) (STV 1.0 0.9091)) +(: cnet_isa_0096652441 (IsA minstrel_show variety_show) (STV 1.0 0.9091)) +(: cnet_isa_11a04d036b (IsA minstrel_show company) (STV 1.0 0.9091)) +(: cnet_isa_80af668bd5 (IsA minstrelsy art) (STV 1.0 0.9091)) +(: cnet_isa_688026c7be (IsA minstrelsy ballad) (STV 1.0 0.9091)) +(: cnet_isa_0e981828a2 (IsA minstrelsy company) (STV 1.0 0.9091)) +(: cnet_isa_7890aebc69 (IsA mint plant) (STV 1.0 0.9091)) +(: cnet_isa_55bd425baf (IsA mint candy) (STV 1.0 0.9091)) +(: cnet_isa_1f01c1a0fb (IsA mint herb) (STV 1.0 0.9091)) +(: cnet_isa_2821926438 (IsA mint labiatae) (STV 1.0 0.9091)) +(: cnet_isa_bca935a9b4 (IsA mint_sauce condiment) (STV 1.0 0.9091)) +(: cnet_isa_243b2e708b (IsA mintage trade) (STV 1.0 0.9091)) +(: cnet_isa_3d012c22d0 (IsA mintage fee) (STV 1.0 0.9091)) +(: cnet_isa_0f9b3e9925 (IsA mintmark mark) (STV 1.0 0.9091)) +(: cnet_isa_4e720ed441 (IsA minuartia caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c234666bb7 (IsA minuend number) (STV 1.0 0.9091)) +(: cnet_isa_d20b1089f4 (IsA minuet ballroom_dancing) (STV 1.0 0.9091)) +(: cnet_isa_c61a6b7c5b (IsA minuet dance_music) (STV 1.0 0.9091)) +(: cnet_isa_8ff30b2383 (IsA minus_sign sign) (STV 1.0 0.9091)) +(: cnet_isa_ab485c9654 (IsA minuscule longhand) (STV 1.0 0.9091)) +(: cnet_isa_b9974e6d4c (IsA minute note) (STV 1.0 0.9091)) +(: cnet_isa_645f81d648 (IsA minute angular_unit) (STV 1.0 0.9091)) +(: cnet_isa_d68f578758 (IsA minute time_unit) (STV 1.0 0.9091)) +(: cnet_isa_95f4c77270 (IsA minute_book written_record) (STV 1.0 0.9091)) +(: cnet_isa_9500b99894 (IsA minute_gun gun) (STV 1.0 0.9091)) +(: cnet_isa_28a01e26bd (IsA minute_hand hand) (STV 1.0 0.9091)) +(: cnet_isa_b933e78c60 (IsA minute_steak beefsteak) (STV 1.0 0.9091)) +(: cnet_isa_b7e3e1cea9 (IsA minuteman intercontinental_ballistic_missile) (STV 1.0 0.9091)) +(: cnet_isa_4573c241a5 (IsA minuteman militiaman) (STV 1.0 0.9091)) +(: cnet_isa_2b710585e4 (IsA minuteness exactness) (STV 1.0 0.9091)) +(: cnet_isa_71c4cfaf8a (IsA minute written_record) (STV 1.0 0.9091)) +(: cnet_isa_16cf302f76 (IsA minutia detail) (STV 1.0 0.9091)) +(: cnet_isa_93a71e7b4a (IsA minyan quorum) (STV 1.0 0.9091)) +(: cnet_isa_5e07368a3e (IsA miotic_drug drug) (STV 1.0 0.9091)) +(: cnet_isa_0b723eac6b (IsA miotic_eyedrop eye_drop) (STV 1.0 0.9091)) +(: cnet_isa_66adaab36e (IsA mip unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_08e8a3c2e7 (IsA mirabilis caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_64df8a777c (IsA miracle event) (STV 1.0 0.9339)) +(: cnet_isa_e2c49912fa (IsA miracle happening) (STV 1.0 0.9091)) +(: cnet_isa_03f41599ee (IsA miracle_man person) (STV 1.0 0.9091)) +(: cnet_isa_b43fa7671a (IsA miracle_play play) (STV 1.0 0.9091)) +(: cnet_isa_bf808b9a97 (IsA miraculous_food food) (STV 1.0 0.9091)) +(: cnet_isa_f6112f9560 (IsA mirage misconception) (STV 1.0 0.9091)) +(: cnet_isa_201d8fa568 (IsA mirage optical_illusion) (STV 1.0 0.9091)) +(: cnet_isa_ba008b1ad3 (IsA miranda_rule rule) (STV 1.0 0.9091)) +(: cnet_isa_c46f2d26c4 (IsA mire bog) (STV 1.0 0.9091)) +(: cnet_isa_af0a58e0b2 (IsA mire difficulty) (STV 1.0 0.9091)) +(: cnet_isa_72ae48082e (IsA mire mud) (STV 1.0 0.9091)) +(: cnet_isa_b0bf694167 (IsA miri kamarupan) (STV 1.0 0.9091)) +(: cnet_isa_71f96c382b (IsA mirid_bug leaf_bug) (STV 1.0 0.9091)) +(: cnet_isa_875674a5d0 (IsA miridae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_90fb18bdc8 (IsA miro conifer) (STV 1.0 0.9091)) +(: cnet_isa_3bc5531fcb (IsA mirounga mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_3c9ff0c1f8 (IsA mirror surface) (STV 1.0 0.9454)) +(: cnet_isa_c7fb4f0579 (IsA mirror reflector) (STV 1.0 0.9091)) +(: cnet_isa_2dc76b1330 (IsA mirror depicting) (STV 1.0 0.9091)) +(: cnet_isa_18fe39a87f (IsA mirror_carp domestic_carp) (STV 1.0 0.9091)) +(: cnet_isa_33e60d1617 (IsA mirror_image likeness) (STV 1.0 0.9091)) +(: cnet_isa_ce607e7fa3 (IsA misalignment placement) (STV 1.0 0.9091)) +(: cnet_isa_691874ad9b (IsA misalliance marriage) (STV 1.0 0.9091)) +(: cnet_isa_02e780e120 (IsA misanthrope grouch) (STV 1.0 0.9091)) +(: cnet_isa_48505e8781 (IsA misanthropy unfriendliness) (STV 1.0 0.9091)) +(: cnet_isa_6ff0391263 (IsA misanthropy hate) (STV 1.0 0.9091)) +(: cnet_isa_8ddcf62bea (IsA misapplication application) (STV 1.0 0.9091)) +(: cnet_isa_afaa2f462c (IsA misappropriation borrowing) (STV 1.0 0.9091)) +(: cnet_isa_a069fdf9ce (IsA misbehavior wrongdoing) (STV 1.0 0.9091)) +(: cnet_isa_21b215762d (IsA miscalculation mistake) (STV 1.0 0.9091)) +(: cnet_isa_9a1ede9741 (IsA miscarriage failure) (STV 1.0 0.9091)) +(: cnet_isa_ac66d48f2c (IsA miscegenation reproduction) (STV 1.0 0.9091)) +(: cnet_isa_b3b0138a3b (IsA misch_metal pyrophoric_alloy) (STV 1.0 0.9091)) +(: cnet_isa_dd1c132cfe (IsA mischief misbehavior) (STV 1.0 0.9091)) +(: cnet_isa_2b3a104337 (IsA misconception idea) (STV 1.0 0.9091)) +(: cnet_isa_345eed225f (IsA misconduct management) (STV 1.0 0.9091)) +(: cnet_isa_e00c5c988d (IsA misconstrual misinterpretation) (STV 1.0 0.9091)) +(: cnet_isa_bf0ba2c96e (IsA misconstruction constituent) (STV 1.0 0.9091)) +(: cnet_isa_85f61c9de8 (IsA miscount count) (STV 1.0 0.9091)) +(: cnet_isa_3050d3aac3 (IsA miscue stroke) (STV 1.0 0.9091)) +(: cnet_isa_538c6bd239 (IsA misdeal deal) (STV 1.0 0.9091)) +(: cnet_isa_a2f9f92fdf (IsA misdemeanor crime) (STV 1.0 0.9091)) +(: cnet_isa_89a8203905 (IsA misdirection commission) (STV 1.0 0.9091)) +(: cnet_isa_641edf5c13 (IsA misdirection direction) (STV 1.0 0.9091)) +(: cnet_isa_b75fbae85a (IsA mise_en_scene stage) (STV 1.0 0.9091)) +(: cnet_isa_9b999f23c9 (IsA miser hoarder) (STV 1.0 0.9091)) +(: cnet_isa_9141fb97ab (IsA miserliness meanness) (STV 1.0 0.9091)) +(: cnet_isa_5191bcf665 (IsA misery sadness) (STV 1.0 0.9091)) +(: cnet_isa_c164f23199 (IsA misery ill_being) (STV 1.0 0.9091)) +(: cnet_isa_d4fa7cc8c8 (IsA misfeasance wrongdoing) (STV 1.0 0.9091)) +(: cnet_isa_1f357d0631 (IsA misfire breakdown) (STV 1.0 0.9091)) +(: cnet_isa_d76a4f9894 (IsA misfit person) (STV 1.0 0.9091)) +(: cnet_isa_357a0f47e5 (IsA misfortune trouble) (STV 1.0 0.9091)) +(: cnet_isa_0896149324 (IsA misfortune fortune) (STV 1.0 0.9091)) +(: cnet_isa_41003b2200 (IsA misgiving doubt) (STV 1.0 0.9091)) +(: cnet_isa_c4b61fe4f3 (IsA misgovernment government) (STV 1.0 0.9091)) +(: cnet_isa_95148d71a4 (IsA mishap misfortune) (STV 1.0 0.9091)) +(: cnet_isa_f204d27dce (IsA mishpocha kin) (STV 1.0 0.9091)) +(: cnet_isa_ee9279da87 (IsA misinformation information) (STV 1.0 0.9091)) +(: cnet_isa_7389e96e15 (IsA misinterpretation interpretation) (STV 1.0 0.9091)) +(: cnet_isa_c44d55f2d7 (IsA misleader deceiver) (STV 1.0 0.9091)) +(: cnet_isa_529b18c4e0 (IsA misleader leader) (STV 1.0 0.9091)) +(: cnet_isa_2b7dd23a4b (IsA mismanagement management) (STV 1.0 0.9091)) +(: cnet_isa_410432ac4e (IsA mismatch counterpart) (STV 1.0 0.9091)) +(: cnet_isa_528cdfe4b5 (IsA misnomer name) (STV 1.0 0.9091)) +(: cnet_isa_a8a16a717f (IsA miso spread) (STV 1.0 0.9091)) +(: cnet_isa_4c578b9a3c (IsA misocainea misoneism) (STV 1.0 0.9091)) +(: cnet_isa_3d6bd8f96c (IsA misogamist person) (STV 1.0 0.9091)) +(: cnet_isa_3098252b3d (IsA misogamy hate) (STV 1.0 0.9091)) +(: cnet_isa_aa584fcd8a (IsA misogynist misanthrope) (STV 1.0 0.9091)) +(: cnet_isa_15eea32aab (IsA misogyny hate) (STV 1.0 0.9091)) +(: cnet_isa_dd50a645f0 (IsA misology hate) (STV 1.0 0.9091)) +(: cnet_isa_0303179fbc (IsA misoneism hate) (STV 1.0 0.9091)) +(: cnet_isa_c6232f8450 (IsA misopedia hate) (STV 1.0 0.9091)) +(: cnet_isa_b5d889c9ec (IsA misprint error) (STV 1.0 0.9091)) +(: cnet_isa_b378803ccd (IsA mispronunciation pronunciation) (STV 1.0 0.9091)) +(: cnet_isa_1bc5b1b4a7 (IsA misquotation quotation) (STV 1.0 0.9091)) +(: cnet_isa_4aa5430248 (IsA misreading misinterpretation) (STV 1.0 0.9091)) +(: cnet_isa_6457b661d8 (IsA misrepresentation falsehood) (STV 1.0 0.9091)) +(: cnet_isa_1687ae3956 (IsA miss title) (STV 1.0 0.9091)) +(: cnet_isa_c008b4fdf6 (IsA miss failure) (STV 1.0 0.9091)) +(: cnet_isa_ff5b5850a3 (IsA missal prayer_book) (STV 1.0 0.9091)) +(: cnet_isa_6b4085d748 (IsA missel_thrush thrush) (STV 1.0 0.9091)) +(: cnet_isa_8fd6b2f785 (IsA missile rocket) (STV 1.0 0.9091)) +(: cnet_isa_ba06bb4f19 (IsA missile weapon) (STV 1.0 0.9091)) +(: cnet_isa_0b6917a2f4 (IsA missile_defense_system naval_weaponry) (STV 1.0 0.9091)) +(: cnet_isa_313d2c78ce (IsA missing_link primitive) (STV 1.0 0.9091)) +(: cnet_isa_91c99eec80 (IsA mission assignment) (STV 1.0 0.9091)) +(: cnet_isa_df9560f905 (IsA mission work) (STV 1.0 0.9091)) +(: cnet_isa_e4c9cae289 (IsA mission nongovernmental_organization) (STV 1.0 0.9091)) +(: cnet_isa_a87c11a82a (IsA mission operation) (STV 1.0 0.9091)) +(: cnet_isa_4c4cb6b2a9 (IsA mission_bell fritillary) (STV 1.0 0.9091)) +(: cnet_isa_7cf9be94ef (IsA mission_impossible mission) (STV 1.0 0.9091)) +(: cnet_isa_7e417122ec (IsA missionary religionist) (STV 1.0 0.9091)) +(: cnet_isa_4b86280b16 (IsA missionary teacher) (STV 1.0 0.9091)) +(: cnet_isa_ff5cc22429 (IsA missionary_position position) (STV 1.0 0.9091)) +(: cnet_isa_04bc662070 (IsA mississippi state) (STV 1.0 0.9091)) +(: cnet_isa_330df0458c (IsA mississippian american) (STV 1.0 0.9091)) +(: cnet_isa_8d01ac10de (IsA missouri chiwere) (STV 1.0 0.9091)) +(: cnet_isa_fea7ab3325 (IsA missouri siouan) (STV 1.0 0.9091)) +(: cnet_isa_922d726a97 (IsA missouri_goldenrod goldenrod) (STV 1.0 0.9091)) +(: cnet_isa_57dcd50845 (IsA missouri_primrose evening_primrose) (STV 1.0 0.9091)) +(: cnet_isa_f4d6e05555 (IsA missourian american) (STV 1.0 0.9091)) +(: cnet_isa_522c226032 (IsA misspelling spelling) (STV 1.0 0.9091)) +(: cnet_isa_f9a3f28b77 (IsA misstatement statement) (STV 1.0 0.9091)) +(: cnet_isa_660bf1f2f7 (IsA missus wife) (STV 1.0 0.9091)) +(: cnet_isa_41da6291bd (IsA mist fog) (STV 1.0 0.9091)) +(: cnet_isa_1370c00eac (IsA mistake nonaccomplishment) (STV 1.0 0.9091)) +(: cnet_isa_63b7dbf387 (IsA mistake misconception) (STV 1.0 0.9091)) +(: cnet_isa_ec1bcebfda (IsA mistake not_correctable) (STV 1.0 0.9339)) +(: cnet_isa_efb072bbac (IsA mister title) (STV 1.0 0.9091)) +(: cnet_isa_61d000c916 (IsA mistflower flower) (STV 1.0 0.9091)) +(: cnet_isa_ec3a561aec (IsA mistletoe parasitic_plant) (STV 1.0 0.9091)) +(: cnet_isa_72b0b05e59 (IsA mistletoe_cactus cactus) (STV 1.0 0.9091)) +(: cnet_isa_d8011290cb (IsA mistletoe_fig fig_tree) (STV 1.0 0.9091)) +(: cnet_isa_b3a0e5b7f9 (IsA mistral north_wind) (STV 1.0 0.9091)) +(: cnet_isa_efc4c4e4c7 (IsA mistranslation translation) (STV 1.0 0.9091)) +(: cnet_isa_dd48b82279 (IsA mistreatment practice) (STV 1.0 0.9091)) +(: cnet_isa_3d17fe80db (IsA mistress employer) (STV 1.0 0.9091)) +(: cnet_isa_6d9e0fc022 (IsA mistress lover) (STV 1.0 0.9091)) +(: cnet_isa_4cd1238395 (IsA mistress woman) (STV 1.0 0.9091)) +(: cnet_isa_11b5b41841 (IsA mistrial trial) (STV 1.0 0.9091)) +(: cnet_isa_31b1294f61 (IsA misuse use) (STV 1.0 0.9091)) +(: cnet_isa_fa06040a26 (IsA mit college) (STV 1.0 0.9339)) +(: cnet_isa_c4e2be3062 (IsA mit in_massachusett) (STV 1.0 0.9339)) +(: cnet_isa_3d3ecbf6a9 (IsA mit on_earth) (STV 1.0 0.9454)) +(: cnet_isa_11f39a04fa (IsA mit university) (STV 1.0 0.9524)) +(: cnet_isa_ac6f8655c8 (IsA mitchella asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_35a2115a5f (IsA mite acarine) (STV 1.0 0.9091)) +(: cnet_isa_ba69afeb0a (IsA mitella rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4c3536ff7f (IsA miter headdress) (STV 1.0 0.9091)) +(: cnet_isa_037a3c14ef (IsA miter surface) (STV 1.0 0.9091)) +(: cnet_isa_07bb5f88e6 (IsA miter_box hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_470911d01c (IsA miter_joint joint) (STV 1.0 0.9091)) +(: cnet_isa_4d466022e7 (IsA miterwort herb) (STV 1.0 0.9091)) +(: cnet_isa_21f3e4ed73 (IsA mithraism religion) (STV 1.0 0.9091)) +(: cnet_isa_684b91dca0 (IsA mithraist disciple) (STV 1.0 0.9091)) +(: cnet_isa_42a263af9d (IsA mitigating_circumstance circumstance) (STV 1.0 0.9091)) +(: cnet_isa_38df9b58b6 (IsA mitochondrion organelle) (STV 1.0 0.9091)) +(: cnet_isa_efd90586cb (IsA mitogen agent) (STV 1.0 0.9091)) +(: cnet_isa_790b79108e (IsA mitosis cell_division) (STV 1.0 0.9091)) +(: cnet_isa_3ba17273b2 (IsA mitral_stenosis stenosis) (STV 1.0 0.9091)) +(: cnet_isa_f5f246f92f (IsA mitral_stenosis valvular_heart_disease) (STV 1.0 0.9091)) +(: cnet_isa_fb79151733 (IsA mitral_valve atrioventricular_valve) (STV 1.0 0.9091)) +(: cnet_isa_3765e888d1 (IsA mitral_valve_prolapse valvular_heart_disease) (STV 1.0 0.9091)) +(: cnet_isa_fe8719987c (IsA mitrula_elegan discomycete) (STV 1.0 0.9091)) +(: cnet_isa_c2bffabaa4 (IsA mittelschmerz pain) (STV 1.0 0.9091)) +(: cnet_isa_56b247e608 (IsA mitten glove) (STV 1.0 0.9091)) +(: cnet_isa_6aa0246114 (IsA mitzvah act) (STV 1.0 0.9091)) +(: cnet_isa_154d1e7016 (IsA mitzvah teaching) (STV 1.0 0.9091)) +(: cnet_isa_8d9ec0d973 (IsA miwok penutian) (STV 1.0 0.9091)) +(: cnet_isa_571148e58c (IsA mix combination) (STV 1.0 0.9091)) +(: cnet_isa_e7189e9084 (IsA mix combining) (STV 1.0 0.9091)) +(: cnet_isa_904d84875e (IsA mix concoction) (STV 1.0 0.9091)) +(: cnet_isa_74b714e52d (IsA mixed_blood person) (STV 1.0 0.9091)) +(: cnet_isa_9e17f0c6d3 (IsA mixed_bud bud) (STV 1.0 0.9091)) +(: cnet_isa_ffb95fd024 (IsA mixed_drink alcohol) (STV 1.0 0.9091)) +(: cnet_isa_f2df0a4ce8 (IsA mixed_economy economy) (STV 1.0 0.9091)) +(: cnet_isa_057432941c (IsA mixed_farming farming) (STV 1.0 0.9091)) +(: cnet_isa_e37acb3c3b (IsA mixed_marriage marriage) (STV 1.0 0.9091)) +(: cnet_isa_228868b3ad (IsA mixed_metaphor metaphor) (STV 1.0 0.9091)) +(: cnet_isa_b412cc4a0d (IsA mixed_nuisance nuisance) (STV 1.0 0.9091)) +(: cnet_isa_4016635d7b (IsA mixer electronic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_fa8344e103 (IsA mixer kitchen_utensil) (STV 1.0 0.9091)) +(: cnet_isa_b80e96634e (IsA mixer beverage) (STV 1.0 0.9091)) +(: cnet_isa_438b429727 (IsA mixing_bowl bowl) (STV 1.0 0.9091)) +(: cnet_isa_ba7aa338aa (IsA mixing_faucet faucet) (STV 1.0 0.9091)) +(: cnet_isa_475ec0daff (IsA mixology skill) (STV 1.0 0.9091)) +(: cnet_isa_1f96b73299 (IsA mixture substance) (STV 1.0 0.9091)) +(: cnet_isa_cf25da4b58 (IsA mizzen fore_and_aft_sail) (STV 1.0 0.9091)) +(: cnet_isa_945cf6a1da (IsA mizzenmast mast) (STV 1.0 0.9091)) +(: cnet_isa_cc311af2d5 (IsA mnemonic device) (STV 1.0 0.9091)) +(: cnet_isa_caa7a6c5d5 (IsA mnemonic method) (STV 1.0 0.9091)) +(: cnet_isa_93a66b8c4a (IsA mnemonist expert) (STV 1.0 0.9091)) +(: cnet_isa_9f40f4225a (IsA mniaceae moss_family) (STV 1.0 0.9091)) +(: cnet_isa_7c4090ca27 (IsA mnium moss_genus) (STV 1.0 0.9091)) +(: cnet_isa_04c8d182af (IsA moa ratite) (STV 1.0 0.9091)) +(: cnet_isa_69d4c640cd (IsA moat trench) (STV 1.0 0.9091)) +(: cnet_isa_049cd172e6 (IsA mob crowd) (STV 1.0 0.9091)) +(: cnet_isa_3330befef7 (IsA mobcap cap) (STV 1.0 0.9091)) +(: cnet_isa_23cacbf414 (IsA mobile sculpture) (STV 1.0 0.9091)) +(: cnet_isa_12b276ab67 (IsA mobile_home housing) (STV 1.0 0.9091)) +(: cnet_isa_ac32b8e851 (IsA mobile_home trailer) (STV 1.0 0.9091)) +(: cnet_isa_aa33c3ec03 (IsA mobility quality) (STV 1.0 0.9091)) +(: cnet_isa_5ae68f9e2d (IsA mobilization assembly) (STV 1.0 0.9091)) +(: cnet_isa_1335c747ae (IsA mobilization social_control) (STV 1.0 0.9091)) +(: cnet_isa_ff31b2dddb (IsA mobius_strip surface) (STV 1.0 0.9091)) +(: cnet_isa_a2472b2f48 (IsA mobula fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_b01ab03e41 (IsA mobulidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_3bcb4a7026 (IsA mocassin shoe) (STV 1.0 0.9091)) +(: cnet_isa_fd782fb57d (IsA moccasin_flower lady_s_slipper) (STV 1.0 0.9091)) +(: cnet_isa_e3f33bebed (IsA mocha brown) (STV 1.0 0.9091)) +(: cnet_isa_db449f20a9 (IsA mocha coffee) (STV 1.0 0.9091)) +(: cnet_isa_6a0504b00e (IsA mocha flavorer) (STV 1.0 0.9091)) +(: cnet_isa_fb9132b48f (IsA mocha leather) (STV 1.0 0.9091)) +(: cnet_isa_4258b475b3 (IsA mock derision) (STV 1.0 0.9091)) +(: cnet_isa_8f265f5cfa (IsA mock_heroic caricature) (STV 1.0 0.9091)) +(: cnet_isa_11e65012c6 (IsA mock_orange philadelphus) (STV 1.0 0.9091)) +(: cnet_isa_4bf174cb88 (IsA mock_privet shrub) (STV 1.0 0.9091)) +(: cnet_isa_543cb8eda2 (IsA mock_turtle_soup soup) (STV 1.0 0.9091)) +(: cnet_isa_6c527caf3f (IsA mock_up model) (STV 1.0 0.9091)) +(: cnet_isa_2a3a090afa (IsA mockernut hickory) (STV 1.0 0.9091)) +(: cnet_isa_1d4280585f (IsA mockingbird oscine) (STV 1.0 0.9091)) +(: cnet_isa_81a830d198 (IsA mod adolescent) (STV 1.0 0.9091)) +(: cnet_isa_e133e52480 (IsA mod_con appliance) (STV 1.0 0.9091)) +(: cnet_isa_37cd06606f (IsA modal_auxiliary_verb auxiliary_verb) (STV 1.0 0.9091)) +(: cnet_isa_7475e51a8a (IsA modal_logic logic) (STV 1.0 0.9091)) +(: cnet_isa_52d2900758 (IsA modal_logic symbolic_logic) (STV 1.0 0.9091)) +(: cnet_isa_dde41e9528 (IsA modal_scheme_bf modal_operator) (STV 1.0 0.9091)) +(: cnet_isa_8454065a8d (IsA modality treatment) (STV 1.0 0.9091)) +(: cnet_isa_de9f5831cb (IsA modality sense) (STV 1.0 0.9091)) +(: cnet_isa_5478c5650b (IsA modality logical_relation) (STV 1.0 0.9091)) +(: cnet_isa_0872e0d20c (IsA mode diatonic_scale) (STV 1.0 0.9091)) +(: cnet_isa_72cb6dc3f8 (IsA mode condition) (STV 1.0 0.9091)) +(: cnet_isa_54131f7129 (IsA mode average) (STV 1.0 0.9091)) +(: cnet_isa_339d4916a2 (IsA model representation) (STV 1.0 0.9091)) +(: cnet_isa_7b7a91b27c (IsA model hypothesis) (STV 1.0 0.9091)) +(: cnet_isa_51c296c0fa (IsA model kind) (STV 1.0 0.9091)) +(: cnet_isa_c5501e899f (IsA model assistant) (STV 1.0 0.9091)) +(: cnet_isa_36fa7caab3 (IsA model leader) (STV 1.0 0.9091)) +(: cnet_isa_e958908757 (IsA modeler creator) (STV 1.0 0.9091)) +(: cnet_isa_cb43e580e7 (IsA modeling sculpture) (STV 1.0 0.9091)) +(: cnet_isa_eba01edd5d (IsA modem electronic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_e244f5e407 (IsA moderate_breeze breeze) (STV 1.0 0.9091)) +(: cnet_isa_b9f6f00fa3 (IsA moderate_gale gale) (STV 1.0 0.9091)) +(: cnet_isa_25404be960 (IsA moderation decrease) (STV 1.0 0.9091)) +(: cnet_isa_5b33b0f232 (IsA moderation degree) (STV 1.0 0.9091)) +(: cnet_isa_28f2ceb98f (IsA moderationism policy) (STV 1.0 0.9091)) +(: cnet_isa_c8bce35e5b (IsA moderationist drinker) (STV 1.0 0.9091)) +(: cnet_isa_7ccc57bea4 (IsA moderator mediator) (STV 1.0 0.9091)) +(: cnet_isa_3797d596c6 (IsA moderator presiding_officer) (STV 1.0 0.9091)) +(: cnet_isa_135579d163 (IsA moderator inhibitor) (STV 1.0 0.9091)) +(: cnet_isa_91c5a313e1 (IsA moderatorship position) (STV 1.0 0.9091)) +(: cnet_isa_c20efa6ab8 (IsA modern proportional_font) (STV 1.0 0.9091)) +(: cnet_isa_a1659b5a1a (IsA modern person) (STV 1.0 0.9091)) +(: cnet_isa_fb1a1f6b65 (IsA modern_ballet ballet) (STV 1.0 0.9091)) +(: cnet_isa_eb6eba93a9 (IsA modern_dance stage_dancing) (STV 1.0 0.9091)) +(: cnet_isa_da7ff86b04 (IsA modern_english english) (STV 1.0 0.9091)) +(: cnet_isa_5c7b171ee9 (IsA modern_era era) (STV 1.0 0.9091)) +(: cnet_isa_5fdc338fc9 (IsA modern_greek greek) (STV 1.0 0.9091)) +(: cnet_isa_b650c6e213 (IsA modern_hebrew hebrew) (STV 1.0 0.9091)) +(: cnet_isa_21dedaf9e9 (IsA modern_jazz jazz) (STV 1.0 0.9091)) +(: cnet_isa_49311de31c (IsA modernism practice) (STV 1.0 0.9091)) +(: cnet_isa_7a52e2c804 (IsA modernism genre) (STV 1.0 0.9091)) +(: cnet_isa_96caee21d5 (IsA modernist artist) (STV 1.0 0.9091)) +(: cnet_isa_e141637961 (IsA modernity currentness) (STV 1.0 0.9091)) +(: cnet_isa_f4d599a9a9 (IsA modernization improvement) (STV 1.0 0.9091)) +(: cnet_isa_6192beefe9 (IsA modernization adaptation) (STV 1.0 0.9091)) +(: cnet_isa_10a148d109 (IsA modesty decency) (STV 1.0 0.9091)) +(: cnet_isa_7fad245d25 (IsA modesty propriety) (STV 1.0 0.9091)) +(: cnet_isa_c56386d98e (IsA modicum small_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_3e1c5cd5a1 (IsA modification copy) (STV 1.0 0.9091)) +(: cnet_isa_91c0d973dd (IsA modification grammatical_relation) (STV 1.0 0.9091)) +(: cnet_isa_5f79f1ad21 (IsA modified_american_plan american_plan) (STV 1.0 0.9091)) +(: cnet_isa_4ffcea4f1e (IsA modified_radical_mastectomy mastectomy) (STV 1.0 0.9091)) +(: cnet_isa_e995d4ab8a (IsA modifier gene) (STV 1.0 0.9091)) +(: cnet_isa_d1ddf79c2c (IsA modifier content_word) (STV 1.0 0.9091)) +(: cnet_isa_f38e3eb711 (IsA modifier moderator) (STV 1.0 0.9091)) +(: cnet_isa_54bd502c96 (IsA modillion bracket) (STV 1.0 0.9091)) +(: cnet_isa_93beb61ccf (IsA modiolus bone) (STV 1.0 0.9091)) +(: cnet_isa_eac03fd698 (IsA mod youth_subculture) (STV 1.0 0.9091)) +(: cnet_isa_33a21e8bec (IsA modulation revision) (STV 1.0 0.9091)) +(: cnet_isa_41f4e9a27e (IsA modulation manner_of_speaking) (STV 1.0 0.9091)) +(: cnet_isa_1271a2e902 (IsA modulation transmission) (STV 1.0 0.9091)) +(: cnet_isa_c3821e7692 (IsA module compartment) (STV 1.0 0.9091)) +(: cnet_isa_7691561828 (IsA module component) (STV 1.0 0.9091)) +(: cnet_isa_2c0b779174 (IsA module computer_circuit) (STV 1.0 0.9091)) +(: cnet_isa_12f3769b4e (IsA modulus coefficient) (STV 1.0 0.9091)) +(: cnet_isa_483cdf9df7 (IsA modulus absolute_value) (STV 1.0 0.9091)) +(: cnet_isa_03c8bac003 (IsA modulus integer) (STV 1.0 0.9091)) +(: cnet_isa_b82ddcc27c (IsA modulus_of_rigidity coefficient_of_elasticity) (STV 1.0 0.9091)) +(: cnet_isa_0e49436a25 (IsA modus_vivendi accommodation) (STV 1.0 0.9091)) +(: cnet_isa_b181406fa1 (IsA moehringia caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e65d0ffd32 (IsA moeller_s_glossitis glossitis) (STV 1.0 0.9091)) +(: cnet_isa_4acb4ced47 (IsA moghul ruler) (STV 1.0 0.9091)) +(: cnet_isa_5059e9bf93 (IsA mogul bulge) (STV 1.0 0.9091)) +(: cnet_isa_97a00d2715 (IsA mogul_empire empire) (STV 1.0 0.9091)) +(: cnet_isa_31b6622b33 (IsA mohair fabric) (STV 1.0 0.9091)) +(: cnet_isa_ef7616e4ea (IsA mohammedan follower) (STV 1.0 0.9091)) +(: cnet_isa_9e107e40f1 (IsA mohave yuman) (STV 1.0 0.9091)) +(: cnet_isa_912bdbf8f2 (IsA mohave hoka) (STV 1.0 0.9091)) +(: cnet_isa_7d3a9544e4 (IsA mohawk iroquoian) (STV 1.0 0.9091)) +(: cnet_isa_53e501b379 (IsA mohawk iroquois) (STV 1.0 0.9091)) +(: cnet_isa_c1ec1509cc (IsA mohawk_haircut haircut) (STV 1.0 0.9091)) +(: cnet_isa_035ebaf6e3 (IsA mohican algonquian) (STV 1.0 0.9091)) +(: cnet_isa_c7be8e97c0 (IsA mohria fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_99703d3f3f (IsA moh_scale scale) (STV 1.0 0.9091)) +(: cnet_isa_e52c0a70a5 (IsA moiety social_group) (STV 1.0 0.9091)) +(: cnet_isa_e99037813b (IsA moiety one_half) (STV 1.0 0.9091)) +(: cnet_isa_213d603260 (IsA moirae greek_deity) (STV 1.0 0.9091)) +(: cnet_isa_be574c07c2 (IsA moire fabric) (STV 1.0 0.9091)) +(: cnet_isa_28a3da56a4 (IsA moistening wetting) (STV 1.0 0.9091)) +(: cnet_isa_3d42abc07c (IsA moisture wetness) (STV 1.0 0.9091)) +(: cnet_isa_d0320fc6d7 (IsA mojarra percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_bca804287f (IsA mojave_aster wildflower) (STV 1.0 0.9091)) +(: cnet_isa_bdf638e6d3 (IsA mojave_rattlesnake rattlesnake) (STV 1.0 0.9091)) +(: cnet_isa_47f45432e0 (IsA mojo magic) (STV 1.0 0.9091)) +(: cnet_isa_dc3d19ea28 (IsA moke domestic_ass) (STV 1.0 0.9091)) +(: cnet_isa_c9f79ebb8b (IsA moksa cycle_of_rebirth) (STV 1.0 0.9091)) +(: cnet_isa_6bc15015cd (IsA mokulu east_chadic) (STV 1.0 0.9091)) +(: cnet_isa_d4bed6295f (IsA molality concentration) (STV 1.0 0.9091)) +(: cnet_isa_96bcf2408f (IsA molar tooth) (STV 1.0 0.9091)) +(: cnet_isa_9c4bec19ed (IsA molarity concentration) (STV 1.0 0.9091)) +(: cnet_isa_66f103b7c3 (IsA molass syrup) (STV 1.0 0.9091)) +(: cnet_isa_cecd756514 (IsA molass_cookie cookie) (STV 1.0 0.9091)) +(: cnet_isa_45fd8db96d (IsA molass_kiss kiss) (STV 1.0 0.9091)) +(: cnet_isa_037e667d7c (IsA molass_taffy taffy) (STV 1.0 0.9091)) +(: cnet_isa_879f9c9957 (IsA mold container) (STV 1.0 0.9091)) +(: cnet_isa_b35877dd83 (IsA mold sculpture) (STV 1.0 0.9091)) +(: cnet_isa_912776bf57 (IsA mold fungus) (STV 1.0 0.9091)) +(: cnet_isa_e0c4b48467 (IsA mold soil) (STV 1.0 0.9091)) +(: cnet_isa_802597f8c2 (IsA moldboard wedge) (STV 1.0 0.9091)) +(: cnet_isa_bedefb10c8 (IsA moldboard_plow plow) (STV 1.0 0.9091)) +(: cnet_isa_9dacdfa579 (IsA molded_salad salad) (STV 1.0 0.9091)) +(: cnet_isa_9c2e0e755e (IsA molding creating_from_raw_material) (STV 1.0 0.9091)) +(: cnet_isa_287f1a678f (IsA molding decoration) (STV 1.0 0.9091)) +(: cnet_isa_fb25d206dc (IsA molding edge) (STV 1.0 0.9091)) +(: cnet_isa_258329393f (IsA moldovan_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_2814eb9117 (IsA mole insectivore) (STV 1.0 0.9091)) +(: cnet_isa_213be0fcaa (IsA mole blemish) (STV 1.0 0.9091)) +(: cnet_isa_058bf4a692 (IsA mole sauce) (STV 1.0 0.9091)) +(: cnet_isa_a74c82a1b6 (IsA mole_cricket cricket) (STV 1.0 0.9091)) +(: cnet_isa_e95354a0b4 (IsA mole_rat rodent) (STV 1.0 0.9091)) +(: cnet_isa_f0d0d2c74f (IsA mole_salamander ambystomid) (STV 1.0 0.9091)) +(: cnet_isa_1a597a9878 (IsA molecular_biologist biologist) (STV 1.0 0.9091)) +(: cnet_isa_6ea3cfdd0a (IsA molecular_biology biology) (STV 1.0 0.9091)) +(: cnet_isa_e99b4a776c (IsA molecular_formula formula) (STV 1.0 0.9091)) +(: cnet_isa_e86405e263 (IsA molecular_genetic genetic) (STV 1.0 0.9091)) +(: cnet_isa_c8a4070e4b (IsA molecular_weight mass) (STV 1.0 0.9091)) +(: cnet_isa_7c20fc5bb6 (IsA molecule collection_of_atom) (STV 1.0 0.9091)) +(: cnet_isa_c4db548e67 (IsA molecule unit) (STV 1.0 0.9091)) +(: cnet_isa_cd6f085977 (IsA molehill knoll) (STV 1.0 0.9091)) +(: cnet_isa_8b856aa660 (IsA moleskin fabric) (STV 1.0 0.9091)) +(: cnet_isa_983a1c347f (IsA molestation sexual_assault) (STV 1.0 0.9091)) +(: cnet_isa_af482804eb (IsA molester wrongdoer) (STV 1.0 0.9091)) +(: cnet_isa_2894121c13 (IsA molidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_4e5cc28caa (IsA moll criminal) (STV 1.0 0.9091)) +(: cnet_isa_79c2631f02 (IsA mollah moslem) (STV 1.0 0.9091)) +(: cnet_isa_857b8c3934 (IsA mollie topminnow) (STV 1.0 0.9091)) +(: cnet_isa_642d6c9ac1 (IsA mollienesia fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_7267ee0ce4 (IsA mollification peaceableness) (STV 1.0 0.9091)) +(: cnet_isa_c561b75475 (IsA molluga caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_457b2b9e04 (IsA mollusca phylum) (STV 1.0 0.9091)) +(: cnet_isa_c9ccd139e2 (IsA molluscum skin_disease) (STV 1.0 0.9091)) +(: cnet_isa_80d96f7a56 (IsA molluscum_contagiosum molluscum) (STV 1.0 0.9091)) +(: cnet_isa_8a9e627003 (IsA mollusk invertebrate) (STV 1.0 0.9091)) +(: cnet_isa_f8e6d8a10c (IsA mollusk_family family) (STV 1.0 0.9091)) +(: cnet_isa_0fefc88d80 (IsA mollusk_genus genus) (STV 1.0 0.9091)) +(: cnet_isa_16b4ffec2a (IsA molly_miller blenny) (STV 1.0 0.9091)) +(: cnet_isa_65def50b97 (IsA mollycoddle darling) (STV 1.0 0.9091)) +(: cnet_isa_9fdda36c8c (IsA moloch agamid) (STV 1.0 0.9091)) +(: cnet_isa_0d08e9c95d (IsA moloch power) (STV 1.0 0.9091)) +(: cnet_isa_d03948e184 (IsA molossidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_5f39e345e7 (IsA molothrus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_f7c2deda53 (IsA molotov_cocktail improvised_explosive_device) (STV 1.0 0.9091)) +(: cnet_isa_a1198163d4 (IsA molt shedding) (STV 1.0 0.9091)) +(: cnet_isa_3ca99b1075 (IsA molter animal) (STV 1.0 0.9091)) +(: cnet_isa_1d15941827 (IsA molucca_balm herb) (STV 1.0 0.9091)) +(: cnet_isa_a1cca41d59 (IsA molucella asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ffe2d9b0bc (IsA molva fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_0527df9643 (IsA molybdenite mineral) (STV 1.0 0.9091)) +(: cnet_isa_12a60a7736 (IsA molybdenum metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_0f8b1c71c1 (IsA molybdenum_steel alloy_steel) (STV 1.0 0.9091)) +(: cnet_isa_ca9655db43 (IsA mom parent) (STV 1.0 0.9091)) +(: cnet_isa_a16afb83ec (IsA mombin edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_894157777e (IsA mombin fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_21386d7e66 (IsA moment force) (STV 1.0 0.9091)) +(: cnet_isa_0dc93b6dfc (IsA moment statistic) (STV 1.0 0.9091)) +(: cnet_isa_095432eede (IsA moment point) (STV 1.0 0.9091)) +(: cnet_isa_71eb9d0434 (IsA moment time) (STV 1.0 0.9091)) +(: cnet_isa_582c50b331 (IsA moment_magnitude_scale scale) (STV 1.0 0.9091)) +(: cnet_isa_bd6145aea1 (IsA moment_of_couple moment) (STV 1.0 0.9091)) +(: cnet_isa_d12099a7fe (IsA moment_of_inertia inertia) (STV 1.0 0.9091)) +(: cnet_isa_9ae35782ab (IsA moment_of_inertia moment) (STV 1.0 0.9091)) +(: cnet_isa_fef5b3a90a (IsA moment_of_truth moment) (STV 1.0 0.9091)) +(: cnet_isa_760ce8f429 (IsA momentousness importance) (STV 1.0 0.9091)) +(: cnet_isa_348f50a4f6 (IsA momentum force) (STV 1.0 0.9091)) +(: cnet_isa_e8f4eb9f7f (IsA momentum physical_property) (STV 1.0 0.9091)) +(: cnet_isa_4c26e43f86 (IsA momism protection) (STV 1.0 0.9091)) +(: cnet_isa_2b6c9c8608 (IsA momordica dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_480a66717d (IsA momotidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_5b253ff9df (IsA momotus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_91a2c67a46 (IsA mon mon_khmer) (STV 1.0 0.9091)) +(: cnet_isa_59e92f2463 (IsA mon buddhist) (STV 1.0 0.9091)) +(: cnet_isa_7c502db6c3 (IsA mon_khmer austro_asiatic) (STV 1.0 0.9091)) +(: cnet_isa_de02528aeb (IsA monad microorganism) (STV 1.0 0.9091)) +(: cnet_isa_33377c50d6 (IsA monad atom) (STV 1.0 0.9091)) +(: cnet_isa_f8d70fe8e0 (IsA monad one) (STV 1.0 0.9091)) +(: cnet_isa_45d3f731f1 (IsA monadic_operation operation) (STV 1.0 0.9091)) +(: cnet_isa_a7a3b7504a (IsA monal pheasant) (STV 1.0 0.9091)) +(: cnet_isa_31332a22a8 (IsA monandry marriage) (STV 1.0 0.9091)) +(: cnet_isa_6f068e2e6f (IsA monarch danaid) (STV 1.0 0.9091)) +(: cnet_isa_f24ad9a60b (IsA monarchism political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_e39499b91c (IsA monarchist rightist) (STV 1.0 0.9091)) +(: cnet_isa_d91b37e0d8 (IsA monarchy government) (STV 1.0 0.9091)) +(: cnet_isa_a7fc85e750 (IsA monarchy autocracy) (STV 1.0 0.9091)) +(: cnet_isa_570608efbd (IsA monarda herb) (STV 1.0 0.9091)) +(: cnet_isa_8e6655cfab (IsA monardella dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_570c2f0a66 (IsA monario artificial_language) (STV 1.0 0.9091)) +(: cnet_isa_24acff2de0 (IsA monastery religious_residence) (STV 1.0 0.9091)) +(: cnet_isa_23a9171896 (IsA monastic_habit habit) (STV 1.0 0.9091)) +(: cnet_isa_6947a206ab (IsA monasticism austerity) (STV 1.0 0.9091)) +(: cnet_isa_74be02cdf6 (IsA monazite mineral) (STV 1.0 0.9091)) +(: cnet_isa_6aa2394d1f (IsA monday weekday) (STV 1.0 0.9091)) +(: cnet_isa_c2ad750751 (IsA monegasque european) (STV 1.0 0.9091)) +(: cnet_isa_a753fbde05 (IsA monel_metal nickel_base_alloy) (STV 1.0 0.9091)) +(: cnet_isa_8e2ae6f6ab (IsA monera kingdom) (STV 1.0 0.9091)) +(: cnet_isa_9cff6c319b (IsA moneran microorganism) (STV 1.0 0.9091)) +(: cnet_isa_aca3fdc5c5 (IsA mones dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_84feefd9f5 (IsA monetarism economic_theory) (STV 1.0 0.9091)) +(: cnet_isa_692b383dc5 (IsA monetarist economist) (STV 1.0 0.9091)) +(: cnet_isa_b07387a116 (IsA monetary_unit unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_487783ac02 (IsA monetary_value value) (STV 1.0 0.9091)) +(: cnet_isa_f5e6418ac8 (IsA monetization validation) (STV 1.0 0.9091)) +(: cnet_isa_1a72dfdb3b (IsA money currency) (STV 1.0 0.9091)) +(: cnet_isa_4be723ff22 (IsA money medium_of_exchange) (STV 1.0 0.9091)) +(: cnet_isa_bb8ca2cdc0 (IsA money wealth) (STV 1.0 0.9091)) +(: cnet_isa_93e16815d5 (IsA money_belt belt) (STV 1.0 0.9091)) +(: cnet_isa_c32f780cb7 (IsA money_cowrie cowrie) (STV 1.0 0.9091)) +(: cnet_isa_cc730bff66 (IsA money_handler person) (STV 1.0 0.9091)) +(: cnet_isa_506179d4e2 (IsA money_laundering concealment) (STV 1.0 0.9091)) +(: cnet_isa_e98ec8edde (IsA money_market market) (STV 1.0 0.9091)) +(: cnet_isa_a6bd9f9705 (IsA money_order draft) (STV 1.0 0.9091)) +(: cnet_isa_72cf908c0a (IsA money_supply fund) (STV 1.0 0.9091)) +(: cnet_isa_47d4df439e (IsA moneybag drawstring_bag) (STV 1.0 0.9091)) +(: cnet_isa_5a5137e164 (IsA moneygrubber moneymaker) (STV 1.0 0.9091)) +(: cnet_isa_c6dd390680 (IsA moneymaker project) (STV 1.0 0.9091)) +(: cnet_isa_a9d8839ba6 (IsA moneymaker capitalist) (STV 1.0 0.9091)) +(: cnet_isa_760789969e (IsA moneymaking acquisition) (STV 1.0 0.9091)) +(: cnet_isa_c8d17d66b7 (IsA moneywort loosestrife) (STV 1.0 0.9091)) +(: cnet_isa_4d09d2619f (IsA mongo mongolian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_ce9b749023 (IsA mongol_tatar mongolian) (STV 1.0 0.9091)) +(: cnet_isa_dae5a0627c (IsA mongolian altaic) (STV 1.0 0.9091)) +(: cnet_isa_081d87dbce (IsA mongolian asiatic) (STV 1.0 0.9091)) +(: cnet_isa_7f3684b4f7 (IsA mongolian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_a164b75028 (IsA mongolism birth_defect) (STV 1.0 0.9091)) +(: cnet_isa_b2e078f4ee (IsA mongolism trisomy) (STV 1.0 0.9091)) +(: cnet_isa_84eb0acc20 (IsA mongoloid asiatic) (STV 1.0 0.9091)) +(: cnet_isa_c4b89d4a0f (IsA mongoloid idiot) (STV 1.0 0.9091)) +(: cnet_isa_6a81605673 (IsA mongoose viverrine) (STV 1.0 0.9091)) +(: cnet_isa_cad2aa0c60 (IsA monic_polynomial polynomial) (STV 1.0 0.9091)) +(: cnet_isa_d30ceaf85d (IsA monilia fungus) (STV 1.0 0.9091)) +(: cnet_isa_7c4e3cce3f (IsA moniliaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_be87c95395 (IsA moniliale fungus_order) (STV 1.0 0.9091)) +(: cnet_isa_ccd1e38f13 (IsA monism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_5f7792db94 (IsA monition summon) (STV 1.0 0.9091)) +(: cnet_isa_809f386cd8 (IsA monitor tv) (STV 1.0 0.9091)) +(: cnet_isa_1a4b883942 (IsA monitor lizard) (STV 1.0 0.9091)) +(: cnet_isa_30224454cc (IsA monitor display) (STV 1.0 0.9091)) +(: cnet_isa_f537158b2b (IsA monitor electronic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_9b929bbbdb (IsA monitor_program program) (STV 1.0 0.9091)) +(: cnet_isa_6f2546aa91 (IsA monitoring observation) (STV 1.0 0.9091)) +(: cnet_isa_17bf43b82a (IsA monk_s_cloth fabric) (STV 1.0 0.9091)) +(: cnet_isa_d3a62fefde (IsA monk religious) (STV 1.0 0.9091)) +(: cnet_isa_d427067bbd (IsA monkey primate) (STV 1.0 0.9524)) +(: cnet_isa_e91805ecf4 (IsA monkey_bridge platform) (STV 1.0 0.9091)) +(: cnet_isa_040ae0b902 (IsA monkey_business mischief) (STV 1.0 0.9091)) +(: cnet_isa_90748dc64f (IsA monkey_ladder ladder) (STV 1.0 0.9091)) +(: cnet_isa_4b80db5477 (IsA monkey_puzzle araucaria) (STV 1.0 0.9091)) +(: cnet_isa_c28374300e (IsA monkey_wrench adjustable_wrench) (STV 1.0 0.9091)) +(: cnet_isa_fecfee47f6 (IsA monkfish saltwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_361b9e0260 (IsA monkshood aconite) (STV 1.0 0.9091)) +(: cnet_isa_048b4168c3 (IsA mono_iodotyrosine iodotyrosine) (STV 1.0 0.9091)) +(: cnet_isa_13d61fa598 (IsA monoamine amine) (STV 1.0 0.9091)) +(: cnet_isa_30cebdad94 (IsA monoamine_neurotransmitter monoamine) (STV 1.0 0.9091)) +(: cnet_isa_ba48295258 (IsA monoamine_oxidase enzyme) (STV 1.0 0.9091)) +(: cnet_isa_8f3b196cf4 (IsA monoamine_oxidase_inhibitor antidepressant) (STV 1.0 0.9091)) +(: cnet_isa_0fb684648e (IsA monobasic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_c5044f60e9 (IsA monoblast monocyte) (STV 1.0 0.9091)) +(: cnet_isa_58c08784cf (IsA monocanthidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_de75594c50 (IsA monocanthus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_c010900319 (IsA monocarp plant) (STV 1.0 0.9091)) +(: cnet_isa_f7527837d1 (IsA monochamus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_325aa4accf (IsA monochromacy color_blindness) (STV 1.0 0.9091)) +(: cnet_isa_af1cb7bcd6 (IsA monochromat color_blind_person) (STV 1.0 0.9091)) +(: cnet_isa_82632f13b6 (IsA monochrome painting) (STV 1.0 0.9091)) +(: cnet_isa_3c375e7c23 (IsA monocle eye_glass_for_one_eye) (STV 1.0 0.9091)) +(: cnet_isa_c834b0ee86 (IsA monocle len) (STV 1.0 0.9091)) +(: cnet_isa_b7f4c8682f (IsA monocline geological_formation) (STV 1.0 0.9091)) +(: cnet_isa_5c0f72a3a9 (IsA monoclonal_antibody antibody) (STV 1.0 0.9091)) +(: cnet_isa_836fb8cefe (IsA monocot angiosperm) (STV 1.0 0.9091)) +(: cnet_isa_9f6a28e812 (IsA monocot_family family) (STV 1.0 0.9091)) +(: cnet_isa_cf261a19eb (IsA monocot_genus genus) (STV 1.0 0.9091)) +(: cnet_isa_f4423106ee (IsA monocotyledone class) (STV 1.0 0.9091)) +(: cnet_isa_820d19ca5a (IsA monocular_vision sight) (STV 1.0 0.9091)) +(: cnet_isa_06a20f59bc (IsA monoculture culture) (STV 1.0 0.9091)) +(: cnet_isa_7841142bab (IsA monocyte leukocyte) (STV 1.0 0.9091)) +(: cnet_isa_2c3deaa88d (IsA monocytic_leukemia leukemia) (STV 1.0 0.9091)) +(: cnet_isa_5823e9763d (IsA monocytosis symptom) (STV 1.0 0.9091)) +(: cnet_isa_adeb3b4e16 (IsA monodon mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_350bfcfad9 (IsA monodontidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_23bb9812ac (IsA monofocal_len_implant len_implant) (STV 1.0 0.9091)) +(: cnet_isa_5c49f3d1ef (IsA monogamist spouse) (STV 1.0 0.9091)) +(: cnet_isa_71e81e9606 (IsA monogamy relationship_between_two_people_or_animal) (STV 1.0 0.9091)) +(: cnet_isa_9cbc86cad0 (IsA monogamy unnatural_social_aspect) (STV 1.0 0.9091)) +(: cnet_isa_d7ba51c410 (IsA monogamy marriage) (STV 1.0 0.9091)) +(: cnet_isa_2ee9a4fe96 (IsA monogenesis asexual_reproduction) (STV 1.0 0.9091)) +(: cnet_isa_d57d40164c (IsA monogenic_disorder genetic_disease) (STV 1.0 0.9091)) +(: cnet_isa_36deada1e5 (IsA monogram symbol) (STV 1.0 0.9091)) +(: cnet_isa_704a3d3c9e (IsA monograph treatise) (STV 1.0 0.9091)) +(: cnet_isa_c45267eb72 (IsA monogyny monogamy) (STV 1.0 0.9091)) +(: cnet_isa_7c66dd5cbf (IsA monohybrid hybrid) (STV 1.0 0.9091)) +(: cnet_isa_d364ddb400 (IsA monohybrid_cross hybridization) (STV 1.0 0.9091)) +(: cnet_isa_465604a645 (IsA monohydrate hydrate) (STV 1.0 0.9091)) +(: cnet_isa_5cfa2b982d (IsA monolatry worship) (STV 1.0 0.9091)) +(: cnet_isa_998d5bc4d3 (IsA monolingual person) (STV 1.0 0.9091)) +(: cnet_isa_3e9d64fe5f (IsA monolith single_standing_stone) (STV 1.0 0.9091)) +(: cnet_isa_6f7c54bd67 (IsA monolith stone) (STV 1.0 0.9091)) +(: cnet_isa_ad28583057 (IsA monologist performer) (STV 1.0 0.9091)) +(: cnet_isa_b5a0f0a015 (IsA monologue actor_s_line) (STV 1.0 0.9091)) +(: cnet_isa_5c2bdd3d21 (IsA monologue speech) (STV 1.0 0.9091)) +(: cnet_isa_81f6e85bd3 (IsA monomania mania) (STV 1.0 0.9091)) +(: cnet_isa_6d83269b95 (IsA monomaniac sick_person) (STV 1.0 0.9091)) +(: cnet_isa_f69b4f5b02 (IsA monomer compound) (STV 1.0 0.9091)) +(: cnet_isa_12fd8734ec (IsA monomorium arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_1458477c71 (IsA mononeuropathy neuropathy) (STV 1.0 0.9091)) +(: cnet_isa_8c928c91d3 (IsA mononuclear_phagocyte_system system) (STV 1.0 0.9091)) +(: cnet_isa_3c6eb09a13 (IsA mononychus_olecranus maniraptor) (STV 1.0 0.9091)) +(: cnet_isa_bfa71802e2 (IsA monophony music) (STV 1.0 0.9091)) +(: cnet_isa_813c3527da (IsA monophysite disciple) (STV 1.0 0.9091)) +(: cnet_isa_8b94d73806 (IsA monophysitism heresy) (STV 1.0 0.9091)) +(: cnet_isa_be1aad8ac8 (IsA monophysitism theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_5e89bcc821 (IsA monoplane airplane) (STV 1.0 0.9091)) +(: cnet_isa_e4780ef5fd (IsA monoplane_flying_fish flying_fish) (STV 1.0 0.9091)) +(: cnet_isa_928c3c474b (IsA monoplegia paralysis) (STV 1.0 0.9091)) +(: cnet_isa_6127e2c9ca (IsA monopolist selfish_person) (STV 1.0 0.9091)) +(: cnet_isa_b9a2464bd8 (IsA monopolization domination) (STV 1.0 0.9091)) +(: cnet_isa_c268f2f459 (IsA monopoly board_game) (STV 1.0 0.9608)) +(: cnet_isa_6779fdae65 (IsA monopoly classic_boardgame) (STV 1.0 0.9091)) +(: cnet_isa_8959feb7b2 (IsA monopoly market) (STV 1.0 0.9091)) +(: cnet_isa_4d9272c3b1 (IsA monopoly dominance) (STV 1.0 0.9091)) +(: cnet_isa_e2169d44f1 (IsA monopoly_board board) (STV 1.0 0.9091)) +(: cnet_isa_8e7c687042 (IsA monopsony market) (STV 1.0 0.9091)) +(: cnet_isa_9b56f1203a (IsA monorail railway) (STV 1.0 0.9091)) +(: cnet_isa_815fe0e6b4 (IsA monorchism cryptorchidy) (STV 1.0 0.9091)) +(: cnet_isa_30fdd7fe5d (IsA monosaccharide carbohydrate) (STV 1.0 0.9091)) +(: cnet_isa_4124a1627f (IsA monosemy clarity) (STV 1.0 0.9091)) +(: cnet_isa_c56c7c130b (IsA monosodium_glutamate flavorer) (STV 1.0 0.9091)) +(: cnet_isa_320d94b473 (IsA monosomy chromosomal_aberration) (STV 1.0 0.9091)) +(: cnet_isa_28f07af07c (IsA monostotic_fibrous_dysplasia fibrous_dysplasia_of_bone) (STV 1.0 0.9091)) +(: cnet_isa_2e8826233b (IsA monosyllable word) (STV 1.0 0.9091)) +(: cnet_isa_d68cee8c0a (IsA monotheism theism) (STV 1.0 0.9091)) +(: cnet_isa_fadfa7e8cc (IsA monotheist believer) (STV 1.0 0.9091)) +(: cnet_isa_129a138dda (IsA monothelitism heresy) (STV 1.0 0.9091)) +(: cnet_isa_8b7f86efa2 (IsA monothelitism theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_03f7d241eb (IsA monotone intonation) (STV 1.0 0.9091)) +(: cnet_isa_ceb23fc135 (IsA monotone note) (STV 1.0 0.9091)) +(: cnet_isa_ccbe83f9e8 (IsA monotony constancy) (STV 1.0 0.9091)) +(: cnet_isa_e999c57b10 (IsA monotony unvariedness) (STV 1.0 0.9091)) +(: cnet_isa_d0e63a961f (IsA monotremata animal_order) (STV 1.0 0.9091)) +(: cnet_isa_d806f21f10 (IsA monotreme prototherian) (STV 1.0 0.9091)) +(: cnet_isa_d8560dfae7 (IsA monotropa dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_eb4eb93e48 (IsA monotropaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_65d53d82f8 (IsA monotype print) (STV 1.0 0.9091)) +(: cnet_isa_ed3433c18e (IsA monotype typesetting_machine) (STV 1.0 0.9091)) +(: cnet_isa_8816c87b61 (IsA monotype taxonomic_group) (STV 1.0 0.9091)) +(: cnet_isa_964baf21a6 (IsA monounsaturated_fatty_acid unsaturated_fatty_acid) (STV 1.0 0.9091)) +(: cnet_isa_3037a41ee5 (IsA monoxide oxide) (STV 1.0 0.9091)) +(: cnet_isa_80b7063022 (IsA monroe_doctrine foreign_policy) (STV 1.0 0.9091)) +(: cnet_isa_db2e3fe11f (IsA mon adipose_tissue) (STV 1.0 0.9091)) +(: cnet_isa_af6e9f7a27 (IsA monsieur man) (STV 1.0 0.9091)) +(: cnet_isa_074deb112b (IsA monsignor priest) (STV 1.0 0.9091)) +(: cnet_isa_1ea8bb860d (IsA monsoon rain) (STV 1.0 0.9091)) +(: cnet_isa_8f9311e790 (IsA monsoon wind) (STV 1.0 0.9091)) +(: cnet_isa_352087073d (IsA monsoon rainy_season) (STV 1.0 0.9091)) +(: cnet_isa_dd9a4a7e04 (IsA monster fetus) (STV 1.0 0.9091)) +(: cnet_isa_e82a56b0fc (IsA monster imaginary_being) (STV 1.0 0.9091)) +(: cnet_isa_b63c8038cf (IsA monster unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_0768269155 (IsA monstera liana) (STV 1.0 0.9091)) +(: cnet_isa_78cfc3c5aa (IsA monstrance vessel) (STV 1.0 0.9091)) +(: cnet_isa_5f9cb4e250 (IsA monstrosity malformation) (STV 1.0 0.9091)) +(: cnet_isa_2bfca28326 (IsA mont_blanc mountain_in_swiss_alp) (STV 1.0 0.9091)) +(: cnet_isa_9afe93f90a (IsA montagu_s_harrier harrier) (STV 1.0 0.9091)) +(: cnet_isa_f3ca828ad0 (IsA montan_wax wax) (STV 1.0 0.9091)) +(: cnet_isa_fc001fe524 (IsA montana state) (STV 1.0 0.9339)) +(: cnet_isa_095acb027c (IsA montanan american) (STV 1.0 0.9091)) +(: cnet_isa_2ddf998c2b (IsA monte card_game) (STV 1.0 0.9091)) +(: cnet_isa_7c6c264135 (IsA monterey_cypress cypress) (STV 1.0 0.9091)) +(: cnet_isa_4ef0b02733 (IsA monterey_pine pine) (STV 1.0 0.9091)) +(: cnet_isa_dd3ca0389c (IsA montezuma_s_revenge diarrhea) (STV 1.0 0.9091)) +(: cnet_isa_12597728d2 (IsA montezuma tree) (STV 1.0 0.9091)) +(: cnet_isa_df97aa0114 (IsA montezuma_cypress cypress) (STV 1.0 0.9091)) +(: cnet_isa_3d860c24e0 (IsA montgomery_s_tubercle sebaceous_gland) (STV 1.0 0.9091)) +(: cnet_isa_7255821c27 (IsA month time_unit) (STV 1.0 0.9091)) +(: cnet_isa_7766acbc86 (IsA month_of_sunday long_time) (STV 1.0 0.9091)) +(: cnet_isa_07c21d1aa1 (IsA monthly sery) (STV 1.0 0.9091)) +(: cnet_isa_c5d9f9207c (IsA montia caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c4f9370417 (IsA montrachet burgundy) (STV 1.0 0.9091)) +(: cnet_isa_2e760d6e69 (IsA montrachet white_wine) (STV 1.0 0.9091)) +(: cnet_isa_ff4233fbaa (IsA montreal in_canada) (STV 1.0 0.9524)) +(: cnet_isa_33d2591662 (IsA montserratian west_indian) (STV 1.0 0.9091)) +(: cnet_isa_0b28d36b19 (IsA monument site) (STV 1.0 0.9091)) +(: cnet_isa_cba5e1f6f5 (IsA moo cry) (STV 1.0 0.9091)) +(: cnet_isa_fbca3c204e (IsA moo_goo_gai_pan dish) (STV 1.0 0.9091)) +(: cnet_isa_dd8419d659 (IsA moocher beggar) (STV 1.0 0.9091)) +(: cnet_isa_ee09dfe42d (IsA mood grammatical_relation) (STV 1.0 0.9091)) +(: cnet_isa_6a3c771f33 (IsA moodiness disposition) (STV 1.0 0.9091)) +(: cnet_isa_2b97f0395e (IsA moodiness ill_humor) (STV 1.0 0.9091)) +(: cnet_isa_58073a2f8d (IsA moon place) (STV 1.0 0.9454)) +(: cnet_isa_c990126a73 (IsA moon sattelite_of_earth) (STV 1.0 0.9091)) +(: cnet_isa_302f5294e4 (IsA moon sphere) (STV 1.0 0.9454)) +(: cnet_isa_2bf050b6cf (IsA moon object) (STV 1.0 0.9091)) +(: cnet_isa_7ed0a34579 (IsA moon satellite) (STV 1.0 0.9091)) +(: cnet_isa_171622b3ba (IsA moon_blindness animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_09c2fe6057 (IsA moon_carrot herb) (STV 1.0 0.9091)) +(: cnet_isa_c689bc9a9a (IsA moon_shell seasnail) (STV 1.0 0.9091)) +(: cnet_isa_9c20bc35d0 (IsA moon_shot rocket_firing) (STV 1.0 0.9091)) +(: cnet_isa_82285ab7ef (IsA moon_trefoil medic) (STV 1.0 0.9091)) +(: cnet_isa_4216573589 (IsA moon_worship worship) (STV 1.0 0.9091)) +(: cnet_isa_c63cc5d325 (IsA moonbeam beam) (STV 1.0 0.9091)) +(: cnet_isa_2343e34fc7 (IsA moonfish carangid_fish) (STV 1.0 0.9091)) +(: cnet_isa_d90a0867cf (IsA moonflower morning_glory) (STV 1.0 0.9091)) +(: cnet_isa_a94ce6ff4c (IsA moonie religionist) (STV 1.0 0.9091)) +(: cnet_isa_c6e3445b2a (IsA moonlight light) (STV 1.0 0.9091)) +(: cnet_isa_41d611503e (IsA moonlighter worker) (STV 1.0 0.9091)) +(: cnet_isa_f0f2563b44 (IsA moonseed vine) (STV 1.0 0.9091)) +(: cnet_isa_dfdaf2001c (IsA moonshine corn_whiskey) (STV 1.0 0.9091)) +(: cnet_isa_ccf7696a36 (IsA moonstone feldspar) (STV 1.0 0.9091)) +(: cnet_isa_48aadadfb6 (IsA moonstone transparent_gem) (STV 1.0 0.9091)) +(: cnet_isa_966fc03740 (IsA moonwalk dance_step) (STV 1.0 0.9091)) +(: cnet_isa_df6f1efa74 (IsA moonwalk walk) (STV 1.0 0.9091)) +(: cnet_isa_d793f5c6aa (IsA moonwort grape_fern) (STV 1.0 0.9091)) +(: cnet_isa_b44dda7c07 (IsA moor plain) (STV 1.0 0.9091)) +(: cnet_isa_2348c099ab (IsA moor moslem) (STV 1.0 0.9091)) +(: cnet_isa_b6660e1971 (IsA moorage fee) (STV 1.0 0.9091)) +(: cnet_isa_defbb58599 (IsA moorcock red_grouse) (STV 1.0 0.9091)) +(: cnet_isa_cd3dc0a64b (IsA moorhen gallinule) (STV 1.0 0.9091)) +(: cnet_isa_5ce2703b69 (IsA moorhen red_grouse) (STV 1.0 0.9091)) +(: cnet_isa_0503e43ed9 (IsA mooring line) (STV 1.0 0.9091)) +(: cnet_isa_e58a155cb7 (IsA mooring anchorage) (STV 1.0 0.9091)) +(: cnet_isa_4f98f512b3 (IsA mooring_anchor anchor) (STV 1.0 0.9091)) +(: cnet_isa_009781453f (IsA mooring_tower tower) (STV 1.0 0.9091)) +(: cnet_isa_69a2dc4371 (IsA moorish architectural_style) (STV 1.0 0.9091)) +(: cnet_isa_cd0e9dc2e7 (IsA moorish_arch round_arch) (STV 1.0 0.9091)) +(: cnet_isa_0578fdb7c2 (IsA moosewood maple) (STV 1.0 0.9091)) +(: cnet_isa_c6522b5a44 (IsA moot lawsuit) (STV 1.0 0.9091)) +(: cnet_isa_842c7d14f5 (IsA moot_court court) (STV 1.0 0.9091)) +(: cnet_isa_bed7bf951a (IsA mop_handle handle) (STV 1.0 0.9091)) +(: cnet_isa_873d0e4243 (IsA moped minibike) (STV 1.0 0.9091)) +(: cnet_isa_a6bc6d4ac6 (IsA mopper worker) (STV 1.0 0.9091)) +(: cnet_isa_ca7677d009 (IsA moppet female_child) (STV 1.0 0.9091)) +(: cnet_isa_19e13f7be2 (IsA moquelumnan penutian) (STV 1.0 0.9091)) +(: cnet_isa_542a903f65 (IsA moquette fabric) (STV 1.0 0.9091)) +(: cnet_isa_86cf342c46 (IsA moraceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_6e2e302908 (IsA moraine earth) (STV 1.0 0.9091)) +(: cnet_isa_c3f46c0fda (IsA moral meaning) (STV 1.0 0.9091)) +(: cnet_isa_55d2da292f (IsA moral_certainty certainty) (STV 1.0 0.9091)) +(: cnet_isa_baecde056f (IsA moral_force incentive) (STV 1.0 0.9091)) +(: cnet_isa_6bf3e7e057 (IsA moral_hazard hazard) (STV 1.0 0.9091)) +(: cnet_isa_03517be929 (IsA moral_obligation duty) (STV 1.0 0.9091)) +(: cnet_isa_9a18e9fbb7 (IsA moral_principle principle) (STV 1.0 0.9091)) +(: cnet_isa_b5a15f695e (IsA morale psychological_state) (STV 1.0 0.9091)) +(: cnet_isa_212df0b4be (IsA morale_builder influence) (STV 1.0 0.9091)) +(: cnet_isa_74309374c7 (IsA morale_building boost) (STV 1.0 0.9091)) +(: cnet_isa_8bbd8bd96e (IsA moralism value_judgment) (STV 1.0 0.9091)) +(: cnet_isa_c66aa1bd40 (IsA moralism maxim) (STV 1.0 0.9091)) +(: cnet_isa_3338a6e787 (IsA moralist philosopher) (STV 1.0 0.9091)) +(: cnet_isa_0ac64e346c (IsA morality quality) (STV 1.0 0.9091)) +(: cnet_isa_396e94b448 (IsA morality_play play) (STV 1.0 0.9091)) +(: cnet_isa_b55fa09a6d (IsA moralization reform) (STV 1.0 0.9091)) +(: cnet_isa_17d94580ef (IsA moralizing philosophizing) (STV 1.0 0.9091)) +(: cnet_isa_30c19bf3b9 (IsA moratorium abeyance) (STV 1.0 0.9091)) +(: cnet_isa_1663a7d091 (IsA moratorium delay) (STV 1.0 0.9091)) +(: cnet_isa_ae00bbbd24 (IsA moray eel) (STV 1.0 0.9091)) +(: cnet_isa_19b76a9601 (IsA morbidity incidence) (STV 1.0 0.9091)) +(: cnet_isa_656707549f (IsA morbidness cognitive_state) (STV 1.0 0.9091)) +(: cnet_isa_94cd394f80 (IsA morceau musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_373c53064b (IsA morceau piece) (STV 1.0 0.9091)) +(: cnet_isa_3af2243ff8 (IsA morchella fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_a01e382972 (IsA morchella_crassipe morel) (STV 1.0 0.9091)) +(: cnet_isa_3c535ad4fa (IsA morchella_semilibera morel) (STV 1.0 0.9091)) +(: cnet_isa_c0386f435f (IsA morchellaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_325fe307e3 (IsA mordacity disposition) (STV 1.0 0.9091)) +(: cnet_isa_854521ec71 (IsA mordant coloring_material) (STV 1.0 0.9091)) +(: cnet_isa_c583a76193 (IsA mordva volgaic) (STV 1.0 0.9091)) +(: cnet_isa_615cfc2f06 (IsA mordvinian russian) (STV 1.0 0.9091)) +(: cnet_isa_28cb3074a0 (IsA moreen fabric) (STV 1.0 0.9091)) +(: cnet_isa_5673a2780c (IsA morel mushroom) (STV 1.0 0.9091)) +(: cnet_isa_994bd82601 (IsA morello sour_cherry) (STV 1.0 0.9091)) +(: cnet_isa_9bac667572 (IsA more convention) (STV 1.0 0.9091)) +(: cnet_isa_052c8e9a7e (IsA moreton_bay_chestnut bean_tree) (STV 1.0 0.9091)) +(: cnet_isa_f316841a7b (IsA moreton_bay_tulipwood harpullia) (STV 1.0 0.9091)) +(: cnet_isa_4bdd17529a (IsA morgan saddle_horse) (STV 1.0 0.9091)) +(: cnet_isa_e88b12d709 (IsA morgan_le_fay fairy) (STV 1.0 0.9091)) +(: cnet_isa_e164c6dd07 (IsA morganite beryl) (STV 1.0 0.9091)) +(: cnet_isa_3602f9083f (IsA morganite transparent_gem) (STV 1.0 0.9091)) +(: cnet_isa_c3e4410e04 (IsA morgen area_unit) (STV 1.0 0.9091)) +(: cnet_isa_7cff7d7bdc (IsA morgue building) (STV 1.0 0.9091)) +(: cnet_isa_0ba45b8e62 (IsA morion helmet) (STV 1.0 0.9091)) +(: cnet_isa_a038a5b7c2 (IsA morlett_s_crocodile crocodile) (STV 1.0 0.9091)) +(: cnet_isa_34066409c5 (IsA mormon christian) (STV 1.0 0.9091)) +(: cnet_isa_0c6fb1b8e5 (IsA mormon_church protestant_denomination) (STV 1.0 0.9091)) +(: cnet_isa_e60787da26 (IsA mormon_cricket katydid) (STV 1.0 0.9091)) +(: cnet_isa_318298f645 (IsA mormonism protestantism) (STV 1.0 0.9091)) +(: cnet_isa_a05477c011 (IsA mornay_sauce cheese_sauce) (STV 1.0 0.9091)) +(: cnet_isa_eace515d23 (IsA morning time_period) (STV 1.0 0.9091)) +(: cnet_isa_3066816c27 (IsA morning_after_pill contraceptive) (STV 1.0 0.9091)) +(: cnet_isa_d1c24e5684 (IsA morning_dress attire) (STV 1.0 0.9091)) +(: cnet_isa_7a96f4be32 (IsA morning_dress dress) (STV 1.0 0.9091)) +(: cnet_isa_cf1302820e (IsA morning_glory vine) (STV 1.0 0.9091)) +(: cnet_isa_462e73ccf3 (IsA morning_room living_room) (STV 1.0 0.9091)) +(: cnet_isa_824a79d798 (IsA morning_sickness nausea) (STV 1.0 0.9091)) +(: cnet_isa_eefe69ad87 (IsA morning_star planet) (STV 1.0 0.9091)) +(: cnet_isa_918170cf29 (IsA moro filipino) (STV 1.0 0.9091)) +(: cnet_isa_308e2bee62 (IsA moroccan african) (STV 1.0 0.9091)) +(: cnet_isa_3bcb6be72d (IsA moroccan_dirham moroccan_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_9073b8117e (IsA moroccan_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_79c73965b9 (IsA morocco leather) (STV 1.0 0.9091)) +(: cnet_isa_ceb1f285b7 (IsA morone fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_a67509f4fc (IsA moronity retardation) (STV 1.0 0.9091)) +(: cnet_isa_d043a47927 (IsA moroseness moodiness) (STV 1.0 0.9091)) +(: cnet_isa_b3f7515ace (IsA morosoph fool) (STV 1.0 0.9091)) +(: cnet_isa_e4c530c531 (IsA morphallaxis regeneration) (STV 1.0 0.9091)) +(: cnet_isa_e919f61bb9 (IsA morphea scleroderma) (STV 1.0 0.9091)) +(: cnet_isa_b68697b77a (IsA morpheme language_unit) (STV 1.0 0.9091)) +(: cnet_isa_3e43bb20fe (IsA morphine sedative) (STV 1.0 0.9091)) +(: cnet_isa_40f03ff53a (IsA morphine analgesic) (STV 1.0 0.9091)) +(: cnet_isa_0630f6a8bf (IsA morphine opiate) (STV 1.0 0.9091)) +(: cnet_isa_11f5068d97 (IsA morphogenesis growth) (STV 1.0 0.9091)) +(: cnet_isa_c8c0ed515d (IsA morphological_rule rule) (STV 1.0 0.9091)) +(: cnet_isa_0f19059170 (IsA morphology biology) (STV 1.0 0.9091)) +(: cnet_isa_b8cb6b9786 (IsA morphology geophysic) (STV 1.0 0.9091)) +(: cnet_isa_d9172b09ca (IsA morphology grammar) (STV 1.0 0.9091)) +(: cnet_isa_b57ab996c0 (IsA morphology structure) (STV 1.0 0.9091)) +(: cnet_isa_3685d414dd (IsA morphophoneme allomorph) (STV 1.0 0.9091)) +(: cnet_isa_b99c1a5a29 (IsA morphophonemic_system language_system) (STV 1.0 0.9091)) +(: cnet_isa_5d0c180d7c (IsA morphophonemic synchronic_linguistic) (STV 1.0 0.9091)) +(: cnet_isa_be50f389df (IsA morris_chair armchair) (STV 1.0 0.9091)) +(: cnet_isa_ac8ff2fc5c (IsA morris_dance folk_dancing) (STV 1.0 0.9091)) +(: cnet_isa_b370962c34 (IsA morris_dancer folk_dancer) (STV 1.0 0.9091)) +(: cnet_isa_04d887a952 (IsA morrow_s_honeysuckle honeysuckle) (STV 1.0 0.9091)) +(: cnet_isa_15ffe91e1e (IsA morrow day) (STV 1.0 0.9091)) +(: cnet_isa_eb33438c20 (IsA morse code) (STV 1.0 0.9091)) +(: cnet_isa_fb205c4432 (IsA morsel taste) (STV 1.0 0.9091)) +(: cnet_isa_04a0c3a181 (IsA morsel small_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_c76967f56e (IsA mortal_enemy foe) (STV 1.0 0.9091)) +(: cnet_isa_5f660f2955 (IsA mortal_sin sin) (STV 1.0 0.9091)) +(: cnet_isa_4e899d9f35 (IsA mortality impermanence) (STV 1.0 0.9091)) +(: cnet_isa_1e963c3a71 (IsA mortality_table actuarial_table) (STV 1.0 0.9091)) +(: cnet_isa_88c755bc1c (IsA mortar weapon) (STV 1.0 0.9091)) +(: cnet_isa_bc19723588 (IsA mortar high_angle_gun) (STV 1.0 0.9091)) +(: cnet_isa_14d81d0477 (IsA mortar vessel) (STV 1.0 0.9091)) +(: cnet_isa_0993721b0f (IsA mortar building_material) (STV 1.0 0.9091)) +(: cnet_isa_eded92d337 (IsA mortar_fire artillery_fire) (STV 1.0 0.9091)) +(: cnet_isa_36fa6cab6a (IsA mortarboard board) (STV 1.0 0.9091)) +(: cnet_isa_cb3d8aa17f (IsA mortarboard cap) (STV 1.0 0.9091)) +(: cnet_isa_1371fd63f6 (IsA mortgage security_interest) (STV 1.0 0.9091)) +(: cnet_isa_fcf47784e3 (IsA mortgage_application loan_application) (STV 1.0 0.9091)) +(: cnet_isa_44640b764e (IsA mortgage_backed_security security) (STV 1.0 0.9091)) +(: cnet_isa_28980bd923 (IsA mortgage_deed deed) (STV 1.0 0.9091)) +(: cnet_isa_89cd591ec9 (IsA mortgagee creditor) (STV 1.0 0.9091)) +(: cnet_isa_cd0859187a (IsA mortgagee holder) (STV 1.0 0.9091)) +(: cnet_isa_4c6266a982 (IsA mortgagor debtor) (STV 1.0 0.9091)) +(: cnet_isa_6b16b56f12 (IsA mortician skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_52bc1635f4 (IsA mortification self_denial) (STV 1.0 0.9091)) +(: cnet_isa_fe1ca14145 (IsA mortise hole) (STV 1.0 0.9091)) +(: cnet_isa_29de485f3f (IsA mortise_joint joint) (STV 1.0 0.9091)) +(: cnet_isa_f87e3d32e2 (IsA mortmain real_property) (STV 1.0 0.9091)) +(: cnet_isa_d78f109f93 (IsA morula embryo) (STV 1.0 0.9091)) +(: cnet_isa_f5713168fd (IsA morus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_58f38baec3 (IsA mosaic art) (STV 1.0 0.9091)) +(: cnet_isa_6a08258961 (IsA mosaic picture) (STV 1.0 0.9091)) +(: cnet_isa_aaf3ff01fb (IsA mosaic transducer) (STV 1.0 0.9091)) +(: cnet_isa_52ba0ff7aa (IsA mosaic form) (STV 1.0 0.9091)) +(: cnet_isa_11af550f4e (IsA mosaic plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_fb566fdb51 (IsA mosaic_culture culture) (STV 1.0 0.9091)) +(: cnet_isa_b23353dd6b (IsA mosaic_gold pigment) (STV 1.0 0.9091)) +(: cnet_isa_2df83eaf45 (IsA mosaic_law law) (STV 1.0 0.9091)) +(: cnet_isa_7d9c4d4926 (IsA mosaicism condition) (STV 1.0 0.9091)) +(: cnet_isa_3c304e2779 (IsA mosan amerind) (STV 1.0 0.9091)) +(: cnet_isa_84e54d1891 (IsA moschus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_c5abab58e3 (IsA moselle white_wine) (STV 1.0 0.9091)) +(: cnet_isa_e7e724a7fd (IsA moshav village) (STV 1.0 0.9091)) +(: cnet_isa_a58e257032 (IsA moslem religionist) (STV 1.0 0.9091)) +(: cnet_isa_ea10f975f3 (IsA mosque place_of_worship) (STV 1.0 0.9091)) +(: cnet_isa_99e35d1090 (IsA mosquito dipterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_2b2cbf9530 (IsA mosquito_bite sting) (STV 1.0 0.9091)) +(: cnet_isa_d17985822d (IsA mosquito_fern aquatic_fern) (STV 1.0 0.9091)) +(: cnet_isa_c23a0524e5 (IsA mosquito_net screen) (STV 1.0 0.9091)) +(: cnet_isa_8e22ff101b (IsA mosquitofish topminnow) (STV 1.0 0.9091)) +(: cnet_isa_f08251905e (IsA moss bryophyte) (STV 1.0 0.9091)) +(: cnet_isa_786502d56b (IsA moss_agate agate) (STV 1.0 0.9091)) +(: cnet_isa_d6519dc27e (IsA moss_campion silene) (STV 1.0 0.9091)) +(: cnet_isa_6480cc33e4 (IsA moss_family family) (STV 1.0 0.9091)) +(: cnet_isa_f00cbd1515 (IsA moss_genus genus) (STV 1.0 0.9091)) +(: cnet_isa_cb96f44720 (IsA moss_pink phlox) (STV 1.0 0.9091)) +(: cnet_isa_82f11f744a (IsA moss_trooper marauder) (STV 1.0 0.9091)) +(: cnet_isa_1cb2da9855 (IsA mossad international_intelligence_agency) (STV 1.0 0.9091)) +(: cnet_isa_cf27ef80e7 (IsA mossback conservative) (STV 1.0 0.9091)) +(: cnet_isa_f1420b70d3 (IsA mossy_saxifrage saxifrage) (STV 1.0 0.9091)) +(: cnet_isa_18a8d2774c (IsA most_republican not_democrat) (STV 1.0 0.9339)) +(: cnet_isa_0b5dabf71c (IsA most_situation wonderful_learning_opportunity) (STV 1.0 0.9091)) +(: cnet_isa_f56021e0ef (IsA most_valuable_player player) (STV 1.0 0.9091)) +(: cnet_isa_11a8d07eae (IsA most_wedding not_at_supermarket) (STV 1.0 0.9091)) +(: cnet_isa_cc96c1c772 (IsA most_witche pagan) (STV 1.0 0.9091)) +(: cnet_isa_c7547ad0be (IsA mostaccioli pasta) (STV 1.0 0.9091)) +(: cnet_isa_04b9a7b448 (IsA mot test) (STV 1.0 0.9091)) +(: cnet_isa_500a1c3877 (IsA mot_juste wording) (STV 1.0 0.9091)) +(: cnet_isa_12d9ead840 (IsA motacilla bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_b26527ea99 (IsA motacillidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_d502de394a (IsA motel motor_hotel) (STV 1.0 0.9091)) +(: cnet_isa_33f3dacfe8 (IsA motel_room bedroom) (STV 1.0 0.9091)) +(: cnet_isa_ddd95b15e9 (IsA motet musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_bfc8f1fc32 (IsA moth lepidopterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_b860287004 (IsA moth_bean legume) (STV 1.0 0.9091)) +(: cnet_isa_30c4e0b6e3 (IsA moth_miller moth) (STV 1.0 0.9091)) +(: cnet_isa_f527637290 (IsA moth_mullein mullein) (STV 1.0 0.9091)) +(: cnet_isa_d36034d76e (IsA moth_orchid orchid) (STV 1.0 0.9091)) +(: cnet_isa_6b5d330666 (IsA mothball ball) (STV 1.0 0.9091)) +(: cnet_isa_5114026a1b (IsA mother_s_boy son) (STV 1.0 0.9091)) +(: cnet_isa_f25e1e5088 (IsA mother_s_daughter daughter) (STV 1.0 0.9091)) +(: cnet_isa_b3566f449a (IsA mother_s_day day) (STV 1.0 0.9091)) +(: cnet_isa_65e2f39edb (IsA mother_s_milk milk) (STV 1.0 0.9091)) +(: cnet_isa_89bde9c600 (IsA mother_s_son male) (STV 1.0 0.9091)) +(: cnet_isa_3ecaefd395 (IsA mother inspiration) (STV 1.0 0.9091)) +(: cnet_isa_a688112876 (IsA mother abbess) (STV 1.0 0.9091)) +(: cnet_isa_e6247f0e5a (IsA mother old_woman) (STV 1.0 0.9091)) +(: cnet_isa_820ab699c3 (IsA mother parent) (STV 1.0 0.9091)) +(: cnet_isa_daa4927df5 (IsA mother yeast) (STV 1.0 0.9091)) +(: cnet_isa_5c6b7b977f (IsA mother_carey_s_chicken storm_petrel) (STV 1.0 0.9091)) +(: cnet_isa_938b0b0c29 (IsA mother_cell cell) (STV 1.0 0.9091)) +(: cnet_isa_4faa7cf6c9 (IsA mother_figure woman) (STV 1.0 0.9091)) +(: cnet_isa_ad345de82a (IsA mother_hen hen) (STV 1.0 0.9091)) +(: cnet_isa_1a7b4fee72 (IsA mother_hen person) (STV 1.0 0.9091)) +(: cnet_isa_bc4d7f6ba0 (IsA mother_hubbard dress) (STV 1.0 0.9091)) +(: cnet_isa_f929b744b0 (IsA mother_in_law_s_tongue sansevieria) (STV 1.0 0.9091)) +(: cnet_isa_f9ffaf5a40 (IsA mother_in_law in_law) (STV 1.0 0.9091)) +(: cnet_isa_b319d98c72 (IsA mother_in_law mother) (STV 1.0 0.9091)) +(: cnet_isa_32ddde9adb (IsA mother_lode lode) (STV 1.0 0.9091)) +(: cnet_isa_0f82aa8f7a (IsA mother_of_pearl shell) (STV 1.0 0.9091)) +(: cnet_isa_49289aadd0 (IsA mother_tongue natural_language) (STV 1.0 0.9091)) +(: cnet_isa_e47c5a9c6b (IsA motherhood kinship) (STV 1.0 0.9091)) +(: cnet_isa_13c2149182 (IsA motherliness parental_quality) (STV 1.0 0.9091)) +(: cnet_isa_959aed4e36 (IsA motherwort herb) (STV 1.0 0.9091)) +(: cnet_isa_5c71c138aa (IsA moth insect) (STV 1.0 0.9091)) +(: cnet_isa_0b4e14017e (IsA motif design) (STV 1.0 0.9091)) +(: cnet_isa_a65e68f481 (IsA motif theme) (STV 1.0 0.9091)) +(: cnet_isa_a1177831f5 (IsA motile perceiver) (STV 1.0 0.9091)) +(: cnet_isa_80a7623f68 (IsA motilin gastrointestinal_hormone) (STV 1.0 0.9091)) +(: cnet_isa_ce02f0c140 (IsA motility mobility) (STV 1.0 0.9091)) +(: cnet_isa_ca6ad4d16f (IsA motion energy) (STV 1.0 0.9091)) +(: cnet_isa_652986a622 (IsA motion subject) (STV 1.0 0.9091)) +(: cnet_isa_e5e684ef0b (IsA motion change) (STV 1.0 0.9091)) +(: cnet_isa_10bb2a943d (IsA motion proposal) (STV 1.0 0.9091)) +(: cnet_isa_97cb801774 (IsA motion state) (STV 1.0 0.9091)) +(: cnet_isa_ebe66fcb10 (IsA motion_picture_camera camera) (STV 1.0 0.9091)) +(: cnet_isa_ca480a9443 (IsA motion_picture_film film) (STV 1.0 0.9091)) +(: cnet_isa_566e68a778 (IsA motion_sickness ailment) (STV 1.0 0.9091)) +(: cnet_isa_6b4699a1dc (IsA motion_sickness nausea) (STV 1.0 0.9091)) +(: cnet_isa_9585d84d23 (IsA motionlessness state) (STV 1.0 0.9091)) +(: cnet_isa_e427ea0b16 (IsA motivation psychological_feature) (STV 1.0 0.9091)) +(: cnet_isa_1d1446d96a (IsA motivation act) (STV 1.0 0.9091)) +(: cnet_isa_58da2801ec (IsA motivation condition) (STV 1.0 0.9091)) +(: cnet_isa_bc37b6ccdc (IsA motley fabric) (STV 1.0 0.9091)) +(: cnet_isa_e5f8a32457 (IsA motley garment) (STV 1.0 0.9091)) +(: cnet_isa_b0b2f0df37 (IsA motmot coraciiform_bird) (STV 1.0 0.9091)) +(: cnet_isa_fdf72f327d (IsA motor machine) (STV 1.0 0.9091)) +(: cnet_isa_43aed6ae21 (IsA motor agent) (STV 1.0 0.9091)) +(: cnet_isa_2cb5366450 (IsA motor_aphasia aphasia) (STV 1.0 0.9091)) +(: cnet_isa_2be6ef651b (IsA motor_area cortical_area) (STV 1.0 0.9091)) +(: cnet_isa_188aa6cb11 (IsA motor_control control) (STV 1.0 0.9091)) +(: cnet_isa_6d496e9b80 (IsA motor_hotel hotel) (STV 1.0 0.9091)) +(: cnet_isa_32c12ac9ce (IsA motor_memory long_term_memory) (STV 1.0 0.9091)) +(: cnet_isa_afc5949e07 (IsA motor_nerve nerve) (STV 1.0 0.9091)) +(: cnet_isa_35a5037d57 (IsA motor_neuron nerve_cell) (STV 1.0 0.9091)) +(: cnet_isa_e7c56d437d (IsA motor_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_785180d5dd (IsA motor_oil lubricant) (STV 1.0 0.9091)) +(: cnet_isa_ac0a99bd36 (IsA motor_pool fleet) (STV 1.0 0.9091)) +(: cnet_isa_cbb5fed37e (IsA motor_scooter wheeled_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_67e2788272 (IsA motor_vehicle self_propelled_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_238e8ee0ca (IsA motorboat boat) (STV 1.0 0.9091)) +(: cnet_isa_b7408ceb54 (IsA motorcade procession) (STV 1.0 0.9091)) +(: cnet_isa_da0544d469 (IsA motorcycle fatsret_than_scooter) (STV 1.0 0.9091)) +(: cnet_isa_9525e817df (IsA motorcycle motor_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_cb969e71eb (IsA motorcycle_cop policeman) (STV 1.0 0.9091)) +(: cnet_isa_68419ad3de (IsA motorcycling cycling) (STV 1.0 0.9091)) +(: cnet_isa_f8ca53eb72 (IsA motorcyclist traveler) (STV 1.0 0.9091)) +(: cnet_isa_9faf185ea7 (IsA motoring driving) (STV 1.0 0.9091)) +(: cnet_isa_611c4d7acd (IsA motorist driver) (STV 1.0 0.9091)) +(: cnet_isa_447aaa3999 (IsA motorization implementation) (STV 1.0 0.9091)) +(: cnet_isa_98875a19a1 (IsA motorized_wheelchair wheelchair) (STV 1.0 0.9091)) +(: cnet_isa_87842bf1e2 (IsA motorman operator) (STV 1.0 0.9091)) +(: cnet_isa_d644ed3890 (IsA motormouth speaker) (STV 1.0 0.9091)) +(: cnet_isa_924e2c9a40 (IsA motorola company) (STV 1.0 0.9091)) +(: cnet_isa_80c7a50065 (IsA mottle color) (STV 1.0 0.9091)) +(: cnet_isa_f8e6de1247 (IsA mottling marking) (STV 1.0 0.9091)) +(: cnet_isa_2914cd9e4c (IsA motto saying) (STV 1.0 0.9091)) +(: cnet_isa_ce4ebd893b (IsA mouflon mountain_sheep) (STV 1.0 0.9091)) +(: cnet_isa_5e819d0245 (IsA mould hallmark) (STV 1.0 0.9091)) +(: cnet_isa_1a615c7f3f (IsA mould dessert) (STV 1.0 0.9091)) +(: cnet_isa_f8c35f3799 (IsA mould dish) (STV 1.0 0.9091)) +(: cnet_isa_dbb79f3adc (IsA mound structure) (STV 1.0 0.9091)) +(: cnet_isa_71de77137c (IsA mound baseball_equipment) (STV 1.0 0.9091)) +(: cnet_isa_4fe13857a7 (IsA mound_builder primitive) (STV 1.0 0.9091)) +(: cnet_isa_e58873ed35 (IsA mount mounting) (STV 1.0 0.9091)) +(: cnet_isa_5ad5a3ab52 (IsA mountain natural_elevation) (STV 1.0 0.9091)) +(: cnet_isa_57e3f39300 (IsA mountain_ash angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_fbcb846010 (IsA mountain_ash ash) (STV 1.0 0.9091)) +(: cnet_isa_67bc5c0cb6 (IsA mountain_ash eucalyptus) (STV 1.0 0.9091)) +(: cnet_isa_3b76820242 (IsA mountain_aven subshrub) (STV 1.0 0.9091)) +(: cnet_isa_535812957a (IsA mountain_beaver rodent) (STV 1.0 0.9091)) +(: cnet_isa_1dfbeee4af (IsA mountain_bike bicycle) (STV 1.0 0.9091)) +(: cnet_isa_2841e5d020 (IsA mountain_bladder_fern bladder_fern) (STV 1.0 0.9091)) +(: cnet_isa_a7bdb949db (IsA mountain_chinchilla rodent) (STV 1.0 0.9091)) +(: cnet_isa_1d5082d88f (IsA mountain_climbing climb) (STV 1.0 0.9091)) +(: cnet_isa_223f80fff8 (IsA mountain_devil moloch) (STV 1.0 0.9091)) +(: cnet_isa_cec3c69142 (IsA mountain_dew soft_drink) (STV 1.0 0.9091)) +(: cnet_isa_a01c9f10a6 (IsA mountain_ebony angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_35acb2c682 (IsA mountain_everlasting cat_s_foot) (STV 1.0 0.9091)) +(: cnet_isa_a1c360b2e5 (IsA mountain_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_63adc14d6f (IsA mountain_four_o_clock four_o_clock) (STV 1.0 0.9091)) +(: cnet_isa_e6283dcbab (IsA mountain_goat goat_antelope) (STV 1.0 0.9091)) +(: cnet_isa_c8175b802f (IsA mountain_gorilla gorilla) (STV 1.0 0.9091)) +(: cnet_isa_bd17ad36ea (IsA mountain_heath heath) (STV 1.0 0.9091)) +(: cnet_isa_255ed9a51f (IsA mountain_hemlock hemlock) (STV 1.0 0.9091)) +(: cnet_isa_764336ca4b (IsA mountain_hollyhock mallow) (STV 1.0 0.9091)) +(: cnet_isa_2d5e1b8239 (IsA mountain_lady_s_slipper lady_s_slipper) (STV 1.0 0.9091)) +(: cnet_isa_08f9a27d07 (IsA mountain_laurel kalmia) (STV 1.0 0.9091)) +(: cnet_isa_9ea7613462 (IsA mountain_lily buttercup) (STV 1.0 0.9091)) +(: cnet_isa_a7a4f35d06 (IsA mountain_lily lily) (STV 1.0 0.9091)) +(: cnet_isa_4d3b9c07b9 (IsA mountain_male_fern wood_fern) (STV 1.0 0.9091)) +(: cnet_isa_9f7e407225 (IsA mountain_maple maple) (STV 1.0 0.9091)) +(: cnet_isa_47a4ade7ff (IsA mountain_mint herb) (STV 1.0 0.9091)) +(: cnet_isa_45de793a2b (IsA mountain_nyala antelope) (STV 1.0 0.9091)) +(: cnet_isa_bec735b342 (IsA mountain_paca rodent) (STV 1.0 0.9091)) +(: cnet_isa_2024bb7a3c (IsA mountain_peak peak) (STV 1.0 0.9091)) +(: cnet_isa_37b4182626 (IsA mountain_pride wildflower) (STV 1.0 0.9091)) +(: cnet_isa_dda45f690d (IsA mountain_quail partridge) (STV 1.0 0.9091)) +(: cnet_isa_8a53481820 (IsA mountain_rice ricegrass) (STV 1.0 0.9091)) +(: cnet_isa_0384d6ba65 (IsA mountain_rimu shrub) (STV 1.0 0.9091)) +(: cnet_isa_d1483f878a (IsA mountain_rose rose) (STV 1.0 0.9091)) +(: cnet_isa_7c6db3fc8b (IsA mountain_sandwort sandwort) (STV 1.0 0.9091)) +(: cnet_isa_f92e3d7287 (IsA mountain_sheep wild_sheep) (STV 1.0 0.9091)) +(: cnet_isa_c6da7fae53 (IsA mountain_sickness altitude_sickness) (STV 1.0 0.9091)) +(: cnet_isa_d1c5e35d6c (IsA mountain_skink skink) (STV 1.0 0.9091)) +(: cnet_isa_318b78c9fb (IsA mountain_spleenwort spleenwort) (STV 1.0 0.9091)) +(: cnet_isa_0f58847198 (IsA mountain_swamp_gum eucalyptus) (STV 1.0 0.9091)) +(: cnet_isa_1572d9b4b0 (IsA mountain_tent tent) (STV 1.0 0.9091)) +(: cnet_isa_d03ad04886 (IsA mountain_time civil_time) (STV 1.0 0.9091)) +(: cnet_isa_2e110b6ea8 (IsA mountain_trail trail) (STV 1.0 0.9091)) +(: cnet_isa_f4487a6a22 (IsA mountain_zebra zebra) (STV 1.0 0.9091)) +(: cnet_isa_9088dc6035 (IsA mountaineer adventurer) (STV 1.0 0.9091)) +(: cnet_isa_9702f76d07 (IsA mountaineer climber) (STV 1.0 0.9091)) +(: cnet_isa_4c447731a4 (IsA mountain active_volcano) (STV 1.0 0.9339)) +(: cnet_isa_38547d1a40 (IsA mountainside slope) (STV 1.0 0.9091)) +(: cnet_isa_8eb3ff6bf8 (IsA mountebank deceiver) (STV 1.0 0.9091)) +(: cnet_isa_c9c2b872f8 (IsA mounter ascender) (STV 1.0 0.9091)) +(: cnet_isa_e44df639b6 (IsA mounter skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_b076520029 (IsA mountie policeman) (STV 1.0 0.9091)) +(: cnet_isa_5ef8de7599 (IsA mounting framework) (STV 1.0 0.9091)) +(: cnet_isa_57192b0e38 (IsA mourner unfortunate) (STV 1.0 0.9091)) +(: cnet_isa_d7c2e1722c (IsA mournfulness sorrow) (STV 1.0 0.9091)) +(: cnet_isa_6d94875b24 (IsA mourning sadness) (STV 1.0 0.9091)) +(: cnet_isa_4e065b25b8 (IsA mourning_cloak nymphalid) (STV 1.0 0.9091)) +(: cnet_isa_368ae859ac (IsA mourning_dove dove) (STV 1.0 0.9091)) +(: cnet_isa_487fd61190 (IsA mourning_ring ring) (STV 1.0 0.9091)) +(: cnet_isa_5ba9cfa6a6 (IsA mouse mammal) (STV 1.0 0.9608)) +(: cnet_isa_d05c102d0f (IsA mouse rodent) (STV 1.0 0.9091)) +(: cnet_isa_a7ddff5cff (IsA mouse electronic_device) (STV 1.0 0.9091)) +(: cnet_isa_63cd02c9c4 (IsA mouse person) (STV 1.0 0.9091)) +(: cnet_isa_4f96f32ba9 (IsA mouse_button push_button) (STV 1.0 0.9091)) +(: cnet_isa_9053dc0d1f (IsA mouse_ear_chickweed herb) (STV 1.0 0.9091)) +(: cnet_isa_49a42e62b9 (IsA mouse_ear_hawkweed hawkweed) (STV 1.0 0.9091)) +(: cnet_isa_68aceed8d8 (IsA mouse_eared_bat carnivorous_bat) (STV 1.0 0.9091)) +(: cnet_isa_4500c09c97 (IsA mouse_nest nest) (STV 1.0 0.9091)) +(: cnet_isa_8a5a0df382 (IsA mouse_tooth_forcep forcep) (STV 1.0 0.9091)) +(: cnet_isa_48754ad4c7 (IsA mousepad mat) (STV 1.0 0.9091)) +(: cnet_isa_23dcffaa24 (IsA mouser domestic_cat) (STV 1.0 0.9091)) +(: cnet_isa_3880e2bc46 (IsA mousetrap maneuver) (STV 1.0 0.9091)) +(: cnet_isa_3ab3868d51 (IsA mousetrap trap) (STV 1.0 0.9091)) +(: cnet_isa_3fcedc695b (IsA moussaka dish) (STV 1.0 0.9091)) +(: cnet_isa_c0e7749bb6 (IsA mousse toiletry) (STV 1.0 0.9091)) +(: cnet_isa_dc7a76ed53 (IsA mousse dessert) (STV 1.0 0.9091)) +(: cnet_isa_0d3b449636 (IsA mousse dish) (STV 1.0 0.9091)) +(: cnet_isa_6707de90ca (IsA mousseline_de_sole fabric) (STV 1.0 0.9091)) +(: cnet_isa_c7abdced0d (IsA mouth opening) (STV 1.0 0.9091)) +(: cnet_isa_2f21b21606 (IsA mouth orifice) (STV 1.0 0.9091)) +(: cnet_isa_91ad93b376 (IsA mouth rima) (STV 1.0 0.9091)) +(: cnet_isa_0ff869c0f4 (IsA mouth geological_formation) (STV 1.0 0.9091)) +(: cnet_isa_5df97a27e1 (IsA mouth eater) (STV 1.0 0.9091)) +(: cnet_isa_133fdde6cd (IsA mouth_hole hole) (STV 1.0 0.9091)) +(: cnet_isa_5e96354145 (IsA mouthbreeder fish) (STV 1.0 0.9091)) +(: cnet_isa_381af2cec7 (IsA mouthful containerful) (STV 1.0 0.9091)) +(: cnet_isa_ecfd15958d (IsA mouthpart extremity) (STV 1.0 0.9091)) +(: cnet_isa_333f68fb46 (IsA mouthpiece acoustic_device) (STV 1.0 0.9091)) +(: cnet_isa_21a1dc56d1 (IsA mouthpiece aperture) (STV 1.0 0.9091)) +(: cnet_isa_4c91ad3d05 (IsA mouthpiece tube) (STV 1.0 0.9091)) +(: cnet_isa_8f128b2fa6 (IsA mouthpiece sport_equipment) (STV 1.0 0.9091)) +(: cnet_isa_673d9a67f3 (IsA mouthpiece spokesperson) (STV 1.0 0.9091)) +(: cnet_isa_65bf4e2f1c (IsA mouthwash personal_hygeine_product) (STV 1.0 0.9091)) +(: cnet_isa_b86b660fdc (IsA mouton meat) (STV 1.0 0.9091)) +(: cnet_isa_6b644f14b5 (IsA movability mobility) (STV 1.0 0.9091)) +(: cnet_isa_d6fda1053e (IsA movable_barrier barrier) (STV 1.0 0.9091)) +(: cnet_isa_04af1b38ad (IsA movable_feast feast_day) (STV 1.0 0.9091)) +(: cnet_isa_f0930653a8 (IsA move change) (STV 1.0 0.9091)) +(: cnet_isa_fb724609be (IsA move decision) (STV 1.0 0.9091)) +(: cnet_isa_4e05405404 (IsA move turn) (STV 1.0 0.9091)) +(: cnet_isa_e0e49ddb65 (IsA movement change) (STV 1.0 0.9091)) +(: cnet_isa_eabe9416aa (IsA movement action) (STV 1.0 0.9091)) +(: cnet_isa_a50dc140c2 (IsA movement musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_16d95815f6 (IsA movement happening) (STV 1.0 0.9091)) +(: cnet_isa_647f99e226 (IsA movement social_group) (STV 1.0 0.9091)) +(: cnet_isa_681310a750 (IsA mover company) (STV 1.0 0.9091)) +(: cnet_isa_23570e6765 (IsA mover traveler) (STV 1.0 0.9091)) +(: cnet_isa_e0ce295629 (IsA mover workman) (STV 1.0 0.9091)) +(: cnet_isa_b55eb57336 (IsA movie film) (STV 1.0 0.9454)) +(: cnet_isa_77d4b25bc1 (IsA movie sequence_of_frame) (STV 1.0 0.9339)) +(: cnet_isa_67ae9d8105 (IsA movie product) (STV 1.0 0.9091)) +(: cnet_isa_71e13c9379 (IsA movie show) (STV 1.0 0.9091)) +(: cnet_isa_a8a29ce337 (IsA movie_and_book media) (STV 1.0 0.9091)) +(: cnet_isa_6b8bf65498 (IsA movie_making devising) (STV 1.0 0.9091)) +(: cnet_isa_5819a546cc (IsA movie_projector projector) (STV 1.0 0.9091)) +(: cnet_isa_bdc694ed5e (IsA movie_watching passive_entertainment) (STV 1.0 0.9091)) +(: cnet_isa_af221ba056 (IsA moviegoer spectator) (STV 1.0 0.9091)) +(: cnet_isa_9fd88faea8 (IsA movy form_of_popular_entertainment) (STV 1.0 0.9339)) +(: cnet_isa_ba511a14bb (IsA movy suspenseful) (STV 1.0 0.9339)) +(: cnet_isa_0b1fb3b72a (IsA moving_coil_galvanometer galvanometer) (STV 1.0 0.9091)) +(: cnet_isa_c8581f813f (IsA moving_expense expense) (STV 1.0 0.9091)) +(: cnet_isa_8f8d82761d (IsA moving_slowly action) (STV 1.0 0.9091)) +(: cnet_isa_0ab4a5647d (IsA moving_slowly activity) (STV 1.0 0.9091)) +(: cnet_isa_a053b7846f (IsA moving_van van) (STV 1.0 0.9091)) +(: cnet_isa_86dbbedd87 (IsA mozambican african) (STV 1.0 0.9091)) +(: cnet_isa_bd190a0f23 (IsA mozambique_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_302d337351 (IsA mozart austrian_composer) (STV 1.0 0.9091)) +(: cnet_isa_e673c5bb87 (IsA mozart brilliant_musical_composer) (STV 1.0 0.9091)) +(: cnet_isa_f13ef3b0ae (IsA mozart famous_composer) (STV 1.0 0.9339)) +(: cnet_isa_65f133aece (IsA mozart great_composer) (STV 1.0 0.9339)) +(: cnet_isa_1a736da81a (IsA mozart music) (STV 1.0 0.9091)) +(: cnet_isa_14ac3f117b (IsA mozzarella cheese) (STV 1.0 0.9091)) +(: cnet_isa_3a66d6bcf9 (IsA mpeg compression) (STV 1.0 0.9091)) +(: cnet_isa_c9f72cb542 (IsA mrs title) (STV 1.0 0.9091)) +(: cnet_isa_64ca2c9e37 (IsA ms title) (STV 1.0 0.9091)) +(: cnet_isa_94c973b8a7 (IsA ms_dos operating_system) (STV 1.0 0.9091)) +(: cnet_isa_dcef272d99 (IsA msasa tree) (STV 1.0 0.9091)) +(: cnet_isa_79dc35b228 (IsA mu letter) (STV 1.0 0.9091)) +(: cnet_isa_7e6b3b0a49 (IsA much large_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_6ee07d0ef0 (IsA muchness magnitude) (STV 1.0 0.9091)) +(: cnet_isa_e9bc338b25 (IsA mucic_acid carboxylic_acid) (STV 1.0 0.9091)) +(: cnet_isa_4af3221885 (IsA mucilage gum) (STV 1.0 0.9091)) +(: cnet_isa_1f0aa03892 (IsA mucin glycoprotein) (STV 1.0 0.9091)) +(: cnet_isa_6bde32ff33 (IsA muckraker detractor) (STV 1.0 0.9091)) +(: cnet_isa_921670215e (IsA muckraking exposure) (STV 1.0 0.9091)) +(: cnet_isa_87e88213bc (IsA mucocutaneous_leishmaniasis leishmaniasis) (STV 1.0 0.9091)) +(: cnet_isa_051a68d8ba (IsA mucoid glycoprotein) (STV 1.0 0.9091)) +(: cnet_isa_9909c0a768 (IsA mucopolysaccharide polysaccharide) (STV 1.0 0.9091)) +(: cnet_isa_8385e9bd02 (IsA mucopolysaccharidosis genetic_disease) (STV 1.0 0.9091)) +(: cnet_isa_34f5f92f53 (IsA mucor mold) (STV 1.0 0.9091)) +(: cnet_isa_2361928419 (IsA mucoraceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_e1e4a10d77 (IsA mucorale fungus_order) (STV 1.0 0.9091)) +(: cnet_isa_29194b92e3 (IsA mucous_membrane membrane) (STV 1.0 0.9091)) +(: cnet_isa_33a321c49b (IsA mucuna shrub) (STV 1.0 0.9091)) +(: cnet_isa_d2154cf679 (IsA mucus secretion) (STV 1.0 0.9091)) +(: cnet_isa_0fda3335bc (IsA mud slander) (STV 1.0 0.9091)) +(: cnet_isa_6b4b9ac79e (IsA mud soil) (STV 1.0 0.9091)) +(: cnet_isa_cfac4eb94c (IsA mud_bath bath) (STV 1.0 0.9091)) +(: cnet_isa_4f25c393d3 (IsA mud_brick brick) (STV 1.0 0.9091)) +(: cnet_isa_f5c82d00bd (IsA mud_dauber sphecoid_wasp) (STV 1.0 0.9091)) +(: cnet_isa_aa8baab0bd (IsA mud_flat tract) (STV 1.0 0.9091)) +(: cnet_isa_8af52c9798 (IsA mud_midget duckweed) (STV 1.0 0.9091)) +(: cnet_isa_e80048d068 (IsA mud_pie mud) (STV 1.0 0.9091)) +(: cnet_isa_e0a6d815fe (IsA mud_puddle pool) (STV 1.0 0.9091)) +(: cnet_isa_a70c721d59 (IsA mud_puppy salamander) (STV 1.0 0.9091)) +(: cnet_isa_8ce6d57639 (IsA mud_stain stain) (STV 1.0 0.9091)) +(: cnet_isa_cd34e0b793 (IsA mud_turtle turtle) (STV 1.0 0.9091)) +(: cnet_isa_239c2442bf (IsA mudder racehorse) (STV 1.0 0.9091)) +(: cnet_isa_92d4e275c9 (IsA muddiness wetness) (STV 1.0 0.9091)) +(: cnet_isa_3dbaef208e (IsA mudguard fender) (STV 1.0 0.9091)) +(: cnet_isa_e5e43df648 (IsA mudhif hovel) (STV 1.0 0.9091)) +(: cnet_isa_4c51ae5b07 (IsA mudra gesture) (STV 1.0 0.9091)) +(: cnet_isa_ed37760e62 (IsA mudskipper goby) (STV 1.0 0.9091)) +(: cnet_isa_ba95e7a07d (IsA mudslide landslide) (STV 1.0 0.9091)) +(: cnet_isa_cb03d3692e (IsA muenster cheese) (STV 1.0 0.9091)) +(: cnet_isa_9e5d9655b6 (IsA muesli breakfast_food) (STV 1.0 0.9091)) +(: cnet_isa_35a77c305e (IsA muezzin announcer) (STV 1.0 0.9091)) +(: cnet_isa_1b88e68bdf (IsA muff handwear) (STV 1.0 0.9091)) +(: cnet_isa_c89ad11de9 (IsA muffin quick_bread) (STV 1.0 0.9091)) +(: cnet_isa_71186e88ba (IsA muffin_man peddler) (STV 1.0 0.9091)) +(: cnet_isa_b9cad62ab8 (IsA muffin_and_celery both_food) (STV 1.0 0.9339)) +(: cnet_isa_0718ae4900 (IsA muffle kiln) (STV 1.0 0.9091)) +(: cnet_isa_b791e1bc64 (IsA muffler scarf) (STV 1.0 0.9091)) +(: cnet_isa_cfae3aba65 (IsA mufti civilian_clothing) (STV 1.0 0.9091)) +(: cnet_isa_5f92842362 (IsA mufti jurist) (STV 1.0 0.9091)) +(: cnet_isa_8c58359917 (IsA mug_s_game attempt) (STV 1.0 0.9091)) +(: cnet_isa_92d8648410 (IsA mug container) (STV 1.0 0.9091)) +(: cnet_isa_1e81711962 (IsA mug drinking_vessel) (STV 1.0 0.9091)) +(: cnet_isa_92a62fd418 (IsA mug containerful) (STV 1.0 0.9091)) +(: cnet_isa_08ffad0a6d (IsA mug_file file) (STV 1.0 0.9091)) +(: cnet_isa_4784ff4181 (IsA mug_shot picture) (STV 1.0 0.9091)) +(: cnet_isa_a500b1ef3c (IsA muggee victim) (STV 1.0 0.9091)) +(: cnet_isa_959d9d184b (IsA mugger robber) (STV 1.0 0.9091)) +(: cnet_isa_37d10c0f41 (IsA mugginess humidity) (STV 1.0 0.9091)) +(: cnet_isa_41f92bdf50 (IsA mugging assault) (STV 1.0 0.9091)) +(: cnet_isa_079d691978 (IsA mugil fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_aa2deb3856 (IsA mugilidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_39cf11acb0 (IsA mugiloidea animal_order) (STV 1.0 0.9091)) +(: cnet_isa_7b0bb16255 (IsA mugwort wormwood) (STV 1.0 0.9091)) +(: cnet_isa_733365e111 (IsA mugwump politician) (STV 1.0 0.9091)) +(: cnet_isa_bda480e34f (IsA mugwump individualist) (STV 1.0 0.9091)) +(: cnet_isa_b4cb0cf62a (IsA muharram islamic_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_d874f5cb86 (IsA muhlenbergia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a2cbf0cb50 (IsA muishond weasel) (STV 1.0 0.9091)) +(: cnet_isa_dfc14b07ca (IsA mujahedeen_khalq mujahidin) (STV 1.0 0.9091)) +(: cnet_isa_fe9cd73226 (IsA mujahid moslem) (STV 1.0 0.9091)) +(: cnet_isa_8ae3c8756c (IsA mujahidin military_unit) (STV 1.0 0.9091)) +(: cnet_isa_e475b45d27 (IsA mujtihad moslem) (STV 1.0 0.9091)) +(: cnet_isa_4462137cfc (IsA mujtihad scholar) (STV 1.0 0.9091)) +(: cnet_isa_4ca7204f1a (IsA mukataa headquarter) (STV 1.0 0.9091)) +(: cnet_isa_9a9619ca1d (IsA mulatto mixed_blood) (STV 1.0 0.9091)) +(: cnet_isa_d1882581f4 (IsA mulberry berry) (STV 1.0 0.9091)) +(: cnet_isa_e05db955c8 (IsA mulberry fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_79157fd9af (IsA mulch protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_16e6cce86c (IsA mule_s_ear wildflower) (STV 1.0 0.9091)) +(: cnet_isa_f652b5fb97 (IsA mule cross_between_horse_and_donkey) (STV 1.0 0.9091)) +(: cnet_isa_3b9db047af (IsA mule equine) (STV 1.0 0.9091)) +(: cnet_isa_49d6d549b3 (IsA mule slipper) (STV 1.0 0.9091)) +(: cnet_isa_989d20b111 (IsA mule_deer deer) (STV 1.0 0.9091)) +(: cnet_isa_c50fe17cd1 (IsA mule_fat shrub) (STV 1.0 0.9091)) +(: cnet_isa_9bbd7e92d8 (IsA muleteer laborer) (STV 1.0 0.9091)) +(: cnet_isa_7f3b5ffc1b (IsA mull promontory) (STV 1.0 0.9091)) +(: cnet_isa_0d2205e046 (IsA mulled_cider sweet_cider) (STV 1.0 0.9091)) +(: cnet_isa_d9e9369263 (IsA mulled_wine wine) (STV 1.0 0.9091)) +(: cnet_isa_2bc96a0696 (IsA mullein herb) (STV 1.0 0.9091)) +(: cnet_isa_99b6182b19 (IsA mullein_pink lychnis) (STV 1.0 0.9091)) +(: cnet_isa_ffcd381561 (IsA muller vessel) (STV 1.0 0.9091)) +(: cnet_isa_5d1797ee73 (IsA mullet bottom_feeder) (STV 1.0 0.9091)) +(: cnet_isa_0c38ae95bd (IsA mullet percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_0ec7a8f866 (IsA mullet fish) (STV 1.0 0.9091)) +(: cnet_isa_8489e25425 (IsA mullidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_534e62417f (IsA mulligan_stew stew) (STV 1.0 0.9091)) +(: cnet_isa_bdf6177113 (IsA mulligatawny soup) (STV 1.0 0.9091)) +(: cnet_isa_486e3c44c3 (IsA mullion strip) (STV 1.0 0.9091)) +(: cnet_isa_4d3ffd0846 (IsA mulloidichthy fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_adf4dcf8bf (IsA mulloway sciaenid_fish) (STV 1.0 0.9091)) +(: cnet_isa_272aec99b2 (IsA mullus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_41071470f8 (IsA multi_billionaire rich_person) (STV 1.0 0.9091)) +(: cnet_isa_9226b8af73 (IsA multibank_holding_company bank_holding_company) (STV 1.0 0.9091)) +(: cnet_isa_99c734cfd6 (IsA multichannel_recorder recorder) (STV 1.0 0.9091)) +(: cnet_isa_a26ae3b4d4 (IsA multicollinearity multiple_regression) (STV 1.0 0.9091)) +(: cnet_isa_e0743474c1 (IsA multiculturalism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_5627d7cac0 (IsA multidimensional_language programming_language) (STV 1.0 0.9091)) +(: cnet_isa_a6928cd4b6 (IsA multiengine_airplane airplane) (STV 1.0 0.9091)) +(: cnet_isa_25235b13c9 (IsA multiflora rose) (STV 1.0 0.9091)) +(: cnet_isa_7fee446bf2 (IsA multifocal_len_implant len_implant) (STV 1.0 0.9091)) +(: cnet_isa_8bae15e20f (IsA multimedia transmission) (STV 1.0 0.9091)) +(: cnet_isa_5bfadaac93 (IsA multiple product) (STV 1.0 0.9091)) +(: cnet_isa_d1d5a2acc6 (IsA multiple_correlation_coefficient correlation_coefficient) (STV 1.0 0.9091)) +(: cnet_isa_8fe99946fd (IsA multiple_mononeuropathy neuropathy) (STV 1.0 0.9091)) +(: cnet_isa_6b41bcbcbf (IsA multiple_myeloma myeloma) (STV 1.0 0.9091)) +(: cnet_isa_509626a008 (IsA multiple_regression multivariate_analysis) (STV 1.0 0.9091)) +(: cnet_isa_a1dded9425 (IsA multiple_sclerosis autoimmune_disease) (STV 1.0 0.9091)) +(: cnet_isa_37b750735b (IsA multiple_sclerosis degenerative_disorder) (STV 1.0 0.9091)) +(: cnet_isa_bd6e1c1ba7 (IsA multiple_sclerosis sclerosis) (STV 1.0 0.9091)) +(: cnet_isa_322b57baf6 (IsA multiple_star star) (STV 1.0 0.9091)) +(: cnet_isa_0d6938654d (IsA multiple_voting vote) (STV 1.0 0.9091)) +(: cnet_isa_83cb3831ee (IsA multiplex cinema) (STV 1.0 0.9091)) +(: cnet_isa_a43be7d24f (IsA multiplex telecommunication) (STV 1.0 0.9091)) +(: cnet_isa_29a2ffcaae (IsA multiplex_operation operation) (STV 1.0 0.9091)) +(: cnet_isa_66bbe50401 (IsA multiplexer electronic_device) (STV 1.0 0.9091)) +(: cnet_isa_350d07f796 (IsA multiplicand number) (STV 1.0 0.9091)) +(: cnet_isa_2a7b50571c (IsA multiplication arithmetic_operation) (STV 1.0 0.9091)) +(: cnet_isa_54c555870f (IsA multiplication increase) (STV 1.0 0.9091)) +(: cnet_isa_660c56eba1 (IsA multiplicative_inverse inverse) (STV 1.0 0.9091)) +(: cnet_isa_a96db94d38 (IsA multiplicity magnitude) (STV 1.0 0.9091)) +(: cnet_isa_ae6b09244d (IsA multiplier number) (STV 1.0 0.9091)) +(: cnet_isa_6762bfd2a5 (IsA multiprocessing data_processing) (STV 1.0 0.9091)) +(: cnet_isa_ba57ad4332 (IsA multiprocessor digital_computer) (STV 1.0 0.9091)) +(: cnet_isa_de489db31e (IsA multiprogramming execution) (STV 1.0 0.9091)) +(: cnet_isa_96637ac38e (IsA multistage time_period) (STV 1.0 0.9091)) +(: cnet_isa_64f7ef4183 (IsA multistage_rocket rocket) (STV 1.0 0.9091)) +(: cnet_isa_5ae2235336 (IsA multitude gathering) (STV 1.0 0.9091)) +(: cnet_isa_66e735014f (IsA multitude group) (STV 1.0 0.9091)) +(: cnet_isa_9383c660c1 (IsA multitudinousness numerousness) (STV 1.0 0.9091)) +(: cnet_isa_fcaac93660 (IsA multivariate_analysis statistical_method) (STV 1.0 0.9091)) +(: cnet_isa_27601e0aa7 (IsA multiversity university) (STV 1.0 0.9091)) +(: cnet_isa_c9f226a1b7 (IsA multivitamin vitamin_pill) (STV 1.0 0.9091)) +(: cnet_isa_929408a450 (IsA mum secrecy) (STV 1.0 0.9091)) +(: cnet_isa_a038dbc9bc (IsA mumble utterance) (STV 1.0 0.9091)) +(: cnet_isa_4b1de5b605 (IsA mumblety_peg child_s_game) (STV 1.0 0.9091)) +(: cnet_isa_0de1c5ab4c (IsA mumbling chew) (STV 1.0 0.9091)) +(: cnet_isa_29f0c42858 (IsA mumbling enunciation) (STV 1.0 0.9091)) +(: cnet_isa_8f14e63286 (IsA mumbo_jumbo gibberish) (STV 1.0 0.9091)) +(: cnet_isa_7a6528dc3c (IsA mummery nonsense) (STV 1.0 0.9091)) +(: cnet_isa_d8f91c7955 (IsA mummichog killifish) (STV 1.0 0.9091)) +(: cnet_isa_002668456a (IsA mummy body) (STV 1.0 0.9091)) +(: cnet_isa_cddc8ae8e4 (IsA mummification embalmment) (STV 1.0 0.9091)) +(: cnet_isa_a000dd9c18 (IsA mummification condition) (STV 1.0 0.9091)) +(: cnet_isa_461b9b773b (IsA mump infectious_disease) (STV 1.0 0.9091)) +(: cnet_isa_41ca70881a (IsA mumpsimus notion) (STV 1.0 0.9091)) +(: cnet_isa_fb9ad1b8c9 (IsA munch bite) (STV 1.0 0.9091)) +(: cnet_isa_0b66a6483a (IsA munchausen_s_syndrome syndrome) (STV 1.0 0.9091)) +(: cnet_isa_29dc3debba (IsA muncher chewer) (STV 1.0 0.9091)) +(: cnet_isa_17cc748fe9 (IsA munda austro_asiatic) (STV 1.0 0.9091)) +(: cnet_isa_3d3dedb298 (IsA mung bean) (STV 1.0 0.9091)) +(: cnet_isa_889c5824dd (IsA mung legume) (STV 1.0 0.9091)) +(: cnet_isa_8c20bf781b (IsA munich_beer lager) (STV 1.0 0.9091)) +(: cnet_isa_d7d4495c89 (IsA municipal_bond bond) (STV 1.0 0.9091)) +(: cnet_isa_22adcc43d4 (IsA municipal_government local_government) (STV 1.0 0.9091)) +(: cnet_isa_694c352fbe (IsA municipal_note note) (STV 1.0 0.9091)) +(: cnet_isa_10444ad13f (IsA municipality gathering) (STV 1.0 0.9091)) +(: cnet_isa_1f19f05631 (IsA municipality administrative_district) (STV 1.0 0.9091)) +(: cnet_isa_48d12199c3 (IsA municipality urban_area) (STV 1.0 0.9091)) +(: cnet_isa_4e28e56596 (IsA munificence liberality) (STV 1.0 0.9091)) +(: cnet_isa_57aa6561e8 (IsA muniment title_deed) (STV 1.0 0.9091)) +(: cnet_isa_e65feb5458 (IsA munition armament) (STV 1.0 0.9091)) +(: cnet_isa_f4f98c10d9 (IsA munition_industry industry) (STV 1.0 0.9091)) +(: cnet_isa_fb2f5cf569 (IsA munj grass) (STV 1.0 0.9091)) +(: cnet_isa_e82835ff36 (IsA muntiacus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_51cae691c0 (IsA muntingia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9b56cfd5ff (IsA muntjac deer) (STV 1.0 0.9091)) +(: cnet_isa_c6b9e04402 (IsA muon elementary_particle) (STV 1.0 0.9091)) +(: cnet_isa_b6dfda7463 (IsA muon lepton) (STV 1.0 0.9091)) +(: cnet_isa_8965a0de98 (IsA muppet puppet) (STV 1.0 0.9339)) +(: cnet_isa_c26f77f475 (IsA muraenidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_844056e819 (IsA mural painting) (STV 1.0 0.9091)) +(: cnet_isa_dffd784d44 (IsA muralist painter) (STV 1.0 0.9091)) +(: cnet_isa_4e48d32c29 (IsA murder crime) (STV 1.0 0.9756)) +(: cnet_isa_fd4d768045 (IsA murder evil) (STV 1.0 0.9091)) +(: cnet_isa_d51559a906 (IsA murder felony) (STV 1.0 0.9091)) +(: cnet_isa_a55a58db67 (IsA murder serious_crime) (STV 1.0 0.9091)) +(: cnet_isa_bffcf86919 (IsA murder homicide) (STV 1.0 0.9091)) +(: cnet_isa_9a7ca46d87 (IsA murder_charge indictment) (STV 1.0 0.9091)) +(: cnet_isa_0ad720d602 (IsA murder_conviction conviction) (STV 1.0 0.9091)) +(: cnet_isa_881214d9cb (IsA murder_mystery mystery) (STV 1.0 0.9091)) +(: cnet_isa_bdd7c87a18 (IsA murder_suspect suspect) (STV 1.0 0.9091)) +(: cnet_isa_504978ef86 (IsA murderee victim) (STV 1.0 0.9091)) +(: cnet_isa_e751798436 (IsA murderer criminal) (STV 1.0 0.9091)) +(: cnet_isa_1aa6755314 (IsA murderer killer) (STV 1.0 0.9091)) +(: cnet_isa_6ad7b11bd0 (IsA murderess murderer) (STV 1.0 0.9091)) +(: cnet_isa_6123199f9a (IsA murdering calculated_move) (STV 1.0 0.9091)) +(: cnet_isa_ddce41eebd (IsA murderousness cruelty) (STV 1.0 0.9091)) +(: cnet_isa_d28d17f89f (IsA murderousness hate) (STV 1.0 0.9091)) +(: cnet_isa_10b1f7e8e4 (IsA murder heinous_form_of_crime) (STV 1.0 0.9091)) +(: cnet_isa_8431917dd1 (IsA muriatic_acid hydrochloric_acid) (STV 1.0 0.9091)) +(: cnet_isa_dfd405960c (IsA muridae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_27f9f192d7 (IsA murine rodent) (STV 1.0 0.9091)) +(: cnet_isa_9280f09505 (IsA murine_typhus typhus) (STV 1.0 0.9091)) +(: cnet_isa_f85a1bacd9 (IsA murmur_vowel schwa) (STV 1.0 0.9091)) +(: cnet_isa_b8ec3cd889 (IsA muroidea mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_77a7f078bb (IsA murphy_s_law gnome) (STV 1.0 0.9091)) +(: cnet_isa_4a46720724 (IsA murphy_bed bed) (STV 1.0 0.9091)) +(: cnet_isa_cb06c2c36d (IsA murrain animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_e8b2061887 (IsA murre guillemot) (STV 1.0 0.9091)) +(: cnet_isa_e024418b87 (IsA mus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_a2432ebec7 (IsA musa monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1bfad91ed7 (IsA musaceae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_c190dcb251 (IsA musale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_57813e2632 (IsA musca arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_65c3518133 (IsA musca_volitan symptom) (STV 1.0 0.9091)) +(: cnet_isa_15da3d98f3 (IsA muscadet white_wine) (STV 1.0 0.9091)) +(: cnet_isa_14fa8ae2d0 (IsA muscadet vinifera) (STV 1.0 0.9091)) +(: cnet_isa_982f141d33 (IsA muscadine grape) (STV 1.0 0.9091)) +(: cnet_isa_81986d3e02 (IsA muscardinus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_3f49eb2b08 (IsA muscari liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c8e1455850 (IsA muscat fortified_wine) (STV 1.0 0.9091)) +(: cnet_isa_3ea66ec684 (IsA muscat vinifera_grape) (STV 1.0 0.9091)) +(: cnet_isa_0e2165f5ad (IsA muscat vinifera) (STV 1.0 0.9091)) +(: cnet_isa_cce55cc89b (IsA muscicapa bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_48c58dc2b8 (IsA muscicapidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_cdd683f749 (IsA muscidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_1eb31529f4 (IsA muscivora bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_1bde571d8c (IsA muscle meat) (STV 1.0 0.9091)) +(: cnet_isa_868bde9b28 (IsA muscle authority) (STV 1.0 0.9091)) +(: cnet_isa_b1781cc647 (IsA muscle animal_tissue) (STV 1.0 0.9091)) +(: cnet_isa_6f1fb9d886 (IsA muscle contractile_organ) (STV 1.0 0.9091)) +(: cnet_isa_bfbc325d10 (IsA muscle_cell fibre) (STV 1.0 0.9091)) +(: cnet_isa_afd6191925 (IsA muscle_cell somatic_cell) (STV 1.0 0.9091)) +(: cnet_isa_abca43cfa2 (IsA muscle_relaxant relaxant) (STV 1.0 0.9091)) +(: cnet_isa_fed37425e9 (IsA muscleman bully) (STV 1.0 0.9091)) +(: cnet_isa_486f4f3bc7 (IsA muscle in_human_body) (STV 1.0 0.9091)) +(: cnet_isa_2b1ede51c1 (IsA muscoidea arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_6aa7adadb0 (IsA muscovite russian) (STV 1.0 0.9091)) +(: cnet_isa_fb0d70fafe (IsA muscovite mica) (STV 1.0 0.9091)) +(: cnet_isa_95464631d8 (IsA muscovy_duck duck) (STV 1.0 0.9091)) +(: cnet_isa_49e4168ed6 (IsA muscular_dystrophy genetic_disease) (STV 1.0 0.9091)) +(: cnet_isa_f3d0f64e36 (IsA muscular_structure system) (STV 1.0 0.9091)) +(: cnet_isa_56b991f6a6 (IsA muscular_tonus tonicity) (STV 1.0 0.9091)) +(: cnet_isa_283c42fe15 (IsA muscularity physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_443b697ee9 (IsA musculophrenic_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_1e718633e3 (IsA musculophrenic_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_ff09a68d4f (IsA musculoskeletal_system system) (STV 1.0 0.9091)) +(: cnet_isa_50e34edc0f (IsA musculus_abductor_digiti_minimi_manus abductor) (STV 1.0 0.9091)) +(: cnet_isa_0486f44528 (IsA musculus_abductor_digiti_minimi_pedis abductor) (STV 1.0 0.9091)) +(: cnet_isa_61f275b7b3 (IsA musculus_abductor_hallucis abductor) (STV 1.0 0.9091)) +(: cnet_isa_1c926cadd1 (IsA musculus_abductor_pollicis abductor) (STV 1.0 0.9091)) +(: cnet_isa_c458a23fc9 (IsA musculus_adductor_brevis adductor) (STV 1.0 0.9091)) +(: cnet_isa_299c352eb8 (IsA musculus_adductor_hallucis adductor) (STV 1.0 0.9091)) +(: cnet_isa_c46c962d8d (IsA musculus_adductor_longus adductor) (STV 1.0 0.9091)) +(: cnet_isa_a109c8b41a (IsA musculus_adductor_magnus adductor) (STV 1.0 0.9091)) +(: cnet_isa_22aede1e37 (IsA musculus_articularis_cubiti articular_muscle) (STV 1.0 0.9091)) +(: cnet_isa_23c65d2ccb (IsA musculus_articularis_genus articular_muscle) (STV 1.0 0.9091)) +(: cnet_isa_0d8063ee79 (IsA musculus_bicep_femoris bicep) (STV 1.0 0.9091)) +(: cnet_isa_fda3363283 (IsA musculus_sphincter_ani_externus skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_9d9560afc5 (IsA musculus_sphincter_ani_internus smooth_muscle) (STV 1.0 0.9091)) +(: cnet_isa_17d51d9924 (IsA musculus_sphincter_ductus_choledochi sphincter) (STV 1.0 0.9091)) +(: cnet_isa_9082d768b4 (IsA musculus_sphincter_ductus_pancreatici sphincter) (STV 1.0 0.9091)) +(: cnet_isa_136be97bd0 (IsA muse source) (STV 1.0 0.9091)) +(: cnet_isa_053e5bd05b (IsA muse greek_deity) (STV 1.0 0.9091)) +(: cnet_isa_299c0c02c4 (IsA musette bagpipe) (STV 1.0 0.9091)) +(: cnet_isa_59d39e3693 (IsA musette_pipe oboe) (STV 1.0 0.9091)) +(: cnet_isa_9e14417db3 (IsA museum depository) (STV 1.0 0.9091)) +(: cnet_isa_31724b0b2e (IsA musgu biu_mandara) (STV 1.0 0.9091)) +(: cnet_isa_ea0cf1b00a (IsA mush journey) (STV 1.0 0.9091)) +(: cnet_isa_4c8bfdc13e (IsA mush hot_cereal) (STV 1.0 0.9091)) +(: cnet_isa_5b77810b0f (IsA musher traveler) (STV 1.0 0.9091)) +(: cnet_isa_08f89f457a (IsA mushiness softness) (STV 1.0 0.9091)) +(: cnet_isa_05ff06e981 (IsA mushroom fungus) (STV 1.0 0.9636)) +(: cnet_isa_6ca92d0091 (IsA mushroom vegetable) (STV 1.0 0.9091)) +(: cnet_isa_8ccb6f4217 (IsA mushroom cloud) (STV 1.0 0.9091)) +(: cnet_isa_eac150d4ee (IsA mushroom agaric) (STV 1.0 0.9091)) +(: cnet_isa_c96fdbad71 (IsA mushroom basidiomycete) (STV 1.0 0.9091)) +(: cnet_isa_54eb4fe58f (IsA mushroom_anchor anchor) (STV 1.0 0.9091)) +(: cnet_isa_6e7c1df2c6 (IsA mushroom_coral stony_coral) (STV 1.0 0.9091)) +(: cnet_isa_3d51a5f97f (IsA mushroom_pimple hypocreaceae) (STV 1.0 0.9091)) +(: cnet_isa_88519b5a39 (IsA mushroom_poisoning food_poisoning) (STV 1.0 0.9091)) +(: cnet_isa_ef6393fe94 (IsA mushroom_sauce sauce) (STV 1.0 0.9091)) +(: cnet_isa_2428f6fcba (IsA mushy_pea side_dish) (STV 1.0 0.9091)) +(: cnet_isa_ef191150ab (IsA music sequence_of_sound) (STV 1.0 0.9339)) +(: cnet_isa_380c915dad (IsA music way_to_let_out_emotion) (STV 1.0 0.9339)) +(: cnet_isa_eaa285c650 (IsA music punishment) (STV 1.0 0.9091)) +(: cnet_isa_720992a387 (IsA music auditory_communication) (STV 1.0 0.9091)) +(: cnet_isa_f21662ae97 (IsA music activity) (STV 1.0 0.9091)) +(: cnet_isa_27ef7bf8f7 (IsA music_box musical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_454b5fc345 (IsA music_critic critic) (STV 1.0 0.9091)) +(: cnet_isa_8ddd013967 (IsA music_department academic_department) (STV 1.0 0.9091)) +(: cnet_isa_2a341a9fce (IsA music_genre expressive_style) (STV 1.0 0.9091)) +(: cnet_isa_bbe46222d6 (IsA music_genre music) (STV 1.0 0.9091)) +(: cnet_isa_50ca2b0277 (IsA music_hall theatre) (STV 1.0 0.9091)) +(: cnet_isa_34aeaef1b3 (IsA music_hall theater) (STV 1.0 0.9091)) +(: cnet_isa_1eb77841a2 (IsA music_lesson lesson) (STV 1.0 0.9091)) +(: cnet_isa_e64916cc18 (IsA music_of_sphere music) (STV 1.0 0.9091)) +(: cnet_isa_599ffc87d6 (IsA music_paper paper) (STV 1.0 0.9091)) +(: cnet_isa_aef3782f4b (IsA music_school conservatory) (STV 1.0 0.9091)) +(: cnet_isa_53da9a704f (IsA music_stand rack) (STV 1.0 0.9091)) +(: cnet_isa_939f088ec4 (IsA music_stool stool) (STV 1.0 0.9091)) +(: cnet_isa_c3d63fb8a1 (IsA music_teacher teacher) (STV 1.0 0.9091)) +(: cnet_isa_a9fa1544e8 (IsA musical play) (STV 1.0 0.9608)) +(: cnet_isa_1ca48db44b (IsA musical play_in) (STV 1.0 0.9091)) +(: cnet_isa_34d187b01b (IsA musical movie) (STV 1.0 0.9091)) +(: cnet_isa_ddb16db3ce (IsA musical_arrangement musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_4295578a24 (IsA musical_chair child_s_game) (STV 1.0 0.9091)) +(: cnet_isa_9168291986 (IsA musical_chair rearrangement) (STV 1.0 0.9091)) +(: cnet_isa_51503616e1 (IsA musical_composition music) (STV 1.0 0.9091)) +(: cnet_isa_e79a4b4af4 (IsA musical_drama opera) (STV 1.0 0.9091)) +(: cnet_isa_4455b5e859 (IsA musical_instrument device) (STV 1.0 0.9339)) +(: cnet_isa_b70193d046 (IsA musical_instrument_digital_interface protocol) (STV 1.0 0.9091)) +(: cnet_isa_4e91d9307e (IsA musical_notation written_language) (STV 1.0 0.9091)) +(: cnet_isa_df6ccb5459 (IsA musical_notation notation) (STV 1.0 0.9091)) +(: cnet_isa_3d7b211794 (IsA musical_organization organization) (STV 1.0 0.9091)) +(: cnet_isa_ee08171250 (IsA musical_perception auditory_perception) (STV 1.0 0.9091)) +(: cnet_isa_71e35d990e (IsA musical_performance performance) (STV 1.0 0.9091)) +(: cnet_isa_7cdf954a97 (IsA musical_performance performing_art) (STV 1.0 0.9091)) +(: cnet_isa_49bcaaaecf (IsA musical_soiree soiree) (STV 1.0 0.9091)) +(: cnet_isa_03343ee578 (IsA musical_time time) (STV 1.0 0.9091)) +(: cnet_isa_fbbc198202 (IsA musicality sound_property) (STV 1.0 0.9091)) +(: cnet_isa_e7514c643e (IsA musician person_who_play_music) (STV 1.0 0.9339)) +(: cnet_isa_1ea9ad872e (IsA musician artist) (STV 1.0 0.9091)) +(: cnet_isa_b53cc07719 (IsA musician performer) (STV 1.0 0.9091)) +(: cnet_isa_a3030f8865 (IsA musicianship art) (STV 1.0 0.9091)) +(: cnet_isa_8e7854d2d4 (IsA musicogenic_epilepsy reflex_epilepsy) (STV 1.0 0.9091)) +(: cnet_isa_627c1ecc5f (IsA musicologist scholar) (STV 1.0 0.9091)) +(: cnet_isa_46f3ff83c6 (IsA musicology humanistic_discipline) (STV 1.0 0.9091)) +(: cnet_isa_d516ed279b (IsA musk scent) (STV 1.0 0.9091)) +(: cnet_isa_4fd6171897 (IsA musk secretion) (STV 1.0 0.9091)) +(: cnet_isa_f8d46c6213 (IsA musk_clover storksbill) (STV 1.0 0.9091)) +(: cnet_isa_ac9e2fb5f3 (IsA musk_deer deer) (STV 1.0 0.9091)) +(: cnet_isa_f768141a46 (IsA musk_kangaroo kangaroo) (STV 1.0 0.9091)) +(: cnet_isa_2dc3f3cfc1 (IsA musk_mallow mallow) (STV 1.0 0.9091)) +(: cnet_isa_88a78d367e (IsA musk_ox bovid) (STV 1.0 0.9091)) +(: cnet_isa_e779c100a6 (IsA musk_rose rose) (STV 1.0 0.9091)) +(: cnet_isa_4adbb462de (IsA musk_thistle thistle) (STV 1.0 0.9091)) +(: cnet_isa_16c3b1e67b (IsA musk_turtle mud_turtle) (STV 1.0 0.9091)) +(: cnet_isa_89d649287b (IsA muskellunge pike) (STV 1.0 0.9091)) +(: cnet_isa_26b4babc95 (IsA musket muzzle_loader) (STV 1.0 0.9091)) +(: cnet_isa_c3d45fcada (IsA musket_ball shot) (STV 1.0 0.9091)) +(: cnet_isa_c5a0966d0a (IsA musketeer infantryman) (STV 1.0 0.9091)) +(: cnet_isa_5714a1971f (IsA musketry proficiency) (STV 1.0 0.9091)) +(: cnet_isa_b8f0a78763 (IsA musketry army_unit) (STV 1.0 0.9091)) +(: cnet_isa_e3e67071b1 (IsA muskhogean amerind) (STV 1.0 0.9091)) +(: cnet_isa_3a56cb5b72 (IsA muskiness olfactory_property) (STV 1.0 0.9091)) +(: cnet_isa_35f28a2be5 (IsA muskmelon melon) (STV 1.0 0.9091)) +(: cnet_isa_551790e4b9 (IsA muskogean native_american) (STV 1.0 0.9091)) +(: cnet_isa_70e8a52943 (IsA muskogee muskhogean) (STV 1.0 0.9091)) +(: cnet_isa_e6c4e4c138 (IsA muskogee muskogean) (STV 1.0 0.9091)) +(: cnet_isa_02c2faffc8 (IsA muskrat rodent) (STV 1.0 0.9091)) +(: cnet_isa_bdf0a4499b (IsA muskrat fur) (STV 1.0 0.9091)) +(: cnet_isa_b227c9a773 (IsA muskwood daisybush) (STV 1.0 0.9091)) +(: cnet_isa_a19079af7c (IsA muslimah moslem) (STV 1.0 0.9091)) +(: cnet_isa_54158ff841 (IsA muslin fabric) (STV 1.0 0.9091)) +(: cnet_isa_fe182b430c (IsA musnud throne) (STV 1.0 0.9091)) +(: cnet_isa_25a02718e4 (IsA musophaga bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_2784bc4e24 (IsA musophagidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_492549f634 (IsA musophobia zoophobia) (STV 1.0 0.9091)) +(: cnet_isa_4b72fb9d6b (IsA mussel bivalve) (STV 1.0 0.9091)) +(: cnet_isa_6c618ff77f (IsA mussel shellfish) (STV 1.0 0.9091)) +(: cnet_isa_d66ecee2d3 (IsA must grape_juice) (STV 1.0 0.9091)) +(: cnet_isa_d6c4ce209d (IsA must necessity) (STV 1.0 0.9091)) +(: cnet_isa_10244c20db (IsA mustache facial_hair) (STV 1.0 0.9091)) +(: cnet_isa_d3893dd406 (IsA mustache_cup cup) (STV 1.0 0.9091)) +(: cnet_isa_0d3959f84d (IsA mustachio mustache) (STV 1.0 0.9091)) +(: cnet_isa_721114750e (IsA mustang car_model) (STV 1.0 0.9091)) +(: cnet_isa_64bdd1a522 (IsA mustang pony) (STV 1.0 0.9091)) +(: cnet_isa_962b6d2f15 (IsA mustang_mint herb) (STV 1.0 0.9091)) +(: cnet_isa_2e731a3925 (IsA mustard condiment) (STV 1.0 0.9091)) +(: cnet_isa_74d125d938 (IsA mustard cruciferous_vegetable) (STV 1.0 0.9091)) +(: cnet_isa_8978650c99 (IsA mustard crucifer) (STV 1.0 0.9091)) +(: cnet_isa_6b7ec6be14 (IsA mustard_gas poison_gas) (STV 1.0 0.9091)) +(: cnet_isa_562e7b13e6 (IsA mustard_gas vesicant) (STV 1.0 0.9091)) +(: cnet_isa_18bf0b698a (IsA mustard_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_80187c93a2 (IsA mustard_plaster poultice) (STV 1.0 0.9091)) +(: cnet_isa_d2181e4071 (IsA mustard_sauce sauce) (STV 1.0 0.9091)) +(: cnet_isa_69088d4f5a (IsA mustard_seed flavorer) (STV 1.0 0.9091)) +(: cnet_isa_85cf0e9059 (IsA mustela mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_15f4a60409 (IsA mustelidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_5cb090f015 (IsA musteline_mammal carnivore) (STV 1.0 0.9091)) +(: cnet_isa_fd0e65936d (IsA mustelus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_5d5ff44510 (IsA muster gathering) (STV 1.0 0.9091)) +(: cnet_isa_e1289c9aea (IsA muster_call roll_call) (STV 1.0 0.9091)) +(: cnet_isa_3a8a713ec9 (IsA muster_roll roll) (STV 1.0 0.9091)) +(: cnet_isa_c8bf84ba19 (IsA musth phase) (STV 1.0 0.9091)) +(: cnet_isa_d7680f8baf (IsA mustiness staleness) (STV 1.0 0.9091)) +(: cnet_isa_6335b07424 (IsA mutability changeableness) (STV 1.0 0.9091)) +(: cnet_isa_ea72cae383 (IsA mutagen agent) (STV 1.0 0.9091)) +(: cnet_isa_69a5d260e8 (IsA mutagenesis cause) (STV 1.0 0.9091)) +(: cnet_isa_c5ac485180 (IsA mutant animal) (STV 1.0 0.9091)) +(: cnet_isa_992f5ad415 (IsA mutant organism) (STV 1.0 0.9091)) +(: cnet_isa_2096ecfcea (IsA mutant_gene gene) (STV 1.0 0.9091)) +(: cnet_isa_646505cd4d (IsA mutation change) (STV 1.0 0.9091)) +(: cnet_isa_6e79ab5d67 (IsA mutawa_een police) (STV 1.0 0.9091)) +(: cnet_isa_7fd6a6e863 (IsA mutchkin liquid_unit) (STV 1.0 0.9091)) +(: cnet_isa_4936d7c345 (IsA mute acoustic_device) (STV 1.0 0.9091)) +(: cnet_isa_57faa00f8a (IsA mute deaf_person) (STV 1.0 0.9091)) +(: cnet_isa_d3aba5c069 (IsA mute_swan swan) (STV 1.0 0.9091)) +(: cnet_isa_16999b0f34 (IsA muteness uncommunicativeness) (STV 1.0 0.9091)) +(: cnet_isa_71fac55894 (IsA mutilation injury) (STV 1.0 0.9091)) +(: cnet_isa_a51f4f5f36 (IsA mutilator person) (STV 1.0 0.9091)) +(: cnet_isa_bd4b48c9b2 (IsA mutillidae hymenopterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_6952448a58 (IsA mutineer insurgent) (STV 1.0 0.9091)) +(: cnet_isa_b4142a7b7b (IsA mutinus fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_5d8c42de6a (IsA mutiny rebellion) (STV 1.0 0.9091)) +(: cnet_isa_ce65ac31bb (IsA mutisia shrub) (STV 1.0 0.9091)) +(: cnet_isa_e2004ceb73 (IsA mutism condition) (STV 1.0 0.9091)) +(: cnet_isa_d328699f38 (IsA muton nucleotide) (STV 1.0 0.9091)) +(: cnet_isa_1ec090fc27 (IsA mutt mixed_breed_dog) (STV 1.0 0.9091)) +(: cnet_isa_73ef07d20a (IsA mutter sound) (STV 1.0 0.9091)) +(: cnet_isa_07e50f338d (IsA mutterer speaker) (STV 1.0 0.9091)) +(: cnet_isa_3997f571f7 (IsA mutton_chop chop) (STV 1.0 0.9091)) +(: cnet_isa_2b91c0a1c4 (IsA mutton_snapper snapper) (STV 1.0 0.9091)) +(: cnet_isa_db2beff4f7 (IsA mutton_tallow tallow) (STV 1.0 0.9091)) +(: cnet_isa_61c528d878 (IsA mutual_aid logistic_support) (STV 1.0 0.9091)) +(: cnet_isa_e620834856 (IsA mutual_fund investment_company) (STV 1.0 0.9091)) +(: cnet_isa_8349fe3e36 (IsA mutual_fund fund) (STV 1.0 0.9091)) +(: cnet_isa_0fa3ecc2ee (IsA mutual_induction induction) (STV 1.0 0.9091)) +(: cnet_isa_f6f6dccc2c (IsA mutual_opposition opposition) (STV 1.0 0.9091)) +(: cnet_isa_a9b869d325 (IsA mutual_resemblance resemblance) (STV 1.0 0.9091)) +(: cnet_isa_fc029d835e (IsA mutual_saving_bank saving_bank) (STV 1.0 0.9091)) +(: cnet_isa_2823ea0328 (IsA mutual_understanding sympathy) (STV 1.0 0.9091)) +(: cnet_isa_c2a3a3285d (IsA mutuality reciprocality) (STV 1.0 0.9091)) +(: cnet_isa_24007e5ede (IsA muzhik peasant) (STV 1.0 0.9091)) +(: cnet_isa_605b2ecaf5 (IsA muzzle face) (STV 1.0 0.9091)) +(: cnet_isa_05e9d96f0a (IsA muzzle restraint) (STV 1.0 0.9091)) +(: cnet_isa_2ae34fdf30 (IsA muzzle_loader firearm) (STV 1.0 0.9091)) +(: cnet_isa_86fc54c0e5 (IsA muzzle_velocity speed) (STV 1.0 0.9091)) +(: cnet_isa_abeefb747a (IsA muzzler worker) (STV 1.0 0.9091)) +(: cnet_isa_e8e10e1dad (IsA mwera bantu) (STV 1.0 0.9091)) +(: cnet_isa_316499e7ec (IsA mya mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_9373b71d49 (IsA myaceae animal_order) (STV 1.0 0.9091)) +(: cnet_isa_a2f0ee24b2 (IsA myacidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_b435d2e799 (IsA myadeste bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_3e99325d5f (IsA myalgia pain) (STV 1.0 0.9091)) +(: cnet_isa_5a95c83db3 (IsA myanmar_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_1395470609 (IsA myasthenia physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_98f1c8040e (IsA myasthenia_gravis autoimmune_disease) (STV 1.0 0.9091)) +(: cnet_isa_e57a491bcc (IsA myasthenia_gravis disease_of_neuromuscular_junction) (STV 1.0 0.9091)) +(: cnet_isa_356bd766fb (IsA mycelia_sterilia fungus_order) (STV 1.0 0.9091)) +(: cnet_isa_4a9642e64a (IsA mycelium plant_part) (STV 1.0 0.9091)) +(: cnet_isa_42c1b7fcbd (IsA mycenaean_civilization culture) (STV 1.0 0.9091)) +(: cnet_isa_4eda9c14b1 (IsA mycenaen hellene) (STV 1.0 0.9091)) +(: cnet_isa_0e97d74f27 (IsA mycetophilidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_dd023b1b88 (IsA mycobacteria eubacteria) (STV 1.0 0.9091)) +(: cnet_isa_265bd0905c (IsA mycobacteriaceae bacteria_family) (STV 1.0 0.9091)) +(: cnet_isa_16cf4068d7 (IsA mycologist botanist) (STV 1.0 0.9091)) +(: cnet_isa_f04476c8f7 (IsA mycology botany) (STV 1.0 0.9091)) +(: cnet_isa_2395543e03 (IsA mycomycin antibiotic) (STV 1.0 0.9091)) +(: cnet_isa_9a55b2a7ef (IsA mycophagist eater) (STV 1.0 0.9091)) +(: cnet_isa_d691eedeee (IsA mycophagy eating) (STV 1.0 0.9091)) +(: cnet_isa_902632fcc6 (IsA mycoplasma eubacteria) (STV 1.0 0.9091)) +(: cnet_isa_86d97ed57a (IsA mycoplasmataceae bacteria_family) (STV 1.0 0.9091)) +(: cnet_isa_c031410be5 (IsA mycoplasmatale animal_order) (STV 1.0 0.9091)) +(: cnet_isa_1366c009ec (IsA mycotoxin plant_toxin) (STV 1.0 0.9091)) +(: cnet_isa_76ae8b00af (IsA mycrosporidia animal_order) (STV 1.0 0.9091)) +(: cnet_isa_4b8e69a489 (IsA mycteria bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_34a9e887f0 (IsA mycteroperca fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_9be5e9c2b2 (IsA myctophidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_0cf44b0dfc (IsA mydriasis dilation) (STV 1.0 0.9091)) +(: cnet_isa_0ebc9fb769 (IsA mydriasis reflex) (STV 1.0 0.9091)) +(: cnet_isa_892fb64f59 (IsA mydriatic drug) (STV 1.0 0.9091)) +(: cnet_isa_4ac3dcbb4f (IsA myelatelia defect) (STV 1.0 0.9091)) +(: cnet_isa_abb143125f (IsA myelencephalon neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_82d6c15aee (IsA myelin fat) (STV 1.0 0.9091)) +(: cnet_isa_19cab144f1 (IsA myelinization growth) (STV 1.0 0.9091)) +(: cnet_isa_ed9d0310ea (IsA myelitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_a96e0f1c98 (IsA myeloblast leukocyte) (STV 1.0 0.9091)) +(: cnet_isa_1b3bee4c41 (IsA myeloblastic_leukemia leukemia) (STV 1.0 0.9091)) +(: cnet_isa_c852ad87a3 (IsA myelocyte leukocyte) (STV 1.0 0.9091)) +(: cnet_isa_6dfa57f8d8 (IsA myelocytic_leukemia leukemia) (STV 1.0 0.9091)) +(: cnet_isa_fa3e20f2c2 (IsA myelofibrosis fibrosis) (STV 1.0 0.9091)) +(: cnet_isa_ccd1294dbc (IsA myelogram roentgenogram) (STV 1.0 0.9091)) +(: cnet_isa_9f1a5a5f6c (IsA myelography roentgenography) (STV 1.0 0.9091)) +(: cnet_isa_b6e36f2264 (IsA myeloma malignant_tumor) (STV 1.0 0.9091)) +(: cnet_isa_652525005c (IsA myelomeningocele birth_defect) (STV 1.0 0.9091)) +(: cnet_isa_b36866a494 (IsA myenteric_plexus nerve_plexus) (STV 1.0 0.9091)) +(: cnet_isa_2a4678c5c7 (IsA myiasis infestation) (STV 1.0 0.9091)) +(: cnet_isa_5afbd8a033 (IsA myliobatidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_c852803233 (IsA mylodon edentate) (STV 1.0 0.9091)) +(: cnet_isa_90d6fc09b7 (IsA mylodontid edentate) (STV 1.0 0.9091)) +(: cnet_isa_ec8f2786aa (IsA mylodontidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_ab8e37e1f9 (IsA myna starling) (STV 1.0 0.9091)) +(: cnet_isa_5d04e7a363 (IsA myocardial_infarction infarct) (STV 1.0 0.9091)) +(: cnet_isa_72f59b3530 (IsA myocardial_inflammation carditis) (STV 1.0 0.9091)) +(: cnet_isa_91ec7235a3 (IsA myocardium cardiac_muscle) (STV 1.0 0.9091)) +(: cnet_isa_ceda62b52c (IsA myocastor mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_d4a9f4ab68 (IsA myoclonus spasm) (STV 1.0 0.9091)) +(: cnet_isa_55e4e7bb39 (IsA myoclonus_epilepsy epilepsy) (STV 1.0 0.9091)) +(: cnet_isa_bf89d94cbd (IsA myofibril fibril) (STV 1.0 0.9091)) +(: cnet_isa_9eb93ef382 (IsA myoglobin hemoprotein) (STV 1.0 0.9091)) +(: cnet_isa_c0280055b3 (IsA myoglobinuria symptom) (STV 1.0 0.9091)) +(: cnet_isa_1e2d8a876e (IsA myogram graph) (STV 1.0 0.9091)) +(: cnet_isa_b253fa17f9 (IsA myology physiology) (STV 1.0 0.9091)) +(: cnet_isa_cd368d85b9 (IsA myoma benign_tumor) (STV 1.0 0.9091)) +(: cnet_isa_741531536e (IsA myometritis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_f8b8712ae2 (IsA myometrium smooth_muscle) (STV 1.0 0.9091)) +(: cnet_isa_77436f3d9d (IsA myomorpha animal_order) (STV 1.0 0.9091)) +(: cnet_isa_1fff053013 (IsA myonecrosis necrosis) (STV 1.0 0.9091)) +(: cnet_isa_62cde862ee (IsA myopathy pathology) (STV 1.0 0.9091)) +(: cnet_isa_5b850c4cf6 (IsA myope visually_impaired_person) (STV 1.0 0.9091)) +(: cnet_isa_7a6d2f72f7 (IsA myopia ametropia) (STV 1.0 0.9091)) +(: cnet_isa_7180a5db7a (IsA myopus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_c743a503c8 (IsA myosarcoma sarcoma) (STV 1.0 0.9091)) +(: cnet_isa_3a37b95ebd (IsA myosin globulin) (STV 1.0 0.9091)) +(: cnet_isa_1d32ceb7ff (IsA myositis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_6e6180b964 (IsA myosotis plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_0e3281268e (IsA myotis mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_65e6c50fa1 (IsA myotomy operation) (STV 1.0 0.9091)) +(: cnet_isa_72e356b329 (IsA myotonia tonicity) (STV 1.0 0.9091)) +(: cnet_isa_ab3554d48f (IsA myotonia_congenita myotonia) (STV 1.0 0.9091)) +(: cnet_isa_dd30402c87 (IsA myotonic_muscular_dystrophy muscular_dystrophy) (STV 1.0 0.9091)) +(: cnet_isa_59f1c7214f (IsA myrciaria dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_cbf3ad4947 (IsA myriad large_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_00cac30a24 (IsA myriagram metric_weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_6909aa2d54 (IsA myriameter metric_linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_9747991d87 (IsA myriapod arthropod) (STV 1.0 0.9091)) +(: cnet_isa_9186b2f795 (IsA myrica dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6ba803657d (IsA myricaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_bc921c0b66 (IsA myricale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_e86ec3130b (IsA myricaria dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3ceb3c3d21 (IsA myringectomy operation) (STV 1.0 0.9091)) +(: cnet_isa_bc2d156727 (IsA myringoplasty operation) (STV 1.0 0.9091)) +(: cnet_isa_223fdbd75e (IsA myringotomy operation) (STV 1.0 0.9091)) +(: cnet_isa_fd9a01572d (IsA myriophyllum dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a05c92689b (IsA myristic_acid saturated_fatty_acid) (STV 1.0 0.9091)) +(: cnet_isa_2dfd7d31c4 (IsA myristica magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4a4cfeb6fa (IsA myristicaceae magnoliid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_2b4f31102d (IsA myrmecia arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_38da5d8a7a (IsA myrmecobius mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_b5b52fbcd9 (IsA myrmecophaga mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_9fa0f58d6e (IsA myrmecophagidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_6aa1fae9c8 (IsA myrmecophile organism) (STV 1.0 0.9091)) +(: cnet_isa_df51954c38 (IsA myrmecophyte plant) (STV 1.0 0.9091)) +(: cnet_isa_abf5635a5f (IsA myrmeleon arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_8477b35b1a (IsA myrmeleontidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_e1c7342be7 (IsA myrmidon follower) (STV 1.0 0.9091)) +(: cnet_isa_e022b26ee2 (IsA myroxylon rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f340b91862 (IsA myrrh gum_resin) (STV 1.0 0.9091)) +(: cnet_isa_a4539c0d0a (IsA myrrh_tree incense_tree) (STV 1.0 0.9091)) +(: cnet_isa_b31369f280 (IsA myrrhis rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_111a9d623c (IsA myrsinaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_8093fa50f4 (IsA myrsine dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_77d32475c8 (IsA myrtaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_e381cddd45 (IsA myrtaceous_tree angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_0e2d71ed0b (IsA myrtale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_8ea107a21f (IsA myrtillocactus caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6575a0f87a (IsA myrtle angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_fba7806697 (IsA myrtle periwinkle) (STV 1.0 0.9091)) +(: cnet_isa_983444c4cb (IsA myrtle_beech southern_beech) (STV 1.0 0.9091)) +(: cnet_isa_4ba114c202 (IsA myrtle_oak scrub_oak) (STV 1.0 0.9091)) +(: cnet_isa_ebb4b20fb2 (IsA myrtle_warbler new_world_warbler) (STV 1.0 0.9091)) +(: cnet_isa_dff03e231a (IsA myrtus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a670878222 (IsA mysidacea animal_order) (STV 1.0 0.9091)) +(: cnet_isa_70322189fc (IsA mysidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_7b79be1233 (IsA mysis arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_b9e40640fc (IsA mysoandry hate) (STV 1.0 0.9091)) +(: cnet_isa_4161b9aff5 (IsA mysophilia liking) (STV 1.0 0.9091)) +(: cnet_isa_9bf22d41e9 (IsA mysophobia simple_phobia) (STV 1.0 0.9091)) +(: cnet_isa_575f4944b9 (IsA mysore_thorn shrub) (STV 1.0 0.9091)) +(: cnet_isa_d2ad70ab21 (IsA mystery perplexity) (STV 1.0 0.9091)) +(: cnet_isa_76de7192f4 (IsA mystery story) (STV 1.0 0.9091)) +(: cnet_isa_edd00930df (IsA mystery_play play) (STV 1.0 0.9091)) +(: cnet_isa_2d1eadfb9c (IsA mystic believer) (STV 1.0 0.9091)) +(: cnet_isa_080e386ec0 (IsA mysticeti animal_order) (STV 1.0 0.9091)) +(: cnet_isa_ffdbe8d64a (IsA mysticism religion) (STV 1.0 0.9091)) +(: cnet_isa_bd75fa382c (IsA mysticism thinking) (STV 1.0 0.9091)) +(: cnet_isa_b17ec0dab7 (IsA mystification activity) (STV 1.0 0.9091)) +(: cnet_isa_ce594cf5ef (IsA mystification artifact) (STV 1.0 0.9091)) +(: cnet_isa_cbac52bf7f (IsA mystique air) (STV 1.0 0.9091)) +(: cnet_isa_f8775b96da (IsA myth story) (STV 1.0 0.9091)) +(: cnet_isa_91b4498f7e (IsA mythical_being imaginary_being) (STV 1.0 0.9091)) +(: cnet_isa_4dd018143a (IsA mythical_monster monster) (STV 1.0 0.9091)) +(: cnet_isa_7cc3d48da7 (IsA mythical_monster mythical_being) (STV 1.0 0.9091)) +(: cnet_isa_2c57798573 (IsA mythologist expert) (STV 1.0 0.9091)) +(: cnet_isa_f00918aebf (IsA mythologization restatement) (STV 1.0 0.9091)) +(: cnet_isa_3c70ab2288 (IsA mythology collection) (STV 1.0 0.9091)) +(: cnet_isa_45e3a3785a (IsA mythology social_anthropology) (STV 1.0 0.9091)) +(: cnet_isa_af732093b5 (IsA mytilidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_b659b84914 (IsA mytilus mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_c43548431b (IsA myxedema hypothyroidism) (STV 1.0 0.9091)) +(: cnet_isa_294e6bfa7a (IsA myxine fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_826f721fe8 (IsA myxine_glutinosa hagfish) (STV 1.0 0.9091)) +(: cnet_isa_d32ddcfa9c (IsA myxinidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_74d3904af1 (IsA myxiniforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_814651336c (IsA myxinikela fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_c88218287d (IsA myxinikela_siroka hagfish) (STV 1.0 0.9091)) +(: cnet_isa_c558f17bf4 (IsA myxobacteria eubacteria) (STV 1.0 0.9091)) +(: cnet_isa_330345fa68 (IsA myxocephalus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_1d1d026d1c (IsA myxoma benign_tumor) (STV 1.0 0.9091)) +(: cnet_isa_7a12381065 (IsA myxoma_virus poxvirus) (STV 1.0 0.9091)) +(: cnet_isa_815a80f5fc (IsA myxomatosis animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_9cc3731f96 (IsA myxomycete class) (STV 1.0 0.9091)) +(: cnet_isa_b243964bb6 (IsA myxomycota division) (STV 1.0 0.9091)) +(: cnet_isa_2293d959e3 (IsA myxophyceae bacteria_family) (STV 1.0 0.9091)) +(: cnet_isa_26e68fab81 (IsA myxosporidia animal_order) (STV 1.0 0.9091)) +(: cnet_isa_a02e407209 (IsA myxosporidian sporozoan) (STV 1.0 0.9091)) +(: cnet_isa_f0f35a9b01 (IsA myxovirus animal_virus) (STV 1.0 0.9091)) +(: cnet_isa_689100510f (IsA n letter) (STV 1.0 0.9091)) +(: cnet_isa_66e3589056 (IsA n_type_semiconductor semiconductor_device) (STV 1.0 0.9091)) +(: cnet_isa_335ec2eb5d (IsA na_dene amerind) (STV 1.0 0.9091)) +(: cnet_isa_2b3158a58c (IsA nabalus asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_078fa3730f (IsA nabob man_of_mean) (STV 1.0 0.9091)) +(: cnet_isa_470155264a (IsA naboom spurge) (STV 1.0 0.9091)) +(: cnet_isa_1a9e19e089 (IsA nabothian_cyst cyst) (STV 1.0 0.9091)) +(: cnet_isa_3b38353c16 (IsA nabothian_gland exocrine_gland) (STV 1.0 0.9091)) +(: cnet_isa_e62da694fc (IsA nacelle enclosure) (STV 1.0 0.9091)) +(: cnet_isa_e75543676f (IsA nacho tortilla_chip) (STV 1.0 0.9091)) +(: cnet_isa_151de394ea (IsA nacreous_cloud cloud) (STV 1.0 0.9091)) +(: cnet_isa_9f223416c8 (IsA nada_daiquiri daiquiri) (STV 1.0 0.9091)) +(: cnet_isa_d35ce86be8 (IsA nadir celestial_point) (STV 1.0 0.9091)) +(: cnet_isa_5300ffb259 (IsA nadir adversity) (STV 1.0 0.9091)) +(: cnet_isa_17c9cd9edc (IsA naegele_s_rule principle) (STV 1.0 0.9091)) +(: cnet_isa_9e438acd28 (IsA naemorhedus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_9a407578a0 (IsA naga kamarupan) (STV 1.0 0.9091)) +(: cnet_isa_b3fe24fa73 (IsA nagami kumquat) (STV 1.0 0.9091)) +(: cnet_isa_cfc44b083b (IsA nageia gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_859792459c (IsA nagi conifer) (STV 1.0 0.9091)) +(: cnet_isa_3207573aaf (IsA nahuatl uto_aztecan) (STV 1.0 0.9091)) +(: cnet_isa_e3e7d64974 (IsA nahuatl native_american) (STV 1.0 0.9091)) +(: cnet_isa_7c56b3b18a (IsA naiad water_nymph) (STV 1.0 0.9091)) +(: cnet_isa_9b60f9a09b (IsA naiad aquatic_plant) (STV 1.0 0.9091)) +(: cnet_isa_e95b1388db (IsA naiadaceae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_474ccc0f7a (IsA naiadale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_cfeb4a0a42 (IsA naia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_eae4fc519a (IsA naif innocent) (STV 1.0 0.9091)) +(: cnet_isa_eb9083c49b (IsA naiki central_dravidian) (STV 1.0 0.9091)) +(: cnet_isa_c3eb77e923 (IsA nail piece_of_metal) (STV 1.0 0.9091)) +(: cnet_isa_b64b4968ad (IsA nail fastener) (STV 1.0 0.9091)) +(: cnet_isa_ff3ef61754 (IsA nail horny_structure) (STV 1.0 0.9091)) +(: cnet_isa_658a2dd093 (IsA nail linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_e7965668db (IsA nail_gun tool) (STV 1.0 0.9091)) +(: cnet_isa_063338fb0b (IsA nail_hole hole) (STV 1.0 0.9091)) +(: cnet_isa_4766452933 (IsA nail_polish cosmetic) (STV 1.0 0.9091)) +(: cnet_isa_958dfd392e (IsA nail_polish enamel) (STV 1.0 0.9091)) +(: cnet_isa_5ac32b5b44 (IsA nail_pulling torture) (STV 1.0 0.9091)) +(: cnet_isa_df6af1ebd3 (IsA nail_tailed_wallaby wallaby) (STV 1.0 0.9091)) +(: cnet_isa_7f08b7cf6d (IsA nailbrush brush) (STV 1.0 0.9091)) +(: cnet_isa_979070ebf7 (IsA nailer worker) (STV 1.0 0.9091)) +(: cnet_isa_50fb9fdf0f (IsA nailfile file) (STV 1.0 0.9091)) +(: cnet_isa_7c8ff4a1ec (IsA nailhead decoration) (STV 1.0 0.9091)) +(: cnet_isa_0701dfb05a (IsA nailhead knob) (STV 1.0 0.9091)) +(: cnet_isa_469e8198fd (IsA nainsook muslin) (STV 1.0 0.9091)) +(: cnet_isa_f4d5fb25a0 (IsA naira nigerian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_624742ac12 (IsA naivete quality) (STV 1.0 0.9091)) +(: cnet_isa_01a4237db8 (IsA naja reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_1f1a329395 (IsA naked_eye eye) (STV 1.0 0.9091)) +(: cnet_isa_c60cfc78e6 (IsA naked_mole_rat fossorial_mammal) (STV 1.0 0.9091)) +(: cnet_isa_cd5be204d2 (IsA naked_option option) (STV 1.0 0.9091)) +(: cnet_isa_76cb25e722 (IsA naked_person source_of_pleasure) (STV 1.0 0.9091)) +(: cnet_isa_3709259d9d (IsA nakedness condition) (STV 1.0 0.9091)) +(: cnet_isa_5faafecaff (IsA nakedwood tree) (STV 1.0 0.9091)) +(: cnet_isa_abdcdbfe89 (IsA nakedwood zebrawood) (STV 1.0 0.9091)) +(: cnet_isa_2566775416 (IsA nalidixic_acid antibacterial) (STV 1.0 0.9091)) +(: cnet_isa_afa0838516 (IsA nalorphine narcotic_antagonist) (STV 1.0 0.9091)) +(: cnet_isa_ab3b75d4fa (IsA naltrexone narcotic_antagonist) (STV 1.0 0.9091)) +(: cnet_isa_245a5bce21 (IsA namby_pamby weakling) (STV 1.0 0.9091)) +(: cnet_isa_a75d995fb3 (IsA name sanction) (STV 1.0 0.9091)) +(: cnet_isa_7657042ae7 (IsA name defamation) (STV 1.0 0.9091)) +(: cnet_isa_4574dd6192 (IsA name language_unit) (STV 1.0 0.9091)) +(: cnet_isa_8bd813d4e0 (IsA name family) (STV 1.0 0.9091)) +(: cnet_isa_f83c35955c (IsA name important_person) (STV 1.0 0.9091)) +(: cnet_isa_934644b2e2 (IsA name repute) (STV 1.0 0.9091)) +(: cnet_isa_0eb3afa3bc (IsA name_calling defamation) (STV 1.0 0.9091)) +(: cnet_isa_95cff7d5e5 (IsA name_day saint_s_day) (STV 1.0 0.9091)) +(: cnet_isa_9d32291828 (IsA name_dropper imposter) (STV 1.0 0.9091)) +(: cnet_isa_e7b0cc55f1 (IsA name_dropping mention) (STV 1.0 0.9091)) +(: cnet_isa_9439aa9473 (IsA name_tag tag) (STV 1.0 0.9091)) +(: cnet_isa_3adc5e789a (IsA nameko agaric) (STV 1.0 0.9091)) +(: cnet_isa_f51ae0d381 (IsA nameplate plate) (STV 1.0 0.9091)) +(: cnet_isa_1d39d379d9 (IsA namer person) (STV 1.0 0.9091)) +(: cnet_isa_fbbdc71ba3 (IsA namesake person) (STV 1.0 0.9091)) +(: cnet_isa_6ee93168c2 (IsA namibian african) (STV 1.0 0.9091)) +(: cnet_isa_c79ab484b0 (IsA naming speech_act) (STV 1.0 0.9091)) +(: cnet_isa_55f35a3754 (IsA nan bread) (STV 1.0 0.9091)) +(: cnet_isa_3a7dc0d665 (IsA nan grandma) (STV 1.0 0.9091)) +(: cnet_isa_e29c13c605 (IsA nancere east_chadic) (STV 1.0 0.9091)) +(: cnet_isa_d081981bfc (IsA nand_circuit gate) (STV 1.0 0.9091)) +(: cnet_isa_3ea14c8acf (IsA nankeen fabric) (STV 1.0 0.9091)) +(: cnet_isa_900c33cf9d (IsA nanna norse_deity) (STV 1.0 0.9091)) +(: cnet_isa_4a3722ef3b (IsA nanny goat) (STV 1.0 0.9091)) +(: cnet_isa_f6eb19f664 (IsA nanny keeper) (STV 1.0 0.9091)) +(: cnet_isa_30b669d175 (IsA nanny woman) (STV 1.0 0.9091)) +(: cnet_isa_e73b98d0f0 (IsA nanogram metric_weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_ee01114229 (IsA nanometer metric_linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_88b3ab9efb (IsA nanomia siphonophore) (STV 1.0 0.9091)) +(: cnet_isa_2155e1cc58 (IsA nanophthalmo abnormality) (STV 1.0 0.9091)) +(: cnet_isa_af0dd5c4bc (IsA nanosecond one_billionth_of_second) (STV 1.0 0.9454)) +(: cnet_isa_badbc32c0c (IsA nanosecond time_unit) (STV 1.0 0.9091)) +(: cnet_isa_38c4a122c9 (IsA nanotechnology engineering) (STV 1.0 0.9091)) +(: cnet_isa_a8efe20ead (IsA nanovolt potential_unit) (STV 1.0 0.9091)) +(: cnet_isa_3566a1fab2 (IsA nanticoke algonquian) (STV 1.0 0.9091)) +(: cnet_isa_e69d8d1dbc (IsA nanticoke algonquin) (STV 1.0 0.9091)) +(: cnet_isa_275c0f9d4f (IsA nantua sauce) (STV 1.0 0.9091)) +(: cnet_isa_bcc26d81e4 (IsA nap sleeping) (STV 1.0 0.9091)) +(: cnet_isa_2ff03c58d8 (IsA nap texture) (STV 1.0 0.9091)) +(: cnet_isa_62eff05c55 (IsA napaea dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_be0384a1f5 (IsA napalm gasoline) (STV 1.0 0.9091)) +(: cnet_isa_c402b8a87e (IsA nape rear) (STV 1.0 0.9091)) +(: cnet_isa_e8d25d5ca2 (IsA naphtha hydrocarbon) (STV 1.0 0.9091)) +(: cnet_isa_76e0756213 (IsA naphtha solvent) (STV 1.0 0.9091)) +(: cnet_isa_ca0ee648fc (IsA naphthalene hydrocarbon) (STV 1.0 0.9091)) +(: cnet_isa_97507c69d6 (IsA naphthalene_poisoning poisoning) (STV 1.0 0.9091)) +(: cnet_isa_cc73875673 (IsA naphthol phenol) (STV 1.0 0.9091)) +(: cnet_isa_ca96fd28c2 (IsA napier_s_bone calculator) (STV 1.0 0.9091)) +(: cnet_isa_0ae0a58769 (IsA napkin table_linen) (STV 1.0 0.9091)) +(: cnet_isa_172ebf3e65 (IsA napkin_ring hoop) (STV 1.0 0.9091)) +(: cnet_isa_507761fd6d (IsA napoleon card_game) (STV 1.0 0.9091)) +(: cnet_isa_cf32404a94 (IsA napoleon french_pastry) (STV 1.0 0.9091)) +(: cnet_isa_2e21f793da (IsA naprapath therapist) (STV 1.0 0.9091)) +(: cnet_isa_702a16e7aa (IsA naprapathy treatment) (STV 1.0 0.9091)) +(: cnet_isa_5ca5338a5e (IsA napu chevrotain) (STV 1.0 0.9091)) +(: cnet_isa_138bff54b3 (IsA naranjilla shrub) (STV 1.0 0.9091)) +(: cnet_isa_d5402485b5 (IsA narc lawman) (STV 1.0 0.9091)) +(: cnet_isa_99d8727227 (IsA narcissist selfish_person) (STV 1.0 0.9091)) +(: cnet_isa_d90faab699 (IsA narcissistic_personality personality) (STV 1.0 0.9091)) +(: cnet_isa_f1937657d4 (IsA narcissus bulbous_plant) (STV 1.0 0.9091)) +(: cnet_isa_0dec74b0b2 (IsA narco_state geographical_area) (STV 1.0 0.9091)) +(: cnet_isa_7575ffc2be (IsA narcolepsy hypersomnia) (STV 1.0 0.9091)) +(: cnet_isa_47f6bd5832 (IsA narcoleptic soporific) (STV 1.0 0.9091)) +(: cnet_isa_fc272ae0f9 (IsA narcoleptic sick_person) (STV 1.0 0.9091)) +(: cnet_isa_1f6ea78509 (IsA narcosis unconsciousness) (STV 1.0 0.9091)) +(: cnet_isa_082ff50d5e (IsA narcoterrorism terrorism) (STV 1.0 0.9091)) +(: cnet_isa_aeec16116b (IsA narcotic drug) (STV 1.0 0.9091)) +(: cnet_isa_d6e825667c (IsA narcotic_antagonist antagonist) (STV 1.0 0.9091)) +(: cnet_isa_16073deb37 (IsA nard cream) (STV 1.0 0.9091)) +(: cnet_isa_3d06afe51b (IsA nardoo clover_fern) (STV 1.0 0.9091)) +(: cnet_isa_0da74f9f9b (IsA naris orifice) (STV 1.0 0.9091)) +(: cnet_isa_6ad1530549 (IsA nark informer) (STV 1.0 0.9091)) +(: cnet_isa_f91c624411 (IsA narration report) (STV 1.0 0.9091)) +(: cnet_isa_008704cc5f (IsA narration section) (STV 1.0 0.9091)) +(: cnet_isa_5aef039c64 (IsA narrative message) (STV 1.0 0.9091)) +(: cnet_isa_d9bbbfefde (IsA narrator speaker) (STV 1.0 0.9091)) +(: cnet_isa_365646b4dd (IsA narrow strait) (STV 1.0 0.9091)) +(: cnet_isa_7c7fb218c2 (IsA narrow_gauge gauge) (STV 1.0 0.9091)) +(: cnet_isa_95e9d70d3f (IsA narrow_gauge railroad_track) (STV 1.0 0.9091)) +(: cnet_isa_57687267b4 (IsA narrow_goldenrod goldenrod) (STV 1.0 0.9091)) +(: cnet_isa_914f02e649 (IsA narrow_leaf_penstemon wildflower) (STV 1.0 0.9091)) +(: cnet_isa_0920d09309 (IsA narrow_leaved_flame_flower flame_flower) (STV 1.0 0.9091)) +(: cnet_isa_a677d93d14 (IsA narrow_leaved_water_plantain water_plantain) (STV 1.0 0.9091)) +(: cnet_isa_7bd3a72408 (IsA narrow_leaved_white_topped_aster white_topped_aster) (STV 1.0 0.9091)) +(: cnet_isa_ff388b22af (IsA narrow_margin margin) (STV 1.0 0.9091)) +(: cnet_isa_733c927ff7 (IsA narrow_mindedness intolerance) (STV 1.0 0.9091)) +(: cnet_isa_239b7e7230 (IsA narrow_wale cord) (STV 1.0 0.9091)) +(: cnet_isa_3c5add03db (IsA narrowbody_aircraft airliner) (STV 1.0 0.9091)) +(: cnet_isa_3a879c62be (IsA narrowing change_of_shape) (STV 1.0 0.9091)) +(: cnet_isa_76ba451f18 (IsA narrowing shape) (STV 1.0 0.9091)) +(: cnet_isa_5f09acd8d7 (IsA narrowing decrease) (STV 1.0 0.9091)) +(: cnet_isa_112a81805e (IsA narrowness width) (STV 1.0 0.9091)) +(: cnet_isa_d740ec551e (IsA narrowness restriction) (STV 1.0 0.9091)) +(: cnet_isa_722f85487b (IsA narthecium liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_56a68f0c7a (IsA narthex anteroom) (STV 1.0 0.9091)) +(: cnet_isa_710e3bfa9b (IsA narthex portico) (STV 1.0 0.9091)) +(: cnet_isa_da47de2345 (IsA narwhal whale) (STV 1.0 0.9091)) +(: cnet_isa_2272b6687b (IsA nasal bone) (STV 1.0 0.9091)) +(: cnet_isa_7dcfb95a4b (IsA nasal_canthus canthus) (STV 1.0 0.9091)) +(: cnet_isa_0233af921f (IsA nasal_cavity cavity) (STV 1.0 0.9091)) +(: cnet_isa_44fc296cf0 (IsA nasal_concha concha) (STV 1.0 0.9091)) +(: cnet_isa_ce76934b43 (IsA nasal_concha turbinate_bone) (STV 1.0 0.9091)) +(: cnet_isa_15fea5f0a4 (IsA nasal_consonant consonant) (STV 1.0 0.9091)) +(: cnet_isa_12717e1f50 (IsA nasal_decongestant decongestant) (STV 1.0 0.9091)) +(: cnet_isa_5805a7191d (IsA nasal_meatus meatus) (STV 1.0 0.9091)) +(: cnet_isa_99efa9840c (IsA nasal_septum septum) (STV 1.0 0.9091)) +(: cnet_isa_8ce49a75d5 (IsA nasalis mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_0062c17a1a (IsA nasality timbre) (STV 1.0 0.9091)) +(: cnet_isa_bf9bf0c815 (IsA nasalization articulation) (STV 1.0 0.9091)) +(: cnet_isa_b7b939877f (IsA nash_equilibrium equilibrium) (STV 1.0 0.9091)) +(: cnet_isa_fc5bab2071 (IsA nasion craniometric_point) (STV 1.0 0.9091)) +(: cnet_isa_eca9b424a7 (IsA nasofrontal_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_9689a5b7ce (IsA nasogastric_feeding forced_feeding) (STV 1.0 0.9091)) +(: cnet_isa_69a2f893c3 (IsA nasolacrimal_duct duct) (STV 1.0 0.9091)) +(: cnet_isa_6ba9229918 (IsA nasopharynx cavity) (STV 1.0 0.9091)) +(: cnet_isa_536f3707fd (IsA nasotracheal_tube endotracheal_tube) (STV 1.0 0.9091)) +(: cnet_isa_8ad17f08f1 (IsA nastiness unpleasantness) (STV 1.0 0.9091)) +(: cnet_isa_7a5b45aa80 (IsA nasturtium flavorer) (STV 1.0 0.9091)) +(: cnet_isa_20257a1589 (IsA nasturtium dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7bf2e64372 (IsA nasturtium herb) (STV 1.0 0.9091)) +(: cnet_isa_0a2357bb73 (IsA nasua mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_c6d4566738 (IsA natal_plum carissa) (STV 1.0 0.9091)) +(: cnet_isa_13bcfdac73 (IsA natantia animal_order) (STV 1.0 0.9091)) +(: cnet_isa_941d1aef1d (IsA naticidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_54a299d54b (IsA nation confederation) (STV 1.0 0.9091)) +(: cnet_isa_d16088e59f (IsA nation people) (STV 1.0 0.9091)) +(: cnet_isa_3d7c251ab4 (IsA nation_of_islam religious_movement) (STV 1.0 0.9091)) +(: cnet_isa_730bb7ae55 (IsA national person) (STV 1.0 0.9091)) +(: cnet_isa_9c4ab988fe (IsA national_academy_of_science academy) (STV 1.0 0.9091)) +(: cnet_isa_39082e76df (IsA national_aeronautic_and_space_administration independent_agency) (STV 1.0 0.9091)) +(: cnet_isa_b7248207db (IsA national_anthem anthem) (STV 1.0 0.9091)) +(: cnet_isa_88618da7f3 (IsA national_archive_and_record_administration independent_agency) (STV 1.0 0.9091)) +(: cnet_isa_e3a59eb7dc (IsA national_association_of_realtor association) (STV 1.0 0.9091)) +(: cnet_isa_d3c3c21295 (IsA national_athmen song) (STV 1.0 0.9091)) +(: cnet_isa_94a272ea02 (IsA national_bank commercial_bank) (STV 1.0 0.9091)) +(: cnet_isa_952eaa3cb4 (IsA national_capital capital) (STV 1.0 0.9091)) +(: cnet_isa_32632e88d6 (IsA national_capital city) (STV 1.0 0.9091)) +(: cnet_isa_6a296eb7c7 (IsA national_censorship censoring) (STV 1.0 0.9091)) +(: cnet_isa_59d11d2011 (IsA national_climatic_data_center agency) (STV 1.0 0.9091)) +(: cnet_isa_71bf7fbdd6 (IsA national_debt debt) (STV 1.0 0.9091)) +(: cnet_isa_e50c0dff33 (IsA national_debt_ceiling debt_limit) (STV 1.0 0.9091)) +(: cnet_isa_81f7ee2d7f (IsA national_flag emblem) (STV 1.0 0.9091)) +(: cnet_isa_c9393d1eb9 (IsA national_flag flag) (STV 1.0 0.9091)) +(: cnet_isa_f9c9f8c7f7 (IsA national_geospatial_intelligence_agency agency) (STV 1.0 0.9091)) +(: cnet_isa_eb0ebd2796 (IsA national_guard territorial) (STV 1.0 0.9091)) +(: cnet_isa_9d8a80e207 (IsA national_guard_bureau agency) (STV 1.0 0.9091)) +(: cnet_isa_8669b3a2e5 (IsA national_income value) (STV 1.0 0.9091)) +(: cnet_isa_d455f13c89 (IsA national_institute_of_justice law_enforcement_agency) (STV 1.0 0.9091)) +(: cnet_isa_b709654384 (IsA national_institute_of_standard_and_technology agency) (STV 1.0 0.9091)) +(: cnet_isa_7f63a429a0 (IsA national_institute_of_health agency) (STV 1.0 0.9091)) +(: cnet_isa_27685fac11 (IsA national_insurance social_insurance) (STV 1.0 0.9091)) +(: cnet_isa_1eb2bddd66 (IsA national_labor_relation_board independent_agency) (STV 1.0 0.9091)) +(: cnet_isa_990354f077 (IsA national_monument memorial) (STV 1.0 0.9091)) +(: cnet_isa_a0d041dd41 (IsA national_oceanic_and_atmospheric_administration agency) (STV 1.0 0.9091)) +(: cnet_isa_48c6ad47e9 (IsA national_park park) (STV 1.0 0.9091)) +(: cnet_isa_09e7afcab7 (IsA national_park_service agency) (STV 1.0 0.9091)) +(: cnet_isa_2b6ed2534d (IsA national_reconnaissance_office united_state_intelligence_agency) (STV 1.0 0.9091)) +(: cnet_isa_739e71acf3 (IsA national_rifle_association special_interest) (STV 1.0 0.9091)) +(: cnet_isa_f1f5388ee1 (IsA national_security_agency united_state_intelligence_agency) (STV 1.0 0.9091)) +(: cnet_isa_fe6bdaefb3 (IsA national_security_council executive_agency) (STV 1.0 0.9091)) +(: cnet_isa_1d60fcbfd5 (IsA national_service service) (STV 1.0 0.9091)) +(: cnet_isa_6008560ffc (IsA national_socialist_german_worker_party party) (STV 1.0 0.9091)) +(: cnet_isa_660ca4def6 (IsA national_technical_information_service agency) (STV 1.0 0.9091)) +(: cnet_isa_0d67fdbb92 (IsA national_trust nongovernmental_organization) (STV 1.0 0.9091)) +(: cnet_isa_4559bfa7d1 (IsA national_weather_service agency) (STV 1.0 0.9091)) +(: cnet_isa_1ce321a7ec (IsA nationalism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_3bc4df5c94 (IsA nationalism ambition) (STV 1.0 0.9091)) +(: cnet_isa_e88f4bc65f (IsA nationalist advocate) (STV 1.0 0.9091)) +(: cnet_isa_6a4d90737d (IsA nationalist_leader leader) (STV 1.0 0.9091)) +(: cnet_isa_c994d1c40b (IsA nationalist_leader nationalist) (STV 1.0 0.9091)) +(: cnet_isa_9007eb6709 (IsA nationality people) (STV 1.0 0.9091)) +(: cnet_isa_eb2ec7e77a (IsA nationality status) (STV 1.0 0.9091)) +(: cnet_isa_38fd91835c (IsA nationalization change) (STV 1.0 0.9091)) +(: cnet_isa_e76947a65d (IsA nationalization group_action) (STV 1.0 0.9091)) +(: cnet_isa_b28b0dc03f (IsA nationalization social_control) (STV 1.0 0.9091)) +(: cnet_isa_395faca0c8 (IsA nationaol_science_foundation independent_agency) (STV 1.0 0.9091)) +(: cnet_isa_0f8abfc295 (IsA nationhood state) (STV 1.0 0.9091)) +(: cnet_isa_416996539c (IsA native organism) (STV 1.0 0.9091)) +(: cnet_isa_eee9270d0e (IsA native person) (STV 1.0 0.9091)) +(: cnet_isa_54dbf4f67c (IsA native_american person) (STV 1.0 0.9091)) +(: cnet_isa_68265e01dc (IsA native_american person_of_color) (STV 1.0 0.9091)) +(: cnet_isa_d52177ca7c (IsA native_beech silver_ash) (STV 1.0 0.9091)) +(: cnet_isa_574c17e25d (IsA native_cat dasyure) (STV 1.0 0.9091)) +(: cnet_isa_cce415e509 (IsA native_cranberry shrub) (STV 1.0 0.9091)) +(: cnet_isa_46930faa68 (IsA native_hawaiian hawaiian) (STV 1.0 0.9091)) +(: cnet_isa_5cfbc7e054 (IsA native_language language) (STV 1.0 0.9091)) +(: cnet_isa_b301aded90 (IsA native_orange caper) (STV 1.0 0.9091)) +(: cnet_isa_b1643c6b1a (IsA native_pear shrub) (STV 1.0 0.9091)) +(: cnet_isa_af37a84334 (IsA native_pomegranate caper) (STV 1.0 0.9091)) +(: cnet_isa_eae2c9db0d (IsA native_speaker speaker) (STV 1.0 0.9091)) +(: cnet_isa_be433b77f4 (IsA nativeness quality) (STV 1.0 0.9091)) +(: cnet_isa_177858c307 (IsA nativism social_policy) (STV 1.0 0.9091)) +(: cnet_isa_69828e5e5f (IsA nativism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_29da3a800f (IsA nativist philosopher) (STV 1.0 0.9091)) +(: cnet_isa_3eda7e8ac1 (IsA natriuresis symptom) (STV 1.0 0.9091)) +(: cnet_isa_8d43e6df95 (IsA natrix reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_8fb8c6c1d5 (IsA natrolite zeolite) (STV 1.0 0.9091)) +(: cnet_isa_22176230ea (IsA natterjack true_toad) (STV 1.0 0.9091)) +(: cnet_isa_5e7376455b (IsA natural musical_notation) (STV 1.0 0.9091)) +(: cnet_isa_3f48c31d13 (IsA natural cast) (STV 1.0 0.9091)) +(: cnet_isa_d189c460bf (IsA natural achiever) (STV 1.0 0.9091)) +(: cnet_isa_cbdf5185a8 (IsA natural_ability aptitude) (STV 1.0 0.9091)) +(: cnet_isa_186d61bb15 (IsA natural_childbirth childbirth) (STV 1.0 0.9091)) +(: cnet_isa_4567a6f610 (IsA natural_depression geological_formation) (STV 1.0 0.9091)) +(: cnet_isa_b3f71aac55 (IsA natural_elevation geological_formation) (STV 1.0 0.9091)) +(: cnet_isa_4284db6d96 (IsA natural_family_planning birth_control) (STV 1.0 0.9091)) +(: cnet_isa_d171f26455 (IsA natural_fiber fiber) (STV 1.0 0.9091)) +(: cnet_isa_0409389194 (IsA natural_gas fossil_fuel) (STV 1.0 0.9091)) +(: cnet_isa_98fd4a90e6 (IsA natural_glass glass) (STV 1.0 0.9091)) +(: cnet_isa_d8a5c82981 (IsA natural_history science) (STV 1.0 0.9091)) +(: cnet_isa_116a493832 (IsA natural_immunity immunity) (STV 1.0 0.9091)) +(: cnet_isa_9bdca90335 (IsA natural_language language) (STV 1.0 0.9091)) +(: cnet_isa_54f53aa88b (IsA natural_language_processing information_science) (STV 1.0 0.9091)) +(: cnet_isa_c017a3493e (IsA natural_language_processor application) (STV 1.0 0.9091)) +(: cnet_isa_a43c3a8bf1 (IsA natural_logarithm logarithm) (STV 1.0 0.9091)) +(: cnet_isa_2e5d968668 (IsA natural_number number) (STV 1.0 0.9091)) +(: cnet_isa_e15b5e5298 (IsA natural_object whole) (STV 1.0 0.9091)) +(: cnet_isa_d6d070973a (IsA natural_order universe) (STV 1.0 0.9091)) +(: cnet_isa_585ad23e3c (IsA natural_phenomenon phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_67677fc283 (IsA natural_process process) (STV 1.0 0.9091)) +(: cnet_isa_0a16724591 (IsA natural_resin plant_product) (STV 1.0 0.9091)) +(: cnet_isa_1ea7509e22 (IsA natural_resin resin) (STV 1.0 0.9091)) +(: cnet_isa_13ae517593 (IsA natural_resource resource) (STV 1.0 0.9091)) +(: cnet_isa_0f8560b3ad (IsA natural_science science) (STV 1.0 0.9091)) +(: cnet_isa_8e1eb208fd (IsA natural_shape shape) (STV 1.0 0.9091)) +(: cnet_isa_f7f8ba66a2 (IsA natural_theology theology) (STV 1.0 0.9091)) +(: cnet_isa_8abd33d946 (IsA natural_virtue cardinal_virtue) (STV 1.0 0.9091)) +(: cnet_isa_9946f0df5e (IsA naturalism artistic_movement) (STV 1.0 0.9091)) +(: cnet_isa_e347c2d6ec (IsA naturalism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_cb2c74279f (IsA naturalist biologist) (STV 1.0 0.9091)) +(: cnet_isa_52694a855e (IsA naturalist philosopher) (STV 1.0 0.9091)) +(: cnet_isa_fd4616de7b (IsA naturalization borrowing) (STV 1.0 0.9091)) +(: cnet_isa_b901311ae4 (IsA naturalization introduction) (STV 1.0 0.9091)) +(: cnet_isa_42325cc95e (IsA naturalization naturalness) (STV 1.0 0.9091)) +(: cnet_isa_5280a15f1d (IsA naturalization proceeding) (STV 1.0 0.9091)) +(: cnet_isa_4bb76c1dfd (IsA naturalness likeness) (STV 1.0 0.9091)) +(: cnet_isa_0bf2c18d0b (IsA naturalness quality) (STV 1.0 0.9091)) +(: cnet_isa_02ab265487 (IsA nature quality) (STV 1.0 0.9091)) +(: cnet_isa_ea29726876 (IsA nature trait) (STV 1.0 0.9091)) +(: cnet_isa_0aa6a78927 (IsA nature type) (STV 1.0 0.9091)) +(: cnet_isa_604ed72289 (IsA nature universe) (STV 1.0 0.9091)) +(: cnet_isa_b339590eae (IsA nature causal_agent) (STV 1.0 0.9091)) +(: cnet_isa_8648d911fd (IsA nature_study inquiry) (STV 1.0 0.9091)) +(: cnet_isa_7ee6696b9e (IsA nature_worship religion) (STV 1.0 0.9091)) +(: cnet_isa_ec5b58fb33 (IsA naturopath therapist) (STV 1.0 0.9091)) +(: cnet_isa_cfc5199270 (IsA naturopathy treatment) (STV 1.0 0.9091)) +(: cnet_isa_eafc096d46 (IsA nauclea asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_bbb9511344 (IsA naucrate fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_104f94c098 (IsA naught failure) (STV 1.0 0.9091)) +(: cnet_isa_1179105d88 (IsA naughtiness disobedience) (STV 1.0 0.9091)) +(: cnet_isa_ea771770d0 (IsA naumachy spectacle) (STV 1.0 0.9091)) +(: cnet_isa_0c61ce8552 (IsA nauruan austronesian) (STV 1.0 0.9091)) +(: cnet_isa_dcec99ce6e (IsA nausea disgust) (STV 1.0 0.9091)) +(: cnet_isa_31aa1c7b6b (IsA nausea symptom) (STV 1.0 0.9091)) +(: cnet_isa_9f9bf8f3f2 (IsA nautch dancing) (STV 1.0 0.9091)) +(: cnet_isa_d90e3b7beb (IsA nautch_girl dancer) (STV 1.0 0.9091)) +(: cnet_isa_c0debee6fe (IsA nautical_chain chain) (STV 1.0 0.9091)) +(: cnet_isa_d15254478d (IsA nautical_linear_unit linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_1a7e419255 (IsA nautical_mile nautical_linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_781b7faa79 (IsA nautilidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_64edd496a9 (IsA nautilus submarine) (STV 1.0 0.9091)) +(: cnet_isa_3ec30b0e73 (IsA navaho athapaskan) (STV 1.0 0.9091)) +(: cnet_isa_88e556a534 (IsA navajo athabascan) (STV 1.0 0.9091)) +(: cnet_isa_2a78a77813 (IsA naval_academy academy) (STV 1.0 0.9091)) +(: cnet_isa_364b48f073 (IsA naval_air_warfare_center_weapon_division agency) (STV 1.0 0.9091)) +(: cnet_isa_e426902cce (IsA naval_attache military_attache) (STV 1.0 0.9091)) +(: cnet_isa_554182f8cb (IsA naval_battle battle) (STV 1.0 0.9091)) +(: cnet_isa_c22563d1f8 (IsA naval_blockade blockade) (STV 1.0 0.9091)) +(: cnet_isa_14d0fb6fd2 (IsA naval_campaign operation) (STV 1.0 0.9091)) +(: cnet_isa_d29dfc1d44 (IsA naval_chart chart) (STV 1.0 0.9091)) +(: cnet_isa_d9bea9e9c2 (IsA naval_commander naval_officer) (STV 1.0 0.9091)) +(: cnet_isa_e6b243eceb (IsA naval_engineering engineering) (STV 1.0 0.9091)) +(: cnet_isa_e5010e43e5 (IsA naval_equipment equipment) (STV 1.0 0.9091)) +(: cnet_isa_f0d5dc45ac (IsA naval_gun naval_weaponry) (STV 1.0 0.9091)) +(: cnet_isa_afdfa3b96d (IsA naval_installation military_installation) (STV 1.0 0.9091)) +(: cnet_isa_c3c59eba5c (IsA naval_missile naval_weaponry) (STV 1.0 0.9091)) +(: cnet_isa_641d6ed3f6 (IsA naval_officer military_officer) (STV 1.0 0.9091)) +(: cnet_isa_b18d31bf16 (IsA naval_radar naval_equipment) (STV 1.0 0.9091)) +(: cnet_isa_551da57e85 (IsA naval_special_warfare agency) (STV 1.0 0.9091)) +(: cnet_isa_95ef4b755f (IsA naval_surface_warfare_center agency) (STV 1.0 0.9091)) +(: cnet_isa_31cfe3bf57 (IsA naval_tactical_data_system shipboard_system) (STV 1.0 0.9091)) +(: cnet_isa_41815cd692 (IsA naval_underwater_warfare_center agency) (STV 1.0 0.9091)) +(: cnet_isa_1daa2c02ce (IsA naval_unit military_unit) (STV 1.0 0.9091)) +(: cnet_isa_8f24f30e02 (IsA naval_weaponry weaponry) (STV 1.0 0.9091)) +(: cnet_isa_e94de33031 (IsA nave area) (STV 1.0 0.9091)) +(: cnet_isa_8c46b38a85 (IsA navel point) (STV 1.0 0.9091)) +(: cnet_isa_513c579b19 (IsA navel center) (STV 1.0 0.9091)) +(: cnet_isa_33676e67d1 (IsA navel_orange sweet_orange) (STV 1.0 0.9091)) +(: cnet_isa_0be8c61170 (IsA navigability quality) (STV 1.0 0.9091)) +(: cnet_isa_a53cc17876 (IsA navigation steering) (STV 1.0 0.9091)) +(: cnet_isa_f57ba018ed (IsA navigation transportation) (STV 1.0 0.9091)) +(: cnet_isa_575d2c49f4 (IsA navigation_light light) (STV 1.0 0.9091)) +(: cnet_isa_30f6408d95 (IsA navigational_instrument instrument) (STV 1.0 0.9091)) +(: cnet_isa_175cb06204 (IsA navigational_system system) (STV 1.0 0.9091)) +(: cnet_isa_46c7c31c47 (IsA navigator aircrewman) (STV 1.0 0.9091)) +(: cnet_isa_cc5ce1c64b (IsA navigator explorer) (STV 1.0 0.9091)) +(: cnet_isa_35dc074227 (IsA navy military_service) (STV 1.0 0.9091)) +(: cnet_isa_051e0779f9 (IsA navy_base base) (STV 1.0 0.9091)) +(: cnet_isa_02f96b1158 (IsA navy_bean common_bean) (STV 1.0 0.9091)) +(: cnet_isa_03bcfd5cdb (IsA navy_cross decoration) (STV 1.0 0.9091)) +(: cnet_isa_11f3cc91fe (IsA navy_department executive_department) (STV 1.0 0.9091)) +(: cnet_isa_26a74334a7 (IsA navy_yard shipyard) (STV 1.0 0.9091)) +(: cnet_isa_e2d7e2beb7 (IsA nawab governor) (STV 1.0 0.9091)) +(: cnet_isa_87d1c464b1 (IsA nay negative) (STV 1.0 0.9091)) +(: cnet_isa_cfa842feea (IsA naysayer obstructionist) (STV 1.0 0.9091)) +(: cnet_isa_081033b8a6 (IsA naysaying denial) (STV 1.0 0.9091)) +(: cnet_isa_c6205620be (IsA nazarene christian) (STV 1.0 0.9091)) +(: cnet_isa_8820cfe258 (IsA nazarene inhabitant) (STV 1.0 0.9091)) +(: cnet_isa_fe57e231b2 (IsA nazi restrainer) (STV 1.0 0.9091)) +(: cnet_isa_f79042cf7c (IsA nazification social_process) (STV 1.0 0.9091)) +(: cnet_isa_64c86462a9 (IsA nazism political_ideology) (STV 1.0 0.9091)) +(: cnet_isa_4f338895b0 (IsA nazism fascism) (STV 1.0 0.9091)) +(: cnet_isa_b2490f8f20 (IsA nazism socialism) (STV 1.0 0.9091)) +(: cnet_isa_28d178e2eb (IsA ndebele nguni) (STV 1.0 0.9091)) +(: cnet_isa_2689225049 (IsA neandertal_man homo) (STV 1.0 0.9091)) +(: cnet_isa_2977d1e99d (IsA neap_tide high_tide) (STV 1.0 0.9091)) +(: cnet_isa_12eaaa349e (IsA neapolitan italian) (STV 1.0 0.9091)) +(: cnet_isa_911bcbc0b0 (IsA neapolitan_ice_cream ice_cream) (STV 1.0 0.9091)) +(: cnet_isa_ab5f0a6356 (IsA near_beer beverage) (STV 1.0 0.9091)) +(: cnet_isa_a656d6066f (IsA near_death_experience experience) (STV 1.0 0.9091)) +(: cnet_isa_9abf6d5ae1 (IsA near_miss mishap) (STV 1.0 0.9091)) +(: cnet_isa_5d079a33a7 (IsA near_thing avoidance) (STV 1.0 0.9091)) +(: cnet_isa_1be23c85aa (IsA near_vision sight) (STV 1.0 0.9091)) +(: cnet_isa_0826eba059 (IsA nearness distance) (STV 1.0 0.9091)) +(: cnet_isa_c117d54ec4 (IsA nearside side) (STV 1.0 0.9091)) +(: cnet_isa_9983ec8478 (IsA neat_s_foot_oil animal_oil) (STV 1.0 0.9091)) +(: cnet_isa_10a5a5f9db (IsA neatness tidiness) (STV 1.0 0.9091)) +(: cnet_isa_f8ce22df8b (IsA nebbish simpleton) (STV 1.0 0.9091)) +(: cnet_isa_803fcd88f9 (IsA nebraska state) (STV 1.0 0.9454)) +(: cnet_isa_eb886863b5 (IsA nebuchadnezzar wine_bottle) (STV 1.0 0.9091)) +(: cnet_isa_05a1e861ce (IsA nebula cloud) (STV 1.0 0.9091)) +(: cnet_isa_08f86ac191 (IsA nebula spot) (STV 1.0 0.9091)) +(: cnet_isa_1f69c145b2 (IsA nebula symptom) (STV 1.0 0.9091)) +(: cnet_isa_d003608d67 (IsA nebula formulation) (STV 1.0 0.9091)) +(: cnet_isa_46edbf013a (IsA nebular_hypothesis scientific_theory) (STV 1.0 0.9091)) +(: cnet_isa_643cd34308 (IsA nebule cloud) (STV 1.0 0.9091)) +(: cnet_isa_e79bf38624 (IsA necessitarian philosopher) (STV 1.0 0.9091)) +(: cnet_isa_abd4faefe2 (IsA necessity thing) (STV 1.0 0.9091)) +(: cnet_isa_e7edd8096a (IsA necessity need) (STV 1.0 0.9091)) +(: cnet_isa_ab9d98bb72 (IsA neck opening) (STV 1.0 0.9091)) +(: cnet_isa_011e8b39ac (IsA neck part) (STV 1.0 0.9091)) +(: cnet_isa_93a8d6f659 (IsA neck external_body_part) (STV 1.0 0.9091)) +(: cnet_isa_a4994dffe3 (IsA neck cut) (STV 1.0 0.9091)) +(: cnet_isa_a87623d122 (IsA neck land) (STV 1.0 0.9091)) +(: cnet_isa_4adeb1986a (IsA neck_brace brace) (STV 1.0 0.9091)) +(: cnet_isa_a7dfa4d2f5 (IsA neck_exercise exercise) (STV 1.0 0.9091)) +(: cnet_isa_76c3c51c98 (IsA neck_sweetbread variety_meat) (STV 1.0 0.9091)) +(: cnet_isa_df11771e06 (IsA neckband band) (STV 1.0 0.9091)) +(: cnet_isa_eea9c96bf5 (IsA neckcloth cravat) (STV 1.0 0.9091)) +(: cnet_isa_16a91fd5a2 (IsA necker lover) (STV 1.0 0.9091)) +(: cnet_isa_d22c61743f (IsA neckerchief kerchief) (STV 1.0 0.9091)) +(: cnet_isa_b2b662bb80 (IsA necklace jewelry) (STV 1.0 0.9572)) +(: cnet_isa_135f6f93d7 (IsA necklace piece_of_jewelry) (STV 1.0 0.9091)) +(: cnet_isa_69ac7ba980 (IsA necklace piece_of_jewlery) (STV 1.0 0.9339)) +(: cnet_isa_b9fcf11dc4 (IsA necklace_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_bd8cb3eb0d (IsA necklet decoration) (STV 1.0 0.9091)) +(: cnet_isa_e76499308d (IsA neckline neck) (STV 1.0 0.9091)) +(: cnet_isa_9885646765 (IsA neckpiece clothing) (STV 1.0 0.9091)) +(: cnet_isa_22749038c8 (IsA necktie neckwear) (STV 1.0 0.9091)) +(: cnet_isa_56446c2144 (IsA neckwear garment) (STV 1.0 0.9091)) +(: cnet_isa_2ef868c342 (IsA necrobiosis death) (STV 1.0 0.9091)) +(: cnet_isa_54409c49a1 (IsA necrobiosis_lipoidica skin_disease) (STV 1.0 0.9091)) +(: cnet_isa_ef1df8f061 (IsA necrology list) (STV 1.0 0.9091)) +(: cnet_isa_6f891ea120 (IsA necrolysis lysis) (STV 1.0 0.9091)) +(: cnet_isa_28a7e1335f (IsA necromancer diviner) (STV 1.0 0.9091)) +(: cnet_isa_91d6707d3d (IsA necromancy divination) (STV 1.0 0.9091)) +(: cnet_isa_f470d3e35b (IsA necrophagia eating) (STV 1.0 0.9091)) +(: cnet_isa_fb2ca3f863 (IsA necrophilia mania) (STV 1.0 0.9091)) +(: cnet_isa_0b0972e1c6 (IsA necrosis death) (STV 1.0 0.9091)) +(: cnet_isa_0efa4ca160 (IsA necrotizing_enteritis enteritis) (STV 1.0 0.9091)) +(: cnet_isa_b756a6dab9 (IsA necrotizing_enterocolitis inflammatory_disease) (STV 1.0 0.9091)) +(: cnet_isa_b69641d079 (IsA nectar fruit_juice) (STV 1.0 0.9091)) +(: cnet_isa_ccc92377fd (IsA nectar secretion) (STV 1.0 0.9091)) +(: cnet_isa_7411b1ac1f (IsA nectarine edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_5b6277f4d4 (IsA nectarine fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_b5f57e6620 (IsA nectary plant_organ) (STV 1.0 0.9091)) +(: cnet_isa_81ec71787e (IsA necturus amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_c10a739b5f (IsA need necessity) (STV 1.0 0.9091)) +(: cnet_isa_7bf3c47114 (IsA need condition) (STV 1.0 0.9091)) +(: cnet_isa_136920f3b5 (IsA neediness quality) (STV 1.0 0.9091)) +(: cnet_isa_156fbcbc18 (IsA needle implement) (STV 1.0 0.9091)) +(: cnet_isa_af146196cc (IsA needle pointer) (STV 1.0 0.9091)) +(: cnet_isa_e7adffc945 (IsA needle_biopsy biopsy) (STV 1.0 0.9091)) +(: cnet_isa_bc2bb9ce4c (IsA needle_blight leaf_blight) (STV 1.0 0.9091)) +(: cnet_isa_3f072ac67b (IsA needle_spike_rush spike_rush) (STV 1.0 0.9091)) +(: cnet_isa_0e2ed451bc (IsA needlebush shrub) (STV 1.0 0.9091)) +(: cnet_isa_d29bdc74a2 (IsA needlefish teleost_fish) (STV 1.0 0.9091)) +(: cnet_isa_a053783fb4 (IsA needlenose_plier plier) (STV 1.0 0.9091)) +(: cnet_isa_f3566adaa3 (IsA needlepoint embroidery) (STV 1.0 0.9091)) +(: cnet_isa_a23126115d (IsA needlewood shrub) (STV 1.0 0.9091)) +(: cnet_isa_b1cf374458 (IsA needlework handicraft) (STV 1.0 0.9091)) +(: cnet_isa_39ac661324 (IsA needlework creation) (STV 1.0 0.9091)) +(: cnet_isa_33d9f9c0ed (IsA needleworker maker) (STV 1.0 0.9091)) +(: cnet_isa_d1c9227482 (IsA needy poor_people) (STV 1.0 0.9091)) +(: cnet_isa_da9fefb212 (IsA neem tree) (STV 1.0 0.9091)) +(: cnet_isa_841e5fbd90 (IsA neem_cake organic) (STV 1.0 0.9091)) +(: cnet_isa_857b5e4934 (IsA neem_seed seed) (STV 1.0 0.9091)) +(: cnet_isa_91eb7dd228 (IsA neencephalon neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_7a19d655fb (IsA nefariousness evil) (STV 1.0 0.9091)) +(: cnet_isa_a36cbbc8dc (IsA negaprion fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_1ebac61cce (IsA negation denial) (STV 1.0 0.9091)) +(: cnet_isa_82baaaecfb (IsA negation statement) (STV 1.0 0.9091)) +(: cnet_isa_6acd77229c (IsA negation proposition) (STV 1.0 0.9091)) +(: cnet_isa_27e6f2a76f (IsA negative film) (STV 1.0 0.9091)) +(: cnet_isa_8d628acdcd (IsA negative denial) (STV 1.0 0.9091)) +(: cnet_isa_c2986c09a5 (IsA negative_charge charge) (STV 1.0 0.9091)) +(: cnet_isa_fef08aac03 (IsA negative_chemotaxis chemotaxis) (STV 1.0 0.9091)) +(: cnet_isa_1179f467f9 (IsA negative_correlation correlation) (STV 1.0 0.9091)) +(: cnet_isa_c13c14b6c8 (IsA negative_feedback feedback) (STV 1.0 0.9091)) +(: cnet_isa_bfd1b20126 (IsA negative_identification identification) (STV 1.0 0.9091)) +(: cnet_isa_44e0298a5f (IsA negative_magnetic_pole pole) (STV 1.0 0.9091)) +(: cnet_isa_42e83ac530 (IsA negative_pole terminal) (STV 1.0 0.9091)) +(: cnet_isa_efeda2e50c (IsA negative_reinforcing_stimulus reinforcing_stimulus) (STV 1.0 0.9091)) +(: cnet_isa_bedea07d32 (IsA negative_stimulus stimulation) (STV 1.0 0.9091)) +(: cnet_isa_b5ffeb8ce4 (IsA negativeness amount) (STV 1.0 0.9091)) +(: cnet_isa_486cd3eee6 (IsA negativism quality) (STV 1.0 0.9091)) +(: cnet_isa_1eb4c16b7c (IsA negativist balker) (STV 1.0 0.9091)) +(: cnet_isa_120cae73e5 (IsA negativity polarity) (STV 1.0 0.9091)) +(: cnet_isa_e4823cf061 (IsA neglect decline) (STV 1.0 0.9091)) +(: cnet_isa_f6c4b9d50c (IsA neglect_of_duty negligence) (STV 1.0 0.9091)) +(: cnet_isa_d6a073c7ef (IsA neglecter person) (STV 1.0 0.9091)) +(: cnet_isa_28570b97dc (IsA negligee woman_s_clothing) (STV 1.0 0.9091)) +(: cnet_isa_c9e77c9bd6 (IsA negligence nonaccomplishment) (STV 1.0 0.9091)) +(: cnet_isa_945779dc1e (IsA negligence carelessness) (STV 1.0 0.9091)) +(: cnet_isa_468279cfd8 (IsA negotiable_instrument legal_document) (STV 1.0 0.9091)) +(: cnet_isa_55b47459b2 (IsA negotiation activity) (STV 1.0 0.9091)) +(: cnet_isa_b11104fb28 (IsA negotiation discussion) (STV 1.0 0.9091)) +(: cnet_isa_44af80bc3b (IsA negotiator communicator) (STV 1.0 0.9091)) +(: cnet_isa_95cc079917 (IsA negotiatress negotiator) (STV 1.0 0.9091)) +(: cnet_isa_f66709f0dd (IsA negress negro) (STV 1.0 0.9091)) +(: cnet_isa_54872e844b (IsA negritude political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_294f9e50ab (IsA negro_peach shrub) (STV 1.0 0.9091)) +(: cnet_isa_20b6dd9662 (IsA negro_vine vine) (STV 1.0 0.9091)) +(: cnet_isa_85f815e6c0 (IsA negroid person) (STV 1.0 0.9091)) +(: cnet_isa_3aab469b2e (IsA negus mulled_wine) (STV 1.0 0.9091)) +(: cnet_isa_e345cb87dd (IsA neigh cry) (STV 1.0 0.9091)) +(: cnet_isa_3bc255f236 (IsA neighbor who_live_near) (STV 1.0 0.9091)) +(: cnet_isa_91de31151f (IsA neighbor object) (STV 1.0 0.9091)) +(: cnet_isa_e6151617da (IsA neighbor person) (STV 1.0 0.9091)) +(: cnet_isa_6c74a61ba7 (IsA neighborhood community) (STV 1.0 0.9091)) +(: cnet_isa_ee46f82443 (IsA neighborhood area) (STV 1.0 0.9091)) +(: cnet_isa_805e4af7f9 (IsA neighborliness friendliness) (STV 1.0 0.9091)) +(: cnet_isa_91ea87a008 (IsA nekton organism) (STV 1.0 0.9091)) +(: cnet_isa_922f8146ae (IsA nelson wrestling_hold) (STV 1.0 0.9091)) +(: cnet_isa_224fdf11f8 (IsA nelumbo magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_531e9c64fb (IsA nelumbonaceae magnoliid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_a89bd683d1 (IsA nematocera animal_order) (STV 1.0 0.9091)) +(: cnet_isa_1063c0fe96 (IsA nematoda phylum) (STV 1.0 0.9091)) +(: cnet_isa_559597142a (IsA nematode worm) (STV 1.0 0.9091)) +(: cnet_isa_295216ff75 (IsA nemean_game agon) (STV 1.0 0.9091)) +(: cnet_isa_3a5e43e061 (IsA nemean_lion mythical_monster) (STV 1.0 0.9091)) +(: cnet_isa_fba840b9b9 (IsA nemertea phylum) (STV 1.0 0.9091)) +(: cnet_isa_eb5a218ef3 (IsA nemophila herb) (STV 1.0 0.9091)) +(: cnet_isa_43c25a8fe9 (IsA nenet samoyedic) (STV 1.0 0.9091)) +(: cnet_isa_cc381ca7f6 (IsA neo_darwinism darwinism) (STV 1.0 0.9091)) +(: cnet_isa_95687972b6 (IsA neo_lamarckism lamarckism) (STV 1.0 0.9091)) +(: cnet_isa_1864762467 (IsA neo_latin latin) (STV 1.0 0.9091)) +(: cnet_isa_8310cc9e97 (IsA neoceratodus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_25e4d54edb (IsA neoclassicism artistic_style) (STV 1.0 0.9091)) +(: cnet_isa_6e743f6c82 (IsA neoclassicism humanistic_discipline) (STV 1.0 0.9091)) +(: cnet_isa_e7c788a83c (IsA neoclassicist advocate) (STV 1.0 0.9091)) +(: cnet_isa_21e12fa6d2 (IsA neocolonialism colonialism) (STV 1.0 0.9091)) +(: cnet_isa_8bf78e1e6f (IsA neoconservatism conservatism) (STV 1.0 0.9091)) +(: cnet_isa_c5f23d1793 (IsA neoconservative conservative) (STV 1.0 0.9091)) +(: cnet_isa_aa6e7507c3 (IsA neodymium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_0aa9e4e4c1 (IsA neoexpressionism expressionism) (STV 1.0 0.9091)) +(: cnet_isa_968038d621 (IsA neofiber mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_bf7fafde96 (IsA neohygrophorus fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_53b13ba1d7 (IsA neohygrophorus_angelesianus waxycap) (STV 1.0 0.9091)) +(: cnet_isa_1fd4d8243c (IsA neolentinus fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_c73e8b1fac (IsA neolentinus_ponderosus polypore) (STV 1.0 0.9091)) +(: cnet_isa_4bf8c212b2 (IsA neoliberal liberal) (STV 1.0 0.9091)) +(: cnet_isa_962365ff20 (IsA neoliberalism liberalism) (STV 1.0 0.9091)) +(: cnet_isa_ab70588527 (IsA neolith tool) (STV 1.0 0.9091)) +(: cnet_isa_4d5f0937cb (IsA neologism invention) (STV 1.0 0.9091)) +(: cnet_isa_a6a4fb441a (IsA neologism word) (STV 1.0 0.9091)) +(: cnet_isa_0d89c029f9 (IsA neologist lexicographer) (STV 1.0 0.9091)) +(: cnet_isa_646f5ca26d (IsA neomy mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_919e083ace (IsA neon chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_d0cdef2b1f (IsA neon noble_gas) (STV 1.0 0.9091)) +(: cnet_isa_ce2b8eb964 (IsA neon_lamp lamp) (STV 1.0 0.9091)) +(: cnet_isa_a1144f26fe (IsA neonatal_death death) (STV 1.0 0.9091)) +(: cnet_isa_0a77685d4b (IsA neonatal_intensive_care_unit intensive_care_unit) (STV 1.0 0.9091)) +(: cnet_isa_0e21ea17ed (IsA neonatal_mortality deathrate) (STV 1.0 0.9091)) +(: cnet_isa_d1119adadf (IsA neonatal_period time_of_life) (STV 1.0 0.9091)) +(: cnet_isa_9f6f5a2adb (IsA neonate baby) (STV 1.0 0.9091)) +(: cnet_isa_cdf8ebf38f (IsA neonatology pediatric) (STV 1.0 0.9091)) +(: cnet_isa_d5c31cb410 (IsA neopallium cerebral_cortex) (STV 1.0 0.9091)) +(: cnet_isa_76c2c08641 (IsA neophobia simple_phobia) (STV 1.0 0.9091)) +(: cnet_isa_7afdb0a882 (IsA neophron bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_e5752833a5 (IsA neophyte plant) (STV 1.0 0.9091)) +(: cnet_isa_7ed9f7b173 (IsA neoplasia pathologic_process) (STV 1.0 0.9091)) +(: cnet_isa_5e62774ffe (IsA neoplastic_cell somatic_cell) (STV 1.0 0.9091)) +(: cnet_isa_00deadd901 (IsA neoplatonism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_c6c2ad2b16 (IsA neoplatonism theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_accecec475 (IsA neoplatonist disciple) (STV 1.0 0.9091)) +(: cnet_isa_f1ce00e22e (IsA neopolitan italian) (STV 1.0 0.9091)) +(: cnet_isa_b0a1dc4f17 (IsA neoprene synthetic_rubber) (STV 1.0 0.9091)) +(: cnet_isa_402c02bce8 (IsA neoromanticism artistic_movement) (STV 1.0 0.9091)) +(: cnet_isa_eb61456200 (IsA neoteny evolutionary_trend) (STV 1.0 0.9091)) +(: cnet_isa_259cc5a438 (IsA neotoma mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_4088ee1f55 (IsA neotony state) (STV 1.0 0.9091)) +(: cnet_isa_410ca021ce (IsA nepa arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_6472327857 (IsA nepal_trumpet_flower vine) (STV 1.0 0.9091)) +(: cnet_isa_81f7e3d3d7 (IsA nepalese asiatic) (STV 1.0 0.9091)) +(: cnet_isa_b61cb30a51 (IsA nepalese_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_4d660d978e (IsA nepalese_rupee nepalese_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_1e1d749b1b (IsA nepali indic) (STV 1.0 0.9091)) +(: cnet_isa_a805d4c38b (IsA nepenthaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_45a9291388 (IsA nepenthe dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8fea8be637 (IsA nepeta asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5b7561d061 (IsA nepheline mineral) (STV 1.0 0.9091)) +(: cnet_isa_dd396519e4 (IsA nephelinite mineral) (STV 1.0 0.9091)) +(: cnet_isa_e69c76b8ae (IsA nephelium dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_bc72e44def (IsA nephew nibling) (STV 1.0 0.9091)) +(: cnet_isa_feba4bd999 (IsA nephew kinsman) (STV 1.0 0.9091)) +(: cnet_isa_b74929280d (IsA nephology meteorology) (STV 1.0 0.9091)) +(: cnet_isa_8208cdf483 (IsA nephoscope measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_004c417787 (IsA nephralgia pain) (STV 1.0 0.9091)) +(: cnet_isa_67ee56611b (IsA nephrectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_355aad3662 (IsA nephrite amphibole) (STV 1.0 0.9091)) +(: cnet_isa_db544a065f (IsA nephritis kidney_disease) (STV 1.0 0.9091)) +(: cnet_isa_a5df4ac6bc (IsA nephrocalcinosis nephrolithiasis) (STV 1.0 0.9091)) +(: cnet_isa_ff4a0c326c (IsA nephrogenic_diabete_insipidus diabete_insipidus) (STV 1.0 0.9091)) +(: cnet_isa_059f2f7da9 (IsA nephrolepis fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_4fe4593de5 (IsA nephrolithiasis lithiasis) (STV 1.0 0.9091)) +(: cnet_isa_23e9605ff9 (IsA nephrology medicine) (STV 1.0 0.9091)) +(: cnet_isa_01a2bea9e1 (IsA nephron tubule) (STV 1.0 0.9091)) +(: cnet_isa_0bfa15d372 (IsA nephrop arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_6bde649dc9 (IsA nephropsidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_0114e64fcb (IsA nephroptosis prolapse) (STV 1.0 0.9091)) +(: cnet_isa_b38de5641c (IsA nephrosclerosis kidney_disease) (STV 1.0 0.9091)) +(: cnet_isa_c7ee210dc7 (IsA nephrotic_syndrome syndrome) (STV 1.0 0.9091)) +(: cnet_isa_6336d2d853 (IsA nephrotomy incision) (STV 1.0 0.9091)) +(: cnet_isa_5de5174a66 (IsA nephrotoxin toxin) (STV 1.0 0.9091)) +(: cnet_isa_d3d1bf5def (IsA nephthytis arum) (STV 1.0 0.9091)) +(: cnet_isa_c6ee60b659 (IsA nephthytis_afzelii nephthytis) (STV 1.0 0.9091)) +(: cnet_isa_f42f2769b4 (IsA nepidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_5711e7c145 (IsA nepotism discrimination) (STV 1.0 0.9091)) +(: cnet_isa_eb3bac6f67 (IsA nepotist important_person) (STV 1.0 0.9091)) +(: cnet_isa_4dd9238901 (IsA neptune planet) (STV 1.0 0.9524)) +(: cnet_isa_414c7de4f0 (IsA neptunium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_249a05944b (IsA nerd expert) (STV 1.0 0.9091)) +(: cnet_isa_65f92014c3 (IsA nerd candy) (STV 1.0 0.9339)) +(: cnet_isa_4f342274b2 (IsA nereid sea_nymph) (STV 1.0 0.9091)) +(: cnet_isa_e7fc4eba0b (IsA nerita neritid) (STV 1.0 0.9091)) +(: cnet_isa_8a90c0d47f (IsA neritic_zone ocean_floor) (STV 1.0 0.9091)) +(: cnet_isa_2eae6a52fe (IsA neritid seasnail) (STV 1.0 0.9091)) +(: cnet_isa_026efd166c (IsA neritidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_ce98a21220 (IsA neritina neritid) (STV 1.0 0.9091)) +(: cnet_isa_01c9480fde (IsA nerium dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_83048b4ff7 (IsA nerodia reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_648378c4d2 (IsA neroli_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_d8c1a409a3 (IsA nerve fiber_bundle) (STV 1.0 0.9091)) +(: cnet_isa_ca5c021865 (IsA nerve_cell somatic_cell) (STV 1.0 0.9091)) +(: cnet_isa_bf1f896e10 (IsA nerve_center center) (STV 1.0 0.9091)) +(: cnet_isa_d473207d46 (IsA nerve_compression nervous_disorder) (STV 1.0 0.9091)) +(: cnet_isa_cb90a3fcee (IsA nerve_ending end) (STV 1.0 0.9091)) +(: cnet_isa_055b26311c (IsA nerve_entrapment nerve_compression) (STV 1.0 0.9091)) +(: cnet_isa_7c5464fce7 (IsA nerve_fiber fiber) (STV 1.0 0.9091)) +(: cnet_isa_e81b5e3fde (IsA nerve_fiber fibre) (STV 1.0 0.9091)) +(: cnet_isa_2e1c17001c (IsA nerve_gas agent) (STV 1.0 0.9091)) +(: cnet_isa_d369102bf4 (IsA nerve_gas poison_gas) (STV 1.0 0.9091)) +(: cnet_isa_f2e7aaa908 (IsA nerve_growth_factor growth_factor) (STV 1.0 0.9091)) +(: cnet_isa_a407b7b40a (IsA nerve_impulse electrical_discharge) (STV 1.0 0.9091)) +(: cnet_isa_5f7f73e4e5 (IsA nerve_pathway white_matter) (STV 1.0 0.9091)) +(: cnet_isa_bfe2fd29b2 (IsA nerve_plexus plexus) (STV 1.0 0.9091)) +(: cnet_isa_3237271d22 (IsA nerve self_control) (STV 1.0 0.9091)) +(: cnet_isa_d7ba71fcdc (IsA nervous_breakdown breakdown) (STV 1.0 0.9091)) +(: cnet_isa_89cc104b0c (IsA nervous_disorder disorder) (STV 1.0 0.9091)) +(: cnet_isa_ca750aa39d (IsA nervous_exhaustion nervous_breakdown) (STV 1.0 0.9091)) +(: cnet_isa_a7ff21584f (IsA nervous_system system) (STV 1.0 0.9091)) +(: cnet_isa_df0ef6d85b (IsA nervous_tissue animal_tissue) (STV 1.0 0.9091)) +(: cnet_isa_fc3e088b82 (IsA nervousness disposition) (STV 1.0 0.9091)) +(: cnet_isa_4962096915 (IsA nervousness psychological_state) (STV 1.0 0.9091)) +(: cnet_isa_27d1126d47 (IsA nesokia mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_19dcaaaa43 (IsA nesselrode pudding) (STV 1.0 0.9091)) +(: cnet_isa_062b83e036 (IsA nest furniture) (STV 1.0 0.9091)) +(: cnet_isa_e33d6926bb (IsA nest gun_emplacement) (STV 1.0 0.9091)) +(: cnet_isa_55fa101542 (IsA nest retreat) (STV 1.0 0.9091)) +(: cnet_isa_7fc9ab913a (IsA nest natural_object) (STV 1.0 0.9091)) +(: cnet_isa_b8966b50eb (IsA nest gang) (STV 1.0 0.9091)) +(: cnet_isa_10d5948f35 (IsA nest_egg device) (STV 1.0 0.9091)) +(: cnet_isa_c55fb2a564 (IsA nester bird) (STV 1.0 0.9091)) +(: cnet_isa_3390e6a892 (IsA nesting_place topographic_point) (STV 1.0 0.9091)) +(: cnet_isa_07c93383a2 (IsA nestling young_bird) (STV 1.0 0.9091)) +(: cnet_isa_de2043f039 (IsA nestor bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_b52de7d35c (IsA nestorian follower) (STV 1.0 0.9091)) +(: cnet_isa_7382fc9eb1 (IsA nestorian_church church) (STV 1.0 0.9091)) +(: cnet_isa_430ea33af7 (IsA nestorianism heresy) (STV 1.0 0.9091)) +(: cnet_isa_4ad62d8b32 (IsA nestorianism theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_d3bb285072 (IsA net fabric) (STV 1.0 0.9091)) +(: cnet_isa_45fc201ebf (IsA net game_equipment) (STV 1.0 0.9091)) +(: cnet_isa_dc21362357 (IsA net trap) (STV 1.0 0.9091)) +(: cnet_isa_4e5e3638f1 (IsA net goal) (STV 1.0 0.9091)) +(: cnet_isa_46bfeb5dbd (IsA net_estate estate) (STV 1.0 0.9091)) +(: cnet_isa_353a050f6e (IsA net_income income) (STV 1.0 0.9091)) +(: cnet_isa_f527264e68 (IsA net_melon muskmelon) (STV 1.0 0.9091)) +(: cnet_isa_230fef9f66 (IsA net_melon sweet_melon) (STV 1.0 0.9091)) +(: cnet_isa_fa5dd959b3 (IsA net_sale income) (STV 1.0 0.9091)) +(: cnet_isa_dd4e3acf3d (IsA netball court_game) (STV 1.0 0.9091)) +(: cnet_isa_80dcd56e0c (IsA netbsd operating_system) (STV 1.0 0.9091)) +(: cnet_isa_9393211cd6 (IsA netting weaving) (STV 1.0 0.9091)) +(: cnet_isa_3faf4a8e5b (IsA nettle weed) (STV 1.0 0.9091)) +(: cnet_isa_0874b738d9 (IsA nettle_leaved_goosefoot goosefoot) (STV 1.0 0.9091)) +(: cnet_isa_b730ba7b63 (IsA network system) (STV 1.0 0.9091)) +(: cnet_isa_38da07f1b3 (IsA network communication_system) (STV 1.0 0.9091)) +(: cnet_isa_d3c975cb66 (IsA network_architecture specification) (STV 1.0 0.9091)) +(: cnet_isa_7ea62f9a84 (IsA network_army people) (STV 1.0 0.9091)) +(: cnet_isa_7e8c89f6f4 (IsA network_programming schedule) (STV 1.0 0.9091)) +(: cnet_isa_12fc011edc (IsA neural_arch arch) (STV 1.0 0.9091)) +(: cnet_isa_a96992dbf3 (IsA neural_network artificial_intelligence) (STV 1.0 0.9091)) +(: cnet_isa_0689640622 (IsA neural_network reticulum) (STV 1.0 0.9091)) +(: cnet_isa_ce44818cd7 (IsA neural_network computer_architecture) (STV 1.0 0.9091)) +(: cnet_isa_baaaa448ea (IsA neural_structure structure) (STV 1.0 0.9091)) +(: cnet_isa_6f5cfcf251 (IsA neural_tube ectoderm) (STV 1.0 0.9091)) +(: cnet_isa_51c91d7e41 (IsA neuralgia pain) (STV 1.0 0.9091)) +(: cnet_isa_4b9663df85 (IsA neurasthenia nervous_breakdown) (STV 1.0 0.9091)) +(: cnet_isa_b3dd96af03 (IsA neurasthenic sick_person) (STV 1.0 0.9091)) +(: cnet_isa_dd3fe60354 (IsA neurectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_6fb5dca2df (IsA neurinoma benign_tumor) (STV 1.0 0.9091)) +(: cnet_isa_006310cf4b (IsA neuritis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_a0638e1dd9 (IsA neuro_marketing marketing) (STV 1.0 0.9091)) +(: cnet_isa_d731a75352 (IsA neuroanatomy anatomy) (STV 1.0 0.9091)) +(: cnet_isa_158de42304 (IsA neurobiologist biologist) (STV 1.0 0.9091)) +(: cnet_isa_f3373afe60 (IsA neurobiology biology) (STV 1.0 0.9091)) +(: cnet_isa_e48737682e (IsA neuroblast embryonic_cell) (STV 1.0 0.9091)) +(: cnet_isa_b3d77348e6 (IsA neuroblastoma malignant_tumor) (STV 1.0 0.9091)) +(: cnet_isa_9418b7fac0 (IsA neurochemical organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_427559ffa3 (IsA neurodermatitis dermatitis) (STV 1.0 0.9091)) +(: cnet_isa_423bf3531b (IsA neuroepithelioma malignant_tumor) (STV 1.0 0.9091)) +(: cnet_isa_7fcbee2f9f (IsA neuroepithelium epithelium) (STV 1.0 0.9091)) +(: cnet_isa_15b135ceb5 (IsA neuroethic bioethic) (STV 1.0 0.9091)) +(: cnet_isa_83f3da0b30 (IsA neurofibroma tumor) (STV 1.0 0.9091)) +(: cnet_isa_ea28d04f06 (IsA neurofibromatosis autosomal_dominant_disease) (STV 1.0 0.9091)) +(: cnet_isa_8258709504 (IsA neurofibromatosis monogenic_disorder) (STV 1.0 0.9091)) +(: cnet_isa_eff8c40045 (IsA neurogenesis growth) (STV 1.0 0.9091)) +(: cnet_isa_a3cb66cb1c (IsA neurogenic_bladder bladder_disorder) (STV 1.0 0.9091)) +(: cnet_isa_64ba86f86a (IsA neuroglia interstitial_tissue) (STV 1.0 0.9091)) +(: cnet_isa_d6aa80da1e (IsA neurogliacyte somatic_cell) (STV 1.0 0.9091)) +(: cnet_isa_e782a21db6 (IsA neurohormone hormone) (STV 1.0 0.9091)) +(: cnet_isa_91b11aa430 (IsA neurolemma sheath) (STV 1.0 0.9091)) +(: cnet_isa_63737170ff (IsA neurolinguist linguist) (STV 1.0 0.9091)) +(: cnet_isa_e20ddf559c (IsA neurolinguist neuroscientist) (STV 1.0 0.9091)) +(: cnet_isa_ad1e0abc4a (IsA neurolinguistic linguistic) (STV 1.0 0.9091)) +(: cnet_isa_3e795d2020 (IsA neurologist specialist) (STV 1.0 0.9091)) +(: cnet_isa_703929c8d5 (IsA neurology medical_science) (STV 1.0 0.9091)) +(: cnet_isa_0cd9b80bbf (IsA neurology medicine) (STV 1.0 0.9091)) +(: cnet_isa_13703a6ba1 (IsA neuroma tumor) (STV 1.0 0.9091)) +(: cnet_isa_15fdeff695 (IsA neuromuscular_blocking_agent blocker) (STV 1.0 0.9091)) +(: cnet_isa_d13eb7f234 (IsA neuromuscular_junction synapse) (STV 1.0 0.9091)) +(: cnet_isa_84f01d4149 (IsA neuron diploid_cell) (STV 1.0 0.9091)) +(: cnet_isa_0be1cfbcbd (IsA neuron neuron) (STV 1.0 0.9091)) +(: cnet_isa_33141cdaf5 (IsA neuropathy pathology) (STV 1.0 0.9091)) +(: cnet_isa_f0b338e171 (IsA neurophysiology neuroscience) (STV 1.0 0.9091)) +(: cnet_isa_093a8b4a3d (IsA neurophysiology physiology) (STV 1.0 0.9091)) +(: cnet_isa_ae9d6793c7 (IsA neuropile nervous_tissue) (STV 1.0 0.9091)) +(: cnet_isa_af28e9edef (IsA neuroplasty plastic_surgery) (STV 1.0 0.9091)) +(: cnet_isa_7a3a351e18 (IsA neuropsychiatry medicine) (STV 1.0 0.9091)) +(: cnet_isa_5cf3ecf118 (IsA neuroptera animal_order) (STV 1.0 0.9091)) +(: cnet_isa_5cbd894187 (IsA neuropteron insect) (STV 1.0 0.9091)) +(: cnet_isa_bcccf61ceb (IsA neurosarcoma sarcoma) (STV 1.0 0.9091)) +(: cnet_isa_d665b22e3c (IsA neuroscience neurobiology) (STV 1.0 0.9091)) +(: cnet_isa_b90e633aa5 (IsA neuroscientist neurobiologist) (STV 1.0 0.9091)) +(: cnet_isa_5a6d428cd8 (IsA neurosis mental_imbalance) (STV 1.0 0.9091)) +(: cnet_isa_f74d5f90e5 (IsA neurosis mental_disorder) (STV 1.0 0.9091)) +(: cnet_isa_8751730607 (IsA neurospora fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_36fbd7702a (IsA neurosurgeon surgeon) (STV 1.0 0.9091)) +(: cnet_isa_1840e4505f (IsA neurosurgery operation) (STV 1.0 0.9091)) +(: cnet_isa_724e36c3a1 (IsA neurosyphilis syphilis) (STV 1.0 0.9091)) +(: cnet_isa_fd3cba2e16 (IsA neurotic sick_person) (STV 1.0 0.9091)) +(: cnet_isa_1eebc3c505 (IsA neurotic_depression depressive_disorder) (STV 1.0 0.9091)) +(: cnet_isa_38bdad3d41 (IsA neurotoxin toxin) (STV 1.0 0.9091)) +(: cnet_isa_f3a91c3de0 (IsA neurotransmitter neurochemical) (STV 1.0 0.9091)) +(: cnet_isa_05004bead4 (IsA neurotrichus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_8186350690 (IsA neurotropism tropism) (STV 1.0 0.9091)) +(: cnet_isa_a7980fe302 (IsA neuter gender) (STV 1.0 0.9091)) +(: cnet_isa_d507e938b3 (IsA neutering sterilization) (STV 1.0 0.9091)) +(: cnet_isa_528b34db56 (IsA neutral person) (STV 1.0 0.9091)) +(: cnet_isa_7872677f47 (IsA neutral_spirit alcohol) (STV 1.0 0.9091)) +(: cnet_isa_cd8d63ce78 (IsA neutralism foreign_policy) (STV 1.0 0.9091)) +(: cnet_isa_cbdf988f20 (IsA neutralist advocate) (STV 1.0 0.9091)) +(: cnet_isa_6442c86b7a (IsA neutrality non_engagement) (STV 1.0 0.9091)) +(: cnet_isa_4d74b98d8c (IsA neutrality ph) (STV 1.0 0.9091)) +(: cnet_isa_1aec76746a (IsA neutralization destruction) (STV 1.0 0.9091)) +(: cnet_isa_9fb3e30de9 (IsA neutralization nullification) (STV 1.0 0.9091)) +(: cnet_isa_be06459c35 (IsA neutralization chemical_reaction) (STV 1.0 0.9091)) +(: cnet_isa_0243a56dfc (IsA neutralization_fire fire) (STV 1.0 0.9091)) +(: cnet_isa_f76af780d1 (IsA neutrino elementary_particle) (STV 1.0 0.9091)) +(: cnet_isa_68b37c8b72 (IsA neutrino lepton) (STV 1.0 0.9091)) +(: cnet_isa_e7db1207ec (IsA neutron nucleon) (STV 1.0 0.9091)) +(: cnet_isa_963abda67b (IsA neutron_bomb atom_bomb) (STV 1.0 0.9091)) +(: cnet_isa_4496ab799a (IsA neutron_flux flux) (STV 1.0 0.9091)) +(: cnet_isa_89bb7f8b53 (IsA neutron_radiation corpuscular_radiation) (STV 1.0 0.9091)) +(: cnet_isa_7e5a839daf (IsA neutron_radiation ionizing_radiation) (STV 1.0 0.9091)) +(: cnet_isa_3eb999e3aa (IsA neutron_star star) (STV 1.0 0.9091)) +(: cnet_isa_0a396f0fb9 (IsA neutropenia leukopenia) (STV 1.0 0.9091)) +(: cnet_isa_85b11e1eeb (IsA neutrophil leukocyte) (STV 1.0 0.9091)) +(: cnet_isa_3dc2392b50 (IsA nevada state) (STV 1.0 0.9339)) +(: cnet_isa_81266cdc73 (IsA nevadan american) (STV 1.0 0.9091)) +(: cnet_isa_2d95e42961 (IsA neve ice) (STV 1.0 0.9091)) +(: cnet_isa_3fe263b56b (IsA never_never_land imaginary_place) (STV 1.0 0.9091)) +(: cnet_isa_7828256b0b (IsA nevoid_elephantiasis elephantiasis) (STV 1.0 0.9091)) +(: cnet_isa_0d8d40a895 (IsA nevoid_elephantiasis genetic_disease) (STV 1.0 0.9091)) +(: cnet_isa_8d6476ff47 (IsA new_caledonia island) (STV 1.0 0.9091)) +(: cnet_isa_6c444f3741 (IsA new_caledonian_pine araucaria) (STV 1.0 0.9091)) +(: cnet_isa_a06845379b (IsA new_caledonian_yew yew) (STV 1.0 0.9091)) +(: cnet_isa_7c3fd866b0 (IsA new_criticism criticism) (STV 1.0 0.9091)) +(: cnet_isa_3ccfb4cffd (IsA new_deal deal) (STV 1.0 0.9091)) +(: cnet_isa_45787b3122 (IsA new_deal economic_policy) (STV 1.0 0.9091)) +(: cnet_isa_389491e03d (IsA new_dealer supporter) (STV 1.0 0.9091)) +(: cnet_isa_330a1d1364 (IsA new_edition publication) (STV 1.0 0.9091)) +(: cnet_isa_1e92e7e9f9 (IsA new_england_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_349a24e164 (IsA new_england_clam_chowder clam_chowder) (STV 1.0 0.9091)) +(: cnet_isa_f9587dd68c (IsA new_englander american) (STV 1.0 0.9091)) +(: cnet_isa_4d3dcb6e34 (IsA new_line printing_operation) (STV 1.0 0.9091)) +(: cnet_isa_6eafab0178 (IsA new_look vogue) (STV 1.0 0.9091)) +(: cnet_isa_c38603adcb (IsA new_mexican american) (STV 1.0 0.9091)) +(: cnet_isa_9431872d76 (IsA new_mexico state) (STV 1.0 0.9524)) +(: cnet_isa_94b24cfe1a (IsA new_moon phase_of_moon) (STV 1.0 0.9091)) +(: cnet_isa_7c64f75c6f (IsA new_norwegian norwegian) (STV 1.0 0.9091)) +(: cnet_isa_8c956ea6bf (IsA new_penny penny) (STV 1.0 0.9091)) +(: cnet_isa_6853afa89f (IsA new_south_wale state_of_australia) (STV 1.0 0.9091)) +(: cnet_isa_42627211cf (IsA new_testament will) (STV 1.0 0.9091)) +(: cnet_isa_65cc67cef2 (IsA new_town urban_area) (STV 1.0 0.9091)) +(: cnet_isa_7104777557 (IsA new_wave artistic_movement) (STV 1.0 0.9091)) +(: cnet_isa_673ebad83b (IsA new_waver film_maker) (STV 1.0 0.9091)) +(: cnet_isa_c70f64d323 (IsA new_world_beaver beaver) (STV 1.0 0.9091)) +(: cnet_isa_497f4e8e5f (IsA new_world_blackbird new_world_oriole) (STV 1.0 0.9091)) +(: cnet_isa_580e0efbee (IsA new_world_chat new_world_warbler) (STV 1.0 0.9091)) +(: cnet_isa_5109dd8a35 (IsA new_world_flycatcher tyrannid) (STV 1.0 0.9091)) +(: cnet_isa_1023eec7c2 (IsA new_world_goldfinch finch) (STV 1.0 0.9091)) +(: cnet_isa_368df0697d (IsA new_world_jay jay) (STV 1.0 0.9091)) +(: cnet_isa_8d301dc991 (IsA new_world_least_weasel weasel) (STV 1.0 0.9091)) +(: cnet_isa_6e21b796ea (IsA new_world_monkey monkey) (STV 1.0 0.9091)) +(: cnet_isa_eb2341fdc4 (IsA new_world_mouse rodent) (STV 1.0 0.9091)) +(: cnet_isa_747b36be9e (IsA new_world_opah soft_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_f01a47891b (IsA new_world_oriole oscine) (STV 1.0 0.9091)) +(: cnet_isa_6607389155 (IsA new_world_porcupine porcupine) (STV 1.0 0.9091)) +(: cnet_isa_4b54d92976 (IsA new_world_sparrow finch) (STV 1.0 0.9091)) +(: cnet_isa_28f279215a (IsA new_world_tapir tapir) (STV 1.0 0.9091)) +(: cnet_isa_1ffc8f3cb2 (IsA new_world_vulture vulture) (STV 1.0 0.9091)) +(: cnet_isa_768d58896f (IsA new_world_warbler warbler) (STV 1.0 0.9091)) +(: cnet_isa_e27b7a2895 (IsA new_year_s_day legal_holiday) (STV 1.0 0.9091)) +(: cnet_isa_06a2782af3 (IsA new_year_s_eve day) (STV 1.0 0.9091)) +(: cnet_isa_0518b2d389 (IsA new_year year) (STV 1.0 0.9091)) +(: cnet_isa_752ebaf48b (IsA new_york state) (STV 1.0 0.9636)) +(: cnet_isa_df79141788 (IsA new_york_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_f2580c7f2e (IsA new_yorker american) (STV 1.0 0.9091)) +(: cnet_isa_0ac6e0fe2f (IsA new_zealand country) (STV 1.0 0.9454)) +(: cnet_isa_273f04ef91 (IsA new_zealand_beech southern_beech) (STV 1.0 0.9091)) +(: cnet_isa_4d77c5b430 (IsA new_zealand_cotton natural_fiber) (STV 1.0 0.9091)) +(: cnet_isa_fe81832bbc (IsA new_zealand_daisybush daisybush) (STV 1.0 0.9091)) +(: cnet_isa_8c2271a34b (IsA new_zealand_dollar dollar) (STV 1.0 0.9091)) +(: cnet_isa_1d8849bb82 (IsA new_zealand_spinach herb) (STV 1.0 0.9091)) +(: cnet_isa_ebd58cd345 (IsA new_zealand_wren oscine) (STV 1.0 0.9091)) +(: cnet_isa_adfdd17982 (IsA newari himalayish) (STV 1.0 0.9091)) +(: cnet_isa_1e090f4a69 (IsA newburg_sauce sauce) (STV 1.0 0.9091)) +(: cnet_isa_3614eae925 (IsA newcastle_disease animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_e02ff1b868 (IsA newcomer arrival) (STV 1.0 0.9091)) +(: cnet_isa_3f294dc77e (IsA newcomer novice) (STV 1.0 0.9091)) +(: cnet_isa_0c99171a20 (IsA newel column) (STV 1.0 0.9091)) +(: cnet_isa_c983e43d48 (IsA newel_post post) (STV 1.0 0.9091)) +(: cnet_isa_e3bfa1216a (IsA newfoundland dog) (STV 1.0 0.9091)) +(: cnet_isa_8b21d95be9 (IsA newfoundland_dwarf_birch birch) (STV 1.0 0.9091)) +(: cnet_isa_0dee6ebfd0 (IsA newlywed spouse) (STV 1.0 0.9091)) +(: cnet_isa_2fd71a0972 (IsA newmarket coat) (STV 1.0 0.9091)) +(: cnet_isa_98a36f3b97 (IsA newness age) (STV 1.0 0.9091)) +(: cnet_isa_92c9de933b (IsA new information) (STV 1.0 0.9091)) +(: cnet_isa_f6e96a8bab (IsA new_agency agency) (STV 1.0 0.9091)) +(: cnet_isa_9ef0392d22 (IsA new_article article) (STV 1.0 0.9091)) +(: cnet_isa_8992954f95 (IsA new_bulletin bulletin) (STV 1.0 0.9091)) +(: cnet_isa_727a88f630 (IsA new_event happening) (STV 1.0 0.9091)) +(: cnet_isa_c16255b3b8 (IsA new_item item) (STV 1.0 0.9091)) +(: cnet_isa_755df61ca0 (IsA new_magazine magazine) (STV 1.0 0.9091)) +(: cnet_isa_85d7bd96a2 (IsA new_photography photojournalism) (STV 1.0 0.9091)) +(: cnet_isa_0aa52ab508 (IsA new_program broadcast) (STV 1.0 0.9091)) +(: cnet_isa_92aab3d03e (IsA newsagent shopkeeper) (STV 1.0 0.9091)) +(: cnet_isa_1a6f12be64 (IsA newscast broadcast) (STV 1.0 0.9091)) +(: cnet_isa_2bfaa93ee4 (IsA newscast new) (STV 1.0 0.9091)) +(: cnet_isa_6d9bfd6111 (IsA newscaster announcer) (STV 1.0 0.9091)) +(: cnet_isa_47270c673e (IsA newsletter report) (STV 1.0 0.9091)) +(: cnet_isa_c5973ed975 (IsA newspaper media) (STV 1.0 0.9091)) +(: cnet_isa_1cbe997295 (IsA newspaper product) (STV 1.0 0.9091)) +(: cnet_isa_d1cad371c5 (IsA newspaper press) (STV 1.0 0.9091)) +(: cnet_isa_38e46c2dd7 (IsA newspaper publisher) (STV 1.0 0.9091)) +(: cnet_isa_78e5d64849 (IsA newspaper paper) (STV 1.0 0.9091)) +(: cnet_isa_6331cd6831 (IsA newspaper_ad ad) (STV 1.0 0.9091)) +(: cnet_isa_be3aea077d (IsA newspaper_columnist columnist) (STV 1.0 0.9091)) +(: cnet_isa_99d27ca08f (IsA newspaper_critic critic) (STV 1.0 0.9091)) +(: cnet_isa_25293e9617 (IsA newspaper_critic newspaper_columnist) (STV 1.0 0.9091)) +(: cnet_isa_e508ba5db3 (IsA newspaper_editor editor) (STV 1.0 0.9091)) +(: cnet_isa_8726c22cff (IsA newspapering journalism) (STV 1.0 0.9091)) +(: cnet_isa_55abe4c232 (IsA newspaper document) (STV 1.0 0.9091)) +(: cnet_isa_c5c062242c (IsA newspeak fabrication) (STV 1.0 0.9091)) +(: cnet_isa_6b03534ba2 (IsA newsreader newscaster) (STV 1.0 0.9091)) +(: cnet_isa_1c91e06be9 (IsA newsreel short_subject) (STV 1.0 0.9091)) +(: cnet_isa_3fdb91efc3 (IsA newsroom office) (STV 1.0 0.9091)) +(: cnet_isa_192cf79885 (IsA newsroom reading_room) (STV 1.0 0.9091)) +(: cnet_isa_1dbeb05ae6 (IsA newsroom staff) (STV 1.0 0.9091)) +(: cnet_isa_5249b10d7f (IsA newsstand stall) (STV 1.0 0.9091)) +(: cnet_isa_e807882c53 (IsA newsweek magazine) (STV 1.0 0.9524)) +(: cnet_isa_2d7e34886b (IsA newswoman reporter) (STV 1.0 0.9091)) +(: cnet_isa_496d5c7f11 (IsA newsworthiness interest) (STV 1.0 0.9091)) +(: cnet_isa_540dad5610 (IsA newt salamander) (STV 1.0 0.9091)) +(: cnet_isa_b499b20695 (IsA newton_s_law_of_motion law) (STV 1.0 0.9091)) +(: cnet_isa_46c9b6e8ec (IsA newton force_unit) (STV 1.0 0.9091)) +(: cnet_isa_ad190826c7 (IsA newtonian follower) (STV 1.0 0.9091)) +(: cnet_isa_cfd2e35ed7 (IsA newtonian_telescope reflecting_telescope) (STV 1.0 0.9091)) +(: cnet_isa_2f6d658adc (IsA newtown_wonder cooking_apple) (STV 1.0 0.9091)) +(: cnet_isa_459c0db17c (IsA next_friend agent) (STV 1.0 0.9091)) +(: cnet_isa_6a61235a03 (IsA next_of_kin relative) (STV 1.0 0.9091)) +(: cnet_isa_a8d74482b6 (IsA nexus sery) (STV 1.0 0.9091)) +(: cnet_isa_c4738afafc (IsA nez_perce shahaptian) (STV 1.0 0.9091)) +(: cnet_isa_691dd8d412 (IsA nez_perce sahaptino) (STV 1.0 0.9091)) +(: cnet_isa_8320869987 (IsA nganasan samoyedic) (STV 1.0 0.9091)) +(: cnet_isa_e141282279 (IsA nganasan russian) (STV 1.0 0.9091)) +(: cnet_isa_637f4af6f4 (IsA ngultrum bhutanese_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_bf42a0b4c8 (IsA nguni bantu) (STV 1.0 0.9091)) +(: cnet_isa_e553af9771 (IsA ngwee zambian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_22e1f5ceff (IsA ni_hard alloy_iron) (STV 1.0 0.9091)) +(: cnet_isa_7f6911da5f (IsA ni_resist alloy_iron) (STV 1.0 0.9091)) +(: cnet_isa_2396120347 (IsA niacin b_complex_vitamin) (STV 1.0 0.9091)) +(: cnet_isa_38cc1c205c (IsA nib point) (STV 1.0 0.9091)) +(: cnet_isa_88b30b36e2 (IsA nibble bite) (STV 1.0 0.9091)) +(: cnet_isa_6021afdd88 (IsA nibbler biter) (STV 1.0 0.9091)) +(: cnet_isa_f319bca3de (IsA nibelung gnome) (STV 1.0 0.9091)) +(: cnet_isa_bd568603ea (IsA niblick iron) (STV 1.0 0.9091)) +(: cnet_isa_b49a83deae (IsA nicad storage_battery) (STV 1.0 0.9091)) +(: cnet_isa_5ca889c398 (IsA nicandra asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d3c93e1078 (IsA nicaraguan central_american) (STV 1.0 0.9091)) +(: cnet_isa_a9a174e530 (IsA nicaraguan_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_fd1deb4426 (IsA nicene_creed religious_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_120cfbca60 (IsA niceness pleasantness) (STV 1.0 0.9091)) +(: cnet_isa_195579893c (IsA niche condition) (STV 1.0 0.9091)) +(: cnet_isa_bc68aed39f (IsA niche place) (STV 1.0 0.9091)) +(: cnet_isa_b5e3af8367 (IsA nick prison) (STV 1.0 0.9091)) +(: cnet_isa_a3cce71419 (IsA nickel u_s) (STV 1.0 0.9091)) +(: cnet_isa_692100f328 (IsA nickel coin) (STV 1.0 0.9091)) +(: cnet_isa_1444df197a (IsA nickel fiver) (STV 1.0 0.9091)) +(: cnet_isa_95c2ba0936 (IsA nickel metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_1659983837 (IsA nickel_base_alloy alloy) (STV 1.0 0.9091)) +(: cnet_isa_ddce85f829 (IsA nickel_bronze bronze) (STV 1.0 0.9091)) +(: cnet_isa_a9b21329e1 (IsA nickel_iron_battery storage_battery) (STV 1.0 0.9091)) +(: cnet_isa_ad1a3e9932 (IsA nickel_silver alloy) (STV 1.0 0.9091)) +(: cnet_isa_883fd4a12c (IsA nickel_steel alloy_steel) (STV 1.0 0.9091)) +(: cnet_isa_ad7843ca06 (IsA nickname appellation) (STV 1.0 0.9091)) +(: cnet_isa_d5ed368ad7 (IsA nickname name) (STV 1.0 0.9091)) +(: cnet_isa_f54e457b19 (IsA nickname_for_maryland free_state_or_old_line_state) (STV 1.0 0.9091)) +(: cnet_isa_327959b94e (IsA nickname_for_massachusett bay_state_or_old_colony_state) (STV 1.0 0.9091)) +(: cnet_isa_89f0bc3d72 (IsA nickname_for_tennessee volunteer_state) (STV 1.0 0.9091)) +(: cnet_isa_3f0eb65c5b (IsA nicol_prism optical_device) (STV 1.0 0.9091)) +(: cnet_isa_56da64abed (IsA nicotiana asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_874558726d (IsA nicotinamide_adenine_dinucleotide coenzyme) (STV 1.0 0.9091)) +(: cnet_isa_541407a82a (IsA nicotinamide_adenine_dinucleotide_phosphate coenzyme) (STV 1.0 0.9091)) +(: cnet_isa_b8c83c867a (IsA nicotine alkaloid) (STV 1.0 0.9091)) +(: cnet_isa_c447dc6c81 (IsA nicotine plant_toxin) (STV 1.0 0.9091)) +(: cnet_isa_5898e78a23 (IsA nicotine vasoconstrictor) (STV 1.0 0.9091)) +(: cnet_isa_cd3816d091 (IsA nicotine_addiction drug_addiction) (STV 1.0 0.9091)) +(: cnet_isa_4b18b5909d (IsA nicotine_poisoning poisoning) (STV 1.0 0.9091)) +(: cnet_isa_5629d7ebf2 (IsA nictitating_membrane protective_fold) (STV 1.0 0.9091)) +(: cnet_isa_d03a0aeb7a (IsA nidularia fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_70254e0b08 (IsA nidulariaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_565bb2e014 (IsA nidulariale fungus_order) (STV 1.0 0.9091)) +(: cnet_isa_bdcbb44ebf (IsA nidus nest) (STV 1.0 0.9091)) +(: cnet_isa_1f1e20ad8a (IsA niece nibling) (STV 1.0 0.9091)) +(: cnet_isa_bdb7df4979 (IsA niece kinswoman) (STV 1.0 0.9091)) +(: cnet_isa_aed8ba28bc (IsA niemann_pick_disease autosomal_recessive_disease) (STV 1.0 0.9091)) +(: cnet_isa_baa0a03128 (IsA niemann_pick_disease inborn_error_of_metabolism) (STV 1.0 0.9091)) +(: cnet_isa_c44f8f6192 (IsA niemann_pick_disease lipidosis) (STV 1.0 0.9091)) +(: cnet_isa_a28ddac00a (IsA nietzsche german) (STV 1.0 0.9524)) +(: cnet_isa_064cf0d72b (IsA nietzsche preacher) (STV 1.0 0.9091)) +(: cnet_isa_af7eff5d63 (IsA niff malodor) (STV 1.0 0.9091)) +(: cnet_isa_a6febbf299 (IsA nigella flower) (STV 1.0 0.9091)) +(: cnet_isa_286ab986d8 (IsA niger_congo niger_kordofanian) (STV 1.0 0.9091)) +(: cnet_isa_f0328cfa11 (IsA niger_franc franc) (STV 1.0 0.9091)) +(: cnet_isa_d631026073 (IsA niger_kordofanian natural_language) (STV 1.0 0.9091)) +(: cnet_isa_dab42dc2a3 (IsA nigerian african) (STV 1.0 0.9091)) +(: cnet_isa_108d5333c4 (IsA nigerian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_3eba6c8878 (IsA nigerien african) (STV 1.0 0.9091)) +(: cnet_isa_f4645d4834 (IsA niggard hoarder) (STV 1.0 0.9091)) +(: cnet_isa_0eedc9cafa (IsA night colder_than_day) (STV 1.0 0.9091)) +(: cnet_isa_4cf0e691e9 (IsA night dark) (STV 1.0 0.9091)) +(: cnet_isa_e6e7e7c468 (IsA night time_period) (STV 1.0 0.9091)) +(: cnet_isa_df6e7faf35 (IsA night time_unit) (STV 1.0 0.9091)) +(: cnet_isa_153c7ff066 (IsA night twilight) (STV 1.0 0.9091)) +(: cnet_isa_287c88965f (IsA night_bell doorbell) (STV 1.0 0.9091)) +(: cnet_isa_1dc15f5bff (IsA night_bird bird) (STV 1.0 0.9091)) +(: cnet_isa_51b7ef84a8 (IsA night_blooming_cereus cactus) (STV 1.0 0.9091)) +(: cnet_isa_6b66f9484a (IsA night_court criminal_court) (STV 1.0 0.9091)) +(: cnet_isa_6c1a84e7ed (IsA night_game outdoor_game) (STV 1.0 0.9091)) +(: cnet_isa_4f2cec9b7d (IsA night_heron heron) (STV 1.0 0.9091)) +(: cnet_isa_e81985b33f (IsA night_jasmine shrub) (STV 1.0 0.9091)) +(: cnet_isa_fccf1d4005 (IsA night_latch doorlock) (STV 1.0 0.9091)) +(: cnet_isa_75e82fe340 (IsA night_letter telegram) (STV 1.0 0.9091)) +(: cnet_isa_c56f8ff08c (IsA night_life diversion) (STV 1.0 0.9091)) +(: cnet_isa_9fe22a103d (IsA night_light light) (STV 1.0 0.9091)) +(: cnet_isa_e2b82d9fa7 (IsA night_line fishing_line) (STV 1.0 0.9091)) +(: cnet_isa_2f70dd88c5 (IsA night_lizard lizard) (STV 1.0 0.9091)) +(: cnet_isa_677eb22439 (IsA night_owl individualist) (STV 1.0 0.9091)) +(: cnet_isa_f82d5d8f59 (IsA night_porter doorkeeper) (STV 1.0 0.9091)) +(: cnet_isa_1f3f9eb26d (IsA night_raven night_bird) (STV 1.0 0.9091)) +(: cnet_isa_132592c05e (IsA night_rider attacker) (STV 1.0 0.9091)) +(: cnet_isa_c684f6b812 (IsA night_school school) (STV 1.0 0.9091)) +(: cnet_isa_ad4a23f143 (IsA night_shift shift) (STV 1.0 0.9091)) +(: cnet_isa_8ff9782a26 (IsA night_snake colubrid_snake) (STV 1.0 0.9091)) +(: cnet_isa_8aec175759 (IsA night_soil manure) (STV 1.0 0.9091)) +(: cnet_isa_2d2cf04123 (IsA night_stop stop) (STV 1.0 0.9091)) +(: cnet_isa_81deb245d7 (IsA night_terror drama) (STV 1.0 0.9091)) +(: cnet_isa_b63d6f702d (IsA night_vision sight) (STV 1.0 0.9091)) +(: cnet_isa_29b32b566b (IsA night_watchman watchman) (STV 1.0 0.9091)) +(: cnet_isa_d3bb44364b (IsA nightcap game) (STV 1.0 0.9091)) +(: cnet_isa_a7ebea4439 (IsA nightcap cap) (STV 1.0 0.9091)) +(: cnet_isa_94e58f5171 (IsA nightcap drink) (STV 1.0 0.9091)) +(: cnet_isa_52762acf6a (IsA nightclothe clothing) (STV 1.0 0.9091)) +(: cnet_isa_be5fb091c9 (IsA nightgown lingerie) (STV 1.0 0.9091)) +(: cnet_isa_64ed1873c0 (IsA nightgown nightclothe) (STV 1.0 0.9091)) +(: cnet_isa_36048e1da6 (IsA nighthawk goatsucker) (STV 1.0 0.9091)) +(: cnet_isa_4879f43602 (IsA nightingale bird) (STV 1.0 0.9524)) +(: cnet_isa_20e78dc914 (IsA nightingale thrush) (STV 1.0 0.9091)) +(: cnet_isa_aef2facaa0 (IsA nightlife entertainment) (STV 1.0 0.9091)) +(: cnet_isa_3f7463ce6f (IsA nightmare scary_dream) (STV 1.0 0.9339)) +(: cnet_isa_b6267cb56c (IsA nightmare dream) (STV 1.0 0.9091)) +(: cnet_isa_d514f8761a (IsA nightmare situation) (STV 1.0 0.9091)) +(: cnet_isa_5a16b91cdc (IsA nightshade woody_plant) (STV 1.0 0.9091)) +(: cnet_isa_d655a50b24 (IsA nightshirt nightclothe) (STV 1.0 0.9091)) +(: cnet_isa_219d258521 (IsA nightwork work) (STV 1.0 0.9091)) +(: cnet_isa_c507e4b80a (IsA nigroporus fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_c4343c6de0 (IsA nigroporus_vinosus polypore) (STV 1.0 0.9091)) +(: cnet_isa_db5757979f (IsA nihil nothing) (STV 1.0 0.9091)) +(: cnet_isa_98973f2a06 (IsA nihil_obstat sanction) (STV 1.0 0.9091)) +(: cnet_isa_4ee81658e3 (IsA nihilism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_ba9f012e32 (IsA nihilism anarchy) (STV 1.0 0.9091)) +(: cnet_isa_7b89f896c3 (IsA nihilist nonreligious_person) (STV 1.0 0.9091)) +(: cnet_isa_da47b71e24 (IsA nihilistic_delusion delusion) (STV 1.0 0.9091)) +(: cnet_isa_d0ac03684f (IsA nike sneak) (STV 1.0 0.9091)) +(: cnet_isa_d6f794216e (IsA nilgai antelope) (STV 1.0 0.9091)) +(: cnet_isa_4b45965fbe (IsA nilo_saharan natural_language) (STV 1.0 0.9091)) +(: cnet_isa_cd65be3164 (IsA nilotic chari_nile) (STV 1.0 0.9091)) +(: cnet_isa_290896af82 (IsA nim table_game) (STV 1.0 0.9091)) +(: cnet_isa_0b4511a1f0 (IsA nimblewill grass) (STV 1.0 0.9091)) +(: cnet_isa_c1f1ea3606 (IsA nimbus cloud) (STV 1.0 0.9091)) +(: cnet_isa_02e78979a3 (IsA nimby dissenter) (STV 1.0 0.9091)) +(: cnet_isa_efdfaf2bf3 (IsA nimravus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_6b18a3ad79 (IsA nincompoop simpleton) (STV 1.0 0.9091)) +(: cnet_isa_a0576de0c2 (IsA nine digit) (STV 1.0 0.9091)) +(: cnet_isa_854576541b (IsA nine_spot spot) (STV 1.0 0.9091)) +(: cnet_isa_30652616f8 (IsA ninepence coin) (STV 1.0 0.9091)) +(: cnet_isa_c28653b4a9 (IsA ninepin bowling_pin) (STV 1.0 0.9091)) +(: cnet_isa_706ed54473 (IsA ninepin_ball ball) (STV 1.0 0.9091)) +(: cnet_isa_4128288316 (IsA ninepin bowling) (STV 1.0 0.9091)) +(: cnet_isa_6adf003467 (IsA nineteen large_integer) (STV 1.0 0.9091)) +(: cnet_isa_82bc895adb (IsA nineteenth rank) (STV 1.0 0.9091)) +(: cnet_isa_7af930f699 (IsA ninety decade) (STV 1.0 0.9091)) +(: cnet_isa_1eed72ffaa (IsA ninety time_of_life) (STV 1.0 0.9091)) +(: cnet_isa_3fd1f6bb3a (IsA ninetieth rank) (STV 1.0 0.9091)) +(: cnet_isa_581dffdec9 (IsA ninety large_integer) (STV 1.0 0.9091)) +(: cnet_isa_8213a2e652 (IsA ninja class) (STV 1.0 0.9091)) +(: cnet_isa_a42fe244c2 (IsA ninja mercenary) (STV 1.0 0.9091)) +(: cnet_isa_8770611ed1 (IsA ninjutsu martial_art) (STV 1.0 0.9091)) +(: cnet_isa_a4ce483780 (IsA ninon fabric) (STV 1.0 0.9091)) +(: cnet_isa_84f71e35b2 (IsA ninth rank) (STV 1.0 0.9091)) +(: cnet_isa_a033c1e45e (IsA ninth_month_of_year september) (STV 1.0 0.9091)) +(: cnet_isa_776723602f (IsA niobite mineral) (STV 1.0 0.9091)) +(: cnet_isa_96e084b88c (IsA niobium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_0b26745034 (IsA nip bite) (STV 1.0 0.9091)) +(: cnet_isa_6f079707c5 (IsA nip clip) (STV 1.0 0.9091)) +(: cnet_isa_bd25f7bd54 (IsA nip swallow) (STV 1.0 0.9091)) +(: cnet_isa_5496c8cc89 (IsA nip spiciness) (STV 1.0 0.9091)) +(: cnet_isa_a442f517f3 (IsA nip nipponese) (STV 1.0 0.9091)) +(: cnet_isa_01854745c6 (IsA nip small_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_1a1a2bc4ce (IsA nipa alcohol) (STV 1.0 0.9091)) +(: cnet_isa_c54f45a9c8 (IsA nipa monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a0a37d2862 (IsA nipa_palm palm) (STV 1.0 0.9091)) +(: cnet_isa_b3ad406b40 (IsA nipple cap) (STV 1.0 0.9091)) +(: cnet_isa_1ff0ead277 (IsA nipple reproductive_organ) (STV 1.0 0.9091)) +(: cnet_isa_cfa575b177 (IsA nipple_shield shield) (STV 1.0 0.9091)) +(: cnet_isa_953a67797a (IsA nipponese asiatic) (STV 1.0 0.9091)) +(: cnet_isa_7968507cae (IsA niqaabi muslimah) (STV 1.0 0.9091)) +(: cnet_isa_12570ab3cf (IsA niqab face_veil) (STV 1.0 0.9091)) +(: cnet_isa_5e01528dc7 (IsA nirvana band) (STV 1.0 0.9572)) +(: cnet_isa_cace4ed079 (IsA nirvana blessedness) (STV 1.0 0.9091)) +(: cnet_isa_8e4668d31a (IsA nis_master_server nis_server) (STV 1.0 0.9091)) +(: cnet_isa_eddda01a87 (IsA nis_server server) (STV 1.0 0.9091)) +(: cnet_isa_4ac3bca188 (IsA nis_slave_server nis_server) (STV 1.0 0.9091)) +(: cnet_isa_f7b9c0045b (IsA nisan jewish_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_03fc2cfa64 (IsA nisei american) (STV 1.0 0.9091)) +(: cnet_isa_4e6d13b5a3 (IsA nissen_hut hut) (STV 1.0 0.9091)) +(: cnet_isa_09d503c27c (IsA nit egg) (STV 1.0 0.9091)) +(: cnet_isa_ed2c8d67fd (IsA nit luminance_unit) (STV 1.0 0.9091)) +(: cnet_isa_015eb7c0c2 (IsA nitella protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_ccd71a4817 (IsA nitpicker critic) (STV 1.0 0.9091)) +(: cnet_isa_fb7d0166e9 (IsA nitramine explosive) (STV 1.0 0.9091)) +(: cnet_isa_11afea164d (IsA nitrate compound) (STV 1.0 0.9091)) +(: cnet_isa_92cf344379 (IsA nitrate_bacterium nitrobacterium) (STV 1.0 0.9091)) +(: cnet_isa_6daac00947 (IsA nitrazepam benzodiazepine) (STV 1.0 0.9091)) +(: cnet_isa_54bb4e1870 (IsA nitric_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_12b22cabcb (IsA nitric_bacteria eubacteria) (STV 1.0 0.9091)) +(: cnet_isa_cd6125920f (IsA nitric_oxide gas) (STV 1.0 0.9091)) +(: cnet_isa_efa487838f (IsA nitride compound) (STV 1.0 0.9091)) +(: cnet_isa_5ac0254d37 (IsA nitrification oxidation) (STV 1.0 0.9091)) +(: cnet_isa_449f75ba7d (IsA nitrification chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_84b40131e8 (IsA nitrile organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_4c70ec3e05 (IsA nitrite group) (STV 1.0 0.9091)) +(: cnet_isa_5e269859f5 (IsA nitrite_bacterium nitrobacterium) (STV 1.0 0.9091)) +(: cnet_isa_06c8540818 (IsA nitro_group group) (STV 1.0 0.9091)) +(: cnet_isa_f35f83e64b (IsA nitrobacter bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_f508237c83 (IsA nitrobacteriaceae bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_ac530cf92e (IsA nitrobacterium bacteria) (STV 1.0 0.9091)) +(: cnet_isa_304af758a7 (IsA nitrobenzene organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_5d98b7ef82 (IsA nitrocalcite mineral) (STV 1.0 0.9091)) +(: cnet_isa_0159f9ee09 (IsA nitrochloromethane tear_gas) (STV 1.0 0.9091)) +(: cnet_isa_625f03e1ce (IsA nitrofuran furan) (STV 1.0 0.9091)) +(: cnet_isa_5454256ba8 (IsA nitrogen chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_e93cda6713 (IsA nitrogen gas) (STV 1.0 0.9091)) +(: cnet_isa_98678c9157 (IsA nitrogen_balance balance) (STV 1.0 0.9091)) +(: cnet_isa_e1a46467ef (IsA nitrogen_cycle organic_process) (STV 1.0 0.9091)) +(: cnet_isa_aee645b3f9 (IsA nitrogen_dioxide dioxide) (STV 1.0 0.9091)) +(: cnet_isa_8ba9dea458 (IsA nitrogen_dioxide gas) (STV 1.0 0.9091)) +(: cnet_isa_1bd935160b (IsA nitrogen_fixation organic_process) (STV 1.0 0.9091)) +(: cnet_isa_684a80193b (IsA nitrogen_mustard compound) (STV 1.0 0.9091)) +(: cnet_isa_5781348878 (IsA nitrogen_narcosis narcosis) (STV 1.0 0.9091)) +(: cnet_isa_6e57a1d37a (IsA nitrogen_oxide oxide) (STV 1.0 0.9091)) +(: cnet_isa_d2065039db (IsA nitrogen_oxide pollutant) (STV 1.0 0.9091)) +(: cnet_isa_1f441de5e2 (IsA nitrogen_trichloride trichloride) (STV 1.0 0.9091)) +(: cnet_isa_0fb8e63f96 (IsA nitrogenase enzyme) (STV 1.0 0.9091)) +(: cnet_isa_d946984b92 (IsA nitroglycerin nitrate) (STV 1.0 0.9091)) +(: cnet_isa_ad0eae1e1a (IsA nitroglycerin vasodilator) (STV 1.0 0.9091)) +(: cnet_isa_a9b41f5c8d (IsA nitrosobacteria eubacteria) (STV 1.0 0.9091)) +(: cnet_isa_e60742ba11 (IsA nitrosomona bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_d91d6f7e02 (IsA nitrous_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_281ab3c7ac (IsA nitrous_oxide inhalation_anesthetic) (STV 1.0 0.9091)) +(: cnet_isa_dc203ac088 (IsA nitta_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_e3a9acdfbb (IsA nivose revolutionary_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_76ccd0290d (IsA no negative) (STV 1.0 0.9091)) +(: cnet_isa_15f334bc56 (IsA no_ball bowling) (STV 1.0 0.9091)) +(: cnet_isa_fe66eea504 (IsA no_brainer undertaking) (STV 1.0 0.9091)) +(: cnet_isa_4fbc10ad53 (IsA no_fault_insurance automobile_insurance) (STV 1.0 0.9091)) +(: cnet_isa_61b43f98c2 (IsA no_go_area area) (STV 1.0 0.9091)) +(: cnet_isa_f99f5ae229 (IsA no_goal goal) (STV 1.0 0.9091)) +(: cnet_isa_7451b0e155 (IsA no_hit_game baseball) (STV 1.0 0.9091)) +(: cnet_isa_7a04e4253f (IsA no_man_s_land area) (STV 1.0 0.9091)) +(: cnet_isa_9073cc7718 (IsA no_man_s_land land) (STV 1.0 0.9091)) +(: cnet_isa_708ef05fc9 (IsA no_man island) (STV 1.0 0.9339)) +(: cnet_isa_4d935e7b1f (IsA no_par_value_stock stock) (STV 1.0 0.9091)) +(: cnet_isa_4f58a461e8 (IsA no_parking_zone space) (STV 1.0 0.9091)) +(: cnet_isa_c3054d75e3 (IsA no_show guest) (STV 1.0 0.9091)) +(: cnet_isa_25cfe5f759 (IsA no_show wrongdoer) (STV 1.0 0.9091)) +(: cnet_isa_23e5576543 (IsA no_trump contract) (STV 1.0 0.9091)) +(: cnet_isa_f6d8949464 (IsA no_win_situation situation) (STV 1.0 0.9091)) +(: cnet_isa_fdc0ee8d27 (IsA noah_and_flood flood) (STV 1.0 0.9091)) +(: cnet_isa_e7cb445928 (IsA nobel_laureate laureate) (STV 1.0 0.9091)) +(: cnet_isa_483c7248ef (IsA nobel_prize award) (STV 1.0 0.9091)) +(: cnet_isa_372b8e6080 (IsA nobelium chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_a0cd1bc915 (IsA nobility honorableness) (STV 1.0 0.9091)) +(: cnet_isa_17609b84c3 (IsA nobility elite) (STV 1.0 0.9091)) +(: cnet_isa_ed55f2767c (IsA nobility status) (STV 1.0 0.9091)) +(: cnet_isa_6ac863a54b (IsA noble_cane sugarcane) (STV 1.0 0.9091)) +(: cnet_isa_b5142a9ac0 (IsA noble_gas chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_52f402c6d6 (IsA noble_gas gas) (STV 1.0 0.9091)) +(: cnet_isa_04ba8c4b0a (IsA noble_metal metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_b5451716e5 (IsA nobleman male_aristocrat) (STV 1.0 0.9091)) +(: cnet_isa_ec2af039ae (IsA noblesse nobility) (STV 1.0 0.9091)) +(: cnet_isa_f0c4c9ffc5 (IsA noblesse_oblige duty) (STV 1.0 0.9091)) +(: cnet_isa_71061f0876 (IsA noblewoman female_aristocrat) (STV 1.0 0.9091)) +(: cnet_isa_d7edb3d021 (IsA noc secret_agent) (STV 1.0 0.9091)) +(: cnet_isa_4de6eb9dee (IsA noctiluca dinoflagellate) (STV 1.0 0.9091)) +(: cnet_isa_dc5602ca7f (IsA noctua arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_385ee74c52 (IsA noctuid_moth moth) (STV 1.0 0.9091)) +(: cnet_isa_3c089748cd (IsA noctuidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_e6d8407cd7 (IsA nocturia micturition) (STV 1.0 0.9091)) +(: cnet_isa_1c5238c250 (IsA nocturnal_emission ejaculation) (STV 1.0 0.9091)) +(: cnet_isa_26cb25ab28 (IsA nocturne musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_113bbfafa6 (IsA nod inclination) (STV 1.0 0.9091)) +(: cnet_isa_26c8345c96 (IsA nod gesture) (STV 1.0 0.9091)) +(: cnet_isa_ed9479541f (IsA nodding_groundsel wildflower) (STV 1.0 0.9091)) +(: cnet_isa_8072e92ec3 (IsA nodding_onion wild_onion) (STV 1.0 0.9091)) +(: cnet_isa_23cbf85b09 (IsA noddle mind) (STV 1.0 0.9091)) +(: cnet_isa_70affddf40 (IsA node celestial_point) (STV 1.0 0.9091)) +(: cnet_isa_b9336dc50b (IsA node solid_body_substance) (STV 1.0 0.9091)) +(: cnet_isa_b32ced30d7 (IsA node computer) (STV 1.0 0.9091)) +(: cnet_isa_f4f5b22605 (IsA node point) (STV 1.0 0.9091)) +(: cnet_isa_b795640e42 (IsA node connection) (STV 1.0 0.9091)) +(: cnet_isa_d3d40ce2b3 (IsA node convex_shape) (STV 1.0 0.9091)) +(: cnet_isa_d97e496f4e (IsA nodule node) (STV 1.0 0.9091)) +(: cnet_isa_889ea34d18 (IsA nodule hunk) (STV 1.0 0.9091)) +(: cnet_isa_9139f47eb6 (IsA nodule plant_process) (STV 1.0 0.9091)) +(: cnet_isa_3d17898771 (IsA nog block) (STV 1.0 0.9091)) +(: cnet_isa_d2669a383d (IsA nogging brickwork) (STV 1.0 0.9091)) +(: cnet_isa_26d8295a14 (IsA noise sound) (STV 1.0 0.9454)) +(: cnet_isa_26ffb61aa3 (IsA noise incomprehensibility) (STV 1.0 0.9091)) +(: cnet_isa_eaae61a615 (IsA noise cry) (STV 1.0 0.9091)) +(: cnet_isa_dcf332e70b (IsA noise trouble) (STV 1.0 0.9091)) +(: cnet_isa_c71acfe326 (IsA noise_condition condition) (STV 1.0 0.9091)) +(: cnet_isa_8c72e1928b (IsA noise_level amplitude) (STV 1.0 0.9091)) +(: cnet_isa_b5da527188 (IsA noise_pollution pollution) (STV 1.0 0.9091)) +(: cnet_isa_d5d87bf94e (IsA noiselessness quietness) (STV 1.0 0.9091)) +(: cnet_isa_ec31c84c26 (IsA noisemaker device) (STV 1.0 0.9091)) +(: cnet_isa_2cb90afbec (IsA noisiness sound) (STV 1.0 0.9091)) +(: cnet_isa_92b657f22c (IsA nolan_ryan famous_pitcher) (STV 1.0 0.9091)) +(: cnet_isa_21c1543379 (IsA noli_me_tangere ulcer) (STV 1.0 0.9091)) +(: cnet_isa_10acbdc838 (IsA nolina liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_271cc7fc22 (IsA nolle_prosequi entry) (STV 1.0 0.9091)) +(: cnet_isa_a62dd3b1b0 (IsA nolo_contendere answer) (STV 1.0 0.9091)) +(: cnet_isa_9423882353 (IsA noma ulcer) (STV 1.0 0.9091)) +(: cnet_isa_6f220a0f7e (IsA nomad wanderer) (STV 1.0 0.9091)) +(: cnet_isa_d35169f681 (IsA nombril center) (STV 1.0 0.9091)) +(: cnet_isa_570615d8a3 (IsA nomenklatura patronage) (STV 1.0 0.9091)) +(: cnet_isa_3dc5a49dcd (IsA nomia arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_f40f6ee1ee (IsA nomia_melanderi bee) (STV 1.0 0.9091)) +(: cnet_isa_5b6e9f7929 (IsA nominal_aphasia aphasia) (STV 1.0 0.9091)) +(: cnet_isa_9ed8961a1f (IsA nominal_damage damage) (STV 1.0 0.9091)) +(: cnet_isa_8cb6819d4b (IsA nominalism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_fc1f8a10dd (IsA nominalist philosopher) (STV 1.0 0.9091)) +(: cnet_isa_f70eb7c095 (IsA nominating_speech oratory) (STV 1.0 0.9091)) +(: cnet_isa_df98a51d85 (IsA nomination appointment) (STV 1.0 0.9091)) +(: cnet_isa_b61164e242 (IsA nomination condition) (STV 1.0 0.9091)) +(: cnet_isa_8901afaf4d (IsA nominative case) (STV 1.0 0.9091)) +(: cnet_isa_f956d6f6e9 (IsA nominator proposer) (STV 1.0 0.9091)) +(: cnet_isa_effd57832f (IsA nomogram representation) (STV 1.0 0.9091)) +(: cnet_isa_623fb141ce (IsA non_cash_expense expense) (STV 1.0 0.9091)) +(: cnet_isa_d2875f249c (IsA non_catholic religionist) (STV 1.0 0.9091)) +(: cnet_isa_97b08c3818 (IsA non_dedicated_file_server file_server) (STV 1.0 0.9091)) +(: cnet_isa_41d600b71b (IsA non_discrimination fairness) (STV 1.0 0.9091)) +(: cnet_isa_e9236a897c (IsA non_engagement group_action) (STV 1.0 0.9091)) +(: cnet_isa_687526124b (IsA non_euclidean_geometry geometry) (STV 1.0 0.9091)) +(: cnet_isa_9b3b1ce4ae (IsA non_flowering_plant plant) (STV 1.0 0.9091)) +(: cnet_isa_9ceb320eb2 (IsA non_market_economy economy) (STV 1.0 0.9091)) +(: cnet_isa_53b1b271d6 (IsA non_nucleoside_reverse_transcriptase_inhibitor reverse_transcriptase_inhibitor) (STV 1.0 0.9091)) +(: cnet_isa_290e53dcb1 (IsA non_prosequitur judgment) (STV 1.0 0.9091)) +(: cnet_isa_463853a996 (IsA non_resistant reformer) (STV 1.0 0.9091)) +(: cnet_isa_a691322c64 (IsA non_sequitur reply) (STV 1.0 0.9091)) +(: cnet_isa_51f56400da (IsA non_sequitur conclusion) (STV 1.0 0.9091)) +(: cnet_isa_def30acebc (IsA non_standard_speech speech) (STV 1.0 0.9091)) +(: cnet_isa_1238b3f44a (IsA non_volatile_storage memory) (STV 1.0 0.9091)) +(: cnet_isa_13f2f5f61a (IsA nonabsorbency impermeability) (STV 1.0 0.9091)) +(: cnet_isa_3d5df99f19 (IsA nonacceptance rejection) (STV 1.0 0.9091)) +(: cnet_isa_5378559e8f (IsA nonaccomplishment act) (STV 1.0 0.9091)) +(: cnet_isa_02a4206ef7 (IsA nonagenarian oldster) (STV 1.0 0.9091)) +(: cnet_isa_fb9199a300 (IsA nonaggression foreign_policy) (STV 1.0 0.9091)) +(: cnet_isa_137e351c31 (IsA nonagon polygon) (STV 1.0 0.9091)) +(: cnet_isa_c0bb61ebc6 (IsA nonalignment social_group) (STV 1.0 0.9091)) +(: cnet_isa_b1d510669a (IsA nonallele gene) (STV 1.0 0.9091)) +(: cnet_isa_ce53a56083 (IsA nonappearance nonattendance) (STV 1.0 0.9091)) +(: cnet_isa_4026c14a80 (IsA nonattendance group_action) (STV 1.0 0.9091)) +(: cnet_isa_776d7cbda6 (IsA nonbeing state) (STV 1.0 0.9091)) +(: cnet_isa_854f0c179f (IsA nonbiodegradable_pollution pollution) (STV 1.0 0.9091)) +(: cnet_isa_28ec419cd6 (IsA noncallable_bond bond) (STV 1.0 0.9091)) +(: cnet_isa_078d11c8cd (IsA noncandidate politician) (STV 1.0 0.9091)) +(: cnet_isa_86f67f3a5c (IsA nonce_word word) (STV 1.0 0.9091)) +(: cnet_isa_30e33979d2 (IsA nonchalance carefreeness) (STV 1.0 0.9091)) +(: cnet_isa_4bf57d461b (IsA noncombatant serviceman) (STV 1.0 0.9091)) +(: cnet_isa_590c1d70d4 (IsA noncommissioned_officer military_officer) (STV 1.0 0.9091)) +(: cnet_isa_b5b003d6d1 (IsA nonconformism practice) (STV 1.0 0.9091)) +(: cnet_isa_1a6be4ae7e (IsA nonconformist dissenter) (STV 1.0 0.9091)) +(: cnet_isa_36c5718189 (IsA nonconformity failure) (STV 1.0 0.9091)) +(: cnet_isa_c8740f4e75 (IsA nonconformity unorthodoxy) (STV 1.0 0.9091)) +(: cnet_isa_89777971ff (IsA nonconformity disagreement) (STV 1.0 0.9091)) +(: cnet_isa_fd10e8e659 (IsA nondepository_financial_institution financial_institution) (STV 1.0 0.9091)) +(: cnet_isa_a744a41408 (IsA nondescript person) (STV 1.0 0.9091)) +(: cnet_isa_22f0b0ed6b (IsA nondevelopment organic_process) (STV 1.0 0.9091)) +(: cnet_isa_2aec268a3e (IsA nondiscretionary_trust investment_company) (STV 1.0 0.9091)) +(: cnet_isa_57ae494494 (IsA nondisjunction meiosis) (STV 1.0 0.9091)) +(: cnet_isa_d1bb7c1eb2 (IsA nondriver pedestrian) (STV 1.0 0.9091)) +(: cnet_isa_bb36b414c4 (IsA none service) (STV 1.0 0.9091)) +(: cnet_isa_2338d94fa7 (IsA none hour) (STV 1.0 0.9091)) +(: cnet_isa_804fecd022 (IsA nonequivalence inequality) (STV 1.0 0.9091)) +(: cnet_isa_7a05f38bbc (IsA none canonical_hour) (STV 1.0 0.9091)) +(: cnet_isa_3755ad2386 (IsA nonevent event) (STV 1.0 0.9091)) +(: cnet_isa_970af293f2 (IsA nonexistence nonbeing) (STV 1.0 0.9091)) +(: cnet_isa_22be4a13b2 (IsA nonfat_dry_milk powdered_milk) (STV 1.0 0.9091)) +(: cnet_isa_36e8199cfa (IsA nonfeasance dereliction) (STV 1.0 0.9091)) +(: cnet_isa_8957bfab37 (IsA nonfiction prose) (STV 1.0 0.9091)) +(: cnet_isa_4c9283f36a (IsA nongonococcal_urethritis urethritis) (STV 1.0 0.9091)) +(: cnet_isa_aff7880cf3 (IsA nongovernmental_organization organization) (STV 1.0 0.9091)) +(: cnet_isa_9580a64622 (IsA nonintervention foreign_policy) (STV 1.0 0.9091)) +(: cnet_isa_833907a2cb (IsA nonlinear_distortion distortion) (STV 1.0 0.9091)) +(: cnet_isa_dde36310fb (IsA nonlinear_system system) (STV 1.0 0.9091)) +(: cnet_isa_99da5bab6a (IsA nonmember person) (STV 1.0 0.9091)) +(: cnet_isa_eca267961f (IsA nonmetal chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_bbba00fee9 (IsA nonobservance nonconformity) (STV 1.0 0.9091)) +(: cnet_isa_159f1c8bd3 (IsA nonoccurrence absence) (STV 1.0 0.9091)) +(: cnet_isa_e3ddffc6b6 (IsA nonogon closed_shape_with_nine_side) (STV 1.0 0.9091)) +(: cnet_isa_aa12bb77a0 (IsA nonparametric_statistic statistic) (STV 1.0 0.9091)) +(: cnet_isa_c59a59e891 (IsA nonpareil chocolate_candy) (STV 1.0 0.9091)) +(: cnet_isa_8a473a5848 (IsA nonpareil sweet) (STV 1.0 0.9091)) +(: cnet_isa_b3910754fc (IsA nonparticipant person) (STV 1.0 0.9091)) +(: cnet_isa_75424626be (IsA nonpartizan person) (STV 1.0 0.9091)) +(: cnet_isa_020fddef75 (IsA nonpasserine_bird bird) (STV 1.0 0.9091)) +(: cnet_isa_52ececc934 (IsA nonpayment financial_loss) (STV 1.0 0.9091)) +(: cnet_isa_73a0460a1d (IsA nonperson person) (STV 1.0 0.9091)) +(: cnet_isa_f10aae945f (IsA nonprofit_organization organization) (STV 1.0 0.9091)) +(: cnet_isa_2684778875 (IsA nonproliferation prevention) (STV 1.0 0.9091)) +(: cnet_isa_020c5cc94e (IsA nonproliferation_center agency) (STV 1.0 0.9091)) +(: cnet_isa_4508b07ad2 (IsA nonreader student) (STV 1.0 0.9091)) +(: cnet_isa_9d365d9487 (IsA nonreligious_person person) (STV 1.0 0.9091)) +(: cnet_isa_1f8d47e9cd (IsA nonresident person) (STV 1.0 0.9091)) +(: cnet_isa_b1618f07df (IsA nonresistance group_action) (STV 1.0 0.9091)) +(: cnet_isa_6f17aef9a2 (IsA nonrestrictive_clause subordinate_clause) (STV 1.0 0.9091)) +(: cnet_isa_dc3e9fce77 (IsA nonsense message) (STV 1.0 0.9091)) +(: cnet_isa_1e011e3c86 (IsA nonsingular_matrix square_matrix) (STV 1.0 0.9091)) +(: cnet_isa_ef84337f38 (IsA nonsmoker passenger_car) (STV 1.0 0.9091)) +(: cnet_isa_5f77e712a6 (IsA nonsmoker person) (STV 1.0 0.9091)) +(: cnet_isa_82540d7978 (IsA nonsocial_infection infection) (STV 1.0 0.9091)) +(: cnet_isa_973803860c (IsA nonsolid_color color) (STV 1.0 0.9091)) +(: cnet_isa_4fafb91f47 (IsA nonspecific_urethritis urethritis) (STV 1.0 0.9091)) +(: cnet_isa_1b27d33f72 (IsA nonstarter racehorse) (STV 1.0 0.9091)) +(: cnet_isa_b64916baa2 (IsA nonsteroid organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_e0f9d578d4 (IsA nonsteroidal_anti_inflammatory anti_inflammatory) (STV 1.0 0.9091)) +(: cnet_isa_7a7c111ca6 (IsA nonstop_flight flight) (STV 1.0 0.9091)) +(: cnet_isa_e028be612c (IsA nonthrombocytopenic_purpura purpura) (STV 1.0 0.9091)) +(: cnet_isa_07d73940db (IsA nontricyclic antidepressant) (STV 1.0 0.9091)) +(: cnet_isa_9e73b267fa (IsA nonuniformity dissimilarity) (STV 1.0 0.9091)) +(: cnet_isa_63fdb361f7 (IsA nonvascular_organism organism) (STV 1.0 0.9091)) +(: cnet_isa_45996effbd (IsA nonverbal_intelligence intelligence) (STV 1.0 0.9091)) +(: cnet_isa_320d955d7a (IsA nonworker person) (STV 1.0 0.9091)) +(: cnet_isa_f495eab510 (IsA noodle pasta) (STV 1.0 0.9091)) +(: cnet_isa_4c6fcf14d7 (IsA nook retreat) (STV 1.0 0.9091)) +(: cnet_isa_643cdf24aa (IsA nook_and_cranny detail) (STV 1.0 0.9091)) +(: cnet_isa_0e3c52c553 (IsA noon time_of_day) (STV 1.0 0.9091)) +(: cnet_isa_817caba84f (IsA noon hour) (STV 1.0 0.9091)) +(: cnet_isa_491ff9deb6 (IsA noonan_s_syndrome syndrome) (STV 1.0 0.9091)) +(: cnet_isa_58b53c75b3 (IsA noose loop) (STV 1.0 0.9091)) +(: cnet_isa_e7a9972260 (IsA nootka wakashan) (STV 1.0 0.9091)) +(: cnet_isa_d124209734 (IsA nopal cactus) (STV 1.0 0.9091)) +(: cnet_isa_9e2f171bef (IsA nopal prickly_pear) (STV 1.0 0.9091)) +(: cnet_isa_6d2fd8c449 (IsA nopalea dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c80507defd (IsA noradrenaline catecholamine) (STV 1.0 0.9091)) +(: cnet_isa_280fb0908c (IsA noradrenaline monoamine_neurotransmitter) (STV 1.0 0.9091)) +(: cnet_isa_9f75867196 (IsA noradrenaline vasoconstrictor) (STV 1.0 0.9091)) +(: cnet_isa_efff396ccc (IsA norepinephrine brain_chemical_similar_to_adrenaline) (STV 1.0 0.9091)) +(: cnet_isa_6d0aeda679 (IsA norfolk_island_pine araucaria) (STV 1.0 0.9091)) +(: cnet_isa_77384fc0e5 (IsA norfolk_jacket jacket) (STV 1.0 0.9091)) +(: cnet_isa_c1f3e49d77 (IsA norfolk_terrier terrier) (STV 1.0 0.9091)) +(: cnet_isa_97c650436a (IsA noria waterwheel) (STV 1.0 0.9091)) +(: cnet_isa_1a4e18f8e7 (IsA norm standard) (STV 1.0 0.9091)) +(: cnet_isa_b1cd983fa3 (IsA normal_curve curve) (STV 1.0 0.9091)) +(: cnet_isa_d77115d7a6 (IsA normal_distribution distribution) (STV 1.0 0.9091)) +(: cnet_isa_12d5a4ea75 (IsA normal_fault inclined_fault) (STV 1.0 0.9091)) +(: cnet_isa_ee065697b6 (IsA normal_school junior_college) (STV 1.0 0.9091)) +(: cnet_isa_8d06781cd9 (IsA normal_tension_glaucoma glaucoma) (STV 1.0 0.9091)) +(: cnet_isa_804391c010 (IsA normal_vector vector) (STV 1.0 0.9091)) +(: cnet_isa_f11e827f52 (IsA normality conformity) (STV 1.0 0.9091)) +(: cnet_isa_082ba4f070 (IsA normality expectedness) (STV 1.0 0.9091)) +(: cnet_isa_0680ea86df (IsA normality relative_quantity) (STV 1.0 0.9091)) +(: cnet_isa_f4d80a9fdc (IsA normality condition) (STV 1.0 0.9091)) +(: cnet_isa_a1ac676557 (IsA normalizer changer) (STV 1.0 0.9091)) +(: cnet_isa_b25e4c5ae6 (IsA norman french_person) (STV 1.0 0.9091)) +(: cnet_isa_73fa1199b4 (IsA norman_architecture romanesque) (STV 1.0 0.9091)) +(: cnet_isa_7c13d2eaa1 (IsA norman_french french) (STV 1.0 0.9091)) +(: cnet_isa_81abf43919 (IsA normothermia physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_3b15ba5199 (IsA norse_deity deity) (STV 1.0 0.9091)) +(: cnet_isa_1a877e8af7 (IsA norse_mythology mythology) (STV 1.0 0.9091)) +(: cnet_isa_12edef4b25 (IsA norseman european) (STV 1.0 0.9091)) +(: cnet_isa_fd773e802b (IsA north cardinal_compass_point) (STV 1.0 0.9091)) +(: cnet_isa_39b33da9ef (IsA north direction) (STV 1.0 0.9091)) +(: cnet_isa_87d8d7a3ee (IsA north location) (STV 1.0 0.9091)) +(: cnet_isa_9535218f2f (IsA north region) (STV 1.0 0.9091)) +(: cnet_isa_96b536e444 (IsA north_america collection) (STV 1.0 0.9091)) +(: cnet_isa_ae102d4d4a (IsA north_american american) (STV 1.0 0.9091)) +(: cnet_isa_71c9362930 (IsA north_american_country country) (STV 1.0 0.9091)) +(: cnet_isa_bdbcd8aaab (IsA north_american_free_trade_agreement free_trade) (STV 1.0 0.9091)) +(: cnet_isa_9a69b6635d (IsA north_atlantic_council council) (STV 1.0 0.9091)) +(: cnet_isa_e489c7017f (IsA north_atlantic_treaty_organization world_organization) (STV 1.0 0.9091)) +(: cnet_isa_3d50180b1d (IsA north_by_east compass_point) (STV 1.0 0.9091)) +(: cnet_isa_411529bc7d (IsA north_by_west compass_point) (STV 1.0 0.9091)) +(: cnet_isa_f221f6d6d2 (IsA north_carolina state) (STV 1.0 0.9339)) +(: cnet_isa_23b816ec11 (IsA north_dakota state) (STV 1.0 0.9339)) +(: cnet_isa_ca0b48c196 (IsA north_dakotan american) (STV 1.0 0.9091)) +(: cnet_isa_e50b144079 (IsA north_dravidian dravidian) (STV 1.0 0.9091)) +(: cnet_isa_0363fd72b0 (IsA north_equatorial_current equatorial_current) (STV 1.0 0.9091)) +(: cnet_isa_209ea7aa43 (IsA north_island_edelweiss wildflower) (STV 1.0 0.9091)) +(: cnet_isa_e592773982 (IsA north_korean korean) (STV 1.0 0.9091)) +(: cnet_isa_f1101ee18b (IsA north_korean_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_13317e7265 (IsA north_korean_won north_korean_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_50e6164fbd (IsA north_northeast compass_point) (STV 1.0 0.9091)) +(: cnet_isa_0d1cb92188 (IsA north_northwest compass_point) (STV 1.0 0.9091)) +(: cnet_isa_abc15bbae6 (IsA north_side side) (STV 1.0 0.9091)) +(: cnet_isa_4e3bc8fcbc (IsA north_south_direction direction) (STV 1.0 0.9091)) +(: cnet_isa_051ef0575f (IsA north_wind wind) (STV 1.0 0.9091)) +(: cnet_isa_83e395f519 (IsA northeast compass_point) (STV 1.0 0.9091)) +(: cnet_isa_703dfede67 (IsA northeast direction) (STV 1.0 0.9091)) +(: cnet_isa_9daf4ec59a (IsA northeast location) (STV 1.0 0.9091)) +(: cnet_isa_85eb1c5b20 (IsA northeast_by_east compass_point) (STV 1.0 0.9091)) +(: cnet_isa_c269799e29 (IsA northeast_by_north compass_point) (STV 1.0 0.9091)) +(: cnet_isa_9ca4739023 (IsA northeaster storm) (STV 1.0 0.9091)) +(: cnet_isa_da091a2289 (IsA northern middle_english) (STV 1.0 0.9091)) +(: cnet_isa_869d7ee990 (IsA northern_alliance alliance) (STV 1.0 0.9091)) +(: cnet_isa_21c2427403 (IsA northern_baptist baptist) (STV 1.0 0.9091)) +(: cnet_isa_5a02955140 (IsA northern_barramundi fish_specy) (STV 1.0 0.9091)) +(: cnet_isa_57ec1a7d68 (IsA northern_bedstraw bedstraw) (STV 1.0 0.9091)) +(: cnet_isa_e80efdff7b (IsA northern_bobwhite bobwhite) (STV 1.0 0.9091)) +(: cnet_isa_b59dac848a (IsA northern_bog_lemming lemming) (STV 1.0 0.9091)) +(: cnet_isa_b1db38b4a5 (IsA northern_cricket_frog cricket_frog) (STV 1.0 0.9091)) +(: cnet_isa_437ed637c9 (IsA northern_dewberry dewberry) (STV 1.0 0.9091)) +(: cnet_isa_9e1f5eba0e (IsA northern_dune_tansy wildflower) (STV 1.0 0.9091)) +(: cnet_isa_fcb5e62ed4 (IsA northern_europe geographical_area) (STV 1.0 0.9091)) +(: cnet_isa_731c9e381e (IsA northern_flying_squirrel american_flying_squirrel) (STV 1.0 0.9091)) +(: cnet_isa_a3e6289e12 (IsA northern_holly_fern holly_fern) (STV 1.0 0.9091)) +(: cnet_isa_28401482db (IsA northern_jacob_s_ladder polemonium) (STV 1.0 0.9091)) +(: cnet_isa_02f99d46d1 (IsA northern_oriole new_world_oriole) (STV 1.0 0.9091)) +(: cnet_isa_94240d53a3 (IsA northern_phalarope phalarope) (STV 1.0 0.9091)) +(: cnet_isa_3284573024 (IsA northern_pike pike) (STV 1.0 0.9091)) +(: cnet_isa_b5bb6c2c26 (IsA northern_pocket_gopher gopher) (STV 1.0 0.9091)) +(: cnet_isa_588e64d890 (IsA northern_red_oak red_oak) (STV 1.0 0.9091)) +(: cnet_isa_91a7cb6e8e (IsA northern_sea_robin sea_robin) (STV 1.0 0.9091)) +(: cnet_isa_78589d57ca (IsA northern_shrike butcherbird) (STV 1.0 0.9091)) +(: cnet_isa_316e90edf1 (IsA northern_snakehead fish) (STV 1.0 0.9091)) +(: cnet_isa_f00c360934 (IsA northern_spy eating_apple) (STV 1.0 0.9091)) +(: cnet_isa_b606ef3465 (IsA northern_whiting whiting) (STV 1.0 0.9091)) +(: cnet_isa_957135b343 (IsA northerner inhabitant) (STV 1.0 0.9091)) +(: cnet_isa_f8ac9d8897 (IsA northernness position) (STV 1.0 0.9091)) +(: cnet_isa_302e76c318 (IsA northman european) (STV 1.0 0.9091)) +(: cnet_isa_113d731425 (IsA northwest compass_point) (STV 1.0 0.9091)) +(: cnet_isa_600f199cbd (IsA northwest direction) (STV 1.0 0.9091)) +(: cnet_isa_d3f0b29b22 (IsA northwest location) (STV 1.0 0.9091)) +(: cnet_isa_cfa47e6229 (IsA northwest_by_north compass_point) (STV 1.0 0.9091)) +(: cnet_isa_2bd6d6f0da (IsA northwest_by_west compass_point) (STV 1.0 0.9091)) +(: cnet_isa_67c5834327 (IsA northwest_wind wind) (STV 1.0 0.9091)) +(: cnet_isa_6030cf28aa (IsA noruz vernal_equinox) (STV 1.0 0.9091)) +(: cnet_isa_7d585c6826 (IsA norway country) (STV 1.0 0.9608)) +(: cnet_isa_a498ec7465 (IsA norway_lobster lobster) (STV 1.0 0.9091)) +(: cnet_isa_b1be5be7c7 (IsA norway_maple maple) (STV 1.0 0.9091)) +(: cnet_isa_57a4fd594b (IsA norway_spruce spruce) (STV 1.0 0.9091)) +(: cnet_isa_16e4effce7 (IsA norwegian scandinavian) (STV 1.0 0.9091)) +(: cnet_isa_63e9c529fc (IsA norwegian_elkhound hound) (STV 1.0 0.9091)) +(: cnet_isa_156221bbb7 (IsA norwegian_krone norwegian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_a3c955bd67 (IsA norwegian_lobster lobster) (STV 1.0 0.9091)) +(: cnet_isa_da1abfaff3 (IsA norwegian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_77c373e877 (IsA norwich_terrier terrier) (STV 1.0 0.9091)) +(: cnet_isa_f1962d2a5a (IsA nose smell) (STV 1.0 0.9091)) +(: cnet_isa_61ce644c71 (IsA nose front) (STV 1.0 0.9091)) +(: cnet_isa_699f4b02df (IsA nose chemoreceptor) (STV 1.0 0.9091)) +(: cnet_isa_fdacfd6721 (IsA nose skill) (STV 1.0 0.9091)) +(: cnet_isa_97e9ca26e5 (IsA nose symbol) (STV 1.0 0.9091)) +(: cnet_isa_9d1848e37e (IsA nose small_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_48c29960d5 (IsA nose_cone front) (STV 1.0 0.9091)) +(: cnet_isa_f120fbf089 (IsA nose_flute flute) (STV 1.0 0.9091)) +(: cnet_isa_a0c895e197 (IsA nose_job face_lift) (STV 1.0 0.9091)) +(: cnet_isa_986d6996fc (IsA nose_ring hoop) (STV 1.0 0.9091)) +(: cnet_isa_2dd6d1eb9c (IsA nosebag bag) (STV 1.0 0.9091)) +(: cnet_isa_3340a4face (IsA noseband strap) (STV 1.0 0.9091)) +(: cnet_isa_8a43d7af8a (IsA nosebleed bleeding) (STV 1.0 0.9091)) +(: cnet_isa_93e9c5ee11 (IsA nosedive decline) (STV 1.0 0.9091)) +(: cnet_isa_4c79a2045d (IsA nosepiece armor_plate) (STV 1.0 0.9091)) +(: cnet_isa_9d0bcb98f2 (IsA nosewheel wheel) (STV 1.0 0.9091)) +(: cnet_isa_3950cda4b5 (IsA nosh bite) (STV 1.0 0.9091)) +(: cnet_isa_d97c639420 (IsA nosh_up meal) (STV 1.0 0.9091)) +(: cnet_isa_d9d25c92b5 (IsA nosher eater) (STV 1.0 0.9091)) +(: cnet_isa_41439b016f (IsA nosiness curiousness) (STV 1.0 0.9091)) +(: cnet_isa_cd253d5023 (IsA nosology medicine) (STV 1.0 0.9091)) +(: cnet_isa_92663dc0dd (IsA nostalgia human_emotion) (STV 1.0 0.9091)) +(: cnet_isa_610dad5880 (IsA nostalgia longing) (STV 1.0 0.9091)) +(: cnet_isa_d69a26bf5b (IsA nostoc cyanobacteria) (STV 1.0 0.9091)) +(: cnet_isa_3fb9640819 (IsA nostocaceae bacteria_family) (STV 1.0 0.9091)) +(: cnet_isa_fc35966fcc (IsA nostril hole) (STV 1.0 0.9091)) +(: cnet_isa_8b62278bf2 (IsA nostril naris) (STV 1.0 0.9091)) +(: cnet_isa_3e9b5d6381 (IsA nostrum patent_medicine) (STV 1.0 0.9091)) +(: cnet_isa_d2667d83f3 (IsA nota_bene note) (STV 1.0 0.9091)) +(: cnet_isa_f2727db205 (IsA notary official) (STV 1.0 0.9091)) +(: cnet_isa_76cbaac6a4 (IsA notation writing) (STV 1.0 0.9091)) +(: cnet_isa_f832d7101d (IsA notch cut) (STV 1.0 0.9091)) +(: cnet_isa_c1a78e01ee (IsA notch indentation) (STV 1.0 0.9091)) +(: cnet_isa_8349c42853 (IsA note symbol) (STV 1.0 0.9339)) +(: cnet_isa_0506dd9efe (IsA note air) (STV 1.0 0.9091)) +(: cnet_isa_db51b88080 (IsA note comment) (STV 1.0 0.9091)) +(: cnet_isa_21fc7f5c13 (IsA note musical_notation) (STV 1.0 0.9091)) +(: cnet_isa_c7e8d17239 (IsA note personal_letter) (STV 1.0 0.9091)) +(: cnet_isa_5c1876f8f2 (IsA note tone) (STV 1.0 0.9091)) +(: cnet_isa_2712294dc8 (IsA note written_record) (STV 1.0 0.9091)) +(: cnet_isa_897a11aaa5 (IsA note debt_instrument) (STV 1.0 0.9091)) +(: cnet_isa_fd0f8e255b (IsA note_payable note) (STV 1.0 0.9091)) +(: cnet_isa_e4aae3ff20 (IsA note_receivable note) (STV 1.0 0.9091)) +(: cnet_isa_1220d2778d (IsA notebook computer) (STV 1.0 0.9091)) +(: cnet_isa_e7c32d3988 (IsA notebook portable_computer) (STV 1.0 0.9091)) +(: cnet_isa_0625f96b80 (IsA notebook book) (STV 1.0 0.9091)) +(: cnet_isa_c0e96baac7 (IsA notebook_entry entry) (STV 1.0 0.9091)) +(: cnet_isa_1bbc2b9c3f (IsA notechis reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_0dfabcf196 (IsA notemigonus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_5f13134397 (IsA notepad pad) (STV 1.0 0.9091)) +(: cnet_isa_b9ac2075a3 (IsA notepaper writing_paper) (STV 1.0 0.9091)) +(: cnet_isa_6d9da3b9c6 (IsA nothing relative_quantity) (STV 1.0 0.9091)) +(: cnet_isa_baac39a79a (IsA nothingness nonexistence) (STV 1.0 0.9091)) +(: cnet_isa_2a6b012a32 (IsA nothing conversation) (STV 1.0 0.9091)) +(: cnet_isa_af4b782bf0 (IsA nothofagus hamamelid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_343f25a983 (IsA nothosaur archosaur) (STV 1.0 0.9091)) +(: cnet_isa_9990d838bc (IsA nothosauria animal_order) (STV 1.0 0.9091)) +(: cnet_isa_70d8dbe713 (IsA notice attention) (STV 1.0 0.9091)) +(: cnet_isa_5cb212659f (IsA notice announcement) (STV 1.0 0.9091)) +(: cnet_isa_94cb21075c (IsA notice review) (STV 1.0 0.9091)) +(: cnet_isa_6c82d88948 (IsA notice telling) (STV 1.0 0.9091)) +(: cnet_isa_4124f789fc (IsA noticer official) (STV 1.0 0.9091)) +(: cnet_isa_1216b1d506 (IsA noticer perceiver) (STV 1.0 0.9091)) +(: cnet_isa_1d0561d330 (IsA notification request) (STV 1.0 0.9091)) +(: cnet_isa_e55813521a (IsA notion article) (STV 1.0 0.9091)) +(: cnet_isa_b20ef7bcb7 (IsA notion concept) (STV 1.0 0.9091)) +(: cnet_isa_a6c452eadb (IsA notion idea) (STV 1.0 0.9091)) +(: cnet_isa_8088909d5c (IsA notion_counter counter) (STV 1.0 0.9091)) +(: cnet_isa_73f58933a2 (IsA notochord spinal_column) (STV 1.0 0.9091)) +(: cnet_isa_9f279e904b (IsA notomy mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_2829182d01 (IsA notonecta arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_0474da3f4d (IsA notonectidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_46f4082b43 (IsA notophthalmus amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_1c7a065196 (IsA notoriety infamy) (STV 1.0 0.9091)) +(: cnet_isa_672120d96a (IsA notornis rail) (STV 1.0 0.9091)) +(: cnet_isa_73a9576b0c (IsA notoryctidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_f3a14250f0 (IsA notoryctus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_31be9791ee (IsA notostraca animal_order) (STV 1.0 0.9091)) +(: cnet_isa_aa06ac2ce8 (IsA notropis fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_9e2c570589 (IsA nougat candy) (STV 1.0 0.9091)) +(: cnet_isa_ce1ebf4622 (IsA nougat_bar candy) (STV 1.0 0.9091)) +(: cnet_isa_fb1d0203ee (IsA noumenon content) (STV 1.0 0.9091)) +(: cnet_isa_1ffcb73de8 (IsA noun content_word) (STV 1.0 0.9091)) +(: cnet_isa_4fe6cd2634 (IsA noun major_form_class) (STV 1.0 0.9091)) +(: cnet_isa_1423f34642 (IsA noun substantive) (STV 1.0 0.9091)) +(: cnet_isa_268e44baf5 (IsA noun_phrase phrase) (STV 1.0 0.9091)) +(: cnet_isa_2a3f3ff200 (IsA nourishment care) (STV 1.0 0.9091)) +(: cnet_isa_14f25c01ea (IsA nous common_sense) (STV 1.0 0.9091)) +(: cnet_isa_e533701105 (IsA nouvelle_cuisine cuisine) (STV 1.0 0.9091)) +(: cnet_isa_325224cab9 (IsA nov_esperanto artificial_language) (STV 1.0 0.9091)) +(: cnet_isa_929d0f66db (IsA nov_latin artificial_language) (STV 1.0 0.9091)) +(: cnet_isa_8a31c45353 (IsA nova star) (STV 1.0 0.9091)) +(: cnet_isa_25c8148a1b (IsA nova_scotia in_canada) (STV 1.0 0.9091)) +(: cnet_isa_9594498dbc (IsA nova_scotia_lox lox) (STV 1.0 0.9091)) +(: cnet_isa_14aad7fca2 (IsA novation replacement) (STV 1.0 0.9091)) +(: cnet_isa_b005be08bb (IsA novel book) (STV 1.0 0.9524)) +(: cnet_isa_3e133d5cb2 (IsA novel story) (STV 1.0 0.9339)) +(: cnet_isa_e60742af1a (IsA novel fiction) (STV 1.0 0.9091)) +(: cnet_isa_83a7b91627 (IsA novelette novel) (STV 1.0 0.9091)) +(: cnet_isa_36096b5aeb (IsA novelist writer) (STV 1.0 0.9091)) +(: cnet_isa_588a7affb8 (IsA novelization writing) (STV 1.0 0.9091)) +(: cnet_isa_bd60064d02 (IsA novelty originality) (STV 1.0 0.9091)) +(: cnet_isa_2246302f47 (IsA november gregorian_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_0b30939cde (IsA november_5 day) (STV 1.0 0.9091)) +(: cnet_isa_44ac51370a (IsA novena devotion) (STV 1.0 0.9091)) +(: cnet_isa_09d436e305 (IsA novial artificial_language) (STV 1.0 0.9091)) +(: cnet_isa_6625730bf6 (IsA novice unskilled_person) (STV 1.0 0.9091)) +(: cnet_isa_fe3c40a928 (IsA novillada bullfight) (STV 1.0 0.9091)) +(: cnet_isa_093f84589e (IsA novillero bullfighter) (STV 1.0 0.9091)) +(: cnet_isa_9e52abb0db (IsA novitiate religionist) (STV 1.0 0.9091)) +(: cnet_isa_e92ba20045 (IsA novitiate time_period) (STV 1.0 0.9091)) +(: cnet_isa_7e43266fd3 (IsA novobiocin antibiotic) (STV 1.0 0.9091)) +(: cnet_isa_107fb65bac (IsA now present) (STV 1.0 0.9091)) +(: cnet_isa_23369441de (IsA nowhere obscurity) (STV 1.0 0.9091)) +(: cnet_isa_3c68d038f5 (IsA nozzle spout) (STV 1.0 0.9091)) +(: cnet_isa_f877873889 (IsA nu letter) (STV 1.0 0.9091)) +(: cnet_isa_53248d082a (IsA nuance meaning) (STV 1.0 0.9091)) +(: cnet_isa_282d85cb82 (IsA nub part) (STV 1.0 0.9091)) +(: cnet_isa_1117f66351 (IsA nub bulge) (STV 1.0 0.9091)) +(: cnet_isa_b0dbe0e4d2 (IsA nubbin nub) (STV 1.0 0.9091)) +(: cnet_isa_0cc0f7dd60 (IsA nubian egyptian) (STV 1.0 0.9091)) +(: cnet_isa_b446ecc56c (IsA nubian ethnic_group) (STV 1.0 0.9091)) +(: cnet_isa_03100db8e1 (IsA nucellus plant_part) (STV 1.0 0.9091)) +(: cnet_isa_2a6a5f1713 (IsA nucifraga bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_41e3c911ed (IsA nuclear_cataract cataract) (STV 1.0 0.9091)) +(: cnet_isa_ee0fbe27d1 (IsA nuclear_chemist chemist) (STV 1.0 0.9091)) +(: cnet_isa_fee5dd884a (IsA nuclear_club collection) (STV 1.0 0.9091)) +(: cnet_isa_f9b4c0e783 (IsA nuclear_deterrence deterrence) (STV 1.0 0.9091)) +(: cnet_isa_251df39462 (IsA nuclear_deterrence doctrine) (STV 1.0 0.9091)) +(: cnet_isa_00966e879d (IsA nuclear_engineering engineering) (STV 1.0 0.9091)) +(: cnet_isa_8ae8bf3bb1 (IsA nuclear_explosion bomb_blast) (STV 1.0 0.9091)) +(: cnet_isa_758e595080 (IsA nuclear_family family) (STV 1.0 0.9091)) +(: cnet_isa_93bb78e55e (IsA nuclear_fuel fuel) (STV 1.0 0.9091)) +(: cnet_isa_943e32922e (IsA nuclear_magnetic_resonance magnetic_resonance) (STV 1.0 0.9091)) +(: cnet_isa_7a5586f2de (IsA nuclear_medicine medicine) (STV 1.0 0.9091)) +(: cnet_isa_1ebbd4119e (IsA nuclear_physicist physicist) (STV 1.0 0.9091)) +(: cnet_isa_abead53ca9 (IsA nuclear_physic physic) (STV 1.0 0.9091)) +(: cnet_isa_ce4102c8a5 (IsA nuclear_powered_ship ship) (STV 1.0 0.9091)) +(: cnet_isa_c4eaa8b125 (IsA nuclear_propulsion propulsion) (STV 1.0 0.9091)) +(: cnet_isa_b24b2681cd (IsA nuclear_reaction natural_process) (STV 1.0 0.9091)) +(: cnet_isa_5f25bab1bb (IsA nuclear_reactor apparatus) (STV 1.0 0.9091)) +(: cnet_isa_9425a2ab93 (IsA nuclear_regulatory_commission independent_agency) (STV 1.0 0.9091)) +(: cnet_isa_160ea207e7 (IsA nuclear_resonance resonance) (STV 1.0 0.9091)) +(: cnet_isa_3b50c990bb (IsA nuclear_rna ribonucleic_acid) (STV 1.0 0.9091)) +(: cnet_isa_da3343b6d1 (IsA nuclear_rocket rocket) (STV 1.0 0.9091)) +(: cnet_isa_b75f30dda2 (IsA nuclear_terrorism terrorism) (STV 1.0 0.9091)) +(: cnet_isa_8dd68c3317 (IsA nuclear_weapon weapon_of_mass_destruction) (STV 1.0 0.9091)) +(: cnet_isa_0e904a2d0f (IsA nuclear_winter catastrophe) (STV 1.0 0.9091)) +(: cnet_isa_84926f10cc (IsA nuclease enzyme) (STV 1.0 0.9091)) +(: cnet_isa_5d7105516c (IsA nucleic_acid macromolecule) (STV 1.0 0.9091)) +(: cnet_isa_e8267ec001 (IsA nucleolus organelle) (STV 1.0 0.9091)) +(: cnet_isa_f9eb8f716d (IsA nucleolus_organizer structure) (STV 1.0 0.9091)) +(: cnet_isa_c17449b42d (IsA nucleon baryon) (STV 1.0 0.9091)) +(: cnet_isa_a0b29c83dd (IsA nucleoplasm protoplasm) (STV 1.0 0.9091)) +(: cnet_isa_b1035f54d5 (IsA nucleoprotein protein) (STV 1.0 0.9091)) +(: cnet_isa_b5bbb2ec15 (IsA nucleoside glycoside) (STV 1.0 0.9091)) +(: cnet_isa_ac2243a125 (IsA nucleoside_reverse_transcriptase_inhibitor reverse_transcriptase_inhibitor) (STV 1.0 0.9091)) +(: cnet_isa_848b32d6c9 (IsA nucleosynthesis synthesis) (STV 1.0 0.9091)) +(: cnet_isa_c6e44be211 (IsA nucleotide ester) (STV 1.0 0.9091)) +(: cnet_isa_5f17afe747 (IsA nucleus center) (STV 1.0 0.9091)) +(: cnet_isa_a17fbe8922 (IsA nucleus neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_f7f95cb657 (IsA nucleus organelle) (STV 1.0 0.9091)) +(: cnet_isa_1dd8b2690a (IsA nuda class) (STV 1.0 0.9091)) +(: cnet_isa_8ee05349ce (IsA nude painting) (STV 1.0 0.9091)) +(: cnet_isa_252202b099 (IsA nude person) (STV 1.0 0.9091)) +(: cnet_isa_f5c111dccc (IsA nude nakedness) (STV 1.0 0.9091)) +(: cnet_isa_26a8b91707 (IsA nude_dancing stage_dancing) (STV 1.0 0.9091)) +(: cnet_isa_619d0c95a3 (IsA nude_mouse mouse) (STV 1.0 0.9091)) +(: cnet_isa_0c361bbdc3 (IsA nude_sculpture statue) (STV 1.0 0.9091)) +(: cnet_isa_e6d3ce7675 (IsA nudge push) (STV 1.0 0.9091)) +(: cnet_isa_3373da5ef7 (IsA nudger pusher) (STV 1.0 0.9091)) +(: cnet_isa_062f79a06a (IsA nudibranchia animal_order) (STV 1.0 0.9091)) +(: cnet_isa_bf6a3e76c5 (IsA nudism practice) (STV 1.0 0.9091)) +(: cnet_isa_febbfda4fc (IsA nudist individualist) (STV 1.0 0.9091)) +(: cnet_isa_f0ba43adb0 (IsA nudity natural_state) (STV 1.0 0.9091)) +(: cnet_isa_74ca6b5bbb (IsA nudnik bore) (STV 1.0 0.9091)) +(: cnet_isa_0bf0559325 (IsA nudnik pest) (STV 1.0 0.9091)) +(: cnet_isa_7fe39792d8 (IsA nugget hunk) (STV 1.0 0.9091)) +(: cnet_isa_d08c107cf3 (IsA nuisance annoyance) (STV 1.0 0.9091)) +(: cnet_isa_32cd66b2d6 (IsA null_set set) (STV 1.0 0.9091)) +(: cnet_isa_3da6cb6557 (IsA null_space mathematical_space) (STV 1.0 0.9091)) +(: cnet_isa_c3d9c182ae (IsA null_vector vector) (STV 1.0 0.9091)) +(: cnet_isa_78d24fc1e4 (IsA nullah valley) (STV 1.0 0.9091)) +(: cnet_isa_2805fbc284 (IsA nullification change_of_state) (STV 1.0 0.9091)) +(: cnet_isa_7454d1ceb7 (IsA nullification state_right) (STV 1.0 0.9091)) +(: cnet_isa_69b4759ec6 (IsA nullifier advocate) (STV 1.0 0.9091)) +(: cnet_isa_89ea6612dd (IsA nullipara woman) (STV 1.0 0.9091)) +(: cnet_isa_29eccbad18 (IsA nullity act) (STV 1.0 0.9091)) +(: cnet_isa_97f0da5d4f (IsA numbat dasyurid_marsupial) (STV 1.0 0.9091)) +(: cnet_isa_abd1031fed (IsA number digit_of_value) (STV 1.0 0.9091)) +(: cnet_isa_d342955d6d (IsA number merchandise) (STV 1.0 0.9091)) +(: cnet_isa_f030271391 (IsA number amount) (STV 1.0 0.9091)) +(: cnet_isa_fc5e468eb6 (IsA number size) (STV 1.0 0.9091)) +(: cnet_isa_03a9fc519f (IsA number grammatical_category) (STV 1.0 0.9091)) +(: cnet_isa_7714ef4ec0 (IsA number item) (STV 1.0 0.9091)) +(: cnet_isa_4f5783e4ae (IsA number positive_identification) (STV 1.0 0.9091)) +(: cnet_isa_30268c39bd (IsA number company) (STV 1.0 0.9091)) +(: cnet_isa_6769bf2ccd (IsA number definite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_3377875a29 (IsA number_agreement agreement) (STV 1.0 0.9091)) +(: cnet_isa_476ba7021d (IsA number_cruncher computer) (STV 1.0 0.9091)) +(: cnet_isa_444a870ea4 (IsA number_cruncher calculator) (STV 1.0 0.9091)) +(: cnet_isa_58ce1d18d5 (IsA number_crunching calculation) (STV 1.0 0.9091)) +(: cnet_isa_990b71edc6 (IsA number_one self) (STV 1.0 0.9091)) +(: cnet_isa_8a15b857b7 (IsA number_theorist mathematician) (STV 1.0 0.9091)) +(: cnet_isa_b2520368a1 (IsA number easier_to_memorize_than_other) (STV 1.0 0.9091)) +(: cnet_isa_f1f6333d54 (IsA number_pool lottery) (STV 1.0 0.9091)) +(: cnet_isa_f7847c63dd (IsA numbness symptom) (STV 1.0 0.9091)) +(: cnet_isa_78e4edcdce (IsA numdah rug) (STV 1.0 0.9091)) +(: cnet_isa_8e05289853 (IsA numen spirit) (STV 1.0 0.9091)) +(: cnet_isa_8858a16123 (IsA numenius bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_cda0146dad (IsA numeracy skill) (STV 1.0 0.9091)) +(: cnet_isa_dc48314dca (IsA numeral symbol) (STV 1.0 0.9091)) +(: cnet_isa_220ea9dfc5 (IsA numeration naming) (STV 1.0 0.9091)) +(: cnet_isa_687040e63b (IsA numeration_system mathematical_notation) (STV 1.0 0.9091)) +(: cnet_isa_0e86bc245b (IsA numerator dividend) (STV 1.0 0.9091)) +(: cnet_isa_0305c16224 (IsA numerical_analysis pure_mathematic) (STV 1.0 0.9091)) +(: cnet_isa_a237c70c75 (IsA numerical_quantity quantity) (STV 1.0 0.9091)) +(: cnet_isa_a2c5e83490 (IsA numerologist believer) (STV 1.0 0.9091)) +(: cnet_isa_746f18cd83 (IsA numerology discipline) (STV 1.0 0.9091)) +(: cnet_isa_32e6183429 (IsA numerousness number) (STV 1.0 0.9091)) +(: cnet_isa_d533251a61 (IsA numida bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_4ec1ec3615 (IsA numidian inhabitant) (STV 1.0 0.9091)) +(: cnet_isa_6e2508d905 (IsA numididae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_55c8b46e2e (IsA numismatic collection) (STV 1.0 0.9091)) +(: cnet_isa_391b407dba (IsA numismatist collector) (STV 1.0 0.9091)) +(: cnet_isa_e24f898503 (IsA nummulite foram) (STV 1.0 0.9091)) +(: cnet_isa_2424f74b18 (IsA nummulitidae protoctist_family) (STV 1.0 0.9091)) +(: cnet_isa_36ea56f85e (IsA nun_s_habit habit) (STV 1.0 0.9091)) +(: cnet_isa_d60ad89ed5 (IsA nun letter) (STV 1.0 0.9091)) +(: cnet_isa_252d0cd8a5 (IsA nun religious) (STV 1.0 0.9091)) +(: cnet_isa_ebbf9e5228 (IsA nuncio diplomat) (STV 1.0 0.9091)) +(: cnet_isa_bd81d777a2 (IsA nung tai) (STV 1.0 0.9091)) +(: cnet_isa_c4e4426b28 (IsA nunnery convent) (STV 1.0 0.9091)) +(: cnet_isa_a8d8684d82 (IsA nuphar magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b6d13f3188 (IsA nurse health_professional) (STV 1.0 0.9091)) +(: cnet_isa_5dceaae988 (IsA nurse_log log) (STV 1.0 0.9091)) +(: cnet_isa_b9b8bccc44 (IsA nurse_midwife registered_nurse) (STV 1.0 0.9091)) +(: cnet_isa_c2d26d0b57 (IsA nurse_patient_relation medical_relation) (STV 1.0 0.9091)) +(: cnet_isa_b235a54572 (IsA nurse_practitioner registered_nurse) (STV 1.0 0.9091)) +(: cnet_isa_9245d71cb7 (IsA nurse_shark shark) (STV 1.0 0.9091)) +(: cnet_isa_0803b0809e (IsA nurser person) (STV 1.0 0.9091)) +(: cnet_isa_7b98786aaf (IsA nursery child_s_room) (STV 1.0 0.9091)) +(: cnet_isa_367b0cb22c (IsA nursery_rhyme narrative) (STV 1.0 0.9091)) +(: cnet_isa_2853991fe9 (IsA nursery_school preschool) (STV 1.0 0.9091)) +(: cnet_isa_bfc15d6874 (IsA nursing care) (STV 1.0 0.9091)) +(: cnet_isa_245f42c7ad (IsA nursing infant_feeding) (STV 1.0 0.9091)) +(: cnet_isa_4cdc4a32d3 (IsA nursing health_profession) (STV 1.0 0.9091)) +(: cnet_isa_19d2559e71 (IsA nursing_aide aide) (STV 1.0 0.9091)) +(: cnet_isa_ee5a5fec9e (IsA nursing_bottle vessel) (STV 1.0 0.9091)) +(: cnet_isa_57835985d2 (IsA nursing_care medical_care) (STV 1.0 0.9091)) +(: cnet_isa_758cf13134 (IsA nursing_patient activity) (STV 1.0 0.9091)) +(: cnet_isa_41cc0c5465 (IsA nursing_school school) (STV 1.0 0.9091)) +(: cnet_isa_cab51fb7d0 (IsA nursling baby) (STV 1.0 0.9091)) +(: cnet_isa_9ae3abb28a (IsA nurturance care) (STV 1.0 0.9091)) +(: cnet_isa_c66909c9fb (IsA nut seed) (STV 1.0 0.9091)) +(: cnet_isa_de02a86d38 (IsA nut block) (STV 1.0 0.9091)) +(: cnet_isa_d8dea3ccf6 (IsA nut_and_bolt fastener) (STV 1.0 0.9091)) +(: cnet_isa_1bf8536965 (IsA nut_bar candy) (STV 1.0 0.9091)) +(: cnet_isa_f45d6a4cb2 (IsA nut_bread quick_bread) (STV 1.0 0.9091)) +(: cnet_isa_011aa3aca4 (IsA nut_butter spread) (STV 1.0 0.9091)) +(: cnet_isa_c87a962bf2 (IsA nut_leaved_screw_tree screw_tree) (STV 1.0 0.9091)) +(: cnet_isa_3104f8ec38 (IsA nut_pine pinon) (STV 1.0 0.9091)) +(: cnet_isa_0343e15cb3 (IsA nut_tree angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_346329d319 (IsA nutation nod) (STV 1.0 0.9091)) +(: cnet_isa_c43a4edbc5 (IsA nutcracker corvine_bird) (STV 1.0 0.9091)) +(: cnet_isa_de45c8351c (IsA nutcracker compound_lever) (STV 1.0 0.9091)) +(: cnet_isa_4d214ea460 (IsA nutgrass sedge) (STV 1.0 0.9091)) +(: cnet_isa_3bfb570769 (IsA nuthatch oscine) (STV 1.0 0.9091)) +(: cnet_isa_26ac7778b0 (IsA nutlet nut) (STV 1.0 0.9091)) +(: cnet_isa_afb5414045 (IsA nutmeg spice) (STV 1.0 0.9339)) +(: cnet_isa_225c573ff2 (IsA nutmeg spice_tree) (STV 1.0 0.9091)) +(: cnet_isa_c100da3358 (IsA nutmeg_hickory hickory) (STV 1.0 0.9091)) +(: cnet_isa_9e9fb9fa64 (IsA nutrient substance) (STV 1.0 0.9091)) +(: cnet_isa_33725d9699 (IsA nutrient_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_cb0737f854 (IsA nutriment food) (STV 1.0 0.9091)) +(: cnet_isa_5cf761d5a1 (IsA nutrition science) (STV 1.0 0.9091)) +(: cnet_isa_1133b3777c (IsA nutrition organic_process) (STV 1.0 0.9091)) +(: cnet_isa_1228937a94 (IsA nutritiousness wholesomeness) (STV 1.0 0.9091)) +(: cnet_isa_8f8f0b0561 (IsA nut_and_bolt information) (STV 1.0 0.9091)) +(: cnet_isa_53d00ed309 (IsA nutshell shell) (STV 1.0 0.9091)) +(: cnet_isa_21e69041a8 (IsA nuttall_oak oak) (STV 1.0 0.9091)) +(: cnet_isa_8a35c88962 (IsA nutter eccentric) (STV 1.0 0.9091)) +(: cnet_isa_26fe60911e (IsA nux_vomica medicine) (STV 1.0 0.9091)) +(: cnet_isa_a077f14201 (IsA nuytsia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_52be3ad6fe (IsA nyala harnessed_antelope) (STV 1.0 0.9091)) +(: cnet_isa_de380498d7 (IsA nyamwezi bantu) (STV 1.0 0.9091)) +(: cnet_isa_716b21d0a4 (IsA nybble computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_e0f7879ab6 (IsA nyctaginaceae caryophylloid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_5bb780dd69 (IsA nyctaginia caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5d838c2539 (IsA nyctalopia avitaminosis) (STV 1.0 0.9091)) +(: cnet_isa_450172d64a (IsA nyctalopia visual_impairment) (STV 1.0 0.9091)) +(: cnet_isa_471dad809a (IsA nyctanassa bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_a0de657f6c (IsA nyctereute mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_7258bb1379 (IsA nycticebus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_919a698736 (IsA nycticorax bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_ae00a17e0f (IsA nyctimene mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_0ef6a0ae5e (IsA nyctophobia simple_phobia) (STV 1.0 0.9091)) +(: cnet_isa_f6ed63c32d (IsA nylon man_made_fabric) (STV 1.0 0.9091)) +(: cnet_isa_975c5ffec8 (IsA nylon material) (STV 1.0 0.9339)) +(: cnet_isa_0887966596 (IsA nylon synthetic_fabric) (STV 1.0 0.9339)) +(: cnet_isa_cc38d0f654 (IsA nylon fabric) (STV 1.0 0.9091)) +(: cnet_isa_1be18c3a13 (IsA nylon man_made_fiber) (STV 1.0 0.9091)) +(: cnet_isa_aaa309ce41 (IsA nylon polyamide) (STV 1.0 0.9091)) +(: cnet_isa_dfab4ed2ab (IsA nylon stocking) (STV 1.0 0.9091)) +(: cnet_isa_40c224061a (IsA nymph larva) (STV 1.0 0.9091)) +(: cnet_isa_1450671853 (IsA nymph graeco_roman_deity) (STV 1.0 0.9091)) +(: cnet_isa_1ee6361694 (IsA nymph woman) (STV 1.0 0.9091)) +(: cnet_isa_6bf1b26717 (IsA nymphaea magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_82ef7c19ec (IsA nymphaeaceae magnoliid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_706126fc8d (IsA nymphalid butterfly) (STV 1.0 0.9091)) +(: cnet_isa_d9fa1c9979 (IsA nymphalidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_daa031e487 (IsA nymphalis arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_0f8f284844 (IsA nymphet woman) (STV 1.0 0.9091)) +(: cnet_isa_07571b237f (IsA nymphicus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_06f0c48e4f (IsA nympholepsy craze) (STV 1.0 0.9091)) +(: cnet_isa_fdaacb102e (IsA nympholept unfortunate) (STV 1.0 0.9091)) +(: cnet_isa_9e4522c09d (IsA nymphomania sexual_desire) (STV 1.0 0.9091)) +(: cnet_isa_43633832be (IsA nymphomaniac pervert) (STV 1.0 0.9091)) +(: cnet_isa_21c968a9c5 (IsA nyquist_frequency sampling_frequency) (STV 1.0 0.9091)) +(: cnet_isa_a1ac361ffc (IsA nyquist_rate sampling_rate) (STV 1.0 0.9091)) +(: cnet_isa_6d4ab4be32 (IsA nyssa dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f80593c4ee (IsA nyssaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_0cdeda6ddb (IsA nystagmus eye_movement) (STV 1.0 0.9091)) +(: cnet_isa_2dab65e4d7 (IsA o_reilly publisher_of_book) (STV 1.0 0.9339)) +(: cnet_isa_afc6155eea (IsA o_k sanction) (STV 1.0 0.9091)) +(: cnet_isa_202d7baed1 (IsA o blood_group) (STV 1.0 0.9091)) +(: cnet_isa_53d947b48b (IsA o letter) (STV 1.0 0.9091)) +(: cnet_isa_bf56865bf1 (IsA o_level grade) (STV 1.0 0.9091)) +(: cnet_isa_c5fc99e915 (IsA o_ring gasket) (STV 1.0 0.9091)) +(: cnet_isa_6b380d36ab (IsA oak specy) (STV 1.0 0.9091)) +(: cnet_isa_736095b8f4 (IsA oak tree) (STV 1.0 0.9091)) +(: cnet_isa_f4ef5aadbc (IsA oak wood) (STV 1.0 0.9091)) +(: cnet_isa_407a959251 (IsA oak_apple gall) (STV 1.0 0.9091)) +(: cnet_isa_78e9abe00c (IsA oak_blight plant_louse) (STV 1.0 0.9091)) +(: cnet_isa_ab50261f01 (IsA oak_chestnut tree) (STV 1.0 0.9091)) +(: cnet_isa_54bb179678 (IsA oak_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_4a185ef3c4 (IsA oak_leaf_cluster decoration) (STV 1.0 0.9091)) +(: cnet_isa_375e3a74ae (IsA oak_leaved_goosefoot goosefoot) (STV 1.0 0.9091)) +(: cnet_isa_ec2f19c2c3 (IsA oak_park in_illinoi) (STV 1.0 0.9091)) +(: cnet_isa_c0df241c47 (IsA oak_park in_illinois) (STV 1.0 0.9091)) +(: cnet_isa_20b84dd404 (IsA oakum fiber) (STV 1.0 0.9091)) +(: cnet_isa_08f4e70256 (IsA oar implement) (STV 1.0 0.9091)) +(: cnet_isa_4bfbaa1210 (IsA oarfish soft_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_33b2a4b604 (IsA oarsman boatman) (STV 1.0 0.9091)) +(: cnet_isa_011a3002dc (IsA oarsmanship skill) (STV 1.0 0.9091)) +(: cnet_isa_b4423729ac (IsA oarswoman oarsman) (STV 1.0 0.9091)) +(: cnet_isa_b80968b7c6 (IsA oasis tract) (STV 1.0 0.9091)) +(: cnet_isa_96353c4c22 (IsA oast kiln) (STV 1.0 0.9091)) +(: cnet_isa_d273fb2dee (IsA oast_house house) (STV 1.0 0.9091)) +(: cnet_isa_beac68db7e (IsA oat grain) (STV 1.0 0.9091)) +(: cnet_isa_de18d93946 (IsA oat cereal) (STV 1.0 0.9091)) +(: cnet_isa_a71f87329e (IsA oat_cell_carcinoma carcinoma) (STV 1.0 0.9091)) +(: cnet_isa_01682ee037 (IsA oatcake quick_bread) (STV 1.0 0.9091)) +(: cnet_isa_9d1e433a3f (IsA oath commitment) (STV 1.0 0.9091)) +(: cnet_isa_3e284f8142 (IsA oath promise) (STV 1.0 0.9091)) +(: cnet_isa_95a21e7478 (IsA oatmeal meal) (STV 1.0 0.9091)) +(: cnet_isa_e82a4c2fd0 (IsA oatmeal porridge) (STV 1.0 0.9091)) +(: cnet_isa_f17edd1330 (IsA oatmeal_cookie cookie) (STV 1.0 0.9091)) +(: cnet_isa_0c81850934 (IsA obbligato motif) (STV 1.0 0.9091)) +(: cnet_isa_1bd7994a83 (IsA obbligato section) (STV 1.0 0.9091)) +(: cnet_isa_20caae3025 (IsA obeah cult) (STV 1.0 0.9091)) +(: cnet_isa_ce324a6459 (IsA obeche tree) (STV 1.0 0.9091)) +(: cnet_isa_bcd386a3fe (IsA obeche wood) (STV 1.0 0.9091)) +(: cnet_isa_2e1fd929e0 (IsA obedience compliance) (STV 1.0 0.9091)) +(: cnet_isa_6fb64524af (IsA obedience filial_duty) (STV 1.0 0.9091)) +(: cnet_isa_2139498388 (IsA obedience tractability) (STV 1.0 0.9091)) +(: cnet_isa_6285978e26 (IsA obelion craniometric_point) (STV 1.0 0.9091)) +(: cnet_isa_995a701fad (IsA obelisk column) (STV 1.0 0.9091)) +(: cnet_isa_1a37840646 (IsA oberson fairy) (STV 1.0 0.9091)) +(: cnet_isa_24b40c70d4 (IsA obfuscation blackening) (STV 1.0 0.9091)) +(: cnet_isa_b373334592 (IsA obi cult) (STV 1.0 0.9091)) +(: cnet_isa_6ecfaa9f0c (IsA obidoxime_chloride antidote) (STV 1.0 0.9091)) +(: cnet_isa_dc10df5262 (IsA obidoxime_chloride chloride) (STV 1.0 0.9091)) +(: cnet_isa_a1e74719c7 (IsA obiism sorcery) (STV 1.0 0.9091)) +(: cnet_isa_8cdc16c2c3 (IsA obiter_dictum remark) (STV 1.0 0.9091)) +(: cnet_isa_7b00b773c8 (IsA obiter_dictum opinion) (STV 1.0 0.9091)) +(: cnet_isa_83a8be585e (IsA obituary notice) (STV 1.0 0.9091)) +(: cnet_isa_07185b72c0 (IsA object thing) (STV 1.0 0.9339)) +(: cnet_isa_bd17908bc7 (IsA object physical_entity) (STV 1.0 0.9091)) +(: cnet_isa_ffac377b89 (IsA object computer_science) (STV 1.0 0.9091)) +(: cnet_isa_34b2ccee84 (IsA object content) (STV 1.0 0.9091)) +(: cnet_isa_cd3a181ca3 (IsA object constituent) (STV 1.0 0.9091)) +(: cnet_isa_970fc7d3dc (IsA object_ball billiard_ball) (STV 1.0 0.9091)) +(: cnet_isa_e2e32054b7 (IsA object_code code) (STV 1.0 0.9091)) +(: cnet_isa_eee4c6f41f (IsA object_language language) (STV 1.0 0.9091)) +(: cnet_isa_c8bc307b2d (IsA object_language programming_language) (STV 1.0 0.9091)) +(: cnet_isa_162af4b030 (IsA object_oriented_database electronic_database) (STV 1.0 0.9091)) +(: cnet_isa_6f31aaac2b (IsA object_oriented_database_management_system database_management_system) (STV 1.0 0.9091)) +(: cnet_isa_39e429bdb5 (IsA object_oriented_programming programming) (STV 1.0 0.9091)) +(: cnet_isa_31da422fa5 (IsA object_oriented_programming_language programming_language) (STV 1.0 0.9091)) +(: cnet_isa_bc1e8fa360 (IsA object_program program) (STV 1.0 0.9091)) +(: cnet_isa_e79ae72d7b (IsA object_recognition visual_perception) (STV 1.0 0.9091)) +(: cnet_isa_8858bb53bc (IsA objectification realization) (STV 1.0 0.9091)) +(: cnet_isa_76ce83e69b (IsA objectification representation) (STV 1.0 0.9091)) +(: cnet_isa_050c77b0d4 (IsA objection speech_act) (STV 1.0 0.9091)) +(: cnet_isa_d5f86e429a (IsA objection procedure) (STV 1.0 0.9091)) +(: cnet_isa_4fed46f2c6 (IsA objective len) (STV 1.0 0.9091)) +(: cnet_isa_bcafadf46e (IsA objectivism philosophy) (STV 1.0 0.9454)) +(: cnet_isa_7b6ad59524 (IsA objectivism theory) (STV 1.0 0.9091)) +(: cnet_isa_5082fb81ad (IsA objectivity judgment) (STV 1.0 0.9091)) +(: cnet_isa_dc71bcee48 (IsA objet_d_art work_of_art) (STV 1.0 0.9091)) +(: cnet_isa_977e52abc4 (IsA oblanceolate_leaf simple_leaf) (STV 1.0 0.9091)) +(: cnet_isa_f75f1c278b (IsA oblate religionist) (STV 1.0 0.9091)) +(: cnet_isa_ceb278152c (IsA oblateness roundedness) (STV 1.0 0.9091)) +(: cnet_isa_917c464d90 (IsA oblation giving) (STV 1.0 0.9091)) +(: cnet_isa_95907c7a42 (IsA oblation religious_ceremony) (STV 1.0 0.9091)) +(: cnet_isa_4d352e1d07 (IsA obligate_anaerobe anaerobe) (STV 1.0 0.9091)) +(: cnet_isa_067a428882 (IsA obligation written_agreement) (STV 1.0 0.9091)) +(: cnet_isa_5fa4765025 (IsA obligation personal_relation) (STV 1.0 0.9091)) +(: cnet_isa_6561ecadad (IsA obligation state) (STV 1.0 0.9091)) +(: cnet_isa_1aafae64f3 (IsA obliger benefactor) (STV 1.0 0.9091)) +(: cnet_isa_16a6d7406d (IsA oblique case) (STV 1.0 0.9091)) +(: cnet_isa_19679fdf66 (IsA oblique_angle angle) (STV 1.0 0.9091)) +(: cnet_isa_5732b8e4cb (IsA oblique_bandage bandage) (STV 1.0 0.9091)) +(: cnet_isa_94a98e294c (IsA oblique_triangle triangle) (STV 1.0 0.9091)) +(: cnet_isa_6beaef5f8d (IsA oblique_vein_of_left_atrium vein) (STV 1.0 0.9091)) +(: cnet_isa_58019b1ac4 (IsA obliqueness spatial_property) (STV 1.0 0.9091)) +(: cnet_isa_4716322b77 (IsA obliterator eliminator) (STV 1.0 0.9091)) +(: cnet_isa_553cd3fbf5 (IsA oblivion obscurity) (STV 1.0 0.9091)) +(: cnet_isa_d6f5560103 (IsA obliviousness forgetfulness) (STV 1.0 0.9091)) +(: cnet_isa_e5b0183037 (IsA oblong plane_figure) (STV 1.0 0.9091)) +(: cnet_isa_abf7e7fb43 (IsA oblong_leaf simple_leaf) (STV 1.0 0.9091)) +(: cnet_isa_563a43485c (IsA obloquy shame) (STV 1.0 0.9091)) +(: cnet_isa_7d9ecadf08 (IsA oboe instrument) (STV 1.0 0.9091)) +(: cnet_isa_c634bd891e (IsA oboe music_instrument) (STV 1.0 0.9524)) +(: cnet_isa_5849c2aa52 (IsA oboe woodwind) (STV 1.0 0.9091)) +(: cnet_isa_95c8ad175e (IsA oboe double_reed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_eccc31b932 (IsA oboe_d_amore oboe) (STV 1.0 0.9091)) +(: cnet_isa_d6f3ae6e8d (IsA oboe_da_caccia oboe) (STV 1.0 0.9091)) +(: cnet_isa_6d8acae6ca (IsA oboist musician) (STV 1.0 0.9091)) +(: cnet_isa_a25530bf30 (IsA obolus weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_16730111e6 (IsA obovate_leaf simple_leaf) (STV 1.0 0.9091)) +(: cnet_isa_0d94036f94 (IsA obscenity indecency) (STV 1.0 0.9091)) +(: cnet_isa_0f40f87b42 (IsA obscenity profanity) (STV 1.0 0.9091)) +(: cnet_isa_6ead25f47e (IsA obscurantism deception) (STV 1.0 0.9091)) +(: cnet_isa_9c4f60d3a6 (IsA obscurantism policy) (STV 1.0 0.9091)) +(: cnet_isa_1a5ce4bb89 (IsA obscurantist deceiver) (STV 1.0 0.9091)) +(: cnet_isa_31dfa5e6bd (IsA obscureness incomprehensibility) (STV 1.0 0.9091)) +(: cnet_isa_13f884f9da (IsA obscurity semidarkness) (STV 1.0 0.9091)) +(: cnet_isa_6627c4d721 (IsA obscurity standing) (STV 1.0 0.9091)) +(: cnet_isa_38c3ed215e (IsA obsequiousness submissiveness) (STV 1.0 0.9091)) +(: cnet_isa_4acda597c9 (IsA observation look) (STV 1.0 0.9091)) +(: cnet_isa_778e37aa94 (IsA observation measurement) (STV 1.0 0.9091)) +(: cnet_isa_0189588b1b (IsA observation fact) (STV 1.0 0.9091)) +(: cnet_isa_ada0d2ce78 (IsA observation remark) (STV 1.0 0.9091)) +(: cnet_isa_5577087a3c (IsA observation_dome lookout) (STV 1.0 0.9091)) +(: cnet_isa_6f5c4d61ce (IsA observation_station station) (STV 1.0 0.9091)) +(: cnet_isa_85bfb87c28 (IsA observatory building) (STV 1.0 0.9091)) +(: cnet_isa_b9ca135c54 (IsA observed_fire fire) (STV 1.0 0.9091)) +(: cnet_isa_4c7946bed8 (IsA observer_s_meridian meridian) (STV 1.0 0.9091)) +(: cnet_isa_dc1b496635 (IsA observer expert) (STV 1.0 0.9091)) +(: cnet_isa_86e1d16585 (IsA obsession preoccupation) (STV 1.0 0.9091)) +(: cnet_isa_427c2dbf1b (IsA obsessive neurotic) (STV 1.0 0.9091)) +(: cnet_isa_8c6a17b5e9 (IsA obsessive_compulsive neurotic) (STV 1.0 0.9091)) +(: cnet_isa_bedaf8708d (IsA obsessive_compulsive_disorder mental_illness) (STV 1.0 0.9339)) +(: cnet_isa_0715ae4df4 (IsA obsessive_compulsive_disorder anxiety_disorder) (STV 1.0 0.9091)) +(: cnet_isa_6dc8269f6b (IsA obsessive_compulsive_personality personality) (STV 1.0 0.9091)) +(: cnet_isa_ce772f2542 (IsA obsessiveness compulsiveness) (STV 1.0 0.9091)) +(: cnet_isa_a0da0565b5 (IsA obsidian volcanic_glass) (STV 1.0 0.9091)) +(: cnet_isa_6e75575860 (IsA obsolescence degeneration) (STV 1.0 0.9091)) +(: cnet_isa_d7e062ca01 (IsA obsoleteness oldness) (STV 1.0 0.9091)) +(: cnet_isa_6e0732feda (IsA obstacle obstruction) (STV 1.0 0.9091)) +(: cnet_isa_09b9fd86e5 (IsA obstacle hindrance) (STV 1.0 0.9091)) +(: cnet_isa_86fe59c7fe (IsA obstacle_race footrace) (STV 1.0 0.9091)) +(: cnet_isa_07a83d6228 (IsA obstetrical_toad frog) (STV 1.0 0.9091)) +(: cnet_isa_fc75ccdcbc (IsA obstetrician specialist) (STV 1.0 0.9091)) +(: cnet_isa_1dc57e2127 (IsA obstetric medicine) (STV 1.0 0.9091)) +(: cnet_isa_7bcab80e30 (IsA obstipation constipation) (STV 1.0 0.9091)) +(: cnet_isa_0ce265087c (IsA obstreperousness defiance) (STV 1.0 0.9091)) +(: cnet_isa_f85df66081 (IsA obstruction hindrance) (STV 1.0 0.9091)) +(: cnet_isa_a07ac102ad (IsA obstruction maneuver) (STV 1.0 0.9091)) +(: cnet_isa_7b09103561 (IsA obstruction structure) (STV 1.0 0.9091)) +(: cnet_isa_4b6b3f9a1d (IsA obstruction physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_d8074e6de1 (IsA obstruction_of_justice obstruction) (STV 1.0 0.9091)) +(: cnet_isa_df97022111 (IsA obstructionism resistance) (STV 1.0 0.9091)) +(: cnet_isa_d977e3092d (IsA obstructionist disputant) (STV 1.0 0.9091)) +(: cnet_isa_8667ec9c9c (IsA obstructive_shock shock) (STV 1.0 0.9091)) +(: cnet_isa_1ff74a6761 (IsA obstruent consonant) (STV 1.0 0.9091)) +(: cnet_isa_bba5e2de98 (IsA obtainment acquiring) (STV 1.0 0.9091)) +(: cnet_isa_b79e961e0e (IsA obtrusiveness conspicuousness) (STV 1.0 0.9091)) +(: cnet_isa_6ed17a63ad (IsA obturator prosthesis) (STV 1.0 0.9091)) +(: cnet_isa_0f66167672 (IsA obturator_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_b838cc6ef4 (IsA obtuse_angle oblique_angle) (STV 1.0 0.9091)) +(: cnet_isa_6e714c8ea3 (IsA obtuse_leaf simple_leaf) (STV 1.0 0.9091)) +(: cnet_isa_255791b773 (IsA obtuse_triangle triangle) (STV 1.0 0.9091)) +(: cnet_isa_6f21a57936 (IsA obtuseness dullness) (STV 1.0 0.9091)) +(: cnet_isa_1aaa0c4e8c (IsA obverse side) (STV 1.0 0.9091)) +(: cnet_isa_0d897021e7 (IsA obverse option) (STV 1.0 0.9091)) +(: cnet_isa_d4048f6137 (IsA obviation prevention) (STV 1.0 0.9091)) +(: cnet_isa_0d0bd5be33 (IsA obviousness conspicuousness) (STV 1.0 0.9091)) +(: cnet_isa_2add09b46e (IsA oca oxalis) (STV 1.0 0.9091)) +(: cnet_isa_aecf9ca37b (IsA ocarina wind_instrument) (STV 1.0 0.9091)) +(: cnet_isa_1dd8dc715a (IsA occam_s_razor principle) (STV 1.0 0.9091)) +(: cnet_isa_3a0ec3b952 (IsA occasion reason) (STV 1.0 0.9091)) +(: cnet_isa_77ef9bd9b2 (IsA occasion opportunity) (STV 1.0 0.9091)) +(: cnet_isa_676fed6712 (IsA occasion time) (STV 1.0 0.9091)) +(: cnet_isa_e4c65fc757 (IsA occasion business) (STV 1.0 0.9091)) +(: cnet_isa_f06af4f92f (IsA occidental artificial_language) (STV 1.0 0.9091)) +(: cnet_isa_5af30b8f9a (IsA occidental inhabitant) (STV 1.0 0.9091)) +(: cnet_isa_d13f2e3b58 (IsA occidentalism quality) (STV 1.0 0.9091)) +(: cnet_isa_524b302d4b (IsA occidentalism humanistic_discipline) (STV 1.0 0.9091)) +(: cnet_isa_98e7c79421 (IsA occipital_bone membrane_bone) (STV 1.0 0.9091)) +(: cnet_isa_20b0c411a6 (IsA occipital_gyrus gyrus) (STV 1.0 0.9091)) +(: cnet_isa_5233bee9ee (IsA occipital_lobe lobe) (STV 1.0 0.9091)) +(: cnet_isa_ba813724e0 (IsA occipital_protuberance bulge) (STV 1.0 0.9091)) +(: cnet_isa_19be6c7c6b (IsA occipital_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_274edd488d (IsA occipitomastoid_suture suture) (STV 1.0 0.9091)) +(: cnet_isa_5003d92136 (IsA occiput bone) (STV 1.0 0.9091)) +(: cnet_isa_65d60dc852 (IsA occluded_front front) (STV 1.0 0.9091)) +(: cnet_isa_06a2ccf50e (IsA occlusion position) (STV 1.0 0.9091)) +(: cnet_isa_c4c0e8afc4 (IsA occlusion attack) (STV 1.0 0.9091)) +(: cnet_isa_042016bbea (IsA occult practice) (STV 1.0 0.9091)) +(: cnet_isa_c5030561f7 (IsA occultism discipline) (STV 1.0 0.9091)) +(: cnet_isa_e1aaf5dd35 (IsA occultism supernaturalism) (STV 1.0 0.9091)) +(: cnet_isa_1aa79a63ea (IsA occultist person) (STV 1.0 0.9091)) +(: cnet_isa_7244545b9f (IsA occupancy residency) (STV 1.0 0.9091)) +(: cnet_isa_61766d26f0 (IsA occupancy_rate percentage) (STV 1.0 0.9091)) +(: cnet_isa_d709d489d8 (IsA occupation acquiring) (STV 1.0 0.9091)) +(: cnet_isa_8d694f6f59 (IsA occupation activity) (STV 1.0 0.9091)) +(: cnet_isa_4c4e398b26 (IsA occupation social_control) (STV 1.0 0.9091)) +(: cnet_isa_004f13c27f (IsA occupation time_period) (STV 1.0 0.9091)) +(: cnet_isa_e48f0535b9 (IsA occupation_license license) (STV 1.0 0.9091)) +(: cnet_isa_7248e7f435 (IsA occupational_disease disease) (STV 1.0 0.9091)) +(: cnet_isa_88b5026b73 (IsA occupational_group body) (STV 1.0 0.9091)) +(: cnet_isa_9594db726c (IsA occupational_hazard hazard) (STV 1.0 0.9091)) +(: cnet_isa_02b5f66656 (IsA occupational_safety_and_health_act legislation) (STV 1.0 0.9091)) +(: cnet_isa_6b3430d0a0 (IsA occupational_safety_and_health_administration agency) (STV 1.0 0.9091)) +(: cnet_isa_17f5ec21e9 (IsA occupational_therapy therapy) (STV 1.0 0.9091)) +(: cnet_isa_55eadb676f (IsA occupier serviceman) (STV 1.0 0.9091)) +(: cnet_isa_3319d206a7 (IsA occurrence presence) (STV 1.0 0.9091)) +(: cnet_isa_1b33113156 (IsA ocd disease) (STV 1.0 0.9091)) +(: cnet_isa_acaa54ea7d (IsA ocd life_long_psychological_anxiety_disorder) (STV 1.0 0.9091)) +(: cnet_isa_03cd22d450 (IsA ocean body_of_water) (STV 1.0 0.9524)) +(: cnet_isa_0f7c1e2a6d (IsA ocean great_mass_of_water) (STV 1.0 0.9339)) +(: cnet_isa_278d551048 (IsA ocean large_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_90e8cb4034 (IsA ocean_current current) (STV 1.0 0.9091)) +(: cnet_isa_f1b13b53b9 (IsA ocean_floor bed) (STV 1.0 0.9091)) +(: cnet_isa_639a2eb650 (IsA ocean_pout eelpout) (STV 1.0 0.9091)) +(: cnet_isa_88c71bd855 (IsA ocean_sunfish plectognath) (STV 1.0 0.9091)) +(: cnet_isa_9d077a60f3 (IsA ocean_trip water_travel) (STV 1.0 0.9091)) +(: cnet_isa_8a98ee06f7 (IsA oceanfront geological_formation) (STV 1.0 0.9091)) +(: cnet_isa_39ee3a68dd (IsA oceanic malayo_polynesian) (STV 1.0 0.9091)) +(: cnet_isa_00135ac124 (IsA oceanid sea_nymph) (STV 1.0 0.9091)) +(: cnet_isa_16e9cf1000 (IsA oceanite bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_d9598e2206 (IsA oceanographer scientist) (STV 1.0 0.9091)) +(: cnet_isa_aeab898ce1 (IsA oceanography earth_science) (STV 1.0 0.9091)) +(: cnet_isa_891215f943 (IsA ocellated_turkey gallinaceous_bird) (STV 1.0 0.9091)) +(: cnet_isa_a5ba615dcb (IsA ocelot wildcat) (STV 1.0 0.9091)) +(: cnet_isa_64aaac825c (IsA ocher orange_yellow) (STV 1.0 0.9091)) +(: cnet_isa_46047705b4 (IsA ocher earth_color) (STV 1.0 0.9091)) +(: cnet_isa_81c6a8abb3 (IsA ochlocracy political_system) (STV 1.0 0.9091)) +(: cnet_isa_11e321e9b5 (IsA ochna dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2679155794 (IsA ochnaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_1fbd88c67f (IsA ochotona mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_4a6f917ea2 (IsA ochotonidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_d76038c336 (IsA ochroma dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c4d6782266 (IsA ochronosis symptom) (STV 1.0 0.9091)) +(: cnet_isa_5da66f533c (IsA ocimum asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7b8c1a48fe (IsA oconee_bell shortia) (STV 1.0 0.9091)) +(: cnet_isa_641b55a139 (IsA ocotillo candlewood) (STV 1.0 0.9091)) +(: cnet_isa_3fb0fdfb8c (IsA octagon figure) (STV 1.0 0.9091)) +(: cnet_isa_20e58f6929 (IsA octagon shape) (STV 1.0 0.9091)) +(: cnet_isa_4270e19a51 (IsA octagon polygon) (STV 1.0 0.9091)) +(: cnet_isa_aaa50e970e (IsA octahedron polyhedron) (STV 1.0 0.9091)) +(: cnet_isa_a88598cd05 (IsA octal_digit digit) (STV 1.0 0.9091)) +(: cnet_isa_cfa08be27f (IsA octal_notation mathematical_notation) (STV 1.0 0.9091)) +(: cnet_isa_1c68c04221 (IsA octal_numeration_system positional_notation) (STV 1.0 0.9091)) +(: cnet_isa_e0530a8ed1 (IsA octameter verse) (STV 1.0 0.9091)) +(: cnet_isa_e483a42587 (IsA octane hydrocarbon) (STV 1.0 0.9091)) +(: cnet_isa_7437f9b7d9 (IsA octane_number measure) (STV 1.0 0.9091)) +(: cnet_isa_5788be8a79 (IsA octant measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_c726cb1839 (IsA octave interval) (STV 1.0 0.9091)) +(: cnet_isa_e1adfcbcc8 (IsA octave stanza) (STV 1.0 0.9091)) +(: cnet_isa_b9f4d5219d (IsA octave religious_festival) (STV 1.0 0.9091)) +(: cnet_isa_6c081340f5 (IsA octavo size) (STV 1.0 0.9091)) +(: cnet_isa_138f4ed4f4 (IsA octet musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_b5dd431531 (IsA octet gathering) (STV 1.0 0.9091)) +(: cnet_isa_6eee3b0359 (IsA octet musical_organization) (STV 1.0 0.9091)) +(: cnet_isa_a57c3e6926 (IsA octet set) (STV 1.0 0.9091)) +(: cnet_isa_6f7c35c9e3 (IsA octillion large_integer) (STV 1.0 0.9091)) +(: cnet_isa_2c8efd5a60 (IsA october gregorian_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_06cb3ffc07 (IsA octogenarian oldster) (STV 1.0 0.9091)) +(: cnet_isa_828c247830 (IsA octogon closed_shape_with_eight_side) (STV 1.0 0.9091)) +(: cnet_isa_23fb227acc (IsA octopod cephalopod) (STV 1.0 0.9091)) +(: cnet_isa_fe25c336f9 (IsA octopoda animal_order) (STV 1.0 0.9091)) +(: cnet_isa_64bfa1d966 (IsA octopodidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_3828311980 (IsA octopus octopod) (STV 1.0 0.9091)) +(: cnet_isa_1c78f15406 (IsA octopus seafood) (STV 1.0 0.9091)) +(: cnet_isa_13d017aa29 (IsA octoroon mixed_blood) (STV 1.0 0.9091)) +(: cnet_isa_013acbf230 (IsA octosyllable verse) (STV 1.0 0.9091)) +(: cnet_isa_31b67675ed (IsA octroi duty) (STV 1.0 0.9091)) +(: cnet_isa_678b2e5be6 (IsA ocular_muscle muscle) (STV 1.0 0.9091)) +(: cnet_isa_6024fde2a4 (IsA oculism trade) (STV 1.0 0.9091)) +(: cnet_isa_e9c472ae98 (IsA oculomotor cranial_nerve) (STV 1.0 0.9091)) +(: cnet_isa_f11c303fde (IsA oculopharyngeal_muscular_dystrophy muscular_dystrophy) (STV 1.0 0.9091)) +(: cnet_isa_edb3154cda (IsA oculus_dexter eye) (STV 1.0 0.9091)) +(: cnet_isa_0c5c9ae898 (IsA oculus_sinister eye) (STV 1.0 0.9091)) +(: cnet_isa_7e0d2c5d02 (IsA ocyurus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_a37e639c30 (IsA odalisque concubine) (STV 1.0 0.9091)) +(: cnet_isa_5982d63747 (IsA odd_leg_caliper caliper) (STV 1.0 0.9091)) +(: cnet_isa_f865163695 (IsA odd_pinnate_leaf pinnate_leaf) (STV 1.0 0.9091)) +(: cnet_isa_67732da270 (IsA odd_toed_ungulate ungulate) (STV 1.0 0.9091)) +(: cnet_isa_ea16b0c2cd (IsA oddity eccentricity) (STV 1.0 0.9091)) +(: cnet_isa_ee60b31295 (IsA oddity unfamiliarity) (STV 1.0 0.9091)) +(: cnet_isa_8e998cde05 (IsA oddness parity) (STV 1.0 0.9091)) +(: cnet_isa_a598cdd055 (IsA odd likelihood) (STV 1.0 0.9091)) +(: cnet_isa_6f033cddb9 (IsA odd ratio) (STV 1.0 0.9091)) +(: cnet_isa_58d6e1f07c (IsA odd_and_end assortment) (STV 1.0 0.9091)) +(: cnet_isa_3faeeac592 (IsA odd_maker gambler) (STV 1.0 0.9091)) +(: cnet_isa_ff64f35651 (IsA ode lyric) (STV 1.0 0.9091)) +(: cnet_isa_ae65d15c93 (IsA odist poet) (STV 1.0 0.9091)) +(: cnet_isa_dd0d95974e (IsA odium shame) (STV 1.0 0.9091)) +(: cnet_isa_18c4730806 (IsA odobenidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_1dc0664c6d (IsA odobenus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_c46fa57103 (IsA odocoileus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_ceb1605678 (IsA odometer meter) (STV 1.0 0.9091)) +(: cnet_isa_13c34e427e (IsA odonata animal_order) (STV 1.0 0.9091)) +(: cnet_isa_8a4ca524a7 (IsA odonate insect) (STV 1.0 0.9091)) +(: cnet_isa_a0d45865a8 (IsA odontoceti animal_order) (STV 1.0 0.9091)) +(: cnet_isa_3ca864d7ed (IsA odontoglossum orchid) (STV 1.0 0.9091)) +(: cnet_isa_d99ee91bfe (IsA odontoid_process process) (STV 1.0 0.9091)) +(: cnet_isa_663ca64b33 (IsA odontophorus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_4a67819cd1 (IsA odynophagia pain) (STV 1.0 0.9091)) +(: cnet_isa_0613af4031 (IsA odyssey journey) (STV 1.0 0.9091)) +(: cnet_isa_76c4bab059 (IsA oecanthus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_1802393188 (IsA oecumenism movement) (STV 1.0 0.9091)) +(: cnet_isa_d30ede75dc (IsA oedipus_complex complex) (STV 1.0 0.9091)) +(: cnet_isa_c24666cb31 (IsA oedogoniaceae protoctist_family) (STV 1.0 0.9091)) +(: cnet_isa_e72eb54543 (IsA oedogoniale protoctist_order) (STV 1.0 0.9091)) +(: cnet_isa_e1f79c8e77 (IsA oedogonium protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_eec5347a28 (IsA oeil_de_boeuf window) (STV 1.0 0.9091)) +(: cnet_isa_e6ca8fbcfd (IsA oenanthe bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_5d88914413 (IsA oenanthe rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0fbca0e9fd (IsA oenomel beverage) (STV 1.0 0.9091)) +(: cnet_isa_e25ea239a4 (IsA oenophile connoisseur) (STV 1.0 0.9091)) +(: cnet_isa_3a29f5dc24 (IsA oenothera dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9bfbf642a9 (IsA oersted field_strength_unit) (STV 1.0 0.9091)) +(: cnet_isa_c444ac3455 (IsA oestridae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_7a406bef1d (IsA oestrus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_6496613bc8 (IsA oeuvre end_product) (STV 1.0 0.9091)) +(: cnet_isa_a76318c78a (IsA off_day day) (STV 1.0 0.9091)) +(: cnet_isa_179a86cd50 (IsA off_line_equipment electronic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_9341f628ff (IsA off_season season) (STV 1.0 0.9091)) +(: cnet_isa_eee6f81f27 (IsA off_year year) (STV 1.0 0.9091)) +(: cnet_isa_d275abbe20 (IsA offal variety_meat) (STV 1.0 0.9091)) +(: cnet_isa_d7cfc2a857 (IsA offense operation) (STV 1.0 0.9091)) +(: cnet_isa_09ecc495c1 (IsA offense team) (STV 1.0 0.9091)) +(: cnet_isa_249a56fce8 (IsA offensiveness unpleasantness) (STV 1.0 0.9091)) +(: cnet_isa_c3ecd6bf82 (IsA offer message) (STV 1.0 0.9091)) +(: cnet_isa_220257b0c0 (IsA offer speech_act) (STV 1.0 0.9091)) +(: cnet_isa_86786450bd (IsA offer_price asking_price) (STV 1.0 0.9091)) +(: cnet_isa_49dca9f268 (IsA offerer benefactor) (STV 1.0 0.9091)) +(: cnet_isa_13231c09e5 (IsA offering contribution) (STV 1.0 0.9091)) +(: cnet_isa_0b5d36d875 (IsA offertory oblation) (STV 1.0 0.9091)) +(: cnet_isa_f9a5d22728 (IsA offertory offering) (STV 1.0 0.9091)) +(: cnet_isa_9f785e19c4 (IsA office rite) (STV 1.0 0.9091)) +(: cnet_isa_43fe74739b (IsA office place_of_business) (STV 1.0 0.9091)) +(: cnet_isa_bb6e563a79 (IsA office state) (STV 1.0 0.9091)) +(: cnet_isa_1bd1591bb4 (IsA office staff) (STV 1.0 0.9091)) +(: cnet_isa_5629b2d04d (IsA office_bearer incumbent) (STV 1.0 0.9091)) +(: cnet_isa_67e1539dfc (IsA office_boy employee) (STV 1.0 0.9091)) +(: cnet_isa_aea32a4d16 (IsA office_building building) (STV 1.0 0.9091)) +(: cnet_isa_6b26c84dde (IsA office_furniture furniture) (STV 1.0 0.9091)) +(: cnet_isa_d6c357e88b (IsA office_of_dead office) (STV 1.0 0.9091)) +(: cnet_isa_aec64cf009 (IsA office_of_inspector_general independent_agency) (STV 1.0 0.9091)) +(: cnet_isa_d9c984d044 (IsA office_of_intelligence_support agency) (STV 1.0 0.9091)) +(: cnet_isa_0fb841c95b (IsA office_of_management_and_budget executive_agency) (STV 1.0 0.9091)) +(: cnet_isa_263ea257c5 (IsA office_of_naval_intelligence agency) (STV 1.0 0.9091)) +(: cnet_isa_e3b1f96d68 (IsA officeholder holder) (STV 1.0 0.9091)) +(: cnet_isa_952f690273 (IsA officeholder official) (STV 1.0 0.9091)) +(: cnet_isa_0566c5cf03 (IsA officer_s_mess mess) (STV 1.0 0.9091)) +(: cnet_isa_bfdf2a11dd (IsA officer mariner) (STV 1.0 0.9091)) +(: cnet_isa_4e08e292c5 (IsA official adjudicator) (STV 1.0 0.9091)) +(: cnet_isa_9941919570 (IsA official skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_400b5d8430 (IsA official_immunity exemption) (STV 1.0 0.9091)) +(: cnet_isa_0bc9d863cc (IsA officialese expressive_style) (STV 1.0 0.9091)) +(: cnet_isa_fa6414f4d7 (IsA officiant clergyman) (STV 1.0 0.9091)) +(: cnet_isa_215474e79c (IsA officiation performance) (STV 1.0 0.9091)) +(: cnet_isa_3209e77b70 (IsA offing body_of_water) (STV 1.0 0.9091)) +(: cnet_isa_9bfe5a0947 (IsA offing future) (STV 1.0 0.9091)) +(: cnet_isa_d39c4c57df (IsA offprint article) (STV 1.0 0.9091)) +(: cnet_isa_ebfb78c428 (IsA offset printing) (STV 1.0 0.9091)) +(: cnet_isa_e7b52fe2bb (IsA offset_lithography lithography) (STV 1.0 0.9091)) +(: cnet_isa_a5434d38f8 (IsA offside mistake) (STV 1.0 0.9091)) +(: cnet_isa_50b7fbc3ef (IsA offspring consequence) (STV 1.0 0.9091)) +(: cnet_isa_611910ac21 (IsA offspring relative) (STV 1.0 0.9091)) +(: cnet_isa_67e079c3ec (IsA ofo siouan) (STV 1.0 0.9091)) +(: cnet_isa_d458baf9bf (IsA ogalala teton_dakota) (STV 1.0 0.9091)) +(: cnet_isa_f231bc8457 (IsA ogcocephalidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_f14a6bea44 (IsA ogee_arch pointed_arch) (STV 1.0 0.9091)) +(: cnet_isa_0f32fc6d6b (IsA oglala siouan) (STV 1.0 0.9091)) +(: cnet_isa_f518f4bc86 (IsA ogler spectator) (STV 1.0 0.9091)) +(: cnet_isa_5731255556 (IsA ogre large_cruel_man) (STV 1.0 0.9091)) +(: cnet_isa_44c3ebf745 (IsA ogre giant) (STV 1.0 0.9091)) +(: cnet_isa_4090eae1cb (IsA ogress ogre) (STV 1.0 0.9091)) +(: cnet_isa_f7d2bfad8d (IsA ohio state) (STV 1.0 0.9339)) +(: cnet_isa_87f9d25057 (IsA ohio_buckeye horse_chestnut) (STV 1.0 0.9091)) +(: cnet_isa_097b78b3bb (IsA ohio_goldenrod goldenrod) (STV 1.0 0.9091)) +(: cnet_isa_28932f1fce (IsA ohm_s_law law) (STV 1.0 0.9091)) +(: cnet_isa_ee46d9e794 (IsA ohm measurement) (STV 1.0 0.9091)) +(: cnet_isa_af9b4d203f (IsA ohm unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_213100eb49 (IsA ohm resistance_unit) (STV 1.0 0.9091)) +(: cnet_isa_18b8727e44 (IsA ohmage electric_resistance) (STV 1.0 0.9091)) +(: cnet_isa_fc4216759b (IsA ohmmeter meter) (STV 1.0 0.9091)) +(: cnet_isa_0f405514e0 (IsA oil fluid) (STV 1.0 0.9091)) +(: cnet_isa_f4e495b541 (IsA oil oil_paint) (STV 1.0 0.9091)) +(: cnet_isa_dfda5bfb59 (IsA oil lipid) (STV 1.0 0.9091)) +(: cnet_isa_977a1eb4c7 (IsA oil_beetle blister_beetle) (STV 1.0 0.9091)) +(: cnet_isa_2877c12922 (IsA oil_burner furnace) (STV 1.0 0.9091)) +(: cnet_isa_bdd21f01b4 (IsA oil_cake feed) (STV 1.0 0.9091)) +(: cnet_isa_ede5a0e163 (IsA oil_cartel trust) (STV 1.0 0.9091)) +(: cnet_isa_ba316c5a67 (IsA oil_change car_care) (STV 1.0 0.9091)) +(: cnet_isa_2461bd6580 (IsA oil_company company) (STV 1.0 0.9091)) +(: cnet_isa_4973cd394d (IsA oil_conservation conservation) (STV 1.0 0.9091)) +(: cnet_isa_0f03501c87 (IsA oil_filter filter) (STV 1.0 0.9091)) +(: cnet_isa_7d48ac7f01 (IsA oil_future future) (STV 1.0 0.9091)) +(: cnet_isa_ab0218da8a (IsA oil_gland exocrine_gland) (STV 1.0 0.9091)) +(: cnet_isa_614cf6b9e2 (IsA oil_hardened_steel quenched_steel) (STV 1.0 0.9091)) +(: cnet_isa_f58baa24ef (IsA oil_heater heater) (STV 1.0 0.9091)) +(: cnet_isa_17a855936a (IsA oil_industry industry) (STV 1.0 0.9091)) +(: cnet_isa_527b77fdb5 (IsA oil_industry_analyst industry_analyst) (STV 1.0 0.9091)) +(: cnet_isa_2347f99c05 (IsA oil_lamp lamp) (STV 1.0 0.9091)) +(: cnet_isa_70ee65740f (IsA oil_meal oil_cake) (STV 1.0 0.9091)) +(: cnet_isa_f12594e7ea (IsA oil_paint paint) (STV 1.0 0.9091)) +(: cnet_isa_6bc3d86c62 (IsA oil_painter painter) (STV 1.0 0.9091)) +(: cnet_isa_8cbf60db4f (IsA oil_painting painting) (STV 1.0 0.9091)) +(: cnet_isa_80ff778750 (IsA oil_palm feather_palm) (STV 1.0 0.9091)) +(: cnet_isa_2f2602d101 (IsA oil_pipeline pipeline) (STV 1.0 0.9091)) +(: cnet_isa_b4728721d7 (IsA oil_pressure pressure) (STV 1.0 0.9091)) +(: cnet_isa_476a3cfcd6 (IsA oil_pump pump) (STV 1.0 0.9091)) +(: cnet_isa_d46d332f3b (IsA oil_refinery refinery) (STV 1.0 0.9091)) +(: cnet_isa_c257a516f8 (IsA oil_shale shale) (STV 1.0 0.9091)) +(: cnet_isa_b61c492460 (IsA oil_slick slick) (STV 1.0 0.9091)) +(: cnet_isa_040b50769c (IsA oil_stain stain) (STV 1.0 0.9091)) +(: cnet_isa_ed0ee5a668 (IsA oil_tanker cargo_ship) (STV 1.0 0.9091)) +(: cnet_isa_38b8f883ca (IsA oil_tycoon baron) (STV 1.0 0.9091)) +(: cnet_isa_548b218343 (IsA oil_water_interface interface) (STV 1.0 0.9091)) +(: cnet_isa_30b08b3e29 (IsA oil_well well) (STV 1.0 0.9091)) +(: cnet_isa_ea75b78d8a (IsA oilbird caprimulgiform_bird) (STV 1.0 0.9091)) +(: cnet_isa_854f2ec081 (IsA oilcan can) (STV 1.0 0.9091)) +(: cnet_isa_411da97307 (IsA oilcloth fabric) (STV 1.0 0.9091)) +(: cnet_isa_343134f6f5 (IsA oiler worker) (STV 1.0 0.9091)) +(: cnet_isa_05b72e352e (IsA oilfield field) (STV 1.0 0.9091)) +(: cnet_isa_0f04e3437d (IsA oilfish gempylid) (STV 1.0 0.9091)) +(: cnet_isa_c99a57db2c (IsA oilman businessman) (STV 1.0 0.9091)) +(: cnet_isa_a84d4a1bf0 (IsA oilman skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_dc600465f1 (IsA oilpaper paper) (STV 1.0 0.9091)) +(: cnet_isa_182cb98c72 (IsA oilseed seed) (STV 1.0 0.9091)) +(: cnet_isa_5ddcc86777 (IsA oilskin macintosh) (STV 1.0 0.9091)) +(: cnet_isa_a64756a14c (IsA oilstone whetstone) (STV 1.0 0.9091)) +(: cnet_isa_f5525f3d4e (IsA ointment remedy) (STV 1.0 0.9091)) +(: cnet_isa_7da6b65a3e (IsA oireachta parliament) (STV 1.0 0.9091)) +(: cnet_isa_e086f212db (IsA ojibwa algonquian) (STV 1.0 0.9091)) +(: cnet_isa_5ae8b338b0 (IsA oka liquid_unit) (STV 1.0 0.9091)) +(: cnet_isa_fb64fd9020 (IsA oka weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_9973038c44 (IsA okapi giraffe) (STV 1.0 0.9091)) +(: cnet_isa_ee1e619f83 (IsA okapia mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_45adf1c946 (IsA oklahoman american) (STV 1.0 0.9091)) +(: cnet_isa_23c700a1e1 (IsA okra herb) (STV 1.0 0.9091)) +(: cnet_isa_13e815d5fa (IsA okra pod) (STV 1.0 0.9091)) +(: cnet_isa_fcd983787a (IsA oktoberfest festival) (STV 1.0 0.9091)) +(: cnet_isa_c0ce631dfb (IsA oktoberfest lager) (STV 1.0 0.9091)) +(: cnet_isa_092fb7577f (IsA ola writing_paper) (STV 1.0 0.9091)) +(: cnet_isa_534f3c967b (IsA old past) (STV 1.0 0.9091)) +(: cnet_isa_2cb5533f8e (IsA old_age time_of_life) (STV 1.0 0.9091)) +(: cnet_isa_1da12c7e25 (IsA old_age_insurance social_security) (STV 1.0 0.9091)) +(: cnet_isa_d03536cef4 (IsA old_age_pension pension) (STV 1.0 0.9091)) +(: cnet_isa_57998442e8 (IsA old_age_pensioner pensioner) (STV 1.0 0.9091)) +(: cnet_isa_426abcc777 (IsA old_bailey criminal_court) (STV 1.0 0.9091)) +(: cnet_isa_8a28d03f2c (IsA old_boy alumnus) (STV 1.0 0.9091)) +(: cnet_isa_4f02e613c2 (IsA old_boy man) (STV 1.0 0.9091)) +(: cnet_isa_7ea3b3d0f8 (IsA old_boy oldster) (STV 1.0 0.9091)) +(: cnet_isa_1c3f9f36fe (IsA old_boy_network network) (STV 1.0 0.9091)) +(: cnet_isa_e4706828c0 (IsA old_catholic christian) (STV 1.0 0.9091)) +(: cnet_isa_deff959c6f (IsA old_catholic_church catholic_church) (STV 1.0 0.9091)) +(: cnet_isa_d30a96769a (IsA old_church_slavonic slavic) (STV 1.0 0.9091)) +(: cnet_isa_f9d6ab55af (IsA old_country fatherland) (STV 1.0 0.9091)) +(: cnet_isa_aa29bf2b20 (IsA old_english english) (STV 1.0 0.9091)) +(: cnet_isa_d9d566e589 (IsA old_english_sheepdog shepherd_dog) (STV 1.0 0.9091)) +(: cnet_isa_163175b7ac (IsA old_fashioned cocktail) (STV 1.0 0.9091)) +(: cnet_isa_96b438b436 (IsA old_fashionedness oldness) (STV 1.0 0.9091)) +(: cnet_isa_ab21fca9d4 (IsA old_french french) (STV 1.0 0.9091)) +(: cnet_isa_fcd1aad84f (IsA old_frisian frisian) (STV 1.0 0.9091)) +(: cnet_isa_38d7ab914b (IsA old_gold yellow) (STV 1.0 0.9091)) +(: cnet_isa_a962d0ff1a (IsA old_growth forest) (STV 1.0 0.9091)) +(: cnet_isa_c7361e564a (IsA old_guard faction) (STV 1.0 0.9091)) +(: cnet_isa_cf49728ffa (IsA old_high_german german) (STV 1.0 0.9091)) +(: cnet_isa_dd8ac6cc19 (IsA old_icelandic old_norse) (STV 1.0 0.9091)) +(: cnet_isa_7becf4f01d (IsA old_irish irish) (STV 1.0 0.9091)) +(: cnet_isa_b0f5867e19 (IsA old_italian italian) (STV 1.0 0.9091)) +(: cnet_isa_505639fbae (IsA old_lady wife) (STV 1.0 0.9091)) +(: cnet_isa_1796405c04 (IsA old_latin latin) (STV 1.0 0.9091)) +(: cnet_isa_78e7fb7d61 (IsA old_maid card_game) (STV 1.0 0.9091)) +(: cnet_isa_b9d98684ce (IsA old_maid loser) (STV 1.0 0.9091)) +(: cnet_isa_982fd4f15b (IsA old_man boss) (STV 1.0 0.9091)) +(: cnet_isa_c790f390e7 (IsA old_man dysphemism) (STV 1.0 0.9091)) +(: cnet_isa_1d6a6f8173 (IsA old_man father) (STV 1.0 0.9091)) +(: cnet_isa_3f8fc1d9b9 (IsA old_man man) (STV 1.0 0.9091)) +(: cnet_isa_c6d4ffb485 (IsA old_man oldster) (STV 1.0 0.9091)) +(: cnet_isa_5e1f4a8ea2 (IsA old_man_of_mountain wildflower) (STV 1.0 0.9091)) +(: cnet_isa_b3e054949c (IsA old_man_of_wood bolete) (STV 1.0 0.9091)) +(: cnet_isa_a23f9fd27d (IsA old_master maestro) (STV 1.0 0.9091)) +(: cnet_isa_718ff7d402 (IsA old_master painter) (STV 1.0 0.9091)) +(: cnet_isa_38b375d8b2 (IsA old_norse germanic) (STV 1.0 0.9091)) +(: cnet_isa_65af5a16c9 (IsA old_prussian baltic) (STV 1.0 0.9091)) +(: cnet_isa_34faed9025 (IsA old_rose rose) (STV 1.0 0.9091)) +(: cnet_isa_84da891aa3 (IsA old_saxon low_german) (STV 1.0 0.9091)) +(: cnet_isa_0f8ef0523a (IsA old_school class) (STV 1.0 0.9091)) +(: cnet_isa_18eece4ea3 (IsA old_school_tie necktie) (STV 1.0 0.9091)) +(: cnet_isa_c4eca4d5ba (IsA old_squaw sea_duck) (STV 1.0 0.9091)) +(: cnet_isa_c3e87ad0bb (IsA old_style proportional_font) (STV 1.0 0.9091)) +(: cnet_isa_d798c8d717 (IsA old_testament will) (STV 1.0 0.9091)) +(: cnet_isa_77766f0d6b (IsA old_timer old_man) (STV 1.0 0.9091)) +(: cnet_isa_69b4798d24 (IsA old_wive_tale lore) (STV 1.0 0.9091)) +(: cnet_isa_21084ebfc8 (IsA old_woman oldster) (STV 1.0 0.9091)) +(: cnet_isa_80e61b95eb (IsA old_woman woman) (STV 1.0 0.9091)) +(: cnet_isa_5cc4ed34c1 (IsA old_world_beaver beaver) (STV 1.0 0.9091)) +(: cnet_isa_7d3eed242e (IsA old_world_buffalo bovid) (STV 1.0 0.9091)) +(: cnet_isa_9fdb9e6839 (IsA old_world_chat thrush) (STV 1.0 0.9091)) +(: cnet_isa_87dcc0164d (IsA old_world_coot coot) (STV 1.0 0.9091)) +(: cnet_isa_2011dcfb76 (IsA old_world_crayfish crayfish) (STV 1.0 0.9091)) +(: cnet_isa_9116baf290 (IsA old_world_flycatcher oscine) (STV 1.0 0.9091)) +(: cnet_isa_0cc65e1b4d (IsA old_world_hop_hornbeam hop_hornbeam) (STV 1.0 0.9091)) +(: cnet_isa_e7ada9edb3 (IsA old_world_jay jay) (STV 1.0 0.9091)) +(: cnet_isa_5bfee02672 (IsA old_world_least_weasel weasel) (STV 1.0 0.9091)) +(: cnet_isa_39601beb04 (IsA old_world_monkey monkey) (STV 1.0 0.9091)) +(: cnet_isa_1182e78874 (IsA old_world_oriole oscine) (STV 1.0 0.9091)) +(: cnet_isa_60f976f422 (IsA old_world_porcupine porcupine) (STV 1.0 0.9091)) +(: cnet_isa_a82ea3a1f4 (IsA old_world_quail quail) (STV 1.0 0.9091)) +(: cnet_isa_2d8532aea7 (IsA old_world_scop_owl scop_owl) (STV 1.0 0.9091)) +(: cnet_isa_2f0dcd5d24 (IsA old_world_vulture vulture) (STV 1.0 0.9091)) +(: cnet_isa_0df9d3a938 (IsA old_world_warbler warbler) (STV 1.0 0.9091)) +(: cnet_isa_2b82116dcc (IsA old_world_white_pelican pelican) (STV 1.0 0.9091)) +(: cnet_isa_f694d9d184 (IsA old_world_yew yew) (STV 1.0 0.9091)) +(: cnet_isa_8efa4b3e94 (IsA oldie song) (STV 1.0 0.9091)) +(: cnet_isa_3b83b7e510 (IsA oldness age) (STV 1.0 0.9091)) +(: cnet_isa_224f0d7f93 (IsA oldsmobile car) (STV 1.0 0.9454)) +(: cnet_isa_3e90e0b380 (IsA oldsmobile manufacturer_of_car) (STV 1.0 0.9091)) +(: cnet_isa_c34746eb76 (IsA oldster adult) (STV 1.0 0.9091)) +(: cnet_isa_8e7f344a7e (IsA olea dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_cffe94becb (IsA oleaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_002cc12a6d (IsA oleale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_8cbac06ce8 (IsA oleander poisonous_plant) (STV 1.0 0.9091)) +(: cnet_isa_13b495389e (IsA oleander_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_ff16547ba0 (IsA oleandra fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_78352ff60c (IsA oleandraceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_dc0a08e64a (IsA olearia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4b73f4829f (IsA oleaster shrub) (STV 1.0 0.9091)) +(: cnet_isa_8570c5f728 (IsA olecranon process) (STV 1.0 0.9091)) +(: cnet_isa_65b3eb4021 (IsA oleic_acid monounsaturated_fatty_acid) (STV 1.0 0.9091)) +(: cnet_isa_6cf813b9ce (IsA oleo_oil animal_oil) (STV 1.0 0.9091)) +(: cnet_isa_1ad5873376 (IsA oleoresin natural_resin) (STV 1.0 0.9091)) +(: cnet_isa_e6f9deb3de (IsA oleoresin_capiscum oleoresin) (STV 1.0 0.9091)) +(: cnet_isa_793f88a5bc (IsA olfactory_bulb neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_f88d0f49a6 (IsA olfactory_nerve cranial_nerve) (STV 1.0 0.9091)) +(: cnet_isa_33d27564eb (IsA olfactory_property property) (STV 1.0 0.9091)) +(: cnet_isa_19aa4fe813 (IsA olfersia fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_48a9a920b7 (IsA oligarch ruler) (STV 1.0 0.9091)) +(: cnet_isa_4caa3fceae (IsA oligarchy political_system) (STV 1.0 0.9091)) +(: cnet_isa_7a8ba2955c (IsA oligochaeta class) (STV 1.0 0.9091)) +(: cnet_isa_ebcab0819e (IsA oligochaete annelid) (STV 1.0 0.9091)) +(: cnet_isa_42da5d8418 (IsA oligodactyly genetic_disease) (STV 1.0 0.9091)) +(: cnet_isa_7588945ae7 (IsA oligodendrocyte neurogliacyte) (STV 1.0 0.9091)) +(: cnet_isa_d4599c4721 (IsA oligodendroglia neuroglia) (STV 1.0 0.9091)) +(: cnet_isa_6e328d47fc (IsA oligodontia genetic_disease) (STV 1.0 0.9091)) +(: cnet_isa_3a7e5f30ad (IsA oligomenorrhea menstruation) (STV 1.0 0.9091)) +(: cnet_isa_87fdaf8a8d (IsA oligonucleotide nucleotide) (STV 1.0 0.9091)) +(: cnet_isa_7fc70a082f (IsA oligoplite fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_4583dba3be (IsA oligopoly market) (STV 1.0 0.9091)) +(: cnet_isa_fad42d3065 (IsA oligoporus fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_beee26c5f2 (IsA oligoporus_leucospongia polypore) (STV 1.0 0.9091)) +(: cnet_isa_81f63a96ca (IsA oligosaccharide carbohydrate) (STV 1.0 0.9091)) +(: cnet_isa_afb8a51e99 (IsA oligospermia physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_9b0579082e (IsA oliguria micturition) (STV 1.0 0.9091)) +(: cnet_isa_68c09447d6 (IsA oliguria symptom) (STV 1.0 0.9091)) +(: cnet_isa_35e4ef6f27 (IsA olive chromatic_color) (STV 1.0 0.9091)) +(: cnet_isa_2dc6299ae6 (IsA olive drupe) (STV 1.0 0.9091)) +(: cnet_isa_0d362e10fd (IsA olive relish) (STV 1.0 0.9091)) +(: cnet_isa_e67e1e3a7e (IsA olive fruit) (STV 1.0 0.9091)) +(: cnet_isa_6da7a414fc (IsA olive olive_tree) (STV 1.0 0.9091)) +(: cnet_isa_a24fb60f5d (IsA olive wood) (STV 1.0 0.9091)) +(: cnet_isa_56185421b2 (IsA olive_brown brown) (STV 1.0 0.9091)) +(: cnet_isa_20c97e4641 (IsA olive_drab fabric) (STV 1.0 0.9091)) +(: cnet_isa_b932e90d98 (IsA olive_drab olive) (STV 1.0 0.9091)) +(: cnet_isa_2f9ee3d4b4 (IsA olive_drab military_uniform) (STV 1.0 0.9091)) +(: cnet_isa_dae75832f1 (IsA olive_green green) (STV 1.0 0.9091)) +(: cnet_isa_cd1424bc3e (IsA olive_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_9393dfcab8 (IsA olive_oil vegetable_oil) (STV 1.0 0.9091)) +(: cnet_isa_1cf26bc1b4 (IsA olive_tree fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_bbe744dfcd (IsA olive_tree_agaric agaric) (STV 1.0 0.9091)) +(: cnet_isa_26db53041f (IsA olivenite mineral) (STV 1.0 0.9091)) +(: cnet_isa_46ab4a04d0 (IsA olivine mineral) (STV 1.0 0.9091)) +(: cnet_isa_986463a442 (IsA olla_podrida stew) (STV 1.0 0.9091)) +(: cnet_isa_4d182ddd6d (IsA ollari central_dravidian) (STV 1.0 0.9091)) +(: cnet_isa_ac6144a569 (IsA olm salamander) (STV 1.0 0.9091)) +(: cnet_isa_fa0c82d3e3 (IsA olmec native_american) (STV 1.0 0.9091)) +(: cnet_isa_66810f69d7 (IsA ology discipline) (STV 1.0 0.9091)) +(: cnet_isa_b9c2b96898 (IsA olympiad time_period) (STV 1.0 0.9091)) +(: cnet_isa_d2d81a64e0 (IsA olympian athlete) (STV 1.0 0.9091)) +(: cnet_isa_232e3af7e2 (IsA olympian_game agon) (STV 1.0 0.9091)) +(: cnet_isa_423ff86b94 (IsA olympian_zeus statue) (STV 1.0 0.9091)) +(: cnet_isa_5a6207db7d (IsA olympic_game athletic_contest) (STV 1.0 0.9091)) +(: cnet_isa_be2c602e57 (IsA olympic_salamander salamander) (STV 1.0 0.9091)) +(: cnet_isa_338fd5666f (IsA omaha dhegiha) (STV 1.0 0.9091)) +(: cnet_isa_c3c0aebcd9 (IsA omani arabian) (STV 1.0 0.9091)) +(: cnet_isa_caceda0856 (IsA omani_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_9ae19a0aea (IsA ombu pokeweed) (STV 1.0 0.9091)) +(: cnet_isa_796ff1f352 (IsA ombudsman investigator) (STV 1.0 0.9091)) +(: cnet_isa_82d48aa286 (IsA omega letter) (STV 1.0 0.9091)) +(: cnet_isa_3e3a7ea10c (IsA omega ending) (STV 1.0 0.9091)) +(: cnet_isa_19c46df699 (IsA omega_3_fatty_acid polyunsaturated_fatty_acid) (STV 1.0 0.9091)) +(: cnet_isa_9dc3317799 (IsA omega_6_fatty_acid polyunsaturated_fatty_acid) (STV 1.0 0.9091)) +(: cnet_isa_61453fedfd (IsA omelet dish) (STV 1.0 0.9091)) +(: cnet_isa_d7e9c31b9f (IsA omelet_pan pan) (STV 1.0 0.9091)) +(: cnet_isa_f37a9eddc4 (IsA omen augury) (STV 1.0 0.9091)) +(: cnet_isa_9b4a0141d1 (IsA omentum peritoneum) (STV 1.0 0.9091)) +(: cnet_isa_5c24f97cb6 (IsA omerta code) (STV 1.0 0.9091)) +(: cnet_isa_5caa2f9280 (IsA omicron letter) (STV 1.0 0.9091)) +(: cnet_isa_ad0e9bbfa1 (IsA omission mistake) (STV 1.0 0.9091)) +(: cnet_isa_5c72b17263 (IsA omission disregard) (STV 1.0 0.9091)) +(: cnet_isa_c7cfdae03d (IsA omission linguistic_process) (STV 1.0 0.9091)) +(: cnet_isa_bb4729adae (IsA omission neglect) (STV 1.0 0.9091)) +(: cnet_isa_43361ea841 (IsA ommastrephe squid) (STV 1.0 0.9091)) +(: cnet_isa_2cf461e8fa (IsA ommatidium simple_eye) (STV 1.0 0.9091)) +(: cnet_isa_7d4571d276 (IsA omnibus anthology) (STV 1.0 0.9091)) +(: cnet_isa_6d3247e8ba (IsA omnidirectional_antenna antenna) (STV 1.0 0.9091)) +(: cnet_isa_a9c2856cb8 (IsA omnipotence state) (STV 1.0 0.9091)) +(: cnet_isa_697e13a02e (IsA omnirange navigational_system) (STV 1.0 0.9091)) +(: cnet_isa_c9b41e2421 (IsA omniscience state) (STV 1.0 0.9091)) +(: cnet_isa_745e7a4e0c (IsA omnivore animal) (STV 1.0 0.9091)) +(: cnet_isa_118c7bf434 (IsA omnivore eater) (STV 1.0 0.9091)) +(: cnet_isa_c082beab29 (IsA omomyid taxonomic_group) (STV 1.0 0.9091)) +(: cnet_isa_b91d0312f6 (IsA omophagia eating) (STV 1.0 0.9091)) +(: cnet_isa_6f5079e2bc (IsA omotic afroasiatic) (STV 1.0 0.9091)) +(: cnet_isa_7de775b06d (IsA omphaloskepsis self_absorption) (STV 1.0 0.9091)) +(: cnet_isa_92e58a28c1 (IsA omphalotus fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_214d693a96 (IsA on_earth living_people) (STV 1.0 0.9339)) +(: cnet_isa_2346f8d8b3 (IsA on_license liquor_license) (STV 1.0 0.9091)) +(: cnet_isa_e552b969f8 (IsA on_road travel) (STV 1.0 0.9091)) +(: cnet_isa_257bdbc74a (IsA onager wild_ass) (STV 1.0 0.9091)) +(: cnet_isa_7151aa241a (IsA onagraceae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_86780038b1 (IsA once_over examination) (STV 1.0 0.9091)) +(: cnet_isa_5edc164c41 (IsA onchocerciasis infestation) (STV 1.0 0.9091)) +(: cnet_isa_ececba6e7c (IsA oncidium orchid) (STV 1.0 0.9091)) +(: cnet_isa_d145d708ad (IsA oncogene gene) (STV 1.0 0.9091)) +(: cnet_isa_3c8f51bb2b (IsA oncologist specialist) (STV 1.0 0.9091)) +(: cnet_isa_7dfa9dc4d7 (IsA oncology medicine) (STV 1.0 0.9091)) +(: cnet_isa_c0e7255080 (IsA ondatra mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_d069b3a355 (IsA one number) (STV 1.0 0.9339)) +(: cnet_isa_88f2034f04 (IsA one unit) (STV 1.0 0.9091)) +(: cnet_isa_187508ad19 (IsA one digit) (STV 1.0 0.9091)) +(: cnet_isa_bde98c40bc (IsA one_and_one foul_shot) (STV 1.0 0.9091)) +(: cnet_isa_a774c0c6a3 (IsA one_apple object) (STV 1.0 0.9091)) +(: cnet_isa_dcb3695e50 (IsA one_basic_motivation_for_action selfishness) (STV 1.0 0.9091)) +(: cnet_isa_0f829bbec5 (IsA one_billionth common_fraction) (STV 1.0 0.9091)) +(: cnet_isa_2c6ef5dd1c (IsA one_book_of_bible number) (STV 1.0 0.9091)) +(: cnet_isa_2e5eace310 (IsA one_cliche turn_deaf_ear) (STV 1.0 0.9091)) +(: cnet_isa_796d692232 (IsA one_common_emotion loneliness) (STV 1.0 0.9091)) +(: cnet_isa_183644d179 (IsA one_dimensional_language programming_language) (STV 1.0 0.9091)) +(: cnet_isa_0ffcc7cc7d (IsA one_dimensionality dimensionality) (STV 1.0 0.9091)) +(: cnet_isa_8db9189969 (IsA one_eighth common_fraction) (STV 1.0 0.9091)) +(: cnet_isa_9710a39854 (IsA one_fifth common_fraction) (STV 1.0 0.9091)) +(: cnet_isa_c597622a49 (IsA one_flowered_wintergreen herb) (STV 1.0 0.9091)) +(: cnet_isa_79343e8dfa (IsA one_fourth common_fraction) (STV 1.0 0.9091)) +(: cnet_isa_4b7ba55b99 (IsA one_half common_fraction) (STV 1.0 0.9091)) +(: cnet_isa_9b24ba0fa2 (IsA one_hitter baseball) (STV 1.0 0.9091)) +(: cnet_isa_73c0bbaedb (IsA one_hundred_millionth common_fraction) (STV 1.0 0.9091)) +(: cnet_isa_50dff0609b (IsA one_hundred_thousandth common_fraction) (STV 1.0 0.9091)) +(: cnet_isa_8ba257200b (IsA one_hundredth common_fraction) (STV 1.0 0.9091)) +(: cnet_isa_ba60b3d98a (IsA one_impairment_person_might_have intracranial_aneurysm) (STV 1.0 0.9091)) +(: cnet_isa_653075479c (IsA one_impairment_person_might_have neurosis) (STV 1.0 0.9091)) +(: cnet_isa_cf0031bba8 (IsA one_instance_of_vessel ship) (STV 1.0 0.9091)) +(: cnet_isa_3f556b818f (IsA one_kind_of_insurance medical_insurance) (STV 1.0 0.9091)) +(: cnet_isa_b7d17e5f66 (IsA one_liner joke) (STV 1.0 0.9091)) +(: cnet_isa_77336eaf14 (IsA one_mess location_with_high_traffic) (STV 1.0 0.9091)) +(: cnet_isa_ba243e7267 (IsA one_millionth common_fraction) (STV 1.0 0.9091)) +(: cnet_isa_259a5b9537 (IsA one_night_stand performance) (STV 1.0 0.9091)) +(: cnet_isa_2b4ddfc66f (IsA one_night_stand promiscuity) (STV 1.0 0.9091)) +(: cnet_isa_d09a6c1352 (IsA one_nightly_ritual brushing_hair) (STV 1.0 0.9091)) +(: cnet_isa_2225f2e788 (IsA one_nightly_ritual brushing_teeth) (STV 1.0 0.9091)) +(: cnet_isa_1bcb2a3295 (IsA one_nightly_ritual checking_security) (STV 1.0 0.9091)) +(: cnet_isa_41a073aaba (IsA one_nightly_ritual cleaning_up_kitchen) (STV 1.0 0.9091)) +(: cnet_isa_c0a1b761d6 (IsA one_nightly_ritual one_last_snack) (STV 1.0 0.9091)) +(: cnet_isa_8e672f7d3e (IsA one_nightly_ritual packing_attache_for_tomorrow) (STV 1.0 0.9091)) +(: cnet_isa_3d4043ffb8 (IsA one_nightly_ritual packing_lunch_for_tomorrow) (STV 1.0 0.9091)) +(: cnet_isa_955ad04572 (IsA one_nightly_ritual picking_up_thing_on_floor) (STV 1.0 0.9091)) +(: cnet_isa_2945e0cfc6 (IsA one_nightly_ritual puffing_up_pillow) (STV 1.0 0.9091)) +(: cnet_isa_7438bca508 (IsA one_nightly_ritual putting_on_cozy_sock) (STV 1.0 0.9091)) +(: cnet_isa_0b768fa514 (IsA one_nightly_ritual putting_on_pajama) (STV 1.0 0.9091)) +(: cnet_isa_5282860de6 (IsA one_nightly_ritual reading_daily_item) (STV 1.0 0.9091)) +(: cnet_isa_54dedf08e9 (IsA one_nightly_ritual removing_teeth) (STV 1.0 0.9091)) +(: cnet_isa_062b3db68b (IsA one_nightly_ritual reviewing_day) (STV 1.0 0.9091)) +(: cnet_isa_3461252320 (IsA one_nightly_ritual saying_goodnight) (STV 1.0 0.9454)) +(: cnet_isa_965228b38d (IsA one_nightly_ritual saying_prayer) (STV 1.0 0.9091)) +(: cnet_isa_1bd47811fe (IsA one_nightly_ritual setting_temperature) (STV 1.0 0.9091)) +(: cnet_isa_e233469001 (IsA one_nightly_ritual slipping_into_bed) (STV 1.0 0.9091)) +(: cnet_isa_bd20c0d6be (IsA one_nightly_ritual snuggling_up) (STV 1.0 0.9091)) +(: cnet_isa_e36ac0cf40 (IsA one_nightly_ritual stretching) (STV 1.0 0.9091)) +(: cnet_isa_2a02ae140e (IsA one_nightly_ritual switching_to_sleep_bra) (STV 1.0 0.9091)) +(: cnet_isa_345dbc37db (IsA one_nightly_ritual taking_off_clothe) (STV 1.0 0.9091)) +(: cnet_isa_06078487f4 (IsA one_nightly_ritual taking_off_glass) (STV 1.0 0.9091)) +(: cnet_isa_ffdaca500c (IsA one_nightly_ritual taking_vitamin) (STV 1.0 0.9091)) +(: cnet_isa_5505e7aa2c (IsA one_nightly_ritual throwing_back_cover) (STV 1.0 0.9091)) +(: cnet_isa_c7162b20e5 (IsA one_nightly_ritual using_toilet) (STV 1.0 0.9091)) +(: cnet_isa_2e8ee982b7 (IsA one_nightly_ritual washing_face) (STV 1.0 0.9091)) +(: cnet_isa_fc86faa54b (IsA one_ninth common_fraction) (STV 1.0 0.9091)) +(: cnet_isa_e375fe0485 (IsA one_of_boy boy) (STV 1.0 0.9091)) +(: cnet_isa_91900b20b3 (IsA one_of_chemical_element iodine) (STV 1.0 0.9091)) +(: cnet_isa_72110e5536 (IsA one_off happening) (STV 1.0 0.9091)) +(: cnet_isa_87ebf8022c (IsA one_political_border state_border) (STV 1.0 0.9091)) +(: cnet_isa_8a46428eff (IsA one_psychoneurosis obsession) (STV 1.0 0.9091)) +(: cnet_isa_8e06600734 (IsA one_quadrillionth common_fraction) (STV 1.0 0.9091)) +(: cnet_isa_de3de71cb4 (IsA one_quintillionth common_fraction) (STV 1.0 0.9091)) +(: cnet_isa_08fdd88d3f (IsA one_religion named_christianity) (STV 1.0 0.9339)) +(: cnet_isa_4c8222d7f0 (IsA one_seventh common_fraction) (STV 1.0 0.9091)) +(: cnet_isa_e5d278d8ca (IsA one_sixth common_fraction) (STV 1.0 0.9091)) +(: cnet_isa_287fcd6920 (IsA one_sixtieth common_fraction) (STV 1.0 0.9091)) +(: cnet_isa_64454150b4 (IsA one_sixty_fourth common_fraction) (STV 1.0 0.9091)) +(: cnet_isa_00205e009e (IsA one_spot dice) (STV 1.0 0.9091)) +(: cnet_isa_769e732ecd (IsA one_spot domino) (STV 1.0 0.9091)) +(: cnet_isa_887e2833f3 (IsA one_step ballroom_dancing) (STV 1.0 0.9091)) +(: cnet_isa_7145daaea8 (IsA one_surgical_procedure_for_removal cystectomy) (STV 1.0 0.9091)) +(: cnet_isa_965f088d45 (IsA one_surgical_procedure_for_removal pneumonectomy) (STV 1.0 0.9091)) +(: cnet_isa_4e42a5f9fe (IsA one_ten_thousandth common_fraction) (STV 1.0 0.9091)) +(: cnet_isa_3633b309fa (IsA one_tenth common_fraction) (STV 1.0 0.9091)) +(: cnet_isa_7a1c656acb (IsA one_third common_fraction) (STV 1.0 0.9091)) +(: cnet_isa_bf64ba57fc (IsA one_thousandth common_fraction) (STV 1.0 0.9091)) +(: cnet_isa_26cc237f6c (IsA one_trillionth common_fraction) (STV 1.0 0.9091)) +(: cnet_isa_c0d818aa2b (IsA one_type_of_cap beanie) (STV 1.0 0.9339)) +(: cnet_isa_17673b284c (IsA one_type_of_case if_then_situation) (STV 1.0 0.9339)) +(: cnet_isa_89ddfd09bd (IsA one_type_of_dog german_shepherd) (STV 1.0 0.9091)) +(: cnet_isa_2280705f4e (IsA one_type_of_stick stick_of_gum) (STV 1.0 0.9091)) +(: cnet_isa_77d7a21e91 (IsA one_unit_of_time second) (STV 1.0 0.9091)) +(: cnet_isa_0a24241584 (IsA one_unit_of_time week) (STV 1.0 0.9091)) +(: cnet_isa_c54c829161 (IsA one_upmanship practice) (STV 1.0 0.9091)) +(: cnet_isa_266ff878b5 (IsA one_way_light_time elapsed_time) (STV 1.0 0.9091)) +(: cnet_isa_20f552e629 (IsA one_way_street street) (STV 1.0 0.9091)) +(: cnet_isa_c3adb7d065 (IsA one_way_street unilateralism) (STV 1.0 0.9091)) +(: cnet_isa_70a32c80a3 (IsA oneida iroquoian) (STV 1.0 0.9091)) +(: cnet_isa_2419f4e224 (IsA oneida iroquois) (STV 1.0 0.9091)) +(: cnet_isa_4af5e85d49 (IsA oneiromancer diviner) (STV 1.0 0.9091)) +(: cnet_isa_80db35c1c0 (IsA oneiromancy divination) (STV 1.0 0.9091)) +(: cnet_isa_39acdfd631 (IsA oneness identity) (STV 1.0 0.9091)) +(: cnet_isa_201b54a895 (IsA onion vegetable) (STV 1.0 0.9091)) +(: cnet_isa_2f70680e66 (IsA onion alliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_f6901d56d7 (IsA onion bulb) (STV 1.0 0.9091)) +(: cnet_isa_341b6fc7c6 (IsA onion_bagel bagel) (STV 1.0 0.9091)) +(: cnet_isa_bbdc65e96b (IsA onion_bread bread) (STV 1.0 0.9091)) +(: cnet_isa_4178567c67 (IsA onion_butter spread) (STV 1.0 0.9091)) +(: cnet_isa_e1eaad64c8 (IsA onion_dome dome) (STV 1.0 0.9091)) +(: cnet_isa_dde709e6b0 (IsA onion_mildew downy_mildew) (STV 1.0 0.9091)) +(: cnet_isa_b8bba0ec24 (IsA onion_roll bun) (STV 1.0 0.9091)) +(: cnet_isa_3415871d30 (IsA onion_salt flavorer) (STV 1.0 0.9091)) +(: cnet_isa_2825ab0dd3 (IsA onion_smut smut) (STV 1.0 0.9091)) +(: cnet_isa_fa6b5da006 (IsA onion_stem lepiota) (STV 1.0 0.9091)) +(: cnet_isa_9223115219 (IsA onion_thrip thrip) (STV 1.0 0.9091)) +(: cnet_isa_d5fb0b5c14 (IsA onion_yellow_dwarf yellow_dwarf) (STV 1.0 0.9091)) +(: cnet_isa_ded9767722 (IsA onion_yellow_dwarf_virus plant_virus) (STV 1.0 0.9091)) +(: cnet_isa_982ecaa1ad (IsA onionskin typewriter_paper) (STV 1.0 0.9091)) +(: cnet_isa_c86398c365 (IsA oniscidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_05e2d64c0c (IsA oniscus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_3a9d7c8956 (IsA onlooker spectator) (STV 1.0 0.9091)) +(: cnet_isa_2722db4f92 (IsA onobrychis rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b43df0739d (IsA onoclea fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_24385f8467 (IsA onomancer diviner) (STV 1.0 0.9091)) +(: cnet_isa_81f3df2b6c (IsA onomancy divination) (STV 1.0 0.9091)) +(: cnet_isa_98c3fa3897 (IsA onomasticon wordbook) (STV 1.0 0.9091)) +(: cnet_isa_424418bcf8 (IsA onomastic lexicology) (STV 1.0 0.9091)) +(: cnet_isa_9b7560e617 (IsA onomatomania compulsion) (STV 1.0 0.9091)) +(: cnet_isa_a6b97af20f (IsA onomatopoeia rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_1a756cf1e3 (IsA onondaga iroquoian) (STV 1.0 0.9091)) +(: cnet_isa_c97818a672 (IsA onondaga iroquois) (STV 1.0 0.9091)) +(: cnet_isa_ff56611dbb (IsA ononis rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_938b3a258b (IsA onopordum asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c7a7cc632b (IsA onosmodium plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_20bda86db0 (IsA onrush rush) (STV 1.0 0.9091)) +(: cnet_isa_aececb718c (IsA onset start) (STV 1.0 0.9091)) +(: cnet_isa_4bae2e03e3 (IsA onslaught trouble) (STV 1.0 0.9091)) +(: cnet_isa_e785f0979e (IsA ontario province_in_canada) (STV 1.0 0.9339)) +(: cnet_isa_8de771bff2 (IsA ontario province_of_canada) (STV 1.0 0.9091)) +(: cnet_isa_194a9e706d (IsA ontology metaphysic) (STV 1.0 0.9091)) +(: cnet_isa_1c7f7c54b0 (IsA ontology arrangement) (STV 1.0 0.9091)) +(: cnet_isa_1eee892ec7 (IsA onychium fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_14e272bb2b (IsA onychogalea mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_8d3b45b90b (IsA onycholysis onychosis) (STV 1.0 0.9091)) +(: cnet_isa_f37a30090f (IsA onychomy mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_25827bb0e7 (IsA onychophora class) (STV 1.0 0.9091)) +(: cnet_isa_d1d06e4ba1 (IsA onychophoran arthropod) (STV 1.0 0.9091)) +(: cnet_isa_6997d74600 (IsA onychosis disease) (STV 1.0 0.9091)) +(: cnet_isa_04fe48db51 (IsA onyx chalcedony) (STV 1.0 0.9091)) +(: cnet_isa_1aa64d9d66 (IsA oocyte gametocyte) (STV 1.0 0.9091)) +(: cnet_isa_3e0c731ce0 (IsA oogenesis gametogenesis) (STV 1.0 0.9091)) +(: cnet_isa_35fc70509f (IsA oology zoology) (STV 1.0 0.9091)) +(: cnet_isa_68d36e4abb (IsA oolong tea) (STV 1.0 0.9091)) +(: cnet_isa_c26f9773b7 (IsA oomycete class) (STV 1.0 0.9091)) +(: cnet_isa_70c708d84c (IsA oophorectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_43bd617a3b (IsA oophoritis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_072c9f488b (IsA oophorosalpingectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_723b74ca24 (IsA oort_cloud collection) (STV 1.0 0.9091)) +(: cnet_isa_49e52429cb (IsA oosphere gamete) (STV 1.0 0.9091)) +(: cnet_isa_2e54fc54ab (IsA oospore spore) (STV 1.0 0.9091)) +(: cnet_isa_1a21d8b77c (IsA ootid ovum) (STV 1.0 0.9091)) +(: cnet_isa_5fea3f405b (IsA ooze_leather leather) (STV 1.0 0.9091)) +(: cnet_isa_8586277f05 (IsA op_art abstractionism) (STV 1.0 0.9091)) +(: cnet_isa_becfff2772 (IsA opacification natural_process) (STV 1.0 0.9091)) +(: cnet_isa_bc17d39482 (IsA opacity incomprehensibility) (STV 1.0 0.9091)) +(: cnet_isa_706de59d8a (IsA opacity quality) (STV 1.0 0.9091)) +(: cnet_isa_f7d96e0a88 (IsA opacity physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_a2d2480df8 (IsA opah soft_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_3bc79a270a (IsA opal mineral) (STV 1.0 0.9091)) +(: cnet_isa_4ebbba6063 (IsA opal opaque_gem) (STV 1.0 0.9091)) +(: cnet_isa_07ace5bd58 (IsA opal_glass glass) (STV 1.0 0.9091)) +(: cnet_isa_bca25e5357 (IsA opalescence brightness) (STV 1.0 0.9091)) +(: cnet_isa_1d12cf7354 (IsA opaque_gem gem) (STV 1.0 0.9091)) +(: cnet_isa_ac331a9154 (IsA open public_knowledge) (STV 1.0 0.9091)) +(: cnet_isa_23652eca65 (IsA open tournament) (STV 1.0 0.9091)) +(: cnet_isa_f2f952de0b (IsA open area) (STV 1.0 0.9091)) +(: cnet_isa_4c251469d2 (IsA open_account credit_order) (STV 1.0 0.9091)) +(: cnet_isa_580198955a (IsA open_air_market marketplace) (STV 1.0 0.9091)) +(: cnet_isa_97ac313fed (IsA open_chain chain) (STV 1.0 0.9091)) +(: cnet_isa_a1b1707f33 (IsA open_circuit circuit) (STV 1.0 0.9091)) +(: cnet_isa_2d0af5b113 (IsA open_door door) (STV 1.0 0.9091)) +(: cnet_isa_65d444f4e6 (IsA open_door_policy trade_policy) (STV 1.0 0.9091)) +(: cnet_isa_8581b6d999 (IsA open_end_credit consumer_credit) (STV 1.0 0.9091)) +(: cnet_isa_75860db0e0 (IsA open_end_wrench wrench) (STV 1.0 0.9091)) +(: cnet_isa_e52c3f70d8 (IsA open_face_sandwich sandwich) (STV 1.0 0.9091)) +(: cnet_isa_cdef203685 (IsA open_frame score) (STV 1.0 0.9091)) +(: cnet_isa_36ea2ad9fd (IsA open_heart_surgery heart_surgery) (STV 1.0 0.9091)) +(: cnet_isa_b79c45f9cd (IsA open_hearth_furnace furnace) (STV 1.0 0.9091)) +(: cnet_isa_4048adfc24 (IsA open_hearth_process steel_production) (STV 1.0 0.9091)) +(: cnet_isa_0ec1a542fe (IsA open_house party) (STV 1.0 0.9091)) +(: cnet_isa_ee3b42c841 (IsA open_interval interval) (STV 1.0 0.9091)) +(: cnet_isa_ae49324c12 (IsA open_letter letter) (STV 1.0 0.9091)) +(: cnet_isa_f15022393e (IsA open_marriage marriage) (STV 1.0 0.9091)) +(: cnet_isa_ce32f555d6 (IsA open_mind very_important_thing_to_have) (STV 1.0 0.9339)) +(: cnet_isa_e5b17775bb (IsA open_order military_formation) (STV 1.0 0.9091)) +(: cnet_isa_943f035b3f (IsA open_primary direct_primary) (STV 1.0 0.9091)) +(: cnet_isa_dd96904995 (IsA open_secret secret) (STV 1.0 0.9091)) +(: cnet_isa_201b685c46 (IsA open_sesame mean) (STV 1.0 0.9091)) +(: cnet_isa_06457a5c67 (IsA open_sesame command) (STV 1.0 0.9091)) +(: cnet_isa_fa7760f5f0 (IsA open_shop company) (STV 1.0 0.9091)) +(: cnet_isa_14f1c36153 (IsA open_sight gunsight) (STV 1.0 0.9091)) +(: cnet_isa_2dfd107d87 (IsA open_society society) (STV 1.0 0.9091)) +(: cnet_isa_ec9965dda7 (IsA open_university university) (STV 1.0 0.9091)) +(: cnet_isa_30600ebe99 (IsA open_weave weave) (STV 1.0 0.9091)) +(: cnet_isa_6ce3814d93 (IsA openbill stork) (STV 1.0 0.9091)) +(: cnet_isa_077356c7a1 (IsA opener hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_250f4aa874 (IsA opener start) (STV 1.0 0.9091)) +(: cnet_isa_6257c6c420 (IsA opening change_of_integrity) (STV 1.0 0.9091)) +(: cnet_isa_c2580ced62 (IsA opening motion) (STV 1.0 0.9091)) +(: cnet_isa_4dceaa1722 (IsA opening artifact) (STV 1.0 0.9091)) +(: cnet_isa_a15db207c3 (IsA opening introduction) (STV 1.0 0.9091)) +(: cnet_isa_8e42a257df (IsA opening ceremony) (STV 1.0 0.9091)) +(: cnet_isa_883c1502f1 (IsA opening start) (STV 1.0 0.9091)) +(: cnet_isa_3ba70b65ac (IsA opening space) (STV 1.0 0.9091)) +(: cnet_isa_9e76f10005 (IsA opening opportunity) (STV 1.0 0.9091)) +(: cnet_isa_5dc9f64b5b (IsA opening_line line) (STV 1.0 0.9091)) +(: cnet_isa_b51469defb (IsA openness sociability) (STV 1.0 0.9091)) +(: cnet_isa_5890e4707b (IsA openness spacing) (STV 1.0 0.9091)) +(: cnet_isa_edab4ac98d (IsA openside_plane plane) (STV 1.0 0.9091)) +(: cnet_isa_395871b552 (IsA openwork work) (STV 1.0 0.9091)) +(: cnet_isa_b238ea7e7b (IsA opepe tree) (STV 1.0 0.9091)) +(: cnet_isa_9297c99f31 (IsA opera entertainment_event) (STV 1.0 0.9091)) +(: cnet_isa_15ab13d068 (IsA opera music_concert) (STV 1.0 0.9091)) +(: cnet_isa_4fb190f3cc (IsA opera theater) (STV 1.0 0.9091)) +(: cnet_isa_81df571751 (IsA opera classical_music) (STV 1.0 0.9091)) +(: cnet_isa_3fdf7ea3d4 (IsA opera_cloak cloak) (STV 1.0 0.9091)) +(: cnet_isa_b43e0fd36f (IsA opera_company company) (STV 1.0 0.9091)) +(: cnet_isa_b2270f4887 (IsA opera_star singer) (STV 1.0 0.9091)) +(: cnet_isa_8ae985cb58 (IsA operagoer patron) (STV 1.0 0.9091)) +(: cnet_isa_7c59f0a57d (IsA operand quantity) (STV 1.0 0.9091)) +(: cnet_isa_146ae1e4b1 (IsA operant_conditioning conditioning) (STV 1.0 0.9091)) +(: cnet_isa_5787c38f64 (IsA operating_budget budget) (STV 1.0 0.9091)) +(: cnet_isa_30b3517ae1 (IsA operating_capability capability) (STV 1.0 0.9091)) +(: cnet_isa_ca80bb46f6 (IsA operating_capital capital) (STV 1.0 0.9091)) +(: cnet_isa_4ac6adbee2 (IsA operating_expense expense) (STV 1.0 0.9091)) +(: cnet_isa_0985c3b1c6 (IsA operating_microscope binocular_microscope) (STV 1.0 0.9091)) +(: cnet_isa_98f43e2553 (IsA operating_procedure procedure) (STV 1.0 0.9091)) +(: cnet_isa_6b190c4ee7 (IsA operating_room hospital_room) (STV 1.0 0.9091)) +(: cnet_isa_16e63b7e5d (IsA operating_system software) (STV 1.0 0.9091)) +(: cnet_isa_abdbf5544d (IsA operating_table table) (STV 1.0 0.9091)) +(: cnet_isa_3552d55298 (IsA operation activity) (STV 1.0 0.9091)) +(: cnet_isa_f6de60c724 (IsA operation business_activity) (STV 1.0 0.9091)) +(: cnet_isa_4019c6cd8c (IsA operation work) (STV 1.0 0.9091)) +(: cnet_isa_f46da71433 (IsA operation data_processing) (STV 1.0 0.9091)) +(: cnet_isa_95ad971e69 (IsA operation process) (STV 1.0 0.9091)) +(: cnet_isa_0ead06b3af (IsA operation action) (STV 1.0 0.9091)) +(: cnet_isa_38a77699a3 (IsA operation medical_procedure) (STV 1.0 0.9091)) +(: cnet_isa_8becb133da (IsA operation_code code) (STV 1.0 0.9091)) +(: cnet_isa_3742dbd58b (IsA operational_cell terrorist_cell) (STV 1.0 0.9091)) +(: cnet_isa_9b922de9c6 (IsA operational_damage damage) (STV 1.0 0.9091)) +(: cnet_isa_e19a9bb3df (IsA operationalism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_1c94669121 (IsA operation transaction) (STV 1.0 0.9091)) +(: cnet_isa_9ee0f17077 (IsA operation_research research) (STV 1.0 0.9091)) +(: cnet_isa_4fd9455899 (IsA operative_field field) (STV 1.0 0.9091)) +(: cnet_isa_997ba741f0 (IsA operator mapping) (STV 1.0 0.9091)) +(: cnet_isa_768816422a (IsA operator businessman) (STV 1.0 0.9091)) +(: cnet_isa_ba81678c3e (IsA operator causal_agent) (STV 1.0 0.9091)) +(: cnet_isa_29a9995ac0 (IsA operator speculator) (STV 1.0 0.9091)) +(: cnet_isa_680dacf635 (IsA operator_gene gene) (STV 1.0 0.9091)) +(: cnet_isa_a98947c57a (IsA operculum plate) (STV 1.0 0.9091)) +(: cnet_isa_6ae758db75 (IsA operetta comic_opera) (STV 1.0 0.9091)) +(: cnet_isa_b182ebf9a1 (IsA operon deoxyribonucleic_acid) (STV 1.0 0.9091)) +(: cnet_isa_5afed17f51 (IsA opheodry reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_7312b5fbcf (IsA ophidiidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_a7809d13bf (IsA ophidism poisoning) (STV 1.0 0.9091)) +(: cnet_isa_e1733ff2d3 (IsA ophiodon fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_34f0155f87 (IsA ophiodontidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_2c493d1aaa (IsA ophioglossaceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_086772b7ee (IsA ophioglossale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_1714708292 (IsA ophioglossum fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_107a45f63d (IsA ophiolatry zoolatry) (STV 1.0 0.9091)) +(: cnet_isa_00706d3123 (IsA ophiophagus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_dd3c9289f9 (IsA ophisaurus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_1391e17244 (IsA ophiurida class) (STV 1.0 0.9091)) +(: cnet_isa_822f6316c2 (IsA ophiuroidea class) (STV 1.0 0.9091)) +(: cnet_isa_d44d8943c3 (IsA ophryon craniometric_point) (STV 1.0 0.9091)) +(: cnet_isa_626fbe0d18 (IsA ophry monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8d532848ef (IsA ophthalmectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_ec6a5174bc (IsA ophthalmia conjunctivitis) (STV 1.0 0.9091)) +(: cnet_isa_91e07eddea (IsA ophthalmia_neonatorum ophthalmia) (STV 1.0 0.9091)) +(: cnet_isa_c68d432319 (IsA ophthalmic_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_9eb8f078df (IsA ophthalmic_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_4490070174 (IsA ophthalmologist specialist) (STV 1.0 0.9091)) +(: cnet_isa_d8e551d4a5 (IsA ophthalmology medicine) (STV 1.0 0.9091)) +(: cnet_isa_1c593f2bd1 (IsA ophthalmoplegia paralysis) (STV 1.0 0.9091)) +(: cnet_isa_48e03e979d (IsA ophthalmoscope medical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_1d4d3afbfb (IsA ophthalmoscopy examination) (STV 1.0 0.9091)) +(: cnet_isa_587ec168ad (IsA opiate narcotic) (STV 1.0 0.9091)) +(: cnet_isa_60a38f105b (IsA opinion belief) (STV 1.0 0.9091)) +(: cnet_isa_78e8b242f8 (IsA opinion message) (STV 1.0 0.9091)) +(: cnet_isa_8c74d59589 (IsA opinion judgment) (STV 1.0 0.9091)) +(: cnet_isa_2c3146ee7f (IsA opinion legal_document) (STV 1.0 0.9091)) +(: cnet_isa_97cf153afb (IsA opisthobranchia class) (STV 1.0 0.9091)) +(: cnet_isa_e1761d4a4d (IsA opisthocomidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_860c3df1ed (IsA opisthocomus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_d2d3eadb39 (IsA opisthognathidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_378941e2ac (IsA opisthorchiasis infestation) (STV 1.0 0.9091)) +(: cnet_isa_53bf2182d3 (IsA opisthotono spasm) (STV 1.0 0.9091)) +(: cnet_isa_542e5773f2 (IsA opium controlled_substance) (STV 1.0 0.9091)) +(: cnet_isa_900bcc859c (IsA opium narcotic) (STV 1.0 0.9091)) +(: cnet_isa_189b4b4e03 (IsA opium_addict drug_addict) (STV 1.0 0.9091)) +(: cnet_isa_4bbc7d1f6e (IsA opium_den building) (STV 1.0 0.9091)) +(: cnet_isa_e7c8965c69 (IsA opium_poppy poppy) (STV 1.0 0.9091)) +(: cnet_isa_2283ee6af6 (IsA opopanax gum) (STV 1.0 0.9091)) +(: cnet_isa_423034c2c1 (IsA opossum marsupial) (STV 1.0 0.9091)) +(: cnet_isa_cbce6ceb95 (IsA opossum_rat marsupial) (STV 1.0 0.9091)) +(: cnet_isa_df58e3a295 (IsA opossum_shrimp malacostracan_crustacean) (STV 1.0 0.9091)) +(: cnet_isa_185ac45a4c (IsA opponent people) (STV 1.0 0.9091)) +(: cnet_isa_1bc90065c5 (IsA opportuneness convenience) (STV 1.0 0.9091)) +(: cnet_isa_f5a699b981 (IsA opportunism selfishness) (STV 1.0 0.9091)) +(: cnet_isa_534273dc82 (IsA opportunist selfish_person) (STV 1.0 0.9091)) +(: cnet_isa_c48a89e408 (IsA opportunistic_infection infection) (STV 1.0 0.9091)) +(: cnet_isa_173dd71272 (IsA opportunity possibility) (STV 1.0 0.9091)) +(: cnet_isa_bc04abc0f4 (IsA opportunity_cost cost) (STV 1.0 0.9091)) +(: cnet_isa_1f5f04b56c (IsA opposite_of_proponent antagonist) (STV 1.0 0.9091)) +(: cnet_isa_6ff3c34940 (IsA opposition body) (STV 1.0 0.9091)) +(: cnet_isa_c35e5b42f9 (IsA opposition party) (STV 1.0 0.9091)) +(: cnet_isa_ed81d7af5a (IsA opposition direction) (STV 1.0 0.9091)) +(: cnet_isa_cacb3bbddc (IsA opposition relation) (STV 1.0 0.9091)) +(: cnet_isa_a1b2714fab (IsA opposition contestant) (STV 1.0 0.9091)) +(: cnet_isa_13565d5027 (IsA oppression persecution) (STV 1.0 0.9091)) +(: cnet_isa_82dce2b282 (IsA oppression depression) (STV 1.0 0.9091)) +(: cnet_isa_0181506acd (IsA oppression subjugation) (STV 1.0 0.9091)) +(: cnet_isa_57aa3e2803 (IsA oppressor unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_4457c766fa (IsA opsin protein) (STV 1.0 0.9091)) +(: cnet_isa_6db325b7ba (IsA opsonin antibody) (STV 1.0 0.9091)) +(: cnet_isa_2b46938f38 (IsA opsonization bodily_process) (STV 1.0 0.9091)) +(: cnet_isa_593c33ca59 (IsA optative_mood mood) (STV 1.0 0.9091)) +(: cnet_isa_05781d7bdd (IsA optez artificial_language) (STV 1.0 0.9091)) +(: cnet_isa_ebcba7452e (IsA optic_axis axis) (STV 1.0 0.9091)) +(: cnet_isa_a907c70186 (IsA optic_chiasma chiasma) (STV 1.0 0.9091)) +(: cnet_isa_2a9c20af34 (IsA optic_cup calyculus) (STV 1.0 0.9091)) +(: cnet_isa_aa2d52ab12 (IsA optic_nerve cranial_nerve) (STV 1.0 0.9091)) +(: cnet_isa_dfa98d5d56 (IsA optic_radiation nerve_pathway) (STV 1.0 0.9091)) +(: cnet_isa_c7eed847ec (IsA optical_bench apparatus) (STV 1.0 0.9091)) +(: cnet_isa_bb09025e63 (IsA optical_crown optical_glass) (STV 1.0 0.9091)) +(: cnet_isa_0891bc1811 (IsA optical_device device) (STV 1.0 0.9091)) +(: cnet_isa_4fa93094cb (IsA optical_disk memory_device) (STV 1.0 0.9091)) +(: cnet_isa_a2e52c3189 (IsA optical_fiber fiber) (STV 1.0 0.9091)) +(: cnet_isa_4eb4789982 (IsA optical_flint optical_glass) (STV 1.0 0.9091)) +(: cnet_isa_d78c6e3fc1 (IsA optical_glass glass) (STV 1.0 0.9091)) +(: cnet_isa_2b95e9373b (IsA optical_illusion optical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_b5143bc01e (IsA optical_instrument instrument) (STV 1.0 0.9091)) +(: cnet_isa_d8195ef9bf (IsA optical_opacity opacity) (STV 1.0 0.9091)) +(: cnet_isa_7004ebeafa (IsA optical_phenomenon physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_c803c342a8 (IsA optical_pyrometer pyrometer) (STV 1.0 0.9091)) +(: cnet_isa_6fdc2145a2 (IsA optical_telescope astronomical_telescope) (STV 1.0 0.9091)) +(: cnet_isa_46d001a4ef (IsA optician skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_6007b70477 (IsA optic property) (STV 1.0 0.9091)) +(: cnet_isa_7fa1f6d0d7 (IsA optic physic) (STV 1.0 0.9091)) +(: cnet_isa_45f7340a56 (IsA optimism disposition) (STV 1.0 0.9091)) +(: cnet_isa_b0d30b49e8 (IsA optimism hope) (STV 1.0 0.9091)) +(: cnet_isa_525b607bf8 (IsA optimist person) (STV 1.0 0.9091)) +(: cnet_isa_a25e90c599 (IsA optimization improvement) (STV 1.0 0.9091)) +(: cnet_isa_67a8437e0e (IsA optimum good) (STV 1.0 0.9091)) +(: cnet_isa_1b4b7edf01 (IsA option decision_making) (STV 1.0 0.9091)) +(: cnet_isa_8b47bc5d15 (IsA option derivative_instrument) (STV 1.0 0.9091)) +(: cnet_isa_9c364d3476 (IsA optometrist specialist) (STV 1.0 0.9091)) +(: cnet_isa_902f0b861f (IsA optometry practice) (STV 1.0 0.9091)) +(: cnet_isa_78bb9eec58 (IsA opuntia caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_11990dfa48 (IsA opuntiale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_1bacc3bb40 (IsA or_circuit gate) (STV 1.0 0.9091)) +(: cnet_isa_e2ead4b092 (IsA orach herb) (STV 1.0 0.9091)) +(: cnet_isa_f990ff0f5d (IsA oracle shrine) (STV 1.0 0.9091)) +(: cnet_isa_88442509bd (IsA oracle prophecy) (STV 1.0 0.9091)) +(: cnet_isa_df37bd9109 (IsA oral examination) (STV 1.0 0.9091)) +(: cnet_isa_8584d5d85c (IsA oral_cancer carcinoma) (STV 1.0 0.9091)) +(: cnet_isa_125844a6a1 (IsA oral_contraception contraception) (STV 1.0 0.9091)) +(: cnet_isa_211fc89149 (IsA oral_contract agreement) (STV 1.0 0.9091)) +(: cnet_isa_81a8b9bf77 (IsA oral_herpe herpe_simplex) (STV 1.0 0.9091)) +(: cnet_isa_54ae644a1c (IsA oral_personality personality) (STV 1.0 0.9091)) +(: cnet_isa_21ebc0b23a (IsA oral_sex perversion) (STV 1.0 0.9091)) +(: cnet_isa_0136de69cc (IsA oral_smear alimentary_tract_smear) (STV 1.0 0.9091)) +(: cnet_isa_8dcf2cddf3 (IsA oral_stage phase) (STV 1.0 0.9091)) +(: cnet_isa_bf579bab75 (IsA orange citrus) (STV 1.0 0.9091)) +(: cnet_isa_7e216baad8 (IsA orange citrus_fruit) (STV 1.0 0.9524)) +(: cnet_isa_944acd3f21 (IsA orange color) (STV 1.0 0.9677)) +(: cnet_isa_52cea31d0f (IsA orange colour) (STV 1.0 0.9608)) +(: cnet_isa_21cd9715ce (IsA orange chromatic_color) (STV 1.0 0.9091)) +(: cnet_isa_71d319c8f6 (IsA orange pigment) (STV 1.0 0.9091)) +(: cnet_isa_6225014f3b (IsA orange_bat leafnose_bat) (STV 1.0 0.9091)) +(: cnet_isa_e422a70426 (IsA orange_blossom_orchid orchid) (STV 1.0 0.9091)) +(: cnet_isa_b0aaf5b405 (IsA orange_daisy fleabane) (STV 1.0 0.9091)) +(: cnet_isa_bdd75bb3fa (IsA orange_grass st_john_s_wort) (STV 1.0 0.9091)) +(: cnet_isa_de50351f27 (IsA orange_grove grove) (STV 1.0 0.9091)) +(: cnet_isa_a8fea64b06 (IsA orange_hawkweed weed) (STV 1.0 0.9091)) +(: cnet_isa_eaf0bef4c1 (IsA orange_juice common_source_of_vitamin_c) (STV 1.0 0.9091)) +(: cnet_isa_49d4431ed0 (IsA orange_juice fruit_juice) (STV 1.0 0.9091)) +(: cnet_isa_42b028d99d (IsA orange_liqueur liqueur) (STV 1.0 0.9091)) +(: cnet_isa_eec72f339b (IsA orange_marmalade marmalade) (STV 1.0 0.9091)) +(: cnet_isa_d80a2e2d12 (IsA orange_milkwort milkwort) (STV 1.0 0.9091)) +(: cnet_isa_48c99a0b10 (IsA orange_mushroom_pimple mushroom_pimple) (STV 1.0 0.9091)) +(: cnet_isa_002c7a4ec6 (IsA orange_order organization) (STV 1.0 0.9091)) +(: cnet_isa_5c062ea652 (IsA orange_peel candied_citrus_peel) (STV 1.0 0.9091)) +(: cnet_isa_e736fbce3c (IsA orange_peel peel) (STV 1.0 0.9091)) +(: cnet_isa_c59f2fc82f (IsA orange_pekoe black_tea) (STV 1.0 0.9091)) +(: cnet_isa_5929a497a9 (IsA orange_sneezeweed sneezeweed) (STV 1.0 0.9091)) +(: cnet_isa_2aef2fd1d2 (IsA orange_soda soft_drink) (STV 1.0 0.9091)) +(: cnet_isa_b33ad57683 (IsA orange_toast toast) (STV 1.0 0.9091)) +(: cnet_isa_fafc4e2231 (IsA orange_tortrix tortricid) (STV 1.0 0.9091)) +(: cnet_isa_70dfcfe878 (IsA orange_yellow yellow) (STV 1.0 0.9091)) +(: cnet_isa_bbdf6695bc (IsA orange_zest orange_peel) (STV 1.0 0.9091)) +(: cnet_isa_ff62c19419 (IsA orangeade fruit_drink) (STV 1.0 0.9091)) +(: cnet_isa_9a96b2e39e (IsA orangeman protestant) (STV 1.0 0.9091)) +(: cnet_isa_6ac8e1c541 (IsA orangery greenhouse) (STV 1.0 0.9091)) +(: cnet_isa_79f3af42e7 (IsA orangery plantation) (STV 1.0 0.9091)) +(: cnet_isa_cf1fae2c90 (IsA orange_and_apple fruit) (STV 1.0 0.9091)) +(: cnet_isa_974adb1a2a (IsA orangewood wood) (STV 1.0 0.9091)) +(: cnet_isa_c65cf1eb06 (IsA orangina orange_soda) (STV 1.0 0.9091)) +(: cnet_isa_ac7c321e7d (IsA orangutan great_ape) (STV 1.0 0.9091)) +(: cnet_isa_1832e8a671 (IsA oration oratory) (STV 1.0 0.9091)) +(: cnet_isa_d88fac2272 (IsA orator speaker) (STV 1.0 0.9091)) +(: cnet_isa_e8c7cdceb8 (IsA oratory address) (STV 1.0 0.9091)) +(: cnet_isa_3222fbe076 (IsA orb_weaving_spider spider) (STV 1.0 0.9091)) +(: cnet_isa_3e62e81b69 (IsA orb_web spider_web) (STV 1.0 0.9091)) +(: cnet_isa_1da9e9fc86 (IsA orbiculate_leaf simple_leaf) (STV 1.0 0.9091)) +(: cnet_isa_fe5c80dd60 (IsA orbignya monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3ab6eab824 (IsA orbit path) (STV 1.0 0.9091)) +(: cnet_isa_9cb2176836 (IsA orbit_period period) (STV 1.0 0.9091)) +(: cnet_isa_0b46800e55 (IsA orbital_plane plane) (STV 1.0 0.9091)) +(: cnet_isa_b79871280b (IsA orbital_rotation rotation) (STV 1.0 0.9091)) +(: cnet_isa_6b974c91b9 (IsA orbitale craniometric_point) (STV 1.0 0.9091)) +(: cnet_isa_9f443bc700 (IsA orchard_grass grass) (STV 1.0 0.9091)) +(: cnet_isa_c519ce7814 (IsA orchard_oriole new_world_oriole) (STV 1.0 0.9091)) +(: cnet_isa_c7a4d4040b (IsA orchestia arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_fcc98de2c5 (IsA orchestiidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_8735374a20 (IsA orchestra seating) (STV 1.0 0.9091)) +(: cnet_isa_cea0c16661 (IsA orchestra musical_organization) (STV 1.0 0.9091)) +(: cnet_isa_a44bb18546 (IsA orchestra_pit area) (STV 1.0 0.9091)) +(: cnet_isa_bef64d2a5b (IsA orchestration arrangement) (STV 1.0 0.9091)) +(: cnet_isa_cf9f7a9ce1 (IsA orchestration musical_arrangement) (STV 1.0 0.9091)) +(: cnet_isa_cd47eb780d (IsA orchestrator arranger) (STV 1.0 0.9091)) +(: cnet_isa_bc3948b4ac (IsA orchid flower) (STV 1.0 0.9091)) +(: cnet_isa_fa5702f20d (IsA orchidaceae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_52e1ad5a4b (IsA orchidale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_ee90ac57ca (IsA orchidalgia pain) (STV 1.0 0.9091)) +(: cnet_isa_6381ce63f9 (IsA orchidectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_4ba5e70e9f (IsA orchil dye) (STV 1.0 0.9091)) +(: cnet_isa_1856d09bab (IsA orchiopexy operation) (STV 1.0 0.9091)) +(: cnet_isa_36fc748f1c (IsA orchis orchid) (STV 1.0 0.9091)) +(: cnet_isa_f0f2f9b236 (IsA orchitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_2cd7982cb7 (IsA orchotomy incision) (STV 1.0 0.9091)) +(: cnet_isa_84a821dd36 (IsA orcinus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_d7e9f10c7d (IsA ord_kangaroo_rat kangaroo_rat) (STV 1.0 0.9091)) +(: cnet_isa_de37561d60 (IsA ordainer cleric) (STV 1.0 0.9091)) +(: cnet_isa_ab51267ea3 (IsA ordeal trial) (STV 1.0 0.9091)) +(: cnet_isa_afcc617fb9 (IsA ordeal experience) (STV 1.0 0.9091)) +(: cnet_isa_a701aed9a1 (IsA order organization) (STV 1.0 0.9091)) +(: cnet_isa_071d4ef144 (IsA order artistic_style) (STV 1.0 0.9091)) +(: cnet_isa_39474e986b (IsA order magnitude) (STV 1.0 0.9091)) +(: cnet_isa_049c1e1730 (IsA order taxonomic_group) (STV 1.0 0.9091)) +(: cnet_isa_59fc76f95e (IsA order commercial_document) (STV 1.0 0.9091)) +(: cnet_isa_cb0eaf973f (IsA order request) (STV 1.0 0.9091)) +(: cnet_isa_e5492580c8 (IsA order rule) (STV 1.0 0.9091)) +(: cnet_isa_21c6899f45 (IsA order sect) (STV 1.0 0.9091)) +(: cnet_isa_bca8a851e4 (IsA order command) (STV 1.0 0.9091)) +(: cnet_isa_5bb6f3c359 (IsA order state) (STV 1.0 0.9091)) +(: cnet_isa_b0d302477d (IsA order_arm position) (STV 1.0 0.9091)) +(: cnet_isa_2ba2d3adce (IsA order_book book) (STV 1.0 0.9091)) +(: cnet_isa_59ce7a1199 (IsA order_form form) (STV 1.0 0.9091)) +(: cnet_isa_e3502f47ee (IsA order_myxobacteria animal_order) (STV 1.0 0.9091)) +(: cnet_isa_f634bbdf78 (IsA order_of_day agenda) (STV 1.0 0.9091)) +(: cnet_isa_5802f81700 (IsA order_of_magnitude ratio) (STV 1.0 0.9091)) +(: cnet_isa_28683843d0 (IsA order_of_purple_heart decoration) (STV 1.0 0.9091)) +(: cnet_isa_7451ebbe92 (IsA order_osteoglossiforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_1d9129345e (IsA order_paper order_of_day) (STV 1.0 0.9091)) +(: cnet_isa_92c131efe1 (IsA orderer buyer) (STV 1.0 0.9091)) +(: cnet_isa_892c4f706c (IsA orderer organizer) (STV 1.0 0.9091)) +(: cnet_isa_8592d3b518 (IsA ordering arrangement) (STV 1.0 0.9091)) +(: cnet_isa_04d8bfc940 (IsA orderliness regularity) (STV 1.0 0.9091)) +(: cnet_isa_6265a09919 (IsA orderliness condition) (STV 1.0 0.9091)) +(: cnet_isa_fba0e0bc29 (IsA orderly attendant) (STV 1.0 0.9091)) +(: cnet_isa_d4b78e61ee (IsA orderly soldier) (STV 1.0 0.9091)) +(: cnet_isa_8551b09e40 (IsA orderly_sergeant first_sergeant) (STV 1.0 0.9091)) +(: cnet_isa_97289e9cf2 (IsA ordinal_number number) (STV 1.0 0.9091)) +(: cnet_isa_fc73b9b2f4 (IsA ordinance legislative_act) (STV 1.0 0.9091)) +(: cnet_isa_31e3195f2b (IsA ordinand clergyman) (STV 1.0 0.9091)) +(: cnet_isa_829ae9dac1 (IsA ordinariness quality) (STV 1.0 0.9091)) +(: cnet_isa_17bc55afb5 (IsA ordinary bicycle) (STV 1.0 0.9091)) +(: cnet_isa_a7b8f5103e (IsA ordinary charge) (STV 1.0 0.9091)) +(: cnet_isa_a8ccd497de (IsA ordinary judge) (STV 1.0 0.9091)) +(: cnet_isa_918077a2ee (IsA ordinary clergyman) (STV 1.0 0.9091)) +(: cnet_isa_a230521322 (IsA ordinary condition) (STV 1.0 0.9091)) +(: cnet_isa_7d40c8addc (IsA ordinary_annuity annuity) (STV 1.0 0.9091)) +(: cnet_isa_685e8de329 (IsA ordinate cartesian_coordinate) (STV 1.0 0.9091)) +(: cnet_isa_d6d3994e38 (IsA ordination appointment) (STV 1.0 0.9091)) +(: cnet_isa_7983326fbc (IsA ordination status) (STV 1.0 0.9091)) +(: cnet_isa_7821f29c94 (IsA ordnance_survey administrative_unit) (STV 1.0 0.9091)) +(: cnet_isa_6a94d9b2dd (IsA ore fractional_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_5c5fb54058 (IsA ore mineral) (STV 1.0 0.9091)) +(: cnet_isa_4d73dd9c1d (IsA ore_bed bed) (STV 1.0 0.9091)) +(: cnet_isa_823d0ea075 (IsA oread nymph) (STV 1.0 0.9091)) +(: cnet_isa_d9bbc7d63a (IsA oreamno mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_ffff9bfbcf (IsA orectolobidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_2ab2e4e18b (IsA orectolobus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_b67c4cf6f0 (IsA oregano origanum) (STV 1.0 0.9091)) +(: cnet_isa_e5076921a8 (IsA oregon state) (STV 1.0 0.9524)) +(: cnet_isa_09c2104d9f (IsA oregon_ash ash) (STV 1.0 0.9091)) +(: cnet_isa_695fd6acc2 (IsA oregon_cedar cedar) (STV 1.0 0.9091)) +(: cnet_isa_f33bed2b92 (IsA oregon_crab_apple wild_apple) (STV 1.0 0.9091)) +(: cnet_isa_a77b275bf1 (IsA oregon_grape shrub) (STV 1.0 0.9091)) +(: cnet_isa_81cef53db4 (IsA oregon_maple maple) (STV 1.0 0.9091)) +(: cnet_isa_f4a9b69dff (IsA oregon_white_oak white_oak) (STV 1.0 0.9091)) +(: cnet_isa_8a68d9c58d (IsA oreo cookie) (STV 1.0 0.9091)) +(: cnet_isa_32805f7ef8 (IsA oreopteris fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_76737e0a01 (IsA oreortyx bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_cca66ecf82 (IsA organ another_kind_of_keyboard) (STV 1.0 0.9091)) +(: cnet_isa_137bb43436 (IsA organ instrument) (STV 1.0 0.9454)) +(: cnet_isa_442f04bb44 (IsA organ musical_insrrument) (STV 1.0 0.9091)) +(: cnet_isa_46ff2f9941 (IsA organ musical_instrument) (STV 1.0 0.9572)) +(: cnet_isa_9238c08d1a (IsA organ wind_instument) (STV 1.0 0.9091)) +(: cnet_isa_189cc3d7fc (IsA organ keyboard_instrument) (STV 1.0 0.9091)) +(: cnet_isa_405a47a276 (IsA organ wind_instrument) (STV 1.0 0.9091)) +(: cnet_isa_e506d56524 (IsA organ body_part) (STV 1.0 0.9091)) +(: cnet_isa_10589209cd (IsA organ periodical) (STV 1.0 0.9091)) +(: cnet_isa_f610722f87 (IsA organ agency) (STV 1.0 0.9091)) +(: cnet_isa_869cb97e49 (IsA organ_donor donor) (STV 1.0 0.9091)) +(: cnet_isa_1b0b4784ba (IsA organ_grinder showman) (STV 1.0 0.9091)) +(: cnet_isa_09dbd96f73 (IsA organ_loft gallery) (STV 1.0 0.9091)) +(: cnet_isa_16944cda40 (IsA organ_of_corti organ_of_hearing) (STV 1.0 0.9091)) +(: cnet_isa_2bab97eb5d (IsA organ_of_hearing sense_organ) (STV 1.0 0.9091)) +(: cnet_isa_ede7c057ff (IsA organ_pipe wind_instrument) (STV 1.0 0.9091)) +(: cnet_isa_13572663e5 (IsA organ_stop organ_pipe) (STV 1.0 0.9091)) +(: cnet_isa_2676f76ad0 (IsA organdy muslin) (STV 1.0 0.9091)) +(: cnet_isa_47f54ac026 (IsA organelle organ) (STV 1.0 0.9091)) +(: cnet_isa_bd6f1d8ab3 (IsA organic fertilizer) (STV 1.0 0.9091)) +(: cnet_isa_56bc3fe0f8 (IsA organic_brain_syndrome mental_abnormality) (STV 1.0 0.9091)) +(: cnet_isa_5ddbf7c360 (IsA organic_chemistry chemistry) (STV 1.0 0.9091)) +(: cnet_isa_9c23b3a804 (IsA organic_compound compound) (STV 1.0 0.9091)) +(: cnet_isa_28334a8754 (IsA organic_disorder disorder) (STV 1.0 0.9091)) +(: cnet_isa_1213362b6a (IsA organic_light_emitting_diode light_emitting_diode) (STV 1.0 0.9091)) +(: cnet_isa_f7a6c13c0c (IsA organic_phenomenon natural_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_893b71e749 (IsA organic_process process) (STV 1.0 0.9091)) +(: cnet_isa_41a06cd30a (IsA organicism scientific_theory) (STV 1.0 0.9091)) +(: cnet_isa_52f3f7ef9a (IsA organification organic_process) (STV 1.0 0.9091)) +(: cnet_isa_38802643f2 (IsA organism living_thing) (STV 1.0 0.9091)) +(: cnet_isa_01d7f3db73 (IsA organism system) (STV 1.0 0.9091)) +(: cnet_isa_b1bc493c9a (IsA organist musician) (STV 1.0 0.9091)) +(: cnet_isa_38de9260c2 (IsA organization good_thing) (STV 1.0 0.9339)) +(: cnet_isa_92e8929924 (IsA organization activity) (STV 1.0 0.9091)) +(: cnet_isa_3720171b84 (IsA organization administration) (STV 1.0 0.9091)) +(: cnet_isa_2edbb4cd9d (IsA organization orderliness) (STV 1.0 0.9091)) +(: cnet_isa_0b56da8f61 (IsA organization social_group) (STV 1.0 0.9091)) +(: cnet_isa_abfe418387 (IsA organization_chart chart) (STV 1.0 0.9091)) +(: cnet_isa_73a5dc7282 (IsA organization_expense business_expense) (STV 1.0 0.9091)) +(: cnet_isa_cbc0ed8ddc (IsA organization_for_prohibition_of_chemical_weapon world_organization) (STV 1.0 0.9091)) +(: cnet_isa_e6a139fcd7 (IsA organization_man employee) (STV 1.0 0.9091)) +(: cnet_isa_5698a6908a (IsA organization_of_american_state world_organization) (STV 1.0 0.9091)) +(: cnet_isa_2057644a4a (IsA organization_of_petroleum_exporting_country oil_cartel) (STV 1.0 0.9091)) +(: cnet_isa_25babca25f (IsA organization_of_petroleum_exporting_country world_organization) (STV 1.0 0.9091)) +(: cnet_isa_8362156ba7 (IsA organized_crime social_group) (STV 1.0 0.9091)) +(: cnet_isa_b55c58b3e0 (IsA organized_labor labor) (STV 1.0 0.9091)) +(: cnet_isa_a31e7ac28f (IsA organizer thinker) (STV 1.0 0.9091)) +(: cnet_isa_7ec2a6da57 (IsA organizer union_representative) (STV 1.0 0.9091)) +(: cnet_isa_5138987d33 (IsA organon system) (STV 1.0 0.9091)) +(: cnet_isa_7d312e357e (IsA organophosphate insecticide) (STV 1.0 0.9091)) +(: cnet_isa_de278b2bdf (IsA organophosphate_nerve_agent nerve_gas) (STV 1.0 0.9091)) +(: cnet_isa_dd8258d09b (IsA organza fabric) (STV 1.0 0.9091)) +(: cnet_isa_7ad806cadc (IsA orgasm consummation) (STV 1.0 0.9091)) +(: cnet_isa_023ccb8582 (IsA orgasm_between_two_lover wonderful_feeling) (STV 1.0 0.9091)) +(: cnet_isa_de2a4c1133 (IsA orgy indulgence) (STV 1.0 0.9091)) +(: cnet_isa_9639c4b6ed (IsA orgy revel) (STV 1.0 0.9091)) +(: cnet_isa_4e0cc56948 (IsA orgy rite) (STV 1.0 0.9091)) +(: cnet_isa_c08003f74f (IsA oriel bay_window) (STV 1.0 0.9091)) +(: cnet_isa_f3f530d72e (IsA oriental_arborvitae arborvitae) (STV 1.0 0.9091)) +(: cnet_isa_35219c9453 (IsA oriental_beetle scarabaeid_beetle) (STV 1.0 0.9091)) +(: cnet_isa_f3451fa02a (IsA oriental_cherry flowering_cherry) (STV 1.0 0.9091)) +(: cnet_isa_7a333f7b87 (IsA oriental_cockroach cockroach) (STV 1.0 0.9091)) +(: cnet_isa_ff3c008a29 (IsA oriental_plane plane_tree) (STV 1.0 0.9091)) +(: cnet_isa_dde8698639 (IsA oriental_poppy poppy) (STV 1.0 0.9091)) +(: cnet_isa_da56594882 (IsA oriental_scop_owl scop_owl) (STV 1.0 0.9091)) +(: cnet_isa_2c1ea29ea6 (IsA oriental_spruce spruce) (STV 1.0 0.9091)) +(: cnet_isa_cb2bf9931d (IsA orientalism quality) (STV 1.0 0.9091)) +(: cnet_isa_13bc853d67 (IsA orientalism humanistic_discipline) (STV 1.0 0.9091)) +(: cnet_isa_1721150e51 (IsA orientalist specialist) (STV 1.0 0.9091)) +(: cnet_isa_0e1ca041e4 (IsA orientation placement) (STV 1.0 0.9091)) +(: cnet_isa_687db07738 (IsA orientation attitude) (STV 1.0 0.9091)) +(: cnet_isa_feecfe2009 (IsA orientation self_awareness) (STV 1.0 0.9091)) +(: cnet_isa_5cf56c171c (IsA orientation direction) (STV 1.0 0.9091)) +(: cnet_isa_31dc1fbcd9 (IsA orientation_course course) (STV 1.0 0.9091)) +(: cnet_isa_5d1f276a32 (IsA orifice passage) (STV 1.0 0.9091)) +(: cnet_isa_887f63872c (IsA oriflamme standard) (STV 1.0 0.9091)) +(: cnet_isa_b5806b4c1d (IsA oriflamme symbol) (STV 1.0 0.9091)) +(: cnet_isa_9d1d1e0303 (IsA origami art) (STV 1.0 0.9091)) +(: cnet_isa_e3535ec737 (IsA origanum herb) (STV 1.0 0.9091)) +(: cnet_isa_61f0ddd7e2 (IsA origin ancestry) (STV 1.0 0.9091)) +(: cnet_isa_a95a8148b7 (IsA origin intersection) (STV 1.0 0.9091)) +(: cnet_isa_720e1f3744 (IsA origin beginning) (STV 1.0 0.9091)) +(: cnet_isa_51f7164348 (IsA origin source) (STV 1.0 0.9091)) +(: cnet_isa_bb78849c6e (IsA origin_of_life geological_issue) (STV 1.0 0.9091)) +(: cnet_isa_3b41d6c62c (IsA original model) (STV 1.0 0.9091)) +(: cnet_isa_4f5d188024 (IsA original_sin religious_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_2f9e6abc73 (IsA original_sin sin) (STV 1.0 0.9091)) +(: cnet_isa_5e409bdc63 (IsA originalism belief) (STV 1.0 0.9091)) +(: cnet_isa_b9c3b0aa0d (IsA originality quality) (STV 1.0 0.9091)) +(: cnet_isa_872f64d367 (IsA originality ability) (STV 1.0 0.9091)) +(: cnet_isa_dfab63054c (IsA origination_fee fee) (STV 1.0 0.9091)) +(: cnet_isa_a9fc6577d7 (IsA originator creator) (STV 1.0 0.9091)) +(: cnet_isa_5e7a36fb0a (IsA orinasal_phone phone) (STV 1.0 0.9091)) +(: cnet_isa_a5957ae641 (IsA oriole bird) (STV 1.0 0.9524)) +(: cnet_isa_3152f591b0 (IsA oriolidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_adbd2d0542 (IsA oriolus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_76867c6a19 (IsA orion constellation) (STV 1.0 0.9339)) +(: cnet_isa_8c666d1e8a (IsA orion diffuse_nebula) (STV 1.0 0.9091)) +(: cnet_isa_2579b04f78 (IsA orite dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_afade98735 (IsA oriya magadhan) (STV 1.0 0.9091)) +(: cnet_isa_9409b92583 (IsA oriya indian) (STV 1.0 0.9091)) +(: cnet_isa_b03beb9b8b (IsA orleanism political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_caf6e3ccba (IsA orleanist monarchist) (STV 1.0 0.9091)) +(: cnet_isa_45f13d3bae (IsA orlop_deck deck) (STV 1.0 0.9091)) +(: cnet_isa_cdd1deda86 (IsA ormer abalone) (STV 1.0 0.9091)) +(: cnet_isa_71efce92c4 (IsA ormolu brass) (STV 1.0 0.9091)) +(: cnet_isa_28d93fa218 (IsA ormosia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_bd95e6f590 (IsA ornamental plant) (STV 1.0 0.9091)) +(: cnet_isa_7b0bc661be (IsA ornamental_kale annual_plant) (STV 1.0 0.9091)) +(: cnet_isa_13fd09122e (IsA ornamentalism practice) (STV 1.0 0.9091)) +(: cnet_isa_a2722dc594 (IsA ornamentation decoration) (STV 1.0 0.9091)) +(: cnet_isa_ac1c367a7d (IsA ornamentation state) (STV 1.0 0.9091)) +(: cnet_isa_b775492bae (IsA ornateness appearance) (STV 1.0 0.9091)) +(: cnet_isa_ad368bf469 (IsA ornithine amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_1103cbcd92 (IsA ornithischia animal_order) (STV 1.0 0.9091)) +(: cnet_isa_8fd2e35a89 (IsA ornithischian dinosaur) (STV 1.0 0.9091)) +(: cnet_isa_e2a3077e09 (IsA ornithogalum liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a05730c029 (IsA ornithologist zoologist) (STV 1.0 0.9091)) +(: cnet_isa_f1db2965b3 (IsA ornithology zoology) (STV 1.0 0.9091)) +(: cnet_isa_3d2c7ce5f8 (IsA ornithomimid theropod) (STV 1.0 0.9091)) +(: cnet_isa_5d8c58bacd (IsA ornithomimida animal_order) (STV 1.0 0.9091)) +(: cnet_isa_98262aa592 (IsA ornithopod ornithischian) (STV 1.0 0.9091)) +(: cnet_isa_9024618751 (IsA ornithorhynchidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_c7e693f975 (IsA ornithorhynchus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_d1626b6f7c (IsA orobanchaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_ec030dceee (IsA orogeny geological_process) (STV 1.0 0.9091)) +(: cnet_isa_962316c9ac (IsA oroide alloy) (STV 1.0 0.9091)) +(: cnet_isa_d4ab7adc5e (IsA orology geology) (STV 1.0 0.9091)) +(: cnet_isa_168c2b0a01 (IsA orontium monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_abcf80ec0a (IsA oropharynx cavity) (STV 1.0 0.9091)) +(: cnet_isa_f988b61ec5 (IsA orphan young) (STV 1.0 0.9091)) +(: cnet_isa_e29ce8cfc4 (IsA orphan line) (STV 1.0 0.9091)) +(: cnet_isa_d0fdcbdc58 (IsA orphan child) (STV 1.0 0.9091)) +(: cnet_isa_ed2a5a6f3e (IsA orphan person) (STV 1.0 0.9091)) +(: cnet_isa_e5f463640a (IsA orphan_site toxic_site) (STV 1.0 0.9091)) +(: cnet_isa_42b123213b (IsA orphanage institution) (STV 1.0 0.9091)) +(: cnet_isa_ef071bb3e8 (IsA orphanage condition) (STV 1.0 0.9091)) +(: cnet_isa_bd88bb96b3 (IsA orphrey edging) (STV 1.0 0.9091)) +(: cnet_isa_9a3c971042 (IsA orpiment mineral) (STV 1.0 0.9091)) +(: cnet_isa_bbd29211ff (IsA orpine sedum) (STV 1.0 0.9091)) +(: cnet_isa_1e07bc8729 (IsA orpington chicken) (STV 1.0 0.9091)) +(: cnet_isa_3496100dda (IsA orrery planetarium) (STV 1.0 0.9091)) +(: cnet_isa_c7506f660d (IsA orrisroot root) (STV 1.0 0.9091)) +(: cnet_isa_e344904fad (IsA ortalis bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_883e023e8a (IsA orthicon television_camera_tube) (STV 1.0 0.9091)) +(: cnet_isa_235d5f7c56 (IsA orthilia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_78594a90fd (IsA orthochorea chorea) (STV 1.0 0.9091)) +(: cnet_isa_b03257045d (IsA orthochromatic_film film) (STV 1.0 0.9091)) +(: cnet_isa_0fd9541679 (IsA orthoclase feldspar) (STV 1.0 0.9091)) +(: cnet_isa_cf4068ec87 (IsA orthodontic_treatment treatment) (STV 1.0 0.9091)) +(: cnet_isa_1367817c30 (IsA orthodontic dentistry) (STV 1.0 0.9091)) +(: cnet_isa_79337d4303 (IsA orthodontist dentist) (STV 1.0 0.9091)) +(: cnet_isa_39889d24b7 (IsA orthodox christian) (STV 1.0 0.9454)) +(: cnet_isa_829e3ea66a (IsA orthodox_church catholic_church) (STV 1.0 0.9091)) +(: cnet_isa_1f223464cd (IsA orthodox_jew israelite) (STV 1.0 0.9091)) +(: cnet_isa_fa2fc0356c (IsA orthodox_judaism judaism) (STV 1.0 0.9091)) +(: cnet_isa_cd57724515 (IsA orthodox_sleep sleep) (STV 1.0 0.9091)) +(: cnet_isa_a29061c4ac (IsA orthodoxy orientation) (STV 1.0 0.9091)) +(: cnet_isa_6f52a91baf (IsA orthodoxy unoriginality) (STV 1.0 0.9091)) +(: cnet_isa_480a88067a (IsA orthoepist phonologist) (STV 1.0 0.9091)) +(: cnet_isa_611c758c46 (IsA orthoepy phonology) (STV 1.0 0.9091)) +(: cnet_isa_b0e9970557 (IsA orthogonality rectangularity) (STV 1.0 0.9091)) +(: cnet_isa_5ef6a42fb2 (IsA orthogonality opposition) (STV 1.0 0.9091)) +(: cnet_isa_5ca324c76c (IsA orthography writing) (STV 1.0 0.9091)) +(: cnet_isa_642824d21f (IsA orthomyxovirus myxovirus) (STV 1.0 0.9091)) +(: cnet_isa_6fd31e2530 (IsA orthopedic medical_science) (STV 1.0 0.9091)) +(: cnet_isa_1ddd58d608 (IsA orthopedist specialist) (STV 1.0 0.9091)) +(: cnet_isa_b27cb5a662 (IsA orthopnea dyspnea) (STV 1.0 0.9091)) +(: cnet_isa_bdc98dea53 (IsA orthopristis fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_9af03625fc (IsA orthopter heavier_than_air_craft) (STV 1.0 0.9091)) +(: cnet_isa_f06c7fdc80 (IsA orthoptera animal_order) (STV 1.0 0.9091)) +(: cnet_isa_b08b0b2da4 (IsA orthopterous_insect insect) (STV 1.0 0.9091)) +(: cnet_isa_1690e23b41 (IsA orthoptic treatment) (STV 1.0 0.9091)) +(: cnet_isa_0b89cae612 (IsA orthoptist specialist) (STV 1.0 0.9091)) +(: cnet_isa_b1aa63760b (IsA orthoscope ophthalmoscope) (STV 1.0 0.9091)) +(: cnet_isa_bed231c900 (IsA orthostatic_hypotension hypotension) (STV 1.0 0.9091)) +(: cnet_isa_3566666359 (IsA orthotomus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_9243cdf434 (IsA orthotropous_ovule ovule) (STV 1.0 0.9091)) +(: cnet_isa_fbd20fc3f6 (IsA ortolan bunting) (STV 1.0 0.9091)) +(: cnet_isa_6541dc2e6e (IsA ortygan wading_bird) (STV 1.0 0.9091)) +(: cnet_isa_bf0dd577e3 (IsA orycteropodidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_ee6c8941e3 (IsA orycteropus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_63fc087268 (IsA oryctolagus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_27c0048b30 (IsA oryx antelope) (STV 1.0 0.9091)) +(: cnet_isa_5c764f018a (IsA oryza monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0519fd7c82 (IsA oryzomy mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_252d110639 (IsA oryzopsis monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6e23304dce (IsA orzo pasta) (STV 1.0 0.9091)) +(: cnet_isa_d7cb96d0a1 (IsA os orifice) (STV 1.0 0.9091)) +(: cnet_isa_42cfdb1985 (IsA osage dhegiha) (STV 1.0 0.9091)) +(: cnet_isa_76acf0b6cd (IsA osage_orange angiospermous_yellowwood) (STV 1.0 0.9091)) +(: cnet_isa_ce97db3081 (IsA oscan osco_umbrian) (STV 1.0 0.9091)) +(: cnet_isa_2358eda4e8 (IsA oscan italian) (STV 1.0 0.9091)) +(: cnet_isa_5a1a37e88b (IsA oscheocele swelling) (STV 1.0 0.9091)) +(: cnet_isa_1505240ae5 (IsA oscillation wave) (STV 1.0 0.9091)) +(: cnet_isa_16afcf2054 (IsA oscillation natural_process) (STV 1.0 0.9091)) +(: cnet_isa_6027e63a53 (IsA oscillator generator) (STV 1.0 0.9091)) +(: cnet_isa_8aa774c204 (IsA oscillatoriaceae bacteria_family) (STV 1.0 0.9091)) +(: cnet_isa_f862dbf13c (IsA oscillogram recording) (STV 1.0 0.9091)) +(: cnet_isa_281eeb6d3d (IsA oscillograph recorder) (STV 1.0 0.9091)) +(: cnet_isa_ac5d3b385b (IsA oscilloscope electronic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_bbc58fdb15 (IsA oscine passerine) (STV 1.0 0.9091)) +(: cnet_isa_f07877ff8b (IsA oscine animal_order) (STV 1.0 0.9091)) +(: cnet_isa_d8a0b66136 (IsA oscitancy dullness) (STV 1.0 0.9091)) +(: cnet_isa_ac5b69123a (IsA oscitancy sleepiness) (STV 1.0 0.9091)) +(: cnet_isa_0b8b595420 (IsA osco_umbrian italic) (STV 1.0 0.9091)) +(: cnet_isa_48df0e5962 (IsA osculation contact) (STV 1.0 0.9091)) +(: cnet_isa_a332f3a967 (IsA osier willow) (STV 1.0 0.9091)) +(: cnet_isa_6c4f608a1e (IsA osier withe) (STV 1.0 0.9091)) +(: cnet_isa_18fd302a42 (IsA osmanthus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0bc8aa3418 (IsA osmeridae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_89d350c316 (IsA osmerus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_0532c07dee (IsA osmiridium mineral) (STV 1.0 0.9091)) +(: cnet_isa_b81320f989 (IsA osmium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_5d35f9f2e4 (IsA osmoreceptor end_organ) (STV 1.0 0.9091)) +(: cnet_isa_a01d4f022a (IsA osmosis diffusion) (STV 1.0 0.9091)) +(: cnet_isa_da3cd848cf (IsA osmotic_pressure pressure) (STV 1.0 0.9091)) +(: cnet_isa_d5ea7907a8 (IsA osmundaceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_901bea28ea (IsA osprey hawk) (STV 1.0 0.9091)) +(: cnet_isa_00f2e4b67e (IsA ossete iranian) (STV 1.0 0.9091)) +(: cnet_isa_a7e24a6333 (IsA ossicle bone) (STV 1.0 0.9091)) +(: cnet_isa_6475c38518 (IsA ossification conventionality) (STV 1.0 0.9091)) +(: cnet_isa_4cd837dd51 (IsA ossification calcification) (STV 1.0 0.9091)) +(: cnet_isa_5b022059cf (IsA ossification human_process) (STV 1.0 0.9091)) +(: cnet_isa_5eeb0e5665 (IsA ossification organic_process) (STV 1.0 0.9091)) +(: cnet_isa_4a39725c0c (IsA osso_buco dish) (STV 1.0 0.9091)) +(: cnet_isa_8150af9daf (IsA ossuary receptacle) (STV 1.0 0.9091)) +(: cnet_isa_6e0bdcdc4c (IsA ostariophysi soft_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_90fb09f85b (IsA osteichthye class) (STV 1.0 0.9091)) +(: cnet_isa_f1f63d6901 (IsA osteitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_64df24d730 (IsA ostensive_definition definition) (STV 1.0 0.9091)) +(: cnet_isa_aa1d8e157b (IsA ostentation inelegance) (STV 1.0 0.9091)) +(: cnet_isa_682087e217 (IsA ostentation pretentiousness) (STV 1.0 0.9091)) +(: cnet_isa_5cd6d4dbc8 (IsA ostentation display) (STV 1.0 0.9091)) +(: cnet_isa_6ec9120e49 (IsA osteoarthritis arthritis) (STV 1.0 0.9091)) +(: cnet_isa_b0ba9b40c1 (IsA osteoblast embryonic_cell) (STV 1.0 0.9091)) +(: cnet_isa_d3299db382 (IsA osteoblastoma benign_tumor) (STV 1.0 0.9091)) +(: cnet_isa_9f34d379c8 (IsA osteochondroma benign_tumor) (STV 1.0 0.9091)) +(: cnet_isa_589e7c1ebf (IsA osteoclasis treatment) (STV 1.0 0.9091)) +(: cnet_isa_61f3e12b25 (IsA osteoclast bone_cell) (STV 1.0 0.9091)) +(: cnet_isa_f43358d33c (IsA osteocyte bone_cell) (STV 1.0 0.9091)) +(: cnet_isa_fca270858d (IsA osteodystrophy dystrophy) (STV 1.0 0.9091)) +(: cnet_isa_a193b5f02e (IsA osteogenesis_imperfecta autosomal_dominant_disease) (STV 1.0 0.9091)) +(: cnet_isa_3e53696f81 (IsA osteologist anatomist) (STV 1.0 0.9091)) +(: cnet_isa_8c04dd384c (IsA osteology anatomy) (STV 1.0 0.9091)) +(: cnet_isa_a8723c6eee (IsA osteolysis lysis) (STV 1.0 0.9091)) +(: cnet_isa_2db74a2fc9 (IsA osteoma benign_tumor) (STV 1.0 0.9091)) +(: cnet_isa_fc7d85eccd (IsA osteomalacia malacia) (STV 1.0 0.9091)) +(: cnet_isa_dcacc773e5 (IsA osteomyelitis osteitis) (STV 1.0 0.9091)) +(: cnet_isa_5572658a41 (IsA osteopath therapist) (STV 1.0 0.9091)) +(: cnet_isa_e5fce17376 (IsA osteopathy treatment) (STV 1.0 0.9091)) +(: cnet_isa_275bfe5764 (IsA osteopetrosis genetic_disease) (STV 1.0 0.9091)) +(: cnet_isa_f99569c22b (IsA osteophyte process) (STV 1.0 0.9091)) +(: cnet_isa_8b82ecaf2f (IsA osteoporosis pathology) (STV 1.0 0.9091)) +(: cnet_isa_8073fd35d6 (IsA osteosarcoma sarcoma) (STV 1.0 0.9091)) +(: cnet_isa_38810493f7 (IsA osteosclerosis sclerosis) (STV 1.0 0.9091)) +(: cnet_isa_d41bd5a276 (IsA osteostracan jawless_vertebrate) (STV 1.0 0.9091)) +(: cnet_isa_f83aae1795 (IsA osteostraci animal_order) (STV 1.0 0.9091)) +(: cnet_isa_da53640192 (IsA osteotomy operation) (STV 1.0 0.9091)) +(: cnet_isa_99a8caab3e (IsA ostinato phrase) (STV 1.0 0.9091)) +(: cnet_isa_64c4020cbb (IsA ostiole pore) (STV 1.0 0.9091)) +(: cnet_isa_dfc62d278c (IsA ostomy operation) (STV 1.0 0.9091)) +(: cnet_isa_0d06903985 (IsA ostraciidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_88097044be (IsA ostracism ejection) (STV 1.0 0.9091)) +(: cnet_isa_8381666638 (IsA ostracoda class) (STV 1.0 0.9091)) +(: cnet_isa_621291c331 (IsA ostracoderm jawless_vertebrate) (STV 1.0 0.9091)) +(: cnet_isa_c6b2a47bde (IsA ostracodermi animal_order) (STV 1.0 0.9091)) +(: cnet_isa_d2cf793597 (IsA ostrea mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_505b0da4a3 (IsA ostreidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_9c3307cd69 (IsA ostrich bird) (STV 1.0 0.9677)) +(: cnet_isa_6042ad5842 (IsA ostrich ratite) (STV 1.0 0.9091)) +(: cnet_isa_f1aca54a08 (IsA ostrich person) (STV 1.0 0.9091)) +(: cnet_isa_315238b101 (IsA ostrich_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_feaf7d4a42 (IsA ostriche animal) (STV 1.0 0.9091)) +(: cnet_isa_a3f2e2200b (IsA ostriche bird) (STV 1.0 0.9091)) +(: cnet_isa_8672212717 (IsA ostrogoth goth) (STV 1.0 0.9091)) +(: cnet_isa_8a51bbffab (IsA ostrya hamamelid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e40601d685 (IsA ostryopsis hamamelid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c268ffbc1b (IsA ostyak_samoyed russian) (STV 1.0 0.9091)) +(: cnet_isa_ac9e530bb1 (IsA osx operating_system) (STV 1.0 0.9091)) +(: cnet_isa_fef229f275 (IsA otaheite_arrowroot starch) (STV 1.0 0.9091)) +(: cnet_isa_ac8adf8c9c (IsA otaria mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_cd44f2b291 (IsA otariidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_81fc015f99 (IsA otherness difference) (STV 1.0 0.9091)) +(: cnet_isa_1ef979a505 (IsA otherworld abstraction) (STV 1.0 0.9091)) +(: cnet_isa_2dd8e595df (IsA othonna shrub) (STV 1.0 0.9091)) +(: cnet_isa_ddd4682888 (IsA otic_ganglion autonomic_ganglion) (STV 1.0 0.9091)) +(: cnet_isa_794c3b1957 (IsA otide animal_order) (STV 1.0 0.9091)) +(: cnet_isa_46dde47626 (IsA otididae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_3069618c4d (IsA otis bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_4964f8eefd (IsA otitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_5d9fc088f5 (IsA otitis_externa otitis) (STV 1.0 0.9091)) +(: cnet_isa_01ba3e14da (IsA otitis_media otitis) (STV 1.0 0.9091)) +(: cnet_isa_35520f718e (IsA oto chiwere) (STV 1.0 0.9091)) +(: cnet_isa_f898b563dc (IsA otoe siouan) (STV 1.0 0.9091)) +(: cnet_isa_d7bbf75af8 (IsA otology medicine) (STV 1.0 0.9091)) +(: cnet_isa_530fb825da (IsA otoplasty plastic_surgery) (STV 1.0 0.9091)) +(: cnet_isa_4715b60a83 (IsA otorhinolaryngology medicine) (STV 1.0 0.9091)) +(: cnet_isa_56ed578577 (IsA otorrhea pathology) (STV 1.0 0.9091)) +(: cnet_isa_7fcce69d33 (IsA otosclerosis genetic_disease) (STV 1.0 0.9091)) +(: cnet_isa_d2d38d8d10 (IsA otoscope medical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_5ad6d0a97b (IsA ottava_rima stanza) (STV 1.0 0.9091)) +(: cnet_isa_32ff58eba5 (IsA ottawa algonquin) (STV 1.0 0.9091)) +(: cnet_isa_1468c46129 (IsA otter musteline_mammal) (STV 1.0 0.9091)) +(: cnet_isa_888909e57d (IsA otter fur) (STV 1.0 0.9091)) +(: cnet_isa_3d000699be (IsA otter_shrew insectivore) (STV 1.0 0.9091)) +(: cnet_isa_3ceb8b8ee2 (IsA otterhound hound) (STV 1.0 0.9091)) +(: cnet_isa_cdb480d945 (IsA ottoman seat) (STV 1.0 0.9091)) +(: cnet_isa_5d6bcd335c (IsA ottoman dynasty) (STV 1.0 0.9091)) +(: cnet_isa_282ff0873b (IsA ottoman_turk turk) (STV 1.0 0.9091)) +(: cnet_isa_235b8af8fb (IsA otus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_f453fd27e9 (IsA oubliette dungeon) (STV 1.0 0.9091)) +(: cnet_isa_a0221221fc (IsA ouguiya mauritanian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_8e7550bd1e (IsA ouija board) (STV 1.0 0.9091)) +(: cnet_isa_81cf5d965c (IsA oulu in_finland) (STV 1.0 0.9091)) +(: cnet_isa_14e3171d95 (IsA ounce apothecary_unit) (STV 1.0 0.9091)) +(: cnet_isa_b51515d7c2 (IsA ounce avoirdupois_unit) (STV 1.0 0.9091)) +(: cnet_isa_ddb4112b84 (IsA ounce troy_unit) (STV 1.0 0.9091)) +(: cnet_isa_e7a6b9fe2d (IsA our_lord_s_candle yucca) (STV 1.0 0.9091)) +(: cnet_isa_fdec4f10e0 (IsA ouranopithecus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_fcd07b56a7 (IsA ouster ejection) (STV 1.0 0.9091)) +(: cnet_isa_d376d078c0 (IsA ouster eviction) (STV 1.0 0.9091)) +(: cnet_isa_f7c36f2798 (IsA ouster person) (STV 1.0 0.9091)) +(: cnet_isa_ac76bede58 (IsA out failure) (STV 1.0 0.9091)) +(: cnet_isa_968cf2f6a3 (IsA out_and_outer expert) (STV 1.0 0.9091)) +(: cnet_isa_a3d3dfd616 (IsA out_basket receptacle) (STV 1.0 0.9091)) +(: cnet_isa_83c8d7f8f9 (IsA out_of_body_experience experience) (STV 1.0 0.9091)) +(: cnet_isa_95243b5667 (IsA out_of_court_settlement settlement) (STV 1.0 0.9091)) +(: cnet_isa_43f536704d (IsA outage breakdown) (STV 1.0 0.9091)) +(: cnet_isa_1a9a87bae4 (IsA outage indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_4fecaf2d5e (IsA outback bush) (STV 1.0 0.9091)) +(: cnet_isa_d703c2d5c2 (IsA outboard_motor internal_combustion_engine) (STV 1.0 0.9091)) +(: cnet_isa_6d15202b43 (IsA outboard_motorboat motorboat) (STV 1.0 0.9091)) +(: cnet_isa_2e3ab4a50b (IsA outbreak happening) (STV 1.0 0.9091)) +(: cnet_isa_bd1ed03786 (IsA outbuilding building) (STV 1.0 0.9091)) +(: cnet_isa_d13a4e1128 (IsA outburst disturbance) (STV 1.0 0.9091)) +(: cnet_isa_2b0bf9e07f (IsA outburst happening) (STV 1.0 0.9091)) +(: cnet_isa_4bfb57cd39 (IsA outcast unfortunate) (STV 1.0 0.9091)) +(: cnet_isa_286f52a366 (IsA outcaste person) (STV 1.0 0.9091)) +(: cnet_isa_289c5f7d0f (IsA outcrop rock) (STV 1.0 0.9091)) +(: cnet_isa_7a60a84f6c (IsA outdoor_game athletic_game) (STV 1.0 0.9091)) +(: cnet_isa_ec21b365d3 (IsA outdoor_sport sport) (STV 1.0 0.9091)) +(: cnet_isa_9f2d2bca0b (IsA outdoor outside) (STV 1.0 0.9091)) +(: cnet_isa_521af5cf38 (IsA outdoorsman person) (STV 1.0 0.9091)) +(: cnet_isa_1e085777c8 (IsA outdoorswoman outdoorsman) (STV 1.0 0.9091)) +(: cnet_isa_668d453f1f (IsA outer_planet planet) (STV 1.0 0.9091)) +(: cnet_isa_8f23536f42 (IsA outer_space location) (STV 1.0 0.9091)) +(: cnet_isa_1aba9f1f47 (IsA outer_space space) (STV 1.0 0.9091)) +(: cnet_isa_76bf96f5b6 (IsA outercourse sexual_activity) (STV 1.0 0.9091)) +(: cnet_isa_c572635682 (IsA outerwear clothing) (STV 1.0 0.9091)) +(: cnet_isa_73d839ac41 (IsA outfall exit) (STV 1.0 0.9091)) +(: cnet_isa_567a9ce4a9 (IsA outfield tract) (STV 1.0 0.9091)) +(: cnet_isa_997d93677f (IsA outfielder fielder) (STV 1.0 0.9091)) +(: cnet_isa_f65ed6ee1c (IsA outfit attire) (STV 1.0 0.9091)) +(: cnet_isa_ab861efa32 (IsA outfit unit) (STV 1.0 0.9091)) +(: cnet_isa_98e7c33833 (IsA outfitter shop) (STV 1.0 0.9091)) +(: cnet_isa_f123ef981b (IsA outfitter garmentmaker) (STV 1.0 0.9091)) +(: cnet_isa_59358c9393 (IsA outfitting arming) (STV 1.0 0.9091)) +(: cnet_isa_eed7b0c868 (IsA outflow flow) (STV 1.0 0.9091)) +(: cnet_isa_93b08a73fd (IsA outgo transferred_property) (STV 1.0 0.9091)) +(: cnet_isa_39afc63274 (IsA outgrowth consequence) (STV 1.0 0.9091)) +(: cnet_isa_af7035970a (IsA outhouse outbuilding) (STV 1.0 0.9091)) +(: cnet_isa_5b9238ce74 (IsA outlandishness unfamiliarity) (STV 1.0 0.9091)) +(: cnet_isa_275523aa59 (IsA outlet_box receptacle) (STV 1.0 0.9091)) +(: cnet_isa_9834551f2d (IsA outlier resident) (STV 1.0 0.9091)) +(: cnet_isa_57c5e1d89f (IsA outlier deviation) (STV 1.0 0.9091)) +(: cnet_isa_355199c97d (IsA outline plan) (STV 1.0 0.9091)) +(: cnet_isa_f7511c309b (IsA outline summary) (STV 1.0 0.9091)) +(: cnet_isa_7818be456c (IsA outline boundary) (STV 1.0 0.9091)) +(: cnet_isa_34ec1985ce (IsA outpatient patient) (STV 1.0 0.9091)) +(: cnet_isa_b470ca720d (IsA outport port) (STV 1.0 0.9091)) +(: cnet_isa_606c8d0fff (IsA outpost military_post) (STV 1.0 0.9091)) +(: cnet_isa_f91717cde9 (IsA output production) (STV 1.0 0.9091)) +(: cnet_isa_86622e449f (IsA output product) (STV 1.0 0.9091)) +(: cnet_isa_21cc2011be (IsA output indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_b8b81fa863 (IsA output_contract contract) (STV 1.0 0.9091)) +(: cnet_isa_3f9f5b4744 (IsA output_device peripheral) (STV 1.0 0.9091)) +(: cnet_isa_29eb0a1c7f (IsA output_file computer_file) (STV 1.0 0.9091)) +(: cnet_isa_1f370e2bf8 (IsA output_program utility_program) (STV 1.0 0.9091)) +(: cnet_isa_5da97dceec (IsA output_routine utility_routine) (STV 1.0 0.9091)) +(: cnet_isa_36beeefa9a (IsA output_signal signal) (STV 1.0 0.9091)) +(: cnet_isa_8a411aff4a (IsA output_to_input_ratio ratio) (STV 1.0 0.9091)) +(: cnet_isa_ec6d3a54bd (IsA outrage atrocity) (STV 1.0 0.9091)) +(: cnet_isa_c9b9ec4084 (IsA outrageousness indecency) (STV 1.0 0.9091)) +(: cnet_isa_27ce4f9714 (IsA outreach reach) (STV 1.0 0.9091)) +(: cnet_isa_515c8ff7f6 (IsA outrider bodyguard) (STV 1.0 0.9091)) +(: cnet_isa_c592131f52 (IsA outrigger stabilizer) (STV 1.0 0.9091)) +(: cnet_isa_172a87b373 (IsA outrigger_canoe canoe) (STV 1.0 0.9091)) +(: cnet_isa_dabaa57f33 (IsA outside region) (STV 1.0 0.9091)) +(: cnet_isa_bcd8df07e5 (IsA outside surface) (STV 1.0 0.9091)) +(: cnet_isa_4beb875bb0 (IsA outside_caliper caliper) (STV 1.0 0.9091)) +(: cnet_isa_a89ac3e650 (IsA outside_clinch clinch) (STV 1.0 0.9091)) +(: cnet_isa_e0090d65b6 (IsA outside_loop loop) (STV 1.0 0.9091)) +(: cnet_isa_f85c772800 (IsA outside_mirror car_mirror) (STV 1.0 0.9091)) +(: cnet_isa_e399434975 (IsA outsider contestant) (STV 1.0 0.9091)) +(: cnet_isa_8d6065fe0d (IsA outsider_art genre) (STV 1.0 0.9091)) +(: cnet_isa_4f29aef058 (IsA outsize size) (STV 1.0 0.9091)) +(: cnet_isa_b76249abf2 (IsA outskirt city_district) (STV 1.0 0.9091)) +(: cnet_isa_7a8efb53a5 (IsA outskirt section) (STV 1.0 0.9091)) +(: cnet_isa_a7d455b0b0 (IsA outsole sole) (STV 1.0 0.9091)) +(: cnet_isa_a4fed5bf24 (IsA outstation post) (STV 1.0 0.9091)) +(: cnet_isa_abcca58398 (IsA outstroke throw) (STV 1.0 0.9091)) +(: cnet_isa_0641d720ff (IsA outtake scene) (STV 1.0 0.9091)) +(: cnet_isa_4e0249bde8 (IsA outthrust outcrop) (STV 1.0 0.9091)) +(: cnet_isa_17bf46704b (IsA outwardness extraversion) (STV 1.0 0.9091)) +(: cnet_isa_242a45672d (IsA outwardness position) (STV 1.0 0.9091)) +(: cnet_isa_54c9551a34 (IsA outwardness cognitive_state) (STV 1.0 0.9091)) +(: cnet_isa_1214e8cc64 (IsA outwork defensive_structure) (STV 1.0 0.9091)) +(: cnet_isa_63d4d31916 (IsA ouzo liquor) (STV 1.0 0.9091)) +(: cnet_isa_97b921d5e8 (IsA ovalipe arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_9d58a0208f (IsA ovarian_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_afe519dedb (IsA ovarian_cyst cyst) (STV 1.0 0.9091)) +(: cnet_isa_a7def5b9b0 (IsA ovarian_pregnancy ectopic_pregnancy) (STV 1.0 0.9091)) +(: cnet_isa_e47437b50c (IsA ovarian_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_f57e022d41 (IsA ovaritis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_ce874a58c8 (IsA ovary reproductive_structure) (STV 1.0 0.9091)) +(: cnet_isa_07b970a719 (IsA ovary female_internal_reproductive_organ) (STV 1.0 0.9091)) +(: cnet_isa_1658563d8d (IsA ovary gonad) (STV 1.0 0.9091)) +(: cnet_isa_d86c74b72d (IsA ovate_leaf simple_leaf) (STV 1.0 0.9091)) +(: cnet_isa_33c14e0e41 (IsA ovation recognition) (STV 1.0 0.9091)) +(: cnet_isa_d751e2bfad (IsA oven kitchen_appliance) (STV 1.0 0.9091)) +(: cnet_isa_e5cdaf88ae (IsA oven_stuffer roaster) (STV 1.0 0.9091)) +(: cnet_isa_6e49da626b (IsA oven_thermometer thermometer) (STV 1.0 0.9091)) +(: cnet_isa_6d50c36b2f (IsA ovenbird new_world_warbler) (STV 1.0 0.9091)) +(: cnet_isa_dc3ab5b524 (IsA ovenbird tyrannid) (STV 1.0 0.9091)) +(: cnet_isa_e4c974481c (IsA ovenware crockery) (STV 1.0 0.9091)) +(: cnet_isa_ec9b9f4c8c (IsA over part) (STV 1.0 0.9091)) +(: cnet_isa_15f9a69287 (IsA over_counter_drug medicine) (STV 1.0 0.9091)) +(: cnet_isa_7f5d03c6e2 (IsA over_counter_market stock_exchange) (STV 1.0 0.9091)) +(: cnet_isa_18e0de988c (IsA over_counter_stock unlisted_security) (STV 1.0 0.9091)) +(: cnet_isa_d2bb9e50fd (IsA over_shoulder_bombing loft_bombing) (STV 1.0 0.9091)) +(: cnet_isa_1f9215e4f4 (IsA overabundance abundance) (STV 1.0 0.9091)) +(: cnet_isa_d4a7433f08 (IsA overachievement performance) (STV 1.0 0.9091)) +(: cnet_isa_5e2be9726c (IsA overachiever student) (STV 1.0 0.9091)) +(: cnet_isa_7f188ce823 (IsA overactivity bodily_process) (STV 1.0 0.9091)) +(: cnet_isa_485c4f4a35 (IsA overage asset) (STV 1.0 0.9091)) +(: cnet_isa_10e5bb5dbf (IsA overall coverall) (STV 1.0 0.9091)) +(: cnet_isa_f2b54c1a72 (IsA overall work_clothing) (STV 1.0 0.9091)) +(: cnet_isa_0024fb4a91 (IsA overanxiety anxiety) (STV 1.0 0.9091)) +(: cnet_isa_992b1904a9 (IsA overbid bid) (STV 1.0 0.9091)) +(: cnet_isa_73dbd8651b (IsA overbite malocclusion) (STV 1.0 0.9091)) +(: cnet_isa_508372afb2 (IsA overburden land) (STV 1.0 0.9091)) +(: cnet_isa_1925377a8d (IsA overcapitalization capitalization) (STV 1.0 0.9091)) +(: cnet_isa_4a89081f19 (IsA overcast casting) (STV 1.0 0.9091)) +(: cnet_isa_ae73692104 (IsA overcast whipstitch) (STV 1.0 0.9091)) +(: cnet_isa_36620a152c (IsA overcharge charge) (STV 1.0 0.9091)) +(: cnet_isa_f67e3045f2 (IsA overcoat coating) (STV 1.0 0.9091)) +(: cnet_isa_65342fcd87 (IsA overcompensation compensation) (STV 1.0 0.9091)) +(: cnet_isa_126f7d7f9c (IsA overcredulity credulity) (STV 1.0 0.9091)) +(: cnet_isa_996b8d7f1c (IsA overcrowding problem_in_today_city) (STV 1.0 0.9091)) +(: cnet_isa_ec8a7d86ab (IsA overcup_oak oak) (STV 1.0 0.9091)) +(: cnet_isa_f59caf91e2 (IsA overdraft draft) (STV 1.0 0.9091)) +(: cnet_isa_ed411dfe4c (IsA overdraft_credit open_end_credit) (STV 1.0 0.9091)) +(: cnet_isa_1cd9cea5df (IsA overdrive high_gear) (STV 1.0 0.9091)) +(: cnet_isa_cd203e0763 (IsA overdrive action) (STV 1.0 0.9091)) +(: cnet_isa_ed12c595d4 (IsA overemphasis vehemence) (STV 1.0 0.9091)) +(: cnet_isa_b3393728ed (IsA overestimate estimate) (STV 1.0 0.9091)) +(: cnet_isa_2932866f2a (IsA overestimate appraisal) (STV 1.0 0.9091)) +(: cnet_isa_892db3456c (IsA overexertion effort) (STV 1.0 0.9091)) +(: cnet_isa_f5b42d53d2 (IsA overexploitation exploitation) (STV 1.0 0.9091)) +(: cnet_isa_137b05c4ad (IsA overexposure exposure) (STV 1.0 0.9091)) +(: cnet_isa_02f5fdde83 (IsA overfeeding feeding) (STV 1.0 0.9091)) +(: cnet_isa_6e6c0f8618 (IsA overflight flight) (STV 1.0 0.9091)) +(: cnet_isa_3376b5969f (IsA overflow flow) (STV 1.0 0.9091)) +(: cnet_isa_2875cea6c8 (IsA overflow_incontinence enuresis) (STV 1.0 0.9091)) +(: cnet_isa_ad1a61e163 (IsA overgarment garment) (STV 1.0 0.9091)) +(: cnet_isa_dbd91f9215 (IsA overgrowth profusion) (STV 1.0 0.9091)) +(: cnet_isa_01789a60fd (IsA overhand_knot knot) (STV 1.0 0.9091)) +(: cnet_isa_806f635188 (IsA overhand_pitch pitch) (STV 1.0 0.9091)) +(: cnet_isa_e7a10dba5b (IsA overhand_stitch embroidery_stitch) (STV 1.0 0.9091)) +(: cnet_isa_749417498a (IsA overhang projection) (STV 1.0 0.9091)) +(: cnet_isa_3115f3907c (IsA overhaul care) (STV 1.0 0.9091)) +(: cnet_isa_9a70cc9462 (IsA overhead return) (STV 1.0 0.9091)) +(: cnet_isa_8f70dcb786 (IsA overhead ceiling) (STV 1.0 0.9091)) +(: cnet_isa_eac8daba5c (IsA overhead_projector projector) (STV 1.0 0.9091)) +(: cnet_isa_d2ebfb13e7 (IsA overheating heating) (STV 1.0 0.9091)) +(: cnet_isa_206957954d (IsA overindulgence indulgence) (STV 1.0 0.9091)) +(: cnet_isa_531787da8e (IsA overkill effort) (STV 1.0 0.9091)) +(: cnet_isa_8e77f29ea3 (IsA overkill capability) (STV 1.0 0.9091)) +(: cnet_isa_606c8186c0 (IsA overlap concurrence) (STV 1.0 0.9091)) +(: cnet_isa_9bd0b36fc8 (IsA overlap representation) (STV 1.0 0.9091)) +(: cnet_isa_19ad767dc9 (IsA overlay decoration) (STV 1.0 0.9091)) +(: cnet_isa_e9fa9f347a (IsA overlay layer) (STV 1.0 0.9091)) +(: cnet_isa_a0fb0135dd (IsA overlip lip) (STV 1.0 0.9091)) +(: cnet_isa_f795037099 (IsA overload load) (STV 1.0 0.9091)) +(: cnet_isa_9556c9438d (IsA overlook topographic_point) (STV 1.0 0.9091)) +(: cnet_isa_6f4658bf13 (IsA overlord ruler) (STV 1.0 0.9091)) +(: cnet_isa_fa27c0ed63 (IsA overlordship position) (STV 1.0 0.9091)) +(: cnet_isa_c71bc816cd (IsA overmantel shelf) (STV 1.0 0.9091)) +(: cnet_isa_57c266b719 (IsA overnighter bag) (STV 1.0 0.9091)) +(: cnet_isa_35f7e92c9d (IsA overnighter guest) (STV 1.0 0.9091)) +(: cnet_isa_e32377b82d (IsA overpass bridge) (STV 1.0 0.9091)) +(: cnet_isa_fd64d2502a (IsA overpayment payment) (STV 1.0 0.9091)) +(: cnet_isa_472b93112b (IsA overplus excess) (STV 1.0 0.9091)) +(: cnet_isa_e50d0954f6 (IsA overpopulation serious_problem) (STV 1.0 0.9339)) +(: cnet_isa_a69bfcff4d (IsA overpopulation solvable_problem) (STV 1.0 0.9091)) +(: cnet_isa_ec6ef2b66b (IsA overpopulation population) (STV 1.0 0.9091)) +(: cnet_isa_a40786046a (IsA overpressure atmospheric_pressure) (STV 1.0 0.9091)) +(: cnet_isa_656e0cb3bd (IsA overprint print) (STV 1.0 0.9091)) +(: cnet_isa_76b6e978ee (IsA overproduction production) (STV 1.0 0.9091)) +(: cnet_isa_082b4dc137 (IsA overreaction reaction) (STV 1.0 0.9091)) +(: cnet_isa_0d83000b62 (IsA override device) (STV 1.0 0.9091)) +(: cnet_isa_e580d4bd8b (IsA overseer supervisor) (STV 1.0 0.9091)) +(: cnet_isa_6bd3c2e828 (IsA oversensitiveness sensitivity) (STV 1.0 0.9091)) +(: cnet_isa_f2bfa4b659 (IsA overshoe footwear) (STV 1.0 0.9091)) +(: cnet_isa_013d2aa215 (IsA overshoot landing_approach) (STV 1.0 0.9091)) +(: cnet_isa_3e6885a659 (IsA oversight mistake) (STV 1.0 0.9091)) +(: cnet_isa_57e47258fc (IsA oversight omission) (STV 1.0 0.9091)) +(: cnet_isa_c11b8be026 (IsA oversimplification simplification) (STV 1.0 0.9091)) +(: cnet_isa_78d71aa9ed (IsA overskirt skirt) (STV 1.0 0.9091)) +(: cnet_isa_a358ad8caa (IsA overspill move) (STV 1.0 0.9091)) +(: cnet_isa_4911154b72 (IsA overstrain strain) (STV 1.0 0.9091)) +(: cnet_isa_7ffd5acb23 (IsA overt_operation intelligence) (STV 1.0 0.9091)) +(: cnet_isa_d5ee9c8895 (IsA overthrow termination) (STV 1.0 0.9091)) +(: cnet_isa_5c1a16b7ba (IsA overtime time_period) (STV 1.0 0.9091)) +(: cnet_isa_99d9cdffda (IsA overtime work_time) (STV 1.0 0.9091)) +(: cnet_isa_090872bc85 (IsA overtime_period overtime) (STV 1.0 0.9091)) +(: cnet_isa_1740ea65ec (IsA overtolerance permissiveness) (STV 1.0 0.9091)) +(: cnet_isa_203af63cc6 (IsA overtone harmonic) (STV 1.0 0.9091)) +(: cnet_isa_f40f6a2952 (IsA overtone meaning) (STV 1.0 0.9091)) +(: cnet_isa_364f466bc2 (IsA overture music) (STV 1.0 0.9091)) +(: cnet_isa_91d0d8cbd2 (IsA overture suggestion) (STV 1.0 0.9091)) +(: cnet_isa_e321f0023b (IsA overturn success) (STV 1.0 0.9091)) +(: cnet_isa_c225456dc3 (IsA overvaluation evaluation) (STV 1.0 0.9091)) +(: cnet_isa_d0595300a3 (IsA overview summary) (STV 1.0 0.9091)) +(: cnet_isa_0714f0e13f (IsA overwork labor) (STV 1.0 0.9091)) +(: cnet_isa_39303fe242 (IsA ovibo mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_b6aa597aed (IsA ovipositor organ) (STV 1.0 0.9091)) +(: cnet_isa_5aa7a47552 (IsA oviraptorid maniraptor) (STV 1.0 0.9091)) +(: cnet_isa_d3bfb4b483 (IsA ovis mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_7f17ea5bc2 (IsA ovoid solid) (STV 1.0 0.9091)) +(: cnet_isa_b2679be96a (IsA ovolo molding) (STV 1.0 0.9091)) +(: cnet_isa_6a623089e1 (IsA ovotestis gonad) (STV 1.0 0.9091)) +(: cnet_isa_aec99a3c41 (IsA ovulation organic_process) (STV 1.0 0.9091)) +(: cnet_isa_7121117a4b (IsA ovulation_method_of_family_planning natural_family_planning) (STV 1.0 0.9091)) +(: cnet_isa_c7290b1a7a (IsA ovule ovum) (STV 1.0 0.9091)) +(: cnet_isa_8efe23f922 (IsA ovule reproductive_structure) (STV 1.0 0.9091)) +(: cnet_isa_b4c07944a6 (IsA ovum gamete) (STV 1.0 0.9091)) +(: cnet_isa_c202455ea2 (IsA owl bird_of_prey) (STV 1.0 0.9091)) +(: cnet_isa_c2500acf6b (IsA owlet owl) (STV 1.0 0.9091)) +(: cnet_isa_80496a5f09 (IsA own_goal goal) (STV 1.0 0.9091)) +(: cnet_isa_5ce2b34f0d (IsA owner businessman) (STV 1.0 0.9091)) +(: cnet_isa_143aad1591 (IsA owner person) (STV 1.0 0.9091)) +(: cnet_isa_4f86e17d5d (IsA owner_driver driver) (STV 1.0 0.9091)) +(: cnet_isa_b4a3cd8e5e (IsA owner_occupier resident) (STV 1.0 0.9091)) +(: cnet_isa_994c32fa41 (IsA ownership relation) (STV 1.0 0.9091)) +(: cnet_isa_f5bfe45599 (IsA ownership state) (STV 1.0 0.9091)) +(: cnet_isa_ced5e7604d (IsA ox bovine) (STV 1.0 0.9091)) +(: cnet_isa_237def8a1e (IsA ox cattle) (STV 1.0 0.9091)) +(: cnet_isa_82c8df3efd (IsA oxacillin penicillinase_resistant_antibiotic) (STV 1.0 0.9091)) +(: cnet_isa_b9095b8c5c (IsA oxalacetate salt) (STV 1.0 0.9091)) +(: cnet_isa_0d55ec810d (IsA oxalacetic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_1edb5db76f (IsA oxalate salt) (STV 1.0 0.9091)) +(: cnet_isa_e51e309081 (IsA oxalic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_dac12dc0e9 (IsA oxalidaceae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_f994f12893 (IsA oxalis herb) (STV 1.0 0.9091)) +(: cnet_isa_44a378672e (IsA oxandra magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_61357a1b57 (IsA oxblood_red dark_red) (STV 1.0 0.9091)) +(: cnet_isa_2d886852d5 (IsA oxbow framework) (STV 1.0 0.9091)) +(: cnet_isa_47d93bae33 (IsA oxbow land) (STV 1.0 0.9091)) +(: cnet_isa_f24e1655c0 (IsA oxbow meander) (STV 1.0 0.9091)) +(: cnet_isa_6bd9759031 (IsA oxbow_lake lake) (STV 1.0 0.9091)) +(: cnet_isa_96d04e1401 (IsA oxbridge university) (STV 1.0 0.9091)) +(: cnet_isa_fef013b7df (IsA oxcart cart) (STV 1.0 0.9091)) +(: cnet_isa_e65c9eb769 (IsA oxeye dormer_window) (STV 1.0 0.9091)) +(: cnet_isa_7536d95b76 (IsA oxeye wildflower) (STV 1.0 0.9091)) +(: cnet_isa_13a38b4962 (IsA oxeye_daisy composite) (STV 1.0 0.9091)) +(: cnet_isa_8d1cf9e820 (IsA oxeye_daisy flower) (STV 1.0 0.9091)) +(: cnet_isa_d0e2900119 (IsA oxford shoe) (STV 1.0 0.9091)) +(: cnet_isa_fad50a8204 (IsA oxford_english english) (STV 1.0 0.9091)) +(: cnet_isa_03113144e0 (IsA oxford_movement religious_movement) (STV 1.0 0.9091)) +(: cnet_isa_d92cd5010b (IsA oxidant chemical_agent) (STV 1.0 0.9091)) +(: cnet_isa_746f1d0333 (IsA oxidase enzyme) (STV 1.0 0.9091)) +(: cnet_isa_09ef0e22f5 (IsA oxidation chemical_reaction) (STV 1.0 0.9091)) +(: cnet_isa_db01e74c43 (IsA oxidation_number number) (STV 1.0 0.9091)) +(: cnet_isa_a11c64f0fc (IsA oxidation_reduction chemical_reaction) (STV 1.0 0.9091)) +(: cnet_isa_7f5c86bc36 (IsA oxidation_reduction_indicator indicator) (STV 1.0 0.9091)) +(: cnet_isa_37326151cf (IsA oxidative_phosphorylation organic_process) (STV 1.0 0.9091)) +(: cnet_isa_10a7419044 (IsA oxide compound) (STV 1.0 0.9091)) +(: cnet_isa_e1c013e8d2 (IsA oxidization chemical_reaction) (STV 1.0 0.9091)) +(: cnet_isa_b2115e6522 (IsA oxidized_ldl_cholesterol ldl_cholesterol) (STV 1.0 0.9091)) +(: cnet_isa_d5ae83f5f7 (IsA oxidoreductase enzyme) (STV 1.0 0.9091)) +(: cnet_isa_c2e4e62a91 (IsA oxime organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_3fe11d5b10 (IsA oximeter measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_1cc15a73a8 (IsA oxlip primrose) (STV 1.0 0.9091)) +(: cnet_isa_6d7e26a27e (IsA oxonian english_person) (STV 1.0 0.9091)) +(: cnet_isa_90271e5cf9 (IsA oxtail tail) (STV 1.0 0.9091)) +(: cnet_isa_afc9f92709 (IsA oxtail_soup soup) (STV 1.0 0.9091)) +(: cnet_isa_779ef670a9 (IsA oxtant angular_unit) (STV 1.0 0.9091)) +(: cnet_isa_ea3df9ff1a (IsA oxtongue weed) (STV 1.0 0.9091)) +(: cnet_isa_c25ffd61ab (IsA oxyacetylene mixture) (STV 1.0 0.9091)) +(: cnet_isa_36b756d9ea (IsA oxyacetylene_torch blowtorch) (STV 1.0 0.9091)) +(: cnet_isa_72e9abb144 (IsA oxyacid acid) (STV 1.0 0.9091)) +(: cnet_isa_f20445a494 (IsA oxybelis reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_ca21e5ace9 (IsA oxycephaly birth_defect) (STV 1.0 0.9091)) +(: cnet_isa_2ad6c6cf98 (IsA oxydendrum dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_81f426e69e (IsA oxygen element) (STV 1.0 0.9608)) +(: cnet_isa_db8c9e00dc (IsA oxygen gas) (STV 1.0 0.9719)) +(: cnet_isa_ac5f4cd2be (IsA oxygen piece_of_water_molecule) (STV 1.0 0.9091)) +(: cnet_isa_dc87049f1a (IsA oxygen chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_afbadb1f9c (IsA oxygen_18 oxygen) (STV 1.0 0.9091)) +(: cnet_isa_f8c801324a (IsA oxygen_debt physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_dc4deb36ed (IsA oxygen_deficit deficit) (STV 1.0 0.9091)) +(: cnet_isa_c32298cac1 (IsA oxygen_mask breathing_device) (STV 1.0 0.9091)) +(: cnet_isa_7599dbf163 (IsA oxygenase oxidoreductase) (STV 1.0 0.9091)) +(: cnet_isa_9d711e813c (IsA oxygenation natural_process) (STV 1.0 0.9091)) +(: cnet_isa_a369d38b27 (IsA oxyhemoglobin hemoglobin) (STV 1.0 0.9091)) +(: cnet_isa_9e8002ea39 (IsA oxylebius fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_10339f7741 (IsA oxymoron trope) (STV 1.0 0.9091)) +(: cnet_isa_82772fc09e (IsA oxyopia acuity) (STV 1.0 0.9091)) +(: cnet_isa_1b0b01280f (IsA oxytocic medicine) (STV 1.0 0.9091)) +(: cnet_isa_6aadb8f97c (IsA oxytocin hormone) (STV 1.0 0.9091)) +(: cnet_isa_db2e503815 (IsA oxytone word) (STV 1.0 0.9091)) +(: cnet_isa_941e88499d (IsA oxytropis rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b57787e22b (IsA oxyura bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_7033dbca92 (IsA oxyuranus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_e46363b367 (IsA oxyuridae worm_family) (STV 1.0 0.9091)) +(: cnet_isa_b3ce295a46 (IsA oyabun supervisor) (STV 1.0 0.9091)) +(: cnet_isa_0070a46d88 (IsA oyster bivalve) (STV 1.0 0.9091)) +(: cnet_isa_0aa07330ff (IsA oyster helping) (STV 1.0 0.9091)) +(: cnet_isa_8c36ce7dc2 (IsA oyster_bar bar) (STV 1.0 0.9091)) +(: cnet_isa_9f7b89ace0 (IsA oyster_bed workplace) (STV 1.0 0.9091)) +(: cnet_isa_f885b89205 (IsA oyster_crab pea_crab) (STV 1.0 0.9091)) +(: cnet_isa_3587f0ee18 (IsA oyster_cracker cracker) (STV 1.0 0.9091)) +(: cnet_isa_b13bc16bec (IsA oyster_fish toadfish) (STV 1.0 0.9091)) +(: cnet_isa_7cdedad6f7 (IsA oyster_mushroom agaric) (STV 1.0 0.9091)) +(: cnet_isa_57b457da20 (IsA oyster_plant salsify) (STV 1.0 0.9091)) +(: cnet_isa_ee407eb013 (IsA oyster_shell shell) (STV 1.0 0.9091)) +(: cnet_isa_428d02495e (IsA oyster_stew stew) (STV 1.0 0.9091)) +(: cnet_isa_9e330bb47a (IsA oyster_stuffing stuffing) (STV 1.0 0.9091)) +(: cnet_isa_820254234c (IsA oystercatcher shorebird) (STV 1.0 0.9091)) +(: cnet_isa_2a4a40e8a0 (IsA oyster_rockefeller huitre) (STV 1.0 0.9091)) +(: cnet_isa_7975b12e8f (IsA ozark_chinkapin chestnut) (STV 1.0 0.9091)) +(: cnet_isa_a48acc20b5 (IsA ozena disease) (STV 1.0 0.9091)) +(: cnet_isa_bc9168874f (IsA ozone gas) (STV 1.0 0.9091)) +(: cnet_isa_7dd63db156 (IsA ozone_hole hole) (STV 1.0 0.9091)) +(: cnet_isa_e2d352676a (IsA ozone_layer layer) (STV 1.0 0.9091)) +(: cnet_isa_9acfbc1bbe (IsA ozone_sickness illness) (STV 1.0 0.9091)) +(: cnet_isa_7cd1e769ee (IsA ozonide compound) (STV 1.0 0.9091)) +(: cnet_isa_d4681a49e7 (IsA ozonium fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_88bddf4b28 (IsA ozothamnus asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_dd1d32c6d6 (IsA p letter) (STV 1.0 0.9091)) +(: cnet_isa_1097b0819d (IsA p_n_junction contact) (STV 1.0 0.9091)) +(: cnet_isa_12f5972af2 (IsA p_n_p_transistor transistor) (STV 1.0 0.9091)) +(: cnet_isa_1f03b30449 (IsA p_type_semiconductor semiconductor_device) (STV 1.0 0.9091)) +(: cnet_isa_e8a8e8d336 (IsA pa_anga tongan_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_b3391f09be (IsA pablum cereal) (STV 1.0 0.9091)) +(: cnet_isa_986c67f995 (IsA pabulum food) (STV 1.0 0.9091)) +(: cnet_isa_baa513f036 (IsA pac_man_strategy shark_repellent) (STV 1.0 0.9091)) +(: cnet_isa_661088cfe1 (IsA paca rodent) (STV 1.0 0.9091)) +(: cnet_isa_b1a54f4dcb (IsA pace step) (STV 1.0 0.9091)) +(: cnet_isa_371b859958 (IsA pace temporal_property) (STV 1.0 0.9091)) +(: cnet_isa_4921c39542 (IsA pace rate) (STV 1.0 0.9091)) +(: cnet_isa_96809a2425 (IsA pace_car car) (STV 1.0 0.9091)) +(: cnet_isa_22d43d90d5 (IsA pace_lap lap) (STV 1.0 0.9091)) +(: cnet_isa_f74fa84f39 (IsA pacemaker electronic_device) (STV 1.0 0.9091)) +(: cnet_isa_6dd0899bf5 (IsA pacemaker cardiac_muscle) (STV 1.0 0.9091)) +(: cnet_isa_8cc281cdaa (IsA pacer horse) (STV 1.0 0.9091)) +(: cnet_isa_3f71a46f08 (IsA pacer racehorse) (STV 1.0 0.9091)) +(: cnet_isa_8edf0e1fbc (IsA pacesetter exemplar) (STV 1.0 0.9091)) +(: cnet_isa_d697a2710b (IsA pachinko pinball) (STV 1.0 0.9091)) +(: cnet_isa_dd44431aeb (IsA pachisi board_game) (STV 1.0 0.9091)) +(: cnet_isa_9cc6a8d2fa (IsA pachuco adolescent) (STV 1.0 0.9091)) +(: cnet_isa_3df314dd34 (IsA pachycephala bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_27a2ea624e (IsA pachycephalosaur bone_headed_dinosaur) (STV 1.0 0.9091)) +(: cnet_isa_bc96f41afe (IsA pachycheilia abnormality) (STV 1.0 0.9091)) +(: cnet_isa_25ae3d629d (IsA pachyderm placental) (STV 1.0 0.9091)) +(: cnet_isa_071cea9fc5 (IsA pachyrhizus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b537500088 (IsA pachysandra subshrub) (STV 1.0 0.9091)) +(: cnet_isa_62679beb57 (IsA pachytene phase) (STV 1.0 0.9091)) +(: cnet_isa_745bc65ea4 (IsA pacific_bonito bonito) (STV 1.0 0.9091)) +(: cnet_isa_42fc6269bd (IsA pacific_bottlenose_dolphin bottlenose_dolphin) (STV 1.0 0.9091)) +(: cnet_isa_1745ed9d63 (IsA pacific_cod cod) (STV 1.0 0.9091)) +(: cnet_isa_211a78f137 (IsA pacific_giant_salamander salamander) (STV 1.0 0.9091)) +(: cnet_isa_625aa41439 (IsA pacific_halibut righteye_flounder) (STV 1.0 0.9091)) +(: cnet_isa_574cedc3bf (IsA pacific_herring herring) (STV 1.0 0.9091)) +(: cnet_isa_4750e1c342 (IsA pacific_newt newt) (STV 1.0 0.9091)) +(: cnet_isa_b2cd126820 (IsA pacific_ocean ocean) (STV 1.0 0.9091)) +(: cnet_isa_b116f35a3e (IsA pacific_ridley ridley) (STV 1.0 0.9091)) +(: cnet_isa_dcfcc9ef7e (IsA pacific_sardine pilchard) (STV 1.0 0.9091)) +(: cnet_isa_cfeb8b3053 (IsA pacific_spiny_dogfish spiny_dogfish) (STV 1.0 0.9091)) +(: cnet_isa_8d70d7e934 (IsA pacific_sturgeon sturgeon) (STV 1.0 0.9091)) +(: cnet_isa_7712e43632 (IsA pacific_time civil_time) (STV 1.0 0.9091)) +(: cnet_isa_9e58b03109 (IsA pacific_tree_toad tree_toad) (STV 1.0 0.9091)) +(: cnet_isa_95b2556169 (IsA pacific_tripletail tripletail) (STV 1.0 0.9091)) +(: cnet_isa_34b4a1b2db (IsA pacific_walrus walrus) (STV 1.0 0.9091)) +(: cnet_isa_a556bd9481 (IsA pacific_yew yew) (STV 1.0 0.9091)) +(: cnet_isa_1dd691889f (IsA pacification appeasement) (STV 1.0 0.9091)) +(: cnet_isa_a11ceefcf8 (IsA pacification conflict) (STV 1.0 0.9091)) +(: cnet_isa_419df68e25 (IsA pacifier thing) (STV 1.0 0.9091)) +(: cnet_isa_21bc724e8f (IsA pacifism belief) (STV 1.0 0.9091)) +(: cnet_isa_ba80bff584 (IsA pacifism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_bedeb0df21 (IsA pacifist adult) (STV 1.0 0.9091)) +(: cnet_isa_41c8f59f91 (IsA pacing gait) (STV 1.0 0.9091)) +(: cnet_isa_31bbca88aa (IsA pacinian_corpuscle nerve_ending) (STV 1.0 0.9091)) +(: cnet_isa_cbe3c7bb17 (IsA pack bundle) (STV 1.0 0.9091)) +(: cnet_isa_085a5c79e5 (IsA pack corrective) (STV 1.0 0.9091)) +(: cnet_isa_9f105819bc (IsA pack package) (STV 1.0 0.9091)) +(: cnet_isa_6d597783de (IsA pack animal_group) (STV 1.0 0.9091)) +(: cnet_isa_f7431392e8 (IsA pack collection) (STV 1.0 0.9091)) +(: cnet_isa_2dfb938b1c (IsA pack_animal beast_of_burden) (STV 1.0 0.9091)) +(: cnet_isa_c44eb209da (IsA pack_ice ice) (STV 1.0 0.9091)) +(: cnet_isa_9262276001 (IsA pack_of_card pack) (STV 1.0 0.9091)) +(: cnet_isa_e2edfa8144 (IsA pack_riding riding) (STV 1.0 0.9091)) +(: cnet_isa_070cf015d6 (IsA package container) (STV 1.0 0.9091)) +(: cnet_isa_895ecdfa28 (IsA package collection) (STV 1.0 0.9091)) +(: cnet_isa_9c5abf10a3 (IsA package_store shop) (STV 1.0 0.9091)) +(: cnet_isa_06a0b8d4da (IsA package_tour tour) (STV 1.0 0.9091)) +(: cnet_isa_0e340b871b (IsA packaged_good grocery) (STV 1.0 0.9091)) +(: cnet_isa_53f9bb319a (IsA packaging commercial_enterprise) (STV 1.0 0.9091)) +(: cnet_isa_a397f25de3 (IsA packaging material) (STV 1.0 0.9091)) +(: cnet_isa_68be49521a (IsA packaging_company company) (STV 1.0 0.9091)) +(: cnet_isa_585b99c7e4 (IsA packed_cell blood_cell) (STV 1.0 0.9091)) +(: cnet_isa_1c520066ce (IsA packer workman) (STV 1.0 0.9091)) +(: cnet_isa_a1bf1a1fce (IsA packera asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7e59f5fc6a (IsA packet package) (STV 1.0 0.9091)) +(: cnet_isa_e7cfc6024c (IsA packet message) (STV 1.0 0.9091)) +(: cnet_isa_b7c68e178f (IsA packhorse pack_animal) (STV 1.0 0.9091)) +(: cnet_isa_c8b0707d55 (IsA packhorse workhorse) (STV 1.0 0.9091)) +(: cnet_isa_3fd61ec66c (IsA packing carry) (STV 1.0 0.9091)) +(: cnet_isa_0542d302d2 (IsA packing enclosure) (STV 1.0 0.9091)) +(: cnet_isa_cce4e3b02b (IsA packing_box crate) (STV 1.0 0.9091)) +(: cnet_isa_d14b582d3c (IsA packing_material material) (STV 1.0 0.9091)) +(: cnet_isa_a87b7be42e (IsA packing_needle needle) (STV 1.0 0.9091)) +(: cnet_isa_6b31004576 (IsA packinghouse building) (STV 1.0 0.9091)) +(: cnet_isa_832d172b8e (IsA packinghouse plant) (STV 1.0 0.9091)) +(: cnet_isa_07f24fcea8 (IsA packrat wood_rat) (STV 1.0 0.9091)) +(: cnet_isa_dfd8ef6f72 (IsA packrat collector) (STV 1.0 0.9091)) +(: cnet_isa_51359e42e4 (IsA packsaddle saddle) (STV 1.0 0.9091)) +(: cnet_isa_abd5040711 (IsA packthread string) (STV 1.0 0.9091)) +(: cnet_isa_ae88617fd2 (IsA pad structure) (STV 1.0 0.9091)) +(: cnet_isa_2ec8aec758 (IsA pad block) (STV 1.0 0.9091)) +(: cnet_isa_38c579d6f1 (IsA pad padding) (STV 1.0 0.9091)) +(: cnet_isa_2edb72e5fa (IsA pad leaf) (STV 1.0 0.9091)) +(: cnet_isa_803f715dc5 (IsA pad paper) (STV 1.0 0.9091)) +(: cnet_isa_3d49073216 (IsA padauk tree) (STV 1.0 0.9091)) +(: cnet_isa_e314963099 (IsA padda bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_cb02481186 (IsA padding artifact) (STV 1.0 0.9091)) +(: cnet_isa_c9ec485c37 (IsA paddle bat) (STV 1.0 0.9091)) +(: cnet_isa_f8a989ad60 (IsA paddle blade) (STV 1.0 0.9091)) +(: cnet_isa_ed0187886e (IsA paddle instrument_of_punishment) (STV 1.0 0.9091)) +(: cnet_isa_7d22830172 (IsA paddle oar) (STV 1.0 0.9091)) +(: cnet_isa_9a0e6332d8 (IsA paddle_box covering) (STV 1.0 0.9091)) +(: cnet_isa_1b3966a428 (IsA paddle_steamer steamer) (STV 1.0 0.9091)) +(: cnet_isa_14f5261f8e (IsA paddlefish ganoid) (STV 1.0 0.9091)) +(: cnet_isa_8cced7eac0 (IsA paddlewheel wheel) (STV 1.0 0.9091)) +(: cnet_isa_e7f85b5067 (IsA paddock pen) (STV 1.0 0.9091)) +(: cnet_isa_f7471decde (IsA paddy rice) (STV 1.0 0.9091)) +(: cnet_isa_b83b858e93 (IsA paddy field) (STV 1.0 0.9091)) +(: cnet_isa_3382bb2325 (IsA pademelon wallaby) (STV 1.0 0.9091)) +(: cnet_isa_123335f258 (IsA padlock lock) (STV 1.0 0.9091)) +(: cnet_isa_f3f362f27b (IsA padre priest) (STV 1.0 0.9091)) +(: cnet_isa_f133aa7210 (IsA padre title) (STV 1.0 0.9091)) +(: cnet_isa_cb8fdf1a53 (IsA padrone employer) (STV 1.0 0.9091)) +(: cnet_isa_97335fb0dd (IsA padrone host) (STV 1.0 0.9091)) +(: cnet_isa_9ca2e46a1e (IsA paean hymn) (STV 1.0 0.9091)) +(: cnet_isa_152ed5c123 (IsA paella dish) (STV 1.0 0.9091)) +(: cnet_isa_cb6b8a4056 (IsA paeonia magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b16901b47f (IsA paeoniaceae magnoliid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_ab4d0e0177 (IsA pagan religionist) (STV 1.0 0.9091)) +(: cnet_isa_9ac2cef807 (IsA paganism religion) (STV 1.0 0.9091)) +(: cnet_isa_6ed3e2ab5c (IsA pagan witche) (STV 1.0 0.9091)) +(: cnet_isa_b548d850c9 (IsA page leaf) (STV 1.0 0.9091)) +(: cnet_isa_54a902ac65 (IsA page attendant) (STV 1.0 0.9091)) +(: cnet_isa_e13cafb1e7 (IsA page messenger_boy) (STV 1.0 0.9091)) +(: cnet_isa_58702fe0d1 (IsA page_printer printer) (STV 1.0 0.9091)) +(: cnet_isa_487e20a667 (IsA pageant representation) (STV 1.0 0.9091)) +(: cnet_isa_e840b78c56 (IsA pageant ceremony) (STV 1.0 0.9091)) +(: cnet_isa_49745ac9a0 (IsA pageboy hairdo) (STV 1.0 0.9091)) +(: cnet_isa_00e16fbb58 (IsA pagellus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_c82ba2ed33 (IsA paget_s_disease osteitis) (STV 1.0 0.9091)) +(: cnet_isa_db9b588db1 (IsA pagination number) (STV 1.0 0.9091)) +(: cnet_isa_337dcd4d75 (IsA paging utterance) (STV 1.0 0.9091)) +(: cnet_isa_fb45c449a4 (IsA pagoda temple) (STV 1.0 0.9091)) +(: cnet_isa_d624ae8550 (IsA pagoda_tree frangipani) (STV 1.0 0.9091)) +(: cnet_isa_2b9d9d1b3e (IsA pagophila bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_fb7bc2e955 (IsA pagophilus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_d1c4db5c2e (IsA pagrus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_ea8e32288b (IsA paguridae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_cf7e739865 (IsA pagurus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_13a6baca7f (IsA pahautea cedar) (STV 1.0 0.9091)) +(: cnet_isa_b37542b9a7 (IsA pahlavi iranian) (STV 1.0 0.9091)) +(: cnet_isa_db75863409 (IsA pahlavi script) (STV 1.0 0.9091)) +(: cnet_isa_e844886126 (IsA pahoehoe lava) (STV 1.0 0.9091)) +(: cnet_isa_b6a6fe1557 (IsA paid_vacation vacation) (STV 1.0 0.9091)) +(: cnet_isa_08c63c1a11 (IsA pail bucket) (STV 1.0 0.9091)) +(: cnet_isa_c10544b7da (IsA pail containerful) (STV 1.0 0.9091)) +(: cnet_isa_8f1ced610d (IsA paillasse mattress) (STV 1.0 0.9091)) +(: cnet_isa_eec49f139d (IsA pain sensation) (STV 1.0 0.9608)) +(: cnet_isa_e6b9fd315d (IsA pain symptom) (STV 1.0 0.9339)) +(: cnet_isa_e2c989d506 (IsA pain somesthesia) (STV 1.0 0.9091)) +(: cnet_isa_c5ba127090 (IsA pain feeling) (STV 1.0 0.9091)) +(: cnet_isa_3510dd3767 (IsA pain unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_d507020b58 (IsA pain_threshold absolute_threshold) (STV 1.0 0.9091)) +(: cnet_isa_5d212aa3c0 (IsA pain_unit unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_3853057cd5 (IsA paint coating) (STV 1.0 0.9091)) +(: cnet_isa_388446d59d (IsA paint coloring_material) (STV 1.0 0.9091)) +(: cnet_isa_7f5c5672ee (IsA paint_roller roller) (STV 1.0 0.9091)) +(: cnet_isa_ee900792ea (IsA paintball outdoor_game) (STV 1.0 0.9091)) +(: cnet_isa_7c00d6b383 (IsA paintball capsule) (STV 1.0 0.9091)) +(: cnet_isa_8f6d0cf32b (IsA paintball_gun air_gun) (STV 1.0 0.9091)) +(: cnet_isa_4cfe310e0a (IsA paintball_gun game_equipment) (STV 1.0 0.9091)) +(: cnet_isa_8e2137ca69 (IsA paintbox box) (STV 1.0 0.9091)) +(: cnet_isa_3cd2cd3e4a (IsA paintbrush applicator) (STV 1.0 0.9091)) +(: cnet_isa_274ff8d916 (IsA paintbrush brush) (STV 1.0 0.9091)) +(: cnet_isa_f0ed2c105e (IsA painted_beauty nymphalid) (STV 1.0 0.9091)) +(: cnet_isa_58ee0102fc (IsA painted_daisy flower) (STV 1.0 0.9091)) +(: cnet_isa_27a21b92a2 (IsA painted_greenling greenling) (STV 1.0 0.9091)) +(: cnet_isa_06684e98e9 (IsA painted_nettle coleus) (STV 1.0 0.9091)) +(: cnet_isa_a73ee41100 (IsA painted_sandgrouse sandgrouse) (STV 1.0 0.9091)) +(: cnet_isa_b7b3a9c058 (IsA painted_tongue salpiglossis) (STV 1.0 0.9091)) +(: cnet_isa_5b05c12e9b (IsA painted_turtle turtle) (STV 1.0 0.9091)) +(: cnet_isa_e1a987ecfd (IsA painter line) (STV 1.0 0.9091)) +(: cnet_isa_2f695fdd3f (IsA painter artist) (STV 1.0 0.9091)) +(: cnet_isa_5f4d7c57b1 (IsA painter skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_1c6f1ba887 (IsA painting form_of_art) (STV 1.0 0.9091)) +(: cnet_isa_82833f2f7f (IsA painting application) (STV 1.0 0.9091)) +(: cnet_isa_a98533f9cc (IsA painting art) (STV 1.0 0.9091)) +(: cnet_isa_9aa3717ea9 (IsA painting fine_art) (STV 1.0 0.9091)) +(: cnet_isa_81d6f22bae (IsA painting trade) (STV 1.0 0.9091)) +(: cnet_isa_6908bd09b3 (IsA painting graphic_art) (STV 1.0 0.9091)) +(: cnet_isa_0f2818c4c5 (IsA pair gathering) (STV 1.0 0.9091)) +(: cnet_isa_af37870b1f (IsA pair poker_hand) (STV 1.0 0.9091)) +(: cnet_isa_a52f350dee (IsA pair set) (STV 1.0 0.9091)) +(: cnet_isa_acaa5badb4 (IsA pair_of_pant piece_of_clothing) (STV 1.0 0.9091)) +(: cnet_isa_0c5520a8c5 (IsA pair_of_pant single_garment) (STV 1.0 0.9091)) +(: cnet_isa_2637781f7b (IsA pair_of_trouser garment) (STV 1.0 0.9091)) +(: cnet_isa_98de208ec2 (IsA pair_production natural_process) (STV 1.0 0.9091)) +(: cnet_isa_5c86c97bb5 (IsA pairing grouping) (STV 1.0 0.9091)) +(: cnet_isa_213ca474fa (IsA paisa fractional_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_3328402c69 (IsA paisley pattern) (STV 1.0 0.9091)) +(: cnet_isa_e7d17b47df (IsA paisley fabric) (STV 1.0 0.9091)) +(: cnet_isa_1b4b6389aa (IsA paiute shoshonean) (STV 1.0 0.9091)) +(: cnet_isa_aa7e3b9f1e (IsA paiwanic formosan) (STV 1.0 0.9091)) +(: cnet_isa_cf6ca7dcc9 (IsA pajama nightclothe) (STV 1.0 0.9091)) +(: cnet_isa_9d8162dbf4 (IsA pakistani asiatic) (STV 1.0 0.9091)) +(: cnet_isa_034320ed43 (IsA pakistani_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_4fc96e733d (IsA pakistani_rupee pakistani_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_1f0dd85ae4 (IsA palace exhibition_hall) (STV 1.0 0.9091)) +(: cnet_isa_e7188a83f0 (IsA palace mansion) (STV 1.0 0.9091)) +(: cnet_isa_2349931bfa (IsA palace residence) (STV 1.0 0.9091)) +(: cnet_isa_4669b284a5 (IsA palace government) (STV 1.0 0.9091)) +(: cnet_isa_77fa3fc0a3 (IsA palaemon arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_77438ad993 (IsA palaemonidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_8aef91e7d9 (IsA palaic anatolian) (STV 1.0 0.9091)) +(: cnet_isa_1b2d59b2de (IsA palanquin litter) (STV 1.0 0.9091)) +(: cnet_isa_97f33d6925 (IsA palaquium dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b716802a9f (IsA palatability taste_property) (STV 1.0 0.9091)) +(: cnet_isa_4300b47875 (IsA palatableness acceptability) (STV 1.0 0.9091)) +(: cnet_isa_27f4390fdd (IsA palatal semivowel) (STV 1.0 0.9091)) +(: cnet_isa_c3460d9c14 (IsA palate surface) (STV 1.0 0.9091)) +(: cnet_isa_423abe4ea9 (IsA palatinate district) (STV 1.0 0.9091)) +(: cnet_isa_67dd45856a (IsA palatine bone) (STV 1.0 0.9091)) +(: cnet_isa_67b7b4c8d8 (IsA palatine nobleman) (STV 1.0 0.9091)) +(: cnet_isa_b9283fffd7 (IsA palatine roman) (STV 1.0 0.9091)) +(: cnet_isa_ae875f08be (IsA palatine_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_305dbd41b1 (IsA palatine_raphe raphe) (STV 1.0 0.9091)) +(: cnet_isa_85e99abe70 (IsA palatine_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_dcd7a797dc (IsA palatopharyngoplasty operation) (STV 1.0 0.9091)) +(: cnet_isa_2521e396b4 (IsA palaver nonsense) (STV 1.0 0.9091)) +(: cnet_isa_245f3af801 (IsA pale_ale ale) (STV 1.0 0.9091)) +(: cnet_isa_7968a9db1f (IsA pale_chrysanthemum_aphid greenfly) (STV 1.0 0.9091)) +(: cnet_isa_375af95d48 (IsA pale_violet violet) (STV 1.0 0.9091)) +(: cnet_isa_d62ea69e55 (IsA pale_yellow yellow) (STV 1.0 0.9091)) +(: cnet_isa_e558004fd7 (IsA paleacrita arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_bf01526f05 (IsA paleacrita_vernata geometrid) (STV 1.0 0.9091)) +(: cnet_isa_51901c02da (IsA paleencephalon neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_381049456b (IsA paleness complexion) (STV 1.0 0.9091)) +(: cnet_isa_58fa2e3dff (IsA paleo_american_culture culture) (STV 1.0 0.9091)) +(: cnet_isa_d47638df95 (IsA paleo_amerind native_american) (STV 1.0 0.9091)) +(: cnet_isa_e3bd8310ea (IsA paleoanthropology vertebrate_paleontology) (STV 1.0 0.9091)) +(: cnet_isa_4ee0762253 (IsA paleobiology biology) (STV 1.0 0.9091)) +(: cnet_isa_f5978c7c81 (IsA paleobiology paleontology) (STV 1.0 0.9091)) +(: cnet_isa_bc0505c26b (IsA paleobotany botany) (STV 1.0 0.9091)) +(: cnet_isa_92d34994c7 (IsA paleobotany paleobiology) (STV 1.0 0.9091)) +(: cnet_isa_1651df2aea (IsA paleocerebellum neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_75f138ae60 (IsA paleoclimatology archeology) (STV 1.0 0.9091)) +(: cnet_isa_03b9f4b5a0 (IsA paleodendrology paleobotany) (STV 1.0 0.9091)) +(: cnet_isa_0eae221803 (IsA paleoecology ecology) (STV 1.0 0.9091)) +(: cnet_isa_58360e6e13 (IsA paleoethnography archeology) (STV 1.0 0.9091)) +(: cnet_isa_1e944d2de2 (IsA paleogeography archeology) (STV 1.0 0.9091)) +(: cnet_isa_5c1f2f1315 (IsA paleogeology geology) (STV 1.0 0.9091)) +(: cnet_isa_d5de00325c (IsA paleographist archeologist) (STV 1.0 0.9091)) +(: cnet_isa_c7e25df7ab (IsA paleography archeology) (STV 1.0 0.9091)) +(: cnet_isa_7dcf11304c (IsA paleolith tool) (STV 1.0 0.9091)) +(: cnet_isa_544f75de77 (IsA paleology archeology) (STV 1.0 0.9091)) +(: cnet_isa_47e768ad61 (IsA paleomammalogy paleozoology) (STV 1.0 0.9091)) +(: cnet_isa_9dd191fcde (IsA paleontologist scientist) (STV 1.0 0.9091)) +(: cnet_isa_a37ac03e12 (IsA paleontology earth_science) (STV 1.0 0.9091)) +(: cnet_isa_790eabb7bf (IsA paleopathology archeology) (STV 1.0 0.9091)) +(: cnet_isa_307d8bf8d3 (IsA paleopathology pathology) (STV 1.0 0.9091)) +(: cnet_isa_ccee7a0a42 (IsA paleornithology paleozoology) (STV 1.0 0.9091)) +(: cnet_isa_983b9a78d3 (IsA paleozoology paleobiology) (STV 1.0 0.9091)) +(: cnet_isa_b3f5a889e5 (IsA paleozoology zoology) (STV 1.0 0.9091)) +(: cnet_isa_80249a72fd (IsA palestine_liberation_organization political_movement) (STV 1.0 0.9091)) +(: cnet_isa_5c4d2cf248 (IsA palestine_national_authority political_unit) (STV 1.0 0.9091)) +(: cnet_isa_cbc73f38d5 (IsA palestinian_arab arabian) (STV 1.0 0.9091)) +(: cnet_isa_f2a373a130 (IsA palestinian_terrorist agent_non_geographical) (STV 1.0 0.9091)) +(: cnet_isa_4669e6aa0d (IsA palestinian_terrorist organization) (STV 1.0 0.9091)) +(: cnet_isa_c439e772ac (IsA palestra playing_field) (STV 1.0 0.9091)) +(: cnet_isa_3f68fcdcd9 (IsA paletiology archeology) (STV 1.0 0.9091)) +(: cnet_isa_19b48ced17 (IsA palette board) (STV 1.0 0.9091)) +(: cnet_isa_3d4bf44272 (IsA palette scope) (STV 1.0 0.9091)) +(: cnet_isa_605709cf45 (IsA palette_knife spatula) (STV 1.0 0.9091)) +(: cnet_isa_2a072b09fd (IsA palfrey saddle_horse) (STV 1.0 0.9091)) +(: cnet_isa_0eb136dba1 (IsA pali prakrit) (STV 1.0 0.9091)) +(: cnet_isa_447c6cf4db (IsA palilalia pathology) (STV 1.0 0.9091)) +(: cnet_isa_e37206fa08 (IsA palimony support_payment) (STV 1.0 0.9091)) +(: cnet_isa_9b7c0092dc (IsA palimpsest manuscript) (STV 1.0 0.9091)) +(: cnet_isa_7a507d0b14 (IsA palindrome word) (STV 1.0 0.9091)) +(: cnet_isa_1ea1d62e30 (IsA palingenesis growth) (STV 1.0 0.9091)) +(: cnet_isa_88cabd7e9e (IsA palinuridae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_1547a25fae (IsA palinurus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_95e7341e96 (IsA palisade fortification) (STV 1.0 0.9091)) +(: cnet_isa_e8962c4e93 (IsA paliurus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_98fb63f513 (IsA pall burial_garment) (STV 1.0 0.9091)) +(: cnet_isa_dfae506d80 (IsA pall_mall game) (STV 1.0 0.9091)) +(: cnet_isa_7ec536efd6 (IsA palladium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_09ec57b1f9 (IsA palla_s_sandgrouse sandgrouse) (STV 1.0 0.9091)) +(: cnet_isa_19acdfcba1 (IsA pallasite meteorite) (STV 1.0 0.9091)) +(: cnet_isa_ff1e86a0a7 (IsA pallbearer mourner) (STV 1.0 0.9091)) +(: cnet_isa_2b4020083c (IsA pallet hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_5f90fc63dd (IsA pallet mattress) (STV 1.0 0.9091)) +(: cnet_isa_0beea7521f (IsA pallet platform) (STV 1.0 0.9091)) +(: cnet_isa_4253f1ac7b (IsA pallette armor_plate) (STV 1.0 0.9091)) +(: cnet_isa_f074107456 (IsA palliation easing) (STV 1.0 0.9091)) +(: cnet_isa_7c5d4b6536 (IsA palliative remedy) (STV 1.0 0.9091)) +(: cnet_isa_4e8bf374dc (IsA pallid_bat vespertilian_bat) (STV 1.0 0.9091)) +(: cnet_isa_380fabf007 (IsA pallidity color_property) (STV 1.0 0.9091)) +(: cnet_isa_4f67676b8c (IsA pallidum basal_ganglion) (STV 1.0 0.9091)) +(: cnet_isa_86f7a744d5 (IsA pallium cloak) (STV 1.0 0.9091)) +(: cnet_isa_7c58f4423a (IsA pallium vestment) (STV 1.0 0.9091)) +(: cnet_isa_f36fafe9e3 (IsA pallone court_game) (STV 1.0 0.9091)) +(: cnet_isa_55dc2d5312 (IsA palm area) (STV 1.0 0.9091)) +(: cnet_isa_88d2963981 (IsA palm tree) (STV 1.0 0.9091)) +(: cnet_isa_dea7cca1ea (IsA palm linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_40ae303244 (IsA palm_cat civet) (STV 1.0 0.9091)) +(: cnet_isa_05a1ba6385 (IsA palm_nut nut) (STV 1.0 0.9091)) +(: cnet_isa_d940ef19f0 (IsA palm_oil vegetable_oil) (STV 1.0 0.9091)) +(: cnet_isa_1aaa1b1640 (IsA palm_pilot small_computer) (STV 1.0 0.9091)) +(: cnet_isa_6bad336799 (IsA palm_sunday christian_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_2f0831f99a (IsA palmae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_d802d942a9 (IsA palmale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_e801e8dbef (IsA palmate_leaf compound_leaf) (STV 1.0 0.9091)) +(: cnet_isa_b8f744caf6 (IsA palmature abnormality) (STV 1.0 0.9091)) +(: cnet_isa_34b60cdac9 (IsA palmetto fan_palm) (STV 1.0 0.9091)) +(: cnet_isa_52a80642bc (IsA palmist fortuneteller) (STV 1.0 0.9091)) +(: cnet_isa_75c6c0440b (IsA palmistry divination) (STV 1.0 0.9091)) +(: cnet_isa_3cfe8c07bb (IsA palmitic_acid saturated_fatty_acid) (STV 1.0 0.9091)) +(: cnet_isa_3139eb3c63 (IsA palmitin glyceryl_ester) (STV 1.0 0.9091)) +(: cnet_isa_53e45566dd (IsA palmyra fan_palm) (STV 1.0 0.9091)) +(: cnet_isa_1f3075e9fc (IsA palo_santo angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_d873ae148f (IsA palo_verde tree) (STV 1.0 0.9091)) +(: cnet_isa_ae23515ef9 (IsA palometa butterfish) (STV 1.0 0.9091)) +(: cnet_isa_c924ef703d (IsA palomino horse) (STV 1.0 0.9091)) +(: cnet_isa_5cf98c8cfe (IsA paloverde shrub) (STV 1.0 0.9091)) +(: cnet_isa_d890698007 (IsA palpation examination) (STV 1.0 0.9091)) +(: cnet_isa_79b7d26ca8 (IsA palpation touch) (STV 1.0 0.9091)) +(: cnet_isa_c3ba578488 (IsA palpebra_conjunctiva conjunctiva) (STV 1.0 0.9091)) +(: cnet_isa_8b0474267d (IsA palpebration blink) (STV 1.0 0.9091)) +(: cnet_isa_342e8c8225 (IsA palpitation symptom) (STV 1.0 0.9091)) +(: cnet_isa_ddd5a0c099 (IsA palsy symptom) (STV 1.0 0.9091)) +(: cnet_isa_ee05f10669 (IsA paltriness worthlessness) (STV 1.0 0.9091)) +(: cnet_isa_d26fd0405b (IsA pamlico algonquian) (STV 1.0 0.9091)) +(: cnet_isa_4f0842bb40 (IsA pamlico algonquin) (STV 1.0 0.9091)) +(: cnet_isa_4212545a29 (IsA pampa_grass grass) (STV 1.0 0.9091)) +(: cnet_isa_d5bbe7144b (IsA pamperer person) (STV 1.0 0.9091)) +(: cnet_isa_bc059ef9fa (IsA pamphleteer writer) (STV 1.0 0.9091)) +(: cnet_isa_9da415886b (IsA pan mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_b5b6f2b05c (IsA pan container) (STV 1.0 0.9091)) +(: cnet_isa_19bebdcd90 (IsA pan cooking_utensil) (STV 1.0 0.9091)) +(: cnet_isa_d144c68c71 (IsA pan_american_day day) (STV 1.0 0.9091)) +(: cnet_isa_9056c14d30 (IsA pan_american_union secretariat) (STV 1.0 0.9091)) +(: cnet_isa_ca28a6d73b (IsA pan_gravy juice) (STV 1.0 0.9091)) +(: cnet_isa_567334fb0c (IsA panacea remedy) (STV 1.0 0.9091)) +(: cnet_isa_ba17be1b2c (IsA panache plume) (STV 1.0 0.9091)) +(: cnet_isa_b4381ced73 (IsA panama_redwood wood) (STV 1.0 0.9091)) +(: cnet_isa_1890104ad5 (IsA panama_redwood_tree quira) (STV 1.0 0.9091)) +(: cnet_isa_98598853ce (IsA panama_tree sterculia) (STV 1.0 0.9091)) +(: cnet_isa_31f50c96ee (IsA panamanian central_american) (STV 1.0 0.9091)) +(: cnet_isa_c2ebc110b4 (IsA panamanian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_dd4d06ab40 (IsA panatela cigar) (STV 1.0 0.9091)) +(: cnet_isa_4aefeeafdd (IsA panax rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_619cfee602 (IsA pancake cake) (STV 1.0 0.9091)) +(: cnet_isa_82296c1eec (IsA pancake_batter batter) (STV 1.0 0.9091)) +(: cnet_isa_cd423238d5 (IsA pancake_turner turner) (STV 1.0 0.9091)) +(: cnet_isa_07d0cd2071 (IsA pancarditis carditis) (STV 1.0 0.9091)) +(: cnet_isa_4efeb5d067 (IsA panchayat council) (STV 1.0 0.9091)) +(: cnet_isa_959d63438a (IsA panchen_lama lama) (STV 1.0 0.9091)) +(: cnet_isa_de8165247d (IsA panchromatic_film film) (STV 1.0 0.9091)) +(: cnet_isa_f1b9602e6e (IsA pancrea exocrine_gland) (STV 1.0 0.9091)) +(: cnet_isa_b2be74772c (IsA pancreatectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_0914902251 (IsA pancreatic_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_dd904ffc22 (IsA pancreatic_cancer carcinoma) (STV 1.0 0.9091)) +(: cnet_isa_1fcf97f79c (IsA pancreatic_duct duct) (STV 1.0 0.9091)) +(: cnet_isa_040c2a9d94 (IsA pancreatic_juice digestive_juice) (STV 1.0 0.9091)) +(: cnet_isa_63a7193c3c (IsA pancreatic_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_4c853415b4 (IsA pancreatin infusion) (STV 1.0 0.9091)) +(: cnet_isa_ec2eedaf57 (IsA pancreatitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_a4a0a1b939 (IsA pancytopenia cytopenia) (STV 1.0 0.9091)) +(: cnet_isa_67d3a5e544 (IsA panda_car cruiser) (STV 1.0 0.9091)) +(: cnet_isa_1cc5f993a9 (IsA pandanaceae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_9434d2749d (IsA pandanale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_aee8db1942 (IsA pandanus natural_fiber) (STV 1.0 0.9091)) +(: cnet_isa_e7311b029c (IsA pandanus tree) (STV 1.0 0.9091)) +(: cnet_isa_1399e94eeb (IsA pandeism theism) (STV 1.0 0.9091)) +(: cnet_isa_ac5acb0393 (IsA pandemic epidemic) (STV 1.0 0.9091)) +(: cnet_isa_3dfdc0b6d4 (IsA panderer bad_person) (STV 1.0 0.9091)) +(: cnet_isa_b58693dfcd (IsA pandiculation stretch) (STV 1.0 0.9091)) +(: cnet_isa_28d5bd659b (IsA pandiculation yawn) (STV 1.0 0.9091)) +(: cnet_isa_f166dde987 (IsA pandion bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_726f51b813 (IsA pandionidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_9ad4bc009c (IsA pandurate_leaf simple_leaf) (STV 1.0 0.9091)) +(: cnet_isa_216c2f7040 (IsA pane plate_glass) (STV 1.0 0.9091)) +(: cnet_isa_10f10ca1b7 (IsA panel pad) (STV 1.0 0.9091)) +(: cnet_isa_24e7a59006 (IsA panel sheet) (STV 1.0 0.9091)) +(: cnet_isa_d4bfefe9d9 (IsA panel body) (STV 1.0 0.9091)) +(: cnet_isa_ba78af4580 (IsA panel_discussion discussion) (STV 1.0 0.9091)) +(: cnet_isa_db591cdfa8 (IsA panel_heating heating_system) (STV 1.0 0.9091)) +(: cnet_isa_63ffc59663 (IsA panel_light light) (STV 1.0 0.9091)) +(: cnet_isa_45a6ebf531 (IsA paneling panel) (STV 1.0 0.9091)) +(: cnet_isa_8bcd86b86b (IsA panelist critic) (STV 1.0 0.9091)) +(: cnet_isa_636551943a (IsA panencephalitis encephalitis) (STV 1.0 0.9091)) +(: cnet_isa_b1c1cff8b3 (IsA panenthesism theism) (STV 1.0 0.9091)) +(: cnet_isa_de0df27694 (IsA panfish fish) (STV 1.0 0.9091)) +(: cnet_isa_cce7fc628b (IsA pang feeling) (STV 1.0 0.9091)) +(: cnet_isa_90e73f8b26 (IsA pang pain) (STV 1.0 0.9091)) +(: cnet_isa_4d712466e9 (IsA pangolin placental) (STV 1.0 0.9091)) +(: cnet_isa_4e872161ec (IsA panhandle handle) (STV 1.0 0.9091)) +(: cnet_isa_6c63535977 (IsA panhandle geographical_area) (STV 1.0 0.9091)) +(: cnet_isa_7c9805e731 (IsA panhandler beggar) (STV 1.0 0.9091)) +(: cnet_isa_f6aa20f2f8 (IsA panic fear) (STV 1.0 0.9091)) +(: cnet_isa_9af3d655b8 (IsA panic anxiety) (STV 1.0 0.9091)) +(: cnet_isa_0070818988 (IsA panic_button push_button) (STV 1.0 0.9091)) +(: cnet_isa_4c82b76004 (IsA panic_disorder anxiety_disorder) (STV 1.0 0.9091)) +(: cnet_isa_aaa11d6acc (IsA panic_grass millet) (STV 1.0 0.9091)) +(: cnet_isa_94721c214c (IsA panicle raceme) (STV 1.0 0.9091)) +(: cnet_isa_c17a00539d (IsA panicled_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_7c04cd2e51 (IsA panicum monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c6a09fd147 (IsA panjabi indian) (STV 1.0 0.9091)) +(: cnet_isa_94364b87ed (IsA pannier bag) (STV 1.0 0.9091)) +(: cnet_isa_09eabff3d6 (IsA pannier hoop) (STV 1.0 0.9091)) +(: cnet_isa_db89d8f294 (IsA pannier wicker_basket) (STV 1.0 0.9091)) +(: cnet_isa_4996172ebb (IsA pannikin pan) (STV 1.0 0.9091)) +(: cnet_isa_b06869d06c (IsA panonychus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_62cd9998f5 (IsA panoply array) (STV 1.0 0.9091)) +(: cnet_isa_b3f71a5eb0 (IsA panopticon area) (STV 1.0 0.9091)) +(: cnet_isa_e3e166228e (IsA panopticon prison) (STV 1.0 0.9091)) +(: cnet_isa_40e8916d0d (IsA panorama ikon) (STV 1.0 0.9091)) +(: cnet_isa_7aa730a814 (IsA panoramic_sight gunsight) (STV 1.0 0.9091)) +(: cnet_isa_b0e7f828b6 (IsA panorpidae family) (STV 1.0 0.9091)) +(: cnet_isa_2900ace7d6 (IsA panpipe pipe) (STV 1.0 0.9091)) +(: cnet_isa_fad959e7fe (IsA pansexual person) (STV 1.0 0.9091)) +(: cnet_isa_723671f799 (IsA pansinusitis sinusitis) (STV 1.0 0.9091)) +(: cnet_isa_0f78c74d60 (IsA pansy annual_plant) (STV 1.0 0.9091)) +(: cnet_isa_4a39e58775 (IsA pansy viola) (STV 1.0 0.9091)) +(: cnet_isa_5a64c96132 (IsA pansy_orchid orchid) (STV 1.0 0.9091)) +(: cnet_isa_52cfa1cbea (IsA pant noise) (STV 1.0 0.9091)) +(: cnet_isa_fa2f86a57d (IsA pant_leg leg) (STV 1.0 0.9091)) +(: cnet_isa_feb2711b56 (IsA pantaloon pair_of_trouser) (STV 1.0 0.9091)) +(: cnet_isa_5935f33879 (IsA pantechnicon moving_van) (STV 1.0 0.9091)) +(: cnet_isa_8cdf46ed1b (IsA pantheism theism) (STV 1.0 0.9091)) +(: cnet_isa_6398330946 (IsA pantheist believer) (STV 1.0 0.9091)) +(: cnet_isa_c52cbe2ba5 (IsA pantheon temple) (STV 1.0 0.9091)) +(: cnet_isa_f20d58bb32 (IsA pantheon memorial) (STV 1.0 0.9091)) +(: cnet_isa_b7b66ea915 (IsA pantheon collection) (STV 1.0 0.9091)) +(: cnet_isa_f5de9a150d (IsA panther leopard) (STV 1.0 0.9091)) +(: cnet_isa_8164dad00f (IsA panthera mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_6725976bfc (IsA pantie underpant) (STV 1.0 0.9091)) +(: cnet_isa_07f3afb908 (IsA pantile tile) (STV 1.0 0.9091)) +(: cnet_isa_0f3e707ed5 (IsA panting breathing) (STV 1.0 0.9091)) +(: cnet_isa_fb4a351d82 (IsA panting fabric) (STV 1.0 0.9091)) +(: cnet_isa_733e8e504b (IsA panto mime) (STV 1.0 0.9091)) +(: cnet_isa_c7d85c086e (IsA pantograph mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_f337399461 (IsA pantothenic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_0504a7a81c (IsA pantothenic_acid b_complex_vitamin) (STV 1.0 0.9091)) +(: cnet_isa_3b51af9035 (IsA pantotheria class) (STV 1.0 0.9091)) +(: cnet_isa_3d5f56ab8f (IsA pantry storeroom) (STV 1.0 0.9091)) +(: cnet_isa_6899913975 (IsA pant_suit slack_suit) (STV 1.0 0.9091)) +(: cnet_isa_36471ceb83 (IsA panty_girdle corset) (STV 1.0 0.9091)) +(: cnet_isa_6ad0c1f397 (IsA pantyhose tight) (STV 1.0 0.9091)) +(: cnet_isa_075e7e1886 (IsA panzer tank) (STV 1.0 0.9091)) +(: cnet_isa_05c079c588 (IsA pap drivel) (STV 1.0 0.9091)) +(: cnet_isa_1f80799b48 (IsA pap_test diagnostic_test) (STV 1.0 0.9091)) +(: cnet_isa_1bb3884a51 (IsA papacy government) (STV 1.0 0.9091)) +(: cnet_isa_ae2702ba5c (IsA papain enzyme) (STV 1.0 0.9091)) +(: cnet_isa_2d7593079b (IsA papal_cross cross) (STV 1.0 0.9091)) +(: cnet_isa_743c648e6c (IsA papal_infallibility infallibility) (STV 1.0 0.9091)) +(: cnet_isa_d0c705ebda (IsA paparazzo photographer) (STV 1.0 0.9091)) +(: cnet_isa_58d97fda2e (IsA papaver dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_913a32de1e (IsA papaveraceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_ed5fe21ac9 (IsA papaw edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_8c7a8dd902 (IsA papaya fruit) (STV 1.0 0.9091)) +(: cnet_isa_57248897b6 (IsA papaya edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_6a82a9a9b0 (IsA papaya fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_2083bd3a88 (IsA papaya_juice juice) (STV 1.0 0.9091)) +(: cnet_isa_fe0c1a41d4 (IsA paper limited_resource) (STV 1.0 0.9454)) +(: cnet_isa_01fc9d5812 (IsA paper material) (STV 1.0 0.9091)) +(: cnet_isa_fbdefaaaf8 (IsA paper article) (STV 1.0 0.9091)) +(: cnet_isa_b50cb14bf9 (IsA paper medium) (STV 1.0 0.9091)) +(: cnet_isa_4ce36ec490 (IsA paper_chain chain) (STV 1.0 0.9091)) +(: cnet_isa_1c34dbcdf4 (IsA paper_chase game) (STV 1.0 0.9091)) +(: cnet_isa_95a412eb4b (IsA paper_chromatography chromatography) (STV 1.0 0.9091)) +(: cnet_isa_82bde7bbf4 (IsA paper_clip clip) (STV 1.0 0.9091)) +(: cnet_isa_b47cc00060 (IsA paper_cutter cutting_implement) (STV 1.0 0.9091)) +(: cnet_isa_b418a88808 (IsA paper_doll doll) (STV 1.0 0.9091)) +(: cnet_isa_0b25058783 (IsA paper_electrophoresis electrophoresis) (STV 1.0 0.9091)) +(: cnet_isa_5c350258c1 (IsA paper_fastener fastener) (STV 1.0 0.9091)) +(: cnet_isa_a6980d23dd (IsA paper_feed device) (STV 1.0 0.9091)) +(: cnet_isa_c868505e4d (IsA paper_flower bougainvillea) (STV 1.0 0.9091)) +(: cnet_isa_27a3da2dd7 (IsA paper_loss loss) (STV 1.0 0.9091)) +(: cnet_isa_4a809d0138 (IsA paper_mill factory) (STV 1.0 0.9091)) +(: cnet_isa_c2cd432db2 (IsA paper_money currency) (STV 1.0 0.9091)) +(: cnet_isa_54f8a66346 (IsA paper_mulberry angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_bb99decc9f (IsA paper_nautilus octopod) (STV 1.0 0.9091)) +(: cnet_isa_8f3917185a (IsA paper_plate plate) (STV 1.0 0.9091)) +(: cnet_isa_7a29584dc7 (IsA paper_profit gain) (STV 1.0 0.9091)) +(: cnet_isa_45befbdb70 (IsA paper_pusher bureaucrat) (STV 1.0 0.9091)) +(: cnet_isa_4eb4542a33 (IsA paper_pusher clerk) (STV 1.0 0.9091)) +(: cnet_isa_113da50551 (IsA paper_route employment) (STV 1.0 0.9091)) +(: cnet_isa_262baead15 (IsA paper_route path) (STV 1.0 0.9091)) +(: cnet_isa_e314c819f6 (IsA paper_tape paper) (STV 1.0 0.9091)) +(: cnet_isa_5a2116442f (IsA paper_tiger powerlessness) (STV 1.0 0.9091)) +(: cnet_isa_6b1c986b71 (IsA paper_towel towel) (STV 1.0 0.9091)) +(: cnet_isa_93dde0636e (IsA paper_toweling paper) (STV 1.0 0.9091)) +(: cnet_isa_ac29af2d10 (IsA paper_trail written_record) (STV 1.0 0.9091)) +(: cnet_isa_bd87366eb4 (IsA paper_wasp vespid) (STV 1.0 0.9091)) +(: cnet_isa_bfcc856588 (IsA paper_white daffodil) (STV 1.0 0.9091)) +(: cnet_isa_de67a3820d (IsA paperback_book book) (STV 1.0 0.9091)) +(: cnet_isa_173c3c3375 (IsA paperboard cardboard) (STV 1.0 0.9091)) +(: cnet_isa_68026057be (IsA paperboy deliveryman) (STV 1.0 0.9091)) +(: cnet_isa_3469d09cfe (IsA paperhanger craftsman) (STV 1.0 0.9091)) +(: cnet_isa_e439e50df3 (IsA paperhanger forger) (STV 1.0 0.9091)) +(: cnet_isa_7afb01cc4f (IsA papering application) (STV 1.0 0.9091)) +(: cnet_isa_f45fefa3f0 (IsA papermaking trade) (STV 1.0 0.9091)) +(: cnet_isa_3b2af9d55a (IsA paper frequently) (STV 1.0 0.9091)) +(: cnet_isa_f0bad2ace8 (IsA paperweight weight) (STV 1.0 0.9091)) +(: cnet_isa_dcdb173484 (IsA paperwork work) (STV 1.0 0.9091)) +(: cnet_isa_d9675c348f (IsA paphiopedilum monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_82b52c07af (IsA papier_mache paper) (STV 1.0 0.9091)) +(: cnet_isa_82c68aaa81 (IsA papilionaceae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_1c3981e0fc (IsA papilionoideae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_07f52f6601 (IsA papilla process) (STV 1.0 0.9091)) +(: cnet_isa_9098a53e3d (IsA papillary_muscle cardiac_muscle) (STV 1.0 0.9091)) +(: cnet_isa_213819f19e (IsA papilledema edema) (STV 1.0 0.9091)) +(: cnet_isa_2174eb55e4 (IsA papilloma benign_tumor) (STV 1.0 0.9091)) +(: cnet_isa_6a2e5e1b9b (IsA papillon toy_spaniel) (STV 1.0 0.9091)) +(: cnet_isa_6dee55d7dc (IsA papio mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_ede13899ea (IsA papist roman_catholic) (STV 1.0 0.9091)) +(: cnet_isa_38ba1c1a59 (IsA papoose baby) (STV 1.0 0.9091)) +(: cnet_isa_a6f2a514b4 (IsA papovavirus animal_virus) (STV 1.0 0.9091)) +(: cnet_isa_8b1c1b428c (IsA pappus calyx) (STV 1.0 0.9091)) +(: cnet_isa_374da27f36 (IsA paprika spice) (STV 1.0 0.9339)) +(: cnet_isa_c3fa3122b4 (IsA paprika flavorer) (STV 1.0 0.9091)) +(: cnet_isa_6b3c44fa6c (IsA paprilus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_f273e785de (IsA papua region) (STV 1.0 0.9091)) +(: cnet_isa_a921be435b (IsA papuan natural_language) (STV 1.0 0.9091)) +(: cnet_isa_d1a0ab4a77 (IsA papuan indonesian) (STV 1.0 0.9091)) +(: cnet_isa_dfa526f441 (IsA papuan_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_4b916f9254 (IsA papule pimple) (STV 1.0 0.9091)) +(: cnet_isa_e81020e541 (IsA papulovesicle papule) (STV 1.0 0.9091)) +(: cnet_isa_b55d95582e (IsA papyrus document) (STV 1.0 0.9091)) +(: cnet_isa_99a7eef2fd (IsA papyrus sedge) (STV 1.0 0.9091)) +(: cnet_isa_53b13a83d7 (IsA papyrus paper) (STV 1.0 0.9091)) +(: cnet_isa_409d2706a5 (IsA par score) (STV 1.0 0.9091)) +(: cnet_isa_8fc2b9e20d (IsA par_value value) (STV 1.0 0.9091)) +(: cnet_isa_54224dbee7 (IsA para yugoslavian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_777a7f040d (IsA para_aminobenzoic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_681cac80af (IsA para_rubber rubber) (STV 1.0 0.9091)) +(: cnet_isa_01f5d7d67d (IsA para_rubber_tree angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_5397d7917f (IsA parable story) (STV 1.0 0.9091)) +(: cnet_isa_720de1daa2 (IsA parabola conic_section) (STV 1.0 0.9091)) +(: cnet_isa_624e7f7cec (IsA parabolic_mirror parabolic_reflector) (STV 1.0 0.9091)) +(: cnet_isa_22ab948d45 (IsA parabolic_reflector reflector) (STV 1.0 0.9091)) +(: cnet_isa_c71c48d8d2 (IsA paraboloid plane_figure) (STV 1.0 0.9091)) +(: cnet_isa_4ec0b5932c (IsA paracentral_scotoma scotoma) (STV 1.0 0.9091)) +(: cnet_isa_8fe72dd6f6 (IsA paracervical_block regional_anesthesia) (STV 1.0 0.9091)) +(: cnet_isa_44b68bcffb (IsA paracheirodon fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_d3164bbd42 (IsA parachute rescue_equipment) (STV 1.0 0.9091)) +(: cnet_isa_8314df4f12 (IsA parachutist jumper) (STV 1.0 0.9091)) +(: cnet_isa_b458271ac8 (IsA paracosm fantasy_world) (STV 1.0 0.9091)) +(: cnet_isa_6f0c2a8d48 (IsA parade display) (STV 1.0 0.9091)) +(: cnet_isa_35a3b88b27 (IsA parade procession) (STV 1.0 0.9091)) +(: cnet_isa_80e6ae7877 (IsA parade succession) (STV 1.0 0.9091)) +(: cnet_isa_f7bd896788 (IsA parade_ground tract) (STV 1.0 0.9091)) +(: cnet_isa_b03357fc3d (IsA paradiddle sound) (STV 1.0 0.9091)) +(: cnet_isa_aeaa1b9a4d (IsA paradigm position) (STV 1.0 0.9091)) +(: cnet_isa_f16f03aae6 (IsA paradigm inflection) (STV 1.0 0.9091)) +(: cnet_isa_a8ac82adca (IsA paradisaeidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_7a29131bd0 (IsA paradise heaven) (STV 1.0 0.9091)) +(: cnet_isa_4b6bc3588b (IsA paradise_tree bitterwood_tree) (STV 1.0 0.9091)) +(: cnet_isa_ab9209f492 (IsA paradox contradiction) (STV 1.0 0.9091)) +(: cnet_isa_33479aabdc (IsA paradoxical_sleep sleep) (STV 1.0 0.9091)) +(: cnet_isa_83be330ac1 (IsA paradoxurus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_d3886f4b5b (IsA paraduodenal_smear alimentary_tract_smear) (STV 1.0 0.9091)) +(: cnet_isa_95e4dcb7e9 (IsA paraffin kerosene) (STV 1.0 0.9091)) +(: cnet_isa_e0fbe9502a (IsA paraffin wax) (STV 1.0 0.9091)) +(: cnet_isa_7d6f6ff322 (IsA parafovea area) (STV 1.0 0.9091)) +(: cnet_isa_c498e70882 (IsA paragon ideal) (STV 1.0 0.9091)) +(: cnet_isa_4ff1b7fb77 (IsA paragonite mica) (STV 1.0 0.9091)) +(: cnet_isa_84d4b56077 (IsA paragraph writing) (STV 1.0 0.9091)) +(: cnet_isa_3df6a85779 (IsA paragrapher writer) (STV 1.0 0.9091)) +(: cnet_isa_f045ed3fbc (IsA paraguayan south_american) (STV 1.0 0.9091)) +(: cnet_isa_79bfda3075 (IsA paraguayan_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_509521bb67 (IsA parainfluenza_virus adenovirus) (STV 1.0 0.9091)) +(: cnet_isa_bb2970f9e5 (IsA parakeet bird) (STV 1.0 0.9659)) +(: cnet_isa_4ad89ad528 (IsA parakeet pet) (STV 1.0 0.9091)) +(: cnet_isa_3fd615cc51 (IsA parakeet parrot) (STV 1.0 0.9091)) +(: cnet_isa_c0d9aaa698 (IsA paralanguage communication) (STV 1.0 0.9091)) +(: cnet_isa_a3b2511042 (IsA paraldehyde aldehyde) (STV 1.0 0.9091)) +(: cnet_isa_050adbf7ae (IsA paralegal paraprofessional) (STV 1.0 0.9091)) +(: cnet_isa_d0a48d9439 (IsA paralepsis rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_819e58c1d8 (IsA paralichthy fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_8a932c99f8 (IsA paralipomenon sacred_text) (STV 1.0 0.9091)) +(: cnet_isa_7793c58bd7 (IsA paralithode arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_cee2eac1f8 (IsA parallax optical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_c6be8b6860 (IsA parallel figure) (STV 1.0 0.9091)) +(: cnet_isa_869ef1d034 (IsA parallel_axiom euclid_s_postulate) (STV 1.0 0.9091)) +(: cnet_isa_33cc9ed015 (IsA parallel_bar gymnastic_apparatus) (STV 1.0 0.9091)) +(: cnet_isa_e42a8d47b6 (IsA parallel_circuit closed_circuit) (STV 1.0 0.9091)) +(: cnet_isa_c3c02c2191 (IsA parallel_interface interface) (STV 1.0 0.9091)) +(: cnet_isa_c206aeb155 (IsA parallel_operation operation) (STV 1.0 0.9091)) +(: cnet_isa_a7d04d3513 (IsA parallel_veined_leaf leaf) (STV 1.0 0.9091)) +(: cnet_isa_9dc6b162d1 (IsA parallelepiped prism) (STV 1.0 0.9091)) +(: cnet_isa_f69e02b77c (IsA parallelism similarity) (STV 1.0 0.9091)) +(: cnet_isa_3341192095 (IsA parallelogram quadrilateral) (STV 1.0 0.9091)) +(: cnet_isa_56d2583ae3 (IsA paralogism fallacy) (STV 1.0 0.9091)) +(: cnet_isa_4079a98e58 (IsA paralysis dysfunction) (STV 1.0 0.9091)) +(: cnet_isa_1cddaa8aff (IsA paralysis_agitan brain_disorder) (STV 1.0 0.9091)) +(: cnet_isa_836f57a39b (IsA paralysis_agitan degenerative_disorder) (STV 1.0 0.9091)) +(: cnet_isa_951a4ae3e1 (IsA paralytic handicapped_person) (STV 1.0 0.9091)) +(: cnet_isa_ca205e5587 (IsA paralytic_abasia abasia) (STV 1.0 0.9091)) +(: cnet_isa_d5cb16ef38 (IsA paramagnet magnet) (STV 1.0 0.9091)) +(: cnet_isa_ae4deed34e (IsA paramagnetism magnetism) (STV 1.0 0.9091)) +(: cnet_isa_9e001cf54e (IsA paramecium ciliate) (STV 1.0 0.9091)) +(: cnet_isa_00a8b9fc59 (IsA paramedic paraprofessional) (STV 1.0 0.9091)) +(: cnet_isa_ff265fbb67 (IsA parameter constant) (STV 1.0 0.9091)) +(: cnet_isa_96152c37ee (IsA parameter quantity) (STV 1.0 0.9091)) +(: cnet_isa_bea207fddd (IsA parameter address) (STV 1.0 0.9091)) +(: cnet_isa_ee3f9afb47 (IsA parameter value) (STV 1.0 0.9091)) +(: cnet_isa_22b140ffe7 (IsA parameter factor) (STV 1.0 0.9091)) +(: cnet_isa_3603b00b4b (IsA parametric_statistic statistic) (STV 1.0 0.9091)) +(: cnet_isa_2409cdec70 (IsA parametritis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_378f6554bb (IsA paramilitary force) (STV 1.0 0.9091)) +(: cnet_isa_502f741c46 (IsA paramnesia cognitive_state) (STV 1.0 0.9091)) +(: cnet_isa_3ecef00927 (IsA paramount_issue issue) (STV 1.0 0.9091)) +(: cnet_isa_746776e617 (IsA paramountcy dominion) (STV 1.0 0.9091)) +(: cnet_isa_1acec9aceb (IsA paramyxovirus myxovirus) (STV 1.0 0.9091)) +(: cnet_isa_5e130254d2 (IsA paranasal_sinus sinus) (STV 1.0 0.9091)) +(: cnet_isa_8cc788d7da (IsA parang knife) (STV 1.0 0.9091)) +(: cnet_isa_f2c842145a (IsA paranoia disturbed_thought_process) (STV 1.0 0.9091)) +(: cnet_isa_f118955795 (IsA paranoia psychosis) (STV 1.0 0.9091)) +(: cnet_isa_e4360b4764 (IsA paranoid psychotic) (STV 1.0 0.9091)) +(: cnet_isa_9c148bd44a (IsA paranoid_schizophrenia schizophrenia) (STV 1.0 0.9091)) +(: cnet_isa_afee733dbd (IsA paranthia fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_944e14c83e (IsA paranthropus australopithecine) (STV 1.0 0.9091)) +(: cnet_isa_8c97c5837a (IsA paraparesis paresis) (STV 1.0 0.9091)) +(: cnet_isa_cdab84bf4a (IsA parapet fortification) (STV 1.0 0.9091)) +(: cnet_isa_849f5254f5 (IsA parapet wall) (STV 1.0 0.9091)) +(: cnet_isa_3a6421bfa7 (IsA paraph flourish) (STV 1.0 0.9091)) +(: cnet_isa_00111db8c1 (IsA paraphilia perversion) (STV 1.0 0.9091)) +(: cnet_isa_9a6f81449f (IsA paraphrase rewording) (STV 1.0 0.9091)) +(: cnet_isa_2adcc64efd (IsA paraphysis fibril) (STV 1.0 0.9091)) +(: cnet_isa_fa33bc417f (IsA paraplegia paralysis) (STV 1.0 0.9091)) +(: cnet_isa_06041eb6a8 (IsA paraplegic handicapped_person) (STV 1.0 0.9091)) +(: cnet_isa_6e8c50ff66 (IsA parapodium extremity) (STV 1.0 0.9091)) +(: cnet_isa_0a943d5d6e (IsA paraprofessional assistant) (STV 1.0 0.9091)) +(: cnet_isa_b4821f9af6 (IsA parapsychologist psychologist) (STV 1.0 0.9091)) +(: cnet_isa_cde98d40c2 (IsA paraquat herbicide) (STV 1.0 0.9091)) +(: cnet_isa_8df44d88ee (IsA paraquat_poisoning poisoning) (STV 1.0 0.9091)) +(: cnet_isa_5132237789 (IsA parasail parachute) (STV 1.0 0.9091)) +(: cnet_isa_17e8ed3e8e (IsA parasailing glide) (STV 1.0 0.9091)) +(: cnet_isa_eaf5b784d9 (IsA parascalop mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_bdfd1a7785 (IsA parasitaxus gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_e27150fc08 (IsA parasite organism) (STV 1.0 0.9091)) +(: cnet_isa_97253c6c81 (IsA parasite_yew parasitic_plant) (STV 1.0 0.9091)) +(: cnet_isa_7fd9d19b1a (IsA parasitemia blood_disease) (STV 1.0 0.9091)) +(: cnet_isa_dd7846fb9d (IsA parasitic_jaeger jaeger) (STV 1.0 0.9091)) +(: cnet_isa_77f4618419 (IsA parasitic_plant parasite) (STV 1.0 0.9091)) +(: cnet_isa_25cd9aaf8f (IsA parasitism mutuality) (STV 1.0 0.9091)) +(: cnet_isa_c1dfbec77d (IsA parasol shade) (STV 1.0 0.9091)) +(: cnet_isa_75bb6cf33c (IsA parasol_mushroom agaric) (STV 1.0 0.9091)) +(: cnet_isa_b91ca4be73 (IsA parasympathetic_nervous_system nervous_system) (STV 1.0 0.9091)) +(: cnet_isa_9c6e5e1036 (IsA parathelypteris fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_d79e45f64f (IsA parathion insecticide) (STV 1.0 0.9091)) +(: cnet_isa_91cab91f84 (IsA parathion_poisoning pesticide_poisoning) (STV 1.0 0.9091)) +(: cnet_isa_571e053dcf (IsA parathyroid_gland endocrine_gland) (STV 1.0 0.9091)) +(: cnet_isa_555a1ca065 (IsA parathyroid_hormone hormone) (STV 1.0 0.9091)) +(: cnet_isa_c234dfe368 (IsA paratrooper soldier) (STV 1.0 0.9091)) +(: cnet_isa_ac02205b30 (IsA paratroop infantry) (STV 1.0 0.9091)) +(: cnet_isa_38bc1e9cf3 (IsA paratyphoid infectious_disease) (STV 1.0 0.9091)) +(: cnet_isa_1731738241 (IsA paraumbilical_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_6d56a8ca10 (IsA parazoa subkingdom) (STV 1.0 0.9091)) +(: cnet_isa_f5df565017 (IsA parcae roman_deity) (STV 1.0 0.9091)) +(: cnet_isa_daf88d8962 (IsA parcel allotment) (STV 1.0 0.9091)) +(: cnet_isa_a108137352 (IsA parcel_post mail) (STV 1.0 0.9091)) +(: cnet_isa_f1ba340feb (IsA parcellation division) (STV 1.0 0.9091)) +(: cnet_isa_24fbc1929f (IsA parcheesi pachisi) (STV 1.0 0.9091)) +(: cnet_isa_c927f6de09 (IsA parchment paper) (STV 1.0 0.9091)) +(: cnet_isa_e7dc5fa82e (IsA parchment animal_skin) (STV 1.0 0.9091)) +(: cnet_isa_fb10617256 (IsA pardon warrant) (STV 1.0 0.9091)) +(: cnet_isa_6e1624665d (IsA pardoner cleric) (STV 1.0 0.9091)) +(: cnet_isa_3d5d080b02 (IsA pardoner person) (STV 1.0 0.9091)) +(: cnet_isa_e1c8941b6d (IsA paregmenon rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_24cb086111 (IsA paregoric medicine) (STV 1.0 0.9091)) +(: cnet_isa_d04b41304a (IsA parenchyma animal_tissue) (STV 1.0 0.9091)) +(: cnet_isa_0bde31c3ba (IsA parenchyma plant_tissue) (STV 1.0 0.9091)) +(: cnet_isa_d869bceca1 (IsA parent organism) (STV 1.0 0.9091)) +(: cnet_isa_1f8f4b8f44 (IsA parent genitor) (STV 1.0 0.9091)) +(: cnet_isa_7e02ec4d0d (IsA parentage kinship) (STV 1.0 0.9091)) +(: cnet_isa_4296880c7c (IsA parental_quality quality) (STV 1.0 0.9091)) +(: cnet_isa_0f09f89fa4 (IsA parenthesis punctuation) (STV 1.0 0.9091)) +(: cnet_isa_31cd0df6a0 (IsA parenthesis_free_notation mathematical_notation) (STV 1.0 0.9091)) +(: cnet_isa_40ce041914 (IsA parenthetical_expression adjunct) (STV 1.0 0.9091)) +(: cnet_isa_afbcffabe3 (IsA parenthood adulthood) (STV 1.0 0.9091)) +(: cnet_isa_c2a5212447 (IsA parent_parent grandparent) (STV 1.0 0.9091)) +(: cnet_isa_0da25edce4 (IsA parer knife) (STV 1.0 0.9091)) +(: cnet_isa_6503b48b3e (IsA parer manicurist) (STV 1.0 0.9091)) +(: cnet_isa_24c3a045a5 (IsA paresis paralysis) (STV 1.0 0.9091)) +(: cnet_isa_354b23f86d (IsA paresthesia symptom) (STV 1.0 0.9091)) +(: cnet_isa_e621930a4c (IsA paretic paralytic) (STV 1.0 0.9091)) +(: cnet_isa_e408f08662 (IsA parfait frozen_dessert) (STV 1.0 0.9091)) +(: cnet_isa_8801ddfeb4 (IsA parfait_glass glass) (STV 1.0 0.9091)) +(: cnet_isa_c74687ac79 (IsA parget plaster) (STV 1.0 0.9091)) +(: cnet_isa_1c31ee7acc (IsA pargeting plastering) (STV 1.0 0.9091)) +(: cnet_isa_7384e9e9dc (IsA pargeting plaster) (STV 1.0 0.9091)) +(: cnet_isa_57fd3c7766 (IsA parhelion spot) (STV 1.0 0.9091)) +(: cnet_isa_9406dfd30b (IsA pari_mutuel_machine computer) (STV 1.0 0.9091)) +(: cnet_isa_022f2fddca (IsA pariah_dog cur) (STV 1.0 0.9091)) +(: cnet_isa_d81268ff66 (IsA paridae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_1b11dd735a (IsA parietal_bone membrane_bone) (STV 1.0 0.9091)) +(: cnet_isa_92a78e8b7c (IsA parietal_gyrus gyrus) (STV 1.0 0.9091)) +(: cnet_isa_334afa86a1 (IsA parietal_lobe lobe) (STV 1.0 0.9091)) +(: cnet_isa_a9a9c89ba0 (IsA parietal_pericardium serous_membrane) (STV 1.0 0.9091)) +(: cnet_isa_3e3de51f93 (IsA parietal_placentation placentation) (STV 1.0 0.9091)) +(: cnet_isa_677143849a (IsA parietal_pleura pleura) (STV 1.0 0.9091)) +(: cnet_isa_2a529683c0 (IsA parietale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_dc83b51e0b (IsA parietaria dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_557affd443 (IsA parieto_occipital_sulcus sulcus) (STV 1.0 0.9091)) +(: cnet_isa_66625c59df (IsA parietomastoid_suture suture) (STV 1.0 0.9091)) +(: cnet_isa_e27ef939ad (IsA parimutuel bet) (STV 1.0 0.9091)) +(: cnet_isa_5106af0e3e (IsA paring object) (STV 1.0 0.9091)) +(: cnet_isa_b374478182 (IsA paring fragment) (STV 1.0 0.9091)) +(: cnet_isa_fbf4cbb6df (IsA paris city_in_france) (STV 1.0 0.9091)) +(: cnet_isa_367b86dc08 (IsA paris in_france) (STV 1.0 0.9091)) +(: cnet_isa_1bb8774be7 (IsA paris plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_6999738c0b (IsA paris_green double_salt) (STV 1.0 0.9091)) +(: cnet_isa_8ceb50d3f9 (IsA paris_green insecticide) (STV 1.0 0.9091)) +(: cnet_isa_afc7d787ed (IsA paris_green pigment) (STV 1.0 0.9091)) +(: cnet_isa_efd9dafb1d (IsA parish community) (STV 1.0 0.9091)) +(: cnet_isa_12cd1c9c8a (IsA parish jurisdiction) (STV 1.0 0.9091)) +(: cnet_isa_3c70e27359 (IsA parishioner churchgoer) (STV 1.0 0.9091)) +(: cnet_isa_767f2c71d7 (IsA parisian french_person) (STV 1.0 0.9091)) +(: cnet_isa_df73e209a8 (IsA parisienne parisian) (STV 1.0 0.9091)) +(: cnet_isa_107293a3b0 (IsA parisology ambiguity) (STV 1.0 0.9091)) +(: cnet_isa_457b0efef2 (IsA parity equivalence) (STV 1.0 0.9091)) +(: cnet_isa_a7fbf88621 (IsA parity mathematical_relation) (STV 1.0 0.9091)) +(: cnet_isa_bcebe2df20 (IsA parity pregnancy) (STV 1.0 0.9091)) +(: cnet_isa_78cd8a6cf7 (IsA parity conservation) (STV 1.0 0.9091)) +(: cnet_isa_c351e8d37d (IsA parity_bit bit) (STV 1.0 0.9091)) +(: cnet_isa_a0a2447752 (IsA parity_check confirmation) (STV 1.0 0.9091)) +(: cnet_isa_dbee795e00 (IsA parji central_dravidian) (STV 1.0 0.9091)) +(: cnet_isa_d381833067 (IsA park usually_in_city) (STV 1.0 0.9091)) +(: cnet_isa_4570eccfb0 (IsA park gear) (STV 1.0 0.9091)) +(: cnet_isa_0e53dea293 (IsA park tract) (STV 1.0 0.9091)) +(: cnet_isa_7f49715217 (IsA park_bench bench) (STV 1.0 0.9091)) +(: cnet_isa_fc4dc66397 (IsA park_commissioner commissioner) (STV 1.0 0.9091)) +(: cnet_isa_07f0305b26 (IsA parka jacket) (STV 1.0 0.9091)) +(: cnet_isa_000df52b9c (IsA parker_house_roll bun) (STV 1.0 0.9091)) +(: cnet_isa_8e1d63a25a (IsA parkeriaceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_ce49f8d55b (IsA parkia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f158018ce1 (IsA parkia_javanica nitta_tree) (STV 1.0 0.9091)) +(: cnet_isa_df75927622 (IsA parking maneuver) (STV 1.0 0.9091)) +(: cnet_isa_58eade4e68 (IsA parking room) (STV 1.0 0.9091)) +(: cnet_isa_34f6aa0abe (IsA parking_lot lot) (STV 1.0 0.9091)) +(: cnet_isa_040f05450c (IsA parking_meter timer) (STV 1.0 0.9091)) +(: cnet_isa_1cd3da83e8 (IsA parking_space space) (STV 1.0 0.9091)) +(: cnet_isa_4f16e19523 (IsA parking_ticket ticket) (STV 1.0 0.9091)) +(: cnet_isa_8d35415148 (IsA parkinsonia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e405e7851b (IsA park normally_in_city) (STV 1.0 0.9091)) +(: cnet_isa_48a85dd35f (IsA parkway road) (STV 1.0 0.9339)) +(: cnet_isa_65f63b8f94 (IsA parlance formulation) (STV 1.0 0.9091)) +(: cnet_isa_2955fc83b4 (IsA parlay bet) (STV 1.0 0.9091)) +(: cnet_isa_bfdef54b67 (IsA parley negotiation) (STV 1.0 0.9091)) +(: cnet_isa_158a2e6c37 (IsA parliament legislature) (STV 1.0 0.9091)) +(: cnet_isa_51aeeab34b (IsA parliamentarian expert) (STV 1.0 0.9091)) +(: cnet_isa_d1591cc50e (IsA parliamentary_agent agent) (STV 1.0 0.9091)) +(: cnet_isa_4e66d24fb5 (IsA parliamentary_democracy democracy) (STV 1.0 0.9091)) +(: cnet_isa_9bb5849227 (IsA parliamentary_monarchy monarchy) (STV 1.0 0.9091)) +(: cnet_isa_a0e8dc18e9 (IsA parlor room_in_house) (STV 1.0 0.9454)) +(: cnet_isa_49f593ca26 (IsA parlor reception_room) (STV 1.0 0.9091)) +(: cnet_isa_e95422f3d7 (IsA parlor_car passenger_car) (STV 1.0 0.9091)) +(: cnet_isa_229bbeaad8 (IsA parlor_game game) (STV 1.0 0.9091)) +(: cnet_isa_e111d1dc74 (IsA parlormaid maid) (STV 1.0 0.9091)) +(: cnet_isa_a973c8b697 (IsA parmelia fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_1f7c3c3fca (IsA parmeliaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_0d2169a33e (IsA parmesan cheese) (STV 1.0 0.9091)) +(: cnet_isa_8ab61b77e4 (IsA parnassia marsh_plant) (STV 1.0 0.9091)) +(: cnet_isa_72802547a6 (IsA parochetus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_22a0f44bd7 (IsA parochialism narrow_mindedness) (STV 1.0 0.9091)) +(: cnet_isa_2fa9b39977 (IsA parodist humorist) (STV 1.0 0.9091)) +(: cnet_isa_a666484aa7 (IsA parody apery) (STV 1.0 0.9091)) +(: cnet_isa_77a9bd2fd6 (IsA parody caricature) (STV 1.0 0.9091)) +(: cnet_isa_2a9d403e8b (IsA parol_evidence_rule rule_of_evidence) (STV 1.0 0.9091)) +(: cnet_isa_239df85359 (IsA parole promise) (STV 1.0 0.9091)) +(: cnet_isa_dcc9bf1938 (IsA parole liberation) (STV 1.0 0.9091)) +(: cnet_isa_c523cb6195 (IsA paronychia caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c8651b9386 (IsA paronychia infection) (STV 1.0 0.9091)) +(: cnet_isa_97fa3e2ae3 (IsA paronym word) (STV 1.0 0.9091)) +(: cnet_isa_43cf6f684a (IsA parophry fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_ca379d476a (IsA parotid_gland salivary_gland) (STV 1.0 0.9091)) +(: cnet_isa_84f7ef1ad6 (IsA parotid_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_c9b1ccb691 (IsA parotitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_d4121093db (IsA paroxysm attack) (STV 1.0 0.9091)) +(: cnet_isa_d8b86a6481 (IsA paroxysmal_trepidant_abasia abasia) (STV 1.0 0.9091)) +(: cnet_isa_2d0e1866b0 (IsA paroxytone word) (STV 1.0 0.9091)) +(: cnet_isa_2119b88a84 (IsA parquet floor) (STV 1.0 0.9091)) +(: cnet_isa_8f1862ba62 (IsA parquet seating) (STV 1.0 0.9091)) +(: cnet_isa_613495d205 (IsA parquet_circle seating) (STV 1.0 0.9091)) +(: cnet_isa_2ab97498fc (IsA parquetry floor_cover) (STV 1.0 0.9091)) +(: cnet_isa_3da72a7be5 (IsA parquetry inlay) (STV 1.0 0.9091)) +(: cnet_isa_007a88e9c7 (IsA parr young_fish) (STV 1.0 0.9091)) +(: cnet_isa_69681c27f4 (IsA parricide murder) (STV 1.0 0.9091)) +(: cnet_isa_0cb67510e4 (IsA parricide murderer) (STV 1.0 0.9091)) +(: cnet_isa_087d6c0183 (IsA parrot_s_beak glory_pea) (STV 1.0 0.9091)) +(: cnet_isa_c0e14c703b (IsA parrot bird) (STV 1.0 0.9091)) +(: cnet_isa_6ff0e61ed5 (IsA parrot copycat) (STV 1.0 0.9091)) +(: cnet_isa_af921e2145 (IsA parrotfish percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_a19d4a34a9 (IsA parrotia plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_4e1be61f3c (IsA parrotiopsis plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_0fa55e4d23 (IsA parry_s_penstemon wildflower) (STV 1.0 0.9091)) +(: cnet_isa_87c26bfcff (IsA parry_s_pinyon pinon) (STV 1.0 0.9091)) +(: cnet_isa_d6cae077e7 (IsA parry blocking) (STV 1.0 0.9091)) +(: cnet_isa_9465d5b822 (IsA parry_manzanita manzanita) (STV 1.0 0.9091)) +(: cnet_isa_39b150d850 (IsA par_distilis endocrine_gland) (STV 1.0 0.9091)) +(: cnet_isa_e0f965f57e (IsA par_intermedia endocrine_gland) (STV 1.0 0.9091)) +(: cnet_isa_d9d3470d16 (IsA parsec astronomy_unit) (STV 1.0 0.9091)) +(: cnet_isa_90227ace3d (IsA parser program) (STV 1.0 0.9091)) +(: cnet_isa_47831574e0 (IsA parsi religionist) (STV 1.0 0.9091)) +(: cnet_isa_e99091ddb1 (IsA parsiism zoroastrianism) (STV 1.0 0.9091)) +(: cnet_isa_ed185f9aea (IsA parsimony frugality) (STV 1.0 0.9091)) +(: cnet_isa_1ee8cda107 (IsA parsley herb) (STV 1.0 0.9091)) +(: cnet_isa_2808f22450 (IsA parsley_haw hawthorn) (STV 1.0 0.9091)) +(: cnet_isa_3b7e725958 (IsA parsnip root_vegetable) (STV 1.0 0.9091)) +(: cnet_isa_28d4e6725c (IsA parsnip herb) (STV 1.0 0.9091)) +(: cnet_isa_88645e1c56 (IsA parsnip root) (STV 1.0 0.9091)) +(: cnet_isa_98c58e922b (IsA parson_s_nose helping) (STV 1.0 0.9091)) +(: cnet_isa_dfc176164d (IsA parsonage residence) (STV 1.0 0.9091)) +(: cnet_isa_cba951a524 (IsA parson_table table) (STV 1.0 0.9091)) +(: cnet_isa_8224dc5e13 (IsA part object) (STV 1.0 0.9091)) +(: cnet_isa_4e8434d723 (IsA part line) (STV 1.0 0.9091)) +(: cnet_isa_2671eff104 (IsA part concept) (STV 1.0 0.9091)) +(: cnet_isa_191ecc681b (IsA part concern) (STV 1.0 0.9091)) +(: cnet_isa_47553054f0 (IsA part tune) (STV 1.0 0.9091)) +(: cnet_isa_fc4a2b6816 (IsA part relation) (STV 1.0 0.9091)) +(: cnet_isa_17524958bd (IsA part thing) (STV 1.0 0.9091)) +(: cnet_isa_84d64dcd98 (IsA part_music music) (STV 1.0 0.9091)) +(: cnet_isa_3ffc74f34c (IsA part_of_accordion keyboard) (STV 1.0 0.9339)) +(: cnet_isa_d6968cc822 (IsA part_of_speech grammatical_category) (STV 1.0 0.9091)) +(: cnet_isa_cfff85408c (IsA part_of_speech_tagger tagging_program) (STV 1.0 0.9091)) +(: cnet_isa_58b8a9a9fa (IsA part_owner owner) (STV 1.0 0.9091)) +(: cnet_isa_f28c72baf9 (IsA part_singing singing) (STV 1.0 0.9091)) +(: cnet_isa_0135dde776 (IsA part_timer worker) (STV 1.0 0.9091)) +(: cnet_isa_9de91d7e19 (IsA partaker participant) (STV 1.0 0.9091)) +(: cnet_isa_966747c8da (IsA parted_leaf leaf) (STV 1.0 0.9091)) +(: cnet_isa_2d8b8ad084 (IsA parterre flower_garden) (STV 1.0 0.9091)) +(: cnet_isa_0b48f0d9d5 (IsA parthenium asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7711429069 (IsA parthenocarpy apomixis) (STV 1.0 0.9091)) +(: cnet_isa_7fc31bb2a7 (IsA parthenocissus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_693b03aba2 (IsA parthenogenesis apomixis) (STV 1.0 0.9091)) +(: cnet_isa_f1eea77f4d (IsA parthenogeny asexual_reproduction) (STV 1.0 0.9091)) +(: cnet_isa_6fec678d12 (IsA parthenote cell) (STV 1.0 0.9091)) +(: cnet_isa_d3daab36d4 (IsA parthian pahlavi) (STV 1.0 0.9091)) +(: cnet_isa_de5d9c96c8 (IsA parthian asiatic) (STV 1.0 0.9091)) +(: cnet_isa_2501bc9a51 (IsA partial_breach breach_of_contract) (STV 1.0 0.9091)) +(: cnet_isa_a24f3b7d8c (IsA partial_correlation correlation) (STV 1.0 0.9091)) +(: cnet_isa_d4035892b2 (IsA partial_denture denture) (STV 1.0 0.9091)) +(: cnet_isa_192e2ce3e5 (IsA partial_derivative derived_function) (STV 1.0 0.9091)) +(: cnet_isa_77beefd7ff (IsA partial_differential_equation differential_equation) (STV 1.0 0.9091)) +(: cnet_isa_ba9200638c (IsA partial_eclipse eclipse) (STV 1.0 0.9091)) +(: cnet_isa_fc463f8a9a (IsA partial_false_friend false_friend) (STV 1.0 0.9091)) +(: cnet_isa_53333f3370 (IsA partial_veil partial_veil) (STV 1.0 0.9091)) +(: cnet_isa_20ac5855e1 (IsA partial_veil plant_part) (STV 1.0 0.9091)) +(: cnet_isa_603168ce11 (IsA partial_verdict verdict) (STV 1.0 0.9091)) +(: cnet_isa_72a0679b46 (IsA partiality inclination) (STV 1.0 0.9091)) +(: cnet_isa_b406d78678 (IsA partialness incompleteness) (STV 1.0 0.9091)) +(: cnet_isa_50f35e1432 (IsA participant associate) (STV 1.0 0.9091)) +(: cnet_isa_b83102d875 (IsA participation condition) (STV 1.0 0.9091)) +(: cnet_isa_9cbabc0374 (IsA participation_loan loan) (STV 1.0 0.9091)) +(: cnet_isa_ba1856e653 (IsA participle verb) (STV 1.0 0.9091)) +(: cnet_isa_7a94a80a59 (IsA particle function_word) (STV 1.0 0.9091)) +(: cnet_isa_a9f1a9de06 (IsA particle body) (STV 1.0 0.9091)) +(: cnet_isa_6e993f376b (IsA particle_beam beam) (STV 1.0 0.9091)) +(: cnet_isa_dcdcc624e7 (IsA particle_detector chamber) (STV 1.0 0.9091)) +(: cnet_isa_d3c368f60a (IsA particle_physic physic) (STV 1.0 0.9091)) +(: cnet_isa_1b737e001a (IsA particolored_buckeye horse_chestnut) (STV 1.0 0.9091)) +(: cnet_isa_b2918d13c0 (IsA particular fact) (STV 1.0 0.9091)) +(: cnet_isa_cfca28369e (IsA particular_proposition proposition) (STV 1.0 0.9091)) +(: cnet_isa_f3feb08b7b (IsA particularism focus) (STV 1.0 0.9091)) +(: cnet_isa_c0d2576513 (IsA particularity quality) (STV 1.0 0.9091)) +(: cnet_isa_34d432be67 (IsA particularization description) (STV 1.0 0.9091)) +(: cnet_isa_fc6d2bc119 (IsA particulate material) (STV 1.0 0.9091)) +(: cnet_isa_4eb3dd7223 (IsA partisan pike) (STV 1.0 0.9091)) +(: cnet_isa_6f70577b60 (IsA partisan advocate) (STV 1.0 0.9091)) +(: cnet_isa_48d7a8e597 (IsA partita suite) (STV 1.0 0.9091)) +(: cnet_isa_f2be39333c (IsA partita variation) (STV 1.0 0.9091)) +(: cnet_isa_90c7585b02 (IsA partition body_part) (STV 1.0 0.9091)) +(: cnet_isa_a5cce0c861 (IsA partition structure) (STV 1.0 0.9091)) +(: cnet_isa_5798981e90 (IsA partition computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_1d84848874 (IsA partitionist advocate) (STV 1.0 0.9091)) +(: cnet_isa_053681b610 (IsA partitive word) (STV 1.0 0.9091)) +(: cnet_isa_bd169daf9a (IsA partner person) (STV 1.0 0.9091)) +(: cnet_isa_ed28c6cd5f (IsA partner_relation fiduciary_relation) (STV 1.0 0.9091)) +(: cnet_isa_dd3e828889 (IsA partnership contract) (STV 1.0 0.9091)) +(: cnet_isa_ffbae396ff (IsA partnership business) (STV 1.0 0.9091)) +(: cnet_isa_f760dad44c (IsA partnership relationship) (STV 1.0 0.9091)) +(: cnet_isa_954b9494bd (IsA partnership_certificate security) (STV 1.0 0.9091)) +(: cnet_isa_1765d6b109 (IsA partridge bird) (STV 1.0 0.9339)) +(: cnet_isa_b554b17b66 (IsA partridge phasianid) (STV 1.0 0.9091)) +(: cnet_isa_afa249a1a0 (IsA partridge wildfowl) (STV 1.0 0.9091)) +(: cnet_isa_19525bc792 (IsA partridge_pea subshrub) (STV 1.0 0.9091)) +(: cnet_isa_b00765aabd (IsA partridgeberry vine) (STV 1.0 0.9091)) +(: cnet_isa_4ac286439a (IsA part environment) (STV 1.0 0.9091)) +(: cnet_isa_c6a009af02 (IsA part_bin bin) (STV 1.0 0.9091)) +(: cnet_isa_143d336318 (IsA part_catalog catalog) (STV 1.0 0.9091)) +(: cnet_isa_74fd5dbaa1 (IsA part_department business_department) (STV 1.0 0.9091)) +(: cnet_isa_66ceb32857 (IsA part_inventory inventory) (STV 1.0 0.9091)) +(: cnet_isa_bf1d890985 (IsA partsong song) (STV 1.0 0.9091)) +(: cnet_isa_e19e7f80a2 (IsA parturiency parturition) (STV 1.0 0.9091)) +(: cnet_isa_0e168b0bbb (IsA parturition organic_process) (STV 1.0 0.9091)) +(: cnet_isa_fd8679cc19 (IsA party event) (STV 1.0 0.9339)) +(: cnet_isa_bf832824c1 (IsA party social_gathering) (STV 1.0 0.9339)) +(: cnet_isa_c02ef00a68 (IsA party affair) (STV 1.0 0.9091)) +(: cnet_isa_39346a01ea (IsA party organization) (STV 1.0 0.9091)) +(: cnet_isa_f33d8aaefc (IsA party set) (STV 1.0 0.9091)) +(: cnet_isa_30c1b7f3d2 (IsA party person) (STV 1.0 0.9091)) +(: cnet_isa_522437a443 (IsA party_boss politician) (STV 1.0 0.9091)) +(: cnet_isa_7a703237dd (IsA party_favor keepsake) (STV 1.0 0.9091)) +(: cnet_isa_dc025117f7 (IsA party_game game) (STV 1.0 0.9091)) +(: cnet_isa_0e0b3c2a1b (IsA party_girl girl) (STV 1.0 0.9091)) +(: cnet_isa_bc45f94341 (IsA party_line telephone_line) (STV 1.0 0.9091)) +(: cnet_isa_2a3463b3d5 (IsA party_line policy) (STV 1.0 0.9091)) +(: cnet_isa_0ba99a3f1c (IsA party_man politician) (STV 1.0 0.9091)) +(: cnet_isa_17cb7b411a (IsA party_spirit devotion) (STV 1.0 0.9091)) +(: cnet_isa_78ec15ec32 (IsA party_to_action party) (STV 1.0 0.9091)) +(: cnet_isa_769636faff (IsA party_wall wall) (STV 1.0 0.9091)) +(: cnet_isa_d4b3a4cf3f (IsA partygoer attendant) (STV 1.0 0.9091)) +(: cnet_isa_d6b5856541 (IsA partygoer people) (STV 1.0 0.9091)) +(: cnet_isa_43d3fb96c9 (IsA parula bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_3cd0c70a54 (IsA parula_warbler new_world_warbler) (STV 1.0 0.9091)) +(: cnet_isa_2487fa50c3 (IsA parulidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_463c4b15f5 (IsA parus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_48a07247fb (IsA parvis court) (STV 1.0 0.9091)) +(: cnet_isa_ada7bcc5d7 (IsA parvovirus animal_virus) (STV 1.0 0.9091)) +(: cnet_isa_db978c31c0 (IsA pas step) (STV 1.0 0.9091)) +(: cnet_isa_4b5db5f0bf (IsA pas_de_deux dancing) (STV 1.0 0.9091)) +(: cnet_isa_d9d454bb68 (IsA pas_de_quatre dancing) (STV 1.0 0.9091)) +(: cnet_isa_00db83e77c (IsA pas_de_trois dancing) (STV 1.0 0.9091)) +(: cnet_isa_ae4bcfd801 (IsA pas_seul dancing) (STV 1.0 0.9091)) +(: cnet_isa_2220315d68 (IsA pascal_s_law law) (STV 1.0 0.9091)) +(: cnet_isa_25faffdf4f (IsA pascal programming_language) (STV 1.0 0.9091)) +(: cnet_isa_8ee2a642f3 (IsA pascal pressure_unit) (STV 1.0 0.9091)) +(: cnet_isa_0cca269586 (IsA pascal_celery celery) (STV 1.0 0.9091)) +(: cnet_isa_7b63b7e979 (IsA pascal_compiler compiler) (STV 1.0 0.9091)) +(: cnet_isa_78f556f2f4 (IsA pasch easter) (STV 1.0 0.9091)) +(: cnet_isa_1fae9eb472 (IsA pasch passover) (STV 1.0 0.9091)) +(: cnet_isa_acc25075fe (IsA pasha authority) (STV 1.0 0.9091)) +(: cnet_isa_85c1b1ec78 (IsA pashto iranian) (STV 1.0 0.9091)) +(: cnet_isa_8b7ce45c78 (IsA pashtoon afghanistani) (STV 1.0 0.9091)) +(: cnet_isa_850a5ac977 (IsA pasigraphy artificial_language) (STV 1.0 0.9091)) +(: cnet_isa_8f6a588bb1 (IsA paso_doble ballroom_dancing) (STV 1.0 0.9091)) +(: cnet_isa_c6340558c6 (IsA paso_doble dance_music) (STV 1.0 0.9091)) +(: cnet_isa_8bdb06243f (IsA pasqueflower wildflower) (STV 1.0 0.9091)) +(: cnet_isa_1cf03f9e41 (IsA pass flight) (STV 1.0 0.9091)) +(: cnet_isa_4908515ebf (IsA pass football_play) (STV 1.0 0.9091)) +(: cnet_isa_52b21a2c83 (IsA pass permission) (STV 1.0 0.9091)) +(: cnet_isa_2a5f22bf96 (IsA pass ticket) (STV 1.0 0.9091)) +(: cnet_isa_4065c9c27c (IsA pass cycle) (STV 1.0 0.9091)) +(: cnet_isa_5d8593a7cc (IsA pass juncture) (STV 1.0 0.9091)) +(: cnet_isa_3d4a3562ed (IsA pass leave) (STV 1.0 0.9091)) +(: cnet_isa_58cf868a6b (IsA pass license) (STV 1.0 0.9091)) +(: cnet_isa_f04d13581a (IsA pass location) (STV 1.0 0.9091)) +(: cnet_isa_885562d5e1 (IsA pass throw) (STV 1.0 0.9091)) +(: cnet_isa_797a6f263d (IsA pass situation) (STV 1.0 0.9091)) +(: cnet_isa_5101b76fe5 (IsA pass_through opening) (STV 1.0 0.9091)) +(: cnet_isa_daf65c0896 (IsA passage change_of_state) (STV 1.0 0.9091)) +(: cnet_isa_cdadf42cae (IsA passage delivery) (STV 1.0 0.9091)) +(: cnet_isa_1a29e3ea6a (IsA passage journey) (STV 1.0 0.9091)) +(: cnet_isa_afaedd5b4a (IsA passage reaction) (STV 1.0 0.9091)) +(: cnet_isa_70028eb0a6 (IsA passage way) (STV 1.0 0.9091)) +(: cnet_isa_a168371de8 (IsA passage structure) (STV 1.0 0.9091)) +(: cnet_isa_04d340adcf (IsA passage musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_35a1be2d1d (IsA passage section) (STV 1.0 0.9091)) +(: cnet_isa_15ae3093f9 (IsA passageway passage) (STV 1.0 0.9091)) +(: cnet_isa_b5ef5fcd3d (IsA passamaquody algonquin) (STV 1.0 0.9091)) +(: cnet_isa_dc6a967777 (IsA passbook_saving_account saving_account) (STV 1.0 0.9091)) +(: cnet_isa_4631fa585c (IsA passe_partout mounting) (STV 1.0 0.9091)) +(: cnet_isa_229dd56a7d (IsA passed_ball pitch) (STV 1.0 0.9091)) +(: cnet_isa_36f9ec37e7 (IsA passenger traveler) (STV 1.0 0.9091)) +(: cnet_isa_f42c7d034c (IsA passenger_car car) (STV 1.0 0.9091)) +(: cnet_isa_7371361b82 (IsA passenger_pigeon pigeon) (STV 1.0 0.9091)) +(: cnet_isa_ec9828a516 (IsA passenger_ship ship) (STV 1.0 0.9091)) +(: cnet_isa_2cbc51a23a (IsA passenger_train train) (STV 1.0 0.9091)) +(: cnet_isa_4d2642bdb3 (IsA passenger_van van) (STV 1.0 0.9091)) +(: cnet_isa_6f73aa322f (IsA passer bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_6010cd97fb (IsA passer ball_carrier) (STV 1.0 0.9091)) +(: cnet_isa_50ead8f96e (IsA passer person) (STV 1.0 0.9091)) +(: cnet_isa_2a88d29548 (IsA passer student) (STV 1.0 0.9091)) +(: cnet_isa_d9f954ec21 (IsA passer testee) (STV 1.0 0.9091)) +(: cnet_isa_cc9b73ba28 (IsA passerby pedestrian) (STV 1.0 0.9091)) +(: cnet_isa_4b4afbdb33 (IsA passeridae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_e8ddd1bb1b (IsA passeriforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_038673a571 (IsA passerina bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_995016e936 (IsA passerine bird) (STV 1.0 0.9091)) +(: cnet_isa_6f3e75d02d (IsA passiflora dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_43d49d18c5 (IsA passifloraceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_2967a8b683 (IsA passing reordering) (STV 1.0 0.9091)) +(: cnet_isa_9cd804022b (IsA passing success) (STV 1.0 0.9091)) +(: cnet_isa_982061ee80 (IsA passing death) (STV 1.0 0.9091)) +(: cnet_isa_e39db2964f (IsA passing end) (STV 1.0 0.9091)) +(: cnet_isa_d5e7b7b11f (IsA passing movement) (STV 1.0 0.9091)) +(: cnet_isa_c3b790d1bf (IsA passing_note note) (STV 1.0 0.9091)) +(: cnet_isa_3acd55913c (IsA passing_shot return) (STV 1.0 0.9091)) +(: cnet_isa_f7474ca630 (IsA passion feeling) (STV 1.0 0.9091)) +(: cnet_isa_450c4fb226 (IsA passion sexual_desire) (STV 1.0 0.9091)) +(: cnet_isa_7f1204cb5e (IsA passion agony) (STV 1.0 0.9091)) +(: cnet_isa_0034354d6e (IsA passion_fruit edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_7e38602091 (IsA passion_play play) (STV 1.0 0.9091)) +(: cnet_isa_6dd2e6a546 (IsA passion_sunday christian_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_d461d7192e (IsA passionflower vine) (STV 1.0 0.9091)) +(: cnet_isa_266f727492 (IsA passive_air_defense air_defense) (STV 1.0 0.9091)) +(: cnet_isa_e3fc2d4fad (IsA passive_immunity acquired_immunity) (STV 1.0 0.9091)) +(: cnet_isa_179ee6c76c (IsA passive_matrix_display liquid_crystal_display) (STV 1.0 0.9091)) +(: cnet_isa_aa67389855 (IsA passive_resistance direct_action) (STV 1.0 0.9091)) +(: cnet_isa_e4d0f69852 (IsA passive_source informant) (STV 1.0 0.9091)) +(: cnet_isa_99f7cb5e88 (IsA passive_transport transport) (STV 1.0 0.9091)) +(: cnet_isa_5b0cabea6e (IsA passive_trust trust) (STV 1.0 0.9091)) +(: cnet_isa_84e2dd05da (IsA passive_voice voice) (STV 1.0 0.9091)) +(: cnet_isa_874ce334c8 (IsA passivity inactiveness) (STV 1.0 0.9091)) +(: cnet_isa_53b94c07b2 (IsA passivity submissiveness) (STV 1.0 0.9091)) +(: cnet_isa_cf1ff2ec66 (IsA passkey key) (STV 1.0 0.9091)) +(: cnet_isa_9a6ce08708 (IsA passover movable_feast) (STV 1.0 0.9091)) +(: cnet_isa_3af22f416a (IsA passport legal_document) (STV 1.0 0.9091)) +(: cnet_isa_3a3c815061 (IsA password positive_identification) (STV 1.0 0.9091)) +(: cnet_isa_ec573c6b4c (IsA password secret) (STV 1.0 0.9091)) +(: cnet_isa_116ade3424 (IsA past tense) (STV 1.0 0.9091)) +(: cnet_isa_844671777b (IsA past time) (STV 1.0 0.9091)) +(: cnet_isa_0ee033957c (IsA past time_period) (STV 1.0 0.9091)) +(: cnet_isa_ffb3b2c3e9 (IsA past_master expert) (STV 1.0 0.9091)) +(: cnet_isa_7b06172a8d (IsA past_master master) (STV 1.0 0.9091)) +(: cnet_isa_b7997b340e (IsA past_participle participle) (STV 1.0 0.9091)) +(: cnet_isa_7d7ec80e35 (IsA past_perfect perfective) (STV 1.0 0.9091)) +(: cnet_isa_34ed9b731e (IsA past_progressive progressive) (STV 1.0 0.9091)) +(: cnet_isa_904d2af14e (IsA pasta dish) (STV 1.0 0.9091)) +(: cnet_isa_833cbd7e31 (IsA pasta food) (STV 1.0 0.9091)) +(: cnet_isa_2887001142 (IsA pasta_salad salad) (STV 1.0 0.9091)) +(: cnet_isa_e7a609b828 (IsA paste adhesive_material) (STV 1.0 0.9091)) +(: cnet_isa_03e17911ec (IsA paste composition) (STV 1.0 0.9091)) +(: cnet_isa_545ea13f97 (IsA paste lead_glass) (STV 1.0 0.9091)) +(: cnet_isa_67bc9772f6 (IsA paste_up composition) (STV 1.0 0.9091)) +(: cnet_isa_04f124a5db (IsA pasteboard cardboard) (STV 1.0 0.9091)) +(: cnet_isa_f183cf4412 (IsA pastel chromatic_color) (STV 1.0 0.9091)) +(: cnet_isa_bc0a120313 (IsA paster workman) (STV 1.0 0.9091)) +(: cnet_isa_5dc4e8f257 (IsA pastern bone) (STV 1.0 0.9091)) +(: cnet_isa_17fe9cb486 (IsA pasteurization sterilization) (STV 1.0 0.9091)) +(: cnet_isa_7d3283e049 (IsA pasteurized_milk milk) (STV 1.0 0.9091)) +(: cnet_isa_625dcb0c23 (IsA pastiche work_of_art) (STV 1.0 0.9091)) +(: cnet_isa_5229e1ae1c (IsA pastime diversion) (STV 1.0 0.9091)) +(: cnet_isa_882e9f9cfd (IsA pastinaca rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9478b3265a (IsA pastinaca umbelliferae) (STV 1.0 0.9091)) +(: cnet_isa_0770e23ddd (IsA pastis liqueur) (STV 1.0 0.9091)) +(: cnet_isa_8b07eb3b24 (IsA pastness timing) (STV 1.0 0.9091)) +(: cnet_isa_b60582e400 (IsA pastor bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_e22ba83355 (IsA pastoral letter) (STV 1.0 0.9091)) +(: cnet_isa_113bd0ffce (IsA pastoral literary_composition) (STV 1.0 0.9091)) +(: cnet_isa_3df8fbc930 (IsA pastorale musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_ad1a40aeb8 (IsA pastorate clergy) (STV 1.0 0.9091)) +(: cnet_isa_43730edbca (IsA pastorship position) (STV 1.0 0.9091)) +(: cnet_isa_5432b42d0a (IsA pastrami beef) (STV 1.0 0.9091)) +(: cnet_isa_0385f77a3d (IsA pastry baked_good) (STV 1.0 0.9091)) +(: cnet_isa_f6f091767c (IsA pastry dough) (STV 1.0 0.9091)) +(: cnet_isa_fff21733d6 (IsA pastry_cart serving_cart) (STV 1.0 0.9091)) +(: cnet_isa_057fd8ffdf (IsA pastry_cook chef) (STV 1.0 0.9091)) +(: cnet_isa_73a3c574fd (IsA pasture grassland) (STV 1.0 0.9091)) +(: cnet_isa_535915eebc (IsA pasty patch) (STV 1.0 0.9091)) +(: cnet_isa_90f6c2f7c4 (IsA pasty meat_pie) (STV 1.0 0.9091)) +(: cnet_isa_153a3b5f27 (IsA pat sound) (STV 1.0 0.9091)) +(: cnet_isa_140483c133 (IsA pataca macao_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_71de3163fc (IsA pata old_world_monkey) (STV 1.0 0.9091)) +(: cnet_isa_c1c253df51 (IsA patch piece_of_cloth) (STV 1.0 0.9091)) +(: cnet_isa_5aa71e32e6 (IsA patch program) (STV 1.0 0.9091)) +(: cnet_isa_77ed90a82c (IsA patch_pocket pocket) (STV 1.0 0.9091)) +(: cnet_isa_75981798a8 (IsA patch_test skin_test) (STV 1.0 0.9091)) +(: cnet_isa_7aa0e82331 (IsA patchcord wire) (STV 1.0 0.9091)) +(: cnet_isa_c871249cff (IsA patchiness unevenness) (STV 1.0 0.9091)) +(: cnet_isa_94795ce2be (IsA patching repair) (STV 1.0 0.9091)) +(: cnet_isa_235928ef62 (IsA patchouli perfume) (STV 1.0 0.9091)) +(: cnet_isa_b8fd158bb9 (IsA patchouli shrub) (STV 1.0 0.9091)) +(: cnet_isa_034fad0ce9 (IsA patchwork quilt) (STV 1.0 0.9091)) +(: cnet_isa_115f043c9f (IsA patchwork sewing) (STV 1.0 0.9091)) +(: cnet_isa_c404dddd86 (IsA patchwork theory) (STV 1.0 0.9091)) +(: cnet_isa_b9343a8953 (IsA pate top) (STV 1.0 0.9091)) +(: cnet_isa_a24431ea3b (IsA pate spread) (STV 1.0 0.9091)) +(: cnet_isa_0da12f6241 (IsA patella mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_9b545a4c9f (IsA patella sesamoid_bone) (STV 1.0 0.9091)) +(: cnet_isa_e9d4a35750 (IsA patellidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_0767f5f1eb (IsA patency openness) (STV 1.0 0.9091)) +(: cnet_isa_551248494a (IsA patent document) (STV 1.0 0.9091)) +(: cnet_isa_a706ae3ee8 (IsA patent legal_document) (STV 1.0 0.9091)) +(: cnet_isa_1ed61a1dde (IsA patent_and_trademark_office_database agency) (STV 1.0 0.9091)) +(: cnet_isa_f12c0e3635 (IsA patent_application application) (STV 1.0 0.9091)) +(: cnet_isa_34fc13e887 (IsA patent_ductus_arteriosus ductus_arteriosus) (STV 1.0 0.9091)) +(: cnet_isa_b6414293da (IsA patent_infringement violation) (STV 1.0 0.9091)) +(: cnet_isa_cd2433cec4 (IsA patent_law jurisprudence) (STV 1.0 0.9091)) +(: cnet_isa_ee2e6972bf (IsA patent_leather leather) (STV 1.0 0.9091)) +(: cnet_isa_5431c6a141 (IsA patent_log log) (STV 1.0 0.9091)) +(: cnet_isa_39a3b07f17 (IsA patent_medicine medicine) (STV 1.0 0.9091)) +(: cnet_isa_55421da050 (IsA patent_right legal_right) (STV 1.0 0.9091)) +(: cnet_isa_9a57e296cf (IsA patent_system legal_system) (STV 1.0 0.9091)) +(: cnet_isa_338df4d413 (IsA patentee inventor) (STV 1.0 0.9091)) +(: cnet_isa_664d511d99 (IsA pater father) (STV 1.0 0.9091)) +(: cnet_isa_540951e9d7 (IsA paternalism attitude) (STV 1.0 0.9091)) +(: cnet_isa_d7ab4dc092 (IsA paternity state) (STV 1.0 0.9091)) +(: cnet_isa_10f4badf63 (IsA paternity_suit lawsuit) (STV 1.0 0.9091)) +(: cnet_isa_264d0ead30 (IsA paternity_test assay) (STV 1.0 0.9091)) +(: cnet_isa_74844da212 (IsA paternoster elevator) (STV 1.0 0.9091)) +(: cnet_isa_7e1d16a755 (IsA path way) (STV 1.0 0.9091)) +(: cnet_isa_7c05db78d5 (IsA path line) (STV 1.0 0.9091)) +(: cnet_isa_a77b061402 (IsA pathan ethnic_minority) (STV 1.0 0.9091)) +(: cnet_isa_c89d0043ce (IsA pathetic_fallacy fallacy) (STV 1.0 0.9091)) +(: cnet_isa_f8df3a64ab (IsA pathogen infectious_agent) (STV 1.0 0.9091)) +(: cnet_isa_a5a752b670 (IsA pathogen microorganism) (STV 1.0 0.9091)) +(: cnet_isa_665576851c (IsA pathogenesis pathologic_process) (STV 1.0 0.9091)) +(: cnet_isa_8d1692ae5c (IsA pathologic_process organic_process) (STV 1.0 0.9091)) +(: cnet_isa_4f96f209f4 (IsA pathological_state physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_d2e2bfab5c (IsA pathology medical_science) (STV 1.0 0.9091)) +(: cnet_isa_e33519dd3f (IsA pathology ill_health) (STV 1.0 0.9091)) +(: cnet_isa_c7b9db30d7 (IsA patho quality) (STV 1.0 0.9091)) +(: cnet_isa_a6ef024904 (IsA patho expressive_style) (STV 1.0 0.9091)) +(: cnet_isa_e8b4952ed3 (IsA pathway path) (STV 1.0 0.9091)) +(: cnet_isa_fae1d16cbe (IsA patience virtue) (STV 1.0 0.9091)) +(: cnet_isa_d1dcb315b6 (IsA patience good_nature) (STV 1.0 0.9091)) +(: cnet_isa_2d10663100 (IsA patient case) (STV 1.0 0.9091)) +(: cnet_isa_fdac01a694 (IsA patient sick_person) (STV 1.0 0.9091)) +(: cnet_isa_40e19a0e89 (IsA patient people) (STV 1.0 0.9091)) +(: cnet_isa_d8a1c833f3 (IsA patina coating) (STV 1.0 0.9091)) +(: cnet_isa_31ec69987e (IsA patio area) (STV 1.0 0.9091)) +(: cnet_isa_c9c15bb049 (IsA patisserie bakery) (STV 1.0 0.9091)) +(: cnet_isa_6f6b4b1f7f (IsA patka scarf) (STV 1.0 0.9091)) +(: cnet_isa_f53611d6de (IsA patois dialect) (STV 1.0 0.9091)) +(: cnet_isa_9b43857535 (IsA patrial brit) (STV 1.0 0.9091)) +(: cnet_isa_5efd8ffa89 (IsA patriarch forefather) (STV 1.0 0.9091)) +(: cnet_isa_646ed3b694 (IsA patriarch head_of_household) (STV 1.0 0.9091)) +(: cnet_isa_e9c2968d1e (IsA patriarch man) (STV 1.0 0.9091)) +(: cnet_isa_5bc098aa4e (IsA patriarch old_man) (STV 1.0 0.9091)) +(: cnet_isa_ecc6edee0d (IsA patriarch spiritual_leader) (STV 1.0 0.9091)) +(: cnet_isa_f091647798 (IsA patriarchal_cross cross) (STV 1.0 0.9091)) +(: cnet_isa_0572188431 (IsA patriarchate jurisdiction) (STV 1.0 0.9091)) +(: cnet_isa_5026a50024 (IsA patriarchy social_organization) (STV 1.0 0.9091)) +(: cnet_isa_32db135e8a (IsA patrician adult) (STV 1.0 0.9091)) +(: cnet_isa_3e0a502682 (IsA patricide parricide) (STV 1.0 0.9091)) +(: cnet_isa_4074b1bee5 (IsA patrilineage unilateral_descent) (STV 1.0 0.9091)) +(: cnet_isa_15802fcc40 (IsA patrimony endowment) (STV 1.0 0.9091)) +(: cnet_isa_dc27977e14 (IsA patriot_s_day day) (STV 1.0 0.9091)) +(: cnet_isa_4043b247c1 (IsA patriot national) (STV 1.0 0.9091)) +(: cnet_isa_b10e0152df (IsA patriotism loyalty) (STV 1.0 0.9091)) +(: cnet_isa_863a0249bd (IsA patristic christian_theology) (STV 1.0 0.9091)) +(: cnet_isa_d9ad933123 (IsA patristic writing) (STV 1.0 0.9091)) +(: cnet_isa_ffbe64b259 (IsA patrol protection) (STV 1.0 0.9091)) +(: cnet_isa_f996cf91f9 (IsA patrol detachment) (STV 1.0 0.9091)) +(: cnet_isa_e1dab84ba8 (IsA patrol force) (STV 1.0 0.9091)) +(: cnet_isa_c2f2913f00 (IsA patrol_boat vessel) (STV 1.0 0.9091)) +(: cnet_isa_6f0b27b74c (IsA patroller watchman) (STV 1.0 0.9091)) +(: cnet_isa_e61246f630 (IsA patron benefactor) (STV 1.0 0.9091)) +(: cnet_isa_0ec5032c54 (IsA patron customer) (STV 1.0 0.9091)) +(: cnet_isa_25e6dc4bc4 (IsA patron owner) (STV 1.0 0.9091)) +(: cnet_isa_d65afb5b10 (IsA patron_saint defender) (STV 1.0 0.9091)) +(: cnet_isa_f3568cc3a4 (IsA patron_saint saint) (STV 1.0 0.9091)) +(: cnet_isa_42a9f3255e (IsA patronage social_control) (STV 1.0 0.9091)) +(: cnet_isa_ea84bd78de (IsA patroness patron) (STV 1.0 0.9091)) +(: cnet_isa_714c4375d4 (IsA patronymic name) (STV 1.0 0.9091)) +(: cnet_isa_efcea20c07 (IsA patter sound) (STV 1.0 0.9091)) +(: cnet_isa_750e28c593 (IsA pattern exemplar) (STV 1.0 0.9091)) +(: cnet_isa_ab3ba70fc2 (IsA patternmaker maker) (STV 1.0 0.9091)) +(: cnet_isa_9d10944271 (IsA patty candy) (STV 1.0 0.9091)) +(: cnet_isa_38fd2a41af (IsA patty dish) (STV 1.0 0.9091)) +(: cnet_isa_df232c5af6 (IsA patty pie) (STV 1.0 0.9091)) +(: cnet_isa_c8472fb528 (IsA patty_pan pan) (STV 1.0 0.9091)) +(: cnet_isa_1e1fb21713 (IsA patty_shell pastry) (STV 1.0 0.9091)) +(: cnet_isa_65ec18fdf7 (IsA pattypan_squash summer_squash) (STV 1.0 0.9091)) +(: cnet_isa_0de600599d (IsA patwin copehan) (STV 1.0 0.9091)) +(: cnet_isa_6aa309757b (IsA patwin penutian) (STV 1.0 0.9091)) +(: cnet_isa_818ad5b040 (IsA patzer chess_player) (STV 1.0 0.9091)) +(: cnet_isa_954d30a5ea (IsA pauli_exclusion_principle law) (STV 1.0 0.9091)) +(: cnet_isa_594513a81a (IsA pauper poor_person) (STV 1.0 0.9091)) +(: cnet_isa_7df8d57e40 (IsA pauperization privation) (STV 1.0 0.9091)) +(: cnet_isa_c764248150 (IsA pauropoda class) (STV 1.0 0.9091)) +(: cnet_isa_d8e477de3b (IsA pause inactivity) (STV 1.0 0.9091)) +(: cnet_isa_85d0fc7c96 (IsA pause time_interval) (STV 1.0 0.9091)) +(: cnet_isa_bb19d179e2 (IsA pavage tax) (STV 1.0 0.9091)) +(: cnet_isa_567b263bb9 (IsA pavane dancing) (STV 1.0 0.9091)) +(: cnet_isa_93ffbaf868 (IsA pavane dance_music) (STV 1.0 0.9091)) +(: cnet_isa_606cea9c3d (IsA pave mount) (STV 1.0 0.9091)) +(: cnet_isa_865ba20e13 (IsA paved_surface horizontal_surface) (STV 1.0 0.9091)) +(: cnet_isa_0abbb03025 (IsA pavement paved_surface) (STV 1.0 0.9091)) +(: cnet_isa_14156e95ac (IsA pavement_artist draftsman) (STV 1.0 0.9091)) +(: cnet_isa_f1fd29f71d (IsA pavilion tent) (STV 1.0 0.9091)) +(: cnet_isa_5c4d5ac181 (IsA paving application) (STV 1.0 0.9091)) +(: cnet_isa_fe28642f13 (IsA paving_material artifact) (STV 1.0 0.9091)) +(: cnet_isa_a9370e8494 (IsA paving_stone stone) (STV 1.0 0.9091)) +(: cnet_isa_56e021a815 (IsA pavior machine) (STV 1.0 0.9091)) +(: cnet_isa_9a36438e2e (IsA pavis shield) (STV 1.0 0.9091)) +(: cnet_isa_5621485a48 (IsA pavlova dessert) (STV 1.0 0.9091)) +(: cnet_isa_1dd44b1fb0 (IsA pavo bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_fa3d644385 (IsA pavonia shrub) (STV 1.0 0.9091)) +(: cnet_isa_bf58574c2e (IsA paw animal_foot) (STV 1.0 0.9091)) +(: cnet_isa_f621bb3001 (IsA pawer unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_d00bc1d9ed (IsA pawl catch) (STV 1.0 0.9091)) +(: cnet_isa_913e950baf (IsA pawn chess_piece) (STV 1.0 0.9572)) +(: cnet_isa_7878a40b6b (IsA pawn borrowing) (STV 1.0 0.9091)) +(: cnet_isa_e3a7238c49 (IsA pawn chessman) (STV 1.0 0.9091)) +(: cnet_isa_2152613b06 (IsA pawn pledge) (STV 1.0 0.9091)) +(: cnet_isa_6dcedf3807 (IsA pawn_ticket receipt) (STV 1.0 0.9091)) +(: cnet_isa_7ed03d96ef (IsA pawnbroker_s_shop shop) (STV 1.0 0.9091)) +(: cnet_isa_69e740e54e (IsA pawnbroker lender) (STV 1.0 0.9091)) +(: cnet_isa_8cd410224f (IsA pawnbroker pledgee) (STV 1.0 0.9091)) +(: cnet_isa_80a8df6d66 (IsA pawnee caddo) (STV 1.0 0.9091)) +(: cnet_isa_eba65b1d07 (IsA pawpaw custard_apple) (STV 1.0 0.9091)) +(: cnet_isa_f766ebd573 (IsA pax greeting) (STV 1.0 0.9091)) +(: cnet_isa_a44ba2554b (IsA pax_romana peace) (STV 1.0 0.9091)) +(: cnet_isa_0238ea5ccf (IsA pay_cut cut) (STV 1.0 0.9091)) +(: cnet_isa_2e72562411 (IsA pay_dirt success) (STV 1.0 0.9091)) +(: cnet_isa_ddb8dd54ad (IsA pay_dirt ore) (STV 1.0 0.9091)) +(: cnet_isa_0b2b5f0d65 (IsA pay_envelope wage) (STV 1.0 0.9091)) +(: cnet_isa_363ac5b7e4 (IsA pay_phone telephone) (STV 1.0 0.9091)) +(: cnet_isa_4c46cb400b (IsA pay_rate rate) (STV 1.0 0.9091)) +(: cnet_isa_0e500dc12c (IsA payable liability) (STV 1.0 0.9091)) +(: cnet_isa_6dea1d9643 (IsA payback return) (STV 1.0 0.9091)) +(: cnet_isa_83ff8d95cc (IsA paycheck check) (STV 1.0 0.9091)) +(: cnet_isa_d30a06d4ce (IsA payday day) (STV 1.0 0.9091)) +(: cnet_isa_17781f5e08 (IsA paye withholding_tax) (STV 1.0 0.9091)) +(: cnet_isa_4c4386816b (IsA payee recipient) (STV 1.0 0.9091)) +(: cnet_isa_7fa0a6091e (IsA payena dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b124d81813 (IsA payer money_handler) (STV 1.0 0.9091)) +(: cnet_isa_8fadb31d40 (IsA paymaster payer) (STV 1.0 0.9091)) +(: cnet_isa_cd81abd616 (IsA payment commerce) (STV 1.0 0.9091)) +(: cnet_isa_f3aef06c45 (IsA payment cost) (STV 1.0 0.9091)) +(: cnet_isa_e11732c9f8 (IsA payment_rate rate) (STV 1.0 0.9091)) +(: cnet_isa_dbfb04a44b (IsA payne_s_gray pigment) (STV 1.0 0.9091)) +(: cnet_isa_01d59fecb9 (IsA paynim heathen) (STV 1.0 0.9091)) +(: cnet_isa_3f83b4519f (IsA payoff payment) (STV 1.0 0.9091)) +(: cnet_isa_42cd594373 (IsA payola bribe) (STV 1.0 0.9091)) +(: cnet_isa_8ccd20f49e (IsA payroll department) (STV 1.0 0.9091)) +(: cnet_isa_00a46d6c1a (IsA payroll register) (STV 1.0 0.9091)) +(: cnet_isa_3e3349e93f (IsA payroll sum) (STV 1.0 0.9091)) +(: cnet_isa_24f47e91b9 (IsA payslip record) (STV 1.0 0.9091)) +(: cnet_isa_0de483691f (IsA pb computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_33ab0aca53 (IsA pc_board circuit_board) (STV 1.0 0.9091)) +(: cnet_isa_ab615585f6 (IsA pda computer) (STV 1.0 0.9091)) +(: cnet_isa_fa057ec816 (IsA pda electronic_device) (STV 1.0 0.9091)) +(: cnet_isa_873d369843 (IsA pdf file_format) (STV 1.0 0.9091)) +(: cnet_isa_89af90f614 (IsA pe letter) (STV 1.0 0.9091)) +(: cnet_isa_ddb1401ee1 (IsA pea legume) (STV 1.0 0.9091)) +(: cnet_isa_6faad5b36a (IsA pea_crab crab) (STV 1.0 0.9091)) +(: cnet_isa_00e8702dcd (IsA pea_flour meal) (STV 1.0 0.9091)) +(: cnet_isa_1331bfd95d (IsA pea_jacket jacket) (STV 1.0 0.9091)) +(: cnet_isa_20ed5b4226 (IsA pea_pod pod) (STV 1.0 0.9091)) +(: cnet_isa_702d3a1fc7 (IsA pea_shooter plaything) (STV 1.0 0.9091)) +(: cnet_isa_dc101605f4 (IsA pea_shooter tube) (STV 1.0 0.9091)) +(: cnet_isa_bcee47cf8b (IsA pea_soup soup) (STV 1.0 0.9091)) +(: cnet_isa_e642cb8362 (IsA pea_soup fog) (STV 1.0 0.9091)) +(: cnet_isa_9e210c8bc2 (IsA pea_tree shrub) (STV 1.0 0.9091)) +(: cnet_isa_86da0fe349 (IsA pea_weevil seed_beetle) (STV 1.0 0.9091)) +(: cnet_isa_d2e5b336ff (IsA peace treaty) (STV 1.0 0.9091)) +(: cnet_isa_2815a6076f (IsA peace tranquillity) (STV 1.0 0.9091)) +(: cnet_isa_bf97b95264 (IsA peace harmony) (STV 1.0 0.9091)) +(: cnet_isa_d4c3c18247 (IsA peace order) (STV 1.0 0.9091)) +(: cnet_isa_f0e5ab076c (IsA peace security) (STV 1.0 0.9091)) +(: cnet_isa_e6162ea990 (IsA peace_advocacy dovishness) (STV 1.0 0.9091)) +(: cnet_isa_434b1925c2 (IsA peace_corp organization) (STV 1.0 0.9091)) +(: cnet_isa_113c08a2a1 (IsA peace_initiative first_step) (STV 1.0 0.9091)) +(: cnet_isa_4ed6d21e91 (IsA peace_march protest_march) (STV 1.0 0.9091)) +(: cnet_isa_a8931c92f1 (IsA peace_offering offer) (STV 1.0 0.9091)) +(: cnet_isa_4eb261bcb2 (IsA peace_process social_process) (STV 1.0 0.9091)) +(: cnet_isa_33cd50f2b8 (IsA peace_sign symbol) (STV 1.0 0.9091)) +(: cnet_isa_1ab73f8634 (IsA peaceableness amity) (STV 1.0 0.9091)) +(: cnet_isa_348f28954c (IsA peacekeeper pistol) (STV 1.0 0.9091)) +(: cnet_isa_84474b0d0b (IsA peacekeeper soldier) (STV 1.0 0.9091)) +(: cnet_isa_b30a3180e3 (IsA peacekeeper defender) (STV 1.0 0.9091)) +(: cnet_isa_6a15b14718 (IsA peacekeeping operation) (STV 1.0 0.9091)) +(: cnet_isa_ffc6af1509 (IsA peacetime time_period) (STV 1.0 0.9091)) +(: cnet_isa_8d5a9af978 (IsA peach fruit) (STV 1.0 0.9091)) +(: cnet_isa_2e560e3283 (IsA peach drupe) (STV 1.0 0.9091)) +(: cnet_isa_ba4c2b244b (IsA peach edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_522f1098a6 (IsA peach fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_fb312493f7 (IsA peach_bell campanula) (STV 1.0 0.9091)) +(: cnet_isa_e05d3a8fd1 (IsA peach_blight blight) (STV 1.0 0.9091)) +(: cnet_isa_b6e2b3e38c (IsA peach_ice_cream ice_cream) (STV 1.0 0.9091)) +(: cnet_isa_cdd0a85b36 (IsA peach_melba dessert) (STV 1.0 0.9091)) +(: cnet_isa_036fde9d35 (IsA peach_orchard grove) (STV 1.0 0.9091)) +(: cnet_isa_4fd79c00a2 (IsA peach_pit stone) (STV 1.0 0.9091)) +(: cnet_isa_b5c8d183b4 (IsA peach_sauce sauce) (STV 1.0 0.9091)) +(: cnet_isa_09161e07aa (IsA peachick peafowl) (STV 1.0 0.9091)) +(: cnet_isa_c8a5e635fa (IsA peachleaf_willow willow) (STV 1.0 0.9091)) +(: cnet_isa_063958a5fe (IsA peacock bird) (STV 1.0 0.9454)) +(: cnet_isa_75eff33007 (IsA peacock nymphalid) (STV 1.0 0.9091)) +(: cnet_isa_b3238ebb43 (IsA peacock peafowl) (STV 1.0 0.9091)) +(: cnet_isa_712cb93e77 (IsA peacock_throne throne) (STV 1.0 0.9091)) +(: cnet_isa_4d33c2ce9a (IsA peafowl pheasant) (STV 1.0 0.9091)) +(: cnet_isa_eb3baa1b03 (IsA peahen peafowl) (STV 1.0 0.9091)) +(: cnet_isa_084990a70b (IsA peak topographic_point) (STV 1.0 0.9091)) +(: cnet_isa_a3ca97b51f (IsA peal sound) (STV 1.0 0.9091)) +(: cnet_isa_24e0c23515 (IsA peanut edible_nut) (STV 1.0 0.9091)) +(: cnet_isa_ee45422010 (IsA peanut child) (STV 1.0 0.9091)) +(: cnet_isa_a0ad5584a5 (IsA peanut legume) (STV 1.0 0.9091)) +(: cnet_isa_eddb24f2a7 (IsA peanut pod) (STV 1.0 0.9091)) +(: cnet_isa_165357ea5d (IsA peanut_bar candy) (STV 1.0 0.9091)) +(: cnet_isa_c86a851446 (IsA peanut_brittle brittle) (STV 1.0 0.9091)) +(: cnet_isa_df20aa14c9 (IsA peanut_butter food) (STV 1.0 0.9091)) +(: cnet_isa_4870da33ac (IsA peanut_butter spread) (STV 1.0 0.9091)) +(: cnet_isa_5568c85144 (IsA peanut_gallery people) (STV 1.0 0.9091)) +(: cnet_isa_b1636227c5 (IsA peanut_oil vegetable_oil) (STV 1.0 0.9091)) +(: cnet_isa_7468d073a6 (IsA peanut_worm invertebrate) (STV 1.0 0.9091)) +(: cnet_isa_5e10e82e28 (IsA peanut sum) (STV 1.0 0.9091)) +(: cnet_isa_63d87128a4 (IsA pear edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_23415c0d34 (IsA pear pome) (STV 1.0 0.9091)) +(: cnet_isa_efd777b760 (IsA pear fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_782c238d63 (IsA pear_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_17c5a05ee6 (IsA pearl jewel) (STV 1.0 0.9091)) +(: cnet_isa_511bd858c4 (IsA pearl_ash potassium_carbonate) (STV 1.0 0.9091)) +(: cnet_isa_e1ff1d62cc (IsA pearl_barley barley) (STV 1.0 0.9091)) +(: cnet_isa_ea8d2dfc1e (IsA pearl_diver diver) (STV 1.0 0.9091)) +(: cnet_isa_ba70d19523 (IsA pearl_fishery fishery) (STV 1.0 0.9091)) +(: cnet_isa_b1dcd748cf (IsA pearl_hominy hominy) (STV 1.0 0.9091)) +(: cnet_isa_2dc2acae8f (IsA pearl_millet cereal) (STV 1.0 0.9091)) +(: cnet_isa_3846b44ede (IsA pearl_oyster oyster) (STV 1.0 0.9091)) +(: cnet_isa_ffa00cc7af (IsA pearl_sago sago) (STV 1.0 0.9091)) +(: cnet_isa_dcfa1b23f4 (IsA pearlfish percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_ce0ffa4124 (IsA pearlite lamellar_mixture) (STV 1.0 0.9091)) +(: cnet_isa_a6b8129697 (IsA pearlwort groundcover) (STV 1.0 0.9091)) +(: cnet_isa_3989039c2d (IsA pearly_everlasting everlasting) (STV 1.0 0.9091)) +(: cnet_isa_5f96d3da9b (IsA pearly_razorfish razor_fish) (STV 1.0 0.9091)) +(: cnet_isa_1b2f7ac0ee (IsA pearly_shelled_mussel freshwater_mussel) (STV 1.0 0.9091)) +(: cnet_isa_7acd4e9a0d (IsA pearmain eating_apple) (STV 1.0 0.9091)) +(: cnet_isa_0332d67e95 (IsA pear food) (STV 1.0 0.9091)) +(: cnet_isa_bcdf4eb082 (IsA pea vegetable) (STV 1.0 0.9524)) +(: cnet_isa_523cfa16df (IsA pea_and_onion both_food) (STV 1.0 0.9091)) +(: cnet_isa_2cb067a413 (IsA pea_and_onion food) (STV 1.0 0.9091)) +(: cnet_isa_3d94908762 (IsA peasant agricultural_laborer) (STV 1.0 0.9091)) +(: cnet_isa_d52cb6a028 (IsA peasant rustic) (STV 1.0 0.9091)) +(: cnet_isa_f2d2b9184e (IsA peasant unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_71f77600d4 (IsA peasanthood position) (STV 1.0 0.9091)) +(: cnet_isa_52fcfa9c36 (IsA peasantry class) (STV 1.0 0.9091)) +(: cnet_isa_3f843b12e2 (IsA pease_pudding pudding) (STV 1.0 0.9091)) +(: cnet_isa_7cd78c36eb (IsA peat humate) (STV 1.0 0.9091)) +(: cnet_isa_dfa4a28198 (IsA peat vegetable_matter) (STV 1.0 0.9091)) +(: cnet_isa_e9b70e999e (IsA peavey lever) (STV 1.0 0.9091)) +(: cnet_isa_0a81e304d2 (IsA peba armadillo) (STV 1.0 0.9091)) +(: cnet_isa_5aecb2b2aa (IsA pebble rock) (STV 1.0 0.9091)) +(: cnet_isa_ed21381b89 (IsA pebibit computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_e8292d71a3 (IsA pecan edible_nut) (STV 1.0 0.9091)) +(: cnet_isa_37d1b6e605 (IsA pecan nut_tree) (STV 1.0 0.9091)) +(: cnet_isa_35ba0f3bd6 (IsA pecan wood) (STV 1.0 0.9091)) +(: cnet_isa_40a907499b (IsA pecan_pie pie) (STV 1.0 0.9091)) +(: cnet_isa_0ebe4f4971 (IsA peccary even_toed_ungulate) (STV 1.0 0.9091)) +(: cnet_isa_e5858d79aa (IsA peck british_capacity_unit) (STV 1.0 0.9091)) +(: cnet_isa_8568c60e8d (IsA peck united_state_dry_unit) (STV 1.0 0.9091)) +(: cnet_isa_1badebb8bf (IsA pecopteris fern) (STV 1.0 0.9091)) +(: cnet_isa_885e702030 (IsA pectic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_30c8df3d43 (IsA pectin cellulose) (STV 1.0 0.9091)) +(: cnet_isa_adc5de02d5 (IsA pectinibranchia animal_order) (STV 1.0 0.9091)) +(: cnet_isa_8ffc1d6c37 (IsA pectinidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_009bcac3fe (IsA pectoral adornment) (STV 1.0 0.9091)) +(: cnet_isa_f68892e2ef (IsA pectoral skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_b5179baaef (IsA pectoral_fin fin) (STV 1.0 0.9091)) +(: cnet_isa_52785acea8 (IsA pectoral_girdle girdle) (STV 1.0 0.9091)) +(: cnet_isa_46db2d2518 (IsA pectoral_sandpiper sandpiper) (STV 1.0 0.9091)) +(: cnet_isa_eb3e8ac5aa (IsA pectoral_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_2d839087c6 (IsA pectoralis_major pectoral) (STV 1.0 0.9091)) +(: cnet_isa_b3d9c0fdb8 (IsA pectoralis_minor pectoral) (STV 1.0 0.9091)) +(: cnet_isa_5cc8319ae8 (IsA peculiar_velocity speed) (STV 1.0 0.9091)) +(: cnet_isa_6d0a380f5d (IsA peculiarity individuality) (STV 1.0 0.9091)) +(: cnet_isa_c60d23b65e (IsA peculiarity feature) (STV 1.0 0.9091)) +(: cnet_isa_876486a3db (IsA pedal lever) (STV 1.0 0.9091)) +(: cnet_isa_e962267cf1 (IsA pedal_point note) (STV 1.0 0.9091)) +(: cnet_isa_018921c395 (IsA pedal_pusher pair_of_trouser) (STV 1.0 0.9091)) +(: cnet_isa_668884c839 (IsA pedaler rider) (STV 1.0 0.9091)) +(: cnet_isa_fc1d02eacd (IsA pedaliaceae plant_family) (STV 1.0 0.9091)) +(: cnet_isa_7657f61586 (IsA pedant scholar) (STV 1.0 0.9091)) +(: cnet_isa_a409f078b2 (IsA pedantry ostentation) (STV 1.0 0.9091)) +(: cnet_isa_e4c1278a52 (IsA pedate_leaf palmate_leaf) (STV 1.0 0.9091)) +(: cnet_isa_40bbc29b4a (IsA peddler seller) (STV 1.0 0.9091)) +(: cnet_isa_b6b6869149 (IsA pederast pervert) (STV 1.0 0.9091)) +(: cnet_isa_c0a5f7aa93 (IsA pederasty homosexuality) (STV 1.0 0.9091)) +(: cnet_isa_8adf0168f4 (IsA pederasty paraphilia) (STV 1.0 0.9091)) +(: cnet_isa_7925c3f737 (IsA pedestal support) (STV 1.0 0.9091)) +(: cnet_isa_4f1f1e5c69 (IsA pedestal status) (STV 1.0 0.9091)) +(: cnet_isa_68b171cc2b (IsA pedestal_table table) (STV 1.0 0.9091)) +(: cnet_isa_bf162af9c8 (IsA pedestrian traveler) (STV 1.0 0.9091)) +(: cnet_isa_13b2b51468 (IsA pedestrian_crossing crossing) (STV 1.0 0.9091)) +(: cnet_isa_e67cef130b (IsA pedestrian_traffic traffic) (STV 1.0 0.9091)) +(: cnet_isa_93965cb2e4 (IsA pediatric medicine) (STV 1.0 0.9091)) +(: cnet_isa_14e4d0fc62 (IsA pedicab tricycle) (STV 1.0 0.9091)) +(: cnet_isa_73579fcaa2 (IsA pedicel peduncle) (STV 1.0 0.9091)) +(: cnet_isa_592f233db2 (IsA pediculati animal_order) (STV 1.0 0.9091)) +(: cnet_isa_e7b89e6a9d (IsA pediculicide pesticide) (STV 1.0 0.9091)) +(: cnet_isa_6a3cd061be (IsA pediculidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_711c054b6f (IsA pediculosis infestation) (STV 1.0 0.9091)) +(: cnet_isa_ae268b0fed (IsA pediculosis_capitis pediculosis) (STV 1.0 0.9091)) +(: cnet_isa_0bd45efb15 (IsA pediculosis_corporis pediculosis) (STV 1.0 0.9091)) +(: cnet_isa_b808a77b5b (IsA pediculosis_pubis pediculosis) (STV 1.0 0.9091)) +(: cnet_isa_20889896bd (IsA pediculus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_af92cca150 (IsA pedicure beauty_treatment) (STV 1.0 0.9091)) +(: cnet_isa_a8cbb06908 (IsA pedicure care) (STV 1.0 0.9091)) +(: cnet_isa_ae0ee3e268 (IsA pedigree ancestry) (STV 1.0 0.9091)) +(: cnet_isa_adad4b18e2 (IsA pedigree breed) (STV 1.0 0.9091)) +(: cnet_isa_7300d713c2 (IsA pedilanthus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e597983fdd (IsA pediment gable) (STV 1.0 0.9091)) +(: cnet_isa_6224559871 (IsA pediocactus caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9535b7961d (IsA pedioecete bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_4e758c11a8 (IsA pedionomus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_9595e95c4b (IsA pedipalpi animal_order) (STV 1.0 0.9091)) +(: cnet_isa_9153fbfc0d (IsA pedodontist dentist) (STV 1.0 0.9091)) +(: cnet_isa_9bd8581944 (IsA pedometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_8f6d790085 (IsA pedophile pervert) (STV 1.0 0.9091)) +(: cnet_isa_564da477e4 (IsA pedophilia paraphilia) (STV 1.0 0.9091)) +(: cnet_isa_1015194e5d (IsA peduncle nerve_pathway) (STV 1.0 0.9091)) +(: cnet_isa_44f13b91d5 (IsA peduncle scape) (STV 1.0 0.9091)) +(: cnet_isa_977bdef491 (IsA peduncle growth) (STV 1.0 0.9091)) +(: cnet_isa_10b7ec70e9 (IsA pedunculated_polyp polyp) (STV 1.0 0.9091)) +(: cnet_isa_734cfb78c5 (IsA peeing micturition) (STV 1.0 0.9091)) +(: cnet_isa_53786bb710 (IsA peek look) (STV 1.0 0.9091)) +(: cnet_isa_d12e1a2941 (IsA peekaboo child_s_game) (STV 1.0 0.9091)) +(: cnet_isa_a2b5d65d74 (IsA peel rind) (STV 1.0 0.9091)) +(: cnet_isa_f230493af1 (IsA peeler device) (STV 1.0 0.9091)) +(: cnet_isa_f93be24231 (IsA peeler worker) (STV 1.0 0.9091)) +(: cnet_isa_076f8131f8 (IsA peen part) (STV 1.0 0.9091)) +(: cnet_isa_7d0fa16eef (IsA peep_sight gunsight) (STV 1.0 0.9091)) +(: cnet_isa_94b1df3dfc (IsA peeper animal) (STV 1.0 0.9091)) +(: cnet_isa_bce59937fd (IsA peeper eye) (STV 1.0 0.9091)) +(: cnet_isa_381e072d1e (IsA peephole hole) (STV 1.0 0.9091)) +(: cnet_isa_88158620df (IsA peepshow skin_flick) (STV 1.0 0.9091)) +(: cnet_isa_5e78fff9e0 (IsA peepshow exhibition) (STV 1.0 0.9091)) +(: cnet_isa_6de5861111 (IsA peer nobleman) (STV 1.0 0.9091)) +(: cnet_isa_5014ee8d4a (IsA peer person) (STV 1.0 0.9091)) +(: cnet_isa_06c4329c37 (IsA peer_group coeval) (STV 1.0 0.9091)) +(: cnet_isa_d6567e19bf (IsA peer_of_realm peer) (STV 1.0 0.9091)) +(: cnet_isa_e7aaed379d (IsA peerage nobility) (STV 1.0 0.9091)) +(: cnet_isa_3dab48ca3c (IsA peeve temper) (STV 1.0 0.9091)) +(: cnet_isa_47fbaca939 (IsA peg holder) (STV 1.0 0.9091)) +(: cnet_isa_6240f6e00a (IsA peg pin) (STV 1.0 0.9091)) +(: cnet_isa_e9301da535 (IsA peg prosthesis) (STV 1.0 0.9091)) +(: cnet_isa_45a51cb9c2 (IsA peg regulator) (STV 1.0 0.9091)) +(: cnet_isa_aff6625065 (IsA peg marker) (STV 1.0 0.9091)) +(: cnet_isa_1ecf922933 (IsA peg_top top) (STV 1.0 0.9091)) +(: cnet_isa_4d7404ddec (IsA pegasus mythological_winged_horse) (STV 1.0 0.9091)) +(: cnet_isa_f46648afac (IsA pegboard board) (STV 1.0 0.9091)) +(: cnet_isa_a1ac7c71c8 (IsA pegmatite igneous_rock) (STV 1.0 0.9091)) +(: cnet_isa_052eab7468 (IsA pekinese toy_dog) (STV 1.0 0.9091)) +(: cnet_isa_7135017dea (IsA peking_man homo_erectus) (STV 1.0 0.9091)) +(: cnet_isa_ba1f724ad6 (IsA pelagianism heresy) (STV 1.0 0.9091)) +(: cnet_isa_f65b5ed981 (IsA pelagianism theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_713322bf9f (IsA pelagic_bird seabird) (STV 1.0 0.9091)) +(: cnet_isa_3e078ac1ae (IsA pelargonium rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_079246ddc2 (IsA pelecanidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_97f1dd8c88 (IsA pelecaniform_seabird seabird) (STV 1.0 0.9091)) +(: cnet_isa_dcb0ad6ccb (IsA pelecaniforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_0833f229b5 (IsA pelecanoididae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_bc2fd25c9c (IsA pelecanus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_81a0b93f4c (IsA pelham bit) (STV 1.0 0.9091)) +(: cnet_isa_6b741b6c1e (IsA pelican bird) (STV 1.0 0.9524)) +(: cnet_isa_33d5c51794 (IsA pelican seabird) (STV 1.0 0.9091)) +(: cnet_isa_422fd95350 (IsA pelican pelecaniform_seabird) (STV 1.0 0.9091)) +(: cnet_isa_bbcff05b68 (IsA pelican_crossing pedestrian_crossing) (STV 1.0 0.9091)) +(: cnet_isa_afc27dc143 (IsA pelisse cape) (STV 1.0 0.9091)) +(: cnet_isa_a164f1ef88 (IsA pellaea fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_284cfdd956 (IsA pellagra avitaminosis) (STV 1.0 0.9091)) +(: cnet_isa_59070b2805 (IsA pellet ball) (STV 1.0 0.9091)) +(: cnet_isa_26ce66380d (IsA pellicle investment) (STV 1.0 0.9091)) +(: cnet_isa_77f5e9b77d (IsA pellicularia fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_7d4f92a819 (IsA pellitory herb) (STV 1.0 0.9091)) +(: cnet_isa_099ddb70f5 (IsA pellitory_of_wall herb) (STV 1.0 0.9091)) +(: cnet_isa_005447be5f (IsA pellucidness transparency) (STV 1.0 0.9091)) +(: cnet_isa_827113834b (IsA pelobatidae amphibian_family) (STV 1.0 0.9091)) +(: cnet_isa_6e1502aaab (IsA peltandra monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_bac12f6da7 (IsA peltate_leaf simple_leaf) (STV 1.0 0.9091)) +(: cnet_isa_fc676bf67f (IsA pelter thrower) (STV 1.0 0.9091)) +(: cnet_isa_5e7e3ef0a4 (IsA peludo armadillo) (STV 1.0 0.9091)) +(: cnet_isa_d7c75241c2 (IsA pelvic_cavity cavity) (STV 1.0 0.9091)) +(: cnet_isa_233f8ccfd7 (IsA pelvic_fin fin) (STV 1.0 0.9091)) +(: cnet_isa_1588b113d4 (IsA pelvic_inflammatory_disease inflammatory_disease) (STV 1.0 0.9091)) +(: cnet_isa_1c94397751 (IsA pelvimeter measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_1525458e30 (IsA pelvimetry measurement) (STV 1.0 0.9091)) +(: cnet_isa_0719ec3a5e (IsA pelvis cavity) (STV 1.0 0.9091)) +(: cnet_isa_4d033016cc (IsA pelvis girdle) (STV 1.0 0.9091)) +(: cnet_isa_1de32c5158 (IsA pelycosaur synapsid) (STV 1.0 0.9091)) +(: cnet_isa_6ecc511f2b (IsA pelycosauria animal_order) (STV 1.0 0.9091)) +(: cnet_isa_4618862492 (IsA pembroke corgi) (STV 1.0 0.9091)) +(: cnet_isa_e32e9e9952 (IsA pemmican meat) (STV 1.0 0.9091)) +(: cnet_isa_c149031443 (IsA pempheridae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_441833c8fc (IsA pemphigus autoimmune_disease) (STV 1.0 0.9091)) +(: cnet_isa_6eefe46e4d (IsA pemphigus skin_disease) (STV 1.0 0.9091)) +(: cnet_isa_7edc2c6f32 (IsA pen object) (STV 1.0 0.9572)) +(: cnet_isa_38b252430b (IsA pen swan) (STV 1.0 0.9091)) +(: cnet_isa_8643e768fb (IsA pen enclosure) (STV 1.0 0.9091)) +(: cnet_isa_fe79c8eb36 (IsA pen writing_implement) (STV 1.0 0.9091)) +(: cnet_isa_32dbb72c4b (IsA pen_and_ink drawing) (STV 1.0 0.9091)) +(: cnet_isa_cbe8802503 (IsA pen_name pseudonym) (STV 1.0 0.9091)) +(: cnet_isa_07a05292d3 (IsA pen_pal correspondent) (STV 1.0 0.9091)) +(: cnet_isa_cb1978954c (IsA penal_code legal_code) (STV 1.0 0.9091)) +(: cnet_isa_1b46d7a6be (IsA penal_colony penal_institution) (STV 1.0 0.9091)) +(: cnet_isa_1fdeabf36e (IsA penal_institution institution) (STV 1.0 0.9091)) +(: cnet_isa_d1862a9dc7 (IsA penalty disadvantage) (STV 1.0 0.9091)) +(: cnet_isa_23a4795731 (IsA penalty handicap) (STV 1.0 0.9091)) +(: cnet_isa_b0d4e3dd3a (IsA penalty payment) (STV 1.0 0.9091)) +(: cnet_isa_067fa34c8a (IsA penalty_box bench) (STV 1.0 0.9091)) +(: cnet_isa_865ef059dc (IsA penance punishment) (STV 1.0 0.9091)) +(: cnet_isa_d0dfa3711a (IsA penance sacrament) (STV 1.0 0.9091)) +(: cnet_isa_88a2385ad4 (IsA pencil cosmetic) (STV 1.0 0.9091)) +(: cnet_isa_91f5118af1 (IsA pencil writing_implement) (STV 1.0 0.9091)) +(: cnet_isa_22d666d03c (IsA pencil figure) (STV 1.0 0.9091)) +(: cnet_isa_be1a0e8bd3 (IsA pencil graphite) (STV 1.0 0.9091)) +(: cnet_isa_ce12d06a07 (IsA pencil_box box) (STV 1.0 0.9091)) +(: cnet_isa_b6a0e1ebc7 (IsA pencil_cedar juniper) (STV 1.0 0.9091)) +(: cnet_isa_bd3e04e604 (IsA pencil_cedar red_cedar) (STV 1.0 0.9091)) +(: cnet_isa_de812ab0ef (IsA pencil_sharpener sharpener) (STV 1.0 0.9091)) +(: cnet_isa_958fbbc6aa (IsA pendant adornment) (STV 1.0 0.9091)) +(: cnet_isa_6529e16cde (IsA pendant_earring earring) (STV 1.0 0.9091)) +(: cnet_isa_d5b7922f39 (IsA pendragon headman) (STV 1.0 0.9091)) +(: cnet_isa_167440bc32 (IsA pendulum apparatus) (STV 1.0 0.9091)) +(: cnet_isa_e162339497 (IsA pendulum_clock clock) (STV 1.0 0.9091)) +(: cnet_isa_85e6a0cb85 (IsA pendulum_watch watch) (STV 1.0 0.9091)) +(: cnet_isa_e06ed50b6d (IsA peneidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_ac66a383da (IsA penelope bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_611696e892 (IsA peneplain plain) (STV 1.0 0.9091)) +(: cnet_isa_83f5a93eed (IsA penetrability quality) (STV 1.0 0.9091)) +(: cnet_isa_d70d4567a3 (IsA penetralium inside) (STV 1.0 0.9091)) +(: cnet_isa_5d5a6dfb80 (IsA penetrating_trauma injury) (STV 1.0 0.9091)) +(: cnet_isa_9dc30e93a4 (IsA penetration attack) (STV 1.0 0.9091)) +(: cnet_isa_da2919421e (IsA penetration entrance) (STV 1.0 0.9091)) +(: cnet_isa_bf015e8c3a (IsA penetration sexual_intercourse) (STV 1.0 0.9091)) +(: cnet_isa_f958677780 (IsA penetration ability) (STV 1.0 0.9091)) +(: cnet_isa_18fda00a68 (IsA penetration depth) (STV 1.0 0.9091)) +(: cnet_isa_484c54748c (IsA penetration perception) (STV 1.0 0.9091)) +(: cnet_isa_1ab6839a45 (IsA penetration_bomb bomb) (STV 1.0 0.9091)) +(: cnet_isa_fa80959311 (IsA penetrator intruder) (STV 1.0 0.9091)) +(: cnet_isa_0adbb40540 (IsA peneus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_cc9258c204 (IsA pengo south_central_dravidian) (STV 1.0 0.9091)) +(: cnet_isa_d70cc0e4e4 (IsA pengo hungarian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_5ac946844a (IsA penguin sphenisciform_seabird) (STV 1.0 0.9091)) +(: cnet_isa_1d2b81b464 (IsA penguin funny_looking) (STV 1.0 0.9091)) +(: cnet_isa_b1dcb3acc2 (IsA penicillin antibiotic) (STV 1.0 0.9091)) +(: cnet_isa_b007e8fda5 (IsA penicillin_f penicillin) (STV 1.0 0.9091)) +(: cnet_isa_1c1342f97c (IsA penicillin_g penicillin) (STV 1.0 0.9091)) +(: cnet_isa_a03271bedf (IsA penicillin_o penicillin) (STV 1.0 0.9091)) +(: cnet_isa_8fcf7afd32 (IsA penicillin_resistant_bacteria bacteria) (STV 1.0 0.9091)) +(: cnet_isa_c5f4c161f7 (IsA penicillin_v penicillin) (STV 1.0 0.9091)) +(: cnet_isa_eb5ee44582 (IsA penicillinase enzyme) (STV 1.0 0.9091)) +(: cnet_isa_bb26b73d8a (IsA penicillinase_resistant_antibiotic penicillin) (STV 1.0 0.9091)) +(: cnet_isa_cb52095b63 (IsA penicillium fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_be77f6b6b0 (IsA penile_implant implant) (STV 1.0 0.9091)) +(: cnet_isa_39a6346341 (IsA peninsula land) (STV 1.0 0.9091)) +(: cnet_isa_088ff23a77 (IsA penis sex_organ) (STV 1.0 0.9091)) +(: cnet_isa_efb97f4358 (IsA penis erectile_organ) (STV 1.0 0.9091)) +(: cnet_isa_d499445324 (IsA penis_envy envy) (STV 1.0 0.9091)) +(: cnet_isa_b04d342fbf (IsA penitent religionist) (STV 1.0 0.9091)) +(: cnet_isa_d2b354ea70 (IsA penitentiary correctional_institution) (STV 1.0 0.9091)) +(: cnet_isa_14e36f377c (IsA penknife pocketknife) (STV 1.0 0.9091)) +(: cnet_isa_dbdf75d266 (IsA penlight flashlight) (STV 1.0 0.9091)) +(: cnet_isa_979933eb09 (IsA pennant flag) (STV 1.0 0.9091)) +(: cnet_isa_e907b2a81a (IsA pennant award) (STV 1.0 0.9091)) +(: cnet_isa_e5284b12d8 (IsA pennatula coelenterate_genus) (STV 1.0 0.9091)) +(: cnet_isa_d5c7cb096e (IsA pennatulidae coelenterate_family) (STV 1.0 0.9091)) +(: cnet_isa_7643b3241f (IsA penne pasta) (STV 1.0 0.9091)) +(: cnet_isa_9b350e9545 (IsA penni finnish_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_0228d8d664 (IsA pennisetum monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_26c157a662 (IsA pennon wing) (STV 1.0 0.9091)) +(: cnet_isa_c2a8654af1 (IsA pennoncel pennant) (STV 1.0 0.9091)) +(: cnet_isa_9a428d5734 (IsA pennsylvania state) (STV 1.0 0.9091)) +(: cnet_isa_ca624ca66a (IsA pennsylvania_dutch german) (STV 1.0 0.9091)) +(: cnet_isa_d18b86aa01 (IsA penny coin) (STV 1.0 0.9608)) +(: cnet_isa_935bf783a5 (IsA penny fractional_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_bf3c2f2ffc (IsA penny_ante deal) (STV 1.0 0.9091)) +(: cnet_isa_30fdc8f683 (IsA penny_ante poker) (STV 1.0 0.9091)) +(: cnet_isa_a02ae3b85d (IsA penny_arcade arcade) (STV 1.0 0.9091)) +(: cnet_isa_6818bb8868 (IsA penny_pincher hoarder) (STV 1.0 0.9091)) +(: cnet_isa_3628466ceb (IsA penny_stock over_counter_stock) (STV 1.0 0.9091)) +(: cnet_isa_7dd6322940 (IsA pennycress weed) (STV 1.0 0.9091)) +(: cnet_isa_e9fafcd0bd (IsA pennyroyal herb) (STV 1.0 0.9091)) +(: cnet_isa_1704da9e92 (IsA pennyroyal mint) (STV 1.0 0.9091)) +(: cnet_isa_684558f4e2 (IsA pennyroyal_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_692e985f59 (IsA pennyweight troy_unit) (STV 1.0 0.9091)) +(: cnet_isa_f0a04688a0 (IsA pennywhistle fipple_flute) (STV 1.0 0.9091)) +(: cnet_isa_5d99215a94 (IsA pennyworth worth) (STV 1.0 0.9091)) +(: cnet_isa_6ace4e8986 (IsA penobscot algonquin) (STV 1.0 0.9091)) +(: cnet_isa_12391aa8e5 (IsA penologist social_scientist) (STV 1.0 0.9091)) +(: cnet_isa_a3eee8a939 (IsA penology criminology) (STV 1.0 0.9091)) +(: cnet_isa_2d7639a190 (IsA penpusher clerk) (STV 1.0 0.9091)) +(: cnet_isa_26fb29feee (IsA pension regular_payment) (STV 1.0 0.9091)) +(: cnet_isa_dd2af92fd9 (IsA pension_fund nondepository_financial_institution) (STV 1.0 0.9091)) +(: cnet_isa_8dc03651aa (IsA pension_fund fund) (STV 1.0 0.9091)) +(: cnet_isa_6320bf753d (IsA pension_plan plan) (STV 1.0 0.9091)) +(: cnet_isa_28681710af (IsA pensioner beneficiary) (STV 1.0 0.9091)) +(: cnet_isa_8f82402175 (IsA pensiveness thoughtfulness) (STV 1.0 0.9091)) +(: cnet_isa_af439acebd (IsA pensiveness melancholy) (STV 1.0 0.9091)) +(: cnet_isa_f97d8b1a4c (IsA penstemon asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c7be7c18f5 (IsA pentacle star) (STV 1.0 0.9091)) +(: cnet_isa_c77060066c (IsA pentagon closed_shape_with_five_side) (STV 1.0 0.9091)) +(: cnet_isa_6af97c35e5 (IsA pentagon bureaucracy) (STV 1.0 0.9091)) +(: cnet_isa_2dc4d9b87d (IsA pentagon polygon) (STV 1.0 0.9091)) +(: cnet_isa_e827d55548 (IsA pentahedron polyhedron) (STV 1.0 0.9091)) +(: cnet_isa_ebfafbb5a8 (IsA pentail tree_shrew) (STV 1.0 0.9091)) +(: cnet_isa_41436699f1 (IsA pentameter verse) (STV 1.0 0.9091)) +(: cnet_isa_e224505ae8 (IsA pentastomida phylum) (STV 1.0 0.9091)) +(: cnet_isa_2189e74a8f (IsA pentathlete athlete) (STV 1.0 0.9091)) +(: cnet_isa_e454c9fd2f (IsA pentathlon athletic_contest) (STV 1.0 0.9091)) +(: cnet_isa_fdddf69596 (IsA pentatonic_scale gapped_scale) (STV 1.0 0.9091)) +(: cnet_isa_f768097572 (IsA pentecost quarter_day) (STV 1.0 0.9091)) +(: cnet_isa_da68555df7 (IsA pentecostal_religion protestant_church) (STV 1.0 0.9091)) +(: cnet_isa_a3441cc847 (IsA pentecostalism protestantism) (STV 1.0 0.9091)) +(: cnet_isa_20166a436a (IsA pentecostalist protestant) (STV 1.0 0.9091)) +(: cnet_isa_3815c81fbf (IsA penthouse apartment) (STV 1.0 0.9091)) +(: cnet_isa_25b00a64e2 (IsA pentimento painting) (STV 1.0 0.9091)) +(: cnet_isa_26d840568e (IsA pentlandite mineral) (STV 1.0 0.9091)) +(: cnet_isa_5a36284eaf (IsA pentode tube) (STV 1.0 0.9091)) +(: cnet_isa_db699d1b89 (IsA pentose monosaccharide) (STV 1.0 0.9091)) +(: cnet_isa_7556d31c7b (IsA pentoxide oxide) (STV 1.0 0.9091)) +(: cnet_isa_6478ca5f99 (IsA pentylenetetrazol medicine) (STV 1.0 0.9091)) +(: cnet_isa_edb2df7064 (IsA penuche fudge) (STV 1.0 0.9091)) +(: cnet_isa_52c5fc859f (IsA penult syllable) (STV 1.0 0.9091)) +(: cnet_isa_5e146b2f1c (IsA penumbra shadow) (STV 1.0 0.9091)) +(: cnet_isa_7ccd34fa31 (IsA penuriousness stinginess) (STV 1.0 0.9091)) +(: cnet_isa_637ea93319 (IsA penutian amerind) (STV 1.0 0.9091)) +(: cnet_isa_68b1c07b0f (IsA penutian native_american) (STV 1.0 0.9091)) +(: cnet_isa_d9910d8eae (IsA peonage practice) (STV 1.0 0.9091)) +(: cnet_isa_1c0a298ea4 (IsA peonage subjugation) (STV 1.0 0.9091)) +(: cnet_isa_0b576fa021 (IsA peony flower) (STV 1.0 0.9091)) +(: cnet_isa_833acc1f5c (IsA people_s_party party) (STV 1.0 0.9091)) +(: cnet_isa_b52c30f628 (IsA people bisexual) (STV 1.0 0.9608)) +(: cnet_isa_3eace59ae2 (IsA people christian) (STV 1.0 0.9091)) +(: cnet_isa_92184ad868 (IsA people democrat) (STV 1.0 0.9339)) +(: cnet_isa_f2aece4290 (IsA people janitor) (STV 1.0 0.9339)) +(: cnet_isa_aa6240e17e (IsA people jerk) (STV 1.0 0.9091)) +(: cnet_isa_cdf9622d22 (IsA people many_person) (STV 1.0 0.9454)) +(: cnet_isa_0cd2449444 (IsA people member_of_human_race) (STV 1.0 0.9091)) +(: cnet_isa_a222751076 (IsA people not) (STV 1.0 0.9091)) +(: cnet_isa_e1e369bd69 (IsA people person) (STV 1.0 0.9524)) +(: cnet_isa_5da1cd6d72 (IsA people family) (STV 1.0 0.9091)) +(: cnet_isa_6aca2e7e19 (IsA people group) (STV 1.0 0.9091)) +(: cnet_isa_d56bcfabd5 (IsA people_say_dog man_s_best_friend) (STV 1.0 0.9091)) +(: cnet_isa_b64ef3437a (IsA people_smuggling major_international_issue) (STV 1.0 0.9091)) +(: cnet_isa_84bf5e9a71 (IsA people people) (STV 1.0 0.9091)) +(: cnet_isa_66a35654b9 (IsA pep liveliness) (STV 1.0 0.9091)) +(: cnet_isa_ccf18ac6ba (IsA pep_rally rally) (STV 1.0 0.9091)) +(: cnet_isa_9c0ea5175b (IsA pep_talk exhortation) (STV 1.0 0.9091)) +(: cnet_isa_9129b4453d (IsA peperomia herb) (STV 1.0 0.9091)) +(: cnet_isa_15ab1371af (IsA peplo garment) (STV 1.0 0.9091)) +(: cnet_isa_e29095ace9 (IsA peplum frill) (STV 1.0 0.9091)) +(: cnet_isa_b3e69adf0b (IsA pepper spice) (STV 1.0 0.9572)) +(: cnet_isa_359b3a7c96 (IsA pepper flavorer) (STV 1.0 0.9091)) +(: cnet_isa_0900875600 (IsA pepper solanaceous_vegetable) (STV 1.0 0.9091)) +(: cnet_isa_2a293b73b3 (IsA pepper true_pepper) (STV 1.0 0.9091)) +(: cnet_isa_2f48996642 (IsA pepper_and_salt fabric) (STV 1.0 0.9091)) +(: cnet_isa_ac20e5b8fd (IsA pepper_mill mill) (STV 1.0 0.9091)) +(: cnet_isa_23e71ca5e5 (IsA pepper_pot soup) (STV 1.0 0.9091)) +(: cnet_isa_fa6105ebf1 (IsA pepper_sauce sauce) (STV 1.0 0.9091)) +(: cnet_isa_c5fc50a44d (IsA pepper_shaker shaker) (STV 1.0 0.9091)) +(: cnet_isa_94370f6ef9 (IsA pepper_shrub shrub) (STV 1.0 0.9091)) +(: cnet_isa_a20b0b4ae4 (IsA pepper_spray aerosol) (STV 1.0 0.9091)) +(: cnet_isa_3ab1206ac4 (IsA pepper_spray chemical_weapon) (STV 1.0 0.9091)) +(: cnet_isa_80f5972e64 (IsA pepper_steak dish) (STV 1.0 0.9091)) +(: cnet_isa_2f35b2769b (IsA pepper_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_98c2a39b76 (IsA peppercorn_rent rent) (STV 1.0 0.9091)) +(: cnet_isa_d72b20b046 (IsA peppermint plant) (STV 1.0 0.9339)) +(: cnet_isa_e4ec48b488 (IsA peppermint mint) (STV 1.0 0.9091)) +(: cnet_isa_e7a60786f9 (IsA peppermint_oil flavorer) (STV 1.0 0.9091)) +(: cnet_isa_d1c378beee (IsA peppermint_patty patty) (STV 1.0 0.9091)) +(: cnet_isa_01c28f37f3 (IsA pepperoni sausage) (STV 1.0 0.9091)) +(: cnet_isa_f691daba2c (IsA pepperoni_pizza pizza) (STV 1.0 0.9091)) +(: cnet_isa_4a87be3f8c (IsA pepsi beverage) (STV 1.0 0.9091)) +(: cnet_isa_0d767b17ba (IsA pepsi drink) (STV 1.0 0.9524)) +(: cnet_isa_3f77cd37ef (IsA pepsi soda) (STV 1.0 0.9572)) +(: cnet_isa_0ebe0307c1 (IsA pepsi soft_drink) (STV 1.0 0.9339)) +(: cnet_isa_f671220659 (IsA pepsi cola) (STV 1.0 0.9091)) +(: cnet_isa_c57275b14b (IsA pepsin enzyme) (STV 1.0 0.9091)) +(: cnet_isa_39f87e7cc3 (IsA pepsinogen enzyme) (STV 1.0 0.9091)) +(: cnet_isa_6ee9487b96 (IsA peptic_ulcer ulcer) (STV 1.0 0.9091)) +(: cnet_isa_8890784cae (IsA peptide amide) (STV 1.0 0.9091)) +(: cnet_isa_99ed98f455 (IsA peptide_bond chemical_bond) (STV 1.0 0.9091)) +(: cnet_isa_2b2ed70d0a (IsA peptization chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_358a0fd802 (IsA peptone organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_d61487591c (IsA per_capita_income income) (STV 1.0 0.9091)) +(: cnet_isa_c9a703bfb9 (IsA per_diem allowance) (STV 1.0 0.9091)) +(: cnet_isa_fb5ca03254 (IsA peradventure doubt) (STV 1.0 0.9091)) +(: cnet_isa_2318272f13 (IsA perambulation walk) (STV 1.0 0.9091)) +(: cnet_isa_9712bd0620 (IsA peramelidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_f75bde857c (IsA perboric_acid boric_acid) (STV 1.0 0.9091)) +(: cnet_isa_867b12b240 (IsA perca fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_3f4a8ccf0f (IsA percale fabric) (STV 1.0 0.9091)) +(: cnet_isa_e827e4a105 (IsA perceiver person) (STV 1.0 0.9091)) +(: cnet_isa_087f704e89 (IsA percent_sign character) (STV 1.0 0.9091)) +(: cnet_isa_1740864bf7 (IsA percentage proportion) (STV 1.0 0.9091)) +(: cnet_isa_65935719bf (IsA percentile mark) (STV 1.0 0.9091)) +(: cnet_isa_17e679362a (IsA percept representation) (STV 1.0 0.9091)) +(: cnet_isa_11fedf86fc (IsA perceptibility physical_property) (STV 1.0 0.9091)) +(: cnet_isa_40cd4a5724 (IsA perception basic_cognitive_process) (STV 1.0 0.9091)) +(: cnet_isa_cd2b54f888 (IsA perception cognition) (STV 1.0 0.9091)) +(: cnet_isa_1b1a25c550 (IsA perception conceptualization) (STV 1.0 0.9091)) +(: cnet_isa_82da2e7168 (IsA perceptiveness sensitivity) (STV 1.0 0.9091)) +(: cnet_isa_efafd0f199 (IsA perch percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_01d4911f05 (IsA perch support) (STV 1.0 0.9091)) +(: cnet_isa_8e4eadd227 (IsA perch freshwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_2922f81e69 (IsA perch seat) (STV 1.0 0.9091)) +(: cnet_isa_8b30eb598a (IsA perch area_unit) (STV 1.0 0.9091)) +(: cnet_isa_c0b17de9aa (IsA perch linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_4209ae9645 (IsA percher person) (STV 1.0 0.9091)) +(: cnet_isa_f8c81bef3f (IsA percheron draft_horse) (STV 1.0 0.9091)) +(: cnet_isa_b5f4542175 (IsA perchlorate salt) (STV 1.0 0.9091)) +(: cnet_isa_40f56ed4a9 (IsA perchloric_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_9445e94a2c (IsA perchloride chloride) (STV 1.0 0.9091)) +(: cnet_isa_cffec11383 (IsA percidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_b60513d09e (IsA perciforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_5ac5b68b0e (IsA percina fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_c58ab6250d (IsA percoid_fish spiny_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_4edc9d1ba5 (IsA percoidea animal_order) (STV 1.0 0.9091)) +(: cnet_isa_6e3c1a5ec9 (IsA percolate filtrate) (STV 1.0 0.9091)) +(: cnet_isa_1f5ceac0a9 (IsA percolation cooking) (STV 1.0 0.9091)) +(: cnet_isa_8bd79cb13c (IsA percolation filtration) (STV 1.0 0.9091)) +(: cnet_isa_a6e61de816 (IsA percolator coffeepot) (STV 1.0 0.9091)) +(: cnet_isa_2c262eeac9 (IsA percophidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_b3631343b4 (IsA percussion auscultation) (STV 1.0 0.9091)) +(: cnet_isa_efe760b45f (IsA percussion detonation) (STV 1.0 0.9091)) +(: cnet_isa_e446b6212f (IsA percussion music) (STV 1.0 0.9091)) +(: cnet_isa_2a82c3b8a2 (IsA percussion_cap detonator) (STV 1.0 0.9091)) +(: cnet_isa_9d06e2a5f5 (IsA percussion_instrument music_instrument) (STV 1.0 0.9339)) +(: cnet_isa_45a8d93b2e (IsA percussion_instrument musical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_ed64e6d9dd (IsA percussion_section section) (STV 1.0 0.9091)) +(: cnet_isa_dc47567071 (IsA percussionist musician) (STV 1.0 0.9091)) +(: cnet_isa_c21739b815 (IsA perdicidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_1de409dedd (IsA perdix bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_36ed220ee1 (IsA perdurability permanence) (STV 1.0 0.9091)) +(: cnet_isa_b8314e6406 (IsA pere_david_s_deer deer) (STV 1.0 0.9091)) +(: cnet_isa_c9eb4e01f2 (IsA peregrination travel) (STV 1.0 0.9091)) +(: cnet_isa_f8b30d7316 (IsA peregrine falcon) (STV 1.0 0.9091)) +(: cnet_isa_0a5412308f (IsA perennation organic_process) (STV 1.0 0.9091)) +(: cnet_isa_ff5e4c752d (IsA perennial plant) (STV 1.0 0.9091)) +(: cnet_isa_2d8a488bf2 (IsA perennial_ryegrass rye_grass) (STV 1.0 0.9091)) +(: cnet_isa_a7e2b8f96c (IsA perennial_salt_marsh_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_76b7bba127 (IsA pereskia caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2dad9bd8e0 (IsA perestroika economic_policy) (STV 1.0 0.9091)) +(: cnet_isa_d1bab18b97 (IsA perfect_game baseball) (STV 1.0 0.9091)) +(: cnet_isa_edd1b5581d (IsA perfecter skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_2a0b803cb3 (IsA perfectibility capability) (STV 1.0 0.9091)) +(: cnet_isa_25b2f0df37 (IsA perfection improvement) (STV 1.0 0.9091)) +(: cnet_isa_c469d1eb4a (IsA perfection state) (STV 1.0 0.9091)) +(: cnet_isa_24d6bbe76e (IsA perfectionism disposition) (STV 1.0 0.9091)) +(: cnet_isa_16b4398adf (IsA perfectionist compulsive) (STV 1.0 0.9091)) +(: cnet_isa_35d8a434ed (IsA perfective aspect) (STV 1.0 0.9091)) +(: cnet_isa_8c32a0e0bb (IsA perfective tense) (STV 1.0 0.9091)) +(: cnet_isa_03f0e1aa79 (IsA perfidy disloyalty) (STV 1.0 0.9091)) +(: cnet_isa_aab12cf168 (IsA perfluorocarbon fluorocarbon) (STV 1.0 0.9091)) +(: cnet_isa_b652a2fedd (IsA perfluorocarbon greenhouse_gas) (STV 1.0 0.9091)) +(: cnet_isa_6704b2ccb3 (IsA perfoliate_leaf simple_leaf) (STV 1.0 0.9091)) +(: cnet_isa_dddddd1930 (IsA perforated_eardrum eardrum) (STV 1.0 0.9091)) +(: cnet_isa_142d1ec6fb (IsA perforating_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_e9363278ed (IsA perforation puncture) (STV 1.0 0.9091)) +(: cnet_isa_7496b02388 (IsA perforation hole) (STV 1.0 0.9091)) +(: cnet_isa_2f5c84b903 (IsA performance accomplishment) (STV 1.0 0.9091)) +(: cnet_isa_7fcf18805c (IsA performance action) (STV 1.0 0.9091)) +(: cnet_isa_3cb4de42ba (IsA performance presentation) (STV 1.0 0.9091)) +(: cnet_isa_73b7affc07 (IsA performance show) (STV 1.0 0.9091)) +(: cnet_isa_1ab5701c51 (IsA performance_bond bond) (STV 1.0 0.9091)) +(: cnet_isa_0edc468759 (IsA performer entertainer) (STV 1.0 0.9091)) +(: cnet_isa_ad82f006c9 (IsA performing_art humanistic_discipline) (STV 1.0 0.9091)) +(: cnet_isa_d00a3e3192 (IsA performing_surgery activity) (STV 1.0 0.9091)) +(: cnet_isa_d127591da6 (IsA perfume toiletry) (STV 1.0 0.9091)) +(: cnet_isa_80cf268135 (IsA perfumer maker) (STV 1.0 0.9091)) +(: cnet_isa_a641f0ab32 (IsA perfumery art) (STV 1.0 0.9091)) +(: cnet_isa_42b17caffd (IsA perfumery establishment) (STV 1.0 0.9091)) +(: cnet_isa_8b451924ca (IsA perfumery perfume) (STV 1.0 0.9091)) +(: cnet_isa_3da7c29379 (IsA perfumery shop) (STV 1.0 0.9091)) +(: cnet_isa_6eea2ca799 (IsA perfusion insertion) (STV 1.0 0.9091)) +(: cnet_isa_60dfcd0757 (IsA peri spirit) (STV 1.0 0.9091)) +(: cnet_isa_c6c11aa2f7 (IsA peri girl) (STV 1.0 0.9091)) +(: cnet_isa_ebfd376386 (IsA perianth covering) (STV 1.0 0.9091)) +(: cnet_isa_252be0d9c2 (IsA perianth plant_organ) (STV 1.0 0.9091)) +(: cnet_isa_6900a8c95c (IsA periapsis celestial_point) (STV 1.0 0.9091)) +(: cnet_isa_82f9a414a5 (IsA periarterial_plexus nerve_plexus) (STV 1.0 0.9091)) +(: cnet_isa_e4346595af (IsA periarteritis arteritis) (STV 1.0 0.9091)) +(: cnet_isa_aafb4669b0 (IsA periarteritis_nodosa disease) (STV 1.0 0.9091)) +(: cnet_isa_6dc3f7e780 (IsA pericallis asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6f0c814a92 (IsA pericardial_cavity cavity) (STV 1.0 0.9091)) +(: cnet_isa_3fa9f3b934 (IsA pericardial_sac sac) (STV 1.0 0.9091)) +(: cnet_isa_c6bab2f4e3 (IsA pericardial_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_ce751f1f6c (IsA pericarditis carditis) (STV 1.0 0.9091)) +(: cnet_isa_953e280b59 (IsA pericardium serous_membrane) (STV 1.0 0.9091)) +(: cnet_isa_8785ed2daa (IsA pericarp covering) (STV 1.0 0.9091)) +(: cnet_isa_4e1569737a (IsA pericementoclasia pyorrhea) (STV 1.0 0.9091)) +(: cnet_isa_0939777291 (IsA periclase mineral) (STV 1.0 0.9091)) +(: cnet_isa_085e36bbb0 (IsA peridinian dinoflagellate) (STV 1.0 0.9091)) +(: cnet_isa_7209802c77 (IsA peridiniidae protoctist_family) (STV 1.0 0.9091)) +(: cnet_isa_90225604a2 (IsA peridinium protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_7a187a84d8 (IsA peridium covering) (STV 1.0 0.9091)) +(: cnet_isa_0f276f8a2d (IsA peridot chrysolite) (STV 1.0 0.9091)) +(: cnet_isa_1ba636129e (IsA peridot transparent_gem) (STV 1.0 0.9091)) +(: cnet_isa_3f7f100e15 (IsA peridotite igneous_rock) (STV 1.0 0.9091)) +(: cnet_isa_95f80318be (IsA perigee periapsis) (STV 1.0 0.9091)) +(: cnet_isa_6d4f58ca4c (IsA perigon angle) (STV 1.0 0.9091)) +(: cnet_isa_9f32459efa (IsA perihelion periapsis) (STV 1.0 0.9091)) +(: cnet_isa_c5c7873541 (IsA perijove periapsis) (STV 1.0 0.9091)) +(: cnet_isa_331ec55621 (IsA perilla asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ce4a06513a (IsA perilymph liquid_body_substance) (STV 1.0 0.9091)) +(: cnet_isa_50ac50dd63 (IsA perimeter line) (STV 1.0 0.9091)) +(: cnet_isa_f7ca6ae53b (IsA perimysium connective_tissue) (STV 1.0 0.9091)) +(: cnet_isa_cde9a8a82f (IsA perinatologist obstetrician) (STV 1.0 0.9091)) +(: cnet_isa_5db8499acc (IsA perinatology obstetric) (STV 1.0 0.9091)) +(: cnet_isa_da936761b8 (IsA perineal_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_5035811bf8 (IsA perineotomy incision) (STV 1.0 0.9091)) +(: cnet_isa_0ec6f20130 (IsA perineum area) (STV 1.0 0.9091)) +(: cnet_isa_53f506570e (IsA perineurium connective_tissue) (STV 1.0 0.9091)) +(: cnet_isa_7ada5eb63a (IsA period punctuation) (STV 1.0 0.9091)) +(: cnet_isa_249c4159c7 (IsA period part) (STV 1.0 0.9091)) +(: cnet_isa_da81b72160 (IsA period end) (STV 1.0 0.9091)) +(: cnet_isa_3a32183fa1 (IsA period era) (STV 1.0 0.9091)) +(: cnet_isa_755780a523 (IsA period geological_time) (STV 1.0 0.9091)) +(: cnet_isa_b6e3651e1e (IsA period time_interval) (STV 1.0 0.9091)) +(: cnet_isa_63905172ea (IsA period_piece work_of_art) (STV 1.0 0.9091)) +(: cnet_isa_82bec49c46 (IsA periodic_acid oxyacid) (STV 1.0 0.9091)) +(: cnet_isa_8ba46952ca (IsA periodic_apnea_of_newborn apnea) (STV 1.0 0.9091)) +(: cnet_isa_1e513365ea (IsA periodic_breathing breathing) (STV 1.0 0.9091)) +(: cnet_isa_bf685eceaf (IsA periodic_edema edema) (STV 1.0 0.9091)) +(: cnet_isa_dc2e63c555 (IsA periodic_event happening) (STV 1.0 0.9091)) +(: cnet_isa_98d03e2487 (IsA periodic_law law) (STV 1.0 0.9091)) +(: cnet_isa_a29c7353fa (IsA periodic_motion movement) (STV 1.0 0.9091)) +(: cnet_isa_7eec4ce961 (IsA periodic_sentence complex_sentence) (STV 1.0 0.9091)) +(: cnet_isa_36da65115f (IsA periodic_table table) (STV 1.0 0.9091)) +(: cnet_isa_3154167c97 (IsA periodical publication) (STV 1.0 0.9091)) +(: cnet_isa_582180de87 (IsA periodontal_disease disease) (STV 1.0 0.9091)) +(: cnet_isa_ecbf6e0ad4 (IsA periodontic dentistry) (STV 1.0 0.9091)) +(: cnet_isa_760657ce74 (IsA periodontist dentist) (STV 1.0 0.9091)) +(: cnet_isa_6a47703b87 (IsA periophthalmus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_c4ab89266a (IsA periosteum membrane) (STV 1.0 0.9091)) +(: cnet_isa_04842d7b81 (IsA peripatetic pedestrian) (STV 1.0 0.9091)) +(: cnet_isa_c4357e2ec9 (IsA peripatidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_9de31b8d3c (IsA peripatopsidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_2842f882c6 (IsA peripatopsis arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_fbebf1d532 (IsA peripeteia surprise) (STV 1.0 0.9091)) +(: cnet_isa_4b8e3e88b3 (IsA peripheral electronic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_74be14a003 (IsA peripheral_nervous_system system) (STV 1.0 0.9091)) +(: cnet_isa_4d6ac95d71 (IsA peripheral_vision sight) (STV 1.0 0.9091)) +(: cnet_isa_5e8e2a2926 (IsA periphery boundary) (STV 1.0 0.9091)) +(: cnet_isa_9a45e35e62 (IsA periplaneta arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_c9099cb3fd (IsA periploca dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2028779bb3 (IsA periscope optical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_972c9b202d (IsA periselene periapsis) (STV 1.0 0.9091)) +(: cnet_isa_9776b16265 (IsA perishableness unsatisfactoriness) (STV 1.0 0.9091)) +(: cnet_isa_57c9de39ce (IsA perishable foodstuff) (STV 1.0 0.9091)) +(: cnet_isa_d47bea9242 (IsA perisher cad) (STV 1.0 0.9091)) +(: cnet_isa_ad2407f1e7 (IsA perisoreus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_560ffb5233 (IsA perisperm plant_tissue) (STV 1.0 0.9091)) +(: cnet_isa_95702830f9 (IsA perissodactyla animal_order) (STV 1.0 0.9091)) +(: cnet_isa_41d1e32e0f (IsA peristalsis bodily_process) (STV 1.0 0.9091)) +(: cnet_isa_13191f1414 (IsA peristediinae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_c053c18827 (IsA peristedion fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_c84f442197 (IsA peristome structure) (STV 1.0 0.9091)) +(: cnet_isa_70d55ba012 (IsA peristome plant_process) (STV 1.0 0.9091)) +(: cnet_isa_69c2f29e16 (IsA peristyle colonnade) (STV 1.0 0.9091)) +(: cnet_isa_2ffccbf4ea (IsA perithecium ascocarp) (STV 1.0 0.9091)) +(: cnet_isa_133e6800d7 (IsA perithelium membrane) (STV 1.0 0.9091)) +(: cnet_isa_3c9407d8e2 (IsA peritoneal_cavity cavity) (STV 1.0 0.9091)) +(: cnet_isa_86347348ff (IsA peritoneum serous_membrane) (STV 1.0 0.9091)) +(: cnet_isa_b815a73b66 (IsA peritonitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_b23762538e (IsA periwig wig) (STV 1.0 0.9091)) +(: cnet_isa_c8f6bacc40 (IsA periwinkle seasnail) (STV 1.0 0.9091)) +(: cnet_isa_3f1a3643b6 (IsA periwinkle seafood) (STV 1.0 0.9091)) +(: cnet_isa_6efcdaa33d (IsA periwinkle herb) (STV 1.0 0.9091)) +(: cnet_isa_96c4d2ab73 (IsA periwinkle subshrub) (STV 1.0 0.9091)) +(: cnet_isa_ae6e2db996 (IsA periwinkle_plant_derivative antineoplastic) (STV 1.0 0.9091)) +(: cnet_isa_bcb201cdd7 (IsA perjurer liar) (STV 1.0 0.9091)) +(: cnet_isa_e8c38ba43b (IsA perjury misdemeanor) (STV 1.0 0.9091)) +(: cnet_isa_8c0a855f44 (IsA perl programming_language) (STV 1.0 0.9572)) +(: cnet_isa_ad2f49bf36 (IsA permafrost land) (STV 1.0 0.9091)) +(: cnet_isa_a3c855b4be (IsA permalloy nickel_base_alloy) (STV 1.0 0.9091)) +(: cnet_isa_52a517f0e8 (IsA permanence duration) (STV 1.0 0.9091)) +(: cnet_isa_2d4960f612 (IsA permanent_injunction injunction) (STV 1.0 0.9091)) +(: cnet_isa_6aaa1b8ae5 (IsA permanent_magnet magnet) (STV 1.0 0.9091)) +(: cnet_isa_542e16b198 (IsA permanent_press fabric) (STV 1.0 0.9091)) +(: cnet_isa_282c85143e (IsA permanent_tooth tooth) (STV 1.0 0.9091)) +(: cnet_isa_b3b33f8e8a (IsA permanent_wave wave) (STV 1.0 0.9091)) +(: cnet_isa_30a132b247 (IsA permanganate salt) (STV 1.0 0.9091)) +(: cnet_isa_1c5bcb903c (IsA permanganic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_7b9f8f37de (IsA permeability porosity) (STV 1.0 0.9091)) +(: cnet_isa_d69a310298 (IsA permeation diffusion) (STV 1.0 0.9091)) +(: cnet_isa_741f50a25f (IsA permic fennic) (STV 1.0 0.9091)) +(: cnet_isa_3742db5d91 (IsA permissibility admissibility) (STV 1.0 0.9091)) +(: cnet_isa_81b2196bca (IsA permission approval) (STV 1.0 0.9091)) +(: cnet_isa_c1098d791e (IsA permissiveness disposition) (STV 1.0 0.9091)) +(: cnet_isa_c3e29e8095 (IsA permit pompano) (STV 1.0 0.9091)) +(: cnet_isa_a10266ae4d (IsA permutability exchangeability) (STV 1.0 0.9091)) +(: cnet_isa_48d8ed7092 (IsA permutation mathematical_process) (STV 1.0 0.9091)) +(: cnet_isa_91d78e1421 (IsA permutation reordering) (STV 1.0 0.9091)) +(: cnet_isa_7255fc5399 (IsA permutation transformation) (STV 1.0 0.9091)) +(: cnet_isa_371e695fe9 (IsA pernicious_anemia anemia) (STV 1.0 0.9091)) +(: cnet_isa_53710ded5b (IsA perniciousness unwholesomeness) (STV 1.0 0.9091)) +(: cnet_isa_f027f794e2 (IsA pernis bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_73eb285415 (IsA pernod liqueur) (STV 1.0 0.9091)) +(: cnet_isa_24392b0044 (IsA pernyi_moth saturniid) (STV 1.0 0.9091)) +(: cnet_isa_96ebdfcd1c (IsA perodicticus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_69b3213cc2 (IsA perognathus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_88e4866fbc (IsA peromyscus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_3ba20d81b9 (IsA peroneal_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_2561dc6ff2 (IsA peroneus skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_e6d1e2ca83 (IsA peronospora fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_27fa4a3337 (IsA peronosporaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_4d0b96f9d7 (IsA peronosporale fungus_order) (STV 1.0 0.9091)) +(: cnet_isa_66d630ea42 (IsA peroration oration) (STV 1.0 0.9091)) +(: cnet_isa_48a048496d (IsA peroration conclusion) (STV 1.0 0.9091)) +(: cnet_isa_e86fac5810 (IsA peroxidase oxidase) (STV 1.0 0.9091)) +(: cnet_isa_875e1ccb43 (IsA peroxide oxide) (STV 1.0 0.9091)) +(: cnet_isa_568a733ec2 (IsA peroxide_blond blond) (STV 1.0 0.9091)) +(: cnet_isa_d363d7de21 (IsA perpendicular face) (STV 1.0 0.9091)) +(: cnet_isa_416d0f8167 (IsA perpendicular gothic) (STV 1.0 0.9091)) +(: cnet_isa_214aad3b57 (IsA perpendicular straight_line) (STV 1.0 0.9091)) +(: cnet_isa_f5859424e3 (IsA perpendicularity rectangularity) (STV 1.0 0.9091)) +(: cnet_isa_a8a4827445 (IsA perpetration crime) (STV 1.0 0.9091)) +(: cnet_isa_e25c25d3f6 (IsA perpetrator wrongdoer) (STV 1.0 0.9091)) +(: cnet_isa_c1e92b3b1b (IsA perpetual_calendar calendar) (STV 1.0 0.9091)) +(: cnet_isa_8b67b2275a (IsA perpetual_motion motion) (STV 1.0 0.9091)) +(: cnet_isa_eeb2fa5846 (IsA perpetual_motion_machine machine) (STV 1.0 0.9091)) +(: cnet_isa_4dce0e51ae (IsA perpetual_warrant warrant) (STV 1.0 0.9091)) +(: cnet_isa_f1747bd575 (IsA perpetuity permanence) (STV 1.0 0.9091)) +(: cnet_isa_61514ed724 (IsA perplexity confusion) (STV 1.0 0.9091)) +(: cnet_isa_f38d008cbf (IsA perry alcohol) (STV 1.0 0.9091)) +(: cnet_isa_cd0d22a999 (IsA persea magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0db452427b (IsA persecution maltreatment) (STV 1.0 0.9091)) +(: cnet_isa_554ca0f384 (IsA perseverance continuance) (STV 1.0 0.9091)) +(: cnet_isa_79aec66637 (IsA perseveration inclination) (STV 1.0 0.9091)) +(: cnet_isa_9e95978d00 (IsA persian breed_of_cat) (STV 1.0 0.9339)) +(: cnet_isa_a2c93b9204 (IsA persian cat) (STV 1.0 0.9524)) +(: cnet_isa_98baeb3e4d (IsA persian iranian) (STV 1.0 0.9091)) +(: cnet_isa_cb4d8a40bf (IsA persian_cat domestic_cat) (STV 1.0 0.9091)) +(: cnet_isa_a3a025a1f0 (IsA persian_deity deity) (STV 1.0 0.9091)) +(: cnet_isa_514dc732ee (IsA persian_iris iris) (STV 1.0 0.9091)) +(: cnet_isa_2d0e9e4898 (IsA persian_lamb lamb) (STV 1.0 0.9091)) +(: cnet_isa_e4f2d025c5 (IsA persian_lamb lambskin) (STV 1.0 0.9091)) +(: cnet_isa_297917ce03 (IsA persian_lilac lilac) (STV 1.0 0.9091)) +(: cnet_isa_f7bfc40183 (IsA persian_melon winter_melon) (STV 1.0 0.9091)) +(: cnet_isa_1a3b815625 (IsA persian_violet houseplant) (STV 1.0 0.9091)) +(: cnet_isa_cde56d8e06 (IsA persiflage banter) (STV 1.0 0.9091)) +(: cnet_isa_511c2067b0 (IsA persimmon berry) (STV 1.0 0.9091)) +(: cnet_isa_7f8997912b (IsA persimmon fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_56f8a85e32 (IsA person individual) (STV 1.0 0.9339)) +(: cnet_isa_f295fa7a34 (IsA person causal_agent) (STV 1.0 0.9091)) +(: cnet_isa_8c971c42db (IsA person organism) (STV 1.0 0.9091)) +(: cnet_isa_ba1299dbbc (IsA person human_body) (STV 1.0 0.9091)) +(: cnet_isa_aaee20d991 (IsA person grammatical_category) (STV 1.0 0.9091)) +(: cnet_isa_9880b404fe (IsA person_agreement agreement) (STV 1.0 0.9091)) +(: cnet_isa_1c616c8f22 (IsA person_of_color person) (STV 1.0 0.9091)) +(: cnet_isa_6137f67e48 (IsA persona appearance) (STV 1.0 0.9091)) +(: cnet_isa_87e647c201 (IsA persona_grata diplomat) (STV 1.0 0.9091)) +(: cnet_isa_27b08b7118 (IsA persona_non_grata diplomat) (STV 1.0 0.9091)) +(: cnet_isa_b1c0e15764 (IsA personableness personality) (STV 1.0 0.9091)) +(: cnet_isa_8d41a18d7a (IsA personage person) (STV 1.0 0.9091)) +(: cnet_isa_3a4ad37a8f (IsA personal new_article) (STV 1.0 0.9091)) +(: cnet_isa_abeda2dcc2 (IsA personal_business concern) (STV 1.0 0.9091)) +(: cnet_isa_917a97aa24 (IsA personal_care care) (STV 1.0 0.9091)) +(: cnet_isa_e22aa94906 (IsA personal_check check) (STV 1.0 0.9091)) +(: cnet_isa_e23e4db827 (IsA personal_computer digital_computer) (STV 1.0 0.9091)) +(: cnet_isa_da368c7b39 (IsA personal_digital_assistant electronic_device) (STV 1.0 0.9091)) +(: cnet_isa_498b4b3143 (IsA personal_equation variability) (STV 1.0 0.9091)) +(: cnet_isa_da932f3449 (IsA personal_expense expense) (STV 1.0 0.9091)) +(: cnet_isa_1841affc52 (IsA personal_foul foul) (STV 1.0 0.9091)) +(: cnet_isa_3eef663f88 (IsA personal_identification_number number) (STV 1.0 0.9091)) +(: cnet_isa_3b6d5c08a8 (IsA personal_income income) (STV 1.0 0.9091)) +(: cnet_isa_9e3aa77a4c (IsA personal_letter letter) (STV 1.0 0.9091)) +(: cnet_isa_294bc4d4b3 (IsA personal_loan loan) (STV 1.0 0.9091)) +(: cnet_isa_0abc1bff63 (IsA personal_pronoun pronoun) (STV 1.0 0.9091)) +(: cnet_isa_e9357670c5 (IsA personal_property property) (STV 1.0 0.9091)) +(: cnet_isa_bcbb1742c5 (IsA personal_relation relationship) (STV 1.0 0.9091)) +(: cnet_isa_9f98bd2c88 (IsA personal_representative representative) (STV 1.0 0.9091)) +(: cnet_isa_5729f69cf1 (IsA personality attribute) (STV 1.0 0.9091)) +(: cnet_isa_20848b93e1 (IsA personality celebrity) (STV 1.0 0.9091)) +(: cnet_isa_38bafc35c8 (IsA personality_disorder mental_disorder) (STV 1.0 0.9091)) +(: cnet_isa_c3caf4d94d (IsA personality_inventory personality_test) (STV 1.0 0.9091)) +(: cnet_isa_0347ed6eca (IsA personality_inventory questionnaire) (STV 1.0 0.9091)) +(: cnet_isa_fb482aede2 (IsA personality_test test) (STV 1.0 0.9091)) +(: cnet_isa_6f9d54c159 (IsA personhood identity) (STV 1.0 0.9091)) +(: cnet_isa_aea3904e1a (IsA personification embodiment) (STV 1.0 0.9091)) +(: cnet_isa_69a4d4033c (IsA personification trope) (STV 1.0 0.9091)) +(: cnet_isa_d32f8b369f (IsA personification person) (STV 1.0 0.9091)) +(: cnet_isa_f9167f456f (IsA personnel_carrier military_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_eb7b33cc25 (IsA personnel_carrier self_propelled_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_8e91a3df76 (IsA personnel_casualty casualty) (STV 1.0 0.9091)) +(: cnet_isa_268b24d5d8 (IsA personnel_department department) (STV 1.0 0.9091)) +(: cnet_isa_9803b2c685 (IsA persoonia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_68de255129 (IsA perspective appearance) (STV 1.0 0.9091)) +(: cnet_isa_e64e5e7f90 (IsA perspicuity clarity) (STV 1.0 0.9091)) +(: cnet_isa_4f46d58f86 (IsA perspiration secretion) (STV 1.0 0.9091)) +(: cnet_isa_cfc14445a3 (IsA perspiration bodily_process) (STV 1.0 0.9091)) +(: cnet_isa_8ab4211888 (IsA perspirer person) (STV 1.0 0.9091)) +(: cnet_isa_7ad8239e33 (IsA persuader communicator) (STV 1.0 0.9091)) +(: cnet_isa_399ced8370 (IsA persuasion communication) (STV 1.0 0.9091)) +(: cnet_isa_a34f3f491b (IsA persuasiveness power) (STV 1.0 0.9091)) +(: cnet_isa_336d7003c6 (IsA pertainym relational_adjective) (STV 1.0 0.9091)) +(: cnet_isa_d392527d05 (IsA pertness liveliness) (STV 1.0 0.9091)) +(: cnet_isa_219c8f9c02 (IsA perturbation discomposure) (STV 1.0 0.9091)) +(: cnet_isa_7729fd40f5 (IsA perturbation activity) (STV 1.0 0.9091)) +(: cnet_isa_c9848dca03 (IsA perturbation influence) (STV 1.0 0.9091)) +(: cnet_isa_3a042a19b3 (IsA pertusaria fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_b5eabcf3fd (IsA pertusariaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_6d518ad1fe (IsA perusal reading) (STV 1.0 0.9091)) +(: cnet_isa_2c4c90b7a8 (IsA peruvian south_american) (STV 1.0 0.9091)) +(: cnet_isa_2cd5ffac3b (IsA peruvian_balsam tree) (STV 1.0 0.9091)) +(: cnet_isa_d1d69a7517 (IsA peruvian_cotton cotton) (STV 1.0 0.9091)) +(: cnet_isa_15f6d05f12 (IsA peruvian_current ocean_current) (STV 1.0 0.9091)) +(: cnet_isa_67f07ce33c (IsA peruvian_lily alstroemeria) (STV 1.0 0.9091)) +(: cnet_isa_5e350cd833 (IsA peruvian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_0de6223770 (IsA pervaporation concentration) (STV 1.0 0.9091)) +(: cnet_isa_47f3745f53 (IsA pervasiveness generality) (STV 1.0 0.9091)) +(: cnet_isa_9b8e75cfa4 (IsA perversion sexual_activity) (STV 1.0 0.9091)) +(: cnet_isa_d317d766f7 (IsA perversion wrongdoing) (STV 1.0 0.9091)) +(: cnet_isa_0fe210b788 (IsA perversion curve) (STV 1.0 0.9091)) +(: cnet_isa_8b96da9530 (IsA perversity evil) (STV 1.0 0.9091)) +(: cnet_isa_75052f1ffa (IsA pervert reprobate) (STV 1.0 0.9091)) +(: cnet_isa_fd0cd6fac6 (IsA pesantran religious_school) (STV 1.0 0.9091)) +(: cnet_isa_6e6fb00c00 (IsA peseta spanish_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_f92c6a220d (IsA pesewa ghanian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_93f145c24c (IsA peshmerga kurd) (STV 1.0 0.9091)) +(: cnet_isa_68ab79d5c5 (IsA pessimism disposition) (STV 1.0 0.9091)) +(: cnet_isa_eba3a33655 (IsA pessimism despair) (STV 1.0 0.9091)) +(: cnet_isa_088dccc082 (IsA pessimist skeptic) (STV 1.0 0.9091)) +(: cnet_isa_8428c26058 (IsA pest animal) (STV 1.0 0.9091)) +(: cnet_isa_f68310755e (IsA pest tormentor) (STV 1.0 0.9091)) +(: cnet_isa_d25b1ef8a2 (IsA pesthole breeding_ground) (STV 1.0 0.9091)) +(: cnet_isa_d5a6db7229 (IsA pesticide chemical) (STV 1.0 0.9091)) +(: cnet_isa_a50077a46e (IsA pesticide_poisoning poisoning) (STV 1.0 0.9091)) +(: cnet_isa_de18e1e7c4 (IsA pestilence influence) (STV 1.0 0.9091)) +(: cnet_isa_d36a346370 (IsA pestle hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_ae969b8731 (IsA pestle tool) (STV 1.0 0.9091)) +(: cnet_isa_8658ff38b8 (IsA pesto sauce) (STV 1.0 0.9091)) +(: cnet_isa_504134a386 (IsA pet animal) (STV 1.0 0.9524)) +(: cnet_isa_4af97363e3 (IsA pet irritability) (STV 1.0 0.9091)) +(: cnet_isa_eb3eae6377 (IsA pet_name name) (STV 1.0 0.9091)) +(: cnet_isa_5822381005 (IsA pet_peeve complaint) (STV 1.0 0.9091)) +(: cnet_isa_91e7adf18b (IsA pet_shop shop) (STV 1.0 0.9091)) +(: cnet_isa_d4593d8427 (IsA pet_sitter custodian) (STV 1.0 0.9091)) +(: cnet_isa_20f65cb6f8 (IsA pet_sitting care) (STV 1.0 0.9091)) +(: cnet_isa_28b0543eb4 (IsA petabit computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_91d7002084 (IsA petabyte computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_e1f1ea3d00 (IsA petal floral_leaf) (STV 1.0 0.9091)) +(: cnet_isa_fe7f64bcdd (IsA petard explosive_device) (STV 1.0 0.9091)) +(: cnet_isa_688142a2ee (IsA petasite asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0bded21e2d (IsA petaurista mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_66622d4817 (IsA petauristidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_3616da6fc1 (IsA petaurus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_0cf3e069dc (IsA petcock regulator) (STV 1.0 0.9091)) +(: cnet_isa_03a0ac8300 (IsA petechia bruise) (STV 1.0 0.9091)) +(: cnet_isa_36a80af749 (IsA peter_pan man) (STV 1.0 0.9091)) +(: cnet_isa_92586763fe (IsA peter_pan_collar collar) (STV 1.0 0.9091)) +(: cnet_isa_9232b9ffbf (IsA petfood feed) (STV 1.0 0.9091)) +(: cnet_isa_6b86874ed2 (IsA petiole stalk) (STV 1.0 0.9091)) +(: cnet_isa_d25a248bd7 (IsA petiolule stalk) (STV 1.0 0.9091)) +(: cnet_isa_9002d148d5 (IsA petit_bourgeois middle_class) (STV 1.0 0.9091)) +(: cnet_isa_ad581918c4 (IsA petit_bourgeois bourgeois) (STV 1.0 0.9091)) +(: cnet_isa_974c7f626c (IsA petit_four cake) (STV 1.0 0.9091)) +(: cnet_isa_cd5ba81829 (IsA petit_juror juror) (STV 1.0 0.9091)) +(: cnet_isa_13f5c2556c (IsA petit_jury jury) (STV 1.0 0.9091)) +(: cnet_isa_bcdd5b2421 (IsA petit_larceny larceny) (STV 1.0 0.9091)) +(: cnet_isa_d534263bee (IsA petit_mal epileptic_seizure) (STV 1.0 0.9091)) +(: cnet_isa_15161d2462 (IsA petit_mal_epilepsy seizure) (STV 1.0 0.9091)) +(: cnet_isa_ad796c34ce (IsA petit_point embroidery_stitch) (STV 1.0 0.9091)) +(: cnet_isa_ab4275f738 (IsA petit_point needlepoint) (STV 1.0 0.9091)) +(: cnet_isa_ab80835fd9 (IsA petite size) (STV 1.0 0.9091)) +(: cnet_isa_ec43b9e04f (IsA petite_marmite soup) (STV 1.0 0.9091)) +(: cnet_isa_0cc9b3092f (IsA petitio_principii logical_fallacy) (STV 1.0 0.9091)) +(: cnet_isa_3c32c77f93 (IsA petitioner applicant) (STV 1.0 0.9091)) +(: cnet_isa_8122e6f112 (IsA petrarchan_sonnet sonnet) (STV 1.0 0.9091)) +(: cnet_isa_1d1fe6a1ea (IsA petrel pelagic_bird) (STV 1.0 0.9091)) +(: cnet_isa_82599eb32d (IsA petri_dish dish) (STV 1.0 0.9091)) +(: cnet_isa_e626aaa790 (IsA petrifaction rock) (STV 1.0 0.9091)) +(: cnet_isa_ee038963ce (IsA petrifaction fossilization) (STV 1.0 0.9091)) +(: cnet_isa_ceb06233d1 (IsA petrissage massage) (STV 1.0 0.9091)) +(: cnet_isa_9ac936181c (IsA petrochemical organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_4c8d9cc5a5 (IsA petrocoptis caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_75a39ca702 (IsA petrogale mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_7bbebb7b0a (IsA petroglyph carving) (STV 1.0 0.9091)) +(: cnet_isa_23c306d957 (IsA petrol gasoline) (STV 1.0 0.9339)) +(: cnet_isa_e224e2aaaa (IsA petrol lighter_than_water) (STV 1.0 0.9091)) +(: cnet_isa_ccb66e3705 (IsA petrol liquid) (STV 1.0 0.9091)) +(: cnet_isa_1a524be3e1 (IsA petrolatum jelly) (STV 1.0 0.9091)) +(: cnet_isa_68b9d58b01 (IsA petrolatum mixture) (STV 1.0 0.9091)) +(: cnet_isa_0529518fac (IsA petrolatum_gauze gauze) (STV 1.0 0.9091)) +(: cnet_isa_8a9438d15f (IsA petroleum combustible_fluid) (STV 1.0 0.9091)) +(: cnet_isa_d1f9ba8f8e (IsA petroleum fossil_fuel) (STV 1.0 0.9091)) +(: cnet_isa_c46ffd5d91 (IsA petroleum oil) (STV 1.0 0.9091)) +(: cnet_isa_8506161c03 (IsA petroleum_geologist geologist) (STV 1.0 0.9091)) +(: cnet_isa_f099af4988 (IsA petroleum_geology economic_geology) (STV 1.0 0.9091)) +(: cnet_isa_f88f5827e2 (IsA petrology morphology) (STV 1.0 0.9091)) +(: cnet_isa_d6bc7e868c (IsA petromyzon fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_7178abdbdc (IsA petromyzoniforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_347ed67667 (IsA petromyzontidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_c801902584 (IsA petroselinum rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0f7b7fdead (IsA petter lover) (STV 1.0 0.9091)) +(: cnet_isa_31d5fd29d0 (IsA petteria rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f1f447a132 (IsA petticoat undergarment) (STV 1.0 0.9091)) +(: cnet_isa_0b81512568 (IsA pettiness meanness) (STV 1.0 0.9091)) +(: cnet_isa_e45e2a5a4f (IsA pettiness unimportance) (STV 1.0 0.9091)) +(: cnet_isa_75e1fd4b42 (IsA pettiness narrow_mindedness) (STV 1.0 0.9091)) +(: cnet_isa_eec7da9662 (IsA petting_zoo collection) (STV 1.0 0.9091)) +(: cnet_isa_2968315330 (IsA petty_apartheid racial_segregation) (STV 1.0 0.9091)) +(: cnet_isa_39bce2c35f (IsA petty_cash fund) (STV 1.0 0.9091)) +(: cnet_isa_84487efe4a (IsA petty_officer noncommissioned_officer) (STV 1.0 0.9091)) +(: cnet_isa_3689efa72f (IsA petty_spurge spurge) (STV 1.0 0.9091)) +(: cnet_isa_399b65792d (IsA petunia annual_plant) (STV 1.0 0.9091)) +(: cnet_isa_fdd43f28cc (IsA petunia flower) (STV 1.0 0.9091)) +(: cnet_isa_ef89f9332f (IsA pew bench) (STV 1.0 0.9091)) +(: cnet_isa_62868449bf (IsA pewee new_world_flycatcher) (STV 1.0 0.9091)) +(: cnet_isa_e8c09b1d2c (IsA pewter alloy) (STV 1.0 0.9091)) +(: cnet_isa_d637515f4e (IsA peyer_s_patch lymph_node) (STV 1.0 0.9091)) +(: cnet_isa_92f22af9f6 (IsA peziza fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_fc8a666cba (IsA peziza_domicilina discomycete) (STV 1.0 0.9091)) +(: cnet_isa_4e782d8c5e (IsA pezizaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_198475f379 (IsA pezizale fungus_order) (STV 1.0 0.9091)) +(: cnet_isa_abfac9d12e (IsA pezophap bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_93dfbf49be (IsA pfannkuchen pancake) (STV 1.0 0.9091)) +(: cnet_isa_4c8a41c2ac (IsA pfennig german_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_012e766480 (IsA ph_d doctor_of_philosophy) (STV 1.0 0.9091)) +(: cnet_isa_e29dd426f4 (IsA ph hydrogen_ion_concentration) (STV 1.0 0.9091)) +(: cnet_isa_b817f5f6d1 (IsA phacochoerus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_b8a756c5e6 (IsA phacoemulsification extracapsular_surgery) (STV 1.0 0.9091)) +(: cnet_isa_5e32d0f82b (IsA phaeophyceae class) (STV 1.0 0.9091)) +(: cnet_isa_61f913e4d8 (IsA phaeophyta division) (STV 1.0 0.9091)) +(: cnet_isa_ca23edfc59 (IsA phaethon bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_96914196a5 (IsA phaethontidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_e99de33dbb (IsA phagocyte somatic_cell) (STV 1.0 0.9091)) +(: cnet_isa_d154828c03 (IsA phagocytosis bodily_process) (STV 1.0 0.9091)) +(: cnet_isa_978f804a54 (IsA phagun hindu_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_ed106d380e (IsA phaius orchid) (STV 1.0 0.9091)) +(: cnet_isa_72da43ceb0 (IsA phalacrocoracidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_42ccd137f8 (IsA phalacrocorax bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_b2d89c7b9c (IsA phalaenopsis monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3ac1dd79d9 (IsA phalaenoptilus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_2c80001f5b (IsA phalanger marsupial) (STV 1.0 0.9091)) +(: cnet_isa_3d0f14be9d (IsA phalangeridae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_6bfdaed74c (IsA phalangida animal_order) (STV 1.0 0.9091)) +(: cnet_isa_0b42d05e59 (IsA phalangiidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_c7ae1632f5 (IsA phalangist fascist) (STV 1.0 0.9091)) +(: cnet_isa_24a10b1274 (IsA phalangitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_09abb95433 (IsA phalangium arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_0343ba92fd (IsA phalanx bone) (STV 1.0 0.9091)) +(: cnet_isa_f794f7d2af (IsA phalanx crowd) (STV 1.0 0.9091)) +(: cnet_isa_d418fcc1ac (IsA phalanx military_unit) (STV 1.0 0.9091)) +(: cnet_isa_f21c1fc5ea (IsA phalaris monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_88b31292c8 (IsA phalarope shorebird) (STV 1.0 0.9091)) +(: cnet_isa_0b539259b7 (IsA phalaropidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_bac877a4ac (IsA phalaropus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_d40a91ea76 (IsA phallaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_e6d127ed5e (IsA phallale fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_3e8458c9c4 (IsA phallic_stage phase) (STV 1.0 0.9091)) +(: cnet_isa_9122debff5 (IsA phalloplasty plastic_surgery) (STV 1.0 0.9091)) +(: cnet_isa_51b116d503 (IsA phallus fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_870c9e2d0e (IsA phallus_ravenelii stinkhorn) (STV 1.0 0.9091)) +(: cnet_isa_3292acdfdf (IsA phalsa shrub) (STV 1.0 0.9091)) +(: cnet_isa_1e382fe2bc (IsA phanerogamae division) (STV 1.0 0.9091)) +(: cnet_isa_bdb7fc0646 (IsA phaneromania mania) (STV 1.0 0.9091)) +(: cnet_isa_a11ff69c1a (IsA phantasmagoria representation) (STV 1.0 0.9091)) +(: cnet_isa_4f836dc0e7 (IsA phantom_limb illusion) (STV 1.0 0.9091)) +(: cnet_isa_4cc509debe (IsA phantom_limb_pain pain) (STV 1.0 0.9091)) +(: cnet_isa_e7db094eef (IsA phantom_limb_syndrome syndrome) (STV 1.0 0.9091)) +(: cnet_isa_9bf6122ebc (IsA phantom_orchid orchid) (STV 1.0 0.9091)) +(: cnet_isa_50fdf30c37 (IsA pharaoh_ant ant) (STV 1.0 0.9091)) +(: cnet_isa_2ec08f4f79 (IsA pharaoh_of_egypt ruler) (STV 1.0 0.9091)) +(: cnet_isa_27c94a5cf0 (IsA pharisee israelite) (STV 1.0 0.9091)) +(: cnet_isa_79cb5fd6f6 (IsA pharisee unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_58ea1e847f (IsA pharmaceutical medicine) (STV 1.0 0.9091)) +(: cnet_isa_1e337a5736 (IsA pharmacist health_professional) (STV 1.0 0.9091)) +(: cnet_isa_3c4eb5c6ff (IsA pharmacogenetic genetic) (STV 1.0 0.9091)) +(: cnet_isa_1e0dc5a3e1 (IsA pharmacokinetic pharmacology) (STV 1.0 0.9091)) +(: cnet_isa_912beeae65 (IsA pharmacologist pharmacist) (STV 1.0 0.9091)) +(: cnet_isa_797873db69 (IsA pharmacology medicine) (STV 1.0 0.9091)) +(: cnet_isa_20572282f1 (IsA pharmacopoeia collection) (STV 1.0 0.9091)) +(: cnet_isa_da515fd700 (IsA pharmacy medicine) (STV 1.0 0.9091)) +(: cnet_isa_41ad67d4f0 (IsA pharomacrus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_764ad34b79 (IsA pharyngeal_recess recess) (STV 1.0 0.9091)) +(: cnet_isa_6f358947be (IsA pharyngeal_reflex reflex) (STV 1.0 0.9091)) +(: cnet_isa_070d811167 (IsA pharyngeal_tonsil lymphatic_tissue) (STV 1.0 0.9091)) +(: cnet_isa_0c0023ba95 (IsA pharyngeal_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_c0c0099974 (IsA phascogale mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_16742a9a6b (IsA phascolarcto mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_b283a17ded (IsA phase appearance) (STV 1.0 0.9091)) +(: cnet_isa_b426c89f85 (IsA phase state_of_matter) (STV 1.0 0.9091)) +(: cnet_isa_2eca735b1c (IsA phase point) (STV 1.0 0.9091)) +(: cnet_isa_fb8b5a312a (IsA phase time_period) (STV 1.0 0.9091)) +(: cnet_isa_e0bc2b52e9 (IsA phase_change natural_process) (STV 1.0 0.9091)) +(: cnet_isa_bf0126e694 (IsA phase_i_clinical_trial clinical_trial) (STV 1.0 0.9091)) +(: cnet_isa_dc70e5e047 (IsA phase_ii_clinical_trial clinical_trial) (STV 1.0 0.9091)) +(: cnet_isa_79b2353b39 (IsA phase_iii_clinical_trial clinical_trial) (STV 1.0 0.9091)) +(: cnet_isa_a2b0deb1e6 (IsA phase_iv_clinical_trial clinical_trial) (STV 1.0 0.9091)) +(: cnet_isa_d17f2c42ee (IsA phase_modulation modulation) (STV 1.0 0.9091)) +(: cnet_isa_a1838af033 (IsA phase_of_cell_division phase) (STV 1.0 0.9091)) +(: cnet_isa_0c2e7517b7 (IsA phase_of_moon phase) (STV 1.0 0.9091)) +(: cnet_isa_b3a0c6782a (IsA phase_of_moon time_period) (STV 1.0 0.9091)) +(: cnet_isa_6323ba29f3 (IsA phase_out discontinuance) (STV 1.0 0.9091)) +(: cnet_isa_8321d79270 (IsA phase_space space) (STV 1.0 0.9091)) +(: cnet_isa_ca36e80ab7 (IsA phaseolus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_56151133bb (IsA phasianid game_bird) (STV 1.0 0.9091)) +(: cnet_isa_f56be514c3 (IsA phasianidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_d26819747b (IsA phasianus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_c9e30b5eb2 (IsA phasmid insect) (STV 1.0 0.9091)) +(: cnet_isa_68af8b4cd0 (IsA phasmida animal_order) (STV 1.0 0.9091)) +(: cnet_isa_d0887fbd18 (IsA phasmidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_ba18cbb421 (IsA phasmidia class) (STV 1.0 0.9091)) +(: cnet_isa_aedf5f16a5 (IsA phatic_speech conversation) (STV 1.0 0.9091)) +(: cnet_isa_af57a89042 (IsA pheasant_s_eye flower) (STV 1.0 0.9091)) +(: cnet_isa_e34cf8a027 (IsA pheasant bird) (STV 1.0 0.9572)) +(: cnet_isa_43f54bff54 (IsA pheasant phasianid) (STV 1.0 0.9091)) +(: cnet_isa_f2456d69d3 (IsA pheasant wildfowl) (STV 1.0 0.9091)) +(: cnet_isa_d4aa695cd7 (IsA pheasant_coucal coucal) (STV 1.0 0.9091)) +(: cnet_isa_02d6112483 (IsA pheasant_under_glass dish) (STV 1.0 0.9091)) +(: cnet_isa_f814693613 (IsA phegopteris fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_0a37d9ea0f (IsA phellem bark) (STV 1.0 0.9091)) +(: cnet_isa_5948049a00 (IsA phellodendron rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ded6b1665e (IsA phenacomy vole) (STV 1.0 0.9091)) +(: cnet_isa_30e08b5dbc (IsA phencyclidine hallucinogen) (STV 1.0 0.9091)) +(: cnet_isa_a4890714eb (IsA pheniramine antihistamine) (STV 1.0 0.9091)) +(: cnet_isa_225da3d7d7 (IsA pheno_safranine safranine) (STV 1.0 0.9091)) +(: cnet_isa_29f7ddef5b (IsA phenol organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_3c8f321121 (IsA phenolic_plastic plastic) (STV 1.0 0.9091)) +(: cnet_isa_14644cfee0 (IsA phenolic_resin synthetic_resin) (STV 1.0 0.9091)) +(: cnet_isa_543e7885a7 (IsA phenolphthalein acid_base_indicator) (STV 1.0 0.9091)) +(: cnet_isa_5ece40e5ae (IsA phenolphthalein laxative) (STV 1.0 0.9091)) +(: cnet_isa_0234bafe60 (IsA phenomenology doctrine) (STV 1.0 0.9091)) +(: cnet_isa_c66cb0ae47 (IsA phenomenon process) (STV 1.0 0.9091)) +(: cnet_isa_ad4452488b (IsA phenomenon development) (STV 1.0 0.9091)) +(: cnet_isa_9597a55a71 (IsA phenothiazine thiazine) (STV 1.0 0.9091)) +(: cnet_isa_1ed4423577 (IsA phenotype constitution) (STV 1.0 0.9091)) +(: cnet_isa_a6ba144b83 (IsA phenylalanine essential_amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_2430575563 (IsA phenylephrine adrenergic) (STV 1.0 0.9091)) +(: cnet_isa_8d0728e32c (IsA phenylketonuria inborn_error_of_metabolism) (STV 1.0 0.9091)) +(: cnet_isa_3be9c9e796 (IsA phenylpropanolamine adrenergic) (STV 1.0 0.9091)) +(: cnet_isa_6f0edd524d (IsA phenyltoloxamine antihistamine) (STV 1.0 0.9091)) +(: cnet_isa_fcbe46f9da (IsA pheochromocytoma tumor) (STV 1.0 0.9091)) +(: cnet_isa_ebb7e78589 (IsA pheromone secretion) (STV 1.0 0.9091)) +(: cnet_isa_0e984e4c1a (IsA phi letter) (STV 1.0 0.9091)) +(: cnet_isa_a3be820bf0 (IsA phi_coefficient nonparametric_statistic) (STV 1.0 0.9091)) +(: cnet_isa_302c0ad234 (IsA phial bottle) (STV 1.0 0.9091)) +(: cnet_isa_9ec14f6398 (IsA philadelphaceae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_0b2a9caac7 (IsA philadelphia_fleabane fleabane) (STV 1.0 0.9091)) +(: cnet_isa_efefbcbb54 (IsA philadelphus shrub) (STV 1.0 0.9091)) +(: cnet_isa_3d42e3c75d (IsA philaenus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_4370118a04 (IsA philanthropic_foundation charity) (STV 1.0 0.9091)) +(: cnet_isa_3f66e18ce5 (IsA philanthropist donor) (STV 1.0 0.9091)) +(: cnet_isa_b8b510bfbb (IsA philanthropy financial_aid) (STV 1.0 0.9091)) +(: cnet_isa_a1a374f04d (IsA philatelist collector) (STV 1.0 0.9091)) +(: cnet_isa_969c338b70 (IsA philately collection) (STV 1.0 0.9091)) +(: cnet_isa_5d0e0fe5b7 (IsA philhellene supporter) (STV 1.0 0.9091)) +(: cnet_isa_5d27b0540b (IsA philhellenism admiration) (STV 1.0 0.9091)) +(: cnet_isa_700dfd4bb0 (IsA philippian macedonian) (STV 1.0 0.9091)) +(: cnet_isa_6c8bd24501 (IsA philippine western_malayo_polynesian) (STV 1.0 0.9091)) +(: cnet_isa_5d9bda3d0e (IsA philippine_mahogany mahogany) (STV 1.0 0.9091)) +(: cnet_isa_5de98b53d8 (IsA philippine_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_5a6226b7e5 (IsA philippine_peso philippine_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_45d7220cfb (IsA philistine inhabitant) (STV 1.0 0.9091)) +(: cnet_isa_fb05a8b516 (IsA philistine plebeian) (STV 1.0 0.9091)) +(: cnet_isa_79d004d43d (IsA philly team) (STV 1.0 0.9339)) +(: cnet_isa_a29959826a (IsA phillip_screwdriver screwdriver) (STV 1.0 0.9091)) +(: cnet_isa_9baaf70713 (IsA phillipsite zeolite) (STV 1.0 0.9091)) +(: cnet_isa_bf3244265a (IsA phillyrea dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_79a7c4e578 (IsA philodendron liana) (STV 1.0 0.9091)) +(: cnet_isa_e6e2903f15 (IsA philogyny admiration) (STV 1.0 0.9091)) +(: cnet_isa_de5c86f925 (IsA philohela bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_ed22c80ad1 (IsA philologist humanist) (STV 1.0 0.9091)) +(: cnet_isa_e5efad2c3a (IsA philomachus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_c71b57fe72 (IsA philomath scholar) (STV 1.0 0.9091)) +(: cnet_isa_3b7134fe35 (IsA philophylla arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_85c9fdff61 (IsA philosopher_s_stone substance) (STV 1.0 0.9091)) +(: cnet_isa_3680d2aece (IsA philosopher person) (STV 1.0 0.9091)) +(: cnet_isa_9745ee9b10 (IsA philosopher scholar) (STV 1.0 0.9091)) +(: cnet_isa_37cdaa033e (IsA philosophical_doctrine doctrine) (STV 1.0 0.9091)) +(: cnet_isa_68fbb27614 (IsA philosophizer thinker) (STV 1.0 0.9091)) +(: cnet_isa_05fd3ed04a (IsA philosophizing exposition) (STV 1.0 0.9091)) +(: cnet_isa_7cde1a4eb4 (IsA philosophy about_people_s_thinking) (STV 1.0 0.9091)) +(: cnet_isa_da5dfee6d0 (IsA philosophy belief) (STV 1.0 0.9091)) +(: cnet_isa_a8784f3463 (IsA philosophy humanistic_discipline) (STV 1.0 0.9091)) +(: cnet_isa_26a1953f31 (IsA philosophy_department academic_department) (STV 1.0 0.9091)) +(: cnet_isa_265f12074a (IsA philter potion) (STV 1.0 0.9091)) +(: cnet_isa_7aca681721 (IsA phimosis abnormality) (STV 1.0 0.9091)) +(: cnet_isa_ac9e7b9e63 (IsA phlebectomy operation) (STV 1.0 0.9091)) +(: cnet_isa_ef32b366a2 (IsA phlebitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_4b2080b95a (IsA phlebodium fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_4c58eb0ac2 (IsA phlebothrombosis thrombosis) (STV 1.0 0.9091)) +(: cnet_isa_8ea2aa4983 (IsA phlebotomist skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_880ebd6981 (IsA phlebotomus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_f6a0d1059f (IsA phlegm mucus) (STV 1.0 0.9091)) +(: cnet_isa_de2e848ab3 (IsA phleum monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2c7f997af3 (IsA phloem vascular_tissue) (STV 1.0 0.9091)) +(: cnet_isa_281e5edf39 (IsA phlogiston substance) (STV 1.0 0.9091)) +(: cnet_isa_525c4439e4 (IsA phlogopite mica) (STV 1.0 0.9091)) +(: cnet_isa_a5dd2d42be (IsA phlomis subshrub) (STV 1.0 0.9091)) +(: cnet_isa_3fb0a29e48 (IsA phlox herb) (STV 1.0 0.9091)) +(: cnet_isa_a96d5d7df2 (IsA phobia anxiety_disorder) (STV 1.0 0.9091)) +(: cnet_isa_ba8c3467e7 (IsA phobophobia simple_phobia) (STV 1.0 0.9091)) +(: cnet_isa_265d31d3ac (IsA phoca mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_df04a3a145 (IsA phocidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_b83d57dda8 (IsA phocomelia meromelia) (STV 1.0 0.9091)) +(: cnet_isa_74706fd6a1 (IsA phoebe new_world_flycatcher) (STV 1.0 0.9091)) +(: cnet_isa_6b1e102a9a (IsA phoenician canaanitic) (STV 1.0 0.9091)) +(: cnet_isa_415931c1b5 (IsA phoenician semite) (STV 1.0 0.9091)) +(: cnet_isa_01f1824233 (IsA phoenicophorium monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6d4bc9d432 (IsA phoenicopteridae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_72c99a6896 (IsA phoeniculidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_0cca50a461 (IsA phoeniculus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_6dac09ff2d (IsA phoenicurus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_1112b53f48 (IsA phoenix mythical_being) (STV 1.0 0.9091)) +(: cnet_isa_bcbbfbeeb8 (IsA phoenix monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d32220e4da (IsA pholadidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_67b872efe9 (IsA phola mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_a57917b38d (IsA pholidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_5f864dab31 (IsA pholidota animal_order) (STV 1.0 0.9091)) +(: cnet_isa_666646b05e (IsA pholidota monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_aedc69c163 (IsA pholiota fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_2e28a15d0d (IsA pholiota_astragalina agaric) (STV 1.0 0.9091)) +(: cnet_isa_08206cad11 (IsA pholiota_aurea agaric) (STV 1.0 0.9091)) +(: cnet_isa_351f94219a (IsA pholiota_destruen agaric) (STV 1.0 0.9091)) +(: cnet_isa_784fb96b50 (IsA pholiota_flamman agaric) (STV 1.0 0.9091)) +(: cnet_isa_32676556c5 (IsA pholiota_flavida agaric) (STV 1.0 0.9091)) +(: cnet_isa_6a86cf540f (IsA pholiota_squarrosa agaric) (STV 1.0 0.9091)) +(: cnet_isa_0865896c9d (IsA pholiota_squarrosa_adiposa agaric) (STV 1.0 0.9091)) +(: cnet_isa_c461aa7eb3 (IsA pholiota_squarrosoide agaric) (STV 1.0 0.9091)) +(: cnet_isa_5855598efa (IsA pholis fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_7b66e5680c (IsA pholistoma asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_862e055688 (IsA phon sound_unit) (STV 1.0 0.9091)) +(: cnet_isa_dbdb821179 (IsA phone device) (STV 1.0 0.9091)) +(: cnet_isa_0179c00784 (IsA phone language_unit) (STV 1.0 0.9091)) +(: cnet_isa_ff4a69c664 (IsA phone_bill bill) (STV 1.0 0.9091)) +(: cnet_isa_40722087ab (IsA phone_in talk_show) (STV 1.0 0.9091)) +(: cnet_isa_0bb94941f4 (IsA phone_message message) (STV 1.0 0.9091)) +(: cnet_isa_619759c6c7 (IsA phone_number signal) (STV 1.0 0.9091)) +(: cnet_isa_3851e92345 (IsA phonebook directory) (STV 1.0 0.9091)) +(: cnet_isa_376ef86756 (IsA phoneme phone) (STV 1.0 0.9091)) +(: cnet_isa_608974df59 (IsA phonemic_system language_system) (STV 1.0 0.9091)) +(: cnet_isa_52c60028a2 (IsA phonetic_alphabet alphabet) (STV 1.0 0.9091)) +(: cnet_isa_66596cc6e5 (IsA phonetic_symbol character) (STV 1.0 0.9091)) +(: cnet_isa_0f277fc780 (IsA phonetic_transcription transcription) (STV 1.0 0.9091)) +(: cnet_isa_c4582c6d18 (IsA phonetician linguist) (STV 1.0 0.9091)) +(: cnet_isa_f73819e14a (IsA phonetic acoustic) (STV 1.0 0.9091)) +(: cnet_isa_58e37a3067 (IsA phonic teaching_reading) (STV 1.0 0.9091)) +(: cnet_isa_e1c7c883dd (IsA phonogram written_symbol) (STV 1.0 0.9091)) +(: cnet_isa_add8f9dc1f (IsA phonograph_album album) (STV 1.0 0.9091)) +(: cnet_isa_351ef28002 (IsA phonograph_needle stylus) (STV 1.0 0.9091)) +(: cnet_isa_8ddf8e9923 (IsA phonograph_record sound_recording) (STV 1.0 0.9091)) +(: cnet_isa_8912f7177f (IsA phonological_system language_system) (STV 1.0 0.9091)) +(: cnet_isa_531a476ed0 (IsA phonologist linguist) (STV 1.0 0.9091)) +(: cnet_isa_d3f454d8a7 (IsA phonology synchronic_linguistic) (STV 1.0 0.9091)) +(: cnet_isa_7fb227d487 (IsA phonophobia simple_phobia) (STV 1.0 0.9091)) +(: cnet_isa_df581a1276 (IsA phoradendron dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e98ce6b21a (IsA phoronid invertebrate) (STV 1.0 0.9091)) +(: cnet_isa_f610574f5f (IsA phoronida phylum) (STV 1.0 0.9091)) +(: cnet_isa_bd8a1f48d0 (IsA phosgene gas) (STV 1.0 0.9091)) +(: cnet_isa_1567bf1e23 (IsA phosphatase enzyme) (STV 1.0 0.9091)) +(: cnet_isa_f5e689772d (IsA phosphate soft_drink) (STV 1.0 0.9091)) +(: cnet_isa_c52f023163 (IsA phosphate salt) (STV 1.0 0.9091)) +(: cnet_isa_9cd07df801 (IsA phosphate_buffer_solution buffer_solution) (STV 1.0 0.9091)) +(: cnet_isa_6d77a69b5b (IsA phosphine gas) (STV 1.0 0.9091)) +(: cnet_isa_43bf4c7f2f (IsA phosphine pesticide) (STV 1.0 0.9091)) +(: cnet_isa_05e9290020 (IsA phosphocreatine organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_3e5e95bab8 (IsA phospholipid lipid) (STV 1.0 0.9091)) +(: cnet_isa_9afeb84ab2 (IsA phosphoprotein protein) (STV 1.0 0.9091)) +(: cnet_isa_d591eb447a (IsA phosphor synthetic) (STV 1.0 0.9091)) +(: cnet_isa_7856834b29 (IsA phosphor_bronze bronze) (STV 1.0 0.9091)) +(: cnet_isa_a49ad8c3be (IsA phosphorescence fluorescence) (STV 1.0 0.9091)) +(: cnet_isa_ff43234e90 (IsA phosphoric_acid oxyacid) (STV 1.0 0.9091)) +(: cnet_isa_b8f89e6873 (IsA phosphorus chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_0b1730b104 (IsA phot illumination_unit) (STV 1.0 0.9091)) +(: cnet_isa_780132cc68 (IsA photalgia pain) (STV 1.0 0.9091)) +(: cnet_isa_1b0fc88349 (IsA photinia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3812a66be1 (IsA photo photograph) (STV 1.0 0.9091)) +(: cnet_isa_3a2a0dde4b (IsA photo_credit citation) (STV 1.0 0.9091)) +(: cnet_isa_5c4091e7b1 (IsA photo_finish finish) (STV 1.0 0.9091)) +(: cnet_isa_edf68e77f1 (IsA photo_offset_printing offset) (STV 1.0 0.9091)) +(: cnet_isa_a196d74d25 (IsA photo_opportunity affair) (STV 1.0 0.9091)) +(: cnet_isa_7f9a8e8520 (IsA photoblepharon fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_7106da551d (IsA photocathode cathode) (STV 1.0 0.9091)) +(: cnet_isa_6de4453385 (IsA photochemical_exchange exchange) (STV 1.0 0.9091)) +(: cnet_isa_58bde51146 (IsA photochemical_reaction chemical_reaction) (STV 1.0 0.9091)) +(: cnet_isa_070fc9e287 (IsA photochemistry chemistry) (STV 1.0 0.9091)) +(: cnet_isa_6a91eb8d3e (IsA photocoagulation operation) (STV 1.0 0.9091)) +(: cnet_isa_9270424bf3 (IsA photocoagulator surgical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_8d89787426 (IsA photoconductivity electrical_conduction) (STV 1.0 0.9091)) +(: cnet_isa_0abbc0243f (IsA photocopier duplicator) (STV 1.0 0.9091)) +(: cnet_isa_fb23e1f519 (IsA photocopy copy) (STV 1.0 0.9091)) +(: cnet_isa_102d748ec6 (IsA photocopy picture) (STV 1.0 0.9091)) +(: cnet_isa_85bf6fd0a4 (IsA photoelectric_cell detector) (STV 1.0 0.9091)) +(: cnet_isa_d24d4c3502 (IsA photoelectric_cell transducer) (STV 1.0 0.9091)) +(: cnet_isa_2f63dce2b2 (IsA photoelectric_emission emission) (STV 1.0 0.9091)) +(: cnet_isa_ffc84fcc8f (IsA photoelectricity electricity) (STV 1.0 0.9091)) +(: cnet_isa_8bfa48e3a6 (IsA photoelectron electron) (STV 1.0 0.9091)) +(: cnet_isa_a0ce52ea9c (IsA photoemission emission) (STV 1.0 0.9091)) +(: cnet_isa_7798410df3 (IsA photogenic_epilepsy reflex_epilepsy) (STV 1.0 0.9091)) +(: cnet_isa_a56a35e104 (IsA photograph_album album) (STV 1.0 0.9091)) +(: cnet_isa_def1a9c2da (IsA photographer_s_model model) (STV 1.0 0.9091)) +(: cnet_isa_f3ea9f6fed (IsA photographer artist) (STV 1.0 0.9091)) +(: cnet_isa_d4a98a83f7 (IsA photographic_density concentration) (STV 1.0 0.9091)) +(: cnet_isa_786a391208 (IsA photographic_equipment equipment) (STV 1.0 0.9091)) +(: cnet_isa_d76d211c5e (IsA photographic_paper photographic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_f7b6f4e73a (IsA photographic_print picture) (STV 1.0 0.9091)) +(: cnet_isa_371593e634 (IsA photograph picture) (STV 1.0 0.9091)) +(: cnet_isa_ab20c15c14 (IsA photography pictorial_representation) (STV 1.0 0.9091)) +(: cnet_isa_33c04fa480 (IsA photography occupation) (STV 1.0 0.9091)) +(: cnet_isa_b3867bb5de (IsA photography process) (STV 1.0 0.9091)) +(: cnet_isa_be540bebd2 (IsA photogravure gravure) (STV 1.0 0.9091)) +(: cnet_isa_2bfe1de595 (IsA photogravure intaglio_printing) (STV 1.0 0.9091)) +(: cnet_isa_cd868eeec1 (IsA photojournalism journalism) (STV 1.0 0.9091)) +(: cnet_isa_26c8ed6a25 (IsA photojournalist journalist) (STV 1.0 0.9091)) +(: cnet_isa_3df96d9968 (IsA photolithograph lithograph) (STV 1.0 0.9091)) +(: cnet_isa_d42e86e3b5 (IsA photolithography lithography) (STV 1.0 0.9091)) +(: cnet_isa_a6384274a7 (IsA photomechanic technique) (STV 1.0 0.9091)) +(: cnet_isa_9d0cf92a31 (IsA photomechanic photography) (STV 1.0 0.9091)) +(: cnet_isa_066d6af5a0 (IsA photometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_a137673381 (IsA photometrist measurer) (STV 1.0 0.9091)) +(: cnet_isa_04d915df9e (IsA photometry measurement) (STV 1.0 0.9091)) +(: cnet_isa_4d3a117012 (IsA photomicrograph picture) (STV 1.0 0.9091)) +(: cnet_isa_0f50a0e72a (IsA photomontage collage) (STV 1.0 0.9091)) +(: cnet_isa_28af59c917 (IsA photon boson) (STV 1.0 0.9091)) +(: cnet_isa_c815a8ed87 (IsA photon elementary_particle) (STV 1.0 0.9091)) +(: cnet_isa_bbb8e29ace (IsA photon gauge_boson) (STV 1.0 0.9091)) +(: cnet_isa_8a6526c4aa (IsA photophobia simple_phobia) (STV 1.0 0.9091)) +(: cnet_isa_5fe6bf0779 (IsA photopigment pigment) (STV 1.0 0.9091)) +(: cnet_isa_7bee8904de (IsA photoretinitis visual_impairment) (STV 1.0 0.9091)) +(: cnet_isa_b7223fa349 (IsA photosensitivity sensitivity) (STV 1.0 0.9091)) +(: cnet_isa_4efec33a18 (IsA photosphere surface) (STV 1.0 0.9091)) +(: cnet_isa_f52aea3e5d (IsA photostat photocopy) (STV 1.0 0.9091)) +(: cnet_isa_f9e45ddd1e (IsA photosynthesis chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_92e2f5a0dc (IsA phototherapy radiotherapy) (STV 1.0 0.9091)) +(: cnet_isa_30e4e0adc7 (IsA phototrophic_bacteria eubacteria) (STV 1.0 0.9091)) +(: cnet_isa_db34bab9c5 (IsA phototropism tropism) (STV 1.0 0.9091)) +(: cnet_isa_5589041048 (IsA phoxinus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_a99413da4c (IsA phragmipedium monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5051399adf (IsA phragmite monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_76e7ec2d10 (IsA phragmocone shell) (STV 1.0 0.9091)) +(: cnet_isa_8035695341 (IsA phrasal_verb verb) (STV 1.0 0.9091)) +(: cnet_isa_5d9d82edbe (IsA phrase dancing) (STV 1.0 0.9091)) +(: cnet_isa_e0a4470b2c (IsA phrase construction) (STV 1.0 0.9091)) +(: cnet_isa_9a109a1576 (IsA phrase passage) (STV 1.0 0.9091)) +(: cnet_isa_8425d2f6b3 (IsA phrase_book book) (STV 1.0 0.9091)) +(: cnet_isa_2bc70085bf (IsA phrasing grouping) (STV 1.0 0.9091)) +(: cnet_isa_2fd8f5a72d (IsA phrenic_nerve spinal_nerve) (STV 1.0 0.9091)) +(: cnet_isa_4a96108181 (IsA phrenic_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_68a78e35d0 (IsA phrenologist mountebank) (STV 1.0 0.9091)) +(: cnet_isa_93d301e6ea (IsA phrenology craniology) (STV 1.0 0.9091)) +(: cnet_isa_06dc35eec9 (IsA phrontistery establishment) (STV 1.0 0.9091)) +(: cnet_isa_ee32376b4b (IsA phrygian thraco_phrygian) (STV 1.0 0.9091)) +(: cnet_isa_3beb6851f2 (IsA phrygian inhabitant) (STV 1.0 0.9091)) +(: cnet_isa_e5a1a13953 (IsA phrygian_deity deity) (STV 1.0 0.9091)) +(: cnet_isa_19cd63406d (IsA phrynosoma reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_45ffff4e58 (IsA phthalic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_b779463e63 (IsA phthalic_anhydride anhydride) (STV 1.0 0.9091)) +(: cnet_isa_dbaba244a6 (IsA phthiriidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_722fe94bdd (IsA phthirius arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_a74a0277de (IsA phthorimaea arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_5bcbdf7b2c (IsA phycobilin pigment) (STV 1.0 0.9091)) +(: cnet_isa_5cacb3afb9 (IsA phycocyanin pigment) (STV 1.0 0.9091)) +(: cnet_isa_39525235a9 (IsA phycoerythrin pigment) (STV 1.0 0.9091)) +(: cnet_isa_ffcf9acc9c (IsA phycology botany) (STV 1.0 0.9091)) +(: cnet_isa_2dcf36d7b8 (IsA phycomycete taxonomic_group) (STV 1.0 0.9091)) +(: cnet_isa_1bd5999e8d (IsA phycomycosis fungal_infection) (STV 1.0 0.9091)) +(: cnet_isa_e2f821270f (IsA phylactery reminder) (STV 1.0 0.9091)) +(: cnet_isa_69d7845e44 (IsA phyle tribe) (STV 1.0 0.9091)) +(: cnet_isa_ff1a96185b (IsA phyllidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_b347d578c9 (IsA phyllitis fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_6c45238e5e (IsA phyllium arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_e315863510 (IsA phyllo puff_paste) (STV 1.0 0.9091)) +(: cnet_isa_5e4d27492a (IsA phyllocladaceae gymnosperm_family) (STV 1.0 0.9091)) +(: cnet_isa_43aa97558f (IsA phyllocladus gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_185ac221e6 (IsA phyllode petiole) (STV 1.0 0.9091)) +(: cnet_isa_e55a61fa46 (IsA phyllodoce dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0165b4d3f3 (IsA phylloporus fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_4beeadab1a (IsA phylloporus_boletinoide bolete) (STV 1.0 0.9091)) +(: cnet_isa_4a5240a82f (IsA phyllorhynchus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_08ba7302b3 (IsA phylloscopus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_4ad0fe1d3f (IsA phyllostachy monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_63993cfa10 (IsA phyllostomidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_1566e5640e (IsA phyllostomus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_b8626ba9a7 (IsA phyllostomus_hastatus leafnose_bat) (STV 1.0 0.9091)) +(: cnet_isa_d892f6d62c (IsA phylloxera arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_fdd4bc5e27 (IsA phylloxeridae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_6694037892 (IsA phylum taxonomic_group) (STV 1.0 0.9091)) +(: cnet_isa_0ca7161003 (IsA phylum social_group) (STV 1.0 0.9091)) +(: cnet_isa_5dd583ff42 (IsA physa gastropod) (STV 1.0 0.9091)) +(: cnet_isa_a6477d9ce5 (IsA physalia coelenterate_genus) (STV 1.0 0.9091)) +(: cnet_isa_22903e3a73 (IsA physalis asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_003a84ee9c (IsA physaria dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_aa1dc74ae6 (IsA physeter mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_a49d3cba3e (IsA physeteridae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_bfb0944b4b (IsA physic_nut angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_fc5c485ee0 (IsA physical_ability ability) (STV 1.0 0.9091)) +(: cnet_isa_78f09bb443 (IsA physical_anthropology anthropology) (STV 1.0 0.9091)) +(: cnet_isa_c59d70e931 (IsA physical_chemistry chemistry) (STV 1.0 0.9091)) +(: cnet_isa_9d77b12c1d (IsA physical_education education) (STV 1.0 0.9091)) +(: cnet_isa_b7059608d1 (IsA physical_entity entity) (STV 1.0 0.9091)) +(: cnet_isa_589e9721bb (IsA physical_geography geography) (STV 1.0 0.9091)) +(: cnet_isa_83dffe357b (IsA physical_pendulum pendulum) (STV 1.0 0.9091)) +(: cnet_isa_1f96cfffe0 (IsA physical_phenomenon natural_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_868cf2eb2a (IsA physical_property property) (STV 1.0 0.9091)) +(: cnet_isa_0b3674fb86 (IsA physical_rehabilitation rehabilitation) (STV 1.0 0.9091)) +(: cnet_isa_973b049afd (IsA physical_science natural_science) (STV 1.0 0.9091)) +(: cnet_isa_a765330a61 (IsA physical_therapist therapist) (STV 1.0 0.9091)) +(: cnet_isa_65b6f0b047 (IsA physical_therapy therapy) (STV 1.0 0.9091)) +(: cnet_isa_181bebf95f (IsA physical_topology topology) (STV 1.0 0.9091)) +(: cnet_isa_3177e94a25 (IsA physician medical_doctor) (STV 1.0 0.9091)) +(: cnet_isa_b152143b9f (IsA physician_assisted_suicide assisted_suicide) (STV 1.0 0.9091)) +(: cnet_isa_da669de409 (IsA physician_patient_privilege privilege) (STV 1.0 0.9091)) +(: cnet_isa_435bd54c46 (IsA physicist scientist) (STV 1.0 0.9091)) +(: cnet_isa_aed18750a4 (IsA physic science) (STV 1.0 0.9693)) +(: cnet_isa_b6d96901f4 (IsA physic natural_science) (STV 1.0 0.9091)) +(: cnet_isa_8f2d6c312c (IsA physic_department academic_department) (STV 1.0 0.9091)) +(: cnet_isa_9439115891 (IsA physic_lab lab) (STV 1.0 0.9091)) +(: cnet_isa_f23069e2f9 (IsA physidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_4b5c7cc17c (IsA physiological_nystagmus nystagmus) (STV 1.0 0.9091)) +(: cnet_isa_9255eb65ee (IsA physiological_property bodily_property) (STV 1.0 0.9091)) +(: cnet_isa_74341b122a (IsA physiological_psychology psychology) (STV 1.0 0.9091)) +(: cnet_isa_da9499ad08 (IsA physiological_sphincter sphincter) (STV 1.0 0.9091)) +(: cnet_isa_2eab122e70 (IsA physiological_state condition) (STV 1.0 0.9091)) +(: cnet_isa_399cc22c50 (IsA physiologist biologist) (STV 1.0 0.9091)) +(: cnet_isa_7617247f8f (IsA physiology bodily_property) (STV 1.0 0.9091)) +(: cnet_isa_1740d55507 (IsA physiology biology) (STV 1.0 0.9091)) +(: cnet_isa_32a3c24668 (IsA physique bodily_property) (STV 1.0 0.9091)) +(: cnet_isa_c4e38fb6c6 (IsA physostegia herb) (STV 1.0 0.9091)) +(: cnet_isa_84ed79ae77 (IsA physostigma plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_8896a6ef6f (IsA physostigmine alkaloid) (STV 1.0 0.9091)) +(: cnet_isa_3fd5b77bd8 (IsA phytelepha plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_50192f5811 (IsA phytochemical chemical) (STV 1.0 0.9091)) +(: cnet_isa_fac83532c9 (IsA phytochemist chemist) (STV 1.0 0.9091)) +(: cnet_isa_6e6005a1d9 (IsA phytochemistry organic_chemistry) (STV 1.0 0.9091)) +(: cnet_isa_0cdece47de (IsA phytohormone plant_product) (STV 1.0 0.9091)) +(: cnet_isa_dd1a3b721b (IsA phytolacca caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_fd0452cc57 (IsA phytolaccaceae caryophylloid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_e4f43f0f34 (IsA phytomastigina class) (STV 1.0 0.9091)) +(: cnet_isa_4c9f738930 (IsA phytophthora fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_1bb3e0ffa5 (IsA phytophthora_citrophthora fungus) (STV 1.0 0.9091)) +(: cnet_isa_13673b39c5 (IsA phytophthora_infestan fungus) (STV 1.0 0.9091)) +(: cnet_isa_e33c3019f1 (IsA phytoplankton plant) (STV 1.0 0.9091)) +(: cnet_isa_59c98d1b61 (IsA phytotherapy therapy) (STV 1.0 0.9091)) +(: cnet_isa_541e811a52 (IsA pi 3_1415926535897932384626433832795028841971693993751) (STV 1.0 0.9091)) +(: cnet_isa_d54c2bbaf2 (IsA pi approximately_3_141592653589793238462643383279502) (STV 1.0 0.9572)) +(: cnet_isa_caf15f98a3 (IsA pi approximately_3_1415926535897932384626433832795028841971693993751) (STV 1.0 0.9572)) +(: cnet_isa_f28898edd6 (IsA pi irrational_number) (STV 1.0 0.9454)) +(: cnet_isa_00ee4f349c (IsA pi mathematical_concept) (STV 1.0 0.9091)) +(: cnet_isa_e8afb787d5 (IsA pi mathematical_constant) (STV 1.0 0.9091)) +(: cnet_isa_29c97a1bc4 (IsA pi rounded_to_3_14) (STV 1.0 0.9091)) +(: cnet_isa_9e7dab2ca2 (IsA pi transendental_number) (STV 1.0 0.9091)) +(: cnet_isa_e0dd7b592b (IsA pi letter) (STV 1.0 0.9091)) +(: cnet_isa_6483b43309 (IsA pi transcendental_number) (STV 1.0 0.9091)) +(: cnet_isa_787ecd10b1 (IsA pia herb) (STV 1.0 0.9091)) +(: cnet_isa_3faef6b070 (IsA pia_mater meninx) (STV 1.0 0.9091)) +(: cnet_isa_67f422819f (IsA piaffe dressage) (STV 1.0 0.9091)) +(: cnet_isa_ce7583f3a6 (IsA pianism performance) (STV 1.0 0.9091)) +(: cnet_isa_783fa00c68 (IsA pianist musician) (STV 1.0 0.9091)) +(: cnet_isa_1c0fa62c68 (IsA piano instrument) (STV 1.0 0.9454)) +(: cnet_isa_158ae429ff (IsA piano instrument_for_playing_music) (STV 1.0 0.9091)) +(: cnet_isa_79a90fbd7a (IsA piano instrument_of_music) (STV 1.0 0.9659)) +(: cnet_isa_9e826dddd2 (IsA piano percussion_instrument) (STV 1.0 0.9524)) +(: cnet_isa_bcdb25835f (IsA piano keyboard_instrument) (STV 1.0 0.9091)) +(: cnet_isa_adf26a879d (IsA piano stringed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_3851ba1ef9 (IsA piano softness) (STV 1.0 0.9091)) +(: cnet_isa_a0b6f4f536 (IsA piano_action action) (STV 1.0 0.9091)) +(: cnet_isa_7d960b9e90 (IsA piano_keyboard keyboard) (STV 1.0 0.9091)) +(: cnet_isa_e3817f77f5 (IsA piano_lesson music_lesson) (STV 1.0 0.9091)) +(: cnet_isa_4fefb48d3f (IsA piano_maker maker) (STV 1.0 0.9091)) +(: cnet_isa_00777989b3 (IsA piano_music music) (STV 1.0 0.9091)) +(: cnet_isa_7119899816 (IsA piano_music sheet_music) (STV 1.0 0.9091)) +(: cnet_isa_787ebdde2e (IsA piano_sonata sonata) (STV 1.0 0.9091)) +(: cnet_isa_b2f15838bf (IsA piano_teacher music_teacher) (STV 1.0 0.9091)) +(: cnet_isa_574f61dc66 (IsA piano_wire wire) (STV 1.0 0.9091)) +(: cnet_isa_a629119f1f (IsA piano furniture) (STV 1.0 0.9091)) +(: cnet_isa_e39013bc6e (IsA piassava_palm feather_palm) (STV 1.0 0.9091)) +(: cnet_isa_63019e7df7 (IsA piaster fractional_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_f09b0b2d0a (IsA pibroch military_march) (STV 1.0 0.9091)) +(: cnet_isa_2812052ac8 (IsA pica bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_8414e36538 (IsA pica eating_disorder) (STV 1.0 0.9091)) +(: cnet_isa_cd331e294e (IsA picador bullfighter) (STV 1.0 0.9091)) +(: cnet_isa_a59e19652e (IsA picador horseman) (STV 1.0 0.9091)) +(: cnet_isa_8507bb22ab (IsA picariae animal_order) (STV 1.0 0.9091)) +(: cnet_isa_a55bf9bc8c (IsA piccalilli relish) (STV 1.0 0.9091)) +(: cnet_isa_d9516a44ed (IsA piccolo musical_instrument) (STV 1.0 0.9524)) +(: cnet_isa_9db2618912 (IsA piccolo flute) (STV 1.0 0.9091)) +(: cnet_isa_1c0037ea3c (IsA picea gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_ccfb707577 (IsA pichi shrub) (STV 1.0 0.9091)) +(: cnet_isa_c07a0aa14d (IsA pichiciago armadillo) (STV 1.0 0.9091)) +(: cnet_isa_50d0b21173 (IsA picidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_1a4cb0ef39 (IsA piciform_bird bird) (STV 1.0 0.9091)) +(: cnet_isa_575ea47fd9 (IsA piciforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_51b9de4200 (IsA pick_s_disease presenile_dementia) (STV 1.0 0.9091)) +(: cnet_isa_5bfa07b39b (IsA pick basketball_play) (STV 1.0 0.9091)) +(: cnet_isa_9f5e923fb2 (IsA pick device) (STV 1.0 0.9091)) +(: cnet_isa_f1e7072a41 (IsA pick edge_tool) (STV 1.0 0.9091)) +(: cnet_isa_30b875d27a (IsA pick hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_5cef6b8aff (IsA pick_off baseball_play) (STV 1.0 0.9091)) +(: cnet_isa_74b37b56f9 (IsA pickaback_plant herb) (STV 1.0 0.9091)) +(: cnet_isa_83d3bb29be (IsA pickaninny child) (STV 1.0 0.9091)) +(: cnet_isa_d806796ad0 (IsA pickaninny negroid) (STV 1.0 0.9091)) +(: cnet_isa_b2b606f8a0 (IsA pickelhaube helmet) (STV 1.0 0.9091)) +(: cnet_isa_421fe86f26 (IsA picker farmhand) (STV 1.0 0.9091)) +(: cnet_isa_b44f45427f (IsA picker person) (STV 1.0 0.9091)) +(: cnet_isa_26aed36f2b (IsA pickerel pike) (STV 1.0 0.9091)) +(: cnet_isa_fcf71347c4 (IsA pickerel_frog true_frog) (STV 1.0 0.9091)) +(: cnet_isa_c2ceb0a015 (IsA pickerelweed aquatic_plant) (STV 1.0 0.9091)) +(: cnet_isa_b81f268cc6 (IsA pickeringia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0b76408651 (IsA picket torture) (STV 1.0 0.9091)) +(: cnet_isa_5efa62df62 (IsA picket strip) (STV 1.0 0.9091)) +(: cnet_isa_50af4e2083 (IsA picket detachment) (STV 1.0 0.9091)) +(: cnet_isa_a528092046 (IsA picket military_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_8024877b49 (IsA picket demonstrator) (STV 1.0 0.9091)) +(: cnet_isa_13eed7aed5 (IsA picket_boat picket) (STV 1.0 0.9091)) +(: cnet_isa_ac7d078f00 (IsA picket_fence fence) (STV 1.0 0.9091)) +(: cnet_isa_8f21b6d905 (IsA picket_line line) (STV 1.0 0.9091)) +(: cnet_isa_b249493c2a (IsA picket_ship picket) (STV 1.0 0.9091)) +(: cnet_isa_62e8c6477d (IsA picking manual_labor) (STV 1.0 0.9091)) +(: cnet_isa_37c14ef52d (IsA picking output) (STV 1.0 0.9091)) +(: cnet_isa_d721da90a2 (IsA picking action) (STV 1.0 0.9091)) +(: cnet_isa_a46792dce8 (IsA pickle cucumber) (STV 1.0 0.9091)) +(: cnet_isa_b145216ddc (IsA pickle relish) (STV 1.0 0.9091)) +(: cnet_isa_48a0ecc96d (IsA pickle_barrel barrel) (STV 1.0 0.9091)) +(: cnet_isa_bfdbadf4c6 (IsA pickle_relish relish) (STV 1.0 0.9091)) +(: cnet_isa_733ab6d2cb (IsA pickled_herring herring) (STV 1.0 0.9091)) +(: cnet_isa_5fe37ff6d4 (IsA pickpocket enemy) (STV 1.0 0.9091)) +(: cnet_isa_d40f77ec54 (IsA pickpocket thief) (STV 1.0 0.9091)) +(: cnet_isa_639bb22e30 (IsA pickup acquiring) (STV 1.0 0.9091)) +(: cnet_isa_93af7a7cec (IsA pickup collection) (STV 1.0 0.9091)) +(: cnet_isa_4dcf558a03 (IsA pickup corrective) (STV 1.0 0.9091)) +(: cnet_isa_2fbecf77ef (IsA pickup truck) (STV 1.0 0.9091)) +(: cnet_isa_c41d8d519f (IsA pickup acceleration) (STV 1.0 0.9091)) +(: cnet_isa_57a37b699f (IsA pickup bench_warrant) (STV 1.0 0.9091)) +(: cnet_isa_a6b82e01f2 (IsA pickup acquaintance) (STV 1.0 0.9091)) +(: cnet_isa_c3a299fb2f (IsA picnic meal) (STV 1.0 0.9091)) +(: cnet_isa_67821160ad (IsA picnic_area tract) (STV 1.0 0.9091)) +(: cnet_isa_3f9bae4395 (IsA picnic_ham cut_of_pork) (STV 1.0 0.9091)) +(: cnet_isa_f76cf7664c (IsA picnicker eater) (STV 1.0 0.9091)) +(: cnet_isa_9f2c4d6349 (IsA picofarad capacitance_unit) (STV 1.0 0.9091)) +(: cnet_isa_6119f88478 (IsA picoide bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_c41d0440e9 (IsA picometer metric_linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_8371313c71 (IsA picornavirus animal_virus) (STV 1.0 0.9091)) +(: cnet_isa_932840cbc9 (IsA picosecond time_unit) (STV 1.0 0.9091)) +(: cnet_isa_3ffe7d163a (IsA picot embroidery_stitch) (STV 1.0 0.9091)) +(: cnet_isa_c22c7733bc (IsA picovolt potential_unit) (STV 1.0 0.9091)) +(: cnet_isa_bb39f48a6b (IsA picrasma rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6f79f9e70b (IsA picric_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_2a94e8fecc (IsA picris asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_dd1fb89544 (IsA pictograph character) (STV 1.0 0.9091)) +(: cnet_isa_8ab5ae2e88 (IsA pictorial periodical) (STV 1.0 0.9091)) +(: cnet_isa_5d8de58348 (IsA pictorial_representation representation) (STV 1.0 0.9091)) +(: cnet_isa_d3315069fe (IsA picture representation) (STV 1.0 0.9091)) +(: cnet_isa_d6c3ad140d (IsA picture typification) (STV 1.0 0.9091)) +(: cnet_isa_ec3370f6b1 (IsA picture illustration) (STV 1.0 0.9091)) +(: cnet_isa_fbe2aace8f (IsA picture situation) (STV 1.0 0.9091)) +(: cnet_isa_e8ad473448 (IsA picture_book book) (STV 1.0 0.9091)) +(: cnet_isa_5b8acc55ec (IsA picture_frame framework) (STV 1.0 0.9091)) +(: cnet_isa_de26d6a37b (IsA picture_hat millinery) (STV 1.0 0.9091)) +(: cnet_isa_499829b523 (IsA picture_plane plane) (STV 1.0 0.9091)) +(: cnet_isa_722362ce43 (IsA picture_postcard postcard) (STV 1.0 0.9091)) +(: cnet_isa_f5b3dc4383 (IsA picture_rail rail) (STV 1.0 0.9091)) +(: cnet_isa_93103db91f (IsA picture_window window) (STV 1.0 0.9091)) +(: cnet_isa_58c6642992 (IsA picture_writing orthography) (STV 1.0 0.9091)) +(: cnet_isa_b16bf07033 (IsA picturesqueness beauty) (STV 1.0 0.9091)) +(: cnet_isa_6ee13f2567 (IsA picturesqueness expressiveness) (STV 1.0 0.9091)) +(: cnet_isa_728806cc42 (IsA picturing imagination) (STV 1.0 0.9091)) +(: cnet_isa_64ce430fcc (IsA picul weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_5678c9ec81 (IsA piculet woodpecker) (STV 1.0 0.9091)) +(: cnet_isa_98416ba6ce (IsA picumnus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_352fa2f06d (IsA picus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_5112b9e784 (IsA piddock bivalve) (STV 1.0 0.9091)) +(: cnet_isa_dbb6d44ac7 (IsA pidgin artificial_language) (STV 1.0 0.9091)) +(: cnet_isa_8fd155b8f6 (IsA pie pastry) (STV 1.0 0.9091)) +(: cnet_isa_252f737837 (IsA pie_chart chart) (STV 1.0 0.9091)) +(: cnet_isa_d83baa5358 (IsA pie_crust pastry) (STV 1.0 0.9091)) +(: cnet_isa_23ba880ee0 (IsA pie_plant rhubarb) (STV 1.0 0.9091)) +(: cnet_isa_94a12fbf8e (IsA piece part_of_whole) (STV 1.0 0.9091)) +(: cnet_isa_bff9ef0e6a (IsA piece item) (STV 1.0 0.9091)) +(: cnet_isa_a6bc3e113c (IsA piece part) (STV 1.0 0.9091)) +(: cnet_isa_45569fb99b (IsA piece distance) (STV 1.0 0.9091)) +(: cnet_isa_05c4366fa2 (IsA piece creation) (STV 1.0 0.9091)) +(: cnet_isa_2b3353ab31 (IsA piece case) (STV 1.0 0.9091)) +(: cnet_isa_a511dd9cfd (IsA piece helping) (STV 1.0 0.9091)) +(: cnet_isa_99cc020530 (IsA piece_de_resistance dish) (STV 1.0 0.9091)) +(: cnet_isa_c713f195fd (IsA piece_of_cloth fabric) (STV 1.0 0.9091)) +(: cnet_isa_5daf96d6ca (IsA piece_of_cloth piece) (STV 1.0 0.9091)) +(: cnet_isa_05abfab6f8 (IsA piece_of_eight coin) (STV 1.0 0.9091)) +(: cnet_isa_7d6843d5f5 (IsA piece_of_leather leather) (STV 1.0 0.9091)) +(: cnet_isa_0658bebd02 (IsA piece_of_leather piece) (STV 1.0 0.9091)) +(: cnet_isa_36ab09605b (IsA piecework employment) (STV 1.0 0.9091)) +(: cnet_isa_d2da93aeeb (IsA pied_billed_grebe grebe) (STV 1.0 0.9091)) +(: cnet_isa_ebc63d1249 (IsA pied_lemming lemming) (STV 1.0 0.9091)) +(: cnet_isa_84e8883e61 (IsA pied_piper leader) (STV 1.0 0.9091)) +(: cnet_isa_0a05b9d9fb (IsA pied_terre housing) (STV 1.0 0.9091)) +(: cnet_isa_3541c4c648 (IsA piedmont slope) (STV 1.0 0.9091)) +(: cnet_isa_7e41b99bf1 (IsA piedmont_glacier glacier) (STV 1.0 0.9091)) +(: cnet_isa_e0661440c6 (IsA pieplant vegetable) (STV 1.0 0.9091)) +(: cnet_isa_58aefa22ff (IsA pier support) (STV 1.0 0.9091)) +(: cnet_isa_f013151724 (IsA pier platform) (STV 1.0 0.9091)) +(: cnet_isa_eecbccabab (IsA pier_arch arch) (STV 1.0 0.9091)) +(: cnet_isa_099af5bd93 (IsA pier_glass mirror) (STV 1.0 0.9091)) +(: cnet_isa_26b94aff42 (IsA pier_table table) (STV 1.0 0.9091)) +(: cnet_isa_7074039589 (IsA pierid butterfly) (STV 1.0 0.9091)) +(: cnet_isa_74da448d26 (IsA pieridae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_b1399c3d4c (IsA pieris arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_fa129fbb2a (IsA pieris dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b96d822921 (IsA pieta representation) (STV 1.0 0.9091)) +(: cnet_isa_757c48fae2 (IsA pietism religious_movement) (STV 1.0 0.9091)) +(: cnet_isa_be5ac19f1f (IsA piety righteousness) (STV 1.0 0.9091)) +(: cnet_isa_32f4f05ea7 (IsA piezoelectric_crystal crystal) (STV 1.0 0.9091)) +(: cnet_isa_89a5b04070 (IsA piezoelectricity electricity) (STV 1.0 0.9091)) +(: cnet_isa_fdaeaa2cde (IsA piezometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_7f392dc9cc (IsA pig_s_ear agaric) (STV 1.0 0.9091)) +(: cnet_isa_e4817029f0 (IsA pig ingot) (STV 1.0 0.9091)) +(: cnet_isa_d4b10fb18a (IsA pig_bed mold) (STV 1.0 0.9091)) +(: cnet_isa_58e1a6528a (IsA pig_iron iron) (STV 1.0 0.9091)) +(: cnet_isa_b28bb10776 (IsA pig_lead lead) (STV 1.0 0.9091)) +(: cnet_isa_2711abbae5 (IsA pigeon columbiform_bird) (STV 1.0 0.9091)) +(: cnet_isa_8900ced82f (IsA pigeon_breast deformity) (STV 1.0 0.9091)) +(: cnet_isa_b503bc0ec6 (IsA pigeon_dropping dropping) (STV 1.0 0.9091)) +(: cnet_isa_c78b90e71f (IsA pigeon_guillemot guillemot) (STV 1.0 0.9091)) +(: cnet_isa_83a5d14d2c (IsA pigeon_hawk falcon) (STV 1.0 0.9091)) +(: cnet_isa_8a1e9f3a18 (IsA pigeon_pea shrub) (STV 1.0 0.9091)) +(: cnet_isa_fe883eead4 (IsA pigeon_toe disability) (STV 1.0 0.9091)) +(: cnet_isa_2cbc39cc42 (IsA pigeonhole compartment) (STV 1.0 0.9091)) +(: cnet_isa_3ce927c641 (IsA pigeonhole category) (STV 1.0 0.9091)) +(: cnet_isa_6fd66ba577 (IsA pigfish grunt) (STV 1.0 0.9091)) +(: cnet_isa_56e6ab1cb3 (IsA pigfish wrasse) (STV 1.0 0.9091)) +(: cnet_isa_83e1f3aa68 (IsA piggery farm) (STV 1.0 0.9091)) +(: cnet_isa_c4ccacb861 (IsA piggy_bank saving_bank) (STV 1.0 0.9091)) +(: cnet_isa_4c81de1f03 (IsA piggyback carry) (STV 1.0 0.9091)) +(: cnet_isa_018f7d1316 (IsA piglet fictional_character) (STV 1.0 0.9091)) +(: cnet_isa_79aa347b9f (IsA piglet young_mammal) (STV 1.0 0.9091)) +(: cnet_isa_b7fd62328d (IsA pigment coloring_material) (STV 1.0 0.9091)) +(: cnet_isa_e12e0392c4 (IsA pigmentation coloration) (STV 1.0 0.9091)) +(: cnet_isa_d0c6c2c09f (IsA pigmentation deposition) (STV 1.0 0.9091)) +(: cnet_isa_02c651fd68 (IsA pigmy small_person) (STV 1.0 0.9091)) +(: cnet_isa_9588737b97 (IsA pigmy_talinum flame_flower) (STV 1.0 0.9091)) +(: cnet_isa_7faf11a421 (IsA pignut hickory) (STV 1.0 0.9091)) +(: cnet_isa_4cc74d81ff (IsA pig mammal) (STV 1.0 0.9091)) +(: cnet_isa_b94f2dd3be (IsA pig_feet pork) (STV 1.0 0.9091)) +(: cnet_isa_895f926cd3 (IsA pig_in_blanket hor_d_oeuvre) (STV 1.0 0.9091)) +(: cnet_isa_71e8236603 (IsA pigskin leather) (STV 1.0 0.9091)) +(: cnet_isa_1c8fb6fd12 (IsA pigsticking hunt) (STV 1.0 0.9091)) +(: cnet_isa_4b3f87414a (IsA pigtail braid) (STV 1.0 0.9091)) +(: cnet_isa_e4d96a7259 (IsA pigweed amaranth) (STV 1.0 0.9091)) +(: cnet_isa_fa525cc312 (IsA pika lagomorph) (STV 1.0 0.9091)) +(: cnet_isa_224ee9897f (IsA pike fish) (STV 1.0 0.9572)) +(: cnet_isa_062e6b862a (IsA pike percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_cbd7f02234 (IsA pike point) (STV 1.0 0.9091)) +(: cnet_isa_bc19bc812c (IsA pike weapon) (STV 1.0 0.9091)) +(: cnet_isa_0b420bf046 (IsA pike freshwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_f72c49730e (IsA pike_perch perch) (STV 1.0 0.9091)) +(: cnet_isa_867b02b6f3 (IsA pikeblenny blennioid_fish) (STV 1.0 0.9091)) +(: cnet_isa_adb252edf3 (IsA piked_reverse_hang reverse_hang) (STV 1.0 0.9091)) +(: cnet_isa_7ff92f8dc9 (IsA pikestaff staff) (STV 1.0 0.9091)) +(: cnet_isa_9eb1c56d65 (IsA pilaf dish) (STV 1.0 0.9091)) +(: cnet_isa_ceda4dc7d6 (IsA pilaster column) (STV 1.0 0.9091)) +(: cnet_isa_10ce5efc9c (IsA pilchard clupeid_fish) (STV 1.0 0.9091)) +(: cnet_isa_9e4083c4d0 (IsA pile column) (STV 1.0 0.9091)) +(: cnet_isa_ffdb040ba5 (IsA pile thread) (STV 1.0 0.9091)) +(: cnet_isa_265dd0e56f (IsA pile collection) (STV 1.0 0.9091)) +(: cnet_isa_5c7032129c (IsA pile money) (STV 1.0 0.9091)) +(: cnet_isa_7a62dcf16e (IsA pile_driver machine) (STV 1.0 0.9091)) +(: cnet_isa_c4745625e9 (IsA pilea dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5df0cfd17f (IsA pileup collision) (STV 1.0 0.9091)) +(: cnet_isa_d2af572a88 (IsA pilferage larceny) (STV 1.0 0.9091)) +(: cnet_isa_09e3376b58 (IsA pilgrim believer) (STV 1.0 0.9091)) +(: cnet_isa_ed9d06355c (IsA pilgrim wayfarer) (STV 1.0 0.9091)) +(: cnet_isa_c6428183f0 (IsA pilgrim_father settler) (STV 1.0 0.9091)) +(: cnet_isa_7df618fdbe (IsA pilgrimage journey) (STV 1.0 0.9091)) +(: cnet_isa_7f3e6ad2a8 (IsA pill contraceptive) (STV 1.0 0.9091)) +(: cnet_isa_0b77377396 (IsA pill dose) (STV 1.0 0.9091)) +(: cnet_isa_c286e2de14 (IsA pill thing) (STV 1.0 0.9091)) +(: cnet_isa_58bdadec63 (IsA pill burden) (STV 1.0 0.9091)) +(: cnet_isa_aa2b56fa17 (IsA pill unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_0eb5932f1b (IsA pill_bottle bottle) (STV 1.0 0.9091)) +(: cnet_isa_831a8d231d (IsA pill_bug woodlouse) (STV 1.0 0.9091)) +(: cnet_isa_f0fd739f92 (IsA pill_head head) (STV 1.0 0.9091)) +(: cnet_isa_6f52cbe5a5 (IsA pillar principle) (STV 1.0 0.9091)) +(: cnet_isa_eee9a36ec1 (IsA pillar supporter) (STV 1.0 0.9091)) +(: cnet_isa_e54c21881d (IsA pillar_box postbox) (STV 1.0 0.9091)) +(: cnet_isa_4fee787326 (IsA pillar_of_islam pillar) (STV 1.0 0.9091)) +(: cnet_isa_41d8e00963 (IsA pillbox case) (STV 1.0 0.9091)) +(: cnet_isa_335094d377 (IsA pillbox gun_emplacement) (STV 1.0 0.9091)) +(: cnet_isa_7c39dfd061 (IsA pillbox millinery) (STV 1.0 0.9091)) +(: cnet_isa_1b7a530eb8 (IsA pillion seat) (STV 1.0 0.9091)) +(: cnet_isa_af0473cfdc (IsA pillory instrument_of_punishment) (STV 1.0 0.9091)) +(: cnet_isa_3bb300312c (IsA pillow cushion) (STV 1.0 0.9091)) +(: cnet_isa_1b5027b507 (IsA pillow_block support) (STV 1.0 0.9091)) +(: cnet_isa_0dd750db44 (IsA pillow_fight game) (STV 1.0 0.9091)) +(: cnet_isa_d8e3d51717 (IsA pillow_fight child_s_game) (STV 1.0 0.9091)) +(: cnet_isa_4ce9ae919a (IsA pillow_lace lace) (STV 1.0 0.9091)) +(: cnet_isa_de849c8ee7 (IsA pillow_lava lava) (STV 1.0 0.9091)) +(: cnet_isa_9fa23a48fd (IsA pillow_sham bed_linen) (STV 1.0 0.9091)) +(: cnet_isa_706b600449 (IsA pillow_talk tete_tete) (STV 1.0 0.9091)) +(: cnet_isa_7e7194b144 (IsA pillowcase cover_for_pillow) (STV 1.0 0.9454)) +(: cnet_isa_87dd2594ac (IsA pill medicine) (STV 1.0 0.9091)) +(: cnet_isa_6c4c8dfd5f (IsA pillwort aquatic_fern) (STV 1.0 0.9091)) +(: cnet_isa_92d54cf5a4 (IsA pilocarpine alkaloid) (STV 1.0 0.9091)) +(: cnet_isa_efadaf18a3 (IsA pilomotor_reflex reflex) (STV 1.0 0.9091)) +(: cnet_isa_1d8894b6ce (IsA pilosella asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_57a292ec79 (IsA pilot aviator) (STV 1.0 0.9091)) +(: cnet_isa_1c9a8752f5 (IsA pilot mariner) (STV 1.0 0.9091)) +(: cnet_isa_17c4106b1d (IsA pilot_balloon meteorological_balloon) (STV 1.0 0.9091)) +(: cnet_isa_18a3a4698f (IsA pilot_bit bit) (STV 1.0 0.9091)) +(: cnet_isa_a3d1aa6992 (IsA pilot_boat boat) (STV 1.0 0.9091)) +(: cnet_isa_7fe37ea076 (IsA pilot_burner gas_burner) (STV 1.0 0.9091)) +(: cnet_isa_de15dd1943 (IsA pilot_cloth fabric) (STV 1.0 0.9091)) +(: cnet_isa_6917706af8 (IsA pilot_engine locomotive) (STV 1.0 0.9091)) +(: cnet_isa_1b287aad2b (IsA pilot_experiment experiment) (STV 1.0 0.9091)) +(: cnet_isa_408094c3d7 (IsA pilot_light indicator) (STV 1.0 0.9091)) +(: cnet_isa_bd27ea2dbb (IsA pilot_program television_program) (STV 1.0 0.9091)) +(: cnet_isa_364101c606 (IsA pilot_project test) (STV 1.0 0.9091)) +(: cnet_isa_0a846b764b (IsA pilot_whale dolphin) (STV 1.0 0.9091)) +(: cnet_isa_d38be0a0bb (IsA pilotfish carangid_fish) (STV 1.0 0.9091)) +(: cnet_isa_431acde1f1 (IsA pilothouse compartment) (STV 1.0 0.9091)) +(: cnet_isa_7b67709290 (IsA piloting trade) (STV 1.0 0.9091)) +(: cnet_isa_1ee9ced092 (IsA pilsner lager) (STV 1.0 0.9091)) +(: cnet_isa_9f1d9f86ad (IsA piltdown_hoax primitive) (STV 1.0 0.9091)) +(: cnet_isa_52c632d4ef (IsA pilularia fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_df36abb91a (IsA pilus hair) (STV 1.0 0.9091)) +(: cnet_isa_e9c2f49bc8 (IsA pima uto_aztecan) (STV 1.0 0.9091)) +(: cnet_isa_33a8a59c53 (IsA pima buffalo_indian) (STV 1.0 0.9091)) +(: cnet_isa_7950dfee84 (IsA pimenta dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_cbe17d7ff8 (IsA pimento sweet_pepper) (STV 1.0 0.9091)) +(: cnet_isa_8c32f280cb (IsA pimento_butter spread) (STV 1.0 0.9091)) +(: cnet_isa_830c452853 (IsA pimozide diphenylbutyl_piperidine) (STV 1.0 0.9091)) +(: cnet_isa_54e747167f (IsA pimp wrongdoer) (STV 1.0 0.9091)) +(: cnet_isa_22eaf0922e (IsA pimpernel herb) (STV 1.0 0.9091)) +(: cnet_isa_3538894cef (IsA pimpinella rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c80240dc03 (IsA pimple acne) (STV 1.0 0.9091)) +(: cnet_isa_cd81303686 (IsA pin fastener) (STV 1.0 0.9091)) +(: cnet_isa_5bdf4fdf1d (IsA pin golf_equipment) (STV 1.0 0.9091)) +(: cnet_isa_66d9be3f23 (IsA pin jewelry) (STV 1.0 0.9091)) +(: cnet_isa_9dd2f8dca8 (IsA pin tumbler) (STV 1.0 0.9091)) +(: cnet_isa_345c65b040 (IsA pin leg) (STV 1.0 0.9091)) +(: cnet_isa_d8f6732fd8 (IsA pin_bone cut_of_beef) (STV 1.0 0.9091)) +(: cnet_isa_617374d889 (IsA pin_cherry bird_cherry) (STV 1.0 0.9091)) +(: cnet_isa_b0010afa4c (IsA pin_curl crimp) (STV 1.0 0.9091)) +(: cnet_isa_1b45c22af9 (IsA pin_oak oak) (STV 1.0 0.9091)) +(: cnet_isa_e626d853a2 (IsA pin_tailed_sandgrouse sandgrouse) (STV 1.0 0.9091)) +(: cnet_isa_adecd2c4b6 (IsA pin_wrench wrench) (STV 1.0 0.9091)) +(: cnet_isa_3e7a8fde38 (IsA pina_cloth fabric) (STV 1.0 0.9091)) +(: cnet_isa_572b1700c8 (IsA pina_colada mixed_drink) (STV 1.0 0.9091)) +(: cnet_isa_e5db20f783 (IsA pinaceae gymnosperm_family) (STV 1.0 0.9091)) +(: cnet_isa_5649795730 (IsA pinata plaything) (STV 1.0 0.9091)) +(: cnet_isa_a6ced7513b (IsA pinball game) (STV 1.0 0.9091)) +(: cnet_isa_fc62d40e63 (IsA pinball_machine game_equipment) (STV 1.0 0.9091)) +(: cnet_isa_501960b4f0 (IsA pince_nez spectacle) (STV 1.0 0.9091)) +(: cnet_isa_8a0c9feb50 (IsA pincer hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_3570cbd5d8 (IsA pinch squeeze) (STV 1.0 0.9091)) +(: cnet_isa_112b7e329a (IsA pinch difficulty) (STV 1.0 0.9091)) +(: cnet_isa_a86d7e1a3d (IsA pinch injury) (STV 1.0 0.9091)) +(: cnet_isa_324cdd1135 (IsA pinch_bar lever) (STV 1.0 0.9091)) +(: cnet_isa_031cc26279 (IsA pinch_hitter batter) (STV 1.0 0.9091)) +(: cnet_isa_3d251e247b (IsA pinch_hitter substitute) (STV 1.0 0.9091)) +(: cnet_isa_ac1e06fe1e (IsA pinchbeck alloy) (STV 1.0 0.9091)) +(: cnet_isa_41d8a6b901 (IsA pinche tamarin) (STV 1.0 0.9091)) +(: cnet_isa_dc9dc4c68c (IsA pinchgut niggard) (STV 1.0 0.9091)) +(: cnet_isa_8883c50f30 (IsA pinckneya asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_873c32109a (IsA pinctada mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_37a23b6ff3 (IsA pincurl_clip cartridge_holder) (STV 1.0 0.9091)) +(: cnet_isa_15ff483774 (IsA pincushion cushion) (STV 1.0 0.9091)) +(: cnet_isa_c810246921 (IsA pindaric_ode ode) (STV 1.0 0.9091)) +(: cnet_isa_1209f40a7e (IsA pine evergreen_tree) (STV 1.0 0.9091)) +(: cnet_isa_0144aaa09b (IsA pine plant) (STV 1.0 0.9339)) +(: cnet_isa_3214ac2c0b (IsA pine soft_wood) (STV 1.0 0.9339)) +(: cnet_isa_aa72025196 (IsA pine conifer) (STV 1.0 0.9091)) +(: cnet_isa_d6171c9caa (IsA pine wood) (STV 1.0 0.9091)) +(: cnet_isa_84c023b1ca (IsA pine_barren_sandwort sandwort) (STV 1.0 0.9091)) +(: cnet_isa_ca8a823956 (IsA pine_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_8483e014c5 (IsA pine_grosbeak grosbeak) (STV 1.0 0.9091)) +(: cnet_isa_bcf72cf4b9 (IsA pine_hyacinth clematis) (STV 1.0 0.9091)) +(: cnet_isa_ea57917c5c (IsA pine_knot firewood) (STV 1.0 0.9091)) +(: cnet_isa_6784fbe4f0 (IsA pine_leaf_aphid adelgid) (STV 1.0 0.9091)) +(: cnet_isa_c27caf1362 (IsA pine_marten marten) (STV 1.0 0.9091)) +(: cnet_isa_2b2932fbaf (IsA pine_nut edible_nut) (STV 1.0 0.9091)) +(: cnet_isa_23879fc094 (IsA pine_sawyer sawyer) (STV 1.0 0.9091)) +(: cnet_isa_00fd59ee5e (IsA pine_siskin finch) (STV 1.0 0.9091)) +(: cnet_isa_136a6a6885 (IsA pine_snake bull_snake) (STV 1.0 0.9091)) +(: cnet_isa_5793236a31 (IsA pine_spittlebug spittle_insect) (STV 1.0 0.9091)) +(: cnet_isa_79f9646fa2 (IsA pine_tar wood_tar) (STV 1.0 0.9091)) +(: cnet_isa_2fe8312019 (IsA pine_tar_rag baseball_equipment) (STV 1.0 0.9091)) +(: cnet_isa_1fd2a150a8 (IsA pine_tar_rag rag) (STV 1.0 0.9091)) +(: cnet_isa_7924bdc805 (IsA pine_vole vole) (STV 1.0 0.9091)) +(: cnet_isa_68a27c8e2b (IsA pineal_gland endocrine_gland) (STV 1.0 0.9091)) +(: cnet_isa_5fb453a174 (IsA pinealoma tumor) (STV 1.0 0.9091)) +(: cnet_isa_c15aef5c28 (IsA pineapple fruit) (STV 1.0 0.9636)) +(: cnet_isa_71674c32e8 (IsA pineapple edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_0157921f0e (IsA pineapple herb) (STV 1.0 0.9091)) +(: cnet_isa_2c0f747fda (IsA pineapple_juice fruit_juice) (STV 1.0 0.9091)) +(: cnet_isa_049d44521f (IsA pineapple_weed herb) (STV 1.0 0.9091)) +(: cnet_isa_380b72bf1f (IsA pinecone cone) (STV 1.0 0.9091)) +(: cnet_isa_278c88a751 (IsA pinesap wildflower) (STV 1.0 0.9091)) +(: cnet_isa_c547f529fa (IsA pinetum tree_farm) (STV 1.0 0.9091)) +(: cnet_isa_f11570d5f1 (IsA pineus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_4656848f1a (IsA pinfish sparid) (STV 1.0 0.9091)) +(: cnet_isa_a602d4ad1c (IsA pinfold pen) (STV 1.0 0.9091)) +(: cnet_isa_c80480fe9a (IsA ping sound) (STV 1.0 0.9091)) +(: cnet_isa_c0983adce8 (IsA ping_pong very_popular_game_in_europe) (STV 1.0 0.9091)) +(: cnet_isa_191b79fdaa (IsA ping_pong_ball ball) (STV 1.0 0.9091)) +(: cnet_isa_74d1adcb29 (IsA pinger pulse_generator) (STV 1.0 0.9091)) +(: cnet_isa_10eec85f87 (IsA pinguecula conjunctiva) (STV 1.0 0.9091)) +(: cnet_isa_7d56ebfa15 (IsA pinguicula plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_8e40bba1bb (IsA pinguinus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_1c5b4d9b97 (IsA pinhead head) (STV 1.0 0.9091)) +(: cnet_isa_ae83853dac (IsA pinhole puncture) (STV 1.0 0.9091)) +(: cnet_isa_0a5d05af83 (IsA pinicola bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_253e5fc0fb (IsA pining longing) (STV 1.0 0.9091)) +(: cnet_isa_a904222c57 (IsA pinion gear) (STV 1.0 0.9091)) +(: cnet_isa_7f1d9d52ea (IsA pinite mineral) (STV 1.0 0.9091)) +(: cnet_isa_32680471e8 (IsA pink color) (STV 1.0 0.9636)) +(: cnet_isa_1c2e5125f7 (IsA pink chromatic_color) (STV 1.0 0.9091)) +(: cnet_isa_362a0a7f27 (IsA pink flower) (STV 1.0 0.9091)) +(: cnet_isa_02068029f6 (IsA pink_and_white_everlasting everlasting) (STV 1.0 0.9091)) +(: cnet_isa_860da963fb (IsA pink_bollworm bollworm) (STV 1.0 0.9091)) +(: cnet_isa_c1b54208cd (IsA pink_calla calla_lily) (STV 1.0 0.9091)) +(: cnet_isa_c4cc0c43d0 (IsA pink_cockatoo cockatoo) (STV 1.0 0.9091)) +(: cnet_isa_5317759d35 (IsA pink_disease plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_20be9a6ddb (IsA pink_disease_fungus fungus) (STV 1.0 0.9091)) +(: cnet_isa_bcfda6961f (IsA pink_elephant visual_hallucination) (STV 1.0 0.9091)) +(: cnet_isa_322241d284 (IsA pink_fivecorner shrub) (STV 1.0 0.9091)) +(: cnet_isa_234692a1e3 (IsA pink_floyd band) (STV 1.0 0.9454)) +(: cnet_isa_5ced5c7cf6 (IsA pink_lady cocktail) (STV 1.0 0.9091)) +(: cnet_isa_9d8422ee19 (IsA pink_shower cassia) (STV 1.0 0.9091)) +(: cnet_isa_e38ff13509 (IsA pinkie finger) (STV 1.0 0.9091)) +(: cnet_isa_d2aca8e199 (IsA pinkie minimus) (STV 1.0 0.9091)) +(: cnet_isa_70b333a47a (IsA pinkness pink) (STV 1.0 0.9091)) +(: cnet_isa_dad7ba13c3 (IsA pinko collectivist) (STV 1.0 0.9091)) +(: cnet_isa_318a590a48 (IsA pinkroot plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_0214865406 (IsA pinna leaflet) (STV 1.0 0.9091)) +(: cnet_isa_092d513bce (IsA pinnacle steeple) (STV 1.0 0.9091)) +(: cnet_isa_323df94576 (IsA pinnacle peak) (STV 1.0 0.9091)) +(: cnet_isa_c8841ec009 (IsA pinnate_leaf compound_leaf) (STV 1.0 0.9091)) +(: cnet_isa_9951fd2795 (IsA pinner cap) (STV 1.0 0.9091)) +(: cnet_isa_222e6b1625 (IsA pinning promise) (STV 1.0 0.9091)) +(: cnet_isa_17571c2c2b (IsA pinniped_mammal aquatic_mammal) (STV 1.0 0.9091)) +(: cnet_isa_978d800c5a (IsA pinnipedia animal_order) (STV 1.0 0.9091)) +(: cnet_isa_52aa7400eb (IsA pinnothere arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_56762c44aa (IsA pinnotheridae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_7224e0fba8 (IsA pinochle card_game) (STV 1.0 0.9091)) +(: cnet_isa_a33d1721f1 (IsA pinocytosis bodily_process) (STV 1.0 0.9091)) +(: cnet_isa_702b8d308f (IsA pinole meal) (STV 1.0 0.9091)) +(: cnet_isa_bf51b96254 (IsA pinon pine) (STV 1.0 0.9091)) +(: cnet_isa_aa350126ba (IsA pinon_pine nut_pine) (STV 1.0 0.9091)) +(: cnet_isa_295969c34b (IsA pinopsida class) (STV 1.0 0.9091)) +(: cnet_isa_51865a0b3e (IsA pinot vinifera) (STV 1.0 0.9091)) +(: cnet_isa_6e039b058b (IsA pinot_blanc white_wine) (STV 1.0 0.9091)) +(: cnet_isa_518fe53bd1 (IsA pinot_blanc pinot) (STV 1.0 0.9091)) +(: cnet_isa_9652e4c0d6 (IsA pinot_noir red_wine) (STV 1.0 0.9091)) +(: cnet_isa_a738006b06 (IsA pinot_noir pinot) (STV 1.0 0.9091)) +(: cnet_isa_8f2aca1bed (IsA pinpoint point) (STV 1.0 0.9091)) +(: cnet_isa_e78108e51f (IsA pinpoint moment) (STV 1.0 0.9091)) +(: cnet_isa_52a8c5e4f5 (IsA pinprick puncture) (STV 1.0 0.9091)) +(: cnet_isa_3a188de061 (IsA pinprick irritation) (STV 1.0 0.9091)) +(: cnet_isa_a7cb7e2131 (IsA pin_and_needle prickling) (STV 1.0 0.9091)) +(: cnet_isa_cb2e5b5db1 (IsA pinscher watchdog) (STV 1.0 0.9091)) +(: cnet_isa_b0fad2f6c8 (IsA pinstripe band) (STV 1.0 0.9091)) +(: cnet_isa_31cb698739 (IsA pinstripe fabric) (STV 1.0 0.9091)) +(: cnet_isa_419684fd97 (IsA pinstripe suit) (STV 1.0 0.9091)) +(: cnet_isa_631f4b32ee (IsA pint british_capacity_unit) (STV 1.0 0.9091)) +(: cnet_isa_6f06b3d6cb (IsA pint united_state_dry_unit) (STV 1.0 0.9091)) +(: cnet_isa_cea330584a (IsA pint united_state_liquid_unit) (STV 1.0 0.9091)) +(: cnet_isa_5ab7404a72 (IsA pintail duck) (STV 1.0 0.9091)) +(: cnet_isa_80168e906b (IsA pintle pivot) (STV 1.0 0.9091)) +(: cnet_isa_0b717e0c0b (IsA pinto horse) (STV 1.0 0.9091)) +(: cnet_isa_ca61d2f6c5 (IsA pinto_bean common_bean) (STV 1.0 0.9091)) +(: cnet_isa_6c544d3eec (IsA pinus gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_d604f4b120 (IsA pinwheel wheel) (STV 1.0 0.9091)) +(: cnet_isa_10265c3e5c (IsA pinwheel subshrub) (STV 1.0 0.9091)) +(: cnet_isa_b349b0cf93 (IsA pinwheel_roll sweet_roll) (STV 1.0 0.9091)) +(: cnet_isa_34ab457b7e (IsA pinwheel_wind_collector plaything) (STV 1.0 0.9091)) +(: cnet_isa_9c76540c43 (IsA pinworm nematode) (STV 1.0 0.9091)) +(: cnet_isa_a759bbd588 (IsA pion elementary_particle) (STV 1.0 0.9091)) +(: cnet_isa_3dea801402 (IsA pion meson) (STV 1.0 0.9091)) +(: cnet_isa_9177314de6 (IsA pioneer originator) (STV 1.0 0.9091)) +(: cnet_isa_a70e044214 (IsA pioneer settler) (STV 1.0 0.9091)) +(: cnet_isa_9f6333f0e5 (IsA pip seed) (STV 1.0 0.9091)) +(: cnet_isa_b2d0ca83ec (IsA pip ailment) (STV 1.0 0.9091)) +(: cnet_isa_538d907d62 (IsA pip animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_97b28f379e (IsA pip_squeak cipher) (STV 1.0 0.9091)) +(: cnet_isa_e7d7efd9c1 (IsA pipa amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_b9a242f00e (IsA pipage fee) (STV 1.0 0.9091)) +(: cnet_isa_a996c1965b (IsA pipal fig_tree) (STV 1.0 0.9091)) +(: cnet_isa_52b197bc56 (IsA pipe smoking_device_often) (STV 1.0 0.9091)) +(: cnet_isa_b1f1fbd639 (IsA pipe tube) (STV 1.0 0.9091)) +(: cnet_isa_ea6480c94e (IsA pipe wind_instrument) (STV 1.0 0.9091)) +(: cnet_isa_1ae1517bbd (IsA pipe cylinder) (STV 1.0 0.9091)) +(: cnet_isa_e696d67bab (IsA pipe_bomb bomb) (STV 1.0 0.9091)) +(: cnet_isa_3e1494fa34 (IsA pipe_cleaner cleaning_implement) (STV 1.0 0.9091)) +(: cnet_isa_db65014498 (IsA pipe_cutter hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_1d5db713d2 (IsA pipe_dream fantasy) (STV 1.0 0.9091)) +(: cnet_isa_0ed087b7da (IsA pipe_major piper) (STV 1.0 0.9091)) +(: cnet_isa_d26a7208d3 (IsA pipe_rack rack) (STV 1.0 0.9091)) +(: cnet_isa_49b7926b3f (IsA pipe_smoker smoker) (STV 1.0 0.9091)) +(: cnet_isa_87fabcf8c7 (IsA pipe_vise clamp) (STV 1.0 0.9091)) +(: cnet_isa_912c1f6792 (IsA pipe_wrench adjustable_wrench) (STV 1.0 0.9091)) +(: cnet_isa_85f4d7d70e (IsA pipeclay clay) (STV 1.0 0.9091)) +(: cnet_isa_1a2612cae7 (IsA pipefish teleost_fish) (STV 1.0 0.9091)) +(: cnet_isa_dc7b5c2409 (IsA pipefitting fitting) (STV 1.0 0.9091)) +(: cnet_isa_32c46cc675 (IsA pipeful containerful) (STV 1.0 0.9091)) +(: cnet_isa_bb517c38bb (IsA pipeline pipe) (STV 1.0 0.9091)) +(: cnet_isa_d89599f5f5 (IsA pipeline_company company) (STV 1.0 0.9091)) +(: cnet_isa_c02dc533fe (IsA piper musician) (STV 1.0 0.9091)) +(: cnet_isa_bc80d14537 (IsA piper dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_44d0471e87 (IsA piperaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_beae87c20d (IsA piperale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_426e936879 (IsA piperazine vermifuge) (STV 1.0 0.9091)) +(: cnet_isa_852ba1ce2d (IsA piperin chemical_irritant) (STV 1.0 0.9091)) +(: cnet_isa_08e6330e6a (IsA piperocaine spinal_anesthetic) (STV 1.0 0.9091)) +(: cnet_isa_08320f7337 (IsA pipestem_clematis clematis) (STV 1.0 0.9091)) +(: cnet_isa_3e162e0aca (IsA pipet measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_cf1402a773 (IsA pipewort aquatic_plant) (STV 1.0 0.9091)) +(: cnet_isa_1c18436c3e (IsA pipidae amphibian_family) (STV 1.0 0.9091)) +(: cnet_isa_7620252056 (IsA pipile bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_1771f9dc01 (IsA pipilo bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_5d6176d157 (IsA piping playing) (STV 1.0 0.9091)) +(: cnet_isa_fb65f03f0f (IsA piping cord) (STV 1.0 0.9091)) +(: cnet_isa_7591a501bb (IsA piping_crow australian_magpie) (STV 1.0 0.9091)) +(: cnet_isa_f891aaea01 (IsA piping_guan guan) (STV 1.0 0.9091)) +(: cnet_isa_e13faf037e (IsA piping_plover plover) (STV 1.0 0.9091)) +(: cnet_isa_ceadf4f9d3 (IsA pipistrelle vespertilian_bat) (STV 1.0 0.9091)) +(: cnet_isa_70a89f4653 (IsA pipistrellus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_1c50f95751 (IsA pipit oscine) (STV 1.0 0.9091)) +(: cnet_isa_d1aca9ac1b (IsA pippin eating_apple) (STV 1.0 0.9091)) +(: cnet_isa_d9ed2457e4 (IsA pipra bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_6d715521d9 (IsA pipridae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_c15a15c7a6 (IsA pipsissewa herb) (STV 1.0 0.9091)) +(: cnet_isa_1553bc2ce4 (IsA piptadenia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2def7d010f (IsA pipturus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ccebb34834 (IsA pipturus_albidus angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_78d06e2a7a (IsA piquantness quality) (STV 1.0 0.9091)) +(: cnet_isa_b361b75c3b (IsA pique fabric) (STV 1.0 0.9091)) +(: cnet_isa_2fbf655809 (IsA pique annoyance) (STV 1.0 0.9091)) +(: cnet_isa_08cc0d6f5f (IsA piqueria asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e1646cb456 (IsA piquet card_game) (STV 1.0 0.9091)) +(: cnet_isa_0c66b92b58 (IsA piracy highjacking) (STV 1.0 0.9091)) +(: cnet_isa_c9256a652c (IsA piranga bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_39d0463222 (IsA piranha meat_eating_fish) (STV 1.0 0.9454)) +(: cnet_isa_8c2b04069a (IsA piranha characin) (STV 1.0 0.9091)) +(: cnet_isa_4ca069272a (IsA pirate ship) (STV 1.0 0.9091)) +(: cnet_isa_d78af37c63 (IsA pirate plunderer) (STV 1.0 0.9091)) +(: cnet_isa_122b6c96f0 (IsA pirogi turnover) (STV 1.0 0.9091)) +(: cnet_isa_2694979e4f (IsA piroplasm sporozoan) (STV 1.0 0.9091)) +(: cnet_isa_7d350f8a5b (IsA pirouette spin) (STV 1.0 0.9091)) +(: cnet_isa_c86d63faf6 (IsA pis_aller expedient) (STV 1.0 0.9091)) +(: cnet_isa_d556418d0c (IsA pisang_wax wax) (STV 1.0 0.9091)) +(: cnet_isa_953e07897e (IsA pisanosaur ornithischian) (STV 1.0 0.9091)) +(: cnet_isa_b4d3c40ac9 (IsA pisce division) (STV 1.0 0.9091)) +(: cnet_isa_9e38b38922 (IsA piscidia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f5b5c6cc3d (IsA pisha_paysha card_game) (STV 1.0 0.9091)) +(: cnet_isa_a317e7296c (IsA pisiform carpal_bone) (STV 1.0 0.9091)) +(: cnet_isa_d4b0cfd24d (IsA pisonia caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9aff7f169e (IsA piss_up bust) (STV 1.0 0.9091)) +(: cnet_isa_1ff49c427f (IsA pisser difficulty) (STV 1.0 0.9091)) +(: cnet_isa_bea4405dcf (IsA pisser person) (STV 1.0 0.9091)) +(: cnet_isa_ef392b704a (IsA pistachio edible_nut) (STV 1.0 0.9091)) +(: cnet_isa_58206cd3f4 (IsA pistachio nut_tree) (STV 1.0 0.9091)) +(: cnet_isa_515830a0b2 (IsA pistacia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_dc50e49eea (IsA piste court) (STV 1.0 0.9091)) +(: cnet_isa_a86e80f357 (IsA piste ski_run) (STV 1.0 0.9091)) +(: cnet_isa_2c66a1f003 (IsA pistia aquatic_plant) (STV 1.0 0.9091)) +(: cnet_isa_6d6788df54 (IsA pistil reproductive_structure) (STV 1.0 0.9091)) +(: cnet_isa_2ac26812ef (IsA pistillode pistil) (STV 1.0 0.9091)) +(: cnet_isa_337be548c1 (IsA pistol gun) (STV 1.0 0.9748)) +(: cnet_isa_4b9d45cdb5 (IsA pistol handheld_gun) (STV 1.0 0.9339)) +(: cnet_isa_f135256c09 (IsA pistol weapon) (STV 1.0 0.9693)) +(: cnet_isa_12798cedb6 (IsA pistol firearm) (STV 1.0 0.9091)) +(: cnet_isa_4eb3a41a13 (IsA pistol_grip stock) (STV 1.0 0.9091)) +(: cnet_isa_1e6824f20c (IsA pistoleer soldier) (STV 1.0 0.9091)) +(: cnet_isa_44f4e93f33 (IsA piston mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_f0d8464ba7 (IsA piston_ring seal) (STV 1.0 0.9091)) +(: cnet_isa_9e9dc101ce (IsA piston_rod connecting_rod) (STV 1.0 0.9091)) +(: cnet_isa_e5d5db35ba (IsA pisum rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6c796442a5 (IsA pit deep_hole) (STV 1.0 0.9091)) +(: cnet_isa_ad4c6d737d (IsA pit seed) (STV 1.0 0.9091)) +(: cnet_isa_70497a2e26 (IsA pit area) (STV 1.0 0.9091)) +(: cnet_isa_d58cf80805 (IsA pit enclosure) (STV 1.0 0.9091)) +(: cnet_isa_531dab820e (IsA pit excavation) (STV 1.0 0.9091)) +(: cnet_isa_856e37ad2e (IsA pit trap) (STV 1.0 0.9091)) +(: cnet_isa_2fcb00a6bf (IsA pit hole) (STV 1.0 0.9091)) +(: cnet_isa_e5a0d1cdd7 (IsA pit cavity) (STV 1.0 0.9091)) +(: cnet_isa_f1ad09390f (IsA pit concave_shape) (STV 1.0 0.9091)) +(: cnet_isa_810b17d425 (IsA pit_of_stomach pit) (STV 1.0 0.9091)) +(: cnet_isa_fcace9f854 (IsA pit_stop stop) (STV 1.0 0.9091)) +(: cnet_isa_6adbb74e53 (IsA pit_viper viper) (STV 1.0 0.9091)) +(: cnet_isa_e37cae822f (IsA pita flatbread) (STV 1.0 0.9091)) +(: cnet_isa_c01dbbddcb (IsA pitahaya edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_27eb10b2a0 (IsA pitahaya_cactus cactus) (STV 1.0 0.9091)) +(: cnet_isa_50969e2822 (IsA pitch all_four) (STV 1.0 0.9091)) +(: cnet_isa_866e7358da (IsA pitch approach) (STV 1.0 0.9091)) +(: cnet_isa_343ab1e185 (IsA pitch throw) (STV 1.0 0.9091)) +(: cnet_isa_b2ad053340 (IsA pitch gradient) (STV 1.0 0.9091)) +(: cnet_isa_71722480d5 (IsA pitch sound_property) (STV 1.0 0.9091)) +(: cnet_isa_41ebd94a47 (IsA pitch position) (STV 1.0 0.9091)) +(: cnet_isa_2ae0589fc1 (IsA pitch bitumen) (STV 1.0 0.9091)) +(: cnet_isa_404006148e (IsA pitch_apple strangler) (STV 1.0 0.9091)) +(: cnet_isa_08af21cd2f (IsA pitch_pine pine) (STV 1.0 0.9091)) +(: cnet_isa_16d23f5450 (IsA pitch_pipe pipe) (STV 1.0 0.9091)) +(: cnet_isa_dff3a1ce1e (IsA pitched_battle battle) (STV 1.0 0.9091)) +(: cnet_isa_54378d6bc8 (IsA pitcher container) (STV 1.0 0.9454)) +(: cnet_isa_2760c4195b (IsA pitcher position) (STV 1.0 0.9091)) +(: cnet_isa_fae5833bc3 (IsA pitcher vessel) (STV 1.0 0.9091)) +(: cnet_isa_507f88f2cc (IsA pitcher leaf) (STV 1.0 0.9091)) +(: cnet_isa_ef46072986 (IsA pitcher containerful) (STV 1.0 0.9091)) +(: cnet_isa_6ba2504da3 (IsA pitcher ballplayer) (STV 1.0 0.9091)) +(: cnet_isa_db845b2211 (IsA pitcher thrower) (STV 1.0 0.9091)) +(: cnet_isa_e709bdfe41 (IsA pitcher_plant carnivorous_plant) (STV 1.0 0.9091)) +(: cnet_isa_0bfecc4b36 (IsA pitcher_sage sage) (STV 1.0 0.9091)) +(: cnet_isa_05c067fa27 (IsA pitcher_sage shrub) (STV 1.0 0.9091)) +(: cnet_isa_90a807f288 (IsA pitchfork hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_aec209a653 (IsA pitching playing) (STV 1.0 0.9091)) +(: cnet_isa_996727d4ca (IsA pitching_change replacement) (STV 1.0 0.9091)) +(: cnet_isa_b1fc38645d (IsA pitching_coach baseball_coach) (STV 1.0 0.9091)) +(: cnet_isa_3428e9cf15 (IsA pitching_wedge wedge) (STV 1.0 0.9091)) +(: cnet_isa_e0db41aed9 (IsA pitchman salesman) (STV 1.0 0.9091)) +(: cnet_isa_9bee936009 (IsA pitchstone volcanic_glass) (STV 1.0 0.9091)) +(: cnet_isa_92e8cdcc1b (IsA pitfall difficulty) (STV 1.0 0.9091)) +(: cnet_isa_9a369915ac (IsA pith plant_tissue) (STV 1.0 0.9091)) +(: cnet_isa_52eadacb3e (IsA pith_hat sun_hat) (STV 1.0 0.9091)) +(: cnet_isa_e6112841c1 (IsA pithead entrance) (STV 1.0 0.9091)) +(: cnet_isa_ac31b2c3b0 (IsA pithecanthropus hominid) (STV 1.0 0.9091)) +(: cnet_isa_e4931098fa (IsA pithecellobium rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c603ddd3eb (IsA pithecia mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_1e6e438759 (IsA pitilessness mercilessness) (STV 1.0 0.9091)) +(: cnet_isa_e5d83cb688 (IsA piton spike) (STV 1.0 0.9091)) +(: cnet_isa_205c8e3b02 (IsA pitot measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_beea11b4e5 (IsA pitot_tube measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_51f4b52ee2 (IsA pitprop prop) (STV 1.0 0.9091)) +(: cnet_isa_ba223a5a14 (IsA pitsaw two_handed_saw) (STV 1.0 0.9091)) +(: cnet_isa_564bac2ec4 (IsA pitta tyrannid) (STV 1.0 0.9091)) +(: cnet_isa_0626441363 (IsA pittance payment) (STV 1.0 0.9091)) +(: cnet_isa_649ba0d9d7 (IsA pitter_patter pat) (STV 1.0 0.9091)) +(: cnet_isa_bf223bf43b (IsA pittidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_8088cefa32 (IsA pitting corrosion) (STV 1.0 0.9091)) +(: cnet_isa_1d72144d97 (IsA pittsburgh city_in_pennsylvania) (STV 1.0 0.9454)) +(: cnet_isa_d7a38c8261 (IsA pituitary endocrine_gland) (STV 1.0 0.9091)) +(: cnet_isa_cc6478db84 (IsA pituophis reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_d963b37f49 (IsA pity emotion) (STV 1.0 0.9339)) +(: cnet_isa_b5722b1e9f (IsA pity misfortune) (STV 1.0 0.9091)) +(: cnet_isa_a5eb02a6f9 (IsA pitymy mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_87bfa65e21 (IsA pityriasis dermatosis) (STV 1.0 0.9091)) +(: cnet_isa_ab43198d55 (IsA pityriasis_alba pityriasis) (STV 1.0 0.9091)) +(: cnet_isa_6cabb9c441 (IsA pityriasis_rosea pityriasis) (STV 1.0 0.9091)) +(: cnet_isa_35f089a28f (IsA pityrogramma fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_822b6c5196 (IsA piute shoshoni) (STV 1.0 0.9091)) +(: cnet_isa_4793f1d8a5 (IsA pivot rotation) (STV 1.0 0.9091)) +(: cnet_isa_1b05ee29ff (IsA pivot axis) (STV 1.0 0.9091)) +(: cnet_isa_cf99b2619d (IsA pivot marcher) (STV 1.0 0.9091)) +(: cnet_isa_a88703bacd (IsA pivot_joint synovial_joint) (STV 1.0 0.9091)) +(: cnet_isa_0c819d751e (IsA pivot_shot basketball_shot) (STV 1.0 0.9091)) +(: cnet_isa_898702c6b2 (IsA pivoting_window window) (STV 1.0 0.9091)) +(: cnet_isa_b8b9952e87 (IsA pixel component) (STV 1.0 0.9091)) +(: cnet_isa_7802809480 (IsA pizza disc_shaped_food_item) (STV 1.0 0.9636)) +(: cnet_isa_419ce4296e (IsA pizza favorite_food_of_many) (STV 1.0 0.9091)) +(: cnet_isa_20d8e0a107 (IsA pizza dish) (STV 1.0 0.9091)) +(: cnet_isa_eec35ba40d (IsA pizza_and_salad both_food) (STV 1.0 0.9339)) +(: cnet_isa_5024c4c18b (IsA pizza_parlor pizzeria) (STV 1.0 0.9339)) +(: cnet_isa_41ed4dbf87 (IsA pizza_parlor restaurant) (STV 1.0 0.9091)) +(: cnet_isa_0e794c6542 (IsA pizzeria restarant) (STV 1.0 0.9091)) +(: cnet_isa_70bf83ad5e (IsA pizzeria restaurant) (STV 1.0 0.9339)) +(: cnet_isa_4289b15b73 (IsA pizzeria shop) (STV 1.0 0.9091)) +(: cnet_isa_4f078e241c (IsA pizzicato music) (STV 1.0 0.9091)) +(: cnet_isa_d62e111997 (IsA pku_test diagnostic_test) (STV 1.0 0.9091)) +(: cnet_isa_0a2765ff1b (IsA placation appeasement) (STV 1.0 0.9091)) +(: cnet_isa_20984f4b0d (IsA place cognition) (STV 1.0 0.9091)) +(: cnet_isa_496aa57e6c (IsA place item) (STV 1.0 0.9091)) +(: cnet_isa_b435584ea8 (IsA place passage) (STV 1.0 0.9091)) +(: cnet_isa_72d4ca71c9 (IsA place geographical_area) (STV 1.0 0.9091)) +(: cnet_isa_f7087788e4 (IsA place vicinity) (STV 1.0 0.9091)) +(: cnet_isa_d01cf867e4 (IsA place condition) (STV 1.0 0.9091)) +(: cnet_isa_33d94dd23c (IsA place situation) (STV 1.0 0.9091)) +(: cnet_isa_b520196e90 (IsA place social_station) (STV 1.0 0.9091)) +(: cnet_isa_58d7754aa6 (IsA place_bet bet) (STV 1.0 0.9091)) +(: cnet_isa_4900016766 (IsA place_kick kick) (STV 1.0 0.9091)) +(: cnet_isa_547bf5c1fa (IsA place_kicker kicker) (STV 1.0 0.9091)) +(: cnet_isa_988ff9ee8e (IsA place_mat mat) (STV 1.0 0.9091)) +(: cnet_isa_6f59a35cee (IsA place_mat table_linen) (STV 1.0 0.9091)) +(: cnet_isa_1aee5c08fd (IsA place_name name) (STV 1.0 0.9091)) +(: cnet_isa_69a5d47814 (IsA place_of_business establishment) (STV 1.0 0.9091)) +(: cnet_isa_3cf4dd9223 (IsA place_of_worship building) (STV 1.0 0.9091)) +(: cnet_isa_412caabd5c (IsA place_setting service) (STV 1.0 0.9091)) +(: cnet_isa_4256b063b1 (IsA place_to_store_valuable_object safe) (STV 1.0 0.9091)) +(: cnet_isa_0a2b9ea582 (IsA placebo medicine) (STV 1.0 0.9091)) +(: cnet_isa_b77c024edc (IsA placebo vesper) (STV 1.0 0.9091)) +(: cnet_isa_cabfee1255 (IsA placebo_effect consequence) (STV 1.0 0.9091)) +(: cnet_isa_2960a38d4d (IsA placeholder variable) (STV 1.0 0.9091)) +(: cnet_isa_d155d7c02d (IsA placeman appointee) (STV 1.0 0.9091)) +(: cnet_isa_6b1790ce09 (IsA placement activity) (STV 1.0 0.9091)) +(: cnet_isa_5fe2a34678 (IsA placement contact) (STV 1.0 0.9091)) +(: cnet_isa_79a4cf7063 (IsA placement position) (STV 1.0 0.9091)) +(: cnet_isa_ef5ec1d0fa (IsA placement_office administrative_unit) (STV 1.0 0.9091)) +(: cnet_isa_726e7bed51 (IsA placenta vascular_structure) (STV 1.0 0.9091)) +(: cnet_isa_df192810dd (IsA placenta reproductive_structure) (STV 1.0 0.9091)) +(: cnet_isa_aea954b423 (IsA placenta_previa pregnancy) (STV 1.0 0.9091)) +(: cnet_isa_957ef6e6cf (IsA placental mammal) (STV 1.0 0.9091)) +(: cnet_isa_bf4e54dab5 (IsA placentation reproductive_structure) (STV 1.0 0.9091)) +(: cnet_isa_03ad859985 (IsA placentation bodily_process) (STV 1.0 0.9091)) +(: cnet_isa_33c4f90112 (IsA placer alluvial_sediment) (STV 1.0 0.9091)) +(: cnet_isa_a50529b431 (IsA placer_miner miner) (STV 1.0 0.9091)) +(: cnet_isa_45fe5b79c2 (IsA placer_mining mining) (STV 1.0 0.9091)) +(: cnet_isa_e29e6a8e4a (IsA placidity calmness) (STV 1.0 0.9091)) +(: cnet_isa_11720f9ec3 (IsA placket piece_of_cloth) (STV 1.0 0.9091)) +(: cnet_isa_2a63349c44 (IsA placoderm aquatic_vertebrate) (STV 1.0 0.9091)) +(: cnet_isa_942297b628 (IsA placodermi class) (STV 1.0 0.9091)) +(: cnet_isa_5f138def00 (IsA placuna mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_94cc073fde (IsA plagal_cadence cadence) (STV 1.0 0.9091)) +(: cnet_isa_e22428d7eb (IsA plage beach) (STV 1.0 0.9091)) +(: cnet_isa_da4976d28f (IsA plagianthus dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_296dd32838 (IsA plagiarism copyright_infringement) (STV 1.0 0.9091)) +(: cnet_isa_8db5f9948e (IsA plagiarism writing) (STV 1.0 0.9091)) +(: cnet_isa_bb20dcceb5 (IsA plagiarist thief) (STV 1.0 0.9091)) +(: cnet_isa_13be393dff (IsA plagiocephaly birth_defect) (STV 1.0 0.9091)) +(: cnet_isa_74bc445938 (IsA plagiocephaly deformity) (STV 1.0 0.9091)) +(: cnet_isa_ce7a8aed1a (IsA plagioclase feldspar) (STV 1.0 0.9091)) +(: cnet_isa_d07b0aa81b (IsA plague annoyance) (STV 1.0 0.9091)) +(: cnet_isa_17a355dd66 (IsA plague calamity) (STV 1.0 0.9091)) +(: cnet_isa_6a97f5ce85 (IsA plague epidemic_disease) (STV 1.0 0.9091)) +(: cnet_isa_2affc63939 (IsA plague_spot macule) (STV 1.0 0.9091)) +(: cnet_isa_4185165e62 (IsA plaice righteye_flounder) (STV 1.0 0.9091)) +(: cnet_isa_abd2f5b825 (IsA plaice flounder) (STV 1.0 0.9091)) +(: cnet_isa_00cc25ffa3 (IsA plaid patern_of_line_and_square) (STV 1.0 0.9091)) +(: cnet_isa_60ed99832e (IsA plaid pattern) (STV 1.0 0.9091)) +(: cnet_isa_4c8a211822 (IsA plain land) (STV 1.0 0.9091)) +(: cnet_isa_559949e53a (IsA plain_flour flour) (STV 1.0 0.9091)) +(: cnet_isa_e66c39062a (IsA plain_sailing progress) (STV 1.0 0.9091)) +(: cnet_isa_a39728a50f (IsA plain_turkey bustard) (STV 1.0 0.9091)) +(: cnet_isa_a8b13a6839 (IsA plain_wanderer wading_bird) (STV 1.0 0.9091)) +(: cnet_isa_9d4906a13e (IsA plain_weave weave) (STV 1.0 0.9091)) +(: cnet_isa_eaab8e79ca (IsA plainclothesman detective) (STV 1.0 0.9091)) +(: cnet_isa_173c4f22b5 (IsA plainness appearance) (STV 1.0 0.9091)) +(: cnet_isa_b8a53723a4 (IsA plainness purity) (STV 1.0 0.9091)) +(: cnet_isa_477790d851 (IsA plain_lemon_monarda monarda) (STV 1.0 0.9091)) +(: cnet_isa_fa889e83c9 (IsA plain_pocket_gopher gopher) (STV 1.0 0.9091)) +(: cnet_isa_5271409532 (IsA plain_pocket_mouse pocket_mouse) (STV 1.0 0.9091)) +(: cnet_isa_b4537acc6d (IsA plain_spadefoot spadefoot) (STV 1.0 0.9091)) +(: cnet_isa_3807f55a35 (IsA plainsman inhabitant) (STV 1.0 0.9091)) +(: cnet_isa_a572dea8ea (IsA plainsong plainsong) (STV 1.0 0.9091)) +(: cnet_isa_49413f75a6 (IsA plainsong chant) (STV 1.0 0.9091)) +(: cnet_isa_1798aca452 (IsA plaint allegation) (STV 1.0 0.9091)) +(: cnet_isa_510b1cf347 (IsA plaintiff litigant) (STV 1.0 0.9091)) +(: cnet_isa_e74a0219ba (IsA plaintiveness mournfulness) (STV 1.0 0.9091)) +(: cnet_isa_3f573001ee (IsA plaiter skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_7739f3f7ff (IsA plan drawing) (STV 1.0 0.9091)) +(: cnet_isa_9c478970aa (IsA plan idea) (STV 1.0 0.9091)) +(: cnet_isa_14d5334f53 (IsA plan_of_action plan) (STV 1.0 0.9091)) +(: cnet_isa_7112c8f94e (IsA planarian flatworm) (STV 1.0 0.9091)) +(: cnet_isa_7bfd4156c8 (IsA planation erosion) (STV 1.0 0.9091)) +(: cnet_isa_a174e7c439 (IsA planchet disk) (STV 1.0 0.9091)) +(: cnet_isa_572cc0be76 (IsA planchette board) (STV 1.0 0.9091)) +(: cnet_isa_f80ceef5e5 (IsA planck_s_constant factor_of_proportionality) (STV 1.0 0.9091)) +(: cnet_isa_5277cc0ccb (IsA planck_s_law law) (STV 1.0 0.9091)) +(: cnet_isa_f3bcb5505b (IsA planck_s_radiation_law law) (STV 1.0 0.9091)) +(: cnet_isa_3c5fbdaec8 (IsA plane machine) (STV 1.0 0.9339)) +(: cnet_isa_281c7c96e4 (IsA plane vehicle) (STV 1.0 0.9339)) +(: cnet_isa_fe227a8b8c (IsA plane edge_tool) (STV 1.0 0.9091)) +(: cnet_isa_520b566f5f (IsA plane hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_0868c7efed (IsA plane power_tool) (STV 1.0 0.9091)) +(: cnet_isa_99ac4ac0a7 (IsA plane shape) (STV 1.0 0.9091)) +(: cnet_isa_1a321892a0 (IsA plane degree) (STV 1.0 0.9091)) +(: cnet_isa_ccbb18996a (IsA plane_angle angle) (STV 1.0 0.9091)) +(: cnet_isa_6d692b1926 (IsA plane_figure figure) (STV 1.0 0.9091)) +(: cnet_isa_167cc40268 (IsA plane_geometry geometry) (STV 1.0 0.9091)) +(: cnet_isa_8d37c392f0 (IsA plane_seat seat) (STV 1.0 0.9091)) +(: cnet_isa_184446e12b (IsA plane_table surveying_instrument) (STV 1.0 0.9091)) +(: cnet_isa_df916ae5f3 (IsA plane_ticket ticket) (STV 1.0 0.9091)) +(: cnet_isa_cb5c189ad2 (IsA plane_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_ef7234bed9 (IsA planera dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_28a7ff901d (IsA planet celestial_body) (STV 1.0 0.9091)) +(: cnet_isa_32a7807e8c (IsA planet large_object) (STV 1.0 0.9636)) +(: cnet_isa_3c26d745e1 (IsA planetarium building) (STV 1.0 0.9091)) +(: cnet_isa_08a39b1683 (IsA planetarium model) (STV 1.0 0.9091)) +(: cnet_isa_26d27021ca (IsA planetarium optical_device) (STV 1.0 0.9091)) +(: cnet_isa_79fd315eaf (IsA planetary_gear gear) (STV 1.0 0.9091)) +(: cnet_isa_d9e5c80616 (IsA planetary_nebula nebula) (STV 1.0 0.9091)) +(: cnet_isa_b39f21555e (IsA planetesimal celestial_body) (STV 1.0 0.9091)) +(: cnet_isa_eb0bd26bcb (IsA planetesimal_hypothesis scientific_theory) (STV 1.0 0.9091)) +(: cnet_isa_c6d9cf1a28 (IsA plangency timbre) (STV 1.0 0.9091)) +(: cnet_isa_e2733d3819 (IsA plank policy) (STV 1.0 0.9091)) +(: cnet_isa_0645f797b3 (IsA plank_bed bed) (STV 1.0 0.9091)) +(: cnet_isa_0119870ceb (IsA planking manual_labor) (STV 1.0 0.9091)) +(: cnet_isa_a38150387c (IsA planking covering) (STV 1.0 0.9091)) +(: cnet_isa_bb80660339 (IsA planking lumber) (STV 1.0 0.9091)) +(: cnet_isa_3609b97bc1 (IsA plankton organism) (STV 1.0 0.9091)) +(: cnet_isa_c45fb63dbe (IsA planktonic_algae phytoplankton) (STV 1.0 0.9091)) +(: cnet_isa_c068d41e12 (IsA planned_community residential_district) (STV 1.0 0.9091)) +(: cnet_isa_e55e5630fb (IsA planner notebook) (STV 1.0 0.9091)) +(: cnet_isa_49342e4075 (IsA planner person) (STV 1.0 0.9091)) +(: cnet_isa_496d263267 (IsA planning design) (STV 1.0 0.9091)) +(: cnet_isa_60e287a772 (IsA planning preparation) (STV 1.0 0.9091)) +(: cnet_isa_08e059894f (IsA planning thinking) (STV 1.0 0.9091)) +(: cnet_isa_f8d14b4783 (IsA planning_commission committee) (STV 1.0 0.9091)) +(: cnet_isa_54b8257783 (IsA planococcus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_c8fbdfbea8 (IsA planographic_printing printing) (STV 1.0 0.9091)) +(: cnet_isa_9898b67304 (IsA plant organism) (STV 1.0 0.9339)) +(: cnet_isa_9aab1e930b (IsA plant building_complex) (STV 1.0 0.9091)) +(: cnet_isa_dffa9ff8c9 (IsA plant contrivance) (STV 1.0 0.9091)) +(: cnet_isa_7a9fe7d655 (IsA plant actor) (STV 1.0 0.9091)) +(: cnet_isa_85c0c4a3ed (IsA plant_cell cell) (STV 1.0 0.9091)) +(: cnet_isa_4f5d0778f8 (IsA plant_closing closure) (STV 1.0 0.9091)) +(: cnet_isa_90036901a2 (IsA plant_department business_department) (STV 1.0 0.9091)) +(: cnet_isa_236eb1273e (IsA plant_disease disease) (STV 1.0 0.9091)) +(: cnet_isa_d3b31b2b2d (IsA plant_family family) (STV 1.0 0.9091)) +(: cnet_isa_72ecd724df (IsA plant_fiber natural_fiber) (STV 1.0 0.9091)) +(: cnet_isa_3437b3b1ef (IsA plant_fiber plant_product) (STV 1.0 0.9091)) +(: cnet_isa_ab730e53b1 (IsA plant_genus genus) (STV 1.0 0.9091)) +(: cnet_isa_c3a60c9a3a (IsA plant_hopper homopterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_55926fba1e (IsA plant_louse homopterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_65e6561343 (IsA plant_material material) (STV 1.0 0.9091)) +(: cnet_isa_a9e402380b (IsA plant_order order) (STV 1.0 0.9091)) +(: cnet_isa_d6f9053dbc (IsA plant_organ plant_part) (STV 1.0 0.9091)) +(: cnet_isa_b068d1a879 (IsA plant_part natural_object) (STV 1.0 0.9091)) +(: cnet_isa_d66afdf43f (IsA plant_process process) (STV 1.0 0.9091)) +(: cnet_isa_8a540bcc33 (IsA plant_product plant_material) (STV 1.0 0.9091)) +(: cnet_isa_77e9b52e54 (IsA plant_tissue plant_part) (STV 1.0 0.9091)) +(: cnet_isa_2fc56d5c0d (IsA plant_toxin toxin) (STV 1.0 0.9091)) +(: cnet_isa_1cf1340b46 (IsA plant_virus virus) (STV 1.0 0.9091)) +(: cnet_isa_5a9f18403d (IsA plantae kingdom) (STV 1.0 0.9091)) +(: cnet_isa_09cdb63b41 (IsA plantagenet dynasty) (STV 1.0 0.9091)) +(: cnet_isa_f9556e5287 (IsA plantagenet royalty) (STV 1.0 0.9091)) +(: cnet_isa_26c4e8ae0e (IsA plantaginaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_a74c6f66e9 (IsA plantaginale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_e8c56c1194 (IsA plantago dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d5aff70e7b (IsA plantain vegetable) (STV 1.0 0.9091)) +(: cnet_isa_81278239cf (IsA plantain banana) (STV 1.0 0.9091)) +(: cnet_isa_402bb7c764 (IsA plantain herb) (STV 1.0 0.9091)) +(: cnet_isa_34e1ac39f7 (IsA plantain_leaved_pussytoe cat_s_foot) (STV 1.0 0.9091)) +(: cnet_isa_ce956238f8 (IsA plantain_lily herb) (STV 1.0 0.9091)) +(: cnet_isa_0123f9d2b7 (IsA plantar_reflex reflex) (STV 1.0 0.9091)) +(: cnet_isa_34a0ac7a4f (IsA plantar_wart wart) (STV 1.0 0.9091)) +(: cnet_isa_bea25f0e31 (IsA plantation colony) (STV 1.0 0.9091)) +(: cnet_isa_0fb1f1df8a (IsA plantation estate) (STV 1.0 0.9091)) +(: cnet_isa_7286c6fe77 (IsA planter_s_punch cocktail) (STV 1.0 0.9091)) +(: cnet_isa_7f79f9bc49 (IsA planter pot) (STV 1.0 0.9091)) +(: cnet_isa_defba471c8 (IsA planter farmer) (STV 1.0 0.9091)) +(: cnet_isa_5b7209f643 (IsA planter worker) (STV 1.0 0.9091)) +(: cnet_isa_e037899556 (IsA plantigrade_mammal placental) (STV 1.0 0.9091)) +(: cnet_isa_edf4dce6cd (IsA planting farming) (STV 1.0 0.9091)) +(: cnet_isa_80a4c3e496 (IsA planting placement) (STV 1.0 0.9091)) +(: cnet_isa_c2f3b709ec (IsA planting collection) (STV 1.0 0.9091)) +(: cnet_isa_f7e7713d00 (IsA plantlet plant) (STV 1.0 0.9091)) +(: cnet_isa_20162df4ca (IsA plantlike_flagellate protozoan) (STV 1.0 0.9091)) +(: cnet_isa_a18fca296d (IsA plant in_greenhous) (STV 1.0 0.9091)) +(: cnet_isa_28448ed22c (IsA plant living_entity) (STV 1.0 0.9091)) +(: cnet_isa_ef73840521 (IsA planula hydrozoan) (STV 1.0 0.9091)) +(: cnet_isa_7f915c1240 (IsA plaque spot) (STV 1.0 0.9091)) +(: cnet_isa_2e31ff7e6d (IsA plasma state_of_matter) (STV 1.0 0.9091)) +(: cnet_isa_868d63a70c (IsA plasma chalcedony) (STV 1.0 0.9091)) +(: cnet_isa_ee5360a5b6 (IsA plasma_cell lymphocyte) (STV 1.0 0.9091)) +(: cnet_isa_acee3802c0 (IsA plasma_physic physic) (STV 1.0 0.9091)) +(: cnet_isa_522cd58bf4 (IsA plasma_protein protein) (STV 1.0 0.9091)) +(: cnet_isa_55012bac7e (IsA plasma_thromboplastin_antecedent coagulation_factor) (STV 1.0 0.9091)) +(: cnet_isa_035209fe64 (IsA plasmablast plasma_cell) (STV 1.0 0.9091)) +(: cnet_isa_dcb5c400fb (IsA plasmacytoma tumor) (STV 1.0 0.9091)) +(: cnet_isa_f1be0a6774 (IsA plasmapheresis apheresis) (STV 1.0 0.9091)) +(: cnet_isa_97b86864e4 (IsA plasmid inclusion_body) (STV 1.0 0.9091)) +(: cnet_isa_c24a9744f6 (IsA plasmin enzyme) (STV 1.0 0.9091)) +(: cnet_isa_87746fd09d (IsA plasminogen plasmin) (STV 1.0 0.9091)) +(: cnet_isa_7904880f0b (IsA plasminogen_activator protease) (STV 1.0 0.9091)) +(: cnet_isa_e07ea7f0c2 (IsA plasmodiidae protoctist_family) (STV 1.0 0.9091)) +(: cnet_isa_66be49004a (IsA plasmodiophora fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_54377c9106 (IsA plasmodiophoraceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_b22979578c (IsA plasmodium cytoplasm) (STV 1.0 0.9091)) +(: cnet_isa_52b2483d3f (IsA plasmodium sporozoan) (STV 1.0 0.9091)) +(: cnet_isa_b51baa9b63 (IsA plaster adhesive_tape) (STV 1.0 0.9091)) +(: cnet_isa_ef7f2314df (IsA plaster surface) (STV 1.0 0.9091)) +(: cnet_isa_7fb342083d (IsA plaster covering_material) (STV 1.0 0.9091)) +(: cnet_isa_457d468ab2 (IsA plaster mixture) (STV 1.0 0.9091)) +(: cnet_isa_59d47a89bc (IsA plaster_of_paris calcium_sulphate) (STV 1.0 0.9091)) +(: cnet_isa_ca8858d62c (IsA plaster_saint good_person) (STV 1.0 0.9091)) +(: cnet_isa_8131bfc742 (IsA plasterboard wallboard) (STV 1.0 0.9091)) +(: cnet_isa_64b97d75b4 (IsA plasterer skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_59e69c65ed (IsA plastering application) (STV 1.0 0.9091)) +(: cnet_isa_e83dcd728f (IsA plastering_trowel trowel) (STV 1.0 0.9091)) +(: cnet_isa_800b74bc15 (IsA plastic invention) (STV 1.0 0.9091)) +(: cnet_isa_896e45b794 (IsA plastic man_made_product) (STV 1.0 0.9339)) +(: cnet_isa_2c215863c4 (IsA plastic material) (STV 1.0 0.9636)) +(: cnet_isa_b4846e61ac (IsA plastic solid) (STV 1.0 0.9091)) +(: cnet_isa_0bbfc4c036 (IsA plastic_art art) (STV 1.0 0.9091)) +(: cnet_isa_01d25c2a18 (IsA plastic_bag bag) (STV 1.0 0.9091)) +(: cnet_isa_629f460aae (IsA plastic_bomb bomb) (STV 1.0 0.9091)) +(: cnet_isa_74740eca49 (IsA plastic_explosive explosive_compound) (STV 1.0 0.9091)) +(: cnet_isa_21d61e98a2 (IsA plastic_laminate laminate) (STV 1.0 0.9091)) +(: cnet_isa_053df34f2e (IsA plastic_surgery cosmetic_reconstruction_of_body) (STV 1.0 0.9091)) +(: cnet_isa_9e2703899e (IsA plastic_surgery operation) (STV 1.0 0.9091)) +(: cnet_isa_a815eaa3aa (IsA plastic_wrap wrapping) (STV 1.0 0.9091)) +(: cnet_isa_5929959146 (IsA plasticizer softener) (STV 1.0 0.9091)) +(: cnet_isa_9ab3511eef (IsA plastic_industry industry) (STV 1.0 0.9091)) +(: cnet_isa_9bbf83587b (IsA plastid granule) (STV 1.0 0.9091)) +(: cnet_isa_05c24e61ca (IsA plastination preservation) (STV 1.0 0.9091)) +(: cnet_isa_0a7f49aaaa (IsA plastron breastplate) (STV 1.0 0.9091)) +(: cnet_isa_9b360fe9fb (IsA plastron pad) (STV 1.0 0.9091)) +(: cnet_isa_93ea4f780a (IsA plastron shirtfront) (STV 1.0 0.9091)) +(: cnet_isa_088c2cab01 (IsA plastron exoskeleton) (STV 1.0 0.9091)) +(: cnet_isa_8a3c79b652 (IsA plat map) (STV 1.0 0.9091)) +(: cnet_isa_c537fd9dcd (IsA platalea bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_a3ea27c7f0 (IsA plataleidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_51add642a0 (IsA platanaceae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_25c0d882b9 (IsA platanistidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_398a653f82 (IsA platanthera monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2af13e2951 (IsA platanus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b541603c9a (IsA plate dish) (STV 1.0 0.9091)) +(: cnet_isa_ed63931694 (IsA plate anode) (STV 1.0 0.9091)) +(: cnet_isa_a0d6be53df (IsA plate flatware) (STV 1.0 0.9091)) +(: cnet_isa_c61f5d2118 (IsA plate illustration) (STV 1.0 0.9091)) +(: cnet_isa_404955165c (IsA plate receptacle) (STV 1.0 0.9091)) +(: cnet_isa_3f4a77719d (IsA plate sheet) (STV 1.0 0.9091)) +(: cnet_isa_537f6fe8f4 (IsA plate shield) (STV 1.0 0.9091)) +(: cnet_isa_fabd7cf00f (IsA plate structural_member) (STV 1.0 0.9091)) +(: cnet_isa_34def629ed (IsA plate structure) (STV 1.0 0.9091)) +(: cnet_isa_1672ee39a5 (IsA plate cut_of_beef) (STV 1.0 0.9091)) +(: cnet_isa_0cc1dacc14 (IsA plate entree) (STV 1.0 0.9091)) +(: cnet_isa_2df1b3b7a9 (IsA plate crust) (STV 1.0 0.9091)) +(: cnet_isa_89060684ae (IsA plate containerful) (STV 1.0 0.9091)) +(: cnet_isa_bb78f707e1 (IsA plate_glass sheet) (STV 1.0 0.9091)) +(: cnet_isa_4e2cfe7ad0 (IsA plate_iron plate) (STV 1.0 0.9091)) +(: cnet_isa_ea801bbc7c (IsA plate_rack rack) (STV 1.0 0.9091)) +(: cnet_isa_da2bfa6fb9 (IsA plate_rail rail) (STV 1.0 0.9091)) +(: cnet_isa_eb93df4958 (IsA plateau_striped_whiptail whiptail) (STV 1.0 0.9091)) +(: cnet_isa_c88c232947 (IsA platelayer laborer) (STV 1.0 0.9091)) +(: cnet_isa_62899dc392 (IsA platelet protoplasm) (STV 1.0 0.9091)) +(: cnet_isa_971d5e003c (IsA plateletpheresis apheresis) (STV 1.0 0.9091)) +(: cnet_isa_a816290f5c (IsA platen plate) (STV 1.0 0.9091)) +(: cnet_isa_6c9ef945e3 (IsA platen roller) (STV 1.0 0.9091)) +(: cnet_isa_458cdeaf64 (IsA platen table) (STV 1.0 0.9091)) +(: cnet_isa_181d52c3ad (IsA plater skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_36fd0c8fe1 (IsA platform computer_system) (STV 1.0 0.9091)) +(: cnet_isa_8e1e1cd9b3 (IsA platform horizontal_surface) (STV 1.0 0.9091)) +(: cnet_isa_2b1c9a2476 (IsA platform document) (STV 1.0 0.9091)) +(: cnet_isa_ad0a5741e1 (IsA platform structure) (STV 1.0 0.9091)) +(: cnet_isa_2d33cc4128 (IsA platform_bed bed) (STV 1.0 0.9091)) +(: cnet_isa_ba1a530efd (IsA platform_rocker rocking_chair) (STV 1.0 0.9091)) +(: cnet_isa_7951ac8c29 (IsA platichthy fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_c08dd25243 (IsA plating application) (STV 1.0 0.9091)) +(: cnet_isa_409b81d41c (IsA plating coating) (STV 1.0 0.9091)) +(: cnet_isa_e7104df98f (IsA platinum noble_metal) (STV 1.0 0.9091)) +(: cnet_isa_9dc183240d (IsA platinum_black catalyst) (STV 1.0 0.9091)) +(: cnet_isa_afbc3f5be2 (IsA platinum_blonde blond) (STV 1.0 0.9091)) +(: cnet_isa_0fccd016e5 (IsA platitudinarian bore) (STV 1.0 0.9091)) +(: cnet_isa_eb71bd1d20 (IsA plato_s_academy academy) (STV 1.0 0.9091)) +(: cnet_isa_a5c66bbbbd (IsA platonism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_47333bd390 (IsA platonist advocate) (STV 1.0 0.9091)) +(: cnet_isa_a1ff2a682c (IsA platoon police_squad) (STV 1.0 0.9091)) +(: cnet_isa_542cc67b39 (IsA platoon social_group) (STV 1.0 0.9091)) +(: cnet_isa_924cb328fc (IsA platoon army_unit) (STV 1.0 0.9091)) +(: cnet_isa_b583eed7ed (IsA platte_river_penstemon wildflower) (STV 1.0 0.9091)) +(: cnet_isa_f54b948c6a (IsA platter flatware) (STV 1.0 0.9091)) +(: cnet_isa_0e3d747652 (IsA platy topminnow) (STV 1.0 0.9091)) +(: cnet_isa_ad4e359fcb (IsA platycephalidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_470c2c7b29 (IsA platycerium fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_ce0018d5de (IsA platyctenea animal_order) (STV 1.0 0.9091)) +(: cnet_isa_ca9c62f260 (IsA platyctenean ctenophore) (STV 1.0 0.9091)) +(: cnet_isa_09aa5615df (IsA platyhelminthe phylum) (STV 1.0 0.9091)) +(: cnet_isa_08ad8f000c (IsA platylobium rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7b4d927a2b (IsA platymiscium rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b5d7adfece (IsA platypoecilus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_96105e2f03 (IsA platypus monotreme) (STV 1.0 0.9091)) +(: cnet_isa_7f54b6a8c3 (IsA platyrrhini mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_8aba46d606 (IsA platysma facial_muscle) (STV 1.0 0.9091)) +(: cnet_isa_dd5c8194b0 (IsA platystemon dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e41c6deb36 (IsA plausibility credibility) (STV 1.0 0.9091)) +(: cnet_isa_7659c92f5f (IsA plautus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_33f06aec9a (IsA play child_s_way_of_learning) (STV 1.0 0.9091)) +(: cnet_isa_9ecfeac831 (IsA play action) (STV 1.0 0.9091)) +(: cnet_isa_4a6329f186 (IsA play diversion) (STV 1.0 0.9091)) +(: cnet_isa_5d17fd7191 (IsA play plan_of_action) (STV 1.0 0.9091)) +(: cnet_isa_924c04978c (IsA play use) (STV 1.0 0.9091)) +(: cnet_isa_131473e811 (IsA play show) (STV 1.0 0.9091)) +(: cnet_isa_dee245c7d7 (IsA play dramatic_composition) (STV 1.0 0.9091)) +(: cnet_isa_e5b146abd4 (IsA play_reading performance) (STV 1.0 0.9091)) +(: cnet_isa_6552ae8c8e (IsA play_therapy psychotherapy) (STV 1.0 0.9091)) +(: cnet_isa_f107645b18 (IsA playacting cultural_activity) (STV 1.0 0.9091)) +(: cnet_isa_a6f73c74c5 (IsA playback sound_reproduction) (STV 1.0 0.9091)) +(: cnet_isa_397b5213ef (IsA playback electronic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_e698444abd (IsA playbill bill) (STV 1.0 0.9091)) +(: cnet_isa_198f26e294 (IsA playbill program) (STV 1.0 0.9091)) +(: cnet_isa_859e70de62 (IsA playbook scheme) (STV 1.0 0.9091)) +(: cnet_isa_e9629b49be (IsA playbook book) (STV 1.0 0.9091)) +(: cnet_isa_e312743f41 (IsA playbook notebook) (STV 1.0 0.9091)) +(: cnet_isa_66d8907524 (IsA playbox box) (STV 1.0 0.9091)) +(: cnet_isa_7716b6f306 (IsA playboy hedonist) (STV 1.0 0.9091)) +(: cnet_isa_a8f18328c9 (IsA player contestant) (STV 1.0 0.9091)) +(: cnet_isa_ba0bff0df1 (IsA player person) (STV 1.0 0.9091)) +(: cnet_isa_a71b8c6c5d (IsA playfulness frivolity) (STV 1.0 0.9091)) +(: cnet_isa_40b95beae6 (IsA playgoer spectator) (STV 1.0 0.9091)) +(: cnet_isa_9c6c1bc585 (IsA playground yard) (STV 1.0 0.9091)) +(: cnet_isa_fac18fcc27 (IsA playhouse plaything) (STV 1.0 0.9091)) +(: cnet_isa_e8d716db8c (IsA playing way_to_learn_social_skill) (STV 1.0 0.9339)) +(: cnet_isa_e6f87aa94a (IsA playing action) (STV 1.0 0.9091)) +(: cnet_isa_0d89324572 (IsA playing musical_performance) (STV 1.0 0.9091)) +(: cnet_isa_79f0e14b75 (IsA playing_card card) (STV 1.0 0.9091)) +(: cnet_isa_7822646378 (IsA playing_card activity) (STV 1.0 0.9339)) +(: cnet_isa_01e9f26e94 (IsA playing_cricket intelligent_agent_activity) (STV 1.0 0.9091)) +(: cnet_isa_73f2e9c9d1 (IsA playing_cricket playing_game) (STV 1.0 0.9091)) +(: cnet_isa_e9de0286ec (IsA playing_dart hobby) (STV 1.0 0.9091)) +(: cnet_isa_5b7a449575 (IsA playing_field tract) (STV 1.0 0.9091)) +(: cnet_isa_7118017423 (IsA playing_field circumstance) (STV 1.0 0.9091)) +(: cnet_isa_eedafcfa9d (IsA playing_game activity) (STV 1.0 0.9091)) +(: cnet_isa_3d087e5d0d (IsA playing_period measure) (STV 1.0 0.9091)) +(: cnet_isa_72cab6e4c3 (IsA playlet play) (STV 1.0 0.9091)) +(: cnet_isa_1adad76723 (IsA playlist list) (STV 1.0 0.9091)) +(: cnet_isa_8b99796da8 (IsA playmaker player) (STV 1.0 0.9091)) +(: cnet_isa_a5df1c4453 (IsA playmate companion) (STV 1.0 0.9091)) +(: cnet_isa_55967f560f (IsA playoff contest) (STV 1.0 0.9091)) +(: cnet_isa_1aea01f27a (IsA playoff_game game) (STV 1.0 0.9091)) +(: cnet_isa_b57577cbf7 (IsA playpen enclosure) (STV 1.0 0.9091)) +(: cnet_isa_5d7ce1aae0 (IsA playschool preschool) (STV 1.0 0.9091)) +(: cnet_isa_96b3585781 (IsA playsuit outfit) (STV 1.0 0.9091)) +(: cnet_isa_2521afc572 (IsA plaything artifact) (STV 1.0 0.9091)) +(: cnet_isa_44d4d03e7c (IsA playtime leisure) (STV 1.0 0.9091)) +(: cnet_isa_d5ee4b6675 (IsA plaza mercantile_establishment) (STV 1.0 0.9091)) +(: cnet_isa_9fccb646f6 (IsA plaza public_square) (STV 1.0 0.9091)) +(: cnet_isa_4278f56ac1 (IsA plea answer) (STV 1.0 0.9091)) +(: cnet_isa_78c05defed (IsA plea due_process) (STV 1.0 0.9091)) +(: cnet_isa_c3b4c6a1ab (IsA plea_bargain bargaining) (STV 1.0 0.9091)) +(: cnet_isa_2bd705af2a (IsA pleading statement) (STV 1.0 0.9091)) +(: cnet_isa_8f01ca695d (IsA pleasance retreat) (STV 1.0 0.9091)) +(: cnet_isa_049a02ef36 (IsA pleasantness quality) (STV 1.0 0.9091)) +(: cnet_isa_233096d5d5 (IsA pleasantness pleasure) (STV 1.0 0.9091)) +(: cnet_isa_49321bbdeb (IsA pleasantry jest) (STV 1.0 0.9091)) +(: cnet_isa_90829fa3cf (IsA pleaser entertainer) (STV 1.0 0.9091)) +(: cnet_isa_992328ae1d (IsA pleasing gratification) (STV 1.0 0.9091)) +(: cnet_isa_08acce8a58 (IsA pleasingness palatability) (STV 1.0 0.9091)) +(: cnet_isa_a63b07d6c2 (IsA pleasingness pleasantness) (STV 1.0 0.9091)) +(: cnet_isa_eea020b022 (IsA pleasure activity) (STV 1.0 0.9091)) +(: cnet_isa_db15e7423f (IsA pleasure sexual_activity) (STV 1.0 0.9091)) +(: cnet_isa_8f588c6a13 (IsA pleasure choice) (STV 1.0 0.9091)) +(: cnet_isa_a952f18d08 (IsA pleasure feeling) (STV 1.0 0.9091)) +(: cnet_isa_74095820d2 (IsA pleasure_principle principle) (STV 1.0 0.9091)) +(: cnet_isa_593126dad0 (IsA pleat fold) (STV 1.0 0.9091)) +(: cnet_isa_ce8c427049 (IsA plebeian commoner) (STV 1.0 0.9091)) +(: cnet_isa_d04fcfce9b (IsA plebiscite vote) (STV 1.0 0.9091)) +(: cnet_isa_92b32007d1 (IsA plecoptera animal_order) (STV 1.0 0.9091)) +(: cnet_isa_5ff4830eb3 (IsA plecotus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_48d3e710a6 (IsA plectania fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_b2410aecf3 (IsA plectognath spiny_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_96b5426a91 (IsA plectognathi animal_order) (STV 1.0 0.9091)) +(: cnet_isa_960d7354f7 (IsA plectomycete class) (STV 1.0 0.9091)) +(: cnet_isa_27b8c5d030 (IsA plectophera ephemerid) (STV 1.0 0.9091)) +(: cnet_isa_63ad7a3ead (IsA plectorrhiza monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_442cbbf9e8 (IsA plectranthus houseplant) (STV 1.0 0.9091)) +(: cnet_isa_0c99557b9c (IsA plectrophenax bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_97d6bb3a79 (IsA pledge drink) (STV 1.0 0.9091)) +(: cnet_isa_b44324564e (IsA pledge member) (STV 1.0 0.9091)) +(: cnet_isa_fb4f8c125b (IsA pledge security_interest) (STV 1.0 0.9091)) +(: cnet_isa_d1bbd73a2e (IsA pledge_taker volunteer) (STV 1.0 0.9091)) +(: cnet_isa_efc177fb87 (IsA pledgee adult) (STV 1.0 0.9091)) +(: cnet_isa_23e25d10e4 (IsA pledger adult) (STV 1.0 0.9091)) +(: cnet_isa_9ab1df1c45 (IsA pleiade nymph) (STV 1.0 0.9091)) +(: cnet_isa_98bd0738e8 (IsA pleione monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_19c7e71e3b (IsA pleiospilo caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f6fe1d71fd (IsA plenipotentiary diplomat) (STV 1.0 0.9091)) +(: cnet_isa_f0d9f055ce (IsA plenty abundance) (STV 1.0 0.9091)) +(: cnet_isa_c03ed3af1a (IsA plenum enclosure) (STV 1.0 0.9091)) +(: cnet_isa_5ed51d0029 (IsA plenum meeting) (STV 1.0 0.9091)) +(: cnet_isa_76a47d66cf (IsA pleochroism optical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_c5f2b184a0 (IsA pleomorphic_rhabdomyosarcoma rhabdomyosarcoma) (STV 1.0 0.9091)) +(: cnet_isa_9559436fe5 (IsA pleomorphism organic_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_00cd17934c (IsA pleonasm verboseness) (STV 1.0 0.9091)) +(: cnet_isa_cee07eed42 (IsA plesianthropus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_917331f8d2 (IsA plesiosaur archosaur) (STV 1.0 0.9091)) +(: cnet_isa_6b0825a424 (IsA plesiosauria animal_order) (STV 1.0 0.9091)) +(: cnet_isa_66e3b0a8a1 (IsA plethodon amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_6b592b3b94 (IsA plethodontidae amphibian_family) (STV 1.0 0.9091)) +(: cnet_isa_908117515d (IsA plethysmograph measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_5d7da4473b (IsA pleura serous_membrane) (STV 1.0 0.9091)) +(: cnet_isa_911f5de51e (IsA pleural_cavity cavity) (STV 1.0 0.9091)) +(: cnet_isa_2199bb2ab8 (IsA pleural_space space) (STV 1.0 0.9091)) +(: cnet_isa_1a0c8646b3 (IsA pleurisy inflammatory_disease) (STV 1.0 0.9091)) +(: cnet_isa_59ca98b788 (IsA pleurobrachia ctenophore_genus) (STV 1.0 0.9091)) +(: cnet_isa_a464d3bf64 (IsA pleurobrachiidae ctenophore_family) (STV 1.0 0.9091)) +(: cnet_isa_e9ce0b0e7c (IsA pleurocarp moss) (STV 1.0 0.9091)) +(: cnet_isa_fe48b9b535 (IsA pleurodont animal) (STV 1.0 0.9091)) +(: cnet_isa_0e5d802a50 (IsA pleurodynia pain) (STV 1.0 0.9091)) +(: cnet_isa_5e4d086329 (IsA pleuronecte fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_db9d2ce01d (IsA pleuronectidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_7a4169963a (IsA pleuropneumonia pleurisy) (STV 1.0 0.9091)) +(: cnet_isa_058f18d994 (IsA pleuropneumonia pneumonia) (STV 1.0 0.9091)) +(: cnet_isa_e29ae950f1 (IsA pleuropneumonialike_organism mycoplasma) (STV 1.0 0.9091)) +(: cnet_isa_c4275fc5a3 (IsA pleurosorus fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_3b1fff079f (IsA pleurothallis orchid) (STV 1.0 0.9091)) +(: cnet_isa_1f8a32b060 (IsA pleurotus fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_5413da6231 (IsA pleximeter plate) (STV 1.0 0.9091)) +(: cnet_isa_be66ba69a1 (IsA plexor hammer) (STV 1.0 0.9091)) +(: cnet_isa_5823f4695c (IsA plexus structure) (STV 1.0 0.9091)) +(: cnet_isa_0c2c4a326c (IsA plexus_dentalis nerve_plexus) (STV 1.0 0.9091)) +(: cnet_isa_0c7ea046ad (IsA pliability adaptability) (STV 1.0 0.9091)) +(: cnet_isa_ec0d17db16 (IsA pliancy bendability) (STV 1.0 0.9091)) +(: cnet_isa_677dba380e (IsA plication fold) (STV 1.0 0.9091)) +(: cnet_isa_eb224276ae (IsA plicatoperipatus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_78b0ef6ac3 (IsA plicatoperipatus_jamaicensis onychophoran) (STV 1.0 0.9091)) +(: cnet_isa_2c8ecb06f4 (IsA plier worker) (STV 1.0 0.9091)) +(: cnet_isa_b846bd685b (IsA plier compound_lever) (STV 1.0 0.9091)) +(: cnet_isa_73488eb44c (IsA plier hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_677950e4fd (IsA plight assurance) (STV 1.0 0.9091)) +(: cnet_isa_a20b101951 (IsA plimsoll gym_shoe) (STV 1.0 0.9091)) +(: cnet_isa_564d427df0 (IsA plinian_eruption volcanic_eruption) (STV 1.0 0.9091)) +(: cnet_isa_fe4f5236a2 (IsA ploce repetition) (STV 1.0 0.9091)) +(: cnet_isa_90182ff8d2 (IsA ploceidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_e159fed07c (IsA ploceus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_3f1794e380 (IsA plodder dawdler) (STV 1.0 0.9091)) +(: cnet_isa_ea539e1da1 (IsA plodder hack) (STV 1.0 0.9091)) +(: cnet_isa_5b68d685b1 (IsA plodding walk) (STV 1.0 0.9091)) +(: cnet_isa_3f5da65570 (IsA plonk noise) (STV 1.0 0.9091)) +(: cnet_isa_2b66223a31 (IsA plonk wine) (STV 1.0 0.9091)) +(: cnet_isa_58e896086f (IsA plop noise) (STV 1.0 0.9091)) +(: cnet_isa_bec16fc7cc (IsA plosion release) (STV 1.0 0.9091)) +(: cnet_isa_1507135f90 (IsA plot scheme) (STV 1.0 0.9091)) +(: cnet_isa_ddfca64979 (IsA plot chart) (STV 1.0 0.9091)) +(: cnet_isa_8ecca285dc (IsA plot story) (STV 1.0 0.9091)) +(: cnet_isa_592014af42 (IsA plot tract) (STV 1.0 0.9091)) +(: cnet_isa_c8aefb580b (IsA plot_element component) (STV 1.0 0.9091)) +(: cnet_isa_b672b1b8ab (IsA plott_hound hound) (STV 1.0 0.9091)) +(: cnet_isa_3bb15cadb1 (IsA plotter instrument) (STV 1.0 0.9091)) +(: cnet_isa_952d065c35 (IsA plotter clerk) (STV 1.0 0.9091)) +(: cnet_isa_bd49613b0b (IsA ploughman_s_lunch meal) (STV 1.0 0.9091)) +(: cnet_isa_3b455ce443 (IsA plover shorebird) (STV 1.0 0.9091)) +(: cnet_isa_0ed6b237a3 (IsA plow tool) (STV 1.0 0.9091)) +(: cnet_isa_9cba5dbc92 (IsA plow_horse workhorse) (STV 1.0 0.9091)) +(: cnet_isa_7d6c3c8d7c (IsA plowboy male_child) (STV 1.0 0.9091)) +(: cnet_isa_57b0dc41db (IsA plowing tilling) (STV 1.0 0.9091)) +(: cnet_isa_da08f23b49 (IsA plowman farmhand) (STV 1.0 0.9091)) +(: cnet_isa_0f60675420 (IsA plowshare wedge) (STV 1.0 0.9091)) +(: cnet_isa_930f372f00 (IsA plowwright wright) (STV 1.0 0.9091)) +(: cnet_isa_2b3d1b1c62 (IsA ploy maneuver) (STV 1.0 0.9091)) +(: cnet_isa_8c9de7279e (IsA pluck pull) (STV 1.0 0.9091)) +(: cnet_isa_695fb6ad28 (IsA plug blockage) (STV 1.0 0.9091)) +(: cnet_isa_393984eb64 (IsA plug electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_8c59420baa (IsA plug_fuse fuse) (STV 1.0 0.9091)) +(: cnet_isa_8a0af9feff (IsA plug_in software) (STV 1.0 0.9091)) +(: cnet_isa_fd9fa1fa6d (IsA plughole hole) (STV 1.0 0.9091)) +(: cnet_isa_3960487658 (IsA plum position) (STV 1.0 0.9091)) +(: cnet_isa_d0f8529add (IsA plum drupe) (STV 1.0 0.9091)) +(: cnet_isa_bf028da615 (IsA plum edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_99a285dc73 (IsA plum fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_0cf5a10b0d (IsA plum_fruited_yew conifer) (STV 1.0 0.9091)) +(: cnet_isa_901090f11c (IsA plum_pudding pudding) (STV 1.0 0.9091)) +(: cnet_isa_e8c0cf82c2 (IsA plum_sauce sauce) (STV 1.0 0.9091)) +(: cnet_isa_30ff694c53 (IsA plum_tomato cherry_tomato) (STV 1.0 0.9091)) +(: cnet_isa_4415d89a3d (IsA plum_yew conifer) (STV 1.0 0.9091)) +(: cnet_isa_f00dfdcf49 (IsA plumb_bob bob) (STV 1.0 0.9091)) +(: cnet_isa_685a436ebb (IsA plumb_level carpenter_s_level) (STV 1.0 0.9091)) +(: cnet_isa_65ed5c6095 (IsA plumb_line cord) (STV 1.0 0.9091)) +(: cnet_isa_126b28d768 (IsA plumb_rule plumb_line) (STV 1.0 0.9091)) +(: cnet_isa_e8776a106e (IsA plumbaginaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_a50cc7e0b1 (IsA plumbaginale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_ca80ca40d2 (IsA plumbago herb) (STV 1.0 0.9091)) +(: cnet_isa_6a10a0904a (IsA plumber_s_snake hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_838fb7bb37 (IsA plumber_s_snake hydra) (STV 1.0 0.9091)) +(: cnet_isa_4e7142976e (IsA plumber craftsman) (STV 1.0 0.9091)) +(: cnet_isa_5d49933a2c (IsA plumbing occupation) (STV 1.0 0.9091)) +(: cnet_isa_ee10045940 (IsA plumbing system) (STV 1.0 0.9091)) +(: cnet_isa_c2c9391480 (IsA plumbing trade) (STV 1.0 0.9091)) +(: cnet_isa_2d048474dd (IsA plumbing utility) (STV 1.0 0.9091)) +(: cnet_isa_bf47542d30 (IsA plumbing_fixture fixture) (STV 1.0 0.9091)) +(: cnet_isa_2aceaefe70 (IsA plumcot edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_53b1621dd4 (IsA plumcot fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_38d4890df1 (IsA plume adornment) (STV 1.0 0.9091)) +(: cnet_isa_3253214c92 (IsA plume shape) (STV 1.0 0.9091)) +(: cnet_isa_89d6598b3b (IsA plume_grass grass) (STV 1.0 0.9091)) +(: cnet_isa_ec0d31af64 (IsA plume_poppy poppy) (STV 1.0 0.9091)) +(: cnet_isa_415c85abea (IsA plume_thistle thistle) (STV 1.0 0.9091)) +(: cnet_isa_a2a7938690 (IsA plumed_scorpionfish scorpionfish) (STV 1.0 0.9091)) +(: cnet_isa_2c6b7af1c5 (IsA plumed_tussock grass) (STV 1.0 0.9091)) +(: cnet_isa_acf0bb3f45 (IsA plumeria dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_57868e82b9 (IsA plump noise) (STV 1.0 0.9091)) +(: cnet_isa_43ac8933c4 (IsA plumpness fleshiness) (STV 1.0 0.9091)) +(: cnet_isa_0557c4b8ae (IsA plum fruit) (STV 1.0 0.9339)) +(: cnet_isa_291b4831f4 (IsA plumule down) (STV 1.0 0.9091)) +(: cnet_isa_c6d2224690 (IsA plunderage embezzlement) (STV 1.0 0.9091)) +(: cnet_isa_93f4499530 (IsA plunderer thief) (STV 1.0 0.9091)) +(: cnet_isa_10d231b75d (IsA plundering aggression) (STV 1.0 0.9091)) +(: cnet_isa_136209db34 (IsA plunge drop) (STV 1.0 0.9091)) +(: cnet_isa_a0739e3f18 (IsA plunger tool_to_used_carefully) (STV 1.0 0.9339)) +(: cnet_isa_a76222f745 (IsA plunger hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_8806f2776d (IsA plunk hit) (STV 1.0 0.9091)) +(: cnet_isa_a1ebe1b4f4 (IsA plunk sound) (STV 1.0 0.9091)) +(: cnet_isa_7862f3cb98 (IsA plural form) (STV 1.0 0.9091)) +(: cnet_isa_9023147403 (IsA plural_of_cowboy cowboy) (STV 1.0 0.9091)) +(: cnet_isa_7ca415e359 (IsA pluralisation inflection) (STV 1.0 0.9091)) +(: cnet_isa_db446171b1 (IsA pluralism practice) (STV 1.0 0.9091)) +(: cnet_isa_ed3bbae5be (IsA pluralism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_9e903528b0 (IsA pluralism social_organization) (STV 1.0 0.9091)) +(: cnet_isa_d3e2855ebe (IsA pluralist cleric) (STV 1.0 0.9091)) +(: cnet_isa_42fd42a44a (IsA pluralist liberal) (STV 1.0 0.9091)) +(: cnet_isa_a4fd5191cb (IsA pluralist philosopher) (STV 1.0 0.9091)) +(: cnet_isa_52eb76443e (IsA plurality relative_quantity) (STV 1.0 0.9091)) +(: cnet_isa_4d1693f0a6 (IsA plurality state) (STV 1.0 0.9091)) +(: cnet_isa_a1b08ea19d (IsA plus_four breeche) (STV 1.0 0.9091)) +(: cnet_isa_863e2296ac (IsA plus_sign sign) (STV 1.0 0.9091)) +(: cnet_isa_9c24c53563 (IsA plush fabric) (STV 1.0 0.9091)) +(: cnet_isa_0f91faa955 (IsA pluteaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_49f1fc238f (IsA pluteus fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_05dfe39cba (IsA pluteus_aurantiorugosus agaric) (STV 1.0 0.9091)) +(: cnet_isa_fba597363b (IsA pluteus_magnus agaric) (STV 1.0 0.9091)) +(: cnet_isa_635b94dc41 (IsA plutocracy political_system) (STV 1.0 0.9091)) +(: cnet_isa_a1391fc28f (IsA plutocrat rich_person) (STV 1.0 0.9091)) +(: cnet_isa_981c15bb63 (IsA plutonium element) (STV 1.0 0.9091)) +(: cnet_isa_2903168fef (IsA plutonium chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_d240b94a88 (IsA plutonium_239 plutonium) (STV 1.0 0.9091)) +(: cnet_isa_7ee250695a (IsA plutonium_trigger trigger) (STV 1.0 0.9091)) +(: cnet_isa_20a6d32d74 (IsA pluvialis bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_6ad97ea377 (IsA pluvianus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_9da978491f (IsA pluviose revolutionary_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_030d73ea08 (IsA ply layer) (STV 1.0 0.9091)) +(: cnet_isa_7ef3f9babf (IsA ply strand) (STV 1.0 0.9091)) +(: cnet_isa_ac7dfa0ed1 (IsA plymouth_rock domestic_fowl) (STV 1.0 0.9091)) +(: cnet_isa_4278eb36f8 (IsA plywood laminate) (STV 1.0 0.9091)) +(: cnet_isa_ff4d2b56f2 (IsA pm head_of_state) (STV 1.0 0.9091)) +(: cnet_isa_6e36214b16 (IsA pneumatic_drill power_drill) (STV 1.0 0.9091)) +(: cnet_isa_7ba6106310 (IsA pneumatic_tire tire) (STV 1.0 0.9091)) +(: cnet_isa_229c5ce0a7 (IsA pneumatic mechanic) (STV 1.0 0.9091)) +(: cnet_isa_7ad0504fea (IsA pneumatophore root) (STV 1.0 0.9091)) +(: cnet_isa_adf10decf6 (IsA pneumococcal_pneumonia pneumonia) (STV 1.0 0.9091)) +(: cnet_isa_8c3d1e835a (IsA pneumococcus diplococcus) (STV 1.0 0.9091)) +(: cnet_isa_94a6a3f5f2 (IsA pneumoconiosis respiratory_disease) (STV 1.0 0.9091)) +(: cnet_isa_dedd02c574 (IsA pneumocytosis pneumonia) (STV 1.0 0.9091)) +(: cnet_isa_e90fc2fc1a (IsA pneumonectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_843fdb7d78 (IsA pneumonia respiratory_disease) (STV 1.0 0.9091)) +(: cnet_isa_d1320c05d7 (IsA pneumonic_plague plague) (STV 1.0 0.9091)) +(: cnet_isa_614b0239d9 (IsA pneumonitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_f64e706aef (IsA pneumothorax abnormality) (STV 1.0 0.9091)) +(: cnet_isa_ffffc50b56 (IsA poa monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_232b5c2abe (IsA poached_egg dish) (STV 1.0 0.9091)) +(: cnet_isa_78b87a0e2b (IsA poacher scorpaenoid) (STV 1.0 0.9091)) +(: cnet_isa_a353a809d3 (IsA poacher cooking_utensil) (STV 1.0 0.9091)) +(: cnet_isa_4fe12b665c (IsA poacher vessel) (STV 1.0 0.9091)) +(: cnet_isa_a84174dc18 (IsA poacher appropriator) (STV 1.0 0.9091)) +(: cnet_isa_66a67e5cfb (IsA poaching cooking) (STV 1.0 0.9091)) +(: cnet_isa_2b8d6ce3ff (IsA pochard duck) (STV 1.0 0.9091)) +(: cnet_isa_f2b7f87d7e (IsA pock pustule) (STV 1.0 0.9091)) +(: cnet_isa_56e25711fd (IsA pocket opening) (STV 1.0 0.9091)) +(: cnet_isa_74390468c6 (IsA pocket pouch) (STV 1.0 0.9091)) +(: cnet_isa_b900ed1464 (IsA pocket space) (STV 1.0 0.9091)) +(: cnet_isa_832b4ab5a6 (IsA pocket people) (STV 1.0 0.9091)) +(: cnet_isa_186c4c3d01 (IsA pocket fund) (STV 1.0 0.9091)) +(: cnet_isa_8b896059ff (IsA pocket_battleship battleship) (STV 1.0 0.9091)) +(: cnet_isa_66000c0761 (IsA pocket_borough borough) (STV 1.0 0.9091)) +(: cnet_isa_29360a081b (IsA pocket_dictionary dictionary) (STV 1.0 0.9091)) +(: cnet_isa_998e9238d9 (IsA pocket_flap flap) (STV 1.0 0.9091)) +(: cnet_isa_f5989a31df (IsA pocket_handkerchief handkerchief) (STV 1.0 0.9091)) +(: cnet_isa_ab9f6b7ff9 (IsA pocket_knife useful_tool) (STV 1.0 0.9677)) +(: cnet_isa_5d6aaa3b8e (IsA pocket_knife very_useful_tool) (STV 1.0 0.9339)) +(: cnet_isa_7b3d9fab5c (IsA pocket_money cash) (STV 1.0 0.9091)) +(: cnet_isa_e68b1294b7 (IsA pocket_mouse pocket_rat) (STV 1.0 0.9091)) +(: cnet_isa_d0d129f894 (IsA pocket_rat rat) (STV 1.0 0.9091)) +(: cnet_isa_7bc5586e67 (IsA pocket_veto veto) (STV 1.0 0.9091)) +(: cnet_isa_597ac20752 (IsA pocket_watch watch) (STV 1.0 0.9091)) +(: cnet_isa_ca2e3ad018 (IsA pocketbook paperback_book) (STV 1.0 0.9091)) +(: cnet_isa_6d1a7edc94 (IsA pocketbook mean) (STV 1.0 0.9091)) +(: cnet_isa_d3895a2fe2 (IsA pocketcomb comb) (STV 1.0 0.9091)) +(: cnet_isa_a3a249f588 (IsA pocketed_bat freetail) (STV 1.0 0.9091)) +(: cnet_isa_0bc49c52fe (IsA pocketful containerful) (STV 1.0 0.9091)) +(: cnet_isa_51ae695e43 (IsA pocketknife knife) (STV 1.0 0.9091)) +(: cnet_isa_9f547119bf (IsA pockmark scar) (STV 1.0 0.9091)) +(: cnet_isa_3380e7131e (IsA pod container) (STV 1.0 0.9091)) +(: cnet_isa_22106e7117 (IsA pod animal_group) (STV 1.0 0.9091)) +(: cnet_isa_e7e53fb6a8 (IsA pod fruit) (STV 1.0 0.9091)) +(: cnet_isa_b13afae194 (IsA pod husk) (STV 1.0 0.9091)) +(: cnet_isa_c0623897da (IsA podalgia pain) (STV 1.0 0.9091)) +(: cnet_isa_bad769ca3d (IsA podalyria rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_17c08a6f7d (IsA podargidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_a9ca97ecee (IsA podargus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_cec5606074 (IsA podaxaceae gasteromycete) (STV 1.0 0.9091)) +(: cnet_isa_641e1c5c8a (IsA podetium plant_process) (STV 1.0 0.9091)) +(: cnet_isa_527188cdec (IsA podiatry medicine) (STV 1.0 0.9091)) +(: cnet_isa_7f394facb9 (IsA podicep bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_b0b43599fc (IsA podicipedidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_3bb7607d83 (IsA podicipitiform_seabird seabird) (STV 1.0 0.9091)) +(: cnet_isa_1600c73ab0 (IsA podicipitiforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_645c5002cf (IsA podilymbus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_a9efb6d85b (IsA podocarp conifer) (STV 1.0 0.9091)) +(: cnet_isa_8d1d11a0fa (IsA podocarpaceae gymnosperm_family) (STV 1.0 0.9091)) +(: cnet_isa_3ff88f8ad3 (IsA podocarpus gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_ace1bd3b8d (IsA podophyllum magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e1098111e9 (IsA podzol soil) (STV 1.0 0.9091)) +(: cnet_isa_bfbe13aa65 (IsA poeciliidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_371295a5e5 (IsA poecilocapsus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_a4c67dabf5 (IsA poecilogale mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_9da62e8c95 (IsA poem literary_composition) (STV 1.0 0.9091)) +(: cnet_isa_6d3229d20e (IsA poem about_god) (STV 1.0 0.9339)) +(: cnet_isa_d8bb5b2825 (IsA poem about_love) (STV 1.0 0.9091)) +(: cnet_isa_f95d3275c8 (IsA poephila bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_0bd2e5d084 (IsA poet writer) (STV 1.0 0.9091)) +(: cnet_isa_679b55d718 (IsA poet_laureate laureate) (STV 1.0 0.9091)) +(: cnet_isa_6b8bf72fdc (IsA poet_laureate poet) (STV 1.0 0.9091)) +(: cnet_isa_be9754f3c1 (IsA poetess poet) (STV 1.0 0.9091)) +(: cnet_isa_fee4d91f2e (IsA poetic_license license) (STV 1.0 0.9091)) +(: cnet_isa_a282184152 (IsA poetic_rhythm versification) (STV 1.0 0.9091)) +(: cnet_isa_57aa1e9bd1 (IsA poetic literary_study) (STV 1.0 0.9091)) +(: cnet_isa_339e5866aa (IsA poetry art) (STV 1.0 0.9339)) +(: cnet_isa_fe39177fdf (IsA poetry expressive_style) (STV 1.0 0.9091)) +(: cnet_isa_7792c1d7e9 (IsA poetry writing_style) (STV 1.0 0.9091)) +(: cnet_isa_7087bf10f8 (IsA pogge poacher) (STV 1.0 0.9091)) +(: cnet_isa_4387c26e0e (IsA pogo_stick plaything) (STV 1.0 0.9091)) +(: cnet_isa_54fa5f7e52 (IsA pogonia orchid) (STV 1.0 0.9091)) +(: cnet_isa_bebded60dd (IsA pogonion craniometric_point) (STV 1.0 0.9091)) +(: cnet_isa_b908f3c7b1 (IsA pogonophora phylum) (STV 1.0 0.9091)) +(: cnet_isa_057eb93747 (IsA pogostemon asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5740535ecd (IsA pogrom persecution) (STV 1.0 0.9091)) +(: cnet_isa_d13fb52ecf (IsA poi dish) (STV 1.0 0.9091)) +(: cnet_isa_5ac243953a (IsA poignance sadness) (STV 1.0 0.9091)) +(: cnet_isa_688497b151 (IsA poikilotherm animal) (STV 1.0 0.9091)) +(: cnet_isa_28a4e82443 (IsA poilu soldier) (STV 1.0 0.9091)) +(: cnet_isa_2f89d0142e (IsA poinciana rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2c7ba0229b (IsA poinsettia spurge) (STV 1.0 0.9091)) +(: cnet_isa_75e19b2ac9 (IsA point end) (STV 1.0 0.9091)) +(: cnet_isa_1f63dd0a7a (IsA point gun_muzzle) (STV 1.0 0.9091)) +(: cnet_isa_45f6259678 (IsA point wall_socket) (STV 1.0 0.9091)) +(: cnet_isa_14d6e484b3 (IsA point characteristic) (STV 1.0 0.9091)) +(: cnet_isa_c96c7bb86f (IsA point taper) (STV 1.0 0.9091)) +(: cnet_isa_66077afb21 (IsA point aim) (STV 1.0 0.9091)) +(: cnet_isa_18030dce83 (IsA point component) (STV 1.0 0.9091)) +(: cnet_isa_38b317b243 (IsA point mark) (STV 1.0 0.9091)) +(: cnet_isa_6d80ff8620 (IsA point meaning) (STV 1.0 0.9091)) +(: cnet_isa_92eb00643a (IsA point relevance) (STV 1.0 0.9091)) +(: cnet_isa_b7e705d596 (IsA point location) (STV 1.0 0.9091)) +(: cnet_isa_b24e3b8a93 (IsA point promontory) (STV 1.0 0.9091)) +(: cnet_isa_bc5e4cde5c (IsA point loan) (STV 1.0 0.9091)) +(: cnet_isa_78d997055f (IsA point linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_9b86c4e6ad (IsA point unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_18dd430e44 (IsA point convex_shape) (STV 1.0 0.9091)) +(: cnet_isa_b21a677284 (IsA point disk) (STV 1.0 0.9091)) +(: cnet_isa_87ca15450e (IsA point measure) (STV 1.0 0.9091)) +(: cnet_isa_941d3438ea (IsA point_after conversion) (STV 1.0 0.9091)) +(: cnet_isa_497cf9e4fe (IsA point_after point) (STV 1.0 0.9091)) +(: cnet_isa_2f170946aa (IsA point_and_shoot_camera camera) (STV 1.0 0.9091)) +(: cnet_isa_4a43ad0743 (IsA point_duty traffic_control) (STV 1.0 0.9091)) +(: cnet_isa_185703c26a (IsA point_lace lace) (STV 1.0 0.9091)) +(: cnet_isa_ff14b5f7a6 (IsA point_man leader) (STV 1.0 0.9091)) +(: cnet_isa_f14f0e8171 (IsA point_man soldier) (STV 1.0 0.9091)) +(: cnet_isa_5ff310b025 (IsA point_mutation mutation) (STV 1.0 0.9091)) +(: cnet_isa_2980d5ee67 (IsA point_of_honor concern) (STV 1.0 0.9091)) +(: cnet_isa_039e494c1b (IsA point_of_order order) (STV 1.0 0.9091)) +(: cnet_isa_6054b5d3bd (IsA point_of_view position) (STV 1.0 0.9091)) +(: cnet_isa_bd512194e0 (IsA point_source beginning) (STV 1.0 0.9091)) +(: cnet_isa_b9845383bb (IsA point_system orthography) (STV 1.0 0.9091)) +(: cnet_isa_b41b040113 (IsA point_system system) (STV 1.0 0.9091)) +(: cnet_isa_fa2089e2f8 (IsA point_system system_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_8ba15b58f2 (IsA point_woman leader) (STV 1.0 0.9091)) +(: cnet_isa_e0936d8e37 (IsA pointed_arch arch) (STV 1.0 0.9091)) +(: cnet_isa_fd47224422 (IsA pointed_leaf_maple maple) (STV 1.0 0.9091)) +(: cnet_isa_fbc9509efc (IsA pointedness directness) (STV 1.0 0.9091)) +(: cnet_isa_232ad43dd9 (IsA pointer sporting_dog) (STV 1.0 0.9091)) +(: cnet_isa_6dd94d7a2b (IsA pointer indicator) (STV 1.0 0.9091)) +(: cnet_isa_d620112078 (IsA pointillism genre) (STV 1.0 0.9091)) +(: cnet_isa_aa16e22b1e (IsA pointillism artistic_movement) (STV 1.0 0.9091)) +(: cnet_isa_78b5f4337c (IsA pointillism school) (STV 1.0 0.9091)) +(: cnet_isa_1f44b247cc (IsA pointillist painter) (STV 1.0 0.9091)) +(: cnet_isa_f11a782a05 (IsA pointing_out indication) (STV 1.0 0.9091)) +(: cnet_isa_a91b793fc5 (IsA pointing_trowel trowel) (STV 1.0 0.9091)) +(: cnet_isa_5fac625f60 (IsA pointsman traffic_cop) (STV 1.0 0.9091)) +(: cnet_isa_321b5c8e60 (IsA poise unit_of_viscosity) (STV 1.0 0.9091)) +(: cnet_isa_3937ff6288 (IsA poise equilibrium) (STV 1.0 0.9091)) +(: cnet_isa_c17b8c3d7e (IsA poison destructiveness) (STV 1.0 0.9091)) +(: cnet_isa_1da178ebc1 (IsA poison substance) (STV 1.0 0.9091)) +(: cnet_isa_d2f634c07e (IsA poison_ash poisonous_plant) (STV 1.0 0.9091)) +(: cnet_isa_0fe046c9ea (IsA poison_bush shrub) (STV 1.0 0.9091)) +(: cnet_isa_c36a6c0538 (IsA poison_cama death_cama) (STV 1.0 0.9091)) +(: cnet_isa_2bc0817d96 (IsA poison_gas chemical_weapon) (STV 1.0 0.9091)) +(: cnet_isa_4c7f361c36 (IsA poison_gas gas) (STV 1.0 0.9091)) +(: cnet_isa_2cee241947 (IsA poison_ivy dangerous_plant) (STV 1.0 0.9524)) +(: cnet_isa_0a4613657c (IsA poison_ivy plant) (STV 1.0 0.9454)) +(: cnet_isa_2f572ff99e (IsA poison_ivy poisonous_plant) (STV 1.0 0.9091)) +(: cnet_isa_10d4cd412b (IsA poison_ivy rhus_dermatitis) (STV 1.0 0.9091)) +(: cnet_isa_e22eb08df0 (IsA poison_milkweed milkweed) (STV 1.0 0.9091)) +(: cnet_isa_71dc5b0382 (IsA poison_oak rhus_dermatitis) (STV 1.0 0.9091)) +(: cnet_isa_7e38ed6a27 (IsA poison_pill shark_repellent) (STV 1.0 0.9091)) +(: cnet_isa_ba1eae961a (IsA poison_sumac rhus_dermatitis) (STV 1.0 0.9091)) +(: cnet_isa_3a2675d1d2 (IsA poisoner killer) (STV 1.0 0.9091)) +(: cnet_isa_060e32203d (IsA poisoning killing) (STV 1.0 0.9091)) +(: cnet_isa_e50ec7f3e1 (IsA poisoning physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_a83fce19c2 (IsA poisonous_parasol lepiota) (STV 1.0 0.9091)) +(: cnet_isa_63575fd494 (IsA poisonous_plant plant) (STV 1.0 0.9091)) +(: cnet_isa_9e71752c56 (IsA poisson_distribution distribution) (STV 1.0 0.9091)) +(: cnet_isa_eea16d6b2a (IsA poke pokeweed) (STV 1.0 0.9091)) +(: cnet_isa_499650704e (IsA poke_check check) (STV 1.0 0.9091)) +(: cnet_isa_5cf0227ac5 (IsA poke_milkweed milkweed) (STV 1.0 0.9091)) +(: cnet_isa_407ad9bbcd (IsA poker card_game) (STV 1.0 0.9091)) +(: cnet_isa_4eaea692e6 (IsA poker cardgame) (STV 1.0 0.9339)) +(: cnet_isa_59047c93ef (IsA poker fire_iron) (STV 1.0 0.9091)) +(: cnet_isa_eb83359f1f (IsA poker_alumroot alumroot) (STV 1.0 0.9091)) +(: cnet_isa_cc70a54c64 (IsA poker_face countenance) (STV 1.0 0.9091)) +(: cnet_isa_160007fbc0 (IsA poker_hand hand) (STV 1.0 0.9091)) +(: cnet_isa_9907d59a14 (IsA poker_plant kniphofia) (STV 1.0 0.9091)) +(: cnet_isa_c24ec99911 (IsA pokeweed herb) (STV 1.0 0.9091)) +(: cnet_isa_42b0b1892b (IsA pokomo bantu) (STV 1.0 0.9091)) +(: cnet_isa_4d04bb0174 (IsA polack pole) (STV 1.0 0.9091)) +(: cnet_isa_0071b88ba5 (IsA poland country) (STV 1.0 0.9339)) +(: cnet_isa_6322f27f42 (IsA polanisia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c842409a23 (IsA polar_body cell) (STV 1.0 0.9091)) +(: cnet_isa_b0f51bc924 (IsA polar_circle latitude) (STV 1.0 0.9091)) +(: cnet_isa_9a0feedd9d (IsA polar_coordinate coordinate) (STV 1.0 0.9091)) +(: cnet_isa_f2bc192a68 (IsA polar_glacier continental_glacier) (STV 1.0 0.9091)) +(: cnet_isa_ca6343b134 (IsA polar_hare hare) (STV 1.0 0.9091)) +(: cnet_isa_f8638183e8 (IsA polar_opposition gradable_opposition) (STV 1.0 0.9091)) +(: cnet_isa_b10f6088aa (IsA polarimeter optical_device) (STV 1.0 0.9091)) +(: cnet_isa_c316f9dc32 (IsA polarity opposition) (STV 1.0 0.9091)) +(: cnet_isa_6c2f71c68f (IsA polarization optical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_d13986e5b6 (IsA polarization condition) (STV 1.0 0.9091)) +(: cnet_isa_abbb837c4c (IsA polarography chemical_analysis) (STV 1.0 0.9091)) +(: cnet_isa_2ab306a9a8 (IsA polder land) (STV 1.0 0.9091)) +(: cnet_isa_152769e198 (IsA pole end) (STV 1.0 0.9091)) +(: cnet_isa_7de6845042 (IsA pole rod) (STV 1.0 0.9091)) +(: cnet_isa_e9c8ec0838 (IsA pole sport_implement) (STV 1.0 0.9091)) +(: cnet_isa_cec5ffa18f (IsA pole opinion) (STV 1.0 0.9091)) +(: cnet_isa_f9b46573cb (IsA pole celestial_point) (STV 1.0 0.9091)) +(: cnet_isa_3c7f8ba241 (IsA pole geographic_point) (STV 1.0 0.9091)) +(: cnet_isa_3208c97e81 (IsA pole european) (STV 1.0 0.9091)) +(: cnet_isa_6a9ff80c72 (IsA pole_bean bean) (STV 1.0 0.9091)) +(: cnet_isa_6d6081666f (IsA pole_horse draft_horse) (STV 1.0 0.9091)) +(: cnet_isa_9732ba3c4e (IsA pole_horse trotting_horse) (STV 1.0 0.9091)) +(: cnet_isa_909a5c01e1 (IsA pole_position position) (STV 1.0 0.9091)) +(: cnet_isa_66feccc5a3 (IsA pole_vault field_event) (STV 1.0 0.9091)) +(: cnet_isa_eb017a03c3 (IsA poleax ax) (STV 1.0 0.9091)) +(: cnet_isa_0659afc502 (IsA poleax battle_ax) (STV 1.0 0.9091)) +(: cnet_isa_9bafee684a (IsA polecat musteline_mammal) (STV 1.0 0.9091)) +(: cnet_isa_18d40891c9 (IsA polemic controversy) (STV 1.0 0.9091)) +(: cnet_isa_b2c7c36049 (IsA polemicist writer) (STV 1.0 0.9091)) +(: cnet_isa_e0c78d2e39 (IsA polemic christian_theology) (STV 1.0 0.9091)) +(: cnet_isa_d5a10dd985 (IsA polemoniaceae asterid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_319252b661 (IsA polemoniale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_93f9b46a14 (IsA polemonium herb) (STV 1.0 0.9091)) +(: cnet_isa_88ee94d613 (IsA polenta mush) (STV 1.0 0.9091)) +(: cnet_isa_109202e878 (IsA polianthe liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5b6cb06f79 (IsA police force) (STV 1.0 0.9091)) +(: cnet_isa_ffd8b4b3d7 (IsA police law_enforcement_agency) (STV 1.0 0.9091)) +(: cnet_isa_cd6287308c (IsA police_academy academy) (STV 1.0 0.9091)) +(: cnet_isa_0f4dca6bcb (IsA police_action military_action) (STV 1.0 0.9091)) +(: cnet_isa_e732deea02 (IsA police_boat boat) (STV 1.0 0.9091)) +(: cnet_isa_4f89d761b5 (IsA police_commissioner commissioner) (STV 1.0 0.9091)) +(: cnet_isa_bf8620dd38 (IsA police_court court) (STV 1.0 0.9091)) +(: cnet_isa_8fd55402dd (IsA police_department local_department) (STV 1.0 0.9091)) +(: cnet_isa_c15e21cc49 (IsA police_dog working_dog) (STV 1.0 0.9091)) +(: cnet_isa_8fbe015e69 (IsA police_matron policeman) (STV 1.0 0.9091)) +(: cnet_isa_bcedf6de98 (IsA police_officer peace_officer) (STV 1.0 0.9091)) +(: cnet_isa_2beaf71417 (IsA police_precinct precinct) (STV 1.0 0.9091)) +(: cnet_isa_6e5de39d40 (IsA police_sergeant lawman) (STV 1.0 0.9091)) +(: cnet_isa_426c5235a7 (IsA police_squad team) (STV 1.0 0.9091)) +(: cnet_isa_0c7f77e098 (IsA police_state dictatorship) (STV 1.0 0.9091)) +(: cnet_isa_5541b058cf (IsA police_station station) (STV 1.0 0.9091)) +(: cnet_isa_1840fb80b8 (IsA police_van van) (STV 1.0 0.9091)) +(: cnet_isa_a215fa7d50 (IsA police_work investigation) (STV 1.0 0.9091)) +(: cnet_isa_77222de1da (IsA policeman member_of_police_force) (STV 1.0 0.9339)) +(: cnet_isa_e0da12a96e (IsA policeman lawman) (STV 1.0 0.9091)) +(: cnet_isa_bcf13393b2 (IsA policeman_bird stork) (STV 1.0 0.9091)) +(: cnet_isa_557b35cbc1 (IsA policy plan_of_action) (STV 1.0 0.9091)) +(: cnet_isa_101ac46ca2 (IsA policy argumentation) (STV 1.0 0.9091)) +(: cnet_isa_05a948bb3d (IsA policy contract) (STV 1.0 0.9091)) +(: cnet_isa_2b4fa10002 (IsA policy_maker important_person) (STV 1.0 0.9091)) +(: cnet_isa_431e59a798 (IsA policyholder customer) (STV 1.0 0.9091)) +(: cnet_isa_9ffdfaeeb2 (IsA policyholder holder) (STV 1.0 0.9091)) +(: cnet_isa_cde7c87a61 (IsA poliomyelitis infectious_disease) (STV 1.0 0.9091)) +(: cnet_isa_6e90e3fe2a (IsA polioptila bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_945f603910 (IsA poliosis depigmentation) (STV 1.0 0.9091)) +(: cnet_isa_ed8d7a4e21 (IsA poliovirus enterovirus) (STV 1.0 0.9091)) +(: cnet_isa_5773c71cab (IsA poliovirus_vaccine vaccine) (STV 1.0 0.9091)) +(: cnet_isa_5c523f4ae8 (IsA polish language) (STV 1.0 0.9091)) +(: cnet_isa_3ff7c32fcd (IsA polish radiance) (STV 1.0 0.9091)) +(: cnet_isa_e26203d29e (IsA polish smoothness) (STV 1.0 0.9091)) +(: cnet_isa_f054209f05 (IsA polish slavic) (STV 1.0 0.9091)) +(: cnet_isa_856fac77bb (IsA polish perfection) (STV 1.0 0.9091)) +(: cnet_isa_13430bab9c (IsA polish formulation) (STV 1.0 0.9091)) +(: cnet_isa_7a3428bcca (IsA polish_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_094350af89 (IsA poliste arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_1ccc2e058a (IsA poliste_annularis paper_wasp) (STV 1.0 0.9091)) +(: cnet_isa_edef43a992 (IsA politburo committee) (STV 1.0 0.9091)) +(: cnet_isa_798a262c40 (IsA politeness action) (STV 1.0 0.9091)) +(: cnet_isa_309e25a1bc (IsA politeness courtesy) (STV 1.0 0.9091)) +(: cnet_isa_38265399d2 (IsA political_action_committee committee) (STV 1.0 0.9091)) +(: cnet_isa_f7dbd6992b (IsA political_arena sphere) (STV 1.0 0.9091)) +(: cnet_isa_41b3f75afb (IsA political_campaign race) (STV 1.0 0.9091)) +(: cnet_isa_be59453a00 (IsA political_contribution contribution) (STV 1.0 0.9091)) +(: cnet_isa_59fecef2ba (IsA political_correctness correctness) (STV 1.0 0.9091)) +(: cnet_isa_71a7700cb6 (IsA political_dissident dissenter) (STV 1.0 0.9091)) +(: cnet_isa_636103ca68 (IsA political_ideology system_of_abstract_thought) (STV 1.0 0.9091)) +(: cnet_isa_df22d80da7 (IsA political_incorrectness incorrectness) (STV 1.0 0.9091)) +(: cnet_isa_06a71158b0 (IsA political_movement movement) (STV 1.0 0.9091)) +(: cnet_isa_70872dfb9e (IsA political_observer observer) (STV 1.0 0.9091)) +(: cnet_isa_ada1cb4d62 (IsA political_officer worker) (STV 1.0 0.9091)) +(: cnet_isa_44fcf0cb7b (IsA political_orientation orientation) (STV 1.0 0.9091)) +(: cnet_isa_609207013f (IsA political_prisoner prisoner) (STV 1.0 0.9091)) +(: cnet_isa_2e9632128a (IsA political_scientist social_scientist) (STV 1.0 0.9091)) +(: cnet_isa_73defc048e (IsA political_system social_group) (STV 1.0 0.9091)) +(: cnet_isa_efc6a2d038 (IsA political_unit unit) (STV 1.0 0.9091)) +(: cnet_isa_52337cb990 (IsA politician leader) (STV 1.0 0.9091)) +(: cnet_isa_51db589035 (IsA politician schemer) (STV 1.0 0.9091)) +(: cnet_isa_444453c6db (IsA politician frequently_lawyer) (STV 1.0 0.9091)) +(: cnet_isa_c89ca7756b (IsA politic activity) (STV 1.0 0.9091)) +(: cnet_isa_7ae7251b94 (IsA politic affair) (STV 1.0 0.9091)) +(: cnet_isa_d8c216d291 (IsA politic opinion) (STV 1.0 0.9091)) +(: cnet_isa_9539217111 (IsA politic social_science) (STV 1.0 0.9091)) +(: cnet_isa_7379097f86 (IsA politic social_relation) (STV 1.0 0.9091)) +(: cnet_isa_7f6c9ace85 (IsA politic profession) (STV 1.0 0.9091)) +(: cnet_isa_0652feffa7 (IsA polity administration) (STV 1.0 0.9091)) +(: cnet_isa_9f2bf3efc6 (IsA polity organization) (STV 1.0 0.9091)) +(: cnet_isa_9289648b5e (IsA polka folk_dancing) (STV 1.0 0.9091)) +(: cnet_isa_1be6d48f4a (IsA polka dance_music) (STV 1.0 0.9091)) +(: cnet_isa_56a07fd0c6 (IsA polka_dot design) (STV 1.0 0.9091)) +(: cnet_isa_8ecee87c47 (IsA poll parrot) (STV 1.0 0.9091)) +(: cnet_isa_8d93eaa61b (IsA poll top) (STV 1.0 0.9091)) +(: cnet_isa_77c8ef7b69 (IsA poll inquiry) (STV 1.0 0.9091)) +(: cnet_isa_3f54cbd169 (IsA poll count) (STV 1.0 0.9091)) +(: cnet_isa_3571e8a8ff (IsA poll_tax capitation) (STV 1.0 0.9091)) +(: cnet_isa_41613e5d0a (IsA pollachius fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_a2432179d6 (IsA pollack gadoid) (STV 1.0 0.9091)) +(: cnet_isa_dfa91d7e51 (IsA pollack saltwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_fb687f49a7 (IsA pollard ruminant) (STV 1.0 0.9091)) +(: cnet_isa_6d6320110d (IsA pollard tree) (STV 1.0 0.9091)) +(: cnet_isa_497c9ba3c4 (IsA pollen spore) (STV 1.0 0.9091)) +(: cnet_isa_7d869c9ff3 (IsA pollen_count count) (STV 1.0 0.9091)) +(: cnet_isa_61c1d2c6c5 (IsA pollen_tube plant_part) (STV 1.0 0.9091)) +(: cnet_isa_766c62be04 (IsA pollination fertilization) (STV 1.0 0.9091)) +(: cnet_isa_c5f766e8ea (IsA pollinator insect) (STV 1.0 0.9091)) +(: cnet_isa_122caa00ac (IsA polling_booth booth) (STV 1.0 0.9091)) +(: cnet_isa_6ade9a9803 (IsA polling_day day) (STV 1.0 0.9091)) +(: cnet_isa_3dc254594e (IsA polling_place topographic_point) (STV 1.0 0.9091)) +(: cnet_isa_4c10365377 (IsA pollinium pollen) (STV 1.0 0.9091)) +(: cnet_isa_625cad7815 (IsA poll position) (STV 1.0 0.9091)) +(: cnet_isa_b0c403285f (IsA pollster inquirer) (STV 1.0 0.9091)) +(: cnet_isa_f4b409e2f9 (IsA pollucite mineral) (STV 1.0 0.9091)) +(: cnet_isa_9af78ba0af (IsA pollutant waste) (STV 1.0 0.9091)) +(: cnet_isa_75e87428ed (IsA polluter bad_person) (STV 1.0 0.9091)) +(: cnet_isa_62e2093382 (IsA pollution environmental_condition) (STV 1.0 0.9091)) +(: cnet_isa_a753c4da18 (IsA pollution impurity) (STV 1.0 0.9091)) +(: cnet_isa_fed2e24b0d (IsA polo game) (STV 1.0 0.9874)) +(: cnet_isa_8f2fcb8e86 (IsA polo sport) (STV 1.0 0.9091)) +(: cnet_isa_0a92234de4 (IsA polo field_game) (STV 1.0 0.9091)) +(: cnet_isa_1dbfbfed00 (IsA polo_ball ball) (STV 1.0 0.9091)) +(: cnet_isa_25db3080e3 (IsA polo_mallet mallet) (STV 1.0 0.9091)) +(: cnet_isa_b73943c286 (IsA polo_mallet stick) (STV 1.0 0.9091)) +(: cnet_isa_6a5d9061a0 (IsA polo_pony horse) (STV 1.0 0.9091)) +(: cnet_isa_3c1ad31b70 (IsA polo_shirt shirt) (STV 1.0 0.9091)) +(: cnet_isa_02438adab4 (IsA polonaise dress) (STV 1.0 0.9091)) +(: cnet_isa_2d386adc0b (IsA polonium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_23ec58a199 (IsA polony bologna) (STV 1.0 0.9091)) +(: cnet_isa_7bf4450b62 (IsA poltergeist ghost) (STV 1.0 0.9091)) +(: cnet_isa_4ea8d04d9e (IsA poltroon coward) (STV 1.0 0.9091)) +(: cnet_isa_278df6f8f4 (IsA poltroonery pusillanimity) (STV 1.0 0.9091)) +(: cnet_isa_d9c8d5d22a (IsA polyamide polymer) (STV 1.0 0.9091)) +(: cnet_isa_7bb644fff8 (IsA polyandrist polygamist) (STV 1.0 0.9091)) +(: cnet_isa_6d8a1255c0 (IsA polyandry polygamy) (STV 1.0 0.9091)) +(: cnet_isa_4c4bf197c0 (IsA polyangiaceae bacteria_family) (STV 1.0 0.9091)) +(: cnet_isa_c1efd6a901 (IsA polyangium bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_233994f354 (IsA polyanthus primrose) (STV 1.0 0.9091)) +(: cnet_isa_ad0a5c20a4 (IsA polyarteritis arteritis) (STV 1.0 0.9091)) +(: cnet_isa_2857a83e90 (IsA polyborus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_3d603fc095 (IsA polybotrya fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_f69db12317 (IsA polybutylene butylene) (STV 1.0 0.9091)) +(: cnet_isa_9620e7d8c4 (IsA polychaeta class) (STV 1.0 0.9091)) +(: cnet_isa_9708635008 (IsA polychaete annelid) (STV 1.0 0.9091)) +(: cnet_isa_cc0aba14db (IsA polychrome work) (STV 1.0 0.9091)) +(: cnet_isa_ca493a4048 (IsA polycirrus worm_genus) (STV 1.0 0.9091)) +(: cnet_isa_f16d5b9305 (IsA polyconic_projection conic_projection) (STV 1.0 0.9091)) +(: cnet_isa_fc02884bb6 (IsA polycystic_kidney_disease kidney_disease) (STV 1.0 0.9091)) +(: cnet_isa_f76bbf7937 (IsA polycythemia blood_disease) (STV 1.0 0.9091)) +(: cnet_isa_8a4a9bbcad (IsA polydactylus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_6d07d56bd7 (IsA polydactyly birth_defect) (STV 1.0 0.9091)) +(: cnet_isa_281618e882 (IsA polydipsia thirst) (STV 1.0 0.9091)) +(: cnet_isa_5ac0b4d7f7 (IsA polyelectrolyte electrolyte) (STV 1.0 0.9091)) +(: cnet_isa_02be76c527 (IsA polyergus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_8831706b07 (IsA polyester fabric) (STV 1.0 0.9091)) +(: cnet_isa_4bea985710 (IsA polyester ester) (STV 1.0 0.9091)) +(: cnet_isa_bf6ac9ee08 (IsA polyester plastic) (STV 1.0 0.9091)) +(: cnet_isa_c512c0d545 (IsA polyester synthetic_resin) (STV 1.0 0.9091)) +(: cnet_isa_d8e9581a5d (IsA polyester_fiber polyester) (STV 1.0 0.9091)) +(: cnet_isa_665b9a398a (IsA polyethylene synthetic_resin) (STV 1.0 0.9091)) +(: cnet_isa_febfd3b267 (IsA polyfoam polyurethane) (STV 1.0 0.9091)) +(: cnet_isa_b67b28a6b5 (IsA polygala rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c00f7112f3 (IsA polygalaceae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_9671901e81 (IsA polygamist spouse) (STV 1.0 0.9091)) +(: cnet_isa_a2d02145d3 (IsA polygamy marriage) (STV 1.0 0.9091)) +(: cnet_isa_233a37b202 (IsA polygene gene) (STV 1.0 0.9091)) +(: cnet_isa_cadead83c5 (IsA polygenic_disorder genetic_disease) (STV 1.0 0.9091)) +(: cnet_isa_5d3b354836 (IsA polygon plane_figure) (STV 1.0 0.9091)) +(: cnet_isa_2b20a668a9 (IsA polygonaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_58b87ddd34 (IsA polygonale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_24a26f83c3 (IsA polygonatum liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1b958473a4 (IsA polygonia arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_c8ece18a2e (IsA polygonum dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a1fa0f594e (IsA polygraph medical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_43893e7a88 (IsA polygynist polygamist) (STV 1.0 0.9091)) +(: cnet_isa_f09f1edf10 (IsA polygyny polygamy) (STV 1.0 0.9091)) +(: cnet_isa_1ca759325c (IsA polyhedral_angle angle) (STV 1.0 0.9091)) +(: cnet_isa_e11fc9fe83 (IsA polyhedron solid) (STV 1.0 0.9091)) +(: cnet_isa_9dfb9472c5 (IsA polymastigina animal_order) (STV 1.0 0.9091)) +(: cnet_isa_0272308e37 (IsA polymastigote flagellate) (STV 1.0 0.9091)) +(: cnet_isa_dcd2a824ad (IsA polymath initiate) (STV 1.0 0.9091)) +(: cnet_isa_d114eb4209 (IsA polymer compound) (STV 1.0 0.9091)) +(: cnet_isa_3627a3e18a (IsA polymerase enzyme) (STV 1.0 0.9091)) +(: cnet_isa_9880155a32 (IsA polymerization chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_7cacbadc61 (IsA polymethyl_methacrylate acrylic) (STV 1.0 0.9091)) +(: cnet_isa_fe003f8ca9 (IsA polymorph organism) (STV 1.0 0.9091)) +(: cnet_isa_2aae991565 (IsA polymorphism organic_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_36ae706c10 (IsA polymorphism chemical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_23642386a8 (IsA polymyositis myositis) (STV 1.0 0.9091)) +(: cnet_isa_c1cb5523eb (IsA polymyxin antibiotic) (STV 1.0 0.9091)) +(: cnet_isa_7d9b054c92 (IsA polynemidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_66cb803c83 (IsA polynesian austronesian) (STV 1.0 0.9091)) +(: cnet_isa_ff6eac1ce1 (IsA polynesian_tattler tattler) (STV 1.0 0.9091)) +(: cnet_isa_dfe0bc8bf0 (IsA polyneuritis neuritis) (STV 1.0 0.9091)) +(: cnet_isa_4c16d104f8 (IsA polynomial mapping) (STV 1.0 0.9091)) +(: cnet_isa_b7a1faeb3a (IsA polynucleotide nucleotide) (STV 1.0 0.9091)) +(: cnet_isa_ad9cc92322 (IsA polynya body_of_water) (STV 1.0 0.9091)) +(: cnet_isa_721ed7bee1 (IsA polyodon fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_0599adf6ce (IsA polyodontidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_add3a48f38 (IsA polyoma papovavirus) (STV 1.0 0.9091)) +(: cnet_isa_69fdb19c49 (IsA polyp coelenterate) (STV 1.0 0.9091)) +(: cnet_isa_6071f7f8dd (IsA polyp growth) (STV 1.0 0.9091)) +(: cnet_isa_9dd6ad442e (IsA polypectomy operation) (STV 1.0 0.9091)) +(: cnet_isa_4b91265daf (IsA polypedate amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_1526506c2e (IsA polypedatidae amphibian_family) (STV 1.0 0.9091)) +(: cnet_isa_79127d4b09 (IsA polypeptide peptide) (STV 1.0 0.9091)) +(: cnet_isa_2f143e2233 (IsA polyphemus_moth saturniid) (STV 1.0 0.9091)) +(: cnet_isa_fc556e4770 (IsA polyphone letter) (STV 1.0 0.9091)) +(: cnet_isa_310f2348fb (IsA polyphonic_prose prose) (STV 1.0 0.9091)) +(: cnet_isa_be9d807fb8 (IsA polyphony music) (STV 1.0 0.9091)) +(: cnet_isa_0a4b841cc4 (IsA polyphosphate salt) (STV 1.0 0.9091)) +(: cnet_isa_aba67f8d15 (IsA polyphosphoric_acid oxyacid) (STV 1.0 0.9091)) +(: cnet_isa_c18b0bde91 (IsA polyplacophora class) (STV 1.0 0.9091)) +(: cnet_isa_84c1729918 (IsA polyploid organism) (STV 1.0 0.9091)) +(: cnet_isa_354643fd09 (IsA polyploidy condition) (STV 1.0 0.9091)) +(: cnet_isa_89be323cd3 (IsA polypodiaceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_5a1611f5a3 (IsA polypodium fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_0392ec01a8 (IsA polypody fern) (STV 1.0 0.9091)) +(: cnet_isa_83d98b407c (IsA polyporaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_48690ce325 (IsA polypore basidiomycete) (STV 1.0 0.9091)) +(: cnet_isa_38f068c116 (IsA polyporus fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_6bc99cf819 (IsA polyporus_squamosus polypore) (STV 1.0 0.9091)) +(: cnet_isa_0ccf534825 (IsA polyporus_tenuiculus polypore) (STV 1.0 0.9091)) +(: cnet_isa_e832dac649 (IsA polyprion fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_27d8557090 (IsA polypropylene plastic) (STV 1.0 0.9091)) +(: cnet_isa_6283029dae (IsA polyptoton repetition) (STV 1.0 0.9091)) +(: cnet_isa_e9b24706bb (IsA polysaccharide carbohydrate) (STV 1.0 0.9091)) +(: cnet_isa_4601a9fd48 (IsA polysemant word) (STV 1.0 0.9091)) +(: cnet_isa_971ab81971 (IsA polysemy ambiguity) (STV 1.0 0.9091)) +(: cnet_isa_23a08b5a99 (IsA polysomy birth_defect) (STV 1.0 0.9091)) +(: cnet_isa_47ea6bfd52 (IsA polystichum fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_a79d112c2a (IsA polystyrene styrene) (STV 1.0 0.9091)) +(: cnet_isa_37a1854270 (IsA polysyllable word) (STV 1.0 0.9091)) +(: cnet_isa_3a8c99efb2 (IsA polysyndeton rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_72d18bd2ab (IsA polytechnic_institute technical_school) (STV 1.0 0.9091)) +(: cnet_isa_7b631eb0c4 (IsA polytheism theism) (STV 1.0 0.9091)) +(: cnet_isa_9980428338 (IsA polytheist theist) (STV 1.0 0.9091)) +(: cnet_isa_171bb42f0e (IsA polytonality music) (STV 1.0 0.9091)) +(: cnet_isa_cbf3d90d01 (IsA polyunsaturated_fat fat) (STV 1.0 0.9091)) +(: cnet_isa_429f031a81 (IsA polyunsaturated_fatty_acid unsaturated_fatty_acid) (STV 1.0 0.9091)) +(: cnet_isa_e21ac420b6 (IsA polyurethane polymer) (STV 1.0 0.9091)) +(: cnet_isa_dc29ff0c59 (IsA polyuria kidney_disease) (STV 1.0 0.9091)) +(: cnet_isa_b56fc11516 (IsA polyvalence state) (STV 1.0 0.9091)) +(: cnet_isa_7d30681bb5 (IsA polyvalency state) (STV 1.0 0.9091)) +(: cnet_isa_db9c31883c (IsA polyvinyl_acetate vinyl_polymer) (STV 1.0 0.9091)) +(: cnet_isa_92c4f296e0 (IsA polyvinyl_chloride vinyl_polymer) (STV 1.0 0.9091)) +(: cnet_isa_6ce5525cd6 (IsA polyvinyl_formaldehyde plastic) (STV 1.0 0.9091)) +(: cnet_isa_f45aee417e (IsA pomacanthus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_df5aa7777d (IsA pomacentridae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_49ba3ecbef (IsA pomacentrus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_9a46c36af8 (IsA pomade hairdressing) (STV 1.0 0.9091)) +(: cnet_isa_10751458c1 (IsA pomaderris dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7e85094f28 (IsA pomatomidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_d6959bbed5 (IsA pomatomus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_bb55d6db1b (IsA pome fruit) (STV 1.0 0.9091)) +(: cnet_isa_dbc91d6d52 (IsA pomegranate edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_60f46eb798 (IsA pomegranate fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_c4e47e89ca (IsA pomelo citrus) (STV 1.0 0.9091)) +(: cnet_isa_9efd25baec (IsA pomeranian spitz) (STV 1.0 0.9091)) +(: cnet_isa_91c3089615 (IsA pomfret sea_bream) (STV 1.0 0.9091)) +(: cnet_isa_227a6a5112 (IsA pommel handle) (STV 1.0 0.9091)) +(: cnet_isa_449f16034f (IsA pommel_horse horse) (STV 1.0 0.9091)) +(: cnet_isa_83bcf5ec4f (IsA pommy english_person) (STV 1.0 0.9091)) +(: cnet_isa_ca6fb4d27b (IsA pomo kulanapan) (STV 1.0 0.9091)) +(: cnet_isa_053a1bc002 (IsA pomo hoka) (STV 1.0 0.9091)) +(: cnet_isa_87106f8532 (IsA pomolobus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_f7f0f864be (IsA pomologist botanist) (STV 1.0 0.9091)) +(: cnet_isa_83024a65c6 (IsA pomology botany) (STV 1.0 0.9091)) +(: cnet_isa_0e12a48c99 (IsA pomoxis fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_6a3d914a18 (IsA pomp elegance) (STV 1.0 0.9091)) +(: cnet_isa_0e260640ee (IsA pompadour hairdo) (STV 1.0 0.9091)) +(: cnet_isa_5b2c4a1e9d (IsA pompano carangid_fish) (STV 1.0 0.9091)) +(: cnet_isa_2076976c4b (IsA pompano saltwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_df1820b86d (IsA pompon grunt) (STV 1.0 0.9091)) +(: cnet_isa_714695fc8e (IsA pompon adornment) (STV 1.0 0.9091)) +(: cnet_isa_aeae9d72be (IsA ponca dhegiha) (STV 1.0 0.9091)) +(: cnet_isa_e3597c9f54 (IsA ponce man) (STV 1.0 0.9091)) +(: cnet_isa_6b455469f8 (IsA poncho cloak) (STV 1.0 0.9091)) +(: cnet_isa_6ec3bea791 (IsA poncirus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6819cfdde3 (IsA pond body_of_water) (STV 1.0 0.9454)) +(: cnet_isa_fd4b1fe182 (IsA pond lake) (STV 1.0 0.9091)) +(: cnet_isa_7f20b86139 (IsA pond_apple custard_apple) (STV 1.0 0.9091)) +(: cnet_isa_d0d0246400 (IsA pond_cypress cypress) (STV 1.0 0.9091)) +(: cnet_isa_4da329166b (IsA pond_pine pine) (STV 1.0 0.9091)) +(: cnet_isa_cedbab25a5 (IsA pond_scum green_algae) (STV 1.0 0.9091)) +(: cnet_isa_b5b23068e4 (IsA pond_scum_parasite fungus) (STV 1.0 0.9091)) +(: cnet_isa_01f91bea0c (IsA ponderosa yellow_pine) (STV 1.0 0.9091)) +(: cnet_isa_922b4c485a (IsA ponderousness uninterestingness) (STV 1.0 0.9091)) +(: cnet_isa_4b66852bc1 (IsA pondweed aquatic_plant) (STV 1.0 0.9091)) +(: cnet_isa_1d86100537 (IsA pongamia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_fe9f61687e (IsA pongee fabric) (STV 1.0 0.9091)) +(: cnet_isa_1bbb0eae42 (IsA pongidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_9aab7968aa (IsA pongo mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_3a95c3479d (IsA poniard dagger) (STV 1.0 0.9091)) +(: cnet_isa_02d8aa5552 (IsA ponka dhegiha) (STV 1.0 0.9091)) +(: cnet_isa_3b519fda06 (IsA pon neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_fce1f95ede (IsA pon_asinorum problem) (STV 1.0 0.9091)) +(: cnet_isa_74528a6c1d (IsA pontederia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_026007082a (IsA pontederiaceae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_aa612630de (IsA pontifex priest) (STV 1.0 0.9091)) +(: cnet_isa_0f80c72a2f (IsA pontiff catholic) (STV 1.0 0.9091)) +(: cnet_isa_7773ce0e20 (IsA pontiff spiritual_leader) (STV 1.0 0.9091)) +(: cnet_isa_9f5ce7f206 (IsA pontifical vestment) (STV 1.0 0.9091)) +(: cnet_isa_2d50931849 (IsA pontius_pilate procurator) (STV 1.0 0.9091)) +(: cnet_isa_82b60f27b5 (IsA pontoon float) (STV 1.0 0.9091)) +(: cnet_isa_66402e46b9 (IsA pontoon barge) (STV 1.0 0.9091)) +(: cnet_isa_fb1a65a0bc (IsA pontoon_bridge bridge) (STV 1.0 0.9091)) +(: cnet_isa_44ff1577e3 (IsA ponto greek_deity) (STV 1.0 0.9091)) +(: cnet_isa_69e2d9fabd (IsA pony horse) (STV 1.0 0.9091)) +(: cnet_isa_cdec8ace59 (IsA pony racehorse) (STV 1.0 0.9091)) +(: cnet_isa_0492d8c80f (IsA pony translation) (STV 1.0 0.9091)) +(: cnet_isa_450553abc3 (IsA pony_cart cart) (STV 1.0 0.9091)) +(: cnet_isa_77e70d0e99 (IsA pony_express express) (STV 1.0 0.9091)) +(: cnet_isa_6596c6cfe4 (IsA pony_trekking riding) (STV 1.0 0.9091)) +(: cnet_isa_0302abdd03 (IsA ponytail hairdo) (STV 1.0 0.9091)) +(: cnet_isa_d4c155a111 (IsA pooch dog) (STV 1.0 0.9091)) +(: cnet_isa_0829675394 (IsA pood weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_a8266cb457 (IsA poodle dog) (STV 1.0 0.9608)) +(: cnet_isa_e940bb37de (IsA poodle pet) (STV 1.0 0.9091)) +(: cnet_isa_335a03fb26 (IsA poodle small_dog_with_curly_hair) (STV 1.0 0.9091)) +(: cnet_isa_0334778503 (IsA pooecete bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_97d9ae5709 (IsA pool table_game) (STV 1.0 0.9091)) +(: cnet_isa_9f2055d7c0 (IsA pool excavation) (STV 1.0 0.9091)) +(: cnet_isa_cf2616fda0 (IsA pool organization) (STV 1.0 0.9091)) +(: cnet_isa_8b9f63c622 (IsA pool topographic_point) (STV 1.0 0.9091)) +(: cnet_isa_d6c7ca3c8a (IsA pool body_of_water) (STV 1.0 0.9091)) +(: cnet_isa_fa49d63175 (IsA pool reserve_account) (STV 1.0 0.9091)) +(: cnet_isa_70f84f0d18 (IsA pool stake) (STV 1.0 0.9091)) +(: cnet_isa_b7f2ae72ba (IsA pool_ball ball) (STV 1.0 0.9091)) +(: cnet_isa_8d9aea1cf3 (IsA pool_player player) (STV 1.0 0.9091)) +(: cnet_isa_72c4f6505b (IsA pool_table game_equipment) (STV 1.0 0.9091)) +(: cnet_isa_c6f912249b (IsA pool_table table) (STV 1.0 0.9091)) +(: cnet_isa_c39be5187c (IsA pooler partaker) (STV 1.0 0.9091)) +(: cnet_isa_21176c5be8 (IsA pooling_of_interest accounting) (STV 1.0 0.9091)) +(: cnet_isa_a7dde9c3a7 (IsA poolroom room) (STV 1.0 0.9091)) +(: cnet_isa_b0febe939a (IsA poon tree) (STV 1.0 0.9091)) +(: cnet_isa_406ff98030 (IsA poon wood) (STV 1.0 0.9091)) +(: cnet_isa_4801661ace (IsA poop_deck weather_deck) (STV 1.0 0.9091)) +(: cnet_isa_ea2cc6965f (IsA poor_box box) (STV 1.0 0.9091)) +(: cnet_isa_49f82b37ee (IsA poor_devil victim) (STV 1.0 0.9091)) +(: cnet_isa_28c93ec7dc (IsA poor_law law) (STV 1.0 0.9091)) +(: cnet_isa_9fd50d701c (IsA poor_people people) (STV 1.0 0.9091)) +(: cnet_isa_0418539b8e (IsA poor_person unfortunate) (STV 1.0 0.9091)) +(: cnet_isa_92336eb905 (IsA poor_rate rate) (STV 1.0 0.9091)) +(: cnet_isa_7edb61d37f (IsA poorhouse establishment) (STV 1.0 0.9091)) +(: cnet_isa_840f153b0a (IsA poorness fruitlessness) (STV 1.0 0.9091)) +(: cnet_isa_eea8d083bb (IsA poorness inferiority) (STV 1.0 0.9091)) +(: cnet_isa_bd310d8784 (IsA poorwill goatsucker) (STV 1.0 0.9091)) +(: cnet_isa_7f78903a8e (IsA pop sound) (STV 1.0 0.9091)) +(: cnet_isa_d1a0b84582 (IsA pop soft_drink) (STV 1.0 0.9091)) +(: cnet_isa_487059827e (IsA pop_art artistic_movement) (STV 1.0 0.9091)) +(: cnet_isa_305e232164 (IsA pop_bottle bottle) (STV 1.0 0.9091)) +(: cnet_isa_38172c2d74 (IsA pop_fly fly) (STV 1.0 0.9091)) +(: cnet_isa_85685ac4cd (IsA pop_group ensemble) (STV 1.0 0.9091)) +(: cnet_isa_205e5183e5 (IsA pop_music popular_music) (STV 1.0 0.9091)) +(: cnet_isa_a32f6f2375 (IsA pop_quiz quiz) (STV 1.0 0.9091)) +(: cnet_isa_e23cde94cc (IsA pop_tent tent) (STV 1.0 0.9091)) +(: cnet_isa_212a7fa34f (IsA pop_up_book book) (STV 1.0 0.9091)) +(: cnet_isa_03b9c26651 (IsA popcorn corn) (STV 1.0 0.9091)) +(: cnet_isa_4703a51341 (IsA popcorn_ball candy) (STV 1.0 0.9091)) +(: cnet_isa_3dada5b94b (IsA pope falliable) (STV 1.0 0.9091)) +(: cnet_isa_dde17ca81d (IsA pope leader) (STV 1.0 0.9091)) +(: cnet_isa_757dbac7dc (IsA popery practice) (STV 1.0 0.9091)) +(: cnet_isa_60e9d3777a (IsA popeye cartoon) (STV 1.0 0.9091)) +(: cnet_isa_5a6c49f07d (IsA popgun plaything) (STV 1.0 0.9091)) +(: cnet_isa_4bdc49d38c (IsA popillia arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_f503227df0 (IsA popinjay parrot) (STV 1.0 0.9091)) +(: cnet_isa_38b33b93e8 (IsA popinjay egotist) (STV 1.0 0.9091)) +(: cnet_isa_d9982b9139 (IsA poplar angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_17cc7900e1 (IsA poplar wood) (STV 1.0 0.9091)) +(: cnet_isa_29bd2f7ad0 (IsA poplin fabric) (STV 1.0 0.9091)) +(: cnet_isa_86fb4287f8 (IsA popliteal_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_27fad1dcab (IsA popliteal_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_70baf28d53 (IsA popover muffin) (STV 1.0 0.9091)) +(: cnet_isa_7dc06744d9 (IsA popper cooker) (STV 1.0 0.9091)) +(: cnet_isa_633f40a06e (IsA popper stimulant) (STV 1.0 0.9091)) +(: cnet_isa_b6e98fd7ce (IsA poppet valve) (STV 1.0 0.9091)) +(: cnet_isa_1bc759d1ac (IsA poppy flower) (STV 1.0 0.9091)) +(: cnet_isa_5eb9e291e6 (IsA poppy_mallow mallow) (STV 1.0 0.9091)) +(: cnet_isa_1b3aed7c6f (IsA poppy_seed flavorer) (STV 1.0 0.9091)) +(: cnet_isa_49a7a2729e (IsA populace people) (STV 1.0 0.9091)) +(: cnet_isa_51ad1f20f1 (IsA popular_front alliance) (STV 1.0 0.9091)) +(: cnet_isa_b0913b61b0 (IsA popular_music music_genre) (STV 1.0 0.9091)) +(: cnet_isa_6342ff55f7 (IsA popularism music) (STV 1.0 0.9091)) +(: cnet_isa_64c2b633f8 (IsA popularity quality) (STV 1.0 0.9091)) +(: cnet_isa_f252895f24 (IsA popularity_contest contest) (STV 1.0 0.9091)) +(: cnet_isa_2bf7d9c2da (IsA popularization degradation) (STV 1.0 0.9091)) +(: cnet_isa_f712b576cc (IsA popularization interpretation) (STV 1.0 0.9091)) +(: cnet_isa_f00f537dc4 (IsA popularizer communicator) (STV 1.0 0.9091)) +(: cnet_isa_1a3ba14881 (IsA population colonization) (STV 1.0 0.9091)) +(: cnet_isa_1da841c649 (IsA population group) (STV 1.0 0.9091)) +(: cnet_isa_37a3928866 (IsA population people) (STV 1.0 0.9091)) +(: cnet_isa_d3c311c181 (IsA population integer) (STV 1.0 0.9091)) +(: cnet_isa_b6b880a008 (IsA population collection) (STV 1.0 0.9091)) +(: cnet_isa_11c7ba4a11 (IsA population_commission economic_and_social_council_commission) (STV 1.0 0.9091)) +(: cnet_isa_32ec1307fa (IsA population_control social_control) (STV 1.0 0.9091)) +(: cnet_isa_3cd43e5f6b (IsA population_growth increase) (STV 1.0 0.9091)) +(: cnet_isa_21286fcfe6 (IsA population_profile profile) (STV 1.0 0.9091)) +(: cnet_isa_ca9cd5d3f0 (IsA population_shift transformation) (STV 1.0 0.9091)) +(: cnet_isa_2d6d467751 (IsA populism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_450d772045 (IsA populus hamamelid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b3e1ec4d6b (IsA porbeagle mackerel_shark) (STV 1.0 0.9091)) +(: cnet_isa_6fc7d302d6 (IsA porcelain ceramic_ware) (STV 1.0 0.9091)) +(: cnet_isa_e76612c22d (IsA porcellio arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_c520248ede (IsA porcellionidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_a9df6572f4 (IsA porch structure) (STV 1.0 0.9091)) +(: cnet_isa_18757fdb5e (IsA porcupine rodent) (STV 1.0 0.9091)) +(: cnet_isa_ba8bcf34d3 (IsA porcupine_ball meatball) (STV 1.0 0.9091)) +(: cnet_isa_ae528eb82d (IsA porcupinefish spiny_puffer) (STV 1.0 0.9091)) +(: cnet_isa_98fec91b56 (IsA pore duct) (STV 1.0 0.9091)) +(: cnet_isa_afc0306127 (IsA pore hole) (STV 1.0 0.9091)) +(: cnet_isa_1ad2177968 (IsA porgy sea_bream) (STV 1.0 0.9091)) +(: cnet_isa_f3b95dcc57 (IsA porgy saltwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_5e0cbc458e (IsA porifera phylum) (STV 1.0 0.9091)) +(: cnet_isa_6e8dbb2934 (IsA pork meat) (STV 1.0 0.9091)) +(: cnet_isa_66d08da7bd (IsA pork_and_bean dish) (STV 1.0 0.9091)) +(: cnet_isa_e8bbc1c197 (IsA pork_and_veal_goulash goulash) (STV 1.0 0.9091)) +(: cnet_isa_a835347517 (IsA pork_barrel appropriation) (STV 1.0 0.9091)) +(: cnet_isa_7cdfe202b1 (IsA pork_barreling acquisition) (STV 1.0 0.9091)) +(: cnet_isa_129d556277 (IsA pork_belly side_of_pork) (STV 1.0 0.9091)) +(: cnet_isa_eb02ad6c46 (IsA pork_butcher butcher) (STV 1.0 0.9091)) +(: cnet_isa_1a644620f2 (IsA pork_loin cut_of_pork) (STV 1.0 0.9091)) +(: cnet_isa_1731adb0a3 (IsA pork_pie pasty) (STV 1.0 0.9091)) +(: cnet_isa_fa8221bab3 (IsA pork_roast roast) (STV 1.0 0.9091)) +(: cnet_isa_72f4d331e6 (IsA pork_sausage sausage) (STV 1.0 0.9091)) +(: cnet_isa_9c77b25bcc (IsA pork_tenderloin tenderloin) (STV 1.0 0.9091)) +(: cnet_isa_1e653133c3 (IsA porkchop chop) (STV 1.0 0.9091)) +(: cnet_isa_3e9509ac5d (IsA porker hog) (STV 1.0 0.9091)) +(: cnet_isa_32312315a0 (IsA porkfish grunt) (STV 1.0 0.9091)) +(: cnet_isa_11fb5cff53 (IsA porkholt goulash) (STV 1.0 0.9091)) +(: cnet_isa_1a9bf8300a (IsA porkpie snap_brim_hat) (STV 1.0 0.9091)) +(: cnet_isa_d10e8e521f (IsA pornographer showman) (STV 1.0 0.9091)) +(: cnet_isa_725bf029c2 (IsA pornography creation) (STV 1.0 0.9091)) +(: cnet_isa_9d8af86f4d (IsA poronotus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_ff4f7caa09 (IsA porosity consistency) (STV 1.0 0.9091)) +(: cnet_isa_fe498d445b (IsA porphyra protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_40ace140fb (IsA porphyria genetic_disease) (STV 1.0 0.9091)) +(: cnet_isa_378bb7d4fe (IsA porphyrin pigment) (STV 1.0 0.9091)) +(: cnet_isa_6d8a04cc72 (IsA porphyrio bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_a40d92cf00 (IsA porphyrula bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_a4d4a05a7d (IsA porphyry igneous_rock) (STV 1.0 0.9091)) +(: cnet_isa_3a4e597a84 (IsA porpoise dolphin) (STV 1.0 0.9091)) +(: cnet_isa_52025c534d (IsA porpoise_oil animal_oil) (STV 1.0 0.9091)) +(: cnet_isa_c84cfc0102 (IsA porridge dish) (STV 1.0 0.9091)) +(: cnet_isa_210fea1936 (IsA porringer bowl) (STV 1.0 0.9091)) +(: cnet_isa_efb02078fc (IsA port fortified_wine) (STV 1.0 0.9091)) +(: cnet_isa_8d39324fcf (IsA port geographic_point) (STV 1.0 0.9091)) +(: cnet_isa_da0363ced5 (IsA port opening) (STV 1.0 0.9091)) +(: cnet_isa_5e250f29d4 (IsA port_access_coronary_bypass_surgery closed_heart_surgery) (STV 1.0 0.9091)) +(: cnet_isa_fadb494d43 (IsA port_jackson_fig fig_tree) (STV 1.0 0.9091)) +(: cnet_isa_7296b8fbdd (IsA port_jackson_heath epacris) (STV 1.0 0.9091)) +(: cnet_isa_748910a3b3 (IsA port_jackson_pine cypress_pine) (STV 1.0 0.9091)) +(: cnet_isa_55e5c61166 (IsA port_of_call seaport) (STV 1.0 0.9091)) +(: cnet_isa_4b72d94068 (IsA port_of_entry port) (STV 1.0 0.9091)) +(: cnet_isa_a7dd15b552 (IsA port_orford_cedar cedar) (STV 1.0 0.9091)) +(: cnet_isa_374663c135 (IsA port_wine_stain birthmark) (STV 1.0 0.9091)) +(: cnet_isa_206968c467 (IsA porta_hepatis orifice) (STV 1.0 0.9091)) +(: cnet_isa_13c0927486 (IsA portability movability) (STV 1.0 0.9091)) +(: cnet_isa_3e73cc2389 (IsA portable typewriter) (STV 1.0 0.9091)) +(: cnet_isa_054f3ce48c (IsA portable_computer personal_computer) (STV 1.0 0.9091)) +(: cnet_isa_749cb6d20a (IsA portable_saw circular_saw) (STV 1.0 0.9091)) +(: cnet_isa_9c7e85adcf (IsA portacaval_shunt shunt) (STV 1.0 0.9091)) +(: cnet_isa_6c860f3246 (IsA portage carry) (STV 1.0 0.9091)) +(: cnet_isa_c183bbafd5 (IsA portage track) (STV 1.0 0.9091)) +(: cnet_isa_dbe462757e (IsA portage cost) (STV 1.0 0.9091)) +(: cnet_isa_4926159441 (IsA portal entrance) (STV 1.0 0.9091)) +(: cnet_isa_e2cc5a764f (IsA portal_hypertension malignant_hypertension) (STV 1.0 0.9091)) +(: cnet_isa_86a11bc930 (IsA portal_site web_site) (STV 1.0 0.9091)) +(: cnet_isa_668f9fade3 (IsA portal_system vascular_system) (STV 1.0 0.9091)) +(: cnet_isa_4d692c1a9f (IsA portal_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_3aca094fee (IsA portcullis gate) (STV 1.0 0.9091)) +(: cnet_isa_f7369ffd89 (IsA porte court) (STV 1.0 0.9091)) +(: cnet_isa_a0b510ad37 (IsA porte_cochere canopy) (STV 1.0 0.9091)) +(: cnet_isa_72f5611be6 (IsA porte_cochere entrance) (STV 1.0 0.9091)) +(: cnet_isa_7e4d4a56a2 (IsA porter very_dark_beer) (STV 1.0 0.9091)) +(: cnet_isa_1533519d76 (IsA porter ale) (STV 1.0 0.9091)) +(: cnet_isa_7f5ef1e745 (IsA porter employee) (STV 1.0 0.9091)) +(: cnet_isa_3b88c71670 (IsA porter laborer) (STV 1.0 0.9091)) +(: cnet_isa_09d9ce58c5 (IsA porterage carry) (STV 1.0 0.9091)) +(: cnet_isa_edec4bc578 (IsA porterage charge) (STV 1.0 0.9091)) +(: cnet_isa_401024670e (IsA porterhouse beefsteak) (STV 1.0 0.9091)) +(: cnet_isa_53fc621307 (IsA portfolio function) (STV 1.0 0.9091)) +(: cnet_isa_b668a5b2a7 (IsA portfolio case) (STV 1.0 0.9091)) +(: cnet_isa_38b9be4a53 (IsA portfolio list) (STV 1.0 0.9091)) +(: cnet_isa_3452bcd05e (IsA portfolio set) (STV 1.0 0.9091)) +(: cnet_isa_5757a9149f (IsA porthole window) (STV 1.0 0.9091)) +(: cnet_isa_5d615bc407 (IsA portia_tree tulipwood_tree) (STV 1.0 0.9091)) +(: cnet_isa_0f2019e7c6 (IsA portico porch) (STV 1.0 0.9091)) +(: cnet_isa_b9a05bb132 (IsA portiere curtain) (STV 1.0 0.9091)) +(: cnet_isa_01226d2a25 (IsA portmanteau bag) (STV 1.0 0.9091)) +(: cnet_isa_a876ab7c7a (IsA portrait likeness) (STV 1.0 0.9091)) +(: cnet_isa_b552a8ffa4 (IsA portrait_camera camera) (STV 1.0 0.9091)) +(: cnet_isa_4bb570aa03 (IsA portrait_len camera_len) (STV 1.0 0.9091)) +(: cnet_isa_0aad957ea4 (IsA portraitist painter) (STV 1.0 0.9091)) +(: cnet_isa_6941b01352 (IsA portraiture depiction) (STV 1.0 0.9091)) +(: cnet_isa_6c6b382c8f (IsA portrayal acting) (STV 1.0 0.9091)) +(: cnet_isa_70a77eb234 (IsA portrayal word_picture) (STV 1.0 0.9091)) +(: cnet_isa_c2be466b06 (IsA portugal country) (STV 1.0 0.9454)) +(: cnet_isa_ca75284113 (IsA portuguese romance) (STV 1.0 0.9091)) +(: cnet_isa_815c521769 (IsA portuguese european) (STV 1.0 0.9091)) +(: cnet_isa_2dce1208eb (IsA portuguese_escudo portuguese_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_a43e0c1be2 (IsA portuguese_man_of_war siphonophore) (STV 1.0 0.9091)) +(: cnet_isa_f53c950163 (IsA portuguese_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_e3238e52c3 (IsA portulaca flower) (STV 1.0 0.9091)) +(: cnet_isa_ea611dae25 (IsA portulacaceae caryophylloid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_15ae016dbb (IsA portunidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_abb4aad0c4 (IsA portunus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_d519cde6aa (IsA portwatcher watchman) (STV 1.0 0.9091)) +(: cnet_isa_497939aa7d (IsA porzana bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_2e2ef96945 (IsA pose position) (STV 1.0 0.9091)) +(: cnet_isa_b93ea9d15b (IsA poser problem) (STV 1.0 0.9091)) +(: cnet_isa_962b04a8d3 (IsA poseur exhibitionist) (STV 1.0 0.9091)) +(: cnet_isa_bee85aaa8f (IsA poseuse poseur) (STV 1.0 0.9091)) +(: cnet_isa_cae04e6fcf (IsA position assumption) (STV 1.0 0.9091)) +(: cnet_isa_a42c466fc5 (IsA position occupation) (STV 1.0 0.9091)) +(: cnet_isa_6bae1c73c5 (IsA position bodily_property) (STV 1.0 0.9091)) +(: cnet_isa_88a3eccdaf (IsA position relation) (STV 1.0 0.9091)) +(: cnet_isa_20fd81952c (IsA position attitude) (STV 1.0 0.9091)) +(: cnet_isa_d96581c0cd (IsA position orientation) (STV 1.0 0.9091)) +(: cnet_isa_25af2b3e07 (IsA position point) (STV 1.0 0.9091)) +(: cnet_isa_f38077f720 (IsA position role) (STV 1.0 0.9091)) +(: cnet_isa_16e5fb070d (IsA position_effect consequence) (STV 1.0 0.9091)) +(: cnet_isa_d4d5d2d630 (IsA position_paper report) (STV 1.0 0.9091)) +(: cnet_isa_74a776454c (IsA position_vector vector) (STV 1.0 0.9091)) +(: cnet_isa_41c386203d (IsA positional_notation numeration_system) (STV 1.0 0.9091)) +(: cnet_isa_78f9b31e6f (IsA positive film) (STV 1.0 0.9091)) +(: cnet_isa_066ac1c79f (IsA positive_charge charge) (STV 1.0 0.9091)) +(: cnet_isa_dcd632413b (IsA positive_chemotaxis chemotaxis) (STV 1.0 0.9091)) +(: cnet_isa_318041745b (IsA positive_correlation correlation) (STV 1.0 0.9091)) +(: cnet_isa_d10fa89022 (IsA positive_degree adjective) (STV 1.0 0.9091)) +(: cnet_isa_46905da2bf (IsA positive_degree adverb) (STV 1.0 0.9091)) +(: cnet_isa_2247446720 (IsA positive_feedback feedback) (STV 1.0 0.9091)) +(: cnet_isa_1435169f3b (IsA positive_identification identification) (STV 1.0 0.9091)) +(: cnet_isa_8653a58034 (IsA positive_pole pole) (STV 1.0 0.9091)) +(: cnet_isa_87622fe59a (IsA positive_pole terminal) (STV 1.0 0.9091)) +(: cnet_isa_4bbee221d1 (IsA positive_reinforcing_stimulus reinforcing_stimulus) (STV 1.0 0.9091)) +(: cnet_isa_f28f63836e (IsA positive_stimulus stimulation) (STV 1.0 0.9091)) +(: cnet_isa_335541aca2 (IsA positiveness amount) (STV 1.0 0.9091)) +(: cnet_isa_6498d01199 (IsA positivism quality) (STV 1.0 0.9091)) +(: cnet_isa_9be92790d4 (IsA positivism empiricism) (STV 1.0 0.9091)) +(: cnet_isa_f6940aa60e (IsA positivist nonreligious_person) (STV 1.0 0.9091)) +(: cnet_isa_07e0c095b8 (IsA positivity polarity) (STV 1.0 0.9091)) +(: cnet_isa_918cf64b20 (IsA positron antilepton) (STV 1.0 0.9091)) +(: cnet_isa_f6cc8b0c8c (IsA positron_emission_tomography imaging) (STV 1.0 0.9091)) +(: cnet_isa_9a5edba54b (IsA positron_emission_tomography_scanner tomograph) (STV 1.0 0.9091)) +(: cnet_isa_c6c710fe1a (IsA posology pharmacology) (STV 1.0 0.9091)) +(: cnet_isa_38ac4f1340 (IsA posse police) (STV 1.0 0.9091)) +(: cnet_isa_053f684734 (IsA posseman man) (STV 1.0 0.9091)) +(: cnet_isa_b5d53cfa55 (IsA possession relation) (STV 1.0 0.9091)) +(: cnet_isa_636713ac38 (IsA possession control) (STV 1.0 0.9091)) +(: cnet_isa_90dde8667e (IsA possession district) (STV 1.0 0.9091)) +(: cnet_isa_f0b018dda6 (IsA possession enchantment) (STV 1.0 0.9091)) +(: cnet_isa_970032b7a3 (IsA possessiveness greed) (STV 1.0 0.9091)) +(: cnet_isa_2a6e22a953 (IsA posset drink) (STV 1.0 0.9091)) +(: cnet_isa_52b7f7bcd4 (IsA possibility expectation) (STV 1.0 0.9091)) +(: cnet_isa_bd079f62f5 (IsA possibility option) (STV 1.0 0.9091)) +(: cnet_isa_1ba1c69ad3 (IsA possibility being) (STV 1.0 0.9091)) +(: cnet_isa_e7aacb7791 (IsA possible possibility) (STV 1.0 0.9091)) +(: cnet_isa_bcc6ee3134 (IsA possible applicant) (STV 1.0 0.9091)) +(: cnet_isa_8e0587510d (IsA post delivery) (STV 1.0 0.9091)) +(: cnet_isa_ee20131fea (IsA post upright) (STV 1.0 0.9091)) +(: cnet_isa_7b5ceccaa0 (IsA post visual_signal) (STV 1.0 0.9091)) +(: cnet_isa_a76c2c1208 (IsA post position) (STV 1.0 0.9091)) +(: cnet_isa_58b405a928 (IsA post_and_lintel structure) (STV 1.0 0.9091)) +(: cnet_isa_81b3c3239f (IsA post_chaise carriage) (STV 1.0 0.9091)) +(: cnet_isa_8b67060508 (IsA post_exchange commissary) (STV 1.0 0.9091)) +(: cnet_isa_4fcb12df4a (IsA post_hoc logical_fallacy) (STV 1.0 0.9091)) +(: cnet_isa_4a640ae116 (IsA post_horn wind_instrument) (STV 1.0 0.9091)) +(: cnet_isa_7e809adedf (IsA post_horse horse) (STV 1.0 0.9091)) +(: cnet_isa_6409ccc607 (IsA post_house hostel) (STV 1.0 0.9091)) +(: cnet_isa_c50be829ae (IsA post_impressionist painter) (STV 1.0 0.9091)) +(: cnet_isa_af36fc0655 (IsA post_it notepaper) (STV 1.0 0.9091)) +(: cnet_isa_a82a171005 (IsA post_menopause maturity) (STV 1.0 0.9091)) +(: cnet_isa_6ae370852a (IsA post_oak oak) (STV 1.0 0.9091)) +(: cnet_isa_9886dcb11d (IsA post_obit_bond bond) (STV 1.0 0.9091)) +(: cnet_isa_cc0dd9b464 (IsA post_office child_s_game) (STV 1.0 0.9091)) +(: cnet_isa_da62eb6cbd (IsA post_office branch) (STV 1.0 0.9091)) +(: cnet_isa_9ea3f9eb08 (IsA post_office_box compartment) (STV 1.0 0.9091)) +(: cnet_isa_735d3e92f0 (IsA post_office_box_number mailing_address) (STV 1.0 0.9091)) +(: cnet_isa_8420790403 (IsA post_road road) (STV 1.0 0.9091)) +(: cnet_isa_be89813507 (IsA post_rotational_nystagmus nystagmus) (STV 1.0 0.9091)) +(: cnet_isa_fe148a3a5f (IsA post_traumatic_stress_disorder anxiety_disorder) (STV 1.0 0.9091)) +(: cnet_isa_d0c98842c0 (IsA postage token) (STV 1.0 0.9091)) +(: cnet_isa_9a6b06dd0c (IsA postage charge) (STV 1.0 0.9091)) +(: cnet_isa_4cdf74d5c2 (IsA postage_meter meter) (STV 1.0 0.9091)) +(: cnet_isa_600506f8a6 (IsA postal_clerk clerk) (STV 1.0 0.9091)) +(: cnet_isa_3af251bda8 (IsA postal_rate_commission independent_agency) (STV 1.0 0.9091)) +(: cnet_isa_bd3d5f7a5c (IsA postbox maildrop) (STV 1.0 0.9091)) +(: cnet_isa_cc6a5fcd5d (IsA postcard card) (STV 1.0 0.9091)) +(: cnet_isa_85efb20938 (IsA postcentral_gyrus central_gyrus) (STV 1.0 0.9091)) +(: cnet_isa_c4fde1473d (IsA postdiluvian organism) (STV 1.0 0.9091)) +(: cnet_isa_1935fb2c41 (IsA postdoc research_worker) (STV 1.0 0.9091)) +(: cnet_isa_39cb1fc50e (IsA postdoc scholar) (STV 1.0 0.9091)) +(: cnet_isa_50ecc7c3f3 (IsA postdoc grant_in_aid) (STV 1.0 0.9091)) +(: cnet_isa_2e5ac8e883 (IsA poste_restante note) (STV 1.0 0.9091)) +(: cnet_isa_2799b03775 (IsA poster sign) (STV 1.0 0.9091)) +(: cnet_isa_0580b6a389 (IsA poster_boy poster_child) (STV 1.0 0.9091)) +(: cnet_isa_7255455ae6 (IsA poster_child child) (STV 1.0 0.9091)) +(: cnet_isa_68e348c939 (IsA poster_girl poster_child) (STV 1.0 0.9091)) +(: cnet_isa_6a278b5aed (IsA posterior_cardinal_vein cardinal_vein) (STV 1.0 0.9091)) +(: cnet_isa_cde48b995d (IsA posterior_cerebral_artery cerebral_artery) (STV 1.0 0.9091)) +(: cnet_isa_36a78138c6 (IsA posterior_horn sensory_nerve) (STV 1.0 0.9091)) +(: cnet_isa_04b6883bbe (IsA posterior_meningeal_artery meningeal_artery) (STV 1.0 0.9091)) +(: cnet_isa_651da41a0a (IsA posterior_naris naris) (STV 1.0 0.9091)) +(: cnet_isa_a069bbaa40 (IsA posterior_pituitary endocrine_gland) (STV 1.0 0.9091)) +(: cnet_isa_93164659e1 (IsA posterior_serratus_muscle serratus) (STV 1.0 0.9091)) +(: cnet_isa_3e6cbea211 (IsA posterior_subcapsular_cataract cataract) (STV 1.0 0.9091)) +(: cnet_isa_61376847d2 (IsA posterior_synechia synechia) (STV 1.0 0.9091)) +(: cnet_isa_41b6a6316a (IsA posterior_temporal_artery temporal_artery) (STV 1.0 0.9091)) +(: cnet_isa_482d96f200 (IsA posterior_vein_of_left_ventricle vein) (STV 1.0 0.9091)) +(: cnet_isa_bb406352ea (IsA posteriority lateness) (STV 1.0 0.9091)) +(: cnet_isa_a3e122e6f7 (IsA posteriority position) (STV 1.0 0.9091)) +(: cnet_isa_5f32ef4d7b (IsA posterity generation) (STV 1.0 0.9091)) +(: cnet_isa_163245f7ea (IsA postern gate) (STV 1.0 0.9091)) +(: cnet_isa_bd399bc6bd (IsA postfix_notation parenthesis_free_notation) (STV 1.0 0.9091)) +(: cnet_isa_c731a01506 (IsA posthitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_65581078bf (IsA posthole hole) (STV 1.0 0.9091)) +(: cnet_isa_fd541cbf25 (IsA posthole_digger shovel) (STV 1.0 0.9091)) +(: cnet_isa_f9155725e1 (IsA posthumous_birth birth) (STV 1.0 0.9091)) +(: cnet_isa_b6e3a8c1de (IsA posthypnotic_amnesia selective_amnesia) (STV 1.0 0.9091)) +(: cnet_isa_0df95bc341 (IsA posthypnotic_suggestion suggestion) (STV 1.0 0.9091)) +(: cnet_isa_47200afd63 (IsA postilion horseman) (STV 1.0 0.9091)) +(: cnet_isa_77e5fa4693 (IsA posting list) (STV 1.0 0.9091)) +(: cnet_isa_7d98fb8dad (IsA postlude voluntary) (STV 1.0 0.9091)) +(: cnet_isa_88312ea81d (IsA postmark marker) (STV 1.0 0.9091)) +(: cnet_isa_a3d6ae35fa (IsA postmaster master) (STV 1.0 0.9091)) +(: cnet_isa_78619704af (IsA postmaster_general official) (STV 1.0 0.9091)) +(: cnet_isa_4236a94462 (IsA postmature_infant neonate) (STV 1.0 0.9091)) +(: cnet_isa_d8062e0bc9 (IsA postmistress postmaster) (STV 1.0 0.9091)) +(: cnet_isa_4ac6426d18 (IsA postmodernism genre) (STV 1.0 0.9091)) +(: cnet_isa_d56a1cb88e (IsA postmortem discussion) (STV 1.0 0.9091)) +(: cnet_isa_900f5717ec (IsA postnasal_drip symptom) (STV 1.0 0.9091)) +(: cnet_isa_275bc89ca2 (IsA postponement delay) (STV 1.0 0.9091)) +(: cnet_isa_bd00cadb7c (IsA postposition adposition) (STV 1.0 0.9091)) +(: cnet_isa_da24575107 (IsA postposition place) (STV 1.0 0.9091)) +(: cnet_isa_02ea0e6afa (IsA postscript note) (STV 1.0 0.9091)) +(: cnet_isa_8c4f063772 (IsA posttraumatic_epilepsy epilepsy) (STV 1.0 0.9091)) +(: cnet_isa_d0ea30fa25 (IsA posttraumatic_stress_disorder anxiety_disorder) (STV 1.0 0.9091)) +(: cnet_isa_5b081a064e (IsA postulant petitioner) (STV 1.0 0.9091)) +(: cnet_isa_cfe4260eab (IsA postulate proposition) (STV 1.0 0.9091)) +(: cnet_isa_2ab4f0d884 (IsA postulation declaration) (STV 1.0 0.9091)) +(: cnet_isa_050d6479d7 (IsA postulator asserter) (STV 1.0 0.9091)) +(: cnet_isa_0070162a10 (IsA postulator clergyman) (STV 1.0 0.9091)) +(: cnet_isa_82497251c7 (IsA postum coffee_substitute) (STV 1.0 0.9091)) +(: cnet_isa_3e25ab10d5 (IsA posturer person) (STV 1.0 0.9091)) +(: cnet_isa_4c1196062f (IsA posturing conceit) (STV 1.0 0.9091)) +(: cnet_isa_17b8bef868 (IsA pot vessel) (STV 1.0 0.9091)) +(: cnet_isa_940ac53446 (IsA pot cannabis) (STV 1.0 0.9091)) +(: cnet_isa_e6f26dd06e (IsA pot container) (STV 1.0 0.9091)) +(: cnet_isa_1786d51859 (IsA pot cooking_utensil) (STV 1.0 0.9091)) +(: cnet_isa_8adcc3d167 (IsA pot belly) (STV 1.0 0.9091)) +(: cnet_isa_f9fb1095eb (IsA pot stake) (STV 1.0 0.9091)) +(: cnet_isa_e822cf9cee (IsA pot containerful) (STV 1.0 0.9091)) +(: cnet_isa_6ffb7c5b9b (IsA pot_au_feu stew) (STV 1.0 0.9091)) +(: cnet_isa_93ea053386 (IsA pot_farm garden) (STV 1.0 0.9091)) +(: cnet_isa_6332f82365 (IsA pot_metal alloy) (STV 1.0 0.9091)) +(: cnet_isa_fe44e60bde (IsA pot_metal cast_iron) (STV 1.0 0.9091)) +(: cnet_isa_5144a15966 (IsA pot_plant plant) (STV 1.0 0.9091)) +(: cnet_isa_99dccb37a8 (IsA pot_roast roast) (STV 1.0 0.9091)) +(: cnet_isa_e21e8fa8e8 (IsA potage soup) (STV 1.0 0.9091)) +(: cnet_isa_ec17dcdbee (IsA potamogalidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_3811c7f908 (IsA potamogeton monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_03166d87f9 (IsA potamogetonaceae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_1d14b601a1 (IsA potamophis reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_ba1a29e9ef (IsA potash hydroxide) (STV 1.0 0.9091)) +(: cnet_isa_dcc3b771c3 (IsA potash lye) (STV 1.0 0.9091)) +(: cnet_isa_e07b3d2856 (IsA potassium element) (STV 1.0 0.9091)) +(: cnet_isa_c0379a2caa (IsA potassium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_5c5d7e4a9d (IsA potassium_argon_dating dating) (STV 1.0 0.9091)) +(: cnet_isa_e55fe190c7 (IsA potassium_bicarbonate bicarbonate) (STV 1.0 0.9091)) +(: cnet_isa_9847cc3073 (IsA potassium_bromide restrainer) (STV 1.0 0.9091)) +(: cnet_isa_c652184466 (IsA potassium_bromide salt) (STV 1.0 0.9091)) +(: cnet_isa_b20e390e48 (IsA potassium_carbonate carbonate) (STV 1.0 0.9091)) +(: cnet_isa_016d87da5e (IsA potassium_chlorate salt) (STV 1.0 0.9091)) +(: cnet_isa_78601e4af2 (IsA potassium_chloride chloride) (STV 1.0 0.9091)) +(: cnet_isa_024e5f8e3a (IsA potassium_cyanide cyanide) (STV 1.0 0.9091)) +(: cnet_isa_a5536a0ea8 (IsA potassium_dichromate salt) (STV 1.0 0.9091)) +(: cnet_isa_031e3cb2e9 (IsA potassium_ferrocyanide ferrocyanide) (STV 1.0 0.9091)) +(: cnet_isa_ab3cd47e06 (IsA potassium_iodide iodide) (STV 1.0 0.9091)) +(: cnet_isa_0469428b4b (IsA potassium_nitrate nitrate) (STV 1.0 0.9091)) +(: cnet_isa_5347d8a5f0 (IsA potassium_permanganate permanganate) (STV 1.0 0.9091)) +(: cnet_isa_bc643dddbb (IsA potation drinking) (STV 1.0 0.9091)) +(: cnet_isa_21e70124b1 (IsA potato root_vegetable) (STV 1.0 0.9091)) +(: cnet_isa_5f2a5a936f (IsA potato solanaceous_vegetable) (STV 1.0 0.9091)) +(: cnet_isa_0a36847207 (IsA potato starche) (STV 1.0 0.9091)) +(: cnet_isa_8387a682f8 (IsA potato vine) (STV 1.0 0.9091)) +(: cnet_isa_3ac643067f (IsA potato_blight blight) (STV 1.0 0.9091)) +(: cnet_isa_f33daa7713 (IsA potato_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_a9923050a7 (IsA potato_fungus fungus) (STV 1.0 0.9091)) +(: cnet_isa_035d85db14 (IsA potato_mosaic mosaic) (STV 1.0 0.9091)) +(: cnet_isa_9b964606b7 (IsA potato_moth gelechiid) (STV 1.0 0.9091)) +(: cnet_isa_0fc503ac7a (IsA potato_pancake pancake) (STV 1.0 0.9091)) +(: cnet_isa_e414cff5d5 (IsA potato_race race) (STV 1.0 0.9091)) +(: cnet_isa_317f2be0fc (IsA potato_salad salad) (STV 1.0 0.9091)) +(: cnet_isa_486ea5009b (IsA potato_scab_bacteria streptomyce) (STV 1.0 0.9091)) +(: cnet_isa_74d3cd391b (IsA potato_skin snack_food) (STV 1.0 0.9091)) +(: cnet_isa_786b6f1d95 (IsA potato_tree shrub) (STV 1.0 0.9091)) +(: cnet_isa_b45a038c08 (IsA potato_tree vine) (STV 1.0 0.9091)) +(: cnet_isa_3173c78240 (IsA potato_tuberworm caterpillar) (STV 1.0 0.9091)) +(: cnet_isa_e640d0e452 (IsA potato_vine vine) (STV 1.0 0.9091)) +(: cnet_isa_331280f600 (IsA potato_wart plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_a42b3bbea5 (IsA potato_wart_fungus fungus) (STV 1.0 0.9091)) +(: cnet_isa_39e046df9d (IsA potato_yellow_dwarf_virus plant_virus) (STV 1.0 0.9091)) +(: cnet_isa_bc32b17867 (IsA potatoe food) (STV 1.0 0.9339)) +(: cnet_isa_246a1ac687 (IsA potatoe root_vegetable) (STV 1.0 0.9339)) +(: cnet_isa_fe2a8ee998 (IsA potatoe vegetable) (STV 1.0 0.9454)) +(: cnet_isa_ad3cf31a23 (IsA potatoe_and_chicken both_food) (STV 1.0 0.9091)) +(: cnet_isa_4ac056a1c6 (IsA potatoe_and_chicken food) (STV 1.0 0.9091)) +(: cnet_isa_3dc7358d31 (IsA potawatomi algonquian) (STV 1.0 0.9091)) +(: cnet_isa_f9d204907b (IsA potawatomi algonquin) (STV 1.0 0.9091)) +(: cnet_isa_f9ca40468c (IsA potbelly stove) (STV 1.0 0.9091)) +(: cnet_isa_8cff25cd09 (IsA potboiler literary_composition) (STV 1.0 0.9091)) +(: cnet_isa_0179330bdd (IsA potboy employee) (STV 1.0 0.9091)) +(: cnet_isa_aaf391976e (IsA poteen irish) (STV 1.0 0.9091)) +(: cnet_isa_7178e12577 (IsA potemkin_village fake) (STV 1.0 0.9091)) +(: cnet_isa_8dda7684a7 (IsA potency power) (STV 1.0 0.9091)) +(: cnet_isa_d0eae94084 (IsA potency physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_f1e8ef0c87 (IsA potential possibility) (STV 1.0 0.9091)) +(: cnet_isa_2a0d9d84af (IsA potential_divider resistor) (STV 1.0 0.9091)) +(: cnet_isa_c2c74352c1 (IsA potential_energy mechanical_energy) (STV 1.0 0.9091)) +(: cnet_isa_76d92fb722 (IsA potential_unit electromagnetic_unit) (STV 1.0 0.9091)) +(: cnet_isa_36d6007ff8 (IsA potentiation synergy) (STV 1.0 0.9091)) +(: cnet_isa_066c375ebe (IsA potentilla rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4f52dd2f82 (IsA potentiometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_e323dc48a2 (IsA potentiometer potential_divider) (STV 1.0 0.9091)) +(: cnet_isa_6c783f6d6e (IsA poterium rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_76a259d74a (IsA pothead head) (STV 1.0 0.9091)) +(: cnet_isa_8bb4e8357a (IsA potherb vegetable) (STV 1.0 0.9091)) +(: cnet_isa_a5867a5d07 (IsA potholder pad) (STV 1.0 0.9091)) +(: cnet_isa_e369adec77 (IsA pothole hole) (STV 1.0 0.9091)) +(: cnet_isa_0a6e193918 (IsA potholer explorer) (STV 1.0 0.9091)) +(: cnet_isa_4918b82d40 (IsA pothook hook) (STV 1.0 0.9091)) +(: cnet_isa_1077c48475 (IsA potho liana) (STV 1.0 0.9091)) +(: cnet_isa_16e6d2834c (IsA pothunter archeologist) (STV 1.0 0.9091)) +(: cnet_isa_ef2043067d (IsA pothunter contestant) (STV 1.0 0.9091)) +(: cnet_isa_e8c4581a8b (IsA pothunter hunter) (STV 1.0 0.9091)) +(: cnet_isa_adf9e12738 (IsA potion beverage) (STV 1.0 0.9091)) +(: cnet_isa_e5b445b5e7 (IsA potlatch ceremony) (STV 1.0 0.9091)) +(: cnet_isa_8420197ced (IsA potlatch fete) (STV 1.0 0.9091)) +(: cnet_isa_352d1b6c1e (IsA potluck meal) (STV 1.0 0.9091)) +(: cnet_isa_0589fd9743 (IsA potoroinae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_c106370868 (IsA potoroo australian_mammal) (STV 1.0 0.9091)) +(: cnet_isa_6439cc01c7 (IsA potoroo rat_kangaroo) (STV 1.0 0.9091)) +(: cnet_isa_91011e235b (IsA potorous mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_53022f4759 (IsA poto mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_1d8c435634 (IsA potpie dish) (STV 1.0 0.9091)) +(: cnet_isa_493fed1b2c (IsA potpourri perfume) (STV 1.0 0.9091)) +(: cnet_isa_502c67347e (IsA potsherd shard) (STV 1.0 0.9091)) +(: cnet_isa_144c773dcf (IsA potshot shooting) (STV 1.0 0.9091)) +(: cnet_isa_4d2c3c8142 (IsA potshot criticism) (STV 1.0 0.9091)) +(: cnet_isa_9759b1941f (IsA pott_s_disease tuberculosis) (STV 1.0 0.9091)) +(: cnet_isa_17f0778f15 (IsA pottage stew) (STV 1.0 0.9091)) +(: cnet_isa_453937a0de (IsA potter_s_clay clay) (STV 1.0 0.9091)) +(: cnet_isa_02266e4a45 (IsA potter_s_field cemetery) (STV 1.0 0.9091)) +(: cnet_isa_8b14446039 (IsA potter_s_wheel wheel) (STV 1.0 0.9091)) +(: cnet_isa_1e555096ba (IsA potter craftsman) (STV 1.0 0.9091)) +(: cnet_isa_6fd39a7b8e (IsA potter_bee bee) (STV 1.0 0.9091)) +(: cnet_isa_c70bf98268 (IsA potter_wasp vespid) (STV 1.0 0.9091)) +(: cnet_isa_e985160771 (IsA pottery common_type_of_artifact) (STV 1.0 0.9091)) +(: cnet_isa_741fd21dfc (IsA pottery very_ancient_technology) (STV 1.0 0.9091)) +(: cnet_isa_a7fb148158 (IsA pottery trade) (STV 1.0 0.9091)) +(: cnet_isa_83a399581d (IsA pottery ceramic_ware) (STV 1.0 0.9091)) +(: cnet_isa_db4e025f00 (IsA pottery workshop) (STV 1.0 0.9091)) +(: cnet_isa_0560439cd4 (IsA pottle pot) (STV 1.0 0.9091)) +(: cnet_isa_19479c762e (IsA potto lemur) (STV 1.0 0.9091)) +(: cnet_isa_61b4f8c7fe (IsA potty_seat toilet) (STV 1.0 0.9091)) +(: cnet_isa_ccc8be99c3 (IsA pouch sac) (STV 1.0 0.9091)) +(: cnet_isa_1022b13651 (IsA pouch bag) (STV 1.0 0.9091)) +(: cnet_isa_8bdf642012 (IsA pouch cavity) (STV 1.0 0.9091)) +(: cnet_isa_4886c708a2 (IsA pouched_mole marsupial) (STV 1.0 0.9091)) +(: cnet_isa_cd3b67dad1 (IsA pouched_mouse dasyurid_marsupial) (STV 1.0 0.9091)) +(: cnet_isa_1ce317e6e3 (IsA poulette sauce) (STV 1.0 0.9091)) +(: cnet_isa_db842d7cc5 (IsA poultice dressing) (STV 1.0 0.9091)) +(: cnet_isa_8dd92b5eac (IsA poultry bird) (STV 1.0 0.9091)) +(: cnet_isa_b2411dd7eb (IsA poultryman merchant) (STV 1.0 0.9091)) +(: cnet_isa_f142302548 (IsA pounce leap) (STV 1.0 0.9091)) +(: cnet_isa_42a0d26b12 (IsA pound unit_of_measure_of_weight) (STV 1.0 0.9091)) +(: cnet_isa_09e929863e (IsA pound enclosure) (STV 1.0 0.9091)) +(: cnet_isa_ff5bcbeebd (IsA pound avoirdupois_unit) (STV 1.0 0.9091)) +(: cnet_isa_567d7fa45d (IsA pound force_unit) (STV 1.0 0.9091)) +(: cnet_isa_2ae8d4079a (IsA pound_cake cake) (STV 1.0 0.9091)) +(: cnet_isa_f5d1a13f5d (IsA pound_cake loaf) (STV 1.0 0.9091)) +(: cnet_isa_38aa70efe4 (IsA pound_net trap) (STV 1.0 0.9091)) +(: cnet_isa_ab6c3e7bbd (IsA pound_sign symbol) (STV 1.0 0.9091)) +(: cnet_isa_27136c3333 (IsA poundage weight) (STV 1.0 0.9091)) +(: cnet_isa_5e044a023a (IsA poundage charge) (STV 1.0 0.9091)) +(: cnet_isa_2d2fecc8db (IsA poundage fee) (STV 1.0 0.9091)) +(: cnet_isa_56beafaf4a (IsA poundal force_unit) (STV 1.0 0.9091)) +(: cnet_isa_1b5823ae7d (IsA pounder force_unit) (STV 1.0 0.9091)) +(: cnet_isa_4602babf75 (IsA pounding bump) (STV 1.0 0.9091)) +(: cnet_isa_044955c025 (IsA pound_per_square_inch pressure_unit) (STV 1.0 0.9091)) +(: cnet_isa_8d4f64d721 (IsA pouring_milk_into_glass activity_before_drinking) (STV 1.0 0.9091)) +(: cnet_isa_586aca85a7 (IsA pousse_cafe liqueur) (STV 1.0 0.9091)) +(: cnet_isa_28e6a00240 (IsA pout grimace) (STV 1.0 0.9091)) +(: cnet_isa_e7bce3be23 (IsA pouter_pigeon pigeon) (STV 1.0 0.9091)) +(: cnet_isa_15befffa28 (IsA pouteria dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_75281b346b (IsA poverty financial_condition) (STV 1.0 0.9091)) +(: cnet_isa_8985b34925 (IsA poverty_line personal_income) (STV 1.0 0.9091)) +(: cnet_isa_e5cbe5dfd9 (IsA poverty_trap situation) (STV 1.0 0.9091)) +(: cnet_isa_dea0d53ca2 (IsA powder medicine) (STV 1.0 0.9091)) +(: cnet_isa_2a8441148a (IsA powder toiletry) (STV 1.0 0.9091)) +(: cnet_isa_fc63aca481 (IsA powder solid) (STV 1.0 0.9091)) +(: cnet_isa_b872430858 (IsA powder_and_shot ammunition) (STV 1.0 0.9091)) +(: cnet_isa_bb3f12b7c3 (IsA powder_blue blue) (STV 1.0 0.9091)) +(: cnet_isa_240b6ed5a7 (IsA powder_horn container) (STV 1.0 0.9091)) +(: cnet_isa_527bb136f0 (IsA powder_keg keg) (STV 1.0 0.9091)) +(: cnet_isa_e761a942e0 (IsA powder_keg danger) (STV 1.0 0.9091)) +(: cnet_isa_9670a2c552 (IsA powder_metallurgy metallurgy) (STV 1.0 0.9091)) +(: cnet_isa_7734ddd6b8 (IsA powder_monkey assistant) (STV 1.0 0.9091)) +(: cnet_isa_2f3ceeda90 (IsA powder_photography photography) (STV 1.0 0.9091)) +(: cnet_isa_5e2f1f871f (IsA powder_post_termite dry_wood_termite) (STV 1.0 0.9091)) +(: cnet_isa_724743f14c (IsA powdered_milk milk) (STV 1.0 0.9091)) +(: cnet_isa_94f456d893 (IsA powdered_mustard emetic) (STV 1.0 0.9091)) +(: cnet_isa_65402ac1d9 (IsA powdered_mustard mustard) (STV 1.0 0.9091)) +(: cnet_isa_9474323bf2 (IsA powdered_sugar granulated_sugar) (STV 1.0 0.9091)) +(: cnet_isa_8ff2f43620 (IsA powderer person) (STV 1.0 0.9091)) +(: cnet_isa_6681359078 (IsA powderpuff pad) (STV 1.0 0.9091)) +(: cnet_isa_cd8029e562 (IsA powdery_mildew mildew) (STV 1.0 0.9091)) +(: cnet_isa_439fed84da (IsA power quality) (STV 1.0 0.9091)) +(: cnet_isa_ff2d8e5929 (IsA power causal_agent) (STV 1.0 0.9091)) +(: cnet_isa_c7aa143820 (IsA power physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_c78122490a (IsA power_brake brake) (STV 1.0 0.9091)) +(: cnet_isa_93d2a6f0e9 (IsA power_breakfast breakfast) (STV 1.0 0.9091)) +(: cnet_isa_1ac8aa9598 (IsA power_breakfast meeting) (STV 1.0 0.9091)) +(: cnet_isa_722dc235ba (IsA power_broker important_person) (STV 1.0 0.9091)) +(: cnet_isa_cd71640548 (IsA power_company utility) (STV 1.0 0.9091)) +(: cnet_isa_aee4ab6a23 (IsA power_cord cord) (STV 1.0 0.9091)) +(: cnet_isa_ab2145a4a9 (IsA power_couple couple) (STV 1.0 0.9091)) +(: cnet_isa_520323fb36 (IsA power_dive dive) (STV 1.0 0.9091)) +(: cnet_isa_58413abb67 (IsA power_drill drill) (STV 1.0 0.9091)) +(: cnet_isa_240f9397cc (IsA power_drill power_tool) (STV 1.0 0.9091)) +(: cnet_isa_b2c5f9166b (IsA power_hunger ambition) (STV 1.0 0.9091)) +(: cnet_isa_2d9230ea39 (IsA power_line cable) (STV 1.0 0.9091)) +(: cnet_isa_f5dd64460c (IsA power_loading loading) (STV 1.0 0.9091)) +(: cnet_isa_9d1004717f (IsA power_loom loom) (STV 1.0 0.9091)) +(: cnet_isa_775bc9f50a (IsA power_module module) (STV 1.0 0.9091)) +(: cnet_isa_c3f260e0ee (IsA power_mower lawn_mower) (STV 1.0 0.9091)) +(: cnet_isa_a5f271142f (IsA power_of_appointment authority) (STV 1.0 0.9091)) +(: cnet_isa_44c7ac90fa (IsA power_of_attorney legal_document) (STV 1.0 0.9091)) +(: cnet_isa_1d75de0234 (IsA power_outage breakdown) (STV 1.0 0.9091)) +(: cnet_isa_d4d3e31c95 (IsA power_pack electrical_converter) (STV 1.0 0.9091)) +(: cnet_isa_6406585389 (IsA power_play attempt) (STV 1.0 0.9091)) +(: cnet_isa_15270701de (IsA power_play football_play) (STV 1.0 0.9091)) +(: cnet_isa_5e48b28935 (IsA power_play play) (STV 1.0 0.9091)) +(: cnet_isa_4a4f6360a8 (IsA power_politic diplomacy) (STV 1.0 0.9091)) +(: cnet_isa_8959825b8b (IsA power_saw power_tool) (STV 1.0 0.9091)) +(: cnet_isa_1d4786656f (IsA power_sery sery) (STV 1.0 0.9091)) +(: cnet_isa_61569b2643 (IsA power_shovel machine) (STV 1.0 0.9091)) +(: cnet_isa_4609732438 (IsA power_station station) (STV 1.0 0.9091)) +(: cnet_isa_1c4e85e87a (IsA power_steering steering_system) (STV 1.0 0.9091)) +(: cnet_isa_f02005ad14 (IsA power_takeoff device) (STV 1.0 0.9091)) +(: cnet_isa_acd34a74ad (IsA power_tool machine) (STV 1.0 0.9091)) +(: cnet_isa_5b35c4a343 (IsA power_tool tool) (STV 1.0 0.9091)) +(: cnet_isa_1a0e1dd004 (IsA power_trip control) (STV 1.0 0.9091)) +(: cnet_isa_121fbb9c2d (IsA power_unit electromagnetic_unit) (STV 1.0 0.9091)) +(: cnet_isa_e03b3b5816 (IsA power_user computer_user) (STV 1.0 0.9091)) +(: cnet_isa_11da37991d (IsA power_walking cardiopulmonary_exercise) (STV 1.0 0.9091)) +(: cnet_isa_5394115ae1 (IsA power_worker skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_6ad86ccc01 (IsA powerhouse team) (STV 1.0 0.9091)) +(: cnet_isa_9ff293a3ba (IsA powerhouse actor) (STV 1.0 0.9091)) +(: cnet_isa_950c6a3c47 (IsA powerlessness quality) (STV 1.0 0.9091)) +(: cnet_isa_f8447d0b33 (IsA powhatan algonquian) (STV 1.0 0.9091)) +(: cnet_isa_9b244df93d (IsA powhatan algonquin) (STV 1.0 0.9091)) +(: cnet_isa_f5be29a138 (IsA powwow council) (STV 1.0 0.9091)) +(: cnet_isa_067912e78d (IsA pox contagious_disease) (STV 1.0 0.9091)) +(: cnet_isa_8f9c20d27d (IsA poxvirus animal_virus) (STV 1.0 0.9091)) +(: cnet_isa_a38c3944a8 (IsA pra_and_hd genetic_diseas_in_dog) (STV 1.0 0.9091)) +(: cnet_isa_a9912a821a (IsA pra_and_hd genetic_diseas_of_dog) (STV 1.0 0.9091)) +(: cnet_isa_d5fbe9ba44 (IsA practicability utility) (STV 1.0 0.9091)) +(: cnet_isa_bd852af98b (IsA practical_joke antic) (STV 1.0 0.9091)) +(: cnet_isa_78c4bd092b (IsA practicality utility) (STV 1.0 0.9091)) +(: cnet_isa_861bd40730 (IsA practice activity) (STV 1.0 0.9091)) +(: cnet_isa_f52bf50f47 (IsA practice implementation) (STV 1.0 0.9091)) +(: cnet_isa_9b95354836 (IsA practice use) (STV 1.0 0.9091)) +(: cnet_isa_99db752481 (IsA practice cognition) (STV 1.0 0.9091)) +(: cnet_isa_b9fe959bad (IsA practice_range range) (STV 1.0 0.9091)) +(: cnet_isa_b3f89d590c (IsA practicing_against_other_people good_way_to_learn_chess) (STV 1.0 0.9091)) +(: cnet_isa_09c6835b41 (IsA practitioner professional) (STV 1.0 0.9091)) +(: cnet_isa_da020a506c (IsA praenomen first_name) (STV 1.0 0.9091)) +(: cnet_isa_f978a0b770 (IsA praetor judge) (STV 1.0 0.9091)) +(: cnet_isa_e9c49f9596 (IsA praetorian bodyguard) (STV 1.0 0.9091)) +(: cnet_isa_3bb33c8736 (IsA praetorian_guard guard) (STV 1.0 0.9091)) +(: cnet_isa_aba300b585 (IsA praetorium tent) (STV 1.0 0.9091)) +(: cnet_isa_d8eec21085 (IsA praetorship position) (STV 1.0 0.9091)) +(: cnet_isa_a5826e61ce (IsA pragmatic_sanction imperial_decree) (STV 1.0 0.9091)) +(: cnet_isa_b4f08924e8 (IsA pragmatic linguistic) (STV 1.0 0.9091)) +(: cnet_isa_f1d8f32aaa (IsA pragmatism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_9a6ef517fb (IsA pragmatist realist) (STV 1.0 0.9091)) +(: cnet_isa_2a40cbbb81 (IsA prairia_sabbatia sabbatia) (STV 1.0 0.9091)) +(: cnet_isa_1882eff90a (IsA prairial revolutionary_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_888a7f15d2 (IsA prairie grassland) (STV 1.0 0.9091)) +(: cnet_isa_2e2b460276 (IsA prairie_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_2313445663 (IsA prairie_bird_s_foot_trefoil subshrub) (STV 1.0 0.9091)) +(: cnet_isa_47fd43f7af (IsA prairie_chicken grouse) (STV 1.0 0.9091)) +(: cnet_isa_6fdaad3684 (IsA prairie_coneflower coneflower) (STV 1.0 0.9091)) +(: cnet_isa_6289c1403c (IsA prairie_cordgrass cordgrass) (STV 1.0 0.9091)) +(: cnet_isa_b58e6532a5 (IsA prairie_dog rodent) (STV 1.0 0.9091)) +(: cnet_isa_2fcff8b46c (IsA prairie_gentian wildflower) (STV 1.0 0.9091)) +(: cnet_isa_43f666928b (IsA prairie_gourd fruit) (STV 1.0 0.9091)) +(: cnet_isa_e63c60a605 (IsA prairie_gourd gourd) (STV 1.0 0.9091)) +(: cnet_isa_30bd3cee6b (IsA prairie_mallow globe_mallow) (STV 1.0 0.9091)) +(: cnet_isa_0d9599dddb (IsA prairie_mimosa herb) (STV 1.0 0.9091)) +(: cnet_isa_f16f8d844d (IsA prairie_orchid fringed_orchis) (STV 1.0 0.9091)) +(: cnet_isa_8686e5415d (IsA prairie_rattlesnake rattlesnake) (STV 1.0 0.9091)) +(: cnet_isa_40d9138fc6 (IsA prairie_rocket flower) (STV 1.0 0.9091)) +(: cnet_isa_3b8b2f6532 (IsA prairie_smoke aven) (STV 1.0 0.9091)) +(: cnet_isa_dfd55c8fbc (IsA prairie_soil soil) (STV 1.0 0.9091)) +(: cnet_isa_d2961419a8 (IsA prairie_star wildflower) (STV 1.0 0.9091)) +(: cnet_isa_05cb182fe0 (IsA prairie_sunflower sunflower) (STV 1.0 0.9091)) +(: cnet_isa_bc15ffa443 (IsA prairie_vole vole) (STV 1.0 0.9091)) +(: cnet_isa_562edb4e29 (IsA prairie_wake_robin trillium) (STV 1.0 0.9091)) +(: cnet_isa_e885cb253e (IsA prairie_white_fringed_orchid orchid) (STV 1.0 0.9091)) +(: cnet_isa_223497f054 (IsA prairie_willow willow) (STV 1.0 0.9091)) +(: cnet_isa_2f48ac99f9 (IsA praise approval) (STV 1.0 0.9091)) +(: cnet_isa_54590e233b (IsA praise worship) (STV 1.0 0.9091)) +(: cnet_isa_37f01304b6 (IsA praiseworthiness worthiness) (STV 1.0 0.9091)) +(: cnet_isa_c975cf7f0e (IsA praising form_of_positive_reinforcement) (STV 1.0 0.9091)) +(: cnet_isa_7511f792cb (IsA praisworthiness worth) (STV 1.0 0.9091)) +(: cnet_isa_0b4fc1642e (IsA prakrit indic) (STV 1.0 0.9091)) +(: cnet_isa_b6d4b0edd3 (IsA praline candy) (STV 1.0 0.9091)) +(: cnet_isa_fa2a3cb9f7 (IsA prancer saddle_horse) (STV 1.0 0.9091)) +(: cnet_isa_aa09a01cc1 (IsA prang crash) (STV 1.0 0.9091)) +(: cnet_isa_690fd3d2f0 (IsA prankishness naughtiness) (STV 1.0 0.9091)) +(: cnet_isa_ec53066f77 (IsA prankster troublemaker) (STV 1.0 0.9091)) +(: cnet_isa_ed4a20ba34 (IsA praseodymium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_d688a1eac2 (IsA prate yak) (STV 1.0 0.9091)) +(: cnet_isa_b33a4d921e (IsA pratfall spill) (STV 1.0 0.9091)) +(: cnet_isa_f319034c75 (IsA pratincole shorebird) (STV 1.0 0.9091)) +(: cnet_isa_f508d41d32 (IsA prattler speaker) (STV 1.0 0.9091)) +(: cnet_isa_cf5f598491 (IsA praunus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_a52bca172a (IsA prawn decapod_crustacean) (STV 1.0 0.9091)) +(: cnet_isa_8cfe7bb7a2 (IsA prawn seafood) (STV 1.0 0.9091)) +(: cnet_isa_42e52e3d7e (IsA praya siphonophore) (STV 1.0 0.9091)) +(: cnet_isa_5208ff393e (IsA prayer worship) (STV 1.0 0.9091)) +(: cnet_isa_0e82010916 (IsA prayer request) (STV 1.0 0.9091)) +(: cnet_isa_bba55f891f (IsA prayer sacred_text) (STV 1.0 0.9091)) +(: cnet_isa_73baabc156 (IsA prayer religionist) (STV 1.0 0.9091)) +(: cnet_isa_34f15a5a6d (IsA prayer_book book) (STV 1.0 0.9091)) +(: cnet_isa_c7a8f049e1 (IsA prayer_meeting service) (STV 1.0 0.9091)) +(: cnet_isa_ba40a3a8fb (IsA prayer_rug rug) (STV 1.0 0.9091)) +(: cnet_isa_3e4f268d62 (IsA prayer_shawl shawl) (STV 1.0 0.9091)) +(: cnet_isa_75abcc0bf1 (IsA prayer_wheel prayer) (STV 1.0 0.9091)) +(: cnet_isa_be90848ddd (IsA praying_mantis mantis) (STV 1.0 0.9091)) +(: cnet_isa_c5aa6b39a7 (IsA pre_emptive_strike surprise_attack) (STV 1.0 0.9091)) +(: cnet_isa_d15f27c8ef (IsA pre_raphaelite artist) (STV 1.0 0.9091)) +(: cnet_isa_5486178974 (IsA pre_socratic philosopher) (STV 1.0 0.9091)) +(: cnet_isa_b5c0632680 (IsA preacher clergyman) (STV 1.0 0.9091)) +(: cnet_isa_7313120b77 (IsA preachification moralizing) (STV 1.0 0.9091)) +(: cnet_isa_74dfa5a59b (IsA preakness thoroughbred_race) (STV 1.0 0.9091)) +(: cnet_isa_0a4af7a6ea (IsA preamble introduction) (STV 1.0 0.9091)) +(: cnet_isa_50c9bddcf6 (IsA prearrangement agreement) (STV 1.0 0.9091)) +(: cnet_isa_9b265b51e2 (IsA prebend stipend) (STV 1.0 0.9091)) +(: cnet_isa_126a975096 (IsA prebendary canon) (STV 1.0 0.9091)) +(: cnet_isa_f10aa80817 (IsA precariousness dangerousness) (STV 1.0 0.9091)) +(: cnet_isa_79a213c6bf (IsA precaution measure) (STV 1.0 0.9091)) +(: cnet_isa_e531553bbf (IsA precaution circumspection) (STV 1.0 0.9091)) +(: cnet_isa_af1c23f33a (IsA precedence high_status) (STV 1.0 0.9091)) +(: cnet_isa_f8ae7f6297 (IsA precedent example) (STV 1.0 0.9091)) +(: cnet_isa_37eda5fbd3 (IsA precedent subject) (STV 1.0 0.9091)) +(: cnet_isa_f77388ded8 (IsA precentorship position) (STV 1.0 0.9091)) +(: cnet_isa_98f0a60bc2 (IsA precentral_gyrus central_gyrus) (STV 1.0 0.9091)) +(: cnet_isa_2079a1f67b (IsA preceptor teacher) (STV 1.0 0.9091)) +(: cnet_isa_3fa965f866 (IsA preceptorship position) (STV 1.0 0.9091)) +(: cnet_isa_404e964790 (IsA precession activity) (STV 1.0 0.9091)) +(: cnet_isa_f26d917273 (IsA precession motion) (STV 1.0 0.9091)) +(: cnet_isa_d71f8d8a45 (IsA precession_of_equinoxe natural_process) (STV 1.0 0.9091)) +(: cnet_isa_53bfe6d89f (IsA prechlorination chlorination) (STV 1.0 0.9091)) +(: cnet_isa_73bc91c434 (IsA precinct city_district) (STV 1.0 0.9091)) +(: cnet_isa_e8a1705775 (IsA preciosity affectedness) (STV 1.0 0.9091)) +(: cnet_isa_8fd2376964 (IsA precious_metal valuable) (STV 1.0 0.9091)) +(: cnet_isa_cceabf9296 (IsA precipice cliff) (STV 1.0 0.9091)) +(: cnet_isa_212aa1e4f5 (IsA precipitant agent) (STV 1.0 0.9091)) +(: cnet_isa_58c7ae9549 (IsA precipitate solid) (STV 1.0 0.9091)) +(: cnet_isa_5b282b40ee (IsA precipitation acceleration) (STV 1.0 0.9091)) +(: cnet_isa_19af835e5b (IsA precipitation drop) (STV 1.0 0.9091)) +(: cnet_isa_f9b0dc4f48 (IsA precipitation weather) (STV 1.0 0.9091)) +(: cnet_isa_5886d74d77 (IsA precipitation chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_f44560835c (IsA precipitation indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_33a75e989b (IsA precipitator electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_d57b132359 (IsA precipitin antibody) (STV 1.0 0.9091)) +(: cnet_isa_329de1bd0c (IsA preciseness clarity) (STV 1.0 0.9091)) +(: cnet_isa_a79fb0e7cc (IsA preciseness exactness) (STV 1.0 0.9091)) +(: cnet_isa_79e566ecdd (IsA precision_cookie cookie) (STV 1.0 0.9091)) +(: cnet_isa_accf6408d4 (IsA preclinical_trial test) (STV 1.0 0.9091)) +(: cnet_isa_960c73b416 (IsA precocious_dentition teething) (STV 1.0 0.9091)) +(: cnet_isa_d0a4479a97 (IsA precociousness intelligence) (STV 1.0 0.9091)) +(: cnet_isa_641c9f692d (IsA precognition clairvoyance) (STV 1.0 0.9091)) +(: cnet_isa_59b20b8e7b (IsA preconception opinion) (STV 1.0 0.9091)) +(: cnet_isa_ba18b51075 (IsA precondition prerequisite) (STV 1.0 0.9091)) +(: cnet_isa_8b23aacd6d (IsA precordium external_organ) (STV 1.0 0.9091)) +(: cnet_isa_b19a17d541 (IsA precursor material) (STV 1.0 0.9091)) +(: cnet_isa_8e09a8bfd5 (IsA precursor person) (STV 1.0 0.9091)) +(: cnet_isa_5ef1026037 (IsA predation hunt) (STV 1.0 0.9091)) +(: cnet_isa_bd85603c8b (IsA predator animal) (STV 1.0 0.9091)) +(: cnet_isa_3b7f754a13 (IsA predecessor precursor) (STV 1.0 0.9091)) +(: cnet_isa_399630cfb3 (IsA predestinarianism protestantism) (STV 1.0 0.9091)) +(: cnet_isa_03bde1cef2 (IsA predestination destiny) (STV 1.0 0.9091)) +(: cnet_isa_f25ff9cbf3 (IsA predestination theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_92a9ca57e6 (IsA predetermination determination) (STV 1.0 0.9091)) +(: cnet_isa_bb5f135942 (IsA predetermination decision) (STV 1.0 0.9091)) +(: cnet_isa_4c58c27dc8 (IsA predicament difficulty) (STV 1.0 0.9091)) +(: cnet_isa_ee775b7f4c (IsA predicate phrase) (STV 1.0 0.9091)) +(: cnet_isa_73df5778ac (IsA predicate term) (STV 1.0 0.9091)) +(: cnet_isa_37f7b3de57 (IsA predicate_calculus symbolic_logic) (STV 1.0 0.9091)) +(: cnet_isa_1f6524695b (IsA predicator construction) (STV 1.0 0.9091)) +(: cnet_isa_d22c0dbee1 (IsA predictability certainty) (STV 1.0 0.9091)) +(: cnet_isa_9e95683182 (IsA prediction reasoning) (STV 1.0 0.9091)) +(: cnet_isa_e9eee16bcf (IsA prediction statement) (STV 1.0 0.9091)) +(: cnet_isa_411504606b (IsA predictor computer) (STV 1.0 0.9091)) +(: cnet_isa_45cada29a9 (IsA predictor information) (STV 1.0 0.9091)) +(: cnet_isa_a79aae96dd (IsA predictor_variable variable) (STV 1.0 0.9091)) +(: cnet_isa_878c821fba (IsA predilection predisposition) (STV 1.0 0.9091)) +(: cnet_isa_266d61620b (IsA predisposition disposition) (STV 1.0 0.9091)) +(: cnet_isa_dfaec79495 (IsA predisposition inclination) (STV 1.0 0.9091)) +(: cnet_isa_2970914868 (IsA predominance dominance) (STV 1.0 0.9091)) +(: cnet_isa_81163ab39e (IsA predomination obviousness) (STV 1.0 0.9091)) +(: cnet_isa_aa785c12fe (IsA preeclampsia toxemia_of_pregnancy) (STV 1.0 0.9091)) +(: cnet_isa_421b76996a (IsA preemployment_training_program training_program) (STV 1.0 0.9091)) +(: cnet_isa_94f98919fb (IsA preemption appropriation) (STV 1.0 0.9091)) +(: cnet_isa_8cd9422795 (IsA preemption legal_right) (STV 1.0 0.9091)) +(: cnet_isa_3ebb4408bf (IsA preemption right) (STV 1.0 0.9091)) +(: cnet_isa_c1b7a167f0 (IsA preemption legal_principle) (STV 1.0 0.9091)) +(: cnet_isa_68908dc4a7 (IsA preemptive_bid bid) (STV 1.0 0.9091)) +(: cnet_isa_7f73fe17da (IsA preemptive_right preemption) (STV 1.0 0.9091)) +(: cnet_isa_9b07d9bbf0 (IsA preemptor appropriator) (STV 1.0 0.9091)) +(: cnet_isa_b52e8d3f18 (IsA preemptor bidder) (STV 1.0 0.9091)) +(: cnet_isa_72807b202d (IsA preexistence being) (STV 1.0 0.9091)) +(: cnet_isa_f8a4e8e659 (IsA prefab structure) (STV 1.0 0.9091)) +(: cnet_isa_0588a6b62b (IsA prefabrication fabrication) (STV 1.0 0.9091)) +(: cnet_isa_027a70929b (IsA prefect administrator) (STV 1.0 0.9091)) +(: cnet_isa_2c9db52ea8 (IsA prefecture position) (STV 1.0 0.9091)) +(: cnet_isa_9d96b3e210 (IsA prefecture administrative_district) (STV 1.0 0.9091)) +(: cnet_isa_e364f41db3 (IsA preference advantage) (STV 1.0 0.9091)) +(: cnet_isa_89732312aa (IsA preference option) (STV 1.0 0.9091)) +(: cnet_isa_631485baf1 (IsA preference liking) (STV 1.0 0.9091)) +(: cnet_isa_8ae34dd51f (IsA preferment promotion) (STV 1.0 0.9091)) +(: cnet_isa_2285e4f5ae (IsA preferment accusation) (STV 1.0 0.9091)) +(: cnet_isa_8b9982746f (IsA preferred_stock stock) (STV 1.0 0.9091)) +(: cnet_isa_6274bc27c2 (IsA prefiguration model) (STV 1.0 0.9091)) +(: cnet_isa_998ddcef21 (IsA prefiguration prediction) (STV 1.0 0.9091)) +(: cnet_isa_c914014e5e (IsA prefix affix) (STV 1.0 0.9091)) +(: cnet_isa_e44abf19dd (IsA prefix_notation parenthesis_free_notation) (STV 1.0 0.9091)) +(: cnet_isa_8775f99494 (IsA prefixation affixation) (STV 1.0 0.9091)) +(: cnet_isa_4d4d264fe5 (IsA preformation theory) (STV 1.0 0.9091)) +(: cnet_isa_88ae20ff76 (IsA prefrontal_lobe lobe) (STV 1.0 0.9091)) +(: cnet_isa_fca87e21e0 (IsA pregnancy physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_e0508b48c1 (IsA pregnancy_test bioassay) (STV 1.0 0.9091)) +(: cnet_isa_c2a1693d0c (IsA pregnanediol compound) (STV 1.0 0.9091)) +(: cnet_isa_86b1f704ea (IsA prehensor leg) (STV 1.0 0.9091)) +(: cnet_isa_dc86108ad7 (IsA prehistory time_period) (STV 1.0 0.9091)) +(: cnet_isa_fa84825174 (IsA prejudgment judgment) (STV 1.0 0.9091)) +(: cnet_isa_0b7b953afe (IsA prelacy position) (STV 1.0 0.9091)) +(: cnet_isa_7357e4299c (IsA prelacy clergy) (STV 1.0 0.9091)) +(: cnet_isa_6877878864 (IsA preliminary athletic_contest) (STV 1.0 0.9091)) +(: cnet_isa_af0cb11e24 (IsA preliminary origin) (STV 1.0 0.9091)) +(: cnet_isa_7934554ee2 (IsA preliminary_examination examination) (STV 1.0 0.9091)) +(: cnet_isa_9e58efc017 (IsA preliminary_prospectus course_catalog) (STV 1.0 0.9091)) +(: cnet_isa_d42d296226 (IsA prelude music) (STV 1.0 0.9091)) +(: cnet_isa_23893b4f8f (IsA premature_baby neonate) (STV 1.0 0.9091)) +(: cnet_isa_0c7b72c6ea (IsA premature_ejaculation ejaculation) (STV 1.0 0.9091)) +(: cnet_isa_cffba4929b (IsA premature_labor parturiency) (STV 1.0 0.9091)) +(: cnet_isa_b417b5c533 (IsA premature_ventricular_contraction cardiac_arrhythmia) (STV 1.0 0.9091)) +(: cnet_isa_9148ea5a4e (IsA prematureness immaturity) (STV 1.0 0.9091)) +(: cnet_isa_2d3d5a546e (IsA premeditation planning) (STV 1.0 0.9091)) +(: cnet_isa_faa0553f86 (IsA premeditation men_rea) (STV 1.0 0.9091)) +(: cnet_isa_9b2f6f0e42 (IsA premenstrual_syndrome syndrome) (STV 1.0 0.9091)) +(: cnet_isa_316353419a (IsA premiere performance) (STV 1.0 0.9091)) +(: cnet_isa_50fb220358 (IsA premiership position) (STV 1.0 0.9091)) +(: cnet_isa_fb7d373da7 (IsA premise postulate) (STV 1.0 0.9091)) +(: cnet_isa_3012ff7387 (IsA premis site) (STV 1.0 0.9091)) +(: cnet_isa_1c3d33292f (IsA premium bonus) (STV 1.0 0.9091)) +(: cnet_isa_c9c8435436 (IsA premium payment) (STV 1.0 0.9091)) +(: cnet_isa_d3a6077c63 (IsA premium prize) (STV 1.0 0.9091)) +(: cnet_isa_8a116880cd (IsA premium value) (STV 1.0 0.9091)) +(: cnet_isa_4d7b7cede3 (IsA premium_bond bond) (STV 1.0 0.9091)) +(: cnet_isa_adb82f5b58 (IsA premolar tooth) (STV 1.0 0.9091)) +(: cnet_isa_3073535ddf (IsA prenanthe asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c320fdaeea (IsA prenatal_diagnosis diagnostic_procedure) (STV 1.0 0.9091)) +(: cnet_isa_3680a7a334 (IsA preoccupancy occupation) (STV 1.0 0.9091)) +(: cnet_isa_008920f382 (IsA preoccupation cognitive_state) (STV 1.0 0.9091)) +(: cnet_isa_dd5fe4569c (IsA preoccupation idea) (STV 1.0 0.9091)) +(: cnet_isa_330a0387e6 (IsA preparation activity) (STV 1.0 0.9091)) +(: cnet_isa_3d8d93fed1 (IsA preparation harmony) (STV 1.0 0.9091)) +(: cnet_isa_bcdb62e9d9 (IsA preparation_fire fire) (STV 1.0 0.9091)) +(: cnet_isa_31deb8e107 (IsA preparatory_school secondary_school) (STV 1.0 0.9091)) +(: cnet_isa_514761876d (IsA prepayment payment) (STV 1.0 0.9091)) +(: cnet_isa_67b677b042 (IsA preponderance heaviness) (STV 1.0 0.9091)) +(: cnet_isa_1e4a5c5d11 (IsA preponderance number) (STV 1.0 0.9091)) +(: cnet_isa_332db91195 (IsA preponderance power) (STV 1.0 0.9091)) +(: cnet_isa_78f39133ae (IsA preposition function_word) (STV 1.0 0.9091)) +(: cnet_isa_9faf20b70e (IsA preposition place) (STV 1.0 0.9091)) +(: cnet_isa_7cf337350e (IsA prepositional_object object) (STV 1.0 0.9091)) +(: cnet_isa_ac75de6ee2 (IsA prepositional_phrase phrase) (STV 1.0 0.9091)) +(: cnet_isa_ea6ac8a672 (IsA prepossession condition) (STV 1.0 0.9091)) +(: cnet_isa_f4450781b2 (IsA prepuberty time_of_life) (STV 1.0 0.9091)) +(: cnet_isa_04e6cb5f15 (IsA prepuce skin) (STV 1.0 0.9091)) +(: cnet_isa_e1a9b3bbd9 (IsA prepyloric_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_79a8e90e35 (IsA prerequisite duty) (STV 1.0 0.9091)) +(: cnet_isa_413465387b (IsA prerogative right) (STV 1.0 0.9091)) +(: cnet_isa_cc625e4dd6 (IsA presage foreboding) (STV 1.0 0.9091)) +(: cnet_isa_483eda9f3c (IsA presbyope visually_impaired_person) (STV 1.0 0.9091)) +(: cnet_isa_59006c664f (IsA presbyopia hyperopia) (STV 1.0 0.9091)) +(: cnet_isa_59436b8adf (IsA presbyter elder) (STV 1.0 0.9091)) +(: cnet_isa_82384b84ae (IsA presbyterian protestant) (STV 1.0 0.9091)) +(: cnet_isa_f8d7779d99 (IsA presbyterian_church protestant_denomination) (STV 1.0 0.9091)) +(: cnet_isa_8b90a961ee (IsA presbyterianism protestantism) (STV 1.0 0.9091)) +(: cnet_isa_a9d0835f43 (IsA presbytery building) (STV 1.0 0.9091)) +(: cnet_isa_06d86e2b3c (IsA presbyte mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_078f287cdf (IsA preschool educational_institution) (STV 1.0 0.9091)) +(: cnet_isa_ca514b063c (IsA preschooler child) (STV 1.0 0.9091)) +(: cnet_isa_6691e19e45 (IsA prescience capacity) (STV 1.0 0.9091)) +(: cnet_isa_35fe520e1d (IsA prescription direction) (STV 1.0 0.9091)) +(: cnet_isa_397d943161 (IsA prescription written_communication) (STV 1.0 0.9091)) +(: cnet_isa_989f53e890 (IsA prescription_drug medicine) (STV 1.0 0.9091)) +(: cnet_isa_084973a753 (IsA prescriptive_grammar grammar) (STV 1.0 0.9091)) +(: cnet_isa_85f7f2f48f (IsA prescriptive_linguistic linguistic) (STV 1.0 0.9091)) +(: cnet_isa_163ca45fbc (IsA prescriptivism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_20543d34a9 (IsA preseason season) (STV 1.0 0.9091)) +(: cnet_isa_c852b60bc5 (IsA presence attendance) (STV 1.0 0.9091)) +(: cnet_isa_c073e563f6 (IsA presence impression) (STV 1.0 0.9091)) +(: cnet_isa_e2e891ea0d (IsA presence proximity) (STV 1.0 0.9091)) +(: cnet_isa_4e5d764834 (IsA presence spirit) (STV 1.0 0.9091)) +(: cnet_isa_14677790f1 (IsA presence being) (STV 1.0 0.9091)) +(: cnet_isa_f3b36d0a9b (IsA presence_chamber room) (STV 1.0 0.9091)) +(: cnet_isa_7faa140d4f (IsA presence_of_mind self_control) (STV 1.0 0.9091)) +(: cnet_isa_a1afb2108b (IsA presenile_dementia dementia) (STV 1.0 0.9091)) +(: cnet_isa_c813378d85 (IsA present gift) (STV 1.0 0.9339)) +(: cnet_isa_fa2247a964 (IsA present tense) (STV 1.0 0.9091)) +(: cnet_isa_fd81071df8 (IsA present time) (STV 1.0 0.9091)) +(: cnet_isa_26d286caf5 (IsA present_participle participle) (STV 1.0 0.9091)) +(: cnet_isa_7d94525c83 (IsA present_perfect perfective) (STV 1.0 0.9091)) +(: cnet_isa_452968c42f (IsA present_progressive progressive) (STV 1.0 0.9091)) +(: cnet_isa_4f06a61615 (IsA presentation ceremony) (STV 1.0 0.9091)) +(: cnet_isa_53e7e93cea (IsA presentation show) (STV 1.0 0.9091)) +(: cnet_isa_45ffe6c61b (IsA presentation display) (STV 1.0 0.9091)) +(: cnet_isa_ca094a822f (IsA presentation informing) (STV 1.0 0.9091)) +(: cnet_isa_27387bc11e (IsA presentation proposal) (STV 1.0 0.9091)) +(: cnet_isa_6f84801ed8 (IsA presentation position) (STV 1.0 0.9091)) +(: cnet_isa_d1dbe586c8 (IsA presenter advocate) (STV 1.0 0.9091)) +(: cnet_isa_b2b1699dfb (IsA presenter communicator) (STV 1.0 0.9091)) +(: cnet_isa_d4dce4edeb (IsA presentism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_65cdd9305d (IsA presentist theologian) (STV 1.0 0.9091)) +(: cnet_isa_257110e605 (IsA presentment charge) (STV 1.0 0.9091)) +(: cnet_isa_46bb8c0dca (IsA presentment due_process) (STV 1.0 0.9091)) +(: cnet_isa_b1f1bde4c4 (IsA presentness timing) (STV 1.0 0.9091)) +(: cnet_isa_c037be5859 (IsA preservation protection) (STV 1.0 0.9091)) +(: cnet_isa_8c730ea1e3 (IsA preservation organic_process) (STV 1.0 0.9091)) +(: cnet_isa_08d76b6e61 (IsA preservation condition) (STV 1.0 0.9091)) +(: cnet_isa_bf7d73d9cc (IsA preservationist reformer) (STV 1.0 0.9091)) +(: cnet_isa_de689bb8d7 (IsA preservative compound) (STV 1.0 0.9091)) +(: cnet_isa_657c81991a (IsA preserve reservation) (STV 1.0 0.9091)) +(: cnet_isa_14c0b16e84 (IsA preserve sphere) (STV 1.0 0.9091)) +(: cnet_isa_007aa29028 (IsA preserver cook) (STV 1.0 0.9091)) +(: cnet_isa_bda4ad0a8d (IsA preserver person) (STV 1.0 0.9091)) +(: cnet_isa_3f07811516 (IsA presidency position) (STV 1.0 0.9091)) +(: cnet_isa_e88b22e0d3 (IsA presidency tenure) (STV 1.0 0.9091)) +(: cnet_isa_f949f1be65 (IsA president leader) (STV 1.0 0.9091)) +(: cnet_isa_b23963f66f (IsA president politician) (STV 1.0 0.9091)) +(: cnet_isa_f16aa241f0 (IsA president academic_administrator) (STV 1.0 0.9091)) +(: cnet_isa_20c402ba06 (IsA president corporate_executive) (STV 1.0 0.9091)) +(: cnet_isa_3bdd14ddc7 (IsA president head_of_state) (STV 1.0 0.9091)) +(: cnet_isa_4c3f732b63 (IsA president presiding_officer) (STV 1.0 0.9091)) +(: cnet_isa_3ca1578df1 (IsA president_clinton democrat) (STV 1.0 0.9091)) +(: cnet_isa_961865544c (IsA president_of leader) (STV 1.0 0.9454)) +(: cnet_isa_f6d9cbeb38 (IsA president_of_united_state presidency) (STV 1.0 0.9091)) +(: cnet_isa_be64f78d0a (IsA presidential gubernatorial) (STV 1.0 0.9091)) +(: cnet_isa_3c4a337916 (IsA presidential_directive directive) (STV 1.0 0.9091)) +(: cnet_isa_cf3fe17135 (IsA president_day legal_holiday) (STV 1.0 0.9091)) +(: cnet_isa_54b8fc611d (IsA presiding_officer leader) (STV 1.0 0.9091)) +(: cnet_isa_8c1964374f (IsA presidio fortress) (STV 1.0 0.9091)) +(: cnet_isa_048de35462 (IsA presidium committee) (STV 1.0 0.9091)) +(: cnet_isa_5a9723ca60 (IsA press push) (STV 1.0 0.9091)) +(: cnet_isa_b6fd953d94 (IsA press weightlifting) (STV 1.0 0.9091)) +(: cnet_isa_5f1b7928b8 (IsA press clamp) (STV 1.0 0.9091)) +(: cnet_isa_e1c202e3b4 (IsA press machine) (STV 1.0 0.9091)) +(: cnet_isa_00043ab0e1 (IsA press print_media) (STV 1.0 0.9091)) +(: cnet_isa_53c379cccb (IsA press estate) (STV 1.0 0.9091)) +(: cnet_isa_ce4f39ef22 (IsA press_agent publicist) (STV 1.0 0.9091)) +(: cnet_isa_cefd20a10f (IsA press_box box) (STV 1.0 0.9091)) +(: cnet_isa_7147615a71 (IsA press_conference conference) (STV 1.0 0.9091)) +(: cnet_isa_b8076bbeb2 (IsA press_corp occupational_group) (STV 1.0 0.9091)) +(: cnet_isa_94f3d9389b (IsA press_gallery area) (STV 1.0 0.9091)) +(: cnet_isa_314fd50c43 (IsA press_gang detachment) (STV 1.0 0.9091)) +(: cnet_isa_3dea264563 (IsA press_lord publisher) (STV 1.0 0.9091)) +(: cnet_isa_6b04586069 (IsA press_of_sail sail) (STV 1.0 0.9091)) +(: cnet_isa_d178acc745 (IsA press_photographer photographer) (STV 1.0 0.9091)) +(: cnet_isa_7dac270ef4 (IsA pressing part) (STV 1.0 0.9091)) +(: cnet_isa_5ade35ba58 (IsA pressure force) (STV 1.0 0.9091)) +(: cnet_isa_eade945480 (IsA pressure somesthesia) (STV 1.0 0.9091)) +(: cnet_isa_1e3de95992 (IsA pressure physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_e19fbee2d8 (IsA pressure distress) (STV 1.0 0.9091)) +(: cnet_isa_be872a7545 (IsA pressure_cabin cabin) (STV 1.0 0.9091)) +(: cnet_isa_dd40d0e4fd (IsA pressure_cooker autoclave) (STV 1.0 0.9091)) +(: cnet_isa_e89f22b3bd (IsA pressure_dome dome) (STV 1.0 0.9091)) +(: cnet_isa_2fe1a3a10b (IsA pressure_gauge gauge) (STV 1.0 0.9091)) +(: cnet_isa_89203c4732 (IsA pressure_point area) (STV 1.0 0.9091)) +(: cnet_isa_0e81908993 (IsA pressure_point trouble) (STV 1.0 0.9091)) +(: cnet_isa_a63b61bd66 (IsA pressure_point point) (STV 1.0 0.9091)) +(: cnet_isa_6cd8c83157 (IsA pressure_suit protective_garment) (STV 1.0 0.9091)) +(: cnet_isa_2bc0fd10c6 (IsA pressure_unit unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_94861d3bf8 (IsA pressurized_water_reactor water_cooled_reactor) (STV 1.0 0.9091)) +(: cnet_isa_5dae01f95f (IsA prestidigitation magic_trick) (STV 1.0 0.9091)) +(: cnet_isa_ba712b906c (IsA prestige standing) (STV 1.0 0.9091)) +(: cnet_isa_68021f5a28 (IsA presumption discourtesy) (STV 1.0 0.9091)) +(: cnet_isa_555f565991 (IsA presumption audacity) (STV 1.0 0.9091)) +(: cnet_isa_becab58e01 (IsA presumption inference) (STV 1.0 0.9091)) +(: cnet_isa_a494fccd81 (IsA presupposition supposition) (STV 1.0 0.9091)) +(: cnet_isa_3364908008 (IsA preteen juvenile) (STV 1.0 0.9091)) +(: cnet_isa_ac4c9543f3 (IsA pretender claimant) (STV 1.0 0.9091)) +(: cnet_isa_cf615e319f (IsA pretense deception) (STV 1.0 0.9091)) +(: cnet_isa_f82196a0b5 (IsA pretense imagination) (STV 1.0 0.9091)) +(: cnet_isa_ad55b5739e (IsA pretense misrepresentation) (STV 1.0 0.9091)) +(: cnet_isa_5b79f16ae6 (IsA pretension artificiality) (STV 1.0 0.9091)) +(: cnet_isa_d98e5a7392 (IsA pretension claim) (STV 1.0 0.9091)) +(: cnet_isa_5da7b17eb2 (IsA pretentiousness unnaturalness) (STV 1.0 0.9091)) +(: cnet_isa_c27a78bc3d (IsA preterist theologian) (STV 1.0 0.9091)) +(: cnet_isa_7928cfb51a (IsA preterit past) (STV 1.0 0.9091)) +(: cnet_isa_fe60ea4a3e (IsA pretermission omission) (STV 1.0 0.9091)) +(: cnet_isa_c0baae413c (IsA pretext pretense) (STV 1.0 0.9091)) +(: cnet_isa_2b6f8ad4db (IsA pretrial conference) (STV 1.0 0.9091)) +(: cnet_isa_d42264e993 (IsA prettiness beauty) (STV 1.0 0.9091)) +(: cnet_isa_739ccecf46 (IsA pretzel cracker) (STV 1.0 0.9091)) +(: cnet_isa_1d9664a075 (IsA prevailing_party litigant) (STV 1.0 0.9091)) +(: cnet_isa_93e9d42b69 (IsA prevailing_westerly west_wind) (STV 1.0 0.9091)) +(: cnet_isa_ae70e088c8 (IsA prevailing_wind wind) (STV 1.0 0.9091)) +(: cnet_isa_61347cf58f (IsA prevalence generality) (STV 1.0 0.9091)) +(: cnet_isa_524a5c4226 (IsA prevalence ratio) (STV 1.0 0.9091)) +(: cnet_isa_d8b158c25b (IsA prevention hindrance) (STV 1.0 0.9091)) +(: cnet_isa_4e4f959c88 (IsA preventive remedy) (STV 1.0 0.9091)) +(: cnet_isa_86ebdcf414 (IsA preventive_medicine medicine) (STV 1.0 0.9091)) +(: cnet_isa_0f39d9431d (IsA preventive_strike strike) (STV 1.0 0.9091)) +(: cnet_isa_ece835f83c (IsA preview ad) (STV 1.0 0.9091)) +(: cnet_isa_a569e3424a (IsA preview screening) (STV 1.0 0.9091)) +(: cnet_isa_fceb9a9f78 (IsA previous_question gesture) (STV 1.0 0.9091)) +(: cnet_isa_e325cc0990 (IsA previous_question order) (STV 1.0 0.9091)) +(: cnet_isa_4fbb06a821 (IsA prevision knowing) (STV 1.0 0.9091)) +(: cnet_isa_9f35b1f5ed (IsA prevision vision) (STV 1.0 0.9091)) +(: cnet_isa_36025925ae (IsA prey animal) (STV 1.0 0.9091)) +(: cnet_isa_7ea688adef (IsA prey victim) (STV 1.0 0.9091)) +(: cnet_isa_3999b031f1 (IsA priacanthidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_a91387cc33 (IsA priacanthus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_83ea0401f5 (IsA priapism pathology) (STV 1.0 0.9091)) +(: cnet_isa_e1a970de30 (IsA price value) (STV 1.0 0.9091)) +(: cnet_isa_a890a7fd84 (IsA price worth) (STV 1.0 0.9091)) +(: cnet_isa_6c95b60f5d (IsA price reward) (STV 1.0 0.9091)) +(: cnet_isa_84bbb3fcfd (IsA price cost) (STV 1.0 0.9091)) +(: cnet_isa_e4b30d51d6 (IsA price_bracket bracket) (STV 1.0 0.9091)) +(: cnet_isa_8aef20738e (IsA price_control control) (STV 1.0 0.9091)) +(: cnet_isa_b8c6975699 (IsA price_cutting cut) (STV 1.0 0.9091)) +(: cnet_isa_45aa2123c4 (IsA price_fixing control) (STV 1.0 0.9091)) +(: cnet_isa_a0fa49f998 (IsA price_floor floor) (STV 1.0 0.9091)) +(: cnet_isa_f16386936d (IsA price_for_anthrax_spore 3_685_plus_shipping_cost) (STV 1.0 0.9091)) +(: cnet_isa_8ec6787cb7 (IsA price_freeze freeze) (STV 1.0 0.9091)) +(: cnet_isa_e2324f4f46 (IsA price_gouging pricing) (STV 1.0 0.9091)) +(: cnet_isa_243b014c38 (IsA price_increase increase) (STV 1.0 0.9091)) +(: cnet_isa_f7f77c2235 (IsA price_index index) (STV 1.0 0.9091)) +(: cnet_isa_ff66ad9659 (IsA price_list list) (STV 1.0 0.9091)) +(: cnet_isa_a33121d23f (IsA price_support subsidy) (STV 1.0 0.9091)) +(: cnet_isa_3e0ce82c74 (IsA price_tag tag) (STV 1.0 0.9091)) +(: cnet_isa_03a64b4b0a (IsA price_to_earning_ratio ratio) (STV 1.0 0.9091)) +(: cnet_isa_f52ccd238d (IsA price_war competition) (STV 1.0 0.9091)) +(: cnet_isa_0292de6a83 (IsA pricing evaluation) (STV 1.0 0.9091)) +(: cnet_isa_f460e30aff (IsA pricing_system system) (STV 1.0 0.9091)) +(: cnet_isa_196c1771b9 (IsA prick puncture) (STV 1.0 0.9091)) +(: cnet_isa_dadad19cb7 (IsA pricket deer) (STV 1.0 0.9091)) +(: cnet_isa_33a3b8bb8a (IsA pricket spike) (STV 1.0 0.9091)) +(: cnet_isa_91ed796dc1 (IsA prickle_cell skin_cell) (STV 1.0 0.9091)) +(: cnet_isa_019bf9d6f2 (IsA prickleback blennioid_fish) (STV 1.0 0.9091)) +(: cnet_isa_70614718b6 (IsA prickling somesthesia) (STV 1.0 0.9091)) +(: cnet_isa_bc5f095e97 (IsA prickly_ash tree) (STV 1.0 0.9091)) +(: cnet_isa_06d5a5b01f (IsA prickly_edged_leaf leaf) (STV 1.0 0.9091)) +(: cnet_isa_e61dea505d (IsA prickly_heat rash) (STV 1.0 0.9091)) +(: cnet_isa_a952fa8e91 (IsA prickly_lettuce compass_plant) (STV 1.0 0.9091)) +(: cnet_isa_6cfc712c42 (IsA prickly_pear edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_04555855f7 (IsA prickly_pear cactus) (STV 1.0 0.9091)) +(: cnet_isa_2ebf2e09f3 (IsA prickly_poppy herb) (STV 1.0 0.9091)) +(: cnet_isa_2646b7c658 (IsA prickly_poppy poppy) (STV 1.0 0.9091)) +(: cnet_isa_c8de793188 (IsA pride mortal_sin) (STV 1.0 0.9091)) +(: cnet_isa_0e071e7016 (IsA pride trait) (STV 1.0 0.9091)) +(: cnet_isa_8bc74cc76d (IsA pride feeling) (STV 1.0 0.9091)) +(: cnet_isa_77b50d0adb (IsA pride satisfaction) (STV 1.0 0.9091)) +(: cnet_isa_5c6c2e186d (IsA pride animal_group) (STV 1.0 0.9091)) +(: cnet_isa_503719c83e (IsA pride_of_barbado flowering_shrub) (STV 1.0 0.9091)) +(: cnet_isa_5e48c23999 (IsA pride_of_california wild_pea) (STV 1.0 0.9091)) +(: cnet_isa_6bc88358da (IsA pride_of_place position) (STV 1.0 0.9091)) +(: cnet_isa_1e302f8fd6 (IsA prie_dieu bench) (STV 1.0 0.9091)) +(: cnet_isa_94ca2b115d (IsA priest person) (STV 1.0 0.9091)) +(: cnet_isa_1e962ec62f (IsA priest clergyman) (STV 1.0 0.9091)) +(: cnet_isa_c2368d4648 (IsA priest holy_order) (STV 1.0 0.9091)) +(: cnet_isa_e0b95e2c4b (IsA priest spiritual_leader) (STV 1.0 0.9091)) +(: cnet_isa_5375af70cb (IsA priest_penitent_privilege privilege) (STV 1.0 0.9091)) +(: cnet_isa_98d02b8acc (IsA priestcraft craft) (STV 1.0 0.9091)) +(: cnet_isa_c2181bed05 (IsA priestcraft intrigue) (STV 1.0 0.9091)) +(: cnet_isa_c36653fb49 (IsA priestess priest) (STV 1.0 0.9091)) +(: cnet_isa_908aa47d4b (IsA priesthood profession) (STV 1.0 0.9091)) +(: cnet_isa_42d251eb98 (IsA priggishness propriety) (STV 1.0 0.9091)) +(: cnet_isa_898465b8e7 (IsA prima eating_apple) (STV 1.0 0.9091)) +(: cnet_isa_efd13c382f (IsA prima_ballerina ballerina) (STV 1.0 0.9091)) +(: cnet_isa_b7d9f996ee (IsA prima_donna opera_star) (STV 1.0 0.9091)) +(: cnet_isa_0ea75d642f (IsA prima_donna unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_97966fd884 (IsA primacy importance) (STV 1.0 0.9091)) +(: cnet_isa_31ceec9c00 (IsA primality property) (STV 1.0 0.9091)) +(: cnet_isa_1fe262c8a9 (IsA primaquine antimalarial) (STV 1.0 0.9091)) +(: cnet_isa_f90d256fce (IsA primary election) (STV 1.0 0.9091)) +(: cnet_isa_277fc72d61 (IsA primary flight_feather) (STV 1.0 0.9091)) +(: cnet_isa_95e53878ec (IsA primary celestial_body) (STV 1.0 0.9091)) +(: cnet_isa_728fd198f1 (IsA primary_amenorrhea amenorrhea) (STV 1.0 0.9091)) +(: cnet_isa_426aef173a (IsA primary_care medical_care) (STV 1.0 0.9091)) +(: cnet_isa_45412cdf26 (IsA primary_care_physician doctor) (STV 1.0 0.9091)) +(: cnet_isa_b9b5729628 (IsA primary_censorship armed_force_censorship) (STV 1.0 0.9091)) +(: cnet_isa_d7e6e6f126 (IsA primary_coil coil) (STV 1.0 0.9091)) +(: cnet_isa_d57653a403 (IsA primary_colour color) (STV 1.0 0.9091)) +(: cnet_isa_08c275805f (IsA primary_colour_for_light primary_colour) (STV 1.0 0.9091)) +(: cnet_isa_7f8f15b1e6 (IsA primary_colour_for_pigment primary_colour) (STV 1.0 0.9091)) +(: cnet_isa_99048419a5 (IsA primary_dentition dentition) (STV 1.0 0.9091)) +(: cnet_isa_03bff5acca (IsA primary_dysmenorrhea dysmenorrhea) (STV 1.0 0.9091)) +(: cnet_isa_92e64b2a16 (IsA primary_health_care health_care) (STV 1.0 0.9091)) +(: cnet_isa_7ff1047980 (IsA primary_sex_characteristic sex_characteristic) (STV 1.0 0.9091)) +(: cnet_isa_7e553ef997 (IsA primary_subtractive_colour_for_light primary_colour_for_light) (STV 1.0 0.9091)) +(: cnet_isa_1907f7b601 (IsA primary_syphilis syphilis) (STV 1.0 0.9091)) +(: cnet_isa_74d4f61b1d (IsA primary_tooth tooth) (STV 1.0 0.9091)) +(: cnet_isa_a9320838bb (IsA primate animal) (STV 1.0 0.9091)) +(: cnet_isa_62422e8c49 (IsA primate placental) (STV 1.0 0.9091)) +(: cnet_isa_a9de2152d0 (IsA primate animal_order) (STV 1.0 0.9091)) +(: cnet_isa_2c37988a34 (IsA primateship position) (STV 1.0 0.9091)) +(: cnet_isa_a4f980da88 (IsA primatology mammalogy) (STV 1.0 0.9091)) +(: cnet_isa_a451c78cbd (IsA prime number) (STV 1.0 0.9091)) +(: cnet_isa_982069d091 (IsA prime adulthood) (STV 1.0 0.9091)) +(: cnet_isa_e30b26433b (IsA prime canonical_hour) (STV 1.0 0.9091)) +(: cnet_isa_a1261e51ca (IsA prime_factor divisor) (STV 1.0 0.9091)) +(: cnet_isa_633ca198d8 (IsA prime_interest_rate interest_rate) (STV 1.0 0.9091)) +(: cnet_isa_4fefc7db1e (IsA prime_meridian meridian) (STV 1.0 0.9091)) +(: cnet_isa_342a9b9202 (IsA prime_number prime) (STV 1.0 0.9091)) +(: cnet_isa_2debc819a9 (IsA prime_time clock_time) (STV 1.0 0.9091)) +(: cnet_isa_9011cdc2bc (IsA primer textbook) (STV 1.0 0.9091)) +(: cnet_isa_3db933c954 (IsA primigravida gravida) (STV 1.0 0.9091)) +(: cnet_isa_5e780fe0a6 (IsA priming preparation) (STV 1.0 0.9091)) +(: cnet_isa_07ad477ac3 (IsA primipara mother) (STV 1.0 0.9091)) +(: cnet_isa_36dc2187e0 (IsA primitive formula) (STV 1.0 0.9091)) +(: cnet_isa_4b6c9b4500 (IsA primitive word) (STV 1.0 0.9091)) +(: cnet_isa_81ac199b5f (IsA primitive person) (STV 1.0 0.9091)) +(: cnet_isa_67a6898316 (IsA primitivism genre) (STV 1.0 0.9091)) +(: cnet_isa_5d60a208ff (IsA primness modesty) (STV 1.0 0.9091)) +(: cnet_isa_9506a1f52a (IsA primo part) (STV 1.0 0.9091)) +(: cnet_isa_511e895485 (IsA primogeniture inheritance) (STV 1.0 0.9091)) +(: cnet_isa_b32505b5da (IsA primordial_dwarf dwarf) (STV 1.0 0.9091)) +(: cnet_isa_7c38ed5a3d (IsA primordium organ) (STV 1.0 0.9091)) +(: cnet_isa_873304a506 (IsA primping dressing) (STV 1.0 0.9091)) +(: cnet_isa_e6c1178e95 (IsA primrose annual_plant) (STV 1.0 0.9091)) +(: cnet_isa_339dbda0ca (IsA primrose herb) (STV 1.0 0.9091)) +(: cnet_isa_17907fe222 (IsA primrose_jasmine jasmine) (STV 1.0 0.9091)) +(: cnet_isa_15cc7e87ce (IsA primrose_path way) (STV 1.0 0.9091)) +(: cnet_isa_82ecd095a8 (IsA primulaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_b08edb67d8 (IsA primulale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_888c9bfb5d (IsA primus bishop) (STV 1.0 0.9091)) +(: cnet_isa_7b33ccf574 (IsA primus_stove stove) (STV 1.0 0.9091)) +(: cnet_isa_11ea40b5e5 (IsA prince_s_feather amaranth) (STV 1.0 0.9091)) +(: cnet_isa_0ce49fcabe (IsA prince_s_feather subshrub) (STV 1.0 0.9091)) +(: cnet_isa_40203e96eb (IsA prince royalty) (STV 1.0 0.9091)) +(: cnet_isa_53ae345857 (IsA prince aristocrat) (STV 1.0 0.9091)) +(: cnet_isa_ba9d7e2c39 (IsA prince_albert frock_coat) (STV 1.0 0.9091)) +(: cnet_isa_1082672c4a (IsA prince_albert_yew conifer) (STV 1.0 0.9091)) +(: cnet_isa_08d23005b0 (IsA prince_charming suitor) (STV 1.0 0.9091)) +(: cnet_isa_a8de57149d (IsA prince_consort consort) (STV 1.0 0.9091)) +(: cnet_isa_d727c3d514 (IsA prince_consort prince) (STV 1.0 0.9091)) +(: cnet_isa_c80dd4128e (IsA prince_of_wale prince) (STV 1.0 0.9091)) +(: cnet_isa_7d39cb1358 (IsA prince_of_wale_heath erica) (STV 1.0 0.9091)) +(: cnet_isa_12eb6e87d4 (IsA princedom rank) (STV 1.0 0.9091)) +(: cnet_isa_ad6c2c9969 (IsA princeling prince) (STV 1.0 0.9091)) +(: cnet_isa_7d40ab5837 (IsA princess aristocrat) (STV 1.0 0.9091)) +(: cnet_isa_937378a528 (IsA princess_royal princess) (STV 1.0 0.9091)) +(: cnet_isa_9b946c6852 (IsA princewood tree) (STV 1.0 0.9091)) +(: cnet_isa_a11d4628a6 (IsA principal wrongdoer) (STV 1.0 0.9091)) +(: cnet_isa_b5df64620d (IsA principal educator) (STV 1.0 0.9091)) +(: cnet_isa_3883afaeee (IsA principal financier) (STV 1.0 0.9091)) +(: cnet_isa_ff1f421197 (IsA principal capital) (STV 1.0 0.9091)) +(: cnet_isa_3c361a76c8 (IsA principal debt) (STV 1.0 0.9091)) +(: cnet_isa_f908712661 (IsA principal_axis axis) (STV 1.0 0.9091)) +(: cnet_isa_fd7077634f (IsA principal_investigator scientist) (STV 1.0 0.9091)) +(: cnet_isa_81bf8160a9 (IsA principality domain) (STV 1.0 0.9091)) +(: cnet_isa_85e9173d22 (IsA principalship position) (STV 1.0 0.9091)) +(: cnet_isa_1bf8766f57 (IsA principle generalization) (STV 1.0 0.9091)) +(: cnet_isa_94e1bd5baf (IsA principle law) (STV 1.0 0.9091)) +(: cnet_isa_02ef59b51e (IsA principle value) (STV 1.0 0.9091)) +(: cnet_isa_f6f675c575 (IsA principle rule) (STV 1.0 0.9091)) +(: cnet_isa_84c13b21bf (IsA principle_of_equivalence principle) (STV 1.0 0.9091)) +(: cnet_isa_4a65a02708 (IsA principle_of_liquid_displacement principle) (STV 1.0 0.9091)) +(: cnet_isa_f1ef0f074b (IsA principle_of_relativity law) (STV 1.0 0.9091)) +(: cnet_isa_6ab0c55fbb (IsA principle_of_superposition principle) (STV 1.0 0.9091)) +(: cnet_isa_5c18641660 (IsA prinia bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_ae886000f9 (IsA print copy) (STV 1.0 0.9091)) +(: cnet_isa_c54035102a (IsA print fabric) (STV 1.0 0.9091)) +(: cnet_isa_1b10b23180 (IsA print graphic_art) (STV 1.0 0.9091)) +(: cnet_isa_21b48ff3ca (IsA print handiness) (STV 1.0 0.9091)) +(: cnet_isa_51ba8cbc3c (IsA print written_communication) (STV 1.0 0.9091)) +(: cnet_isa_eafcd6ec18 (IsA print_buffer buffer) (STV 1.0 0.9091)) +(: cnet_isa_48769f97a5 (IsA print_media medium) (STV 1.0 0.9091)) +(: cnet_isa_ae79202d95 (IsA print_run run) (STV 1.0 0.9091)) +(: cnet_isa_dc923d2100 (IsA print_seller art_dealer) (STV 1.0 0.9091)) +(: cnet_isa_e201d19fe7 (IsA print_shop workshop) (STV 1.0 0.9091)) +(: cnet_isa_c7d035a47c (IsA printed_circuit computer_circuit) (STV 1.0 0.9091)) +(: cnet_isa_309b82b0de (IsA printer_s_devil apprentice) (STV 1.0 0.9091)) +(: cnet_isa_298d3a4b09 (IsA printer_s_ink ink) (STV 1.0 0.9091)) +(: cnet_isa_97d4607497 (IsA printer machine) (STV 1.0 0.9091)) +(: cnet_isa_4bc943c8d9 (IsA printer peripheral) (STV 1.0 0.9091)) +(: cnet_isa_e02260ec33 (IsA printer printer) (STV 1.0 0.9091)) +(: cnet_isa_a81b74a898 (IsA printer skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_c313f0a801 (IsA printer_cable cable) (STV 1.0 0.9091)) +(: cnet_isa_ee04c89b6a (IsA printer slow_sometime) (STV 1.0 0.9091)) +(: cnet_isa_d93c847405 (IsA printing writing) (STV 1.0 0.9091)) +(: cnet_isa_7b2a7fd68c (IsA printing commercial_enterprise) (STV 1.0 0.9091)) +(: cnet_isa_28a8034b51 (IsA printing_concern company) (STV 1.0 0.9091)) +(: cnet_isa_89d9b4e8c0 (IsA printing_operation operation) (STV 1.0 0.9091)) +(: cnet_isa_cb212e8578 (IsA printing_unit unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_01a78a3326 (IsA printmaker artist) (STV 1.0 0.9091)) +(: cnet_isa_680bbf12a5 (IsA printmaking art) (STV 1.0 0.9091)) +(: cnet_isa_5acdbf16d2 (IsA printout output_signal) (STV 1.0 0.9091)) +(: cnet_isa_1bb315923e (IsA priodonte mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_c2b98bb787 (IsA prion particle) (STV 1.0 0.9091)) +(: cnet_isa_e937904705 (IsA prionace fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_4988e6bf0e (IsA prionotus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_123f148705 (IsA prior superior) (STV 1.0 0.9091)) +(: cnet_isa_bb367014e2 (IsA priority earliness) (STV 1.0 0.9091)) +(: cnet_isa_92299f9f69 (IsA priority_processing data_processing) (STV 1.0 0.9091)) +(: cnet_isa_611c64edb0 (IsA priorship position) (STV 1.0 0.9091)) +(: cnet_isa_f05e749ff3 (IsA priory religious_residence) (STV 1.0 0.9091)) +(: cnet_isa_8fb95c8968 (IsA prism optical_device) (STV 1.0 0.9091)) +(: cnet_isa_f780f7574f (IsA prism polyhedron) (STV 1.0 0.9091)) +(: cnet_isa_b059019246 (IsA prismatoid polyhedron) (STV 1.0 0.9091)) +(: cnet_isa_0aa32d8718 (IsA prismoid prismatoid) (STV 1.0 0.9091)) +(: cnet_isa_f09dc4352c (IsA prison correctional_institution) (STV 1.0 0.9091)) +(: cnet_isa_da5e361294 (IsA prison situation) (STV 1.0 0.9091)) +(: cnet_isa_c68e7dd43c (IsA prison_camp camp) (STV 1.0 0.9091)) +(: cnet_isa_67fbc1bbcf (IsA prison_chaplain chaplain) (STV 1.0 0.9091)) +(: cnet_isa_7911a1f942 (IsA prison_guard keeper) (STV 1.0 0.9091)) +(: cnet_isa_72a29abf9e (IsA prison_guard lawman) (STV 1.0 0.9091)) +(: cnet_isa_65f2305417 (IsA prison_term term) (STV 1.0 0.9091)) +(: cnet_isa_6c3eed30ef (IsA prisoner_s_base game) (STV 1.0 0.9091)) +(: cnet_isa_ff0a7f9e8e (IsA prisoner unfortunate) (STV 1.0 0.9091)) +(: cnet_isa_15b77c4d24 (IsA prisoner_of_war prisoner) (STV 1.0 0.9091)) +(: cnet_isa_3ea2ebb40f (IsA prisoner_of_war_censorship military_censorship) (STV 1.0 0.9091)) +(: cnet_isa_6440c5b79c (IsA prison failed_social_political_experiment) (STV 1.0 0.9454)) +(: cnet_isa_0532ac2d39 (IsA pristidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_1acdfc8785 (IsA pristis fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_bc9afd62fd (IsA pritzelago dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_74823bb946 (IsA privacy major_issue_in_medicine) (STV 1.0 0.9091)) +(: cnet_isa_05f9629275 (IsA privacy reclusiveness) (STV 1.0 0.9091)) +(: cnet_isa_a2b25aaf31 (IsA privacy isolation) (STV 1.0 0.9091)) +(: cnet_isa_d2749e64ab (IsA private enlisted_man) (STV 1.0 0.9091)) +(: cnet_isa_92f9692d74 (IsA private_citizen citizen) (STV 1.0 0.9091)) +(: cnet_isa_ce8267c73f (IsA private_detective detective) (STV 1.0 0.9091)) +(: cnet_isa_ff04ddaa74 (IsA private_foundation charity) (STV 1.0 0.9091)) +(: cnet_isa_e25f8359ac (IsA private_line telephone_line) (STV 1.0 0.9091)) +(: cnet_isa_b43cbd0a27 (IsA private_nuisance nuisance) (STV 1.0 0.9091)) +(: cnet_isa_50b5eb71c6 (IsA private_practice practice) (STV 1.0 0.9091)) +(: cnet_isa_7d68acc28f (IsA private_school school) (STV 1.0 0.9091)) +(: cnet_isa_a3fa84eabc (IsA private_treaty selling) (STV 1.0 0.9091)) +(: cnet_isa_a39b0b3f2f (IsA privateer warship) (STV 1.0 0.9091)) +(: cnet_isa_c11fdd7bb3 (IsA privateer crewman) (STV 1.0 0.9091)) +(: cnet_isa_4a99d75437 (IsA privateer officer) (STV 1.0 0.9091)) +(: cnet_isa_40c1cbe423 (IsA privation social_control) (STV 1.0 0.9091)) +(: cnet_isa_0835113136 (IsA privation poverty) (STV 1.0 0.9091)) +(: cnet_isa_e1d8955e74 (IsA privet shrub) (STV 1.0 0.9091)) +(: cnet_isa_5e012a97af (IsA privet_hedge hedge) (STV 1.0 0.9091)) +(: cnet_isa_bc0aa2b4a6 (IsA privilege advantage) (STV 1.0 0.9091)) +(: cnet_isa_46cb52d458 (IsA privilege right) (STV 1.0 0.9091)) +(: cnet_isa_c54519bc03 (IsA privilege_of_floor prerogative) (STV 1.0 0.9091)) +(: cnet_isa_836a923d0c (IsA privy_council council) (STV 1.0 0.9091)) +(: cnet_isa_bc3107284b (IsA privy_purse allowance) (STV 1.0 0.9091)) +(: cnet_isa_6c2a14b9e9 (IsA prix_de_rome award) (STV 1.0 0.9091)) +(: cnet_isa_cfc896f841 (IsA prix_fixe menu) (STV 1.0 0.9091)) +(: cnet_isa_acdb9e2971 (IsA prix_goncourt award) (STV 1.0 0.9091)) +(: cnet_isa_bb5b98d319 (IsA prize gift) (STV 1.0 0.9091)) +(: cnet_isa_0dd2f111bb (IsA prize_money prize) (STV 1.0 0.9091)) +(: cnet_isa_93e020ea0e (IsA prize_winner winner) (STV 1.0 0.9091)) +(: cnet_isa_3a55251a44 (IsA prizefight boxing_match) (STV 1.0 0.9091)) +(: cnet_isa_3d6e7fe6b1 (IsA prizefighter boxer) (STV 1.0 0.9091)) +(: cnet_isa_c304bbb108 (IsA pro argument) (STV 1.0 0.9091)) +(: cnet_isa_0c3e742b36 (IsA pro_choice_faction faction) (STV 1.0 0.9091)) +(: cnet_isa_542e7443d1 (IsA pro_life_faction faction) (STV 1.0 0.9091)) +(: cnet_isa_17831f6661 (IsA pro_lifer advocate) (STV 1.0 0.9091)) +(: cnet_isa_c2a172f628 (IsA proaccelerin coagulation_factor) (STV 1.0 0.9091)) +(: cnet_isa_b644aefcce (IsA probabilism casuistry) (STV 1.0 0.9091)) +(: cnet_isa_c9eb34d58a (IsA probabilism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_385aa869d7 (IsA probability measure) (STV 1.0 0.9091)) +(: cnet_isa_1592f39d82 (IsA probability quality) (STV 1.0 0.9091)) +(: cnet_isa_f1d5f1b3bf (IsA probability_theorist mathematician) (STV 1.0 0.9091)) +(: cnet_isa_eaf5ce093d (IsA probability_theory applied_mathematic) (STV 1.0 0.9091)) +(: cnet_isa_290c8458a1 (IsA probable applicant) (STV 1.0 0.9091)) +(: cnet_isa_45a7307c81 (IsA probable_cause evidence) (STV 1.0 0.9091)) +(: cnet_isa_882a5dc968 (IsA probate validation) (STV 1.0 0.9091)) +(: cnet_isa_9e961bfbae (IsA probate certificate) (STV 1.0 0.9091)) +(: cnet_isa_a4ac8848c2 (IsA probate_court court) (STV 1.0 0.9091)) +(: cnet_isa_7483d48131 (IsA probation liberation) (STV 1.0 0.9091)) +(: cnet_isa_edf4018e99 (IsA probation trial_period) (STV 1.0 0.9091)) +(: cnet_isa_0bb63779da (IsA probation_officer officeholder) (STV 1.0 0.9091)) +(: cnet_isa_76540f6817 (IsA probationer criminal) (STV 1.0 0.9091)) +(: cnet_isa_43b95ea023 (IsA probationer nurse) (STV 1.0 0.9091)) +(: cnet_isa_cab058ef2f (IsA probe exploration) (STV 1.0 0.9091)) +(: cnet_isa_49c6394de4 (IsA probe research) (STV 1.0 0.9091)) +(: cnet_isa_638cde66ec (IsA probe surgical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_0d0edfb86a (IsA probe inquiry) (STV 1.0 0.9091)) +(: cnet_isa_c96bd15821 (IsA probenecid medicine) (STV 1.0 0.9091)) +(: cnet_isa_157fe31d29 (IsA probiotic_microflora bacteria) (STV 1.0 0.9091)) +(: cnet_isa_08d7f94bb9 (IsA probity integrity) (STV 1.0 0.9091)) +(: cnet_isa_57881250eb (IsA problem question) (STV 1.0 0.9091)) +(: cnet_isa_3a958eb614 (IsA problem difficulty) (STV 1.0 0.9091)) +(: cnet_isa_1eeb1f137b (IsA problem_solver thinker) (STV 1.0 0.9091)) +(: cnet_isa_d5bde50110 (IsA problem_solving cognitive_psychology) (STV 1.0 0.9091)) +(: cnet_isa_9dd94a6422 (IsA problem_solving thinking) (STV 1.0 0.9091)) +(: cnet_isa_72959e7913 (IsA problem unsolvable) (STV 1.0 0.9091)) +(: cnet_isa_99bcb2c097 (IsA proboscidea animal_order) (STV 1.0 0.9091)) +(: cnet_isa_4a23e8cdd3 (IsA proboscidea plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_318c74a3e1 (IsA proboscidean placental) (STV 1.0 0.9091)) +(: cnet_isa_34fdcfe85e (IsA proboscis snout) (STV 1.0 0.9091)) +(: cnet_isa_4df72ff7a6 (IsA proboscis nose) (STV 1.0 0.9091)) +(: cnet_isa_a8b354127c (IsA proboscis_monkey old_world_monkey) (STV 1.0 0.9091)) +(: cnet_isa_9932bca4a3 (IsA procarbazine antineoplastic) (STV 1.0 0.9091)) +(: cnet_isa_7e62d15eb2 (IsA procavia mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_1fff7103d2 (IsA procaviidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_47c56aac2a (IsA procedure activity) (STV 1.0 0.9091)) +(: cnet_isa_0e1d1ce573 (IsA procedure proceeding) (STV 1.0 0.9091)) +(: cnet_isa_59b437ad95 (IsA proceeding due_process) (STV 1.0 0.9091)) +(: cnet_isa_81bc39b8e2 (IsA procellaria bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_c95c719e7c (IsA procellariidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_7b38e9db84 (IsA procellariiform_seabird pelagic_bird) (STV 1.0 0.9091)) +(: cnet_isa_814e29664d (IsA procellariiforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_b88452cb43 (IsA process physical_entity) (STV 1.0 0.9091)) +(: cnet_isa_0188a29a73 (IsA process body_part) (STV 1.0 0.9091)) +(: cnet_isa_83a86360ca (IsA process cognition) (STV 1.0 0.9091)) +(: cnet_isa_75eee628c9 (IsA process_cheese cheese) (STV 1.0 0.9091)) +(: cnet_isa_47ba4a93c6 (IsA process_printing printing) (STV 1.0 0.9091)) +(: cnet_isa_c6191bac42 (IsA process_server messenger) (STV 1.0 0.9091)) +(: cnet_isa_2bbf6326f7 (IsA processing process) (STV 1.0 0.9091)) +(: cnet_isa_33b369c92e (IsA processing_time time_interval) (STV 1.0 0.9091)) +(: cnet_isa_6e8584371c (IsA procession collection) (STV 1.0 0.9091)) +(: cnet_isa_312c971803 (IsA procession group_action) (STV 1.0 0.9091)) +(: cnet_isa_2846df5cc4 (IsA processional religious_music) (STV 1.0 0.9091)) +(: cnet_isa_31cc9e375d (IsA processional_march marching_music) (STV 1.0 0.9091)) +(: cnet_isa_79fbcef036 (IsA processor business) (STV 1.0 0.9091)) +(: cnet_isa_9d4359fe50 (IsA processor worker) (STV 1.0 0.9091)) +(: cnet_isa_db33502257 (IsA prochlorperazine antiemetic) (STV 1.0 0.9091)) +(: cnet_isa_67875e8139 (IsA prochlorperazine major_tranquilizer) (STV 1.0 0.9091)) +(: cnet_isa_83aa5c1c85 (IsA prociphilus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_d79220d103 (IsA proclamation act) (STV 1.0 0.9091)) +(: cnet_isa_afa5f84a55 (IsA proclivity inclination) (STV 1.0 0.9091)) +(: cnet_isa_7f286aca70 (IsA procnia bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_5cc5de88ca (IsA proconsul hominoid) (STV 1.0 0.9091)) +(: cnet_isa_9815b19235 (IsA proconsul governor) (STV 1.0 0.9091)) +(: cnet_isa_f55265d586 (IsA proconsul official) (STV 1.0 0.9091)) +(: cnet_isa_3daf93e4e9 (IsA proconsulship position) (STV 1.0 0.9091)) +(: cnet_isa_cc68efd7ff (IsA proconvertin coagulation_factor) (STV 1.0 0.9091)) +(: cnet_isa_9c85a86c2d (IsA procrastination delay) (STV 1.0 0.9091)) +(: cnet_isa_55db8c1688 (IsA procrastinator delayer) (STV 1.0 0.9091)) +(: cnet_isa_0ebc47ff12 (IsA procrustean_standard standard) (STV 1.0 0.9091)) +(: cnet_isa_4bcaae25df (IsA proctalgia pain) (STV 1.0 0.9091)) +(: cnet_isa_21c52c93b8 (IsA proctitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_31749e57c7 (IsA proctologist specialist) (STV 1.0 0.9091)) +(: cnet_isa_f67d6c9e55 (IsA proctology medicine) (STV 1.0 0.9091)) +(: cnet_isa_197cdc23c6 (IsA proctoplasty plastic_surgery) (STV 1.0 0.9091)) +(: cnet_isa_383123e8f9 (IsA proctor supervisor) (STV 1.0 0.9091)) +(: cnet_isa_68a20d64a6 (IsA proctorship position) (STV 1.0 0.9091)) +(: cnet_isa_c1ebaeb49a (IsA proctoscope endoscope) (STV 1.0 0.9091)) +(: cnet_isa_be80d44845 (IsA proctoscopy endoscopy) (STV 1.0 0.9091)) +(: cnet_isa_0a027cfc00 (IsA procurator bureaucrat) (STV 1.0 0.9091)) +(: cnet_isa_5191479b20 (IsA procurement acquisition) (STV 1.0 0.9091)) +(: cnet_isa_d26533b0fb (IsA procurer acquirer) (STV 1.0 0.9091)) +(: cnet_isa_330275647d (IsA procuress pimp) (STV 1.0 0.9091)) +(: cnet_isa_6b5eb3e18c (IsA procursive_epilepsy epilepsy) (STV 1.0 0.9091)) +(: cnet_isa_4f1af03f3f (IsA procyon mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_aa74010103 (IsA procyonid carnivore) (STV 1.0 0.9091)) +(: cnet_isa_fbacba68ca (IsA procyonidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_6011047d0a (IsA prod device) (STV 1.0 0.9091)) +(: cnet_isa_bfb1cb99e4 (IsA prodigal consumer) (STV 1.0 0.9091)) +(: cnet_isa_d54a5368c1 (IsA prodigy exemplar) (STV 1.0 0.9091)) +(: cnet_isa_be20e2b653 (IsA prodigy genius) (STV 1.0 0.9091)) +(: cnet_isa_de72d436a9 (IsA prodrome symptom) (STV 1.0 0.9091)) +(: cnet_isa_878fa713eb (IsA produce food) (STV 1.0 0.9091)) +(: cnet_isa_4cc47ce343 (IsA producer cause) (STV 1.0 0.9091)) +(: cnet_isa_9526b09641 (IsA producer creator) (STV 1.0 0.9091)) +(: cnet_isa_a209ffd9a3 (IsA producer_gas gas) (STV 1.0 0.9091)) +(: cnet_isa_e3f6d07e25 (IsA producer_price_index price_index) (STV 1.0 0.9091)) +(: cnet_isa_0a9f1fe7ab (IsA product result) (STV 1.0 0.9091)) +(: cnet_isa_14a5044b0b (IsA product creation) (STV 1.0 0.9091)) +(: cnet_isa_a8c33c570d (IsA product quantity) (STV 1.0 0.9091)) +(: cnet_isa_24418596a3 (IsA product consequence) (STV 1.0 0.9091)) +(: cnet_isa_89d8c7096a (IsA product chemical) (STV 1.0 0.9091)) +(: cnet_isa_88292f0a11 (IsA product_development development) (STV 1.0 0.9091)) +(: cnet_isa_844e2644a9 (IsA product_introduction introduction) (STV 1.0 0.9091)) +(: cnet_isa_6ce1e549cb (IsA product_moment_correlation_coefficient correlation_coefficient) (STV 1.0 0.9091)) +(: cnet_isa_244c7436f1 (IsA product_research marketing_research) (STV 1.0 0.9091)) +(: cnet_isa_8d249ca87d (IsA production act) (STV 1.0 0.9091)) +(: cnet_isa_c291cc5a8d (IsA production creation) (STV 1.0 0.9091)) +(: cnet_isa_d24cda03a6 (IsA production display) (STV 1.0 0.9091)) +(: cnet_isa_71ca74f449 (IsA production presentation) (STV 1.0 0.9091)) +(: cnet_isa_e6825a004a (IsA production industry) (STV 1.0 0.9091)) +(: cnet_isa_aec9588bee (IsA production exhibition) (STV 1.0 0.9091)) +(: cnet_isa_f10f0c9ff0 (IsA production_cost cost) (STV 1.0 0.9091)) +(: cnet_isa_82fea29324 (IsA production_line mechanical_system) (STV 1.0 0.9091)) +(: cnet_isa_f51924bfbc (IsA production_order order) (STV 1.0 0.9091)) +(: cnet_isa_367e7c77da (IsA productiveness fruitfulness) (STV 1.0 0.9091)) +(: cnet_isa_43e22e183e (IsA productivity ratio) (STV 1.0 0.9091)) +(: cnet_isa_46dc3b08ad (IsA proenzyme organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_923122a3fc (IsA profanation degradation) (STV 1.0 0.9091)) +(: cnet_isa_d6340f69d9 (IsA profanation irreverence) (STV 1.0 0.9091)) +(: cnet_isa_fe7e3bd7f2 (IsA profaneness unholiness) (STV 1.0 0.9091)) +(: cnet_isa_d71d6bbfc6 (IsA profaneness irreverence) (STV 1.0 0.9091)) +(: cnet_isa_1d46b1b345 (IsA profanity utterance) (STV 1.0 0.9091)) +(: cnet_isa_1607f5293f (IsA profession occupation) (STV 1.0 0.9091)) +(: cnet_isa_d8278fcff1 (IsA profession affirmation) (STV 1.0 0.9091)) +(: cnet_isa_ab4af34fb6 (IsA profession avowal) (STV 1.0 0.9091)) +(: cnet_isa_453be224a7 (IsA profession occupational_group) (STV 1.0 0.9091)) +(: cnet_isa_07c0468abc (IsA professional adult) (STV 1.0 0.9091)) +(: cnet_isa_625292800f (IsA professional athlete) (STV 1.0 0.9091)) +(: cnet_isa_6c22b3f12f (IsA professional_association association) (STV 1.0 0.9091)) +(: cnet_isa_f3f2926b83 (IsA professional_baseball baseball) (STV 1.0 0.9091)) +(: cnet_isa_3c1ea6ffd7 (IsA professional_baseball sport) (STV 1.0 0.9091)) +(: cnet_isa_eb9da949a9 (IsA professional_basketball basketball) (STV 1.0 0.9091)) +(: cnet_isa_cf122fedf1 (IsA professional_basketball sport) (STV 1.0 0.9091)) +(: cnet_isa_4f71639d42 (IsA professional_boxing boxing) (STV 1.0 0.9091)) +(: cnet_isa_8d4f5c3596 (IsA professional_boxing sport) (STV 1.0 0.9091)) +(: cnet_isa_1c2d6a58d3 (IsA professional_football football) (STV 1.0 0.9091)) +(: cnet_isa_c4ae1480ab (IsA professional_football sport) (STV 1.0 0.9091)) +(: cnet_isa_b40e792fdf (IsA professional_golf golf) (STV 1.0 0.9091)) +(: cnet_isa_c7aaf4659e (IsA professional_golf sport) (STV 1.0 0.9091)) +(: cnet_isa_4687fffeae (IsA professional_organization organization) (STV 1.0 0.9091)) +(: cnet_isa_89030cfe1d (IsA professional_relation social_relation) (STV 1.0 0.9091)) +(: cnet_isa_db83510d89 (IsA professional_tennis sport) (STV 1.0 0.9091)) +(: cnet_isa_f42d1ef78e (IsA professional_tennis tennis) (STV 1.0 0.9091)) +(: cnet_isa_6b24c94f5e (IsA professional_wrestling sport) (STV 1.0 0.9091)) +(: cnet_isa_b760627109 (IsA professional_wrestling wrestling) (STV 1.0 0.9091)) +(: cnet_isa_b8a483c4c3 (IsA professionalism expertness) (STV 1.0 0.9091)) +(: cnet_isa_2acdbee542 (IsA professionalization social_process) (STV 1.0 0.9091)) +(: cnet_isa_154b1cbc6a (IsA professor academician) (STV 1.0 0.9091)) +(: cnet_isa_223f6aa74e (IsA professorship position) (STV 1.0 0.9091)) +(: cnet_isa_ffb470da42 (IsA proficiency competence) (STV 1.0 0.9091)) +(: cnet_isa_3b5d711c05 (IsA proficiency skillfulness) (STV 1.0 0.9091)) +(: cnet_isa_c2eb72a641 (IsA profile biography) (STV 1.0 0.9091)) +(: cnet_isa_e23ad0ac21 (IsA profile chart) (STV 1.0 0.9091)) +(: cnet_isa_01cf19d5e7 (IsA profile cross_section) (STV 1.0 0.9091)) +(: cnet_isa_0e4d51f064 (IsA profile outline) (STV 1.0 0.9091)) +(: cnet_isa_8c67177fbf (IsA profiling identification) (STV 1.0 0.9091)) +(: cnet_isa_82cc1e3abb (IsA profit advantage) (STV 1.0 0.9091)) +(: cnet_isa_f32a1b62be (IsA profit_and_loss account) (STV 1.0 0.9091)) +(: cnet_isa_63d3127d16 (IsA profit_sharing share) (STV 1.0 0.9091)) +(: cnet_isa_7b4f796f0f (IsA profit_taker stock_trader) (STV 1.0 0.9091)) +(: cnet_isa_ead831737b (IsA profitableness profit) (STV 1.0 0.9091)) +(: cnet_isa_dd0188dac4 (IsA profiteer capitalist) (STV 1.0 0.9091)) +(: cnet_isa_465875addb (IsA profiterole pastry) (STV 1.0 0.9091)) +(: cnet_isa_ca8aafca7d (IsA profligacy intemperance) (STV 1.0 0.9091)) +(: cnet_isa_a3bc76818f (IsA profoundness ultimacy) (STV 1.0 0.9091)) +(: cnet_isa_883a4e8298 (IsA profundity depth) (STV 1.0 0.9091)) +(: cnet_isa_ca6f7a1da7 (IsA profusion abundance) (STV 1.0 0.9091)) +(: cnet_isa_ffe64e51be (IsA progenitor ancestor) (STV 1.0 0.9091)) +(: cnet_isa_6e78f02373 (IsA progeria abnormality) (STV 1.0 0.9091)) +(: cnet_isa_1d26d7b909 (IsA progesterone progestin) (STV 1.0 0.9091)) +(: cnet_isa_62cae45521 (IsA progestin steroid_hormone) (STV 1.0 0.9091)) +(: cnet_isa_85a9525c57 (IsA prognathism condition) (STV 1.0 0.9091)) +(: cnet_isa_a7576a29d2 (IsA progne bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_d2257b676f (IsA prognosis medical_diagnosis) (STV 1.0 0.9091)) +(: cnet_isa_eff3451049 (IsA prognosis prediction) (STV 1.0 0.9091)) +(: cnet_isa_3b0b100a56 (IsA program set_of_instruction) (STV 1.0 0.9339)) +(: cnet_isa_bb1fe5f406 (IsA program performance) (STV 1.0 0.9091)) +(: cnet_isa_618a3fb0b1 (IsA program system) (STV 1.0 0.9091)) +(: cnet_isa_a9424e1245 (IsA program announcement) (STV 1.0 0.9091)) +(: cnet_isa_5299313415 (IsA program software) (STV 1.0 0.9091)) +(: cnet_isa_c2b23e05c9 (IsA program_music musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_00b98859db (IsA program_trading trading) (STV 1.0 0.9091)) +(: cnet_isa_852d0969a5 (IsA programma decree) (STV 1.0 0.9091)) +(: cnet_isa_68be687680 (IsA programmer computer_user) (STV 1.0 0.9091)) +(: cnet_isa_046792529f (IsA programmer engineer) (STV 1.0 0.9091)) +(: cnet_isa_706c82c0c9 (IsA programming creating_by_mental_act) (STV 1.0 0.9091)) +(: cnet_isa_35b86c6d7f (IsA programming_language artificial_language) (STV 1.0 0.9091)) +(: cnet_isa_86f46124f2 (IsA progress motion) (STV 1.0 0.9091)) +(: cnet_isa_ca47c6452e (IsA progress change_of_location) (STV 1.0 0.9091)) +(: cnet_isa_7c33eb6896 (IsA progress_report report) (STV 1.0 0.9091)) +(: cnet_isa_5fc483f4a0 (IsA progression sery) (STV 1.0 0.9091)) +(: cnet_isa_b880125ff7 (IsA progressive tense) (STV 1.0 0.9091)) +(: cnet_isa_e50ae13c36 (IsA progressive_aspect durative) (STV 1.0 0.9091)) +(: cnet_isa_935f8ac924 (IsA progressive_party party) (STV 1.0 0.9091)) +(: cnet_isa_c050eb3258 (IsA progressive_rock rock_n_roll) (STV 1.0 0.9091)) +(: cnet_isa_9a8c9aa3b2 (IsA progressive_tax tax) (STV 1.0 0.9091)) +(: cnet_isa_9c1b07ddc0 (IsA progressive_vaccinia vaccinia) (STV 1.0 0.9091)) +(: cnet_isa_0001b36c2b (IsA progressiveness changeableness) (STV 1.0 0.9091)) +(: cnet_isa_e5a028bf2f (IsA progressivism political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_a362fe7492 (IsA progymnosperm gymnosperm) (STV 1.0 0.9091)) +(: cnet_isa_ae75f9deff (IsA prohibition action) (STV 1.0 0.9091)) +(: cnet_isa_444541fbfb (IsA prohibition decree) (STV 1.0 0.9091)) +(: cnet_isa_244f2d69c0 (IsA prohibition refusal) (STV 1.0 0.9091)) +(: cnet_isa_98922e06e8 (IsA prohibition law) (STV 1.0 0.9091)) +(: cnet_isa_5da7f61e31 (IsA prohibition time_period) (STV 1.0 0.9091)) +(: cnet_isa_8acbdfe2c9 (IsA prohibition_party party) (STV 1.0 0.9091)) +(: cnet_isa_6399570913 (IsA project task) (STV 1.0 0.9091)) +(: cnet_isa_391263f875 (IsA project plan) (STV 1.0 0.9091)) +(: cnet_isa_c53a923f12 (IsA projectile weapon) (STV 1.0 0.9091)) +(: cnet_isa_83f73a25a2 (IsA projection representation) (STV 1.0 0.9091)) +(: cnet_isa_e71630aaff (IsA projection structure) (STV 1.0 0.9091)) +(: cnet_isa_5d7a4e050a (IsA projection prediction) (STV 1.0 0.9091)) +(: cnet_isa_763a895ecc (IsA projection visual_communication) (STV 1.0 0.9091)) +(: cnet_isa_79b4bdb0bd (IsA projection acoustic_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_139a914ee8 (IsA projection defense_mechanism) (STV 1.0 0.9091)) +(: cnet_isa_d348942419 (IsA projection convex_shape) (STV 1.0 0.9091)) +(: cnet_isa_b0cf91b4ec (IsA projectionist skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_e84344870c (IsA projective_geometry geometry) (STV 1.0 0.9091)) +(: cnet_isa_e852e02e9c (IsA projective_test personality_test) (STV 1.0 0.9091)) +(: cnet_isa_f9749392e1 (IsA projector optical_device) (STV 1.0 0.9091)) +(: cnet_isa_a5a3d8595b (IsA projector optical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_15fcca316f (IsA prokaryote organism) (STV 1.0 0.9091)) +(: cnet_isa_0eb25e0b75 (IsA prolactin gonadotropin) (STV 1.0 0.9091)) +(: cnet_isa_c1bd1c3f1e (IsA prolactin lactogen) (STV 1.0 0.9091)) +(: cnet_isa_d1cfa7b173 (IsA prolamine simple_protein) (STV 1.0 0.9091)) +(: cnet_isa_f1ce0fe862 (IsA prolapse disability) (STV 1.0 0.9091)) +(: cnet_isa_275175d542 (IsA prolate_cycloid cycloid) (STV 1.0 0.9091)) +(: cnet_isa_f40ebdfa68 (IsA prolegomenon introduction) (STV 1.0 0.9091)) +(: cnet_isa_b9649523e0 (IsA prolepsis rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_8bdac06c00 (IsA proletarian commoner) (STV 1.0 0.9091)) +(: cnet_isa_8314d8314e (IsA proliferation growth) (STV 1.0 0.9091)) +(: cnet_isa_85a64e2ed7 (IsA proliferation increase) (STV 1.0 0.9091)) +(: cnet_isa_79de559089 (IsA proline amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_cff0f9362c (IsA prolixity verboseness) (STV 1.0 0.9091)) +(: cnet_isa_9faf035dfd (IsA prolog declarative_programming_language) (STV 1.0 0.9091)) +(: cnet_isa_27ad81e5be (IsA prolog programming_language) (STV 1.0 0.9339)) +(: cnet_isa_f7cd03e7ef (IsA prologue introduction) (STV 1.0 0.9091)) +(: cnet_isa_c961f92114 (IsA prolongation continuance) (STV 1.0 0.9091)) +(: cnet_isa_83855f7085 (IsA prolonge rope) (STV 1.0 0.9091)) +(: cnet_isa_39ff9dbe92 (IsA prolonge_knot knot) (STV 1.0 0.9091)) +(: cnet_isa_c545993ef4 (IsA prolonged_interrogation torture) (STV 1.0 0.9091)) +(: cnet_isa_acc2ab0fa7 (IsA promenade country_dance) (STV 1.0 0.9091)) +(: cnet_isa_86b12ea48f (IsA promenade march) (STV 1.0 0.9091)) +(: cnet_isa_657ce08932 (IsA promenade walk) (STV 1.0 0.9091)) +(: cnet_isa_1fa71d7ab1 (IsA promenade ball) (STV 1.0 0.9091)) +(: cnet_isa_f880f6ca2f (IsA promethium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_94f5c97c32 (IsA prominence importance) (STV 1.0 0.9091)) +(: cnet_isa_8dd615e66f (IsA prominence standing) (STV 1.0 0.9091)) +(: cnet_isa_c73904fd6a (IsA promiscuity sexual_activity) (STV 1.0 0.9091)) +(: cnet_isa_104ad3bdf4 (IsA promise expectation) (STV 1.0 0.9091)) +(: cnet_isa_af611443e9 (IsA promise commitment) (STV 1.0 0.9091)) +(: cnet_isa_169eab98b7 (IsA promise speech_act) (STV 1.0 0.9091)) +(: cnet_isa_6d4d761d63 (IsA promised_land heaven) (STV 1.0 0.9091)) +(: cnet_isa_f28a05adde (IsA promisee communicator) (STV 1.0 0.9091)) +(: cnet_isa_e8f4889417 (IsA promiser communicator) (STV 1.0 0.9091)) +(: cnet_isa_2f49ed7dc9 (IsA promontory natural_elevation) (STV 1.0 0.9091)) +(: cnet_isa_cee7fe53c9 (IsA promoter advertiser) (STV 1.0 0.9091)) +(: cnet_isa_0b1a486c9e (IsA promotion change) (STV 1.0 0.9091)) +(: cnet_isa_4ec4e97f60 (IsA promotion encouragement) (STV 1.0 0.9091)) +(: cnet_isa_e4d1d514d5 (IsA promotion message) (STV 1.0 0.9091)) +(: cnet_isa_0e7a2cb182 (IsA promotion_system system) (STV 1.0 0.9091)) +(: cnet_isa_53980a121d (IsA promotional_expense business_expense) (STV 1.0 0.9091)) +(: cnet_isa_285b84e5c9 (IsA prompt cue) (STV 1.0 0.9091)) +(: cnet_isa_99cf86eab7 (IsA prompt electronic_communication) (STV 1.0 0.9091)) +(: cnet_isa_07e9543b48 (IsA prompt_box booth) (STV 1.0 0.9091)) +(: cnet_isa_87fc29fbc2 (IsA promptbook script) (STV 1.0 0.9091)) +(: cnet_isa_29ec07532b (IsA prompter device) (STV 1.0 0.9091)) +(: cnet_isa_dbf1c97a28 (IsA prompter assistant) (STV 1.0 0.9091)) +(: cnet_isa_50c2830ac1 (IsA promptness celerity) (STV 1.0 0.9091)) +(: cnet_isa_4e57d439f6 (IsA promulgation announcement) (STV 1.0 0.9091)) +(: cnet_isa_be6f868aeb (IsA promulgator lawgiver) (STV 1.0 0.9091)) +(: cnet_isa_a18a68e341 (IsA promycelium basidium) (STV 1.0 0.9091)) +(: cnet_isa_5eb2884f98 (IsA pronation rotation) (STV 1.0 0.9091)) +(: cnet_isa_ce2e21553d (IsA pronator muscle) (STV 1.0 0.9091)) +(: cnet_isa_f756388291 (IsA proneness disposition) (STV 1.0 0.9091)) +(: cnet_isa_21a5f45e60 (IsA prong projection) (STV 1.0 0.9091)) +(: cnet_isa_fa5fd1dce9 (IsA pronghorn ruminant) (STV 1.0 0.9091)) +(: cnet_isa_c8e2ca8a65 (IsA pronominal_phrase phrase) (STV 1.0 0.9091)) +(: cnet_isa_2d705bf2e6 (IsA pronoun part_of_speech) (STV 1.0 0.9091)) +(: cnet_isa_bcf56aaab0 (IsA pronoun function_word) (STV 1.0 0.9091)) +(: cnet_isa_8eac825843 (IsA pronouncement declaration) (STV 1.0 0.9091)) +(: cnet_isa_ec4ea4e28a (IsA pronucleus nucleus) (STV 1.0 0.9091)) +(: cnet_isa_df46188de8 (IsA pronunciation speech) (STV 1.0 0.9091)) +(: cnet_isa_f3fd6d43f6 (IsA pronunciation utterance) (STV 1.0 0.9091)) +(: cnet_isa_62d18736df (IsA proof photographic_print) (STV 1.0 0.9091)) +(: cnet_isa_106c50ea64 (IsA proof evidence) (STV 1.0 0.9091)) +(: cnet_isa_052d5f225d (IsA proof argument) (STV 1.0 0.9091)) +(: cnet_isa_379f151e97 (IsA proof impression) (STV 1.0 0.9091)) +(: cnet_isa_522e0a8b14 (IsA proof measure) (STV 1.0 0.9091)) +(: cnet_isa_6ba0ebb382 (IsA proof_spirit alcohol) (STV 1.0 0.9091)) +(: cnet_isa_d76e970eec (IsA proofreader printer) (STV 1.0 0.9091)) +(: cnet_isa_83380db786 (IsA prop support) (STV 1.0 0.9091)) +(: cnet_isa_6e77edfc04 (IsA prop_root root) (STV 1.0 0.9091)) +(: cnet_isa_29161ded51 (IsA propaedeutic course) (STV 1.0 0.9091)) +(: cnet_isa_18e78309dc (IsA propaganda information) (STV 1.0 0.9091)) +(: cnet_isa_045b37d856 (IsA propagandist communicator) (STV 1.0 0.9091)) +(: cnet_isa_d44ad9ae49 (IsA propagation dissemination) (STV 1.0 0.9091)) +(: cnet_isa_354fac46f1 (IsA propagation physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_2d98d1c7d9 (IsA propagator botanist) (STV 1.0 0.9091)) +(: cnet_isa_cfb8dd3f52 (IsA propagator communicator) (STV 1.0 0.9091)) +(: cnet_isa_6876219335 (IsA propanal aldehyde) (STV 1.0 0.9091)) +(: cnet_isa_a5694f3230 (IsA propane alkane) (STV 1.0 0.9091)) +(: cnet_isa_aebbbdb39d (IsA propane fuel) (STV 1.0 0.9339)) +(: cnet_isa_f70f6fff5c (IsA propane gas) (STV 1.0 0.9091)) +(: cnet_isa_1524b2e2c8 (IsA propanol alcohol) (STV 1.0 0.9091)) +(: cnet_isa_58646121b1 (IsA proparoxytone word) (STV 1.0 0.9091)) +(: cnet_isa_f3a0d03e7e (IsA propellant substance) (STV 1.0 0.9091)) +(: cnet_isa_ed3f0f0164 (IsA propellant_explosive explosive) (STV 1.0 0.9091)) +(: cnet_isa_acd11715cd (IsA propeller mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_35729edaaf (IsA propeller_plane airplane) (STV 1.0 0.9091)) +(: cnet_isa_c2be55d51a (IsA propenal aldehyde) (STV 1.0 0.9091)) +(: cnet_isa_a01b12a9b8 (IsA propenoate salt) (STV 1.0 0.9091)) +(: cnet_isa_d96e8f511a (IsA propenoic_acid carboxylic_acid) (STV 1.0 0.9091)) +(: cnet_isa_4d3c18c8b7 (IsA propenonitrile nitrile) (STV 1.0 0.9091)) +(: cnet_isa_5ea8e70bf8 (IsA proper_fraction fraction) (STV 1.0 0.9091)) +(: cnet_isa_56289a7eac (IsA proper_noun noun) (STV 1.0 0.9091)) +(: cnet_isa_ed37253f68 (IsA property object) (STV 1.0 0.9091)) +(: cnet_isa_62ab5ba443 (IsA property attribute) (STV 1.0 0.9091)) +(: cnet_isa_78c7ad5573 (IsA property concept) (STV 1.0 0.9091)) +(: cnet_isa_e3941f66ba (IsA property possession) (STV 1.0 0.9091)) +(: cnet_isa_137b408449 (IsA property_line boundary_line) (STV 1.0 0.9091)) +(: cnet_isa_820ab1fbf6 (IsA property_man stagehand) (STV 1.0 0.9091)) +(: cnet_isa_bf8cf42a66 (IsA property_right ownership) (STV 1.0 0.9091)) +(: cnet_isa_33a50bbcc7 (IsA property_settlement settlement) (STV 1.0 0.9091)) +(: cnet_isa_c6c78c7eb8 (IsA property_tax capital_levy) (STV 1.0 0.9091)) +(: cnet_isa_55f1db1869 (IsA prophase phase_of_cell_division) (STV 1.0 0.9091)) +(: cnet_isa_89850de62f (IsA prophase_cell cell_chromosome_duplicated) (STV 1.0 0.9091)) +(: cnet_isa_c6fc28224d (IsA prophase_cell cell_undergoing_meiosis) (STV 1.0 0.9091)) +(: cnet_isa_8165929629 (IsA prophase_cell eukaryotic_cell) (STV 1.0 0.9091)) +(: cnet_isa_f5d939c4b3 (IsA prophecy prediction) (STV 1.0 0.9091)) +(: cnet_isa_061364256c (IsA prophet diviner) (STV 1.0 0.9091)) +(: cnet_isa_e41764c09a (IsA prophet religionist) (STV 1.0 0.9091)) +(: cnet_isa_cf993d7222 (IsA prophetess prophet) (STV 1.0 0.9091)) +(: cnet_isa_a7aac3351e (IsA prophylaxis prevention) (STV 1.0 0.9091)) +(: cnet_isa_07796a3d61 (IsA prophyll plant_part) (STV 1.0 0.9091)) +(: cnet_isa_1eeeaf9acd (IsA propionic_acid carboxylic_acid) (STV 1.0 0.9091)) +(: cnet_isa_df1aee0760 (IsA propjet propeller_plane) (STV 1.0 0.9091)) +(: cnet_isa_7fc75dae6c (IsA proportion magnitude) (STV 1.0 0.9091)) +(: cnet_isa_46cf0103fd (IsA proportion placement) (STV 1.0 0.9091)) +(: cnet_isa_27af4b4850 (IsA proportion magnitude_relation) (STV 1.0 0.9091)) +(: cnet_isa_0e575e37b5 (IsA proportion quotient) (STV 1.0 0.9091)) +(: cnet_isa_a5d5234e77 (IsA proportional quantity) (STV 1.0 0.9091)) +(: cnet_isa_b9ec77f6fa (IsA proportional_counter_tube counter_tube) (STV 1.0 0.9091)) +(: cnet_isa_5dfaca6f6d (IsA proportional_font font) (STV 1.0 0.9091)) +(: cnet_isa_b9a0e85c5d (IsA proportional_representation representation) (STV 1.0 0.9091)) +(: cnet_isa_64490273d3 (IsA proportional_tax tax) (STV 1.0 0.9091)) +(: cnet_isa_1c2aeb7762 (IsA proportionality ratio) (STV 1.0 0.9091)) +(: cnet_isa_aa6f9bde83 (IsA proposal message) (STV 1.0 0.9091)) +(: cnet_isa_76f6585486 (IsA proposal speech_act) (STV 1.0 0.9091)) +(: cnet_isa_5861f41d11 (IsA proposer originator) (STV 1.0 0.9091)) +(: cnet_isa_611b11186f (IsA proposition undertaking) (STV 1.0 0.9091)) +(: cnet_isa_7ce36119eb (IsA proposition offer) (STV 1.0 0.9091)) +(: cnet_isa_a5c2a1d95a (IsA proposition statement) (STV 1.0 0.9091)) +(: cnet_isa_2871598cef (IsA propositional_logic symbolic_logic) (STV 1.0 0.9091)) +(: cnet_isa_f4c287eb1d (IsA propositus person) (STV 1.0 0.9091)) +(: cnet_isa_4fd7796eba (IsA proprietary_colony colony) (STV 1.0 0.9091)) +(: cnet_isa_abacb315d6 (IsA proprietorship ownership) (STV 1.0 0.9091)) +(: cnet_isa_d1acadf0f7 (IsA proprietorship_certificate security) (STV 1.0 0.9091)) +(: cnet_isa_77c24b0d93 (IsA proprietress owner) (STV 1.0 0.9091)) +(: cnet_isa_91422db84b (IsA propriety demeanor) (STV 1.0 0.9091)) +(: cnet_isa_25a55e830d (IsA proprioception interoception) (STV 1.0 0.9091)) +(: cnet_isa_ab1081d8c5 (IsA proprioceptor nerve_ending) (STV 1.0 0.9091)) +(: cnet_isa_167dbd9d3a (IsA proprionamide amide) (STV 1.0 0.9091)) +(: cnet_isa_862095c742 (IsA prop deference) (STV 1.0 0.9091)) +(: cnet_isa_ba0c25c0b1 (IsA propulsion act) (STV 1.0 0.9091)) +(: cnet_isa_ec495d90ee (IsA propulsion force) (STV 1.0 0.9091)) +(: cnet_isa_39b1035793 (IsA propulsion_system system) (STV 1.0 0.9091)) +(: cnet_isa_8b630f85e8 (IsA propyl group) (STV 1.0 0.9091)) +(: cnet_isa_513f885218 (IsA propylene gas) (STV 1.0 0.9091)) +(: cnet_isa_fa8b9c5e7e (IsA propylene_glycol antifreeze) (STV 1.0 0.9091)) +(: cnet_isa_db8ed34b50 (IsA propylene_glycol humectant) (STV 1.0 0.9091)) +(: cnet_isa_a9eabdd290 (IsA propylthiouracil organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_c906b58c25 (IsA proration coordination) (STV 1.0 0.9091)) +(: cnet_isa_3bcd8939a7 (IsA prorogation discontinuance) (STV 1.0 0.9091)) +(: cnet_isa_a315895f97 (IsA prosauropoda animal_order) (STV 1.0 0.9091)) +(: cnet_isa_cd48fdecea (IsA proscenium stage) (STV 1.0 0.9091)) +(: cnet_isa_d9e5c34a88 (IsA proscenium wall) (STV 1.0 0.9091)) +(: cnet_isa_250c771821 (IsA proscenium_arch arch) (STV 1.0 0.9091)) +(: cnet_isa_9fe01e443b (IsA prosciutto ham) (STV 1.0 0.9091)) +(: cnet_isa_55e3ee02a7 (IsA prose expressive_style) (STV 1.0 0.9091)) +(: cnet_isa_6c683c37ad (IsA prose writing_style) (STV 1.0 0.9091)) +(: cnet_isa_8a5ce1d90b (IsA prose_poem prose) (STV 1.0 0.9091)) +(: cnet_isa_11252a92e9 (IsA prosecution collection) (STV 1.0 0.9091)) +(: cnet_isa_8f101b32fc (IsA prosecution legal_action) (STV 1.0 0.9091)) +(: cnet_isa_ba4a333835 (IsA prosecutor lawyer) (STV 1.0 0.9091)) +(: cnet_isa_6ace3b63aa (IsA prosecutor official) (STV 1.0 0.9091)) +(: cnet_isa_732cfae43b (IsA prosecutor_and_judge people_in_trial) (STV 1.0 0.9091)) +(: cnet_isa_173a941bc2 (IsA proselyte convert) (STV 1.0 0.9091)) +(: cnet_isa_c220515ae6 (IsA proselytism conversion) (STV 1.0 0.9091)) +(: cnet_isa_ede2d4492b (IsA proselytism persuasion) (STV 1.0 0.9091)) +(: cnet_isa_d708824170 (IsA prosimian primate) (STV 1.0 0.9091)) +(: cnet_isa_7b1efc5e43 (IsA prosimii animal_order) (STV 1.0 0.9091)) +(: cnet_isa_9ead6bf651 (IsA prosiness commonness) (STV 1.0 0.9091)) +(: cnet_isa_9a8a33a833 (IsA prosody poetic) (STV 1.0 0.9091)) +(: cnet_isa_68d801cb73 (IsA prosody manner_of_speaking) (STV 1.0 0.9091)) +(: cnet_isa_e1eac222f1 (IsA prosopis rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_bed8fc51f0 (IsA prosopium fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_7c925d3a45 (IsA prospect potential) (STV 1.0 0.9091)) +(: cnet_isa_93f14799cf (IsA prospector miner) (STV 1.0 0.9091)) +(: cnet_isa_8cc7e2af5f (IsA prospectus offer) (STV 1.0 0.9091)) +(: cnet_isa_1720a984fb (IsA prosperity economic_condition) (STV 1.0 0.9091)) +(: cnet_isa_c2ddfff50b (IsA prosperity good_fortune) (STV 1.0 0.9091)) +(: cnet_isa_73d3e5b5ee (IsA prostaglandin autacoid) (STV 1.0 0.9091)) +(: cnet_isa_ffd8e7b7c3 (IsA prostate_cancer adenocarcinoma) (STV 1.0 0.9091)) +(: cnet_isa_0a38290e5a (IsA prostate_gland endocrine_gland) (STV 1.0 0.9091)) +(: cnet_isa_0fbe30ce4a (IsA prostate_specific_antigen protein) (STV 1.0 0.9091)) +(: cnet_isa_bbc3161a2a (IsA prostatectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_7413af1fcd (IsA prostatitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_3760399b77 (IsA prosthesis artificial_hand_or_leg) (STV 1.0 0.9091)) +(: cnet_isa_7310f2f31d (IsA prosthesis corrective) (STV 1.0 0.9091)) +(: cnet_isa_da578c8d36 (IsA prosthetic medicine) (STV 1.0 0.9091)) +(: cnet_isa_c87379c683 (IsA prosthetist expert) (STV 1.0 0.9091)) +(: cnet_isa_847f79cc97 (IsA prosthion craniometric_point) (STV 1.0 0.9091)) +(: cnet_isa_e77ed93b18 (IsA prosthodontic dentistry) (STV 1.0 0.9091)) +(: cnet_isa_35124775f8 (IsA prosthodontist dentist) (STV 1.0 0.9091)) +(: cnet_isa_ca05752266 (IsA prostitute woman) (STV 1.0 0.9091)) +(: cnet_isa_2dcb732ed8 (IsA prostitution vice_crime) (STV 1.0 0.9091)) +(: cnet_isa_0c1b3d583b (IsA prostration compliance) (STV 1.0 0.9091)) +(: cnet_isa_2947a2b47e (IsA prostration motion) (STV 1.0 0.9091)) +(: cnet_isa_4ab65c5475 (IsA protactinium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_47b7d5a8a0 (IsA protagonist fictional_character) (STV 1.0 0.9091)) +(: cnet_isa_bbf39f6ef5 (IsA protamine simple_protein) (STV 1.0 0.9091)) +(: cnet_isa_111de89827 (IsA protanopia red_green_dichromacy) (STV 1.0 0.9091)) +(: cnet_isa_7d3a5214d0 (IsA protea shrub) (STV 1.0 0.9091)) +(: cnet_isa_97e4a266b3 (IsA proteaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_d7a9e46101 (IsA proteale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_7811fd3826 (IsA protease enzyme) (STV 1.0 0.9091)) +(: cnet_isa_40aa0226b6 (IsA protease_inhibitor antiviral) (STV 1.0 0.9091)) +(: cnet_isa_df96b54a62 (IsA protection activity) (STV 1.0 0.9091)) +(: cnet_isa_0b0d0af76f (IsA protection extortion) (STV 1.0 0.9091)) +(: cnet_isa_6d61dd2bf4 (IsA protection imposition) (STV 1.0 0.9091)) +(: cnet_isa_ef06bc0678 (IsA protection security) (STV 1.0 0.9091)) +(: cnet_isa_52cc511a79 (IsA protectionism economic_policy) (STV 1.0 0.9091)) +(: cnet_isa_bd2351f073 (IsA protectionist advocate) (STV 1.0 0.9091)) +(: cnet_isa_696be774c1 (IsA protective_coloration coloration) (STV 1.0 0.9091)) +(: cnet_isa_62f089f7e8 (IsA protective_covering body_covering) (STV 1.0 0.9091)) +(: cnet_isa_1b77228a26 (IsA protective_covering covering) (STV 1.0 0.9091)) +(: cnet_isa_80b5031797 (IsA protective_fold flap) (STV 1.0 0.9091)) +(: cnet_isa_173655f22f (IsA protective_garment clothing) (STV 1.0 0.9091)) +(: cnet_isa_7db2a1ecfa (IsA protective_tariff duty) (STV 1.0 0.9091)) +(: cnet_isa_ec3ced0959 (IsA protectiveness quality) (STV 1.0 0.9091)) +(: cnet_isa_dbc8a0cebc (IsA protectiveness affection) (STV 1.0 0.9091)) +(: cnet_isa_ac968fc771 (IsA protectorate district) (STV 1.0 0.9091)) +(: cnet_isa_ed79307bb6 (IsA protectorship position) (STV 1.0 0.9091)) +(: cnet_isa_32e303fb2b (IsA protege recipient) (STV 1.0 0.9091)) +(: cnet_isa_0f4d35f1d8 (IsA protegee protege) (STV 1.0 0.9091)) +(: cnet_isa_c8f2a9cba9 (IsA proteidae amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_6aec6f027a (IsA protein macromolecule) (STV 1.0 0.9091)) +(: cnet_isa_ebd998f4de (IsA protein_folding organic_process) (STV 1.0 0.9091)) +(: cnet_isa_01b66abb27 (IsA protein_molecule molecule) (STV 1.0 0.9091)) +(: cnet_isa_79579a8a8b (IsA protele mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_83f5912a96 (IsA proteolysis chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_da33022acd (IsA proteome protein) (STV 1.0 0.9091)) +(: cnet_isa_045f485057 (IsA proteomic genetic) (STV 1.0 0.9091)) +(: cnet_isa_84e724226b (IsA proteosome_vaccine vaccine) (STV 1.0 0.9091)) +(: cnet_isa_6015bf722a (IsA proterochampsa reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_7f9d56409a (IsA protest resistance) (STV 1.0 0.9091)) +(: cnet_isa_9271a08ea5 (IsA protest objection) (STV 1.0 0.9091)) +(: cnet_isa_73a61c20d5 (IsA protest_march civil_disobedience) (STV 1.0 0.9091)) +(: cnet_isa_10f40fd57b (IsA protest_march demonstration) (STV 1.0 0.9091)) +(: cnet_isa_e5d7ea2a69 (IsA protestant christian) (STV 1.0 0.9091)) +(: cnet_isa_cf5d33f3b9 (IsA protestant_church church) (STV 1.0 0.9091)) +(: cnet_isa_71a08a688f (IsA protestant_denomination denomination) (STV 1.0 0.9091)) +(: cnet_isa_c02bc9fc50 (IsA protestantism christianity) (STV 1.0 0.9091)) +(: cnet_isa_874f167ed3 (IsA protestation declaration) (STV 1.0 0.9091)) +(: cnet_isa_70bb9cf6e8 (IsA proteus amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_75f6bc5231 (IsA prothalamion epithalamium) (STV 1.0 0.9091)) +(: cnet_isa_a18dfdff09 (IsA prothalamion song) (STV 1.0 0.9091)) +(: cnet_isa_ec29be6d14 (IsA prothorax thorax) (STV 1.0 0.9091)) +(: cnet_isa_0267faadc1 (IsA prothrombin coagulation_factor) (STV 1.0 0.9091)) +(: cnet_isa_7b1adfbb53 (IsA prothrombinase coagulation_factor) (STV 1.0 0.9091)) +(: cnet_isa_caf041fce1 (IsA protist microorganism) (STV 1.0 0.9091)) +(: cnet_isa_9e2c341ac3 (IsA protista division) (STV 1.0 0.9091)) +(: cnet_isa_d65e02fe3b (IsA protium rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c679b143b5 (IsA protium_guianense incense_tree) (STV 1.0 0.9091)) +(: cnet_isa_adff7d5223 (IsA protium_heptaphyllum incense_tree) (STV 1.0 0.9091)) +(: cnet_isa_c380c70892 (IsA proto_indo_european indo_european) (STV 1.0 0.9091)) +(: cnet_isa_9cac5e6c27 (IsA proto_norse germanic) (STV 1.0 0.9091)) +(: cnet_isa_0a8b66bac7 (IsA proto_oncogene gene) (STV 1.0 0.9091)) +(: cnet_isa_d8acbb622c (IsA protoarcheology protohistory) (STV 1.0 0.9091)) +(: cnet_isa_95ba0ac120 (IsA protoavis bird) (STV 1.0 0.9091)) +(: cnet_isa_4fe3c13150 (IsA protoceratop ceratopsian) (STV 1.0 0.9091)) +(: cnet_isa_fc907fe88c (IsA protocol code_of_conduct) (STV 1.0 0.9091)) +(: cnet_isa_77c422e69d (IsA protocol etiquette) (STV 1.0 0.9091)) +(: cnet_isa_05bbe7c956 (IsA protocol rule) (STV 1.0 0.9091)) +(: cnet_isa_03d0a1f42b (IsA protoctist microorganism) (STV 1.0 0.9091)) +(: cnet_isa_ed21b552f4 (IsA protoctist_family family) (STV 1.0 0.9091)) +(: cnet_isa_4f26135fe2 (IsA protoctist_genus genus) (STV 1.0 0.9091)) +(: cnet_isa_cf41eb0cd7 (IsA protoctist_order order) (STV 1.0 0.9091)) +(: cnet_isa_746bed73fa (IsA protoctista kingdom) (STV 1.0 0.9091)) +(: cnet_isa_1356e892d6 (IsA protohippus horse) (STV 1.0 0.9091)) +(: cnet_isa_ae491011f9 (IsA protohistory archeology) (STV 1.0 0.9091)) +(: cnet_isa_ff85b90a15 (IsA protology discipline) (STV 1.0 0.9091)) +(: cnet_isa_370c4aa863 (IsA proton nucleon) (STV 1.0 0.9091)) +(: cnet_isa_6627d33d97 (IsA proton_accelerator collider) (STV 1.0 0.9091)) +(: cnet_isa_f2c102a580 (IsA proton component_of_atom) (STV 1.0 0.9091)) +(: cnet_isa_506a9e847a (IsA protoplasm substance) (STV 1.0 0.9091)) +(: cnet_isa_6847a7bfd9 (IsA protoplasmic_astrocyte astrocyte) (STV 1.0 0.9091)) +(: cnet_isa_150b07181b (IsA prototheria class) (STV 1.0 0.9091)) +(: cnet_isa_cc28fa9ce2 (IsA prototherian mammal) (STV 1.0 0.9091)) +(: cnet_isa_dd3038d801 (IsA prototype model) (STV 1.0 0.9091)) +(: cnet_isa_36c22d7ca9 (IsA protozoa phylum) (STV 1.0 0.9091)) +(: cnet_isa_2652ab19a9 (IsA protozoal_infection infection) (STV 1.0 0.9091)) +(: cnet_isa_6ee318e742 (IsA protozoan protoctist) (STV 1.0 0.9091)) +(: cnet_isa_408cc3c17b (IsA protozoologist zoologist) (STV 1.0 0.9091)) +(: cnet_isa_073d907e8c (IsA protozoology zoology) (STV 1.0 0.9091)) +(: cnet_isa_718cda2a90 (IsA protractor drafting_instrument) (STV 1.0 0.9091)) +(: cnet_isa_ab1460ded2 (IsA protriptyline tricyclic) (STV 1.0 0.9091)) +(: cnet_isa_2dbb1b160c (IsA protropin somatotropin) (STV 1.0 0.9091)) +(: cnet_isa_b74f8e66f0 (IsA protrusion change_of_shape) (STV 1.0 0.9091)) +(: cnet_isa_a073f07aff (IsA protuberance condition) (STV 1.0 0.9091)) +(: cnet_isa_b983553900 (IsA protura animal_order) (STV 1.0 0.9091)) +(: cnet_isa_ed3bb1dc71 (IsA proturan insect) (STV 1.0 0.9091)) +(: cnet_isa_f66ad438c7 (IsA proud_flesh granulation) (STV 1.0 0.9091)) +(: cnet_isa_52164a4af7 (IsA provencal langue_d_oc) (STV 1.0 0.9091)) +(: cnet_isa_70bed38e4f (IsA proverb saying) (STV 1.0 0.9091)) +(: cnet_isa_216d6d10c5 (IsA providence care) (STV 1.0 0.9091)) +(: cnet_isa_992c3e0561 (IsA providence prudence) (STV 1.0 0.9091)) +(: cnet_isa_375dd48b4b (IsA providence fortune) (STV 1.0 0.9091)) +(: cnet_isa_eaf14dffe7 (IsA provider benefactor) (STV 1.0 0.9091)) +(: cnet_isa_97ba2da9eb (IsA province sphere) (STV 1.0 0.9091)) +(: cnet_isa_b72fc6b414 (IsA provincial official) (STV 1.0 0.9091)) +(: cnet_isa_352f84ff9f (IsA provincial_capital capital) (STV 1.0 0.9091)) +(: cnet_isa_77970baa0f (IsA provincial_capital city) (STV 1.0 0.9091)) +(: cnet_isa_c085dde522 (IsA provincialism narrow_mindedness) (STV 1.0 0.9091)) +(: cnet_isa_c54e77cf72 (IsA proving_ground workplace) (STV 1.0 0.9091)) +(: cnet_isa_21e08d1909 (IsA provirus complementary_dna) (STV 1.0 0.9091)) +(: cnet_isa_4bcc21e8cc (IsA provision activity) (STV 1.0 0.9091)) +(: cnet_isa_ca1ea84340 (IsA provision condition) (STV 1.0 0.9091)) +(: cnet_isa_9604d4f918 (IsA provision store) (STV 1.0 0.9091)) +(: cnet_isa_dd6a696bd6 (IsA provitamin hydrocarbon) (STV 1.0 0.9091)) +(: cnet_isa_2168e850f6 (IsA provitamin provitamin) (STV 1.0 0.9091)) +(: cnet_isa_536c0254b5 (IsA provocation encouragement) (STV 1.0 0.9091)) +(: cnet_isa_b3db500506 (IsA provost academic_administrator) (STV 1.0 0.9091)) +(: cnet_isa_8d2ac74e2a (IsA provost_court military_court) (STV 1.0 0.9091)) +(: cnet_isa_31234ded02 (IsA provost_guard detachment) (STV 1.0 0.9091)) +(: cnet_isa_fca88c585e (IsA provost_marshal military_policeman) (STV 1.0 0.9091)) +(: cnet_isa_0f07b5e1a5 (IsA prowl walk) (STV 1.0 0.9091)) +(: cnet_isa_942cc07cc4 (IsA prowler intruder) (STV 1.0 0.9091)) +(: cnet_isa_20d8e293ea (IsA proxemic social_science) (STV 1.0 0.9091)) +(: cnet_isa_5354de428a (IsA proximity nearness) (STV 1.0 0.9091)) +(: cnet_isa_61b59df036 (IsA proximity gestalt_law_of_organization) (STV 1.0 0.9091)) +(: cnet_isa_e69839be36 (IsA proximity vicinity) (STV 1.0 0.9091)) +(: cnet_isa_3d25cf6644 (IsA proxy power_of_attorney) (STV 1.0 0.9091)) +(: cnet_isa_c2b2ac1b59 (IsA proxy agent) (STV 1.0 0.9091)) +(: cnet_isa_8e7969529a (IsA proxy_fight takeover_attempt) (STV 1.0 0.9091)) +(: cnet_isa_a746c04918 (IsA proxy_war war) (STV 1.0 0.9091)) +(: cnet_isa_b10fd7f231 (IsA prude unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_4ace7c55cf (IsA prudence discretion) (STV 1.0 0.9091)) +(: cnet_isa_a34d8357d1 (IsA prudence natural_virtue) (STV 1.0 0.9091)) +(: cnet_isa_fbaf65c05e (IsA prumnopity gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_c2e731f444 (IsA prune dried_plum) (STV 1.0 0.9339)) +(: cnet_isa_bdc0848ef5 (IsA prune dried_fruit) (STV 1.0 0.9091)) +(: cnet_isa_904412dfa0 (IsA prune_cake cake) (STV 1.0 0.9091)) +(: cnet_isa_b2db83855c (IsA prune_whip whip) (STV 1.0 0.9091)) +(: cnet_isa_2f51c7f4c1 (IsA prunella bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_9de2475e63 (IsA prunella asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_eaf3b2f320 (IsA prunellidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_7da4585bb6 (IsA pruner pruning_saw) (STV 1.0 0.9091)) +(: cnet_isa_04f74fb939 (IsA pruner worker) (STV 1.0 0.9091)) +(: cnet_isa_4744a8902c (IsA pruning trim) (STV 1.0 0.9091)) +(: cnet_isa_bac759b8e1 (IsA pruning cutting) (STV 1.0 0.9091)) +(: cnet_isa_2dfaed99c7 (IsA pruning_knife knife) (STV 1.0 0.9091)) +(: cnet_isa_207f61a55d (IsA pruning_saw handsaw) (STV 1.0 0.9091)) +(: cnet_isa_7834b2d1fa (IsA pruning_shear shear) (STV 1.0 0.9091)) +(: cnet_isa_c36805f127 (IsA pruno hooch) (STV 1.0 0.9091)) +(: cnet_isa_1cb131b97c (IsA prunus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8b09c0a8c8 (IsA prurience amorousness) (STV 1.0 0.9091)) +(: cnet_isa_359cf3fbdc (IsA prurigo skin_disease) (STV 1.0 0.9091)) +(: cnet_isa_aaadb84fe0 (IsA pruritus itch) (STV 1.0 0.9091)) +(: cnet_isa_e269609c84 (IsA pruritus_ani pruritus) (STV 1.0 0.9091)) +(: cnet_isa_4d71543b4d (IsA pruritus_vulvae pruritus) (STV 1.0 0.9091)) +(: cnet_isa_6ceb4c6248 (IsA prussian german) (STV 1.0 0.9091)) +(: cnet_isa_53340fc980 (IsA prussian_blue blue) (STV 1.0 0.9091)) +(: cnet_isa_666e36c481 (IsA przewalski_s_horse wild_horse) (STV 1.0 0.9091)) +(: cnet_isa_a484b6261a (IsA psa_blood_test blood_test) (STV 1.0 0.9091)) +(: cnet_isa_9c660f6462 (IsA psalm sacred_text) (STV 1.0 0.9091)) +(: cnet_isa_54bbaaae67 (IsA psalmist composer) (STV 1.0 0.9091)) +(: cnet_isa_8915907f54 (IsA psalmody singing) (STV 1.0 0.9091)) +(: cnet_isa_190ba5e48b (IsA psalter prayer_book) (STV 1.0 0.9091)) +(: cnet_isa_60a3d65152 (IsA psalterium stomach) (STV 1.0 0.9091)) +(: cnet_isa_57fbaa8764 (IsA psaltery stringed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_57c78d1d9a (IsA psaltriparus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_d56e181474 (IsA psammoma tumor) (STV 1.0 0.9091)) +(: cnet_isa_91e594b785 (IsA psene fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_2bb3fe9af9 (IsA psephologist sociologist) (STV 1.0 0.9091)) +(: cnet_isa_24becb3e2a (IsA psephology sociology) (STV 1.0 0.9091)) +(: cnet_isa_2158f6bafe (IsA psephurus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_0c2e3a2f27 (IsA psetta fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_566b5f99b8 (IsA psettichthy fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_cd044b294b (IsA pseudacris amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_5765609157 (IsA pseudaletia arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_8c4b8fc556 (IsA pseudechis reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_a22c948db8 (IsA pseudemy reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_0a29da5964 (IsA pseudepigrapha sacred_text) (STV 1.0 0.9091)) +(: cnet_isa_a3772eab1d (IsA pseudobombax dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_44a0ca7c96 (IsA pseudobulb enlargement) (STV 1.0 0.9091)) +(: cnet_isa_5b3c9b5614 (IsA pseudococcidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_1d8b3b2b1c (IsA pseudococcus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_dbd643679e (IsA pseudocolus fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_7dd6ac6c79 (IsA pseudoephedrine alkaloid) (STV 1.0 0.9091)) +(: cnet_isa_8c0a19d10a (IsA pseudohallucination hallucination) (STV 1.0 0.9091)) +(: cnet_isa_24da56ef78 (IsA pseudohermaphrodite bisexual) (STV 1.0 0.9091)) +(: cnet_isa_aeb6552635 (IsA pseudohermaphroditism birth_defect) (STV 1.0 0.9091)) +(: cnet_isa_b4f4abb1cd (IsA pseudolarix gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_fdaaca6c6f (IsA pseudomonad eubacteria) (STV 1.0 0.9091)) +(: cnet_isa_034dbb5a3c (IsA pseudomonadale animal_order) (STV 1.0 0.9091)) +(: cnet_isa_857c8b6941 (IsA pseudomona bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_ea514f3ecd (IsA pseudomona_pyocanea bacteria_specy) (STV 1.0 0.9091)) +(: cnet_isa_ed14c2960a (IsA pseudomonodaceae bacteria_family) (STV 1.0 0.9091)) +(: cnet_isa_33f66f068d (IsA pseudonym name) (STV 1.0 0.9091)) +(: cnet_isa_272309b893 (IsA pseudophloem plant_tissue) (STV 1.0 0.9091)) +(: cnet_isa_33274c5dd5 (IsA pseudopleuronecte fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_bf08c96931 (IsA pseudopod process) (STV 1.0 0.9091)) +(: cnet_isa_ce3f5694e4 (IsA pseudoryx mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_650ee8b04f (IsA pseudoscience fallacy) (STV 1.0 0.9091)) +(: cnet_isa_1e3e55b687 (IsA pseudotaxus gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_d1edf92563 (IsA pseudotsuga gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_0420f2f56f (IsA pseudowintera magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5b85c8b170 (IsA psi letter) (STV 1.0 0.9091)) +(: cnet_isa_7131b8fe8b (IsA psidium dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_14dcdc1644 (IsA psilocybin hallucinogen) (STV 1.0 0.9091)) +(: cnet_isa_b83da2e9d9 (IsA psilomelane mineral) (STV 1.0 0.9091)) +(: cnet_isa_b6a856ffcf (IsA psilophytaceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_b02472630b (IsA psilophytale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_a56f8a334f (IsA psilophyte vascular_plant) (STV 1.0 0.9091)) +(: cnet_isa_e4c2bc32a5 (IsA psilophyton vascular_plant) (STV 1.0 0.9091)) +(: cnet_isa_8ae20059d4 (IsA psilopsida class) (STV 1.0 0.9091)) +(: cnet_isa_d77484ea18 (IsA psilosis bodily_process) (STV 1.0 0.9091)) +(: cnet_isa_548a92f2c4 (IsA psilosis epilation) (STV 1.0 0.9091)) +(: cnet_isa_5f02169c71 (IsA psilotaceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_1bd9ad0662 (IsA psilotale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_e5b6d20d1b (IsA psilotum fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_f7475c0d9d (IsA psithyrus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_97a349bbd8 (IsA psittacidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_7269ef350f (IsA psittaciforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_c6ae7c8980 (IsA psittacosaur ceratopsian) (STV 1.0 0.9091)) +(: cnet_isa_94e9cbf7c4 (IsA psittacosis animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_0ff7a39ce1 (IsA psittacosis atypical_pneumonia) (STV 1.0 0.9091)) +(: cnet_isa_5533ecf309 (IsA psittacula bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_a6af31badc (IsA psittacus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_db4c0cab72 (IsA psoa skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_80f981c1df (IsA psocid psocopterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_56272901a4 (IsA psocidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_cdeaa7a48c (IsA psocoptera animal_order) (STV 1.0 0.9091)) +(: cnet_isa_0ef8ce7c44 (IsA psocopterous_insect insect) (STV 1.0 0.9091)) +(: cnet_isa_38c7177df0 (IsA psophia bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_1aa5199c17 (IsA psophiidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_0765686ac0 (IsA psophocarpus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3a83e9260f (IsA psoralea rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_134abc4010 (IsA psoriasis skin_disease) (STV 1.0 0.9091)) +(: cnet_isa_388a9b4eaa (IsA psoriatic_arthritis rheumatoid_arthritis) (STV 1.0 0.9091)) +(: cnet_isa_2f47e07714 (IsA psychedelia subculture) (STV 1.0 0.9091)) +(: cnet_isa_d728315451 (IsA psychedelic_rock rock_n_roll) (STV 1.0 0.9091)) +(: cnet_isa_c80907d8eb (IsA psychiatrist specialist) (STV 1.0 0.9091)) +(: cnet_isa_cc6d3fc97b (IsA psychiatry medicine) (STV 1.0 0.9091)) +(: cnet_isa_102e2b6fca (IsA psychic occultist) (STV 1.0 0.9091)) +(: cnet_isa_65af17b513 (IsA psychic_communication communication) (STV 1.0 0.9091)) +(: cnet_isa_5cb716597b (IsA psychic_energy motivation) (STV 1.0 0.9091)) +(: cnet_isa_109d7a6733 (IsA psychic_phenomena psychic_communication) (STV 1.0 0.9091)) +(: cnet_isa_e6308ec228 (IsA psychoactive_drug drug) (STV 1.0 0.9091)) +(: cnet_isa_248ddb7c83 (IsA psychoanalysis psychotherapy) (STV 1.0 0.9091)) +(: cnet_isa_f40fd8532b (IsA psychoanalytic_process human_process) (STV 1.0 0.9091)) +(: cnet_isa_fcbc1fbde0 (IsA psychobabble jargon) (STV 1.0 0.9091)) +(: cnet_isa_01b2bb848e (IsA psychodid gnat) (STV 1.0 0.9091)) +(: cnet_isa_3ae958b49b (IsA psychodidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_faf97b541e (IsA psychodynamic social_psychology) (STV 1.0 0.9091)) +(: cnet_isa_4bbdeeeda8 (IsA psychodynamic interrelation) (STV 1.0 0.9091)) +(: cnet_isa_2b8c58a678 (IsA psychogenesis growth) (STV 1.0 0.9091)) +(: cnet_isa_6322c446be (IsA psycholinguist linguist) (STV 1.0 0.9091)) +(: cnet_isa_854fc79438 (IsA psycholinguist psychologist) (STV 1.0 0.9091)) +(: cnet_isa_b01e4775e5 (IsA psycholinguistic cognitive_psychology) (STV 1.0 0.9091)) +(: cnet_isa_4913e00473 (IsA psychological_feature abstraction) (STV 1.0 0.9091)) +(: cnet_isa_fd36f597b7 (IsA psychological_moment moment) (STV 1.0 0.9091)) +(: cnet_isa_07bf6ad923 (IsA psychological_operation operation) (STV 1.0 0.9091)) +(: cnet_isa_685980b749 (IsA psychological_state condition) (STV 1.0 0.9091)) +(: cnet_isa_fcb3446255 (IsA psychological_warfare war) (STV 1.0 0.9091)) +(: cnet_isa_1a3a3c63e5 (IsA psychologist scientist) (STV 1.0 0.9091)) +(: cnet_isa_a54a8bca6f (IsA psychology science) (STV 1.0 0.9091)) +(: cnet_isa_dd5de2a4df (IsA psychology_department academic_department) (STV 1.0 0.9091)) +(: cnet_isa_4cf476ac2b (IsA psychometry psychology) (STV 1.0 0.9091)) +(: cnet_isa_3137f56b7c (IsA psychomotor_development growth) (STV 1.0 0.9091)) +(: cnet_isa_2b870693a2 (IsA psychomotor_epilepsy epilepsy) (STV 1.0 0.9091)) +(: cnet_isa_95e90ef230 (IsA psychopharmacology pharmacology) (STV 1.0 0.9091)) +(: cnet_isa_95376e4dcd (IsA psychophysicist psychologist) (STV 1.0 0.9091)) +(: cnet_isa_2afd9cae35 (IsA psychophysic experimental_psychology) (STV 1.0 0.9091)) +(: cnet_isa_2fffcabe25 (IsA psychopomp imaginary_being) (STV 1.0 0.9091)) +(: cnet_isa_c42917d3be (IsA psychopsis monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ac4aa6d338 (IsA psychopsis_krameriana butterfly_orchid) (STV 1.0 0.9091)) +(: cnet_isa_32c9ffa180 (IsA psychopsis_papilio butterfly_orchid) (STV 1.0 0.9091)) +(: cnet_isa_b1922e3f06 (IsA psychosexual_development growth) (STV 1.0 0.9091)) +(: cnet_isa_ee37c922cd (IsA psychosexuality representation) (STV 1.0 0.9091)) +(: cnet_isa_a295603ff6 (IsA psychosis mental_disorder) (STV 1.0 0.9091)) +(: cnet_isa_8d93747f94 (IsA psychosis mental_state) (STV 1.0 0.9091)) +(: cnet_isa_603d26a625 (IsA psychosis mental_illness) (STV 1.0 0.9091)) +(: cnet_isa_f68ba3ce3e (IsA psychosomatic_disorder mental_disorder) (STV 1.0 0.9091)) +(: cnet_isa_219439a324 (IsA psychosurgery brain_surgery) (STV 1.0 0.9091)) +(: cnet_isa_2916db5ea5 (IsA psychotherapist therapist) (STV 1.0 0.9091)) +(: cnet_isa_30626c1cef (IsA psychotherapy therapy) (STV 1.0 0.9091)) +(: cnet_isa_9b41562468 (IsA psychotherapy psychiatry) (STV 1.0 0.9091)) +(: cnet_isa_255de32809 (IsA psychotherapy_group meeting) (STV 1.0 0.9091)) +(: cnet_isa_8c491ccbe7 (IsA psychotic sick_person) (STV 1.0 0.9091)) +(: cnet_isa_3be6c26383 (IsA psychotic_depression depressive_disorder) (STV 1.0 0.9091)) +(: cnet_isa_8f41bd0ea3 (IsA psychotria asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e6fd31e7bc (IsA psychotropic_agent drug) (STV 1.0 0.9091)) +(: cnet_isa_25ac0339c4 (IsA psychrometer hygrometer) (STV 1.0 0.9091)) +(: cnet_isa_81c6589181 (IsA psyllidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_2f91e805e4 (IsA pt_boat torpedo_boat) (STV 1.0 0.9091)) +(: cnet_isa_2f1397f04f (IsA ptarmigan grouse) (STV 1.0 0.9091)) +(: cnet_isa_f9b6c4e7c3 (IsA pteridaceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_628d1bcc94 (IsA pteridium fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_a4fcfd9909 (IsA pteridologist expert) (STV 1.0 0.9091)) +(: cnet_isa_fd184365d6 (IsA pteridology botany) (STV 1.0 0.9091)) +(: cnet_isa_4868f38db6 (IsA pteridophyta division) (STV 1.0 0.9091)) +(: cnet_isa_1b426fb531 (IsA pteridophyte vascular_plant) (STV 1.0 0.9091)) +(: cnet_isa_23295f3417 (IsA pteridospermae taxonomic_group) (STV 1.0 0.9091)) +(: cnet_isa_f3c0d2880b (IsA pteridospermopsida class) (STV 1.0 0.9091)) +(: cnet_isa_0bf30fefc1 (IsA pteriidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_7e6eea08e4 (IsA pterion craniometric_point) (STV 1.0 0.9091)) +(: cnet_isa_491d7d0d03 (IsA pteris fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_2723f66890 (IsA pteris_cretica fern) (STV 1.0 0.9091)) +(: cnet_isa_c5a43c5640 (IsA pternohyla amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_4f0271ddc6 (IsA pterocarpus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_43e0140544 (IsA pterocarya dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c4ad2db000 (IsA pterocle bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_c0721975e9 (IsA pteroclididae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_1d7579d67d (IsA pterocnemia bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_f79626aefd (IsA pterodactyl pterosaur) (STV 1.0 0.9091)) +(: cnet_isa_624906b93b (IsA pterodactylidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_0edd311eb3 (IsA pterodactylus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_e57bc70dcf (IsA pterois fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_ec912fd1aa (IsA pteropogon herb) (STV 1.0 0.9091)) +(: cnet_isa_5c5546fa11 (IsA pteropsida division) (STV 1.0 0.9091)) +(: cnet_isa_d90eeaa5a1 (IsA pteropus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_3cb3f14832 (IsA pteropus_capestratus fruit_bat) (STV 1.0 0.9091)) +(: cnet_isa_8a554ab082 (IsA pteropus_hypomelanus fruit_bat) (STV 1.0 0.9091)) +(: cnet_isa_95e35588cd (IsA pterosaur archosaur) (STV 1.0 0.9091)) +(: cnet_isa_0ff2640c5f (IsA pterosauria animal_order) (STV 1.0 0.9091)) +(: cnet_isa_15439567dc (IsA pterospermum dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2f0825ce01 (IsA pterostylis monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c7eb72186a (IsA pterygium conjunctiva) (STV 1.0 0.9091)) +(: cnet_isa_4069d876ad (IsA pterygoid_muscle skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_cea6a23606 (IsA pterygoid_plexus plexus) (STV 1.0 0.9091)) +(: cnet_isa_7897fd7925 (IsA pterygoid_process process) (STV 1.0 0.9091)) +(: cnet_isa_6a73acc95c (IsA ptilocercus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_dcc06c8099 (IsA ptilocrinus echinoderm_genus) (STV 1.0 0.9091)) +(: cnet_isa_9c2c7d5c75 (IsA ptilonorhynchidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_e74247f7da (IsA ptilonorhynchus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_ca20760056 (IsA ptloris bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_ba3c2bfae5 (IsA ptolemaic_system model) (STV 1.0 0.9091)) +(: cnet_isa_da2fc38110 (IsA ptolemy dynasty) (STV 1.0 0.9091)) +(: cnet_isa_fff0495ff3 (IsA ptomaine food_poisoning) (STV 1.0 0.9091)) +(: cnet_isa_862b831cfc (IsA ptomaine amine) (STV 1.0 0.9091)) +(: cnet_isa_2cf141707b (IsA ptosis prolapse) (STV 1.0 0.9091)) +(: cnet_isa_e8108b21ee (IsA ptyalin amylase) (STV 1.0 0.9091)) +(: cnet_isa_e07c760174 (IsA ptyalism salivation) (STV 1.0 0.9091)) +(: cnet_isa_a15eccbdd7 (IsA ptyalith calculus) (STV 1.0 0.9091)) +(: cnet_isa_ea544e7611 (IsA ptya reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_32b236f2b8 (IsA ptychozoon reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_c9067e371c (IsA pub another_word_for_bar) (STV 1.0 0.9339)) +(: cnet_isa_de38f460b3 (IsA pub place) (STV 1.0 0.9454)) +(: cnet_isa_c3a20ac734 (IsA pub_crawl tour) (STV 1.0 0.9091)) +(: cnet_isa_bdfbce3c28 (IsA puberty challenging_time_for_teenager) (STV 1.0 0.9091)) +(: cnet_isa_5174b3ee2b (IsA puberty gradual_process_of_sexual_development) (STV 1.0 0.9091)) +(: cnet_isa_cabf5486e8 (IsA puberty time_of_life) (STV 1.0 0.9091)) +(: cnet_isa_d9153b3a64 (IsA pube area) (STV 1.0 0.9091)) +(: cnet_isa_1c9fe1accf (IsA pubic_hair hair) (STV 1.0 0.9091)) +(: cnet_isa_681b0eef9a (IsA pubis bone) (STV 1.0 0.9091)) +(: cnet_isa_9bdabe1179 (IsA public body) (STV 1.0 0.9091)) +(: cnet_isa_b88b604e27 (IsA public_address_system communication_system) (STV 1.0 0.9091)) +(: cnet_isa_38c93e32eb (IsA public_charity charity) (STV 1.0 0.9091)) +(: cnet_isa_46305088f6 (IsA public_debt debt) (STV 1.0 0.9091)) +(: cnet_isa_366659d32d (IsA public_defender lawyer) (STV 1.0 0.9091)) +(: cnet_isa_f40f990a4d (IsA public_discussion discussion) (STV 1.0 0.9091)) +(: cnet_isa_8f8c25481c (IsA public_domain property_right) (STV 1.0 0.9091)) +(: cnet_isa_a1c678e9cb (IsA public_easement easement) (STV 1.0 0.9091)) +(: cnet_isa_257b2d135a (IsA public_house tavern) (STV 1.0 0.9091)) +(: cnet_isa_c4a6ca09d0 (IsA public_knowledge cognition) (STV 1.0 0.9091)) +(: cnet_isa_0cce63be07 (IsA public_law law) (STV 1.0 0.9091)) +(: cnet_isa_bf6a4c3faf (IsA public_library library) (STV 1.0 0.9091)) +(: cnet_isa_cdeac0d005 (IsA public_nuisance nuisance) (STV 1.0 0.9091)) +(: cnet_isa_fd2e172cef (IsA public_office position) (STV 1.0 0.9091)) +(: cnet_isa_47232536e6 (IsA public_opinion belief) (STV 1.0 0.9091)) +(: cnet_isa_fbe0fc13c1 (IsA public_property property) (STV 1.0 0.9091)) +(: cnet_isa_60839591a7 (IsA public_relation promotion) (STV 1.0 0.9091)) +(: cnet_isa_e7aa582f5a (IsA public_relation_campaign advertising_campaign) (STV 1.0 0.9091)) +(: cnet_isa_ff1996e9b4 (IsA public_relation_person person) (STV 1.0 0.9091)) +(: cnet_isa_6272477daf (IsA public_school school) (STV 1.0 0.9091)) +(: cnet_isa_53949e42c2 (IsA public_school secondary_school) (STV 1.0 0.9091)) +(: cnet_isa_08f73b580b (IsA public_servant employee) (STV 1.0 0.9091)) +(: cnet_isa_2fbd2bebce (IsA public_service employment) (STV 1.0 0.9091)) +(: cnet_isa_d93bc38c58 (IsA public_speaking address) (STV 1.0 0.9091)) +(: cnet_isa_365c2bc0eb (IsA public_square tract) (STV 1.0 0.9091)) +(: cnet_isa_89bbf23f52 (IsA public_toilet facility) (STV 1.0 0.9091)) +(: cnet_isa_035331507d (IsA public_toilet toilet) (STV 1.0 0.9091)) +(: cnet_isa_392d168c43 (IsA public_transit transportation_system) (STV 1.0 0.9091)) +(: cnet_isa_38e99750d2 (IsA public_transport conveyance) (STV 1.0 0.9091)) +(: cnet_isa_24590a34b0 (IsA public_treasury treasury) (STV 1.0 0.9091)) +(: cnet_isa_7f90ee7d42 (IsA public_work structure) (STV 1.0 0.9091)) +(: cnet_isa_5589c6428a (IsA publican bartender) (STV 1.0 0.9091)) +(: cnet_isa_f2700f6598 (IsA publication commercial_enterprise) (STV 1.0 0.9091)) +(: cnet_isa_f305fd31c7 (IsA publication communication) (STV 1.0 0.9091)) +(: cnet_isa_0a12a1132a (IsA publication work) (STV 1.0 0.9091)) +(: cnet_isa_26b8be5018 (IsA publicist communicator) (STV 1.0 0.9091)) +(: cnet_isa_d5202e5bfa (IsA publicity quality) (STV 1.0 0.9091)) +(: cnet_isa_d4a4c433a8 (IsA publisher firm) (STV 1.0 0.9091)) +(: cnet_isa_da70aa4b18 (IsA publisher owner) (STV 1.0 0.9091)) +(: cnet_isa_224336953a (IsA publisher professional) (STV 1.0 0.9091)) +(: cnet_isa_80e4c2718a (IsA publishing_conglomerate conglomerate) (STV 1.0 0.9091)) +(: cnet_isa_7d805bb802 (IsA puccinia fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_72c3b2a528 (IsA pucciniaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_fce06c973c (IsA puccoon herb) (STV 1.0 0.9091)) +(: cnet_isa_fa745ee871 (IsA puce brown) (STV 1.0 0.9091)) +(: cnet_isa_08655602a6 (IsA puck disk) (STV 1.0 0.9091)) +(: cnet_isa_fb043186ca (IsA pucker fold) (STV 1.0 0.9091)) +(: cnet_isa_c6ff92c357 (IsA pudding dessert) (STV 1.0 0.9091)) +(: cnet_isa_5d355815ad (IsA pudding dish) (STV 1.0 0.9091)) +(: cnet_isa_7ab99fe449 (IsA pudding_face countenance) (STV 1.0 0.9091)) +(: cnet_isa_831c37e7a9 (IsA pudding_stone rock) (STV 1.0 0.9091)) +(: cnet_isa_a35cf27511 (IsA puddingwife wrasse) (STV 1.0 0.9091)) +(: cnet_isa_b4344d18fa (IsA puddle covering_material) (STV 1.0 0.9091)) +(: cnet_isa_238c3b9a46 (IsA puddler ironworker) (STV 1.0 0.9091)) +(: cnet_isa_398db51652 (IsA pudendal_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_506bc0300f (IsA pudendal_block regional_anesthesia) (STV 1.0 0.9091)) +(: cnet_isa_3ee28bdb7e (IsA pudendal_cleft rima) (STV 1.0 0.9091)) +(: cnet_isa_ed437f8470 (IsA pudendal_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_377149cdb1 (IsA pudendum genitalia) (STV 1.0 0.9091)) +(: cnet_isa_5a8750b0e1 (IsA pudge endomorph) (STV 1.0 0.9091)) +(: cnet_isa_75a082e6eb (IsA pueblo village) (STV 1.0 0.9091)) +(: cnet_isa_a2a6b78b6d (IsA pueblo native_american) (STV 1.0 0.9091)) +(: cnet_isa_db091be5c6 (IsA pueraria rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1dba837d9c (IsA puerpera mother) (STV 1.0 0.9091)) +(: cnet_isa_aa9f5b81ff (IsA puerperal_fever blood_poisoning) (STV 1.0 0.9091)) +(: cnet_isa_155ceebe6f (IsA puerperium time_period) (STV 1.0 0.9091)) +(: cnet_isa_f08a4487d9 (IsA puerto_rican american) (STV 1.0 0.9091)) +(: cnet_isa_f7a538ecb6 (IsA puff inhalation) (STV 1.0 0.9091)) +(: cnet_isa_c15ba9a534 (IsA puff recommendation) (STV 1.0 0.9091)) +(: cnet_isa_901bdc14f5 (IsA puff pastry) (STV 1.0 0.9091)) +(: cnet_isa_0521c0fac3 (IsA puff gust) (STV 1.0 0.9091)) +(: cnet_isa_b582e99e15 (IsA puff_adder viper) (STV 1.0 0.9091)) +(: cnet_isa_ad315087d4 (IsA puff_batter batter) (STV 1.0 0.9091)) +(: cnet_isa_fdb08bdbb9 (IsA puff_paste pastry) (STV 1.0 0.9091)) +(: cnet_isa_8d29a0f7c4 (IsA puffball fungus) (STV 1.0 0.9091)) +(: cnet_isa_ec0f7e9fdd (IsA puffbird piciform_bird) (STV 1.0 0.9091)) +(: cnet_isa_c04923ea81 (IsA puffed_rice cold_cereal) (STV 1.0 0.9091)) +(: cnet_isa_134d31bc37 (IsA puffed_wheat cold_cereal) (STV 1.0 0.9091)) +(: cnet_isa_3bdb09d52f (IsA puffer plectognath) (STV 1.0 0.9091)) +(: cnet_isa_aa82a82adb (IsA puffery flattery) (STV 1.0 0.9091)) +(: cnet_isa_6fa0e1bbc1 (IsA puffin bird) (STV 1.0 0.9524)) +(: cnet_isa_be9a37b54f (IsA puffin seabird) (STV 1.0 0.9091)) +(: cnet_isa_acd6fb6bef (IsA puffing exhalation) (STV 1.0 0.9091)) +(: cnet_isa_646774b640 (IsA puffing smoke) (STV 1.0 0.9091)) +(: cnet_isa_53c3726528 (IsA puffinus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_da1d4c3410 (IsA pug dog) (STV 1.0 0.9091)) +(: cnet_isa_8de5f0d66d (IsA pug_nose nose) (STV 1.0 0.9091)) +(: cnet_isa_e3fcb903c8 (IsA puissance power) (STV 1.0 0.9091)) +(: cnet_isa_0560375393 (IsA pujunan penutian) (STV 1.0 0.9091)) +(: cnet_isa_be9c6e6ca5 (IsA puka shrub) (STV 1.0 0.9091)) +(: cnet_isa_336888cd65 (IsA puka tree) (STV 1.0 0.9091)) +(: cnet_isa_f07f6b7adc (IsA puku antelope) (STV 1.0 0.9091)) +(: cnet_isa_55ff02d5ac (IsA pul afghan_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_1eaa472cf1 (IsA pula botswana_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_b9bd3da1e2 (IsA pulasan edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_1cc6711551 (IsA pulasan fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_4ed3f118ed (IsA pulchritude beauty) (STV 1.0 0.9091)) +(: cnet_isa_c7ac125494 (IsA pulex arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_ea78301b8b (IsA pulex_irritan flea) (STV 1.0 0.9091)) +(: cnet_isa_b750ca4840 (IsA pulicaria asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a33857cc6d (IsA pulicidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_6ef932bba0 (IsA pull effort) (STV 1.0 0.9091)) +(: cnet_isa_9d7f1fabeb (IsA pull propulsion) (STV 1.0 0.9091)) +(: cnet_isa_f285888915 (IsA pull device) (STV 1.0 0.9091)) +(: cnet_isa_769c094af7 (IsA pull advantage) (STV 1.0 0.9091)) +(: cnet_isa_51f111b86b (IsA pull force) (STV 1.0 0.9091)) +(: cnet_isa_fd4e2708cc (IsA pull_chain chain) (STV 1.0 0.9091)) +(: cnet_isa_a2d47c64d2 (IsA pull_chain pull) (STV 1.0 0.9091)) +(: cnet_isa_4b9dca54af (IsA pull_in cafe) (STV 1.0 0.9091)) +(: cnet_isa_7405d5d55f (IsA pull_through cleaning_implement) (STV 1.0 0.9091)) +(: cnet_isa_ded1e69483 (IsA pull_up arm_exercise) (STV 1.0 0.9091)) +(: cnet_isa_f17c953e83 (IsA pullback holding_device) (STV 1.0 0.9091)) +(: cnet_isa_854273a0ac (IsA pullback withdrawal) (STV 1.0 0.9091)) +(: cnet_isa_26daeecc1a (IsA puller mover) (STV 1.0 0.9091)) +(: cnet_isa_53ef4a85dd (IsA puller worker) (STV 1.0 0.9091)) +(: cnet_isa_59abc238c7 (IsA pullet hen) (STV 1.0 0.9091)) +(: cnet_isa_22ec447c9d (IsA pulley machine) (STV 1.0 0.9091)) +(: cnet_isa_491500e62b (IsA pullman passenger_car) (STV 1.0 0.9091)) +(: cnet_isa_236b8ddb98 (IsA pullorum_disease animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_9315bde2d0 (IsA pullover sweater) (STV 1.0 0.9091)) +(: cnet_isa_e0b0199f2f (IsA pullulation asexual_reproduction) (STV 1.0 0.9091)) +(: cnet_isa_01b9cef460 (IsA pullulation increase) (STV 1.0 0.9091)) +(: cnet_isa_96d2bbbe2e (IsA pulmonary_anthrax anthrax) (STV 1.0 0.9091)) +(: cnet_isa_ce7fc5ac7c (IsA pulmonary_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_177de1ea89 (IsA pulmonary_circulation circulation) (STV 1.0 0.9091)) +(: cnet_isa_21e67c4def (IsA pulmonary_congestion congestion) (STV 1.0 0.9091)) +(: cnet_isa_d1f3385a1b (IsA pulmonary_embolism embolism) (STV 1.0 0.9091)) +(: cnet_isa_1d19998fb2 (IsA pulmonary_plexis nerve_plexus) (STV 1.0 0.9091)) +(: cnet_isa_30cfc5d841 (IsA pulmonary_reserve reserve) (STV 1.0 0.9091)) +(: cnet_isa_d79b6cf93f (IsA pulmonary_stenosis stenosis) (STV 1.0 0.9091)) +(: cnet_isa_4a83d549f3 (IsA pulmonary_trunk pulmonary_artery) (STV 1.0 0.9091)) +(: cnet_isa_62b07a624d (IsA pulmonary_tuberculosis tuberculosis) (STV 1.0 0.9091)) +(: cnet_isa_f1cece69d0 (IsA pulmonary_valve semilunar_valve) (STV 1.0 0.9091)) +(: cnet_isa_9eba6de348 (IsA pulmonary_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_37778fe014 (IsA pulmonata animal_order) (STV 1.0 0.9091)) +(: cnet_isa_880af7738a (IsA pulp vascular_structure) (STV 1.0 0.9091)) +(: cnet_isa_6050e4e520 (IsA pulp magazine) (STV 1.0 0.9091)) +(: cnet_isa_908fe512b7 (IsA pulp mass) (STV 1.0 0.9091)) +(: cnet_isa_92fb68183a (IsA pulp plant_tissue) (STV 1.0 0.9091)) +(: cnet_isa_c1f21609b7 (IsA pulp cellulose) (STV 1.0 0.9091)) +(: cnet_isa_90e9b7a8b8 (IsA pulp_cavity cavity) (STV 1.0 0.9091)) +(: cnet_isa_5ed81d5ac1 (IsA pulpit in_churche) (STV 1.0 0.9572)) +(: cnet_isa_b8017c20c6 (IsA pulpwood softwood) (STV 1.0 0.9091)) +(: cnet_isa_a07640bf71 (IsA pulque alcohol) (STV 1.0 0.9091)) +(: cnet_isa_dc6da4c815 (IsA pulsar neutron_star) (STV 1.0 0.9091)) +(: cnet_isa_21b098a791 (IsA pulsatilla magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0d0dad6212 (IsA pulsation wave) (STV 1.0 0.9091)) +(: cnet_isa_0d83aee8ce (IsA pulsation phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_c6307e1ce1 (IsA pulse periodic_event) (STV 1.0 0.9091)) +(: cnet_isa_4647880f23 (IsA pulse legume) (STV 1.0 0.9091)) +(: cnet_isa_450bcbeb72 (IsA pulse rate) (STV 1.0 0.9091)) +(: cnet_isa_22f98af5f8 (IsA pulse vital_sign) (STV 1.0 0.9091)) +(: cnet_isa_66ba8db528 (IsA pulse_counter counter) (STV 1.0 0.9091)) +(: cnet_isa_173a453d98 (IsA pulse_generator generator) (STV 1.0 0.9091)) +(: cnet_isa_19f5e274c3 (IsA pulse_modulation modulation) (STV 1.0 0.9091)) +(: cnet_isa_fc745058d6 (IsA pulse_time_modulation pulse_modulation) (STV 1.0 0.9091)) +(: cnet_isa_08b4ee41a0 (IsA pulse_timing_circuit circuit) (STV 1.0 0.9091)) +(: cnet_isa_f35212e263 (IsA pulverization annihilation) (STV 1.0 0.9091)) +(: cnet_isa_468e1fcc26 (IsA pumice rock) (STV 1.0 0.9091)) +(: cnet_isa_809ee1ef8e (IsA pump machine) (STV 1.0 0.9339)) +(: cnet_isa_e01fffb40b (IsA pump mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_5acd87aee6 (IsA pump shoe) (STV 1.0 0.9091)) +(: cnet_isa_f6b2614b93 (IsA pump_action action) (STV 1.0 0.9091)) +(: cnet_isa_76112619e0 (IsA pump_and_dump_scheme contrivance) (STV 1.0 0.9091)) +(: cnet_isa_4675f76904 (IsA pump_house house) (STV 1.0 0.9091)) +(: cnet_isa_0583d3683b (IsA pump_priming care) (STV 1.0 0.9091)) +(: cnet_isa_241800bd0e (IsA pump_room pump_house) (STV 1.0 0.9091)) +(: cnet_isa_15ffc743ad (IsA pump_type_plier plier) (STV 1.0 0.9091)) +(: cnet_isa_65607be6cc (IsA pump_well well) (STV 1.0 0.9091)) +(: cnet_isa_8dfdd90525 (IsA pumpkin vegetable) (STV 1.0 0.9091)) +(: cnet_isa_85163564d7 (IsA pumpkin squash) (STV 1.0 0.9091)) +(: cnet_isa_4b55452665 (IsA pumpkin_ash ash) (STV 1.0 0.9091)) +(: cnet_isa_8fb6ec4b59 (IsA pumpkin_pie dessert) (STV 1.0 0.9091)) +(: cnet_isa_df616afe8f (IsA pumpkin_pie pie) (STV 1.0 0.9091)) +(: cnet_isa_0c465ad056 (IsA pumpkin_seed edible_seed) (STV 1.0 0.9091)) +(: cnet_isa_60e55749b5 (IsA pumpkinseed sunfish) (STV 1.0 0.9091)) +(: cnet_isa_1118127314 (IsA pun fun) (STV 1.0 0.9091)) +(: cnet_isa_d2f4cef58b (IsA punch tool) (STV 1.0 0.9091)) +(: cnet_isa_46bf0261a4 (IsA punch blow) (STV 1.0 0.9091)) +(: cnet_isa_83941c999e (IsA punch mixed_drink) (STV 1.0 0.9091)) +(: cnet_isa_7d6ad67f96 (IsA punch_bowl bowl) (STV 1.0 0.9091)) +(: cnet_isa_7d60516bb3 (IsA punch_line line) (STV 1.0 0.9091)) +(: cnet_isa_1d02d60033 (IsA punch_plier punch) (STV 1.0 0.9091)) +(: cnet_isa_eebb16f47d (IsA punch_press press) (STV 1.0 0.9091)) +(: cnet_isa_efdc01f923 (IsA punch_up fistfight) (STV 1.0 0.9091)) +(: cnet_isa_85fab0f6d7 (IsA punchboard board) (STV 1.0 0.9091)) +(: cnet_isa_654075e05f (IsA punched_card card) (STV 1.0 0.9091)) +(: cnet_isa_5671772d2e (IsA puncher boxer) (STV 1.0 0.9091)) +(: cnet_isa_d75f320b9b (IsA punching_bag ball) (STV 1.0 0.9091)) +(: cnet_isa_ba6ae878d6 (IsA punching_bag victim) (STV 1.0 0.9091)) +(: cnet_isa_8c8516b1b2 (IsA punctilio honoring) (STV 1.0 0.9091)) +(: cnet_isa_1bd1a54569 (IsA punctilio etiquette) (STV 1.0 0.9091)) +(: cnet_isa_da1e4da3ca (IsA punctuality timing) (STV 1.0 0.9091)) +(: cnet_isa_dafddeb1fa (IsA punctuated_equilibrium theory_of_evolution) (STV 1.0 0.9091)) +(: cnet_isa_c1d19a91fc (IsA punctuation grouping) (STV 1.0 0.9091)) +(: cnet_isa_c42a19680a (IsA punctuation mark) (STV 1.0 0.9091)) +(: cnet_isa_dc0557bf84 (IsA punctuation interruption) (STV 1.0 0.9091)) +(: cnet_isa_8a8902f8d5 (IsA punctum point) (STV 1.0 0.9091)) +(: cnet_isa_a63c927646 (IsA puncture activity) (STV 1.0 0.9091)) +(: cnet_isa_121416a246 (IsA puncture hole) (STV 1.0 0.9091)) +(: cnet_isa_724a2f50bf (IsA puncture mishap) (STV 1.0 0.9091)) +(: cnet_isa_67641b8154 (IsA pung sled) (STV 1.0 0.9091)) +(: cnet_isa_b23c5ce049 (IsA pungapung arum) (STV 1.0 0.9091)) +(: cnet_isa_ae3ee062ca (IsA pungency spiciness) (STV 1.0 0.9091)) +(: cnet_isa_c6ada480bd (IsA pungency wit) (STV 1.0 0.9091)) +(: cnet_isa_2a09f10808 (IsA punic phoenician) (STV 1.0 0.9091)) +(: cnet_isa_74912b6c58 (IsA punica dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0a2c3c5960 (IsA punicaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_efe5b94c1d (IsA puniness smallness) (STV 1.0 0.9091)) +(: cnet_isa_6ecae70a81 (IsA punishment social_control) (STV 1.0 0.9091)) +(: cnet_isa_e033da024c (IsA punitive_damage damage) (STV 1.0 0.9091)) +(: cnet_isa_752d9467b8 (IsA punjabi sanskrit) (STV 1.0 0.9091)) +(: cnet_isa_76d9422aaa (IsA punk igniter) (STV 1.0 0.9091)) +(: cnet_isa_c65bb7d7d3 (IsA punk_rock rock_n_roll) (STV 1.0 0.9091)) +(: cnet_isa_891bbe26ab (IsA punk_rocker adolescent) (STV 1.0 0.9091)) +(: cnet_isa_3e3b0b205c (IsA punkah fan) (STV 1.0 0.9091)) +(: cnet_isa_18e1dbdc9c (IsA punkie gnat) (STV 1.0 0.9091)) +(: cnet_isa_804126b516 (IsA punk youth_subculture) (STV 1.0 0.9091)) +(: cnet_isa_b8ff78c651 (IsA punnet basket) (STV 1.0 0.9091)) +(: cnet_isa_999891beea (IsA punster humorist) (STV 1.0 0.9091)) +(: cnet_isa_959a773209 (IsA punt boat) (STV 1.0 0.9091)) +(: cnet_isa_37f734da2f (IsA punt kick) (STV 1.0 0.9091)) +(: cnet_isa_dcae769c60 (IsA punter kicker) (STV 1.0 0.9091)) +(: cnet_isa_9abb65d807 (IsA punter boatman) (STV 1.0 0.9091)) +(: cnet_isa_c64d9aa6cd (IsA pup young_dog) (STV 1.0 0.9524)) +(: cnet_isa_9ba8aa6636 (IsA pup young_mammal) (STV 1.0 0.9091)) +(: cnet_isa_7e27757429 (IsA pup_tent tent) (STV 1.0 0.9091)) +(: cnet_isa_b81c5892be (IsA pupa insect) (STV 1.0 0.9091)) +(: cnet_isa_86011406e5 (IsA pupil aperture) (STV 1.0 0.9091)) +(: cnet_isa_51c23114bb (IsA pupillary_sphincter sphincter) (STV 1.0 0.9091)) +(: cnet_isa_5cabe5b7c0 (IsA puppet doll) (STV 1.0 0.9091)) +(: cnet_isa_f881004c31 (IsA puppet figure) (STV 1.0 0.9091)) +(: cnet_isa_4f6142959a (IsA puppet_government government) (STV 1.0 0.9091)) +(: cnet_isa_895c0292ed (IsA puppet_ruler leader) (STV 1.0 0.9091)) +(: cnet_isa_69a9c6f557 (IsA puppet_ruler ruler) (STV 1.0 0.9091)) +(: cnet_isa_f204c3b8db (IsA puppet_show show) (STV 1.0 0.9091)) +(: cnet_isa_af4b3f2960 (IsA puppeteer performer) (STV 1.0 0.9091)) +(: cnet_isa_3a8c069d6f (IsA puppetry dramatization) (STV 1.0 0.9091)) +(: cnet_isa_322b2e1d37 (IsA puppetry art) (STV 1.0 0.9091)) +(: cnet_isa_1514ed7626 (IsA puppy baby) (STV 1.0 0.9091)) +(: cnet_isa_763a907107 (IsA puppy baby_dog) (STV 1.0 0.9091)) +(: cnet_isa_ee1630757d (IsA puppy dog) (STV 1.0 0.9608)) +(: cnet_isa_b3e6dd2eed (IsA puppy immature_dog) (STV 1.0 0.9339)) +(: cnet_isa_daa37334c2 (IsA puppy pup) (STV 1.0 0.9091)) +(: cnet_isa_a4687d4621 (IsA puppy young_person) (STV 1.0 0.9091)) +(: cnet_isa_f2eaef0df7 (IsA puppy_fat adipose_tissue) (STV 1.0 0.9091)) +(: cnet_isa_1c803e89d7 (IsA puppy_love love) (STV 1.0 0.9091)) +(: cnet_isa_569fb1a0a2 (IsA purana sanskrit_literature) (STV 1.0 0.9091)) +(: cnet_isa_91405b9308 (IsA purchase acquisition) (STV 1.0 0.9091)) +(: cnet_isa_befb2d5283 (IsA purchase influence) (STV 1.0 0.9091)) +(: cnet_isa_e54c371881 (IsA purchase_contract contract) (STV 1.0 0.9091)) +(: cnet_isa_025b05fc3c (IsA purchase_price price) (STV 1.0 0.9091)) +(: cnet_isa_f03f33aa95 (IsA purchasing_agent agent) (STV 1.0 0.9091)) +(: cnet_isa_445d95783e (IsA purchasing_department business_department) (STV 1.0 0.9091)) +(: cnet_isa_8c430b1899 (IsA purdah screen) (STV 1.0 0.9091)) +(: cnet_isa_5037092aac (IsA purdah segregation) (STV 1.0 0.9091)) +(: cnet_isa_0eb01b97bb (IsA pure_absence petit_mal_epilepsy) (STV 1.0 0.9091)) +(: cnet_isa_460190292c (IsA pure_imaginary_number complex_number) (STV 1.0 0.9091)) +(: cnet_isa_d3c3a53f78 (IsA pure_mathematic mathematic) (STV 1.0 0.9091)) +(: cnet_isa_f538694bd9 (IsA puree nutriment) (STV 1.0 0.9091)) +(: cnet_isa_e184741566 (IsA purgative medicine) (STV 1.0 0.9091)) +(: cnet_isa_1d8bf54e44 (IsA purgatory situation) (STV 1.0 0.9091)) +(: cnet_isa_326426b7b1 (IsA purgatory imaginary_place) (STV 1.0 0.9091)) +(: cnet_isa_ca18810710 (IsA purge cleaning) (STV 1.0 0.9091)) +(: cnet_isa_640b736023 (IsA purge clearing) (STV 1.0 0.9091)) +(: cnet_isa_02395c1fdc (IsA purge removal) (STV 1.0 0.9091)) +(: cnet_isa_67ad3e6e17 (IsA purification ceremony) (STV 1.0 0.9091)) +(: cnet_isa_eff6a57ca4 (IsA purification cleaning) (STV 1.0 0.9091)) +(: cnet_isa_fddb42adc2 (IsA purification purge) (STV 1.0 0.9091)) +(: cnet_isa_951e6cf39f (IsA purifier apparatus) (STV 1.0 0.9091)) +(: cnet_isa_10c1dbbd20 (IsA purim jewish_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_2e80694bd2 (IsA purine base) (STV 1.0 0.9091)) +(: cnet_isa_4a9a880d17 (IsA purism insistence) (STV 1.0 0.9091)) +(: cnet_isa_3f474105fa (IsA purist pedant) (STV 1.0 0.9091)) +(: cnet_isa_156f6562a3 (IsA puritan abstainer) (STV 1.0 0.9091)) +(: cnet_isa_e319fad759 (IsA puritan protestant) (STV 1.0 0.9091)) +(: cnet_isa_dbc28c5b0e (IsA puritanism sternness) (STV 1.0 0.9091)) +(: cnet_isa_785e6beaa3 (IsA puritanism protestantism) (STV 1.0 0.9091)) +(: cnet_isa_f5f239d1e2 (IsA purity condition) (STV 1.0 0.9091)) +(: cnet_isa_5e114dc86c (IsA purkinje_cell brain_cell) (STV 1.0 0.9091)) +(: cnet_isa_ddd8580134 (IsA purkinje_fiber cardiac_muscle) (STV 1.0 0.9091)) +(: cnet_isa_1781aab3ae (IsA purkinje_network cardiac_muscle) (STV 1.0 0.9091)) +(: cnet_isa_9fcdb91de3 (IsA purl knitting_stitch) (STV 1.0 0.9091)) +(: cnet_isa_1087148770 (IsA purl thread) (STV 1.0 0.9091)) +(: cnet_isa_dff97c42fe (IsA purloo stew) (STV 1.0 0.9091)) +(: cnet_isa_d8018bc175 (IsA purple color) (STV 1.0 0.9524)) +(: cnet_isa_f5cc06c5e7 (IsA purple chromatic_color) (STV 1.0 0.9091)) +(: cnet_isa_8a15a51f4e (IsA purple ecclesiastical_attire) (STV 1.0 0.9091)) +(: cnet_isa_f6ce2adddd (IsA purple nobility) (STV 1.0 0.9091)) +(: cnet_isa_072bef9753 (IsA purple_anise anise_tree) (STV 1.0 0.9091)) +(: cnet_isa_b71fdf03b8 (IsA purple_apricot apricot) (STV 1.0 0.9091)) +(: cnet_isa_6e2f9fec0c (IsA purple_bacteria phototrophic_bacteria) (STV 1.0 0.9091)) +(: cnet_isa_c10509b347 (IsA purple_chinese_hous wildflower) (STV 1.0 0.9091)) +(: cnet_isa_f2721d9d90 (IsA purple_clematis clematis) (STV 1.0 0.9091)) +(: cnet_isa_138f60b756 (IsA purple_cress bittercress) (STV 1.0 0.9091)) +(: cnet_isa_08306c6af7 (IsA purple_emperor emperor_butterfly) (STV 1.0 0.9091)) +(: cnet_isa_67978487ff (IsA purple_finch finch) (STV 1.0 0.9091)) +(: cnet_isa_55c75781c4 (IsA purple_fringed_orchid fringed_orchis) (STV 1.0 0.9091)) +(: cnet_isa_773a144028 (IsA purple_fringeless_orchid fringed_orchis) (STV 1.0 0.9091)) +(: cnet_isa_14b9bd56a6 (IsA purple_gallinule gallinule) (STV 1.0 0.9091)) +(: cnet_isa_99839c6ab5 (IsA purple_grackle grackle) (STV 1.0 0.9091)) +(: cnet_isa_3a90da75a8 (IsA purple_heather heath) (STV 1.0 0.9091)) +(: cnet_isa_f5fccecb77 (IsA purple_locoweed locoweed) (STV 1.0 0.9091)) +(: cnet_isa_65a48eef81 (IsA purple_loosestrife loosestrife) (STV 1.0 0.9091)) +(: cnet_isa_7ec4122f22 (IsA purple_martin martin) (STV 1.0 0.9091)) +(: cnet_isa_9544e4809e (IsA purple_milk_vetch milk_vetch) (STV 1.0 0.9091)) +(: cnet_isa_ac15c1e145 (IsA purple_mullein mullein) (STV 1.0 0.9091)) +(: cnet_isa_84deee068e (IsA purple_onion spanish_onion) (STV 1.0 0.9091)) +(: cnet_isa_ab0a30c083 (IsA purple_passage passage) (STV 1.0 0.9091)) +(: cnet_isa_c326845448 (IsA purple_poppy_mallow poppy_mallow) (STV 1.0 0.9091)) +(: cnet_isa_c1a0367e4b (IsA purple_rock_brake cliff_brake) (STV 1.0 0.9091)) +(: cnet_isa_dff6859402 (IsA purple_sage sage) (STV 1.0 0.9091)) +(: cnet_isa_b140e2281d (IsA purple_sanicle sanicle) (STV 1.0 0.9091)) +(: cnet_isa_a5efffcba9 (IsA purple_saxifrage saxifrage) (STV 1.0 0.9091)) +(: cnet_isa_5595bab5a9 (IsA purple_silkweed milkweed) (STV 1.0 0.9091)) +(: cnet_isa_e27ceb71c5 (IsA purple_stemmed_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_5486e39359 (IsA purple_trillium trillium) (STV 1.0 0.9091)) +(: cnet_isa_6edb137573 (IsA purple_willow osier) (STV 1.0 0.9091)) +(: cnet_isa_fe4320abe3 (IsA purplish_blue blue) (STV 1.0 0.9091)) +(: cnet_isa_20cf5d6aea (IsA purplish_red red) (STV 1.0 0.9091)) +(: cnet_isa_f50b8668b0 (IsA purpose goal) (STV 1.0 0.9091)) +(: cnet_isa_ef3cef5972 (IsA purposefulness meaningfulness) (STV 1.0 0.9091)) +(: cnet_isa_85a83be556 (IsA purposelessness meaninglessness) (STV 1.0 0.9091)) +(: cnet_isa_43cbcc5287 (IsA purpura blood_disease) (STV 1.0 0.9091)) +(: cnet_isa_09b718adf2 (IsA purr sound) (STV 1.0 0.9091)) +(: cnet_isa_9fb16a2349 (IsA purse bag) (STV 1.0 0.9091)) +(: cnet_isa_404286df36 (IsA purse sum) (STV 1.0 0.9091)) +(: cnet_isa_cb8b00b40a (IsA purse_seine seine) (STV 1.0 0.9091)) +(: cnet_isa_922c1f79ce (IsA purse_string drawstring) (STV 1.0 0.9091)) +(: cnet_isa_faf647d421 (IsA purse_string fund) (STV 1.0 0.9091)) +(: cnet_isa_0281c1bd73 (IsA purser officer) (STV 1.0 0.9091)) +(: cnet_isa_fb43e033e4 (IsA purslane herb) (STV 1.0 0.9091)) +(: cnet_isa_6198f40ee6 (IsA purslane_speedwell veronica) (STV 1.0 0.9091)) +(: cnet_isa_37d0c8df10 (IsA pursuance continuance) (STV 1.0 0.9091)) +(: cnet_isa_db5a6e1f04 (IsA pursued hunted_person) (STV 1.0 0.9091)) +(: cnet_isa_4dbd139361 (IsA pursuer follower) (STV 1.0 0.9091)) +(: cnet_isa_bb03a8800f (IsA pursuer person) (STV 1.0 0.9091)) +(: cnet_isa_dc64d05d9b (IsA pursuit motion) (STV 1.0 0.9091)) +(: cnet_isa_9d51aaa8c0 (IsA pursuit search) (STV 1.0 0.9091)) +(: cnet_isa_8995d36cf2 (IsA purulence symptom) (STV 1.0 0.9091)) +(: cnet_isa_e8bfce53d8 (IsA purulent_pleurisy empyema) (STV 1.0 0.9091)) +(: cnet_isa_80c2c27037 (IsA purulent_pleurisy pleurisy) (STV 1.0 0.9091)) +(: cnet_isa_3d793460bf (IsA purveyance provision) (STV 1.0 0.9091)) +(: cnet_isa_1525934f5a (IsA purveyor supplier) (STV 1.0 0.9091)) +(: cnet_isa_2a619fd73e (IsA pus liquid_body_substance) (STV 1.0 0.9091)) +(: cnet_isa_e1b64881d6 (IsA pus hindu_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_4852686e9a (IsA pus_forming_bacteria bacteria) (STV 1.0 0.9091)) +(: cnet_isa_b95c340a29 (IsA push progress) (STV 1.0 0.9091)) +(: cnet_isa_fe54f8d9a5 (IsA push propulsion) (STV 1.0 0.9091)) +(: cnet_isa_4202bc5f97 (IsA push force) (STV 1.0 0.9091)) +(: cnet_isa_a29e00d012 (IsA push_bike bicycle) (STV 1.0 0.9091)) +(: cnet_isa_3b2e66f506 (IsA push_broom broom) (STV 1.0 0.9091)) +(: cnet_isa_cad0d65b3d (IsA push_button switch) (STV 1.0 0.9091)) +(: cnet_isa_1199cd7aeb (IsA push_button_radio radio_receiver) (STV 1.0 0.9091)) +(: cnet_isa_664f2b1101 (IsA push_down_list list) (STV 1.0 0.9091)) +(: cnet_isa_fa109c3ba4 (IsA push_down_queue queue) (STV 1.0 0.9091)) +(: cnet_isa_e559b94f43 (IsA push_down_storage memory_device) (STV 1.0 0.9091)) +(: cnet_isa_0c913bddf6 (IsA pushball field_game) (STV 1.0 0.9091)) +(: cnet_isa_1e3bf1a8b9 (IsA pusher sandal) (STV 1.0 0.9091)) +(: cnet_isa_0a903eea01 (IsA pusher criminal) (STV 1.0 0.9091)) +(: cnet_isa_24766599d5 (IsA pusher dealer) (STV 1.0 0.9091)) +(: cnet_isa_9a40466607 (IsA pusher intruder) (STV 1.0 0.9091)) +(: cnet_isa_a740b86259 (IsA pusher mover) (STV 1.0 0.9091)) +(: cnet_isa_bddd8f4527 (IsA pushing pushing) (STV 1.0 0.9091)) +(: cnet_isa_10a612576b (IsA pushing_baby_carriage pushing) (STV 1.0 0.9091)) +(: cnet_isa_9096cf1d1c (IsA pushover flunky) (STV 1.0 0.9091)) +(: cnet_isa_3a77ef7158 (IsA pushup arm_exercise) (STV 1.0 0.9091)) +(: cnet_isa_f07acb48e3 (IsA pusillanimity fearfulness) (STV 1.0 0.9091)) +(: cnet_isa_6232dceeed (IsA pussy_paw wildflower) (STV 1.0 0.9091)) +(: cnet_isa_aabd943ebb (IsA pussy_willow willow) (STV 1.0 0.9091)) +(: cnet_isa_8b346186f4 (IsA pussycat person) (STV 1.0 0.9091)) +(: cnet_isa_e55dd0ef4b (IsA pustule blister) (STV 1.0 0.9091)) +(: cnet_isa_8ab4a15ef1 (IsA pustule pimple) (STV 1.0 0.9091)) +(: cnet_isa_b439e8a378 (IsA put_down derision) (STV 1.0 0.9091)) +(: cnet_isa_6b6005cc61 (IsA put_option option) (STV 1.0 0.9091)) +(: cnet_isa_e37868fcd1 (IsA put_option stock_option) (STV 1.0 0.9091)) +(: cnet_isa_1b82b89fc3 (IsA put_put gasoline_engine) (STV 1.0 0.9091)) +(: cnet_isa_91f6b327a1 (IsA putamen basal_ganglion) (STV 1.0 0.9091)) +(: cnet_isa_6df10ddff1 (IsA putoff pretext) (STV 1.0 0.9091)) +(: cnet_isa_17dccae58d (IsA putout out) (STV 1.0 0.9091)) +(: cnet_isa_1ef7c164c6 (IsA putrefaction decay) (STV 1.0 0.9091)) +(: cnet_isa_51f3cb88bd (IsA putrescence unwholesomeness) (STV 1.0 0.9091)) +(: cnet_isa_a17ee0a7b6 (IsA putrescence putrefaction) (STV 1.0 0.9091)) +(: cnet_isa_104cd2fd21 (IsA putrescine ptomaine) (STV 1.0 0.9091)) +(: cnet_isa_242242cb45 (IsA putridity impurity) (STV 1.0 0.9091)) +(: cnet_isa_333536aa19 (IsA putt golf_stroke) (STV 1.0 0.9091)) +(: cnet_isa_b7dbdbc6b0 (IsA puttee legging) (STV 1.0 0.9091)) +(: cnet_isa_d347826907 (IsA putter iron) (STV 1.0 0.9091)) +(: cnet_isa_9d7680c9da (IsA putter golfer) (STV 1.0 0.9091)) +(: cnet_isa_e2fc1f2bcc (IsA putterer dawdler) (STV 1.0 0.9091)) +(: cnet_isa_16b7131e63 (IsA putty cement) (STV 1.0 0.9091)) +(: cnet_isa_f1b624967e (IsA putty filler) (STV 1.0 0.9091)) +(: cnet_isa_866dc4d3ce (IsA putty_knife spatula) (STV 1.0 0.9091)) +(: cnet_isa_6ef7925839 (IsA puttyroot orchid) (STV 1.0 0.9091)) +(: cnet_isa_7ef735e785 (IsA putz fool) (STV 1.0 0.9091)) +(: cnet_isa_659e4921ec (IsA puzzle problem) (STV 1.0 0.9524)) +(: cnet_isa_b3ee64fb0c (IsA puzzle game) (STV 1.0 0.9091)) +(: cnet_isa_19d97ad650 (IsA pya myanmar_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_22bca86498 (IsA pycnanthemum asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e3c55cf994 (IsA pycnidium plant_part) (STV 1.0 0.9091)) +(: cnet_isa_c24bbcd837 (IsA pycnodysostosis dwarfism) (STV 1.0 0.9091)) +(: cnet_isa_16178fd885 (IsA pycnogonida animal_order) (STV 1.0 0.9091)) +(: cnet_isa_5837bd3280 (IsA pycnosis disease) (STV 1.0 0.9091)) +(: cnet_isa_07704796d2 (IsA pyelitis inflammatory_disease) (STV 1.0 0.9091)) +(: cnet_isa_0846c3f90f (IsA pyelogram roentgenogram) (STV 1.0 0.9091)) +(: cnet_isa_b0952f9a58 (IsA pyelography roentgenography) (STV 1.0 0.9091)) +(: cnet_isa_94f3984f4d (IsA pyelonephritis urinary_tract_infection) (STV 1.0 0.9091)) +(: cnet_isa_07f98f7729 (IsA pyemia blood_poisoning) (STV 1.0 0.9091)) +(: cnet_isa_76eafa33fc (IsA pygmy small_person) (STV 1.0 0.9091)) +(: cnet_isa_d6e1b2f6dc (IsA pygmy_chimpanzee chimpanzee) (STV 1.0 0.9091)) +(: cnet_isa_29389d6f76 (IsA pygmy_cypress cypress) (STV 1.0 0.9091)) +(: cnet_isa_9b69309ec8 (IsA pygmy_marmoset marmoset) (STV 1.0 0.9091)) +(: cnet_isa_18ff43e6b3 (IsA pygmy_mouse wood_mouse) (STV 1.0 0.9091)) +(: cnet_isa_09b5ed3ab7 (IsA pygmy_sperm_whale toothed_whale) (STV 1.0 0.9091)) +(: cnet_isa_88b2e01369 (IsA pygopodidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_94d6516b22 (IsA pygopus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_69ac26e0ff (IsA pygoscelis bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_2c45398d33 (IsA pyinma wood) (STV 1.0 0.9091)) +(: cnet_isa_07b55fe2f2 (IsA pyjama pair_of_trouser) (STV 1.0 0.9091)) +(: cnet_isa_f209f80f76 (IsA pylodictus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_1d4fcbf32b (IsA pylon tower) (STV 1.0 0.9091)) +(: cnet_isa_470302c7fb (IsA pyloric_sphincter sphincter) (STV 1.0 0.9091)) +(: cnet_isa_aa276328be (IsA pyloric_stenosis stenosis) (STV 1.0 0.9091)) +(: cnet_isa_9674e52ef5 (IsA pyloric_vein gastric_vein) (STV 1.0 0.9091)) +(: cnet_isa_e88b2b8fab (IsA pylorus orifice) (STV 1.0 0.9091)) +(: cnet_isa_f5d1143802 (IsA pyocyanase antibiotic) (STV 1.0 0.9091)) +(: cnet_isa_0e4971782a (IsA pyocyanin antibiotic) (STV 1.0 0.9091)) +(: cnet_isa_f6877741e1 (IsA pyorrhea pathology) (STV 1.0 0.9091)) +(: cnet_isa_a4176300d0 (IsA pyorrhea periodontal_disease) (STV 1.0 0.9091)) +(: cnet_isa_4b4669f626 (IsA pyracantha shrub) (STV 1.0 0.9091)) +(: cnet_isa_182f31e3d1 (IsA pyralid moth) (STV 1.0 0.9091)) +(: cnet_isa_7f011418a8 (IsA pyralidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_0b8e2c66fc (IsA pyralis arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_3d3eb1dd10 (IsA pyramid polyhedron) (STV 1.0 0.9091)) +(: cnet_isa_e4c4096bbb (IsA pyramid speculation) (STV 1.0 0.9091)) +(: cnet_isa_47012c47aa (IsA pyramid_bugle bugle) (STV 1.0 0.9091)) +(: cnet_isa_ba72a5398a (IsA pyramid_scheme scheme) (STV 1.0 0.9091)) +(: cnet_isa_7f018fecdc (IsA pyramidal_tent tent) (STV 1.0 0.9091)) +(: cnet_isa_00e9bac0ec (IsA pyramidal_tract motor_nerve) (STV 1.0 0.9091)) +(: cnet_isa_e3c92c795e (IsA pyramiding swindle) (STV 1.0 0.9091)) +(: cnet_isa_a8b92fbb0d (IsA pyrausta arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_f38ab22990 (IsA pyre pile) (STV 1.0 0.9091)) +(: cnet_isa_3d257fc339 (IsA pyrene nutlet) (STV 1.0 0.9091)) +(: cnet_isa_ffd7289ded (IsA pyrene hydrocarbon) (STV 1.0 0.9091)) +(: cnet_isa_4d6fb4a3e6 (IsA pyrenee_daisy composite) (STV 1.0 0.9091)) +(: cnet_isa_c11ceda990 (IsA pyrenomycete class) (STV 1.0 0.9091)) +(: cnet_isa_f90e6e5f1a (IsA pyrethrum asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_414615e3e6 (IsA pyrethrum herb) (STV 1.0 0.9091)) +(: cnet_isa_3a0251dbdb (IsA pyrethrum insecticide) (STV 1.0 0.9091)) +(: cnet_isa_577b48acef (IsA pyridine base) (STV 1.0 0.9091)) +(: cnet_isa_edda471010 (IsA pyriform_area neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_dce16a9a56 (IsA pyrilamine antihistamine) (STV 1.0 0.9091)) +(: cnet_isa_70c20c6f8b (IsA pyrimidine base) (STV 1.0 0.9091)) +(: cnet_isa_1aa9324ea1 (IsA pyrimidine organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_c0bd25f9a9 (IsA pyrite mineral) (STV 1.0 0.9091)) +(: cnet_isa_8f81e7e604 (IsA pyrite sulfide) (STV 1.0 0.9091)) +(: cnet_isa_7f3d2ac278 (IsA pyrocellulose cellulose_nitrate) (STV 1.0 0.9091)) +(: cnet_isa_6abfa6e0af (IsA pyrocephalus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_0bfc9bdd3d (IsA pyrochemical_process chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_4dda32dd87 (IsA pyroelectricity electrical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_efc39d817b (IsA pyrogallol phenol) (STV 1.0 0.9091)) +(: cnet_isa_731709caab (IsA pyrogen substance) (STV 1.0 0.9091)) +(: cnet_isa_c6639ed980 (IsA pyrograph design) (STV 1.0 0.9091)) +(: cnet_isa_a4d27fa9f5 (IsA pyrographer artist) (STV 1.0 0.9091)) +(: cnet_isa_9a2af71017 (IsA pyrography drawing) (STV 1.0 0.9091)) +(: cnet_isa_7da1ea9e18 (IsA pyrolaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_20f761eb8d (IsA pyrolatry worship) (STV 1.0 0.9091)) +(: cnet_isa_1b44df4811 (IsA pyroligneous_acid liquid) (STV 1.0 0.9091)) +(: cnet_isa_cebb13d168 (IsA pyrolusite mineral) (STV 1.0 0.9091)) +(: cnet_isa_9a778e7c31 (IsA pyrolysis transformation) (STV 1.0 0.9091)) +(: cnet_isa_e0683ccc69 (IsA pyromancer diviner) (STV 1.0 0.9091)) +(: cnet_isa_5aef2a2a73 (IsA pyromancy divination) (STV 1.0 0.9091)) +(: cnet_isa_3539ac1470 (IsA pyromania mania) (STV 1.0 0.9091)) +(: cnet_isa_1333c04a75 (IsA pyromaniac lunatic) (STV 1.0 0.9091)) +(: cnet_isa_6cf7cdca24 (IsA pyrometer thermometer) (STV 1.0 0.9091)) +(: cnet_isa_d4bd5616d3 (IsA pyrometric_cone pyrometer) (STV 1.0 0.9091)) +(: cnet_isa_d85c151e2c (IsA pyromorphite mineral) (STV 1.0 0.9091)) +(: cnet_isa_93c9b31032 (IsA pyrope garnet) (STV 1.0 0.9091)) +(: cnet_isa_af76445ef6 (IsA pyrophobia simple_phobia) (STV 1.0 0.9091)) +(: cnet_isa_c01de4dde4 (IsA pyrophoric_alloy alloy) (STV 1.0 0.9091)) +(: cnet_isa_1720e32c48 (IsA pyrophorus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_883f7640fb (IsA pyrophosphate salt) (STV 1.0 0.9091)) +(: cnet_isa_4b022b9141 (IsA pyrophosphoric_acid polyphosphoric_acid) (STV 1.0 0.9091)) +(: cnet_isa_c1dd8e1558 (IsA pyrophyllite mineral) (STV 1.0 0.9091)) +(: cnet_isa_18ad2fdecb (IsA pyrostat thermostat) (STV 1.0 0.9091)) +(: cnet_isa_b074260d59 (IsA pyrotechnic trade) (STV 1.0 0.9091)) +(: cnet_isa_ff6dd3eec7 (IsA pyrotechnic brilliance) (STV 1.0 0.9091)) +(: cnet_isa_3e6d457c90 (IsA pyroxene mineral) (STV 1.0 0.9091)) +(: cnet_isa_968aa4dbf2 (IsA pyroxylin cellulose_nitrate) (STV 1.0 0.9091)) +(: cnet_isa_a62b974d69 (IsA pyrrhic ritual_dancing) (STV 1.0 0.9091)) +(: cnet_isa_99594f01b2 (IsA pyrrhic metrical_foot) (STV 1.0 0.9091)) +(: cnet_isa_708cc4781a (IsA pyrrhic_victory victory) (STV 1.0 0.9091)) +(: cnet_isa_52b7a0129e (IsA pyrrhocoridae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_1bcf8e47ee (IsA pyrrhotite mineral) (STV 1.0 0.9091)) +(: cnet_isa_de4d598bb8 (IsA pyrrhula bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_d9b943a4e3 (IsA pyrrhuloxia finch) (STV 1.0 0.9091)) +(: cnet_isa_1da9b0a706 (IsA pyrrophyta phylum) (STV 1.0 0.9091)) +(: cnet_isa_1576062317 (IsA pyrrosia fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_b61b9d04b9 (IsA pyrularia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_767c3d6f63 (IsA pyrus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e46c7c1166 (IsA pyruvic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_8ee220e608 (IsA pythiaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_9385633716 (IsA pythian_game agon) (STV 1.0 0.9091)) +(: cnet_isa_325a4c1f76 (IsA pythium fungus) (STV 1.0 0.9091)) +(: cnet_isa_5b6211f5c3 (IsA python animal) (STV 1.0 0.9091)) +(: cnet_isa_3bd78a3430 (IsA python constricting_snake) (STV 1.0 0.9091)) +(: cnet_isa_29bb404ae3 (IsA python programming_language) (STV 1.0 0.9608)) +(: cnet_isa_5ca217da19 (IsA python boa) (STV 1.0 0.9091)) +(: cnet_isa_c681eabc0f (IsA python spirit) (STV 1.0 0.9091)) +(: cnet_isa_9e4c9b02fe (IsA pythoness witch) (STV 1.0 0.9091)) +(: cnet_isa_55723d5db0 (IsA pythonidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_d2efcd81a2 (IsA pythoninae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_be8df985a2 (IsA python snake) (STV 1.0 0.9454)) +(: cnet_isa_df0b133bbb (IsA pyuria symptom) (STV 1.0 0.9091)) +(: cnet_isa_469c7e793b (IsA pyx chest) (STV 1.0 0.9091)) +(: cnet_isa_8f9f90a053 (IsA pyx receptacle) (STV 1.0 0.9091)) +(: cnet_isa_8b47f3c7cc (IsA pyxidanthera dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e65506ce0b (IsA pyxidium fruit) (STV 1.0 0.9091)) +(: cnet_isa_83b2fd7334 (IsA pyxie shrub) (STV 1.0 0.9091)) +(: cnet_isa_874f7edbc6 (IsA pyxis box) (STV 1.0 0.9091)) +(: cnet_isa_0bc928c919 (IsA q letter) (STV 1.0 0.9091)) +(: cnet_isa_05ef6edc31 (IsA q_fever rickettsial_disease) (STV 1.0 0.9091)) +(: cnet_isa_dd728230d8 (IsA qadi judge) (STV 1.0 0.9091)) +(: cnet_isa_ade9141fbf (IsA qatari_dirham qatari_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_f5cbb79ccc (IsA qatari_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_31c198b421 (IsA qatari_riyal qatari_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_fb67e264d8 (IsA qepiq azerbaijani_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_b1474d1702 (IsA qi energy) (STV 1.0 0.9091)) +(: cnet_isa_a084ecaba6 (IsA qiang tibeto_burman) (STV 1.0 0.9091)) +(: cnet_isa_756edda93b (IsA qibla direction) (STV 1.0 0.9091)) +(: cnet_isa_3fb535bf1e (IsA qindarka albanian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_64dbb622df (IsA qing dynasty) (STV 1.0 0.9091)) +(: cnet_isa_8338d2d0fd (IsA qoph letter) (STV 1.0 0.9091)) +(: cnet_isa_690d3f9d0d (IsA quack sound) (STV 1.0 0.9091)) +(: cnet_isa_67029105b3 (IsA quack doctor) (STV 1.0 0.9091)) +(: cnet_isa_a5eaf89f2d (IsA quack mountebank) (STV 1.0 0.9091)) +(: cnet_isa_5dbfd2be9e (IsA quack_quack duck) (STV 1.0 0.9091)) +(: cnet_isa_aaaf945c7d (IsA quackery medical_practice) (STV 1.0 0.9091)) +(: cnet_isa_cec31b46dc (IsA quad area) (STV 1.0 0.9091)) +(: cnet_isa_cdeb0602ad (IsA quad type) (STV 1.0 0.9091)) +(: cnet_isa_9cc71826e4 (IsA quadragesima christian_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_fa0ea05e21 (IsA quadrangular_prism prism) (STV 1.0 0.9091)) +(: cnet_isa_66234ebcce (IsA quadrant measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_6c8b99b79c (IsA quadrant area) (STV 1.0 0.9091)) +(: cnet_isa_c0173d59be (IsA quadrant line) (STV 1.0 0.9091)) +(: cnet_isa_514ece812f (IsA quadrant angle) (STV 1.0 0.9091)) +(: cnet_isa_71c240a9a8 (IsA quadrantanopia visual_impairment) (STV 1.0 0.9091)) +(: cnet_isa_456808e325 (IsA quadraphony stereo) (STV 1.0 0.9091)) +(: cnet_isa_7f2dd2631d (IsA quadrate cube) (STV 1.0 0.9091)) +(: cnet_isa_3a799675e2 (IsA quadrate square) (STV 1.0 0.9091)) +(: cnet_isa_8e8a3b133a (IsA quadratic polynomial) (STV 1.0 0.9091)) +(: cnet_isa_431262e23a (IsA quadratic_equation equation) (STV 1.0 0.9091)) +(: cnet_isa_c12acc09b8 (IsA quadratic algebra) (STV 1.0 0.9091)) +(: cnet_isa_8c6e841eb8 (IsA quadrature construction) (STV 1.0 0.9091)) +(: cnet_isa_b16bfe4a78 (IsA quadrennium time_period) (STV 1.0 0.9091)) +(: cnet_isa_41501e14a9 (IsA quadric curve) (STV 1.0 0.9091)) +(: cnet_isa_b707d8ba48 (IsA quadricep extensor_muscle) (STV 1.0 0.9091)) +(: cnet_isa_ccb1e288ea (IsA quadrilateral polygon) (STV 1.0 0.9091)) +(: cnet_isa_1da9edb94d (IsA quadrille square_dance) (STV 1.0 0.9091)) +(: cnet_isa_c4ffa05496 (IsA quadrille dance_music) (STV 1.0 0.9091)) +(: cnet_isa_1b410cb5c9 (IsA quadrillion large_integer) (STV 1.0 0.9091)) +(: cnet_isa_922a3c6571 (IsA quadripara mother) (STV 1.0 0.9091)) +(: cnet_isa_3311956ae5 (IsA quadriplegia paralysis) (STV 1.0 0.9091)) +(: cnet_isa_e8f4699adf (IsA quadriplegic handicapped_person) (STV 1.0 0.9091)) +(: cnet_isa_836a88e9ed (IsA quadrivium humanistic_discipline) (STV 1.0 0.9091)) +(: cnet_isa_c5185288b5 (IsA quadroon mixed_blood) (STV 1.0 0.9091)) +(: cnet_isa_deaced70f7 (IsA quadrumvirate quartet) (STV 1.0 0.9091)) +(: cnet_isa_7a5990144a (IsA quadruped tetrapod) (STV 1.0 0.9091)) +(: cnet_isa_8bb1601c32 (IsA quadruple multiple) (STV 1.0 0.9091)) +(: cnet_isa_0c5e2a0de0 (IsA quadruplet sibling) (STV 1.0 0.9091)) +(: cnet_isa_5731cf2517 (IsA quadruplicate copy) (STV 1.0 0.9091)) +(: cnet_isa_4f0324f450 (IsA quadrupling multiplication) (STV 1.0 0.9091)) +(: cnet_isa_d50a04763c (IsA quaestor official) (STV 1.0 0.9091)) +(: cnet_isa_a238fb52f1 (IsA quaff draft) (STV 1.0 0.9091)) +(: cnet_isa_550c387f36 (IsA quaffer drinker) (STV 1.0 0.9091)) +(: cnet_isa_e26acc8087 (IsA quagga equine) (STV 1.0 0.9091)) +(: cnet_isa_75eabefcae (IsA quahaug clam) (STV 1.0 0.9091)) +(: cnet_isa_037f7d8cdb (IsA quahog clam) (STV 1.0 0.9091)) +(: cnet_isa_32d3e88841 (IsA quail bird) (STV 1.0 0.9454)) +(: cnet_isa_c71836a080 (IsA quail phasianid) (STV 1.0 0.9091)) +(: cnet_isa_be82a59058 (IsA quail wildfowl) (STV 1.0 0.9091)) +(: cnet_isa_dbfe05813b (IsA quail_bush saltbush) (STV 1.0 0.9091)) +(: cnet_isa_6518952bbb (IsA quaintness old_fashionedness) (STV 1.0 0.9091)) +(: cnet_isa_9ea9465840 (IsA quaintness unfamiliarity) (STV 1.0 0.9091)) +(: cnet_isa_f359c5a91d (IsA quaker christian) (STV 1.0 0.9091)) +(: cnet_isa_30e5eee438 (IsA quaker coward) (STV 1.0 0.9091)) +(: cnet_isa_dc06fd3a52 (IsA quaker_gun gun) (STV 1.0 0.9091)) +(: cnet_isa_03196fc38c (IsA quakerism theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_289bef8d86 (IsA quaking_aspen aspen) (STV 1.0 0.9091)) +(: cnet_isa_af4a73864c (IsA qualification revision) (STV 1.0 0.9091)) +(: cnet_isa_a8e0223976 (IsA qualification fitness) (STV 1.0 0.9091)) +(: cnet_isa_452b0f4aac (IsA qualifier contestant) (STV 1.0 0.9091)) +(: cnet_isa_74355e4df2 (IsA quality attribute) (STV 1.0 0.9091)) +(: cnet_isa_acac91f8ff (IsA quality degree) (STV 1.0 0.9091)) +(: cnet_isa_6a0e8e0998 (IsA quality property) (STV 1.0 0.9091)) +(: cnet_isa_c843295993 (IsA quality social_station) (STV 1.0 0.9091)) +(: cnet_isa_1246c4472a (IsA quality_control internal_control) (STV 1.0 0.9091)) +(: cnet_isa_2f7dd4fdbd (IsA quality_of_life gratification) (STV 1.0 0.9091)) +(: cnet_isa_ede2f81d3b (IsA quandong edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_afdffc49ca (IsA quandong fruit) (STV 1.0 0.9091)) +(: cnet_isa_dd2baa9de7 (IsA quandong tree) (STV 1.0 0.9091)) +(: cnet_isa_4a59f12284 (IsA quandong_nut edible_nut) (STV 1.0 0.9091)) +(: cnet_isa_5d9b90b4cc (IsA quango organization) (STV 1.0 0.9091)) +(: cnet_isa_2086f6de3e (IsA quantic homogeneous_polynomial) (STV 1.0 0.9091)) +(: cnet_isa_63cf82abfc (IsA quantifiability quality) (STV 1.0 0.9091)) +(: cnet_isa_a86147d37b (IsA quantification measurement) (STV 1.0 0.9091)) +(: cnet_isa_1c1b654e67 (IsA quantification restriction) (STV 1.0 0.9091)) +(: cnet_isa_524e06fcde (IsA quantifier word) (STV 1.0 0.9091)) +(: cnet_isa_a3b2e3078a (IsA quantitative_analysis chemical_analysis) (STV 1.0 0.9091)) +(: cnet_isa_ee83059cf0 (IsA quantitative_analysis measurement) (STV 1.0 0.9091)) +(: cnet_isa_f0c9d94177 (IsA quantity amount) (STV 1.0 0.9091)) +(: cnet_isa_276484ed46 (IsA quantity concept) (STV 1.0 0.9091)) +(: cnet_isa_6848fc794b (IsA quantization division) (STV 1.0 0.9091)) +(: cnet_isa_2a2fad9bbb (IsA quantum quantity) (STV 1.0 0.9091)) +(: cnet_isa_b7a219ea4d (IsA quantum measure) (STV 1.0 0.9091)) +(: cnet_isa_9716b05707 (IsA quantum_chromodynamic quantum_field_theory) (STV 1.0 0.9091)) +(: cnet_isa_e672f08d57 (IsA quantum_electrodynamic quantum_field_theory) (STV 1.0 0.9091)) +(: cnet_isa_4793dd47ba (IsA quantum_field_theory quantum_physic) (STV 1.0 0.9091)) +(: cnet_isa_311fafb693 (IsA quantum_jump leap) (STV 1.0 0.9091)) +(: cnet_isa_d6915589ab (IsA quantum_leap jump) (STV 1.0 0.9091)) +(: cnet_isa_271ba7e1fe (IsA quantum_mechanic quantum_physic) (STV 1.0 0.9091)) +(: cnet_isa_4cb4c9c2c8 (IsA quantum_physic physic) (STV 1.0 0.9091)) +(: cnet_isa_0848e1e6e7 (IsA quantum_theory scientific_theory) (STV 1.0 0.9091)) +(: cnet_isa_7ef773f385 (IsA quapaw dhegiha) (STV 1.0 0.9091)) +(: cnet_isa_ed7281a281 (IsA quarantine isolation) (STV 1.0 0.9091)) +(: cnet_isa_d4b44cfb26 (IsA quark elementary_particle) (STV 1.0 0.9091)) +(: cnet_isa_81e032f081 (IsA quark_cheese cheese) (STV 1.0 0.9091)) +(: cnet_isa_ec251a140d (IsA quarrel arrow) (STV 1.0 0.9091)) +(: cnet_isa_c821611193 (IsA quarrel dispute) (STV 1.0 0.9091)) +(: cnet_isa_089b289d2a (IsA quarreler disputant) (STV 1.0 0.9091)) +(: cnet_isa_a6a5ebe939 (IsA quarrying production) (STV 1.0 0.9091)) +(: cnet_isa_b291bc628d (IsA quarryman worker) (STV 1.0 0.9091)) +(: cnet_isa_6229ce874e (IsA quart british_capacity_unit) (STV 1.0 0.9091)) +(: cnet_isa_48cc6cd1c6 (IsA quart united_state_dry_unit) (STV 1.0 0.9091)) +(: cnet_isa_aed60fc439 (IsA quart united_state_liquid_unit) (STV 1.0 0.9091)) +(: cnet_isa_6c874e0d65 (IsA quartan ague) (STV 1.0 0.9091)) +(: cnet_isa_4f5252b5d2 (IsA quarter worth_twenty_five_cent) (STV 1.0 0.9091)) +(: cnet_isa_82d03c541f (IsA quarter clemency) (STV 1.0 0.9091)) +(: cnet_isa_5b17190690 (IsA quarter piece_of_leather) (STV 1.0 0.9091)) +(: cnet_isa_606ad960c3 (IsA quarter part) (STV 1.0 0.9091)) +(: cnet_isa_0b5b522409 (IsA quarter orientation) (STV 1.0 0.9091)) +(: cnet_isa_4d4c81c158 (IsA quarter city_district) (STV 1.0 0.9091)) +(: cnet_isa_0926c79d69 (IsA quarter person) (STV 1.0 0.9091)) +(: cnet_isa_4ce5ff5025 (IsA quarter coin) (STV 1.0 0.9091)) +(: cnet_isa_54efa764e7 (IsA quarter avoirdupois_unit) (STV 1.0 0.9091)) +(: cnet_isa_61ab27ada9 (IsA quarter british_capacity_unit) (STV 1.0 0.9091)) +(: cnet_isa_675a3f6cec (IsA quarter school_term) (STV 1.0 0.9091)) +(: cnet_isa_fade6e213c (IsA quarter time_period) (STV 1.0 0.9091)) +(: cnet_isa_70a30096d7 (IsA quarter time_unit) (STV 1.0 0.9091)) +(: cnet_isa_a33a90a3cd (IsA quarter_century time_period) (STV 1.0 0.9091)) +(: cnet_isa_3fcb3face2 (IsA quarter_crack sand_crack) (STV 1.0 0.9091)) +(: cnet_isa_e2b78577c0 (IsA quarter_day christian_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_d850591253 (IsA quarter_horse saddle_horse) (STV 1.0 0.9091)) +(: cnet_isa_db356dfc97 (IsA quarter_hour time_unit) (STV 1.0 0.9091)) +(: cnet_isa_95c4b7f1f9 (IsA quarter_mile linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_f06420ad46 (IsA quarter_note note) (STV 1.0 0.9091)) +(: cnet_isa_4c3805fbae (IsA quarter_plate plate) (STV 1.0 0.9091)) +(: cnet_isa_d853d104bc (IsA quarter_pound avoirdupois_unit) (STV 1.0 0.9091)) +(: cnet_isa_7dd410aa9b (IsA quarter_rest rest) (STV 1.0 0.9091)) +(: cnet_isa_05c7872ed3 (IsA quarter_section area_unit) (STV 1.0 0.9091)) +(: cnet_isa_e94645ef8f (IsA quarter_session court) (STV 1.0 0.9091)) +(: cnet_isa_612c0b4d9c (IsA quarter_stock stock) (STV 1.0 0.9091)) +(: cnet_isa_ed81afa618 (IsA quarter_tone interval) (STV 1.0 0.9091)) +(: cnet_isa_f9421ede46 (IsA quarterback back) (STV 1.0 0.9091)) +(: cnet_isa_e37118bd8c (IsA quarterdeck deck) (STV 1.0 0.9091)) +(: cnet_isa_5244a57708 (IsA quarterfinal match) (STV 1.0 0.9091)) +(: cnet_isa_fd99c8034c (IsA quartering division) (STV 1.0 0.9091)) +(: cnet_isa_870f9c8edb (IsA quartering coat_of_arm) (STV 1.0 0.9091)) +(: cnet_isa_cfcf69be59 (IsA quartering housing) (STV 1.0 0.9091)) +(: cnet_isa_204e9ed203 (IsA quarterlight car_window) (STV 1.0 0.9091)) +(: cnet_isa_bf03536d27 (IsA quarterly sery) (STV 1.0 0.9091)) +(: cnet_isa_691ba33a49 (IsA quartermaster army_officer) (STV 1.0 0.9091)) +(: cnet_isa_8083af8117 (IsA quartermaster_general staff_officer) (STV 1.0 0.9091)) +(: cnet_isa_6ff3e887c4 (IsA quarterstaff staff) (STV 1.0 0.9091)) +(: cnet_isa_6efbaa1237 (IsA quartet musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_5ae64565c0 (IsA quartet gathering) (STV 1.0 0.9091)) +(: cnet_isa_47bb083628 (IsA quartet musical_organization) (STV 1.0 0.9091)) +(: cnet_isa_d7fad7e725 (IsA quartet set) (STV 1.0 0.9091)) +(: cnet_isa_6b953d8dfa (IsA quartile mark) (STV 1.0 0.9091)) +(: cnet_isa_ace3dffde4 (IsA quarto size) (STV 1.0 0.9091)) +(: cnet_isa_223df4fe4c (IsA quartz mineral) (STV 1.0 0.9524)) +(: cnet_isa_7c32aa722a (IsA quartz_battery stamp_mill) (STV 1.0 0.9091)) +(: cnet_isa_7a74da3b25 (IsA quartz_crystal quartz) (STV 1.0 0.9091)) +(: cnet_isa_acc82aacea (IsA quartz_glass natural_glass) (STV 1.0 0.9091)) +(: cnet_isa_31980ae7b0 (IsA quartz_lamp mercury_vapor_lamp) (STV 1.0 0.9091)) +(: cnet_isa_1e53e4fc2a (IsA quartzite rock) (STV 1.0 0.9091)) +(: cnet_isa_40acffb460 (IsA quasar celestial_body) (STV 1.0 0.9091)) +(: cnet_isa_5b1195e1f8 (IsA quasi_contract contract) (STV 1.0 0.9091)) +(: cnet_isa_d5f7354823 (IsA quasiparticle quantum) (STV 1.0 0.9091)) +(: cnet_isa_f7674b17df (IsA quassia bitterwood_tree) (STV 1.0 0.9091)) +(: cnet_isa_b2c1c2c54d (IsA quassia organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_d236fb7827 (IsA quatercentennial anniversary) (STV 1.0 0.9091)) +(: cnet_isa_45d8601776 (IsA quaternary_ammonium_compound organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_6b03d0b57d (IsA quatrain stanza) (STV 1.0 0.9091)) +(: cnet_isa_21798e61db (IsA quattrocento century) (STV 1.0 0.9091)) +(: cnet_isa_df5cc9101d (IsA quaver sound) (STV 1.0 0.9091)) +(: cnet_isa_c91b890d00 (IsA quay pier) (STV 1.0 0.9091)) +(: cnet_isa_9714fe8025 (IsA queasiness nausea) (STV 1.0 0.9091)) +(: cnet_isa_482eef3aaf (IsA quebecois canadian) (STV 1.0 0.9091)) +(: cnet_isa_2f42dd34a5 (IsA quechua amerind) (STV 1.0 0.9091)) +(: cnet_isa_0422c9b0f7 (IsA quechua south_american) (STV 1.0 0.9091)) +(: cnet_isa_e4b84657be (IsA queckenstedt_s_test diagnostic_test) (STV 1.0 0.9091)) +(: cnet_isa_d5e48d194f (IsA queen_s_counsel counsel_to_crown) (STV 1.0 0.9091)) +(: cnet_isa_90a7036e59 (IsA queen_s_crape_myrtle angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_0bb8fe8ec5 (IsA queen_s_cup clintonia) (STV 1.0 0.9091)) +(: cnet_isa_57d8d1f73f (IsA queen female_monarch) (STV 1.0 0.9091)) +(: cnet_isa_5f1e18809d (IsA queen royalty) (STV 1.0 0.9454)) +(: cnet_isa_aa4adbdd7e (IsA queen insect) (STV 1.0 0.9091)) +(: cnet_isa_044bd6e994 (IsA queen naked_mole_rat) (STV 1.0 0.9091)) +(: cnet_isa_bbcd0bcdf3 (IsA queen face_card) (STV 1.0 0.9091)) +(: cnet_isa_326d57bbb5 (IsA queen chessman) (STV 1.0 0.9091)) +(: cnet_isa_7d02e4a647 (IsA queen female_aristocrat) (STV 1.0 0.9091)) +(: cnet_isa_40074c9606 (IsA queen personification) (STV 1.0 0.9091)) +(: cnet_isa_1a308a250e (IsA queen_bee queen) (STV 1.0 0.9091)) +(: cnet_isa_c402213d9a (IsA queen_consort queen) (STV 1.0 0.9091)) +(: cnet_isa_e6de66d0de (IsA queen_dowager queen) (STV 1.0 0.9091)) +(: cnet_isa_2b8a312827 (IsA queen_elizabeth dignified_person) (STV 1.0 0.9091)) +(: cnet_isa_b12c3d62a5 (IsA queen_elizabeth_second monarch) (STV 1.0 0.9091)) +(: cnet_isa_7611cb1280 (IsA queen_mother queen_dowager) (STV 1.0 0.9091)) +(: cnet_isa_7b82d4de1e (IsA queen_of_england queen) (STV 1.0 0.9091)) +(: cnet_isa_ff65b381a3 (IsA queen_of_may girl) (STV 1.0 0.9091)) +(: cnet_isa_72607e0827 (IsA queen_of_night night_blooming_cereus) (STV 1.0 0.9091)) +(: cnet_isa_3819bdde95 (IsA queen_post post) (STV 1.0 0.9091)) +(: cnet_isa_4f36113897 (IsA queen_regent queen) (STV 1.0 0.9091)) +(: cnet_isa_8eab97da65 (IsA queen_triggerfish triggerfish) (STV 1.0 0.9091)) +(: cnet_isa_4b86fcb356 (IsA queensland state_of_australia) (STV 1.0 0.9091)) +(: cnet_isa_84fc26262f (IsA queensland_bottletree bottle_tree) (STV 1.0 0.9091)) +(: cnet_isa_b7869eb3eb (IsA queensland_grass_cloth_plant woody_plant) (STV 1.0 0.9091)) +(: cnet_isa_e6f1937a61 (IsA queensland_hemp mallow) (STV 1.0 0.9091)) +(: cnet_isa_1e354a1ae4 (IsA queensland_nut macadamia) (STV 1.0 0.9091)) +(: cnet_isa_43e456f39b (IsA quellung organic_process) (STV 1.0 0.9091)) +(: cnet_isa_967cf2a4a6 (IsA quenched_steel steel) (STV 1.0 0.9091)) +(: cnet_isa_e0f775fb06 (IsA quercitron dye) (STV 1.0 0.9091)) +(: cnet_isa_fcbdc61ba9 (IsA quercus hamamelid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9893e5bc23 (IsA quern mill) (STV 1.0 0.9091)) +(: cnet_isa_77d50815dd (IsA querulousness temper) (STV 1.0 0.9091)) +(: cnet_isa_d36062480d (IsA quesadilla burrito) (STV 1.0 0.9091)) +(: cnet_isa_7d51b16c87 (IsA quest search) (STV 1.0 0.9091)) +(: cnet_isa_8b328fe91a (IsA question marriage_proposal) (STV 1.0 0.9091)) +(: cnet_isa_46a05da2e9 (IsA question questioning) (STV 1.0 0.9091)) +(: cnet_isa_5d6878682d (IsA question sentence) (STV 1.0 0.9091)) +(: cnet_isa_1fb29a1925 (IsA question subject) (STV 1.0 0.9091)) +(: cnet_isa_987fd8fb53 (IsA question_mark punctuation) (STV 1.0 0.9091)) +(: cnet_isa_49c1a243a9 (IsA question_master master_of_ceremony) (STV 1.0 0.9091)) +(: cnet_isa_afd4ebcc77 (IsA question_of_fact question) (STV 1.0 0.9091)) +(: cnet_isa_0a9e4c99a0 (IsA question_of_law question) (STV 1.0 0.9091)) +(: cnet_isa_f100566eb5 (IsA question_time time_period) (STV 1.0 0.9091)) +(: cnet_isa_933efca225 (IsA questioning request) (STV 1.0 0.9091)) +(: cnet_isa_5a00573609 (IsA questionnaire form) (STV 1.0 0.9091)) +(: cnet_isa_dec485f0d4 (IsA quetzal bird) (STV 1.0 0.9091)) +(: cnet_isa_865223da0c (IsA quetzal trogon) (STV 1.0 0.9091)) +(: cnet_isa_02d2e4e22c (IsA quetzal guatemalan_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_25719c50cd (IsA queue braid) (STV 1.0 0.9091)) +(: cnet_isa_29d0b92c05 (IsA queue line) (STV 1.0 0.9091)) +(: cnet_isa_a1719e60b4 (IsA queue list) (STV 1.0 0.9091)) +(: cnet_isa_a479936bc0 (IsA quibble evasion) (STV 1.0 0.9091)) +(: cnet_isa_fed0363362 (IsA quibbler malcontent) (STV 1.0 0.9091)) +(: cnet_isa_ae50676d7c (IsA quiche maya) (STV 1.0 0.9091)) +(: cnet_isa_40cdfc6420 (IsA quiche tart) (STV 1.0 0.9091)) +(: cnet_isa_99efaf725a (IsA quiche mayan) (STV 1.0 0.9091)) +(: cnet_isa_7d906f9ea4 (IsA quiche_lorraine quiche) (STV 1.0 0.9091)) +(: cnet_isa_df549b601c (IsA quick area) (STV 1.0 0.9091)) +(: cnet_isa_63a2b8a3ab (IsA quick_bread bread) (STV 1.0 0.9091)) +(: cnet_isa_028477dedb (IsA quick_march march) (STV 1.0 0.9091)) +(: cnet_isa_145fa3fba9 (IsA quick_study learner) (STV 1.0 0.9091)) +(: cnet_isa_7997707844 (IsA quick_time pace) (STV 1.0 0.9091)) +(: cnet_isa_7c7915e37f (IsA quickener agent) (STV 1.0 0.9091)) +(: cnet_isa_ff9a58997c (IsA quickening organic_process) (STV 1.0 0.9091)) +(: cnet_isa_2c7d12d13b (IsA quickening degree) (STV 1.0 0.9091)) +(: cnet_isa_8b64ccdded (IsA quicksand pit) (STV 1.0 0.9091)) +(: cnet_isa_5d2bd42586 (IsA quicksand situation) (STV 1.0 0.9091)) +(: cnet_isa_99171fcc98 (IsA quickset cutting) (STV 1.0 0.9091)) +(: cnet_isa_b897b82c90 (IsA quickstep ballroom_dancing) (STV 1.0 0.9091)) +(: cnet_isa_92cd6fcd95 (IsA quickstep military_march) (STV 1.0 0.9091)) +(: cnet_isa_13d318ce99 (IsA quid_pro_quo retainer) (STV 1.0 0.9091)) +(: cnet_isa_80fc7b9ace (IsA quiddity kernel) (STV 1.0 0.9091)) +(: cnet_isa_a69f43a3b4 (IsA quiescence rest) (STV 1.0 0.9091)) +(: cnet_isa_eb0bfeb2f8 (IsA quietism mysticism) (STV 1.0 0.9091)) +(: cnet_isa_14bfd078d6 (IsA quietist mystic) (STV 1.0 0.9091)) +(: cnet_isa_66630caaa0 (IsA quietness silence) (STV 1.0 0.9091)) +(: cnet_isa_b49ac070ae (IsA quiff forelock) (STV 1.0 0.9091)) +(: cnet_isa_7d4245f13e (IsA quill feather) (STV 1.0 0.9454)) +(: cnet_isa_e06c392167 (IsA quill writing_instrument) (STV 1.0 0.9091)) +(: cnet_isa_0f18bbb4ce (IsA quill rib) (STV 1.0 0.9091)) +(: cnet_isa_ea8c60e105 (IsA quill spine) (STV 1.0 0.9091)) +(: cnet_isa_b5fe527e6c (IsA quill pen) (STV 1.0 0.9091)) +(: cnet_isa_0552759a3c (IsA quillwort fern_ally) (STV 1.0 0.9091)) +(: cnet_isa_ec65a82fc6 (IsA quilt bedclothe) (STV 1.0 0.9091)) +(: cnet_isa_a99c9fcd26 (IsA quilted_bedspread bedspread) (STV 1.0 0.9091)) +(: cnet_isa_69f090d504 (IsA quilting embroidery_stitch) (STV 1.0 0.9091)) +(: cnet_isa_cd5c52fd0b (IsA quilting fabric) (STV 1.0 0.9091)) +(: cnet_isa_b7198c402a (IsA quilting_bee bee) (STV 1.0 0.9091)) +(: cnet_isa_afe82f8679 (IsA quince edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_cdbfdcc305 (IsA quince pome) (STV 1.0 0.9091)) +(: cnet_isa_6968b38863 (IsA quince fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_fa436f02fc (IsA quincentennial anniversary) (STV 1.0 0.9091)) +(: cnet_isa_d06e6d749d (IsA quinine antimalarial) (STV 1.0 0.9091)) +(: cnet_isa_dfad84f747 (IsA quinone compound) (STV 1.0 0.9091)) +(: cnet_isa_631d2bb5da (IsA quinquagesima christian_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_83366506da (IsA quinquefoliate_leaf compound_leaf) (STV 1.0 0.9091)) +(: cnet_isa_2a6d4ac7f2 (IsA quinquennium time_period) (STV 1.0 0.9091)) +(: cnet_isa_d87d46f89a (IsA quinsy angina) (STV 1.0 0.9091)) +(: cnet_isa_52dde7492e (IsA quintal metric_weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_b62039f8d6 (IsA quintessence example) (STV 1.0 0.9091)) +(: cnet_isa_9e0764c2ca (IsA quintessence kernel) (STV 1.0 0.9091)) +(: cnet_isa_4e5006b8dd (IsA quintessence element) (STV 1.0 0.9091)) +(: cnet_isa_fcd20ebaf9 (IsA quintet musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_b1805f4cbf (IsA quintet gathering) (STV 1.0 0.9091)) +(: cnet_isa_8e07fbbc88 (IsA quintet musical_organization) (STV 1.0 0.9091)) +(: cnet_isa_5f92647d9b (IsA quintet set) (STV 1.0 0.9091)) +(: cnet_isa_6f055b974d (IsA quintillion large_integer) (STV 1.0 0.9091)) +(: cnet_isa_149937bf54 (IsA quintipara mother) (STV 1.0 0.9091)) +(: cnet_isa_0c436568d8 (IsA quintuplet sibling) (STV 1.0 0.9091)) +(: cnet_isa_cedc338163 (IsA quintupling multiplication) (STV 1.0 0.9091)) +(: cnet_isa_b27e0157fd (IsA quipu calculator) (STV 1.0 0.9091)) +(: cnet_isa_0a649f89c4 (IsA quira tree) (STV 1.0 0.9091)) +(: cnet_isa_978f76b41d (IsA quire definite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_33ef057632 (IsA quirk groove) (STV 1.0 0.9091)) +(: cnet_isa_d3831ec63a (IsA quirk_bead beading) (STV 1.0 0.9091)) +(: cnet_isa_606371263e (IsA quirk_molding molding) (STV 1.0 0.9091)) +(: cnet_isa_f6d09380a9 (IsA quirt whip) (STV 1.0 0.9091)) +(: cnet_isa_b25864a42c (IsA quiscalus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_b37ff1dacc (IsA quitclaim transfer) (STV 1.0 0.9091)) +(: cnet_isa_0419ee9c39 (IsA quitclaim conveyance) (STV 1.0 0.9091)) +(: cnet_isa_3a0dafdea1 (IsA quittance document) (STV 1.0 0.9091)) +(: cnet_isa_6c789bd0a5 (IsA quitter person) (STV 1.0 0.9091)) +(: cnet_isa_3fc32cc366 (IsA quiver case) (STV 1.0 0.9091)) +(: cnet_isa_8f88ce1850 (IsA quiz examination) (STV 1.0 0.9091)) +(: cnet_isa_fbd211d9cd (IsA quiz_program game_show) (STV 1.0 0.9091)) +(: cnet_isa_ffc927ad4c (IsA quo_warranto hearing) (STV 1.0 0.9091)) +(: cnet_isa_825dd4885e (IsA quodlibet issue) (STV 1.0 0.9091)) +(: cnet_isa_2528e0fb27 (IsA quoin keystone) (STV 1.0 0.9091)) +(: cnet_isa_6a09fc5dba (IsA quoin wedge) (STV 1.0 0.9091)) +(: cnet_isa_a28fb8c723 (IsA quoit game_equipment) (STV 1.0 0.9091)) +(: cnet_isa_ba69f19666 (IsA quoit outdoor_game) (STV 1.0 0.9091)) +(: cnet_isa_b782178197 (IsA quoratean hokan) (STV 1.0 0.9091)) +(: cnet_isa_e746f37e98 (IsA quorum gathering) (STV 1.0 0.9091)) +(: cnet_isa_9ffc8fec77 (IsA quota trade_barrier) (STV 1.0 0.9091)) +(: cnet_isa_eb7e6673ad (IsA quota allotment) (STV 1.0 0.9091)) +(: cnet_isa_df2780b343 (IsA quota number) (STV 1.0 0.9091)) +(: cnet_isa_2ea6cbfa01 (IsA quotability worthiness) (STV 1.0 0.9091)) +(: cnet_isa_84dd84847c (IsA quotation practice) (STV 1.0 0.9091)) +(: cnet_isa_3c2595786a (IsA quotation excerpt) (STV 1.0 0.9091)) +(: cnet_isa_fe620597b9 (IsA quotation statement) (STV 1.0 0.9091)) +(: cnet_isa_2dd9212bbf (IsA quotation_mark punctuation) (STV 1.0 0.9091)) +(: cnet_isa_040c1d8284 (IsA quoter communicator) (STV 1.0 0.9091)) +(: cnet_isa_0765c00a77 (IsA quotient ratio) (STV 1.0 0.9091)) +(: cnet_isa_db1376e72f (IsA quotient number) (STV 1.0 0.9091)) +(: cnet_isa_e1754465cf (IsA quotient_verdict compromise_verdict) (STV 1.0 0.9091)) +(: cnet_isa_da12c97132 (IsA qurush saudi_arabian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_5eb82633c8 (IsA qwerty_keyboard typewriter_keyboard) (STV 1.0 0.9091)) +(: cnet_isa_5d7ee043c2 (IsA r letter) (STV 1.0 0.9091)) +(: cnet_isa_ae4f57cabb (IsA r_tree tree) (STV 1.0 0.9339)) +(: cnet_isa_2fdbae3295 (IsA rabato collar) (STV 1.0 0.9091)) +(: cnet_isa_f8efa9cc26 (IsA rabbet groove) (STV 1.0 0.9091)) +(: cnet_isa_f8582fb72b (IsA rabbet_joint joint) (STV 1.0 0.9091)) +(: cnet_isa_75477e7c9e (IsA rabbi spiritual_leader) (STV 1.0 0.9091)) +(: cnet_isa_1c5fc26805 (IsA rabbi title) (STV 1.0 0.9091)) +(: cnet_isa_70a40ed40a (IsA rabbinate position) (STV 1.0 0.9091)) +(: cnet_isa_a0a0c80c1d (IsA rabbinate priesthood) (STV 1.0 0.9091)) +(: cnet_isa_3b78757b1c (IsA rabbit animal) (STV 1.0 0.9339)) +(: cnet_isa_96584fe903 (IsA rabbit mammal) (STV 1.0 0.9339)) +(: cnet_isa_f27531a921 (IsA rabbit leporid) (STV 1.0 0.9091)) +(: cnet_isa_59b31ce7c4 (IsA rabbit game) (STV 1.0 0.9091)) +(: cnet_isa_336d982052 (IsA rabbit_brush goldenbush) (STV 1.0 0.9091)) +(: cnet_isa_f72a99787b (IsA rabbit_burrow hole) (STV 1.0 0.9091)) +(: cnet_isa_ef051050c7 (IsA rabbit_eared_bandicoot bandicoot) (STV 1.0 0.9091)) +(: cnet_isa_58f7d6d4ac (IsA rabbit_ear rabbit) (STV 1.0 0.9091)) +(: cnet_isa_f3e7ba7440 (IsA rabbit_ear television_antenna) (STV 1.0 0.9091)) +(: cnet_isa_b020e881a0 (IsA rabbit_hutch hutch) (STV 1.0 0.9091)) +(: cnet_isa_aae8787393 (IsA rabbit_punch punch) (STV 1.0 0.9091)) +(: cnet_isa_3d124dc107 (IsA rabbiteye_blueberry blueberry) (STV 1.0 0.9091)) +(: cnet_isa_f63f7622a8 (IsA rabbitfish chimaera) (STV 1.0 0.9091)) +(: cnet_isa_9571bfd61e (IsA rabbit pet) (STV 1.0 0.9454)) +(: cnet_isa_3fdd5909d1 (IsA rabbitweed matchweed) (STV 1.0 0.9091)) +(: cnet_isa_d663e433ab (IsA rabbitwood parasitic_plant) (STV 1.0 0.9091)) +(: cnet_isa_21438c32de (IsA rabble folk) (STV 1.0 0.9091)) +(: cnet_isa_ed7edc470e (IsA rabi_i islamic_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_13ed65409a (IsA rabi_ii islamic_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_7da16987b1 (IsA rabidness exuberance) (STV 1.0 0.9091)) +(: cnet_isa_282238a0c7 (IsA raby zoonosis) (STV 1.0 0.9091)) +(: cnet_isa_dfc00d611d (IsA raccoon procyonid) (STV 1.0 0.9091)) +(: cnet_isa_b733bbc8d3 (IsA raccoon fur) (STV 1.0 0.9091)) +(: cnet_isa_a82f23ca8b (IsA raccoon_dog wild_dog) (STV 1.0 0.9091)) +(: cnet_isa_15d237cadc (IsA race contest) (STV 1.0 0.9091)) +(: cnet_isa_fa705e46bf (IsA race group) (STV 1.0 0.9091)) +(: cnet_isa_db2c36f222 (IsA race_meeting meet) (STV 1.0 0.9091)) +(: cnet_isa_522259771b (IsA race_problem problem) (STV 1.0 0.9091)) +(: cnet_isa_8b2cd816b4 (IsA race_riot riot) (STV 1.0 0.9091)) +(: cnet_isa_0c4ca64b08 (IsA raceabout sloop) (STV 1.0 0.9091)) +(: cnet_isa_3f983ce2d9 (IsA racecard program) (STV 1.0 0.9091)) +(: cnet_isa_c04ae530c7 (IsA racehorse horse) (STV 1.0 0.9091)) +(: cnet_isa_50dd7be15f (IsA raceme flower_cluster) (STV 1.0 0.9091)) +(: cnet_isa_2aa6d3f212 (IsA racemic_acid tartaric_acid) (STV 1.0 0.9091)) +(: cnet_isa_272bab74c6 (IsA racer animal) (STV 1.0 0.9091)) +(: cnet_isa_1bb93541cd (IsA racer colubrid_snake) (STV 1.0 0.9091)) +(: cnet_isa_8a50efde8d (IsA racer car) (STV 1.0 0.9091)) +(: cnet_isa_0a6d4a1383 (IsA racer driver) (STV 1.0 0.9091)) +(: cnet_isa_154db998d9 (IsA racerunner whiptail) (STV 1.0 0.9091)) +(: cnet_isa_1eb3e99311 (IsA racetrack course) (STV 1.0 0.9091)) +(: cnet_isa_9cdd2147dc (IsA racetrack_tout tipster) (STV 1.0 0.9091)) +(: cnet_isa_ed228b4a13 (IsA raceway canal) (STV 1.0 0.9091)) +(: cnet_isa_6355c6f99b (IsA rachis axis) (STV 1.0 0.9091)) +(: cnet_isa_43c33e5ae5 (IsA rachitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_f4a1718f39 (IsA rachycentridae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_55df2462f9 (IsA rachycentron fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_35ece2ae16 (IsA racial_immunity natural_immunity) (STV 1.0 0.9091)) +(: cnet_isa_76f9372c59 (IsA racial_profiling racism) (STV 1.0 0.9091)) +(: cnet_isa_5a656369bd (IsA racial_segregation segregation) (STV 1.0 0.9091)) +(: cnet_isa_b455716a4a (IsA racing sport) (STV 1.0 0.9091)) +(: cnet_isa_0e1bb0f4d1 (IsA racing_boat small_boat) (STV 1.0 0.9091)) +(: cnet_isa_2a5cf80eca (IsA racing_circuit racetrack) (STV 1.0 0.9091)) +(: cnet_isa_6e63b05b82 (IsA racing_gig racing_boat) (STV 1.0 0.9091)) +(: cnet_isa_789b9b17e5 (IsA racing_skiff shell) (STV 1.0 0.9091)) +(: cnet_isa_e4aead82f0 (IsA racing_start start) (STV 1.0 0.9091)) +(: cnet_isa_434c705cbb (IsA racism discrimination) (STV 1.0 0.9091)) +(: cnet_isa_a8a40dbd26 (IsA racism bia) (STV 1.0 0.9091)) +(: cnet_isa_c9f208b522 (IsA racist bigot) (STV 1.0 0.9091)) +(: cnet_isa_24c01bb247 (IsA rack gait) (STV 1.0 0.9091)) +(: cnet_isa_6c6ec890bc (IsA rack torture) (STV 1.0 0.9091)) +(: cnet_isa_5e076b98d0 (IsA rack framework) (STV 1.0 0.9091)) +(: cnet_isa_d7997b8204 (IsA rack instrument_of_torture) (STV 1.0 0.9091)) +(: cnet_isa_d000683ded (IsA rack support) (STV 1.0 0.9091)) +(: cnet_isa_71dbd47f28 (IsA rack cut) (STV 1.0 0.9091)) +(: cnet_isa_2646c966fd (IsA rack_and_pinion gear) (STV 1.0 0.9091)) +(: cnet_isa_92c1624704 (IsA rack_of_lamb lamb_roast) (STV 1.0 0.9091)) +(: cnet_isa_ad90fbfa88 (IsA rack_of_lamb rack) (STV 1.0 0.9091)) +(: cnet_isa_f076be9e1b (IsA rack_rent rent) (STV 1.0 0.9091)) +(: cnet_isa_d0858f255b (IsA racker attendant) (STV 1.0 0.9091)) +(: cnet_isa_2c7058f440 (IsA racket enterprise) (STV 1.0 0.9091)) +(: cnet_isa_016bd5672a (IsA racket sport_implement) (STV 1.0 0.9091)) +(: cnet_isa_2584175b4b (IsA racket noise) (STV 1.0 0.9091)) +(: cnet_isa_d6dd6963f4 (IsA racket_club club) (STV 1.0 0.9091)) +(: cnet_isa_c371e4149e (IsA racketeer criminal) (STV 1.0 0.9091)) +(: cnet_isa_84cb18305c (IsA racketeering felony) (STV 1.0 0.9091)) +(: cnet_isa_386d13520d (IsA racquetball sport) (STV 1.0 0.9339)) +(: cnet_isa_8ad6be702d (IsA racquetball court_game) (STV 1.0 0.9091)) +(: cnet_isa_b5d6c43b1c (IsA racquetball ball) (STV 1.0 0.9091)) +(: cnet_isa_d0d5bee038 (IsA rad radioactivity_unit) (STV 1.0 0.9091)) +(: cnet_isa_15e06e66f0 (IsA radar measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_2d37e39a33 (IsA radar_beacon electronic_signal) (STV 1.0 0.9091)) +(: cnet_isa_f86c2f1617 (IsA radar_echo electronic_signal) (STV 1.0 0.9091)) +(: cnet_isa_559f4e7343 (IsA radar_fire fire) (STV 1.0 0.9091)) +(: cnet_isa_d14b0c914b (IsA radial pneumatic_tire) (STV 1.0 0.9091)) +(: cnet_isa_a834723fb8 (IsA radial_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_7e2ef6226e (IsA radial_asymmetry asymmetry) (STV 1.0 0.9091)) +(: cnet_isa_86e8ffbdaa (IsA radial_engine internal_combustion_engine) (STV 1.0 0.9091)) +(: cnet_isa_aaa2984a66 (IsA radial_keratotomy keratotomy) (STV 1.0 0.9091)) +(: cnet_isa_852ac090ce (IsA radial_nerve nerve) (STV 1.0 0.9091)) +(: cnet_isa_cd6fd797bb (IsA radial_pulse pulse) (STV 1.0 0.9091)) +(: cnet_isa_a086cc6738 (IsA radial_symmetry symmetry) (STV 1.0 0.9091)) +(: cnet_isa_06a151dc7d (IsA radial_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_b62e563a78 (IsA radial_velocity speed) (STV 1.0 0.9091)) +(: cnet_isa_523ad53f20 (IsA radian angular_unit) (STV 1.0 0.9091)) +(: cnet_isa_3ac620a9f4 (IsA radiance brightness) (STV 1.0 0.9091)) +(: cnet_isa_8028501951 (IsA radiance light) (STV 1.0 0.9091)) +(: cnet_isa_a816ceba67 (IsA radiance good_health) (STV 1.0 0.9091)) +(: cnet_isa_2fd85dcb62 (IsA radiance happiness) (STV 1.0 0.9091)) +(: cnet_isa_6e53e746df (IsA radiant_energy energy) (STV 1.0 0.9091)) +(: cnet_isa_825b35f832 (IsA radiant_flux flux) (STV 1.0 0.9091)) +(: cnet_isa_e5d3d9aa75 (IsA radiant_heating heating) (STV 1.0 0.9091)) +(: cnet_isa_784e2fd9f1 (IsA radiation emission) (STV 1.0 0.9091)) +(: cnet_isa_02797c2e20 (IsA radiation neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_b48c3f09db (IsA radiation natural_process) (STV 1.0 0.9091)) +(: cnet_isa_9cd32db30a (IsA radiation spread) (STV 1.0 0.9091)) +(: cnet_isa_b98fb81482 (IsA radiation energy) (STV 1.0 0.9091)) +(: cnet_isa_a7cf13256f (IsA radiation_field field) (STV 1.0 0.9091)) +(: cnet_isa_d259ed290a (IsA radiation_pattern graph) (STV 1.0 0.9091)) +(: cnet_isa_46b6751897 (IsA radiation_pressure pressure) (STV 1.0 0.9091)) +(: cnet_isa_d782dbd811 (IsA radiation_pyrometer pyrometer) (STV 1.0 0.9091)) +(: cnet_isa_b1fc1fd328 (IsA radiation_sickness syndrome) (STV 1.0 0.9091)) +(: cnet_isa_55cc759232 (IsA radiator heater) (STV 1.0 0.9091)) +(: cnet_isa_2940174f19 (IsA radiator mechanism) (STV 1.0 0.9091)) +(: cnet_isa_b01fff6a20 (IsA radiator natural_object) (STV 1.0 0.9091)) +(: cnet_isa_fa345374ff (IsA radiator_cap cap) (STV 1.0 0.9091)) +(: cnet_isa_eb4f080db7 (IsA radiator_hose hose) (STV 1.0 0.9091)) +(: cnet_isa_fc4895122b (IsA radical character) (STV 1.0 0.9091)) +(: cnet_isa_e2a895cdc5 (IsA radical sign) (STV 1.0 0.9091)) +(: cnet_isa_ece18bfcf5 (IsA radical measure) (STV 1.0 0.9091)) +(: cnet_isa_05abaa8177 (IsA radical person) (STV 1.0 0.9091)) +(: cnet_isa_a7b6d6a65d (IsA radical_chic affectation) (STV 1.0 0.9091)) +(: cnet_isa_b9ab0a49b2 (IsA radical_hysterectomy hysterectomy) (STV 1.0 0.9091)) +(: cnet_isa_7764514908 (IsA radical_mastectomy mastectomy) (STV 1.0 0.9091)) +(: cnet_isa_a254f64468 (IsA radicalism political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_981b7103b4 (IsA radicchio chicory) (STV 1.0 0.9091)) +(: cnet_isa_6c7b0aa212 (IsA radicle structure) (STV 1.0 0.9091)) +(: cnet_isa_9737aae6e0 (IsA radiculitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_646e33535b (IsA radiigera fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_d947dfbafc (IsA radiigera_fuscogleba fungus) (STV 1.0 0.9091)) +(: cnet_isa_e36f70302d (IsA radio audible_media) (STV 1.0 0.9091)) +(: cnet_isa_14f57a8fdb (IsA radio communication_device) (STV 1.0 0.9339)) +(: cnet_isa_bae8c5d899 (IsA radio communication_system) (STV 1.0 0.9091)) +(: cnet_isa_7c8824b517 (IsA radio broadcasting) (STV 1.0 0.9091)) +(: cnet_isa_1c4e31fbe2 (IsA radio_announcer announcer) (STV 1.0 0.9091)) +(: cnet_isa_ba5a960a47 (IsA radio_antenna omnidirectional_antenna) (STV 1.0 0.9091)) +(: cnet_isa_a73a2ffd89 (IsA radio_astronomy astronomy) (STV 1.0 0.9091)) +(: cnet_isa_ab56fe4d5e (IsA radio_beacon radio_station) (STV 1.0 0.9091)) +(: cnet_isa_9bc21716ed (IsA radio_beacon signal) (STV 1.0 0.9091)) +(: cnet_isa_67e16d1399 (IsA radio_beam signal) (STV 1.0 0.9091)) +(: cnet_isa_8289799bbb (IsA radio_brightness intensity) (STV 1.0 0.9091)) +(: cnet_isa_8959c43cda (IsA radio_broadcast broadcast) (STV 1.0 0.9091)) +(: cnet_isa_9a5bbe7f2c (IsA radio_chassis chassis) (STV 1.0 0.9091)) +(: cnet_isa_464eb66564 (IsA radio_city_music_hall music_hall) (STV 1.0 0.9091)) +(: cnet_isa_7dd2672aeb (IsA radio_compass direction_finder) (STV 1.0 0.9091)) +(: cnet_isa_df28eb81b8 (IsA radio_controlled_airplane aircraft) (STV 1.0 0.9091)) +(: cnet_isa_8c78aba453 (IsA radio_controlled_helicopter aircraft) (STV 1.0 0.9091)) +(: cnet_isa_f7efbafa6c (IsA radio_frequency frequency) (STV 1.0 0.9091)) +(: cnet_isa_a8cd83c388 (IsA radio_interferometer radio_telescope) (STV 1.0 0.9091)) +(: cnet_isa_5f241a90a7 (IsA radio_link communication_system) (STV 1.0 0.9091)) +(: cnet_isa_348272b1c0 (IsA radio_new newscast) (STV 1.0 0.9091)) +(: cnet_isa_8d5c0e02db (IsA radio_noise static) (STV 1.0 0.9091)) +(: cnet_isa_140a0aafb0 (IsA radio_observation observation) (STV 1.0 0.9091)) +(: cnet_isa_8c992364c4 (IsA radio_operator operator) (STV 1.0 0.9091)) +(: cnet_isa_df1062ae4f (IsA radio_phonograph electronic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_5783981596 (IsA radio_receiver receiver) (STV 1.0 0.9091)) +(: cnet_isa_aa59873844 (IsA radio_signal radio_wave) (STV 1.0 0.9091)) +(: cnet_isa_cff8e06159 (IsA radio_source radiator) (STV 1.0 0.9091)) +(: cnet_isa_b06bbf83de (IsA radio_spectrum spectrum) (STV 1.0 0.9091)) +(: cnet_isa_cf67074d25 (IsA radio_station broadcasting_station) (STV 1.0 0.9091)) +(: cnet_isa_9233afac3f (IsA radio_telescope astronomical_telescope) (STV 1.0 0.9091)) +(: cnet_isa_c67ea4469f (IsA radio_transmitter transmitter) (STV 1.0 0.9091)) +(: cnet_isa_58dc3a3ff7 (IsA radio_wave electromagnetic_radiation) (STV 1.0 0.9091)) +(: cnet_isa_df2caf35dc (IsA radioactive_dating measurement) (STV 1.0 0.9091)) +(: cnet_isa_5dd85348a7 (IsA radioactive_iodine_excretion_test radioactive_iodine_test) (STV 1.0 0.9091)) +(: cnet_isa_81ba671bbd (IsA radioactive_iodine_test diagnostic_test) (STV 1.0 0.9091)) +(: cnet_isa_a32b86a20a (IsA radioactive_iodine_uptake_test radioactive_iodine_test) (STV 1.0 0.9091)) +(: cnet_isa_6cfe8c490a (IsA radioactive_material material) (STV 1.0 0.9091)) +(: cnet_isa_042fbfc5ed (IsA radioactive_waste radioactive_material) (STV 1.0 0.9091)) +(: cnet_isa_c36b38f066 (IsA radioactivity_unit electromagnetic_unit) (STV 1.0 0.9091)) +(: cnet_isa_7b51c34059 (IsA radiobiologist biologist) (STV 1.0 0.9091)) +(: cnet_isa_c0786e88bd (IsA radiobiology biology) (STV 1.0 0.9091)) +(: cnet_isa_6bb6ac9ce4 (IsA radiocarbon carbon) (STV 1.0 0.9091)) +(: cnet_isa_e290ef3039 (IsA radiocarbon_dating dating) (STV 1.0 0.9091)) +(: cnet_isa_bcba073d53 (IsA radiochemistry chemistry) (STV 1.0 0.9091)) +(: cnet_isa_0d3c960906 (IsA radiochlorine chlorine) (STV 1.0 0.9091)) +(: cnet_isa_9a47670ed1 (IsA radiogram picture) (STV 1.0 0.9091)) +(: cnet_isa_fc52c7b9ef (IsA radiogram message) (STV 1.0 0.9091)) +(: cnet_isa_71b3305b30 (IsA radiographer specialist) (STV 1.0 0.9091)) +(: cnet_isa_ccef72f669 (IsA radiography photography) (STV 1.0 0.9091)) +(: cnet_isa_bc00298df0 (IsA radioimmunoassay immunoassay) (STV 1.0 0.9091)) +(: cnet_isa_ee9c94f612 (IsA radioisotope isotope) (STV 1.0 0.9091)) +(: cnet_isa_0d49cc03c3 (IsA radiolaria animal_order) (STV 1.0 0.9091)) +(: cnet_isa_ecd565245b (IsA radiolarian actinopod) (STV 1.0 0.9091)) +(: cnet_isa_2e20f52b37 (IsA radiologic_technologist scientist) (STV 1.0 0.9091)) +(: cnet_isa_2211d948ff (IsA radiologist specialist) (STV 1.0 0.9091)) +(: cnet_isa_3d0931ea22 (IsA radiology medical_science) (STV 1.0 0.9091)) +(: cnet_isa_47dad527dd (IsA radiolysis lysis) (STV 1.0 0.9091)) +(: cnet_isa_cf9668a296 (IsA radiometer meter) (STV 1.0 0.9091)) +(: cnet_isa_9cf89f8297 (IsA radiomicrometer radiometer) (STV 1.0 0.9091)) +(: cnet_isa_6dcefdcd5c (IsA radiopacity opacity) (STV 1.0 0.9091)) +(: cnet_isa_4f8ad990a6 (IsA radiopaque_dye dye) (STV 1.0 0.9091)) +(: cnet_isa_a4d9dd6ba3 (IsA radiopharmaceutical pharmaceutical) (STV 1.0 0.9091)) +(: cnet_isa_3cab401a15 (IsA radiophotograph telephotograph) (STV 1.0 0.9091)) +(: cnet_isa_2863bb6038 (IsA radiophotography telephotography) (STV 1.0 0.9091)) +(: cnet_isa_b1c2a4e43d (IsA radioprotection protection) (STV 1.0 0.9091)) +(: cnet_isa_402f92509e (IsA radioscopy imaging) (STV 1.0 0.9091)) +(: cnet_isa_867cd8304c (IsA radiotelegraph radio) (STV 1.0 0.9091)) +(: cnet_isa_33916fc333 (IsA radiotelegraph wireless) (STV 1.0 0.9091)) +(: cnet_isa_4d168fa055 (IsA radiotelephone telephone) (STV 1.0 0.9091)) +(: cnet_isa_a1f9032fef (IsA radiotelephone wireless) (STV 1.0 0.9091)) +(: cnet_isa_824fe508f3 (IsA radiotherapy therapy) (STV 1.0 0.9091)) +(: cnet_isa_956b50bf4b (IsA radiotherapy_equipment equipment) (STV 1.0 0.9091)) +(: cnet_isa_154b9e958d (IsA radish vegetable) (STV 1.0 0.9454)) +(: cnet_isa_6b5f42748f (IsA radish cruciferous_vegetable) (STV 1.0 0.9091)) +(: cnet_isa_0f1b442a6d (IsA radish root_vegetable) (STV 1.0 0.9091)) +(: cnet_isa_ff67661d4d (IsA radish radish_plant) (STV 1.0 0.9091)) +(: cnet_isa_079ec60d58 (IsA radish root) (STV 1.0 0.9091)) +(: cnet_isa_d20cd9a7e1 (IsA radish_plant crucifer) (STV 1.0 0.9091)) +(: cnet_isa_f68ac17e4f (IsA radium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_58d30c577f (IsA radium_therapy radiotherapy) (STV 1.0 0.9091)) +(: cnet_isa_2434310dde (IsA radius length) (STV 1.0 0.9091)) +(: cnet_isa_97f0130b42 (IsA radius arm_bone) (STV 1.0 0.9091)) +(: cnet_isa_50552938d1 (IsA radius region) (STV 1.0 0.9091)) +(: cnet_isa_ab833a562e (IsA radius straight_line) (STV 1.0 0.9091)) +(: cnet_isa_4e93d2d5db (IsA radius_of_curvature radius) (STV 1.0 0.9091)) +(: cnet_isa_4c92500126 (IsA radius_vector vector) (STV 1.0 0.9091)) +(: cnet_isa_52c867b717 (IsA radome housing) (STV 1.0 0.9091)) +(: cnet_isa_ff7269fcad (IsA radon chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_5bf9b393a5 (IsA radon noble_gas) (STV 1.0 0.9091)) +(: cnet_isa_321df1107a (IsA radyera dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5515c8fab7 (IsA raffia fiber) (STV 1.0 0.9091)) +(: cnet_isa_36f9d3571b (IsA raffia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7283b15a73 (IsA raffia plant_fiber) (STV 1.0 0.9091)) +(: cnet_isa_5588d1f4a7 (IsA raffia_palm palm) (STV 1.0 0.9091)) +(: cnet_isa_86d2a89037 (IsA raffinose trisaccharide) (STV 1.0 0.9091)) +(: cnet_isa_a1ff05e756 (IsA raffle lottery) (STV 1.0 0.9091)) +(: cnet_isa_e4fa333d59 (IsA rafflesiaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_3c7aef13a9 (IsA raft float) (STV 1.0 0.9091)) +(: cnet_isa_1d504fe55f (IsA raft_foundation foundation) (STV 1.0 0.9091)) +(: cnet_isa_026e0fb8ec (IsA rafter beam) (STV 1.0 0.9091)) +(: cnet_isa_657e40d94e (IsA raftsman traveler) (STV 1.0 0.9091)) +(: cnet_isa_6f83501fb6 (IsA rag practical_joke) (STV 1.0 0.9091)) +(: cnet_isa_66c2e10532 (IsA rag piece_of_cloth) (STV 1.0 0.9091)) +(: cnet_isa_b4e7d02cac (IsA rag week) (STV 1.0 0.9091)) +(: cnet_isa_71dc763931 (IsA rag_day day) (STV 1.0 0.9091)) +(: cnet_isa_59a4378e73 (IsA rag_doll doll) (STV 1.0 0.9091)) +(: cnet_isa_9f661a1628 (IsA rag_paper writing_paper) (STV 1.0 0.9091)) +(: cnet_isa_5d08b23405 (IsA ragamuffin urchin) (STV 1.0 0.9091)) +(: cnet_isa_af7f6a92ca (IsA ragbag bag) (STV 1.0 0.9091)) +(: cnet_isa_298c6c957c (IsA rage anger) (STV 1.0 0.9091)) +(: cnet_isa_a91cf97944 (IsA rage desire) (STV 1.0 0.9091)) +(: cnet_isa_00c840ed53 (IsA rage violence) (STV 1.0 0.9091)) +(: cnet_isa_37b56e01ee (IsA raggady_ann doll) (STV 1.0 0.9091)) +(: cnet_isa_dc94f0a3eb (IsA ragged_orchid fringed_orchis) (STV 1.0 0.9091)) +(: cnet_isa_9ef7afeaaf (IsA ragged_robin lychnis) (STV 1.0 0.9091)) +(: cnet_isa_18b7bdf4e0 (IsA raggedness shabbiness) (STV 1.0 0.9091)) +(: cnet_isa_3a4ec9db73 (IsA raglan garment) (STV 1.0 0.9091)) +(: cnet_isa_e6ef210275 (IsA raglan_sleeve sleeve) (STV 1.0 0.9091)) +(: cnet_isa_0470493d8b (IsA ragout stew) (STV 1.0 0.9091)) +(: cnet_isa_e3e219c09f (IsA ragpicker unskilled_person) (STV 1.0 0.9091)) +(: cnet_isa_917893f1df (IsA ragsorter worker) (STV 1.0 0.9091)) +(: cnet_isa_0bc1be63e6 (IsA ragtime dance_music) (STV 1.0 0.9091)) +(: cnet_isa_ac2a2d18a5 (IsA ragweed weed) (STV 1.0 0.9091)) +(: cnet_isa_000c4972be (IsA ragweed_pollen allergen) (STV 1.0 0.9091)) +(: cnet_isa_89b728fe36 (IsA ragweed_pollen pollen) (STV 1.0 0.9091)) +(: cnet_isa_eeffb55a18 (IsA ragwort weed) (STV 1.0 0.9091)) +(: cnet_isa_87c9aa3bbf (IsA raid embezzlement) (STV 1.0 0.9091)) +(: cnet_isa_60a4c198ed (IsA raider corporate_investor) (STV 1.0 0.9091)) +(: cnet_isa_3bea37e344 (IsA rail wading_bird) (STV 1.0 0.9091)) +(: cnet_isa_07e36ee289 (IsA rail bar) (STV 1.0 0.9091)) +(: cnet_isa_18d4ce8b19 (IsA rail railway) (STV 1.0 0.9091)) +(: cnet_isa_87754b1f3a (IsA rail_fence fence) (STV 1.0 0.9091)) +(: cnet_isa_30715c22f3 (IsA rail_splitter laborer) (STV 1.0 0.9091)) +(: cnet_isa_9996e5d2c3 (IsA rail_technology technology) (STV 1.0 0.9091)) +(: cnet_isa_b88d5aeec3 (IsA railbird sport_fan) (STV 1.0 0.9091)) +(: cnet_isa_643fa2363d (IsA railhead end) (STV 1.0 0.9091)) +(: cnet_isa_0dbe0ebe35 (IsA railhead storehouse) (STV 1.0 0.9091)) +(: cnet_isa_2f9e78d384 (IsA railing barrier) (STV 1.0 0.9091)) +(: cnet_isa_3eb46f605b (IsA railing material) (STV 1.0 0.9091)) +(: cnet_isa_bd85fbbd4a (IsA railroad_bed bed) (STV 1.0 0.9091)) +(: cnet_isa_b08d680a71 (IsA railroad_flat apartment) (STV 1.0 0.9091)) +(: cnet_isa_f1f437a360 (IsA railroad_ticket ticket) (STV 1.0 0.9091)) +(: cnet_isa_70469882ad (IsA railroad_track track) (STV 1.0 0.9091)) +(: cnet_isa_3c88f512c5 (IsA railroad_tunnel tunnel) (STV 1.0 0.9091)) +(: cnet_isa_f9a9542c7a (IsA railroad_vine morning_glory) (STV 1.0 0.9091)) +(: cnet_isa_feb5523d89 (IsA railway line) (STV 1.0 0.9091)) +(: cnet_isa_dd92c36305 (IsA railway_junction junction) (STV 1.0 0.9091)) +(: cnet_isa_954153b172 (IsA railway_station terminal) (STV 1.0 0.9091)) +(: cnet_isa_c093ba35ef (IsA rain water) (STV 1.0 0.9791)) +(: cnet_isa_fec1ddc1b0 (IsA rain sequence) (STV 1.0 0.9091)) +(: cnet_isa_31f5108d91 (IsA rain precipitation) (STV 1.0 0.9091)) +(: cnet_isa_7807e2349f (IsA rain fresh_water) (STV 1.0 0.9091)) +(: cnet_isa_e3730d3b19 (IsA rain_and_heat both_weather_term) (STV 1.0 0.9091)) +(: cnet_isa_5e87d982ee (IsA rain_barrel cistern) (STV 1.0 0.9091)) +(: cnet_isa_3b95d506a4 (IsA rain_check promise) (STV 1.0 0.9091)) +(: cnet_isa_400e5a12f5 (IsA rain_check stub) (STV 1.0 0.9091)) +(: cnet_isa_e5139e3dd4 (IsA rain_dance ritual_dancing) (STV 1.0 0.9091)) +(: cnet_isa_371c86b491 (IsA rain_date date) (STV 1.0 0.9091)) +(: cnet_isa_cd59e993ff (IsA rain_forest forest) (STV 1.0 0.9091)) +(: cnet_isa_d9c7bd9642 (IsA rain_gauge gauge) (STV 1.0 0.9091)) +(: cnet_isa_b8efe078b7 (IsA rain_shadow area) (STV 1.0 0.9091)) +(: cnet_isa_063190eb03 (IsA rain_stick percussion_instrument) (STV 1.0 0.9091)) +(: cnet_isa_3bef15168f (IsA rain_tree albizzia) (STV 1.0 0.9091)) +(: cnet_isa_f679932e2c (IsA rain_wash washout) (STV 1.0 0.9091)) +(: cnet_isa_69b2847a29 (IsA rainbow promise) (STV 1.0 0.9091)) +(: cnet_isa_4f477a9d6b (IsA rainbow bow) (STV 1.0 0.9091)) +(: cnet_isa_55dfac5a18 (IsA rainbow_cactus cactus) (STV 1.0 0.9091)) +(: cnet_isa_26d67639b0 (IsA rainbow_lorikeet lorikeet) (STV 1.0 0.9091)) +(: cnet_isa_af41530f66 (IsA rainbow_runner jack) (STV 1.0 0.9091)) +(: cnet_isa_8697304819 (IsA rainbow_seaperch surfperch) (STV 1.0 0.9091)) +(: cnet_isa_cfbbd36cbb (IsA rainbow_shower cassia) (STV 1.0 0.9091)) +(: cnet_isa_c0663f5bea (IsA rainbow_smelt smelt) (STV 1.0 0.9091)) +(: cnet_isa_41610b2971 (IsA rainbow_trout trout) (STV 1.0 0.9091)) +(: cnet_isa_e6dd93b7d3 (IsA raincoat coat) (STV 1.0 0.9091)) +(: cnet_isa_5dda1a0908 (IsA raindrop drop) (STV 1.0 0.9091)) +(: cnet_isa_0bcccf9e91 (IsA raininess badness) (STV 1.0 0.9091)) +(: cnet_isa_bda4e129b2 (IsA raining one_type_of_weather) (STV 1.0 0.9091)) +(: cnet_isa_9f29258c9b (IsA rainmaker executive) (STV 1.0 0.9091)) +(: cnet_isa_cceaa5f970 (IsA rainmaker medicine_man) (STV 1.0 0.9091)) +(: cnet_isa_d467ae0f43 (IsA rainmaking production) (STV 1.0 0.9091)) +(: cnet_isa_1e6cb93bb4 (IsA rainstorm rain) (STV 1.0 0.9091)) +(: cnet_isa_f9ed3f6f9e (IsA rainstorm storm) (STV 1.0 0.9091)) +(: cnet_isa_d16efabe60 (IsA rainy weather) (STV 1.0 0.9091)) +(: cnet_isa_b58780fcec (IsA rainy_day time_period) (STV 1.0 0.9091)) +(: cnet_isa_0b6fca0ba1 (IsA rainy_season season) (STV 1.0 0.9091)) +(: cnet_isa_145d9c4516 (IsA raise increase) (STV 1.0 0.9091)) +(: cnet_isa_f3d43e29bb (IsA raise gamble) (STV 1.0 0.9091)) +(: cnet_isa_4dbcd4b2d3 (IsA raised_doughnut doughnut) (STV 1.0 0.9091)) +(: cnet_isa_b4380aecfd (IsA raiser bridge_partner) (STV 1.0 0.9091)) +(: cnet_isa_d61e4f382e (IsA raisin dried_grape) (STV 1.0 0.9608)) +(: cnet_isa_ab24c8bed5 (IsA raisin dried_fruit) (STV 1.0 0.9091)) +(: cnet_isa_aff58dbcb4 (IsA raisin_bran cold_cereal) (STV 1.0 0.9091)) +(: cnet_isa_860ba45ab0 (IsA raisin_bread bread) (STV 1.0 0.9091)) +(: cnet_isa_068b56d520 (IsA raisin_cookie cookie) (STV 1.0 0.9091)) +(: cnet_isa_6f9afb0b84 (IsA raisin_moth pyralid) (STV 1.0 0.9091)) +(: cnet_isa_3846a6273a (IsA raisin_nut_cookie cookie) (STV 1.0 0.9091)) +(: cnet_isa_3a3de6e516 (IsA raising upbringing) (STV 1.0 0.9091)) +(: cnet_isa_806b4b622e (IsA raising_hell aggression) (STV 1.0 0.9091)) +(: cnet_isa_68cb65fac3 (IsA raison_d_etre function) (STV 1.0 0.9091)) +(: cnet_isa_7298025c3f (IsA raison_d_etre rationalization) (STV 1.0 0.9091)) +(: cnet_isa_da202571fc (IsA raita side_dish) (STV 1.0 0.9091)) +(: cnet_isa_28e588ae5a (IsA raj dominion) (STV 1.0 0.9091)) +(: cnet_isa_7a45fc0b6d (IsA raja fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_7a53452c55 (IsA raja aristocrat) (STV 1.0 0.9091)) +(: cnet_isa_d9dc0f719b (IsA rajab islamic_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_4ef4338306 (IsA rajanya varna) (STV 1.0 0.9091)) +(: cnet_isa_1a0d3ef5c9 (IsA rajidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_4c70037a25 (IsA rajiforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_8db98b9841 (IsA rajpoot hindustani) (STV 1.0 0.9091)) +(: cnet_isa_cd90fe13d7 (IsA rake garden_tool) (STV 1.0 0.9091)) +(: cnet_isa_023ef6ffa8 (IsA rake tool) (STV 1.0 0.9091)) +(: cnet_isa_b3d5623f89 (IsA rake libertine) (STV 1.0 0.9091)) +(: cnet_isa_b7fc1ed418 (IsA rake_handle handle) (STV 1.0 0.9091)) +(: cnet_isa_8eb784ad2a (IsA rake_off cut) (STV 1.0 0.9091)) +(: cnet_isa_eef519f818 (IsA rakishness dissoluteness) (STV 1.0 0.9091)) +(: cnet_isa_bc53252536 (IsA rallidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_f194b4c43b (IsA rally deed) (STV 1.0 0.9091)) +(: cnet_isa_3cf10ec6a3 (IsA rally automobile_race) (STV 1.0 0.9091)) +(: cnet_isa_2bcf0b3b93 (IsA rally gathering) (STV 1.0 0.9091)) +(: cnet_isa_23227e4a98 (IsA rally convalescence) (STV 1.0 0.9091)) +(: cnet_isa_41f3816c48 (IsA rally group_action) (STV 1.0 0.9091)) +(: cnet_isa_0f148a750e (IsA rallying mobilization) (STV 1.0 0.9091)) +(: cnet_isa_2bdc77fdcd (IsA rallying_point point) (STV 1.0 0.9091)) +(: cnet_isa_95270ffb70 (IsA ram_s_head lady_s_slipper) (STV 1.0 0.9091)) +(: cnet_isa_ce23dac54d (IsA ram sheep) (STV 1.0 0.9091)) +(: cnet_isa_e8ee33abdd (IsA ram tool) (STV 1.0 0.9091)) +(: cnet_isa_4bb6e47881 (IsA ram person) (STV 1.0 0.9091)) +(: cnet_isa_b02dc9057d (IsA ram_disk drive) (STV 1.0 0.9091)) +(: cnet_isa_b7c911d4d2 (IsA ramadan fast) (STV 1.0 0.9091)) +(: cnet_isa_d8dca36f3b (IsA ramadan islamic_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_12a046e0e4 (IsA ramalina fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_94a2802937 (IsA ramanavami holiday) (STV 1.0 0.9091)) +(: cnet_isa_fc92c08381 (IsA ramble amble) (STV 1.0 0.9091)) +(: cnet_isa_5ae8069357 (IsA rambler communicator) (STV 1.0 0.9091)) +(: cnet_isa_482aa53d58 (IsA rambler pedestrian) (STV 1.0 0.9091)) +(: cnet_isa_e48fe5bb6e (IsA rambouillet domestic_sheep) (STV 1.0 0.9091)) +(: cnet_isa_64b6bf8334 (IsA rambutan edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_ee35fadf27 (IsA rambutan fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_bf086e6266 (IsA ramekin dish) (STV 1.0 0.9091)) +(: cnet_isa_1dde95a8be (IsA ramie false_nettle) (STV 1.0 0.9091)) +(: cnet_isa_da6dc1fbaa (IsA ramification placement) (STV 1.0 0.9091)) +(: cnet_isa_89cf385795 (IsA ramjet jet_engine) (STV 1.0 0.9091)) +(: cnet_isa_7c1005786b (IsA rammer ram) (STV 1.0 0.9091)) +(: cnet_isa_b8a4c15b91 (IsA ramp inclined_plane) (STV 1.0 0.9091)) +(: cnet_isa_c338bc77c3 (IsA ramp stairway) (STV 1.0 0.9091)) +(: cnet_isa_6866113e7d (IsA ramp alliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_b70743e813 (IsA rampage disturbance) (STV 1.0 0.9091)) +(: cnet_isa_07ceaf75cb (IsA rampant_arch arch) (STV 1.0 0.9091)) +(: cnet_isa_1c95d985a7 (IsA rampart embankment) (STV 1.0 0.9091)) +(: cnet_isa_5a8b958a2c (IsA ramphastidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_e591526178 (IsA ramphomicron bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_70f560ebc8 (IsA rampion campanula) (STV 1.0 0.9091)) +(: cnet_isa_b00e199926 (IsA ramrod rod) (STV 1.0 0.9091)) +(: cnet_isa_c0aa259180 (IsA ramrod overseer) (STV 1.0 0.9091)) +(: cnet_isa_c286f9f057 (IsA ramsay_hunt_syndrome syndrome) (STV 1.0 0.9091)) +(: cnet_isa_1324f253bc (IsA ramus bone) (STV 1.0 0.9091)) +(: cnet_isa_079bf9a06b (IsA rana amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_dcf55ba7de (IsA ranale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_1e6615434d (IsA ranatra arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_27745e6535 (IsA ranch farm) (STV 1.0 0.9091)) +(: cnet_isa_c60d794bfd (IsA ranch_hand hired_hand) (STV 1.0 0.9091)) +(: cnet_isa_6c0aeef178 (IsA ranch_house house) (STV 1.0 0.9091)) +(: cnet_isa_f26b6e2aa1 (IsA rancher farmer) (STV 1.0 0.9091)) +(: cnet_isa_7ca9d8314b (IsA ranching farming) (STV 1.0 0.9091)) +(: cnet_isa_ee427fb591 (IsA rancidity decay) (STV 1.0 0.9091)) +(: cnet_isa_2fbf146037 (IsA rancidness olfactory_property) (STV 1.0 0.9091)) +(: cnet_isa_60946b7f3e (IsA rancidness taste_property) (STV 1.0 0.9091)) +(: cnet_isa_5bdc8dbc15 (IsA rand south_african_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_51fb7b1d8d (IsA random_access_memory volatile_storage) (STV 1.0 0.9091)) +(: cnet_isa_9110649a6d (IsA random_number_generator routine) (STV 1.0 0.9091)) +(: cnet_isa_68c491df13 (IsA random_sample sample) (STV 1.0 0.9091)) +(: cnet_isa_d01cfde3f1 (IsA random_sample sample_distribution) (STV 1.0 0.9091)) +(: cnet_isa_d19a2ccd38 (IsA random_sampling sampling) (STV 1.0 0.9091)) +(: cnet_isa_b84e4cf19f (IsA random_variable variable) (STV 1.0 0.9091)) +(: cnet_isa_d26cfa8547 (IsA random_vector vector) (STV 1.0 0.9091)) +(: cnet_isa_a3115edbcf (IsA random_walk stochastic_process) (STV 1.0 0.9091)) +(: cnet_isa_e928190680 (IsA randomization organization) (STV 1.0 0.9091)) +(: cnet_isa_8cd581924d (IsA randomness irregularity) (STV 1.0 0.9091)) +(: cnet_isa_c055a95aa1 (IsA randomness physical_property) (STV 1.0 0.9091)) +(: cnet_isa_f04ed2f4b8 (IsA range facility) (STV 1.0 0.9091)) +(: cnet_isa_02fa6d9242 (IsA range assortment) (STV 1.0 0.9091)) +(: cnet_isa_21417883f9 (IsA range limit) (STV 1.0 0.9091)) +(: cnet_isa_cd6c119255 (IsA range tract) (STV 1.0 0.9091)) +(: cnet_isa_ea89404bd5 (IsA range set) (STV 1.0 0.9091)) +(: cnet_isa_b2e3f7b486 (IsA range geological_formation) (STV 1.0 0.9091)) +(: cnet_isa_5e6517a970 (IsA range_animal animal) (STV 1.0 0.9091)) +(: cnet_isa_792114ac14 (IsA range_hood hood) (STV 1.0 0.9091)) +(: cnet_isa_3b4297004f (IsA range_pole surveying_instrument) (STV 1.0 0.9091)) +(: cnet_isa_b500753c55 (IsA rangefinder measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_eaedbd6721 (IsA rangeland land) (STV 1.0 0.9091)) +(: cnet_isa_040db7f9a6 (IsA ranger lawman) (STV 1.0 0.9091)) +(: cnet_isa_49d3ddb7f7 (IsA rangifer mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_2ca6fc854a (IsA rangpur citrus) (STV 1.0 0.9091)) +(: cnet_isa_72aa6d7e7a (IsA rani aristocrat) (STV 1.0 0.9091)) +(: cnet_isa_d22ff957c0 (IsA ranidae amphibian_family) (STV 1.0 0.9091)) +(: cnet_isa_624e8cec15 (IsA rank line) (STV 1.0 0.9091)) +(: cnet_isa_fff13df025 (IsA rank status) (STV 1.0 0.9091)) +(: cnet_isa_9c79d7237d (IsA rank_and_file people) (STV 1.0 0.9091)) +(: cnet_isa_5dc2524261 (IsA rank_and_file force) (STV 1.0 0.9091)) +(: cnet_isa_3678f21133 (IsA rank_order order) (STV 1.0 0.9091)) +(: cnet_isa_a922678d17 (IsA rank_order_correlation_coefficient nonparametric_statistic) (STV 1.0 0.9091)) +(: cnet_isa_e18f226076 (IsA ranker commissioned_officer) (STV 1.0 0.9091)) +(: cnet_isa_2781a42652 (IsA ranker soldier) (STV 1.0 0.9091)) +(: cnet_isa_8a1054ad3b (IsA rankine temperature_unit) (STV 1.0 0.9091)) +(: cnet_isa_f0c82c3046 (IsA rankine_scale temperature_scale) (STV 1.0 0.9091)) +(: cnet_isa_8507b29316 (IsA ranking standing) (STV 1.0 0.9091)) +(: cnet_isa_8f7110c9e1 (IsA ransacking search) (STV 1.0 0.9091)) +(: cnet_isa_41a1321886 (IsA ransom payment) (STV 1.0 0.9091)) +(: cnet_isa_a0c95d3266 (IsA ransom recovery) (STV 1.0 0.9091)) +(: cnet_isa_9a067b1bf4 (IsA ransom cost) (STV 1.0 0.9091)) +(: cnet_isa_b62d296e81 (IsA ranter speaker) (STV 1.0 0.9091)) +(: cnet_isa_b20bbd4f15 (IsA ranula cyst) (STV 1.0 0.9091)) +(: cnet_isa_9564c1ade2 (IsA ranunculaceae magnoliid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_c27f0a46e8 (IsA ranunculus magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b83c5d7610 (IsA ranvier_s_node opening) (STV 1.0 0.9091)) +(: cnet_isa_27b71bff82 (IsA raoulia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f8602c663c (IsA rap music) (STV 1.0 0.9454)) +(: cnet_isa_c2807baa18 (IsA rap black_music) (STV 1.0 0.9091)) +(: cnet_isa_8ae6b71107 (IsA rap conversation) (STV 1.0 0.9091)) +(: cnet_isa_ae7cd05e82 (IsA rap popular_music) (STV 1.0 0.9091)) +(: cnet_isa_2005166098 (IsA rap bump) (STV 1.0 0.9091)) +(: cnet_isa_40150be53a (IsA rap_group gathering) (STV 1.0 0.9091)) +(: cnet_isa_155b9626b5 (IsA rap_session conversation) (STV 1.0 0.9091)) +(: cnet_isa_86b891814d (IsA rapateaceae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_869e7004b9 (IsA rape crime_against_people) (STV 1.0 0.9091)) +(: cnet_isa_b082d4f2a8 (IsA rape plundering) (STV 1.0 0.9091)) +(: cnet_isa_80d4aa7a9c (IsA rape sexual_assault) (STV 1.0 0.9091)) +(: cnet_isa_deffa80c0f (IsA rape mustard) (STV 1.0 0.9091)) +(: cnet_isa_1df7ed5eb1 (IsA rape_conviction conviction) (STV 1.0 0.9091)) +(: cnet_isa_9592ad746c (IsA rape_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_259c99aef9 (IsA rape_suspect suspect) (STV 1.0 0.9091)) +(: cnet_isa_552d0e086d (IsA raper attacker) (STV 1.0 0.9091)) +(: cnet_isa_be740c1f5a (IsA raper criminal) (STV 1.0 0.9091)) +(: cnet_isa_5c0b8afb10 (IsA rapeseed oilseed) (STV 1.0 0.9091)) +(: cnet_isa_39a7128f5a (IsA raphael archangel) (STV 1.0 0.9091)) +(: cnet_isa_cece9acc50 (IsA raphanus dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_eb885999b4 (IsA raphe ridge) (STV 1.0 0.9091)) +(: cnet_isa_3d018cc9fb (IsA raphicerus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_07afffcae1 (IsA raphidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_2c5095e061 (IsA raphidiidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_b2513179b4 (IsA raphus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_f08991957d (IsA rapid waterway) (STV 1.0 0.9091)) +(: cnet_isa_dcf0846faa (IsA rapid_climb rise) (STV 1.0 0.9091)) +(: cnet_isa_fa02f5df3c (IsA rapid_transit public_transit) (STV 1.0 0.9091)) +(: cnet_isa_2b25aa6f8e (IsA rapier sword) (STV 1.0 0.9091)) +(: cnet_isa_b0dbfd1b40 (IsA rappee snuff) (STV 1.0 0.9091)) +(: cnet_isa_8e272069d5 (IsA rapper singer) (STV 1.0 0.9091)) +(: cnet_isa_9784bac968 (IsA rapport affinity) (STV 1.0 0.9091)) +(: cnet_isa_4e925561f4 (IsA rapporteur registrar) (STV 1.0 0.9091)) +(: cnet_isa_aad524b58a (IsA raptore animal_order) (STV 1.0 0.9091)) +(: cnet_isa_8727a67ea1 (IsA raptus_hemorrhagicus seizure) (STV 1.0 0.9091)) +(: cnet_isa_3096a7f967 (IsA rare_bird person) (STV 1.0 0.9091)) +(: cnet_isa_b2354ab6c1 (IsA rare_earth group) (STV 1.0 0.9091)) +(: cnet_isa_3823c84525 (IsA raree_show show) (STV 1.0 0.9091)) +(: cnet_isa_16ae1167db (IsA rarefaction concentration) (STV 1.0 0.9091)) +(: cnet_isa_189d8c0fc8 (IsA rariora collector_s_item) (STV 1.0 0.9091)) +(: cnet_isa_aec96a104b (IsA rarity concentration) (STV 1.0 0.9091)) +(: cnet_isa_e318a40324 (IsA rarity scarcity) (STV 1.0 0.9091)) +(: cnet_isa_2cdd526b5b (IsA rascality dishonesty) (STV 1.0 0.9091)) +(: cnet_isa_0ad692bec6 (IsA rash sery) (STV 1.0 0.9091)) +(: cnet_isa_66978b93c7 (IsA rash eruption) (STV 1.0 0.9091)) +(: cnet_isa_ee6ee0b6a1 (IsA rashtriya_swayamsevak_sangh secret_society) (STV 1.0 0.9091)) +(: cnet_isa_8e7eb7070d (IsA rasp file) (STV 1.0 0.9091)) +(: cnet_isa_cf2af5890a (IsA rasp utterance) (STV 1.0 0.9091)) +(: cnet_isa_8f8e983607 (IsA raspberry berry) (STV 1.0 0.9091)) +(: cnet_isa_56887155ea (IsA raspberry drupelet) (STV 1.0 0.9091)) +(: cnet_isa_d9ec39c0a5 (IsA raspberry bramble_bush) (STV 1.0 0.9091)) +(: cnet_isa_fd6a7c9058 (IsA rasta disciple) (STV 1.0 0.9091)) +(: cnet_isa_d2b661a5f1 (IsA rastafari cult) (STV 1.0 0.9091)) +(: cnet_isa_9f0381d25e (IsA rastafari youth_subculture) (STV 1.0 0.9091)) +(: cnet_isa_6d4562f49d (IsA rastafarian cult) (STV 1.0 0.9091)) +(: cnet_isa_63b15b7481 (IsA rastafarianism cult) (STV 1.0 0.9091)) +(: cnet_isa_ca144df13d (IsA raster formation) (STV 1.0 0.9091)) +(: cnet_isa_7c3e7328a0 (IsA rat rodent) (STV 1.0 0.9339)) +(: cnet_isa_eecd793539 (IsA rat pad) (STV 1.0 0.9091)) +(: cnet_isa_f805feab03 (IsA rat_and_rabbit both_animal) (STV 1.0 0.9454)) +(: cnet_isa_9dde30b608 (IsA rat_catcher workman) (STV 1.0 0.9091)) +(: cnet_isa_77047e33cc (IsA rat_kangaroo kangaroo) (STV 1.0 0.9091)) +(: cnet_isa_0a68066b7f (IsA rat_race routine) (STV 1.0 0.9091)) +(: cnet_isa_a0fc0de8e6 (IsA rat_snake colubrid_snake) (STV 1.0 0.9091)) +(: cnet_isa_39643ce482 (IsA rat_tail_file file) (STV 1.0 0.9091)) +(: cnet_isa_7177fd7f67 (IsA rat_tat_tat tapping) (STV 1.0 0.9091)) +(: cnet_isa_361968a6e6 (IsA rat_terrier terrier) (STV 1.0 0.9091)) +(: cnet_isa_784f24ff73 (IsA ratability quantifiability) (STV 1.0 0.9091)) +(: cnet_isa_98cfb1cdcd (IsA ratability liability) (STV 1.0 0.9091)) +(: cnet_isa_f25daeccfc (IsA ratable property) (STV 1.0 0.9091)) +(: cnet_isa_fd143ee6b4 (IsA ratafia liqueur) (STV 1.0 0.9091)) +(: cnet_isa_e715d3971b (IsA ratafia macaroon) (STV 1.0 0.9091)) +(: cnet_isa_9e0301c17d (IsA ratatouille stew) (STV 1.0 0.9091)) +(: cnet_isa_862666eed2 (IsA ratbite_fever infectious_disease) (STV 1.0 0.9091)) +(: cnet_isa_98ef49daad (IsA ratbite_fever_bacterium spirillum) (STV 1.0 0.9091)) +(: cnet_isa_e84417e577 (IsA ratchet mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_dd67b91e74 (IsA ratchet_wheel wheel) (STV 1.0 0.9091)) +(: cnet_isa_44970ca181 (IsA rate proportion) (STV 1.0 0.9091)) +(: cnet_isa_f17f682082 (IsA rate charge) (STV 1.0 0.9091)) +(: cnet_isa_e2f76eee93 (IsA rate magnitude_relation) (STV 1.0 0.9091)) +(: cnet_isa_7f6401c015 (IsA rate_of_depreciation rate) (STV 1.0 0.9091)) +(: cnet_isa_54c1c927d7 (IsA rate_of_exchange rate) (STV 1.0 0.9091)) +(: cnet_isa_8a5f28f6bd (IsA rate_of_return rate) (STV 1.0 0.9091)) +(: cnet_isa_8aa89a3b1b (IsA ratel musteline_mammal) (STV 1.0 0.9091)) +(: cnet_isa_4e39d09906 (IsA ratepayer taxpayer) (STV 1.0 0.9091)) +(: cnet_isa_15f65c3c16 (IsA rate tax) (STV 1.0 0.9091)) +(: cnet_isa_9d66c6c6fe (IsA rathole room) (STV 1.0 0.9091)) +(: cnet_isa_9c90841401 (IsA rathole hole) (STV 1.0 0.9091)) +(: cnet_isa_33373c625a (IsA rathskeller tavern) (STV 1.0 0.9091)) +(: cnet_isa_6a8e81346e (IsA ratibida asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9ecea39563 (IsA ratification agreement) (STV 1.0 0.9091)) +(: cnet_isa_344e27b94c (IsA rating standing) (STV 1.0 0.9091)) +(: cnet_isa_e9174f75e5 (IsA rating_system classification_system) (STV 1.0 0.9091)) +(: cnet_isa_0a9cb0a0f6 (IsA ratio magnitude_relation) (STV 1.0 0.9091)) +(: cnet_isa_903c0d09bc (IsA ratiocination reasoning) (STV 1.0 0.9091)) +(: cnet_isa_8c95187105 (IsA ration fare) (STV 1.0 0.9091)) +(: cnet_isa_4fd8d918c9 (IsA ration share) (STV 1.0 0.9091)) +(: cnet_isa_b1c2843cfd (IsA ration_card card) (STV 1.0 0.9091)) +(: cnet_isa_ee284deacd (IsA rational_motive motivation) (STV 1.0 0.9091)) +(: cnet_isa_26865ce961 (IsA rational_number real_number) (STV 1.0 0.9091)) +(: cnet_isa_e217a54d09 (IsA rationale explanation) (STV 1.0 0.9091)) +(: cnet_isa_e7800e2a63 (IsA rationalism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_fd0dff5305 (IsA rationalism theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_5e614a53d8 (IsA rationalism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_d96a3e787f (IsA rationality logicality) (STV 1.0 0.9091)) +(: cnet_isa_db877e986c (IsA rationality sanity) (STV 1.0 0.9091)) +(: cnet_isa_c290c2f0ec (IsA rationalization organization) (STV 1.0 0.9091)) +(: cnet_isa_8802e80a29 (IsA rationalization explanation) (STV 1.0 0.9091)) +(: cnet_isa_e5d3fe8774 (IsA rationalization simplification) (STV 1.0 0.9091)) +(: cnet_isa_b2cfd4e3c1 (IsA rationalization defense_mechanism) (STV 1.0 0.9091)) +(: cnet_isa_46bc5e121b (IsA rationing allotment) (STV 1.0 0.9091)) +(: cnet_isa_3fd63a5ab1 (IsA ratitae animal_order) (STV 1.0 0.9091)) +(: cnet_isa_92275e70ee (IsA ratite bird) (STV 1.0 0.9091)) +(: cnet_isa_7d0007dd6a (IsA ratline line) (STV 1.0 0.9091)) +(: cnet_isa_1b667dacca (IsA rattail_cactus cactus) (STV 1.0 0.9091)) +(: cnet_isa_f5cae5b66d (IsA rattan switch) (STV 1.0 0.9091)) +(: cnet_isa_da96e6e699 (IsA rattan calamus) (STV 1.0 0.9091)) +(: cnet_isa_d77129ce38 (IsA rattan cane) (STV 1.0 0.9091)) +(: cnet_isa_07cea9abcb (IsA rattle tail) (STV 1.0 0.9091)) +(: cnet_isa_44d74c67c9 (IsA rattle plaything) (STV 1.0 0.9091)) +(: cnet_isa_57ccd879cb (IsA rattle noise) (STV 1.0 0.9091)) +(: cnet_isa_704762a5da (IsA rattlesnake pit_viper) (STV 1.0 0.9091)) +(: cnet_isa_43508434c7 (IsA rattlesnake_fern grape_fern) (STV 1.0 0.9091)) +(: cnet_isa_1413c57245 (IsA rattlesnake_master perennial) (STV 1.0 0.9091)) +(: cnet_isa_c91d2eee2e (IsA rattlesnake_orchid orchid) (STV 1.0 0.9091)) +(: cnet_isa_d4e635c6e7 (IsA rattlesnake_plantain orchid) (STV 1.0 0.9091)) +(: cnet_isa_ecda386530 (IsA rattlesnake_root herb) (STV 1.0 0.9091)) +(: cnet_isa_b062708b44 (IsA rattlesnake_weed hawkweed) (STV 1.0 0.9091)) +(: cnet_isa_0c1186a531 (IsA rattrap housing) (STV 1.0 0.9091)) +(: cnet_isa_26dbd1d897 (IsA rattrap trap) (STV 1.0 0.9091)) +(: cnet_isa_a3c5afa410 (IsA rattrap difficulty) (STV 1.0 0.9091)) +(: cnet_isa_00227109ad (IsA rattus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_c25cff7cd9 (IsA rauli_beech southern_beech) (STV 1.0 0.9091)) +(: cnet_isa_aa561af400 (IsA rauwolfia shrub) (STV 1.0 0.9091)) +(: cnet_isa_8f35cc4640 (IsA rauwolfia alkaloid) (STV 1.0 0.9091)) +(: cnet_isa_75c6a5bf7f (IsA ravage destruction) (STV 1.0 0.9091)) +(: cnet_isa_de575edcc7 (IsA ravaging plundering) (STV 1.0 0.9091)) +(: cnet_isa_6724078d38 (IsA rave review) (STV 1.0 0.9091)) +(: cnet_isa_3f742674a2 (IsA rave dance) (STV 1.0 0.9091)) +(: cnet_isa_979725a8a1 (IsA rave_up gathering) (STV 1.0 0.9091)) +(: cnet_isa_1b7bb657d0 (IsA ravehook hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_f204965f42 (IsA raveling fiber) (STV 1.0 0.9091)) +(: cnet_isa_ed33f5915e (IsA raven corvine_bird) (STV 1.0 0.9091)) +(: cnet_isa_be69eac121 (IsA ravenna_grass plume_grass) (STV 1.0 0.9091)) +(: cnet_isa_15f45f3451 (IsA raver dancer) (STV 1.0 0.9091)) +(: cnet_isa_00ac66452a (IsA ravigote sauce) (STV 1.0 0.9091)) +(: cnet_isa_c32d188c56 (IsA ravine valley) (STV 1.0 0.9091)) +(: cnet_isa_4b3f98a93b (IsA raving declamation) (STV 1.0 0.9091)) +(: cnet_isa_a67fdb1da1 (IsA ravioli pasta) (STV 1.0 0.9091)) +(: cnet_isa_4769781cf6 (IsA raw nakedness) (STV 1.0 0.9091)) +(: cnet_isa_80f89e69a1 (IsA raw_beauty beauty) (STV 1.0 0.9091)) +(: cnet_isa_da7c41b847 (IsA raw_data data) (STV 1.0 0.9091)) +(: cnet_isa_0cf12decaf (IsA raw_deal deal) (STV 1.0 0.9091)) +(: cnet_isa_25095ec084 (IsA raw_material material) (STV 1.0 0.9091)) +(: cnet_isa_bcdae694f5 (IsA raw_meat meat) (STV 1.0 0.9091)) +(: cnet_isa_9caee1f2da (IsA raw_milk milk) (STV 1.0 0.9091)) +(: cnet_isa_332de9e788 (IsA raw_recruit recruit) (STV 1.0 0.9091)) +(: cnet_isa_12c54d6845 (IsA raw_sienna sienna) (STV 1.0 0.9091)) +(: cnet_isa_1637d5851b (IsA raw_talent endowment) (STV 1.0 0.9091)) +(: cnet_isa_08f3aa96df (IsA raw_umber umber) (STV 1.0 0.9091)) +(: cnet_isa_d2ded31391 (IsA raw_vegetable vegetable) (STV 1.0 0.9091)) +(: cnet_isa_2f413010b6 (IsA raw_weather bad_weather) (STV 1.0 0.9091)) +(: cnet_isa_72c98fcf84 (IsA raw_wood wood) (STV 1.0 0.9091)) +(: cnet_isa_007baa5525 (IsA raw_wool wool) (STV 1.0 0.9091)) +(: cnet_isa_ff5f230ec4 (IsA raw_wound wound) (STV 1.0 0.9091)) +(: cnet_isa_eae5266ed9 (IsA rawhide hide) (STV 1.0 0.9091)) +(: cnet_isa_b3e6e07e06 (IsA rawness damp) (STV 1.0 0.9091)) +(: cnet_isa_9cb5ffc5fd (IsA ray flat_fish) (STV 1.0 0.9091)) +(: cnet_isa_02a8e9fb45 (IsA ray elasmobranch) (STV 1.0 0.9091)) +(: cnet_isa_1528b4200b (IsA ray spine) (STV 1.0 0.9091)) +(: cnet_isa_9f801a29f2 (IsA ray vector) (STV 1.0 0.9091)) +(: cnet_isa_b739f077ba (IsA ray pedicel) (STV 1.0 0.9091)) +(: cnet_isa_1670b854a1 (IsA ray_flower flower) (STV 1.0 0.9091)) +(: cnet_isa_d4178beb7c (IsA rayleigh_disk radiometer) (STV 1.0 0.9091)) +(: cnet_isa_80915d3e46 (IsA rayon fabric) (STV 1.0 0.9091)) +(: cnet_isa_a6ba1fb62b (IsA razing destruction) (STV 1.0 0.9091)) +(: cnet_isa_4574bfe863 (IsA razor edge_tool) (STV 1.0 0.9091)) +(: cnet_isa_3dbe7f0327 (IsA razor_clam clam) (STV 1.0 0.9091)) +(: cnet_isa_87c9c0a4c4 (IsA razor_edge edge) (STV 1.0 0.9091)) +(: cnet_isa_50bb5d1772 (IsA razor_fish wrasse) (STV 1.0 0.9091)) +(: cnet_isa_173ca7226e (IsA razorback swine) (STV 1.0 0.9091)) +(: cnet_isa_c2d11c128c (IsA razorbill auk) (STV 1.0 0.9091)) +(: cnet_isa_efe4ada685 (IsA razorblade blade) (STV 1.0 0.9091)) +(: cnet_isa_2bbdd79619 (IsA razzle_dazzle play) (STV 1.0 0.9091)) +(: cnet_isa_3b34948b12 (IsA re solfa_syllable) (STV 1.0 0.9091)) +(: cnet_isa_09fb9c9226 (IsA re_creation creation) (STV 1.0 0.9091)) +(: cnet_isa_bb764b7839 (IsA re_echo echo) (STV 1.0 0.9091)) +(: cnet_isa_61b07cfd00 (IsA re_establishment restoration) (STV 1.0 0.9091)) +(: cnet_isa_6ccf3b639f (IsA re_formation reconstruction) (STV 1.0 0.9091)) +(: cnet_isa_b010796e7a (IsA re_introduction proposal) (STV 1.0 0.9091)) +(: cnet_isa_39025c7458 (IsA rea_silvia vestal_virgin) (STV 1.0 0.9091)) +(: cnet_isa_184380dc89 (IsA reach motion) (STV 1.0 0.9091)) +(: cnet_isa_daf01a22e4 (IsA reactance electrical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_74c10001de (IsA reactant chemical) (STV 1.0 0.9091)) +(: cnet_isa_d0c3b6aa4c (IsA reaction bodily_process) (STV 1.0 0.9091)) +(: cnet_isa_0756c9958c (IsA reaction resistance) (STV 1.0 0.9091)) +(: cnet_isa_b86e6e2f57 (IsA reaction conservatism) (STV 1.0 0.9091)) +(: cnet_isa_cb39daece1 (IsA reaction idea) (STV 1.0 0.9091)) +(: cnet_isa_e79936f4df (IsA reaction force) (STV 1.0 0.9091)) +(: cnet_isa_7b9b0cacbe (IsA reaction response) (STV 1.0 0.9091)) +(: cnet_isa_d41407ae4e (IsA reaction_formation defense_mechanism) (STV 1.0 0.9091)) +(: cnet_isa_c22cae1470 (IsA reaction_propulsion propulsion) (STV 1.0 0.9091)) +(: cnet_isa_f590716876 (IsA reaction_propulsion_engine engine) (STV 1.0 0.9091)) +(: cnet_isa_bebd53d7b1 (IsA reaction_time time_interval) (STV 1.0 0.9091)) +(: cnet_isa_4462905293 (IsA reaction_turbine turbine) (STV 1.0 0.9091)) +(: cnet_isa_046fb14c24 (IsA reactionary conservative) (STV 1.0 0.9091)) +(: cnet_isa_07e41996ec (IsA reactionism political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_5d93a40d40 (IsA reactivity susceptibility) (STV 1.0 0.9091)) +(: cnet_isa_f60a9e0e5c (IsA reactor electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_f97932e5b1 (IsA read publication) (STV 1.0 0.9091)) +(: cnet_isa_8c5a53a46a (IsA read_method_of_childbirth natural_childbirth) (STV 1.0 0.9091)) +(: cnet_isa_46a8647138 (IsA read_only_file computer_file) (STV 1.0 0.9091)) +(: cnet_isa_db86bd54f6 (IsA read_only_memory memory) (STV 1.0 0.9091)) +(: cnet_isa_4f84d6580b (IsA read_only_memory_chip memory_chip) (STV 1.0 0.9091)) +(: cnet_isa_c56dbc8fdf (IsA read_out electronic_device) (STV 1.0 0.9091)) +(: cnet_isa_8d1ffa7bab (IsA read_out output_signal) (STV 1.0 0.9091)) +(: cnet_isa_95338dae91 (IsA read_write_head coil) (STV 1.0 0.9091)) +(: cnet_isa_ace49ae57e (IsA readability intelligibility) (STV 1.0 0.9091)) +(: cnet_isa_e31bb88c2b (IsA reader textbook) (STV 1.0 0.9091)) +(: cnet_isa_9d41870a7c (IsA reader literate) (STV 1.0 0.9091)) +(: cnet_isa_765877e1f1 (IsA reader scholar) (STV 1.0 0.9091)) +(: cnet_isa_eb53e775e8 (IsA readership audience) (STV 1.0 0.9091)) +(: cnet_isa_152c007f75 (IsA readiness willingness) (STV 1.0 0.9091)) +(: cnet_isa_29dd3fa586 (IsA readiness state) (STV 1.0 0.9091)) +(: cnet_isa_c0a8203e66 (IsA reading activity) (STV 1.0 0.9659)) +(: cnet_isa_ff2a5fc295 (IsA reading good_way_to_learn) (STV 1.0 0.9454)) +(: cnet_isa_17644f0020 (IsA reading one_way_of_learning) (STV 1.0 0.9091)) +(: cnet_isa_81bf4e6e90 (IsA reading one_way_to_learn) (STV 1.0 0.9091)) +(: cnet_isa_54dfbfd384 (IsA reading measurement) (STV 1.0 0.9091)) +(: cnet_isa_6468f3f920 (IsA reading datum) (STV 1.0 0.9091)) +(: cnet_isa_3a0a4bc03b (IsA reading linguistic_process) (STV 1.0 0.9091)) +(: cnet_isa_7ddcfadf30 (IsA reading interpretation) (STV 1.0 0.9091)) +(: cnet_isa_40f3161273 (IsA reading written_communication) (STV 1.0 0.9091)) +(: cnet_isa_aaf00a74df (IsA reading_assignment lesson) (STV 1.0 0.9091)) +(: cnet_isa_2d87205472 (IsA reading_book pleasant_human_activity) (STV 1.0 0.9091)) +(: cnet_isa_e76276a438 (IsA reading_clinic clinic) (STV 1.0 0.9091)) +(: cnet_isa_f07e24693b (IsA reading_lamp lamp) (STV 1.0 0.9091)) +(: cnet_isa_8c33b915fb (IsA reading_program course_of_study) (STV 1.0 0.9091)) +(: cnet_isa_357943e97e (IsA reading_room room) (STV 1.0 0.9091)) +(: cnet_isa_f5e62314c7 (IsA reading_teacher teacher) (STV 1.0 0.9091)) +(: cnet_isa_fdda3f46e5 (IsA readjustment adjustment) (STV 1.0 0.9091)) +(: cnet_isa_2a93f4679b (IsA readmission admission) (STV 1.0 0.9091)) +(: cnet_isa_9187ed459f (IsA readout information) (STV 1.0 0.9091)) +(: cnet_isa_83dbf5aa62 (IsA ready readiness) (STV 1.0 0.9091)) +(: cnet_isa_efae061b24 (IsA ready_cash cash) (STV 1.0 0.9091)) +(: cnet_isa_e97654457a (IsA ready_made artifact) (STV 1.0 0.9091)) +(: cnet_isa_662c37c00d (IsA ready_mix convenience_food) (STV 1.0 0.9091)) +(: cnet_isa_0466a2bf50 (IsA ready_mix mix) (STV 1.0 0.9091)) +(: cnet_isa_1172aee2b2 (IsA ready_to_wear clothing) (STV 1.0 0.9091)) +(: cnet_isa_88936e5551 (IsA reaffiliation affiliation) (STV 1.0 0.9091)) +(: cnet_isa_01fc6af37c (IsA reagan_administration executive) (STV 1.0 0.9091)) +(: cnet_isa_7c5da189fb (IsA reagent chemical_agent) (STV 1.0 0.9091)) +(: cnet_isa_7c836a4340 (IsA reagin immunoglobulin_e) (STV 1.0 0.9091)) +(: cnet_isa_65433eaf73 (IsA real coin) (STV 1.0 0.9091)) +(: cnet_isa_bb7636c4bc (IsA real brazilian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_2744ba70ef (IsA real_estate_business commercial_enterprise) (STV 1.0 0.9091)) +(: cnet_isa_c947d60aca (IsA real_estate_investment_trust investment_company) (STV 1.0 0.9091)) +(: cnet_isa_2ec3af7f3f (IsA real_estate_loan loan) (STV 1.0 0.9091)) +(: cnet_isa_1b4ff71456 (IsA real_gross_national_product gross_national_product) (STV 1.0 0.9091)) +(: cnet_isa_3f8285f8bd (IsA real_matrix matrix) (STV 1.0 0.9091)) +(: cnet_isa_5a4e150337 (IsA real_mccoy authenticity) (STV 1.0 0.9091)) +(: cnet_isa_b9fb454d38 (IsA real_number complex_number) (STV 1.0 0.9091)) +(: cnet_isa_b7071deb59 (IsA real_presence religious_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_da1cc6924c (IsA real_property property) (STV 1.0 0.9091)) +(: cnet_isa_3587cf1258 (IsA real_storage memory) (STV 1.0 0.9091)) +(: cnet_isa_85f37dded1 (IsA real_time time_period) (STV 1.0 0.9091)) +(: cnet_isa_682633c1e9 (IsA real_time_processing data_processing) (STV 1.0 0.9091)) +(: cnet_isa_52e707a0d1 (IsA real_world world) (STV 1.0 0.9091)) +(: cnet_isa_58a517c307 (IsA realgar mineral) (STV 1.0 0.9091)) +(: cnet_isa_70ca20dfef (IsA realism practicality) (STV 1.0 0.9091)) +(: cnet_isa_cf13b927f8 (IsA realism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_8edd427624 (IsA realist painter) (STV 1.0 0.9091)) +(: cnet_isa_39e1c3e267 (IsA realist person) (STV 1.0 0.9091)) +(: cnet_isa_a59c3dbfb2 (IsA realist philosopher) (STV 1.0 0.9091)) +(: cnet_isa_20d5ad477c (IsA reality materiality) (STV 1.0 0.9091)) +(: cnet_isa_3f2bc2faf0 (IsA reality actuality) (STV 1.0 0.9091)) +(: cnet_isa_7ec24a2e21 (IsA reality_check juncture) (STV 1.0 0.9091)) +(: cnet_isa_cfd93e4264 (IsA reality_principle principle) (STV 1.0 0.9091)) +(: cnet_isa_83954c4a6a (IsA realization composing) (STV 1.0 0.9091)) +(: cnet_isa_010b8da824 (IsA realization consummation) (STV 1.0 0.9091)) +(: cnet_isa_2c385a222e (IsA realization creating_by_mental_act) (STV 1.0 0.9091)) +(: cnet_isa_37f367e442 (IsA realization sale) (STV 1.0 0.9091)) +(: cnet_isa_ae9631fa59 (IsA realization understanding) (STV 1.0 0.9091)) +(: cnet_isa_108c66e8ba (IsA realization musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_46e38c9af2 (IsA reallocation allotment) (STV 1.0 0.9091)) +(: cnet_isa_bc38b720e5 (IsA reallotment allotment) (STV 1.0 0.9091)) +(: cnet_isa_defcaa875c (IsA realpolitik politic) (STV 1.0 0.9091)) +(: cnet_isa_685cda6ff4 (IsA realtor agent) (STV 1.0 0.9091)) +(: cnet_isa_b2392d68d3 (IsA realtor realtor) (STV 1.0 0.9091)) +(: cnet_isa_c8e6025b56 (IsA ream definite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_9c5a58c24b (IsA ream large_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_fd41ab99af (IsA reamer drill) (STV 1.0 0.9091)) +(: cnet_isa_8320ed08b5 (IsA reamer squeezer) (STV 1.0 0.9091)) +(: cnet_isa_7c63a3e571 (IsA reappearance appearance) (STV 1.0 0.9091)) +(: cnet_isa_041e9a7607 (IsA reappraisal appraisal) (STV 1.0 0.9091)) +(: cnet_isa_4b3200c301 (IsA rear side) (STV 1.0 0.9091)) +(: cnet_isa_90a8d34366 (IsA rear formation) (STV 1.0 0.9091)) +(: cnet_isa_7f404efc01 (IsA rear_admiral flag_officer) (STV 1.0 0.9091)) +(: cnet_isa_709c5965b4 (IsA rear_window car_window) (STV 1.0 0.9091)) +(: cnet_isa_de8e52f01a (IsA rearguard detachment) (STV 1.0 0.9091)) +(: cnet_isa_0b6da86d19 (IsA rearmament arming) (STV 1.0 0.9091)) +(: cnet_isa_b2162876f2 (IsA rearrangement arrangement) (STV 1.0 0.9091)) +(: cnet_isa_61609e1ee1 (IsA rearview_mirror car_mirror) (STV 1.0 0.9091)) +(: cnet_isa_39f8bac514 (IsA rearward rear) (STV 1.0 0.9091)) +(: cnet_isa_cf5941a409 (IsA reason fact) (STV 1.0 0.9091)) +(: cnet_isa_19b2d0ab6f (IsA reason faculty) (STV 1.0 0.9091)) +(: cnet_isa_ecc20c6794 (IsA reason explanation) (STV 1.0 0.9091)) +(: cnet_isa_6a1723421f (IsA reason rational_motive) (STV 1.0 0.9091)) +(: cnet_isa_b07d8d8806 (IsA reasonableness inexpensiveness) (STV 1.0 0.9091)) +(: cnet_isa_0707416ebe (IsA reasonableness moderation) (STV 1.0 0.9091)) +(: cnet_isa_29799edc52 (IsA reasonableness plausibility) (STV 1.0 0.9091)) +(: cnet_isa_7717aebac9 (IsA reasonableness wisdom) (STV 1.0 0.9091)) +(: cnet_isa_5d1cf9ce43 (IsA reasoner thinker) (STV 1.0 0.9091)) +(: cnet_isa_5d1832eaa9 (IsA reasoning thinking) (STV 1.0 0.9091)) +(: cnet_isa_87fb86c817 (IsA reassembly reconstruction) (STV 1.0 0.9091)) +(: cnet_isa_89255a8fc3 (IsA reassertion avowal) (STV 1.0 0.9091)) +(: cnet_isa_e66fffdc3c (IsA reassignment assignment) (STV 1.0 0.9091)) +(: cnet_isa_fb4c1b63e3 (IsA reassurance support) (STV 1.0 0.9091)) +(: cnet_isa_30a8cba9d7 (IsA reaumur_scale temperature_scale) (STV 1.0 0.9091)) +(: cnet_isa_73a339e28e (IsA reaumur_thermometer thermometer) (STV 1.0 0.9091)) +(: cnet_isa_c5d031b730 (IsA rebate refund) (STV 1.0 0.9091)) +(: cnet_isa_4f81113f7e (IsA rebellion conflict) (STV 1.0 0.9091)) +(: cnet_isa_fadd90505f (IsA rebellion resistance) (STV 1.0 0.9091)) +(: cnet_isa_d5b9b126ad (IsA rebirth revival) (STV 1.0 0.9091)) +(: cnet_isa_f0797e6c04 (IsA rebound catch) (STV 1.0 0.9091)) +(: cnet_isa_ece7dab0aa (IsA rebound reaction) (STV 1.0 0.9091)) +(: cnet_isa_ed8e598564 (IsA rebound_tenderness tenderness) (STV 1.0 0.9091)) +(: cnet_isa_ee354831e7 (IsA reboxetine antidepressant) (STV 1.0 0.9091)) +(: cnet_isa_b03720af02 (IsA rebozo scarf) (STV 1.0 0.9091)) +(: cnet_isa_144c13ea34 (IsA rebroadcast broadcast) (STV 1.0 0.9091)) +(: cnet_isa_2d662708fc (IsA rebuff discourtesy) (STV 1.0 0.9091)) +(: cnet_isa_9033b3ff87 (IsA rebuff rejection) (STV 1.0 0.9091)) +(: cnet_isa_bab58475a0 (IsA rebuilding reconstruction) (STV 1.0 0.9091)) +(: cnet_isa_811f3cf6f2 (IsA rebuke criticism) (STV 1.0 0.9091)) +(: cnet_isa_ce52978304 (IsA reburying burying) (STV 1.0 0.9091)) +(: cnet_isa_c8967f7ad2 (IsA rebus problem) (STV 1.0 0.9091)) +(: cnet_isa_f08e889f42 (IsA rebuttal refutation) (STV 1.0 0.9091)) +(: cnet_isa_b2d914aa1f (IsA rebutter pleading) (STV 1.0 0.9091)) +(: cnet_isa_2d64854f12 (IsA rebutter debater) (STV 1.0 0.9091)) +(: cnet_isa_edc5fbd840 (IsA recalculation calculation) (STV 1.0 0.9091)) +(: cnet_isa_2c4b16934a (IsA recall abrogation) (STV 1.0 0.9091)) +(: cnet_isa_af382af56c (IsA recall memory) (STV 1.0 0.9091)) +(: cnet_isa_e45498b0e1 (IsA recall bugle_call) (STV 1.0 0.9091)) +(: cnet_isa_d5170e24b6 (IsA recall call) (STV 1.0 0.9091)) +(: cnet_isa_ae1f7639da (IsA recall request) (STV 1.0 0.9091)) +(: cnet_isa_8181760f54 (IsA recapitulation capitulation) (STV 1.0 0.9091)) +(: cnet_isa_c85063ae29 (IsA recapitulation composing) (STV 1.0 0.9091)) +(: cnet_isa_744afb6419 (IsA recapitulation section) (STV 1.0 0.9091)) +(: cnet_isa_c48b66579b (IsA recapture recovery) (STV 1.0 0.9091)) +(: cnet_isa_53467251b6 (IsA recapture seizure) (STV 1.0 0.9091)) +(: cnet_isa_8c8091621c (IsA recce reconnaissance) (STV 1.0 0.9091)) +(: cnet_isa_9288e4e890 (IsA receding withdrawal) (STV 1.0 0.9091)) +(: cnet_isa_f2d45c6bad (IsA receding disappearance) (STV 1.0 0.9091)) +(: cnet_isa_7b3f024ac7 (IsA receipt acknowledgment) (STV 1.0 0.9091)) +(: cnet_isa_9083f26bd8 (IsA receivable asset) (STV 1.0 0.9091)) +(: cnet_isa_0ea9e9f912 (IsA received_pronunciation english) (STV 1.0 0.9091)) +(: cnet_isa_168f61b31d (IsA received_pronunciation pronunciation) (STV 1.0 0.9091)) +(: cnet_isa_52794ef76e (IsA receiver set) (STV 1.0 0.9091)) +(: cnet_isa_06bbbc285d (IsA receiver football_player) (STV 1.0 0.9091)) +(: cnet_isa_61bc38ba0d (IsA receiver tennis_player) (STV 1.0 0.9091)) +(: cnet_isa_218ffb1548 (IsA receiver_creditor_relation fiduciary_relation) (STV 1.0 0.9091)) +(: cnet_isa_d4e7fa85bc (IsA receivership position) (STV 1.0 0.9091)) +(: cnet_isa_5c1e063956 (IsA receivership proceeding) (STV 1.0 0.9091)) +(: cnet_isa_69a9c086cf (IsA receivership state) (STV 1.0 0.9091)) +(: cnet_isa_05d2872d1c (IsA recency newness) (STV 1.0 0.9091)) +(: cnet_isa_aca2b89ef6 (IsA recency pastness) (STV 1.0 0.9091)) +(: cnet_isa_1d4ea13ca7 (IsA receptacle container) (STV 1.0 0.9091)) +(: cnet_isa_637720047e (IsA receptacle fitting) (STV 1.0 0.9091)) +(: cnet_isa_46c1c0fc30 (IsA receptacle plant_part) (STV 1.0 0.9091)) +(: cnet_isa_fba1668116 (IsA reception acquiring) (STV 1.0 0.9091)) +(: cnet_isa_635bbb0a99 (IsA reception catch) (STV 1.0 0.9091)) +(: cnet_isa_739a959e00 (IsA reception broadcasting) (STV 1.0 0.9091)) +(: cnet_isa_7e8268556f (IsA reception greeting) (STV 1.0 0.9091)) +(: cnet_isa_3a6cb903df (IsA reception party) (STV 1.0 0.9091)) +(: cnet_isa_8b44122e1a (IsA reception_desk counter) (STV 1.0 0.9091)) +(: cnet_isa_61dfd17f62 (IsA reception_line queue) (STV 1.0 0.9091)) +(: cnet_isa_2ae186e1c4 (IsA reception_room room) (STV 1.0 0.9091)) +(: cnet_isa_f41a4978b5 (IsA receptionist secretary) (STV 1.0 0.9091)) +(: cnet_isa_ea6fca6a0b (IsA receptiveness willingness) (STV 1.0 0.9091)) +(: cnet_isa_04dfe97797 (IsA receptor structure) (STV 1.0 0.9091)) +(: cnet_isa_08b1438d83 (IsA recess enclosure) (STV 1.0 0.9091)) +(: cnet_isa_2c3587f641 (IsA recess concave_shape) (STV 1.0 0.9091)) +(: cnet_isa_cdce3d4bb8 (IsA recession cession) (STV 1.0 0.9091)) +(: cnet_isa_579638325f (IsA recession procession) (STV 1.0 0.9091)) +(: cnet_isa_adcba14436 (IsA recession economic_condition) (STV 1.0 0.9091)) +(: cnet_isa_4e7492e1e2 (IsA recessional hymn) (STV 1.0 0.9091)) +(: cnet_isa_f1cd2cc18d (IsA recessive_allele allele) (STV 1.0 0.9091)) +(: cnet_isa_b61a06e067 (IsA recessive_gene gene) (STV 1.0 0.9091)) +(: cnet_isa_d38831a7fa (IsA rechauffe cuisine) (STV 1.0 0.9091)) +(: cnet_isa_53390b0292 (IsA recidivism backsliding) (STV 1.0 0.9091)) +(: cnet_isa_c41074903a (IsA recidivist criminal) (STV 1.0 0.9091)) +(: cnet_isa_1a364279c5 (IsA recidivist wrongdoer) (STV 1.0 0.9091)) +(: cnet_isa_1c7ec89850 (IsA recipe set_of_instruction) (STV 1.0 0.9339)) +(: cnet_isa_2de4ff8bee (IsA recipe direction) (STV 1.0 0.9091)) +(: cnet_isa_16594888e2 (IsA recipient acquirer) (STV 1.0 0.9091)) +(: cnet_isa_24e155b961 (IsA recipient_role semantic_role) (STV 1.0 0.9091)) +(: cnet_isa_743b5c4052 (IsA reciprocal reciprocality) (STV 1.0 0.9091)) +(: cnet_isa_61656f0c36 (IsA reciprocal_cross hybridization) (STV 1.0 0.9091)) +(: cnet_isa_ad8a2c8ed9 (IsA reciprocal_inhibition behavior_therapy) (STV 1.0 0.9091)) +(: cnet_isa_a091b70273 (IsA reciprocal_pronoun pronoun) (STV 1.0 0.9091)) +(: cnet_isa_840183ea59 (IsA reciprocality relation) (STV 1.0 0.9091)) +(: cnet_isa_45ec218730 (IsA reciprocating_engine internal_combustion_engine) (STV 1.0 0.9091)) +(: cnet_isa_5c326d8700 (IsA reciprocation motion) (STV 1.0 0.9091)) +(: cnet_isa_a0997a058a (IsA reciprocation return) (STV 1.0 0.9091)) +(: cnet_isa_752336a3fb (IsA reciprocity interchange) (STV 1.0 0.9091)) +(: cnet_isa_aaac393379 (IsA recirculation circulation) (STV 1.0 0.9091)) +(: cnet_isa_cfe68f0fe2 (IsA recission cancellation) (STV 1.0 0.9091)) +(: cnet_isa_dec8bf843d (IsA recital history) (STV 1.0 0.9091)) +(: cnet_isa_5d8c4c662c (IsA recital performance) (STV 1.0 0.9091)) +(: cnet_isa_f99ca3abe7 (IsA recital statement) (STV 1.0 0.9091)) +(: cnet_isa_51617636f1 (IsA recitalist soloist) (STV 1.0 0.9091)) +(: cnet_isa_a3db52b242 (IsA recitation matter) (STV 1.0 0.9091)) +(: cnet_isa_0286427600 (IsA recitation public_speaking) (STV 1.0 0.9091)) +(: cnet_isa_2b18b4b6c3 (IsA recitative passage) (STV 1.0 0.9091)) +(: cnet_isa_ad06c19608 (IsA reciter speaker) (STV 1.0 0.9091)) +(: cnet_isa_fa28a06e3e (IsA recklessness unthoughtfulness) (STV 1.0 0.9091)) +(: cnet_isa_ca44123419 (IsA reckoner handbook) (STV 1.0 0.9091)) +(: cnet_isa_ae90dfbdcb (IsA reckoning bill) (STV 1.0 0.9091)) +(: cnet_isa_cdaefa77e2 (IsA reclamation recovery) (STV 1.0 0.9091)) +(: cnet_isa_7534744bf4 (IsA reclamation rescue) (STV 1.0 0.9091)) +(: cnet_isa_1896c32caf (IsA reclamation restoration) (STV 1.0 0.9091)) +(: cnet_isa_ff9941084b (IsA reclassification categorization) (STV 1.0 0.9091)) +(: cnet_isa_94c8b66e94 (IsA recliner armchair) (STV 1.0 0.9091)) +(: cnet_isa_af0bdb9383 (IsA reclining motion) (STV 1.0 0.9091)) +(: cnet_isa_869e4273cb (IsA reclusiveness aloneness) (STV 1.0 0.9091)) +(: cnet_isa_6e173cadc9 (IsA recoding cryptography) (STV 1.0 0.9091)) +(: cnet_isa_ac519ac012 (IsA recognition appointment) (STV 1.0 0.9091)) +(: cnet_isa_f651e69347 (IsA recognition organic_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_876775f601 (IsA recognition credence) (STV 1.0 0.9091)) +(: cnet_isa_49bb169cc8 (IsA recognition memory) (STV 1.0 0.9091)) +(: cnet_isa_fef3505ff7 (IsA recognition approval) (STV 1.0 0.9091)) +(: cnet_isa_5509baaf93 (IsA recognition diplomacy) (STV 1.0 0.9091)) +(: cnet_isa_abb2ffd83d (IsA recognition acceptance) (STV 1.0 0.9091)) +(: cnet_isa_c7f5df1f28 (IsA recognizance security) (STV 1.0 0.9091)) +(: cnet_isa_b6c132f38a (IsA recoil movement) (STV 1.0 0.9091)) +(: cnet_isa_a15b41bac6 (IsA recollection memory) (STV 1.0 0.9091)) +(: cnet_isa_589b1611bb (IsA recombinant cell) (STV 1.0 0.9091)) +(: cnet_isa_48240134c3 (IsA recombinant organism) (STV 1.0 0.9091)) +(: cnet_isa_961472f9f9 (IsA recombinant_deoxyribonucleic_acid deoxyribonucleic_acid) (STV 1.0 0.9091)) +(: cnet_isa_230face4e5 (IsA recombinant_human_insulin insulin) (STV 1.0 0.9091)) +(: cnet_isa_601da82685 (IsA recombinant_protein protein) (STV 1.0 0.9091)) +(: cnet_isa_d0ca9121a7 (IsA recombination combining) (STV 1.0 0.9091)) +(: cnet_isa_76681b00b1 (IsA recommendation characteristic) (STV 1.0 0.9091)) +(: cnet_isa_af259031bd (IsA recommendation advice) (STV 1.0 0.9091)) +(: cnet_isa_df2bc58925 (IsA recommendation praise) (STV 1.0 0.9091)) +(: cnet_isa_c0e1068905 (IsA recompense correction) (STV 1.0 0.9091)) +(: cnet_isa_4bc9d0a757 (IsA recompense payment) (STV 1.0 0.9091)) +(: cnet_isa_f806665c1d (IsA reconciliation cooperation) (STV 1.0 0.9091)) +(: cnet_isa_0df95c47ed (IsA reconciliation equalization) (STV 1.0 0.9091)) +(: cnet_isa_ee9662b1b8 (IsA reconditeness wisdom) (STV 1.0 0.9091)) +(: cnet_isa_ed8e10cb97 (IsA reconnaissance intelligence) (STV 1.0 0.9091)) +(: cnet_isa_879759497d (IsA reconnaissance_by_fire reconnaissance) (STV 1.0 0.9091)) +(: cnet_isa_47ced55222 (IsA reconnaissance_in_force reconnaissance) (STV 1.0 0.9091)) +(: cnet_isa_1814b91f30 (IsA reconnaissance_plane airplane) (STV 1.0 0.9091)) +(: cnet_isa_b18f621600 (IsA reconnaissance_plane warplane) (STV 1.0 0.9091)) +(: cnet_isa_956500436b (IsA reconnaissance_vehicle military_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_bcc9b7dec1 (IsA reconnaissance_vehicle self_propelled_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_b936861034 (IsA reconsideration reversal) (STV 1.0 0.9091)) +(: cnet_isa_93d17f1c7d (IsA reconsideration consideration) (STV 1.0 0.9091)) +(: cnet_isa_742027616f (IsA reconstruction repair) (STV 1.0 0.9091)) +(: cnet_isa_2f67d3bb50 (IsA reconstruction recall) (STV 1.0 0.9091)) +(: cnet_isa_1ec3b899e4 (IsA reconstruction interpretation) (STV 1.0 0.9091)) +(: cnet_isa_7cb4c4cbb3 (IsA record accomplishment) (STV 1.0 0.9091)) +(: cnet_isa_04032ca386 (IsA record attainment) (STV 1.0 0.9091)) +(: cnet_isa_3272055825 (IsA record fact) (STV 1.0 0.9091)) +(: cnet_isa_0dd929d1ae (IsA record document) (STV 1.0 0.9091)) +(: cnet_isa_61f9c7e50c (IsA record evidence) (STV 1.0 0.9091)) +(: cnet_isa_5a33d865d5 (IsA record number) (STV 1.0 0.9091)) +(: cnet_isa_e917693246 (IsA record_breaker champion) (STV 1.0 0.9091)) +(: cnet_isa_66b0523be1 (IsA record_changer mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_f670c4a79d (IsA record_company company) (STV 1.0 0.9091)) +(: cnet_isa_2593890f65 (IsA record_jacket jacket) (STV 1.0 0.9091)) +(: cnet_isa_2cff448abc (IsA record_player machine) (STV 1.0 0.9091)) +(: cnet_isa_bc8afa524e (IsA record_sleeve sleeve) (STV 1.0 0.9091)) +(: cnet_isa_084e4c2b58 (IsA recorder equipment) (STV 1.0 0.9091)) +(: cnet_isa_2f015732c0 (IsA recorder judge) (STV 1.0 0.9091)) +(: cnet_isa_21caa7831e (IsA recorder_player musician) (STV 1.0 0.9091)) +(: cnet_isa_3628614c5e (IsA recording creating_from_raw_material) (STV 1.0 0.9091)) +(: cnet_isa_60c685b45e (IsA recording memory_device) (STV 1.0 0.9091)) +(: cnet_isa_22d91bc9ea (IsA recording signal) (STV 1.0 0.9091)) +(: cnet_isa_f0605b08d3 (IsA recording_studio studio) (STV 1.0 0.9091)) +(: cnet_isa_4796da7b3e (IsA recording_system audio_system) (STV 1.0 0.9091)) +(: cnet_isa_9c83ce1c15 (IsA recount count) (STV 1.0 0.9091)) +(: cnet_isa_b835abccea (IsA recourse aid) (STV 1.0 0.9091)) +(: cnet_isa_d7fc34557e (IsA recourse resource) (STV 1.0 0.9091)) +(: cnet_isa_30babc9175 (IsA recovery act) (STV 1.0 0.9091)) +(: cnet_isa_9b4f64969f (IsA recovery improvement) (STV 1.0 0.9091)) +(: cnet_isa_bcecf2a611 (IsA recovery_room hospital_room) (STV 1.0 0.9091)) +(: cnet_isa_322fa4e436 (IsA recreation_room room) (STV 1.0 0.9091)) +(: cnet_isa_23954bd12b (IsA recreational_drug narcotic) (STV 1.0 0.9091)) +(: cnet_isa_da950f0a3d (IsA recreational_facility facility) (STV 1.0 0.9091)) +(: cnet_isa_23ee0a6e7d (IsA recreational_vehicle self_propelled_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_5510e88c06 (IsA recrimination accusation) (STV 1.0 0.9091)) +(: cnet_isa_ac0d830bc9 (IsA recrudescence outbreak) (STV 1.0 0.9091)) +(: cnet_isa_b38fe596b8 (IsA recruit enlisted_man) (STV 1.0 0.9091)) +(: cnet_isa_2f2190defa (IsA recruit newcomer) (STV 1.0 0.9091)) +(: cnet_isa_12636722c9 (IsA recruiter official) (STV 1.0 0.9091)) +(: cnet_isa_9de1cebac5 (IsA recruiter supplier) (STV 1.0 0.9091)) +(: cnet_isa_7c107f3ce2 (IsA recruiting_sergeant recruiter) (STV 1.0 0.9091)) +(: cnet_isa_0a7613c98a (IsA recruiting_sergeant sergeant) (STV 1.0 0.9091)) +(: cnet_isa_2f0d45f2c7 (IsA recruitment accomplishment) (STV 1.0 0.9091)) +(: cnet_isa_5bf07fca1b (IsA rectal_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_2c8cd07d53 (IsA rectangle figure) (STV 1.0 0.9091)) +(: cnet_isa_575f569368 (IsA rectangle shape) (STV 1.0 0.9091)) +(: cnet_isa_b501fab493 (IsA rectangle parallelogram) (STV 1.0 0.9091)) +(: cnet_isa_85c555e03f (IsA rectangularity angularity) (STV 1.0 0.9091)) +(: cnet_isa_ffec756d9d (IsA rectification determination) (STV 1.0 0.9091)) +(: cnet_isa_f59c161d47 (IsA rectification refining) (STV 1.0 0.9091)) +(: cnet_isa_214e6b5dce (IsA rectification conversion) (STV 1.0 0.9091)) +(: cnet_isa_48faee43c6 (IsA rectifier electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_2b8b25943b (IsA rectifier person) (STV 1.0 0.9091)) +(: cnet_isa_c1dec16b77 (IsA recto page) (STV 1.0 0.9091)) +(: cnet_isa_c304bb792e (IsA rectocele colpocele) (STV 1.0 0.9091)) +(: cnet_isa_44abb59752 (IsA rectorship position) (STV 1.0 0.9091)) +(: cnet_isa_9e02f7fb4a (IsA rectum body_part) (STV 1.0 0.9091)) +(: cnet_isa_ce39139467 (IsA rectus muscle) (STV 1.0 0.9091)) +(: cnet_isa_ae6195f685 (IsA recurrence repeat) (STV 1.0 0.9091)) +(: cnet_isa_95d471f8af (IsA recursion rule) (STV 1.0 0.9091)) +(: cnet_isa_a2a267f85b (IsA recursive_definition definition) (STV 1.0 0.9091)) +(: cnet_isa_ecfff26953 (IsA recursive_routine routine) (STV 1.0 0.9091)) +(: cnet_isa_63e3ff228f (IsA recurvirostra bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_e3c3ac9ac8 (IsA recurvirostridae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_328aea31c2 (IsA recusancy direct_action) (STV 1.0 0.9091)) +(: cnet_isa_3c3b141c26 (IsA recusation disqualification) (STV 1.0 0.9091)) +(: cnet_isa_de97796d05 (IsA recusation objection) (STV 1.0 0.9091)) +(: cnet_isa_d3d015119e (IsA recycling use) (STV 1.0 0.9091)) +(: cnet_isa_5127615928 (IsA recycling material) (STV 1.0 0.9091)) +(: cnet_isa_285655c5d1 (IsA recycling_bin bin) (STV 1.0 0.9091)) +(: cnet_isa_b53670355a (IsA recycling_plant plant) (STV 1.0 0.9091)) +(: cnet_isa_c4b3359a8a (IsA red color) (STV 1.0 0.9572)) +(: cnet_isa_94a5f2620d (IsA red colour) (STV 1.0 0.9454)) +(: cnet_isa_b05b7538f4 (IsA red primary_color) (STV 1.0 0.9091)) +(: cnet_isa_59889a9143 (IsA red primary_colour) (STV 1.0 0.9339)) +(: cnet_isa_14d7785909 (IsA red chromatic_color) (STV 1.0 0.9091)) +(: cnet_isa_eba5e1b153 (IsA red_admiral nymphalid) (STV 1.0 0.9091)) +(: cnet_isa_e9a7687fce (IsA red_alder alder) (STV 1.0 0.9091)) +(: cnet_isa_0f55531020 (IsA red_alert alert) (STV 1.0 0.9091)) +(: cnet_isa_03e7d257fe (IsA red_algae alga) (STV 1.0 0.9091)) +(: cnet_isa_94cef63e3a (IsA red_angel_s_trumpet shrub) (STV 1.0 0.9091)) +(: cnet_isa_71e5aeb285 (IsA red_ash ash) (STV 1.0 0.9091)) +(: cnet_isa_7e2ba1360f (IsA red_backed_mouse vole) (STV 1.0 0.9091)) +(: cnet_isa_7e42ac5d1c (IsA red_backed_sandpiper sandpiper) (STV 1.0 0.9091)) +(: cnet_isa_34cdfee0d8 (IsA red_baneberry baneberry) (STV 1.0 0.9091)) +(: cnet_isa_93c26ffda2 (IsA red_bat vespertilian_bat) (STV 1.0 0.9091)) +(: cnet_isa_c5554848f0 (IsA red_beech angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_d8b85a9db5 (IsA red_bellied_snake colubrid_snake) (STV 1.0 0.9091)) +(: cnet_isa_fa456e55ff (IsA red_bellied_terrapin turtle) (STV 1.0 0.9091)) +(: cnet_isa_435475b2a5 (IsA red_blood_cell blood_cell) (STV 1.0 0.9091)) +(: cnet_isa_a90f9aac19 (IsA red_brass brass) (STV 1.0 0.9091)) +(: cnet_isa_efebba3ea6 (IsA red_breasted_merganser merganser) (STV 1.0 0.9091)) +(: cnet_isa_e74713bb7c (IsA red_breasted_nuthatch nuthatch) (STV 1.0 0.9091)) +(: cnet_isa_1db8a164ac (IsA red_breasted_sapsucker sapsucker) (STV 1.0 0.9091)) +(: cnet_isa_b58858f05c (IsA red_breasted_snipe dowitcher) (STV 1.0 0.9091)) +(: cnet_isa_ef81975e41 (IsA red_bryony bryony) (STV 1.0 0.9091)) +(: cnet_isa_aeb78f8ab5 (IsA red_buckeye horse_chestnut) (STV 1.0 0.9091)) +(: cnet_isa_afb4cab0be (IsA red_cabbage head_cabbage) (STV 1.0 0.9091)) +(: cnet_isa_057700b028 (IsA red_campion silene) (STV 1.0 0.9091)) +(: cnet_isa_de0fc1c811 (IsA red_carpet rug) (STV 1.0 0.9091)) +(: cnet_isa_4595d97082 (IsA red_cedar cedar) (STV 1.0 0.9091)) +(: cnet_isa_422c4cbd47 (IsA red_clay clay) (STV 1.0 0.9091)) +(: cnet_isa_693144764e (IsA red_clay mineral) (STV 1.0 0.9091)) +(: cnet_isa_a3620e82d8 (IsA red_clintonia clintonia) (STV 1.0 0.9091)) +(: cnet_isa_b95c4059a4 (IsA red_clover clover) (STV 1.0 0.9091)) +(: cnet_isa_5ccf07e7ba (IsA red_coral gorgonian) (STV 1.0 0.9091)) +(: cnet_isa_5d149f2534 (IsA red_cross nongovernmental_organization) (STV 1.0 0.9091)) +(: cnet_isa_a8493113ce (IsA red_currant currant) (STV 1.0 0.9091)) +(: cnet_isa_32e2284c3d (IsA red_deer deer) (STV 1.0 0.9091)) +(: cnet_isa_17ec599afd (IsA red_delicious delicious) (STV 1.0 0.9091)) +(: cnet_isa_b637eddf14 (IsA red_drum drum) (STV 1.0 0.9091)) +(: cnet_isa_bd71adc10e (IsA red_dwarf star) (STV 1.0 0.9091)) +(: cnet_isa_30bb645165 (IsA red_eft newt) (STV 1.0 0.9091)) +(: cnet_isa_21e61ed263 (IsA red_eyed_vireo vireo) (STV 1.0 0.9091)) +(: cnet_isa_44a15d4f76 (IsA red_fire fuel) (STV 1.0 0.9091)) +(: cnet_isa_083dfae432 (IsA red_flag annoyance) (STV 1.0 0.9091)) +(: cnet_isa_cf95e3932a (IsA red_flag alarm) (STV 1.0 0.9091)) +(: cnet_isa_98fcd03aa1 (IsA red_flag emblem) (STV 1.0 0.9091)) +(: cnet_isa_133bd507fc (IsA red_flag flag) (STV 1.0 0.9091)) +(: cnet_isa_24f5d6e919 (IsA red_flowered_silky_oak silk_oak) (STV 1.0 0.9091)) +(: cnet_isa_28a8d96e29 (IsA red_fox fox) (STV 1.0 0.9091)) +(: cnet_isa_883e0c18eb (IsA red_fox herb) (STV 1.0 0.9091)) +(: cnet_isa_e08c7fe21e (IsA red_giant star) (STV 1.0 0.9091)) +(: cnet_isa_fe4767cd20 (IsA red_ginger ginger) (STV 1.0 0.9091)) +(: cnet_isa_93176a2774 (IsA red_goatfish goatfish) (STV 1.0 0.9091)) +(: cnet_isa_0b7f7c63ae (IsA red_goosefoot goosefoot) (STV 1.0 0.9091)) +(: cnet_isa_4a06859d11 (IsA red_green_dichromacy dichromacy) (STV 1.0 0.9091)) +(: cnet_isa_1b2a0b6446 (IsA red_grouse ptarmigan) (STV 1.0 0.9091)) +(: cnet_isa_dcbf62de42 (IsA red_guard political_movement) (STV 1.0 0.9091)) +(: cnet_isa_fd5c619ff1 (IsA red_gum eucalyptus) (STV 1.0 0.9091)) +(: cnet_isa_a945f531f9 (IsA red_haw hawthorn) (STV 1.0 0.9091)) +(: cnet_isa_ce1e6ccaff (IsA red_helleborine helleborine) (STV 1.0 0.9091)) +(: cnet_isa_6c6e9c29c0 (IsA red_herring diversion) (STV 1.0 0.9091)) +(: cnet_isa_e19eec44de (IsA red_herring herring) (STV 1.0 0.9091)) +(: cnet_isa_4adb3da4f1 (IsA red_hot_poker poker_plant) (STV 1.0 0.9091)) +(: cnet_isa_8f96a95d00 (IsA red_jungle_fowl jungle_fowl) (STV 1.0 0.9091)) +(: cnet_isa_b8cd62c9e8 (IsA red_kauri kauri_pine) (STV 1.0 0.9091)) +(: cnet_isa_6d5f7a18ae (IsA red_lauan dipterocarp) (STV 1.0 0.9091)) +(: cnet_isa_7df5bfd5fc (IsA red_lauan wood) (STV 1.0 0.9091)) +(: cnet_isa_fcdc69ca00 (IsA red_laver red_algae) (STV 1.0 0.9091)) +(: cnet_isa_4f80adea39 (IsA red_lead oxide) (STV 1.0 0.9091)) +(: cnet_isa_9101bc7309 (IsA red_lead_putty cement) (STV 1.0 0.9091)) +(: cnet_isa_cee979158d (IsA red_legged_partridge partridge) (STV 1.0 0.9091)) +(: cnet_isa_71491902df (IsA red_letter_day day) (STV 1.0 0.9091)) +(: cnet_isa_83e929cf1f (IsA red_light traffic_light) (STV 1.0 0.9091)) +(: cnet_isa_2e1fee3281 (IsA red_light visual_signal) (STV 1.0 0.9091)) +(: cnet_isa_bf3434e99d (IsA red_light_district city_district) (STV 1.0 0.9091)) +(: cnet_isa_4eb501c2cc (IsA red_line line) (STV 1.0 0.9091)) +(: cnet_isa_1c54785baf (IsA red_maid wildflower) (STV 1.0 0.9091)) +(: cnet_isa_95fa14dc78 (IsA red_man native_american) (STV 1.0 0.9091)) +(: cnet_isa_3e5ec76e37 (IsA red_maple maple) (STV 1.0 0.9091)) +(: cnet_isa_47874616fa (IsA red_marrow marrow) (STV 1.0 0.9091)) +(: cnet_isa_b756f8d3e0 (IsA red_meat meat) (STV 1.0 0.9091)) +(: cnet_isa_9019308f1b (IsA red_morning_glory morning_glory) (STV 1.0 0.9091)) +(: cnet_isa_7d895ce7cd (IsA red_mulberry mulberry) (STV 1.0 0.9091)) +(: cnet_isa_8f2505058c (IsA red_necked_grebe grebe) (STV 1.0 0.9091)) +(: cnet_isa_c0b6bf5d9c (IsA red_oak oak) (STV 1.0 0.9091)) +(: cnet_isa_b268c551d0 (IsA red_osier dogwood) (STV 1.0 0.9091)) +(: cnet_isa_8f1c6649f2 (IsA red_phalarope phalarope) (STV 1.0 0.9091)) +(: cnet_isa_f246cb913d (IsA red_pine pine) (STV 1.0 0.9091)) +(: cnet_isa_f6fecf98f7 (IsA red_poll cattle) (STV 1.0 0.9091)) +(: cnet_isa_f130bed338 (IsA red_porgy porgy) (STV 1.0 0.9091)) +(: cnet_isa_a2c9d8e9ed (IsA red_raspberry raspberry) (STV 1.0 0.9091)) +(: cnet_isa_a198adf7ef (IsA red_rockfish rockfish) (STV 1.0 0.9091)) +(: cnet_isa_237a2318de (IsA red_rockfish saltwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_387ac3a0cd (IsA red_salmon salmon) (STV 1.0 0.9091)) +(: cnet_isa_758d358e4e (IsA red_sandalwood tree) (STV 1.0 0.9091)) +(: cnet_isa_7d51c8000a (IsA red_scare panic) (STV 1.0 0.9091)) +(: cnet_isa_b1f0c18deb (IsA red_shafted_flicker flicker) (STV 1.0 0.9091)) +(: cnet_isa_65a0918f06 (IsA red_shift propagation) (STV 1.0 0.9091)) +(: cnet_isa_8667cb8c9e (IsA red_shouldered_hawk hawk) (STV 1.0 0.9091)) +(: cnet_isa_30f87cdc39 (IsA red_shrubby_penstemon shrub) (STV 1.0 0.9091)) +(: cnet_isa_21d50b232c (IsA red_silk_cotton plant_fiber) (STV 1.0 0.9091)) +(: cnet_isa_5272b67c30 (IsA red_silk_cotton_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_78dd77aed6 (IsA red_siskin finch) (STV 1.0 0.9091)) +(: cnet_isa_390b9b506b (IsA red_skinned_onion onion) (STV 1.0 0.9091)) +(: cnet_isa_e9d5b234ce (IsA red_sky_at_night sailor_s_delight) (STV 1.0 0.9454)) +(: cnet_isa_3d84d091d3 (IsA red_snapper snapper) (STV 1.0 0.9091)) +(: cnet_isa_042ba4ae53 (IsA red_spider spider_mite) (STV 1.0 0.9091)) +(: cnet_isa_9f716b343b (IsA red_spotted_purple nymphalid) (STV 1.0 0.9091)) +(: cnet_isa_bf61c46429 (IsA red_spruce spruce) (STV 1.0 0.9091)) +(: cnet_isa_fcf5c94ec4 (IsA red_squirrel tree_squirrel) (STV 1.0 0.9091)) +(: cnet_isa_45fe597b66 (IsA red_tai tai) (STV 1.0 0.9091)) +(: cnet_isa_a3bd10e1c2 (IsA red_tide seawater) (STV 1.0 0.9091)) +(: cnet_isa_854bfe0212 (IsA red_trillium trillium) (STV 1.0 0.9091)) +(: cnet_isa_39d300ec90 (IsA red_underwing underwing) (STV 1.0 0.9091)) +(: cnet_isa_19a4a68343 (IsA red_valerian flower) (STV 1.0 0.9091)) +(: cnet_isa_c0334450f9 (IsA red_water animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_2499f93e93 (IsA red_wine wine) (STV 1.0 0.9091)) +(: cnet_isa_e999338bff (IsA red_winged_blackbird new_world_blackbird) (STV 1.0 0.9091)) +(: cnet_isa_ab0db4921e (IsA red_wolf wolf) (STV 1.0 0.9091)) +(: cnet_isa_9ec9d1a163 (IsA redact editor) (STV 1.0 0.9091)) +(: cnet_isa_d5d5ee6a20 (IsA redaction writing) (STV 1.0 0.9091)) +(: cnet_isa_12da1d89b1 (IsA redberry buckthorn) (STV 1.0 0.9091)) +(: cnet_isa_d697daccbc (IsA redbone hound) (STV 1.0 0.9091)) +(: cnet_isa_5345740cc2 (IsA redbook magazine) (STV 1.0 0.9091)) +(: cnet_isa_139833c2c9 (IsA redbrick_university university) (STV 1.0 0.9091)) +(: cnet_isa_e33f4f41e7 (IsA redbud angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_47c993ff69 (IsA redcap military_policeman) (STV 1.0 0.9091)) +(: cnet_isa_90307294a4 (IsA redcap porter) (STV 1.0 0.9091)) +(: cnet_isa_34c5ff88f0 (IsA redcoat soldier) (STV 1.0 0.9091)) +(: cnet_isa_1545a5194d (IsA reddish_brown brown) (STV 1.0 0.9091)) +(: cnet_isa_6a016d27c7 (IsA reddish_orange orange) (STV 1.0 0.9091)) +(: cnet_isa_0577e3b248 (IsA reddish_purple purple) (STV 1.0 0.9091)) +(: cnet_isa_9e7372a115 (IsA rededication dedication) (STV 1.0 0.9091)) +(: cnet_isa_d08b2b98bd (IsA redeemer money_handler) (STV 1.0 0.9091)) +(: cnet_isa_aab0fb610e (IsA redefinition definition) (STV 1.0 0.9091)) +(: cnet_isa_e65ee99086 (IsA redemption purchase) (STV 1.0 0.9091)) +(: cnet_isa_83792b6f32 (IsA redemption repayment) (STV 1.0 0.9091)) +(: cnet_isa_ae1ce26aaf (IsA redemption rescue) (STV 1.0 0.9091)) +(: cnet_isa_72dc9073b1 (IsA redeployment deployment) (STV 1.0 0.9091)) +(: cnet_isa_2bde9d1558 (IsA redeposition deposition) (STV 1.0 0.9091)) +(: cnet_isa_ae3f9da194 (IsA redetermination determination) (STV 1.0 0.9091)) +(: cnet_isa_17877c5434 (IsA redevelopment_authority administrative_unit) (STV 1.0 0.9091)) +(: cnet_isa_a41322499b (IsA redeye flight) (STV 1.0 0.9091)) +(: cnet_isa_088f80df73 (IsA redfin_pickerel pickerel) (STV 1.0 0.9091)) +(: cnet_isa_9e517dfbba (IsA redfish salmon) (STV 1.0 0.9091)) +(: cnet_isa_bad007f394 (IsA redfish rockfish) (STV 1.0 0.9091)) +(: cnet_isa_57b62628a2 (IsA redhead duck) (STV 1.0 0.9091)) +(: cnet_isa_4d71067db9 (IsA redhead person) (STV 1.0 0.9091)) +(: cnet_isa_8656a29026 (IsA redheaded_woodpecker woodpecker) (STV 1.0 0.9091)) +(: cnet_isa_8165de0d29 (IsA redhorse sucker) (STV 1.0 0.9091)) +(: cnet_isa_dc20f2aaeb (IsA rediffusion broadcasting) (STV 1.0 0.9091)) +(: cnet_isa_43e2b3c80e (IsA redirect_examination interrogation) (STV 1.0 0.9091)) +(: cnet_isa_5eb070c372 (IsA rediscovery discovery) (STV 1.0 0.9091)) +(: cnet_isa_bf596e1a27 (IsA redistribution distribution) (STV 1.0 0.9091)) +(: cnet_isa_5649fcc579 (IsA redneck rustic) (STV 1.0 0.9091)) +(: cnet_isa_8a1da5cf60 (IsA redoubt stronghold) (STV 1.0 0.9091)) +(: cnet_isa_c8443dd830 (IsA redoubt fortification) (STV 1.0 0.9091)) +(: cnet_isa_db191b84a8 (IsA redpoll finch) (STV 1.0 0.9091)) +(: cnet_isa_35c6397384 (IsA redraft draft) (STV 1.0 0.9091)) +(: cnet_isa_f3e498a2a5 (IsA redress correction) (STV 1.0 0.9091)) +(: cnet_isa_68369ffa40 (IsA redshank sandpiper) (STV 1.0 0.9091)) +(: cnet_isa_492836d01a (IsA redstart thrush) (STV 1.0 0.9091)) +(: cnet_isa_91e9b3676f (IsA redstem_storksbill storksbill) (STV 1.0 0.9091)) +(: cnet_isa_d5166a5c6e (IsA redtail hawk) (STV 1.0 0.9091)) +(: cnet_isa_c215824932 (IsA reduced_instruction_set_computing computer_architecture) (STV 1.0 0.9091)) +(: cnet_isa_08e9174b29 (IsA reducer pipefitting) (STV 1.0 0.9091)) +(: cnet_isa_e5aab4bb80 (IsA reducing loss) (STV 1.0 0.9091)) +(: cnet_isa_6133cfe890 (IsA reducing_agent chemical_agent) (STV 1.0 0.9091)) +(: cnet_isa_db66a4f01f (IsA reducing_diet diet) (STV 1.0 0.9091)) +(: cnet_isa_ba756baa1c (IsA reductase enzyme) (STV 1.0 0.9091)) +(: cnet_isa_26c8d700af (IsA reductio_ad_absurdum disproof) (STV 1.0 0.9091)) +(: cnet_isa_d36051f606 (IsA reduction chemical_reaction) (STV 1.0 0.9091)) +(: cnet_isa_71998cfcab (IsA reduction change) (STV 1.0 0.9091)) +(: cnet_isa_89622e8f01 (IsA reduction_gear gearing) (STV 1.0 0.9091)) +(: cnet_isa_7c48da1344 (IsA reductionism analysis) (STV 1.0 0.9091)) +(: cnet_isa_073218bc21 (IsA reductionism theory) (STV 1.0 0.9091)) +(: cnet_isa_43c6c7faa2 (IsA redundancy repetition) (STV 1.0 0.9091)) +(: cnet_isa_73065b09b9 (IsA redundancy overplus) (STV 1.0 0.9091)) +(: cnet_isa_1f2270e0c6 (IsA redundancy repetitiveness) (STV 1.0 0.9091)) +(: cnet_isa_1ded93eee5 (IsA redundancy configuration) (STV 1.0 0.9091)) +(: cnet_isa_672bde9b96 (IsA reduplication repetition) (STV 1.0 0.9091)) +(: cnet_isa_5ca71f82c5 (IsA reduplication syllable) (STV 1.0 0.9091)) +(: cnet_isa_ff4c973c29 (IsA reduplication word) (STV 1.0 0.9091)) +(: cnet_isa_1f9d545cae (IsA reduviidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_88bc291712 (IsA redwing thrush) (STV 1.0 0.9091)) +(: cnet_isa_4f22ffc961 (IsA redwood wood) (STV 1.0 0.9091)) +(: cnet_isa_59c033ee81 (IsA reebok brand_of_shoe) (STV 1.0 0.9091)) +(: cnet_isa_9271e2246c (IsA reed vibrator) (STV 1.0 0.9091)) +(: cnet_isa_74d6741833 (IsA reed gramineous_plant) (STV 1.0 0.9091)) +(: cnet_isa_784522fe4e (IsA reed_bunting bunting) (STV 1.0 0.9091)) +(: cnet_isa_9886834842 (IsA reed_canary_grass grass) (STV 1.0 0.9091)) +(: cnet_isa_c84efbebf2 (IsA reed_grass grass) (STV 1.0 0.9091)) +(: cnet_isa_f85df37069 (IsA reed_meadow_grass manna_grass) (STV 1.0 0.9091)) +(: cnet_isa_82a0964bc5 (IsA reed_pipe organ_pipe) (STV 1.0 0.9091)) +(: cnet_isa_667b78ab8a (IsA reed_rhapis lady_palm) (STV 1.0 0.9091)) +(: cnet_isa_28a4d798c6 (IsA reed_section section) (STV 1.0 0.9091)) +(: cnet_isa_55bd5b4a4d (IsA reed_stop organ_stop) (STV 1.0 0.9091)) +(: cnet_isa_6f236e1355 (IsA reef strip) (STV 1.0 0.9091)) +(: cnet_isa_ce6e234a22 (IsA reef ridge) (STV 1.0 0.9091)) +(: cnet_isa_4090b06641 (IsA reef_knot square_knot) (STV 1.0 0.9091)) +(: cnet_isa_a0f3d1fe2d (IsA reef_squirrelfish squirrelfish) (STV 1.0 0.9091)) +(: cnet_isa_00f926345f (IsA reel square_dance) (STV 1.0 0.9091)) +(: cnet_isa_511ee1a303 (IsA reel film) (STV 1.0 0.9091)) +(: cnet_isa_fe4cf2073c (IsA reel winder) (STV 1.0 0.9091)) +(: cnet_isa_b7808f1526 (IsA reel dance_music) (STV 1.0 0.9091)) +(: cnet_isa_7749fb39c4 (IsA reelection election) (STV 1.0 0.9091)) +(: cnet_isa_735a735aed (IsA reeler folk_dancer) (STV 1.0 0.9091)) +(: cnet_isa_7c3dfcde62 (IsA reenactment acting) (STV 1.0 0.9091)) +(: cnet_isa_9f327f816d (IsA reenactor actor) (STV 1.0 0.9091)) +(: cnet_isa_faa70da5f3 (IsA reenlistment enlistment) (STV 1.0 0.9091)) +(: cnet_isa_61939c63cf (IsA reentrant_angle interior_angle) (STV 1.0 0.9091)) +(: cnet_isa_1a7c6b8c23 (IsA reentrant_polygon concave_polygon) (STV 1.0 0.9091)) +(: cnet_isa_71dc157ab3 (IsA reentry return) (STV 1.0 0.9091)) +(: cnet_isa_8cf9fa5415 (IsA reevaluation evaluation) (STV 1.0 0.9091)) +(: cnet_isa_5f028872e3 (IsA reeve ruff) (STV 1.0 0.9091)) +(: cnet_isa_5ae97ae45e (IsA refection meal) (STV 1.0 0.9091)) +(: cnet_isa_42757ab7a6 (IsA refectory dining_hall) (STV 1.0 0.9091)) +(: cnet_isa_87b8387f2f (IsA refectory_table dining_table) (STV 1.0 0.9091)) +(: cnet_isa_ae7857b9c1 (IsA referee lawyer) (STV 1.0 0.9091)) +(: cnet_isa_64db57c8ff (IsA referee official) (STV 1.0 0.9091)) +(: cnet_isa_13ab598f61 (IsA reference action) (STV 1.0 0.9091)) +(: cnet_isa_33ec3751f9 (IsA reference meaning) (STV 1.0 0.9091)) +(: cnet_isa_67cf7f96d0 (IsA reference publication) (STV 1.0 0.9091)) +(: cnet_isa_06ebcb894f (IsA reference_book book) (STV 1.0 0.9091)) +(: cnet_isa_05e6ab1e80 (IsA reference_grid grid) (STV 1.0 0.9091)) +(: cnet_isa_b04637f350 (IsA reference_manual manual) (STV 1.0 0.9091)) +(: cnet_isa_dc4ea1b288 (IsA reference_point indicator) (STV 1.0 0.9091)) +(: cnet_isa_95eb917c05 (IsA referendum vote) (STV 1.0 0.9091)) +(: cnet_isa_99ac443ef0 (IsA referent meaning) (STV 1.0 0.9091)) +(: cnet_isa_41a2135bde (IsA referent term) (STV 1.0 0.9091)) +(: cnet_isa_f0f61a0991 (IsA referral forwarding) (STV 1.0 0.9091)) +(: cnet_isa_7ed6b2db1a (IsA referral recommendation) (STV 1.0 0.9091)) +(: cnet_isa_391119ba6a (IsA referral case) (STV 1.0 0.9091)) +(: cnet_isa_0c9a69bd71 (IsA referred_pain pain) (STV 1.0 0.9091)) +(: cnet_isa_06bf01d3db (IsA refill merchandise) (STV 1.0 0.9091)) +(: cnet_isa_3f8f91b641 (IsA refill prescription_drug) (STV 1.0 0.9091)) +(: cnet_isa_3e655d3c85 (IsA refilling filling) (STV 1.0 0.9091)) +(: cnet_isa_8adb669358 (IsA refinement excellence) (STV 1.0 0.9091)) +(: cnet_isa_7470e0cc3e (IsA refinement improvement) (STV 1.0 0.9091)) +(: cnet_isa_e3efca8019 (IsA refiner skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_8f28160ffc (IsA refinery plant) (STV 1.0 0.9091)) +(: cnet_isa_7e8147795a (IsA refining processing) (STV 1.0 0.9091)) +(: cnet_isa_8c0a2025dc (IsA refinisher skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_789ec70b4d (IsA refit outfitting) (STV 1.0 0.9091)) +(: cnet_isa_d1d756a881 (IsA reflation inflation) (STV 1.0 0.9091)) +(: cnet_isa_4492d80488 (IsA reflecting_telescope optical_telescope) (STV 1.0 0.9091)) +(: cnet_isa_293aac05e1 (IsA reflection ikon) (STV 1.0 0.9091)) +(: cnet_isa_14b5c9a4b9 (IsA reflection physical_property) (STV 1.0 0.9091)) +(: cnet_isa_4f8c0a82bb (IsA reflection transformation) (STV 1.0 0.9091)) +(: cnet_isa_53b169350c (IsA reflection physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_d9cf41ead5 (IsA reflective_surface surface) (STV 1.0 0.9091)) +(: cnet_isa_538d05cbd5 (IsA reflectiveness thoughtfulness) (STV 1.0 0.9091)) +(: cnet_isa_6c45b24c59 (IsA reflectometer meter) (STV 1.0 0.9091)) +(: cnet_isa_4117f67b44 (IsA reflector device) (STV 1.0 0.9091)) +(: cnet_isa_8914df7b69 (IsA reflex reaction) (STV 1.0 0.9091)) +(: cnet_isa_39bf9652b3 (IsA reflex_angle angle) (STV 1.0 0.9091)) +(: cnet_isa_c2003a6e46 (IsA reflex_arc neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_f785d27a42 (IsA reflex_camera camera) (STV 1.0 0.9091)) +(: cnet_isa_9f02123651 (IsA reflex_epilepsy epilepsy) (STV 1.0 0.9091)) +(: cnet_isa_5ecac8b0a1 (IsA reflexive_pronoun personal_pronoun) (STV 1.0 0.9091)) +(: cnet_isa_d3a36dce71 (IsA reflexive_verb verb) (STV 1.0 0.9091)) +(: cnet_isa_f6ffeb0c59 (IsA reflexivity coreference) (STV 1.0 0.9091)) +(: cnet_isa_f267f20679 (IsA reflexivity logical_relation) (STV 1.0 0.9091)) +(: cnet_isa_672f52f69c (IsA reflexivity mathematical_relation) (STV 1.0 0.9091)) +(: cnet_isa_83c21bc422 (IsA reflexology massage) (STV 1.0 0.9091)) +(: cnet_isa_666fc3cece (IsA reflexology behaviorism) (STV 1.0 0.9091)) +(: cnet_isa_f4aae5e32f (IsA reflux pathology) (STV 1.0 0.9091)) +(: cnet_isa_4e377ed10c (IsA reflux_condenser condenser) (STV 1.0 0.9091)) +(: cnet_isa_3b4f1a2ce3 (IsA refocusing focalization) (STV 1.0 0.9091)) +(: cnet_isa_2484763a2d (IsA reforestation reclamation) (STV 1.0 0.9091)) +(: cnet_isa_6887c4fae2 (IsA reform campaign) (STV 1.0 0.9091)) +(: cnet_isa_038250375e (IsA reform improvement) (STV 1.0 0.9091)) +(: cnet_isa_d40e81ea2b (IsA reform self_improvement) (STV 1.0 0.9091)) +(: cnet_isa_42efae5ea1 (IsA reform_jew israelite) (STV 1.0 0.9091)) +(: cnet_isa_585d592c15 (IsA reform_judaism judaism) (STV 1.0 0.9091)) +(: cnet_isa_e7bc9b3409 (IsA reform_movement movement) (STV 1.0 0.9091)) +(: cnet_isa_87b30e2742 (IsA reformation religious_movement) (STV 1.0 0.9091)) +(: cnet_isa_a19aad0468 (IsA reformation improvement) (STV 1.0 0.9091)) +(: cnet_isa_dc4d118697 (IsA reformatory correctional_institution) (STV 1.0 0.9091)) +(: cnet_isa_5cda3168aa (IsA reformer apparatus) (STV 1.0 0.9091)) +(: cnet_isa_68722e50bc (IsA reformer disputant) (STV 1.0 0.9091)) +(: cnet_isa_257c717f5d (IsA reformism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_aab1f54dd6 (IsA refracting_telescope optical_telescope) (STV 1.0 0.9091)) +(: cnet_isa_7d540a482e (IsA refraction physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_2a2e906ac0 (IsA refractive_index ratio) (STV 1.0 0.9091)) +(: cnet_isa_d2dd63b569 (IsA refractivity deflection) (STV 1.0 0.9091)) +(: cnet_isa_d9fa866781 (IsA refractometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_cd0e72e523 (IsA refractoriness intractability) (STV 1.0 0.9091)) +(: cnet_isa_b5d0cc21ac (IsA refractory_anemia anemia) (STV 1.0 0.9091)) +(: cnet_isa_b9773ac55f (IsA refractory_period biological_time) (STV 1.0 0.9091)) +(: cnet_isa_f281ac773d (IsA refrain music) (STV 1.0 0.9091)) +(: cnet_isa_e671fe49c8 (IsA refresher beverage) (STV 1.0 0.9091)) +(: cnet_isa_7d54fe4d3c (IsA refresher legal_fee) (STV 1.0 0.9091)) +(: cnet_isa_448745f750 (IsA refresher_course course) (STV 1.0 0.9091)) +(: cnet_isa_2b9fd4f477 (IsA refreshment rejuvenation) (STV 1.0 0.9091)) +(: cnet_isa_ba0b3cef0e (IsA refreshment bite) (STV 1.0 0.9091)) +(: cnet_isa_d87e743f66 (IsA refried_bean dish) (STV 1.0 0.9091)) +(: cnet_isa_a3249a4152 (IsA refrigerant substance) (STV 1.0 0.9091)) +(: cnet_isa_b9850f31c1 (IsA refrigeration therapy) (STV 1.0 0.9091)) +(: cnet_isa_10c07fc628 (IsA refrigeration cooling) (STV 1.0 0.9091)) +(: cnet_isa_aa64cd9cc0 (IsA refrigeration preservation) (STV 1.0 0.9091)) +(: cnet_isa_9287f51cf4 (IsA refrigeration_system cooling_system) (STV 1.0 0.9091)) +(: cnet_isa_4bf89f3fe7 (IsA refrigerator electronic_appliance) (STV 1.0 0.9091)) +(: cnet_isa_9ca150dbf1 (IsA refrigerator machine) (STV 1.0 0.9454)) +(: cnet_isa_0dc074cc96 (IsA refrigerator white_good) (STV 1.0 0.9091)) +(: cnet_isa_0ce56d30b8 (IsA refrigerator_car freight_car) (STV 1.0 0.9091)) +(: cnet_isa_3cb92f2db0 (IsA refrigerator_cookie cookie) (STV 1.0 0.9091)) +(: cnet_isa_a6c50dfec4 (IsA refuge shelter) (STV 1.0 0.9091)) +(: cnet_isa_a5a7e44edc (IsA refugee exile) (STV 1.0 0.9091)) +(: cnet_isa_206d509223 (IsA refund payment) (STV 1.0 0.9091)) +(: cnet_isa_e2ed28525d (IsA refusal denial) (STV 1.0 0.9091)) +(: cnet_isa_d5bc0df753 (IsA refusal message) (STV 1.0 0.9091)) +(: cnet_isa_f49c615158 (IsA refutation answer) (STV 1.0 0.9091)) +(: cnet_isa_a29782afcd (IsA regalecidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_e8f3ccff4e (IsA regalia gear) (STV 1.0 0.9091)) +(: cnet_isa_8c67753767 (IsA regard greeting) (STV 1.0 0.9091)) +(: cnet_isa_1d87e10013 (IsA regard affection) (STV 1.0 0.9091)) +(: cnet_isa_d82a690ee1 (IsA regatta meet) (STV 1.0 0.9091)) +(: cnet_isa_2670c39a61 (IsA regency position) (STV 1.0 0.9091)) +(: cnet_isa_c44438a982 (IsA regency rule) (STV 1.0 0.9091)) +(: cnet_isa_949f31a5f4 (IsA regeneration revival) (STV 1.0 0.9091)) +(: cnet_isa_9af2c14a43 (IsA regeneration organic_process) (STV 1.0 0.9091)) +(: cnet_isa_ca251d4631 (IsA regent committee_member) (STV 1.0 0.9091)) +(: cnet_isa_7983359b2d (IsA regent ruler) (STV 1.0 0.9091)) +(: cnet_isa_12609ad06d (IsA reggae popular_music) (STV 1.0 0.9091)) +(: cnet_isa_cfe787b9be (IsA regicide murder) (STV 1.0 0.9091)) +(: cnet_isa_6e81fe8057 (IsA regicide killer) (STV 1.0 0.9091)) +(: cnet_isa_0d4c623e27 (IsA regimen plan) (STV 1.0 0.9091)) +(: cnet_isa_09a553be37 (IsA regiment army_unit) (STV 1.0 0.9091)) +(: cnet_isa_f679c39f69 (IsA regimental military_uniform) (STV 1.0 0.9091)) +(: cnet_isa_5ec283fcf4 (IsA regimentation imposition) (STV 1.0 0.9091)) +(: cnet_isa_b197c9f3b1 (IsA region location) (STV 1.0 0.9091)) +(: cnet_isa_c5205781b9 (IsA region indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_95e8b4ada4 (IsA regional_anatomy anatomy) (STV 1.0 0.9091)) +(: cnet_isa_f04a900f28 (IsA regional_anesthesia anesthesia) (STV 1.0 0.9091)) +(: cnet_isa_2f90bd70b6 (IsA regional_enteritis colitis) (STV 1.0 0.9091)) +(: cnet_isa_bf9a3f71c1 (IsA regionalism loyalty) (STV 1.0 0.9091)) +(: cnet_isa_82bd666e7a (IsA regionalism foreign_policy) (STV 1.0 0.9091)) +(: cnet_isa_7f16f65cde (IsA regionalism non_standard_speech) (STV 1.0 0.9091)) +(: cnet_isa_0207629dcf (IsA register air_passage) (STV 1.0 0.9091)) +(: cnet_isa_36ac6b6b05 (IsA register regulator) (STV 1.0 0.9091)) +(: cnet_isa_e86b7d40f2 (IsA register written_record) (STV 1.0 0.9091)) +(: cnet_isa_de7c1c72cc (IsA register memory_device) (STV 1.0 0.9091)) +(: cnet_isa_ce9d6a7a00 (IsA register timbre) (STV 1.0 0.9091)) +(: cnet_isa_0564eac84c (IsA register record) (STV 1.0 0.9091)) +(: cnet_isa_0b8d0ceb94 (IsA register_language tone_language) (STV 1.0 0.9091)) +(: cnet_isa_96c5354f35 (IsA registered_bond bond) (STV 1.0 0.9091)) +(: cnet_isa_1d000a6bb7 (IsA registered_bond registered_security) (STV 1.0 0.9091)) +(: cnet_isa_f4d12ad337 (IsA registered_mail mail) (STV 1.0 0.9091)) +(: cnet_isa_5c335e2e47 (IsA registered_nurse nurse) (STV 1.0 0.9091)) +(: cnet_isa_b69b8fabf3 (IsA registered_security security) (STV 1.0 0.9091)) +(: cnet_isa_4fbb3e7e96 (IsA registrant person) (STV 1.0 0.9091)) +(: cnet_isa_5b013e6ec1 (IsA registrar academic_administrator) (STV 1.0 0.9091)) +(: cnet_isa_12d5e65b7e (IsA registrar employee) (STV 1.0 0.9091)) +(: cnet_isa_d686fec958 (IsA registrar official) (STV 1.0 0.9091)) +(: cnet_isa_ca719474b8 (IsA registration entrance) (STV 1.0 0.9091)) +(: cnet_isa_cba3465e45 (IsA registration certificate) (STV 1.0 0.9091)) +(: cnet_isa_1ae89bf09b (IsA registration body) (STV 1.0 0.9091)) +(: cnet_isa_3f82f9ac95 (IsA registration sound_property) (STV 1.0 0.9091)) +(: cnet_isa_8644f96b45 (IsA registration_fire fire) (STV 1.0 0.9091)) +(: cnet_isa_afda883a9c (IsA regius_professor professor) (STV 1.0 0.9091)) +(: cnet_isa_fa615e5330 (IsA reglaecus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_9277074f98 (IsA regnellidium aquatic_fern) (STV 1.0 0.9091)) +(: cnet_isa_d2a3b42980 (IsA regosol soil) (STV 1.0 0.9091)) +(: cnet_isa_78f7f9cc05 (IsA regress reasoning) (STV 1.0 0.9091)) +(: cnet_isa_6008aa6fe3 (IsA regression reversal) (STV 1.0 0.9091)) +(: cnet_isa_b66dfdf48c (IsA regression defense_mechanism) (STV 1.0 0.9091)) +(: cnet_isa_b5eb11bc7c (IsA regression statistical_method) (STV 1.0 0.9091)) +(: cnet_isa_124e8c8e48 (IsA regression_analysis multivariate_analysis) (STV 1.0 0.9091)) +(: cnet_isa_502ba959d7 (IsA regression_coefficient parametric_statistic) (STV 1.0 0.9091)) +(: cnet_isa_d591006fd0 (IsA regression_equation equation) (STV 1.0 0.9091)) +(: cnet_isa_9b9fa4dab5 (IsA regression_line curve) (STV 1.0 0.9091)) +(: cnet_isa_d0008343b9 (IsA regret emotion) (STV 1.0 0.9091)) +(: cnet_isa_c2b52af0cd (IsA regular size) (STV 1.0 0.9091)) +(: cnet_isa_df9f1bb43f (IsA regular patron) (STV 1.0 0.9091)) +(: cnet_isa_92879a9b1c (IsA regular soldier) (STV 1.0 0.9091)) +(: cnet_isa_c65b21c9d5 (IsA regular follower) (STV 1.0 0.9091)) +(: cnet_isa_ad4416aadc (IsA regular_dodecahedron regular_polyhedron) (STV 1.0 0.9091)) +(: cnet_isa_c272ba3c0e (IsA regular_hexagon hexagon) (STV 1.0 0.9091)) +(: cnet_isa_b8103b3b61 (IsA regular_icosahedron regular_polyhedron) (STV 1.0 0.9091)) +(: cnet_isa_a0474ffca8 (IsA regular_octahedron regular_polyhedron) (STV 1.0 0.9091)) +(: cnet_isa_d61d7adf29 (IsA regular_payment payment) (STV 1.0 0.9091)) +(: cnet_isa_804aa7a74d (IsA regular_polygon isogon) (STV 1.0 0.9091)) +(: cnet_isa_820f5fc660 (IsA regular_polyhedron polyhedron) (STV 1.0 0.9091)) +(: cnet_isa_5614c91157 (IsA regular_tetrahedron regular_polyhedron) (STV 1.0 0.9091)) +(: cnet_isa_b1b87fdc34 (IsA regularity quality) (STV 1.0 0.9091)) +(: cnet_isa_c331a2f2b5 (IsA regularity symmetry) (STV 1.0 0.9091)) +(: cnet_isa_891d03ec9b (IsA regularization condition) (STV 1.0 0.9091)) +(: cnet_isa_5a11fc7664 (IsA regulation control) (STV 1.0 0.9091)) +(: cnet_isa_5394d199dc (IsA regulation rule) (STV 1.0 0.9091)) +(: cnet_isa_0f0ea9892e (IsA regulation organic_process) (STV 1.0 0.9091)) +(: cnet_isa_e121bd07de (IsA regulation dominance) (STV 1.0 0.9091)) +(: cnet_isa_91a4a57d39 (IsA regulation_time time_period) (STV 1.0 0.9091)) +(: cnet_isa_c65a9718a9 (IsA regulator control) (STV 1.0 0.9091)) +(: cnet_isa_8a888d5050 (IsA regulator official) (STV 1.0 0.9091)) +(: cnet_isa_35a20f82d9 (IsA regulatory_agency administrative_unit) (STV 1.0 0.9091)) +(: cnet_isa_b254eb1503 (IsA regulatory_gene gene) (STV 1.0 0.9091)) +(: cnet_isa_f026e2e38f (IsA regulus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_5682160965 (IsA regur loam) (STV 1.0 0.9091)) +(: cnet_isa_2b457475ea (IsA regurgitation recall) (STV 1.0 0.9091)) +(: cnet_isa_fbaf3df621 (IsA regurgitation backflow) (STV 1.0 0.9091)) +(: cnet_isa_41ab5d3df3 (IsA rehabilitation physical_therapy) (STV 1.0 0.9091)) +(: cnet_isa_11b0f1b9de (IsA rehabilitation restoration) (STV 1.0 0.9091)) +(: cnet_isa_15d370f226 (IsA rehabilitation vindication) (STV 1.0 0.9091)) +(: cnet_isa_5100310285 (IsA rehabilitation_program program) (STV 1.0 0.9091)) +(: cnet_isa_f29a82ccd0 (IsA reharmonization harmonization) (STV 1.0 0.9091)) +(: cnet_isa_975af5bfd1 (IsA rehash material) (STV 1.0 0.9091)) +(: cnet_isa_35dd20c01d (IsA rehearsal exercise) (STV 1.0 0.9091)) +(: cnet_isa_32a7d2bb7d (IsA reich state) (STV 1.0 0.9091)) +(: cnet_isa_43e88a1738 (IsA reign dominion) (STV 1.0 0.9091)) +(: cnet_isa_66c13fd6ff (IsA reign period) (STV 1.0 0.9091)) +(: cnet_isa_7a46547d17 (IsA reign time_period) (STV 1.0 0.9091)) +(: cnet_isa_14d31e775e (IsA reign_of_terror reign) (STV 1.0 0.9091)) +(: cnet_isa_0efccb4bae (IsA reimbursement compensation) (STV 1.0 0.9091)) +(: cnet_isa_b005a808b4 (IsA reimposition imposition) (STV 1.0 0.9091)) +(: cnet_isa_1f12f84b55 (IsA rein strap) (STV 1.0 0.9091)) +(: cnet_isa_b5e9971ab3 (IsA rein control) (STV 1.0 0.9091)) +(: cnet_isa_a56bb1af51 (IsA rein_orchid orchid) (STV 1.0 0.9091)) +(: cnet_isa_84d5f75414 (IsA reincarnation theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_eb74328bee (IsA reincarnation birth) (STV 1.0 0.9091)) +(: cnet_isa_1c463c60fa (IsA reincarnation embodiment) (STV 1.0 0.9091)) +(: cnet_isa_52a80de1c6 (IsA reincarnationism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_ad81495c0e (IsA reindeer_moss lichen) (STV 1.0 0.9091)) +(: cnet_isa_8013d7fe55 (IsA reinforced_concrete concrete) (STV 1.0 0.9091)) +(: cnet_isa_fe29c4a2a8 (IsA reinforcement confirmation) (STV 1.0 0.9091)) +(: cnet_isa_e0b3393195 (IsA reinforcing_stimulus stimulation) (STV 1.0 0.9091)) +(: cnet_isa_230a839986 (IsA reinstatement restoration) (STV 1.0 0.9091)) +(: cnet_isa_8077ec9e2a (IsA reinstatement condition) (STV 1.0 0.9091)) +(: cnet_isa_0ec493f3f0 (IsA reinsurance insurance) (STV 1.0 0.9091)) +(: cnet_isa_e20c7f2b4b (IsA reinterpretation rendition) (STV 1.0 0.9091)) +(: cnet_isa_b433ffe2ca (IsA reinterpretation interpretation) (STV 1.0 0.9091)) +(: cnet_isa_118196f006 (IsA reintroduction presentation) (STV 1.0 0.9091)) +(: cnet_isa_c56b9dab35 (IsA reissue publication) (STV 1.0 0.9091)) +(: cnet_isa_ef3417811e (IsA reiter_s_syndrome syndrome) (STV 1.0 0.9091)) +(: cnet_isa_5f6ffdb5a6 (IsA reithrodontomy mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_bce421d182 (IsA rejection act) (STV 1.0 0.9091)) +(: cnet_isa_2ed50189c4 (IsA rejection speech_act) (STV 1.0 0.9091)) +(: cnet_isa_f8b1e1b537 (IsA rejection organic_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_87c17f7475 (IsA rejection situation) (STV 1.0 0.9091)) +(: cnet_isa_1490826f31 (IsA rejoicing happiness) (STV 1.0 0.9091)) +(: cnet_isa_912397eb5c (IsA rejoinder reply) (STV 1.0 0.9091)) +(: cnet_isa_89072de167 (IsA rejoinder pleading) (STV 1.0 0.9091)) +(: cnet_isa_193700601e (IsA rejuvenation restoration) (STV 1.0 0.9091)) +(: cnet_isa_6cf07dc8ba (IsA rejuvenation organic_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_00a3decd9a (IsA relapsing_fever infectious_disease) (STV 1.0 0.9091)) +(: cnet_isa_7b9960cd8b (IsA relatedness connection) (STV 1.0 0.9091)) +(: cnet_isa_5d10068e1b (IsA relation abstraction) (STV 1.0 0.9091)) +(: cnet_isa_d249c7112f (IsA relation dealing) (STV 1.0 0.9091)) +(: cnet_isa_a6b3383e79 (IsA relation narration) (STV 1.0 0.9091)) +(: cnet_isa_ef25399902 (IsA relation_back legal_principle) (STV 1.0 0.9091)) +(: cnet_isa_a00bede7d2 (IsA relational_adjective adjective) (STV 1.0 0.9091)) +(: cnet_isa_03a519133a (IsA relational_database electronic_database) (STV 1.0 0.9091)) +(: cnet_isa_07f4c29a98 (IsA relational_database_management_system database_management_system) (STV 1.0 0.9091)) +(: cnet_isa_95859966c0 (IsA relation social_relation) (STV 1.0 0.9091)) +(: cnet_isa_7804790a98 (IsA relationship relation) (STV 1.0 0.9091)) +(: cnet_isa_9422c9ba16 (IsA relationship state) (STV 1.0 0.9091)) +(: cnet_isa_697c588bcd (IsA relative organism) (STV 1.0 0.9091)) +(: cnet_isa_2ca8fdea7e (IsA relative person) (STV 1.0 0.9091)) +(: cnet_isa_1fa7a90d88 (IsA relative_clause clause) (STV 1.0 0.9091)) +(: cnet_isa_d471db5d42 (IsA relative_density concentration) (STV 1.0 0.9091)) +(: cnet_isa_b7d0901607 (IsA relative_humidity ratio) (STV 1.0 0.9091)) +(: cnet_isa_f0d7607091 (IsA relative_pronoun pronoun) (STV 1.0 0.9091)) +(: cnet_isa_b8a94d08f7 (IsA relative_quantity measure) (STV 1.0 0.9091)) +(: cnet_isa_40778672d8 (IsA relativism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_e557cbd7d4 (IsA relativistic_mass mass) (STV 1.0 0.9091)) +(: cnet_isa_43ab1f048d (IsA relativity college_level_subject) (STV 1.0 0.9091)) +(: cnet_isa_1a4eb652f8 (IsA relativity theory) (STV 1.0 0.9339)) +(: cnet_isa_9b0f22cacc (IsA relativity quality) (STV 1.0 0.9091)) +(: cnet_isa_c20b61b6c6 (IsA relativity scientific_theory) (STV 1.0 0.9091)) +(: cnet_isa_b641c67e12 (IsA relatum term) (STV 1.0 0.9091)) +(: cnet_isa_b8cd6c085d (IsA relaxant drug) (STV 1.0 0.9091)) +(: cnet_isa_a49bf152a9 (IsA relaxation mathematical_process) (STV 1.0 0.9091)) +(: cnet_isa_15f6b3e746 (IsA relaxation weakening) (STV 1.0 0.9091)) +(: cnet_isa_bf6a07218b (IsA relaxation exponential_decay) (STV 1.0 0.9091)) +(: cnet_isa_7e92a247fe (IsA relaxation increase) (STV 1.0 0.9091)) +(: cnet_isa_a117e7e2ef (IsA relaxation_time time_constant) (STV 1.0 0.9091)) +(: cnet_isa_3877d03819 (IsA relaxer agent) (STV 1.0 0.9091)) +(: cnet_isa_f133aab506 (IsA relaxin hormone) (STV 1.0 0.9091)) +(: cnet_isa_ce0dbe382a (IsA relay passage) (STV 1.0 0.9091)) +(: cnet_isa_d5afd7479a (IsA relay electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_095cc60225 (IsA relay shift) (STV 1.0 0.9091)) +(: cnet_isa_ab663b0391 (IsA relay team) (STV 1.0 0.9091)) +(: cnet_isa_503d45f48e (IsA relay race) (STV 1.0 0.9091)) +(: cnet_isa_dd235e6e51 (IsA release activity) (STV 1.0 0.9091)) +(: cnet_isa_9fd12c0167 (IsA release relinquishment) (STV 1.0 0.9091)) +(: cnet_isa_79ef7a5b0a (IsA release device) (STV 1.0 0.9091)) +(: cnet_isa_670d284a9d (IsA release merchandise) (STV 1.0 0.9091)) +(: cnet_isa_a18dc80377 (IsA release termination) (STV 1.0 0.9091)) +(: cnet_isa_dde02791b9 (IsA release natural_process) (STV 1.0 0.9091)) +(: cnet_isa_843bf1254c (IsA releasing_factor factor) (STV 1.0 0.9091)) +(: cnet_isa_8686440ee2 (IsA releasing_hormone hormone) (STV 1.0 0.9091)) +(: cnet_isa_14759ecd76 (IsA relegation banishment) (STV 1.0 0.9091)) +(: cnet_isa_fb4e2ac9f7 (IsA relegation categorization) (STV 1.0 0.9091)) +(: cnet_isa_44aa3743f2 (IsA relentlessness mercilessness) (STV 1.0 0.9091)) +(: cnet_isa_c41a039ec1 (IsA relevance connection) (STV 1.0 0.9091)) +(: cnet_isa_4d0b67276f (IsA reliance certainty) (STV 1.0 0.9091)) +(: cnet_isa_456b32e1c2 (IsA reliance dependence) (STV 1.0 0.9091)) +(: cnet_isa_8492d7eb83 (IsA relic antiquity) (STV 1.0 0.9091)) +(: cnet_isa_da0674818d (IsA relict geological_formation) (STV 1.0 0.9091)) +(: cnet_isa_0052458617 (IsA relict organism) (STV 1.0 0.9091)) +(: cnet_isa_d8f701f4fa (IsA relief aid) (STV 1.0 0.9091)) +(: cnet_isa_5a3446b9f0 (IsA relief liberation) (STV 1.0 0.9091)) +(: cnet_isa_dba0424b92 (IsA relief social_welfare) (STV 1.0 0.9091)) +(: cnet_isa_dfbf5548ad (IsA relief sculpture) (STV 1.0 0.9091)) +(: cnet_isa_4fc8ad836f (IsA relief comfort) (STV 1.0 0.9091)) +(: cnet_isa_056f4cf95a (IsA relief damage) (STV 1.0 0.9091)) +(: cnet_isa_28f00956ff (IsA relief_printing printing) (STV 1.0 0.9091)) +(: cnet_isa_457e1a5807 (IsA reliever person) (STV 1.0 0.9091)) +(: cnet_isa_75fd80bd60 (IsA reliever pitcher) (STV 1.0 0.9091)) +(: cnet_isa_56129997a0 (IsA religion abstract_idea) (STV 1.0 0.9339)) +(: cnet_isa_7b81fb9208 (IsA religion form_of_crude_superstition) (STV 1.0 0.9339)) +(: cnet_isa_bfab763cb0 (IsA religion powerful_force) (STV 1.0 0.9339)) +(: cnet_isa_ab8eeba326 (IsA religion subjective_created_mythology) (STV 1.0 0.9339)) +(: cnet_isa_082fce7a91 (IsA religion very_complex_topic) (STV 1.0 0.9339)) +(: cnet_isa_9d0a307853 (IsA religion belief) (STV 1.0 0.9091)) +(: cnet_isa_b4da272d18 (IsA religion theological_virtue) (STV 1.0 0.9091)) +(: cnet_isa_a5357b4f1d (IsA religion institution) (STV 1.0 0.9091)) +(: cnet_isa_f32a7a9841 (IsA religionism intolerance) (STV 1.0 0.9091)) +(: cnet_isa_0124f43f36 (IsA religionist person) (STV 1.0 0.9091)) +(: cnet_isa_c395176953 (IsA religionist religionist) (STV 1.0 0.9091)) +(: cnet_isa_e05392f557 (IsA religiosity devoutness) (STV 1.0 0.9091)) +(: cnet_isa_b98b9550fe (IsA religious religionist) (STV 1.0 0.9091)) +(: cnet_isa_d3a0ece93b (IsA religious_ceremony ceremony) (STV 1.0 0.9091)) +(: cnet_isa_796ef218a2 (IsA religious_doctrine doctrine) (STV 1.0 0.9091)) +(: cnet_isa_3cf402033c (IsA religious_festival festival) (STV 1.0 0.9091)) +(: cnet_isa_02dd18f8c7 (IsA religious_holiday holiday) (STV 1.0 0.9091)) +(: cnet_isa_be0a598b65 (IsA religious_leader leader) (STV 1.0 0.9091)) +(: cnet_isa_4e80d33768 (IsA religious_leader religionist) (STV 1.0 0.9091)) +(: cnet_isa_ebc186341d (IsA religious_movement movement) (STV 1.0 0.9091)) +(: cnet_isa_e7372d504e (IsA religious_music music_genre) (STV 1.0 0.9091)) +(: cnet_isa_4bd053a467 (IsA religious_orientation orientation) (STV 1.0 0.9091)) +(: cnet_isa_0691f34c81 (IsA religious_residence residence) (STV 1.0 0.9091)) +(: cnet_isa_c308513e0d (IsA religious_right right) (STV 1.0 0.9091)) +(: cnet_isa_5581977053 (IsA religious_school school) (STV 1.0 0.9091)) +(: cnet_isa_c8290cada7 (IsA religious_society_of_friend sect) (STV 1.0 0.9091)) +(: cnet_isa_ad812467d1 (IsA religious_song religious_music) (STV 1.0 0.9091)) +(: cnet_isa_9ced516fef (IsA religious_song song) (STV 1.0 0.9091)) +(: cnet_isa_39fd0a3a7c (IsA religious_trance trance) (STV 1.0 0.9091)) +(: cnet_isa_d9c0a4afdf (IsA religiousness conscientiousness) (STV 1.0 0.9091)) +(: cnet_isa_1a0d97f0a9 (IsA relinquishment termination) (STV 1.0 0.9091)) +(: cnet_isa_bdab4cf9d3 (IsA relinquishment renunciation) (STV 1.0 0.9091)) +(: cnet_isa_d5d0c20baa (IsA reliquary container) (STV 1.0 0.9091)) +(: cnet_isa_d05fec5b28 (IsA relish taste) (STV 1.0 0.9091)) +(: cnet_isa_0d88f21cd9 (IsA relish condiment) (STV 1.0 0.9091)) +(: cnet_isa_7948a4b726 (IsA relistening listening) (STV 1.0 0.9091)) +(: cnet_isa_08d20a8bdf (IsA reliving experience) (STV 1.0 0.9091)) +(: cnet_isa_0727cb8ca6 (IsA relocatable_program program) (STV 1.0 0.9091)) +(: cnet_isa_6383c74f86 (IsA reluctance unwillingness) (STV 1.0 0.9091)) +(: cnet_isa_3fcf75340f (IsA reluctance electrical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_cef2834305 (IsA reluctivity physical_property) (STV 1.0 0.9091)) +(: cnet_isa_19ddf60c5f (IsA rem radioactivity_unit) (STV 1.0 0.9091)) +(: cnet_isa_ce2dcd6b4b (IsA remainder part) (STV 1.0 0.9091)) +(: cnet_isa_d8f267dae9 (IsA remainder number) (STV 1.0 0.9091)) +(: cnet_isa_1526a764a7 (IsA remain object) (STV 1.0 0.9091)) +(: cnet_isa_b987400557 (IsA remake creation) (STV 1.0 0.9091)) +(: cnet_isa_087e096bb2 (IsA remand return) (STV 1.0 0.9091)) +(: cnet_isa_9974327642 (IsA remark notice) (STV 1.0 0.9091)) +(: cnet_isa_ed67309602 (IsA remark statement) (STV 1.0 0.9091)) +(: cnet_isa_b8c3f3e598 (IsA remarriage marriage) (STV 1.0 0.9091)) +(: cnet_isa_d9c196b0e5 (IsA rembrant famous_painter) (STV 1.0 0.9091)) +(: cnet_isa_cb4cd97dde (IsA remedy medicine) (STV 1.0 0.9091)) +(: cnet_isa_46eee081a3 (IsA remembrance memory) (STV 1.0 0.9091)) +(: cnet_isa_f81179834b (IsA remembrance_day holiday) (STV 1.0 0.9091)) +(: cnet_isa_bf832094f4 (IsA remilegia fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_b8660ab6e1 (IsA remilitarization mobilization) (STV 1.0 0.9091)) +(: cnet_isa_935af56ff2 (IsA reminder experience) (STV 1.0 0.9091)) +(: cnet_isa_ed2075fbda (IsA reminder message) (STV 1.0 0.9091)) +(: cnet_isa_765afb22c5 (IsA reminiscence memory) (STV 1.0 0.9091)) +(: cnet_isa_cf5ba63a5f (IsA remise hackney) (STV 1.0 0.9091)) +(: cnet_isa_1d59361120 (IsA remise stab) (STV 1.0 0.9091)) +(: cnet_isa_6e21f6ed00 (IsA remission suspension) (STV 1.0 0.9091)) +(: cnet_isa_e8d68f4a7a (IsA remission referral) (STV 1.0 0.9091)) +(: cnet_isa_1f226284b4 (IsA remit topic) (STV 1.0 0.9091)) +(: cnet_isa_1b06b51a93 (IsA remittance payment) (STV 1.0 0.9091)) +(: cnet_isa_e6d0bf0176 (IsA remittance_man exile) (STV 1.0 0.9091)) +(: cnet_isa_b7d703a900 (IsA remora spiny_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_e8694b3cd7 (IsA remote_control device) (STV 1.0 0.9091)) +(: cnet_isa_a015cd4656 (IsA remote_control_bomb bomb) (STV 1.0 0.9091)) +(: cnet_isa_25780264f2 (IsA remote_terminal terminal) (STV 1.0 0.9091)) +(: cnet_isa_d1e7c74203 (IsA remoulade_sauce sauce) (STV 1.0 0.9091)) +(: cnet_isa_1dc4db18ef (IsA remount saddle_horse) (STV 1.0 0.9091)) +(: cnet_isa_78b2f6c2ff (IsA removable_disk hard_disc) (STV 1.0 0.9091)) +(: cnet_isa_0a9f82d60a (IsA removal dismissal) (STV 1.0 0.9091)) +(: cnet_isa_4cbe34b908 (IsA removal separation) (STV 1.0 0.9091)) +(: cnet_isa_186a8f89c8 (IsA remove distance) (STV 1.0 0.9091)) +(: cnet_isa_4715c7175f (IsA remover mover) (STV 1.0 0.9091)) +(: cnet_isa_c4cfb954cf (IsA remover solvent) (STV 1.0 0.9091)) +(: cnet_isa_f63713e597 (IsA remuda herd) (STV 1.0 0.9091)) +(: cnet_isa_67cef4a138 (IsA remuneration payment) (STV 1.0 0.9091)) +(: cnet_isa_ce23a357b5 (IsA renaissance_man scholar) (STV 1.0 0.9091)) +(: cnet_isa_cb122bcd8c (IsA renal_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_90999dd9e5 (IsA renal_colic pain) (STV 1.0 0.9091)) +(: cnet_isa_5b457fe3fb (IsA renal_cortex cortex) (STV 1.0 0.9091)) +(: cnet_isa_4543d957fb (IsA renal_failure failure) (STV 1.0 0.9091)) +(: cnet_isa_ae806da968 (IsA renal_failure kidney_disease) (STV 1.0 0.9091)) +(: cnet_isa_a43ba422f5 (IsA renal_insufficiency kidney_disease) (STV 1.0 0.9091)) +(: cnet_isa_f2fca73aca (IsA renal_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_c0403bd53a (IsA render stucco) (STV 1.0 0.9091)) +(: cnet_isa_8631b28f25 (IsA rendering payment) (STV 1.0 0.9091)) +(: cnet_isa_06fb1e6723 (IsA rendering coating) (STV 1.0 0.9091)) +(: cnet_isa_6db583b147 (IsA rendering drawing) (STV 1.0 0.9091)) +(: cnet_isa_5b90eaeb3c (IsA rendezvous meeting) (STV 1.0 0.9091)) +(: cnet_isa_5de8356927 (IsA rendezvous topographic_point) (STV 1.0 0.9091)) +(: cnet_isa_ec4502f5cf (IsA rendition performance) (STV 1.0 0.9091)) +(: cnet_isa_1302bca59c (IsA rendition surrender) (STV 1.0 0.9091)) +(: cnet_isa_5a3142e09d (IsA renegade deserter) (STV 1.0 0.9091)) +(: cnet_isa_6b24d403e6 (IsA renewable_resource natural_resource) (STV 1.0 0.9091)) +(: cnet_isa_5ee931b7d9 (IsA renewal repetition) (STV 1.0 0.9091)) +(: cnet_isa_ca1e631e3b (IsA reniform_leaf simple_leaf) (STV 1.0 0.9091)) +(: cnet_isa_08f75635c7 (IsA renin protease) (STV 1.0 0.9091)) +(: cnet_isa_06935a1b3d (IsA rennet organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_2464056fc9 (IsA rennin coagulase) (STV 1.0 0.9091)) +(: cnet_isa_11cbdb3a14 (IsA rennin enzyme) (STV 1.0 0.9091)) +(: cnet_isa_f65e5a56b0 (IsA renovation improvement) (STV 1.0 0.9091)) +(: cnet_isa_cf71bdda52 (IsA rensselaerite talc) (STV 1.0 0.9091)) +(: cnet_isa_e0efb906a8 (IsA rent tear) (STV 1.0 0.9091)) +(: cnet_isa_54ba8f0de9 (IsA rent annuity_in_advance) (STV 1.0 0.9091)) +(: cnet_isa_06c9b171c6 (IsA rent_collector collector) (STV 1.0 0.9091)) +(: cnet_isa_68fbaa5475 (IsA rent_rebate rebate) (STV 1.0 0.9091)) +(: cnet_isa_cb945d2f59 (IsA rent_roll register) (STV 1.0 0.9091)) +(: cnet_isa_acca884151 (IsA rent_seeking economic_theory) (STV 1.0 0.9091)) +(: cnet_isa_0da632f1ae (IsA rental transaction) (STV 1.0 0.9091)) +(: cnet_isa_1c918cca14 (IsA rental_collection library) (STV 1.0 0.9091)) +(: cnet_isa_41fee89b48 (IsA rental_income income) (STV 1.0 0.9091)) +(: cnet_isa_b023145c8c (IsA renter owner) (STV 1.0 0.9091)) +(: cnet_isa_a374942961 (IsA rentier investor) (STV 1.0 0.9091)) +(: cnet_isa_5084ddfb19 (IsA renunciation rejection) (STV 1.0 0.9091)) +(: cnet_isa_694bdfcb26 (IsA renunciation resignation) (STV 1.0 0.9091)) +(: cnet_isa_01bc1cd9df (IsA reorder order) (STV 1.0 0.9091)) +(: cnet_isa_e035e58f84 (IsA reordering rearrangement) (STV 1.0 0.9091)) +(: cnet_isa_7f426c38f9 (IsA reorganization organization) (STV 1.0 0.9091)) +(: cnet_isa_58de2998d2 (IsA reorganization revision) (STV 1.0 0.9091)) +(: cnet_isa_ee30f20002 (IsA reorientation orientation) (STV 1.0 0.9091)) +(: cnet_isa_0b297f2ba7 (IsA reoviridae arbovirus) (STV 1.0 0.9091)) +(: cnet_isa_cbe85687eb (IsA reovirus animal_virus) (STV 1.0 0.9091)) +(: cnet_isa_1416a26c99 (IsA rep fabric) (STV 1.0 0.9091)) +(: cnet_isa_d5c58a3407 (IsA rep congressman) (STV 1.0 0.9091)) +(: cnet_isa_6bacaae506 (IsA repair improvement) (STV 1.0 0.9091)) +(: cnet_isa_5b63b42ab5 (IsA repair condition) (STV 1.0 0.9091)) +(: cnet_isa_ca0d298e17 (IsA repair_shop shop) (STV 1.0 0.9091)) +(: cnet_isa_e14e36d834 (IsA reparation expiation) (STV 1.0 0.9091)) +(: cnet_isa_ee7567def2 (IsA reparation compensation) (STV 1.0 0.9091)) +(: cnet_isa_6c75d33772 (IsA repartee wit) (STV 1.0 0.9091)) +(: cnet_isa_329db19fc9 (IsA repatriate citizen) (STV 1.0 0.9091)) +(: cnet_isa_92bde3a59d (IsA repatriation return) (STV 1.0 0.9091)) +(: cnet_isa_0448ffc899 (IsA repayment payment) (STV 1.0 0.9091)) +(: cnet_isa_ece46b17fc (IsA repeat periodic_event) (STV 1.0 0.9091)) +(: cnet_isa_2c9bae9abe (IsA repeater electronic_device) (STV 1.0 0.9091)) +(: cnet_isa_7737859695 (IsA repeater person) (STV 1.0 0.9091)) +(: cnet_isa_37b1308338 (IsA repeating_firearm firearm) (STV 1.0 0.9091)) +(: cnet_isa_5ff17411db (IsA repechage race) (STV 1.0 0.9091)) +(: cnet_isa_dc2ff75dfb (IsA repellent power) (STV 1.0 0.9091)) +(: cnet_isa_390b607194 (IsA repellent compound) (STV 1.0 0.9091)) +(: cnet_isa_4582baca9b (IsA repentance compunction) (STV 1.0 0.9091)) +(: cnet_isa_251f6f6610 (IsA repercussion consequence) (STV 1.0 0.9091)) +(: cnet_isa_ea0de335b5 (IsA repertoire collection) (STV 1.0 0.9091)) +(: cnet_isa_c959609042 (IsA repertory depository) (STV 1.0 0.9091)) +(: cnet_isa_e2e8fba7f3 (IsA repertory collection) (STV 1.0 0.9091)) +(: cnet_isa_16b0a61434 (IsA repetition continuance) (STV 1.0 0.9091)) +(: cnet_isa_72aebb117f (IsA repetition rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_43b9adc741 (IsA repetitiveness verboseness) (STV 1.0 0.9091)) +(: cnet_isa_483db7d54e (IsA replaceability exchangeability) (STV 1.0 0.9091)) +(: cnet_isa_81f5575d6e (IsA replacement substitution) (STV 1.0 0.9091)) +(: cnet_isa_20521d60d8 (IsA replacement_cost cost) (STV 1.0 0.9091)) +(: cnet_isa_bcdd1189fe (IsA replay repeat) (STV 1.0 0.9091)) +(: cnet_isa_0260590874 (IsA replay repetition) (STV 1.0 0.9091)) +(: cnet_isa_6d7c8fbc30 (IsA repletion eating) (STV 1.0 0.9091)) +(: cnet_isa_cb916e12ef (IsA repletion fullness) (STV 1.0 0.9091)) +(: cnet_isa_62f748d067 (IsA replica copy) (STV 1.0 0.9091)) +(: cnet_isa_a79064ce13 (IsA replication repetition) (STV 1.0 0.9091)) +(: cnet_isa_b8aed6d47c (IsA replication organic_process) (STV 1.0 0.9091)) +(: cnet_isa_14ad849016 (IsA replication pleading) (STV 1.0 0.9091)) +(: cnet_isa_9daadfba2c (IsA reply speech_act) (STV 1.0 0.9091)) +(: cnet_isa_036caf79ec (IsA report document) (STV 1.0 0.9091)) +(: cnet_isa_c89dbb6b5c (IsA report informing) (STV 1.0 0.9091)) +(: cnet_isa_32aa9a1fd4 (IsA report new) (STV 1.0 0.9091)) +(: cnet_isa_2d84f67ae8 (IsA report noise) (STV 1.0 0.9091)) +(: cnet_isa_3d19f12f4d (IsA report_card information) (STV 1.0 0.9091)) +(: cnet_isa_6a166c190b (IsA reporter communicator) (STV 1.0 0.9091)) +(: cnet_isa_a539c93144 (IsA reporting_weight body_weight) (STV 1.0 0.9091)) +(: cnet_isa_aece4c73ea (IsA repose composure) (STV 1.0 0.9091)) +(: cnet_isa_24dc49594c (IsA repositing deposit) (STV 1.0 0.9091)) +(: cnet_isa_c3ff99c0ce (IsA repositioning placement) (STV 1.0 0.9091)) +(: cnet_isa_d936622e4d (IsA repository burial_chamber) (STV 1.0 0.9091)) +(: cnet_isa_12269cd61e (IsA repository confidant) (STV 1.0 0.9091)) +(: cnet_isa_191df4fe72 (IsA repossession recovery) (STV 1.0 0.9091)) +(: cnet_isa_d96b8388b7 (IsA reprehensibility evil) (STV 1.0 0.9091)) +(: cnet_isa_945e62df06 (IsA representation activity) (STV 1.0 0.9091)) +(: cnet_isa_796f13ae86 (IsA representation cooperation) (STV 1.0 0.9091)) +(: cnet_isa_5a646c6ed4 (IsA representation creation) (STV 1.0 0.9091)) +(: cnet_isa_157bc4c840 (IsA representation right) (STV 1.0 0.9091)) +(: cnet_isa_4f75b2e7c8 (IsA representation content) (STV 1.0 0.9091)) +(: cnet_isa_c740a67bae (IsA representation statement) (STV 1.0 0.9091)) +(: cnet_isa_8cdcdea122 (IsA representation body) (STV 1.0 0.9091)) +(: cnet_isa_b06fde8591 (IsA representation state) (STV 1.0 0.9091)) +(: cnet_isa_7105e7a526 (IsA representational_process basic_cognitive_process) (STV 1.0 0.9091)) +(: cnet_isa_2bf2ce969c (IsA representative negotiator) (STV 1.0 0.9091)) +(: cnet_isa_9a0dcfafe2 (IsA repression control) (STV 1.0 0.9091)) +(: cnet_isa_55c8cc7181 (IsA repression defense_mechanism) (STV 1.0 0.9091)) +(: cnet_isa_def0c6da29 (IsA repression subjugation) (STV 1.0 0.9091)) +(: cnet_isa_d4c698788d (IsA repressor agent) (STV 1.0 0.9091)) +(: cnet_isa_c28891c1db (IsA repressor_gene gene) (STV 1.0 0.9091)) +(: cnet_isa_0093530e5e (IsA reprieve clemency) (STV 1.0 0.9091)) +(: cnet_isa_8010bee3c4 (IsA reprieve warrant) (STV 1.0 0.9091)) +(: cnet_isa_60e8f60b76 (IsA reprieve relief) (STV 1.0 0.9091)) +(: cnet_isa_3e55842329 (IsA reprisal retaliation) (STV 1.0 0.9091)) +(: cnet_isa_97f19d4813 (IsA reproach rebuke) (STV 1.0 0.9091)) +(: cnet_isa_b978aba63d (IsA reproach shame) (STV 1.0 0.9091)) +(: cnet_isa_e217af53f1 (IsA reprobate wrongdoer) (STV 1.0 0.9091)) +(: cnet_isa_2353a3e8cb (IsA reprobation disfavor) (STV 1.0 0.9091)) +(: cnet_isa_c6ed141abe (IsA reprobation rejection) (STV 1.0 0.9091)) +(: cnet_isa_60b2a1359b (IsA reproducer audio_system) (STV 1.0 0.9091)) +(: cnet_isa_a7e1639731 (IsA reproducibility dependability) (STV 1.0 0.9091)) +(: cnet_isa_ceacf1228b (IsA reproduction copying) (STV 1.0 0.9091)) +(: cnet_isa_b7335919dd (IsA reproduction sexual_activity) (STV 1.0 0.9091)) +(: cnet_isa_1afd47b959 (IsA reproduction organic_process) (STV 1.0 0.9091)) +(: cnet_isa_56bf89d45c (IsA reproduction recall) (STV 1.0 0.9091)) +(: cnet_isa_a328799586 (IsA reproduction_cost cost) (STV 1.0 0.9091)) +(: cnet_isa_9d2c10731b (IsA reproductive_cell cell) (STV 1.0 0.9091)) +(: cnet_isa_02bf4acf20 (IsA reproductive_cloning cloning) (STV 1.0 0.9091)) +(: cnet_isa_3be1d29a61 (IsA reproductive_organ organ) (STV 1.0 0.9091)) +(: cnet_isa_019b49a5e9 (IsA reproductive_structure plant_organ) (STV 1.0 0.9091)) +(: cnet_isa_a875c07674 (IsA reproductive_system system) (STV 1.0 0.9091)) +(: cnet_isa_7573b7be86 (IsA reptantia animal_order) (STV 1.0 0.9091)) +(: cnet_isa_1602b04d48 (IsA reptile vertebrate) (STV 1.0 0.9091)) +(: cnet_isa_a00737ed86 (IsA reptile_family family) (STV 1.0 0.9091)) +(: cnet_isa_d5cd70f04b (IsA reptile_genus genus) (STV 1.0 0.9091)) +(: cnet_isa_0ea872c289 (IsA reptilia class) (STV 1.0 0.9091)) +(: cnet_isa_572f6aa34a (IsA republic political_system) (STV 1.0 0.9091)) +(: cnet_isa_93d9f79b10 (IsA republican advocate) (STV 1.0 0.9091)) +(: cnet_isa_085968ae31 (IsA republican politician) (STV 1.0 0.9091)) +(: cnet_isa_a95f680e80 (IsA republican_guard military_unit) (STV 1.0 0.9091)) +(: cnet_isa_ba647a0f49 (IsA republican_party party) (STV 1.0 0.9091)) +(: cnet_isa_d4ebc1f7bf (IsA republicanism political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_577a1f92df (IsA republication publication) (STV 1.0 0.9091)) +(: cnet_isa_29d6eff0e7 (IsA repudiation exposure) (STV 1.0 0.9091)) +(: cnet_isa_efc2c56242 (IsA repudiation refusal) (STV 1.0 0.9091)) +(: cnet_isa_fef3b5f566 (IsA repudiation rejection) (STV 1.0 0.9091)) +(: cnet_isa_ff44f02c8b (IsA repugnance disgust) (STV 1.0 0.9091)) +(: cnet_isa_9313fb21b5 (IsA repulsion stand) (STV 1.0 0.9091)) +(: cnet_isa_5ef50632b3 (IsA repulsion force) (STV 1.0 0.9091)) +(: cnet_isa_a7ae4726c2 (IsA reputation estimate) (STV 1.0 0.9091)) +(: cnet_isa_659797f08c (IsA reputation notoriety) (STV 1.0 0.9091)) +(: cnet_isa_6c583cb860 (IsA repute honor) (STV 1.0 0.9091)) +(: cnet_isa_8da0c9adb4 (IsA request message) (STV 1.0 0.9091)) +(: cnet_isa_4a6e2b99d2 (IsA request speech_act) (STV 1.0 0.9091)) +(: cnet_isa_b835f4a8c4 (IsA requiem mass) (STV 1.0 0.9091)) +(: cnet_isa_943ce2b276 (IsA requiem_shark shark) (STV 1.0 0.9091)) +(: cnet_isa_2d4f97afdf (IsA requiescat prayer) (STV 1.0 0.9091)) +(: cnet_isa_c820084554 (IsA required_course course) (STV 1.0 0.9091)) +(: cnet_isa_e31e41db9a (IsA requirement duty) (STV 1.0 0.9091)) +(: cnet_isa_ad37749871 (IsA requirement_contract contract) (STV 1.0 0.9091)) +(: cnet_isa_05e47e6939 (IsA requisiteness necessity) (STV 1.0 0.9091)) +(: cnet_isa_eeba3b88a5 (IsA requisition demand) (STV 1.0 0.9091)) +(: cnet_isa_c628039b22 (IsA requisition form) (STV 1.0 0.9091)) +(: cnet_isa_c9d7d74006 (IsA requital return) (STV 1.0 0.9091)) +(: cnet_isa_7c3b7a1158 (IsA rerebrace cannon) (STV 1.0 0.9091)) +(: cnet_isa_0549479ccf (IsA rerun broadcast) (STV 1.0 0.9091)) +(: cnet_isa_b4131cce98 (IsA res_gestae action) (STV 1.0 0.9091)) +(: cnet_isa_1ead911fc6 (IsA res_gestae rule_of_evidence) (STV 1.0 0.9091)) +(: cnet_isa_b108422be2 (IsA res_ipsa_loquitur rule_of_evidence) (STV 1.0 0.9091)) +(: cnet_isa_67960f0cc0 (IsA res_judicata topic) (STV 1.0 0.9091)) +(: cnet_isa_9a3f83ad8e (IsA resale selling) (STV 1.0 0.9091)) +(: cnet_isa_786ed9737e (IsA rescript answer) (STV 1.0 0.9091)) +(: cnet_isa_50f2a5d5c5 (IsA rescue recovery) (STV 1.0 0.9091)) +(: cnet_isa_35bdf4e663 (IsA rescue_equipment equipment) (STV 1.0 0.9091)) +(: cnet_isa_4cf2be0609 (IsA rescue_operation operation) (STV 1.0 0.9091)) +(: cnet_isa_422959026d (IsA rescue_party party) (STV 1.0 0.9091)) +(: cnet_isa_2c64967551 (IsA rescuer person) (STV 1.0 0.9091)) +(: cnet_isa_164d790ec3 (IsA research investigation) (STV 1.0 0.9091)) +(: cnet_isa_fe26b6172b (IsA research_center center) (STV 1.0 0.9091)) +(: cnet_isa_ee168561c7 (IsA research_colloquium colloquium) (STV 1.0 0.9091)) +(: cnet_isa_cea8b88516 (IsA research_director supervisor) (STV 1.0 0.9091)) +(: cnet_isa_f382943dd0 (IsA research_group group) (STV 1.0 0.9091)) +(: cnet_isa_affcd8eae7 (IsA research_staff staff) (STV 1.0 0.9091)) +(: cnet_isa_8aa2fe4cd3 (IsA research_worker scientist) (STV 1.0 0.9091)) +(: cnet_isa_ac53a14c02 (IsA reseau net) (STV 1.0 0.9091)) +(: cnet_isa_8731e4a813 (IsA reseau network) (STV 1.0 0.9091)) +(: cnet_isa_e8094b36a2 (IsA resection operation) (STV 1.0 0.9091)) +(: cnet_isa_50f7811c41 (IsA reseda herb) (STV 1.0 0.9091)) +(: cnet_isa_2b0ae125f0 (IsA resedaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_61aa07061d (IsA resemblance likeness) (STV 1.0 0.9091)) +(: cnet_isa_84b8c9fb5a (IsA resentment hostility) (STV 1.0 0.9091)) +(: cnet_isa_cba8ac02be (IsA reservation preservation) (STV 1.0 0.9091)) +(: cnet_isa_2dc6e440e9 (IsA reservation prearrangement) (STV 1.0 0.9091)) +(: cnet_isa_895def7a27 (IsA reservation agreement) (STV 1.0 0.9091)) +(: cnet_isa_edf3a937b1 (IsA reservation statement) (STV 1.0 0.9091)) +(: cnet_isa_11f82aaac3 (IsA reservation administrative_district) (STV 1.0 0.9091)) +(: cnet_isa_5d3fabca92 (IsA reserve uncommunicativeness) (STV 1.0 0.9091)) +(: cnet_isa_b576a3923e (IsA reserve indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_8d8522be91 (IsA reserve accumulation) (STV 1.0 0.9091)) +(: cnet_isa_b3fa7d4912 (IsA reserve_account reserve) (STV 1.0 0.9091)) +(: cnet_isa_3be54606e0 (IsA reserve_asset asset) (STV 1.0 0.9091)) +(: cnet_isa_49f23082c0 (IsA reserve_clause article) (STV 1.0 0.9091)) +(: cnet_isa_5d9605e24e (IsA reserve_officer_training_corp corp) (STV 1.0 0.9091)) +(: cnet_isa_bca97e7f9b (IsA reservist soldier) (STV 1.0 0.9091)) +(: cnet_isa_8e96ab8c72 (IsA reservoir lake) (STV 1.0 0.9091)) +(: cnet_isa_5c6d5c3e7a (IsA reservoir tank) (STV 1.0 0.9091)) +(: cnet_isa_3379f8d245 (IsA reservoir thing) (STV 1.0 0.9091)) +(: cnet_isa_d4bc879cfa (IsA reservoir supply) (STV 1.0 0.9091)) +(: cnet_isa_affaec44ce (IsA reset device) (STV 1.0 0.9091)) +(: cnet_isa_80b51753ab (IsA reset_button push_button) (STV 1.0 0.9091)) +(: cnet_isa_1c4e63a14a (IsA resettlement transportation) (STV 1.0 0.9091)) +(: cnet_isa_6ecb13e627 (IsA resh letter) (STV 1.0 0.9091)) +(: cnet_isa_438150bf1d (IsA reshipment dispatch) (STV 1.0 0.9091)) +(: cnet_isa_d6f40bfc46 (IsA reshuffle reallotment) (STV 1.0 0.9091)) +(: cnet_isa_a280f45b00 (IsA reshuffle shuffle) (STV 1.0 0.9091)) +(: cnet_isa_2abf892812 (IsA residence house) (STV 1.0 0.9091)) +(: cnet_isa_8cebb3ffae (IsA residence address) (STV 1.0 0.9091)) +(: cnet_isa_bc26588573 (IsA residence_time duration) (STV 1.0 0.9091)) +(: cnet_isa_c97aabf1c2 (IsA residency act) (STV 1.0 0.9091)) +(: cnet_isa_d544591752 (IsA residency position) (STV 1.0 0.9091)) +(: cnet_isa_3096b09b89 (IsA resident inhabitant) (STV 1.0 0.9091)) +(: cnet_isa_994ea385e8 (IsA resident_commissioner representative) (STV 1.0 0.9091)) +(: cnet_isa_18a45fdd4d (IsA residential_district district) (STV 1.0 0.9091)) +(: cnet_isa_c6e9a2cb28 (IsA residual payment) (STV 1.0 0.9091)) +(: cnet_isa_a08d856c2e (IsA residual_oil petroleum) (STV 1.0 0.9091)) +(: cnet_isa_715f59f913 (IsA residual_soil soil) (STV 1.0 0.9091)) +(: cnet_isa_86b564c159 (IsA residue substance) (STV 1.0 0.9091)) +(: cnet_isa_25b1e97409 (IsA resignation document) (STV 1.0 0.9091)) +(: cnet_isa_cf5d11d9f4 (IsA resignation speech_act) (STV 1.0 0.9091)) +(: cnet_isa_a7710e9fad (IsA resignation despair) (STV 1.0 0.9091)) +(: cnet_isa_bcdaa3a772 (IsA resilience elasticity) (STV 1.0 0.9091)) +(: cnet_isa_2628677590 (IsA resilience recoil) (STV 1.0 0.9091)) +(: cnet_isa_57c2351acc (IsA resin organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_250462a28c (IsA resinoid plastic) (STV 1.0 0.9091)) +(: cnet_isa_543d0f89fb (IsA resistance action) (STV 1.0 0.9091)) +(: cnet_isa_baab1c985b (IsA resistance group_action) (STV 1.0 0.9091)) +(: cnet_isa_2c63f630e2 (IsA resistance unresponsiveness) (STV 1.0 0.9091)) +(: cnet_isa_08e94ee9fb (IsA resistance military_action) (STV 1.0 0.9091)) +(: cnet_isa_a9a044671a (IsA resistance mechanical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_53be30c944 (IsA resistance unwillingness) (STV 1.0 0.9091)) +(: cnet_isa_69f8c32834 (IsA resistance capability) (STV 1.0 0.9091)) +(: cnet_isa_cd01d30d56 (IsA resistance_pyrometer pyrometer) (STV 1.0 0.9091)) +(: cnet_isa_97e27f8e95 (IsA resistance_thermometer thermometer) (STV 1.0 0.9091)) +(: cnet_isa_e0ab5420e4 (IsA resistance_unit electromagnetic_unit) (STV 1.0 0.9091)) +(: cnet_isa_fa60b8be5b (IsA resisting_arrest assault) (STV 1.0 0.9091)) +(: cnet_isa_d87035e431 (IsA resisting_arrest battery) (STV 1.0 0.9091)) +(: cnet_isa_ec018cfa0c (IsA resistor electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_534aeac76b (IsA resoluteness trait) (STV 1.0 0.9091)) +(: cnet_isa_497fe442d0 (IsA resolution decision) (STV 1.0 0.9091)) +(: cnet_isa_b02acbf8f3 (IsA resolution determination) (STV 1.0 0.9091)) +(: cnet_isa_db91db5071 (IsA resolution breakdown) (STV 1.0 0.9091)) +(: cnet_isa_8f15b63c1f (IsA resolution document) (STV 1.0 0.9091)) +(: cnet_isa_56a362777b (IsA resolution physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_919f6ea299 (IsA resolution remission) (STV 1.0 0.9091)) +(: cnet_isa_f286896289 (IsA resolution harmony) (STV 1.0 0.9091)) +(: cnet_isa_87748f63a5 (IsA resolving_power physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_bc6daefb4a (IsA resonance timbre) (STV 1.0 0.9091)) +(: cnet_isa_6c6e4d2f7e (IsA resonance oscillation) (STV 1.0 0.9091)) +(: cnet_isa_cacb1592d7 (IsA resonance physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_c0cbd30c79 (IsA resonator chamber) (STV 1.0 0.9091)) +(: cnet_isa_08827b7076 (IsA resonator circuit) (STV 1.0 0.9091)) +(: cnet_isa_ef1035de58 (IsA resonator system) (STV 1.0 0.9091)) +(: cnet_isa_6f785c9e51 (IsA resorcinol phenol) (STV 1.0 0.9091)) +(: cnet_isa_acf033305c (IsA resorption organic_process) (STV 1.0 0.9091)) +(: cnet_isa_b05cefb1e4 (IsA resort hotel) (STV 1.0 0.9091)) +(: cnet_isa_766ed92c32 (IsA resort_area area) (STV 1.0 0.9091)) +(: cnet_isa_35cdfc7acc (IsA resort_hotel hotel) (STV 1.0 0.9091)) +(: cnet_isa_bb71236cba (IsA resource asset) (STV 1.0 0.9091)) +(: cnet_isa_c82b3c7461 (IsA resource inventiveness) (STV 1.0 0.9091)) +(: cnet_isa_ee6a1b4acd (IsA resourcefulness resource) (STV 1.0 0.9091)) +(: cnet_isa_4bc84151a0 (IsA respect attitude) (STV 1.0 0.9091)) +(: cnet_isa_7051a9bcb9 (IsA respect detail) (STV 1.0 0.9091)) +(: cnet_isa_26bcb15c4c (IsA respectability honorableness) (STV 1.0 0.9091)) +(: cnet_isa_743ca02e58 (IsA respecter follower) (STV 1.0 0.9091)) +(: cnet_isa_e3cacc6da3 (IsA respect message) (STV 1.0 0.9091)) +(: cnet_isa_02ccf62814 (IsA respiration bodily_process) (STV 1.0 0.9091)) +(: cnet_isa_f009fcf9cb (IsA respiration metabolism) (STV 1.0 0.9091)) +(: cnet_isa_16db546adf (IsA respirator breathing_device) (STV 1.0 0.9091)) +(: cnet_isa_706a98c0ee (IsA respiratory_acidosis acidosis) (STV 1.0 0.9091)) +(: cnet_isa_bd8592ac11 (IsA respiratory_alkalosis alkalosis) (STV 1.0 0.9091)) +(: cnet_isa_6da83cd627 (IsA respiratory_center center) (STV 1.0 0.9091)) +(: cnet_isa_3d509bb532 (IsA respiratory_disease disease) (STV 1.0 0.9091)) +(: cnet_isa_d2fed9128d (IsA respiratory_distress_syndrome respiratory_disease) (STV 1.0 0.9091)) +(: cnet_isa_9b0da137dc (IsA respiratory_organ internal_organ) (STV 1.0 0.9091)) +(: cnet_isa_870295a1fc (IsA respiratory_quotient ratio) (STV 1.0 0.9091)) +(: cnet_isa_f79fea17e5 (IsA respiratory_rate rate) (STV 1.0 0.9091)) +(: cnet_isa_390f5721b3 (IsA respiratory_rate vital_sign) (STV 1.0 0.9091)) +(: cnet_isa_457d81ee43 (IsA respiratory_syncytial_virus paramyxovirus) (STV 1.0 0.9091)) +(: cnet_isa_4397dbda99 (IsA respiratory_system system) (STV 1.0 0.9091)) +(: cnet_isa_a29050ef57 (IsA respiratory_tract tract) (STV 1.0 0.9091)) +(: cnet_isa_2fe40d11af (IsA respiratory_tract_infection infection) (STV 1.0 0.9091)) +(: cnet_isa_a03a757a33 (IsA respite pause) (STV 1.0 0.9091)) +(: cnet_isa_a99f719689 (IsA resplendent_quetzel quetzal) (STV 1.0 0.9091)) +(: cnet_isa_094dc77066 (IsA respondent codefendant) (STV 1.0 0.9091)) +(: cnet_isa_88e23d8acc (IsA respondent communicator) (STV 1.0 0.9091)) +(: cnet_isa_86c22c8f3c (IsA response manner) (STV 1.0 0.9091)) +(: cnet_isa_2395da587b (IsA response phrase) (STV 1.0 0.9091)) +(: cnet_isa_4a7ef61967 (IsA response consequence) (STV 1.0 0.9091)) +(: cnet_isa_b025d20486 (IsA responsibility trustworthiness) (STV 1.0 0.9091)) +(: cnet_isa_db62dfddb1 (IsA responsiveness quality) (STV 1.0 0.9091)) +(: cnet_isa_520443ecc7 (IsA responsiveness sensitivity) (STV 1.0 0.9091)) +(: cnet_isa_fcb13c9735 (IsA rest inactivity) (STV 1.0 0.9091)) +(: cnet_isa_bd9d280fb3 (IsA rest support) (STV 1.0 0.9091)) +(: cnet_isa_14f1b4cca5 (IsA rest musical_notation) (STV 1.0 0.9091)) +(: cnet_isa_2e7c9d5827 (IsA rest death) (STV 1.0 0.9091)) +(: cnet_isa_581cac8470 (IsA rest inaction) (STV 1.0 0.9091)) +(: cnet_isa_8b4ca4711b (IsA rest_cure treatment) (STV 1.0 0.9091)) +(: cnet_isa_6bb04320c9 (IsA rest_day day_of_week) (STV 1.0 0.9091)) +(: cnet_isa_ff5de2ffd8 (IsA rest_energy energy) (STV 1.0 0.9091)) +(: cnet_isa_ab1e1045b2 (IsA rest_house building) (STV 1.0 0.9091)) +(: cnet_isa_3594e34352 (IsA rest_mass mass) (STV 1.0 0.9091)) +(: cnet_isa_b8ab5f7189 (IsA restatement statement) (STV 1.0 0.9091)) +(: cnet_isa_0b6c984644 (IsA restaurant establishment) (STV 1.0 0.9454)) +(: cnet_isa_8447c501ab (IsA restaurant building) (STV 1.0 0.9091)) +(: cnet_isa_3b4ba6e5af (IsA restaurant_chain chain) (STV 1.0 0.9091)) +(: cnet_isa_1d49613af8 (IsA restaurant place) (STV 1.0 0.9740)) +(: cnet_isa_0ee1102f37 (IsA restaurant place_to_eat) (STV 1.0 0.9091)) +(: cnet_isa_0d689c2b3b (IsA restaurateur owner) (STV 1.0 0.9091)) +(: cnet_isa_9598f00456 (IsA rester person) (STV 1.0 0.9091)) +(: cnet_isa_0fe8fc3454 (IsA restfulness inactiveness) (STV 1.0 0.9091)) +(: cnet_isa_6dda13c636 (IsA restharrow subshrub) (STV 1.0 0.9091)) +(: cnet_isa_eb1d46a8e0 (IsA resting_potential electric_potential) (STV 1.0 0.9091)) +(: cnet_isa_c71714229f (IsA resting_spore spore) (STV 1.0 0.9091)) +(: cnet_isa_1ce1c9044f (IsA restitution repair) (STV 1.0 0.9091)) +(: cnet_isa_451327a92d (IsA restless_leg_syndrome syndrome) (STV 1.0 0.9091)) +(: cnet_isa_e321af8638 (IsA restlessness mobility) (STV 1.0 0.9091)) +(: cnet_isa_165c179754 (IsA restlessness nervousness) (STV 1.0 0.9091)) +(: cnet_isa_d5009deab3 (IsA restlessness irritation) (STV 1.0 0.9091)) +(: cnet_isa_f413ebcc63 (IsA restoration acquisition) (STV 1.0 0.9091)) +(: cnet_isa_102ec9ff28 (IsA restoration repair) (STV 1.0 0.9091)) +(: cnet_isa_f578206f1d (IsA restoration artifact) (STV 1.0 0.9091)) +(: cnet_isa_d06a3a569c (IsA restoration model) (STV 1.0 0.9091)) +(: cnet_isa_5c70defd0d (IsA restrainer person) (STV 1.0 0.9091)) +(: cnet_isa_891a1898ad (IsA restrainer chemical) (STV 1.0 0.9091)) +(: cnet_isa_3ae5e1394d (IsA restraint control) (STV 1.0 0.9091)) +(: cnet_isa_70c919d47f (IsA restraint device) (STV 1.0 0.9091)) +(: cnet_isa_5e50d001a5 (IsA restraint discipline) (STV 1.0 0.9091)) +(: cnet_isa_fa4263af0d (IsA restraint restriction) (STV 1.0 0.9091)) +(: cnet_isa_8b65c033ea (IsA restraint_of_trade restraint) (STV 1.0 0.9091)) +(: cnet_isa_80bfe06f00 (IsA restriction restraint) (STV 1.0 0.9091)) +(: cnet_isa_76dbc93131 (IsA restriction rule) (STV 1.0 0.9091)) +(: cnet_isa_625570fe5f (IsA restriction_endonuclease endonuclease) (STV 1.0 0.9091)) +(: cnet_isa_f58fa85fde (IsA restriction_fragment fragment) (STV 1.0 0.9091)) +(: cnet_isa_b72065ef03 (IsA restriction_site site) (STV 1.0 0.9091)) +(: cnet_isa_a623662a3e (IsA restrictive_clause subordinate_clause) (STV 1.0 0.9091)) +(: cnet_isa_00ee90b4e5 (IsA restrictiveness modification) (STV 1.0 0.9091)) +(: cnet_isa_b2b3d630b3 (IsA result ending) (STV 1.0 0.9091)) +(: cnet_isa_3d9a31ac19 (IsA resultant degree) (STV 1.0 0.9091)) +(: cnet_isa_8c4a8f31ad (IsA resultant_role semantic_role) (STV 1.0 0.9091)) +(: cnet_isa_5d2405c4a9 (IsA resulting_trust implied_trust) (STV 1.0 0.9091)) +(: cnet_isa_41f54abc9f (IsA resumption beginning) (STV 1.0 0.9091)) +(: cnet_isa_111f1d9798 (IsA resurrection revival) (STV 1.0 0.9091)) +(: cnet_isa_575ae3b548 (IsA resurrection_plant spikemoss) (STV 1.0 0.9091)) +(: cnet_isa_fd99b8483e (IsA resurvey survey) (STV 1.0 0.9091)) +(: cnet_isa_acd72c69e2 (IsA resuscitation revival) (STV 1.0 0.9091)) +(: cnet_isa_a6a4ca599c (IsA resuscitator breathing_device) (STV 1.0 0.9091)) +(: cnet_isa_3e7fe6ec6c (IsA resuspension suspension) (STV 1.0 0.9091)) +(: cnet_isa_2fffca1590 (IsA retail selling) (STV 1.0 0.9091)) +(: cnet_isa_68a46b1357 (IsA retail_chain chain) (STV 1.0 0.9091)) +(: cnet_isa_793099e0b0 (IsA retail_chain distributor) (STV 1.0 0.9091)) +(: cnet_isa_71c824d901 (IsA retail_price_index price_index) (STV 1.0 0.9091)) +(: cnet_isa_200c05ba50 (IsA retailer distributor) (STV 1.0 0.9091)) +(: cnet_isa_5330422b52 (IsA retailer merchant) (STV 1.0 0.9091)) +(: cnet_isa_00cbf1fa0f (IsA retailing selling) (STV 1.0 0.9091)) +(: cnet_isa_13a6278940 (IsA retained_object object) (STV 1.0 0.9091)) +(: cnet_isa_dc25415369 (IsA retainer dental_appliance) (STV 1.0 0.9091)) +(: cnet_isa_65fdc444d5 (IsA retainer fee) (STV 1.0 0.9091)) +(: cnet_isa_4f5f1af28b (IsA retaining_wall wall) (STV 1.0 0.9091)) +(: cnet_isa_cf28cdf0f6 (IsA retake take) (STV 1.0 0.9091)) +(: cnet_isa_6c56a62fd1 (IsA retaliation return) (STV 1.0 0.9091)) +(: cnet_isa_8087167731 (IsA retaliatory_eviction eviction) (STV 1.0 0.9091)) +(: cnet_isa_036643a2d3 (IsA retama rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e048350202 (IsA retardant agent) (STV 1.0 0.9091)) +(: cnet_isa_23b2e187d4 (IsA retardation stupidity) (STV 1.0 0.9091)) +(: cnet_isa_8625491708 (IsA retardation delay) (STV 1.0 0.9091)) +(: cnet_isa_6c7cb8175a (IsA retarded_depression depressive_disorder) (STV 1.0 0.9091)) +(: cnet_isa_29082070e8 (IsA rete_testis plexus) (STV 1.0 0.9091)) +(: cnet_isa_765494a01c (IsA retem shrub) (STV 1.0 0.9091)) +(: cnet_isa_a06c913f1a (IsA retention possession) (STV 1.0 0.9091)) +(: cnet_isa_caa1f117fd (IsA retention_basin catchment_area) (STV 1.0 0.9091)) +(: cnet_isa_f7e8f3ef7a (IsA retentiveness acquisitiveness) (STV 1.0 0.9091)) +(: cnet_isa_fac992f577 (IsA retentiveness impermeability) (STV 1.0 0.9091)) +(: cnet_isa_04e26d0ab3 (IsA reticle network) (STV 1.0 0.9091)) +(: cnet_isa_ffbdc16145 (IsA reticular_activating_system neural_network) (STV 1.0 0.9091)) +(: cnet_isa_5bd6eb3066 (IsA reticular_formation neural_network) (STV 1.0 0.9091)) +(: cnet_isa_7b5d315539 (IsA reticulated_python python) (STV 1.0 0.9091)) +(: cnet_isa_ea5b55c906 (IsA reticulation network) (STV 1.0 0.9091)) +(: cnet_isa_801e1eec56 (IsA reticulation formation) (STV 1.0 0.9091)) +(: cnet_isa_8df11b227e (IsA reticule bag) (STV 1.0 0.9091)) +(: cnet_isa_eec3e72385 (IsA reticuliterme arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_c382c28d7d (IsA reticuliterme_flanipe termite) (STV 1.0 0.9091)) +(: cnet_isa_b44a1602c6 (IsA reticuliterme_lucifugus termite) (STV 1.0 0.9091)) +(: cnet_isa_dd561ec5f3 (IsA reticulocyte red_blood_cell) (STV 1.0 0.9091)) +(: cnet_isa_c461a6e28d (IsA reticuloendothelial_system system) (STV 1.0 0.9091)) +(: cnet_isa_686e45293d (IsA reticulum stomach) (STV 1.0 0.9091)) +(: cnet_isa_6778ae2575 (IsA reticulum network) (STV 1.0 0.9091)) +(: cnet_isa_1bb414c003 (IsA retina membrane) (STV 1.0 0.9091)) +(: cnet_isa_5fe7051f47 (IsA retinal_detachment visual_impairment) (STV 1.0 0.9091)) +(: cnet_isa_27230266f3 (IsA retinal_scanning biometric_identification) (STV 1.0 0.9091)) +(: cnet_isa_a2b2c1b30a (IsA retinene pigment) (STV 1.0 0.9091)) +(: cnet_isa_dd425727ba (IsA retinitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_3f6d5b7a94 (IsA retinoblastoma malignant_tumor) (STV 1.0 0.9091)) +(: cnet_isa_ef1949af3c (IsA retinopathy eye_disease) (STV 1.0 0.9091)) +(: cnet_isa_6fa5977ccb (IsA retiree nonworker) (STV 1.0 0.9091)) +(: cnet_isa_0a658fc762 (IsA retirement termination) (STV 1.0 0.9091)) +(: cnet_isa_b807e3d58f (IsA retirement withdrawal) (STV 1.0 0.9091)) +(: cnet_isa_11bf9b0f62 (IsA retirement status) (STV 1.0 0.9091)) +(: cnet_isa_99b2152c64 (IsA retirement_community planned_community) (STV 1.0 0.9091)) +(: cnet_isa_63adb0d793 (IsA retort vessel) (STV 1.0 0.9091)) +(: cnet_isa_ed30d06dda (IsA retraction motion) (STV 1.0 0.9091)) +(: cnet_isa_ab6a70efeb (IsA retraction disavowal) (STV 1.0 0.9091)) +(: cnet_isa_1b41e71db6 (IsA retractor surgical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_ff6306a864 (IsA retraining training) (STV 1.0 0.9091)) +(: cnet_isa_230abdedee (IsA retread car_tire) (STV 1.0 0.9091)) +(: cnet_isa_5c40594b8e (IsA retreat withdrawal) (STV 1.0 0.9091)) +(: cnet_isa_67aa135e8c (IsA retreat area) (STV 1.0 0.9091)) +(: cnet_isa_ee673c89c5 (IsA retreat bugle_call) (STV 1.0 0.9091)) +(: cnet_isa_3c03393186 (IsA retreat signal) (STV 1.0 0.9091)) +(: cnet_isa_18e630c5db (IsA retreatant participant) (STV 1.0 0.9091)) +(: cnet_isa_5220f6b3d2 (IsA retreated people) (STV 1.0 0.9091)) +(: cnet_isa_072bba787a (IsA retrenchment economy) (STV 1.0 0.9091)) +(: cnet_isa_29377b79fb (IsA retrenchment entrenchment) (STV 1.0 0.9091)) +(: cnet_isa_f745614b30 (IsA retrial trial) (STV 1.0 0.9091)) +(: cnet_isa_b292fc3628 (IsA retribution correction) (STV 1.0 0.9091)) +(: cnet_isa_0f78bb08eb (IsA retribution penalty) (STV 1.0 0.9091)) +(: cnet_isa_48065004ef (IsA retrieval memory) (STV 1.0 0.9091)) +(: cnet_isa_7701807319 (IsA retrieval computer_operation) (STV 1.0 0.9091)) +(: cnet_isa_5d623d2d12 (IsA retriever sporting_dog) (STV 1.0 0.9091)) +(: cnet_isa_b694c4eb94 (IsA retro fashion) (STV 1.0 0.9091)) +(: cnet_isa_4cabb40be2 (IsA retrobulbar_neuritis neuritis) (STV 1.0 0.9091)) +(: cnet_isa_82c434b609 (IsA retrofit addition) (STV 1.0 0.9091)) +(: cnet_isa_c05461b690 (IsA retrofit component) (STV 1.0 0.9091)) +(: cnet_isa_0d2af713eb (IsA retroflection motion) (STV 1.0 0.9091)) +(: cnet_isa_d77f4dc33e (IsA retroflection articulation) (STV 1.0 0.9091)) +(: cnet_isa_de19398e67 (IsA retrograde_amnesia amnesia) (STV 1.0 0.9091)) +(: cnet_isa_9d2667d62d (IsA retromandibular_vein facial_vein) (STV 1.0 0.9091)) +(: cnet_isa_ab6e68cb0c (IsA retronym word) (STV 1.0 0.9091)) +(: cnet_isa_d89995bae5 (IsA retrophyllum gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_405332f683 (IsA retrorocket rocket) (STV 1.0 0.9091)) +(: cnet_isa_e554a83511 (IsA retrospect contemplation) (STV 1.0 0.9091)) +(: cnet_isa_75d62e6021 (IsA retrospection memory) (STV 1.0 0.9091)) +(: cnet_isa_ec1bf7978b (IsA retrospection mention) (STV 1.0 0.9091)) +(: cnet_isa_e6cf68a019 (IsA retrospective art_exhibition) (STV 1.0 0.9091)) +(: cnet_isa_554b0c5e05 (IsA retroversion translation) (STV 1.0 0.9091)) +(: cnet_isa_39abbec506 (IsA retroversion abnormality) (STV 1.0 0.9091)) +(: cnet_isa_895888baa4 (IsA retrovirus animal_virus) (STV 1.0 0.9091)) +(: cnet_isa_2851e86d53 (IsA retrovision vision) (STV 1.0 0.9091)) +(: cnet_isa_d42542b895 (IsA retsina wine) (STV 1.0 0.9091)) +(: cnet_isa_46983c8607 (IsA return arrival) (STV 1.0 0.9091)) +(: cnet_isa_0302661e92 (IsA return group_action) (STV 1.0 0.9091)) +(: cnet_isa_e370c0b13a (IsA return motion) (STV 1.0 0.9091)) +(: cnet_isa_2cabd0b571 (IsA return tennis_stroke) (STV 1.0 0.9091)) +(: cnet_isa_295d12f3c6 (IsA return run) (STV 1.0 0.9091)) +(: cnet_isa_281864e260 (IsA return turning) (STV 1.0 0.9091)) +(: cnet_isa_b5d320e5aa (IsA return income) (STV 1.0 0.9091)) +(: cnet_isa_885369231b (IsA return_address address) (STV 1.0 0.9091)) +(: cnet_isa_117380a034 (IsA return_key key) (STV 1.0 0.9091)) +(: cnet_isa_0600e1138c (IsA return_on_invested_capital rate_of_return) (STV 1.0 0.9091)) +(: cnet_isa_ebc1a211b0 (IsA returning_officer official) (STV 1.0 0.9091)) +(: cnet_isa_94bd229256 (IsA reuben sandwich) (STV 1.0 0.9091)) +(: cnet_isa_e80ae4d81d (IsA reunion union) (STV 1.0 0.9091)) +(: cnet_isa_620e564e2d (IsA reunion party) (STV 1.0 0.9091)) +(: cnet_isa_782a0a08c0 (IsA reuptake uptake) (STV 1.0 0.9091)) +(: cnet_isa_4fb229bae1 (IsA reusable_program program) (STV 1.0 0.9091)) +(: cnet_isa_51d66a9ae5 (IsA reusable_routine routine) (STV 1.0 0.9091)) +(: cnet_isa_0f519cfd7f (IsA revealed_religion religion) (STV 1.0 0.9091)) +(: cnet_isa_0cd90fe6d2 (IsA reveille awakening) (STV 1.0 0.9091)) +(: cnet_isa_ffa20f402b (IsA reveille bugle_call) (STV 1.0 0.9091)) +(: cnet_isa_557f1a883b (IsA revel merrymaking) (STV 1.0 0.9091)) +(: cnet_isa_eae28a7403 (IsA revelation new_idea) (STV 1.0 0.9091)) +(: cnet_isa_ac183b0173 (IsA revelation insight) (STV 1.0 0.9091)) +(: cnet_isa_276f0f2509 (IsA revelation informing) (STV 1.0 0.9091)) +(: cnet_isa_aba9644449 (IsA reveler celebrant) (STV 1.0 0.9091)) +(: cnet_isa_4c24c35885 (IsA revenant ghost) (STV 1.0 0.9091)) +(: cnet_isa_735d9931a9 (IsA revenant person) (STV 1.0 0.9091)) +(: cnet_isa_bff2e8b615 (IsA revenue_bond bond) (STV 1.0 0.9091)) +(: cnet_isa_89766ee61b (IsA revenue_sharing distribution) (STV 1.0 0.9091)) +(: cnet_isa_2d12c3fe9d (IsA revenue_stamp sheet) (STV 1.0 0.9091)) +(: cnet_isa_591305181c (IsA revenue_tariff duty) (STV 1.0 0.9091)) +(: cnet_isa_deb6264736 (IsA revenuer government_agent) (STV 1.0 0.9091)) +(: cnet_isa_404c77ccc9 (IsA reverberatory_furnace furnace) (STV 1.0 0.9091)) +(: cnet_isa_56dd503073 (IsA reverence action) (STV 1.0 0.9091)) +(: cnet_isa_41f60da935 (IsA reverence attitude) (STV 1.0 0.9091)) +(: cnet_isa_fcdd3b3d14 (IsA reverend title) (STV 1.0 0.9091)) +(: cnet_isa_ee96450b38 (IsA reverie abstractedness) (STV 1.0 0.9091)) +(: cnet_isa_bb626ac76b (IsA reverie dream) (STV 1.0 0.9091)) +(: cnet_isa_55ee3cc5e2 (IsA rever lapel) (STV 1.0 0.9091)) +(: cnet_isa_2d2101c44c (IsA reversal change_of_state) (STV 1.0 0.9091)) +(: cnet_isa_eb14ae9bbe (IsA reversal decision_making) (STV 1.0 0.9091)) +(: cnet_isa_b305307a00 (IsA reversal turning) (STV 1.0 0.9091)) +(: cnet_isa_30a4493546 (IsA reversal judgment) (STV 1.0 0.9091)) +(: cnet_isa_5c408353f7 (IsA reverse run) (STV 1.0 0.9091)) +(: cnet_isa_3970c96d14 (IsA reverse gear) (STV 1.0 0.9091)) +(: cnet_isa_f99eeff51e (IsA reverse side) (STV 1.0 0.9091)) +(: cnet_isa_536fe099b1 (IsA reverse happening) (STV 1.0 0.9091)) +(: cnet_isa_8ae8136a4d (IsA reverse opposition) (STV 1.0 0.9091)) +(: cnet_isa_93dac9e59e (IsA reverse_hang hang) (STV 1.0 0.9091)) +(: cnet_isa_7fecee3547 (IsA reverse_osmosis osmosis) (STV 1.0 0.9091)) +(: cnet_isa_b5a42adbeb (IsA reverse_split decrease) (STV 1.0 0.9091)) +(: cnet_isa_2dac887015 (IsA reverse_transcriptase polymerase) (STV 1.0 0.9091)) +(: cnet_isa_b5e4a7b2df (IsA reverse_transcriptase_inhibitor antiviral) (STV 1.0 0.9091)) +(: cnet_isa_88e007812d (IsA reversibility changeableness) (STV 1.0 0.9091)) +(: cnet_isa_4d7fd8eefa (IsA reversible garment) (STV 1.0 0.9091)) +(: cnet_isa_38dbe3c57e (IsA reversible_process process) (STV 1.0 0.9091)) +(: cnet_isa_eb876c85af (IsA reversing_thermometer thermometer) (STV 1.0 0.9091)) +(: cnet_isa_e001b78cee (IsA reversion change_of_direction) (STV 1.0 0.9091)) +(: cnet_isa_fd4b0c5b33 (IsA reversion mutation) (STV 1.0 0.9091)) +(: cnet_isa_a16585caf7 (IsA reversion interest) (STV 1.0 0.9091)) +(: cnet_isa_0e4aaa5a25 (IsA reversionary_annuity annuity) (STV 1.0 0.9091)) +(: cnet_isa_421b426548 (IsA reversioner party) (STV 1.0 0.9091)) +(: cnet_isa_35d88c4616 (IsA revetment barrier) (STV 1.0 0.9091)) +(: cnet_isa_e471f53595 (IsA revetment facing) (STV 1.0 0.9091)) +(: cnet_isa_d56145f67e (IsA review accounting) (STV 1.0 0.9091)) +(: cnet_isa_bf6e921199 (IsA review exercise) (STV 1.0 0.9091)) +(: cnet_isa_203bfd2326 (IsA review criticism) (STV 1.0 0.9091)) +(: cnet_isa_e9af5e5f64 (IsA review periodical) (STV 1.0 0.9091)) +(: cnet_isa_1897efc07a (IsA review proceeding) (STV 1.0 0.9091)) +(: cnet_isa_20ece66e2f (IsA review_copy book) (STV 1.0 0.9091)) +(: cnet_isa_cc0ca685f5 (IsA reviewer critic) (STV 1.0 0.9091)) +(: cnet_isa_24c6820f98 (IsA reviewing_stand stand) (STV 1.0 0.9091)) +(: cnet_isa_231c030d28 (IsA revision transformation) (STV 1.0 0.9091)) +(: cnet_isa_5e48f9225d (IsA revision rewriting) (STV 1.0 0.9091)) +(: cnet_isa_8a79b7bbb8 (IsA revisionism bolshevism) (STV 1.0 0.9091)) +(: cnet_isa_cb0e41d519 (IsA revisionist communist) (STV 1.0 0.9091)) +(: cnet_isa_8ecfec43df (IsA revival improvement) (STV 1.0 0.9091)) +(: cnet_isa_ae85ceee90 (IsA revival rally) (STV 1.0 0.9091)) +(: cnet_isa_faa0c6e5df (IsA revivalism evangelicalism) (STV 1.0 0.9091)) +(: cnet_isa_320c2d91f1 (IsA revocation abrogation) (STV 1.0 0.9091)) +(: cnet_isa_c88e8e037e (IsA revocation state) (STV 1.0 0.9091)) +(: cnet_isa_dfd52e2f4d (IsA revoke mistake) (STV 1.0 0.9091)) +(: cnet_isa_675bec3da0 (IsA revolution group_action) (STV 1.0 0.9091)) +(: cnet_isa_8925c29b9c (IsA revolution change) (STV 1.0 0.9091)) +(: cnet_isa_741b8f304b (IsA revolutionary_calendar solar_calendar) (STV 1.0 0.9091)) +(: cnet_isa_2fe4adaa32 (IsA revolutionary_calendar_month calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_4cf21f8dc4 (IsA revolutionary_group political_unit) (STV 1.0 0.9091)) +(: cnet_isa_e65d5a58cb (IsA revolutionism belief) (STV 1.0 0.9091)) +(: cnet_isa_88415b8f92 (IsA revolutionist radical) (STV 1.0 0.9091)) +(: cnet_isa_968f606601 (IsA revolution_per_minute rate) (STV 1.0 0.9091)) +(: cnet_isa_9c6dd861d0 (IsA revolver gun) (STV 1.0 0.9339)) +(: cnet_isa_fdda5cd0e6 (IsA revolver weapon) (STV 1.0 0.9608)) +(: cnet_isa_c327c83bf6 (IsA revolver pistol) (STV 1.0 0.9091)) +(: cnet_isa_b202acf12b (IsA revolving_charge_account credit_account) (STV 1.0 0.9091)) +(: cnet_isa_1272a4dbe3 (IsA revolving_door door) (STV 1.0 0.9091)) +(: cnet_isa_6bb37bd83e (IsA revolving_door social_group) (STV 1.0 0.9091)) +(: cnet_isa_fef56d2b85 (IsA revolving_fund fund) (STV 1.0 0.9091)) +(: cnet_isa_91751cf4fb (IsA revue variety_show) (STV 1.0 0.9091)) +(: cnet_isa_91b932f5dd (IsA rewa_rewa angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_07f0f3e0f8 (IsA reward blessing) (STV 1.0 0.9091)) +(: cnet_isa_488cb6ad0f (IsA reward offer) (STV 1.0 0.9091)) +(: cnet_isa_a3d6bb3f06 (IsA reward payment) (STV 1.0 0.9091)) +(: cnet_isa_376aad4a20 (IsA rewording rewriting) (STV 1.0 0.9091)) +(: cnet_isa_9aff6e7615 (IsA rewrite writing) (STV 1.0 0.9091)) +(: cnet_isa_e739610868 (IsA rewriting editing) (STV 1.0 0.9091)) +(: cnet_isa_89874e75b8 (IsA rex_begonia begonia) (STV 1.0 0.9091)) +(: cnet_isa_b0118fb132 (IsA reye_s_syndrome brain_disorder) (STV 1.0 0.9091)) +(: cnet_isa_9af4cd3daa (IsA reye_s_syndrome syndrome) (STV 1.0 0.9091)) +(: cnet_isa_df2d8ecc30 (IsA reynard fox) (STV 1.0 0.9091)) +(: cnet_isa_2792ac4a8b (IsA rh_antibody antibody) (STV 1.0 0.9091)) +(: cnet_isa_b90439ae0c (IsA rh_incompatibility incompatibility) (STV 1.0 0.9091)) +(: cnet_isa_986a9d4365 (IsA rh_negative_blood_type blood_group) (STV 1.0 0.9091)) +(: cnet_isa_ef53b51637 (IsA rh_positive_blood_type blood_group) (STV 1.0 0.9091)) +(: cnet_isa_8e4aa78df0 (IsA rhabdomyoma myoma) (STV 1.0 0.9091)) +(: cnet_isa_52c882f134 (IsA rhabdomyosarcoma sarcoma) (STV 1.0 0.9091)) +(: cnet_isa_29542becb3 (IsA rhabdoviridae arbovirus) (STV 1.0 0.9091)) +(: cnet_isa_20ef83400d (IsA rhabdovirus animal_virus) (STV 1.0 0.9091)) +(: cnet_isa_7e2d96b6d4 (IsA rhadamanthus greek_deity) (STV 1.0 0.9091)) +(: cnet_isa_fe426dde67 (IsA rhaeto_romance romance) (STV 1.0 0.9091)) +(: cnet_isa_1dd750d977 (IsA rhagade skin_disease) (STV 1.0 0.9091)) +(: cnet_isa_228014a811 (IsA rhagoletis arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_31b9480749 (IsA rhamnaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_373d0abc50 (IsA rhamnale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_43c8dc30ff (IsA rhamnus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2b32e79695 (IsA rhapis monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_784974b1a3 (IsA rhapsody epic_poem) (STV 1.0 0.9091)) +(: cnet_isa_76d3130448 (IsA rhapsody joy) (STV 1.0 0.9091)) +(: cnet_isa_f66a74c24e (IsA rhapsody music) (STV 1.0 0.9091)) +(: cnet_isa_f30719ebf8 (IsA rhea ratite) (STV 1.0 0.9091)) +(: cnet_isa_f0ee43bb4c (IsA rheidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_e1d19cfc3c (IsA rheiforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_0e3fdc8849 (IsA rheingold_arborvitae plant) (STV 1.0 0.9091)) +(: cnet_isa_96235c231f (IsA rhenium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_31ae914101 (IsA rheology physic) (STV 1.0 0.9091)) +(: cnet_isa_d802230adc (IsA rheometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_ffecacadb4 (IsA rheostat resistor) (STV 1.0 0.9091)) +(: cnet_isa_5f6f68b4a8 (IsA rhesus macaque) (STV 1.0 0.9091)) +(: cnet_isa_04b28a5c3e (IsA rhesus_factor antigen) (STV 1.0 0.9091)) +(: cnet_isa_7055430d4c (IsA rhetoric literary_study) (STV 1.0 0.9091)) +(: cnet_isa_3958de038d (IsA rhetoric expressive_style) (STV 1.0 0.9091)) +(: cnet_isa_06b6ccbc92 (IsA rhetorical_device device) (STV 1.0 0.9091)) +(: cnet_isa_68e09e2860 (IsA rhetorical_question statement) (STV 1.0 0.9091)) +(: cnet_isa_6af0207de8 (IsA rheum dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_cb90a99a0f (IsA rheum discharge) (STV 1.0 0.9091)) +(: cnet_isa_f707de498d (IsA rheumatic sick_person) (STV 1.0 0.9091)) +(: cnet_isa_28098f29e4 (IsA rheumatic_aortitis aortitis) (STV 1.0 0.9091)) +(: cnet_isa_8404778535 (IsA rheumatic_fever infectious_disease) (STV 1.0 0.9091)) +(: cnet_isa_7d15c1acef (IsA rheumatic_heart_disease heart_disease) (STV 1.0 0.9091)) +(: cnet_isa_81d029642f (IsA rheumatism disease) (STV 1.0 0.9091)) +(: cnet_isa_b5055cecaa (IsA rheumatoid_arthritis arthritis) (STV 1.0 0.9091)) +(: cnet_isa_c6cf713210 (IsA rheumatoid_arthritis autoimmune_disease) (STV 1.0 0.9091)) +(: cnet_isa_dd9f50bf16 (IsA rheumatoid_factor autoantibody) (STV 1.0 0.9091)) +(: cnet_isa_e9ccaa9f28 (IsA rheumatologist specialist) (STV 1.0 0.9091)) +(: cnet_isa_0714703661 (IsA rheumatology medicine) (STV 1.0 0.9091)) +(: cnet_isa_0d3acbe652 (IsA rhexia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_80134cfffb (IsA rhibhus hindu_deity) (STV 1.0 0.9091)) +(: cnet_isa_f0dcdaccb7 (IsA rhincodon fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_ea4956e6e1 (IsA rhincodontidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_9d12732f86 (IsA rhine_wine white_wine) (STV 1.0 0.9091)) +(: cnet_isa_15518268a4 (IsA rhinencephalon center) (STV 1.0 0.9091)) +(: cnet_isa_fb6bf50a25 (IsA rhinestone rock_crystal) (STV 1.0 0.9091)) +(: cnet_isa_921ed3b242 (IsA rhinion craniometric_point) (STV 1.0 0.9091)) +(: cnet_isa_46fe2ccb71 (IsA rhinitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_ddbc1c4ddf (IsA rhinobatidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_a25147d596 (IsA rhinocero animal) (STV 1.0 0.9339)) +(: cnet_isa_8c7d63663e (IsA rhinocero odd_toed_ungulate) (STV 1.0 0.9091)) +(: cnet_isa_9080f045c0 (IsA rhinocero_beetle scarabaeid_beetle) (STV 1.0 0.9091)) +(: cnet_isa_5d979fa316 (IsA rhinocerotidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_265ebec325 (IsA rhinolophidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_9f7b3dbf1d (IsA rhinonicteris mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_a9f389c907 (IsA rhinopathy pathology) (STV 1.0 0.9091)) +(: cnet_isa_9861ca65aa (IsA rhinophyma rhinopathy) (STV 1.0 0.9091)) +(: cnet_isa_4f59691d57 (IsA rhinoptera fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_9647696a22 (IsA rhinorrhea symptom) (STV 1.0 0.9091)) +(: cnet_isa_1d48cc90ff (IsA rhinoscope medical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_f1e7818ab3 (IsA rhinoscopy examination) (STV 1.0 0.9091)) +(: cnet_isa_b4f754522e (IsA rhinosporidiosis fungal_infection) (STV 1.0 0.9091)) +(: cnet_isa_b789f7a736 (IsA rhinosporidiosis rhinopathy) (STV 1.0 0.9091)) +(: cnet_isa_dad0e69a8f (IsA rhinostenosis rhinopathy) (STV 1.0 0.9091)) +(: cnet_isa_c4c7cec7e1 (IsA rhinostenosis stenosis) (STV 1.0 0.9091)) +(: cnet_isa_2f4b130118 (IsA rhinotermitidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_9a9faedb3e (IsA rhinotomy operation) (STV 1.0 0.9091)) +(: cnet_isa_501b042681 (IsA rhinotracheitis animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_c0893faab0 (IsA rhinovirus picornavirus) (STV 1.0 0.9091)) +(: cnet_isa_6eee483dcc (IsA rhipsalis caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_45337dcf19 (IsA rhizobiaceae bacteria_family) (STV 1.0 0.9091)) +(: cnet_isa_f5e1484f75 (IsA rhizobium bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_11e7623f01 (IsA rhizoctinia fungus) (STV 1.0 0.9091)) +(: cnet_isa_508f5c16e0 (IsA rhizoctinia_disease plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_8de3411d0d (IsA rhizoid fibril) (STV 1.0 0.9091)) +(: cnet_isa_4b0bc4c501 (IsA rhizomatous_begonia begonia) (STV 1.0 0.9091)) +(: cnet_isa_2ea332beaa (IsA rhizome stalk) (STV 1.0 0.9091)) +(: cnet_isa_5fc1fe51f7 (IsA rhizomorph hypha) (STV 1.0 0.9091)) +(: cnet_isa_d832df8e7c (IsA rhizophora dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d6f489a27c (IsA rhizophoraceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_a6f76e3bcf (IsA rhizopod protozoan) (STV 1.0 0.9091)) +(: cnet_isa_e2134db5ef (IsA rhizopoda class) (STV 1.0 0.9091)) +(: cnet_isa_952a934f37 (IsA rhizopogon fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_c378d22cb1 (IsA rhizopogon_idahoensis false_truffle) (STV 1.0 0.9091)) +(: cnet_isa_135ce3c4bd (IsA rhizopogonaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_a25e6b0998 (IsA rhizopus mold) (STV 1.0 0.9091)) +(: cnet_isa_7490079169 (IsA rhizotomy operation) (STV 1.0 0.9091)) +(: cnet_isa_db68dad547 (IsA rho letter) (STV 1.0 0.9091)) +(: cnet_isa_ca4db5e17f (IsA rhode_island state) (STV 1.0 0.9572)) +(: cnet_isa_68831f8564 (IsA rhode_island state_in_america) (STV 1.0 0.9454)) +(: cnet_isa_980811ad6b (IsA rhode_island_red chicken) (STV 1.0 0.9091)) +(: cnet_isa_579d467b16 (IsA rhode_islander american) (STV 1.0 0.9091)) +(: cnet_isa_cc6d588c49 (IsA rhode_grass finger_grass) (STV 1.0 0.9091)) +(: cnet_isa_1d6d81b380 (IsA rhode_scholar scholar) (STV 1.0 0.9091)) +(: cnet_isa_406bc0c081 (IsA rhodesian_ridgeback hunting_dog) (STV 1.0 0.9091)) +(: cnet_isa_d48735a19d (IsA rhodium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_a76baaa1b5 (IsA rhodochrosite mineral) (STV 1.0 0.9091)) +(: cnet_isa_c19be1c203 (IsA rhododendron shrub) (STV 1.0 0.9091)) +(: cnet_isa_00bc9cd699 (IsA rhodolite garnet) (STV 1.0 0.9091)) +(: cnet_isa_4d4c1afc90 (IsA rhodonite mineral) (STV 1.0 0.9091)) +(: cnet_isa_2da41a5c93 (IsA rhodophyceae class) (STV 1.0 0.9091)) +(: cnet_isa_9a011d156d (IsA rhodophyta division) (STV 1.0 0.9091)) +(: cnet_isa_e390ad7b11 (IsA rhodosphaera dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1513921293 (IsA rhodymenia protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_12c2c51ece (IsA rhodymeniaceae protoctist_family) (STV 1.0 0.9091)) +(: cnet_isa_c1dc45e5d8 (IsA rhoeadale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_e74ca3855c (IsA rhombohedron hexahedron) (STV 1.0 0.9091)) +(: cnet_isa_d10e19bbc9 (IsA rhombohedron parallelepiped) (STV 1.0 0.9091)) +(: cnet_isa_00a4b85b61 (IsA rhomboid skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_31cf7a3ea5 (IsA rhomboid parallelogram) (STV 1.0 0.9091)) +(: cnet_isa_9d60254c07 (IsA rhomboid_minor_muscle rhomboid) (STV 1.0 0.9091)) +(: cnet_isa_ee5d0dfc42 (IsA rhomboideus_major_muscle rhomboid) (STV 1.0 0.9091)) +(: cnet_isa_f7fb8bd685 (IsA rhombus parallelogram) (STV 1.0 0.9091)) +(: cnet_isa_10b7b78b43 (IsA rhonchus noise) (STV 1.0 0.9091)) +(: cnet_isa_5d7858f710 (IsA rhone_wine wine) (STV 1.0 0.9091)) +(: cnet_isa_66905f33fb (IsA rhubarb herb) (STV 1.0 0.9091)) +(: cnet_isa_da3a495960 (IsA rhubarb_pie pie) (STV 1.0 0.9091)) +(: cnet_isa_be707d6349 (IsA rhumb_line line) (STV 1.0 0.9091)) +(: cnet_isa_53e8f85c53 (IsA rhus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5610f7881d (IsA rhus_dermatitis contact_dermatitis) (STV 1.0 0.9091)) +(: cnet_isa_fe5d92517e (IsA rhyacotriton amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_cf5f72c5be (IsA rhyme versification) (STV 1.0 0.9091)) +(: cnet_isa_a6ee44d053 (IsA rhyme_royal stanza) (STV 1.0 0.9091)) +(: cnet_isa_9d51b42bf6 (IsA rhymer writer) (STV 1.0 0.9091)) +(: cnet_isa_c765ff5ee7 (IsA rhyming_slang cant) (STV 1.0 0.9091)) +(: cnet_isa_88dab6dcfb (IsA rhynchocephalia animal_order) (STV 1.0 0.9091)) +(: cnet_isa_c683939771 (IsA rhynchoelap reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_8fe1e95799 (IsA rhyncostylis monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ca44c87e4a (IsA rhynia fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_12f5cb13ee (IsA rhyniaceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_7b453a3fa1 (IsA rhyolite igneous_rock) (STV 1.0 0.9091)) +(: cnet_isa_2679dfed53 (IsA rhythm cyclicity) (STV 1.0 0.9091)) +(: cnet_isa_fb60158b53 (IsA rhythm musical_time) (STV 1.0 0.9091)) +(: cnet_isa_33a441d211 (IsA rhythm prosody) (STV 1.0 0.9091)) +(: cnet_isa_e8788a4778 (IsA rhythm template) (STV 1.0 0.9091)) +(: cnet_isa_229c1f3407 (IsA rhythm_and_blue black_music) (STV 1.0 0.9091)) +(: cnet_isa_f6920c9f57 (IsA rhythm_and_blue popular_music) (STV 1.0 0.9091)) +(: cnet_isa_d9c557e160 (IsA rhythm_and_blue_musician musician) (STV 1.0 0.9091)) +(: cnet_isa_4bee1c72ad (IsA rhythm_method_of_birth_control natural_family_planning) (STV 1.0 0.9091)) +(: cnet_isa_f516c02f19 (IsA rhythmicity sound_property) (STV 1.0 0.9091)) +(: cnet_isa_e44209fba7 (IsA rib molding) (STV 1.0 0.9091)) +(: cnet_isa_dca824d0fb (IsA rib support) (STV 1.0 0.9091)) +(: cnet_isa_1ba8459400 (IsA rib structure) (STV 1.0 0.9091)) +(: cnet_isa_a46712bc01 (IsA rib remark) (STV 1.0 0.9091)) +(: cnet_isa_ea19be4c27 (IsA rib cut) (STV 1.0 0.9091)) +(: cnet_isa_0a878d2465 (IsA rib bone) (STV 1.0 0.9091)) +(: cnet_isa_9b38f6eb18 (IsA rib_cage skeletal_structure) (STV 1.0 0.9091)) +(: cnet_isa_c008c3a0fa (IsA rib_joint_plier plier) (STV 1.0 0.9091)) +(: cnet_isa_d47f55d6b7 (IsA rib_roast roast) (STV 1.0 0.9091)) +(: cnet_isa_fdb05bfa8d (IsA ribald vulgarian) (STV 1.0 0.9091)) +(: cnet_isa_29bdf09703 (IsA ribaldry wit) (STV 1.0 0.9091)) +(: cnet_isa_fe5f97b7b2 (IsA riband ribbon) (STV 1.0 0.9091)) +(: cnet_isa_c9a35757b9 (IsA ribbed_vault vault) (STV 1.0 0.9091)) +(: cnet_isa_f6b1a7519f (IsA ribbing framework) (STV 1.0 0.9091)) +(: cnet_isa_d444a65cfe (IsA ribbon notion) (STV 1.0 0.9091)) +(: cnet_isa_f0c460542e (IsA ribbon strip) (STV 1.0 0.9091)) +(: cnet_isa_532db2d579 (IsA ribbon object) (STV 1.0 0.9091)) +(: cnet_isa_132beaba2d (IsA ribbon_development building_complex) (STV 1.0 0.9091)) +(: cnet_isa_1916e90452 (IsA ribbon_fern adder_s_tongue) (STV 1.0 0.9091)) +(: cnet_isa_68fb1c5c07 (IsA ribbon_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_b74c11b1c1 (IsA ribbon_leaved_water_plantain water_plantain) (STV 1.0 0.9091)) +(: cnet_isa_bc1360d70a (IsA ribbon_snake garter_snake) (STV 1.0 0.9091)) +(: cnet_isa_a527e7add0 (IsA ribbon_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_ae4ff1aaed (IsA ribbon_worm worm) (STV 1.0 0.9091)) +(: cnet_isa_fb618186a7 (IsA ribbonfish soft_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_a52b3777aa (IsA ribe plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_996b14b038 (IsA ribier vinifera_grape) (STV 1.0 0.9091)) +(: cnet_isa_8dc79174d5 (IsA ribonuclease transferase) (STV 1.0 0.9091)) +(: cnet_isa_42f9779918 (IsA ribonucleic_acid polymer) (STV 1.0 0.9091)) +(: cnet_isa_335fff4ed4 (IsA ribose carbohydrate) (STV 1.0 0.9091)) +(: cnet_isa_61b730a7ec (IsA ribosome organelle) (STV 1.0 0.9091)) +(: cnet_isa_c013baba02 (IsA rice grain) (STV 1.0 0.9524)) +(: cnet_isa_d2c13226ac (IsA rice starch) (STV 1.0 0.9091)) +(: cnet_isa_6c87370260 (IsA rice starche) (STV 1.0 0.9091)) +(: cnet_isa_c06f9f7568 (IsA rice cereal) (STV 1.0 0.9091)) +(: cnet_isa_23da965315 (IsA rice_and_beef both_food) (STV 1.0 0.9091)) +(: cnet_isa_2a081c7035 (IsA rice_and_beef food) (STV 1.0 0.9091)) +(: cnet_isa_3c7649c604 (IsA rice_paper paper) (STV 1.0 0.9091)) +(: cnet_isa_6017d148d5 (IsA rice_rat rat) (STV 1.0 0.9091)) +(: cnet_isa_f2c61b33f6 (IsA rice_weevil weevil) (STV 1.0 0.9091)) +(: cnet_isa_58373564eb (IsA ricegrass cereal) (STV 1.0 0.9091)) +(: cnet_isa_ec1c9da155 (IsA ricer kitchen_utensil) (STV 1.0 0.9091)) +(: cnet_isa_4463431db1 (IsA rich_people people) (STV 1.0 0.9091)) +(: cnet_isa_48516f3e82 (IsA rich_person person) (STV 1.0 0.9091)) +(: cnet_isa_2a36d9b7cd (IsA richard_roe party) (STV 1.0 0.9091)) +(: cnet_isa_23e6c49d91 (IsA richardson_s_geranium cranesbill) (STV 1.0 0.9091)) +(: cnet_isa_22ab8cadff (IsA richea dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_755377b9f3 (IsA richmondena bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_de068536a4 (IsA richness fruitfulness) (STV 1.0 0.9091)) +(: cnet_isa_105af6c3f3 (IsA richness shade) (STV 1.0 0.9091)) +(: cnet_isa_d9e39df926 (IsA richness value) (STV 1.0 0.9091)) +(: cnet_isa_e49c2ad550 (IsA richter_scale scale) (STV 1.0 0.9091)) +(: cnet_isa_8dcb6f7f65 (IsA richweed nettle) (STV 1.0 0.9091)) +(: cnet_isa_80e23baba1 (IsA ricin albumin) (STV 1.0 0.9091)) +(: cnet_isa_24a537644d (IsA ricin toxin) (STV 1.0 0.9091)) +(: cnet_isa_ca0b9b1b18 (IsA ricinoleic_acid unsaturated_fatty_acid) (STV 1.0 0.9091)) +(: cnet_isa_69f2d36a7d (IsA ricinus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2e6586be86 (IsA ricketiness movability) (STV 1.0 0.9091)) +(: cnet_isa_33def3a288 (IsA ricket avitaminosis) (STV 1.0 0.9091)) +(: cnet_isa_263b5c88cc (IsA rickettsia eubacteria) (STV 1.0 0.9091)) +(: cnet_isa_8e5a4df214 (IsA rickettsia_quintana rickettsia) (STV 1.0 0.9091)) +(: cnet_isa_d28a81a062 (IsA rickettsiaceae bacteria_family) (STV 1.0 0.9091)) +(: cnet_isa_980addd629 (IsA rickettsial_disease infectious_disease) (STV 1.0 0.9091)) +(: cnet_isa_67b1aa9279 (IsA rickettsiale animal_order) (STV 1.0 0.9091)) +(: cnet_isa_b9e4c4ba75 (IsA rickettsialpox rickettsial_disease) (STV 1.0 0.9091)) +(: cnet_isa_d370060c3e (IsA rickey mixed_drink) (STV 1.0 0.9091)) +(: cnet_isa_ca2220a89f (IsA rickrack trimming) (STV 1.0 0.9091)) +(: cnet_isa_6b2f892673 (IsA ricochet recoil) (STV 1.0 0.9091)) +(: cnet_isa_4d2f5a26f9 (IsA ricotta cheese) (STV 1.0 0.9091)) +(: cnet_isa_0428470fc7 (IsA rictus gape) (STV 1.0 0.9091)) +(: cnet_isa_e7c30f8796 (IsA riddle sieve) (STV 1.0 0.9091)) +(: cnet_isa_3c2fcd0faf (IsA riddle problem) (STV 1.0 0.9091)) +(: cnet_isa_ae7138c76a (IsA ride mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_6bb97f6604 (IsA rider article) (STV 1.0 0.9091)) +(: cnet_isa_6195d7e313 (IsA rider traveler) (STV 1.0 0.9091)) +(: cnet_isa_fdcdb8b280 (IsA rider_plate beam) (STV 1.0 0.9091)) +(: cnet_isa_679e025dc1 (IsA ridge beam) (STV 1.0 0.9091)) +(: cnet_isa_ad816571ff (IsA ridge process) (STV 1.0 0.9091)) +(: cnet_isa_d80c1b6930 (IsA ridge geological_formation) (STV 1.0 0.9091)) +(: cnet_isa_155e997a85 (IsA ridge natural_elevation) (STV 1.0 0.9091)) +(: cnet_isa_941be36857 (IsA ridge convex_shape) (STV 1.0 0.9091)) +(: cnet_isa_d61d9e64ba (IsA ridge_rope lifeline) (STV 1.0 0.9091)) +(: cnet_isa_8746852263 (IsA ridge_tile tile) (STV 1.0 0.9091)) +(: cnet_isa_960713c107 (IsA ridgeling colt) (STV 1.0 0.9091)) +(: cnet_isa_0fde4c65d4 (IsA ridicule synonym_of_derision) (STV 1.0 0.9339)) +(: cnet_isa_9e02b70620 (IsA ridicule disrespect) (STV 1.0 0.9091)) +(: cnet_isa_15f031ba02 (IsA riding sport) (STV 1.0 0.9091)) +(: cnet_isa_28fd02ed0c (IsA riding travel) (STV 1.0 0.9091)) +(: cnet_isa_8bb76dcac6 (IsA riding_bitt bollard) (STV 1.0 0.9091)) +(: cnet_isa_fbb93000d7 (IsA riding_boot boot) (STV 1.0 0.9091)) +(: cnet_isa_211c8da221 (IsA riding_crop whip) (STV 1.0 0.9091)) +(: cnet_isa_a8893981d6 (IsA riding_habit attire) (STV 1.0 0.9091)) +(: cnet_isa_8dd8cd2827 (IsA riding_master teacher) (STV 1.0 0.9091)) +(: cnet_isa_2ff549db01 (IsA riding_mower power_mower) (STV 1.0 0.9091)) +(: cnet_isa_c4024018ac (IsA riding_school school) (STV 1.0 0.9091)) +(: cnet_isa_644524dfa0 (IsA ridley sea_turtle) (STV 1.0 0.9091)) +(: cnet_isa_b401fcb1f6 (IsA riel cambodian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_9bfe516517 (IsA riesling rhine_wine) (STV 1.0 0.9091)) +(: cnet_isa_79e326e186 (IsA riesling vinifera) (STV 1.0 0.9091)) +(: cnet_isa_7b6775d23b (IsA riff ostinato) (STV 1.0 0.9091)) +(: cnet_isa_6695121061 (IsA riffian berber) (STV 1.0 0.9091)) +(: cnet_isa_34e53c7fc2 (IsA riffle shuffle) (STV 1.0 0.9091)) +(: cnet_isa_5abc40b4a4 (IsA rifle gun) (STV 1.0 0.9659)) +(: cnet_isa_5edd4ba29d (IsA rifle weapon) (STV 1.0 0.9454)) +(: cnet_isa_3af3b597c3 (IsA rifle firearm) (STV 1.0 0.9091)) +(: cnet_isa_a74906b45d (IsA rifle_ball bullet) (STV 1.0 0.9091)) +(: cnet_isa_ea7fc4eb6b (IsA rifle_butt butt) (STV 1.0 0.9091)) +(: cnet_isa_310624db9a (IsA rifle_grenade grenade) (STV 1.0 0.9091)) +(: cnet_isa_55b55b89de (IsA rifle_range range) (STV 1.0 0.9091)) +(: cnet_isa_56615d1314 (IsA riflebird bird_of_paradise) (STV 1.0 0.9091)) +(: cnet_isa_e5989f036e (IsA rifleman marksman) (STV 1.0 0.9091)) +(: cnet_isa_af3479a3bc (IsA rifleman soldier) (STV 1.0 0.9091)) +(: cnet_isa_3850667009 (IsA rifleman_bird new_zealand_wren) (STV 1.0 0.9091)) +(: cnet_isa_11ba9e059b (IsA rifle type_of_gun) (STV 1.0 0.9572)) +(: cnet_isa_68b4cd0464 (IsA rifle_and_handgun firearm) (STV 1.0 0.9091)) +(: cnet_isa_0f86b198bf (IsA rift crack) (STV 1.0 0.9091)) +(: cnet_isa_467ccdf514 (IsA rift opening) (STV 1.0 0.9091)) +(: cnet_isa_b15139e2a9 (IsA rift_valley valley) (STV 1.0 0.9091)) +(: cnet_isa_1ae5bb7100 (IsA rift_valley_fever hemorrhagic_fever) (STV 1.0 0.9091)) +(: cnet_isa_75a19d12b7 (IsA rig formation) (STV 1.0 0.9091)) +(: cnet_isa_e31f248293 (IsA rig gear) (STV 1.0 0.9091)) +(: cnet_isa_8e74b5fd6e (IsA rigatoni pasta) (STV 1.0 0.9091)) +(: cnet_isa_264305dfc3 (IsA rigger sable) (STV 1.0 0.9091)) +(: cnet_isa_1e68b5ae81 (IsA rigger sailing_vessel) (STV 1.0 0.9091)) +(: cnet_isa_30dea7e890 (IsA rigger craftsman) (STV 1.0 0.9091)) +(: cnet_isa_e055ee3742 (IsA rigger oilman) (STV 1.0 0.9091)) +(: cnet_isa_22f567a5c4 (IsA rigging gear) (STV 1.0 0.9091)) +(: cnet_isa_353d17db26 (IsA right turn) (STV 1.0 0.9091)) +(: cnet_isa_5ff38e8cd4 (IsA right abstraction) (STV 1.0 0.9091)) +(: cnet_isa_6622e0bcc3 (IsA right justice) (STV 1.0 0.9091)) +(: cnet_isa_766d6ca178 (IsA right hand) (STV 1.0 0.9091)) +(: cnet_isa_ee9923d1a8 (IsA right faction) (STV 1.0 0.9091)) +(: cnet_isa_931f7fd175 (IsA right position) (STV 1.0 0.9091)) +(: cnet_isa_a4482a4249 (IsA right interest) (STV 1.0 0.9091)) +(: cnet_isa_84f5084770 (IsA right_ascension angular_distance) (STV 1.0 0.9091)) +(: cnet_isa_42ba880373 (IsA right_atrium atrium_cordis) (STV 1.0 0.9091)) +(: cnet_isa_a073bf9a45 (IsA right_coronary_artery coronary_artery) (STV 1.0 0.9091)) +(: cnet_isa_81da0e5499 (IsA right_ear ear) (STV 1.0 0.9339)) +(: cnet_isa_c74dcd7239 (IsA right_field position) (STV 1.0 0.9091)) +(: cnet_isa_ba057362c7 (IsA right_field tract) (STV 1.0 0.9091)) +(: cnet_isa_4c6851ba6b (IsA right_fielder outfielder) (STV 1.0 0.9091)) +(: cnet_isa_a819319fca (IsA right_gastric_artery gastric_artery) (STV 1.0 0.9091)) +(: cnet_isa_bad63c6910 (IsA right_hand_man assistant) (STV 1.0 0.9091)) +(: cnet_isa_7a7327fc6a (IsA right_handed_pitcher pitcher) (STV 1.0 0.9091)) +(: cnet_isa_818265e116 (IsA right_handedness handedness) (STV 1.0 0.9091)) +(: cnet_isa_38001df2c7 (IsA right_hander person) (STV 1.0 0.9091)) +(: cnet_isa_7785347d5f (IsA right_hemisphere hemisphere) (STV 1.0 0.9091)) +(: cnet_isa_e86a344c18 (IsA right_leg leg) (STV 1.0 0.9091)) +(: cnet_isa_970dffb54b (IsA right_of_action right) (STV 1.0 0.9091)) +(: cnet_isa_29169065a4 (IsA right_of_election legal_right) (STV 1.0 0.9091)) +(: cnet_isa_73e5d306d2 (IsA right_of_entry legal_right) (STV 1.0 0.9091)) +(: cnet_isa_8e2494fea4 (IsA right_of_offset legal_right) (STV 1.0 0.9091)) +(: cnet_isa_24606d613b (IsA right_of_privacy legal_right) (STV 1.0 0.9091)) +(: cnet_isa_28a2abf481 (IsA right_of_re_entry legal_right) (STV 1.0 0.9091)) +(: cnet_isa_841e9a0f75 (IsA right_of_search right) (STV 1.0 0.9091)) +(: cnet_isa_6322390703 (IsA right_of_way passage) (STV 1.0 0.9091)) +(: cnet_isa_ad289b0f3e (IsA right_of_way easement) (STV 1.0 0.9091)) +(: cnet_isa_3197c65b59 (IsA right_of_way right) (STV 1.0 0.9091)) +(: cnet_isa_f8c87111e6 (IsA right_to_attorney civil_right) (STV 1.0 0.9091)) +(: cnet_isa_5095ae9f4c (IsA right_to_confront_accusor civil_right) (STV 1.0 0.9091)) +(: cnet_isa_b4c508ee27 (IsA right_to_due_process civil_right) (STV 1.0 0.9091)) +(: cnet_isa_558787f535 (IsA right_to_liberty human_right) (STV 1.0 0.9091)) +(: cnet_isa_0a24f89dde (IsA right_to_life human_right) (STV 1.0 0.9091)) +(: cnet_isa_913cbbee88 (IsA right_to_privacy human_right) (STV 1.0 0.9091)) +(: cnet_isa_8fc947af69 (IsA right_to_pursuit_of_happiness human_right) (STV 1.0 0.9091)) +(: cnet_isa_1273b60355 (IsA right_to_speedy_and_public_trial_by_jury civil_right) (STV 1.0 0.9091)) +(: cnet_isa_920dc5c228 (IsA right_to_vote franchise) (STV 1.0 0.9091)) +(: cnet_isa_b6e9209387 (IsA right_triangle triangle) (STV 1.0 0.9091)) +(: cnet_isa_3f84303e5d (IsA right_ventricle ventricle) (STV 1.0 0.9091)) +(: cnet_isa_21a65fe670 (IsA right_whale baleen_whale) (STV 1.0 0.9091)) +(: cnet_isa_511e95d44a (IsA righteousness morality) (STV 1.0 0.9091)) +(: cnet_isa_622e675fc6 (IsA righteye_flounder flatfish) (STV 1.0 0.9091)) +(: cnet_isa_4f44eb116e (IsA rightism political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_069ff2bebb (IsA rightist conservative) (STV 1.0 0.9091)) +(: cnet_isa_ab143d38ed (IsA rightness morality) (STV 1.0 0.9091)) +(: cnet_isa_1ecf385b87 (IsA right_offering offer) (STV 1.0 0.9091)) +(: cnet_isa_4d9baea05f (IsA rigidity inelasticity) (STV 1.0 0.9091)) +(: cnet_isa_87d5018e9d (IsA rigmarole procedure) (STV 1.0 0.9091)) +(: cnet_isa_f249f8be9a (IsA rigmarole nonsense) (STV 1.0 0.9091)) +(: cnet_isa_9781a8ca29 (IsA rigor_mortis stiffening) (STV 1.0 0.9091)) +(: cnet_isa_83061316bf (IsA rigor_mortis physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_4aca849b76 (IsA rigout costume) (STV 1.0 0.9091)) +(: cnet_isa_6ed1444bcc (IsA rijsttaffel dish) (STV 1.0 0.9091)) +(: cnet_isa_3e146ed38e (IsA riksmaal bokmal) (STV 1.0 0.9091)) +(: cnet_isa_40e1ace57c (IsA rill channel) (STV 1.0 0.9091)) +(: cnet_isa_c4fcaaa9da (IsA rim hoop) (STV 1.0 0.9091)) +(: cnet_isa_2e55f6c540 (IsA rim boundary) (STV 1.0 0.9091)) +(: cnet_isa_57ad9a951d (IsA rim round_shape) (STV 1.0 0.9091)) +(: cnet_isa_331b721636 (IsA rim_blight blight) (STV 1.0 0.9091)) +(: cnet_isa_2087f88712 (IsA rima orifice) (STV 1.0 0.9091)) +(: cnet_isa_d0cad5e907 (IsA rima_glottidis rima) (STV 1.0 0.9091)) +(: cnet_isa_fd283c6075 (IsA rima_vestibuli rima) (STV 1.0 0.9091)) +(: cnet_isa_3458fc322d (IsA rimu conifer) (STV 1.0 0.9091)) +(: cnet_isa_731b3f88d0 (IsA rind material) (STV 1.0 0.9091)) +(: cnet_isa_6a1a02b609 (IsA rinderpest animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_a1c77208ae (IsA ring piece_of_jewelry) (STV 1.0 0.9091)) +(: cnet_isa_c8847d6f1a (IsA ring jewelry) (STV 1.0 0.9091)) +(: cnet_isa_fc33d541ed (IsA ring platform) (STV 1.0 0.9091)) +(: cnet_isa_6d445c92f4 (IsA ring sound) (STV 1.0 0.9091)) +(: cnet_isa_059f7e8e40 (IsA ring toroid) (STV 1.0 0.9091)) +(: cnet_isa_30f619817c (IsA ring_around_rosy game) (STV 1.0 0.9091)) +(: cnet_isa_ba613be593 (IsA ring_containment containment) (STV 1.0 0.9091)) +(: cnet_isa_f4be7d07dc (IsA ring_finger finger) (STV 1.0 0.9091)) +(: cnet_isa_2719a3bea5 (IsA ring_girl girl) (STV 1.0 0.9091)) +(: cnet_isa_59e26fcb82 (IsA ring_necked_parakeet parakeet) (STV 1.0 0.9091)) +(: cnet_isa_21999cb7b4 (IsA ring_necked_pheasant pheasant) (STV 1.0 0.9091)) +(: cnet_isa_1d81c54242 (IsA ring_ouzel thrush) (STV 1.0 0.9091)) +(: cnet_isa_f9407e6132 (IsA ring_rot brown_rot) (STV 1.0 0.9091)) +(: cnet_isa_f0d6aaaf67 (IsA ring_rot_bacteria pseudomonad) (STV 1.0 0.9091)) +(: cnet_isa_578768d7b4 (IsA ring_theory math) (STV 1.0 0.9524)) +(: cnet_isa_ff62a719db (IsA ring_toss game) (STV 1.0 0.9091)) +(: cnet_isa_bf94f01284 (IsA ring_vaccination inoculating) (STV 1.0 0.9091)) +(: cnet_isa_f4f5b96cd9 (IsA ringdove turtledove) (STV 1.0 0.9091)) +(: cnet_isa_7f8cfd6963 (IsA ringer_s_solution isotonic_solution) (STV 1.0 0.9091)) +(: cnet_isa_b649c4dbdf (IsA ringer double) (STV 1.0 0.9091)) +(: cnet_isa_abded5b388 (IsA ringer imposter) (STV 1.0 0.9091)) +(: cnet_isa_5f1f145d23 (IsA ringer throw) (STV 1.0 0.9091)) +(: cnet_isa_1be44d8586 (IsA ringgit malaysian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_3dac64ad58 (IsA ringhal elapid) (STV 1.0 0.9091)) +(: cnet_isa_7603e0d038 (IsA ringing betrothal) (STV 1.0 0.9091)) +(: cnet_isa_fdfc85879e (IsA ringleader instigator) (STV 1.0 0.9091)) +(: cnet_isa_e39cf84a60 (IsA ringlet butterfly) (STV 1.0 0.9091)) +(: cnet_isa_408b5a9e93 (IsA ringlet ring) (STV 1.0 0.9091)) +(: cnet_isa_99ef904f61 (IsA ringmaster master_of_ceremony) (STV 1.0 0.9091)) +(: cnet_isa_e044a3eee3 (IsA ringneck_snake colubrid_snake) (STV 1.0 0.9091)) +(: cnet_isa_4e1d6d1949 (IsA ring gymnastic_apparatus) (STV 1.0 0.9091)) +(: cnet_isa_ad7b363904 (IsA ringside seating) (STV 1.0 0.9091)) +(: cnet_isa_cfaaa44687 (IsA ringtail golden_eagle) (STV 1.0 0.9091)) +(: cnet_isa_044dabef5b (IsA ringworm_bush senna) (STV 1.0 0.9091)) +(: cnet_isa_ef5688b8ec (IsA rink building) (STV 1.0 0.9091)) +(: cnet_isa_ae70693cb5 (IsA rinse hair_coloring) (STV 1.0 0.9091)) +(: cnet_isa_9966b49212 (IsA rinse removal) (STV 1.0 0.9091)) +(: cnet_isa_e05fd83b9b (IsA rinse wash) (STV 1.0 0.9091)) +(: cnet_isa_f99de2c24c (IsA rinse hair_dye) (STV 1.0 0.9091)) +(: cnet_isa_f438c2b9a7 (IsA rioja red_wine) (STV 1.0 0.9091)) +(: cnet_isa_4ff305f38d (IsA riot violence) (STV 1.0 0.9091)) +(: cnet_isa_b9e1688f0c (IsA riot_act rebuke) (STV 1.0 0.9091)) +(: cnet_isa_86207c3736 (IsA riot_act law) (STV 1.0 0.9091)) +(: cnet_isa_eb1a6b2e2b (IsA riot_control control) (STV 1.0 0.9091)) +(: cnet_isa_9e0b2f53eb (IsA riot_gun firearm) (STV 1.0 0.9091)) +(: cnet_isa_ffd9fc94e5 (IsA rioter troublemaker) (STV 1.0 0.9091)) +(: cnet_isa_9ad9061c5e (IsA rioting disorder) (STV 1.0 0.9091)) +(: cnet_isa_acc4c9422f (IsA rip turbulence) (STV 1.0 0.9091)) +(: cnet_isa_8c17bce7dd (IsA rip opening) (STV 1.0 0.9091)) +(: cnet_isa_6e6edc8285 (IsA rip_van_winkle sleeper) (STV 1.0 0.9091)) +(: cnet_isa_5bb54292be (IsA rip_van_winkle traditionalist) (STV 1.0 0.9091)) +(: cnet_isa_008c6d935d (IsA riparia bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_d5074bdf63 (IsA riparian_forest forest) (STV 1.0 0.9091)) +(: cnet_isa_9ef970de3b (IsA ripcord cord) (STV 1.0 0.9091)) +(: cnet_isa_3a69767de5 (IsA ripeness maturity) (STV 1.0 0.9091)) +(: cnet_isa_a9471ab83e (IsA ripening organic_process) (STV 1.0 0.9091)) +(: cnet_isa_9c04525b33 (IsA riposte counterattack) (STV 1.0 0.9091)) +(: cnet_isa_5a9a702b2b (IsA ripper murderer) (STV 1.0 0.9091)) +(: cnet_isa_f336fbca41 (IsA ripping_bar lever) (STV 1.0 0.9091)) +(: cnet_isa_846b7563f8 (IsA ripping_chisel chisel) (STV 1.0 0.9091)) +(: cnet_isa_9b387c17e5 (IsA ripple oscillation) (STV 1.0 0.9091)) +(: cnet_isa_d2956dac2a (IsA ripple wave) (STV 1.0 0.9091)) +(: cnet_isa_0c6b49ebf0 (IsA ripple_mark ridge) (STV 1.0 0.9091)) +(: cnet_isa_92446cc1a2 (IsA ripsaw handsaw) (STV 1.0 0.9091)) +(: cnet_isa_713d01d9bd (IsA riptide current) (STV 1.0 0.9091)) +(: cnet_isa_2fe005dd81 (IsA rise motion) (STV 1.0 0.9091)) +(: cnet_isa_5aa10b5327 (IsA rise increase) (STV 1.0 0.9091)) +(: cnet_isa_549d084146 (IsA rise change_of_location) (STV 1.0 0.9091)) +(: cnet_isa_ab3cfa84e2 (IsA rise emergence) (STV 1.0 0.9091)) +(: cnet_isa_5fc2d5f0c3 (IsA riser pipe) (STV 1.0 0.9091)) +(: cnet_isa_7089ef87b6 (IsA riser structural_member) (STV 1.0 0.9091)) +(: cnet_isa_20509f6332 (IsA riser person) (STV 1.0 0.9091)) +(: cnet_isa_977e553c6b (IsA risibility good_nature) (STV 1.0 0.9091)) +(: cnet_isa_ed442ba73e (IsA rising_trot trot) (STV 1.0 0.9091)) +(: cnet_isa_16378c2042 (IsA risk board_game) (STV 1.0 0.9339)) +(: cnet_isa_6f09e8ace5 (IsA risk venture) (STV 1.0 0.9091)) +(: cnet_isa_98aedb3d18 (IsA risk probability) (STV 1.0 0.9091)) +(: cnet_isa_ceb5839674 (IsA risk_arbitrage arbitrage) (STV 1.0 0.9091)) +(: cnet_isa_6c9bb3ac71 (IsA riskiness danger) (STV 1.0 0.9091)) +(: cnet_isa_05cea6ece4 (IsA risklessness safety) (STV 1.0 0.9091)) +(: cnet_isa_b75babc503 (IsA risotto dish) (STV 1.0 0.9091)) +(: cnet_isa_46309a6c43 (IsA riss_glaciation glaciation) (STV 1.0 0.9091)) +(: cnet_isa_b2eb659ab8 (IsA rissa bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_40b24b251c (IsA rissole dish) (STV 1.0 0.9091)) +(: cnet_isa_7b9f06f829 (IsA rite religious_ceremony) (STV 1.0 0.9091)) +(: cnet_isa_478228a1a1 (IsA rite_of_passage ritual) (STV 1.0 0.9091)) +(: cnet_isa_168d2b4e2c (IsA ritual custom) (STV 1.0 0.9091)) +(: cnet_isa_5fb02741c1 (IsA ritual habit) (STV 1.0 0.9091)) +(: cnet_isa_c3424bb95d (IsA ritual practice) (STV 1.0 0.9091)) +(: cnet_isa_406f99d98d (IsA ritual_dancing dancing) (STV 1.0 0.9091)) +(: cnet_isa_46550bdc50 (IsA ritualism practice) (STV 1.0 0.9091)) +(: cnet_isa_648a0c6c50 (IsA ritualism social_anthropology) (STV 1.0 0.9091)) +(: cnet_isa_29f7d4dcae (IsA ritualist advocate) (STV 1.0 0.9091)) +(: cnet_isa_0c81568a7e (IsA ritualist social_anthropologist) (STV 1.0 0.9091)) +(: cnet_isa_8834e7c867 (IsA ritz hotel) (STV 1.0 0.9091)) +(: cnet_isa_e5e2c3b0e9 (IsA ritz ostentation) (STV 1.0 0.9091)) +(: cnet_isa_cb3be0dc15 (IsA rival contestant) (STV 1.0 0.9091)) +(: cnet_isa_ca7f3edad2 (IsA river stream) (STV 1.0 0.9091)) +(: cnet_isa_e73d570964 (IsA river_boat boat) (STV 1.0 0.9091)) +(: cnet_isa_614e6ee1d1 (IsA river_boulder boulder) (STV 1.0 0.9091)) +(: cnet_isa_84ac1d72dc (IsA river_dolphin dolphin) (STV 1.0 0.9091)) +(: cnet_isa_f4dc579381 (IsA river_limpet gastropod) (STV 1.0 0.9091)) +(: cnet_isa_8ed8412b69 (IsA river_otter otter) (STV 1.0 0.9091)) +(: cnet_isa_15ad723b1a (IsA river_prawn prawn) (STV 1.0 0.9091)) +(: cnet_isa_e98a9c151a (IsA river_red_gum eucalyptus) (STV 1.0 0.9091)) +(: cnet_isa_99857e7504 (IsA river_shad shad) (STV 1.0 0.9091)) +(: cnet_isa_01f2d39cec (IsA riverbank bank) (STV 1.0 0.9091)) +(: cnet_isa_5d7a7cef27 (IsA riverbed bed) (STV 1.0 0.9091)) +(: cnet_isa_005598abf4 (IsA rivet pin) (STV 1.0 0.9091)) +(: cnet_isa_a6e33cc741 (IsA rivet_line line) (STV 1.0 0.9091)) +(: cnet_isa_8e441b2905 (IsA riveter skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_49e2c00625 (IsA riveting_machine machine) (STV 1.0 0.9091)) +(: cnet_isa_b0d7249dde (IsA rivina caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ac5ee1dcc6 (IsA rivulet stream) (STV 1.0 0.9091)) +(: cnet_isa_030213cdff (IsA rivulus killifish) (STV 1.0 0.9091)) +(: cnet_isa_5e34f149b1 (IsA riyal_omani omani_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_9569705e0d (IsA ro artificial_language) (STV 1.0 0.9091)) +(: cnet_isa_7c1138b2cd (IsA roach cyprinid) (STV 1.0 0.9091)) +(: cnet_isa_e5bb30010a (IsA roach butt) (STV 1.0 0.9091)) +(: cnet_isa_d763f3f41b (IsA roach hairdo) (STV 1.0 0.9091)) +(: cnet_isa_fe1c451540 (IsA roach_clip pincer) (STV 1.0 0.9091)) +(: cnet_isa_219160d0d7 (IsA road surface) (STV 1.0 0.9091)) +(: cnet_isa_e035c46810 (IsA road mean) (STV 1.0 0.9091)) +(: cnet_isa_c1c90cab66 (IsA road way) (STV 1.0 0.9091)) +(: cnet_isa_5f5ef7014c (IsA road_builder builder) (STV 1.0 0.9091)) +(: cnet_isa_7000361d0d (IsA road_construction construction) (STV 1.0 0.9091)) +(: cnet_isa_8d3edae27b (IsA road_gang gang) (STV 1.0 0.9091)) +(: cnet_isa_7fd11f161c (IsA road_hog driver) (STV 1.0 0.9091)) +(: cnet_isa_7616ba0de5 (IsA road_map map) (STV 1.0 0.9091)) +(: cnet_isa_8ca33f0e99 (IsA road_map guidance) (STV 1.0 0.9091)) +(: cnet_isa_e1eb1a258b (IsA road_map plan) (STV 1.0 0.9091)) +(: cnet_isa_0a22986f43 (IsA road_metal rock) (STV 1.0 0.9091)) +(: cnet_isa_dfadc801af (IsA road_rage violence) (STV 1.0 0.9091)) +(: cnet_isa_576e303c2b (IsA road_sense common_sense) (STV 1.0 0.9091)) +(: cnet_isa_ee68669449 (IsA road_show show) (STV 1.0 0.9091)) +(: cnet_isa_447aa8f6cc (IsA road_surface paved_surface) (STV 1.0 0.9091)) +(: cnet_isa_e5869713a7 (IsA road_test trial) (STV 1.0 0.9091)) +(: cnet_isa_769801a7f0 (IsA road_to_damascus landmark) (STV 1.0 0.9091)) +(: cnet_isa_765abf5625 (IsA roadbed bed) (STV 1.0 0.9091)) +(: cnet_isa_3fdb27c268 (IsA roadblock barrier) (STV 1.0 0.9091)) +(: cnet_isa_f5749156d9 (IsA roadbook guidebook) (STV 1.0 0.9091)) +(: cnet_isa_25040a7b2e (IsA roadhouse hostel) (STV 1.0 0.9091)) +(: cnet_isa_528fd67411 (IsA roadkill body) (STV 1.0 0.9091)) +(: cnet_isa_8e44c74307 (IsA roadman workman) (STV 1.0 0.9091)) +(: cnet_isa_c8a90d928d (IsA roadrunner bird) (STV 1.0 0.9091)) +(: cnet_isa_8c71bd3e39 (IsA roadrunner cuckoo) (STV 1.0 0.9091)) +(: cnet_isa_eb804fa05f (IsA road anchorage) (STV 1.0 0.9091)) +(: cnet_isa_f8fb0d4241 (IsA roadster car) (STV 1.0 0.9091)) +(: cnet_isa_0fe730bd5c (IsA roadway road) (STV 1.0 0.9091)) +(: cnet_isa_1e4eb4ab4d (IsA roadworthiness worthiness) (STV 1.0 0.9091)) +(: cnet_isa_76a7d42938 (IsA roan horse) (STV 1.0 0.9091)) +(: cnet_isa_b63695cf76 (IsA roan leather) (STV 1.0 0.9091)) +(: cnet_isa_c3370e8e10 (IsA roar cry) (STV 1.0 0.9091)) +(: cnet_isa_d04b60f00c (IsA roarer communicator) (STV 1.0 0.9091)) +(: cnet_isa_c3e2e5736d (IsA roast cut) (STV 1.0 0.9091)) +(: cnet_isa_f6925a35b4 (IsA roaster pan) (STV 1.0 0.9091)) +(: cnet_isa_580262bb63 (IsA roaster chicken) (STV 1.0 0.9091)) +(: cnet_isa_138b70ab0f (IsA roaster cook) (STV 1.0 0.9091)) +(: cnet_isa_1f83e9db1c (IsA roaster critic) (STV 1.0 0.9091)) +(: cnet_isa_a487aadf7e (IsA roasting cooking) (STV 1.0 0.9091)) +(: cnet_isa_8771bddd99 (IsA rob_roy manhattan) (STV 1.0 0.9091)) +(: cnet_isa_e8e931e76c (IsA robalo percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_35a9788ae8 (IsA robber thief) (STV 1.0 0.9091)) +(: cnet_isa_1963cf5014 (IsA robber_fly dipterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_b6e71d7a72 (IsA robber_frog frog) (STV 1.0 0.9091)) +(: cnet_isa_be52181251 (IsA robbery larceny) (STV 1.0 0.9091)) +(: cnet_isa_484fb2d31e (IsA robbery_conviction conviction) (STV 1.0 0.9091)) +(: cnet_isa_6caf290ea8 (IsA robbery_suspect suspect) (STV 1.0 0.9091)) +(: cnet_isa_a432de8416 (IsA robe garment) (STV 1.0 0.9091)) +(: cnet_isa_82af8c7520 (IsA robert_e_lee_s_birthday day) (STV 1.0 0.9091)) +(: cnet_isa_c4fb608302 (IsA robert_indiana artist) (STV 1.0 0.9091)) +(: cnet_isa_1b7ae5a6a5 (IsA robin_s_plantain fleabane) (STV 1.0 0.9091)) +(: cnet_isa_893c4aab20 (IsA robin bird) (STV 1.0 0.9693)) +(: cnet_isa_b51d1efa67 (IsA robin thrush) (STV 1.0 0.9091)) +(: cnet_isa_a0e557f4ce (IsA robin_goodfellow fairy) (STV 1.0 0.9091)) +(: cnet_isa_91d2c28661 (IsA robinia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6b220b8e83 (IsA roble quira) (STV 1.0 0.9091)) +(: cnet_isa_df03fb16f5 (IsA roble_beech southern_beech) (STV 1.0 0.9091)) +(: cnet_isa_66ebab5981 (IsA robot automation) (STV 1.0 0.9339)) +(: cnet_isa_ddfb75a085 (IsA robot machine) (STV 1.0 0.9091)) +(: cnet_isa_0cc9694f4c (IsA robot one_type_of_machine) (STV 1.0 0.9091)) +(: cnet_isa_1a5332f67c (IsA robot worker) (STV 1.0 0.9091)) +(: cnet_isa_37e54ffcaf (IsA robotic_telesurgery microsurgery) (STV 1.0 0.9091)) +(: cnet_isa_da014758f8 (IsA robotic artificial_intelligence) (STV 1.0 0.9091)) +(: cnet_isa_38e30e58a1 (IsA robotic_equipment equipment) (STV 1.0 0.9091)) +(: cnet_isa_f806d28b77 (IsA robusta_coffee coffee) (STV 1.0 0.9091)) +(: cnet_isa_5371906ce8 (IsA robustness characteristic) (STV 1.0 0.9091)) +(: cnet_isa_8f8667ec27 (IsA robustness strength) (STV 1.0 0.9091)) +(: cnet_isa_24e729bca0 (IsA roc mythical_monster) (STV 1.0 0.9091)) +(: cnet_isa_b9e8bf192f (IsA roccella lichen) (STV 1.0 0.9091)) +(: cnet_isa_819bf18cb8 (IsA roccellaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_8bd067300f (IsA roccus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_0036e48c1a (IsA rochelle_salt double_salt) (STV 1.0 0.9091)) +(: cnet_isa_81f0f3a691 (IsA rochon_prism optical_device) (STV 1.0 0.9091)) +(: cnet_isa_3f0d7098c7 (IsA rock music) (STV 1.0 0.9770)) +(: cnet_isa_87e898094d (IsA rock stone) (STV 1.0 0.9091)) +(: cnet_isa_fbea090fc0 (IsA rock lurch) (STV 1.0 0.9091)) +(: cnet_isa_89681c28a4 (IsA rock natural_object) (STV 1.0 0.9091)) +(: cnet_isa_0306ced2c9 (IsA rock good_person) (STV 1.0 0.9091)) +(: cnet_isa_083c4df782 (IsA rock material) (STV 1.0 0.9091)) +(: cnet_isa_60514d78ee (IsA rock_bass sunfish) (STV 1.0 0.9091)) +(: cnet_isa_097c869948 (IsA rock_beauty butterfly_fish) (STV 1.0 0.9091)) +(: cnet_isa_27d3a0f883 (IsA rock_bit drilling_bit) (STV 1.0 0.9091)) +(: cnet_isa_dfa23940f7 (IsA rock_bottom bottom) (STV 1.0 0.9091)) +(: cnet_isa_aa125d8941 (IsA rock_brake fern) (STV 1.0 0.9091)) +(: cnet_isa_0681676ade (IsA rock_cake cake) (STV 1.0 0.9091)) +(: cnet_isa_c3442ab525 (IsA rock_candy candy) (STV 1.0 0.9091)) +(: cnet_isa_694b9162c5 (IsA rock_climber climber) (STV 1.0 0.9091)) +(: cnet_isa_2ce4685922 (IsA rock_climbing climb) (STV 1.0 0.9091)) +(: cnet_isa_c908acf59f (IsA rock_climbing sport) (STV 1.0 0.9091)) +(: cnet_isa_6d42331d69 (IsA rock_concert concert) (STV 1.0 0.9091)) +(: cnet_isa_11783390c8 (IsA rock_cornish domestic_fowl) (STV 1.0 0.9091)) +(: cnet_isa_8e779dd5b1 (IsA rock_cornish_hen poultry) (STV 1.0 0.9091)) +(: cnet_isa_a5a06fd7a9 (IsA rock_crab crab) (STV 1.0 0.9091)) +(: cnet_isa_af151d4a11 (IsA rock_cress cress) (STV 1.0 0.9091)) +(: cnet_isa_ce860986bc (IsA rock_crystal quartz) (STV 1.0 0.9091)) +(: cnet_isa_cb0135001e (IsA rock_dove pigeon) (STV 1.0 0.9091)) +(: cnet_isa_4cf4129268 (IsA rock_elm elm) (STV 1.0 0.9091)) +(: cnet_isa_4217b447bc (IsA rock_garden garden) (STV 1.0 0.9091)) +(: cnet_isa_1952624e57 (IsA rock_geranium alumroot) (STV 1.0 0.9091)) +(: cnet_isa_c8386f08b2 (IsA rock_group dance_band) (STV 1.0 0.9091)) +(: cnet_isa_a8634c531a (IsA rock_gunnel gunnel) (STV 1.0 0.9091)) +(: cnet_isa_7227b1bea7 (IsA rock_hind hind) (STV 1.0 0.9091)) +(: cnet_isa_90e36b93a6 (IsA rock_hopper penguin) (STV 1.0 0.9091)) +(: cnet_isa_4919740cfe (IsA rock_hyrax hyrax) (STV 1.0 0.9091)) +(: cnet_isa_44c208a181 (IsA rock_n_roll popular_music) (STV 1.0 0.9091)) +(: cnet_isa_1ea7d4a7f5 (IsA rock_opera opera) (STV 1.0 0.9091)) +(: cnet_isa_27e80d500e (IsA rock_penstemon wildflower) (STV 1.0 0.9091)) +(: cnet_isa_decb158a88 (IsA rock_pink flame_flower) (STV 1.0 0.9091)) +(: cnet_isa_9ad8bb43ac (IsA rock_plant plant) (STV 1.0 0.9091)) +(: cnet_isa_e2849b77b3 (IsA rock_polypody polypody) (STV 1.0 0.9091)) +(: cnet_isa_f6c47ebeec (IsA rock_purslane herb) (STV 1.0 0.9091)) +(: cnet_isa_f17dec78a2 (IsA rock_python python) (STV 1.0 0.9091)) +(: cnet_isa_aa0680470e (IsA rock_rattlesnake rattlesnake) (STV 1.0 0.9091)) +(: cnet_isa_2bedc5e106 (IsA rock_salmon fish) (STV 1.0 0.9091)) +(: cnet_isa_87e81e86fc (IsA rock_sandwort sandwort) (STV 1.0 0.9091)) +(: cnet_isa_127041aa91 (IsA rock_sea_bass sea_bass) (STV 1.0 0.9091)) +(: cnet_isa_e183e7601d (IsA rock_spikemoss spikemoss) (STV 1.0 0.9091)) +(: cnet_isa_947de86c9c (IsA rock_squirrel ground_squirrel) (STV 1.0 0.9091)) +(: cnet_isa_ad6862b2e1 (IsA rock_star rocker) (STV 1.0 0.9091)) +(: cnet_isa_a343d73825 (IsA rock_star singer) (STV 1.0 0.9091)) +(: cnet_isa_19bd61e5d0 (IsA rock_wallaby wallaby) (STV 1.0 0.9091)) +(: cnet_isa_3d32b82a90 (IsA rock_wren new_zealand_wren) (STV 1.0 0.9091)) +(: cnet_isa_287252c727 (IsA rock_wren wren) (STV 1.0 0.9091)) +(: cnet_isa_7d9e9e058f (IsA rockabilly popular_music) (STV 1.0 0.9091)) +(: cnet_isa_d5e513d841 (IsA rocker ice_skate) (STV 1.0 0.9091)) +(: cnet_isa_baaa03a3f6 (IsA rocker support) (STV 1.0 0.9091)) +(: cnet_isa_bb88aff6a0 (IsA rocker trough) (STV 1.0 0.9091)) +(: cnet_isa_33e65330e9 (IsA rocker adolescent) (STV 1.0 0.9091)) +(: cnet_isa_010a08e308 (IsA rocker attendant) (STV 1.0 0.9091)) +(: cnet_isa_0f479c0e67 (IsA rocker musician) (STV 1.0 0.9091)) +(: cnet_isa_57e15787b0 (IsA rocker_arm lever) (STV 1.0 0.9091)) +(: cnet_isa_87311d22eb (IsA rocker youth_subculture) (STV 1.0 0.9091)) +(: cnet_isa_caef3449d4 (IsA rocket machine) (STV 1.0 0.9339)) +(: cnet_isa_9901fdf3bf (IsA rocket jet_engine) (STV 1.0 0.9091)) +(: cnet_isa_b13b83bece (IsA rocket vehicle) (STV 1.0 0.9091)) +(: cnet_isa_62a575ac47 (IsA rocket visual_signal) (STV 1.0 0.9091)) +(: cnet_isa_dfc8cf0066 (IsA rocket herb) (STV 1.0 0.9091)) +(: cnet_isa_ccbd656d11 (IsA rocket_base base) (STV 1.0 0.9091)) +(: cnet_isa_0a0ad0950f (IsA rocket_engineer engineer) (STV 1.0 0.9091)) +(: cnet_isa_612778c0c6 (IsA rocket_firing launching) (STV 1.0 0.9091)) +(: cnet_isa_3e7b8c3349 (IsA rocket_fuel charge) (STV 1.0 0.9091)) +(: cnet_isa_b814f5db0a (IsA rocket_fuel propellant) (STV 1.0 0.9091)) +(: cnet_isa_d37dd7ebce (IsA rocket_larkspur flower) (STV 1.0 0.9091)) +(: cnet_isa_5f2559c3ce (IsA rocket_propulsion reaction_propulsion) (STV 1.0 0.9091)) +(: cnet_isa_1d9ef1e88a (IsA rocket_range firing_range) (STV 1.0 0.9091)) +(: cnet_isa_59f8219a0b (IsA rocket_scientist thinker) (STV 1.0 0.9091)) +(: cnet_isa_842d90bd80 (IsA rocketry engineering) (STV 1.0 0.9091)) +(: cnet_isa_105613d0b7 (IsA rockfish scorpaenid) (STV 1.0 0.9091)) +(: cnet_isa_b45e63313d (IsA rockfish saltwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_fa51fdfb8a (IsA rockiness unevenness) (STV 1.0 0.9091)) +(: cnet_isa_de06f27213 (IsA rocking_chair chair) (STV 1.0 0.9091)) +(: cnet_isa_b1c891acbd (IsA rockrose helianthemum) (STV 1.0 0.9091)) +(: cnet_isa_a7f96049f3 (IsA rockrose shrub) (STV 1.0 0.9091)) +(: cnet_isa_2484aa4ce8 (IsA rockslide landslide) (STV 1.0 0.9091)) +(: cnet_isa_055ceecc7b (IsA rockweed brown_algae) (STV 1.0 0.9091)) +(: cnet_isa_087bd3c0e3 (IsA rocky_mountain_bee_plant spiderflower) (STV 1.0 0.9091)) +(: cnet_isa_523ae7bd82 (IsA rocky_mountain_dogbane dogbane) (STV 1.0 0.9091)) +(: cnet_isa_d32b33f2a2 (IsA rocky_mountain_jay canada_jay) (STV 1.0 0.9091)) +(: cnet_isa_b2da38966d (IsA rocky_mountain_pinon nut_pine) (STV 1.0 0.9091)) +(: cnet_isa_22906e3aec (IsA rocky_mountain_spotted_fever spotted_fever) (STV 1.0 0.9091)) +(: cnet_isa_83d904dcad (IsA rocky_mountain_whitefish whitefish) (STV 1.0 0.9091)) +(: cnet_isa_82e3d121e8 (IsA rococo artistic_style) (STV 1.0 0.9091)) +(: cnet_isa_973fee1126 (IsA rod pole) (STV 1.0 0.9091)) +(: cnet_isa_5834a793ba (IsA rod bacteria) (STV 1.0 0.9091)) +(: cnet_isa_6d761497fe (IsA rod implement) (STV 1.0 0.9091)) +(: cnet_isa_4ff18a9fae (IsA rod visual_cell) (STV 1.0 0.9091)) +(: cnet_isa_bf73ef0fa8 (IsA rodent animal) (STV 1.0 0.9091)) +(: cnet_isa_b20b037d67 (IsA rodent placental) (STV 1.0 0.9091)) +(: cnet_isa_59062bf42d (IsA rodentia animal_order) (STV 1.0 0.9091)) +(: cnet_isa_419522a82d (IsA rodent mammal) (STV 1.0 0.9339)) +(: cnet_isa_fbfddd7dc8 (IsA rodeo exhibition) (STV 1.0 0.9091)) +(: cnet_isa_38711f390b (IsA rodeo pen) (STV 1.0 0.9091)) +(: cnet_isa_c916d16a7e (IsA rodolia arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_a58eab8c7d (IsA roe egg) (STV 1.0 0.9091)) +(: cnet_isa_f47dacca2d (IsA roe spawn) (STV 1.0 0.9091)) +(: cnet_isa_565b1c700d (IsA roe seafood) (STV 1.0 0.9091)) +(: cnet_isa_418ccdbf73 (IsA roe_deer deer) (STV 1.0 0.9091)) +(: cnet_isa_2ad0156cc1 (IsA roebuck roe_deer) (STV 1.0 0.9091)) +(: cnet_isa_5ab9da16bc (IsA roentgen radioactivity_unit) (STV 1.0 0.9091)) +(: cnet_isa_47140bc8fa (IsA roentgenium chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_5d9acc262e (IsA roentgenogram radiogram) (STV 1.0 0.9091)) +(: cnet_isa_2e6ab4a745 (IsA roentgenography diagnostic_procedure) (STV 1.0 0.9091)) +(: cnet_isa_fbc81606fe (IsA roentgenography radiography) (STV 1.0 0.9091)) +(: cnet_isa_e3b79d3419 (IsA rogation invocation) (STV 1.0 0.9091)) +(: cnet_isa_5965e5f10e (IsA rogation_day christian_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_75291b6d11 (IsA rogue_s_gallery collection) (STV 1.0 0.9091)) +(: cnet_isa_68caa3d6a9 (IsA rogue villain) (STV 1.0 0.9091)) +(: cnet_isa_a78947cd6e (IsA rogue_elephant elephant) (STV 1.0 0.9091)) +(: cnet_isa_55601908a0 (IsA rogue_state state) (STV 1.0 0.9091)) +(: cnet_isa_4ce44d53c5 (IsA roisterer reveler) (STV 1.0 0.9091)) +(: cnet_isa_c232648a55 (IsA role activity) (STV 1.0 0.9091)) +(: cnet_isa_dafedee4b5 (IsA roleplaying acting) (STV 1.0 0.9091)) +(: cnet_isa_c6a0ee91a5 (IsA roll flight_maneuver) (STV 1.0 0.9091)) +(: cnet_isa_0240160e1e (IsA roll gait) (STV 1.0 0.9091)) +(: cnet_isa_c122cd851f (IsA roll propulsion) (STV 1.0 0.9091)) +(: cnet_isa_134be14b5a (IsA roll cylinder) (STV 1.0 0.9091)) +(: cnet_isa_ffb059dba8 (IsA roll film) (STV 1.0 0.9091)) +(: cnet_isa_99ba833090 (IsA roll list) (STV 1.0 0.9091)) +(: cnet_isa_5f93b9dc02 (IsA roll_call utterance) (STV 1.0 0.9091)) +(: cnet_isa_121efe6212 (IsA roll_film film) (STV 1.0 0.9091)) +(: cnet_isa_4ccff77367 (IsA roll_of_tobacco tobacco) (STV 1.0 0.9091)) +(: cnet_isa_0dc4892de8 (IsA roll_on dispenser) (STV 1.0 0.9091)) +(: cnet_isa_ce97281de5 (IsA roll_on foundation_garment) (STV 1.0 0.9091)) +(: cnet_isa_dc76b9afa2 (IsA roll_on_roll_off conveyance) (STV 1.0 0.9091)) +(: cnet_isa_71acc4103d (IsA rollback decrease) (STV 1.0 0.9091)) +(: cnet_isa_9bfd62001b (IsA rollback offense) (STV 1.0 0.9091)) +(: cnet_isa_a48d07cfd2 (IsA rolled_biscuit biscuit) (STV 1.0 0.9091)) +(: cnet_isa_de85ef03b0 (IsA roller grounder) (STV 1.0 0.9091)) +(: cnet_isa_f5abbe6a62 (IsA roller coraciiform_bird) (STV 1.0 0.9091)) +(: cnet_isa_4a7d3516a4 (IsA roller domestic_pigeon) (STV 1.0 0.9091)) +(: cnet_isa_528372aba7 (IsA roller cylinder) (STV 1.0 0.9091)) +(: cnet_isa_c6437e9bcb (IsA roller wheel) (STV 1.0 0.9091)) +(: cnet_isa_bc82c01fb6 (IsA roller wave) (STV 1.0 0.9091)) +(: cnet_isa_b4e548febd (IsA roller_bandage bandage) (STV 1.0 0.9091)) +(: cnet_isa_2a563ed75b (IsA roller_blade skate) (STV 1.0 0.9091)) +(: cnet_isa_f051d492e5 (IsA roller_blind window_shade) (STV 1.0 0.9091)) +(: cnet_isa_cadd90008c (IsA roller_coaster elevated_railway) (STV 1.0 0.9091)) +(: cnet_isa_e3ba538fb2 (IsA roller_coaster ride) (STV 1.0 0.9091)) +(: cnet_isa_4f3c856f8e (IsA roller_coaster turbulence) (STV 1.0 0.9091)) +(: cnet_isa_06d6115282 (IsA roller_skate skate) (STV 1.0 0.9091)) +(: cnet_isa_b7ef5bae4b (IsA roller_skater skater) (STV 1.0 0.9091)) +(: cnet_isa_cdb86d9cfc (IsA roller_skating skating) (STV 1.0 0.9091)) +(: cnet_isa_8364be803a (IsA roller_towel towel) (STV 1.0 0.9091)) +(: cnet_isa_4e7cb86290 (IsA rollerblader roller_skater) (STV 1.0 0.9091)) +(: cnet_isa_91ec7c82e3 (IsA rollerblading roller_skating) (STV 1.0 0.9091)) +(: cnet_isa_973f1f5289 (IsA rolling robbery) (STV 1.0 0.9091)) +(: cnet_isa_84c650b2ce (IsA rolling_hitch hitch) (STV 1.0 0.9091)) +(: cnet_isa_f5fe1bc6ca (IsA rolling_mill steel_mill) (STV 1.0 0.9091)) +(: cnet_isa_73e3543af4 (IsA rolling_pin kitchen_utensil) (STV 1.0 0.9091)) +(: cnet_isa_17bf7262c1 (IsA rolling_stock wheeled_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_0b05cc613e (IsA rollmop hor_d_oeuvre) (STV 1.0 0.9091)) +(: cnet_isa_1ec18d4e4a (IsA rollmop pickled_herring) (STV 1.0 0.9091)) +(: cnet_isa_13a979d9e3 (IsA rollover change) (STV 1.0 0.9091)) +(: cnet_isa_03c6548820 (IsA roly_poly pudding) (STV 1.0 0.9091)) +(: cnet_isa_bcec8a5114 (IsA romaic modern_greek) (STV 1.0 0.9091)) +(: cnet_isa_1863e67af1 (IsA roman proportional_font) (STV 1.0 0.9091)) +(: cnet_isa_470bf980e0 (IsA roman european) (STV 1.0 0.9091)) +(: cnet_isa_88d73bac6d (IsA roman italian) (STV 1.0 0.9091)) +(: cnet_isa_2ec25f1552 (IsA roman_alphabet alphabet) (STV 1.0 0.9091)) +(: cnet_isa_4274e1f2f0 (IsA roman_alphabet bicameral_script) (STV 1.0 0.9091)) +(: cnet_isa_a27d2c9348 (IsA roman_arch round_arch) (STV 1.0 0.9091)) +(: cnet_isa_e885ae3654 (IsA roman_architecture classical_architecture) (STV 1.0 0.9091)) +(: cnet_isa_af630dcd95 (IsA roman_building antiquity) (STV 1.0 0.9091)) +(: cnet_isa_f98010bd3e (IsA roman_building building) (STV 1.0 0.9091)) +(: cnet_isa_71301460d4 (IsA roman_calendar lunar_calendar) (STV 1.0 0.9091)) +(: cnet_isa_378a72b1a3 (IsA roman_candle firework) (STV 1.0 0.9091)) +(: cnet_isa_eff29e1b7a (IsA roman_catholic catholic_church) (STV 1.0 0.9091)) +(: cnet_isa_7f2dc61dcf (IsA roman_catholic catholic) (STV 1.0 0.9091)) +(: cnet_isa_3a7a955372 (IsA roman_catholicism christianity) (STV 1.0 0.9091)) +(: cnet_isa_f14fbb4df3 (IsA roman_clef novel) (STV 1.0 0.9091)) +(: cnet_isa_5e861f313c (IsA roman_deity deity) (STV 1.0 0.9091)) +(: cnet_isa_4831d2c8e9 (IsA roman_fleuve novel) (STV 1.0 0.9091)) +(: cnet_isa_07b33e5592 (IsA roman_hyacinth hyacinth) (STV 1.0 0.9091)) +(: cnet_isa_8fd9ff4d45 (IsA roman_law legal_code) (STV 1.0 0.9091)) +(: cnet_isa_46ae45fa98 (IsA roman_legion host) (STV 1.0 0.9091)) +(: cnet_isa_a50cc85e72 (IsA roman_mythology classical_mythology) (STV 1.0 0.9091)) +(: cnet_isa_ea37723037 (IsA roman_nettle nettle) (STV 1.0 0.9091)) +(: cnet_isa_683e433152 (IsA roman_nose nose) (STV 1.0 0.9091)) +(: cnet_isa_597b7ee869 (IsA roman_numeral numeral) (STV 1.0 0.9091)) +(: cnet_isa_f6e1ede196 (IsA roman_pace linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_8071790e9b (IsA roman_time time) (STV 1.0 0.9091)) +(: cnet_isa_6c6c09f1fe (IsA roman_wormwood corydalis) (STV 1.0 0.9091)) +(: cnet_isa_53bfe9faf1 (IsA roman_wormwood wormwood) (STV 1.0 0.9091)) +(: cnet_isa_98b7dc8951 (IsA romanal artificial_language) (STV 1.0 0.9091)) +(: cnet_isa_4468b2000c (IsA romance latin) (STV 1.0 0.9091)) +(: cnet_isa_13de71a6e4 (IsA romance novel) (STV 1.0 0.9091)) +(: cnet_isa_3b8404ad90 (IsA romanesque architectural_style) (STV 1.0 0.9091)) +(: cnet_isa_cf60e3de7d (IsA romania country) (STV 1.0 0.9091)) +(: cnet_isa_6a988f1c18 (IsA romanian romance) (STV 1.0 0.9091)) +(: cnet_isa_af084aac6b (IsA romanian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_da81073e9d (IsA romanism catholicism) (STV 1.0 0.9091)) +(: cnet_isa_361cc77349 (IsA romanoff emperor) (STV 1.0 0.9091)) +(: cnet_isa_f45eede51a (IsA romanov dynasty) (STV 1.0 0.9091)) +(: cnet_isa_d5f814501a (IsA romanov royalty) (STV 1.0 0.9091)) +(: cnet_isa_b921d26bb3 (IsA romansh rhaeto_romance) (STV 1.0 0.9091)) +(: cnet_isa_db3185349e (IsA romantic idealist) (STV 1.0 0.9091)) +(: cnet_isa_334367192e (IsA romanticism idealism) (STV 1.0 0.9091)) +(: cnet_isa_5041f90619 (IsA romanticism quality) (STV 1.0 0.9091)) +(: cnet_isa_c22897f5a6 (IsA romanticism artistic_style) (STV 1.0 0.9091)) +(: cnet_isa_debaccd26e (IsA romanticism humanistic_discipline) (STV 1.0 0.9091)) +(: cnet_isa_c9fec84906 (IsA romanticist artist) (STV 1.0 0.9091)) +(: cnet_isa_17a845c70a (IsA romany sanskrit) (STV 1.0 0.9091)) +(: cnet_isa_7d6871085d (IsA rome city_in_italy) (STV 1.0 0.9091)) +(: cnet_isa_80ccc09d4d (IsA rome in_italy) (STV 1.0 0.9339)) +(: cnet_isa_34f35dea37 (IsA rome leadership) (STV 1.0 0.9091)) +(: cnet_isa_433634482a (IsA rome_beauty cooking_apple) (STV 1.0 0.9091)) +(: cnet_isa_63bc0a737b (IsA romeo lover) (STV 1.0 0.9091)) +(: cnet_isa_39f625af4c (IsA rommany indian) (STV 1.0 0.9091)) +(: cnet_isa_ab8dcfe94c (IsA romneya dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8b813b56be (IsA romper garment) (STV 1.0 0.9091)) +(: cnet_isa_7e1f0c936e (IsA romper person) (STV 1.0 0.9091)) +(: cnet_isa_fe4e913291 (IsA ron west_chadic) (STV 1.0 0.9091)) +(: cnet_isa_df319c35b7 (IsA rondeau poem) (STV 1.0 0.9091)) +(: cnet_isa_525d6df590 (IsA rondelet rondeau) (STV 1.0 0.9091)) +(: cnet_isa_d4f7c9c744 (IsA rondo classical_music) (STV 1.0 0.9091)) +(: cnet_isa_6b95504ed5 (IsA rood_screen screen) (STV 1.0 0.9091)) +(: cnet_isa_c3e9f78327 (IsA roof protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_a628e84070 (IsA roof covering) (STV 1.0 0.9091)) +(: cnet_isa_56c54f4744 (IsA roof_garden garden) (STV 1.0 0.9091)) +(: cnet_isa_34b38d963b (IsA roof_peak vertex) (STV 1.0 0.9091)) +(: cnet_isa_151ff982f8 (IsA roofer craftsman) (STV 1.0 0.9091)) +(: cnet_isa_37df3fcf71 (IsA roofing trade) (STV 1.0 0.9091)) +(: cnet_isa_ba9feec48a (IsA roofing material) (STV 1.0 0.9091)) +(: cnet_isa_61c8fb775c (IsA roofing_material building_material) (STV 1.0 0.9091)) +(: cnet_isa_eee6ceaaef (IsA roofing_paper paper) (STV 1.0 0.9091)) +(: cnet_isa_97485e014e (IsA roofing_paper roofing_material) (STV 1.0 0.9091)) +(: cnet_isa_d60ba5f851 (IsA rooftop top) (STV 1.0 0.9091)) +(: cnet_isa_6add13162e (IsA rooibo shrub) (STV 1.0 0.9091)) +(: cnet_isa_8ab94f08c4 (IsA rook bird) (STV 1.0 0.9339)) +(: cnet_isa_50d6b638cf (IsA rook chess_game_piece) (STV 1.0 0.9091)) +(: cnet_isa_be64cbb110 (IsA rook chess_piece) (STV 1.0 0.9608)) +(: cnet_isa_53e8e04315 (IsA rook piece_of_chess_set) (STV 1.0 0.9339)) +(: cnet_isa_aaa12e8b52 (IsA rook corvine_bird) (STV 1.0 0.9091)) +(: cnet_isa_75afba4a86 (IsA rookery breeding_ground) (STV 1.0 0.9091)) +(: cnet_isa_961e5a03bd (IsA room interior) (STV 1.0 0.9091)) +(: cnet_isa_e05333f99d (IsA room part_of_building) (STV 1.0 0.9339)) +(: cnet_isa_da617dd82d (IsA room part_of_house) (STV 1.0 0.9091)) +(: cnet_isa_0a8730196b (IsA room place) (STV 1.0 0.9091)) +(: cnet_isa_a440e281a7 (IsA room area) (STV 1.0 0.9091)) +(: cnet_isa_bdb11b1abf (IsA room gathering) (STV 1.0 0.9091)) +(: cnet_isa_271c6450cc (IsA room position) (STV 1.0 0.9091)) +(: cnet_isa_89a1e18dc5 (IsA room opportunity) (STV 1.0 0.9091)) +(: cnet_isa_437edba6cd (IsA room_and_board lodging_and_food) (STV 1.0 0.9091)) +(: cnet_isa_5e35b69f06 (IsA room_clerk desk_clerk) (STV 1.0 0.9091)) +(: cnet_isa_de88741050 (IsA room_light light) (STV 1.0 0.9091)) +(: cnet_isa_12e8f2beb2 (IsA room_rate rate) (STV 1.0 0.9091)) +(: cnet_isa_0fc7c1d04d (IsA room_temperature temperature) (STV 1.0 0.9091)) +(: cnet_isa_a9a42d44f7 (IsA roomette compartment) (STV 1.0 0.9091)) +(: cnet_isa_d58328feac (IsA roomful containerful) (STV 1.0 0.9091)) +(: cnet_isa_72b3dcef2c (IsA roominess breadth) (STV 1.0 0.9091)) +(: cnet_isa_5e802f8ba1 (IsA roommate friend) (STV 1.0 0.9091)) +(: cnet_isa_264f11d70a (IsA room bedroom) (STV 1.0 0.9339)) +(: cnet_isa_4fea123fa3 (IsA roost perch) (STV 1.0 0.9091)) +(: cnet_isa_44f0cdeebf (IsA roost shelter) (STV 1.0 0.9091)) +(: cnet_isa_0a50984800 (IsA rooster chicken) (STV 1.0 0.9454)) +(: cnet_isa_d0072648dd (IsA rooster male_chicken) (STV 1.0 0.9091)) +(: cnet_isa_fa9ac0217a (IsA root structure) (STV 1.0 0.9091)) +(: cnet_isa_2653f15c95 (IsA root plant_organ) (STV 1.0 0.9091)) +(: cnet_isa_ea877955f7 (IsA root form) (STV 1.0 0.9091)) +(: cnet_isa_bb58dfebf5 (IsA root number) (STV 1.0 0.9091)) +(: cnet_isa_876a611169 (IsA root_beer soft_drink) (STV 1.0 0.9091)) +(: cnet_isa_49dd628869 (IsA root_beer_float ice_cream_soda) (STV 1.0 0.9091)) +(: cnet_isa_caa5aa4af7 (IsA root_canal passage) (STV 1.0 0.9091)) +(: cnet_isa_609a462b8e (IsA root_cap plant_organ) (STV 1.0 0.9091)) +(: cnet_isa_de0635d313 (IsA root_cellar excavation) (STV 1.0 0.9091)) +(: cnet_isa_9c9889dffe (IsA root_cellar storage_space) (STV 1.0 0.9091)) +(: cnet_isa_116b326311 (IsA root_climber climber) (STV 1.0 0.9091)) +(: cnet_isa_b023d7d67d (IsA root_crop crop) (STV 1.0 0.9091)) +(: cnet_isa_ef8b248de5 (IsA root_hair plant_organ) (STV 1.0 0.9091)) +(: cnet_isa_1ec03f04f2 (IsA root_rot plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_2647aa6549 (IsA root_vegetable vegetable) (STV 1.0 0.9091)) +(: cnet_isa_10b9a832fa (IsA rootage system) (STV 1.0 0.9091)) +(: cnet_isa_00ac58043c (IsA rootage stationariness) (STV 1.0 0.9091)) +(: cnet_isa_8bb6fc5ed5 (IsA rooting growth) (STV 1.0 0.9091)) +(: cnet_isa_ea0f7ff5af (IsA rooting_reflex reflex) (STV 1.0 0.9091)) +(: cnet_isa_040fd08fa0 (IsA rootlet root) (STV 1.0 0.9091)) +(: cnet_isa_311de4350d (IsA root condition) (STV 1.0 0.9091)) +(: cnet_isa_2eb1168e69 (IsA rootstock stock) (STV 1.0 0.9091)) +(: cnet_isa_60119add27 (IsA rope line) (STV 1.0 0.9091)) +(: cnet_isa_cd596a0ef2 (IsA rope_bridge bridge) (STV 1.0 0.9091)) +(: cnet_isa_ef27fa5d91 (IsA rope_burn abrasion) (STV 1.0 0.9091)) +(: cnet_isa_05a52b37c7 (IsA rope_dope boxing) (STV 1.0 0.9091)) +(: cnet_isa_e77437c821 (IsA rope_ladder ladder) (STV 1.0 0.9091)) +(: cnet_isa_8165d8d850 (IsA rope_tow ski_tow) (STV 1.0 0.9091)) +(: cnet_isa_63d7f5c427 (IsA rope_yarn strand) (STV 1.0 0.9091)) +(: cnet_isa_cb80a07147 (IsA ropemaker craftsman) (STV 1.0 0.9091)) +(: cnet_isa_6b176e0fa8 (IsA roper cowboy) (STV 1.0 0.9091)) +(: cnet_isa_e8437677b3 (IsA roper decoy) (STV 1.0 0.9091)) +(: cnet_isa_46043e5852 (IsA ropewalk workplace) (STV 1.0 0.9091)) +(: cnet_isa_4f6fa674de (IsA ropewalker aerialist) (STV 1.0 0.9091)) +(: cnet_isa_4fcb7da484 (IsA roping labor) (STV 1.0 0.9091)) +(: cnet_isa_f7181ab1f6 (IsA roquefort bleu) (STV 1.0 0.9091)) +(: cnet_isa_9d24ce9e21 (IsA roridula carnivorous_plant) (STV 1.0 0.9091)) +(: cnet_isa_608624ec3f (IsA roridulaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_b570865b5a (IsA rorippa dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_df0ad886d0 (IsA rorqual baleen_whale) (STV 1.0 0.9091)) +(: cnet_isa_85e26d34dd (IsA rorschach projective_test) (STV 1.0 0.9091)) +(: cnet_isa_8155da5455 (IsA rosa rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_cf99482e4f (IsA rosaceae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_55f690e03a (IsA rosale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_a22425bb69 (IsA rosary bead) (STV 1.0 0.9091)) +(: cnet_isa_760fb22cbc (IsA rose pink) (STV 1.0 0.9091)) +(: cnet_isa_edfc118531 (IsA rose shrub) (STV 1.0 0.9091)) +(: cnet_isa_06fee1a367 (IsA rose_apple edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_31b2153649 (IsA rose_apple fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_025dd5870f (IsA rose_bed flowerbed) (STV 1.0 0.9091)) +(: cnet_isa_7de3db4f1a (IsA rose_chafer melolonthid_beetle) (STV 1.0 0.9091)) +(: cnet_isa_cd6c61f564 (IsA rose_chafer scarabaeid_beetle) (STV 1.0 0.9091)) +(: cnet_isa_eb0335c867 (IsA rose_chestnut tree) (STV 1.0 0.9091)) +(: cnet_isa_4a226d0855 (IsA rose_colored_starling starling) (STV 1.0 0.9091)) +(: cnet_isa_7454d11410 (IsA rose_garden garden) (STV 1.0 0.9091)) +(: cnet_isa_dc314cc29d (IsA rose_geranium geranium) (STV 1.0 0.9091)) +(: cnet_isa_96e706f091 (IsA rose_globe_lily globe_lily) (STV 1.0 0.9091)) +(: cnet_isa_1123da3c01 (IsA rose_gum flooded_gum) (STV 1.0 0.9091)) +(: cnet_isa_1d75bbc786 (IsA rose_mallow hibiscus) (STV 1.0 0.9091)) +(: cnet_isa_12913db0e4 (IsA rose_mallow hollyhock) (STV 1.0 0.9091)) +(: cnet_isa_dd3b581539 (IsA rose_moss portulaca) (STV 1.0 0.9091)) +(: cnet_isa_0def158c1a (IsA rose_of_jericho crucifer) (STV 1.0 0.9091)) +(: cnet_isa_017fd4d551 (IsA rose_of_sharon hibiscus) (STV 1.0 0.9091)) +(: cnet_isa_95185fa953 (IsA rose_quartz quartz) (STV 1.0 0.9091)) +(: cnet_isa_c3a4b92c8b (IsA rose_root sedum) (STV 1.0 0.9091)) +(: cnet_isa_2d265dcc67 (IsA rose_water perfume) (STV 1.0 0.9091)) +(: cnet_isa_ebe927ee67 (IsA rose_window window) (STV 1.0 0.9091)) +(: cnet_isa_cf8df97063 (IsA roseate_spoonbill spoonbill) (STV 1.0 0.9091)) +(: cnet_isa_0e613fc8fa (IsA rosebay rhododendron) (STV 1.0 0.9091)) +(: cnet_isa_6cd1836973 (IsA rosebud girl) (STV 1.0 0.9091)) +(: cnet_isa_06d0880ff4 (IsA rosebud bud) (STV 1.0 0.9091)) +(: cnet_isa_9f5f587584 (IsA rosebud_cherry flowering_cherry) (STV 1.0 0.9091)) +(: cnet_isa_c55bdffdcc (IsA rosebud_orchid orchid) (STV 1.0 0.9091)) +(: cnet_isa_404c3978b4 (IsA rosefish rockfish) (STV 1.0 0.9091)) +(: cnet_isa_f1fe0f7fc2 (IsA roselle hibiscus) (STV 1.0 0.9091)) +(: cnet_isa_cf31b22caa (IsA rosellinia fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_368ad137f7 (IsA rosemaling decoration) (STV 1.0 0.9091)) +(: cnet_isa_7f0de9dd91 (IsA rosemary herb) (STV 1.0 0.9091)) +(: cnet_isa_6edca4043e (IsA ros flower) (STV 1.0 0.9748)) +(: cnet_isa_1e2bd34494 (IsA rosette adornment) (STV 1.0 0.9091)) +(: cnet_isa_717620ab23 (IsA rosette leaf) (STV 1.0 0.9091)) +(: cnet_isa_57c292e995 (IsA rosewood tree) (STV 1.0 0.9091)) +(: cnet_isa_3441439a23 (IsA rosewood wood) (STV 1.0 0.9091)) +(: cnet_isa_11701badf0 (IsA rosh_hashanah feast_day) (STV 1.0 0.9091)) +(: cnet_isa_089907ecd2 (IsA rosh_hashanah high_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_d627d62a51 (IsA rosh_hodesh jewish_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_db38ea9ebe (IsA rosicrucian member) (STV 1.0 0.9091)) +(: cnet_isa_d35301b89b (IsA rosicrucianism theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_841f5035de (IsA rosid_dicot_family dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_1a3fe98fea (IsA rosid_dicot_genus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6a729d7d94 (IsA rosidae class) (STV 1.0 0.9091)) +(: cnet_isa_7653385859 (IsA rosilla sneezeweed) (STV 1.0 0.9091)) +(: cnet_isa_285c32c321 (IsA rosin_bag bag) (STV 1.0 0.9091)) +(: cnet_isa_c305706d38 (IsA rosin_bag baseball_equipment) (STV 1.0 0.9091)) +(: cnet_isa_ffe070e9e4 (IsA rosinweed compass_plant) (STV 1.0 0.9091)) +(: cnet_isa_c141bf424b (IsA rosita centaury) (STV 1.0 0.9091)) +(: cnet_isa_25ff470175 (IsA rosmarinus asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a035b93aaa (IsA rosy_boa boa) (STV 1.0 0.9091)) +(: cnet_isa_d79273db02 (IsA rota roll) (STV 1.0 0.9091)) +(: cnet_isa_145aa86b44 (IsA rota court) (STV 1.0 0.9091)) +(: cnet_isa_c348dc37bc (IsA rotarian member) (STV 1.0 0.9091)) +(: cnet_isa_f1ed0d1f38 (IsA rotary_actuator actuator) (STV 1.0 0.9091)) +(: cnet_isa_d5d3f67665 (IsA rotary_club service_club) (STV 1.0 0.9091)) +(: cnet_isa_00c244f8f1 (IsA rotary_engine internal_combustion_engine) (STV 1.0 0.9091)) +(: cnet_isa_9d67bd4307 (IsA rotary_press press) (STV 1.0 0.9091)) +(: cnet_isa_51b5990e6c (IsA rotating_mechanism mechanism) (STV 1.0 0.9091)) +(: cnet_isa_bddb8a748e (IsA rotating_shaft rod) (STV 1.0 0.9091)) +(: cnet_isa_329629ff79 (IsA rotation motion) (STV 1.0 0.9091)) +(: cnet_isa_8a7ba9f0f9 (IsA rotation sequence) (STV 1.0 0.9091)) +(: cnet_isa_9ecce28213 (IsA rotation turning) (STV 1.0 0.9091)) +(: cnet_isa_96d3150a9a (IsA rotation transformation) (STV 1.0 0.9091)) +(: cnet_isa_9fac8aece5 (IsA rotational_latency time_interval) (STV 1.0 0.9091)) +(: cnet_isa_49742f2551 (IsA rotational_nystagmus nystagmus) (STV 1.0 0.9091)) +(: cnet_isa_8606ce2b85 (IsA rotator_cuff structure) (STV 1.0 0.9091)) +(: cnet_isa_c7fe8897d8 (IsA rotavirus reovirus) (STV 1.0 0.9091)) +(: cnet_isa_207b3bb4ea (IsA rote memorization) (STV 1.0 0.9091)) +(: cnet_isa_45a9216f37 (IsA rotenone insecticide) (STV 1.0 0.9091)) +(: cnet_isa_6263f37658 (IsA rotgut alcohol) (STV 1.0 0.9091)) +(: cnet_isa_3ca8446e73 (IsA rotifer invertebrate) (STV 1.0 0.9091)) +(: cnet_isa_8500f077c5 (IsA rotifera phylum) (STV 1.0 0.9091)) +(: cnet_isa_54b8c03af5 (IsA rotisserie oven) (STV 1.0 0.9091)) +(: cnet_isa_76604f3f48 (IsA rotisserie restaurant) (STV 1.0 0.9091)) +(: cnet_isa_d95b25657a (IsA rotl weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_d15e2a0c8c (IsA rotogravure photogravure) (STV 1.0 0.9091)) +(: cnet_isa_05b227a373 (IsA rotogravure photojournalism) (STV 1.0 0.9091)) +(: cnet_isa_debc6dfa9b (IsA rotor armature) (STV 1.0 0.9091)) +(: cnet_isa_20dff315ac (IsA rotor bar) (STV 1.0 0.9091)) +(: cnet_isa_5e6d5d6981 (IsA rotor rotating_mechanism) (STV 1.0 0.9091)) +(: cnet_isa_9afe5bf80d (IsA rotor_blade airfoil) (STV 1.0 0.9091)) +(: cnet_isa_fd6c58b709 (IsA rotor_head axis) (STV 1.0 0.9091)) +(: cnet_isa_2ddc04cc31 (IsA rotten_borough borough) (STV 1.0 0.9091)) +(: cnet_isa_1e489d32ba (IsA rottenstone limestone) (STV 1.0 0.9091)) +(: cnet_isa_dcf1e5e756 (IsA rotter unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_59649d985b (IsA rottweiler dog) (STV 1.0 0.9091)) +(: cnet_isa_7af9514fad (IsA rottweiler shepherd_dog) (STV 1.0 0.9091)) +(: cnet_isa_5d2858ece0 (IsA rotunda building) (STV 1.0 0.9091)) +(: cnet_isa_e69d267960 (IsA rotunda room) (STV 1.0 0.9091)) +(: cnet_isa_42f90f15e2 (IsA rotundity tone) (STV 1.0 0.9091)) +(: cnet_isa_b95299270d (IsA rouge makeup) (STV 1.0 0.9091)) +(: cnet_isa_b99250d28e (IsA rouge_et_noir card_game) (STV 1.0 0.9091)) +(: cnet_isa_f53b8c8a84 (IsA rough sensation) (STV 1.0 0.9339)) +(: cnet_isa_313d9cb5ad (IsA rough site) (STV 1.0 0.9091)) +(: cnet_isa_1d69add78b (IsA rough_bindweed sarsaparilla) (STV 1.0 0.9091)) +(: cnet_isa_3d87cf0932 (IsA rough_cut movie) (STV 1.0 0.9091)) +(: cnet_isa_e05f20a49a (IsA rough_fish fish) (STV 1.0 0.9091)) +(: cnet_isa_f6ecfc3295 (IsA rough_green_snake green_snake) (STV 1.0 0.9091)) +(: cnet_isa_edbc6634a1 (IsA rough_leaved_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_6b1bc154a5 (IsA rough_legged_hawk hawk) (STV 1.0 0.9091)) +(: cnet_isa_3a16f4c700 (IsA rough_rider cavalryman) (STV 1.0 0.9091)) +(: cnet_isa_96e60287dd (IsA rough_skinned_newt pacific_newt) (STV 1.0 0.9091)) +(: cnet_isa_9fc740ca1d (IsA rough_stemmed_goldenrod goldenrod) (STV 1.0 0.9091)) +(: cnet_isa_b18962a503 (IsA roughage foodstuff) (STV 1.0 0.9091)) +(: cnet_isa_3c4bc37a5b (IsA roughcast model) (STV 1.0 0.9091)) +(: cnet_isa_159ba3a79a (IsA roughcast plaster) (STV 1.0 0.9091)) +(: cnet_isa_58af705441 (IsA roughness intensification) (STV 1.0 0.9091)) +(: cnet_isa_c8d501799e (IsA roughness texture) (STV 1.0 0.9091)) +(: cnet_isa_1e56d6412b (IsA roughrider horseman) (STV 1.0 0.9091)) +(: cnet_isa_34feba83f3 (IsA roughtail_stingray stingray) (STV 1.0 0.9091)) +(: cnet_isa_caed9c2264 (IsA roulade dish) (STV 1.0 0.9091)) +(: cnet_isa_c1facee49a (IsA roulade tune) (STV 1.0 0.9091)) +(: cnet_isa_5e572c1624 (IsA rouleau roll) (STV 1.0 0.9091)) +(: cnet_isa_16bac56cd2 (IsA roulette game_of_chance) (STV 1.0 0.9091)) +(: cnet_isa_c8e0436b13 (IsA roulette wheel) (STV 1.0 0.9091)) +(: cnet_isa_6926965df8 (IsA roulette curve) (STV 1.0 0.9091)) +(: cnet_isa_a391caba80 (IsA roulette_ball ball) (STV 1.0 0.9091)) +(: cnet_isa_1966bf61e3 (IsA roulette_wheel game_equipment) (STV 1.0 0.9091)) +(: cnet_isa_d729c587bd (IsA round shape) (STV 1.0 0.9091)) +(: cnet_isa_0cba725cd2 (IsA round call) (STV 1.0 0.9091)) +(: cnet_isa_38ed19e8fe (IsA round habitude) (STV 1.0 0.9091)) +(: cnet_isa_d447236e49 (IsA round ammunition) (STV 1.0 0.9091)) +(: cnet_isa_e588335a9d (IsA round applause) (STV 1.0 0.9091)) +(: cnet_isa_14bf23dbbd (IsA round partsong) (STV 1.0 0.9091)) +(: cnet_isa_61257524f9 (IsA round cut_of_beef) (STV 1.0 0.9091)) +(: cnet_isa_c146388b1a (IsA round helping) (STV 1.0 0.9091)) +(: cnet_isa_35e7f17f4c (IsA round path) (STV 1.0 0.9091)) +(: cnet_isa_e64e1520da (IsA round_arch arch) (STV 1.0 0.9091)) +(: cnet_isa_008f086dec (IsA round_bone bone) (STV 1.0 0.9091)) +(: cnet_isa_4879de79a0 (IsA round_bottom_flask flask) (STV 1.0 0.9091)) +(: cnet_isa_081ccc1711 (IsA round_clock_patrol patrol) (STV 1.0 0.9091)) +(: cnet_isa_3fb450019f (IsA round_dance ballroom_dancing) (STV 1.0 0.9091)) +(: cnet_isa_481d96de03 (IsA round_dance folk_dancing) (STV 1.0 0.9091)) +(: cnet_isa_91dd522c79 (IsA round_file file) (STV 1.0 0.9091)) +(: cnet_isa_a5e0b33f6d (IsA round_hand longhand) (STV 1.0 0.9091)) +(: cnet_isa_7918644944 (IsA round_headed_leek alliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_0b691b34cc (IsA round_leaved_rein_orchid rein_orchid) (STV 1.0 0.9091)) +(: cnet_isa_3ea9287e08 (IsA round_ligament_of_uterus ligament) (STV 1.0 0.9091)) +(: cnet_isa_e3ea1243b5 (IsA round_of_golf golf) (STV 1.0 0.9091)) +(: cnet_isa_6abf1e802f (IsA round_robin letter) (STV 1.0 0.9091)) +(: cnet_isa_1aa99e45e0 (IsA round_robin tournament) (STV 1.0 0.9091)) +(: cnet_isa_1fb17a873c (IsA round_scad scad) (STV 1.0 0.9091)) +(: cnet_isa_37748a803e (IsA round_shape shape) (STV 1.0 0.9091)) +(: cnet_isa_6f1709b167 (IsA round_steak beefsteak) (STV 1.0 0.9091)) +(: cnet_isa_1eea564112 (IsA round_table conference) (STV 1.0 0.9091)) +(: cnet_isa_3638d6d84e (IsA round_tailed_muskrat rodent) (STV 1.0 0.9091)) +(: cnet_isa_4dddf33287 (IsA round_trip trip) (STV 1.0 0.9091)) +(: cnet_isa_03b8bc7218 (IsA round_trip_light_time elapsed_time) (STV 1.0 0.9091)) +(: cnet_isa_820afcec4e (IsA round_trip_ticket ticket) (STV 1.0 0.9091)) +(: cnet_isa_7bdebcc49f (IsA round_whitefish whitefish) (STV 1.0 0.9091)) +(: cnet_isa_8904bf88ce (IsA roundedness convexity) (STV 1.0 0.9091)) +(: cnet_isa_9bf6afa68d (IsA roundel armor_plate) (STV 1.0 0.9091)) +(: cnet_isa_f9ecc0b5f4 (IsA roundel rondeau) (STV 1.0 0.9091)) +(: cnet_isa_794fd7a487 (IsA roundelay song) (STV 1.0 0.9091)) +(: cnet_isa_c017cd0e73 (IsA rounder tool) (STV 1.0 0.9091)) +(: cnet_isa_6d71e19515 (IsA rounder baseball) (STV 1.0 0.9091)) +(: cnet_isa_15126417ab (IsA roundhead person) (STV 1.0 0.9091)) +(: cnet_isa_ba41add8df (IsA roundhead supporter) (STV 1.0 0.9091)) +(: cnet_isa_348b705f74 (IsA roundhouse hook) (STV 1.0 0.9091)) +(: cnet_isa_05c163f149 (IsA roundhouse workplace) (STV 1.0 0.9091)) +(: cnet_isa_3121a89286 (IsA rounding miscalculation) (STV 1.0 0.9091)) +(: cnet_isa_fb256f321c (IsA roundness number) (STV 1.0 0.9091)) +(: cnet_isa_6bd30d8572 (IsA roundness shape) (STV 1.0 0.9091)) +(: cnet_isa_c80c510370 (IsA roundsman workman) (STV 1.0 0.9091)) +(: cnet_isa_61c89aeaa5 (IsA roundup police_work) (STV 1.0 0.9091)) +(: cnet_isa_c9cfb7af2a (IsA roundup ranching) (STV 1.0 0.9091)) +(: cnet_isa_3864c31f73 (IsA roundup summary) (STV 1.0 0.9091)) +(: cnet_isa_470505ac9c (IsA rout defeat) (STV 1.0 0.9091)) +(: cnet_isa_feb4e277ba (IsA routemarch march) (STV 1.0 0.9091)) +(: cnet_isa_d7a465a320 (IsA router power_tool) (STV 1.0 0.9091)) +(: cnet_isa_cc47e69bfd (IsA router device) (STV 1.0 0.9091)) +(: cnet_isa_fc278a90bd (IsA router skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_5546d74ace (IsA router_plane plane) (STV 1.0 0.9091)) +(: cnet_isa_bab5c7bce3 (IsA routine procedure) (STV 1.0 0.9091)) +(: cnet_isa_cdda46b5b9 (IsA routine software) (STV 1.0 0.9091)) +(: cnet_isa_54308c2c8f (IsA roux concoction) (STV 1.0 0.9091)) +(: cnet_isa_b9bf5d9f97 (IsA rove_beetle beetle) (STV 1.0 0.9091)) +(: cnet_isa_473c02e10c (IsA rover boy_scout) (STV 1.0 0.9091)) +(: cnet_isa_13714f0ef2 (IsA row fight) (STV 1.0 0.9339)) +(: cnet_isa_8a324cacb5 (IsA row sequence) (STV 1.0 0.9091)) +(: cnet_isa_7d3f3c5def (IsA row array) (STV 1.0 0.9091)) +(: cnet_isa_48d36f3103 (IsA row line) (STV 1.0 0.9091)) +(: cnet_isa_9440e051b8 (IsA row strip) (STV 1.0 0.9091)) +(: cnet_isa_27f1915f08 (IsA row_house house) (STV 1.0 0.9091)) +(: cnet_isa_db59e054f5 (IsA row_of_brick course) (STV 1.0 0.9091)) +(: cnet_isa_2d6f536b49 (IsA row_vector vector) (STV 1.0 0.9091)) +(: cnet_isa_6b71ca2c7b (IsA rowan mountain_ash) (STV 1.0 0.9091)) +(: cnet_isa_2bcd807fad (IsA rowanberry fruit) (STV 1.0 0.9091)) +(: cnet_isa_20ff89d15c (IsA rowdiness disorder) (STV 1.0 0.9091)) +(: cnet_isa_147e917b67 (IsA rowel wheel) (STV 1.0 0.9091)) +(: cnet_isa_c4c122e73d (IsA rowing good_exercise) (STV 1.0 0.9339)) +(: cnet_isa_f01531e50a (IsA rowing great_source_of_exercise) (STV 1.0 0.9091)) +(: cnet_isa_b8a56881e4 (IsA rowing sport) (STV 1.0 0.9091)) +(: cnet_isa_ad62edbcdc (IsA rowing_boat dinghy) (STV 1.0 0.9091)) +(: cnet_isa_af08e7af4f (IsA rowing_club club) (STV 1.0 0.9091)) +(: cnet_isa_1cf7676191 (IsA rowlock_arch arch) (STV 1.0 0.9091)) +(: cnet_isa_6d9bce6606 (IsA royal stag) (STV 1.0 0.9091)) +(: cnet_isa_49951acba9 (IsA royal sail) (STV 1.0 0.9091)) +(: cnet_isa_b6704b70cb (IsA royal_academy academy) (STV 1.0 0.9091)) +(: cnet_isa_5bc4963d70 (IsA royal_agaric agaric) (STV 1.0 0.9091)) +(: cnet_isa_3654019c15 (IsA royal_air_force air_force) (STV 1.0 0.9091)) +(: cnet_isa_d0858e41df (IsA royal_brace brace) (STV 1.0 0.9091)) +(: cnet_isa_b4bae1101a (IsA royal_canadian_mounted_police international_law_enforcement_agency) (STV 1.0 0.9091)) +(: cnet_isa_ddfab2bd6c (IsA royal_canadian_mounted_police police) (STV 1.0 0.9091)) +(: cnet_isa_6066f531d9 (IsA royal_casino casino) (STV 1.0 0.9091)) +(: cnet_isa_2265dfaaf8 (IsA royal_charter charter) (STV 1.0 0.9091)) +(: cnet_isa_b3d1330d59 (IsA royal_fern flowering_fern) (STV 1.0 0.9091)) +(: cnet_isa_ab142aee9e (IsA royal_flush excellant_hand_in_poker) (STV 1.0 0.9339)) +(: cnet_isa_66d25ac262 (IsA royal_flush great_poker_hand) (STV 1.0 0.9524)) +(: cnet_isa_1140230335 (IsA royal_flush poker_hand) (STV 1.0 0.9091)) +(: cnet_isa_2542b1e526 (IsA royal_jelly secretion) (STV 1.0 0.9091)) +(: cnet_isa_775b6923b6 (IsA royal_mast topmast) (STV 1.0 0.9091)) +(: cnet_isa_f7c33340b4 (IsA royal_national_eisteddfod eisteddfod) (STV 1.0 0.9091)) +(: cnet_isa_8ae324c0b2 (IsA royal_palm palm) (STV 1.0 0.9091)) +(: cnet_isa_7f1ef77c13 (IsA royal_poinciana angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_00407cda28 (IsA royal_road road) (STV 1.0 0.9091)) +(: cnet_isa_b236350fc4 (IsA royal_society academy) (STV 1.0 0.9091)) +(: cnet_isa_c879433479 (IsA royal_tennis tennis) (STV 1.0 0.9091)) +(: cnet_isa_39c7223838 (IsA royalism attachment) (STV 1.0 0.9091)) +(: cnet_isa_69153894ac (IsA royalist monarchist) (STV 1.0 0.9091)) +(: cnet_isa_13ea6d1db7 (IsA royalty house) (STV 1.0 0.9091)) +(: cnet_isa_0044d20143 (IsA royalty payment) (STV 1.0 0.9091)) +(: cnet_isa_cd35c60a62 (IsA roystonea monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6b73d90a56 (IsA rub contact) (STV 1.0 0.9091)) +(: cnet_isa_31a51791bf (IsA rub_dub sound) (STV 1.0 0.9091)) +(: cnet_isa_ea5aa1c034 (IsA rub_up review) (STV 1.0 0.9091)) +(: cnet_isa_19535595f9 (IsA rubato tempo) (STV 1.0 0.9091)) +(: cnet_isa_8087b1e690 (IsA rubber another_name_for_condom) (STV 1.0 0.9339)) +(: cnet_isa_7ffd4a2ff7 (IsA rubber malliable_substance) (STV 1.0 0.9454)) +(: cnet_isa_3f87870b25 (IsA rubber contest) (STV 1.0 0.9091)) +(: cnet_isa_634984eaf5 (IsA rubber latex) (STV 1.0 0.9091)) +(: cnet_isa_a31ea1cde1 (IsA rubber_band band) (STV 1.0 0.9091)) +(: cnet_isa_64aef68d87 (IsA rubber_band elastic_device) (STV 1.0 0.9091)) +(: cnet_isa_ff87266fe9 (IsA rubber_boa boa) (STV 1.0 0.9091)) +(: cnet_isa_2bf4f1ac11 (IsA rubber_boot boot) (STV 1.0 0.9091)) +(: cnet_isa_3aa1dc0482 (IsA rubber_bullet bullet) (STV 1.0 0.9091)) +(: cnet_isa_e5ad5d4789 (IsA rubber_cement adhesive_material) (STV 1.0 0.9091)) +(: cnet_isa_ab24fd475c (IsA rubber_chicken prop) (STV 1.0 0.9091)) +(: cnet_isa_af2216c6c7 (IsA rubber_duck toy) (STV 1.0 0.9608)) +(: cnet_isa_7e46ec1d24 (IsA rubber_eraser eraser) (STV 1.0 0.9091)) +(: cnet_isa_018495fa85 (IsA rubber_stamp authorization) (STV 1.0 0.9091)) +(: cnet_isa_2e07c74d08 (IsA rubberneck spectator) (STV 1.0 0.9091)) +(: cnet_isa_da17371034 (IsA rubbing representation) (STV 1.0 0.9091)) +(: cnet_isa_07c3af8f5e (IsA rubbing_alcohol lotion) (STV 1.0 0.9091)) +(: cnet_isa_18675809ec (IsA rubbish waste) (STV 1.0 0.9091)) +(: cnet_isa_7c3c6a133d (IsA rubdown massage) (STV 1.0 0.9091)) +(: cnet_isa_8d07e92650 (IsA rubefacient medicine) (STV 1.0 0.9091)) +(: cnet_isa_6dda7b61cb (IsA rubel belarusian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_8ff307199b (IsA rubella_panencephalitis panencephalitis) (STV 1.0 0.9091)) +(: cnet_isa_b8359b182b (IsA rubia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0b31628d22 (IsA rubiaceae asterid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_bbc8dfbae5 (IsA rubiale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_1428e042e8 (IsA rubicelle spinel_ruby) (STV 1.0 0.9091)) +(: cnet_isa_fb87184b6d (IsA rubicon line) (STV 1.0 0.9091)) +(: cnet_isa_a5d15ea2fc (IsA rubidium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_0636eceb2a (IsA rubidium_strontium_dating dating) (STV 1.0 0.9091)) +(: cnet_isa_77dfbe0930 (IsA rubin_test diagnostic_test) (STV 1.0 0.9091)) +(: cnet_isa_a183d56b7d (IsA ruble russian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_4fbbac3229 (IsA ruble tajikistani_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_af4df6219f (IsA rubric category) (STV 1.0 0.9091)) +(: cnet_isa_8d815f2528 (IsA rubric direction) (STV 1.0 0.9091)) +(: cnet_isa_c0c7dee766 (IsA rubric heading) (STV 1.0 0.9091)) +(: cnet_isa_a5f8a92471 (IsA rubric rule) (STV 1.0 0.9091)) +(: cnet_isa_7ec274fcef (IsA rubric title) (STV 1.0 0.9091)) +(: cnet_isa_8655f79428 (IsA rubus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_73a08de6d2 (IsA ruby jewel) (STV 1.0 0.9091)) +(: cnet_isa_729689972f (IsA ruby pure_object_oriented_programming_language) (STV 1.0 0.9091)) +(: cnet_isa_180831c25e (IsA ruby corundom) (STV 1.0 0.9091)) +(: cnet_isa_641f8a47ff (IsA ruby transparent_gem) (STV 1.0 0.9091)) +(: cnet_isa_4eaac130cf (IsA ruby_crowned_kinglet kinglet) (STV 1.0 0.9091)) +(: cnet_isa_2654814673 (IsA ruby_wood wood) (STV 1.0 0.9091)) +(: cnet_isa_8521475970 (IsA ruck multitude) (STV 1.0 0.9091)) +(: cnet_isa_d4ee7366b5 (IsA rudaceous_rock sedimentary_rock) (STV 1.0 0.9091)) +(: cnet_isa_4ee2d0a605 (IsA rudapithecus dryopithecine) (STV 1.0 0.9091)) +(: cnet_isa_1a0cfcd780 (IsA rudbeckia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_dbe7eaf908 (IsA rudd cyprinid) (STV 1.0 0.9091)) +(: cnet_isa_ae73e4d689 (IsA rudder airfoil) (STV 1.0 0.9091)) +(: cnet_isa_b467fee373 (IsA rudder steering_system) (STV 1.0 0.9091)) +(: cnet_isa_39787fdafc (IsA rudder_blade blade) (STV 1.0 0.9091)) +(: cnet_isa_90b6743bdb (IsA rudderfish jack) (STV 1.0 0.9091)) +(: cnet_isa_9a0d015281 (IsA rudderpost post) (STV 1.0 0.9091)) +(: cnet_isa_a8651edb9d (IsA ruddiness complexion) (STV 1.0 0.9091)) +(: cnet_isa_0ec4612cdc (IsA ruddle iron_ore) (STV 1.0 0.9091)) +(: cnet_isa_19e9b91fbe (IsA ruddy_duck duck) (STV 1.0 0.9091)) +(: cnet_isa_c5ce8fa234 (IsA ruddy_turnstone turnstone) (STV 1.0 0.9091)) +(: cnet_isa_1443f20500 (IsA rudiment body_part) (STV 1.0 0.9091)) +(: cnet_isa_87c1864196 (IsA rudiment fundamental) (STV 1.0 0.9091)) +(: cnet_isa_13b882f95d (IsA rue street) (STV 1.0 0.9091)) +(: cnet_isa_d79c53d4eb (IsA rue herb) (STV 1.0 0.9091)) +(: cnet_isa_9004fde881 (IsA rue_anemone flower) (STV 1.0 0.9091)) +(: cnet_isa_f345a0f1c5 (IsA ruff sandpiper) (STV 1.0 0.9091)) +(: cnet_isa_40fec747d6 (IsA ruff turn) (STV 1.0 0.9091)) +(: cnet_isa_a2e970db4b (IsA ruffed_grouse grouse) (STV 1.0 0.9091)) +(: cnet_isa_3994e81969 (IsA ruffianism misbehavior) (STV 1.0 0.9091)) +(: cnet_isa_755282bdad (IsA rufous_rubber_cup sarcosomataceae) (STV 1.0 0.9091)) +(: cnet_isa_b21f8d3228 (IsA rug floor_covering) (STV 1.0 0.9091)) +(: cnet_isa_f3553db5e6 (IsA rug floor_cover) (STV 1.0 0.9091)) +(: cnet_isa_3386dc275c (IsA rug furnishing) (STV 1.0 0.9091)) +(: cnet_isa_e7c2b9f07a (IsA rug_merchant merchant) (STV 1.0 0.9091)) +(: cnet_isa_83c6cf1d33 (IsA ruga fold) (STV 1.0 0.9091)) +(: cnet_isa_1d298210b4 (IsA rugby football) (STV 1.0 0.9091)) +(: cnet_isa_8a6c3ff90c (IsA rugby_ball ball) (STV 1.0 0.9091)) +(: cnet_isa_c0aad48180 (IsA rugel_s_plantain plantain) (STV 1.0 0.9091)) +(: cnet_isa_a711d89e90 (IsA rugged_individualism individualism) (STV 1.0 0.9091)) +(: cnet_isa_0cbb9f7396 (IsA ruggedization protection) (STV 1.0 0.9091)) +(: cnet_isa_2dccf3a6bc (IsA ruggedness unevenness) (STV 1.0 0.9091)) +(: cnet_isa_94c514db3e (IsA rugulah pastry) (STV 1.0 0.9091)) +(: cnet_isa_2565f22a0c (IsA ruin building) (STV 1.0 0.9091)) +(: cnet_isa_6e6494faa8 (IsA ruin destruction) (STV 1.0 0.9091)) +(: cnet_isa_e010861f6b (IsA ruin devastation) (STV 1.0 0.9091)) +(: cnet_isa_e1541e1a8e (IsA rule measuring_stick) (STV 1.0 0.9091)) +(: cnet_isa_dbe6f942ce (IsA rule concept) (STV 1.0 0.9091)) +(: cnet_isa_56e0b99046 (IsA rule direction) (STV 1.0 0.9091)) +(: cnet_isa_844b62ae38 (IsA rule procedure) (STV 1.0 0.9091)) +(: cnet_isa_e1038c870c (IsA rule duration) (STV 1.0 0.9091)) +(: cnet_isa_b6ef99f190 (IsA rule_of_evidence rule) (STV 1.0 0.9091)) +(: cnet_isa_0be030d6fb (IsA rule_of_law order) (STV 1.0 0.9091)) +(: cnet_isa_ea69260ff9 (IsA ruler person) (STV 1.0 0.9091)) +(: cnet_isa_e3dfa9db47 (IsA rulership position) (STV 1.0 0.9091)) +(: cnet_isa_9a490cab7e (IsA ruling_class upper_class) (STV 1.0 0.9091)) +(: cnet_isa_f936f02120 (IsA rum liquor) (STV 1.0 0.9091)) +(: cnet_isa_f9e5c6a948 (IsA rum_sling sling) (STV 1.0 0.9091)) +(: cnet_isa_611c5f891c (IsA rumanian european) (STV 1.0 0.9091)) +(: cnet_isa_c76b73ca70 (IsA rumba ballroom_dancing) (STV 1.0 0.9091)) +(: cnet_isa_d3a4cc30c1 (IsA rumba folk_dancing) (STV 1.0 0.9091)) +(: cnet_isa_d61e74e3c4 (IsA rumba dance_music) (STV 1.0 0.9091)) +(: cnet_isa_ad973c387d (IsA rumble fight) (STV 1.0 0.9091)) +(: cnet_isa_3df8e84d55 (IsA rumble seat) (STV 1.0 0.9091)) +(: cnet_isa_0e44e51706 (IsA rumble noise) (STV 1.0 0.9091)) +(: cnet_isa_77c4b74e0a (IsA rumble_seat seat) (STV 1.0 0.9091)) +(: cnet_isa_55b234e002 (IsA rumen stomach) (STV 1.0 0.9091)) +(: cnet_isa_49084c44d0 (IsA rumex dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b18cf2aecb (IsA ruminant even_toed_ungulate) (STV 1.0 0.9091)) +(: cnet_isa_c3e2fc90da (IsA ruminantia animal_order) (STV 1.0 0.9091)) +(: cnet_isa_d361ee33b6 (IsA rumination chew) (STV 1.0 0.9091)) +(: cnet_isa_f085a00423 (IsA rumination vomit) (STV 1.0 0.9091)) +(: cnet_isa_46f2c54f8f (IsA ruminator thinker) (STV 1.0 0.9091)) +(: cnet_isa_89e8a09d45 (IsA rummage clutter) (STV 1.0 0.9091)) +(: cnet_isa_2e97776164 (IsA rummage_sale sale) (STV 1.0 0.9091)) +(: cnet_isa_9e9fa22b9d (IsA rummer glass) (STV 1.0 0.9091)) +(: cnet_isa_4ac9644290 (IsA rummy card_game) (STV 1.0 0.9091)) +(: cnet_isa_9cdf5849c1 (IsA rumohra fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_4fc2f35d47 (IsA rumor gossip) (STV 1.0 0.9091)) +(: cnet_isa_3407c622c7 (IsA rump cut_of_beef) (STV 1.0 0.9091)) +(: cnet_isa_c825867615 (IsA rump_roast roast) (STV 1.0 0.9091)) +(: cnet_isa_433ab30854 (IsA rump_steak beefsteak) (STV 1.0 0.9091)) +(: cnet_isa_8b5a7845c8 (IsA rumpus_room recreation_room) (STV 1.0 0.9091)) +(: cnet_isa_cdeff182ac (IsA rumrunner smuggler) (STV 1.0 0.9091)) +(: cnet_isa_524f399db4 (IsA run locomotion) (STV 1.0 0.9091)) +(: cnet_isa_75e78623a0 (IsA run score) (STV 1.0 0.9091)) +(: cnet_isa_fd4fef7255 (IsA run trip) (STV 1.0 0.9091)) +(: cnet_isa_3fb1cbfa5a (IsA run football_play) (STV 1.0 0.9091)) +(: cnet_isa_3a649cd82f (IsA run sequence) (STV 1.0 0.9091)) +(: cnet_isa_5eeb9c3f4d (IsA run damage) (STV 1.0 0.9091)) +(: cnet_isa_d5b4257f51 (IsA run indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_7962b91f1c (IsA run liberty) (STV 1.0 0.9091)) +(: cnet_isa_5ef5bce773 (IsA run time_period) (STV 1.0 0.9091)) +(: cnet_isa_383d78a489 (IsA run_batted_in run) (STV 1.0 0.9091)) +(: cnet_isa_4957d233f9 (IsA run_on_sentence sentence) (STV 1.0 0.9091)) +(: cnet_isa_05b750c299 (IsA run_through rehearsal) (STV 1.0 0.9091)) +(: cnet_isa_b394532ddb (IsA run_time run) (STV 1.0 0.9091)) +(: cnet_isa_82d6b8aa7a (IsA run_time point) (STV 1.0 0.9091)) +(: cnet_isa_c85bb49984 (IsA run_up approach) (STV 1.0 0.9091)) +(: cnet_isa_066971dc30 (IsA runaway victory) (STV 1.0 0.9091)) +(: cnet_isa_1327dd4476 (IsA runcible_spoon spoon) (STV 1.0 0.9091)) +(: cnet_isa_af71e17e4f (IsA runcinate_leaf leaf) (STV 1.0 0.9091)) +(: cnet_isa_66d2865805 (IsA rundle crosspiece) (STV 1.0 0.9091)) +(: cnet_isa_5c67d8178e (IsA rune character) (STV 1.0 0.9091)) +(: cnet_isa_3ccd718220 (IsA rung crosspiece) (STV 1.0 0.9091)) +(: cnet_isa_1f0ff95bdc (IsA runner jack) (STV 1.0 0.9091)) +(: cnet_isa_2b364ed5ec (IsA runner device) (STV 1.0 0.9091)) +(: cnet_isa_33b64566c5 (IsA runner rug) (STV 1.0 0.9091)) +(: cnet_isa_93bb9edca2 (IsA runner athlete) (STV 1.0 0.9091)) +(: cnet_isa_113cb39ed6 (IsA runner messenger) (STV 1.0 0.9091)) +(: cnet_isa_8521b5184f (IsA runner traveler) (STV 1.0 0.9091)) +(: cnet_isa_41f9274005 (IsA runner_up rival) (STV 1.0 0.9091)) +(: cnet_isa_daba1754b7 (IsA running form_of_exercise) (STV 1.0 0.9091)) +(: cnet_isa_32451c6cd5 (IsA running good_exercise) (STV 1.0 0.9454)) +(: cnet_isa_5549c17dff (IsA running way) (STV 1.0 0.9091)) +(: cnet_isa_edd1ae7540 (IsA running administration) (STV 1.0 0.9091)) +(: cnet_isa_812194d2a8 (IsA running operation) (STV 1.0 0.9091)) +(: cnet_isa_87c6fd6d84 (IsA running_away act) (STV 1.0 0.9091)) +(: cnet_isa_8ad50d0c05 (IsA running_back back) (STV 1.0 0.9091)) +(: cnet_isa_e526b85516 (IsA running_board footboard) (STV 1.0 0.9091)) +(: cnet_isa_db63334dd9 (IsA running_head heading) (STV 1.0 0.9091)) +(: cnet_isa_dda3c0099e (IsA running_mate campaigner) (STV 1.0 0.9091)) +(: cnet_isa_ddba074906 (IsA running_pine ground_pine) (STV 1.0 0.9091)) +(: cnet_isa_49cf840f7a (IsA running_shoe shoe) (STV 1.0 0.9091)) +(: cnet_isa_5619af67fa (IsA running_stitch embroidery_stitch) (STV 1.0 0.9091)) +(: cnet_isa_5fb97d83dc (IsA running_suit sportswear) (STV 1.0 0.9091)) +(: cnet_isa_1cdbafcd50 (IsA running_time time_period) (STV 1.0 0.9091)) +(: cnet_isa_25acd97243 (IsA running_title running_head) (STV 1.0 0.9091)) +(: cnet_isa_a2adb80fb0 (IsA runoff election) (STV 1.0 0.9091)) +(: cnet_isa_d5e1e6928c (IsA runt small_person) (STV 1.0 0.9091)) +(: cnet_isa_50a12a33f1 (IsA runup increase) (STV 1.0 0.9091)) +(: cnet_isa_6c0c74db71 (IsA runway chute) (STV 1.0 0.9091)) +(: cnet_isa_d34a57a3df (IsA runway paved_surface) (STV 1.0 0.9091)) +(: cnet_isa_08d8404145 (IsA runway platform) (STV 1.0 0.9091)) +(: cnet_isa_8a811d08e2 (IsA rupestral_plant rock_plant) (STV 1.0 0.9091)) +(: cnet_isa_c632ea774b (IsA rupiah indonesian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_d79e1a71fa (IsA rupicapra mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_1aac1b161b (IsA rupicola bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_eb22d9f6a8 (IsA ruptiliocarpon rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_db22e6d1a3 (IsA rupture breakage) (STV 1.0 0.9091)) +(: cnet_isa_6291f4477c (IsA rupture separation) (STV 1.0 0.9091)) +(: cnet_isa_3e068dfd35 (IsA rupture injury) (STV 1.0 0.9091)) +(: cnet_isa_21a0d00a32 (IsA rupturewort groundcover) (STV 1.0 0.9091)) +(: cnet_isa_acf54a54e0 (IsA rural_free_delivery mail) (STV 1.0 0.9091)) +(: cnet_isa_19ae457666 (IsA ruralism idiom) (STV 1.0 0.9091)) +(: cnet_isa_249cfdffff (IsA ruralist advocate) (STV 1.0 0.9091)) +(: cnet_isa_8f91fcf3d2 (IsA rurality characteristic) (STV 1.0 0.9091)) +(: cnet_isa_95885c1a7e (IsA rurality trait) (STV 1.0 0.9091)) +(: cnet_isa_c232ce62bc (IsA ruritania imaginary_place) (STV 1.0 0.9091)) +(: cnet_isa_85d466bea6 (IsA ruscaceae liliid_monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_368a7f14e1 (IsA ruscus liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_deca47773a (IsA ruse maneuver) (STV 1.0 0.9091)) +(: cnet_isa_e622fc0de7 (IsA rush run) (STV 1.0 0.9091)) +(: cnet_isa_4f4678c475 (IsA rush flow) (STV 1.0 0.9091)) +(: cnet_isa_5b180ab0d4 (IsA rush outburst) (STV 1.0 0.9091)) +(: cnet_isa_f4ccd708a6 (IsA rush marsh_plant) (STV 1.0 0.9091)) +(: cnet_isa_47af79dc34 (IsA rush_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_732582a04b (IsA rush_grass grass) (STV 1.0 0.9091)) +(: cnet_isa_7cc9f48cff (IsA rush_hour hour) (STV 1.0 0.9091)) +(: cnet_isa_0d800b6216 (IsA rush_rose helianthemum) (STV 1.0 0.9091)) +(: cnet_isa_efd5da742c (IsA rusher ball_carrier) (STV 1.0 0.9091)) +(: cnet_isa_65f0868f15 (IsA rusher migrant) (STV 1.0 0.9091)) +(: cnet_isa_b9d1505228 (IsA rusher person) (STV 1.0 0.9091)) +(: cnet_isa_1e0bcf02af (IsA rushlight candle) (STV 1.0 0.9091)) +(: cnet_isa_121706f9d5 (IsA russell_s_body inclusion_body) (STV 1.0 0.9091)) +(: cnet_isa_7033f0883f (IsA russet homespun) (STV 1.0 0.9091)) +(: cnet_isa_59499d9c0e (IsA russia country) (STV 1.0 0.9454)) +(: cnet_isa_72064fc101 (IsA russia_leather leather) (STV 1.0 0.9091)) +(: cnet_isa_911a05c6c4 (IsA russian human_language) (STV 1.0 0.9091)) +(: cnet_isa_a3174ac21a (IsA russian language) (STV 1.0 0.9572)) +(: cnet_isa_6645c240be (IsA russian slavic) (STV 1.0 0.9091)) +(: cnet_isa_e716981f78 (IsA russian aborigine) (STV 1.0 0.9091)) +(: cnet_isa_93de2870ac (IsA russian_agency administrative_unit) (STV 1.0 0.9091)) +(: cnet_isa_c59ff6cf5e (IsA russian_almond almond_tree) (STV 1.0 0.9091)) +(: cnet_isa_3912745c53 (IsA russian_bank solitaire) (STV 1.0 0.9091)) +(: cnet_isa_32ea5a3b27 (IsA russian_dandelion dandelion) (STV 1.0 0.9091)) +(: cnet_isa_8169d92b3b (IsA russian_dressing dressing) (STV 1.0 0.9091)) +(: cnet_isa_ad5bf21741 (IsA russian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_0b5cedf6ca (IsA russian_olive oleaster) (STV 1.0 0.9091)) +(: cnet_isa_e1a81e98b8 (IsA russian_orthodox_church orthodox_church) (STV 1.0 0.9091)) +(: cnet_isa_5c6993bb2d (IsA russian_roulette stunt) (STV 1.0 0.9091)) +(: cnet_isa_5900984ecf (IsA russian_thistle shrub) (STV 1.0 0.9091)) +(: cnet_isa_f97ff97108 (IsA russula fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_8584ed9dab (IsA russulaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_56a623436f (IsA rust fungus) (STV 1.0 0.9091)) +(: cnet_isa_fc8f5e15f3 (IsA rust corrosion) (STV 1.0 0.9091)) +(: cnet_isa_c73532e69c (IsA rust oxidation) (STV 1.0 0.9091)) +(: cnet_isa_4a60376bec (IsA rust plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_2e2ab92be6 (IsA rust ferric_oxide) (STV 1.0 0.9091)) +(: cnet_isa_030289cfee (IsA rust_inhibitor antioxidant) (STV 1.0 0.9091)) +(: cnet_isa_79caddb0a7 (IsA rust_mite mite) (STV 1.0 0.9091)) +(: cnet_isa_0f22a9bd06 (IsA rustic commoner) (STV 1.0 0.9091)) +(: cnet_isa_a80a408437 (IsA rustication banishment) (STV 1.0 0.9091)) +(: cnet_isa_503e7ab04d (IsA rustication construction) (STV 1.0 0.9091)) +(: cnet_isa_64a6ebb99b (IsA rustication retirement) (STV 1.0 0.9091)) +(: cnet_isa_3466b01b21 (IsA rustication suspension) (STV 1.0 0.9091)) +(: cnet_isa_583e30a212 (IsA rustication condition) (STV 1.0 0.9091)) +(: cnet_isa_e0dacd282f (IsA rusticity awkwardness) (STV 1.0 0.9091)) +(: cnet_isa_af840f942d (IsA rustiness awkwardness) (STV 1.0 0.9091)) +(: cnet_isa_01741dfe84 (IsA rustiness condition) (STV 1.0 0.9091)) +(: cnet_isa_a7fcfa8fe2 (IsA rustle noise) (STV 1.0 0.9091)) +(: cnet_isa_dbe0208d75 (IsA rustler thief) (STV 1.0 0.9091)) +(: cnet_isa_1c66533c76 (IsA rustling larceny) (STV 1.0 0.9091)) +(: cnet_isa_04fef43ac2 (IsA rusty_blackbird new_world_blackbird) (STV 1.0 0.9091)) +(: cnet_isa_b2a2927aed (IsA rusty_woodsia woodsia) (STV 1.0 0.9091)) +(: cnet_isa_9558c63d9a (IsA rut routine) (STV 1.0 0.9091)) +(: cnet_isa_13726ab182 (IsA rut groove) (STV 1.0 0.9091)) +(: cnet_isa_eddf34a8df (IsA ruta rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_29293a2e05 (IsA rutabaga turnip) (STV 1.0 0.9091)) +(: cnet_isa_fa02b99399 (IsA rutabaga turnip_plant) (STV 1.0 0.9091)) +(: cnet_isa_9ea0f5bf20 (IsA rutaceae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_9280776481 (IsA ruthenium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_eb650074fc (IsA rutherford radioactivity_unit) (STV 1.0 0.9091)) +(: cnet_isa_bef2bcc708 (IsA rutherford_atom atomic_theory) (STV 1.0 0.9091)) +(: cnet_isa_5bbf6f5000 (IsA rutherfordium chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_a0f289a52f (IsA rutile mineral) (STV 1.0 0.9091)) +(: cnet_isa_fa1ab28c12 (IsA rutilus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_0553657fda (IsA rwanda_franc franc) (STV 1.0 0.9091)) +(: cnet_isa_28797fae33 (IsA rwandan african) (STV 1.0 0.9091)) +(: cnet_isa_af329425fb (IsA rya shag_rug) (STV 1.0 0.9091)) +(: cnet_isa_7bfdfcdf20 (IsA rydberg_s_penstemon wildflower) (STV 1.0 0.9091)) +(: cnet_isa_9d840fec75 (IsA rydberg wave_number) (STV 1.0 0.9091)) +(: cnet_isa_9ba62a9f02 (IsA rye whiskey) (STV 1.0 0.9091)) +(: cnet_isa_555e5ae0ab (IsA rye cereal) (STV 1.0 0.9091)) +(: cnet_isa_29cd79d96c (IsA rye grain) (STV 1.0 0.9091)) +(: cnet_isa_c0a81c070f (IsA rye_bread bread) (STV 1.0 0.9091)) +(: cnet_isa_2e958050f5 (IsA rye_ergot ergot) (STV 1.0 0.9091)) +(: cnet_isa_c439587120 (IsA rye_grass grass) (STV 1.0 0.9091)) +(: cnet_isa_09c0435470 (IsA rynchopidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_fa06414fe9 (IsA rynchop bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_5f417439df (IsA rypticus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_5bbd7c2f54 (IsA ryukyuan japanese) (STV 1.0 0.9091)) +(: cnet_isa_a76a8d64ab (IsA ryukyuan nipponese) (STV 1.0 0.9091)) +(: cnet_isa_6892ca1fc8 (IsA s letter) (STV 1.0 0.9091)) +(: cnet_isa_3b3318cbcd (IsA s_shape curve) (STV 1.0 0.9091)) +(: cnet_isa_ad8125344a (IsA s_wrench open_end_wrench) (STV 1.0 0.9091)) +(: cnet_isa_d4e65eea37 (IsA sa militia) (STV 1.0 0.9091)) +(: cnet_isa_947834ce3d (IsA saale_glaciation glaciation) (STV 1.0 0.9091)) +(: cnet_isa_9b8e3ef05b (IsA sabahan malaysian) (STV 1.0 0.9091)) +(: cnet_isa_07695441f6 (IsA sabal monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_dcfe64f2df (IsA sabaoth host) (STV 1.0 0.9091)) +(: cnet_isa_3946b2d269 (IsA sabbat assembly) (STV 1.0 0.9091)) +(: cnet_isa_cb28009cc6 (IsA sabbatarian religionist) (STV 1.0 0.9091)) +(: cnet_isa_3cf245e2f8 (IsA sabbath rest_day) (STV 1.0 0.9091)) +(: cnet_isa_08ccec6de3 (IsA sabbatia marsh_plant) (STV 1.0 0.9091)) +(: cnet_isa_d3533361ca (IsA sabbatical leave) (STV 1.0 0.9091)) +(: cnet_isa_0de229fe4d (IsA sabbatical_year sabbatical) (STV 1.0 0.9091)) +(: cnet_isa_1e3aadabea (IsA sabellian osco_umbrian) (STV 1.0 0.9091)) +(: cnet_isa_4e3f162411 (IsA saber fencing_sword) (STV 1.0 0.9091)) +(: cnet_isa_6f6f5b859e (IsA saber_rattling military_action) (STV 1.0 0.9091)) +(: cnet_isa_4175559035 (IsA saber_saw power_saw) (STV 1.0 0.9091)) +(: cnet_isa_cafd1d41fb (IsA saber_toothed_tiger big_cat) (STV 1.0 0.9091)) +(: cnet_isa_e2f9ef4fe3 (IsA sabicu shrub) (STV 1.0 0.9091)) +(: cnet_isa_f066ba8767 (IsA sabicu wood) (STV 1.0 0.9091)) +(: cnet_isa_8c37bc8f00 (IsA sabin absorption_unit) (STV 1.0 0.9091)) +(: cnet_isa_35fc931c08 (IsA sabin_vaccine poliovirus_vaccine) (STV 1.0 0.9091)) +(: cnet_isa_4d1028f65d (IsA sabine italian) (STV 1.0 0.9091)) +(: cnet_isa_fd95927d68 (IsA sabinea rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_27c2eab43b (IsA sable marten) (STV 1.0 0.9091)) +(: cnet_isa_44a6560121 (IsA sable brush) (STV 1.0 0.9091)) +(: cnet_isa_ec589575a1 (IsA sable scarf) (STV 1.0 0.9091)) +(: cnet_isa_1c6d42bf88 (IsA sable fur) (STV 1.0 0.9091)) +(: cnet_isa_a088d01cac (IsA sable_antelope antelope) (STV 1.0 0.9091)) +(: cnet_isa_96eaa35306 (IsA sable_coat fur_coat) (STV 1.0 0.9091)) +(: cnet_isa_6d8265fd36 (IsA sabot shoe) (STV 1.0 0.9091)) +(: cnet_isa_94d08a6553 (IsA sabotage destruction) (STV 1.0 0.9091)) +(: cnet_isa_63e48d0f67 (IsA saboteur destroyer) (STV 1.0 0.9091)) +(: cnet_isa_3e547b21c9 (IsA sabra israeli) (STV 1.0 0.9091)) +(: cnet_isa_a25eb8923b (IsA sac cavity) (STV 1.0 0.9091)) +(: cnet_isa_f5ef024dcc (IsA sac algonquin) (STV 1.0 0.9091)) +(: cnet_isa_e8d7635ae2 (IsA sac_fungus fungus) (STV 1.0 0.9091)) +(: cnet_isa_26f4ab6f90 (IsA saccade eye_movement) (STV 1.0 0.9091)) +(: cnet_isa_12207eddeb (IsA saccharic_acid carboxylic_acid) (STV 1.0 0.9091)) +(: cnet_isa_41814a0168 (IsA saccharin sweetening) (STV 1.0 0.9091)) +(: cnet_isa_7044e1d52c (IsA saccharinity sweetness) (STV 1.0 0.9091)) +(: cnet_isa_41377a02a4 (IsA saccharomyce fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_e8d334b9e1 (IsA saccharomycetaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_94f961bc55 (IsA saccharum monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7c984b1af9 (IsA saccule sac) (STV 1.0 0.9091)) +(: cnet_isa_610be44f9c (IsA sacerdotalism belief) (STV 1.0 0.9091)) +(: cnet_isa_5309136532 (IsA sachem indian_chieftain) (STV 1.0 0.9091)) +(: cnet_isa_8002fb9f03 (IsA sachem politician) (STV 1.0 0.9091)) +(: cnet_isa_e444b64190 (IsA sachet bag) (STV 1.0 0.9091)) +(: cnet_isa_fb5e8ec595 (IsA sack plundering) (STV 1.0 0.9091)) +(: cnet_isa_7953e8d770 (IsA sack bag) (STV 1.0 0.9091)) +(: cnet_isa_8e2dd0d6d7 (IsA sack jacket) (STV 1.0 0.9091)) +(: cnet_isa_eb67603193 (IsA sack white_wine) (STV 1.0 0.9091)) +(: cnet_isa_a03ec8f53d (IsA sack containerful) (STV 1.0 0.9091)) +(: cnet_isa_b118e62a12 (IsA sack_coat coat) (STV 1.0 0.9091)) +(: cnet_isa_9cd7870009 (IsA sack_race race) (STV 1.0 0.9091)) +(: cnet_isa_d8562254f0 (IsA sackbut trombone) (STV 1.0 0.9091)) +(: cnet_isa_17460fa89f (IsA sackcloth fabric) (STV 1.0 0.9091)) +(: cnet_isa_83b11b5ae0 (IsA sackcloth garment) (STV 1.0 0.9091)) +(: cnet_isa_579f9daa45 (IsA sackcloth_and_ashe display) (STV 1.0 0.9091)) +(: cnet_isa_5158900d1d (IsA sacking fabric) (STV 1.0 0.9091)) +(: cnet_isa_6df76b3ba4 (IsA sacral_nerve spinal_nerve) (STV 1.0 0.9091)) +(: cnet_isa_b463329309 (IsA sacral_plexus nerve_plexus) (STV 1.0 0.9091)) +(: cnet_isa_8c50c37b4f (IsA sacral_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_ea92ebbb79 (IsA sacral_vertebra vertebra) (STV 1.0 0.9091)) +(: cnet_isa_75bbe6075c (IsA sacrament religious_ceremony) (STV 1.0 0.9091)) +(: cnet_isa_e3617df01a (IsA sacred_college body) (STV 1.0 0.9091)) +(: cnet_isa_576fbe769f (IsA sacred_cow important_person) (STV 1.0 0.9091)) +(: cnet_isa_096899ae9e (IsA sacred_ibis ibis) (STV 1.0 0.9091)) +(: cnet_isa_1bd77f0a2f (IsA sacred_text writing) (STV 1.0 0.9091)) +(: cnet_isa_43e7a89afb (IsA sacredness holiness) (STV 1.0 0.9091)) +(: cnet_isa_5f81cfdfae (IsA sacrifice killing) (STV 1.0 0.9091)) +(: cnet_isa_bd47bd45cc (IsA sacrifice putout) (STV 1.0 0.9091)) +(: cnet_isa_059e8ab40c (IsA sacrifice personnel_casualty) (STV 1.0 0.9091)) +(: cnet_isa_712bba8f2e (IsA sacrifice loss) (STV 1.0 0.9091)) +(: cnet_isa_37cc0209ae (IsA sacrifice_fly sacrifice) (STV 1.0 0.9091)) +(: cnet_isa_9d8302d730 (IsA sacrificer religionist) (STV 1.0 0.9091)) +(: cnet_isa_d7ce5802fe (IsA sacrilegiousness profaneness) (STV 1.0 0.9091)) +(: cnet_isa_962b34d21b (IsA sacrum bone) (STV 1.0 0.9091)) +(: cnet_isa_6a8076da8a (IsA saddle body_part) (STV 1.0 0.9091)) +(: cnet_isa_b8b13b3d5a (IsA saddle piece_of_leather) (STV 1.0 0.9091)) +(: cnet_isa_aea91a3902 (IsA saddle seat) (STV 1.0 0.9091)) +(: cnet_isa_3382228f6d (IsA saddle cut) (STV 1.0 0.9091)) +(: cnet_isa_33d4f5f657 (IsA saddle_blanket stable_gear) (STV 1.0 0.9091)) +(: cnet_isa_cf8316f5d5 (IsA saddle_block_anesthesia spinal_anesthesia) (STV 1.0 0.9091)) +(: cnet_isa_af1cb167a5 (IsA saddle_hackle hackle) (STV 1.0 0.9091)) +(: cnet_isa_22ac6866d0 (IsA saddle_horse horse) (STV 1.0 0.9091)) +(: cnet_isa_639ed890e2 (IsA saddle_of_lamb cut_of_lamb) (STV 1.0 0.9091)) +(: cnet_isa_d4cef957a2 (IsA saddle_oxford oxford) (STV 1.0 0.9091)) +(: cnet_isa_a17ffaa20a (IsA saddle_oyster oyster) (STV 1.0 0.9091)) +(: cnet_isa_d2cc1b2971 (IsA saddle_seat seat) (STV 1.0 0.9091)) +(: cnet_isa_cba6b90a10 (IsA saddle_soap soap) (STV 1.0 0.9091)) +(: cnet_isa_2cf8091463 (IsA saddle_sore animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_761b3729d5 (IsA saddle_sore gall) (STV 1.0 0.9091)) +(: cnet_isa_476f078deb (IsA saddle_stitch embroidery_stitch) (STV 1.0 0.9091)) +(: cnet_isa_41da2b6397 (IsA saddleback pass) (STV 1.0 0.9091)) +(: cnet_isa_26471a0d1c (IsA saddlebag bag) (STV 1.0 0.9091)) +(: cnet_isa_8e133ba34b (IsA saddlebill stork) (STV 1.0 0.9091)) +(: cnet_isa_5409ffc884 (IsA saddler maker) (STV 1.0 0.9091)) +(: cnet_isa_60ceef557a (IsA saddlery workshop) (STV 1.0 0.9091)) +(: cnet_isa_a0c435177d (IsA sadducee israelite) (STV 1.0 0.9091)) +(: cnet_isa_bc3ae910c2 (IsA sadhe letter) (STV 1.0 0.9091)) +(: cnet_isa_f8207b5986 (IsA sadhu hindoo) (STV 1.0 0.9091)) +(: cnet_isa_50791c5945 (IsA sadism sexual_pleasure) (STV 1.0 0.9091)) +(: cnet_isa_af1101364f (IsA sadist pervert) (STV 1.0 0.9091)) +(: cnet_isa_8e6e199c6d (IsA sadleria fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_e3d681d62d (IsA sadness emotion) (STV 1.0 0.9454)) +(: cnet_isa_cc3431714d (IsA sadness emotional_and_physical_pain) (STV 1.0 0.9091)) +(: cnet_isa_577cb20655 (IsA sadness feeling) (STV 1.0 0.9091)) +(: cnet_isa_23a11a2174 (IsA sadness unhappiness) (STV 1.0 0.9091)) +(: cnet_isa_61f9244449 (IsA sadomasochism masochism) (STV 1.0 0.9091)) +(: cnet_isa_8404e2859d (IsA sadomasochism sadism) (STV 1.0 0.9091)) +(: cnet_isa_0b317d2649 (IsA sadomasochist pervert) (STV 1.0 0.9091)) +(: cnet_isa_c604d06f65 (IsA saek tai) (STV 1.0 0.9091)) +(: cnet_isa_4290401bae (IsA safar islamic_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_348c026b09 (IsA safari_park park) (STV 1.0 0.9091)) +(: cnet_isa_92d2074cfc (IsA safe cupboard) (STV 1.0 0.9091)) +(: cnet_isa_f962c3d968 (IsA safe strongbox) (STV 1.0 0.9091)) +(: cnet_isa_7135d0532a (IsA safe_conduct pass) (STV 1.0 0.9091)) +(: cnet_isa_018274c16b (IsA safe_deposit strongbox) (STV 1.0 0.9091)) +(: cnet_isa_b364f5b117 (IsA safe_harbor shark_repellent) (STV 1.0 0.9091)) +(: cnet_isa_70670e5c10 (IsA safe_house house) (STV 1.0 0.9091)) +(: cnet_isa_220693fac3 (IsA safe_house refuge) (STV 1.0 0.9091)) +(: cnet_isa_e3b70a6938 (IsA safe_period phase) (STV 1.0 0.9091)) +(: cnet_isa_95f41ab745 (IsA safe_sex sexual_activity) (STV 1.0 0.9091)) +(: cnet_isa_68c7171b8e (IsA safebreaker thief) (STV 1.0 0.9091)) +(: cnet_isa_440fb8b671 (IsA safehold refuge) (STV 1.0 0.9091)) +(: cnet_isa_6d0f9360ec (IsA safeness characteristic) (STV 1.0 0.9091)) +(: cnet_isa_dc90e25c75 (IsA safety score) (STV 1.0 0.9091)) +(: cnet_isa_b5506b7743 (IsA safety area) (STV 1.0 0.9091)) +(: cnet_isa_e52772b3f6 (IsA safety condition) (STV 1.0 0.9091)) +(: cnet_isa_58610dcc9f (IsA safety_arch arch) (STV 1.0 0.9091)) +(: cnet_isa_fa0d44b598 (IsA safety_arch strengthener) (STV 1.0 0.9091)) +(: cnet_isa_fdee6b8148 (IsA safety_belt belt) (STV 1.0 0.9091)) +(: cnet_isa_dd40d2bb6d (IsA safety_belt restraint) (STV 1.0 0.9091)) +(: cnet_isa_8ee30de7b3 (IsA safety_bicycle bicycle) (STV 1.0 0.9091)) +(: cnet_isa_13381815f6 (IsA safety_blitz maneuver) (STV 1.0 0.9091)) +(: cnet_isa_c7c6eb06e9 (IsA safety_bolt bolt) (STV 1.0 0.9091)) +(: cnet_isa_e3875c83a3 (IsA safety_catch guard) (STV 1.0 0.9091)) +(: cnet_isa_c0dc5e4074 (IsA safety_curtain theater_curtain) (STV 1.0 0.9091)) +(: cnet_isa_a61a58a0dc (IsA safety_factor ratio) (STV 1.0 0.9091)) +(: cnet_isa_23d5f2748c (IsA safety_feature feature) (STV 1.0 0.9091)) +(: cnet_isa_26614ea809 (IsA safety_fuse fuse) (STV 1.0 0.9091)) +(: cnet_isa_4f724b3f2a (IsA safety_glass glass) (STV 1.0 0.9091)) +(: cnet_isa_26315efc14 (IsA safety_lamp oil_lamp) (STV 1.0 0.9091)) +(: cnet_isa_495a9f56ed (IsA safety_match match) (STV 1.0 0.9091)) +(: cnet_isa_eb50e86b59 (IsA safety_net net) (STV 1.0 0.9091)) +(: cnet_isa_f5b1969a1d (IsA safety_net guarantee) (STV 1.0 0.9091)) +(: cnet_isa_6633408e34 (IsA safety_pin fastener) (STV 1.0 0.9091)) +(: cnet_isa_2a6696f2dc (IsA safety_pin pin) (STV 1.0 0.9091)) +(: cnet_isa_e619e5889a (IsA safety_rail railing) (STV 1.0 0.9091)) +(: cnet_isa_c5f3051747 (IsA safety_razor razor) (STV 1.0 0.9091)) +(: cnet_isa_09ad04f426 (IsA safety_squeeze_play squeeze_play) (STV 1.0 0.9091)) +(: cnet_isa_6191ade275 (IsA safety_valve regulator) (STV 1.0 0.9091)) +(: cnet_isa_a1621ba6e5 (IsA safety_valve valve) (STV 1.0 0.9091)) +(: cnet_isa_9a6ba0892f (IsA safflower herb) (STV 1.0 0.9091)) +(: cnet_isa_2dc7ed67fa (IsA safflower_oil vegetable_oil) (STV 1.0 0.9091)) +(: cnet_isa_3df06001fd (IsA safflower_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_9f555ad2d7 (IsA safflower_seed seed) (STV 1.0 0.9091)) +(: cnet_isa_c590c1522b (IsA saffron flavorer) (STV 1.0 0.9091)) +(: cnet_isa_d6f22d7a47 (IsA saffron crocus) (STV 1.0 0.9091)) +(: cnet_isa_274f968023 (IsA safranine dye) (STV 1.0 0.9091)) +(: cnet_isa_14a2e2331c (IsA sag depression) (STV 1.0 0.9091)) +(: cnet_isa_ba2a974ac0 (IsA saga adventure_story) (STV 1.0 0.9091)) +(: cnet_isa_aafb96b11b (IsA sagacity wisdom) (STV 1.0 0.9091)) +(: cnet_isa_e0881e1d9d (IsA sage herb) (STV 1.0 0.9091)) +(: cnet_isa_31ed1c98aa (IsA sage mentor) (STV 1.0 0.9091)) +(: cnet_isa_2ac0c74aed (IsA sage_green green) (STV 1.0 0.9091)) +(: cnet_isa_3323233f04 (IsA sage_grouse grouse) (STV 1.0 0.9091)) +(: cnet_isa_e9bb502dbd (IsA sagebrush subshrub) (STV 1.0 0.9091)) +(: cnet_isa_7ba4c64745 (IsA sagebrush_buttercup wildflower) (STV 1.0 0.9091)) +(: cnet_isa_96cb9be956 (IsA sagebrush_lizard spiny_lizard) (STV 1.0 0.9091)) +(: cnet_isa_bdd26b820a (IsA sagebrush_mariposa_tulip mariposa) (STV 1.0 0.9091)) +(: cnet_isa_11c9e95611 (IsA sagina caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f8bfea3919 (IsA sagitta arrowworm) (STV 1.0 0.9091)) +(: cnet_isa_bcd40af0f2 (IsA sagittal_suture suture) (STV 1.0 0.9091)) +(: cnet_isa_e5ab433bc1 (IsA sagittaria monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_36eed9fe8d (IsA sagittariidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_a60826b44e (IsA sagittarius bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_4d9cc905d8 (IsA sagittate_leaf simple_leaf) (STV 1.0 0.9091)) +(: cnet_isa_44556d94fb (IsA sago starch) (STV 1.0 0.9091)) +(: cnet_isa_e04b2142bb (IsA sago_palm cycad) (STV 1.0 0.9091)) +(: cnet_isa_e99aa0b4ce (IsA sago_palm palm) (STV 1.0 0.9091)) +(: cnet_isa_662813e5e0 (IsA saguaro cactus) (STV 1.0 0.9091)) +(: cnet_isa_5e9529030d (IsA sahaptino penutian) (STV 1.0 0.9091)) +(: cnet_isa_d414134121 (IsA saharan nilo_saharan) (STV 1.0 0.9091)) +(: cnet_isa_84873d844e (IsA sahib european) (STV 1.0 0.9091)) +(: cnet_isa_799d85a49c (IsA saiga antelope) (STV 1.0 0.9091)) +(: cnet_isa_fbca589c0f (IsA saigon_cinnamon laurel) (STV 1.0 0.9091)) +(: cnet_isa_dfdb6fd789 (IsA sail piece_of_cloth) (STV 1.0 0.9091)) +(: cnet_isa_919bdd200d (IsA sail structure) (STV 1.0 0.9091)) +(: cnet_isa_278abeb253 (IsA sailboat vehicle) (STV 1.0 0.9091)) +(: cnet_isa_8f1b9d73e5 (IsA sailboat boat) (STV 1.0 0.9091)) +(: cnet_isa_cbfaeaf10a (IsA sailboat sailing_vessel) (STV 1.0 0.9091)) +(: cnet_isa_c65b0f8292 (IsA sailcloth fabric) (STV 1.0 0.9091)) +(: cnet_isa_bc1afe2298 (IsA sailfish scombroid) (STV 1.0 0.9091)) +(: cnet_isa_652a0cb327 (IsA sailfish saltwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_db6d89c685 (IsA sailing expensive_hobby) (STV 1.0 0.9339)) +(: cnet_isa_ec8cf2ed09 (IsA sailing sport) (STV 1.0 0.9454)) +(: cnet_isa_f9242110f0 (IsA sailing departure) (STV 1.0 0.9091)) +(: cnet_isa_4b6e5cbfeb (IsA sailing water_travel) (STV 1.0 0.9091)) +(: cnet_isa_e305897b15 (IsA sailing_boat boat) (STV 1.0 0.9339)) +(: cnet_isa_7cb093cfcc (IsA sailing_master officer) (STV 1.0 0.9091)) +(: cnet_isa_f3d6830359 (IsA sailing_race boat_race) (STV 1.0 0.9091)) +(: cnet_isa_0445047e35 (IsA sailing_ship ship) (STV 1.0 0.9091)) +(: cnet_isa_ba9c32a332 (IsA sailing_vessel vessel) (STV 1.0 0.9091)) +(: cnet_isa_de4b52971c (IsA sailing_warship man_of_war) (STV 1.0 0.9091)) +(: cnet_isa_81144a36b0 (IsA sailmaker maker) (STV 1.0 0.9091)) +(: cnet_isa_0415fc12d0 (IsA sailor_s_choice grunt) (STV 1.0 0.9091)) +(: cnet_isa_2744767a76 (IsA sailor skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_91032653b3 (IsA sailor_cap cap) (STV 1.0 0.9091)) +(: cnet_isa_64cca1f0fa (IsA sailor_suit ensemble) (STV 1.0 0.9091)) +(: cnet_isa_5c04ec5cc4 (IsA saimiri mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_215c1d65aa (IsA sainfoin herb) (STV 1.0 0.9091)) +(: cnet_isa_a4569096dc (IsA saint_s_day day) (STV 1.0 0.9091)) +(: cnet_isa_bbb1d57bb3 (IsA saint deity) (STV 1.0 0.9091)) +(: cnet_isa_3a97ebed40 (IsA saint good_person) (STV 1.0 0.9091)) +(: cnet_isa_f6512fccd0 (IsA saint_agne_s_eve christian_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_8a5180513a (IsA saint_anthony_s_fire skin_disease) (STV 1.0 0.9091)) +(: cnet_isa_834d3feae3 (IsA saint_bernard_s_lily liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_70cecbb60e (IsA saint_bernard working_dog) (STV 1.0 0.9091)) +(: cnet_isa_2604ecb966 (IsA saint_cyril missionary) (STV 1.0 0.9091)) +(: cnet_isa_78e1836391 (IsA saint_emilion claret) (STV 1.0 0.9091)) +(: cnet_isa_517144d4b9 (IsA saint_joseph christian_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_5d67035d25 (IsA saint_polycarp martyr) (STV 1.0 0.9091)) +(: cnet_isa_58354bbadc (IsA sainthood position) (STV 1.0 0.9091)) +(: cnet_isa_8c1ff6b0ef (IsA sainthood group) (STV 1.0 0.9091)) +(: cnet_isa_a5c651779a (IsA saintliness good) (STV 1.0 0.9091)) +(: cnet_isa_021bcb7497 (IsA saintpaulia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_aca8a286ee (IsA saint_peter_and_paul christian_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_d5b3e819aa (IsA sake benefit) (STV 1.0 0.9091)) +(: cnet_isa_7b94087286 (IsA sake purpose) (STV 1.0 0.9091)) +(: cnet_isa_86da0824e2 (IsA sake alcohol) (STV 1.0 0.9091)) +(: cnet_isa_f38ff87725 (IsA saki new_world_monkey) (STV 1.0 0.9091)) +(: cnet_isa_100188c221 (IsA salaam bow) (STV 1.0 0.9091)) +(: cnet_isa_381364b43a (IsA salableness quality) (STV 1.0 0.9091)) +(: cnet_isa_b5a301e378 (IsA salad food) (STV 1.0 0.9693)) +(: cnet_isa_687207c97e (IsA salad dish) (STV 1.0 0.9091)) +(: cnet_isa_4824ee800d (IsA salad_bar bar) (STV 1.0 0.9091)) +(: cnet_isa_f54224ea4e (IsA salad_bowl bowl) (STV 1.0 0.9091)) +(: cnet_isa_c0f9376453 (IsA salad_burnet salad_green) (STV 1.0 0.9091)) +(: cnet_isa_f04620b40e (IsA salad_burnet herb) (STV 1.0 0.9091)) +(: cnet_isa_c6662be1e1 (IsA salad_cream dressing) (STV 1.0 0.9091)) +(: cnet_isa_05aff35b03 (IsA salad_fork fork) (STV 1.0 0.9091)) +(: cnet_isa_ca3eb8942a (IsA salad_green green) (STV 1.0 0.9091)) +(: cnet_isa_004e16eeff (IsA salad_nicoise salad) (STV 1.0 0.9091)) +(: cnet_isa_bfa27c4959 (IsA salad_oil vegetable_oil) (STV 1.0 0.9091)) +(: cnet_isa_99e6960afb (IsA salad_plate plate) (STV 1.0 0.9091)) +(: cnet_isa_431f7d1a1e (IsA salafism islam) (STV 1.0 0.9091)) +(: cnet_isa_8b4db07953 (IsA salai incense_tree) (STV 1.0 0.9091)) +(: cnet_isa_6f73b9f368 (IsA salal shrub) (STV 1.0 0.9091)) +(: cnet_isa_6fdb10493f (IsA salamander amphibian) (STV 1.0 0.9091)) +(: cnet_isa_a7a0bc2208 (IsA salamander mythical_monster) (STV 1.0 0.9091)) +(: cnet_isa_a13d40ad52 (IsA salamandra amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_3c3ccb3ed2 (IsA salamandridae amphibian_family) (STV 1.0 0.9091)) +(: cnet_isa_507beed03b (IsA salami sausage) (STV 1.0 0.9091)) +(: cnet_isa_9effb72392 (IsA salat pillar_of_islam) (STV 1.0 0.9091)) +(: cnet_isa_3877713c67 (IsA salat worship) (STV 1.0 0.9091)) +(: cnet_isa_92e04d8be0 (IsA sale occasion) (STV 1.0 0.9091)) +(: cnet_isa_96f39fa1ec (IsA sale selling) (STV 1.0 0.9091)) +(: cnet_isa_ee5f0b4d00 (IsA sale agreement) (STV 1.0 0.9091)) +(: cnet_isa_6123b749bf (IsA sale merchantability) (STV 1.0 0.9091)) +(: cnet_isa_ac77bdd3b0 (IsA sale_in_gross contract) (STV 1.0 0.9091)) +(: cnet_isa_8584d0773c (IsA sale_campaign advertising_campaign) (STV 1.0 0.9091)) +(: cnet_isa_1e94cbb760 (IsA sale_department business_department) (STV 1.0 0.9091)) +(: cnet_isa_65f1b13823 (IsA sale_finance_company finance_company) (STV 1.0 0.9091)) +(: cnet_isa_58df510022 (IsA sale_incentive bonus) (STV 1.0 0.9091)) +(: cnet_isa_7779b57336 (IsA sale_promotion promotion) (STV 1.0 0.9091)) +(: cnet_isa_811f484e7f (IsA sale_resistance resistance) (STV 1.0 0.9091)) +(: cnet_isa_fc89fb19b6 (IsA sale_staff staff) (STV 1.0 0.9091)) +(: cnet_isa_824a87db4c (IsA sale_talk promotion) (STV 1.0 0.9091)) +(: cnet_isa_81f1ef4aee (IsA sale_tax excise) (STV 1.0 0.9091)) +(: cnet_isa_9642fc31ff (IsA salesgirl salesperson) (STV 1.0 0.9091)) +(: cnet_isa_746e33fc1d (IsA salesman salesperson) (STV 1.0 0.9091)) +(: cnet_isa_a846d46dde (IsA salesmanship skill) (STV 1.0 0.9091)) +(: cnet_isa_f46a59f614 (IsA salesperson employee) (STV 1.0 0.9091)) +(: cnet_isa_1a4ec3818c (IsA salian frank) (STV 1.0 0.9091)) +(: cnet_isa_374e51baf1 (IsA salic_law legal_code) (STV 1.0 0.9091)) +(: cnet_isa_e88fc1f66b (IsA salicaceae hamamelid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_2f4b018372 (IsA salicale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_d72159ab69 (IsA salicornia caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_397fb0d82a (IsA salicylate nonsteroidal_anti_inflammatory) (STV 1.0 0.9091)) +(: cnet_isa_afd4e99317 (IsA salicylate salt) (STV 1.0 0.9091)) +(: cnet_isa_6c366a01ba (IsA salicylate_poisoning poisoning) (STV 1.0 0.9091)) +(: cnet_isa_21f989ef5d (IsA salicylic_acid hydroxy_acid) (STV 1.0 0.9091)) +(: cnet_isa_5777e27be7 (IsA salience prominence) (STV 1.0 0.9091)) +(: cnet_isa_eee2c587d9 (IsA salient projection) (STV 1.0 0.9091)) +(: cnet_isa_a06a148b46 (IsA salient_angle angle) (STV 1.0 0.9091)) +(: cnet_isa_21e133ee63 (IsA salientia animal_order) (STV 1.0 0.9091)) +(: cnet_isa_08459880cd (IsA saline_solution isotonic_solution) (STV 1.0 0.9091)) +(: cnet_isa_04a65c8285 (IsA salinometer hydrometer) (STV 1.0 0.9091)) +(: cnet_isa_f4caa09acf (IsA salisbury_steak dish) (STV 1.0 0.9091)) +(: cnet_isa_e334ae32c8 (IsA salish mosan) (STV 1.0 0.9091)) +(: cnet_isa_8dfe1bf43c (IsA salish native_american) (STV 1.0 0.9091)) +(: cnet_isa_781b3bc4e3 (IsA saliva secretion) (STV 1.0 0.9091)) +(: cnet_isa_fc393ee013 (IsA salivary_duct duct) (STV 1.0 0.9091)) +(: cnet_isa_653780afe4 (IsA salivary_gland exocrine_gland) (STV 1.0 0.9091)) +(: cnet_isa_ac627150ac (IsA salivation secretion) (STV 1.0 0.9091)) +(: cnet_isa_c65d554210 (IsA salix hamamelid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ff623f7b05 (IsA salk_vaccine poliovirus_vaccine) (STV 1.0 0.9091)) +(: cnet_isa_04d087334d (IsA sallet helmet) (STV 1.0 0.9091)) +(: cnet_isa_f823059148 (IsA sallow willow) (STV 1.0 0.9091)) +(: cnet_isa_f29f83584e (IsA sallowness complexion) (STV 1.0 0.9091)) +(: cnet_isa_2dd00f217c (IsA sally venture) (STV 1.0 0.9091)) +(: cnet_isa_d40da6e49b (IsA sally_lunn teacake) (STV 1.0 0.9091)) +(: cnet_isa_696d8f0f4b (IsA salmacis nymph) (STV 1.0 0.9091)) +(: cnet_isa_094ca625d5 (IsA salmagundi salad) (STV 1.0 0.9091)) +(: cnet_isa_8c502a9a54 (IsA salmi ragout) (STV 1.0 0.9091)) +(: cnet_isa_de77f38b9f (IsA salmo fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_76c75484b4 (IsA salmon food) (STV 1.0 0.9339)) +(: cnet_isa_690f4b6b38 (IsA salmon food_fish) (STV 1.0 0.9091)) +(: cnet_isa_14ca0fca6c (IsA salmon salmonid) (STV 1.0 0.9091)) +(: cnet_isa_3e70d4405f (IsA salmon chromatic_color) (STV 1.0 0.9091)) +(: cnet_isa_b0eaf13710 (IsA salmon fish) (STV 1.0 0.9091)) +(: cnet_isa_e9822f8736 (IsA salmon_loaf fish_loaf) (STV 1.0 0.9091)) +(: cnet_isa_679695a699 (IsA salmon_oil animal_oil) (STV 1.0 0.9091)) +(: cnet_isa_3cd059eaee (IsA salmonberry raspberry) (STV 1.0 0.9091)) +(: cnet_isa_53cfa20c93 (IsA salmonella enteric_bacteria) (STV 1.0 0.9091)) +(: cnet_isa_222866e9f9 (IsA salmonella_enteritidis salmonella) (STV 1.0 0.9091)) +(: cnet_isa_718e37d0c5 (IsA salmonella_typhimurium salmonella) (STV 1.0 0.9091)) +(: cnet_isa_892434c529 (IsA salmonellosis food_poisoning) (STV 1.0 0.9091)) +(: cnet_isa_bec20ed0c8 (IsA salmonid soft_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_cb27796ad2 (IsA salmonidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_4fe2bc01f8 (IsA salol salicylate) (STV 1.0 0.9091)) +(: cnet_isa_07fd83767d (IsA salon gallery) (STV 1.0 0.9091)) +(: cnet_isa_5454e42df4 (IsA salon living_room) (STV 1.0 0.9091)) +(: cnet_isa_f94709317d (IsA salon shop) (STV 1.0 0.9091)) +(: cnet_isa_d1fb07014f (IsA saloon_keeper owner) (STV 1.0 0.9091)) +(: cnet_isa_7ca32ade1c (IsA salp tunicate) (STV 1.0 0.9091)) +(: cnet_isa_5f6b3231c8 (IsA salpichroa asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4d0851caf8 (IsA salpidae chordate_family) (STV 1.0 0.9091)) +(: cnet_isa_2bed722349 (IsA salpiglossis herb) (STV 1.0 0.9091)) +(: cnet_isa_146f769d49 (IsA salpincte bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_e524b7afd3 (IsA salpingectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_564f87051e (IsA salpingitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_4e1f70a6b3 (IsA salpinx tube) (STV 1.0 0.9091)) +(: cnet_isa_be32b42b3a (IsA salsa condiment) (STV 1.0 0.9091)) +(: cnet_isa_7f696d0c45 (IsA salsify root_vegetable) (STV 1.0 0.9091)) +(: cnet_isa_7308084677 (IsA salsify herb) (STV 1.0 0.9091)) +(: cnet_isa_1c1f48faeb (IsA salsify root) (STV 1.0 0.9091)) +(: cnet_isa_f9b2c1f920 (IsA salsilla vine) (STV 1.0 0.9091)) +(: cnet_isa_1c955c2a31 (IsA salsola caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_bc6a1fe572 (IsA salt mineral) (STV 1.0 0.9091)) +(: cnet_isa_1f58db06f4 (IsA salt spice) (STV 1.0 0.9454)) +(: cnet_isa_e99cb4aae3 (IsA salt taste) (STV 1.0 0.9091)) +(: cnet_isa_1cae639c38 (IsA salt flavorer) (STV 1.0 0.9091)) +(: cnet_isa_14c837cdab (IsA salt compound) (STV 1.0 0.9091)) +(: cnet_isa_5c54876f78 (IsA salt_cod cod) (STV 1.0 0.9091)) +(: cnet_isa_8e4ca5e632 (IsA salt_depletion depletion) (STV 1.0 0.9091)) +(: cnet_isa_3aa0039451 (IsA salt_flat flat) (STV 1.0 0.9091)) +(: cnet_isa_967d8c353b (IsA salt_lick sediment) (STV 1.0 0.9091)) +(: cnet_isa_94b8edb016 (IsA salt_marsh marsh) (STV 1.0 0.9091)) +(: cnet_isa_00c5d4cbb0 (IsA salt_marsh_mallow seashore_mallow) (STV 1.0 0.9091)) +(: cnet_isa_0de9ca4870 (IsA salt_mine mine) (STV 1.0 0.9091)) +(: cnet_isa_a9f2195d85 (IsA salt_pork pork) (STV 1.0 0.9091)) +(: cnet_isa_9365c4bcf9 (IsA salt_reed_grass cordgrass) (STV 1.0 0.9091)) +(: cnet_isa_2f47719657 (IsA salt_rising_bread bread) (STV 1.0 0.9091)) +(: cnet_isa_511fee7ec2 (IsA salt_rush rush) (STV 1.0 0.9091)) +(: cnet_isa_cb6ab48a64 (IsA salt_tree shrub) (STV 1.0 0.9091)) +(: cnet_isa_b65be632ed (IsA saltation mutation) (STV 1.0 0.9091)) +(: cnet_isa_be647a177f (IsA saltation natural_process) (STV 1.0 0.9091)) +(: cnet_isa_aba37c8603 (IsA saltbox house) (STV 1.0 0.9091)) +(: cnet_isa_5a478b5a19 (IsA saltbush shrub) (STV 1.0 0.9091)) +(: cnet_isa_cc2b432dbe (IsA saltcellar container) (STV 1.0 0.9091)) +(: cnet_isa_e1557d91d3 (IsA salter merchant) (STV 1.0 0.9091)) +(: cnet_isa_693095ccbf (IsA salter preserver) (STV 1.0 0.9091)) +(: cnet_isa_5467a031fe (IsA saltine cracker) (STV 1.0 0.9091)) +(: cnet_isa_0aae0d488b (IsA saltiness property) (STV 1.0 0.9091)) +(: cnet_isa_608a6ac3f9 (IsA salting seasoning) (STV 1.0 0.9091)) +(: cnet_isa_5e8da112ad (IsA saltpan basin) (STV 1.0 0.9091)) +(: cnet_isa_91bfd36c6e (IsA saltshaker shaker) (STV 1.0 0.9091)) +(: cnet_isa_8fa805432c (IsA saltwater_fish seafood) (STV 1.0 0.9091)) +(: cnet_isa_9ebc725e2b (IsA saltwork plant) (STV 1.0 0.9091)) +(: cnet_isa_22d80651e6 (IsA saltwort shrub) (STV 1.0 0.9091)) +(: cnet_isa_3e7d6ec7a2 (IsA salubrity healthfulness) (STV 1.0 0.9091)) +(: cnet_isa_31886879aa (IsA saluki hound) (STV 1.0 0.9091)) +(: cnet_isa_dbb73debdc (IsA salutation opening) (STV 1.0 0.9091)) +(: cnet_isa_541739a6af (IsA salutatorian scholar) (STV 1.0 0.9091)) +(: cnet_isa_6353b2d49a (IsA salutatory_address oratory) (STV 1.0 0.9091)) +(: cnet_isa_16de9bb9fa (IsA salute greeting) (STV 1.0 0.9091)) +(: cnet_isa_9d2698f9ab (IsA salute recognition) (STV 1.0 0.9091)) +(: cnet_isa_f4b7b5bbd9 (IsA salvadora dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_819ed5fb19 (IsA salvadoraceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_a73530e7ec (IsA salvadorean south_american) (STV 1.0 0.9091)) +(: cnet_isa_c018da0930 (IsA salvage rescue) (STV 1.0 0.9091)) +(: cnet_isa_3361961ed9 (IsA salvage commodity) (STV 1.0 0.9091)) +(: cnet_isa_59929665d2 (IsA salvage property) (STV 1.0 0.9091)) +(: cnet_isa_159aa3b04b (IsA salvager rescuer) (STV 1.0 0.9091)) +(: cnet_isa_8c23833436 (IsA salvation mean) (STV 1.0 0.9091)) +(: cnet_isa_32320f6480 (IsA salvation rescue) (STV 1.0 0.9091)) +(: cnet_isa_03f6734354 (IsA salvation safety) (STV 1.0 0.9091)) +(: cnet_isa_d8e4931a0c (IsA salvation_army nongovernmental_organization) (STV 1.0 0.9091)) +(: cnet_isa_32067b2b0a (IsA salve redress) (STV 1.0 0.9091)) +(: cnet_isa_c8afaed3ff (IsA salvelinus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_2b840c5fbb (IsA salver tray) (STV 1.0 0.9091)) +(: cnet_isa_d104ee8a88 (IsA salvinia fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_40e61c5ecd (IsA salviniaceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_d152262b3b (IsA salvinorin hallucinogen) (STV 1.0 0.9091)) +(: cnet_isa_5f5376847d (IsA salvo cheer) (STV 1.0 0.9091)) +(: cnet_isa_f576e99867 (IsA salvo outburst) (STV 1.0 0.9091)) +(: cnet_isa_74a8ebfa34 (IsA salwar pair_of_trouser) (STV 1.0 0.9091)) +(: cnet_isa_bed48f680f (IsA sam_browne_belt belt) (STV 1.0 0.9091)) +(: cnet_isa_63f26994ff (IsA samara achene) (STV 1.0 0.9091)) +(: cnet_isa_a91ae8e266 (IsA samaritan israelite) (STV 1.0 0.9091)) +(: cnet_isa_68022f74de (IsA samarium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_066dc210ed (IsA samarskite mineral) (STV 1.0 0.9091)) +(: cnet_isa_1ffa92c929 (IsA samba ballroom_dancing) (STV 1.0 0.9091)) +(: cnet_isa_cab3e96fbb (IsA samba canasta) (STV 1.0 0.9091)) +(: cnet_isa_754394fe36 (IsA samba dance_music) (STV 1.0 0.9091)) +(: cnet_isa_b6c7fc8776 (IsA sambar deer) (STV 1.0 0.9091)) +(: cnet_isa_2d6d69a7d6 (IsA sambuca liqueur) (STV 1.0 0.9091)) +(: cnet_isa_ba7f505a3b (IsA sambucus asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ac294acbea (IsA same_sex_marriage couple) (STV 1.0 0.9091)) +(: cnet_isa_fddedf1d8b (IsA samekh letter) (STV 1.0 0.9091)) +(: cnet_isa_5f9fb632ca (IsA sameness quality) (STV 1.0 0.9091)) +(: cnet_isa_e3b120b032 (IsA samia arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_ef935f211b (IsA samisen stringed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_2eef26b2f6 (IsA samite fabric) (STV 1.0 0.9091)) +(: cnet_isa_455cecd53a (IsA samizdat print_media) (STV 1.0 0.9091)) +(: cnet_isa_ff44e6224f (IsA samnite italian) (STV 1.0 0.9091)) +(: cnet_isa_0f6b1b8a8a (IsA samoan polynesian) (STV 1.0 0.9091)) +(: cnet_isa_8160720d0e (IsA samolus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a47dd92285 (IsA samosa turnover) (STV 1.0 0.9091)) +(: cnet_isa_d3f9b59ca1 (IsA samovar urn) (STV 1.0 0.9091)) +(: cnet_isa_dba5e0f725 (IsA samoyed spitz) (STV 1.0 0.9091)) +(: cnet_isa_6e509eea43 (IsA samoyed russian) (STV 1.0 0.9091)) +(: cnet_isa_837af7683f (IsA samoyedic uralic) (STV 1.0 0.9091)) +(: cnet_isa_c7f998c6ae (IsA sampan skiff) (STV 1.0 0.9091)) +(: cnet_isa_7d5407a0cf (IsA sample example) (STV 1.0 0.9091)) +(: cnet_isa_edabb14a37 (IsA sample natural_object) (STV 1.0 0.9091)) +(: cnet_isa_c83eeb9f73 (IsA sample_distribution distribution) (STV 1.0 0.9091)) +(: cnet_isa_143e6f85ec (IsA sampler embroidery) (STV 1.0 0.9091)) +(: cnet_isa_0fd7c32234 (IsA sampler assortment) (STV 1.0 0.9091)) +(: cnet_isa_a4f9967e70 (IsA sampling choice) (STV 1.0 0.9091)) +(: cnet_isa_5c89ec89ff (IsA sampling measurement) (STV 1.0 0.9091)) +(: cnet_isa_0fdf7594f7 (IsA sampling_frequency frequency) (STV 1.0 0.9091)) +(: cnet_isa_c90b107bb5 (IsA sampling_rate rate) (STV 1.0 0.9091)) +(: cnet_isa_840ef1c690 (IsA sampling_station observation_station) (STV 1.0 0.9091)) +(: cnet_isa_950133932d (IsA samsara cycle) (STV 1.0 0.9091)) +(: cnet_isa_9b585037f0 (IsA samurai nobility) (STV 1.0 0.9091)) +(: cnet_isa_c305919b84 (IsA samurai warrior) (STV 1.0 0.9091)) +(: cnet_isa_e5b650f94b (IsA san_carlo_apache apache) (STV 1.0 0.9091)) +(: cnet_isa_cadb0b6936 (IsA san_francisco city) (STV 1.0 0.9693)) +(: cnet_isa_fdcf9e2e04 (IsA san_francisco in_california) (STV 1.0 0.9572)) +(: cnet_isa_13b24cb63b (IsA san_francisco liberal_city) (STV 1.0 0.9091)) +(: cnet_isa_a4fa45a5b1 (IsA san_jose_scale armored_scale) (STV 1.0 0.9091)) +(: cnet_isa_4f54e452b0 (IsA san_marinese european) (STV 1.0 0.9091)) +(: cnet_isa_bd982e342b (IsA sanatorium hospital) (STV 1.0 0.9091)) +(: cnet_isa_18bde2725d (IsA sanctification religious_ceremony) (STV 1.0 0.9091)) +(: cnet_isa_d2294a610a (IsA sanctimoniousness hypocrisy) (STV 1.0 0.9091)) +(: cnet_isa_ff1310ca3d (IsA sanction authorization) (STV 1.0 0.9091)) +(: cnet_isa_f8779687e2 (IsA sanction social_control) (STV 1.0 0.9091)) +(: cnet_isa_7512c962be (IsA sanction approval) (STV 1.0 0.9091)) +(: cnet_isa_9f071e1909 (IsA sanctuary place) (STV 1.0 0.9091)) +(: cnet_isa_4d3da5a17c (IsA sanctum retreat) (STV 1.0 0.9091)) +(: cnet_isa_8d40a6801b (IsA sand also) (STV 1.0 0.9091)) +(: cnet_isa_a93c6cf091 (IsA sand soil) (STV 1.0 0.9091)) +(: cnet_isa_3d64464016 (IsA sand_blackberry blackberry) (STV 1.0 0.9091)) +(: cnet_isa_58f255e070 (IsA sand_cat wildcat) (STV 1.0 0.9091)) +(: cnet_isa_50b5231fa5 (IsA sand_cherry shrub) (STV 1.0 0.9091)) +(: cnet_isa_ab7af60efd (IsA sand_crack animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_de2381f016 (IsA sand_cricket long_horned_grasshopper) (STV 1.0 0.9091)) +(: cnet_isa_cc2efbf400 (IsA sand_dab lefteye_flounder) (STV 1.0 0.9091)) +(: cnet_isa_adc3e86fef (IsA sand_dab flounder) (STV 1.0 0.9091)) +(: cnet_isa_f242a84076 (IsA sand_devil_s_claw herb) (STV 1.0 0.9091)) +(: cnet_isa_081db1e752 (IsA sand_dollar sea_urchin) (STV 1.0 0.9091)) +(: cnet_isa_1106a98c6c (IsA sand_dropseed dropseed) (STV 1.0 0.9091)) +(: cnet_isa_890092f427 (IsA sand_dune very_large_pile_of_sand) (STV 1.0 0.9091)) +(: cnet_isa_cd139019d8 (IsA sand_fly gnat) (STV 1.0 0.9091)) +(: cnet_isa_ed3b8be40b (IsA sand_lance spiny_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_a5436069d6 (IsA sand_leek alliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_f515c70486 (IsA sand_lizard lacertid_lizard) (STV 1.0 0.9091)) +(: cnet_isa_5cd9679ce0 (IsA sand_myrtle shrub) (STV 1.0 0.9091)) +(: cnet_isa_eee70a17fd (IsA sand_painting painting) (STV 1.0 0.9091)) +(: cnet_isa_81a5e15f95 (IsA sand_rat gerbil) (STV 1.0 0.9091)) +(: cnet_isa_7b011b55bf (IsA sand_rat rodent) (STV 1.0 0.9091)) +(: cnet_isa_c8bb98e258 (IsA sand_sage sagebrush) (STV 1.0 0.9091)) +(: cnet_isa_da1df1a216 (IsA sand_sedge sedge) (STV 1.0 0.9091)) +(: cnet_isa_1719ca6ba1 (IsA sand_snake colubrid_snake) (STV 1.0 0.9091)) +(: cnet_isa_ddc4f390d8 (IsA sand_sole sole) (STV 1.0 0.9091)) +(: cnet_isa_ba3854dd72 (IsA sand_spurry weed) (STV 1.0 0.9091)) +(: cnet_isa_267536ac7b (IsA sand_stargazer percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_ba5aa75871 (IsA sand_tiger shark) (STV 1.0 0.9091)) +(: cnet_isa_f0e12a3b0c (IsA sand_verbena wildflower) (STV 1.0 0.9091)) +(: cnet_isa_7e469744dc (IsA sand_wedge wedge) (STV 1.0 0.9091)) +(: cnet_isa_fff33d9a25 (IsA sandal open_shoe_for_hot_weather) (STV 1.0 0.9339)) +(: cnet_isa_617f613732 (IsA sandal shoe) (STV 1.0 0.9091)) +(: cnet_isa_c8eb54ddfb (IsA sandalwood wood) (STV 1.0 0.9091)) +(: cnet_isa_4dfebf56d4 (IsA sandalwood_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_5a40c4c0c9 (IsA sandarac cypress) (STV 1.0 0.9091)) +(: cnet_isa_8ae1e4fd4c (IsA sandarac natural_resin) (STV 1.0 0.9091)) +(: cnet_isa_48e3415122 (IsA sandarac wood) (STV 1.0 0.9091)) +(: cnet_isa_44d9466bbe (IsA sandbag bag) (STV 1.0 0.9091)) +(: cnet_isa_d26a4e95e5 (IsA sandbagger deceiver) (STV 1.0 0.9091)) +(: cnet_isa_48cb8751e9 (IsA sandbank bank) (STV 1.0 0.9091)) +(: cnet_isa_fab9abc774 (IsA sandbar bar) (STV 1.0 0.9091)) +(: cnet_isa_272d9eaafd (IsA sandbar_shark requiem_shark) (STV 1.0 0.9091)) +(: cnet_isa_9e837c22b5 (IsA sandblast gust) (STV 1.0 0.9091)) +(: cnet_isa_8403a3622a (IsA sandblaster hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_2814a5ce83 (IsA sandbox mold) (STV 1.0 0.9091)) +(: cnet_isa_619e05041c (IsA sandbox plaything) (STV 1.0 0.9091)) +(: cnet_isa_dc54b6dc7d (IsA sandboy peddler) (STV 1.0 0.9091)) +(: cnet_isa_78ddccd781 (IsA sandbur grass) (STV 1.0 0.9091)) +(: cnet_isa_3bf492a631 (IsA sanderling sandpiper) (STV 1.0 0.9091)) +(: cnet_isa_f5242581d5 (IsA sandfish percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_9757ff975f (IsA sandfly_fever disease) (STV 1.0 0.9091)) +(: cnet_isa_ddad7559a1 (IsA sandglass timepiece) (STV 1.0 0.9091)) +(: cnet_isa_3ad7a63110 (IsA sandgrouse columbiform_bird) (STV 1.0 0.9091)) +(: cnet_isa_2487f7ae99 (IsA sandhi articulation) (STV 1.0 0.9091)) +(: cnet_isa_aa7df0eb44 (IsA sandiness coarseness) (STV 1.0 0.9091)) +(: cnet_isa_152aabf55b (IsA sandlot vacant_lot) (STV 1.0 0.9091)) +(: cnet_isa_a914defb06 (IsA sandman elf) (STV 1.0 0.9091)) +(: cnet_isa_e89c45f40b (IsA sandpiper shorebird) (STV 1.0 0.9091)) +(: cnet_isa_43ed39835c (IsA sandpit pit) (STV 1.0 0.9091)) +(: cnet_isa_5c3652c3d4 (IsA sandstone arenaceous_rock) (STV 1.0 0.9091)) +(: cnet_isa_d66ba08d32 (IsA sandwich meal_commonly) (STV 1.0 0.9091)) +(: cnet_isa_2a204be6bf (IsA sandwich snack_food) (STV 1.0 0.9091)) +(: cnet_isa_0fda487cb7 (IsA sandwich_board signboard) (STV 1.0 0.9091)) +(: cnet_isa_bc73eb688e (IsA sandwich_plate dish) (STV 1.0 0.9091)) +(: cnet_isa_c8006e1b6e (IsA sandwichman employee) (STV 1.0 0.9091)) +(: cnet_isa_b840365262 (IsA sandwort flower) (STV 1.0 0.9091)) +(: cnet_isa_c711839e01 (IsA sandy_mushroom agaric) (STV 1.0 0.9091)) +(: cnet_isa_534f7d8c3e (IsA sangapenum gum) (STV 1.0 0.9091)) +(: cnet_isa_8a53c547b8 (IsA sangaree drink) (STV 1.0 0.9091)) +(: cnet_isa_0c95844b5a (IsA sango niger_congo) (STV 1.0 0.9091)) +(: cnet_isa_14ff04bde0 (IsA sangoma therapist) (STV 1.0 0.9091)) +(: cnet_isa_0b8cf3d457 (IsA sanguinaria dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e2c39fd19d (IsA sanguinary_ant slave_making_ant) (STV 1.0 0.9091)) +(: cnet_isa_ceacb25e42 (IsA sanguine red) (STV 1.0 0.9091)) +(: cnet_isa_1bb2f2250e (IsA sanguinity optimism) (STV 1.0 0.9091)) +(: cnet_isa_f168c67016 (IsA sanhedrin council) (STV 1.0 0.9091)) +(: cnet_isa_2e6397b29a (IsA sanicle herb) (STV 1.0 0.9091)) +(: cnet_isa_3d1a7b5ad3 (IsA sanicula rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_81a80c48a3 (IsA sanitariness sanitary_condition) (STV 1.0 0.9091)) +(: cnet_isa_d44c6a0994 (IsA sanitary_code code) (STV 1.0 0.9091)) +(: cnet_isa_8904799542 (IsA sanitary_condition condition) (STV 1.0 0.9091)) +(: cnet_isa_afd2f1fb4f (IsA sanitary_landfill landfill) (STV 1.0 0.9091)) +(: cnet_isa_f2d23341a0 (IsA sanitary_napkin pad) (STV 1.0 0.9091)) +(: cnet_isa_012a8b5e9f (IsA sanitation cleaning) (STV 1.0 0.9091)) +(: cnet_isa_5a202afd38 (IsA sanitation sanitariness) (STV 1.0 0.9091)) +(: cnet_isa_52a77dcf4e (IsA sanitation_department local_department) (STV 1.0 0.9091)) +(: cnet_isa_70794c10ed (IsA sanity mental_health) (STV 1.0 0.9091)) +(: cnet_isa_686707d7a4 (IsA sannup native_american) (STV 1.0 0.9091)) +(: cnet_isa_241ed8d771 (IsA sannyasi beggar) (STV 1.0 0.9091)) +(: cnet_isa_eddabd947b (IsA sannyasi hindoo) (STV 1.0 0.9091)) +(: cnet_isa_79c52428b6 (IsA san_serif font) (STV 1.0 0.9091)) +(: cnet_isa_039e5a0309 (IsA sansevieria agave) (STV 1.0 0.9091)) +(: cnet_isa_7412d5dffd (IsA sanskrit indic) (STV 1.0 0.9091)) +(: cnet_isa_a73d8f3dad (IsA sanskrit_literature literature) (STV 1.0 0.9091)) +(: cnet_isa_7b1f1b2ca1 (IsA santa_ana wind) (STV 1.0 0.9091)) +(: cnet_isa_53dab2873c (IsA santa_cruz_cypress cypress) (STV 1.0 0.9091)) +(: cnet_isa_0dde6db35d (IsA santa_gertrudis beef) (STV 1.0 0.9091)) +(: cnet_isa_81745200cb (IsA santa_lucia_fir fir) (STV 1.0 0.9091)) +(: cnet_isa_708cc3cd4f (IsA santalaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_fabd1ea0f7 (IsA santalale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_eec5e3d629 (IsA santalum dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_74bdaeea25 (IsA santee siouan) (STV 1.0 0.9091)) +(: cnet_isa_502f496fd7 (IsA santim latvian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_b4f23665ac (IsA santolina asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ece7a7ca5b (IsA sanvitalia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7e9c53f33f (IsA sao_thome_e_principe_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_7a8b06dd7b (IsA sap solution) (STV 1.0 0.9091)) +(: cnet_isa_91f657d77f (IsA saphenous_nerve nerve) (STV 1.0 0.9091)) +(: cnet_isa_880d71f17f (IsA saphenous_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_d65700a09a (IsA saphire stone) (STV 1.0 0.9091)) +(: cnet_isa_60635f7b2e (IsA sapidity flavorsomeness) (STV 1.0 0.9091)) +(: cnet_isa_2966b0ba64 (IsA sapiential_book sacred_text) (STV 1.0 0.9091)) +(: cnet_isa_83ee4c5914 (IsA sapindaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_20d4120833 (IsA sapindale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_e70294013d (IsA sapindus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_867d6bfcd0 (IsA sapling tree) (STV 1.0 0.9091)) +(: cnet_isa_eeaa54fdad (IsA sapodilla edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_2c445d74a2 (IsA sapodilla fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_e51fac49e7 (IsA saponaria caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7dc9917d40 (IsA saponification chemical_reaction) (STV 1.0 0.9091)) +(: cnet_isa_4447a7211c (IsA saponin glucoside) (STV 1.0 0.9091)) +(: cnet_isa_fad4785a1f (IsA sapotaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_db96e54557 (IsA sapote edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_b16dccb8be (IsA sapper army_engineer) (STV 1.0 0.9091)) +(: cnet_isa_6cdc2b2488 (IsA sapphire jewel) (STV 1.0 0.9091)) +(: cnet_isa_16a3b3ddf3 (IsA sapphire corundom) (STV 1.0 0.9091)) +(: cnet_isa_b52523e3c9 (IsA sapphire transparent_gem) (STV 1.0 0.9091)) +(: cnet_isa_bd9019a331 (IsA sapphirine mineral) (STV 1.0 0.9091)) +(: cnet_isa_c4ef500cf5 (IsA sapremia sepsis) (STV 1.0 0.9091)) +(: cnet_isa_27042153ff (IsA saprobe organism) (STV 1.0 0.9091)) +(: cnet_isa_ae3a3356a6 (IsA saprolegnia fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_db268baade (IsA saprolegniale fungus_order) (STV 1.0 0.9091)) +(: cnet_isa_7d152ee82c (IsA saprolite earth) (STV 1.0 0.9091)) +(: cnet_isa_eb73957cbb (IsA sapropel sludge) (STV 1.0 0.9091)) +(: cnet_isa_61cbfe53e6 (IsA saprophyte organism) (STV 1.0 0.9091)) +(: cnet_isa_a8aeb6631e (IsA sapsago swiss_cheese) (STV 1.0 0.9091)) +(: cnet_isa_a126b87a01 (IsA sapsucker woodpecker) (STV 1.0 0.9091)) +(: cnet_isa_18aef1e2bb (IsA sapwood wood) (STV 1.0 0.9091)) +(: cnet_isa_d3ed2ec18a (IsA saraband dancing) (STV 1.0 0.9091)) +(: cnet_isa_09b4266be1 (IsA saraband dance_music) (STV 1.0 0.9091)) +(: cnet_isa_7f8d028608 (IsA saracen moslem) (STV 1.0 0.9091)) +(: cnet_isa_5931dafc74 (IsA saracen nomad) (STV 1.0 0.9091)) +(: cnet_isa_f2d6be0d63 (IsA saracen arabian) (STV 1.0 0.9091)) +(: cnet_isa_c073304f8d (IsA sarah female_name) (STV 1.0 0.9091)) +(: cnet_isa_23ed53f59f (IsA saratoga_spittlebug spittle_insect) (STV 1.0 0.9091)) +(: cnet_isa_eac21b972e (IsA sarawakian malaysian) (STV 1.0 0.9091)) +(: cnet_isa_c1eea13de3 (IsA sarcasm jealousy_in_bold_disguise) (STV 1.0 0.9091)) +(: cnet_isa_91623d736f (IsA sarcasm wit) (STV 1.0 0.9091)) +(: cnet_isa_317049cc67 (IsA sarcenet silk) (STV 1.0 0.9091)) +(: cnet_isa_fb31c1621b (IsA sarcobatus caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8048823283 (IsA sarcocephalus asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c8e5f29ac9 (IsA sarcochilus monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_391378e75e (IsA sarcocystis protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_1f457080ce (IsA sarcode dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_26ce3aea22 (IsA sarcodina class) (STV 1.0 0.9091)) +(: cnet_isa_36d7bd0e40 (IsA sarcodinian protozoan) (STV 1.0 0.9091)) +(: cnet_isa_92ef31d82f (IsA sarcoidosis pathology) (STV 1.0 0.9091)) +(: cnet_isa_259a790cdb (IsA sarcolemma membrane) (STV 1.0 0.9091)) +(: cnet_isa_8bd2353735 (IsA sarcoma cancer) (STV 1.0 0.9091)) +(: cnet_isa_65b027c959 (IsA sarcomere segment) (STV 1.0 0.9091)) +(: cnet_isa_9f3adfeec0 (IsA sarcophaga arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_6ab9e7b26a (IsA sarcophagus coffin) (STV 1.0 0.9091)) +(: cnet_isa_daa4501025 (IsA sarcophilus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_4090f150c5 (IsA sarcoplasm cytoplasm) (STV 1.0 0.9091)) +(: cnet_isa_facfba0a73 (IsA sarcopte arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_ce0faec3e1 (IsA sarcoptidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_a6f5977cb3 (IsA sarcorhamphus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_3f70e06a2d (IsA sarcoscypha_coccinea discomycete) (STV 1.0 0.9091)) +(: cnet_isa_0f608551e1 (IsA sarcoscyphaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_55e5e91aac (IsA sarcosine amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_a3a01f7251 (IsA sarcosomataceae ascomycete) (STV 1.0 0.9091)) +(: cnet_isa_7e4d2fc00d (IsA sarcosome mitochondrion) (STV 1.0 0.9091)) +(: cnet_isa_faf6ea843a (IsA sarcosporidia animal_order) (STV 1.0 0.9091)) +(: cnet_isa_70d7e76611 (IsA sarcosporidian sporozoan) (STV 1.0 0.9091)) +(: cnet_isa_82782cac6e (IsA sarcostemma dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a72207725f (IsA sard chalcedony) (STV 1.0 0.9091)) +(: cnet_isa_c100c6e455 (IsA sarda fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_4eaa39b6b5 (IsA sardina fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_7b33a4fbe0 (IsA sardine clupeid_fish) (STV 1.0 0.9091)) +(: cnet_isa_9d60fd6593 (IsA sardine food_fish) (STV 1.0 0.9091)) +(: cnet_isa_21584bc418 (IsA sardine saltwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_72b6a1eae8 (IsA sardine_oil animal_oil) (STV 1.0 0.9091)) +(: cnet_isa_35432d675b (IsA sardinian italian) (STV 1.0 0.9091)) +(: cnet_isa_4203ddbc7c (IsA sardinop fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_49fe2879df (IsA sardonyx onyx) (STV 1.0 0.9091)) +(: cnet_isa_385a8fc808 (IsA sargassum_fish spiny_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_cfb0743af5 (IsA sari dress) (STV 1.0 0.9091)) +(: cnet_isa_9e51101b14 (IsA sarin organophosphate_nerve_agent) (STV 1.0 0.9091)) +(: cnet_isa_778264e369 (IsA sarong skirt) (STV 1.0 0.9091)) +(: cnet_isa_44e3729788 (IsA sarracenia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_de3d00ded1 (IsA sarraceniaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_f894c386b3 (IsA sarraceniale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_21075c3722 (IsA sarsaparilla soft_drink) (STV 1.0 0.9091)) +(: cnet_isa_4518a9950b (IsA sarsaparilla vine) (STV 1.0 0.9091)) +(: cnet_isa_70aa8a7c53 (IsA sarsaparilla_root root) (STV 1.0 0.9091)) +(: cnet_isa_c573ef26b9 (IsA sartorius skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_a09de790ee (IsA sash framework) (STV 1.0 0.9091)) +(: cnet_isa_c8aa704b77 (IsA sash_cord cord) (STV 1.0 0.9091)) +(: cnet_isa_b55d84eee1 (IsA sash_fastener lock) (STV 1.0 0.9091)) +(: cnet_isa_365a437c0c (IsA sash_weight counterweight) (STV 1.0 0.9091)) +(: cnet_isa_53e387bc1d (IsA sash_window window) (STV 1.0 0.9091)) +(: cnet_isa_656871fcb1 (IsA sashay country_dance) (STV 1.0 0.9091)) +(: cnet_isa_cc34ff5c7a (IsA sashimi dish) (STV 1.0 0.9091)) +(: cnet_isa_b454489e22 (IsA saskatoon in_canada) (STV 1.0 0.9091)) +(: cnet_isa_75b94af783 (IsA saskatoon berry) (STV 1.0 0.9091)) +(: cnet_isa_a2acd0a9c3 (IsA sass rejoinder) (STV 1.0 0.9091)) +(: cnet_isa_55a1b05a19 (IsA sassaby antelope) (STV 1.0 0.9091)) +(: cnet_isa_55743d6781 (IsA sassafra flavorer) (STV 1.0 0.9091)) +(: cnet_isa_cd86b4e1f4 (IsA sassafra laurel) (STV 1.0 0.9091)) +(: cnet_isa_d0936dfe5e (IsA sassafra_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_0adcd56004 (IsA sassenach english_person) (STV 1.0 0.9091)) +(: cnet_isa_7c91e56c77 (IsA satan fallen_angel) (STV 1.0 0.9339)) +(: cnet_isa_79da4e80d1 (IsA satang thai_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_2759372322 (IsA satanophobia social_phobia) (STV 1.0 0.9091)) +(: cnet_isa_1b9ee40c92 (IsA satchel bag) (STV 1.0 0.9572)) +(: cnet_isa_1cfe992220 (IsA satchel baggage) (STV 1.0 0.9091)) +(: cnet_isa_e0a10d5091 (IsA sateen fabric) (STV 1.0 0.9091)) +(: cnet_isa_e1c3eecac7 (IsA satellite equipment) (STV 1.0 0.9091)) +(: cnet_isa_03d98d52ff (IsA satellite celestial_body) (STV 1.0 0.9091)) +(: cnet_isa_ce6176284c (IsA satellite follower) (STV 1.0 0.9091)) +(: cnet_isa_d1dcf361a6 (IsA satellite_receiver receiver) (STV 1.0 0.9091)) +(: cnet_isa_c94f4ff6eb (IsA satellite_television television) (STV 1.0 0.9091)) +(: cnet_isa_1ee0597949 (IsA satellite_transmitter transmitter) (STV 1.0 0.9091)) +(: cnet_isa_c163752e30 (IsA satiation gratification) (STV 1.0 0.9091)) +(: cnet_isa_0536065300 (IsA satin fabric) (STV 1.0 0.9091)) +(: cnet_isa_c4b2d505d8 (IsA satin_bowerbird bowerbird) (STV 1.0 0.9091)) +(: cnet_isa_df2d6d0ff8 (IsA satin_stitch embroidery_stitch) (STV 1.0 0.9091)) +(: cnet_isa_259ea34586 (IsA satin_weave weave) (STV 1.0 0.9091)) +(: cnet_isa_a3381188ef (IsA satinette fabric) (STV 1.0 0.9091)) +(: cnet_isa_b6f7e21d6c (IsA satinleaf angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_8b62e746bb (IsA satinwood angiospermous_yellowwood) (STV 1.0 0.9091)) +(: cnet_isa_997d49a87f (IsA satinwood tree) (STV 1.0 0.9091)) +(: cnet_isa_506c009d5d (IsA satinwood wood) (STV 1.0 0.9091)) +(: cnet_isa_896fe11f12 (IsA satirist humorist) (STV 1.0 0.9091)) +(: cnet_isa_68d6ece7a3 (IsA satisfaction change) (STV 1.0 0.9091)) +(: cnet_isa_cd378d084d (IsA satisfaction contentment) (STV 1.0 0.9091)) +(: cnet_isa_6f2d8e088f (IsA satisfaction payment) (STV 1.0 0.9091)) +(: cnet_isa_645323a27b (IsA satisfactoriness quality) (STV 1.0 0.9091)) +(: cnet_isa_986ce933bf (IsA satisfier agent) (STV 1.0 0.9091)) +(: cnet_isa_0578dd7dca (IsA satori enlightenment) (STV 1.0 0.9091)) +(: cnet_isa_44130e04c7 (IsA satrap governor) (STV 1.0 0.9091)) +(: cnet_isa_3254ed915b (IsA satsuma mandarin) (STV 1.0 0.9091)) +(: cnet_isa_f94d2f70ec (IsA saturated_fatty_acid fatty_acid) (STV 1.0 0.9091)) +(: cnet_isa_9479bc7906 (IsA saturation filling) (STV 1.0 0.9091)) +(: cnet_isa_18acdc139a (IsA saturation color_property) (STV 1.0 0.9091)) +(: cnet_isa_53f5b2d10a (IsA saturation condition) (STV 1.0 0.9091)) +(: cnet_isa_23b90777f1 (IsA saturation_point saturation) (STV 1.0 0.9091)) +(: cnet_isa_46cf8977bc (IsA saturday weekday) (STV 1.0 0.9091)) +(: cnet_isa_4f2a10f5f9 (IsA saturday_night_special pistol) (STV 1.0 0.9091)) +(: cnet_isa_b59ccab919 (IsA satureja asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c66f64f71e (IsA saturn planet) (STV 1.0 0.9677)) +(: cnet_isa_215339fded (IsA saturnalia festival) (STV 1.0 0.9091)) +(: cnet_isa_25fc080b95 (IsA saturnia arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_6d70494b1e (IsA saturniid moth) (STV 1.0 0.9091)) +(: cnet_isa_abda290f4c (IsA saturniidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_34c7601380 (IsA satyagraha passive_resistance) (STV 1.0 0.9091)) +(: cnet_isa_4353c9dc54 (IsA satyr greek_deity) (STV 1.0 0.9091)) +(: cnet_isa_722acd45db (IsA satyr pervert) (STV 1.0 0.9091)) +(: cnet_isa_30effc1a2e (IsA satyr_orchid orchid) (STV 1.0 0.9091)) +(: cnet_isa_a891a5b803 (IsA satyr_play play) (STV 1.0 0.9091)) +(: cnet_isa_9fa8c04114 (IsA satyriasis sexual_desire) (STV 1.0 0.9091)) +(: cnet_isa_1b6b1d03c3 (IsA satyridae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_3210b24a46 (IsA sauce condiment) (STV 1.0 0.9091)) +(: cnet_isa_2630347593 (IsA sauce_espagnole sauce) (STV 1.0 0.9091)) +(: cnet_isa_0301726a57 (IsA sauce_louis dressing) (STV 1.0 0.9091)) +(: cnet_isa_6c5e440989 (IsA saucepan pan) (STV 1.0 0.9091)) +(: cnet_isa_b486073f20 (IsA saucepot pot) (STV 1.0 0.9091)) +(: cnet_isa_52fd48776e (IsA saucer flatware) (STV 1.0 0.9091)) +(: cnet_isa_f1d757b23e (IsA saucer_magnolia magnolia) (STV 1.0 0.9091)) +(: cnet_isa_9e27188ab8 (IsA sauda in_norway) (STV 1.0 0.9091)) +(: cnet_isa_e67562f647 (IsA saudi_arabian arabian) (STV 1.0 0.9091)) +(: cnet_isa_213d0feb7a (IsA saudi_arabian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_640359d1c2 (IsA saudi_arabian_riyal saudi_arabian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_a5c6dc66a3 (IsA sauerbraten dish) (STV 1.0 0.9091)) +(: cnet_isa_e7a43b255e (IsA sauerkraut dish) (STV 1.0 0.9091)) +(: cnet_isa_25dac2ac7a (IsA sauna steam_bath) (STV 1.0 0.9091)) +(: cnet_isa_166ea29d6e (IsA saunter gait) (STV 1.0 0.9091)) +(: cnet_isa_fd0223cf2a (IsA saunterer pedestrian) (STV 1.0 0.9091)) +(: cnet_isa_7dbb7d398d (IsA sauria animal_order) (STV 1.0 0.9091)) +(: cnet_isa_2c6a6248f1 (IsA saurian diapsid) (STV 1.0 0.9091)) +(: cnet_isa_91e55d5230 (IsA saurischia animal_order) (STV 1.0 0.9091)) +(: cnet_isa_2236e631b5 (IsA saurischian dinosaur) (STV 1.0 0.9091)) +(: cnet_isa_58ae190128 (IsA sauromalus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_1f6f29a9a6 (IsA sauropod saurischian) (STV 1.0 0.9091)) +(: cnet_isa_cbd3afec3b (IsA sauropoda animal_order) (STV 1.0 0.9091)) +(: cnet_isa_42bd49bbe1 (IsA sauropodomorpha animal_order) (STV 1.0 0.9091)) +(: cnet_isa_36ae15bd30 (IsA sauropterygia animal_order) (STV 1.0 0.9091)) +(: cnet_isa_4c949c13a9 (IsA saurosuchus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_27dfb3b5c0 (IsA saururaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_f2d1e17f30 (IsA saururus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9bb5492add (IsA saury teleost_fish) (STV 1.0 0.9091)) +(: cnet_isa_1e7ac77385 (IsA sausage meat) (STV 1.0 0.9091)) +(: cnet_isa_957d9aae27 (IsA sausage_curl lock) (STV 1.0 0.9091)) +(: cnet_isa_8f62e226f0 (IsA sausage_dog dachshund) (STV 1.0 0.9091)) +(: cnet_isa_1cc2a6edad (IsA sausage_meat meat) (STV 1.0 0.9091)) +(: cnet_isa_aeb0cb67b3 (IsA sausage_pizza pizza) (STV 1.0 0.9091)) +(: cnet_isa_7e93c85b7a (IsA sausage_roll pastry) (STV 1.0 0.9091)) +(: cnet_isa_28b5c331a1 (IsA saussurea asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_11a80bc2cf (IsA saute dish) (STV 1.0 0.9091)) +(: cnet_isa_330a3cdd75 (IsA sauterne white_wine) (STV 1.0 0.9091)) +(: cnet_isa_fc255fe2b5 (IsA sauvignon_blanc white_wine) (STV 1.0 0.9091)) +(: cnet_isa_4a54913960 (IsA sauvignon_blanc vinifera) (STV 1.0 0.9091)) +(: cnet_isa_d36decdcc7 (IsA sauvignon_grape vinifera) (STV 1.0 0.9091)) +(: cnet_isa_206e21d64f (IsA savage primitive) (STV 1.0 0.9091)) +(: cnet_isa_16b0df915c (IsA savageness ferocity) (STV 1.0 0.9091)) +(: cnet_isa_c7549928a3 (IsA savanna grassland) (STV 1.0 0.9091)) +(: cnet_isa_011a6b3f62 (IsA savara south_central_dravidian) (STV 1.0 0.9091)) +(: cnet_isa_c48a715579 (IsA savara dravidian) (STV 1.0 0.9091)) +(: cnet_isa_201704b445 (IsA savarin cake) (STV 1.0 0.9091)) +(: cnet_isa_f0e9f32b2f (IsA save prevention) (STV 1.0 0.9091)) +(: cnet_isa_416fc4e770 (IsA save_all net) (STV 1.0 0.9091)) +(: cnet_isa_7c3a1731cf (IsA save_all receptacle) (STV 1.0 0.9091)) +(: cnet_isa_a1bb378679 (IsA save_all sail) (STV 1.0 0.9091)) +(: cnet_isa_0312c3af3c (IsA saveloy pork_sausage) (STV 1.0 0.9091)) +(: cnet_isa_0d78d92171 (IsA saver owner) (STV 1.0 0.9091)) +(: cnet_isa_a3c71d0570 (IsA saving_grace characteristic) (STV 1.0 0.9091)) +(: cnet_isa_c121810ae8 (IsA saving_money good_idea) (STV 1.0 0.9091)) +(: cnet_isa_bbdc957c92 (IsA saving fund) (STV 1.0 0.9091)) +(: cnet_isa_54c33953d5 (IsA saving_account bank_account) (STV 1.0 0.9091)) +(: cnet_isa_b335b3f6a4 (IsA saving_account_trust trust) (STV 1.0 0.9091)) +(: cnet_isa_bc9db5fb17 (IsA saving_and_loan thrift_institution) (STV 1.0 0.9091)) +(: cnet_isa_14ec6effb1 (IsA saving_bank container) (STV 1.0 0.9091)) +(: cnet_isa_27b776f0ba (IsA saving_bank thrift_institution) (STV 1.0 0.9091)) +(: cnet_isa_1689e7ed07 (IsA saving_bond government_bond) (STV 1.0 0.9091)) +(: cnet_isa_1d83acce96 (IsA savior benefactor) (STV 1.0 0.9091)) +(: cnet_isa_e426420163 (IsA savoir_faire tact) (STV 1.0 0.9091)) +(: cnet_isa_a15cf98fc8 (IsA savory dainty) (STV 1.0 0.9091)) +(: cnet_isa_45e09c0e53 (IsA savory herb) (STV 1.0 0.9091)) +(: cnet_isa_6cc9ecb602 (IsA savoy_cabbage head_cabbage) (STV 1.0 0.9091)) +(: cnet_isa_75e048ed1b (IsA savoyard french_person) (STV 1.0 0.9091)) +(: cnet_isa_84f3c0c3d0 (IsA savoyard performer) (STV 1.0 0.9091)) +(: cnet_isa_ab7e01f2b8 (IsA saw tool) (STV 1.0 0.9815)) +(: cnet_isa_28e0f0c994 (IsA saw hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_4c370fb932 (IsA saw_log log) (STV 1.0 0.9091)) +(: cnet_isa_468e8777d5 (IsA saw_palmetto fan_palm) (STV 1.0 0.9091)) +(: cnet_isa_03af200618 (IsA saw_set tool) (STV 1.0 0.9091)) +(: cnet_isa_5c92f04918 (IsA sawan hindu_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_f477d01612 (IsA sawdust wood) (STV 1.0 0.9091)) +(: cnet_isa_1831476f53 (IsA sawdust_doll doll) (STV 1.0 0.9091)) +(: cnet_isa_43d77ef366 (IsA sawdust_saloon barroom) (STV 1.0 0.9091)) +(: cnet_isa_d770f0f1e8 (IsA sawed_off_shotgun shotgun) (STV 1.0 0.9091)) +(: cnet_isa_a9324317b0 (IsA sawfish ray) (STV 1.0 0.9091)) +(: cnet_isa_5d49c8aed9 (IsA sawfly hymenopterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_5b52d6a7b7 (IsA sawhorse framework) (STV 1.0 0.9091)) +(: cnet_isa_2db55eb297 (IsA sawm abstinence) (STV 1.0 0.9091)) +(: cnet_isa_da9bde0b33 (IsA sawm pillar_of_islam) (STV 1.0 0.9091)) +(: cnet_isa_def39ac8bc (IsA sawmill power_saw) (STV 1.0 0.9091)) +(: cnet_isa_c222b5cd67 (IsA sawpit pit) (STV 1.0 0.9091)) +(: cnet_isa_93d32594fc (IsA sawtooth serration) (STV 1.0 0.9091)) +(: cnet_isa_90fb203614 (IsA sawwort herb) (STV 1.0 0.9091)) +(: cnet_isa_7589d90b1a (IsA sawyer long_horned_beetle) (STV 1.0 0.9091)) +(: cnet_isa_b9f153b362 (IsA sawyer laborer) (STV 1.0 0.9091)) +(: cnet_isa_86b57c0dfa (IsA sax single_reed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_851f6d2901 (IsA saxaphone musical_instrument) (STV 1.0 0.9659)) +(: cnet_isa_59d780ae8a (IsA saxe_coburg_gotha dynasty) (STV 1.0 0.9091)) +(: cnet_isa_11af236c5c (IsA saxe_coburg_gotha royalty) (STV 1.0 0.9091)) +(: cnet_isa_2800e189b1 (IsA saxe_gothea gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_dffd4b67cf (IsA saxhorn brass) (STV 1.0 0.9091)) +(: cnet_isa_d4b2bd3f67 (IsA saxicola bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_b0621c051f (IsA saxifraga rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8d5b9eb72d (IsA saxifragaceae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_680138f58e (IsA saxifrage herb) (STV 1.0 0.9091)) +(: cnet_isa_cce13c4a23 (IsA saxitoxin neurotoxin) (STV 1.0 0.9091)) +(: cnet_isa_09aaed49fc (IsA saxon european) (STV 1.0 0.9091)) +(: cnet_isa_42341b015c (IsA saxophone musical_instrument) (STV 1.0 0.9707)) +(: cnet_isa_48f409972c (IsA saxophonist musician) (STV 1.0 0.9091)) +(: cnet_isa_ab078e6d94 (IsA say opportunity) (STV 1.0 0.9091)) +(: cnet_isa_516f4e4380 (IsA say_so affirmation) (STV 1.0 0.9091)) +(: cnet_isa_9851b20ab5 (IsA sayeret_matkal commando) (STV 1.0 0.9091)) +(: cnet_isa_1bb0a9af07 (IsA saying speech) (STV 1.0 0.9091)) +(: cnet_isa_78c97dd368 (IsA sayornis bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_2dafd20cbc (IsA sazerac cocktail) (STV 1.0 0.9091)) +(: cnet_isa_b4ece56b54 (IsA scab solid_body_substance) (STV 1.0 0.9091)) +(: cnet_isa_5d210a8da6 (IsA scab worker) (STV 1.0 0.9091)) +(: cnet_isa_680daf5851 (IsA scabbard sheath) (STV 1.0 0.9091)) +(: cnet_isa_d1c87afb72 (IsA scabicide pesticide) (STV 1.0 0.9091)) +(: cnet_isa_378cf57aa6 (IsA scaby infection) (STV 1.0 0.9091)) +(: cnet_isa_8ea73adfde (IsA scabious flower) (STV 1.0 0.9091)) +(: cnet_isa_654a543ca6 (IsA scabland land) (STV 1.0 0.9091)) +(: cnet_isa_c23dee13d3 (IsA scad carangid_fish) (STV 1.0 0.9091)) +(: cnet_isa_142f054f5d (IsA scaffold arrangement) (STV 1.0 0.9091)) +(: cnet_isa_6359150219 (IsA scaffold platform) (STV 1.0 0.9091)) +(: cnet_isa_8b070c759c (IsA scaffolding system) (STV 1.0 0.9091)) +(: cnet_isa_5d10403084 (IsA scalability quantifiability) (STV 1.0 0.9091)) +(: cnet_isa_b1009fc736 (IsA scalage estimate) (STV 1.0 0.9091)) +(: cnet_isa_fe13d9187b (IsA scalage scaling) (STV 1.0 0.9091)) +(: cnet_isa_bc8b31cc8f (IsA scalar variable) (STV 1.0 0.9091)) +(: cnet_isa_b83539a955 (IsA scalar_field field) (STV 1.0 0.9091)) +(: cnet_isa_735aa1382a (IsA scalar_matrix diagonal_matrix) (STV 1.0 0.9091)) +(: cnet_isa_cccd9b1814 (IsA scalar_product real_number) (STV 1.0 0.9091)) +(: cnet_isa_9ee730b6bb (IsA scalawag bad_person) (STV 1.0 0.9091)) +(: cnet_isa_c797136b1c (IsA scald burn) (STV 1.0 0.9091)) +(: cnet_isa_08c928182d (IsA scalded_milk milk) (STV 1.0 0.9091)) +(: cnet_isa_397bb6b2cf (IsA scale covering) (STV 1.0 0.9091)) +(: cnet_isa_d19ebefd43 (IsA scale indicator) (STV 1.0 0.9091)) +(: cnet_isa_74b3eaf6c4 (IsA scale measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_2f1d554b9d (IsA scale magnitude_relation) (STV 1.0 0.9091)) +(: cnet_isa_93f98c4447 (IsA scale proportion) (STV 1.0 0.9091)) +(: cnet_isa_bc410bf6b8 (IsA scale standard) (STV 1.0 0.9091)) +(: cnet_isa_65c343d63e (IsA scale musical_notation) (STV 1.0 0.9091)) +(: cnet_isa_9edac5cae3 (IsA scale bit) (STV 1.0 0.9091)) +(: cnet_isa_72ea229477 (IsA scale leaf) (STV 1.0 0.9091)) +(: cnet_isa_91ba3d7b18 (IsA scale_factor multiplier) (STV 1.0 0.9091)) +(: cnet_isa_fca206c4a5 (IsA scale_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_5925637ce9 (IsA scale_insect coccid_insect) (STV 1.0 0.9091)) +(: cnet_isa_a1bbb81e5a (IsA scale_of_c_major major_scale) (STV 1.0 0.9091)) +(: cnet_isa_e97fcea83f (IsA scale_value value) (STV 1.0 0.9091)) +(: cnet_isa_360a3a10ad (IsA scale_wax wax) (STV 1.0 0.9091)) +(: cnet_isa_3de715cab3 (IsA scalene_triangle triangle) (STV 1.0 0.9091)) +(: cnet_isa_85898a405a (IsA scalenus skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_b52127e508 (IsA scalenus_syndrome syndrome) (STV 1.0 0.9091)) +(: cnet_isa_43a4cc645a (IsA scaler pulse_counter) (STV 1.0 0.9091)) +(: cnet_isa_3850a2945d (IsA scaliness roughness) (STV 1.0 0.9091)) +(: cnet_isa_d540a6b4d5 (IsA scaling climb) (STV 1.0 0.9091)) +(: cnet_isa_5749aba4ec (IsA scaling measurement) (STV 1.0 0.9091)) +(: cnet_isa_217d12cfb3 (IsA scaling order) (STV 1.0 0.9091)) +(: cnet_isa_94947b3bba (IsA scaling_ladder ladder) (STV 1.0 0.9091)) +(: cnet_isa_dc4e1e4b29 (IsA scallop bivalve) (STV 1.0 0.9091)) +(: cnet_isa_1fee19ae18 (IsA scallop shellfish) (STV 1.0 0.9091)) +(: cnet_isa_4ba443dcbf (IsA scallop curve) (STV 1.0 0.9091)) +(: cnet_isa_cd0bf0127d (IsA scallop_shell shell) (STV 1.0 0.9091)) +(: cnet_isa_736782f835 (IsA scallopine dish) (STV 1.0 0.9091)) +(: cnet_isa_e2cd1be5fa (IsA scalp skin) (STV 1.0 0.9091)) +(: cnet_isa_a31b0867e9 (IsA scalp_lock hairdo) (STV 1.0 0.9091)) +(: cnet_isa_d1882f2f50 (IsA scalpel surgical_knife) (STV 1.0 0.9091)) +(: cnet_isa_06c96a152b (IsA scalper speculator) (STV 1.0 0.9091)) +(: cnet_isa_016bfa3efa (IsA scaly_lentinus fungus) (STV 1.0 0.9091)) +(: cnet_isa_d42d23559b (IsA scam swindle) (STV 1.0 0.9091)) +(: cnet_isa_776ce2f019 (IsA scammony convolvulus) (STV 1.0 0.9091)) +(: cnet_isa_33d7fe89f2 (IsA scammony morning_glory) (STV 1.0 0.9091)) +(: cnet_isa_76ab139064 (IsA scammony natural_resin) (STV 1.0 0.9091)) +(: cnet_isa_d3322b701b (IsA scamper haste) (STV 1.0 0.9091)) +(: cnet_isa_b5a2e317cd (IsA scampi dish) (STV 1.0 0.9091)) +(: cnet_isa_a3d9454813 (IsA scan examination) (STV 1.0 0.9091)) +(: cnet_isa_54756de6aa (IsA scan ikon) (STV 1.0 0.9091)) +(: cnet_isa_2b301f60b0 (IsA scan_ultrasonography sonography) (STV 1.0 0.9091)) +(: cnet_isa_36a328cc2e (IsA scandal gossip) (STV 1.0 0.9091)) +(: cnet_isa_1d84362bb5 (IsA scandal trouble) (STV 1.0 0.9091)) +(: cnet_isa_be8eede0a1 (IsA scandalization insult) (STV 1.0 0.9091)) +(: cnet_isa_3f35435c69 (IsA scandalization condition) (STV 1.0 0.9091)) +(: cnet_isa_7e387f5964 (IsA scandalmonger gossip) (STV 1.0 0.9091)) +(: cnet_isa_1c553657fb (IsA scandalmongering gossiping) (STV 1.0 0.9091)) +(: cnet_isa_c30e56f71a (IsA scandalousness shamefulness) (STV 1.0 0.9091)) +(: cnet_isa_4ea42a7955 (IsA scandentia animal_order) (STV 1.0 0.9091)) +(: cnet_isa_f3bbeb398c (IsA scandinavian germanic) (STV 1.0 0.9091)) +(: cnet_isa_f680a3d5bc (IsA scandinavian_country european_country) (STV 1.0 0.9091)) +(: cnet_isa_c87a53cf1d (IsA scandinavian_lox lox) (STV 1.0 0.9091)) +(: cnet_isa_7d1e724cd5 (IsA scandium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_8f6139aede (IsA scanner data_input_device) (STV 1.0 0.9091)) +(: cnet_isa_aa76661084 (IsA scanner detector) (STV 1.0 0.9091)) +(: cnet_isa_1cda45ab47 (IsA scanner dish) (STV 1.0 0.9091)) +(: cnet_isa_ee9eacc33a (IsA scanner electronic_device) (STV 1.0 0.9091)) +(: cnet_isa_4a3396b746 (IsA scanner reviewer) (STV 1.0 0.9091)) +(: cnet_isa_ce2733f98e (IsA scanning reproduction) (STV 1.0 0.9091)) +(: cnet_isa_897a1d0429 (IsA scanning photography) (STV 1.0 0.9091)) +(: cnet_isa_fb8c5442b9 (IsA scansion meter) (STV 1.0 0.9091)) +(: cnet_isa_d86af60cfe (IsA scantling upright) (STV 1.0 0.9091)) +(: cnet_isa_94117f650d (IsA scape stalk) (STV 1.0 0.9091)) +(: cnet_isa_5de9e391c0 (IsA scapegoat victim) (STV 1.0 0.9091)) +(: cnet_isa_aa13deac48 (IsA scapegrace reprobate) (STV 1.0 0.9091)) +(: cnet_isa_fa0d8db000 (IsA scaphiopus amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_a55c9b8869 (IsA scaphocephaly birth_defect) (STV 1.0 0.9091)) +(: cnet_isa_442daadc71 (IsA scaphocephaly deformity) (STV 1.0 0.9091)) +(: cnet_isa_c1e21a831c (IsA scaphoid_bone carpal_bone) (STV 1.0 0.9091)) +(: cnet_isa_0b298972f5 (IsA scaphopod mollusk) (STV 1.0 0.9091)) +(: cnet_isa_dcbc15a632 (IsA scaphopoda class) (STV 1.0 0.9091)) +(: cnet_isa_1dcacf980e (IsA scaphosepalum monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8b7093f4ef (IsA scapula bone) (STV 1.0 0.9091)) +(: cnet_isa_6f52be937b (IsA scapular feather) (STV 1.0 0.9091)) +(: cnet_isa_5f3ec22ee8 (IsA scapular garment) (STV 1.0 0.9091)) +(: cnet_isa_e1e67c5f30 (IsA scar symptom) (STV 1.0 0.9091)) +(: cnet_isa_f39c8786f3 (IsA scar_tissue connective_tissue) (STV 1.0 0.9091)) +(: cnet_isa_fa441e7c5e (IsA scarab dung_beetle) (STV 1.0 0.9091)) +(: cnet_isa_699811835d (IsA scarabaeid_beetle lamellicorn_beetle) (STV 1.0 0.9091)) +(: cnet_isa_67da3dace9 (IsA scarabaeidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_8872d613d7 (IsA scarcity insufficiency) (STV 1.0 0.9091)) +(: cnet_isa_fbe4e32386 (IsA scardinius fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_b0764070a7 (IsA scare fear) (STV 1.0 0.9091)) +(: cnet_isa_59ae27cfdb (IsA scare_quote quotation_mark) (STV 1.0 0.9091)) +(: cnet_isa_c159307893 (IsA scarecrow effigy) (STV 1.0 0.9091)) +(: cnet_isa_4177b8bb65 (IsA scaremonger alarmist) (STV 1.0 0.9091)) +(: cnet_isa_b906e68ef3 (IsA scarf garment) (STV 1.0 0.9091)) +(: cnet_isa_3d4686d33d (IsA scarf_joint joint) (STV 1.0 0.9091)) +(: cnet_isa_a9f80c918c (IsA scaridae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_00a6356922 (IsA scarlet red) (STV 1.0 0.9091)) +(: cnet_isa_070868fc22 (IsA scarlet_bugler wildflower) (STV 1.0 0.9091)) +(: cnet_isa_5f6e3e4a8b (IsA scarlet_bush hamelia) (STV 1.0 0.9091)) +(: cnet_isa_51f15c6645 (IsA scarlet_clematis clematis) (STV 1.0 0.9091)) +(: cnet_isa_5801d9659f (IsA scarlet_fever contagious_disease) (STV 1.0 0.9091)) +(: cnet_isa_2bf110c4c5 (IsA scarlet_fritillary fritillary) (STV 1.0 0.9091)) +(: cnet_isa_7f84d32b41 (IsA scarlet_haw hawthorn) (STV 1.0 0.9091)) +(: cnet_isa_8d2966f420 (IsA scarlet_letter emblem) (STV 1.0 0.9091)) +(: cnet_isa_dbfd5e536c (IsA scarlet_lychnis lychnis) (STV 1.0 0.9091)) +(: cnet_isa_beb3950bc1 (IsA scarlet_musk_flower flower) (STV 1.0 0.9091)) +(: cnet_isa_aeec0fef3a (IsA scarlet_oak oak) (STV 1.0 0.9091)) +(: cnet_isa_306f973761 (IsA scarlet_pimpernel pimpernel) (STV 1.0 0.9091)) +(: cnet_isa_08ce99dedc (IsA scarlet_plume spurge) (STV 1.0 0.9091)) +(: cnet_isa_7edf298cb6 (IsA scarlet_runner green_bean) (STV 1.0 0.9091)) +(: cnet_isa_ed1933ad05 (IsA scarlet_runner coral_pea) (STV 1.0 0.9091)) +(: cnet_isa_c5dbb2f08c (IsA scarlet_runner pole_bean) (STV 1.0 0.9091)) +(: cnet_isa_d29b4cba46 (IsA scarlet_tanager tanager) (STV 1.0 0.9091)) +(: cnet_isa_3995c8a5cf (IsA scarlet_wisteria_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_9f0086e878 (IsA scartella fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_dd38ffc2ce (IsA scat jazz) (STV 1.0 0.9091)) +(: cnet_isa_66ac028273 (IsA scat singing) (STV 1.0 0.9091)) +(: cnet_isa_558ac0fda5 (IsA scatology obscenity) (STV 1.0 0.9091)) +(: cnet_isa_6c66e932bd (IsA scatology chemical_analysis) (STV 1.0 0.9091)) +(: cnet_isa_d344902f84 (IsA scatophagy eating) (STV 1.0 0.9091)) +(: cnet_isa_97e9e4edfa (IsA scatter spread) (STV 1.0 0.9091)) +(: cnet_isa_49d1bb884d (IsA scatter distribution) (STV 1.0 0.9091)) +(: cnet_isa_c222546b86 (IsA scatter_pin pin) (STV 1.0 0.9091)) +(: cnet_isa_1700814290 (IsA scatter_rug rug) (STV 1.0 0.9091)) +(: cnet_isa_5432cfda97 (IsA scatterbrain simpleton) (STV 1.0 0.9091)) +(: cnet_isa_adaf42b7ea (IsA scattering shower) (STV 1.0 0.9091)) +(: cnet_isa_e2a8861ba0 (IsA scattering natural_process) (STV 1.0 0.9091)) +(: cnet_isa_3b47085fc3 (IsA scattering small_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_36fc0ffcd0 (IsA scaup duck) (STV 1.0 0.9091)) +(: cnet_isa_694835c2c9 (IsA scauper graver) (STV 1.0 0.9091)) +(: cnet_isa_18a3ef5991 (IsA scavenger animal) (STV 1.0 0.9091)) +(: cnet_isa_34412b686d (IsA scavenger chemical_agent) (STV 1.0 0.9091)) +(: cnet_isa_cf458b79b3 (IsA sceliphron arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_2f6bcfc046 (IsA sceloglaux bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_4ea86564ac (IsA sceloporus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_4de58a9383 (IsA scenario premise) (STV 1.0 0.9091)) +(: cnet_isa_2ba3ebba7c (IsA scenario script) (STV 1.0 0.9091)) +(: cnet_isa_6be98eee59 (IsA scenario setting) (STV 1.0 0.9091)) +(: cnet_isa_ecb6997160 (IsA scenarist writer) (STV 1.0 0.9091)) +(: cnet_isa_101d4cca8b (IsA scene graphic_art) (STV 1.0 0.9091)) +(: cnet_isa_9fa84de7fc (IsA scene dramatic_composition) (STV 1.0 0.9091)) +(: cnet_isa_7d20e2b7dd (IsA scene picture) (STV 1.0 0.9091)) +(: cnet_isa_7eeb7f1149 (IsA scene incident) (STV 1.0 0.9091)) +(: cnet_isa_06262bdf4e (IsA scene area) (STV 1.0 0.9091)) +(: cnet_isa_12febca010 (IsA scene_painter painter) (STV 1.0 0.9091)) +(: cnet_isa_664e837b56 (IsA scene_stealer actor) (STV 1.0 0.9091)) +(: cnet_isa_9d5eeb22b1 (IsA scenery stage_set) (STV 1.0 0.9091)) +(: cnet_isa_2db64601dc (IsA scenery vicinity) (STV 1.0 0.9091)) +(: cnet_isa_d77f8348ac (IsA sceneshifter stagehand) (STV 1.0 0.9091)) +(: cnet_isa_c15ae57764 (IsA scenic_artist painter) (STV 1.0 0.9091)) +(: cnet_isa_6dfaf1cf05 (IsA scenic_railway railway) (STV 1.0 0.9091)) +(: cnet_isa_2f1498db20 (IsA scent smell) (STV 1.0 0.9091)) +(: cnet_isa_bd2e9e1ce8 (IsA scented_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_bfb952c817 (IsA scentless_camomile herb) (STV 1.0 0.9091)) +(: cnet_isa_eb958b982e (IsA scepter staff) (STV 1.0 0.9091)) +(: cnet_isa_b823045ea0 (IsA scepter reign) (STV 1.0 0.9091)) +(: cnet_isa_a62ac9d403 (IsA schadenfreude delight) (STV 1.0 0.9091)) +(: cnet_isa_719fb5c335 (IsA schaffneria fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_f2fe0ab3eb (IsA schaffneria_nigripe fern) (STV 1.0 0.9091)) +(: cnet_isa_3c2b198693 (IsA schedule list) (STV 1.0 0.9091)) +(: cnet_isa_cf69b25e9c (IsA schedule_feeding infant_feeding) (STV 1.0 0.9091)) +(: cnet_isa_9d0e2b8918 (IsA scheduled_fire fire) (STV 1.0 0.9091)) +(: cnet_isa_6238881a00 (IsA scheduled_maintenance care) (STV 1.0 0.9091)) +(: cnet_isa_649da6025b (IsA scheduler hardware) (STV 1.0 0.9091)) +(: cnet_isa_19dc96e0ce (IsA scheduling planning) (STV 1.0 0.9091)) +(: cnet_isa_5a12020516 (IsA scheelite mineral) (STV 1.0 0.9091)) +(: cnet_isa_c05cc5cce4 (IsA schefflera rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_458c45fc49 (IsA schema representation) (STV 1.0 0.9091)) +(: cnet_isa_8c07719476 (IsA schematic diagram) (STV 1.0 0.9091)) +(: cnet_isa_7591b51c9b (IsA schematization reduction) (STV 1.0 0.9091)) +(: cnet_isa_51a6637deb (IsA schematization representation) (STV 1.0 0.9091)) +(: cnet_isa_d813b6c9d0 (IsA scheme functional_programming_language) (STV 1.0 0.9091)) +(: cnet_isa_fff749e2d9 (IsA scheme programming_language) (STV 1.0 0.9524)) +(: cnet_isa_91b0e0fb51 (IsA scheme plan_of_action) (STV 1.0 0.9091)) +(: cnet_isa_7d30be0a01 (IsA schemer planner) (STV 1.0 0.9091)) +(: cnet_isa_bf52eb507a (IsA schemozzle confusion) (STV 1.0 0.9091)) +(: cnet_isa_fbe4ddec38 (IsA scherzo movement) (STV 1.0 0.9091)) +(: cnet_isa_7c66571fb8 (IsA scheuchzeriaceae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_b20b516ee5 (IsA schick_test skin_test) (STV 1.0 0.9091)) +(: cnet_isa_c915767ea6 (IsA schilling austrian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_7b2351b32b (IsA schinus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_04ee6d099e (IsA schipperke watchdog) (STV 1.0 0.9091)) +(: cnet_isa_210e2a7746 (IsA schism division) (STV 1.0 0.9091)) +(: cnet_isa_ca4b2ae60c (IsA schism rupture) (STV 1.0 0.9091)) +(: cnet_isa_44fdd781be (IsA schist metamorphic_rock) (STV 1.0 0.9091)) +(: cnet_isa_19e15b634a (IsA schistosoma worm_genus) (STV 1.0 0.9091)) +(: cnet_isa_9e118105c0 (IsA schistosomatidae worm_family) (STV 1.0 0.9091)) +(: cnet_isa_8298b6c526 (IsA schistosome fluke) (STV 1.0 0.9091)) +(: cnet_isa_a8edb9c11d (IsA schistosome_dermatitis dermatitis) (STV 1.0 0.9091)) +(: cnet_isa_746229a605 (IsA schistosomiasis infection) (STV 1.0 0.9091)) +(: cnet_isa_90a568041d (IsA schistosomiasis infestation) (STV 1.0 0.9091)) +(: cnet_isa_48630f6209 (IsA schizachyrium monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0ece478171 (IsA schizaea fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_28d1aaa52c (IsA schizaeaceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_a62f0be186 (IsA schizocarp fruit) (STV 1.0 0.9091)) +(: cnet_isa_e7f1b2b3f8 (IsA schizogony fission) (STV 1.0 0.9091)) +(: cnet_isa_77e7b27ebd (IsA schizomycete class) (STV 1.0 0.9091)) +(: cnet_isa_3646e09f20 (IsA schizopetalon flower) (STV 1.0 0.9091)) +(: cnet_isa_84c2bdb951 (IsA schizophragma rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_957340abe5 (IsA schizophrenia mental_disorder) (STV 1.0 0.9454)) +(: cnet_isa_faae0f07d7 (IsA schizophrenia mental_illness) (STV 1.0 0.9454)) +(: cnet_isa_e3accb3310 (IsA schizophrenia psychosis) (STV 1.0 0.9091)) +(: cnet_isa_d39b0c075a (IsA schizophrenic psychotic) (STV 1.0 0.9091)) +(: cnet_isa_6d6aded694 (IsA schizophyta division) (STV 1.0 0.9091)) +(: cnet_isa_3bcba7e2c0 (IsA schizopoda animal_order) (STV 1.0 0.9091)) +(: cnet_isa_11297e0408 (IsA schizosaccharomyce fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_006d62f727 (IsA schizosaccharomycetaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_23bf441f8c (IsA schizothymia mental_disorder) (STV 1.0 0.9091)) +(: cnet_isa_8bd01f43c9 (IsA schizotypal_personality personality_disorder) (STV 1.0 0.9091)) +(: cnet_isa_b66170dbff (IsA schlemiel simpleton) (STV 1.0 0.9091)) +(: cnet_isa_264efe2ec4 (IsA schlep journey) (STV 1.0 0.9091)) +(: cnet_isa_95608784d1 (IsA schlepper simpleton) (STV 1.0 0.9091)) +(: cnet_isa_e94c1edab0 (IsA schlimazel unfortunate) (STV 1.0 0.9091)) +(: cnet_isa_97c4744865 (IsA schlock merchandise) (STV 1.0 0.9091)) +(: cnet_isa_ff1983cb92 (IsA schlockmeister merchant) (STV 1.0 0.9091)) +(: cnet_isa_8945a70c87 (IsA schlumbergera caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d16fb36694 (IsA schmaltz mawkishness) (STV 1.0 0.9091)) +(: cnet_isa_95f78f63d5 (IsA schmeer batch) (STV 1.0 0.9091)) +(: cnet_isa_d1e8c15a19 (IsA schmidt_telescope reflecting_telescope) (STV 1.0 0.9091)) +(: cnet_isa_a4177b4faf (IsA schmuck jerk) (STV 1.0 0.9091)) +(: cnet_isa_1a536f442f (IsA schnapp liquor) (STV 1.0 0.9091)) +(: cnet_isa_684ddf203b (IsA schnauzer terrier) (STV 1.0 0.9091)) +(: cnet_isa_9e229a6ea2 (IsA schnitzel dish) (STV 1.0 0.9091)) +(: cnet_isa_0d93b1a4c5 (IsA schnook simpleton) (STV 1.0 0.9091)) +(: cnet_isa_baea705c26 (IsA schnorrer moocher) (STV 1.0 0.9091)) +(: cnet_isa_5aa7d1bc73 (IsA scholar intellectual) (STV 1.0 0.9091)) +(: cnet_isa_a7c84103cf (IsA scholar student) (STV 1.0 0.9091)) +(: cnet_isa_4fdeef9c71 (IsA scholarship financial_aid) (STV 1.0 0.9091)) +(: cnet_isa_9f901c5039 (IsA scholarship prize) (STV 1.0 0.9091)) +(: cnet_isa_a11219f74d (IsA scholastic philosopher) (STV 1.0 0.9091)) +(: cnet_isa_38518ea509 (IsA scholasticism traditionalism) (STV 1.0 0.9091)) +(: cnet_isa_d447e0905e (IsA scholasticism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_7907960223 (IsA scholiast scholar) (STV 1.0 0.9091)) +(: cnet_isa_9a2d4d9938 (IsA scholium marginalia) (STV 1.0 0.9091)) +(: cnet_isa_005248cbec (IsA schomburgkia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_fa0d845ae6 (IsA school building) (STV 1.0 0.9091)) +(: cnet_isa_cb0d184b6c (IsA school place_to_learn) (STV 1.0 0.9091)) +(: cnet_isa_8fdbfa370a (IsA school education) (STV 1.0 0.9091)) +(: cnet_isa_68e05891fd (IsA school animal_group) (STV 1.0 0.9091)) +(: cnet_isa_e8a7e55230 (IsA school body) (STV 1.0 0.9091)) +(: cnet_isa_6fd0f6f2e3 (IsA school educational_institution) (STV 1.0 0.9091)) +(: cnet_isa_bd0e027b2a (IsA school time_period) (STV 1.0 0.9091)) +(: cnet_isa_2267b99897 (IsA school_assignment assignment) (STV 1.0 0.9091)) +(: cnet_isa_7f484cdab8 (IsA school_bell bell) (STV 1.0 0.9091)) +(: cnet_isa_34538d3ac8 (IsA school_board board) (STV 1.0 0.9091)) +(: cnet_isa_c33b7a2be4 (IsA school_bus bus) (STV 1.0 0.9091)) +(: cnet_isa_3232454224 (IsA school_crossing pedestrian_crossing) (STV 1.0 0.9091)) +(: cnet_isa_da398b6c2d (IsA school_day day) (STV 1.0 0.9091)) +(: cnet_isa_9157630284 (IsA school_district administrative_district) (STV 1.0 0.9091)) +(: cnet_isa_153bf063d9 (IsA school_newspaper newspaper) (STV 1.0 0.9091)) +(: cnet_isa_092d7ea42a (IsA school_phobia social_phobia) (STV 1.0 0.9091)) +(: cnet_isa_250429810c (IsA school_ship ship) (STV 1.0 0.9091)) +(: cnet_isa_fa6becb9db (IsA school_superintendent overseer) (STV 1.0 0.9091)) +(: cnet_isa_a8811df257 (IsA school_system establishment) (STV 1.0 0.9091)) +(: cnet_isa_8d34611aee (IsA school_term term) (STV 1.0 0.9091)) +(: cnet_isa_a81a9e528f (IsA school_year year) (STV 1.0 0.9091)) +(: cnet_isa_a89cfc9271 (IsA schoolbag bag) (STV 1.0 0.9091)) +(: cnet_isa_8b4cf85c46 (IsA schoolboy male_child) (STV 1.0 0.9091)) +(: cnet_isa_919f000ce5 (IsA schoolboy schoolchild) (STV 1.0 0.9091)) +(: cnet_isa_975d4e441c (IsA schoolchild young_person) (STV 1.0 0.9091)) +(: cnet_isa_56b452d47d (IsA schoolday time_of_life) (STV 1.0 0.9091)) +(: cnet_isa_46a26ac86c (IsA schoolfriend friend) (STV 1.0 0.9091)) +(: cnet_isa_d435b03cf7 (IsA schoolgirl female_child) (STV 1.0 0.9091)) +(: cnet_isa_7e7567fcaf (IsA schooling teaching) (STV 1.0 0.9091)) +(: cnet_isa_40a6da2aa1 (IsA schooling training) (STV 1.0 0.9091)) +(: cnet_isa_a56348c980 (IsA schoolmarm schoolteacher) (STV 1.0 0.9091)) +(: cnet_isa_52712dacb8 (IsA schoolmaster snapper) (STV 1.0 0.9091)) +(: cnet_isa_ec3ebc630c (IsA schoolmaster educator) (STV 1.0 0.9091)) +(: cnet_isa_1c0adbabf9 (IsA schoolmate acquaintance) (STV 1.0 0.9091)) +(: cnet_isa_1af7097f91 (IsA school good_place_to_learn) (STV 1.0 0.9091)) +(: cnet_isa_7f0303752a (IsA school part_of_educational_system) (STV 1.0 0.9091)) +(: cnet_isa_82d7198d7c (IsA school place_to_learn_thing) (STV 1.0 0.9454)) +(: cnet_isa_2f7bcc454c (IsA schoolteacher teacher) (STV 1.0 0.9091)) +(: cnet_isa_466d253e27 (IsA schoolyard yard) (STV 1.0 0.9091)) +(: cnet_isa_1783ed93b4 (IsA schooner glass) (STV 1.0 0.9091)) +(: cnet_isa_53e5ca1cd3 (IsA schooner sailing_vessel) (STV 1.0 0.9091)) +(: cnet_isa_878e291d52 (IsA schorl tourmaline) (STV 1.0 0.9091)) +(: cnet_isa_c9433e73ff (IsA schottische round_dance) (STV 1.0 0.9091)) +(: cnet_isa_ea3202d808 (IsA schottische folk_music) (STV 1.0 0.9091)) +(: cnet_isa_ece5d0a72c (IsA schreiber_s_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_529b20e51d (IsA schrod fish) (STV 1.0 0.9091)) +(: cnet_isa_63292c58db (IsA schrodinger_equation differential_equation) (STV 1.0 0.9091)) +(: cnet_isa_fdaa86553b (IsA schutzstaffel police) (STV 1.0 0.9091)) +(: cnet_isa_4975da5e9d (IsA schwa vowel) (STV 1.0 0.9091)) +(: cnet_isa_e1473c366a (IsA schwann_cell somatic_cell) (STV 1.0 0.9091)) +(: cnet_isa_61272d4628 (IsA schwarzenegger movie_star) (STV 1.0 0.9091)) +(: cnet_isa_45cde4c3c4 (IsA sciadopityaceae gymnosperm_family) (STV 1.0 0.9091)) +(: cnet_isa_ca915f3446 (IsA sciadopity gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_688897bf5c (IsA sciaena fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_44e000cb94 (IsA sciaenid_fish percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_819d17873d (IsA sciaenidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_03a582a0f7 (IsA sciaenop fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_08ba4e2b58 (IsA sciaridae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_a93a9d9274 (IsA sciatic_nerve nerve) (STV 1.0 0.9091)) +(: cnet_isa_59129913e4 (IsA sciatica neuralgia) (STV 1.0 0.9091)) +(: cnet_isa_ed132f7718 (IsA science method_to_understand_world) (STV 1.0 0.9339)) +(: cnet_isa_7fd11b9599 (IsA science subject) (STV 1.0 0.9454)) +(: cnet_isa_fc0b15fbfc (IsA science discipline) (STV 1.0 0.9091)) +(: cnet_isa_09b190eb09 (IsA science_fiction genre) (STV 1.0 0.9091)) +(: cnet_isa_e04dfebaea (IsA science_fiction often_about_future) (STV 1.0 0.9339)) +(: cnet_isa_b03c56fbc5 (IsA science_fiction fantasy) (STV 1.0 0.9091)) +(: cnet_isa_9ec607b1fb (IsA science_museum museum) (STV 1.0 0.9091)) +(: cnet_isa_5864626d80 (IsA science_teacher teacher) (STV 1.0 0.9091)) +(: cnet_isa_b66329f51e (IsA scientific_fact observation) (STV 1.0 0.9091)) +(: cnet_isa_5efa469509 (IsA scientific_instrument instrument) (STV 1.0 0.9091)) +(: cnet_isa_c78276314d (IsA scientific_knowledge knowledge_domain) (STV 1.0 0.9091)) +(: cnet_isa_734979820a (IsA scientific_method methodology) (STV 1.0 0.9091)) +(: cnet_isa_93319d35a5 (IsA scientific_model model) (STV 1.0 0.9091)) +(: cnet_isa_d936a1f89f (IsA scientific_research research) (STV 1.0 0.9091)) +(: cnet_isa_96a24912c4 (IsA scientific_theory theory) (STV 1.0 0.9091)) +(: cnet_isa_b3437d1ae4 (IsA scientist person) (STV 1.0 0.9091)) +(: cnet_isa_23951aeedf (IsA scientology religion) (STV 1.0 0.9091)) +(: cnet_isa_3d0969df7c (IsA scilla liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_7dba8adfe6 (IsA scimitar cavalry_sword) (STV 1.0 0.9091)) +(: cnet_isa_48a25599ec (IsA scincella reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_445364eaae (IsA scincidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_0dff3c8074 (IsA scincus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_7142d6f0fd (IsA scindapsus monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_63a2ba93f4 (IsA scintilla particle) (STV 1.0 0.9091)) +(: cnet_isa_b2fd41aa6f (IsA scintillating_scotoma scotoma) (STV 1.0 0.9091)) +(: cnet_isa_aba3875446 (IsA scintillation fluctuation) (STV 1.0 0.9091)) +(: cnet_isa_4ff7121e19 (IsA scintillation brilliance) (STV 1.0 0.9091)) +(: cnet_isa_c84e234a94 (IsA scintillation light) (STV 1.0 0.9091)) +(: cnet_isa_9ec7172576 (IsA scintillation_counter counter_tube) (STV 1.0 0.9091)) +(: cnet_isa_a367e3d24d (IsA sciolism superficiality) (STV 1.0 0.9091)) +(: cnet_isa_222d840db0 (IsA scion descendant) (STV 1.0 0.9091)) +(: cnet_isa_bac095d7fc (IsA scire_facia writ) (STV 1.0 0.9091)) +(: cnet_isa_3873ab8969 (IsA scirpus monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5060c37722 (IsA scission cut) (STV 1.0 0.9091)) +(: cnet_isa_24a8c9ae89 (IsA scissor gymnastic_exercise) (STV 1.0 0.9091)) +(: cnet_isa_bcb02d20f0 (IsA scissor wrestling_hold) (STV 1.0 0.9091)) +(: cnet_isa_e92d6e0cbf (IsA scissor compound_lever) (STV 1.0 0.9091)) +(: cnet_isa_9411a87867 (IsA scissor edge_tool) (STV 1.0 0.9091)) +(: cnet_isa_efe370f4d8 (IsA scissor_kick swimming_kick) (STV 1.0 0.9091)) +(: cnet_isa_764a5835fc (IsA scissortail new_world_flycatcher) (STV 1.0 0.9091)) +(: cnet_isa_a2b363347c (IsA sciuridae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_0ddd78a614 (IsA sciuromorpha animal_order) (STV 1.0 0.9091)) +(: cnet_isa_5aa7fde308 (IsA sciurus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_991f92996e (IsA sclaff golf_stroke) (STV 1.0 0.9091)) +(: cnet_isa_5f77c20bc8 (IsA sclera albuginea) (STV 1.0 0.9091)) +(: cnet_isa_3991740227 (IsA scleral_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_37b52ae088 (IsA scleranthus caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7a73e9fd74 (IsA scleredema edema) (STV 1.0 0.9091)) +(: cnet_isa_5164b47a38 (IsA sclerite protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_e27f029a01 (IsA scleritis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_491211045f (IsA scleroderma fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_b30fda5231 (IsA scleroderma autoimmune_disease) (STV 1.0 0.9091)) +(: cnet_isa_7eb557c068 (IsA scleroderma_bovista earthball) (STV 1.0 0.9091)) +(: cnet_isa_9ea125ec68 (IsA scleroderma_citrinum earthball) (STV 1.0 0.9091)) +(: cnet_isa_fa4d5ed716 (IsA scleroderma_flavidium earthball) (STV 1.0 0.9091)) +(: cnet_isa_6751212cdb (IsA sclerodermataceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_45e2f1cdb9 (IsA sclerodermatale fungus_order) (STV 1.0 0.9091)) +(: cnet_isa_e7e854f655 (IsA sclerometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_396ebf83f5 (IsA scleroparei animal_order) (STV 1.0 0.9091)) +(: cnet_isa_8f1af14eae (IsA scleroprotein simple_protein) (STV 1.0 0.9091)) +(: cnet_isa_143013e340 (IsA sclerosis pathology) (STV 1.0 0.9091)) +(: cnet_isa_134e1c09cf (IsA sclerotinia fungus) (STV 1.0 0.9091)) +(: cnet_isa_0d1d212610 (IsA sclerotiniaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_2a40d59ea5 (IsA sclerotium fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_a57b533f7e (IsA sclerotium mycelium) (STV 1.0 0.9091)) +(: cnet_isa_445f6d4d32 (IsA sclerotium_disease plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_342b250489 (IsA sclerotomy incision) (STV 1.0 0.9091)) +(: cnet_isa_390bf3fb12 (IsA scoffer eater) (STV 1.0 0.9091)) +(: cnet_isa_bdbdd26149 (IsA scoffer unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_76fd32a5c0 (IsA scofflaw criminal) (STV 1.0 0.9091)) +(: cnet_isa_f8ca0040ba (IsA scoinson_arch arch) (STV 1.0 0.9091)) +(: cnet_isa_bac4e7a75f (IsA scold unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_3d9e4a4b48 (IsA scolion song) (STV 1.0 0.9091)) +(: cnet_isa_29d8aaaf63 (IsA scoliosis spinal_curvature) (STV 1.0 0.9091)) +(: cnet_isa_a240aa9c83 (IsA scolopacidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_f3084a9fa5 (IsA scolopax bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_2a069f9020 (IsA scolopendrium fern) (STV 1.0 0.9091)) +(: cnet_isa_98b6b835d7 (IsA scolymus asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5f31fb034d (IsA scolytidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_9578344fd8 (IsA scolytus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_9c60f16f8c (IsA scomber fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_995a1cdcb5 (IsA scomberesocidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_8124e6e40a (IsA scomberesox fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_131b7daf8a (IsA scomberomorus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_42498b58cf (IsA scomberomorus_maculatus spanish_mackerel) (STV 1.0 0.9091)) +(: cnet_isa_8051c4eaae (IsA scombridae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_a8e6a56849 (IsA scombroid percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_52037130f9 (IsA scombroidea animal_order) (STV 1.0 0.9091)) +(: cnet_isa_10f80c5f57 (IsA sconce bracket) (STV 1.0 0.9091)) +(: cnet_isa_cf0d6b2d7e (IsA sconce earthwork) (STV 1.0 0.9091)) +(: cnet_isa_cc2e0e04a6 (IsA sconce fortress) (STV 1.0 0.9091)) +(: cnet_isa_7d94478463 (IsA sconce light) (STV 1.0 0.9091)) +(: cnet_isa_19fe14a047 (IsA sconce shelter) (STV 1.0 0.9091)) +(: cnet_isa_6f4fb343fa (IsA scone quick_bread) (STV 1.0 0.9091)) +(: cnet_isa_1095a30c6e (IsA scoop ladle) (STV 1.0 0.9091)) +(: cnet_isa_4918b01a2e (IsA scoop shovel) (STV 1.0 0.9091)) +(: cnet_isa_aa43773255 (IsA scoop containerful) (STV 1.0 0.9091)) +(: cnet_isa_0088b20cd2 (IsA scoop concave_shape) (STV 1.0 0.9091)) +(: cnet_isa_a6666b2ce7 (IsA scoop_shot basketball_shot) (STV 1.0 0.9091)) +(: cnet_isa_72050b133d (IsA scooter wheeled_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_07399a4e53 (IsA scope extent) (STV 1.0 0.9091)) +(: cnet_isa_5fa1f2c387 (IsA scope_trial trial) (STV 1.0 0.9091)) +(: cnet_isa_e9dd25bdd3 (IsA scophthalmus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_89f1ea30e1 (IsA scopolamine alkaloid) (STV 1.0 0.9091)) +(: cnet_isa_747bf06e9e (IsA scopolia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8e6dd6f5b8 (IsA scopolia_carniolica herb) (STV 1.0 0.9091)) +(: cnet_isa_9a3c46284a (IsA scop_owl owl) (STV 1.0 0.9091)) +(: cnet_isa_99f66c7928 (IsA scorch stain) (STV 1.0 0.9091)) +(: cnet_isa_7d9c178fc6 (IsA scorch burn) (STV 1.0 0.9091)) +(: cnet_isa_5d44d091a7 (IsA scorch plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_05bcc96f2b (IsA scorched_earth_policy shark_repellent) (STV 1.0 0.9091)) +(: cnet_isa_02e61e51e5 (IsA scorcher hit) (STV 1.0 0.9091)) +(: cnet_isa_bb73311e25 (IsA scorcher hot_weather) (STV 1.0 0.9091)) +(: cnet_isa_462c6ca889 (IsA score success) (STV 1.0 0.9091)) +(: cnet_isa_79c55fbbc1 (IsA score fact) (STV 1.0 0.9091)) +(: cnet_isa_a28b0e3a4e (IsA score sheet_music) (STV 1.0 0.9091)) +(: cnet_isa_0261afc70c (IsA score set) (STV 1.0 0.9091)) +(: cnet_isa_5b0fb8d2ec (IsA score reason) (STV 1.0 0.9091)) +(: cnet_isa_732b6255ab (IsA score number) (STV 1.0 0.9091)) +(: cnet_isa_b9953c4727 (IsA score incision) (STV 1.0 0.9091)) +(: cnet_isa_d159600abb (IsA score debt) (STV 1.0 0.9091)) +(: cnet_isa_7282e40e90 (IsA scoreboard board) (STV 1.0 0.9091)) +(: cnet_isa_81de8b0182 (IsA scoreboard signboard) (STV 1.0 0.9091)) +(: cnet_isa_f2edd4709e (IsA scorekeeper official) (STV 1.0 0.9091)) +(: cnet_isa_8d640623e0 (IsA scorer lumberman) (STV 1.0 0.9091)) +(: cnet_isa_f177fdedbe (IsA scorer player) (STV 1.0 0.9091)) +(: cnet_isa_5525a0e9ab (IsA scorpaena fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_5a5dd646ff (IsA scorpaenid scorpaenoid) (STV 1.0 0.9091)) +(: cnet_isa_3cb0641a50 (IsA scorpaenidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_8a9ffb0701 (IsA scorpaenoid spiny_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_fab43179ae (IsA scorpaenoidea animal_order) (STV 1.0 0.9091)) +(: cnet_isa_86bb6b1a97 (IsA scorpioid_cyme cyme) (STV 1.0 0.9091)) +(: cnet_isa_1f8df2afa0 (IsA scorpion one_type_of_animal) (STV 1.0 0.9091)) +(: cnet_isa_c94dda95c2 (IsA scorpion arachnid) (STV 1.0 0.9091)) +(: cnet_isa_cc9da50855 (IsA scorpion person) (STV 1.0 0.9091)) +(: cnet_isa_40480c19c8 (IsA scorpion_fly mecopteran) (STV 1.0 0.9091)) +(: cnet_isa_842b338b46 (IsA scorpion_shell snail) (STV 1.0 0.9091)) +(: cnet_isa_6db08988ae (IsA scorpionfish scorpaenid) (STV 1.0 0.9091)) +(: cnet_isa_2ce7a5df29 (IsA scorpionida animal_order) (STV 1.0 0.9091)) +(: cnet_isa_9eb3f7cef7 (IsA scorpionweed flower) (STV 1.0 0.9091)) +(: cnet_isa_ea2c2b04cd (IsA scorzonera salsify) (STV 1.0 0.9091)) +(: cnet_isa_38b9bd4dc3 (IsA scot_and_lot indebtedness) (STV 1.0 0.9091)) +(: cnet_isa_ba3fdf38a6 (IsA scotch whiskey) (STV 1.0 0.9091)) +(: cnet_isa_fc138e732f (IsA scotch_and_soda highball) (STV 1.0 0.9091)) +(: cnet_isa_b767176383 (IsA scotch_asphodel false_asphodel) (STV 1.0 0.9091)) +(: cnet_isa_232c79c668 (IsA scotch_broth soup) (STV 1.0 0.9091)) +(: cnet_isa_8eece36b2e (IsA scotch_egg dish) (STV 1.0 0.9091)) +(: cnet_isa_8a37c77139 (IsA scotch_kiss kiss) (STV 1.0 0.9091)) +(: cnet_isa_156160fe72 (IsA scotch_laburnum flowering_shrub) (STV 1.0 0.9091)) +(: cnet_isa_1e4d526202 (IsA scotch_pine pine) (STV 1.0 0.9091)) +(: cnet_isa_87708ca42b (IsA scotch_terrier terrier) (STV 1.0 0.9091)) +(: cnet_isa_7c16687afd (IsA scotch_woodcock dish) (STV 1.0 0.9091)) +(: cnet_isa_a9e6999d7e (IsA scotchman european) (STV 1.0 0.9091)) +(: cnet_isa_a055520bdb (IsA scotchwoman scotchman) (STV 1.0 0.9091)) +(: cnet_isa_55e7d10141 (IsA scoter sea_duck) (STV 1.0 0.9091)) +(: cnet_isa_aca07b2423 (IsA scotland_yard police) (STV 1.0 0.9091)) +(: cnet_isa_91cdcad7b9 (IsA scotoma visual_impairment) (STV 1.0 0.9091)) +(: cnet_isa_e4a3d33e19 (IsA scottish english) (STV 1.0 0.9091)) +(: cnet_isa_234c0626cc (IsA scottish_deerhound hound) (STV 1.0 0.9091)) +(: cnet_isa_3992319c69 (IsA scottish_gaelic gaelic) (STV 1.0 0.9091)) +(: cnet_isa_6cab8b0487 (IsA scottish_highlander scotchman) (STV 1.0 0.9091)) +(: cnet_isa_c622da5f70 (IsA scottish_lowlander scotchman) (STV 1.0 0.9091)) +(: cnet_isa_57b052a31a (IsA scour topographic_point) (STV 1.0 0.9091)) +(: cnet_isa_fdadf70144 (IsA scourer cleaner) (STV 1.0 0.9091)) +(: cnet_isa_22439e76fc (IsA scourer traveler) (STV 1.0 0.9091)) +(: cnet_isa_4a00b997e0 (IsA scourge whip) (STV 1.0 0.9091)) +(: cnet_isa_3939c67d01 (IsA scouring search) (STV 1.0 0.9091)) +(: cnet_isa_2661a795ff (IsA scouring_pad cleaning_pad) (STV 1.0 0.9091)) +(: cnet_isa_5c9783debc (IsA scouring_rush horsetail) (STV 1.0 0.9091)) +(: cnet_isa_a26c377332 (IsA scour animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_81865268de (IsA scouser english_person) (STV 1.0 0.9091)) +(: cnet_isa_8199998935 (IsA scout expert) (STV 1.0 0.9091)) +(: cnet_isa_cdc2ed33c0 (IsA scout female_child) (STV 1.0 0.9091)) +(: cnet_isa_8ee4c29d5e (IsA scout male_child) (STV 1.0 0.9091)) +(: cnet_isa_98aa7d6cba (IsA scout recruiter) (STV 1.0 0.9091)) +(: cnet_isa_c1c7658e29 (IsA scouting reconnaissance) (STV 1.0 0.9091)) +(: cnet_isa_83ba8b9b46 (IsA scouting_trip expedition) (STV 1.0 0.9091)) +(: cnet_isa_a3e32f9325 (IsA scoutmaster leader) (STV 1.0 0.9091)) +(: cnet_isa_38a5e5fa2b (IsA scout people) (STV 1.0 0.9454)) +(: cnet_isa_4fd6ca4d2a (IsA scow barge) (STV 1.0 0.9091)) +(: cnet_isa_dccb4110b3 (IsA scow boat) (STV 1.0 0.9091)) +(: cnet_isa_684d8230bb (IsA scrabble board_game) (STV 1.0 0.9454)) +(: cnet_isa_593d804802 (IsA scrabble word_game) (STV 1.0 0.9091)) +(: cnet_isa_7dca6d893e (IsA scrag cut_of_mutton) (STV 1.0 0.9091)) +(: cnet_isa_f580011500 (IsA scrag cut_of_veal) (STV 1.0 0.9091)) +(: cnet_isa_280d3f211e (IsA scramble struggle) (STV 1.0 0.9091)) +(: cnet_isa_10d1e3ad07 (IsA scrambled_egg dish) (STV 1.0 0.9091)) +(: cnet_isa_08133483b2 (IsA scrambler electronic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_df2f31cd4b (IsA scrambler mover) (STV 1.0 0.9091)) +(: cnet_isa_b822b0efb7 (IsA scrap piece) (STV 1.0 0.9091)) +(: cnet_isa_6bf27c7c54 (IsA scrap_iron iron) (STV 1.0 0.9091)) +(: cnet_isa_6fe1e5b590 (IsA scrap_iron scrap_metal) (STV 1.0 0.9091)) +(: cnet_isa_31a72f1c4d (IsA scrap_metal rubbish) (STV 1.0 0.9091)) +(: cnet_isa_f056756917 (IsA scrapbook album) (STV 1.0 0.9091)) +(: cnet_isa_021d70f233 (IsA scrape bow) (STV 1.0 0.9091)) +(: cnet_isa_f877a552ca (IsA scrape noise) (STV 1.0 0.9091)) +(: cnet_isa_f4240cb8d6 (IsA scraper hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_aa5f0491fc (IsA scrapheap pile) (STV 1.0 0.9091)) +(: cnet_isa_d4a1ceffa2 (IsA scrapie animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_8dcfbde2d4 (IsA scraping fragment) (STV 1.0 0.9091)) +(: cnet_isa_19b9962ba8 (IsA scrappiness combativeness) (STV 1.0 0.9091)) +(: cnet_isa_94392df80f (IsA scrapple dish) (STV 1.0 0.9091)) +(: cnet_isa_72eba418d8 (IsA scrapple loaf) (STV 1.0 0.9091)) +(: cnet_isa_424041749a (IsA scratch blemish) (STV 1.0 0.9091)) +(: cnet_isa_d9f56029e0 (IsA scratch handicap) (STV 1.0 0.9091)) +(: cnet_isa_567ee153ef (IsA scratch rival) (STV 1.0 0.9091)) +(: cnet_isa_65a750194a (IsA scratch_pad notepad) (STV 1.0 0.9091)) +(: cnet_isa_82cfc252d1 (IsA scratch_race race) (STV 1.0 0.9091)) +(: cnet_isa_6593394699 (IsA scratch_test skin_test) (STV 1.0 0.9091)) +(: cnet_isa_e5c7e6fb2d (IsA scratcher device) (STV 1.0 0.9091)) +(: cnet_isa_79893a8f82 (IsA scratcher person) (STV 1.0 0.9091)) +(: cnet_isa_a43d7cd635 (IsA scratcher workman) (STV 1.0 0.9091)) +(: cnet_isa_61e9d142af (IsA scratchpad memory) (STV 1.0 0.9091)) +(: cnet_isa_ebeb0170cb (IsA scrawler writer) (STV 1.0 0.9091)) +(: cnet_isa_9069d311cb (IsA scrawniness inferiority) (STV 1.0 0.9091)) +(: cnet_isa_f1b0989f41 (IsA scream cry) (STV 1.0 0.9091)) +(: cnet_isa_7fe3dc7d68 (IsA screamer waterfowl) (STV 1.0 0.9091)) +(: cnet_isa_e51f79abe4 (IsA screamer headline) (STV 1.0 0.9091)) +(: cnet_isa_f612b2b489 (IsA screech noise) (STV 1.0 0.9091)) +(: cnet_isa_925f146b40 (IsA screech_owl owl) (STV 1.0 0.9091)) +(: cnet_isa_82c82f952d (IsA screed strip) (STV 1.0 0.9091)) +(: cnet_isa_0ba09274f8 (IsA screed harangue) (STV 1.0 0.9091)) +(: cnet_isa_6f50ceac3f (IsA screed writing) (STV 1.0 0.9091)) +(: cnet_isa_bafc0f5283 (IsA screen covering) (STV 1.0 0.9091)) +(: cnet_isa_68bacd96e1 (IsA screen display) (STV 1.0 0.9091)) +(: cnet_isa_c7e4dc21b7 (IsA screen partition) (STV 1.0 0.9091)) +(: cnet_isa_4fe27706f1 (IsA screen protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_9ee62cb35b (IsA screen surface) (STV 1.0 0.9091)) +(: cnet_isa_4f92899385 (IsA screen_actor actor) (STV 1.0 0.9091)) +(: cnet_isa_89dba1b720 (IsA screen_door door) (STV 1.0 0.9091)) +(: cnet_isa_2585fdf66d (IsA screen_font font) (STV 1.0 0.9091)) +(: cnet_isa_401eed5876 (IsA screen_memory memory) (STV 1.0 0.9091)) +(: cnet_isa_a9c4ef300e (IsA screen_pass forward_pass) (STV 1.0 0.9091)) +(: cnet_isa_671195dbc6 (IsA screen_saver design) (STV 1.0 0.9091)) +(: cnet_isa_c0ea408d50 (IsA screen_test audition) (STV 1.0 0.9091)) +(: cnet_isa_7427430df6 (IsA screener guard) (STV 1.0 0.9091)) +(: cnet_isa_1381e0799e (IsA screening testing) (STV 1.0 0.9091)) +(: cnet_isa_8243b4e252 (IsA screening fabric) (STV 1.0 0.9091)) +(: cnet_isa_056a3e1fba (IsA screening display) (STV 1.0 0.9091)) +(: cnet_isa_c31990d06d (IsA screenland film_industry) (STV 1.0 0.9091)) +(: cnet_isa_0deb021188 (IsA screenplay script) (STV 1.0 0.9091)) +(: cnet_isa_618300ff9b (IsA screenwriter scriptwriter) (STV 1.0 0.9091)) +(: cnet_isa_c690fe67f3 (IsA screw inclined_plane) (STV 1.0 0.9339)) +(: cnet_isa_ec8403828b (IsA screw simple_machine) (STV 1.0 0.9608)) +(: cnet_isa_565d0bebc6 (IsA screw fastener) (STV 1.0 0.9091)) +(: cnet_isa_7183a0dd09 (IsA screw propeller) (STV 1.0 0.9091)) +(: cnet_isa_e273b14974 (IsA screw_augur lady_tress) (STV 1.0 0.9091)) +(: cnet_isa_b4960058ec (IsA screw_bean mesquite) (STV 1.0 0.9091)) +(: cnet_isa_356367d300 (IsA screw_bean pod) (STV 1.0 0.9091)) +(: cnet_isa_b0686e3b15 (IsA screw_eye woodscrew) (STV 1.0 0.9091)) +(: cnet_isa_79588414a9 (IsA screw_key wrench) (STV 1.0 0.9091)) +(: cnet_isa_320db6c7de (IsA screw_thread rib) (STV 1.0 0.9091)) +(: cnet_isa_c227132691 (IsA screw_tree shrub) (STV 1.0 0.9091)) +(: cnet_isa_ca09cbcfb6 (IsA screw_wrench adjustable_wrench) (STV 1.0 0.9091)) +(: cnet_isa_8f958d5acb (IsA screwball pitch) (STV 1.0 0.9091)) +(: cnet_isa_824c900058 (IsA screwballer pitcher) (STV 1.0 0.9091)) +(: cnet_isa_fed44a5b6f (IsA screwdriver drink) (STV 1.0 0.9677)) +(: cnet_isa_dc76c3d8e4 (IsA screwdriver hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_841d000822 (IsA screwdriver cocktail) (STV 1.0 0.9091)) +(: cnet_isa_fd1e89b475 (IsA screwtop top) (STV 1.0 0.9091)) +(: cnet_isa_490bc20eb9 (IsA screwup mismanagement) (STV 1.0 0.9091)) +(: cnet_isa_548971885a (IsA scribble drawing) (STV 1.0 0.9091)) +(: cnet_isa_736b18b839 (IsA scribble handwriting) (STV 1.0 0.9091)) +(: cnet_isa_0c32af59ee (IsA scribe journalist) (STV 1.0 0.9091)) +(: cnet_isa_4067900d04 (IsA scriber awl) (STV 1.0 0.9091)) +(: cnet_isa_781c3f689a (IsA scrim fabric) (STV 1.0 0.9091)) +(: cnet_isa_2327fffb9c (IsA scrimmage exercise) (STV 1.0 0.9091)) +(: cnet_isa_4f471a7639 (IsA scrimmage_line line) (STV 1.0 0.9091)) +(: cnet_isa_1d0466f10f (IsA scrimshanker slacker) (STV 1.0 0.9091)) +(: cnet_isa_4539d98f23 (IsA scrimshaw carving) (STV 1.0 0.9091)) +(: cnet_isa_68415cb047 (IsA scrip security) (STV 1.0 0.9091)) +(: cnet_isa_73eb06ea5d (IsA script dramatic_composition) (STV 1.0 0.9091)) +(: cnet_isa_66931d45d1 (IsA script orthography) (STV 1.0 0.9091)) +(: cnet_isa_81ac138ba9 (IsA scriptorium room) (STV 1.0 0.9091)) +(: cnet_isa_fd5f0f51ef (IsA scripture sacred_text) (STV 1.0 0.9091)) +(: cnet_isa_7881cc5ae8 (IsA scriptwriter writer) (STV 1.0 0.9091)) +(: cnet_isa_cfd2e69c48 (IsA scrod cod) (STV 1.0 0.9091)) +(: cnet_isa_47c523509f (IsA scrofula tuberculosis) (STV 1.0 0.9091)) +(: cnet_isa_25c237c4ea (IsA scroll manuscript) (STV 1.0 0.9091)) +(: cnet_isa_c7b5727bb1 (IsA scrophularia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c8c2a4cec8 (IsA scrophulariaceae asterid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_371379a341 (IsA scrophulariale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_e94d14c41f (IsA scrotal_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_07345a413f (IsA scrotum pouch) (STV 1.0 0.9091)) +(: cnet_isa_d32f818c04 (IsA scrub cleaning) (STV 1.0 0.9091)) +(: cnet_isa_0baea1f294 (IsA scrub vegetation) (STV 1.0 0.9091)) +(: cnet_isa_df16223d5e (IsA scrub_beefwood tree) (STV 1.0 0.9091)) +(: cnet_isa_1571edb831 (IsA scrub_brush brush) (STV 1.0 0.9091)) +(: cnet_isa_94863940d8 (IsA scrub_nurse nurse) (STV 1.0 0.9091)) +(: cnet_isa_4fa2cbe7c3 (IsA scrub_oak oak) (STV 1.0 0.9091)) +(: cnet_isa_5cb9656099 (IsA scrub_pine pine) (STV 1.0 0.9091)) +(: cnet_isa_1c1be3ce27 (IsA scrub_plane plane) (STV 1.0 0.9091)) +(: cnet_isa_bf5db9a03f (IsA scrubber purifier) (STV 1.0 0.9091)) +(: cnet_isa_7de9158211 (IsA scrubber worker) (STV 1.0 0.9091)) +(: cnet_isa_656f6a7bda (IsA scrubbird passerine) (STV 1.0 0.9091)) +(: cnet_isa_21f7f3889f (IsA scrubland country) (STV 1.0 0.9091)) +(: cnet_isa_4ebd69e91a (IsA scrum beginning) (STV 1.0 0.9091)) +(: cnet_isa_a5f531b8d4 (IsA scrumpy cider) (STV 1.0 0.9091)) +(: cnet_isa_be33c2e50a (IsA scrunch noise) (STV 1.0 0.9091)) +(: cnet_isa_247305e2fb (IsA scruple principle) (STV 1.0 0.9091)) +(: cnet_isa_07800ca3bf (IsA scruple anxiety) (STV 1.0 0.9091)) +(: cnet_isa_6e88734bf2 (IsA scruple apothecary_unit) (STV 1.0 0.9091)) +(: cnet_isa_d01515cc62 (IsA scrupulousness honesty) (STV 1.0 0.9091)) +(: cnet_isa_4b52086688 (IsA scrutineer examiner) (STV 1.0 0.9091)) +(: cnet_isa_2921a7ccb9 (IsA scrutinizer examiner) (STV 1.0 0.9091)) +(: cnet_isa_ce31263f2d (IsA scrutiny look) (STV 1.0 0.9091)) +(: cnet_isa_531ac7cf49 (IsA scuba_diver diver) (STV 1.0 0.9091)) +(: cnet_isa_6bb0841498 (IsA scuba_diving hobby) (STV 1.0 0.9091)) +(: cnet_isa_b9dab5c751 (IsA scuba_diving skin_diving) (STV 1.0 0.9091)) +(: cnet_isa_255df5e20e (IsA scud speed) (STV 1.0 0.9091)) +(: cnet_isa_ea768ced2a (IsA scuff rub) (STV 1.0 0.9091)) +(: cnet_isa_930c095011 (IsA scuffer sandal) (STV 1.0 0.9091)) +(: cnet_isa_d6af1f5479 (IsA scuffle hoe) (STV 1.0 0.9091)) +(: cnet_isa_5f70e7b282 (IsA scull oar) (STV 1.0 0.9091)) +(: cnet_isa_af464e36d6 (IsA scull shell) (STV 1.0 0.9091)) +(: cnet_isa_2e5364b91f (IsA sculler oarsman) (STV 1.0 0.9091)) +(: cnet_isa_58c2b6c3ef (IsA scullery room) (STV 1.0 0.9091)) +(: cnet_isa_2f6125c815 (IsA sculling rowing) (STV 1.0 0.9091)) +(: cnet_isa_a41ab35394 (IsA scullion servant) (STV 1.0 0.9091)) +(: cnet_isa_3be5a03aca (IsA sculpin scorpaenoid) (STV 1.0 0.9091)) +(: cnet_isa_38e5527564 (IsA sculptor artist) (STV 1.0 0.9091)) +(: cnet_isa_aeb7274e43 (IsA sculptress sculptor) (STV 1.0 0.9091)) +(: cnet_isa_2249f8e9b1 (IsA sculpture art) (STV 1.0 0.9091)) +(: cnet_isa_f26a771029 (IsA sculpture fine_art) (STV 1.0 0.9091)) +(: cnet_isa_1e491bf0fc (IsA sculpture plastic_art) (STV 1.0 0.9091)) +(: cnet_isa_0d9e250709 (IsA sculpture solid_figure) (STV 1.0 0.9091)) +(: cnet_isa_982b243584 (IsA scum film) (STV 1.0 0.9091)) +(: cnet_isa_f026ee7a3e (IsA scumble application) (STV 1.0 0.9091)) +(: cnet_isa_ba04446263 (IsA scunner dislike) (STV 1.0 0.9091)) +(: cnet_isa_eec0d5ebe2 (IsA scup porgy) (STV 1.0 0.9091)) +(: cnet_isa_7ac3e17e44 (IsA scup saltwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_8f48781f70 (IsA scupper drain) (STV 1.0 0.9091)) +(: cnet_isa_b3f7ddf06f (IsA scuppernong muscadine) (STV 1.0 0.9091)) +(: cnet_isa_eb797bcd7a (IsA scurf bit) (STV 1.0 0.9091)) +(: cnet_isa_70f5d040a1 (IsA scurrility abuse) (STV 1.0 0.9091)) +(: cnet_isa_f9291311cb (IsA scurvy avitaminosis) (STV 1.0 0.9091)) +(: cnet_isa_c0d404f319 (IsA scurvy_grass cress) (STV 1.0 0.9091)) +(: cnet_isa_c642e26199 (IsA scut tail) (STV 1.0 0.9091)) +(: cnet_isa_d26b9e24e5 (IsA scut_work job) (STV 1.0 0.9091)) +(: cnet_isa_0cdb599d2a (IsA scute protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_4d1af6e47d (IsA scutellaria asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4f22340d33 (IsA scutigera arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_150f84637c (IsA scutigerella arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_c27796bf38 (IsA scutigeridae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_b1889357b7 (IsA scuttle container) (STV 1.0 0.9091)) +(: cnet_isa_28c6f047ad (IsA scyliorhinidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_b58691d625 (IsA scyphozoa class) (STV 1.0 0.9091)) +(: cnet_isa_c16371d8d7 (IsA scyphozoan coelenterate) (STV 1.0 0.9091)) +(: cnet_isa_37d427b647 (IsA scyphus cup) (STV 1.0 0.9091)) +(: cnet_isa_04c1bc80a0 (IsA scythe edge_tool) (STV 1.0 0.9091)) +(: cnet_isa_ed1aa06f74 (IsA scythian iranian) (STV 1.0 0.9091)) +(: cnet_isa_0fc7cccfd5 (IsA scythian nomad) (STV 1.0 0.9091)) +(: cnet_isa_77f527ef75 (IsA scythian_lamb tree_fern) (STV 1.0 0.9091)) +(: cnet_isa_1642806233 (IsA sea body_of_salt_water) (STV 1.0 0.9339)) +(: cnet_isa_38654da12c (IsA sea body_of_water) (STV 1.0 0.9091)) +(: cnet_isa_58f4bba2de (IsA sea large_body_of_salt_water) (STV 1.0 0.9524)) +(: cnet_isa_c887b0c56e (IsA sea large_body_of_water) (STV 1.0 0.9091)) +(: cnet_isa_60d25e352f (IsA sea turbulent_flow) (STV 1.0 0.9091)) +(: cnet_isa_9d5a689636 (IsA sea_anchor restraint) (STV 1.0 0.9091)) +(: cnet_isa_b4514c7069 (IsA sea_anemone anthozoan) (STV 1.0 0.9091)) +(: cnet_isa_95c9052ce4 (IsA sea_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_d38299f54b (IsA sea_bass food_fish) (STV 1.0 0.9091)) +(: cnet_isa_1b12ab356b (IsA sea_bass serranid_fish) (STV 1.0 0.9091)) +(: cnet_isa_5edb9250fd (IsA sea_bass saltwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_e6882228f9 (IsA sea_bathing bathing) (STV 1.0 0.9091)) +(: cnet_isa_54e2e24492 (IsA sea_boat boat) (STV 1.0 0.9091)) +(: cnet_isa_c3934cb2d0 (IsA sea_bream percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_247e508e98 (IsA sea_breeze breeze) (STV 1.0 0.9091)) +(: cnet_isa_89691c1f67 (IsA sea_catfish catfish) (STV 1.0 0.9091)) +(: cnet_isa_8f95779684 (IsA sea_change transformation) (STV 1.0 0.9091)) +(: cnet_isa_55ef8eb784 (IsA sea_chest chest) (STV 1.0 0.9091)) +(: cnet_isa_c517e40ee5 (IsA sea_chub percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_2ee6c055b5 (IsA sea_coal bituminous_coal) (STV 1.0 0.9091)) +(: cnet_isa_a33beebf0d (IsA sea_cow aquatic_mammal) (STV 1.0 0.9091)) +(: cnet_isa_8a3ea526fe (IsA sea_cucumber echinoderm) (STV 1.0 0.9091)) +(: cnet_isa_314b52f6cd (IsA sea_dahlia coreopsis) (STV 1.0 0.9091)) +(: cnet_isa_bec8454bfa (IsA sea_duck duck) (STV 1.0 0.9091)) +(: cnet_isa_9babca9536 (IsA sea_duty assignment) (STV 1.0 0.9091)) +(: cnet_isa_382e912210 (IsA sea_eagle eagle) (STV 1.0 0.9091)) +(: cnet_isa_cbda383207 (IsA sea_fan gorgonian) (STV 1.0 0.9091)) +(: cnet_isa_d34d23e9dd (IsA sea_feather gorgonian) (STV 1.0 0.9091)) +(: cnet_isa_dccc506038 (IsA sea_god deity) (STV 1.0 0.9091)) +(: cnet_isa_59a9e190aa (IsA sea_gooseberry ctenophore) (STV 1.0 0.9091)) +(: cnet_isa_0f8182c492 (IsA sea_green green) (STV 1.0 0.9091)) +(: cnet_isa_af51ed416a (IsA sea_hare gastropod) (STV 1.0 0.9091)) +(: cnet_isa_b8d4e4d061 (IsA sea_holly shrub) (STV 1.0 0.9091)) +(: cnet_isa_1e57d36772 (IsA sea_island_cotton cotton) (STV 1.0 0.9091)) +(: cnet_isa_17303d6e7e (IsA sea_kale herb) (STV 1.0 0.9091)) +(: cnet_isa_cbbd2a6e1c (IsA sea_king pirate) (STV 1.0 0.9091)) +(: cnet_isa_0eb43b2d70 (IsA sea_ladder ladder) (STV 1.0 0.9091)) +(: cnet_isa_7a6e1c4d68 (IsA sea_lamprey lamprey) (STV 1.0 0.9091)) +(: cnet_isa_d33ff5e828 (IsA sea_lavender subshrub) (STV 1.0 0.9091)) +(: cnet_isa_f053f4aa65 (IsA sea_lawyer mariner) (STV 1.0 0.9091)) +(: cnet_isa_21d6b21043 (IsA sea_lettuce green_algae) (STV 1.0 0.9091)) +(: cnet_isa_145dce3bd5 (IsA sea_level water_level) (STV 1.0 0.9091)) +(: cnet_isa_1ec04932e5 (IsA sea_level_pressure atmospheric_pressure) (STV 1.0 0.9091)) +(: cnet_isa_cacc1a605a (IsA sea_lily crinoid) (STV 1.0 0.9091)) +(: cnet_isa_f4a1fdc45d (IsA sea_lion eared_seal) (STV 1.0 0.9091)) +(: cnet_isa_12680e6fa2 (IsA sea_louse isopod) (STV 1.0 0.9091)) +(: cnet_isa_f3a3415d8b (IsA sea_lyme_grass lyme_grass) (STV 1.0 0.9091)) +(: cnet_isa_51983ae48b (IsA sea_mile nautical_linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_eea15c5e96 (IsA sea_milkwort herb) (STV 1.0 0.9091)) +(: cnet_isa_93f99924e9 (IsA sea_moss red_algae) (STV 1.0 0.9091)) +(: cnet_isa_a77d0b04fc (IsA sea_mouse polychaete) (STV 1.0 0.9091)) +(: cnet_isa_fbbf6e3356 (IsA sea_nymph water_nymph) (STV 1.0 0.9091)) +(: cnet_isa_995f30c0f9 (IsA sea_otter musteline_mammal) (STV 1.0 0.9091)) +(: cnet_isa_9a8922b247 (IsA sea_pen anthozoan) (STV 1.0 0.9091)) +(: cnet_isa_261148b819 (IsA sea_power state) (STV 1.0 0.9091)) +(: cnet_isa_46950a79e2 (IsA sea_power military_capability) (STV 1.0 0.9091)) +(: cnet_isa_1ec265083a (IsA sea_raven sculpin) (STV 1.0 0.9091)) +(: cnet_isa_d681ef0c64 (IsA sea_robin gurnard) (STV 1.0 0.9091)) +(: cnet_isa_507f0acf39 (IsA sea_rocket herb) (STV 1.0 0.9091)) +(: cnet_isa_ad18660ade (IsA sea_room room) (STV 1.0 0.9091)) +(: cnet_isa_7cc89fa7ae (IsA sea_scallop scallop) (STV 1.0 0.9091)) +(: cnet_isa_776ef911f6 (IsA sea_scout boy_scout) (STV 1.0 0.9091)) +(: cnet_isa_a56bb97793 (IsA sea_serpent legendary_creature) (STV 1.0 0.9091)) +(: cnet_isa_0874e0511e (IsA sea_slug gastropod) (STV 1.0 0.9091)) +(: cnet_isa_796f8bde8b (IsA sea_snake snake) (STV 1.0 0.9091)) +(: cnet_isa_9e3d33bc9a (IsA sea_spider arthropod) (STV 1.0 0.9091)) +(: cnet_isa_922e472aa4 (IsA sea_spray spray) (STV 1.0 0.9091)) +(: cnet_isa_a99baea4a2 (IsA sea_squill liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_e362d5d18d (IsA sea_squirt ascidian) (STV 1.0 0.9091)) +(: cnet_isa_3c271c1161 (IsA sea_swallow tern) (STV 1.0 0.9091)) +(: cnet_isa_18336d9dd7 (IsA sea_tangle kelp) (STV 1.0 0.9091)) +(: cnet_isa_159b45dcf6 (IsA sea_trout brown_trout) (STV 1.0 0.9091)) +(: cnet_isa_f9177a700c (IsA sea_trout sciaenid_fish) (STV 1.0 0.9091)) +(: cnet_isa_cec20a626c (IsA sea_trout trout) (STV 1.0 0.9091)) +(: cnet_isa_f147c1cc04 (IsA sea_turtle turtle) (STV 1.0 0.9091)) +(: cnet_isa_bd27caf2d0 (IsA sea_urchin echinoderm) (STV 1.0 0.9091)) +(: cnet_isa_ed2c693a50 (IsA sea_wormwood wormwood) (STV 1.0 0.9091)) +(: cnet_isa_d16993f54a (IsA sea_wrack seaweed) (STV 1.0 0.9091)) +(: cnet_isa_a16f1a0ec9 (IsA seabag drawstring_bag) (STV 1.0 0.9091)) +(: cnet_isa_c30f667cbd (IsA seabeach_sandwort sandwort) (STV 1.0 0.9091)) +(: cnet_isa_2a0e69e0e8 (IsA seabird aquatic_bird) (STV 1.0 0.9091)) +(: cnet_isa_eecfaaca3d (IsA seafaring employment) (STV 1.0 0.9091)) +(: cnet_isa_7cc85e8ac4 (IsA seafood food) (STV 1.0 0.9091)) +(: cnet_isa_682c18a9d5 (IsA seafood_newburg dish) (STV 1.0 0.9091)) +(: cnet_isa_ad02b93939 (IsA seafront waterfront) (STV 1.0 0.9091)) +(: cnet_isa_af8125a210 (IsA seagrass seaweed) (STV 1.0 0.9091)) +(: cnet_isa_47953426aa (IsA seahorse pipefish) (STV 1.0 0.9091)) +(: cnet_isa_7bd97c0c75 (IsA seal pinniped_mammal) (STV 1.0 0.9091)) +(: cnet_isa_22caf1d3df (IsA seal coating) (STV 1.0 0.9091)) +(: cnet_isa_1b2348c00e (IsA seal device) (STV 1.0 0.9091)) +(: cnet_isa_3d935fc4e3 (IsA seal fastener) (STV 1.0 0.9091)) +(: cnet_isa_52bf050584 (IsA seal stamp) (STV 1.0 0.9091)) +(: cnet_isa_bbd668e2f6 (IsA seal bluejacket) (STV 1.0 0.9091)) +(: cnet_isa_550664d32b (IsA seal fur) (STV 1.0 0.9091)) +(: cnet_isa_99462bf730 (IsA seal_bomb explosive_device) (STV 1.0 0.9091)) +(: cnet_isa_20772c12b0 (IsA seal_oil animal_oil) (STV 1.0 0.9091)) +(: cnet_isa_fd49832c82 (IsA sealant sealing_material) (STV 1.0 0.9091)) +(: cnet_isa_14f3c34a7f (IsA sealed_instrument contract) (STV 1.0 0.9091)) +(: cnet_isa_c0750e6331 (IsA sealer official) (STV 1.0 0.9091)) +(: cnet_isa_9e3a8044d9 (IsA sealing_material material) (STV 1.0 0.9091)) +(: cnet_isa_8a417057fb (IsA sealing_wax fastener) (STV 1.0 0.9091)) +(: cnet_isa_eec6ee6d7a (IsA sealskin garment) (STV 1.0 0.9091)) +(: cnet_isa_d6325fcb6e (IsA sealyham_terrier welsh_terrier) (STV 1.0 0.9091)) +(: cnet_isa_4313082c4b (IsA seam joint) (STV 1.0 0.9091)) +(: cnet_isa_e1a215a75c (IsA seam stratum) (STV 1.0 0.9091)) +(: cnet_isa_ee2051826a (IsA seamanship skill) (STV 1.0 0.9091)) +(: cnet_isa_4fef5edfab (IsA seamount mountain) (STV 1.0 0.9091)) +(: cnet_isa_81deda70ee (IsA seanad_eireann house) (STV 1.0 0.9091)) +(: cnet_isa_4c8546e8c8 (IsA seance meeting) (STV 1.0 0.9091)) +(: cnet_isa_ceeedc9c79 (IsA seaplane airplane) (STV 1.0 0.9091)) +(: cnet_isa_bc1390f083 (IsA seaport port) (STV 1.0 0.9091)) +(: cnet_isa_21bb3cbc6b (IsA seaquake earthquake) (STV 1.0 0.9091)) +(: cnet_isa_9b5d36ed22 (IsA search activity) (STV 1.0 0.9091)) +(: cnet_isa_ba2a47cb63 (IsA search examination) (STV 1.0 0.9091)) +(: cnet_isa_685fa3242a (IsA search investigation) (STV 1.0 0.9091)) +(: cnet_isa_a9071c085b (IsA search higher_cognitive_process) (STV 1.0 0.9091)) +(: cnet_isa_023d0e67cc (IsA search operation) (STV 1.0 0.9091)) +(: cnet_isa_61a4c13078 (IsA search_and_destroy_mission mission) (STV 1.0 0.9091)) +(: cnet_isa_67a916b3c5 (IsA search_and_rescue_mission rescue) (STV 1.0 0.9091)) +(: cnet_isa_d9a700ec3b (IsA search_engine program) (STV 1.0 0.9091)) +(: cnet_isa_eb9ea8d912 (IsA search_mission mission) (STV 1.0 0.9091)) +(: cnet_isa_cadde7a68e (IsA search_party party) (STV 1.0 0.9091)) +(: cnet_isa_77ffdb6475 (IsA search_warrant warrant) (STV 1.0 0.9091)) +(: cnet_isa_9b97a7140c (IsA searcher calosoma) (STV 1.0 0.9091)) +(: cnet_isa_b2908ca1da (IsA searcher official) (STV 1.0 0.9091)) +(: cnet_isa_6d57b1d854 (IsA searching_fire fire) (STV 1.0 0.9091)) +(: cnet_isa_cb7344fbb1 (IsA searchlight light) (STV 1.0 0.9091)) +(: cnet_isa_1e0fb1776b (IsA searing cooking) (STV 1.0 0.9091)) +(: cnet_isa_f9251b9e15 (IsA searing_iron cautery) (STV 1.0 0.9091)) +(: cnet_isa_72eb1d8bdc (IsA seascape painting) (STV 1.0 0.9091)) +(: cnet_isa_1128acb225 (IsA seascape scenery) (STV 1.0 0.9091)) +(: cnet_isa_de1748f273 (IsA seashell shell) (STV 1.0 0.9091)) +(: cnet_isa_835d0f14e3 (IsA seashore shore) (STV 1.0 0.9091)) +(: cnet_isa_bc408ef523 (IsA seashore_mallow mallow) (STV 1.0 0.9091)) +(: cnet_isa_4e919bea25 (IsA seasickness motion_sickness) (STV 1.0 0.9091)) +(: cnet_isa_923abfe286 (IsA seaside seashore) (STV 1.0 0.9091)) +(: cnet_isa_11a5bd1169 (IsA seaside_alder alder) (STV 1.0 0.9091)) +(: cnet_isa_23ca653f8e (IsA seaside_centaury centaury) (STV 1.0 0.9091)) +(: cnet_isa_3a625a74f5 (IsA seaside_daisy fleabane) (STV 1.0 0.9091)) +(: cnet_isa_4c7a9488e0 (IsA seaside_goldenrod goldenrod) (STV 1.0 0.9091)) +(: cnet_isa_d7d20fc55c (IsA seasnail gastropod) (STV 1.0 0.9091)) +(: cnet_isa_812b5e2d61 (IsA season time_period) (STV 1.0 0.9091)) +(: cnet_isa_ff2bf80699 (IsA seasonableness timing) (STV 1.0 0.9091)) +(: cnet_isa_8f7a20771f (IsA seasonal_adjustment allowance) (STV 1.0 0.9091)) +(: cnet_isa_559b7d5425 (IsA seasonal_worker worker) (STV 1.0 0.9091)) +(: cnet_isa_efbe36354d (IsA seasoned_salt flavorer) (STV 1.0 0.9091)) +(: cnet_isa_a26a49efb1 (IsA seasoner cook) (STV 1.0 0.9091)) +(: cnet_isa_bc5e958ece (IsA seasoning change_of_state) (STV 1.0 0.9091)) +(: cnet_isa_643ce00c2c (IsA seat cloth_covering) (STV 1.0 0.9091)) +(: cnet_isa_d1c5131fcf (IsA seat furniture) (STV 1.0 0.9091)) +(: cnet_isa_08512973d2 (IsA seat part) (STV 1.0 0.9091)) +(: cnet_isa_2db5bcd4be (IsA seat support) (STV 1.0 0.9091)) +(: cnet_isa_e96392f8e3 (IsA seat legal_right) (STV 1.0 0.9091)) +(: cnet_isa_51424b61c5 (IsA seat space) (STV 1.0 0.9091)) +(: cnet_isa_01d78fd928 (IsA seat center) (STV 1.0 0.9091)) +(: cnet_isa_bd4e7a0d11 (IsA seat location) (STV 1.0 0.9091)) +(: cnet_isa_9763923e45 (IsA seat_belt safety_belt) (STV 1.0 0.9091)) +(: cnet_isa_c10e3ac55d (IsA seat_cushion cushion) (STV 1.0 0.9091)) +(: cnet_isa_0727786fe8 (IsA seating service) (STV 1.0 0.9091)) +(: cnet_isa_091e3e3a23 (IsA seating room) (STV 1.0 0.9091)) +(: cnet_isa_f5e223766b (IsA seating_capacity capaciousness) (STV 1.0 0.9091)) +(: cnet_isa_c127eca9cc (IsA seattle city_in_washington) (STV 1.0 0.9572)) +(: cnet_isa_0a6c3686a8 (IsA seaward direction) (STV 1.0 0.9091)) +(: cnet_isa_932a522a1e (IsA seawater saltwater) (STV 1.0 0.9091)) +(: cnet_isa_4eb8242380 (IsA seawater water) (STV 1.0 0.9091)) +(: cnet_isa_5c36670b7e (IsA seaway lane) (STV 1.0 0.9091)) +(: cnet_isa_f5128533ad (IsA seaweed plant) (STV 1.0 0.9339)) +(: cnet_isa_0a001ac40d (IsA seaweed alga) (STV 1.0 0.9091)) +(: cnet_isa_a5f5008745 (IsA seaworthiness soundness) (STV 1.0 0.9091)) +(: cnet_isa_5b83f472f3 (IsA sebaceous_cyst cyst) (STV 1.0 0.9091)) +(: cnet_isa_9742fcdde4 (IsA sebaceous_gland oil_gland) (STV 1.0 0.9091)) +(: cnet_isa_f07b30b456 (IsA sebacic_acid carboxylic_acid) (STV 1.0 0.9091)) +(: cnet_isa_775336ec6d (IsA sebastiana rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ffed9d84d1 (IsA sebastode fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_26a56ab9fe (IsA seborrhea skin_disease) (STV 1.0 0.9091)) +(: cnet_isa_dc238962a7 (IsA seborrheic_dermatitis dermatitis) (STV 1.0 0.9091)) +(: cnet_isa_01dc487078 (IsA seborrheic_keratosis keratosis) (STV 1.0 0.9091)) +(: cnet_isa_d6a2209903 (IsA sebum secretion) (STV 1.0 0.9091)) +(: cnet_isa_97ee5c8d75 (IsA secale monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1be7a0150c (IsA secant trigonometric_function) (STV 1.0 0.9091)) +(: cnet_isa_9e6da5ea8a (IsA secant straight_line) (STV 1.0 0.9091)) +(: cnet_isa_98bb128994 (IsA secateur pruning_shear) (STV 1.0 0.9091)) +(: cnet_isa_00f3105324 (IsA secession separation) (STV 1.0 0.9091)) +(: cnet_isa_4c614bf36d (IsA secession artistic_movement) (STV 1.0 0.9091)) +(: cnet_isa_e4ac4ab129 (IsA secession school) (STV 1.0 0.9091)) +(: cnet_isa_3d72409a86 (IsA secessionism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_ba02c1fe7b (IsA secessionist agent_non_geographical) (STV 1.0 0.9091)) +(: cnet_isa_b2a01ae2a8 (IsA secessionist organization) (STV 1.0 0.9091)) +(: cnet_isa_bf89ce53b1 (IsA secessionist advocate) (STV 1.0 0.9091)) +(: cnet_isa_32760a14dc (IsA seckel pear) (STV 1.0 0.9091)) +(: cnet_isa_6218471b0f (IsA seclusion separation) (STV 1.0 0.9091)) +(: cnet_isa_b8d835f123 (IsA second agreement) (STV 1.0 0.9091)) +(: cnet_isa_78a0ae407e (IsA second rank) (STV 1.0 0.9091)) +(: cnet_isa_0947cf480f (IsA second attendant) (STV 1.0 0.9091)) +(: cnet_isa_8ba3a2db6f (IsA second angular_unit) (STV 1.0 0.9091)) +(: cnet_isa_230075e010 (IsA second time_unit) (STV 1.0 0.9091)) +(: cnet_isa_c8abd27a38 (IsA second_adventist christian) (STV 1.0 0.9091)) +(: cnet_isa_bfde5f1d72 (IsA second_balcony area) (STV 1.0 0.9091)) +(: cnet_isa_ca5f7370ed (IsA second_base position) (STV 1.0 0.9091)) +(: cnet_isa_7923bc846a (IsA second_base base) (STV 1.0 0.9091)) +(: cnet_isa_c12ef4dc98 (IsA second_baseman infielder) (STV 1.0 0.9091)) +(: cnet_isa_52b3c1d187 (IsA second_class inferiority) (STV 1.0 0.9091)) +(: cnet_isa_2176fb4183 (IsA second_class rank) (STV 1.0 0.9091)) +(: cnet_isa_fae5a204c0 (IsA second_council_of_constantinople ecumenical_council) (STV 1.0 0.9091)) +(: cnet_isa_e19f3762ee (IsA second_council_of_lyon council) (STV 1.0 0.9091)) +(: cnet_isa_b676c0cef7 (IsA second_council_of_nicaea ecumenical_council) (STV 1.0 0.9091)) +(: cnet_isa_df39094715 (IsA second_cousin relative) (STV 1.0 0.9091)) +(: cnet_isa_fbf0921ae0 (IsA second_degree_burn burn) (STV 1.0 0.9091)) +(: cnet_isa_318c733ab9 (IsA second_empire empire) (STV 1.0 0.9091)) +(: cnet_isa_da6d4b7d42 (IsA second_estate estate) (STV 1.0 0.9091)) +(: cnet_isa_e04703c72e (IsA second_fiddle function) (STV 1.0 0.9091)) +(: cnet_isa_59e4a54725 (IsA second_fiddle subordinate) (STV 1.0 0.9091)) +(: cnet_isa_17ab167bde (IsA second_gear gear) (STV 1.0 0.9091)) +(: cnet_isa_5af8d80974 (IsA second_growth forest) (STV 1.0 0.9091)) +(: cnet_isa_5c8a54a1ca (IsA second_half half) (STV 1.0 0.9091)) +(: cnet_isa_55b4881ddf (IsA second_hand hand) (STV 1.0 0.9091)) +(: cnet_isa_6821de2e57 (IsA second_hand mediator) (STV 1.0 0.9091)) +(: cnet_isa_b0d0b007c8 (IsA second_hand_speech conversation) (STV 1.0 0.9091)) +(: cnet_isa_eb7ce4a241 (IsA second_in_command deputy) (STV 1.0 0.9091)) +(: cnet_isa_f326912bea (IsA second_joint helping) (STV 1.0 0.9091)) +(: cnet_isa_5d23a5a30d (IsA second_lateran_council lateran_council) (STV 1.0 0.9091)) +(: cnet_isa_b615376405 (IsA second_law_of_motion newton_s_law_of_motion) (STV 1.0 0.9091)) +(: cnet_isa_54d183d7bc (IsA second_law_of_thermodynamic law_of_thermodynamic) (STV 1.0 0.9091)) +(: cnet_isa_d2de9d435d (IsA second_lieutenant lieutenant) (STV 1.0 0.9091)) +(: cnet_isa_74e3bb25b0 (IsA second_moment moment) (STV 1.0 0.9091)) +(: cnet_isa_f6dab9478d (IsA second_month_of_year february) (STV 1.0 0.9091)) +(: cnet_isa_b7b2b96b05 (IsA second_mortgage mortgage) (STV 1.0 0.9091)) +(: cnet_isa_b903d9b6f8 (IsA second_nature habit) (STV 1.0 0.9091)) +(: cnet_isa_f505b376da (IsA second_period part) (STV 1.0 0.9091)) +(: cnet_isa_932c17e298 (IsA second_person person) (STV 1.0 0.9091)) +(: cnet_isa_e890f2bdff (IsA second_place_finish finish) (STV 1.0 0.9091)) +(: cnet_isa_aba07e1159 (IsA second_rater person) (STV 1.0 0.9091)) +(: cnet_isa_d1b9a023b0 (IsA second_reading presentation) (STV 1.0 0.9091)) +(: cnet_isa_650a1ecd1b (IsA second_string team) (STV 1.0 0.9091)) +(: cnet_isa_aa1bb6475f (IsA second_trimester trimester) (STV 1.0 0.9091)) +(: cnet_isa_fca86c146e (IsA second_vatican_council vatican_council) (STV 1.0 0.9091)) +(: cnet_isa_5b029231b1 (IsA second_wind breathing) (STV 1.0 0.9091)) +(: cnet_isa_57d9609aa2 (IsA second_wind energy) (STV 1.0 0.9091)) +(: cnet_isa_224322553f (IsA secondary formation) (STV 1.0 0.9091)) +(: cnet_isa_e35442e452 (IsA secondary_amenorrhea amenorrhea) (STV 1.0 0.9091)) +(: cnet_isa_36ae47488b (IsA secondary_censorship armed_force_censorship) (STV 1.0 0.9091)) +(: cnet_isa_ed7a38b82d (IsA secondary_coil coil) (STV 1.0 0.9091)) +(: cnet_isa_eb87fde94d (IsA secondary_dentition dentition) (STV 1.0 0.9091)) +(: cnet_isa_d90e9bb651 (IsA secondary_diagonal diagonal) (STV 1.0 0.9091)) +(: cnet_isa_6b03ea0270 (IsA secondary_dysmenorrhea dysmenorrhea) (STV 1.0 0.9091)) +(: cnet_isa_4eb35906c7 (IsA secondary_education education) (STV 1.0 0.9091)) +(: cnet_isa_8fd99cc8ad (IsA secondary_emission emission) (STV 1.0 0.9091)) +(: cnet_isa_c42c73155c (IsA secondary_hypertension high_blood_pressure) (STV 1.0 0.9091)) +(: cnet_isa_f8309d5e52 (IsA secondary_modern_school secondary_school) (STV 1.0 0.9091)) +(: cnet_isa_58042fd0e6 (IsA secondary_school school) (STV 1.0 0.9091)) +(: cnet_isa_f727214542 (IsA secondary_sex_characteristic sex_characteristic) (STV 1.0 0.9091)) +(: cnet_isa_93e6269436 (IsA secondary_syphilis syphilis) (STV 1.0 0.9091)) +(: cnet_isa_1eadad31e4 (IsA seconder supporter) (STV 1.0 0.9091)) +(: cnet_isa_27d7c21eae (IsA secondhand_car car) (STV 1.0 0.9091)) +(: cnet_isa_cd09423a02 (IsA secondment reassignment) (STV 1.0 0.9091)) +(: cnet_isa_5c4cfda8f0 (IsA secondo part) (STV 1.0 0.9091)) +(: cnet_isa_14aa50fd5d (IsA secotiaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_1923e5f5c3 (IsA secotiale fungus_order) (STV 1.0 0.9091)) +(: cnet_isa_e4c6007c11 (IsA secrecy uncommunicativeness) (STV 1.0 0.9091)) +(: cnet_isa_d537996d2e (IsA secret information) (STV 1.0 0.9091)) +(: cnet_isa_8b2e31d9b4 (IsA secret_agent agent) (STV 1.0 0.9091)) +(: cnet_isa_0a56dd17b3 (IsA secret_ballot vote) (STV 1.0 0.9091)) +(: cnet_isa_c6abcc5150 (IsA secret_intelligence_service international_intelligence_agency) (STV 1.0 0.9091)) +(: cnet_isa_1a39f7dd66 (IsA secret_police police) (STV 1.0 0.9091)) +(: cnet_isa_518689d2a7 (IsA secret_society association) (STV 1.0 0.9091)) +(: cnet_isa_d509e2de40 (IsA secretarial_school school) (STV 1.0 0.9091)) +(: cnet_isa_8b16e4f762 (IsA secretariat administrative_unit) (STV 1.0 0.9091)) +(: cnet_isa_732dca4a79 (IsA secretary desk) (STV 1.0 0.9091)) +(: cnet_isa_a06e0cdb17 (IsA secretary assistant) (STV 1.0 0.9091)) +(: cnet_isa_826095c0e4 (IsA secretary head) (STV 1.0 0.9091)) +(: cnet_isa_810355d72f (IsA secretary_bird bird_of_prey) (STV 1.0 0.9091)) +(: cnet_isa_e343655bba (IsA secretary_general administrator) (STV 1.0 0.9091)) +(: cnet_isa_6c08e1dcff (IsA secretary_of_agriculture secretaryship) (STV 1.0 0.9091)) +(: cnet_isa_f91281e07b (IsA secretary_of_commerce secretaryship) (STV 1.0 0.9091)) +(: cnet_isa_2a9ae1f946 (IsA secretary_of_commerce_and_labor secretaryship) (STV 1.0 0.9091)) +(: cnet_isa_46515f9cb8 (IsA secretary_of_defense secretaryship) (STV 1.0 0.9091)) +(: cnet_isa_d00482bad2 (IsA secretary_of_education secretaryship) (STV 1.0 0.9091)) +(: cnet_isa_4b10b67c14 (IsA secretary_of_energy secretaryship) (STV 1.0 0.9091)) +(: cnet_isa_2ad15a3014 (IsA secretary_of_health_and_human_service secretaryship) (STV 1.0 0.9091)) +(: cnet_isa_094b75a020 (IsA secretary_of_health_and_human_service secretary) (STV 1.0 0.9091)) +(: cnet_isa_87f209a181 (IsA secretary_of_health_education_and_welfare secretaryship) (STV 1.0 0.9091)) +(: cnet_isa_08ebda8844 (IsA secretary_of_housing_and_urban_development secretaryship) (STV 1.0 0.9091)) +(: cnet_isa_8d2d6dba92 (IsA secretary_of_housing_and_urban_development secretary) (STV 1.0 0.9091)) +(: cnet_isa_6e06d907d5 (IsA secretary_of_interior secretaryship) (STV 1.0 0.9091)) +(: cnet_isa_2d2d1b127e (IsA secretary_of_labor secretaryship) (STV 1.0 0.9091)) +(: cnet_isa_f2574c2c79 (IsA secretary_of_navy secretaryship) (STV 1.0 0.9091)) +(: cnet_isa_f414ca60a5 (IsA secretary_of_state secretaryship) (STV 1.0 0.9091)) +(: cnet_isa_06a079ba31 (IsA secretary_of_state secretary) (STV 1.0 0.9091)) +(: cnet_isa_ced73229d0 (IsA secretary_of_state_for_home_department cabinet_minister) (STV 1.0 0.9091)) +(: cnet_isa_528dba31d9 (IsA secretary_of_transportation secretaryship) (STV 1.0 0.9091)) +(: cnet_isa_62dbb91140 (IsA secretary_of_treasury secretaryship) (STV 1.0 0.9091)) +(: cnet_isa_0746c7c4d2 (IsA secretary_of_veteran_affair secretaryship) (STV 1.0 0.9091)) +(: cnet_isa_af63ecd331 (IsA secretary_of_veteran_affair secretary) (STV 1.0 0.9091)) +(: cnet_isa_4cca61732a (IsA secretary_of_war secretaryship) (STV 1.0 0.9091)) +(: cnet_isa_72f7dbd897 (IsA secretaryship position) (STV 1.0 0.9091)) +(: cnet_isa_42b2c45840 (IsA secretase enzyme) (STV 1.0 0.9091)) +(: cnet_isa_6862cf607e (IsA secretin gastrointestinal_hormone) (STV 1.0 0.9091)) +(: cnet_isa_d5e25bbc46 (IsA secretion liquid_body_substance) (STV 1.0 0.9091)) +(: cnet_isa_1a69d28dec (IsA secretion organic_process) (STV 1.0 0.9091)) +(: cnet_isa_304e2ebedf (IsA secretory_phase phase) (STV 1.0 0.9091)) +(: cnet_isa_b0c19e4428 (IsA sect religion) (STV 1.0 0.9091)) +(: cnet_isa_04ce910c9a (IsA sectarian bigot) (STV 1.0 0.9091)) +(: cnet_isa_5eaad59803 (IsA sectarianism narrow_mindedness) (STV 1.0 0.9091)) +(: cnet_isa_0255c25295 (IsA section part) (STV 1.0 0.9091)) +(: cnet_isa_becb2955e7 (IsA section segment) (STV 1.0 0.9091)) +(: cnet_isa_487b5e13e1 (IsA section area) (STV 1.0 0.9091)) +(: cnet_isa_a1360f6cae (IsA section army_unit) (STV 1.0 0.9091)) +(: cnet_isa_a5241e6125 (IsA section musical_organization) (STV 1.0 0.9091)) +(: cnet_isa_2c676580db (IsA section team) (STV 1.0 0.9091)) +(: cnet_isa_2c344cfa03 (IsA section music) (STV 1.0 0.9091)) +(: cnet_isa_8a8c17398d (IsA section writing) (STV 1.0 0.9091)) +(: cnet_isa_ea98588327 (IsA section slice) (STV 1.0 0.9091)) +(: cnet_isa_334bb21b47 (IsA section square_mile) (STV 1.0 0.9091)) +(: cnet_isa_c7de39d55b (IsA section_eight dismissal) (STV 1.0 0.9091)) +(: cnet_isa_060f7d8f39 (IsA section_eight soldier) (STV 1.0 0.9091)) +(: cnet_isa_12f3594233 (IsA section_gang gang) (STV 1.0 0.9091)) +(: cnet_isa_dbdfa86fd6 (IsA section_hand laborer) (STV 1.0 0.9091)) +(: cnet_isa_3231780c1f (IsA section_man teacher) (STV 1.0 0.9091)) +(: cnet_isa_98b08efadd (IsA sectional furniture) (STV 1.0 0.9091)) +(: cnet_isa_82f24990fc (IsA sectionalism partiality) (STV 1.0 0.9091)) +(: cnet_isa_c93ed386b1 (IsA sector measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_cb9bb86f75 (IsA sector aspect) (STV 1.0 0.9091)) +(: cnet_isa_0450ceebf0 (IsA sector social_group) (STV 1.0 0.9091)) +(: cnet_isa_c0236f5fdd (IsA sector tract) (STV 1.0 0.9091)) +(: cnet_isa_36d2545041 (IsA sector computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_f612e75edd (IsA sector plane_figure) (STV 1.0 0.9091)) +(: cnet_isa_0a69a9a493 (IsA secularism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_43b2cc7609 (IsA secularist advocate) (STV 1.0 0.9091)) +(: cnet_isa_dbd048f9a2 (IsA secularization change) (STV 1.0 0.9091)) +(: cnet_isa_546539b416 (IsA secularization transfer) (STV 1.0 0.9091)) +(: cnet_isa_0a66918daa (IsA secundigravida gravida) (STV 1.0 0.9091)) +(: cnet_isa_bf81173f49 (IsA secured_bond bond) (STV 1.0 0.9091)) +(: cnet_isa_58ce2ec3fb (IsA secureness security) (STV 1.0 0.9091)) +(: cnet_isa_43b3d6d94f (IsA security_and_exchange_commission independent_agency) (STV 1.0 0.9091)) +(: cnet_isa_b9d7032b18 (IsA security_law law) (STV 1.0 0.9091)) +(: cnet_isa_bfbdfebbd9 (IsA security precaution) (STV 1.0 0.9091)) +(: cnet_isa_5171fbb1a9 (IsA security guarantee) (STV 1.0 0.9091)) +(: cnet_isa_ce403c5b5f (IsA security fearlessness) (STV 1.0 0.9091)) +(: cnet_isa_8a694b8bf0 (IsA security department) (STV 1.0 0.9091)) +(: cnet_isa_fc10614cb1 (IsA security asset) (STV 1.0 0.9091)) +(: cnet_isa_1c58f1c296 (IsA security legal_document) (STV 1.0 0.9091)) +(: cnet_isa_0e266b8c66 (IsA security transferred_property) (STV 1.0 0.9091)) +(: cnet_isa_f83177108d (IsA security safety) (STV 1.0 0.9091)) +(: cnet_isa_d5f207df7b (IsA security_blanket blanket) (STV 1.0 0.9091)) +(: cnet_isa_3c6840a82b (IsA security_blanket thing) (STV 1.0 0.9091)) +(: cnet_isa_98e5dd9ed8 (IsA security_consultant adviser) (STV 1.0 0.9091)) +(: cnet_isa_97fe767afa (IsA security_council council) (STV 1.0 0.9091)) +(: cnet_isa_6783632aab (IsA security_director administrator) (STV 1.0 0.9091)) +(: cnet_isa_e8304d79c8 (IsA security_force force) (STV 1.0 0.9091)) +(: cnet_isa_486938ab39 (IsA security_force_personnel worker) (STV 1.0 0.9339)) +(: cnet_isa_1ca5e0d37d (IsA security_intelligence counterintelligence) (STV 1.0 0.9091)) +(: cnet_isa_2f573337d9 (IsA security_intelligence_review_committee international_intelligence_agency) (STV 1.0 0.9091)) +(: cnet_isa_836e240701 (IsA security_interest interest) (STV 1.0 0.9091)) +(: cnet_isa_1b828f7ba2 (IsA security_officer worker) (STV 1.0 0.9091)) +(: cnet_isa_f488616d01 (IsA security_service international_intelligence_agency) (STV 1.0 0.9091)) +(: cnet_isa_7ec102d3b9 (IsA security_staff staff) (STV 1.0 0.9091)) +(: cnet_isa_5fa2d21541 (IsA security_system electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_b6775619d2 (IsA security_system system) (STV 1.0 0.9091)) +(: cnet_isa_d82a4dbb8b (IsA sedan car) (STV 1.0 0.9091)) +(: cnet_isa_19caf55631 (IsA sedan litter) (STV 1.0 0.9091)) +(: cnet_isa_0d4d44ba26 (IsA sedateness seriousness) (STV 1.0 0.9091)) +(: cnet_isa_33b6b0baa5 (IsA sedation administration) (STV 1.0 0.9091)) +(: cnet_isa_97ff64b079 (IsA sedation physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_557fd106a3 (IsA sedative drug_of_abuse) (STV 1.0 0.9091)) +(: cnet_isa_81576986ab (IsA sedative medicine) (STV 1.0 0.9091)) +(: cnet_isa_bef7aa640f (IsA sedative_hypnotic sedative) (STV 1.0 0.9091)) +(: cnet_isa_7e342a5bc9 (IsA seder supper) (STV 1.0 0.9091)) +(: cnet_isa_9924cc9363 (IsA sedge marsh_plant) (STV 1.0 0.9091)) +(: cnet_isa_ef0d9e6f5b (IsA sedge_warbler old_world_warbler) (STV 1.0 0.9091)) +(: cnet_isa_c39fd8f411 (IsA sedge_wren marsh_wren) (STV 1.0 0.9091)) +(: cnet_isa_4df19b154f (IsA sediment substance) (STV 1.0 0.9091)) +(: cnet_isa_92a66f65fe (IsA sedimentary rock) (STV 1.0 0.9091)) +(: cnet_isa_b65c975ac6 (IsA sedimentary_clay soil) (STV 1.0 0.9091)) +(: cnet_isa_ef8816582d (IsA sedimentary_rock rock) (STV 1.0 0.9091)) +(: cnet_isa_ac106a8d32 (IsA sedition misdemeanor) (STV 1.0 0.9091)) +(: cnet_isa_efea1dfae8 (IsA seducer bad_person) (STV 1.0 0.9091)) +(: cnet_isa_8bb5259079 (IsA seducer libertine) (STV 1.0 0.9091)) +(: cnet_isa_95733c9374 (IsA seduction enticement) (STV 1.0 0.9091)) +(: cnet_isa_ab706a3085 (IsA seduction success) (STV 1.0 0.9091)) +(: cnet_isa_e3acb4a03e (IsA seductress seducer) (STV 1.0 0.9091)) +(: cnet_isa_c7490edc97 (IsA sedulity diligence) (STV 1.0 0.9091)) +(: cnet_isa_a94e8fa2f1 (IsA sedum herb) (STV 1.0 0.9091)) +(: cnet_isa_ffd92df0c4 (IsA see seat) (STV 1.0 0.9091)) +(: cnet_isa_018668c6cc (IsA seed fruit) (STV 1.0 0.9091)) +(: cnet_isa_18445088fb (IsA seed ovule) (STV 1.0 0.9091)) +(: cnet_isa_c748d3be23 (IsA seed_beetle weevil) (STV 1.0 0.9091)) +(: cnet_isa_5ae09c9886 (IsA seed_catalog catalog) (STV 1.0 0.9091)) +(: cnet_isa_021ac6ee8e (IsA seed_corn seed_stock) (STV 1.0 0.9091)) +(: cnet_isa_5298712d97 (IsA seed_fern gymnosperm) (STV 1.0 0.9091)) +(: cnet_isa_3eba2bab86 (IsA seed_lac lac) (STV 1.0 0.9091)) +(: cnet_isa_13bf698071 (IsA seed_money capital) (STV 1.0 0.9091)) +(: cnet_isa_f340d03fc4 (IsA seed_oyster oyster) (STV 1.0 0.9091)) +(: cnet_isa_c055ce1079 (IsA seed_pearl pearl) (STV 1.0 0.9091)) +(: cnet_isa_2b0d6eb41f (IsA seed_shrimp crustacean) (STV 1.0 0.9091)) +(: cnet_isa_a51d89722f (IsA seed_stock store) (STV 1.0 0.9091)) +(: cnet_isa_a1bcf478e9 (IsA seedbed bed) (STV 1.0 0.9091)) +(: cnet_isa_4399eee34d (IsA seedcake cake) (STV 1.0 0.9091)) +(: cnet_isa_3105c8efd2 (IsA seeded_player player) (STV 1.0 0.9091)) +(: cnet_isa_d4574aed97 (IsA seeded_raisin raisin) (STV 1.0 0.9091)) +(: cnet_isa_efcba0c394 (IsA seeder kitchen_utensil) (STV 1.0 0.9091)) +(: cnet_isa_da5bb35599 (IsA seeder mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_ee6b2d5483 (IsA seeder person) (STV 1.0 0.9091)) +(: cnet_isa_d8535ebb22 (IsA seedless_raisin raisin) (STV 1.0 0.9091)) +(: cnet_isa_8b5c0e7187 (IsA seedling spermatophyte) (STV 1.0 0.9091)) +(: cnet_isa_ae68b4a48b (IsA seedsman trader) (STV 1.0 0.9091)) +(: cnet_isa_0186ab045e (IsA seedtime phase) (STV 1.0 0.9091)) +(: cnet_isa_510e373560 (IsA seedtime season) (STV 1.0 0.9091)) +(: cnet_isa_b5dffcb6d0 (IsA seeing sense) (STV 1.0 0.9091)) +(: cnet_isa_4d356016e8 (IsA seeing_eye_dog guide_dog) (STV 1.0 0.9091)) +(: cnet_isa_2bb6132c6a (IsA seek movement) (STV 1.0 0.9091)) +(: cnet_isa_aef93e6f54 (IsA seek_time time_interval) (STV 1.0 0.9091)) +(: cnet_isa_a9ecb7ad1d (IsA seeker projectile) (STV 1.0 0.9091)) +(: cnet_isa_642d38dae6 (IsA seeker person) (STV 1.0 0.9091)) +(: cnet_isa_891dd4493d (IsA seeking attempt) (STV 1.0 0.9091)) +(: cnet_isa_e9744644c2 (IsA seemliness propriety) (STV 1.0 0.9091)) +(: cnet_isa_b8041522a4 (IsA seepage flow) (STV 1.0 0.9091)) +(: cnet_isa_a47b4b1675 (IsA seer perceiver) (STV 1.0 0.9091)) +(: cnet_isa_6fbd1e9d67 (IsA seersucker fabric) (STV 1.0 0.9091)) +(: cnet_isa_8be5442a7f (IsA seesaw plaything) (STV 1.0 0.9091)) +(: cnet_isa_22fd6b16d8 (IsA segment part) (STV 1.0 0.9091)) +(: cnet_isa_a953301a16 (IsA segmental_arch arch) (STV 1.0 0.9091)) +(: cnet_isa_5dfd3b9cdd (IsA segno musical_notation) (STV 1.0 0.9091)) +(: cnet_isa_b75912c481 (IsA sego_lily liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_458012b6f8 (IsA segregate person) (STV 1.0 0.9091)) +(: cnet_isa_12ac275476 (IsA segregation separation) (STV 1.0 0.9091)) +(: cnet_isa_67fa6e4b76 (IsA segregation organic_process) (STV 1.0 0.9091)) +(: cnet_isa_4e4d25f71d (IsA segregation social_organization) (STV 1.0 0.9091)) +(: cnet_isa_340506fd44 (IsA segregationism political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_9668a3b145 (IsA segregator bigot) (STV 1.0 0.9091)) +(: cnet_isa_da734b76a3 (IsA segue passage) (STV 1.0 0.9091)) +(: cnet_isa_048f7d64ee (IsA sei_whale rorqual) (STV 1.0 0.9091)) +(: cnet_isa_c7f4d90aa0 (IsA seiche wave) (STV 1.0 0.9091)) +(: cnet_isa_61dd60d8e0 (IsA seidel glass) (STV 1.0 0.9091)) +(: cnet_isa_47f6441db9 (IsA seidlitz_powder purgative) (STV 1.0 0.9091)) +(: cnet_isa_5755681bac (IsA seif_dune dune) (STV 1.0 0.9091)) +(: cnet_isa_dbd798df86 (IsA seigneury estate) (STV 1.0 0.9091)) +(: cnet_isa_d48486d650 (IsA seigniorage fee) (STV 1.0 0.9091)) +(: cnet_isa_e46673c020 (IsA seine fishnet) (STV 1.0 0.9091)) +(: cnet_isa_f2664863c9 (IsA seismogram graph) (STV 1.0 0.9091)) +(: cnet_isa_013acfaaed (IsA seismograph measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_a44d3ddfb1 (IsA seismography measurement) (STV 1.0 0.9091)) +(: cnet_isa_91a1a3a7b4 (IsA seismologist geophysicist) (STV 1.0 0.9091)) +(: cnet_isa_8f7e1effa2 (IsA seismology geophysic) (STV 1.0 0.9091)) +(: cnet_isa_6e1e5caa21 (IsA seismosaurus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_cf90e0c6a6 (IsA seiurus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_ec438cd1ba (IsA seizing small_stuff) (STV 1.0 0.9091)) +(: cnet_isa_6a90b844b5 (IsA seizure appropriation) (STV 1.0 0.9091)) +(: cnet_isa_50a150a591 (IsA seizure attack) (STV 1.0 0.9091)) +(: cnet_isa_6159d94289 (IsA seizure_alert_dog working_dog) (STV 1.0 0.9091)) +(: cnet_isa_46e7e10337 (IsA selaginella fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_165d59ca4e (IsA selaginellaceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_80eb8a4a0f (IsA selaginellale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_e526fff989 (IsA selar fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_d76263d4bc (IsA select_committee committee) (STV 1.0 0.9091)) +(: cnet_isa_9a45eaa7ca (IsA selection assortment) (STV 1.0 0.9091)) +(: cnet_isa_7480d7d041 (IsA selective_amnesia amnesia) (STV 1.0 0.9091)) +(: cnet_isa_e93871d545 (IsA selective_serotonin_reuptake_inhibitor antidepressant) (STV 1.0 0.9091)) +(: cnet_isa_adbe0d4ad3 (IsA selective_service independent_agency) (STV 1.0 0.9091)) +(: cnet_isa_2241536a6b (IsA selectivity property) (STV 1.0 0.9091)) +(: cnet_isa_3cefeb3641 (IsA selectman elected_official) (STV 1.0 0.9091)) +(: cnet_isa_0081aa69ce (IsA selector switch) (STV 1.0 0.9091)) +(: cnet_isa_b4c4890fc1 (IsA selectwoman elected_official) (STV 1.0 0.9091)) +(: cnet_isa_c14c46ba0a (IsA selenarcto mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_0bccecf199 (IsA selene fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_14b83f944c (IsA selenic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_11600f893e (IsA selenicereus caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_553c4be22f (IsA selenipedium monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_659acfd25e (IsA selenium antioxidant) (STV 1.0 0.9091)) +(: cnet_isa_053f016cf9 (IsA selenium chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_0a229861d7 (IsA selenium_cell photoelectric_cell) (STV 1.0 0.9091)) +(: cnet_isa_caf4595bc8 (IsA selenology astronomy) (STV 1.0 0.9091)) +(: cnet_isa_a219435322 (IsA self illusion) (STV 1.0 0.9091)) +(: cnet_isa_9855de8a97 (IsA self consciousness) (STV 1.0 0.9091)) +(: cnet_isa_9bb8eb8015 (IsA self person) (STV 1.0 0.9091)) +(: cnet_isa_82e63e98f6 (IsA self_absorption preoccupation) (STV 1.0 0.9091)) +(: cnet_isa_243d2c3561 (IsA self_acceptance toleration) (STV 1.0 0.9091)) +(: cnet_isa_32cb40ba10 (IsA self_accusation accusation) (STV 1.0 0.9091)) +(: cnet_isa_91eb28319d (IsA self_accusation confession) (STV 1.0 0.9091)) +(: cnet_isa_64819290b7 (IsA self_adapting_program program) (STV 1.0 0.9091)) +(: cnet_isa_5745dba99b (IsA self_aggrandizement aggrandizement) (STV 1.0 0.9091)) +(: cnet_isa_a69a0f059c (IsA self_analysis psychotherapy) (STV 1.0 0.9091)) +(: cnet_isa_a3c2e83493 (IsA self_assertion aggression) (STV 1.0 0.9091)) +(: cnet_isa_a8c442622c (IsA self_assertion boast) (STV 1.0 0.9091)) +(: cnet_isa_8da35f0d31 (IsA self_awareness awareness) (STV 1.0 0.9091)) +(: cnet_isa_6b871d5e21 (IsA self_consciousness self_awareness) (STV 1.0 0.9091)) +(: cnet_isa_bd50f35d4c (IsA self_consciousness embarrassment) (STV 1.0 0.9091)) +(: cnet_isa_22bbb03be3 (IsA self_contradiction contradiction) (STV 1.0 0.9091)) +(: cnet_isa_86ffa55bef (IsA self_control resoluteness) (STV 1.0 0.9091)) +(: cnet_isa_ffca8668bb (IsA self_criticism criticism) (STV 1.0 0.9091)) +(: cnet_isa_1dbb8169cc (IsA self_deception misconception) (STV 1.0 0.9091)) +(: cnet_isa_aa7aabfd17 (IsA self_defense protection) (STV 1.0 0.9091)) +(: cnet_isa_9d7cb0b031 (IsA self_denial control) (STV 1.0 0.9091)) +(: cnet_isa_b9c3782a40 (IsA self_depreciation humility) (STV 1.0 0.9091)) +(: cnet_isa_f1ca082db1 (IsA self_destruction destruction) (STV 1.0 0.9091)) +(: cnet_isa_f3717899cb (IsA self_determination free_will) (STV 1.0 0.9091)) +(: cnet_isa_fa97c97b40 (IsA self_discipline discipline) (STV 1.0 0.9091)) +(: cnet_isa_182bbb8972 (IsA self_discovery discovery) (STV 1.0 0.9091)) +(: cnet_isa_5abcc0aefa (IsA self_disgust shame) (STV 1.0 0.9091)) +(: cnet_isa_28f69f408f (IsA self_education education) (STV 1.0 0.9091)) +(: cnet_isa_36f92577b8 (IsA self_esteem pride) (STV 1.0 0.9091)) +(: cnet_isa_3c70650216 (IsA self_expression expressive_style) (STV 1.0 0.9091)) +(: cnet_isa_05bbbfebbb (IsA self_feeder machine) (STV 1.0 0.9091)) +(: cnet_isa_507ecb5861 (IsA self_fertilization fertilization) (STV 1.0 0.9091)) +(: cnet_isa_193e49b5e7 (IsA self_flagellation self_punishment) (STV 1.0 0.9091)) +(: cnet_isa_43ae216af4 (IsA self_flagellation whipping) (STV 1.0 0.9091)) +(: cnet_isa_412a5bc891 (IsA self_fulfillment fulfillment) (STV 1.0 0.9091)) +(: cnet_isa_ef7d7c9ab1 (IsA self_government autonomy) (STV 1.0 0.9091)) +(: cnet_isa_8c8d19eddb (IsA self_gratification gratification) (STV 1.0 0.9091)) +(: cnet_isa_8889e03397 (IsA self_heal herb) (STV 1.0 0.9091)) +(: cnet_isa_660346851e (IsA self_help aid) (STV 1.0 0.9091)) +(: cnet_isa_fedf28b0bb (IsA self_hypnosis hypnosis) (STV 1.0 0.9091)) +(: cnet_isa_884c50db9d (IsA self_improvement improvement) (STV 1.0 0.9091)) +(: cnet_isa_29ea44ce02 (IsA self_incrimination incrimination) (STV 1.0 0.9091)) +(: cnet_isa_67bb357785 (IsA self_induction induction) (STV 1.0 0.9091)) +(: cnet_isa_4112199408 (IsA self_insurance insurance) (STV 1.0 0.9091)) +(: cnet_isa_8be4664732 (IsA self_knowledge understanding) (STV 1.0 0.9091)) +(: cnet_isa_005a6675f7 (IsA self_love conceit) (STV 1.0 0.9091)) +(: cnet_isa_4360f57017 (IsA self_organization organization) (STV 1.0 0.9091)) +(: cnet_isa_7eb542720a (IsA self_pity sorrow) (STV 1.0 0.9091)) +(: cnet_isa_83c18c9810 (IsA self_pollination pollination) (STV 1.0 0.9091)) +(: cnet_isa_0f110d4e32 (IsA self_portrait portrait) (STV 1.0 0.9091)) +(: cnet_isa_85989b35dd (IsA self_preservation preservation) (STV 1.0 0.9091)) +(: cnet_isa_a815f71b7c (IsA self_propelled_vehicle wheeled_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_17928cc276 (IsA self_punishment punishment) (STV 1.0 0.9091)) +(: cnet_isa_5783e6443a (IsA self_registering_thermometer thermometer) (STV 1.0 0.9091)) +(: cnet_isa_96a75cde2b (IsA self_renewal renewal) (STV 1.0 0.9091)) +(: cnet_isa_701a414dff (IsA self_report_personality_inventory personality_inventory) (STV 1.0 0.9091)) +(: cnet_isa_c95b6fe831 (IsA self_reproach reproach) (STV 1.0 0.9091)) +(: cnet_isa_c74f3afdd3 (IsA self_restraint restraint) (STV 1.0 0.9091)) +(: cnet_isa_1ed5c4c92b (IsA self_rising_flour mix) (STV 1.0 0.9091)) +(: cnet_isa_09b51247db (IsA self_service service) (STV 1.0 0.9091)) +(: cnet_isa_6ffed1c17d (IsA self_starter starter) (STV 1.0 0.9091)) +(: cnet_isa_5699ca733e (IsA self_starter powerhouse) (STV 1.0 0.9091)) +(: cnet_isa_960800b73f (IsA self_stimulation masturbation) (STV 1.0 0.9091)) +(: cnet_isa_0c87154b91 (IsA self_torture distress) (STV 1.0 0.9091)) +(: cnet_isa_faf24e2ff1 (IsA selfish_person unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_229980ba22 (IsA selfishness stinginess) (STV 1.0 0.9091)) +(: cnet_isa_56a3109bee (IsA selflessness cooperation) (STV 1.0 0.9091)) +(: cnet_isa_0a3a77ddbd (IsA selfsameness identity) (STV 1.0 0.9091)) +(: cnet_isa_c4d0dbb4be (IsA seljuk dynasty) (STV 1.0 0.9091)) +(: cnet_isa_69c6cb06e0 (IsA selkup samoyedic) (STV 1.0 0.9091)) +(: cnet_isa_10c6c280a6 (IsA sell sale) (STV 1.0 0.9091)) +(: cnet_isa_1bb1de170c (IsA sell_by_date date) (STV 1.0 0.9091)) +(: cnet_isa_c8d1447c53 (IsA seller_s_market market) (STV 1.0 0.9091)) +(: cnet_isa_21b281069e (IsA seller merchant) (STV 1.0 0.9091)) +(: cnet_isa_bf2eb4c94b (IsA selling commerce) (STV 1.0 0.9091)) +(: cnet_isa_b85070c877 (IsA selling_agent seller) (STV 1.0 0.9091)) +(: cnet_isa_170a98ad42 (IsA selling_point point) (STV 1.0 0.9091)) +(: cnet_isa_6e049ca2d9 (IsA selling_race horse_race) (STV 1.0 0.9091)) +(: cnet_isa_8cc53dfb66 (IsA selloff sale) (STV 1.0 0.9091)) +(: cnet_isa_ee8acbe5d2 (IsA sellout selling) (STV 1.0 0.9091)) +(: cnet_isa_81f14a034f (IsA sellout treachery) (STV 1.0 0.9091)) +(: cnet_isa_ce44ff10ae (IsA sellout social_event) (STV 1.0 0.9091)) +(: cnet_isa_eb2a6998f8 (IsA sellout bad_person) (STV 1.0 0.9091)) +(: cnet_isa_9695fcb893 (IsA selsyn system) (STV 1.0 0.9091)) +(: cnet_isa_928c52d0db (IsA seltzer mineral_water) (STV 1.0 0.9091)) +(: cnet_isa_5071ed812c (IsA selvage border) (STV 1.0 0.9091)) +(: cnet_isa_f9d368a39e (IsA selvage edge) (STV 1.0 0.9091)) +(: cnet_isa_e7997b200d (IsA semantic_error software_error) (STV 1.0 0.9091)) +(: cnet_isa_1d6a40ade0 (IsA semantic_memory long_term_memory) (STV 1.0 0.9091)) +(: cnet_isa_f5ea8ba3b0 (IsA semantic_relation linguistic_relation) (STV 1.0 0.9091)) +(: cnet_isa_e67d4f3dff (IsA semantic_role grammatical_category) (STV 1.0 0.9091)) +(: cnet_isa_22c964022d (IsA semanticist linguist) (STV 1.0 0.9091)) +(: cnet_isa_6841c0a299 (IsA semantic linguistic) (STV 1.0 0.9091)) +(: cnet_isa_3daba48698 (IsA semantic meaning) (STV 1.0 0.9091)) +(: cnet_isa_c7a0e182ed (IsA semaphore apparatus) (STV 1.0 0.9091)) +(: cnet_isa_3dc4f08277 (IsA semblance appearance) (STV 1.0 0.9091)) +(: cnet_isa_60d6c2f437 (IsA semen liquid_body_substance) (STV 1.0 0.9091)) +(: cnet_isa_3c220f14b4 (IsA semester school_term) (STV 1.0 0.9091)) +(: cnet_isa_8879047eab (IsA semester time_period) (STV 1.0 0.9091)) +(: cnet_isa_cc7a701a6a (IsA semester_hour credit) (STV 1.0 0.9091)) +(: cnet_isa_1f47746653 (IsA semi_abstraction painting) (STV 1.0 0.9091)) +(: cnet_isa_8dafaefc3a (IsA semi_climber vine) (STV 1.0 0.9091)) +(: cnet_isa_6ea5de39d4 (IsA semi_detached_house dwelling) (STV 1.0 0.9091)) +(: cnet_isa_5c101b63d2 (IsA semi_skimmed_milk milk) (STV 1.0 0.9091)) +(: cnet_isa_2b567470f3 (IsA semiautomatic gun) (STV 1.0 0.9454)) +(: cnet_isa_350a84f5f6 (IsA semiautomatic_firearm autoloader) (STV 1.0 0.9091)) +(: cnet_isa_f6fbdd28f7 (IsA semiautomatic_pistol pistol) (STV 1.0 0.9091)) +(: cnet_isa_28cd3bc22e (IsA semiautomatic_pistol semiautomatic_firearm) (STV 1.0 0.9091)) +(: cnet_isa_d92395c25f (IsA semicentennial anniversary) (STV 1.0 0.9091)) +(: cnet_isa_f93dc069c3 (IsA semicircle plane_figure) (STV 1.0 0.9091)) +(: cnet_isa_4189fcf0ce (IsA semicircular_canal sense_organ) (STV 1.0 0.9091)) +(: cnet_isa_1ffaed13f7 (IsA semicolon punctuation) (STV 1.0 0.9091)) +(: cnet_isa_d2f44f926d (IsA semicoma unconsciousness) (STV 1.0 0.9091)) +(: cnet_isa_db79ddd5f3 (IsA semiconductor conductor) (STV 1.0 0.9091)) +(: cnet_isa_652f16bdd7 (IsA semiconductor_device conductor) (STV 1.0 0.9091)) +(: cnet_isa_64190e8dce (IsA semidarkness dark) (STV 1.0 0.9091)) +(: cnet_isa_5631431878 (IsA semidesert geographical_area) (STV 1.0 0.9091)) +(: cnet_isa_504ca459d3 (IsA semidiameter radius) (STV 1.0 0.9091)) +(: cnet_isa_4ee6c2f21d (IsA semifinal match) (STV 1.0 0.9091)) +(: cnet_isa_26983925d2 (IsA semifinalist rival) (STV 1.0 0.9091)) +(: cnet_isa_fa5344ccf3 (IsA semifluidity thickness) (STV 1.0 0.9091)) +(: cnet_isa_ac9c839d46 (IsA semigloss paint) (STV 1.0 0.9091)) +(: cnet_isa_958e221552 (IsA semilunar_valve heart_valve) (STV 1.0 0.9091)) +(: cnet_isa_3fef115a03 (IsA semimajor_axis axis) (STV 1.0 0.9091)) +(: cnet_isa_6148aa96d0 (IsA semiminor_axis axis) (STV 1.0 0.9091)) +(: cnet_isa_32a490b1b4 (IsA semimonthly sery) (STV 1.0 0.9091)) +(: cnet_isa_ce7804d011 (IsA seminal_duct duct) (STV 1.0 0.9091)) +(: cnet_isa_261e490dc7 (IsA seminal_vesicle exocrine_gland) (STV 1.0 0.9091)) +(: cnet_isa_1f6feacf20 (IsA seminar course) (STV 1.0 0.9091)) +(: cnet_isa_7451b6d070 (IsA seminar conference) (STV 1.0 0.9091)) +(: cnet_isa_850a933bc2 (IsA seminarian student) (STV 1.0 0.9091)) +(: cnet_isa_0752310069 (IsA seminary private_school) (STV 1.0 0.9091)) +(: cnet_isa_e7b46a1e1f (IsA seminary religious_school) (STV 1.0 0.9091)) +(: cnet_isa_1861353652 (IsA seminiferous_tubule tubule) (STV 1.0 0.9091)) +(: cnet_isa_a4a84f5ef0 (IsA seminole muskhogean) (STV 1.0 0.9091)) +(: cnet_isa_2ebb585156 (IsA seminole muskogean) (STV 1.0 0.9091)) +(: cnet_isa_29b8941a66 (IsA seminoma carcinoma) (STV 1.0 0.9091)) +(: cnet_isa_8c8a3a567e (IsA semiotic philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_4be3581463 (IsA semipermeable_membrane membrane) (STV 1.0 0.9091)) +(: cnet_isa_619243dd1e (IsA semiprofessional professional) (STV 1.0 0.9091)) +(: cnet_isa_ae2bdeebd7 (IsA semite white_person) (STV 1.0 0.9091)) +(: cnet_isa_6a092cc6a4 (IsA semitic afroasiatic) (STV 1.0 0.9091)) +(: cnet_isa_c04ab35557 (IsA semitic_deity deity) (STV 1.0 0.9091)) +(: cnet_isa_e627c0416b (IsA semitone interval) (STV 1.0 0.9091)) +(: cnet_isa_923d2f2674 (IsA semitrailer trailer) (STV 1.0 0.9091)) +(: cnet_isa_f5690adc10 (IsA semitrance unconsciousness) (STV 1.0 0.9091)) +(: cnet_isa_2612771558 (IsA semivowel phone) (STV 1.0 0.9091)) +(: cnet_isa_5ce61eff5f (IsA semiweekly sery) (STV 1.0 0.9091)) +(: cnet_isa_c3574e1684 (IsA semolina flour) (STV 1.0 0.9091)) +(: cnet_isa_128cf0669c (IsA sen fractional_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_7e32d9340d (IsA senate legislature) (STV 1.0 0.9091)) +(: cnet_isa_0231cc59fc (IsA senate_campaign political_campaign) (STV 1.0 0.9091)) +(: cnet_isa_e88f8230d8 (IsA senator legislator) (STV 1.0 0.9091)) +(: cnet_isa_996684776e (IsA senatorship position) (STV 1.0 0.9091)) +(: cnet_isa_dbd23b8807 (IsA sendee recipient) (STV 1.0 0.9091)) +(: cnet_isa_90d015bbb0 (IsA sender communicator) (STV 1.0 0.9091)) +(: cnet_isa_022bd36069 (IsA sending causing) (STV 1.0 0.9091)) +(: cnet_isa_823334bd4b (IsA sending_anthrax_bacteria_through_mail terrorism) (STV 1.0 0.9091)) +(: cnet_isa_572027fe17 (IsA sene western_samoan_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_a01b07e270 (IsA seneca iroquoian) (STV 1.0 0.9091)) +(: cnet_isa_de6929c804 (IsA seneca iroquois) (STV 1.0 0.9091)) +(: cnet_isa_e514de1847 (IsA seneca_snakeroot milkwort) (STV 1.0 0.9091)) +(: cnet_isa_dc6758c80a (IsA senecio asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3e12bc19a4 (IsA senega milkwort) (STV 1.0 0.9091)) +(: cnet_isa_6df50b2180 (IsA senega root) (STV 1.0 0.9091)) +(: cnet_isa_d7df813ed4 (IsA senegal_gum gum_arabic) (STV 1.0 0.9091)) +(: cnet_isa_51e5c6250d (IsA senegalese african) (STV 1.0 0.9091)) +(: cnet_isa_15ede40e17 (IsA senegalese_franc franc) (STV 1.0 0.9091)) +(: cnet_isa_bf4569b6d4 (IsA senhor man) (STV 1.0 0.9091)) +(: cnet_isa_c71d712c3e (IsA senile_dementia dementia) (STV 1.0 0.9091)) +(: cnet_isa_1038d36787 (IsA senility oldness) (STV 1.0 0.9091)) +(: cnet_isa_b77a734305 (IsA senior undergraduate) (STV 1.0 0.9091)) +(: cnet_isa_3493a3217a (IsA senior_chief_petty_officer petty_officer) (STV 1.0 0.9091)) +(: cnet_isa_6e3ea4d467 (IsA senior_class class) (STV 1.0 0.9091)) +(: cnet_isa_03ac70542c (IsA senior_high_school secondary_school) (STV 1.0 0.9091)) +(: cnet_isa_b56a004224 (IsA senior_master_sergeant sergeant) (STV 1.0 0.9091)) +(: cnet_isa_0110099a40 (IsA senior_moment forgetfulness) (STV 1.0 0.9091)) +(: cnet_isa_cf38ca3b67 (IsA senior_vice_president vice_president) (STV 1.0 0.9091)) +(: cnet_isa_b62dfa95a8 (IsA seniority high_status) (STV 1.0 0.9091)) +(: cnet_isa_e2ae391b8d (IsA seniti tongan_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_9e75ab8cee (IsA senna shrub) (STV 1.0 0.9091)) +(: cnet_isa_ac8649311d (IsA sennenhund working_dog) (STV 1.0 0.9091)) +(: cnet_isa_e5a105b131 (IsA sennit cordage) (STV 1.0 0.9091)) +(: cnet_isa_08ae9de13e (IsA senor title) (STV 1.0 0.9091)) +(: cnet_isa_a9294881ad (IsA senora title) (STV 1.0 0.9091)) +(: cnet_isa_e1f28c41b8 (IsA senorita title) (STV 1.0 0.9091)) +(: cnet_isa_1add5a21cb (IsA sensation perception) (STV 1.0 0.9091)) +(: cnet_isa_a1aa5ab007 (IsA sensation stir) (STV 1.0 0.9091)) +(: cnet_isa_f3e59817e7 (IsA sensation excitement) (STV 1.0 0.9091)) +(: cnet_isa_676c0ad20d (IsA sensationalism journalese) (STV 1.0 0.9091)) +(: cnet_isa_d969b80451 (IsA sensationalism message) (STV 1.0 0.9091)) +(: cnet_isa_1216f7346b (IsA sensationalist publicist) (STV 1.0 0.9091)) +(: cnet_isa_faac2d31e0 (IsA sense appreciation) (STV 1.0 0.9091)) +(: cnet_isa_a46c9000e5 (IsA sense awareness) (STV 1.0 0.9091)) +(: cnet_isa_9791d30f61 (IsA sense faculty) (STV 1.0 0.9091)) +(: cnet_isa_f58cbf9fd3 (IsA sense meaning) (STV 1.0 0.9091)) +(: cnet_isa_2ebda7e199 (IsA sense_of_direction sense) (STV 1.0 0.9091)) +(: cnet_isa_11780c22a3 (IsA sense_of_meeting agreement) (STV 1.0 0.9091)) +(: cnet_isa_76aa1799a7 (IsA sense_of_responsibility sense) (STV 1.0 0.9091)) +(: cnet_isa_c91bd1bb09 (IsA sense_of_shame conscience) (STV 1.0 0.9091)) +(: cnet_isa_6861b72780 (IsA sense_organ organ) (STV 1.0 0.9091)) +(: cnet_isa_04903b5e0b (IsA sense_tagger tagging_program) (STV 1.0 0.9091)) +(: cnet_isa_ee557f3f51 (IsA sensibility consciousness) (STV 1.0 0.9091)) +(: cnet_isa_35da447a11 (IsA sensibility sensitivity) (STV 1.0 0.9091)) +(: cnet_isa_d3708834a5 (IsA sensibleness practicality) (STV 1.0 0.9091)) +(: cnet_isa_2e8d546764 (IsA sensibleness reasonableness) (STV 1.0 0.9091)) +(: cnet_isa_aa5b880aac (IsA sensing sensory_activity) (STV 1.0 0.9091)) +(: cnet_isa_59032aad17 (IsA sensitive_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_e12118372d (IsA sensitive_plant mimosa) (STV 1.0 0.9091)) +(: cnet_isa_026d9aa722 (IsA sensitivity ability) (STV 1.0 0.9091)) +(: cnet_isa_42ef9dd8ec (IsA sensitivity physical_property) (STV 1.0 0.9091)) +(: cnet_isa_eaf80329c9 (IsA sensitivity feeling) (STV 1.0 0.9091)) +(: cnet_isa_6fe30f3c0c (IsA sensitivity sense) (STV 1.0 0.9091)) +(: cnet_isa_84f9f66bd8 (IsA sensitivity susceptibility) (STV 1.0 0.9091)) +(: cnet_isa_50c4508356 (IsA sensitization process) (STV 1.0 0.9091)) +(: cnet_isa_35503b228a (IsA sensitization sensitivity) (STV 1.0 0.9091)) +(: cnet_isa_cce5944efb (IsA sensitizer activator) (STV 1.0 0.9091)) +(: cnet_isa_85061defed (IsA sensitizing immunization) (STV 1.0 0.9091)) +(: cnet_isa_0712d60b29 (IsA sensitometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_7e95f88e03 (IsA sensitometer photographic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_ba8c2723ff (IsA sensorimotor_area cortical_area) (STV 1.0 0.9091)) +(: cnet_isa_554b6b2f6f (IsA sensorineural_hearing_loss hearing_impairment) (STV 1.0 0.9091)) +(: cnet_isa_2e7700acd7 (IsA sensorium cortical_area) (STV 1.0 0.9091)) +(: cnet_isa_7881d5a52a (IsA sensory_activity activity) (STV 1.0 0.9091)) +(: cnet_isa_29c804a93a (IsA sensory_deprivation torture) (STV 1.0 0.9091)) +(: cnet_isa_ebf6613c0f (IsA sensory_epilepsy cortical_epilepsy) (STV 1.0 0.9091)) +(: cnet_isa_4419ca5401 (IsA sensory_nerve nerve) (STV 1.0 0.9091)) +(: cnet_isa_df2bdc0bea (IsA sensory_neuron nerve_cell) (STV 1.0 0.9091)) +(: cnet_isa_04e6455315 (IsA sensory_system system) (STV 1.0 0.9091)) +(: cnet_isa_132b23d9b0 (IsA sensualism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_7cb484a0c0 (IsA sensualist person) (STV 1.0 0.9091)) +(: cnet_isa_b7b33f2132 (IsA sensuality sexual_desire) (STV 1.0 0.9091)) +(: cnet_isa_49f92bda30 (IsA sensuousness sensibility) (STV 1.0 0.9091)) +(: cnet_isa_e746404222 (IsA sent estonian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_4e74ba211c (IsA sente lesotho_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_03d1e8e31c (IsA sentence string_of_word) (STV 1.0 0.9091)) +(: cnet_isa_1714c0bf75 (IsA sentence_stress stress) (STV 1.0 0.9091)) +(: cnet_isa_4679d878e7 (IsA sentence punishment) (STV 1.0 0.9091)) +(: cnet_isa_08812aaca8 (IsA sentential_function formula) (STV 1.0 0.9091)) +(: cnet_isa_10f604cbc0 (IsA sentience animateness) (STV 1.0 0.9091)) +(: cnet_isa_2fc207c345 (IsA sentiment feeling) (STV 1.0 0.9091)) +(: cnet_isa_02de3e322d (IsA sentimentalism mawkishness) (STV 1.0 0.9091)) +(: cnet_isa_be4cb1f3b4 (IsA sentimentalism formulation) (STV 1.0 0.9091)) +(: cnet_isa_66dc69368a (IsA sentimentalist person) (STV 1.0 0.9091)) +(: cnet_isa_34a4a1b445 (IsA sentimentality sentiment) (STV 1.0 0.9091)) +(: cnet_isa_6e8b80cfce (IsA sentimentalization idealization) (STV 1.0 0.9091)) +(: cnet_isa_b6e58e2d90 (IsA sentry_box shelter) (STV 1.0 0.9091)) +(: cnet_isa_f3db00fbff (IsA sepal floral_leaf) (STV 1.0 0.9091)) +(: cnet_isa_29b926bbd8 (IsA separability disjunction) (STV 1.0 0.9091)) +(: cnet_isa_e6695830ee (IsA separate garment) (STV 1.0 0.9091)) +(: cnet_isa_b1328dd70d (IsA separateness independence) (STV 1.0 0.9091)) +(: cnet_isa_cbb9c0a957 (IsA separation change_of_integrity) (STV 1.0 0.9091)) +(: cnet_isa_7705605252 (IsA separation group_action) (STV 1.0 0.9091)) +(: cnet_isa_12d247e731 (IsA separation sorting) (STV 1.0 0.9091)) +(: cnet_isa_e5cf742d3e (IsA separation change) (STV 1.0 0.9091)) +(: cnet_isa_4c2ad86b17 (IsA separation result) (STV 1.0 0.9091)) +(: cnet_isa_2d0df2b03b (IsA separation space) (STV 1.0 0.9091)) +(: cnet_isa_8c5014dd18 (IsA separation state) (STV 1.0 0.9091)) +(: cnet_isa_49543691e6 (IsA separationism separation) (STV 1.0 0.9091)) +(: cnet_isa_36db400c29 (IsA separatism disposition) (STV 1.0 0.9091)) +(: cnet_isa_4c755d0eae (IsA separatist advocate) (STV 1.0 0.9091)) +(: cnet_isa_0d448128f6 (IsA sephardic_jew israelite) (STV 1.0 0.9091)) +(: cnet_isa_97e85635f3 (IsA sepia mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_f03b53e930 (IsA sepia pigment) (STV 1.0 0.9091)) +(: cnet_isa_a4bd90da0e (IsA sepiidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_8a4c7c5d68 (IsA sepsis infection) (STV 1.0 0.9091)) +(: cnet_isa_1f2466851b (IsA septal_defect congenital_heart_defect) (STV 1.0 0.9091)) +(: cnet_isa_b746a384a8 (IsA septation division) (STV 1.0 0.9091)) +(: cnet_isa_97267106f9 (IsA septectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_4997fc1b44 (IsA september gregorian_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_c3fa2e0775 (IsA september_elm elm) (STV 1.0 0.9091)) +(: cnet_isa_46d3112654 (IsA septet musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_c183e032db (IsA septet gathering) (STV 1.0 0.9091)) +(: cnet_isa_16fc8767d0 (IsA septet musical_organization) (STV 1.0 0.9091)) +(: cnet_isa_62e8cb8a25 (IsA septet set) (STV 1.0 0.9091)) +(: cnet_isa_abe663d5bb (IsA septic_tank tank) (STV 1.0 0.9091)) +(: cnet_isa_6de006d5a0 (IsA septicemic_plague plague) (STV 1.0 0.9091)) +(: cnet_isa_463770a239 (IsA septillion large_integer) (STV 1.0 0.9091)) +(: cnet_isa_690261e68c (IsA septobasidiaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_0a2ad1b776 (IsA septobasidium fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_9384cf352a (IsA septuagenarian oldster) (STV 1.0 0.9091)) +(: cnet_isa_47e9cb4a70 (IsA septuagesima christian_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_d4f09a0524 (IsA septum partition) (STV 1.0 0.9091)) +(: cnet_isa_831a7b2277 (IsA septum plant_organ) (STV 1.0 0.9091)) +(: cnet_isa_5a05cafc84 (IsA sequel addendum) (STV 1.0 0.9091)) +(: cnet_isa_4781b6b163 (IsA sequel result) (STV 1.0 0.9091)) +(: cnet_isa_59f05461e1 (IsA sequela abnormality) (STV 1.0 0.9091)) +(: cnet_isa_6fd7a8a433 (IsA sequella consequence) (STV 1.0 0.9091)) +(: cnet_isa_01c86ccd19 (IsA sequence film) (STV 1.0 0.9091)) +(: cnet_isa_346dca1487 (IsA sequence temporal_arrangement) (STV 1.0 0.9091)) +(: cnet_isa_a08990de58 (IsA sequence repeat) (STV 1.0 0.9091)) +(: cnet_isa_bf1389540d (IsA sequence sery) (STV 1.0 0.9091)) +(: cnet_isa_c4aca07def (IsA sequencer hardware) (STV 1.0 0.9091)) +(: cnet_isa_8a18ac0700 (IsA sequencer apparatus) (STV 1.0 0.9091)) +(: cnet_isa_5ebc7b88da (IsA sequestration appropriation) (STV 1.0 0.9091)) +(: cnet_isa_baf9d42140 (IsA sequestration writ) (STV 1.0 0.9091)) +(: cnet_isa_21515a5c4d (IsA sequestration chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_d91105dd38 (IsA sequin adornment) (STV 1.0 0.9091)) +(: cnet_isa_50880d1a75 (IsA sequoia cypress) (STV 1.0 0.9091)) +(: cnet_isa_38100b7fa3 (IsA sequoiadendron plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_24bde1e5fe (IsA serape shawl) (STV 1.0 0.9091)) +(: cnet_isa_2d18952480 (IsA seraph angel) (STV 1.0 0.9091)) +(: cnet_isa_5b0a24a1ef (IsA serb slav) (STV 1.0 0.9091)) +(: cnet_isa_b1525c5620 (IsA serbo_croat slavic) (STV 1.0 0.9091)) +(: cnet_isa_0c8c69eeb5 (IsA serenade song) (STV 1.0 0.9091)) +(: cnet_isa_8a2c45bc52 (IsA serendipity good_luck) (STV 1.0 0.9091)) +(: cnet_isa_1839d11270 (IsA sereness dryness) (STV 1.0 0.9091)) +(: cnet_isa_f4fc1c190d (IsA serenoa monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_95bb5b7bef (IsA serer west_african) (STV 1.0 0.9091)) +(: cnet_isa_76ab3b85ac (IsA serf thrall) (STV 1.0 0.9091)) +(: cnet_isa_cf4aefb525 (IsA serfdom bondage) (STV 1.0 0.9091)) +(: cnet_isa_0a367414fe (IsA serge fabric) (STV 1.0 0.9091)) +(: cnet_isa_ad8d9e9572 (IsA sergeant noncommissioned_officer) (STV 1.0 0.9091)) +(: cnet_isa_8a04858a3a (IsA sergeant_at_arm officeholder) (STV 1.0 0.9091)) +(: cnet_isa_41f848a17f (IsA sergeant_major damselfish) (STV 1.0 0.9091)) +(: cnet_isa_bc45c1ce20 (IsA sergeant_major sergeant) (STV 1.0 0.9091)) +(: cnet_isa_9c33a47e21 (IsA serger sewing_machine) (STV 1.0 0.9091)) +(: cnet_isa_bfc6100ca0 (IsA serial broadcast) (STV 1.0 0.9091)) +(: cnet_isa_d62b7e93c0 (IsA serial_killer murderer) (STV 1.0 0.9091)) +(: cnet_isa_b13271af26 (IsA serial_monogamy monogamy) (STV 1.0 0.9091)) +(: cnet_isa_daa3984074 (IsA serial_operation operation) (STV 1.0 0.9091)) +(: cnet_isa_826003db3c (IsA serial_port interface) (STV 1.0 0.9091)) +(: cnet_isa_7cd89e0db2 (IsA serial_processing data_processing) (STV 1.0 0.9091)) +(: cnet_isa_de19e62184 (IsA serialism music) (STV 1.0 0.9091)) +(: cnet_isa_55d3a3037e (IsA serialization publication) (STV 1.0 0.9091)) +(: cnet_isa_692df7818b (IsA sericea_lespedeza bush_clover) (STV 1.0 0.9091)) +(: cnet_isa_a4a7642782 (IsA sericocarpus asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_804766f04c (IsA sericulture production) (STV 1.0 0.9091)) +(: cnet_isa_885f14796c (IsA sericulture natural_process) (STV 1.0 0.9091)) +(: cnet_isa_1da89ba390 (IsA sericulturist manufacturer) (STV 1.0 0.9091)) +(: cnet_isa_36d882d7b3 (IsA sery periodical) (STV 1.0 0.9091)) +(: cnet_isa_ce0e064d68 (IsA sery connection) (STV 1.0 0.9091)) +(: cnet_isa_5ee80c9360 (IsA sery group) (STV 1.0 0.9091)) +(: cnet_isa_a64cf9ca6d (IsA sery ordering) (STV 1.0 0.9091)) +(: cnet_isa_e3cae2f3ed (IsA sery polynomial) (STV 1.0 0.9091)) +(: cnet_isa_953548326e (IsA sery contest) (STV 1.0 0.9091)) +(: cnet_isa_85a2ecdc80 (IsA sery_circuit circuit) (STV 1.0 0.9091)) +(: cnet_isa_e2d56c6f01 (IsA serif line) (STV 1.0 0.9091)) +(: cnet_isa_2962af1a3d (IsA serigraphy printmaking) (STV 1.0 0.9091)) +(: cnet_isa_d6678a8473 (IsA serin finch) (STV 1.0 0.9091)) +(: cnet_isa_ee41d2608a (IsA serine amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_33f512d510 (IsA serinus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_2526fa5dde (IsA seriocomedy comedy) (STV 1.0 0.9091)) +(: cnet_isa_457c214395 (IsA seriola fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_fc529e3b9a (IsA seriousness badness) (STV 1.0 0.9091)) +(: cnet_isa_686a2d942d (IsA seriousness trait) (STV 1.0 0.9091)) +(: cnet_isa_ce288e594f (IsA seriphidium asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_abbdaa83eb (IsA seriphus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_a40a358a92 (IsA serjeant_at_law barrister) (STV 1.0 0.9091)) +(: cnet_isa_558a9c43e2 (IsA sermon address) (STV 1.0 0.9091)) +(: cnet_isa_535f73d11a (IsA sermon lecture) (STV 1.0 0.9091)) +(: cnet_isa_568a8c74f8 (IsA serologist medical_scientist) (STV 1.0 0.9091)) +(: cnet_isa_73588e543f (IsA serology medical_science) (STV 1.0 0.9091)) +(: cnet_isa_138c016ad5 (IsA serotine vespertilian_bat) (STV 1.0 0.9091)) +(: cnet_isa_5b618ed887 (IsA serotonin neurotransmitter) (STV 1.0 0.9091)) +(: cnet_isa_ee1e1eac23 (IsA serotonin monoamine_neurotransmitter) (STV 1.0 0.9091)) +(: cnet_isa_cf30549a44 (IsA serous_membrane membrane) (STV 1.0 0.9091)) +(: cnet_isa_e631d01fef (IsA serow goat_antelope) (STV 1.0 0.9091)) +(: cnet_isa_e0925fe4df (IsA serpent cornet) (STV 1.0 0.9091)) +(: cnet_isa_ff1cfef218 (IsA serpent firework) (STV 1.0 0.9091)) +(: cnet_isa_0856a73141 (IsA serpente animal_order) (STV 1.0 0.9091)) +(: cnet_isa_c0fdb7e3db (IsA serranid_fish percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_9f4e62abaf (IsA serranidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_eb000abe12 (IsA serranus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_332604ffaa (IsA serrasalmus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_9d788f946a (IsA serrate_leaf leaf) (STV 1.0 0.9091)) +(: cnet_isa_c8a56d9d5a (IsA serrated_wrack brown_algae) (STV 1.0 0.9091)) +(: cnet_isa_242007b64d (IsA serratia_marcescen bacteria_specy) (STV 1.0 0.9091)) +(: cnet_isa_bd912b131f (IsA serration notch) (STV 1.0 0.9091)) +(: cnet_isa_30bffdb785 (IsA serration row) (STV 1.0 0.9091)) +(: cnet_isa_8982316bfe (IsA serration condition) (STV 1.0 0.9091)) +(: cnet_isa_e7e79f5526 (IsA serratula asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_193ccda755 (IsA serratus skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_34ea784be0 (IsA serratus_posterior_inferior posterior_serratus_muscle) (STV 1.0 0.9091)) +(: cnet_isa_bf8f32d490 (IsA serratus_posterior_superior posterior_serratus_muscle) (STV 1.0 0.9091)) +(: cnet_isa_02809b7742 (IsA sertoli_cell cell) (STV 1.0 0.9091)) +(: cnet_isa_016dd9b288 (IsA sertularia coelenterate_genus) (STV 1.0 0.9091)) +(: cnet_isa_bb3ccbea84 (IsA sertularian hydrozoan) (STV 1.0 0.9091)) +(: cnet_isa_da7f07c0b4 (IsA serum liquid_body_substance) (STV 1.0 0.9091)) +(: cnet_isa_510dfcc12c (IsA serum_albumin albumin) (STV 1.0 0.9091)) +(: cnet_isa_c28cf00139 (IsA serum_globulin globulin) (STV 1.0 0.9091)) +(: cnet_isa_89a3079284 (IsA serum_sickness allergy) (STV 1.0 0.9091)) +(: cnet_isa_e5a78e42c5 (IsA serval wildcat) (STV 1.0 0.9091)) +(: cnet_isa_20980b2698 (IsA servant worker) (STV 1.0 0.9091)) +(: cnet_isa_6547f1b6fe (IsA servant_girl servant) (STV 1.0 0.9091)) +(: cnet_isa_b18677af12 (IsA serve tennis_stroke) (STV 1.0 0.9091)) +(: cnet_isa_a4f900f62a (IsA server utensil) (STV 1.0 0.9091)) +(: cnet_isa_b2a4eb4042 (IsA server computer) (STV 1.0 0.9091)) +(: cnet_isa_d042419f72 (IsA server player) (STV 1.0 0.9091)) +(: cnet_isa_3b5504433c (IsA service accommodation) (STV 1.0 0.9091)) +(: cnet_isa_5b82c60847 (IsA service aid) (STV 1.0 0.9091)) +(: cnet_isa_b8e17c92ff (IsA service delivery) (STV 1.0 0.9091)) +(: cnet_isa_a004974355 (IsA service employment) (STV 1.0 0.9091)) +(: cnet_isa_0278fcc15d (IsA service religious_ceremony) (STV 1.0 0.9091)) +(: cnet_isa_be5e96467b (IsA service work) (STV 1.0 0.9091)) +(: cnet_isa_5ad0e90197 (IsA service tableware) (STV 1.0 0.9091)) +(: cnet_isa_a203b7719b (IsA service activity) (STV 1.0 0.9091)) +(: cnet_isa_a4e4936486 (IsA service company) (STV 1.0 0.9091)) +(: cnet_isa_d1a8b58f98 (IsA service_agency agency) (STV 1.0 0.9091)) +(: cnet_isa_3b665405b7 (IsA service_area topographic_point) (STV 1.0 0.9091)) +(: cnet_isa_7a43ed1c0e (IsA service_book sacred_text) (STV 1.0 0.9091)) +(: cnet_isa_77fe073728 (IsA service_break victory) (STV 1.0 0.9091)) +(: cnet_isa_6233600a7e (IsA service_call trip) (STV 1.0 0.9091)) +(: cnet_isa_d61416976a (IsA service_charge charge) (STV 1.0 0.9091)) +(: cnet_isa_3b1526def6 (IsA service_club center) (STV 1.0 0.9091)) +(: cnet_isa_d11500ebbb (IsA service_club club) (STV 1.0 0.9091)) +(: cnet_isa_5bafdab7e0 (IsA service_contract contract) (STV 1.0 0.9091)) +(: cnet_isa_c7035a54c3 (IsA service_cutback cutback) (STV 1.0 0.9091)) +(: cnet_isa_308e3f9183 (IsA service_department business_department) (STV 1.0 0.9091)) +(: cnet_isa_a3bf8d1d4d (IsA service_door entrance) (STV 1.0 0.9091)) +(: cnet_isa_2e4690d974 (IsA service_industry industry) (STV 1.0 0.9091)) +(: cnet_isa_1ad4b7c45d (IsA service_line line) (STV 1.0 0.9091)) +(: cnet_isa_1ebf534164 (IsA service_staff staff) (STV 1.0 0.9091)) +(: cnet_isa_040114bb24 (IsA service_station station) (STV 1.0 0.9091)) +(: cnet_isa_ce217821ab (IsA service_stripe insignia) (STV 1.0 0.9091)) +(: cnet_isa_23d52fe401 (IsA service_tree mountain_ash) (STV 1.0 0.9091)) +(: cnet_isa_99dc26e70d (IsA serviceability utility) (STV 1.0 0.9091)) +(: cnet_isa_3703e88746 (IsA serviceman skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_28b241ac7f (IsA servicing coupling) (STV 1.0 0.9091)) +(: cnet_isa_1428ce9eca (IsA serving_cart handcart) (STV 1.0 0.9091)) +(: cnet_isa_1d1893a864 (IsA serving_dish dish) (STV 1.0 0.9091)) +(: cnet_isa_2ca2c1e7d2 (IsA servitor attendant) (STV 1.0 0.9091)) +(: cnet_isa_8e46b5e072 (IsA servitude bondage) (STV 1.0 0.9091)) +(: cnet_isa_2872c7e092 (IsA servo control_system) (STV 1.0 0.9091)) +(: cnet_isa_1ce7cf59af (IsA sesame herb) (STV 1.0 0.9091)) +(: cnet_isa_1a3a5eac34 (IsA sesame_oil vegetable_oil) (STV 1.0 0.9091)) +(: cnet_isa_6a30b667e5 (IsA sesame_seed flavorer) (STV 1.0 0.9091)) +(: cnet_isa_20bb663f8b (IsA sesamoid_bone bone) (STV 1.0 0.9091)) +(: cnet_isa_19c85c9e11 (IsA sesamum plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_dd945e98c7 (IsA sesbania legume) (STV 1.0 0.9091)) +(: cnet_isa_81514d78aa (IsA seseli rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_020cac8a5f (IsA sesotho sotho) (STV 1.0 0.9091)) +(: cnet_isa_c2b1ddc0f8 (IsA sesquicentennial anniversary) (STV 1.0 0.9091)) +(: cnet_isa_eadeac9b7f (IsA sesquipedalian polysyllable) (STV 1.0 0.9091)) +(: cnet_isa_5efe38b91c (IsA sesquipedality expressive_style) (STV 1.0 0.9091)) +(: cnet_isa_a780ee3c23 (IsA sessile_polyp polyp) (STV 1.0 0.9091)) +(: cnet_isa_6e0a56c3fd (IsA session meeting) (STV 1.0 0.9091)) +(: cnet_isa_c983a7641c (IsA session conference) (STV 1.0 0.9091)) +(: cnet_isa_11a5f7218f (IsA session_cookie cookie) (STV 1.0 0.9091)) +(: cnet_isa_60ebf4a7ad (IsA sestet stanza) (STV 1.0 0.9091)) +(: cnet_isa_8c34677f6c (IsA set collection_of_distinct_object) (STV 1.0 0.9339)) +(: cnet_isa_a18ec66a15 (IsA set collection_of_thing) (STV 1.0 0.9339)) +(: cnet_isa_3e31465d18 (IsA set exercise) (STV 1.0 0.9091)) +(: cnet_isa_c32519da54 (IsA set placement) (STV 1.0 0.9091)) +(: cnet_isa_fc0ec6d5ff (IsA set electronic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_eae9c42ea8 (IsA set descent) (STV 1.0 0.9091)) +(: cnet_isa_7e005bf41c (IsA set collection) (STV 1.0 0.9091)) +(: cnet_isa_a13319cc8f (IsA set social_group) (STV 1.0 0.9091)) +(: cnet_isa_da21010d40 (IsA set abstraction) (STV 1.0 0.9091)) +(: cnet_isa_f53fbede97 (IsA set cognitive_state) (STV 1.0 0.9091)) +(: cnet_isa_897260ad1e (IsA set playing_period) (STV 1.0 0.9091)) +(: cnet_isa_f76a78f714 (IsA set_back structure) (STV 1.0 0.9091)) +(: cnet_isa_824830175d (IsA set_decoration decoration) (STV 1.0 0.9091)) +(: cnet_isa_541ffa359a (IsA set_gun gun) (STV 1.0 0.9091)) +(: cnet_isa_149cc694aa (IsA set_piece scenery) (STV 1.0 0.9091)) +(: cnet_isa_f6f92848fe (IsA set_point point) (STV 1.0 0.9091)) +(: cnet_isa_6faacdee2f (IsA set_shot basketball_shot) (STV 1.0 0.9091)) +(: cnet_isa_c8290e6f10 (IsA set_square try_square) (STV 1.0 0.9091)) +(: cnet_isa_1117d38e85 (IsA set_theory pure_mathematic) (STV 1.0 0.9091)) +(: cnet_isa_bc8443d67e (IsA set_to fight) (STV 1.0 0.9091)) +(: cnet_isa_ab61773954 (IsA seta hair) (STV 1.0 0.9091)) +(: cnet_isa_04991f7380 (IsA seta podetium) (STV 1.0 0.9091)) +(: cnet_isa_cca4593a58 (IsA setaria monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6a186ac812 (IsA setophaga bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_081ab8e1e5 (IsA setscrew screw) (STV 1.0 0.9091)) +(: cnet_isa_9a88885694 (IsA settee sofa) (STV 1.0 0.9091)) +(: cnet_isa_a3e71dd621 (IsA setter sporting_dog) (STV 1.0 0.9091)) +(: cnet_isa_d63cc316cd (IsA setting environment) (STV 1.0 0.9091)) +(: cnet_isa_d0d1cf621b (IsA setting position) (STV 1.0 0.9091)) +(: cnet_isa_94b7458d22 (IsA settle bench) (STV 1.0 0.9091)) +(: cnet_isa_299cd3eb9f (IsA settlement decision_making) (STV 1.0 0.9091)) +(: cnet_isa_32c09f436f (IsA settlement agreement) (STV 1.0 0.9091)) +(: cnet_isa_ba4957ae8c (IsA settlement geographical_area) (STV 1.0 0.9091)) +(: cnet_isa_7f3dfe823e (IsA settlement_house center) (STV 1.0 0.9091)) +(: cnet_isa_14b4cd4aea (IsA settler clerk) (STV 1.0 0.9091)) +(: cnet_isa_3c16c4c47e (IsA settler migrant) (STV 1.0 0.9091)) +(: cnet_isa_875bab7c25 (IsA settler negotiator) (STV 1.0 0.9091)) +(: cnet_isa_5622958134 (IsA settling sinking) (STV 1.0 0.9091)) +(: cnet_isa_0c71132e1a (IsA settlor donor) (STV 1.0 0.9091)) +(: cnet_isa_f2bbdead5c (IsA setup manner) (STV 1.0 0.9091)) +(: cnet_isa_fc1c783675 (IsA seven number) (STV 1.0 0.9339)) +(: cnet_isa_84dc9537e3 (IsA seven digit) (STV 1.0 0.9091)) +(: cnet_isa_416f4bb2e3 (IsA seven_sea body_of_water) (STV 1.0 0.9091)) +(: cnet_isa_b95ffba95e (IsA seven_spot spot) (STV 1.0 0.9091)) +(: cnet_isa_d39f7264de (IsA seven_up all_four) (STV 1.0 0.9091)) +(: cnet_isa_8fb1bf9817 (IsA seven_wonder_of_ancient_world memorial) (STV 1.0 0.9091)) +(: cnet_isa_65236c6f6f (IsA seventeen large_integer) (STV 1.0 0.9091)) +(: cnet_isa_ecabee6811 (IsA seventeen_year_locust cicada) (STV 1.0 0.9091)) +(: cnet_isa_09b49acab1 (IsA seventeenth rank) (STV 1.0 0.9091)) +(: cnet_isa_62383c00b5 (IsA seventh interval) (STV 1.0 0.9091)) +(: cnet_isa_2ff6fb7d1c (IsA seventh rank) (STV 1.0 0.9091)) +(: cnet_isa_09d269c471 (IsA seventh_chord chord) (STV 1.0 0.9091)) +(: cnet_isa_387b3832d8 (IsA seventh_day_adventism adventism) (STV 1.0 0.9091)) +(: cnet_isa_2faf06386f (IsA seventh_day_of_week saturday) (STV 1.0 0.9091)) +(: cnet_isa_c17481cfdd (IsA seventh_month_of_year july) (STV 1.0 0.9091)) +(: cnet_isa_feb4fae474 (IsA seventy decade) (STV 1.0 0.9091)) +(: cnet_isa_ecd67d3127 (IsA seventy time_of_life) (STV 1.0 0.9091)) +(: cnet_isa_92004ea866 (IsA seventieth rank) (STV 1.0 0.9091)) +(: cnet_isa_6a37984c5a (IsA seventy large_integer) (STV 1.0 0.9091)) +(: cnet_isa_c159cbd983 (IsA seventy_eight large_integer) (STV 1.0 0.9091)) +(: cnet_isa_5ee70346ec (IsA severable_contract contract) (STV 1.0 0.9091)) +(: cnet_isa_0fae4e9fe9 (IsA severalty ownership) (STV 1.0 0.9091)) +(: cnet_isa_b46d8a6139 (IsA severance cut) (STV 1.0 0.9091)) +(: cnet_isa_8b1fcaab23 (IsA severance_agreement agreement) (STV 1.0 0.9091)) +(: cnet_isa_11888f0343 (IsA severe_acute_respiratory_syndrome respiratory_disease) (STV 1.0 0.9091)) +(: cnet_isa_7b711f3fad (IsA severe_combined_immunodeficiency immunodeficiency) (STV 1.0 0.9091)) +(: cnet_isa_c5f17f1550 (IsA severe_combined_immunodeficiency monogenic_disorder) (STV 1.0 0.9091)) +(: cnet_isa_404cc18569 (IsA severity sternness) (STV 1.0 0.9091)) +(: cnet_isa_76bcf729ad (IsA sewage waste) (STV 1.0 0.9091)) +(: cnet_isa_103f34acfc (IsA sewage_disposal disposal) (STV 1.0 0.9091)) +(: cnet_isa_453712044e (IsA sewage_disposal_plant plant) (STV 1.0 0.9091)) +(: cnet_isa_283d7c9777 (IsA sewage_farm farm) (STV 1.0 0.9091)) +(: cnet_isa_84443ef9a7 (IsA sewage_system facility) (STV 1.0 0.9091)) +(: cnet_isa_b1a07c14fa (IsA sewer drain) (STV 1.0 0.9091)) +(: cnet_isa_cc8acb093e (IsA sewer needleworker) (STV 1.0 0.9091)) +(: cnet_isa_89e12c4a37 (IsA sewer_gas gas) (STV 1.0 0.9091)) +(: cnet_isa_f567d55f4a (IsA sewer_main main) (STV 1.0 0.9091)) +(: cnet_isa_2fd4a1f8b6 (IsA sewer_rat brown_rat) (STV 1.0 0.9091)) +(: cnet_isa_f81a7fefd9 (IsA sewing craft) (STV 1.0 0.9339)) +(: cnet_isa_4ed5c0a2f6 (IsA sewing hobby) (STV 1.0 0.9454)) +(: cnet_isa_b3409daa89 (IsA sewing handicraft) (STV 1.0 0.9091)) +(: cnet_isa_d7c8e8979b (IsA sewing needlework) (STV 1.0 0.9091)) +(: cnet_isa_9bad1ffe78 (IsA sewing_basket workbasket) (STV 1.0 0.9091)) +(: cnet_isa_a68e7e0fb6 (IsA sewing_kit kit) (STV 1.0 0.9091)) +(: cnet_isa_306e904e20 (IsA sewing_machine home_appliance) (STV 1.0 0.9091)) +(: cnet_isa_e0f2686cb9 (IsA sewing_machine textile_machine) (STV 1.0 0.9091)) +(: cnet_isa_ff4b7f5cac (IsA sewing_machine_operator sewer) (STV 1.0 0.9091)) +(: cnet_isa_1db684ce68 (IsA sewing_needle needle) (STV 1.0 0.9091)) +(: cnet_isa_21c18a27d8 (IsA sewing_room room) (STV 1.0 0.9091)) +(: cnet_isa_c2c1c7da81 (IsA sex activity) (STV 1.0 0.9791)) +(: cnet_isa_879dd4324b (IsA sex biological_function) (STV 1.0 0.9339)) +(: cnet_isa_fe4f9e7059 (IsA sex enjoyable_activity) (STV 1.0 0.9608)) +(: cnet_isa_792a0e7248 (IsA sex good_thing) (STV 1.0 0.9677)) +(: cnet_isa_8bf2056c6c (IsA sex heart_pounding_experience) (STV 1.0 0.9339)) +(: cnet_isa_2a42c3d428 (IsA sex leisure_activity) (STV 1.0 0.9091)) +(: cnet_isa_18b90fb679 (IsA sex messy_activity) (STV 1.0 0.9339)) +(: cnet_isa_aa6643a158 (IsA sex not_often) (STV 1.0 0.9339)) +(: cnet_isa_e43ecb868a (IsA sex sweaty_activity) (STV 1.0 0.9524)) +(: cnet_isa_59f911af4c (IsA sex three_letter_word) (STV 1.0 0.9677)) +(: cnet_isa_6364f8bbaa (IsA sex way_to_earn_money) (STV 1.0 0.9091)) +(: cnet_isa_a59a5cd59e (IsA sex physiological_property) (STV 1.0 0.9091)) +(: cnet_isa_fd515654d5 (IsA sex feeling) (STV 1.0 0.9091)) +(: cnet_isa_f0c87c6bec (IsA sex class) (STV 1.0 0.9091)) +(: cnet_isa_25d90fc75a (IsA sex_appeal attractiveness) (STV 1.0 0.9091)) +(: cnet_isa_182a4bc1b3 (IsA sex_change change) (STV 1.0 0.9091)) +(: cnet_isa_16b4581b42 (IsA sex_change_operation operation) (STV 1.0 0.9091)) +(: cnet_isa_e3375a88be (IsA sex_characteristic feature) (STV 1.0 0.9091)) +(: cnet_isa_b8b369951d (IsA sex_chromatin chromatin) (STV 1.0 0.9091)) +(: cnet_isa_1fd0f4eb07 (IsA sex_chromosome chromosome) (STV 1.0 0.9091)) +(: cnet_isa_2be84eb849 (IsA sex_drive drive) (STV 1.0 0.9091)) +(: cnet_isa_a610f2ba4e (IsA sex_kitten girl) (STV 1.0 0.9091)) +(: cnet_isa_8fc46fac85 (IsA sex_linkage organic_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_7b3b4929f9 (IsA sex_linked_disorder chromosomal_aberration) (STV 1.0 0.9091)) +(: cnet_isa_80426d392a (IsA sex_manual manual) (STV 1.0 0.9091)) +(: cnet_isa_707b173ceb (IsA sex_object person) (STV 1.0 0.9091)) +(: cnet_isa_bc719fba9b (IsA sex_offender convict) (STV 1.0 0.9091)) +(: cnet_isa_d980d46018 (IsA sex_symbol person) (STV 1.0 0.9091)) +(: cnet_isa_c2a224882b (IsA sexagenarian oldster) (STV 1.0 0.9091)) +(: cnet_isa_905c9e7b8c (IsA sexcapade escapade) (STV 1.0 0.9091)) +(: cnet_isa_719740b907 (IsA sexism discrimination) (STV 1.0 0.9091)) +(: cnet_isa_e8c0cfba2d (IsA sexploitation exploitation) (STV 1.0 0.9091)) +(: cnet_isa_8751bd0934 (IsA sext canonical_hour) (STV 1.0 0.9091)) +(: cnet_isa_813d325347 (IsA sextant measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_d8090bceb7 (IsA sextant angular_unit) (STV 1.0 0.9091)) +(: cnet_isa_5628802aeb (IsA sextet musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_46e7170728 (IsA sextet gathering) (STV 1.0 0.9091)) +(: cnet_isa_201afe5769 (IsA sextet musical_organization) (STV 1.0 0.9091)) +(: cnet_isa_ad7d1e7bbe (IsA sextet set) (STV 1.0 0.9091)) +(: cnet_isa_6877d127fb (IsA sextillion large_integer) (STV 1.0 0.9091)) +(: cnet_isa_63a825bb38 (IsA sexton caretaker) (STV 1.0 0.9091)) +(: cnet_isa_5b10d8e863 (IsA sexton church_officer) (STV 1.0 0.9091)) +(: cnet_isa_99d9d0f1f8 (IsA sexual_activity bodily_process) (STV 1.0 0.9091)) +(: cnet_isa_5262c291e2 (IsA sexual_arousal arousal) (STV 1.0 0.9091)) +(: cnet_isa_7ce5bf19c4 (IsA sexual_assault statutory_offense) (STV 1.0 0.9091)) +(: cnet_isa_fe51b21790 (IsA sexual_attraction attraction) (STV 1.0 0.9091)) +(: cnet_isa_1da253b71c (IsA sexual_conquest seduction) (STV 1.0 0.9091)) +(: cnet_isa_b233944df1 (IsA sexual_desire desire) (STV 1.0 0.9091)) +(: cnet_isa_2f111c8888 (IsA sexual_discrimination sexism) (STV 1.0 0.9091)) +(: cnet_isa_903a279574 (IsA sexual_harassment harassment) (STV 1.0 0.9091)) +(: cnet_isa_3afe2bd010 (IsA sexual_immorality evil) (STV 1.0 0.9091)) +(: cnet_isa_6fc88c9bb4 (IsA sexual_intercourse sexual_activity) (STV 1.0 0.9091)) +(: cnet_isa_85bc0200e4 (IsA sexual_love sexual_activity) (STV 1.0 0.9091)) +(: cnet_isa_ac723fe47e (IsA sexual_pleasure pleasure) (STV 1.0 0.9091)) +(: cnet_isa_b8874d4d2e (IsA sexual_relationship relationship) (STV 1.0 0.9091)) +(: cnet_isa_3ce22cdccf (IsA sexual_reproduction reproduction) (STV 1.0 0.9091)) +(: cnet_isa_551acc1b30 (IsA sexually_transmitted_disease germ) (STV 1.0 0.9091)) +(: cnet_isa_0388e02532 (IsA sexually_transmitted_disease infection) (STV 1.0 0.9091)) +(: cnet_isa_8599c8636f (IsA sexually_transmitted_disease transmitted_disease) (STV 1.0 0.9091)) +(: cnet_isa_d381e82160 (IsA seychelle_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_6c0a7a7f69 (IsA seychelle_rupee seychelle_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_159c8923bf (IsA seychellois aborigine) (STV 1.0 0.9091)) +(: cnet_isa_45a05023cf (IsA sforzando chord) (STV 1.0 0.9091)) +(: cnet_isa_c82975241e (IsA sforzando musical_notation) (STV 1.0 0.9091)) +(: cnet_isa_dd2f4b38d3 (IsA sgraffito decoration) (STV 1.0 0.9091)) +(: cnet_isa_0c2e0607f7 (IsA sha_ban islamic_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_2197d85bc5 (IsA shabbiness inelegance) (STV 1.0 0.9091)) +(: cnet_isa_5582839d8f (IsA shackle bar) (STV 1.0 0.9091)) +(: cnet_isa_594b4b87e8 (IsA shackle restraint) (STV 1.0 0.9091)) +(: cnet_isa_825de2e277 (IsA shad clupeid_fish) (STV 1.0 0.9091)) +(: cnet_isa_a3c258290f (IsA shad food_fish) (STV 1.0 0.9091)) +(: cnet_isa_57ab91ff14 (IsA shad fish) (STV 1.0 0.9091)) +(: cnet_isa_2c3c0df188 (IsA shad_roe roe) (STV 1.0 0.9091)) +(: cnet_isa_0d5fa6a4c6 (IsA shade protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_360790e942 (IsA shade representation) (STV 1.0 0.9091)) +(: cnet_isa_c90a07a8d8 (IsA shade color) (STV 1.0 0.9091)) +(: cnet_isa_a25b4854f4 (IsA shade inferiority) (STV 1.0 0.9091)) +(: cnet_isa_1f661d884a (IsA shade semidarkness) (STV 1.0 0.9091)) +(: cnet_isa_ab68186887 (IsA shade_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_f80ba474c8 (IsA shade sunglass) (STV 1.0 0.9091)) +(: cnet_isa_ffceb4ec23 (IsA shade reminder) (STV 1.0 0.9091)) +(: cnet_isa_3004e35007 (IsA shadiness unlawfulness) (STV 1.0 0.9091)) +(: cnet_isa_fb134029d1 (IsA shading gradation) (STV 1.0 0.9091)) +(: cnet_isa_2b555a38ad (IsA shading marking) (STV 1.0 0.9091)) +(: cnet_isa_df06d1a882 (IsA shadow recourse) (STV 1.0 0.9091)) +(: cnet_isa_eee24ce65b (IsA shadow foreboding) (STV 1.0 0.9091)) +(: cnet_isa_97d605b28e (IsA shadow follower) (STV 1.0 0.9091)) +(: cnet_isa_144f259c4a (IsA shadow presence) (STV 1.0 0.9091)) +(: cnet_isa_cea38b23dc (IsA shadow shade) (STV 1.0 0.9091)) +(: cnet_isa_1cf13ee4a8 (IsA shadow_box box) (STV 1.0 0.9091)) +(: cnet_isa_196584623b (IsA shadow_cabinet cabinet) (STV 1.0 0.9091)) +(: cnet_isa_0c4b0145df (IsA shadowboxing exercise) (STV 1.0 0.9091)) +(: cnet_isa_be0cf53ad4 (IsA shadowing pursuit) (STV 1.0 0.9091)) +(: cnet_isa_aa967169c0 (IsA shaft upright) (STV 1.0 0.9091)) +(: cnet_isa_23334c1e7e (IsA shaft passage) (STV 1.0 0.9091)) +(: cnet_isa_eba066b2be (IsA shaft passageway) (STV 1.0 0.9091)) +(: cnet_isa_a4947005c8 (IsA shaft rod) (STV 1.0 0.9091)) +(: cnet_isa_ff8a45c863 (IsA shaft line) (STV 1.0 0.9091)) +(: cnet_isa_d5b382b63c (IsA shag social_dancing) (STV 1.0 0.9091)) +(: cnet_isa_7275b2b4d6 (IsA shag fabric) (STV 1.0 0.9091)) +(: cnet_isa_a48b4d9852 (IsA shag tangle) (STV 1.0 0.9091)) +(: cnet_isa_a3363743b7 (IsA shag tobacco) (STV 1.0 0.9091)) +(: cnet_isa_c5c942f057 (IsA shag_rug rug) (STV 1.0 0.9091)) +(: cnet_isa_1620c17b28 (IsA shagbark hickory) (STV 1.0 0.9091)) +(: cnet_isa_1a50a70d76 (IsA shagginess roughness) (STV 1.0 0.9091)) +(: cnet_isa_167ff8c4a4 (IsA shagginess sloppiness) (STV 1.0 0.9091)) +(: cnet_isa_a57004fcab (IsA shaggy_dog_story joke) (STV 1.0 0.9091)) +(: cnet_isa_e796094722 (IsA shaggymane agaric) (STV 1.0 0.9091)) +(: cnet_isa_c62624685b (IsA shah_of_iran sovereign) (STV 1.0 0.9091)) +(: cnet_isa_d51cc03a5a (IsA shahadah pillar_of_islam) (STV 1.0 0.9091)) +(: cnet_isa_5bf94bd6fb (IsA shahadah witness) (STV 1.0 0.9091)) +(: cnet_isa_0de11f6533 (IsA shahaptian penutian) (STV 1.0 0.9091)) +(: cnet_isa_bfef19976b (IsA shaheed martyr) (STV 1.0 0.9091)) +(: cnet_isa_b2b4deda75 (IsA shaitan genie) (STV 1.0 0.9091)) +(: cnet_isa_99de41f1ab (IsA shakedown extortion) (STV 1.0 0.9091)) +(: cnet_isa_d8e010ccb3 (IsA shakedown search) (STV 1.0 0.9091)) +(: cnet_isa_88528d86b7 (IsA shakedown adjustment) (STV 1.0 0.9091)) +(: cnet_isa_8a1bab2a97 (IsA shakeout economic_condition) (STV 1.0 0.9091)) +(: cnet_isa_161e01120b (IsA shaker container) (STV 1.0 0.9091)) +(: cnet_isa_4726199a71 (IsA shaker christian) (STV 1.0 0.9091)) +(: cnet_isa_4cb0020842 (IsA shaker person) (STV 1.0 0.9091)) +(: cnet_isa_8a59c4aa20 (IsA shaker sect) (STV 1.0 0.9091)) +(: cnet_isa_9568c09827 (IsA shakespeare great_dramatist) (STV 1.0 0.9091)) +(: cnet_isa_f148ddf8ba (IsA shakespearean scholar) (STV 1.0 0.9091)) +(: cnet_isa_a37990fc13 (IsA shakespearean_sonnet sonnet) (STV 1.0 0.9091)) +(: cnet_isa_f57f33030c (IsA shakiness instability) (STV 1.0 0.9091)) +(: cnet_isa_45a8869754 (IsA shaking agitation) (STV 1.0 0.9091)) +(: cnet_isa_2cbcb6a075 (IsA shaking_hand form_of_greeting_among_human) (STV 1.0 0.9091)) +(: cnet_isa_deb9ae079d (IsA shaking_hand important_social_practice) (STV 1.0 0.9091)) +(: cnet_isa_e3c91c80b7 (IsA shaktism hinduism) (STV 1.0 0.9091)) +(: cnet_isa_3ce08965f6 (IsA shaktism sect) (STV 1.0 0.9091)) +(: cnet_isa_32c9860353 (IsA shaktist hindoo) (STV 1.0 0.9091)) +(: cnet_isa_909f528afa (IsA shale sedimentary_rock) (STV 1.0 0.9091)) +(: cnet_isa_6596203836 (IsA shale_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_82f318e68e (IsA shallot onion) (STV 1.0 0.9091)) +(: cnet_isa_50f11cc7c9 (IsA shallot bulb) (STV 1.0 0.9091)) +(: cnet_isa_65b5011b10 (IsA shallow_fording ford) (STV 1.0 0.9091)) +(: cnet_isa_b751e62c28 (IsA shallowness depth) (STV 1.0 0.9091)) +(: cnet_isa_227982d3f8 (IsA shallu grain_sorghum) (STV 1.0 0.9091)) +(: cnet_isa_09d272d4e4 (IsA shaman priest) (STV 1.0 0.9091)) +(: cnet_isa_ab2866568e (IsA shamanism religion) (STV 1.0 0.9091)) +(: cnet_isa_51596c07da (IsA shamble walk) (STV 1.0 0.9091)) +(: cnet_isa_6cd84d1bb2 (IsA shamble disorderliness) (STV 1.0 0.9091)) +(: cnet_isa_135896e25f (IsA shame emotion) (STV 1.0 0.9339)) +(: cnet_isa_d039eaeeff (IsA shame feeling) (STV 1.0 0.9091)) +(: cnet_isa_f7bc97752b (IsA shame dishonor) (STV 1.0 0.9091)) +(: cnet_isa_4a37b657ce (IsA shamefacedness embarrassment) (STV 1.0 0.9091)) +(: cnet_isa_d42ec2a3eb (IsA shamefulness unworthiness) (STV 1.0 0.9091)) +(: cnet_isa_7411434b60 (IsA shamelessness boldness) (STV 1.0 0.9091)) +(: cnet_isa_8cb703f0f0 (IsA shampoo hair_care) (STV 1.0 0.9091)) +(: cnet_isa_2e1e168988 (IsA shampoo cleansing_agent) (STV 1.0 0.9091)) +(: cnet_isa_5ac919af9b (IsA shamrock_pea herb) (STV 1.0 0.9091)) +(: cnet_isa_d00f8c7c21 (IsA shandygaff drink) (STV 1.0 0.9091)) +(: cnet_isa_892b88a449 (IsA shang dynasty) (STV 1.0 0.9091)) +(: cnet_isa_5e51bf0966 (IsA shanghaier kidnapper) (STV 1.0 0.9091)) +(: cnet_isa_46616757d0 (IsA shank_s_mare leg) (STV 1.0 0.9091)) +(: cnet_isa_84b735a7ab (IsA shank golf_stroke) (STV 1.0 0.9091)) +(: cnet_isa_b2ac9ca672 (IsA shank cylinder) (STV 1.0 0.9091)) +(: cnet_isa_6439585f36 (IsA shank part) (STV 1.0 0.9091)) +(: cnet_isa_cff8c7b966 (IsA shank body_part) (STV 1.0 0.9091)) +(: cnet_isa_d4fc5094ef (IsA shank cut) (STV 1.0 0.9091)) +(: cnet_isa_4118827676 (IsA shanny blenny) (STV 1.0 0.9091)) +(: cnet_isa_ccd1df5ce5 (IsA shantung fabric) (STV 1.0 0.9091)) +(: cnet_isa_e745950483 (IsA shantytown slum) (STV 1.0 0.9091)) +(: cnet_isa_88836d665c (IsA shape geometric_figure) (STV 1.0 0.9091)) +(: cnet_isa_8ebd064f7d (IsA shape attribute) (STV 1.0 0.9091)) +(: cnet_isa_fc45a047ed (IsA shape spatial_property) (STV 1.0 0.9091)) +(: cnet_isa_d6503e7eab (IsA shape concretism) (STV 1.0 0.9091)) +(: cnet_isa_c2e502cbda (IsA shape_constancy constancy) (STV 1.0 0.9091)) +(: cnet_isa_8b707c413c (IsA shape_up employment) (STV 1.0 0.9091)) +(: cnet_isa_58b62e5df3 (IsA shapelessness unattractiveness) (STV 1.0 0.9091)) +(: cnet_isa_0d91af8c1f (IsA shapelessness amorphous_shape) (STV 1.0 0.9091)) +(: cnet_isa_9dd572c6fc (IsA shaper machine_tool) (STV 1.0 0.9091)) +(: cnet_isa_20c614c3aa (IsA shaping process) (STV 1.0 0.9091)) +(: cnet_isa_e8d8239ada (IsA shaping_tool tool) (STV 1.0 0.9091)) +(: cnet_isa_14780036da (IsA shard piece) (STV 1.0 0.9091)) +(: cnet_isa_e7665fb16f (IsA share asset) (STV 1.0 0.9091)) +(: cnet_isa_c2660928d0 (IsA share stock_certificate) (STV 1.0 0.9091)) +(: cnet_isa_4558668e5a (IsA sharecropper agricultural_laborer) (STV 1.0 0.9091)) +(: cnet_isa_d8348c0f42 (IsA shareholding property) (STV 1.0 0.9091)) +(: cnet_isa_32ee83eab9 (IsA shareware software) (STV 1.0 0.9091)) +(: cnet_isa_547dbfd119 (IsA shariah law) (STV 1.0 0.9091)) +(: cnet_isa_9646a02761 (IsA sharing distribution) (STV 1.0 0.9091)) +(: cnet_isa_9bce23cbbf (IsA sharing mutuality) (STV 1.0 0.9091)) +(: cnet_isa_0285bc9435 (IsA shark elasmobranch) (STV 1.0 0.9091)) +(: cnet_isa_22366ffd23 (IsA shark expert) (STV 1.0 0.9091)) +(: cnet_isa_1e168453df (IsA shark wrongdoer) (STV 1.0 0.9091)) +(: cnet_isa_ec907be967 (IsA shark_oil animal_oil) (STV 1.0 0.9091)) +(: cnet_isa_dd17fe7cb2 (IsA shark_repellent measure) (STV 1.0 0.9091)) +(: cnet_isa_db74b28911 (IsA sharkskin fabric) (STV 1.0 0.9091)) +(: cnet_isa_94d06dbc19 (IsA sharksucker remora) (STV 1.0 0.9091)) +(: cnet_isa_bfca9981eb (IsA sharp sewing_needle) (STV 1.0 0.9091)) +(: cnet_isa_3bbc55a785 (IsA sharp musical_notation) (STV 1.0 0.9091)) +(: cnet_isa_fb24238403 (IsA sharp_tailed_grouse grouse) (STV 1.0 0.9091)) +(: cnet_isa_bae9cb93ab (IsA sharp_tongue tongue) (STV 1.0 0.9091)) +(: cnet_isa_9e66e92bba (IsA sharpener implement) (STV 1.0 0.9091)) +(: cnet_isa_6a6acd8e81 (IsA sharpie sailboat) (STV 1.0 0.9091)) +(: cnet_isa_2877f06060 (IsA sharpness distressingness) (STV 1.0 0.9091)) +(: cnet_isa_3e012ec7b7 (IsA sharpness shape) (STV 1.0 0.9091)) +(: cnet_isa_70e2bf5b1a (IsA sharpshooter schooner) (STV 1.0 0.9091)) +(: cnet_isa_f619ed183c (IsA sharpshooter athlete) (STV 1.0 0.9091)) +(: cnet_isa_a931c9f1ed (IsA sharptail_mola ocean_sunfish) (STV 1.0 0.9091)) +(: cnet_isa_ba039e94d1 (IsA shasta shastan) (STV 1.0 0.9091)) +(: cnet_isa_76b9f1ca7e (IsA shasta hoka) (STV 1.0 0.9091)) +(: cnet_isa_d502aedfbf (IsA shasta_daisy composite) (STV 1.0 0.9091)) +(: cnet_isa_2245500844 (IsA shasta_salamander web_toed_salamander) (STV 1.0 0.9091)) +(: cnet_isa_30d0e73abd (IsA shastan hokan) (STV 1.0 0.9091)) +(: cnet_isa_41ecf21e07 (IsA shave depilation) (STV 1.0 0.9091)) +(: cnet_isa_126da9675a (IsA shaver razor) (STV 1.0 0.9091)) +(: cnet_isa_846c0f28a0 (IsA shaver man) (STV 1.0 0.9091)) +(: cnet_isa_c0a8eeca48 (IsA shavian supporter) (STV 1.0 0.9091)) +(: cnet_isa_ace8173d0f (IsA shaving_brush brush) (STV 1.0 0.9091)) +(: cnet_isa_9c9fba358c (IsA shaving_brush_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_a3cff373d5 (IsA shaving_cream soapsud) (STV 1.0 0.9091)) +(: cnet_isa_805e5b3522 (IsA shaving_cream toiletry) (STV 1.0 0.9091)) +(: cnet_isa_f8bf885700 (IsA shaving_foam foam) (STV 1.0 0.9091)) +(: cnet_isa_d2eeca2b7c (IsA shaving_foam toiletry) (STV 1.0 0.9091)) +(: cnet_isa_bb9cdd92cf (IsA shavous jewish_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_9c52fa59a9 (IsA shawl cloak) (STV 1.0 0.9091)) +(: cnet_isa_f93c9c268b (IsA shawm oboe) (STV 1.0 0.9091)) +(: cnet_isa_a047e9ea26 (IsA shawnee algonquian) (STV 1.0 0.9091)) +(: cnet_isa_71cc3d778e (IsA shawnee algonquin) (STV 1.0 0.9091)) +(: cnet_isa_7ee39c7441 (IsA shawnee_cake johnnycake) (STV 1.0 0.9091)) +(: cnet_isa_67bf5a5a58 (IsA shawwal islamic_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_056b230832 (IsA she_devil unpleasant_woman) (STV 1.0 0.9091)) +(: cnet_isa_f6e7cfd710 (IsA she_oak casuarina) (STV 1.0 0.9091)) +(: cnet_isa_a2297d2e0b (IsA shear edge_tool) (STV 1.0 0.9091)) +(: cnet_isa_3f5e7dadf3 (IsA shear scissor) (STV 1.0 0.9091)) +(: cnet_isa_eb5860c24a (IsA shear deformation) (STV 1.0 0.9091)) +(: cnet_isa_6f7407f896 (IsA shearer skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_c358bb6fcd (IsA shearer workman) (STV 1.0 0.9091)) +(: cnet_isa_4cdf06b16f (IsA shearing cut) (STV 1.0 0.9091)) +(: cnet_isa_9255a6b2a5 (IsA shearwater petrel) (STV 1.0 0.9091)) +(: cnet_isa_89f8f98610 (IsA sheath protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_85362b82e3 (IsA sheath covering) (STV 1.0 0.9091)) +(: cnet_isa_a5516ae3e0 (IsA sheathing protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_45e43ef4cb (IsA shebang system) (STV 1.0 0.9091)) +(: cnet_isa_27a01b6def (IsA shebat jewish_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_fa252baa60 (IsA shebeen tavern) (STV 1.0 0.9091)) +(: cnet_isa_f2998f5b4d (IsA shed place_to_store_lawn_equipment) (STV 1.0 0.9091)) +(: cnet_isa_b6b069f530 (IsA shed outbuilding) (STV 1.0 0.9091)) +(: cnet_isa_f15d4f95a7 (IsA shedder attacker) (STV 1.0 0.9091)) +(: cnet_isa_8f44855d32 (IsA shedding organic_process) (STV 1.0 0.9091)) +(: cnet_isa_b4f477a12f (IsA sheep animal) (STV 1.0 0.9091)) +(: cnet_isa_1131b274da (IsA sheep farm_animal) (STV 1.0 0.9091)) +(: cnet_isa_6094554f2b (IsA sheep bovid) (STV 1.0 0.9091)) +(: cnet_isa_d340931414 (IsA sheep follower) (STV 1.0 0.9091)) +(: cnet_isa_7ec874f3fb (IsA sheep simpleton) (STV 1.0 0.9091)) +(: cnet_isa_e6ea45a5e3 (IsA sheep_bell bell) (STV 1.0 0.9091)) +(: cnet_isa_d0cc38a539 (IsA sheep_botfly botfly) (STV 1.0 0.9091)) +(: cnet_isa_252c1a6e67 (IsA sheep_dip liquid) (STV 1.0 0.9091)) +(: cnet_isa_28770bb0d7 (IsA sheep_dip pesticide) (STV 1.0 0.9091)) +(: cnet_isa_a2943b05dc (IsA sheep_fescue grass) (STV 1.0 0.9091)) +(: cnet_isa_2eed063374 (IsA sheep_frog frog) (STV 1.0 0.9091)) +(: cnet_isa_89c8b8cfd6 (IsA sheep_ked louse_fly) (STV 1.0 0.9091)) +(: cnet_isa_743f8fee51 (IsA sheep_laurel kalmia) (STV 1.0 0.9091)) +(: cnet_isa_0344af0fca (IsA sheep_plant herb) (STV 1.0 0.9091)) +(: cnet_isa_2834e8d792 (IsA sheep_sorrel dock) (STV 1.0 0.9091)) +(: cnet_isa_bd1614d98a (IsA sheep_tick hard_tick) (STV 1.0 0.9091)) +(: cnet_isa_d4d5966517 (IsA sheepherder herder) (STV 1.0 0.9091)) +(: cnet_isa_2a3495e29a (IsA sheepman stockman) (STV 1.0 0.9091)) +(: cnet_isa_a60756eee4 (IsA sheepshank knot) (STV 1.0 0.9091)) +(: cnet_isa_427eaee235 (IsA sheepshead sparid) (STV 1.0 0.9091)) +(: cnet_isa_148f508a47 (IsA sheepshead_porgy porgy) (STV 1.0 0.9091)) +(: cnet_isa_402c304ad1 (IsA sheepshearing festival) (STV 1.0 0.9091)) +(: cnet_isa_79cd0fb349 (IsA sheepshearing shearing) (STV 1.0 0.9091)) +(: cnet_isa_36f753b2f9 (IsA sheepshearing season) (STV 1.0 0.9091)) +(: cnet_isa_7747d75dab (IsA sheepskin leather) (STV 1.0 0.9091)) +(: cnet_isa_a2bbf7df1a (IsA sheepskin_coat coat) (STV 1.0 0.9091)) +(: cnet_isa_c4b6dfd2d6 (IsA sheepwalk farm) (STV 1.0 0.9091)) +(: cnet_isa_13884fe292 (IsA sheet artifact) (STV 1.0 0.9091)) +(: cnet_isa_86e823197b (IsA sheet bed_linen) (STV 1.0 0.9091)) +(: cnet_isa_b0ad4df7b4 (IsA sheet paper) (STV 1.0 0.9091)) +(: cnet_isa_c0ac88dd7b (IsA sheet expanse) (STV 1.0 0.9091)) +(: cnet_isa_b1373ea8e9 (IsA sheet line) (STV 1.0 0.9091)) +(: cnet_isa_5140fa5a00 (IsA sheet_anchor anchor) (STV 1.0 0.9091)) +(: cnet_isa_ad22da3d02 (IsA sheet_bend hitch) (STV 1.0 0.9091)) +(: cnet_isa_5e3f1cbe73 (IsA sheet_iron plate_iron) (STV 1.0 0.9091)) +(: cnet_isa_f5528d45e4 (IsA sheet_lighting lightning) (STV 1.0 0.9091)) +(: cnet_isa_77635a95d6 (IsA sheet_metal sheet) (STV 1.0 0.9091)) +(: cnet_isa_a85da89b59 (IsA sheet_metal_work trade) (STV 1.0 0.9091)) +(: cnet_isa_bd41587333 (IsA sheet_music musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_eaf32d898f (IsA sheet_pile pile) (STV 1.0 0.9091)) +(: cnet_isa_abf32ac08c (IsA sheet_web spider_web) (STV 1.0 0.9091)) +(: cnet_isa_a3538559cb (IsA sheeting fabric) (STV 1.0 0.9091)) +(: cnet_isa_1f870412fb (IsA shegetz goy) (STV 1.0 0.9091)) +(: cnet_isa_91ccb65d26 (IsA sheik ruler) (STV 1.0 0.9091)) +(: cnet_isa_cbf67fa1f9 (IsA sheika wife) (STV 1.0 0.9091)) +(: cnet_isa_fa51af2cc7 (IsA sheikdom domain) (STV 1.0 0.9091)) +(: cnet_isa_5a1f6a6674 (IsA shekel israeli_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_fa55bd7408 (IsA sheldrake duck) (STV 1.0 0.9091)) +(: cnet_isa_ddb9998fc1 (IsA shelduck sheldrake) (STV 1.0 0.9091)) +(: cnet_isa_53894dfcfb (IsA shelf horizontal_surface) (STV 1.0 0.9091)) +(: cnet_isa_af3a0f0025 (IsA shelf support) (STV 1.0 0.9091)) +(: cnet_isa_7b1339b1ca (IsA shelf_bracket bracket) (STV 1.0 0.9091)) +(: cnet_isa_a14c9fa206 (IsA shelf_ice ice) (STV 1.0 0.9091)) +(: cnet_isa_24e1e036c9 (IsA shelf_life time_period) (STV 1.0 0.9091)) +(: cnet_isa_28b8db92fc (IsA shelfful containerful) (STV 1.0 0.9091)) +(: cnet_isa_fe6179ab53 (IsA shell covering) (STV 1.0 0.9091)) +(: cnet_isa_f91b0f7a1e (IsA shell ammunition) (STV 1.0 0.9091)) +(: cnet_isa_5192603de9 (IsA shell housing) (STV 1.0 0.9091)) +(: cnet_isa_d5403688e4 (IsA shell racing_boat) (STV 1.0 0.9091)) +(: cnet_isa_3e78b3ad5b (IsA shell hull) (STV 1.0 0.9091)) +(: cnet_isa_c25d6694b2 (IsA shell animal_material) (STV 1.0 0.9091)) +(: cnet_isa_f56aeddcc6 (IsA shell_bean fresh_bean) (STV 1.0 0.9091)) +(: cnet_isa_21903eb48c (IsA shell_bean bean) (STV 1.0 0.9091)) +(: cnet_isa_77e29ff1d0 (IsA shell_corporation corporation) (STV 1.0 0.9091)) +(: cnet_isa_6712d6a386 (IsA shell_game swindle) (STV 1.0 0.9091)) +(: cnet_isa_bd3c716c21 (IsA shell_plating plate) (STV 1.0 0.9091)) +(: cnet_isa_b33130a900 (IsA shell_stitch crochet_stitch) (STV 1.0 0.9091)) +(: cnet_isa_50e71621cb (IsA shellac varnish) (STV 1.0 0.9091)) +(: cnet_isa_24acefad45 (IsA shellac lac) (STV 1.0 0.9091)) +(: cnet_isa_db4c99247a (IsA shellac_wax wax) (STV 1.0 0.9091)) +(: cnet_isa_c11897cf87 (IsA sheller worker) (STV 1.0 0.9091)) +(: cnet_isa_28341cffe7 (IsA shellfire shooting) (STV 1.0 0.9091)) +(: cnet_isa_11790733c4 (IsA shellfish seafood) (STV 1.0 0.9091)) +(: cnet_isa_38c1364741 (IsA shellflower ginger) (STV 1.0 0.9091)) +(: cnet_isa_601ba8af30 (IsA shellflower marsh_plant) (STV 1.0 0.9091)) +(: cnet_isa_dcd2cfbf9d (IsA shelter housing) (STV 1.0 0.9091)) +(: cnet_isa_d38e3bf3c1 (IsA shelter protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_06cad1f7c3 (IsA shelter structure) (STV 1.0 0.9091)) +(: cnet_isa_b080320f5c (IsA sheltered_workshop workshop) (STV 1.0 0.9091)) +(: cnet_isa_6f4885b107 (IsA shelver worker) (STV 1.0 0.9091)) +(: cnet_isa_733ae05632 (IsA shema prayer) (STV 1.0 0.9091)) +(: cnet_isa_0f7a1a8e7a (IsA shepherd_s_pie meat_pie) (STV 1.0 0.9091)) +(: cnet_isa_45698f9532 (IsA shepherd_s_purse crucifer) (STV 1.0 0.9091)) +(: cnet_isa_a59d4284c8 (IsA shepherd clergyman) (STV 1.0 0.9091)) +(: cnet_isa_897a17fcf4 (IsA shepherd_dog working_dog) (STV 1.0 0.9091)) +(: cnet_isa_eadf54b600 (IsA shepherdess sheepherder) (STV 1.0 0.9091)) +(: cnet_isa_470d454349 (IsA sheraton furniture) (STV 1.0 0.9091)) +(: cnet_isa_bb6343b3f8 (IsA sherbert ice) (STV 1.0 0.9091)) +(: cnet_isa_09deb76f58 (IsA sherbet frozen_dessert) (STV 1.0 0.9091)) +(: cnet_isa_42089b2374 (IsA sheriff_s_sale sale) (STV 1.0 0.9091)) +(: cnet_isa_97acc70006 (IsA sheriff police_officer) (STV 1.0 0.9091)) +(: cnet_isa_eca2056d7b (IsA sheriff public_official) (STV 1.0 0.9091)) +(: cnet_isa_0a8faa42ce (IsA sheriff lawman) (STV 1.0 0.9091)) +(: cnet_isa_d62e5ba18f (IsA sherlock_holme detective) (STV 1.0 0.9339)) +(: cnet_isa_f65bf4d2e6 (IsA sherlock_holme famous_fictional_detective) (STV 1.0 0.9339)) +(: cnet_isa_8c6ae263c7 (IsA sherlock_holme fictional_character) (STV 1.0 0.9091)) +(: cnet_isa_95808aa5a4 (IsA sherpa asiatic) (STV 1.0 0.9091)) +(: cnet_isa_a38f868ecf (IsA sherry fortified_wine) (STV 1.0 0.9091)) +(: cnet_isa_75bc81b8ad (IsA shetland_pony pony) (STV 1.0 0.9091)) +(: cnet_isa_d1ed1b0e02 (IsA shetland_sheepdog shepherd_dog) (STV 1.0 0.9091)) +(: cnet_isa_005d18c352 (IsA shetland_wool wool) (STV 1.0 0.9091)) +(: cnet_isa_b221c4b4c6 (IsA shi_ite_muslim moslem) (STV 1.0 0.9091)) +(: cnet_isa_dcb68e8f72 (IsA shiah sect) (STV 1.0 0.9091)) +(: cnet_isa_18cefd2505 (IsA shibboleth manner_of_speaking) (STV 1.0 0.9091)) +(: cnet_isa_0353a4f503 (IsA shield armor) (STV 1.0 0.9091)) +(: cnet_isa_dc03776ea8 (IsA shield protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_b7fda9ed1c (IsA shield_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_f722df81e0 (IsA shielding protection) (STV 1.0 0.9091)) +(: cnet_isa_46ca037b68 (IsA shielding shield) (STV 1.0 0.9091)) +(: cnet_isa_b0168f6e66 (IsA shift motion) (STV 1.0 0.9091)) +(: cnet_isa_ceb3a78217 (IsA shift translation) (STV 1.0 0.9091)) +(: cnet_isa_6a60b1d8eb (IsA shift gang) (STV 1.0 0.9091)) +(: cnet_isa_1f1b950f31 (IsA shift hour) (STV 1.0 0.9091)) +(: cnet_isa_65197873e9 (IsA shift_key key) (STV 1.0 0.9091)) +(: cnet_isa_4cfe353843 (IsA shift_register register) (STV 1.0 0.9091)) +(: cnet_isa_cc7f4f26dc (IsA shiftiness changeableness) (STV 1.0 0.9091)) +(: cnet_isa_621f90e134 (IsA shiftlessness indolence) (STV 1.0 0.9091)) +(: cnet_isa_c305781363 (IsA shiga_bacillus shigella) (STV 1.0 0.9091)) +(: cnet_isa_9780661ee5 (IsA shigella enteric_bacteria) (STV 1.0 0.9091)) +(: cnet_isa_64e765e54f (IsA shigellosis dysentery) (STV 1.0 0.9091)) +(: cnet_isa_240f0a400e (IsA shih_tzu toy_dog) (STV 1.0 0.9091)) +(: cnet_isa_4f7f167ac5 (IsA shiism islam) (STV 1.0 0.9091)) +(: cnet_isa_0b62ff3bbf (IsA shiitake fungus) (STV 1.0 0.9091)) +(: cnet_isa_8b345a43fb (IsA shiksa woman) (STV 1.0 0.9091)) +(: cnet_isa_15547823ee (IsA shill decoy) (STV 1.0 0.9091)) +(: cnet_isa_52ac0b3616 (IsA shillelagh cudgel) (STV 1.0 0.9091)) +(: cnet_isa_f10cec6b96 (IsA shilling coin) (STV 1.0 0.9091)) +(: cnet_isa_1a694d0f56 (IsA shim wedge) (STV 1.0 0.9091)) +(: cnet_isa_7a93836d90 (IsA shimchath_torah jewish_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_c1dfbc8993 (IsA shimmer change) (STV 1.0 0.9091)) +(: cnet_isa_c55885a912 (IsA shimmy social_dancing) (STV 1.0 0.9091)) +(: cnet_isa_10217217bc (IsA shimmy wobble) (STV 1.0 0.9091)) +(: cnet_isa_6ff84db444 (IsA shin body_part) (STV 1.0 0.9091)) +(: cnet_isa_337b2914ef (IsA shin letter) (STV 1.0 0.9091)) +(: cnet_isa_be5674c28f (IsA shin cut) (STV 1.0 0.9091)) +(: cnet_isa_30c86b98dd (IsA shin_bet international_intelligence_agency) (STV 1.0 0.9091)) +(: cnet_isa_e1edec3df8 (IsA shin_guard protective_garment) (STV 1.0 0.9091)) +(: cnet_isa_4a23496b92 (IsA shin_splint inflammation) (STV 1.0 0.9091)) +(: cnet_isa_714cae1b62 (IsA shina dard) (STV 1.0 0.9091)) +(: cnet_isa_11847b7ff8 (IsA shindig party) (STV 1.0 0.9091)) +(: cnet_isa_f87e90b093 (IsA shiner cyprinid) (STV 1.0 0.9091)) +(: cnet_isa_f8d641735a (IsA shiner object) (STV 1.0 0.9091)) +(: cnet_isa_79a54da59a (IsA shiner bruise) (STV 1.0 0.9091)) +(: cnet_isa_61e6575fe3 (IsA shingle signboard) (STV 1.0 0.9091)) +(: cnet_isa_14bb07fdac (IsA shingle building_material) (STV 1.0 0.9091)) +(: cnet_isa_b7bbca760d (IsA shingle gravel) (STV 1.0 0.9091)) +(: cnet_isa_35b86028cb (IsA shingle_oak oak) (STV 1.0 0.9091)) +(: cnet_isa_39b21b49e7 (IsA shingle_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_90fbc855ce (IsA shingler worker) (STV 1.0 0.9091)) +(: cnet_isa_524ab0db16 (IsA shingling trade) (STV 1.0 0.9091)) +(: cnet_isa_0d08d2b988 (IsA shingling rock) (STV 1.0 0.9091)) +(: cnet_isa_3a5cca667f (IsA shingon buddhism) (STV 1.0 0.9091)) +(: cnet_isa_be175a255d (IsA shininess radiance) (STV 1.0 0.9091)) +(: cnet_isa_94235ca72d (IsA shining work) (STV 1.0 0.9091)) +(: cnet_isa_2bdc989a70 (IsA shining_clubmoss club_moss) (STV 1.0 0.9091)) +(: cnet_isa_4d626602e6 (IsA shining_willow willow) (STV 1.0 0.9091)) +(: cnet_isa_9b527a5b43 (IsA shinney field_hockey) (STV 1.0 0.9091)) +(: cnet_isa_008dc31342 (IsA shinplaster money) (STV 1.0 0.9091)) +(: cnet_isa_d5a5884603 (IsA shinto religion) (STV 1.0 0.9091)) +(: cnet_isa_47fed1ed00 (IsA shintoist disciple) (STV 1.0 0.9091)) +(: cnet_isa_a73e1d9131 (IsA ship_s_chandler chandler) (STV 1.0 0.9091)) +(: cnet_isa_005c907f0f (IsA ship_s_company complement) (STV 1.0 0.9091)) +(: cnet_isa_cd755774d1 (IsA ship_s_paper legal_document) (STV 1.0 0.9091)) +(: cnet_isa_a33b83e2b0 (IsA ship vessel) (STV 1.0 0.9091)) +(: cnet_isa_947024fc8b (IsA ship_breaker contractor) (STV 1.0 0.9091)) +(: cnet_isa_d8518df20e (IsA ship_broker agent) (STV 1.0 0.9091)) +(: cnet_isa_6c24fe6439 (IsA ship_canal canal) (STV 1.0 0.9091)) +(: cnet_isa_d4dc5fadf0 (IsA ship_chandler distributor) (STV 1.0 0.9091)) +(: cnet_isa_b95a56ad93 (IsA ship_money custom) (STV 1.0 0.9091)) +(: cnet_isa_4c81f60ff3 (IsA ship_towed_long_range_acoustic_detection_system shipboard_system) (STV 1.0 0.9091)) +(: cnet_isa_e198790516 (IsA shipboard_soldier serviceman) (STV 1.0 0.9091)) +(: cnet_isa_667634bd83 (IsA shipboard_system naval_equipment) (STV 1.0 0.9091)) +(: cnet_isa_b9ddff0873 (IsA shipboard_system system) (STV 1.0 0.9091)) +(: cnet_isa_61653bbc7f (IsA shipbuilder business) (STV 1.0 0.9091)) +(: cnet_isa_efee4daca1 (IsA shipbuilder builder) (STV 1.0 0.9091)) +(: cnet_isa_a2abbb542d (IsA shipbuilding construction) (STV 1.0 0.9091)) +(: cnet_isa_3aa6785d97 (IsA shipbuilding_industry industry) (STV 1.0 0.9091)) +(: cnet_isa_d8e4ac098f (IsA shipmate associate) (STV 1.0 0.9091)) +(: cnet_isa_462773da1e (IsA shipowner owner) (STV 1.0 0.9091)) +(: cnet_isa_3ae838728b (IsA shipper company) (STV 1.0 0.9091)) +(: cnet_isa_102b15e2b1 (IsA shipper businessperson) (STV 1.0 0.9091)) +(: cnet_isa_19da74e199 (IsA shipping conveyance) (STV 1.0 0.9091)) +(: cnet_isa_b5f375ac44 (IsA shipping_agent agent) (STV 1.0 0.9091)) +(: cnet_isa_2007de3b6a (IsA shipping_clerk clerk) (STV 1.0 0.9091)) +(: cnet_isa_1848d89603 (IsA shipping_company company) (STV 1.0 0.9091)) +(: cnet_isa_969e0e427a (IsA shipping_fever animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_860b365fec (IsA shipping_fever blood_poisoning) (STV 1.0 0.9091)) +(: cnet_isa_9ebb97607e (IsA shipping_office office) (STV 1.0 0.9091)) +(: cnet_isa_8481810d95 (IsA shipping_room room) (STV 1.0 0.9091)) +(: cnet_isa_dde3406623 (IsA shipside side) (STV 1.0 0.9091)) +(: cnet_isa_a82bbdb840 (IsA shipworm clam) (STV 1.0 0.9091)) +(: cnet_isa_576e3413ca (IsA shipwreck ship) (STV 1.0 0.9091)) +(: cnet_isa_b21f651e3d (IsA shipwreck accident) (STV 1.0 0.9091)) +(: cnet_isa_f856e3c91f (IsA shipwreck ruin) (STV 1.0 0.9091)) +(: cnet_isa_07eb64634d (IsA shipwright wright) (STV 1.0 0.9091)) +(: cnet_isa_aed1370c49 (IsA shipyard workplace) (STV 1.0 0.9091)) +(: cnet_isa_ff22f81987 (IsA shire draft_horse) (STV 1.0 0.9091)) +(: cnet_isa_507d30bc60 (IsA shire administrative_district) (STV 1.0 0.9091)) +(: cnet_isa_4540296a37 (IsA shirking evasion) (STV 1.0 0.9091)) +(: cnet_isa_481e6d93fd (IsA shirodkar_s_operation operation) (STV 1.0 0.9091)) +(: cnet_isa_589960e99c (IsA shirred_egg dish) (STV 1.0 0.9091)) +(: cnet_isa_b13029191b (IsA shirring baking) (STV 1.0 0.9091)) +(: cnet_isa_65059ca96e (IsA shirt article_of_clothing) (STV 1.0 0.9091)) +(: cnet_isa_cf45e8e813 (IsA shirt clothe) (STV 1.0 0.9091)) +(: cnet_isa_a4eff75fa8 (IsA shirt item_of_clothing) (STV 1.0 0.9524)) +(: cnet_isa_99705a02ed (IsA shirt garment) (STV 1.0 0.9091)) +(: cnet_isa_e6e3cf1337 (IsA shirt_button button) (STV 1.0 0.9091)) +(: cnet_isa_17e39783df (IsA shirtdress dress) (STV 1.0 0.9091)) +(: cnet_isa_20b4388944 (IsA shirtfront front) (STV 1.0 0.9091)) +(: cnet_isa_c7ad6b7b1d (IsA shirting fabric) (STV 1.0 0.9091)) +(: cnet_isa_32662b32c4 (IsA shirtmaker maker) (STV 1.0 0.9091)) +(: cnet_isa_f8b74d73bc (IsA shirtsleeve sleeve) (STV 1.0 0.9091)) +(: cnet_isa_75da31dc2b (IsA shirtsleeve dishabille) (STV 1.0 0.9091)) +(: cnet_isa_23e2ab8745 (IsA shirttail fabric) (STV 1.0 0.9091)) +(: cnet_isa_1b6842d96b (IsA shirttail appendix) (STV 1.0 0.9091)) +(: cnet_isa_01d7d576e6 (IsA shirtwaist blouse) (STV 1.0 0.9091)) +(: cnet_isa_c588f2a366 (IsA shit defecation) (STV 1.0 0.9091)) +(: cnet_isa_a7239a9f69 (IsA shit diarrhea) (STV 1.0 0.9091)) +(: cnet_isa_840994b0e8 (IsA shittah acacia) (STV 1.0 0.9091)) +(: cnet_isa_67cf7e70e1 (IsA shittimwood wood) (STV 1.0 0.9091)) +(: cnet_isa_18fda3ef13 (IsA shiv knife) (STV 1.0 0.9091)) +(: cnet_isa_d8e0607c03 (IsA shiva week) (STV 1.0 0.9091)) +(: cnet_isa_e407edec7a (IsA shivaism hinduism) (STV 1.0 0.9091)) +(: cnet_isa_9c216dad95 (IsA shivaism sect) (STV 1.0 0.9091)) +(: cnet_isa_89bcc5d1d6 (IsA shivaist hindoo) (STV 1.0 0.9091)) +(: cnet_isa_7f0f122929 (IsA shivaree serenade) (STV 1.0 0.9091)) +(: cnet_isa_a3efdb4ee2 (IsA shmegegge nonsense) (STV 1.0 0.9091)) +(: cnet_isa_f3f2670c35 (IsA shmooze talk) (STV 1.0 0.9091)) +(: cnet_isa_31d02e4c60 (IsA shoal body_of_water) (STV 1.0 0.9091)) +(: cnet_isa_c4b2539252 (IsA shoal sandbank) (STV 1.0 0.9091)) +(: cnet_isa_148a027f50 (IsA shock fight) (STV 1.0 0.9091)) +(: cnet_isa_5077d300fa (IsA shock earthquake) (STV 1.0 0.9091)) +(: cnet_isa_85e5d2ee41 (IsA shock surprise) (STV 1.0 0.9091)) +(: cnet_isa_2868d04133 (IsA shock mass) (STV 1.0 0.9091)) +(: cnet_isa_ef2cbab60e (IsA shock pile) (STV 1.0 0.9091)) +(: cnet_isa_a80e0b8944 (IsA shock collapse) (STV 1.0 0.9091)) +(: cnet_isa_e75e6c0a43 (IsA shock_absorber damper) (STV 1.0 0.9091)) +(: cnet_isa_34412d6628 (IsA shock_therapy therapy) (STV 1.0 0.9091)) +(: cnet_isa_7d14a7a710 (IsA shock_troop troop) (STV 1.0 0.9091)) +(: cnet_isa_b61f3a02d3 (IsA shock_wave wave) (STV 1.0 0.9091)) +(: cnet_isa_bcceb858c9 (IsA shocker message) (STV 1.0 0.9091)) +(: cnet_isa_8d7b1f8ba8 (IsA shocker bad_person) (STV 1.0 0.9091)) +(: cnet_isa_ff74e5ed0e (IsA shoddiness worthlessness) (STV 1.0 0.9091)) +(: cnet_isa_6326a63630 (IsA shoddy wool) (STV 1.0 0.9091)) +(: cnet_isa_e0e9bcaee0 (IsA shoe footwear) (STV 1.0 0.9091)) +(: cnet_isa_44234ac523 (IsA shoe case) (STV 1.0 0.9091)) +(: cnet_isa_94f80b10c6 (IsA shoe_bomb explosive_device) (STV 1.0 0.9091)) +(: cnet_isa_1a3839a5c3 (IsA shoe_collar brim) (STV 1.0 0.9091)) +(: cnet_isa_54ae1523f8 (IsA shoe_industry industry) (STV 1.0 0.9091)) +(: cnet_isa_a2214da775 (IsA shoe_leather leather) (STV 1.0 0.9091)) +(: cnet_isa_aafae6ff95 (IsA shoe_polish polish) (STV 1.0 0.9091)) +(: cnet_isa_805d62ffa6 (IsA shoe_shop shop) (STV 1.0 0.9091)) +(: cnet_isa_062c022f85 (IsA shoebill wading_bird) (STV 1.0 0.9091)) +(: cnet_isa_ea5aae93ae (IsA shoebox box) (STV 1.0 0.9091)) +(: cnet_isa_b49c9a4eef (IsA shoebox structure) (STV 1.0 0.9091)) +(: cnet_isa_e2d37465f6 (IsA shoeful containerful) (STV 1.0 0.9091)) +(: cnet_isa_f0a50118b0 (IsA shoehorn device) (STV 1.0 0.9091)) +(: cnet_isa_91ce267067 (IsA shoelace lace) (STV 1.0 0.9091)) +(: cnet_isa_607b041060 (IsA shoemaking trade) (STV 1.0 0.9091)) +(: cnet_isa_8a133c2d93 (IsA shoe clothing) (STV 1.0 0.9339)) +(: cnet_isa_cd5f5470f0 (IsA shoeshine shining) (STV 1.0 0.9091)) +(: cnet_isa_7a75d6a828 (IsA shoeshine coating) (STV 1.0 0.9091)) +(: cnet_isa_26190383fc (IsA shoestring small_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_7b90ee72d4 (IsA shoestring_catch catch) (STV 1.0 0.9091)) +(: cnet_isa_5866f54c53 (IsA shoestring_fungus agaric) (STV 1.0 0.9091)) +(: cnet_isa_6e60d50fa0 (IsA shoetree device) (STV 1.0 0.9091)) +(: cnet_isa_ec6945fa0c (IsA shofar horn) (STV 1.0 0.9091)) +(: cnet_isa_6a97d72861 (IsA shogi chess) (STV 1.0 0.9091)) +(: cnet_isa_033a52f369 (IsA shogun dictator) (STV 1.0 0.9091)) +(: cnet_isa_105095c195 (IsA shogun nipponese) (STV 1.0 0.9091)) +(: cnet_isa_ba53217685 (IsA shoji screen) (STV 1.0 0.9091)) +(: cnet_isa_92002b31d9 (IsA shona bantu) (STV 1.0 0.9091)) +(: cnet_isa_f8bf3a58ea (IsA shoofly rocking_chair) (STV 1.0 0.9091)) +(: cnet_isa_21d87b82de (IsA shoofly policeman) (STV 1.0 0.9091)) +(: cnet_isa_62ccc91440 (IsA shoofly_pie pie) (STV 1.0 0.9091)) +(: cnet_isa_9816a4721d (IsA shook barrel) (STV 1.0 0.9091)) +(: cnet_isa_1d3ddfc450 (IsA shoot shooting) (STV 1.0 0.9091)) +(: cnet_isa_bb306434d4 (IsA shoot sprout) (STV 1.0 0.9091)) +(: cnet_isa_79903c87b0 (IsA shoot_down murder) (STV 1.0 0.9091)) +(: cnet_isa_c1f50e566e (IsA shoot_em_up movie) (STV 1.0 0.9091)) +(: cnet_isa_c0cbe7cb4d (IsA shooter gambler) (STV 1.0 0.9091)) +(: cnet_isa_201f15bb38 (IsA shooter player) (STV 1.0 0.9091)) +(: cnet_isa_5ef3ce09ca (IsA shooting sport) (STV 1.0 0.9091)) +(: cnet_isa_b137507bbe (IsA shooting homicide) (STV 1.0 0.9091)) +(: cnet_isa_a59bea3d77 (IsA shooting propulsion) (STV 1.0 0.9091)) +(: cnet_isa_1923922364 (IsA shooting_brake beach_wagon) (STV 1.0 0.9091)) +(: cnet_isa_b2db15d891 (IsA shooting_gallery building) (STV 1.0 0.9091)) +(: cnet_isa_f07d615ab1 (IsA shooting_gallery firing_range) (STV 1.0 0.9091)) +(: cnet_isa_1be1d0929a (IsA shooting_lodge country_house) (STV 1.0 0.9091)) +(: cnet_isa_b990c8b4f3 (IsA shooting_preserve preserve) (STV 1.0 0.9091)) +(: cnet_isa_634d6c54dd (IsA shooting_script script) (STV 1.0 0.9091)) +(: cnet_isa_c2cd7aba2b (IsA shooting_star meteor) (STV 1.0 0.9091)) +(: cnet_isa_346487ca7d (IsA shooting_stick device) (STV 1.0 0.9091)) +(: cnet_isa_40b58c6ae4 (IsA shop store) (STV 1.0 0.9091)) +(: cnet_isa_251ed349d2 (IsA shop mercantile_establishment) (STV 1.0 0.9091)) +(: cnet_isa_77abbb3dba (IsA shop_assistant salesperson) (STV 1.0 0.9091)) +(: cnet_isa_b3d174b37b (IsA shop_bell bell) (STV 1.0 0.9091)) +(: cnet_isa_c7b04026e1 (IsA shop_boy male_child) (STV 1.0 0.9091)) +(: cnet_isa_525e5d7a80 (IsA shop_boy shop_assistant) (STV 1.0 0.9091)) +(: cnet_isa_4680b451d5 (IsA shop_class course) (STV 1.0 0.9091)) +(: cnet_isa_0d5c6add6f (IsA shop_floor workplace) (STV 1.0 0.9091)) +(: cnet_isa_a5664a2a69 (IsA shop_girl girl) (STV 1.0 0.9091)) +(: cnet_isa_4b1be0b752 (IsA shop_girl shop_assistant) (STV 1.0 0.9091)) +(: cnet_isa_3ad369359d (IsA shop_steward union_representative) (STV 1.0 0.9091)) +(: cnet_isa_143715f263 (IsA shop_talk talk) (STV 1.0 0.9091)) +(: cnet_isa_724244ed00 (IsA shopaholic shopper) (STV 1.0 0.9091)) +(: cnet_isa_28f1dc3630 (IsA shopfront front) (STV 1.0 0.9091)) +(: cnet_isa_f0323e71af (IsA shopkeeper merchant) (STV 1.0 0.9091)) +(: cnet_isa_19453919a1 (IsA shoplifting larceny) (STV 1.0 0.9091)) +(: cnet_isa_4e956a10d2 (IsA shopper agent) (STV 1.0 0.9091)) +(: cnet_isa_98183f78d9 (IsA shopper customer) (STV 1.0 0.9091)) +(: cnet_isa_6e02b23835 (IsA shopping buying) (STV 1.0 0.9091)) +(: cnet_isa_b05be6b88d (IsA shopping commodity) (STV 1.0 0.9091)) +(: cnet_isa_ed2e022a25 (IsA shopping_bag bag) (STV 1.0 0.9091)) +(: cnet_isa_f0d6bcd6a7 (IsA shopping_basket basket) (STV 1.0 0.9091)) +(: cnet_isa_c0c51d97cc (IsA shopping_cart handcart) (STV 1.0 0.9091)) +(: cnet_isa_16b2a93ea8 (IsA shopping_list list) (STV 1.0 0.9091)) +(: cnet_isa_b7904918a7 (IsA shopping_mall depressing_place) (STV 1.0 0.9091)) +(: cnet_isa_e8960a21d7 (IsA shopping_mall place_to_buy_thing) (STV 1.0 0.9091)) +(: cnet_isa_9be445d0a9 (IsA shore beam) (STV 1.0 0.9091)) +(: cnet_isa_777bc60969 (IsA shore geological_formation) (STV 1.0 0.9091)) +(: cnet_isa_c75d37875b (IsA shore_boulder boulder) (STV 1.0 0.9091)) +(: cnet_isa_b68e6e2528 (IsA shore_duty assignment) (STV 1.0 0.9091)) +(: cnet_isa_4ed41f58fc (IsA shore_leave leave) (STV 1.0 0.9091)) +(: cnet_isa_12afa556c8 (IsA shore_patrol military_police) (STV 1.0 0.9091)) +(: cnet_isa_f8507bc5e8 (IsA shore_pine pine) (STV 1.0 0.9091)) +(: cnet_isa_e15fc59da1 (IsA shorea dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8fecde0a1f (IsA shorebird wading_bird) (STV 1.0 0.9091)) +(: cnet_isa_170561cfff (IsA shoreline boundary) (STV 1.0 0.9091)) +(: cnet_isa_30ad6261a1 (IsA shoring support) (STV 1.0 0.9091)) +(: cnet_isa_97b3d194e9 (IsA short_s_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_3f6b5f3f02 (IsA short tract) (STV 1.0 0.9091)) +(: cnet_isa_902bec19ee (IsA short_account index) (STV 1.0 0.9091)) +(: cnet_isa_3297478568 (IsA short_account account) (STV 1.0 0.9091)) +(: cnet_isa_ffd7d46553 (IsA short_bone bone) (STV 1.0 0.9091)) +(: cnet_isa_046018f9e3 (IsA short_circuit bad_thing) (STV 1.0 0.9091)) +(: cnet_isa_ce79f74911 (IsA short_circuit contact) (STV 1.0 0.9091)) +(: cnet_isa_f90de154a9 (IsA short_covering trading) (STV 1.0 0.9091)) +(: cnet_isa_a871c9da30 (IsA short_division division) (STV 1.0 0.9091)) +(: cnet_isa_cc8862c904 (IsA short_gastric_artery gastric_artery) (STV 1.0 0.9091)) +(: cnet_isa_66f2275e8b (IsA short_horned_grasshopper grasshopper) (STV 1.0 0.9091)) +(: cnet_isa_d8ba2ce2ba (IsA short_iron iron) (STV 1.0 0.9091)) +(: cnet_isa_39bcb8f73c (IsA short_line transportation_system) (STV 1.0 0.9091)) +(: cnet_isa_4817296ab3 (IsA short_list list) (STV 1.0 0.9091)) +(: cnet_isa_72345710c2 (IsA short_loin loin) (STV 1.0 0.9091)) +(: cnet_isa_977a4cda09 (IsA short_order order) (STV 1.0 0.9091)) +(: cnet_isa_4a9e640d7c (IsA short_pant pair_of_trouser) (STV 1.0 0.9091)) +(: cnet_isa_c4f278c8f8 (IsA short_rib cut_of_beef) (STV 1.0 0.9091)) +(: cnet_isa_1b17ee9d2c (IsA short_sale trading) (STV 1.0 0.9091)) +(: cnet_isa_d8ef736434 (IsA short_saphenous_vein saphenous_vein) (STV 1.0 0.9091)) +(: cnet_isa_fb577da836 (IsA short_shrift rejection) (STV 1.0 0.9091)) +(: cnet_isa_dea6a68a03 (IsA short_sleeve sleeve) (STV 1.0 0.9091)) +(: cnet_isa_35f2556874 (IsA short_spurred_fragrant_orchid orchid) (STV 1.0 0.9091)) +(: cnet_isa_864e738952 (IsA short_staple_cotton cotton) (STV 1.0 0.9091)) +(: cnet_isa_51bab1bedf (IsA short_story story) (STV 1.0 0.9091)) +(: cnet_isa_305b8fd124 (IsA short_subject movie) (STV 1.0 0.9091)) +(: cnet_isa_020d78d4ee (IsA short_tailed_shrew shrew) (STV 1.0 0.9091)) +(: cnet_isa_2b67506086 (IsA short_term_memory memory) (STV 1.0 0.9091)) +(: cnet_isa_d2b30fe7f6 (IsA short_ton avoirdupois_unit) (STV 1.0 0.9091)) +(: cnet_isa_15ea8b8de3 (IsA short_wave radio_wave) (STV 1.0 0.9091)) +(: cnet_isa_eabc1e8ea0 (IsA shortbread butter_cookie) (STV 1.0 0.9091)) +(: cnet_isa_2072f08022 (IsA shortcake baking_powder_biscuit) (STV 1.0 0.9091)) +(: cnet_isa_4344b01caa (IsA shortcut road) (STV 1.0 0.9091)) +(: cnet_isa_1a5825383a (IsA shortener agent) (STV 1.0 0.9091)) +(: cnet_isa_dfe2e867c7 (IsA shortening decrease) (STV 1.0 0.9091)) +(: cnet_isa_6f917c9fa5 (IsA shortening edible_fat) (STV 1.0 0.9091)) +(: cnet_isa_eaf0921d4f (IsA shortest_distance_between_two_point straight_line) (STV 1.0 0.9608)) +(: cnet_isa_cb92fc6dbd (IsA shortfin_mako mako) (STV 1.0 0.9091)) +(: cnet_isa_8f4d0adb5a (IsA shortgrass grass) (STV 1.0 0.9091)) +(: cnet_isa_8225fd34f5 (IsA shorthand handwriting) (STV 1.0 0.9091)) +(: cnet_isa_082dc4b3cc (IsA shortia flower) (STV 1.0 0.9091)) +(: cnet_isa_2f5c566a9d (IsA shortleaf_pine yellow_pine) (STV 1.0 0.9091)) +(: cnet_isa_169ab08715 (IsA shortness duration) (STV 1.0 0.9091)) +(: cnet_isa_70750bb19c (IsA shortness length) (STV 1.0 0.9091)) +(: cnet_isa_bce2477117 (IsA shortness lowness) (STV 1.0 0.9091)) +(: cnet_isa_056237f7ba (IsA shortness stature) (STV 1.0 0.9091)) +(: cnet_isa_bb9b9f42a6 (IsA shortness lack) (STV 1.0 0.9091)) +(: cnet_isa_3db3fc08b2 (IsA shortness_of_breath dyspnea) (STV 1.0 0.9091)) +(: cnet_isa_cb8066404c (IsA shortstop position) (STV 1.0 0.9091)) +(: cnet_isa_63c9089139 (IsA shortstop infielder) (STV 1.0 0.9091)) +(: cnet_isa_8171a9145f (IsA shortwave_diathermy_machine diathermy_machine) (STV 1.0 0.9091)) +(: cnet_isa_a5e8ede775 (IsA shoshone shoshonean) (STV 1.0 0.9091)) +(: cnet_isa_c385935989 (IsA shoshonean uto_aztecan) (STV 1.0 0.9091)) +(: cnet_isa_ab17c63c31 (IsA shoshoni native_american) (STV 1.0 0.9091)) +(: cnet_isa_2b7e03c45f (IsA shot attempt) (STV 1.0 0.9091)) +(: cnet_isa_0f0cddcbbc (IsA shot blow) (STV 1.0 0.9091)) +(: cnet_isa_bec463510a (IsA shot charge) (STV 1.0 0.9091)) +(: cnet_isa_3651d65655 (IsA shot projectile) (STV 1.0 0.9091)) +(: cnet_isa_e153997968 (IsA shot sport_equipment) (STV 1.0 0.9091)) +(: cnet_isa_381919094f (IsA shot remark) (STV 1.0 0.9091)) +(: cnet_isa_c6ff13b8ac (IsA shot expert) (STV 1.0 0.9091)) +(: cnet_isa_76d475bd99 (IsA shot opportunity) (STV 1.0 0.9091)) +(: cnet_isa_1237a2719b (IsA shot_glass glass) (STV 1.0 0.9091)) +(: cnet_isa_9a61f8d952 (IsA shot_hole bore) (STV 1.0 0.9091)) +(: cnet_isa_e753f12c49 (IsA shot_metal alloy) (STV 1.0 0.9091)) +(: cnet_isa_1956fbc1b5 (IsA shot_put field_event) (STV 1.0 0.9091)) +(: cnet_isa_434351abd6 (IsA shot_putter athlete) (STV 1.0 0.9091)) +(: cnet_isa_61809504a8 (IsA shot_tower tower) (STV 1.0 0.9091)) +(: cnet_isa_fc0fe9fc61 (IsA shotgun gun) (STV 1.0 0.9454)) +(: cnet_isa_bd4e866136 (IsA shotgun firearm) (STV 1.0 0.9091)) +(: cnet_isa_eff174789a (IsA shotgun_microphone directional_microphone) (STV 1.0 0.9091)) +(: cnet_isa_4efd962878 (IsA shotgun_shell shell) (STV 1.0 0.9091)) +(: cnet_isa_8be773f68c (IsA shoulder cloth_covering) (STV 1.0 0.9091)) +(: cnet_isa_02cef5bd96 (IsA shoulder edge) (STV 1.0 0.9091)) +(: cnet_isa_2059cda242 (IsA shoulder ball_and_socket_joint) (STV 1.0 0.9091)) +(: cnet_isa_0fc39e8187 (IsA shoulder body_part) (STV 1.0 0.9091)) +(: cnet_isa_a437961cfc (IsA shoulder cut) (STV 1.0 0.9091)) +(: cnet_isa_d857a56aef (IsA shoulder_bag bag) (STV 1.0 0.9091)) +(: cnet_isa_1633ee1386 (IsA shoulder_board epaulet) (STV 1.0 0.9091)) +(: cnet_isa_00c8357d84 (IsA shoulder_flash insignia) (STV 1.0 0.9091)) +(: cnet_isa_01c62dbaae (IsA shoulder_girdle arch) (STV 1.0 0.9091)) +(: cnet_isa_b533a37433 (IsA shoulder_holster holster) (STV 1.0 0.9091)) +(: cnet_isa_47e0392cb5 (IsA shoulder_pad protective_garment) (STV 1.0 0.9091)) +(: cnet_isa_02491f4f80 (IsA shoulder_patch patch) (STV 1.0 0.9091)) +(: cnet_isa_83ce46319b (IsA shouldered_arch arch) (STV 1.0 0.9091)) +(: cnet_isa_89b6107267 (IsA shove push) (STV 1.0 0.9091)) +(: cnet_isa_ac9095133e (IsA shovel fire_iron) (STV 1.0 0.9091)) +(: cnet_isa_b065ad14ea (IsA shovel hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_5a90e1fc60 (IsA shovel containerful) (STV 1.0 0.9091)) +(: cnet_isa_9df5b83a1a (IsA shovel_board board_game) (STV 1.0 0.9091)) +(: cnet_isa_fc2215d087 (IsA shovel_hat hat) (STV 1.0 0.9091)) +(: cnet_isa_6e47a22527 (IsA shoveler duck) (STV 1.0 0.9091)) +(: cnet_isa_c71c3ba4db (IsA shoveler worker) (STV 1.0 0.9091)) +(: cnet_isa_5a24063e31 (IsA shovelhead hammerhead) (STV 1.0 0.9091)) +(: cnet_isa_aded017a76 (IsA show entertainment) (STV 1.0 0.9091)) +(: cnet_isa_0019b99b62 (IsA show social_event) (STV 1.0 0.9091)) +(: cnet_isa_3d6f1e4913 (IsA show_bill poster) (STV 1.0 0.9091)) +(: cnet_isa_4117d7e848 (IsA show_stopper attraction) (STV 1.0 0.9091)) +(: cnet_isa_168d1e54dc (IsA show_stopper act) (STV 1.0 0.9091)) +(: cnet_isa_c9c98df592 (IsA show_time point) (STV 1.0 0.9091)) +(: cnet_isa_99d86ad63f (IsA show_trial trial) (STV 1.0 0.9091)) +(: cnet_isa_498d3165e3 (IsA showboat river_boat) (STV 1.0 0.9091)) +(: cnet_isa_f0c639ccd4 (IsA showboat steamboat) (STV 1.0 0.9091)) +(: cnet_isa_83c24f517d (IsA showcase setting) (STV 1.0 0.9091)) +(: cnet_isa_7bde40531b (IsA shower washup) (STV 1.0 0.9091)) +(: cnet_isa_35b1a2bf15 (IsA shower plumbing_fixture) (STV 1.0 0.9091)) +(: cnet_isa_da21c024ad (IsA shower descent) (STV 1.0 0.9091)) +(: cnet_isa_dededfc434 (IsA shower party) (STV 1.0 0.9091)) +(: cnet_isa_bbdee80df5 (IsA shower rain) (STV 1.0 0.9091)) +(: cnet_isa_a66a27f185 (IsA shower_cap cap) (STV 1.0 0.9091)) +(: cnet_isa_797fdb2687 (IsA shower_curtain curtain) (STV 1.0 0.9091)) +(: cnet_isa_22b8f21cc8 (IsA shower_room room) (STV 1.0 0.9091)) +(: cnet_isa_e2b19747ff (IsA shower_stall booth) (STV 1.0 0.9091)) +(: cnet_isa_d012b415fe (IsA showerhead nozzle) (STV 1.0 0.9091)) +(: cnet_isa_8c6f940c00 (IsA showjumping equestrian_sport) (STV 1.0 0.9091)) +(: cnet_isa_c7f908868d (IsA showman booker) (STV 1.0 0.9091)) +(: cnet_isa_408384dad8 (IsA showman person) (STV 1.0 0.9091)) +(: cnet_isa_12b08259cb (IsA showmanship skill) (STV 1.0 0.9091)) +(: cnet_isa_7d03e5035c (IsA showplace topographic_point) (STV 1.0 0.9091)) +(: cnet_isa_c3ae4963fe (IsA showroom large_room) (STV 1.0 0.9091)) +(: cnet_isa_e6b43751a7 (IsA showroom place_showcas_purchasable_object) (STV 1.0 0.9091)) +(: cnet_isa_4fe2311351 (IsA showroom panopticon) (STV 1.0 0.9091)) +(: cnet_isa_6e2e1094f4 (IsA showy_daisy fleabane) (STV 1.0 0.9091)) +(: cnet_isa_589ac85c94 (IsA showy_goldenrod goldenrod) (STV 1.0 0.9091)) +(: cnet_isa_796146194e (IsA showy_milkweed milkweed) (STV 1.0 0.9091)) +(: cnet_isa_590fbc7072 (IsA showy_orchis orchis) (STV 1.0 0.9091)) +(: cnet_isa_654a07ff56 (IsA showy_sunflower sunflower) (STV 1.0 0.9091)) +(: cnet_isa_ddbff5a99d (IsA shrapnel shell) (STV 1.0 0.9091)) +(: cnet_isa_41ff717e3c (IsA shred small_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_e2c6cd0fe8 (IsA shredder device) (STV 1.0 0.9091)) +(: cnet_isa_454e282cbe (IsA shrew insectivore) (STV 1.0 0.9091)) +(: cnet_isa_a779a72d1a (IsA shrew unpleasant_woman) (STV 1.0 0.9091)) +(: cnet_isa_5a06d9d7ae (IsA shrew_mole mole) (STV 1.0 0.9091)) +(: cnet_isa_d6f5738539 (IsA shrewdness intelligence) (STV 1.0 0.9091)) +(: cnet_isa_a11e181102 (IsA shrewishness ill_nature) (STV 1.0 0.9091)) +(: cnet_isa_87aa9482f1 (IsA shrift confession) (STV 1.0 0.9091)) +(: cnet_isa_f5f699c07b (IsA shrike oscine) (STV 1.0 0.9091)) +(: cnet_isa_ea549a01da (IsA shrilling noise) (STV 1.0 0.9091)) +(: cnet_isa_7c057c54ab (IsA shrillness interest) (STV 1.0 0.9091)) +(: cnet_isa_88baa3a520 (IsA shrillness timbre) (STV 1.0 0.9091)) +(: cnet_isa_faf11522c5 (IsA shrimp decapod_crustacean) (STV 1.0 0.9091)) +(: cnet_isa_7c4a44d00e (IsA shrimp_butter spread) (STV 1.0 0.9091)) +(: cnet_isa_44bc874f55 (IsA shrimp_cocktail cocktail) (STV 1.0 0.9091)) +(: cnet_isa_a6aee2e978 (IsA shrimp_newburg seafood_newburg) (STV 1.0 0.9091)) +(: cnet_isa_d21230df08 (IsA shrimper vessel) (STV 1.0 0.9091)) +(: cnet_isa_0f4a65650f (IsA shrimpfish teleost_fish) (STV 1.0 0.9091)) +(: cnet_isa_95285a632a (IsA shrine place_of_worship) (STV 1.0 0.9091)) +(: cnet_isa_dcbbd4c82c (IsA shrink_wrap film) (STV 1.0 0.9091)) +(: cnet_isa_2819350d39 (IsA shrink_wrapped_software software) (STV 1.0 0.9091)) +(: cnet_isa_3b1526fc09 (IsA shrinkage decrease) (STV 1.0 0.9091)) +(: cnet_isa_1cbd06bfbc (IsA shrinking decrease) (STV 1.0 0.9091)) +(: cnet_isa_7b24229733 (IsA shroud line) (STV 1.0 0.9091)) +(: cnet_isa_eeb286b59b (IsA shrovetide season) (STV 1.0 0.9091)) +(: cnet_isa_b70cd4df9a (IsA shrub woody_plant) (STV 1.0 0.9091)) +(: cnet_isa_835929f427 (IsA shrubbery vegetation) (STV 1.0 0.9091)) +(: cnet_isa_5f6a830acc (IsA shrubbery area) (STV 1.0 0.9091)) +(: cnet_isa_ee3112a3a2 (IsA shrubby_penstemon wildflower) (STV 1.0 0.9091)) +(: cnet_isa_3612f2332f (IsA shrubby_st_john_s_wort st_john_s_wort) (STV 1.0 0.9091)) +(: cnet_isa_93bb881bf6 (IsA shrublet shrub) (STV 1.0 0.9091)) +(: cnet_isa_8d04e0c371 (IsA shrub medium_sized_plant) (STV 1.0 0.9091)) +(: cnet_isa_c46c3c8874 (IsA shrug gesture) (STV 1.0 0.9091)) +(: cnet_isa_f86bbc1441 (IsA shtik buffoonery) (STV 1.0 0.9091)) +(: cnet_isa_8f2c3de3f7 (IsA shtik business) (STV 1.0 0.9091)) +(: cnet_isa_d4b7112805 (IsA shtik small_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_39297d9fbc (IsA shtik trick) (STV 1.0 0.9091)) +(: cnet_isa_48c472cb69 (IsA shtikl shtik) (STV 1.0 0.9091)) +(: cnet_isa_6608c47ee6 (IsA shuck saying) (STV 1.0 0.9091)) +(: cnet_isa_372664af0b (IsA shuffle reordering) (STV 1.0 0.9091)) +(: cnet_isa_1ddbfd80b3 (IsA shuffleboard outdoor_game) (STV 1.0 0.9091)) +(: cnet_isa_a6ea34fd7a (IsA shuffler card_player) (STV 1.0 0.9091)) +(: cnet_isa_b5b509a981 (IsA shuffler pedestrian) (STV 1.0 0.9091)) +(: cnet_isa_24c837154e (IsA shufti reconnaissance) (STV 1.0 0.9091)) +(: cnet_isa_86871a29ce (IsA shuha_shinto sect) (STV 1.0 0.9091)) +(: cnet_isa_53de41f400 (IsA shumard_oak red_oak) (STV 1.0 0.9091)) +(: cnet_isa_a50c3848e5 (IsA shunt conductor) (STV 1.0 0.9091)) +(: cnet_isa_3c8014c11d (IsA shunt implant) (STV 1.0 0.9091)) +(: cnet_isa_05c93ad39d (IsA shunt passage) (STV 1.0 0.9091)) +(: cnet_isa_5e352ba769 (IsA shunter locomotive) (STV 1.0 0.9091)) +(: cnet_isa_7229e6ed99 (IsA shushi japanese_type_of_food) (STV 1.0 0.9091)) +(: cnet_isa_8540f1f527 (IsA shuteye sleep) (STV 1.0 0.9091)) +(: cnet_isa_c18a73f533 (IsA shutout defeat) (STV 1.0 0.9091)) +(: cnet_isa_6b609a1877 (IsA shutter blind) (STV 1.0 0.9091)) +(: cnet_isa_553f17692b (IsA shutter mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_f446f08e80 (IsA shutterbug enthusiast) (STV 1.0 0.9091)) +(: cnet_isa_23cd4cca33 (IsA shutting motion) (STV 1.0 0.9091)) +(: cnet_isa_c7065c0e17 (IsA shutting_post gatepost) (STV 1.0 0.9091)) +(: cnet_isa_6faccfc048 (IsA shuttle bobbin) (STV 1.0 0.9091)) +(: cnet_isa_c584e4f9a9 (IsA shuttle public_transport) (STV 1.0 0.9091)) +(: cnet_isa_39743a8920 (IsA shuttle_bus shuttle) (STV 1.0 0.9091)) +(: cnet_isa_779df1bdd9 (IsA shuttle_diplomacy diplomacy) (STV 1.0 0.9091)) +(: cnet_isa_b54817a7cd (IsA shuttle_helicopter helicopter) (STV 1.0 0.9091)) +(: cnet_isa_298973ad99 (IsA shuttlecock badminton_equipment) (STV 1.0 0.9091)) +(: cnet_isa_68529ef649 (IsA shy throw) (STV 1.0 0.9091)) +(: cnet_isa_9615f327d7 (IsA shy_person coward) (STV 1.0 0.9091)) +(: cnet_isa_6e3fcce550 (IsA shyness timidity) (STV 1.0 0.9091)) +(: cnet_isa_2a19acd158 (IsA shyster wrongdoer) (STV 1.0 0.9091)) +(: cnet_isa_5191544e7d (IsA sial rock) (STV 1.0 0.9091)) +(: cnet_isa_88319bd4d9 (IsA sialadenitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_3524e1c06b (IsA sialia bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_3af3e08f8b (IsA sialidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_2a3ffd239b (IsA sialis arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_a2cb909609 (IsA sialolith calculus) (STV 1.0 0.9091)) +(: cnet_isa_f99b7c53b7 (IsA siamang lesser_ape) (STV 1.0 0.9091)) +(: cnet_isa_8b3ca4364f (IsA siamese breed_of_cat) (STV 1.0 0.9091)) +(: cnet_isa_3b73e56089 (IsA siamese asiatic) (STV 1.0 0.9091)) +(: cnet_isa_9b4feeea53 (IsA siamese_cat domestic_cat) (STV 1.0 0.9091)) +(: cnet_isa_552e4b9631 (IsA siamese_connection intake) (STV 1.0 0.9091)) +(: cnet_isa_d72ba07cd8 (IsA siberian russian) (STV 1.0 0.9091)) +(: cnet_isa_ab874f1891 (IsA siberian_crab crab_apple) (STV 1.0 0.9091)) +(: cnet_isa_c9e0284792 (IsA siberian_elm elm) (STV 1.0 0.9091)) +(: cnet_isa_15ecc89f7c (IsA siberian_husky sled_dog) (STV 1.0 0.9091)) +(: cnet_isa_b43a6e37ce (IsA siberian_larch larch) (STV 1.0 0.9091)) +(: cnet_isa_7e210e6712 (IsA siberian_millet foxtail_millet) (STV 1.0 0.9091)) +(: cnet_isa_e372789866 (IsA siberian_pea_tree pea_tree) (STV 1.0 0.9091)) +(: cnet_isa_99ccceeae5 (IsA siberian_spruce spruce) (STV 1.0 0.9091)) +(: cnet_isa_8524e192f4 (IsA siberian_wall_flower wallflower) (STV 1.0 0.9091)) +(: cnet_isa_ee7af1b40e (IsA sibilant fricative_consonant) (STV 1.0 0.9091)) +(: cnet_isa_aa1f3e78eb (IsA sibilation pronunciation) (STV 1.0 0.9091)) +(: cnet_isa_970bdadeb9 (IsA sibley_tent canva_tent) (STV 1.0 0.9091)) +(: cnet_isa_afd10dbec3 (IsA sibling relative) (STV 1.0 0.9091)) +(: cnet_isa_ee6a0c0dd0 (IsA sibyl prophet) (STV 1.0 0.9091)) +(: cnet_isa_c86a9199ba (IsA sibyl fortuneteller) (STV 1.0 0.9091)) +(: cnet_isa_98906c6319 (IsA sicilian italian) (STV 1.0 0.9091)) +(: cnet_isa_aa31fac0c3 (IsA sicilian_pizza pizza) (STV 1.0 0.9091)) +(: cnet_isa_fa58d84ed1 (IsA sick condition_of_health) (STV 1.0 0.9339)) +(: cnet_isa_13db73d335 (IsA sick people) (STV 1.0 0.9091)) +(: cnet_isa_2e9da9a296 (IsA sick_bag bag) (STV 1.0 0.9091)) +(: cnet_isa_55c41450b9 (IsA sick_benefit benefit) (STV 1.0 0.9091)) +(: cnet_isa_a23c4341d7 (IsA sick_call military_formation) (STV 1.0 0.9091)) +(: cnet_isa_b6e6f2cd10 (IsA sick_headache headache) (STV 1.0 0.9091)) +(: cnet_isa_cf5e6209b6 (IsA sick_joke joke) (STV 1.0 0.9091)) +(: cnet_isa_f25782f61a (IsA sick_leave leave) (STV 1.0 0.9091)) +(: cnet_isa_a72cd911c3 (IsA sick_list list) (STV 1.0 0.9091)) +(: cnet_isa_e30e38e4d7 (IsA sick_pay wage) (STV 1.0 0.9091)) +(: cnet_isa_5382e29ca5 (IsA sick_person unfortunate) (STV 1.0 0.9091)) +(: cnet_isa_8121e9e119 (IsA sickbay room) (STV 1.0 0.9091)) +(: cnet_isa_f922da54b3 (IsA sickbed bed) (STV 1.0 0.9091)) +(: cnet_isa_92a1d228af (IsA sickle edge_tool) (STV 1.0 0.9091)) +(: cnet_isa_6a233e9bfe (IsA sickle_alfalfa medic) (STV 1.0 0.9091)) +(: cnet_isa_0311ca33e3 (IsA sickle_cell red_blood_cell) (STV 1.0 0.9091)) +(: cnet_isa_5dc8c83c15 (IsA sickle_cell_anemia anemia) (STV 1.0 0.9091)) +(: cnet_isa_9d2100b5c6 (IsA sickle_cell_anemia monogenic_disorder) (STV 1.0 0.9091)) +(: cnet_isa_1dcc51b12e (IsA sickle_feather tail_feather) (STV 1.0 0.9091)) +(: cnet_isa_458604ba43 (IsA sicklepod rock_cress) (STV 1.0 0.9091)) +(: cnet_isa_4d012b528b (IsA sicklepod subshrub) (STV 1.0 0.9091)) +(: cnet_isa_e2246ee715 (IsA sickleweed_golden_aster golden_aster) (STV 1.0 0.9091)) +(: cnet_isa_d5eeede640 (IsA sickness defectiveness) (STV 1.0 0.9091)) +(: cnet_isa_69de717d51 (IsA sickroom room) (STV 1.0 0.9091)) +(: cnet_isa_72feb7d6ff (IsA sida dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_310fdedb06 (IsA sidalcea dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8f2c452f48 (IsA side surface) (STV 1.0 0.9091)) +(: cnet_isa_21b1c4c61b (IsA side aspect) (STV 1.0 0.9091)) +(: cnet_isa_023f42d820 (IsA side opinion) (STV 1.0 0.9091)) +(: cnet_isa_2b11acacd7 (IsA side cut) (STV 1.0 0.9091)) +(: cnet_isa_921521c217 (IsA side lineage) (STV 1.0 0.9091)) +(: cnet_isa_ad710f63cb (IsA side area) (STV 1.0 0.9091)) +(: cnet_isa_2a393a6513 (IsA side line) (STV 1.0 0.9091)) +(: cnet_isa_860ccad469 (IsA side region) (STV 1.0 0.9091)) +(: cnet_isa_6a3680579e (IsA side unit) (STV 1.0 0.9091)) +(: cnet_isa_92630e9503 (IsA side_blotched_lizard iguanid) (STV 1.0 0.9091)) +(: cnet_isa_02ee516844 (IsA side_chapel chapel) (STV 1.0 0.9091)) +(: cnet_isa_b1c33bda57 (IsA side_dish dish) (STV 1.0 0.9091)) +(: cnet_isa_8abaccc8d7 (IsA side_door exterior_door) (STV 1.0 0.9091)) +(: cnet_isa_bfe522eaf8 (IsA side_effect consequence) (STV 1.0 0.9091)) +(: cnet_isa_bae2271759 (IsA side_effect effect) (STV 1.0 0.9091)) +(: cnet_isa_3ddd5afc01 (IsA side_glance glance) (STV 1.0 0.9091)) +(: cnet_isa_bd37915027 (IsA side_judge football_official) (STV 1.0 0.9091)) +(: cnet_isa_7071d4f1fa (IsA side_of_beef side) (STV 1.0 0.9091)) +(: cnet_isa_8a6ba33cc1 (IsA side_of_pork side) (STV 1.0 0.9091)) +(: cnet_isa_a5a0c023e6 (IsA side_pocket pocket) (STV 1.0 0.9091)) +(: cnet_isa_ea643151bb (IsA side_road road) (STV 1.0 0.9091)) +(: cnet_isa_a8b0fafab3 (IsA side_street street) (STV 1.0 0.9091)) +(: cnet_isa_5d40ab9636 (IsA side_view view) (STV 1.0 0.9091)) +(: cnet_isa_0946205d42 (IsA side_wheeler paddle_steamer) (STV 1.0 0.9091)) +(: cnet_isa_1b1b259fab (IsA side_yard yard) (STV 1.0 0.9091)) +(: cnet_isa_82b032a59f (IsA sidebar new_article) (STV 1.0 0.9091)) +(: cnet_isa_5b0eff8ad5 (IsA sidebar consultation) (STV 1.0 0.9091)) +(: cnet_isa_5d42744469 (IsA sideboard board) (STV 1.0 0.9091)) +(: cnet_isa_32735bb179 (IsA sideburn facial_hair) (STV 1.0 0.9091)) +(: cnet_isa_5342da05bc (IsA sidecar conveyance) (STV 1.0 0.9091)) +(: cnet_isa_12011b0e03 (IsA sidecar cocktail) (STV 1.0 0.9091)) +(: cnet_isa_94b6c3b0b0 (IsA sidelight light) (STV 1.0 0.9091)) +(: cnet_isa_f147386351 (IsA sideline line) (STV 1.0 0.9091)) +(: cnet_isa_00a681490e (IsA sidereal_day sidereal_time) (STV 1.0 0.9091)) +(: cnet_isa_01756bae16 (IsA sidereal_day time_unit) (STV 1.0 0.9091)) +(: cnet_isa_e1cf493146 (IsA sidereal_hour hour) (STV 1.0 0.9091)) +(: cnet_isa_5c96bf8506 (IsA sidereal_hour sidereal_time) (STV 1.0 0.9091)) +(: cnet_isa_1b116838bf (IsA sidereal_month month) (STV 1.0 0.9091)) +(: cnet_isa_bd148a8a04 (IsA sidereal_month sidereal_time) (STV 1.0 0.9091)) +(: cnet_isa_7ec94fafc9 (IsA sidereal_time cosmic_time) (STV 1.0 0.9091)) +(: cnet_isa_f1d550ce4f (IsA sidereal_year sidereal_time) (STV 1.0 0.9091)) +(: cnet_isa_e5ddba1af2 (IsA sidereal_year year) (STV 1.0 0.9091)) +(: cnet_isa_8cb2c2a00c (IsA siderite meteorite) (STV 1.0 0.9091)) +(: cnet_isa_da1efb1518 (IsA siderite iron_ore) (STV 1.0 0.9091)) +(: cnet_isa_faea5d267d (IsA sideritis asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_465e7c0429 (IsA sideroblast erythroblast) (STV 1.0 0.9091)) +(: cnet_isa_4aaf2d71ca (IsA sideroblastic_anemia refractory_anemia) (STV 1.0 0.9091)) +(: cnet_isa_efacb5cb78 (IsA siderocyte red_blood_cell) (STV 1.0 0.9091)) +(: cnet_isa_f7b912a247 (IsA sideropenia mineral_deficiency) (STV 1.0 0.9091)) +(: cnet_isa_4139f42241 (IsA siderosis pneumoconiosis) (STV 1.0 0.9091)) +(: cnet_isa_2fd96442b6 (IsA sidesaddle saddle) (STV 1.0 0.9091)) +(: cnet_isa_f9c6c5a1a1 (IsA sideshow show) (STV 1.0 0.9091)) +(: cnet_isa_d9768eeb87 (IsA sideshow incident) (STV 1.0 0.9091)) +(: cnet_isa_7c5e0b67bf (IsA sidesman assistant) (STV 1.0 0.9091)) +(: cnet_isa_e10651d7e9 (IsA sidestep step) (STV 1.0 0.9091)) +(: cnet_isa_b59c40b12d (IsA sidestroke swimming_stroke) (STV 1.0 0.9091)) +(: cnet_isa_a2c3809199 (IsA sideswipe bump) (STV 1.0 0.9091)) +(: cnet_isa_aac439efcb (IsA sidewalk concrete_path) (STV 1.0 0.9091)) +(: cnet_isa_3e8480bb35 (IsA sidewalk not_for_sex) (STV 1.0 0.9454)) +(: cnet_isa_7b54390987 (IsA sidewalk walkway) (STV 1.0 0.9339)) +(: cnet_isa_e5956e93f5 (IsA sidewalk walk) (STV 1.0 0.9091)) +(: cnet_isa_dbe4200a34 (IsA sidewall side) (STV 1.0 0.9091)) +(: cnet_isa_9fbc3e5045 (IsA sidewall wall) (STV 1.0 0.9091)) +(: cnet_isa_460f6f7cfb (IsA sidewinder rattlesnake) (STV 1.0 0.9091)) +(: cnet_isa_048fef3715 (IsA sidewinder missile) (STV 1.0 0.9091)) +(: cnet_isa_eaadc18917 (IsA siding railroad_track) (STV 1.0 0.9091)) +(: cnet_isa_302ac63dd4 (IsA siding building_material) (STV 1.0 0.9091)) +(: cnet_isa_73eed0a0ac (IsA siege blockade) (STV 1.0 0.9091)) +(: cnet_isa_612ea6119c (IsA sienna earth_color) (STV 1.0 0.9091)) +(: cnet_isa_0d48ee9f49 (IsA sierra spanish_mackerel) (STV 1.0 0.9091)) +(: cnet_isa_211f147df0 (IsA sierra_leone_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_c73167bef5 (IsA sierra_leonean african) (STV 1.0 0.9091)) +(: cnet_isa_630ddc1c0d (IsA sierra_lodgepole_pine pine) (STV 1.0 0.9091)) +(: cnet_isa_076e700259 (IsA sierra_plum plum) (STV 1.0 0.9091)) +(: cnet_isa_e042e0ef47 (IsA siesta nap) (STV 1.0 0.9091)) +(: cnet_isa_2e7746ff60 (IsA sieva_bean shell_bean) (STV 1.0 0.9091)) +(: cnet_isa_d90af39d1f (IsA sieve strainer) (STV 1.0 0.9091)) +(: cnet_isa_c100e68655 (IsA sieve_tube vascular_tissue) (STV 1.0 0.9091)) +(: cnet_isa_37a305f21e (IsA sifter sieve) (STV 1.0 0.9091)) +(: cnet_isa_f32f106135 (IsA sigeh marriage) (STV 1.0 0.9091)) +(: cnet_isa_8d6d267230 (IsA sigh utterance) (STV 1.0 0.9091)) +(: cnet_isa_5e1e9db50c (IsA sigh sound) (STV 1.0 0.9091)) +(: cnet_isa_7153a0d6b8 (IsA sight sense) (STV 1.0 0.9339)) +(: cnet_isa_5fbe316483 (IsA sight compass) (STV 1.0 0.9091)) +(: cnet_isa_af6b76a79f (IsA sight exteroception) (STV 1.0 0.9091)) +(: cnet_isa_de2f2f7c20 (IsA sight modality) (STV 1.0 0.9091)) +(: cnet_isa_66e72733a1 (IsA sight position) (STV 1.0 0.9091)) +(: cnet_isa_301e5b4f6f (IsA sight visual_percept) (STV 1.0 0.9091)) +(: cnet_isa_2de818fd33 (IsA sight display) (STV 1.0 0.9091)) +(: cnet_isa_a3dd7ed9b5 (IsA sight_draft draft) (STV 1.0 0.9091)) +(: cnet_isa_cedc4404b6 (IsA sight_gag joke) (STV 1.0 0.9091)) +(: cnet_isa_eb07e45bb9 (IsA sight_setting gunsight) (STV 1.0 0.9091)) +(: cnet_isa_d6ff7e78d4 (IsA sighting observation) (STV 1.0 0.9091)) +(: cnet_isa_157fe1448a (IsA sightreader performer) (STV 1.0 0.9091)) +(: cnet_isa_5a335c75e8 (IsA sight optical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_b7ea6ebc9f (IsA sightseeing popular_vacation_activity) (STV 1.0 0.9091)) +(: cnet_isa_0ca531a02c (IsA sightseeing look) (STV 1.0 0.9091)) +(: cnet_isa_243c4db918 (IsA sightseer tourist) (STV 1.0 0.9091)) +(: cnet_isa_93c42127a2 (IsA sigma letter) (STV 1.0 0.9091)) +(: cnet_isa_49c34179fd (IsA sigmodon mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_f08dfe61f9 (IsA sigmoid_colon colon) (STV 1.0 0.9091)) +(: cnet_isa_673f0addba (IsA sigmoid_sinus venous_sinus) (STV 1.0 0.9091)) +(: cnet_isa_1e032099de (IsA sigmoid_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_a2171ffb71 (IsA sigmoidectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_0f06fd2fee (IsA sigmoidoscope endoscope) (STV 1.0 0.9091)) +(: cnet_isa_ffed383a48 (IsA sigmoidoscopy endoscopy) (STV 1.0 0.9091)) +(: cnet_isa_b73b3703f0 (IsA sign clue) (STV 1.0 0.9091)) +(: cnet_isa_3a4da125c1 (IsA sign communication) (STV 1.0 0.9091)) +(: cnet_isa_22e7434ef6 (IsA sign gesture) (STV 1.0 0.9091)) +(: cnet_isa_b3596833a3 (IsA sign mathematical_notation) (STV 1.0 0.9091)) +(: cnet_isa_a068d81ad8 (IsA sign language_unit) (STV 1.0 0.9091)) +(: cnet_isa_336875fcb9 (IsA sign evidence) (STV 1.0 0.9091)) +(: cnet_isa_2c388f1870 (IsA sign_industry industry) (STV 1.0 0.9091)) +(: cnet_isa_2e97855b2c (IsA sign_language language) (STV 1.0 0.9091)) +(: cnet_isa_ee04a27386 (IsA sign_manual signature) (STV 1.0 0.9091)) +(: cnet_isa_d00a9bb439 (IsA sign_of_cross gesture) (STV 1.0 0.9091)) +(: cnet_isa_746d047f4d (IsA sign_of_zodiac region) (STV 1.0 0.9091)) +(: cnet_isa_8dfddce8cf (IsA sign_painter painter) (STV 1.0 0.9091)) +(: cnet_isa_48f5a0288f (IsA signage collection) (STV 1.0 0.9091)) +(: cnet_isa_8e9737dee1 (IsA signal communication) (STV 1.0 0.9091)) +(: cnet_isa_cdeff1a5b0 (IsA signal incitement) (STV 1.0 0.9091)) +(: cnet_isa_f0d36a3796 (IsA signal electricity) (STV 1.0 0.9091)) +(: cnet_isa_412ed0c7a5 (IsA signal_box building) (STV 1.0 0.9091)) +(: cnet_isa_5cd367dee4 (IsA signal_detection reception) (STV 1.0 0.9091)) +(: cnet_isa_33b514e599 (IsA signal_fire beacon) (STV 1.0 0.9091)) +(: cnet_isa_57b135bfa5 (IsA signal_level amplitude) (STV 1.0 0.9091)) +(: cnet_isa_4aea0591a6 (IsA signal_to_noise_ratio ratio) (STV 1.0 0.9091)) +(: cnet_isa_73c2ec5007 (IsA signaler communicator) (STV 1.0 0.9091)) +(: cnet_isa_5f74f381c8 (IsA signaling_device device) (STV 1.0 0.9091)) +(: cnet_isa_cba07e5e9f (IsA signalization indication) (STV 1.0 0.9091)) +(: cnet_isa_39f1084d67 (IsA signalman signaler) (STV 1.0 0.9091)) +(: cnet_isa_7bae3ad1a1 (IsA signalman trainman) (STV 1.0 0.9091)) +(: cnet_isa_66692697a1 (IsA signal_intelligence intelligence) (STV 1.0 0.9091)) +(: cnet_isa_9eff4bd6b4 (IsA signature name) (STV 1.0 0.9091)) +(: cnet_isa_23c3337f23 (IsA signature sheet) (STV 1.0 0.9091)) +(: cnet_isa_7a8d9c6069 (IsA signature tune) (STV 1.0 0.9091)) +(: cnet_isa_ae7fea393d (IsA signature_recognition biometric_identification) (STV 1.0 0.9091)) +(: cnet_isa_511ddf003c (IsA signboard structure) (STV 1.0 0.9091)) +(: cnet_isa_ebb0813936 (IsA signer communicator) (STV 1.0 0.9091)) +(: cnet_isa_8907fc5da4 (IsA signer person) (STV 1.0 0.9091)) +(: cnet_isa_dda3772bad (IsA signet seal) (STV 1.0 0.9091)) +(: cnet_isa_03c7d558b8 (IsA signet_ring ring) (STV 1.0 0.9091)) +(: cnet_isa_736c66e694 (IsA significance importance) (STV 1.0 0.9091)) +(: cnet_isa_c3516102c4 (IsA significance meaning) (STV 1.0 0.9091)) +(: cnet_isa_93827e1df2 (IsA significant_digit digit) (STV 1.0 0.9091)) +(: cnet_isa_0b8418f0ad (IsA signor man) (STV 1.0 0.9091)) +(: cnet_isa_7dee178e72 (IsA signora title) (STV 1.0 0.9091)) +(: cnet_isa_68b0dab300 (IsA signora wife) (STV 1.0 0.9091)) +(: cnet_isa_e034e8cc81 (IsA signore man) (STV 1.0 0.9091)) +(: cnet_isa_5292822277 (IsA signorina title) (STV 1.0 0.9091)) +(: cnet_isa_682944c0d5 (IsA signorina unmarried_woman) (STV 1.0 0.9091)) +(: cnet_isa_bb1c85193a (IsA signpost sign) (STV 1.0 0.9091)) +(: cnet_isa_a49d2c58ae (IsA sigyn norse_deity) (STV 1.0 0.9091)) +(: cnet_isa_bf9aff074f (IsA sihasapa teton_dakota) (STV 1.0 0.9091)) +(: cnet_isa_4a587a7c54 (IsA sikh disciple) (STV 1.0 0.9091)) +(: cnet_isa_a8ac383cb7 (IsA sikhism religion) (STV 1.0 0.9091)) +(: cnet_isa_9c841a4218 (IsA silage feed) (STV 1.0 0.9091)) +(: cnet_isa_869081889f (IsA sild sardine) (STV 1.0 0.9091)) +(: cnet_isa_c6f89189c5 (IsA silence sound_property) (STV 1.0 0.9091)) +(: cnet_isa_283bfd7289 (IsA silence condition) (STV 1.0 0.9091)) +(: cnet_isa_6eb696e56a (IsA silencer acoustic_device) (STV 1.0 0.9091)) +(: cnet_isa_097593dcb7 (IsA silencer tube) (STV 1.0 0.9091)) +(: cnet_isa_e1b24c1987 (IsA silene flower) (STV 1.0 0.9091)) +(: cnet_isa_b1f34305f4 (IsA silent_butler receptacle) (STV 1.0 0.9091)) +(: cnet_isa_f1350612c3 (IsA silent_movie movie) (STV 1.0 0.9091)) +(: cnet_isa_55c44b9603 (IsA silent_partner partner) (STV 1.0 0.9091)) +(: cnet_isa_282425e39c (IsA silent_treatment rebuff) (STV 1.0 0.9091)) +(: cnet_isa_5c212677da (IsA silenus greek_deity) (STV 1.0 0.9091)) +(: cnet_isa_c343942e97 (IsA silesia fabric) (STV 1.0 0.9091)) +(: cnet_isa_40fca047a2 (IsA silex silica) (STV 1.0 0.9091)) +(: cnet_isa_aa7a5833a7 (IsA silhouette drawing) (STV 1.0 0.9091)) +(: cnet_isa_841921216d (IsA silhouette outline) (STV 1.0 0.9091)) +(: cnet_isa_87906434d0 (IsA silica oxide) (STV 1.0 0.9091)) +(: cnet_isa_6b24e95279 (IsA silica_gel colloid) (STV 1.0 0.9091)) +(: cnet_isa_cd374f3dff (IsA silicate salt) (STV 1.0 0.9091)) +(: cnet_isa_d04f201580 (IsA silicic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_3b79df1158 (IsA silicide compound) (STV 1.0 0.9091)) +(: cnet_isa_7e81ca8f14 (IsA silicle silique) (STV 1.0 0.9091)) +(: cnet_isa_4f36243f90 (IsA silicon element) (STV 1.0 0.9091)) +(: cnet_isa_7d95a0d31b (IsA silicon chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_1992df5de9 (IsA silicon semiconductor) (STV 1.0 0.9091)) +(: cnet_isa_54ae0b7203 (IsA silicon_bronze bronze) (STV 1.0 0.9091)) +(: cnet_isa_acf6ad042c (IsA silicon_carbide carbide) (STV 1.0 0.9091)) +(: cnet_isa_31d087c213 (IsA silicone polymer) (STV 1.0 0.9091)) +(: cnet_isa_7bde652c93 (IsA silicone siloxane) (STV 1.0 0.9091)) +(: cnet_isa_8eea647d97 (IsA silicone_resin plastic) (STV 1.0 0.9091)) +(: cnet_isa_722a8d1a94 (IsA silicone_rubber synthetic_rubber) (STV 1.0 0.9091)) +(: cnet_isa_c7d2e8dad4 (IsA silicosis pneumoconiosis) (STV 1.0 0.9091)) +(: cnet_isa_ac665e5c9b (IsA silique capsule) (STV 1.0 0.9091)) +(: cnet_isa_a9fdfa7e23 (IsA silk fabric) (STV 1.0 0.9091)) +(: cnet_isa_9d0c008e68 (IsA silk animal_fiber) (STV 1.0 0.9091)) +(: cnet_isa_ed460fb461 (IsA silk_gland gland) (STV 1.0 0.9091)) +(: cnet_isa_82d4f53215 (IsA silk_oak grevillea) (STV 1.0 0.9091)) +(: cnet_isa_8e6135615c (IsA silk_tree albizzia) (STV 1.0 0.9091)) +(: cnet_isa_a8966bcd7d (IsA silk_vine vine) (STV 1.0 0.9091)) +(: cnet_isa_4c062789f1 (IsA silkiness smoothness) (STV 1.0 0.9091)) +(: cnet_isa_fafc9fe17d (IsA silk garment) (STV 1.0 0.9091)) +(: cnet_isa_48ef1f8280 (IsA silkscreen print) (STV 1.0 0.9091)) +(: cnet_isa_1193500638 (IsA silkworm caterpillar) (STV 1.0 0.9091)) +(: cnet_isa_021a8468d4 (IsA silkworm_seed egg) (STV 1.0 0.9091)) +(: cnet_isa_503345a85e (IsA silky_anteater anteater) (STV 1.0 0.9091)) +(: cnet_isa_b514136ed3 (IsA silky_cornel dogwood) (STV 1.0 0.9091)) +(: cnet_isa_0cc9b2a7d9 (IsA silky_dogwood dogwood) (STV 1.0 0.9091)) +(: cnet_isa_73425283d2 (IsA silky_oak silk_oak) (STV 1.0 0.9091)) +(: cnet_isa_81f7099748 (IsA silky_pocket_mouse pocket_mouse) (STV 1.0 0.9091)) +(: cnet_isa_c570fa03fd (IsA silky_tamarin tamarin) (STV 1.0 0.9091)) +(: cnet_isa_e28a3e9cc2 (IsA silky_terrier terrier) (STV 1.0 0.9091)) +(: cnet_isa_9bcd79311e (IsA silky_wisteria wisteria) (STV 1.0 0.9091)) +(: cnet_isa_c44078e64c (IsA sill structural_member) (STV 1.0 0.9091)) +(: cnet_isa_606859e40a (IsA sill rock) (STV 1.0 0.9091)) +(: cnet_isa_6d52d65b53 (IsA sillaginidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_2ff4d332ce (IsA sillago fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_40ebdcff2b (IsA silly child) (STV 1.0 0.9091)) +(: cnet_isa_2e848cc121 (IsA silly_season time_period) (STV 1.0 0.9091)) +(: cnet_isa_2cd42d01c5 (IsA silo tower) (STV 1.0 0.9091)) +(: cnet_isa_bb3dbdfcdd (IsA silo military_installation) (STV 1.0 0.9091)) +(: cnet_isa_caa21bd087 (IsA siloxane compound) (STV 1.0 0.9091)) +(: cnet_isa_cd7daae1fc (IsA silphium asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_51c01067d6 (IsA silt soil) (STV 1.0 0.9091)) +(: cnet_isa_80b75f44cc (IsA siltstone sandstone) (STV 1.0 0.9091)) +(: cnet_isa_ec25ded99a (IsA silurid catfish) (STV 1.0 0.9091)) +(: cnet_isa_7aac156693 (IsA siluridae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_8229122956 (IsA siluriforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_f48cf9be71 (IsA silurus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_d6360d84da (IsA silva forest) (STV 1.0 0.9091)) +(: cnet_isa_4b331226b7 (IsA silver metal) (STV 1.0 0.9608)) +(: cnet_isa_d38efe323a (IsA silver precious_metal) (STV 1.0 0.9091)) +(: cnet_isa_75eb05c3f7 (IsA silver conductor) (STV 1.0 0.9091)) +(: cnet_isa_3209635edf (IsA silver noble_metal) (STV 1.0 0.9091)) +(: cnet_isa_3dc15c78a9 (IsA silver_age time_period) (STV 1.0 0.9091)) +(: cnet_isa_211a6bd78c (IsA silver_ash tree) (STV 1.0 0.9091)) +(: cnet_isa_31d09f0aab (IsA silver_beech new_zealand_beech) (STV 1.0 0.9091)) +(: cnet_isa_0dac9ae89a (IsA silver_bell angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_db7e7cab57 (IsA silver_bell_tree silver_bell) (STV 1.0 0.9091)) +(: cnet_isa_a7de3c914d (IsA silver_birch birch) (STV 1.0 0.9091)) +(: cnet_isa_758dcebcd1 (IsA silver_bromide bromide) (STV 1.0 0.9091)) +(: cnet_isa_879076d839 (IsA silver_bullet solution) (STV 1.0 0.9091)) +(: cnet_isa_d2a0abaffa (IsA silver_certificate bill) (STV 1.0 0.9091)) +(: cnet_isa_6cd299b01b (IsA silver_chloride chloride) (STV 1.0 0.9091)) +(: cnet_isa_4e8488b159 (IsA silver_cord alliance) (STV 1.0 0.9091)) +(: cnet_isa_ac23315e17 (IsA silver_dollar dollar) (STV 1.0 0.9091)) +(: cnet_isa_209826cd9d (IsA silver_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_89ee4ede05 (IsA silver_fir fir) (STV 1.0 0.9091)) +(: cnet_isa_647e65d3e3 (IsA silver_fox red_fox) (STV 1.0 0.9091)) +(: cnet_isa_3094e17fc0 (IsA silver_grass grass) (STV 1.0 0.9091)) +(: cnet_isa_38e968bdb1 (IsA silver_hake hake) (STV 1.0 0.9091)) +(: cnet_isa_6bc107419b (IsA silver_iodide iodide) (STV 1.0 0.9091)) +(: cnet_isa_2ce6d46a8c (IsA silver_jenny mojarra) (STV 1.0 0.9091)) +(: cnet_isa_b94c55ad99 (IsA silver_jubilee jubilee) (STV 1.0 0.9091)) +(: cnet_isa_b4e6d0a5a6 (IsA silver_lace_vine vine) (STV 1.0 0.9091)) +(: cnet_isa_acc795c5f1 (IsA silver_lime linden) (STV 1.0 0.9091)) +(: cnet_isa_e48c8b5cab (IsA silver_lining consolation) (STV 1.0 0.9091)) +(: cnet_isa_d514856734 (IsA silver_maple maple) (STV 1.0 0.9091)) +(: cnet_isa_336ccbe0ed (IsA silver_medal trophy) (STV 1.0 0.9091)) +(: cnet_isa_7270540237 (IsA silver_mine mine) (STV 1.0 0.9091)) +(: cnet_isa_24a06dab1c (IsA silver_nitrate caustic) (STV 1.0 0.9091)) +(: cnet_isa_6ccd609468 (IsA silver_nitrate nitrate) (STV 1.0 0.9091)) +(: cnet_isa_e86f39c100 (IsA silver_oak silk_oak) (STV 1.0 0.9091)) +(: cnet_isa_890729a3c0 (IsA silver_perch drum) (STV 1.0 0.9091)) +(: cnet_isa_10c53a24bf (IsA silver_plate plating) (STV 1.0 0.9091)) +(: cnet_isa_52e4ea89a0 (IsA silver_plate tableware) (STV 1.0 0.9091)) +(: cnet_isa_b2dc136af3 (IsA silver_protein colloid) (STV 1.0 0.9091)) +(: cnet_isa_2edb5b90fd (IsA silver_quandong wood) (STV 1.0 0.9091)) +(: cnet_isa_c76e5dd5df (IsA silver_sage sagebrush) (STV 1.0 0.9091)) +(: cnet_isa_c5fbc2c9bc (IsA silver_salmon salmon) (STV 1.0 0.9091)) +(: cnet_isa_8459d6eabf (IsA silver_screen film) (STV 1.0 0.9091)) +(: cnet_isa_4cae8e2dac (IsA silver_solder solder) (STV 1.0 0.9091)) +(: cnet_isa_a6ca1c5a25 (IsA silver_spoon inherited_wealth) (STV 1.0 0.9091)) +(: cnet_isa_3562cb8d16 (IsA silver_standard standard) (STV 1.0 0.9091)) +(: cnet_isa_97ac25b9a6 (IsA silver_star_medal decoration) (STV 1.0 0.9091)) +(: cnet_isa_deba873601 (IsA silver_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_556f092cf1 (IsA silver_tree_fern tree_fern) (STV 1.0 0.9091)) +(: cnet_isa_5ab37f4dbf (IsA silver_wattle wattle) (STV 1.0 0.9091)) +(: cnet_isa_4fc9c3e4cf (IsA silver_wedding_anniversary wedding_anniversary) (STV 1.0 0.9091)) +(: cnet_isa_8850787a17 (IsA silver_whiting whiting) (STV 1.0 0.9091)) +(: cnet_isa_d655090e40 (IsA silver_willow willow) (STV 1.0 0.9091)) +(: cnet_isa_6be1220cb6 (IsA silverback gorilla) (STV 1.0 0.9091)) +(: cnet_isa_bfc6c6f9d3 (IsA silverberry oleaster) (STV 1.0 0.9091)) +(: cnet_isa_93434d7dc5 (IsA silverfish goldfish) (STV 1.0 0.9091)) +(: cnet_isa_37cb45bd30 (IsA silverfish thysanuran_insect) (STV 1.0 0.9091)) +(: cnet_isa_c95dd0d2fe (IsA silverpoint drawing) (STV 1.0 0.9091)) +(: cnet_isa_bfa1de7f5b (IsA silverrod goldenrod) (STV 1.0 0.9091)) +(: cnet_isa_1a943bd963 (IsA silverside spiny_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_e15a1d3a08 (IsA silversmith jewelry_maker) (STV 1.0 0.9091)) +(: cnet_isa_90d2e85a6d (IsA silverspot fritillary) (STV 1.0 0.9091)) +(: cnet_isa_84a0861185 (IsA silversword shrub) (STV 1.0 0.9091)) +(: cnet_isa_350c4f36c4 (IsA silvervine vine) (STV 1.0 0.9091)) +(: cnet_isa_e470e1553c (IsA silverware tableware) (STV 1.0 0.9091)) +(: cnet_isa_f5009f939b (IsA silverweed cinquefoil) (STV 1.0 0.9091)) +(: cnet_isa_744374120e (IsA silverweed vine) (STV 1.0 0.9091)) +(: cnet_isa_aa6e344700 (IsA silverwork work) (STV 1.0 0.9091)) +(: cnet_isa_7031485065 (IsA silvery_spleenwort fern) (STV 1.0 0.9091)) +(: cnet_isa_1838863bb0 (IsA silvex herbicide) (STV 1.0 0.9091)) +(: cnet_isa_f399441ffb (IsA silvia bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_bfdae07450 (IsA silviculture forestry) (STV 1.0 0.9091)) +(: cnet_isa_977757d197 (IsA silybum asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f34de3c739 (IsA sima rock) (STV 1.0 0.9091)) +(: cnet_isa_45db966260 (IsA simarouba rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_52ee942184 (IsA simaroubaceae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_f1cecd670e (IsA simazine herbicide) (STV 1.0 0.9091)) +(: cnet_isa_8627fdf83c (IsA simeon patriarch) (STV 1.0 0.9091)) +(: cnet_isa_235a9c228a (IsA simian primate) (STV 1.0 0.9091)) +(: cnet_isa_732d4234f2 (IsA similarity sameness) (STV 1.0 0.9091)) +(: cnet_isa_7b1a16a2b6 (IsA similarity gestalt_law_of_organization) (STV 1.0 0.9091)) +(: cnet_isa_a8291d3819 (IsA simile figure_of_speech) (STV 1.0 0.9091)) +(: cnet_isa_4abc41e73f (IsA simile trope) (STV 1.0 0.9091)) +(: cnet_isa_cfbeaa942d (IsA simmer temperature) (STV 1.0 0.9091)) +(: cnet_isa_cb870300cb (IsA simnel bread) (STV 1.0 0.9091)) +(: cnet_isa_676f4d3bac (IsA simnel fruitcake) (STV 1.0 0.9091)) +(: cnet_isa_4e5d2c9b10 (IsA simony traffic) (STV 1.0 0.9091)) +(: cnet_isa_b4271a3fb6 (IsA simoom wind) (STV 1.0 0.9091)) +(: cnet_isa_d5c9d64600 (IsA simper smile) (STV 1.0 0.9091)) +(: cnet_isa_bd18743c4e (IsA simperer smiler) (STV 1.0 0.9091)) +(: cnet_isa_94fe127225 (IsA simple herb) (STV 1.0 0.9091)) +(: cnet_isa_9ffb56384e (IsA simple_closed_curve closed_curve) (STV 1.0 0.9091)) +(: cnet_isa_9bf1abef2a (IsA simple_eye eye) (STV 1.0 0.9091)) +(: cnet_isa_4af1ca7364 (IsA simple_fracture fracture) (STV 1.0 0.9091)) +(: cnet_isa_393636afb3 (IsA simple_fruit berry) (STV 1.0 0.9091)) +(: cnet_isa_af75ef8691 (IsA simple_harmonic_motion harmonic_motion) (STV 1.0 0.9091)) +(: cnet_isa_f8282082bf (IsA simple_interest interest) (STV 1.0 0.9091)) +(: cnet_isa_24a1178700 (IsA simple_leaf leaf) (STV 1.0 0.9091)) +(: cnet_isa_186e0f2d1d (IsA simple_mastectomy mastectomy) (STV 1.0 0.9091)) +(: cnet_isa_d2b5c969a5 (IsA simple_pendulum pendulum) (STV 1.0 0.9091)) +(: cnet_isa_b7aecaaa3e (IsA simple_phobia phobia) (STV 1.0 0.9091)) +(: cnet_isa_f885899947 (IsA simple_pistil pistil) (STV 1.0 0.9091)) +(: cnet_isa_f004f94ed2 (IsA simple_protein protein) (STV 1.0 0.9091)) +(: cnet_isa_cda927898d (IsA simple_sentence sentence) (STV 1.0 0.9091)) +(: cnet_isa_618553b223 (IsA simpleton person) (STV 1.0 0.9091)) +(: cnet_isa_e7bd8de7f6 (IsA simplicity naivete) (STV 1.0 0.9091)) +(: cnet_isa_0b64059105 (IsA simplicity naturalness) (STV 1.0 0.9091)) +(: cnet_isa_0975514a2e (IsA simplicity quality) (STV 1.0 0.9091)) +(: cnet_isa_8358970038 (IsA simplification elimination) (STV 1.0 0.9091)) +(: cnet_isa_b160030725 (IsA simplification explanation) (STV 1.0 0.9091)) +(: cnet_isa_95af1266bb (IsA simulacrum semblance) (STV 1.0 0.9091)) +(: cnet_isa_6b07c84692 (IsA simulation model) (STV 1.0 0.9091)) +(: cnet_isa_c5f1ae703c (IsA simulation technique) (STV 1.0 0.9091)) +(: cnet_isa_13cab35332 (IsA simulative_electronic_deception electronic_deception) (STV 1.0 0.9091)) +(: cnet_isa_43042a0a29 (IsA simulator machine) (STV 1.0 0.9091)) +(: cnet_isa_b8acdfbaad (IsA simulcast broadcast) (STV 1.0 0.9091)) +(: cnet_isa_92ade57e2e (IsA simuliidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_663a5272d9 (IsA simulium arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_9832b4af3b (IsA simultaneity timing) (STV 1.0 0.9091)) +(: cnet_isa_89562054ce (IsA simultaneous_equation equation) (STV 1.0 0.9091)) +(: cnet_isa_14f24eba30 (IsA sin transgression) (STV 1.0 0.9091)) +(: cnet_isa_42c5a415ac (IsA sin unrighteousness) (STV 1.0 0.9091)) +(: cnet_isa_8c5232db2f (IsA sin letter) (STV 1.0 0.9091)) +(: cnet_isa_23fe00df86 (IsA sinanthropus hominid) (STV 1.0 0.9091)) +(: cnet_isa_fd507e9c93 (IsA sinapis dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_29f6792347 (IsA sincerity naturalness) (STV 1.0 0.9091)) +(: cnet_isa_2f021fc3cb (IsA sincerity truthfulness) (STV 1.0 0.9091)) +(: cnet_isa_53bdc69c6d (IsA sinciput bone) (STV 1.0 0.9091)) +(: cnet_isa_4fc9e3be40 (IsA sind region) (STV 1.0 0.9091)) +(: cnet_isa_00bd81e270 (IsA sindhi indic) (STV 1.0 0.9091)) +(: cnet_isa_0fb3982bcc (IsA sindhi pakistani) (STV 1.0 0.9091)) +(: cnet_isa_43b7c5dd53 (IsA sine trigonometric_function) (STV 1.0 0.9091)) +(: cnet_isa_4ef67e00fe (IsA sine_curve wave) (STV 1.0 0.9091)) +(: cnet_isa_b7041ec426 (IsA sine_wave wave) (STV 1.0 0.9091)) +(: cnet_isa_6be9a84d2a (IsA sinecure position) (STV 1.0 0.9091)) +(: cnet_isa_4a1dfcdbf5 (IsA sinecure benefice) (STV 1.0 0.9091)) +(: cnet_isa_e851718860 (IsA singalong singing) (STV 1.0 0.9091)) +(: cnet_isa_cc1431afe1 (IsA singapore_dollar dollar) (STV 1.0 0.9091)) +(: cnet_isa_0a7f733865 (IsA singaporean asiatic) (STV 1.0 0.9091)) +(: cnet_isa_3a78e72e97 (IsA singer musician) (STV 1.0 0.9091)) +(: cnet_isa_beab7a3bd5 (IsA singer_songwriter musician) (STV 1.0 0.9091)) +(: cnet_isa_739c1cd1d1 (IsA singhalese asiatic) (STV 1.0 0.9091)) +(: cnet_isa_e9e51d3104 (IsA singing activity) (STV 1.0 0.9454)) +(: cnet_isa_2964f1632b (IsA singing form_of_entertainment) (STV 1.0 0.9091)) +(: cnet_isa_412a9af9c3 (IsA singing good_way_to_express_yourself) (STV 1.0 0.9091)) +(: cnet_isa_d62823e482 (IsA singing human_activity) (STV 1.0 0.9339)) +(: cnet_isa_e0b7a66921 (IsA singing popular_recreation) (STV 1.0 0.9339)) +(: cnet_isa_73e5d64c90 (IsA singing way_to_express_yourself) (STV 1.0 0.9091)) +(: cnet_isa_224f1c895a (IsA singing musical_performance) (STV 1.0 0.9091)) +(: cnet_isa_f115ae75c1 (IsA singing vocal_music) (STV 1.0 0.9091)) +(: cnet_isa_ff502a36c1 (IsA singing_song great_way_to_relieve_stress) (STV 1.0 0.9091)) +(: cnet_isa_dd7478fbbe (IsA singing_voice voice) (STV 1.0 0.9091)) +(: cnet_isa_aa96da6409 (IsA single base_hit) (STV 1.0 0.9091)) +(: cnet_isa_531a64487f (IsA single_bed bed) (STV 1.0 0.9091)) +(: cnet_isa_5c62c764a5 (IsA single_breasted_jacket jacket) (STV 1.0 0.9091)) +(: cnet_isa_081067223e (IsA single_breasted_suit suit) (STV 1.0 0.9091)) +(: cnet_isa_c9b602f871 (IsA single_combat fight) (STV 1.0 0.9091)) +(: cnet_isa_175ac07168 (IsA single_crochet crochet_stitch) (STV 1.0 0.9091)) +(: cnet_isa_b21718d94b (IsA single_entry bookkeeping) (STV 1.0 0.9091)) +(: cnet_isa_4ec20a22dd (IsA single_leaf nut_pine) (STV 1.0 0.9091)) +(: cnet_isa_69203db1b2 (IsA single_mindedness resoluteness) (STV 1.0 0.9091)) +(: cnet_isa_5cfe925397 (IsA single_nucleotide_polymorphism polymorphism) (STV 1.0 0.9091)) +(: cnet_isa_00a06ba585 (IsA single_prop propeller_plane) (STV 1.0 0.9091)) +(: cnet_isa_7711d63126 (IsA single_quote quotation_mark) (STV 1.0 0.9091)) +(: cnet_isa_0fbedd3435 (IsA single_reed_instrument beating_reed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_da23f8a673 (IsA single_rotor_helicopter helicopter) (STV 1.0 0.9091)) +(: cnet_isa_a7d3ad0ab4 (IsA single_spacing typing) (STV 1.0 0.9091)) +(: cnet_isa_bf1286f8b9 (IsA single_supplement surcharge) (STV 1.0 0.9091)) +(: cnet_isa_cec5489602 (IsA single_tax tax) (STV 1.0 0.9091)) +(: cnet_isa_19e61f5572 (IsA singleness assiduity) (STV 1.0 0.9091)) +(: cnet_isa_07f1c492ec (IsA singleness sincerity) (STV 1.0 0.9091)) +(: cnet_isa_0d5731345e (IsA single badminton) (STV 1.0 0.9091)) +(: cnet_isa_c0be596b00 (IsA single tennis) (STV 1.0 0.9091)) +(: cnet_isa_7a6d2acbc8 (IsA singlestick stick) (STV 1.0 0.9091)) +(: cnet_isa_4f469284d3 (IsA singlet undergarment) (STV 1.0 0.9091)) +(: cnet_isa_89815c627b (IsA singletary_pea wild_pea) (STV 1.0 0.9091)) +(: cnet_isa_28be4f4f7f (IsA singleton playing_card) (STV 1.0 0.9091)) +(: cnet_isa_028371a091 (IsA singleton set) (STV 1.0 0.9091)) +(: cnet_isa_b380c1792a (IsA singleton one) (STV 1.0 0.9091)) +(: cnet_isa_f1a07ee224 (IsA singsong intonation) (STV 1.0 0.9091)) +(: cnet_isa_94256cacc6 (IsA singular form) (STV 1.0 0.9091)) +(: cnet_isa_6b915f9a1f (IsA singular_matrix square_matrix) (STV 1.0 0.9091)) +(: cnet_isa_c97d8e2b0c (IsA singularity individuality) (STV 1.0 0.9091)) +(: cnet_isa_3d4cb6ce0a (IsA singularity unfamiliarity) (STV 1.0 0.9091)) +(: cnet_isa_f8db86ae18 (IsA sinhalese sanskrit) (STV 1.0 0.9091)) +(: cnet_isa_15c85aa802 (IsA sinitic sino_tibetan) (STV 1.0 0.9091)) +(: cnet_isa_df770d7d9c (IsA sink plumbing_fixture) (STV 1.0 0.9091)) +(: cnet_isa_28f00b2046 (IsA sink natural_process) (STV 1.0 0.9091)) +(: cnet_isa_f2f866dd11 (IsA sinker pitch) (STV 1.0 0.9091)) +(: cnet_isa_5ee1259185 (IsA sinker weight) (STV 1.0 0.9091)) +(: cnet_isa_3d409ea5dd (IsA sinkhole natural_depression) (STV 1.0 0.9091)) +(: cnet_isa_6fdd2f25f3 (IsA sinking decrease) (STV 1.0 0.9091)) +(: cnet_isa_3aa7816973 (IsA sinking descent) (STV 1.0 0.9091)) +(: cnet_isa_e6d99aaa48 (IsA sinking anxiety) (STV 1.0 0.9091)) +(: cnet_isa_f29e907b37 (IsA sinking_fund fund) (STV 1.0 0.9091)) +(: cnet_isa_4c064f351f (IsA sinking_spell decline) (STV 1.0 0.9091)) +(: cnet_isa_1ecebb3224 (IsA sinn_fein political_movement) (STV 1.0 0.9091)) +(: cnet_isa_3047eb9ecc (IsA sinner wrongdoer) (STV 1.0 0.9091)) +(: cnet_isa_2b29592afc (IsA sinningia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3cc18450df (IsA sino_tibetan natural_language) (STV 1.0 0.9091)) +(: cnet_isa_55c9e1e9d0 (IsA sinologist scholar) (STV 1.0 0.9091)) +(: cnet_isa_4f60cd16fb (IsA sinology humanistic_discipline) (STV 1.0 0.9091)) +(: cnet_isa_6bff6fdcbf (IsA sinopis ocher) (STV 1.0 0.9091)) +(: cnet_isa_8c9a18584a (IsA sinornis bird) (STV 1.0 0.9091)) +(: cnet_isa_49e6fd44a9 (IsA sinuosity curve) (STV 1.0 0.9091)) +(: cnet_isa_7d38427bd6 (IsA sinus cavity) (STV 1.0 0.9091)) +(: cnet_isa_1ec33bd2f0 (IsA sinus_headache headache) (STV 1.0 0.9091)) +(: cnet_isa_5c3d278219 (IsA sinusitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_7af0a16766 (IsA sinusoid passage) (STV 1.0 0.9091)) +(: cnet_isa_7eca1ea133 (IsA sinusoidal_projection equal_area_projection) (STV 1.0 0.9091)) +(: cnet_isa_5286b5eddb (IsA siouan amerind) (STV 1.0 0.9091)) +(: cnet_isa_385b3414f4 (IsA siouan buffalo_indian) (STV 1.0 0.9091)) +(: cnet_isa_e3481b041f (IsA siphon tube) (STV 1.0 0.9091)) +(: cnet_isa_281c534c0f (IsA siphonaptera animal_order) (STV 1.0 0.9091)) +(: cnet_isa_f132b42794 (IsA siphonophora animal_order) (STV 1.0 0.9091)) +(: cnet_isa_956c0b4eee (IsA siphonophore hydrozoan) (STV 1.0 0.9091)) +(: cnet_isa_0967de6d7f (IsA sipper drinker) (STV 1.0 0.9091)) +(: cnet_isa_8c1ab7019d (IsA sipuncula phylum) (STV 1.0 0.9091)) +(: cnet_isa_c1224f022d (IsA sir male_aristocrat) (STV 1.0 0.9091)) +(: cnet_isa_22a05cd84a (IsA sir man) (STV 1.0 0.9091)) +(: cnet_isa_378f743800 (IsA sir_karl_raimund_popper philosopher) (STV 1.0 0.9091)) +(: cnet_isa_756b010998 (IsA sirdar important_person) (STV 1.0 0.9091)) +(: cnet_isa_b88c460a04 (IsA sire male) (STV 1.0 0.9091)) +(: cnet_isa_c5c5ca518d (IsA sire nobleman) (STV 1.0 0.9091)) +(: cnet_isa_a2becaf08c (IsA siren salamander) (STV 1.0 0.9091)) +(: cnet_isa_4469fcf3bb (IsA siren acoustic_device) (STV 1.0 0.9091)) +(: cnet_isa_50a993de17 (IsA siren alarm) (STV 1.0 0.9091)) +(: cnet_isa_476065c24e (IsA siren sea_nymph) (STV 1.0 0.9091)) +(: cnet_isa_9796bb96df (IsA siren_call appeal) (STV 1.0 0.9091)) +(: cnet_isa_f75ccc7772 (IsA sirenia animal_order) (STV 1.0 0.9091)) +(: cnet_isa_bd1f8b5fd7 (IsA sirenidae amphibian_family) (STV 1.0 0.9091)) +(: cnet_isa_669ff6f095 (IsA siris albizzia) (STV 1.0 0.9091)) +(: cnet_isa_83ceea7ad4 (IsA sirloin cut) (STV 1.0 0.9091)) +(: cnet_isa_185e4c6723 (IsA sirloin_steak beefsteak) (STV 1.0 0.9091)) +(: cnet_isa_721e9b55ec (IsA sirloin_tip cut_of_beef) (STV 1.0 0.9091)) +(: cnet_isa_5ab7a349a4 (IsA sirrah male) (STV 1.0 0.9091)) +(: cnet_isa_15ce229c63 (IsA sisal agave) (STV 1.0 0.9091)) +(: cnet_isa_54b402c3eb (IsA sisal plant_fiber) (STV 1.0 0.9091)) +(: cnet_isa_7f5ac744d9 (IsA siskin finch) (STV 1.0 0.9091)) +(: cnet_isa_54dc893bb1 (IsA siskiyou_lewisia wildflower) (STV 1.0 0.9091)) +(: cnet_isa_ca33998f0d (IsA sison rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_54e79f2813 (IsA sissoo tree) (STV 1.0 0.9091)) +(: cnet_isa_6f77447e72 (IsA sissy coward) (STV 1.0 0.9091)) +(: cnet_isa_1e0c7f9008 (IsA sister sibling) (STV 1.0 0.9339)) +(: cnet_isa_944080a0b4 (IsA sister female_sibling) (STV 1.0 0.9091)) +(: cnet_isa_d1fde4de02 (IsA sister member) (STV 1.0 0.9091)) +(: cnet_isa_1ebcd5eeda (IsA sister nun) (STV 1.0 0.9091)) +(: cnet_isa_247e676272 (IsA sister_in_law in_law) (STV 1.0 0.9091)) +(: cnet_isa_6494e54427 (IsA sister_ship ship) (STV 1.0 0.9091)) +(: cnet_isa_2ec3a15392 (IsA sisterhood sect) (STV 1.0 0.9091)) +(: cnet_isa_a509331f3f (IsA sisterhood kinship) (STV 1.0 0.9091)) +(: cnet_isa_1861ddb0b2 (IsA sister_and_brother sibling) (STV 1.0 0.9091)) +(: cnet_isa_912ae30261 (IsA sistership association) (STV 1.0 0.9091)) +(: cnet_isa_f7fb19b94a (IsA sistrurus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_e27dae2335 (IsA sisyridae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_b41535a0e7 (IsA sisyrinchium liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a6553b5cd1 (IsA sit_down strike) (STV 1.0 0.9091)) +(: cnet_isa_b90ef4f3b5 (IsA sit_in civil_disobedience) (STV 1.0 0.9091)) +(: cnet_isa_71772940a1 (IsA sit_up stomach_exercise) (STV 1.0 0.9091)) +(: cnet_isa_b62c0443f5 (IsA sitar stringed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_42768be1bd (IsA sitar_player musician) (STV 1.0 0.9091)) +(: cnet_isa_a73fede3db (IsA sitcom tv_show) (STV 1.0 0.9091)) +(: cnet_isa_53e5980670 (IsA site position) (STV 1.0 0.9091)) +(: cnet_isa_e63ad779d9 (IsA site tract) (STV 1.0 0.9091)) +(: cnet_isa_b107df97ff (IsA site_visit visit) (STV 1.0 0.9091)) +(: cnet_isa_ace27d9926 (IsA sitka_spruce spruce) (STV 1.0 0.9091)) +(: cnet_isa_121267aeef (IsA sitka_willow willow) (STV 1.0 0.9091)) +(: cnet_isa_67e37499bd (IsA sitophylus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_09f5f08a65 (IsA sitotroga arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_bc18fa5f28 (IsA sitta bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_c403e92493 (IsA sitter organism) (STV 1.0 0.9091)) +(: cnet_isa_0b7a4857fb (IsA sittidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_78702cfbb4 (IsA sitting motion) (STV 1.0 0.9091)) +(: cnet_isa_2a92b05bf1 (IsA sitting session) (STV 1.0 0.9091)) +(: cnet_isa_03daa63b15 (IsA sitting_duck victim) (STV 1.0 0.9091)) +(: cnet_isa_18b6933194 (IsA sitting_trot trot) (STV 1.0 0.9091)) +(: cnet_isa_9102352989 (IsA situation condition) (STV 1.0 0.9091)) +(: cnet_isa_523f6593ce (IsA situation difficulty) (STV 1.0 0.9091)) +(: cnet_isa_97edecd3f0 (IsA situation state) (STV 1.0 0.9091)) +(: cnet_isa_ffa1e9efe2 (IsA situation_comedy comedy) (STV 1.0 0.9091)) +(: cnet_isa_7504ccc6aa (IsA situation_comedy television_program) (STV 1.0 0.9091)) +(: cnet_isa_de69a4df3b (IsA sitz_bath bathtub) (STV 1.0 0.9091)) +(: cnet_isa_a2daa8471f (IsA sium rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c8b434efe2 (IsA sivan jewish_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_265ef70386 (IsA sivapithecus hominid) (STV 1.0 0.9091)) +(: cnet_isa_a325c3a6d2 (IsA six digit) (STV 1.0 0.9091)) +(: cnet_isa_988ec7a869 (IsA six_footer person) (STV 1.0 0.9091)) +(: cnet_isa_f60d5cba2c (IsA six_of_wand strong_leadership) (STV 1.0 0.9091)) +(: cnet_isa_c71812c9ae (IsA six_pack carton) (STV 1.0 0.9091)) +(: cnet_isa_7335534470 (IsA six_spot dice) (STV 1.0 0.9091)) +(: cnet_isa_adf2a336ec (IsA six_spot domino) (STV 1.0 0.9091)) +(: cnet_isa_2bb5d5ea89 (IsA six_spot spot) (STV 1.0 0.9091)) +(: cnet_isa_24baef48e6 (IsA sixpence coin) (STV 1.0 0.9091)) +(: cnet_isa_79186f4890 (IsA sixpenny_nail nail) (STV 1.0 0.9091)) +(: cnet_isa_a1f464ca08 (IsA sixteen large_integer) (STV 1.0 0.9091)) +(: cnet_isa_1c44c2b8f8 (IsA sixteen_personality_factor_questionnaire self_report_personality_inventory) (STV 1.0 0.9091)) +(: cnet_isa_611acef2bb (IsA sixteenth rank) (STV 1.0 0.9091)) +(: cnet_isa_73dfa0169e (IsA sixteenth_note note) (STV 1.0 0.9091)) +(: cnet_isa_5adf06f31f (IsA sixteenth_part common_fraction) (STV 1.0 0.9091)) +(: cnet_isa_67458774d3 (IsA sixth interval) (STV 1.0 0.9091)) +(: cnet_isa_7f25f80749 (IsA sixth rank) (STV 1.0 0.9091)) +(: cnet_isa_439744e86b (IsA sixth_day_of_week friday) (STV 1.0 0.9091)) +(: cnet_isa_f9f0202b04 (IsA sixth_former student) (STV 1.0 0.9091)) +(: cnet_isa_10c72ddea2 (IsA sixty decade) (STV 1.0 0.9091)) +(: cnet_isa_459777735f (IsA sixty time_of_life) (STV 1.0 0.9091)) +(: cnet_isa_96a5a78101 (IsA sixtieth rank) (STV 1.0 0.9091)) +(: cnet_isa_46566678c6 (IsA sixty large_integer) (STV 1.0 0.9091)) +(: cnet_isa_ced5a1d25b (IsA sixty_fourth_note note) (STV 1.0 0.9091)) +(: cnet_isa_5d09be04b8 (IsA size magnitude) (STV 1.0 0.9091)) +(: cnet_isa_408bc6d466 (IsA size property) (STV 1.0 0.9091)) +(: cnet_isa_b1a5e0188e (IsA size situation) (STV 1.0 0.9091)) +(: cnet_isa_df7e296161 (IsA size filler) (STV 1.0 0.9091)) +(: cnet_isa_d5120c32f6 (IsA size_constancy constancy) (STV 1.0 0.9091)) +(: cnet_isa_06d8af141c (IsA size_stick measuring_stick) (STV 1.0 0.9091)) +(: cnet_isa_c3db7418c4 (IsA sizzle noise) (STV 1.0 0.9091)) +(: cnet_isa_ae9a9c3331 (IsA skagit salish) (STV 1.0 0.9091)) +(: cnet_isa_6e0f08d629 (IsA skank dancing) (STV 1.0 0.9091)) +(: cnet_isa_143f124f94 (IsA skate ray) (STV 1.0 0.9091)) +(: cnet_isa_e66dfe74ed (IsA skate sport_equipment) (STV 1.0 0.9091)) +(: cnet_isa_675a498aed (IsA skate_park park) (STV 1.0 0.9091)) +(: cnet_isa_d0d2a54531 (IsA skateboard toy) (STV 1.0 0.9091)) +(: cnet_isa_37f7e3735b (IsA skateboard board) (STV 1.0 0.9091)) +(: cnet_isa_2867ee082f (IsA skateboard wheeled_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_63400cc528 (IsA skateboarder skater) (STV 1.0 0.9091)) +(: cnet_isa_8c95a3e54f (IsA skateboarding skating) (STV 1.0 0.9091)) +(: cnet_isa_6f7273dfd0 (IsA skater athlete) (STV 1.0 0.9091)) +(: cnet_isa_681ebd9c85 (IsA skating activity) (STV 1.0 0.9454)) +(: cnet_isa_b2b6b31d07 (IsA skating sport) (STV 1.0 0.9091)) +(: cnet_isa_e4dcd22f7a (IsA skedaddle escape) (STV 1.0 0.9091)) +(: cnet_isa_0631a56c7e (IsA skeen_arch arch) (STV 1.0 0.9091)) +(: cnet_isa_b0d78c52a0 (IsA skeet shoot) (STV 1.0 0.9091)) +(: cnet_isa_ec88b0b9e6 (IsA skeg brace) (STV 1.0 0.9091)) +(: cnet_isa_afd59954d6 (IsA skein hank) (STV 1.0 0.9091)) +(: cnet_isa_d4260edf5b (IsA skeletal_muscle muscle) (STV 1.0 0.9091)) +(: cnet_isa_27c38cedb1 (IsA skeletal_structure structure) (STV 1.0 0.9091)) +(: cnet_isa_16c07bf8db (IsA skeletal_system system) (STV 1.0 0.9091)) +(: cnet_isa_1bb88442c6 (IsA skeleton supporting_structure) (STV 1.0 0.9091)) +(: cnet_isa_b0fd30046c (IsA skeleton scandal) (STV 1.0 0.9091)) +(: cnet_isa_fe2f11bc6f (IsA skeleton minimum) (STV 1.0 0.9091)) +(: cnet_isa_1e0e100046 (IsA skeleton_fork_fern whisk_fern) (STV 1.0 0.9091)) +(: cnet_isa_3ff6ee90b3 (IsA skeleton_key passkey) (STV 1.0 0.9091)) +(: cnet_isa_c27cfb3292 (IsA skeleton_shrimp amphipod) (STV 1.0 0.9091)) +(: cnet_isa_0ea75131ad (IsA skep basket) (STV 1.0 0.9091)) +(: cnet_isa_8a810a585d (IsA skep beehive) (STV 1.0 0.9091)) +(: cnet_isa_8deacb39d3 (IsA skepful containerful) (STV 1.0 0.9091)) +(: cnet_isa_6bec3c1cfa (IsA skeptic intellectual) (STV 1.0 0.9091)) +(: cnet_isa_783236b82d (IsA sketch drawing) (STV 1.0 0.9091)) +(: cnet_isa_189dfe65b8 (IsA sketch description) (STV 1.0 0.9091)) +(: cnet_isa_fb9871350f (IsA sketch summary) (STV 1.0 0.9091)) +(: cnet_isa_918302aa56 (IsA sketch_map map) (STV 1.0 0.9091)) +(: cnet_isa_72d4c778c8 (IsA sketchbook book) (STV 1.0 0.9091)) +(: cnet_isa_36a7ca416a (IsA sketcher writing_implement) (STV 1.0 0.9091)) +(: cnet_isa_c54725830c (IsA sketcher draftsman) (STV 1.0 0.9091)) +(: cnet_isa_0e1d4bc418 (IsA sketchiness incompleteness) (STV 1.0 0.9091)) +(: cnet_isa_5d4015c499 (IsA skew_arch arch) (STV 1.0 0.9091)) +(: cnet_isa_300f995271 (IsA skewer pin) (STV 1.0 0.9091)) +(: cnet_isa_3af8d5e6a9 (IsA ski runner) (STV 1.0 0.9091)) +(: cnet_isa_cb6e29cc46 (IsA ski_binding mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_ffb1ce58a7 (IsA ski_boot boot) (STV 1.0 0.9091)) +(: cnet_isa_a604500d97 (IsA ski_cap cap) (STV 1.0 0.9091)) +(: cnet_isa_c8b96acf87 (IsA ski_condition condition) (STV 1.0 0.9091)) +(: cnet_isa_c73b7d793d (IsA ski_jump ramp) (STV 1.0 0.9091)) +(: cnet_isa_82034c130c (IsA ski_jumper bounder) (STV 1.0 0.9091)) +(: cnet_isa_1272923555 (IsA ski_jumper skier) (STV 1.0 0.9091)) +(: cnet_isa_e0bb115d9c (IsA ski_jumping skiing) (STV 1.0 0.9091)) +(: cnet_isa_1d98632a2c (IsA ski_lodge hotel) (STV 1.0 0.9091)) +(: cnet_isa_51c0174e5d (IsA ski_mask face_mask) (STV 1.0 0.9091)) +(: cnet_isa_5e1332d419 (IsA ski_parka parka) (STV 1.0 0.9091)) +(: cnet_isa_78df3e0ef4 (IsA ski_plane airplane) (STV 1.0 0.9091)) +(: cnet_isa_accfa5af3d (IsA ski_pole pole) (STV 1.0 0.9091)) +(: cnet_isa_70b500f047 (IsA ski_race race) (STV 1.0 0.9091)) +(: cnet_isa_a09fb7132a (IsA ski_rack carrier) (STV 1.0 0.9091)) +(: cnet_isa_1ac8923c27 (IsA ski_resort resort) (STV 1.0 0.9091)) +(: cnet_isa_b21b1c0fc6 (IsA ski_run trail) (STV 1.0 0.9091)) +(: cnet_isa_9906c0a4de (IsA ski_slope slope) (STV 1.0 0.9091)) +(: cnet_isa_4fd5b9cc95 (IsA ski_tow conveyance) (STV 1.0 0.9091)) +(: cnet_isa_72ae2bfb89 (IsA ski_wax wax) (STV 1.0 0.9091)) +(: cnet_isa_b042db00fc (IsA skibob vehicle) (STV 1.0 0.9091)) +(: cnet_isa_ee2ee6af03 (IsA skid slide) (STV 1.0 0.9091)) +(: cnet_isa_c523b443a9 (IsA skid board) (STV 1.0 0.9091)) +(: cnet_isa_0e281950ce (IsA skid_lid crash_helmet) (STV 1.0 0.9091)) +(: cnet_isa_70d684417b (IsA skid_road road) (STV 1.0 0.9091)) +(: cnet_isa_2d8b72b2f0 (IsA skid_road quarter) (STV 1.0 0.9091)) +(: cnet_isa_d839882c97 (IsA skid_row slum) (STV 1.0 0.9091)) +(: cnet_isa_c1f8f9b58b (IsA skidder tractor) (STV 1.0 0.9091)) +(: cnet_isa_7ec986b5f2 (IsA skidder person) (STV 1.0 0.9091)) +(: cnet_isa_eddd0afc09 (IsA skidder worker) (STV 1.0 0.9091)) +(: cnet_isa_044a370584 (IsA skidpan paved_surface) (STV 1.0 0.9091)) +(: cnet_isa_cbc224dc29 (IsA skier athlete) (STV 1.0 0.9091)) +(: cnet_isa_636fcdf72c (IsA skiff small_boat) (STV 1.0 0.9091)) +(: cnet_isa_a0e2edfdb9 (IsA skiffle popular_music) (STV 1.0 0.9091)) +(: cnet_isa_5b6ab1eed1 (IsA skiffle_group ensemble) (STV 1.0 0.9091)) +(: cnet_isa_ecbb606f25 (IsA skiing activity) (STV 1.0 0.9636)) +(: cnet_isa_e51090075a (IsA skiing dangerous_sport) (STV 1.0 0.9339)) +(: cnet_isa_3894d80738 (IsA skiing good_form_of_excercise) (STV 1.0 0.9339)) +(: cnet_isa_823d26b824 (IsA skiing winter_sport) (STV 1.0 0.9572)) +(: cnet_isa_656d7cdb03 (IsA skiing sport) (STV 1.0 0.9091)) +(: cnet_isa_97d46ac39f (IsA skill ability) (STV 1.0 0.9091)) +(: cnet_isa_bfa33c09e6 (IsA skilled_worker worker) (STV 1.0 0.9091)) +(: cnet_isa_958b81294b (IsA skillet_bread quick_bread) (STV 1.0 0.9091)) +(: cnet_isa_c6ac94546e (IsA skillet_corn_bread cornbread) (STV 1.0 0.9091)) +(: cnet_isa_36d4f5c5aa (IsA skillet_fish clingfish) (STV 1.0 0.9091)) +(: cnet_isa_8184217f71 (IsA skillfulness state) (STV 1.0 0.9091)) +(: cnet_isa_61f79a2e90 (IsA skilly gruel) (STV 1.0 0.9091)) +(: cnet_isa_96a497479a (IsA skim reading) (STV 1.0 0.9091)) +(: cnet_isa_963b3c113a (IsA skim covering) (STV 1.0 0.9091)) +(: cnet_isa_2f43542b65 (IsA skim_milk milk) (STV 1.0 0.9091)) +(: cnet_isa_2b5ad1097d (IsA skimmer coastal_diving_bird) (STV 1.0 0.9091)) +(: cnet_isa_6c6d158bbe (IsA skimmer cooking_utensil) (STV 1.0 0.9091)) +(: cnet_isa_5722eb4180 (IsA skimmer reader) (STV 1.0 0.9091)) +(: cnet_isa_79afe6426f (IsA skimming larceny) (STV 1.0 0.9091)) +(: cnet_isa_1cd7663610 (IsA skimming removal) (STV 1.0 0.9091)) +(: cnet_isa_5971382fa2 (IsA skin body_covering) (STV 1.0 0.9091)) +(: cnet_isa_edafd576d5 (IsA skin bag) (STV 1.0 0.9091)) +(: cnet_isa_18cd2b6e2d (IsA skin surface) (STV 1.0 0.9091)) +(: cnet_isa_2bc9261958 (IsA skin connective_tissue) (STV 1.0 0.9091)) +(: cnet_isa_baeff9abfc (IsA skin animation) (STV 1.0 0.9091)) +(: cnet_isa_3827da6fd6 (IsA skin_cancer carcinoma) (STV 1.0 0.9091)) +(: cnet_isa_aca0861fea (IsA skin_care care) (STV 1.0 0.9091)) +(: cnet_isa_b49ce692bb (IsA skin_cell somatic_cell) (STV 1.0 0.9091)) +(: cnet_isa_88e5d7fea5 (IsA skin_disease disease) (STV 1.0 0.9091)) +(: cnet_isa_4c9ac1fe8e (IsA skin_diver swimmer) (STV 1.0 0.9091)) +(: cnet_isa_20a7661d25 (IsA skin_diving swimming) (STV 1.0 0.9091)) +(: cnet_isa_d063fe65ef (IsA skin_effect electrical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_b0825da4b4 (IsA skin_flick movie) (STV 1.0 0.9091)) +(: cnet_isa_7a99df419a (IsA skin_graft skin) (STV 1.0 0.9091)) +(: cnet_isa_dd83d0ada3 (IsA skin_test diagnostic_test) (STV 1.0 0.9091)) +(: cnet_isa_98126becf6 (IsA skinful indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_cd8cd81e0c (IsA skinhead bully) (STV 1.0 0.9091)) +(: cnet_isa_e774eaf7fc (IsA skinhead youth_subculture) (STV 1.0 0.9091)) +(: cnet_isa_e4d7bc76df (IsA skink lizard) (STV 1.0 0.9091)) +(: cnet_isa_63fabf40c1 (IsA skinner skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_2035123fa0 (IsA skinnerian follower) (STV 1.0 0.9091)) +(: cnet_isa_38d9f23781 (IsA skinniness leanness) (STV 1.0 0.9091)) +(: cnet_isa_c0f919d599 (IsA skinny information) (STV 1.0 0.9091)) +(: cnet_isa_70f86cc3bb (IsA skinny_dip swimming) (STV 1.0 0.9091)) +(: cnet_isa_a99a50fc06 (IsA skinny_dipper swimmer) (STV 1.0 0.9091)) +(: cnet_isa_9f30a65832 (IsA skip gait) (STV 1.0 0.9091)) +(: cnet_isa_a836b9489c (IsA skip_distance distance) (STV 1.0 0.9091)) +(: cnet_isa_7c3d2ebf2e (IsA skipjack bonito) (STV 1.0 0.9091)) +(: cnet_isa_18a300ecac (IsA skipjack scombroid) (STV 1.0 0.9091)) +(: cnet_isa_fee94efa1c (IsA skipper student) (STV 1.0 0.9091)) +(: cnet_isa_6013fc1c94 (IsA skirl sound) (STV 1.0 0.9091)) +(: cnet_isa_aba1c076e5 (IsA skirmisher combatant) (STV 1.0 0.9091)) +(: cnet_isa_ba5418861a (IsA skirret marsh_plant) (STV 1.0 0.9091)) +(: cnet_isa_f859353ea7 (IsA skirt form_of_clothing) (STV 1.0 0.9091)) +(: cnet_isa_ea58aefe04 (IsA skirt form_of_female_attire) (STV 1.0 0.9091)) +(: cnet_isa_4a890bdde0 (IsA skirt cloth_covering) (STV 1.0 0.9091)) +(: cnet_isa_a48af4c1ff (IsA skirt garment) (STV 1.0 0.9091)) +(: cnet_isa_a5135a85ad (IsA skirt_of_tass armor_plate) (STV 1.0 0.9091)) +(: cnet_isa_7ce0a9b211 (IsA skirt_and_pant kind_of_clothe) (STV 1.0 0.9091)) +(: cnet_isa_93885846ee (IsA skit acting) (STV 1.0 0.9091)) +(: cnet_isa_51dee64449 (IsA skittishness nervousness) (STV 1.0 0.9091)) +(: cnet_isa_20ab2a683e (IsA skivvy domestic) (STV 1.0 0.9091)) +(: cnet_isa_bb025a7511 (IsA skua jaeger) (STV 1.0 0.9091)) +(: cnet_isa_0f929a8d56 (IsA skull bone) (STV 1.0 0.9091)) +(: cnet_isa_670c487a66 (IsA skull_and_crossbone emblem) (STV 1.0 0.9091)) +(: cnet_isa_729fd06c07 (IsA skull_session training) (STV 1.0 0.9091)) +(: cnet_isa_87bbfa6010 (IsA skull_session session) (STV 1.0 0.9091)) +(: cnet_isa_431b55e386 (IsA skullcap cap) (STV 1.0 0.9091)) +(: cnet_isa_e4ac2caf74 (IsA skunk musteline_mammal) (STV 1.0 0.9091)) +(: cnet_isa_4167cd4d3d (IsA skunk_cabbage marsh_plant) (STV 1.0 0.9091)) +(: cnet_isa_586d5aee1a (IsA skunkweed polemonium) (STV 1.0 0.9091)) +(: cnet_isa_e0c752e922 (IsA sky atmosphere) (STV 1.0 0.9091)) +(: cnet_isa_f9c2dc0d2e (IsA sky_burial funeral) (STV 1.0 0.9091)) +(: cnet_isa_964c070c43 (IsA sky_glow glow) (STV 1.0 0.9091)) +(: cnet_isa_c94591e27a (IsA sky_wave radio_wave) (STV 1.0 0.9091)) +(: cnet_isa_5e9af2484c (IsA skybox box) (STV 1.0 0.9091)) +(: cnet_isa_08870cc133 (IsA skybox stadium) (STV 1.0 0.9091)) +(: cnet_isa_febec416b5 (IsA skycap porter) (STV 1.0 0.9091)) +(: cnet_isa_1a9e43851e (IsA skydiver parachutist) (STV 1.0 0.9091)) +(: cnet_isa_baa980d2eb (IsA skydiving jump) (STV 1.0 0.9091)) +(: cnet_isa_a6304ac693 (IsA skye_terrier terrier) (STV 1.0 0.9091)) +(: cnet_isa_732effb0c9 (IsA skyhook helicopter) (STV 1.0 0.9091)) +(: cnet_isa_8338b30a87 (IsA skyhook hook) (STV 1.0 0.9091)) +(: cnet_isa_4e9e00cd55 (IsA skylark lark) (STV 1.0 0.9091)) +(: cnet_isa_2499a93ff0 (IsA skylight window) (STV 1.0 0.9091)) +(: cnet_isa_0134cb6986 (IsA skyline outline) (STV 1.0 0.9091)) +(: cnet_isa_86e2e84295 (IsA skyrocket firework) (STV 1.0 0.9091)) +(: cnet_isa_54e557f8f7 (IsA skysail sail) (STV 1.0 0.9091)) +(: cnet_isa_d40dd13bac (IsA skyscraper building) (STV 1.0 0.9091)) +(: cnet_isa_61bf20ef11 (IsA skywalk walk) (STV 1.0 0.9091)) +(: cnet_isa_38faf5d6d0 (IsA skywriting writing) (STV 1.0 0.9091)) +(: cnet_isa_350eb57098 (IsA slab block) (STV 1.0 0.9091)) +(: cnet_isa_68b0b9bb5d (IsA slack cord) (STV 1.0 0.9091)) +(: cnet_isa_cc69d0d2ab (IsA slack looseness) (STV 1.0 0.9091)) +(: cnet_isa_a6a06a24c3 (IsA slack stretch) (STV 1.0 0.9091)) +(: cnet_isa_8a94a474a8 (IsA slack debris) (STV 1.0 0.9091)) +(: cnet_isa_de9d2fc7c1 (IsA slack_suit suit) (STV 1.0 0.9091)) +(: cnet_isa_01899de6fa (IsA slack_water tide) (STV 1.0 0.9091)) +(: cnet_isa_9cb4e814b9 (IsA slacker idler) (STV 1.0 0.9091)) +(: cnet_isa_c9558fd1e6 (IsA slack form_of_clothing) (STV 1.0 0.9339)) +(: cnet_isa_121e8d2025 (IsA slack pair_of_trouser) (STV 1.0 0.9091)) +(: cnet_isa_9d50d6c28f (IsA slag scum) (STV 1.0 0.9091)) +(: cnet_isa_29fb414c8f (IsA slagheap pile) (STV 1.0 0.9091)) +(: cnet_isa_e486f51206 (IsA slain dead) (STV 1.0 0.9091)) +(: cnet_isa_e4acd89028 (IsA slalom ski_race) (STV 1.0 0.9091)) +(: cnet_isa_b2d4164648 (IsA slam impact) (STV 1.0 0.9091)) +(: cnet_isa_df497f98f3 (IsA slam noise) (STV 1.0 0.9091)) +(: cnet_isa_768edfc6bc (IsA slam victory) (STV 1.0 0.9091)) +(: cnet_isa_7a33f17732 (IsA slam_dancing dancing) (STV 1.0 0.9091)) +(: cnet_isa_5cc0aacc4a (IsA slam_dunk dunk) (STV 1.0 0.9091)) +(: cnet_isa_c36a0553f3 (IsA slam_dunk certainty) (STV 1.0 0.9091)) +(: cnet_isa_e15053c8f0 (IsA slammer closer) (STV 1.0 0.9091)) +(: cnet_isa_6cf3e46dd9 (IsA slander defamation) (STV 1.0 0.9091)) +(: cnet_isa_7c701fca12 (IsA slander speech_act) (STV 1.0 0.9091)) +(: cnet_isa_a769e9b7e4 (IsA slang non_standard_speech) (STV 1.0 0.9091)) +(: cnet_isa_a3263944ea (IsA slanginess casualness) (STV 1.0 0.9091)) +(: cnet_isa_0e25a35071 (IsA slanguage language) (STV 1.0 0.9091)) +(: cnet_isa_f5f9eee114 (IsA slant point_of_view) (STV 1.0 0.9091)) +(: cnet_isa_1ef2fc6710 (IsA slap bump) (STV 1.0 0.9091)) +(: cnet_isa_a84095c97e (IsA slapper hitter) (STV 1.0 0.9091)) +(: cnet_isa_fd992eb3fc (IsA slapshot shot) (STV 1.0 0.9091)) +(: cnet_isa_536bc84c22 (IsA slapstick acoustic_device) (STV 1.0 0.9091)) +(: cnet_isa_c928e72f9c (IsA slapstick comedy) (STV 1.0 0.9091)) +(: cnet_isa_05f7d61edf (IsA slash cut) (STV 1.0 0.9091)) +(: cnet_isa_6d1dc45c7e (IsA slash land) (STV 1.0 0.9091)) +(: cnet_isa_96dfc3825a (IsA slash_pocket pocket) (STV 1.0 0.9091)) +(: cnet_isa_53df843e16 (IsA slasher weapon) (STV 1.0 0.9091)) +(: cnet_isa_59aba42cbf (IsA slasher attacker) (STV 1.0 0.9091)) +(: cnet_isa_820108c524 (IsA slat strip) (STV 1.0 0.9091)) +(: cnet_isa_d44e650370 (IsA slate tablet) (STV 1.0 0.9091)) +(: cnet_isa_7aba780350 (IsA slate list) (STV 1.0 0.9091)) +(: cnet_isa_d186dedb07 (IsA slate roofing_material) (STV 1.0 0.9091)) +(: cnet_isa_c37771adc4 (IsA slate sedimentary_rock) (STV 1.0 0.9091)) +(: cnet_isa_80a73ef8f4 (IsA slate_club club) (STV 1.0 0.9091)) +(: cnet_isa_08a6605fa5 (IsA slate_pencil pencil) (STV 1.0 0.9091)) +(: cnet_isa_326b8f7fbc (IsA slate_roof roof) (STV 1.0 0.9091)) +(: cnet_isa_d1d36aeead (IsA slating roofing) (STV 1.0 0.9091)) +(: cnet_isa_75a9ac175a (IsA slating criticism) (STV 1.0 0.9091)) +(: cnet_isa_083b208485 (IsA slattern slob) (STV 1.0 0.9091)) +(: cnet_isa_3c299f6157 (IsA slatternliness slovenliness) (STV 1.0 0.9091)) +(: cnet_isa_bd579cd079 (IsA slaughter killing) (STV 1.0 0.9091)) +(: cnet_isa_0289143682 (IsA slaughter murder) (STV 1.0 0.9091)) +(: cnet_isa_6b4918c8f4 (IsA slav european) (STV 1.0 0.9091)) +(: cnet_isa_c14fbb5a1e (IsA slav person) (STV 1.0 0.9091)) +(: cnet_isa_3f291ee45e (IsA slave in_bondage) (STV 1.0 0.9091)) +(: cnet_isa_9adf8d15c5 (IsA slave person) (STV 1.0 0.9677)) +(: cnet_isa_f57ffcfafb (IsA slave worker) (STV 1.0 0.9091)) +(: cnet_isa_eaad13ed2e (IsA slave_ant ant) (STV 1.0 0.9091)) +(: cnet_isa_05796ed44c (IsA slave_driver employer) (STV 1.0 0.9091)) +(: cnet_isa_c9cfbeb23e (IsA slave_driver taskmaster) (STV 1.0 0.9091)) +(: cnet_isa_43f161e6c4 (IsA slave_making_ant ant) (STV 1.0 0.9091)) +(: cnet_isa_ed68623367 (IsA slave_market marketplace) (STV 1.0 0.9091)) +(: cnet_isa_c281676c4b (IsA slave_ship ship) (STV 1.0 0.9091)) +(: cnet_isa_a78fc472e6 (IsA slave_state american_state) (STV 1.0 0.9091)) +(: cnet_isa_c95eeece55 (IsA slave_trade traffic) (STV 1.0 0.9091)) +(: cnet_isa_17fe750c57 (IsA slaveholder holder) (STV 1.0 0.9091)) +(: cnet_isa_bc637cae18 (IsA slaver victimizer) (STV 1.0 0.9091)) +(: cnet_isa_f3a07c1fb4 (IsA slavery labor) (STV 1.0 0.9091)) +(: cnet_isa_28c7d5f0d6 (IsA slavery practice) (STV 1.0 0.9091)) +(: cnet_isa_4dd7d78c05 (IsA slavic balto_slavic) (STV 1.0 0.9091)) +(: cnet_isa_2ab1f4cd00 (IsA slavic_people people) (STV 1.0 0.9091)) +(: cnet_isa_83f7406c28 (IsA sleaziness dishonorableness) (STV 1.0 0.9091)) +(: cnet_isa_baba580900 (IsA sled vehicle) (STV 1.0 0.9091)) +(: cnet_isa_ab95bcbb13 (IsA sled_dog working_dog) (STV 1.0 0.9091)) +(: cnet_isa_68cefce6d4 (IsA sledder athlete) (STV 1.0 0.9091)) +(: cnet_isa_ac6ee47e7f (IsA sledding sport) (STV 1.0 0.9091)) +(: cnet_isa_5d2b540ab4 (IsA sleekness appearance) (STV 1.0 0.9091)) +(: cnet_isa_e15490411e (IsA sleep physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_04c2d13c80 (IsA sleep time_period) (STV 1.0 0.9091)) +(: cnet_isa_ccc184276b (IsA sleep_apnea sleep_disorder) (STV 1.0 0.9091)) +(: cnet_isa_96bd1d610f (IsA sleep_apnea apnea) (STV 1.0 0.9091)) +(: cnet_isa_425fa79ab0 (IsA sleep_deprivation torture) (STV 1.0 0.9091)) +(: cnet_isa_e63af3b164 (IsA sleep_disorder disorder) (STV 1.0 0.9091)) +(: cnet_isa_8e2e859954 (IsA sleep_learning teaching) (STV 1.0 0.9091)) +(: cnet_isa_ac2dbc0cc1 (IsA sleep_talking process) (STV 1.0 0.9091)) +(: cnet_isa_9f8a10dd70 (IsA sleep_talking sleeping) (STV 1.0 0.9091)) +(: cnet_isa_c1f4cd8443 (IsA sleep_terror_disorder sleep_disorder) (STV 1.0 0.9091)) +(: cnet_isa_1c4eca66ee (IsA sleeper hit) (STV 1.0 0.9091)) +(: cnet_isa_b470ae5b9f (IsA sleeper percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_1a440dcea4 (IsA sleeper furniture) (STV 1.0 0.9091)) +(: cnet_isa_1f73750b72 (IsA sleeper pajama) (STV 1.0 0.9091)) +(: cnet_isa_42d161295b (IsA sleeper achiever) (STV 1.0 0.9091)) +(: cnet_isa_a0072d05a8 (IsA sleeper rester) (STV 1.0 0.9091)) +(: cnet_isa_a8eb893535 (IsA sleeper saboteur) (STV 1.0 0.9091)) +(: cnet_isa_1a11a20e7c (IsA sleeper spy) (STV 1.0 0.9091)) +(: cnet_isa_e8472da9f6 (IsA sleeper terrorist) (STV 1.0 0.9091)) +(: cnet_isa_4b94b249d9 (IsA sleeper_cell cell) (STV 1.0 0.9091)) +(: cnet_isa_2dfe3147be (IsA sleeper_nest nest) (STV 1.0 0.9091)) +(: cnet_isa_dd82f9ea68 (IsA sleepiness temporary_state) (STV 1.0 0.9091)) +(: cnet_isa_5ef14b20c0 (IsA sleeping bodily_process) (STV 1.0 0.9091)) +(: cnet_isa_fff80e61ed (IsA sleeping sleep) (STV 1.0 0.9091)) +(: cnet_isa_8fe1aac621 (IsA sleeping_bag bag) (STV 1.0 0.9091)) +(: cnet_isa_8eb5201517 (IsA sleeping_beauty target_company) (STV 1.0 0.9091)) +(: cnet_isa_f20eb2b46e (IsA sleeping_beauty sleeper) (STV 1.0 0.9091)) +(: cnet_isa_a706cdaf03 (IsA sleeping_car passenger_car) (STV 1.0 0.9091)) +(: cnet_isa_110011c641 (IsA sleeping_pill pill) (STV 1.0 0.9091)) +(: cnet_isa_1297c314dd (IsA sleeping_pill soporific) (STV 1.0 0.9091)) +(: cnet_isa_45e4469fb7 (IsA sleeping_sickness encephalitis) (STV 1.0 0.9091)) +(: cnet_isa_409e95beb1 (IsA sleepover affair) (STV 1.0 0.9091)) +(: cnet_isa_7a02a1bbc8 (IsA sleepwalker sleeper) (STV 1.0 0.9091)) +(: cnet_isa_98e5b5a70f (IsA sleepwalking sleeping) (STV 1.0 0.9091)) +(: cnet_isa_6f70cecd79 (IsA sleepwalking walk) (STV 1.0 0.9091)) +(: cnet_isa_dd96e4d37b (IsA sleepyhead person) (STV 1.0 0.9091)) +(: cnet_isa_31e0fdb9b4 (IsA sleet precipitation) (STV 1.0 0.9091)) +(: cnet_isa_069e0aa0f8 (IsA sleeve case) (STV 1.0 0.9091)) +(: cnet_isa_0925f6a1bc (IsA sleeve cloth_covering) (STV 1.0 0.9091)) +(: cnet_isa_47206e77b5 (IsA sleigh_bed bed) (STV 1.0 0.9091)) +(: cnet_isa_1587ec4c09 (IsA sleigh_bell bell) (STV 1.0 0.9091)) +(: cnet_isa_9f4d12673e (IsA slender_centaury centaury) (STV 1.0 0.9091)) +(: cnet_isa_326fa58f97 (IsA slender_knapweed knapweed) (STV 1.0 0.9091)) +(: cnet_isa_297874365e (IsA slender_loris lemur) (STV 1.0 0.9091)) +(: cnet_isa_02001f5ab6 (IsA slender_rush rush) (STV 1.0 0.9091)) +(: cnet_isa_c921b1c25b (IsA slender_salamander salamander) (STV 1.0 0.9091)) +(: cnet_isa_8ab8831cc0 (IsA slender_tailed_meerkat meerkat) (STV 1.0 0.9091)) +(: cnet_isa_9011159f92 (IsA slender_wheatgrass wheatgrass) (STV 1.0 0.9091)) +(: cnet_isa_e9b0a67474 (IsA slender_wild_oat oat) (STV 1.0 0.9091)) +(: cnet_isa_ad2a164100 (IsA slenderness insufficiency) (STV 1.0 0.9091)) +(: cnet_isa_a0245edde6 (IsA slenderness leanness) (STV 1.0 0.9091)) +(: cnet_isa_879ced966b (IsA sleuth detective) (STV 1.0 0.9091)) +(: cnet_isa_e19cc6642e (IsA slice golf_stroke) (STV 1.0 0.9091)) +(: cnet_isa_580ad9fb24 (IsA slice spatula) (STV 1.0 0.9091)) +(: cnet_isa_7399e7d98b (IsA slice part) (STV 1.0 0.9091)) +(: cnet_isa_6897f65c80 (IsA slice share) (STV 1.0 0.9091)) +(: cnet_isa_92acb35771 (IsA slice_bar bar) (STV 1.0 0.9091)) +(: cnet_isa_96d969b2bc (IsA slicer knife) (STV 1.0 0.9091)) +(: cnet_isa_4307e5313c (IsA slicer machine) (STV 1.0 0.9091)) +(: cnet_isa_45d8a906b8 (IsA slicer golfer) (STV 1.0 0.9091)) +(: cnet_isa_24d0ec2fc8 (IsA slicing cut) (STV 1.0 0.9091)) +(: cnet_isa_9e39b2b3ae (IsA slick film) (STV 1.0 0.9091)) +(: cnet_isa_7fa8ca1f70 (IsA slick trowel) (STV 1.0 0.9091)) +(: cnet_isa_a11cb0b290 (IsA slick magazine) (STV 1.0 0.9091)) +(: cnet_isa_418ad62200 (IsA slicker sophisticate) (STV 1.0 0.9091)) +(: cnet_isa_a18320eb99 (IsA slickness smoothness) (STV 1.0 0.9091)) +(: cnet_isa_c977783b82 (IsA slide motion) (STV 1.0 0.9091)) +(: cnet_isa_580d83041e (IsA slide foil) (STV 1.0 0.9091)) +(: cnet_isa_0b55bbf5c3 (IsA slide plate_glass) (STV 1.0 0.9091)) +(: cnet_isa_ce09d12013 (IsA slide plaything) (STV 1.0 0.9091)) +(: cnet_isa_2516da7885 (IsA slide descent) (STV 1.0 0.9091)) +(: cnet_isa_14fb160472 (IsA slide_chart chart) (STV 1.0 0.9091)) +(: cnet_isa_78e53de062 (IsA slide_chart device) (STV 1.0 0.9091)) +(: cnet_isa_d844f74834 (IsA slide_fastener fastener) (STV 1.0 0.9091)) +(: cnet_isa_041f94447f (IsA slide_projector projector) (STV 1.0 0.9091)) +(: cnet_isa_38a712233e (IsA slide_rule analog_computer) (STV 1.0 0.9091)) +(: cnet_isa_9019c236c1 (IsA slide_valve valve) (STV 1.0 0.9091)) +(: cnet_isa_2c1c5948c2 (IsA slider fastball) (STV 1.0 0.9091)) +(: cnet_isa_6d49272438 (IsA slider turtle) (STV 1.0 0.9091)) +(: cnet_isa_051ca68598 (IsA sliding_door door) (STV 1.0 0.9091)) +(: cnet_isa_288605f389 (IsA sliding_scale wage_scale) (STV 1.0 0.9091)) +(: cnet_isa_23003b36ad (IsA sliding_seat seat) (STV 1.0 0.9091)) +(: cnet_isa_ba6a1f73e6 (IsA sliding_window window) (STV 1.0 0.9091)) +(: cnet_isa_eb1bf48ec4 (IsA slight_care care) (STV 1.0 0.9091)) +(: cnet_isa_d039d4d431 (IsA slime_mold fungus) (STV 1.0 0.9091)) +(: cnet_isa_38c37bbf44 (IsA slime_mushroom amanita) (STV 1.0 0.9091)) +(: cnet_isa_6ce0385460 (IsA sliminess viscosity) (STV 1.0 0.9091)) +(: cnet_isa_31c217f955 (IsA sling bandage) (STV 1.0 0.9091)) +(: cnet_isa_efafb9e093 (IsA sling weapon) (STV 1.0 0.9091)) +(: cnet_isa_6269dbcd82 (IsA sling highball) (STV 1.0 0.9091)) +(: cnet_isa_1ea9bb05f0 (IsA slingback shoe) (STV 1.0 0.9091)) +(: cnet_isa_9f4ccd2df3 (IsA slinger thrower) (STV 1.0 0.9091)) +(: cnet_isa_e42b1562e9 (IsA slinger_ring dispenser) (STV 1.0 0.9091)) +(: cnet_isa_ada271d4c0 (IsA slinging throw) (STV 1.0 0.9091)) +(: cnet_isa_c8150940f7 (IsA slingshot plaything) (STV 1.0 0.9091)) +(: cnet_isa_0a70cac774 (IsA slinky toy) (STV 1.0 0.9091)) +(: cnet_isa_035dd9ac68 (IsA slip evasion) (STV 1.0 0.9091)) +(: cnet_isa_f9f35da650 (IsA slip flight_maneuver) (STV 1.0 0.9091)) +(: cnet_isa_07e895f7c3 (IsA slip mistake) (STV 1.0 0.9091)) +(: cnet_isa_863b786e46 (IsA slip sheet) (STV 1.0 0.9091)) +(: cnet_isa_c65a23bc01 (IsA slip mishap) (STV 1.0 0.9091)) +(: cnet_isa_2e909387b8 (IsA slip young_person) (STV 1.0 0.9091)) +(: cnet_isa_08001e78e9 (IsA slip potter_s_clay) (STV 1.0 0.9091)) +(: cnet_isa_4892548f6e (IsA slip_clutch friction_clutch) (STV 1.0 0.9091)) +(: cnet_isa_a8119184ba (IsA slip_coach car) (STV 1.0 0.9091)) +(: cnet_isa_bb9191c644 (IsA slip_joint_plier plier) (STV 1.0 0.9091)) +(: cnet_isa_8eb83b9159 (IsA slip_of_tongue misstatement) (STV 1.0 0.9091)) +(: cnet_isa_2f16109e47 (IsA slip_on clothing) (STV 1.0 0.9091)) +(: cnet_isa_dbc537140b (IsA slip_ring connection) (STV 1.0 0.9091)) +(: cnet_isa_ca58a8f851 (IsA slip_stitch embroidery_stitch) (STV 1.0 0.9091)) +(: cnet_isa_81d301301b (IsA slipcover cloth_covering) (STV 1.0 0.9091)) +(: cnet_isa_b42059292c (IsA slipknot knot) (STV 1.0 0.9091)) +(: cnet_isa_259037e791 (IsA slippage motion) (STV 1.0 0.9091)) +(: cnet_isa_2c4e9bccf9 (IsA slippage decline) (STV 1.0 0.9091)) +(: cnet_isa_5ed9bc2adc (IsA slippage decrease) (STV 1.0 0.9091)) +(: cnet_isa_43b64084ea (IsA slipper footwear) (STV 1.0 0.9091)) +(: cnet_isa_3a9422fe05 (IsA slipper_spurge shrub) (STV 1.0 0.9091)) +(: cnet_isa_336c5e7bcf (IsA slippery_dick wrasse) (STV 1.0 0.9091)) +(: cnet_isa_d5bf3eb31d (IsA slippery_elm elm) (STV 1.0 0.9091)) +(: cnet_isa_4a9dc5e358 (IsA slipskin_grape grape) (STV 1.0 0.9091)) +(: cnet_isa_a8ed38e417 (IsA slipstream flow) (STV 1.0 0.9091)) +(: cnet_isa_7611ceaa26 (IsA slit opening) (STV 1.0 0.9091)) +(: cnet_isa_cb9dd510a9 (IsA slit crack) (STV 1.0 0.9091)) +(: cnet_isa_6b65e14aa9 (IsA slit_lamp electric_lamp) (STV 1.0 0.9091)) +(: cnet_isa_fbf6a000ac (IsA slit_trench trench) (STV 1.0 0.9091)) +(: cnet_isa_2c0e4d61f9 (IsA slivovitz brandy) (STV 1.0 0.9091)) +(: cnet_isa_a19487754c (IsA sloanea dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6850e18cf6 (IsA slob vulgarian) (STV 1.0 0.9091)) +(: cnet_isa_04f2bffebc (IsA sloe plum) (STV 1.0 0.9091)) +(: cnet_isa_e4828d1855 (IsA sloe_gin gin) (STV 1.0 0.9091)) +(: cnet_isa_19ff26d77b (IsA sloganeer propagandist) (STV 1.0 0.9091)) +(: cnet_isa_db7b8eb828 (IsA sloganeering persuasion) (STV 1.0 0.9091)) +(: cnet_isa_44768fdcd4 (IsA sloop sailing_vessel) (STV 1.0 0.9091)) +(: cnet_isa_299868490e (IsA sloop_of_war warship) (STV 1.0 0.9091)) +(: cnet_isa_ab9bc8684e (IsA slop feed) (STV 1.0 0.9091)) +(: cnet_isa_a94290b06d (IsA slop food) (STV 1.0 0.9091)) +(: cnet_isa_d67a4eaf32 (IsA slop waste) (STV 1.0 0.9091)) +(: cnet_isa_120d1a2eaf (IsA slop_basin bowl) (STV 1.0 0.9091)) +(: cnet_isa_457e714e2e (IsA slop_chest commissary) (STV 1.0 0.9091)) +(: cnet_isa_03fdad0eda (IsA slop_pail bucket) (STV 1.0 0.9091)) +(: cnet_isa_721e2c6f41 (IsA slope geological_formation) (STV 1.0 0.9091)) +(: cnet_isa_f60ae7d71d (IsA sloppiness untidiness) (STV 1.0 0.9091)) +(: cnet_isa_d552efbfc9 (IsA sloppy_joe sandwich) (STV 1.0 0.9091)) +(: cnet_isa_0f2913498d (IsA slop clothing) (STV 1.0 0.9091)) +(: cnet_isa_5472a1e81d (IsA slopseller trader) (STV 1.0 0.9091)) +(: cnet_isa_b069659bbc (IsA slopshop clothing_store) (STV 1.0 0.9091)) +(: cnet_isa_866aac7ca8 (IsA slot slit) (STV 1.0 0.9091)) +(: cnet_isa_84da5599fe (IsA slot slot_machine) (STV 1.0 0.9091)) +(: cnet_isa_09a7544424 (IsA slot position) (STV 1.0 0.9091)) +(: cnet_isa_c87f0b46ab (IsA slot receptacle) (STV 1.0 0.9091)) +(: cnet_isa_1c9f35895a (IsA slot trail) (STV 1.0 0.9091)) +(: cnet_isa_5ae7c66c38 (IsA slot status) (STV 1.0 0.9091)) +(: cnet_isa_2a38e957c8 (IsA slot_machine machine) (STV 1.0 0.9091)) +(: cnet_isa_a9e94647f8 (IsA sloth mortal_sin) (STV 1.0 0.9091)) +(: cnet_isa_795972f2fb (IsA sloth edentate) (STV 1.0 0.9091)) +(: cnet_isa_efa3559749 (IsA sloth reluctance) (STV 1.0 0.9091)) +(: cnet_isa_787a9f4a61 (IsA sloth_bear bear) (STV 1.0 0.9091)) +(: cnet_isa_b2ddb85a01 (IsA slouch carriage) (STV 1.0 0.9091)) +(: cnet_isa_0c69d13d9f (IsA slouch incompetent) (STV 1.0 0.9091)) +(: cnet_isa_f23a7940e8 (IsA sloucher person) (STV 1.0 0.9091)) +(: cnet_isa_82dd486a66 (IsA slough bog) (STV 1.0 0.9091)) +(: cnet_isa_513343d56e (IsA slough covering) (STV 1.0 0.9091)) +(: cnet_isa_8bf6451473 (IsA slough swamp) (STV 1.0 0.9091)) +(: cnet_isa_6a090750d2 (IsA slough_of_despond depression) (STV 1.0 0.9091)) +(: cnet_isa_2456c93a4f (IsA slovak slavic) (STV 1.0 0.9091)) +(: cnet_isa_4732bfe704 (IsA slovak european) (STV 1.0 0.9091)) +(: cnet_isa_3bb036e740 (IsA slovakian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_beab5e9d42 (IsA slovene slavic) (STV 1.0 0.9091)) +(: cnet_isa_557c756ea3 (IsA slovene european) (STV 1.0 0.9091)) +(: cnet_isa_0d4519ec74 (IsA slovenian european) (STV 1.0 0.9091)) +(: cnet_isa_d77ad8bbb9 (IsA slovenliness uncleanliness) (STV 1.0 0.9091)) +(: cnet_isa_9fcf6cbd41 (IsA slow_lane traffic_lane) (STV 1.0 0.9091)) +(: cnet_isa_e08dbd8326 (IsA slow_loris lemur) (STV 1.0 0.9091)) +(: cnet_isa_b5953c2932 (IsA slow_match match) (STV 1.0 0.9091)) +(: cnet_isa_e91f262d19 (IsA slow_motion movie) (STV 1.0 0.9091)) +(: cnet_isa_98badb3936 (IsA slow_virus virus) (STV 1.0 0.9091)) +(: cnet_isa_b944b2fdf0 (IsA slowdown delay) (STV 1.0 0.9091)) +(: cnet_isa_56ff69d8ec (IsA slowness pace) (STV 1.0 0.9091)) +(: cnet_isa_a11d02d8ed (IsA slub roughness) (STV 1.0 0.9091)) +(: cnet_isa_60e2fb9768 (IsA sludge precipitate) (STV 1.0 0.9091)) +(: cnet_isa_86a50ec9b8 (IsA sludge substance) (STV 1.0 0.9091)) +(: cnet_isa_6a3757d293 (IsA slug gastropod) (STV 1.0 0.9091)) +(: cnet_isa_99844492a9 (IsA slug alcohol) (STV 1.0 0.9091)) +(: cnet_isa_a8694a116a (IsA slug coin) (STV 1.0 0.9091)) +(: cnet_isa_cf25c16a35 (IsA slug mass_unit) (STV 1.0 0.9091)) +(: cnet_isa_f7518ef288 (IsA sluggard idler) (STV 1.0 0.9091)) +(: cnet_isa_df85ef7451 (IsA slugger boxer) (STV 1.0 0.9091)) +(: cnet_isa_8a7bfee6d7 (IsA sluggishness pace) (STV 1.0 0.9091)) +(: cnet_isa_e5a63127ac (IsA sluice conduit) (STV 1.0 0.9091)) +(: cnet_isa_a424d8d150 (IsA sluicegate regulator) (STV 1.0 0.9091)) +(: cnet_isa_d6584935fd (IsA slum city_district) (STV 1.0 0.9091)) +(: cnet_isa_81f3123ee3 (IsA slumber dormancy) (STV 1.0 0.9091)) +(: cnet_isa_c22d9305dd (IsA slumber_party party) (STV 1.0 0.9091)) +(: cnet_isa_de43f7ba94 (IsA slumgullion stew) (STV 1.0 0.9091)) +(: cnet_isa_73e2720296 (IsA slump deterioration) (STV 1.0 0.9091)) +(: cnet_isa_92346c538e (IsA slur musical_notation) (STV 1.0 0.9091)) +(: cnet_isa_7f17e418c8 (IsA slurry suspension) (STV 1.0 0.9091)) +(: cnet_isa_bc24e82eb1 (IsA slush water) (STV 1.0 0.9091)) +(: cnet_isa_23c6103936 (IsA slush_fund fund) (STV 1.0 0.9091)) +(: cnet_isa_059f4a83e5 (IsA slut person) (STV 1.0 0.9091)) +(: cnet_isa_746ada8abe (IsA smack blow) (STV 1.0 0.9091)) +(: cnet_isa_f7b8c681d6 (IsA smack kiss) (STV 1.0 0.9091)) +(: cnet_isa_328595615a (IsA smack sailing_vessel) (STV 1.0 0.9091)) +(: cnet_isa_deb2235da5 (IsA smacker blow) (STV 1.0 0.9091)) +(: cnet_isa_9c7fa5796e (IsA smacker smack) (STV 1.0 0.9091)) +(: cnet_isa_501eacb3b0 (IsA small size) (STV 1.0 0.9091)) +(: cnet_isa_e737fe2859 (IsA small body_part) (STV 1.0 0.9091)) +(: cnet_isa_fdb27bfbd8 (IsA small_boat boat) (STV 1.0 0.9091)) +(: cnet_isa_be576893b0 (IsA small_business_administration independent_agency) (STV 1.0 0.9091)) +(: cnet_isa_be2e236834 (IsA small_businessman businessman) (STV 1.0 0.9091)) +(: cnet_isa_dd4e8594b6 (IsA small_cane bamboo) (STV 1.0 0.9091)) +(: cnet_isa_b3ec14bd24 (IsA small_cap corporation) (STV 1.0 0.9091)) +(: cnet_isa_6465cd65fc (IsA small_capital capital) (STV 1.0 0.9091)) +(: cnet_isa_a860e408b7 (IsA small_change cash) (STV 1.0 0.9091)) +(: cnet_isa_9209b1d85f (IsA small_civet civet) (STV 1.0 0.9091)) +(: cnet_isa_3a03792113 (IsA small_computer_system_interface interface) (STV 1.0 0.9091)) +(: cnet_isa_c90aca3698 (IsA small_farmer farmer) (STV 1.0 0.9091)) +(: cnet_isa_4daca60b15 (IsA small_for_gestational_age_infant neonate) (STV 1.0 0.9091)) +(: cnet_isa_2d7c9ad42c (IsA small_fortune large_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_349238d170 (IsA small_hour hour) (STV 1.0 0.9091)) +(: cnet_isa_f99423d304 (IsA small_indefinite_quantity indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_642f9f7374 (IsA small_intestine intestine) (STV 1.0 0.9091)) +(: cnet_isa_f6b397ed54 (IsA small_leaved_linden linden) (STV 1.0 0.9091)) +(: cnet_isa_73de2733f2 (IsA small_letter character) (STV 1.0 0.9091)) +(: cnet_isa_d76cc12d49 (IsA small_magellanic_cloud magellanic_cloud) (STV 1.0 0.9091)) +(: cnet_isa_9b27cab678 (IsA small_particle_pollution air_pollution) (STV 1.0 0.9091)) +(: cnet_isa_94ca1ff2d8 (IsA small_person person) (STV 1.0 0.9091)) +(: cnet_isa_abd39d040a (IsA small_print print) (STV 1.0 0.9091)) +(: cnet_isa_27b948c430 (IsA small_ship ship) (STV 1.0 0.9091)) +(: cnet_isa_42f8eed332 (IsA small_store commissary) (STV 1.0 0.9091)) +(: cnet_isa_bf1e46ade7 (IsA small_stuff rope) (STV 1.0 0.9091)) +(: cnet_isa_384012d80e (IsA small_white cabbage_butterfly) (STV 1.0 0.9091)) +(: cnet_isa_9c0598e994 (IsA small_white_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_46efbb8b95 (IsA smalleye_hammerhead hammerhead) (STV 1.0 0.9091)) +(: cnet_isa_7be324d28b (IsA smallholder farmer) (STV 1.0 0.9091)) +(: cnet_isa_009e8583d4 (IsA smallholding estate) (STV 1.0 0.9091)) +(: cnet_isa_e06b59d0b8 (IsA smallmouth black_bass) (STV 1.0 0.9091)) +(: cnet_isa_acb2bedf12 (IsA smallmouth_bass freshwater_bass) (STV 1.0 0.9091)) +(: cnet_isa_330161b5d5 (IsA smallness amount) (STV 1.0 0.9091)) +(: cnet_isa_387f4fb960 (IsA smallness size) (STV 1.0 0.9091)) +(: cnet_isa_bb91fa786e (IsA smallpox pox) (STV 1.0 0.9091)) +(: cnet_isa_bd116e35c5 (IsA smalltooth_sawfish sawfish) (STV 1.0 0.9091)) +(: cnet_isa_7b92bb4599 (IsA smaltite mineral) (STV 1.0 0.9091)) +(: cnet_isa_675af8a35b (IsA smart pain) (STV 1.0 0.9091)) +(: cnet_isa_2b045b3f91 (IsA smart_bomb bomb) (STV 1.0 0.9091)) +(: cnet_isa_854e87795e (IsA smart_card open_end_credit) (STV 1.0 0.9091)) +(: cnet_isa_af12c8bf44 (IsA smart_card positive_identification) (STV 1.0 0.9091)) +(: cnet_isa_d3ac3959b4 (IsA smart_money people) (STV 1.0 0.9091)) +(: cnet_isa_3ff4422a70 (IsA smart_money speculation) (STV 1.0 0.9091)) +(: cnet_isa_6ac8f24f7c (IsA smarta brahman) (STV 1.0 0.9091)) +(: cnet_isa_ab8ef44047 (IsA smash collision) (STV 1.0 0.9091)) +(: cnet_isa_2318c6dbb5 (IsA smasher person) (STV 1.0 0.9091)) +(: cnet_isa_4a614c6681 (IsA smasher woman) (STV 1.0 0.9091)) +(: cnet_isa_4954d9d252 (IsA smashing breakage) (STV 1.0 0.9091)) +(: cnet_isa_af216dcd3b (IsA smattering understanding) (STV 1.0 0.9091)) +(: cnet_isa_21065e11fc (IsA smear cytologic_specimen) (STV 1.0 0.9091)) +(: cnet_isa_ad1c9714cc (IsA smear defamation) (STV 1.0 0.9091)) +(: cnet_isa_01dfb830a3 (IsA smear_word name) (STV 1.0 0.9091)) +(: cnet_isa_616cd66b87 (IsA smegma sebum) (STV 1.0 0.9091)) +(: cnet_isa_0370bb3379 (IsA smell important_sense) (STV 1.0 0.9091)) +(: cnet_isa_3508c69176 (IsA smell sensing) (STV 1.0 0.9091)) +(: cnet_isa_ac3e97392d (IsA smell exteroception) (STV 1.0 0.9091)) +(: cnet_isa_21a955d036 (IsA smell modality) (STV 1.0 0.9091)) +(: cnet_isa_d8d4b51611 (IsA smell sensation) (STV 1.0 0.9091)) +(: cnet_isa_585ce8daa7 (IsA smelling_bottle bottle) (STV 1.0 0.9091)) +(: cnet_isa_3ec69d6cf5 (IsA smelling_salt formulation) (STV 1.0 0.9091)) +(: cnet_isa_79b931543a (IsA smelt soft_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_fa3ac65023 (IsA smelt fish) (STV 1.0 0.9091)) +(: cnet_isa_0e2ce83d3a (IsA smelter plant) (STV 1.0 0.9091)) +(: cnet_isa_1b945dec07 (IsA smew merganser) (STV 1.0 0.9091)) +(: cnet_isa_e5294fa885 (IsA smilacaceae liliid_monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_2e74cd6b63 (IsA smilax liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c2ffa2235a (IsA smilax vine) (STV 1.0 0.9091)) +(: cnet_isa_742f4aa3f7 (IsA smile facial_expression) (STV 1.0 0.9091)) +(: cnet_isa_a4e0c8e03e (IsA smiledon mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_351a9449db (IsA smiledon_californicus saber_toothed_tiger) (STV 1.0 0.9091)) +(: cnet_isa_3dc2d3abc7 (IsA smiler person) (STV 1.0 0.9091)) +(: cnet_isa_1abb33d175 (IsA smiley emoticon) (STV 1.0 0.9091)) +(: cnet_isa_f64b5a7f10 (IsA smilo ricegrass) (STV 1.0 0.9091)) +(: cnet_isa_0eda955baf (IsA smirk smile) (STV 1.0 0.9091)) +(: cnet_isa_7255673983 (IsA smirker smiler) (STV 1.0 0.9091)) +(: cnet_isa_b671762264 (IsA smirnoff vodka) (STV 1.0 0.9091)) +(: cnet_isa_289cb5ec9d (IsA smitane sauce) (STV 1.0 0.9091)) +(: cnet_isa_9a66d91013 (IsA smith skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_6447e291e3 (IsA smithereen collection) (STV 1.0 0.9091)) +(: cnet_isa_6b48425270 (IsA smocking embroidery) (STV 1.0 0.9091)) +(: cnet_isa_07e33c82a0 (IsA smog polluted_air) (STV 1.0 0.9524)) +(: cnet_isa_a1064c858e (IsA smog air_pollution) (STV 1.0 0.9091)) +(: cnet_isa_856abedef7 (IsA smog_in_city increasing_health_hazard) (STV 1.0 0.9091)) +(: cnet_isa_3de2bdbf2c (IsA smoke breathing) (STV 1.0 0.9091)) +(: cnet_isa_b859a3d1da (IsA smoke insubstantiality) (STV 1.0 0.9091)) +(: cnet_isa_29388159e6 (IsA smoke indication) (STV 1.0 0.9091)) +(: cnet_isa_3669e5a207 (IsA smoke aerosol) (STV 1.0 0.9091)) +(: cnet_isa_e9760e0458 (IsA smoke vaporization) (STV 1.0 0.9091)) +(: cnet_isa_a0269f56e5 (IsA smoke_bomb bomb) (STV 1.0 0.9091)) +(: cnet_isa_dfe48f2953 (IsA smoke_bush shrub) (STV 1.0 0.9091)) +(: cnet_isa_009fef1db6 (IsA smoke_hole vent) (STV 1.0 0.9091)) +(: cnet_isa_9a2c4720b6 (IsA smoke_screen concealment) (STV 1.0 0.9091)) +(: cnet_isa_312da19798 (IsA smoke_screen screen) (STV 1.0 0.9091)) +(: cnet_isa_ff3d803d3b (IsA smoke_tree shrub) (STV 1.0 0.9091)) +(: cnet_isa_0c24aed9a7 (IsA smoked_eel eel) (STV 1.0 0.9091)) +(: cnet_isa_f8a435e495 (IsA smoked_mackerel mackerel) (STV 1.0 0.9091)) +(: cnet_isa_37923a73ec (IsA smoked_salmon salmon) (STV 1.0 0.9091)) +(: cnet_isa_7bec01bdf4 (IsA smokehouse house) (STV 1.0 0.9091)) +(: cnet_isa_325ce1b3b6 (IsA smoker passenger_car) (STV 1.0 0.9091)) +(: cnet_isa_beed841781 (IsA smoker consumer) (STV 1.0 0.9091)) +(: cnet_isa_d0246a62ca (IsA smokestack chimney) (STV 1.0 0.9091)) +(: cnet_isa_c30b0fe031 (IsA smoking bad_habit) (STV 1.0 0.9339)) +(: cnet_isa_395792854b (IsA smoking expensive_habit) (STV 1.0 0.9339)) +(: cnet_isa_771460e282 (IsA smoking_gun evidence) (STV 1.0 0.9091)) +(: cnet_isa_547fcce573 (IsA smoking_mixture tobacco) (STV 1.0 0.9091)) +(: cnet_isa_6055359a26 (IsA smoking_room room) (STV 1.0 0.9091)) +(: cnet_isa_22eeb7bb62 (IsA smooth accomplishment) (STV 1.0 0.9091)) +(: cnet_isa_06c80a35b2 (IsA smooth_alder alder) (STV 1.0 0.9091)) +(: cnet_isa_1ceac48061 (IsA smooth_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_62ded34c19 (IsA smooth_crabgrass crabgrass) (STV 1.0 0.9091)) +(: cnet_isa_2f070720d6 (IsA smooth_darling_pea darling_pea) (STV 1.0 0.9091)) +(: cnet_isa_84f809d9c0 (IsA smooth_dogfish dogfish) (STV 1.0 0.9091)) +(: cnet_isa_604f8733ae (IsA smooth_green_snake green_snake) (STV 1.0 0.9091)) +(: cnet_isa_4a83f71e96 (IsA smooth_haired_fox_terrier fox_terrier) (STV 1.0 0.9091)) +(: cnet_isa_23240a5412 (IsA smooth_hammerhead hammerhead) (STV 1.0 0.9091)) +(: cnet_isa_1219ea56c6 (IsA smooth_leaved_elm elm) (STV 1.0 0.9091)) +(: cnet_isa_6fdaba2439 (IsA smooth_lip_fern lip_fern) (STV 1.0 0.9091)) +(: cnet_isa_6c878fd6da (IsA smooth_muscle muscle) (STV 1.0 0.9091)) +(: cnet_isa_c733321805 (IsA smooth_muscle_cell muscle_cell) (STV 1.0 0.9091)) +(: cnet_isa_8b6b395314 (IsA smooth_plane plane) (STV 1.0 0.9091)) +(: cnet_isa_61d491bbfd (IsA smooth_softshell soft_shelled_turtle) (STV 1.0 0.9091)) +(: cnet_isa_f8a2f5964e (IsA smooth_sumac sumac) (STV 1.0 0.9091)) +(: cnet_isa_1006111f11 (IsA smooth_winterberry_holly holly) (STV 1.0 0.9091)) +(: cnet_isa_87e3e280c6 (IsA smooth_woodsia woodsia) (STV 1.0 0.9091)) +(: cnet_isa_e58308210b (IsA smoothbark eucalyptus) (STV 1.0 0.9091)) +(: cnet_isa_56f3318173 (IsA smoothbore firearm) (STV 1.0 0.9091)) +(: cnet_isa_49e15ec50d (IsA smoothhound smooth_dogfish) (STV 1.0 0.9091)) +(: cnet_isa_23897714c2 (IsA smoothie beverage) (STV 1.0 0.9091)) +(: cnet_isa_2064b56925 (IsA smoothie hypocrite) (STV 1.0 0.9091)) +(: cnet_isa_6c6b87b73a (IsA smoothness effortlessness) (STV 1.0 0.9091)) +(: cnet_isa_8425ab39d2 (IsA smoothness evenness) (STV 1.0 0.9091)) +(: cnet_isa_5aa4edaec9 (IsA smoothness texture) (STV 1.0 0.9091)) +(: cnet_isa_e96b007a65 (IsA smorgasbord buffet) (STV 1.0 0.9091)) +(: cnet_isa_6c0b375a95 (IsA smother smoke) (STV 1.0 0.9091)) +(: cnet_isa_3bb6558a24 (IsA smoulder fire) (STV 1.0 0.9091)) +(: cnet_isa_4612ff797f (IsA smtp protocol) (STV 1.0 0.9454)) +(: cnet_isa_2e973c440a (IsA smudge blemish) (STV 1.0 0.9091)) +(: cnet_isa_9d65dd4070 (IsA smudge fire) (STV 1.0 0.9091)) +(: cnet_isa_1c58f25d86 (IsA smuggler criminal) (STV 1.0 0.9091)) +(: cnet_isa_222eef6a91 (IsA smuggling importing) (STV 1.0 0.9091)) +(: cnet_isa_1231fceeb6 (IsA smugness complacency) (STV 1.0 0.9091)) +(: cnet_isa_a52e94bf23 (IsA smut fungus) (STV 1.0 0.9091)) +(: cnet_isa_f552d2365b (IsA smut plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_8e61f74135 (IsA smut_grass dropseed) (STV 1.0 0.9091)) +(: cnet_isa_c469f6bbb2 (IsA smuttiness obscenity) (STV 1.0 0.9091)) +(: cnet_isa_9c716c618d (IsA smuttiness dirtiness) (STV 1.0 0.9091)) +(: cnet_isa_b5f57df5b3 (IsA smyrnium rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6a2b6d17b5 (IsA snack_bar bar) (STV 1.0 0.9091)) +(: cnet_isa_47d9c0214f (IsA snack_food dish) (STV 1.0 0.9091)) +(: cnet_isa_63865a4a49 (IsA snaffle bit) (STV 1.0 0.9091)) +(: cnet_isa_94615ecfcc (IsA snafu blunder) (STV 1.0 0.9091)) +(: cnet_isa_9499c699e7 (IsA snag tree) (STV 1.0 0.9091)) +(: cnet_isa_fae36eb82a (IsA snag bulge) (STV 1.0 0.9091)) +(: cnet_isa_b7f0853e4d (IsA snail gastropod) (STV 1.0 0.9091)) +(: cnet_isa_2203aa4abc (IsA snail_butter sauce) (STV 1.0 0.9091)) +(: cnet_isa_2db7c8f388 (IsA snail_darter perch) (STV 1.0 0.9091)) +(: cnet_isa_224c02ddd0 (IsA snail_mail mail) (STV 1.0 0.9091)) +(: cnet_isa_51ec46659a (IsA snailfish scorpaenoid) (STV 1.0 0.9091)) +(: cnet_isa_62fe455ef4 (IsA snailflower legume) (STV 1.0 0.9091)) +(: cnet_isa_78ebbfbb89 (IsA snail hermaphrodite) (STV 1.0 0.9091)) +(: cnet_isa_89dd714de8 (IsA snake_s_head_fritillary fritillary) (STV 1.0 0.9091)) +(: cnet_isa_7db61589a8 (IsA snake diapsid) (STV 1.0 0.9091)) +(: cnet_isa_9f2cbf9953 (IsA snake bad_person) (STV 1.0 0.9091)) +(: cnet_isa_f2cf845a61 (IsA snake_and_skunk both_animal) (STV 1.0 0.9091)) +(: cnet_isa_32f7c6aaf1 (IsA snake_charmer performer) (STV 1.0 0.9091)) +(: cnet_isa_a4a563dc93 (IsA snake_dance ritual_dancing) (STV 1.0 0.9091)) +(: cnet_isa_25af49a0d6 (IsA snake_dance file) (STV 1.0 0.9091)) +(: cnet_isa_489b648626 (IsA snake_mackerel gempylid) (STV 1.0 0.9091)) +(: cnet_isa_354a0652a4 (IsA snake_muishond muishond) (STV 1.0 0.9091)) +(: cnet_isa_2193821282 (IsA snake_oil liquid) (STV 1.0 0.9091)) +(: cnet_isa_b22a10ce64 (IsA snake_polypody fern) (STV 1.0 0.9091)) +(: cnet_isa_b9ecc772d4 (IsA snake_venom venom) (STV 1.0 0.9091)) +(: cnet_isa_292ad7b354 (IsA snakebird pelecaniform_seabird) (STV 1.0 0.9091)) +(: cnet_isa_0b64fa32dd (IsA snakebite bite) (STV 1.0 0.9091)) +(: cnet_isa_9fcbf2b943 (IsA snakeblenny prickleback) (STV 1.0 0.9091)) +(: cnet_isa_bca730da4c (IsA snakefly neuropteron) (STV 1.0 0.9091)) +(: cnet_isa_71156c8bee (IsA snake_and_ladder board_game) (STV 1.0 0.9091)) +(: cnet_isa_d76e680f33 (IsA snakewood rauwolfia) (STV 1.0 0.9091)) +(: cnet_isa_d1426ab9ca (IsA snap motion) (STV 1.0 0.9091)) +(: cnet_isa_d8ecbedfec (IsA snap fastener) (STV 1.0 0.9091)) +(: cnet_isa_0ac8f36f6e (IsA snap break) (STV 1.0 0.9091)) +(: cnet_isa_0f9917d84d (IsA snap noise) (STV 1.0 0.9091)) +(: cnet_isa_77dc14840b (IsA snap while) (STV 1.0 0.9091)) +(: cnet_isa_1ad4ddc36f (IsA snap_bean green_bean) (STV 1.0 0.9091)) +(: cnet_isa_7dc25c16d3 (IsA snap_brim brim) (STV 1.0 0.9091)) +(: cnet_isa_ea98ed6ecb (IsA snap_brim_hat hat) (STV 1.0 0.9091)) +(: cnet_isa_7b5983a24d (IsA snap_roll roll) (STV 1.0 0.9091)) +(: cnet_isa_a45c6d128e (IsA snapdragon flower) (STV 1.0 0.9091)) +(: cnet_isa_45eadb6643 (IsA snapper food_fish) (STV 1.0 0.9091)) +(: cnet_isa_d6bbb9f1d0 (IsA snapper percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_20a60e8ceb (IsA snapper sparid) (STV 1.0 0.9091)) +(: cnet_isa_fe0a74ffea (IsA snapper saltwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_e77fad2bf9 (IsA snapping_shrimp shrimp) (STV 1.0 0.9091)) +(: cnet_isa_6182637f87 (IsA snapping_turtle turtle) (STV 1.0 0.9091)) +(: cnet_isa_b83e8add40 (IsA snapshot picture) (STV 1.0 0.9091)) +(: cnet_isa_372e5f2912 (IsA snapshot_program trace_program) (STV 1.0 0.9091)) +(: cnet_isa_9e73f7e430 (IsA snare string) (STV 1.0 0.9091)) +(: cnet_isa_9ca7864db9 (IsA snare surgical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_513369e561 (IsA snare trap) (STV 1.0 0.9091)) +(: cnet_isa_91d9538188 (IsA snare_drum musical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_4ddf881188 (IsA snare_drum drum) (STV 1.0 0.9091)) +(: cnet_isa_b196b3e753 (IsA snarer hunter) (STV 1.0 0.9091)) +(: cnet_isa_c4836c9384 (IsA snarl facial_expression) (STV 1.0 0.9091)) +(: cnet_isa_84c470555b (IsA snarl utterance) (STV 1.0 0.9091)) +(: cnet_isa_098cb970b2 (IsA snatch weightlifting) (STV 1.0 0.9091)) +(: cnet_isa_d34b68e28e (IsA snatch fragment) (STV 1.0 0.9091)) +(: cnet_isa_264c9ff0dc (IsA snatch_block fairlead) (STV 1.0 0.9091)) +(: cnet_isa_88de4d19ba (IsA snatcher thief) (STV 1.0 0.9091)) +(: cnet_isa_18c1277a56 (IsA sneak unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_88c7637903 (IsA sneak_preview preview) (STV 1.0 0.9091)) +(: cnet_isa_cee67d51db (IsA sneak_thief thief) (STV 1.0 0.9091)) +(: cnet_isa_21a9d9906b (IsA sneer contempt) (STV 1.0 0.9091)) +(: cnet_isa_5d9489fedd (IsA sneerer unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_fafdf49bc6 (IsA sneeze reflex) (STV 1.0 0.9091)) +(: cnet_isa_4d3710df0c (IsA sneeze symptom) (STV 1.0 0.9091)) +(: cnet_isa_d35204a98b (IsA sneezer person) (STV 1.0 0.9091)) +(: cnet_isa_c337c62d60 (IsA sneezeweed herb) (STV 1.0 0.9091)) +(: cnet_isa_405d29ef18 (IsA sneezeweed_yarrow achillea) (STV 1.0 0.9091)) +(: cnet_isa_536a89608c (IsA snellen_chart display) (STV 1.0 0.9091)) +(: cnet_isa_5054a062e4 (IsA snellen_test test) (STV 1.0 0.9091)) +(: cnet_isa_8e81ccecb3 (IsA snick contact) (STV 1.0 0.9091)) +(: cnet_isa_983ef39e2e (IsA snicker laugh) (STV 1.0 0.9091)) +(: cnet_isa_a8b8563bd0 (IsA sniff smell) (STV 1.0 0.9091)) +(: cnet_isa_47f0c5dcc3 (IsA sniffer person) (STV 1.0 0.9091)) +(: cnet_isa_486bc6a475 (IsA sniffler person) (STV 1.0 0.9091)) +(: cnet_isa_73cc512038 (IsA snifter glass) (STV 1.0 0.9091)) +(: cnet_isa_d9d1692cea (IsA snip piece) (STV 1.0 0.9091)) +(: cnet_isa_fa24e371f6 (IsA snipe gunfire) (STV 1.0 0.9091)) +(: cnet_isa_b2ea2790f5 (IsA snipe shorebird) (STV 1.0 0.9091)) +(: cnet_isa_6073f37624 (IsA snipe_hunt practical_joke) (STV 1.0 0.9091)) +(: cnet_isa_f8817134d9 (IsA snipefish teleost_fish) (STV 1.0 0.9091)) +(: cnet_isa_89fcad0744 (IsA sniper marksman) (STV 1.0 0.9091)) +(: cnet_isa_3dfdc9fb3a (IsA sniper_rifle rifle) (STV 1.0 0.9091)) +(: cnet_isa_be49b9ea3b (IsA snip shear) (STV 1.0 0.9091)) +(: cnet_isa_e6fed6a182 (IsA snit irritation) (STV 1.0 0.9091)) +(: cnet_isa_7534a33284 (IsA snivel crying) (STV 1.0 0.9091)) +(: cnet_isa_999701aa82 (IsA snob unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_084358aa58 (IsA snobbery arrogance) (STV 1.0 0.9091)) +(: cnet_isa_d8df5f9459 (IsA snogging caressing) (STV 1.0 0.9091)) +(: cnet_isa_62a1cee9df (IsA snood net) (STV 1.0 0.9091)) +(: cnet_isa_666debc6e3 (IsA snook robalo) (STV 1.0 0.9091)) +(: cnet_isa_ec63db7d5f (IsA snooker pool) (STV 1.0 0.9091)) +(: cnet_isa_c9b618ec6a (IsA snoop spy) (STV 1.0 0.9091)) +(: cnet_isa_2488bf5c39 (IsA snootiness quality) (STV 1.0 0.9091)) +(: cnet_isa_deacba1755 (IsA snore breathing) (STV 1.0 0.9091)) +(: cnet_isa_5222635501 (IsA snore noise) (STV 1.0 0.9091)) +(: cnet_isa_4ef61e896a (IsA snorer sleeper) (STV 1.0 0.9091)) +(: cnet_isa_82376616d3 (IsA snorkel air_passage) (STV 1.0 0.9091)) +(: cnet_isa_0d8e9c3257 (IsA snorkel breathing_device) (STV 1.0 0.9091)) +(: cnet_isa_e78d7b754f (IsA snorkeling skin_diving) (STV 1.0 0.9091)) +(: cnet_isa_dbc9ab2578 (IsA snorter thing) (STV 1.0 0.9091)) +(: cnet_isa_8e52a24158 (IsA snorter difficulty) (STV 1.0 0.9091)) +(: cnet_isa_1623b41c52 (IsA snorter unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_204b18ee1e (IsA snot mucus) (STV 1.0 0.9091)) +(: cnet_isa_c6403cb09c (IsA snout nose) (STV 1.0 0.9091)) +(: cnet_isa_32e9c21d3c (IsA snout_beetle weevil) (STV 1.0 0.9091)) +(: cnet_isa_d7d62ee53f (IsA snow crystalized_water) (STV 1.0 0.9091)) +(: cnet_isa_fa599c1285 (IsA snow crystallized_water) (STV 1.0 0.9091)) +(: cnet_isa_912b7e3194 (IsA snow frozen_water) (STV 1.0 0.9454)) +(: cnet_isa_f41280bf83 (IsA snow water) (STV 1.0 0.9091)) +(: cnet_isa_765b41a0ea (IsA snow precipitation) (STV 1.0 0.9091)) +(: cnet_isa_02b39c6f6a (IsA snow layer) (STV 1.0 0.9091)) +(: cnet_isa_1d4766c804 (IsA snow_bunting bunting) (STV 1.0 0.9091)) +(: cnet_isa_d5c21ae3c6 (IsA snow_goose blue_goose) (STV 1.0 0.9091)) +(: cnet_isa_126e92408c (IsA snow_gum eucalyptus) (STV 1.0 0.9091)) +(: cnet_isa_d224fdb0cd (IsA snow_in_summer mouse_ear_chickweed) (STV 1.0 0.9091)) +(: cnet_isa_b2a49af0c0 (IsA snow_job misrepresentation) (STV 1.0 0.9091)) +(: cnet_isa_18acc313ab (IsA snow_leopard operating_system) (STV 1.0 0.9091)) +(: cnet_isa_59f6e2f805 (IsA snow_leopard big_cat) (STV 1.0 0.9091)) +(: cnet_isa_52c74a22eb (IsA snow_line line) (STV 1.0 0.9091)) +(: cnet_isa_71687a9519 (IsA snow_mushroom jelly_fungus) (STV 1.0 0.9091)) +(: cnet_isa_51ace1706f (IsA snow_on_mountain spurge) (STV 1.0 0.9091)) +(: cnet_isa_fe6e254987 (IsA snow_pea green_pea) (STV 1.0 0.9091)) +(: cnet_isa_86bbb4be9d (IsA snow_pea edible_pod_pea) (STV 1.0 0.9091)) +(: cnet_isa_aedfc61dfc (IsA snow_plant wildflower) (STV 1.0 0.9091)) +(: cnet_isa_ed8bd0f7cb (IsA snow_thrower machine) (STV 1.0 0.9091)) +(: cnet_isa_a8d8705ae6 (IsA snow_tire pneumatic_tire) (STV 1.0 0.9091)) +(: cnet_isa_caa9143603 (IsA snowball ball) (STV 1.0 0.9091)) +(: cnet_isa_5d15f2a6c0 (IsA snowball frozen_dessert) (STV 1.0 0.9091)) +(: cnet_isa_2ce515382b (IsA snowball sand_verbena) (STV 1.0 0.9091)) +(: cnet_isa_71b8d08f02 (IsA snowbank mound) (STV 1.0 0.9091)) +(: cnet_isa_8af4093183 (IsA snowbell styrax) (STV 1.0 0.9091)) +(: cnet_isa_7c28b1c343 (IsA snowberry poisonous_plant) (STV 1.0 0.9091)) +(: cnet_isa_911986e5e1 (IsA snowblindness blindness) (STV 1.0 0.9091)) +(: cnet_isa_fdc88c0fe5 (IsA snowboard board) (STV 1.0 0.9091)) +(: cnet_isa_1129efa258 (IsA snowboarder skidder) (STV 1.0 0.9091)) +(: cnet_isa_1123c46872 (IsA snowboarding sport) (STV 1.0 0.9091)) +(: cnet_isa_af9f23aa97 (IsA snowboarding slide) (STV 1.0 0.9091)) +(: cnet_isa_38b4dce923 (IsA snowcap covering) (STV 1.0 0.9091)) +(: cnet_isa_70e1aee6fd (IsA snowdrift drift) (STV 1.0 0.9091)) +(: cnet_isa_b828bb436d (IsA snowdrop_anemone anemone) (STV 1.0 0.9091)) +(: cnet_isa_7ee4c68715 (IsA snowfield plain) (STV 1.0 0.9091)) +(: cnet_isa_5d9271751a (IsA snowflake crystal) (STV 1.0 0.9091)) +(: cnet_isa_836d18d9a8 (IsA snowman figure) (STV 1.0 0.9091)) +(: cnet_isa_26a88dcb6a (IsA snowmobile tracked_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_211a464107 (IsA snowplow motor_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_ae8b6fb720 (IsA snowshoe device) (STV 1.0 0.9091)) +(: cnet_isa_c83754d458 (IsA snowshoe_hare hare) (STV 1.0 0.9091)) +(: cnet_isa_1c770301dc (IsA snowsuit overgarment) (STV 1.0 0.9091)) +(: cnet_isa_2d08b59af3 (IsA snowy_egret egret) (STV 1.0 0.9091)) +(: cnet_isa_f5a47cc1bf (IsA snowy_orchid fringed_orchis) (STV 1.0 0.9091)) +(: cnet_isa_8554509897 (IsA snowy_tree_cricket tree_cricket) (STV 1.0 0.9091)) +(: cnet_isa_96ad2fbf20 (IsA snub rebuff) (STV 1.0 0.9091)) +(: cnet_isa_46813952f0 (IsA snuff tobacco) (STV 1.0 0.9091)) +(: cnet_isa_e0d71b3ee4 (IsA snuff touch) (STV 1.0 0.9091)) +(: cnet_isa_53b3df5a28 (IsA snuff char) (STV 1.0 0.9091)) +(: cnet_isa_401bfca6fb (IsA snuff_color yellowish_brown) (STV 1.0 0.9091)) +(: cnet_isa_2b851e86f3 (IsA snuffbox box) (STV 1.0 0.9091)) +(: cnet_isa_7bbf2ac94e (IsA snuffbox_fern marsh_fern) (STV 1.0 0.9091)) +(: cnet_isa_a8a96cf503 (IsA snuffer implement) (STV 1.0 0.9091)) +(: cnet_isa_d7f78e39d9 (IsA snuffer consumer) (STV 1.0 0.9091)) +(: cnet_isa_89a66e4544 (IsA snuffer person) (STV 1.0 0.9091)) +(: cnet_isa_2710ce99a2 (IsA snuffer scissor) (STV 1.0 0.9091)) +(: cnet_isa_9ef717c7bb (IsA snuffle breathing) (STV 1.0 0.9091)) +(: cnet_isa_b54c5880c2 (IsA snuffler person) (STV 1.0 0.9091)) +(: cnet_isa_9f0d73aa18 (IsA soak wash) (STV 1.0 0.9091)) +(: cnet_isa_7b0aac00d6 (IsA soak natural_process) (STV 1.0 0.9091)) +(: cnet_isa_aabd216d61 (IsA soap cleansing_agent) (STV 1.0 0.9091)) +(: cnet_isa_98aa6b32d9 (IsA soap gamma_hydroxybutyrate) (STV 1.0 0.9091)) +(: cnet_isa_3c51b84541 (IsA soap bribe) (STV 1.0 0.9091)) +(: cnet_isa_ea73daf9d5 (IsA soap_bubble bubble) (STV 1.0 0.9091)) +(: cnet_isa_036d034fa1 (IsA soap_dish fixture) (STV 1.0 0.9091)) +(: cnet_isa_eb6048aa87 (IsA soap_dispenser dispenser) (STV 1.0 0.9091)) +(: cnet_isa_e5e5dcc9fc (IsA soap_film film) (STV 1.0 0.9091)) +(: cnet_isa_30cb7b9e22 (IsA soap_flake soap) (STV 1.0 0.9091)) +(: cnet_isa_57af2dc3d8 (IsA soap_opera serial) (STV 1.0 0.9091)) +(: cnet_isa_1b08829761 (IsA soap_pad cleaning_pad) (STV 1.0 0.9091)) +(: cnet_isa_88134a70d3 (IsA soap_powder soap) (STV 1.0 0.9091)) +(: cnet_isa_4eb9d9649e (IsA soapberry tree) (STV 1.0 0.9091)) +(: cnet_isa_5f854ef0b4 (IsA soapberry_vine vine) (STV 1.0 0.9091)) +(: cnet_isa_da730d21b2 (IsA soapbox crate) (STV 1.0 0.9091)) +(: cnet_isa_3e275d4373 (IsA soapfish serranid_fish) (STV 1.0 0.9091)) +(: cnet_isa_3890e5d915 (IsA soapiness quality) (STV 1.0 0.9091)) +(: cnet_isa_968fde14ca (IsA soapstone talc) (STV 1.0 0.9091)) +(: cnet_isa_a638d9d8d9 (IsA soapsud foam) (STV 1.0 0.9091)) +(: cnet_isa_77946a1207 (IsA soapweed yucca) (STV 1.0 0.9091)) +(: cnet_isa_1cb8eba361 (IsA soapwort flower) (STV 1.0 0.9091)) +(: cnet_isa_bd9161c311 (IsA soapwort_gentian gentian) (STV 1.0 0.9091)) +(: cnet_isa_fef23f9991 (IsA soar rise) (STV 1.0 0.9091)) +(: cnet_isa_027e915cdd (IsA soave white_wine) (STV 1.0 0.9091)) +(: cnet_isa_f71d26a3e2 (IsA sob crying) (STV 1.0 0.9091)) +(: cnet_isa_e5863d8d4f (IsA sob_sister journalist) (STV 1.0 0.9091)) +(: cnet_isa_efeda2d7ab (IsA sob_story narrative) (STV 1.0 0.9091)) +(: cnet_isa_5589ead7ae (IsA soberness temporary_state) (STV 1.0 0.9091)) +(: cnet_isa_78e6826cd5 (IsA soberside adult) (STV 1.0 0.9091)) +(: cnet_isa_1fbf4535c2 (IsA sobralia orchid) (STV 1.0 0.9091)) +(: cnet_isa_d0081bfe56 (IsA sobriety abstinence) (STV 1.0 0.9091)) +(: cnet_isa_65eead3026 (IsA sobriety temperance) (STV 1.0 0.9091)) +(: cnet_isa_d8ec933190 (IsA socage service) (STV 1.0 0.9091)) +(: cnet_isa_6c5770c826 (IsA soccer fun) (STV 1.0 0.9091)) +(: cnet_isa_a0aad30def (IsA soccer game) (STV 1.0 0.9339)) +(: cnet_isa_5b46448217 (IsA soccer sport) (STV 1.0 0.9786)) +(: cnet_isa_c8e1a423d2 (IsA soccer team_sport) (STV 1.0 0.9454)) +(: cnet_isa_b076b9ae12 (IsA soccer football) (STV 1.0 0.9091)) +(: cnet_isa_151f2bc8b0 (IsA soccer_ball ball) (STV 1.0 0.9339)) +(: cnet_isa_50ae190be1 (IsA soccer_field playing_field) (STV 1.0 0.9091)) +(: cnet_isa_93b5697b58 (IsA soccer_player athlete) (STV 1.0 0.9091)) +(: cnet_isa_962a852088 (IsA soccer_player player) (STV 1.0 0.9091)) +(: cnet_isa_f7efcc2767 (IsA sociability sociality) (STV 1.0 0.9091)) +(: cnet_isa_c30d689568 (IsA sociable party) (STV 1.0 0.9091)) +(: cnet_isa_24699efbf3 (IsA social_action social_policy) (STV 1.0 0.9091)) +(: cnet_isa_d3c8b43d5f (IsA social_activity group_action) (STV 1.0 0.9091)) +(: cnet_isa_3417aa397e (IsA social_anthropologist anthropologist) (STV 1.0 0.9091)) +(: cnet_isa_0cf42e0834 (IsA social_anthropology anthropology) (STV 1.0 0.9091)) +(: cnet_isa_66543c06d9 (IsA social_climber upstart) (STV 1.0 0.9091)) +(: cnet_isa_9796b2d2e6 (IsA social_contract agreement) (STV 1.0 0.9091)) +(: cnet_isa_58590e7241 (IsA social_control group_action) (STV 1.0 0.9091)) +(: cnet_isa_647865905e (IsA social_dancing dancing) (STV 1.0 0.9091)) +(: cnet_isa_8373ae57f0 (IsA social_democracy political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_e178c82682 (IsA social_democratic_party party) (STV 1.0 0.9091)) +(: cnet_isa_289aac5862 (IsA social_development_commission economic_and_social_council_commission) (STV 1.0 0.9091)) +(: cnet_isa_2b7f94feba (IsA social_event event) (STV 1.0 0.9091)) +(: cnet_isa_e4d32f4a5a (IsA social_gathering gathering) (STV 1.0 0.9091)) +(: cnet_isa_8d86f03166 (IsA social_group group) (STV 1.0 0.9091)) +(: cnet_isa_8a6b01ed7c (IsA social_insect insect) (STV 1.0 0.9091)) +(: cnet_isa_7846a6dac9 (IsA social_insurance social_welfare) (STV 1.0 0.9091)) +(: cnet_isa_35df58a09f (IsA social_organization system) (STV 1.0 0.9091)) +(: cnet_isa_edd1e876ce (IsA social_phobia phobia) (STV 1.0 0.9091)) +(: cnet_isa_43fe7edecf (IsA social_policy policy) (STV 1.0 0.9091)) +(: cnet_isa_9b2f31c804 (IsA social_process human_process) (STV 1.0 0.9091)) +(: cnet_isa_cd69033669 (IsA social_psychology psychology) (STV 1.0 0.9091)) +(: cnet_isa_eeee6d84c3 (IsA social_relation relation) (STV 1.0 0.9091)) +(: cnet_isa_873f2dc3ca (IsA social_science science) (STV 1.0 0.9091)) +(: cnet_isa_409c9fa7ce (IsA social_scientist scientist) (STV 1.0 0.9091)) +(: cnet_isa_ff79fdff8b (IsA social_season season) (STV 1.0 0.9091)) +(: cnet_isa_8bd9ab780b (IsA social_secretary secretary) (STV 1.0 0.9091)) +(: cnet_isa_f8e41b6fac (IsA social_security social_insurance) (STV 1.0 0.9091)) +(: cnet_isa_9ee6b2654b (IsA social_security_administration independent_agency) (STV 1.0 0.9091)) +(: cnet_isa_8d4c66ab86 (IsA social_security_number number) (STV 1.0 0.9091)) +(: cnet_isa_ab3ff0cf74 (IsA social_station status) (STV 1.0 0.9091)) +(: cnet_isa_338bf499aa (IsA social_welfare financial_aid) (STV 1.0 0.9091)) +(: cnet_isa_99dc0d0003 (IsA social_work welfare_work) (STV 1.0 0.9091)) +(: cnet_isa_f27da48be6 (IsA social_worker public_servant) (STV 1.0 0.9091)) +(: cnet_isa_3d22e8cba4 (IsA socialism ideology) (STV 1.0 0.9091)) +(: cnet_isa_91a4d02a48 (IsA socialism political_ideology) (STV 1.0 0.9091)) +(: cnet_isa_25bda70e34 (IsA socialism political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_a5ce7a115d (IsA socialism managed_economy) (STV 1.0 0.9091)) +(: cnet_isa_94966ba9d3 (IsA socialist politician) (STV 1.0 0.9091)) +(: cnet_isa_bccc704a56 (IsA socialist_labor_party party) (STV 1.0 0.9091)) +(: cnet_isa_d6d1611af9 (IsA socialist_party party) (STV 1.0 0.9091)) +(: cnet_isa_09fbabf3fa (IsA socialite important_person) (STV 1.0 0.9091)) +(: cnet_isa_3fa3e335dd (IsA sociality nature) (STV 1.0 0.9091)) +(: cnet_isa_16853dcf9b (IsA socialization group_action) (STV 1.0 0.9091)) +(: cnet_isa_11d075fca6 (IsA socialization meeting) (STV 1.0 0.9091)) +(: cnet_isa_28ee0eaacb (IsA socialization social_control) (STV 1.0 0.9091)) +(: cnet_isa_725c48e22f (IsA socializer person) (STV 1.0 0.9091)) +(: cnet_isa_04551fb39f (IsA society group_of_people) (STV 1.0 0.9339)) +(: cnet_isa_98e2f3caf1 (IsA society large_group_of_people) (STV 1.0 0.9091)) +(: cnet_isa_f28204fb92 (IsA society elite) (STV 1.0 0.9091)) +(: cnet_isa_d87bf7d03a (IsA society social_group) (STV 1.0 0.9091)) +(: cnet_isa_e6671f8fe1 (IsA socinian disciple) (STV 1.0 0.9091)) +(: cnet_isa_26b8ff5cf1 (IsA sociobiologist biologist) (STV 1.0 0.9091)) +(: cnet_isa_e84b3cbab9 (IsA sociobiology biology) (STV 1.0 0.9091)) +(: cnet_isa_ed6019fba1 (IsA sociolinguist linguist) (STV 1.0 0.9091)) +(: cnet_isa_ca76b582d0 (IsA sociolinguistic linguistic) (STV 1.0 0.9091)) +(: cnet_isa_b217a1d94e (IsA sociologist social_scientist) (STV 1.0 0.9091)) +(: cnet_isa_812642aecf (IsA sociology social_science) (STV 1.0 0.9091)) +(: cnet_isa_77ad7570c8 (IsA sociology_department academic_department) (STV 1.0 0.9091)) +(: cnet_isa_064ae4b5b9 (IsA sociometry sociology) (STV 1.0 0.9091)) +(: cnet_isa_10d1ea5a81 (IsA sociopath neurotic) (STV 1.0 0.9091)) +(: cnet_isa_320a51fa96 (IsA sock article_of_clothing) (STV 1.0 0.9091)) +(: cnet_isa_873acfd672 (IsA sock hosiery) (STV 1.0 0.9091)) +(: cnet_isa_c5def06161 (IsA socket receptacle) (STV 1.0 0.9091)) +(: cnet_isa_b0c99e596c (IsA socket cavity) (STV 1.0 0.9091)) +(: cnet_isa_1b59a1330e (IsA socket_wrench wrench) (STV 1.0 0.9091)) +(: cnet_isa_0976bdd288 (IsA sockeye salmon) (STV 1.0 0.9091)) +(: cnet_isa_9df17575b4 (IsA socle pedestal) (STV 1.0 0.9091)) +(: cnet_isa_d760d21d6b (IsA socotra_begonia begonia) (STV 1.0 0.9091)) +(: cnet_isa_3aa75f88f9 (IsA socratic_irony irony) (STV 1.0 0.9091)) +(: cnet_isa_e362adb88e (IsA socratic_method teaching_method) (STV 1.0 0.9091)) +(: cnet_isa_c2b9070990 (IsA sod_house house) (STV 1.0 0.9091)) +(: cnet_isa_bd292431dd (IsA soda beverage) (STV 1.0 0.9339)) +(: cnet_isa_f32744a7c2 (IsA soda carbonated) (STV 1.0 0.9339)) +(: cnet_isa_d2e8c2560b (IsA soda drink) (STV 1.0 0.9707)) +(: cnet_isa_fcab30e3f7 (IsA soda_can can) (STV 1.0 0.9091)) +(: cnet_isa_4f67effbed (IsA soda_cracker cracker) (STV 1.0 0.9091)) +(: cnet_isa_a4c6f9a3a0 (IsA soda_fountain apparatus) (STV 1.0 0.9091)) +(: cnet_isa_bf42d5ae36 (IsA soda_fountain bar) (STV 1.0 0.9091)) +(: cnet_isa_37c8289500 (IsA soda_jerk counterperson) (STV 1.0 0.9091)) +(: cnet_isa_e7f7886c32 (IsA soda_lime mixture) (STV 1.0 0.9091)) +(: cnet_isa_20c863ff78 (IsA soda_water drinking_water) (STV 1.0 0.9091)) +(: cnet_isa_436e4dddac (IsA sodalist member) (STV 1.0 0.9091)) +(: cnet_isa_32279048ee (IsA sodalite mineral) (STV 1.0 0.9091)) +(: cnet_isa_b9a2b837fe (IsA sodium alkaline_metal) (STV 1.0 0.9091)) +(: cnet_isa_d8935d64af (IsA sodium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_d704f211ef (IsA sodium_carbonate salt) (STV 1.0 0.9091)) +(: cnet_isa_7fd21e20ff (IsA sodium_carboxymethyl_cellulose salt) (STV 1.0 0.9091)) +(: cnet_isa_c91e4eb2ab (IsA sodium_chlorate salt) (STV 1.0 0.9091)) +(: cnet_isa_7192eaf549 (IsA sodium_chloride binary_compound) (STV 1.0 0.9091)) +(: cnet_isa_3f69654a9a (IsA sodium_cyanide cyanide) (STV 1.0 0.9091)) +(: cnet_isa_12f386176b (IsA sodium_dichromate mordant) (STV 1.0 0.9091)) +(: cnet_isa_3b248d946f (IsA sodium_dichromate salt) (STV 1.0 0.9091)) +(: cnet_isa_e415be4316 (IsA sodium_fluoride salt) (STV 1.0 0.9091)) +(: cnet_isa_530dd4e057 (IsA sodium_hydride hydride) (STV 1.0 0.9091)) +(: cnet_isa_191dc04b62 (IsA sodium_hydroxide hydroxide) (STV 1.0 0.9091)) +(: cnet_isa_4d53ecdaae (IsA sodium_hydroxide lye) (STV 1.0 0.9091)) +(: cnet_isa_d8360de1cb (IsA sodium_hypochlorite bleaching_agent) (STV 1.0 0.9091)) +(: cnet_isa_69b4d75fda (IsA sodium_hypochlorite disinfectant) (STV 1.0 0.9091)) +(: cnet_isa_dced76b302 (IsA sodium_hypochlorite hypochlorite) (STV 1.0 0.9091)) +(: cnet_isa_3d655cd885 (IsA sodium_iodide iodide) (STV 1.0 0.9091)) +(: cnet_isa_e8d06ff6ae (IsA sodium_lauryl_sulphate detergent) (STV 1.0 0.9091)) +(: cnet_isa_1dfad3629c (IsA sodium_lauryl_sulphate sulfate) (STV 1.0 0.9091)) +(: cnet_isa_300b6741ac (IsA sodium_nitrate nitrate) (STV 1.0 0.9091)) +(: cnet_isa_b6ef84faab (IsA sodium_nitrite nitrite) (STV 1.0 0.9091)) +(: cnet_isa_324a3ff284 (IsA sodium_phosphate phosphate) (STV 1.0 0.9091)) +(: cnet_isa_6d4db04a41 (IsA sodium_pyrophosphate builder) (STV 1.0 0.9091)) +(: cnet_isa_472584094b (IsA sodium_salicylate analgesic) (STV 1.0 0.9091)) +(: cnet_isa_e12eba418d (IsA sodium_sulphate sulfate) (STV 1.0 0.9091)) +(: cnet_isa_eab97a3d15 (IsA sodium_thiopental barbiturate) (STV 1.0 0.9091)) +(: cnet_isa_b05b0d5ed0 (IsA sodium_tripolyphosphate builder) (STV 1.0 0.9091)) +(: cnet_isa_0cc4f3698c (IsA sodium_vapor_lamp lamp) (STV 1.0 0.9091)) +(: cnet_isa_0ab0400702 (IsA sodoku ratbite_fever) (STV 1.0 0.9091)) +(: cnet_isa_be6f76d367 (IsA sodom location) (STV 1.0 0.9091)) +(: cnet_isa_1d4eecf3d5 (IsA sodomite pervert) (STV 1.0 0.9091)) +(: cnet_isa_2df48da84a (IsA sodomy perversion) (STV 1.0 0.9091)) +(: cnet_isa_fae8acc496 (IsA sofa chair) (STV 1.0 0.9091)) +(: cnet_isa_a2971f6c43 (IsA sofa comfortable_place_to_sit) (STV 1.0 0.9091)) +(: cnet_isa_acfe2cb815 (IsA sofa piece_of_furniture) (STV 1.0 0.9454)) +(: cnet_isa_640a6ac356 (IsA sofa place_to_sit) (STV 1.0 0.9091)) +(: cnet_isa_3d5ecc3502 (IsA sofa seat) (STV 1.0 0.9091)) +(: cnet_isa_99586d48e6 (IsA soffit side) (STV 1.0 0.9091)) +(: cnet_isa_cc4551b3ae (IsA soft_coated_wheaten_terrier terrier) (STV 1.0 0.9091)) +(: cnet_isa_fefa58243c (IsA soft_copy matter) (STV 1.0 0.9091)) +(: cnet_isa_e56996dd4e (IsA soft_corn field_corn) (STV 1.0 0.9091)) +(: cnet_isa_1add98708d (IsA soft_diet diet) (STV 1.0 0.9091)) +(: cnet_isa_cfc3cee19c (IsA soft_drink carbonated) (STV 1.0 0.9091)) +(: cnet_isa_25fba6371f (IsA soft_drink beverage) (STV 1.0 0.9091)) +(: cnet_isa_ae49b0e83c (IsA soft_drug drug_of_abuse) (STV 1.0 0.9091)) +(: cnet_isa_fd4e37ebc9 (IsA soft_drug narcotic) (STV 1.0 0.9091)) +(: cnet_isa_5856568826 (IsA soft_finned_fish teleost_fish) (STV 1.0 0.9091)) +(: cnet_isa_cf3aa4e600 (IsA soft_glass glass) (STV 1.0 0.9091)) +(: cnet_isa_b1c1518aac (IsA soft_money political_contribution) (STV 1.0 0.9091)) +(: cnet_isa_47b939e87d (IsA soft_new new) (STV 1.0 0.9091)) +(: cnet_isa_2a45cbd42e (IsA soft_option option) (STV 1.0 0.9091)) +(: cnet_isa_8fd8715432 (IsA soft_palate flap) (STV 1.0 0.9091)) +(: cnet_isa_c4b3b5a45d (IsA soft_pedal pedal) (STV 1.0 0.9091)) +(: cnet_isa_193e7fbeae (IsA soft_pretzel pretzel) (STV 1.0 0.9091)) +(: cnet_isa_ce7794bdd3 (IsA soft_roll bun) (STV 1.0 0.9091)) +(: cnet_isa_f15df5448f (IsA soft_rot plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_266384985f (IsA soft_scale scale_insect) (STV 1.0 0.9091)) +(: cnet_isa_8a81283402 (IsA soft_sell advertising) (STV 1.0 0.9091)) +(: cnet_isa_614682f969 (IsA soft_shell_clam clam) (STV 1.0 0.9091)) +(: cnet_isa_fda2a9db6b (IsA soft_shell_crab crab) (STV 1.0 0.9091)) +(: cnet_isa_dcc2f465bd (IsA soft_shelled_turtle turtle) (STV 1.0 0.9091)) +(: cnet_isa_e4f74d41a8 (IsA soft_shield_fern shield_fern) (STV 1.0 0.9091)) +(: cnet_isa_d56b9ac83e (IsA soft_shoe tap_dancing) (STV 1.0 0.9091)) +(: cnet_isa_1578759318 (IsA soft_soap soap) (STV 1.0 0.9091)) +(: cnet_isa_826a03c98a (IsA soft_solder solder) (STV 1.0 0.9091)) +(: cnet_isa_bbb62d51b6 (IsA soft_spot affection) (STV 1.0 0.9091)) +(: cnet_isa_22d7742456 (IsA soft_tick tick) (STV 1.0 0.9091)) +(: cnet_isa_62cca20c42 (IsA soft_tree_fern tree_fern) (STV 1.0 0.9091)) +(: cnet_isa_10a10efc5b (IsA soft_water water) (STV 1.0 0.9091)) +(: cnet_isa_a2fb420e55 (IsA soft_wheat wheat) (STV 1.0 0.9091)) +(: cnet_isa_67034f1a03 (IsA softball baseball) (STV 1.0 0.9091)) +(: cnet_isa_1148b40a93 (IsA softball ball) (STV 1.0 0.9091)) +(: cnet_isa_6b0cad1d4a (IsA softener chemical) (STV 1.0 0.9091)) +(: cnet_isa_ebe758e297 (IsA softening natural_process) (STV 1.0 0.9091)) +(: cnet_isa_cc31666245 (IsA softheartedness concern) (STV 1.0 0.9091)) +(: cnet_isa_e4814b8047 (IsA softness consistency) (STV 1.0 0.9091)) +(: cnet_isa_278ce94a3c (IsA softness indulgence) (STV 1.0 0.9091)) +(: cnet_isa_4cf0372b8d (IsA softness sound_property) (STV 1.0 0.9091)) +(: cnet_isa_f16bba8a75 (IsA softness visual_property) (STV 1.0 0.9091)) +(: cnet_isa_3ef1c6b30c (IsA softness economic_condition) (STV 1.0 0.9091)) +(: cnet_isa_82c4561d90 (IsA software code) (STV 1.0 0.9091)) +(: cnet_isa_059f0232da (IsA software_documentation software) (STV 1.0 0.9091)) +(: cnet_isa_c09c74a260 (IsA software_error error) (STV 1.0 0.9091)) +(: cnet_isa_88368e176f (IsA software_package merchandise) (STV 1.0 0.9091)) +(: cnet_isa_32fa54879a (IsA softwood wood) (STV 1.0 0.9091)) +(: cnet_isa_9b6a4ca20c (IsA softy weakling) (STV 1.0 0.9091)) +(: cnet_isa_c73bf99576 (IsA sogginess wetness) (STV 1.0 0.9091)) +(: cnet_isa_1d1ac3c038 (IsA soil earth) (STV 1.0 0.9091)) +(: cnet_isa_62596ca61f (IsA soil_bank bank) (STV 1.0 0.9091)) +(: cnet_isa_403ecc5a62 (IsA soil_conditioner chemical) (STV 1.0 0.9091)) +(: cnet_isa_5316ea0f0c (IsA soil_conservation conservation) (STV 1.0 0.9091)) +(: cnet_isa_ebb27e4171 (IsA soil_erosion erosion) (STV 1.0 0.9091)) +(: cnet_isa_556b78d4c2 (IsA soil_horizon horizon) (STV 1.0 0.9091)) +(: cnet_isa_a54541ed81 (IsA soil_pipe drain) (STV 1.0 0.9091)) +(: cnet_isa_5d9c2015c8 (IsA soil_profile profile) (STV 1.0 0.9091)) +(: cnet_isa_0ce942aacc (IsA soiling change_of_state) (STV 1.0 0.9091)) +(: cnet_isa_12252bda1b (IsA soiree party) (STV 1.0 0.9091)) +(: cnet_isa_e194825df8 (IsA soixante_neuf oral_sex) (STV 1.0 0.9091)) +(: cnet_isa_562ba5ec93 (IsA sojourn stay) (STV 1.0 0.9091)) +(: cnet_isa_c5dc977e77 (IsA sojourner resident) (STV 1.0 0.9091)) +(: cnet_isa_87fcfa338d (IsA sokoro east_chadic) (STV 1.0 0.9091)) +(: cnet_isa_1828445326 (IsA sol solfa_syllable) (STV 1.0 0.9091)) +(: cnet_isa_d09b412170 (IsA sol colloid) (STV 1.0 0.9091)) +(: cnet_isa_3487a60337 (IsA solace comfort) (STV 1.0 0.9091)) +(: cnet_isa_604315aaa5 (IsA solan gannet) (STV 1.0 0.9091)) +(: cnet_isa_492ef23415 (IsA solanaceae asterid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_e3bd71b849 (IsA solanaceous_vegetable vegetable) (STV 1.0 0.9091)) +(: cnet_isa_1edce170b0 (IsA solandra asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4ac14c92ef (IsA solanopteris fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_098060d2a7 (IsA solanum asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_67177d247f (IsA solar_array electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_12f24c9a4e (IsA solar_calendar calendar) (STV 1.0 0.9091)) +(: cnet_isa_564dd035ce (IsA solar_cell cell) (STV 1.0 0.9091)) +(: cnet_isa_72d125950e (IsA solar_constant rate) (STV 1.0 0.9091)) +(: cnet_isa_1193eddb46 (IsA solar_dish reflector) (STV 1.0 0.9091)) +(: cnet_isa_f162271014 (IsA solar_eclipse eclipse) (STV 1.0 0.9091)) +(: cnet_isa_5f1aa28121 (IsA solar_energy alternative_energy) (STV 1.0 0.9091)) +(: cnet_isa_f35b0a4a9e (IsA solar_flare solar_radiation) (STV 1.0 0.9091)) +(: cnet_isa_a18ee14221 (IsA solar_gravity gravity) (STV 1.0 0.9091)) +(: cnet_isa_aaeecc38a8 (IsA solar_halo halo) (STV 1.0 0.9091)) +(: cnet_isa_b54ae70781 (IsA solar_heater heater) (STV 1.0 0.9091)) +(: cnet_isa_209087360d (IsA solar_house house) (STV 1.0 0.9091)) +(: cnet_isa_e872a5f215 (IsA solar_magnetic_field magnetic_field) (STV 1.0 0.9091)) +(: cnet_isa_29e95ddea4 (IsA solar_month month) (STV 1.0 0.9091)) +(: cnet_isa_ab3c38aa4d (IsA solar_parallax geocentric_parallax) (STV 1.0 0.9091)) +(: cnet_isa_fc92e997c8 (IsA solar_physic astronomy) (STV 1.0 0.9091)) +(: cnet_isa_f6c708e6a6 (IsA solar_plexus nerve_plexus) (STV 1.0 0.9091)) +(: cnet_isa_aaf161aa6d (IsA solar_prominence solar_radiation) (STV 1.0 0.9091)) +(: cnet_isa_ae4141aa61 (IsA solar_radiation radiation) (STV 1.0 0.9091)) +(: cnet_isa_63741405b4 (IsA solar_system system) (STV 1.0 0.9091)) +(: cnet_isa_1ce5fb0bac (IsA solar_telescope telescope) (STV 1.0 0.9091)) +(: cnet_isa_4dcd6bad80 (IsA solar_thermal_system system) (STV 1.0 0.9091)) +(: cnet_isa_736f80014b (IsA solar_wind solar_radiation) (STV 1.0 0.9091)) +(: cnet_isa_4392524ecd (IsA solar_year year) (STV 1.0 0.9091)) +(: cnet_isa_f4ab225573 (IsA solaris operating_system) (STV 1.0 0.9454)) +(: cnet_isa_545f5dcaf4 (IsA solarization exposure) (STV 1.0 0.9091)) +(: cnet_isa_7befde3b29 (IsA solder alloy) (STV 1.0 0.9091)) +(: cnet_isa_d60328ab84 (IsA solderer worker) (STV 1.0 0.9091)) +(: cnet_isa_63c26b5a58 (IsA soldering_flux flux) (STV 1.0 0.9091)) +(: cnet_isa_06c6b10838 (IsA soldering_iron hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_e2ce6077f7 (IsA soldier person) (STV 1.0 0.9339)) +(: cnet_isa_45d066d22f (IsA soldier worker) (STV 1.0 0.9091)) +(: cnet_isa_c2b1733180 (IsA soldier enlisted_person) (STV 1.0 0.9091)) +(: cnet_isa_e73e5668f6 (IsA soldier_grainy_club grainy_club) (STV 1.0 0.9091)) +(: cnet_isa_2b03cd5622 (IsA soldierfish squirrelfish) (STV 1.0 0.9091)) +(: cnet_isa_1b92b52007 (IsA soldiering skill) (STV 1.0 0.9091)) +(: cnet_isa_06184531e6 (IsA sole flatfish) (STV 1.0 0.9091)) +(: cnet_isa_64017b0d06 (IsA sole food_fish) (STV 1.0 0.9091)) +(: cnet_isa_70a47a5855 (IsA sole bottom) (STV 1.0 0.9091)) +(: cnet_isa_5ade405ca5 (IsA sole area) (STV 1.0 0.9091)) +(: cnet_isa_03c82b2c4f (IsA sole_proprietorship business) (STV 1.0 0.9339)) +(: cnet_isa_2d8a6abc74 (IsA solea fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_2195d52596 (IsA soleidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_6d8b7b1dc7 (IsA solemnity_of_mary holy_day_of_obligation) (STV 1.0 0.9091)) +(: cnet_isa_14c7768837 (IsA solenichthye animal_order) (STV 1.0 0.9091)) +(: cnet_isa_3386280ad3 (IsA solenidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_84fff2bf3a (IsA solenogaster gastropod) (STV 1.0 0.9091)) +(: cnet_isa_6c17818a4c (IsA solenogastre animal_order) (STV 1.0 0.9091)) +(: cnet_isa_50c6cc79e7 (IsA solenoid coil) (STV 1.0 0.9091)) +(: cnet_isa_4ccf953ccc (IsA solenoid magnet) (STV 1.0 0.9091)) +(: cnet_isa_8b049651b7 (IsA solenopsis arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_81674378e7 (IsA solenostemon asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c924310d06 (IsA soleus skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_4dad1710ad (IsA solfa_syllable syllable) (STV 1.0 0.9091)) +(: cnet_isa_5ae2f78643 (IsA solfege singing) (STV 1.0 0.9091)) +(: cnet_isa_9fecfbe2d0 (IsA solferino pink) (STV 1.0 0.9091)) +(: cnet_isa_3bac86adc4 (IsA solicitation enticement) (STV 1.0 0.9091)) +(: cnet_isa_e7c7e6b81e (IsA solicitation entreaty) (STV 1.0 0.9091)) +(: cnet_isa_35713d67c5 (IsA solicitation request) (STV 1.0 0.9091)) +(: cnet_isa_1d5c7e717f (IsA solicitor lawyer) (STV 1.0 0.9091)) +(: cnet_isa_9f6e0bbb1a (IsA solicitor petitioner) (STV 1.0 0.9091)) +(: cnet_isa_e27caa6b31 (IsA solicitor_general lawman) (STV 1.0 0.9091)) +(: cnet_isa_f495958071 (IsA solicitorship position) (STV 1.0 0.9091)) +(: cnet_isa_c718a05c93 (IsA solicitude concern) (STV 1.0 0.9091)) +(: cnet_isa_3db5e52989 (IsA solid state_of_matter) (STV 1.0 0.9091)) +(: cnet_isa_cab4afc612 (IsA solid shape) (STV 1.0 0.9091)) +(: cnet_isa_1886868853 (IsA solid substance) (STV 1.0 0.9091)) +(: cnet_isa_210f77a445 (IsA solid_angle angle) (STV 1.0 0.9091)) +(: cnet_isa_91696bed80 (IsA solid_body_substance body_substance) (STV 1.0 0.9091)) +(: cnet_isa_a1e498741b (IsA solid_figure figure) (STV 1.0 0.9091)) +(: cnet_isa_7f747fcee0 (IsA solid_geometry geometry) (STV 1.0 0.9091)) +(: cnet_isa_92a1b30fa4 (IsA solid_solution solution) (STV 1.0 0.9091)) +(: cnet_isa_1032c9776d (IsA solid_state_physic physic) (STV 1.0 0.9091)) +(: cnet_isa_af107cba1e (IsA solidago asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ccb3e70770 (IsA solidarity commonality) (STV 1.0 0.9091)) +(: cnet_isa_ed1e8c01eb (IsA solidity consistency) (STV 1.0 0.9091)) +(: cnet_isa_2268b64c34 (IsA solidity fullness) (STV 1.0 0.9091)) +(: cnet_isa_d1cb1a5fdd (IsA solidness dependability) (STV 1.0 0.9091)) +(: cnet_isa_7b8416045c (IsA solidus punctuation) (STV 1.0 0.9091)) +(: cnet_isa_12b0d18178 (IsA soliloquy actor_s_line) (STV 1.0 0.9091)) +(: cnet_isa_6f1b7d71bc (IsA soliloquy speech) (STV 1.0 0.9091)) +(: cnet_isa_01bcfc34ed (IsA solipsism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_3e73c01c24 (IsA solitaire card_game) (STV 1.0 0.9091)) +(: cnet_isa_21e8f3c62c (IsA solitaire columbiform_bird) (STV 1.0 0.9091)) +(: cnet_isa_3e2e6b35e7 (IsA solitaire thrush) (STV 1.0 0.9091)) +(: cnet_isa_b8882da8f3 (IsA solitaire jewel) (STV 1.0 0.9091)) +(: cnet_isa_0a29e46b95 (IsA solitary_confinement confinement) (STV 1.0 0.9091)) +(: cnet_isa_63fdb918a1 (IsA solitary_pussytoe cat_s_foot) (STV 1.0 0.9091)) +(: cnet_isa_4a5a7c7480 (IsA solitary_vireo vireo) (STV 1.0 0.9091)) +(: cnet_isa_5cee78e326 (IsA soliton traveling_wave) (STV 1.0 0.9091)) +(: cnet_isa_64b1cd928a (IsA solitude topographic_point) (STV 1.0 0.9091)) +(: cnet_isa_15af7ac315 (IsA solitude isolation) (STV 1.0 0.9091)) +(: cnet_isa_3f114264aa (IsA solleret armor_plate) (STV 1.0 0.9091)) +(: cnet_isa_2b2ee1f278 (IsA solmization singing) (STV 1.0 0.9091)) +(: cnet_isa_038a52ae92 (IsA solmization musical_notation) (STV 1.0 0.9091)) +(: cnet_isa_87aac374bb (IsA solo activity) (STV 1.0 0.9091)) +(: cnet_isa_85fd195dc2 (IsA solo flight) (STV 1.0 0.9091)) +(: cnet_isa_6e16f7a88e (IsA solo musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_8167cba898 (IsA solo_homer homer) (STV 1.0 0.9091)) +(: cnet_isa_3f8506731f (IsA solo_man homo_soloensis) (STV 1.0 0.9091)) +(: cnet_isa_9b749fb746 (IsA soloist musician) (STV 1.0 0.9091)) +(: cnet_isa_01a9071162 (IsA solomon_s_seal liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_d20ed7c612 (IsA solresol artificial_language) (STV 1.0 0.9091)) +(: cnet_isa_82ccc15905 (IsA solstice cosmic_time) (STV 1.0 0.9091)) +(: cnet_isa_f9cfd1c8d1 (IsA solubility quality) (STV 1.0 0.9091)) +(: cnet_isa_a3cc7f143b (IsA solubility definite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_a129d18d50 (IsA soluble_glass glass) (STV 1.0 0.9091)) +(: cnet_isa_17307d184f (IsA solute substance) (STV 1.0 0.9091)) +(: cnet_isa_9deb2ae436 (IsA solution success) (STV 1.0 0.9091)) +(: cnet_isa_2ab06dacbf (IsA solution method) (STV 1.0 0.9091)) +(: cnet_isa_47698a384a (IsA solution statement) (STV 1.0 0.9091)) +(: cnet_isa_2aafee9045 (IsA solution set) (STV 1.0 0.9091)) +(: cnet_isa_3fa0276e74 (IsA solution mixture) (STV 1.0 0.9091)) +(: cnet_isa_13a0d949f5 (IsA solvability property) (STV 1.0 0.9091)) +(: cnet_isa_43da7bebe7 (IsA solvate compound) (STV 1.0 0.9091)) +(: cnet_isa_e82e4d8802 (IsA solvating_agent agent) (STV 1.0 0.9091)) +(: cnet_isa_47273280e5 (IsA solvation association) (STV 1.0 0.9091)) +(: cnet_isa_a326ad0e7e (IsA solvay_process industrial_process) (STV 1.0 0.9091)) +(: cnet_isa_30ffe6abc1 (IsA solvency financial_condition) (STV 1.0 0.9091)) +(: cnet_isa_0a5c8009ba (IsA solvent medium) (STV 1.0 0.9091)) +(: cnet_isa_4dccb8243b (IsA som kyrgyzstani_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_d060532e84 (IsA som uzbekistani_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_0e29091c25 (IsA soma hindu_deity) (STV 1.0 0.9091)) +(: cnet_isa_1956750baa (IsA soma vine) (STV 1.0 0.9091)) +(: cnet_isa_092dd54b06 (IsA somali cushitic) (STV 1.0 0.9091)) +(: cnet_isa_c4dab46328 (IsA somalian african) (STV 1.0 0.9091)) +(: cnet_isa_a1296f00bf (IsA somalian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_1ed9b6997b (IsA somalian_shilling somalian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_2d2474717f (IsA soman organophosphate_nerve_agent) (STV 1.0 0.9091)) +(: cnet_isa_0afae7687d (IsA somateria bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_83f32892fa (IsA somatic_cell cell) (STV 1.0 0.9091)) +(: cnet_isa_3cedfdeb6f (IsA somatic_cell_nuclear_transplantation biological_research) (STV 1.0 0.9091)) +(: cnet_isa_db64b77957 (IsA somatic_delusion delusion) (STV 1.0 0.9091)) +(: cnet_isa_747e55d8dd (IsA somatosense modality) (STV 1.0 0.9091)) +(: cnet_isa_e6c51ca3d1 (IsA somatotropin hormone) (STV 1.0 0.9091)) +(: cnet_isa_9c3921c353 (IsA sombrero hat) (STV 1.0 0.9091)) +(: cnet_isa_112fb4d5e2 (IsA somersault tumble) (STV 1.0 0.9091)) +(: cnet_isa_80bd056cb9 (IsA somesthesia interoception) (STV 1.0 0.9091)) +(: cnet_isa_4a61ac0756 (IsA somesthesia perception) (STV 1.0 0.9091)) +(: cnet_isa_4c40639dc3 (IsA somewhere location) (STV 1.0 0.9091)) +(: cnet_isa_d9123c8525 (IsA sommelier waiter) (STV 1.0 0.9091)) +(: cnet_isa_47c3f87b0b (IsA somniloquist sleeper) (STV 1.0 0.9091)) +(: cnet_isa_156a65147a (IsA somrai east_chadic) (STV 1.0 0.9091)) +(: cnet_isa_223e7c39a5 (IsA son male_offspring) (STV 1.0 0.9091)) +(: cnet_isa_366cefbaa0 (IsA son_in_law in_law) (STV 1.0 0.9091)) +(: cnet_isa_c932297210 (IsA sonant phone) (STV 1.0 0.9091)) +(: cnet_isa_f6c3c97656 (IsA sonar measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_9c6787db12 (IsA sonar navigational_instrument) (STV 1.0 0.9091)) +(: cnet_isa_b0d153edda (IsA sonata classical_music) (STV 1.0 0.9091)) +(: cnet_isa_fec3983677 (IsA sonata_form art_form) (STV 1.0 0.9091)) +(: cnet_isa_fb352526a6 (IsA sonatina sonata) (STV 1.0 0.9091)) +(: cnet_isa_f636e92a61 (IsA sonchus asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_61f94100df (IsA sone sound_unit) (STV 1.0 0.9091)) +(: cnet_isa_2a88839340 (IsA song poem) (STV 1.0 0.9091)) +(: cnet_isa_b77b07f82e (IsA song poetry) (STV 1.0 0.9091)) +(: cnet_isa_50cf4d2be2 (IsA song vocal_music) (STV 1.0 0.9091)) +(: cnet_isa_52060395fc (IsA song musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_61a6871952 (IsA song sound) (STV 1.0 0.9091)) +(: cnet_isa_562a9a6bc7 (IsA song bargain) (STV 1.0 0.9091)) +(: cnet_isa_cda567a158 (IsA song_and_dance performance) (STV 1.0 0.9091)) +(: cnet_isa_11adb20a44 (IsA song_sparrow new_world_sparrow) (STV 1.0 0.9091)) +(: cnet_isa_2ef2745dea (IsA song_thrush thrush) (STV 1.0 0.9091)) +(: cnet_isa_ea630c9f17 (IsA songbird oscine) (STV 1.0 0.9091)) +(: cnet_isa_c6520e68b7 (IsA songbook book) (STV 1.0 0.9091)) +(: cnet_isa_f8e8392cb8 (IsA songhai nilo_saharan) (STV 1.0 0.9091)) +(: cnet_isa_5c150f7f64 (IsA songster singer) (STV 1.0 0.9091)) +(: cnet_isa_8f4013a224 (IsA songstress songster) (STV 1.0 0.9091)) +(: cnet_isa_468af878d0 (IsA songwriter musician) (STV 1.0 0.9091)) +(: cnet_isa_2e58bf165b (IsA songwriter composer) (STV 1.0 0.9091)) +(: cnet_isa_5cd8d01c96 (IsA sonic_barrier drag) (STV 1.0 0.9091)) +(: cnet_isa_db9fc89e86 (IsA sonic_boom shock_wave) (STV 1.0 0.9091)) +(: cnet_isa_bc0ebe4b30 (IsA sonic_depth_finder depth_finder) (STV 1.0 0.9091)) +(: cnet_isa_0a0fcc3306 (IsA sonnet poem) (STV 1.0 0.9091)) +(: cnet_isa_844029f3a3 (IsA sonneteer poet) (STV 1.0 0.9091)) +(: cnet_isa_b91cf96152 (IsA sonogram ikon) (STV 1.0 0.9091)) +(: cnet_isa_e4a708de21 (IsA sonograph instrument) (STV 1.0 0.9091)) +(: cnet_isa_c8cec27372 (IsA sonography imaging) (STV 1.0 0.9091)) +(: cnet_isa_bf49a35e3b (IsA sonography prenatal_diagnosis) (STV 1.0 0.9091)) +(: cnet_isa_a0a1d4607d (IsA sonora reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_968907442a (IsA sonora_gum gum_resin) (STV 1.0 0.9091)) +(: cnet_isa_3dc160f0dd (IsA sonora_lac animal_product) (STV 1.0 0.9091)) +(: cnet_isa_dddfc7bd77 (IsA sonoran_lyre_snake lyre_snake) (STV 1.0 0.9091)) +(: cnet_isa_87882b1e5a (IsA sonoran_whipsnake whip_snake) (STV 1.0 0.9091)) +(: cnet_isa_46048a8ff0 (IsA sony corporation) (STV 1.0 0.9091)) +(: cnet_isa_24d7c1990e (IsA soochong black_tea) (STV 1.0 0.9091)) +(: cnet_isa_1d9e6e4a06 (IsA sooth truthfulness) (STV 1.0 0.9091)) +(: cnet_isa_d453e4b3ef (IsA soothing_syrup medicine) (STV 1.0 0.9091)) +(: cnet_isa_b073fc3306 (IsA sop concession) (STV 1.0 0.9091)) +(: cnet_isa_a49344a33f (IsA sop morsel) (STV 1.0 0.9091)) +(: cnet_isa_6abe00454b (IsA sophism fallacy) (STV 1.0 0.9091)) +(: cnet_isa_fa01b1a012 (IsA sophist philosopher) (STV 1.0 0.9091)) +(: cnet_isa_10d1f97499 (IsA sophisticate adult) (STV 1.0 0.9091)) +(: cnet_isa_c6e40fb985 (IsA sophistication falsification) (STV 1.0 0.9091)) +(: cnet_isa_474fbda9cd (IsA sophistication quality) (STV 1.0 0.9091)) +(: cnet_isa_20b788b147 (IsA sophistication expertness) (STV 1.0 0.9091)) +(: cnet_isa_76436c5201 (IsA sophomore lowerclassman) (STV 1.0 0.9091)) +(: cnet_isa_b04556820c (IsA sophomore_class class) (STV 1.0 0.9091)) +(: cnet_isa_a81493cc67 (IsA sophora rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4be6a80614 (IsA soporific drug) (STV 1.0 0.9091)) +(: cnet_isa_c67b4fc7cf (IsA soporific hypnagogue) (STV 1.0 0.9091)) +(: cnet_isa_8e6559b2d5 (IsA soprano voice) (STV 1.0 0.9091)) +(: cnet_isa_a7c0fc8b70 (IsA soprano pitch) (STV 1.0 0.9091)) +(: cnet_isa_4263ffa6f9 (IsA soprano singing_voice) (STV 1.0 0.9091)) +(: cnet_isa_5a451c10f7 (IsA soprano singer) (STV 1.0 0.9091)) +(: cnet_isa_7575423087 (IsA soprano_clef clef) (STV 1.0 0.9091)) +(: cnet_isa_4bca3d7b94 (IsA sorb edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_4a3bb4fa62 (IsA sorbate material) (STV 1.0 0.9091)) +(: cnet_isa_b310fe14d9 (IsA sorbent material) (STV 1.0 0.9091)) +(: cnet_isa_e258b4879b (IsA sorbian slavic) (STV 1.0 0.9091)) +(: cnet_isa_409af77948 (IsA sorbian slav) (STV 1.0 0.9091)) +(: cnet_isa_303c6b9aeb (IsA sorbic_acid carboxylic_acid) (STV 1.0 0.9091)) +(: cnet_isa_213988a536 (IsA sorbus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3aa1d5a992 (IsA sorcerer occultist) (STV 1.0 0.9091)) +(: cnet_isa_03408bbf9b (IsA sorceress sorcerer) (STV 1.0 0.9091)) +(: cnet_isa_653606e7c1 (IsA sorcery magic) (STV 1.0 0.9091)) +(: cnet_isa_0cc829e1b6 (IsA sordidness dirtiness) (STV 1.0 0.9091)) +(: cnet_isa_e7133f20ab (IsA sore infection) (STV 1.0 0.9091)) +(: cnet_isa_42d7d81d8c (IsA sore_throat inflammatory_disease) (STV 1.0 0.9091)) +(: cnet_isa_a40d2221d5 (IsA sorehead malcontent) (STV 1.0 0.9091)) +(: cnet_isa_03dbbea9c3 (IsA sorex mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_9d5bbadb05 (IsA sorghum syrup) (STV 1.0 0.9091)) +(: cnet_isa_77bbc9933c (IsA sorghum millet) (STV 1.0 0.9091)) +(: cnet_isa_5b3f389a8c (IsA sorgo sorghum) (STV 1.0 0.9091)) +(: cnet_isa_7e6b0a2917 (IsA soricidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_f03594fb71 (IsA sorority club) (STV 1.0 0.9091)) +(: cnet_isa_e4f56d0426 (IsA sorption natural_process) (STV 1.0 0.9091)) +(: cnet_isa_7c43cd24f6 (IsA sorrel horse) (STV 1.0 0.9091)) +(: cnet_isa_fdf900dac8 (IsA sorrel green) (STV 1.0 0.9091)) +(: cnet_isa_fa9731510c (IsA sorrel_tree angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_aae52f986e (IsA sorrel_tree hibiscus) (STV 1.0 0.9091)) +(: cnet_isa_60c42a11b2 (IsA sorrow emotion) (STV 1.0 0.9091)) +(: cnet_isa_c98b6c2234 (IsA sorrow sadness) (STV 1.0 0.9091)) +(: cnet_isa_af27ceef96 (IsA sort similarity) (STV 1.0 0.9091)) +(: cnet_isa_2f57701b87 (IsA sort person) (STV 1.0 0.9091)) +(: cnet_isa_1938bdb204 (IsA sort operation) (STV 1.0 0.9091)) +(: cnet_isa_ca1c28506c (IsA sort_program utility_program) (STV 1.0 0.9091)) +(: cnet_isa_45b04f50dd (IsA sorter machine) (STV 1.0 0.9091)) +(: cnet_isa_20e0e06bbd (IsA sorter clerk) (STV 1.0 0.9091)) +(: cnet_isa_37ccaf8ba3 (IsA sortie flight) (STV 1.0 0.9091)) +(: cnet_isa_2d1e9f8509 (IsA sortie military_action) (STV 1.0 0.9091)) +(: cnet_isa_86ceef7601 (IsA sorting grouping) (STV 1.0 0.9091)) +(: cnet_isa_9482ec29b9 (IsA sorting_algorithm algorithm) (STV 1.0 0.9091)) +(: cnet_isa_c1d44c5cca (IsA sorus reproductive_structure) (STV 1.0 0.9091)) +(: cnet_isa_f08be8511c (IsA sos distress_signal) (STV 1.0 0.9091)) +(: cnet_isa_e4556344c1 (IsA soteriology christian_theology) (STV 1.0 0.9091)) +(: cnet_isa_22b1f9822d (IsA sotho bantu) (STV 1.0 0.9091)) +(: cnet_isa_bedde23f63 (IsA sottishness unrestraint) (STV 1.0 0.9091)) +(: cnet_isa_6c57002d11 (IsA sottishness drunkenness) (STV 1.0 0.9091)) +(: cnet_isa_1de47aa925 (IsA sou coin) (STV 1.0 0.9091)) +(: cnet_isa_fe6afe0289 (IsA sou_wester hat) (STV 1.0 0.9091)) +(: cnet_isa_bc7422fabe (IsA souari tree) (STV 1.0 0.9091)) +(: cnet_isa_5ec451025e (IsA souari_nut edible_nut) (STV 1.0 0.9091)) +(: cnet_isa_370bb0ca65 (IsA soubise sauce) (STV 1.0 0.9091)) +(: cnet_isa_9252537ce8 (IsA soubrette bit_part) (STV 1.0 0.9091)) +(: cnet_isa_3145e65d0b (IsA soubrette girl) (STV 1.0 0.9091)) +(: cnet_isa_8b85fa5bcf (IsA souffle dish) (STV 1.0 0.9091)) +(: cnet_isa_a540a34513 (IsA souk open_air_market) (STV 1.0 0.9091)) +(: cnet_isa_36dd2187b0 (IsA soul embodiment) (STV 1.0 0.9091)) +(: cnet_isa_597ff1252f (IsA soul black_music) (STV 1.0 0.9091)) +(: cnet_isa_9f2c60e729 (IsA soul gospel) (STV 1.0 0.9091)) +(: cnet_isa_8fb30bfd4a (IsA soul feeling) (STV 1.0 0.9091)) +(: cnet_isa_e2008da604 (IsA soul spirit) (STV 1.0 0.9091)) +(: cnet_isa_6ac88eb5ed (IsA soul_brother negroid) (STV 1.0 0.9091)) +(: cnet_isa_abd0ef77ac (IsA soul_food food) (STV 1.0 0.9091)) +(: cnet_isa_22456bed8a (IsA soul_kiss kiss) (STV 1.0 0.9091)) +(: cnet_isa_aa1c74155e (IsA soul_mate lover) (STV 1.0 0.9091)) +(: cnet_isa_4c47a62315 (IsA soul_patch beard) (STV 1.0 0.9091)) +(: cnet_isa_964e80df40 (IsA soul_searching introspection) (STV 1.0 0.9091)) +(: cnet_isa_46e9f5bfa9 (IsA sound physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_f52b5c119a (IsA sound vibration_in_air) (STV 1.0 0.9454)) +(: cnet_isa_f5c287ab2f (IsA sound wave) (STV 1.0 0.9091)) +(: cnet_isa_e960f4624f (IsA sound sound_property) (STV 1.0 0.9091)) +(: cnet_isa_423f8c57d5 (IsA sound sensation) (STV 1.0 0.9091)) +(: cnet_isa_4068459977 (IsA sound happening) (STV 1.0 0.9091)) +(: cnet_isa_aa5a9c4d06 (IsA sound body_of_water) (STV 1.0 0.9091)) +(: cnet_isa_5dff2ac7b9 (IsA sound mechanical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_3ab7749223 (IsA sound_bite line) (STV 1.0 0.9091)) +(: cnet_isa_84e47a9a1a (IsA sound_bow contact) (STV 1.0 0.9091)) +(: cnet_isa_c15a9b0190 (IsA sound_camera motion_picture_camera) (STV 1.0 0.9091)) +(: cnet_isa_ff4882b621 (IsA sound_effect effect) (STV 1.0 0.9091)) +(: cnet_isa_753dcbae37 (IsA sound_film motion_picture_film) (STV 1.0 0.9091)) +(: cnet_isa_7b4f85878c (IsA sound_hole hole) (STV 1.0 0.9091)) +(: cnet_isa_f167862310 (IsA sound_law law) (STV 1.0 0.9091)) +(: cnet_isa_c2d95a24e9 (IsA sound_pressure pressure) (STV 1.0 0.9091)) +(: cnet_isa_3467ba8996 (IsA sound_property property) (STV 1.0 0.9091)) +(: cnet_isa_7ad9653ea9 (IsA sound_ranging measurement) (STV 1.0 0.9091)) +(: cnet_isa_715808ab23 (IsA sound_recording recording) (STV 1.0 0.9091)) +(: cnet_isa_c770b6e6f2 (IsA sound_reproduction reproduction) (STV 1.0 0.9091)) +(: cnet_isa_cc0205fd5c (IsA sound_spectrograph spectrograph) (STV 1.0 0.9091)) +(: cnet_isa_de75051d81 (IsA sound_spectrum spectrum) (STV 1.0 0.9091)) +(: cnet_isa_92b4398fa4 (IsA sound_truck truck) (STV 1.0 0.9091)) +(: cnet_isa_d421cb43dd (IsA sound_unit unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_871596169f (IsA sound_wave wave) (STV 1.0 0.9091)) +(: cnet_isa_ecb7cdc565 (IsA soundbox resonator) (STV 1.0 0.9091)) +(: cnet_isa_5a1857a142 (IsA sounder device) (STV 1.0 0.9091)) +(: cnet_isa_65accb3664 (IsA sounding measurement) (STV 1.0 0.9091)) +(: cnet_isa_aced8df756 (IsA sounding depth) (STV 1.0 0.9091)) +(: cnet_isa_282dd0c61f (IsA sounding_board resonator) (STV 1.0 0.9091)) +(: cnet_isa_f9c6db0355 (IsA sounding_board person) (STV 1.0 0.9091)) +(: cnet_isa_a42d320ff0 (IsA sounding_lead bob) (STV 1.0 0.9091)) +(: cnet_isa_003bb8bc79 (IsA sounding_rocket test_rocket) (STV 1.0 0.9091)) +(: cnet_isa_95f8782dc1 (IsA soundman technician) (STV 1.0 0.9091)) +(: cnet_isa_fadb0b40df (IsA soundness condition) (STV 1.0 0.9091)) +(: cnet_isa_7dd2e5f955 (IsA soundtrack sound_recording) (STV 1.0 0.9091)) +(: cnet_isa_2d18d05a5f (IsA soup food) (STV 1.0 0.9636)) +(: cnet_isa_172b0eda8a (IsA soup light_meal) (STV 1.0 0.9091)) +(: cnet_isa_896e11f887 (IsA soup dish) (STV 1.0 0.9091)) +(: cnet_isa_e9e2addacd (IsA soup situation) (STV 1.0 0.9091)) +(: cnet_isa_f05f963a18 (IsA soup composition) (STV 1.0 0.9091)) +(: cnet_isa_ad630b0898 (IsA soup_bowl bowl) (STV 1.0 0.9091)) +(: cnet_isa_5c10a435dc (IsA soup_du_jour soup) (STV 1.0 0.9091)) +(: cnet_isa_b0f503d5df (IsA soup_kitchen charity) (STV 1.0 0.9091)) +(: cnet_isa_6f9c2d604e (IsA soup_ladle ladle) (STV 1.0 0.9091)) +(: cnet_isa_953c85f306 (IsA soup_plate plate) (STV 1.0 0.9091)) +(: cnet_isa_86f4178bb6 (IsA soup_strainer mustache) (STV 1.0 0.9091)) +(: cnet_isa_e38a1ce355 (IsA soupfin_shark requiem_shark) (STV 1.0 0.9091)) +(: cnet_isa_4755de8cab (IsA soupspoon spoon) (STV 1.0 0.9091)) +(: cnet_isa_34c29667ce (IsA sour taste) (STV 1.0 0.9091)) +(: cnet_isa_e12e637ad6 (IsA sour cocktail) (STV 1.0 0.9091)) +(: cnet_isa_b629a926d0 (IsA sour_bread bread) (STV 1.0 0.9091)) +(: cnet_isa_b44c1bbb62 (IsA sour_cherry cherry) (STV 1.0 0.9091)) +(: cnet_isa_c16ae06ec1 (IsA sour_cherry fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_2744e15fcc (IsA sour_cream cream) (STV 1.0 0.9091)) +(: cnet_isa_b93c94fc41 (IsA sour_dock dock) (STV 1.0 0.9091)) +(: cnet_isa_091de588f9 (IsA sour_gourd edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_5063141ba6 (IsA sour_grape disparagement) (STV 1.0 0.9091)) +(: cnet_isa_1a924b6754 (IsA sour_gum tupelo) (STV 1.0 0.9091)) +(: cnet_isa_c1120baee0 (IsA sour_mash whiskey) (STV 1.0 0.9091)) +(: cnet_isa_9a48d7cc98 (IsA sour_mash mash) (STV 1.0 0.9091)) +(: cnet_isa_3176fc597f (IsA sour_milk milk) (STV 1.0 0.9091)) +(: cnet_isa_c07fba7b34 (IsA sour_orange orange) (STV 1.0 0.9091)) +(: cnet_isa_d098e03a3e (IsA sour_salt flavorer) (STV 1.0 0.9091)) +(: cnet_isa_166dce33dc (IsA sourball hard_candy) (STV 1.0 0.9091)) +(: cnet_isa_35bc0ca2f3 (IsA source facility) (STV 1.0 0.9091)) +(: cnet_isa_7f800006c7 (IsA source inspiration) (STV 1.0 0.9091)) +(: cnet_isa_d707dbe1ec (IsA source document) (STV 1.0 0.9091)) +(: cnet_isa_22ce2fecd0 (IsA source natural_process) (STV 1.0 0.9091)) +(: cnet_isa_c56a21ec34 (IsA source_book reference_book) (STV 1.0 0.9091)) +(: cnet_isa_d4a9169998 (IsA source_code ascii_text_file) (STV 1.0 0.9091)) +(: cnet_isa_07abcfa397 (IsA source_language language) (STV 1.0 0.9091)) +(: cnet_isa_29d39588c6 (IsA source_material source) (STV 1.0 0.9091)) +(: cnet_isa_5c05d3c0c0 (IsA source_of_illumination device) (STV 1.0 0.9091)) +(: cnet_isa_4d954257f0 (IsA source_program program) (STV 1.0 0.9091)) +(: cnet_isa_d658ddd129 (IsA sourdine mute) (STV 1.0 0.9091)) +(: cnet_isa_4417f1a6d5 (IsA sourdine organ_stop) (STV 1.0 0.9091)) +(: cnet_isa_ece352553f (IsA sourdough prospector) (STV 1.0 0.9091)) +(: cnet_isa_9289c0a335 (IsA sourdough settler) (STV 1.0 0.9091)) +(: cnet_isa_d1d4e4c458 (IsA sourdough leaven) (STV 1.0 0.9091)) +(: cnet_isa_545d0f4667 (IsA souring spoilage) (STV 1.0 0.9091)) +(: cnet_isa_d46f16dc32 (IsA sourness taste_property) (STV 1.0 0.9091)) +(: cnet_isa_69bab59ee7 (IsA sourpuss unwelcome_person) (STV 1.0 0.9091)) +(: cnet_isa_fb9bdbbb7b (IsA soursop custard_apple) (STV 1.0 0.9091)) +(: cnet_isa_3a26516cba (IsA souse sausage) (STV 1.0 0.9091)) +(: cnet_isa_61be29f0cb (IsA soutache braid) (STV 1.0 0.9091)) +(: cnet_isa_cb2a74b933 (IsA soutane cassock) (STV 1.0 0.9091)) +(: cnet_isa_8b761b216d (IsA south cardinal_compass_point) (STV 1.0 0.9091)) +(: cnet_isa_df104cbf20 (IsA south direction) (STV 1.0 0.9091)) +(: cnet_isa_d425c88d21 (IsA south location) (STV 1.0 0.9091)) +(: cnet_isa_d3519b5264 (IsA south region) (STV 1.0 0.9091)) +(: cnet_isa_284ae03d7d (IsA south_africa country) (STV 1.0 0.9091)) +(: cnet_isa_2217c023d8 (IsA south_african african) (STV 1.0 0.9091)) +(: cnet_isa_67cfba062a (IsA south_african_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_ca6e0c566e (IsA south_african_yellowwood gymnospermous_yellowwood) (STV 1.0 0.9091)) +(: cnet_isa_e539a6ef7a (IsA south_america collection) (STV 1.0 0.9091)) +(: cnet_isa_139462c3fd (IsA south_american american) (STV 1.0 0.9091)) +(: cnet_isa_e4649d73c7 (IsA south_american_country country) (STV 1.0 0.9091)) +(: cnet_isa_aa0ebee6c2 (IsA south_american_indian native_american) (STV 1.0 0.9091)) +(: cnet_isa_abbd46da2f (IsA south_american_poison_toad frog) (STV 1.0 0.9091)) +(: cnet_isa_bcaa9a2853 (IsA south_american_sea_lion sea_lion) (STV 1.0 0.9091)) +(: cnet_isa_b165f276a2 (IsA south_american_staghorn staghorn_fern) (STV 1.0 0.9091)) +(: cnet_isa_1c299400e0 (IsA south_by_east compass_point) (STV 1.0 0.9091)) +(: cnet_isa_790cea41c6 (IsA south_by_west compass_point) (STV 1.0 0.9091)) +(: cnet_isa_99a4bdc7bb (IsA south_carolina state) (STV 1.0 0.9339)) +(: cnet_isa_fbb341bd58 (IsA south_carolinian american) (STV 1.0 0.9091)) +(: cnet_isa_de65e9d7e6 (IsA south_central_dravidian dravidian) (STV 1.0 0.9091)) +(: cnet_isa_223f198add (IsA south_dakota state) (STV 1.0 0.9524)) +(: cnet_isa_08ed75e880 (IsA south_dakotan american) (STV 1.0 0.9091)) +(: cnet_isa_e2c4a6a336 (IsA south_dravidian dravidian) (STV 1.0 0.9091)) +(: cnet_isa_b9db105590 (IsA south_equatorial_current equatorial_current) (STV 1.0 0.9091)) +(: cnet_isa_8bae024fa1 (IsA south_korea country) (STV 1.0 0.9091)) +(: cnet_isa_169ff44c34 (IsA south_korean korean) (STV 1.0 0.9091)) +(: cnet_isa_7f8e7fb695 (IsA south_korean_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_2f71f65e22 (IsA south_korean_won south_korean_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_1de8677666 (IsA south_pole in_antarctica) (STV 1.0 0.9091)) +(: cnet_isa_d4a4b17962 (IsA south_sea sea) (STV 1.0 0.9091)) +(: cnet_isa_265eba2b85 (IsA south_sea_island island) (STV 1.0 0.9091)) +(: cnet_isa_cf49ab5a72 (IsA south_side side) (STV 1.0 0.9091)) +(: cnet_isa_772cc9c9fb (IsA south_southeast compass_point) (STV 1.0 0.9091)) +(: cnet_isa_77aa2181c2 (IsA south_southwest compass_point) (STV 1.0 0.9091)) +(: cnet_isa_85cb2bbce8 (IsA south_wind wind) (STV 1.0 0.9091)) +(: cnet_isa_3565ac3eca (IsA southeast compass_point) (STV 1.0 0.9091)) +(: cnet_isa_86913c677c (IsA southeast direction) (STV 1.0 0.9091)) +(: cnet_isa_87d404591d (IsA southeast location) (STV 1.0 0.9091)) +(: cnet_isa_ea18613c7a (IsA southeast_by_east compass_point) (STV 1.0 0.9091)) +(: cnet_isa_66f022fae8 (IsA southeast_by_south compass_point) (STV 1.0 0.9091)) +(: cnet_isa_25219f9d29 (IsA southeaster wind) (STV 1.0 0.9091)) +(: cnet_isa_cec311f79e (IsA southeastern_pocket_gopher gopher) (STV 1.0 0.9091)) +(: cnet_isa_141f5ee894 (IsA southern_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_08148db5ed (IsA southern_baptist baptist) (STV 1.0 0.9091)) +(: cnet_isa_c8456f2c92 (IsA southern_baptist_convention association) (STV 1.0 0.9091)) +(: cnet_isa_067a85afce (IsA southern_beech tree) (STV 1.0 0.9091)) +(: cnet_isa_17c11cfad1 (IsA southern_blue_flag iris) (STV 1.0 0.9091)) +(: cnet_isa_bef75e9af7 (IsA southern_bog_lemming lemming) (STV 1.0 0.9091)) +(: cnet_isa_7bbced05c2 (IsA southern_buckthorn buckthorn) (STV 1.0 0.9091)) +(: cnet_isa_83274eebe5 (IsA southern_cabbage_butterfly cabbage_butterfly) (STV 1.0 0.9091)) +(: cnet_isa_0e33c0b071 (IsA southern_crab_apple crab_apple) (STV 1.0 0.9091)) +(: cnet_isa_31651ad29b (IsA southern_dewberry dewberry) (STV 1.0 0.9091)) +(: cnet_isa_e503564995 (IsA southern_flounder lefteye_flounder) (STV 1.0 0.9091)) +(: cnet_isa_00983f032f (IsA southern_flying_squirrel american_flying_squirrel) (STV 1.0 0.9091)) +(: cnet_isa_858be793f8 (IsA southern_harebell campanula) (STV 1.0 0.9091)) +(: cnet_isa_d0b74484cc (IsA southern_live_oak live_oak) (STV 1.0 0.9091)) +(: cnet_isa_63f67473b4 (IsA southern_magnolia magnolia) (STV 1.0 0.9091)) +(: cnet_isa_ec8c7a8035 (IsA southern_red_cedar juniper) (STV 1.0 0.9091)) +(: cnet_isa_6002aff06a (IsA southern_red_oak red_oak) (STV 1.0 0.9091)) +(: cnet_isa_8eefcbd81a (IsA southern_spadefoot spadefoot) (STV 1.0 0.9091)) +(: cnet_isa_0d913ad7b2 (IsA southern_spatterdock water_lily) (STV 1.0 0.9091)) +(: cnet_isa_ba319f8b2c (IsA southern_tai tai) (STV 1.0 0.9091)) +(: cnet_isa_7347919928 (IsA southern_white_cedar cedar) (STV 1.0 0.9091)) +(: cnet_isa_83d2009ddb (IsA southerner american) (STV 1.0 0.9091)) +(: cnet_isa_d03712cdc4 (IsA southernism attitude) (STV 1.0 0.9091)) +(: cnet_isa_3d0e19177c (IsA southernism saying) (STV 1.0 0.9091)) +(: cnet_isa_c030408868 (IsA southernness position) (STV 1.0 0.9091)) +(: cnet_isa_fa9db60cac (IsA southernwood wormwood) (STV 1.0 0.9091)) +(: cnet_isa_e285c294f6 (IsA southwest compass_point) (STV 1.0 0.9091)) +(: cnet_isa_666df53720 (IsA southwest direction) (STV 1.0 0.9091)) +(: cnet_isa_0568f6016f (IsA southwest location) (STV 1.0 0.9091)) +(: cnet_isa_cfa9e7349b (IsA southwest_by_south compass_point) (STV 1.0 0.9091)) +(: cnet_isa_c2772af65c (IsA southwest_by_west compass_point) (STV 1.0 0.9091)) +(: cnet_isa_fcf9862507 (IsA southwester wind) (STV 1.0 0.9091)) +(: cnet_isa_5f704f5b9d (IsA southwestern middle_english) (STV 1.0 0.9091)) +(: cnet_isa_faa60932dd (IsA southwestern_lip_fern lip_fern) (STV 1.0 0.9091)) +(: cnet_isa_7ba02c5f1f (IsA southwestern_toad true_toad) (STV 1.0 0.9091)) +(: cnet_isa_396de2d1c4 (IsA southwestern_white_pine white_pine) (STV 1.0 0.9091)) +(: cnet_isa_d360b2616d (IsA souvlaki kabob) (STV 1.0 0.9091)) +(: cnet_isa_d0e9a518cd (IsA sovereign head_of_state) (STV 1.0 0.9091)) +(: cnet_isa_4ea0f65a04 (IsA sovereign ruler) (STV 1.0 0.9091)) +(: cnet_isa_5335a8a51d (IsA sovereign_immunity exemption) (STV 1.0 0.9091)) +(: cnet_isa_d594bd236f (IsA sovereignty authority) (STV 1.0 0.9091)) +(: cnet_isa_5ae88f1c81 (IsA sovereignty self_government) (STV 1.0 0.9091)) +(: cnet_isa_cf6a86e154 (IsA soviet council) (STV 1.0 0.9091)) +(: cnet_isa_d6aa98e35e (IsA soviet_army refered_to_as_red_army) (STV 1.0 0.9091)) +(: cnet_isa_13b61be3ae (IsA soviet_socialist_republic state) (STV 1.0 0.9091)) +(: cnet_isa_5e2935f27a (IsA soviet state) (STV 1.0 0.9091)) +(: cnet_isa_d4fe890eeb (IsA sow swine) (STV 1.0 0.9091)) +(: cnet_isa_e57f78f2ec (IsA sow_bug woodlouse) (STV 1.0 0.9091)) +(: cnet_isa_dcfa635e8e (IsA sow_thistle shrub) (STV 1.0 0.9091)) +(: cnet_isa_9a0355f9bc (IsA sowbane goosefoot) (STV 1.0 0.9091)) +(: cnet_isa_b793612c88 (IsA sowbelly salt_pork) (STV 1.0 0.9091)) +(: cnet_isa_db63d60005 (IsA sowbread flower) (STV 1.0 0.9091)) +(: cnet_isa_2594266cfd (IsA sower farmer) (STV 1.0 0.9091)) +(: cnet_isa_c4bdb217d8 (IsA soy bean) (STV 1.0 0.9091)) +(: cnet_isa_fbe839a2c9 (IsA soy legume) (STV 1.0 0.9091)) +(: cnet_isa_3a3726ba23 (IsA soy_sauce condiment) (STV 1.0 0.9091)) +(: cnet_isa_6f5b3fa629 (IsA soya_milk milk) (STV 1.0 0.9091)) +(: cnet_isa_33f79a16bb (IsA soybean_future future) (STV 1.0 0.9091)) +(: cnet_isa_d9e83737ac (IsA soybean_meal flour) (STV 1.0 0.9091)) +(: cnet_isa_6bd9c6b640 (IsA soybean_oil vegetable_oil) (STV 1.0 0.9091)) +(: cnet_isa_9baa2f413a (IsA space area) (STV 1.0 0.9091)) +(: cnet_isa_266f1fcec7 (IsA space dangerous_place) (STV 1.0 0.9091)) +(: cnet_isa_8a30008cbe (IsA space vacuum) (STV 1.0 0.9091)) +(: cnet_isa_71a0646294 (IsA space attribute) (STV 1.0 0.9091)) +(: cnet_isa_cd91e80777 (IsA space character) (STV 1.0 0.9091)) +(: cnet_isa_1ed1059f08 (IsA space amorphous_shape) (STV 1.0 0.9091)) +(: cnet_isa_3b456d6473 (IsA space location) (STV 1.0 0.9091)) +(: cnet_isa_27a29c7578 (IsA space_age time) (STV 1.0 0.9091)) +(: cnet_isa_f3f357b54f (IsA space_bar key) (STV 1.0 0.9091)) +(: cnet_isa_43aeda3afd (IsA space_cadet simpleton) (STV 1.0 0.9091)) +(: cnet_isa_3d9d21660b (IsA space_capsule spacecraft) (STV 1.0 0.9091)) +(: cnet_isa_2ed83dee79 (IsA space_heater heater) (STV 1.0 0.9091)) +(: cnet_isa_799c13e1f3 (IsA space_helmet helmet) (STV 1.0 0.9091)) +(: cnet_isa_53c4cb2fcf (IsA space_lattice lattice) (STV 1.0 0.9091)) +(: cnet_isa_6b2eb2c5ec (IsA space_medicine medicine) (STV 1.0 0.9091)) +(: cnet_isa_e297c0139f (IsA space_probe guided_missile) (STV 1.0 0.9091)) +(: cnet_isa_ddee1b9093 (IsA space_program program) (STV 1.0 0.9091)) +(: cnet_isa_c42baec3b0 (IsA space_rocket rocket) (STV 1.0 0.9091)) +(: cnet_isa_bea49c9ce1 (IsA space_shuttle spacecraft) (STV 1.0 0.9091)) +(: cnet_isa_c7d0b76249 (IsA space_station satellite) (STV 1.0 0.9091)) +(: cnet_isa_ad79ff891e (IsA space_time coordinate_system) (STV 1.0 0.9091)) +(: cnet_isa_49ce2c435d (IsA space_walk activity) (STV 1.0 0.9091)) +(: cnet_isa_899ae34db4 (IsA space_writer writer) (STV 1.0 0.9091)) +(: cnet_isa_af38a93ee8 (IsA spacecraft craft) (STV 1.0 0.9091)) +(: cnet_isa_10e33d32d4 (IsA spacecraft satellite) (STV 1.0 0.9091)) +(: cnet_isa_589a6f56af (IsA spacecraft_clock_time clock_time) (STV 1.0 0.9091)) +(: cnet_isa_a084c277e5 (IsA spacecraft_event_time coordinated_universal_time) (STV 1.0 0.9091)) +(: cnet_isa_f13d48b5e1 (IsA spaceflight voyage) (STV 1.0 0.9091)) +(: cnet_isa_2e59e2816a (IsA spacesuit pressure_suit) (STV 1.0 0.9091)) +(: cnet_isa_d5b59632c9 (IsA spacewalker astronaut) (STV 1.0 0.9091)) +(: cnet_isa_b3d3a2c2c1 (IsA spacing placement) (STV 1.0 0.9091)) +(: cnet_isa_72eb8e104f (IsA spacing rate) (STV 1.0 0.9091)) +(: cnet_isa_72a5634dcc (IsA spackle plaster) (STV 1.0 0.9091)) +(: cnet_isa_be889b9689 (IsA spade hand_shovel) (STV 1.0 0.9091)) +(: cnet_isa_1bd3d7e612 (IsA spade playing_card) (STV 1.0 0.9091)) +(: cnet_isa_8211f83809 (IsA spade_bit bit) (STV 1.0 0.9091)) +(: cnet_isa_85fb2538db (IsA spade_casino casino) (STV 1.0 0.9091)) +(: cnet_isa_07345e6b0c (IsA spadefish percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_33d16705a0 (IsA spadefoot frog) (STV 1.0 0.9091)) +(: cnet_isa_6bd887fdaa (IsA spadework work) (STV 1.0 0.9091)) +(: cnet_isa_6466e3983a (IsA spadix axis) (STV 1.0 0.9091)) +(: cnet_isa_114b667a38 (IsA spaghetti food) (STV 1.0 0.9524)) +(: cnet_isa_859d9684cf (IsA spaghetti pasta) (STV 1.0 0.9091)) +(: cnet_isa_0baee963c5 (IsA spaghetti_and_meatball dish) (STV 1.0 0.9091)) +(: cnet_isa_89001a86d9 (IsA spaghetti_junction interchange) (STV 1.0 0.9091)) +(: cnet_isa_2d0201ad0e (IsA spaghetti_sauce sauce) (STV 1.0 0.9091)) +(: cnet_isa_4c4758386a (IsA spaghetti_squash summer_squash) (STV 1.0 0.9091)) +(: cnet_isa_3cfbac39db (IsA spaghetti_western western) (STV 1.0 0.9091)) +(: cnet_isa_0281669533 (IsA spaghettini pasta) (STV 1.0 0.9091)) +(: cnet_isa_54f049a005 (IsA spain country) (STV 1.0 0.9524)) +(: cnet_isa_5f823fc1f3 (IsA spalacidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_7d62ea4aaf (IsA spalax mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_4a9394adfb (IsA spall fragment) (STV 1.0 0.9091)) +(: cnet_isa_b72ee02e5b (IsA spallation nuclear_reaction) (STV 1.0 0.9091)) +(: cnet_isa_8fe290aa47 (IsA spam electronic_mail) (STV 1.0 0.9091)) +(: cnet_isa_54aae0a7f4 (IsA spam canned_meat) (STV 1.0 0.9091)) +(: cnet_isa_a11f7da70b (IsA spammer sender) (STV 1.0 0.9091)) +(: cnet_isa_41654453ae (IsA span distance) (STV 1.0 0.9091)) +(: cnet_isa_f0272fadb1 (IsA span linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_0c2d50cb6d (IsA span duration) (STV 1.0 0.9091)) +(: cnet_isa_d015752b06 (IsA span_loading loading) (STV 1.0 0.9091)) +(: cnet_isa_cee44734e2 (IsA spandau machine_gun) (STV 1.0 0.9091)) +(: cnet_isa_93587884bc (IsA spandex fabric) (STV 1.0 0.9091)) +(: cnet_isa_0961ca0d63 (IsA spandrel surface) (STV 1.0 0.9091)) +(: cnet_isa_6634f2b2b7 (IsA spaniard european) (STV 1.0 0.9091)) +(: cnet_isa_58403d1854 (IsA spaniel dog) (STV 1.0 0.9608)) +(: cnet_isa_dfd300440b (IsA spaniel sporting_dog) (STV 1.0 0.9091)) +(: cnet_isa_46f5828bb9 (IsA spanish language) (STV 1.0 0.9677)) +(: cnet_isa_12503e0b90 (IsA spanish romance) (STV 1.0 0.9091)) +(: cnet_isa_19228d70ea (IsA spanish_bayonet yucca) (STV 1.0 0.9091)) +(: cnet_isa_d683db49c8 (IsA spanish_broom broom) (STV 1.0 0.9091)) +(: cnet_isa_5df26f6462 (IsA spanish_cedar mahogany) (STV 1.0 0.9091)) +(: cnet_isa_4a3fb98479 (IsA spanish_dagger yucca) (STV 1.0 0.9091)) +(: cnet_isa_79ebce6549 (IsA spanish_elm angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_cf148d5daa (IsA spanish_fly blister_beetle) (STV 1.0 0.9091)) +(: cnet_isa_d384060fa3 (IsA spanish_grunt grunt) (STV 1.0 0.9091)) +(: cnet_isa_ca3d515f7d (IsA spanish_heath erica) (STV 1.0 0.9091)) +(: cnet_isa_efc274bb60 (IsA spanish_iris beardless_iris) (STV 1.0 0.9091)) +(: cnet_isa_bacfe49b7f (IsA spanish_lime fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_0189d8a34f (IsA spanish_mackerel mackerel) (STV 1.0 0.9091)) +(: cnet_isa_35bced2c7c (IsA spanish_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_ac2b0bcd1a (IsA spanish_moss air_plant) (STV 1.0 0.9091)) +(: cnet_isa_9dbca15ba9 (IsA spanish_needle bur) (STV 1.0 0.9091)) +(: cnet_isa_3627c0cea3 (IsA spanish_needle bur_marigold) (STV 1.0 0.9091)) +(: cnet_isa_464910d781 (IsA spanish_oak oak) (STV 1.0 0.9091)) +(: cnet_isa_1bb34ac70d (IsA spanish_onion onion) (STV 1.0 0.9091)) +(: cnet_isa_3b0da7950f (IsA spanish_oyster_plant golden_thistle) (STV 1.0 0.9091)) +(: cnet_isa_b390694af4 (IsA spanish_paprika paprika) (STV 1.0 0.9091)) +(: cnet_isa_a67b35a692 (IsA spanish_people nation) (STV 1.0 0.9091)) +(: cnet_isa_4bcc38be91 (IsA spanish_rice dish) (STV 1.0 0.9091)) +(: cnet_isa_90abaa9f1d (IsA spanish_tamarind tree) (STV 1.0 0.9091)) +(: cnet_isa_c71905fe50 (IsA spank smack) (STV 1.0 0.9091)) +(: cnet_isa_a8e300e675 (IsA spanker fore_and_aft_sail) (STV 1.0 0.9091)) +(: cnet_isa_58b257bd7b (IsA spanking discipline) (STV 1.0 0.9091)) +(: cnet_isa_c5257673a2 (IsA spar boxing) (STV 1.0 0.9091)) +(: cnet_isa_d77106d4cb (IsA spar pole) (STV 1.0 0.9091)) +(: cnet_isa_7fac581739 (IsA spar mineral) (STV 1.0 0.9091)) +(: cnet_isa_678844be1a (IsA spar_buoy buoy) (STV 1.0 0.9091)) +(: cnet_isa_4c2575fd1b (IsA sparaxis liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ed4f22e4f8 (IsA spare score) (STV 1.0 0.9091)) +(: cnet_isa_d2d8277250 (IsA spare_part component) (STV 1.0 0.9091)) +(: cnet_isa_9699a77f97 (IsA spare_time time_off) (STV 1.0 0.9091)) +(: cnet_isa_e5b274483d (IsA spare_tire adipose_tissue) (STV 1.0 0.9091)) +(: cnet_isa_1ef8e59c2d (IsA sparer benefactor) (STV 1.0 0.9091)) +(: cnet_isa_2f286ab4a5 (IsA sparerib rib) (STV 1.0 0.9091)) +(: cnet_isa_c65a23eb07 (IsA sparerib cut_of_pork) (STV 1.0 0.9091)) +(: cnet_isa_f032c3f0a9 (IsA sparganiaceae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_64dcace3a6 (IsA sparganium monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_aa2c3f2c5b (IsA sparge_pipe pipe) (STV 1.0 0.9091)) +(: cnet_isa_9cd37eb8b4 (IsA sparid percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_42e178bd1c (IsA sparidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_bce1a72e5d (IsA spark fragment) (STV 1.0 0.9091)) +(: cnet_isa_6b41f5c1db (IsA spark trace) (STV 1.0 0.9091)) +(: cnet_isa_57d63d6a9d (IsA spark_advance timing) (STV 1.0 0.9091)) +(: cnet_isa_714a2ba8db (IsA spark_arrester electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_552f583169 (IsA spark_arrester net) (STV 1.0 0.9091)) +(: cnet_isa_bb437e2ef4 (IsA spark_chamber particle_detector) (STV 1.0 0.9091)) +(: cnet_isa_f34b245f50 (IsA spark_coil induction_coil) (STV 1.0 0.9091)) +(: cnet_isa_e8b3fa318b (IsA spark_gap component) (STV 1.0 0.9091)) +(: cnet_isa_0681ebe144 (IsA spark_gap gap) (STV 1.0 0.9091)) +(: cnet_isa_f00d33ac56 (IsA spark_lever lever) (STV 1.0 0.9091)) +(: cnet_isa_6a039abcbc (IsA spark_plug electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_90c1c2fa41 (IsA spark_transmitter radio_transmitter) (STV 1.0 0.9091)) +(: cnet_isa_e6c521839e (IsA sparkle expression) (STV 1.0 0.9091)) +(: cnet_isa_378e64521c (IsA sparkle vitality) (STV 1.0 0.9091)) +(: cnet_isa_1803aaefda (IsA sparkle_metal matte) (STV 1.0 0.9091)) +(: cnet_isa_48c8a9738b (IsA sparkler firework) (STV 1.0 0.9091)) +(: cnet_isa_9c09652b49 (IsA sparkling_wine wine) (STV 1.0 0.9091)) +(: cnet_isa_db20ddc0a4 (IsA sparkplug_wrench wrench) (STV 1.0 0.9091)) +(: cnet_isa_eb9d87cb61 (IsA sparling smelt) (STV 1.0 0.9091)) +(: cnet_isa_3ff9db9790 (IsA sparmannia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_61940fd288 (IsA sparring controversy) (STV 1.0 0.9091)) +(: cnet_isa_639001bafb (IsA sparring_match boxing_match) (STV 1.0 0.9091)) +(: cnet_isa_f1a6adc6d7 (IsA sparring_partner boxer) (STV 1.0 0.9091)) +(: cnet_isa_df5774e28b (IsA sparrow passerine) (STV 1.0 0.9091)) +(: cnet_isa_6ed70acf28 (IsA sparrow_hawk falcon) (STV 1.0 0.9091)) +(: cnet_isa_a76d40c4c0 (IsA sparrow_hawk hawk) (STV 1.0 0.9091)) +(: cnet_isa_3205bcf748 (IsA sparrow_unit hit_squad) (STV 1.0 0.9091)) +(: cnet_isa_d4a4011a16 (IsA sparseness meagerness) (STV 1.0 0.9091)) +(: cnet_isa_34183f90b2 (IsA spartan hellene) (STV 1.0 0.9091)) +(: cnet_isa_416f3b497d (IsA spartina monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_494b174e37 (IsA spartium rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e875e6459a (IsA spasm constriction) (STV 1.0 0.9091)) +(: cnet_isa_fd0d0aa5b0 (IsA spasm symptom) (STV 1.0 0.9091)) +(: cnet_isa_2a66b0c3ae (IsA spasmolysis easing) (STV 1.0 0.9091)) +(: cnet_isa_66ebc4367e (IsA spastic paralytic) (STV 1.0 0.9091)) +(: cnet_isa_e36edeff64 (IsA spastic_abasia abasia) (STV 1.0 0.9091)) +(: cnet_isa_0e28f68601 (IsA spastic_bladder bladder_disorder) (STV 1.0 0.9091)) +(: cnet_isa_07afb7349d (IsA spasticity fitfulness) (STV 1.0 0.9091)) +(: cnet_isa_20d0ea9839 (IsA spat young) (STV 1.0 0.9091)) +(: cnet_isa_da8dae8e7e (IsA spat legging) (STV 1.0 0.9091)) +(: cnet_isa_488013acba (IsA spatangoida animal_order) (STV 1.0 0.9091)) +(: cnet_isa_6ab50ac0df (IsA spatchcock chicken) (STV 1.0 0.9091)) +(: cnet_isa_af9824dfcc (IsA spathe bract) (STV 1.0 0.9091)) +(: cnet_isa_0845df0bf1 (IsA spathiphyllum flower) (STV 1.0 0.9091)) +(: cnet_isa_a547753801 (IsA spatial_property property) (STV 1.0 0.9091)) +(: cnet_isa_43345fe35f (IsA spatter painting) (STV 1.0 0.9091)) +(: cnet_isa_5ef9e21f2b (IsA spatter noise) (STV 1.0 0.9091)) +(: cnet_isa_a5c865d752 (IsA spatterdock water_lily) (STV 1.0 0.9091)) +(: cnet_isa_86e8d5f26f (IsA spatula hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_2937956aa4 (IsA spatula turner) (STV 1.0 0.9091)) +(: cnet_isa_3609f00501 (IsA spatulate_leaf simple_leaf) (STV 1.0 0.9091)) +(: cnet_isa_a5a38c48b9 (IsA spavin animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_d9680443a1 (IsA spawn egg) (STV 1.0 0.9091)) +(: cnet_isa_4440f7f249 (IsA spawner fish) (STV 1.0 0.9091)) +(: cnet_isa_48936a7ef8 (IsA spaying neutering) (STV 1.0 0.9091)) +(: cnet_isa_fb9f02f36c (IsA speakeasy barroom) (STV 1.0 0.9091)) +(: cnet_isa_3cda94d529 (IsA speaker articulator) (STV 1.0 0.9091)) +(: cnet_isa_39bfe16ebd (IsA speaker presiding_officer) (STV 1.0 0.9091)) +(: cnet_isa_db65a46151 (IsA speaker_identification recognition) (STV 1.0 0.9091)) +(: cnet_isa_c87c4ebf43 (IsA speakerphone telephone) (STV 1.0 0.9091)) +(: cnet_isa_ad8fa5468b (IsA speakership position) (STV 1.0 0.9091)) +(: cnet_isa_de94300819 (IsA speaking utterance) (STV 1.0 0.9091)) +(: cnet_isa_c84349049b (IsA speaking_trumpet acoustic_device) (STV 1.0 0.9091)) +(: cnet_isa_79433b930e (IsA speaking_tube tube) (STV 1.0 0.9091)) +(: cnet_isa_f1d4c011cf (IsA spear weapon) (STV 1.0 0.9454)) +(: cnet_isa_a9608e20ed (IsA spear implement) (STV 1.0 0.9091)) +(: cnet_isa_eb3c012ad8 (IsA spearfish billfish) (STV 1.0 0.9091)) +(: cnet_isa_b303ef2b03 (IsA spearhead point) (STV 1.0 0.9091)) +(: cnet_isa_30f9afdca5 (IsA spearhead military_unit) (STV 1.0 0.9091)) +(: cnet_isa_41eda814f4 (IsA spearhead leader) (STV 1.0 0.9091)) +(: cnet_isa_dd7c875bc7 (IsA spearmint mint) (STV 1.0 0.9091)) +(: cnet_isa_0ff017e4d3 (IsA spearmint_oil flavorer) (STV 1.0 0.9091)) +(: cnet_isa_8a96fa9b2f (IsA spearnose_bat leafnose_bat) (STV 1.0 0.9091)) +(: cnet_isa_61de59d22f (IsA special offer) (STV 1.0 0.9091)) +(: cnet_isa_b5c2031892 (IsA special television_program) (STV 1.0 0.9091)) +(: cnet_isa_26997280c3 (IsA special dish) (STV 1.0 0.9091)) +(: cnet_isa_fffc744cfd (IsA special_act legislative_act) (STV 1.0 0.9091)) +(: cnet_isa_d4ea78ded1 (IsA special_agent agent) (STV 1.0 0.9091)) +(: cnet_isa_7857f00c4c (IsA special_air_service commando) (STV 1.0 0.9091)) +(: cnet_isa_fd8c4a59c2 (IsA special_assessment tax) (STV 1.0 0.9091)) +(: cnet_isa_0828d261c7 (IsA special_branch government_department) (STV 1.0 0.9091)) +(: cnet_isa_c9065a1887 (IsA special_court_martial court_martial) (STV 1.0 0.9091)) +(: cnet_isa_f8ddfc9144 (IsA special_delivery mail) (STV 1.0 0.9091)) +(: cnet_isa_7d4b8b79eb (IsA special_drawing_right reserve_asset) (STV 1.0 0.9091)) +(: cnet_isa_73b6de5094 (IsA special_education education) (STV 1.0 0.9091)) +(: cnet_isa_9c6819e995 (IsA special_effect effect) (STV 1.0 0.9091)) +(: cnet_isa_ee83fe1e45 (IsA special_force division) (STV 1.0 0.9091)) +(: cnet_isa_1465e05720 (IsA special_interest interest) (STV 1.0 0.9091)) +(: cnet_isa_a327082120 (IsA special_interest political_unit) (STV 1.0 0.9091)) +(: cnet_isa_9b4539af1c (IsA special_jury jury) (STV 1.0 0.9091)) +(: cnet_isa_66d3505541 (IsA special_olympic athletic_contest) (STV 1.0 0.9091)) +(: cnet_isa_dae84f2aea (IsA special_pleading specious_argument) (STV 1.0 0.9091)) +(: cnet_isa_7074640059 (IsA special_pleading pleading) (STV 1.0 0.9091)) +(: cnet_isa_41e273f758 (IsA special_relativity relativity) (STV 1.0 0.9091)) +(: cnet_isa_8e3dbee4a6 (IsA special_session session) (STV 1.0 0.9091)) +(: cnet_isa_dcd865fc77 (IsA special_verdict verdict) (STV 1.0 0.9091)) +(: cnet_isa_e48ab3a8a1 (IsA specialism concentration) (STV 1.0 0.9091)) +(: cnet_isa_b6bad412ad (IsA specialist doctor) (STV 1.0 0.9091)) +(: cnet_isa_d1da7bece0 (IsA specialist expert) (STV 1.0 0.9091)) +(: cnet_isa_b8a73b503d (IsA specialization career) (STV 1.0 0.9091)) +(: cnet_isa_460a37f654 (IsA specialization change_of_state) (STV 1.0 0.9091)) +(: cnet_isa_2977b7d235 (IsA specialization adaptation) (STV 1.0 0.9091)) +(: cnet_isa_fd7fb7ea2e (IsA specialty_store shop) (STV 1.0 0.9091)) +(: cnet_isa_3782aa5d0d (IsA speciation evolution) (STV 1.0 0.9091)) +(: cnet_isa_61a91be86a (IsA specy taxonomic_group) (STV 1.0 0.9091)) +(: cnet_isa_a024b7e019 (IsA specy kind) (STV 1.0 0.9091)) +(: cnet_isa_6176737101 (IsA specific medicine) (STV 1.0 0.9091)) +(: cnet_isa_b641e51e94 (IsA specific_gravity relative_density) (STV 1.0 0.9091)) +(: cnet_isa_44a042975f (IsA specific_heat heat) (STV 1.0 0.9091)) +(: cnet_isa_8418fedeb9 (IsA specific_performance performance) (STV 1.0 0.9091)) +(: cnet_isa_5f302d2886 (IsA specification description) (STV 1.0 0.9091)) +(: cnet_isa_128dfb1238 (IsA specification naming) (STV 1.0 0.9091)) +(: cnet_isa_9a5cb72363 (IsA specification document) (STV 1.0 0.9091)) +(: cnet_isa_18fcc56adb (IsA specificity particularity) (STV 1.0 0.9091)) +(: cnet_isa_47dd5b09ef (IsA specifier intellectual) (STV 1.0 0.9091)) +(: cnet_isa_f79add1039 (IsA specimen sample) (STV 1.0 0.9091)) +(: cnet_isa_083fbcea5f (IsA specimen example) (STV 1.0 0.9091)) +(: cnet_isa_5d82a77af7 (IsA specimen_bottle bottle) (STV 1.0 0.9091)) +(: cnet_isa_f3192f563b (IsA specious_argument argument) (STV 1.0 0.9091)) +(: cnet_isa_cf69b71a8d (IsA speciousness deceptiveness) (STV 1.0 0.9091)) +(: cnet_isa_c33f73f9d6 (IsA speck spot) (STV 1.0 0.9091)) +(: cnet_isa_fc82c31284 (IsA speckled_alder alder) (STV 1.0 0.9091)) +(: cnet_isa_4622a45752 (IsA speckled_rattlesnake rattlesnake) (STV 1.0 0.9091)) +(: cnet_isa_8a09f6b148 (IsA spectacle blunder) (STV 1.0 0.9091)) +(: cnet_isa_e8ac637b66 (IsA spectacle display) (STV 1.0 0.9091)) +(: cnet_isa_3187eb013e (IsA spectacle sight) (STV 1.0 0.9091)) +(: cnet_isa_5d5da2919b (IsA spectacled_caiman cayman) (STV 1.0 0.9091)) +(: cnet_isa_a4b98d346f (IsA spectacle optical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_15b79b53a8 (IsA spectacular performance) (STV 1.0 0.9091)) +(: cnet_isa_5dd119a795 (IsA spectator perceiver) (STV 1.0 0.9091)) +(: cnet_isa_c8e76361fd (IsA spectator_pump pump) (STV 1.0 0.9091)) +(: cnet_isa_b9d083ee0b (IsA spectator_sport sport) (STV 1.0 0.9091)) +(: cnet_isa_324a2b215b (IsA spectinomycin antibiotic) (STV 1.0 0.9091)) +(: cnet_isa_4f6d1ef521 (IsA spectrogram picture) (STV 1.0 0.9091)) +(: cnet_isa_3c1ff482b4 (IsA spectrograph spectroscope) (STV 1.0 0.9091)) +(: cnet_isa_d126c1d86a (IsA spectrophotometer photometer) (STV 1.0 0.9091)) +(: cnet_isa_3bb24bad91 (IsA spectroscope optical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_acd2a105fa (IsA spectroscopy chemical_analysis) (STV 1.0 0.9091)) +(: cnet_isa_99b321fdf4 (IsA spectrum scope) (STV 1.0 0.9091)) +(: cnet_isa_6690466682 (IsA spectrum array) (STV 1.0 0.9091)) +(: cnet_isa_fa53aa8fcd (IsA spectrum_line line) (STV 1.0 0.9091)) +(: cnet_isa_b6353804fc (IsA speculation hypothesis) (STV 1.0 0.9091)) +(: cnet_isa_59917e4f7f (IsA speculation investment) (STV 1.0 0.9091)) +(: cnet_isa_393e0b226a (IsA speculativeness uncertainty) (STV 1.0 0.9091)) +(: cnet_isa_e731f01e58 (IsA speculativeness riskiness) (STV 1.0 0.9091)) +(: cnet_isa_217377e9c6 (IsA speculator adventurer) (STV 1.0 0.9091)) +(: cnet_isa_47cc00d04d (IsA speculator gambler) (STV 1.0 0.9091)) +(: cnet_isa_6032f70f29 (IsA speculator thinker) (STV 1.0 0.9091)) +(: cnet_isa_37c38c74d3 (IsA speculum medical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_64196f7021 (IsA speculum mirror) (STV 1.0 0.9091)) +(: cnet_isa_fa614630b0 (IsA speech speaking) (STV 1.0 0.9091)) +(: cnet_isa_f58f32fde6 (IsA speech utterance) (STV 1.0 0.9091)) +(: cnet_isa_78533c6c13 (IsA speech auditory_communication) (STV 1.0 0.9091)) +(: cnet_isa_4bcbc032ff (IsA speech_act act) (STV 1.0 0.9091)) +(: cnet_isa_4aff9ee0e3 (IsA speech_community community) (STV 1.0 0.9091)) +(: cnet_isa_4043ddee80 (IsA speech_day day) (STV 1.0 0.9091)) +(: cnet_isa_6385010a6e (IsA speech_disorder disorder) (STV 1.0 0.9091)) +(: cnet_isa_ee86b33c5f (IsA speech_intelligibility intelligibility) (STV 1.0 0.9091)) +(: cnet_isa_d49ec6fde3 (IsA speech_organ organ) (STV 1.0 0.9091)) +(: cnet_isa_60d4e4cfd2 (IsA speech_perception auditory_perception) (STV 1.0 0.9091)) +(: cnet_isa_cc54bf9667 (IsA speech_spectrum sound_spectrum) (STV 1.0 0.9091)) +(: cnet_isa_d2023032f7 (IsA speech_therapist therapist) (STV 1.0 0.9091)) +(: cnet_isa_08893559ec (IsA speech_therapy therapy) (STV 1.0 0.9091)) +(: cnet_isa_25809bb56b (IsA speechlessness silence) (STV 1.0 0.9091)) +(: cnet_isa_8f9dc660c9 (IsA speechwriter writer) (STV 1.0 0.9091)) +(: cnet_isa_0208617d87 (IsA speed motion) (STV 1.0 0.9091)) +(: cnet_isa_a3fc576981 (IsA speed pace) (STV 1.0 0.9091)) +(: cnet_isa_0dc00e99b1 (IsA speed rate) (STV 1.0 0.9091)) +(: cnet_isa_76be39c865 (IsA speed_bump hindrance) (STV 1.0 0.9091)) +(: cnet_isa_934838f824 (IsA speed_freak addict) (STV 1.0 0.9091)) +(: cnet_isa_c8c9f3dd14 (IsA speed_limit regulation) (STV 1.0 0.9091)) +(: cnet_isa_c2f1a65af0 (IsA speed_of_light constant) (STV 1.0 0.9091)) +(: cnet_isa_f4d6632233 (IsA speed_of_light speed) (STV 1.0 0.9091)) +(: cnet_isa_dc1af6dfef (IsA speed_reading reading) (STV 1.0 0.9091)) +(: cnet_isa_989b28ef34 (IsA speed_skate ice_skate) (STV 1.0 0.9091)) +(: cnet_isa_8a653ca28a (IsA speed_skating skating) (STV 1.0 0.9091)) +(: cnet_isa_7370a80685 (IsA speed_trap trap) (STV 1.0 0.9091)) +(: cnet_isa_bf3f7236db (IsA speedboat motorboat) (STV 1.0 0.9091)) +(: cnet_isa_fb02039dd5 (IsA speeder driver) (STV 1.0 0.9091)) +(: cnet_isa_ff5bdeb20a (IsA speeding_ticket ticket) (STV 1.0 0.9091)) +(: cnet_isa_a0b87840ce (IsA speedometer meter) (STV 1.0 0.9091)) +(: cnet_isa_ffcc76dc9d (IsA speedskater ice_skater) (STV 1.0 0.9091)) +(: cnet_isa_64d9e44c35 (IsA speedway racetrack) (STV 1.0 0.9091)) +(: cnet_isa_80fa3861e3 (IsA speedway road) (STV 1.0 0.9091)) +(: cnet_isa_aedf4200fd (IsA speleology avocation) (STV 1.0 0.9091)) +(: cnet_isa_08f3166c41 (IsA speleology geology) (STV 1.0 0.9091)) +(: cnet_isa_ed48d7327c (IsA spell speech) (STV 1.0 0.9091)) +(: cnet_isa_1ccd3d1435 (IsA spell_checker dictionary) (STV 1.0 0.9091)) +(: cnet_isa_c927586cbb (IsA spellbinder orator) (STV 1.0 0.9091)) +(: cnet_isa_10d1022856 (IsA speller primer) (STV 1.0 0.9091)) +(: cnet_isa_79cd45ea9f (IsA speller writer) (STV 1.0 0.9091)) +(: cnet_isa_00e2605944 (IsA spelling orthography) (STV 1.0 0.9091)) +(: cnet_isa_e109ed1378 (IsA spelling_bee contest) (STV 1.0 0.9091)) +(: cnet_isa_887e5ffc6a (IsA spelt wheat) (STV 1.0 0.9091)) +(: cnet_isa_c0a2ea060d (IsA spelter zinc) (STV 1.0 0.9091)) +(: cnet_isa_0c9a4a8fc7 (IsA spender customer) (STV 1.0 0.9091)) +(: cnet_isa_2d47e1522c (IsA spending payment) (STV 1.0 0.9091)) +(: cnet_isa_de7c6a5bf1 (IsA spending_cut cut) (STV 1.0 0.9091)) +(: cnet_isa_2b669caaf7 (IsA spending_spree spree) (STV 1.0 0.9091)) +(: cnet_isa_510ca29fd6 (IsA spendthrift prodigal) (STV 1.0 0.9091)) +(: cnet_isa_237ac9ee10 (IsA spendthrift_trust trust) (STV 1.0 0.9091)) +(: cnet_isa_0c25eec92b (IsA spenserian_sonnet sonnet) (STV 1.0 0.9091)) +(: cnet_isa_633047fcc6 (IsA spenserian_stanza stanza) (STV 1.0 0.9091)) +(: cnet_isa_6c6304c203 (IsA spergula caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_49427fd502 (IsA spergularia caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c389a887c8 (IsA sperm gamete) (STV 1.0 0.9091)) +(: cnet_isa_1bdde4adeb (IsA sperm_bank depository) (STV 1.0 0.9091)) +(: cnet_isa_1f8dad7501 (IsA sperm_count count) (STV 1.0 0.9091)) +(: cnet_isa_8069c5d855 (IsA sperm_oil animal_oil) (STV 1.0 0.9091)) +(: cnet_isa_d698745ee5 (IsA sperm_whale toothed_whale) (STV 1.0 0.9091)) +(: cnet_isa_aa1b88c081 (IsA spermaceti wax) (STV 1.0 0.9091)) +(: cnet_isa_50930ec4cf (IsA spermatic_cord funiculus) (STV 1.0 0.9091)) +(: cnet_isa_ba3879c6e2 (IsA spermatid gamete) (STV 1.0 0.9091)) +(: cnet_isa_a0eded3a99 (IsA spermatocele swelling) (STV 1.0 0.9091)) +(: cnet_isa_7308fe115d (IsA spermatocyte gametocyte) (STV 1.0 0.9091)) +(: cnet_isa_6749c21f7e (IsA spermatogenesis gametogenesis) (STV 1.0 0.9091)) +(: cnet_isa_fc1ddcf8db (IsA spermatophyta division) (STV 1.0 0.9091)) +(: cnet_isa_6626b425f7 (IsA spermatophyte vascular_plant) (STV 1.0 0.9091)) +(: cnet_isa_5431a41390 (IsA spermicide contraceptive) (STV 1.0 0.9091)) +(: cnet_isa_23bc4fb928 (IsA sphacelotheca smut) (STV 1.0 0.9091)) +(: cnet_isa_b245d58bb8 (IsA sphaeralcea dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6cc4b4a804 (IsA sphaeriaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_e6a2d85a36 (IsA sphaeriale fungus_order) (STV 1.0 0.9091)) +(: cnet_isa_83f3058909 (IsA sphaerobolaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_7d77836fca (IsA sphaerocarpaceae moss_family) (STV 1.0 0.9091)) +(: cnet_isa_cf321de819 (IsA sphaerocarpale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_f8b24ec5a6 (IsA sphaerocarpus moss_genus) (STV 1.0 0.9091)) +(: cnet_isa_75dcb88320 (IsA sphagnale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_208dc79c14 (IsA sphagnum moss) (STV 1.0 0.9091)) +(: cnet_isa_f6b213e944 (IsA sphecidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_15cd55c110 (IsA sphecius arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_5d759cea77 (IsA sphecoid_wasp wasp) (STV 1.0 0.9091)) +(: cnet_isa_5237f3d08e (IsA sphecoidea arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_d26cd52b13 (IsA sphecothere bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_6806576a5f (IsA sphenion craniometric_point) (STV 1.0 0.9091)) +(: cnet_isa_535e77c1e8 (IsA spheniscidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_00d8df8366 (IsA sphenisciform_seabird seabird) (STV 1.0 0.9091)) +(: cnet_isa_e618e17adf (IsA sphenisciforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_227e717865 (IsA spheniscus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_08dc6f35e4 (IsA sphenodon reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_bde3fc7034 (IsA sphenoid_bone bone) (STV 1.0 0.9091)) +(: cnet_isa_dd609c5134 (IsA sphenoid_fontanelle fontanelle) (STV 1.0 0.9091)) +(: cnet_isa_99a6ff7c2b (IsA sphenopsida class) (STV 1.0 0.9091)) +(: cnet_isa_d7c0d1d15d (IsA sphere three_dimensional_geometric_shape) (STV 1.0 0.9091)) +(: cnet_isa_c8e55d7c8b (IsA sphere artifact) (STV 1.0 0.9091)) +(: cnet_isa_71bf9a4395 (IsA sphere geographical_area) (STV 1.0 0.9091)) +(: cnet_isa_f058d42d6b (IsA sphere round_shape) (STV 1.0 0.9091)) +(: cnet_isa_3ae42f48b3 (IsA sphere environment) (STV 1.0 0.9091)) +(: cnet_isa_5377d55b36 (IsA spherical_aberration aberration) (STV 1.0 0.9091)) +(: cnet_isa_0446f1c004 (IsA spherical_angle angle) (STV 1.0 0.9091)) +(: cnet_isa_fb90035b1e (IsA spherical_geometry geometry) (STV 1.0 0.9091)) +(: cnet_isa_e0c3caa0c2 (IsA spherical_polygon polygon) (STV 1.0 0.9091)) +(: cnet_isa_2a5c8b86e2 (IsA spherical_triangle spherical_polygon) (STV 1.0 0.9091)) +(: cnet_isa_4ac6bdc92e (IsA spherical_trigonometry trigonometry) (STV 1.0 0.9091)) +(: cnet_isa_a6eb8d585a (IsA sphericity roundness) (STV 1.0 0.9091)) +(: cnet_isa_3e5e29d7c0 (IsA spherocyte red_blood_cell) (STV 1.0 0.9091)) +(: cnet_isa_611985e333 (IsA spheroid round_shape) (STV 1.0 0.9091)) +(: cnet_isa_c548dc0be8 (IsA spherometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_01f2e23519 (IsA spherule ball) (STV 1.0 0.9091)) +(: cnet_isa_b1f8ae6172 (IsA sphincter muscle) (STV 1.0 0.9091)) +(: cnet_isa_d7b1124369 (IsA sphingidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_8bd3ca7ccf (IsA sphinx statue) (STV 1.0 0.9091)) +(: cnet_isa_cdee5e8cc4 (IsA sphinx mythical_monster) (STV 1.0 0.9091)) +(: cnet_isa_fe4d0503be (IsA sphinx person) (STV 1.0 0.9091)) +(: cnet_isa_4d74fef1a8 (IsA sphygmomanometer pressure_gauge) (STV 1.0 0.9091)) +(: cnet_isa_411f913139 (IsA sphyraena fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_0c32b9d0ea (IsA sphyraenidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_10303293cb (IsA sphyrapicus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_49ef8ba004 (IsA sphyrna fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_873058ec61 (IsA sphyrnidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_046c974fbe (IsA spic latino) (STV 1.0 0.9091)) +(: cnet_isa_eee60a4f2a (IsA spiccato bowing) (STV 1.0 0.9091)) +(: cnet_isa_10ee7b6ce7 (IsA spice flavorer) (STV 1.0 0.9091)) +(: cnet_isa_4834ff032c (IsA spice preservative) (STV 1.0 0.9091)) +(: cnet_isa_e719783325 (IsA spice_cake cake) (STV 1.0 0.9091)) +(: cnet_isa_e5c425b773 (IsA spice_cookie cookie) (STV 1.0 0.9091)) +(: cnet_isa_0c5cec6b53 (IsA spice_rack rack) (STV 1.0 0.9091)) +(: cnet_isa_da8693e865 (IsA spice_tree angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_00248a53ad (IsA spicebush allspice) (STV 1.0 0.9091)) +(: cnet_isa_3ba879b662 (IsA spicebush shrub) (STV 1.0 0.9091)) +(: cnet_isa_6a73234f19 (IsA spicemill mill) (STV 1.0 0.9091)) +(: cnet_isa_1377324253 (IsA spiciness taste_property) (STV 1.0 0.9091)) +(: cnet_isa_97cbc92668 (IsA spicule process) (STV 1.0 0.9091)) +(: cnet_isa_48aa01bc8d (IsA spider arachnid) (STV 1.0 0.9339)) +(: cnet_isa_3fedadada7 (IsA spider frying_pan) (STV 1.0 0.9091)) +(: cnet_isa_8c5c6cbeaf (IsA spider program) (STV 1.0 0.9091)) +(: cnet_isa_2f3283fb03 (IsA spider_angioma angioma) (STV 1.0 0.9091)) +(: cnet_isa_6631a284ec (IsA spider_brake fern) (STV 1.0 0.9091)) +(: cnet_isa_4ecaf2650e (IsA spider_crab crab) (STV 1.0 0.9091)) +(: cnet_isa_9a5ca79238 (IsA spider_flower spiderflower) (STV 1.0 0.9091)) +(: cnet_isa_50dfadfbff (IsA spider_mite mite) (STV 1.0 0.9091)) +(: cnet_isa_4e76833117 (IsA spider_monkey new_world_monkey) (STV 1.0 0.9091)) +(: cnet_isa_6dfb23432a (IsA spider_orchid orchid) (STV 1.0 0.9091)) +(: cnet_isa_cf1cc5e69d (IsA spider_web web) (STV 1.0 0.9091)) +(: cnet_isa_2c632188dc (IsA spiderflower herb) (STV 1.0 0.9091)) +(: cnet_isa_a4fd4e4edd (IsA spiderwort herb) (STV 1.0 0.9091)) +(: cnet_isa_9b7e12e379 (IsA spiegeleisen pig_iron) (STV 1.0 0.9091)) +(: cnet_isa_415f5f2493 (IsA spiel channel) (STV 1.0 0.9091)) +(: cnet_isa_3d3b70b04e (IsA spielmeyer_vogt_disease genetic_disease) (STV 1.0 0.9091)) +(: cnet_isa_c041551cf0 (IsA spiff attractiveness) (STV 1.0 0.9091)) +(: cnet_isa_60084a3602 (IsA spike holding_device) (STV 1.0 0.9091)) +(: cnet_isa_9d3da2ed1d (IsA spike implement) (STV 1.0 0.9091)) +(: cnet_isa_ef9d647e44 (IsA spike nail) (STV 1.0 0.9091)) +(: cnet_isa_7fd945806d (IsA spike point) (STV 1.0 0.9091)) +(: cnet_isa_d814849c4c (IsA spike projection) (STV 1.0 0.9091)) +(: cnet_isa_a6d10d1979 (IsA spike sport_equipment) (STV 1.0 0.9091)) +(: cnet_isa_ac7a81dd9f (IsA spike inflorescence) (STV 1.0 0.9091)) +(: cnet_isa_cbb2f5f3ec (IsA spike electrical_discharge) (STV 1.0 0.9091)) +(: cnet_isa_7c907988c7 (IsA spike rise) (STV 1.0 0.9091)) +(: cnet_isa_e0c80984fb (IsA spike_heath heath) (STV 1.0 0.9091)) +(: cnet_isa_2188dd33bb (IsA spike_heel heel) (STV 1.0 0.9091)) +(: cnet_isa_c855497050 (IsA spike_lavender lavender) (STV 1.0 0.9091)) +(: cnet_isa_ec43a28321 (IsA spike_lavender_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_3cef1f2f28 (IsA spike_mike contact_microphone) (STV 1.0 0.9091)) +(: cnet_isa_48f6be2d27 (IsA spike_rush sedge) (STV 1.0 0.9091)) +(: cnet_isa_2673e82251 (IsA spikemoss club_moss) (STV 1.0 0.9091)) +(: cnet_isa_cc637999e9 (IsA spill flow) (STV 1.0 0.9091)) +(: cnet_isa_5019dcedb6 (IsA spill slip) (STV 1.0 0.9091)) +(: cnet_isa_d8a1565fb9 (IsA spill liquid) (STV 1.0 0.9091)) +(: cnet_isa_e533061dca (IsA spillage indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_cb29e207fe (IsA spillover consequence) (STV 1.0 0.9091)) +(: cnet_isa_b33838c6cd (IsA spillway conduit) (STV 1.0 0.9091)) +(: cnet_isa_af3017ef44 (IsA spilogale mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_380eda3184 (IsA spin drive) (STV 1.0 0.9091)) +(: cnet_isa_3d556bc521 (IsA spin rendition) (STV 1.0 0.9091)) +(: cnet_isa_5b7d249cfd (IsA spin rotation) (STV 1.0 0.9091)) +(: cnet_isa_66cc089569 (IsA spin_bottle child_s_game) (STV 1.0 0.9091)) +(: cnet_isa_49fe6dc78e (IsA spin_doctor public_relation_person) (STV 1.0 0.9091)) +(: cnet_isa_1cfe95b8ee (IsA spin_dryer clothe_dryer) (STV 1.0 0.9091)) +(: cnet_isa_7771012cb9 (IsA spin_plate child_s_game) (STV 1.0 0.9091)) +(: cnet_isa_ae039d5939 (IsA spin_vector vector) (STV 1.0 0.9091)) +(: cnet_isa_f11b4c2397 (IsA spina_bifida birth_defect) (STV 1.0 0.9091)) +(: cnet_isa_e280ed58bc (IsA spinach food_edible_by_human) (STV 1.0 0.9091)) +(: cnet_isa_d0381067f9 (IsA spinach vegetable) (STV 1.0 0.9339)) +(: cnet_isa_a4286e08c3 (IsA spinach green) (STV 1.0 0.9091)) +(: cnet_isa_207ef3ee26 (IsA spinach_blight blight) (STV 1.0 0.9091)) +(: cnet_isa_e1ec8dc772 (IsA spinacia caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b5e4342aff (IsA spinal_anesthesia regional_anesthesia) (STV 1.0 0.9091)) +(: cnet_isa_3877cfce36 (IsA spinal_anesthetic anesthetic) (STV 1.0 0.9091)) +(: cnet_isa_a37fe988fd (IsA spinal_canal duct) (STV 1.0 0.9091)) +(: cnet_isa_5a136409b8 (IsA spinal_column skeletal_structure) (STV 1.0 0.9091)) +(: cnet_isa_1d9fb1f2e1 (IsA spinal_cord funiculus) (STV 1.0 0.9091)) +(: cnet_isa_2bd5650d4c (IsA spinal_cord neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_6305762505 (IsA spinal_curvature abnormality) (STV 1.0 0.9091)) +(: cnet_isa_65a0d60ac9 (IsA spinal_fluid liquid_body_substance) (STV 1.0 0.9091)) +(: cnet_isa_7d929c19c6 (IsA spinal_nerve nerve) (STV 1.0 0.9091)) +(: cnet_isa_27c7f7c803 (IsA spinal_nerve_root spinal_nerve) (STV 1.0 0.9091)) +(: cnet_isa_ad3d55457e (IsA spinal_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_051c3affe5 (IsA spindle piece) (STV 1.0 0.9091)) +(: cnet_isa_c92f8fca07 (IsA spindle rotating_shaft) (STV 1.0 0.9091)) +(: cnet_isa_95d9d5e117 (IsA spindle stick) (STV 1.0 0.9091)) +(: cnet_isa_b3ef2c773f (IsA spindle fiber) (STV 1.0 0.9091)) +(: cnet_isa_bb39d1259c (IsA spindle_tree shrub) (STV 1.0 0.9091)) +(: cnet_isa_a68f60f60b (IsA spindleleg leg) (STV 1.0 0.9091)) +(: cnet_isa_303399957c (IsA spindleleg thin_person) (STV 1.0 0.9091)) +(: cnet_isa_ee894c9def (IsA spindrift spray) (STV 1.0 0.9091)) +(: cnet_isa_2bc3c07f9b (IsA spine process) (STV 1.0 0.9091)) +(: cnet_isa_6bcc86f637 (IsA spine aculeus) (STV 1.0 0.9091)) +(: cnet_isa_77b56ae3c2 (IsA spinel mineral) (STV 1.0 0.9091)) +(: cnet_isa_02d516ea0e (IsA spinel_ruby spinel) (STV 1.0 0.9091)) +(: cnet_isa_dedc5059e7 (IsA spinelessness meekness) (STV 1.0 0.9091)) +(: cnet_isa_e545e0d632 (IsA spinet harpsichord) (STV 1.0 0.9091)) +(: cnet_isa_5fe49a5e31 (IsA spinet upright) (STV 1.0 0.9091)) +(: cnet_isa_2ffdfcbb1a (IsA spinnability quality) (STV 1.0 0.9091)) +(: cnet_isa_5f59742b02 (IsA spinnaker headsail) (STV 1.0 0.9091)) +(: cnet_isa_a54746559e (IsA spinnbarkeit spinnability) (STV 1.0 0.9091)) +(: cnet_isa_62f302eabd (IsA spinner fisherman_s_lure) (STV 1.0 0.9091)) +(: cnet_isa_9b575a4a37 (IsA spinner game_equipment) (STV 1.0 0.9091)) +(: cnet_isa_bb73611b12 (IsA spinner maker) (STV 1.0 0.9091)) +(: cnet_isa_6203585271 (IsA spinney brush) (STV 1.0 0.9091)) +(: cnet_isa_53bc5b9f39 (IsA spinning handicraft) (STV 1.0 0.9091)) +(: cnet_isa_9bdf0e7463 (IsA spinning_frame spinning_machine) (STV 1.0 0.9091)) +(: cnet_isa_5d51f30ea2 (IsA spinning_jenny spinning_machine) (STV 1.0 0.9091)) +(: cnet_isa_0a7b265109 (IsA spinning_machine textile_machine) (STV 1.0 0.9091)) +(: cnet_isa_a54109a22d (IsA spinning_rod fishing_rod) (STV 1.0 0.9091)) +(: cnet_isa_d1292be294 (IsA spinning_wheel spinning_machine) (STV 1.0 0.9091)) +(: cnet_isa_1cca5c62a9 (IsA spinocerebellar_disorder birth_defect) (STV 1.0 0.9091)) +(: cnet_isa_ddd65dd723 (IsA spinster unmarried_woman) (STV 1.0 0.9091)) +(: cnet_isa_d37eca6a25 (IsA spinsterhood marital_status) (STV 1.0 0.9091)) +(: cnet_isa_47f57be1d7 (IsA spinus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_182de4b282 (IsA spiny_dogfish dogfish) (STV 1.0 0.9091)) +(: cnet_isa_fbc346edc2 (IsA spiny_finned_fish teleost_fish) (STV 1.0 0.9091)) +(: cnet_isa_abf5722fca (IsA spiny_lizard iguanid) (STV 1.0 0.9091)) +(: cnet_isa_68d9ce6864 (IsA spiny_lobster lobster) (STV 1.0 0.9091)) +(: cnet_isa_7ce15866fe (IsA spiny_lobster shellfish) (STV 1.0 0.9091)) +(: cnet_isa_c2815750c1 (IsA spiny_puffer plectognath) (STV 1.0 0.9091)) +(: cnet_isa_2edb39714f (IsA spiny_softshell soft_shelled_turtle) (STV 1.0 0.9091)) +(: cnet_isa_06a9e3c890 (IsA spiny_talinum flame_flower) (STV 1.0 0.9091)) +(: cnet_isa_cc16c6a9c8 (IsA spiracle orifice) (STV 1.0 0.9091)) +(: cnet_isa_57a4f843d6 (IsA spiraea rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_57f6bb4311 (IsA spiral curve) (STV 1.0 0.9091)) +(: cnet_isa_11d9481d47 (IsA spiral rotation) (STV 1.0 0.9091)) +(: cnet_isa_4d0430d34f (IsA spiral decoration) (STV 1.0 0.9091)) +(: cnet_isa_15fece571a (IsA spiral economic_process) (STV 1.0 0.9091)) +(: cnet_isa_3e0363ff35 (IsA spiral_bandage oblique_bandage) (STV 1.0 0.9091)) +(: cnet_isa_329d754d35 (IsA spiral_galaxy galaxy) (STV 1.0 0.9091)) +(: cnet_isa_418d1f1f9b (IsA spiral_ratchet_screwdriver screwdriver) (STV 1.0 0.9091)) +(: cnet_isa_73db117d3e (IsA spiral_spring spring) (STV 1.0 0.9091)) +(: cnet_isa_686cdb8858 (IsA spiranthe monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_32154709e0 (IsA spirea astilbe) (STV 1.0 0.9091)) +(: cnet_isa_a4d97332f0 (IsA spirea shrub) (STV 1.0 0.9091)) +(: cnet_isa_e55db3a7f0 (IsA spirillaceae bacteria_family) (STV 1.0 0.9091)) +(: cnet_isa_d8bad55837 (IsA spirillum eubacteria) (STV 1.0 0.9091)) +(: cnet_isa_58912f005b (IsA spirit character) (STV 1.0 0.9091)) +(: cnet_isa_6490c7f8bc (IsA spirit spiritual_being) (STV 1.0 0.9091)) +(: cnet_isa_89d95d9501 (IsA spirit vital_principle) (STV 1.0 0.9091)) +(: cnet_isa_a7ace8c5d2 (IsA spirit atmosphere) (STV 1.0 0.9091)) +(: cnet_isa_5d3f8b4f76 (IsA spirit_gum adhesive_material) (STV 1.0 0.9091)) +(: cnet_isa_b89cf0eb9d (IsA spirit_lamp lamp) (STV 1.0 0.9091)) +(: cnet_isa_d55ecf3b68 (IsA spirit_rapper psychic) (STV 1.0 0.9091)) +(: cnet_isa_722b29efe8 (IsA spirit_stove stove) (STV 1.0 0.9091)) +(: cnet_isa_77b614662c (IsA spirit_world imaginary_place) (STV 1.0 0.9091)) +(: cnet_isa_a79caf6c48 (IsA spirit_of_ammonia solution) (STV 1.0 0.9091)) +(: cnet_isa_6b5fb7aa97 (IsA spirit_of_wine ethyl_alcohol) (STV 1.0 0.9091)) +(: cnet_isa_fe8c244d50 (IsA spiritual religious_song) (STV 1.0 0.9091)) +(: cnet_isa_0659d65b4e (IsA spiritual_being belief) (STV 1.0 0.9091)) +(: cnet_isa_5cfc7a26f3 (IsA spiritual_bouquet sympathy_card) (STV 1.0 0.9091)) +(: cnet_isa_b2d11dea8c (IsA spiritual_leader leader) (STV 1.0 0.9091)) +(: cnet_isa_2d0d617823 (IsA spiritual_world belief) (STV 1.0 0.9091)) +(: cnet_isa_1cc20ddb17 (IsA spiritualism belief) (STV 1.0 0.9091)) +(: cnet_isa_59e08980ed (IsA spiritualism theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_089a1e35f4 (IsA spirituality inwardness) (STV 1.0 0.9091)) +(: cnet_isa_fc17ce98a1 (IsA spiritualization change_of_state) (STV 1.0 0.9091)) +(: cnet_isa_f9cd503f5e (IsA spiritualty property) (STV 1.0 0.9091)) +(: cnet_isa_98364143f1 (IsA spirochaeta bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_d2cf683a53 (IsA spirochaetaceae bacteria_family) (STV 1.0 0.9091)) +(: cnet_isa_5ab9d4d483 (IsA spirochaetale animal_order) (STV 1.0 0.9091)) +(: cnet_isa_1d9e6ab206 (IsA spirochete eubacteria) (STV 1.0 0.9091)) +(: cnet_isa_813262b4ba (IsA spirodela monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_bfd66a5329 (IsA spirogram recording) (STV 1.0 0.9091)) +(: cnet_isa_fbe5a93959 (IsA spirograph measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_864d3ac325 (IsA spirogyra green_algae) (STV 1.0 0.9091)) +(: cnet_isa_4dc0f5c184 (IsA spirometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_1a153ccd55 (IsA spirometry measurement) (STV 1.0 0.9091)) +(: cnet_isa_2a2e41c03a (IsA spirula decapod) (STV 1.0 0.9091)) +(: cnet_isa_5494129d29 (IsA spirulidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_a0387813f9 (IsA spit expulsion) (STV 1.0 0.9091)) +(: cnet_isa_ac03112bca (IsA spit skewer) (STV 1.0 0.9091)) +(: cnet_isa_e66b346dd1 (IsA spit cape) (STV 1.0 0.9091)) +(: cnet_isa_1f2af58eed (IsA spit_and_polish orderliness) (STV 1.0 0.9091)) +(: cnet_isa_6c89fa9e52 (IsA spit_curl crimp) (STV 1.0 0.9091)) +(: cnet_isa_b553945772 (IsA spitball pitch) (STV 1.0 0.9091)) +(: cnet_isa_9d2898fe4c (IsA spitball projectile) (STV 1.0 0.9091)) +(: cnet_isa_8297b632c3 (IsA spitfire emotional_person) (STV 1.0 0.9091)) +(: cnet_isa_ac848f1e9c (IsA spitter person) (STV 1.0 0.9091)) +(: cnet_isa_a8f87f6e74 (IsA spitting dirty_habit) (STV 1.0 0.9091)) +(: cnet_isa_6ea03455ac (IsA spitting_image likeness) (STV 1.0 0.9091)) +(: cnet_isa_81d2a6d7c7 (IsA spittle_insect homopterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_ba4ebfe1fa (IsA spittoon receptacle) (STV 1.0 0.9091)) +(: cnet_isa_b871a23f6f (IsA spitz dog) (STV 1.0 0.9091)) +(: cnet_isa_de95a78685 (IsA spiv idler) (STV 1.0 0.9091)) +(: cnet_isa_42846dc2ec (IsA spizella bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_cb5cad4170 (IsA splanchnic_nerve nerve) (STV 1.0 0.9091)) +(: cnet_isa_14858cb4a4 (IsA splash wetting) (STV 1.0 0.9091)) +(: cnet_isa_cbe87f3914 (IsA splash spot) (STV 1.0 0.9091)) +(: cnet_isa_7fde125bb6 (IsA splash noise) (STV 1.0 0.9091)) +(: cnet_isa_93daee2d6a (IsA splash disturbance) (STV 1.0 0.9091)) +(: cnet_isa_88071f66f1 (IsA splashboard protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_b1f0f42d6a (IsA splashdown landing) (STV 1.0 0.9091)) +(: cnet_isa_1ee2c1d304 (IsA splasher protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_2d6e60a3a5 (IsA splat slat) (STV 1.0 0.9091)) +(: cnet_isa_5eda661912 (IsA splat splash) (STV 1.0 0.9091)) +(: cnet_isa_63c3c26746 (IsA splay bevel) (STV 1.0 0.9091)) +(: cnet_isa_8b2b88becb (IsA spleen lymphatic_tissue) (STV 1.0 0.9091)) +(: cnet_isa_b96b9076e1 (IsA spleenwort fern) (STV 1.0 0.9091)) +(: cnet_isa_d5235305a7 (IsA splenectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_18baa16b7f (IsA splenic_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_da117e85f9 (IsA splenitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_1c0c8314c2 (IsA splenius_muscle skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_784a3926ee (IsA splenomegaly hypertrophy) (STV 1.0 0.9091)) +(: cnet_isa_077ba2440e (IsA splice junction) (STV 1.0 0.9091)) +(: cnet_isa_0f51c7c6f1 (IsA splicer mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_3b52d6d1f7 (IsA splicer woodworker) (STV 1.0 0.9091)) +(: cnet_isa_0585b20a8a (IsA splicer worker) (STV 1.0 0.9091)) +(: cnet_isa_1bd130fd20 (IsA spline strip) (STV 1.0 0.9091)) +(: cnet_isa_b92bf19878 (IsA splint mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_19f14ac027 (IsA splint paring) (STV 1.0 0.9091)) +(: cnet_isa_7a77b73d42 (IsA splint_bone bone) (STV 1.0 0.9091)) +(: cnet_isa_5f8d59d480 (IsA splinter bit) (STV 1.0 0.9091)) +(: cnet_isa_a7f753f21e (IsA splinter_group faction) (STV 1.0 0.9091)) +(: cnet_isa_3543dfa498 (IsA split acrobatic_stunt) (STV 1.0 0.9091)) +(: cnet_isa_0d8dae07a9 (IsA split increase) (STV 1.0 0.9091)) +(: cnet_isa_05ae62e536 (IsA split frozen_dessert) (STV 1.0 0.9091)) +(: cnet_isa_8131d1093e (IsA split crack) (STV 1.0 0.9091)) +(: cnet_isa_e7cf6f0221 (IsA split share) (STV 1.0 0.9091)) +(: cnet_isa_59afc68836 (IsA split bottle) (STV 1.0 0.9091)) +(: cnet_isa_99a95d8218 (IsA split formation) (STV 1.0 0.9091)) +(: cnet_isa_d9d9182a1c (IsA split_brain_technique brain_surgery) (STV 1.0 0.9091)) +(: cnet_isa_9b2c59eb89 (IsA split_decision decision) (STV 1.0 0.9091)) +(: cnet_isa_5d839256cf (IsA split_end end) (STV 1.0 0.9091)) +(: cnet_isa_a235216227 (IsA split_half_correlation correlation_coefficient) (STV 1.0 0.9091)) +(: cnet_isa_bc95845741 (IsA split_infinitive infinitive) (STV 1.0 0.9091)) +(: cnet_isa_8fa08fecf2 (IsA split_pea green_pea) (STV 1.0 0.9091)) +(: cnet_isa_35459d3374 (IsA split_pea_soup soup) (STV 1.0 0.9091)) +(: cnet_isa_96c4504b0f (IsA split_personality dissociative_disorder) (STV 1.0 0.9091)) +(: cnet_isa_1f7c98dc3a (IsA split_rail rail) (STV 1.0 0.9091)) +(: cnet_isa_adbee83010 (IsA split_run print_run) (STV 1.0 0.9091)) +(: cnet_isa_e46fe4b817 (IsA split_shift shift) (STV 1.0 0.9091)) +(: cnet_isa_232fba24d3 (IsA split_ticket vote) (STV 1.0 0.9091)) +(: cnet_isa_454201eabf (IsA splitsville dissolution) (STV 1.0 0.9091)) +(: cnet_isa_5c6f4175df (IsA splitter taxonomist) (STV 1.0 0.9091)) +(: cnet_isa_cb4002f02b (IsA splitter worker) (STV 1.0 0.9091)) +(: cnet_isa_8065f7b649 (IsA splurge ostentation) (STV 1.0 0.9091)) +(: cnet_isa_eb2156e441 (IsA spodoptera arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_33612a6fbd (IsA spodoptera_exigua noctuid_moth) (STV 1.0 0.9091)) +(: cnet_isa_a8e9f23818 (IsA spodoptera_frugiperda noctuid_moth) (STV 1.0 0.9091)) +(: cnet_isa_e2d719886c (IsA spodumene mineral) (STV 1.0 0.9091)) +(: cnet_isa_9238d43c1e (IsA spoil injury) (STV 1.0 0.9091)) +(: cnet_isa_be76a4e527 (IsA spoil plundering) (STV 1.0 0.9091)) +(: cnet_isa_3f73b75f2c (IsA spoil stolen_property) (STV 1.0 0.9091)) +(: cnet_isa_55503d80f2 (IsA spoilage decay) (STV 1.0 0.9091)) +(: cnet_isa_c6704cdd49 (IsA spoilage indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_99155589a0 (IsA spoiler airfoil) (STV 1.0 0.9091)) +(: cnet_isa_2300fa4ad3 (IsA spoiler campaigner) (STV 1.0 0.9091)) +(: cnet_isa_eec5319887 (IsA spoil_system system) (STV 1.0 0.9091)) +(: cnet_isa_e1abf929be (IsA spoilsport unwelcome_person) (STV 1.0 0.9091)) +(: cnet_isa_2495f449fb (IsA spoke support) (STV 1.0 0.9091)) +(: cnet_isa_b4013aa4f5 (IsA spokeshave plane) (STV 1.0 0.9091)) +(: cnet_isa_4efdfb8b45 (IsA spokesman spokesperson) (STV 1.0 0.9091)) +(: cnet_isa_2f447e232d (IsA spokesperson advocate) (STV 1.0 0.9091)) +(: cnet_isa_84504ceb08 (IsA spokeswoman spokesperson) (STV 1.0 0.9091)) +(: cnet_isa_9b7cf52b0c (IsA spoliation destruction) (STV 1.0 0.9091)) +(: cnet_isa_95338d7aa8 (IsA spondee metrical_foot) (STV 1.0 0.9091)) +(: cnet_isa_155ca46f47 (IsA spondia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2af653be0c (IsA spondylarthritis arthritis) (STV 1.0 0.9091)) +(: cnet_isa_7d21e0d67a (IsA spondylitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_1f0260474c (IsA spondylolisthesis dislocation) (STV 1.0 0.9091)) +(: cnet_isa_d0c0bdd617 (IsA sponge invertebrate) (STV 1.0 0.9091)) +(: cnet_isa_770b21bc42 (IsA sponge absorbent_material) (STV 1.0 0.9091)) +(: cnet_isa_0c62d70c0a (IsA sponge_bath washup) (STV 1.0 0.9091)) +(: cnet_isa_0409b1f2de (IsA sponge_cake cake) (STV 1.0 0.9091)) +(: cnet_isa_f2baf854c5 (IsA sponge_cloth fabric) (STV 1.0 0.9091)) +(: cnet_isa_08b2ce3412 (IsA sponge_genus genus) (STV 1.0 0.9091)) +(: cnet_isa_15deabbf32 (IsA sponge_mop swab) (STV 1.0 0.9091)) +(: cnet_isa_828d06a539 (IsA spongefly neuropteron) (STV 1.0 0.9091)) +(: cnet_isa_ad8fe14cb8 (IsA sponger workman) (STV 1.0 0.9091)) +(: cnet_isa_2faf70e0ca (IsA sponginess porosity) (STV 1.0 0.9091)) +(: cnet_isa_9db4cea3c6 (IsA spongioblast columnar_cell) (STV 1.0 0.9091)) +(: cnet_isa_67de49eb52 (IsA sponsorship support) (STV 1.0 0.9091)) +(: cnet_isa_0392fd9429 (IsA spontaneity naturalness) (STV 1.0 0.9091)) +(: cnet_isa_6e42e13fa2 (IsA spontaneous_abortion abortion) (STV 1.0 0.9091)) +(: cnet_isa_cc3b658ac6 (IsA spontaneous_combustion ignition) (STV 1.0 0.9091)) +(: cnet_isa_950f56d901 (IsA spoon utensil) (STV 1.0 0.9339)) +(: cnet_isa_2ef036bfae (IsA spoon container) (STV 1.0 0.9091)) +(: cnet_isa_d432f2b7d9 (IsA spoon cutlery) (STV 1.0 0.9091)) +(: cnet_isa_943f1b853b (IsA spoon wood) (STV 1.0 0.9091)) +(: cnet_isa_80306388a1 (IsA spoon containerful) (STV 1.0 0.9091)) +(: cnet_isa_0bcf4242c0 (IsA spoon_bread cornbread) (STV 1.0 0.9091)) +(: cnet_isa_e87cedb3ec (IsA spoonbill wading_bird) (STV 1.0 0.9091)) +(: cnet_isa_d0d1952079 (IsA spoonerism slip_of_tongue) (STV 1.0 0.9091)) +(: cnet_isa_31e51a0cfe (IsA spoonfeeding feeding) (STV 1.0 0.9091)) +(: cnet_isa_730fff252a (IsA spoonfeeding teaching) (STV 1.0 0.9091)) +(: cnet_isa_7758a7e5c7 (IsA spoor trail) (STV 1.0 0.9091)) +(: cnet_isa_f332445880 (IsA sporangiophore stalk) (STV 1.0 0.9091)) +(: cnet_isa_848ee7aabe (IsA sporangium reproductive_structure) (STV 1.0 0.9091)) +(: cnet_isa_3cc458c6ef (IsA spore agamete) (STV 1.0 0.9091)) +(: cnet_isa_d725eb7c93 (IsA spore_mother_cell mother_cell) (STV 1.0 0.9091)) +(: cnet_isa_42f4d55973 (IsA spork combination_of_spoon) (STV 1.0 0.9091)) +(: cnet_isa_01f9b871e5 (IsA sporobolus monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a3a5786c9e (IsA sporocarp reproductive_structure) (STV 1.0 0.9091)) +(: cnet_isa_67b552058d (IsA sporophore reproductive_structure) (STV 1.0 0.9091)) +(: cnet_isa_11d41554b9 (IsA sporophyll leaf) (STV 1.0 0.9091)) +(: cnet_isa_dc807cdff2 (IsA sporophyte plant) (STV 1.0 0.9091)) +(: cnet_isa_e27dc25823 (IsA sporotrichosis fungal_infection) (STV 1.0 0.9091)) +(: cnet_isa_117b8a8982 (IsA sporozoa class) (STV 1.0 0.9091)) +(: cnet_isa_b5174ebb0e (IsA sporozoan protozoan) (STV 1.0 0.9091)) +(: cnet_isa_ad9dd0f0e2 (IsA sporozoite sporozoan) (STV 1.0 0.9091)) +(: cnet_isa_a8fd3f9f24 (IsA sporran pouch) (STV 1.0 0.9091)) +(: cnet_isa_2427f91c31 (IsA sport game) (STV 1.0 0.9524)) +(: cnet_isa_776259ecf2 (IsA sport diversion) (STV 1.0 0.9091)) +(: cnet_isa_fad0328c69 (IsA sport occupation) (STV 1.0 0.9091)) +(: cnet_isa_a4f34b4fd7 (IsA sport athlete) (STV 1.0 0.9091)) +(: cnet_isa_e3d4f648fc (IsA sport person) (STV 1.0 0.9091)) +(: cnet_isa_277255b5bd (IsA sport vacationer) (STV 1.0 0.9091)) +(: cnet_isa_ce1ba42077 (IsA sport_kite kite) (STV 1.0 0.9091)) +(: cnet_isa_041d480bad (IsA sport_utility car) (STV 1.0 0.9091)) +(: cnet_isa_96dba29df1 (IsA sporting_dog hunting_dog) (STV 1.0 0.9091)) +(: cnet_isa_bcb8f97f14 (IsA sporting_good commodity) (STV 1.0 0.9091)) +(: cnet_isa_d66bf8aa6b (IsA sporting_good sport_equipment) (STV 1.0 0.9091)) +(: cnet_isa_910b6a3069 (IsA sporting_life gambling) (STV 1.0 0.9091)) +(: cnet_isa_b19d75c155 (IsA sporting_man amateur) (STV 1.0 0.9091)) +(: cnet_isa_d0b69e78e2 (IsA sporting_man gambler) (STV 1.0 0.9091)) +(: cnet_isa_ef6c6cd254 (IsA sport_announcer announcer) (STV 1.0 0.9091)) +(: cnet_isa_d11a0f4a65 (IsA sport_car car) (STV 1.0 0.9091)) +(: cnet_isa_ed87752486 (IsA sport_desk editorial_department) (STV 1.0 0.9091)) +(: cnet_isa_6a1116c873 (IsA sport_editor newspaper_editor) (STV 1.0 0.9091)) +(: cnet_isa_e86be4d93d (IsA sport_equipment equipment) (STV 1.0 0.9091)) +(: cnet_isa_73a3ae6e29 (IsA sport_fan enthusiast) (STV 1.0 0.9091)) +(: cnet_isa_cb40a907b5 (IsA sport_implement implement) (STV 1.0 0.9091)) +(: cnet_isa_d531930588 (IsA sport_medicine medicine) (STV 1.0 0.9091)) +(: cnet_isa_7831ac7db6 (IsA sport_page page) (STV 1.0 0.9091)) +(: cnet_isa_75964c5c31 (IsA sport_section section) (STV 1.0 0.9091)) +(: cnet_isa_49f16175f9 (IsA sport_writer journalist) (STV 1.0 0.9091)) +(: cnet_isa_d5042188f8 (IsA sportscast newscast) (STV 1.0 0.9091)) +(: cnet_isa_0004f79b3e (IsA sportsmanship fairness) (STV 1.0 0.9091)) +(: cnet_isa_1765e0b76b (IsA sportswear attire) (STV 1.0 0.9091)) +(: cnet_isa_80c7892989 (IsA spot place_of_business) (STV 1.0 0.9091)) +(: cnet_isa_9f5adeb17f (IsA spot playing_card) (STV 1.0 0.9091)) +(: cnet_isa_b5e85e742c (IsA spot marking) (STV 1.0 0.9091)) +(: cnet_isa_54ac8dea36 (IsA spot marker) (STV 1.0 0.9091)) +(: cnet_isa_a638f96f87 (IsA spot section) (STV 1.0 0.9091)) +(: cnet_isa_bd98df3d7a (IsA spot small_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_c8a51fa689 (IsA spot_check check) (STV 1.0 0.9091)) +(: cnet_isa_5b31914e65 (IsA spot_jamming jamming) (STV 1.0 0.9091)) +(: cnet_isa_3b4b371a80 (IsA spot_market commodity_exchange) (STV 1.0 0.9091)) +(: cnet_isa_aafb7a7fa2 (IsA spot_pass pass) (STV 1.0 0.9091)) +(: cnet_isa_ebf7b88552 (IsA spot_price price) (STV 1.0 0.9091)) +(: cnet_isa_d4198b2bb5 (IsA spot_weld weld) (STV 1.0 0.9091)) +(: cnet_isa_d93e833a43 (IsA spot_welder welder) (STV 1.0 0.9091)) +(: cnet_isa_f310043245 (IsA spot_welding welding) (STV 1.0 0.9091)) +(: cnet_isa_9dd6367e6d (IsA spotlessness cleanness) (STV 1.0 0.9091)) +(: cnet_isa_674ac451a8 (IsA spotlight lamp) (STV 1.0 0.9091)) +(: cnet_isa_996d29ed29 (IsA spotted_antbird antbird) (STV 1.0 0.9091)) +(: cnet_isa_8b54e17954 (IsA spotted_barramundi fish_specy) (STV 1.0 0.9091)) +(: cnet_isa_f0c230df6c (IsA spotted_coral_root coral_root) (STV 1.0 0.9091)) +(: cnet_isa_b11a08ed01 (IsA spotted_cowbane poisonous_plant) (STV 1.0 0.9091)) +(: cnet_isa_a925134df4 (IsA spotted_crake crake) (STV 1.0 0.9091)) +(: cnet_isa_d91ad8a362 (IsA spotted_dick suet_pudding) (STV 1.0 0.9091)) +(: cnet_isa_ba8176aa53 (IsA spotted_eagle_ray eagle_ray) (STV 1.0 0.9091)) +(: cnet_isa_a192134964 (IsA spotted_fever rickettsial_disease) (STV 1.0 0.9091)) +(: cnet_isa_e2b89011b7 (IsA spotted_flycatcher old_world_flycatcher) (STV 1.0 0.9091)) +(: cnet_isa_875c95c868 (IsA spotted_gum eucalyptus) (STV 1.0 0.9091)) +(: cnet_isa_d863b7fa4c (IsA spotted_hyena hyena) (STV 1.0 0.9091)) +(: cnet_isa_7390be5502 (IsA spotted_lynx lynx) (STV 1.0 0.9091)) +(: cnet_isa_128d627d92 (IsA spotted_owl owl) (STV 1.0 0.9091)) +(: cnet_isa_2fb912097d (IsA spotted_salamander ambystomid) (STV 1.0 0.9091)) +(: cnet_isa_c181604277 (IsA spotted_salamander salamander) (STV 1.0 0.9091)) +(: cnet_isa_d05c26399e (IsA spotted_sandpiper sandpiper) (STV 1.0 0.9091)) +(: cnet_isa_dbb5937f13 (IsA spotted_skunk skunk) (STV 1.0 0.9091)) +(: cnet_isa_a204c46aa5 (IsA spotted_sunfish freshwater_bream) (STV 1.0 0.9091)) +(: cnet_isa_2e816de8b5 (IsA spotted_weakfish sea_trout) (STV 1.0 0.9091)) +(: cnet_isa_63377b38a7 (IsA spotter employee) (STV 1.0 0.9091)) +(: cnet_isa_2fb1c676cc (IsA spouse domestic_partner) (STV 1.0 0.9091)) +(: cnet_isa_560d9f8778 (IsA spouse relative) (STV 1.0 0.9091)) +(: cnet_isa_10f67c0d10 (IsA spout opening) (STV 1.0 0.9091)) +(: cnet_isa_00a259d232 (IsA spouter whale) (STV 1.0 0.9091)) +(: cnet_isa_5eb945a358 (IsA spouter oil_well) (STV 1.0 0.9091)) +(: cnet_isa_434d17eaca (IsA sprachgefuhl feeling) (STV 1.0 0.9091)) +(: cnet_isa_957f4a58cc (IsA sprag chock) (STV 1.0 0.9091)) +(: cnet_isa_81c2231a9a (IsA spraguea caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c2ec184ca1 (IsA sprain wrench) (STV 1.0 0.9091)) +(: cnet_isa_80f26bc286 (IsA sprat herring) (STV 1.0 0.9091)) +(: cnet_isa_66f5b9b828 (IsA sprawl position) (STV 1.0 0.9091)) +(: cnet_isa_518900f8e4 (IsA sprawler person) (STV 1.0 0.9091)) +(: cnet_isa_da2254fe0f (IsA spray flower_arrangement) (STV 1.0 0.9091)) +(: cnet_isa_ccf8a0c232 (IsA spray jet) (STV 1.0 0.9091)) +(: cnet_isa_530af403c4 (IsA spray small_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_4cecf94b80 (IsA spray pesticide) (STV 1.0 0.9091)) +(: cnet_isa_3971429d4a (IsA spray water_vapor) (STV 1.0 0.9091)) +(: cnet_isa_41f53b4024 (IsA spray_gun applicator) (STV 1.0 0.9091)) +(: cnet_isa_3c5c7bd936 (IsA spray_paint paint) (STV 1.0 0.9091)) +(: cnet_isa_04d86d1226 (IsA spray_painting painting) (STV 1.0 0.9091)) +(: cnet_isa_bd97cb9953 (IsA spray_painting spraying) (STV 1.0 0.9091)) +(: cnet_isa_3e2ff2bddc (IsA spray_painting_graffiti vandelism) (STV 1.0 0.9091)) +(: cnet_isa_91dad93244 (IsA sprayer laborer) (STV 1.0 0.9091)) +(: cnet_isa_13dd86f350 (IsA spraying application) (STV 1.0 0.9091)) +(: cnet_isa_2d1d9ccd8b (IsA spread extension) (STV 1.0 0.9091)) +(: cnet_isa_b9393d314b (IsA spread girth) (STV 1.0 0.9091)) +(: cnet_isa_0ef1fc12b0 (IsA spread page) (STV 1.0 0.9091)) +(: cnet_isa_9868b7ac5a (IsA spread change_of_location) (STV 1.0 0.9091)) +(: cnet_isa_89ca370f95 (IsA spread condiment) (STV 1.0 0.9091)) +(: cnet_isa_97f27a8166 (IsA spread_eagle figure) (STV 1.0 0.9091)) +(: cnet_isa_c8e2d562ba (IsA spread_eagle emblem) (STV 1.0 0.9091)) +(: cnet_isa_3dbeb961e0 (IsA spreader hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_83e58e212f (IsA spreading_fleabane fleabane) (STV 1.0 0.9091)) +(: cnet_isa_c91703ba3a (IsA spreading_pogonia orchid) (STV 1.0 0.9091)) +(: cnet_isa_9c2477462a (IsA spreadsheet program) (STV 1.0 0.9091)) +(: cnet_isa_47cfd5cd55 (IsA sprechgesang voice) (STV 1.0 0.9091)) +(: cnet_isa_667edab6ae (IsA spree intemperance) (STV 1.0 0.9091)) +(: cnet_isa_01f194d271 (IsA spree_killer serial_killer) (STV 1.0 0.9091)) +(: cnet_isa_0626457b58 (IsA sprig decoration) (STV 1.0 0.9091)) +(: cnet_isa_0c19873e3d (IsA spring elastic_device) (STV 1.0 0.9091)) +(: cnet_isa_ced5e7009b (IsA spring beginning) (STV 1.0 0.9091)) +(: cnet_isa_0e14487910 (IsA spring geological_formation) (STV 1.0 0.9091)) +(: cnet_isa_24f851b854 (IsA spring season) (STV 1.0 0.9091)) +(: cnet_isa_2a0b9c59c7 (IsA spring_and_winter both_season) (STV 1.0 0.9339)) +(: cnet_isa_6f5fc1b027 (IsA spring_balance balance) (STV 1.0 0.9091)) +(: cnet_isa_c42cf50456 (IsA spring_beauty flower) (STV 1.0 0.9091)) +(: cnet_isa_4b2c1fa7e3 (IsA spring_break respite) (STV 1.0 0.9091)) +(: cnet_isa_f6054377a4 (IsA spring_cankerworm cankerworm) (STV 1.0 0.9091)) +(: cnet_isa_4be8e6300a (IsA spring_chicken chicken) (STV 1.0 0.9091)) +(: cnet_isa_6f390e3146 (IsA spring_cleaning cleaning) (STV 1.0 0.9091)) +(: cnet_isa_20a6c8e4b8 (IsA spring_cress bittercress) (STV 1.0 0.9091)) +(: cnet_isa_79b5bb142d (IsA spring_mattress mattress) (STV 1.0 0.9091)) +(: cnet_isa_6c45907316 (IsA spring_peeper tree_toad) (STV 1.0 0.9091)) +(: cnet_isa_dfd04898f6 (IsA spring_squill scilla) (STV 1.0 0.9091)) +(: cnet_isa_7279fb9848 (IsA spring_training preseason) (STV 1.0 0.9091)) +(: cnet_isa_148bfd3b35 (IsA spring_vetch vetch) (STV 1.0 0.9091)) +(: cnet_isa_0da1e876b1 (IsA spring_vetchling vetchling) (STV 1.0 0.9091)) +(: cnet_isa_cdfa64b44a (IsA spring_water water) (STV 1.0 0.9091)) +(: cnet_isa_46a9a50051 (IsA springboard beginning) (STV 1.0 0.9091)) +(: cnet_isa_f1691e12c0 (IsA springboard board) (STV 1.0 0.9091)) +(: cnet_isa_8ff396120c (IsA springbok gazelle) (STV 1.0 0.9091)) +(: cnet_isa_d622626ee8 (IsA springer cow) (STV 1.0 0.9091)) +(: cnet_isa_9b3a8bc256 (IsA springer stone) (STV 1.0 0.9091)) +(: cnet_isa_7352dae6b6 (IsA springer_spaniel spaniel) (STV 1.0 0.9091)) +(: cnet_isa_bb1e419950 (IsA springtide flush) (STV 1.0 0.9091)) +(: cnet_isa_0b0b4155ac (IsA springtide high_tide) (STV 1.0 0.9091)) +(: cnet_isa_3251ea265d (IsA sprinkle watering) (STV 1.0 0.9091)) +(: cnet_isa_a174eb5180 (IsA sprinkler mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_2d54f3c816 (IsA sprinkler_system system) (STV 1.0 0.9091)) +(: cnet_isa_fc192ff408 (IsA sprinter runner) (STV 1.0 0.9091)) +(: cnet_isa_5d042bebc1 (IsA sprit spar) (STV 1.0 0.9091)) +(: cnet_isa_eb701adf98 (IsA sprite soda) (STV 1.0 0.9454)) +(: cnet_isa_396670d5b9 (IsA sprite soft_drink) (STV 1.0 0.9091)) +(: cnet_isa_07f6a71554 (IsA sprite atmospheric_electricity) (STV 1.0 0.9091)) +(: cnet_isa_f78c1417e4 (IsA spritsail fore_and_aft_sail) (STV 1.0 0.9091)) +(: cnet_isa_00d7cf76f8 (IsA spritz jet) (STV 1.0 0.9091)) +(: cnet_isa_2e8a0febfd (IsA spritzer mixed_drink) (STV 1.0 0.9091)) +(: cnet_isa_3c15d9cbd4 (IsA sprocket roller) (STV 1.0 0.9091)) +(: cnet_isa_5dfa61e453 (IsA sprocket wheel) (STV 1.0 0.9091)) +(: cnet_isa_63ac787c7d (IsA sprog recruit) (STV 1.0 0.9091)) +(: cnet_isa_8c6774d230 (IsA sprog child) (STV 1.0 0.9091)) +(: cnet_isa_eaf8c90197 (IsA sprout green) (STV 1.0 0.9091)) +(: cnet_isa_97e0abf028 (IsA sprout plant_organ) (STV 1.0 0.9091)) +(: cnet_isa_ff58b4e99b (IsA spruce conifer) (STV 1.0 0.9091)) +(: cnet_isa_134fd0b6aa (IsA spruce wood) (STV 1.0 0.9091)) +(: cnet_isa_b6448231ba (IsA spruce_bark_beetle bark_beetle) (STV 1.0 0.9091)) +(: cnet_isa_53afccb851 (IsA spruce_beer brew) (STV 1.0 0.9091)) +(: cnet_isa_a92c35971a (IsA spruce_gall_aphid adelgid) (STV 1.0 0.9091)) +(: cnet_isa_4d4b412d7a (IsA spruce_grouse grouse) (STV 1.0 0.9091)) +(: cnet_isa_922013b0ac (IsA spruce_pine pine) (STV 1.0 0.9091)) +(: cnet_isa_ca75e34782 (IsA sprue disorder) (STV 1.0 0.9091)) +(: cnet_isa_fe9238bdf4 (IsA sprung_rhythm poetic_rhythm) (STV 1.0 0.9091)) +(: cnet_isa_a22b8972e7 (IsA spud hand_shovel) (STV 1.0 0.9091)) +(: cnet_isa_b0de437ec8 (IsA spume foam) (STV 1.0 0.9091)) +(: cnet_isa_224fb4c953 (IsA spun_yarn small_stuff) (STV 1.0 0.9091)) +(: cnet_isa_9aff8a4ec1 (IsA spur prod) (STV 1.0 0.9091)) +(: cnet_isa_bf985f0ff3 (IsA spur plant_process) (STV 1.0 0.9091)) +(: cnet_isa_38ad24943c (IsA spur projection) (STV 1.0 0.9091)) +(: cnet_isa_18b05f3b05 (IsA spur_blight blight) (STV 1.0 0.9091)) +(: cnet_isa_7cd7568a3e (IsA spur_gear gear) (STV 1.0 0.9091)) +(: cnet_isa_c5b56fced4 (IsA spurge shrub) (STV 1.0 0.9091)) +(: cnet_isa_af2096ab8e (IsA spurge_laurel daphne) (STV 1.0 0.9091)) +(: cnet_isa_bd0cea7274 (IsA spurge_nettle herb) (STV 1.0 0.9091)) +(: cnet_isa_b0c6789d4d (IsA spurious_correlation correlation) (STV 1.0 0.9091)) +(: cnet_isa_b612b93aa8 (IsA spuriousness falsity) (STV 1.0 0.9091)) +(: cnet_isa_8908e8973e (IsA spurner person) (STV 1.0 0.9091)) +(: cnet_isa_45ae8203ca (IsA spurred_gentian gentian) (STV 1.0 0.9091)) +(: cnet_isa_558d6313e4 (IsA sputnik satellite) (STV 1.0 0.9091)) +(: cnet_isa_872222a2c1 (IsA sputter utterance) (STV 1.0 0.9091)) +(: cnet_isa_de4a785636 (IsA spy secret_agent) (STV 1.0 0.9091)) +(: cnet_isa_91ff077d5a (IsA spy spectator) (STV 1.0 0.9091)) +(: cnet_isa_10b91871c1 (IsA spy_satellite satellite) (STV 1.0 0.9091)) +(: cnet_isa_5b0c5d08c2 (IsA spyeria arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_1a18bddf2b (IsA spying intelligence) (STV 1.0 0.9091)) +(: cnet_isa_5682ff7c05 (IsA spying watch) (STV 1.0 0.9091)) +(: cnet_isa_112da2bd44 (IsA spymaster master) (STV 1.0 0.9091)) +(: cnet_isa_584b19b9ba (IsA spyware software) (STV 1.0 0.9091)) +(: cnet_isa_e108ea0482 (IsA squab pigeon) (STV 1.0 0.9091)) +(: cnet_isa_94367b1cbf (IsA squab sofa) (STV 1.0 0.9091)) +(: cnet_isa_fffd23b7d2 (IsA squab poultry) (STV 1.0 0.9091)) +(: cnet_isa_c6385978a5 (IsA squabbler malcontent) (STV 1.0 0.9091)) +(: cnet_isa_36f61123e7 (IsA squad army_unit) (STV 1.0 0.9091)) +(: cnet_isa_becf7e3740 (IsA squad_room room) (STV 1.0 0.9091)) +(: cnet_isa_6c1fe103cf (IsA squadron air_unit) (STV 1.0 0.9091)) +(: cnet_isa_9009b8e3a1 (IsA squadron cavalry) (STV 1.0 0.9091)) +(: cnet_isa_519efe7d8a (IsA squadron naval_unit) (STV 1.0 0.9091)) +(: cnet_isa_68b7682ade (IsA squalidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_5c9594800a (IsA squall wind) (STV 1.0 0.9091)) +(: cnet_isa_78a5ff4150 (IsA squall_line cold_front) (STV 1.0 0.9091)) +(: cnet_isa_eb0d53a8fa (IsA squalus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_86cb88bb80 (IsA squama scale) (STV 1.0 0.9091)) +(: cnet_isa_64823d6023 (IsA squamata animal_order) (STV 1.0 0.9091)) +(: cnet_isa_3aba64e75b (IsA squamous_cell epithelial_cell) (STV 1.0 0.9091)) +(: cnet_isa_f448dd1032 (IsA squamule scale) (STV 1.0 0.9091)) +(: cnet_isa_cb17156e96 (IsA squandering waste) (STV 1.0 0.9091)) +(: cnet_isa_9e168e1284 (IsA squandermania squandering) (STV 1.0 0.9091)) +(: cnet_isa_d83020c5a5 (IsA square rectangle) (STV 1.0 0.9091)) +(: cnet_isa_3b519c3dbb (IsA square shape) (STV 1.0 0.9572)) +(: cnet_isa_b7bb5c7510 (IsA square artifact) (STV 1.0 0.9091)) +(: cnet_isa_4ec881deb0 (IsA square hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_0241b65bc1 (IsA square regular_polygon) (STV 1.0 0.9091)) +(: cnet_isa_c41a9ad8a0 (IsA square conservative) (STV 1.0 0.9091)) +(: cnet_isa_79fef0d9ca (IsA square simpleton) (STV 1.0 0.9091)) +(: cnet_isa_834e3f13e2 (IsA square number) (STV 1.0 0.9091)) +(: cnet_isa_2df584c422 (IsA square_bashing military_drill) (STV 1.0 0.9091)) +(: cnet_isa_d6d42730fa (IsA square_dance country_dance) (STV 1.0 0.9091)) +(: cnet_isa_fc620e5489 (IsA square_dance_music folk_music) (STV 1.0 0.9091)) +(: cnet_isa_ebf32b2d81 (IsA square_dancer folk_dancer) (STV 1.0 0.9091)) +(: cnet_isa_c427ec1ac0 (IsA square_foot area_unit) (STV 1.0 0.9091)) +(: cnet_isa_d2383a2c3b (IsA square_inch area_unit) (STV 1.0 0.9091)) +(: cnet_isa_a707d7f8aa (IsA square_knot knot) (STV 1.0 0.9091)) +(: cnet_isa_3ad5616f2e (IsA square_matrix matrix) (STV 1.0 0.9091)) +(: cnet_isa_606cb710e3 (IsA square_meal meal) (STV 1.0 0.9091)) +(: cnet_isa_fd766d76a7 (IsA square_meter area_unit) (STV 1.0 0.9091)) +(: cnet_isa_c22ef738f1 (IsA square_mile area_unit) (STV 1.0 0.9091)) +(: cnet_isa_18c9d652cf (IsA square_nut nut) (STV 1.0 0.9091)) +(: cnet_isa_b27f7d527a (IsA square_one situation) (STV 1.0 0.9091)) +(: cnet_isa_a54a8edcc0 (IsA square_rigger sailing_vessel) (STV 1.0 0.9091)) +(: cnet_isa_e7f5c1a0ba (IsA square_root root) (STV 1.0 0.9091)) +(: cnet_isa_e4c849a901 (IsA square_sail sail) (STV 1.0 0.9091)) +(: cnet_isa_5327e0a378 (IsA square_shooter good_person) (STV 1.0 0.9091)) +(: cnet_isa_8bad89afa4 (IsA square_yard area_unit) (STV 1.0 0.9091)) +(: cnet_isa_923b5d78d2 (IsA squareness rectangularity) (STV 1.0 0.9091)) +(: cnet_isa_0b9d804700 (IsA squaretail scombroid) (STV 1.0 0.9091)) +(: cnet_isa_b84fc7f1c9 (IsA squash sport) (STV 1.0 0.9339)) +(: cnet_isa_11e3b94709 (IsA squash court_game) (STV 1.0 0.9091)) +(: cnet_isa_913bac884b (IsA squash vegetable) (STV 1.0 0.9091)) +(: cnet_isa_506d8c6d9d (IsA squash vine) (STV 1.0 0.9091)) +(: cnet_isa_55e50525c3 (IsA squash_ball ball) (STV 1.0 0.9091)) +(: cnet_isa_77e2c85a53 (IsA squash_bug coreid_bug) (STV 1.0 0.9091)) +(: cnet_isa_12a68b6646 (IsA squash_court court) (STV 1.0 0.9091)) +(: cnet_isa_3fcca58e6d (IsA squash_pie pie) (STV 1.0 0.9091)) +(: cnet_isa_1975afd0fd (IsA squash_racket racket) (STV 1.0 0.9091)) +(: cnet_isa_e80b56d5ad (IsA squat motion) (STV 1.0 0.9091)) +(: cnet_isa_ab4360a10a (IsA squatina fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_8f43c3bd17 (IsA squatinidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_723044d55e (IsA squatness lowness) (STV 1.0 0.9091)) +(: cnet_isa_29331a28e4 (IsA squatter intruder) (STV 1.0 0.9091)) +(: cnet_isa_867857a9a1 (IsA squatter settler) (STV 1.0 0.9091)) +(: cnet_isa_459c9fed9a (IsA squaw native_american) (STV 1.0 0.9091)) +(: cnet_isa_978a08a08d (IsA squaw_grass liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_76fc682f1d (IsA squaw_man white_man) (STV 1.0 0.9091)) +(: cnet_isa_c0d9be8bcd (IsA squawbush sumac) (STV 1.0 0.9091)) +(: cnet_isa_8510a34dc9 (IsA squawk noise) (STV 1.0 0.9091)) +(: cnet_isa_549ada4599 (IsA squawk_box loudspeaker) (STV 1.0 0.9091)) +(: cnet_isa_d4a127480e (IsA squeak noise) (STV 1.0 0.9091)) +(: cnet_isa_582cd8530c (IsA squeaker artifact) (STV 1.0 0.9091)) +(: cnet_isa_b3cfc6eb18 (IsA squeal howl) (STV 1.0 0.9091)) +(: cnet_isa_812dca3a36 (IsA squeamishness fastidiousness) (STV 1.0 0.9091)) +(: cnet_isa_53b203517d (IsA squeegee cleaning_implement) (STV 1.0 0.9091)) +(: cnet_isa_e8710c5a7d (IsA squeeze compression) (STV 1.0 0.9091)) +(: cnet_isa_7e21488bf2 (IsA squeeze constriction) (STV 1.0 0.9091)) +(: cnet_isa_75a3823818 (IsA squeeze movement) (STV 1.0 0.9091)) +(: cnet_isa_de05e629a7 (IsA squeeze lover) (STV 1.0 0.9091)) +(: cnet_isa_ff429e8f8c (IsA squeeze loss) (STV 1.0 0.9091)) +(: cnet_isa_901b232984 (IsA squeeze_play baseball_play) (STV 1.0 0.9091)) +(: cnet_isa_1aaa43593b (IsA squeezer kitchen_utensil) (STV 1.0 0.9091)) +(: cnet_isa_693b581a37 (IsA squelch_circuit circuit) (STV 1.0 0.9091)) +(: cnet_isa_2cacc5574d (IsA squib firework) (STV 1.0 0.9091)) +(: cnet_isa_bac1946396 (IsA squid decapod) (STV 1.0 0.9091)) +(: cnet_isa_86521bb215 (IsA squid seafood) (STV 1.0 0.9091)) +(: cnet_isa_f5931c2b59 (IsA squiggle line) (STV 1.0 0.9091)) +(: cnet_isa_991a92f73c (IsA squiggle scribble) (STV 1.0 0.9091)) +(: cnet_isa_a3ded8627b (IsA squill bulb) (STV 1.0 0.9091)) +(: cnet_isa_663fbea96e (IsA squilla mantis_shrimp) (STV 1.0 0.9091)) +(: cnet_isa_e07d903201 (IsA squillidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_6fd447b0ef (IsA squinch arch) (STV 1.0 0.9091)) +(: cnet_isa_2b191c13fa (IsA squint look) (STV 1.0 0.9091)) +(: cnet_isa_9461f5a2aa (IsA squinter person) (STV 1.0 0.9091)) +(: cnet_isa_c31f73a832 (IsA squire attendant) (STV 1.0 0.9091)) +(: cnet_isa_5de5a91d55 (IsA squire landowner) (STV 1.0 0.9091)) +(: cnet_isa_5e6e154d8a (IsA squirrel_s_foot_fern davallia) (STV 1.0 0.9091)) +(: cnet_isa_18093df12f (IsA squirrel rodent) (STV 1.0 0.9091)) +(: cnet_isa_744b1dae58 (IsA squirrel fur) (STV 1.0 0.9091)) +(: cnet_isa_272a8dd24c (IsA squirrel_cage cage) (STV 1.0 0.9091)) +(: cnet_isa_f9cce9baa1 (IsA squirrel_corn herb) (STV 1.0 0.9091)) +(: cnet_isa_b21772db85 (IsA squirrel_monkey new_world_monkey) (STV 1.0 0.9091)) +(: cnet_isa_cb4807b80e (IsA squirrelfish spiny_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_95919738a5 (IsA squirrel mammal) (STV 1.0 0.9091)) +(: cnet_isa_e958832d06 (IsA squirreltail_barley barley) (STV 1.0 0.9091)) +(: cnet_isa_80a56d5dc4 (IsA squirting_cucumber gourd) (STV 1.0 0.9091)) +(: cnet_isa_d6bb6575d2 (IsA squish noise) (STV 1.0 0.9091)) +(: cnet_isa_90f3c12eb1 (IsA sri_lanka_rupee sri_lankan_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_7ea36b0991 (IsA sri_lankan asiatic) (STV 1.0 0.9091)) +(: cnet_isa_e4b88f21e1 (IsA sri_lankan_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_522b5365d9 (IsA st_andrew_s_cross cross) (STV 1.0 0.9091)) +(: cnet_isa_9813f8b016 (IsA st_andrew_s_cross st_john_s_wort) (STV 1.0 0.9091)) +(: cnet_isa_2a5c275e5e (IsA st_augustine_grass grass) (STV 1.0 0.9091)) +(: cnet_isa_423f45230c (IsA st_bruno_s_lily spiderwort) (STV 1.0 0.9091)) +(: cnet_isa_e6491ace5e (IsA st_john_s_wort subshrub) (STV 1.0 0.9091)) +(: cnet_isa_8966c0039a (IsA st_patrick_s_day day) (STV 1.0 0.9091)) +(: cnet_isa_9737bcd6d4 (IsA st_peter_s_wort st_john_s_wort) (STV 1.0 0.9091)) +(: cnet_isa_22996bb3ee (IsA stab blow) (STV 1.0 0.9091)) +(: cnet_isa_a9c7e38808 (IsA stabber attacker) (STV 1.0 0.9091)) +(: cnet_isa_66f30aa251 (IsA stabbing murder) (STV 1.0 0.9091)) +(: cnet_isa_611860120c (IsA stabile sculpture) (STV 1.0 0.9091)) +(: cnet_isa_41e2119cf9 (IsA stability steadiness) (STV 1.0 0.9091)) +(: cnet_isa_1dbe4eaa1d (IsA stability order) (STV 1.0 0.9091)) +(: cnet_isa_bf721db424 (IsA stabilization standardization) (STV 1.0 0.9091)) +(: cnet_isa_bc60df60fc (IsA stabilization improvement) (STV 1.0 0.9091)) +(: cnet_isa_8122955eb5 (IsA stabilizer airfoil) (STV 1.0 0.9091)) +(: cnet_isa_b4897b0e03 (IsA stabilizer device) (STV 1.0 0.9091)) +(: cnet_isa_d6ca796a1a (IsA stabilizer chemical) (STV 1.0 0.9091)) +(: cnet_isa_24a4ef86e7 (IsA stabilizer_bar bar) (STV 1.0 0.9091)) +(: cnet_isa_7b663088a2 (IsA stabilizer_bar stabilizer) (STV 1.0 0.9091)) +(: cnet_isa_3a757a6c43 (IsA stable building) (STV 1.0 0.9091)) +(: cnet_isa_0b262a9a49 (IsA stable_gear gear) (STV 1.0 0.9091)) +(: cnet_isa_d27f2276de (IsA stableman hired_hand) (STV 1.0 0.9091)) +(: cnet_isa_eefb02f432 (IsA stablemate horse) (STV 1.0 0.9091)) +(: cnet_isa_10f01f6d49 (IsA stabling accommodation) (STV 1.0 0.9091)) +(: cnet_isa_087435ca58 (IsA stachyose tetrasaccharide) (STV 1.0 0.9091)) +(: cnet_isa_d73baa9a92 (IsA stachy asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_205f5e2475 (IsA stack pile) (STV 1.0 0.9091)) +(: cnet_isa_1915f81a82 (IsA stacked_heel heel) (STV 1.0 0.9091)) +(: cnet_isa_38b906f2d2 (IsA stacker laborer) (STV 1.0 0.9091)) +(: cnet_isa_a2236f5620 (IsA stack storage_space) (STV 1.0 0.9091)) +(: cnet_isa_088df9a42d (IsA stacte spice) (STV 1.0 0.9091)) +(: cnet_isa_10277e9309 (IsA staddle base) (STV 1.0 0.9091)) +(: cnet_isa_45ccac4320 (IsA stadium big_place) (STV 1.0 0.9339)) +(: cnet_isa_42acce7895 (IsA stadium structure) (STV 1.0 0.9091)) +(: cnet_isa_f0dd23b290 (IsA staff stick) (STV 1.0 0.9091)) +(: cnet_isa_aa2edec4bf (IsA staff symbol) (STV 1.0 0.9091)) +(: cnet_isa_46a2e4d5f7 (IsA staff body) (STV 1.0 0.9091)) +(: cnet_isa_2fbdc9338a (IsA staff force) (STV 1.0 0.9091)) +(: cnet_isa_1e924a2628 (IsA staff musical_notation) (STV 1.0 0.9091)) +(: cnet_isa_870776018e (IsA staff building_material) (STV 1.0 0.9091)) +(: cnet_isa_5dc8b5623d (IsA staff_line line) (STV 1.0 0.9091)) +(: cnet_isa_1cebae7eef (IsA staff_member employee) (STV 1.0 0.9091)) +(: cnet_isa_dd86753f62 (IsA staff_officer commissioned_officer) (STV 1.0 0.9091)) +(: cnet_isa_b8559893e3 (IsA staff_sergeant sergeant) (STV 1.0 0.9091)) +(: cnet_isa_30976f0df4 (IsA staff_tree shrub) (STV 1.0 0.9091)) +(: cnet_isa_edffb21942 (IsA staffordshire_bullterrier bullterrier) (STV 1.0 0.9091)) +(: cnet_isa_f0bbb32503 (IsA stag buck) (STV 1.0 0.9091)) +(: cnet_isa_488c5e0bac (IsA stag_beetle lamellicorn_beetle) (STV 1.0 0.9091)) +(: cnet_isa_05a008a91f (IsA stag_party party) (STV 1.0 0.9091)) +(: cnet_isa_8ec64e177b (IsA stage travel) (STV 1.0 0.9091)) +(: cnet_isa_5063cecfee (IsA stage platform) (STV 1.0 0.9091)) +(: cnet_isa_0b171b9e8f (IsA stage dramaturgy) (STV 1.0 0.9091)) +(: cnet_isa_7c4560a0cd (IsA stage scene) (STV 1.0 0.9091)) +(: cnet_isa_433f26c58a (IsA stage_crew gang) (STV 1.0 0.9091)) +(: cnet_isa_b179fdcbef (IsA stage_dancing dancing) (STV 1.0 0.9091)) +(: cnet_isa_7fda01517c (IsA stage_dancing show) (STV 1.0 0.9091)) +(: cnet_isa_bcb401b8dc (IsA stage_direction direction) (STV 1.0 0.9091)) +(: cnet_isa_54cc9f6df7 (IsA stage_director director) (STV 1.0 0.9091)) +(: cnet_isa_7c7ae0573f (IsA stage_door entrance) (STV 1.0 0.9091)) +(: cnet_isa_9a6524c039 (IsA stage_effect special_effect) (STV 1.0 0.9091)) +(: cnet_isa_6fe96820aa (IsA stage_fright fear) (STV 1.0 0.9091)) +(: cnet_isa_003f80da70 (IsA stage_left left) (STV 1.0 0.9091)) +(: cnet_isa_27fd0f7c4f (IsA stage_manager supervisor) (STV 1.0 0.9091)) +(: cnet_isa_861215b792 (IsA stage_name pseudonym) (STV 1.0 0.9091)) +(: cnet_isa_cd6fa98c92 (IsA stage_right right) (STV 1.0 0.9091)) +(: cnet_isa_3f66e8b025 (IsA stage_set representation) (STV 1.0 0.9091)) +(: cnet_isa_5cfd55de93 (IsA stage_whisper whisper) (STV 1.0 0.9091)) +(: cnet_isa_c4d34451cb (IsA stagecoach coach) (STV 1.0 0.9091)) +(: cnet_isa_82fac251ba (IsA stagecraft craft) (STV 1.0 0.9091)) +(: cnet_isa_d7b2901924 (IsA stagehand employee) (STV 1.0 0.9091)) +(: cnet_isa_b09dc92d68 (IsA stagflation inflation) (STV 1.0 0.9091)) +(: cnet_isa_a651a40eea (IsA staggerbush shrub) (STV 1.0 0.9091)) +(: cnet_isa_97cd78c340 (IsA staggered_board_of_director directorate) (STV 1.0 0.9091)) +(: cnet_isa_8e7f9d0577 (IsA staggerer pedestrian) (STV 1.0 0.9091)) +(: cnet_isa_547cf7fa87 (IsA stagger animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_d04563ab56 (IsA staghorn_coral stony_coral) (STV 1.0 0.9091)) +(: cnet_isa_64957a67f9 (IsA staghorn_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_5d0aeb5ad5 (IsA staghorn_sumac sumac) (STV 1.0 0.9091)) +(: cnet_isa_de20951120 (IsA staghound hound) (STV 1.0 0.9091)) +(: cnet_isa_d0fcea091c (IsA staginess artificiality) (STV 1.0 0.9091)) +(: cnet_isa_0ab82df5df (IsA staging discard) (STV 1.0 0.9091)) +(: cnet_isa_5629413dff (IsA staging travel) (STV 1.0 0.9091)) +(: cnet_isa_7f1c56a687 (IsA staging_area area) (STV 1.0 0.9091)) +(: cnet_isa_4ca074cef5 (IsA stagnation inaction) (STV 1.0 0.9091)) +(: cnet_isa_f2be125e4e (IsA stain appearance) (STV 1.0 0.9091)) +(: cnet_isa_4bb89f8648 (IsA stain coloring_material) (STV 1.0 0.9091)) +(: cnet_isa_2861c73f87 (IsA stainability tendency) (STV 1.0 0.9091)) +(: cnet_isa_fca2fab607 (IsA stained_glass glass) (STV 1.0 0.9091)) +(: cnet_isa_bdc22472b3 (IsA stained_glass_window window) (STV 1.0 0.9091)) +(: cnet_isa_9af781e11c (IsA stainer worker) (STV 1.0 0.9091)) +(: cnet_isa_42ca84f68d (IsA staining soiling) (STV 1.0 0.9091)) +(: cnet_isa_a117f11d9c (IsA staining dyeing) (STV 1.0 0.9091)) +(: cnet_isa_d101f64662 (IsA stainless_steel alloy_steel) (STV 1.0 0.9091)) +(: cnet_isa_dc136beab4 (IsA stair_carpet rug) (STV 1.0 0.9091)) +(: cnet_isa_32844e4bce (IsA stair_rod rod) (STV 1.0 0.9091)) +(: cnet_isa_3c5dd42c7f (IsA stairhead platform) (STV 1.0 0.9091)) +(: cnet_isa_ae9204195f (IsA stair stairway) (STV 1.0 0.9091)) +(: cnet_isa_7e65dbd5d3 (IsA stairway way) (STV 1.0 0.9091)) +(: cnet_isa_16da107644 (IsA stairwell well) (STV 1.0 0.9091)) +(: cnet_isa_700c9697b1 (IsA stake instrument_of_execution) (STV 1.0 0.9091)) +(: cnet_isa_e8da5f390d (IsA stake post) (STV 1.0 0.9091)) +(: cnet_isa_c5c7895be0 (IsA stake gamble) (STV 1.0 0.9091)) +(: cnet_isa_7ea628b50b (IsA stake_race horse_race) (STV 1.0 0.9091)) +(: cnet_isa_1b9102bacf (IsA stakeholder neutral) (STV 1.0 0.9091)) +(: cnet_isa_b013b44acc (IsA stakeout surveillance) (STV 1.0 0.9091)) +(: cnet_isa_fb61c22ae3 (IsA stalactite cylinder) (STV 1.0 0.9091)) +(: cnet_isa_01c4335404 (IsA stalagmite cylinder) (STV 1.0 0.9091)) +(: cnet_isa_458155ff07 (IsA stalemate draw) (STV 1.0 0.9091)) +(: cnet_isa_247ba3b2b9 (IsA staleness oldness) (STV 1.0 0.9091)) +(: cnet_isa_f3e359f77f (IsA stalinist follower) (STV 1.0 0.9091)) +(: cnet_isa_48c51e8225 (IsA stalinization social_process) (STV 1.0 0.9091)) +(: cnet_isa_0986851aa3 (IsA stalk gait) (STV 1.0 0.9091)) +(: cnet_isa_d3824f2f2e (IsA stalk hunt) (STV 1.0 0.9091)) +(: cnet_isa_ec110f8455 (IsA stalk pursuit) (STV 1.0 0.9091)) +(: cnet_isa_0d129f61bb (IsA stalk plant_organ) (STV 1.0 0.9091)) +(: cnet_isa_c9634a9b39 (IsA stalked_puffball fungus) (STV 1.0 0.9091)) +(: cnet_isa_e8e90b4504 (IsA stalked_puffball podaxaceae) (STV 1.0 0.9091)) +(: cnet_isa_ca38d0a3f0 (IsA stalker hunter) (STV 1.0 0.9091)) +(: cnet_isa_a0e0774d35 (IsA stalker pedestrian) (STV 1.0 0.9091)) +(: cnet_isa_6860022cec (IsA stalking_horse horse) (STV 1.0 0.9091)) +(: cnet_isa_c1c0b8fc77 (IsA stalking_horse screen) (STV 1.0 0.9091)) +(: cnet_isa_61d94e187c (IsA stalking_horse campaigner) (STV 1.0 0.9091)) +(: cnet_isa_cc78983269 (IsA stall obstruction) (STV 1.0 0.9091)) +(: cnet_isa_07af1ff7a6 (IsA stall booth) (STV 1.0 0.9091)) +(: cnet_isa_c1b0c6f529 (IsA stall compartment) (STV 1.0 0.9091)) +(: cnet_isa_4eadfc9a12 (IsA stall seating) (STV 1.0 0.9091)) +(: cnet_isa_09f86e4e52 (IsA stall malfunction) (STV 1.0 0.9091)) +(: cnet_isa_49f99aef5c (IsA stall_bar gymnastic_apparatus) (STV 1.0 0.9091)) +(: cnet_isa_6289b763c7 (IsA stallion male_horse) (STV 1.0 0.9091)) +(: cnet_isa_f3f7487820 (IsA stall in_bathroom) (STV 1.0 0.9339)) +(: cnet_isa_430fe4dc46 (IsA stall farm_building) (STV 1.0 0.9091)) +(: cnet_isa_925641fa91 (IsA stamen reproductive_structure) (STV 1.0 0.9091)) +(: cnet_isa_ed6561438f (IsA stamina endurance) (STV 1.0 0.9091)) +(: cnet_isa_95949463b8 (IsA stammel fabric) (STV 1.0 0.9091)) +(: cnet_isa_3d25b4a66e (IsA stammer speech_disorder) (STV 1.0 0.9091)) +(: cnet_isa_de8f7ed496 (IsA stammerer speaker) (STV 1.0 0.9091)) +(: cnet_isa_9d66af8280 (IsA stamp die) (STV 1.0 0.9091)) +(: cnet_isa_9bf6982e1a (IsA stamp machine) (STV 1.0 0.9091)) +(: cnet_isa_0e228382c5 (IsA stamp symbol) (STV 1.0 0.9091)) +(: cnet_isa_b43e776071 (IsA stamp class) (STV 1.0 0.9091)) +(: cnet_isa_4c3dfed6a8 (IsA stamp_act legislative_act) (STV 1.0 0.9091)) +(: cnet_isa_a65124a814 (IsA stamp_album album) (STV 1.0 0.9091)) +(: cnet_isa_7a2a4e69cc (IsA stamp_collection collection) (STV 1.0 0.9091)) +(: cnet_isa_9820bafb66 (IsA stamp_dealer trader) (STV 1.0 0.9091)) +(: cnet_isa_5e350859fa (IsA stamp_mill factory) (STV 1.0 0.9091)) +(: cnet_isa_c08f392ffb (IsA stamp_tax tax) (STV 1.0 0.9091)) +(: cnet_isa_1d46830c54 (IsA stampede group_action) (STV 1.0 0.9091)) +(: cnet_isa_afdc0b6f7a (IsA stampede change_of_location) (STV 1.0 0.9091)) +(: cnet_isa_34f332718d (IsA stamper pedestrian) (STV 1.0 0.9091)) +(: cnet_isa_27803aa418 (IsA stamper workman) (STV 1.0 0.9091)) +(: cnet_isa_21e6b74810 (IsA stamping_machine power_tool) (STV 1.0 0.9091)) +(: cnet_isa_2e65cbf18f (IsA stance position) (STV 1.0 0.9091)) +(: cnet_isa_8bb1d0662a (IsA stanchion post) (STV 1.0 0.9091)) +(: cnet_isa_4fdcd254a5 (IsA stand defense) (STV 1.0 0.9091)) +(: cnet_isa_4150fee2ad (IsA stand stop) (STV 1.0 0.9091)) +(: cnet_isa_291de3fae5 (IsA stand table) (STV 1.0 0.9091)) +(: cnet_isa_8e4089eca6 (IsA stand tiered_seat) (STV 1.0 0.9091)) +(: cnet_isa_0eceea9e5e (IsA stand vegetation) (STV 1.0 0.9091)) +(: cnet_isa_4c9ad02b98 (IsA stand position) (STV 1.0 0.9091)) +(: cnet_isa_de1741684b (IsA stand_in peer) (STV 1.0 0.9091)) +(: cnet_isa_c1afc643c3 (IsA stand_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_e0909c495d (IsA standard flag) (STV 1.0 0.9091)) +(: cnet_isa_9c5bd9e89f (IsA standard post) (STV 1.0 0.9091)) +(: cnet_isa_4aeef98ef2 (IsA standard system_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_9934103209 (IsA standard value) (STV 1.0 0.9091)) +(: cnet_isa_e1ad4114ef (IsA standard volume_unit) (STV 1.0 0.9091)) +(: cnet_isa_cbe337722f (IsA standard_atmosphere pressure_unit) (STV 1.0 0.9091)) +(: cnet_isa_e676adddb9 (IsA standard_bearer politician) (STV 1.0 0.9091)) +(: cnet_isa_e1f4111566 (IsA standard_cell voltaic_cell) (STV 1.0 0.9091)) +(: cnet_isa_7a9d98544d (IsA standard_deviation variance) (STV 1.0 0.9091)) +(: cnet_isa_53d5374419 (IsA standard_gauge gauge) (STV 1.0 0.9091)) +(: cnet_isa_63eb0a6c3b (IsA standard_gauge railroad_track) (STV 1.0 0.9091)) +(: cnet_isa_0e0275f80d (IsA standard_generalized_markup_language markup_language) (STV 1.0 0.9091)) +(: cnet_isa_12669a56a3 (IsA standard_of_living degree) (STV 1.0 0.9091)) +(: cnet_isa_719f7b8b03 (IsA standard_poodle poodle) (STV 1.0 0.9091)) +(: cnet_isa_b5bb6effae (IsA standard_schnauzer schnauzer) (STV 1.0 0.9091)) +(: cnet_isa_70085a6026 (IsA standard_temperature degree_centigrade) (STV 1.0 0.9091)) +(: cnet_isa_ba496d822d (IsA standard_transmission transmission) (STV 1.0 0.9091)) +(: cnet_isa_03a926c18a (IsA standardization social_control) (STV 1.0 0.9091)) +(: cnet_isa_7c8c25d7c3 (IsA standardization condition) (STV 1.0 0.9091)) +(: cnet_isa_2e253639e7 (IsA standardizer changer) (STV 1.0 0.9091)) +(: cnet_isa_70d86dfd8c (IsA standby thing) (STV 1.0 0.9091)) +(: cnet_isa_5cd0d8abac (IsA standdown stop) (STV 1.0 0.9091)) +(: cnet_isa_00a28d56bf (IsA standdown abeyance) (STV 1.0 0.9091)) +(: cnet_isa_1c57f2a169 (IsA standee cutout) (STV 1.0 0.9091)) +(: cnet_isa_0138b29a45 (IsA standee stander) (STV 1.0 0.9091)) +(: cnet_isa_c3d4aea64d (IsA stander organism) (STV 1.0 0.9091)) +(: cnet_isa_1052583e8f (IsA standing motion) (STV 1.0 0.9091)) +(: cnet_isa_8e9972aab4 (IsA standing list) (STV 1.0 0.9091)) +(: cnet_isa_a7ed9c8ee1 (IsA standing status) (STV 1.0 0.9091)) +(: cnet_isa_033a71b753 (IsA standing_army army) (STV 1.0 0.9091)) +(: cnet_isa_686c01efc5 (IsA standing_committee committee) (STV 1.0 0.9091)) +(: cnet_isa_a585531414 (IsA standing_operating_procedure operating_procedure) (STV 1.0 0.9091)) +(: cnet_isa_5d3a744a43 (IsA standing_order order) (STV 1.0 0.9091)) +(: cnet_isa_291d028a12 (IsA standing_press press) (STV 1.0 0.9091)) +(: cnet_isa_1c31cd66a6 (IsA standing_room room) (STV 1.0 0.9091)) +(: cnet_isa_53461b15a8 (IsA standing_wave wave) (STV 1.0 0.9091)) +(: cnet_isa_df89dcd81a (IsA standpipe pipe) (STV 1.0 0.9091)) +(: cnet_isa_048528db0f (IsA stanford university) (STV 1.0 0.9339)) +(: cnet_isa_4aee10a730 (IsA stanford_binet_test intelligence_test) (STV 1.0 0.9091)) +(: cnet_isa_e8dfbd23ca (IsA stanhope carriage) (STV 1.0 0.9091)) +(: cnet_isa_16ab465b15 (IsA stanhopea orchid) (STV 1.0 0.9091)) +(: cnet_isa_f6e7109122 (IsA stanleya dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5105a451d5 (IsA stannic_chloride chloride) (STV 1.0 0.9091)) +(: cnet_isa_250245e653 (IsA stannite mineral) (STV 1.0 0.9091)) +(: cnet_isa_acca70d313 (IsA stannous_fluoride fluoride) (STV 1.0 0.9091)) +(: cnet_isa_39e9ed55cf (IsA stanza text) (STV 1.0 0.9091)) +(: cnet_isa_4bb717b979 (IsA stapedectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_1e836fd415 (IsA stapelia herb) (STV 1.0 0.9091)) +(: cnet_isa_196b5bbbaf (IsA stapelia_asteria stapelia) (STV 1.0 0.9091)) +(: cnet_isa_c93b8984d4 (IsA stape auditory_ossicle) (STV 1.0 0.9091)) +(: cnet_isa_b8a1c8cbd7 (IsA staphylaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_ad04e39f11 (IsA staphylea dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0f763249a2 (IsA staphylinidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_1867cf5be9 (IsA staphylococcal_enterotoxin enterotoxin) (STV 1.0 0.9091)) +(: cnet_isa_294bcab3cb (IsA staphylococcal_enterotoxin_b bioweapon) (STV 1.0 0.9091)) +(: cnet_isa_27632fa091 (IsA staphylococcal_enterotoxin_b staphylococcal_enterotoxin) (STV 1.0 0.9091)) +(: cnet_isa_a727a379c1 (IsA staphylococcal_infection infection) (STV 1.0 0.9091)) +(: cnet_isa_c09f61bebf (IsA staphylococcus coccus) (STV 1.0 0.9091)) +(: cnet_isa_7e01ceb87e (IsA staple example_of_paper_fastener) (STV 1.0 0.9091)) +(: cnet_isa_bc2775d907 (IsA staple nail) (STV 1.0 0.9091)) +(: cnet_isa_9b7ba7e4d5 (IsA staple paper_fastener) (STV 1.0 0.9091)) +(: cnet_isa_dc570cdfb3 (IsA staple_fiber natural_fiber) (STV 1.0 0.9091)) +(: cnet_isa_f269efcb75 (IsA staple_gun machine) (STV 1.0 0.9091)) +(: cnet_isa_72fced4449 (IsA stapler device) (STV 1.0 0.9091)) +(: cnet_isa_3b83d87e62 (IsA stapler everyday_item) (STV 1.0 0.9091)) +(: cnet_isa_447b1227b3 (IsA stapler office_supply) (STV 1.0 0.9091)) +(: cnet_isa_a30d15741d (IsA stapler machine) (STV 1.0 0.9091)) +(: cnet_isa_c3b4f55557 (IsA star burning_ball_of_gas) (STV 1.0 0.9091)) +(: cnet_isa_29905d4279 (IsA star celestial_body) (STV 1.0 0.9091)) +(: cnet_isa_2fafdc272f (IsA star shape) (STV 1.0 0.9091)) +(: cnet_isa_4d359dea58 (IsA star sun) (STV 1.0 0.9454)) +(: cnet_isa_467b38a318 (IsA star actor) (STV 1.0 0.9091)) +(: cnet_isa_3f2a84d681 (IsA star plane_figure) (STV 1.0 0.9091)) +(: cnet_isa_2285d9d0bc (IsA star_anise anise_tree) (STV 1.0 0.9091)) +(: cnet_isa_0a4a4eea5b (IsA star_apple fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_ff8b41f5bc (IsA star_begonia begonia) (STV 1.0 0.9091)) +(: cnet_isa_9cd96de3a1 (IsA star_chamber court) (STV 1.0 0.9091)) +(: cnet_isa_52a9a7086f (IsA star_chart chart) (STV 1.0 0.9091)) +(: cnet_isa_9cfc73cb16 (IsA star_drill bore_bit) (STV 1.0 0.9091)) +(: cnet_isa_18a09a07ca (IsA star_duckweed duckweed) (STV 1.0 0.9091)) +(: cnet_isa_ab01102a1b (IsA star_grass cormous_plant) (STV 1.0 0.9091)) +(: cnet_isa_96d7df40e8 (IsA star_jasmine vine) (STV 1.0 0.9091)) +(: cnet_isa_91b5eb0bf7 (IsA star_magnolia magnolia) (STV 1.0 0.9091)) +(: cnet_isa_76bd8d91f8 (IsA star_of_bethlehem bulbous_plant) (STV 1.0 0.9091)) +(: cnet_isa_bcef3a1163 (IsA star_of_david emblem) (STV 1.0 0.9091)) +(: cnet_isa_94e91e6953 (IsA star_of_david hexagram) (STV 1.0 0.9091)) +(: cnet_isa_54d2993de8 (IsA star_sapphire sapphire) (STV 1.0 0.9091)) +(: cnet_isa_fed998eee9 (IsA star_saxifrage saxifrage) (STV 1.0 0.9091)) +(: cnet_isa_31bbbea07e (IsA star_shell flare) (STV 1.0 0.9091)) +(: cnet_isa_1cc9b4d814 (IsA star_thistle centaury) (STV 1.0 0.9091)) +(: cnet_isa_7f4d7c7719 (IsA star_topology topology) (STV 1.0 0.9091)) +(: cnet_isa_fcb5bafc1c (IsA star_trek great_show) (STV 1.0 0.9091)) +(: cnet_isa_106f356a88 (IsA star_trek pretend_story) (STV 1.0 0.9091)) +(: cnet_isa_b9818a47ab (IsA star_trek show_broadcast_from_earth) (STV 1.0 0.9339)) +(: cnet_isa_016d9c8767 (IsA star_trek tv_show) (STV 1.0 0.9091)) +(: cnet_isa_991f85c06d (IsA star_tulip mariposa) (STV 1.0 0.9091)) +(: cnet_isa_e4fed05834 (IsA star_war popular_movie_in_1980) (STV 1.0 0.9091)) +(: cnet_isa_d35c8cba97 (IsA star_war science_fiction_movie) (STV 1.0 0.9454)) +(: cnet_isa_35c2a9303d (IsA starboard side) (STV 1.0 0.9091)) +(: cnet_isa_b2a0b6fa23 (IsA starch formulation) (STV 1.0 0.9091)) +(: cnet_isa_2e9d01651b (IsA starch polysaccharide) (STV 1.0 0.9091)) +(: cnet_isa_e978f41046 (IsA starche foodstuff) (STV 1.0 0.9091)) +(: cnet_isa_e852d69f9b (IsA stardom high_status) (STV 1.0 0.9091)) +(: cnet_isa_e1e17f0d28 (IsA stardust romanticism) (STV 1.0 0.9091)) +(: cnet_isa_8670a5cebb (IsA stare look) (STV 1.0 0.9091)) +(: cnet_isa_8e2a440751 (IsA starer spectator) (STV 1.0 0.9091)) +(: cnet_isa_066ce290cf (IsA staret adviser) (STV 1.0 0.9091)) +(: cnet_isa_b5dc416fd4 (IsA starfish echinoderm) (STV 1.0 0.9091)) +(: cnet_isa_6058ef8d1c (IsA starflower star_of_bethlehem) (STV 1.0 0.9091)) +(: cnet_isa_fb58eb09f2 (IsA stargazer percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_b16a31f7fb (IsA stargazing observation) (STV 1.0 0.9091)) +(: cnet_isa_7f6eafe704 (IsA starkness limit) (STV 1.0 0.9091)) +(: cnet_isa_5ad6e37a36 (IsA starlet star) (STV 1.0 0.9091)) +(: cnet_isa_aa0793a03f (IsA starlet actress) (STV 1.0 0.9091)) +(: cnet_isa_3fc68bf38e (IsA starlight light) (STV 1.0 0.9091)) +(: cnet_isa_8b0f1acae3 (IsA starling bird) (STV 1.0 0.9339)) +(: cnet_isa_50520297a8 (IsA starling oscine) (STV 1.0 0.9091)) +(: cnet_isa_69e2779f04 (IsA starnose_mole mole) (STV 1.0 0.9091)) +(: cnet_isa_b174f842e3 (IsA star far_away) (STV 1.0 0.9339)) +(: cnet_isa_5f1153fdee (IsA star_and_bar flag) (STV 1.0 0.9091)) +(: cnet_isa_2d4cc35079 (IsA starship spacecraft) (STV 1.0 0.9091)) +(: cnet_isa_9fa1b21069 (IsA start turn) (STV 1.0 0.9091)) +(: cnet_isa_f3be85ab90 (IsA start advantage) (STV 1.0 0.9091)) +(: cnet_isa_c4330958d3 (IsA start beginning) (STV 1.0 0.9091)) +(: cnet_isa_7463eea4e4 (IsA start line) (STV 1.0 0.9091)) +(: cnet_isa_40b7cb1a22 (IsA starter culture) (STV 1.0 0.9091)) +(: cnet_isa_6a4f688a0c (IsA starter electric_motor) (STV 1.0 0.9091)) +(: cnet_isa_b092f5f33f (IsA starter contestant) (STV 1.0 0.9091)) +(: cnet_isa_a76df5ac87 (IsA starter official) (STV 1.0 0.9091)) +(: cnet_isa_b69fecaf6d (IsA starting_block block) (STV 1.0 0.9091)) +(: cnet_isa_13babfdf6b (IsA starting_buffer buffer_solution) (STV 1.0 0.9091)) +(: cnet_isa_bad95e4d4c (IsA starting_gate barrier) (STV 1.0 0.9091)) +(: cnet_isa_9cc337a29d (IsA starting_pitcher pitcher) (STV 1.0 0.9091)) +(: cnet_isa_fcc6b70c4d (IsA starting_pitcher starter) (STV 1.0 0.9091)) +(: cnet_isa_a72206c122 (IsA starting_post post) (STV 1.0 0.9091)) +(: cnet_isa_68c57e8312 (IsA starting_signal signal) (STV 1.0 0.9091)) +(: cnet_isa_2cb6f325a1 (IsA startle reflex) (STV 1.0 0.9091)) +(: cnet_isa_3ed18b3b79 (IsA startle_reflex startle) (STV 1.0 0.9091)) +(: cnet_isa_c5211f7a35 (IsA startle_response startle) (STV 1.0 0.9091)) +(: cnet_isa_7a9b6d0b99 (IsA startup beginning) (STV 1.0 0.9091)) +(: cnet_isa_5bc8f0b852 (IsA starvation privation) (STV 1.0 0.9091)) +(: cnet_isa_1120209cbb (IsA starvation hunger) (STV 1.0 0.9091)) +(: cnet_isa_f1e8646e51 (IsA starvation_acidosis acidosis) (STV 1.0 0.9091)) +(: cnet_isa_ce5df04d0e (IsA starved_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_b293ccc0f1 (IsA starveling pauper) (STV 1.0 0.9091)) +(: cnet_isa_dc4ff76044 (IsA stash_house house) (STV 1.0 0.9091)) +(: cnet_isa_50c8c43bb6 (IsA stasis inaction) (STV 1.0 0.9091)) +(: cnet_isa_b026c22552 (IsA stasis pathology) (STV 1.0 0.9091)) +(: cnet_isa_3100fe9cbd (IsA stassano_furnace electric_furnace) (STV 1.0 0.9091)) +(: cnet_isa_dce5e373a5 (IsA state_s_attorney prosecutor) (STV 1.0 0.9091)) +(: cnet_isa_321ab13bd0 (IsA state_s_evidence evidence) (STV 1.0 0.9091)) +(: cnet_isa_e5f61882a5 (IsA state attribute) (STV 1.0 0.9091)) +(: cnet_isa_6f83259044 (IsA state government) (STV 1.0 0.9091)) +(: cnet_isa_813cff0661 (IsA state political_unit) (STV 1.0 0.9091)) +(: cnet_isa_a9261c37fa (IsA state administrative_district) (STV 1.0 0.9091)) +(: cnet_isa_4a40cbef4f (IsA state emotional_state) (STV 1.0 0.9091)) +(: cnet_isa_0873c7f937 (IsA state_bank depository_financial_institution) (STV 1.0 0.9091)) +(: cnet_isa_a404bc6a28 (IsA state_capital capital) (STV 1.0 0.9091)) +(: cnet_isa_6ed6cfae5f (IsA state_capital city) (STV 1.0 0.9091)) +(: cnet_isa_745333554a (IsA state_capitalism economy) (STV 1.0 0.9091)) +(: cnet_isa_55795a1aed (IsA state_department government_department) (STV 1.0 0.9091)) +(: cnet_isa_8ff543229f (IsA state_government government) (STV 1.0 0.9091)) +(: cnet_isa_fe808f5e3b (IsA state_line boundary_line) (STV 1.0 0.9091)) +(: cnet_isa_8f8f218714 (IsA state_of_art degree) (STV 1.0 0.9091)) +(: cnet_isa_704308e6e5 (IsA state_of_maryland in_united_state) (STV 1.0 0.9091)) +(: cnet_isa_45974244c9 (IsA state_of_matter chemical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_54c80debe6 (IsA state_of_mind psychological_state) (STV 1.0 0.9091)) +(: cnet_isa_e48003159e (IsA state_of_mind temporary_state) (STV 1.0 0.9091)) +(: cnet_isa_a043af6b14 (IsA state_park park) (STV 1.0 0.9091)) +(: cnet_isa_9c70d64043 (IsA state_prison prison) (STV 1.0 0.9091)) +(: cnet_isa_f41fb5c865 (IsA state_senator senator) (STV 1.0 0.9091)) +(: cnet_isa_8134868d96 (IsA state_socialism economy) (STV 1.0 0.9091)) +(: cnet_isa_d49b87036c (IsA state_sponsered agent_non_geographical) (STV 1.0 0.9091)) +(: cnet_isa_740552987b (IsA state_sponsered organization) (STV 1.0 0.9091)) +(: cnet_isa_ced177f971 (IsA state_sponsored_terrorism terrorism) (STV 1.0 0.9091)) +(: cnet_isa_ca2c624e90 (IsA state_tax_lien tax_lien) (STV 1.0 0.9091)) +(: cnet_isa_af4c6a3657 (IsA state_treasurer treasurer) (STV 1.0 0.9091)) +(: cnet_isa_ede34d2b9a (IsA state_trooper policemen) (STV 1.0 0.9339)) +(: cnet_isa_82de7ba168 (IsA statehouse government_building) (STV 1.0 0.9091)) +(: cnet_isa_cef3d9a714 (IsA stateliness formality) (STV 1.0 0.9091)) +(: cnet_isa_3bfd3f5563 (IsA stateliness impressiveness) (STV 1.0 0.9091)) +(: cnet_isa_1d9a5cb656 (IsA stately_home mansion) (STV 1.0 0.9091)) +(: cnet_isa_fd065b85c5 (IsA statement commercial_document) (STV 1.0 0.9091)) +(: cnet_isa_752b4e0c48 (IsA statement message) (STV 1.0 0.9091)) +(: cnet_isa_cac6a95e7d (IsA statement theme) (STV 1.0 0.9091)) +(: cnet_isa_cbde997c61 (IsA stater resident) (STV 1.0 0.9091)) +(: cnet_isa_2f5744f962 (IsA stater coin) (STV 1.0 0.9091)) +(: cnet_isa_e864b0e3ec (IsA stateroom cabin) (STV 1.0 0.9091)) +(: cnet_isa_b65579b49b (IsA state_general assembly) (STV 1.0 0.9091)) +(: cnet_isa_3453712337 (IsA state_right right) (STV 1.0 0.9091)) +(: cnet_isa_437225545c (IsA state_right doctrine) (STV 1.0 0.9091)) +(: cnet_isa_53bdac69f4 (IsA state_right_democratic_party party) (STV 1.0 0.9091)) +(: cnet_isa_d4ba52a4fd (IsA statesman politician) (STV 1.0 0.9091)) +(: cnet_isa_b24e8b25f9 (IsA statesmanship wisdom) (STV 1.0 0.9091)) +(: cnet_isa_1ba61e30e2 (IsA stateswoman statesman) (STV 1.0 0.9091)) +(: cnet_isa_ce41adcce5 (IsA static criticism) (STV 1.0 0.9091)) +(: cnet_isa_db837229a3 (IsA static noise) (STV 1.0 0.9091)) +(: cnet_isa_13ca5450b5 (IsA static_electricity electricity) (STV 1.0 0.9091)) +(: cnet_isa_4ae192eb07 (IsA static_line cord) (STV 1.0 0.9091)) +(: cnet_isa_93d68b8398 (IsA static_tube measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_c411a7514d (IsA static mechanic) (STV 1.0 0.9091)) +(: cnet_isa_117177a5be (IsA station facility) (STV 1.0 0.9091)) +(: cnet_isa_1796c1969b (IsA station radio_frequency) (STV 1.0 0.9091)) +(: cnet_isa_7a87582d58 (IsA station position) (STV 1.0 0.9091)) +(: cnet_isa_bb36e01f16 (IsA station_of_cross representation) (STV 1.0 0.9091)) +(: cnet_isa_c65cc8565e (IsA stationariness motionlessness) (STV 1.0 0.9091)) +(: cnet_isa_32896eb5ff (IsA stationary_stochastic_process stochastic_process) (STV 1.0 0.9091)) +(: cnet_isa_18aff26463 (IsA stationer merchant) (STV 1.0 0.9091)) +(: cnet_isa_3ff9fca588 (IsA stationery writing_paper) (STV 1.0 0.9091)) +(: cnet_isa_11545e70d1 (IsA stationmaster master) (STV 1.0 0.9091)) +(: cnet_isa_b1f2c67897 (IsA station_of_cross devotion) (STV 1.0 0.9091)) +(: cnet_isa_1b2997c407 (IsA station_of_cross sery) (STV 1.0 0.9091)) +(: cnet_isa_8e6ec1c67b (IsA statistic number) (STV 1.0 0.9091)) +(: cnet_isa_7b8d9b896c (IsA statistic datum) (STV 1.0 0.9091)) +(: cnet_isa_6714e3eba8 (IsA statistical_commission economic_and_social_council_commission) (STV 1.0 0.9091)) +(: cnet_isa_549d8c3680 (IsA statistical_mechanic physic) (STV 1.0 0.9091)) +(: cnet_isa_8a3f111de3 (IsA statistical_method method) (STV 1.0 0.9091)) +(: cnet_isa_fa28a1da09 (IsA statistician mathematician) (STV 1.0 0.9091)) +(: cnet_isa_77dbeccfbe (IsA statistician calculator) (STV 1.0 0.9091)) +(: cnet_isa_0f92ed13ec (IsA statistic branch_of_mathematic) (STV 1.0 0.9339)) +(: cnet_isa_5fd5f6b8c5 (IsA statistic applied_mathematic) (STV 1.0 0.9091)) +(: cnet_isa_966aa9c830 (IsA stator mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_c18f146bf8 (IsA statuary collection) (STV 1.0 0.9091)) +(: cnet_isa_78cd87fcb9 (IsA statue example_of_art) (STV 1.0 0.9091)) +(: cnet_isa_a35f1d3f04 (IsA statue three_dimensional_sculpture) (STV 1.0 0.9339)) +(: cnet_isa_b576272333 (IsA statue sculpture) (STV 1.0 0.9091)) +(: cnet_isa_ad444aecf0 (IsA statue_of_liberty gift_from_france) (STV 1.0 0.9091)) +(: cnet_isa_ae84b902cf (IsA statue_of_liberty gift_from_french) (STV 1.0 0.9091)) +(: cnet_isa_fb44a22376 (IsA statue art) (STV 1.0 0.9091)) +(: cnet_isa_7d6d3ba988 (IsA stature bodily_property) (STV 1.0 0.9091)) +(: cnet_isa_5cfd6ee476 (IsA stature esteem) (STV 1.0 0.9091)) +(: cnet_isa_3ba5fd2725 (IsA status state) (STV 1.0 0.9091)) +(: cnet_isa_7e64ccdc15 (IsA status_asthmaticus asthma) (STV 1.0 0.9091)) +(: cnet_isa_a611bcf697 (IsA status_epilepticus epilepsy) (STV 1.0 0.9091)) +(: cnet_isa_d7dc7c49b5 (IsA status_quo situation) (STV 1.0 0.9091)) +(: cnet_isa_8a74c4051d (IsA statute_book written_record) (STV 1.0 0.9091)) +(: cnet_isa_f4846f8326 (IsA statute_of_limitation law) (STV 1.0 0.9091)) +(: cnet_isa_472b22ad76 (IsA statutory_law law) (STV 1.0 0.9091)) +(: cnet_isa_b9d58ed11d (IsA statutory_offense crime) (STV 1.0 0.9091)) +(: cnet_isa_dc818bd3ab (IsA statutory_rape rape) (STV 1.0 0.9091)) +(: cnet_isa_2372205ced (IsA staurikosaur ornithischian) (STV 1.0 0.9091)) +(: cnet_isa_c138fce6fd (IsA stave slat) (STV 1.0 0.9091)) +(: cnet_isa_37c06d3795 (IsA stay act) (STV 1.0 0.9091)) +(: cnet_isa_693a69dcc7 (IsA stay strip) (STV 1.0 0.9091)) +(: cnet_isa_374a8ab668 (IsA stay decree) (STV 1.0 0.9091)) +(: cnet_isa_87a5d804a8 (IsA stay brace) (STV 1.0 0.9091)) +(: cnet_isa_4955f9948a (IsA stay_at_home adult) (STV 1.0 0.9091)) +(: cnet_isa_811915e48b (IsA stay_of_execution stay) (STV 1.0 0.9091)) +(: cnet_isa_236b68816f (IsA stayer animal) (STV 1.0 0.9091)) +(: cnet_isa_c468cd166f (IsA stayman eating_apple) (STV 1.0 0.9091)) +(: cnet_isa_c2bb23f1e1 (IsA stayman_winesap eating_apple) (STV 1.0 0.9091)) +(: cnet_isa_b952ff2e0c (IsA staysail fore_and_aft_sail) (STV 1.0 0.9091)) +(: cnet_isa_de661f2943 (IsA stead function) (STV 1.0 0.9091)) +(: cnet_isa_bb03630a5c (IsA steadfastness loyalty) (STV 1.0 0.9091)) +(: cnet_isa_4e1aef49cf (IsA steadfastness resoluteness) (STV 1.0 0.9091)) +(: cnet_isa_614266dd2c (IsA steadiness immovability) (STV 1.0 0.9091)) +(: cnet_isa_110e3c2ae3 (IsA steadiness regularity) (STV 1.0 0.9091)) +(: cnet_isa_50e2d039cc (IsA steadiness resoluteness) (STV 1.0 0.9091)) +(: cnet_isa_7e61110380 (IsA steak food) (STV 1.0 0.9091)) +(: cnet_isa_5c4ad94177 (IsA steak meat) (STV 1.0 0.9339)) +(: cnet_isa_9821d4853b (IsA steak cut) (STV 1.0 0.9091)) +(: cnet_isa_f4bb0879f8 (IsA steak_and_bread both_food) (STV 1.0 0.9339)) +(: cnet_isa_1858dad1a6 (IsA steak_and_kidney_pie meat_pie) (STV 1.0 0.9091)) +(: cnet_isa_79b0a2e7be (IsA steak_au_poivre dish) (STV 1.0 0.9091)) +(: cnet_isa_043f381ee7 (IsA steak_knife table_knife) (STV 1.0 0.9091)) +(: cnet_isa_3fddfdd0d6 (IsA steak_sauce condiment) (STV 1.0 0.9091)) +(: cnet_isa_230f70f95c (IsA steak_tartare dish) (STV 1.0 0.9091)) +(: cnet_isa_4a0aeab565 (IsA steakhouse restaurant) (STV 1.0 0.9091)) +(: cnet_isa_c72ea430bf (IsA steal baseball) (STV 1.0 0.9091)) +(: cnet_isa_9268012444 (IsA stealing crime) (STV 1.0 0.9091)) +(: cnet_isa_69623c38ac (IsA stealth concealment) (STV 1.0 0.9091)) +(: cnet_isa_84bc69dbe0 (IsA stealth_aircraft aircraft) (STV 1.0 0.9091)) +(: cnet_isa_5d3ea8894f (IsA stealth_bomber bomber) (STV 1.0 0.9091)) +(: cnet_isa_7af83d9ac2 (IsA stealth_bomber stealth_aircraft) (STV 1.0 0.9091)) +(: cnet_isa_bcbe5dd2ae (IsA stealth_fighter fighter) (STV 1.0 0.9091)) +(: cnet_isa_2b7ba473dd (IsA stealth_fighter stealth_aircraft) (STV 1.0 0.9091)) +(: cnet_isa_32d456d66e (IsA steam gas) (STV 1.0 0.9339)) +(: cnet_isa_64252d355e (IsA steam vapor) (STV 1.0 0.9091)) +(: cnet_isa_2e3ffc64c4 (IsA steam_bath room) (STV 1.0 0.9091)) +(: cnet_isa_aa95f0c16a (IsA steam_chest chamber) (STV 1.0 0.9091)) +(: cnet_isa_a65b4fe48d (IsA steam_coal coal) (STV 1.0 0.9091)) +(: cnet_isa_33c46734eb (IsA steam_engine external_combustion_engine) (STV 1.0 0.9091)) +(: cnet_isa_02fd033b5a (IsA steam_fitting care) (STV 1.0 0.9091)) +(: cnet_isa_f53750f78f (IsA steam_heat heating_system) (STV 1.0 0.9091)) +(: cnet_isa_937a120e6a (IsA steam_iron iron) (STV 1.0 0.9091)) +(: cnet_isa_b4ef2641a4 (IsA steam_line pipe) (STV 1.0 0.9091)) +(: cnet_isa_b05de03d53 (IsA steam_locomotive locomotive) (STV 1.0 0.9091)) +(: cnet_isa_1147baa207 (IsA steam_shovel power_shovel) (STV 1.0 0.9091)) +(: cnet_isa_cac82ff33f (IsA steam_turbine turbine) (STV 1.0 0.9091)) +(: cnet_isa_4349af0312 (IsA steam_whistle whistle) (STV 1.0 0.9091)) +(: cnet_isa_21842911a0 (IsA steamboat boat) (STV 1.0 0.9091)) +(: cnet_isa_cc0bb7ec69 (IsA steamed_pudding pudding) (STV 1.0 0.9091)) +(: cnet_isa_b91147b198 (IsA steamer cooking_utensil) (STV 1.0 0.9091)) +(: cnet_isa_87dae53a43 (IsA steamer ship) (STV 1.0 0.9091)) +(: cnet_isa_bf51043e03 (IsA steamfitter craftsman) (STV 1.0 0.9091)) +(: cnet_isa_1d741b483e (IsA steaming cooking) (STV 1.0 0.9091)) +(: cnet_isa_6e083d8b2c (IsA steamroller vehicle) (STV 1.0 0.9091)) +(: cnet_isa_b5b7245457 (IsA steamship_company line) (STV 1.0 0.9091)) +(: cnet_isa_fc93b29706 (IsA stearic_acid saturated_fatty_acid) (STV 1.0 0.9091)) +(: cnet_isa_c12ca069d3 (IsA stearin glyceryl_ester) (STV 1.0 0.9091)) +(: cnet_isa_92495987ec (IsA steatopygia fatness) (STV 1.0 0.9091)) +(: cnet_isa_a1a677ba88 (IsA steatornis bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_88db95ee11 (IsA steatornithidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_c77373fdf8 (IsA steatorrhea symptom) (STV 1.0 0.9091)) +(: cnet_isa_1cae73e421 (IsA steed warhorse) (STV 1.0 0.9091)) +(: cnet_isa_fecf48f5be (IsA steel alloy) (STV 1.0 0.9091)) +(: cnet_isa_baceb75ca0 (IsA steel metal) (STV 1.0 0.9659)) +(: cnet_isa_4d8b441f4e (IsA steel sharpener) (STV 1.0 0.9091)) +(: cnet_isa_13cbd1b7b8 (IsA steel_arch_bridge bridge) (STV 1.0 0.9091)) +(: cnet_isa_8daed1ec0b (IsA steel_band dance_band) (STV 1.0 0.9091)) +(: cnet_isa_f6060d4d06 (IsA steel_blue blue) (STV 1.0 0.9091)) +(: cnet_isa_489598f910 (IsA steel_cable cable) (STV 1.0 0.9091)) +(: cnet_isa_228d0b264e (IsA steel_company company) (STV 1.0 0.9091)) +(: cnet_isa_b9206f7e60 (IsA steel_drum percussion_instrument) (STV 1.0 0.9091)) +(: cnet_isa_fb30a59ff5 (IsA steel_engraving engraving) (STV 1.0 0.9091)) +(: cnet_isa_05aab35358 (IsA steel_industry industry) (STV 1.0 0.9091)) +(: cnet_isa_1d710c2353 (IsA steel_mill factory) (STV 1.0 0.9091)) +(: cnet_isa_3fa9cdf18a (IsA steel_plate plate) (STV 1.0 0.9091)) +(: cnet_isa_b5e1be6ca3 (IsA steel_production production) (STV 1.0 0.9091)) +(: cnet_isa_1463521ea3 (IsA steel_trap trap) (STV 1.0 0.9091)) +(: cnet_isa_ba4bfbbd4a (IsA steel_trap acuteness) (STV 1.0 0.9091)) +(: cnet_isa_978f6e1bdb (IsA steel_wool abrasive) (STV 1.0 0.9091)) +(: cnet_isa_207de7b1e2 (IsA steel_wool_pad abrader) (STV 1.0 0.9091)) +(: cnet_isa_bfe2e71cb5 (IsA steelmaker maker) (STV 1.0 0.9091)) +(: cnet_isa_9dad0f5795 (IsA steelyard balance) (STV 1.0 0.9091)) +(: cnet_isa_e07b65e590 (IsA steenbok antelope) (STV 1.0 0.9091)) +(: cnet_isa_a7893ecd42 (IsA steep descent) (STV 1.0 0.9091)) +(: cnet_isa_90569718b8 (IsA steeper vessel) (STV 1.0 0.9091)) +(: cnet_isa_650edd5376 (IsA steeple tower) (STV 1.0 0.9091)) +(: cnet_isa_3d7502f103 (IsA steeplechase sport) (STV 1.0 0.9091)) +(: cnet_isa_e3d76f7260 (IsA steeplechase footrace) (STV 1.0 0.9091)) +(: cnet_isa_4aca3417e9 (IsA steeplechase horse_race) (STV 1.0 0.9091)) +(: cnet_isa_fdc7f8e4ec (IsA steeplechaser horse) (STV 1.0 0.9091)) +(: cnet_isa_f1d708f339 (IsA steeplechaser racer) (STV 1.0 0.9091)) +(: cnet_isa_0fb6976b14 (IsA steeplejack laborer) (STV 1.0 0.9091)) +(: cnet_isa_4996f7875a (IsA steer_roping roping) (STV 1.0 0.9091)) +(: cnet_isa_65bcd26b73 (IsA steerage accommodation) (STV 1.0 0.9091)) +(: cnet_isa_f1953c59a1 (IsA steerageway speed) (STV 1.0 0.9091)) +(: cnet_isa_2403a852b8 (IsA steering control) (STV 1.0 0.9091)) +(: cnet_isa_cb8225304c (IsA steering_committee committee) (STV 1.0 0.9091)) +(: cnet_isa_7734f46b25 (IsA steering_gear gear) (STV 1.0 0.9091)) +(: cnet_isa_de433fdcae (IsA steering_linkage mechanism) (STV 1.0 0.9091)) +(: cnet_isa_45728a6ee6 (IsA steering_system mechanism) (STV 1.0 0.9091)) +(: cnet_isa_47e9bb40d9 (IsA steering_wheel handwheel) (STV 1.0 0.9091)) +(: cnet_isa_715684acdd (IsA steganopus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_7f3c629cc0 (IsA stegocephalia animal_order) (STV 1.0 0.9091)) +(: cnet_isa_367ce73942 (IsA stegosaur armored_dinosaur) (STV 1.0 0.9091)) +(: cnet_isa_29690b50c0 (IsA stele antiquity) (STV 1.0 0.9091)) +(: cnet_isa_1dc7134cc5 (IsA stele stone) (STV 1.0 0.9091)) +(: cnet_isa_6e4e61d83d (IsA stele vascular_tissue) (STV 1.0 0.9091)) +(: cnet_isa_8ba59cf094 (IsA stelis orchid) (STV 1.0 0.9091)) +(: cnet_isa_956a9ad6c9 (IsA stellar_parallax heliocentric_parallax) (STV 1.0 0.9091)) +(: cnet_isa_7538fec43c (IsA stellaria caryophylloid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_0a4f877e13 (IsA stellate_venule venule) (STV 1.0 0.9091)) +(: cnet_isa_f90f67cba8 (IsA steller_s_sea_cow sea_cow) (STV 1.0 0.9091)) +(: cnet_isa_cdde3b223d (IsA steller_sea_lion sea_lion) (STV 1.0 0.9091)) +(: cnet_isa_abdc21506c (IsA stem tube) (STV 1.0 0.9091)) +(: cnet_isa_a6784cc040 (IsA stem_blight blight) (STV 1.0 0.9091)) +(: cnet_isa_a05dc40c92 (IsA stem_cell somatic_cell) (STV 1.0 0.9091)) +(: cnet_isa_0d4451f5b2 (IsA stem_cell_research biological_research) (STV 1.0 0.9091)) +(: cnet_isa_02f79e0199 (IsA stem_turn turn) (STV 1.0 0.9091)) +(: cnet_isa_cb2a6448f3 (IsA stem_vowel vowel) (STV 1.0 0.9091)) +(: cnet_isa_37ac0f7641 (IsA stem_winder watch) (STV 1.0 0.9091)) +(: cnet_isa_0fd70ca081 (IsA stemless_carline_thistle carline_thistle) (STV 1.0 0.9091)) +(: cnet_isa_86f44a86f7 (IsA stemless_golden_weed wildflower) (STV 1.0 0.9091)) +(: cnet_isa_3a914e5e16 (IsA stemless_hymenoxy wildflower) (STV 1.0 0.9091)) +(: cnet_isa_b86f661972 (IsA stemma tree) (STV 1.0 0.9091)) +(: cnet_isa_4d1c642b98 (IsA stemmatology humanistic_discipline) (STV 1.0 0.9091)) +(: cnet_isa_7d1f1c08f5 (IsA stemmer device) (STV 1.0 0.9091)) +(: cnet_isa_e19741c319 (IsA stemmer tamp) (STV 1.0 0.9091)) +(: cnet_isa_1599dbcb40 (IsA stemmer algorithm) (STV 1.0 0.9091)) +(: cnet_isa_ec51c2e9a1 (IsA stemmer worker) (STV 1.0 0.9091)) +(: cnet_isa_c54c796f85 (IsA sten_gun submachine_gun) (STV 1.0 0.9091)) +(: cnet_isa_3aa5a25157 (IsA stencil sheet) (STV 1.0 0.9091)) +(: cnet_isa_c3a73f1a5d (IsA stenocarpus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c4e00b471d (IsA stenochlaena fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_08b8be7fd4 (IsA stenograph typewriter) (STV 1.0 0.9091)) +(: cnet_isa_7bb3c229f3 (IsA stenograph character) (STV 1.0 0.9091)) +(: cnet_isa_c735e4f067 (IsA stenographer secretary) (STV 1.0 0.9091)) +(: cnet_isa_23cdb30009 (IsA stenography handwriting) (STV 1.0 0.9091)) +(: cnet_isa_e33223ddc5 (IsA stenopelmatidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_2e685b1733 (IsA stenopelmatus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_f04a5399c1 (IsA stenopterygius ichthyosaur) (STV 1.0 0.9091)) +(: cnet_isa_5fb2ba6586 (IsA stenosis pathology) (STV 1.0 0.9091)) +(: cnet_isa_f3a707aaa1 (IsA stenotaphrum monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_626b91e4a8 (IsA stenotomus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_4934221650 (IsA stenotus asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_58f5034116 (IsA stent tube) (STV 1.0 0.9091)) +(: cnet_isa_958ab500eb (IsA stentor ciliate) (STV 1.0 0.9091)) +(: cnet_isa_adae902bda (IsA stentor speaker) (STV 1.0 0.9091)) +(: cnet_isa_07ca57594c (IsA step locomotion) (STV 1.0 0.9091)) +(: cnet_isa_2b635f70d5 (IsA step block) (STV 1.0 0.9091)) +(: cnet_isa_fce64663f8 (IsA step support) (STV 1.0 0.9091)) +(: cnet_isa_0ad51496ed (IsA step small_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_270e3e9679 (IsA step_dancing dancing) (STV 1.0 0.9091)) +(: cnet_isa_52f6905200 (IsA step_down_transformer transformer) (STV 1.0 0.9091)) +(: cnet_isa_250147a18a (IsA step_ladder ladder) (STV 1.0 0.9091)) +(: cnet_isa_f2ea3358e7 (IsA step_stool stool) (STV 1.0 0.9091)) +(: cnet_isa_99055a2703 (IsA step_up_transformer transformer) (STV 1.0 0.9091)) +(: cnet_isa_5e09d4eb71 (IsA stepbrother brother) (STV 1.0 0.9091)) +(: cnet_isa_5b1a380a34 (IsA stepchild child) (STV 1.0 0.9091)) +(: cnet_isa_0c2bde8d32 (IsA stepdaughter stepchild) (STV 1.0 0.9091)) +(: cnet_isa_3af67f90e7 (IsA stepfather father_figure) (STV 1.0 0.9091)) +(: cnet_isa_15abe784a6 (IsA stepfather stepparent) (STV 1.0 0.9091)) +(: cnet_isa_c5ece9bc32 (IsA stephanion craniometric_point) (STV 1.0 0.9091)) +(: cnet_isa_f2d9547126 (IsA stephanomeria dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_accca83108 (IsA stephanotis shrub) (STV 1.0 0.9091)) +(: cnet_isa_ac70af0791 (IsA stepmother stepparent) (STV 1.0 0.9091)) +(: cnet_isa_7f884ca028 (IsA stepparent parent) (STV 1.0 0.9091)) +(: cnet_isa_02bd54a3a2 (IsA steppe plain) (STV 1.0 0.9091)) +(: cnet_isa_e3ea06eb47 (IsA stepper horse) (STV 1.0 0.9091)) +(: cnet_isa_c1df44b90e (IsA stepper motor) (STV 1.0 0.9091)) +(: cnet_isa_b060479bc8 (IsA stepping_stone mean) (STV 1.0 0.9091)) +(: cnet_isa_4ea0845c72 (IsA stepping_stone rock) (STV 1.0 0.9091)) +(: cnet_isa_a186e8054e (IsA steprelationship affinity) (STV 1.0 0.9091)) +(: cnet_isa_399a0baa78 (IsA step path) (STV 1.0 0.9091)) +(: cnet_isa_a9e420ffc2 (IsA stepson stepchild) (STV 1.0 0.9091)) +(: cnet_isa_057519d7bf (IsA steradian angular_unit) (STV 1.0 0.9091)) +(: cnet_isa_8290c005e5 (IsA stercorariidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_085d1764d0 (IsA stercorarius bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_f5a0fbde33 (IsA sterculia angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_5b900cff6c (IsA sterculia_gum gum) (STV 1.0 0.9091)) +(: cnet_isa_76da5bf3fc (IsA sterculiaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_58e7cc5a17 (IsA stereo picture) (STV 1.0 0.9091)) +(: cnet_isa_27a81b673e (IsA stereo reproducer) (STV 1.0 0.9091)) +(: cnet_isa_d675e99c7f (IsA stereoscope optical_device) (STV 1.0 0.9091)) +(: cnet_isa_d8e9cbe20c (IsA stereoscopic_vision binocular_vision) (STV 1.0 0.9091)) +(: cnet_isa_b8d3e44744 (IsA stereospondyli animal_order) (STV 1.0 0.9091)) +(: cnet_isa_7bf03a66b4 (IsA stereotype representation) (STV 1.0 0.9091)) +(: cnet_isa_900c1b1054 (IsA sterility physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_0afe39c66b (IsA sterilization cleaning) (STV 1.0 0.9091)) +(: cnet_isa_789a84e0e3 (IsA sterilization operation) (STV 1.0 0.9091)) +(: cnet_isa_20e30c9986 (IsA sterling money) (STV 1.0 0.9091)) +(: cnet_isa_605cdb5c4e (IsA sterling_area bloc) (STV 1.0 0.9091)) +(: cnet_isa_7cd1149650 (IsA sterling_silver alloy) (STV 1.0 0.9091)) +(: cnet_isa_6f47313c0e (IsA stern rear) (STV 1.0 0.9091)) +(: cnet_isa_771442fcc1 (IsA stern_chaser naval_gun) (STV 1.0 0.9091)) +(: cnet_isa_aa94a87658 (IsA sterna bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_292654ac8b (IsA sterninae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_b6bd0d3347 (IsA sternness asperity) (STV 1.0 0.9091)) +(: cnet_isa_ed0cbdecf0 (IsA sternness unpermissiveness) (STV 1.0 0.9091)) +(: cnet_isa_7905a4d389 (IsA sternocleidomastoid skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_e2af69bc64 (IsA sternocleidomastoid_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_72116a4790 (IsA sternotherus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_9a78477d59 (IsA sternpost timber) (STV 1.0 0.9091)) +(: cnet_isa_cb0f1a792d (IsA sternum bone) (STV 1.0 0.9091)) +(: cnet_isa_9e6fa64a30 (IsA sternutator compound) (STV 1.0 0.9091)) +(: cnet_isa_4a325bffe4 (IsA sternwheeler paddle_steamer) (STV 1.0 0.9091)) +(: cnet_isa_38298de31d (IsA steroid organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_53782d8570 (IsA steroid_hormone hormone) (STV 1.0 0.9091)) +(: cnet_isa_21a95559cf (IsA sterol alcohol) (STV 1.0 0.9091)) +(: cnet_isa_aba0f5e251 (IsA sterol steroid) (STV 1.0 0.9091)) +(: cnet_isa_0ac3dd9ea4 (IsA stethoscope device) (STV 1.0 0.9572)) +(: cnet_isa_28ffe0b048 (IsA stethoscope listening_device) (STV 1.0 0.9091)) +(: cnet_isa_b983299e9d (IsA stethoscope medical_device) (STV 1.0 0.9091)) +(: cnet_isa_d37bca5ba4 (IsA stethoscope medical_instrument) (STV 1.0 0.9339)) +(: cnet_isa_113cd7c6ab (IsA stethoscope tool) (STV 1.0 0.9339)) +(: cnet_isa_90d3c11f65 (IsA stevedore laborer) (STV 1.0 0.9091)) +(: cnet_isa_6d54dcc423 (IsA steven_law law) (STV 1.0 0.9091)) +(: cnet_isa_74517aa174 (IsA stevia herb) (STV 1.0 0.9091)) +(: cnet_isa_0794dbf744 (IsA stew dish) (STV 1.0 0.9091)) +(: cnet_isa_8fadbd427b (IsA stew_meat meat) (STV 1.0 0.9091)) +(: cnet_isa_f425c63cdb (IsA steward attendant) (STV 1.0 0.9091)) +(: cnet_isa_f7b6f783f9 (IsA steward fiduciary) (STV 1.0 0.9091)) +(: cnet_isa_89b7b7e63c (IsA steward officer) (STV 1.0 0.9091)) +(: cnet_isa_64cfd3a078 (IsA stewardess steward) (STV 1.0 0.9091)) +(: cnet_isa_15e0d1d4a8 (IsA stewardship position) (STV 1.0 0.9091)) +(: cnet_isa_531ee3b392 (IsA stewing agitation) (STV 1.0 0.9091)) +(: cnet_isa_b6295cc144 (IsA stewing_pan saucepan) (STV 1.0 0.9091)) +(: cnet_isa_64ed1b4235 (IsA sthene force_unit) (STV 1.0 0.9091)) +(: cnet_isa_af442b44bd (IsA stheno gorgon) (STV 1.0 0.9091)) +(: cnet_isa_06a1a2c43e (IsA stibnite mineral) (STV 1.0 0.9091)) +(: cnet_isa_387e265941 (IsA stichaeidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_8a411c064e (IsA sticherus fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_34ab67eb14 (IsA stick punishment) (STV 1.0 0.9091)) +(: cnet_isa_19944f255c (IsA stick implement) (STV 1.0 0.9091)) +(: cnet_isa_dfe39e11dd (IsA stick lever) (STV 1.0 0.9091)) +(: cnet_isa_e972d66d1a (IsA stick butter) (STV 1.0 0.9091)) +(: cnet_isa_ca055417d8 (IsA stick margarine) (STV 1.0 0.9091)) +(: cnet_isa_d9960578ab (IsA stick sport_equipment) (STV 1.0 0.9091)) +(: cnet_isa_07d74c2ecc (IsA stick limb) (STV 1.0 0.9091)) +(: cnet_isa_e3832913a4 (IsA stick_cinnamon cinnamon) (STV 1.0 0.9091)) +(: cnet_isa_38ea583ed3 (IsA stick_figure drawing) (STV 1.0 0.9091)) +(: cnet_isa_d1acfe97ca (IsA stick_horse plaything) (STV 1.0 0.9091)) +(: cnet_isa_4a471078cd (IsA stick_lac lac) (STV 1.0 0.9091)) +(: cnet_isa_4dff3b193a (IsA stickball baseball) (STV 1.0 0.9091)) +(: cnet_isa_f3a450c20d (IsA stickiness viscosity) (STV 1.0 0.9091)) +(: cnet_isa_3ccd598cb1 (IsA sticking_point detail) (STV 1.0 0.9091)) +(: cnet_isa_be91ded116 (IsA stickleback spiny_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_a33627e5a3 (IsA stickler martinet) (STV 1.0 0.9091)) +(: cnet_isa_7a1f6589fd (IsA stickpin pin) (STV 1.0 0.9091)) +(: cnet_isa_77e9ed9d5d (IsA stick_and_stone building_material) (STV 1.0 0.9091)) +(: cnet_isa_3251f30e3a (IsA sticktight flea) (STV 1.0 0.9091)) +(: cnet_isa_1bf5df3d3a (IsA stickweed herb) (STV 1.0 0.9091)) +(: cnet_isa_f1cd86cdc3 (IsA sticky_aster wildflower) (STV 1.0 0.9091)) +(: cnet_isa_a019f42b4e (IsA sticky_end deoxyribonucleic_acid) (STV 1.0 0.9091)) +(: cnet_isa_c01a93e35d (IsA sticky_geranium cranesbill) (STV 1.0 0.9091)) +(: cnet_isa_9021cc37f9 (IsA stictomy mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_3aab086cd8 (IsA stictopelia bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_1d44937d74 (IsA stiff man) (STV 1.0 0.9091)) +(: cnet_isa_f79007b628 (IsA stiff_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_c70bd9697c (IsA stiff_upper_lip self_restraint) (STV 1.0 0.9091)) +(: cnet_isa_b09c65e351 (IsA stiffener filler) (STV 1.0 0.9091)) +(: cnet_isa_289b025392 (IsA stiffening procedure) (STV 1.0 0.9091)) +(: cnet_isa_7b383857d2 (IsA stiffening natural_process) (STV 1.0 0.9091)) +(: cnet_isa_d2dd1078fc (IsA stiffness awkwardness) (STV 1.0 0.9091)) +(: cnet_isa_e3f8f1a2fe (IsA stiffness inelasticity) (STV 1.0 0.9091)) +(: cnet_isa_50d5bd62be (IsA stiffness resoluteness) (STV 1.0 0.9091)) +(: cnet_isa_f93376257f (IsA stifle joint) (STV 1.0 0.9091)) +(: cnet_isa_0a374915eb (IsA stifler person) (STV 1.0 0.9091)) +(: cnet_isa_82246bbfb4 (IsA stigma blemish) (STV 1.0 0.9091)) +(: cnet_isa_71a03fc212 (IsA stigma spiracle) (STV 1.0 0.9091)) +(: cnet_isa_fe867772d5 (IsA stigma reproductive_structure) (STV 1.0 0.9091)) +(: cnet_isa_94e5985e25 (IsA stigmata wound) (STV 1.0 0.9091)) +(: cnet_isa_4d01deecc4 (IsA stigmatic person) (STV 1.0 0.9091)) +(: cnet_isa_c0be1abf7b (IsA stigmatism sight) (STV 1.0 0.9091)) +(: cnet_isa_6cd4eec568 (IsA stigmatism condition) (STV 1.0 0.9091)) +(: cnet_isa_d4642e9e81 (IsA stigmatization disapproval) (STV 1.0 0.9091)) +(: cnet_isa_857e4a14a2 (IsA stile upright) (STV 1.0 0.9091)) +(: cnet_isa_8b581006cc (IsA stiletto dagger) (STV 1.0 0.9091)) +(: cnet_isa_aec7720268 (IsA still_s_disease rheumatoid_arthritis) (STV 1.0 0.9091)) +(: cnet_isa_7e55343714 (IsA still apparatus) (STV 1.0 0.9091)) +(: cnet_isa_6c753abfb5 (IsA still picture) (STV 1.0 0.9091)) +(: cnet_isa_5136522672 (IsA still_life painting) (STV 1.0 0.9091)) +(: cnet_isa_8901d64499 (IsA stillborn_infant neonate) (STV 1.0 0.9091)) +(: cnet_isa_b4c26326be (IsA stillness calmness) (STV 1.0 0.9091)) +(: cnet_isa_5cec55a8d1 (IsA stillroom pantry) (STV 1.0 0.9091)) +(: cnet_isa_7ac60f5b02 (IsA stillson_wrench pipe_wrench) (STV 1.0 0.9091)) +(: cnet_isa_63b9949ef1 (IsA stilt shorebird) (STV 1.0 0.9091)) +(: cnet_isa_a1b1331175 (IsA stilt pole) (STV 1.0 0.9091)) +(: cnet_isa_7b22bae35b (IsA stilton bleu) (STV 1.0 0.9091)) +(: cnet_isa_5775467789 (IsA stimulant drug) (STV 1.0 0.9091)) +(: cnet_isa_415b58ec7f (IsA stimulation arousal) (STV 1.0 0.9091)) +(: cnet_isa_4c49c2b76e (IsA stimulation information) (STV 1.0 0.9091)) +(: cnet_isa_13349b4e02 (IsA stimulation natural_process) (STV 1.0 0.9091)) +(: cnet_isa_a223b6510b (IsA sting injury) (STV 1.0 0.9091)) +(: cnet_isa_eb2ab6089e (IsA sting pain) (STV 1.0 0.9091)) +(: cnet_isa_eb79c4aa13 (IsA sting_operation bunco) (STV 1.0 0.9091)) +(: cnet_isa_3ae5fa7853 (IsA sting_operation operation) (STV 1.0 0.9091)) +(: cnet_isa_a7b0e9665d (IsA stinger blow) (STV 1.0 0.9091)) +(: cnet_isa_e322dbb37f (IsA stinger organ) (STV 1.0 0.9091)) +(: cnet_isa_b4e7c6ab3a (IsA stinger heat_seeking_missile) (STV 1.0 0.9091)) +(: cnet_isa_10f695c695 (IsA stinger surface_to_air_missile) (STV 1.0 0.9091)) +(: cnet_isa_b67646f244 (IsA stinger abuse) (STV 1.0 0.9091)) +(: cnet_isa_191ebf75a7 (IsA stinger cocktail) (STV 1.0 0.9091)) +(: cnet_isa_cc292f4bfa (IsA stinginess trait) (STV 1.0 0.9091)) +(: cnet_isa_2a0f695185 (IsA stinging_hair hair) (STV 1.0 0.9091)) +(: cnet_isa_71878a619c (IsA stinging_nettle nettle) (STV 1.0 0.9091)) +(: cnet_isa_d4b498f690 (IsA stingray ray) (STV 1.0 0.9091)) +(: cnet_isa_ddf7e44da7 (IsA stink_bell fritillary) (STV 1.0 0.9091)) +(: cnet_isa_1acb213c47 (IsA stink_bomb bomb) (STV 1.0 0.9091)) +(: cnet_isa_84333f006c (IsA stinker thing) (STV 1.0 0.9091)) +(: cnet_isa_a3cbbaeb3e (IsA stinkhorn fungus) (STV 1.0 0.9091)) +(: cnet_isa_6bfd97f2b5 (IsA stinking_cedar yew) (STV 1.0 0.9091)) +(: cnet_isa_21c10265c9 (IsA stinking_goosefoot goosefoot) (STV 1.0 0.9091)) +(: cnet_isa_d38abf38a6 (IsA stinking_hellebore hellebore) (STV 1.0 0.9091)) +(: cnet_isa_0899aacb79 (IsA stinking_iris iris) (STV 1.0 0.9091)) +(: cnet_isa_7b00064abe (IsA stinky_squid stinkhorn) (STV 1.0 0.9091)) +(: cnet_isa_10b8943289 (IsA stint job) (STV 1.0 0.9091)) +(: cnet_isa_cf6e220bd4 (IsA stinter economizer) (STV 1.0 0.9091)) +(: cnet_isa_1295a2fc9d (IsA stipe stalk) (STV 1.0 0.9091)) +(: cnet_isa_b75af25806 (IsA stipend regular_payment) (STV 1.0 0.9091)) +(: cnet_isa_423d1717b7 (IsA stipendiary magistrate) (STV 1.0 0.9091)) +(: cnet_isa_ca395ca165 (IsA stippler painter) (STV 1.0 0.9091)) +(: cnet_isa_5476c8ba5c (IsA stipulation restriction) (STV 1.0 0.9091)) +(: cnet_isa_a5b716372b (IsA stipulation concession) (STV 1.0 0.9091)) +(: cnet_isa_0ad3a24a43 (IsA stipulative_definition definition) (STV 1.0 0.9091)) +(: cnet_isa_1af3577a5a (IsA stipule plant_part) (STV 1.0 0.9091)) +(: cnet_isa_c59314a3d3 (IsA stir agitation) (STV 1.0 0.9091)) +(: cnet_isa_34d393c465 (IsA stirk cattle) (STV 1.0 0.9091)) +(: cnet_isa_f2b25759a4 (IsA stirrer implement) (STV 1.0 0.9091)) +(: cnet_isa_0a674778ea (IsA stirring agitation) (STV 1.0 0.9091)) +(: cnet_isa_1a8f2c33c6 (IsA stirrup support) (STV 1.0 0.9091)) +(: cnet_isa_659e340204 (IsA stirrup_cup drink) (STV 1.0 0.9091)) +(: cnet_isa_8c1379547e (IsA stirrup_pump pump) (STV 1.0 0.9091)) +(: cnet_isa_50a9ac8601 (IsA stitch sewing) (STV 1.0 0.9091)) +(: cnet_isa_f1f44b1be5 (IsA stitch pain) (STV 1.0 0.9091)) +(: cnet_isa_a2a198be6a (IsA stitcher finisher) (STV 1.0 0.9091)) +(: cnet_isa_882c8dc6e8 (IsA stitcher garmentmaker) (STV 1.0 0.9091)) +(: cnet_isa_9dc75aed93 (IsA stitchwort chickweed) (STV 1.0 0.9091)) +(: cnet_isa_42f16d0893 (IsA stizidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_b89fed5e5d (IsA stizostedion fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_7790cbd4a6 (IsA stoat ermine) (STV 1.0 0.9091)) +(: cnet_isa_295fbae6f0 (IsA stob stick) (STV 1.0 0.9091)) +(: cnet_isa_6e401fcf48 (IsA stochastic_process model) (STV 1.0 0.9091)) +(: cnet_isa_de6bdf8fc3 (IsA stock handle) (STV 1.0 0.9091)) +(: cnet_isa_b802ee9133 (IsA stock lumber) (STV 1.0 0.9091)) +(: cnet_isa_e52093e2dc (IsA stock merchandise) (STV 1.0 0.9091)) +(: cnet_isa_a117ec40cf (IsA stock support) (STV 1.0 0.9091)) +(: cnet_isa_ddbd272d0b (IsA stock flower) (STV 1.0 0.9091)) +(: cnet_isa_8a20011a6e (IsA stock plant_part) (STV 1.0 0.9091)) +(: cnet_isa_f0c64ffef6 (IsA stock stalk) (STV 1.0 0.9091)) +(: cnet_isa_dead97a196 (IsA stock capital) (STV 1.0 0.9091)) +(: cnet_isa_57455be986 (IsA stock repute) (STV 1.0 0.9091)) +(: cnet_isa_28641d5e7d (IsA stock_buyback purchase) (STV 1.0 0.9091)) +(: cnet_isa_1e17aa1e45 (IsA stock_car car) (STV 1.0 0.9091)) +(: cnet_isa_8d314d6d05 (IsA stock_car racer) (STV 1.0 0.9091)) +(: cnet_isa_d34f065022 (IsA stock_certificate security) (STV 1.0 0.9091)) +(: cnet_isa_120e79d4de (IsA stock_company company) (STV 1.0 0.9091)) +(: cnet_isa_1ad4e85849 (IsA stock_company theater_company) (STV 1.0 0.9091)) +(: cnet_isa_00d5eb2d76 (IsA stock_cube broth) (STV 1.0 0.9091)) +(: cnet_isa_6c6084f4d7 (IsA stock_dividend dividend) (STV 1.0 0.9091)) +(: cnet_isa_26b2dbcde6 (IsA stock_exchange exchange) (STV 1.0 0.9091)) +(: cnet_isa_b4d68805fc (IsA stock_in_trade equipment) (STV 1.0 0.9091)) +(: cnet_isa_b3fcc9383a (IsA stock_index index) (STV 1.0 0.9091)) +(: cnet_isa_034be7ec1e (IsA stock_index_future future_contract) (STV 1.0 0.9091)) +(: cnet_isa_51673ec6fb (IsA stock_issue issue) (STV 1.0 0.9091)) +(: cnet_isa_6616ccb9e1 (IsA stock_of_record common_stock) (STV 1.0 0.9091)) +(: cnet_isa_e7b488ab47 (IsA stock_option benefit) (STV 1.0 0.9091)) +(: cnet_isa_75897e0415 (IsA stock_option option) (STV 1.0 0.9091)) +(: cnet_isa_4e621e2457 (IsA stock_photograph picture) (STV 1.0 0.9091)) +(: cnet_isa_e8661117ed (IsA stock_power power_of_attorney) (STV 1.0 0.9091)) +(: cnet_isa_089a37e1a3 (IsA stock_purchase_plan plan) (STV 1.0 0.9091)) +(: cnet_isa_7b28ce7ce3 (IsA stock_saddle saddle) (STV 1.0 0.9091)) +(: cnet_isa_8e913a6f1b (IsA stock_symbol symbol) (STV 1.0 0.9091)) +(: cnet_isa_c5bed89316 (IsA stock_take inventory) (STV 1.0 0.9091)) +(: cnet_isa_916d7b2018 (IsA stock_taker employee) (STV 1.0 0.9091)) +(: cnet_isa_7c3de06156 (IsA stock_trader trader) (STV 1.0 0.9091)) +(: cnet_isa_224fee23d5 (IsA stock_warrant guarantee) (STV 1.0 0.9091)) +(: cnet_isa_57663c9788 (IsA stockade fortification) (STV 1.0 0.9091)) +(: cnet_isa_38df304b87 (IsA stockbroker agent) (STV 1.0 0.9091)) +(: cnet_isa_1477809ac6 (IsA stockbroker_belt suburb) (STV 1.0 0.9091)) +(: cnet_isa_36ac41adf2 (IsA stockcar boxcar) (STV 1.0 0.9091)) +(: cnet_isa_11faee9557 (IsA stocker domestic_animal) (STV 1.0 0.9091)) +(: cnet_isa_4ea3bb4f3c (IsA stockfish fish) (STV 1.0 0.9091)) +(: cnet_isa_7d47b448d1 (IsA stockholder investor) (STV 1.0 0.9091)) +(: cnet_isa_9804119b28 (IsA stockholder_of_record stockholder) (STV 1.0 0.9091)) +(: cnet_isa_97b9de2e58 (IsA stockholder_meeting meeting) (STV 1.0 0.9091)) +(: cnet_isa_680db16e82 (IsA stockholding ownership) (STV 1.0 0.9091)) +(: cnet_isa_bee1c376f4 (IsA stockholding property) (STV 1.0 0.9091)) +(: cnet_isa_7f8bb5b945 (IsA stockholm in_sweden) (STV 1.0 0.9091)) +(: cnet_isa_35bc735974 (IsA stockinet knit) (STV 1.0 0.9091)) +(: cnet_isa_fa6fef41c9 (IsA stockinette_stitch knitting_stitch) (STV 1.0 0.9091)) +(: cnet_isa_79d802e290 (IsA stocking provision) (STV 1.0 0.9091)) +(: cnet_isa_9e330d7065 (IsA stocking hosiery) (STV 1.0 0.9091)) +(: cnet_isa_8be10a1f9d (IsA stocking_filler christma_present) (STV 1.0 0.9091)) +(: cnet_isa_e7f3c5b974 (IsA stockist supplier) (STV 1.0 0.9091)) +(: cnet_isa_0c23d43e57 (IsA stockjobber stock_trader) (STV 1.0 0.9091)) +(: cnet_isa_574dd711d8 (IsA stockman farmer) (STV 1.0 0.9091)) +(: cnet_isa_03e35795a6 (IsA stockpile pile) (STV 1.0 0.9091)) +(: cnet_isa_f4b36e851e (IsA stockpiling repositing) (STV 1.0 0.9091)) +(: cnet_isa_134c011b48 (IsA stockpot pot) (STV 1.0 0.9091)) +(: cnet_isa_12b972cd96 (IsA stockroom storeroom) (STV 1.0 0.9091)) +(: cnet_isa_7a82336d52 (IsA stock framework) (STV 1.0 0.9091)) +(: cnet_isa_69e6c87b66 (IsA stock instrument_of_punishment) (STV 1.0 0.9091)) +(: cnet_isa_aef6b8c961 (IsA stocktaking reappraisal) (STV 1.0 0.9091)) +(: cnet_isa_9a02ac6b54 (IsA stockyard yard) (STV 1.0 0.9091)) +(: cnet_isa_0d7c934162 (IsA stodge nutriment) (STV 1.0 0.9091)) +(: cnet_isa_de33a5d91e (IsA stodginess graveness) (STV 1.0 0.9091)) +(: cnet_isa_d86fa96e7a (IsA stogie cigar) (STV 1.0 0.9091)) +(: cnet_isa_b886a61022 (IsA stoic adult) (STV 1.0 0.9091)) +(: cnet_isa_22bee55a56 (IsA stoic philosopher) (STV 1.0 0.9091)) +(: cnet_isa_31c8caf920 (IsA stoichiometry ratio) (STV 1.0 0.9091)) +(: cnet_isa_1a90958a32 (IsA stoicism unemotionality) (STV 1.0 0.9091)) +(: cnet_isa_b45b188712 (IsA stoicism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_039cc8c526 (IsA stokehold chamber) (STV 1.0 0.9091)) +(: cnet_isa_f505c79519 (IsA stoker mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_c4d6a841ed (IsA stoker laborer) (STV 1.0 0.9091)) +(: cnet_isa_0675ea5d92 (IsA stoke_aster flower) (STV 1.0 0.9091)) +(: cnet_isa_43ab7cde13 (IsA stokesia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c3cc73d3fa (IsA stole scarf) (STV 1.0 0.9091)) +(: cnet_isa_683287b339 (IsA stolen_property transferred_property) (STV 1.0 0.9091)) +(: cnet_isa_bcfcf22846 (IsA stolon plant_organ) (STV 1.0 0.9091)) +(: cnet_isa_7af138a210 (IsA stoma aperture) (STV 1.0 0.9091)) +(: cnet_isa_7932c2ef2d (IsA stoma orifice) (STV 1.0 0.9091)) +(: cnet_isa_a6fa087b01 (IsA stomach internal_organ) (STV 1.0 0.9091)) +(: cnet_isa_e1d4be6ad3 (IsA stomach appetite) (STV 1.0 0.9091)) +(: cnet_isa_3eee130492 (IsA stomach inclination) (STV 1.0 0.9091)) +(: cnet_isa_e6a53fa208 (IsA stomach_exercise exercise) (STV 1.0 0.9091)) +(: cnet_isa_fd8948971c (IsA stomach_pump suction_pump) (STV 1.0 0.9091)) +(: cnet_isa_677d28711a (IsA stomach_sweetbread variety_meat) (STV 1.0 0.9091)) +(: cnet_isa_0a28c85ce1 (IsA stomachache ache) (STV 1.0 0.9091)) +(: cnet_isa_6ca95fdfb4 (IsA stomacher garment) (STV 1.0 0.9091)) +(: cnet_isa_920a834c94 (IsA stomatitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_19a566c012 (IsA stomatopod crustacean) (STV 1.0 0.9091)) +(: cnet_isa_c0214cd182 (IsA stomatopoda animal_order) (STV 1.0 0.9091)) +(: cnet_isa_6dbc0784c7 (IsA stomp social_dancing) (STV 1.0 0.9091)) +(: cnet_isa_b663fa6917 (IsA stone another_word_for_rock) (STV 1.0 0.9707)) +(: cnet_isa_750d53d58c (IsA stone small_rock) (STV 1.0 0.9524)) +(: cnet_isa_ee75e08217 (IsA stone building_material) (STV 1.0 0.9091)) +(: cnet_isa_cf3d5aab42 (IsA stone coldness) (STV 1.0 0.9091)) +(: cnet_isa_be8ab51467 (IsA stone pericarp) (STV 1.0 0.9091)) +(: cnet_isa_42e57ea25c (IsA stone avoirdupois_unit) (STV 1.0 0.9091)) +(: cnet_isa_57f1bbb318 (IsA stone_bass sea_bass) (STV 1.0 0.9091)) +(: cnet_isa_0a98185ee8 (IsA stone_bramble bramble_bush) (STV 1.0 0.9091)) +(: cnet_isa_b13220fab8 (IsA stone_breaker breaker) (STV 1.0 0.9091)) +(: cnet_isa_6431f18d93 (IsA stone_crab crab) (STV 1.0 0.9091)) +(: cnet_isa_14460a3431 (IsA stone_curlew shorebird) (STV 1.0 0.9091)) +(: cnet_isa_cf3940a605 (IsA stone_marten marten) (STV 1.0 0.9091)) +(: cnet_isa_151254a383 (IsA stone_parsley herb) (STV 1.0 0.9091)) +(: cnet_isa_7a77f44a7a (IsA stone_pine pine) (STV 1.0 0.9091)) +(: cnet_isa_e0e156debc (IsA stone_wall fence) (STV 1.0 0.9091)) +(: cnet_isa_9c1b262528 (IsA stonechat old_world_chat) (STV 1.0 0.9091)) +(: cnet_isa_798d2d9bb1 (IsA stonecress herb) (STV 1.0 0.9091)) +(: cnet_isa_d5c9a94343 (IsA stonecrop sedum) (STV 1.0 0.9091)) +(: cnet_isa_68776213e5 (IsA stonecutter quarryman) (STV 1.0 0.9091)) +(: cnet_isa_ce8a414b9e (IsA stonefish scorpaenid) (STV 1.0 0.9091)) +(: cnet_isa_d6b788a532 (IsA stonefly insect) (STV 1.0 0.9091)) +(: cnet_isa_5cfeb64f9b (IsA stoner attacker) (STV 1.0 0.9091)) +(: cnet_isa_8e45638f77 (IsA stonewaller obstructionist) (STV 1.0 0.9091)) +(: cnet_isa_dc51096346 (IsA stonewalling stall) (STV 1.0 0.9091)) +(: cnet_isa_33fb2dbf75 (IsA stoneware ceramic_ware) (STV 1.0 0.9091)) +(: cnet_isa_1840a425d2 (IsA stonework masonry) (STV 1.0 0.9091)) +(: cnet_isa_d562f45996 (IsA stonewort green_algae) (STV 1.0 0.9091)) +(: cnet_isa_fbaa31015f (IsA stoning corporal_punishment) (STV 1.0 0.9091)) +(: cnet_isa_66ed11a55b (IsA stony_coral coral) (STV 1.0 0.9091)) +(: cnet_isa_d9ad8eef88 (IsA stool 3_legged_chair) (STV 1.0 0.9091)) +(: cnet_isa_090654753c (IsA stool seat) (STV 1.0 0.9091)) +(: cnet_isa_407c41a404 (IsA stool stump) (STV 1.0 0.9091)) +(: cnet_isa_37bb8e0578 (IsA stool_pigeon bait) (STV 1.0 0.9091)) +(: cnet_isa_f28da0dcac (IsA stoop inclination) (STV 1.0 0.9091)) +(: cnet_isa_38c2cc273f (IsA stoop porch) (STV 1.0 0.9091)) +(: cnet_isa_4bf96fb9d3 (IsA stooper person) (STV 1.0 0.9091)) +(: cnet_isa_853fe8fdff (IsA stooper salvager) (STV 1.0 0.9091)) +(: cnet_isa_4f3b6dae20 (IsA stop end) (STV 1.0 0.9091)) +(: cnet_isa_d5b22d3ec4 (IsA stop act) (STV 1.0 0.9091)) +(: cnet_isa_b9c5406a75 (IsA stop stay) (STV 1.0 0.9091)) +(: cnet_isa_644daa67e1 (IsA stop ending) (STV 1.0 0.9091)) +(: cnet_isa_05a2018d00 (IsA stop topographic_point) (STV 1.0 0.9091)) +(: cnet_isa_95eae4ff0d (IsA stop knob) (STV 1.0 0.9091)) +(: cnet_isa_cacf893295 (IsA stop_bath developer) (STV 1.0 0.9091)) +(: cnet_isa_e7cb4fbd40 (IsA stop_consonant obstruent) (STV 1.0 0.9091)) +(: cnet_isa_dedb1ccf10 (IsA stop_order order) (STV 1.0 0.9091)) +(: cnet_isa_f331ef07b1 (IsA stop_payment order) (STV 1.0 0.9091)) +(: cnet_isa_b6dc8309fc (IsA stop_press new) (STV 1.0 0.9091)) +(: cnet_isa_62f77195d6 (IsA stopcock faucet) (STV 1.0 0.9091)) +(: cnet_isa_8b97e76b5b (IsA stoplight visual_signal) (STV 1.0 0.9091)) +(: cnet_isa_a6837d94b6 (IsA stopover stop) (STV 1.0 0.9091)) +(: cnet_isa_97e87028fd (IsA stopper playing_card) (STV 1.0 0.9091)) +(: cnet_isa_e37f26cdfa (IsA stopper_knot knot) (STV 1.0 0.9091)) +(: cnet_isa_9eee9dcf47 (IsA stopping playing) (STV 1.0 0.9091)) +(: cnet_isa_fbd0c669bf (IsA stopping_point end) (STV 1.0 0.9091)) +(: cnet_isa_1f412c19d1 (IsA stopwatch timer) (STV 1.0 0.9091)) +(: cnet_isa_377ca016a0 (IsA storage commercial_enterprise) (STV 1.0 0.9091)) +(: cnet_isa_776f67942c (IsA storage retention) (STV 1.0 0.9091)) +(: cnet_isa_6abf9c5068 (IsA storage computer_operation) (STV 1.0 0.9091)) +(: cnet_isa_edef8af637 (IsA storage_battery voltaic_battery) (STV 1.0 0.9091)) +(: cnet_isa_83a040c035 (IsA storage_battery_grid plate) (STV 1.0 0.9091)) +(: cnet_isa_b58e1ef8b5 (IsA storage_cell cell) (STV 1.0 0.9091)) +(: cnet_isa_626dce7da7 (IsA storage_medium medium) (STV 1.0 0.9091)) +(: cnet_isa_2fc6dd82d9 (IsA storage_pan container) (STV 1.0 0.9091)) +(: cnet_isa_2d00f31722 (IsA storage_ring container) (STV 1.0 0.9091)) +(: cnet_isa_c5a3f75e9a (IsA storage_space area) (STV 1.0 0.9091)) +(: cnet_isa_fe39b9ff6c (IsA storax natural_resin) (STV 1.0 0.9091)) +(: cnet_isa_0bc490d7ec (IsA store accumulation) (STV 1.0 0.9091)) +(: cnet_isa_13ca58f72c (IsA store_cheese cheddar) (STV 1.0 0.9091)) +(: cnet_isa_99e0ee55ab (IsA store_detective private_detective) (STV 1.0 0.9091)) +(: cnet_isa_8d465e9dd1 (IsA stored_program program) (STV 1.0 0.9091)) +(: cnet_isa_d671ef4b40 (IsA storehouse depository) (STV 1.0 0.9091)) +(: cnet_isa_feacc6e38b (IsA storeria reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_6dbaa4ec66 (IsA storeroom room) (STV 1.0 0.9091)) +(: cnet_isa_b9390fe0b4 (IsA store building) (STV 1.0 0.9339)) +(: cnet_isa_f10eb5eb00 (IsA stork wading_bird) (STV 1.0 0.9091)) +(: cnet_isa_2fad7c5974 (IsA storksbill geranium) (STV 1.0 0.9091)) +(: cnet_isa_df0765755c (IsA storm violent_weather) (STV 1.0 0.9091)) +(: cnet_isa_c49a83e226 (IsA storm assault) (STV 1.0 0.9091)) +(: cnet_isa_32cdf122c9 (IsA storm atmospheric_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_d35f4a242d (IsA storm disturbance) (STV 1.0 0.9091)) +(: cnet_isa_dc1db7a011 (IsA storm_cellar shelter) (STV 1.0 0.9091)) +(: cnet_isa_dd21655b5b (IsA storm_center center) (STV 1.0 0.9091)) +(: cnet_isa_61e26860a9 (IsA storm_center disturbance) (STV 1.0 0.9091)) +(: cnet_isa_8f64a4fae5 (IsA storm_cloud cloud) (STV 1.0 0.9091)) +(: cnet_isa_61071f7b2e (IsA storm_cone storm_signal) (STV 1.0 0.9091)) +(: cnet_isa_ccfd768ae1 (IsA storm_door door) (STV 1.0 0.9091)) +(: cnet_isa_a1e30b4efb (IsA storm_petrel petrel) (STV 1.0 0.9091)) +(: cnet_isa_7d8d335fcd (IsA storm_signal signal) (STV 1.0 0.9091)) +(: cnet_isa_b687cc2b43 (IsA storm_trooper german_nazi) (STV 1.0 0.9091)) +(: cnet_isa_1f83783ae9 (IsA storm_window window) (STV 1.0 0.9091)) +(: cnet_isa_e2dc3dd205 (IsA storminess passion) (STV 1.0 0.9091)) +(: cnet_isa_c4ed5e2dd3 (IsA storminess bad_weather) (STV 1.0 0.9091)) +(: cnet_isa_0ba5d137ac (IsA stormy_petrel storm_petrel) (STV 1.0 0.9091)) +(: cnet_isa_54675ab380 (IsA story fiction) (STV 1.0 0.9091)) +(: cnet_isa_de65bde129 (IsA storybook book) (STV 1.0 0.9091)) +(: cnet_isa_89bb630f88 (IsA storyline plot) (STV 1.0 0.9091)) +(: cnet_isa_0f71b07369 (IsA storyteller liar) (STV 1.0 0.9091)) +(: cnet_isa_dd46681255 (IsA stotinka bulgarian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_6741b43140 (IsA stoup basin) (STV 1.0 0.9091)) +(: cnet_isa_fcaf4335f6 (IsA stoup drinking_vessel) (STV 1.0 0.9091)) +(: cnet_isa_58f69679a6 (IsA stout size) (STV 1.0 0.9091)) +(: cnet_isa_0d02bd59e8 (IsA stout ale) (STV 1.0 0.9091)) +(: cnet_isa_ec1a4eaa2f (IsA stoutheartedness courage) (STV 1.0 0.9091)) +(: cnet_isa_9288d1f86b (IsA stoutness strength) (STV 1.0 0.9091)) +(: cnet_isa_60ba920731 (IsA stove heater) (STV 1.0 0.9091)) +(: cnet_isa_32415006ab (IsA stove kitchen_appliance) (STV 1.0 0.9091)) +(: cnet_isa_f9724dde93 (IsA stove_bolt bolt) (STV 1.0 0.9091)) +(: cnet_isa_6d6ef31edf (IsA stovepipe chimney) (STV 1.0 0.9091)) +(: cnet_isa_131c633e4d (IsA stovepipe_iron plate_iron) (STV 1.0 0.9091)) +(: cnet_isa_01d98fe050 (IsA stovepiping retrieval) (STV 1.0 0.9091)) +(: cnet_isa_366a89b6bb (IsA stover fodder) (STV 1.0 0.9091)) +(: cnet_isa_be6357bae6 (IsA stowage storage) (STV 1.0 0.9091)) +(: cnet_isa_29c6b69667 (IsA stowage charge) (STV 1.0 0.9091)) +(: cnet_isa_cd925482ca (IsA stowaway passenger) (STV 1.0 0.9091)) +(: cnet_isa_94a98237d2 (IsA stp standard_atmosphere) (STV 1.0 0.9091)) +(: cnet_isa_d004923d8d (IsA stp standard_temperature) (STV 1.0 0.9091)) +(: cnet_isa_16850488c6 (IsA strabismus abnormality) (STV 1.0 0.9091)) +(: cnet_isa_c43dff8ec0 (IsA strabotomy operation) (STV 1.0 0.9091)) +(: cnet_isa_7c8aafe47c (IsA stradavarius violin) (STV 1.0 0.9091)) +(: cnet_isa_0326e8d967 (IsA straddle gymnastic_exercise) (STV 1.0 0.9091)) +(: cnet_isa_4054c7bec6 (IsA straddle motion) (STV 1.0 0.9091)) +(: cnet_isa_e8d9b5186a (IsA straddle option) (STV 1.0 0.9091)) +(: cnet_isa_d84fd09a53 (IsA straddle position) (STV 1.0 0.9091)) +(: cnet_isa_5ce1c808e3 (IsA strafe attack) (STV 1.0 0.9091)) +(: cnet_isa_39d51df40c (IsA strafer combat_pilot) (STV 1.0 0.9091)) +(: cnet_isa_aa11789f25 (IsA straggle group) (STV 1.0 0.9091)) +(: cnet_isa_d5ca0779a5 (IsA straggler dawdler) (STV 1.0 0.9091)) +(: cnet_isa_844df2f879 (IsA straight poker_hand) (STV 1.0 0.9091)) +(: cnet_isa_688d17af74 (IsA straight_and_narrow way) (STV 1.0 0.9091)) +(: cnet_isa_bf9e607ff1 (IsA straight_angle angular_unit) (STV 1.0 0.9091)) +(: cnet_isa_2fad8fae12 (IsA straight_arm maneuver) (STV 1.0 0.9091)) +(: cnet_isa_3311650c62 (IsA straight_chain open_chain) (STV 1.0 0.9091)) +(: cnet_isa_2d7238cf48 (IsA straight_chair chair) (STV 1.0 0.9091)) +(: cnet_isa_e366e26491 (IsA straight_face facial_expression) (STV 1.0 0.9091)) +(: cnet_isa_085215b663 (IsA straight_flush pretty_good_hand) (STV 1.0 0.9091)) +(: cnet_isa_25117e75dc (IsA straight_flush poker_hand) (STV 1.0 0.9091)) +(: cnet_isa_14a6baec0e (IsA straight_flute bore_bit) (STV 1.0 0.9091)) +(: cnet_isa_5e6b0b3c74 (IsA straight_hang hang) (STV 1.0 0.9091)) +(: cnet_isa_e7de1f94ef (IsA straight_line line) (STV 1.0 0.9091)) +(: cnet_isa_d57f29c3dd (IsA straight_line_method depreciation) (STV 1.0 0.9091)) +(: cnet_isa_8013eeefde (IsA straight_man performer) (STV 1.0 0.9091)) +(: cnet_isa_1374853845 (IsA straight_pin pin) (STV 1.0 0.9091)) +(: cnet_isa_fb34116fbe (IsA straight_poker poker) (STV 1.0 0.9091)) +(: cnet_isa_04c5087e39 (IsA straight_razor razor) (STV 1.0 0.9091)) +(: cnet_isa_24316abc41 (IsA straight_sinus venous_sinus) (STV 1.0 0.9091)) +(: cnet_isa_ed2bf31356 (IsA straight_thrust stab) (STV 1.0 0.9091)) +(: cnet_isa_a7aab683ab (IsA straight_ticket vote) (STV 1.0 0.9091)) +(: cnet_isa_10c124c401 (IsA straightaway section) (STV 1.0 0.9091)) +(: cnet_isa_e45efb6c7f (IsA straightedge hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_54f1d165ad (IsA straightener device) (STV 1.0 0.9091)) +(: cnet_isa_fc4d678608 (IsA straightness curvature) (STV 1.0 0.9091)) +(: cnet_isa_5c283babac (IsA straightness shape) (STV 1.0 0.9091)) +(: cnet_isa_c84b7a052a (IsA strain effort) (STV 1.0 0.9091)) +(: cnet_isa_089cf82f97 (IsA strain deformation) (STV 1.0 0.9091)) +(: cnet_isa_10677cdfd0 (IsA strain nervousness) (STV 1.0 0.9091)) +(: cnet_isa_edbe2533a3 (IsA strain injury) (STV 1.0 0.9091)) +(: cnet_isa_2ba84ccbb0 (IsA strain_gauge gauge) (STV 1.0 0.9091)) +(: cnet_isa_bf20a99fd5 (IsA strainer filter) (STV 1.0 0.9091)) +(: cnet_isa_ce57fed851 (IsA strait channel) (STV 1.0 0.9091)) +(: cnet_isa_f3adbff5d0 (IsA straitjacket garment) (STV 1.0 0.9091)) +(: cnet_isa_a6020a1024 (IsA straitjacket hindrance) (STV 1.0 0.9091)) +(: cnet_isa_85256cc1c6 (IsA strand line) (STV 1.0 0.9091)) +(: cnet_isa_52a3212f8f (IsA strand form) (STV 1.0 0.9091)) +(: cnet_isa_e2415dfeea (IsA strand shore) (STV 1.0 0.9091)) +(: cnet_isa_4610e9b273 (IsA strange_attractor attractor) (STV 1.0 0.9091)) +(: cnet_isa_b5588492e0 (IsA strange_particle elementary_particle) (STV 1.0 0.9091)) +(: cnet_isa_d65c356d48 (IsA strange_quark quark) (STV 1.0 0.9091)) +(: cnet_isa_d7b2f56709 (IsA strangeness flavor) (STV 1.0 0.9091)) +(: cnet_isa_30ca73a01b (IsA stranger intruder) (STV 1.0 0.9091)) +(: cnet_isa_9ac573ef2e (IsA stranger person) (STV 1.0 0.9091)) +(: cnet_isa_56a6655100 (IsA stranglehold wrestling_hold) (STV 1.0 0.9091)) +(: cnet_isa_b98d0284b6 (IsA stranglehold power) (STV 1.0 0.9091)) +(: cnet_isa_ac27f0876f (IsA strangler air_plant) (STV 1.0 0.9091)) +(: cnet_isa_89d4437155 (IsA strangulation constriction) (STV 1.0 0.9091)) +(: cnet_isa_5cc149eba1 (IsA strangulation disorder) (STV 1.0 0.9091)) +(: cnet_isa_3aaa65854d (IsA strap band) (STV 1.0 0.9091)) +(: cnet_isa_3229d29647 (IsA strap hanger) (STV 1.0 0.9091)) +(: cnet_isa_8c3e4fc2b7 (IsA strap leather_strip) (STV 1.0 0.9091)) +(: cnet_isa_28e77d89ba (IsA strap whip) (STV 1.0 0.9091)) +(: cnet_isa_4a34f018e8 (IsA strap_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_a3d9bed6c3 (IsA strap_hinge hinge) (STV 1.0 0.9091)) +(: cnet_isa_582dba598a (IsA straphanger commuter) (STV 1.0 0.9091)) +(: cnet_isa_c2c818f0cf (IsA straphanger passenger) (STV 1.0 0.9091)) +(: cnet_isa_12e91c0ae6 (IsA strapless dress) (STV 1.0 0.9091)) +(: cnet_isa_9005517b59 (IsA strappado torture) (STV 1.0 0.9091)) +(: cnet_isa_71c8daaff8 (IsA strategic_buyout buyout) (STV 1.0 0.9091)) +(: cnet_isa_20f876800a (IsA strategic_intelligence intelligence) (STV 1.0 0.9091)) +(: cnet_isa_529b5a1ade (IsA strategic_warning warning) (STV 1.0 0.9091)) +(: cnet_isa_d122c62e10 (IsA strategic science) (STV 1.0 0.9091)) +(: cnet_isa_7f6327ee6a (IsA strategist planner) (STV 1.0 0.9091)) +(: cnet_isa_5343cbb362 (IsA strategy military_science) (STV 1.0 0.9091)) +(: cnet_isa_d3af880ac0 (IsA stratification categorization) (STV 1.0 0.9091)) +(: cnet_isa_77e61501e1 (IsA stratification placement) (STV 1.0 0.9091)) +(: cnet_isa_3bc7a4fe66 (IsA stratification shape) (STV 1.0 0.9091)) +(: cnet_isa_d8a84e3942 (IsA stratification geological_process) (STV 1.0 0.9091)) +(: cnet_isa_02e2449bf5 (IsA stratification condition) (STV 1.0 0.9091)) +(: cnet_isa_f7d4cbef0c (IsA stratified_language programming_language) (STV 1.0 0.9091)) +(: cnet_isa_ec32b26dcc (IsA stratified_sample sample_distribution) (STV 1.0 0.9091)) +(: cnet_isa_f1eeaf7c06 (IsA stratified_sampling sampling) (STV 1.0 0.9091)) +(: cnet_isa_00d09f37f1 (IsA stratigraphy geology) (STV 1.0 0.9091)) +(: cnet_isa_84bc73e8d9 (IsA stratosphere layer) (STV 1.0 0.9091)) +(: cnet_isa_744b7abe00 (IsA stratum subpopulation) (STV 1.0 0.9091)) +(: cnet_isa_7fe988eb84 (IsA stratum layer) (STV 1.0 0.9091)) +(: cnet_isa_c42b29a12c (IsA stratum_corneum stratum) (STV 1.0 0.9091)) +(: cnet_isa_21604926df (IsA stratum_germinativum stratum) (STV 1.0 0.9091)) +(: cnet_isa_93071346ff (IsA stratum_granulosum stratum) (STV 1.0 0.9091)) +(: cnet_isa_e11590685b (IsA stratum_lucidum stratum) (STV 1.0 0.9091)) +(: cnet_isa_9d7f0b3d9f (IsA stratus cloud) (STV 1.0 0.9091)) +(: cnet_isa_e9f8ad40a4 (IsA stravinsky music) (STV 1.0 0.9091)) +(: cnet_isa_a8a5e3b877 (IsA straw tube) (STV 1.0 0.9091)) +(: cnet_isa_0fc5071380 (IsA straw plant_fiber) (STV 1.0 0.9091)) +(: cnet_isa_a7d437831e (IsA straw_boss foreman) (STV 1.0 0.9091)) +(: cnet_isa_e4064571b7 (IsA straw_man specious_argument) (STV 1.0 0.9091)) +(: cnet_isa_93699b86c3 (IsA straw_mushroom agaric) (STV 1.0 0.9091)) +(: cnet_isa_0473999e57 (IsA straw_vote poll) (STV 1.0 0.9091)) +(: cnet_isa_e871172eb0 (IsA straw_wine dessert_wine) (STV 1.0 0.9091)) +(: cnet_isa_470093c656 (IsA strawberry birthmark) (STV 1.0 0.9091)) +(: cnet_isa_dbfc4de252 (IsA strawberry berry) (STV 1.0 0.9091)) +(: cnet_isa_c7079361e6 (IsA strawberry herb) (STV 1.0 0.9091)) +(: cnet_isa_951151c716 (IsA strawberry_blite goosefoot) (STV 1.0 0.9091)) +(: cnet_isa_4bab2c1641 (IsA strawberry_bush shrub) (STV 1.0 0.9091)) +(: cnet_isa_3e3df91fc7 (IsA strawberry_daiquiri daiquiri) (STV 1.0 0.9091)) +(: cnet_isa_19228f88fe (IsA strawberry_geranium saxifrage) (STV 1.0 0.9091)) +(: cnet_isa_46a61c34b3 (IsA strawberry_hemangioma hemangioma) (STV 1.0 0.9091)) +(: cnet_isa_2b01dc5a88 (IsA strawberry_ice_cream ice_cream) (STV 1.0 0.9091)) +(: cnet_isa_b0cc0d61af (IsA strawberry_jam jam) (STV 1.0 0.9091)) +(: cnet_isa_d289b409e1 (IsA strawberry_tomato ground_cherry) (STV 1.0 0.9091)) +(: cnet_isa_57e34caae1 (IsA strawberry_tree arbutus) (STV 1.0 0.9091)) +(: cnet_isa_2ccd3354a1 (IsA strawboard cardboard) (STV 1.0 0.9091)) +(: cnet_isa_0e464722fa (IsA strawflower bellwort) (STV 1.0 0.9091)) +(: cnet_isa_567f7a3487 (IsA strawflower everlasting) (STV 1.0 0.9091)) +(: cnet_isa_65202252f5 (IsA strawworm larva) (STV 1.0 0.9091)) +(: cnet_isa_6808da838a (IsA stray domestic_animal) (STV 1.0 0.9091)) +(: cnet_isa_4590a0f571 (IsA streak characteristic) (STV 1.0 0.9091)) +(: cnet_isa_97d39fed90 (IsA streak flash) (STV 1.0 0.9091)) +(: cnet_isa_22086a6731 (IsA streak succession) (STV 1.0 0.9091)) +(: cnet_isa_499e0936d4 (IsA streaker exhibitionist) (STV 1.0 0.9091)) +(: cnet_isa_e476bd8160 (IsA streaker nude) (STV 1.0 0.9091)) +(: cnet_isa_e7682cd5a8 (IsA stream small_body_of_flowing_water) (STV 1.0 0.9091)) +(: cnet_isa_af9998fa59 (IsA stream course) (STV 1.0 0.9091)) +(: cnet_isa_5a0c5204c3 (IsA stream body_of_water) (STV 1.0 0.9091)) +(: cnet_isa_0a8df7a586 (IsA stream motion) (STV 1.0 0.9091)) +(: cnet_isa_c504cd7d52 (IsA stream_of_consciousness consciousness) (STV 1.0 0.9091)) +(: cnet_isa_d6dd593697 (IsA stream_of_consciousness prose) (STV 1.0 0.9091)) +(: cnet_isa_7157f49045 (IsA stream_orchid helleborine) (STV 1.0 0.9091)) +(: cnet_isa_22987dc5ac (IsA streambed bed) (STV 1.0 0.9091)) +(: cnet_isa_148cdd3e29 (IsA streamer headline) (STV 1.0 0.9091)) +(: cnet_isa_3ada0ce55d (IsA streamer light) (STV 1.0 0.9091)) +(: cnet_isa_f2278a1ac2 (IsA streamer_fly fly) (STV 1.0 0.9091)) +(: cnet_isa_fcf8f9fc60 (IsA streamline_flow flow) (STV 1.0 0.9091)) +(: cnet_isa_cf589bc7f2 (IsA streamliner train) (STV 1.0 0.9091)) +(: cnet_isa_12ffcc7cf8 (IsA street thoroughfare) (STV 1.0 0.9091)) +(: cnet_isa_2d56ed82dc (IsA street neighborhood) (STV 1.0 0.9091)) +(: cnet_isa_16c1941968 (IsA street environment) (STV 1.0 0.9091)) +(: cnet_isa_b184f77e29 (IsA street opportunity) (STV 1.0 0.9091)) +(: cnet_isa_4a928b64df (IsA street_address address) (STV 1.0 0.9091)) +(: cnet_isa_fbde3edca0 (IsA street_arab street_urchin) (STV 1.0 0.9091)) +(: cnet_isa_8ab01db2fd (IsA street_cleaner cleaner) (STV 1.0 0.9091)) +(: cnet_isa_531ed15648 (IsA street_clothe clothing) (STV 1.0 0.9091)) +(: cnet_isa_40d1084642 (IsA street_credibility credibility) (STV 1.0 0.9091)) +(: cnet_isa_8ecdcf6815 (IsA street_crime escalating_problem_in_toronto) (STV 1.0 0.9091)) +(: cnet_isa_f491db48e2 (IsA street_fighter combatant) (STV 1.0 0.9091)) +(: cnet_isa_15c5136182 (IsA street_fighter rival) (STV 1.0 0.9091)) +(: cnet_isa_17d24a6b5f (IsA street_name appellation) (STV 1.0 0.9091)) +(: cnet_isa_99e45cc0f2 (IsA street_name cant) (STV 1.0 0.9091)) +(: cnet_isa_b6a920a5e0 (IsA street_name name) (STV 1.0 0.9091)) +(: cnet_isa_8cb4181ca5 (IsA street_sign sign) (STV 1.0 0.9091)) +(: cnet_isa_61e0a20ee7 (IsA street_smart shrewdness) (STV 1.0 0.9091)) +(: cnet_isa_be3ad664c9 (IsA street_urchin urchin) (STV 1.0 0.9091)) +(: cnet_isa_5156f4a265 (IsA streetcar self_propelled_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_fcf43e1152 (IsA streetlight lamp) (STV 1.0 0.9091)) +(: cnet_isa_2a88f65db6 (IsA streetwalker prostitute) (STV 1.0 0.9091)) +(: cnet_isa_7b4b7e2ea7 (IsA strekelia liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3d0b388a73 (IsA strelitzia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6234764cb5 (IsA strelitziaceae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_9e9da1244f (IsA strength property) (STV 1.0 0.9091)) +(: cnet_isa_dc1302b7c0 (IsA strength prosperity) (STV 1.0 0.9091)) +(: cnet_isa_8ebe456404 (IsA strengthener device) (STV 1.0 0.9091)) +(: cnet_isa_03f16b752b (IsA strengthening increase) (STV 1.0 0.9091)) +(: cnet_isa_c37cf0d81f (IsA strengthening transformation) (STV 1.0 0.9091)) +(: cnet_isa_d1bba3744d (IsA strepera bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_e713c79fab (IsA strepsirhini animal_order) (STV 1.0 0.9091)) +(: cnet_isa_b09986d2bc (IsA streptobacillus rod) (STV 1.0 0.9091)) +(: cnet_isa_4b861caff0 (IsA streptocarpus flower) (STV 1.0 0.9091)) +(: cnet_isa_7d01fda733 (IsA streptococcal_sore_throat infection) (STV 1.0 0.9091)) +(: cnet_isa_ec5cae6eff (IsA streptococcal_sore_throat sore_throat) (STV 1.0 0.9091)) +(: cnet_isa_359f7e7259 (IsA streptococcus eubacteria) (STV 1.0 0.9091)) +(: cnet_isa_9e1c9c0480 (IsA streptococcus_anhemolyticus bacteria_specy) (STV 1.0 0.9091)) +(: cnet_isa_0be4d9b540 (IsA streptodornase enzyme) (STV 1.0 0.9091)) +(: cnet_isa_d6885caaf8 (IsA streptokinase enzyme) (STV 1.0 0.9091)) +(: cnet_isa_dc051a479b (IsA streptolysin hemolysin) (STV 1.0 0.9091)) +(: cnet_isa_7abfae3fe1 (IsA streptomyce actinomycete) (STV 1.0 0.9091)) +(: cnet_isa_29f59d4c8e (IsA streptomyce_erythreus streptomyce) (STV 1.0 0.9091)) +(: cnet_isa_d72464ba3a (IsA streptomyce_griseus streptomyce) (STV 1.0 0.9091)) +(: cnet_isa_2c53cebabb (IsA streptomycetaceae bacteria_family) (STV 1.0 0.9091)) +(: cnet_isa_6aba61ff46 (IsA streptomycin antibiotic) (STV 1.0 0.9091)) +(: cnet_isa_4c515fcdbf (IsA streptopelia bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_a871c31d93 (IsA streptopelia_turtur turtledove) (STV 1.0 0.9091)) +(: cnet_isa_3d0b0827df (IsA streptosolen asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_99155a857e (IsA streptothricin antibiotic) (STV 1.0 0.9091)) +(: cnet_isa_dc56823979 (IsA stress prosody) (STV 1.0 0.9091)) +(: cnet_isa_15b8618a66 (IsA stress force) (STV 1.0 0.9091)) +(: cnet_isa_4fd80dff4b (IsA stress difficulty) (STV 1.0 0.9091)) +(: cnet_isa_dabbb57cc4 (IsA stress emphasis) (STV 1.0 0.9091)) +(: cnet_isa_9c01e6a3df (IsA stress_incontinence enuresis) (STV 1.0 0.9091)) +(: cnet_isa_e47615e444 (IsA stress_mark accent) (STV 1.0 0.9091)) +(: cnet_isa_ab071eb5f6 (IsA stress_test assay) (STV 1.0 0.9091)) +(: cnet_isa_eaff2b5cf1 (IsA stressor agent) (STV 1.0 0.9091)) +(: cnet_isa_460221e1be (IsA stretch exercise) (STV 1.0 0.9091)) +(: cnet_isa_0d50b07780 (IsA stretch extension) (STV 1.0 0.9091)) +(: cnet_isa_b7c49eec36 (IsA stretch elasticity) (STV 1.0 0.9091)) +(: cnet_isa_bbc49ef842 (IsA stretch expanse) (STV 1.0 0.9091)) +(: cnet_isa_1d054188a4 (IsA stretch straightaway) (STV 1.0 0.9091)) +(: cnet_isa_242ac9f184 (IsA stretch duration) (STV 1.0 0.9091)) +(: cnet_isa_5a2ecbd26f (IsA stretch_mark band) (STV 1.0 0.9091)) +(: cnet_isa_8fd7c78f06 (IsA stretch_pant pair_of_trouser) (STV 1.0 0.9091)) +(: cnet_isa_4e595b0064 (IsA stretch_receptor sense_organ) (STV 1.0 0.9091)) +(: cnet_isa_7d1419796d (IsA stretch_reflex reflex) (STV 1.0 0.9091)) +(: cnet_isa_3fba9dc32e (IsA stretcher framework) (STV 1.0 0.9091)) +(: cnet_isa_a43fcd8de8 (IsA stretcher litter) (STV 1.0 0.9091)) +(: cnet_isa_36ce464664 (IsA stretcher mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_aa87d7098b (IsA stretcher_bearer attendant) (STV 1.0 0.9091)) +(: cnet_isa_83e712c180 (IsA stretcher_party party) (STV 1.0 0.9091)) +(: cnet_isa_66bc4fde2e (IsA stretching expansion) (STV 1.0 0.9091)) +(: cnet_isa_fc37e7a638 (IsA streusel pastry) (STV 1.0 0.9091)) +(: cnet_isa_89ac3e2767 (IsA streusel topping) (STV 1.0 0.9091)) +(: cnet_isa_7155a723d7 (IsA stria groove) (STV 1.0 0.9091)) +(: cnet_isa_85726b97f9 (IsA striated_muscle_cell muscle_cell) (STV 1.0 0.9091)) +(: cnet_isa_c186cc7607 (IsA striated_muscle_tissue muscle) (STV 1.0 0.9091)) +(: cnet_isa_42293db0b7 (IsA strickle implement) (STV 1.0 0.9091)) +(: cnet_isa_053cdd59d4 (IsA strickle sharpener) (STV 1.0 0.9091)) +(: cnet_isa_ca7f161834 (IsA strickle tool) (STV 1.0 0.9091)) +(: cnet_isa_3ad0fdc0ff (IsA strictness conscientiousness) (STV 1.0 0.9091)) +(: cnet_isa_f4739df1ea (IsA stricture criticism) (STV 1.0 0.9091)) +(: cnet_isa_fb0df604a2 (IsA stride advancement) (STV 1.0 0.9091)) +(: cnet_isa_318adad594 (IsA strider pedestrian) (STV 1.0 0.9091)) +(: cnet_isa_dde2375a23 (IsA stridor symptom) (STV 1.0 0.9091)) +(: cnet_isa_7a4c0b49c8 (IsA stridulation noise) (STV 1.0 0.9091)) +(: cnet_isa_72f5117086 (IsA strife conflict) (STV 1.0 0.9091)) +(: cnet_isa_36922b5a38 (IsA strigidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_5bfc064842 (IsA strigiforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_ef1330e57d (IsA strike attack) (STV 1.0 0.9091)) +(: cnet_isa_e85a29253d (IsA strike job_action) (STV 1.0 0.9091)) +(: cnet_isa_771cc58f81 (IsA strike pitch) (STV 1.0 0.9091)) +(: cnet_isa_559a7f05be (IsA strike score) (STV 1.0 0.9091)) +(: cnet_isa_b2e8c2c6d6 (IsA strike_leader leader) (STV 1.0 0.9091)) +(: cnet_isa_83a1575a12 (IsA strike_pay wage) (STV 1.0 0.9091)) +(: cnet_isa_b939f7965e (IsA strike_slip_fault fault) (STV 1.0 0.9091)) +(: cnet_isa_fb2b275b9c (IsA strike_zone zone) (STV 1.0 0.9091)) +(: cnet_isa_26b82d2001 (IsA strikebreaking confrontation) (STV 1.0 0.9091)) +(: cnet_isa_587e8f46ee (IsA strikeout out) (STV 1.0 0.9091)) +(: cnet_isa_8d3c2c30f2 (IsA striker mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_5eb3729304 (IsA striker bluejacket) (STV 1.0 0.9091)) +(: cnet_isa_a82da8486f (IsA striker athlete) (STV 1.0 0.9091)) +(: cnet_isa_fa8fa61a18 (IsA striker nonworker) (STV 1.0 0.9091)) +(: cnet_isa_7f639c12a7 (IsA string collection) (STV 1.0 0.9091)) +(: cnet_isa_669e0a2996 (IsA string cord) (STV 1.0 0.9091)) +(: cnet_isa_58b249ee7b (IsA string sequence) (STV 1.0 0.9091)) +(: cnet_isa_178d5e7ae8 (IsA string sery) (STV 1.0 0.9091)) +(: cnet_isa_d18910368b (IsA string fiber) (STV 1.0 0.9091)) +(: cnet_isa_a3b2df68f9 (IsA string_bass musical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_2c5db8c37e (IsA string_bean green_bean) (STV 1.0 0.9091)) +(: cnet_isa_9244ebfe63 (IsA string_cheese cheese) (STV 1.0 0.9091)) +(: cnet_isa_4566b6d727 (IsA string_of_word language) (STV 1.0 0.9091)) +(: cnet_isa_f05ceef6b6 (IsA string_of_word string) (STV 1.0 0.9091)) +(: cnet_isa_2871eacdfa (IsA string_orchestra orchestra) (STV 1.0 0.9091)) +(: cnet_isa_822ee5e0b3 (IsA string_quartet quartet) (STV 1.0 0.9091)) +(: cnet_isa_fc62d9ab87 (IsA string_section section) (STV 1.0 0.9091)) +(: cnet_isa_20914300fb (IsA string_theory model) (STV 1.0 0.9091)) +(: cnet_isa_62f136e1d4 (IsA string_tie necktie) (STV 1.0 0.9091)) +(: cnet_isa_83eb5cac03 (IsA stringed_instrument musical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_e0916c3a9c (IsA stringency lack) (STV 1.0 0.9091)) +(: cnet_isa_a4a60bede1 (IsA stringer brace) (STV 1.0 0.9091)) +(: cnet_isa_3819cd22b1 (IsA stringer timber) (STV 1.0 0.9091)) +(: cnet_isa_e3ff4d6fe4 (IsA stringer player) (STV 1.0 0.9091)) +(: cnet_isa_d6cacf8838 (IsA stringer worker) (STV 1.0 0.9091)) +(: cnet_isa_5c3265ddb5 (IsA stringybark eucalyptus) (STV 1.0 0.9091)) +(: cnet_isa_e0fcc78186 (IsA stringybark_pine cypress_pine) (STV 1.0 0.9091)) +(: cnet_isa_1399e994c5 (IsA strip nude_dancing) (STV 1.0 0.9091)) +(: cnet_isa_2c3047b444 (IsA strip artifact) (STV 1.0 0.9091)) +(: cnet_isa_23cbb0762e (IsA strip lumber) (STV 1.0 0.9091)) +(: cnet_isa_76cd3b5cb3 (IsA strip part) (STV 1.0 0.9091)) +(: cnet_isa_8e98ed753b (IsA strip_alert alert) (STV 1.0 0.9091)) +(: cnet_isa_7a1eb287c2 (IsA strip_cropping farming) (STV 1.0 0.9091)) +(: cnet_isa_981d2ceaaa (IsA strip_lighting light) (STV 1.0 0.9091)) +(: cnet_isa_033d70609b (IsA strip_mall mercantile_establishment) (STV 1.0 0.9091)) +(: cnet_isa_af81ee6710 (IsA strip_mine mine) (STV 1.0 0.9091)) +(: cnet_isa_04537cbc40 (IsA strip_miner miner) (STV 1.0 0.9091)) +(: cnet_isa_fed7937567 (IsA strip_mining mining) (STV 1.0 0.9091)) +(: cnet_isa_710fcc42d6 (IsA strip_poker poker) (STV 1.0 0.9091)) +(: cnet_isa_32f0f30894 (IsA strip_search frisk) (STV 1.0 0.9091)) +(: cnet_isa_968278d32e (IsA strip_steak beefsteak) (STV 1.0 0.9091)) +(: cnet_isa_bc908e7e54 (IsA stripe marking) (STV 1.0 0.9091)) +(: cnet_isa_fd947312b4 (IsA stripe kind) (STV 1.0 0.9091)) +(: cnet_isa_23b1dda0dc (IsA stripe badge) (STV 1.0 0.9091)) +(: cnet_isa_b8655bb6b4 (IsA stripe_blight blight) (STV 1.0 0.9091)) +(: cnet_isa_a56490903c (IsA striped_bass sea_bass) (STV 1.0 0.9091)) +(: cnet_isa_53a334c68a (IsA striped_button_quail button_quail) (STV 1.0 0.9091)) +(: cnet_isa_74c5a71810 (IsA striped_coral_root coral_root) (STV 1.0 0.9091)) +(: cnet_isa_75e936d540 (IsA striped_drum drum) (STV 1.0 0.9091)) +(: cnet_isa_86befae880 (IsA striped_gentian gentian) (STV 1.0 0.9091)) +(: cnet_isa_9d9665235a (IsA striped_hyena hyena) (STV 1.0 0.9091)) +(: cnet_isa_41ad52e04c (IsA striped_killifish killifish) (STV 1.0 0.9091)) +(: cnet_isa_bf65afc803 (IsA striped_marlin marlin) (STV 1.0 0.9091)) +(: cnet_isa_a4bb520073 (IsA striped_muishond muishond) (STV 1.0 0.9091)) +(: cnet_isa_9247de21a1 (IsA striped_mullet mullet) (STV 1.0 0.9091)) +(: cnet_isa_3782f72f74 (IsA striped_skunk skunk) (STV 1.0 0.9091)) +(: cnet_isa_063d04709e (IsA striper serviceman) (STV 1.0 0.9091)) +(: cnet_isa_9634c75787 (IsA striping marking) (STV 1.0 0.9091)) +(: cnet_isa_3e8bf12c95 (IsA stripper performer) (STV 1.0 0.9091)) +(: cnet_isa_5f4c4d749c (IsA stripper worker) (STV 1.0 0.9091)) +(: cnet_isa_8fa9928ffa (IsA stripper compound) (STV 1.0 0.9091)) +(: cnet_isa_9a8366e9ef (IsA stripper_well oil_well) (STV 1.0 0.9091)) +(: cnet_isa_4ab15a76cf (IsA striving attempt) (STV 1.0 0.9091)) +(: cnet_isa_0fab8fa1b4 (IsA strix bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_4a6306334d (IsA strobilomyce fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_06465bb71d (IsA stroboscope scientific_instrument) (STV 1.0 0.9091)) +(: cnet_isa_05f05bfe73 (IsA stroke locomotion) (STV 1.0 0.9091)) +(: cnet_isa_2ba44425ba (IsA stroke motion) (STV 1.0 0.9091)) +(: cnet_isa_ce21910646 (IsA stroke touch) (STV 1.0 0.9091)) +(: cnet_isa_9ed87710ad (IsA stroke mark) (STV 1.0 0.9091)) +(: cnet_isa_e4c3558885 (IsA stroke score) (STV 1.0 0.9091)) +(: cnet_isa_2c546a00d8 (IsA stroke oarsman) (STV 1.0 0.9091)) +(: cnet_isa_b635324ea8 (IsA stroke maneuver) (STV 1.0 0.9091)) +(: cnet_isa_2179cc93e8 (IsA stroke attack) (STV 1.0 0.9091)) +(: cnet_isa_e5b2aba747 (IsA stroma animal_tissue) (STV 1.0 0.9091)) +(: cnet_isa_eef183cef6 (IsA stroma plant_tissue) (STV 1.0 0.9091)) +(: cnet_isa_e1fafe2147 (IsA stromateidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_3b781a52a0 (IsA strombidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_2ec810379c (IsA strombus mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_72731ad598 (IsA strong_breeze breeze) (STV 1.0 0.9091)) +(: cnet_isa_b3c8c88db1 (IsA strong_gale gale) (STV 1.0 0.9091)) +(: cnet_isa_ea17369161 (IsA strong_interaction interaction) (STV 1.0 0.9091)) +(: cnet_isa_ab540fe697 (IsA strong_suit long_suit) (STV 1.0 0.9091)) +(: cnet_isa_a91e6fc618 (IsA strongbox box) (STV 1.0 0.9091)) +(: cnet_isa_53bc4e72bf (IsA stronghold defensive_structure) (STV 1.0 0.9091)) +(: cnet_isa_b435b07b1b (IsA strongman dictator) (STV 1.0 0.9091)) +(: cnet_isa_423e555513 (IsA strongman performer) (STV 1.0 0.9091)) +(: cnet_isa_71b2871e9e (IsA strongroom storeroom) (STV 1.0 0.9091)) +(: cnet_isa_f465452e28 (IsA strongylodon rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a5ee1c9aa5 (IsA strontianite mineral) (STV 1.0 0.9091)) +(: cnet_isa_570347b01d (IsA strontium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_9c82bab585 (IsA strontium_90 strontium) (STV 1.0 0.9091)) +(: cnet_isa_ee50f11958 (IsA strop sharpener) (STV 1.0 0.9091)) +(: cnet_isa_006170457e (IsA strop strap) (STV 1.0 0.9091)) +(: cnet_isa_c375ea12ed (IsA strophanthin glycoside) (STV 1.0 0.9091)) +(: cnet_isa_ee77aaeb5d (IsA strophanthus shrub) (STV 1.0 0.9091)) +(: cnet_isa_c2436d0ec1 (IsA strophanthus_kombe strophanthus) (STV 1.0 0.9091)) +(: cnet_isa_969361dd9e (IsA stropharia fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_78063a3589 (IsA stropharia_ambigua agaric) (STV 1.0 0.9091)) +(: cnet_isa_9f2d7f1da3 (IsA stropharia_hornemannii agaric) (STV 1.0 0.9091)) +(: cnet_isa_549995e25a (IsA stropharia_rugoso_annulata agaric) (STV 1.0 0.9091)) +(: cnet_isa_d54eff1e27 (IsA strophariaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_8bb38e5900 (IsA strophe stanza) (STV 1.0 0.9091)) +(: cnet_isa_cda36057d1 (IsA struct_tm computer_code_variable) (STV 1.0 0.9091)) +(: cnet_isa_f6f4c6218c (IsA structural_formula molecular_formula) (STV 1.0 0.9091)) +(: cnet_isa_3257241687 (IsA structural_gene gene) (STV 1.0 0.9091)) +(: cnet_isa_c4c0f663ff (IsA structural_genomic genomic) (STV 1.0 0.9091)) +(: cnet_isa_c9a21beaed (IsA structural_iron iron) (STV 1.0 0.9091)) +(: cnet_isa_6b1839c09b (IsA structural_member support) (STV 1.0 0.9091)) +(: cnet_isa_027216491d (IsA structural_steel steel) (STV 1.0 0.9091)) +(: cnet_isa_0462b164ef (IsA structuralism linguistic) (STV 1.0 0.9091)) +(: cnet_isa_c86719a6d8 (IsA structuralism theory) (STV 1.0 0.9091)) +(: cnet_isa_56d9983a09 (IsA structure artifact) (STV 1.0 0.9091)) +(: cnet_isa_34ba5c6a83 (IsA structure constitution) (STV 1.0 0.9091)) +(: cnet_isa_b9598a9eb4 (IsA structure body_part) (STV 1.0 0.9091)) +(: cnet_isa_e9fc43db15 (IsA structure cognition) (STV 1.0 0.9091)) +(: cnet_isa_136657d324 (IsA strudel pastry) (STV 1.0 0.9091)) +(: cnet_isa_23a249b7ab (IsA struggle attempt) (STV 1.0 0.9091)) +(: cnet_isa_c9ed1a71d1 (IsA struggle effort) (STV 1.0 0.9091)) +(: cnet_isa_e592edabbe (IsA struggler person) (STV 1.0 0.9091)) +(: cnet_isa_7c1df4d03e (IsA strum sound) (STV 1.0 0.9091)) +(: cnet_isa_39abe1a28d (IsA strut gait) (STV 1.0 0.9091)) +(: cnet_isa_c185d47e79 (IsA strut brace) (STV 1.0 0.9091)) +(: cnet_isa_1202f50c20 (IsA struthio bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_d0569d3b2b (IsA struthiomimus ornithomimid) (STV 1.0 0.9091)) +(: cnet_isa_85e32e63e3 (IsA struthionidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_9046e3603f (IsA struthioniforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_bb36a596bb (IsA strychnine alkaloid) (STV 1.0 0.9091)) +(: cnet_isa_84239fe1f6 (IsA strychnine plant_toxin) (STV 1.0 0.9091)) +(: cnet_isa_e772011879 (IsA strymon arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_505a77866d (IsA strymon_melinus hairstreak) (STV 1.0 0.9091)) +(: cnet_isa_cd9e02263c (IsA stuart dynasty) (STV 1.0 0.9091)) +(: cnet_isa_a72ecbf4d6 (IsA stuart royalty) (STV 1.0 0.9091)) +(: cnet_isa_9c92f5beaa (IsA stuart ruler) (STV 1.0 0.9091)) +(: cnet_isa_b7a90d911f (IsA stub receipt) (STV 1.0 0.9091)) +(: cnet_isa_5aa4a4317c (IsA stub record) (STV 1.0 0.9091)) +(: cnet_isa_40c43dedab (IsA stub plant_part) (STV 1.0 0.9091)) +(: cnet_isa_2941d513ac (IsA stub_nail nail) (STV 1.0 0.9091)) +(: cnet_isa_dc2f5791c6 (IsA stubble beard) (STV 1.0 0.9091)) +(: cnet_isa_030e3f6e27 (IsA stubbornness intractability) (STV 1.0 0.9091)) +(: cnet_isa_1531a40c30 (IsA stubbornness resoluteness) (STV 1.0 0.9091)) +(: cnet_isa_39e4bdcf59 (IsA stucco plaster) (STV 1.0 0.9091)) +(: cnet_isa_7923aeae9b (IsA stud poker) (STV 1.0 0.9091)) +(: cnet_isa_80172d4317 (IsA stud stallion) (STV 1.0 0.9091)) +(: cnet_isa_0f93de0318 (IsA stud decoration) (STV 1.0 0.9091)) +(: cnet_isa_059ecd602f (IsA stud man) (STV 1.0 0.9091)) +(: cnet_isa_a5b59c2a86 (IsA stud_farm farm) (STV 1.0 0.9091)) +(: cnet_isa_3dd2a9ebdc (IsA stud_finder permanent_magnet) (STV 1.0 0.9091)) +(: cnet_isa_cddfc91503 (IsA studbook register) (STV 1.0 0.9091)) +(: cnet_isa_694a988fb5 (IsA student enrollee) (STV 1.0 0.9091)) +(: cnet_isa_fa296c71b7 (IsA student_center center) (STV 1.0 0.9091)) +(: cnet_isa_f695846242 (IsA student_lamp reading_lamp) (STV 1.0 0.9091)) +(: cnet_isa_8c5ec45567 (IsA student_teacher college_student) (STV 1.0 0.9091)) +(: cnet_isa_74f48696a7 (IsA student_union building) (STV 1.0 0.9091)) +(: cnet_isa_6fd03a6ee6 (IsA studentship position) (STV 1.0 0.9091)) +(: cnet_isa_2f6e3fa905 (IsA studio workplace) (STV 1.0 0.9091)) +(: cnet_isa_5f602a6177 (IsA studio_apartment apartment) (STV 1.0 0.9091)) +(: cnet_isa_ba57bfdcb4 (IsA studio_couch convertible) (STV 1.0 0.9091)) +(: cnet_isa_e371b320dd (IsA studiousness diligence) (STV 1.0 0.9091)) +(: cnet_isa_7b7984121d (IsA study room_in_person_s_house) (STV 1.0 0.9339)) +(: cnet_isa_65108778dd (IsA study room) (STV 1.0 0.9091)) +(: cnet_isa_dc7f04e662 (IsA study concentration) (STV 1.0 0.9091)) +(: cnet_isa_911676dd02 (IsA study learning) (STV 1.0 0.9091)) +(: cnet_isa_9411f99ed6 (IsA study musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_8f0faad078 (IsA study memorizer) (STV 1.0 0.9091)) +(: cnet_isa_97e33d9666 (IsA study_hall classroom) (STV 1.0 0.9091)) +(: cnet_isa_ecf0dc3d50 (IsA study_hall time_period) (STV 1.0 0.9091)) +(: cnet_isa_fd01f5c93c (IsA stuff quality) (STV 1.0 0.9091)) +(: cnet_isa_7c694b4f62 (IsA stuff kernel) (STV 1.0 0.9091)) +(: cnet_isa_a615558f4c (IsA stuff information) (STV 1.0 0.9091)) +(: cnet_isa_9f87e9ffa6 (IsA stuff nonsense) (STV 1.0 0.9091)) +(: cnet_isa_c1c90156aa (IsA stuff personal_property) (STV 1.0 0.9091)) +(: cnet_isa_e87905def9 (IsA stuffed_animal collectible) (STV 1.0 0.9091)) +(: cnet_isa_a7d65efdf0 (IsA stuffed_cabbage dish) (STV 1.0 0.9091)) +(: cnet_isa_69c23f4c9e (IsA stuffed_mushroom hor_d_oeuvre) (STV 1.0 0.9091)) +(: cnet_isa_25a87e6abe (IsA stuffed_pepper dish) (STV 1.0 0.9091)) +(: cnet_isa_382609aa7c (IsA stuffed_tomato dish) (STV 1.0 0.9091)) +(: cnet_isa_79ae3c982c (IsA stuffer circular) (STV 1.0 0.9091)) +(: cnet_isa_487926a0cc (IsA stuffiness quality) (STV 1.0 0.9091)) +(: cnet_isa_b89e5c49dc (IsA stuffiness congestion) (STV 1.0 0.9091)) +(: cnet_isa_790dc66c72 (IsA stuffing padding) (STV 1.0 0.9091)) +(: cnet_isa_c64c3f66d4 (IsA stuffing concoction) (STV 1.0 0.9091)) +(: cnet_isa_dc166617d3 (IsA stuffing_box chamber) (STV 1.0 0.9091)) +(: cnet_isa_48c136f39f (IsA stuffing_nut nut) (STV 1.0 0.9091)) +(: cnet_isa_fbcf6f1638 (IsA stultification degradation) (STV 1.0 0.9091)) +(: cnet_isa_d169a18424 (IsA stultification derision) (STV 1.0 0.9091)) +(: cnet_isa_d95855bef7 (IsA stumblebum boxer) (STV 1.0 0.9091)) +(: cnet_isa_b79e144e36 (IsA stumbler pedestrian) (STV 1.0 0.9091)) +(: cnet_isa_9544117f34 (IsA stumbling_block obstacle) (STV 1.0 0.9091)) +(: cnet_isa_bfd9bb6f18 (IsA stump body_part) (STV 1.0 0.9091)) +(: cnet_isa_9a4b3b1f1a (IsA stump post) (STV 1.0 0.9091)) +(: cnet_isa_c7755a6023 (IsA stump plant_part) (STV 1.0 0.9091)) +(: cnet_isa_8b1ed6094b (IsA stump_speech oratory) (STV 1.0 0.9091)) +(: cnet_isa_0d12e02ae0 (IsA stumping campaigning) (STV 1.0 0.9091)) +(: cnet_isa_74bdc549e1 (IsA stun_gun weapon) (STV 1.0 0.9091)) +(: cnet_isa_e9ab4a5176 (IsA stunner surprise) (STV 1.0 0.9091)) +(: cnet_isa_6b82f4dad9 (IsA stunt deed) (STV 1.0 0.9091)) +(: cnet_isa_2589cf1f7d (IsA stunt animal) (STV 1.0 0.9091)) +(: cnet_isa_3124b0f85d (IsA stupa shrine) (STV 1.0 0.9091)) +(: cnet_isa_55d7efe513 (IsA stupefaction action) (STV 1.0 0.9091)) +(: cnet_isa_ea71a0d102 (IsA stupefaction astonishment) (STV 1.0 0.9091)) +(: cnet_isa_dfb9064644 (IsA stupid simpleton) (STV 1.0 0.9091)) +(: cnet_isa_74a07f01ae (IsA stupidity mistake) (STV 1.0 0.9091)) +(: cnet_isa_7c1e6cb944 (IsA stupidity inability) (STV 1.0 0.9091)) +(: cnet_isa_13b6974d6c (IsA sturdiness resoluteness) (STV 1.0 0.9091)) +(: cnet_isa_60434a8926 (IsA sturdiness strength) (STV 1.0 0.9091)) +(: cnet_isa_048519d618 (IsA sturdiness good_health) (STV 1.0 0.9091)) +(: cnet_isa_85c1ace328 (IsA sturgeon ganoid) (STV 1.0 0.9091)) +(: cnet_isa_76624cc3f3 (IsA sturnella bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_db2af9761b (IsA sturnidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_7271d6e3c0 (IsA sturnus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_9c6ba53dff (IsA sty pen) (STV 1.0 0.9091)) +(: cnet_isa_6bf2e978fd (IsA sty infection) (STV 1.0 0.9091)) +(: cnet_isa_fa8d1c9cba (IsA style process) (STV 1.0 0.9091)) +(: cnet_isa_089e8c7465 (IsA style reproductive_structure) (STV 1.0 0.9091)) +(: cnet_isa_14e616bd82 (IsA style kind) (STV 1.0 0.9091)) +(: cnet_isa_972d018657 (IsA style direction) (STV 1.0 0.9091)) +(: cnet_isa_aede677829 (IsA style_sheet sheet) (STV 1.0 0.9091)) +(: cnet_isa_c74f336711 (IsA stylet style) (STV 1.0 0.9091)) +(: cnet_isa_5cdad8adb3 (IsA stylist artist) (STV 1.0 0.9091)) +(: cnet_isa_5b891cf3ae (IsA stylite abstainer) (STV 1.0 0.9091)) +(: cnet_isa_c48ac22e48 (IsA stylization standardization) (STV 1.0 0.9091)) +(: cnet_isa_d6ae12712c (IsA styloid_process process) (STV 1.0 0.9091)) +(: cnet_isa_4e57bac810 (IsA stylomastoid_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_7544ad7e28 (IsA stylomecon dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_16fdfe0942 (IsA stylophorum dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_64436962cb (IsA stylopodium style) (STV 1.0 0.9091)) +(: cnet_isa_d24981baf5 (IsA stylus device) (STV 1.0 0.9091)) +(: cnet_isa_0e50e10896 (IsA stylus tool) (STV 1.0 0.9091)) +(: cnet_isa_0c44f79098 (IsA stymie obstacle) (STV 1.0 0.9091)) +(: cnet_isa_cd64590208 (IsA stymie situation) (STV 1.0 0.9091)) +(: cnet_isa_355ae3bd2f (IsA styphelia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_aadc2fc9cb (IsA styracaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_1870c0feb9 (IsA styracosaur ceratopsian) (STV 1.0 0.9091)) +(: cnet_isa_f30f75293f (IsA styrax shrub) (STV 1.0 0.9091)) +(: cnet_isa_08ebf408de (IsA styrene vinyl_polymer) (STV 1.0 0.9091)) +(: cnet_isa_9a3e6e834a (IsA suavity graciousness) (STV 1.0 0.9091)) +(: cnet_isa_55e0460ea9 (IsA sub_assembly assembly) (STV 1.0 0.9091)) +(: cnet_isa_8841c83efd (IsA sub_interval interval) (STV 1.0 0.9091)) +(: cnet_isa_f38ed50849 (IsA sub_test test) (STV 1.0 0.9091)) +(: cnet_isa_089af297a1 (IsA subacute_bacterial_endocarditis endocarditis) (STV 1.0 0.9091)) +(: cnet_isa_6dd30eb527 (IsA subacute_sclerosing_panencephalitis panencephalitis) (STV 1.0 0.9091)) +(: cnet_isa_db9228c214 (IsA subalpine_larch larch) (STV 1.0 0.9091)) +(: cnet_isa_9a7f58ca77 (IsA subaltern commissioned_military_officer) (STV 1.0 0.9091)) +(: cnet_isa_267b2db28c (IsA subarachnoid_space space) (STV 1.0 0.9091)) +(: cnet_isa_f9725c4a09 (IsA subbase molding) (STV 1.0 0.9091)) +(: cnet_isa_e7b5046b79 (IsA subbing work) (STV 1.0 0.9091)) +(: cnet_isa_89fa3fe65f (IsA subclass taxonomic_group) (STV 1.0 0.9091)) +(: cnet_isa_1c07ce1911 (IsA subclavian_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_83f536b804 (IsA subclavian_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_6f5c2288d6 (IsA subclinical_absence petit_mal_epilepsy) (STV 1.0 0.9091)) +(: cnet_isa_85044b6f88 (IsA subcommittee committee) (STV 1.0 0.9091)) +(: cnet_isa_884b605392 (IsA subcompact car) (STV 1.0 0.9091)) +(: cnet_isa_ccaa9cf13c (IsA subconscious_mind mind) (STV 1.0 0.9091)) +(: cnet_isa_c1950b9cda (IsA subconsciousness cognitive_state) (STV 1.0 0.9091)) +(: cnet_isa_146b485e4d (IsA subcontinent landmass) (STV 1.0 0.9091)) +(: cnet_isa_60ad3290e0 (IsA subcontract contract) (STV 1.0 0.9091)) +(: cnet_isa_5b4bca0e61 (IsA subcontractor contractor) (STV 1.0 0.9091)) +(: cnet_isa_0a5861df9c (IsA subculture social_group) (STV 1.0 0.9091)) +(: cnet_isa_3e30167e7f (IsA subcutaneous_injection injection) (STV 1.0 0.9091)) +(: cnet_isa_cb1cd2348d (IsA subdata_base database) (STV 1.0 0.9091)) +(: cnet_isa_d8d38392d2 (IsA subdeacon clergyman) (STV 1.0 0.9091)) +(: cnet_isa_f6c2992f81 (IsA subdeacon holy_order) (STV 1.0 0.9091)) +(: cnet_isa_6a817dad50 (IsA subdirectory directory) (STV 1.0 0.9091)) +(: cnet_isa_289e9bdde7 (IsA subdivider divider) (STV 1.0 0.9091)) +(: cnet_isa_1532ed235b (IsA subdivision division) (STV 1.0 0.9091)) +(: cnet_isa_b6d4741e75 (IsA subdivision tract) (STV 1.0 0.9091)) +(: cnet_isa_e9b8f72857 (IsA subdominant note) (STV 1.0 0.9091)) +(: cnet_isa_868d3953e8 (IsA subduction geological_process) (STV 1.0 0.9091)) +(: cnet_isa_5aec2a9ae0 (IsA subduer restrainer) (STV 1.0 0.9091)) +(: cnet_isa_d696f774f0 (IsA subeditor editor) (STV 1.0 0.9091)) +(: cnet_isa_5d90bb59c9 (IsA suberic_acid carboxylic_acid) (STV 1.0 0.9091)) +(: cnet_isa_0b675a4591 (IsA subfamily taxonomic_group) (STV 1.0 0.9091)) +(: cnet_isa_67aa133e45 (IsA subfigure figure) (STV 1.0 0.9091)) +(: cnet_isa_d901c7e4ce (IsA subgenus taxonomic_group) (STV 1.0 0.9091)) +(: cnet_isa_e373366203 (IsA subgenus_azalea dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_161309a200 (IsA subgenus_calliopsis asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3bd9491b68 (IsA subgroup group) (STV 1.0 0.9091)) +(: cnet_isa_89c78ea347 (IsA subheading heading) (STV 1.0 0.9091)) +(: cnet_isa_37a3174845 (IsA subject thing) (STV 1.0 0.9091)) +(: cnet_isa_25c68301dd (IsA subject message) (STV 1.0 0.9091)) +(: cnet_isa_78afc1872b (IsA subject constituent) (STV 1.0 0.9091)) +(: cnet_isa_d9e7c14e9c (IsA subject term) (STV 1.0 0.9091)) +(: cnet_isa_e9a6e2d974 (IsA subject person) (STV 1.0 0.9091)) +(: cnet_isa_bccc85a0bd (IsA subjectivism quality) (STV 1.0 0.9091)) +(: cnet_isa_789e187db4 (IsA subjectivism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_37b7295564 (IsA subjectivist intellectual) (STV 1.0 0.9091)) +(: cnet_isa_64aef7c246 (IsA subjectivity judgment) (STV 1.0 0.9091)) +(: cnet_isa_fcdf57eef0 (IsA subjugation relationship) (STV 1.0 0.9091)) +(: cnet_isa_62dca46fed (IsA subjugator conqueror) (STV 1.0 0.9091)) +(: cnet_isa_9ff25b87bc (IsA subjunctive_mood mood) (STV 1.0 0.9091)) +(: cnet_isa_7d78d9f6cc (IsA subkingdom taxonomic_group) (STV 1.0 0.9091)) +(: cnet_isa_1b0baa5df2 (IsA sublease lease) (STV 1.0 0.9091)) +(: cnet_isa_203b35b93e (IsA sublieutenant lieutenant) (STV 1.0 0.9091)) +(: cnet_isa_3283b8662a (IsA sublimate gas) (STV 1.0 0.9091)) +(: cnet_isa_4154cc7725 (IsA sublimation transformation) (STV 1.0 0.9091)) +(: cnet_isa_23f7ae0aa0 (IsA sublimation change) (STV 1.0 0.9091)) +(: cnet_isa_7cbb8682e7 (IsA sublimity nobility) (STV 1.0 0.9091)) +(: cnet_isa_f868d9158b (IsA sublingual_gland salivary_gland) (STV 1.0 0.9091)) +(: cnet_isa_e35470b1ec (IsA sublingual_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_e62135a78c (IsA subluxation luxation) (STV 1.0 0.9091)) +(: cnet_isa_0da290562c (IsA submachine_gun machine_gun) (STV 1.0 0.9091)) +(: cnet_isa_6d6f0915c5 (IsA submarine boat) (STV 1.0 0.9677)) +(: cnet_isa_4e0007cef9 (IsA submarine ship) (STV 1.0 0.9608)) +(: cnet_isa_1d2f25bc62 (IsA submarine submersible) (STV 1.0 0.9091)) +(: cnet_isa_3380bfef8f (IsA submarine_ball pitch) (STV 1.0 0.9091)) +(: cnet_isa_21ab5856f9 (IsA submarine_torpedo torpedo) (STV 1.0 0.9091)) +(: cnet_isa_187c41a688 (IsA submariner bluejacket) (STV 1.0 0.9091)) +(: cnet_isa_100c5a8c3f (IsA submaxillary_gland salivary_gland) (STV 1.0 0.9091)) +(: cnet_isa_62b22b4aa3 (IsA submediant note) (STV 1.0 0.9091)) +(: cnet_isa_06e8c1390f (IsA submergence sinking) (STV 1.0 0.9091)) +(: cnet_isa_18333e9549 (IsA submersible apparatus) (STV 1.0 0.9091)) +(: cnet_isa_a3ce85cfc5 (IsA submersible warship) (STV 1.0 0.9091)) +(: cnet_isa_d909ba7400 (IsA submersion wetting) (STV 1.0 0.9091)) +(: cnet_isa_ec261d147d (IsA submission agreement) (STV 1.0 0.9091)) +(: cnet_isa_169821a45b (IsA submission message) (STV 1.0 0.9091)) +(: cnet_isa_e05ce03dec (IsA submission written_agreement) (STV 1.0 0.9091)) +(: cnet_isa_19fdb17169 (IsA submission contention) (STV 1.0 0.9091)) +(: cnet_isa_4148aa5823 (IsA submission condition) (STV 1.0 0.9091)) +(: cnet_isa_112a499cc6 (IsA submissiveness obedience) (STV 1.0 0.9091)) +(: cnet_isa_b74078da20 (IsA submitter applicant) (STV 1.0 0.9091)) +(: cnet_isa_5cde58cf1b (IsA submitter follower) (STV 1.0 0.9091)) +(: cnet_isa_cd8140d1c3 (IsA submucosa connective_tissue) (STV 1.0 0.9091)) +(: cnet_isa_4552af62e3 (IsA subnormal simpleton) (STV 1.0 0.9091)) +(: cnet_isa_36e7c5c539 (IsA subnormality abnormality) (STV 1.0 0.9091)) +(: cnet_isa_1c2dde5036 (IsA suborder taxonomic_group) (STV 1.0 0.9091)) +(: cnet_isa_2b864a21e9 (IsA suborder_ceratosaura animal_order) (STV 1.0 0.9091)) +(: cnet_isa_778d8eb816 (IsA suborder_pachycephalosaurus animal_order) (STV 1.0 0.9091)) +(: cnet_isa_1c29f24467 (IsA subordinate assistant) (STV 1.0 0.9091)) +(: cnet_isa_28e75b3bc2 (IsA subordinate_clause clause) (STV 1.0 0.9091)) +(: cnet_isa_11ac75ddf1 (IsA subordinateness inferiority) (STV 1.0 0.9091)) +(: cnet_isa_76c11ca4d9 (IsA subordinating_conjunction conjunction) (STV 1.0 0.9091)) +(: cnet_isa_9f82eb4330 (IsA subordination submissiveness) (STV 1.0 0.9091)) +(: cnet_isa_5a0c9c3280 (IsA subordination grammatical_relation) (STV 1.0 0.9091)) +(: cnet_isa_dda3fc78df (IsA subordination dependence) (STV 1.0 0.9091)) +(: cnet_isa_e6106e63b6 (IsA subornation provocation) (STV 1.0 0.9091)) +(: cnet_isa_dffdec656f (IsA subornation testimony) (STV 1.0 0.9091)) +(: cnet_isa_57d05499cd (IsA subornation_of_perjury subornation) (STV 1.0 0.9091)) +(: cnet_isa_b3db550e44 (IsA subpart part) (STV 1.0 0.9091)) +(: cnet_isa_acaeb1be9f (IsA subphylum taxonomic_group) (STV 1.0 0.9091)) +(: cnet_isa_7501c43e34 (IsA subpoena writ) (STV 1.0 0.9091)) +(: cnet_isa_f65a51cd92 (IsA subpoena_duce_tecum writ) (STV 1.0 0.9091)) +(: cnet_isa_e9d97a0d01 (IsA subpopulation population) (STV 1.0 0.9091)) +(: cnet_isa_2f905a8333 (IsA subrogation substitution) (STV 1.0 0.9091)) +(: cnet_isa_2447bee41b (IsA subscriber customer) (STV 1.0 0.9091)) +(: cnet_isa_eed7669e07 (IsA subscriber donor) (STV 1.0 0.9091)) +(: cnet_isa_da82a71459 (IsA subscriber supporter) (STV 1.0 0.9091)) +(: cnet_isa_d98d9bb45c (IsA subscript character) (STV 1.0 0.9091)) +(: cnet_isa_4f8ed144a4 (IsA subscription contribution) (STV 1.0 0.9091)) +(: cnet_isa_10634ee9a8 (IsA subscription handwriting) (STV 1.0 0.9091)) +(: cnet_isa_5c8767c3b8 (IsA subscription agreement) (STV 1.0 0.9091)) +(: cnet_isa_64a7e4a308 (IsA subscription payment) (STV 1.0 0.9091)) +(: cnet_isa_3b6f8fcea6 (IsA subscription_right preemption) (STV 1.0 0.9091)) +(: cnet_isa_a825295291 (IsA subscription_warrant warrant) (STV 1.0 0.9091)) +(: cnet_isa_550ab1c4a6 (IsA subsection section) (STV 1.0 0.9091)) +(: cnet_isa_2100ba4efc (IsA subservience condition) (STV 1.0 0.9091)) +(: cnet_isa_5381b8d6a9 (IsA subservience subordinateness) (STV 1.0 0.9091)) +(: cnet_isa_de0e032756 (IsA subset set) (STV 1.0 0.9091)) +(: cnet_isa_bf13f7ddb9 (IsA subshrub shrub) (STV 1.0 0.9091)) +(: cnet_isa_a9b8c47227 (IsA subsidiary_company company) (STV 1.0 0.9091)) +(: cnet_isa_abe5826a80 (IsA subsidiary_ledger ledger) (STV 1.0 0.9091)) +(: cnet_isa_20387144a8 (IsA subsidization money) (STV 1.0 0.9091)) +(: cnet_isa_7e6e79a1c0 (IsA subsidizer donor) (STV 1.0 0.9091)) +(: cnet_isa_93b020762d (IsA subsidy grant) (STV 1.0 0.9091)) +(: cnet_isa_9b5ab05804 (IsA subsistence support) (STV 1.0 0.9091)) +(: cnet_isa_c438039c79 (IsA subsistence being) (STV 1.0 0.9091)) +(: cnet_isa_8d7f2f1f99 (IsA subsistence survival) (STV 1.0 0.9091)) +(: cnet_isa_6ba06ed944 (IsA subsistence_farming farming) (STV 1.0 0.9091)) +(: cnet_isa_6110855b97 (IsA subsoil soil) (STV 1.0 0.9091)) +(: cnet_isa_17208290e5 (IsA subspace mathematical_space) (STV 1.0 0.9091)) +(: cnet_isa_77c154764d (IsA subspecy taxonomic_group) (STV 1.0 0.9091)) +(: cnet_isa_a3d83d5185 (IsA substance part) (STV 1.0 0.9091)) +(: cnet_isa_f66a9b9ff3 (IsA substance physical_entity) (STV 1.0 0.9091)) +(: cnet_isa_42c7396eab (IsA substance substance) (STV 1.0 0.9091)) +(: cnet_isa_0d1171f402 (IsA substance_abuse misuse) (STV 1.0 0.9091)) +(: cnet_isa_15bdeadd26 (IsA substantia_nigra neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_293e87013b (IsA substantiality materiality) (STV 1.0 0.9091)) +(: cnet_isa_515a449ea0 (IsA substantive word) (STV 1.0 0.9091)) +(: cnet_isa_17a8694b54 (IsA substation station) (STV 1.0 0.9091)) +(: cnet_isa_bfec5a28e8 (IsA substitute equivalent) (STV 1.0 0.9091)) +(: cnet_isa_6ca987bc47 (IsA substitute athlete) (STV 1.0 0.9091)) +(: cnet_isa_07a4a12a07 (IsA substitution change) (STV 1.0 0.9091)) +(: cnet_isa_a95067e5cc (IsA substitution variation) (STV 1.0 0.9091)) +(: cnet_isa_76b44b599e (IsA substitution_class class) (STV 1.0 0.9091)) +(: cnet_isa_7cc01729ca (IsA substrate substance) (STV 1.0 0.9091)) +(: cnet_isa_33f44d86cb (IsA substratum indigenous_language) (STV 1.0 0.9091)) +(: cnet_isa_c2191752d8 (IsA substratum stratum) (STV 1.0 0.9091)) +(: cnet_isa_f39e2dc0b7 (IsA substratum surface) (STV 1.0 0.9091)) +(: cnet_isa_4b0fbdf7ce (IsA substring string) (STV 1.0 0.9091)) +(: cnet_isa_8357137939 (IsA subsumption classification) (STV 1.0 0.9091)) +(: cnet_isa_4ad1838864 (IsA subsystem system) (STV 1.0 0.9091)) +(: cnet_isa_a2553b48bb (IsA subterfuge misrepresentation) (STV 1.0 0.9091)) +(: cnet_isa_4ea9fa37b2 (IsA subthalamic_nucleus nucleus) (STV 1.0 0.9091)) +(: cnet_isa_8131f9eadf (IsA subthalamus neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_3df31d1e35 (IsA subtilin antibiotic) (STV 1.0 0.9091)) +(: cnet_isa_59ec48f567 (IsA subtitle title) (STV 1.0 0.9091)) +(: cnet_isa_e2b8092b25 (IsA subtitle translation) (STV 1.0 0.9091)) +(: cnet_isa_3a370d5210 (IsA subtlety difficulty) (STV 1.0 0.9091)) +(: cnet_isa_ba8e0d2e3a (IsA subtonic note) (STV 1.0 0.9091)) +(: cnet_isa_c8e805183e (IsA subtopia conurbation) (STV 1.0 0.9091)) +(: cnet_isa_0f3247932f (IsA subtotal sum) (STV 1.0 0.9091)) +(: cnet_isa_cba7a17c31 (IsA subtracter calculator) (STV 1.0 0.9091)) +(: cnet_isa_ed1649216d (IsA subtraction arithmetic_operation) (STV 1.0 0.9091)) +(: cnet_isa_f08500aa77 (IsA subtraction decrease) (STV 1.0 0.9091)) +(: cnet_isa_daa3cddb0e (IsA subtrahend number) (STV 1.0 0.9091)) +(: cnet_isa_283b1dd578 (IsA subtreasury treasury) (STV 1.0 0.9091)) +(: cnet_isa_ba25c1018d (IsA subtropic climatic_zone) (STV 1.0 0.9091)) +(: cnet_isa_578784d9f0 (IsA subularia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c0ae75aab2 (IsA suburb residential_district) (STV 1.0 0.9091)) +(: cnet_isa_01f0b6480e (IsA suburbanite resident) (STV 1.0 0.9091)) +(: cnet_isa_0bb76286ee (IsA suburbia subculture) (STV 1.0 0.9091)) +(: cnet_isa_969f1b1d53 (IsA subvention provision) (STV 1.0 0.9091)) +(: cnet_isa_0d864d01ec (IsA subvention subsidy) (STV 1.0 0.9091)) +(: cnet_isa_5be5c2d0d9 (IsA subversion overthrow) (STV 1.0 0.9091)) +(: cnet_isa_ae6cdd040e (IsA subvocalizer articulator) (STV 1.0 0.9091)) +(: cnet_isa_13db8068df (IsA subway form_of_public_transportation) (STV 1.0 0.9339)) +(: cnet_isa_8d5d15dff7 (IsA subway_fare train_fare) (STV 1.0 0.9091)) +(: cnet_isa_8e223605f9 (IsA subway_station terminal) (STV 1.0 0.9091)) +(: cnet_isa_a12aa60645 (IsA subway_token token) (STV 1.0 0.9091)) +(: cnet_isa_9790cf82b4 (IsA subway_train train) (STV 1.0 0.9091)) +(: cnet_isa_6d7a3e2067 (IsA subway form_of_transportation) (STV 1.0 0.9091)) +(: cnet_isa_01fa0ae740 (IsA subway train_run_underground) (STV 1.0 0.9339)) +(: cnet_isa_fb49f57ba1 (IsA subwoofer loudspeaker) (STV 1.0 0.9091)) +(: cnet_isa_879fbcf702 (IsA succedaneum substitute) (STV 1.0 0.9091)) +(: cnet_isa_144bf8d5d4 (IsA success attainment) (STV 1.0 0.9091)) +(: cnet_isa_654e3bda66 (IsA success happening) (STV 1.0 0.9091)) +(: cnet_isa_19ead38e2e (IsA success prosperity) (STV 1.0 0.9091)) +(: cnet_isa_428b8a2986 (IsA succession acquisition) (STV 1.0 0.9091)) +(: cnet_isa_7b30ba60e7 (IsA succession order) (STV 1.0 0.9091)) +(: cnet_isa_d2eea63f66 (IsA succession natural_process) (STV 1.0 0.9091)) +(: cnet_isa_ad973db888 (IsA succession sery) (STV 1.0 0.9091)) +(: cnet_isa_5f5c57bf8c (IsA successor substitute) (STV 1.0 0.9091)) +(: cnet_isa_d0496902fa (IsA successor offspring) (STV 1.0 0.9091)) +(: cnet_isa_1e43b4f6b0 (IsA successor peer) (STV 1.0 0.9091)) +(: cnet_isa_a66e28fb1f (IsA successor_of_number number) (STV 1.0 0.9091)) +(: cnet_isa_041c1c647a (IsA succinic_acid carboxylic_acid) (STV 1.0 0.9091)) +(: cnet_isa_63f3b2b6b5 (IsA succinylcholine muscle_relaxant) (STV 1.0 0.9091)) +(: cnet_isa_58ce2c199e (IsA succorer rescuer) (STV 1.0 0.9091)) +(: cnet_isa_8b9eb9ac56 (IsA succo jewish_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_2321fc05ac (IsA succo religious_festival) (STV 1.0 0.9091)) +(: cnet_isa_a814d24ed2 (IsA succotash dish) (STV 1.0 0.9091)) +(: cnet_isa_4ab48fce07 (IsA succubus devil) (STV 1.0 0.9091)) +(: cnet_isa_90657ab982 (IsA succulence appetizingness) (STV 1.0 0.9091)) +(: cnet_isa_6f75b18579 (IsA succulent vascular_plant) (STV 1.0 0.9091)) +(: cnet_isa_995cabbb08 (IsA succussion auscultation) (STV 1.0 0.9091)) +(: cnet_isa_6cba109ad4 (IsA sucker catostomid) (STV 1.0 0.9091)) +(: cnet_isa_a5f1d4e2c1 (IsA sucker organ) (STV 1.0 0.9091)) +(: cnet_isa_977a140962 (IsA sucker freshwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_5614ba6bbb (IsA sucker drinker) (STV 1.0 0.9091)) +(: cnet_isa_110489053e (IsA sucker shoot) (STV 1.0 0.9091)) +(: cnet_isa_7f91d99da9 (IsA sucker_punch punch) (STV 1.0 0.9091)) +(: cnet_isa_7e6d1d9cf1 (IsA sucking consumption) (STV 1.0 0.9091)) +(: cnet_isa_4b61203d75 (IsA sucking_pig piglet) (STV 1.0 0.9091)) +(: cnet_isa_d47f600e7a (IsA suckling feeding) (STV 1.0 0.9091)) +(: cnet_isa_323d8a0180 (IsA suckling young_mammal) (STV 1.0 0.9091)) +(: cnet_isa_5e8e82d8b7 (IsA suckling_reflex reflex) (STV 1.0 0.9091)) +(: cnet_isa_e0f4289b59 (IsA sucre ecuadoran_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_586296d858 (IsA sucrose disaccharide) (STV 1.0 0.9091)) +(: cnet_isa_044a0a1a0b (IsA sucrose plant_product) (STV 1.0 0.9091)) +(: cnet_isa_c200bb346b (IsA suction pressure) (STV 1.0 0.9091)) +(: cnet_isa_98a4f9bc96 (IsA suction_cup device) (STV 1.0 0.9091)) +(: cnet_isa_00e4fd2529 (IsA suction_curettage curettage) (STV 1.0 0.9091)) +(: cnet_isa_a06f6a3c2c (IsA suction_curettage induced_abortion) (STV 1.0 0.9091)) +(: cnet_isa_cfd3813959 (IsA suction_lipectomy lipectomy) (STV 1.0 0.9091)) +(: cnet_isa_0d3553170e (IsA suction_pump pump) (STV 1.0 0.9091)) +(: cnet_isa_94d5cdb637 (IsA suction_stop stop_consonant) (STV 1.0 0.9091)) +(: cnet_isa_4879229878 (IsA sudanese african) (STV 1.0 0.9091)) +(: cnet_isa_4abce0edaa (IsA sudanese_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_2195c81525 (IsA sudanese_pound sudanese_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_63a0c662c5 (IsA sudatorium bathhouse) (STV 1.0 0.9091)) +(: cnet_isa_7ef036d47c (IsA sudden_death overtime) (STV 1.0 0.9091)) +(: cnet_isa_d55a534c18 (IsA sudden_infant_death_syndrome death) (STV 1.0 0.9091)) +(: cnet_isa_97d5a4d6ea (IsA sudden_infant_death_syndrome sleep_apnea) (STV 1.0 0.9091)) +(: cnet_isa_7bfdd02944 (IsA sudoku puzzle) (STV 1.0 0.9091)) +(: cnet_isa_fd18432dbb (IsA sudorific medicine) (STV 1.0 0.9091)) +(: cnet_isa_7ed7dc9f7f (IsA sudra varna) (STV 1.0 0.9091)) +(: cnet_isa_a39ce7877b (IsA sudra hindustani) (STV 1.0 0.9091)) +(: cnet_isa_be0d2d2e6f (IsA sud beer) (STV 1.0 0.9091)) +(: cnet_isa_63a81c9ce0 (IsA suede leather) (STV 1.0 0.9091)) +(: cnet_isa_984586b8b1 (IsA suede_cloth fabric) (STV 1.0 0.9091)) +(: cnet_isa_eee85625ae (IsA suer plaintiff) (STV 1.0 0.9091)) +(: cnet_isa_d7b8f72520 (IsA suet edible_fat) (STV 1.0 0.9091)) +(: cnet_isa_f3cea93d6b (IsA suet_pudding pudding) (STV 1.0 0.9091)) +(: cnet_isa_0393321964 (IsA sufferance endurance) (STV 1.0 0.9091)) +(: cnet_isa_0728c43da0 (IsA suffering pain) (STV 1.0 0.9091)) +(: cnet_isa_20ebf63da4 (IsA suffering misery) (STV 1.0 0.9091)) +(: cnet_isa_1791f766cb (IsA sufficiency quality) (STV 1.0 0.9091)) +(: cnet_isa_273ee28fa1 (IsA sufficiency wealth) (STV 1.0 0.9091)) +(: cnet_isa_bf8342e88b (IsA suffix affix) (STV 1.0 0.9091)) +(: cnet_isa_188427d94a (IsA suffix ending) (STV 1.0 0.9091)) +(: cnet_isa_9ab580dbb9 (IsA suffixation affixation) (STV 1.0 0.9091)) +(: cnet_isa_1b10704ccd (IsA suffocation killing) (STV 1.0 0.9091)) +(: cnet_isa_212a4aa427 (IsA suffocation hypoxia) (STV 1.0 0.9091)) +(: cnet_isa_b770697020 (IsA suffragan bishop) (STV 1.0 0.9091)) +(: cnet_isa_e84176e60c (IsA suffragette feminist) (STV 1.0 0.9091)) +(: cnet_isa_0fc51fa18c (IsA suffragette suffragist) (STV 1.0 0.9091)) +(: cnet_isa_749dca95bf (IsA suffragism belief) (STV 1.0 0.9091)) +(: cnet_isa_8de1b93ed1 (IsA suffragist advocate) (STV 1.0 0.9091)) +(: cnet_isa_b673f4bfe0 (IsA sufi moslem) (STV 1.0 0.9091)) +(: cnet_isa_39a377ba85 (IsA sufism mysticism) (STV 1.0 0.9091)) +(: cnet_isa_b2687fa760 (IsA sugar carbohydrate) (STV 1.0 0.9339)) +(: cnet_isa_845751b22e (IsA sugar culinary_ingredient) (STV 1.0 0.9091)) +(: cnet_isa_f629bf605d (IsA sugar main_ingredient_in_candy) (STV 1.0 0.9091)) +(: cnet_isa_f3df5afd82 (IsA sugar sweet_food) (STV 1.0 0.9339)) +(: cnet_isa_e1d50d1dee (IsA sugar sweetening) (STV 1.0 0.9091)) +(: cnet_isa_ae60f934fc (IsA sugar_beet beet) (STV 1.0 0.9091)) +(: cnet_isa_6933adb0a7 (IsA sugar_bowl dish) (STV 1.0 0.9091)) +(: cnet_isa_341373b18b (IsA sugar_bush sumac) (STV 1.0 0.9091)) +(: cnet_isa_f0a675d2af (IsA sugar_candy candy) (STV 1.0 0.9091)) +(: cnet_isa_a036234259 (IsA sugar_cookie cookie) (STV 1.0 0.9091)) +(: cnet_isa_fc0413a9ef (IsA sugar_daddy sweetheart) (STV 1.0 0.9091)) +(: cnet_isa_d79e179e12 (IsA sugar_maple maple) (STV 1.0 0.9091)) +(: cnet_isa_76f4788921 (IsA sugar_palm sago_palm) (STV 1.0 0.9091)) +(: cnet_isa_5eefe2cfec (IsA sugar_refinery refinery) (STV 1.0 0.9091)) +(: cnet_isa_32e6927e2d (IsA sugar_snap_pea green_pea) (STV 1.0 0.9091)) +(: cnet_isa_dcddafdf55 (IsA sugar_snap_pea edible_pod_pea) (STV 1.0 0.9091)) +(: cnet_isa_13d3dac027 (IsA sugar_spoon spoon) (STV 1.0 0.9091)) +(: cnet_isa_ae42a7685c (IsA sugar_syrup syrup) (STV 1.0 0.9091)) +(: cnet_isa_645a47463e (IsA sugar_water drinking_water) (STV 1.0 0.9091)) +(: cnet_isa_26b2858361 (IsA sugarberry berry) (STV 1.0 0.9091)) +(: cnet_isa_c9cc5664fa (IsA sugarberry hackberry) (STV 1.0 0.9091)) +(: cnet_isa_6758af3603 (IsA sugarcane cane) (STV 1.0 0.9091)) +(: cnet_isa_e6880f32f4 (IsA sugarcane gramineous_plant) (STV 1.0 0.9091)) +(: cnet_isa_f9068508c6 (IsA sugariness sweetness) (STV 1.0 0.9091)) +(: cnet_isa_a04f90e33c (IsA sugarloaf loaf) (STV 1.0 0.9091)) +(: cnet_isa_7c7252c1ad (IsA sugarloaf sugar) (STV 1.0 0.9091)) +(: cnet_isa_e8121aa7a6 (IsA sugarplum candy) (STV 1.0 0.9091)) +(: cnet_isa_54be264494 (IsA suggester originator) (STV 1.0 0.9091)) +(: cnet_isa_707d8838a0 (IsA suggestibility susceptibility) (STV 1.0 0.9091)) +(: cnet_isa_d5c356e584 (IsA suggestion higher_cognitive_process) (STV 1.0 0.9091)) +(: cnet_isa_8b594355b1 (IsA suggestion idea) (STV 1.0 0.9091)) +(: cnet_isa_1aeb70178a (IsA suggestion persuasion) (STV 1.0 0.9091)) +(: cnet_isa_7939ed430b (IsA suggestion proposal) (STV 1.0 0.9091)) +(: cnet_isa_29e9fb0a1f (IsA suicide killing) (STV 1.0 0.9091)) +(: cnet_isa_9b0b53d28e (IsA suicide killer) (STV 1.0 0.9091)) +(: cnet_isa_cb7b9d9820 (IsA suicide_bomber terrorist) (STV 1.0 0.9091)) +(: cnet_isa_0d5c554801 (IsA suicide_bombing bombing) (STV 1.0 0.9091)) +(: cnet_isa_08642b7b78 (IsA suicide_mission mission) (STV 1.0 0.9091)) +(: cnet_isa_434575e92f (IsA suicide_pact agreement) (STV 1.0 0.9091)) +(: cnet_isa_5b8a6341d7 (IsA suicide_pill poison_pill) (STV 1.0 0.9091)) +(: cnet_isa_e317a5968d (IsA suicide_squeeze_play squeeze_play) (STV 1.0 0.9091)) +(: cnet_isa_4335f99a8a (IsA suidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_250fb86f45 (IsA suillus fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_9c5c599747 (IsA suillus_albivelatus bolete) (STV 1.0 0.9091)) +(: cnet_isa_7c428afa31 (IsA suit garment) (STV 1.0 0.9091)) +(: cnet_isa_ad7a81e816 (IsA suit playing_card) (STV 1.0 0.9091)) +(: cnet_isa_c07b1c9c00 (IsA suit entreaty) (STV 1.0 0.9091)) +(: cnet_isa_218d25fa1f (IsA suit businessman) (STV 1.0 0.9091)) +(: cnet_isa_8bfa1642ce (IsA suitability quality) (STV 1.0 0.9091)) +(: cnet_isa_834fb2cbed (IsA suite apartment) (STV 1.0 0.9091)) +(: cnet_isa_9eac920c51 (IsA suite set) (STV 1.0 0.9091)) +(: cnet_isa_39b8b7433b (IsA suite musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_8948eba7be (IsA suiting fabric) (STV 1.0 0.9091)) +(: cnet_isa_83de3ad6ad (IsA suitor admirer) (STV 1.0 0.9091)) +(: cnet_isa_8d34d086f3 (IsA sukiyaki dish) (STV 1.0 0.9091)) +(: cnet_isa_a020af9c23 (IsA suksdorfia herb) (STV 1.0 0.9091)) +(: cnet_isa_d4661b9f8e (IsA sukur biu_mandara) (STV 1.0 0.9091)) +(: cnet_isa_c07bce129b (IsA sula bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_9f5665147d (IsA sulcus fissure) (STV 1.0 0.9091)) +(: cnet_isa_467006df4b (IsA sulfa_drug antibacterial) (STV 1.0 0.9091)) +(: cnet_isa_9a2df6488a (IsA sulfadiazine sulfa_drug) (STV 1.0 0.9091)) +(: cnet_isa_986428696f (IsA sulfamethazine sulfa_drug) (STV 1.0 0.9091)) +(: cnet_isa_4a77b00cbd (IsA sulfanilamide sulfa_drug) (STV 1.0 0.9091)) +(: cnet_isa_d7699d53f8 (IsA sulfanilic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_d6c2237846 (IsA sulfapyridine sulfa_drug) (STV 1.0 0.9091)) +(: cnet_isa_48cb949ba9 (IsA sulfate salt) (STV 1.0 0.9091)) +(: cnet_isa_3df051a625 (IsA sulfide compound) (STV 1.0 0.9091)) +(: cnet_isa_35a2e54290 (IsA sulfonate salt) (STV 1.0 0.9091)) +(: cnet_isa_43ee9a3148 (IsA sulfonic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_d8189a498b (IsA sulfonylurea antidiabetic) (STV 1.0 0.9091)) +(: cnet_isa_a4545290a1 (IsA sulfur chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_ad2d946243 (IsA sulfur_dioxide dioxide) (STV 1.0 0.9091)) +(: cnet_isa_9e74f5e1ef (IsA sulfur_dioxide gas) (STV 1.0 0.9091)) +(: cnet_isa_bff89d06f3 (IsA sulfur_dioxide pollutant) (STV 1.0 0.9091)) +(: cnet_isa_9df3ec471d (IsA sulfur_hexafluoride fluoride) (STV 1.0 0.9091)) +(: cnet_isa_5df3cb7c01 (IsA sulfur_hexafluoride greenhouse_gas) (STV 1.0 0.9091)) +(: cnet_isa_f72c307931 (IsA sulfur_oxide oxide) (STV 1.0 0.9091)) +(: cnet_isa_088ccffe58 (IsA sulfur_paintbrush indian_paintbrush) (STV 1.0 0.9091)) +(: cnet_isa_bbb9b977e4 (IsA sulidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_2e726f8c98 (IsA sulk temper) (STV 1.0 0.9091)) +(: cnet_isa_faca6cb79c (IsA sulkiness ill_nature) (STV 1.0 0.9091)) +(: cnet_isa_cfd98ec61c (IsA sulkiness resentment) (STV 1.0 0.9091)) +(: cnet_isa_af0788ed25 (IsA sulky horse_drawn_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_535b9e63d6 (IsA sulphur_butterfly butterfly) (STV 1.0 0.9091)) +(: cnet_isa_6187977ef1 (IsA sulphur_crested_cockatoo cockatoo) (STV 1.0 0.9091)) +(: cnet_isa_6e4c42a271 (IsA sulphur_mine mine) (STV 1.0 0.9091)) +(: cnet_isa_5a2c543465 (IsA sultan ruler) (STV 1.0 0.9091)) +(: cnet_isa_ca4c0ebc6a (IsA sultana vinifera_grape) (STV 1.0 0.9091)) +(: cnet_isa_63383df56d (IsA sultanate country) (STV 1.0 0.9091)) +(: cnet_isa_3a9df40fb1 (IsA sultriness sex_appeal) (STV 1.0 0.9091)) +(: cnet_isa_2dc5032296 (IsA sultriness hot_weather) (STV 1.0 0.9091)) +(: cnet_isa_8493866140 (IsA sum whole) (STV 1.0 0.9091)) +(: cnet_isa_e74fbf1c78 (IsA sum quantity) (STV 1.0 0.9091)) +(: cnet_isa_75104cbae1 (IsA sum collection) (STV 1.0 0.9091)) +(: cnet_isa_fe6f8b6c73 (IsA sum asset) (STV 1.0 0.9091)) +(: cnet_isa_5c455a3685 (IsA sumac shrub) (STV 1.0 0.9091)) +(: cnet_isa_45f8425122 (IsA sumac wood) (STV 1.0 0.9091)) +(: cnet_isa_21e0b2d07a (IsA sumatran indonesian) (STV 1.0 0.9091)) +(: cnet_isa_b25ade9431 (IsA sumerian babylonian) (STV 1.0 0.9091)) +(: cnet_isa_fcb6414dd6 (IsA sumerology archeology) (STV 1.0 0.9091)) +(: cnet_isa_14bdc20559 (IsA summarization report) (STV 1.0 0.9091)) +(: cnet_isa_71ce2cf170 (IsA summary statement) (STV 1.0 0.9091)) +(: cnet_isa_ef0e0d1ecb (IsA summary_judgment judgment) (STV 1.0 0.9091)) +(: cnet_isa_2659bdcf46 (IsA summation arithmetic_operation) (STV 1.0 0.9091)) +(: cnet_isa_8decea7a17 (IsA summation summary) (STV 1.0 0.9091)) +(: cnet_isa_affe09bee8 (IsA summation organic_process) (STV 1.0 0.9091)) +(: cnet_isa_70f404bbfa (IsA summer season) (STV 1.0 0.9339)) +(: cnet_isa_30c15fe9d4 (IsA summer warmer_than_winter) (STV 1.0 0.9091)) +(: cnet_isa_58f23213c3 (IsA summer time_of_life) (STV 1.0 0.9091)) +(: cnet_isa_053bc2c35f (IsA summer_cypress shrub) (STV 1.0 0.9091)) +(: cnet_isa_15e922ef46 (IsA summer_flounder lefteye_flounder) (STV 1.0 0.9091)) +(: cnet_isa_b8d931ec2c (IsA summer_house country_house) (STV 1.0 0.9091)) +(: cnet_isa_37bb01cb55 (IsA summer_hyacinth hyacinth) (STV 1.0 0.9091)) +(: cnet_isa_5f581c071d (IsA summer_savory savory) (STV 1.0 0.9091)) +(: cnet_isa_a1d5bcdd02 (IsA summer_school school_term) (STV 1.0 0.9091)) +(: cnet_isa_70c75c8134 (IsA summer_solstice solstice) (STV 1.0 0.9091)) +(: cnet_isa_c74cfe84d9 (IsA summer_squash squash) (STV 1.0 0.9091)) +(: cnet_isa_f05787b7c8 (IsA summer_stock theatrical_production) (STV 1.0 0.9091)) +(: cnet_isa_4d46dc75b8 (IsA summer_tanager tanager) (STV 1.0 0.9091)) +(: cnet_isa_fe1c451779 (IsA summercater vacationer) (STV 1.0 0.9091)) +(: cnet_isa_7391d6f50d (IsA summit meeting) (STV 1.0 0.9091)) +(: cnet_isa_7b4197907c (IsA summon order) (STV 1.0 0.9091)) +(: cnet_isa_912bde7cac (IsA summon writ) (STV 1.0 0.9091)) +(: cnet_isa_59346e399b (IsA summum_bonum good) (STV 1.0 0.9091)) +(: cnet_isa_4c21043ae6 (IsA sumo sport) (STV 1.0 0.9091)) +(: cnet_isa_763c21db7b (IsA sumo wrestling) (STV 1.0 0.9091)) +(: cnet_isa_50f560fb50 (IsA sumo_ring ring) (STV 1.0 0.9091)) +(: cnet_isa_178cb0b145 (IsA sumo_wrestler wrestler) (STV 1.0 0.9091)) +(: cnet_isa_fa8771ddc1 (IsA sump reservoir) (STV 1.0 0.9091)) +(: cnet_isa_bf6a31823d (IsA sump well) (STV 1.0 0.9091)) +(: cnet_isa_cb2e8d38e5 (IsA sump_pump suction_pump) (STV 1.0 0.9091)) +(: cnet_isa_fcbdd65813 (IsA sumpsimus saying) (STV 1.0 0.9091)) +(: cnet_isa_488bb736d0 (IsA sun bigger_than_earth) (STV 1.0 0.9091)) +(: cnet_isa_0fba216150 (IsA sun g_class_star) (STV 1.0 0.9091)) +(: cnet_isa_2547c33885 (IsA sun major_heat_source) (STV 1.0 0.9339)) +(: cnet_isa_d86ea4d0cc (IsA sun orbited_by_earth) (STV 1.0 0.9339)) +(: cnet_isa_6f08c679ac (IsA sun setting) (STV 1.0 0.9091)) +(: cnet_isa_11f75256f7 (IsA sun sphere) (STV 1.0 0.9339)) +(: cnet_isa_4ad8f2bd6c (IsA sun star) (STV 1.0 0.9091)) +(: cnet_isa_0828f6d576 (IsA sun important_person) (STV 1.0 0.9091)) +(: cnet_isa_dbc9bd8f69 (IsA sun_bathing bathing) (STV 1.0 0.9091)) +(: cnet_isa_e1c5f7698a (IsA sun_dance ritual_dancing) (STV 1.0 0.9091)) +(: cnet_isa_77393c9f31 (IsA sun_deck deck) (STV 1.0 0.9091)) +(: cnet_isa_50cf697c59 (IsA sun_gear gear) (STV 1.0 0.9091)) +(: cnet_isa_f79cfd828f (IsA sun_god deity) (STV 1.0 0.9091)) +(: cnet_isa_7eab619cbd (IsA sun_hat hat) (STV 1.0 0.9091)) +(: cnet_isa_6f9f486c52 (IsA sun_parlor room) (STV 1.0 0.9091)) +(: cnet_isa_8ceeb7b33a (IsA sun_pitcher pitcher_plant) (STV 1.0 0.9091)) +(: cnet_isa_f2075ce9e5 (IsA sun_protection_factor degree) (STV 1.0 0.9091)) +(: cnet_isa_27233f69b2 (IsA sun_spurge spurge) (STV 1.0 0.9091)) +(: cnet_isa_7777160df9 (IsA sun_tea tea) (STV 1.0 0.9091)) +(: cnet_isa_1a687c2b34 (IsA sun_visor shade) (STV 1.0 0.9091)) +(: cnet_isa_22d83f8656 (IsA sun_worshiper believer) (STV 1.0 0.9091)) +(: cnet_isa_40829c7d81 (IsA sunbather idler) (STV 1.0 0.9091)) +(: cnet_isa_0cd7367395 (IsA sunbeam beam) (STV 1.0 0.9091)) +(: cnet_isa_ae1b7352d4 (IsA sunbonnet bonnet) (STV 1.0 0.9091)) +(: cnet_isa_dbe262a2c8 (IsA sunbonnet sun_hat) (STV 1.0 0.9091)) +(: cnet_isa_311dc366d6 (IsA sunburn erythema) (STV 1.0 0.9091)) +(: cnet_isa_5935eefdae (IsA sunburn first_degree_burn) (STV 1.0 0.9091)) +(: cnet_isa_d431c8ab4a (IsA sunburst brooch) (STV 1.0 0.9091)) +(: cnet_isa_d0d9bb9f69 (IsA sunburst design) (STV 1.0 0.9091)) +(: cnet_isa_3baa3732d7 (IsA sunburst sunlight) (STV 1.0 0.9091)) +(: cnet_isa_2437c93870 (IsA sunburst_pleat knife_pleat) (STV 1.0 0.9091)) +(: cnet_isa_2579f6fbbc (IsA sundacarpus gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_81ad09ecb5 (IsA sundacarpus_amara conifer) (STV 1.0 0.9091)) +(: cnet_isa_ecffde41b1 (IsA sundanese indonesian) (STV 1.0 0.9091)) +(: cnet_isa_4ee67eb374 (IsA sunday day_of_rest) (STV 1.0 0.9091)) +(: cnet_isa_b55da04e1f (IsA sunday rest_day) (STV 1.0 0.9091)) +(: cnet_isa_4cec115b55 (IsA sunday_best finery) (STV 1.0 0.9091)) +(: cnet_isa_5a828b8b5a (IsA sunday_school school) (STV 1.0 0.9091)) +(: cnet_isa_a300738988 (IsA sundew carnivorous_plant) (STV 1.0 0.9091)) +(: cnet_isa_7528149578 (IsA sundial timepiece) (STV 1.0 0.9091)) +(: cnet_isa_0b3df80567 (IsA sundowner drink) (STV 1.0 0.9091)) +(: cnet_isa_919fe499a6 (IsA sundowner vagrant) (STV 1.0 0.9091)) +(: cnet_isa_f32b69464d (IsA sundress dress) (STV 1.0 0.9091)) +(: cnet_isa_a30cfa1b3e (IsA sundry whatchamacallit) (STV 1.0 0.9091)) +(: cnet_isa_ec434af5a7 (IsA sundrop evening_primrose) (STV 1.0 0.9091)) +(: cnet_isa_d8f838c6ed (IsA sunfish percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_089c23ab4f (IsA sunfish freshwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_9383c373ed (IsA sunflower flower) (STV 1.0 0.9091)) +(: cnet_isa_dc9a944dcd (IsA sunflower_oil vegetable_oil) (STV 1.0 0.9091)) +(: cnet_isa_b42af7f891 (IsA sunflower_seed edible_seed) (STV 1.0 0.9091)) +(: cnet_isa_4a74351873 (IsA sung dynasty) (STV 1.0 0.9091)) +(: cnet_isa_32901c196b (IsA sunglass converging_len) (STV 1.0 0.9091)) +(: cnet_isa_def1a8fa0f (IsA sunglass spectacle) (STV 1.0 0.9091)) +(: cnet_isa_578904d4b9 (IsA sunk_fence ditch) (STV 1.0 0.9091)) +(: cnet_isa_e1e58fbaf6 (IsA sunken_arch instep) (STV 1.0 0.9091)) +(: cnet_isa_31060c43da (IsA sunken_garden garden) (STV 1.0 0.9091)) +(: cnet_isa_b15df6baf4 (IsA sunlamp mercury_vapor_lamp) (STV 1.0 0.9091)) +(: cnet_isa_1bc70ef2a4 (IsA sunlight energy) (STV 1.0 0.9091)) +(: cnet_isa_9bd328e411 (IsA sunlight light) (STV 1.0 0.9091)) +(: cnet_isa_052a95a351 (IsA sunnah way) (STV 1.0 0.9091)) +(: cnet_isa_3d04c11ffd (IsA sunni sect) (STV 1.0 0.9091)) +(: cnet_isa_4ef1c1f791 (IsA sunni_muslim moslem) (STV 1.0 0.9091)) +(: cnet_isa_3dbe606c85 (IsA sunniness light) (STV 1.0 0.9091)) +(: cnet_isa_dfab2cda8b (IsA sunny one_type_of_weather) (STV 1.0 0.9091)) +(: cnet_isa_5628234e7c (IsA sunray ultraviolet) (STV 1.0 0.9091)) +(: cnet_isa_290baf15ee (IsA sunray wildflower) (STV 1.0 0.9091)) +(: cnet_isa_52f210838f (IsA sunrise periodic_event) (STV 1.0 0.9091)) +(: cnet_isa_b71d9d5465 (IsA sunrise atmospheric_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_7c2708b125 (IsA sunrise_industry industry) (STV 1.0 0.9091)) +(: cnet_isa_f921379c5d (IsA sunroof roof) (STV 1.0 0.9091)) +(: cnet_isa_8c48ce1d1c (IsA sunscreen cream) (STV 1.0 0.9091)) +(: cnet_isa_5b2987d6b6 (IsA sunset periodic_event) (STV 1.0 0.9091)) +(: cnet_isa_0335f6a965 (IsA sunset atmospheric_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_8b2febac93 (IsA sunset hour) (STV 1.0 0.9091)) +(: cnet_isa_d982ec9d8b (IsA sunspot spot) (STV 1.0 0.9091)) +(: cnet_isa_fa09182338 (IsA sunstone quartz) (STV 1.0 0.9091)) +(: cnet_isa_34e89c5cff (IsA sunstone transparent_gem) (STV 1.0 0.9091)) +(: cnet_isa_3572803837 (IsA sunstroke heatstroke) (STV 1.0 0.9091)) +(: cnet_isa_1470aaf2e3 (IsA sunsuit garment) (STV 1.0 0.9091)) +(: cnet_isa_5c40b33e98 (IsA suntrap patio) (STV 1.0 0.9091)) +(: cnet_isa_e92ce6fb90 (IsA super_heavyweight boxer) (STV 1.0 0.9091)) +(: cnet_isa_345726f8a1 (IsA super_mario_brother game_for_nintendo) (STV 1.0 0.9091)) +(: cnet_isa_19b7f8cc1e (IsA superannuation dismissal) (STV 1.0 0.9091)) +(: cnet_isa_8643d9497c (IsA superbug bacteria) (STV 1.0 0.9091)) +(: cnet_isa_0877ad006d (IsA superbug sweet_potato_whitefly) (STV 1.0 0.9091)) +(: cnet_isa_89d4de15f2 (IsA supercargo officer) (STV 1.0 0.9091)) +(: cnet_isa_6bece29f99 (IsA supercharger compressor) (STV 1.0 0.9091)) +(: cnet_isa_632a18e1f4 (IsA superclass taxonomic_group) (STV 1.0 0.9091)) +(: cnet_isa_bf9691c93e (IsA superclass_myriapoda class) (STV 1.0 0.9091)) +(: cnet_isa_05f134c4ee (IsA supercomputer mainframe) (STV 1.0 0.9091)) +(: cnet_isa_ed39f42209 (IsA superconducting_supercollider collider) (STV 1.0 0.9091)) +(: cnet_isa_f5c47e185e (IsA superconductivity electrical_conduction) (STV 1.0 0.9091)) +(: cnet_isa_0bda215f14 (IsA superego conscience) (STV 1.0 0.9091)) +(: cnet_isa_a2dc39018a (IsA supererogation effort) (STV 1.0 0.9091)) +(: cnet_isa_e7ace3080a (IsA superfamily taxonomic_group) (STV 1.0 0.9091)) +(: cnet_isa_31134e10d9 (IsA superfecta bet) (STV 1.0 0.9091)) +(: cnet_isa_929e41551a (IsA superfecundation fertilization) (STV 1.0 0.9091)) +(: cnet_isa_b53defd2e9 (IsA superfetation fertilization) (STV 1.0 0.9091)) +(: cnet_isa_b904308a29 (IsA superficial_epigastric_vein epigastric_vein) (STV 1.0 0.9091)) +(: cnet_isa_ee8bef2aa0 (IsA superficial_middle_cerebral_vein middle_cerebral_vein) (STV 1.0 0.9091)) +(: cnet_isa_7a40306380 (IsA superficial_temporal_vein temporal_vein) (STV 1.0 0.9091)) +(: cnet_isa_ce100dd419 (IsA superficiality depth) (STV 1.0 0.9091)) +(: cnet_isa_523b47ec96 (IsA superficiality shallowness) (STV 1.0 0.9091)) +(: cnet_isa_0a8c7b01e4 (IsA superficy surface) (STV 1.0 0.9091)) +(: cnet_isa_09fc107266 (IsA superficy appearance) (STV 1.0 0.9091)) +(: cnet_isa_205b4972af (IsA superfund_program program) (STV 1.0 0.9091)) +(: cnet_isa_b6ceb49d85 (IsA supergiant star) (STV 1.0 0.9091)) +(: cnet_isa_0f60d8beea (IsA supergrass informer) (STV 1.0 0.9091)) +(: cnet_isa_950b0c3708 (IsA superhigh_frequency radio_frequency) (STV 1.0 0.9091)) +(: cnet_isa_4093ef9616 (IsA superhighway large_road) (STV 1.0 0.9091)) +(: cnet_isa_df4c8d4e3d (IsA superhighway network) (STV 1.0 0.9091)) +(: cnet_isa_8e12ea1aaf (IsA superinfection infection) (STV 1.0 0.9091)) +(: cnet_isa_3288748991 (IsA superintendent caretaker) (STV 1.0 0.9091)) +(: cnet_isa_f7adec5a48 (IsA superior leader) (STV 1.0 0.9091)) +(: cnet_isa_0058dc6746 (IsA superior religious) (STV 1.0 0.9091)) +(: cnet_isa_acce1b1ccb (IsA superior_alveolar_artery alveolar_artery) (STV 1.0 0.9091)) +(: cnet_isa_3059a5dbb0 (IsA superior_cerebellar_artery cerebellar_artery) (STV 1.0 0.9091)) +(: cnet_isa_b7955ab9c8 (IsA superior_cerebral_vein cerebral_vein) (STV 1.0 0.9091)) +(: cnet_isa_7fd1ccdf01 (IsA superior_colliculus center) (STV 1.0 0.9091)) +(: cnet_isa_ac19f0785b (IsA superior_conjunction conjunction) (STV 1.0 0.9091)) +(: cnet_isa_0cb4184ce5 (IsA superior_court court) (STV 1.0 0.9091)) +(: cnet_isa_12f103b521 (IsA superior_epigastric_vein epigastric_vein) (STV 1.0 0.9091)) +(: cnet_isa_bb18605a43 (IsA superior_labial_artery labial_artery) (STV 1.0 0.9091)) +(: cnet_isa_eda6d1d16f (IsA superior_labial_vein labial_vein) (STV 1.0 0.9091)) +(: cnet_isa_75f60103fd (IsA superior_mesenteric_artery mesenteric_artery) (STV 1.0 0.9091)) +(: cnet_isa_0fecc5c449 (IsA superior_ophthalmic_vein ophthalmic_vein) (STV 1.0 0.9091)) +(: cnet_isa_81d13ab3bb (IsA superior_planet planet) (STV 1.0 0.9091)) +(: cnet_isa_3fa6741355 (IsA superior_pulmonary_vein pulmonary_vein) (STV 1.0 0.9091)) +(: cnet_isa_de61db5cf5 (IsA superior_rectus_muscle ocular_muscle) (STV 1.0 0.9091)) +(: cnet_isa_75742d53dd (IsA superior_skill ability) (STV 1.0 0.9091)) +(: cnet_isa_348d3cb86b (IsA superior_thalamostriate_vein thalamostriate_vein) (STV 1.0 0.9091)) +(: cnet_isa_d478320826 (IsA superior_thyroid_vein thyroid_vein) (STV 1.0 0.9091)) +(: cnet_isa_99f12356c7 (IsA superior_vena_cava vena_cava) (STV 1.0 0.9091)) +(: cnet_isa_a8be713258 (IsA superiority advantage) (STV 1.0 0.9091)) +(: cnet_isa_8f0bbe6af6 (IsA superiority arrogance) (STV 1.0 0.9091)) +(: cnet_isa_3dc07e7117 (IsA superiority quality) (STV 1.0 0.9091)) +(: cnet_isa_3d6b2e5619 (IsA superiority_complex egotism) (STV 1.0 0.9091)) +(: cnet_isa_7ddba63e41 (IsA superlative adjective) (STV 1.0 0.9091)) +(: cnet_isa_eb10adfe43 (IsA superlative adverb) (STV 1.0 0.9091)) +(: cnet_isa_7ca3f2b477 (IsA superlative praise) (STV 1.0 0.9091)) +(: cnet_isa_32560b9949 (IsA supermarket not) (STV 1.0 0.9091)) +(: cnet_isa_06b81717ec (IsA supermarket grocery_store) (STV 1.0 0.9091)) +(: cnet_isa_6ea334f511 (IsA supermarketer operator) (STV 1.0 0.9091)) +(: cnet_isa_bf11820a08 (IsA supermodel mannequin) (STV 1.0 0.9091)) +(: cnet_isa_7c0f809d03 (IsA supermom mother) (STV 1.0 0.9091)) +(: cnet_isa_14e259d262 (IsA supernatant liquid) (STV 1.0 0.9091)) +(: cnet_isa_7f56eb0591 (IsA supernatural causal_agent) (STV 1.0 0.9091)) +(: cnet_isa_06ddda9db6 (IsA supernaturalism unnaturalness) (STV 1.0 0.9091)) +(: cnet_isa_dfc4edab42 (IsA supernaturalism belief) (STV 1.0 0.9091)) +(: cnet_isa_8544c195bd (IsA supernova star) (STV 1.0 0.9091)) +(: cnet_isa_5782d571bd (IsA supernumerary actor) (STV 1.0 0.9091)) +(: cnet_isa_456d1c395c (IsA supernumerary person) (STV 1.0 0.9091)) +(: cnet_isa_8dbb83abf3 (IsA superorder taxonomic_group) (STV 1.0 0.9091)) +(: cnet_isa_b1af09ed9b (IsA superoxide anion) (STV 1.0 0.9091)) +(: cnet_isa_ecf39e0947 (IsA superoxide oxide) (STV 1.0 0.9091)) +(: cnet_isa_9b6ef05745 (IsA superoxide_dismutase enzyme) (STV 1.0 0.9091)) +(: cnet_isa_7d21b3d1b0 (IsA superphylum taxonomic_group) (STV 1.0 0.9091)) +(: cnet_isa_f0f25ccefd (IsA superposition placement) (STV 1.0 0.9091)) +(: cnet_isa_2199ff9f51 (IsA superposition deposition) (STV 1.0 0.9091)) +(: cnet_isa_e5f2f95c2a (IsA superscript character) (STV 1.0 0.9091)) +(: cnet_isa_887f0b41db (IsA superscription inscription) (STV 1.0 0.9091)) +(: cnet_isa_f73bc33913 (IsA supersedure replacement) (STV 1.0 0.9091)) +(: cnet_isa_90f021cb57 (IsA superstition bad_thing) (STV 1.0 0.9339)) +(: cnet_isa_a6b2793f26 (IsA superstition belief) (STV 1.0 0.9091)) +(: cnet_isa_4e010aa85c (IsA superstrate stratum) (STV 1.0 0.9091)) +(: cnet_isa_07c76e3231 (IsA superstratum language) (STV 1.0 0.9091)) +(: cnet_isa_7973ff87ee (IsA superstring particle) (STV 1.0 0.9091)) +(: cnet_isa_68d2d5d691 (IsA superstructure structure) (STV 1.0 0.9091)) +(: cnet_isa_0f70f19c6c (IsA supersymmetry scientific_theory) (STV 1.0 0.9091)) +(: cnet_isa_7d2d85b96b (IsA supertanker oil_tanker) (STV 1.0 0.9091)) +(: cnet_isa_2c761aa26c (IsA supertitle translation) (STV 1.0 0.9091)) +(: cnet_isa_e4ef1be0ba (IsA supertonic note) (STV 1.0 0.9091)) +(: cnet_isa_ebbb22e720 (IsA supertwister tornado) (STV 1.0 0.9091)) +(: cnet_isa_e84751ea31 (IsA supervention happening) (STV 1.0 0.9091)) +(: cnet_isa_8242638918 (IsA supervision management) (STV 1.0 0.9091)) +(: cnet_isa_888b0fc569 (IsA supervisor superior) (STV 1.0 0.9091)) +(: cnet_isa_f925194181 (IsA supervisory_program program) (STV 1.0 0.9091)) +(: cnet_isa_c8c70c6adb (IsA supervisory_routine routine) (STV 1.0 0.9091)) +(: cnet_isa_4d2b1f00e6 (IsA supervisory_software software) (STV 1.0 0.9091)) +(: cnet_isa_cf8fd6a32a (IsA supination rotation) (STV 1.0 0.9091)) +(: cnet_isa_09c5dfdae1 (IsA supinator muscle) (STV 1.0 0.9091)) +(: cnet_isa_0c3ef27363 (IsA supper meal) (STV 1.0 0.9091)) +(: cnet_isa_2680187eb5 (IsA supper social_gathering) (STV 1.0 0.9091)) +(: cnet_isa_f6346c0ad5 (IsA supper_club cabaret) (STV 1.0 0.9091)) +(: cnet_isa_f1fed3de9a (IsA supping eating) (STV 1.0 0.9091)) +(: cnet_isa_69ae8db25b (IsA supplanting replacement) (STV 1.0 0.9091)) +(: cnet_isa_b60af0d11c (IsA supplejack walking_stick) (STV 1.0 0.9091)) +(: cnet_isa_c4ac86911d (IsA supplement increase) (STV 1.0 0.9091)) +(: cnet_isa_0f8cd53920 (IsA supplementary_benefit social_insurance) (STV 1.0 0.9091)) +(: cnet_isa_f401161de4 (IsA supplementation expansion) (STV 1.0 0.9091)) +(: cnet_isa_d5f5c7d2d2 (IsA supplication entreaty) (STV 1.0 0.9091)) +(: cnet_isa_10f9176aa6 (IsA supplier businessperson) (STV 1.0 0.9091)) +(: cnet_isa_ca9c907278 (IsA supply economic_process) (STV 1.0 0.9091)) +(: cnet_isa_dbdad10834 (IsA supply indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_da1a4e50f3 (IsA supply_chamber mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_0d798fd932 (IsA supply_closet cupboard) (STV 1.0 0.9091)) +(: cnet_isa_79037afa75 (IsA supply_line path) (STV 1.0 0.9091)) +(: cnet_isa_4df90a533d (IsA supply_officer commissioned_officer) (STV 1.0 0.9091)) +(: cnet_isa_f655ed14ab (IsA supply_side_economic economic) (STV 1.0 0.9091)) +(: cnet_isa_7502aba009 (IsA support activity) (STV 1.0 0.9091)) +(: cnet_isa_5a458104c0 (IsA support aid) (STV 1.0 0.9091)) +(: cnet_isa_b239524ec7 (IsA support device) (STV 1.0 0.9091)) +(: cnet_isa_24328691bf (IsA support supporting_structure) (STV 1.0 0.9091)) +(: cnet_isa_9b4f6f402d (IsA support influence) (STV 1.0 0.9091)) +(: cnet_isa_48d4e76312 (IsA support operation) (STV 1.0 0.9091)) +(: cnet_isa_db1bc19b78 (IsA support resource) (STV 1.0 0.9091)) +(: cnet_isa_4acaaa35a7 (IsA support_column column) (STV 1.0 0.9091)) +(: cnet_isa_045d5bd8c9 (IsA support_hose stocking) (STV 1.0 0.9091)) +(: cnet_isa_6ff967bb59 (IsA support_level price) (STV 1.0 0.9091)) +(: cnet_isa_8c8b2b8f4d (IsA support_payment payment) (STV 1.0 0.9091)) +(: cnet_isa_2d89533007 (IsA support_system network) (STV 1.0 0.9091)) +(: cnet_isa_80bacc0295 (IsA supporter advocate) (STV 1.0 0.9091)) +(: cnet_isa_6cbf81f56e (IsA supporting_fire fire) (STV 1.0 0.9091)) +(: cnet_isa_e15ecb9822 (IsA supporting_structure structure) (STV 1.0 0.9091)) +(: cnet_isa_e8780fbd9b (IsA supporting_tower tower) (STV 1.0 0.9091)) +(: cnet_isa_f9e14af5f1 (IsA supposition conjecture) (STV 1.0 0.9091)) +(: cnet_isa_7865a0b0ec (IsA suppository medicine) (STV 1.0 0.9091)) +(: cnet_isa_dc17ff7c34 (IsA suppressant drug) (STV 1.0 0.9091)) +(: cnet_isa_b33d4262c8 (IsA suppression prevention) (STV 1.0 0.9091)) +(: cnet_isa_df31cc2a82 (IsA suppression restraint) (STV 1.0 0.9091)) +(: cnet_isa_d2c4c6b902 (IsA suppression growth) (STV 1.0 0.9091)) +(: cnet_isa_d16ff01af3 (IsA suppressive_fire fire) (STV 1.0 0.9091)) +(: cnet_isa_8e479ee1e1 (IsA suppressor electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_809efe4d48 (IsA suppressor gene) (STV 1.0 0.9091)) +(: cnet_isa_de7b2a98c7 (IsA suppressor restrainer) (STV 1.0 0.9091)) +(: cnet_isa_f412289c2b (IsA supra_expressionism expressionism) (STV 1.0 0.9091)) +(: cnet_isa_6583a47996 (IsA suprainfection infection) (STV 1.0 0.9091)) +(: cnet_isa_6ec6d2eb00 (IsA supraorbital_ridge ridge) (STV 1.0 0.9091)) +(: cnet_isa_93c3b43fe4 (IsA supraorbital_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_118ae85cbb (IsA supratrochlear_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_17b32d9e99 (IsA supremacism belief) (STV 1.0 0.9091)) +(: cnet_isa_365bc3d402 (IsA supremacist advocate) (STV 1.0 0.9091)) +(: cnet_isa_3f15d977c6 (IsA suprematism artistic_movement) (STV 1.0 0.9091)) +(: cnet_isa_032fbf70c7 (IsA suprematist abstractionist) (STV 1.0 0.9091)) +(: cnet_isa_2f7c68adf1 (IsA supreme_allied_commander_atlantic commanding_officer) (STV 1.0 0.9091)) +(: cnet_isa_c6763efdbf (IsA supreme_allied_commander_europe commanding_officer) (STV 1.0 0.9091)) +(: cnet_isa_6d74b38226 (IsA supreme_court court) (STV 1.0 0.9091)) +(: cnet_isa_23678c1643 (IsA supreme_court federal_court) (STV 1.0 0.9091)) +(: cnet_isa_8c18f968d6 (IsA supreme_headquarter_allied_power_europe high_command) (STV 1.0 0.9091)) +(: cnet_isa_1d8d4e368b (IsA supremo big_shot) (STV 1.0 0.9091)) +(: cnet_isa_33b168a661 (IsA sura section) (STV 1.0 0.9091)) +(: cnet_isa_e8361fed4a (IsA surbase molding) (STV 1.0 0.9091)) +(: cnet_isa_990aca2365 (IsA surcharge charge) (STV 1.0 0.9091)) +(: cnet_isa_9f8cb559ba (IsA surcoat coat) (STV 1.0 0.9091)) +(: cnet_isa_35d7635ce1 (IsA surcoat tunic) (STV 1.0 0.9091)) +(: cnet_isa_2b09d47a8e (IsA surd consonant) (STV 1.0 0.9091)) +(: cnet_isa_bfb34b91ce (IsA sureness steadiness) (STV 1.0 0.9091)) +(: cnet_isa_50a1c5b8ec (IsA surety certainty) (STV 1.0 0.9091)) +(: cnet_isa_a75a7dedd2 (IsA surf wave) (STV 1.0 0.9091)) +(: cnet_isa_7d8fce1af0 (IsA surf_casting casting) (STV 1.0 0.9091)) +(: cnet_isa_3a0073e71e (IsA surface artifact) (STV 1.0 0.9091)) +(: cnet_isa_3496329c1e (IsA surface aspect) (STV 1.0 0.9091)) +(: cnet_isa_4b6dbfa5fc (IsA surface boundary) (STV 1.0 0.9091)) +(: cnet_isa_f6fa29e198 (IsA surface layer) (STV 1.0 0.9091)) +(: cnet_isa_b0dde276e9 (IsA surface_chemistry chemistry) (STV 1.0 0.9091)) +(: cnet_isa_cedaf25dd4 (IsA surface_fire forest_fire) (STV 1.0 0.9091)) +(: cnet_isa_6d2d702ff4 (IsA surface_gauge gauge) (STV 1.0 0.9091)) +(: cnet_isa_2b5442efb1 (IsA surface_lift ski_tow) (STV 1.0 0.9091)) +(: cnet_isa_0c33825fa8 (IsA surface_mail mail) (STV 1.0 0.9091)) +(: cnet_isa_b57780b3af (IsA surface_noise background_noise) (STV 1.0 0.9091)) +(: cnet_isa_cbbcafe78e (IsA surface_search_radar naval_radar) (STV 1.0 0.9091)) +(: cnet_isa_602095e61b (IsA surface_ship warship) (STV 1.0 0.9091)) +(: cnet_isa_98a2843a3a (IsA surface_tension physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_c536f85ff8 (IsA surface_to_air_missile guided_missile) (STV 1.0 0.9091)) +(: cnet_isa_9613cfd5ab (IsA surface_to_air_missile_system shipboard_system) (STV 1.0 0.9091)) +(: cnet_isa_11277604c4 (IsA surfacing egress) (STV 1.0 0.9091)) +(: cnet_isa_73d9e06127 (IsA surfbird shorebird) (STV 1.0 0.9091)) +(: cnet_isa_6db87cb973 (IsA surfboard board) (STV 1.0 0.9091)) +(: cnet_isa_8debfd537c (IsA surfboat boat) (STV 1.0 0.9091)) +(: cnet_isa_cca8fb8ddd (IsA surfeit fullness) (STV 1.0 0.9091)) +(: cnet_isa_16a23ca4a6 (IsA surfer swimmer) (STV 1.0 0.9091)) +(: cnet_isa_492feaec0f (IsA surfing sport) (STV 1.0 0.9339)) +(: cnet_isa_f041c79a82 (IsA surfing water_sport) (STV 1.0 0.9091)) +(: cnet_isa_a6f4798e67 (IsA surfperch percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_455316cffc (IsA surge increase) (STV 1.0 0.9091)) +(: cnet_isa_22884797e6 (IsA surge_suppressor suppressor) (STV 1.0 0.9091)) +(: cnet_isa_c5fa89dcde (IsA surgeon_s_knot knot) (STV 1.0 0.9091)) +(: cnet_isa_093fff47e4 (IsA surgeon doctor) (STV 1.0 0.9572)) +(: cnet_isa_f0e652ae3e (IsA surgeon_general executive) (STV 1.0 0.9091)) +(: cnet_isa_a1a77668ed (IsA surgeon_general medical_officer) (STV 1.0 0.9091)) +(: cnet_isa_05c0016ddf (IsA surgeonfish percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_970f0dc05c (IsA surgery room) (STV 1.0 0.9091)) +(: cnet_isa_50721d5a61 (IsA surgery medical_science) (STV 1.0 0.9091)) +(: cnet_isa_b946f72d6f (IsA surgical_contraception contraception) (STV 1.0 0.9091)) +(: cnet_isa_945531695f (IsA surgical_contraception sterilization) (STV 1.0 0.9091)) +(: cnet_isa_922e5dd420 (IsA surgical_dressing dressing) (STV 1.0 0.9091)) +(: cnet_isa_fda45a64ba (IsA surgical_instrument medical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_20f50e17ea (IsA surgical_knife knife) (STV 1.0 0.9091)) +(: cnet_isa_c98653f1a2 (IsA surgical_knife surgical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_4b1150aeec (IsA surgical_spirit methylated_spirit) (STV 1.0 0.9091)) +(: cnet_isa_4916a83490 (IsA surgical_strike strike) (STV 1.0 0.9091)) +(: cnet_isa_9674f72e0d (IsA suricata mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_790cc45668 (IsA suricate meerkat) (STV 1.0 0.9091)) +(: cnet_isa_688c35f2ef (IsA surinam_cherry fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_db2afaf191 (IsA surinam_toad tongueless_frog) (STV 1.0 0.9091)) +(: cnet_isa_0685211a2c (IsA surinamese_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_54486b46b1 (IsA surname name) (STV 1.0 0.9091)) +(: cnet_isa_78474361c5 (IsA surnia bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_8ba2bbbc57 (IsA surplice vestment) (STV 1.0 0.9091)) +(: cnet_isa_599ba5a764 (IsA surprise emotion) (STV 1.0 0.9091)) +(: cnet_isa_3b1344a1d0 (IsA surprise disruption) (STV 1.0 0.9091)) +(: cnet_isa_b60908aaf4 (IsA surprise change) (STV 1.0 0.9091)) +(: cnet_isa_9e9ad24045 (IsA surprise astonishment) (STV 1.0 0.9091)) +(: cnet_isa_f1e0f64295 (IsA surprise_attack attack) (STV 1.0 0.9091)) +(: cnet_isa_6ff914c4e0 (IsA surpriser captor) (STV 1.0 0.9091)) +(: cnet_isa_ccf8a6927e (IsA surrealism artistic_movement) (STV 1.0 0.9091)) +(: cnet_isa_8718869cb4 (IsA surrealist artist) (STV 1.0 0.9091)) +(: cnet_isa_56e01f744d (IsA surrebutter pleading) (STV 1.0 0.9091)) +(: cnet_isa_9d2d4a873f (IsA surrejoinder pleading) (STV 1.0 0.9091)) +(: cnet_isa_df4428f162 (IsA surrender delivery) (STV 1.0 0.9091)) +(: cnet_isa_71beff6be0 (IsA surrenderer person) (STV 1.0 0.9091)) +(: cnet_isa_77b5dea83c (IsA surrey carriage) (STV 1.0 0.9091)) +(: cnet_isa_e8d5b880ae (IsA surrogate stand_in) (STV 1.0 0.9091)) +(: cnet_isa_6dd5105091 (IsA surrogate_mother mother) (STV 1.0 0.9091)) +(: cnet_isa_74a43a3a55 (IsA sursum_corda versicle) (STV 1.0 0.9091)) +(: cnet_isa_363dcff37b (IsA surtax income_tax) (STV 1.0 0.9091)) +(: cnet_isa_b0b2fbb25d (IsA surtout greatcoat) (STV 1.0 0.9091)) +(: cnet_isa_d9e5993772 (IsA surveillance police_work) (STV 1.0 0.9091)) +(: cnet_isa_70255c4d3a (IsA surveillance_of_disease surveillance) (STV 1.0 0.9091)) +(: cnet_isa_27fef3a725 (IsA surveillance_system closed_circuit_television) (STV 1.0 0.9091)) +(: cnet_isa_a9a635ad46 (IsA survey examination) (STV 1.0 0.9091)) +(: cnet_isa_230339f2c3 (IsA survey_mile linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_19b9c5dbf2 (IsA surveying measurement) (STV 1.0 0.9091)) +(: cnet_isa_6a0a0c140b (IsA surveying_instrument instrument) (STV 1.0 0.9091)) +(: cnet_isa_8d1e629de0 (IsA surveyor_s_level surveying_instrument) (STV 1.0 0.9091)) +(: cnet_isa_d30c9a4552 (IsA surveyor engineer) (STV 1.0 0.9091)) +(: cnet_isa_a00af1b7e9 (IsA surveyor statistician) (STV 1.0 0.9091)) +(: cnet_isa_cc6166768d (IsA survival continuance) (STV 1.0 0.9091)) +(: cnet_isa_7fc852cebd (IsA survival natural_process) (STV 1.0 0.9091)) +(: cnet_isa_9b6a6f2edb (IsA survival animation) (STV 1.0 0.9091)) +(: cnet_isa_cdc52c1644 (IsA survivalist person) (STV 1.0 0.9091)) +(: cnet_isa_769fa0eb3a (IsA survivor animal) (STV 1.0 0.9091)) +(: cnet_isa_5a2e0957ce (IsA survivor person) (STV 1.0 0.9091)) +(: cnet_isa_86e9b80512 (IsA survivor unfortunate) (STV 1.0 0.9091)) +(: cnet_isa_a0dfa65bed (IsA survivor_guilt guilt) (STV 1.0 0.9091)) +(: cnet_isa_eeb5fd7558 (IsA survivor_insurance social_security) (STV 1.0 0.9091)) +(: cnet_isa_f051d704ce (IsA sus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_8632ecbe06 (IsA susan_b_anthony_dollar dollar) (STV 1.0 0.9091)) +(: cnet_isa_faaaa7fd98 (IsA susceptibility condition) (STV 1.0 0.9091)) +(: cnet_isa_233b1cb2c7 (IsA sushi japanese_food) (STV 1.0 0.9339)) +(: cnet_isa_0b0f0b4be3 (IsA sushi raw_fish) (STV 1.0 0.9339)) +(: cnet_isa_3e6aa1cd68 (IsA sushi dish) (STV 1.0 0.9091)) +(: cnet_isa_b06c97e328 (IsA sushi_bar bar) (STV 1.0 0.9091)) +(: cnet_isa_466c16d53a (IsA suslik ground_squirrel) (STV 1.0 0.9091)) +(: cnet_isa_6260d7cca5 (IsA suspect person) (STV 1.0 0.9091)) +(: cnet_isa_8bdab2ac66 (IsA suspended_animation physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_02dd968860 (IsA suspense doubt) (STV 1.0 0.9091)) +(: cnet_isa_08ce078baa (IsA suspense anticipation) (STV 1.0 0.9091)) +(: cnet_isa_a079f73a40 (IsA suspense apprehension) (STV 1.0 0.9091)) +(: cnet_isa_91611d0ec9 (IsA suspense_account account) (STV 1.0 0.9091)) +(: cnet_isa_53c124dabd (IsA suspension debarment) (STV 1.0 0.9091)) +(: cnet_isa_580ca156bf (IsA suspension support) (STV 1.0 0.9091)) +(: cnet_isa_815096a87f (IsA suspension mechanical_system) (STV 1.0 0.9091)) +(: cnet_isa_276557427e (IsA suspension interruption) (STV 1.0 0.9091)) +(: cnet_isa_1650eba679 (IsA suspension mixture) (STV 1.0 0.9091)) +(: cnet_isa_63ff9debb4 (IsA suspension_bridge bridge) (STV 1.0 0.9091)) +(: cnet_isa_e3aae95605 (IsA suspension_point period) (STV 1.0 0.9091)) +(: cnet_isa_171df4d676 (IsA suspensory bandage) (STV 1.0 0.9091)) +(: cnet_isa_d2a13c5db6 (IsA suspicion distrust) (STV 1.0 0.9091)) +(: cnet_isa_27d642e397 (IsA suspicion hostility) (STV 1.0 0.9091)) +(: cnet_isa_66b4de8a5b (IsA sussex_spaniel spaniel) (STV 1.0 0.9091)) +(: cnet_isa_5f2a3316b6 (IsA sustainability property) (STV 1.0 0.9091)) +(: cnet_isa_899b3e7147 (IsA sustaining_pedal pedal) (STV 1.0 0.9091)) +(: cnet_isa_2e3d369306 (IsA sustaining_program broadcast) (STV 1.0 0.9091)) +(: cnet_isa_c30daaec56 (IsA sustenance support) (STV 1.0 0.9091)) +(: cnet_isa_1ad4199c54 (IsA susurration sound) (STV 1.0 0.9091)) +(: cnet_isa_895aca1e40 (IsA sutler supplier) (STV 1.0 0.9091)) +(: cnet_isa_e5d183bda1 (IsA sutra sanskrit_literature) (STV 1.0 0.9091)) +(: cnet_isa_fb9cadccc8 (IsA suttee suicide) (STV 1.0 0.9091)) +(: cnet_isa_61def5fc97 (IsA suture seam) (STV 1.0 0.9091)) +(: cnet_isa_d455c982c1 (IsA suture thread) (STV 1.0 0.9091)) +(: cnet_isa_f44e92487c (IsA suture joint) (STV 1.0 0.9091)) +(: cnet_isa_4171a9e69f (IsA suturing sewing) (STV 1.0 0.9091)) +(: cnet_isa_70df83fd04 (IsA suzerain state) (STV 1.0 0.9091)) +(: cnet_isa_bd8f3df951 (IsA suzerainty domain) (STV 1.0 0.9091)) +(: cnet_isa_aaab2e6ad7 (IsA suzerainty dominion) (STV 1.0 0.9091)) +(: cnet_isa_4f4771892b (IsA svengali persuader) (STV 1.0 0.9091)) +(: cnet_isa_9c68963ad2 (IsA svoboda freedom) (STV 1.0 0.9091)) +(: cnet_isa_882a6a08a2 (IsA swab cleaning_implement) (STV 1.0 0.9091)) +(: cnet_isa_6060b4576c (IsA swab implement) (STV 1.0 0.9091)) +(: cnet_isa_bc479eb3f7 (IsA swabbing scrub) (STV 1.0 0.9091)) +(: cnet_isa_f58183a782 (IsA swad bunch) (STV 1.0 0.9091)) +(: cnet_isa_f8a2a77bcf (IsA swaddling_clothe constraint) (STV 1.0 0.9091)) +(: cnet_isa_d99d31bae2 (IsA swaddling_clothe garment) (STV 1.0 0.9091)) +(: cnet_isa_91eb27c193 (IsA swag bundle) (STV 1.0 0.9091)) +(: cnet_isa_9a94e6d245 (IsA swag valuable) (STV 1.0 0.9091)) +(: cnet_isa_1ce64eb3e4 (IsA swage_block block) (STV 1.0 0.9091)) +(: cnet_isa_a32b640925 (IsA swagger_stick cane) (STV 1.0 0.9091)) +(: cnet_isa_e5fc3c336c (IsA swaggerer pedestrian) (STV 1.0 0.9091)) +(: cnet_isa_578673f68f (IsA swagman itinerant) (STV 1.0 0.9091)) +(: cnet_isa_e864be33b5 (IsA swahili bantu) (STV 1.0 0.9091)) +(: cnet_isa_ae7a9ecea7 (IsA swainsona rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_245438ca23 (IsA swale trough) (STV 1.0 0.9091)) +(: cnet_isa_9e1c9b0661 (IsA swallow consumption) (STV 1.0 0.9091)) +(: cnet_isa_1dcc437f3c (IsA swallow oscine) (STV 1.0 0.9091)) +(: cnet_isa_f5b2dca3ed (IsA swallow taste) (STV 1.0 0.9091)) +(: cnet_isa_3d2e06b8ff (IsA swallow_tailed_coat jacket) (STV 1.0 0.9091)) +(: cnet_isa_0e6ba5864b (IsA swallow_tailed_kite kite) (STV 1.0 0.9091)) +(: cnet_isa_1dfcbd334a (IsA swallowing_semen fetish) (STV 1.0 0.9091)) +(: cnet_isa_c831934e22 (IsA swallowing_semen sexual_activity) (STV 1.0 0.9091)) +(: cnet_isa_442c877b19 (IsA swami hindoo) (STV 1.0 0.9091)) +(: cnet_isa_d21dacafd7 (IsA swamp wetland) (STV 1.0 0.9091)) +(: cnet_isa_185e6c49a3 (IsA swamp situation) (STV 1.0 0.9091)) +(: cnet_isa_ecb887ddff (IsA swamp_ash ash) (STV 1.0 0.9091)) +(: cnet_isa_13a8ccac8a (IsA swamp_azalea rhododendron) (STV 1.0 0.9091)) +(: cnet_isa_f587c41176 (IsA swamp_birch birch) (STV 1.0 0.9091)) +(: cnet_isa_91a9b976df (IsA swamp_buggy amphibian) (STV 1.0 0.9091)) +(: cnet_isa_212ea85690 (IsA swamp_candle loosestrife) (STV 1.0 0.9091)) +(: cnet_isa_7f8a321505 (IsA swamp_chestnut_oak chestnut_oak) (STV 1.0 0.9091)) +(: cnet_isa_c511a2bbca (IsA swamp_cottonwood cottonwood) (STV 1.0 0.9091)) +(: cnet_isa_524076a6b8 (IsA swamp_dewberry dewberry) (STV 1.0 0.9091)) +(: cnet_isa_8ecb3e87d0 (IsA swamp_fever zoonosis) (STV 1.0 0.9091)) +(: cnet_isa_ab689e522b (IsA swamp_fly_honeysuckle american_fly_honeysuckle) (STV 1.0 0.9091)) +(: cnet_isa_8b1947a0da (IsA swamp_gum eucalyptus) (STV 1.0 0.9091)) +(: cnet_isa_7aae7e2dfd (IsA swamp_horsetail horsetail) (STV 1.0 0.9091)) +(: cnet_isa_7e3be36311 (IsA swamp_laurel kalmia) (STV 1.0 0.9091)) +(: cnet_isa_6d19624445 (IsA swamp_milkweed milkweed) (STV 1.0 0.9091)) +(: cnet_isa_9272889a12 (IsA swamp_oak shrub) (STV 1.0 0.9091)) +(: cnet_isa_9d9888ea14 (IsA swamp_pine pine) (STV 1.0 0.9091)) +(: cnet_isa_fc5e8bcdad (IsA swamp_rabbit wood_rabbit) (STV 1.0 0.9091)) +(: cnet_isa_ee6cf5e448 (IsA swamp_sparrow new_world_sparrow) (STV 1.0 0.9091)) +(: cnet_isa_56d9cd1253 (IsA swamp_sunflower sunflower) (STV 1.0 0.9091)) +(: cnet_isa_ba524bd39f (IsA swamp_white_oak white_oak) (STV 1.0 0.9091)) +(: cnet_isa_4c25dbec1c (IsA swamp_willow willow) (STV 1.0 0.9091)) +(: cnet_isa_6a71bcf7bf (IsA swampy_beggar_tick bur_marigold) (STV 1.0 0.9091)) +(: cnet_isa_09845428ed (IsA swan_s_down down) (STV 1.0 0.9091)) +(: cnet_isa_69b7711a21 (IsA swan_s_down fabric) (STV 1.0 0.9091)) +(: cnet_isa_7bae07b6f2 (IsA swan bird) (STV 1.0 0.9636)) +(: cnet_isa_a1fc13de56 (IsA swan aquatic_bird) (STV 1.0 0.9091)) +(: cnet_isa_980bbb3940 (IsA swan_dive dive) (STV 1.0 0.9091)) +(: cnet_isa_50bdc6c856 (IsA swan_orchid orchid) (STV 1.0 0.9091)) +(: cnet_isa_32c94f7fdd (IsA swan_river_daisy flower) (STV 1.0 0.9091)) +(: cnet_isa_61af79e684 (IsA swan_river_everlasting everlasting) (STV 1.0 0.9091)) +(: cnet_isa_c209aaa042 (IsA swan_song performance) (STV 1.0 0.9091)) +(: cnet_isa_03545bf905 (IsA swap_space disk_space) (STV 1.0 0.9091)) +(: cnet_isa_e372ac527e (IsA swarm group) (STV 1.0 0.9091)) +(: cnet_isa_1588b95367 (IsA swash wave) (STV 1.0 0.9091)) +(: cnet_isa_b027cda8a6 (IsA swashbuckling demeanor) (STV 1.0 0.9091)) +(: cnet_isa_70184f9c32 (IsA swastika emblem) (STV 1.0 0.9091)) +(: cnet_isa_c4a454b5db (IsA swastika tetraskelion) (STV 1.0 0.9091)) +(: cnet_isa_7f8fd1505b (IsA swat blow) (STV 1.0 0.9091)) +(: cnet_isa_8a21ef8196 (IsA swat_team police_squad) (STV 1.0 0.9091)) +(: cnet_isa_23c69979e7 (IsA swatch piece_of_cloth) (STV 1.0 0.9091)) +(: cnet_isa_e62f4bf0f5 (IsA swath path) (STV 1.0 0.9091)) +(: cnet_isa_1bbb4cd2a6 (IsA swath space) (STV 1.0 0.9091)) +(: cnet_isa_3bb9f2acd9 (IsA swathe bandage) (STV 1.0 0.9091)) +(: cnet_isa_23e7fd7ad5 (IsA swathing covering) (STV 1.0 0.9091)) +(: cnet_isa_8c0b0bcc49 (IsA swatter implement) (STV 1.0 0.9091)) +(: cnet_isa_796d040571 (IsA sway power) (STV 1.0 0.9091)) +(: cnet_isa_55e514d206 (IsA swazi nguni) (STV 1.0 0.9091)) +(: cnet_isa_a0c4b82187 (IsA swazi african) (STV 1.0 0.9091)) +(: cnet_isa_ec81c2975d (IsA swaziland_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_a9ba61b767 (IsA swearer blasphemer) (STV 1.0 0.9091)) +(: cnet_isa_8b8719b4a0 (IsA swearer communicator) (STV 1.0 0.9091)) +(: cnet_isa_3ea52f425c (IsA sweat condensation) (STV 1.0 0.9091)) +(: cnet_isa_31005d9b61 (IsA sweat_bag bag) (STV 1.0 0.9091)) +(: cnet_isa_86719cdf99 (IsA sweat_duct ductule) (STV 1.0 0.9091)) +(: cnet_isa_55af826410 (IsA sweat_equity equity) (STV 1.0 0.9091)) +(: cnet_isa_815476e23d (IsA sweat_gland exocrine_gland) (STV 1.0 0.9091)) +(: cnet_isa_b70bc9d0a0 (IsA sweat_pant pair_of_trouser) (STV 1.0 0.9091)) +(: cnet_isa_311f92f4eb (IsA sweat_suit garment) (STV 1.0 0.9091)) +(: cnet_isa_c9ec6d6b70 (IsA sweatband band) (STV 1.0 0.9091)) +(: cnet_isa_239cd271ba (IsA sweatbox cell) (STV 1.0 0.9091)) +(: cnet_isa_a7062e06bd (IsA sweatbox device) (STV 1.0 0.9091)) +(: cnet_isa_8558adea8f (IsA sweater piece_of_clothing) (STV 1.0 0.9091)) +(: cnet_isa_975dab8a6d (IsA sweater garment) (STV 1.0 0.9091)) +(: cnet_isa_8a91bafd34 (IsA sweater_and_shoe both_article_of_clothing) (STV 1.0 0.9091)) +(: cnet_isa_4df2a8e3e9 (IsA sweater_girl girl) (STV 1.0 0.9091)) +(: cnet_isa_2cbab59014 (IsA sweater_and_dress both_category_of_clothing) (STV 1.0 0.9091)) +(: cnet_isa_6b3d52f37b (IsA sweating way) (STV 1.0 0.9091)) +(: cnet_isa_9894e1b4b6 (IsA sweating way_of_regulating_body_temperature) (STV 1.0 0.9091)) +(: cnet_isa_9cfafa875e (IsA sweating_sickness animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_61328d8491 (IsA sweating_sickness infectious_disease) (STV 1.0 0.9091)) +(: cnet_isa_b0b430f4a7 (IsA sweatshirt pullover) (STV 1.0 0.9091)) +(: cnet_isa_69d4cecf5a (IsA sweatshop factory) (STV 1.0 0.9091)) +(: cnet_isa_b6fd898114 (IsA swede european) (STV 1.0 0.9091)) +(: cnet_isa_6645b7c284 (IsA sweden country) (STV 1.0 0.9524)) +(: cnet_isa_1a36fd0c66 (IsA sweden in_europe) (STV 1.0 0.9091)) +(: cnet_isa_ca6b6bd830 (IsA sweden part_of_europe) (STV 1.0 0.9091)) +(: cnet_isa_f2eea179e3 (IsA swedish language) (STV 1.0 0.9091)) +(: cnet_isa_b7538a3875 (IsA swedish scandinavian) (STV 1.0 0.9091)) +(: cnet_isa_6bdd9fbce2 (IsA swedish_iron wrought_iron) (STV 1.0 0.9091)) +(: cnet_isa_46a5827181 (IsA swedish_krona swedish_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_a2d488f0d3 (IsA swedish_massage massage) (STV 1.0 0.9091)) +(: cnet_isa_42343a2dec (IsA swedish_meatball meatball) (STV 1.0 0.9091)) +(: cnet_isa_8c6bd8627a (IsA swedish_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_d200d20d1d (IsA swedish_rye_bread rye_bread) (STV 1.0 0.9091)) +(: cnet_isa_6722dfc922 (IsA sweep motion) (STV 1.0 0.9091)) +(: cnet_isa_b4826c4fe6 (IsA sweep oar) (STV 1.0 0.9091)) +(: cnet_isa_e1ee1a59d8 (IsA sweep scope) (STV 1.0 0.9091)) +(: cnet_isa_53645bb84f (IsA sweep_hand second_hand) (STV 1.0 0.9091)) +(: cnet_isa_f99ee96884 (IsA sweeper teleost_fish) (STV 1.0 0.9091)) +(: cnet_isa_79ef2123b7 (IsA sweeper employee) (STV 1.0 0.9091)) +(: cnet_isa_c030a55292 (IsA sweeping cleaning) (STV 1.0 0.9091)) +(: cnet_isa_c9cf287d9b (IsA sweepstake lottery) (STV 1.0 0.9091)) +(: cnet_isa_501e502e3b (IsA sweet taste) (STV 1.0 0.9091)) +(: cnet_isa_b6b7dd621c (IsA sweet dainty) (STV 1.0 0.9091)) +(: cnet_isa_1de7686bd0 (IsA sweet_alyssum flower) (STV 1.0 0.9091)) +(: cnet_isa_4629c7a0cb (IsA sweet_bay magnolia) (STV 1.0 0.9091)) +(: cnet_isa_ee2591a83d (IsA sweet_bell shrub) (STV 1.0 0.9091)) +(: cnet_isa_78aebf10c5 (IsA sweet_birch birch) (STV 1.0 0.9091)) +(: cnet_isa_7622b05cb3 (IsA sweet_buckeye horse_chestnut) (STV 1.0 0.9091)) +(: cnet_isa_117f2dfd16 (IsA sweet_calabash passion_fruit) (STV 1.0 0.9091)) +(: cnet_isa_34e3627fb6 (IsA sweet_calabash passionflower) (STV 1.0 0.9091)) +(: cnet_isa_1fca5ebd6e (IsA sweet_cassava cassava) (STV 1.0 0.9091)) +(: cnet_isa_b35ef06b13 (IsA sweet_cherry cherry) (STV 1.0 0.9091)) +(: cnet_isa_4c330246b6 (IsA sweet_cicely herb) (STV 1.0 0.9091)) +(: cnet_isa_d505a81ab5 (IsA sweet_cider cider) (STV 1.0 0.9091)) +(: cnet_isa_965e86d67d (IsA sweet_coltsfoot herb) (STV 1.0 0.9091)) +(: cnet_isa_b5b7aadf60 (IsA sweet_corn corn) (STV 1.0 0.9091)) +(: cnet_isa_8830a9fd9d (IsA sweet_false_chamomile herb) (STV 1.0 0.9091)) +(: cnet_isa_bf935c4f9b (IsA sweet_fern shrub) (STV 1.0 0.9091)) +(: cnet_isa_860e28f4e1 (IsA sweet_flag marsh_plant) (STV 1.0 0.9091)) +(: cnet_isa_e2d21b3962 (IsA sweet_four_o_clock four_o_clock) (STV 1.0 0.9091)) +(: cnet_isa_4802e7849c (IsA sweet_gale shrub) (STV 1.0 0.9091)) +(: cnet_isa_eb8ebdb62a (IsA sweet_gum gum) (STV 1.0 0.9091)) +(: cnet_isa_397e8afda9 (IsA sweet_gum gumwood) (STV 1.0 0.9091)) +(: cnet_isa_fbd1fce452 (IsA sweet_gum liquidambar) (STV 1.0 0.9091)) +(: cnet_isa_c6eb03db02 (IsA sweet_lemon genus_citrus) (STV 1.0 0.9091)) +(: cnet_isa_f368507c2b (IsA sweet_lemon lemon) (STV 1.0 0.9091)) +(: cnet_isa_436316eec4 (IsA sweet_marjoram origanum) (STV 1.0 0.9091)) +(: cnet_isa_c3549d4d50 (IsA sweet_melon melon) (STV 1.0 0.9091)) +(: cnet_isa_fce2401c6e (IsA sweet_nothing nothing) (STV 1.0 0.9091)) +(: cnet_isa_d006cbcdc7 (IsA sweet_oil vegetable_oil) (STV 1.0 0.9091)) +(: cnet_isa_73696501ca (IsA sweet_orange orange) (STV 1.0 0.9091)) +(: cnet_isa_88c40af32d (IsA sweet_pea vine) (STV 1.0 0.9091)) +(: cnet_isa_efdc3d2dce (IsA sweet_pepper pepper) (STV 1.0 0.9091)) +(: cnet_isa_600c6f5305 (IsA sweet_pepper capsicum) (STV 1.0 0.9091)) +(: cnet_isa_cc8489de44 (IsA sweet_pepperbush shrub) (STV 1.0 0.9091)) +(: cnet_isa_9f9f1bfdc6 (IsA sweet_pickle pickle) (STV 1.0 0.9091)) +(: cnet_isa_b255f95cb0 (IsA sweet_potato root_vegetable) (STV 1.0 0.9091)) +(: cnet_isa_5f7b02fd73 (IsA sweet_potato morning_glory) (STV 1.0 0.9091)) +(: cnet_isa_b4bea858c5 (IsA sweet_potato_ring_rot plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_cada582275 (IsA sweet_potato_whitefly whitefly) (STV 1.0 0.9091)) +(: cnet_isa_f00b35f8ec (IsA sweet_roll bun) (STV 1.0 0.9091)) +(: cnet_isa_8de5dbbab2 (IsA sweet_sand_verbena sand_verbena) (STV 1.0 0.9091)) +(: cnet_isa_ac1b554840 (IsA sweet_scabious scabious) (STV 1.0 0.9091)) +(: cnet_isa_bd096bc45b (IsA sweet_sultan flower) (STV 1.0 0.9091)) +(: cnet_isa_6b907ed36a (IsA sweet_tooth appetite) (STV 1.0 0.9091)) +(: cnet_isa_161b23c784 (IsA sweet_unicorn_plant herb) (STV 1.0 0.9091)) +(: cnet_isa_cb879240ea (IsA sweet_vermouth vermouth) (STV 1.0 0.9091)) +(: cnet_isa_c09b2306b6 (IsA sweet_vetch subshrub) (STV 1.0 0.9091)) +(: cnet_isa_bf4054f7ca (IsA sweet_violet violet) (STV 1.0 0.9091)) +(: cnet_isa_b5d1ebd327 (IsA sweet_white_violet violet) (STV 1.0 0.9091)) +(: cnet_isa_257aa7d42d (IsA sweet_william pink) (STV 1.0 0.9091)) +(: cnet_isa_f1b690a5ad (IsA sweet_woodruff herb) (STV 1.0 0.9091)) +(: cnet_isa_b2ca3d9d88 (IsA sweet_woodruff bedstraw) (STV 1.0 0.9091)) +(: cnet_isa_94d170c70f (IsA sweet_wormwood wormwood) (STV 1.0 0.9091)) +(: cnet_isa_cfaed933b0 (IsA sweetbread variety_meat) (STV 1.0 0.9091)) +(: cnet_isa_b06a5ef6db (IsA sweetbrier rose) (STV 1.0 0.9091)) +(: cnet_isa_cf635022aa (IsA sweetening seasoning) (STV 1.0 0.9091)) +(: cnet_isa_e1d3052247 (IsA sweetening flavorer) (STV 1.0 0.9091)) +(: cnet_isa_43b4689f55 (IsA sweetheart good_person) (STV 1.0 0.9091)) +(: cnet_isa_c4282d0029 (IsA sweetheart lover) (STV 1.0 0.9091)) +(: cnet_isa_1f2051050a (IsA sweetleaf angiospermous_yellowwood) (STV 1.0 0.9091)) +(: cnet_isa_8d1c3607df (IsA sweetmeat sweet) (STV 1.0 0.9091)) +(: cnet_isa_a7ecd0898d (IsA sweetness taste_property) (STV 1.0 0.9091)) +(: cnet_isa_9b08ed3b26 (IsA sweetness_and_light affability) (STV 1.0 0.9091)) +(: cnet_isa_a05f16af2a (IsA sweetsop custard_apple) (STV 1.0 0.9091)) +(: cnet_isa_28456d14c9 (IsA swell crescendo) (STV 1.0 0.9091)) +(: cnet_isa_5606ab1ddf (IsA swell wave) (STV 1.0 0.9091)) +(: cnet_isa_e3cc23e6ee (IsA swell natural_elevation) (STV 1.0 0.9091)) +(: cnet_isa_fdd191039e (IsA swelling enlargement) (STV 1.0 0.9091)) +(: cnet_isa_b2742fcd78 (IsA swelling symptom) (STV 1.0 0.9091)) +(: cnet_isa_ba563eb37f (IsA swertia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9d761a5df5 (IsA swerve turn) (STV 1.0 0.9091)) +(: cnet_isa_15c874ea1a (IsA swietinia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4618ea567f (IsA swift apodiform_bird) (STV 1.0 0.9091)) +(: cnet_isa_a483959283 (IsA swiftlet swift) (STV 1.0 0.9091)) +(: cnet_isa_9619b41af9 (IsA swimmer athlete) (STV 1.0 0.9091)) +(: cnet_isa_60671b35fe (IsA swimmer traveler) (STV 1.0 0.9091)) +(: cnet_isa_52fb66dc5d (IsA swimmeret extremity) (STV 1.0 0.9091)) +(: cnet_isa_bcfc44a4a1 (IsA swimming sport) (STV 1.0 0.9636)) +(: cnet_isa_2b8e73cf46 (IsA swimming water_sport) (STV 1.0 0.9091)) +(: cnet_isa_ce115877a5 (IsA swimming_crab crab) (STV 1.0 0.9091)) +(: cnet_isa_bd8c5cbfd2 (IsA swimming_event match) (STV 1.0 0.9091)) +(: cnet_isa_2666d79179 (IsA swimming_hole pond) (STV 1.0 0.9091)) +(: cnet_isa_63378fe9d5 (IsA swimming_kick kick) (STV 1.0 0.9091)) +(: cnet_isa_ac9412791c (IsA swimming_meet meet) (STV 1.0 0.9091)) +(: cnet_isa_a58f45345e (IsA swimming_pool athletic_facility) (STV 1.0 0.9091)) +(: cnet_isa_7c25043027 (IsA swimming_pool pool) (STV 1.0 0.9091)) +(: cnet_isa_a61482fff8 (IsA swimming_stroke stroke) (STV 1.0 0.9091)) +(: cnet_isa_e944519ba7 (IsA swimming_trunk swimsuit) (STV 1.0 0.9091)) +(: cnet_isa_d817ef9aa0 (IsA swimsuit swimwear) (STV 1.0 0.9091)) +(: cnet_isa_46869833ea (IsA swimsuit garment) (STV 1.0 0.9091)) +(: cnet_isa_bd54f71441 (IsA swindle fraud) (STV 1.0 0.9091)) +(: cnet_isa_b336d2da0a (IsA swindler deceiver) (STV 1.0 0.9091)) +(: cnet_isa_c001a79443 (IsA swine even_toed_ungulate) (STV 1.0 0.9091)) +(: cnet_isa_d6ed2b749b (IsA swine_influenza influenza) (STV 1.0 0.9091)) +(: cnet_isa_fc9efb1d28 (IsA swineherd herder) (STV 1.0 0.9091)) +(: cnet_isa_bb84a54c09 (IsA swing blow) (STV 1.0 0.9091)) +(: cnet_isa_1034287d28 (IsA swing country_dance) (STV 1.0 0.9091)) +(: cnet_isa_687a83bd6a (IsA swing motion) (STV 1.0 0.9091)) +(: cnet_isa_db7c55bac7 (IsA swing mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_234bc80be1 (IsA swing plaything) (STV 1.0 0.9091)) +(: cnet_isa_1802ddfec6 (IsA swing jazz) (STV 1.0 0.9091)) +(: cnet_isa_a835767145 (IsA swing action) (STV 1.0 0.9091)) +(: cnet_isa_4b35df22bb (IsA swing_door door) (STV 1.0 0.9091)) +(: cnet_isa_dc50529a3b (IsA swing_voter voter) (STV 1.0 0.9091)) +(: cnet_isa_21a28a3834 (IsA swinger athlete) (STV 1.0 0.9091)) +(: cnet_isa_ad00a02077 (IsA swinger libertine) (STV 1.0 0.9091)) +(: cnet_isa_b610a98348 (IsA swinging_chad chad) (STV 1.0 0.9091)) +(: cnet_isa_328868323e (IsA swipe stroke) (STV 1.0 0.9091)) +(: cnet_isa_66e92af59e (IsA swish sound) (STV 1.0 0.9091)) +(: cnet_isa_273aa8a709 (IsA swiss_army_knife practical_tool) (STV 1.0 0.9339)) +(: cnet_isa_6a45230bd1 (IsA swiss_army_knife useful_tool) (STV 1.0 0.9091)) +(: cnet_isa_85efbe8e96 (IsA swiss_canton guangzhou) (STV 1.0 0.9091)) +(: cnet_isa_defb0b51d7 (IsA swiss_cheese cheese) (STV 1.0 0.9091)) +(: cnet_isa_c100647109 (IsA swiss_franc franc) (STV 1.0 0.9091)) +(: cnet_isa_3c083d2b14 (IsA swiss_mountain_pine pine) (STV 1.0 0.9091)) +(: cnet_isa_a8359b9e40 (IsA swiss_people nation) (STV 1.0 0.9091)) +(: cnet_isa_c0441ee579 (IsA swiss_pine pine) (STV 1.0 0.9091)) +(: cnet_isa_3893a8b28a (IsA swiss_steak dish) (STV 1.0 0.9091)) +(: cnet_isa_ab87e7288e (IsA switch basketball_play) (STV 1.0 0.9091)) +(: cnet_isa_b7e639bfdd (IsA switch change) (STV 1.0 0.9091)) +(: cnet_isa_d39975083f (IsA switch control) (STV 1.0 0.9091)) +(: cnet_isa_970fae34b5 (IsA switch hairpiece) (STV 1.0 0.9091)) +(: cnet_isa_2bd071a25c (IsA switch instrument_of_punishment) (STV 1.0 0.9091)) +(: cnet_isa_f83dbb662e (IsA switch railroad_track) (STV 1.0 0.9091)) +(: cnet_isa_fa1c690c69 (IsA switch_engine locomotive) (STV 1.0 0.9091)) +(: cnet_isa_605fc7e245 (IsA switch_grass panic_grass) (STV 1.0 0.9091)) +(: cnet_isa_a229bc0c4b (IsA switch_hitter batter) (STV 1.0 0.9091)) +(: cnet_isa_711cac7f83 (IsA switch_hitter bisexual) (STV 1.0 0.9091)) +(: cnet_isa_42b66befc8 (IsA switchblade pocketknife) (STV 1.0 0.9091)) +(: cnet_isa_e9bffe0e4d (IsA switchboard central) (STV 1.0 0.9091)) +(: cnet_isa_ad582a5ddf (IsA switcher oppressor) (STV 1.0 0.9091)) +(: cnet_isa_b8a8b96328 (IsA switcheroo switch) (STV 1.0 0.9091)) +(: cnet_isa_3d0d79736a (IsA switchman operator) (STV 1.0 0.9091)) +(: cnet_isa_8b114d9980 (IsA switzerland country) (STV 1.0 0.9524)) +(: cnet_isa_c4368ab617 (IsA switzerland country_in_europe) (STV 1.0 0.9091)) +(: cnet_isa_f22656346f (IsA switzerland neutral_country) (STV 1.0 0.9091)) +(: cnet_isa_4b9b4d6f4b (IsA swivel coupling) (STV 1.0 0.9091)) +(: cnet_isa_6a101faaaf (IsA swivel_chair chair) (STV 1.0 0.9091)) +(: cnet_isa_9c845caf1e (IsA swivet panic) (STV 1.0 0.9091)) +(: cnet_isa_33850e67b1 (IsA swiz swindle) (STV 1.0 0.9091)) +(: cnet_isa_5941bcd4cd (IsA swizzle mixed_drink) (STV 1.0 0.9091)) +(: cnet_isa_3db82a9997 (IsA swizzle_stick stick) (STV 1.0 0.9091)) +(: cnet_isa_bc7bafdff6 (IsA swoop descent) (STV 1.0 0.9091)) +(: cnet_isa_816813cf6a (IsA swoop foray) (STV 1.0 0.9091)) +(: cnet_isa_c61b154acd (IsA swoop glissando) (STV 1.0 0.9091)) +(: cnet_isa_28bfef4131 (IsA swoosh noise) (STV 1.0 0.9091)) +(: cnet_isa_37e5ea7152 (IsA sword weapon) (STV 1.0 0.9091)) +(: cnet_isa_9ac3c3159e (IsA sword_bean vine) (STV 1.0 0.9091)) +(: cnet_isa_802f7f7976 (IsA sword_cane cane) (STV 1.0 0.9091)) +(: cnet_isa_08c40d28a2 (IsA sword_cut scar) (STV 1.0 0.9091)) +(: cnet_isa_07c639bfc0 (IsA sword_dance folk_dancing) (STV 1.0 0.9091)) +(: cnet_isa_5c87f1b07d (IsA sword_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_5ab7c722fe (IsA sword_grass grass) (STV 1.0 0.9091)) +(: cnet_isa_749ee9cf1a (IsA sword_knot tassel) (STV 1.0 0.9091)) +(: cnet_isa_f22105d0d1 (IsA sword_of_damocle hazard) (STV 1.0 0.9091)) +(: cnet_isa_a2e8607b3b (IsA swordfish scombroid) (STV 1.0 0.9091)) +(: cnet_isa_090a694c2a (IsA swordfish saltwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_6e39c346df (IsA swordsmanship skill) (STV 1.0 0.9091)) +(: cnet_isa_6c9e46a22a (IsA swordtail cyprinodont) (STV 1.0 0.9091)) +(: cnet_isa_ace4d0d563 (IsA swot learner) (STV 1.0 0.9091)) +(: cnet_isa_d6fe358e27 (IsA swung_dash punctuation) (STV 1.0 0.9091)) +(: cnet_isa_a4a06778cb (IsA sycamore fig_tree) (STV 1.0 0.9091)) +(: cnet_isa_97b13a8d2a (IsA sycamore maple) (STV 1.0 0.9091)) +(: cnet_isa_4d7f490ebd (IsA sycamore wood) (STV 1.0 0.9091)) +(: cnet_isa_db5a4f1536 (IsA syconium aggregate_fruit) (STV 1.0 0.9091)) +(: cnet_isa_6fa6aebfda (IsA sycophancy obsequiousness) (STV 1.0 0.9091)) +(: cnet_isa_7dfdf856d3 (IsA sycophant flatterer) (STV 1.0 0.9091)) +(: cnet_isa_ed31720932 (IsA sydenham_s_chorea chorea) (STV 1.0 0.9091)) +(: cnet_isa_2ae5d0f7ad (IsA syllabary script) (STV 1.0 0.9091)) +(: cnet_isa_e27c146031 (IsA syllabication division) (STV 1.0 0.9091)) +(: cnet_isa_d8475bcf40 (IsA syllabicity language_system) (STV 1.0 0.9091)) +(: cnet_isa_97a29105f7 (IsA syllable language_unit) (STV 1.0 0.9091)) +(: cnet_isa_4ec65c1651 (IsA syllabub dessert) (STV 1.0 0.9091)) +(: cnet_isa_af7d9ece2d (IsA syllabub drink) (STV 1.0 0.9091)) +(: cnet_isa_756f4b6080 (IsA syllepsis zeugma) (STV 1.0 0.9091)) +(: cnet_isa_115c03eea5 (IsA syllogism deduction) (STV 1.0 0.9091)) +(: cnet_isa_0929918a0f (IsA syllogist logician) (STV 1.0 0.9091)) +(: cnet_isa_e006dbb096 (IsA sylph imaginary_being) (STV 1.0 0.9091)) +(: cnet_isa_15ea326042 (IsA sylph woman) (STV 1.0 0.9091)) +(: cnet_isa_03961fc592 (IsA sylvan spirit) (STV 1.0 0.9091)) +(: cnet_isa_a1899d51f0 (IsA sylvanite mineral) (STV 1.0 0.9091)) +(: cnet_isa_34a577077f (IsA sylviidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_cd3ced3e9b (IsA sylviinae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_5420fc0bcf (IsA sylvilagus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_2e8f41323a (IsA sylvite mineral) (STV 1.0 0.9091)) +(: cnet_isa_5a44d99404 (IsA symbion_pandora invertebrate) (STV 1.0 0.9091)) +(: cnet_isa_556e673a74 (IsA symbiosis mutuality) (STV 1.0 0.9091)) +(: cnet_isa_7e3da32653 (IsA symbol representational_process) (STV 1.0 0.9091)) +(: cnet_isa_77467055f4 (IsA symbol signal) (STV 1.0 0.9091)) +(: cnet_isa_ac03ab60cc (IsA symbolatry idolatry) (STV 1.0 0.9091)) +(: cnet_isa_27456f573c (IsA symbolic_logic logic) (STV 1.0 0.9091)) +(: cnet_isa_0714e5a348 (IsA symbolic_logician logician) (STV 1.0 0.9091)) +(: cnet_isa_6330c356ca (IsA symbolism practice) (STV 1.0 0.9091)) +(: cnet_isa_f149f1e9ce (IsA symbolism symbol) (STV 1.0 0.9091)) +(: cnet_isa_8dadcd9ef4 (IsA symbolism artistic_movement) (STV 1.0 0.9091)) +(: cnet_isa_b82ca02358 (IsA symbolist artist) (STV 1.0 0.9091)) +(: cnet_isa_35fb732b31 (IsA symbolist interpreter) (STV 1.0 0.9091)) +(: cnet_isa_8221415ab4 (IsA symbolization meaning) (STV 1.0 0.9091)) +(: cnet_isa_3bf93d6514 (IsA symbolizing figuration) (STV 1.0 0.9091)) +(: cnet_isa_fb364ea299 (IsA symbology ology) (STV 1.0 0.9091)) +(: cnet_isa_c5482838b4 (IsA symmetry spatial_property) (STV 1.0 0.9091)) +(: cnet_isa_6c30579d48 (IsA symmetry balance) (STV 1.0 0.9091)) +(: cnet_isa_f73c89b1cf (IsA sympathectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_20ccabf3d1 (IsA sympathetic_nervous_system nervous_system) (STV 1.0 0.9091)) +(: cnet_isa_e57b1896fd (IsA sympathetic_vibration oscillation) (STV 1.0 0.9091)) +(: cnet_isa_cb86af9a67 (IsA sympathizer communicator) (STV 1.0 0.9091)) +(: cnet_isa_1a299508d8 (IsA sympathizer supporter) (STV 1.0 0.9091)) +(: cnet_isa_4887ff502d (IsA sympathy inclination) (STV 1.0 0.9091)) +(: cnet_isa_b738db4aa5 (IsA sympathy feeling) (STV 1.0 0.9091)) +(: cnet_isa_6f7e1e800c (IsA sympathy affinity) (STV 1.0 0.9091)) +(: cnet_isa_682aa4ad9c (IsA sympathy_card card) (STV 1.0 0.9091)) +(: cnet_isa_1439b4ac32 (IsA sympathy_strike strike) (STV 1.0 0.9091)) +(: cnet_isa_a30c50a9e6 (IsA sympatry occurrence) (STV 1.0 0.9091)) +(: cnet_isa_ca5530168f (IsA symphalangus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_21cb2f8264 (IsA symphonic_poem musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_88a5fb71c0 (IsA symphonist composer) (STV 1.0 0.9091)) +(: cnet_isa_331bdec096 (IsA symphony sonata) (STV 1.0 0.9091)) +(: cnet_isa_a3b36a6319 (IsA symphony_hall where_orchestra_play) (STV 1.0 0.9091)) +(: cnet_isa_3a8b952683 (IsA symphony_orchestra orchestra) (STV 1.0 0.9091)) +(: cnet_isa_c3f3e738e4 (IsA symphoricarpo asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2ee51be6f3 (IsA symphyla class) (STV 1.0 0.9091)) +(: cnet_isa_00c36c1731 (IsA symphysion craniometric_point) (STV 1.0 0.9091)) +(: cnet_isa_c4adcbb0a3 (IsA symphysis organic_process) (STV 1.0 0.9091)) +(: cnet_isa_fbc8443587 (IsA symphysis adhesion) (STV 1.0 0.9091)) +(: cnet_isa_9e740f8b61 (IsA symphytum plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_51b0614136 (IsA symplocaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_9169a1bf7b (IsA symplocarpus monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8f1b4890ae (IsA symploce repetition) (STV 1.0 0.9091)) +(: cnet_isa_37b0425537 (IsA symplocus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0831e0727f (IsA symposiast attendant) (STV 1.0 0.9091)) +(: cnet_isa_39160d4e11 (IsA symposium conference) (STV 1.0 0.9091)) +(: cnet_isa_c2801acd93 (IsA symptom indication) (STV 1.0 0.9091)) +(: cnet_isa_6650c96a9b (IsA symptom evidence) (STV 1.0 0.9091)) +(: cnet_isa_96afbf6287 (IsA synagogue place_of_worship) (STV 1.0 0.9091)) +(: cnet_isa_1a48c213dc (IsA synagrop fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_c1959edbf8 (IsA synanceja fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_debb282ccf (IsA synapse junction) (STV 1.0 0.9091)) +(: cnet_isa_3bc628d270 (IsA synapsid reptile) (STV 1.0 0.9091)) +(: cnet_isa_4821ad8b23 (IsA synapsida class) (STV 1.0 0.9091)) +(: cnet_isa_7ef8afb758 (IsA synapsis organic_process) (STV 1.0 0.9091)) +(: cnet_isa_edc2799a2f (IsA synaptomy mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_c5aa4d2488 (IsA syncategorem word) (STV 1.0 0.9091)) +(: cnet_isa_1cac33c35d (IsA synchrocyclotron cyclotron) (STV 1.0 0.9091)) +(: cnet_isa_fa28867c5b (IsA synchroflash device) (STV 1.0 0.9091)) +(: cnet_isa_54bc973d28 (IsA synchromesh system) (STV 1.0 0.9091)) +(: cnet_isa_ee6381a48e (IsA synchronic_linguistic linguistic) (STV 1.0 0.9091)) +(: cnet_isa_8c652d1672 (IsA synchronism temporal_relation) (STV 1.0 0.9091)) +(: cnet_isa_6aae66d525 (IsA synchronization adjustment) (STV 1.0 0.9091)) +(: cnet_isa_df4f308cb5 (IsA synchronization coordination) (STV 1.0 0.9091)) +(: cnet_isa_08da85f3b4 (IsA synchronous_converter electrical_converter) (STV 1.0 0.9091)) +(: cnet_isa_d2cfd0fad9 (IsA synchronous_motor electric_motor) (STV 1.0 0.9091)) +(: cnet_isa_f52af198a2 (IsA synchronous_operation operation) (STV 1.0 0.9091)) +(: cnet_isa_57ad0ae564 (IsA synchroscope measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_3e24c25f46 (IsA synchrotron cyclotron) (STV 1.0 0.9091)) +(: cnet_isa_db98be630a (IsA synchytriaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_42de424798 (IsA synchytrium fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_fd2a423fe6 (IsA syncopation rhythm) (STV 1.0 0.9091)) +(: cnet_isa_68127d29db (IsA syncopation music) (STV 1.0 0.9091)) +(: cnet_isa_d4940b547d (IsA syncopator jazz_musician) (STV 1.0 0.9091)) +(: cnet_isa_7c0234d38e (IsA syncope articulation) (STV 1.0 0.9091)) +(: cnet_isa_3c90e600d3 (IsA syncretism fusion) (STV 1.0 0.9091)) +(: cnet_isa_a214376fed (IsA syncretism union) (STV 1.0 0.9091)) +(: cnet_isa_a877168425 (IsA syncytium cytoplasm) (STV 1.0 0.9091)) +(: cnet_isa_fb5c8c4ce2 (IsA syndactyly birth_defect) (STV 1.0 0.9091)) +(: cnet_isa_9bdcbfff92 (IsA syndic agent) (STV 1.0 0.9091)) +(: cnet_isa_c496577573 (IsA syndicalism political_movement) (STV 1.0 0.9091)) +(: cnet_isa_f752ba4111 (IsA syndicate new_agency) (STV 1.0 0.9091)) +(: cnet_isa_c4715b1d34 (IsA syndicate organized_crime) (STV 1.0 0.9091)) +(: cnet_isa_b42c2bf416 (IsA syndication organization) (STV 1.0 0.9091)) +(: cnet_isa_8a45e7561b (IsA syndication selling) (STV 1.0 0.9091)) +(: cnet_isa_4fd72a39af (IsA syndicator businessman) (STV 1.0 0.9091)) +(: cnet_isa_2a3d3b6e60 (IsA syndrome complex) (STV 1.0 0.9091)) +(: cnet_isa_079d451948 (IsA syndrome symptom) (STV 1.0 0.9091)) +(: cnet_isa_1c83b7f63e (IsA synecdoche trope) (STV 1.0 0.9091)) +(: cnet_isa_579088fca8 (IsA synechia adhesion) (STV 1.0 0.9091)) +(: cnet_isa_b8f8bea855 (IsA synentognathi animal_order) (STV 1.0 0.9091)) +(: cnet_isa_e085253a97 (IsA synercus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_50496d0651 (IsA syneresis chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_95d0b246dd (IsA syneresis linguistic_process) (STV 1.0 0.9091)) +(: cnet_isa_99f4fb81f4 (IsA synergism theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_a97b599f3d (IsA synergist drug) (STV 1.0 0.9091)) +(: cnet_isa_a577ec8411 (IsA synergy natural_process) (STV 1.0 0.9091)) +(: cnet_isa_14c8c67b47 (IsA synesthesia sensation) (STV 1.0 0.9091)) +(: cnet_isa_8f28a83472 (IsA synesthetic_metaphor metaphor) (STV 1.0 0.9091)) +(: cnet_isa_63bbd489cc (IsA syngnathidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_bcbf6d7259 (IsA syngnathus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_68af654788 (IsA syngonium monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e91f15cd1c (IsA synizesis organic_process) (STV 1.0 0.9091)) +(: cnet_isa_7a67a3537b (IsA synod council) (STV 1.0 0.9091)) +(: cnet_isa_dbc1eac265 (IsA synodontidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_b807905fd9 (IsA synonym word) (STV 1.0 0.9091)) +(: cnet_isa_d534625426 (IsA synonymist lexicographer) (STV 1.0 0.9091)) +(: cnet_isa_799f33eca1 (IsA synonymy semantic_relation) (STV 1.0 0.9091)) +(: cnet_isa_b167acf396 (IsA synoptic_gospel sacred_text) (STV 1.0 0.9091)) +(: cnet_isa_dcef5d5a92 (IsA synovia secretion) (STV 1.0 0.9091)) +(: cnet_isa_15075520f0 (IsA synovial_joint joint) (STV 1.0 0.9091)) +(: cnet_isa_e51423acc2 (IsA synovial_membrane membrane) (STV 1.0 0.9091)) +(: cnet_isa_5d893b806b (IsA synovitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_7b83373aab (IsA synset set) (STV 1.0 0.9091)) +(: cnet_isa_123bf39662 (IsA syntagma string_of_word) (STV 1.0 0.9091)) +(: cnet_isa_db87239e86 (IsA syntax system) (STV 1.0 0.9091)) +(: cnet_isa_e46086f80f (IsA syntax grammar) (STV 1.0 0.9091)) +(: cnet_isa_b5ff681c52 (IsA syntax structure) (STV 1.0 0.9091)) +(: cnet_isa_c66be351dd (IsA syntax_checker program) (STV 1.0 0.9091)) +(: cnet_isa_7d124d71ba (IsA syntax_error software_error) (STV 1.0 0.9091)) +(: cnet_isa_dfde9f93c5 (IsA syntax_language metalanguage) (STV 1.0 0.9091)) +(: cnet_isa_fdbcebdaa5 (IsA synthesis reasoning) (STV 1.0 0.9091)) +(: cnet_isa_5761f31263 (IsA synthesis chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_c510c20c79 (IsA synthesist intellectual) (STV 1.0 0.9091)) +(: cnet_isa_608c8c961c (IsA synthesizer electronic_instrument) (STV 1.0 0.9091)) +(: cnet_isa_bb466422a2 (IsA synthesizer keyboard_instrument) (STV 1.0 0.9091)) +(: cnet_isa_3f8fb91dec (IsA synthetic compound) (STV 1.0 0.9091)) +(: cnet_isa_44f11744ae (IsA synthetic_cubism cubism) (STV 1.0 0.9091)) +(: cnet_isa_e5d0aca348 (IsA synthetic_resin polymer) (STV 1.0 0.9091)) +(: cnet_isa_89a0c1abba (IsA synthetic_resin resin) (STV 1.0 0.9091)) +(: cnet_isa_d7cedcb48b (IsA synthetic_rubber synthetic) (STV 1.0 0.9091)) +(: cnet_isa_612fe09bcf (IsA synthetism genre) (STV 1.0 0.9091)) +(: cnet_isa_1aec635c91 (IsA syphilis venereal_disease) (STV 1.0 0.9091)) +(: cnet_isa_819b6bc792 (IsA syphilitic sick_person) (STV 1.0 0.9091)) +(: cnet_isa_0b04da3ed4 (IsA syphon organ) (STV 1.0 0.9091)) +(: cnet_isa_7a496c6b1a (IsA syrian asiatic) (STV 1.0 0.9091)) +(: cnet_isa_c73abae161 (IsA syrian_bear brown_bear) (STV 1.0 0.9091)) +(: cnet_isa_149778084d (IsA syrian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_ba57bd048f (IsA syrian_pound syrian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_f6964edf3f (IsA syringa dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5859eb24c5 (IsA syringe medical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_c91fe97458 (IsA syrinx structure) (STV 1.0 0.9091)) +(: cnet_isa_a087645fee (IsA syrrhapte bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_d97e0645dc (IsA syrup sweetening) (STV 1.0 0.9091)) +(: cnet_isa_89e71bfd7f (IsA system instrumentality) (STV 1.0 0.9091)) +(: cnet_isa_2b412d282b (IsA system body_part) (STV 1.0 0.9091)) +(: cnet_isa_dc01b144f5 (IsA system live_body) (STV 1.0 0.9091)) +(: cnet_isa_1b804b3db0 (IsA system method) (STV 1.0 0.9091)) +(: cnet_isa_d933436cff (IsA system plan_of_action) (STV 1.0 0.9091)) +(: cnet_isa_16316ffc4b (IsA system group) (STV 1.0 0.9091)) +(: cnet_isa_b99b2e5e8b (IsA system substance) (STV 1.0 0.9091)) +(: cnet_isa_4fe4c6e804 (IsA system_administrator computer_user) (STV 1.0 0.9091)) +(: cnet_isa_7b139fc80d (IsA system_administrator supervisor) (STV 1.0 0.9091)) +(: cnet_isa_efdc61e8ef (IsA system_call call) (STV 1.0 0.9091)) +(: cnet_isa_31b55cebb4 (IsA system_clock clock) (STV 1.0 0.9091)) +(: cnet_isa_8d2e90aae6 (IsA system_clock electronic_device) (STV 1.0 0.9091)) +(: cnet_isa_d9c0fc86df (IsA system_command direction) (STV 1.0 0.9091)) +(: cnet_isa_9cce0b93c1 (IsA system_error instruction) (STV 1.0 0.9091)) +(: cnet_isa_a53aa644dd (IsA system_of_measurement measure) (STV 1.0 0.9091)) +(: cnet_isa_0a90abf0a2 (IsA system_of_weight system_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_78099ef96e (IsA system_of_weight_and_measure system_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_0ce5815804 (IsA system_program program) (STV 1.0 0.9091)) +(: cnet_isa_096b6659a7 (IsA systematic science) (STV 1.0 0.9091)) +(: cnet_isa_f17ca7460c (IsA systematism practice) (STV 1.0 0.9091)) +(: cnet_isa_e3c34e26da (IsA systematization organization) (STV 1.0 0.9091)) +(: cnet_isa_20644667c7 (IsA systeme_international_d_unite metric_system) (STV 1.0 0.9091)) +(: cnet_isa_2cacee45de (IsA systemic_circulation circulation) (STV 1.0 0.9091)) +(: cnet_isa_d52b222c40 (IsA systemic_lupus_erythematosus lupus) (STV 1.0 0.9091)) +(: cnet_isa_ae4edeb1f5 (IsA system_analysis analysis) (STV 1.0 0.9091)) +(: cnet_isa_6365d693b7 (IsA system_analyst analyst) (STV 1.0 0.9091)) +(: cnet_isa_94eca4a98e (IsA systole pulse) (STV 1.0 0.9091)) +(: cnet_isa_7c69ea5210 (IsA systolic_murmur heart_murmur) (STV 1.0 0.9091)) +(: cnet_isa_a1a680172b (IsA systolic_pressure blood_pressure) (STV 1.0 0.9091)) +(: cnet_isa_969d0f47b1 (IsA syzygium dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6e7a73094b (IsA syzygy physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_f295456787 (IsA t letter) (STV 1.0 0.9091)) +(: cnet_isa_2172a563f3 (IsA t_ai_chi martial_art) (STV 1.0 0.9091)) +(: cnet_isa_5a44a37aee (IsA t_bar_lift surface_lift) (STV 1.0 0.9091)) +(: cnet_isa_2428439f1f (IsA t_bone_steak beefsteak) (STV 1.0 0.9091)) +(: cnet_isa_c23f58ad87 (IsA t_cell lymphocyte) (STV 1.0 0.9091)) +(: cnet_isa_62d25d9334 (IsA t_junction junction) (STV 1.0 0.9091)) +(: cnet_isa_f12cd9a4b7 (IsA t_man government_agent) (STV 1.0 0.9091)) +(: cnet_isa_42065a4a5c (IsA t_network circuit) (STV 1.0 0.9091)) +(: cnet_isa_688a1bed09 (IsA t_shirt clothe) (STV 1.0 0.9091)) +(: cnet_isa_0c4fd7968d (IsA t_shirt piece_of_clothing) (STV 1.0 0.9524)) +(: cnet_isa_8dc9edb03b (IsA t_square drafting_instrument) (STV 1.0 0.9091)) +(: cnet_isa_7d91761016 (IsA t_square square) (STV 1.0 0.9091)) +(: cnet_isa_cc479f138c (IsA ta_ziyeh music) (STV 1.0 0.9091)) +(: cnet_isa_986ba8798f (IsA tab strip) (STV 1.0 0.9091)) +(: cnet_isa_26cc36bdb4 (IsA tab_key key) (STV 1.0 0.9091)) +(: cnet_isa_c981930598 (IsA tabanidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_0b031a0576 (IsA tabard tunic) (STV 1.0 0.9091)) +(: cnet_isa_b9e1b28b38 (IsA tabasco hot_pepper) (STV 1.0 0.9091)) +(: cnet_isa_59e13b1811 (IsA tabasco hot_sauce) (STV 1.0 0.9091)) +(: cnet_isa_f0107d3e6e (IsA tabasco_pepper capsicum) (STV 1.0 0.9091)) +(: cnet_isa_b0c211d582 (IsA tabbouleh salad) (STV 1.0 0.9091)) +(: cnet_isa_080d5ad48b (IsA tabby domestic_cat) (STV 1.0 0.9091)) +(: cnet_isa_6858a5b955 (IsA tabby_cat cat) (STV 1.0 0.9091)) +(: cnet_isa_b453c807cf (IsA tabernacle sanctuary) (STV 1.0 0.9091)) +(: cnet_isa_b1e05edc4c (IsA tabernaemontana dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8cc6682bfa (IsA tabe atrophy) (STV 1.0 0.9091)) +(: cnet_isa_f55068698c (IsA tabe_dorsalis neurosyphilis) (STV 1.0 0.9091)) +(: cnet_isa_c088d04803 (IsA tabi sock) (STV 1.0 0.9091)) +(: cnet_isa_d1f36a5372 (IsA tablature musical_notation) (STV 1.0 0.9091)) +(: cnet_isa_e7734d5021 (IsA table platform) (STV 1.0 0.9091)) +(: cnet_isa_d2205f3766 (IsA table furniture) (STV 1.0 0.9091)) +(: cnet_isa_637e62a5d1 (IsA table array) (STV 1.0 0.9091)) +(: cnet_isa_8ddcf308d3 (IsA table gathering) (STV 1.0 0.9091)) +(: cnet_isa_dbd7190527 (IsA table_d_hote menu) (STV 1.0 0.9091)) +(: cnet_isa_4088d2fabd (IsA table_game game) (STV 1.0 0.9091)) +(: cnet_isa_faa67baaea (IsA table_knife cutlery) (STV 1.0 0.9091)) +(: cnet_isa_d6a47b4305 (IsA table_knife knife) (STV 1.0 0.9091)) +(: cnet_isa_2d4a168667 (IsA table_lamp lamp) (STV 1.0 0.9091)) +(: cnet_isa_14f6d8c81e (IsA table_linen linen) (STV 1.0 0.9091)) +(: cnet_isa_b794017892 (IsA table_mat pad) (STV 1.0 0.9091)) +(: cnet_isa_f464972e46 (IsA table_mountain_pine pine) (STV 1.0 0.9091)) +(: cnet_isa_97fd895d9f (IsA table_rapping psychic_phenomena) (STV 1.0 0.9091)) +(: cnet_isa_7e3d1b1477 (IsA table_saw circular_saw) (STV 1.0 0.9091)) +(: cnet_isa_172b0d2204 (IsA table_talk conversation) (STV 1.0 0.9091)) +(: cnet_isa_a5f36dd46a (IsA table_tennis athletic_hobby) (STV 1.0 0.9091)) +(: cnet_isa_8a739cc34a (IsA table_tennis sport) (STV 1.0 0.9572)) +(: cnet_isa_e01deca658 (IsA table_tennis table_game) (STV 1.0 0.9091)) +(: cnet_isa_1818721c6a (IsA table_tennis_racquet paddle) (STV 1.0 0.9091)) +(: cnet_isa_6b11365aee (IsA table_tennis_table table) (STV 1.0 0.9091)) +(: cnet_isa_acfcd92165 (IsA table_tipping psychic_phenomena) (STV 1.0 0.9091)) +(: cnet_isa_16e4fd9dfa (IsA table_wine wine) (STV 1.0 0.9091)) +(: cnet_isa_d51598328d (IsA tableau view) (STV 1.0 0.9091)) +(: cnet_isa_6e01e01079 (IsA tableau arrangement) (STV 1.0 0.9091)) +(: cnet_isa_3d5c96c9ad (IsA tablecloth table_linen) (STV 1.0 0.9091)) +(: cnet_isa_a694108da6 (IsA tablefork fork) (STV 1.0 0.9091)) +(: cnet_isa_969a0f7fdb (IsA tableland highland) (STV 1.0 0.9091)) +(: cnet_isa_b60143445d (IsA tablemate diner) (STV 1.0 0.9091)) +(: cnet_isa_d5c3bbafa2 (IsA tablespoon bigger_than_teaspoon) (STV 1.0 0.9091)) +(: cnet_isa_1748b73e93 (IsA tablespoon larger_than_teaspoon) (STV 1.0 0.9091)) +(: cnet_isa_ad1a697980 (IsA tablespoon measurement) (STV 1.0 0.9524)) +(: cnet_isa_76746d63b0 (IsA tablespoon spoon) (STV 1.0 0.9091)) +(: cnet_isa_2a6a44aa63 (IsA tablespoon containerful) (STV 1.0 0.9091)) +(: cnet_isa_2c4c541a13 (IsA tablespoon way_of_measuring_basil) (STV 1.0 0.9091)) +(: cnet_isa_575b6d25cb (IsA tablet cake) (STV 1.0 0.9091)) +(: cnet_isa_4b47b4eade (IsA tablet slab) (STV 1.0 0.9091)) +(: cnet_isa_d4e6afd915 (IsA tablet_armed_chair chair) (STV 1.0 0.9091)) +(: cnet_isa_5caaef4a48 (IsA tabletop work_surface) (STV 1.0 0.9091)) +(: cnet_isa_42cc67f42c (IsA tableware ware) (STV 1.0 0.9091)) +(: cnet_isa_143e780e32 (IsA tabloid newspaper) (STV 1.0 0.9091)) +(: cnet_isa_c334c8ab5c (IsA taboo inhibition) (STV 1.0 0.9091)) +(: cnet_isa_e0db0b5151 (IsA taboo bia) (STV 1.0 0.9091)) +(: cnet_isa_6ca756b1a5 (IsA tabor drum) (STV 1.0 0.9091)) +(: cnet_isa_fcf6c34dce (IsA tabor_pipe flageolet) (STV 1.0 0.9091)) +(: cnet_isa_684ab37c91 (IsA taboret stool) (STV 1.0 0.9091)) +(: cnet_isa_c6079dc253 (IsA tabula_rasa mind) (STV 1.0 0.9091)) +(: cnet_isa_4a93449eb6 (IsA tabulation investigation) (STV 1.0 0.9091)) +(: cnet_isa_d2dabf172e (IsA tabulation information) (STV 1.0 0.9091)) +(: cnet_isa_1fea855c8a (IsA tabun organophosphate_nerve_agent) (STV 1.0 0.9091)) +(: cnet_isa_04af4d79ac (IsA tacca liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ebcc964208 (IsA taccaceae liliid_monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_d9d00c8f32 (IsA tachina_fly fly) (STV 1.0 0.9091)) +(: cnet_isa_177630acbc (IsA tachinidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_5e320d0a09 (IsA tachistoscope scientific_instrument) (STV 1.0 0.9091)) +(: cnet_isa_f9a4ce30ec (IsA tachogram graph) (STV 1.0 0.9091)) +(: cnet_isa_3151aff82a (IsA tachograph tachometer) (STV 1.0 0.9091)) +(: cnet_isa_f9fda3c4d3 (IsA tachometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_10048c49dd (IsA tachycardia cardiac_arrhythmia) (STV 1.0 0.9091)) +(: cnet_isa_2940e7d810 (IsA tachyglossidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_dddc8d022d (IsA tachyglossus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_327912da88 (IsA tachylite volcanic_glass) (STV 1.0 0.9091)) +(: cnet_isa_854e050c83 (IsA tachymeter theodolite) (STV 1.0 0.9091)) +(: cnet_isa_18544595e4 (IsA tachypleus arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_72021665d2 (IsA tack sailing) (STV 1.0 0.9091)) +(: cnet_isa_a55ea35edb (IsA tack nail) (STV 1.0 0.9091)) +(: cnet_isa_d37d4c2a35 (IsA tack bearing) (STV 1.0 0.9091)) +(: cnet_isa_53b2f09c53 (IsA tack change_of_course) (STV 1.0 0.9091)) +(: cnet_isa_007cd0745d (IsA tack_hammer hammer) (STV 1.0 0.9091)) +(: cnet_isa_1cb54542e1 (IsA tacker worker) (STV 1.0 0.9091)) +(: cnet_isa_4f135b422e (IsA tackle lineman) (STV 1.0 0.9091)) +(: cnet_isa_6336b63da8 (IsA tackle football_play) (STV 1.0 0.9091)) +(: cnet_isa_395f1af871 (IsA tackler football_player) (STV 1.0 0.9091)) +(: cnet_isa_405d8cadb9 (IsA taco dish) (STV 1.0 0.9091)) +(: cnet_isa_98653ef9b7 (IsA taco_sauce condiment) (STV 1.0 0.9091)) +(: cnet_isa_b9112e2be2 (IsA taconite chert) (STV 1.0 0.9091)) +(: cnet_isa_c6cd8af8cb (IsA taconite iron_ore) (STV 1.0 0.9091)) +(: cnet_isa_b7b24d35a2 (IsA tact consideration) (STV 1.0 0.9091)) +(: cnet_isa_75f13daa9a (IsA tactic plan_of_action) (STV 1.0 0.9091)) +(: cnet_isa_12dfd86ab5 (IsA tactical_intelligence intelligence) (STV 1.0 0.9091)) +(: cnet_isa_0fed274e47 (IsA tactical_warning warning) (STV 1.0 0.9091)) +(: cnet_isa_66db9d41e4 (IsA tactician planner) (STV 1.0 0.9091)) +(: cnet_isa_b7ed35ef92 (IsA tactic military_science) (STV 1.0 0.9091)) +(: cnet_isa_14b472f42a (IsA tactile_property property) (STV 1.0 0.9091)) +(: cnet_isa_19c69e5531 (IsA tactlessness inconsideration) (STV 1.0 0.9091)) +(: cnet_isa_3c8254ef52 (IsA tactual_sensation somesthesia) (STV 1.0 0.9091)) +(: cnet_isa_4b940354b3 (IsA tad small_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_b8fe898419 (IsA tadarida mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_9c06430027 (IsA tadorna bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_cbcf965f50 (IsA tadpole larva) (STV 1.0 0.9091)) +(: cnet_isa_fa227254c1 (IsA tadpole_shrimp branchiopod_crustacean) (STV 1.0 0.9091)) +(: cnet_isa_b4995f1559 (IsA tadzhik asiatic) (STV 1.0 0.9091)) +(: cnet_isa_09a6a356bc (IsA tae_kwon_do martial_art) (STV 1.0 0.9091)) +(: cnet_isa_8e9e84322b (IsA tael weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_9f1eaae87b (IsA taenia tapeworm) (STV 1.0 0.9091)) +(: cnet_isa_9c32e6ff81 (IsA taenia headband) (STV 1.0 0.9091)) +(: cnet_isa_14e0eb01be (IsA taeniidae worm_family) (STV 1.0 0.9091)) +(: cnet_isa_7659eb99c2 (IsA taffeta fabric) (STV 1.0 0.9091)) +(: cnet_isa_a576297b7f (IsA taffrail railing) (STV 1.0 0.9091)) +(: cnet_isa_2141a70c18 (IsA taffy candy) (STV 1.0 0.9091)) +(: cnet_isa_b4e4b65f54 (IsA tag label) (STV 1.0 0.9091)) +(: cnet_isa_6f061861e7 (IsA tag child_s_game) (STV 1.0 0.9091)) +(: cnet_isa_eaf69109f2 (IsA tag touch) (STV 1.0 0.9091)) +(: cnet_isa_b1f1a94f66 (IsA tagalog philippine) (STV 1.0 0.9091)) +(: cnet_isa_a55f7b4523 (IsA tagalog filipino) (STV 1.0 0.9091)) +(: cnet_isa_8f691009ab (IsA tagalong follower) (STV 1.0 0.9091)) +(: cnet_isa_0a26ab607d (IsA tagasaste shrub) (STV 1.0 0.9091)) +(: cnet_isa_19cddf9e83 (IsA tageteste asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6e715c4f55 (IsA tagger person) (STV 1.0 0.9091)) +(: cnet_isa_3eb46b609e (IsA tagging_program program) (STV 1.0 0.9091)) +(: cnet_isa_f84e22b361 (IsA tagliatelle pasta) (STV 1.0 0.9091)) +(: cnet_isa_b88b99148e (IsA taguan asiatic_flying_squirrel) (STV 1.0 0.9091)) +(: cnet_isa_c13ac8ab17 (IsA tahini spread) (STV 1.0 0.9091)) +(: cnet_isa_ed3b2cfd67 (IsA tahitian oceanic) (STV 1.0 0.9091)) +(: cnet_isa_514108dad6 (IsA tahitian polynesian) (STV 1.0 0.9091)) +(: cnet_isa_d0e746571d (IsA tahoka_daisy wildflower) (STV 1.0 0.9091)) +(: cnet_isa_313af08fc4 (IsA tai kadai) (STV 1.0 0.9091)) +(: cnet_isa_73d09b2508 (IsA tai_dam tai) (STV 1.0 0.9091)) +(: cnet_isa_b5d31319f4 (IsA tai_long tai) (STV 1.0 0.9091)) +(: cnet_isa_a384041e09 (IsA tai_lue tai) (STV 1.0 0.9091)) +(: cnet_isa_de031f1cab (IsA tai_nuea tai) (STV 1.0 0.9091)) +(: cnet_isa_68f99df3bc (IsA tai_yuan tai) (STV 1.0 0.9091)) +(: cnet_isa_1c69102b4b (IsA tail process) (STV 1.0 0.9091)) +(: cnet_isa_59ab89006f (IsA tail rear) (STV 1.0 0.9091)) +(: cnet_isa_e086aa731a (IsA tail reverse) (STV 1.0 0.9091)) +(: cnet_isa_fdf80df32d (IsA tail follower) (STV 1.0 0.9091)) +(: cnet_isa_60274138a5 (IsA tail spy) (STV 1.0 0.9091)) +(: cnet_isa_be1194dbb8 (IsA tail projection) (STV 1.0 0.9091)) +(: cnet_isa_f3e51cacff (IsA tail_feather flight_feather) (STV 1.0 0.9091)) +(: cnet_isa_0f8a3b544a (IsA tail_fin fin) (STV 1.0 0.9091)) +(: cnet_isa_33bd42edbf (IsA tail_fin decoration) (STV 1.0 0.9091)) +(: cnet_isa_92125e6586 (IsA tail_gate gate) (STV 1.0 0.9091)) +(: cnet_isa_ffca0f2886 (IsA tail_rotor rotor) (STV 1.0 0.9091)) +(: cnet_isa_60fc026865 (IsA tailback back) (STV 1.0 0.9091)) +(: cnet_isa_f0434dc2fb (IsA tailed_frog frog) (STV 1.0 0.9091)) +(: cnet_isa_190cb3c4c9 (IsA tailgate gate) (STV 1.0 0.9091)) +(: cnet_isa_5f90fce918 (IsA tailgater driver) (STV 1.0 0.9091)) +(: cnet_isa_43b9695638 (IsA tailless_tenrec tenrec) (STV 1.0 0.9091)) +(: cnet_isa_5e51bc281d (IsA taillight lamp) (STV 1.0 0.9091)) +(: cnet_isa_8f78b17ce2 (IsA tailor_s_chalk chalk) (STV 1.0 0.9091)) +(: cnet_isa_436c07357e (IsA tailor_s_tack embroidery_stitch) (STV 1.0 0.9091)) +(: cnet_isa_48359df38f (IsA tailor garmentmaker) (STV 1.0 0.9091)) +(: cnet_isa_95de6e4055 (IsA tailor_made clothing) (STV 1.0 0.9091)) +(: cnet_isa_aba2f93534 (IsA tailorbird old_world_warbler) (STV 1.0 0.9091)) +(: cnet_isa_70add955e4 (IsA tailoring trade) (STV 1.0 0.9091)) +(: cnet_isa_4dec630762 (IsA tailpiece appendage) (STV 1.0 0.9091)) +(: cnet_isa_4fe6f128f7 (IsA tailpipe pipe) (STV 1.0 0.9091)) +(: cnet_isa_5f61130e2c (IsA tailrace watercourse) (STV 1.0 0.9091)) +(: cnet_isa_248d484e51 (IsA tailspin acrobatic) (STV 1.0 0.9091)) +(: cnet_isa_ced56c88fe (IsA tailspin agitation) (STV 1.0 0.9091)) +(: cnet_isa_ec5c354e9d (IsA tailstock support) (STV 1.0 0.9091)) +(: cnet_isa_200081acde (IsA tailwind wind) (STV 1.0 0.9091)) +(: cnet_isa_3e02c69318 (IsA taipan elapid) (STV 1.0 0.9091)) +(: cnet_isa_c5df0b609a (IsA taiwan independency) (STV 1.0 0.9091)) +(: cnet_isa_b1e3ed3e63 (IsA taiwan_dollar dollar) (STV 1.0 0.9091)) +(: cnet_isa_ffcc9e0013 (IsA taiwanese asiatic) (STV 1.0 0.9091)) +(: cnet_isa_8b96ce8f9d (IsA tajik ethnic_group) (STV 1.0 0.9091)) +(: cnet_isa_7ff0865be1 (IsA tajiki iranian) (STV 1.0 0.9091)) +(: cnet_isa_77f523311f (IsA tajikistani_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_7110cda44d (IsA taka bangladeshi_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_1525669bc9 (IsA takayasu_s_arteritis arteritis) (STV 1.0 0.9091)) +(: cnet_isa_782d0afea8 (IsA take filming) (STV 1.0 0.9091)) +(: cnet_isa_fafa272591 (IsA take_home_pay wage) (STV 1.0 0.9091)) +(: cnet_isa_1443f959f3 (IsA take_in deception) (STV 1.0 0.9091)) +(: cnet_isa_4ea688efae (IsA take_up tightening) (STV 1.0 0.9091)) +(: cnet_isa_8c46dfb0e2 (IsA take_up device) (STV 1.0 0.9091)) +(: cnet_isa_4e4a261fb8 (IsA takeaway maneuver) (STV 1.0 0.9091)) +(: cnet_isa_006f6e37f3 (IsA takeaway concession) (STV 1.0 0.9091)) +(: cnet_isa_6a539b9d5f (IsA takedown fall) (STV 1.0 0.9091)) +(: cnet_isa_670157ba65 (IsA takelma penutian) (STV 1.0 0.9091)) +(: cnet_isa_eaf6e9e136 (IsA takeoff departure) (STV 1.0 0.9091)) +(: cnet_isa_9871076a0f (IsA takeoff rise) (STV 1.0 0.9091)) +(: cnet_isa_22f000e107 (IsA takeout bid) (STV 1.0 0.9091)) +(: cnet_isa_7f0810f1e4 (IsA takeout convenience_food) (STV 1.0 0.9091)) +(: cnet_isa_62725424cd (IsA takeover buyout) (STV 1.0 0.9091)) +(: cnet_isa_30723f4226 (IsA takeover_attempt attempt) (STV 1.0 0.9091)) +(: cnet_isa_98a9546a11 (IsA takeover_bid tender_offer) (STV 1.0 0.9091)) +(: cnet_isa_656db01715 (IsA taker bettor) (STV 1.0 0.9091)) +(: cnet_isa_361d1a27b9 (IsA taker customer) (STV 1.0 0.9091)) +(: cnet_isa_47aaec9b69 (IsA takilman penutian) (STV 1.0 0.9091)) +(: cnet_isa_11d0c23a5d (IsA takin goat_antelope) (STV 1.0 0.9091)) +(: cnet_isa_a03201e8bc (IsA tala western_samoan_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_401df3c4d3 (IsA talapoin guenon) (STV 1.0 0.9091)) +(: cnet_isa_ae99322d62 (IsA talaria sandal) (STV 1.0 0.9091)) +(: cnet_isa_7161dd48c8 (IsA talc mineral) (STV 1.0 0.9091)) +(: cnet_isa_2580abb792 (IsA talcum toilet_powder) (STV 1.0 0.9091)) +(: cnet_isa_8f122affdd (IsA talent expert) (STV 1.0 0.9091)) +(: cnet_isa_96fc3b9f91 (IsA talent_agent agent) (STV 1.0 0.9091)) +(: cnet_isa_6c77b1400c (IsA talentlessness inaptitude) (STV 1.0 0.9091)) +(: cnet_isa_a805d335d6 (IsA taliban bad_person) (STV 1.0 0.9091)) +(: cnet_isa_de7b4faf90 (IsA taliban islamist) (STV 1.0 0.9091)) +(: cnet_isa_acbe60bcf2 (IsA taliban religious_movement) (STV 1.0 0.9091)) +(: cnet_isa_74e3ae25b6 (IsA talinum caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_cdb8d6962a (IsA talipe_calcaneus clubfoot) (STV 1.0 0.9091)) +(: cnet_isa_773dbdc2de (IsA talipe_equinus clubfoot) (STV 1.0 0.9091)) +(: cnet_isa_70fca237d1 (IsA talipe_valgus clubfoot) (STV 1.0 0.9091)) +(: cnet_isa_8c14666536 (IsA talipot fan_palm) (STV 1.0 0.9091)) +(: cnet_isa_e63344bd4f (IsA talk lecture) (STV 1.0 0.9091)) +(: cnet_isa_e05e0ea2fe (IsA talk conversation) (STV 1.0 0.9091)) +(: cnet_isa_9a42155e85 (IsA talk discussion) (STV 1.0 0.9091)) +(: cnet_isa_9e40495aae (IsA talk gossip) (STV 1.0 0.9091)) +(: cnet_isa_22416ee939 (IsA talk_show broadcast) (STV 1.0 0.9091)) +(: cnet_isa_89bf6f63d4 (IsA talking_book sound_recording) (STV 1.0 0.9091)) +(: cnet_isa_edc3a05b5f (IsA talking_head speaker) (STV 1.0 0.9091)) +(: cnet_isa_7603e6027a (IsA talking_picture movie) (STV 1.0 0.9091)) +(: cnet_isa_ba43f21cb0 (IsA talking_point point) (STV 1.0 0.9091)) +(: cnet_isa_72b2138800 (IsA tall size) (STV 1.0 0.9091)) +(: cnet_isa_992781f450 (IsA tall_bellflower campanula) (STV 1.0 0.9091)) +(: cnet_isa_66693ab232 (IsA tall_cupflower cupflower) (STV 1.0 0.9091)) +(: cnet_isa_cc656409b4 (IsA tall_gallberry_holly holly) (STV 1.0 0.9091)) +(: cnet_isa_39f5cd7937 (IsA tall_goldenrod goldenrod) (STV 1.0 0.9091)) +(: cnet_isa_767b4ea09d (IsA tall_mallow mallow) (STV 1.0 0.9091)) +(: cnet_isa_d6adb44763 (IsA tall_oat_grass grass) (STV 1.0 0.9091)) +(: cnet_isa_e14cdeda82 (IsA tall_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_40602dce8b (IsA tall_order undertaking) (STV 1.0 0.9091)) +(: cnet_isa_9f7dd2d21e (IsA tall_tale narrative) (STV 1.0 0.9091)) +(: cnet_isa_d67ff98aac (IsA tall_yellow_eye yellow_eyed_grass) (STV 1.0 0.9091)) +(: cnet_isa_7d5544d7f2 (IsA tallgrass grass) (STV 1.0 0.9091)) +(: cnet_isa_760102e777 (IsA tallness stature) (STV 1.0 0.9091)) +(: cnet_isa_ce25fc0c23 (IsA tallow animal_oil) (STV 1.0 0.9091)) +(: cnet_isa_7d532a94dd (IsA tallow_oil animal_oil) (STV 1.0 0.9091)) +(: cnet_isa_52a417ce40 (IsA tallyman clerk) (STV 1.0 0.9091)) +(: cnet_isa_f360dd25a9 (IsA tallyman traveling_salesman) (STV 1.0 0.9091)) +(: cnet_isa_67251ff9bc (IsA talmudic_literature sacred_text) (STV 1.0 0.9091)) +(: cnet_isa_479a83228e (IsA talon claw) (STV 1.0 0.9091)) +(: cnet_isa_4c2a291808 (IsA talpidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_9c1c7c690d (IsA talus geological_formation) (STV 1.0 0.9091)) +(: cnet_isa_fa0730950c (IsA tam cap) (STV 1.0 0.9091)) +(: cnet_isa_b2bf157851 (IsA tamale dish) (STV 1.0 0.9091)) +(: cnet_isa_78b5dce0a0 (IsA tamale_pie dish) (STV 1.0 0.9091)) +(: cnet_isa_30408249c9 (IsA tamandua anteater) (STV 1.0 0.9091)) +(: cnet_isa_00c9decbb1 (IsA tamarau old_world_buffalo) (STV 1.0 0.9091)) +(: cnet_isa_c17f70e880 (IsA tamaricaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_81110042e9 (IsA tamarin marmoset) (STV 1.0 0.9091)) +(: cnet_isa_bc2cb5c03f (IsA tamarind edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_33fd1adf5d (IsA tamarind bean_tree) (STV 1.0 0.9091)) +(: cnet_isa_7409d3dbb0 (IsA tamarindus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c54715779c (IsA tamarisk shrub) (STV 1.0 0.9091)) +(: cnet_isa_a185fa3437 (IsA tamarisk_gerbil gerbil) (STV 1.0 0.9091)) +(: cnet_isa_8941abdc67 (IsA tamarix dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_060ea2bbbb (IsA tambala malawian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_8ecc830e0e (IsA tambour drum) (STV 1.0 0.9091)) +(: cnet_isa_10754125f5 (IsA tambour framework) (STV 1.0 0.9091)) +(: cnet_isa_222f1ad343 (IsA tambourine musical_percussion_instrument) (STV 1.0 0.9091)) +(: cnet_isa_b313e7b3c3 (IsA tambourine drum) (STV 1.0 0.9091)) +(: cnet_isa_41a64d28ef (IsA tameness tractability) (STV 1.0 0.9091)) +(: cnet_isa_3c22da4c86 (IsA tamer animal_trainer) (STV 1.0 0.9091)) +(: cnet_isa_eebdd4c56a (IsA tamia mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_c45ac62bac (IsA tamiasciurus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_587260c7df (IsA tamil south_dravidian) (STV 1.0 0.9091)) +(: cnet_isa_07ad5bd33e (IsA tamil dravidian) (STV 1.0 0.9091)) +(: cnet_isa_2f7ed9f6d2 (IsA tammany_hall organization) (STV 1.0 0.9091)) +(: cnet_isa_dd597943ed (IsA tammuz jewish_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_957c69898d (IsA tammy fabric) (STV 1.0 0.9091)) +(: cnet_isa_3b1d42d32b (IsA tamp tool) (STV 1.0 0.9091)) +(: cnet_isa_9900bafaf3 (IsA tampion plug) (STV 1.0 0.9091)) +(: cnet_isa_4b6f24105c (IsA tampon plug) (STV 1.0 0.9091)) +(: cnet_isa_aa1070aa88 (IsA tamponade obstruction) (STV 1.0 0.9091)) +(: cnet_isa_3a2425b9eb (IsA tamus plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_0460c27293 (IsA tan light_brown) (STV 1.0 0.9091)) +(: cnet_isa_b0ea147f85 (IsA tan hyperpigmentation) (STV 1.0 0.9091)) +(: cnet_isa_801b97564f (IsA tanacetum asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_537c27245d (IsA tanager bird) (STV 1.0 0.9091)) +(: cnet_isa_039266870a (IsA tanager oscine) (STV 1.0 0.9091)) +(: cnet_isa_5a654f1350 (IsA tanbark bark) (STV 1.0 0.9091)) +(: cnet_isa_6d49f3aeb5 (IsA tanbark_oak tree) (STV 1.0 0.9091)) +(: cnet_isa_a2502f0daf (IsA tandem placement) (STV 1.0 0.9091)) +(: cnet_isa_5db99c5a71 (IsA tandem_trailer trailer_truck) (STV 1.0 0.9091)) +(: cnet_isa_b35432459d (IsA tandoor oven) (STV 1.0 0.9091)) +(: cnet_isa_5a4b69ff21 (IsA tanekaha celery_pine) (STV 1.0 0.9091)) +(: cnet_isa_2b1fca2c04 (IsA tang seaweed) (STV 1.0 0.9091)) +(: cnet_isa_e7a6a26e9e (IsA tang dynasty) (STV 1.0 0.9091)) +(: cnet_isa_b8ee33b844 (IsA tanga tajikistani_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_da4549755b (IsA tangelo edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_7961b84d0a (IsA tangelo citrus) (STV 1.0 0.9091)) +(: cnet_isa_c9fbbbb9b2 (IsA tangency contact) (STV 1.0 0.9091)) +(: cnet_isa_3415913b2a (IsA tangent trigonometric_function) (STV 1.0 0.9091)) +(: cnet_isa_f04f0c214c (IsA tangent straight_line) (STV 1.0 0.9091)) +(: cnet_isa_4e3431e16f (IsA tangent_plane plane) (STV 1.0 0.9091)) +(: cnet_isa_a3872043a4 (IsA tangent_vector vector) (STV 1.0 0.9091)) +(: cnet_isa_879ae1dba0 (IsA tangerine reddish_orange) (STV 1.0 0.9091)) +(: cnet_isa_df7dde23d7 (IsA tangerine mandarin) (STV 1.0 0.9091)) +(: cnet_isa_2fc3b8804f (IsA tangibility materiality) (STV 1.0 0.9091)) +(: cnet_isa_bd50cfb684 (IsA tangier_pea wild_pea) (STV 1.0 0.9091)) +(: cnet_isa_7a44c0e1b2 (IsA tangle perplexity) (STV 1.0 0.9091)) +(: cnet_isa_69ce970254 (IsA tangle natural_object) (STV 1.0 0.9091)) +(: cnet_isa_68e59226b9 (IsA tangle_orchid orchid) (STV 1.0 0.9091)) +(: cnet_isa_ca02e79193 (IsA tanglebush forestiera) (STV 1.0 0.9091)) +(: cnet_isa_64a4b3d751 (IsA tango ballroom_dancing) (STV 1.0 0.9091)) +(: cnet_isa_92b9b8abb2 (IsA tango dance_music) (STV 1.0 0.9091)) +(: cnet_isa_2c4740bc03 (IsA tangram puzzle) (STV 1.0 0.9091)) +(: cnet_isa_6a5cee1a11 (IsA tank off_road_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_b2f4742e42 (IsA tank weapon) (STV 1.0 0.9339)) +(: cnet_isa_13beeca3f0 (IsA tank vessel) (STV 1.0 0.9091)) +(: cnet_isa_1a1cf1735a (IsA tank armored_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_4368ac2a8a (IsA tank military_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_15870306be (IsA tank tracked_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_c503c80288 (IsA tank containerful) (STV 1.0 0.9091)) +(: cnet_isa_16ffea21ea (IsA tank_car freight_car) (STV 1.0 0.9091)) +(: cnet_isa_c8c4d92041 (IsA tank_circuit circuit) (STV 1.0 0.9091)) +(: cnet_isa_c544e2f13d (IsA tank_destroyer armored_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_73c474b709 (IsA tank_engine locomotive) (STV 1.0 0.9091)) +(: cnet_isa_33964c6c75 (IsA tank_farm area) (STV 1.0 0.9091)) +(: cnet_isa_a6945fcd89 (IsA tank_furnace furnace) (STV 1.0 0.9091)) +(: cnet_isa_bb4ccbf215 (IsA tank_iron plate_iron) (STV 1.0 0.9091)) +(: cnet_isa_836dfabf09 (IsA tank_shell shell) (STV 1.0 0.9091)) +(: cnet_isa_779b769140 (IsA tank_top shirt) (STV 1.0 0.9091)) +(: cnet_isa_2142790736 (IsA tanka painting) (STV 1.0 0.9091)) +(: cnet_isa_32058e877e (IsA tanka poem) (STV 1.0 0.9091)) +(: cnet_isa_b35711e531 (IsA tankage storage) (STV 1.0 0.9091)) +(: cnet_isa_4ad5b29fd6 (IsA tankage charge) (STV 1.0 0.9091)) +(: cnet_isa_7e7517359d (IsA tankage indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_890d41bf35 (IsA tankard drinking_vessel) (STV 1.0 0.9091)) +(: cnet_isa_8f13e77291 (IsA tanker truck) (STV 1.0 0.9091)) +(: cnet_isa_d8887c55ff (IsA tanker soldier) (STV 1.0 0.9091)) +(: cnet_isa_ecd43287d2 (IsA tanker_plane airplane) (STV 1.0 0.9091)) +(: cnet_isa_53d35251b4 (IsA tanner craftsman) (STV 1.0 0.9091)) +(: cnet_isa_e43f37635c (IsA tannery workplace) (STV 1.0 0.9091)) +(: cnet_isa_f3f1113811 (IsA tannin phenol) (STV 1.0 0.9091)) +(: cnet_isa_5e78593620 (IsA tanning trade) (STV 1.0 0.9091)) +(: cnet_isa_f309fc8c6c (IsA tanning bodily_process) (STV 1.0 0.9091)) +(: cnet_isa_85bbd72f6c (IsA tannoy loudspeaker) (STV 1.0 0.9091)) +(: cnet_isa_b5bbf926c3 (IsA tanoan amerind) (STV 1.0 0.9091)) +(: cnet_isa_f6c9ee85a6 (IsA tansy composite) (STV 1.0 0.9091)) +(: cnet_isa_be40abea58 (IsA tansy_leaved_rocket herb) (STV 1.0 0.9091)) +(: cnet_isa_d4a4306bcc (IsA tansy_mustard herb) (STV 1.0 0.9091)) +(: cnet_isa_2a3d57c32a (IsA tantalite mineral) (STV 1.0 0.9091)) +(: cnet_isa_d0a02b6bc0 (IsA tantalizer tormentor) (STV 1.0 0.9091)) +(: cnet_isa_1f01709f7f (IsA tantalum metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_cf120850e2 (IsA tantilla reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_e890a53e90 (IsA tantra buddhism) (STV 1.0 0.9091)) +(: cnet_isa_f135c959ce (IsA tantra sanskrit_literature) (STV 1.0 0.9091)) +(: cnet_isa_7289ae15e5 (IsA tantrism buddhism) (STV 1.0 0.9091)) +(: cnet_isa_0acb592c94 (IsA tantrist disciple) (STV 1.0 0.9091)) +(: cnet_isa_88dd92749c (IsA tanzanian african) (STV 1.0 0.9091)) +(: cnet_isa_050fca6a0f (IsA tanzanian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_cbc648286d (IsA tanzanian_shilling tanzanian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_2b5a44e71c (IsA tao principle) (STV 1.0 0.9091)) +(: cnet_isa_74ea66c7c0 (IsA taoiseach chancellor) (STV 1.0 0.9091)) +(: cnet_isa_37e6baa1db (IsA taoism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_b91de36697 (IsA taoism religion) (STV 1.0 0.9091)) +(: cnet_isa_52528a8498 (IsA taoism sect) (STV 1.0 0.9091)) +(: cnet_isa_ee056712a2 (IsA taoist disciple) (STV 1.0 0.9091)) +(: cnet_isa_dce6a568ed (IsA tao pueblo) (STV 1.0 0.9091)) +(: cnet_isa_5f54b2f2d9 (IsA tap touch) (STV 1.0 0.9091)) +(: cnet_isa_93cbe5b400 (IsA tap plug) (STV 1.0 0.9091)) +(: cnet_isa_e0d09eb8c2 (IsA tap tool) (STV 1.0 0.9091)) +(: cnet_isa_03fbaa6f98 (IsA tap plate) (STV 1.0 0.9091)) +(: cnet_isa_d936468b55 (IsA tap_dancer dancer) (STV 1.0 0.9091)) +(: cnet_isa_6753935d2a (IsA tap_dancing step_dancing) (STV 1.0 0.9091)) +(: cnet_isa_6739892b14 (IsA tap_water water) (STV 1.0 0.9091)) +(: cnet_isa_a7f771235e (IsA tap_wrench wrench) (STV 1.0 0.9091)) +(: cnet_isa_23f3eacadc (IsA tapa fabric) (STV 1.0 0.9091)) +(: cnet_isa_d31e358a31 (IsA tapa bark) (STV 1.0 0.9091)) +(: cnet_isa_335b635a0e (IsA tape measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_47a4cabe46 (IsA tape recording) (STV 1.0 0.9091)) +(: cnet_isa_fd1a1f0c54 (IsA tape strip) (STV 1.0 0.9091)) +(: cnet_isa_96c21212ba (IsA tape finishing_line) (STV 1.0 0.9091)) +(: cnet_isa_5c98180529 (IsA tape_cartridge cartridge) (STV 1.0 0.9091)) +(: cnet_isa_ede7bf52d5 (IsA tape_deck electronic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_da7fc924a7 (IsA tape_drive mechanism) (STV 1.0 0.9091)) +(: cnet_isa_8297ee03ea (IsA tape_grass aquatic_plant) (STV 1.0 0.9091)) +(: cnet_isa_9f712b9fcc (IsA tape_measure tool) (STV 1.0 0.9091)) +(: cnet_isa_54ec8e6b34 (IsA tape_player electronic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_cfb1c38bfc (IsA tape_recorder magnetic_recorder) (STV 1.0 0.9091)) +(: cnet_isa_7b956f170d (IsA tapenade spread) (STV 1.0 0.9091)) +(: cnet_isa_45d6851956 (IsA taper narrowing) (STV 1.0 0.9091)) +(: cnet_isa_14b12e39ed (IsA taper convex_shape) (STV 1.0 0.9091)) +(: cnet_isa_893734a744 (IsA taper_file file) (STV 1.0 0.9091)) +(: cnet_isa_27061e55cd (IsA tapering lowering) (STV 1.0 0.9091)) +(: cnet_isa_510aa732c5 (IsA tapestry rug_and_picture) (STV 1.0 0.9091)) +(: cnet_isa_ee71e37ce6 (IsA tapestry fabric) (STV 1.0 0.9091)) +(: cnet_isa_607529ab8b (IsA tapestry hanging) (STV 1.0 0.9091)) +(: cnet_isa_7f0cd63909 (IsA tapestry complexity) (STV 1.0 0.9091)) +(: cnet_isa_8487c48ae0 (IsA tapeworm flatworm) (STV 1.0 0.9091)) +(: cnet_isa_59113729f9 (IsA tapeworm_infection infection) (STV 1.0 0.9091)) +(: cnet_isa_ad19a6cefb (IsA taphephobia simple_phobia) (STV 1.0 0.9091)) +(: cnet_isa_a90651f136 (IsA tapioca foodstuff) (STV 1.0 0.9091)) +(: cnet_isa_5f68f44196 (IsA tapioca_pudding pudding) (STV 1.0 0.9091)) +(: cnet_isa_25bf6fbc34 (IsA tapir odd_toed_ungulate) (STV 1.0 0.9091)) +(: cnet_isa_8969a94b19 (IsA tapiridae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_2d1d946aaf (IsA tapirus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_400f78646a (IsA tapotement massage) (STV 1.0 0.9091)) +(: cnet_isa_8f4bd8923f (IsA tapper eavesdropper) (STV 1.0 0.9091)) +(: cnet_isa_304e7a3365 (IsA tapper person) (STV 1.0 0.9091)) +(: cnet_isa_5a242762ef (IsA tapper worker) (STV 1.0 0.9091)) +(: cnet_isa_b3dac40e6d (IsA tappet lever) (STV 1.0 0.9091)) +(: cnet_isa_b146dad6f4 (IsA tapping sound) (STV 1.0 0.9091)) +(: cnet_isa_4b83f36219 (IsA taproot root) (STV 1.0 0.9091)) +(: cnet_isa_0d49121a9b (IsA taproot source) (STV 1.0 0.9091)) +(: cnet_isa_693f942707 (IsA tap bugle_call) (STV 1.0 0.9091)) +(: cnet_isa_f21bb8bde9 (IsA tapster publican) (STV 1.0 0.9091)) +(: cnet_isa_ba50f3f370 (IsA tar_pit pit) (STV 1.0 0.9091)) +(: cnet_isa_da2df8f866 (IsA taracahitian mexican) (STV 1.0 0.9091)) +(: cnet_isa_056d096a06 (IsA tarahumara taracahitian) (STV 1.0 0.9091)) +(: cnet_isa_eb150421f4 (IsA tarahumara_frog true_frog) (STV 1.0 0.9091)) +(: cnet_isa_303e3615e6 (IsA tarantella social_dancing) (STV 1.0 0.9091)) +(: cnet_isa_5c4069ded6 (IsA tarantella dance_music) (STV 1.0 0.9091)) +(: cnet_isa_e9a84b8700 (IsA tarantism chorea) (STV 1.0 0.9091)) +(: cnet_isa_5bc9148547 (IsA tarantula spider) (STV 1.0 0.9091)) +(: cnet_isa_093b7ecd0a (IsA taraxacum asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_374fc8b6a8 (IsA tardigrada class) (STV 1.0 0.9091)) +(: cnet_isa_4ec655d3c9 (IsA tardigrade arthropod) (STV 1.0 0.9091)) +(: cnet_isa_793a37c55b (IsA tardiness timing) (STV 1.0 0.9091)) +(: cnet_isa_88b8277d20 (IsA tardive_dyskinesia dyskinesia) (STV 1.0 0.9091)) +(: cnet_isa_96e43b6f5f (IsA tare weight) (STV 1.0 0.9091)) +(: cnet_isa_2b2ad5b2a0 (IsA tare counterweight) (STV 1.0 0.9091)) +(: cnet_isa_dd90f2e584 (IsA tare vetch) (STV 1.0 0.9091)) +(: cnet_isa_26bba9484e (IsA tare allowance) (STV 1.0 0.9091)) +(: cnet_isa_1a3b03a3e7 (IsA taret_organ organ) (STV 1.0 0.9091)) +(: cnet_isa_060c8ba02c (IsA target sport_equipment) (STV 1.0 0.9091)) +(: cnet_isa_1fbe92937d (IsA target reference_point) (STV 1.0 0.9091)) +(: cnet_isa_70347bf905 (IsA target topographic_point) (STV 1.0 0.9091)) +(: cnet_isa_0c62f892dc (IsA target_acquisition_system shipboard_system) (STV 1.0 0.9091)) +(: cnet_isa_cfc4c597e4 (IsA target_cell red_blood_cell) (STV 1.0 0.9091)) +(: cnet_isa_1e71e56dcf (IsA target_cell somatic_cell) (STV 1.0 0.9091)) +(: cnet_isa_3a5040c79f (IsA target_company company) (STV 1.0 0.9091)) +(: cnet_isa_0f688b5f13 (IsA target_organ organ) (STV 1.0 0.9091)) +(: cnet_isa_c11be33bd8 (IsA target_practice exercise) (STV 1.0 0.9091)) +(: cnet_isa_86dac835f6 (IsA tarheel american) (STV 1.0 0.9091)) +(: cnet_isa_c31626a229 (IsA taricha amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_c5b555ba77 (IsA tarmacadam paved_surface) (STV 1.0 0.9091)) +(: cnet_isa_bc217d676d (IsA tarmacadam paving_material) (STV 1.0 0.9091)) +(: cnet_isa_4d99a1484f (IsA tarn lake) (STV 1.0 0.9091)) +(: cnet_isa_b027c41d76 (IsA tarnish stain) (STV 1.0 0.9091)) +(: cnet_isa_060f38d201 (IsA tarnished_plant_bug lygus_bug) (STV 1.0 0.9091)) +(: cnet_isa_34ba9a080f (IsA taro root_vegetable) (STV 1.0 0.9091)) +(: cnet_isa_0abbb2c9cd (IsA taro arum) (STV 1.0 0.9091)) +(: cnet_isa_54c433fbf7 (IsA taro root) (STV 1.0 0.9091)) +(: cnet_isa_d5a16bb905 (IsA tarot_card card) (STV 1.0 0.9091)) +(: cnet_isa_fe9e2b5bae (IsA tarpan wild_horse) (STV 1.0 0.9091)) +(: cnet_isa_cd802d1bab (IsA tarpaulin canva) (STV 1.0 0.9091)) +(: cnet_isa_1a84bddd2a (IsA tarpon soft_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_7c02c0a574 (IsA tarragon herb) (STV 1.0 0.9091)) +(: cnet_isa_21d9c1b4f9 (IsA tarragon artemisia) (STV 1.0 0.9091)) +(: cnet_isa_52c94fe1bc (IsA tarriance delay) (STV 1.0 0.9091)) +(: cnet_isa_3814aa879d (IsA tarrietia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_eb9e4343ba (IsA tarsal bone) (STV 1.0 0.9091)) +(: cnet_isa_16a553b036 (IsA tarsier primate) (STV 1.0 0.9091)) +(: cnet_isa_1dbcb5551c (IsA tarsiidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_9b52a4e767 (IsA tarsioidea animal_order) (STV 1.0 0.9091)) +(: cnet_isa_d094ad9a65 (IsA tarsitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_a502d0f727 (IsA tarsius mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_ca2648cdaa (IsA tarsius_glis tarsier) (STV 1.0 0.9091)) +(: cnet_isa_0520d89bc4 (IsA tarsius_syrichta tarsier) (STV 1.0 0.9091)) +(: cnet_isa_93569c1d84 (IsA tarsus skeletal_structure) (STV 1.0 0.9091)) +(: cnet_isa_2ec1e21c43 (IsA tart pastry) (STV 1.0 0.9091)) +(: cnet_isa_338e5737df (IsA tart pie) (STV 1.0 0.9091)) +(: cnet_isa_3f8573594b (IsA tartan fabric) (STV 1.0 0.9091)) +(: cnet_isa_4f898bb7d6 (IsA tartar crust) (STV 1.0 0.9091)) +(: cnet_isa_70a106ce0a (IsA tartar_emetic mordant) (STV 1.0 0.9091)) +(: cnet_isa_53bd970a00 (IsA tartar_emetic tartrate) (STV 1.0 0.9091)) +(: cnet_isa_0cbe531320 (IsA tartare_sauce sauce) (STV 1.0 0.9091)) +(: cnet_isa_0fb387785d (IsA tartaric_acid hydroxy_acid) (STV 1.0 0.9091)) +(: cnet_isa_c3e602dd83 (IsA tartlet tart) (STV 1.0 0.9091)) +(: cnet_isa_bdba9250e9 (IsA tartrate salt) (STV 1.0 0.9091)) +(: cnet_isa_6c7ef32cda (IsA tartufe hypocrite) (STV 1.0 0.9091)) +(: cnet_isa_3aef537b11 (IsA tarweed herb) (STV 1.0 0.9091)) +(: cnet_isa_18d581220c (IsA tarwood conifer) (STV 1.0 0.9091)) +(: cnet_isa_6c8c99d192 (IsA tarzan man) (STV 1.0 0.9091)) +(: cnet_isa_afc0effe0e (IsA task_force unit) (STV 1.0 0.9091)) +(: cnet_isa_24a53f8712 (IsA task_force military_unit) (STV 1.0 0.9091)) +(: cnet_isa_406fe54783 (IsA taskmaster supervisor) (STV 1.0 0.9091)) +(: cnet_isa_4bfe8c4506 (IsA taskmistress taskmaster) (STV 1.0 0.9091)) +(: cnet_isa_b0bca544e0 (IsA tasman_dwarf_pine shrub) (STV 1.0 0.9091)) +(: cnet_isa_be2f3854ce (IsA tasmanian_devil dasyurid_marsupial) (STV 1.0 0.9091)) +(: cnet_isa_60ff6d8d99 (IsA tassel adornment) (STV 1.0 0.9091)) +(: cnet_isa_0e8204db7e (IsA tassel_flower herb) (STV 1.0 0.9091)) +(: cnet_isa_437bcfa412 (IsA tassel_hyacinth grape_hyacinth) (STV 1.0 0.9091)) +(: cnet_isa_d118e7e157 (IsA tasset armor_plate) (STV 1.0 0.9091)) +(: cnet_isa_baed4883fa (IsA taste sensing) (STV 1.0 0.9091)) +(: cnet_isa_91585855a6 (IsA taste discrimination) (STV 1.0 0.9091)) +(: cnet_isa_cc494112d5 (IsA taste exteroception) (STV 1.0 0.9091)) +(: cnet_isa_4acdb71feb (IsA taste modality) (STV 1.0 0.9091)) +(: cnet_isa_5cd796270b (IsA taste sensation) (STV 1.0 0.9091)) +(: cnet_isa_7876771ca5 (IsA taste experience) (STV 1.0 0.9091)) +(: cnet_isa_300cd41c3b (IsA taste small_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_4f280294ac (IsA taste_cell epithelial_cell) (STV 1.0 0.9091)) +(: cnet_isa_2dc54524b0 (IsA taste_property property) (STV 1.0 0.9091)) +(: cnet_isa_deb340cc49 (IsA tastebud chemoreceptor) (STV 1.0 0.9091)) +(: cnet_isa_4b8ffd0e5d (IsA tastefulness elegance) (STV 1.0 0.9091)) +(: cnet_isa_e6a6f447de (IsA tastelessness inelegance) (STV 1.0 0.9091)) +(: cnet_isa_5f5ea08853 (IsA taster critic) (STV 1.0 0.9091)) +(: cnet_isa_8f848c8299 (IsA tasting eating) (STV 1.0 0.9091)) +(: cnet_isa_2f1cc8a880 (IsA tasting sample) (STV 1.0 0.9091)) +(: cnet_isa_e6bfac66ed (IsA tatahumara uto_aztecan) (STV 1.0 0.9091)) +(: cnet_isa_c7b3b8c92b (IsA tatar turki) (STV 1.0 0.9091)) +(: cnet_isa_4cf355d5a4 (IsA tatar russian) (STV 1.0 0.9091)) +(: cnet_isa_ddcee3e560 (IsA tatouay armadillo) (STV 1.0 0.9091)) +(: cnet_isa_dad6d13b23 (IsA tatting needlework) (STV 1.0 0.9091)) +(: cnet_isa_0cff85f45a (IsA tattle disclosure) (STV 1.0 0.9091)) +(: cnet_isa_6a89b74915 (IsA tattler sandpiper) (STV 1.0 0.9091)) +(: cnet_isa_85db274a51 (IsA tattletale gossip) (STV 1.0 0.9091)) +(: cnet_isa_5a386a246d (IsA tattletale_gray gray) (STV 1.0 0.9091)) +(: cnet_isa_913f1feb7a (IsA tattoo decoration) (STV 1.0 0.9091)) +(: cnet_isa_d646cbc9aa (IsA tattoo design) (STV 1.0 0.9091)) +(: cnet_isa_e4f4c8138b (IsA tattoo bugle_call) (STV 1.0 0.9091)) +(: cnet_isa_1c3b29edf5 (IsA tattoo drumbeat) (STV 1.0 0.9091)) +(: cnet_isa_a5c6d9c784 (IsA tau letter) (STV 1.0 0.9091)) +(: cnet_isa_51aff234a0 (IsA tau_coefficient_of_correlation kendall_test) (STV 1.0 0.9091)) +(: cnet_isa_c4c0d9caf5 (IsA tau_cross cross) (STV 1.0 0.9091)) +(: cnet_isa_938d47826c (IsA tauon lepton) (STV 1.0 0.9091)) +(: cnet_isa_2896361683 (IsA taupe brown) (STV 1.0 0.9091)) +(: cnet_isa_3f91ddffe8 (IsA taurine compound) (STV 1.0 0.9091)) +(: cnet_isa_fa94d6aa3a (IsA taurotragus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_7604da31bd (IsA tautog wrasse) (STV 1.0 0.9091)) +(: cnet_isa_8d58fe3bda (IsA tautoga fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_7784c86e66 (IsA tautogolabrus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_d3a6e7fd6c (IsA tautology repetitiveness) (STV 1.0 0.9091)) +(: cnet_isa_b84696f95b (IsA tautology truth) (STV 1.0 0.9091)) +(: cnet_isa_c95ed29325 (IsA tavern building) (STV 1.0 0.9091)) +(: cnet_isa_200d625067 (IsA taw marble) (STV 1.0 0.9091)) +(: cnet_isa_37f0a20932 (IsA taw letter) (STV 1.0 0.9091)) +(: cnet_isa_f93af97abc (IsA tawniness complexion) (STV 1.0 0.9091)) +(: cnet_isa_57bbfd3ea2 (IsA tawny_eagle eagle) (STV 1.0 0.9091)) +(: cnet_isa_168a6ce22b (IsA tawny_owl owl) (STV 1.0 0.9091)) +(: cnet_isa_67d79e3873 (IsA tawse strap) (STV 1.0 0.9091)) +(: cnet_isa_92efc0d7f1 (IsA tax levy) (STV 1.0 0.9091)) +(: cnet_isa_5600b59aa3 (IsA tax_advantage advantage) (STV 1.0 0.9091)) +(: cnet_isa_09c8e01e32 (IsA tax_assessment assessment) (STV 1.0 0.9091)) +(: cnet_isa_f07fbca404 (IsA tax_assessor bureaucrat) (STV 1.0 0.9091)) +(: cnet_isa_494a2948a0 (IsA tax_avoidance minimization) (STV 1.0 0.9091)) +(: cnet_isa_8994db4df2 (IsA tax_base asset) (STV 1.0 0.9091)) +(: cnet_isa_e0d47b289d (IsA tax_benefit tax_write_off) (STV 1.0 0.9091)) +(: cnet_isa_c10240b893 (IsA tax_bill bill) (STV 1.0 0.9091)) +(: cnet_isa_25f07b609f (IsA tax_collection collection) (STV 1.0 0.9091)) +(: cnet_isa_bea2031746 (IsA tax_collector bureaucrat) (STV 1.0 0.9091)) +(: cnet_isa_98485a8dd7 (IsA tax_credit decrease) (STV 1.0 0.9091)) +(: cnet_isa_ae7f3e9430 (IsA tax_cut cut) (STV 1.0 0.9091)) +(: cnet_isa_c712e65ffe (IsA tax_evasion evasion) (STV 1.0 0.9091)) +(: cnet_isa_77bc746c93 (IsA tax_exempt_security security) (STV 1.0 0.9091)) +(: cnet_isa_0f08124739 (IsA tax_form form) (STV 1.0 0.9091)) +(: cnet_isa_0a8dc98223 (IsA tax_haven country) (STV 1.0 0.9091)) +(: cnet_isa_475a2147e9 (IsA tax_income government_income) (STV 1.0 0.9091)) +(: cnet_isa_e52aabc6fa (IsA tax_increase increase) (STV 1.0 0.9091)) +(: cnet_isa_a5890c30c0 (IsA tax_law law) (STV 1.0 0.9091)) +(: cnet_isa_b5299a6a7f (IsA tax_liability liability) (STV 1.0 0.9091)) +(: cnet_isa_dd7728e005 (IsA tax_lien lien) (STV 1.0 0.9091)) +(: cnet_isa_e2c7c37436 (IsA tax_program program) (STV 1.0 0.9091)) +(: cnet_isa_97ccdbab6d (IsA tax_rate rate) (STV 1.0 0.9091)) +(: cnet_isa_6205ed06ee (IsA tax_return legal_document) (STV 1.0 0.9091)) +(: cnet_isa_61b472048f (IsA tax_shelter decrease) (STV 1.0 0.9091)) +(: cnet_isa_897671e25d (IsA tax_system legal_system) (STV 1.0 0.9091)) +(: cnet_isa_9dfb97924a (IsA tax_write_off write_off) (STV 1.0 0.9091)) +(: cnet_isa_1967349c4f (IsA taxability liability) (STV 1.0 0.9091)) +(: cnet_isa_9de321b08b (IsA taxaceae gymnosperm_family) (STV 1.0 0.9091)) +(: cnet_isa_61ee07736d (IsA taxale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_93409ddbb0 (IsA taxation imposition) (STV 1.0 0.9091)) +(: cnet_isa_b7bc5d4799 (IsA taxer bureaucrat) (STV 1.0 0.9091)) +(: cnet_isa_af30803c00 (IsA taxi form_of_transportation) (STV 1.0 0.9339)) +(: cnet_isa_6ceda91b50 (IsA taxi_dancer dancer) (STV 1.0 0.9091)) +(: cnet_isa_8692584860 (IsA taxidea mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_1fbd62d578 (IsA taxidermist craftsman) (STV 1.0 0.9091)) +(: cnet_isa_9a9fb30e22 (IsA taxidermy art) (STV 1.0 0.9091)) +(: cnet_isa_87dafd5ab3 (IsA taxidriver driver) (STV 1.0 0.9091)) +(: cnet_isa_5e05ab3c24 (IsA taximeter meter) (STV 1.0 0.9091)) +(: cnet_isa_bdb97f83e7 (IsA taxis operation) (STV 1.0 0.9091)) +(: cnet_isa_b1ee53b676 (IsA taxis reaction) (STV 1.0 0.9091)) +(: cnet_isa_d0581c8050 (IsA taxiway paved_surface) (STV 1.0 0.9091)) +(: cnet_isa_7aa4dcd40d (IsA taxodiaceae gymnosperm_family) (STV 1.0 0.9091)) +(: cnet_isa_fa73b76005 (IsA taxodium gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_75a6025caa (IsA taxonomic_group biological_group) (STV 1.0 0.9091)) +(: cnet_isa_b2aa835580 (IsA taxonomist biologist) (STV 1.0 0.9091)) +(: cnet_isa_c984ade8a5 (IsA taxonomy categorization) (STV 1.0 0.9091)) +(: cnet_isa_5e635037a1 (IsA taxonomy systematic) (STV 1.0 0.9091)) +(: cnet_isa_84a9cdae24 (IsA taxonomy hierarchy) (STV 1.0 0.9091)) +(: cnet_isa_b3295902b9 (IsA taxopsida class) (STV 1.0 0.9091)) +(: cnet_isa_d63596510a (IsA taxpayer payer) (STV 1.0 0.9091)) +(: cnet_isa_9f190c5564 (IsA taxus gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_558cebe7af (IsA tay tai) (STV 1.0 0.9091)) +(: cnet_isa_532dc98959 (IsA tay_sach_disease autosomal_recessive_disease) (STV 1.0 0.9091)) +(: cnet_isa_82690534e9 (IsA tay_sach_disease lipidosis) (STV 1.0 0.9091)) +(: cnet_isa_dd46a574ea (IsA tay_sach_disease monogenic_disorder) (STV 1.0 0.9091)) +(: cnet_isa_07f82271b0 (IsA tayalic formosan) (STV 1.0 0.9091)) +(: cnet_isa_8bc0026411 (IsA tayassu mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_377317277d (IsA tayassuidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_88d114dc24 (IsA tayra musteline_mammal) (STV 1.0 0.9091)) +(: cnet_isa_a7823f589f (IsA tazir_crime crime) (STV 1.0 0.9091)) +(: cnet_isa_34be740368 (IsA tb computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_c6fca0635e (IsA tcp protocol) (STV 1.0 0.9091)) +(: cnet_isa_5c703cb5e7 (IsA tea beverage) (STV 1.0 0.9454)) +(: cnet_isa_d052227ba3 (IsA tea drink) (STV 1.0 0.9659)) +(: cnet_isa_0616be9c4a (IsA tea herb) (STV 1.0 0.9091)) +(: cnet_isa_8869ad9087 (IsA tea meal) (STV 1.0 0.9091)) +(: cnet_isa_c9c0bac2d0 (IsA tea reception) (STV 1.0 0.9091)) +(: cnet_isa_c383a25c75 (IsA tea shrub) (STV 1.0 0.9091)) +(: cnet_isa_2aba8fe69f (IsA tea_bag bag) (STV 1.0 0.9091)) +(: cnet_isa_25d5118914 (IsA tea_bag tea) (STV 1.0 0.9091)) +(: cnet_isa_5573365415 (IsA tea_ball kitchen_utensil) (STV 1.0 0.9091)) +(: cnet_isa_99a582a614 (IsA tea_bread bun) (STV 1.0 0.9091)) +(: cnet_isa_92d202e1bf (IsA tea_cart serving_cart) (STV 1.0 0.9091)) +(: cnet_isa_daf206d85c (IsA tea_ceremony ceremony) (STV 1.0 0.9091)) +(: cnet_isa_cfc8ea69ca (IsA tea_chest chest) (STV 1.0 0.9091)) +(: cnet_isa_1e884c6e4a (IsA tea_cloth tablecloth) (STV 1.0 0.9091)) +(: cnet_isa_a6840121d2 (IsA tea_garden garden) (STV 1.0 0.9091)) +(: cnet_isa_eb1b4158b9 (IsA tea_gown gown) (STV 1.0 0.9091)) +(: cnet_isa_820e2e86fa (IsA tea_like_drink beverage) (STV 1.0 0.9091)) +(: cnet_isa_adef0df629 (IsA tea_maker spoon) (STV 1.0 0.9091)) +(: cnet_isa_ac9d5d44d6 (IsA tea_napkin napkin) (STV 1.0 0.9091)) +(: cnet_isa_adbcd46a3d (IsA tea_party party) (STV 1.0 0.9091)) +(: cnet_isa_3998543a44 (IsA tea_rose rose) (STV 1.0 0.9091)) +(: cnet_isa_e24928b479 (IsA tea_service tableware) (STV 1.0 0.9091)) +(: cnet_isa_cb0cf26dcf (IsA tea_strainer strainer) (STV 1.0 0.9091)) +(: cnet_isa_8a2aa8f387 (IsA tea_table table) (STV 1.0 0.9091)) +(: cnet_isa_7419bf0145 (IsA tea_tortrix tortricid) (STV 1.0 0.9091)) +(: cnet_isa_a528bee441 (IsA tea_tray tray) (STV 1.0 0.9091)) +(: cnet_isa_96c69c3bf5 (IsA tea_urn urn) (STV 1.0 0.9091)) +(: cnet_isa_9c721c3fef (IsA teaberry shrublet) (STV 1.0 0.9091)) +(: cnet_isa_41e8b5e3fc (IsA teacake cake) (STV 1.0 0.9091)) +(: cnet_isa_d6581c6c82 (IsA teacake cookie) (STV 1.0 0.9091)) +(: cnet_isa_06414437c9 (IsA teach_in conference) (STV 1.0 0.9091)) +(: cnet_isa_b9f4d298d1 (IsA teacher_s_pet darling) (STV 1.0 0.9091)) +(: cnet_isa_de0dd9dbda (IsA teacher abstraction) (STV 1.0 0.9091)) +(: cnet_isa_c847224eb3 (IsA teacher educator) (STV 1.0 0.9091)) +(: cnet_isa_5e8eb19696 (IsA teacher_student_relation academic_relation) (STV 1.0 0.9091)) +(: cnet_isa_75bae997b3 (IsA teachership position) (STV 1.0 0.9091)) +(: cnet_isa_e27489a8c1 (IsA teaching important_cultural_activity) (STV 1.0 0.9339)) +(: cnet_isa_78b206241e (IsA teaching education) (STV 1.0 0.9091)) +(: cnet_isa_d1aa702a3d (IsA teaching doctrine) (STV 1.0 0.9091)) +(: cnet_isa_1a73550681 (IsA teaching_aid equipment) (STV 1.0 0.9091)) +(: cnet_isa_99b5745f78 (IsA teaching_certificate certificate) (STV 1.0 0.9091)) +(: cnet_isa_fb6907266b (IsA teaching_fellow teacher) (STV 1.0 0.9091)) +(: cnet_isa_297e241a45 (IsA teaching_method method) (STV 1.0 0.9091)) +(: cnet_isa_d646b36844 (IsA teaching_reading teaching) (STV 1.0 0.9091)) +(: cnet_isa_ff8719efa3 (IsA teacup cup) (STV 1.0 0.9091)) +(: cnet_isa_a10c82497c (IsA teacup containerful) (STV 1.0 0.9091)) +(: cnet_isa_54d478e047 (IsA teak tree) (STV 1.0 0.9091)) +(: cnet_isa_585bb5286b (IsA teak wood) (STV 1.0 0.9091)) +(: cnet_isa_7f46c56ae0 (IsA teakettle kettle) (STV 1.0 0.9091)) +(: cnet_isa_826386ef71 (IsA teal duck) (STV 1.0 0.9091)) +(: cnet_isa_673c7c470c (IsA team animal_group) (STV 1.0 0.9091)) +(: cnet_isa_f8c7efd69e (IsA team team) (STV 1.0 0.9091)) +(: cnet_isa_ddbe239eef (IsA team unit) (STV 1.0 0.9091)) +(: cnet_isa_165c2c4a44 (IsA team_sport sport) (STV 1.0 0.9091)) +(: cnet_isa_96c9cf9fe0 (IsA team_teaching education) (STV 1.0 0.9091)) +(: cnet_isa_d580e22623 (IsA teammate associate) (STV 1.0 0.9091)) +(: cnet_isa_58e2b438ba (IsA teamster driver) (STV 1.0 0.9091)) +(: cnet_isa_acce789cf3 (IsA teamster_union industrial_union) (STV 1.0 0.9091)) +(: cnet_isa_e8cbf6212c (IsA teamwork cooperation) (STV 1.0 0.9091)) +(: cnet_isa_a64bec867a (IsA teapot pot) (STV 1.0 0.9091)) +(: cnet_isa_08d5130c90 (IsA tear separation) (STV 1.0 0.9091)) +(: cnet_isa_d0218f1f54 (IsA tear drop) (STV 1.0 0.9091)) +(: cnet_isa_78844b76ac (IsA tear_gas chemical_weapon) (STV 1.0 0.9091)) +(: cnet_isa_a156651bb9 (IsA tear_gas gas) (STV 1.0 0.9091)) +(: cnet_isa_1cc75b3bab (IsA tear_sheet sheet) (STV 1.0 0.9091)) +(: cnet_isa_1395da3c29 (IsA tearaway daredevil) (STV 1.0 0.9091)) +(: cnet_isa_93e14df54f (IsA teardrop drop) (STV 1.0 0.9091)) +(: cnet_isa_5a171893d1 (IsA tearjerker narrative) (STV 1.0 0.9091)) +(: cnet_isa_98a9b7550a (IsA tease harassment) (STV 1.0 0.9091)) +(: cnet_isa_4cdfc25701 (IsA tease unwelcome_person) (STV 1.0 0.9091)) +(: cnet_isa_23f64d3a3c (IsA teasel herb) (STV 1.0 0.9091)) +(: cnet_isa_4e16a84188 (IsA teaser device) (STV 1.0 0.9091)) +(: cnet_isa_8fae29fbcc (IsA teaser ad) (STV 1.0 0.9091)) +(: cnet_isa_0659feaddc (IsA teaser opening) (STV 1.0 0.9091)) +(: cnet_isa_57c0299895 (IsA teaser worker) (STV 1.0 0.9091)) +(: cnet_isa_0607d2c480 (IsA teashop restaurant) (STV 1.0 0.9091)) +(: cnet_isa_aefd185348 (IsA teasing play) (STV 1.0 0.9091)) +(: cnet_isa_79efa25102 (IsA teaspoon smaller_than_tablespoon) (STV 1.0 0.9091)) +(: cnet_isa_fce84020c6 (IsA teaspoon spoon) (STV 1.0 0.9091)) +(: cnet_isa_a7461ab966 (IsA teaspoon containerful) (STV 1.0 0.9091)) +(: cnet_isa_7e5704976d (IsA tebet jewish_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_dd36c104e7 (IsA tebibit computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_329680a4eb (IsA techie technician) (STV 1.0 0.9091)) +(: cnet_isa_d64f231946 (IsA technetium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_c7878be697 (IsA technical military_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_6c48d1f9e5 (IsA technical pickup) (STV 1.0 0.9091)) +(: cnet_isa_5bbd30c336 (IsA technical_analysis_of_stock_trend analysis) (STV 1.0 0.9091)) +(: cnet_isa_49a77718b4 (IsA technical_foul foul) (STV 1.0 0.9091)) +(: cnet_isa_b1dd855b29 (IsA technical_knockout knockout) (STV 1.0 0.9091)) +(: cnet_isa_faf4a93ebd (IsA technical_school school) (STV 1.0 0.9091)) +(: cnet_isa_c8967eeb75 (IsA technical_sergeant sergeant) (STV 1.0 0.9091)) +(: cnet_isa_f00f6f0210 (IsA technicality detail) (STV 1.0 0.9091)) +(: cnet_isa_080b300c91 (IsA technicality state) (STV 1.0 0.9091)) +(: cnet_isa_8ecc8c0deb (IsA technician expert) (STV 1.0 0.9091)) +(: cnet_isa_028dbf0992 (IsA technician skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_8a32fa69b1 (IsA technicolor method) (STV 1.0 0.9091)) +(: cnet_isa_ff8495f21c (IsA technique method) (STV 1.0 0.9091)) +(: cnet_isa_1cdcb52a93 (IsA techno dance_music) (STV 1.0 0.9091)) +(: cnet_isa_19c9740eea (IsA technobabble jargon) (STV 1.0 0.9091)) +(: cnet_isa_493068c640 (IsA technocracy political_system) (STV 1.0 0.9091)) +(: cnet_isa_4fab983513 (IsA technocrat expert) (STV 1.0 0.9091)) +(: cnet_isa_fda35b744f (IsA technocrat politician) (STV 1.0 0.9091)) +(: cnet_isa_a9ca3f3401 (IsA technology application) (STV 1.0 0.9091)) +(: cnet_isa_ff00274d03 (IsA technology profession) (STV 1.0 0.9091)) +(: cnet_isa_54bd77bab0 (IsA technology technology) (STV 1.0 0.9091)) +(: cnet_isa_3756521ed2 (IsA technology equipment) (STV 1.0 0.9091)) +(: cnet_isa_999af9068c (IsA technology machinery) (STV 1.0 0.9091)) +(: cnet_isa_a191ac9d09 (IsA technology_administration agency) (STV 1.0 0.9091)) +(: cnet_isa_98a92f49a3 (IsA technophile fancier) (STV 1.0 0.9091)) +(: cnet_isa_d672d64553 (IsA technophilia enthusiasm) (STV 1.0 0.9091)) +(: cnet_isa_47076839b6 (IsA technophobe naysayer) (STV 1.0 0.9091)) +(: cnet_isa_4f0c518560 (IsA technophobia dislike) (STV 1.0 0.9091)) +(: cnet_isa_dbdbe71549 (IsA tecophilaeacea liliid_monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_309720bf43 (IsA tectaria fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_45e736e8ad (IsA tectona asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e29144cc5a (IsA tectonic morphology) (STV 1.0 0.9091)) +(: cnet_isa_c33ff60d7a (IsA teddy plaything) (STV 1.0 0.9091)) +(: cnet_isa_61837b1500 (IsA teddy_boy tough_guy) (STV 1.0 0.9091)) +(: cnet_isa_2f9162df73 (IsA teddy_boy youth_subculture) (STV 1.0 0.9091)) +(: cnet_isa_0a5d325329 (IsA tediousness dullness) (STV 1.0 0.9091)) +(: cnet_isa_28ef78209c (IsA tee golf_equipment) (STV 1.0 0.9091)) +(: cnet_isa_4e1e542601 (IsA tee peg) (STV 1.0 0.9091)) +(: cnet_isa_69eb7907d8 (IsA tee support) (STV 1.0 0.9091)) +(: cnet_isa_c2d991c14e (IsA tee site) (STV 1.0 0.9091)) +(: cnet_isa_f0e398138b (IsA tee_hinge hinge) (STV 1.0 0.9091)) +(: cnet_isa_4615ea2618 (IsA teen large_integer) (STV 1.0 0.9091)) +(: cnet_isa_359733e3fc (IsA teen time_of_life) (STV 1.0 0.9091)) +(: cnet_isa_605406c761 (IsA teeoff golf_stroke) (STV 1.0 0.9091)) +(: cnet_isa_059f307af9 (IsA teething growth) (STV 1.0 0.9091)) +(: cnet_isa_3211417cb0 (IsA teetotaler abstainer) (STV 1.0 0.9091)) +(: cnet_isa_5b772e62a8 (IsA teetotaling abstinence) (STV 1.0 0.9091)) +(: cnet_isa_1c8840949c (IsA teff love_grass) (STV 1.0 0.9091)) +(: cnet_isa_944bca7c50 (IsA teg lamb) (STV 1.0 0.9091)) +(: cnet_isa_2a2053ecac (IsA teiid_lizard lizard) (STV 1.0 0.9091)) +(: cnet_isa_44330b7900 (IsA teiidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_31aeb8408e (IsA teju teiid_lizard) (STV 1.0 0.9091)) +(: cnet_isa_e6ddab5ac1 (IsA tektite natural_glass) (STV 1.0 0.9091)) +(: cnet_isa_d0678e768d (IsA telanthera caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_38a9095cc3 (IsA telecast broadcast) (STV 1.0 0.9091)) +(: cnet_isa_4ace7a1e52 (IsA telecaster broadcaster) (STV 1.0 0.9091)) +(: cnet_isa_7fa9647202 (IsA telecom_hotel building) (STV 1.0 0.9091)) +(: cnet_isa_aab14cae28 (IsA telecommunication medium) (STV 1.0 0.9091)) +(: cnet_isa_298f16e807 (IsA telecommunication electrical_engineering) (STV 1.0 0.9091)) +(: cnet_isa_67eb033f45 (IsA telecommunication_system communication_system) (STV 1.0 0.9091)) +(: cnet_isa_b319ff3235 (IsA telecommuting employment) (STV 1.0 0.9091)) +(: cnet_isa_c11b6c8495 (IsA teleconference conference) (STV 1.0 0.9091)) +(: cnet_isa_5a9abe7980 (IsA telefilm movie) (STV 1.0 0.9091)) +(: cnet_isa_96fc7a5df9 (IsA telegnosis psychic_communication) (STV 1.0 0.9091)) +(: cnet_isa_5dc7553af4 (IsA telegram message) (STV 1.0 0.9091)) +(: cnet_isa_409ba7859e (IsA telegraph apparatus) (STV 1.0 0.9091)) +(: cnet_isa_60d8beaf35 (IsA telegraph_form form) (STV 1.0 0.9091)) +(: cnet_isa_0d17b617a4 (IsA telegraph_key key) (STV 1.0 0.9091)) +(: cnet_isa_4bf7efcde0 (IsA telegraph_plant shrub) (STV 1.0 0.9091)) +(: cnet_isa_650d10ce4e (IsA telegrapher operator) (STV 1.0 0.9091)) +(: cnet_isa_8fb31ae972 (IsA telegraphese non_standard_speech) (STV 1.0 0.9091)) +(: cnet_isa_3a630b7df4 (IsA telegraphic_signal signal) (STV 1.0 0.9091)) +(: cnet_isa_e9cf826635 (IsA telegraphy telecommunication) (STV 1.0 0.9091)) +(: cnet_isa_e297ddd568 (IsA telekinesis psychic_phenomena) (STV 1.0 0.9091)) +(: cnet_isa_0267f7eccb (IsA telemark turn) (STV 1.0 0.9091)) +(: cnet_isa_ebabc1a6bf (IsA telemarketing selling) (STV 1.0 0.9091)) +(: cnet_isa_e9661b037d (IsA telemeter scientific_instrument) (STV 1.0 0.9091)) +(: cnet_isa_5c49a5b1e9 (IsA telemetry measurement) (STV 1.0 0.9091)) +(: cnet_isa_7a086d20ff (IsA telemetry_intelligence signal_intelligence) (STV 1.0 0.9091)) +(: cnet_isa_d8757cd4ff (IsA telencephalon neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_ffc9471008 (IsA teleologist advocate) (STV 1.0 0.9091)) +(: cnet_isa_61c8c06a2a (IsA teleology philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_e4f2b0088d (IsA teleost_fish bony_fish) (STV 1.0 0.9091)) +(: cnet_isa_ca2c0320a4 (IsA teleostei class) (STV 1.0 0.9091)) +(: cnet_isa_348da1b97b (IsA telepathist communicator) (STV 1.0 0.9091)) +(: cnet_isa_3cba4cd18c (IsA telepathy psychic_communication) (STV 1.0 0.9091)) +(: cnet_isa_7d5cacff09 (IsA telephone communication_device) (STV 1.0 0.9659)) +(: cnet_isa_079c5ec0c0 (IsA telephone electronic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_2cb9efcb38 (IsA telephone telecommunication) (STV 1.0 0.9091)) +(: cnet_isa_611d9c0c77 (IsA telephone_bell electric_bell) (STV 1.0 0.9091)) +(: cnet_isa_e91d10bf88 (IsA telephone_booth booth) (STV 1.0 0.9091)) +(: cnet_isa_5828392921 (IsA telephone_company utility) (STV 1.0 0.9091)) +(: cnet_isa_b71e0729fa (IsA telephone_conversation conversation) (STV 1.0 0.9091)) +(: cnet_isa_4ba131fe13 (IsA telephone_cord telephone_wire) (STV 1.0 0.9091)) +(: cnet_isa_90b939360c (IsA telephone_interview interview) (STV 1.0 0.9091)) +(: cnet_isa_1cc48de583 (IsA telephone_jack jack) (STV 1.0 0.9091)) +(: cnet_isa_d2a5e0a8ec (IsA telephone_line connection) (STV 1.0 0.9091)) +(: cnet_isa_4d53c569de (IsA telephone_operator operator) (STV 1.0 0.9091)) +(: cnet_isa_0eda6abb44 (IsA telephone_order telemarketing) (STV 1.0 0.9091)) +(: cnet_isa_7e46cff108 (IsA telephone_plug plug) (STV 1.0 0.9091)) +(: cnet_isa_9992b1a973 (IsA telephone_pole post) (STV 1.0 0.9091)) +(: cnet_isa_d311eb2abb (IsA telephone_receiver earphone) (STV 1.0 0.9091)) +(: cnet_isa_d41c6e4366 (IsA telephone_system communication_system) (STV 1.0 0.9091)) +(: cnet_isa_4d4b6cff95 (IsA telephone_unit unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_6931043d8b (IsA telephone_wire wire) (STV 1.0 0.9091)) +(: cnet_isa_30352c9ac4 (IsA telephoto_len camera_len) (STV 1.0 0.9091)) +(: cnet_isa_de5aa17ae0 (IsA telephotograph picture) (STV 1.0 0.9091)) +(: cnet_isa_a255c47afa (IsA telephotography photography) (STV 1.0 0.9091)) +(: cnet_isa_672e16cef0 (IsA telephotography transmission) (STV 1.0 0.9091)) +(: cnet_isa_d3df2c67ed (IsA teleportation transportation) (STV 1.0 0.9091)) +(: cnet_isa_3f72c0aa5c (IsA telerobotic robotic) (STV 1.0 0.9091)) +(: cnet_isa_b36d39abaf (IsA telescope device) (STV 1.0 0.9091)) +(: cnet_isa_cd176ef383 (IsA telescope magnifier) (STV 1.0 0.9091)) +(: cnet_isa_9ec7b70974 (IsA telescope for_seeing_thing_far_away) (STV 1.0 0.9091)) +(: cnet_isa_90bb71a03f (IsA telescopic_sight gunsight) (STV 1.0 0.9091)) +(: cnet_isa_307ba54387 (IsA telescopy art) (STV 1.0 0.9091)) +(: cnet_isa_0784bb53f8 (IsA telethermometer thermometer) (STV 1.0 0.9091)) +(: cnet_isa_023aff1e21 (IsA teletypewriter character_printer) (STV 1.0 0.9091)) +(: cnet_isa_d698b24276 (IsA televangelism evangelism) (STV 1.0 0.9091)) +(: cnet_isa_0d9df5c5f4 (IsA televangelist evangelist) (STV 1.0 0.9091)) +(: cnet_isa_3e701121c2 (IsA television appliance) (STV 1.0 0.9339)) +(: cnet_isa_13028388d9 (IsA television good_way_to_spend_time) (STV 1.0 0.9454)) +(: cnet_isa_c71c1196d8 (IsA television machine) (STV 1.0 0.9091)) +(: cnet_isa_a97c673b04 (IsA television tv) (STV 1.0 0.9091)) +(: cnet_isa_b1a5a76d3a (IsA television broadcasting) (STV 1.0 0.9091)) +(: cnet_isa_8dcfedc4a8 (IsA television telecommunication_system) (STV 1.0 0.9091)) +(: cnet_isa_847c663c12 (IsA television_antenna omnidirectional_antenna) (STV 1.0 0.9091)) +(: cnet_isa_8cdf43830a (IsA television_camera television_equipment) (STV 1.0 0.9091)) +(: cnet_isa_87c666284f (IsA television_camera_tube tube) (STV 1.0 0.9091)) +(: cnet_isa_9ce482112e (IsA television_equipment electronic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_c972cd1c83 (IsA television_monitor monitor) (STV 1.0 0.9091)) +(: cnet_isa_59168f16af (IsA television_new new_program) (STV 1.0 0.9091)) +(: cnet_isa_0e88fe54f4 (IsA television_program program) (STV 1.0 0.9339)) +(: cnet_isa_74285d6f6f (IsA television_program broadcast) (STV 1.0 0.9091)) +(: cnet_isa_300f0a34e7 (IsA television_receiver receiver) (STV 1.0 0.9091)) +(: cnet_isa_3013845a9d (IsA television_reporter reporter) (STV 1.0 0.9091)) +(: cnet_isa_a5d798007d (IsA television_room room) (STV 1.0 0.9091)) +(: cnet_isa_d05efe45c7 (IsA television_star star) (STV 1.0 0.9091)) +(: cnet_isa_a20e6cf1cb (IsA television_station broadcasting_station) (STV 1.0 0.9091)) +(: cnet_isa_d6dcaed29b (IsA television_transmitter transmitter) (STV 1.0 0.9091)) +(: cnet_isa_a763f66c44 (IsA teliospore chlamydospore) (STV 1.0 0.9091)) +(: cnet_isa_2fd68fb0f1 (IsA teller banker) (STV 1.0 0.9091)) +(: cnet_isa_6200c0b996 (IsA teller official) (STV 1.0 0.9091)) +(: cnet_isa_8f8c8839ce (IsA tellima rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_75d1fafe9b (IsA telling informing) (STV 1.0 0.9091)) +(: cnet_isa_f73694418e (IsA tellurian inhabitant) (STV 1.0 0.9091)) +(: cnet_isa_b72730fb29 (IsA telluride compound) (STV 1.0 0.9091)) +(: cnet_isa_66275425d3 (IsA tellurium chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_94782ad654 (IsA telocentric_chromosome chromosome) (STV 1.0 0.9091)) +(: cnet_isa_9b609868b5 (IsA telomerase enzyme) (STV 1.0 0.9091)) +(: cnet_isa_f1b8f35ce2 (IsA telomere end) (STV 1.0 0.9091)) +(: cnet_isa_831b2be4c3 (IsA telopea dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4ba1ab91ce (IsA telophase situation) (STV 1.0 0.9091)) +(: cnet_isa_7119d18e4a (IsA telophase telophase_generic) (STV 1.0 0.9091)) +(: cnet_isa_e64dbef4b0 (IsA telophase phase_of_cell_division) (STV 1.0 0.9091)) +(: cnet_isa_594e928e57 (IsA telophase_cell cell_undergoing_meiosis) (STV 1.0 0.9091)) +(: cnet_isa_808b39c7f9 (IsA telophase_cell eukaryotic_cell) (STV 1.0 0.9091)) +(: cnet_isa_4686116f38 (IsA telosporidia class) (STV 1.0 0.9091)) +(: cnet_isa_4e6295ddd2 (IsA telpher conveyance) (STV 1.0 0.9091)) +(: cnet_isa_1c8a20e7d0 (IsA telpherage transportation_system) (STV 1.0 0.9091)) +(: cnet_isa_a922b4df9b (IsA telugu south_central_dravidian) (STV 1.0 0.9091)) +(: cnet_isa_83dea1f893 (IsA telugu dravidian) (STV 1.0 0.9091)) +(: cnet_isa_d71182f14d (IsA temnospondyli animal_order) (STV 1.0 0.9091)) +(: cnet_isa_877499f5d5 (IsA temp worker) (STV 1.0 0.9091)) +(: cnet_isa_e9987abbcf (IsA temper elasticity) (STV 1.0 0.9091)) +(: cnet_isa_afca1b8281 (IsA temper ill_nature) (STV 1.0 0.9091)) +(: cnet_isa_27c59fbd74 (IsA temper feeling) (STV 1.0 0.9091)) +(: cnet_isa_3ac09ce712 (IsA tempera water_base_paint) (STV 1.0 0.9091)) +(: cnet_isa_ce8e93f165 (IsA temperament adjustment) (STV 1.0 0.9091)) +(: cnet_isa_b07c7c07fe (IsA temperament emotionality) (STV 1.0 0.9091)) +(: cnet_isa_e8148d0a4c (IsA temperance combination) (STV 1.0 0.9091)) +(: cnet_isa_6d8a6728cb (IsA temperance natural_virtue) (STV 1.0 0.9091)) +(: cnet_isa_d1b472d9d5 (IsA temperance restraint) (STV 1.0 0.9091)) +(: cnet_isa_47efdcf0ca (IsA temperate_rain_forest rain_forest) (STV 1.0 0.9091)) +(: cnet_isa_f218473c11 (IsA temperate_zone climatic_zone) (STV 1.0 0.9091)) +(: cnet_isa_6e10390afb (IsA temperature fundamental_quantity) (STV 1.0 0.9091)) +(: cnet_isa_7555175df3 (IsA temperature physical_property) (STV 1.0 0.9091)) +(: cnet_isa_4933c8c78a (IsA temperature somesthesia) (STV 1.0 0.9091)) +(: cnet_isa_b1aba6cae1 (IsA temperature_change natural_process) (STV 1.0 0.9091)) +(: cnet_isa_2846573372 (IsA temperature_gradient gradient) (STV 1.0 0.9091)) +(: cnet_isa_572eb545cc (IsA temperature_scale scale) (STV 1.0 0.9091)) +(: cnet_isa_a4d17a39a8 (IsA temperature_scale system_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_479e946bca (IsA temperature_unit unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_463334172f (IsA tempest windstorm) (STV 1.0 0.9091)) +(: cnet_isa_9294727670 (IsA tempestuousness storminess) (STV 1.0 0.9091)) +(: cnet_isa_3a9c2364bd (IsA templar knight) (STV 1.0 0.9091)) +(: cnet_isa_4b397f89b9 (IsA template model) (STV 1.0 0.9091)) +(: cnet_isa_a46a2e47d3 (IsA temple place_of_worship) (STV 1.0 0.9339)) +(: cnet_isa_8ea2b20632 (IsA temple place_where_can_worship) (STV 1.0 0.9091)) +(: cnet_isa_c2cf81ae35 (IsA temple building) (STV 1.0 0.9091)) +(: cnet_isa_d76764318a (IsA temple feature) (STV 1.0 0.9091)) +(: cnet_isa_57b2a86de5 (IsA temple_orange orange) (STV 1.0 0.9091)) +(: cnet_isa_fb679967b7 (IsA templetonia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e751dd0d3a (IsA tempo musical_time) (STV 1.0 0.9091)) +(: cnet_isa_6316e6929d (IsA tempo rate) (STV 1.0 0.9091)) +(: cnet_isa_441a09438b (IsA temporal_arrangement temporal_property) (STV 1.0 0.9091)) +(: cnet_isa_76ccb5f782 (IsA temporal_arteritis arteritis) (STV 1.0 0.9091)) +(: cnet_isa_81e2b98a2b (IsA temporal_artery cerebral_artery) (STV 1.0 0.9091)) +(: cnet_isa_7143774118 (IsA temporal_bone bone) (STV 1.0 0.9091)) +(: cnet_isa_49e417819c (IsA temporal_canthus canthus) (STV 1.0 0.9091)) +(: cnet_isa_74c7e9fc99 (IsA temporal_gyrus gyrus) (STV 1.0 0.9091)) +(: cnet_isa_d87c341300 (IsA temporal_lobe lobe) (STV 1.0 0.9091)) +(: cnet_isa_287ab58e3f (IsA temporal_property property) (STV 1.0 0.9091)) +(: cnet_isa_fe80e5203d (IsA temporal_relation relation) (STV 1.0 0.9091)) +(: cnet_isa_3cfbec476e (IsA temporal_role semantic_role) (STV 1.0 0.9091)) +(: cnet_isa_b70c52da0a (IsA temporal_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_1b05e34851 (IsA temporalis_muscle skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_0fa00015e1 (IsA temporalty spiritualty) (STV 1.0 0.9091)) +(: cnet_isa_43ce80ee6d (IsA temporariness impermanence) (STV 1.0 0.9091)) +(: cnet_isa_fb113f534b (IsA temporary_hookup connection) (STV 1.0 0.9091)) +(: cnet_isa_fef40c6d0f (IsA temporary_hookup lash_up) (STV 1.0 0.9091)) +(: cnet_isa_7c615c74d1 (IsA temporary_injunction injunction) (STV 1.0 0.9091)) +(: cnet_isa_892b621807 (IsA temporary_state state) (STV 1.0 0.9091)) +(: cnet_isa_52e94c3e32 (IsA temporizer delayer) (STV 1.0 0.9091)) +(: cnet_isa_039f864f36 (IsA temptation influence) (STV 1.0 0.9091)) +(: cnet_isa_df3b8df3a8 (IsA temptation desire) (STV 1.0 0.9091)) +(: cnet_isa_dd989e77b0 (IsA tempter person) (STV 1.0 0.9091)) +(: cnet_isa_5131ce9c60 (IsA tempura dish) (STV 1.0 0.9091)) +(: cnet_isa_0f579dc523 (IsA ten large_integer) (STV 1.0 0.9091)) +(: cnet_isa_51026e33ce (IsA ten_commandment good_rule_to_live_by) (STV 1.0 0.9091)) +(: cnet_isa_7ba44289aa (IsA ten_spined_stickleback stickleback) (STV 1.0 0.9091)) +(: cnet_isa_652307a7e3 (IsA ten_spot spot) (STV 1.0 0.9091)) +(: cnet_isa_7e3ccaa739 (IsA ten_thousand large_integer) (STV 1.0 0.9091)) +(: cnet_isa_76f041a091 (IsA tenant holder) (STV 1.0 0.9091)) +(: cnet_isa_de472063cc (IsA tenant payer) (STV 1.0 0.9091)) +(: cnet_isa_65ff050de2 (IsA tenant resident) (STV 1.0 0.9091)) +(: cnet_isa_620570a790 (IsA tenant_farmer farmer) (STV 1.0 0.9091)) +(: cnet_isa_a6aafe0821 (IsA tenant_farmer tenant) (STV 1.0 0.9091)) +(: cnet_isa_cb0be74fc5 (IsA tenantry collection) (STV 1.0 0.9091)) +(: cnet_isa_993e8faf32 (IsA tench cyprinid) (STV 1.0 0.9091)) +(: cnet_isa_c6083e0f65 (IsA tendency disposition) (STV 1.0 0.9091)) +(: cnet_isa_919be405ba (IsA tendency direction) (STV 1.0 0.9091)) +(: cnet_isa_4354e198e0 (IsA tendentiousness bia) (STV 1.0 0.9091)) +(: cnet_isa_63a16c0c7b (IsA tender boat) (STV 1.0 0.9091)) +(: cnet_isa_474d65d547 (IsA tender car) (STV 1.0 0.9091)) +(: cnet_isa_0ac54fb8d9 (IsA tender ship) (STV 1.0 0.9091)) +(: cnet_isa_df398677f6 (IsA tender medium_of_exchange) (STV 1.0 0.9091)) +(: cnet_isa_3569019aed (IsA tender_loving_care care) (STV 1.0 0.9091)) +(: cnet_isa_c3634ff670 (IsA tender_offer offer) (STV 1.0 0.9091)) +(: cnet_isa_223d487b09 (IsA tenderfoot novice) (STV 1.0 0.9091)) +(: cnet_isa_ecdc9954fd (IsA tendergreen crucifer) (STV 1.0 0.9091)) +(: cnet_isa_82b8aa3b53 (IsA tenderization improvement) (STV 1.0 0.9091)) +(: cnet_isa_2c9f1c6589 (IsA tenderizer compound) (STV 1.0 0.9091)) +(: cnet_isa_05feb21c35 (IsA tenderloin cut) (STV 1.0 0.9091)) +(: cnet_isa_911642e3f6 (IsA tenderness affectionateness) (STV 1.0 0.9091)) +(: cnet_isa_00bef44bf4 (IsA tenderness compassion) (STV 1.0 0.9091)) +(: cnet_isa_1775fac92c (IsA tenderness pain) (STV 1.0 0.9091)) +(: cnet_isa_7a95b06194 (IsA tendinitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_1c5cc1a0ea (IsA tendon connective_tissue) (STV 1.0 0.9091)) +(: cnet_isa_1928fd56dd (IsA tendril plant_part) (STV 1.0 0.9091)) +(: cnet_isa_1a1c60c77a (IsA tenebrionidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_940bf5c651 (IsA tenement apartment_building) (STV 1.0 0.9091)) +(: cnet_isa_c4facc4ca9 (IsA tenement_district residential_district) (STV 1.0 0.9091)) +(: cnet_isa_5266bbdafe (IsA tenesmus spasm) (STV 1.0 0.9091)) +(: cnet_isa_aca2f8e905 (IsA tenge kazakhstani_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_8e2bd9ac16 (IsA tenge turkmen_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_49a0a3e011 (IsA tenner bill) (STV 1.0 0.9091)) +(: cnet_isa_d82444211d (IsA tennessee_walker saddle_horse) (STV 1.0 0.9091)) +(: cnet_isa_92dfd8bd59 (IsA tennis game) (STV 1.0 0.9524)) +(: cnet_isa_085f501038 (IsA tennis great_sport) (STV 1.0 0.9091)) +(: cnet_isa_c92b3bc192 (IsA tennis sport) (STV 1.0 0.9796)) +(: cnet_isa_aa5aefbfaa (IsA tennis court_game) (STV 1.0 0.9091)) +(: cnet_isa_90df5337c8 (IsA tennis_ball ball) (STV 1.0 0.9091)) +(: cnet_isa_1f50ebfb80 (IsA tennis_camp camp) (STV 1.0 0.9091)) +(: cnet_isa_4d18d986fa (IsA tennis_club racket_club) (STV 1.0 0.9091)) +(: cnet_isa_21ac993a3c (IsA tennis_coach coach) (STV 1.0 0.9091)) +(: cnet_isa_2caa0a3064 (IsA tennis_court where_people_play_tennis) (STV 1.0 0.9091)) +(: cnet_isa_407f949fae (IsA tennis_court court) (STV 1.0 0.9091)) +(: cnet_isa_587b6d6a28 (IsA tennis_elbow epicondylitis) (STV 1.0 0.9091)) +(: cnet_isa_4446b9fa72 (IsA tennis_elbow tendinitis) (STV 1.0 0.9091)) +(: cnet_isa_22c8da0eac (IsA tennis_lesson lesson) (STV 1.0 0.9091)) +(: cnet_isa_9f278f1c8e (IsA tennis_match match) (STV 1.0 0.9091)) +(: cnet_isa_d5fae6b947 (IsA tennis_player athlete) (STV 1.0 0.9091)) +(: cnet_isa_48f55db14a (IsA tennis_player player) (STV 1.0 0.9091)) +(: cnet_isa_3fd3ea0dd3 (IsA tennis_pro tennis_player) (STV 1.0 0.9091)) +(: cnet_isa_46f5388410 (IsA tennis_racket piece_of_tennis_equiptment) (STV 1.0 0.9091)) +(: cnet_isa_ee7ab35e31 (IsA tennis_racket racket) (STV 1.0 0.9091)) +(: cnet_isa_4fe9789771 (IsA tennis_stroke stroke) (STV 1.0 0.9091)) +(: cnet_isa_dc891ae369 (IsA tenon projection) (STV 1.0 0.9091)) +(: cnet_isa_858bb4cb12 (IsA tenor pitch) (STV 1.0 0.9091)) +(: cnet_isa_40952ace42 (IsA tenor direction) (STV 1.0 0.9091)) +(: cnet_isa_c1e478f682 (IsA tenor meaning) (STV 1.0 0.9091)) +(: cnet_isa_23db957684 (IsA tenor singing_voice) (STV 1.0 0.9091)) +(: cnet_isa_7bc16c16fa (IsA tenor singer) (STV 1.0 0.9091)) +(: cnet_isa_cdcb3ec92d (IsA tenor_clef clef) (STV 1.0 0.9091)) +(: cnet_isa_67aa5abcc7 (IsA tenor_drum drum) (STV 1.0 0.9091)) +(: cnet_isa_3d2e6090ca (IsA tenor_saxophonist saxophonist) (STV 1.0 0.9091)) +(: cnet_isa_760d5329b9 (IsA tenoroon bassoon) (STV 1.0 0.9091)) +(: cnet_isa_1073db8941 (IsA tenosynovitis synovitis) (STV 1.0 0.9091)) +(: cnet_isa_b2f622a587 (IsA tenosynovitis tendinitis) (STV 1.0 0.9091)) +(: cnet_isa_ef1b21008d (IsA tenpence coin) (STV 1.0 0.9091)) +(: cnet_isa_ac8e419528 (IsA tenpenny_nail nail) (STV 1.0 0.9091)) +(: cnet_isa_5ca845f4ad (IsA tenpin bowling_pin) (STV 1.0 0.9091)) +(: cnet_isa_72f3e16136 (IsA tenpin bowling) (STV 1.0 0.9091)) +(: cnet_isa_c7b788d55a (IsA tenrec insectivore) (STV 1.0 0.9091)) +(: cnet_isa_e948bc8313 (IsA tenrecidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_d01556d911 (IsA tense grammatical_category) (STV 1.0 0.9091)) +(: cnet_isa_a665815700 (IsA tense_system language_system) (STV 1.0 0.9091)) +(: cnet_isa_b76a83840a (IsA tensile_strength lastingness) (STV 1.0 0.9091)) +(: cnet_isa_297f480e6a (IsA tensimeter manometer) (STV 1.0 0.9091)) +(: cnet_isa_aa0c6f8704 (IsA tensiometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_d3e1232426 (IsA tension stretching) (STV 1.0 0.9091)) +(: cnet_isa_90e6ed5d16 (IsA tension balance) (STV 1.0 0.9091)) +(: cnet_isa_5b0d8a5835 (IsA tension stress) (STV 1.0 0.9091)) +(: cnet_isa_22ad6da6c9 (IsA tension strain) (STV 1.0 0.9091)) +(: cnet_isa_32cd0a102a (IsA tension condition) (STV 1.0 0.9091)) +(: cnet_isa_3f97453d92 (IsA tension_headache headache) (STV 1.0 0.9091)) +(: cnet_isa_791e6e4ddb (IsA tensor muscle) (STV 1.0 0.9091)) +(: cnet_isa_9edbb2ee54 (IsA tensor variable) (STV 1.0 0.9091)) +(: cnet_isa_2587ab2088 (IsA tensor_tympani tensor) (STV 1.0 0.9091)) +(: cnet_isa_5710eb57cd (IsA tent shelter) (STV 1.0 0.9091)) +(: cnet_isa_30488e32aa (IsA tent web) (STV 1.0 0.9091)) +(: cnet_isa_8f0aada37c (IsA tent_caterpillar caterpillar) (STV 1.0 0.9091)) +(: cnet_isa_46b8b27d6b (IsA tent_caterpillar_moth lasiocampid) (STV 1.0 0.9091)) +(: cnet_isa_867957533d (IsA tent_caterpillar_moth moth) (STV 1.0 0.9091)) +(: cnet_isa_ee66132088 (IsA tent_fly flap) (STV 1.0 0.9091)) +(: cnet_isa_f4b073ef47 (IsA tent_peg peg) (STV 1.0 0.9091)) +(: cnet_isa_ef9cdc7afc (IsA tentacle process) (STV 1.0 0.9091)) +(: cnet_isa_a261c300c2 (IsA tentacle grip) (STV 1.0 0.9091)) +(: cnet_isa_f60feaa76d (IsA tentaculata class) (STV 1.0 0.9091)) +(: cnet_isa_478285ec64 (IsA tenter framework) (STV 1.0 0.9091)) +(: cnet_isa_93ccfa75dc (IsA tenterhook hook) (STV 1.0 0.9091)) +(: cnet_isa_90a5576141 (IsA tenth rank) (STV 1.0 0.9091)) +(: cnet_isa_104c5cd8ca (IsA tenth_month_of_year october) (STV 1.0 0.9091)) +(: cnet_isa_07d2f600e9 (IsA tenthredinidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_02ec4841d0 (IsA tentmaker maker) (STV 1.0 0.9091)) +(: cnet_isa_a9e035f94a (IsA tentorium fold) (STV 1.0 0.9091)) +(: cnet_isa_ab776f4677 (IsA tenure legal_right) (STV 1.0 0.9091)) +(: cnet_isa_3f8baa69e1 (IsA tenure term) (STV 1.0 0.9091)) +(: cnet_isa_0e68d4b065 (IsA tepal plant_part) (STV 1.0 0.9091)) +(: cnet_isa_a9d150071a (IsA tepary_bean shell_bean) (STV 1.0 0.9091)) +(: cnet_isa_3aacb5bbcb (IsA tepee lodge) (STV 1.0 0.9091)) +(: cnet_isa_b588021786 (IsA tepee tent) (STV 1.0 0.9091)) +(: cnet_isa_a2cb8a7859 (IsA tephrosia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e989933baa (IsA tepidness coldness) (STV 1.0 0.9091)) +(: cnet_isa_6ee3a5aa28 (IsA tequila liquor) (STV 1.0 0.9091)) +(: cnet_isa_d19b70b1c3 (IsA tera biu_mandara) (STV 1.0 0.9091)) +(: cnet_isa_6b12c2b55e (IsA terabit computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_f54a2ab16a (IsA terabyte computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_4dda88333f (IsA teraflop unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_31f57a084b (IsA terahertz rate) (STV 1.0 0.9091)) +(: cnet_isa_6f2ef7627f (IsA teratogen agent) (STV 1.0 0.9091)) +(: cnet_isa_861b1bdd07 (IsA teratogenesis growth) (STV 1.0 0.9091)) +(: cnet_isa_82dd74031b (IsA teratology embryology) (STV 1.0 0.9091)) +(: cnet_isa_678304b8cb (IsA teratoma tumor) (STV 1.0 0.9091)) +(: cnet_isa_99bada9557 (IsA terbium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_a1ec98d7f8 (IsA terbium_metal rare_earth) (STV 1.0 0.9091)) +(: cnet_isa_bb53d62df5 (IsA terce canonical_hour) (STV 1.0 0.9091)) +(: cnet_isa_a7b69c5371 (IsA tercentennial anniversary) (STV 1.0 0.9091)) +(: cnet_isa_7a07687f80 (IsA terebella worm_genus) (STV 1.0 0.9091)) +(: cnet_isa_d5801badcf (IsA terebellidae worm_family) (STV 1.0 0.9091)) +(: cnet_isa_fa9c9147fb (IsA terebinth angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_d8fcd241af (IsA teredinidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_13b46a3f20 (IsA teredo shipworm) (STV 1.0 0.9091)) +(: cnet_isa_4846785804 (IsA tere skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_44f012291a (IsA tere_major tere) (STV 1.0 0.9091)) +(: cnet_isa_e86c51ede1 (IsA tere_minor tere) (STV 1.0 0.9091)) +(: cnet_isa_c8e1e1e3d2 (IsA teriyaki dish) (STV 1.0 0.9091)) +(: cnet_isa_7eb31090bd (IsA term quantity) (STV 1.0 0.9091)) +(: cnet_isa_688289f94e (IsA term constituent) (STV 1.0 0.9091)) +(: cnet_isa_34ecc3c7fa (IsA term word) (STV 1.0 0.9091)) +(: cnet_isa_79ff6703f5 (IsA term point) (STV 1.0 0.9091)) +(: cnet_isa_e941c216c0 (IsA term time_period) (STV 1.0 0.9091)) +(: cnet_isa_2627be15da (IsA term_infant neonate) (STV 1.0 0.9091)) +(: cnet_isa_88ce2758be (IsA term_insurance insurance) (STV 1.0 0.9091)) +(: cnet_isa_8d35856d0f (IsA term_paper composition) (STV 1.0 0.9091)) +(: cnet_isa_2b91d63e3e (IsA termer person) (STV 1.0 0.9091)) +(: cnet_isa_2150b1bf9d (IsA terme arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_374aadc1ff (IsA terminable_interest interest) (STV 1.0 0.9091)) +(: cnet_isa_d4542d7194 (IsA terminal contact) (STV 1.0 0.9091)) +(: cnet_isa_33acd12be7 (IsA terminal electronic_equipment) (STV 1.0 0.9091)) +(: cnet_isa_332f1c6529 (IsA terminal station) (STV 1.0 0.9091)) +(: cnet_isa_02a12c652c (IsA terminal_emulation emulation) (STV 1.0 0.9091)) +(: cnet_isa_5c5193baa9 (IsA terminal_leave leave) (STV 1.0 0.9091)) +(: cnet_isa_05c57e3539 (IsA terminal_velocity speed) (STV 1.0 0.9091)) +(: cnet_isa_790e7cd6bc (IsA termination change_of_state) (STV 1.0 0.9091)) +(: cnet_isa_a02747e459 (IsA termination end) (STV 1.0 0.9091)) +(: cnet_isa_5d8f229439 (IsA terminology word) (STV 1.0 0.9091)) +(: cnet_isa_4a342ccf2b (IsA terminus statue) (STV 1.0 0.9091)) +(: cnet_isa_5d6c96b2be (IsA terminus end) (STV 1.0 0.9091)) +(: cnet_isa_8cedf00f65 (IsA terminus_ad_quem end) (STV 1.0 0.9091)) +(: cnet_isa_86594133fc (IsA terminus_quo beginning) (STV 1.0 0.9091)) +(: cnet_isa_95bf537f06 (IsA termite insect) (STV 1.0 0.9091)) +(: cnet_isa_8c307b5baa (IsA termitidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_16d738b30d (IsA tern bird) (STV 1.0 0.9339)) +(: cnet_isa_c10a6a4e71 (IsA tern larid) (STV 1.0 0.9091)) +(: cnet_isa_42b904cde4 (IsA terpene hydrocarbon) (STV 1.0 0.9091)) +(: cnet_isa_3db879a653 (IsA terra_alba gypsum) (STV 1.0 0.9091)) +(: cnet_isa_3c2066e3f8 (IsA terra_cotta earthenware) (STV 1.0 0.9091)) +(: cnet_isa_f829c6a858 (IsA terra_sigillata earthenware) (STV 1.0 0.9091)) +(: cnet_isa_0d4b7c3452 (IsA terrace row) (STV 1.0 0.9091)) +(: cnet_isa_413d424539 (IsA terrace tableland) (STV 1.0 0.9091)) +(: cnet_isa_eb29dca586 (IsA terraced_house row_house) (STV 1.0 0.9091)) +(: cnet_isa_d4705dcf3e (IsA terrain tract) (STV 1.0 0.9091)) +(: cnet_isa_61355b470d (IsA terrain_flight flight) (STV 1.0 0.9091)) +(: cnet_isa_998b2c5ce1 (IsA terrain_intelligence tactical_intelligence) (STV 1.0 0.9091)) +(: cnet_isa_c2c1f7a1c9 (IsA terrapene reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_dedfa84d62 (IsA terrapin turtle) (STV 1.0 0.9091)) +(: cnet_isa_f2966c0fb7 (IsA terrarium vivarium) (STV 1.0 0.9091)) +(: cnet_isa_384d7d080c (IsA terreplein space) (STV 1.0 0.9091)) +(: cnet_isa_6995fc6b73 (IsA terrestrial_guidance steering) (STV 1.0 0.9091)) +(: cnet_isa_9489127f38 (IsA terrestrial_planet planet) (STV 1.0 0.9091)) +(: cnet_isa_a8d91d1c23 (IsA terrestrial_time time_unit) (STV 1.0 0.9091)) +(: cnet_isa_ba8907d082 (IsA terrier hunting_dog) (STV 1.0 0.9091)) +(: cnet_isa_8823c1e073 (IsA terrine dish) (STV 1.0 0.9091)) +(: cnet_isa_23226acfdb (IsA territorial guard) (STV 1.0 0.9091)) +(: cnet_isa_2fcccef9ef (IsA territorial soldier) (STV 1.0 0.9091)) +(: cnet_isa_d57de3c121 (IsA territorial_army territorial) (STV 1.0 0.9091)) +(: cnet_isa_ab40ece934 (IsA territorial_water body_of_water) (STV 1.0 0.9091)) +(: cnet_isa_96cf7443e3 (IsA territoriality behavior) (STV 1.0 0.9091)) +(: cnet_isa_1e670c8176 (IsA territorialization organization) (STV 1.0 0.9091)) +(: cnet_isa_76c363567c (IsA territory area) (STV 1.0 0.9091)) +(: cnet_isa_a87decdf25 (IsA territory geographical_area) (STV 1.0 0.9091)) +(: cnet_isa_b1c99b79e0 (IsA terror strong_emotion) (STV 1.0 0.9091)) +(: cnet_isa_514c0fc053 (IsA terror coercion) (STV 1.0 0.9091)) +(: cnet_isa_3b073258c5 (IsA terror imp) (STV 1.0 0.9091)) +(: cnet_isa_b0fed4a5f4 (IsA terror person) (STV 1.0 0.9091)) +(: cnet_isa_b0eea310c4 (IsA terrorism dish_norable_horrofic_situation) (STV 1.0 0.9091)) +(: cnet_isa_5301828162 (IsA terrorism political_violence) (STV 1.0 0.9091)) +(: cnet_isa_8d2387aca2 (IsA terrorism terror) (STV 1.0 0.9091)) +(: cnet_isa_6c65426409 (IsA terrorist bad_person) (STV 1.0 0.9091)) +(: cnet_isa_daa66f5a58 (IsA terrorist human) (STV 1.0 0.9091)) +(: cnet_isa_98b2f08498 (IsA terrorist radical) (STV 1.0 0.9091)) +(: cnet_isa_c25d72de5b (IsA terrorist_attack surprise_attack) (STV 1.0 0.9091)) +(: cnet_isa_fa1a8fc8c0 (IsA terrorist_attack terrorism) (STV 1.0 0.9091)) +(: cnet_isa_9d4167b691 (IsA terrorist_cell cell) (STV 1.0 0.9091)) +(: cnet_isa_a295bbe853 (IsA terrorist_organization organization) (STV 1.0 0.9091)) +(: cnet_isa_0f4fd717d9 (IsA terrorist_organization political_movement) (STV 1.0 0.9091)) +(: cnet_isa_f2f72cd76b (IsA terrorization bullying) (STV 1.0 0.9091)) +(: cnet_isa_71b36f16d8 (IsA terrorization transgression) (STV 1.0 0.9091)) +(: cnet_isa_8367b9c424 (IsA terry fabric) (STV 1.0 0.9091)) +(: cnet_isa_e0c2ef5b88 (IsA terry toweling) (STV 1.0 0.9091)) +(: cnet_isa_7220ea6b84 (IsA terseness expressive_style) (STV 1.0 0.9091)) +(: cnet_isa_7e150e9cb6 (IsA tertiary_syphilis syphilis) (STV 1.0 0.9091)) +(: cnet_isa_965b41bcee (IsA tertigravida gravida) (STV 1.0 0.9091)) +(: cnet_isa_9ec0d70371 (IsA tertium_quid opposition) (STV 1.0 0.9091)) +(: cnet_isa_d9cba1223f (IsA terza_rima poem) (STV 1.0 0.9091)) +(: cnet_isa_c742d9dcbd (IsA tesla flux_density_unit) (STV 1.0 0.9091)) +(: cnet_isa_42901c7b0d (IsA tesla_coil transformer) (STV 1.0 0.9091)) +(: cnet_isa_32dc454ea0 (IsA tessella tessera) (STV 1.0 0.9091)) +(: cnet_isa_64ad85f30a (IsA tessellation decoration) (STV 1.0 0.9091)) +(: cnet_isa_e07734b073 (IsA tessellation juxtaposition) (STV 1.0 0.9091)) +(: cnet_isa_735038adc1 (IsA tessera tile) (STV 1.0 0.9091)) +(: cnet_isa_1dcb21acfc (IsA tesseract hypercube) (STV 1.0 0.9091)) +(: cnet_isa_79cecf4ef0 (IsA tesseract cube) (STV 1.0 0.9091)) +(: cnet_isa_de52176399 (IsA test attempt) (STV 1.0 0.9091)) +(: cnet_isa_63a4a40677 (IsA test mental_measurement) (STV 1.0 0.9091)) +(: cnet_isa_e260a3b8f8 (IsA test covering) (STV 1.0 0.9091)) +(: cnet_isa_c14ab897b1 (IsA test_ban ban) (STV 1.0 0.9091)) +(: cnet_isa_8c99da6b44 (IsA test_bed workplace) (STV 1.0 0.9091)) +(: cnet_isa_48cbae4c77 (IsA test_case legal_action) (STV 1.0 0.9091)) +(: cnet_isa_c61593284c (IsA test_drive road_test) (STV 1.0 0.9091)) +(: cnet_isa_5491d70d04 (IsA test_driver driver) (STV 1.0 0.9091)) +(: cnet_isa_cd9757a733 (IsA test_equipment equipment) (STV 1.0 0.9091)) +(: cnet_isa_e5abd46a7c (IsA test_match match) (STV 1.0 0.9091)) +(: cnet_isa_67a6623fba (IsA test_paper indicator) (STV 1.0 0.9091)) +(: cnet_isa_c1a24499ad (IsA test_paper examination) (STV 1.0 0.9091)) +(: cnet_isa_a40e12b0c4 (IsA test_pilot pilot) (STV 1.0 0.9091)) +(: cnet_isa_af0db07ff8 (IsA test_range range) (STV 1.0 0.9091)) +(: cnet_isa_8ca6d0a37a (IsA test_rocket rocket) (STV 1.0 0.9091)) +(: cnet_isa_2e1260fe94 (IsA test_room room) (STV 1.0 0.9091)) +(: cnet_isa_b25ab2c7c7 (IsA test_tube tube) (STV 1.0 0.9091)) +(: cnet_isa_8631296e08 (IsA test_tube_baby baby) (STV 1.0 0.9091)) +(: cnet_isa_87c2aeabae (IsA testa reproductive_structure) (STV 1.0 0.9091)) +(: cnet_isa_544ca93915 (IsA testacea animal_order) (STV 1.0 0.9091)) +(: cnet_isa_1f7cf6a5d9 (IsA testacean rhizopod) (STV 1.0 0.9091)) +(: cnet_isa_e799cb9cfc (IsA testament creed) (STV 1.0 0.9091)) +(: cnet_isa_cac60a8ea8 (IsA testament sacred_text) (STV 1.0 0.9091)) +(: cnet_isa_6c9bdb7c84 (IsA testament testimony) (STV 1.0 0.9091)) +(: cnet_isa_64309c03f1 (IsA testamentary_trust trust) (STV 1.0 0.9091)) +(: cnet_isa_11bc265c2b (IsA testator person) (STV 1.0 0.9091)) +(: cnet_isa_32e415c81e (IsA testatrix testator) (STV 1.0 0.9091)) +(: cnet_isa_0984c3fd53 (IsA testcross hybridization) (STV 1.0 0.9091)) +(: cnet_isa_73f9e1181b (IsA testee respondent) (STV 1.0 0.9091)) +(: cnet_isa_a774aa5d08 (IsA tester canopy) (STV 1.0 0.9091)) +(: cnet_isa_11367cb325 (IsA testicular_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_16e13cf195 (IsA testicular_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_fb4ddb695d (IsA testifier witness) (STV 1.0 0.9091)) +(: cnet_isa_af7cb63a58 (IsA testimony assertion) (STV 1.0 0.9091)) +(: cnet_isa_f8fe3c6321 (IsA testimony evidence) (STV 1.0 0.9091)) +(: cnet_isa_734412f091 (IsA testiness irritability) (STV 1.0 0.9091)) +(: cnet_isa_7c70765707 (IsA testing examination) (STV 1.0 0.9091)) +(: cnet_isa_9ada172de7 (IsA testing experiment) (STV 1.0 0.9091)) +(: cnet_isa_cee5a727af (IsA testing_ground region) (STV 1.0 0.9091)) +(: cnet_isa_37ad406363 (IsA testis gonad) (STV 1.0 0.9091)) +(: cnet_isa_5b9738d87a (IsA testis male_reproductive_gland) (STV 1.0 0.9091)) +(: cnet_isa_87e5bc009b (IsA testosterone androgen) (STV 1.0 0.9091)) +(: cnet_isa_1f65957653 (IsA testudinidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_ad657ae98f (IsA testudo reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_247a376390 (IsA testudo protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_cd5db0c01b (IsA tet day) (STV 1.0 0.9091)) +(: cnet_isa_8efa0915c9 (IsA tetanus contraction) (STV 1.0 0.9091)) +(: cnet_isa_a8531e352e (IsA tetanus infection) (STV 1.0 0.9091)) +(: cnet_isa_58498158f1 (IsA tetanus_antitoxin antitoxin) (STV 1.0 0.9091)) +(: cnet_isa_9774b71361 (IsA tetanus_immunoglobulin immunoglobulin) (STV 1.0 0.9091)) +(: cnet_isa_1da78db7f9 (IsA tetany syndrome) (STV 1.0 0.9091)) +(: cnet_isa_776dfaf472 (IsA tetartanopia yellow_blue_dichromacy) (STV 1.0 0.9091)) +(: cnet_isa_1c9c7c66df (IsA tete_tete conversation) (STV 1.0 0.9091)) +(: cnet_isa_f2e3a17bfa (IsA teth letter) (STV 1.0 0.9091)) +(: cnet_isa_df08837f4f (IsA tetherball athletic_game) (STV 1.0 0.9091)) +(: cnet_isa_78296fd7f2 (IsA teton_dakota siouan) (STV 1.0 0.9091)) +(: cnet_isa_290513ed6f (IsA tetra characin) (STV 1.0 0.9091)) +(: cnet_isa_92a15ac187 (IsA tetrabasic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_ae71644e84 (IsA tetracaine local_anesthetic) (STV 1.0 0.9091)) +(: cnet_isa_826d013ef7 (IsA tetrachlorethylene vermifuge) (STV 1.0 0.9091)) +(: cnet_isa_34a0b4bcd3 (IsA tetrachloride compound) (STV 1.0 0.9091)) +(: cnet_isa_00f0433cff (IsA tetrachoric_correlation_coefficient correlation_coefficient) (STV 1.0 0.9091)) +(: cnet_isa_31d5cc91e3 (IsA tetraclinis gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_59deb8e732 (IsA tetracycline antibacterial) (STV 1.0 0.9091)) +(: cnet_isa_0495535591 (IsA tetraethyl_lead antiknock) (STV 1.0 0.9091)) +(: cnet_isa_aa92289bd5 (IsA tetrafluoroethylene fluorocarbon) (STV 1.0 0.9091)) +(: cnet_isa_33781719e6 (IsA tetragonia caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4d9b2d41ff (IsA tetragonurus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_1a434e6e49 (IsA tetragram written_word) (STV 1.0 0.9091)) +(: cnet_isa_1ebe39900f (IsA tetragrammaton tetragram) (STV 1.0 0.9091)) +(: cnet_isa_029a03b443 (IsA tetrahalide halide) (STV 1.0 0.9091)) +(: cnet_isa_3c3dd7ba3f (IsA tetrahedron pyramid) (STV 1.0 0.9091)) +(: cnet_isa_1cb7d00fb7 (IsA tetrahedron polyhedron) (STV 1.0 0.9091)) +(: cnet_isa_ff40c2bcae (IsA tetrahydrocannabinol psychoactive_drug) (STV 1.0 0.9091)) +(: cnet_isa_065ca39b7f (IsA tetrahymena ciliate) (STV 1.0 0.9091)) +(: cnet_isa_c9bdec2c68 (IsA tetralogy serial) (STV 1.0 0.9091)) +(: cnet_isa_b5dcf6ae5c (IsA tetralogy_of_fallot congenital_heart_defect) (STV 1.0 0.9091)) +(: cnet_isa_ef36eac43d (IsA tetralogy_of_fallot syndrome) (STV 1.0 0.9091)) +(: cnet_isa_9668efc6a5 (IsA tetrameter verse) (STV 1.0 0.9091)) +(: cnet_isa_b1ae5cc66b (IsA tetraneuris asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9eeb2a9b63 (IsA tetranychidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_8ca2cbd773 (IsA tetrao bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_0370906ed3 (IsA tetraodontidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_3dd0c123ea (IsA tetraonidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_ed50c24fe4 (IsA tetrapod vertebrate) (STV 1.0 0.9091)) +(: cnet_isa_f8df0fe660 (IsA tetrapturus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_22842a21f6 (IsA tetrasaccharide oligosaccharide) (STV 1.0 0.9091)) +(: cnet_isa_afe8b7d9bf (IsA tetraskelion design) (STV 1.0 0.9091)) +(: cnet_isa_8df2de983d (IsA tetrasporangium sporangium) (STV 1.0 0.9091)) +(: cnet_isa_b5312b3f1c (IsA tetraspore spore) (STV 1.0 0.9091)) +(: cnet_isa_5742df028b (IsA tetrazzini dish) (STV 1.0 0.9091)) +(: cnet_isa_071d067c79 (IsA tetri georgian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_56edd1b3bf (IsA tetrode tube) (STV 1.0 0.9091)) +(: cnet_isa_e250489405 (IsA tetrodotoxin neurotoxin) (STV 1.0 0.9091)) +(: cnet_isa_3f1c736a2d (IsA tetrose monosaccharide) (STV 1.0 0.9091)) +(: cnet_isa_d1f9f0d9e5 (IsA tetroxide oxide) (STV 1.0 0.9091)) +(: cnet_isa_d338fd4065 (IsA tettigoniidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_df2f0afa94 (IsA teucrium asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f6ad0034b2 (IsA teuton european) (STV 1.0 0.9091)) +(: cnet_isa_fc4b31b151 (IsA teuton german) (STV 1.0 0.9091)) +(: cnet_isa_045461233a (IsA teutonic_deity deity) (STV 1.0 0.9091)) +(: cnet_isa_e027e8bd92 (IsA teutonist specialist) (STV 1.0 0.9091)) +(: cnet_isa_9930974e38 (IsA texan american) (STV 1.0 0.9091)) +(: cnet_isa_1c83b24528 (IsA texa state) (STV 1.0 0.9572)) +(: cnet_isa_3e797811c5 (IsA texa_bluebonnet lupine) (STV 1.0 0.9091)) +(: cnet_isa_26ba2d4808 (IsA texa_chachalaca chachalaca) (STV 1.0 0.9091)) +(: cnet_isa_4b52fb364d (IsA texa_fever animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_e976309026 (IsA texa_horned_lizard horned_lizard) (STV 1.0 0.9091)) +(: cnet_isa_24b5eb5430 (IsA texa_independence_day day) (STV 1.0 0.9091)) +(: cnet_isa_d7a496f19a (IsA texa_leaguer fly) (STV 1.0 0.9091)) +(: cnet_isa_ecf07c2a45 (IsA texa_purple_spike orchid) (STV 1.0 0.9091)) +(: cnet_isa_103ffdf514 (IsA texa_snowbell styrax) (STV 1.0 0.9091)) +(: cnet_isa_76febbf47f (IsA texa_star flower) (STV 1.0 0.9091)) +(: cnet_isa_f0825cfa72 (IsA texa_storksbill storksbill) (STV 1.0 0.9091)) +(: cnet_isa_150ae5f2a1 (IsA texa_toad true_toad) (STV 1.0 0.9091)) +(: cnet_isa_c53a4b67dd (IsA texa_tortoise tortoise) (STV 1.0 0.9091)) +(: cnet_isa_212af969e4 (IsA text book) (STV 1.0 0.9524)) +(: cnet_isa_8442f078e4 (IsA text matter) (STV 1.0 0.9091)) +(: cnet_isa_87f77134a2 (IsA text passage) (STV 1.0 0.9091)) +(: cnet_isa_ccf78b415c (IsA text_editor editor_program) (STV 1.0 0.9091)) +(: cnet_isa_72d64e23c4 (IsA text_file computer_file) (STV 1.0 0.9091)) +(: cnet_isa_040522d123 (IsA text_matching program) (STV 1.0 0.9091)) +(: cnet_isa_2ed99d2907 (IsA textbook book) (STV 1.0 0.9091)) +(: cnet_isa_eea7d52ce3 (IsA textile_machine machine) (STV 1.0 0.9091)) +(: cnet_isa_df9128d6b0 (IsA textile_mill factory) (STV 1.0 0.9091)) +(: cnet_isa_f0680b5d3c (IsA textile_screw_pine pandanus) (STV 1.0 0.9091)) +(: cnet_isa_044aba76ba (IsA textual_criticism criticism) (STV 1.0 0.9091)) +(: cnet_isa_17b9743edd (IsA texture constitution) (STV 1.0 0.9091)) +(: cnet_isa_71a0f6d7e1 (IsA texture musicality) (STV 1.0 0.9091)) +(: cnet_isa_9ce92d899b (IsA texture tactile_property) (STV 1.0 0.9091)) +(: cnet_isa_e145b70b84 (IsA texture quality) (STV 1.0 0.9091)) +(: cnet_isa_47e8906823 (IsA texture visual_property) (STV 1.0 0.9091)) +(: cnet_isa_4d4227cba9 (IsA thai tai) (STV 1.0 0.9091)) +(: cnet_isa_5169590788 (IsA thai_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_04f7171e18 (IsA thalamostriate_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_54a4eac37d (IsA thalamus neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_140457920f (IsA thalarcto mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_af02df54e0 (IsA thalassemia hypochromic_anemia) (STV 1.0 0.9091)) +(: cnet_isa_a9c07edf37 (IsA thalassemia monogenic_disorder) (STV 1.0 0.9091)) +(: cnet_isa_472f002580 (IsA thalassoma fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_11a53fe564 (IsA thalia grace) (STV 1.0 0.9091)) +(: cnet_isa_dc4f040a3c (IsA thaliacea class) (STV 1.0 0.9091)) +(: cnet_isa_d07202f4b4 (IsA thalictrum magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f226cadde1 (IsA thalidomide sedative_hypnotic) (STV 1.0 0.9091)) +(: cnet_isa_568f45c208 (IsA thalidomide teratogen) (STV 1.0 0.9091)) +(: cnet_isa_3edfd716a5 (IsA thallium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_775fd0ebed (IsA thallophyta division) (STV 1.0 0.9091)) +(: cnet_isa_9e29aeedd9 (IsA thallophyte cryptogam) (STV 1.0 0.9091)) +(: cnet_isa_3111576979 (IsA thallus plant_part) (STV 1.0 0.9091)) +(: cnet_isa_060e43f876 (IsA thalweg contour) (STV 1.0 0.9091)) +(: cnet_isa_ef20d2d36a (IsA thalweg boundary) (STV 1.0 0.9091)) +(: cnet_isa_f276dc75ce (IsA thamnophilus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_cef157ee60 (IsA thamnophis reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_74d622c08e (IsA thanatology science) (STV 1.0 0.9091)) +(: cnet_isa_5a93d96af4 (IsA thanatophobia simple_phobia) (STV 1.0 0.9091)) +(: cnet_isa_e4d6c38257 (IsA thanatopsis essay) (STV 1.0 0.9091)) +(: cnet_isa_d056cfc682 (IsA thane citizen) (STV 1.0 0.9091)) +(: cnet_isa_0ea88f7cb6 (IsA thane nobleman) (STV 1.0 0.9091)) +(: cnet_isa_42c9c8de3e (IsA thaneship position) (STV 1.0 0.9091)) +(: cnet_isa_1f92cb108d (IsA thank_offering offering) (STV 1.0 0.9091)) +(: cnet_isa_7cffb06d6b (IsA thank_you thank) (STV 1.0 0.9091)) +(: cnet_isa_ced58949aa (IsA thank aid) (STV 1.0 0.9091)) +(: cnet_isa_6707b7df07 (IsA thank acknowledgment) (STV 1.0 0.9091)) +(: cnet_isa_907a5aaf41 (IsA thanksgiving feast_day) (STV 1.0 0.9091)) +(: cnet_isa_aeecba29de (IsA thanksgiving legal_holiday) (STV 1.0 0.9091)) +(: cnet_isa_b6799ff747 (IsA thatch roof) (STV 1.0 0.9091)) +(: cnet_isa_11200ee1c3 (IsA thatch hairdo) (STV 1.0 0.9091)) +(: cnet_isa_fe1d9bb56f (IsA thatch roofing_material) (STV 1.0 0.9091)) +(: cnet_isa_512661c201 (IsA thatch_palm fan_palm) (STV 1.0 0.9091)) +(: cnet_isa_bb781b1f6a (IsA thatcher roofer) (STV 1.0 0.9091)) +(: cnet_isa_e136bbb12e (IsA thatcherism policy) (STV 1.0 0.9091)) +(: cnet_isa_c23a38dbf8 (IsA thatcherite advocate) (STV 1.0 0.9091)) +(: cnet_isa_1df6e8a7f1 (IsA thaumatolatry worship) (STV 1.0 0.9091)) +(: cnet_isa_5eb896d252 (IsA thaw relaxation) (STV 1.0 0.9091)) +(: cnet_isa_2d74bf94e4 (IsA thaw weather) (STV 1.0 0.9091)) +(: cnet_isa_1e3293fbcd (IsA thaw heating) (STV 1.0 0.9091)) +(: cnet_isa_c699eaf959 (IsA thaw phase_change) (STV 1.0 0.9091)) +(: cnet_isa_570ca387ca (IsA thc resin) (STV 1.0 0.9091)) +(: cnet_isa_b511c92c31 (IsA theaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_2c8f86fd93 (IsA theanthropism theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_1d50df9c85 (IsA theater building) (STV 1.0 0.9091)) +(: cnet_isa_953d42484e (IsA theater_company company) (STV 1.0 0.9091)) +(: cnet_isa_3afd963820 (IsA theater_curtain curtain) (STV 1.0 0.9091)) +(: cnet_isa_70a992229a (IsA theater_light light) (STV 1.0 0.9091)) +(: cnet_isa_614e341011 (IsA theater_of_absurd play) (STV 1.0 0.9091)) +(: cnet_isa_dd118c38a0 (IsA theater_of_war region) (STV 1.0 0.9091)) +(: cnet_isa_ef688faf3c (IsA theater_stage stage) (STV 1.0 0.9091)) +(: cnet_isa_8a6f2ef41b (IsA theater_ticket ticket) (STV 1.0 0.9091)) +(: cnet_isa_3a348a3aff (IsA theatrical_performance performance) (STV 1.0 0.9091)) +(: cnet_isa_76b72326d1 (IsA theatrical_producer producer) (STV 1.0 0.9091)) +(: cnet_isa_8242e33769 (IsA theatrical_production production) (STV 1.0 0.9091)) +(: cnet_isa_b232c1bb1d (IsA theatrical_season season) (STV 1.0 0.9091)) +(: cnet_isa_bb14ad0f15 (IsA theban egyptian) (STV 1.0 0.9091)) +(: cnet_isa_91c231eed1 (IsA theban hellene) (STV 1.0 0.9091)) +(: cnet_isa_f13cdf871a (IsA thebe botswana_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_2743e1ca8a (IsA theca sheath) (STV 1.0 0.9091)) +(: cnet_isa_114556afce (IsA theca covering) (STV 1.0 0.9091)) +(: cnet_isa_c15e5d2a01 (IsA thecodont archosaur) (STV 1.0 0.9091)) +(: cnet_isa_67c0c7dc80 (IsA thecodontia animal_order) (STV 1.0 0.9091)) +(: cnet_isa_c516e08938 (IsA theft crime) (STV 1.0 0.9608)) +(: cnet_isa_8b29bd7deb (IsA theism religion) (STV 1.0 0.9091)) +(: cnet_isa_c94f3e5754 (IsA theist believer) (STV 1.0 0.9091)) +(: cnet_isa_b0f7f0fe90 (IsA thelarche start) (STV 1.0 0.9091)) +(: cnet_isa_eaf2da22a8 (IsA thelephoraceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_280854e26c (IsA thelypteridaceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_845c8704f7 (IsA thelypteris fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_04abaa21aa (IsA thematic_apperception_test projective_test) (STV 1.0 0.9091)) +(: cnet_isa_a3cdd96590 (IsA theme idea) (STV 1.0 0.9091)) +(: cnet_isa_caeb88c771 (IsA theme tune) (STV 1.0 0.9091)) +(: cnet_isa_e25412dad6 (IsA theme_park amusement_park) (STV 1.0 0.9091)) +(: cnet_isa_5511ed59d4 (IsA theme_song tune) (STV 1.0 0.9091)) +(: cnet_isa_4f7c96cf6f (IsA then point) (STV 1.0 0.9091)) +(: cnet_isa_cb1f0747b7 (IsA thenar area) (STV 1.0 0.9091)) +(: cnet_isa_bca2c0c528 (IsA theobroma dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0dfda9d9a6 (IsA theocracy political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_25bd94e649 (IsA theocracy political_system) (STV 1.0 0.9091)) +(: cnet_isa_fc649bdf95 (IsA theodicy theology) (STV 1.0 0.9091)) +(: cnet_isa_445e4c6128 (IsA theodolite surveying_instrument) (STV 1.0 0.9091)) +(: cnet_isa_d1a0951500 (IsA theogony discipline) (STV 1.0 0.9091)) +(: cnet_isa_be58959a8b (IsA theologian scholar) (STV 1.0 0.9091)) +(: cnet_isa_afac955bcf (IsA theological_doctrine doctrine) (STV 1.0 0.9091)) +(: cnet_isa_e2f42bef51 (IsA theological_virtue cardinal_virtue) (STV 1.0 0.9091)) +(: cnet_isa_46abafb06c (IsA theology discipline) (STV 1.0 0.9091)) +(: cnet_isa_fa008273df (IsA theology learned_profession) (STV 1.0 0.9091)) +(: cnet_isa_6efe472f00 (IsA theology system) (STV 1.0 0.9091)) +(: cnet_isa_06115e8d70 (IsA theophany manifestation) (STV 1.0 0.9091)) +(: cnet_isa_5cc68cdf46 (IsA theophrastaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_21943e8e01 (IsA theorem idea) (STV 1.0 0.9091)) +(: cnet_isa_2425fade06 (IsA theorem proposition) (STV 1.0 0.9091)) +(: cnet_isa_46689a3815 (IsA theorist intellectual) (STV 1.0 0.9091)) +(: cnet_isa_c878ba3ad0 (IsA theorization conjecture) (STV 1.0 0.9091)) +(: cnet_isa_ce38d87201 (IsA theory belief) (STV 1.0 0.9091)) +(: cnet_isa_805f9d05d5 (IsA theory explanation) (STV 1.0 0.9091)) +(: cnet_isa_79d803d1f0 (IsA theory_of_dissociation scientific_theory) (STV 1.0 0.9091)) +(: cnet_isa_93da097891 (IsA theory_of_evolution scientific_theory) (STV 1.0 0.9091)) +(: cnet_isa_98b101db86 (IsA theory_of_gravitation scientific_theory) (STV 1.0 0.9091)) +(: cnet_isa_523eddc0a0 (IsA theory_of_indicator scientific_theory) (STV 1.0 0.9091)) +(: cnet_isa_34d215d8e7 (IsA theory_of_inheritance scientific_theory) (STV 1.0 0.9091)) +(: cnet_isa_f7692a6a7a (IsA theosophism belief) (STV 1.0 0.9091)) +(: cnet_isa_408610787a (IsA theosophist believer) (STV 1.0 0.9091)) +(: cnet_isa_829f14f245 (IsA theosophy system) (STV 1.0 0.9091)) +(: cnet_isa_d8467c687e (IsA theoterrorism terrorism) (STV 1.0 0.9091)) +(: cnet_isa_e3221b88be (IsA therapeutic_abortion induced_abortion) (STV 1.0 0.9091)) +(: cnet_isa_87885429e4 (IsA therapeutic_cloning cloning) (STV 1.0 0.9091)) +(: cnet_isa_532ad04f64 (IsA therapeutic_cloning somatic_cell_nuclear_transplantation) (STV 1.0 0.9091)) +(: cnet_isa_1e47202aa0 (IsA therapeutic medicine) (STV 1.0 0.9091)) +(: cnet_isa_97767dab2d (IsA theraphosidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_02c36b6cb5 (IsA therapist expert) (STV 1.0 0.9091)) +(: cnet_isa_c1a0e80f9b (IsA therapsid synapsid) (STV 1.0 0.9091)) +(: cnet_isa_ce551ade07 (IsA therapsida animal_order) (STV 1.0 0.9091)) +(: cnet_isa_31489ee3c7 (IsA therapy medical_care) (STV 1.0 0.9091)) +(: cnet_isa_ae9a8915df (IsA theravada buddhism) (STV 1.0 0.9091)) +(: cnet_isa_783f69f6d2 (IsA there location) (STV 1.0 0.9091)) +(: cnet_isa_39366e5af5 (IsA theremin electronic_instrument) (STV 1.0 0.9091)) +(: cnet_isa_18fd930113 (IsA thereness presence) (STV 1.0 0.9091)) +(: cnet_isa_43142e17ac (IsA theridiidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_df7f2ba3f0 (IsA therm work_unit) (STV 1.0 0.9091)) +(: cnet_isa_c6e64fb1c8 (IsA thermal wind) (STV 1.0 0.9091)) +(: cnet_isa_60aadca719 (IsA thermal_barrier limit) (STV 1.0 0.9091)) +(: cnet_isa_6e474f98cd (IsA thermal_equilibrium equilibrium) (STV 1.0 0.9091)) +(: cnet_isa_b40d153119 (IsA thermal_pollution pollution) (STV 1.0 0.9091)) +(: cnet_isa_54b98e159e (IsA thermal_printer printer) (STV 1.0 0.9091)) +(: cnet_isa_c27d346091 (IsA thermal_reactor nuclear_reactor) (STV 1.0 0.9091)) +(: cnet_isa_75e47e7294 (IsA thermalgesia pain) (STV 1.0 0.9091)) +(: cnet_isa_338db25d6a (IsA thermidor revolutionary_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_8143d02d60 (IsA thermion particle) (STV 1.0 0.9091)) +(: cnet_isa_96c4a1ae7f (IsA thermionic_current current) (STV 1.0 0.9091)) +(: cnet_isa_17ac438223 (IsA thermionic_emission emission) (STV 1.0 0.9091)) +(: cnet_isa_c043a0020e (IsA thermionic electronic) (STV 1.0 0.9091)) +(: cnet_isa_69f93d5b9e (IsA thermistor semiconductor_device) (STV 1.0 0.9091)) +(: cnet_isa_e91f34dc15 (IsA thermoacidophile archaebacteria) (STV 1.0 0.9091)) +(: cnet_isa_8e64872789 (IsA thermobaric_bomb bomb) (STV 1.0 0.9091)) +(: cnet_isa_0325c8069c (IsA thermobaric_bomb fuel_air_explosive) (STV 1.0 0.9091)) +(: cnet_isa_69d12ac009 (IsA thermobia arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_0dbcd79d34 (IsA thermocautery cautery) (STV 1.0 0.9091)) +(: cnet_isa_51303fb6db (IsA thermochemistry chemistry) (STV 1.0 0.9091)) +(: cnet_isa_dc5f3f15a1 (IsA thermocoagulation curdling) (STV 1.0 0.9091)) +(: cnet_isa_5a79dfeb2a (IsA thermocouple thermometer) (STV 1.0 0.9091)) +(: cnet_isa_9c9cda27dc (IsA thermodynamic physic) (STV 1.0 0.9091)) +(: cnet_isa_06df0d23b2 (IsA thermoelectric_thermometer thermometer) (STV 1.0 0.9091)) +(: cnet_isa_bddc97079c (IsA thermoelectricity electricity) (STV 1.0 0.9091)) +(: cnet_isa_644e1fba38 (IsA thermogram graph) (STV 1.0 0.9091)) +(: cnet_isa_32b84d1f05 (IsA thermograph medical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_19e7457587 (IsA thermograph thermometer) (STV 1.0 0.9091)) +(: cnet_isa_517ef677d4 (IsA thermography diagnostic_procedure) (STV 1.0 0.9091)) +(: cnet_isa_4102208379 (IsA thermogravimetry chemical_analysis) (STV 1.0 0.9091)) +(: cnet_isa_07928895fa (IsA thermogravimetry measurement) (STV 1.0 0.9091)) +(: cnet_isa_56e5857b88 (IsA thermohydrometer hydrometer) (STV 1.0 0.9091)) +(: cnet_isa_b2331e9b0b (IsA thermojunction junction) (STV 1.0 0.9091)) +(: cnet_isa_b6c353cc48 (IsA thermometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_9920e16c26 (IsA thermometry measurement) (STV 1.0 0.9091)) +(: cnet_isa_0bdfafad64 (IsA thermonuclear_reaction fusion) (STV 1.0 0.9091)) +(: cnet_isa_c9d7292d79 (IsA thermonuclear_reactor nuclear_reactor) (STV 1.0 0.9091)) +(: cnet_isa_01bbb61f77 (IsA thermopile thermometer) (STV 1.0 0.9091)) +(: cnet_isa_353d16ae82 (IsA thermoplastic plastic) (STV 1.0 0.9091)) +(: cnet_isa_e838a2c365 (IsA thermopsis rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_02d24eb85f (IsA thermoreceptor sense_organ) (STV 1.0 0.9091)) +(: cnet_isa_16f9ce5d46 (IsA thermo vacuum_flask) (STV 1.0 0.9091)) +(: cnet_isa_cb6697eeac (IsA thermosetting_composition plastic) (STV 1.0 0.9091)) +(: cnet_isa_8c2cfc0ce6 (IsA thermosphere layer) (STV 1.0 0.9091)) +(: cnet_isa_8b33e8a03d (IsA thermostat regulator) (STV 1.0 0.9091)) +(: cnet_isa_9063ddb9eb (IsA thermostatic thermodynamic) (STV 1.0 0.9091)) +(: cnet_isa_51dcf33248 (IsA thermotherapy therapy) (STV 1.0 0.9091)) +(: cnet_isa_c3cefae9d6 (IsA thermotropism tropism) (STV 1.0 0.9091)) +(: cnet_isa_cb3d4c6177 (IsA theropod saurischian) (STV 1.0 0.9091)) +(: cnet_isa_474ff412bc (IsA theropoda animal_order) (STV 1.0 0.9091)) +(: cnet_isa_008b427ca3 (IsA thesaurus wordbook) (STV 1.0 0.9091)) +(: cnet_isa_193c2439c8 (IsA thesis premise) (STV 1.0 0.9091)) +(: cnet_isa_5644ad3146 (IsA thespesia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a8933fcdfe (IsA thessalian hellene) (STV 1.0 0.9091)) +(: cnet_isa_01628bc362 (IsA thessalonian hellene) (STV 1.0 0.9091)) +(: cnet_isa_518182e70d (IsA theta letter) (STV 1.0 0.9091)) +(: cnet_isa_0973b53ba0 (IsA theta_rhythm brainwave) (STV 1.0 0.9091)) +(: cnet_isa_cb0504fe2c (IsA thetis nereid) (STV 1.0 0.9091)) +(: cnet_isa_93e8c8977b (IsA theurgy white_magic) (STV 1.0 0.9091)) +(: cnet_isa_ecaf93604f (IsA theurgy causal_agent) (STV 1.0 0.9091)) +(: cnet_isa_e6357c9f0e (IsA thevetia dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_fbe0a88b62 (IsA thiabendazole antifungal) (STV 1.0 0.9091)) +(: cnet_isa_6dd3921c70 (IsA thiabendazole vermifuge) (STV 1.0 0.9091)) +(: cnet_isa_04d342ec9a (IsA thiazide diuretic_drug) (STV 1.0 0.9091)) +(: cnet_isa_05fd1393ac (IsA thiazine organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_b7f411e4e2 (IsA thick_billed_murre murre) (STV 1.0 0.9091)) +(: cnet_isa_3e3db38341 (IsA thick_skin skin) (STV 1.0 0.9091)) +(: cnet_isa_5917f3dd62 (IsA thickening condensing) (STV 1.0 0.9091)) +(: cnet_isa_13a1a08f0e (IsA thickening material) (STV 1.0 0.9091)) +(: cnet_isa_5e7da8e4d8 (IsA thickhead old_world_flycatcher) (STV 1.0 0.9091)) +(: cnet_isa_8ffae72dc7 (IsA thickness consistency) (STV 1.0 0.9091)) +(: cnet_isa_a55a802239 (IsA thickness dimension) (STV 1.0 0.9091)) +(: cnet_isa_cd14c5edad (IsA thickness wideness) (STV 1.0 0.9091)) +(: cnet_isa_ebf192d626 (IsA thickness articulation) (STV 1.0 0.9091)) +(: cnet_isa_a493166371 (IsA thief criminal) (STV 1.0 0.9091)) +(: cnet_isa_1c1205d77f (IsA thielavia fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_34b9d462f6 (IsA thievishness dishonesty) (STV 1.0 0.9091)) +(: cnet_isa_897649c43b (IsA thigh limb) (STV 1.0 0.9091)) +(: cnet_isa_48697b0752 (IsA thigh_pad protective_garment) (STV 1.0 0.9091)) +(: cnet_isa_5b759e8db7 (IsA thill shaft) (STV 1.0 0.9091)) +(: cnet_isa_d2508c656f (IsA thimble cap) (STV 1.0 0.9091)) +(: cnet_isa_3650c424be (IsA thimble container) (STV 1.0 0.9091)) +(: cnet_isa_c5dea0ab09 (IsA thimble containerful) (STV 1.0 0.9091)) +(: cnet_isa_d5d826fe1f (IsA thimbleweed anemone) (STV 1.0 0.9091)) +(: cnet_isa_f1f302672b (IsA thin_air nothingness) (STV 1.0 0.9091)) +(: cnet_isa_b74a176723 (IsA thin_person person) (STV 1.0 0.9091)) +(: cnet_isa_b372c13b42 (IsA thin_shelled_mussel freshwater_mussel) (STV 1.0 0.9091)) +(: cnet_isa_e0179784da (IsA thing object) (STV 1.0 0.9091)) +(: cnet_isa_2ff70ce4ba (IsA thing physical_entity) (STV 1.0 0.9091)) +(: cnet_isa_59126e6aa5 (IsA thing action) (STV 1.0 0.9091)) +(: cnet_isa_26329eadda (IsA thing artifact) (STV 1.0 0.9091)) +(: cnet_isa_f2e6d750c5 (IsA thing entity) (STV 1.0 0.9091)) +(: cnet_isa_4197efc386 (IsA thing attribute) (STV 1.0 0.9091)) +(: cnet_isa_24cadbecaf (IsA thing abstraction) (STV 1.0 0.9091)) +(: cnet_isa_c5bfee71b4 (IsA thing aim) (STV 1.0 0.9091)) +(: cnet_isa_25aaf1fe33 (IsA thing statement) (STV 1.0 0.9091)) +(: cnet_isa_6f9b108e40 (IsA thing happening) (STV 1.0 0.9091)) +(: cnet_isa_d3f8e20d7b (IsA thing feeling) (STV 1.0 0.9091)) +(: cnet_isa_24e60bcb0f (IsA thing situation) (STV 1.0 0.9091)) +(: cnet_isa_f07f7a5152 (IsA thing property) (STV 1.0 0.9091)) +(: cnet_isa_27324f13a8 (IsA think deliberation) (STV 1.0 0.9091)) +(: cnet_isa_62dc4761fd (IsA think_piece article) (STV 1.0 0.9091)) +(: cnet_isa_450026b1cc (IsA think_tank company) (STV 1.0 0.9091)) +(: cnet_isa_5c2a03f1a5 (IsA thinker intellectual) (STV 1.0 0.9091)) +(: cnet_isa_f6a394f8ea (IsA thinking higher_cognitive_process) (STV 1.0 0.9091)) +(: cnet_isa_9e9078f588 (IsA thinking_cap state_of_mind) (STV 1.0 0.9091)) +(: cnet_isa_cdd240513d (IsA thinness consistency) (STV 1.0 0.9091)) +(: cnet_isa_620a080adf (IsA thinness dimension) (STV 1.0 0.9091)) +(: cnet_isa_0412fc9af2 (IsA thinning_shear shear) (STV 1.0 0.9091)) +(: cnet_isa_b3ebb392d6 (IsA thiobacillus eubacteria) (STV 1.0 0.9091)) +(: cnet_isa_a26a466571 (IsA thiobacteria thiobacillus) (STV 1.0 0.9091)) +(: cnet_isa_0eb290cd8e (IsA thiobacteriaceae bacteria_family) (STV 1.0 0.9091)) +(: cnet_isa_7a8afdfcbe (IsA thiocyanate salt) (STV 1.0 0.9091)) +(: cnet_isa_11d83902da (IsA thiocyanic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_60307aeed4 (IsA thioguanine antineoplastic) (STV 1.0 0.9091)) +(: cnet_isa_52c3b2a3ab (IsA thiotepa antineoplastic) (STV 1.0 0.9091)) +(: cnet_isa_8c98f1c2a5 (IsA thiouracil organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_b08e914b97 (IsA third interval) (STV 1.0 0.9091)) +(: cnet_isa_2ef77496b4 (IsA third rank) (STV 1.0 0.9091)) +(: cnet_isa_5db2bcccbe (IsA third_base position) (STV 1.0 0.9091)) +(: cnet_isa_105c2ec94d (IsA third_base base) (STV 1.0 0.9091)) +(: cnet_isa_35a73ac90e (IsA third_baseman infielder) (STV 1.0 0.9091)) +(: cnet_isa_c0a431349a (IsA third_class_mail mail) (STV 1.0 0.9091)) +(: cnet_isa_752bba5048 (IsA third_council_of_constantinople ecumenical_council) (STV 1.0 0.9091)) +(: cnet_isa_de5fe25fb7 (IsA third_day_of_week tuesday) (STV 1.0 0.9091)) +(: cnet_isa_e0ca39cdbc (IsA third_degree interrogation) (STV 1.0 0.9091)) +(: cnet_isa_7a32a10b54 (IsA third_degree_burn burn) (STV 1.0 0.9091)) +(: cnet_isa_d0691569df (IsA third_dimension dimension) (STV 1.0 0.9091)) +(: cnet_isa_cacd117423 (IsA third_estate estate) (STV 1.0 0.9091)) +(: cnet_isa_00a3a20303 (IsA third_eye sense_organ) (STV 1.0 0.9091)) +(: cnet_isa_201402e6c4 (IsA third_gear gear) (STV 1.0 0.9091)) +(: cnet_isa_f2f9f4faa9 (IsA third_lateran_council lateran_council) (STV 1.0 0.9091)) +(: cnet_isa_6954f799e2 (IsA third_law_of_motion newton_s_law_of_motion) (STV 1.0 0.9091)) +(: cnet_isa_121a25d86b (IsA third_law_of_thermodynamic law_of_thermodynamic) (STV 1.0 0.9091)) +(: cnet_isa_a0ff17afea (IsA third_month autumn) (STV 1.0 0.9091)) +(: cnet_isa_204af9f1c6 (IsA third_party party) (STV 1.0 0.9091)) +(: cnet_isa_f7d6089e31 (IsA third_party arbiter) (STV 1.0 0.9091)) +(: cnet_isa_51d310099c (IsA third_person person) (STV 1.0 0.9091)) +(: cnet_isa_4605ad2807 (IsA third_place_finish finish) (STV 1.0 0.9091)) +(: cnet_isa_e9a1e2f400 (IsA third_rail track) (STV 1.0 0.9091)) +(: cnet_isa_2b6679d9cb (IsA third_rater person) (STV 1.0 0.9091)) +(: cnet_isa_115c117f76 (IsA third_reich reich) (STV 1.0 0.9091)) +(: cnet_isa_dc5756d5ff (IsA third_trimester trimester) (STV 1.0 0.9091)) +(: cnet_isa_58a848b9cb (IsA third_ventricle ventricle) (STV 1.0 0.9091)) +(: cnet_isa_71851efbd9 (IsA third_world collection) (STV 1.0 0.9091)) +(: cnet_isa_0a8b2f292b (IsA thirst drive) (STV 1.0 0.9091)) +(: cnet_isa_425d3f8399 (IsA thirteen large_integer) (STV 1.0 0.9091)) +(: cnet_isa_774eb7082a (IsA thirteenth rank) (STV 1.0 0.9091)) +(: cnet_isa_d19959d5a0 (IsA thirty decade) (STV 1.0 0.9091)) +(: cnet_isa_305bc4160d (IsA thirty time_of_life) (STV 1.0 0.9091)) +(: cnet_isa_2dead919a3 (IsA thirtieth rank) (STV 1.0 0.9091)) +(: cnet_isa_50168151d3 (IsA thirty large_integer) (STV 1.0 0.9091)) +(: cnet_isa_8ee033e7c1 (IsA thirty_eight number) (STV 1.0 0.9091)) +(: cnet_isa_3e2599c425 (IsA thirty_second_note note) (STV 1.0 0.9091)) +(: cnet_isa_17d85ad376 (IsA thirty_second_part common_fraction) (STV 1.0 0.9091)) +(: cnet_isa_ad2f61763d (IsA thirty_seven number) (STV 1.0 0.9339)) +(: cnet_isa_74d1c4e603 (IsA thirty_six number) (STV 1.0 0.9091)) +(: cnet_isa_cba5a14a9d (IsA thistle weed) (STV 1.0 0.9091)) +(: cnet_isa_aaba826a98 (IsA thistledown pappus) (STV 1.0 0.9091)) +(: cnet_isa_7c3f142f9d (IsA thlaspi dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7f2d221dda (IsA tho tai) (STV 1.0 0.9091)) +(: cnet_isa_d7b66c1694 (IsA thomism theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_80a6f403d4 (IsA thomomy mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_6f49d0c685 (IsA thompson_seedless vinifera_grape) (STV 1.0 0.9091)) +(: cnet_isa_0b45663c95 (IsA thomson_s_gazelle gazelle) (STV 1.0 0.9091)) +(: cnet_isa_7832e2fff9 (IsA thong leather_strip) (STV 1.0 0.9091)) +(: cnet_isa_7cb148c10f (IsA thong underpant) (STV 1.0 0.9091)) +(: cnet_isa_f11b8540ee (IsA thoracic_actinomycosis actinomycosis) (STV 1.0 0.9091)) +(: cnet_isa_23e4d90b6a (IsA thoracic_aorta aorta) (STV 1.0 0.9091)) +(: cnet_isa_f4effd4559 (IsA thoracic_duct lymph_vessel) (STV 1.0 0.9091)) +(: cnet_isa_436ae18a75 (IsA thoracic_medicine medicine) (STV 1.0 0.9091)) +(: cnet_isa_bd5d582822 (IsA thoracic_nerve spinal_nerve) (STV 1.0 0.9091)) +(: cnet_isa_82d40a26ba (IsA thoracic_outlet_syndrome syndrome) (STV 1.0 0.9091)) +(: cnet_isa_1da2a1da1e (IsA thoracic_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_5c4ac94089 (IsA thoracic_vertebra vertebra) (STV 1.0 0.9091)) +(: cnet_isa_006d51a641 (IsA thoracocentesis centesis) (STV 1.0 0.9091)) +(: cnet_isa_27ddc7b72e (IsA thoracoepigastric_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_6740ec8e4a (IsA thoracotomy incision) (STV 1.0 0.9091)) +(: cnet_isa_0035292122 (IsA thorax body_part) (STV 1.0 0.9091)) +(: cnet_isa_a9e48109e2 (IsA thorite mineral) (STV 1.0 0.9091)) +(: cnet_isa_aee6c0e195 (IsA thorium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_c3b2e52fa5 (IsA thorium_228 thorium) (STV 1.0 0.9091)) +(: cnet_isa_afeb1b2739 (IsA thorn rune) (STV 1.0 0.9091)) +(: cnet_isa_e34f040d0e (IsA thorn_apple shrub) (STV 1.0 0.9091)) +(: cnet_isa_d756d4123c (IsA thornbill hummingbird) (STV 1.0 0.9091)) +(: cnet_isa_047cef5068 (IsA thorny_amaranth herb) (STV 1.0 0.9091)) +(: cnet_isa_2db5542abe (IsA thorny_skate skate) (STV 1.0 0.9091)) +(: cnet_isa_62246c73bf (IsA thoroughbred animal) (STV 1.0 0.9091)) +(: cnet_isa_5b1e8016da (IsA thoroughbred racehorse) (STV 1.0 0.9091)) +(: cnet_isa_398c0e7653 (IsA thoroughbred adult) (STV 1.0 0.9091)) +(: cnet_isa_f79200515c (IsA thoroughbred_race horse_race) (STV 1.0 0.9091)) +(: cnet_isa_e5d35375f5 (IsA thoroughbred_racing horse_racing) (STV 1.0 0.9091)) +(: cnet_isa_c7cc4ec75f (IsA thoroughfare road) (STV 1.0 0.9091)) +(: cnet_isa_6c8fe4b758 (IsA thoroughness conscientiousness) (STV 1.0 0.9091)) +(: cnet_isa_69a2ce0f13 (IsA thortveitite mineral) (STV 1.0 0.9091)) +(: cnet_isa_931abbac97 (IsA thought belief) (STV 1.0 0.9091)) +(: cnet_isa_4b41c33e95 (IsA thoughtfulness trait) (STV 1.0 0.9091)) +(: cnet_isa_e71160dcb0 (IsA thousand large_integer) (STV 1.0 0.9091)) +(: cnet_isa_5f049a3b53 (IsA thousand_island_dressing dressing) (STV 1.0 0.9091)) +(: cnet_isa_807eebcc18 (IsA thousandth rank) (STV 1.0 0.9091)) +(: cnet_isa_347a689437 (IsA thracian thraco_phrygian) (STV 1.0 0.9091)) +(: cnet_isa_0f3b50d5d5 (IsA thracian european) (STV 1.0 0.9091)) +(: cnet_isa_2f9edb7696 (IsA thraco_phrygian indo_european) (STV 1.0 0.9091)) +(: cnet_isa_11f5c182ac (IsA thrall bond_servant) (STV 1.0 0.9091)) +(: cnet_isa_e0fe4f9747 (IsA thrash swimming_kick) (STV 1.0 0.9091)) +(: cnet_isa_14eac01a30 (IsA thrasher oscine) (STV 1.0 0.9091)) +(: cnet_isa_6cb5d75345 (IsA thrashing defeat) (STV 1.0 0.9091)) +(: cnet_isa_61ec39cd14 (IsA thraupidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_93c80ff628 (IsA thread cord) (STV 1.0 0.9091)) +(: cnet_isa_904d9492f0 (IsA thread_blight blight) (STV 1.0 0.9091)) +(: cnet_isa_38f95a10b7 (IsA threadfin percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_c3ad41969b (IsA threadfish jack) (STV 1.0 0.9091)) +(: cnet_isa_6569d52a6e (IsA threadleaf_groundsel weed) (STV 1.0 0.9091)) +(: cnet_isa_2197ba0f13 (IsA threat declaration) (STV 1.0 0.9091)) +(: cnet_isa_19cce947c7 (IsA threat warning) (STV 1.0 0.9091)) +(: cnet_isa_6eafdca9dc (IsA three number) (STV 1.0 0.9454)) +(: cnet_isa_a8d04d2ae1 (IsA three digit) (STV 1.0 0.9091)) +(: cnet_isa_6f99dd80d4 (IsA three_centered_arch round_arch) (STV 1.0 0.9091)) +(: cnet_isa_cfeaef36e8 (IsA three_cornered_leek alliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_2fcac71357 (IsA three_d appearance) (STV 1.0 0.9091)) +(: cnet_isa_13417e58aa (IsA three_d movie) (STV 1.0 0.9091)) +(: cnet_isa_ab313c723c (IsA three_day_event equestrian_sport) (STV 1.0 0.9091)) +(: cnet_isa_78cb266581 (IsA three_decker ship) (STV 1.0 0.9091)) +(: cnet_isa_beaf69b54d (IsA three_decker warship) (STV 1.0 0.9091)) +(: cnet_isa_3bdd68e1ba (IsA three_dimensional_radar radar) (STV 1.0 0.9091)) +(: cnet_isa_4b4785f941 (IsA three_dimensionality dimensionality) (STV 1.0 0.9091)) +(: cnet_isa_509a9967d2 (IsA three_fourth common_fraction) (STV 1.0 0.9091)) +(: cnet_isa_8fd082b433 (IsA three_hitter baseball) (STV 1.0 0.9091)) +(: cnet_isa_a649deb690 (IsA three_mile_limit limit) (STV 1.0 0.9091)) +(: cnet_isa_1c8d9ad9ed (IsA three_of_cup secure_environment) (STV 1.0 0.9091)) +(: cnet_isa_5762d51ee4 (IsA three_piece_suit business_suit) (STV 1.0 0.9091)) +(: cnet_isa_96747a4810 (IsA three_point_landing aircraft_landing) (STV 1.0 0.9091)) +(: cnet_isa_5e9628365d (IsA three_point_turn turn) (STV 1.0 0.9091)) +(: cnet_isa_fcfd6f900f (IsA three_quarter_binding binding) (STV 1.0 0.9091)) +(: cnet_isa_40b81340a8 (IsA three_ring_circus circus) (STV 1.0 0.9091)) +(: cnet_isa_a6554722f2 (IsA three_seeded_mercury shrub) (STV 1.0 0.9091)) +(: cnet_isa_77c38096d5 (IsA three_spined_stickleback stickleback) (STV 1.0 0.9091)) +(: cnet_isa_3be3474f09 (IsA three_toed_sloth sloth) (STV 1.0 0.9091)) +(: cnet_isa_6826eebfdd (IsA three_way_calling conference_call) (STV 1.0 0.9091)) +(: cnet_isa_ea89321a4a (IsA three_way_switch switch) (STV 1.0 0.9091)) +(: cnet_isa_1cbaf0d6d2 (IsA three_year_old_horse racehorse) (STV 1.0 0.9091)) +(: cnet_isa_b2a0e3dce2 (IsA threepence coin) (STV 1.0 0.9091)) +(: cnet_isa_72a5e74db0 (IsA threescore set) (STV 1.0 0.9091)) +(: cnet_isa_60becbf7e8 (IsA threonine essential_amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_c726e2a6a2 (IsA thresher shark) (STV 1.0 0.9091)) +(: cnet_isa_ea7328833c (IsA thresher farm_machine) (STV 1.0 0.9091)) +(: cnet_isa_ec9a4d0864 (IsA threshing separation) (STV 1.0 0.9091)) +(: cnet_isa_f035fb3a66 (IsA threshing_floor area) (STV 1.0 0.9091)) +(: cnet_isa_71781905bf (IsA threshold sensation) (STV 1.0 0.9091)) +(: cnet_isa_78064faa13 (IsA threshold beginning) (STV 1.0 0.9091)) +(: cnet_isa_aa9333579f (IsA threshold_element logic_element) (STV 1.0 0.9091)) +(: cnet_isa_7b4c65a5e2 (IsA threshold_function mapping) (STV 1.0 0.9091)) +(: cnet_isa_84cda7c93c (IsA threshold_level intensity) (STV 1.0 0.9091)) +(: cnet_isa_7960360f23 (IsA threshold_operation operation) (STV 1.0 0.9091)) +(: cnet_isa_4f2e58a579 (IsA threskiornis bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_6d68a9f36d (IsA threskiornithidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_7bfffda39d (IsA thrift subshrub) (STV 1.0 0.9091)) +(: cnet_isa_1f0e1cf2d9 (IsA thrift_institution depository_financial_institution) (STV 1.0 0.9091)) +(: cnet_isa_fa309e4160 (IsA thriftlessness improvidence) (STV 1.0 0.9091)) +(: cnet_isa_6c99771d0c (IsA thriftshop shop) (STV 1.0 0.9091)) +(: cnet_isa_f76379983a (IsA thrill excitation) (STV 1.0 0.9091)) +(: cnet_isa_fadfab42f1 (IsA thriller adventure_story) (STV 1.0 0.9091)) +(: cnet_isa_dfc84b028a (IsA thrinax monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b10efd9eaf (IsA thripidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_b58cc0dd7b (IsA thrip thysanopter) (STV 1.0 0.9091)) +(: cnet_isa_2efc5ef3e9 (IsA throat external_body_part) (STV 1.0 0.9091)) +(: cnet_isa_bcb0c72b01 (IsA throat opening) (STV 1.0 0.9091)) +(: cnet_isa_83f3ddbb2e (IsA throat passage) (STV 1.0 0.9091)) +(: cnet_isa_b5798265bb (IsA throat tubular_cavity) (STV 1.0 0.9091)) +(: cnet_isa_9b374c7432 (IsA throat_protector protective_garment) (STV 1.0 0.9091)) +(: cnet_isa_a48a3d523a (IsA throatwort campanula) (STV 1.0 0.9091)) +(: cnet_isa_7626305b41 (IsA throb pulse) (STV 1.0 0.9091)) +(: cnet_isa_e81b4eaaab (IsA throb pain) (STV 1.0 0.9091)) +(: cnet_isa_aa4ea18e2f (IsA throbbing sound) (STV 1.0 0.9091)) +(: cnet_isa_af9d2b7cb8 (IsA throe agony) (STV 1.0 0.9091)) +(: cnet_isa_ead1e9e10b (IsA throe distress) (STV 1.0 0.9091)) +(: cnet_isa_3a397a6973 (IsA throe suffering) (STV 1.0 0.9091)) +(: cnet_isa_ab5203f468 (IsA thrombasthenia autosomal_recessive_disease) (STV 1.0 0.9091)) +(: cnet_isa_39b91a8240 (IsA thrombectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_577bd561aa (IsA thrombin coagulase) (STV 1.0 0.9091)) +(: cnet_isa_8935741949 (IsA thrombocytopenia blood_disease) (STV 1.0 0.9091)) +(: cnet_isa_3d38cb91ab (IsA thrombocytopenic_purpura autoimmune_disease) (STV 1.0 0.9091)) +(: cnet_isa_d1a6e2d67d (IsA thrombocytopenic_purpura purpura) (STV 1.0 0.9091)) +(: cnet_isa_23f869afaa (IsA thrombocytosis symptom) (STV 1.0 0.9091)) +(: cnet_isa_fa47dc2e88 (IsA thromboembolism occlusion) (STV 1.0 0.9091)) +(: cnet_isa_fd3e735151 (IsA thrombolysis lysis) (STV 1.0 0.9091)) +(: cnet_isa_784111898e (IsA thrombolytic pharmaceutical) (STV 1.0 0.9091)) +(: cnet_isa_b4cda1f481 (IsA thrombolytic_therapy therapy) (STV 1.0 0.9091)) +(: cnet_isa_76c141ebe1 (IsA thrombophlebitis phlebitis) (STV 1.0 0.9091)) +(: cnet_isa_98e5fd43c9 (IsA thromboplastin coagulation_factor) (STV 1.0 0.9091)) +(: cnet_isa_10741ab69e (IsA thrombosis occlusion) (STV 1.0 0.9091)) +(: cnet_isa_4789035693 (IsA thrombus clot) (STV 1.0 0.9091)) +(: cnet_isa_7858479134 (IsA throne position) (STV 1.0 0.9091)) +(: cnet_isa_ea27fc0ef5 (IsA throne chair_of_state) (STV 1.0 0.9091)) +(: cnet_isa_ddffaa9cb8 (IsA throstle spinning_machine) (STV 1.0 0.9091)) +(: cnet_isa_2f70fbd859 (IsA throughput output) (STV 1.0 0.9091)) +(: cnet_isa_ef8f3da6e3 (IsA throw gambling) (STV 1.0 0.9091)) +(: cnet_isa_a6d52f3335 (IsA throw propulsion) (STV 1.0 0.9091)) +(: cnet_isa_6d4dc74e41 (IsA throw bedclothe) (STV 1.0 0.9091)) +(: cnet_isa_78ecaf3d14 (IsA throw movement) (STV 1.0 0.9091)) +(: cnet_isa_f0efd0ea10 (IsA throw opportunity) (STV 1.0 0.9091)) +(: cnet_isa_2f713bac6a (IsA throw_in throw) (STV 1.0 0.9091)) +(: cnet_isa_b5e5e35d0e (IsA throw_pillow cushion) (STV 1.0 0.9091)) +(: cnet_isa_cdda5e8550 (IsA throw_weight weight) (STV 1.0 0.9091)) +(: cnet_isa_42a713ffe1 (IsA throwaway actor_s_line) (STV 1.0 0.9091)) +(: cnet_isa_6aa02f8c92 (IsA thrower person) (STV 1.0 0.9091)) +(: cnet_isa_348f1957c7 (IsA throwing_stick device) (STV 1.0 0.9091)) +(: cnet_isa_bfa10bdf96 (IsA throwster worker) (STV 1.0 0.9091)) +(: cnet_isa_6b738d26bd (IsA thrum sound) (STV 1.0 0.9091)) +(: cnet_isa_f20bdda783 (IsA thrush oscine) (STV 1.0 0.9091)) +(: cnet_isa_21716d2f55 (IsA thrush singer) (STV 1.0 0.9091)) +(: cnet_isa_147e3666f0 (IsA thrush candidiasis) (STV 1.0 0.9091)) +(: cnet_isa_848e034f6c (IsA thrush_nightingale thrush) (STV 1.0 0.9091)) +(: cnet_isa_71728f689d (IsA thrust criticism) (STV 1.0 0.9091)) +(: cnet_isa_573a56ef5e (IsA thrust_bearing bearing) (STV 1.0 0.9091)) +(: cnet_isa_5e25f9a2e6 (IsA thrust_fault inclined_fault) (STV 1.0 0.9091)) +(: cnet_isa_d0a3563870 (IsA thrust_stage theater_stage) (STV 1.0 0.9091)) +(: cnet_isa_e59ee5246d (IsA thruster rocket) (STV 1.0 0.9091)) +(: cnet_isa_d964473805 (IsA thryothorus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_8d11839aaa (IsA thuggee murder) (STV 1.0 0.9091)) +(: cnet_isa_c3f31eccc4 (IsA thuggery crime) (STV 1.0 0.9091)) +(: cnet_isa_7382fc9d5a (IsA thuja gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_157c1733da (IsA thujopsis gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_2833eb7e77 (IsA thulium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_95ecd34c58 (IsA thumb finger) (STV 1.0 0.9091)) +(: cnet_isa_4b633be00b (IsA thumb covering) (STV 1.0 0.9091)) +(: cnet_isa_b0b5ad4fc1 (IsA thumb_index notch) (STV 1.0 0.9091)) +(: cnet_isa_956fe8f11d (IsA thumbhole finger_hole) (STV 1.0 0.9091)) +(: cnet_isa_cf01e61a45 (IsA thumbhole hole) (STV 1.0 0.9091)) +(: cnet_isa_41ed68c561 (IsA thumbnail fingernail) (STV 1.0 0.9091)) +(: cnet_isa_8c75e9d678 (IsA thumbprint fingerprint) (STV 1.0 0.9091)) +(: cnet_isa_6cabf9688d (IsA thumbscrew instrument_of_torture) (STV 1.0 0.9091)) +(: cnet_isa_f062f8ef9d (IsA thumbscrew screw) (STV 1.0 0.9091)) +(: cnet_isa_74c7f89f5d (IsA thumbstall protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_ec6ec6ec34 (IsA thumbtack paper_fastener) (STV 1.0 0.9091)) +(: cnet_isa_3eeb8c8c47 (IsA thumbtack tack) (STV 1.0 0.9091)) +(: cnet_isa_22366c4f74 (IsA thump blow) (STV 1.0 0.9091)) +(: cnet_isa_1aaeb59216 (IsA thump sound) (STV 1.0 0.9091)) +(: cnet_isa_4d3dbea64b (IsA thunbergia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1f9f793116 (IsA thunder noise) (STV 1.0 0.9454)) +(: cnet_isa_030a50de37 (IsA thunder_snake colubrid_snake) (STV 1.0 0.9091)) +(: cnet_isa_f4deee88a6 (IsA thunderbird spirit) (STV 1.0 0.9091)) +(: cnet_isa_3de778e22f (IsA thunderbolt lightning) (STV 1.0 0.9091)) +(: cnet_isa_eec921ec06 (IsA thunderclap thunder) (STV 1.0 0.9091)) +(: cnet_isa_52451abf6c (IsA thunderer noisemaker) (STV 1.0 0.9091)) +(: cnet_isa_5f875b34d7 (IsA thunderhead cumulus) (STV 1.0 0.9091)) +(: cnet_isa_3053c4fe28 (IsA thundershower rainstorm) (STV 1.0 0.9091)) +(: cnet_isa_d2348c8865 (IsA thunderstorm storm) (STV 1.0 0.9339)) +(: cnet_isa_31796f4aea (IsA thunk sound) (STV 1.0 0.9091)) +(: cnet_isa_a1fd06f8b6 (IsA thunnus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_e9a3c759c6 (IsA thurifer acolyte) (STV 1.0 0.9091)) +(: cnet_isa_3c08f9ce2f (IsA thursday weekday) (STV 1.0 0.9091)) +(: cnet_isa_91fd405e7f (IsA thwack blow) (STV 1.0 0.9091)) +(: cnet_isa_9eeeb9a14c (IsA thwart crosspiece) (STV 1.0 0.9091)) +(: cnet_isa_8e929d5eac (IsA thylacine dasyurid_marsupial) (STV 1.0 0.9091)) +(: cnet_isa_e1ba49040a (IsA thylacinus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_073eeabdc2 (IsA thylogale mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_5a776a4960 (IsA thyme herb) (STV 1.0 0.9091)) +(: cnet_isa_9702686377 (IsA thyme_leaved_sandwort sandwort) (STV 1.0 0.9091)) +(: cnet_isa_b9649fd249 (IsA thyme_leaved_speedwell veronica) (STV 1.0 0.9091)) +(: cnet_isa_b5db299859 (IsA thymelaeaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_3405809f6d (IsA thymine pyrimidine) (STV 1.0 0.9091)) +(: cnet_isa_370eae4d9a (IsA thymol phenol) (STV 1.0 0.9091)) +(: cnet_isa_ab34dbfbff (IsA thymosin hormone) (STV 1.0 0.9091)) +(: cnet_isa_30d55f31e5 (IsA thymus asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_57294dae09 (IsA thymus_gland endocrine_gland) (STV 1.0 0.9091)) +(: cnet_isa_74e342bc61 (IsA thyreophora animal_order) (STV 1.0 0.9091)) +(: cnet_isa_814f506f25 (IsA thyroglobulin iodoprotein) (STV 1.0 0.9091)) +(: cnet_isa_5b12410de0 (IsA thyroid_cartilage cartilage) (STV 1.0 0.9091)) +(: cnet_isa_332d779509 (IsA thyroid_gland endocrine_gland) (STV 1.0 0.9091)) +(: cnet_isa_d4f4ffb34c (IsA thyroid_hormone hormone) (STV 1.0 0.9091)) +(: cnet_isa_b36d8b40b7 (IsA thyroid_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_addc198562 (IsA thyroidectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_d22075288d (IsA thyroiditis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_67c5f2dc2e (IsA thyronine amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_630cbd4fd8 (IsA thyroprotein iodoprotein) (STV 1.0 0.9091)) +(: cnet_isa_e6843cb11a (IsA thyrotropin hormone) (STV 1.0 0.9091)) +(: cnet_isa_e9c5c64c35 (IsA thyrotropin_releasing_hormone hormone) (STV 1.0 0.9091)) +(: cnet_isa_00b065d400 (IsA thyroxine thyroid_hormone) (STV 1.0 0.9091)) +(: cnet_isa_df7b1f563f (IsA thyrse flower_cluster) (STV 1.0 0.9091)) +(: cnet_isa_43478decae (IsA thyrsopteris tree_fern) (STV 1.0 0.9091)) +(: cnet_isa_4372679102 (IsA thysanocarpus dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1ac015ccb3 (IsA thysanopter insect) (STV 1.0 0.9091)) +(: cnet_isa_7345be0dcb (IsA thysanoptera animal_order) (STV 1.0 0.9091)) +(: cnet_isa_fec0831477 (IsA thysanura animal_order) (STV 1.0 0.9091)) +(: cnet_isa_6c8b30cc68 (IsA thysanuran_insect insect) (STV 1.0 0.9091)) +(: cnet_isa_93a0c2e4b2 (IsA ti solfa_syllable) (STV 1.0 0.9091)) +(: cnet_isa_0f77bd477d (IsA ti shrub) (STV 1.0 0.9091)) +(: cnet_isa_898ac5ab7e (IsA tiara jewelled_headdress) (STV 1.0 0.9091)) +(: cnet_isa_49f9525bb8 (IsA tiarella rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_55a3f62a3b (IsA tibetan himalayish) (STV 1.0 0.9091)) +(: cnet_isa_25d2f25bea (IsA tibetan asiatic) (STV 1.0 0.9091)) +(: cnet_isa_95425131ac (IsA tibetan_mastiff mastiff) (STV 1.0 0.9091)) +(: cnet_isa_759d95af91 (IsA tibetan_terrier terrier) (STV 1.0 0.9091)) +(: cnet_isa_e782c56aa6 (IsA tibeto_burman sino_tibetan) (STV 1.0 0.9091)) +(: cnet_isa_5965145647 (IsA tibia leg_bone) (STV 1.0 0.9091)) +(: cnet_isa_1b4f7552a4 (IsA tibial_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_8ccf8b29e8 (IsA tibialis skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_7b5fe90cf6 (IsA tibialis_anticus tibialis) (STV 1.0 0.9091)) +(: cnet_isa_d5763924b9 (IsA tibialis_posticus tibialis) (STV 1.0 0.9091)) +(: cnet_isa_e53dbeb0a1 (IsA tibicen arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_fd735e7e15 (IsA tic twitch) (STV 1.0 0.9091)) +(: cnet_isa_08d76796bc (IsA tichodroma bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_eaf3c25458 (IsA tick acarine) (STV 1.0 0.9091)) +(: cnet_isa_36daa0e643 (IsA tick mattress) (STV 1.0 0.9091)) +(: cnet_isa_b2c0d35e88 (IsA tick sound) (STV 1.0 0.9091)) +(: cnet_isa_7aa6b28822 (IsA tick_trefoil subshrub) (STV 1.0 0.9091)) +(: cnet_isa_4615c9b8ae (IsA ticker character_printer) (STV 1.0 0.9091)) +(: cnet_isa_cdb8c7ff82 (IsA ticker_tape paper) (STV 1.0 0.9091)) +(: cnet_isa_a3897ce7e1 (IsA ticket appropriateness) (STV 1.0 0.9091)) +(: cnet_isa_9686e227df (IsA ticket commercial_document) (STV 1.0 0.9091)) +(: cnet_isa_477bcb5faf (IsA ticket summon) (STV 1.0 0.9091)) +(: cnet_isa_36fe6ffc66 (IsA ticket_agent seller) (STV 1.0 0.9091)) +(: cnet_isa_8626acccfb (IsA ticket_book booklet) (STV 1.0 0.9091)) +(: cnet_isa_36d8280227 (IsA ticket_collector doorkeeper) (STV 1.0 0.9091)) +(: cnet_isa_67230ca244 (IsA ticket_holder holder) (STV 1.0 0.9091)) +(: cnet_isa_bc0f176ab4 (IsA ticket_line queue) (STV 1.0 0.9091)) +(: cnet_isa_7eac06f3aa (IsA ticket_of_leave pass) (STV 1.0 0.9091)) +(: cnet_isa_b308419793 (IsA ticket_window window) (STV 1.0 0.9091)) +(: cnet_isa_16759f47d0 (IsA ticking fabric) (STV 1.0 0.9091)) +(: cnet_isa_f1afbb8e29 (IsA tickle touch) (STV 1.0 0.9091)) +(: cnet_isa_b55d917f5b (IsA tickle cutaneous_sensation) (STV 1.0 0.9091)) +(: cnet_isa_f816359b35 (IsA tickler file) (STV 1.0 0.9091)) +(: cnet_isa_d6dadf6398 (IsA tickler_coil coil) (STV 1.0 0.9091)) +(: cnet_isa_fb3c707a6e (IsA tickseed_sunflower bur_marigold) (STV 1.0 0.9091)) +(: cnet_isa_6bb63c3445 (IsA ticktack signal) (STV 1.0 0.9091)) +(: cnet_isa_7d0fcd32c2 (IsA ticktacktoe board_game) (STV 1.0 0.9091)) +(: cnet_isa_976c01b8b5 (IsA ticktock tick) (STV 1.0 0.9091)) +(: cnet_isa_fc0757082c (IsA tidal_basin basin) (STV 1.0 0.9091)) +(: cnet_isa_f9106ca6fd (IsA tidal_bore tidal_flow) (STV 1.0 0.9091)) +(: cnet_isa_43717f2c8d (IsA tidal_flow current) (STV 1.0 0.9091)) +(: cnet_isa_ac19dd6701 (IsA tidal_river stream) (STV 1.0 0.9091)) +(: cnet_isa_0200e30031 (IsA tidal_wave calamity) (STV 1.0 0.9091)) +(: cnet_isa_b884b90ad4 (IsA tidal_wave manifestation) (STV 1.0 0.9091)) +(: cnet_isa_abd516284a (IsA tidal_wave wave) (STV 1.0 0.9091)) +(: cnet_isa_e5ad392782 (IsA tidal_zone zone) (STV 1.0 0.9091)) +(: cnet_isa_08c00ece10 (IsA tiddlywink child_s_game) (STV 1.0 0.9091)) +(: cnet_isa_6886ed4752 (IsA tide periodic_event) (STV 1.0 0.9091)) +(: cnet_isa_c7cc67ca68 (IsA tide variation) (STV 1.0 0.9091)) +(: cnet_isa_13c71b6c4d (IsA tide time_period) (STV 1.0 0.9091)) +(: cnet_isa_5dde2c2392 (IsA tideland seashore) (STV 1.0 0.9091)) +(: cnet_isa_2cbc5c0c15 (IsA tidemark indicator) (STV 1.0 0.9091)) +(: cnet_isa_e2783db38c (IsA tidewater coastal_plain) (STV 1.0 0.9091)) +(: cnet_isa_dcfa85a7e6 (IsA tideway channel) (STV 1.0 0.9091)) +(: cnet_isa_669d13e699 (IsA tidiness cleanliness) (STV 1.0 0.9091)) +(: cnet_isa_1a9154bf8f (IsA tidiness orderliness) (STV 1.0 0.9091)) +(: cnet_isa_707b417b4e (IsA tidy receptacle) (STV 1.0 0.9091)) +(: cnet_isa_97c402a400 (IsA tidytip flower) (STV 1.0 0.9091)) +(: cnet_isa_9a6d8df233 (IsA tie neckwear) (STV 1.0 0.9454)) +(: cnet_isa_07e197c1e1 (IsA tie beam) (STV 1.0 0.9091)) +(: cnet_isa_6da148357d (IsA tie brace) (STV 1.0 0.9091)) +(: cnet_isa_013bf012b0 (IsA tie cord) (STV 1.0 0.9091)) +(: cnet_isa_eb6cfba603 (IsA tie slur) (STV 1.0 0.9091)) +(: cnet_isa_897e1d139b (IsA tie equality) (STV 1.0 0.9091)) +(: cnet_isa_acd2cd169c (IsA tie_clip jewelry) (STV 1.0 0.9091)) +(: cnet_isa_5e6823a54f (IsA tie_rack rack) (STV 1.0 0.9091)) +(: cnet_isa_169f48d8eb (IsA tie_rod rod) (STV 1.0 0.9091)) +(: cnet_isa_db7c3793b1 (IsA tie_tack pin) (STV 1.0 0.9091)) +(: cnet_isa_0d4e98ce35 (IsA tiebreaker overtime) (STV 1.0 0.9091)) +(: cnet_isa_f1abbc62fa (IsA tier layer) (STV 1.0 0.9091)) +(: cnet_isa_b07eef1ddc (IsA tier rope) (STV 1.0 0.9091)) +(: cnet_isa_2e28cfc432 (IsA tier rival) (STV 1.0 0.9091)) +(: cnet_isa_f51ab7bc0e (IsA tier worker) (STV 1.0 0.9091)) +(: cnet_isa_75cc0947b0 (IsA tiercel hawk) (STV 1.0 0.9091)) +(: cnet_isa_b1be5214bd (IsA tiered_seat seating) (STV 1.0 0.9091)) +(: cnet_isa_1c32a3fdbc (IsA tietze_s_syndrome syndrome) (STV 1.0 0.9091)) +(: cnet_isa_5cf6abe079 (IsA tiffany_glass stained_glass) (STV 1.0 0.9091)) +(: cnet_isa_a155308503 (IsA tiger animal) (STV 1.0 0.9091)) +(: cnet_isa_b63a6da5fe (IsA tiger big_cat) (STV 1.0 0.9091)) +(: cnet_isa_42b67799b7 (IsA tiger person) (STV 1.0 0.9091)) +(: cnet_isa_290f218fd2 (IsA tiger_beetle beetle) (STV 1.0 0.9091)) +(: cnet_isa_9193865759 (IsA tiger_cat domestic_cat) (STV 1.0 0.9091)) +(: cnet_isa_2b192d076f (IsA tiger_cat wildcat) (STV 1.0 0.9091)) +(: cnet_isa_8804d99891 (IsA tiger_cowrie cowrie) (STV 1.0 0.9091)) +(: cnet_isa_0752950ede (IsA tiger_cub cub) (STV 1.0 0.9091)) +(: cnet_isa_26ac8dbd3c (IsA tiger_cub tiger) (STV 1.0 0.9091)) +(: cnet_isa_eefc223165 (IsA tiger_lily lily) (STV 1.0 0.9091)) +(: cnet_isa_8ad18a8e84 (IsA tiger_moth arctiid) (STV 1.0 0.9091)) +(: cnet_isa_156690d6ac (IsA tiger_rattlesnake rattlesnake) (STV 1.0 0.9091)) +(: cnet_isa_6b898fb694 (IsA tiger_salamander ambystomid) (STV 1.0 0.9091)) +(: cnet_isa_05f38bb84f (IsA tiger_shark requiem_shark) (STV 1.0 0.9091)) +(: cnet_isa_cdec401085 (IsA tiger_snake elapid) (STV 1.0 0.9091)) +(: cnet_isa_3448c2629b (IsA tigger fictional_character) (STV 1.0 0.9091)) +(: cnet_isa_522f03b77e (IsA tight_end end) (STV 1.0 0.9091)) +(: cnet_isa_9733d86c93 (IsA tight_money financial_condition) (STV 1.0 0.9091)) +(: cnet_isa_d8fa966b0b (IsA tightening alteration) (STV 1.0 0.9091)) +(: cnet_isa_27f53f9875 (IsA tightness immovability) (STV 1.0 0.9091)) +(: cnet_isa_0a98bf23aa (IsA tightrope rope) (STV 1.0 0.9091)) +(: cnet_isa_1bbbc9238d (IsA tightrope_walking sport) (STV 1.0 0.9091)) +(: cnet_isa_1ce63a96d7 (IsA tight hosiery) (STV 1.0 0.9091)) +(: cnet_isa_7d7ef1008b (IsA tiglon big_cat) (STV 1.0 0.9091)) +(: cnet_isa_5b885ab322 (IsA tigress tiger) (STV 1.0 0.9091)) +(: cnet_isa_bb4b6a3b6f (IsA tilapia fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_fe2457e801 (IsA tilde diacritical_mark) (STV 1.0 0.9091)) +(: cnet_isa_655f4f3c43 (IsA tile man) (STV 1.0 0.9091)) +(: cnet_isa_51b506aca6 (IsA tile slab) (STV 1.0 0.9091)) +(: cnet_isa_b94dfaeb2c (IsA tile roofing_material) (STV 1.0 0.9091)) +(: cnet_isa_f9d4cc7819 (IsA tile_cutter cutter) (STV 1.0 0.9091)) +(: cnet_isa_2380d2bafa (IsA tile_roof roof) (STV 1.0 0.9091)) +(: cnet_isa_fb08f25ada (IsA tilefish percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_d6213fd19a (IsA tiler worker) (STV 1.0 0.9091)) +(: cnet_isa_df412be0e5 (IsA tilia dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_fa3878ecf2 (IsA tiliaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_99313a65d2 (IsA tiling application) (STV 1.0 0.9091)) +(: cnet_isa_76d62530f2 (IsA tiliomycete class) (STV 1.0 0.9091)) +(: cnet_isa_a84b496f61 (IsA till soil) (STV 1.0 0.9091)) +(: cnet_isa_3e38e32acf (IsA tillage culture) (STV 1.0 0.9091)) +(: cnet_isa_b24337ad74 (IsA tillandsia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1e38d86b0f (IsA tiller lever) (STV 1.0 0.9091)) +(: cnet_isa_3290dc9296 (IsA tiller farmer) (STV 1.0 0.9091)) +(: cnet_isa_22a001041c (IsA tiller shoot) (STV 1.0 0.9091)) +(: cnet_isa_863fd4482c (IsA tilletia fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_bf381e2b8d (IsA tilletiaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_1b020af183 (IsA tilling cultivation) (STV 1.0 0.9091)) +(: cnet_isa_2e6a01ca5d (IsA tilt position) (STV 1.0 0.9091)) +(: cnet_isa_4ab017900d (IsA tilt partiality) (STV 1.0 0.9091)) +(: cnet_isa_0d5832565e (IsA tilt_angle angle) (STV 1.0 0.9091)) +(: cnet_isa_bbddaf7ffe (IsA tilt_top_table pedestal_table) (STV 1.0 0.9091)) +(: cnet_isa_bcaa978677 (IsA tilter device) (STV 1.0 0.9091)) +(: cnet_isa_54b3888eb8 (IsA tilter rival) (STV 1.0 0.9091)) +(: cnet_isa_4f4eafe1ff (IsA tilth condition) (STV 1.0 0.9091)) +(: cnet_isa_3d8b364aba (IsA tiltyard yard) (STV 1.0 0.9091)) +(: cnet_isa_018f7c4ce3 (IsA timalia bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_be674a80e3 (IsA timaliidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_a34cb947b4 (IsA timbale dish) (STV 1.0 0.9091)) +(: cnet_isa_5721b15d02 (IsA timbale pastry) (STV 1.0 0.9091)) +(: cnet_isa_5a87c02636 (IsA timber beam) (STV 1.0 0.9091)) +(: cnet_isa_dcf42ba913 (IsA timber post) (STV 1.0 0.9091)) +(: cnet_isa_960693c205 (IsA timber_hitch hitch) (STV 1.0 0.9091)) +(: cnet_isa_15cfb73629 (IsA timber_line line) (STV 1.0 0.9091)) +(: cnet_isa_2f5e939673 (IsA timber_rattlesnake rattlesnake) (STV 1.0 0.9091)) +(: cnet_isa_3a14456adf (IsA timber_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_5810dc7e1a (IsA timber_wolf wolf) (STV 1.0 0.9091)) +(: cnet_isa_0e96d5ba7c (IsA timberman owner) (STV 1.0 0.9091)) +(: cnet_isa_3e967b7ca9 (IsA timbre sound_property) (STV 1.0 0.9091)) +(: cnet_isa_bd5e852ad2 (IsA timbrel drum) (STV 1.0 0.9091)) +(: cnet_isa_93e5d5f5fc (IsA time abstract_concept) (STV 1.0 0.9091)) +(: cnet_isa_3a9693564c (IsA time linear_concept) (STV 1.0 0.9524)) +(: cnet_isa_85b072aff8 (IsA time man_made_concept) (STV 1.0 0.9091)) +(: cnet_isa_cb6fdd8bac (IsA time measurement) (STV 1.0 0.9339)) +(: cnet_isa_c07862bbaf (IsA time money) (STV 1.0 0.9339)) +(: cnet_isa_73ff9f7e44 (IsA time not_money) (STV 1.0 0.9339)) +(: cnet_isa_9309e289fe (IsA time one_way) (STV 1.0 0.9091)) +(: cnet_isa_f547240b6b (IsA time precious_thing) (STV 1.0 0.9091)) +(: cnet_isa_1fff0ed690 (IsA time attribute) (STV 1.0 0.9091)) +(: cnet_isa_1e7c290d93 (IsA time case) (STV 1.0 0.9091)) +(: cnet_isa_583ff4168b (IsA time experience) (STV 1.0 0.9091)) +(: cnet_isa_598795aeb2 (IsA time moment) (STV 1.0 0.9091)) +(: cnet_isa_55583ff409 (IsA time time_period) (STV 1.0 0.9091)) +(: cnet_isa_01144d7b6a (IsA time_and_half pay_rate) (STV 1.0 0.9091)) +(: cnet_isa_af4127ee86 (IsA time_and_motion_study examination) (STV 1.0 0.9091)) +(: cnet_isa_8f14133087 (IsA time_ball ball) (STV 1.0 0.9091)) +(: cnet_isa_829c66bbcc (IsA time_being present) (STV 1.0 0.9091)) +(: cnet_isa_07e254615a (IsA time_bomb bomb) (STV 1.0 0.9091)) +(: cnet_isa_be586da979 (IsA time_bomb situation) (STV 1.0 0.9091)) +(: cnet_isa_6857505d1e (IsA time_capsule container) (STV 1.0 0.9091)) +(: cnet_isa_73e1c94451 (IsA time_clock clock) (STV 1.0 0.9091)) +(: cnet_isa_9f1ba331b3 (IsA time_constant time_interval) (STV 1.0 0.9091)) +(: cnet_isa_7576a6ab95 (IsA time_constant ratio) (STV 1.0 0.9091)) +(: cnet_isa_7973762ac1 (IsA time_delay_measuring_instrument chronoscope) (STV 1.0 0.9091)) +(: cnet_isa_af53d8701d (IsA time_deposit certificate_of_deposit) (STV 1.0 0.9091)) +(: cnet_isa_79502216e9 (IsA time_deposit_account saving_account) (STV 1.0 0.9091)) +(: cnet_isa_03e0b57c51 (IsA time_draft draft) (STV 1.0 0.9091)) +(: cnet_isa_251aac2963 (IsA time_exposure exposure) (STV 1.0 0.9091)) +(: cnet_isa_27737e0c66 (IsA time_exposure picture) (STV 1.0 0.9091)) +(: cnet_isa_67e8182092 (IsA time_frame time_period) (STV 1.0 0.9091)) +(: cnet_isa_d2a999695d (IsA time_fuse fuse) (STV 1.0 0.9091)) +(: cnet_isa_30e372a05a (IsA time_immemorial past) (STV 1.0 0.9091)) +(: cnet_isa_b529d4f48d (IsA time_interval measure) (STV 1.0 0.9091)) +(: cnet_isa_639f7853da (IsA time_limit time_period) (STV 1.0 0.9091)) +(: cnet_isa_ee03c1952a (IsA time_loan loan) (STV 1.0 0.9091)) +(: cnet_isa_1bce0c3ef6 (IsA time_machine machine) (STV 1.0 0.9091)) +(: cnet_isa_4ebf5982d6 (IsA time_note note) (STV 1.0 0.9091)) +(: cnet_isa_45865d9b99 (IsA time_of_life time_period) (STV 1.0 0.9091)) +(: cnet_isa_2f0e3bc6fd (IsA time_off time_period) (STV 1.0 0.9091)) +(: cnet_isa_bae7e570cf (IsA time_out pause) (STV 1.0 0.9091)) +(: cnet_isa_0869d88ffa (IsA time_period fundamental_quantity) (STV 1.0 0.9091)) +(: cnet_isa_a935f0b0f7 (IsA time_scale duration) (STV 1.0 0.9091)) +(: cnet_isa_b257c6852d (IsA time_scale_factor scale_factor) (STV 1.0 0.9091)) +(: cnet_isa_4af7c76d5c (IsA time_sery statistic) (STV 1.0 0.9091)) +(: cnet_isa_426a322d1f (IsA time_sharing sharing) (STV 1.0 0.9091)) +(: cnet_isa_d9fbb2b9ef (IsA time_sheet written_record) (STV 1.0 0.9091)) +(: cnet_isa_9a42fc17ee (IsA time_signal signal) (STV 1.0 0.9091)) +(: cnet_isa_2aec167cf1 (IsA time_signature musical_notation) (STV 1.0 0.9091)) +(: cnet_isa_c894fcdedc (IsA time_slot time_interval) (STV 1.0 0.9091)) +(: cnet_isa_fc644f7037 (IsA time_switch switch) (STV 1.0 0.9091)) +(: cnet_isa_b50878c2f0 (IsA time_unit measure) (STV 1.0 0.9091)) +(: cnet_isa_f0666e7c4a (IsA time_zone zone) (STV 1.0 0.9091)) +(: cnet_isa_cbd0e5fe49 (IsA timecard card) (STV 1.0 0.9091)) +(: cnet_isa_15fbd7f5fb (IsA timecard written_record) (STV 1.0 0.9091)) +(: cnet_isa_f3b5e8e8b0 (IsA timekeeper clerk) (STV 1.0 0.9091)) +(: cnet_isa_0694fd6b02 (IsA timekeeper official) (STV 1.0 0.9091)) +(: cnet_isa_30b9cb181e (IsA timekeeping activity) (STV 1.0 0.9091)) +(: cnet_isa_218a3428fb (IsA timeline chronology) (STV 1.0 0.9091)) +(: cnet_isa_3f57ca4954 (IsA timepiece measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_a66b22bdd3 (IsA timer governor) (STV 1.0 0.9091)) +(: cnet_isa_ac621b3b43 (IsA timer timepiece) (STV 1.0 0.9091)) +(: cnet_isa_7345f5ddb9 (IsA time time) (STV 1.0 0.9091)) +(: cnet_isa_14b910551e (IsA timeserver opportunist) (STV 1.0 0.9091)) +(: cnet_isa_6d2e4d46a9 (IsA timetable schedule) (STV 1.0 0.9091)) +(: cnet_isa_43b9932cae (IsA timework work) (STV 1.0 0.9091)) +(: cnet_isa_dbced98961 (IsA timid people) (STV 1.0 0.9091)) +(: cnet_isa_5f68c96143 (IsA timidity fearfulness) (STV 1.0 0.9091)) +(: cnet_isa_3a6b41bec2 (IsA timidity fear) (STV 1.0 0.9091)) +(: cnet_isa_d187a3c234 (IsA timing regulation) (STV 1.0 0.9091)) +(: cnet_isa_4d95c18c9a (IsA timing temporal_arrangement) (STV 1.0 0.9091)) +(: cnet_isa_6059b803be (IsA timorese asiatic) (STV 1.0 0.9091)) +(: cnet_isa_776a07157a (IsA timothy hay) (STV 1.0 0.9091)) +(: cnet_isa_2aa2ca7034 (IsA timothy grass) (STV 1.0 0.9091)) +(: cnet_isa_6734eece8b (IsA timucu needlefish) (STV 1.0 0.9091)) +(: cnet_isa_b70c6631f7 (IsA tin metal) (STV 1.0 0.9091)) +(: cnet_isa_cb2a23fb8f (IsA tin vessel) (STV 1.0 0.9091)) +(: cnet_isa_64d0e9b58d (IsA tin metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_f3254710f0 (IsA tin_can destroyer) (STV 1.0 0.9091)) +(: cnet_isa_a21359477f (IsA tin_ear insensitivity) (STV 1.0 0.9091)) +(: cnet_isa_d2a357b6ec (IsA tin_pan_alley business_district) (STV 1.0 0.9091)) +(: cnet_isa_5ab42b2e77 (IsA tin_pest transformation) (STV 1.0 0.9091)) +(: cnet_isa_b38768d441 (IsA tin_plate sheet_metal) (STV 1.0 0.9091)) +(: cnet_isa_b3365d810b (IsA tinamidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_4e78a92c5e (IsA tinamiforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_df78fd13a7 (IsA tinamou game_bird) (STV 1.0 0.9091)) +(: cnet_isa_fb72929728 (IsA tinca fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_a4cd94a9a7 (IsA tincture medicine) (STV 1.0 0.9091)) +(: cnet_isa_c11a6105de (IsA tincture coloring_material) (STV 1.0 0.9091)) +(: cnet_isa_0bcbd604cc (IsA tincture_of_iodine antiseptic) (STV 1.0 0.9091)) +(: cnet_isa_8e02d9fb51 (IsA tincture_of_iodine tincture) (STV 1.0 0.9091)) +(: cnet_isa_a701684167 (IsA tinderbox box) (STV 1.0 0.9091)) +(: cnet_isa_f3dbf37ce4 (IsA tinderbox situation) (STV 1.0 0.9091)) +(: cnet_isa_c1d56498eb (IsA tine prong) (STV 1.0 0.9091)) +(: cnet_isa_e916f623ab (IsA tine_test tuberculin_test) (STV 1.0 0.9091)) +(: cnet_isa_4fcca16c0c (IsA tinea arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_c763e23fa9 (IsA tinea fungal_infection) (STV 1.0 0.9091)) +(: cnet_isa_42e17ca085 (IsA tinea_barbae tinea) (STV 1.0 0.9091)) +(: cnet_isa_ca536b907c (IsA tinea_capitis tinea) (STV 1.0 0.9091)) +(: cnet_isa_c2925eecd2 (IsA tinea_corporis tinea) (STV 1.0 0.9091)) +(: cnet_isa_b10b634400 (IsA tinea_cruris tinea) (STV 1.0 0.9091)) +(: cnet_isa_64b347bc5e (IsA tinea_pedis tinea) (STV 1.0 0.9091)) +(: cnet_isa_52bc3b8334 (IsA tinea_unguium tinea) (STV 1.0 0.9091)) +(: cnet_isa_aa546282f8 (IsA tineid tineoid) (STV 1.0 0.9091)) +(: cnet_isa_6fa6190011 (IsA tineidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_b249381b27 (IsA tineoid moth) (STV 1.0 0.9091)) +(: cnet_isa_a716ea0e6c (IsA tineoidea arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_c9fa757aca (IsA tineola arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_b269460689 (IsA tinfoil foil) (STV 1.0 0.9091)) +(: cnet_isa_c75d948eb9 (IsA ting sound) (STV 1.0 0.9091)) +(: cnet_isa_6c42a9e723 (IsA tingidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_8ae6bed523 (IsA tinker experimenter) (STV 1.0 0.9091)) +(: cnet_isa_30d365384c (IsA tinker itinerant) (STV 1.0 0.9091)) +(: cnet_isa_04430284cb (IsA tinkerbell fictional_character) (STV 1.0 0.9091)) +(: cnet_isa_59ccdbfdfb (IsA tinkerer unskilled_person) (STV 1.0 0.9091)) +(: cnet_isa_7400edceb2 (IsA tinning application) (STV 1.0 0.9091)) +(: cnet_isa_e38905df49 (IsA tinnitus symptom) (STV 1.0 0.9091)) +(: cnet_isa_824588ca95 (IsA tinsel decoration) (STV 1.0 0.9091)) +(: cnet_isa_e6eb0310a5 (IsA tinsel thread) (STV 1.0 0.9091)) +(: cnet_isa_2c3898b0ea (IsA tinsmith smith) (STV 1.0 0.9091)) +(: cnet_isa_fa82ce0e46 (IsA tintack tack) (STV 1.0 0.9091)) +(: cnet_isa_67fdd8be23 (IsA tinter hairdresser) (STV 1.0 0.9091)) +(: cnet_isa_0820fb240d (IsA tinting coloring) (STV 1.0 0.9091)) +(: cnet_isa_fc109ae51f (IsA tinware article_of_commerce) (STV 1.0 0.9091)) +(: cnet_isa_d893cac155 (IsA tip guidance) (STV 1.0 0.9091)) +(: cnet_isa_6a5dc12da4 (IsA tip end) (STV 1.0 0.9091)) +(: cnet_isa_d0b66d5718 (IsA tip_in basketball_shot) (STV 1.0 0.9091)) +(: cnet_isa_354c65865a (IsA tip_off jump_ball) (STV 1.0 0.9091)) +(: cnet_isa_d3c34e21a0 (IsA tip_off information) (STV 1.0 0.9091)) +(: cnet_isa_6dc4532c32 (IsA tip_sheet publication) (STV 1.0 0.9091)) +(: cnet_isa_9e514d9000 (IsA tipper donor) (STV 1.0 0.9091)) +(: cnet_isa_b669434fbd (IsA tippet cape) (STV 1.0 0.9091)) +(: cnet_isa_92c40b62b3 (IsA tippler drinker) (STV 1.0 0.9091)) +(: cnet_isa_d5e570256e (IsA tipstaff staff) (STV 1.0 0.9091)) +(: cnet_isa_aa80cce4a3 (IsA tipster adviser) (STV 1.0 0.9091)) +(: cnet_isa_35c6786017 (IsA tipsy_cake trifle) (STV 1.0 0.9091)) +(: cnet_isa_6e43284898 (IsA tiptoe tip) (STV 1.0 0.9091)) +(: cnet_isa_f841ac3a32 (IsA tiptop top) (STV 1.0 0.9091)) +(: cnet_isa_b180c6a60d (IsA tipu tree) (STV 1.0 0.9091)) +(: cnet_isa_438b02e5cf (IsA tipuana rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_71b4ae3844 (IsA tipulidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_f062c1af4f (IsA tirade declamation) (STV 1.0 0.9091)) +(: cnet_isa_453976eb6a (IsA tirade denunciation) (STV 1.0 0.9091)) +(: cnet_isa_8d4f3d82a6 (IsA tiramisu food) (STV 1.0 0.9091)) +(: cnet_isa_e021bec7d0 (IsA tiramisu dessert) (STV 1.0 0.9091)) +(: cnet_isa_d3ca3c205d (IsA tire wheel) (STV 1.0 0.9091)) +(: cnet_isa_a006a1ce3b (IsA tire hoop) (STV 1.0 0.9091)) +(: cnet_isa_faa0f53735 (IsA tire_chain chain) (STV 1.0 0.9091)) +(: cnet_isa_3a7ff2243e (IsA tire_iron hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_01d21085db (IsA tire_iron lever) (STV 1.0 0.9091)) +(: cnet_isa_dd1b98e23e (IsA tire inflatable) (STV 1.0 0.9091)) +(: cnet_isa_cc30c8ec2a (IsA tisane herb_tea) (STV 1.0 0.9091)) +(: cnet_isa_0075261b69 (IsA tishah_b_av jewish_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_6de7ce3874 (IsA tishah_b_av major_fast_day) (STV 1.0 0.9091)) +(: cnet_isa_240b1ff065 (IsA tishri jewish_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_e778b88b0a (IsA tisiphone eumenide) (STV 1.0 0.9091)) +(: cnet_isa_107adfd73e (IsA tissue body_part) (STV 1.0 0.9091)) +(: cnet_isa_3f0bb9aff6 (IsA tissue paper) (STV 1.0 0.9091)) +(: cnet_isa_0d4c9fc2b9 (IsA tissue_typing diagnostic_test) (STV 1.0 0.9091)) +(: cnet_isa_435215faf8 (IsA tit_for_tat return) (STV 1.0 0.9091)) +(: cnet_isa_f579f65500 (IsA titania fairy) (STV 1.0 0.9091)) +(: cnet_isa_b7fcd1f2d9 (IsA titanic grand_ship) (STV 1.0 0.9091)) +(: cnet_isa_58c1f4a94d (IsA titanic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_1adc42bd6c (IsA titanium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_f91a6c59a2 (IsA titanium_dioxide oxide) (STV 1.0 0.9091)) +(: cnet_isa_64cf90f849 (IsA titanium_dioxide pigment) (STV 1.0 0.9091)) +(: cnet_isa_375f90abc1 (IsA titanosaur dinosaur) (STV 1.0 0.9091)) +(: cnet_isa_38ca8913f2 (IsA titanosauridae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_a1ab2aba0c (IsA titanosaurus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_f9e916514d (IsA titer concentration) (STV 1.0 0.9091)) +(: cnet_isa_cfbdcc2b3a (IsA titfer hat) (STV 1.0 0.9091)) +(: cnet_isa_e4049e4c6c (IsA tithe levy) (STV 1.0 0.9091)) +(: cnet_isa_70304532cc (IsA tithe offering) (STV 1.0 0.9091)) +(: cnet_isa_3037754105 (IsA tithe_barn barn) (STV 1.0 0.9091)) +(: cnet_isa_29b29c6381 (IsA tither payer) (STV 1.0 0.9091)) +(: cnet_isa_47d69b28a6 (IsA titi new_world_monkey) (STV 1.0 0.9091)) +(: cnet_isa_0c463f1287 (IsA titi angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_d02444d0ec (IsA titillation arousal) (STV 1.0 0.9091)) +(: cnet_isa_e51942674e (IsA titillation exhilaration) (STV 1.0 0.9091)) +(: cnet_isa_28f3d49c03 (IsA titivation decoration) (STV 1.0 0.9091)) +(: cnet_isa_e5603f16c6 (IsA title legal_right) (STV 1.0 0.9091)) +(: cnet_isa_c487b6c610 (IsA title appellation) (STV 1.0 0.9091)) +(: cnet_isa_4887416ee8 (IsA title heading) (STV 1.0 0.9091)) +(: cnet_isa_7f4a419787 (IsA title name) (STV 1.0 0.9091)) +(: cnet_isa_1256a4af80 (IsA title subheading) (STV 1.0 0.9091)) +(: cnet_isa_78776a0e6a (IsA title writing) (STV 1.0 0.9091)) +(: cnet_isa_df63e04f15 (IsA title_bar label) (STV 1.0 0.9091)) +(: cnet_isa_9d8daf12f9 (IsA title_deed deed) (STV 1.0 0.9091)) +(: cnet_isa_18c8081b90 (IsA title_page page) (STV 1.0 0.9091)) +(: cnet_isa_ca09b26dfa (IsA title_role character) (STV 1.0 0.9091)) +(: cnet_isa_a070add8ea (IsA titmouse oscine) (STV 1.0 0.9091)) +(: cnet_isa_cec9a52723 (IsA titration volumetric_analysis) (STV 1.0 0.9091)) +(: cnet_isa_2a43039278 (IsA titrator apparatus) (STV 1.0 0.9091)) +(: cnet_isa_6a7dfd95fe (IsA titter laugh) (STV 1.0 0.9091)) +(: cnet_isa_ff3f88f2f1 (IsA titterer laugher) (STV 1.0 0.9091)) +(: cnet_isa_83b45f8664 (IsA tiyin kazakhstani_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_c446a6e496 (IsA tiyin uzbekistani_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_4be7fb3e53 (IsA tlingit na_dene) (STV 1.0 0.9091)) +(: cnet_isa_de398272ed (IsA tlingit native_american) (STV 1.0 0.9091)) +(: cnet_isa_0bdbf9ed8c (IsA tm computer_code_variable) (STV 1.0 0.9091)) +(: cnet_isa_6b1bef8b14 (IsA tnt explosive_compound) (STV 1.0 0.9091)) +(: cnet_isa_569474cdd0 (IsA toad_in_hole pastry) (STV 1.0 0.9091)) +(: cnet_isa_dded37faf8 (IsA toad_lily indian_lettuce) (STV 1.0 0.9091)) +(: cnet_isa_af780a2134 (IsA toad_rush rush) (STV 1.0 0.9091)) +(: cnet_isa_e98e6a6f3a (IsA toadfish spiny_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_de4182236a (IsA toadflax flower) (STV 1.0 0.9091)) +(: cnet_isa_24f8274bec (IsA toadstool agaric) (STV 1.0 0.9091)) +(: cnet_isa_9cc452ca6e (IsA toast bread) (STV 1.0 0.9091)) +(: cnet_isa_f883d3c846 (IsA toast celebrity) (STV 1.0 0.9091)) +(: cnet_isa_2999a196dc (IsA toast_mistress toastmaster) (STV 1.0 0.9091)) +(: cnet_isa_e7dfdd1db4 (IsA toaster machine) (STV 1.0 0.9091)) +(: cnet_isa_fbede3a785 (IsA toaster kitchen_appliance) (STV 1.0 0.9091)) +(: cnet_isa_155f90ae49 (IsA toaster supporter) (STV 1.0 0.9091)) +(: cnet_isa_caa25ad5ba (IsA toaster_oven kitchen_appliance) (STV 1.0 0.9091)) +(: cnet_isa_15f174c943 (IsA toasting cooking) (STV 1.0 0.9091)) +(: cnet_isa_dc3f5f233c (IsA toasting_fork fork) (STV 1.0 0.9091)) +(: cnet_isa_c6c90376ba (IsA toastmaster master_of_ceremony) (STV 1.0 0.9091)) +(: cnet_isa_f5dba4fcf8 (IsA toastrack rack) (STV 1.0 0.9091)) +(: cnet_isa_c2be551264 (IsA tobacco drug_of_abuse) (STV 1.0 0.9091)) +(: cnet_isa_a7abed8964 (IsA tobacco plant_product) (STV 1.0 0.9091)) +(: cnet_isa_5cb9c54608 (IsA tobacco herb) (STV 1.0 0.9091)) +(: cnet_isa_216bad3753 (IsA tobacco_hornworm caterpillar) (STV 1.0 0.9091)) +(: cnet_isa_eee54de89d (IsA tobacco_industry industry) (STV 1.0 0.9091)) +(: cnet_isa_8baff0e7cf (IsA tobacco_juice saliva) (STV 1.0 0.9091)) +(: cnet_isa_9daeafc327 (IsA tobacco_mildew downy_mildew) (STV 1.0 0.9091)) +(: cnet_isa_f829d14fe7 (IsA tobacco_mosaic mosaic) (STV 1.0 0.9091)) +(: cnet_isa_2794d0e736 (IsA tobacco_mosaic_virus plant_virus) (STV 1.0 0.9091)) +(: cnet_isa_a9ea3fdfd3 (IsA tobacco_moth pyralid) (STV 1.0 0.9091)) +(: cnet_isa_03582a81e1 (IsA tobacco_pouch pouch) (STV 1.0 0.9091)) +(: cnet_isa_4b160bc33f (IsA tobacco_shop shop) (STV 1.0 0.9091)) +(: cnet_isa_333b1c4992 (IsA tobacco_thrip thrip) (STV 1.0 0.9091)) +(: cnet_isa_b4e0a2113d (IsA tobacconist shopkeeper) (STV 1.0 0.9091)) +(: cnet_isa_e162b23219 (IsA tobagonian west_indian) (STV 1.0 0.9091)) +(: cnet_isa_014b13a1dd (IsA toboggan sled) (STV 1.0 0.9091)) +(: cnet_isa_602af92806 (IsA tobogganing sledding) (STV 1.0 0.9091)) +(: cnet_isa_610af92439 (IsA tobogganist sledder) (STV 1.0 0.9091)) +(: cnet_isa_80c1279b72 (IsA toby mug) (STV 1.0 0.9091)) +(: cnet_isa_f125fe702d (IsA toccata musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_0c7ad70f1b (IsA tocharian indo_european) (STV 1.0 0.9091)) +(: cnet_isa_8c3ac1baf5 (IsA tocsin bell) (STV 1.0 0.9091)) +(: cnet_isa_d2ce813f91 (IsA tocsin alarm) (STV 1.0 0.9091)) +(: cnet_isa_f20abc7e90 (IsA tod weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_59ae287dff (IsA toda south_dravidian) (STV 1.0 0.9091)) +(: cnet_isa_22836d8ac5 (IsA toda dravidian) (STV 1.0 0.9091)) +(: cnet_isa_6c79c41321 (IsA today day) (STV 1.0 0.9091)) +(: cnet_isa_d54d5c75dc (IsA today present) (STV 1.0 0.9091)) +(: cnet_isa_acb645aa47 (IsA toddler child) (STV 1.0 0.9091)) +(: cnet_isa_38eaf0b289 (IsA todea fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_fcf0733517 (IsA todidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_d272f3c605 (IsA todus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_d949ee59ed (IsA tody coraciiform_bird) (STV 1.0 0.9091)) +(: cnet_isa_7cc59e8aaf (IsA toe covering) (STV 1.0 0.9091)) +(: cnet_isa_9282a34147 (IsA toe body_part) (STV 1.0 0.9091)) +(: cnet_isa_1914b69836 (IsA toe digit) (STV 1.0 0.9091)) +(: cnet_isa_e77fe15101 (IsA toe extremity) (STV 1.0 0.9091)) +(: cnet_isa_58a0c0640e (IsA toe part) (STV 1.0 0.9091)) +(: cnet_isa_1506f0125c (IsA toe_box upper) (STV 1.0 0.9091)) +(: cnet_isa_cb3be52db4 (IsA toe_crack sand_crack) (STV 1.0 0.9091)) +(: cnet_isa_b3416008b9 (IsA toe_dancing dancing) (STV 1.0 0.9091)) +(: cnet_isa_8a4779820a (IsA toe_in alignment) (STV 1.0 0.9091)) +(: cnet_isa_0a1c142fa5 (IsA toea papuan_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_406f2f2091 (IsA toecap protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_99a92f2668 (IsA toehold wrestling_hold) (STV 1.0 0.9091)) +(: cnet_isa_bd477ea2e9 (IsA toehold foothold) (STV 1.0 0.9091)) +(: cnet_isa_3d03698370 (IsA toehold status) (STV 1.0 0.9091)) +(: cnet_isa_7dabe88b1e (IsA toenail nail) (STV 1.0 0.9091)) +(: cnet_isa_6669f31e4e (IsA toetoe reed) (STV 1.0 0.9091)) +(: cnet_isa_6cf07a6d23 (IsA toff man_of_mean) (STV 1.0 0.9091)) +(: cnet_isa_d24b135135 (IsA tofieldia liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7b25ad63ae (IsA toga cloak) (STV 1.0 0.9091)) +(: cnet_isa_29435e63ad (IsA toga_virilis toga) (STV 1.0 0.9091)) +(: cnet_isa_8b4cd9cc39 (IsA togaviridae arbovirus) (STV 1.0 0.9091)) +(: cnet_isa_cab38247d1 (IsA togetherness closeness) (STV 1.0 0.9091)) +(: cnet_isa_4c9b3d5dbd (IsA toggle fastener) (STV 1.0 0.9091)) +(: cnet_isa_568874a2a2 (IsA toggle instruction) (STV 1.0 0.9091)) +(: cnet_isa_7a736cae5c (IsA toggle_bolt fastener) (STV 1.0 0.9091)) +(: cnet_isa_fc3bd2a888 (IsA toggle_joint joint) (STV 1.0 0.9091)) +(: cnet_isa_93a52d01e5 (IsA toggle_switch switch) (STV 1.0 0.9091)) +(: cnet_isa_61f794cc98 (IsA togo_franc franc) (STV 1.0 0.9091)) +(: cnet_isa_beb5f9aa4b (IsA togolese african) (STV 1.0 0.9091)) +(: cnet_isa_81ed08a03d (IsA tog clothing) (STV 1.0 0.9091)) +(: cnet_isa_b4ea6f8bf3 (IsA toiler worker) (STV 1.0 0.9091)) +(: cnet_isa_eca7c8bc63 (IsA toilet dressing) (STV 1.0 0.9091)) +(: cnet_isa_9176cbab99 (IsA toilet plumbing_fixture) (STV 1.0 0.9091)) +(: cnet_isa_423dc35f10 (IsA toilet room) (STV 1.0 0.9091)) +(: cnet_isa_c5611d21f2 (IsA toilet_bag bag) (STV 1.0 0.9091)) +(: cnet_isa_d1eec140c1 (IsA toilet_bowl bowl) (STV 1.0 0.9091)) +(: cnet_isa_cd9c618302 (IsA toilet_kit kit) (STV 1.0 0.9091)) +(: cnet_isa_4c1a412389 (IsA toilet_powder powder) (STV 1.0 0.9091)) +(: cnet_isa_2fd51a2521 (IsA toilet_roll toilet_tissue) (STV 1.0 0.9091)) +(: cnet_isa_ea661cf140 (IsA toilet_seat seat) (STV 1.0 0.9091)) +(: cnet_isa_237768b614 (IsA toilet_soap soap) (STV 1.0 0.9091)) +(: cnet_isa_5549d35cc4 (IsA toilet_tissue tissue) (STV 1.0 0.9091)) +(: cnet_isa_461616a294 (IsA toilet_training training) (STV 1.0 0.9091)) +(: cnet_isa_ed2f347e22 (IsA toilet_water perfume) (STV 1.0 0.9091)) +(: cnet_isa_368cff7790 (IsA toiletry instrumentality) (STV 1.0 0.9091)) +(: cnet_isa_a01f2091a6 (IsA toilet unsanitary) (STV 1.0 0.9091)) +(: cnet_isa_f3c763172a (IsA tokamak chamber) (STV 1.0 0.9091)) +(: cnet_isa_fc47ca35d5 (IsA tokay vinifera_grape) (STV 1.0 0.9091)) +(: cnet_isa_40490d22eb (IsA tokay wine) (STV 1.0 0.9091)) +(: cnet_isa_e632d82bcf (IsA toke puff) (STV 1.0 0.9091)) +(: cnet_isa_988f51253d (IsA token symbol) (STV 1.0 0.9091)) +(: cnet_isa_8d5bcea453 (IsA token disk) (STV 1.0 0.9091)) +(: cnet_isa_bf532901ae (IsA token sign) (STV 1.0 0.9091)) +(: cnet_isa_147ad273d1 (IsA token_economy behavior_therapy) (STV 1.0 0.9091)) +(: cnet_isa_a700cb11e1 (IsA token_money money) (STV 1.0 0.9091)) +(: cnet_isa_8e22af9b69 (IsA token_payment payment) (STV 1.0 0.9091)) +(: cnet_isa_ed94e999da (IsA tolazoline vasodilator) (STV 1.0 0.9091)) +(: cnet_isa_b20322e903 (IsA tole metalware) (STV 1.0 0.9091)) +(: cnet_isa_6437996cf5 (IsA tolerance allowance) (STV 1.0 0.9091)) +(: cnet_isa_7af03c6ca5 (IsA tolerance endurance) (STV 1.0 0.9091)) +(: cnet_isa_2f67e59181 (IsA tolerance attitude) (STV 1.0 0.9091)) +(: cnet_isa_5e398ef5a5 (IsA toleration permissiveness) (STV 1.0 0.9091)) +(: cnet_isa_578475e60b (IsA toleration license) (STV 1.0 0.9091)) +(: cnet_isa_1fa3f62938 (IsA toll fee) (STV 1.0 0.9091)) +(: cnet_isa_ac9b97c1a7 (IsA toll_bridge bridge) (STV 1.0 0.9091)) +(: cnet_isa_81d2795f06 (IsA toll_call long_distance) (STV 1.0 0.9091)) +(: cnet_isa_d2ea8c02c8 (IsA toll_line telephone_line) (STV 1.0 0.9091)) +(: cnet_isa_365b030c8d (IsA toll_plaza tract) (STV 1.0 0.9091)) +(: cnet_isa_e07d94f440 (IsA tollbooth booth) (STV 1.0 0.9091)) +(: cnet_isa_6317de06f7 (IsA toller signaler) (STV 1.0 0.9091)) +(: cnet_isa_55b2472a0f (IsA tollgate gate) (STV 1.0 0.9091)) +(: cnet_isa_7981de3b99 (IsA tollkeeper employee) (STV 1.0 0.9091)) +(: cnet_isa_9ffc8e538c (IsA tolmiea rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_6bee622520 (IsA toltec nahuatl) (STV 1.0 0.9091)) +(: cnet_isa_bc089577bb (IsA tolu balsam) (STV 1.0 0.9091)) +(: cnet_isa_28f02b97c2 (IsA tolu_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_e41e0cfaa9 (IsA toluene alkylbenzene) (STV 1.0 0.9091)) +(: cnet_isa_36d8bb6a21 (IsA toluene solvent) (STV 1.0 0.9091)) +(: cnet_isa_ea76c51740 (IsA toluic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_83ff79a68f (IsA tolypeute mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_d6149402ed (IsA tom domestic_cat) (STV 1.0 0.9091)) +(: cnet_isa_b92e583b4a (IsA tom_and_jerry hot_toddy) (STV 1.0 0.9091)) +(: cnet_isa_6dc4561f6c (IsA tom_thumb small_person) (STV 1.0 0.9091)) +(: cnet_isa_cb3563d273 (IsA tomahawk weapon) (STV 1.0 0.9091)) +(: cnet_isa_06c9eb9d42 (IsA tomalley liver) (STV 1.0 0.9091)) +(: cnet_isa_b7d8e7acd9 (IsA tomatillo solanaceous_vegetable) (STV 1.0 0.9091)) +(: cnet_isa_0ec460f8d6 (IsA tomatillo ground_cherry) (STV 1.0 0.9091)) +(: cnet_isa_ca949f5749 (IsA tomato fruit_not_vegetable) (STV 1.0 0.9091)) +(: cnet_isa_a421ac0b81 (IsA tomato solanaceous_vegetable) (STV 1.0 0.9091)) +(: cnet_isa_3f8b542e72 (IsA tomato herb) (STV 1.0 0.9091)) +(: cnet_isa_953bcff4b0 (IsA tomato_blight blight) (STV 1.0 0.9091)) +(: cnet_isa_a9a2d3d6ea (IsA tomato_concentrate concentrate) (STV 1.0 0.9091)) +(: cnet_isa_cf562ea0b0 (IsA tomato_hornworm caterpillar) (STV 1.0 0.9091)) +(: cnet_isa_431a72c00c (IsA tomato_juice juice) (STV 1.0 0.9091)) +(: cnet_isa_f801451a19 (IsA tomato_paste ingredient) (STV 1.0 0.9091)) +(: cnet_isa_6c59e91d57 (IsA tomato_sauce spaghetti_sauce) (STV 1.0 0.9091)) +(: cnet_isa_8953c4971c (IsA tomato_streak yellow_spot) (STV 1.0 0.9091)) +(: cnet_isa_91d040f3ab (IsA tomatoe vegetable) (STV 1.0 0.9572)) +(: cnet_isa_1e86754250 (IsA tombac alloy) (STV 1.0 0.9091)) +(: cnet_isa_e0f1dfae29 (IsA tombola lottery) (STV 1.0 0.9091)) +(: cnet_isa_74a19af95d (IsA tomboy girl) (STV 1.0 0.9091)) +(: cnet_isa_ac3fb2eb97 (IsA tome book) (STV 1.0 0.9091)) +(: cnet_isa_34c9f55f31 (IsA tomentum capillary) (STV 1.0 0.9091)) +(: cnet_isa_aa65d128d2 (IsA tomistoma reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_eb2bccf1cd (IsA tommy_gun submachine_gun) (STV 1.0 0.9091)) +(: cnet_isa_559c3e5f50 (IsA tomograph x_ray_machine) (STV 1.0 0.9091)) +(: cnet_isa_9b03066e40 (IsA tomorrow day) (STV 1.0 0.9091)) +(: cnet_isa_ad49748a71 (IsA tomorrow future) (STV 1.0 0.9091)) +(: cnet_isa_18f420af84 (IsA tomtate grunt) (STV 1.0 0.9091)) +(: cnet_isa_ee1472bb09 (IsA tone quality) (STV 1.0 0.9091)) +(: cnet_isa_0822ec86f1 (IsA tone sound) (STV 1.0 0.9091)) +(: cnet_isa_8c1f6704d8 (IsA tone interval) (STV 1.0 0.9091)) +(: cnet_isa_f2c0a81a25 (IsA tone manner_of_speaking) (STV 1.0 0.9091)) +(: cnet_isa_ddf5eab236 (IsA tone pitch) (STV 1.0 0.9091)) +(: cnet_isa_b32634fcd1 (IsA tone_arm mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_830ea6e20f (IsA tone_deafness deafness) (STV 1.0 0.9091)) +(: cnet_isa_cf82726adf (IsA tone_language natural_language) (STV 1.0 0.9091)) +(: cnet_isa_e7b9ef3592 (IsA tone_system phonological_system) (STV 1.0 0.9091)) +(: cnet_isa_1435886ae3 (IsA toner lotion) (STV 1.0 0.9091)) +(: cnet_isa_77cb1df489 (IsA toner material) (STV 1.0 0.9091)) +(: cnet_isa_db08f96cc4 (IsA toner solution) (STV 1.0 0.9091)) +(: cnet_isa_e11a26a483 (IsA tonga bantu) (STV 1.0 0.9091)) +(: cnet_isa_36f0bef85f (IsA tongan malayo_polynesian) (STV 1.0 0.9091)) +(: cnet_isa_6709fbd7bd (IsA tongan polynesian) (STV 1.0 0.9091)) +(: cnet_isa_850eeaa90a (IsA tongan_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_ff0a4a159c (IsA tong device) (STV 1.0 0.9091)) +(: cnet_isa_2ff84a2998 (IsA tongue muscle) (STV 1.0 0.9091)) +(: cnet_isa_9664c9a6d4 (IsA tongue flap) (STV 1.0 0.9091)) +(: cnet_isa_65e05f4368 (IsA tongue articulator) (STV 1.0 0.9091)) +(: cnet_isa_e87845267f (IsA tongue organ) (STV 1.0 0.9091)) +(: cnet_isa_c4d9c88f22 (IsA tongue manner_of_speaking) (STV 1.0 0.9091)) +(: cnet_isa_75d9574e11 (IsA tongue variety_meat) (STV 1.0 0.9091)) +(: cnet_isa_77f8829f30 (IsA tongue projection) (STV 1.0 0.9091)) +(: cnet_isa_27729633d9 (IsA tongue_and_groove_joint mortise_joint) (STV 1.0 0.9091)) +(: cnet_isa_348ad96e6e (IsA tongue_depressor depressor) (STV 1.0 0.9091)) +(: cnet_isa_d314ae1695 (IsA tongue_tie birth_defect) (STV 1.0 0.9091)) +(: cnet_isa_fc34b05b94 (IsA tongue_twister saying) (STV 1.0 0.9091)) +(: cnet_isa_dd2cae2879 (IsA tongue_worm arthropod) (STV 1.0 0.9091)) +(: cnet_isa_0545f0e8b0 (IsA tonguefish flatfish) (STV 1.0 0.9091)) +(: cnet_isa_886011f08a (IsA tongueflower orchid) (STV 1.0 0.9091)) +(: cnet_isa_0f978931a7 (IsA tongueless_frog frog) (STV 1.0 0.9091)) +(: cnet_isa_22ca502802 (IsA tonic medicine) (STV 1.0 0.9091)) +(: cnet_isa_72a343b0ed (IsA tonic soft_drink) (STV 1.0 0.9091)) +(: cnet_isa_72f726f142 (IsA tonic note) (STV 1.0 0.9091)) +(: cnet_isa_d0eefa5854 (IsA tonic_accent stress) (STV 1.0 0.9091)) +(: cnet_isa_05799468c5 (IsA tonic_epilepsy epilepsy) (STV 1.0 0.9091)) +(: cnet_isa_3e97173d19 (IsA tonic_key key) (STV 1.0 0.9091)) +(: cnet_isa_313d6c551e (IsA tonic_solfa solmization) (STV 1.0 0.9091)) +(: cnet_isa_695b3c9f5a (IsA tonicity tension) (STV 1.0 0.9091)) +(: cnet_isa_b07b87e4ba (IsA tonight present) (STV 1.0 0.9091)) +(: cnet_isa_bc240d57f0 (IsA tonka_bean bean) (STV 1.0 0.9091)) +(: cnet_isa_78510ac994 (IsA tonka_bean bean_tree) (STV 1.0 0.9091)) +(: cnet_isa_85b6e9284a (IsA tonnage duty) (STV 1.0 0.9091)) +(: cnet_isa_f1742dd7a3 (IsA tonometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_83789e9447 (IsA tonometry measurement) (STV 1.0 0.9091)) +(: cnet_isa_06bb995679 (IsA ton large_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_cb4617be3b (IsA tonsil lymphatic_tissue) (STV 1.0 0.9091)) +(: cnet_isa_663914daf8 (IsA tonsillectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_e021d0aae5 (IsA tonsillitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_0e113d0af8 (IsA tonsure shave) (STV 1.0 0.9091)) +(: cnet_isa_ae12c563c8 (IsA tonsure pate) (STV 1.0 0.9091)) +(: cnet_isa_56a4ddc00c (IsA tontine annuity) (STV 1.0 0.9091)) +(: cnet_isa_9427ee78c8 (IsA tontine life_insurance) (STV 1.0 0.9091)) +(: cnet_isa_f7b8aec0ab (IsA tool object) (STV 1.0 0.9636)) +(: cnet_isa_7cfa8ffcb6 (IsA tool implement) (STV 1.0 0.9091)) +(: cnet_isa_523d24c12b (IsA tool_and_die_work trade) (STV 1.0 0.9091)) +(: cnet_isa_578c315cf6 (IsA tool_bag bag) (STV 1.0 0.9091)) +(: cnet_isa_17ddfff018 (IsA tool_steel alloy_steel) (STV 1.0 0.9091)) +(: cnet_isa_53ca15b05c (IsA toolbox chest) (STV 1.0 0.9091)) +(: cnet_isa_8c254c25b3 (IsA toolhouse shed) (STV 1.0 0.9091)) +(: cnet_isa_c643905949 (IsA toolmaker maker) (STV 1.0 0.9091)) +(: cnet_isa_f46447d5b6 (IsA toona rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_bcdd56e2ba (IsA toot sound) (STV 1.0 0.9091)) +(: cnet_isa_a95adb149c (IsA tooth mean) (STV 1.0 0.9091)) +(: cnet_isa_995933921f (IsA tooth structure) (STV 1.0 0.9091)) +(: cnet_isa_a33804f1ad (IsA tooth projection) (STV 1.0 0.9091)) +(: cnet_isa_7359a64836 (IsA tooth bone) (STV 1.0 0.9091)) +(: cnet_isa_8d78874ac3 (IsA tooth_fairy fairy) (STV 1.0 0.9091)) +(: cnet_isa_b217a15e0d (IsA tooth_fungus fungus) (STV 1.0 0.9091)) +(: cnet_isa_ee0c455f2c (IsA tooth_powder dentifrice) (STV 1.0 0.9091)) +(: cnet_isa_d3b5b01438 (IsA tooth_shell scaphopod) (STV 1.0 0.9091)) +(: cnet_isa_cfb168351f (IsA tooth_socket socket) (STV 1.0 0.9091)) +(: cnet_isa_ab88905358 (IsA toothache ache) (STV 1.0 0.9091)) +(: cnet_isa_9cd5e1bcc2 (IsA toothache_tree prickly_ash) (STV 1.0 0.9091)) +(: cnet_isa_bc43047564 (IsA toothbrush brush) (STV 1.0 0.9091)) +(: cnet_isa_e72bae7d0d (IsA toothbrush toiletry) (STV 1.0 0.9091)) +(: cnet_isa_b123bbe269 (IsA toothbrush_tree fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_76db4b757f (IsA toothed_spurge spurge) (STV 1.0 0.9091)) +(: cnet_isa_e56c39a80b (IsA toothed_whale whale) (STV 1.0 0.9091)) +(: cnet_isa_1c78aeba5b (IsA toothpaste dentifrice) (STV 1.0 0.9091)) +(: cnet_isa_ab6574c836 (IsA toothpick pick) (STV 1.0 0.9091)) +(: cnet_isa_ef4e2b16ff (IsA toothpick strip) (STV 1.0 0.9091)) +(: cnet_isa_c7d460454e (IsA tootle sound) (STV 1.0 0.9091)) +(: cnet_isa_980590204c (IsA top covering) (STV 1.0 0.9091)) +(: cnet_isa_c8f955b6d5 (IsA top platform) (STV 1.0 0.9091)) +(: cnet_isa_dd26f08b9e (IsA top plaything) (STV 1.0 0.9091)) +(: cnet_isa_2c6b664d12 (IsA top woman_s_clothing) (STV 1.0 0.9091)) +(: cnet_isa_d4c108244e (IsA top intensity) (STV 1.0 0.9091)) +(: cnet_isa_6a4acc7a79 (IsA top region) (STV 1.0 0.9091)) +(: cnet_isa_6017295692 (IsA top side) (STV 1.0 0.9091)) +(: cnet_isa_703c2f37ae (IsA top turn) (STV 1.0 0.9091)) +(: cnet_isa_d5a15b693b (IsA top_banana comedian) (STV 1.0 0.9091)) +(: cnet_isa_23dd3f0c77 (IsA top_billing ad) (STV 1.0 0.9091)) +(: cnet_isa_e81753742e (IsA top_brass administration) (STV 1.0 0.9091)) +(: cnet_isa_80abd27896 (IsA top_dressing fertilization) (STV 1.0 0.9091)) +(: cnet_isa_b37841a867 (IsA top_fermentation zymosis) (STV 1.0 0.9091)) +(: cnet_isa_4188b20e83 (IsA top_fermenting_yeast brewer_s_yeast) (STV 1.0 0.9091)) +(: cnet_isa_1735a3f02d (IsA top_lift lift) (STV 1.0 0.9091)) +(: cnet_isa_8503770696 (IsA top_of_house roof) (STV 1.0 0.9091)) +(: cnet_isa_0a31497c66 (IsA top_of_line merchandise) (STV 1.0 0.9091)) +(: cnet_isa_4e10a5c0d5 (IsA top_quark quark) (STV 1.0 0.9091)) +(: cnet_isa_6374af0a71 (IsA top_round roast) (STV 1.0 0.9091)) +(: cnet_isa_4f7ac86afb (IsA top_up indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_27b6439e5c (IsA topaz mineral) (STV 1.0 0.9091)) +(: cnet_isa_acbb54bda5 (IsA topaz quartz) (STV 1.0 0.9091)) +(: cnet_isa_18a54dec69 (IsA topaz transparent_gem) (STV 1.0 0.9091)) +(: cnet_isa_d1da787563 (IsA topgallant sail) (STV 1.0 0.9091)) +(: cnet_isa_d1e99e88fc (IsA topgallant topmast) (STV 1.0 0.9091)) +(: cnet_isa_9e63cc2de1 (IsA tophus urate) (STV 1.0 0.9091)) +(: cnet_isa_d57a0cb712 (IsA topiary art) (STV 1.0 0.9091)) +(: cnet_isa_6767ab6e51 (IsA topiary garden) (STV 1.0 0.9091)) +(: cnet_isa_dc8cc26d79 (IsA topic content) (STV 1.0 0.9091)) +(: cnet_isa_373a332f30 (IsA topic_sentence sentence) (STV 1.0 0.9091)) +(: cnet_isa_f46e727939 (IsA topical_anesthesia anesthesia) (STV 1.0 0.9091)) +(: cnet_isa_78ff7f8235 (IsA topical_prostaglandin_eyedrop eye_drop) (STV 1.0 0.9091)) +(: cnet_isa_299371b37c (IsA topicality interest) (STV 1.0 0.9091)) +(: cnet_isa_ca6f5e18ca (IsA topicalization emphasis) (STV 1.0 0.9091)) +(: cnet_isa_f0f0dd7335 (IsA topknot crest) (STV 1.0 0.9091)) +(: cnet_isa_cab54ed085 (IsA topknot headdress) (STV 1.0 0.9091)) +(: cnet_isa_0bb3acbc3e (IsA topmast mast) (STV 1.0 0.9091)) +(: cnet_isa_1855aaeec2 (IsA topminnow cypriniform_fish) (STV 1.0 0.9091)) +(: cnet_isa_2dc313d269 (IsA topognosia cutaneous_sensation) (STV 1.0 0.9091)) +(: cnet_isa_22de051d3a (IsA topographic_point point) (STV 1.0 0.9091)) +(: cnet_isa_a73bec050c (IsA topography shape) (STV 1.0 0.9091)) +(: cnet_isa_24c2490e8a (IsA topography geography) (STV 1.0 0.9091)) +(: cnet_isa_6cc4405d1f (IsA topolatry worship) (STV 1.0 0.9091)) +(: cnet_isa_627bf1dc6b (IsA topology math) (STV 1.0 0.9572)) +(: cnet_isa_cd3a8061c3 (IsA topology configuration) (STV 1.0 0.9091)) +(: cnet_isa_9a5f5c5706 (IsA topology topography) (STV 1.0 0.9091)) +(: cnet_isa_268a8b072c (IsA topology pure_mathematic) (STV 1.0 0.9091)) +(: cnet_isa_9b038d4963 (IsA toponymy lexicology) (STV 1.0 0.9091)) +(: cnet_isa_dc0c05100f (IsA toponymy terminology) (STV 1.0 0.9091)) +(: cnet_isa_3f759fd7ac (IsA topo theme) (STV 1.0 0.9091)) +(: cnet_isa_10e79aed6b (IsA topper coat) (STV 1.0 0.9091)) +(: cnet_isa_5543dac34b (IsA topper wit) (STV 1.0 0.9091)) +(: cnet_isa_d378e595f1 (IsA topper worker) (STV 1.0 0.9091)) +(: cnet_isa_682bbbceb8 (IsA topping garnish) (STV 1.0 0.9091)) +(: cnet_isa_56a3410766 (IsA topsail sail) (STV 1.0 0.9091)) +(: cnet_isa_e5819d64ad (IsA topside weather_deck) (STV 1.0 0.9091)) +(: cnet_isa_5d7e0559bc (IsA topsoil soil) (STV 1.0 0.9091)) +(: cnet_isa_363058dde7 (IsA topspin spin) (STV 1.0 0.9091)) +(: cnet_isa_a267cb1710 (IsA toque hat) (STV 1.0 0.9091)) +(: cnet_isa_a73b59ff5f (IsA tor hill) (STV 1.0 0.9091)) +(: cnet_isa_e049d45d2c (IsA tor rock) (STV 1.0 0.9091)) +(: cnet_isa_34ba8f2a25 (IsA torah scroll) (STV 1.0 0.9091)) +(: cnet_isa_c0b55cd3a1 (IsA torch light) (STV 1.0 0.9091)) +(: cnet_isa_ed58eb5c3b (IsA torch_race relay) (STV 1.0 0.9091)) +(: cnet_isa_76ea8cdbed (IsA torch_singer singer) (STV 1.0 0.9091)) +(: cnet_isa_98113fb3f2 (IsA torch_song song) (STV 1.0 0.9091)) +(: cnet_isa_6ac88effbd (IsA torchbearer leader) (STV 1.0 0.9091)) +(: cnet_isa_ac746cad44 (IsA torchlight light) (STV 1.0 0.9091)) +(: cnet_isa_bb769a1a8d (IsA torero bullfighter) (STV 1.0 0.9091)) +(: cnet_isa_6d0b39f1c2 (IsA tormenter flat) (STV 1.0 0.9091)) +(: cnet_isa_a4c6568505 (IsA tormentor oppressor) (STV 1.0 0.9091)) +(: cnet_isa_c8aea25c6a (IsA tornado powerful_force_of_nature) (STV 1.0 0.9091)) +(: cnet_isa_11687b2767 (IsA tornado weather) (STV 1.0 0.9091)) +(: cnet_isa_cd7e2736f4 (IsA tornado cyclone) (STV 1.0 0.9091)) +(: cnet_isa_3fe8411be8 (IsA tornado form_of_weather) (STV 1.0 0.9091)) +(: cnet_isa_0dbb641f86 (IsA toroid solid) (STV 1.0 0.9091)) +(: cnet_isa_6a16ff7e22 (IsA toronto city) (STV 1.0 0.9091)) +(: cnet_isa_c74ed4b471 (IsA toronto in_canada) (STV 1.0 0.9524)) +(: cnet_isa_5cc91545c5 (IsA torpedinidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_2dba9bd8cf (IsA torpediniforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_9fc51f43c4 (IsA torpedo alarm) (STV 1.0 0.9091)) +(: cnet_isa_32e39a0d70 (IsA torpedo armament) (STV 1.0 0.9091)) +(: cnet_isa_4794f98b76 (IsA torpedo explosive_device) (STV 1.0 0.9091)) +(: cnet_isa_68b8e73c5c (IsA torpedo firework) (STV 1.0 0.9091)) +(: cnet_isa_ff3a23c02e (IsA torpedo_boat warship) (STV 1.0 0.9091)) +(: cnet_isa_0c40633c2b (IsA torpedo_boat_destroyer destroyer) (STV 1.0 0.9091)) +(: cnet_isa_24614dc046 (IsA torpedo_tube tube) (STV 1.0 0.9091)) +(: cnet_isa_95625e545f (IsA torpor physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_37e8afd325 (IsA torque_converter converter) (STV 1.0 0.9091)) +(: cnet_isa_90ef5aaf7b (IsA torque_wrench wrench) (STV 1.0 0.9091)) +(: cnet_isa_6ad8836549 (IsA torr pressure_unit) (STV 1.0 0.9091)) +(: cnet_isa_4027ed7ccd (IsA torrent current) (STV 1.0 0.9091)) +(: cnet_isa_94a4fef6b8 (IsA torrey_pine pine) (STV 1.0 0.9091)) +(: cnet_isa_da6660e6e3 (IsA torreya gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_60e5450c8f (IsA torridity hotness) (STV 1.0 0.9091)) +(: cnet_isa_ac1ac3952b (IsA torsion force) (STV 1.0 0.9091)) +(: cnet_isa_e98facddbf (IsA torsion_balance measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_f6a7e3e1f3 (IsA torso body_part) (STV 1.0 0.9091)) +(: cnet_isa_47f060bbad (IsA tort wrongdoing) (STV 1.0 0.9091)) +(: cnet_isa_387005ab4a (IsA tort_feasor party) (STV 1.0 0.9091)) +(: cnet_isa_4ba641ecee (IsA torte cake) (STV 1.0 0.9091)) +(: cnet_isa_d0ab4cd53e (IsA tortellini pasta) (STV 1.0 0.9091)) +(: cnet_isa_39645de244 (IsA torticollis abnormality) (STV 1.0 0.9091)) +(: cnet_isa_2c8edfa468 (IsA tortilla pancake) (STV 1.0 0.9091)) +(: cnet_isa_4228344318 (IsA tortilla_chip corn_chip) (STV 1.0 0.9091)) +(: cnet_isa_9ebf8426fd (IsA tortoise turtle) (STV 1.0 0.9091)) +(: cnet_isa_1e4a0df53f (IsA tortoiseshell domestic_cat) (STV 1.0 0.9091)) +(: cnet_isa_fda3e147da (IsA tortoiseshell nymphalid) (STV 1.0 0.9091)) +(: cnet_isa_3ca80669f3 (IsA tortoiseshell horn) (STV 1.0 0.9091)) +(: cnet_isa_abeeac3537 (IsA tortricid moth) (STV 1.0 0.9091)) +(: cnet_isa_9d66298ab6 (IsA tortricidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_c78cbf9800 (IsA tortuosity distorted_shape) (STV 1.0 0.9091)) +(: cnet_isa_aef40b61c6 (IsA torture persecution) (STV 1.0 0.9091)) +(: cnet_isa_b474d59a8e (IsA torture pain) (STV 1.0 0.9091)) +(: cnet_isa_055ebde088 (IsA torture_chamber room) (STV 1.0 0.9091)) +(: cnet_isa_422aaf270b (IsA torturer oppressor) (STV 1.0 0.9091)) +(: cnet_isa_ce31a3ed7f (IsA torus molding) (STV 1.0 0.9091)) +(: cnet_isa_d6766b9ed4 (IsA torus round_shape) (STV 1.0 0.9091)) +(: cnet_isa_0b32e96e38 (IsA tory american) (STV 1.0 0.9091)) +(: cnet_isa_27261f708a (IsA tory englishman) (STV 1.0 0.9091)) +(: cnet_isa_bb0bd5a1a6 (IsA tory rightist) (STV 1.0 0.9091)) +(: cnet_isa_c5125da1ba (IsA tosk albanian) (STV 1.0 0.9091)) +(: cnet_isa_47d7db2c84 (IsA toss motion) (STV 1.0 0.9091)) +(: cnet_isa_36d63d255c (IsA tossed_salad salad) (STV 1.0 0.9091)) +(: cnet_isa_6e0d216ddb (IsA tosser masturbator) (STV 1.0 0.9091)) +(: cnet_isa_6fc7134fbc (IsA tosser thrower) (STV 1.0 0.9091)) +(: cnet_isa_325270fafe (IsA tossup luck) (STV 1.0 0.9091)) +(: cnet_isa_d041bbdaa2 (IsA tostada dish) (STV 1.0 0.9091)) +(: cnet_isa_e0ea1d2ad5 (IsA tostada tortilla) (STV 1.0 0.9091)) +(: cnet_isa_4d4cf04505 (IsA tot small_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_9c66fec175 (IsA total_darkness dark) (STV 1.0 0.9091)) +(: cnet_isa_56a4b92af6 (IsA total_depravity theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_178976918c (IsA total_eclipse eclipse) (STV 1.0 0.9091)) +(: cnet_isa_b04db7e93d (IsA total_hysterectomy hysterectomy) (STV 1.0 0.9091)) +(: cnet_isa_bcf09b0c18 (IsA total_parenteral_nutrition feeding) (STV 1.0 0.9091)) +(: cnet_isa_c47345f56b (IsA totalitarian disciple) (STV 1.0 0.9091)) +(: cnet_isa_7c3290cfaa (IsA totalitation_regime government) (STV 1.0 0.9091)) +(: cnet_isa_a0a0dce57c (IsA totality generality) (STV 1.0 0.9091)) +(: cnet_isa_c55dfa9a68 (IsA totara conifer) (STV 1.0 0.9091)) +(: cnet_isa_33b95b27af (IsA totem emblem) (STV 1.0 0.9091)) +(: cnet_isa_272d7b626a (IsA totem kin) (STV 1.0 0.9091)) +(: cnet_isa_d4df1bbf69 (IsA totem_pole column) (STV 1.0 0.9091)) +(: cnet_isa_c504afee14 (IsA totem_pole emblem) (STV 1.0 0.9091)) +(: cnet_isa_866678c355 (IsA totemism belief) (STV 1.0 0.9091)) +(: cnet_isa_1df0d58c8e (IsA totemist person) (STV 1.0 0.9091)) +(: cnet_isa_9a6077238e (IsA totipotency ability) (STV 1.0 0.9091)) +(: cnet_isa_d1c3b46646 (IsA toucan bird) (STV 1.0 0.9339)) +(: cnet_isa_80dc69195d (IsA toucan piciform_bird) (STV 1.0 0.9091)) +(: cnet_isa_964aed504b (IsA toucanet toucan) (STV 1.0 0.9091)) +(: cnet_isa_d54973acfc (IsA touch act) (STV 1.0 0.9091)) +(: cnet_isa_aa60210940 (IsA touch manner) (STV 1.0 0.9091)) +(: cnet_isa_17e85dc897 (IsA touch tactile_property) (STV 1.0 0.9091)) +(: cnet_isa_60af5e6aea (IsA touch adeptness) (STV 1.0 0.9091)) +(: cnet_isa_ef9fc06da8 (IsA touch exteroception) (STV 1.0 0.9091)) +(: cnet_isa_5259e526cf (IsA touch perception) (STV 1.0 0.9091)) +(: cnet_isa_f94988f307 (IsA touch somatosense) (STV 1.0 0.9091)) +(: cnet_isa_115df1fbd6 (IsA touch solicitation) (STV 1.0 0.9091)) +(: cnet_isa_51276a8235 (IsA touch suggestion) (STV 1.0 0.9091)) +(: cnet_isa_750baa0453 (IsA touch contact) (STV 1.0 0.9091)) +(: cnet_isa_ec9ca18f55 (IsA touch small_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_875ed48651 (IsA touch attack) (STV 1.0 0.9091)) +(: cnet_isa_4559b8d7c8 (IsA touch_football american_football) (STV 1.0 0.9091)) +(: cnet_isa_3bbda344c9 (IsA touch_screen computer_screen) (STV 1.0 0.9091)) +(: cnet_isa_f203eb6bc6 (IsA touch_typing typing) (STV 1.0 0.9091)) +(: cnet_isa_26635d4ca1 (IsA touch_typist typist) (STV 1.0 0.9091)) +(: cnet_isa_c9005fdca7 (IsA touchback football_play) (STV 1.0 0.9091)) +(: cnet_isa_6981f15aa3 (IsA touchdown landing) (STV 1.0 0.9091)) +(: cnet_isa_01c6083ee6 (IsA touchdown score) (STV 1.0 0.9091)) +(: cnet_isa_bb5a15c80d (IsA toucher person) (STV 1.0 0.9091)) +(: cnet_isa_56c1820e79 (IsA touchline sideline) (STV 1.0 0.9091)) +(: cnet_isa_a9fd0d0db8 (IsA tough_guy bully) (STV 1.0 0.9091)) +(: cnet_isa_ceb26adaa3 (IsA toupee hairpiece) (STV 1.0 0.9091)) +(: cnet_isa_be3d8ef3e7 (IsA tour journey) (STV 1.0 0.9091)) +(: cnet_isa_19e8260d63 (IsA tour_de_force deed) (STV 1.0 0.9091)) +(: cnet_isa_00a88d2ee2 (IsA tour_de_france bicycle_race) (STV 1.0 0.9091)) +(: cnet_isa_7110a085bf (IsA tour_guide guide) (STV 1.0 0.9091)) +(: cnet_isa_6b070d4d6c (IsA touraco cuculiform_bird) (STV 1.0 0.9091)) +(: cnet_isa_1d1bf76e05 (IsA tourette_s_syndrome syndrome) (STV 1.0 0.9091)) +(: cnet_isa_fe23fb7f8b (IsA touring_car car) (STV 1.0 0.9091)) +(: cnet_isa_3590994786 (IsA tourism commercial_enterprise) (STV 1.0 0.9091)) +(: cnet_isa_5400e5981c (IsA tourist traveler) (STV 1.0 0.9091)) +(: cnet_isa_1c951a4cb6 (IsA tourist_attraction attraction) (STV 1.0 0.9091)) +(: cnet_isa_509872b770 (IsA tourist_class accommodation) (STV 1.0 0.9091)) +(: cnet_isa_4d8b44bd72 (IsA tourmaline mineral) (STV 1.0 0.9091)) +(: cnet_isa_714af0d6e1 (IsA tourmaline transparent_gem) (STV 1.0 0.9091)) +(: cnet_isa_17326edcdd (IsA tournament contest) (STV 1.0 0.9091)) +(: cnet_isa_8447d585db (IsA tournedo fillet) (STV 1.0 0.9091)) +(: cnet_isa_8f791105ee (IsA tourqouise stone) (STV 1.0 0.9091)) +(: cnet_isa_484a794016 (IsA tourtiere meat_pie) (STV 1.0 0.9091)) +(: cnet_isa_06e461ac78 (IsA tout advertiser) (STV 1.0 0.9091)) +(: cnet_isa_1f72beb2d4 (IsA tout scalper) (STV 1.0 0.9091)) +(: cnet_isa_f4eab5889d (IsA tout_ensemble impression) (STV 1.0 0.9091)) +(: cnet_isa_ff4206cf40 (IsA tovarich companion) (STV 1.0 0.9091)) +(: cnet_isa_b6483d311c (IsA tow draw) (STV 1.0 0.9091)) +(: cnet_isa_70321ef72d (IsA tow_truck truck) (STV 1.0 0.9091)) +(: cnet_isa_a609cf3c9c (IsA towel piece_of_cloth) (STV 1.0 0.9091)) +(: cnet_isa_e17fd48efa (IsA towel_rack rack) (STV 1.0 0.9091)) +(: cnet_isa_7453985859 (IsA towel_rail bar) (STV 1.0 0.9091)) +(: cnet_isa_59b127ccfc (IsA towel_ring hoop) (STV 1.0 0.9091)) +(: cnet_isa_87d6f3c768 (IsA toweling fabric) (STV 1.0 0.9091)) +(: cnet_isa_a1d64826e0 (IsA tower tall_structure_with_stair) (STV 1.0 0.9091)) +(: cnet_isa_038e5fedb2 (IsA tower structure) (STV 1.0 0.9091)) +(: cnet_isa_d9fc56482e (IsA tower_cress rock_cress) (STV 1.0 0.9091)) +(: cnet_isa_e76e8ccebb (IsA tower_mustard cress) (STV 1.0 0.9091)) +(: cnet_isa_bda3c036ee (IsA tower_of_strength patron) (STV 1.0 0.9091)) +(: cnet_isa_b208b32d28 (IsA towhead blond) (STV 1.0 0.9091)) +(: cnet_isa_00256bd82e (IsA towhee finch) (STV 1.0 0.9091)) +(: cnet_isa_16a0b8c7b2 (IsA towline line) (STV 1.0 0.9091)) +(: cnet_isa_4003929eee (IsA town community) (STV 1.0 0.9091)) +(: cnet_isa_dbca74f1bb (IsA town municipality) (STV 1.0 0.9091)) +(: cnet_isa_90e8c8259d (IsA town_clerk official) (STV 1.0 0.9091)) +(: cnet_isa_638cf33bd0 (IsA town_crier announcer) (STV 1.0 0.9091)) +(: cnet_isa_18d6dbf1c8 (IsA town_gas coal_gas) (STV 1.0 0.9091)) +(: cnet_isa_a0b2836c5b (IsA town_hall government_building) (STV 1.0 0.9091)) +(: cnet_isa_09fca4a828 (IsA town_meeting local_government) (STV 1.0 0.9091)) +(: cnet_isa_2197168be8 (IsA town_meeting meeting) (STV 1.0 0.9091)) +(: cnet_isa_44dffbd69d (IsA townee townsman) (STV 1.0 0.9091)) +(: cnet_isa_efcb21a0a6 (IsA townie townsman) (STV 1.0 0.9091)) +(: cnet_isa_68dd3a3624 (IsA townsendia asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b43f40760f (IsA township administrative_district) (STV 1.0 0.9091)) +(: cnet_isa_51c4bd130f (IsA townsman peer) (STV 1.0 0.9091)) +(: cnet_isa_dd415ea5dd (IsA townsman resident) (STV 1.0 0.9091)) +(: cnet_isa_5b36c1935f (IsA towpath path) (STV 1.0 0.9091)) +(: cnet_isa_4083273a38 (IsA toxemia blood_poisoning) (STV 1.0 0.9091)) +(: cnet_isa_5349d81ab7 (IsA toxemia_of_pregnancy illness) (STV 1.0 0.9091)) +(: cnet_isa_9a68ad5263 (IsA toxic_shock syndrome) (STV 1.0 0.9091)) +(: cnet_isa_0b1df0e95a (IsA toxic_site site) (STV 1.0 0.9091)) +(: cnet_isa_8dc7d71947 (IsA toxic_waste waste) (STV 1.0 0.9091)) +(: cnet_isa_8d6ca77805 (IsA toxic_waste_dump dump) (STV 1.0 0.9091)) +(: cnet_isa_104ee14711 (IsA toxicity definite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_25ee3f4820 (IsA toxicodendron dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_48990703ac (IsA toxicognath fang) (STV 1.0 0.9091)) +(: cnet_isa_62da886e43 (IsA toxicologist medical_scientist) (STV 1.0 0.9091)) +(: cnet_isa_d34372f783 (IsA toxicology pharmacology) (STV 1.0 0.9091)) +(: cnet_isa_204fdb4d30 (IsA toxin poison) (STV 1.0 0.9091)) +(: cnet_isa_8cc29dd72c (IsA toxin_antitoxin immunogen) (STV 1.0 0.9091)) +(: cnet_isa_f693fa199b (IsA toxoplasmosis infection) (STV 1.0 0.9091)) +(: cnet_isa_3d17e88474 (IsA toxostoma bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_ee483796ff (IsA toxote fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_ee860b2c0b (IsA toxotidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_51c1db692d (IsA toy device) (STV 1.0 0.9091)) +(: cnet_isa_358149969b (IsA toy replica) (STV 1.0 0.9091)) +(: cnet_isa_6749d793a4 (IsA toy_box chest) (STV 1.0 0.9091)) +(: cnet_isa_e046db1e49 (IsA toy_dog dog) (STV 1.0 0.9091)) +(: cnet_isa_b0fca7c21a (IsA toy_industry industry) (STV 1.0 0.9091)) +(: cnet_isa_657b65d1ff (IsA toy_manchester manchester_terrier) (STV 1.0 0.9091)) +(: cnet_isa_747657c8de (IsA toy_poodle poodle) (STV 1.0 0.9091)) +(: cnet_isa_3a57a658a8 (IsA toy_soldier doll) (STV 1.0 0.9091)) +(: cnet_isa_316a03a017 (IsA toy_spaniel toy_dog) (STV 1.0 0.9091)) +(: cnet_isa_45cebee2df (IsA toy_terrier toy_dog) (STV 1.0 0.9091)) +(: cnet_isa_6f62b9cd65 (IsA toyon shrub) (STV 1.0 0.9091)) +(: cnet_isa_43bb183dd0 (IsA toyota company) (STV 1.0 0.9572)) +(: cnet_isa_de91d0a63c (IsA toyota car) (STV 1.0 0.9091)) +(: cnet_isa_41dbd16d72 (IsA toyshop shop) (STV 1.0 0.9091)) +(: cnet_isa_879d267a03 (IsA tra_la refrain) (STV 1.0 0.9091)) +(: cnet_isa_06d7614b77 (IsA trabecula fibrous_tissue) (STV 1.0 0.9091)) +(: cnet_isa_7c2e45f959 (IsA trace line) (STV 1.0 0.9091)) +(: cnet_isa_0bb5d4a89c (IsA trace indication) (STV 1.0 0.9091)) +(: cnet_isa_6d53470591 (IsA trace mark) (STV 1.0 0.9091)) +(: cnet_isa_bf21655381 (IsA trace small_indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_9ee3a04fa1 (IsA trace_detector detector) (STV 1.0 0.9091)) +(: cnet_isa_43ee4c63af (IsA trace_element chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_1f94acbd4e (IsA trace_program utility_program) (STV 1.0 0.9091)) +(: cnet_isa_39d48c81bb (IsA tracer ammunition) (STV 1.0 0.9091)) +(: cnet_isa_e138c4b71d (IsA tracer instrument) (STV 1.0 0.9091)) +(: cnet_isa_829efdd6d8 (IsA tracer detective) (STV 1.0 0.9091)) +(: cnet_isa_4982d5eb9a (IsA tracer radioisotope) (STV 1.0 0.9091)) +(: cnet_isa_04fa5edd65 (IsA tracery decoration) (STV 1.0 0.9091)) +(: cnet_isa_64f61fae8c (IsA trachea cartilaginous_tube) (STV 1.0 0.9091)) +(: cnet_isa_b0bbbcf333 (IsA trachea tubule) (STV 1.0 0.9091)) +(: cnet_isa_24d45f31f5 (IsA tracheal_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_6d338cddc6 (IsA tracheid vascular_tissue) (STV 1.0 0.9091)) +(: cnet_isa_995903dad1 (IsA tracheitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_5cd4b7f31a (IsA trachelospermum dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f6052d5ff7 (IsA tracheobronchitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_1560de87da (IsA tracheophyta division) (STV 1.0 0.9091)) +(: cnet_isa_84c91cd686 (IsA tracheostomy operation) (STV 1.0 0.9091)) +(: cnet_isa_b5ef846634 (IsA trachinotus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_2ed64a8517 (IsA trachipteridae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_2c49ec7fc4 (IsA trachipterus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_c36ecc5b6d (IsA trachodon hadrosaur) (STV 1.0 0.9091)) +(: cnet_isa_b37d7cff32 (IsA trachoma eye_disease) (STV 1.0 0.9091)) +(: cnet_isa_d0c8064de8 (IsA trachurus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_21f8db22e8 (IsA tracing discovery) (STV 1.0 0.9091)) +(: cnet_isa_a90391ec9b (IsA tracing drawing) (STV 1.0 0.9091)) +(: cnet_isa_2d2274d164 (IsA tracing_paper paper) (STV 1.0 0.9091)) +(: cnet_isa_bbd99b055e (IsA tracing_routine routine) (STV 1.0 0.9091)) +(: cnet_isa_8e376ebc45 (IsA track defined_path) (STV 1.0 0.9339)) +(: cnet_isa_48ee440738 (IsA track track_and_field) (STV 1.0 0.9091)) +(: cnet_isa_34b2c7a340 (IsA track artifact) (STV 1.0 0.9091)) +(: cnet_isa_5f55ef3498 (IsA track bar) (STV 1.0 0.9091)) +(: cnet_isa_3b25320e39 (IsA track belt) (STV 1.0 0.9091)) +(: cnet_isa_8cebc3e2c8 (IsA track groove) (STV 1.0 0.9091)) +(: cnet_isa_bb58883766 (IsA track road) (STV 1.0 0.9091)) +(: cnet_isa_0b36cae1e9 (IsA track path) (STV 1.0 0.9091)) +(: cnet_isa_fa9f7b6c39 (IsA track_and_field sport) (STV 1.0 0.9091)) +(: cnet_isa_46a5766041 (IsA track_event footrace) (STV 1.0 0.9091)) +(: cnet_isa_353df48a7f (IsA track_meet meet) (STV 1.0 0.9091)) +(: cnet_isa_8fe954069a (IsA track_record record) (STV 1.0 0.9091)) +(: cnet_isa_fc6c05cc94 (IsA track_star ace) (STV 1.0 0.9091)) +(: cnet_isa_0fbae51b7c (IsA track_to_track_seek_time seek_time) (STV 1.0 0.9091)) +(: cnet_isa_d49e856f6c (IsA trackball electronic_device) (STV 1.0 0.9091)) +(: cnet_isa_f0be0ba231 (IsA tracked_vehicle self_propelled_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_7af755d0e4 (IsA tracker hunter) (STV 1.0 0.9091)) +(: cnet_isa_39d49daed7 (IsA tract system) (STV 1.0 0.9091)) +(: cnet_isa_6912dd8ee7 (IsA tract treatise) (STV 1.0 0.9091)) +(: cnet_isa_47cda5bfb9 (IsA tract geographical_area) (STV 1.0 0.9091)) +(: cnet_isa_5f9270714e (IsA tract_house house) (STV 1.0 0.9091)) +(: cnet_isa_935b0f3386 (IsA tract_housing housing) (STV 1.0 0.9091)) +(: cnet_isa_f1c1ec1378 (IsA tractability trait) (STV 1.0 0.9091)) +(: cnet_isa_d57bb2c959 (IsA tractarian christian) (STV 1.0 0.9091)) +(: cnet_isa_1188a55666 (IsA tractarianism christianity) (STV 1.0 0.9091)) +(: cnet_isa_97b7ae7085 (IsA traction pull) (STV 1.0 0.9091)) +(: cnet_isa_8b9b0698db (IsA traction_engine locomotive) (STV 1.0 0.9091)) +(: cnet_isa_68e9c4c157 (IsA tractor vehicle) (STV 1.0 0.9091)) +(: cnet_isa_66cc8dbf85 (IsA tractor self_propelled_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_9038f4cfc4 (IsA tractor truck) (STV 1.0 0.9091)) +(: cnet_isa_56d3a7468d (IsA trad jazz) (STV 1.0 0.9091)) +(: cnet_isa_e77cc1a3f1 (IsA trade business) (STV 1.0 0.9091)) +(: cnet_isa_e31bfdf15b (IsA trade commerce) (STV 1.0 0.9091)) +(: cnet_isa_3bbf44e6e9 (IsA trade occupation) (STV 1.0 0.9091)) +(: cnet_isa_689db5f7f8 (IsA trade_acceptance draft) (STV 1.0 0.9091)) +(: cnet_isa_1ada556cf1 (IsA trade_barrier protectionism) (STV 1.0 0.9091)) +(: cnet_isa_ea2fb38f32 (IsA trade_bill bill) (STV 1.0 0.9091)) +(: cnet_isa_0b42ee6f16 (IsA trade_book book) (STV 1.0 0.9091)) +(: cnet_isa_a0c32cd85d (IsA trade_deficit deficit) (STV 1.0 0.9091)) +(: cnet_isa_d4b94641dc (IsA trade_discount deduction) (STV 1.0 0.9091)) +(: cnet_isa_f3f7a6a076 (IsA trade_in property) (STV 1.0 0.9091)) +(: cnet_isa_99dc251073 (IsA trade_last compliment) (STV 1.0 0.9091)) +(: cnet_isa_a1303a2367 (IsA trade_magazine magazine) (STV 1.0 0.9091)) +(: cnet_isa_a3ce86bff0 (IsA trade_name name) (STV 1.0 0.9091)) +(: cnet_isa_b5ce6e853b (IsA trade_policy foreign_policy) (STV 1.0 0.9091)) +(: cnet_isa_393bee10b6 (IsA trade_route path) (STV 1.0 0.9091)) +(: cnet_isa_7ae67742ee (IsA trade_school secondary_school) (STV 1.0 0.9091)) +(: cnet_isa_d4e6667310 (IsA trade_secret secret) (STV 1.0 0.9091)) +(: cnet_isa_7c8e797f58 (IsA trade_unionist worker) (STV 1.0 0.9091)) +(: cnet_isa_14be703883 (IsA trade_wind prevailing_wind) (STV 1.0 0.9091)) +(: cnet_isa_1fc107eda3 (IsA tradecraft craft) (STV 1.0 0.9091)) +(: cnet_isa_663fcdc1b4 (IsA trademark marker) (STV 1.0 0.9091)) +(: cnet_isa_6b785b21aa (IsA tradeoff exchange) (STV 1.0 0.9091)) +(: cnet_isa_36b55447bf (IsA trader merchant) (STV 1.0 0.9091)) +(: cnet_isa_3aa6e129f0 (IsA tradescant_s_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_a349ea4f09 (IsA tradescantia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5ba30040c9 (IsA tradespeople people) (STV 1.0 0.9091)) +(: cnet_isa_216d4a909f (IsA trading commerce) (STV 1.0 0.9091)) +(: cnet_isa_7b3832ed1c (IsA trading_card card) (STV 1.0 0.9091)) +(: cnet_isa_1a6924d69f (IsA trading_stamp token) (STV 1.0 0.9091)) +(: cnet_isa_447e13355f (IsA tradition content) (STV 1.0 0.9091)) +(: cnet_isa_6e2577cd6a (IsA traditionalism orthodoxy) (STV 1.0 0.9091)) +(: cnet_isa_2766bb0b9b (IsA traditionalism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_c07f9fa5da (IsA traditionalism attachment) (STV 1.0 0.9091)) +(: cnet_isa_22917492fa (IsA traditionalist conservative) (STV 1.0 0.9091)) +(: cnet_isa_6cf670a809 (IsA traffic commerce) (STV 1.0 0.9091)) +(: cnet_isa_c1a225d4fd (IsA traffic communication) (STV 1.0 0.9091)) +(: cnet_isa_4038058bb2 (IsA traffic collection) (STV 1.0 0.9091)) +(: cnet_isa_0c4674c8e3 (IsA traffic_circle junction) (STV 1.0 0.9091)) +(: cnet_isa_1e0a5f388c (IsA traffic_congestion problem) (STV 1.0 0.9091)) +(: cnet_isa_8da6fdbbff (IsA traffic_control control) (STV 1.0 0.9091)) +(: cnet_isa_bfd9b990d5 (IsA traffic_cop policeman) (STV 1.0 0.9091)) +(: cnet_isa_6f0f7e877e (IsA traffic_court court) (STV 1.0 0.9091)) +(: cnet_isa_695c246562 (IsA traffic_island island) (STV 1.0 0.9091)) +(: cnet_isa_1226df0a34 (IsA traffic_jam crush) (STV 1.0 0.9091)) +(: cnet_isa_65e9cc44a1 (IsA traffic_lane lane) (STV 1.0 0.9091)) +(: cnet_isa_e3c7060f41 (IsA traffic_light light) (STV 1.0 0.9091)) +(: cnet_isa_c2ce0b9c1c (IsA traffic_pattern path) (STV 1.0 0.9091)) +(: cnet_isa_6bc5d5e908 (IsA tragacanth gum) (STV 1.0 0.9091)) +(: cnet_isa_5aac2200f8 (IsA tragedian actor) (STV 1.0 0.9091)) +(: cnet_isa_7fac3fb5d7 (IsA tragedian writer) (STV 1.0 0.9091)) +(: cnet_isa_a2029716f6 (IsA tragedienne actress) (STV 1.0 0.9091)) +(: cnet_isa_bc8f199095 (IsA tragedy drama) (STV 1.0 0.9091)) +(: cnet_isa_e00ecd5e5f (IsA tragelaphus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_f4547fb8ce (IsA tragic_flaw flaw) (STV 1.0 0.9091)) +(: cnet_isa_2967a93d43 (IsA tragicomedy tragedy) (STV 1.0 0.9091)) +(: cnet_isa_694f913ba7 (IsA tragopan pheasant) (STV 1.0 0.9091)) +(: cnet_isa_73025c397a (IsA tragopogon asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_ab12408425 (IsA tragulidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_73d1666d11 (IsA tragulus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_f6315062fb (IsA tragus cartilaginous_structure) (STV 1.0 0.9091)) +(: cnet_isa_efaa2367d0 (IsA trail track) (STV 1.0 0.9091)) +(: cnet_isa_634663249e (IsA trail path) (STV 1.0 0.9091)) +(: cnet_isa_9793957c98 (IsA trail_bike motorcycle) (STV 1.0 0.9091)) +(: cnet_isa_4c0ff1debd (IsA trail_boss supervisor) (STV 1.0 0.9091)) +(: cnet_isa_2709813aab (IsA trail_head beginning) (STV 1.0 0.9091)) +(: cnet_isa_741120141b (IsA trail_riding riding) (STV 1.0 0.9091)) +(: cnet_isa_d6d7562802 (IsA trailblazer scout) (STV 1.0 0.9091)) +(: cnet_isa_15ede23192 (IsA trailer conveyance) (STV 1.0 0.9091)) +(: cnet_isa_1c9eb623a8 (IsA trailer wheeled_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_ca8114a428 (IsA trailer_camp camp) (STV 1.0 0.9091)) +(: cnet_isa_9e141fac8d (IsA trailer_truck truck) (STV 1.0 0.9091)) +(: cnet_isa_55105c8c8d (IsA trailing pursuit) (STV 1.0 0.9091)) +(: cnet_isa_40435d7ebf (IsA trailing_arbutus shrub) (STV 1.0 0.9091)) +(: cnet_isa_60ae8ab83c (IsA trailing_edge edge) (STV 1.0 0.9091)) +(: cnet_isa_e645f794b2 (IsA trailing_four_o_clock wildflower) (STV 1.0 0.9091)) +(: cnet_isa_d713dcf794 (IsA train piece_of_cloth) (STV 1.0 0.9091)) +(: cnet_isa_af62de608e (IsA train public_transport) (STV 1.0 0.9091)) +(: cnet_isa_fab2049404 (IsA train consequence) (STV 1.0 0.9091)) +(: cnet_isa_04fbbce40e (IsA train_fare fare) (STV 1.0 0.9091)) +(: cnet_isa_c4e7a18028 (IsA train_of_thought thinking) (STV 1.0 0.9091)) +(: cnet_isa_3cdfd7d56e (IsA train_set plaything) (STV 1.0 0.9091)) +(: cnet_isa_09a16a4236 (IsA trainband company) (STV 1.0 0.9091)) +(: cnet_isa_871b383343 (IsA trainband militia) (STV 1.0 0.9091)) +(: cnet_isa_9a738ef0af (IsA trainbandsman militiaman) (STV 1.0 0.9091)) +(: cnet_isa_9fe7513651 (IsA trainbearer attendant) (STV 1.0 0.9091)) +(: cnet_isa_a879b790af (IsA trainee novice) (STV 1.0 0.9091)) +(: cnet_isa_4a18186c6d (IsA traineeship financial_aid) (STV 1.0 0.9091)) +(: cnet_isa_c9bc43cf71 (IsA trainer leader) (STV 1.0 0.9091)) +(: cnet_isa_0d51cfad20 (IsA training activity) (STV 1.0 0.9091)) +(: cnet_isa_801d5a966b (IsA training_college college) (STV 1.0 0.9091)) +(: cnet_isa_0529d71446 (IsA training_program educational_program) (STV 1.0 0.9091)) +(: cnet_isa_85088f7ccc (IsA training_school school) (STV 1.0 0.9091)) +(: cnet_isa_05ad27c0fc (IsA training_table board) (STV 1.0 0.9091)) +(: cnet_isa_19297c8e74 (IsA trainload load) (STV 1.0 0.9091)) +(: cnet_isa_49a2401a21 (IsA trainman employee) (STV 1.0 0.9091)) +(: cnet_isa_7ef2418e7b (IsA train popular_form_of_transport) (STV 1.0 0.9091)) +(: cnet_isa_3ddd70edde (IsA trait attribute) (STV 1.0 0.9091)) +(: cnet_isa_26f976d7b2 (IsA traitor criminal) (STV 1.0 0.9091)) +(: cnet_isa_c67d841d78 (IsA traitress traitor) (STV 1.0 0.9091)) +(: cnet_isa_f13132796e (IsA trajectory mechanical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_70352d1508 (IsA tramcar wagon) (STV 1.0 0.9091)) +(: cnet_isa_1226516827 (IsA tramline track) (STV 1.0 0.9091)) +(: cnet_isa_743a1c99f9 (IsA trammel pothook) (STV 1.0 0.9091)) +(: cnet_isa_7e0a887b04 (IsA trammel restraint) (STV 1.0 0.9091)) +(: cnet_isa_e1ef835243 (IsA trammel_net fishnet) (STV 1.0 0.9091)) +(: cnet_isa_b8d1065aa5 (IsA tramontane north_wind) (STV 1.0 0.9091)) +(: cnet_isa_7dc648d056 (IsA tramp footfall) (STV 1.0 0.9091)) +(: cnet_isa_6daf0a11e7 (IsA tramp vagrant) (STV 1.0 0.9091)) +(: cnet_isa_a3eb88c9f0 (IsA tramp_steamer steamer) (STV 1.0 0.9091)) +(: cnet_isa_7a65f372c0 (IsA trample sound) (STV 1.0 0.9091)) +(: cnet_isa_884aa633b1 (IsA trampler bad_person) (STV 1.0 0.9091)) +(: cnet_isa_d1eaa1f682 (IsA trampoline gymnastic_apparatus) (STV 1.0 0.9091)) +(: cnet_isa_d97f550f55 (IsA tramway conveyance) (STV 1.0 0.9091)) +(: cnet_isa_8f0805a5cc (IsA trance state_of_mental_activity) (STV 1.0 0.9091)) +(: cnet_isa_6c11e667f8 (IsA trance unconsciousness) (STV 1.0 0.9091)) +(: cnet_isa_ccbda510bc (IsA tranche share) (STV 1.0 0.9091)) +(: cnet_isa_7f4d92aa76 (IsA tranquilizer psychotropic_agent) (STV 1.0 0.9091)) +(: cnet_isa_521eae446a (IsA tranquilizer sedative_hypnotic) (STV 1.0 0.9091)) +(: cnet_isa_d1b679e2b2 (IsA tranquillity calmness) (STV 1.0 0.9091)) +(: cnet_isa_d4c093dbbb (IsA tranquillity order) (STV 1.0 0.9091)) +(: cnet_isa_6deeaf74da (IsA tran_fatty_acid fatty_acid) (STV 1.0 0.9091)) +(: cnet_isa_668addaa87 (IsA transactinide chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_799e8cd620 (IsA transaction group_action) (STV 1.0 0.9091)) +(: cnet_isa_2e7e0393ad (IsA transaction_file computer_file) (STV 1.0 0.9091)) +(: cnet_isa_8b07773294 (IsA transactional_immunity use_immunity) (STV 1.0 0.9091)) +(: cnet_isa_1d922b3ae2 (IsA transactor businessman) (STV 1.0 0.9091)) +(: cnet_isa_71db4420c4 (IsA transalpine foreigner) (STV 1.0 0.9091)) +(: cnet_isa_3317d88b0f (IsA transaminase transferase) (STV 1.0 0.9091)) +(: cnet_isa_441e0ea5ac (IsA transamination chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_58161da22a (IsA transcendence being) (STV 1.0 0.9091)) +(: cnet_isa_57befcdc9d (IsA transcendence domination) (STV 1.0 0.9091)) +(: cnet_isa_0cde39535a (IsA transcendental_number irrational_number) (STV 1.0 0.9091)) +(: cnet_isa_b986d2381e (IsA transcendentalism philosophy) (STV 1.0 0.9091)) +(: cnet_isa_123ccae024 (IsA transcendentalist philosopher) (STV 1.0 0.9091)) +(: cnet_isa_a33cf2a69e (IsA transcortical_aphasia aphasia) (STV 1.0 0.9091)) +(: cnet_isa_66398d7c7f (IsA transcriber phonetician) (STV 1.0 0.9091)) +(: cnet_isa_55001c052d (IsA transcriber writer) (STV 1.0 0.9091)) +(: cnet_isa_87239bb30f (IsA transcript writing) (STV 1.0 0.9091)) +(: cnet_isa_ffe82a6a54 (IsA transcript written_record) (STV 1.0 0.9091)) +(: cnet_isa_670b8faad0 (IsA transcriptase polymerase) (STV 1.0 0.9091)) +(: cnet_isa_311ee7fd3e (IsA transcription recording) (STV 1.0 0.9091)) +(: cnet_isa_1df60dfd8c (IsA transcription written_communication) (STV 1.0 0.9091)) +(: cnet_isa_949ff904e4 (IsA transcription organic_process) (STV 1.0 0.9091)) +(: cnet_isa_3650e53bcf (IsA transdermal_patch pad) (STV 1.0 0.9091)) +(: cnet_isa_db137c32a9 (IsA transducer electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_747a2d9962 (IsA transducing_vector vector) (STV 1.0 0.9091)) +(: cnet_isa_c305e9455b (IsA transduction organic_process) (STV 1.0 0.9091)) +(: cnet_isa_105d26735e (IsA transduction natural_process) (STV 1.0 0.9091)) +(: cnet_isa_a84a11e729 (IsA transept structure) (STV 1.0 0.9091)) +(: cnet_isa_aaaa792b57 (IsA transfer change_of_state) (STV 1.0 0.9091)) +(: cnet_isa_bf8aeda86b (IsA transfer transaction) (STV 1.0 0.9091)) +(: cnet_isa_ec0ef22aee (IsA transfer learning) (STV 1.0 0.9091)) +(: cnet_isa_5ba872f985 (IsA transfer ticket) (STV 1.0 0.9091)) +(: cnet_isa_be36f83c7f (IsA transfer person) (STV 1.0 0.9091)) +(: cnet_isa_da7fa17ff4 (IsA transfer_agent agency) (STV 1.0 0.9091)) +(: cnet_isa_ee67ea0572 (IsA transfer_paper paper) (STV 1.0 0.9091)) +(: cnet_isa_570cdad64a (IsA transfer_payment outgo) (STV 1.0 0.9091)) +(: cnet_isa_6a759fca30 (IsA transfer_rna ribonucleic_acid) (STV 1.0 0.9091)) +(: cnet_isa_3f2aad9bed (IsA transfer_tax tax) (STV 1.0 0.9091)) +(: cnet_isa_c38d56c48b (IsA transferability exchangeability) (STV 1.0 0.9091)) +(: cnet_isa_2f717fd219 (IsA transferase enzyme) (STV 1.0 0.9091)) +(: cnet_isa_cd2ebf0c9f (IsA transferee recipient) (STV 1.0 0.9091)) +(: cnet_isa_4f8e391c42 (IsA transference displacement) (STV 1.0 0.9091)) +(: cnet_isa_5aaf8c8f78 (IsA transferer mover) (STV 1.0 0.9091)) +(: cnet_isa_2738722d0c (IsA transferor transferer) (STV 1.0 0.9091)) +(: cnet_isa_320ab7b352 (IsA transferred_property possession) (STV 1.0 0.9091)) +(: cnet_isa_bd638a4811 (IsA transferrin globulin) (STV 1.0 0.9091)) +(: cnet_isa_1f40139a24 (IsA transfiguration revision) (STV 1.0 0.9091)) +(: cnet_isa_cce2b80594 (IsA transfiguration transformation) (STV 1.0 0.9091)) +(: cnet_isa_047e40b3d0 (IsA transfiguration christian_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_503352dbe2 (IsA transfiguration miracle) (STV 1.0 0.9091)) +(: cnet_isa_03741dac71 (IsA transformation change_of_integrity) (STV 1.0 0.9091)) +(: cnet_isa_3e578dcdd3 (IsA transformation grammatical_rule) (STV 1.0 0.9091)) +(: cnet_isa_0fba63b33b (IsA transformation change) (STV 1.0 0.9091)) +(: cnet_isa_1fc6bac444 (IsA transformation mapping) (STV 1.0 0.9091)) +(: cnet_isa_8488c9fe2d (IsA transformer electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_cee0b9bc57 (IsA transfusion action) (STV 1.0 0.9091)) +(: cnet_isa_92f0f2dd0a (IsA transfusion insertion) (STV 1.0 0.9091)) +(: cnet_isa_003f55a02e (IsA transfusion_reaction reaction) (STV 1.0 0.9091)) +(: cnet_isa_e684646233 (IsA transgender lgbt) (STV 1.0 0.9091)) +(: cnet_isa_843866e429 (IsA transgene gene) (STV 1.0 0.9091)) +(: cnet_isa_2e215bcd36 (IsA transgression action) (STV 1.0 0.9091)) +(: cnet_isa_06d897a6be (IsA transgression wrongdoing) (STV 1.0 0.9091)) +(: cnet_isa_71b45c5409 (IsA transgression geological_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_172d03c706 (IsA transgressor wrongdoer) (STV 1.0 0.9091)) +(: cnet_isa_e5bceffe7f (IsA transience impermanence) (STV 1.0 0.9091)) +(: cnet_isa_1fcee090ae (IsA transient traveler) (STV 1.0 0.9091)) +(: cnet_isa_87dfae8bf0 (IsA transient oscillation) (STV 1.0 0.9091)) +(: cnet_isa_d01c44a0a6 (IsA transient_global_amnesia amnesia) (STV 1.0 0.9091)) +(: cnet_isa_969c5be3df (IsA transient_ischemic_attack ischemia) (STV 1.0 0.9091)) +(: cnet_isa_00c9a783d1 (IsA transistor semiconductor_device) (STV 1.0 0.9091)) +(: cnet_isa_fc0bf52f18 (IsA transit_instrument telescope) (STV 1.0 0.9091)) +(: cnet_isa_22ccadb3bf (IsA transit_line line) (STV 1.0 0.9091)) +(: cnet_isa_56f94100a7 (IsA transit_zone zone) (STV 1.0 0.9091)) +(: cnet_isa_136527bc51 (IsA transition passage) (STV 1.0 0.9091)) +(: cnet_isa_4deeb26151 (IsA transition change) (STV 1.0 0.9091)) +(: cnet_isa_a39b8a6678 (IsA transitive_verb verb) (STV 1.0 0.9091)) +(: cnet_isa_66d267e707 (IsA transitivity grammatical_relation) (STV 1.0 0.9091)) +(: cnet_isa_edf3c88955 (IsA transitivity logical_relation) (STV 1.0 0.9091)) +(: cnet_isa_5b4a883b43 (IsA transitivity mathematical_relation) (STV 1.0 0.9091)) +(: cnet_isa_4f1dd9173b (IsA translation motion) (STV 1.0 0.9091)) +(: cnet_isa_95091f4ec7 (IsA translation paraphrase) (STV 1.0 0.9091)) +(: cnet_isa_459d931629 (IsA translation written_record) (STV 1.0 0.9091)) +(: cnet_isa_8658c49211 (IsA translation change_of_location) (STV 1.0 0.9091)) +(: cnet_isa_9200b5cb54 (IsA translation organic_process) (STV 1.0 0.9091)) +(: cnet_isa_c9e55ce80d (IsA translation transformation) (STV 1.0 0.9091)) +(: cnet_isa_41e2ea2bb6 (IsA translator program) (STV 1.0 0.9091)) +(: cnet_isa_4f136de37a (IsA translator linguist) (STV 1.0 0.9091)) +(: cnet_isa_8643e5b4f6 (IsA transliteration transcription) (STV 1.0 0.9091)) +(: cnet_isa_201b62537c (IsA translocation organic_process) (STV 1.0 0.9091)) +(: cnet_isa_6e21f2f442 (IsA translucence clearness) (STV 1.0 0.9091)) +(: cnet_isa_eae9511c80 (IsA transmigrante latino) (STV 1.0 0.9091)) +(: cnet_isa_a31803fd77 (IsA transmigrante peddler) (STV 1.0 0.9091)) +(: cnet_isa_b688478098 (IsA transmigration reincarnation) (STV 1.0 0.9091)) +(: cnet_isa_8c135647a3 (IsA transmission sending) (STV 1.0 0.9091)) +(: cnet_isa_803957900f (IsA transmission gear) (STV 1.0 0.9091)) +(: cnet_isa_3a1cff607f (IsA transmission communication) (STV 1.0 0.9091)) +(: cnet_isa_de540e623c (IsA transmission_control_protocol protocol) (STV 1.0 0.9091)) +(: cnet_isa_ee68501945 (IsA transmission_control_protocol_internet_protocol protocol) (STV 1.0 0.9091)) +(: cnet_isa_30906510fe (IsA transmission_mechanism mechanism) (STV 1.0 0.9091)) +(: cnet_isa_5937a78e56 (IsA transmission_shaft rotating_shaft) (STV 1.0 0.9091)) +(: cnet_isa_a589e70cfc (IsA transmission_time coordinated_universal_time) (STV 1.0 0.9091)) +(: cnet_isa_3089c8025f (IsA transmittance coefficient) (STV 1.0 0.9091)) +(: cnet_isa_255a012e53 (IsA transmitter set) (STV 1.0 0.9091)) +(: cnet_isa_2124acbd0e (IsA transmogrification transformation) (STV 1.0 0.9091)) +(: cnet_isa_962d1b0625 (IsA transmutation conversion) (STV 1.0 0.9091)) +(: cnet_isa_308d7c304d (IsA transmutation change) (STV 1.0 0.9091)) +(: cnet_isa_56c03a5164 (IsA transom crosspiece) (STV 1.0 0.9091)) +(: cnet_isa_1689d28f9b (IsA transom window) (STV 1.0 0.9091)) +(: cnet_isa_b17bd39727 (IsA transorbital_lobotomy lobotomy) (STV 1.0 0.9091)) +(: cnet_isa_51f3181e23 (IsA transparency clearness) (STV 1.0 0.9091)) +(: cnet_isa_a6bfe29c3e (IsA transparency physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_2adbab155c (IsA transparent_gem gem) (STV 1.0 0.9091)) +(: cnet_isa_8f04f5c313 (IsA transparent_substance material) (STV 1.0 0.9091)) +(: cnet_isa_fdb641c70a (IsA transpiration bodily_process) (STV 1.0 0.9091)) +(: cnet_isa_423f791ba2 (IsA transpiration natural_process) (STV 1.0 0.9091)) +(: cnet_isa_53cfa68e95 (IsA transpiration organic_process) (STV 1.0 0.9091)) +(: cnet_isa_aa5e4c43b3 (IsA transplant movement) (STV 1.0 0.9091)) +(: cnet_isa_459309292c (IsA transplant operation) (STV 1.0 0.9091)) +(: cnet_isa_759f57b3af (IsA transplanter gardener) (STV 1.0 0.9091)) +(: cnet_isa_ddad09e81e (IsA transponder electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_72587d76a4 (IsA transport diffusion) (STV 1.0 0.9091)) +(: cnet_isa_8891bf09db (IsA transport_ship ship) (STV 1.0 0.9091)) +(: cnet_isa_848d2268dc (IsA transportation commercial_enterprise) (STV 1.0 0.9091)) +(: cnet_isa_5e0d117b14 (IsA transportation movement) (STV 1.0 0.9091)) +(: cnet_isa_b0e6912bc3 (IsA transportation_company company) (STV 1.0 0.9091)) +(: cnet_isa_50ac45f33b (IsA transportation_safety_administration agency) (STV 1.0 0.9091)) +(: cnet_isa_2d669e1290 (IsA transportation_secretary secretary) (STV 1.0 0.9091)) +(: cnet_isa_f9523cd5c2 (IsA transportation_system facility) (STV 1.0 0.9091)) +(: cnet_isa_60c45e14ba (IsA transporter crane) (STV 1.0 0.9091)) +(: cnet_isa_3be54dc676 (IsA transporter truck) (STV 1.0 0.9091)) +(: cnet_isa_0fff63986f (IsA transpose matrix) (STV 1.0 0.9091)) +(: cnet_isa_89fd098aa0 (IsA transposition reordering) (STV 1.0 0.9091)) +(: cnet_isa_f1d17ae55d (IsA transposition calculation) (STV 1.0 0.9091)) +(: cnet_isa_36ca08d2aa (IsA transposition rearrangement) (STV 1.0 0.9091)) +(: cnet_isa_a491a6f960 (IsA transposition mutation) (STV 1.0 0.9091)) +(: cnet_isa_bef0e804ff (IsA transposition playing) (STV 1.0 0.9091)) +(: cnet_isa_e0d38a38b0 (IsA transposition abnormality) (STV 1.0 0.9091)) +(: cnet_isa_620a4f6bd0 (IsA transposon deoxyribonucleic_acid) (STV 1.0 0.9091)) +(: cnet_isa_aa3b9b3530 (IsA transsexual person) (STV 1.0 0.9091)) +(: cnet_isa_b4ee54bcb7 (IsA transsexualism condition) (STV 1.0 0.9091)) +(: cnet_isa_82c9feab1a (IsA transshipment transportation) (STV 1.0 0.9091)) +(: cnet_isa_8a10f77c62 (IsA transubstantiation theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_51989b7cb6 (IsA transudate discharge) (STV 1.0 0.9091)) +(: cnet_isa_7cc428fef8 (IsA transuranic_element chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_b71ed21f50 (IsA transurethral_resection_of_prostate resection) (STV 1.0 0.9091)) +(: cnet_isa_1a800a783e (IsA transverse_colon colon) (STV 1.0 0.9091)) +(: cnet_isa_a385f4eb30 (IsA transverse_process process) (STV 1.0 0.9091)) +(: cnet_isa_a05269ca8a (IsA transverse_sinus venous_sinus) (STV 1.0 0.9091)) +(: cnet_isa_8a7130d102 (IsA transversus_abdominis_muscle abdominal) (STV 1.0 0.9091)) +(: cnet_isa_1d0974dfda (IsA transvestism practice) (STV 1.0 0.9091)) +(: cnet_isa_23dd186a71 (IsA transvestite person) (STV 1.0 0.9091)) +(: cnet_isa_c970cda0f5 (IsA tranylcypromine monoamine_oxidase_inhibitor) (STV 1.0 0.9091)) +(: cnet_isa_4a3f373c13 (IsA trap device) (STV 1.0 0.9091)) +(: cnet_isa_8f15dffb7a (IsA trap carriage) (STV 1.0 0.9091)) +(: cnet_isa_a845f97ce2 (IsA trap drain) (STV 1.0 0.9091)) +(: cnet_isa_db96125a56 (IsA trap mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_b6022bf0da (IsA trap mouth) (STV 1.0 0.9091)) +(: cnet_isa_c74f62f627 (IsA trap design) (STV 1.0 0.9091)) +(: cnet_isa_b44e6f553f (IsA trap_and_drain_auger plumber_s_snake) (STV 1.0 0.9091)) +(: cnet_isa_e6d7f7d7ac (IsA trap_block blocking) (STV 1.0 0.9091)) +(: cnet_isa_1d9665c81e (IsA trap_door door) (STV 1.0 0.9091)) +(: cnet_isa_340f4dc4eb (IsA trap_door_spider spider) (STV 1.0 0.9091)) +(: cnet_isa_eafb5d003b (IsA trap_line line) (STV 1.0 0.9091)) +(: cnet_isa_df1d3e013f (IsA trapa dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_db6db5418c (IsA trapaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_91d0607884 (IsA trapeze swing) (STV 1.0 0.9091)) +(: cnet_isa_1d1a79a0e8 (IsA trapezium carpal_bone) (STV 1.0 0.9091)) +(: cnet_isa_0593f68ac6 (IsA trapezium multiple_star) (STV 1.0 0.9091)) +(: cnet_isa_3b50072a45 (IsA trapezium quadrilateral) (STV 1.0 0.9091)) +(: cnet_isa_13663c9715 (IsA trapezius skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_46ce2f571c (IsA trapezohedron polyhedron) (STV 1.0 0.9091)) +(: cnet_isa_40c5dea205 (IsA trapezoid carpal_bone) (STV 1.0 0.9091)) +(: cnet_isa_3d4d653f24 (IsA trapezoid quadrilateral) (STV 1.0 0.9091)) +(: cnet_isa_898c19fb0f (IsA trapper_s_tea shrub) (STV 1.0 0.9091)) +(: cnet_isa_df2354acc3 (IsA trapper hunter) (STV 1.0 0.9091)) +(: cnet_isa_22e2bfb4be (IsA trapshooter shot) (STV 1.0 0.9091)) +(: cnet_isa_802103a9ff (IsA trash object) (STV 1.0 0.9091)) +(: cnet_isa_101e88e19f (IsA trash rabble) (STV 1.0 0.9091)) +(: cnet_isa_2fddcd07b3 (IsA trauma psychological_state) (STV 1.0 0.9091)) +(: cnet_isa_ad5d4169ab (IsA traumatology medicine) (STV 1.0 0.9091)) +(: cnet_isa_f01c593301 (IsA traumatophobia social_phobia) (STV 1.0 0.9091)) +(: cnet_isa_8c05293786 (IsA trautvetteria magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_68c902a9ee (IsA trave beam) (STV 1.0 0.9091)) +(: cnet_isa_b12ab4e368 (IsA travel motion) (STV 1.0 0.9091)) +(: cnet_isa_c45333fe85 (IsA travel_agency agency) (STV 1.0 0.9091)) +(: cnet_isa_8babc82319 (IsA travel_agent agent) (STV 1.0 0.9091)) +(: cnet_isa_c23f7c5331 (IsA travel_allowance allowance) (STV 1.0 0.9091)) +(: cnet_isa_3cf7486810 (IsA travel_bargain bargain) (STV 1.0 0.9091)) +(: cnet_isa_da91742f8c (IsA travel_expense expense) (STV 1.0 0.9091)) +(: cnet_isa_81aa16028b (IsA travel_guidebook guidebook) (STV 1.0 0.9091)) +(: cnet_isa_0cdfb87c81 (IsA travel_iron iron) (STV 1.0 0.9091)) +(: cnet_isa_834d786e31 (IsA travel_plan plan_of_action) (STV 1.0 0.9091)) +(: cnet_isa_2386974b3e (IsA travel_time time_period) (STV 1.0 0.9091)) +(: cnet_isa_b9a29ea9b2 (IsA traveler_s_check traveler_s_letter_of_credit) (STV 1.0 0.9091)) +(: cnet_isa_812fde6f21 (IsA traveler_s_joy clematis) (STV 1.0 0.9091)) +(: cnet_isa_17f19a8798 (IsA traveler_s_letter_of_credit letter_of_credit) (STV 1.0 0.9091)) +(: cnet_isa_9c7eca609f (IsA traveler_s_tree woody_plant) (STV 1.0 0.9091)) +(: cnet_isa_0a5226dd58 (IsA traveler person) (STV 1.0 0.9091)) +(: cnet_isa_d8e2a6c458 (IsA traveling_salesman salesman) (STV 1.0 0.9091)) +(: cnet_isa_7a615b5202 (IsA traveling_salesman spokesperson) (STV 1.0 0.9091)) +(: cnet_isa_026dd4a9f0 (IsA traveling_wave wave) (STV 1.0 0.9091)) +(: cnet_isa_72adc39295 (IsA travelling_abroad great_experience) (STV 1.0 0.9339)) +(: cnet_isa_d3798bc482 (IsA travelogue attraction) (STV 1.0 0.9091)) +(: cnet_isa_1b8e04cd27 (IsA traversal crossing) (STV 1.0 0.9091)) +(: cnet_isa_98b193a1c6 (IsA traversal travel) (STV 1.0 0.9091)) +(: cnet_isa_a5d472eaeb (IsA traverser mover) (STV 1.0 0.9091)) +(: cnet_isa_89681fe8df (IsA trawl fishing_line) (STV 1.0 0.9091)) +(: cnet_isa_c7867f783b (IsA trawl fishnet) (STV 1.0 0.9091)) +(: cnet_isa_fdd3b4247c (IsA trawler fishing_boat) (STV 1.0 0.9091)) +(: cnet_isa_5ac298f6fd (IsA trawler fisherman) (STV 1.0 0.9091)) +(: cnet_isa_07765be05c (IsA tray receptacle) (STV 1.0 0.9091)) +(: cnet_isa_d8229fc38c (IsA tray_cloth table_linen) (STV 1.0 0.9091)) +(: cnet_isa_1f3a924ed8 (IsA treachery dishonesty) (STV 1.0 0.9091)) +(: cnet_isa_6289454f97 (IsA treacle sentimentalism) (STV 1.0 0.9091)) +(: cnet_isa_8b2fe77308 (IsA treacle syrup) (STV 1.0 0.9091)) +(: cnet_isa_2f3db3027b (IsA tread contact) (STV 1.0 0.9091)) +(: cnet_isa_169d9e3575 (IsA tread structural_member) (STV 1.0 0.9091)) +(: cnet_isa_3a3f693dec (IsA tread surface) (STV 1.0 0.9091)) +(: cnet_isa_dfe3685060 (IsA treading_water swimming_stroke) (STV 1.0 0.9091)) +(: cnet_isa_aa22937d51 (IsA treadmill occupation) (STV 1.0 0.9091)) +(: cnet_isa_a89a14a4c1 (IsA treadmill exercise_device) (STV 1.0 0.9091)) +(: cnet_isa_6083afc716 (IsA treadmill mill) (STV 1.0 0.9091)) +(: cnet_isa_50b8a803fd (IsA treadmill_test stress_test) (STV 1.0 0.9091)) +(: cnet_isa_69f2fa9f0f (IsA treason crime) (STV 1.0 0.9091)) +(: cnet_isa_fd60327b52 (IsA treason disloyalty) (STV 1.0 0.9091)) +(: cnet_isa_4a4f605b90 (IsA treasure collection) (STV 1.0 0.9091)) +(: cnet_isa_299d8e1717 (IsA treasure possession) (STV 1.0 0.9091)) +(: cnet_isa_6e2f3d7715 (IsA treasure wealth) (STV 1.0 0.9091)) +(: cnet_isa_d950c580ec (IsA treasure_chest chest) (STV 1.0 0.9091)) +(: cnet_isa_f04880a2d6 (IsA treasure_flower gazania) (STV 1.0 0.9091)) +(: cnet_isa_b8400c2b50 (IsA treasure_house storehouse) (STV 1.0 0.9091)) +(: cnet_isa_25049e3ce2 (IsA treasure_hunt game) (STV 1.0 0.9091)) +(: cnet_isa_cb4402eea9 (IsA treasure_ship ship) (STV 1.0 0.9091)) +(: cnet_isa_6f7d5257df (IsA treasure_trove collection) (STV 1.0 0.9091)) +(: cnet_isa_fd4b04c7de (IsA treasure_trove treasure) (STV 1.0 0.9091)) +(: cnet_isa_558052d8b9 (IsA treasurer money_handler) (STV 1.0 0.9091)) +(: cnet_isa_b7e915f73b (IsA treasurership position) (STV 1.0 0.9091)) +(: cnet_isa_d0d8c3d649 (IsA treasury government_bond) (STV 1.0 0.9091)) +(: cnet_isa_01c0427844 (IsA treasury depository) (STV 1.0 0.9091)) +(: cnet_isa_4cf5b51522 (IsA treasury government_department) (STV 1.0 0.9091)) +(: cnet_isa_33b0e668af (IsA treasury fund) (STV 1.0 0.9091)) +(: cnet_isa_8a3f30f937 (IsA treasury_bill treasury) (STV 1.0 0.9091)) +(: cnet_isa_7858121656 (IsA treasury_bond treasury) (STV 1.0 0.9091)) +(: cnet_isa_2dcb7465f7 (IsA treasury_note treasury) (STV 1.0 0.9091)) +(: cnet_isa_eabf009ccb (IsA treasury_secretary secretary) (STV 1.0 0.9091)) +(: cnet_isa_58b876783c (IsA treasury_stock stock) (STV 1.0 0.9091)) +(: cnet_isa_0e8fa4bcab (IsA treat happening) (STV 1.0 0.9091)) +(: cnet_isa_ad7cdc8fb1 (IsA treatise writing) (STV 1.0 0.9091)) +(: cnet_isa_b64daa4cf0 (IsA treatment care) (STV 1.0 0.9091)) +(: cnet_isa_bb9a1972fd (IsA treatment management) (STV 1.0 0.9091)) +(: cnet_isa_11a083b2f9 (IsA treatment artistic_style) (STV 1.0 0.9091)) +(: cnet_isa_ea5713ae61 (IsA treaty written_agreement) (STV 1.0 0.9091)) +(: cnet_isa_3285e21bd3 (IsA treaty_port port) (STV 1.0 0.9091)) +(: cnet_isa_fa5596a162 (IsA treble_clef clef) (STV 1.0 0.9091)) +(: cnet_isa_e7ea5d1adf (IsA treble_damage punitive_damage) (STV 1.0 0.9091)) +(: cnet_isa_2b2a7a8283 (IsA tree plant) (STV 1.0 0.9339)) +(: cnet_isa_2b97968e3b (IsA tree tall_plant) (STV 1.0 0.9091)) +(: cnet_isa_f78b0b4c06 (IsA tree woody_plant) (STV 1.0 0.9091)) +(: cnet_isa_74da7372fe (IsA tree plane_figure) (STV 1.0 0.9091)) +(: cnet_isa_8ceee65167 (IsA tree_cotton cotton) (STV 1.0 0.9091)) +(: cnet_isa_92314c1270 (IsA tree_cricket cricket) (STV 1.0 0.9091)) +(: cnet_isa_64d17901d3 (IsA tree_farm forest) (STV 1.0 0.9091)) +(: cnet_isa_bb856df561 (IsA tree_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_176d913076 (IsA tree_frog frog) (STV 1.0 0.9091)) +(: cnet_isa_5efca44781 (IsA tree_heath australian_heath) (STV 1.0 0.9091)) +(: cnet_isa_cb8a93a79b (IsA tree_heath erica) (STV 1.0 0.9091)) +(: cnet_isa_abddc21267 (IsA tree_house playhouse) (STV 1.0 0.9091)) +(: cnet_isa_a6b3e2a940 (IsA tree_hugger environmentalist) (STV 1.0 0.9091)) +(: cnet_isa_d4c0490adf (IsA tree_lizard iguanid) (STV 1.0 0.9091)) +(: cnet_isa_6367186aec (IsA tree_lupine shrub) (STV 1.0 0.9091)) +(: cnet_isa_e83a6094d1 (IsA tree_mallow shrub) (STV 1.0 0.9091)) +(: cnet_isa_fcb310e607 (IsA tree_of_heaven ailanthus) (STV 1.0 0.9091)) +(: cnet_isa_40ffab5bed (IsA tree_of_knowledge tree) (STV 1.0 0.9091)) +(: cnet_isa_bd0a525af7 (IsA tree_onion onion) (STV 1.0 0.9091)) +(: cnet_isa_6557b4adda (IsA tree_shrew placental) (STV 1.0 0.9091)) +(: cnet_isa_8379475176 (IsA tree_sparrow new_world_sparrow) (STV 1.0 0.9091)) +(: cnet_isa_aeab208d81 (IsA tree_sparrow sparrow) (STV 1.0 0.9091)) +(: cnet_isa_d13d629a2c (IsA tree_squirrel squirrel) (STV 1.0 0.9091)) +(: cnet_isa_6e6fcf195e (IsA tree_surgeon specialist) (STV 1.0 0.9091)) +(: cnet_isa_96629617c7 (IsA tree_surgery care) (STV 1.0 0.9091)) +(: cnet_isa_886f31e8ae (IsA tree_swallow swallow) (STV 1.0 0.9091)) +(: cnet_isa_f944cab7d1 (IsA tree_swift apodiform_bird) (STV 1.0 0.9091)) +(: cnet_isa_b89b5ef04b (IsA tree_toad frog) (STV 1.0 0.9091)) +(: cnet_isa_e8acce4cfa (IsA tree_tobacco tobacco) (STV 1.0 0.9091)) +(: cnet_isa_c181069dd4 (IsA tree_tomato shrub) (STV 1.0 0.9091)) +(: cnet_isa_c46ec359f6 (IsA tree_wallaby wallaby) (STV 1.0 0.9091)) +(: cnet_isa_9c8008cf7d (IsA treehopper plant_hopper) (STV 1.0 0.9091)) +(: cnet_isa_fff584702e (IsA treelet tree) (STV 1.0 0.9091)) +(: cnet_isa_95b702f655 (IsA treenail peg) (STV 1.0 0.9091)) +(: cnet_isa_c2357e292b (IsA tree taller_than_plant) (STV 1.0 0.9091)) +(: cnet_isa_deab22cc46 (IsA tree_and_flower plant) (STV 1.0 0.9091)) +(: cnet_isa_f388e5b282 (IsA trefoil architectural_ornament) (STV 1.0 0.9091)) +(: cnet_isa_fc574079a6 (IsA trefoil_arch pointed_arch) (STV 1.0 0.9091)) +(: cnet_isa_dc729686e8 (IsA trek journey) (STV 1.0 0.9091)) +(: cnet_isa_40fe892d2f (IsA trek trip) (STV 1.0 0.9091)) +(: cnet_isa_8598d22247 (IsA trekker traveler) (STV 1.0 0.9091)) +(: cnet_isa_f54afc9d80 (IsA trellis lattice) (STV 1.0 0.9091)) +(: cnet_isa_2a43d62247 (IsA trema dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_30502c1f7b (IsA trematoda class) (STV 1.0 0.9091)) +(: cnet_isa_c34982dddb (IsA tremble reflex) (STV 1.0 0.9091)) +(: cnet_isa_11a1c48d0d (IsA tremble animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_99f1c0449d (IsA tremella fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_00b88da554 (IsA tremella_foliacea jelly_fungus) (STV 1.0 0.9091)) +(: cnet_isa_ddaa0f4042 (IsA tremella_reticulata jelly_fungus) (STV 1.0 0.9091)) +(: cnet_isa_549b0426c6 (IsA tremellaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_652ef07627 (IsA tremellale fungus_order) (STV 1.0 0.9091)) +(: cnet_isa_2eaceb3e2a (IsA tremolite asbesto) (STV 1.0 0.9091)) +(: cnet_isa_70dd3e370e (IsA tremolo vibrato) (STV 1.0 0.9091)) +(: cnet_isa_cbaa02dc2e (IsA tremolo vibe) (STV 1.0 0.9091)) +(: cnet_isa_21fd794c66 (IsA tremor vibration) (STV 1.0 0.9091)) +(: cnet_isa_4ed9666e71 (IsA tremor earthquake) (STV 1.0 0.9091)) +(: cnet_isa_ae7abcf392 (IsA tremor vibe) (STV 1.0 0.9091)) +(: cnet_isa_e7a494c594 (IsA trench ditch) (STV 1.0 0.9091)) +(: cnet_isa_252746f12f (IsA trench natural_depression) (STV 1.0 0.9091)) +(: cnet_isa_b96ea814c7 (IsA trench_coat raincoat) (STV 1.0 0.9091)) +(: cnet_isa_8b687c9b5d (IsA trench_fever rickettsial_disease) (STV 1.0 0.9091)) +(: cnet_isa_a41e7dbe58 (IsA trench_foot frostbite) (STV 1.0 0.9091)) +(: cnet_isa_5e39321340 (IsA trench_knife knife) (STV 1.0 0.9091)) +(: cnet_isa_a4ef6c7760 (IsA trench_warfare combat) (STV 1.0 0.9091)) +(: cnet_isa_acca87ff3e (IsA trench_warfare war) (STV 1.0 0.9091)) +(: cnet_isa_ab943780f0 (IsA trencher board) (STV 1.0 0.9091)) +(: cnet_isa_f366f2bb97 (IsA trencher digger) (STV 1.0 0.9091)) +(: cnet_isa_e6245c1290 (IsA trend_analysis analysis) (STV 1.0 0.9091)) +(: cnet_isa_ce174820cd (IsA trend_line line) (STV 1.0 0.9091)) +(: cnet_isa_02485df210 (IsA trend_setter model) (STV 1.0 0.9091)) +(: cnet_isa_fce3bbd08a (IsA trend_setting leadership) (STV 1.0 0.9091)) +(: cnet_isa_57ecb57d66 (IsA trepan drill) (STV 1.0 0.9091)) +(: cnet_isa_de1bf64a91 (IsA trepan surgical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_f74e288326 (IsA trepang sea_cucumber) (STV 1.0 0.9091)) +(: cnet_isa_176ad7ffdd (IsA trephination operation) (STV 1.0 0.9091)) +(: cnet_isa_81b1bfd1a7 (IsA trepidation apprehension) (STV 1.0 0.9091)) +(: cnet_isa_1a6d1a043d (IsA treponema spirochete) (STV 1.0 0.9091)) +(: cnet_isa_80ad617dab (IsA treponemataceae bacteria_family) (STV 1.0 0.9091)) +(: cnet_isa_49b417d78f (IsA trespass tort) (STV 1.0 0.9091)) +(: cnet_isa_03ffc3484c (IsA trespass wrongdoing) (STV 1.0 0.9091)) +(: cnet_isa_ddeeccac54 (IsA trespass_de_bonis_asportatis trespass) (STV 1.0 0.9091)) +(: cnet_isa_c59d468f94 (IsA trespass_on_case trespass) (STV 1.0 0.9091)) +(: cnet_isa_fdace64605 (IsA trespass_quare_clausum_fregit trespass) (STV 1.0 0.9091)) +(: cnet_isa_72126dc0e0 (IsA trespass_viet_armis trespass) (STV 1.0 0.9091)) +(: cnet_isa_5225c4854a (IsA trestle sawhorse) (STV 1.0 0.9091)) +(: cnet_isa_dc02cdc4a3 (IsA trestle supporting_tower) (STV 1.0 0.9091)) +(: cnet_isa_294ba4a811 (IsA trestle_bridge bridge) (STV 1.0 0.9091)) +(: cnet_isa_5e6ff3391c (IsA trestle_table table) (STV 1.0 0.9091)) +(: cnet_isa_3e277ae588 (IsA trestlework structure) (STV 1.0 0.9091)) +(: cnet_isa_354c290d38 (IsA trew pair_of_trouser) (STV 1.0 0.9091)) +(: cnet_isa_fd3ae01e2b (IsA trey playing_card) (STV 1.0 0.9091)) +(: cnet_isa_548b1ddd2e (IsA tri_chad chad) (STV 1.0 0.9091)) +(: cnet_isa_14bb1906e5 (IsA tri_iodothyronine iodothyronine) (STV 1.0 0.9091)) +(: cnet_isa_30f726495e (IsA triaenodon fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_8f10035d37 (IsA triage sorting) (STV 1.0 0.9091)) +(: cnet_isa_43b9b2fdda (IsA triakidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_717eace786 (IsA trial experiment) (STV 1.0 0.9091)) +(: cnet_isa_1c2ca0e1ca (IsA trial affliction) (STV 1.0 0.9091)) +(: cnet_isa_4aa5f63a7b (IsA trial proceeding) (STV 1.0 0.9091)) +(: cnet_isa_0b53096a95 (IsA trial contest) (STV 1.0 0.9091)) +(: cnet_isa_fee96ee248 (IsA trial_and_error experiment) (STV 1.0 0.9091)) +(: cnet_isa_277c0ee534 (IsA trial_attorney lawyer) (STV 1.0 0.9091)) +(: cnet_isa_a752a56dfb (IsA trial_balance balance) (STV 1.0 0.9091)) +(: cnet_isa_b1acc0c9ee (IsA trial_balloon balloon) (STV 1.0 0.9091)) +(: cnet_isa_18eba56909 (IsA trial_balloon trial) (STV 1.0 0.9091)) +(: cnet_isa_48bb72faf3 (IsA trial_court court) (STV 1.0 0.9091)) +(: cnet_isa_dc9abdb24b (IsA trial_judge judge) (STV 1.0 0.9091)) +(: cnet_isa_a95672c8bf (IsA trial_period time_period) (STV 1.0 0.9091)) +(: cnet_isa_37ed872e81 (IsA trialeurode arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_f4d2722666 (IsA triangle closed_shape_with_three_side) (STV 1.0 0.9091)) +(: cnet_isa_fed64151d7 (IsA triangle figure) (STV 1.0 0.9339)) +(: cnet_isa_d9c8129edd (IsA triangle geometric_figure_with_three_side) (STV 1.0 0.9339)) +(: cnet_isa_70ed187da2 (IsA triangle instrument) (STV 1.0 0.9091)) +(: cnet_isa_c0fcc1aa02 (IsA triangle shape) (STV 1.0 0.9524)) +(: cnet_isa_b61fe3494d (IsA triangle small_percussion_instrument) (STV 1.0 0.9454)) +(: cnet_isa_5cbbd15f11 (IsA triangle drafting_instrument) (STV 1.0 0.9091)) +(: cnet_isa_0e6638d417 (IsA triangle percussion_instrument) (STV 1.0 0.9091)) +(: cnet_isa_b1145fc823 (IsA triangle polygon) (STV 1.0 0.9091)) +(: cnet_isa_a78dc38807 (IsA triangle_with_three_equal_side equilateral_triangle) (STV 1.0 0.9091)) +(: cnet_isa_662dac1284 (IsA triangular_prism prism) (STV 1.0 0.9091)) +(: cnet_isa_a67a6b79d2 (IsA triangularity angularity) (STV 1.0 0.9091)) +(: cnet_isa_78f794160f (IsA triangulation surveying) (STV 1.0 0.9091)) +(: cnet_isa_9ca4ee47dd (IsA triangulation trigonometry) (STV 1.0 0.9091)) +(: cnet_isa_efc4dd8422 (IsA triatoma arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_4ecb13fad3 (IsA triazine compound) (STV 1.0 0.9091)) +(: cnet_isa_e75645423c (IsA tribadism lesbianism) (STV 1.0 0.9091)) +(: cnet_isa_672d956668 (IsA tribal_society society) (STV 1.0 0.9091)) +(: cnet_isa_71bb3199d4 (IsA tribalism belief) (STV 1.0 0.9091)) +(: cnet_isa_90b734ae20 (IsA tribalism state) (STV 1.0 0.9091)) +(: cnet_isa_c2814c257a (IsA tribalization union) (STV 1.0 0.9091)) +(: cnet_isa_777248e187 (IsA tribasic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_fe72a68859 (IsA tribe taxonomic_group) (STV 1.0 0.9091)) +(: cnet_isa_2b5d7ebf9f (IsA tribe nation) (STV 1.0 0.9091)) +(: cnet_isa_192f6a79ef (IsA tribe social_group) (STV 1.0 0.9091)) +(: cnet_isa_20f092e925 (IsA tribe_of_israel kin) (STV 1.0 0.9091)) +(: cnet_isa_b94818e645 (IsA tribesman member) (STV 1.0 0.9091)) +(: cnet_isa_540979dfa8 (IsA tribolium arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_c45e8b834f (IsA tribologist mechanical_engineer) (STV 1.0 0.9091)) +(: cnet_isa_13308f48da (IsA tribology mechanical_engineering) (STV 1.0 0.9091)) +(: cnet_isa_3c4969b1b9 (IsA tribonema protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_2bf6e2d2b6 (IsA tribonemaceae protoctist_family) (STV 1.0 0.9091)) +(: cnet_isa_f0f5e2b13f (IsA tribromoethanol intravenous_anesthetic) (STV 1.0 0.9091)) +(: cnet_isa_99acfe0319 (IsA tribulus rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_0b2adb37a8 (IsA tribune defender) (STV 1.0 0.9091)) +(: cnet_isa_e7843f5ef0 (IsA tribune apse) (STV 1.0 0.9091)) +(: cnet_isa_a866271e20 (IsA tribuneship position) (STV 1.0 0.9091)) +(: cnet_isa_cc312333b5 (IsA tribute payment) (STV 1.0 0.9091)) +(: cnet_isa_cb045ed739 (IsA tribute approval) (STV 1.0 0.9091)) +(: cnet_isa_9b7ec49194 (IsA tribute_album concept_album) (STV 1.0 0.9091)) +(: cnet_isa_2bdac4c371 (IsA tributyrin butyrin) (STV 1.0 0.9091)) +(: cnet_isa_41ec2aa4cb (IsA tricep skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_4f25fc2a26 (IsA tricep_brachii tricep) (STV 1.0 0.9091)) +(: cnet_isa_61a6c0f72b (IsA triceratop ceratopsian) (STV 1.0 0.9091)) +(: cnet_isa_a124d223e4 (IsA trichechidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_e28792d55f (IsA trichechus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_98ae64174c (IsA trichina nematode) (STV 1.0 0.9091)) +(: cnet_isa_3101795ee5 (IsA trichinosis infestation) (STV 1.0 0.9091)) +(: cnet_isa_affbbd27da (IsA trichinosis myositis) (STV 1.0 0.9091)) +(: cnet_isa_e6d01ec03d (IsA trichion point) (STV 1.0 0.9091)) +(: cnet_isa_93e6016727 (IsA trichiuridae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_ffc96afe86 (IsA trichloride chloride) (STV 1.0 0.9091)) +(: cnet_isa_31efbc10ab (IsA trichloroacetic_acid acetic_acid) (STV 1.0 0.9091)) +(: cnet_isa_877780bade (IsA trichloroethylene ethylene) (STV 1.0 0.9091)) +(: cnet_isa_f452aa4501 (IsA trichocero monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c7bdb6fb98 (IsA trichodesmium cyanobacteria) (STV 1.0 0.9091)) +(: cnet_isa_cfcb9beafa (IsA trichodontidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_fc77d14f5d (IsA trichoglossus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_99008ae9da (IsA tricholoma fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_85cabd9421 (IsA tricholoma_aurantium agaric) (STV 1.0 0.9091)) +(: cnet_isa_676528fcf1 (IsA tricholoma_pardinum agaric) (STV 1.0 0.9091)) +(: cnet_isa_133d92e74e (IsA tricholoma_pessundatum agaric) (STV 1.0 0.9091)) +(: cnet_isa_af02a51021 (IsA tricholoma_sejunctum agaric) (STV 1.0 0.9091)) +(: cnet_isa_ff9d78e824 (IsA tricholoma_vaccinum agaric) (STV 1.0 0.9091)) +(: cnet_isa_018d96999c (IsA tricholoma_venenata agaric) (STV 1.0 0.9091)) +(: cnet_isa_705fcc0c9d (IsA tricholomataceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_ec71b6829f (IsA trichomane fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_cdb3ae5e14 (IsA trichomonad flagellate) (STV 1.0 0.9091)) +(: cnet_isa_fca9adb49c (IsA trichomoniasis protozoal_infection) (STV 1.0 0.9091)) +(: cnet_isa_b5bfe6b771 (IsA trichophaga arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_e4b68bbbd5 (IsA trichophyton fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_2601643cad (IsA trichoptera animal_order) (STV 1.0 0.9091)) +(: cnet_isa_e9335882cb (IsA trichopterous_insect insect) (STV 1.0 0.9091)) +(: cnet_isa_870d94b89a (IsA trichostema asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2b20d2e459 (IsA trichostigma caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_47e2f1187c (IsA trichosurus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_545151bb6b (IsA trichothecene mycotoxin) (STV 1.0 0.9091)) +(: cnet_isa_ce94f43b08 (IsA trichotillomania mania) (STV 1.0 0.9091)) +(: cnet_isa_95150a34c1 (IsA trichotomy classification) (STV 1.0 0.9091)) +(: cnet_isa_d2efecea58 (IsA trichroism pleochroism) (STV 1.0 0.9091)) +(: cnet_isa_3fcc9d6929 (IsA trichuriasis infestation) (STV 1.0 0.9091)) +(: cnet_isa_b0849537ce (IsA trichy mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_4da7d2c412 (IsA trick device) (STV 1.0 0.9091)) +(: cnet_isa_a91b092b52 (IsA trick dishonesty) (STV 1.0 0.9091)) +(: cnet_isa_75b8cc8078 (IsA trick turn) (STV 1.0 0.9091)) +(: cnet_isa_9339f96fa4 (IsA trick shift) (STV 1.0 0.9091)) +(: cnet_isa_5eec42230c (IsA trick_or_treat request) (STV 1.0 0.9091)) +(: cnet_isa_b9e1916f7b (IsA trickery deception) (STV 1.0 0.9091)) +(: cnet_isa_d1d0286c85 (IsA trickery misrepresentation) (STV 1.0 0.9091)) +(: cnet_isa_4da511db94 (IsA trickiness complexity) (STV 1.0 0.9091)) +(: cnet_isa_fde7e1f9bb (IsA trickster spiritual_being) (STV 1.0 0.9091)) +(: cnet_isa_7344eac465 (IsA triclinium dining_room) (STV 1.0 0.9091)) +(: cnet_isa_2a75dbf0fa (IsA triclinium dining_table) (STV 1.0 0.9091)) +(: cnet_isa_ed8aaa044d (IsA tricolor flag) (STV 1.0 0.9091)) +(: cnet_isa_6ee54284a5 (IsA tricolor_television_tube color_tube) (STV 1.0 0.9091)) +(: cnet_isa_e064bcfbf9 (IsA tricorn cocked_hat) (STV 1.0 0.9091)) +(: cnet_isa_eb1fe100f4 (IsA tricot knit) (STV 1.0 0.9091)) +(: cnet_isa_56a55617c9 (IsA tricuspid_valve atrioventricular_valve) (STV 1.0 0.9091)) +(: cnet_isa_b762e618bf (IsA tricycle wheeled_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_459d3bc1b2 (IsA tricyclic antidepressant) (STV 1.0 0.9091)) +(: cnet_isa_4961f55724 (IsA tridacna mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_713e1b2478 (IsA tridacnidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_4b188eb8d0 (IsA trident spear) (STV 1.0 0.9091)) +(: cnet_isa_9968647dd9 (IsA tridymite mineral) (STV 1.0 0.9091)) +(: cnet_isa_68296b2c5e (IsA trier judge) (STV 1.0 0.9091)) +(: cnet_isa_6e0790614c (IsA trier person) (STV 1.0 0.9091)) +(: cnet_isa_628298b0fb (IsA trifle pudding) (STV 1.0 0.9091)) +(: cnet_isa_a09588b4e1 (IsA trifler idler) (STV 1.0 0.9091)) +(: cnet_isa_6638b0a658 (IsA trifoliate_orange tree) (STV 1.0 0.9091)) +(: cnet_isa_f67f2b415e (IsA trifoliolate_leaf compound_leaf) (STV 1.0 0.9091)) +(: cnet_isa_7498454833 (IsA trifolium rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_c16e1e345d (IsA trifurcation branching) (STV 1.0 0.9091)) +(: cnet_isa_66f06cb385 (IsA triga fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_0e20765e99 (IsA trigeminal cranial_nerve) (STV 1.0 0.9091)) +(: cnet_isa_761f9a61b9 (IsA trigeminal_neuralgia neuralgia) (STV 1.0 0.9091)) +(: cnet_isa_5138c8bc08 (IsA trigger causing) (STV 1.0 0.9091)) +(: cnet_isa_376dafb6aa (IsA trigger device) (STV 1.0 0.9091)) +(: cnet_isa_55e145ef51 (IsA triggerfish plectognath) (STV 1.0 0.9091)) +(: cnet_isa_a72fc96616 (IsA triglidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_d71fb963df (IsA triglinae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_26f1d82eef (IsA triglochin monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_950bdb7c1d (IsA triglyceride glyceride) (STV 1.0 0.9091)) +(: cnet_isa_4ea0b91add (IsA triglyceride lipid) (STV 1.0 0.9091)) +(: cnet_isa_ab2d4a0c9c (IsA trigon lyre) (STV 1.0 0.9091)) +(: cnet_isa_395475daac (IsA trigonella rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_f66085e1da (IsA trigonometric_function mapping) (STV 1.0 0.9091)) +(: cnet_isa_ceb9ac3147 (IsA trigonometrician mathematician) (STV 1.0 0.9091)) +(: cnet_isa_7f0d317168 (IsA trigonometry pure_mathematic) (STV 1.0 0.9091)) +(: cnet_isa_d089c7b4dd (IsA trigram written_word) (STV 1.0 0.9091)) +(: cnet_isa_c6a1931390 (IsA triiodothyronine thyroid_hormone) (STV 1.0 0.9091)) +(: cnet_isa_bcdda7f9db (IsA trilisa asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_947ad9582d (IsA trill articulation) (STV 1.0 0.9091)) +(: cnet_isa_01a9ccf75d (IsA trill note) (STV 1.0 0.9091)) +(: cnet_isa_e06e6a4f26 (IsA trilliaceae liliid_monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_c0f0d7cc91 (IsA trillion large_integer) (STV 1.0 0.9091)) +(: cnet_isa_8e424d4772 (IsA trillium liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_a575d007f0 (IsA trilobite arthropod) (STV 1.0 0.9091)) +(: cnet_isa_0910b5db82 (IsA trilogy trio) (STV 1.0 0.9091)) +(: cnet_isa_674c30d72b (IsA trim cut) (STV 1.0 0.9091)) +(: cnet_isa_f76a0d3edf (IsA trim attitude) (STV 1.0 0.9091)) +(: cnet_isa_e2924c8af4 (IsA trim neatness) (STV 1.0 0.9091)) +(: cnet_isa_949707ff54 (IsA trimaran sailboat) (STV 1.0 0.9091)) +(: cnet_isa_ae04e48bed (IsA trimer polymer) (STV 1.0 0.9091)) +(: cnet_isa_68b9c83d27 (IsA trimester term) (STV 1.0 0.9091)) +(: cnet_isa_5965d8891b (IsA trimester school_term) (STV 1.0 0.9091)) +(: cnet_isa_ac74f0b145 (IsA trimester time_period) (STV 1.0 0.9091)) +(: cnet_isa_0b0173a3ef (IsA trimmer capacitor) (STV 1.0 0.9091)) +(: cnet_isa_e5f2bc6c17 (IsA trimmer joist) (STV 1.0 0.9091)) +(: cnet_isa_26728073d0 (IsA trimmer machine) (STV 1.0 0.9091)) +(: cnet_isa_7848932c71 (IsA trimmer_arch arch) (STV 1.0 0.9091)) +(: cnet_isa_ea5b4ba1fb (IsA trimming decoration) (STV 1.0 0.9091)) +(: cnet_isa_05f57999d9 (IsA trimming adornment) (STV 1.0 0.9091)) +(: cnet_isa_e287ff86dd (IsA trimorphodon reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_e3164c0791 (IsA trine_immersion immersion) (STV 1.0 0.9091)) +(: cnet_isa_f6cfaa091a (IsA trinecte fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_895a571552 (IsA tringa bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_ad1ae9b7f6 (IsA trinidad_and_tobago_dollar dollar) (STV 1.0 0.9091)) +(: cnet_isa_8fc4413b7b (IsA trinidadian inhabitant) (STV 1.0 0.9091)) +(: cnet_isa_d4916403cf (IsA trinitarian disciple) (STV 1.0 0.9091)) +(: cnet_isa_c607629cb6 (IsA trinitarianism protestantism) (STV 1.0 0.9091)) +(: cnet_isa_1e40698ca5 (IsA trinity_sunday christian_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_9b04db711f (IsA trinketry collection) (STV 1.0 0.9091)) +(: cnet_isa_e769e0dab2 (IsA trio musical_composition) (STV 1.0 0.9091)) +(: cnet_isa_7057343d43 (IsA trio gathering) (STV 1.0 0.9091)) +(: cnet_isa_1bb7e93f05 (IsA trio musical_organization) (STV 1.0 0.9091)) +(: cnet_isa_83e80cec57 (IsA trio set) (STV 1.0 0.9091)) +(: cnet_isa_9a53586dd7 (IsA triode tube) (STV 1.0 0.9091)) +(: cnet_isa_0a1a4a5391 (IsA triolein glyceryl_ester) (STV 1.0 0.9091)) +(: cnet_isa_f1283471ab (IsA trionychidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_39ad5c4bcb (IsA trionyx reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_1280abcdf8 (IsA triopidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_a69dc3b24a (IsA triop arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_0e40fed175 (IsA triose monosaccharide) (STV 1.0 0.9091)) +(: cnet_isa_3d153703a2 (IsA triostium asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_29a9ff1551 (IsA trioxide oxide) (STV 1.0 0.9091)) +(: cnet_isa_14ac40228b (IsA trip blunder) (STV 1.0 0.9091)) +(: cnet_isa_5708380d8e (IsA trip journey) (STV 1.0 0.9091)) +(: cnet_isa_62ce1f181b (IsA trip step) (STV 1.0 0.9091)) +(: cnet_isa_45190b6e0d (IsA trip experience) (STV 1.0 0.9091)) +(: cnet_isa_f91cf37ae2 (IsA trip hallucination) (STV 1.0 0.9091)) +(: cnet_isa_344f474029 (IsA trip_line rope) (STV 1.0 0.9091)) +(: cnet_isa_8db7a56aa4 (IsA trip_wire wire) (STV 1.0 0.9091)) +(: cnet_isa_9d00c83cbd (IsA trip_wire military_unit) (STV 1.0 0.9091)) +(: cnet_isa_bc4089dbd6 (IsA tripalmitin glyceryl_ester) (STV 1.0 0.9091)) +(: cnet_isa_a46c5dd667 (IsA tripe variety_meat) (STV 1.0 0.9091)) +(: cnet_isa_b2d251b07b (IsA triphammer hammer) (STV 1.0 0.9091)) +(: cnet_isa_a9cca17fae (IsA triphosphopyridine pyridine) (STV 1.0 0.9091)) +(: cnet_isa_0d0dbd3744 (IsA triphosphopyridine_nucleotide coenzyme) (STV 1.0 0.9091)) +(: cnet_isa_dca085cf05 (IsA triphosphoric_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_0f6b1f589c (IsA triple base_hit) (STV 1.0 0.9091)) +(: cnet_isa_b64a0ade31 (IsA triple multiple) (STV 1.0 0.9091)) +(: cnet_isa_0cdf3b317f (IsA triple_cream cheese) (STV 1.0 0.9091)) +(: cnet_isa_05f43e4dbb (IsA triple_crown championship) (STV 1.0 0.9091)) +(: cnet_isa_4bbfd0acca (IsA triple_crown_season baseball_season) (STV 1.0 0.9091)) +(: cnet_isa_a9f6a2eb83 (IsA triple_jump athletic_contest) (STV 1.0 0.9091)) +(: cnet_isa_113612dabd (IsA triple_play baseball_play) (STV 1.0 0.9091)) +(: cnet_isa_74cf793f4b (IsA triple_sec orange_liqueur) (STV 1.0 0.9091)) +(: cnet_isa_338eb4cfc4 (IsA triple_spacing typing) (STV 1.0 0.9091)) +(: cnet_isa_49aa09988a (IsA triple_time musical_time) (STV 1.0 0.9091)) +(: cnet_isa_3050451317 (IsA triplet sibling) (STV 1.0 0.9091)) +(: cnet_isa_83e96d3cd5 (IsA triplet_code genetic_code) (STV 1.0 0.9091)) +(: cnet_isa_6e977db5c4 (IsA tripletail percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_baf315138b (IsA tripleurospermum asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8820ae32f4 (IsA triplicate copy) (STV 1.0 0.9091)) +(: cnet_isa_8a436cf0df (IsA triplicity trio) (STV 1.0 0.9091)) +(: cnet_isa_29e75b2d08 (IsA triplicity magnitude) (STV 1.0 0.9091)) +(: cnet_isa_caafb1d8f1 (IsA tripling multiplication) (STV 1.0 0.9091)) +(: cnet_isa_57d1a0dca7 (IsA triplochiton dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_52ec286e37 (IsA tripod device_for_stabilizing_camera) (STV 1.0 0.9091)) +(: cnet_isa_30e0c65950 (IsA tripod rack) (STV 1.0 0.9091)) +(: cnet_isa_2d9610aa72 (IsA tripo examination) (STV 1.0 0.9091)) +(: cnet_isa_7acaada9a5 (IsA tripper catch) (STV 1.0 0.9091)) +(: cnet_isa_5ec7d9d18c (IsA tripper drug_user) (STV 1.0 0.9091)) +(: cnet_isa_a76fb61ae2 (IsA triptych art) (STV 1.0 0.9091)) +(: cnet_isa_82af305cd2 (IsA triquetral carpal_bone) (STV 1.0 0.9091)) +(: cnet_isa_8642d4976f (IsA trireme galley) (STV 1.0 0.9091)) +(: cnet_isa_3b5b691e5b (IsA trisaccharide oligosaccharide) (STV 1.0 0.9091)) +(: cnet_isa_573dea23c4 (IsA triskaidekaphobia simple_phobia) (STV 1.0 0.9091)) +(: cnet_isa_ba2838db46 (IsA triskelion design) (STV 1.0 0.9091)) +(: cnet_isa_321b6ded84 (IsA trismus spasm) (STV 1.0 0.9091)) +(: cnet_isa_4b30657dca (IsA trisodium_phosphate builder) (STV 1.0 0.9091)) +(: cnet_isa_ae84663972 (IsA trisomy chromosomal_aberration) (STV 1.0 0.9091)) +(: cnet_isa_47e6508b74 (IsA tristearin glyceryl_ester) (STV 1.0 0.9091)) +(: cnet_isa_07b17c7284 (IsA trisyllable word) (STV 1.0 0.9091)) +(: cnet_isa_154a22fdda (IsA tritanopia yellow_blue_dichromacy) (STV 1.0 0.9091)) +(: cnet_isa_d2624319c3 (IsA triteness unoriginality) (STV 1.0 0.9091)) +(: cnet_isa_8307f3988d (IsA tritheism heresy) (STV 1.0 0.9091)) +(: cnet_isa_e19b6d9e88 (IsA tritheism polytheism) (STV 1.0 0.9091)) +(: cnet_isa_e573bc0500 (IsA tritheist religionist) (STV 1.0 0.9091)) +(: cnet_isa_08ed74f88e (IsA triticum monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d49621fdba (IsA tritium hydrogen) (STV 1.0 0.9091)) +(: cnet_isa_9bca2d26b5 (IsA triton seasnail) (STV 1.0 0.9091)) +(: cnet_isa_0f96332e92 (IsA triturus amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_9a1e86c109 (IsA triumph exultation) (STV 1.0 0.9091)) +(: cnet_isa_f7d049b5e8 (IsA triumphal_arch arch) (STV 1.0 0.9091)) +(: cnet_isa_4c795f5fee (IsA triumphal_arch memorial) (STV 1.0 0.9091)) +(: cnet_isa_61a7b58fc9 (IsA triumvir administrator) (STV 1.0 0.9091)) +(: cnet_isa_8809c2400c (IsA triumvirate trio) (STV 1.0 0.9091)) +(: cnet_isa_615d9b7c17 (IsA trivet base) (STV 1.0 0.9091)) +(: cnet_isa_b848aec3f8 (IsA trivial_pursuit board_game) (STV 1.0 0.9339)) +(: cnet_isa_1eaae604d5 (IsA triviality object) (STV 1.0 0.9091)) +(: cnet_isa_98592284ee (IsA trivium humanistic_discipline) (STV 1.0 0.9091)) +(: cnet_isa_cb3049d0c5 (IsA trochanter process) (STV 1.0 0.9091)) +(: cnet_isa_5db48a01a1 (IsA trochee metrical_foot) (STV 1.0 0.9091)) +(: cnet_isa_fdbc98fedc (IsA trochilidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_a3b98f4b67 (IsA trochlear cranial_nerve) (STV 1.0 0.9091)) +(: cnet_isa_7a1dac4ad3 (IsA trogium arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_c0f281238f (IsA troglodyte bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_7cae9b6154 (IsA troglodytidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_2b81cd5437 (IsA trogon bird) (STV 1.0 0.9091)) +(: cnet_isa_e350c1f8e3 (IsA trogonidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_2f3b8e5897 (IsA trogoniforme animal_order) (STV 1.0 0.9091)) +(: cnet_isa_fe67c95906 (IsA troika carriage) (STV 1.0 0.9091)) +(: cnet_isa_351444e7d6 (IsA troika triumvirate) (STV 1.0 0.9091)) +(: cnet_isa_c93eedf6cc (IsA trojan malevolent_program) (STV 1.0 0.9091)) +(: cnet_isa_2f9d8883b0 (IsA troll angling) (STV 1.0 0.9091)) +(: cnet_isa_7aa8999a8a (IsA troll fisherman_s_lure) (STV 1.0 0.9091)) +(: cnet_isa_28597e6857 (IsA troll mythical_monster) (STV 1.0 0.9091)) +(: cnet_isa_dddd49a833 (IsA trolley_line transit_line) (STV 1.0 0.9091)) +(: cnet_isa_13006a1c4b (IsA trolleybus bus) (STV 1.0 0.9091)) +(: cnet_isa_aca3eef2a3 (IsA trollius magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d9045e52d8 (IsA troll monster) (STV 1.0 0.9091)) +(: cnet_isa_79c3a296b0 (IsA trombicula arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_c6d5e61237 (IsA trombiculiasis infestation) (STV 1.0 0.9091)) +(: cnet_isa_064976109a (IsA trombiculid mite) (STV 1.0 0.9091)) +(: cnet_isa_c078d8a4f5 (IsA trombiculidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_73bdffc8f0 (IsA trombidiid mite) (STV 1.0 0.9091)) +(: cnet_isa_45a7022722 (IsA trombidiidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_828b5ca5fc (IsA trombone musical_instrument) (STV 1.0 0.9339)) +(: cnet_isa_6129f6f226 (IsA trombone brass) (STV 1.0 0.9091)) +(: cnet_isa_bc59ffd88a (IsA trombonist musician) (STV 1.0 0.9091)) +(: cnet_isa_380b599802 (IsA trompe_l_oeil painting) (STV 1.0 0.9091)) +(: cnet_isa_162d2e7de3 (IsA trompillo nightshade) (STV 1.0 0.9091)) +(: cnet_isa_ba9797c902 (IsA troop army_unit) (STV 1.0 0.9091)) +(: cnet_isa_5de226cf13 (IsA troop crowd) (STV 1.0 0.9091)) +(: cnet_isa_fccf1652b9 (IsA troop unit) (STV 1.0 0.9091)) +(: cnet_isa_ff462fcc4a (IsA troop_carrier military_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_e3efe8efba (IsA troop_movement movement) (STV 1.0 0.9091)) +(: cnet_isa_f7b46af29d (IsA trooper policeman) (STV 1.0 0.9091)) +(: cnet_isa_0cb9a7bab6 (IsA troopship ship) (STV 1.0 0.9091)) +(: cnet_isa_2162de7ef4 (IsA troopship troop_carrier) (STV 1.0 0.9091)) +(: cnet_isa_0c59c81e16 (IsA tropaeolaceae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_934ba5b82a (IsA tropaeolum rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a789377f57 (IsA trope rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_cafb0c610d (IsA trophobiosis symbiosis) (STV 1.0 0.9091)) +(: cnet_isa_5323f886eb (IsA trophoblast membrane) (STV 1.0 0.9091)) +(: cnet_isa_1bd1db20ec (IsA trophoblastic_cancer carcinoma) (STV 1.0 0.9091)) +(: cnet_isa_112f08f277 (IsA trophotropism tropism) (STV 1.0 0.9091)) +(: cnet_isa_4c840997a3 (IsA trophozoite sporozoan) (STV 1.0 0.9091)) +(: cnet_isa_7f3ef407fb (IsA trophy award) (STV 1.0 0.9091)) +(: cnet_isa_450ddd2d28 (IsA trophy_case case) (STV 1.0 0.9091)) +(: cnet_isa_d4505d15d8 (IsA trophy_wife wife) (STV 1.0 0.9091)) +(: cnet_isa_c55669ffbe (IsA tropic latitude) (STV 1.0 0.9091)) +(: cnet_isa_16c17bf78b (IsA tropic_bird pelecaniform_seabird) (STV 1.0 0.9091)) +(: cnet_isa_2a382d8229 (IsA tropical_medicine medicine) (STV 1.0 0.9091)) +(: cnet_isa_ad4bb77ae6 (IsA tropical_pitcher_plant pitcher_plant) (STV 1.0 0.9091)) +(: cnet_isa_8902fe1fb6 (IsA tropical_prawn decapod_crustacean) (STV 1.0 0.9091)) +(: cnet_isa_002adb1d25 (IsA tropical_rain_forest rain_forest) (STV 1.0 0.9091)) +(: cnet_isa_032d50e86f (IsA tropidoclonion reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_adce551bec (IsA tropism reaction) (STV 1.0 0.9091)) +(: cnet_isa_2fa74fa9e0 (IsA troponym word) (STV 1.0 0.9091)) +(: cnet_isa_ad30042913 (IsA troponymy collection) (STV 1.0 0.9091)) +(: cnet_isa_0bdf9e96b7 (IsA troponymy semantic_relation) (STV 1.0 0.9091)) +(: cnet_isa_39389de3b8 (IsA tropopause layer) (STV 1.0 0.9091)) +(: cnet_isa_f77ef9d3c3 (IsA troposphere layer) (STV 1.0 0.9091)) +(: cnet_isa_53a44c7096 (IsA trot gait) (STV 1.0 0.9091)) +(: cnet_isa_a868c22920 (IsA trotskyism communism) (STV 1.0 0.9091)) +(: cnet_isa_85e107c078 (IsA trotskyist radical) (STV 1.0 0.9091)) +(: cnet_isa_c352a79706 (IsA trotter animal_foot) (STV 1.0 0.9091)) +(: cnet_isa_ea8e7a0976 (IsA trotting_horse racehorse) (STV 1.0 0.9091)) +(: cnet_isa_f46531bbb7 (IsA trou_de_loup pit) (STV 1.0 0.9091)) +(: cnet_isa_fa65f7f621 (IsA trouble effort) (STV 1.0 0.9091)) +(: cnet_isa_38596b4ef4 (IsA trouble difficulty) (STV 1.0 0.9091)) +(: cnet_isa_d2d29461b3 (IsA trouble happening) (STV 1.0 0.9091)) +(: cnet_isa_e9fdea79c4 (IsA trouble pregnancy) (STV 1.0 0.9091)) +(: cnet_isa_f581f2486c (IsA trouble_spot area) (STV 1.0 0.9091)) +(: cnet_isa_bef468740b (IsA troublemaker unwelcome_person) (STV 1.0 0.9091)) +(: cnet_isa_dec3f242fe (IsA troubleshooter maintenance_man) (STV 1.0 0.9091)) +(: cnet_isa_715386b467 (IsA troublesomeness difficulty) (STV 1.0 0.9091)) +(: cnet_isa_214731348e (IsA trough receptacle) (STV 1.0 0.9091)) +(: cnet_isa_f9f58148c7 (IsA trough natural_depression) (STV 1.0 0.9091)) +(: cnet_isa_0b1038991d (IsA trouper good_person) (STV 1.0 0.9091)) +(: cnet_isa_23d7d931b9 (IsA trouser garment) (STV 1.0 0.9091)) +(: cnet_isa_9329fa95f7 (IsA trouser_cuff cuff) (STV 1.0 0.9091)) +(: cnet_isa_e721f55a29 (IsA trouser_press home_appliance) (STV 1.0 0.9091)) +(: cnet_isa_7196951ea7 (IsA trouser underpant) (STV 1.0 0.9091)) +(: cnet_isa_3551632874 (IsA trousseau outfit) (STV 1.0 0.9091)) +(: cnet_isa_5d9bcfb753 (IsA trout fish) (STV 1.0 0.9748)) +(: cnet_isa_d95a76ee1d (IsA trout food_fish) (STV 1.0 0.9091)) +(: cnet_isa_7292b62c6a (IsA trout salmonid) (STV 1.0 0.9091)) +(: cnet_isa_238f43d405 (IsA trowel hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_bd5f4ff80b (IsA troy system_of_weight) (STV 1.0 0.9091)) +(: cnet_isa_454c1a5258 (IsA troy_pound apothecary_unit) (STV 1.0 0.9091)) +(: cnet_isa_5a8ca93a80 (IsA troy_pound troy_unit) (STV 1.0 0.9091)) +(: cnet_isa_3119b27cdc (IsA troy_unit weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_5e03db346d (IsA truancy nonattendance) (STV 1.0 0.9091)) +(: cnet_isa_b6dc52d16f (IsA truant absentee) (STV 1.0 0.9091)) +(: cnet_isa_06897d9135 (IsA truck automobile) (STV 1.0 0.9091)) +(: cnet_isa_d50355298b (IsA truck bigger_than_car) (STV 1.0 0.9339)) +(: cnet_isa_04a801d876 (IsA truck vehicle) (STV 1.0 0.9454)) +(: cnet_isa_682606d728 (IsA truck vehicle_type) (STV 1.0 0.9091)) +(: cnet_isa_f546b93b98 (IsA truck vehicle_with_seat_inside) (STV 1.0 0.9091)) +(: cnet_isa_a13f01fbb0 (IsA truck motor_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_73e22ef465 (IsA truck_bed floor) (STV 1.0 0.9091)) +(: cnet_isa_5c89c0676d (IsA truck_dealer dealer) (STV 1.0 0.9091)) +(: cnet_isa_259e67ac91 (IsA truck_farm farm) (STV 1.0 0.9091)) +(: cnet_isa_e3cb378fac (IsA truck_farming farming) (STV 1.0 0.9091)) +(: cnet_isa_6304c469df (IsA truck_stop service_station) (STV 1.0 0.9091)) +(: cnet_isa_78ad5f755f (IsA truck_traffic vehicular_traffic) (STV 1.0 0.9091)) +(: cnet_isa_94dbd20739 (IsA truckage fee) (STV 1.0 0.9091)) +(: cnet_isa_b71c4ef35f (IsA trucking_company shipping_company) (STV 1.0 0.9091)) +(: cnet_isa_43d6f399ea (IsA trucking_industry industry) (STV 1.0 0.9091)) +(: cnet_isa_bdc70bdc53 (IsA truckling obedience) (STV 1.0 0.9091)) +(: cnet_isa_b99037277e (IsA truculence aggressiveness) (STV 1.0 0.9091)) +(: cnet_isa_4e7680a3eb (IsA trudge hike) (STV 1.0 0.9091)) +(: cnet_isa_a90e3435cd (IsA trudger pedestrian) (STV 1.0 0.9091)) +(: cnet_isa_1df3eada8f (IsA true alignment) (STV 1.0 0.9091)) +(: cnet_isa_c3b90fa382 (IsA true_anomaly angular_distance) (STV 1.0 0.9091)) +(: cnet_isa_be327d3eac (IsA true_bill indictment) (STV 1.0 0.9091)) +(: cnet_isa_01de29e187 (IsA true_blackberry blackberry) (STV 1.0 0.9091)) +(: cnet_isa_40c7d7111d (IsA true_bug hemipterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_3300de3220 (IsA true_frog frog) (STV 1.0 0.9091)) +(: cnet_isa_5e1ab176f7 (IsA true_fungus fungus) (STV 1.0 0.9091)) +(: cnet_isa_48dbd257c7 (IsA true_laurel laurel) (STV 1.0 0.9091)) +(: cnet_isa_70e7f5ee4c (IsA true_lobster lobster) (STV 1.0 0.9091)) +(: cnet_isa_21312ed7c2 (IsA true_mahogany mahogany) (STV 1.0 0.9091)) +(: cnet_isa_54db4392f2 (IsA true_marmoset marmoset) (STV 1.0 0.9091)) +(: cnet_isa_077c530c2a (IsA true_pepper vine) (STV 1.0 0.9091)) +(: cnet_isa_0ddf31837d (IsA true_rib rib) (STV 1.0 0.9091)) +(: cnet_isa_cce1acce34 (IsA true_sago_palm sago_palm) (STV 1.0 0.9091)) +(: cnet_isa_7546cf10f9 (IsA true_slime_mold slime_mold) (STV 1.0 0.9091)) +(: cnet_isa_dbc3b0afd0 (IsA true_toad frog) (STV 1.0 0.9091)) +(: cnet_isa_2dd1707876 (IsA true_vocal_cord vocal_cord) (STV 1.0 0.9091)) +(: cnet_isa_120c8c96f6 (IsA trueness exactness) (STV 1.0 0.9091)) +(: cnet_isa_5072d2cf1e (IsA truffle candy) (STV 1.0 0.9091)) +(: cnet_isa_6780d9eab9 (IsA truffle vegetable) (STV 1.0 0.9091)) +(: cnet_isa_6baf044eea (IsA truffle fungus) (STV 1.0 0.9091)) +(: cnet_isa_4875883536 (IsA truism truth) (STV 1.0 0.9091)) +(: cnet_isa_c420c68ecc (IsA truman_doctrine foreign_policy) (STV 1.0 0.9091)) +(: cnet_isa_37c312a99d (IsA trump playing_card) (STV 1.0 0.9091)) +(: cnet_isa_9f61e653fd (IsA trump suit) (STV 1.0 0.9091)) +(: cnet_isa_8ba9def967 (IsA trumpet brass_instrument) (STV 1.0 0.9091)) +(: cnet_isa_8f6b1ad46c (IsA trumpet instrument) (STV 1.0 0.9524)) +(: cnet_isa_59edce8ebc (IsA trumpet musical_instrument) (STV 1.0 0.9339)) +(: cnet_isa_33f6620e19 (IsA trumpet_arch squinch) (STV 1.0 0.9091)) +(: cnet_isa_30d04328e2 (IsA trumpet_creeper bignoniaceae) (STV 1.0 0.9091)) +(: cnet_isa_20d65c0315 (IsA trumpet_honeysuckle honeysuckle) (STV 1.0 0.9091)) +(: cnet_isa_044f3be588 (IsA trumpet_section brass_section) (STV 1.0 0.9091)) +(: cnet_isa_1d21603645 (IsA trumpeter swan) (STV 1.0 0.9091)) +(: cnet_isa_8c1d7582f1 (IsA trumpeter wading_bird) (STV 1.0 0.9091)) +(: cnet_isa_84d1d836f4 (IsA trumpeter musician) (STV 1.0 0.9091)) +(: cnet_isa_4f0c238542 (IsA trumpetfish teleost_fish) (STV 1.0 0.9091)) +(: cnet_isa_58c48995e8 (IsA trumpetwood angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_53ddf76463 (IsA truncated_cone frustum) (STV 1.0 0.9091)) +(: cnet_isa_6a478ba477 (IsA truncated_pyramid frustum) (STV 1.0 0.9091)) +(: cnet_isa_b3216b527e (IsA truncation carving) (STV 1.0 0.9091)) +(: cnet_isa_65c984edfb (IsA truncation shortening) (STV 1.0 0.9091)) +(: cnet_isa_ef8ccf725c (IsA truncation_error miscalculation) (STV 1.0 0.9091)) +(: cnet_isa_c483e4ab13 (IsA truncheon club) (STV 1.0 0.9091)) +(: cnet_isa_ef3376e73f (IsA truncocolumella fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_55beb1a68a (IsA truncocolumella_citrina false_truffle) (STV 1.0 0.9091)) +(: cnet_isa_6d14153186 (IsA trundle roller) (STV 1.0 0.9091)) +(: cnet_isa_a08a7aac43 (IsA trundle wheel) (STV 1.0 0.9091)) +(: cnet_isa_253125f317 (IsA trundle_bed bed) (STV 1.0 0.9091)) +(: cnet_isa_0eed69f7a6 (IsA trunk part_of_car) (STV 1.0 0.9091)) +(: cnet_isa_685cda1e6b (IsA trunk baggage) (STV 1.0 0.9091)) +(: cnet_isa_e5c3e0e355 (IsA trunk stalk) (STV 1.0 0.9091)) +(: cnet_isa_f7c14ad00d (IsA trunk_hose breeche) (STV 1.0 0.9091)) +(: cnet_isa_97f1c61086 (IsA trunk_lid lid) (STV 1.0 0.9091)) +(: cnet_isa_3b1e7b9557 (IsA trunk_line line) (STV 1.0 0.9091)) +(: cnet_isa_472b7d6662 (IsA trunk_line telephone_line) (STV 1.0 0.9091)) +(: cnet_isa_f2d6deab95 (IsA truss framework) (STV 1.0 0.9091)) +(: cnet_isa_25eb659260 (IsA truss bandage) (STV 1.0 0.9091)) +(: cnet_isa_9fe76c0bfa (IsA truss_bridge bridge) (STV 1.0 0.9091)) +(: cnet_isa_e8be3ea93c (IsA trust trait) (STV 1.0 0.9091)) +(: cnet_isa_aaa8964d24 (IsA trust consortium) (STV 1.0 0.9091)) +(: cnet_isa_70eb798333 (IsA trust property) (STV 1.0 0.9091)) +(: cnet_isa_ec6d5ec2c0 (IsA trust_busting government) (STV 1.0 0.9091)) +(: cnet_isa_37f432ffe3 (IsA trust_company financial_institution) (STV 1.0 0.9091)) +(: cnet_isa_0a2daa3640 (IsA trust_deed legal_document) (STV 1.0 0.9091)) +(: cnet_isa_05a18b7da3 (IsA trust_fund fund) (STV 1.0 0.9091)) +(: cnet_isa_cde8b93ae0 (IsA trust_territory district) (STV 1.0 0.9091)) +(: cnet_isa_c3e45db88e (IsA trustbuster agent) (STV 1.0 0.9091)) +(: cnet_isa_067600a6d8 (IsA trustee fiduciary) (STV 1.0 0.9091)) +(: cnet_isa_9effa7fdb5 (IsA trustee_beneficiary_relation fiduciary_relation) (STV 1.0 0.9091)) +(: cnet_isa_67aa1811b3 (IsA trusteeship position) (STV 1.0 0.9091)) +(: cnet_isa_550f24e8bc (IsA trusteeship_council council) (STV 1.0 0.9091)) +(: cnet_isa_f1850b84eb (IsA trustworthiness trait) (STV 1.0 0.9091)) +(: cnet_isa_8c7e52f4f9 (IsA trusty convict) (STV 1.0 0.9091)) +(: cnet_isa_e7af3678c4 (IsA truth out_there) (STV 1.0 0.9454)) +(: cnet_isa_7542b934ad (IsA truth stranger_than_fiction) (STV 1.0 0.9091)) +(: cnet_isa_73ec37b09e (IsA truth fact) (STV 1.0 0.9091)) +(: cnet_isa_c582fe2195 (IsA truth statement) (STV 1.0 0.9091)) +(: cnet_isa_f45abe7dfa (IsA truth actuality) (STV 1.0 0.9091)) +(: cnet_isa_a15f16d7ce (IsA truth_serum intravenous_anesthetic) (STV 1.0 0.9091)) +(: cnet_isa_91a11e6a83 (IsA truthfulness honesty) (STV 1.0 0.9091)) +(: cnet_isa_cd712069fb (IsA try another_name_for_effort) (STV 1.0 0.9091)) +(: cnet_isa_27aa81fe07 (IsA try_square square) (STV 1.0 0.9091)) +(: cnet_isa_fa51c23584 (IsA trypetidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_d304476e44 (IsA trypsin enzyme) (STV 1.0 0.9091)) +(: cnet_isa_a2fc9dfb4b (IsA trypsinogen trypsin) (STV 1.0 0.9091)) +(: cnet_isa_f525b8beb0 (IsA tryptophan essential_amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_7c17f2b6dd (IsA tryst date) (STV 1.0 0.9091)) +(: cnet_isa_5b80917967 (IsA tsetse_fly fly) (STV 1.0 0.9091)) +(: cnet_isa_7b2dd36526 (IsA tsimshian penutian) (STV 1.0 0.9091)) +(: cnet_isa_cb2448a236 (IsA tsoris distress) (STV 1.0 0.9091)) +(: cnet_isa_1fe978f8ad (IsA tsouic formosan) (STV 1.0 0.9091)) +(: cnet_isa_4786c59fcd (IsA tsuga gymnosperm_genus) (STV 1.0 0.9091)) +(: cnet_isa_c0faa98569 (IsA tsunami calamity) (STV 1.0 0.9091)) +(: cnet_isa_f03b744df4 (IsA tsunami wave) (STV 1.0 0.9091)) +(: cnet_isa_acedd8f1d9 (IsA tsuris trouble) (STV 1.0 0.9091)) +(: cnet_isa_c6f9f8fe16 (IsA tsutsugamushi_disease rickettsial_disease) (STV 1.0 0.9091)) +(: cnet_isa_46b87f9885 (IsA tswana sotho) (STV 1.0 0.9091)) +(: cnet_isa_afaa4ba1e7 (IsA tuareg berber) (STV 1.0 0.9091)) +(: cnet_isa_89e41181ce (IsA tuareg african) (STV 1.0 0.9091)) +(: cnet_isa_0181428c4d (IsA tuatara diapsid) (STV 1.0 0.9091)) +(: cnet_isa_02a8a161a1 (IsA tuatha_de celtic_deity) (STV 1.0 0.9091)) +(: cnet_isa_caec67c87e (IsA tub vessel) (STV 1.0 0.9091)) +(: cnet_isa_3a9c6228b1 (IsA tub containerful) (STV 1.0 0.9091)) +(: cnet_isa_97d8d8652a (IsA tub_gurnard gurnard) (STV 1.0 0.9091)) +(: cnet_isa_e6e44ae65e (IsA tub_thumper orator) (STV 1.0 0.9091)) +(: cnet_isa_7f27c0ae29 (IsA tuba brass_instrument) (STV 1.0 0.9454)) +(: cnet_isa_4e1093e2ab (IsA tuba large_musical_instrument) (STV 1.0 0.9677)) +(: cnet_isa_51facaa9ca (IsA tuba musical_instrument) (STV 1.0 0.9740)) +(: cnet_isa_7f90402947 (IsA tubal_ligation ligation) (STV 1.0 0.9091)) +(: cnet_isa_a239cc04f0 (IsA tubal_ligation surgical_contraception) (STV 1.0 0.9091)) +(: cnet_isa_049ddc0817 (IsA tubal_pregnancy ectopic_pregnancy) (STV 1.0 0.9091)) +(: cnet_isa_8cb624701f (IsA tube structure) (STV 1.0 0.9091)) +(: cnet_isa_29762daa1d (IsA tube conduit) (STV 1.0 0.9091)) +(: cnet_isa_692dca4915 (IsA tube electronic_device) (STV 1.0 0.9091)) +(: cnet_isa_827bd5594d (IsA tube_foot foot) (STV 1.0 0.9091)) +(: cnet_isa_4e3892f0d2 (IsA tubeless pneumatic_tire) (STV 1.0 0.9091)) +(: cnet_isa_290ad2cf35 (IsA tuber fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_a2fbd0de16 (IsA tuber stalk) (STV 1.0 0.9091)) +(: cnet_isa_b88e45109b (IsA tuberaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_e84ba19444 (IsA tuberale fungus_order) (STV 1.0 0.9091)) +(: cnet_isa_dca9a3c1e4 (IsA tubercle lesion) (STV 1.0 0.9091)) +(: cnet_isa_5debe91859 (IsA tubercle_bacillus mycobacteria) (STV 1.0 0.9091)) +(: cnet_isa_04b5fd293e (IsA tubercularia fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_0830973e1a (IsA tuberculariaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_e62c607d0c (IsA tuberculin liquid) (STV 1.0 0.9091)) +(: cnet_isa_9c607ba4a6 (IsA tuberculin_test skin_test) (STV 1.0 0.9091)) +(: cnet_isa_43df49e4ed (IsA tuberculoid_leprosy leprosy) (STV 1.0 0.9091)) +(: cnet_isa_e8b43a21cd (IsA tuberculosis infectious_disease) (STV 1.0 0.9091)) +(: cnet_isa_598c9b1251 (IsA tuberose flower) (STV 1.0 0.9091)) +(: cnet_isa_5fde53f100 (IsA tuberosity process) (STV 1.0 0.9091)) +(: cnet_isa_cc94ac3d6a (IsA tuberous_begonia begonia) (STV 1.0 0.9091)) +(: cnet_isa_b80635fc37 (IsA tuberous_plant vascular_plant) (STV 1.0 0.9091)) +(: cnet_isa_f5c0b703ae (IsA tubocurarine alkaloid) (STV 1.0 0.9091)) +(: cnet_isa_6dc0271b9e (IsA tubocurarine neuromuscular_blocking_agent) (STV 1.0 0.9091)) +(: cnet_isa_05d973a2c7 (IsA tubocurarine plant_toxin) (STV 1.0 0.9091)) +(: cnet_isa_7feb6d3790 (IsA tubular_cavity cavity) (STV 1.0 0.9091)) +(: cnet_isa_ab25f55cee (IsA tubule tube) (STV 1.0 0.9091)) +(: cnet_isa_3058ff535b (IsA tubulidentata animal_order) (STV 1.0 0.9091)) +(: cnet_isa_b6cf6faafc (IsA tuck pleat) (STV 1.0 0.9091)) +(: cnet_isa_7fd43f98c4 (IsA tuck comestible) (STV 1.0 0.9091)) +(: cnet_isa_e601404940 (IsA tuck position) (STV 1.0 0.9091)) +(: cnet_isa_f75b0608b7 (IsA tuck_box box) (STV 1.0 0.9091)) +(: cnet_isa_0c7dd06563 (IsA tuck_shop confectionery) (STV 1.0 0.9091)) +(: cnet_isa_875ad4e35a (IsA tucker yoke) (STV 1.0 0.9091)) +(: cnet_isa_b53f8073a5 (IsA tucker sewer) (STV 1.0 0.9091)) +(: cnet_isa_5b079b2fc8 (IsA tucker_bag bag) (STV 1.0 0.9091)) +(: cnet_isa_6503e22d96 (IsA tudor dynasty) (STV 1.0 0.9091)) +(: cnet_isa_390ee978cc (IsA tudor ruler) (STV 1.0 0.9091)) +(: cnet_isa_da976b2cc4 (IsA tudor_arch arch) (STV 1.0 0.9091)) +(: cnet_isa_5ca70bb390 (IsA tudor_architecture perpendicular) (STV 1.0 0.9091)) +(: cnet_isa_5c8d7fbe4c (IsA tudung scarf) (STV 1.0 0.9091)) +(: cnet_isa_28255899f6 (IsA tuesday weekday) (STV 1.0 0.9091)) +(: cnet_isa_92aaf661cc (IsA tufa rock) (STV 1.0 0.9091)) +(: cnet_isa_114b160a33 (IsA tuff volcanic_rock) (STV 1.0 0.9091)) +(: cnet_isa_4b233e6cc1 (IsA tuft crest) (STV 1.0 0.9091)) +(: cnet_isa_b7b79a64e2 (IsA tuft bunch) (STV 1.0 0.9091)) +(: cnet_isa_678fa33a27 (IsA tufted_centaury centaury) (STV 1.0 0.9091)) +(: cnet_isa_8e64a86cac (IsA tufted_gentian fringed_gentian) (STV 1.0 0.9091)) +(: cnet_isa_4fafc0f956 (IsA tufted_puffin puffin) (STV 1.0 0.9091)) +(: cnet_isa_ac4a04546c (IsA tufted_titmouse titmouse) (STV 1.0 0.9091)) +(: cnet_isa_8c8d3b3b6c (IsA tufted_vetch vetch) (STV 1.0 0.9091)) +(: cnet_isa_c90fe31dd4 (IsA tug pull) (STV 1.0 0.9091)) +(: cnet_isa_195816abdd (IsA tug_of_war conflict) (STV 1.0 0.9091)) +(: cnet_isa_254c4c0d99 (IsA tug_of_war athletic_contest) (STV 1.0 0.9091)) +(: cnet_isa_a930068461 (IsA tugboat boat) (STV 1.0 0.9339)) +(: cnet_isa_7beb9d3055 (IsA tugrik mongolian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_a09d051bd8 (IsA tuille armor_plate) (STV 1.0 0.9091)) +(: cnet_isa_b915418456 (IsA tuition fee) (STV 1.0 0.9091)) +(: cnet_isa_d84fcfc1fe (IsA tularemia zoonosis) (STV 1.0 0.9091)) +(: cnet_isa_5175ff6f93 (IsA tulip flower) (STV 1.0 0.9091)) +(: cnet_isa_02e2f318b1 (IsA tulip liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_c5a18eb425 (IsA tulip_bed flowerbed) (STV 1.0 0.9091)) +(: cnet_isa_066307ba49 (IsA tulip_orchid orchid) (STV 1.0 0.9091)) +(: cnet_isa_3c13d1306b (IsA tulip_tree angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_3281ac5f28 (IsA tulipa liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_3e461c91b0 (IsA tulipa_gesneriana tulip) (STV 1.0 0.9091)) +(: cnet_isa_7754db272f (IsA tulipwood wood) (STV 1.0 0.9091)) +(: cnet_isa_4c21e36faa (IsA tulipwood_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_396d53ef7c (IsA tulle net) (STV 1.0 0.9091)) +(: cnet_isa_4bc263aa14 (IsA tulostoma fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_2cd5980ed3 (IsA tulostomaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_172f96e12a (IsA tulostomatale fungus_order) (STV 1.0 0.9091)) +(: cnet_isa_f32c6541c4 (IsA tulu south_dravidian) (STV 1.0 0.9091)) +(: cnet_isa_3a4ba67104 (IsA tulu dravidian) (STV 1.0 0.9091)) +(: cnet_isa_c5c88ee2d8 (IsA tumble acrobatic_stunt) (STV 1.0 0.9091)) +(: cnet_isa_564a841b04 (IsA tumble_dryer clothe_dryer) (STV 1.0 0.9091)) +(: cnet_isa_e48e2a41f5 (IsA tumblebug dung_beetle) (STV 1.0 0.9091)) +(: cnet_isa_2b3eeb9d1a (IsA tumbler glass) (STV 1.0 0.9091)) +(: cnet_isa_e4a9d06d9f (IsA tumbler obstruction) (STV 1.0 0.9091)) +(: cnet_isa_8c2079e3d2 (IsA tumbler gymnast) (STV 1.0 0.9091)) +(: cnet_isa_0a0421b4a4 (IsA tumbleweed amaranth) (STV 1.0 0.9091)) +(: cnet_isa_cecb697a82 (IsA tumbleweed weed) (STV 1.0 0.9091)) +(: cnet_isa_8ac47350fc (IsA tumbrel dumpcart) (STV 1.0 0.9091)) +(: cnet_isa_aa23c6087a (IsA tumefaction organic_process) (STV 1.0 0.9091)) +(: cnet_isa_fb75f4f5ba (IsA tumescence tumidity) (STV 1.0 0.9091)) +(: cnet_isa_f679535eb5 (IsA tumidity swelling) (STV 1.0 0.9091)) +(: cnet_isa_cb06a4ed07 (IsA tumor growth) (STV 1.0 0.9091)) +(: cnet_isa_63443854c9 (IsA tumor_necrosis_factor cytokine) (STV 1.0 0.9091)) +(: cnet_isa_9d0de7d2bf (IsA tumor_suppressor_gene suppressor) (STV 1.0 0.9091)) +(: cnet_isa_0b9b924b67 (IsA tumor_virus virus) (STV 1.0 0.9091)) +(: cnet_isa_2a500bfd33 (IsA tumult agitation) (STV 1.0 0.9091)) +(: cnet_isa_f8f98c7cb1 (IsA tumult disturbance) (STV 1.0 0.9091)) +(: cnet_isa_85bfceb6a5 (IsA tun barrel) (STV 1.0 0.9091)) +(: cnet_isa_4d593ec9ed (IsA tuna eel) (STV 1.0 0.9091)) +(: cnet_isa_30f193ce91 (IsA tuna food_fish) (STV 1.0 0.9091)) +(: cnet_isa_aa7bc1e07e (IsA tuna scombroid) (STV 1.0 0.9091)) +(: cnet_isa_fa4c8397b5 (IsA tuna saltwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_f085d3466c (IsA tuna prickly_pear) (STV 1.0 0.9091)) +(: cnet_isa_66b7d0a0e0 (IsA tuna_and_catfish both_fish) (STV 1.0 0.9339)) +(: cnet_isa_0a77ef36d3 (IsA tuna_and_catfish fish) (STV 1.0 0.9454)) +(: cnet_isa_f51e9ae208 (IsA tuna_fish_salad salad) (STV 1.0 0.9091)) +(: cnet_isa_a1862a8e8a (IsA tuna_oil fish_oil) (STV 1.0 0.9091)) +(: cnet_isa_5a2842c60e (IsA tunaburger sandwich) (STV 1.0 0.9091)) +(: cnet_isa_5a65523919 (IsA tundra plain) (STV 1.0 0.9091)) +(: cnet_isa_b3ea8c1add (IsA tundra_soil soil) (STV 1.0 0.9091)) +(: cnet_isa_24d49044cb (IsA tundra_swan swan) (STV 1.0 0.9091)) +(: cnet_isa_d9357627fb (IsA tune alteration) (STV 1.0 0.9091)) +(: cnet_isa_0da15de48f (IsA tune pitch) (STV 1.0 0.9091)) +(: cnet_isa_4ce313e3a9 (IsA tune music) (STV 1.0 0.9091)) +(: cnet_isa_e375d582c7 (IsA tune_up adjustment) (STV 1.0 0.9091)) +(: cnet_isa_9c70462366 (IsA tuner skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_be30057ced (IsA tung_oil oil) (STV 1.0 0.9091)) +(: cnet_isa_f2504f4114 (IsA tung_tree angiospermous_tree) (STV 1.0 0.9091)) +(: cnet_isa_55fcd75222 (IsA tunga arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_39d0914904 (IsA tungstate salt) (STV 1.0 0.9091)) +(: cnet_isa_84258fc909 (IsA tungsten metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_4434758205 (IsA tungsten_steel alloy_steel) (STV 1.0 0.9091)) +(: cnet_isa_9f608e973f (IsA tungstic_acid oxyacid) (STV 1.0 0.9091)) +(: cnet_isa_3cb592f10e (IsA tungus tungusic) (STV 1.0 0.9091)) +(: cnet_isa_ab8166e6c6 (IsA tungusic altaic) (STV 1.0 0.9091)) +(: cnet_isa_59399ab7d8 (IsA tunic cloak) (STV 1.0 0.9091)) +(: cnet_isa_3e43cc4d8d (IsA tunic membrane) (STV 1.0 0.9091)) +(: cnet_isa_a0073f77c4 (IsA tunica_albuginea_teste albuginea) (STV 1.0 0.9091)) +(: cnet_isa_2507f62a75 (IsA tunicate chordate) (STV 1.0 0.9091)) +(: cnet_isa_ec19987ca7 (IsA tuning calibration) (STV 1.0 0.9091)) +(: cnet_isa_c027ea2d51 (IsA tuning_fork implement) (STV 1.0 0.9091)) +(: cnet_isa_ab254c7df1 (IsA tunisian african) (STV 1.0 0.9091)) +(: cnet_isa_2ea3ab58e6 (IsA tunisian_dinar tunisian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_21b10af4d6 (IsA tunisian_dirham tunisian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_d8dfd9c7a3 (IsA tunisian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_fb2c755967 (IsA tunnel passageway) (STV 1.0 0.9091)) +(: cnet_isa_32cbd7c2a1 (IsA tunnel_vision visual_impairment) (STV 1.0 0.9091)) +(: cnet_isa_769c49f06d (IsA tupaia mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_3107a069b3 (IsA tupaiidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_4a4c22f975 (IsA tupelo gum_tree) (STV 1.0 0.9091)) +(: cnet_isa_1e04b74d66 (IsA tupelo wood) (STV 1.0 0.9091)) +(: cnet_isa_3f40244ba2 (IsA tupi tupi_guarani) (STV 1.0 0.9091)) +(: cnet_isa_dc45628ca0 (IsA tupi south_american) (STV 1.0 0.9091)) +(: cnet_isa_3bb9aace17 (IsA tupi_guarani amerind) (STV 1.0 0.9091)) +(: cnet_isa_9655ce86bd (IsA tupik tent) (STV 1.0 0.9091)) +(: cnet_isa_b34dc8c16a (IsA tupinambis reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_dc979fb84b (IsA turban headdress) (STV 1.0 0.9091)) +(: cnet_isa_3fe3d57a09 (IsA turban_squash winter_squash) (STV 1.0 0.9091)) +(: cnet_isa_e00c9b3144 (IsA turbellaria class) (STV 1.0 0.9091)) +(: cnet_isa_24cdab1094 (IsA turbidity cloudiness) (STV 1.0 0.9091)) +(: cnet_isa_a84b14e1a8 (IsA turbinate_bone bone) (STV 1.0 0.9091)) +(: cnet_isa_2aa1e54f9c (IsA turbine rotary_engine) (STV 1.0 0.9091)) +(: cnet_isa_1c02e5dd82 (IsA turbogenerator generator) (STV 1.0 0.9091)) +(: cnet_isa_8517b0ebfc (IsA turbojet jet) (STV 1.0 0.9091)) +(: cnet_isa_a7d97df2f2 (IsA turbojet jet_engine) (STV 1.0 0.9091)) +(: cnet_isa_88bf8d42c6 (IsA turbot lefteye_flounder) (STV 1.0 0.9091)) +(: cnet_isa_e1e0291621 (IsA turbot flounder) (STV 1.0 0.9091)) +(: cnet_isa_2e378226bb (IsA turbulence physical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_883e408748 (IsA turbulence disorder) (STV 1.0 0.9091)) +(: cnet_isa_21222ade10 (IsA turbulence bad_weather) (STV 1.0 0.9091)) +(: cnet_isa_495f6e5e04 (IsA turbulent_flow flow) (STV 1.0 0.9091)) +(: cnet_isa_4666428fdb (IsA turcoman turki) (STV 1.0 0.9091)) +(: cnet_isa_0a564de32f (IsA turdidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_e81c64c8d4 (IsA turdinae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_0bb61afcf6 (IsA turdus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_49ff11e3b4 (IsA tureen serving_dish) (STV 1.0 0.9091)) +(: cnet_isa_3a00dea91b (IsA turf city_district) (STV 1.0 0.9091)) +(: cnet_isa_9447114e0e (IsA turf jurisdiction) (STV 1.0 0.9091)) +(: cnet_isa_0cb26f2396 (IsA turf land) (STV 1.0 0.9091)) +(: cnet_isa_8c840ebe5c (IsA turf_war conflict) (STV 1.0 0.9091)) +(: cnet_isa_f8d2786b7a (IsA turfan tocharian) (STV 1.0 0.9091)) +(: cnet_isa_c02a377cf4 (IsA turfing_daisy herb) (STV 1.0 0.9091)) +(: cnet_isa_86b15c5a09 (IsA turgidity prolixity) (STV 1.0 0.9091)) +(: cnet_isa_d9dbdc8143 (IsA turgor state) (STV 1.0 0.9091)) +(: cnet_isa_67d1325642 (IsA turing_machine computer) (STV 1.0 0.9091)) +(: cnet_isa_4bbbaed732 (IsA turk_s_cap lily) (STV 1.0 0.9091)) +(: cnet_isa_a6db5c39ef (IsA turk_s_head knot) (STV 1.0 0.9091)) +(: cnet_isa_862aefc71d (IsA turk turki) (STV 1.0 0.9091)) +(: cnet_isa_b984344c32 (IsA turkey country) (STV 1.0 0.9608)) +(: cnet_isa_788bdf428d (IsA turkey food) (STV 1.0 0.9524)) +(: cnet_isa_0790b27357 (IsA turkey domestic_fowl) (STV 1.0 0.9091)) +(: cnet_isa_f40a4eea9a (IsA turkey flop) (STV 1.0 0.9091)) +(: cnet_isa_bade4c52b8 (IsA turkey poultry) (STV 1.0 0.9091)) +(: cnet_isa_23a99637a6 (IsA turkey_cock turkey) (STV 1.0 0.9091)) +(: cnet_isa_b996b578c6 (IsA turkey_leg drumstick) (STV 1.0 0.9091)) +(: cnet_isa_92a50c599e (IsA turkey_red red) (STV 1.0 0.9091)) +(: cnet_isa_6b3744b1d3 (IsA turkey_stew fricassee) (STV 1.0 0.9091)) +(: cnet_isa_7e0e1a9959 (IsA turkey_stuffing stuffing) (STV 1.0 0.9091)) +(: cnet_isa_802ad7fd75 (IsA turkey_trot one_step) (STV 1.0 0.9091)) +(: cnet_isa_43970de374 (IsA turkey_wing wing) (STV 1.0 0.9091)) +(: cnet_isa_dfaa2023bf (IsA turki altaic) (STV 1.0 0.9091)) +(: cnet_isa_0e4d0b0c3a (IsA turki asiatic) (STV 1.0 0.9091)) +(: cnet_isa_d7e7ac5407 (IsA turkish turki) (STV 1.0 0.9091)) +(: cnet_isa_05375b335f (IsA turkish_bath washup) (STV 1.0 0.9091)) +(: cnet_isa_91d4d11973 (IsA turkish_bath steam_bath) (STV 1.0 0.9091)) +(: cnet_isa_5f791e4e30 (IsA turkish_coffee coffee) (STV 1.0 0.9091)) +(: cnet_isa_4eb77736d7 (IsA turkish_delight candy) (STV 1.0 0.9091)) +(: cnet_isa_07319eb7f5 (IsA turkish_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_1098487d91 (IsA turkish_tobacco tobacco) (STV 1.0 0.9091)) +(: cnet_isa_627eee92cb (IsA turkish_towel bath_towel) (STV 1.0 0.9091)) +(: cnet_isa_5188d9d38d (IsA turkmen turki) (STV 1.0 0.9091)) +(: cnet_isa_20239be10a (IsA turkmen_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_b00682ca02 (IsA turmeric flavorer) (STV 1.0 0.9091)) +(: cnet_isa_767002dc83 (IsA turmeric herb) (STV 1.0 0.9091)) +(: cnet_isa_4df5e9ca1e (IsA turn change_of_course) (STV 1.0 0.9091)) +(: cnet_isa_e75b61e77e (IsA turn change_of_direction) (STV 1.0 0.9091)) +(: cnet_isa_9975001ba0 (IsA turn favor) (STV 1.0 0.9091)) +(: cnet_isa_32d36fd884 (IsA turn walk) (STV 1.0 0.9091)) +(: cnet_isa_377cf8ffdf (IsA turn development) (STV 1.0 0.9091)) +(: cnet_isa_1d6a17e1e1 (IsA turn activity) (STV 1.0 0.9091)) +(: cnet_isa_f2313fc6fc (IsA turn part) (STV 1.0 0.9091)) +(: cnet_isa_2030adeed2 (IsA turn_of_century period) (STV 1.0 0.9091)) +(: cnet_isa_9f20f3ebb8 (IsA turn_of_expression expressive_style) (STV 1.0 0.9091)) +(: cnet_isa_868681c054 (IsA turn_on stimulation) (STV 1.0 0.9091)) +(: cnet_isa_c3774f1c45 (IsA turnaround preparation) (STV 1.0 0.9091)) +(: cnet_isa_26329ba05d (IsA turnaround area) (STV 1.0 0.9091)) +(: cnet_isa_27c9c00eb1 (IsA turnaround work_time) (STV 1.0 0.9091)) +(: cnet_isa_c881f5a9d0 (IsA turnbuckle coupling) (STV 1.0 0.9091)) +(: cnet_isa_29aeb517c0 (IsA turncock employee) (STV 1.0 0.9091)) +(: cnet_isa_5557027144 (IsA turner_s_syndrome sex_linked_disorder) (STV 1.0 0.9091)) +(: cnet_isa_38bc85cb74 (IsA turner cooking_utensil) (STV 1.0 0.9091)) +(: cnet_isa_b6745cab23 (IsA turner person) (STV 1.0 0.9091)) +(: cnet_isa_2e05f9dec2 (IsA turner skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_8b6e456b07 (IsA turner tumbler) (STV 1.0 0.9091)) +(: cnet_isa_1e9995001d (IsA turnery product) (STV 1.0 0.9091)) +(: cnet_isa_d0eaf00665 (IsA turnery workshop) (STV 1.0 0.9091)) +(: cnet_isa_9f6ad81fb6 (IsA turnicidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_2aa7239255 (IsA turning change) (STV 1.0 0.9091)) +(: cnet_isa_1779855e48 (IsA turning formation) (STV 1.0 0.9091)) +(: cnet_isa_ffee64bfb7 (IsA turning end_product) (STV 1.0 0.9091)) +(: cnet_isa_f02df75bbc (IsA turning movement) (STV 1.0 0.9091)) +(: cnet_isa_2bdaebbd2f (IsA turning paring) (STV 1.0 0.9091)) +(: cnet_isa_00ad6f4cf9 (IsA turnip cruciferous_vegetable) (STV 1.0 0.9091)) +(: cnet_isa_5c4c837184 (IsA turnip root_vegetable) (STV 1.0 0.9091)) +(: cnet_isa_4a0f5c1791 (IsA turnip turnip_plant) (STV 1.0 0.9091)) +(: cnet_isa_88f173ea53 (IsA turnip_bed bed) (STV 1.0 0.9091)) +(: cnet_isa_7ed344596d (IsA turnip_green green) (STV 1.0 0.9091)) +(: cnet_isa_5598f3218a (IsA turnip_plant crucifer) (STV 1.0 0.9091)) +(: cnet_isa_b7520d7d78 (IsA turnix bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_41ac620971 (IsA turnoff road) (STV 1.0 0.9091)) +(: cnet_isa_1d7a471bfb (IsA turnoff stimulation) (STV 1.0 0.9091)) +(: cnet_isa_38c37bb25a (IsA turnout attendance) (STV 1.0 0.9091)) +(: cnet_isa_d0e4d20ef9 (IsA turnout part) (STV 1.0 0.9091)) +(: cnet_isa_2d9f2ec7ff (IsA turnout rotation) (STV 1.0 0.9091)) +(: cnet_isa_f27eb6411c (IsA turnout gathering) (STV 1.0 0.9091)) +(: cnet_isa_d132d5816c (IsA turnover dish) (STV 1.0 0.9091)) +(: cnet_isa_3f55562810 (IsA turnpike expressway) (STV 1.0 0.9091)) +(: cnet_isa_a441b3c988 (IsA turnpike gate) (STV 1.0 0.9091)) +(: cnet_isa_d995f20452 (IsA turnspit spit) (STV 1.0 0.9091)) +(: cnet_isa_f3c4e05f30 (IsA turnstile gate) (STV 1.0 0.9091)) +(: cnet_isa_8e7dce4e79 (IsA turnstone plover) (STV 1.0 0.9091)) +(: cnet_isa_e2f6f603ae (IsA turntable platform) (STV 1.0 0.9091)) +(: cnet_isa_7bbc22d99b (IsA turntable tray) (STV 1.0 0.9091)) +(: cnet_isa_886f6bb9af (IsA turnverein club) (STV 1.0 0.9091)) +(: cnet_isa_6a38b6b034 (IsA turpentine essential_oil) (STV 1.0 0.9091)) +(: cnet_isa_427578730b (IsA turpentine oleoresin) (STV 1.0 0.9091)) +(: cnet_isa_f88e7a3714 (IsA turpentine_camphor_weed blue_curl) (STV 1.0 0.9091)) +(: cnet_isa_76bbbd3b23 (IsA turquoise mineral) (STV 1.0 0.9091)) +(: cnet_isa_6adcdf374f (IsA turquoise opaque_gem) (STV 1.0 0.9091)) +(: cnet_isa_b7764dba58 (IsA turreae tree) (STV 1.0 0.9091)) +(: cnet_isa_f6b82a0ba1 (IsA turret tower) (STV 1.0 0.9091)) +(: cnet_isa_4009222391 (IsA turret_clock clock) (STV 1.0 0.9091)) +(: cnet_isa_121e4c1e66 (IsA turritis dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5f2957b8bf (IsA tursiop mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_3fdbb43df5 (IsA turtle chelonian) (STV 1.0 0.9091)) +(: cnet_isa_8d53a9512a (IsA turtle_soup soup) (STV 1.0 0.9091)) +(: cnet_isa_2c5eed1aaf (IsA turtledove dove) (STV 1.0 0.9091)) +(: cnet_isa_868f8b7591 (IsA turtleneck jersey) (STV 1.0 0.9091)) +(: cnet_isa_97a6c883ef (IsA turtleneck sweater) (STV 1.0 0.9091)) +(: cnet_isa_5d9db10533 (IsA turtleneck_collar collar) (STV 1.0 0.9091)) +(: cnet_isa_3412d84798 (IsA turtler skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_4e22b44d2f (IsA tuscan italian) (STV 1.0 0.9091)) +(: cnet_isa_cff56147ef (IsA tuscan_order order) (STV 1.0 0.9091)) +(: cnet_isa_addbcfa6d0 (IsA tuscarora iroquoian) (STV 1.0 0.9091)) +(: cnet_isa_e674684dc5 (IsA tuscarora iroquois) (STV 1.0 0.9091)) +(: cnet_isa_e64b2251f4 (IsA tushery literary_composition) (STV 1.0 0.9091)) +(: cnet_isa_a2314b0e8a (IsA tusk tooth) (STV 1.0 0.9091)) +(: cnet_isa_1d1fdd94d8 (IsA tusker mammal) (STV 1.0 0.9091)) +(: cnet_isa_b03717bec7 (IsA tussah saturniid) (STV 1.0 0.9091)) +(: cnet_isa_7c6ba4b835 (IsA tussilago asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_98f18410e9 (IsA tussock_bellflower campanula) (STV 1.0 0.9091)) +(: cnet_isa_278434cc09 (IsA tussock_caterpillar caterpillar) (STV 1.0 0.9091)) +(: cnet_isa_26c7da820c (IsA tutee learner) (STV 1.0 0.9091)) +(: cnet_isa_8af33f11d7 (IsA tutelage teaching) (STV 1.0 0.9091)) +(: cnet_isa_5aae9ee0b0 (IsA tutelo siouan) (STV 1.0 0.9091)) +(: cnet_isa_87636e0d17 (IsA tutorial session) (STV 1.0 0.9091)) +(: cnet_isa_7c1ca99a09 (IsA tutti_frutti ice_cream) (STV 1.0 0.9091)) +(: cnet_isa_dfdc8a9f9b (IsA tuvalu_dollar dollar) (STV 1.0 0.9091)) +(: cnet_isa_aea54a2689 (IsA tv abbreviation_for_television) (STV 1.0 0.9719)) +(: cnet_isa_f9af0d2f11 (IsA tv acronym_for_television) (STV 1.0 0.9091)) +(: cnet_isa_40655f977b (IsA tv communication_device) (STV 1.0 0.9091)) +(: cnet_isa_9da2d13e19 (IsA tv entertainment_for_people) (STV 1.0 0.9091)) +(: cnet_isa_236d95d4ff (IsA tv multimedia_device) (STV 1.0 0.9091)) +(: cnet_isa_957be61c32 (IsA tv short_name) (STV 1.0 0.9091)) +(: cnet_isa_33f2e64651 (IsA tv short_name_for_television) (STV 1.0 0.9091)) +(: cnet_isa_ed280462bf (IsA tv way_to_relax) (STV 1.0 0.9091)) +(: cnet_isa_630c67e65d (IsA tv_announcer announcer) (STV 1.0 0.9091)) +(: cnet_isa_7b5a565df9 (IsA tv_dinner convenience_food) (STV 1.0 0.9091)) +(: cnet_isa_2c6ffee2f2 (IsA tv_watching passive_activity) (STV 1.0 0.9339)) +(: cnet_isa_df7b62f211 (IsA twaddler communicator) (STV 1.0 0.9091)) +(: cnet_isa_b3e0016c8f (IsA twang nasality) (STV 1.0 0.9091)) +(: cnet_isa_ce717ae237 (IsA twang sound) (STV 1.0 0.9091)) +(: cnet_isa_64ddbfb6ae (IsA twayblade orchid) (STV 1.0 0.9091)) +(: cnet_isa_613a09e389 (IsA tweed fabric) (STV 1.0 0.9091)) +(: cnet_isa_c894605423 (IsA tweediness inelegance) (STV 1.0 0.9091)) +(: cnet_isa_cbf9d150dc (IsA tweedledum_and_tweedledee pair) (STV 1.0 0.9091)) +(: cnet_isa_9221ae597b (IsA tweet chirp) (STV 1.0 0.9091)) +(: cnet_isa_4c1bb03cee (IsA tweeter loudspeaker) (STV 1.0 0.9091)) +(: cnet_isa_c10fa72da1 (IsA twelfth rank) (STV 1.0 0.9091)) +(: cnet_isa_8c3c350a38 (IsA twelfth_night christian_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_f866489ac1 (IsA twelfth_part common_fraction) (STV 1.0 0.9091)) +(: cnet_isa_64ba474c89 (IsA twelfthtide season) (STV 1.0 0.9091)) +(: cnet_isa_1222fff0a9 (IsA twelve large_integer) (STV 1.0 0.9091)) +(: cnet_isa_fdcdeb5707 (IsA twelve_tone_music serialism) (STV 1.0 0.9091)) +(: cnet_isa_80c3a7ab8b (IsA twelvth_month_of_year december) (STV 1.0 0.9091)) +(: cnet_isa_8aead8e1b7 (IsA twenty decade) (STV 1.0 0.9091)) +(: cnet_isa_0f07685c7d (IsA twenty time_of_life) (STV 1.0 0.9091)) +(: cnet_isa_40114c139c (IsA twentieth rank) (STV 1.0 0.9091)) +(: cnet_isa_89be7ec3b8 (IsA twentieth_century century) (STV 1.0 0.9091)) +(: cnet_isa_455c82fb64 (IsA twenty large_integer) (STV 1.0 0.9091)) +(: cnet_isa_f3bc303372 (IsA twenty_dollar_bill bill) (STV 1.0 0.9091)) +(: cnet_isa_3e8507c852 (IsA twenty_eight large_integer) (STV 1.0 0.9091)) +(: cnet_isa_0f1723505c (IsA twenty_five large_integer) (STV 1.0 0.9091)) +(: cnet_isa_2fbdc34e89 (IsA twenty_four large_integer) (STV 1.0 0.9091)) +(: cnet_isa_e23427e578 (IsA twenty_nine large_integer) (STV 1.0 0.9091)) +(: cnet_isa_3c6f53ba81 (IsA twenty_one large_integer) (STV 1.0 0.9091)) +(: cnet_isa_c110cb8b2a (IsA twenty_seven large_integer) (STV 1.0 0.9091)) +(: cnet_isa_5784d03cf2 (IsA twenty_six large_integer) (STV 1.0 0.9091)) +(: cnet_isa_f125aba6e1 (IsA twenty_three number) (STV 1.0 0.9091)) +(: cnet_isa_734d802776 (IsA twenty_three large_integer) (STV 1.0 0.9091)) +(: cnet_isa_44d75190f7 (IsA twenty_two firearm) (STV 1.0 0.9091)) +(: cnet_isa_27b5e9b9e3 (IsA twenty_two large_integer) (STV 1.0 0.9091)) +(: cnet_isa_2fe0d495d1 (IsA twenty_two_pistol twenty_two) (STV 1.0 0.9091)) +(: cnet_isa_91f07a2020 (IsA twenty_two_rifle twenty_two) (STV 1.0 0.9091)) +(: cnet_isa_db8f2b8165 (IsA twerp simpleton) (STV 1.0 0.9091)) +(: cnet_isa_73c3a4a91c (IsA twiddle twist) (STV 1.0 0.9091)) +(: cnet_isa_abad44b1e1 (IsA twiddler manipulator) (STV 1.0 0.9091)) +(: cnet_isa_84f4639e02 (IsA twig_blight blight) (STV 1.0 0.9091)) +(: cnet_isa_ea1bb0e589 (IsA twilight light) (STV 1.0 0.9091)) +(: cnet_isa_07e2b3c861 (IsA twilight decline) (STV 1.0 0.9091)) +(: cnet_isa_29fe13f9f0 (IsA twilight hour) (STV 1.0 0.9091)) +(: cnet_isa_a0d3b0e31e (IsA twilight_sleep general_anesthesia) (STV 1.0 0.9091)) +(: cnet_isa_3086ce7ea8 (IsA twilight_zone ambiguity) (STV 1.0 0.9091)) +(: cnet_isa_503e59247d (IsA twilight_zone ocean_floor) (STV 1.0 0.9091)) +(: cnet_isa_7f43f4c16e (IsA twill fabric) (STV 1.0 0.9091)) +(: cnet_isa_0a1370d334 (IsA twill weave) (STV 1.0 0.9091)) +(: cnet_isa_4c2b9fbdc6 (IsA twin sibling) (STV 1.0 0.9091)) +(: cnet_isa_4507fe780d (IsA twin_bed bed) (STV 1.0 0.9091)) +(: cnet_isa_6cd04fb2d5 (IsA twin_bill game) (STV 1.0 0.9091)) +(: cnet_isa_6f474db752 (IsA twinberry honeysuckle) (STV 1.0 0.9091)) +(: cnet_isa_3a6cceebde (IsA twiner worker) (STV 1.0 0.9091)) +(: cnet_isa_114ec2455f (IsA twinflower subshrub) (STV 1.0 0.9091)) +(: cnet_isa_162565fcf8 (IsA twinge pain) (STV 1.0 0.9091)) +(: cnet_isa_c050ce1005 (IsA twinjet jet) (STV 1.0 0.9091)) +(: cnet_isa_ffba58ad83 (IsA twinkie sponge_cake) (STV 1.0 0.9091)) +(: cnet_isa_991599d403 (IsA twinkle change) (STV 1.0 0.9091)) +(: cnet_isa_67759cc193 (IsA twinkler shiner) (STV 1.0 0.9091)) +(: cnet_isa_1e6c9df2f8 (IsA twin crystal) (STV 1.0 0.9091)) +(: cnet_isa_2dc08f71ec (IsA twist rotation) (STV 1.0 0.9091)) +(: cnet_isa_a5cbcf9a91 (IsA twist social_dancing) (STV 1.0 0.9091)) +(: cnet_isa_f33ebe7c66 (IsA twist movement) (STV 1.0 0.9091)) +(: cnet_isa_69a212e4ed (IsA twist_bit bit) (STV 1.0 0.9091)) +(: cnet_isa_308c308a54 (IsA twit aggravation) (STV 1.0 0.9091)) +(: cnet_isa_285026f1b2 (IsA twitch spasm) (STV 1.0 0.9091)) +(: cnet_isa_ca85cfd5df (IsA twitterer bird) (STV 1.0 0.9091)) +(: cnet_isa_318a4b33e8 (IsA two number) (STV 1.0 0.9572)) +(: cnet_isa_19312ea215 (IsA two digit) (STV 1.0 0.9091)) +(: cnet_isa_4fdbd2a0e4 (IsA two_by_four timber) (STV 1.0 0.9091)) +(: cnet_isa_c8bd92cdd8 (IsA two_dimensionality dimensionality) (STV 1.0 0.9091)) +(: cnet_isa_21697d9dd3 (IsA two_dollar_bill bill) (STV 1.0 0.9091)) +(: cnet_isa_0a209f8049 (IsA two_eyed_violet violet) (STV 1.0 0.9091)) +(: cnet_isa_d894434633 (IsA two_handed_backhand backhand) (STV 1.0 0.9091)) +(: cnet_isa_86fc5b8422 (IsA two_handed_saw saw) (STV 1.0 0.9091)) +(: cnet_isa_bb628a6009 (IsA two_hitter baseball) (STV 1.0 0.9091)) +(: cnet_isa_a8b6812dc3 (IsA two_kettle teton_dakota) (STV 1.0 0.9091)) +(: cnet_isa_64ff0810c3 (IsA two_man_tent tent) (STV 1.0 0.9091)) +(: cnet_isa_a06d116031 (IsA two_note_call birdcall) (STV 1.0 0.9091)) +(: cnet_isa_ec3339aefb (IsA two_piece business_suit) (STV 1.0 0.9091)) +(: cnet_isa_7fe356f8a4 (IsA two_sister sibling) (STV 1.0 0.9339)) +(: cnet_isa_6ba1ef8cc8 (IsA two_spotted_ladybug ladybug) (STV 1.0 0.9091)) +(: cnet_isa_6e1fcff663 (IsA two_step ballroom_dancing) (STV 1.0 0.9091)) +(: cnet_isa_1f09be5941 (IsA two_third common_fraction) (STV 1.0 0.9091)) +(: cnet_isa_1e3db5d99d (IsA two_tier_bid takeover_bid) (STV 1.0 0.9091)) +(: cnet_isa_81d7c35751 (IsA two_timer deceiver) (STV 1.0 0.9091)) +(: cnet_isa_b9a11f0110 (IsA two_toed_sloth sloth) (STV 1.0 0.9091)) +(: cnet_isa_6da8aff09c (IsA two_way_street street) (STV 1.0 0.9091)) +(: cnet_isa_82485eee3d (IsA two_year_old_horse racehorse) (STV 1.0 0.9091)) +(: cnet_isa_bfa4fd68e0 (IsA twofer coupon) (STV 1.0 0.9091)) +(: cnet_isa_9c5f454a6a (IsA twofer offer) (STV 1.0 0.9091)) +(: cnet_isa_6dcd2708b4 (IsA twopence coin) (STV 1.0 0.9091)) +(: cnet_isa_c884f6ae8a (IsA twyla_tharp famous_choreographer) (STV 1.0 0.9091)) +(: cnet_isa_d68e6205fc (IsA tying fastening) (STV 1.0 0.9091)) +(: cnet_isa_93229477a9 (IsA tyiyn kyrgyzstani_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_f7e6eed0af (IsA tyke english_person) (STV 1.0 0.9091)) +(: cnet_isa_849bba97b9 (IsA tylenchidae worm_family) (STV 1.0 0.9091)) +(: cnet_isa_a5095e1507 (IsA tylenchus worm_genus) (STV 1.0 0.9091)) +(: cnet_isa_95cefcfb6b (IsA tympanic_bone bone) (STV 1.0 0.9091)) +(: cnet_isa_c3c20ae578 (IsA tympanic_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_ff982fb93c (IsA tympanist drummer) (STV 1.0 0.9091)) +(: cnet_isa_ea2f0db976 (IsA tympanite dilatation) (STV 1.0 0.9091)) +(: cnet_isa_f810d15533 (IsA tympanitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_d777e5ad23 (IsA tympanoplasty operation) (STV 1.0 0.9091)) +(: cnet_isa_82ec537f38 (IsA tympanuchus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_54a933c1e6 (IsA tyndall_effect optical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_6defb4c08a (IsA type block) (STV 1.0 0.9091)) +(: cnet_isa_6716c4d54e (IsA type taxonomic_group) (STV 1.0 0.9091)) +(: cnet_isa_1e837f539f (IsA type kind) (STV 1.0 0.9091)) +(: cnet_isa_75d85b304d (IsA type character) (STV 1.0 0.9091)) +(: cnet_isa_a7ad86faa9 (IsA type symbol) (STV 1.0 0.9091)) +(: cnet_isa_e1acbc5b2e (IsA type_family type) (STV 1.0 0.9091)) +(: cnet_isa_b1e5215ffd (IsA type_genus genus) (STV 1.0 0.9091)) +(: cnet_isa_42afd36743 (IsA type_i_diabete autoimmune_disease) (STV 1.0 0.9091)) +(: cnet_isa_c29a9faa27 (IsA type_i_diabete diabete_mellitus) (STV 1.0 0.9091)) +(: cnet_isa_ed9bacd98e (IsA type_ii_diabete diabete_mellitus) (STV 1.0 0.9091)) +(: cnet_isa_e9bad23b93 (IsA type_metal alloy) (STV 1.0 0.9091)) +(: cnet_isa_ef1d13727a (IsA type_slug type_metal) (STV 1.0 0.9091)) +(: cnet_isa_8178fb5f66 (IsA type_specy specy) (STV 1.0 0.9091)) +(: cnet_isa_c67012f6bc (IsA type_specimen model) (STV 1.0 0.9091)) +(: cnet_isa_a50250a21a (IsA typescript matter) (STV 1.0 0.9091)) +(: cnet_isa_4b6ebd7956 (IsA typesetting_machine printer) (STV 1.0 0.9091)) +(: cnet_isa_e762bd2508 (IsA typewriter machine) (STV 1.0 0.9091)) +(: cnet_isa_f4176bf570 (IsA typewriter character_printer) (STV 1.0 0.9091)) +(: cnet_isa_a5e85e4dde (IsA typewriter_carriage carriage) (STV 1.0 0.9091)) +(: cnet_isa_568c47ffbe (IsA typewriter_font font) (STV 1.0 0.9091)) +(: cnet_isa_c8b11da610 (IsA typewriter_keyboard keyboard) (STV 1.0 0.9091)) +(: cnet_isa_7dfd267811 (IsA typewriter_paper writing_paper) (STV 1.0 0.9091)) +(: cnet_isa_e850bebe2d (IsA typha monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_720980f228 (IsA typhaceae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_0d87ccd9a7 (IsA typhlopidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_d607740323 (IsA typhoeus mythical_monster) (STV 1.0 0.9091)) +(: cnet_isa_ca4057329d (IsA typhoid infectious_disease) (STV 1.0 0.9091)) +(: cnet_isa_990bf246c7 (IsA typhoid_bacillus salmonella) (STV 1.0 0.9091)) +(: cnet_isa_cc7caa40d8 (IsA typhoid_bacteriophage bacteriophage) (STV 1.0 0.9091)) +(: cnet_isa_0e9b0f722c (IsA typhon mythical_monster) (STV 1.0 0.9091)) +(: cnet_isa_7eeefe9acb (IsA typhoon cyclone) (STV 1.0 0.9091)) +(: cnet_isa_5e5ee90614 (IsA typhus rickettsial_disease) (STV 1.0 0.9091)) +(: cnet_isa_c38d39f7c1 (IsA typical_jerboa jerboa) (STV 1.0 0.9091)) +(: cnet_isa_4a4aace5fb (IsA typicality normality) (STV 1.0 0.9091)) +(: cnet_isa_e7d0d92146 (IsA typification representation) (STV 1.0 0.9091)) +(: cnet_isa_e552ade968 (IsA typification representational_process) (STV 1.0 0.9091)) +(: cnet_isa_ad5026ea23 (IsA typing writing) (STV 1.0 0.9091)) +(: cnet_isa_fd06e87b14 (IsA typing_pool pool) (STV 1.0 0.9091)) +(: cnet_isa_acd3fddf95 (IsA typist employee) (STV 1.0 0.9091)) +(: cnet_isa_cd002215ba (IsA typography trade) (STV 1.0 0.9091)) +(: cnet_isa_04c7a69866 (IsA typography printing) (STV 1.0 0.9091)) +(: cnet_isa_ba15f38fd7 (IsA typology categorization) (STV 1.0 0.9091)) +(: cnet_isa_ae3883f097 (IsA tyramine amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_697cba02d3 (IsA tyranni animal_order) (STV 1.0 0.9091)) +(: cnet_isa_755c5a6818 (IsA tyrannicide murder) (STV 1.0 0.9091)) +(: cnet_isa_9920f7b140 (IsA tyrannid passerine) (STV 1.0 0.9091)) +(: cnet_isa_265e56ddb8 (IsA tyrannidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_e4df0c0f63 (IsA tyrannosaur theropod) (STV 1.0 0.9091)) +(: cnet_isa_561296fba1 (IsA tyrannus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_36bf98643a (IsA tyrant dictator) (STV 1.0 0.9091)) +(: cnet_isa_068e931f36 (IsA tyrant person) (STV 1.0 0.9091)) +(: cnet_isa_dfcca15268 (IsA tyrant ruler) (STV 1.0 0.9091)) +(: cnet_isa_563a684043 (IsA tyrian_purple reddish_purple) (STV 1.0 0.9091)) +(: cnet_isa_f6fd91619f (IsA tyrian_purple dye) (STV 1.0 0.9091)) +(: cnet_isa_474a14fd54 (IsA tyrocidine antibiotic) (STV 1.0 0.9091)) +(: cnet_isa_40b3c58a12 (IsA tyrolean hat) (STV 1.0 0.9091)) +(: cnet_isa_c1deb510a3 (IsA tyrolean european) (STV 1.0 0.9091)) +(: cnet_isa_3ae4d7c61d (IsA tyrosine amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_a7a4b844a9 (IsA tyrosine_kinase_inhibitor medicine) (STV 1.0 0.9091)) +(: cnet_isa_4a95be6182 (IsA tyrosinemia autosomal_recessive_disease) (STV 1.0 0.9091)) +(: cnet_isa_bab54a9698 (IsA tyrothricin antibiotic) (STV 1.0 0.9091)) +(: cnet_isa_7665bb6162 (IsA tyto bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_322ec24cda (IsA tytonidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_b4e8670e9f (IsA u_s_ambassador worker) (STV 1.0 0.9091)) +(: cnet_isa_6b1cf00115 (IsA u letter) (STV 1.0 0.9091)) +(: cnet_isa_366b5e9d4e (IsA u2 band) (STV 1.0 0.9677)) +(: cnet_isa_2b0e99828a (IsA u_turn reversion) (STV 1.0 0.9091)) +(: cnet_isa_5dbcb4e967 (IsA uakari new_world_monkey) (STV 1.0 0.9091)) +(: cnet_isa_150f1b5877 (IsA ubiety presence) (STV 1.0 0.9091)) +(: cnet_isa_73ec6f1631 (IsA ubiquinone coenzyme) (STV 1.0 0.9091)) +(: cnet_isa_1e6d2fdaa8 (IsA ubiquinone quinone) (STV 1.0 0.9091)) +(: cnet_isa_65fbe68c31 (IsA ubiquity presence) (STV 1.0 0.9091)) +(: cnet_isa_2ca0238f5e (IsA ubuntu linux) (STV 1.0 0.9091)) +(: cnet_isa_a6c780d028 (IsA ubykh caucasian) (STV 1.0 0.9091)) +(: cnet_isa_b74df6d8e3 (IsA uca arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_cb17b357e5 (IsA ucla university) (STV 1.0 0.9091)) +(: cnet_isa_66fe3c7fbb (IsA udder mammary_gland) (STV 1.0 0.9091)) +(: cnet_isa_d12c5f991d (IsA udmurt permic) (STV 1.0 0.9091)) +(: cnet_isa_6d490648e5 (IsA ufo lowercase_for_ufo) (STV 1.0 0.9091)) +(: cnet_isa_18ec83b68c (IsA ufo unidentified_flying_object) (STV 1.0 0.9339)) +(: cnet_isa_8ce87ce21b (IsA ugandan african) (STV 1.0 0.9091)) +(: cnet_isa_d1760c32dc (IsA ugandan_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_79eceb068d (IsA ugandan_shilling ugandan_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_6681d6aea8 (IsA ugaritic canaanitic) (STV 1.0 0.9091)) +(: cnet_isa_f0731b616d (IsA ugliness appearance) (STV 1.0 0.9091)) +(: cnet_isa_86bbe2d6c0 (IsA ugly_duckling person) (STV 1.0 0.9091)) +(: cnet_isa_2dbb5235a2 (IsA ugric finno_ugric) (STV 1.0 0.9091)) +(: cnet_isa_8898071065 (IsA uighur script) (STV 1.0 0.9091)) +(: cnet_isa_98fcd2f01a (IsA uighur turki) (STV 1.0 0.9091)) +(: cnet_isa_d9b97ca932 (IsA uigur turki) (STV 1.0 0.9091)) +(: cnet_isa_ae35fefe29 (IsA uintatheriidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_b84f04ec01 (IsA uintatherium mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_7c567f1c9c (IsA ukase imperial_decree) (STV 1.0 0.9091)) +(: cnet_isa_eaa454f20f (IsA uke guitar) (STV 1.0 0.9091)) +(: cnet_isa_a55da6333c (IsA ukrainian slavic) (STV 1.0 0.9091)) +(: cnet_isa_146809371f (IsA ukranian european) (STV 1.0 0.9091)) +(: cnet_isa_c999e93993 (IsA ukranian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_d3674fa634 (IsA ulalgia pain) (STV 1.0 0.9091)) +(: cnet_isa_390baa5df0 (IsA ulatrophia periodontal_disease) (STV 1.0 0.9091)) +(: cnet_isa_816366820f (IsA ulcer lesion) (STV 1.0 0.9091)) +(: cnet_isa_73de8b60fe (IsA ulceration organic_process) (STV 1.0 0.9091)) +(: cnet_isa_f1fc32d4b6 (IsA ulcerative_colitis colitis) (STV 1.0 0.9091)) +(: cnet_isa_a0fc873d84 (IsA ulema body) (STV 1.0 0.9091)) +(: cnet_isa_63de0e99dc (IsA ulemorrhagia bleeding) (STV 1.0 0.9091)) +(: cnet_isa_e54d3937be (IsA ulex rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_836036c2dc (IsA ulitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_a83a229e66 (IsA ullage indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_2fc7888238 (IsA ullr norse_deity) (STV 1.0 0.9091)) +(: cnet_isa_c5b5acbc83 (IsA ulmaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_11429e64a7 (IsA ulmus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_50f36409ae (IsA ulna arm_bone) (STV 1.0 0.9091)) +(: cnet_isa_0d34f6dcb6 (IsA ulnar_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_836c0361d5 (IsA ulnar_nerve nerve) (STV 1.0 0.9091)) +(: cnet_isa_65842f86f1 (IsA ulnar_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_4fd12eb1f3 (IsA ulster greatcoat) (STV 1.0 0.9091)) +(: cnet_isa_53d0495471 (IsA ulteriority quality) (STV 1.0 0.9091)) +(: cnet_isa_ea69995cd1 (IsA ultima syllable) (STV 1.0 0.9091)) +(: cnet_isa_f73a6e17cd (IsA ultimacy degree) (STV 1.0 0.9091)) +(: cnet_isa_4407bcc43d (IsA ultimate quality) (STV 1.0 0.9091)) +(: cnet_isa_ce05a78b99 (IsA ultimate_frisbee field_game) (STV 1.0 0.9091)) +(: cnet_isa_2213fe97fd (IsA ultimatum demand) (STV 1.0 0.9091)) +(: cnet_isa_93828f63c6 (IsA ultracentrifugation centrifugation) (STV 1.0 0.9091)) +(: cnet_isa_c26fcf42cc (IsA ultracentrifuge centrifuge) (STV 1.0 0.9091)) +(: cnet_isa_dea725b470 (IsA ultrahigh_frequency radio_frequency) (STV 1.0 0.9091)) +(: cnet_isa_8b70564ef4 (IsA ultramarine blue) (STV 1.0 0.9091)) +(: cnet_isa_9d166dee60 (IsA ultramarine pigment) (STV 1.0 0.9091)) +(: cnet_isa_90b13232a9 (IsA ultramicroscope light_microscope) (STV 1.0 0.9091)) +(: cnet_isa_2343326782 (IsA ultramontane roman_catholic) (STV 1.0 0.9091)) +(: cnet_isa_274c778cfa (IsA ultramontanism policy) (STV 1.0 0.9091)) +(: cnet_isa_b57a24c4fa (IsA ultrasound sound) (STV 1.0 0.9091)) +(: cnet_isa_f2fb87bae1 (IsA ultraviolet light) (STV 1.0 0.9091)) +(: cnet_isa_79fc93f9df (IsA ultraviolet radiation) (STV 1.0 0.9091)) +(: cnet_isa_e82146cb45 (IsA ultraviolet actinic_radiation) (STV 1.0 0.9091)) +(: cnet_isa_57689ba094 (IsA ultraviolet_lamp source_of_illumination) (STV 1.0 0.9091)) +(: cnet_isa_03d5df9f17 (IsA ultraviolet_spectrum spectrum) (STV 1.0 0.9091)) +(: cnet_isa_34343abf43 (IsA ulva protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_21d9b71910 (IsA ulvaceae protoctist_family) (STV 1.0 0.9091)) +(: cnet_isa_37c37b811a (IsA ulvale protoctist_order) (STV 1.0 0.9091)) +(: cnet_isa_31e247506c (IsA ulvophyceae class) (STV 1.0 0.9091)) +(: cnet_isa_ef6dd71bac (IsA uma reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_86545b8a9c (IsA umayyad dynasty) (STV 1.0 0.9091)) +(: cnet_isa_b86d537936 (IsA umbel inflorescence) (STV 1.0 0.9091)) +(: cnet_isa_74911b2f19 (IsA umbellale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_e667b6a996 (IsA umbellifer herb) (STV 1.0 0.9091)) +(: cnet_isa_fd84c96fc6 (IsA umbelliferae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_b092a3746f (IsA umbellularia magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2cbc68d00a (IsA umber earth_color) (STV 1.0 0.9091)) +(: cnet_isa_6bc9f981de (IsA umbilical_cord duct) (STV 1.0 0.9091)) +(: cnet_isa_ffa4d35447 (IsA umbilical_cord fetal_membrane) (STV 1.0 0.9091)) +(: cnet_isa_ec60de0f64 (IsA umbilical_cord funiculus) (STV 1.0 0.9091)) +(: cnet_isa_e2defc70fa (IsA umbilical_hernia hernia) (STV 1.0 0.9091)) +(: cnet_isa_d39c4c19d4 (IsA umbilical_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_410765d383 (IsA umbo convex_shape) (STV 1.0 0.9091)) +(: cnet_isa_5fc047fd3b (IsA umbra shadow) (STV 1.0 0.9091)) +(: cnet_isa_223812749c (IsA umbrage anger) (STV 1.0 0.9091)) +(: cnet_isa_52b2e7ab4f (IsA umbrella device_to_protect) (STV 1.0 0.9339)) +(: cnet_isa_b2dd13d2d9 (IsA umbrella union) (STV 1.0 0.9091)) +(: cnet_isa_ee1dac1c0e (IsA umbrella canopy) (STV 1.0 0.9091)) +(: cnet_isa_172bc634d6 (IsA umbrella defense) (STV 1.0 0.9091)) +(: cnet_isa_1abcf29c4a (IsA umbrella_bird cotinga) (STV 1.0 0.9091)) +(: cnet_isa_9c276289e5 (IsA umbrella_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_5d7b8c1cea (IsA umbrella_plant eriogonum) (STV 1.0 0.9091)) +(: cnet_isa_1acdf18e0e (IsA umbrella_plant herb) (STV 1.0 0.9091)) +(: cnet_isa_c92c74fdc9 (IsA umbrella_plant sedge) (STV 1.0 0.9091)) +(: cnet_isa_2631da8048 (IsA umbrella_tent tent) (STV 1.0 0.9091)) +(: cnet_isa_ee67d12531 (IsA umbrella_tree magnolia) (STV 1.0 0.9091)) +(: cnet_isa_9420a848f2 (IsA umbrella_tree shrub) (STV 1.0 0.9091)) +(: cnet_isa_c3a16a71fd (IsA umbrellawort flower) (STV 1.0 0.9091)) +(: cnet_isa_58341521fb (IsA umbrian osco_umbrian) (STV 1.0 0.9091)) +(: cnet_isa_610ff05635 (IsA umbrina fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_91051f54f5 (IsA umbundu bantu) (STV 1.0 0.9091)) +(: cnet_isa_bb8e89e277 (IsA umlaut diacritical_mark) (STV 1.0 0.9091)) +(: cnet_isa_1e3a344f39 (IsA umma_tameer_e_nau nongovernmental_organization) (STV 1.0 0.9091)) +(: cnet_isa_3caf5d9730 (IsA ummah community) (STV 1.0 0.9091)) +(: cnet_isa_7d974f2cf6 (IsA umpirage decision_making) (STV 1.0 0.9091)) +(: cnet_isa_f5d009a214 (IsA umpirage mediation) (STV 1.0 0.9091)) +(: cnet_isa_1d6b91df22 (IsA umpire official) (STV 1.0 0.9091)) +(: cnet_isa_6ec36ea574 (IsA unabridged_dictionary dictionary) (STV 1.0 0.9091)) +(: cnet_isa_3d7bbd196f (IsA unacceptability unsatisfactoriness) (STV 1.0 0.9091)) +(: cnet_isa_5966608f5c (IsA unadaptability inability) (STV 1.0 0.9091)) +(: cnet_isa_7e1c078302 (IsA unaffectedness naturalness) (STV 1.0 0.9091)) +(: cnet_isa_d4219441a6 (IsA unai sloth) (STV 1.0 0.9091)) +(: cnet_isa_1a2f0ffc8c (IsA unalterability immutability) (STV 1.0 0.9091)) +(: cnet_isa_222464bb26 (IsA unambiguity clarity) (STV 1.0 0.9091)) +(: cnet_isa_fb4be14f9b (IsA unanimity agreement) (STV 1.0 0.9091)) +(: cnet_isa_9fb4d77d4f (IsA unappetizingness unpalatability) (STV 1.0 0.9091)) +(: cnet_isa_b4f420ba5e (IsA unapproachability aloofness) (STV 1.0 0.9091)) +(: cnet_isa_9a17f637b2 (IsA unassertiveness diffidence) (STV 1.0 0.9091)) +(: cnet_isa_9b59ed590f (IsA unattainableness impossibility) (STV 1.0 0.9091)) +(: cnet_isa_669ba1276f (IsA unattractiveness ugliness) (STV 1.0 0.9091)) +(: cnet_isa_5d1b0f74d4 (IsA unbecomingness indecorum) (STV 1.0 0.9091)) +(: cnet_isa_ee9d2a573d (IsA unbelief content) (STV 1.0 0.9091)) +(: cnet_isa_d08c428e14 (IsA unbreakableness consistency) (STV 1.0 0.9091)) +(: cnet_isa_7454a945a0 (IsA unceremoniousness informality) (STV 1.0 0.9091)) +(: cnet_isa_912eec130f (IsA uncertainty quality) (STV 1.0 0.9091)) +(: cnet_isa_70dcc75f83 (IsA uncertainty_principle scientific_theory) (STV 1.0 0.9091)) +(: cnet_isa_5ad9dbb27f (IsA uncheerfulness attribute) (STV 1.0 0.9091)) +(: cnet_isa_b84313c306 (IsA uncial script) (STV 1.0 0.9091)) +(: cnet_isa_a2af69d65e (IsA uncle father_s_brother) (STV 1.0 0.9454)) +(: cnet_isa_e2a83ca754 (IsA uncle parent_s_brother) (STV 1.0 0.9454)) +(: cnet_isa_b2536547ce (IsA uncle benefactor) (STV 1.0 0.9091)) +(: cnet_isa_61d980b60a (IsA uncle kinsman) (STV 1.0 0.9091)) +(: cnet_isa_ca84845fb4 (IsA uncleanliness trait) (STV 1.0 0.9091)) +(: cnet_isa_8b64cd6436 (IsA unclearness incomprehensibility) (STV 1.0 0.9091)) +(: cnet_isa_2158fb3460 (IsA uncommonness extraordinariness) (STV 1.0 0.9091)) +(: cnet_isa_c90b3079bf (IsA uncommunicativeness trait) (STV 1.0 0.9091)) +(: cnet_isa_c7814e17ea (IsA unconcern feeling) (STV 1.0 0.9091)) +(: cnet_isa_8b28a43165 (IsA unconfessed people) (STV 1.0 0.9091)) +(: cnet_isa_5338f269ca (IsA uncongeniality unfriendliness) (STV 1.0 0.9091)) +(: cnet_isa_eaf7035bc0 (IsA unconnectedness relation) (STV 1.0 0.9091)) +(: cnet_isa_05d6e56511 (IsA unconscientiousness carelessness) (STV 1.0 0.9091)) +(: cnet_isa_c9bd7e7f27 (IsA unconscientiousness conscience) (STV 1.0 0.9091)) +(: cnet_isa_538364230e (IsA unconscious_mind mind) (STV 1.0 0.9091)) +(: cnet_isa_627712e98d (IsA unconsciousness cognitive_state) (STV 1.0 0.9091)) +(: cnet_isa_781bf45413 (IsA unconventionality unorthodoxy) (STV 1.0 0.9091)) +(: cnet_isa_1176c72da0 (IsA unconventionality originality) (STV 1.0 0.9091)) +(: cnet_isa_42f3aec2b7 (IsA uncreativeness inability) (STV 1.0 0.9091)) +(: cnet_isa_437f983e54 (IsA unction anointing) (STV 1.0 0.9091)) +(: cnet_isa_9adfc652b5 (IsA unction religious_ceremony) (STV 1.0 0.9091)) +(: cnet_isa_62a8d02550 (IsA unction compliment) (STV 1.0 0.9091)) +(: cnet_isa_3a438da283 (IsA uncus hook) (STV 1.0 0.9091)) +(: cnet_isa_ef65b5b7ce (IsA undecagon polygon) (STV 1.0 0.9091)) +(: cnet_isa_fcca20b105 (IsA undecylenic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_6751222c87 (IsA undependability irresponsibility) (STV 1.0 0.9091)) +(: cnet_isa_984fda707a (IsA underachievement performance) (STV 1.0 0.9091)) +(: cnet_isa_183e3b09a4 (IsA underachiever student) (STV 1.0 0.9091)) +(: cnet_isa_944c098d96 (IsA underbelly weak_part) (STV 1.0 0.9091)) +(: cnet_isa_a8666af5ca (IsA underbelly abdomen) (STV 1.0 0.9091)) +(: cnet_isa_3bbfa5ab8d (IsA underbelly bottom) (STV 1.0 0.9091)) +(: cnet_isa_95ec5f3515 (IsA underboss assistant) (STV 1.0 0.9091)) +(: cnet_isa_ccc4633d67 (IsA underbrush brush) (STV 1.0 0.9091)) +(: cnet_isa_9509258e37 (IsA undercarriage framework) (STV 1.0 0.9091)) +(: cnet_isa_d25ceb009c (IsA undercarriage support) (STV 1.0 0.9091)) +(: cnet_isa_7263af373b (IsA undercharge charge) (STV 1.0 0.9091)) +(: cnet_isa_ac0806b5f1 (IsA undercoat fur) (STV 1.0 0.9091)) +(: cnet_isa_17b2ddd8d2 (IsA undercoat seal) (STV 1.0 0.9091)) +(: cnet_isa_eeb9e818e1 (IsA undercover_operation operation) (STV 1.0 0.9091)) +(: cnet_isa_63f94c8504 (IsA undercut cut) (STV 1.0 0.9091)) +(: cnet_isa_59ee44959e (IsA undercut forestry) (STV 1.0 0.9091)) +(: cnet_isa_595aaedf15 (IsA undercut notch) (STV 1.0 0.9091)) +(: cnet_isa_acbfb58bb9 (IsA undercut material) (STV 1.0 0.9091)) +(: cnet_isa_6482737983 (IsA underdevelopment development) (STV 1.0 0.9091)) +(: cnet_isa_f37644104a (IsA underdog failure) (STV 1.0 0.9091)) +(: cnet_isa_5ec7ec6ce8 (IsA underestimate estimate) (STV 1.0 0.9091)) +(: cnet_isa_f3557cf8dc (IsA underevaluation appraisal) (STV 1.0 0.9091)) +(: cnet_isa_1535b9540c (IsA underexposure exposure) (STV 1.0 0.9091)) +(: cnet_isa_69e4a1876a (IsA underfelt carpet_pad) (STV 1.0 0.9091)) +(: cnet_isa_dd64da1c75 (IsA undergarment garment) (STV 1.0 0.9091)) +(: cnet_isa_64ba35009e (IsA undergraduate collegian) (STV 1.0 0.9091)) +(: cnet_isa_97fd9b5190 (IsA underground revolutionary_group) (STV 1.0 0.9091)) +(: cnet_isa_6161cf6bdf (IsA underlip lip) (STV 1.0 0.9091)) +(: cnet_isa_c6d8978f5e (IsA undernourishment hunger) (STV 1.0 0.9091)) +(: cnet_isa_e480e062f0 (IsA underpant undergarment) (STV 1.0 0.9091)) +(: cnet_isa_ff036ce8b1 (IsA underpart body_part) (STV 1.0 0.9091)) +(: cnet_isa_c4bdd00231 (IsA underpass tunnel) (STV 1.0 0.9091)) +(: cnet_isa_c737ee64d5 (IsA underpayment payment) (STV 1.0 0.9091)) +(: cnet_isa_b81e681174 (IsA underperformer business) (STV 1.0 0.9091)) +(: cnet_isa_6c973f678a (IsA underproduction production) (STV 1.0 0.9091)) +(: cnet_isa_d48d0287bb (IsA underscore stroke) (STV 1.0 0.9091)) +(: cnet_isa_cf7234dfc4 (IsA undersecretary secretary) (STV 1.0 0.9091)) +(: cnet_isa_9108504d51 (IsA underseller seller) (STV 1.0 0.9091)) +(: cnet_isa_23864ae0a0 (IsA undershrub shrub) (STV 1.0 0.9091)) +(: cnet_isa_71f4f446ed (IsA understanding knowing) (STV 1.0 0.9091)) +(: cnet_isa_ca4e81af49 (IsA understatement statement) (STV 1.0 0.9091)) +(: cnet_isa_781404a91b (IsA understudy actor) (STV 1.0 0.9091)) +(: cnet_isa_b05a76eeb0 (IsA undertaking trade) (STV 1.0 0.9091)) +(: cnet_isa_0a43c76809 (IsA undertaking work) (STV 1.0 0.9091)) +(: cnet_isa_a65ec1e29a (IsA undertide current) (STV 1.0 0.9091)) +(: cnet_isa_53a9f75016 (IsA undertone shade) (STV 1.0 0.9091)) +(: cnet_isa_3ef345153c (IsA undertone meaning) (STV 1.0 0.9091)) +(: cnet_isa_134d7505d4 (IsA undertone tone) (STV 1.0 0.9091)) +(: cnet_isa_066bd0ddb9 (IsA undertow undertide) (STV 1.0 0.9091)) +(: cnet_isa_f74aa6fadf (IsA undertow inclination) (STV 1.0 0.9091)) +(: cnet_isa_67f5b9b782 (IsA undervaluation evaluation) (STV 1.0 0.9091)) +(: cnet_isa_324744a1c3 (IsA underwear undergarment) (STV 1.0 0.9091)) +(: cnet_isa_fc55ed4386 (IsA underwing noctuid_moth) (STV 1.0 0.9091)) +(: cnet_isa_e721f29f2e (IsA underworld class) (STV 1.0 0.9091)) +(: cnet_isa_a21b524df4 (IsA undescended_testis testis) (STV 1.0 0.9091)) +(: cnet_isa_749a0ab1bc (IsA undesirability bad) (STV 1.0 0.9091)) +(: cnet_isa_127100a178 (IsA undesirable unwelcome_person) (STV 1.0 0.9091)) +(: cnet_isa_6e34630b7c (IsA undy lingerie) (STV 1.0 0.9091)) +(: cnet_isa_0bf52d8488 (IsA undine water_sprite) (STV 1.0 0.9091)) +(: cnet_isa_64337865fe (IsA undivided_interest interest) (STV 1.0 0.9091)) +(: cnet_isa_28341abd53 (IsA undoer person) (STV 1.0 0.9091)) +(: cnet_isa_54d4c49c91 (IsA undoer seducer) (STV 1.0 0.9091)) +(: cnet_isa_80f24a886a (IsA undoing about_face) (STV 1.0 0.9091)) +(: cnet_isa_1adc30e674 (IsA undress nakedness) (STV 1.0 0.9091)) +(: cnet_isa_0cba3342a1 (IsA undulation movement) (STV 1.0 0.9091)) +(: cnet_isa_66862c40b9 (IsA undutifulness impiety) (STV 1.0 0.9091)) +(: cnet_isa_786b4a2073 (IsA unearned_income income) (STV 1.0 0.9091)) +(: cnet_isa_3c3552ddb1 (IsA unearned_increment financial_gain) (STV 1.0 0.9091)) +(: cnet_isa_a978a7ad48 (IsA unearned_run run) (STV 1.0 0.9091)) +(: cnet_isa_ac10ce6fee (IsA unemotionality trait) (STV 1.0 0.9091)) +(: cnet_isa_f49ef20ae9 (IsA unemployed_people people) (STV 1.0 0.9091)) +(: cnet_isa_1e6cd52406 (IsA unemployed_person nonworker) (STV 1.0 0.9091)) +(: cnet_isa_28dc0bbc3c (IsA unemployment state) (STV 1.0 0.9091)) +(: cnet_isa_701e5e4d1e (IsA unemployment_compensation social_insurance) (STV 1.0 0.9091)) +(: cnet_isa_9e891faa76 (IsA unemployment_line queue) (STV 1.0 0.9091)) +(: cnet_isa_c171b295c3 (IsA unemployment_rate percentage) (STV 1.0 0.9091)) +(: cnet_isa_8d23aebdfd (IsA unenlightenment ignorance) (STV 1.0 0.9091)) +(: cnet_isa_dcc268c370 (IsA uneven_parallel_bar parallel_bar) (STV 1.0 0.9091)) +(: cnet_isa_2fbc009b8e (IsA unevenness inequality) (STV 1.0 0.9091)) +(: cnet_isa_fe2af7de88 (IsA unevenness irregularity) (STV 1.0 0.9091)) +(: cnet_isa_1ae071fecf (IsA unexchangeability changelessness) (STV 1.0 0.9091)) +(: cnet_isa_ddc427cdf4 (IsA unexpectedness extraordinariness) (STV 1.0 0.9091)) +(: cnet_isa_bf2653f380 (IsA unfairness injustice) (STV 1.0 0.9091)) +(: cnet_isa_f457e4c138 (IsA unfairness partiality) (STV 1.0 0.9091)) +(: cnet_isa_21268a50fd (IsA unfamiliarity unusualness) (STV 1.0 0.9091)) +(: cnet_isa_8db5905d59 (IsA unfavorableness disadvantage) (STV 1.0 0.9091)) +(: cnet_isa_999ca09994 (IsA unfeelingness insensitivity) (STV 1.0 0.9091)) +(: cnet_isa_9ee8bd187f (IsA unfitness unsuitability) (STV 1.0 0.9091)) +(: cnet_isa_98b40d6e66 (IsA unfitness ill_health) (STV 1.0 0.9091)) +(: cnet_isa_e4a8004009 (IsA unfolding development) (STV 1.0 0.9091)) +(: cnet_isa_6ba5855a82 (IsA unformatted_capacity capacity) (STV 1.0 0.9091)) +(: cnet_isa_f556d8b7a4 (IsA unfortunate person) (STV 1.0 0.9091)) +(: cnet_isa_5b3a691250 (IsA unfriendliness disposition) (STV 1.0 0.9091)) +(: cnet_isa_8d6a3e64a1 (IsA unfriendliness dislike) (STV 1.0 0.9091)) +(: cnet_isa_b75c6a6675 (IsA ungodliness impiety) (STV 1.0 0.9091)) +(: cnet_isa_4e08101059 (IsA ungraciousness discourtesy) (STV 1.0 0.9091)) +(: cnet_isa_93d25b3e26 (IsA ungradable_opposition opposition) (STV 1.0 0.9091)) +(: cnet_isa_569a6c001f (IsA unguiculata placental) (STV 1.0 0.9091)) +(: cnet_isa_5d72287d2f (IsA unguiculate placental) (STV 1.0 0.9091)) +(: cnet_isa_552b0d6fc7 (IsA ungulata placental) (STV 1.0 0.9091)) +(: cnet_isa_08731133b8 (IsA ungulate placental) (STV 1.0 0.9091)) +(: cnet_isa_0f0da91084 (IsA unhappiness emotional_state) (STV 1.0 0.9091)) +(: cnet_isa_8f68ea6005 (IsA unhealthfulness unwholesomeness) (STV 1.0 0.9091)) +(: cnet_isa_3f9f9a8d9f (IsA unhelpfulness unkindness) (STV 1.0 0.9091)) +(: cnet_isa_3b6ab7f850 (IsA unholiness quality) (STV 1.0 0.9091)) +(: cnet_isa_3c9dd8d7d2 (IsA uniat_church catholic_church) (STV 1.0 0.9091)) +(: cnet_isa_f258f52781 (IsA uniate_christian catholic) (STV 1.0 0.9091)) +(: cnet_isa_a92d2132b6 (IsA unicameral_script font) (STV 1.0 0.9091)) +(: cnet_isa_6e71bb3658 (IsA unicorn make_believe_creature) (STV 1.0 0.9091)) +(: cnet_isa_f2b04ea36e (IsA unicorn imaginary_being) (STV 1.0 0.9091)) +(: cnet_isa_d93fe40d17 (IsA unicycle vehicle) (STV 1.0 0.9091)) +(: cnet_isa_51eb52e15f (IsA unicycle wheeled_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_29d39280fd (IsA unicyclist pedaler) (STV 1.0 0.9091)) +(: cnet_isa_cc5b9a209f (IsA unidentified_flying_object apparition) (STV 1.0 0.9091)) +(: cnet_isa_985ff44176 (IsA unification_church church) (STV 1.0 0.9091)) +(: cnet_isa_00d1ada146 (IsA uniform clothing) (STV 1.0 0.9091)) +(: cnet_isa_bddc4ecf5b (IsA uniformity regularity) (STV 1.0 0.9091)) +(: cnet_isa_167aaab312 (IsA uniformity similarity) (STV 1.0 0.9091)) +(: cnet_isa_7a25da03c0 (IsA unilateral_contract agreement) (STV 1.0 0.9091)) +(: cnet_isa_84d66140d3 (IsA unilateral_descent descent) (STV 1.0 0.9091)) +(: cnet_isa_f873343416 (IsA unilateralism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_4ddd226864 (IsA unilateralist advocate) (STV 1.0 0.9091)) +(: cnet_isa_65d3307839 (IsA unimportance value) (STV 1.0 0.9091)) +(: cnet_isa_88b18627b7 (IsA uninitiate people) (STV 1.0 0.9091)) +(: cnet_isa_2e8ee0fc7e (IsA uninominal_system voting_system) (STV 1.0 0.9091)) +(: cnet_isa_f141db4945 (IsA uninsurability ineligibility) (STV 1.0 0.9091)) +(: cnet_isa_d01a8e9233 (IsA unintelligibility incomprehensibility) (STV 1.0 0.9091)) +(: cnet_isa_2ddd05eaff (IsA uninterestingness powerlessness) (STV 1.0 0.9091)) +(: cnet_isa_bb326253c1 (IsA unio mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_952cc72f38 (IsA uniocular_dichromat dichromat) (STV 1.0 0.9091)) +(: cnet_isa_7a28a90777 (IsA union collective_bargaining_unit) (STV 1.0 0.9091)) +(: cnet_isa_c8fded83a2 (IsA union combination) (STV 1.0 0.9091)) +(: cnet_isa_57e67ef6c6 (IsA union device) (STV 1.0 0.9091)) +(: cnet_isa_612070808d (IsA union happening) (STV 1.0 0.9091)) +(: cnet_isa_6527b0b33c (IsA union organization) (STV 1.0 0.9091)) +(: cnet_isa_5adcbb2288 (IsA union political_unit) (STV 1.0 0.9091)) +(: cnet_isa_c5786b325c (IsA union set) (STV 1.0 0.9091)) +(: cnet_isa_e66938a072 (IsA union healing) (STV 1.0 0.9091)) +(: cnet_isa_bc0f2120f1 (IsA union state) (STV 1.0 0.9091)) +(: cnet_isa_c11df7ecca (IsA union_army army) (STV 1.0 0.9091)) +(: cnet_isa_5d0f34ad58 (IsA union_army blue) (STV 1.0 0.9091)) +(: cnet_isa_9f3803268d (IsA union_card membership_card) (STV 1.0 0.9091)) +(: cnet_isa_d45a6fff93 (IsA union_jack flag) (STV 1.0 0.9091)) +(: cnet_isa_f6433b53f4 (IsA union_representative representative) (STV 1.0 0.9091)) +(: cnet_isa_681597a231 (IsA union_shop company) (STV 1.0 0.9091)) +(: cnet_isa_0613728611 (IsA unionidae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_bb4af6e95b (IsA unionism labor_movement) (STV 1.0 0.9091)) +(: cnet_isa_93ad4fbb70 (IsA unionization constitution) (STV 1.0 0.9091)) +(: cnet_isa_064bc3ad41 (IsA unipolar_depression major_depressive_episode) (STV 1.0 0.9091)) +(: cnet_isa_8c39aad7cf (IsA unison concurrence) (STV 1.0 0.9091)) +(: cnet_isa_8dc04448ea (IsA unison sound) (STV 1.0 0.9091)) +(: cnet_isa_e8e58fbc41 (IsA unison agreement) (STV 1.0 0.9091)) +(: cnet_isa_8caee00650 (IsA unit whole) (STV 1.0 0.9091)) +(: cnet_isa_7e3a98e101 (IsA unit organization) (STV 1.0 0.9091)) +(: cnet_isa_4d66bce0de (IsA unit part) (STV 1.0 0.9091)) +(: cnet_isa_b90537b3f8 (IsA unit thing) (STV 1.0 0.9091)) +(: cnet_isa_525820536b (IsA unit_cell unit) (STV 1.0 0.9091)) +(: cnet_isa_cb341b824b (IsA unit_character character) (STV 1.0 0.9091)) +(: cnet_isa_d73119d48d (IsA unit_cost cost) (STV 1.0 0.9091)) +(: cnet_isa_0003ab86b5 (IsA unit_investment_trust investment_company) (STV 1.0 0.9091)) +(: cnet_isa_d246f6ba2f (IsA unit_of_measurement definite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_c10005a8cd (IsA unit_of_viscosity unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_beacbd0b12 (IsA unit_vector vector) (STV 1.0 0.9091)) +(: cnet_isa_75ba7f4f36 (IsA unitarian disciple) (STV 1.0 0.9091)) +(: cnet_isa_9971928004 (IsA unitarian_church protestant_denomination) (STV 1.0 0.9091)) +(: cnet_isa_d7ba839997 (IsA unitarianism religion) (STV 1.0 0.9091)) +(: cnet_isa_fdc11ac18a (IsA united_arab_emirate_dirham united_arab_emirate_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_646764bef8 (IsA united_arab_emirate_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_dcd79b7c34 (IsA united_church_of_christ protestant_denomination) (STV 1.0 0.9091)) +(: cnet_isa_eff6a992dc (IsA united_methodist_church methodist_denomination) (STV 1.0 0.9091)) +(: cnet_isa_e85d71aa43 (IsA united_mine_worker_of_america industrial_union) (STV 1.0 0.9091)) +(: cnet_isa_b6871f7015 (IsA united_nation world_organization) (STV 1.0 0.9091)) +(: cnet_isa_664c944e0f (IsA united_nation_agency administrative_unit) (STV 1.0 0.9091)) +(: cnet_isa_98648584e0 (IsA united_nation_children_s_fund united_nation_agency) (STV 1.0 0.9091)) +(: cnet_isa_5ade7295b8 (IsA united_nation_crime_prevention_and_criminal_justice united_nation_agency) (STV 1.0 0.9091)) +(: cnet_isa_f5e7058493 (IsA united_nation_day day) (STV 1.0 0.9091)) +(: cnet_isa_bc7c2f5a6e (IsA united_nation_educational_scientific_and_cultural_organization united_nation_agency) (STV 1.0 0.9091)) +(: cnet_isa_92688ab398 (IsA united_nation_office_for_drug_control_and_crime_prevention united_nation_agency) (STV 1.0 0.9091)) +(: cnet_isa_854fd31013 (IsA united_nation_secretariat secretariat) (STV 1.0 0.9091)) +(: cnet_isa_15cd701e74 (IsA united_state country_in_north_america) (STV 1.0 0.9339)) +(: cnet_isa_de6459ab03 (IsA united_state free_country) (STV 1.0 0.9091)) +(: cnet_isa_aabb95bfdc (IsA united_state one_country_in_world) (STV 1.0 0.9091)) +(: cnet_isa_9c9b5774b9 (IsA united_state_air_force agency) (STV 1.0 0.9091)) +(: cnet_isa_83f17a87e2 (IsA united_state_air_force_academy air_force_academy) (STV 1.0 0.9091)) +(: cnet_isa_0336b82923 (IsA united_state_army agency) (STV 1.0 0.9091)) +(: cnet_isa_dc4d8ecaf7 (IsA united_state_army_ranger battalion) (STV 1.0 0.9091)) +(: cnet_isa_51c512f43f (IsA united_state_attorney_general secretary) (STV 1.0 0.9091)) +(: cnet_isa_8ff756e7d0 (IsA united_state_border_patrol agency) (STV 1.0 0.9091)) +(: cnet_isa_c88e592599 (IsA united_state_cabinet cabinet) (STV 1.0 0.9091)) +(: cnet_isa_ae3f600c4f (IsA united_state_coast_guard agency) (STV 1.0 0.9091)) +(: cnet_isa_c3c53095a8 (IsA united_state_coast_guard coastguard) (STV 1.0 0.9091)) +(: cnet_isa_d431575af6 (IsA united_state_code legal_code) (STV 1.0 0.9091)) +(: cnet_isa_6dca8b2b70 (IsA united_state_customary_system system_of_weight_and_measure) (STV 1.0 0.9091)) +(: cnet_isa_2948799e63 (IsA united_state_dollar dollar) (STV 1.0 0.9091)) +(: cnet_isa_d7f46ff40f (IsA united_state_dry_unit dry_unit) (STV 1.0 0.9091)) +(: cnet_isa_87af757d9d (IsA united_state_fish_and_wildlife_service agency) (STV 1.0 0.9091)) +(: cnet_isa_b4604e806c (IsA united_state_government federal_government) (STV 1.0 0.9091)) +(: cnet_isa_5c3db299b8 (IsA united_state_government_printing_office agency) (STV 1.0 0.9091)) +(: cnet_isa_f4092c08c7 (IsA united_state_house_of_representative house) (STV 1.0 0.9091)) +(: cnet_isa_3347a6920e (IsA united_state_intelligence_agency intelligence) (STV 1.0 0.9091)) +(: cnet_isa_c6ba32927f (IsA united_state_liquid_unit liquid_unit) (STV 1.0 0.9091)) +(: cnet_isa_5e7e16c0a6 (IsA united_state_marine_corp marine) (STV 1.0 0.9091)) +(: cnet_isa_7d0914ddf7 (IsA united_state_marshal_service law_enforcement_agency) (STV 1.0 0.9091)) +(: cnet_isa_c9fc3cf2e6 (IsA united_state_military_academy military_academy) (STV 1.0 0.9091)) +(: cnet_isa_bb0abfe6b1 (IsA united_state_naval_academy naval_academy) (STV 1.0 0.9091)) +(: cnet_isa_5f2755c939 (IsA united_state_navy agency) (STV 1.0 0.9091)) +(: cnet_isa_f4f701c2d1 (IsA united_state_of_america capitalist_democratic_federal_republic) (STV 1.0 0.9091)) +(: cnet_isa_c6a5ae9990 (IsA united_state_of_america country) (STV 1.0 0.9339)) +(: cnet_isa_b37b5d6127 (IsA united_state_post_office independent_agency) (STV 1.0 0.9091)) +(: cnet_isa_62fd27f18e (IsA united_state_postal_inspection_service independent_agency) (STV 1.0 0.9091)) +(: cnet_isa_23d6191ec0 (IsA united_state_postal_service independent_agency) (STV 1.0 0.9091)) +(: cnet_isa_2cbf731e2b (IsA united_state_president head_of_state) (STV 1.0 0.9091)) +(: cnet_isa_c6ed18506a (IsA united_state_public_health_service agency) (STV 1.0 0.9091)) +(: cnet_isa_84128f7e63 (IsA united_state_secret_service united_state_intelligence_agency) (STV 1.0 0.9091)) +(: cnet_isa_02f62e7bb9 (IsA united_state_senate senate) (STV 1.0 0.9091)) +(: cnet_isa_606925fb07 (IsA united_state_trade_representative executive_agency) (STV 1.0 0.9091)) +(: cnet_isa_2ac251d29b (IsA unitization conversion) (STV 1.0 0.9091)) +(: cnet_isa_9e798702cc (IsA unitization exploitation) (STV 1.0 0.9091)) +(: cnet_isa_d2a185c420 (IsA unitization packaging) (STV 1.0 0.9091)) +(: cnet_isa_374f754794 (IsA unitization configuration) (STV 1.0 0.9091)) +(: cnet_isa_f97ed002e1 (IsA unit_of_time second) (STV 1.0 0.9091)) +(: cnet_isa_e6c26c282b (IsA universal convention) (STV 1.0 0.9091)) +(: cnet_isa_bb6eeb8540 (IsA universal_agent agent) (STV 1.0 0.9091)) +(: cnet_isa_941963367a (IsA universal_donor blood_donor) (STV 1.0 0.9091)) +(: cnet_isa_d0ef5f120c (IsA universal_joint coupling) (STV 1.0 0.9091)) +(: cnet_isa_df5b9e5b05 (IsA universal_proposition proposition) (STV 1.0 0.9091)) +(: cnet_isa_7c456a33a2 (IsA universal_quantifier quantifier) (STV 1.0 0.9091)) +(: cnet_isa_f4587608d7 (IsA universal_set set) (STV 1.0 0.9091)) +(: cnet_isa_89bc29870d (IsA universal_suffrage right_to_vote) (STV 1.0 0.9091)) +(: cnet_isa_2e54c32ddb (IsA universal_veil partial_veil) (STV 1.0 0.9091)) +(: cnet_isa_90ada5b16a (IsA universalism theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_71386cdfb5 (IsA universality generality) (STV 1.0 0.9091)) +(: cnet_isa_4c5ea94098 (IsA universe all_around_us) (STV 1.0 0.9091)) +(: cnet_isa_3ded71393f (IsA universe everything) (STV 1.0 0.9091)) +(: cnet_isa_6ccd7da76b (IsA universe thing) (STV 1.0 0.9091)) +(: cnet_isa_dd6c20a804 (IsA universe content) (STV 1.0 0.9091)) +(: cnet_isa_c43b64ba69 (IsA universe natural_object) (STV 1.0 0.9091)) +(: cnet_isa_48f3d88926 (IsA university educational_institution) (STV 1.0 0.9091)) +(: cnet_isa_862c313c5f (IsA university institution) (STV 1.0 0.9339)) +(: cnet_isa_25f0d0fa20 (IsA university place) (STV 1.0 0.9454)) +(: cnet_isa_1e3d83135a (IsA university school) (STV 1.0 0.9091)) +(: cnet_isa_a4ca7d4e57 (IsA university establishment) (STV 1.0 0.9091)) +(: cnet_isa_bb3e955373 (IsA university body) (STV 1.0 0.9091)) +(: cnet_isa_72be3f24f3 (IsA unix operating_system) (STV 1.0 0.9693)) +(: cnet_isa_08d7e361b2 (IsA unix system) (STV 1.0 0.9693)) +(: cnet_isa_9fa00c8471 (IsA unix_guru computer_expert) (STV 1.0 0.9091)) +(: cnet_isa_7a49ab2ee3 (IsA unkindness insensitivity) (STV 1.0 0.9091)) +(: cnet_isa_6e8e5a8e8e (IsA unknowingness unconsciousness) (STV 1.0 0.9091)) +(: cnet_isa_ba00d4b693 (IsA unknown variable) (STV 1.0 0.9091)) +(: cnet_isa_d13bf65cfa (IsA unknown region) (STV 1.0 0.9091)) +(: cnet_isa_efbfb80ebc (IsA unknown_quantity factor) (STV 1.0 0.9091)) +(: cnet_isa_9a80578230 (IsA unknown_soldier soldier) (STV 1.0 0.9091)) +(: cnet_isa_fc730b1c75 (IsA unlawful_carnal_knowledge sexual_intercourse) (STV 1.0 0.9091)) +(: cnet_isa_8f9ec87a6f (IsA unlawfulness quality) (STV 1.0 0.9091)) +(: cnet_isa_68df407422 (IsA unleaded_gasoline gasoline) (STV 1.0 0.9091)) +(: cnet_isa_60b6feb30d (IsA unlikelihood improbability) (STV 1.0 0.9091)) +(: cnet_isa_2a92255136 (IsA unlikeness dissimilarity) (STV 1.0 0.9091)) +(: cnet_isa_95d5123368 (IsA unlisted_security security) (STV 1.0 0.9091)) +(: cnet_isa_a165d0e5aa (IsA unloading handling) (STV 1.0 0.9091)) +(: cnet_isa_055f975faf (IsA unmalleability physical_property) (STV 1.0 0.9091)) +(: cnet_isa_981bab7148 (IsA unmarried_woman woman) (STV 1.0 0.9091)) +(: cnet_isa_e3d8148aeb (IsA unmindfulness attentiveness) (STV 1.0 0.9091)) +(: cnet_isa_18aab79afa (IsA unnaturalness quality) (STV 1.0 0.9091)) +(: cnet_isa_7544937428 (IsA unneighborliness unfriendliness) (STV 1.0 0.9091)) +(: cnet_isa_d9198eb7bc (IsA unnilhexium chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_49d0077d88 (IsA unnilquintium chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_a128d138ae (IsA unnilseptium chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_96c94df815 (IsA unnoticeableness inconspicuousness) (STV 1.0 0.9091)) +(: cnet_isa_05b4a3f67d (IsA unobserved_fire fire) (STV 1.0 0.9091)) +(: cnet_isa_e630798f49 (IsA unobtrusiveness inconspicuousness) (STV 1.0 0.9091)) +(: cnet_isa_4a3f568f67 (IsA unoriginality quality) (STV 1.0 0.9091)) +(: cnet_isa_db20d742db (IsA unoriginality uncreativeness) (STV 1.0 0.9091)) +(: cnet_isa_5d6fadd738 (IsA unorthodoxy originality) (STV 1.0 0.9091)) +(: cnet_isa_2c2de17c75 (IsA unorthodoxy orientation) (STV 1.0 0.9091)) +(: cnet_isa_967e420d9f (IsA unpalatability taste_property) (STV 1.0 0.9091)) +(: cnet_isa_48d4567873 (IsA unpalatableness disagreeableness) (STV 1.0 0.9091)) +(: cnet_isa_4ef93d7bd8 (IsA unperceptiveness insensitivity) (STV 1.0 0.9091)) +(: cnet_isa_342302e490 (IsA unpermissiveness disposition) (STV 1.0 0.9091)) +(: cnet_isa_726e6e4110 (IsA unpersuasiveness powerlessness) (STV 1.0 0.9091)) +(: cnet_isa_b0d8ee68ec (IsA unpleasant_person unwelcome_person) (STV 1.0 0.9091)) +(: cnet_isa_1bb3d66e65 (IsA unpleasant_woman unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_67406b3c70 (IsA unpleasantness quality) (STV 1.0 0.9091)) +(: cnet_isa_9c6e4a6b9a (IsA unpleasantness pain) (STV 1.0 0.9091)) +(: cnet_isa_07d69c62a5 (IsA unpleasingness unpleasantness) (STV 1.0 0.9091)) +(: cnet_isa_310680a9de (IsA unpointedness taper) (STV 1.0 0.9091)) +(: cnet_isa_01c8d0dca3 (IsA unpopularity quality) (STV 1.0 0.9091)) +(: cnet_isa_25b656ca34 (IsA unpredictability uncertainty) (STV 1.0 0.9091)) +(: cnet_isa_d7e3a07159 (IsA unpretentiousness naturalness) (STV 1.0 0.9091)) +(: cnet_isa_8272f5776d (IsA unproductiveness fruitlessness) (STV 1.0 0.9091)) +(: cnet_isa_e47cd5bef1 (IsA unprofitableness disadvantage) (STV 1.0 0.9091)) +(: cnet_isa_c5935fd756 (IsA unreality immateriality) (STV 1.0 0.9091)) +(: cnet_isa_099cfaa49b (IsA unreality nonexistence) (STV 1.0 0.9091)) +(: cnet_isa_bde02916e7 (IsA unrelatedness unconnectedness) (STV 1.0 0.9091)) +(: cnet_isa_70303f9cd4 (IsA unrespectability dishonorableness) (STV 1.0 0.9091)) +(: cnet_isa_541310d40a (IsA unresponsiveness quality) (STV 1.0 0.9091)) +(: cnet_isa_14583bec7a (IsA unrest agitation) (STV 1.0 0.9091)) +(: cnet_isa_c5b7d015fb (IsA unrestraint indiscipline) (STV 1.0 0.9091)) +(: cnet_isa_362b1e7063 (IsA unrighteousness immorality) (STV 1.0 0.9091)) +(: cnet_isa_8291296850 (IsA unruliness intractability) (STV 1.0 0.9091)) +(: cnet_isa_8a45a59f7e (IsA unsanitariness sanitary_condition) (STV 1.0 0.9091)) +(: cnet_isa_f2a48850ce (IsA unsatisfactoriness quality) (STV 1.0 0.9091)) +(: cnet_isa_0c849a9a0c (IsA unsaturated_fatty_acid fatty_acid) (STV 1.0 0.9091)) +(: cnet_isa_8458c0813e (IsA unsavoriness unpalatableness) (STV 1.0 0.9091)) +(: cnet_isa_747bdbbe42 (IsA unscrupulousness dishonesty) (STV 1.0 0.9091)) +(: cnet_isa_58cefc6a35 (IsA unseasonableness timing) (STV 1.0 0.9091)) +(: cnet_isa_662fa207d4 (IsA unsecured_bond bond) (STV 1.0 0.9091)) +(: cnet_isa_68ef2ec10e (IsA unseemliness indecorum) (STV 1.0 0.9091)) +(: cnet_isa_60e1073ca5 (IsA unselfconsciousness unknowingness) (STV 1.0 0.9091)) +(: cnet_isa_8b4b9b2160 (IsA unselfishness generosity) (STV 1.0 0.9091)) +(: cnet_isa_a84f05eada (IsA unsightliness ugliness) (STV 1.0 0.9091)) +(: cnet_isa_5e4d64a550 (IsA unskilled_person person) (STV 1.0 0.9091)) +(: cnet_isa_979dfe4c6c (IsA unskillfulness inability) (STV 1.0 0.9091)) +(: cnet_isa_2d52675e99 (IsA unsnarling liberation) (STV 1.0 0.9091)) +(: cnet_isa_826edf5694 (IsA unsociability disposition) (STV 1.0 0.9091)) +(: cnet_isa_32e9c389e2 (IsA unsolvability property) (STV 1.0 0.9091)) +(: cnet_isa_ce174f36e1 (IsA unsoundness bad) (STV 1.0 0.9091)) +(: cnet_isa_14ed10bd40 (IsA unsoundness misconception) (STV 1.0 0.9091)) +(: cnet_isa_e98c2eb543 (IsA unsoundness condition) (STV 1.0 0.9091)) +(: cnet_isa_6206b49974 (IsA unspoken_accusation implication) (STV 1.0 0.9091)) +(: cnet_isa_e9ebb8a058 (IsA unsteadiness irregularity) (STV 1.0 0.9091)) +(: cnet_isa_67ba0d32d8 (IsA unstratified_language programming_language) (STV 1.0 0.9091)) +(: cnet_isa_e8e97ae3e3 (IsA unsuitability quality) (STV 1.0 0.9091)) +(: cnet_isa_3f41b67b24 (IsA unsusceptibility condition) (STV 1.0 0.9091)) +(: cnet_isa_e5ad14be90 (IsA unthoughtfulness trait) (STV 1.0 0.9091)) +(: cnet_isa_3a97045bcb (IsA untidiness uncleanliness) (STV 1.0 0.9091)) +(: cnet_isa_600a4ce8c5 (IsA untidiness disorderliness) (STV 1.0 0.9091)) +(: cnet_isa_653a1b865b (IsA untouchable outcast) (STV 1.0 0.9091)) +(: cnet_isa_5c26cbc0ab (IsA untrustworthiness trait) (STV 1.0 0.9091)) +(: cnet_isa_c8c955c9ac (IsA untruthfulness dishonesty) (STV 1.0 0.9091)) +(: cnet_isa_053fc126c3 (IsA untying loosening) (STV 1.0 0.9091)) +(: cnet_isa_79e8ce28b7 (IsA ununbium chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_195fdc6cdc (IsA ununhexium chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_26ae21aac6 (IsA ununpentium chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_482e2efece (IsA ununquadium chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_19af73fb39 (IsA ununtrium chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_27603c5788 (IsA unusualness uncommonness) (STV 1.0 0.9091)) +(: cnet_isa_76d9d528e7 (IsA unvariedness invariability) (STV 1.0 0.9091)) +(: cnet_isa_2323c71018 (IsA unveiling presentation) (STV 1.0 0.9091)) +(: cnet_isa_e0211ad589 (IsA unwariness incaution) (STV 1.0 0.9091)) +(: cnet_isa_8c090f0042 (IsA unwelcome_person person) (STV 1.0 0.9091)) +(: cnet_isa_bd49f0819c (IsA unwholesomeness quality) (STV 1.0 0.9091)) +(: cnet_isa_f7e72f19ff (IsA unwieldiness troublesomeness) (STV 1.0 0.9091)) +(: cnet_isa_29dbdaa2d4 (IsA unwillingness disposition) (STV 1.0 0.9091)) +(: cnet_isa_2a5c40c038 (IsA unworthiness bad) (STV 1.0 0.9091)) +(: cnet_isa_a1fe5d8f43 (IsA unwritten_law practice) (STV 1.0 0.9091)) +(: cnet_isa_2ecbffb5e8 (IsA up direction) (STV 1.0 0.9524)) +(: cnet_isa_db1d047ec9 (IsA up_bow bow) (STV 1.0 0.9091)) +(: cnet_isa_22ae3d1d8b (IsA up_quark quark) (STV 1.0 0.9091)) +(: cnet_isa_b077e11b43 (IsA up_tick increase) (STV 1.0 0.9091)) +(: cnet_isa_bceadb690d (IsA upbeat style_of_music) (STV 1.0 0.9091)) +(: cnet_isa_087dd6d2ac (IsA upbeat rhythm) (STV 1.0 0.9091)) +(: cnet_isa_75183b2dd9 (IsA upbraider authority) (STV 1.0 0.9091)) +(: cnet_isa_f3bc4d4526 (IsA upbringing inheritance) (STV 1.0 0.9091)) +(: cnet_isa_b0bb398600 (IsA upcast air_passage) (STV 1.0 0.9091)) +(: cnet_isa_dda46b9f60 (IsA update activity) (STV 1.0 0.9091)) +(: cnet_isa_fb317f95a6 (IsA update information) (STV 1.0 0.9091)) +(: cnet_isa_5e4070452d (IsA updating change) (STV 1.0 0.9091)) +(: cnet_isa_25d2e631bd (IsA updraft draft) (STV 1.0 0.9091)) +(: cnet_isa_acd2cf13c2 (IsA upgrade improvement) (STV 1.0 0.9091)) +(: cnet_isa_18e49be539 (IsA upgrade hardware) (STV 1.0 0.9091)) +(: cnet_isa_f067b343ae (IsA upgrade grade) (STV 1.0 0.9091)) +(: cnet_isa_3466ead89c (IsA upgrade reservation) (STV 1.0 0.9091)) +(: cnet_isa_725c587014 (IsA upgrade software) (STV 1.0 0.9091)) +(: cnet_isa_8c35e3a93f (IsA upheaval rise) (STV 1.0 0.9091)) +(: cnet_isa_3fad28a22f (IsA uphill ascent) (STV 1.0 0.9091)) +(: cnet_isa_39a9ca48a9 (IsA upholder supporter) (STV 1.0 0.9091)) +(: cnet_isa_8927cdd3cb (IsA upholsterer craftsman) (STV 1.0 0.9091)) +(: cnet_isa_340db23722 (IsA upholstery trade) (STV 1.0 0.9091)) +(: cnet_isa_6bab9c6058 (IsA upholstery covering) (STV 1.0 0.9091)) +(: cnet_isa_fb57352fdd (IsA upholstery_material fabric) (STV 1.0 0.9091)) +(: cnet_isa_3aed528c18 (IsA upholstery_needle sewing_needle) (STV 1.0 0.9091)) +(: cnet_isa_bea1bcf9c9 (IsA upland_cotton cotton) (STV 1.0 0.9091)) +(: cnet_isa_2f22879ba8 (IsA upland_sandpiper sandpiper) (STV 1.0 0.9091)) +(: cnet_isa_ca89cae118 (IsA upland_white_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_e069e39dda (IsA uplift brassiere) (STV 1.0 0.9091)) +(: cnet_isa_a0b274843a (IsA uplifting rise) (STV 1.0 0.9091)) +(: cnet_isa_c075e3a428 (IsA uplink transmission) (STV 1.0 0.9091)) +(: cnet_isa_eb2d3b7de3 (IsA upper piece_of_leather) (STV 1.0 0.9091)) +(: cnet_isa_3161928f4c (IsA upper_berth berth) (STV 1.0 0.9091)) +(: cnet_isa_bf25c0aff2 (IsA upper_bound boundary) (STV 1.0 0.9091)) +(: cnet_isa_bf8b680d9b (IsA upper_class class) (STV 1.0 0.9091)) +(: cnet_isa_07d7d41a25 (IsA upper_deck deck) (STV 1.0 0.9091)) +(: cnet_isa_2b1e74e030 (IsA upper_hand superiority) (STV 1.0 0.9091)) +(: cnet_isa_a5294b512f (IsA upper_jaw jaw) (STV 1.0 0.9091)) +(: cnet_isa_14f20eedcd (IsA upper_limit limit) (STV 1.0 0.9091)) +(: cnet_isa_ecb7a5b259 (IsA upper_mantle layer) (STV 1.0 0.9091)) +(: cnet_isa_ade908198d (IsA upper_respiratory_infection respiratory_tract_infection) (STV 1.0 0.9091)) +(: cnet_isa_47a960bebb (IsA upper_respiratory_tract respiratory_tract) (STV 1.0 0.9091)) +(: cnet_isa_68bcc13ef3 (IsA upper_surface side) (STV 1.0 0.9091)) +(: cnet_isa_9fb2b669d1 (IsA uppercut punch) (STV 1.0 0.9091)) +(: cnet_isa_e86c0c76fe (IsA uppercut blow) (STV 1.0 0.9091)) +(: cnet_isa_bac343b059 (IsA uppityness presumption) (STV 1.0 0.9091)) +(: cnet_isa_b71376e4e8 (IsA upright piano) (STV 1.0 0.9091)) +(: cnet_isa_3cf8395395 (IsA upright structural_member) (STV 1.0 0.9091)) +(: cnet_isa_57c09a7dff (IsA uprightness righteousness) (STV 1.0 0.9091)) +(: cnet_isa_ae6eaa61cd (IsA upset disturbance) (STV 1.0 0.9091)) +(: cnet_isa_3ea72b2a4a (IsA upset inversion) (STV 1.0 0.9091)) +(: cnet_isa_528787f892 (IsA upset tool) (STV 1.0 0.9091)) +(: cnet_isa_511a57bac5 (IsA upset_price asking_price) (STV 1.0 0.9091)) +(: cnet_isa_92b7379cce (IsA upsetter winner) (STV 1.0 0.9091)) +(: cnet_isa_c4abc6e12f (IsA upside_down_cake cake) (STV 1.0 0.9091)) +(: cnet_isa_5d7c4ad362 (IsA upsilon letter) (STV 1.0 0.9091)) +(: cnet_isa_f2e407a364 (IsA upstage part) (STV 1.0 0.9091)) +(: cnet_isa_46e8f658d2 (IsA upstager actor) (STV 1.0 0.9091)) +(: cnet_isa_c9db488b27 (IsA upstair part) (STV 1.0 0.9091)) +(: cnet_isa_2d2c291d01 (IsA upstart unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_1774e498a2 (IsA upstroke stroke) (STV 1.0 0.9091)) +(: cnet_isa_6d43162c5f (IsA uptake human_process) (STV 1.0 0.9091)) +(: cnet_isa_d36f96e104 (IsA uptick transaction) (STV 1.0 0.9091)) +(: cnet_isa_c203755adb (IsA uptime time_period) (STV 1.0 0.9091)) +(: cnet_isa_567b7d16c8 (IsA uptown residential_district) (STV 1.0 0.9091)) +(: cnet_isa_9895dd9f5c (IsA upturn improvement) (STV 1.0 0.9091)) +(: cnet_isa_4bbdf740e5 (IsA upupa bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_67820eea9d (IsA upupidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_03214dde45 (IsA uracil nucleotide) (STV 1.0 0.9091)) +(: cnet_isa_4e4bf99957 (IsA ural_altaic natural_language) (STV 1.0 0.9091)) +(: cnet_isa_4668d43308 (IsA uralic ural_altaic) (STV 1.0 0.9091)) +(: cnet_isa_a1ef05fd62 (IsA uraninite uranium_ore) (STV 1.0 0.9091)) +(: cnet_isa_c708d6d86f (IsA uranium element) (STV 1.0 0.9091)) +(: cnet_isa_0630455b61 (IsA uranium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_12475a2015 (IsA uranium_235 uranium) (STV 1.0 0.9091)) +(: cnet_isa_39d2de6ae3 (IsA uranium_238 uranium) (STV 1.0 0.9091)) +(: cnet_isa_62805dcb8c (IsA uranium_ore ore) (STV 1.0 0.9091)) +(: cnet_isa_cc50d379b3 (IsA uranoplasty operation) (STV 1.0 0.9091)) +(: cnet_isa_48b45c64e1 (IsA uranoscopidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_6e05783c2e (IsA uranus planet) (STV 1.0 0.9659)) +(: cnet_isa_e618065d12 (IsA uranus planet_in_solar_system) (STV 1.0 0.9091)) +(: cnet_isa_637f33b83f (IsA uranyl group) (STV 1.0 0.9091)) +(: cnet_isa_fb5ed41bb5 (IsA uranyl_nitrate nitrate) (STV 1.0 0.9091)) +(: cnet_isa_192bb80b91 (IsA uranyl_oxalate oxalate) (STV 1.0 0.9091)) +(: cnet_isa_d82da50c75 (IsA urate salt) (STV 1.0 0.9091)) +(: cnet_isa_d6e813a743 (IsA uratemia blood_disease) (STV 1.0 0.9091)) +(: cnet_isa_9dd8d26879 (IsA uratemia symptom) (STV 1.0 0.9091)) +(: cnet_isa_4f1adb39ac (IsA uraturia symptom) (STV 1.0 0.9091)) +(: cnet_isa_2dd2afa798 (IsA urban_area geographical_area) (STV 1.0 0.9091)) +(: cnet_isa_1542148639 (IsA urban_guerrilla guerrilla) (STV 1.0 0.9091)) +(: cnet_isa_204b31529e (IsA urban_legend report) (STV 1.0 0.9091)) +(: cnet_isa_bcbd1f98f5 (IsA urban_planning architecture) (STV 1.0 0.9091)) +(: cnet_isa_8a43abd609 (IsA urban_renewal reclamation) (STV 1.0 0.9091)) +(: cnet_isa_33eac59c1c (IsA urbanity courtesy) (STV 1.0 0.9091)) +(: cnet_isa_8e0d662e1b (IsA urbanity quality) (STV 1.0 0.9091)) +(: cnet_isa_b99621e536 (IsA urbanization social_process) (STV 1.0 0.9091)) +(: cnet_isa_a713105853 (IsA urbanization condition) (STV 1.0 0.9091)) +(: cnet_isa_373900831a (IsA urceole vessel) (STV 1.0 0.9091)) +(: cnet_isa_5e48bcb19f (IsA urchin child) (STV 1.0 0.9091)) +(: cnet_isa_a94206a7c1 (IsA urdu sanskrit) (STV 1.0 0.9091)) +(: cnet_isa_2dfde8b6a2 (IsA urea organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_2844255d2b (IsA urea_formaldehyde_resin synthetic_resin) (STV 1.0 0.9091)) +(: cnet_isa_826295d8c5 (IsA urease enzyme) (STV 1.0 0.9091)) +(: cnet_isa_9207db9760 (IsA uredinale fungus_order) (STV 1.0 0.9091)) +(: cnet_isa_c02cb35509 (IsA uremia pathology) (STV 1.0 0.9091)) +(: cnet_isa_2f9c15c81b (IsA ureter duct) (STV 1.0 0.9091)) +(: cnet_isa_987a5c0f4d (IsA ureteritis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_f559ce1515 (IsA ureterocele prolapse) (STV 1.0 0.9091)) +(: cnet_isa_f04b4d658d (IsA ureterorenal_reflux reflux) (STV 1.0 0.9091)) +(: cnet_isa_b65f9c4a9c (IsA ureterostenosis stenosis) (STV 1.0 0.9091)) +(: cnet_isa_f30825c9e2 (IsA urethane ester) (STV 1.0 0.9091)) +(: cnet_isa_20a65a6858 (IsA urethra duct) (STV 1.0 0.9091)) +(: cnet_isa_29139805a2 (IsA urethral_orifice orifice) (STV 1.0 0.9091)) +(: cnet_isa_9846e6218d (IsA urethral_sphincter sphincter) (STV 1.0 0.9091)) +(: cnet_isa_16000244e0 (IsA urethritis urinary_tract_infection) (STV 1.0 0.9091)) +(: cnet_isa_c0701ed259 (IsA urethrocele prolapse) (STV 1.0 0.9091)) +(: cnet_isa_3c8ddb7e2a (IsA urge desire) (STV 1.0 0.9091)) +(: cnet_isa_241dc8e828 (IsA urge motivation) (STV 1.0 0.9091)) +(: cnet_isa_23b979e51c (IsA urge_incontinence enuresis) (STV 1.0 0.9091)) +(: cnet_isa_c4ea7ee762 (IsA urgency importance) (STV 1.0 0.9091)) +(: cnet_isa_6f7cebb8e5 (IsA urgency necessity) (STV 1.0 0.9091)) +(: cnet_isa_1259d2cacb (IsA urgency situation) (STV 1.0 0.9091)) +(: cnet_isa_47c1bdfdd6 (IsA urginea liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a28ebfbace (IsA urging advocacy) (STV 1.0 0.9091)) +(: cnet_isa_ee90711e12 (IsA uria bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_f39d7280bc (IsA uriah soldier) (STV 1.0 0.9091)) +(: cnet_isa_4a7a679cf9 (IsA urial wild_sheep) (STV 1.0 0.9091)) +(: cnet_isa_1b3a47d608 (IsA uric_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_e4a4e0acb5 (IsA uricaciduria blood_disease) (STV 1.0 0.9091)) +(: cnet_isa_f9779d938f (IsA uricaciduria symptom) (STV 1.0 0.9091)) +(: cnet_isa_08bd110aa1 (IsA urim_and_thummim answer) (STV 1.0 0.9091)) +(: cnet_isa_b9b4f8a2de (IsA urinal plumbing_fixture) (STV 1.0 0.9091)) +(: cnet_isa_70bf211a73 (IsA urinalysis chemical_analysis) (STV 1.0 0.9091)) +(: cnet_isa_a17dc7ace0 (IsA urinalysis diagnosis) (STV 1.0 0.9091)) +(: cnet_isa_a3448b7925 (IsA urinary_bladder bladder) (STV 1.0 0.9091)) +(: cnet_isa_9814490f0f (IsA urinary_hesitancy difficulty) (STV 1.0 0.9091)) +(: cnet_isa_849e558643 (IsA urinary_retention retentiveness) (STV 1.0 0.9091)) +(: cnet_isa_7eebfa2bdc (IsA urinary_tract tract) (STV 1.0 0.9091)) +(: cnet_isa_1badd82fe9 (IsA urinary_tract_infection inflammatory_disease) (STV 1.0 0.9091)) +(: cnet_isa_89c0fb3fe5 (IsA urine bodily_fluid) (STV 1.0 0.9091)) +(: cnet_isa_6bc2663610 (IsA urine body_waste) (STV 1.0 0.9091)) +(: cnet_isa_75bbe98b6b (IsA url address) (STV 1.0 0.9091)) +(: cnet_isa_eaf72a0975 (IsA urn pot) (STV 1.0 0.9091)) +(: cnet_isa_d0f061e4b0 (IsA urn vase) (STV 1.0 0.9091)) +(: cnet_isa_f47f384930 (IsA urnula_craterium discomycete) (STV 1.0 0.9091)) +(: cnet_isa_77420eefd7 (IsA urobilin animal_pigment) (STV 1.0 0.9091)) +(: cnet_isa_96e37ed634 (IsA urobilinogen chromogen) (STV 1.0 0.9091)) +(: cnet_isa_f85367e6db (IsA urocele extravasation) (STV 1.0 0.9091)) +(: cnet_isa_2e646c111a (IsA urochesia defecation) (STV 1.0 0.9091)) +(: cnet_isa_2f796ec46b (IsA urochord notochord) (STV 1.0 0.9091)) +(: cnet_isa_8fc38f39cc (IsA urochordata phylum) (STV 1.0 0.9091)) +(: cnet_isa_25561ab9db (IsA urocyon mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_4a191a193a (IsA urocystis fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_ce39d0ed99 (IsA urodele amphibian) (STV 1.0 0.9091)) +(: cnet_isa_af4ea94d40 (IsA urodella animal_order) (STV 1.0 0.9091)) +(: cnet_isa_3cbfd40a97 (IsA urodynia pain) (STV 1.0 0.9091)) +(: cnet_isa_22096fee2a (IsA urogenital_system system) (STV 1.0 0.9091)) +(: cnet_isa_23e7537267 (IsA urolith calculus) (STV 1.0 0.9091)) +(: cnet_isa_0e8057d349 (IsA urologist specialist) (STV 1.0 0.9091)) +(: cnet_isa_d4cf733236 (IsA urology medicine) (STV 1.0 0.9091)) +(: cnet_isa_f084f3d3d4 (IsA uropathy pathology) (STV 1.0 0.9091)) +(: cnet_isa_fa3a318474 (IsA urophycis fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_c9e34b3965 (IsA uropsilus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_c6ac394548 (IsA uropygial_gland oil_gland) (STV 1.0 0.9091)) +(: cnet_isa_a75f7f38bc (IsA uropygium tail) (STV 1.0 0.9091)) +(: cnet_isa_a158ab9cbe (IsA urosaurus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_a2befcb89c (IsA ursidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_95d1f2aa25 (IsA ursinia flower) (STV 1.0 0.9091)) +(: cnet_isa_899e13398e (IsA ursus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_b1a6fe7926 (IsA urtica dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7968455959 (IsA urticaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_f35509f32d (IsA urticale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_69e428cbea (IsA urtication cutaneous_sensation) (STV 1.0 0.9091)) +(: cnet_isa_af31533dc2 (IsA urtication hypersensitivity_reaction) (STV 1.0 0.9091)) +(: cnet_isa_0c2f2c3d73 (IsA urtication rash) (STV 1.0 0.9091)) +(: cnet_isa_fe174f6594 (IsA uruguay_potato potato) (STV 1.0 0.9091)) +(: cnet_isa_deec992cc5 (IsA uruguay_potato vine) (STV 1.0 0.9091)) +(: cnet_isa_9e7fb1b1fb (IsA uruguayan south_american) (STV 1.0 0.9091)) +(: cnet_isa_85569a2ac0 (IsA uruguayan_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_dd80ae8cd7 (IsA uruguayan_peso uruguayan_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_967d936497 (IsA us_capital in_washington_dc) (STV 1.0 0.9091)) +(: cnet_isa_7d5fdf9ed5 (IsA usa country) (STV 1.0 0.9454)) +(: cnet_isa_ae4e3e7418 (IsA usage language) (STV 1.0 0.9091)) +(: cnet_isa_ae10ae91bb (IsA usance time_period) (STV 1.0 0.9091)) +(: cnet_isa_c796ecb1ff (IsA usbeg turki) (STV 1.0 0.9091)) +(: cnet_isa_3b35394e64 (IsA usc university_in_los_angele) (STV 1.0 0.9091)) +(: cnet_isa_32ea9e9e37 (IsA use activity) (STV 1.0 0.9091)) +(: cnet_isa_c89b9079f4 (IsA use utility) (STV 1.0 0.9091)) +(: cnet_isa_88839e853b (IsA use legal_right) (STV 1.0 0.9091)) +(: cnet_isa_7b6527bbd5 (IsA use_immunity exemption) (STV 1.0 0.9091)) +(: cnet_isa_0f35ad08d4 (IsA used_car_lot parking_lot) (STV 1.0 0.9091)) +(: cnet_isa_e3ae83abe0 (IsA user person) (STV 1.0 0.9091)) +(: cnet_isa_374ab6b4a4 (IsA usher escort) (STV 1.0 0.9091)) +(: cnet_isa_e47ebad939 (IsA usher official) (STV 1.0 0.9091)) +(: cnet_isa_727be346e4 (IsA usherette usher) (STV 1.0 0.9091)) +(: cnet_isa_8771332862 (IsA ushering_in introduction) (STV 1.0 0.9091)) +(: cnet_isa_96a60e8235 (IsA usnea fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_771cfb4f93 (IsA usneaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_2886974050 (IsA ussr country) (STV 1.0 0.9091)) +(: cnet_isa_26c23fb6c0 (IsA ussr no_longer_country) (STV 1.0 0.9091)) +(: cnet_isa_733c640bd3 (IsA ustilaginaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_9e8459cc73 (IsA ustilaginale fungus_order) (STV 1.0 0.9091)) +(: cnet_isa_09c8f3a6d3 (IsA ustilaginoidea fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_84b676a0f5 (IsA ustilago fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_60f9a6dcdd (IsA usualness commonness) (STV 1.0 0.9091)) +(: cnet_isa_bc661a071e (IsA usufruct legal_right) (STV 1.0 0.9091)) +(: cnet_isa_fdf1d5251a (IsA usufructuary user) (STV 1.0 0.9091)) +(: cnet_isa_611c4e9ae6 (IsA usuli religious_movement) (STV 1.0 0.9091)) +(: cnet_isa_5efbde6bae (IsA usurer lender) (STV 1.0 0.9091)) +(: cnet_isa_be7b28e3d3 (IsA usurer shark) (STV 1.0 0.9091)) +(: cnet_isa_3f16bd96f0 (IsA usurpation capture) (STV 1.0 0.9091)) +(: cnet_isa_1586585413 (IsA usurper wrongdoer) (STV 1.0 0.9091)) +(: cnet_isa_9728d06e56 (IsA usury lending) (STV 1.0 0.9091)) +(: cnet_isa_abc3435306 (IsA usury interest_rate) (STV 1.0 0.9091)) +(: cnet_isa_17705fd8da (IsA uta reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_a235e0e7d6 (IsA utah state) (STV 1.0 0.9524)) +(: cnet_isa_4c50e8ea5a (IsA utahan american) (STV 1.0 0.9091)) +(: cnet_isa_458514865c (IsA utahraptor maniraptor) (STV 1.0 0.9091)) +(: cnet_isa_a47bc92dde (IsA ute shoshonean) (STV 1.0 0.9091)) +(: cnet_isa_4baf586a39 (IsA ute shoshoni) (STV 1.0 0.9091)) +(: cnet_isa_9ea1d53917 (IsA utensil implement) (STV 1.0 0.9091)) +(: cnet_isa_d7028e9b02 (IsA uterine_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_fdf3e259ad (IsA uterine_cavity cavity) (STV 1.0 0.9091)) +(: cnet_isa_75b9b1eb97 (IsA uterine_contraction contraction) (STV 1.0 0.9091)) +(: cnet_isa_aec6aa4280 (IsA uterine_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_31bac59d77 (IsA uterus female_internal_reproductive_organ) (STV 1.0 0.9091)) +(: cnet_isa_03ee958f88 (IsA utilitarian moralist) (STV 1.0 0.9091)) +(: cnet_isa_72be11f011 (IsA utilitarianism doctrine) (STV 1.0 0.9091)) +(: cnet_isa_daea880900 (IsA utility service) (STV 1.0 0.9091)) +(: cnet_isa_d97cd1de52 (IsA utility facility) (STV 1.0 0.9091)) +(: cnet_isa_d4bf587359 (IsA utility quality) (STV 1.0 0.9091)) +(: cnet_isa_a3060769e0 (IsA utility system_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_0990192a76 (IsA utility_bond municipal_bond) (STV 1.0 0.9091)) +(: cnet_isa_7b6a1c23f6 (IsA utility_man ballplayer) (STV 1.0 0.9091)) +(: cnet_isa_7fadd0660b (IsA utility_man workman) (STV 1.0 0.9091)) +(: cnet_isa_a3281ef319 (IsA utility_program program) (STV 1.0 0.9091)) +(: cnet_isa_fd45db549d (IsA utility_routine routine) (STV 1.0 0.9091)) +(: cnet_isa_cd4421e1e6 (IsA utilization state) (STV 1.0 0.9091)) +(: cnet_isa_af9ff3141b (IsA utilizer user) (STV 1.0 0.9091)) +(: cnet_isa_e48604dbba (IsA utmost limit) (STV 1.0 0.9091)) +(: cnet_isa_9b591979f8 (IsA uto_aztecan amerind) (STV 1.0 0.9091)) +(: cnet_isa_f1a301f5e6 (IsA utopia place) (STV 1.0 0.9091)) +(: cnet_isa_dfee16447e (IsA utopia imaginary_place) (STV 1.0 0.9091)) +(: cnet_isa_7245a9a966 (IsA utopia fiction) (STV 1.0 0.9091)) +(: cnet_isa_2db6f2ef9d (IsA utopia state) (STV 1.0 0.9091)) +(: cnet_isa_e717e58549 (IsA utopian reformer) (STV 1.0 0.9091)) +(: cnet_isa_3c771987fa (IsA utopian_socialism socialism) (STV 1.0 0.9091)) +(: cnet_isa_83d95a5a47 (IsA utopianism political_orientation) (STV 1.0 0.9091)) +(: cnet_isa_5af1966a8c (IsA utricle pouch) (STV 1.0 0.9091)) +(: cnet_isa_2d2cac69df (IsA utricularia plant_genus) (STV 1.0 0.9091)) +(: cnet_isa_a639504626 (IsA utterance auditory_communication) (STV 1.0 0.9091)) +(: cnet_isa_938eccb9ca (IsA utterer deceiver) (STV 1.0 0.9091)) +(: cnet_isa_1e72f4c879 (IsA utterer organism) (STV 1.0 0.9091)) +(: cnet_isa_2195861d24 (IsA uttering_cry making_sound) (STV 1.0 0.9091)) +(: cnet_isa_3ab7fcb6be (IsA uvea structure) (STV 1.0 0.9091)) +(: cnet_isa_b4d48348a8 (IsA uveitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_0414d4cc76 (IsA uveoscleral_pathway tubule) (STV 1.0 0.9091)) +(: cnet_isa_20cc70626a (IsA uvula flap) (STV 1.0 0.9091)) +(: cnet_isa_1b63d0009e (IsA uvularia liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_19324ccedd (IsA uvulariaceae liliid_monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_2d95e2dc01 (IsA uvulitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_3fb0331969 (IsA uxor wife) (STV 1.0 0.9091)) +(: cnet_isa_8be53e245f (IsA uxoricide murder) (STV 1.0 0.9091)) +(: cnet_isa_b0ffb8ce53 (IsA uxoricide husband) (STV 1.0 0.9091)) +(: cnet_isa_4095368d1b (IsA uxoriousness affectionateness) (STV 1.0 0.9091)) +(: cnet_isa_2a51800f5b (IsA uzbek turki) (STV 1.0 0.9091)) +(: cnet_isa_6f2d9c8c17 (IsA uzbekistani_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_1d9de65cae (IsA uzi submachine_gun) (STV 1.0 0.9091)) +(: cnet_isa_c7a1f65d37 (IsA v letter) (STV 1.0 0.9091)) +(: cnet_isa_04d47bf855 (IsA v_8_juice juice) (STV 1.0 0.9091)) +(: cnet_isa_324dffb20a (IsA v_c_r_and_t_v both_acronym) (STV 1.0 0.9091)) +(: cnet_isa_48c6dae369 (IsA v_day day) (STV 1.0 0.9091)) +(: cnet_isa_9e8acd544c (IsA v_neck neck) (STV 1.0 0.9091)) +(: cnet_isa_0654ca49f6 (IsA v_sign gesture) (STV 1.0 0.9091)) +(: cnet_isa_e6ecb49f5e (IsA vac vacation) (STV 1.0 0.9091)) +(: cnet_isa_d481a5e8ef (IsA vacancy emptiness) (STV 1.0 0.9091)) +(: cnet_isa_dbf5edad7b (IsA vacancy_rate percentage) (STV 1.0 0.9091)) +(: cnet_isa_1b63dd50b0 (IsA vacant_lot lot) (STV 1.0 0.9091)) +(: cnet_isa_4048930c4c (IsA vacation abrogation) (STV 1.0 0.9091)) +(: cnet_isa_8782fc54a3 (IsA vacation leisure) (STV 1.0 0.9091)) +(: cnet_isa_1450bad207 (IsA vacation_home dwelling) (STV 1.0 0.9091)) +(: cnet_isa_2e248c4fc5 (IsA vacationer nonworker) (STV 1.0 0.9091)) +(: cnet_isa_cb0ea45570 (IsA vacationing leisure) (STV 1.0 0.9091)) +(: cnet_isa_89612a1050 (IsA vaccaria caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b4bbe4f253 (IsA vaccination scar) (STV 1.0 0.9091)) +(: cnet_isa_14a2446fb6 (IsA vaccine immunogen) (STV 1.0 0.9091)) +(: cnet_isa_012efa978a (IsA vaccinee patient) (STV 1.0 0.9091)) +(: cnet_isa_c27406a6e2 (IsA vaccinia infection) (STV 1.0 0.9091)) +(: cnet_isa_b160b45e81 (IsA vaccinium dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_562f58000e (IsA vacuity emptiness) (STV 1.0 0.9091)) +(: cnet_isa_30e3f3bd00 (IsA vacuole cavity) (STV 1.0 0.9091)) +(: cnet_isa_271b29e589 (IsA vacuolization condition) (STV 1.0 0.9091)) +(: cnet_isa_f633e1c59a (IsA vacuousness stupidity) (STV 1.0 0.9091)) +(: cnet_isa_d1a1736e34 (IsA vacuum home_appliance) (STV 1.0 0.9091)) +(: cnet_isa_759a48cf0f (IsA vacuum region) (STV 1.0 0.9091)) +(: cnet_isa_9349b34e38 (IsA vacuum_chamber chamber) (STV 1.0 0.9091)) +(: cnet_isa_63020cb812 (IsA vacuum_flask flask) (STV 1.0 0.9091)) +(: cnet_isa_e07edb20b5 (IsA vacuum_gauge gauge) (STV 1.0 0.9091)) +(: cnet_isa_771dd64e14 (IsA vagabond object) (STV 1.0 0.9091)) +(: cnet_isa_1bf13398d0 (IsA vagary change) (STV 1.0 0.9091)) +(: cnet_isa_c7fcc3ec63 (IsA vagina duct) (STV 1.0 0.9091)) +(: cnet_isa_3cf823a146 (IsA vaginal_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_d84ef03db9 (IsA vaginal_discharge discharge) (STV 1.0 0.9091)) +(: cnet_isa_0b4fccd4b8 (IsA vaginal_smear smear) (STV 1.0 0.9091)) +(: cnet_isa_06c1695bd4 (IsA vagina genital) (STV 1.0 0.9091)) +(: cnet_isa_499ca7112e (IsA vaginismus contraction) (STV 1.0 0.9091)) +(: cnet_isa_6ec8d81605 (IsA vaginitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_836ca9a20c (IsA vagrancy homelessness) (STV 1.0 0.9091)) +(: cnet_isa_3e3c239dbc (IsA vagrant poor_person) (STV 1.0 0.9091)) +(: cnet_isa_02b7ca206c (IsA vagrant wanderer) (STV 1.0 0.9091)) +(: cnet_isa_261a07f3ac (IsA vagueness indistinctness) (STV 1.0 0.9091)) +(: cnet_isa_015012157e (IsA vagueness unclearness) (STV 1.0 0.9091)) +(: cnet_isa_a26077aa9b (IsA vagus cranial_nerve) (STV 1.0 0.9091)) +(: cnet_isa_090cc2d3fd (IsA vaishnava hindoo) (STV 1.0 0.9091)) +(: cnet_isa_cc7726ea5c (IsA vaishnavism hinduism) (STV 1.0 0.9091)) +(: cnet_isa_ca8dab65f6 (IsA vaishnavism sect) (STV 1.0 0.9091)) +(: cnet_isa_31039a815f (IsA vaisya varna) (STV 1.0 0.9091)) +(: cnet_isa_1a8dfca12e (IsA vaisya hindustani) (STV 1.0 0.9091)) +(: cnet_isa_3479799a03 (IsA vajra hindu_deity) (STV 1.0 0.9091)) +(: cnet_isa_aff6fe8acd (IsA val_kilmer actor) (STV 1.0 0.9339)) +(: cnet_isa_7578eb8aba (IsA valediction farewell) (STV 1.0 0.9091)) +(: cnet_isa_d7b8547b20 (IsA valediction oratory) (STV 1.0 0.9091)) +(: cnet_isa_94eae68cef (IsA valedictorian scholar) (STV 1.0 0.9091)) +(: cnet_isa_499a1a72f9 (IsA valence power) (STV 1.0 0.9091)) +(: cnet_isa_b7d69d8754 (IsA valence_electron electron) (STV 1.0 0.9091)) +(: cnet_isa_77fde7dfb3 (IsA valencia_orange sweet_orange) (STV 1.0 0.9091)) +(: cnet_isa_e5de3d00bc (IsA valencienne_lace pillow_lace) (STV 1.0 0.9091)) +(: cnet_isa_1f8f20b0aa (IsA valency chemical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_fd24af0628 (IsA valentine greeting_card) (STV 1.0 0.9091)) +(: cnet_isa_db81455c0d (IsA valentine sweetheart) (STV 1.0 0.9091)) +(: cnet_isa_2133c8c6d1 (IsA valentine_day day) (STV 1.0 0.9091)) +(: cnet_isa_d2974fb4ba (IsA valerian flower) (STV 1.0 0.9091)) +(: cnet_isa_52900cccda (IsA valeriana asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b01399dde1 (IsA valerianaceae asterid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_c73b60eb30 (IsA valerianella asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2e4962cf92 (IsA valeric_acid carboxylic_acid) (STV 1.0 0.9091)) +(: cnet_isa_1fa505a67e (IsA valet body_servant) (STV 1.0 0.9091)) +(: cnet_isa_1e182edc3e (IsA valet manservant) (STV 1.0 0.9091)) +(: cnet_isa_383064eb91 (IsA valet_parking service) (STV 1.0 0.9091)) +(: cnet_isa_303428ccb6 (IsA valetudinarian sick_person) (STV 1.0 0.9091)) +(: cnet_isa_093e2ce0f4 (IsA valgus deformity) (STV 1.0 0.9091)) +(: cnet_isa_044f7814bf (IsA valhalla heaven) (STV 1.0 0.9091)) +(: cnet_isa_4269a3ff69 (IsA vali norse_deity) (STV 1.0 0.9091)) +(: cnet_isa_e7f470f518 (IsA validation determination) (STV 1.0 0.9091)) +(: cnet_isa_737deab02e (IsA validity legality) (STV 1.0 0.9091)) +(: cnet_isa_d80fe05a7c (IsA valine essential_amino_acid) (STV 1.0 0.9091)) +(: cnet_isa_2be919cf60 (IsA valise overnighter) (STV 1.0 0.9091)) +(: cnet_isa_d6285b4d3e (IsA valley natural_depression) (STV 1.0 0.9091)) +(: cnet_isa_a1f44fd066 (IsA valley_girl girl) (STV 1.0 0.9091)) +(: cnet_isa_4c2d5998e0 (IsA valley_pocket_gopher gopher) (STV 1.0 0.9091)) +(: cnet_isa_db5db6c8a3 (IsA vallisneria monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d65810a8de (IsA valois dynasty) (STV 1.0 0.9091)) +(: cnet_isa_9f7df242fe (IsA valuable treasure) (STV 1.0 0.9091)) +(: cnet_isa_5f9bf7f735 (IsA valuation price) (STV 1.0 0.9091)) +(: cnet_isa_116e56bb0c (IsA valuation_reserve reserve_account) (STV 1.0 0.9091)) +(: cnet_isa_d744a2222e (IsA value color_property) (STV 1.0 0.9091)) +(: cnet_isa_8aaa1bd786 (IsA value worth) (STV 1.0 0.9091)) +(: cnet_isa_9176514ca9 (IsA value ideal) (STV 1.0 0.9091)) +(: cnet_isa_86e2103906 (IsA value numerical_quantity) (STV 1.0 0.9091)) +(: cnet_isa_7b3efacd65 (IsA value duration) (STV 1.0 0.9091)) +(: cnet_isa_aaceada08a (IsA value measure) (STV 1.0 0.9091)) +(: cnet_isa_b83b75e8ef (IsA value_judgment judgment) (STV 1.0 0.9091)) +(: cnet_isa_6000814a97 (IsA value_statement statement) (STV 1.0 0.9091)) +(: cnet_isa_28abeb5940 (IsA valuelessness worthlessness) (STV 1.0 0.9091)) +(: cnet_isa_1dd3ce171e (IsA valuer appraiser) (STV 1.0 0.9091)) +(: cnet_isa_9600d72672 (IsA value belief) (STV 1.0 0.9091)) +(: cnet_isa_f6dc3a8f13 (IsA valve shell) (STV 1.0 0.9091)) +(: cnet_isa_b04d11114f (IsA valve control) (STV 1.0 0.9091)) +(: cnet_isa_e4e2b398c5 (IsA valve device) (STV 1.0 0.9091)) +(: cnet_isa_b1fbe488cf (IsA valve structure) (STV 1.0 0.9091)) +(: cnet_isa_690298370a (IsA valve_in_head_engine internal_combustion_engine) (STV 1.0 0.9091)) +(: cnet_isa_3354fd9121 (IsA valvotomy incision) (STV 1.0 0.9091)) +(: cnet_isa_c1706b2c86 (IsA valvular_heart_disease heart_disease) (STV 1.0 0.9091)) +(: cnet_isa_d6751144db (IsA valvular_incompetence incompetence) (STV 1.0 0.9091)) +(: cnet_isa_864855e9b5 (IsA valvule valve) (STV 1.0 0.9091)) +(: cnet_isa_be527ca155 (IsA valvulitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_babeace5b7 (IsA vambrace cannon) (STV 1.0 0.9091)) +(: cnet_isa_a79a88af8d (IsA vamp piece_of_leather) (STV 1.0 0.9091)) +(: cnet_isa_9203121024 (IsA vamp accompaniment) (STV 1.0 0.9091)) +(: cnet_isa_435f7a8c2d (IsA vampire fictional_creature_drink_blood) (STV 1.0 0.9091)) +(: cnet_isa_e1354d86ef (IsA vampire evil_spirit) (STV 1.0 0.9091)) +(: cnet_isa_4cb767d4df (IsA vampire_bat carnivorous_bat) (STV 1.0 0.9091)) +(: cnet_isa_ffa93e47b2 (IsA vampire fictional_monster) (STV 1.0 0.9091)) +(: cnet_isa_c6a8259742 (IsA vampire legendary_creature_drink_human_blood) (STV 1.0 0.9091)) +(: cnet_isa_fc3f194c47 (IsA vampire legend) (STV 1.0 0.9091)) +(: cnet_isa_f314894529 (IsA vampirism action) (STV 1.0 0.9091)) +(: cnet_isa_9a1a896ffe (IsA vampirism belief) (STV 1.0 0.9091)) +(: cnet_isa_c610c8c67f (IsA van camper) (STV 1.0 0.9091)) +(: cnet_isa_152d4f4818 (IsA van car) (STV 1.0 0.9091)) +(: cnet_isa_4b1daba4f0 (IsA van truck) (STV 1.0 0.9091)) +(: cnet_isa_ded0566aad (IsA van_der_waal_s_force attraction) (STV 1.0 0.9091)) +(: cnet_isa_14152b1fd1 (IsA vanadate salt) (STV 1.0 0.9091)) +(: cnet_isa_5ce6f599e8 (IsA vanadinite mineral) (STV 1.0 0.9091)) +(: cnet_isa_1643267b6f (IsA vanadium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_ed4bc3ffaf (IsA vanadium_pentoxide oxyacid) (STV 1.0 0.9091)) +(: cnet_isa_ce5c2e9925 (IsA vanadium_steel alloy_steel) (STV 1.0 0.9091)) +(: cnet_isa_a66d8af3fd (IsA vancouver in_canada) (STV 1.0 0.9091)) +(: cnet_isa_1914f80c82 (IsA vanda orchid) (STV 1.0 0.9091)) +(: cnet_isa_3ef76fedb6 (IsA vandal destroyer) (STV 1.0 0.9091)) +(: cnet_isa_02a22f3656 (IsA vandal savage) (STV 1.0 0.9091)) +(: cnet_isa_f67617fd79 (IsA vandalism destruction) (STV 1.0 0.9091)) +(: cnet_isa_9a1c432f40 (IsA vandalism mischief) (STV 1.0 0.9091)) +(: cnet_isa_5fe8085761 (IsA vanderbilt university) (STV 1.0 0.9091)) +(: cnet_isa_a68143afee (IsA vandyke_beard beard) (STV 1.0 0.9091)) +(: cnet_isa_8b5a754fa5 (IsA vandyke_brown brown) (STV 1.0 0.9091)) +(: cnet_isa_491f468cbd (IsA vane blade) (STV 1.0 0.9091)) +(: cnet_isa_310d2e3130 (IsA vane fin) (STV 1.0 0.9091)) +(: cnet_isa_3400580b67 (IsA vanellus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_9ed225d561 (IsA vanessa arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_4f59721ff0 (IsA vanguard position) (STV 1.0 0.9091)) +(: cnet_isa_f5898cced6 (IsA vanguard army_unit) (STV 1.0 0.9091)) +(: cnet_isa_a6d99cb4d6 (IsA vangueria asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_cac63cb9b1 (IsA vanilla relish) (STV 1.0 0.9091)) +(: cnet_isa_1bf5c3abe0 (IsA vanilla flavorer) (STV 1.0 0.9091)) +(: cnet_isa_a955ef4877 (IsA vanilla orchid) (STV 1.0 0.9091)) +(: cnet_isa_e684b00ce7 (IsA vanilla_bean flavorer) (STV 1.0 0.9091)) +(: cnet_isa_ca643d4f5a (IsA vanilla_ice_cream ice_cream) (STV 1.0 0.9091)) +(: cnet_isa_26ba921c9c (IsA vanilla_orchid vanilla) (STV 1.0 0.9091)) +(: cnet_isa_237f7a2729 (IsA vanilla_pudding pudding) (STV 1.0 0.9091)) +(: cnet_isa_98cfde1785 (IsA vanillin compound) (STV 1.0 0.9091)) +(: cnet_isa_9058c2ff55 (IsA vanir norse_deity) (STV 1.0 0.9091)) +(: cnet_isa_bd74aee0d0 (IsA vanisher person) (STV 1.0 0.9091)) +(: cnet_isa_8af227cd24 (IsA vanishing disappearance) (STV 1.0 0.9091)) +(: cnet_isa_3c4c194754 (IsA vanishing_point appearance) (STV 1.0 0.9091)) +(: cnet_isa_d17f248d9c (IsA vanishing_point point) (STV 1.0 0.9091)) +(: cnet_isa_35a2caec63 (IsA vanity worthlessness) (STV 1.0 0.9091)) +(: cnet_isa_411b636e24 (IsA vanity_fair life_style) (STV 1.0 0.9091)) +(: cnet_isa_fdf0210865 (IsA vantage position) (STV 1.0 0.9091)) +(: cnet_isa_a9023f7333 (IsA vantage_point vantage) (STV 1.0 0.9091)) +(: cnet_isa_c3d8da730a (IsA vapor suspension) (STV 1.0 0.9091)) +(: cnet_isa_4dac99a673 (IsA vapor_density relative_density) (STV 1.0 0.9091)) +(: cnet_isa_d2fb743333 (IsA vapor_lock blockage) (STV 1.0 0.9091)) +(: cnet_isa_0b832c9d02 (IsA vapor_pressure pressure) (STV 1.0 0.9091)) +(: cnet_isa_9364e09d88 (IsA vaporiser device) (STV 1.0 0.9091)) +(: cnet_isa_29f824fe97 (IsA vaporization annihilation) (STV 1.0 0.9091)) +(: cnet_isa_cf55f4ff09 (IsA vaporization phase_change) (STV 1.0 0.9091)) +(: cnet_isa_bb8a44bd34 (IsA vaquero cowboy) (STV 1.0 0.9091)) +(: cnet_isa_7fd53644c8 (IsA vaquita porpoise) (STV 1.0 0.9091)) +(: cnet_isa_c5328d7b02 (IsA vara linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_0c4ecfe66b (IsA varanidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_b50a7b237a (IsA varanus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_f956aec63d (IsA variability changeableness) (STV 1.0 0.9091)) +(: cnet_isa_7ee195c6cc (IsA variable quantity) (STV 1.0 0.9091)) +(: cnet_isa_9a0c671e52 (IsA variable symbol) (STV 1.0 0.9091)) +(: cnet_isa_969ae5cb76 (IsA variable thing) (STV 1.0 0.9091)) +(: cnet_isa_7f8d4d7d8b (IsA variable_pitch_propeller propeller) (STV 1.0 0.9091)) +(: cnet_isa_131610b3d0 (IsA variable_star star) (STV 1.0 0.9091)) +(: cnet_isa_18f3b91428 (IsA variance dispensation) (STV 1.0 0.9091)) +(: cnet_isa_2518fcab50 (IsA variance moment) (STV 1.0 0.9091)) +(: cnet_isa_d55a1ecfbc (IsA variation activity) (STV 1.0 0.9091)) +(: cnet_isa_e8469a42bd (IsA variation change) (STV 1.0 0.9091)) +(: cnet_isa_8e62008ab0 (IsA variation thing) (STV 1.0 0.9091)) +(: cnet_isa_e40d107883 (IsA variation perturbation) (STV 1.0 0.9091)) +(: cnet_isa_8e7ca0b6ef (IsA variation theme) (STV 1.0 0.9091)) +(: cnet_isa_aa155bf24a (IsA variation process) (STV 1.0 0.9091)) +(: cnet_isa_7da55549c9 (IsA varicella_zoster_virus herpe) (STV 1.0 0.9091)) +(: cnet_isa_e09dbfde96 (IsA varicocele dilatation) (STV 1.0 0.9091)) +(: cnet_isa_ecc22264c0 (IsA varicose_vein varicosity) (STV 1.0 0.9091)) +(: cnet_isa_a791aa6478 (IsA varicose_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_6eec054d01 (IsA varicosis pathology) (STV 1.0 0.9091)) +(: cnet_isa_36b29a6bac (IsA varicosity varix) (STV 1.0 0.9091)) +(: cnet_isa_8afb006cc9 (IsA varied_lorikeet lorikeet) (STV 1.0 0.9091)) +(: cnet_isa_a4d0454ddf (IsA variedness variability) (STV 1.0 0.9091)) +(: cnet_isa_231c0c6372 (IsA variegated_horsetail horsetail) (STV 1.0 0.9091)) +(: cnet_isa_0054db7c81 (IsA variegation variability) (STV 1.0 0.9091)) +(: cnet_isa_6d7146ca8c (IsA varietal_wine wine) (STV 1.0 0.9091)) +(: cnet_isa_070137fe67 (IsA variety difference) (STV 1.0 0.9091)) +(: cnet_isa_ecc50bc892 (IsA variety taxonomic_group) (STV 1.0 0.9091)) +(: cnet_isa_0dacc864bd (IsA variety_meat meat) (STV 1.0 0.9091)) +(: cnet_isa_6e09246640 (IsA variety_show show) (STV 1.0 0.9091)) +(: cnet_isa_6bf38273ff (IsA variola_major variola_virus) (STV 1.0 0.9091)) +(: cnet_isa_fd2805c456 (IsA variola_minor variola_virus) (STV 1.0 0.9091)) +(: cnet_isa_e8551a64da (IsA variola_virus poxvirus) (STV 1.0 0.9091)) +(: cnet_isa_9765ddfa28 (IsA variolation inoculating) (STV 1.0 0.9091)) +(: cnet_isa_a5c978f878 (IsA variometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_ddef91adfa (IsA variorum edition) (STV 1.0 0.9091)) +(: cnet_isa_9985acb58a (IsA variously_leaved_pondweed pondweed) (STV 1.0 0.9091)) +(: cnet_isa_5c7d8b2641 (IsA varix abnormality) (STV 1.0 0.9091)) +(: cnet_isa_59c9951cc3 (IsA varmint animal) (STV 1.0 0.9091)) +(: cnet_isa_85b317f572 (IsA varna group) (STV 1.0 0.9091)) +(: cnet_isa_e3a0e8d148 (IsA varnish coating) (STV 1.0 0.9091)) +(: cnet_isa_1b8c7ad522 (IsA varnish_tree poisonous_plant) (STV 1.0 0.9091)) +(: cnet_isa_d3b2fc2a5c (IsA varnisher finisher) (STV 1.0 0.9091)) +(: cnet_isa_dfabc75188 (IsA varsity team) (STV 1.0 0.9091)) +(: cnet_isa_2d0bf45245 (IsA varsity university) (STV 1.0 0.9091)) +(: cnet_isa_1595fab6e5 (IsA varus deformity) (STV 1.0 0.9091)) +(: cnet_isa_230adcef29 (IsA vas_deferen duct) (STV 1.0 0.9091)) +(: cnet_isa_89349934e4 (IsA vasa_efferentia tubule) (STV 1.0 0.9091)) +(: cnet_isa_094b3c511b (IsA vasa_vasorum blood_vessel) (STV 1.0 0.9091)) +(: cnet_isa_7bb4ec0bf9 (IsA vascular_bundle vascular_tissue) (STV 1.0 0.9091)) +(: cnet_isa_41d1353aeb (IsA vascular_plant plant) (STV 1.0 0.9091)) +(: cnet_isa_3b7f5c59e8 (IsA vascular_ray vascular_tissue) (STV 1.0 0.9091)) +(: cnet_isa_3d3df68f15 (IsA vascular_structure structure) (STV 1.0 0.9091)) +(: cnet_isa_1a396ded8f (IsA vascular_system system) (STV 1.0 0.9091)) +(: cnet_isa_0a44d1fbd4 (IsA vascular_tissue plant_tissue) (STV 1.0 0.9091)) +(: cnet_isa_c6b97e0291 (IsA vascularity property) (STV 1.0 0.9091)) +(: cnet_isa_64706b238d (IsA vascularization organic_process) (STV 1.0 0.9091)) +(: cnet_isa_0bfb725476 (IsA vasculitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_fad3cd58d6 (IsA vase container) (STV 1.0 0.9091)) +(: cnet_isa_71ff56217a (IsA vase jar) (STV 1.0 0.9091)) +(: cnet_isa_13c6368cb7 (IsA vasectomy sterilization_technique) (STV 1.0 0.9091)) +(: cnet_isa_e1a3764865 (IsA vasectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_8b460ca9cd (IsA vasectomy surgical_contraception) (STV 1.0 0.9091)) +(: cnet_isa_f7734b7d6f (IsA vasoconstriction constriction) (STV 1.0 0.9091)) +(: cnet_isa_ef9dbb68b7 (IsA vasoconstrictor drug) (STV 1.0 0.9091)) +(: cnet_isa_6c9043f1ec (IsA vasoconstrictor agent) (STV 1.0 0.9091)) +(: cnet_isa_d43c2ede6d (IsA vasodilation dilation) (STV 1.0 0.9091)) +(: cnet_isa_5f77ef77a1 (IsA vasodilator dilator) (STV 1.0 0.9091)) +(: cnet_isa_962e35317c (IsA vasopressin hormone) (STV 1.0 0.9091)) +(: cnet_isa_45fa8389ac (IsA vasopressin vasoconstrictor) (STV 1.0 0.9091)) +(: cnet_isa_1e94041e99 (IsA vasopressor vasoconstrictor) (STV 1.0 0.9091)) +(: cnet_isa_dce44d8ed1 (IsA vasotomy incision) (STV 1.0 0.9091)) +(: cnet_isa_b516481e7b (IsA vasovasostomy operation) (STV 1.0 0.9091)) +(: cnet_isa_ccf868d77b (IsA vasovesiculitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_b503de38d7 (IsA vassal follower) (STV 1.0 0.9091)) +(: cnet_isa_e0093e2b30 (IsA vat excise) (STV 1.0 0.9091)) +(: cnet_isa_5c2b797554 (IsA vat_dye dye) (STV 1.0 0.9091)) +(: cnet_isa_9223f67ee4 (IsA vatican in_italy) (STV 1.0 0.9091)) +(: cnet_isa_ee8bc9c17a (IsA vatican_council council) (STV 1.0 0.9091)) +(: cnet_isa_3263efdd33 (IsA vaudeville variety_show) (STV 1.0 0.9091)) +(: cnet_isa_4e82a7a4d3 (IsA vaudevillian performer) (STV 1.0 0.9091)) +(: cnet_isa_e6738bfac5 (IsA vault jump) (STV 1.0 0.9091)) +(: cnet_isa_eefc74c9ac (IsA vault burial_chamber) (STV 1.0 0.9091)) +(: cnet_isa_7f55ce085e (IsA vault roof) (STV 1.0 0.9091)) +(: cnet_isa_e85acbc2b3 (IsA vault strongroom) (STV 1.0 0.9091)) +(: cnet_isa_ad22f1a1ca (IsA vaulter athlete) (STV 1.0 0.9091)) +(: cnet_isa_155c0f768b (IsA vaulting structure) (STV 1.0 0.9091)) +(: cnet_isa_7c5e52adbc (IsA vaulting_horse horse) (STV 1.0 0.9091)) +(: cnet_isa_601866aa58 (IsA vaunt boast) (STV 1.0 0.9091)) +(: cnet_isa_027145945a (IsA veadar jewish_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_fd8606e83c (IsA veal meat) (STV 1.0 0.9091)) +(: cnet_isa_233784986e (IsA veal_cordon_bleu dish) (STV 1.0 0.9091)) +(: cnet_isa_45d56f7990 (IsA veal_parmesan dish) (STV 1.0 0.9091)) +(: cnet_isa_613d50c93f (IsA veal_roast roast) (STV 1.0 0.9091)) +(: cnet_isa_49a84e5ffa (IsA veal_scallopini scallopine) (STV 1.0 0.9091)) +(: cnet_isa_4dc8c171f1 (IsA vector variable) (STV 1.0 0.9091)) +(: cnet_isa_9d657d395d (IsA vector virus) (STV 1.0 0.9091)) +(: cnet_isa_8fb9112b72 (IsA vector agent) (STV 1.0 0.9091)) +(: cnet_isa_ba4ca471d5 (IsA vector straight_line) (STV 1.0 0.9091)) +(: cnet_isa_34a6647c46 (IsA vector_algebra algebra) (STV 1.0 0.9091)) +(: cnet_isa_88fa309e00 (IsA vector_borne_transmission indirect_transmission) (STV 1.0 0.9091)) +(: cnet_isa_ef648dea9f (IsA vector_product vector) (STV 1.0 0.9091)) +(: cnet_isa_aa8464ebff (IsA vector_sum vector) (STV 1.0 0.9091)) +(: cnet_isa_27bf888401 (IsA vedalia ladybug) (STV 1.0 0.9091)) +(: cnet_isa_89c9ef0617 (IsA vedanta hinduism) (STV 1.0 0.9091)) +(: cnet_isa_a7beaae98c (IsA vedic_literature sacred_text) (STV 1.0 0.9091)) +(: cnet_isa_fbed627699 (IsA vedism hinduism) (STV 1.0 0.9091)) +(: cnet_isa_c543517cc3 (IsA vedist scholar) (STV 1.0 0.9091)) +(: cnet_isa_1017311a40 (IsA veery thrush) (STV 1.0 0.9091)) +(: cnet_isa_a038a93526 (IsA vegan vegetarian) (STV 1.0 0.9091)) +(: cnet_isa_f7486bc339 (IsA vegan people_who_consume_no_animal_product) (STV 1.0 0.9091)) +(: cnet_isa_f468a70037 (IsA vegetable produce) (STV 1.0 0.9091)) +(: cnet_isa_8d4b99c6cf (IsA vegetable herb) (STV 1.0 0.9091)) +(: cnet_isa_b664d72dc2 (IsA vegetable_matter substance) (STV 1.0 0.9091)) +(: cnet_isa_c1c6cede67 (IsA vegetable_oil edible_fat) (STV 1.0 0.9091)) +(: cnet_isa_d938dfdc1a (IsA vegetable_sheep herb) (STV 1.0 0.9091)) +(: cnet_isa_c4900f2b6a (IsA vegetable_tallow plant_material) (STV 1.0 0.9091)) +(: cnet_isa_eb3a90fae5 (IsA vegetable_wax wax) (STV 1.0 0.9091)) +(: cnet_isa_ac3689fa80 (IsA vegetable food) (STV 1.0 0.9608)) +(: cnet_isa_e06a81aa57 (IsA vegetable plant) (STV 1.0 0.9572)) +(: cnet_isa_7e6fa43a50 (IsA vegetable_and_tree plant) (STV 1.0 0.9091)) +(: cnet_isa_84e0fd5b65 (IsA vegetarian eater) (STV 1.0 0.9091)) +(: cnet_isa_75b6ca774e (IsA vegetarianism diet) (STV 1.0 0.9091)) +(: cnet_isa_2fb17f2562 (IsA vegetation quiescence) (STV 1.0 0.9091)) +(: cnet_isa_b37022f6b7 (IsA vegetation excrescence) (STV 1.0 0.9091)) +(: cnet_isa_5af0d8913a (IsA vegetation collection) (STV 1.0 0.9091)) +(: cnet_isa_9ced9ae321 (IsA vegetation growth) (STV 1.0 0.9091)) +(: cnet_isa_275d001c03 (IsA vehemence intensity) (STV 1.0 0.9091)) +(: cnet_isa_7e91fc8d24 (IsA vehicle machine) (STV 1.0 0.9091)) +(: cnet_isa_d387bae28e (IsA vehicle conveyance) (STV 1.0 0.9091)) +(: cnet_isa_a18d97929d (IsA vehicle medium) (STV 1.0 0.9091)) +(: cnet_isa_fefd74e561 (IsA vehicle substance) (STV 1.0 0.9091)) +(: cnet_isa_66b181ff74 (IsA vehicle_borne_transmission indirect_transmission) (STV 1.0 0.9091)) +(: cnet_isa_cf3320cc6d (IsA vehicular_traffic traffic) (STV 1.0 0.9091)) +(: cnet_isa_414a4bd3f0 (IsA vein rib) (STV 1.0 0.9091)) +(: cnet_isa_ba5fbb3dcc (IsA vein blood_vessel) (STV 1.0 0.9091)) +(: cnet_isa_8f0858f5cf (IsA vein expressive_style) (STV 1.0 0.9091)) +(: cnet_isa_2aeeed57e0 (IsA vein geological_formation) (STV 1.0 0.9091)) +(: cnet_isa_734658f6d8 (IsA vein vascular_bundle) (STV 1.0 0.9091)) +(: cnet_isa_825e882da8 (IsA vein_of_penis vein) (STV 1.0 0.9091)) +(: cnet_isa_9a40a3d7d4 (IsA velar_consonant consonant) (STV 1.0 0.9091)) +(: cnet_isa_073e8faffe (IsA veld grassland) (STV 1.0 0.9091)) +(: cnet_isa_fd2d4b8f5c (IsA velleity volition) (STV 1.0 0.9091)) +(: cnet_isa_e8ed0905b0 (IsA velleity wish) (STV 1.0 0.9091)) +(: cnet_isa_c9bf1a31b4 (IsA vellum parchment) (STV 1.0 0.9091)) +(: cnet_isa_687cad3331 (IsA vellum writing_paper) (STV 1.0 0.9091)) +(: cnet_isa_fb95779930 (IsA velocipede bicycle) (STV 1.0 0.9091)) +(: cnet_isa_9d847ef39d (IsA velociraptor maniraptor) (STV 1.0 0.9091)) +(: cnet_isa_0b311c6277 (IsA velodrome racetrack) (STV 1.0 0.9091)) +(: cnet_isa_8508c1535a (IsA velour fabric) (STV 1.0 0.9091)) +(: cnet_isa_10631102a5 (IsA veloute sauce) (STV 1.0 0.9091)) +(: cnet_isa_0705250ccd (IsA velveeta cheese) (STV 1.0 0.9091)) +(: cnet_isa_2559ee0938 (IsA velvet soft_fuzzy_fabric) (STV 1.0 0.9339)) +(: cnet_isa_a75b679b5d (IsA velvet fabric) (STV 1.0 0.9091)) +(: cnet_isa_7f69ac710a (IsA velvet_ant wasp) (STV 1.0 0.9091)) +(: cnet_isa_7b739bcc2a (IsA velvet_bent bent) (STV 1.0 0.9091)) +(: cnet_isa_28e2965126 (IsA velvet_grass grass) (STV 1.0 0.9091)) +(: cnet_isa_ae6908224f (IsA velvet_plant houseplant) (STV 1.0 0.9091)) +(: cnet_isa_9954acf00c (IsA velveteen fabric) (STV 1.0 0.9091)) +(: cnet_isa_8952f21c7f (IsA velvetleaf mallow) (STV 1.0 0.9091)) +(: cnet_isa_c28681c9c8 (IsA vena_bulbi_penis vein) (STV 1.0 0.9091)) +(: cnet_isa_10762f5ed4 (IsA vena_bulbi_vestibuli vein) (STV 1.0 0.9091)) +(: cnet_isa_3a93ebff3f (IsA vena_canaliculi_cochleae vein) (STV 1.0 0.9091)) +(: cnet_isa_d01d689fca (IsA vena_cava vein) (STV 1.0 0.9091)) +(: cnet_isa_b099b6290a (IsA vena_dorsalis_clitoridis_profunda clitoral_vein) (STV 1.0 0.9091)) +(: cnet_isa_69e37695fa (IsA vena_profunda_penis vein_of_penis) (STV 1.0 0.9091)) +(: cnet_isa_0643db7543 (IsA venae_dorsale_clitoridis_superficiale clitoral_vein) (STV 1.0 0.9091)) +(: cnet_isa_855fb4e3ef (IsA venae_dorsale_penis_profunda vein_of_penis) (STV 1.0 0.9091)) +(: cnet_isa_42a5926d09 (IsA venae_dorsale_penis_superficiale vein_of_penis) (STV 1.0 0.9091)) +(: cnet_isa_5f5dbc17fe (IsA venae_interlobulare_hepatis vein) (STV 1.0 0.9091)) +(: cnet_isa_280649d72d (IsA venae_interlobulare_renis venae_renis) (STV 1.0 0.9091)) +(: cnet_isa_9b4e100f2f (IsA venae_labiale_anteriore labial_vein) (STV 1.0 0.9091)) +(: cnet_isa_cb7f70092c (IsA venae_labiale_posteriore labial_vein) (STV 1.0 0.9091)) +(: cnet_isa_7227df3fc9 (IsA venae_palpebrale vein) (STV 1.0 0.9091)) +(: cnet_isa_c8933cccbb (IsA venae_profundae_clitoridis clitoral_vein) (STV 1.0 0.9091)) +(: cnet_isa_4372e1c164 (IsA venae_renis vein) (STV 1.0 0.9091)) +(: cnet_isa_fa5dda3533 (IsA venality corruptness) (STV 1.0 0.9091)) +(: cnet_isa_da65fc34aa (IsA venation arrangement) (STV 1.0 0.9091)) +(: cnet_isa_314d76c1d0 (IsA venation system) (STV 1.0 0.9091)) +(: cnet_isa_9b8e0e7e16 (IsA vendemiaire revolutionary_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_447d3b60c2 (IsA vendetta feud) (STV 1.0 0.9091)) +(: cnet_isa_cfff0a6d7a (IsA vending selling) (STV 1.0 0.9091)) +(: cnet_isa_79c30a31c7 (IsA vending_machine slot_machine) (STV 1.0 0.9091)) +(: cnet_isa_9c709c964c (IsA veneer coating) (STV 1.0 0.9091)) +(: cnet_isa_c4494ffa33 (IsA veneering lamination) (STV 1.0 0.9091)) +(: cnet_isa_30ac25af93 (IsA venerableness honorableness) (STV 1.0 0.9091)) +(: cnet_isa_6e6e1c2a1d (IsA venerator admirer) (STV 1.0 0.9091)) +(: cnet_isa_b4d4badbf9 (IsA venereal_disease contagious_disease) (STV 1.0 0.9091)) +(: cnet_isa_756d9d742f (IsA veneridae mollusk_family) (STV 1.0 0.9091)) +(: cnet_isa_ef68163ed4 (IsA venesection bloodletting) (STV 1.0 0.9091)) +(: cnet_isa_91b1a63c8e (IsA venesection incision) (STV 1.0 0.9091)) +(: cnet_isa_3eedacb7d7 (IsA venetian italian) (STV 1.0 0.9091)) +(: cnet_isa_33511c7df1 (IsA venetian_blind window_blind) (STV 1.0 0.9091)) +(: cnet_isa_fafe5271cc (IsA venetian_glass glassware) (STV 1.0 0.9091)) +(: cnet_isa_fabc8fba4f (IsA venetian_sumac smoke_tree) (STV 1.0 0.9091)) +(: cnet_isa_88b3eaf77c (IsA venezuelan south_american) (STV 1.0 0.9091)) +(: cnet_isa_a53928919c (IsA venezuelan_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_817879e9c8 (IsA vengeance retaliation) (STV 1.0 0.9091)) +(: cnet_isa_83e7b17bc1 (IsA venial_sin sin) (STV 1.0 0.9091)) +(: cnet_isa_9ae6416605 (IsA venipuncture puncture) (STV 1.0 0.9091)) +(: cnet_isa_1e873c82fc (IsA venire_facia writ) (STV 1.0 0.9091)) +(: cnet_isa_a77e32a188 (IsA venison game) (STV 1.0 0.9091)) +(: cnet_isa_f804e24575 (IsA venn_diagram diagram) (STV 1.0 0.9091)) +(: cnet_isa_de4e445718 (IsA venogram roentgenogram) (STV 1.0 0.9091)) +(: cnet_isa_5ed01fcca7 (IsA venography arthrography) (STV 1.0 0.9091)) +(: cnet_isa_4a4e06c7dd (IsA venom animal_toxin) (STV 1.0 0.9091)) +(: cnet_isa_eb6cf57802 (IsA venomous_lizard lizard) (STV 1.0 0.9091)) +(: cnet_isa_e7a0735ba4 (IsA venous_blood blood) (STV 1.0 0.9091)) +(: cnet_isa_6a8d71db7c (IsA venous_pressure blood_pressure) (STV 1.0 0.9091)) +(: cnet_isa_2a16668f45 (IsA venous_sinus duct) (STV 1.0 0.9091)) +(: cnet_isa_4159485a48 (IsA vent orifice) (STV 1.0 0.9091)) +(: cnet_isa_d0b5140e69 (IsA vent hole) (STV 1.0 0.9091)) +(: cnet_isa_9e331eb445 (IsA vent slit) (STV 1.0 0.9091)) +(: cnet_isa_f1c7777b70 (IsA vent crack) (STV 1.0 0.9091)) +(: cnet_isa_0d9a565e98 (IsA venter body_part) (STV 1.0 0.9091)) +(: cnet_isa_46208faaed (IsA venter uterus) (STV 1.0 0.9091)) +(: cnet_isa_98d60d6695 (IsA venter speaker) (STV 1.0 0.9091)) +(: cnet_isa_e7908cc703 (IsA ventilation improvement) (STV 1.0 0.9091)) +(: cnet_isa_13fc612f5e (IsA ventilation mechanical_system) (STV 1.0 0.9091)) +(: cnet_isa_89df1c4030 (IsA ventilation_shaft air_passage) (STV 1.0 0.9091)) +(: cnet_isa_590a5e8680 (IsA ventilation_shaft shaft) (STV 1.0 0.9091)) +(: cnet_isa_782d3ea0b3 (IsA ventilator device) (STV 1.0 0.9091)) +(: cnet_isa_75f7d22a79 (IsA ventose revolutionary_calendar_month) (STV 1.0 0.9091)) +(: cnet_isa_0aa9339d6b (IsA ventricle cavity) (STV 1.0 0.9091)) +(: cnet_isa_800637f7d3 (IsA ventricle chamber) (STV 1.0 0.9091)) +(: cnet_isa_92359624b8 (IsA ventricular_aneurysm aneurysm) (STV 1.0 0.9091)) +(: cnet_isa_9184ab69f8 (IsA ventricular_fibrillation cardiac_arrhythmia) (STV 1.0 0.9091)) +(: cnet_isa_3fdf85c82c (IsA ventricular_fibrillation fibrillation) (STV 1.0 0.9091)) +(: cnet_isa_cd9a585750 (IsA ventricular_septal_defect septal_defect) (STV 1.0 0.9091)) +(: cnet_isa_ceae02d318 (IsA ventriloquism art) (STV 1.0 0.9091)) +(: cnet_isa_edc1bc4839 (IsA ventriloquist_s_dummy dummy) (STV 1.0 0.9091)) +(: cnet_isa_3b6016daa7 (IsA ventriloquist performer) (STV 1.0 0.9091)) +(: cnet_isa_a1937b07df (IsA venture commercial_enterprise) (STV 1.0 0.9091)) +(: cnet_isa_6b20781210 (IsA venture undertaking) (STV 1.0 0.9091)) +(: cnet_isa_11e6e85c44 (IsA venture_capital capital) (STV 1.0 0.9091)) +(: cnet_isa_7a333801f2 (IsA venture_capitalism capitalism) (STV 1.0 0.9091)) +(: cnet_isa_2096d35233 (IsA venture_capitalist speculator) (STV 1.0 0.9091)) +(: cnet_isa_4635ece95e (IsA venturer merchant) (STV 1.0 0.9091)) +(: cnet_isa_dd0426c867 (IsA venturi tube) (STV 1.0 0.9091)) +(: cnet_isa_a92b865f42 (IsA venturi_tube measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_b34637fb8c (IsA venue jurisdiction) (STV 1.0 0.9091)) +(: cnet_isa_329a737f89 (IsA venue scene) (STV 1.0 0.9091)) +(: cnet_isa_0162294bce (IsA venule vein) (STV 1.0 0.9091)) +(: cnet_isa_0ed65f7aee (IsA venus_s_flower_basket glass_sponge) (STV 1.0 0.9091)) +(: cnet_isa_4e25eeb16a (IsA venus_s_flytrap carnivorous_plant) (STV 1.0 0.9091)) +(: cnet_isa_74ee4fed9c (IsA venus_s_girdle ctenophore) (STV 1.0 0.9091)) +(: cnet_isa_1da23a9834 (IsA venus planet) (STV 1.0 0.9791)) +(: cnet_isa_c7ec4cc762 (IsA venus planet_in_solar_system) (STV 1.0 0.9091)) +(: cnet_isa_55bd46dca8 (IsA venus mollusk_genus) (STV 1.0 0.9091)) +(: cnet_isa_930eb863e8 (IsA venus_fly_trap carnivore) (STV 1.0 0.9091)) +(: cnet_isa_5975b650a6 (IsA venus_flytrap plant) (STV 1.0 0.9091)) +(: cnet_isa_c227eb2721 (IsA venus_slipper orchid) (STV 1.0 0.9091)) +(: cnet_isa_8576bb2279 (IsA vep baltic_finnic) (STV 1.0 0.9091)) +(: cnet_isa_c92f98b4f5 (IsA vepsian russian) (STV 1.0 0.9091)) +(: cnet_isa_7820250d8a (IsA veracity truthfulness) (STV 1.0 0.9091)) +(: cnet_isa_c9c6632eb3 (IsA veranda porch) (STV 1.0 0.9091)) +(: cnet_isa_5711b7253a (IsA veratrum liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_e561f8fca5 (IsA verb action_word) (STV 1.0 0.9454)) +(: cnet_isa_c8fa87bb2f (IsA verb part_of_speech) (STV 1.0 0.9091)) +(: cnet_isa_9f7333807e (IsA verb word) (STV 1.0 0.9636)) +(: cnet_isa_83dda61d03 (IsA verb word_referring_to_action) (STV 1.0 0.9091)) +(: cnet_isa_f4d2a0476b (IsA verb content_word) (STV 1.0 0.9091)) +(: cnet_isa_3ef16f1db6 (IsA verb major_form_class) (STV 1.0 0.9091)) +(: cnet_isa_10db30881c (IsA verbal_creation creating_by_mental_act) (STV 1.0 0.9091)) +(: cnet_isa_2653397f35 (IsA verbal_intelligence intelligence) (STV 1.0 0.9091)) +(: cnet_isa_b5530ddbf2 (IsA verbal_noun common_noun) (STV 1.0 0.9091)) +(: cnet_isa_db2afc6023 (IsA verbalisation activity) (STV 1.0 0.9091)) +(: cnet_isa_fac3c783c9 (IsA verbalization wording) (STV 1.0 0.9091)) +(: cnet_isa_d65593dfaf (IsA verbascum asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_92ab1eca68 (IsA verbena plant) (STV 1.0 0.9339)) +(: cnet_isa_eaff2bbdb6 (IsA verbena flower) (STV 1.0 0.9091)) +(: cnet_isa_317b99d842 (IsA verbenaceae asterid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_225ba9700a (IsA verbesina asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_484c899579 (IsA verbiage verboseness) (STV 1.0 0.9091)) +(: cnet_isa_2e4a3735da (IsA verbolatry idolatry) (STV 1.0 0.9091)) +(: cnet_isa_870fd32ac9 (IsA verboseness expressive_style) (STV 1.0 0.9091)) +(: cnet_isa_a2b7a555d9 (IsA verd_antique marble) (STV 1.0 0.9091)) +(: cnet_isa_f5dce8537d (IsA verdicchio white_wine) (STV 1.0 0.9091)) +(: cnet_isa_132c6edf3d (IsA verdicchio vinifera) (STV 1.0 0.9091)) +(: cnet_isa_d1b771336e (IsA verdict finding) (STV 1.0 0.9091)) +(: cnet_isa_187ab94ab7 (IsA verdigris patina) (STV 1.0 0.9091)) +(: cnet_isa_b891ad5ed3 (IsA verdigris pigment) (STV 1.0 0.9091)) +(: cnet_isa_37b503f7ea (IsA verdin titmouse) (STV 1.0 0.9091)) +(: cnet_isa_a27153bf59 (IsA verge border) (STV 1.0 0.9091)) +(: cnet_isa_8f5c2dc464 (IsA verge limit) (STV 1.0 0.9091)) +(: cnet_isa_ed2782578c (IsA verger caretaker) (STV 1.0 0.9091)) +(: cnet_isa_e94895421a (IsA verger church_officer) (STV 1.0 0.9091)) +(: cnet_isa_0b9eb27c48 (IsA verification affidavit) (STV 1.0 0.9091)) +(: cnet_isa_b065493ec4 (IsA verisimilitude semblance) (STV 1.0 0.9091)) +(: cnet_isa_d11d90ecb6 (IsA verity truth) (STV 1.0 0.9091)) +(: cnet_isa_38f44e271d (IsA vermicelli pasta) (STV 1.0 0.9091)) +(: cnet_isa_5133d88368 (IsA vermicide agent) (STV 1.0 0.9091)) +(: cnet_isa_6a1d08b4dd (IsA vermicide medicine) (STV 1.0 0.9091)) +(: cnet_isa_4ae14da99c (IsA vermiculation carving) (STV 1.0 0.9091)) +(: cnet_isa_3d49034640 (IsA vermiculation embellishment) (STV 1.0 0.9091)) +(: cnet_isa_576b194d33 (IsA vermiculite mineral) (STV 1.0 0.9091)) +(: cnet_isa_b89c8e1d3d (IsA vermifuge medicine) (STV 1.0 0.9091)) +(: cnet_isa_31d15aca1b (IsA vermillion_flycatcher new_world_flycatcher) (STV 1.0 0.9091)) +(: cnet_isa_e69cc877ba (IsA vermillion_rockfish rockfish) (STV 1.0 0.9091)) +(: cnet_isa_1dd9527975 (IsA vermin pest) (STV 1.0 0.9091)) +(: cnet_isa_4d7a42564a (IsA vermin bad_person) (STV 1.0 0.9091)) +(: cnet_isa_8345f49ffa (IsA vermis neural_structure) (STV 1.0 0.9091)) +(: cnet_isa_e028a9629d (IsA vermont state) (STV 1.0 0.9524)) +(: cnet_isa_2639fc4b26 (IsA vermonter american) (STV 1.0 0.9091)) +(: cnet_isa_992907f323 (IsA vermouth wine) (STV 1.0 0.9091)) +(: cnet_isa_abd13c8025 (IsA vernacular non_standard_speech) (STV 1.0 0.9091)) +(: cnet_isa_892b9c7106 (IsA vernal_equinox equinoctial_point) (STV 1.0 0.9091)) +(: cnet_isa_ab93e6a5f0 (IsA vernal_equinox equinox) (STV 1.0 0.9091)) +(: cnet_isa_3c67a2bf1f (IsA vernal_witch_hazel witch_hazel) (STV 1.0 0.9091)) +(: cnet_isa_3392f8d997 (IsA vernation arrangement) (STV 1.0 0.9091)) +(: cnet_isa_98e6fb4576 (IsA verner_s_law sound_law) (STV 1.0 0.9091)) +(: cnet_isa_4afe47fef3 (IsA vernier_caliper caliper) (STV 1.0 0.9091)) +(: cnet_isa_64a8bfb7fe (IsA vernier_scale scale) (STV 1.0 0.9091)) +(: cnet_isa_3420ebfdb4 (IsA vernix material) (STV 1.0 0.9091)) +(: cnet_isa_0c019ce25d (IsA veronica flower) (STV 1.0 0.9091)) +(: cnet_isa_68432b4235 (IsA verpa morel) (STV 1.0 0.9091)) +(: cnet_isa_68cb82e9e2 (IsA verpa_bohemica verpa) (STV 1.0 0.9091)) +(: cnet_isa_f2f3832c81 (IsA verpa_conica verpa) (STV 1.0 0.9091)) +(: cnet_isa_6f26ab7be0 (IsA versaille palace_in_france) (STV 1.0 0.9091)) +(: cnet_isa_0e3d664d31 (IsA versatility skillfulness) (STV 1.0 0.9091)) +(: cnet_isa_c20bd987bd (IsA verse line) (STV 1.0 0.9091)) +(: cnet_isa_6d8657c17a (IsA verse poem) (STV 1.0 0.9091)) +(: cnet_isa_325898e3fb (IsA versicle poem) (STV 1.0 0.9091)) +(: cnet_isa_12088178ed (IsA versification adaptation) (STV 1.0 0.9091)) +(: cnet_isa_df38918c08 (IsA versification form) (STV 1.0 0.9091)) +(: cnet_isa_6e0433a5ee (IsA versification writing) (STV 1.0 0.9091)) +(: cnet_isa_0207feedef (IsA version turn) (STV 1.0 0.9091)) +(: cnet_isa_feee10a034 (IsA version type) (STV 1.0 0.9091)) +(: cnet_isa_e14dc85697 (IsA version interpretation) (STV 1.0 0.9091)) +(: cnet_isa_2386c85cdc (IsA verso page) (STV 1.0 0.9091)) +(: cnet_isa_c19bf866b9 (IsA verst linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_a4cb7e3376 (IsA vertebra bone) (STV 1.0 0.9091)) +(: cnet_isa_ba9d0e8349 (IsA vertebral_artery artery) (STV 1.0 0.9091)) +(: cnet_isa_449efea887 (IsA vertebral_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_bebc9241fe (IsA vertebrata phylum) (STV 1.0 0.9091)) +(: cnet_isa_cfedb8bc6d (IsA vertebrate chordate) (STV 1.0 0.9091)) +(: cnet_isa_822ebcafd4 (IsA vertebrate_foot extremity) (STV 1.0 0.9091)) +(: cnet_isa_c26578968b (IsA vertebrate_paleontology paleontology) (STV 1.0 0.9091)) +(: cnet_isa_2f01c52ec6 (IsA vertex intersection) (STV 1.0 0.9091)) +(: cnet_isa_6899dd3d20 (IsA vertex extreme_point) (STV 1.0 0.9091)) +(: cnet_isa_5c46576e87 (IsA vertical orientation) (STV 1.0 0.9091)) +(: cnet_isa_4569e3bfc0 (IsA vertical_angle angle) (STV 1.0 0.9091)) +(: cnet_isa_a6cca32087 (IsA vertical_bank bank) (STV 1.0 0.9091)) +(: cnet_isa_a24ea4af74 (IsA vertical_circle great_circle) (STV 1.0 0.9091)) +(: cnet_isa_9d683d89fc (IsA vertical_file file) (STV 1.0 0.9091)) +(: cnet_isa_5d9885280c (IsA vertical_integration consolidation) (STV 1.0 0.9091)) +(: cnet_isa_b1a436cfa9 (IsA vertical_section mechanical_drawing) (STV 1.0 0.9091)) +(: cnet_isa_50437b640d (IsA vertical_stabilizer stabilizer) (STV 1.0 0.9091)) +(: cnet_isa_ecbd324bdb (IsA vertical_surface surface) (STV 1.0 0.9091)) +(: cnet_isa_2396b55a14 (IsA vertical_tail airfoil) (STV 1.0 0.9091)) +(: cnet_isa_9f67f09619 (IsA verticality position) (STV 1.0 0.9091)) +(: cnet_isa_d5e9afa99d (IsA verticil coil) (STV 1.0 0.9091)) +(: cnet_isa_d12eed642a (IsA verticilliosis wilt) (STV 1.0 0.9091)) +(: cnet_isa_8bdde09c67 (IsA verticillium fungus) (STV 1.0 0.9091)) +(: cnet_isa_c7a1fe0977 (IsA vervet guenon) (STV 1.0 0.9091)) +(: cnet_isa_04bdcd1528 (IsA very_high_frequency radio_frequency) (STV 1.0 0.9091)) +(: cnet_isa_277d5e04ad (IsA very_important_person important_person) (STV 1.0 0.9091)) +(: cnet_isa_6497b66c35 (IsA very_light flare) (STV 1.0 0.9091)) +(: cnet_isa_cd21c76d06 (IsA very_low_density_lipoprotein lipoprotein) (STV 1.0 0.9091)) +(: cnet_isa_555cbdb763 (IsA very_low_frequency radio_frequency) (STV 1.0 0.9091)) +(: cnet_isa_16a31fbd25 (IsA very_pistol pistol) (STV 1.0 0.9091)) +(: cnet_isa_6e51307c87 (IsA very_reverend title) (STV 1.0 0.9091)) +(: cnet_isa_c505bd8d2a (IsA vesical_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_6bddffbada (IsA vesicant chemical_agent) (STV 1.0 0.9091)) +(: cnet_isa_963b50e0c0 (IsA vesicaria dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7f3878b19d (IsA vesicle sac) (STV 1.0 0.9091)) +(: cnet_isa_7c425c5e25 (IsA vesicoureteral_reflux reflux) (STV 1.0 0.9091)) +(: cnet_isa_88705cccfc (IsA vesicular_stomatitis stomatitis) (STV 1.0 0.9091)) +(: cnet_isa_44d98e785f (IsA vesiculation organic_process) (STV 1.0 0.9091)) +(: cnet_isa_0a7ba8899e (IsA vesiculitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_36f4f9115b (IsA vesiculovirus animal_virus) (STV 1.0 0.9091)) +(: cnet_isa_3e86c855a0 (IsA vespa arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_4a2809097a (IsA vesper service) (STV 1.0 0.9091)) +(: cnet_isa_25a394a08b (IsA vesper_sparrow new_world_sparrow) (STV 1.0 0.9091)) +(: cnet_isa_9bacd211db (IsA vesper canonical_hour) (STV 1.0 0.9091)) +(: cnet_isa_0be3b6eba3 (IsA vespertilian_bat carnivorous_bat) (STV 1.0 0.9091)) +(: cnet_isa_5b8a32824e (IsA vespertilio mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_95ab03d67b (IsA vespertilionidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_6bd47b02f6 (IsA vespid wasp) (STV 1.0 0.9091)) +(: cnet_isa_fbe4c7eb6b (IsA vespidae arthropod_family) (STV 1.0 0.9091)) +(: cnet_isa_4e25363805 (IsA vespula arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_577881c4e5 (IsA vessel container) (STV 1.0 0.9091)) +(: cnet_isa_6568924f45 (IsA vessel craft) (STV 1.0 0.9091)) +(: cnet_isa_f4abf4f8a4 (IsA vessel tube) (STV 1.0 0.9091)) +(: cnet_isa_18981b239b (IsA vest garment) (STV 1.0 0.9091)) +(: cnet_isa_3068ccc74b (IsA vest_pocket pocket) (STV 1.0 0.9091)) +(: cnet_isa_add45ae641 (IsA vestal woman) (STV 1.0 0.9091)) +(: cnet_isa_4838ba8c12 (IsA vestal_virgin votary) (STV 1.0 0.9091)) +(: cnet_isa_fe8903bcf8 (IsA vested_interest interest) (STV 1.0 0.9091)) +(: cnet_isa_2a573f8d0c (IsA vestibular_apparatus sensory_system) (STV 1.0 0.9091)) +(: cnet_isa_b06646a3a0 (IsA vestibular_gland exocrine_gland) (STV 1.0 0.9091)) +(: cnet_isa_af052dcdbb (IsA vestibular_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_23543f4436 (IsA vestibule cavity) (STV 1.0 0.9091)) +(: cnet_isa_ce76eb0e61 (IsA vestibule_of_ear vestibule) (STV 1.0 0.9091)) +(: cnet_isa_defa49e232 (IsA vestibule_of_vagina vestibule) (STV 1.0 0.9091)) +(: cnet_isa_392b09e143 (IsA vestiture clothing) (STV 1.0 0.9091)) +(: cnet_isa_a240acffda (IsA vestment gown) (STV 1.0 0.9091)) +(: cnet_isa_1fcf1182a2 (IsA vestry room) (STV 1.0 0.9091)) +(: cnet_isa_b90fd87317 (IsA vestry committee) (STV 1.0 0.9091)) +(: cnet_isa_54f4c9fde9 (IsA vestryman church_officer) (STV 1.0 0.9091)) +(: cnet_isa_4645f1defd (IsA vestrywoman church_officer) (STV 1.0 0.9091)) +(: cnet_isa_08e042b951 (IsA vesture covering) (STV 1.0 0.9091)) +(: cnet_isa_a331b9d0f2 (IsA vesuvianite mineral) (STV 1.0 0.9091)) +(: cnet_isa_c06e0883e6 (IsA vetch legume) (STV 1.0 0.9091)) +(: cnet_isa_4fecf2faa3 (IsA vetchling vine) (STV 1.0 0.9091)) +(: cnet_isa_eff61aef0a (IsA veteran expert) (STV 1.0 0.9091)) +(: cnet_isa_d5b9ae4a3b (IsA veteran serviceman) (STV 1.0 0.9091)) +(: cnet_isa_4d9959e4e5 (IsA veteran_day legal_holiday) (STV 1.0 0.9091)) +(: cnet_isa_b39ee4b5b0 (IsA veteran_of_foreign_war association) (STV 1.0 0.9091)) +(: cnet_isa_ee12bddaca (IsA veterinarian doctor) (STV 1.0 0.9608)) +(: cnet_isa_e4d0763163 (IsA veterinary_medicine medicine) (STV 1.0 0.9091)) +(: cnet_isa_6e6151da5e (IsA veterinary_school school) (STV 1.0 0.9091)) +(: cnet_isa_1814048168 (IsA veto vote) (STV 1.0 0.9091)) +(: cnet_isa_522ed3b9ab (IsA veto power) (STV 1.0 0.9091)) +(: cnet_isa_a8360d9cee (IsA vexatious_litigation litigation) (STV 1.0 0.9091)) +(: cnet_isa_9cf52c2cdc (IsA viability practicality) (STV 1.0 0.9091)) +(: cnet_isa_019895821a (IsA viability property) (STV 1.0 0.9091)) +(: cnet_isa_bff9d3d238 (IsA viaduct bridge) (STV 1.0 0.9091)) +(: cnet_isa_c0659f2900 (IsA viand dish) (STV 1.0 0.9091)) +(: cnet_isa_ef524da5e2 (IsA viatical_settlement liquidation) (STV 1.0 0.9091)) +(: cnet_isa_eae930e28e (IsA viatical_settlement advance_death_benefit) (STV 1.0 0.9091)) +(: cnet_isa_c28d4c950d (IsA viatication buying) (STV 1.0 0.9091)) +(: cnet_isa_9867bac81e (IsA vibe motion) (STV 1.0 0.9091)) +(: cnet_isa_ef7a75151a (IsA vibist musician) (STV 1.0 0.9091)) +(: cnet_isa_a08f39b3ca (IsA vibraphone percussion_instrument) (STV 1.0 0.9091)) +(: cnet_isa_38ea64ed45 (IsA vibration motion) (STV 1.0 0.9091)) +(: cnet_isa_d8a401d8c0 (IsA vibration air) (STV 1.0 0.9091)) +(: cnet_isa_436e411492 (IsA vibrato sound) (STV 1.0 0.9091)) +(: cnet_isa_b3c80bcf3c (IsA vibrator mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_12d06b9268 (IsA vibrio eubacteria) (STV 1.0 0.9091)) +(: cnet_isa_75b5cd3da5 (IsA vibrio_fetus vibrio) (STV 1.0 0.9091)) +(: cnet_isa_6ae420ecbb (IsA viburnum asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_094eb1d370 (IsA vicar clergyman) (STV 1.0 0.9091)) +(: cnet_isa_66b730e71e (IsA vicar priest) (STV 1.0 0.9091)) +(: cnet_isa_5247683087 (IsA vicar_apostolic bishop) (STV 1.0 0.9091)) +(: cnet_isa_a78bbea491 (IsA vicar_general deputy) (STV 1.0 0.9091)) +(: cnet_isa_1faf58e705 (IsA vicariate institution) (STV 1.0 0.9091)) +(: cnet_isa_ca002c7902 (IsA vice transgression) (STV 1.0 0.9091)) +(: cnet_isa_3ddbcc0be5 (IsA vice_admiral flag_officer) (STV 1.0 0.9091)) +(: cnet_isa_7846af5ace (IsA vice_chairman president) (STV 1.0 0.9091)) +(: cnet_isa_8f26802f0d (IsA vice_chancellor administrator) (STV 1.0 0.9091)) +(: cnet_isa_c6c584ba93 (IsA vice_crime crime) (STV 1.0 0.9091)) +(: cnet_isa_2292561913 (IsA vice_presidency position) (STV 1.0 0.9091)) +(: cnet_isa_1084eb6034 (IsA vice_president executive) (STV 1.0 0.9091)) +(: cnet_isa_f5b234c801 (IsA vice_president_of_united_state vice_president) (STV 1.0 0.9091)) +(: cnet_isa_7776706eb4 (IsA vice_presidential_term tenure) (STV 1.0 0.9091)) +(: cnet_isa_12fb4369f3 (IsA vice_regent deputy) (STV 1.0 0.9091)) +(: cnet_isa_c731fac0f4 (IsA vice_squad police_squad) (STV 1.0 0.9091)) +(: cnet_isa_cd07a8dab1 (IsA vicegerent deputy) (STV 1.0 0.9091)) +(: cnet_isa_fd0715779a (IsA vicereine wife) (STV 1.0 0.9091)) +(: cnet_isa_d8569fc2dd (IsA viceroy nymphalid) (STV 1.0 0.9091)) +(: cnet_isa_5499961a2a (IsA viceroy governor) (STV 1.0 0.9091)) +(: cnet_isa_54b08ef985 (IsA viceroyalty jurisdiction) (STV 1.0 0.9091)) +(: cnet_isa_bde6e3dbae (IsA viceroyship position) (STV 1.0 0.9091)) +(: cnet_isa_dbb86f7bcc (IsA vichy_water mineral_water) (STV 1.0 0.9091)) +(: cnet_isa_ddde4e479f (IsA vichyssoise soup) (STV 1.0 0.9091)) +(: cnet_isa_c3dd845049 (IsA vicia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2428424803 (IsA vicinity section) (STV 1.0 0.9091)) +(: cnet_isa_d8fa1279f5 (IsA vicious_circle specious_argument) (STV 1.0 0.9091)) +(: cnet_isa_b58010beca (IsA vicious_circle positive_feedback) (STV 1.0 0.9091)) +(: cnet_isa_c11461278f (IsA vicissitude mutability) (STV 1.0 0.9091)) +(: cnet_isa_a55997a578 (IsA vicissitude variation) (STV 1.0 0.9091)) +(: cnet_isa_e503fb44c2 (IsA victim person) (STV 1.0 0.9091)) +(: cnet_isa_34e4fe6e46 (IsA victim unfortunate) (STV 1.0 0.9091)) +(: cnet_isa_bb4c22de24 (IsA victimization adversity) (STV 1.0 0.9091)) +(: cnet_isa_eb4b150fcb (IsA victimizer bad_person) (STV 1.0 0.9091)) +(: cnet_isa_90e2ea4fa8 (IsA victimless_crime crime) (STV 1.0 0.9091)) +(: cnet_isa_b35e773afa (IsA victor combatant) (STV 1.0 0.9091)) +(: cnet_isa_66dbef1853 (IsA victoria_cross decoration) (STV 1.0 0.9091)) +(: cnet_isa_628ae4851e (IsA victoria_day legal_holiday) (STV 1.0 0.9091)) +(: cnet_isa_7f2564d302 (IsA victoria_plum plum) (STV 1.0 0.9091)) +(: cnet_isa_ff97fcfe35 (IsA victoria_sandwich cake) (STV 1.0 0.9091)) +(: cnet_isa_09f9db6f38 (IsA victorian person) (STV 1.0 0.9091)) +(: cnet_isa_b713351d55 (IsA victorian_architecture architectural_style) (STV 1.0 0.9091)) +(: cnet_isa_3deee088f3 (IsA victoriana collection) (STV 1.0 0.9091)) +(: cnet_isa_4e5f48fa26 (IsA victory when_one_opponent_defeat_another) (STV 1.0 0.9091)) +(: cnet_isa_f45b1e303b (IsA victory ending) (STV 1.0 0.9091)) +(: cnet_isa_d5365fadfa (IsA victory success) (STV 1.0 0.9091)) +(: cnet_isa_046e9531d7 (IsA victory_celebration celebration) (STV 1.0 0.9091)) +(: cnet_isa_f2c9f36c1b (IsA victory_garden kitchen_garden) (STV 1.0 0.9091)) +(: cnet_isa_6877cfdad9 (IsA victory_lap lap) (STV 1.0 0.9091)) +(: cnet_isa_89c57e9394 (IsA victualer host) (STV 1.0 0.9091)) +(: cnet_isa_78aeea92b6 (IsA vicugna mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_dbc406c6af (IsA vicuna even_toed_ungulate) (STV 1.0 0.9091)) +(: cnet_isa_1600995dda (IsA vicuna fabric) (STV 1.0 0.9091)) +(: cnet_isa_a06620e189 (IsA vicuna wool) (STV 1.0 0.9091)) +(: cnet_isa_801a7cb827 (IsA vidalia_onion onion) (STV 1.0 0.9091)) +(: cnet_isa_8a2f973454 (IsA video visual_communication) (STV 1.0 0.9091)) +(: cnet_isa_2dd0a6321a (IsA video_digitizing photography) (STV 1.0 0.9091)) +(: cnet_isa_a49082f7a0 (IsA video_ipod ipod) (STV 1.0 0.9091)) +(: cnet_isa_594e351084 (IsA video_recording recording) (STV 1.0 0.9091)) +(: cnet_isa_922aa51529 (IsA video_tape form_of_recordable_media) (STV 1.0 0.9091)) +(: cnet_isa_441728fa58 (IsA videocassette cassette) (STV 1.0 0.9091)) +(: cnet_isa_8b651c9a13 (IsA videocassette video_recording) (STV 1.0 0.9091)) +(: cnet_isa_df43508a6f (IsA videocassette_recorder tape_recorder) (STV 1.0 0.9091)) +(: cnet_isa_d0848c4249 (IsA videodisk optical_disk) (STV 1.0 0.9091)) +(: cnet_isa_2eeefc0ba7 (IsA videotape magnetic_tape) (STV 1.0 0.9091)) +(: cnet_isa_3fb9d96136 (IsA videotape tape) (STV 1.0 0.9091)) +(: cnet_isa_ee7e44693b (IsA videotape video_recording) (STV 1.0 0.9091)) +(: cnet_isa_b3f79d8484 (IsA vidua bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_cb868f7484 (IsA vienna_sausage frank) (STV 1.0 0.9091)) +(: cnet_isa_6058cae6bb (IsA vietnam country) (STV 1.0 0.9091)) +(: cnet_isa_e45a1d9ce9 (IsA vietnam in_asia) (STV 1.0 0.9091)) +(: cnet_isa_af80e2ffd0 (IsA vietnamese mon_khmer) (STV 1.0 0.9091)) +(: cnet_isa_f4c72d9701 (IsA vietnamese_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_ad074c1543 (IsA view look) (STV 1.0 0.9091)) +(: cnet_isa_4433d4c4a1 (IsA view appearance) (STV 1.0 0.9091)) +(: cnet_isa_b379da277e (IsA view purpose) (STV 1.0 0.9091)) +(: cnet_isa_9df8637a26 (IsA view visual_percept) (STV 1.0 0.9091)) +(: cnet_isa_dd880ba8fb (IsA view range) (STV 1.0 0.9091)) +(: cnet_isa_5ea183ba6c (IsA view_angle angle) (STV 1.0 0.9091)) +(: cnet_isa_bcd1fe2fdb (IsA viewer optical_device) (STV 1.0 0.9091)) +(: cnet_isa_1a3732a894 (IsA viewgraph foil) (STV 1.0 0.9091)) +(: cnet_isa_134c2f3832 (IsA viewing_audience audience) (STV 1.0 0.9091)) +(: cnet_isa_6a02d1bfd1 (IsA viewing_televsion passive_activity) (STV 1.0 0.9091)) +(: cnet_isa_10dcaed795 (IsA vigil wakefulness) (STV 1.0 0.9091)) +(: cnet_isa_d82e6095ed (IsA vigil rite) (STV 1.0 0.9091)) +(: cnet_isa_4e393b213a (IsA vigil_light candle) (STV 1.0 0.9091)) +(: cnet_isa_365e8506a1 (IsA vigilance_committee committee) (STV 1.0 0.9091)) +(: cnet_isa_ed40fd7f4d (IsA vigilante volunteer) (STV 1.0 0.9091)) +(: cnet_isa_691dacb4fd (IsA vigilantism law_enforcement) (STV 1.0 0.9091)) +(: cnet_isa_43ab6783b5 (IsA vigna rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_108dd27b60 (IsA vignette picture) (STV 1.0 0.9091)) +(: cnet_isa_d3a8508eae (IsA vignette sketch) (STV 1.0 0.9091)) +(: cnet_isa_8f043cb2d1 (IsA vigor strength) (STV 1.0 0.9091)) +(: cnet_isa_717227d827 (IsA viking northman) (STV 1.0 0.9091)) +(: cnet_isa_5ffd30788d (IsA villa country_house) (STV 1.0 0.9091)) +(: cnet_isa_f00ffc9f0e (IsA villa house) (STV 1.0 0.9091)) +(: cnet_isa_120aa666b2 (IsA village town) (STV 1.0 0.9339)) +(: cnet_isa_8663051a00 (IsA village community) (STV 1.0 0.9091)) +(: cnet_isa_c5e54c9578 (IsA village settlement) (STV 1.0 0.9091)) +(: cnet_isa_ae3ae83009 (IsA village_green park) (STV 1.0 0.9091)) +(: cnet_isa_1a0d1a8768 (IsA villager inhabitant) (STV 1.0 0.9091)) +(: cnet_isa_210454f7ef (IsA villain character) (STV 1.0 0.9091)) +(: cnet_isa_5f9e314fdb (IsA villain unwelcome_person) (STV 1.0 0.9091)) +(: cnet_isa_45f1e8353d (IsA villainess villain) (STV 1.0 0.9091)) +(: cnet_isa_53250d256a (IsA villainy transgression) (STV 1.0 0.9091)) +(: cnet_isa_6dbd8ed819 (IsA villainy evil) (STV 1.0 0.9091)) +(: cnet_isa_6caab5399b (IsA villeinage tenure) (STV 1.0 0.9091)) +(: cnet_isa_7bff1f3cf6 (IsA villeinage legal_status) (STV 1.0 0.9091)) +(: cnet_isa_05bd7bfcb4 (IsA villeinage servitude) (STV 1.0 0.9091)) +(: cnet_isa_2824fc087c (IsA villus process) (STV 1.0 0.9091)) +(: cnet_isa_c52a809a97 (IsA viminaria rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5e8e8a1972 (IsA vin_ordinaire table_wine) (STV 1.0 0.9091)) +(: cnet_isa_040dd49f8d (IsA vinca dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b1712b8094 (IsA vincent_s_angina angina) (STV 1.0 0.9091)) +(: cnet_isa_b6e153e161 (IsA vincent_s_angina contagious_disease) (STV 1.0 0.9091)) +(: cnet_isa_b481e3e362 (IsA vincetoxicum dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_2d5bdf279b (IsA vindication clearing) (STV 1.0 0.9091)) +(: cnet_isa_0847151b1e (IsA vindictiveness malevolence) (STV 1.0 0.9091)) +(: cnet_isa_641dadad66 (IsA vine plant) (STV 1.0 0.9091)) +(: cnet_isa_03bbe85e54 (IsA vine vascular_plant) (STV 1.0 0.9091)) +(: cnet_isa_e8f18995ee (IsA vine_maple maple) (STV 1.0 0.9091)) +(: cnet_isa_b985ac1d6a (IsA vine_snake colubrid_snake) (STV 1.0 0.9091)) +(: cnet_isa_1eae664c2d (IsA vinegar liquid) (STV 1.0 0.9091)) +(: cnet_isa_1d85109587 (IsA vinegar mild_acid) (STV 1.0 0.9091)) +(: cnet_isa_66d33bb5a4 (IsA vinegar weak_acid) (STV 1.0 0.9091)) +(: cnet_isa_77427b33b2 (IsA vinegar condiment) (STV 1.0 0.9091)) +(: cnet_isa_0a93631bd1 (IsA vinegar acetic_acid) (STV 1.0 0.9091)) +(: cnet_isa_98ca0bf95e (IsA vinegar_eel eelworm) (STV 1.0 0.9091)) +(: cnet_isa_3141f5500f (IsA vinegar_fly fruit_fly) (STV 1.0 0.9091)) +(: cnet_isa_d55473c67c (IsA vinegariness sourness) (STV 1.0 0.9091)) +(: cnet_isa_cbcf2df11c (IsA vinegarroon whip_scorpion) (STV 1.0 0.9091)) +(: cnet_isa_42528028af (IsA vineyard place) (STV 1.0 0.9091)) +(: cnet_isa_5b4536c780 (IsA vineyard farm) (STV 1.0 0.9091)) +(: cnet_isa_daed9d6daf (IsA viniculture trade) (STV 1.0 0.9091)) +(: cnet_isa_891d2f00ec (IsA vinifera grape) (STV 1.0 0.9091)) +(: cnet_isa_9b90d5f5a3 (IsA vinifera_grape grape) (STV 1.0 0.9091)) +(: cnet_isa_e69f971189 (IsA vinification zymosis) (STV 1.0 0.9091)) +(: cnet_isa_3c4745af8e (IsA vintage oldness) (STV 1.0 0.9091)) +(: cnet_isa_be8220b548 (IsA vintage wine) (STV 1.0 0.9091)) +(: cnet_isa_ce0ce80528 (IsA vintager harvester) (STV 1.0 0.9091)) +(: cnet_isa_1d33d92cf4 (IsA vintner person) (STV 1.0 0.9091)) +(: cnet_isa_85fb35f424 (IsA vintner maker) (STV 1.0 0.9091)) +(: cnet_isa_331f03db65 (IsA vintner merchant) (STV 1.0 0.9091)) +(: cnet_isa_2d884c31bd (IsA vinyl chemical) (STV 1.0 0.9091)) +(: cnet_isa_a5d596bae1 (IsA vinyl organic_chemical) (STV 1.0 0.9091)) +(: cnet_isa_01159778b4 (IsA vinyl plastic) (STV 1.0 0.9091)) +(: cnet_isa_0c288da386 (IsA vinyl synthetic_fiber) (STV 1.0 0.9091)) +(: cnet_isa_caa82c06e9 (IsA vinyl group) (STV 1.0 0.9091)) +(: cnet_isa_3f6c2386e2 (IsA vinyl_polymer synthetic_resin) (STV 1.0 0.9091)) +(: cnet_isa_b2a2468445 (IsA viol bowed_stringed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_09d3bd2580 (IsA viola instrument) (STV 1.0 0.9454)) +(: cnet_isa_f3470594d5 (IsA viola musical_instrument) (STV 1.0 0.9659)) +(: cnet_isa_d11d7bdbc8 (IsA viola bowed_stringed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_37e98eac9a (IsA viola dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9deed837a5 (IsA viola herb) (STV 1.0 0.9091)) +(: cnet_isa_98743c132d (IsA viola_d_amore viol) (STV 1.0 0.9091)) +(: cnet_isa_8823ed0225 (IsA viola_da_braccio viol) (STV 1.0 0.9091)) +(: cnet_isa_52aeb73b11 (IsA viola_da_gamba viol) (STV 1.0 0.9091)) +(: cnet_isa_062213cb09 (IsA violaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_4e69d75951 (IsA violation wrongdoing) (STV 1.0 0.9091)) +(: cnet_isa_ca61ff891b (IsA violator criminal) (STV 1.0 0.9091)) +(: cnet_isa_96ca38d755 (IsA violator libertine) (STV 1.0 0.9091)) +(: cnet_isa_9f12efe45a (IsA violence aggression) (STV 1.0 0.9091)) +(: cnet_isa_cce94d6ec8 (IsA violence turbulence) (STV 1.0 0.9091)) +(: cnet_isa_09bebd37a1 (IsA violet flower) (STV 1.0 0.9454)) +(: cnet_isa_51f88ec4e4 (IsA violet purple) (STV 1.0 0.9091)) +(: cnet_isa_2ac1dcfdba (IsA violet viola) (STV 1.0 0.9091)) +(: cnet_isa_82de6e1faa (IsA violet_flowered_petunia petunia) (STV 1.0 0.9091)) +(: cnet_isa_6030db8a6c (IsA violet_suksdorfia suksdorfia) (STV 1.0 0.9091)) +(: cnet_isa_f3b36e2779 (IsA violet_wood_sorrel oxalis) (STV 1.0 0.9091)) +(: cnet_isa_4fc7b3a9d0 (IsA violin bowed_stringed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_16b8ef0520 (IsA violin_family class) (STV 1.0 0.9091)) +(: cnet_isa_f273b19bff (IsA violin_lesson music_lesson) (STV 1.0 0.9091)) +(: cnet_isa_697758f7ae (IsA violin_maker maker) (STV 1.0 0.9091)) +(: cnet_isa_9a28e0b9da (IsA violin_section string_section) (STV 1.0 0.9091)) +(: cnet_isa_a70b8934f6 (IsA violinist musician) (STV 1.0 0.9091)) +(: cnet_isa_a7153eb6ab (IsA violist musician) (STV 1.0 0.9091)) +(: cnet_isa_e1cb431db0 (IsA viper snake) (STV 1.0 0.9091)) +(: cnet_isa_1294d98856 (IsA vipera reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_f6de0e8817 (IsA viperidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_5333689c81 (IsA viperine_grass_snake grass_snake) (STV 1.0 0.9091)) +(: cnet_isa_98fa404649 (IsA virago shrew) (STV 1.0 0.9091)) +(: cnet_isa_ef3f411afb (IsA viral_delivery_vector transducing_vector) (STV 1.0 0.9091)) +(: cnet_isa_89e5f2ec6e (IsA viral_hepatitis hepatitis) (STV 1.0 0.9091)) +(: cnet_isa_e9c6ab437d (IsA viral_infection infection) (STV 1.0 0.9091)) +(: cnet_isa_05d5717cdc (IsA viral_pneumonia pneumonia) (STV 1.0 0.9091)) +(: cnet_isa_0cf5797a0a (IsA viral_pneumonia viral_infection) (STV 1.0 0.9091)) +(: cnet_isa_87b8582603 (IsA viremia pathology) (STV 1.0 0.9091)) +(: cnet_isa_82a94d0fb6 (IsA vireo oscine) (STV 1.0 0.9091)) +(: cnet_isa_9654afac0e (IsA vireonidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_1df4b80eea (IsA virga precipitation) (STV 1.0 0.9091)) +(: cnet_isa_693cbc579e (IsA virgilia rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_57651ea2e6 (IsA virgin_s_bower clematis) (STV 1.0 0.9091)) +(: cnet_isa_aad7c893e3 (IsA virgin person) (STV 1.0 0.9091)) +(: cnet_isa_f82004b3c5 (IsA virgin innocent) (STV 1.0 0.9091)) +(: cnet_isa_47c4454410 (IsA virgin_birth theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_2178e80a09 (IsA virgin_mary bloody_mary) (STV 1.0 0.9091)) +(: cnet_isa_3bfbca64dd (IsA virgin_wool wool) (STV 1.0 0.9091)) +(: cnet_isa_ca2e54a242 (IsA virginal harpsichord) (STV 1.0 0.9091)) +(: cnet_isa_d74b164495 (IsA virginia state) (STV 1.0 0.9339)) +(: cnet_isa_35c710b52d (IsA virginia_bluebell herb) (STV 1.0 0.9091)) +(: cnet_isa_c836d3188e (IsA virginia_chain_fern chain_fern) (STV 1.0 0.9091)) +(: cnet_isa_72f355a6d6 (IsA virginia_creeper vine) (STV 1.0 0.9091)) +(: cnet_isa_4af70e8edb (IsA virginia_crownbeard crownbeard) (STV 1.0 0.9091)) +(: cnet_isa_0a7388a569 (IsA virginia_deer deer) (STV 1.0 0.9091)) +(: cnet_isa_fe041b6bc8 (IsA virginia_ham ham) (STV 1.0 0.9091)) +(: cnet_isa_f46235727f (IsA virginia_mallow mallow) (STV 1.0 0.9091)) +(: cnet_isa_389bbf9fb2 (IsA virginia_oyster oyster) (STV 1.0 0.9091)) +(: cnet_isa_c29b8691f2 (IsA virginia_reel longway) (STV 1.0 0.9091)) +(: cnet_isa_77006b7ddb (IsA virginia_snakeroot birthwort) (STV 1.0 0.9091)) +(: cnet_isa_b0550f3c59 (IsA virginia_spring_beauty flower) (STV 1.0 0.9091)) +(: cnet_isa_d1ec2dd931 (IsA virginia_strawberry strawberry) (STV 1.0 0.9091)) +(: cnet_isa_30af094028 (IsA virginia_thimbleweed thimbleweed) (STV 1.0 0.9091)) +(: cnet_isa_2524cb3e3a (IsA virginia_waterleaf waterleaf) (STV 1.0 0.9091)) +(: cnet_isa_d8549aeb23 (IsA virginian american) (STV 1.0 0.9091)) +(: cnet_isa_dab2001c30 (IsA virginian_stock flower) (STV 1.0 0.9091)) +(: cnet_isa_2afa1929b7 (IsA virginian_witch_hazel witch_hazel) (STV 1.0 0.9091)) +(: cnet_isa_f70dea996f (IsA virginity condition) (STV 1.0 0.9091)) +(: cnet_isa_7aa0d94579 (IsA viricide agent) (STV 1.0 0.9091)) +(: cnet_isa_a8289c7447 (IsA virilism sex_characteristic) (STV 1.0 0.9091)) +(: cnet_isa_e51622c146 (IsA virility maleness) (STV 1.0 0.9091)) +(: cnet_isa_8055b6422a (IsA virility_drug drug) (STV 1.0 0.9091)) +(: cnet_isa_3b8d761a27 (IsA virino particle) (STV 1.0 0.9091)) +(: cnet_isa_884a17cf6f (IsA virion particle) (STV 1.0 0.9091)) +(: cnet_isa_be91617453 (IsA viroid plant_virus) (STV 1.0 0.9091)) +(: cnet_isa_195caae9d9 (IsA virologist microbiologist) (STV 1.0 0.9091)) +(: cnet_isa_ce01162a2d (IsA virology medicine) (STV 1.0 0.9091)) +(: cnet_isa_0e9a657089 (IsA virtu objet_d_art) (STV 1.0 0.9091)) +(: cnet_isa_d3e13e607e (IsA virtu quality) (STV 1.0 0.9091)) +(: cnet_isa_4e7702a574 (IsA virtu taste) (STV 1.0 0.9091)) +(: cnet_isa_2239c98d9c (IsA virtual_human software_can_emulate_human_behaviour_and_communication) (STV 1.0 0.9091)) +(: cnet_isa_0bfbb01eb4 (IsA virtual_image reflection) (STV 1.0 0.9091)) +(: cnet_isa_772fc64866 (IsA virtual_memory memory) (STV 1.0 0.9091)) +(: cnet_isa_86efae58bd (IsA virtual_reality computer_game) (STV 1.0 0.9091)) +(: cnet_isa_6886c4f3e0 (IsA virtue good_thing_to_have) (STV 1.0 0.9091)) +(: cnet_isa_b16ab6a67c (IsA virtue good) (STV 1.0 0.9091)) +(: cnet_isa_1ce84076d3 (IsA virtue morality) (STV 1.0 0.9091)) +(: cnet_isa_49d2862486 (IsA virtuosity skill) (STV 1.0 0.9091)) +(: cnet_isa_23ff151238 (IsA virtuoso musician) (STV 1.0 0.9091)) +(: cnet_isa_cf5f0c95a1 (IsA virulence hostility) (STV 1.0 0.9091)) +(: cnet_isa_09db7d525c (IsA virulence harmfulness) (STV 1.0 0.9091)) +(: cnet_isa_23fc814349 (IsA virus program_replicate) (STV 1.0 0.9091)) +(: cnet_isa_a3e5ff0fd5 (IsA virus malevolent_program) (STV 1.0 0.9091)) +(: cnet_isa_6be5b031d9 (IsA virus representation) (STV 1.0 0.9091)) +(: cnet_isa_fb6cb67c72 (IsA virus infectious_agent) (STV 1.0 0.9091)) +(: cnet_isa_ec5aa656a9 (IsA virus microorganism) (STV 1.0 0.9091)) +(: cnet_isa_22f3ff012e (IsA virus almost_inconceivably_small) (STV 1.0 0.9091)) +(: cnet_isa_6f26adc547 (IsA visa credit_card) (STV 1.0 0.9524)) +(: cnet_isa_82414c902e (IsA visa credit_card_company) (STV 1.0 0.9091)) +(: cnet_isa_2ad8c704d2 (IsA visa sanction) (STV 1.0 0.9091)) +(: cnet_isa_c4e00dfb23 (IsA viscaceae dilleniid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_ac52f40054 (IsA viscacha rodent) (STV 1.0 0.9091)) +(: cnet_isa_163fc13b09 (IsA viscera internal_organ) (STV 1.0 0.9091)) +(: cnet_isa_1bebc98f5d (IsA visceral_leishmaniasis leishmaniasis) (STV 1.0 0.9091)) +(: cnet_isa_81d308b1b9 (IsA visceral_pleura pleura) (STV 1.0 0.9091)) +(: cnet_isa_6eb1d90b5a (IsA viscometer measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_3a29a9ace1 (IsA viscometry measurement) (STV 1.0 0.9091)) +(: cnet_isa_e33eccef96 (IsA viscose_rayon rayon) (STV 1.0 0.9091)) +(: cnet_isa_b7ea8c666b (IsA viscosity consistency) (STV 1.0 0.9091)) +(: cnet_isa_4809d58400 (IsA viscount nobleman) (STV 1.0 0.9091)) +(: cnet_isa_f15b1b0dc4 (IsA viscount peer) (STV 1.0 0.9091)) +(: cnet_isa_d12006cf84 (IsA viscountcy title) (STV 1.0 0.9091)) +(: cnet_isa_986860273d (IsA viscountcy rank) (STV 1.0 0.9091)) +(: cnet_isa_102fe79a11 (IsA viscountess peer) (STV 1.0 0.9091)) +(: cnet_isa_53ecdf1f74 (IsA viscountess wife) (STV 1.0 0.9091)) +(: cnet_isa_4f5f5eb032 (IsA viscounty domain) (STV 1.0 0.9091)) +(: cnet_isa_00d8fea736 (IsA viscum dilleniid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_466be727ba (IsA vise holding_device) (STV 1.0 0.9091)) +(: cnet_isa_85f29dc3aa (IsA visibility clearness) (STV 1.0 0.9091)) +(: cnet_isa_dfe2aa92b4 (IsA visibility perceptibility) (STV 1.0 0.9091)) +(: cnet_isa_29d332b486 (IsA visibility salience) (STV 1.0 0.9091)) +(: cnet_isa_d5a888d792 (IsA visible_spectrum spectrum) (STV 1.0 0.9091)) +(: cnet_isa_5be9a33322 (IsA visible_speech spectrogram) (STV 1.0 0.9091)) +(: cnet_isa_7ad481fdf5 (IsA visible_speech phonetic_alphabet) (STV 1.0 0.9091)) +(: cnet_isa_7471b0152f (IsA visigoth goth) (STV 1.0 0.9091)) +(: cnet_isa_aa6fa92326 (IsA vision imagination) (STV 1.0 0.9091)) +(: cnet_isa_e77efc3d4d (IsA vision sensation) (STV 1.0 0.9091)) +(: cnet_isa_f879d3d136 (IsA vision experience) (STV 1.0 0.9091)) +(: cnet_isa_d55042a960 (IsA visionary intellectual) (STV 1.0 0.9091)) +(: cnet_isa_2803568539 (IsA visionary person) (STV 1.0 0.9091)) +(: cnet_isa_0ece34d75c (IsA visit meeting) (STV 1.0 0.9091)) +(: cnet_isa_be6c75170e (IsA visitation visit) (STV 1.0 0.9091)) +(: cnet_isa_a1223d279e (IsA visitation calamity) (STV 1.0 0.9091)) +(: cnet_isa_dc8cc32f51 (IsA visitation_right legal_right) (STV 1.0 0.9091)) +(: cnet_isa_33e396b2d8 (IsA visiting visit) (STV 1.0 0.9091)) +(: cnet_isa_16d7ca59fb (IsA visiting_fireman visitor) (STV 1.0 0.9091)) +(: cnet_isa_ad6f1d7eab (IsA visiting_nurse nurse) (STV 1.0 0.9091)) +(: cnet_isa_ed99f44398 (IsA visiting_professor professor) (STV 1.0 0.9091)) +(: cnet_isa_d3e49e8044 (IsA visitor traveler) (STV 1.0 0.9091)) +(: cnet_isa_1f70293cf8 (IsA visor armor_plate) (STV 1.0 0.9091)) +(: cnet_isa_8cfc544f7d (IsA visual_agnosia agnosia) (STV 1.0 0.9091)) +(: cnet_isa_33a1c1c3f9 (IsA visual_aphasia aphasia) (STV 1.0 0.9091)) +(: cnet_isa_3b7fb1e33c (IsA visual_area cortical_area) (STV 1.0 0.9091)) +(: cnet_isa_4a9f814c18 (IsA visual_cell somatic_cell) (STV 1.0 0.9091)) +(: cnet_isa_49d34b40a8 (IsA visual_communication communication) (STV 1.0 0.9091)) +(: cnet_isa_5a54f09de5 (IsA visual_display_unit display) (STV 1.0 0.9091)) +(: cnet_isa_4369bd507f (IsA visual_field visual_percept) (STV 1.0 0.9091)) +(: cnet_isa_b81c554e28 (IsA visual_hallucination hallucination) (STV 1.0 0.9091)) +(: cnet_isa_a60989a7ef (IsA visual_image image) (STV 1.0 0.9091)) +(: cnet_isa_19fa8d924d (IsA visual_impairment disability) (STV 1.0 0.9091)) +(: cnet_isa_1ab30e42a3 (IsA visual_percept percept) (STV 1.0 0.9091)) +(: cnet_isa_7b20a2588a (IsA visual_perception perception) (STV 1.0 0.9091)) +(: cnet_isa_43cee21961 (IsA visual_property property) (STV 1.0 0.9091)) +(: cnet_isa_5a62443c8b (IsA visual_purple photopigment) (STV 1.0 0.9091)) +(: cnet_isa_7f9c526c54 (IsA visual_range visibility) (STV 1.0 0.9091)) +(: cnet_isa_a3badbbc2b (IsA visual_signal signal) (STV 1.0 0.9091)) +(: cnet_isa_53bdc771db (IsA visual_space visual_perception) (STV 1.0 0.9091)) +(: cnet_isa_b1cf77cc26 (IsA visual_system sensory_system) (STV 1.0 0.9091)) +(: cnet_isa_60fbebbcec (IsA visualizer perceiver) (STV 1.0 0.9091)) +(: cnet_isa_baec53ffb6 (IsA visually_impaired_person person) (STV 1.0 0.9091)) +(: cnet_isa_353daa0108 (IsA vitaceae dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_f33300612a (IsA vital_capacity capacity) (STV 1.0 0.9091)) +(: cnet_isa_0c1d24b9ea (IsA vital_capacity diagnostic_test) (STV 1.0 0.9091)) +(: cnet_isa_6eb79688ea (IsA vital_organ organ) (STV 1.0 0.9091)) +(: cnet_isa_89dae3f700 (IsA vital_principle causal_agent) (STV 1.0 0.9091)) +(: cnet_isa_5f0812f7ea (IsA vital_sign sign) (STV 1.0 0.9091)) +(: cnet_isa_3c8d80c387 (IsA vital_statistic statistic) (STV 1.0 0.9091)) +(: cnet_isa_951ad5fe08 (IsA vitalism philosophical_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_fda12c2da8 (IsA vitalist believer) (STV 1.0 0.9091)) +(: cnet_isa_493b7d217a (IsA vitality energy) (STV 1.0 0.9091)) +(: cnet_isa_7776569452 (IsA vitalization physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_5015041601 (IsA vitalness essentiality) (STV 1.0 0.9091)) +(: cnet_isa_c3023a7094 (IsA vitamin fat_soluble_vitamin) (STV 1.0 0.9091)) +(: cnet_isa_076431283c (IsA vitamin nutriment) (STV 1.0 0.9091)) +(: cnet_isa_b6003ce126 (IsA vitamin_a1 vitamin) (STV 1.0 0.9091)) +(: cnet_isa_d02c03dc80 (IsA vitamin_a2 vitamin) (STV 1.0 0.9091)) +(: cnet_isa_59cb2c2be0 (IsA vitamin_b1 b_complex_vitamin) (STV 1.0 0.9091)) +(: cnet_isa_c1b47079c7 (IsA vitamin_b12 b_complex_vitamin) (STV 1.0 0.9091)) +(: cnet_isa_4bcb56eb85 (IsA vitamin_b2 b_complex_vitamin) (STV 1.0 0.9091)) +(: cnet_isa_a3cfb5d50e (IsA vitamin_b6 b_complex_vitamin) (STV 1.0 0.9091)) +(: cnet_isa_7e81609ce8 (IsA vitamin_bc b_complex_vitamin) (STV 1.0 0.9091)) +(: cnet_isa_7dffaa04ee (IsA vitamin_c antioxidant) (STV 1.0 0.9091)) +(: cnet_isa_59f59df0f9 (IsA vitamin_c water_soluble_vitamin) (STV 1.0 0.9091)) +(: cnet_isa_cb71f72c19 (IsA vitamin_d fat_soluble_vitamin) (STV 1.0 0.9091)) +(: cnet_isa_abeabd3295 (IsA vitamin_e antioxidant) (STV 1.0 0.9091)) +(: cnet_isa_d522ee78ed (IsA vitamin_e fat_soluble_vitamin) (STV 1.0 0.9091)) +(: cnet_isa_30ac1f5f07 (IsA vitamin_k fat_soluble_vitamin) (STV 1.0 0.9091)) +(: cnet_isa_a188bac993 (IsA vitamin_k1 vitamin_k) (STV 1.0 0.9091)) +(: cnet_isa_8e2f7e2d58 (IsA vitamin_k3 vitamin_k) (STV 1.0 0.9091)) +(: cnet_isa_c3e8a9d3f2 (IsA vitamin_p water_soluble_vitamin) (STV 1.0 0.9091)) +(: cnet_isa_0ff916a68b (IsA vitamin_pill dietary_supplement) (STV 1.0 0.9091)) +(: cnet_isa_13f2232829 (IsA vitamin_pill pill) (STV 1.0 0.9091)) +(: cnet_isa_cf7981075d (IsA vitelline_circulation circulation) (STV 1.0 0.9091)) +(: cnet_isa_7a2cb5615e (IsA vithar norse_deity) (STV 1.0 0.9091)) +(: cnet_isa_440bf8e7f2 (IsA vitiation nullification) (STV 1.0 0.9091)) +(: cnet_isa_6dfd2341fe (IsA viticulture culture) (STV 1.0 0.9091)) +(: cnet_isa_81162ef213 (IsA viticulturist agriculturist) (STV 1.0 0.9091)) +(: cnet_isa_349f1a2a53 (IsA vitiligo skin_disease) (STV 1.0 0.9091)) +(: cnet_isa_bd779d0eb5 (IsA vitis dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_70de310c03 (IsA vitrectomy eye_operation) (STV 1.0 0.9091)) +(: cnet_isa_b1cad915d7 (IsA vitreous_humor liquid_body_substance) (STV 1.0 0.9091)) +(: cnet_isa_731318b084 (IsA vitrification natural_process) (STV 1.0 0.9091)) +(: cnet_isa_bf165b407f (IsA vitrification solid) (STV 1.0 0.9091)) +(: cnet_isa_bf95c0fac1 (IsA vitriol acid) (STV 1.0 0.9091)) +(: cnet_isa_f9dec1ef89 (IsA vittaria fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_89bedb128b (IsA vittariaceae fern_family) (STV 1.0 0.9091)) +(: cnet_isa_e0bfac30ee (IsA vituperation abuse) (STV 1.0 0.9091)) +(: cnet_isa_a49e370e64 (IsA vivacity high_spiritedness) (STV 1.0 0.9091)) +(: cnet_isa_76fc962d15 (IsA vivarium enclosure) (STV 1.0 0.9091)) +(: cnet_isa_f495bc4243 (IsA viverra mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_acbf788d65 (IsA viverricula mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_c90cee0bdf (IsA viverridae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_d84c6e7168 (IsA viverrine carnivore) (STV 1.0 0.9091)) +(: cnet_isa_eb96ab6834 (IsA vivification energizing) (STV 1.0 0.9091)) +(: cnet_isa_5774a2f1a5 (IsA viviparous_eelpout eelpout) (STV 1.0 0.9091)) +(: cnet_isa_332097c7c0 (IsA vivisection operation) (STV 1.0 0.9091)) +(: cnet_isa_1a2a09b1db (IsA vivisectionist biologist) (STV 1.0 0.9091)) +(: cnet_isa_09d44e7021 (IsA vixen fox) (STV 1.0 0.9091)) +(: cnet_isa_dc94904d91 (IsA vixen unpleasant_woman) (STV 1.0 0.9091)) +(: cnet_isa_07c4020e9d (IsA vizier official) (STV 1.0 0.9091)) +(: cnet_isa_f05907366a (IsA viziership position) (STV 1.0 0.9091)) +(: cnet_isa_6742c2e826 (IsA vizla pointer) (STV 1.0 0.9091)) +(: cnet_isa_dda48a490e (IsA vocable word) (STV 1.0 0.9091)) +(: cnet_isa_e3ae152599 (IsA vocabulary frame_of_reference) (STV 1.0 0.9091)) +(: cnet_isa_86dd6f24be (IsA vocabulary cognition) (STV 1.0 0.9091)) +(: cnet_isa_daa48b4791 (IsA vocabulary wordbook) (STV 1.0 0.9091)) +(: cnet_isa_e6209fc3df (IsA vocal_cord fold) (STV 1.0 0.9091)) +(: cnet_isa_bb964286b1 (IsA vocal_music music) (STV 1.0 0.9091)) +(: cnet_isa_289287729a (IsA vocalist musician) (STV 1.0 0.9091)) +(: cnet_isa_22c30095cd (IsA vocational_program educational_program) (STV 1.0 0.9091)) +(: cnet_isa_7f7e85d37c (IsA vocational_rehabilitation rehabilitation) (STV 1.0 0.9091)) +(: cnet_isa_a912e3efb2 (IsA vocational_rehabilitation_program rehabilitation_program) (STV 1.0 0.9091)) +(: cnet_isa_4e852a7c76 (IsA vocational_training education) (STV 1.0 0.9091)) +(: cnet_isa_24ab01e2a7 (IsA vocative oblique) (STV 1.0 0.9091)) +(: cnet_isa_4bcf3be0c9 (IsA vociferator speaker) (STV 1.0 0.9091)) +(: cnet_isa_d2e616bf68 (IsA vodka alcohol) (STV 1.0 0.9091)) +(: cnet_isa_629e8e0e8c (IsA vodka liquor) (STV 1.0 0.9091)) +(: cnet_isa_768d663910 (IsA vodka_martini martini) (STV 1.0 0.9091)) +(: cnet_isa_101b93c3e4 (IsA vogue taste) (STV 1.0 0.9091)) +(: cnet_isa_9a4dac1dac (IsA voice mean) (STV 1.0 0.9091)) +(: cnet_isa_344272ee29 (IsA voice physical_ability) (STV 1.0 0.9091)) +(: cnet_isa_1aba6bdf7d (IsA voice sound) (STV 1.0 0.9091)) +(: cnet_isa_020ed82351 (IsA voice communication) (STV 1.0 0.9091)) +(: cnet_isa_d96f3fa7f7 (IsA voice grammatical_relation) (STV 1.0 0.9091)) +(: cnet_isa_a4c0584b23 (IsA voice singer) (STV 1.0 0.9091)) +(: cnet_isa_9c2d965882 (IsA voice_mail telephone) (STV 1.0 0.9091)) +(: cnet_isa_10a3eea927 (IsA voice_over voice) (STV 1.0 0.9091)) +(: cnet_isa_41e1986961 (IsA voice_part part) (STV 1.0 0.9091)) +(: cnet_isa_dcb1b53d02 (IsA voicelessness powerlessness) (STV 1.0 0.9091)) +(: cnet_isa_8ecfa26726 (IsA voiceprint biometric_identification) (STV 1.0 0.9091)) +(: cnet_isa_d20cc0c943 (IsA voicer skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_eed716c832 (IsA voicer speaker) (STV 1.0 0.9091)) +(: cnet_isa_ec127dd897 (IsA voicing adjustment) (STV 1.0 0.9091)) +(: cnet_isa_1e95e40b94 (IsA void space) (STV 1.0 0.9091)) +(: cnet_isa_990a201b42 (IsA voider chain_mail) (STV 1.0 0.9091)) +(: cnet_isa_977ebd73cf (IsA voile fabric) (STV 1.0 0.9091)) +(: cnet_isa_45a0f8dd29 (IsA vol_au_vent pastry) (STV 1.0 0.9091)) +(: cnet_isa_1cd1aaea41 (IsA volapuk artificial_language) (STV 1.0 0.9091)) +(: cnet_isa_02e595a26d (IsA volatile substance) (STV 1.0 0.9091)) +(: cnet_isa_31478e0391 (IsA volatile_storage memory) (STV 1.0 0.9091)) +(: cnet_isa_a547202d08 (IsA volatility chemical_property) (STV 1.0 0.9091)) +(: cnet_isa_9786bd61d2 (IsA volatility irresoluteness) (STV 1.0 0.9091)) +(: cnet_isa_4a6f736959 (IsA volcanic_crater geological_formation) (STV 1.0 0.9091)) +(: cnet_isa_57bed5776e (IsA volcanic_eruption discharge) (STV 1.0 0.9091)) +(: cnet_isa_66a6cbc113 (IsA volcanic_glass volcanic_rock) (STV 1.0 0.9091)) +(: cnet_isa_7c3cb444f5 (IsA volcanic_rock igneous_rock) (STV 1.0 0.9091)) +(: cnet_isa_0bb82a4e7a (IsA volcanism geological_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_f65a761458 (IsA volcano mountain) (STV 1.0 0.9091)) +(: cnet_isa_40b84079b6 (IsA volcanology geophysic) (STV 1.0 0.9091)) +(: cnet_isa_5e4bb93983 (IsA vole wood_rat) (STV 1.0 0.9091)) +(: cnet_isa_4e8030d0bd (IsA volgaic fennic) (STV 1.0 0.9091)) +(: cnet_isa_c01c675a00 (IsA volition choice) (STV 1.0 0.9091)) +(: cnet_isa_8a22f0cd27 (IsA volition faculty) (STV 1.0 0.9091)) +(: cnet_isa_f3f67fbf57 (IsA volkswagen car) (STV 1.0 0.9339)) +(: cnet_isa_4561fc15e6 (IsA volley return) (STV 1.0 0.9091)) +(: cnet_isa_8067e8f38c (IsA volleyball sport) (STV 1.0 0.9091)) +(: cnet_isa_1a0a8420ed (IsA volleyball court_game) (STV 1.0 0.9091)) +(: cnet_isa_377b1618de (IsA volleyball ball) (STV 1.0 0.9091)) +(: cnet_isa_fa117fb24a (IsA volleyball_court court) (STV 1.0 0.9091)) +(: cnet_isa_6b5ed14791 (IsA volleyball_net net) (STV 1.0 0.9091)) +(: cnet_isa_4363fba827 (IsA volleyball_player player) (STV 1.0 0.9091)) +(: cnet_isa_cc677db7b8 (IsA volt potential_unit) (STV 1.0 0.9091)) +(: cnet_isa_536b171f53 (IsA volt_ampere power_unit) (STV 1.0 0.9091)) +(: cnet_isa_ce08b7dc42 (IsA voltage electrical_pressure) (STV 1.0 0.9091)) +(: cnet_isa_39a19fcb06 (IsA voltage measure_of_electricity) (STV 1.0 0.9339)) +(: cnet_isa_514b735fc5 (IsA voltage electrical_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_3d71287f47 (IsA voltage_drop drop) (STV 1.0 0.9091)) +(: cnet_isa_d690dba247 (IsA voltage_regulator transformer) (STV 1.0 0.9091)) +(: cnet_isa_68d63f040b (IsA voltaic_battery battery) (STV 1.0 0.9091)) +(: cnet_isa_7e620f8f35 (IsA voltaic_cell cell) (STV 1.0 0.9091)) +(: cnet_isa_92845279c2 (IsA voltaic_pile battery) (STV 1.0 0.9091)) +(: cnet_isa_da23404563 (IsA voltmeter meter) (STV 1.0 0.9091)) +(: cnet_isa_8a94405925 (IsA volume sound_property) (STV 1.0 0.9091)) +(: cnet_isa_a58f2f6c6b (IsA volume publication) (STV 1.0 0.9091)) +(: cnet_isa_52b6fb02db (IsA volume measure) (STV 1.0 0.9091)) +(: cnet_isa_ba86082eb9 (IsA volume_unit unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_aea61f7c15 (IsA volumeter meter) (STV 1.0 0.9091)) +(: cnet_isa_abbebbab21 (IsA volumetric_analysis quantitative_analysis) (STV 1.0 0.9091)) +(: cnet_isa_1d05abbcd8 (IsA voluntary solo) (STV 1.0 0.9091)) +(: cnet_isa_571ddb89e3 (IsA voluntary_muscle skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_isa_0f44d3700b (IsA volunteer serviceman) (STV 1.0 0.9091)) +(: cnet_isa_2e871fe6c5 (IsA volunteer american) (STV 1.0 0.9091)) +(: cnet_isa_4bf18c4003 (IsA volunteer worker) (STV 1.0 0.9091)) +(: cnet_isa_0842ea02f5 (IsA voluptuary sensualist) (STV 1.0 0.9091)) +(: cnet_isa_ad801f55f0 (IsA volution turning) (STV 1.0 0.9091)) +(: cnet_isa_ba81201689 (IsA volva plant_part) (STV 1.0 0.9091)) +(: cnet_isa_2253f39eb9 (IsA volvaria fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_850c5ff1b0 (IsA volvaria_bombycina fungus) (STV 1.0 0.9091)) +(: cnet_isa_af3b87d8fc (IsA volvariaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_eff2cf1bd0 (IsA volvariella fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_f6b4091ba3 (IsA volvariella_bombycina agaric) (STV 1.0 0.9091)) +(: cnet_isa_1c25a584d7 (IsA volvo car) (STV 1.0 0.9572)) +(: cnet_isa_2fb1da4519 (IsA volvocaceae protoctist_family) (STV 1.0 0.9091)) +(: cnet_isa_e3b9aab9b6 (IsA volvocale protoctist_order) (STV 1.0 0.9091)) +(: cnet_isa_25617beaff (IsA volvox protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_cc6e44f923 (IsA volvulus pathology) (STV 1.0 0.9091)) +(: cnet_isa_d46728c811 (IsA vombatidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_3d8543b958 (IsA vomer bone) (STV 1.0 0.9091)) +(: cnet_isa_e89d5fda45 (IsA vomit expulsion) (STV 1.0 0.9091)) +(: cnet_isa_f934d96d4b (IsA vomit reflex) (STV 1.0 0.9091)) +(: cnet_isa_52f854ed53 (IsA vomit body_waste) (STV 1.0 0.9091)) +(: cnet_isa_79f0c3da91 (IsA vomiter sick_person) (STV 1.0 0.9091)) +(: cnet_isa_7aafa0b37d (IsA vomitory entrance) (STV 1.0 0.9091)) +(: cnet_isa_a69edbf9d0 (IsA von_neumann_machine digital_computer) (STV 1.0 0.9091)) +(: cnet_isa_c9ea28ec97 (IsA von_willebrand_s_disease hemophilia) (STV 1.0 0.9091)) +(: cnet_isa_09b2c2fc3f (IsA voodoo cult) (STV 1.0 0.9091)) +(: cnet_isa_dadd2de438 (IsA vortex_vein vein) (STV 1.0 0.9091)) +(: cnet_isa_85173a5173 (IsA vorticella ciliate) (STV 1.0 0.9091)) +(: cnet_isa_a349f41605 (IsA votary disciple) (STV 1.0 0.9091)) +(: cnet_isa_36de86862e (IsA votary priest) (STV 1.0 0.9091)) +(: cnet_isa_9f4e199dee (IsA votary religious) (STV 1.0 0.9091)) +(: cnet_isa_01b2c24c53 (IsA vote choice) (STV 1.0 0.9091)) +(: cnet_isa_7845b0525e (IsA vote group_action) (STV 1.0 0.9091)) +(: cnet_isa_6feaa7a636 (IsA vote numerical_quantity) (STV 1.0 0.9091)) +(: cnet_isa_76346d151f (IsA vote body) (STV 1.0 0.9091)) +(: cnet_isa_814d864f08 (IsA vote_of_confidence encouragement) (STV 1.0 0.9091)) +(: cnet_isa_487a176b56 (IsA voter citizen) (STV 1.0 0.9091)) +(: cnet_isa_d299c47da4 (IsA voting_age age) (STV 1.0 0.9091)) +(: cnet_isa_07599a4ef7 (IsA voting_booth booth) (STV 1.0 0.9091)) +(: cnet_isa_d6fc2f85d4 (IsA voting_machine mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_cfe1a76f7f (IsA voting_precinct precinct) (STV 1.0 0.9091)) +(: cnet_isa_b7b14cd39b (IsA voting_record_of_politician matter_of_public_interest) (STV 1.0 0.9454)) +(: cnet_isa_0df232ac68 (IsA voting_right right) (STV 1.0 0.9091)) +(: cnet_isa_734ec80891 (IsA voting_stock stock) (STV 1.0 0.9091)) +(: cnet_isa_8f49b53a9f (IsA voting_system legal_system) (STV 1.0 0.9091)) +(: cnet_isa_c9bf82d2af (IsA voting_trust trust) (STV 1.0 0.9091)) +(: cnet_isa_cb98222b2c (IsA votyak russian) (STV 1.0 0.9091)) +(: cnet_isa_0b3ab8e059 (IsA vouchee party) (STV 1.0 0.9091)) +(: cnet_isa_018be55af6 (IsA voucher document) (STV 1.0 0.9091)) +(: cnet_isa_bf279a8796 (IsA voucher supporter) (STV 1.0 0.9091)) +(: cnet_isa_63fd57a6f1 (IsA vouge pike) (STV 1.0 0.9091)) +(: cnet_isa_1cd29023fd (IsA voussoir building_block) (STV 1.0 0.9091)) +(: cnet_isa_c73baf4d21 (IsA vouvray white_wine) (STV 1.0 0.9091)) +(: cnet_isa_14b33f8ce0 (IsA vow assurance) (STV 1.0 0.9091)) +(: cnet_isa_8c39f98322 (IsA vowel letter) (STV 1.0 0.9091)) +(: cnet_isa_a2f94d5ea4 (IsA vowel phone) (STV 1.0 0.9091)) +(: cnet_isa_e7404f5604 (IsA vowel_point vowel) (STV 1.0 0.9091)) +(: cnet_isa_71ecb8e695 (IsA vowel_system phonemic_system) (STV 1.0 0.9091)) +(: cnet_isa_8b88e4a659 (IsA vower promiser) (STV 1.0 0.9091)) +(: cnet_isa_bd0cd5dd14 (IsA vox_angelica organ_stop) (STV 1.0 0.9091)) +(: cnet_isa_3704a779cf (IsA vox_humana reed_stop) (STV 1.0 0.9091)) +(: cnet_isa_97d702b0bd (IsA voyage journey) (STV 1.0 0.9091)) +(: cnet_isa_4df3723d27 (IsA voyager traveler) (STV 1.0 0.9091)) +(: cnet_isa_0c18a36f6d (IsA voyeur spectator) (STV 1.0 0.9091)) +(: cnet_isa_775664f982 (IsA voyeurism paraphilia) (STV 1.0 0.9091)) +(: cnet_isa_717ad123da (IsA vroom sound) (STV 1.0 0.9091)) +(: cnet_isa_a6234561fb (IsA vulcanization processing) (STV 1.0 0.9091)) +(: cnet_isa_f24b135df2 (IsA vulcanizer skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_b5d36681e9 (IsA vulgar_latin low_latin) (STV 1.0 0.9091)) +(: cnet_isa_34d20f1f64 (IsA vulgarian unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_705d600414 (IsA vulgarization degradation) (STV 1.0 0.9091)) +(: cnet_isa_a40c5445ca (IsA vulgarizer debaser) (STV 1.0 0.9091)) +(: cnet_isa_ce29a752f7 (IsA vulnerability weakness) (STV 1.0 0.9091)) +(: cnet_isa_ce9688e235 (IsA vulnerability danger) (STV 1.0 0.9091)) +(: cnet_isa_49403088b3 (IsA vulpe mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_74e72272aa (IsA vultur bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_eed14d56c9 (IsA vulture bird) (STV 1.0 0.9091)) +(: cnet_isa_d07eebf9d0 (IsA vulture bird_of_prey) (STV 1.0 0.9091)) +(: cnet_isa_69c7d51372 (IsA vulva female_genitalia) (STV 1.0 0.9091)) +(: cnet_isa_a638943a54 (IsA vulvectomy ablation) (STV 1.0 0.9091)) +(: cnet_isa_db72262a01 (IsA vulvitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_861da08104 (IsA vulvovaginitis inflammation) (STV 1.0 0.9091)) +(: cnet_isa_b4a99daefd (IsA vx_gas nerve_gas) (STV 1.0 0.9091)) +(: cnet_isa_34d6966d43 (IsA w letter) (STV 1.0 0.9091)) +(: cnet_isa_4e5af34bb5 (IsA wac soldier) (STV 1.0 0.9091)) +(: cnet_isa_5e586072e3 (IsA wac woman) (STV 1.0 0.9091)) +(: cnet_isa_819840781c (IsA wad material) (STV 1.0 0.9091)) +(: cnet_isa_eb9720c655 (IsA waddle gait) (STV 1.0 0.9091)) +(: cnet_isa_92a3dd3c93 (IsA waddler pedestrian) (STV 1.0 0.9091)) +(: cnet_isa_014dea9c02 (IsA wader hip_boot) (STV 1.0 0.9091)) +(: cnet_isa_4597544e12 (IsA wadi gully) (STV 1.0 0.9091)) +(: cnet_isa_456c77390f (IsA wading walk) (STV 1.0 0.9091)) +(: cnet_isa_08ebb200a4 (IsA wading_bird aquatic_bird) (STV 1.0 0.9091)) +(: cnet_isa_f1025cd2c1 (IsA wading_pool pool) (STV 1.0 0.9091)) +(: cnet_isa_3900cd259c (IsA wafer bread) (STV 1.0 0.9091)) +(: cnet_isa_b6417a43ad (IsA wafer cookie) (STV 1.0 0.9091)) +(: cnet_isa_d1c785bff9 (IsA wafer paste) (STV 1.0 0.9091)) +(: cnet_isa_0abed7d50b (IsA waffle cake) (STV 1.0 0.9091)) +(: cnet_isa_25420ee800 (IsA waffle_iron kitchen_appliance) (STV 1.0 0.9091)) +(: cnet_isa_904c9d7fca (IsA waffler communicator) (STV 1.0 0.9091)) +(: cnet_isa_cefcd8f164 (IsA wag agitation) (STV 1.0 0.9091)) +(: cnet_isa_02b7a569e8 (IsA wag humorist) (STV 1.0 0.9091)) +(: cnet_isa_32bfed7462 (IsA wage regular_payment) (STV 1.0 0.9091)) +(: cnet_isa_2add29e71b (IsA wage_claim demand) (STV 1.0 0.9091)) +(: cnet_isa_7d14efc718 (IsA wage_concession concession) (STV 1.0 0.9091)) +(: cnet_isa_f7f21c861c (IsA wage_floor floor) (STV 1.0 0.9091)) +(: cnet_isa_3e9cc0a83c (IsA wage_freeze freeze) (STV 1.0 0.9091)) +(: cnet_isa_be9903bafc (IsA wage_scale scale) (STV 1.0 0.9091)) +(: cnet_isa_d224451fa3 (IsA wage_setter economic_condition) (STV 1.0 0.9091)) +(: cnet_isa_5d4dd036c7 (IsA wage consequence) (STV 1.0 0.9091)) +(: cnet_isa_d928a0351e (IsA waggery fun) (STV 1.0 0.9091)) +(: cnet_isa_4133a24b89 (IsA wagner music) (STV 1.0 0.9091)) +(: cnet_isa_572177c508 (IsA wagnerian follower) (STV 1.0 0.9091)) +(: cnet_isa_08e1964a2f (IsA wagon wheeled_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_216135f5ba (IsA wagon_tire tire) (STV 1.0 0.9091)) +(: cnet_isa_99af78bb40 (IsA wagon_wheel wheel) (STV 1.0 0.9091)) +(: cnet_isa_6fe03e3112 (IsA wagoner driver) (STV 1.0 0.9091)) +(: cnet_isa_8d194b7085 (IsA wagonwright wright) (STV 1.0 0.9091)) +(: cnet_isa_c23fbb013d (IsA wagtail oscine) (STV 1.0 0.9091)) +(: cnet_isa_d6c7d4a970 (IsA wahabi moslem) (STV 1.0 0.9091)) +(: cnet_isa_c5783663df (IsA wahabism radical_form_of_islam) (STV 1.0 0.9091)) +(: cnet_isa_a95dd9af05 (IsA wahhabism islam) (STV 1.0 0.9091)) +(: cnet_isa_d23abcc504 (IsA wahoo mackerel) (STV 1.0 0.9091)) +(: cnet_isa_6a74ca3608 (IsA wahoo shrub) (STV 1.0 0.9091)) +(: cnet_isa_4d2d7af671 (IsA waif child) (STV 1.0 0.9091)) +(: cnet_isa_0c04b4b107 (IsA wailer mourner) (STV 1.0 0.9091)) +(: cnet_isa_fc3d9e07b2 (IsA wailer speaker) (STV 1.0 0.9091)) +(: cnet_isa_75f9c45685 (IsA wailing crying) (STV 1.0 0.9091)) +(: cnet_isa_73f32c1bb1 (IsA wain wagon) (STV 1.0 0.9091)) +(: cnet_isa_fd5fa5c219 (IsA wainscot panel) (STV 1.0 0.9091)) +(: cnet_isa_aab114a22e (IsA wainscoting wall) (STV 1.0 0.9091)) +(: cnet_isa_62c0308a2f (IsA waist area) (STV 1.0 0.9091)) +(: cnet_isa_c4a9dd0a86 (IsA waist_pack pouch) (STV 1.0 0.9091)) +(: cnet_isa_757fb8bd18 (IsA wait inactivity) (STV 1.0 0.9091)) +(: cnet_isa_138b8a8a3e (IsA waiter dining_room_attendant) (STV 1.0 0.9091)) +(: cnet_isa_4665c0edd6 (IsA waiter person) (STV 1.0 0.9091)) +(: cnet_isa_f09d718d01 (IsA waiting_game scheme) (STV 1.0 0.9091)) +(: cnet_isa_f8e7d3793a (IsA waiting_list roll) (STV 1.0 0.9091)) +(: cnet_isa_65f76dbe0c (IsA waitress waiter) (STV 1.0 0.9091)) +(: cnet_isa_32ef50910b (IsA wakashan mosan) (STV 1.0 0.9091)) +(: cnet_isa_5e67e4004f (IsA wakashan native_american) (STV 1.0 0.9091)) +(: cnet_isa_062877cdef (IsA wake vigil) (STV 1.0 0.9091)) +(: cnet_isa_167fe3918b (IsA wake wave) (STV 1.0 0.9091)) +(: cnet_isa_a3c01be3f4 (IsA wake_board board) (STV 1.0 0.9091)) +(: cnet_isa_65e9256995 (IsA wake_up_call call) (STV 1.0 0.9091)) +(: cnet_isa_b4ca813b5e (IsA wake_up_call warning) (STV 1.0 0.9091)) +(: cnet_isa_3b44b1cff4 (IsA wakefulness physiological_state) (STV 1.0 0.9091)) +(: cnet_isa_d6cd1543d5 (IsA wakefulness waking) (STV 1.0 0.9091)) +(: cnet_isa_917cd7f8ba (IsA wakefulness temporary_state) (STV 1.0 0.9091)) +(: cnet_isa_996a715971 (IsA waker attendant) (STV 1.0 0.9091)) +(: cnet_isa_274425b366 (IsA waker person) (STV 1.0 0.9091)) +(: cnet_isa_212a8b74f4 (IsA waking consciousness) (STV 1.0 0.9091)) +(: cnet_isa_e6bd458026 (IsA walapai yuman) (STV 1.0 0.9091)) +(: cnet_isa_35c38b156c (IsA walbiri australian) (STV 1.0 0.9091)) +(: cnet_isa_39812d09fd (IsA waldens sect) (STV 1.0 0.9091)) +(: cnet_isa_6e02c025bf (IsA waldorf_salad fruit_salad) (STV 1.0 0.9091)) +(: cnet_isa_19812e357f (IsA wale board) (STV 1.0 0.9091)) +(: cnet_isa_7389e342c5 (IsA wale injury) (STV 1.0 0.9091)) +(: cnet_isa_04c9f6ccd5 (IsA walk gait) (STV 1.0 0.9091)) +(: cnet_isa_dafce14bdc (IsA walk locomotion) (STV 1.0 0.9091)) +(: cnet_isa_c0eddc2894 (IsA walk travel) (STV 1.0 0.9091)) +(: cnet_isa_052302c623 (IsA walk path) (STV 1.0 0.9091)) +(: cnet_isa_be8fac6c51 (IsA walk carriage) (STV 1.0 0.9091)) +(: cnet_isa_9a52f04d30 (IsA walk_in room) (STV 1.0 0.9091)) +(: cnet_isa_ff48d570f3 (IsA walk_in victory) (STV 1.0 0.9091)) +(: cnet_isa_4e3e4dab31 (IsA walk_in deserter) (STV 1.0 0.9091)) +(: cnet_isa_5af0e72cf6 (IsA walk_in person) (STV 1.0 0.9091)) +(: cnet_isa_798efca5dd (IsA walk_in secret_agent) (STV 1.0 0.9091)) +(: cnet_isa_09f9836092 (IsA walk_of_life career) (STV 1.0 0.9091)) +(: cnet_isa_406f6ea9b3 (IsA walk_on actor) (STV 1.0 0.9091)) +(: cnet_isa_dd4bc21c23 (IsA walk_through rehearsal) (STV 1.0 0.9091)) +(: cnet_isa_bcf7d1bf78 (IsA walk_through walk) (STV 1.0 0.9091)) +(: cnet_isa_29730a44f8 (IsA walk_through passageway) (STV 1.0 0.9091)) +(: cnet_isa_afc6bd4977 (IsA walk_through explanation) (STV 1.0 0.9091)) +(: cnet_isa_6c0f93b4eb (IsA walk_up apartment_building) (STV 1.0 0.9091)) +(: cnet_isa_8516d29c3d (IsA walk_up_apartment apartment) (STV 1.0 0.9091)) +(: cnet_isa_d3c0e4b408 (IsA walkabout amble) (STV 1.0 0.9091)) +(: cnet_isa_a6ab548f89 (IsA walkabout tour) (STV 1.0 0.9091)) +(: cnet_isa_e5ca40150c (IsA walkabout walk) (STV 1.0 0.9091)) +(: cnet_isa_f02196b93f (IsA walker who_walk) (STV 1.0 0.9091)) +(: cnet_isa_c342f76062 (IsA walker framework) (STV 1.0 0.9091)) +(: cnet_isa_56b8ccda53 (IsA walker shoe) (STV 1.0 0.9091)) +(: cnet_isa_747829d361 (IsA walker_hound foxhound) (STV 1.0 0.9091)) +(: cnet_isa_a5dee0c8d2 (IsA walkie_talkie radio_link) (STV 1.0 0.9091)) +(: cnet_isa_605c4a1b99 (IsA walking aerobic_activity) (STV 1.0 0.9091)) +(: cnet_isa_0113555bdd (IsA walking exercise) (STV 1.0 0.9572)) +(: cnet_isa_c4463f26e1 (IsA walking form_of_exercise) (STV 1.0 0.9454)) +(: cnet_isa_db73243ccb (IsA walking good_exercise) (STV 1.0 0.9339)) +(: cnet_isa_d963fa060a (IsA walking_delegate union_representative) (STV 1.0 0.9091)) +(: cnet_isa_e6e7a51f39 (IsA walking_fern spleenwort) (STV 1.0 0.9091)) +(: cnet_isa_b6b49c75c0 (IsA walking_leaf phasmid) (STV 1.0 0.9091)) +(: cnet_isa_934285e3b7 (IsA walking_paper dismissal) (STV 1.0 0.9091)) +(: cnet_isa_783299d544 (IsA walking_shoe shoe) (STV 1.0 0.9091)) +(: cnet_isa_5270fc4ce8 (IsA walking_stick phasmid) (STV 1.0 0.9091)) +(: cnet_isa_86da50371d (IsA walking_stick stick) (STV 1.0 0.9091)) +(: cnet_isa_f8c7ca3f52 (IsA walkout protest) (STV 1.0 0.9091)) +(: cnet_isa_0eae7af13d (IsA walkout strike) (STV 1.0 0.9091)) +(: cnet_isa_21d45dd354 (IsA walkover acrobatic_stunt) (STV 1.0 0.9091)) +(: cnet_isa_3d56c9acd6 (IsA wall part_of_building) (STV 1.0 0.9091)) +(: cnet_isa_1e1e1e97b2 (IsA wall stratum) (STV 1.0 0.9091)) +(: cnet_isa_42a3ddb0f3 (IsA wall fence) (STV 1.0 0.9091)) +(: cnet_isa_5fa004bcd7 (IsA wall layer) (STV 1.0 0.9091)) +(: cnet_isa_c39402fadb (IsA wall partition) (STV 1.0 0.9091)) +(: cnet_isa_71fea71822 (IsA wall geological_formation) (STV 1.0 0.9091)) +(: cnet_isa_65717fed68 (IsA wall object) (STV 1.0 0.9091)) +(: cnet_isa_5f9c05c798 (IsA wall difficulty) (STV 1.0 0.9091)) +(: cnet_isa_739e56ff59 (IsA wall_clock clock) (STV 1.0 0.9091)) +(: cnet_isa_e7ae21bf76 (IsA wall_creeper creeper) (STV 1.0 0.9091)) +(: cnet_isa_455604ebf4 (IsA wall_germander germander) (STV 1.0 0.9091)) +(: cnet_isa_4f34227044 (IsA wall_panel paneling) (STV 1.0 0.9091)) +(: cnet_isa_2eb85099b8 (IsA wall_pepper stonecrop) (STV 1.0 0.9091)) +(: cnet_isa_92c0a6cb38 (IsA wall_plate plate) (STV 1.0 0.9091)) +(: cnet_isa_da2097a34a (IsA wall_rock rock) (STV 1.0 0.9091)) +(: cnet_isa_fc62d99def (IsA wall_rocket herb) (STV 1.0 0.9091)) +(: cnet_isa_64eb81ce28 (IsA wall_rue spleenwort) (STV 1.0 0.9091)) +(: cnet_isa_1d84210caa (IsA wall_socket receptacle) (STV 1.0 0.9091)) +(: cnet_isa_bbc3baa0db (IsA wall_street market) (STV 1.0 0.9091)) +(: cnet_isa_4aadf6d715 (IsA wall_tent canva_tent) (STV 1.0 0.9091)) +(: cnet_isa_2b9b85eac5 (IsA wall_unit furniture) (STV 1.0 0.9091)) +(: cnet_isa_69ee6f5e39 (IsA wallaby kangaroo) (STV 1.0 0.9091)) +(: cnet_isa_f721504923 (IsA wallah worker) (STV 1.0 0.9091)) +(: cnet_isa_4b5bd013cc (IsA wallboard board) (STV 1.0 0.9091)) +(: cnet_isa_a8d7e59923 (IsA wallet case) (STV 1.0 0.9091)) +(: cnet_isa_1c7e64e97b (IsA walleye pike_perch) (STV 1.0 0.9091)) +(: cnet_isa_87018074b4 (IsA walleye strabismus) (STV 1.0 0.9091)) +(: cnet_isa_f141d0ff8d (IsA wallflower shy_person) (STV 1.0 0.9091)) +(: cnet_isa_7416f64cc9 (IsA wallflower flower) (STV 1.0 0.9091)) +(: cnet_isa_34f6619f76 (IsA walloon french) (STV 1.0 0.9091)) +(: cnet_isa_ef22ace7eb (IsA walloon belgian) (STV 1.0 0.9091)) +(: cnet_isa_5640e1bbcb (IsA walloon ethnic_group) (STV 1.0 0.9091)) +(: cnet_isa_59d72101c7 (IsA wallop blow) (STV 1.0 0.9091)) +(: cnet_isa_1bec5f641b (IsA walloper hitter) (STV 1.0 0.9091)) +(: cnet_isa_32ab68340c (IsA walloper winner) (STV 1.0 0.9091)) +(: cnet_isa_cade14efcb (IsA wallow axial_rotation) (STV 1.0 0.9091)) +(: cnet_isa_36ff6ccae6 (IsA wallow mud_puddle) (STV 1.0 0.9091)) +(: cnet_isa_93ef4c1b0e (IsA wallpaper paper) (STV 1.0 0.9091)) +(: cnet_isa_8b47320b8c (IsA wallpaperer skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_07e67193af (IsA wally fool) (STV 1.0 0.9091)) +(: cnet_isa_3b9aaee3d1 (IsA walnut specy) (STV 1.0 0.9091)) +(: cnet_isa_e31d6bd515 (IsA walnut edible_nut) (STV 1.0 0.9091)) +(: cnet_isa_5558935418 (IsA walnut nut_tree) (STV 1.0 0.9091)) +(: cnet_isa_6bc4af86f0 (IsA walnut wood) (STV 1.0 0.9091)) +(: cnet_isa_86960bd2d1 (IsA walnut_blight blight) (STV 1.0 0.9091)) +(: cnet_isa_88f5d0fda9 (IsA walnut_oil vegetable_oil) (STV 1.0 0.9091)) +(: cnet_isa_f734cb4ae6 (IsA walpurgis_night day) (STV 1.0 0.9091)) +(: cnet_isa_74db3c4a57 (IsA walrus pinniped_mammal) (STV 1.0 0.9091)) +(: cnet_isa_528d1f3345 (IsA walrus_mustache mustache) (STV 1.0 0.9091)) +(: cnet_isa_c6973181fe (IsA walter_cronkite broadcast_journalist) (STV 1.0 0.9091)) +(: cnet_isa_515f239335 (IsA waltz ballroom_dancing) (STV 1.0 0.9091)) +(: cnet_isa_7f0570bb9f (IsA waltz dance_music) (STV 1.0 0.9091)) +(: cnet_isa_9f68a7e0c1 (IsA waltzer dancer) (STV 1.0 0.9091)) +(: cnet_isa_dd1a163a49 (IsA wampanoag algonquin) (STV 1.0 0.9091)) +(: cnet_isa_8e9b50c210 (IsA wampum bead) (STV 1.0 0.9091)) +(: cnet_isa_a2e4d626e0 (IsA wand rod) (STV 1.0 0.9091)) +(: cnet_isa_ce0a21ed98 (IsA wand branchlet) (STV 1.0 0.9091)) +(: cnet_isa_b2a7d5487c (IsA wanderer traveler) (STV 1.0 0.9091)) +(: cnet_isa_74e510b022 (IsA wandering travel) (STV 1.0 0.9091)) +(: cnet_isa_84896d40aa (IsA wandering_albatross albatross) (STV 1.0 0.9091)) +(: cnet_isa_0d590eb803 (IsA wandering_jew israelite) (STV 1.0 0.9091)) +(: cnet_isa_e130a464e2 (IsA wanderlust urge) (STV 1.0 0.9091)) +(: cnet_isa_b6c19c3018 (IsA wandflower flower) (STV 1.0 0.9091)) +(: cnet_isa_b64e99dfc9 (IsA wangle contrivance) (STV 1.0 0.9091)) +(: cnet_isa_73d8511469 (IsA waning decrease) (STV 1.0 0.9091)) +(: cnet_isa_e5f1352af6 (IsA wankel_engine rotary_engine) (STV 1.0 0.9091)) +(: cnet_isa_30261ea9f1 (IsA want_ad classified_ad) (STV 1.0 0.9091)) +(: cnet_isa_448748bf81 (IsA wanted_notice announcement) (STV 1.0 0.9091)) +(: cnet_isa_42f30da5f9 (IsA wanter person) (STV 1.0 0.9091)) +(: cnet_isa_0e19a5e807 (IsA wanton sensualist) (STV 1.0 0.9091)) +(: cnet_isa_466cc85809 (IsA wapiti deer) (STV 1.0 0.9091)) +(: cnet_isa_9fbb820f36 (IsA war bad_thing) (STV 1.0 0.9524)) +(: cnet_isa_5a4c644815 (IsA war common_event) (STV 1.0 0.9339)) +(: cnet_isa_491ba05742 (IsA war hell) (STV 1.0 0.9608)) +(: cnet_isa_e230a0c932 (IsA war campaign) (STV 1.0 0.9091)) +(: cnet_isa_e1602db1d0 (IsA war conflict) (STV 1.0 0.9091)) +(: cnet_isa_86f71e8f90 (IsA war military_action) (STV 1.0 0.9091)) +(: cnet_isa_b81848a53a (IsA war hostility) (STV 1.0 0.9091)) +(: cnet_isa_6a971eb1ad (IsA war_and_violence bad_thing) (STV 1.0 0.9091)) +(: cnet_isa_a2e1a6fbc4 (IsA war_baby baby) (STV 1.0 0.9091)) +(: cnet_isa_88826ed29a (IsA war_bride bride) (STV 1.0 0.9091)) +(: cnet_isa_be901ed6e7 (IsA war_chest fund) (STV 1.0 0.9091)) +(: cnet_isa_18350800be (IsA war_cloud augury) (STV 1.0 0.9091)) +(: cnet_isa_fcab043873 (IsA war_correspondent correspondent) (STV 1.0 0.9091)) +(: cnet_isa_3a70f9dd49 (IsA war_crime crime) (STV 1.0 0.9091)) +(: cnet_isa_a9acba1a1d (IsA war_criminal wrongdoer) (STV 1.0 0.9091)) +(: cnet_isa_3411b8837c (IsA war_cry cry) (STV 1.0 0.9091)) +(: cnet_isa_b23e9a4885 (IsA war_cry motto) (STV 1.0 0.9091)) +(: cnet_isa_f044d1ff69 (IsA war_dance ritual_dancing) (STV 1.0 0.9091)) +(: cnet_isa_6b1a4f4cc9 (IsA war_department executive_department) (STV 1.0 0.9091)) +(: cnet_isa_fc2876983f (IsA war_game simulation) (STV 1.0 0.9091)) +(: cnet_isa_da30fca807 (IsA war_god deity) (STV 1.0 0.9091)) +(: cnet_isa_d976d99a26 (IsA war_paint adornment) (STV 1.0 0.9091)) +(: cnet_isa_bccb3b8b7b (IsA war_paint array) (STV 1.0 0.9091)) +(: cnet_isa_1f4fde67a6 (IsA war_party party) (STV 1.0 0.9091)) +(: cnet_isa_44c0f29e6a (IsA war_power office) (STV 1.0 0.9091)) +(: cnet_isa_d42e52e45b (IsA war_room room) (STV 1.0 0.9091)) +(: cnet_isa_7236745070 (IsA war_widow widow) (STV 1.0 0.9091)) +(: cnet_isa_6c2e758a07 (IsA war_zone place) (STV 1.0 0.9091)) +(: cnet_isa_13c40ee8e4 (IsA war_zone combat_zone) (STV 1.0 0.9091)) +(: cnet_isa_bdbce591d8 (IsA waratah shrub) (STV 1.0 0.9091)) +(: cnet_isa_7e9add994d (IsA warble animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_0322984e20 (IsA warble_fly gadfly) (STV 1.0 0.9091)) +(: cnet_isa_ef2e66100a (IsA warbler oscine) (STV 1.0 0.9091)) +(: cnet_isa_93177a28f9 (IsA warbler singer) (STV 1.0 0.9091)) +(: cnet_isa_dbad63befd (IsA ward block) (STV 1.0 0.9091)) +(: cnet_isa_69221804eb (IsA ward administrative_district) (STV 1.0 0.9091)) +(: cnet_isa_6213ff3bcf (IsA ward person) (STV 1.0 0.9091)) +(: cnet_isa_219e01bf9b (IsA warden lawman) (STV 1.0 0.9091)) +(: cnet_isa_defcd303c6 (IsA wardenship position) (STV 1.0 0.9091)) +(: cnet_isa_b6fa74d87c (IsA wardership position) (STV 1.0 0.9091)) +(: cnet_isa_044c125bbb (IsA wardress warden) (STV 1.0 0.9091)) +(: cnet_isa_a417be5b3d (IsA wardrobe collection_of_clothe) (STV 1.0 0.9091)) +(: cnet_isa_85b5a36c64 (IsA wardrobe collection_of_clothing) (STV 1.0 0.9091)) +(: cnet_isa_2653681c09 (IsA wardrobe container_for_clothe) (STV 1.0 0.9091)) +(: cnet_isa_76a438f445 (IsA wardrobe collection) (STV 1.0 0.9091)) +(: cnet_isa_d24a1a44c0 (IsA wardrobe furniture) (STV 1.0 0.9091)) +(: cnet_isa_b4b4b42a12 (IsA wardroom military_quarter) (STV 1.0 0.9091)) +(: cnet_isa_f39e0a79ef (IsA ware article) (STV 1.0 0.9091)) +(: cnet_isa_50e06ab87a (IsA warehouse storehouse) (STV 1.0 0.9091)) +(: cnet_isa_9d74798378 (IsA warehouseman_s_lien lien) (STV 1.0 0.9091)) +(: cnet_isa_9358afef23 (IsA warehouser workman) (STV 1.0 0.9091)) +(: cnet_isa_bf162ece63 (IsA warhead explosive) (STV 1.0 0.9091)) +(: cnet_isa_310c7bea45 (IsA warhorse saddle_horse) (STV 1.0 0.9091)) +(: cnet_isa_c6d1f83318 (IsA warhorse work_of_art) (STV 1.0 0.9091)) +(: cnet_isa_a7805dbe86 (IsA wariness circumspection) (STV 1.0 0.9091)) +(: cnet_isa_1b055e1e3a (IsA warji west_chadic) (STV 1.0 0.9091)) +(: cnet_isa_56b51320c5 (IsA warlock witch) (STV 1.0 0.9091)) +(: cnet_isa_40e19d4518 (IsA warlord military_leader) (STV 1.0 0.9091)) +(: cnet_isa_a646c644cf (IsA warm_front front) (STV 1.0 0.9091)) +(: cnet_isa_03404d459e (IsA warm_up preparation) (STV 1.0 0.9454)) +(: cnet_isa_d3bc7ba06f (IsA warmheartedness lovingness) (STV 1.0 0.9091)) +(: cnet_isa_e76b5cebe9 (IsA warming_pan pan) (STV 1.0 0.9091)) +(: cnet_isa_0f86a4e002 (IsA warmongering hawkishness) (STV 1.0 0.9091)) +(: cnet_isa_c69b0646dc (IsA warmth hotness) (STV 1.0 0.9091)) +(: cnet_isa_35d0f7462d (IsA warner communicator) (STV 1.0 0.9091)) +(: cnet_isa_d68a155fae (IsA warning informing) (STV 1.0 0.9091)) +(: cnet_isa_eba7e0a903 (IsA warning telling) (STV 1.0 0.9091)) +(: cnet_isa_ac16ecf4ff (IsA warning_of_attack tactical_warning) (STV 1.0 0.9091)) +(: cnet_isa_c2e06951e4 (IsA warning_of_war strategic_warning) (STV 1.0 0.9091)) +(: cnet_isa_1aef64e8d6 (IsA warp thread) (STV 1.0 0.9091)) +(: cnet_isa_9fee637b74 (IsA warp distortion) (STV 1.0 0.9091)) +(: cnet_isa_d71044a275 (IsA warp distorted_shape) (STV 1.0 0.9091)) +(: cnet_isa_201874d450 (IsA warpath way) (STV 1.0 0.9091)) +(: cnet_isa_17eca590fc (IsA warpath belligerence) (STV 1.0 0.9091)) +(: cnet_isa_c877eaaf17 (IsA warplane heavier_than_air_craft) (STV 1.0 0.9091)) +(: cnet_isa_dccd5a87e5 (IsA warplane military_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_30aa69a10b (IsA warrant writ) (STV 1.0 0.9091)) +(: cnet_isa_036b0da3e3 (IsA warrant security) (STV 1.0 0.9091)) +(: cnet_isa_9e4315fe19 (IsA warrant_officer military_officer) (STV 1.0 0.9091)) +(: cnet_isa_df18dc035b (IsA warrantee customer) (STV 1.0 0.9091)) +(: cnet_isa_cbb08fbc80 (IsA warrantee recipient) (STV 1.0 0.9091)) +(: cnet_isa_2118f8c127 (IsA warren animal_group) (STV 1.0 0.9091)) +(: cnet_isa_d9b55cbd6c (IsA warren residential_district) (STV 1.0 0.9091)) +(: cnet_isa_e3cf15a95d (IsA warren burrow) (STV 1.0 0.9091)) +(: cnet_isa_17aba35cee (IsA warrener gamekeeper) (STV 1.0 0.9091)) +(: cnet_isa_9cd5b146ba (IsA warrigal wild_horse) (STV 1.0 0.9091)) +(: cnet_isa_43cd995c38 (IsA warrior person) (STV 1.0 0.9091)) +(: cnet_isa_3fb6f20ef4 (IsA warship military_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_d214d8caf4 (IsA warship ship) (STV 1.0 0.9091)) +(: cnet_isa_7f732a732c (IsA wart bulge) (STV 1.0 0.9091)) +(: cnet_isa_34a39bffe1 (IsA wart blemish) (STV 1.0 0.9091)) +(: cnet_isa_ea686606f3 (IsA wart keratosis) (STV 1.0 0.9091)) +(: cnet_isa_d6f77d694e (IsA wart imperfection) (STV 1.0 0.9091)) +(: cnet_isa_c01ba854e5 (IsA warthog swine) (STV 1.0 0.9091)) +(: cnet_isa_f0b30c21d7 (IsA wartime time_period) (STV 1.0 0.9091)) +(: cnet_isa_02ac9d3a55 (IsA wasabi condiment) (STV 1.0 0.9091)) +(: cnet_isa_fcb78893a9 (IsA wasabi herb) (STV 1.0 0.9091)) +(: cnet_isa_cd6d01e03e (IsA wash business_activity) (STV 1.0 0.9091)) +(: cnet_isa_15b3469600 (IsA wash work) (STV 1.0 0.9091)) +(: cnet_isa_6e4f4d4c64 (IsA wash water_base_paint) (STV 1.0 0.9091)) +(: cnet_isa_aa8b2099f5 (IsA wash watercolor) (STV 1.0 0.9091)) +(: cnet_isa_755ca3184c (IsA wash streambed) (STV 1.0 0.9091)) +(: cnet_isa_83fd8a2b3a (IsA wash_and_wear fabric) (STV 1.0 0.9091)) +(: cnet_isa_5246ab5bcc (IsA wash_leather chamois) (STV 1.0 0.9091)) +(: cnet_isa_afc3a51c97 (IsA washbasin basin) (STV 1.0 0.9091)) +(: cnet_isa_9c2e2c3446 (IsA washbasin sink) (STV 1.0 0.9091)) +(: cnet_isa_2ea4fd4625 (IsA washboard device) (STV 1.0 0.9091)) +(: cnet_isa_080b808a09 (IsA washboard protective_covering) (STV 1.0 0.9091)) +(: cnet_isa_7aba29f880 (IsA washcloth bath_linen) (STV 1.0 0.9091)) +(: cnet_isa_04e0ece66c (IsA washday day) (STV 1.0 0.9091)) +(: cnet_isa_11c2ee3c41 (IsA washer seal) (STV 1.0 0.9091)) +(: cnet_isa_4eab98cd87 (IsA washer white_good) (STV 1.0 0.9091)) +(: cnet_isa_234fb97391 (IsA washer worker) (STV 1.0 0.9091)) +(: cnet_isa_2dd619e5be (IsA washerman washer) (STV 1.0 0.9091)) +(: cnet_isa_a85b1ae9c4 (IsA washhouse laundry) (STV 1.0 0.9091)) +(: cnet_isa_1dd78bf3bc (IsA washing_machine machine) (STV 1.0 0.9091)) +(: cnet_isa_12a92410bc (IsA washing_up wash) (STV 1.0 0.9091)) +(: cnet_isa_d12ad6d6ee (IsA washington_s_birthday day) (STV 1.0 0.9091)) +(: cnet_isa_fba6e5262f (IsA washington state) (STV 1.0 0.9454)) +(: cnet_isa_3cf08be2bd (IsA washington_monument obelisk) (STV 1.0 0.9091)) +(: cnet_isa_979fa075be (IsA washingtonian american) (STV 1.0 0.9091)) +(: cnet_isa_bdca35723a (IsA washout soil_erosion) (STV 1.0 0.9091)) +(: cnet_isa_b45b71a930 (IsA washout groove) (STV 1.0 0.9091)) +(: cnet_isa_81b5a11e1a (IsA washroom toilet) (STV 1.0 0.9091)) +(: cnet_isa_817eb25fd3 (IsA washstand furniture) (STV 1.0 0.9091)) +(: cnet_isa_a053179f96 (IsA washtub tub) (STV 1.0 0.9091)) +(: cnet_isa_c615f9a869 (IsA washup cleaning) (STV 1.0 0.9091)) +(: cnet_isa_0169852c9c (IsA washup wash) (STV 1.0 0.9091)) +(: cnet_isa_a1df47fd54 (IsA washwoman washer) (STV 1.0 0.9091)) +(: cnet_isa_d39c68da37 (IsA wasp_s_nest nidus) (STV 1.0 0.9091)) +(: cnet_isa_ebde3958fe (IsA wasp insect) (STV 1.0 0.9091)) +(: cnet_isa_ff92d64979 (IsA wasp hymenopterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_9fe45038d7 (IsA wasp_waist waist) (STV 1.0 0.9091)) +(: cnet_isa_4739319c7f (IsA wassail punch) (STV 1.0 0.9091)) +(: cnet_isa_84cdcfa2a8 (IsA wassailer drinker) (STV 1.0 0.9091)) +(: cnet_isa_f66c6bfd89 (IsA wassermann_test complement_fixation_test) (STV 1.0 0.9091)) +(: cnet_isa_ff733c262c (IsA wastage loss) (STV 1.0 0.9091)) +(: cnet_isa_186ebca7a0 (IsA wastage decrease) (STV 1.0 0.9091)) +(: cnet_isa_33681a9285 (IsA waste activity) (STV 1.0 0.9091)) +(: cnet_isa_08fc4e98b0 (IsA waste act) (STV 1.0 0.9091)) +(: cnet_isa_658575fa11 (IsA waste material) (STV 1.0 0.9091)) +(: cnet_isa_ef9741809f (IsA waste_of_effort waste) (STV 1.0 0.9091)) +(: cnet_isa_5252c83d44 (IsA waste_of_material waste) (STV 1.0 0.9091)) +(: cnet_isa_d033237fc7 (IsA waste_of_money waste) (STV 1.0 0.9091)) +(: cnet_isa_87a485e557 (IsA waste_of_time waste) (STV 1.0 0.9091)) +(: cnet_isa_1dcb9f670c (IsA waste_paper paper) (STV 1.0 0.9091)) +(: cnet_isa_bae2193272 (IsA wastepaper_basket container) (STV 1.0 0.9091)) +(: cnet_isa_25d3c425d6 (IsA wastrel prodigal) (STV 1.0 0.9091)) +(: cnet_isa_62d5711735 (IsA watch chronometer) (STV 1.0 0.9339)) +(: cnet_isa_70da028591 (IsA watch clock) (STV 1.0 0.9339)) +(: cnet_isa_7e21c674e7 (IsA watch surveillance) (STV 1.0 0.9091)) +(: cnet_isa_4827da7e96 (IsA watch timepiece) (STV 1.0 0.9091)) +(: cnet_isa_657f7a5102 (IsA watch shift) (STV 1.0 0.9091)) +(: cnet_isa_5184c11a3d (IsA watch time_period) (STV 1.0 0.9091)) +(: cnet_isa_9cd3c4d1b4 (IsA watch_cap cap) (STV 1.0 0.9091)) +(: cnet_isa_923dcbccb7 (IsA watch_case case) (STV 1.0 0.9091)) +(: cnet_isa_2aaea16d99 (IsA watch_fire visual_signal) (STV 1.0 0.9091)) +(: cnet_isa_e4f0b397c5 (IsA watch_glass dish) (STV 1.0 0.9091)) +(: cnet_isa_2ea9002d2a (IsA watch_key winder) (STV 1.0 0.9091)) +(: cnet_isa_ea9c3fba83 (IsA watch_night service) (STV 1.0 0.9091)) +(: cnet_isa_e6265271dd (IsA watchband band) (STV 1.0 0.9091)) +(: cnet_isa_48496fc5e3 (IsA watchdog working_dog) (STV 1.0 0.9091)) +(: cnet_isa_d99ab29952 (IsA watchdog defender) (STV 1.0 0.9091)) +(: cnet_isa_677e0b8894 (IsA watcher person) (STV 1.0 0.9091)) +(: cnet_isa_97af060186 (IsA watchfulness attentiveness) (STV 1.0 0.9091)) +(: cnet_isa_8c2599443b (IsA watchfulness attention) (STV 1.0 0.9091)) +(: cnet_isa_9050fe75e5 (IsA watching_tv passive_activity) (STV 1.0 0.9091)) +(: cnet_isa_a50beafa95 (IsA watchmaker maker) (STV 1.0 0.9091)) +(: cnet_isa_ad9f66f75a (IsA watchman guard) (STV 1.0 0.9091)) +(: cnet_isa_a202f2b11a (IsA watchtower tower) (STV 1.0 0.9091)) +(: cnet_isa_669d31a05a (IsA water chemical) (STV 1.0 0.9091)) +(: cnet_isa_ba91a2bae9 (IsA water fluid) (STV 1.0 0.9339)) +(: cnet_isa_5c30b4a28f (IsA water heavier_than_air) (STV 1.0 0.9339)) +(: cnet_isa_877187feaa (IsA water life) (STV 1.0 0.9454)) +(: cnet_isa_2fd8401c78 (IsA water molecule) (STV 1.0 0.9091)) +(: cnet_isa_9a3c206472 (IsA water not_air) (STV 1.0 0.9091)) +(: cnet_isa_f5a1359512 (IsA water reflective_surface) (STV 1.0 0.9677)) +(: cnet_isa_0b963d77d9 (IsA water solvent) (STV 1.0 0.9091)) +(: cnet_isa_e08ff48534 (IsA water food) (STV 1.0 0.9091)) +(: cnet_isa_d23f21455a (IsA water nutrient) (STV 1.0 0.9091)) +(: cnet_isa_6f62f49f90 (IsA water binary_compound) (STV 1.0 0.9091)) +(: cnet_isa_e9cd3c5a3c (IsA water element) (STV 1.0 0.9091)) +(: cnet_isa_8214eb3cc5 (IsA water_aven aven) (STV 1.0 0.9091)) +(: cnet_isa_3011cceab7 (IsA water_back water_heater) (STV 1.0 0.9091)) +(: cnet_isa_87d6e19e3e (IsA water_base_paint paint) (STV 1.0 0.9091)) +(: cnet_isa_3045cfa5d9 (IsA water_bearer person) (STV 1.0 0.9091)) +(: cnet_isa_584f5b3d60 (IsA water_bed bed) (STV 1.0 0.9091)) +(: cnet_isa_8f747b0af9 (IsA water_beetle beetle) (STV 1.0 0.9091)) +(: cnet_isa_c129f3c4a8 (IsA water_biscuit cracker) (STV 1.0 0.9091)) +(: cnet_isa_45214479ac (IsA water_blister blister) (STV 1.0 0.9091)) +(: cnet_isa_617ab39095 (IsA water_boatman water_bug) (STV 1.0 0.9091)) +(: cnet_isa_2db617610c (IsA water_bottle bottle) (STV 1.0 0.9091)) +(: cnet_isa_c517f3eba1 (IsA water_boy assistant) (STV 1.0 0.9091)) +(: cnet_isa_8cc244822a (IsA water_buffalo old_world_buffalo) (STV 1.0 0.9091)) +(: cnet_isa_788a12c315 (IsA water_bug heteropterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_463238537d (IsA water_butt butt) (STV 1.0 0.9091)) +(: cnet_isa_9930016c01 (IsA water_caltrop water_chestnut) (STV 1.0 0.9091)) +(: cnet_isa_fb3d4ee62e (IsA water_cannon hose) (STV 1.0 0.9091)) +(: cnet_isa_6fb7ad222a (IsA water_carpet golden_saxifrage) (STV 1.0 0.9091)) +(: cnet_isa_69e6976120 (IsA water_cart cart) (STV 1.0 0.9091)) +(: cnet_isa_c5b0cc4b25 (IsA water_chestnut tuber) (STV 1.0 0.9091)) +(: cnet_isa_4ec562c8fb (IsA water_chestnut aquatic_plant) (STV 1.0 0.9091)) +(: cnet_isa_086f2778fe (IsA water_chestnut spike_rush) (STV 1.0 0.9091)) +(: cnet_isa_9524ef9464 (IsA water_chevrotain chevrotain) (STV 1.0 0.9091)) +(: cnet_isa_52cb5a5af2 (IsA water_chinquapin edible_seed) (STV 1.0 0.9091)) +(: cnet_isa_f73b36538f (IsA water_chinquapin water_lily) (STV 1.0 0.9091)) +(: cnet_isa_13d26997b8 (IsA water_chute chute) (STV 1.0 0.9091)) +(: cnet_isa_60809175ee (IsA water_clock clock) (STV 1.0 0.9091)) +(: cnet_isa_28df582f44 (IsA water_closet toilet) (STV 1.0 0.9091)) +(: cnet_isa_4743c80743 (IsA water_clover clover_fern) (STV 1.0 0.9091)) +(: cnet_isa_8060f7cb55 (IsA water_colour painting) (STV 1.0 0.9091)) +(: cnet_isa_6780c1acef (IsA water_company utility) (STV 1.0 0.9091)) +(: cnet_isa_eb822b9da2 (IsA water_conservation conservation) (STV 1.0 0.9091)) +(: cnet_isa_e0ef31ba09 (IsA water_cooled_reactor nuclear_reactor) (STV 1.0 0.9091)) +(: cnet_isa_f5533121a2 (IsA water_cooler device) (STV 1.0 0.9091)) +(: cnet_isa_67e1196dd8 (IsA water_crowfoot aquatic_plant) (STV 1.0 0.9091)) +(: cnet_isa_8862f34b13 (IsA water_development exploitation) (STV 1.0 0.9091)) +(: cnet_isa_59c9b6ebbe (IsA water_dog sporting_dog) (STV 1.0 0.9091)) +(: cnet_isa_0481b99879 (IsA water_dog sailor) (STV 1.0 0.9091)) +(: cnet_isa_f7784723eb (IsA water_dropwort poisonous_plant) (STV 1.0 0.9091)) +(: cnet_isa_7a64159ac2 (IsA water_elm elm) (STV 1.0 0.9091)) +(: cnet_isa_bc3e61e45b (IsA water_faucet faucet) (STV 1.0 0.9091)) +(: cnet_isa_0aee639127 (IsA water_faucet plumbing_fixture) (STV 1.0 0.9091)) +(: cnet_isa_0ead408235 (IsA water_fennel poisonous_plant) (STV 1.0 0.9091)) +(: cnet_isa_b49338e761 (IsA water_filter filter) (STV 1.0 0.9091)) +(: cnet_isa_45222bf453 (IsA water_gap col) (STV 1.0 0.9091)) +(: cnet_isa_1e61c8bda5 (IsA water_gas fuel) (STV 1.0 0.9091)) +(: cnet_isa_8b62abab04 (IsA water_gas gas) (STV 1.0 0.9091)) +(: cnet_isa_5a36f8c887 (IsA water_gauge gauge) (STV 1.0 0.9091)) +(: cnet_isa_f8c1c4eee1 (IsA water_gillyflower featherfoil) (STV 1.0 0.9091)) +(: cnet_isa_6eead04ddc (IsA water_glass glass) (STV 1.0 0.9091)) +(: cnet_isa_e1bbefc63b (IsA water_gum tupelo) (STV 1.0 0.9091)) +(: cnet_isa_cbe7e244fd (IsA water_hammer bang) (STV 1.0 0.9091)) +(: cnet_isa_4f58d646a1 (IsA water_hazard hazard) (STV 1.0 0.9091)) +(: cnet_isa_81ad7ec15e (IsA water_heater heater) (STV 1.0 0.9091)) +(: cnet_isa_0f159a897d (IsA water_heater tank) (STV 1.0 0.9091)) +(: cnet_isa_663f338f8f (IsA water_hemlock poisonous_plant) (STV 1.0 0.9091)) +(: cnet_isa_048fd37b5a (IsA water_hickory hickory) (STV 1.0 0.9091)) +(: cnet_isa_63d99c394e (IsA water_hole pond) (STV 1.0 0.9091)) +(: cnet_isa_c7d0a408eb (IsA water_horehound herb) (STV 1.0 0.9091)) +(: cnet_isa_0adc79575c (IsA water_hyacinth aquatic_plant) (STV 1.0 0.9091)) +(: cnet_isa_7178720b8b (IsA water_jacket vessel) (STV 1.0 0.9091)) +(: cnet_isa_e760354fbb (IsA water_jug jug) (STV 1.0 0.9091)) +(: cnet_isa_85ac589771 (IsA water_jump obstacle) (STV 1.0 0.9091)) +(: cnet_isa_60f7216ccc (IsA water_jump pool) (STV 1.0 0.9091)) +(: cnet_isa_e599877eec (IsA water_level water_gauge) (STV 1.0 0.9091)) +(: cnet_isa_3a8121b750 (IsA water_level elevation) (STV 1.0 0.9091)) +(: cnet_isa_463aa2fe1f (IsA water_lily aquatic_plant) (STV 1.0 0.9091)) +(: cnet_isa_c7640a33ba (IsA water_line line) (STV 1.0 0.9091)) +(: cnet_isa_8fc8d43d27 (IsA water_lobelia lobelia) (STV 1.0 0.9091)) +(: cnet_isa_559eea041c (IsA water_locust locust_tree) (STV 1.0 0.9091)) +(: cnet_isa_ad127052a7 (IsA water_main main) (STV 1.0 0.9091)) +(: cnet_isa_fb24c40290 (IsA water_meter meter) (STV 1.0 0.9091)) +(: cnet_isa_e38e6f3eac (IsA water_milfoil aquatic_plant) (STV 1.0 0.9091)) +(: cnet_isa_1c330eaebe (IsA water_mill mill) (STV 1.0 0.9091)) +(: cnet_isa_387b3bd95b (IsA water_mint mint) (STV 1.0 0.9091)) +(: cnet_isa_7913189fb3 (IsA water_moccasin pit_viper) (STV 1.0 0.9091)) +(: cnet_isa_399e265173 (IsA water_moccasin water_snake) (STV 1.0 0.9091)) +(: cnet_isa_a0331d9d71 (IsA water_mold mold) (STV 1.0 0.9091)) +(: cnet_isa_bab1ab6542 (IsA water_nymph nymph) (STV 1.0 0.9091)) +(: cnet_isa_e3fdef8b31 (IsA water_nymph water_lily) (STV 1.0 0.9091)) +(: cnet_isa_ecc6f8ba91 (IsA water_oak oak) (STV 1.0 0.9091)) +(: cnet_isa_e2a6f1eef5 (IsA water_of_crystallization water) (STV 1.0 0.9091)) +(: cnet_isa_3b8f493efd (IsA water_on_knee hydrarthrosis) (STV 1.0 0.9091)) +(: cnet_isa_d215348760 (IsA water_ouzel oscine) (STV 1.0 0.9091)) +(: cnet_isa_aa2f5fbb6b (IsA water_parsnip marsh_plant) (STV 1.0 0.9091)) +(: cnet_isa_484fe2a7c4 (IsA water_pimpernel aquatic_plant) (STV 1.0 0.9091)) +(: cnet_isa_aa73455f40 (IsA water_pistol plaything) (STV 1.0 0.9091)) +(: cnet_isa_b98f820d95 (IsA water_plantain marsh_plant) (STV 1.0 0.9091)) +(: cnet_isa_dd4b72fd57 (IsA water_pollution pollution) (STV 1.0 0.9091)) +(: cnet_isa_f73f602b93 (IsA water_polo game) (STV 1.0 0.9339)) +(: cnet_isa_f851715a96 (IsA water_polo sport) (STV 1.0 0.9339)) +(: cnet_isa_745b094e2d (IsA water_polo athletic_game) (STV 1.0 0.9091)) +(: cnet_isa_ca20fa0896 (IsA water_pump pump) (STV 1.0 0.9091)) +(: cnet_isa_f6ba023c0d (IsA water_rat rodent) (STV 1.0 0.9091)) +(: cnet_isa_95e4e3dec6 (IsA water_rate charge) (STV 1.0 0.9091)) +(: cnet_isa_4e7af5dd8b (IsA water_right right) (STV 1.0 0.9091)) +(: cnet_isa_053055bcc5 (IsA water_sapphire cordierite) (STV 1.0 0.9091)) +(: cnet_isa_2a40dc8396 (IsA water_sapphire transparent_gem) (STV 1.0 0.9091)) +(: cnet_isa_eb01031f16 (IsA water_scooter motorboat) (STV 1.0 0.9091)) +(: cnet_isa_5907f08f21 (IsA water_scorpion water_bug) (STV 1.0 0.9091)) +(: cnet_isa_80c7643f38 (IsA water_shamrock aquatic_plant) (STV 1.0 0.9091)) +(: cnet_isa_9cc6c52eb8 (IsA water_shield water_lily) (STV 1.0 0.9091)) +(: cnet_isa_5d24358f43 (IsA water_shrew shrew) (STV 1.0 0.9091)) +(: cnet_isa_bb311b9e93 (IsA water_ski ski) (STV 1.0 0.9091)) +(: cnet_isa_60394189f6 (IsA water_skiing water_sport) (STV 1.0 0.9091)) +(: cnet_isa_546a7a7b91 (IsA water_snake colubrid_snake) (STV 1.0 0.9091)) +(: cnet_isa_edd728a441 (IsA water_softener softener) (STV 1.0 0.9091)) +(: cnet_isa_b32b40f46e (IsA water_soluble_vitamin vitamin) (STV 1.0 0.9091)) +(: cnet_isa_c41166c59e (IsA water_spaniel spaniel) (STV 1.0 0.9091)) +(: cnet_isa_ee348c808c (IsA water_speedwell aquatic_plant) (STV 1.0 0.9091)) +(: cnet_isa_141a960f30 (IsA water_sport sport) (STV 1.0 0.9091)) +(: cnet_isa_466993641d (IsA water_sprite fairy) (STV 1.0 0.9091)) +(: cnet_isa_1aa4171fc5 (IsA water_star_grass aquatic_plant) (STV 1.0 0.9091)) +(: cnet_isa_52ef461268 (IsA water_starwort aquatic_plant) (STV 1.0 0.9091)) +(: cnet_isa_3812763c9a (IsA water_strider water_bug) (STV 1.0 0.9091)) +(: cnet_isa_7d430a1e88 (IsA water_system facility) (STV 1.0 0.9091)) +(: cnet_isa_fcd9107865 (IsA water_system system) (STV 1.0 0.9091)) +(: cnet_isa_e6934810a3 (IsA water_table geological_formation) (STV 1.0 0.9091)) +(: cnet_isa_098b989f24 (IsA water_thrush new_world_warbler) (STV 1.0 0.9091)) +(: cnet_isa_0502c51072 (IsA water_tower reservoir) (STV 1.0 0.9091)) +(: cnet_isa_2693e18870 (IsA water_travel travel) (STV 1.0 0.9091)) +(: cnet_isa_c9b410c664 (IsA water_turkey snakebird) (STV 1.0 0.9091)) +(: cnet_isa_5a341da89d (IsA water_vapor vapor) (STV 1.0 0.9091)) +(: cnet_isa_6a64bab78f (IsA water_vascular_system vascular_system) (STV 1.0 0.9091)) +(: cnet_isa_4c29b06ed3 (IsA water_violet featherfoil) (STV 1.0 0.9091)) +(: cnet_isa_6aead1029b (IsA water_vole vole) (STV 1.0 0.9091)) +(: cnet_isa_644e6b57da (IsA water_wagon wagon) (STV 1.0 0.9091)) +(: cnet_isa_ec0fbf458a (IsA water_wing life_preserver) (STV 1.0 0.9091)) +(: cnet_isa_ff8d234e48 (IsA water_witch diviner) (STV 1.0 0.9091)) +(: cnet_isa_03824dd9a1 (IsA waterbuck antelope) (STV 1.0 0.9091)) +(: cnet_isa_969ef19e69 (IsA watercolor painting) (STV 1.0 0.9091)) +(: cnet_isa_cbc713595e (IsA watercolor water_base_paint) (STV 1.0 0.9091)) +(: cnet_isa_41aeeeaacb (IsA watercolor pigment) (STV 1.0 0.9091)) +(: cnet_isa_07ed487ef5 (IsA watercolorist painter) (STV 1.0 0.9091)) +(: cnet_isa_3d6830dd4e (IsA watercourse way) (STV 1.0 0.9091)) +(: cnet_isa_d47e3c8bfa (IsA watercourse channel) (STV 1.0 0.9091)) +(: cnet_isa_f552fe2a9f (IsA watercraft craft) (STV 1.0 0.9091)) +(: cnet_isa_e7a5ee6b1e (IsA watercress cress) (STV 1.0 0.9091)) +(: cnet_isa_27a2adb6cc (IsA waterdog ambystomid) (STV 1.0 0.9091)) +(: cnet_isa_d2f54d424a (IsA watered_stock stock) (STV 1.0 0.9091)) +(: cnet_isa_7aefce99e6 (IsA waterer farmhand) (STV 1.0 0.9091)) +(: cnet_isa_a127a2c28b (IsA waterfall body_of_water) (STV 1.0 0.9091)) +(: cnet_isa_5c7a753d6c (IsA waterfowl aquatic_bird) (STV 1.0 0.9091)) +(: cnet_isa_155b9ae32a (IsA waterfront city_district) (STV 1.0 0.9091)) +(: cnet_isa_94194f0a4a (IsA waterhouse_friderichsen_syndrome syndrome) (STV 1.0 0.9091)) +(: cnet_isa_633bf58f6b (IsA wateriness meagerness) (STV 1.0 0.9091)) +(: cnet_isa_d0dd7fbed9 (IsA wateriness thinness) (STV 1.0 0.9091)) +(: cnet_isa_f2a850ad10 (IsA watering wetting) (STV 1.0 0.9091)) +(: cnet_isa_583ed9bc4a (IsA watering_can container) (STV 1.0 0.9091)) +(: cnet_isa_a71ad4864d (IsA watering_cart water_cart) (STV 1.0 0.9091)) +(: cnet_isa_f71bb71f73 (IsA watering_place resort_area) (STV 1.0 0.9091)) +(: cnet_isa_71d64839f5 (IsA waterleaf herb) (STV 1.0 0.9091)) +(: cnet_isa_26f7e3ec3f (IsA waterline line) (STV 1.0 0.9091)) +(: cnet_isa_d7a7ce23bb (IsA waterloo defeat) (STV 1.0 0.9091)) +(: cnet_isa_9d332854e7 (IsA watermark marker) (STV 1.0 0.9091)) +(: cnet_isa_78d76bc712 (IsA watermeal duckweed) (STV 1.0 0.9091)) +(: cnet_isa_f86c7c35be (IsA watermelon fruit) (STV 1.0 0.9339)) +(: cnet_isa_cbb266860c (IsA watermelon melon) (STV 1.0 0.9091)) +(: cnet_isa_c6df17b9dd (IsA watermelon_begonia peperomia) (STV 1.0 0.9091)) +(: cnet_isa_91e429a271 (IsA waterpower power) (STV 1.0 0.9091)) +(: cnet_isa_94dad403b2 (IsA waterproof fabric) (STV 1.0 0.9091)) +(: cnet_isa_7ada992e28 (IsA waterproofing protection) (STV 1.0 0.9091)) +(: cnet_isa_2135ad45ed (IsA waterproofing coating) (STV 1.0 0.9091)) +(: cnet_isa_7c20e606f9 (IsA watershed line) (STV 1.0 0.9091)) +(: cnet_isa_5ffff329e0 (IsA waterside bank) (STV 1.0 0.9091)) +(: cnet_isa_373e42a12a (IsA waterskin skin) (STV 1.0 0.9091)) +(: cnet_isa_5f20708954 (IsA waterspout conduit) (STV 1.0 0.9091)) +(: cnet_isa_4ea4dacc82 (IsA waterspout tornado) (STV 1.0 0.9091)) +(: cnet_isa_e9ab9eb8c7 (IsA waterway body_of_water) (STV 1.0 0.9091)) +(: cnet_isa_d8ab88f7b7 (IsA waterweed aquatic_plant) (STV 1.0 0.9091)) +(: cnet_isa_88d15536b3 (IsA waterwheel wheel) (STV 1.0 0.9091)) +(: cnet_isa_e5e53b2e65 (IsA waterwheel_plant carnivorous_plant) (STV 1.0 0.9091)) +(: cnet_isa_df820de2b9 (IsA waterwork workplace) (STV 1.0 0.9091)) +(: cnet_isa_47ea00e3f9 (IsA wat telephone_line) (STV 1.0 0.9091)) +(: cnet_isa_9dc5971dc0 (IsA watt power_unit) (STV 1.0 0.9091)) +(: cnet_isa_60595552a6 (IsA watt_hour work_unit) (STV 1.0 0.9091)) +(: cnet_isa_437c164ee3 (IsA wattage voltage_mulitplied_by_amperage) (STV 1.0 0.9091)) +(: cnet_isa_7332cb7d9f (IsA wattle framework) (STV 1.0 0.9091)) +(: cnet_isa_c75feeb2af (IsA wattle caruncle) (STV 1.0 0.9091)) +(: cnet_isa_3c677d8682 (IsA wattle acacia) (STV 1.0 0.9091)) +(: cnet_isa_220a34baa0 (IsA wattle_and_daub building_material) (STV 1.0 0.9091)) +(: cnet_isa_8721ac86a4 (IsA wattmeter measuring_instrument) (STV 1.0 0.9091)) +(: cnet_isa_97612082b6 (IsA watutsi bantu) (STV 1.0 0.9091)) +(: cnet_isa_c6ff24417a (IsA wave motion) (STV 1.0 0.9091)) +(: cnet_isa_da55bbcada (IsA wave hairdo) (STV 1.0 0.9091)) +(: cnet_isa_cdf6cae878 (IsA wave gesture) (STV 1.0 0.9091)) +(: cnet_isa_679c55f0d7 (IsA wave movement) (STV 1.0 0.9091)) +(: cnet_isa_71bc970ff2 (IsA wave rise) (STV 1.0 0.9091)) +(: cnet_isa_992b357b3e (IsA wave reservist) (STV 1.0 0.9091)) +(: cnet_isa_e37dda330f (IsA wave woman) (STV 1.0 0.9091)) +(: cnet_isa_59acd5cedb (IsA wave weather) (STV 1.0 0.9091)) +(: cnet_isa_e6e05b90d0 (IsA wave curve) (STV 1.0 0.9091)) +(: cnet_isa_1eb0513ae2 (IsA wave_angle angle) (STV 1.0 0.9091)) +(: cnet_isa_50376a3c4b (IsA wave_equation differential_equation) (STV 1.0 0.9091)) +(: cnet_isa_23f4dd4476 (IsA wave_form wave) (STV 1.0 0.9091)) +(: cnet_isa_aff873bb1f (IsA wave_front propagation) (STV 1.0 0.9091)) +(: cnet_isa_92bc07a223 (IsA wave_front surface) (STV 1.0 0.9091)) +(: cnet_isa_07e22949b7 (IsA wave_mechanic quantum_mechanic) (STV 1.0 0.9091)) +(: cnet_isa_b4d8a6ace2 (IsA wave_number frequency) (STV 1.0 0.9091)) +(: cnet_isa_a8dc4b01b2 (IsA wave_theory scientific_theory) (STV 1.0 0.9091)) +(: cnet_isa_81b016914d (IsA wave_train sery) (STV 1.0 0.9091)) +(: cnet_isa_b0c5b92340 (IsA wave_vector vector) (STV 1.0 0.9091)) +(: cnet_isa_fa0c1ae1d0 (IsA waveguide conductor) (STV 1.0 0.9091)) +(: cnet_isa_3a07ad6dd4 (IsA wavelength distance) (STV 1.0 0.9091)) +(: cnet_isa_9fe29e619f (IsA wavelength orientation) (STV 1.0 0.9091)) +(: cnet_isa_17fdd53031 (IsA waver motion) (STV 1.0 0.9091)) +(: cnet_isa_0c089d7697 (IsA waver communicator) (STV 1.0 0.9091)) +(: cnet_isa_7d015c9811 (IsA waverer coward) (STV 1.0 0.9091)) +(: cnet_isa_18d44cf159 (IsA waviness unevenness) (STV 1.0 0.9091)) +(: cnet_isa_c2724440a4 (IsA wavy_leaved_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_7099aee5d8 (IsA waw letter) (STV 1.0 0.9091)) +(: cnet_isa_c726275a4c (IsA wax lipid) (STV 1.0 0.9091)) +(: cnet_isa_0c5138bab7 (IsA wax_bean fresh_bean) (STV 1.0 0.9091)) +(: cnet_isa_435daab92f (IsA wax_bean common_bean) (STV 1.0 0.9091)) +(: cnet_isa_7132f12c35 (IsA wax_begonia begonia) (STV 1.0 0.9091)) +(: cnet_isa_384502b891 (IsA wax_chandler chandler) (STV 1.0 0.9091)) +(: cnet_isa_fb427710ca (IsA wax_insect scale_insect) (STV 1.0 0.9091)) +(: cnet_isa_15c92fdf1b (IsA wax_myrtle shrub) (STV 1.0 0.9091)) +(: cnet_isa_f1a0b7d690 (IsA wax_palm feather_palm) (STV 1.0 0.9091)) +(: cnet_isa_7af7ceab4b (IsA wax_paper paper) (STV 1.0 0.9091)) +(: cnet_isa_2396d178da (IsA wax_plant hoya) (STV 1.0 0.9091)) +(: cnet_isa_e3deb0d6d3 (IsA waxflower air_plant) (STV 1.0 0.9091)) +(: cnet_isa_0b29a87897 (IsA waxiness quality) (STV 1.0 0.9091)) +(: cnet_isa_dee29eb034 (IsA waxing application) (STV 1.0 0.9091)) +(: cnet_isa_25fd7c96b2 (IsA waxing increase) (STV 1.0 0.9091)) +(: cnet_isa_643db0fabd (IsA waxmallow mallow) (STV 1.0 0.9091)) +(: cnet_isa_04dc14a70b (IsA waxwing oscine) (STV 1.0 0.9091)) +(: cnet_isa_59ebe3280f (IsA waxwork effigy) (STV 1.0 0.9091)) +(: cnet_isa_176e81da0d (IsA waxycap agaric) (STV 1.0 0.9091)) +(: cnet_isa_c4aa2242a8 (IsA way course) (STV 1.0 0.9091)) +(: cnet_isa_f437bfeeb2 (IsA way journey) (STV 1.0 0.9091)) +(: cnet_isa_ed18edf5f4 (IsA way artifact) (STV 1.0 0.9091)) +(: cnet_isa_5394ddfa2d (IsA way distance) (STV 1.0 0.9091)) +(: cnet_isa_3d74d81e13 (IsA way category) (STV 1.0 0.9091)) +(: cnet_isa_f35d38b0d0 (IsA way choice) (STV 1.0 0.9091)) +(: cnet_isa_5615f13d37 (IsA way share) (STV 1.0 0.9091)) +(: cnet_isa_930f927409 (IsA way condition) (STV 1.0 0.9091)) +(: cnet_isa_3751f222f6 (IsA wayfarer pedestrian) (STV 1.0 0.9091)) +(: cnet_isa_56447206e7 (IsA wayfarer traveler) (STV 1.0 0.9091)) +(: cnet_isa_9f8679c68a (IsA wayfaring travel) (STV 1.0 0.9091)) +(: cnet_isa_140304aefe (IsA wayfaring_tree shrub) (STV 1.0 0.9091)) +(: cnet_isa_9a905736de (IsA way structure) (STV 1.0 0.9091)) +(: cnet_isa_5b81e7e2b8 (IsA way_and_mean resource) (STV 1.0 0.9091)) +(: cnet_isa_6b6acaedb7 (IsA way_and_mean_committee standing_committee) (STV 1.0 0.9091)) +(: cnet_isa_4172cefa7a (IsA way_of_world behavior) (STV 1.0 0.9091)) +(: cnet_isa_d76f1c8b83 (IsA wayside edge) (STV 1.0 0.9091)) +(: cnet_isa_a27c0db123 (IsA we all_mutant) (STV 1.0 0.9091)) +(: cnet_isa_62e5211572 (IsA weak_interaction interaction) (STV 1.0 0.9091)) +(: cnet_isa_48a4ae1969 (IsA weak_part weakness) (STV 1.0 0.9091)) +(: cnet_isa_ff3a6e67e2 (IsA weak_point liability) (STV 1.0 0.9091)) +(: cnet_isa_e14f2acbd1 (IsA weakener agent) (STV 1.0 0.9091)) +(: cnet_isa_09f3da5529 (IsA weakening decrease) (STV 1.0 0.9091)) +(: cnet_isa_67ea9bae28 (IsA weakening transformation) (STV 1.0 0.9091)) +(: cnet_isa_6efcc1c939 (IsA weakfish sea_trout) (STV 1.0 0.9091)) +(: cnet_isa_a6e50a969a (IsA weakfish saltwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_28555f1307 (IsA weakling person) (STV 1.0 0.9091)) +(: cnet_isa_80eb2124e2 (IsA weakly_interacting_massive_particle elementary_particle) (STV 1.0 0.9091)) +(: cnet_isa_7f6b08f26d (IsA weakness property) (STV 1.0 0.9091)) +(: cnet_isa_b3ffa9b218 (IsA weakness preference) (STV 1.0 0.9091)) +(: cnet_isa_51bfa2b2b6 (IsA weakness misfortune) (STV 1.0 0.9091)) +(: cnet_isa_565752cf7a (IsA weald country) (STV 1.0 0.9091)) +(: cnet_isa_7945926a53 (IsA wealth abundance) (STV 1.0 0.9091)) +(: cnet_isa_e96aa1ef37 (IsA wealth material_resource) (STV 1.0 0.9091)) +(: cnet_isa_6b1d3fd91b (IsA wealth property) (STV 1.0 0.9091)) +(: cnet_isa_1fa33f3132 (IsA wealth financial_condition) (STV 1.0 0.9091)) +(: cnet_isa_0ebd202101 (IsA weaning substitution) (STV 1.0 0.9091)) +(: cnet_isa_8e4de36621 (IsA weapon instrument) (STV 1.0 0.9091)) +(: cnet_isa_13e5bea44a (IsA weapon persuasion) (STV 1.0 0.9091)) +(: cnet_isa_fcab68e527 (IsA weapon_of_mass_destruction weapon) (STV 1.0 0.9091)) +(: cnet_isa_8b825fbe06 (IsA weaponry instrumentality) (STV 1.0 0.9091)) +(: cnet_isa_69e88b42bd (IsA weapon_carrier military_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_ffc10bde32 (IsA weapon_carrier self_propelled_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_6c6ed432e8 (IsA weapon_plutonium plutonium_239) (STV 1.0 0.9091)) +(: cnet_isa_54f841cd69 (IsA wear act) (STV 1.0 0.9091)) +(: cnet_isa_744aa0cff0 (IsA wear deterioration) (STV 1.0 0.9091)) +(: cnet_isa_32c146634e (IsA wearer user) (STV 1.0 0.9091)) +(: cnet_isa_0bc809ea25 (IsA weasel musteline_mammal) (STV 1.0 0.9091)) +(: cnet_isa_c330b46ee5 (IsA weasel person) (STV 1.0 0.9091)) +(: cnet_isa_e0d021d0ce (IsA weasel_word reservation) (STV 1.0 0.9091)) +(: cnet_isa_3f9c521c6b (IsA weasel animal) (STV 1.0 0.9339)) +(: cnet_isa_d3983f2531 (IsA weather atmospheric_phenomenon) (STV 1.0 0.9091)) +(: cnet_isa_7a58cafadd (IsA weather_bureau administrative_unit) (STV 1.0 0.9091)) +(: cnet_isa_eb025d63b6 (IsA weather_deck upper_deck) (STV 1.0 0.9091)) +(: cnet_isa_40dbbef676 (IsA weather_forecast prognosis) (STV 1.0 0.9091)) +(: cnet_isa_8bda9ed68d (IsA weather_map map) (STV 1.0 0.9091)) +(: cnet_isa_0c78c0039e (IsA weather_radar radar) (STV 1.0 0.9091)) +(: cnet_isa_568bf71dc2 (IsA weather_satellite satellite) (STV 1.0 0.9091)) +(: cnet_isa_cf43c22875 (IsA weather_ship vessel) (STV 1.0 0.9091)) +(: cnet_isa_c6a53fda2a (IsA weather_strip strip) (STV 1.0 0.9091)) +(: cnet_isa_a0f22cd8c1 (IsA weathercock weathervane) (STV 1.0 0.9091)) +(: cnet_isa_f15204e43e (IsA weatherglass barometer) (STV 1.0 0.9091)) +(: cnet_isa_eb9006d115 (IsA weatherliness maneuverability) (STV 1.0 0.9091)) +(: cnet_isa_ac548a0e00 (IsA weatherman meteorologist) (STV 1.0 0.9091)) +(: cnet_isa_a118eda03c (IsA weathervane mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_3e71ab6afb (IsA weave design) (STV 1.0 0.9091)) +(: cnet_isa_0a0620b50a (IsA weaver oscine) (STV 1.0 0.9091)) +(: cnet_isa_cb29311966 (IsA weaver craftsman) (STV 1.0 0.9091)) +(: cnet_isa_9d5c53605f (IsA weaving handicraft) (STV 1.0 0.9091)) +(: cnet_isa_1659950654 (IsA web membrane) (STV 1.0 0.9091)) +(: cnet_isa_c06725c0ad (IsA web fabric) (STV 1.0 0.9091)) +(: cnet_isa_9008cacd6b (IsA web trap) (STV 1.0 0.9091)) +(: cnet_isa_9f3f217b7c (IsA web object) (STV 1.0 0.9091)) +(: cnet_isa_eec600cb48 (IsA web_log diary) (STV 1.0 0.9091)) +(: cnet_isa_b1b340fe2b (IsA web_page text_file) (STV 1.0 0.9091)) +(: cnet_isa_ce29978fec (IsA web_site computer) (STV 1.0 0.9091)) +(: cnet_isa_ee7463a367 (IsA web_spinner insect) (STV 1.0 0.9091)) +(: cnet_isa_eda9c327df (IsA web_spinning_mite mite) (STV 1.0 0.9091)) +(: cnet_isa_3914414335 (IsA web_toed_salamander salamander) (STV 1.0 0.9091)) +(: cnet_isa_499b9d6b8a (IsA webbed_foot bird_s_foot) (STV 1.0 0.9091)) +(: cnet_isa_eb2e7987e5 (IsA webbing fabric) (STV 1.0 0.9091)) +(: cnet_isa_3ce8751121 (IsA webbing tape) (STV 1.0 0.9091)) +(: cnet_isa_9b3ab94451 (IsA webbing web) (STV 1.0 0.9091)) +(: cnet_isa_bc469d4258 (IsA webbing_clothe_moth clothe_moth) (STV 1.0 0.9091)) +(: cnet_isa_a46154ce2f (IsA webcam digital_camera) (STV 1.0 0.9091)) +(: cnet_isa_dc1f7819ce (IsA weber_s_law law) (STV 1.0 0.9091)) +(: cnet_isa_e38f9ceea3 (IsA weber flux_unit) (STV 1.0 0.9091)) +(: cnet_isa_6526a05000 (IsA webfoot animal_foot) (STV 1.0 0.9091)) +(: cnet_isa_356924338c (IsA webmaster technician) (STV 1.0 0.9091)) +(: cnet_isa_9aa565c406 (IsA webworm caterpillar) (STV 1.0 0.9091)) +(: cnet_isa_15a4f0c615 (IsA webworm_moth lasiocampid) (STV 1.0 0.9091)) +(: cnet_isa_eb97d8e6fa (IsA wedding ceremony) (STV 1.0 0.9091)) +(: cnet_isa_087ef946ab (IsA wedding party) (STV 1.0 0.9091)) +(: cnet_isa_71b6e64b61 (IsA wedding_anniversary anniversary) (STV 1.0 0.9091)) +(: cnet_isa_c107426468 (IsA wedding_cake cake) (STV 1.0 0.9091)) +(: cnet_isa_f50b420066 (IsA wedding_day day) (STV 1.0 0.9091)) +(: cnet_isa_061866dbec (IsA wedding_guest guest) (STV 1.0 0.9091)) +(: cnet_isa_7d57dc8479 (IsA wedding_march processional_march) (STV 1.0 0.9091)) +(: cnet_isa_0831b23d34 (IsA wedding_night night) (STV 1.0 0.9091)) +(: cnet_isa_784759c338 (IsA wedding_picture picture) (STV 1.0 0.9091)) +(: cnet_isa_c6a1a6fd19 (IsA wedding_present present) (STV 1.0 0.9091)) +(: cnet_isa_a2d2e165e4 (IsA wedding_reception reception) (STV 1.0 0.9091)) +(: cnet_isa_bbdfa06455 (IsA wedding_ring ring) (STV 1.0 0.9091)) +(: cnet_isa_870ee05de7 (IsA wedge inclined_plane) (STV 1.0 0.9091)) +(: cnet_isa_334ca6b644 (IsA wedge iron) (STV 1.0 0.9091)) +(: cnet_isa_76828d4a02 (IsA wedge triangle) (STV 1.0 0.9091)) +(: cnet_isa_ce5c3dbd6c (IsA wedge_bone cut_of_beef) (STV 1.0 0.9091)) +(: cnet_isa_a91c192c6a (IsA wedge_heel heel) (STV 1.0 0.9091)) +(: cnet_isa_b68b7f5a8a (IsA wedgie shoe) (STV 1.0 0.9091)) +(: cnet_isa_b0dd9c7787 (IsA wednesday weekday) (STV 1.0 0.9091)) +(: cnet_isa_4c34b2a741 (IsA wee time) (STV 1.0 0.9091)) +(: cnet_isa_36f1650ce9 (IsA wee_small_voice conscience) (STV 1.0 0.9091)) +(: cnet_isa_1b6ff7d048 (IsA weeb egg) (STV 1.0 0.9091)) +(: cnet_isa_1eddd20587 (IsA weed vascular_plant) (STV 1.0 0.9091)) +(: cnet_isa_94c19a8697 (IsA weeder hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_94b7979ada (IsA weeder farmhand) (STV 1.0 0.9091)) +(: cnet_isa_654dfbe5c5 (IsA weed band) (STV 1.0 0.9091)) +(: cnet_isa_7e050794d2 (IsA weed garment) (STV 1.0 0.9091)) +(: cnet_isa_24b448abd9 (IsA week measurement_of_time) (STV 1.0 0.9091)) +(: cnet_isa_4f3c26ceba (IsA week time_period) (STV 1.0 0.9091)) +(: cnet_isa_deffd13d84 (IsA week_from_monday week) (STV 1.0 0.9091)) +(: cnet_isa_00031b9d13 (IsA weekday day_of_week) (STV 1.0 0.9091)) +(: cnet_isa_c050790be9 (IsA weekend time_period) (STV 1.0 0.9091)) +(: cnet_isa_3dbd72ab1f (IsA weekend_warrior reservist) (STV 1.0 0.9091)) +(: cnet_isa_ad03ba543d (IsA weekend_warrior homeowner) (STV 1.0 0.9091)) +(: cnet_isa_fde32c7226 (IsA weekender bag) (STV 1.0 0.9091)) +(: cnet_isa_ab040f5851 (IsA weekender vacationer) (STV 1.0 0.9091)) +(: cnet_isa_98971973fa (IsA weekly sery) (STV 1.0 0.9091)) +(: cnet_isa_7623bffd59 (IsA weeknight night) (STV 1.0 0.9091)) +(: cnet_isa_90543b44a4 (IsA weeper mourner) (STV 1.0 0.9091)) +(: cnet_isa_3e63d98f08 (IsA weeper unfortunate) (STV 1.0 0.9091)) +(: cnet_isa_60e9e11d5d (IsA weepiness sadness) (STV 1.0 0.9091)) +(: cnet_isa_a63a0a1559 (IsA weeping_beech beech) (STV 1.0 0.9091)) +(: cnet_isa_e1a0510052 (IsA weeping_love_grass love_grass) (STV 1.0 0.9091)) +(: cnet_isa_c7def1fdaa (IsA weeping_spruce spruce) (STV 1.0 0.9091)) +(: cnet_isa_f1b0a651b1 (IsA weeping_tree_broom broom) (STV 1.0 0.9091)) +(: cnet_isa_eebedf85f6 (IsA weeping_willow willow) (STV 1.0 0.9091)) +(: cnet_isa_090b33206d (IsA weevil beetle) (STV 1.0 0.9091)) +(: cnet_isa_08a88c7060 (IsA wei dynasty) (STV 1.0 0.9091)) +(: cnet_isa_6b77d11aa3 (IsA weigela shrub) (STV 1.0 0.9091)) +(: cnet_isa_c84a047218 (IsA weighbridge scale) (STV 1.0 0.9091)) +(: cnet_isa_75f1f9a8b2 (IsA weigher official) (STV 1.0 0.9091)) +(: cnet_isa_41be691c5d (IsA weight artifact) (STV 1.0 0.9091)) +(: cnet_isa_6c8c25c30c (IsA weight sport_equipment) (STV 1.0 0.9091)) +(: cnet_isa_5e7604c3c6 (IsA weight importance) (STV 1.0 0.9091)) +(: cnet_isa_3cd06be66a (IsA weight physical_property) (STV 1.0 0.9091)) +(: cnet_isa_d56686c5ea (IsA weight oppression) (STV 1.0 0.9091)) +(: cnet_isa_4819ae9dbe (IsA weight coefficient) (STV 1.0 0.9091)) +(: cnet_isa_593735f0f7 (IsA weight_gaining bodybuilding) (STV 1.0 0.9091)) +(: cnet_isa_964aa48794 (IsA weight_lifting form_of_exercise) (STV 1.0 0.9339)) +(: cnet_isa_536f4c52e7 (IsA weight_unit unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_15a51bd7e4 (IsA weightlifter athlete) (STV 1.0 0.9091)) +(: cnet_isa_1b7497ae28 (IsA weightlifting bodybuilding) (STV 1.0 0.9091)) +(: cnet_isa_9c81e0b999 (IsA weil_s_disease swamp_fever) (STV 1.0 0.9091)) +(: cnet_isa_d4c725ec62 (IsA weimar_republic democracy) (STV 1.0 0.9091)) +(: cnet_isa_1e6f7bffc3 (IsA weimaraner hound) (STV 1.0 0.9091)) +(: cnet_isa_a1a6f6a583 (IsA weir dam) (STV 1.0 0.9091)) +(: cnet_isa_b119032759 (IsA weir fence) (STV 1.0 0.9091)) +(: cnet_isa_50204c86e0 (IsA weird anglo_saxon_deity) (STV 1.0 0.9091)) +(: cnet_isa_48f6c2819b (IsA weird_sister norse_deity) (STV 1.0 0.9091)) +(: cnet_isa_34089edf99 (IsA weissbier ale) (STV 1.0 0.9091)) +(: cnet_isa_15610b8a86 (IsA weizenbier weissbier) (STV 1.0 0.9091)) +(: cnet_isa_7e13145428 (IsA weizenbock weissbier) (STV 1.0 0.9091)) +(: cnet_isa_0201caf52e (IsA weka rail) (STV 1.0 0.9091)) +(: cnet_isa_f08a061016 (IsA welcher swindler) (STV 1.0 0.9091)) +(: cnet_isa_54c6d40352 (IsA welcome greeting) (STV 1.0 0.9091)) +(: cnet_isa_fb57409cee (IsA welcome acceptance) (STV 1.0 0.9091)) +(: cnet_isa_85cd90e168 (IsA welcome_wagon wheeled_vehicle) (STV 1.0 0.9091)) +(: cnet_isa_916d78165f (IsA welcoming_committee committee) (STV 1.0 0.9091)) +(: cnet_isa_32b67b7bb1 (IsA weld joint) (STV 1.0 0.9091)) +(: cnet_isa_ff7da7311a (IsA welder_s_mask mask) (STV 1.0 0.9091)) +(: cnet_isa_2097b2febb (IsA welder craftsman) (STV 1.0 0.9091)) +(: cnet_isa_24e89005cb (IsA welding fastening) (STV 1.0 0.9091)) +(: cnet_isa_77ab3e6980 (IsA weldment assembly) (STV 1.0 0.9091)) +(: cnet_isa_a3ae35111d (IsA welfare_case case) (STV 1.0 0.9091)) +(: cnet_isa_a14faaa94b (IsA welfare_state state) (STV 1.0 0.9091)) +(: cnet_isa_3c0eb82056 (IsA welfare_work work) (STV 1.0 0.9091)) +(: cnet_isa_5bba84850a (IsA well compartment) (STV 1.0 0.9091)) +(: cnet_isa_3937aa3321 (IsA well excavation) (STV 1.0 0.9091)) +(: cnet_isa_91e80df97a (IsA well shaft) (STV 1.0 0.9091)) +(: cnet_isa_cff6f51a68 (IsA well vessel) (STV 1.0 0.9091)) +(: cnet_isa_c84b7ecb67 (IsA well source) (STV 1.0 0.9091)) +(: cnet_isa_3ebdda9b0e (IsA well_point tube) (STV 1.0 0.9091)) +(: cnet_isa_076d633c3c (IsA well_wishing greeting) (STV 1.0 0.9091)) +(: cnet_isa_f7669a8807 (IsA wellbeing prosperity) (STV 1.0 0.9091)) +(: cnet_isa_8624423a16 (IsA wellerism rhetorical_device) (STV 1.0 0.9091)) +(: cnet_isa_7941802ae9 (IsA wellhead structure) (STV 1.0 0.9091)) +(: cnet_isa_e1563d97cf (IsA wellhead beginning) (STV 1.0 0.9091)) +(: cnet_isa_674563df9d (IsA welsh cattle) (STV 1.0 0.9091)) +(: cnet_isa_46920b7083 (IsA welsh brythonic) (STV 1.0 0.9091)) +(: cnet_isa_f3444faa67 (IsA welsh_onion onion) (STV 1.0 0.9091)) +(: cnet_isa_ea5b8c9366 (IsA welsh_pony pony) (STV 1.0 0.9091)) +(: cnet_isa_992d1eaf29 (IsA welsh_poppy poppy) (STV 1.0 0.9091)) +(: cnet_isa_6408c97d98 (IsA welsh_rarebit dish) (STV 1.0 0.9091)) +(: cnet_isa_dfca7768e5 (IsA welsh_springer_spaniel springer_spaniel) (STV 1.0 0.9091)) +(: cnet_isa_03d0358625 (IsA welsh_terrier wirehair) (STV 1.0 0.9091)) +(: cnet_isa_db52883414 (IsA welt seam) (STV 1.0 0.9091)) +(: cnet_isa_749791c4d6 (IsA weltanschauung position) (STV 1.0 0.9091)) +(: cnet_isa_6a6282d6c9 (IsA welted_thistle thistle) (STV 1.0 0.9091)) +(: cnet_isa_ec76994ffa (IsA welterweight boxer) (STV 1.0 0.9091)) +(: cnet_isa_c6ce1a1bdf (IsA welterweight prizefighter) (STV 1.0 0.9091)) +(: cnet_isa_ecf1a6b8ee (IsA welterweight wrestler) (STV 1.0 0.9091)) +(: cnet_isa_9b0fab3e49 (IsA welterweight weight_unit) (STV 1.0 0.9091)) +(: cnet_isa_4105338d49 (IsA welwitschia gymnosperm) (STV 1.0 0.9091)) +(: cnet_isa_4722c995e4 (IsA welwitschiaceae gymnosperm_family) (STV 1.0 0.9091)) +(: cnet_isa_ae0b604780 (IsA wencher adulterer) (STV 1.0 0.9091)) +(: cnet_isa_ef27d208cd (IsA wendy_s fast_food_resturant) (STV 1.0 0.9091)) +(: cnet_isa_c4d75b3623 (IsA werdnig_hoffman_disease autosomal_recessive_disease) (STV 1.0 0.9091)) +(: cnet_isa_e842ce9544 (IsA werewolf monster) (STV 1.0 0.9339)) +(: cnet_isa_ec38349dd7 (IsA werewolf mythical_monster) (STV 1.0 0.9091)) +(: cnet_isa_3a47c5e6e3 (IsA wernicke_s_aphasia aphasia) (STV 1.0 0.9091)) +(: cnet_isa_b5000172ee (IsA wernicke_s_area center) (STV 1.0 0.9091)) +(: cnet_isa_2f64f63317 (IsA wernicke_s_encephalopathy brain_disorder) (STV 1.0 0.9091)) +(: cnet_isa_3e556433a0 (IsA wesleyan methodist) (STV 1.0 0.9091)) +(: cnet_isa_02c3f9ad24 (IsA wesleyan_methodist_church methodist_denomination) (STV 1.0 0.9091)) +(: cnet_isa_c6254a4b16 (IsA wesleyanism protestantism) (STV 1.0 0.9091)) +(: cnet_isa_671618c5c3 (IsA west cardinal_compass_point) (STV 1.0 0.9091)) +(: cnet_isa_cc7bf37642 (IsA west direction) (STV 1.0 0.9091)) +(: cnet_isa_3652367843 (IsA west location) (STV 1.0 0.9091)) +(: cnet_isa_857419936b (IsA west_african niger_congo) (STV 1.0 0.9091)) +(: cnet_isa_9bdf4e89e0 (IsA west_berliner berliner) (STV 1.0 0.9091)) +(: cnet_isa_8f5d8dabef (IsA west_by_north compass_point) (STV 1.0 0.9091)) +(: cnet_isa_8a6d9e370d (IsA west_by_south compass_point) (STV 1.0 0.9091)) +(: cnet_isa_6e3287cb2f (IsA west_chadic chad) (STV 1.0 0.9091)) +(: cnet_isa_755bfdf8bc (IsA west_germanic germanic) (STV 1.0 0.9091)) +(: cnet_isa_6d98ce067d (IsA west_highland_white_terrier terrier) (STV 1.0 0.9091)) +(: cnet_isa_d0b88b5a8d (IsA west_indian american) (STV 1.0 0.9091)) +(: cnet_isa_6d609f4fbb (IsA west_indian_jasmine frangipani) (STV 1.0 0.9091)) +(: cnet_isa_945c0d1510 (IsA west_midland middle_english) (STV 1.0 0.9091)) +(: cnet_isa_572ecb35e8 (IsA west_nile_encephalitis encephalitis) (STV 1.0 0.9091)) +(: cnet_isa_dda3fdc880 (IsA west_nile_virus flavivirus) (STV 1.0 0.9091)) +(: cnet_isa_66c32350f7 (IsA west_northwest compass_point) (STV 1.0 0.9091)) +(: cnet_isa_4dd4441243 (IsA west_saxon old_english) (STV 1.0 0.9091)) +(: cnet_isa_6693a67ea1 (IsA west_saxon saxon) (STV 1.0 0.9091)) +(: cnet_isa_272fe50bf6 (IsA west_side side) (STV 1.0 0.9091)) +(: cnet_isa_670ee31a54 (IsA west_sider new_yorker) (STV 1.0 0.9091)) +(: cnet_isa_8c17bfe2e8 (IsA west_southwest compass_point) (STV 1.0 0.9091)) +(: cnet_isa_48a49083a6 (IsA west_virginia state) (STV 1.0 0.9454)) +(: cnet_isa_101addbb6d (IsA west_virginian american) (STV 1.0 0.9091)) +(: cnet_isa_da47c59527 (IsA west_wind wind) (STV 1.0 0.9091)) +(: cnet_isa_763f412e5e (IsA western feature) (STV 1.0 0.9091)) +(: cnet_isa_89967dda14 (IsA western sandwich) (STV 1.0 0.9091)) +(: cnet_isa_a818282f91 (IsA western_australia_coral_pea vine) (STV 1.0 0.9091)) +(: cnet_isa_4729a15ac3 (IsA western_big_eared_bat long_eared_bat) (STV 1.0 0.9091)) +(: cnet_isa_d1e7dbdc84 (IsA western_blackberry blackberry) (STV 1.0 0.9091)) +(: cnet_isa_3b4f59bb37 (IsA western_blind_snake blind_snake) (STV 1.0 0.9091)) +(: cnet_isa_bdce2fdd40 (IsA western_box_turtle box_turtle) (STV 1.0 0.9091)) +(: cnet_isa_8759cc109b (IsA western_buttercup buttercup) (STV 1.0 0.9091)) +(: cnet_isa_196072c46f (IsA western_chimpanzee chimpanzee) (STV 1.0 0.9091)) +(: cnet_isa_dbfff21bb1 (IsA western_chokecherry chokecherry) (STV 1.0 0.9091)) +(: cnet_isa_805f0d839e (IsA western_coral_snake coral_snake) (STV 1.0 0.9091)) +(: cnet_isa_3632d66786 (IsA western_culture culture) (STV 1.0 0.9091)) +(: cnet_isa_b8fcfdc159 (IsA western_diamondback rattlesnake) (STV 1.0 0.9091)) +(: cnet_isa_ab8b5227dd (IsA western_fence_lizard fence_lizard) (STV 1.0 0.9091)) +(: cnet_isa_c028a725c0 (IsA western_gray_squirrel tree_squirrel) (STV 1.0 0.9091)) +(: cnet_isa_27386384b6 (IsA western_hemisphere hemisphere) (STV 1.0 0.9091)) +(: cnet_isa_9beba89277 (IsA western_hemlock hemlock) (STV 1.0 0.9091)) +(: cnet_isa_53faad3d4c (IsA western_holly_fern holly_fern) (STV 1.0 0.9091)) +(: cnet_isa_219d38ea27 (IsA western_lady_tress lady_tress) (STV 1.0 0.9091)) +(: cnet_isa_1b8606f710 (IsA western_larch larch) (STV 1.0 0.9091)) +(: cnet_isa_6f508165c4 (IsA western_lowland_gorilla gorilla) (STV 1.0 0.9091)) +(: cnet_isa_599c6aee7c (IsA western_malayo_polynesian malayo_polynesian) (STV 1.0 0.9091)) +(: cnet_isa_f0372b2c4a (IsA western_meadowlark meadowlark) (STV 1.0 0.9091)) +(: cnet_isa_cda1261cec (IsA western_mountain_ash mountain_ash) (STV 1.0 0.9091)) +(: cnet_isa_58a1ca4c3f (IsA western_mugwort mugwort) (STV 1.0 0.9091)) +(: cnet_isa_bff2d3a4b9 (IsA western_narrow_mouthed_toad frog) (STV 1.0 0.9091)) +(: cnet_isa_544c4494dd (IsA western_omelet firm_omelet) (STV 1.0 0.9091)) +(: cnet_isa_f932aaa267 (IsA western_pasqueflower pasqueflower) (STV 1.0 0.9091)) +(: cnet_isa_66eee77444 (IsA western_pipistrel vespertilian_bat) (STV 1.0 0.9091)) +(: cnet_isa_69f0d7d195 (IsA western_poison_oak poisonous_plant) (STV 1.0 0.9091)) +(: cnet_isa_0c77d837a2 (IsA western_poppy poppy) (STV 1.0 0.9091)) +(: cnet_isa_31f6ed2e30 (IsA western_ragweed ragweed) (STV 1.0 0.9091)) +(: cnet_isa_4a4027d7d8 (IsA western_red_backed_salamander salamander) (STV 1.0 0.9091)) +(: cnet_isa_d157932455 (IsA western_red_cedar arborvitae) (STV 1.0 0.9091)) +(: cnet_isa_d648d66709 (IsA western_redbud shrub) (STV 1.0 0.9091)) +(: cnet_isa_8a786e4eb7 (IsA western_ribbon_snake garter_snake) (STV 1.0 0.9091)) +(: cnet_isa_775ab11aff (IsA western_samoan_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_5ab8e8a3be (IsA western_sand_cherry subshrub) (STV 1.0 0.9091)) +(: cnet_isa_138cf348d4 (IsA western_saxifrage saxifrage) (STV 1.0 0.9091)) +(: cnet_isa_2db6435919 (IsA western_silvery_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_aef54cef51 (IsA western_skink skink) (STV 1.0 0.9091)) +(: cnet_isa_7ba7ce60d1 (IsA western_spadefoot spadefoot) (STV 1.0 0.9091)) +(: cnet_isa_fd6caab396 (IsA western_tanager tanager) (STV 1.0 0.9091)) +(: cnet_isa_eaf4d47452 (IsA western_toad true_toad) (STV 1.0 0.9091)) +(: cnet_isa_1071e95499 (IsA western_wall_flower flower) (STV 1.0 0.9091)) +(: cnet_isa_b35ec695d0 (IsA western_wheatgrass wheatgrass) (STV 1.0 0.9091)) +(: cnet_isa_cd9a6aaeba (IsA western_whiptail whiptail) (STV 1.0 0.9091)) +(: cnet_isa_8f7abd82d1 (IsA western_white_pine white_pine) (STV 1.0 0.9091)) +(: cnet_isa_1ca6747942 (IsA western_wood_pewee pewee) (STV 1.0 0.9091)) +(: cnet_isa_e01c517ff9 (IsA westerner inhabitant) (STV 1.0 0.9091)) +(: cnet_isa_05e33c6f0b (IsA westernization assimilation) (STV 1.0 0.9091)) +(: cnet_isa_9d85db6d6f (IsA westland_pine conifer) (STV 1.0 0.9091)) +(: cnet_isa_cc8e867655 (IsA wet_bar bar) (STV 1.0 0.9091)) +(: cnet_isa_8b65736f48 (IsA wet_bulb_thermometer thermometer) (STV 1.0 0.9091)) +(: cnet_isa_c2edd6a7b8 (IsA wet_cell voltaic_cell) (STV 1.0 0.9091)) +(: cnet_isa_2dcb3beff0 (IsA wet_dream dream) (STV 1.0 0.9091)) +(: cnet_isa_554cd2284a (IsA wet_fly fly) (STV 1.0 0.9091)) +(: cnet_isa_19e9bf923d (IsA wet_nurse nanny) (STV 1.0 0.9091)) +(: cnet_isa_e944e81e95 (IsA wet_suit garment) (STV 1.0 0.9091)) +(: cnet_isa_d3f6d4ac3a (IsA wether sheep) (STV 1.0 0.9091)) +(: cnet_isa_9f3f0b979f (IsA wetland land) (STV 1.0 0.9091)) +(: cnet_isa_54a618c5d1 (IsA wetness condition) (STV 1.0 0.9091)) +(: cnet_isa_99d846afe2 (IsA wetter workman) (STV 1.0 0.9091)) +(: cnet_isa_d38cf51cb8 (IsA wetting change_of_state) (STV 1.0 0.9091)) +(: cnet_isa_f10fbd71b6 (IsA wetting_agent chemical_agent) (STV 1.0 0.9091)) +(: cnet_isa_f2e99fd7e4 (IsA whack sound) (STV 1.0 0.9091)) +(: cnet_isa_9e8d60ccad (IsA whacker thing) (STV 1.0 0.9091)) +(: cnet_isa_4c1e2311c3 (IsA whale mammal) (STV 1.0 0.9339)) +(: cnet_isa_73bc5ad2dd (IsA whale marine_mammal) (STV 1.0 0.9339)) +(: cnet_isa_4056d72f73 (IsA whale cetacean) (STV 1.0 0.9091)) +(: cnet_isa_11da1c45f1 (IsA whale_louse amphipod) (STV 1.0 0.9091)) +(: cnet_isa_2620229f6a (IsA whale_oil animal_oil) (STV 1.0 0.9091)) +(: cnet_isa_1301a1e9b9 (IsA whale_shark shark) (STV 1.0 0.9091)) +(: cnet_isa_ec232c15d0 (IsA whale_sucker remora) (STV 1.0 0.9091)) +(: cnet_isa_ea8f49e790 (IsA whaleboat sea_boat) (STV 1.0 0.9091)) +(: cnet_isa_f8592b1f05 (IsA whalebone horn) (STV 1.0 0.9091)) +(: cnet_isa_6cd76c1c87 (IsA whaler ship) (STV 1.0 0.9091)) +(: cnet_isa_39e2c67461 (IsA whaler mariner) (STV 1.0 0.9091)) +(: cnet_isa_79b7e37e7d (IsA whale large_marine_mammal) (STV 1.0 0.9091)) +(: cnet_isa_5287968a67 (IsA whaling_gun gun) (STV 1.0 0.9091)) +(: cnet_isa_b3eaaf3fd7 (IsA whammy reverse) (STV 1.0 0.9091)) +(: cnet_isa_23265402d1 (IsA wharf_rat brown_rat) (STV 1.0 0.9091)) +(: cnet_isa_f226176189 (IsA wharf_rat sneak_thief) (STV 1.0 0.9091)) +(: cnet_isa_b08b998d2b (IsA wharfage fee) (STV 1.0 0.9091)) +(: cnet_isa_310bdd0852 (IsA what_for rebuke) (STV 1.0 0.9091)) +(: cnet_isa_37368c0cfb (IsA whatchamacallit object) (STV 1.0 0.9091)) +(: cnet_isa_c8b74efa2e (IsA wheat grain) (STV 1.0 0.9454)) +(: cnet_isa_37c47cfe6e (IsA wheat grass) (STV 1.0 0.9091)) +(: cnet_isa_4c89f4eac8 (IsA wheat cereal) (STV 1.0 0.9091)) +(: cnet_isa_76a6be8f09 (IsA wheat_berry grain) (STV 1.0 0.9091)) +(: cnet_isa_5aa6c6a506 (IsA wheat_flag_smut flag_smut_fungus) (STV 1.0 0.9091)) +(: cnet_isa_401972b1ea (IsA wheat_flour flour) (STV 1.0 0.9091)) +(: cnet_isa_9e54f8a6fe (IsA wheat_future future) (STV 1.0 0.9091)) +(: cnet_isa_54074345b2 (IsA wheat_germ nutriment) (STV 1.0 0.9091)) +(: cnet_isa_952fde0b3f (IsA wheat_gluten gluten) (STV 1.0 0.9091)) +(: cnet_isa_dfd62e5cf3 (IsA wheat_rust rust) (STV 1.0 0.9091)) +(: cnet_isa_6ef52fe737 (IsA wheat_scab head_blight) (STV 1.0 0.9091)) +(: cnet_isa_81e865709b (IsA wheatear thrush) (STV 1.0 0.9091)) +(: cnet_isa_b836eefbe1 (IsA wheatfield grainfield) (STV 1.0 0.9091)) +(: cnet_isa_1ea57f25c7 (IsA wheatflake cold_cereal) (STV 1.0 0.9091)) +(: cnet_isa_a058f89355 (IsA wheatgrass grass) (STV 1.0 0.9091)) +(: cnet_isa_18daca22ba (IsA wheatstone_bridge bridge) (STV 1.0 0.9091)) +(: cnet_isa_a81f3d3628 (IsA wheatworm nematode) (STV 1.0 0.9091)) +(: cnet_isa_678d28b074 (IsA wheedler persuader) (STV 1.0 0.9091)) +(: cnet_isa_c7ede41c0e (IsA wheel helm) (STV 1.0 0.9091)) +(: cnet_isa_730dd11b4c (IsA wheel machine) (STV 1.0 0.9091)) +(: cnet_isa_d7d39cf8b7 (IsA wheel force) (STV 1.0 0.9091)) +(: cnet_isa_6870327634 (IsA wheel_and_axle hoist) (STV 1.0 0.9091)) +(: cnet_isa_f95a13c061 (IsA wheel_bug assassin_bug) (STV 1.0 0.9091)) +(: cnet_isa_6879e5fb1b (IsA wheel_chart slide_chart) (STV 1.0 0.9091)) +(: cnet_isa_ba9bdb06e4 (IsA wheel_horse draft_horse) (STV 1.0 0.9091)) +(: cnet_isa_dd228f71d7 (IsA wheel_lock gunlock) (STV 1.0 0.9091)) +(: cnet_isa_0b513cab1f (IsA wheel_tree tree) (STV 1.0 0.9091)) +(: cnet_isa_4553c6132e (IsA wheelbase distance) (STV 1.0 0.9091)) +(: cnet_isa_bc9f02e4ec (IsA wheelchair chair) (STV 1.0 0.9339)) +(: cnet_isa_d321d8f0fa (IsA wheeled_vehicle container) (STV 1.0 0.9091)) +(: cnet_isa_f510c5f825 (IsA wheeled_vehicle vehicle) (STV 1.0 0.9091)) +(: cnet_isa_b9d09a5d85 (IsA wheeler marcher) (STV 1.0 0.9091)) +(: cnet_isa_a3a192278e (IsA wheeling propulsion) (STV 1.0 0.9091)) +(: cnet_isa_3ba0c45622 (IsA wheelwork mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_52ee41287b (IsA wheelwright wright) (STV 1.0 0.9091)) +(: cnet_isa_37ee5fa20a (IsA wheeze breathing) (STV 1.0 0.9091)) +(: cnet_isa_942eb4dfcc (IsA wheeze scheme) (STV 1.0 0.9091)) +(: cnet_isa_91f0dbd195 (IsA wheeziness symptom) (STV 1.0 0.9091)) +(: cnet_isa_e45f7a2637 (IsA whelk seasnail) (STV 1.0 0.9091)) +(: cnet_isa_189b856094 (IsA whelk seafood) (STV 1.0 0.9091)) +(: cnet_isa_cb51be8abc (IsA whereabout location) (STV 1.0 0.9091)) +(: cnet_isa_a886c5a040 (IsA wherewithal mean) (STV 1.0 0.9091)) +(: cnet_isa_6ee154cba4 (IsA wherry barge) (STV 1.0 0.9091)) +(: cnet_isa_b00804daca (IsA wherry dinghy) (STV 1.0 0.9091)) +(: cnet_isa_36dca86fc0 (IsA whetstone stone) (STV 1.0 0.9091)) +(: cnet_isa_26ad16753e (IsA whey dairy_product) (STV 1.0 0.9091)) +(: cnet_isa_2b7d04a897 (IsA whey serum) (STV 1.0 0.9091)) +(: cnet_isa_72dfcff409 (IsA whiff strikeout) (STV 1.0 0.9091)) +(: cnet_isa_6f60bc1b50 (IsA whiff lefteye_flounder) (STV 1.0 0.9091)) +(: cnet_isa_8846cde2a5 (IsA whiffer batter) (STV 1.0 0.9091)) +(: cnet_isa_22bd4dd4f7 (IsA whiffletree crossbar) (STV 1.0 0.9091)) +(: cnet_isa_337c1ef977 (IsA whig englishman) (STV 1.0 0.9091)) +(: cnet_isa_677ccd95ff (IsA whig liberal) (STV 1.0 0.9091)) +(: cnet_isa_cd1d77702d (IsA whig politician) (STV 1.0 0.9091)) +(: cnet_isa_ac180cfadf (IsA whig supporter) (STV 1.0 0.9091)) +(: cnet_isa_c03fb66759 (IsA whig_party party) (STV 1.0 0.9091)) +(: cnet_isa_b7b69f1fae (IsA while time) (STV 1.0 0.9091)) +(: cnet_isa_82fae4adf6 (IsA whimper complaint) (STV 1.0 0.9091)) +(: cnet_isa_57643d5777 (IsA whinchat old_world_chat) (STV 1.0 0.9091)) +(: cnet_isa_fcb1e8eb28 (IsA whiner unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_8229011a42 (IsA whinstone rock) (STV 1.0 0.9091)) +(: cnet_isa_8e4aa2088e (IsA whip blow) (STV 1.0 0.9091)) +(: cnet_isa_79a6c3c73a (IsA whip instrument) (STV 1.0 0.9091)) +(: cnet_isa_936b31fca7 (IsA whip dessert) (STV 1.0 0.9091)) +(: cnet_isa_9c35c7b967 (IsA whip flexibility) (STV 1.0 0.9091)) +(: cnet_isa_46ae49a663 (IsA whip legislator) (STV 1.0 0.9091)) +(: cnet_isa_e8520eb118 (IsA whip_round solicitation) (STV 1.0 0.9091)) +(: cnet_isa_ad93aa34e8 (IsA whip_scorpion arachnid) (STV 1.0 0.9091)) +(: cnet_isa_26672769f3 (IsA whip_snake colubrid_snake) (STV 1.0 0.9091)) +(: cnet_isa_c0e1cdc6a6 (IsA whipcord cord) (STV 1.0 0.9091)) +(: cnet_isa_63bae44eb3 (IsA whipcord fabric) (STV 1.0 0.9091)) +(: cnet_isa_a7c2c12fef (IsA whiplash injury) (STV 1.0 0.9091)) +(: cnet_isa_6cb297fa7c (IsA whipped_cream topping) (STV 1.0 0.9091)) +(: cnet_isa_98b31eecb1 (IsA whipper_in assistant) (STV 1.0 0.9091)) +(: cnet_isa_881b134efc (IsA whippersnapper cipher) (STV 1.0 0.9091)) +(: cnet_isa_c27bea9ed4 (IsA whippet greyhound) (STV 1.0 0.9091)) +(: cnet_isa_31f89e7d7b (IsA whipping beating) (STV 1.0 0.9091)) +(: cnet_isa_8526960ccb (IsA whipping_cream cream) (STV 1.0 0.9091)) +(: cnet_isa_ec7c3e1385 (IsA whipping_post post) (STV 1.0 0.9091)) +(: cnet_isa_4337b6f3b0 (IsA whipping_top top) (STV 1.0 0.9091)) +(: cnet_isa_85993efe74 (IsA whipple_s_penstemon wildflower) (STV 1.0 0.9091)) +(: cnet_isa_94c9bf393f (IsA whippoorwill goatsucker) (STV 1.0 0.9091)) +(: cnet_isa_72b922a9a2 (IsA whipstitch embroidery_stitch) (STV 1.0 0.9091)) +(: cnet_isa_b857f25af8 (IsA whiptail teiid_lizard) (STV 1.0 0.9091)) +(: cnet_isa_d836bf8136 (IsA whir sound) (STV 1.0 0.9091)) +(: cnet_isa_6ecf273476 (IsA whirl movement) (STV 1.0 0.9091)) +(: cnet_isa_1d79883ab0 (IsA whirl round_shape) (STV 1.0 0.9091)) +(: cnet_isa_1d6d70eeb1 (IsA whirler mechanism) (STV 1.0 0.9091)) +(: cnet_isa_e0a3d5650e (IsA whirligig_beetle beetle) (STV 1.0 0.9091)) +(: cnet_isa_f15260cff0 (IsA whirling_dervish dervish) (STV 1.0 0.9091)) +(: cnet_isa_1536bce150 (IsA whirlpool current) (STV 1.0 0.9091)) +(: cnet_isa_0ed72fcc58 (IsA whirlwind windstorm) (STV 1.0 0.9091)) +(: cnet_isa_3b03c2d66d (IsA whisk broom) (STV 1.0 0.9091)) +(: cnet_isa_e7bacd0979 (IsA whisk mixer) (STV 1.0 0.9091)) +(: cnet_isa_0d119f0c33 (IsA whisk_fern fern_ally) (STV 1.0 0.9091)) +(: cnet_isa_0ab94ca0ae (IsA whisker hair) (STV 1.0 0.9091)) +(: cnet_isa_283635a87d (IsA whiskey liquor) (STV 1.0 0.9091)) +(: cnet_isa_e54ebd270d (IsA whiskey_bottle bottle) (STV 1.0 0.9091)) +(: cnet_isa_0635b8dcff (IsA whiskey_jug jug) (STV 1.0 0.9091)) +(: cnet_isa_2cee3b09e3 (IsA whiskey_neat drink) (STV 1.0 0.9091)) +(: cnet_isa_6c76175c8f (IsA whiskey_on_rock drink) (STV 1.0 0.9091)) +(: cnet_isa_9538967338 (IsA whiskey_sour sour) (STV 1.0 0.9091)) +(: cnet_isa_7a3c2fedb7 (IsA whisper speaking) (STV 1.0 0.9091)) +(: cnet_isa_a55cb6fd87 (IsA whisperer speaker) (STV 1.0 0.9091)) +(: cnet_isa_c6daf5e403 (IsA whispering_campaign campaigning) (STV 1.0 0.9091)) +(: cnet_isa_c092502cf1 (IsA whispering_gallery dome) (STV 1.0 0.9091)) +(: cnet_isa_3b86856a90 (IsA whist card_game) (STV 1.0 0.9091)) +(: cnet_isa_249481c6de (IsA whist_drive party) (STV 1.0 0.9091)) +(: cnet_isa_2fecd7b7a3 (IsA whistle acoustic_device) (STV 1.0 0.9091)) +(: cnet_isa_daab573117 (IsA whistle signaling_device) (STV 1.0 0.9091)) +(: cnet_isa_5e58f3dbb6 (IsA whistle wind_instrument) (STV 1.0 0.9091)) +(: cnet_isa_b53c56e3bc (IsA whistle signal) (STV 1.0 0.9091)) +(: cnet_isa_4bdea31434 (IsA whistle sound) (STV 1.0 0.9091)) +(: cnet_isa_3cbdfba5f9 (IsA whistle_blower informant) (STV 1.0 0.9091)) +(: cnet_isa_db010fbb31 (IsA whistle_buoy acoustic_buoy) (STV 1.0 0.9091)) +(: cnet_isa_be574ecf8f (IsA whistle_stop railway_station) (STV 1.0 0.9091)) +(: cnet_isa_d5fdf61734 (IsA whistle_stop_tour tour) (STV 1.0 0.9091)) +(: cnet_isa_0da972fb36 (IsA whistler signaler) (STV 1.0 0.9091)) +(: cnet_isa_0ee2dc8c57 (IsA whistling music) (STV 1.0 0.9091)) +(: cnet_isa_4b8e09aab2 (IsA whistling_swan tundra_swan) (STV 1.0 0.9091)) +(: cnet_isa_c80d7f2921 (IsA whit_tuesday tuesday) (STV 1.0 0.9091)) +(: cnet_isa_be463257de (IsA white color) (STV 1.0 0.9091)) +(: cnet_isa_be6ea96971 (IsA white colour) (STV 1.0 0.9091)) +(: cnet_isa_c29aeef35d (IsA white achromatic_color) (STV 1.0 0.9091)) +(: cnet_isa_9d9055dacb (IsA white man) (STV 1.0 0.9091)) +(: cnet_isa_127fa5808f (IsA white_admiral nymphalid) (STV 1.0 0.9091)) +(: cnet_isa_cecbd82dc8 (IsA white_alder alder) (STV 1.0 0.9091)) +(: cnet_isa_101dd11f3d (IsA white_and_black opposite_color) (STV 1.0 0.9091)) +(: cnet_isa_03c9eaac86 (IsA white_anglo_saxon_protestant protestant) (STV 1.0 0.9091)) +(: cnet_isa_4caa966a66 (IsA white_anglo_saxon_protestant white_person) (STV 1.0 0.9091)) +(: cnet_isa_c1f68ab2b8 (IsA white_ash ash) (STV 1.0 0.9091)) +(: cnet_isa_a7b1f5f3e7 (IsA white_baneberry baneberry) (STV 1.0 0.9091)) +(: cnet_isa_83b48604af (IsA white_basswood linden) (STV 1.0 0.9091)) +(: cnet_isa_931658050f (IsA white_bellied_swallow swallow) (STV 1.0 0.9091)) +(: cnet_isa_fbb9afdef3 (IsA white_berry_yew yew) (STV 1.0 0.9091)) +(: cnet_isa_f698804ff8 (IsA white_book report) (STV 1.0 0.9091)) +(: cnet_isa_a511d7c445 (IsA white_bread bread) (STV 1.0 0.9091)) +(: cnet_isa_e7f1f17599 (IsA white_breasted_nuthatch nuthatch) (STV 1.0 0.9091)) +(: cnet_isa_1960701730 (IsA white_broom broom) (STV 1.0 0.9091)) +(: cnet_isa_40f1c3eb81 (IsA white_bryony bryony) (STV 1.0 0.9091)) +(: cnet_isa_4bb98c97f3 (IsA white_cake cake) (STV 1.0 0.9091)) +(: cnet_isa_f84537cd3b (IsA white_cama death_cama) (STV 1.0 0.9091)) +(: cnet_isa_41d2e785e6 (IsA white_campion silene) (STV 1.0 0.9091)) +(: cnet_isa_72018557c6 (IsA white_chinned_petrel petrel) (STV 1.0 0.9091)) +(: cnet_isa_8fb44008c5 (IsA white_chocolate chocolate) (STV 1.0 0.9091)) +(: cnet_isa_8d568d2347 (IsA white_clover clover) (STV 1.0 0.9091)) +(: cnet_isa_9ce6070990 (IsA white_coat_hypertension high_blood_pressure) (STV 1.0 0.9091)) +(: cnet_isa_e8b392c494 (IsA white_crappie crappie) (STV 1.0 0.9091)) +(: cnet_isa_ea66abae61 (IsA white_croaker croaker) (STV 1.0 0.9091)) +(: cnet_isa_365e6c3497 (IsA white_crowned_sparrow new_world_sparrow) (STV 1.0 0.9091)) +(: cnet_isa_8fe0f75b39 (IsA white_currant currant) (STV 1.0 0.9091)) +(: cnet_isa_2251e7a9dc (IsA white_cypress_pine cypress_pine) (STV 1.0 0.9091)) +(: cnet_isa_b6b348bb74 (IsA white_dead_nettle dead_nettle) (STV 1.0 0.9091)) +(: cnet_isa_62919da4fd (IsA white_dipladenia liana) (STV 1.0 0.9091)) +(: cnet_isa_1560ffebd3 (IsA white_dogtooth_violet dogtooth_violet) (STV 1.0 0.9091)) +(: cnet_isa_b99e2cf77b (IsA white_dwarf star) (STV 1.0 0.9091)) +(: cnet_isa_a1782c3342 (IsA white_elephant indian_elephant) (STV 1.0 0.9091)) +(: cnet_isa_6f3a6f343f (IsA white_elephant possession) (STV 1.0 0.9091)) +(: cnet_isa_9aae106547 (IsA white_false_indigo wild_indigo) (STV 1.0 0.9091)) +(: cnet_isa_5cc2e2ef56 (IsA white_feather symbol) (STV 1.0 0.9091)) +(: cnet_isa_1d2fa0f4bc (IsA white_fir silver_fir) (STV 1.0 0.9091)) +(: cnet_isa_456814c7bc (IsA white_flag flag) (STV 1.0 0.9091)) +(: cnet_isa_9fd9f45de9 (IsA white_footed_mouse wood_mouse) (STV 1.0 0.9091)) +(: cnet_isa_134c2d15ed (IsA white_friar friar) (STV 1.0 0.9091)) +(: cnet_isa_72f1968591 (IsA white_fringed_orchis fringed_orchis) (STV 1.0 0.9091)) +(: cnet_isa_38c5136ff2 (IsA white_fritillary fritillary) (STV 1.0 0.9091)) +(: cnet_isa_07f4f98016 (IsA white_fungus fungus) (STV 1.0 0.9091)) +(: cnet_isa_4ef6c83b5f (IsA white_globe_lily globe_lily) (STV 1.0 0.9091)) +(: cnet_isa_5d33dbf369 (IsA white_gold alloy) (STV 1.0 0.9091)) +(: cnet_isa_330285c2be (IsA white_good drygood) (STV 1.0 0.9091)) +(: cnet_isa_ee3534204a (IsA white_good home_appliance) (STV 1.0 0.9091)) +(: cnet_isa_c438944764 (IsA white_headed_stilt stilt) (STV 1.0 0.9091)) +(: cnet_isa_87f59bf270 (IsA white_heat hotness) (STV 1.0 0.9091)) +(: cnet_isa_1777bc0a53 (IsA white_heather heath) (STV 1.0 0.9091)) +(: cnet_isa_feee12e571 (IsA white_hellebore hellebore) (STV 1.0 0.9091)) +(: cnet_isa_cce4311a1a (IsA white_honeysuckle honeysuckle) (STV 1.0 0.9091)) +(: cnet_isa_68025ac13f (IsA white_hope hope) (STV 1.0 0.9091)) +(: cnet_isa_859cd1ceaa (IsA white_house in_washington_d_c) (STV 1.0 0.9091)) +(: cnet_isa_ee775e2a5b (IsA white_house where_president_live) (STV 1.0 0.9091)) +(: cnet_isa_c708084674 (IsA white_house executive_department) (STV 1.0 0.9091)) +(: cnet_isa_e25dd38f99 (IsA white_knight company) (STV 1.0 0.9091)) +(: cnet_isa_de3a018d9d (IsA white_lead pigment) (STV 1.0 0.9091)) +(: cnet_isa_8ee706595e (IsA white_leather leather) (STV 1.0 0.9091)) +(: cnet_isa_d2644452fd (IsA white_leaved_rockrose rockrose) (STV 1.0 0.9091)) +(: cnet_isa_0efe2c17d2 (IsA white_lettuce rattlesnake_root) (STV 1.0 0.9091)) +(: cnet_isa_595e7f415c (IsA white_lie lie) (STV 1.0 0.9091)) +(: cnet_isa_28afde9397 (IsA white_line reference_point) (STV 1.0 0.9091)) +(: cnet_isa_2c74b52d18 (IsA white_lipped_peccary peccary) (STV 1.0 0.9091)) +(: cnet_isa_c147a13fcd (IsA white_lupine lupine) (STV 1.0 0.9091)) +(: cnet_isa_e0c91dccb6 (IsA white_magic magic) (STV 1.0 0.9091)) +(: cnet_isa_73af1562b5 (IsA white_maire olive_tree) (STV 1.0 0.9091)) +(: cnet_isa_d291831f33 (IsA white_mallee mallee) (STV 1.0 0.9091)) +(: cnet_isa_72fb921c79 (IsA white_man_s_burden duty) (STV 1.0 0.9091)) +(: cnet_isa_8f6513c2d8 (IsA white_man man) (STV 1.0 0.9091)) +(: cnet_isa_64dd68980d (IsA white_man white_person) (STV 1.0 0.9091)) +(: cnet_isa_d56b22b51c (IsA white_mangrove tree) (STV 1.0 0.9091)) +(: cnet_isa_8fd7a94cc3 (IsA white_marlin marlin) (STV 1.0 0.9091)) +(: cnet_isa_f287b2e9c0 (IsA white_matter nervous_tissue) (STV 1.0 0.9091)) +(: cnet_isa_88cbcaf319 (IsA white_metal alloy) (STV 1.0 0.9091)) +(: cnet_isa_7e82d4c767 (IsA white_milkweed milkweed) (STV 1.0 0.9091)) +(: cnet_isa_4ca7bb88c0 (IsA white_mountain_ash eucalyptus) (STV 1.0 0.9091)) +(: cnet_isa_30acb40766 (IsA white_mulberry mulberry) (STV 1.0 0.9091)) +(: cnet_isa_91aa613284 (IsA white_mullein mullein) (STV 1.0 0.9091)) +(: cnet_isa_9fe0b7e9dd (IsA white_mullet mullet) (STV 1.0 0.9091)) +(: cnet_isa_12034c1e43 (IsA white_mustard mustard) (STV 1.0 0.9091)) +(: cnet_isa_7224f92cbc (IsA white_noise noise) (STV 1.0 0.9091)) +(: cnet_isa_85aadd5eb8 (IsA white_oak oak) (STV 1.0 0.9091)) +(: cnet_isa_97abeac9ea (IsA white_page phonebook) (STV 1.0 0.9091)) +(: cnet_isa_b7117738ac (IsA white_pelican pelican) (STV 1.0 0.9091)) +(: cnet_isa_cb4d36486e (IsA white_pepper pepper) (STV 1.0 0.9091)) +(: cnet_isa_f6e02e6dfa (IsA white_perch serranid_fish) (STV 1.0 0.9091)) +(: cnet_isa_158fd4087d (IsA white_person person) (STV 1.0 0.9091)) +(: cnet_isa_11cee88f29 (IsA white_pine pine) (STV 1.0 0.9091)) +(: cnet_isa_3b5e12ee07 (IsA white_poplar poplar) (STV 1.0 0.9091)) +(: cnet_isa_4292268b38 (IsA white_prairie_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_cb486050a9 (IsA white_rayed_mule_s_ear wildflower) (STV 1.0 0.9091)) +(: cnet_isa_cf7d726a3c (IsA white_rhinocero rhinocero) (STV 1.0 0.9091)) +(: cnet_isa_75c258aa75 (IsA white_rice rice) (STV 1.0 0.9091)) +(: cnet_isa_e73922b033 (IsA white_rocket herb) (STV 1.0 0.9091)) +(: cnet_isa_bff9f0ef5b (IsA white_rumped_shrike butcherbird) (STV 1.0 0.9091)) +(: cnet_isa_42f36d5b92 (IsA white_russian cocktail) (STV 1.0 0.9091)) +(: cnet_isa_6424102cf9 (IsA white_rust fungus) (STV 1.0 0.9091)) +(: cnet_isa_b106f1cb0e (IsA white_sale sale) (STV 1.0 0.9091)) +(: cnet_isa_1399d4f7bb (IsA white_sauce sauce) (STV 1.0 0.9091)) +(: cnet_isa_b94753ad69 (IsA white_separatism segregation) (STV 1.0 0.9091)) +(: cnet_isa_ddccc00459 (IsA white_separatist separatist) (STV 1.0 0.9091)) +(: cnet_isa_0eda3e6f81 (IsA white_slave prostitute) (STV 1.0 0.9091)) +(: cnet_isa_9943a94810 (IsA white_slaver slaver) (STV 1.0 0.9091)) +(: cnet_isa_17fbf0f382 (IsA white_slime_mushroom slime_mushroom) (STV 1.0 0.9091)) +(: cnet_isa_949170d8ab (IsA white_snakeroot herb) (STV 1.0 0.9091)) +(: cnet_isa_ddf69f7ddf (IsA white_snapdragon snapdragon) (STV 1.0 0.9091)) +(: cnet_isa_cc4a24970c (IsA white_spruce spruce) (STV 1.0 0.9091)) +(: cnet_isa_e00e0c7d5e (IsA white_squire white_knight) (STV 1.0 0.9091)) +(: cnet_isa_0cd281bd07 (IsA white_stork stork) (STV 1.0 0.9091)) +(: cnet_isa_9cba2d9795 (IsA white_stringybark stringybark) (STV 1.0 0.9091)) +(: cnet_isa_587d69ec73 (IsA white_supremacist agent_non_geographical) (STV 1.0 0.9091)) +(: cnet_isa_090d03e2e1 (IsA white_supremacist organization) (STV 1.0 0.9091)) +(: cnet_isa_0d11b6de10 (IsA white_supremacist supremacist) (STV 1.0 0.9091)) +(: cnet_isa_3fcba4b8b0 (IsA white_supremacy racism) (STV 1.0 0.9091)) +(: cnet_isa_0ded1f4be0 (IsA white_sweet_clover melilotus) (STV 1.0 0.9091)) +(: cnet_isa_1321fee8d0 (IsA white_tai tai) (STV 1.0 0.9091)) +(: cnet_isa_84b4519c55 (IsA white_tailed_jackrabbit jackrabbit) (STV 1.0 0.9091)) +(: cnet_isa_ca4920d026 (IsA white_tailed_kite kite) (STV 1.0 0.9091)) +(: cnet_isa_d87f094ec3 (IsA white_throated_sparrow new_world_sparrow) (STV 1.0 0.9091)) +(: cnet_isa_465b080d42 (IsA white_tie bow_tie) (STV 1.0 0.9091)) +(: cnet_isa_d02bf8f308 (IsA white_topped_aster flower) (STV 1.0 0.9091)) +(: cnet_isa_14d3ed41f2 (IsA white_trash poor_person) (STV 1.0 0.9091)) +(: cnet_isa_77aa61cea5 (IsA white_trash white_person) (STV 1.0 0.9091)) +(: cnet_isa_85cf6b16f9 (IsA white_turnip turnip) (STV 1.0 0.9091)) +(: cnet_isa_1508d97e2b (IsA white_water foam) (STV 1.0 0.9091)) +(: cnet_isa_803a653391 (IsA white_whale dolphin) (STV 1.0 0.9091)) +(: cnet_isa_f161c7ccc1 (IsA white_willow willow) (STV 1.0 0.9091)) +(: cnet_isa_0b5e7869bb (IsA white_wine wine) (STV 1.0 0.9091)) +(: cnet_isa_6824aee685 (IsA white_wolf wolf) (STV 1.0 0.9091)) +(: cnet_isa_c24ff0590f (IsA white_woman white_person) (STV 1.0 0.9091)) +(: cnet_isa_90740e97a8 (IsA white_woman woman) (STV 1.0 0.9091)) +(: cnet_isa_6bba6f7739 (IsA white_wood_aster wood_aster) (STV 1.0 0.9091)) +(: cnet_isa_98ec0eb0f4 (IsA white_yam yam) (STV 1.0 0.9091)) +(: cnet_isa_51046eb8e2 (IsA white_zinnia zinnia) (STV 1.0 0.9091)) +(: cnet_isa_2c5f9f78ff (IsA whitebait young_fish) (STV 1.0 0.9091)) +(: cnet_isa_9180655616 (IsA whitebait herring) (STV 1.0 0.9091)) +(: cnet_isa_d5c0dacb1f (IsA whitebark_pine white_pine) (STV 1.0 0.9091)) +(: cnet_isa_3b9502975a (IsA whiteboard board) (STV 1.0 0.9091)) +(: cnet_isa_e5eaef23c6 (IsA whitecap wave) (STV 1.0 0.9091)) +(: cnet_isa_074f73137f (IsA whitecup cupflower) (STV 1.0 0.9091)) +(: cnet_isa_8218650a20 (IsA whited_sepulcher hypocrite) (STV 1.0 0.9091)) +(: cnet_isa_2e6262c064 (IsA whiteface clown) (STV 1.0 0.9091)) +(: cnet_isa_f046ea38e5 (IsA whitefish food_fish) (STV 1.0 0.9091)) +(: cnet_isa_f50a6a6981 (IsA whitefish soft_finned_fish) (STV 1.0 0.9091)) +(: cnet_isa_105d3e0258 (IsA whitefish freshwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_a8c54464c9 (IsA whitefish seafood) (STV 1.0 0.9091)) +(: cnet_isa_e5d8ce1b76 (IsA whitefly homopterous_insect) (STV 1.0 0.9091)) +(: cnet_isa_0aed970343 (IsA whitehall civil_service) (STV 1.0 0.9091)) +(: cnet_isa_c8dde0fba2 (IsA whitehead blemish) (STV 1.0 0.9091)) +(: cnet_isa_9cf3a9c545 (IsA whitelash backlash) (STV 1.0 0.9091)) +(: cnet_isa_4132e64855 (IsA whiteness complexion) (STV 1.0 0.9091)) +(: cnet_isa_b4a2efd70a (IsA whitening change_of_color) (STV 1.0 0.9091)) +(: cnet_isa_52c9b5ae0e (IsA whiteout snow) (STV 1.0 0.9091)) +(: cnet_isa_b966528204 (IsA whitetail_prairie_dog prairie_dog) (STV 1.0 0.9091)) +(: cnet_isa_68cb5fc29d (IsA whitethorn hawthorn) (STV 1.0 0.9091)) +(: cnet_isa_654fc18689 (IsA whitetip_shark requiem_shark) (STV 1.0 0.9091)) +(: cnet_isa_7c986b4843 (IsA whitetip_shark smooth_dogfish) (STV 1.0 0.9091)) +(: cnet_isa_b1df5c403f (IsA whitewash clearing) (STV 1.0 0.9091)) +(: cnet_isa_1e414694d9 (IsA whitewash wash) (STV 1.0 0.9091)) +(: cnet_isa_8cc0916b3b (IsA whitewash defeat) (STV 1.0 0.9091)) +(: cnet_isa_d5053c2697 (IsA whitey white_person) (STV 1.0 0.9091)) +(: cnet_isa_398bb7d3e2 (IsA whiting gadoid) (STV 1.0 0.9091)) +(: cnet_isa_64dbd9b586 (IsA whiting percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_471dac4e88 (IsA whiting sciaenid_fish) (STV 1.0 0.9091)) +(: cnet_isa_40121bfe18 (IsA whiting saltwater_fish) (STV 1.0 0.9091)) +(: cnet_isa_5596bec692 (IsA whitlow_grass draba) (STV 1.0 0.9091)) +(: cnet_isa_8d553e3037 (IsA whitlowwort groundcover) (STV 1.0 0.9091)) +(: cnet_isa_d8ccafcd54 (IsA whitmonday monday) (STV 1.0 0.9091)) +(: cnet_isa_962349e4de (IsA whitsun season) (STV 1.0 0.9091)) +(: cnet_isa_bcab6ae2b3 (IsA whittler idler) (STV 1.0 0.9091)) +(: cnet_isa_9d5e721833 (IsA whiz sound) (STV 1.0 0.9091)) +(: cnet_isa_baa849cc2e (IsA whizbang firecracker) (STV 1.0 0.9091)) +(: cnet_isa_578b5b522a (IsA whizbang shell) (STV 1.0 0.9091)) +(: cnet_isa_1d3ed136ba (IsA who_follow_idle_pursuit fool) (STV 1.0 0.9091)) +(: cnet_isa_96605b7f22 (IsA whole object) (STV 1.0 0.9091)) +(: cnet_isa_33b03d6907 (IsA whole concept) (STV 1.0 0.9091)) +(: cnet_isa_cac461bd42 (IsA whole_blood blood) (STV 1.0 0.9091)) +(: cnet_isa_828fbb6b6e (IsA whole_gale gale) (STV 1.0 0.9091)) +(: cnet_isa_083cd7ecff (IsA whole_life_insurance life_insurance) (STV 1.0 0.9091)) +(: cnet_isa_05c662827d (IsA whole_milk milk) (STV 1.0 0.9091)) +(: cnet_isa_6826115ac1 (IsA whole_note note) (STV 1.0 0.9091)) +(: cnet_isa_a1df71bd63 (IsA whole_rest rest) (STV 1.0 0.9091)) +(: cnet_isa_5b4a8a815d (IsA whole_shebang entirety) (STV 1.0 0.9091)) +(: cnet_isa_1a2ce0b86f (IsA whole_snipe snipe) (STV 1.0 0.9091)) +(: cnet_isa_b21910a17c (IsA whole_wheat_flour wheat_flour) (STV 1.0 0.9091)) +(: cnet_isa_d591837474 (IsA whole_word_method teaching_reading) (STV 1.0 0.9091)) +(: cnet_isa_61c60e710c (IsA wholeheartedness willingness) (STV 1.0 0.9091)) +(: cnet_isa_5f2414259f (IsA wholeness good_health) (STV 1.0 0.9091)) +(: cnet_isa_0775f10d38 (IsA wholesale selling) (STV 1.0 0.9091)) +(: cnet_isa_b130e14090 (IsA wholesomeness quality) (STV 1.0 0.9091)) +(: cnet_isa_a3080b52f3 (IsA whoop cry) (STV 1.0 0.9091)) +(: cnet_isa_bd8a426c6b (IsA whoopee revel) (STV 1.0 0.9091)) +(: cnet_isa_bcd9b6b784 (IsA whooper swan) (STV 1.0 0.9091)) +(: cnet_isa_8f96ddc541 (IsA whooping_cough infectious_disease) (STV 1.0 0.9091)) +(: cnet_isa_3bb4db8232 (IsA whooping_cough respiratory_disease) (STV 1.0 0.9091)) +(: cnet_isa_bd0005a19e (IsA whooping_crane crane) (STV 1.0 0.9091)) +(: cnet_isa_a70ef0606e (IsA whopper lie) (STV 1.0 0.9091)) +(: cnet_isa_c3c019101c (IsA whorehouse building) (STV 1.0 0.9091)) +(: cnet_isa_52f1682a02 (IsA whoremaster customer) (STV 1.0 0.9091)) +(: cnet_isa_5b450acf7b (IsA whoremaster pimp) (STV 1.0 0.9091)) +(: cnet_isa_5872318831 (IsA whorled_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_2258f96f45 (IsA whorled_caraway caraway) (STV 1.0 0.9091)) +(: cnet_isa_372dcb0d15 (IsA whorled_loosestrife loosestrife) (STV 1.0 0.9091)) +(: cnet_isa_e407bd60e8 (IsA whorled_milkweed milkweed) (STV 1.0 0.9091)) +(: cnet_isa_dbfc449b5c (IsA why reason) (STV 1.0 0.9091)) +(: cnet_isa_a072a286fe (IsA whydah weaver) (STV 1.0 0.9091)) +(: cnet_isa_8adde929e2 (IsA wicca pagan_religion) (STV 1.0 0.9091)) +(: cnet_isa_fdbdf6f358 (IsA wicca religion) (STV 1.0 0.9677)) +(: cnet_isa_29ce9a1712 (IsA wicca cult) (STV 1.0 0.9091)) +(: cnet_isa_01a5b892ec (IsA wiccan pagan) (STV 1.0 0.9091)) +(: cnet_isa_60bdda06ad (IsA wichita caddo) (STV 1.0 0.9091)) +(: cnet_isa_d62f580409 (IsA wick cord) (STV 1.0 0.9091)) +(: cnet_isa_64d02be762 (IsA wicker work) (STV 1.0 0.9091)) +(: cnet_isa_51f7e0ec69 (IsA wicker wood) (STV 1.0 0.9091)) +(: cnet_isa_21a5b1a3f4 (IsA wicker_basket basket) (STV 1.0 0.9091)) +(: cnet_isa_a289351e04 (IsA wicket cricket_equipment) (STV 1.0 0.9091)) +(: cnet_isa_345f024e32 (IsA wicket croquet_equipment) (STV 1.0 0.9091)) +(: cnet_isa_ec5409c9ee (IsA wicket gate) (STV 1.0 0.9091)) +(: cnet_isa_28b62923da (IsA wicket opening) (STV 1.0 0.9091)) +(: cnet_isa_048728c896 (IsA wicket_keeper cricketer) (STV 1.0 0.9091)) +(: cnet_isa_ea62cd60d9 (IsA wickiup lodge) (STV 1.0 0.9091)) +(: cnet_isa_86f8f2af69 (IsA widal_test agglutination_test) (STV 1.0 0.9091)) +(: cnet_isa_ac281e6121 (IsA wide_angle_len camera_len) (STV 1.0 0.9091)) +(: cnet_isa_12dc5d9284 (IsA wide_area_network computer_network) (STV 1.0 0.9091)) +(: cnet_isa_1d635de0bd (IsA wide_screen screen) (STV 1.0 0.9091)) +(: cnet_isa_57f8bdcdb3 (IsA wide_wale cord) (STV 1.0 0.9091)) +(: cnet_isa_7d0a40b15b (IsA widebody_aircraft airliner) (STV 1.0 0.9091)) +(: cnet_isa_9338fcba64 (IsA widegrip_pushup pushup) (STV 1.0 0.9091)) +(: cnet_isa_37098bb729 (IsA wideness width) (STV 1.0 0.9091)) +(: cnet_isa_77e97e4353 (IsA widening change_of_shape) (STV 1.0 0.9091)) +(: cnet_isa_d537e2bb54 (IsA widening increase) (STV 1.0 0.9091)) +(: cnet_isa_00a549a9a2 (IsA widgeon duck) (STV 1.0 0.9091)) +(: cnet_isa_cebae2116a (IsA widow_s_peak point) (STV 1.0 0.9091)) +(: cnet_isa_ac331c535d (IsA widow_s_walk lookout) (STV 1.0 0.9091)) +(: cnet_isa_1f58198a33 (IsA widow woman) (STV 1.0 0.9091)) +(: cnet_isa_41c29feca4 (IsA widower man) (STV 1.0 0.9091)) +(: cnet_isa_85afce154b (IsA widowhood marital_status) (STV 1.0 0.9091)) +(: cnet_isa_282700036d (IsA widowhood time_of_life) (STV 1.0 0.9091)) +(: cnet_isa_8559f2e1a4 (IsA width dimension) (STV 1.0 0.9091)) +(: cnet_isa_61a5b8d851 (IsA wiener_roast cookout) (STV 1.0 0.9091)) +(: cnet_isa_43b00d4c10 (IsA wiesenboden soil) (STV 1.0 0.9091)) +(: cnet_isa_226a09b399 (IsA wife spouse) (STV 1.0 0.9091)) +(: cnet_isa_90a40330b4 (IsA wife woman) (STV 1.0 0.9091)) +(: cnet_isa_998e9c7a0c (IsA wig hairpiece) (STV 1.0 0.9091)) +(: cnet_isa_e5560e1d3c (IsA wig chiding) (STV 1.0 0.9091)) +(: cnet_isa_d56e186353 (IsA wiggle motion) (STV 1.0 0.9091)) +(: cnet_isa_e6b7b17355 (IsA wiggle_room flexibility) (STV 1.0 0.9091)) +(: cnet_isa_dd943e2940 (IsA wiggler larva) (STV 1.0 0.9091)) +(: cnet_isa_5dd0463e40 (IsA wiggler person) (STV 1.0 0.9091)) +(: cnet_isa_7cf9538607 (IsA wiggliness looseness) (STV 1.0 0.9091)) +(: cnet_isa_afad3ba719 (IsA wight county) (STV 1.0 0.9091)) +(: cnet_isa_c651dd38e6 (IsA wigmaker maker) (STV 1.0 0.9091)) +(: cnet_isa_70ec68830b (IsA wigwam lodge) (STV 1.0 0.9091)) +(: cnet_isa_c456ada8df (IsA wiki website) (STV 1.0 0.9091)) +(: cnet_isa_3c63a0eef2 (IsA wild state) (STV 1.0 0.9091)) +(: cnet_isa_ed81bdb45a (IsA wild_angelica angelica) (STV 1.0 0.9091)) +(: cnet_isa_43b4a182c8 (IsA wild_apple apple_tree) (STV 1.0 0.9091)) +(: cnet_isa_bc1f616da6 (IsA wild_ass ass) (STV 1.0 0.9091)) +(: cnet_isa_a72d8abbcb (IsA wild_basil herb) (STV 1.0 0.9091)) +(: cnet_isa_46be93f720 (IsA wild_boar swine) (STV 1.0 0.9091)) +(: cnet_isa_36218fe32e (IsA wild_buckwheat eriogonum) (STV 1.0 0.9091)) +(: cnet_isa_1c4a96a9e8 (IsA wild_cabbage crucifer) (STV 1.0 0.9091)) +(: cnet_isa_5d7ba646b7 (IsA wild_calla marsh_plant) (STV 1.0 0.9091)) +(: cnet_isa_630af0237a (IsA wild_card playing_card) (STV 1.0 0.9091)) +(: cnet_isa_5b7ab76eb4 (IsA wild_card factor) (STV 1.0 0.9091)) +(: cnet_isa_8937518155 (IsA wild_carrot wildflower) (STV 1.0 0.9091)) +(: cnet_isa_3d4582ed08 (IsA wild_celery herb) (STV 1.0 0.9091)) +(: cnet_isa_dcbe3e312c (IsA wild_cherry cherry) (STV 1.0 0.9091)) +(: cnet_isa_8fa9bcdabf (IsA wild_cherry fruit) (STV 1.0 0.9091)) +(: cnet_isa_4ed4e09b9c (IsA wild_china_tree soapberry) (STV 1.0 0.9091)) +(: cnet_isa_3a70cc6d92 (IsA wild_cinnamon shrub) (STV 1.0 0.9091)) +(: cnet_isa_891fce30a4 (IsA wild_cotton cotton) (STV 1.0 0.9091)) +(: cnet_isa_5a7140e009 (IsA wild_crab wild_apple) (STV 1.0 0.9091)) +(: cnet_isa_ee79224efd (IsA wild_dog canine) (STV 1.0 0.9091)) +(: cnet_isa_00af557c84 (IsA wild_duck duck) (STV 1.0 0.9091)) +(: cnet_isa_759f23d420 (IsA wild_fig tree) (STV 1.0 0.9091)) +(: cnet_isa_06276e9aae (IsA wild_garlic alliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_56ed907cf8 (IsA wild_geranium cranesbill) (STV 1.0 0.9091)) +(: cnet_isa_8cdf775b66 (IsA wild_ginger herb) (STV 1.0 0.9091)) +(: cnet_isa_3ec4ecd08d (IsA wild_goat goat) (STV 1.0 0.9091)) +(: cnet_isa_c3248a62c1 (IsA wild_goose_chase pursuit) (STV 1.0 0.9091)) +(: cnet_isa_97477c1efd (IsA wild_hollyhock mallow) (STV 1.0 0.9091)) +(: cnet_isa_8a116df4db (IsA wild_horse horse) (STV 1.0 0.9091)) +(: cnet_isa_70b33beb7b (IsA wild_hyacinth cama) (STV 1.0 0.9091)) +(: cnet_isa_87822f110a (IsA wild_hyacinth liliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_72bfbd7e7d (IsA wild_hydrangea hydrangea) (STV 1.0 0.9091)) +(: cnet_isa_0e15df9cb4 (IsA wild_indigo woody_plant) (STV 1.0 0.9091)) +(: cnet_isa_f9996767b5 (IsA wild_leek alliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_ca4a14500c (IsA wild_licorice bedstraw) (STV 1.0 0.9091)) +(: cnet_isa_a9ff27178c (IsA wild_licorice herb) (STV 1.0 0.9091)) +(: cnet_isa_68e5f2baa5 (IsA wild_licorice milk_vetch) (STV 1.0 0.9091)) +(: cnet_isa_92b16ce6fb (IsA wild_lily_of_valley wintergreen) (STV 1.0 0.9091)) +(: cnet_isa_2e204b5fc6 (IsA wild_lupine subshrub) (STV 1.0 0.9091)) +(: cnet_isa_fea04308ea (IsA wild_madder bedstraw) (STV 1.0 0.9091)) +(: cnet_isa_72365ef2ac (IsA wild_man primitive) (STV 1.0 0.9091)) +(: cnet_isa_604bb64683 (IsA wild_mango fruit_tree) (STV 1.0 0.9091)) +(: cnet_isa_df76497ddf (IsA wild_medlar tree) (STV 1.0 0.9091)) +(: cnet_isa_e98f855e3c (IsA wild_oat oat) (STV 1.0 0.9091)) +(: cnet_isa_9f2fb3c012 (IsA wild_olive oleaster) (STV 1.0 0.9091)) +(: cnet_isa_b9763d7ed8 (IsA wild_onion alliaceous_plant) (STV 1.0 0.9091)) +(: cnet_isa_d347091284 (IsA wild_pansy viola) (STV 1.0 0.9091)) +(: cnet_isa_5c53a061db (IsA wild_parsley umbellifer) (STV 1.0 0.9091)) +(: cnet_isa_b44d4781f8 (IsA wild_parsnip parsnip) (STV 1.0 0.9091)) +(: cnet_isa_cdfcec0e26 (IsA wild_parsnip weed) (STV 1.0 0.9091)) +(: cnet_isa_7004488c79 (IsA wild_pea legume) (STV 1.0 0.9091)) +(: cnet_isa_b3082818a9 (IsA wild_peach shrub) (STV 1.0 0.9091)) +(: cnet_isa_6b48e3a58b (IsA wild_pink silene) (STV 1.0 0.9091)) +(: cnet_isa_ffba7eb922 (IsA wild_pitch pitch) (STV 1.0 0.9091)) +(: cnet_isa_830bcfccce (IsA wild_plum plum) (STV 1.0 0.9091)) +(: cnet_isa_5c1c36b771 (IsA wild_potato vine) (STV 1.0 0.9091)) +(: cnet_isa_68c8dcaf2d (IsA wild_potato_vine morning_glory) (STV 1.0 0.9091)) +(: cnet_isa_11792bd4a4 (IsA wild_raspberry red_raspberry) (STV 1.0 0.9091)) +(: cnet_isa_d47c72ddfb (IsA wild_red_oat oat) (STV 1.0 0.9091)) +(: cnet_isa_27d017b084 (IsA wild_rice grain) (STV 1.0 0.9091)) +(: cnet_isa_3f7ad137d5 (IsA wild_rice cereal) (STV 1.0 0.9091)) +(: cnet_isa_ae8152de36 (IsA wild_rosemary shrub) (STV 1.0 0.9091)) +(: cnet_isa_094b098005 (IsA wild_rye grass) (STV 1.0 0.9091)) +(: cnet_isa_8bf4ade437 (IsA wild_sage sage) (STV 1.0 0.9091)) +(: cnet_isa_9d2c343e38 (IsA wild_sarsaparilla subshrub) (STV 1.0 0.9091)) +(: cnet_isa_afeab605d5 (IsA wild_senna herb) (STV 1.0 0.9091)) +(: cnet_isa_f5942db050 (IsA wild_service_tree service_tree) (STV 1.0 0.9091)) +(: cnet_isa_bbb9458481 (IsA wild_sheep bovid) (STV 1.0 0.9091)) +(: cnet_isa_3ff627087e (IsA wild_spinach green) (STV 1.0 0.9091)) +(: cnet_isa_192fd7fa46 (IsA wild_spurge spurge) (STV 1.0 0.9091)) +(: cnet_isa_b7b9579880 (IsA wild_strawberry strawberry) (STV 1.0 0.9091)) +(: cnet_isa_582feea736 (IsA wild_tamarind tree) (STV 1.0 0.9091)) +(: cnet_isa_19df4a5be6 (IsA wild_teasel teasel) (STV 1.0 0.9091)) +(: cnet_isa_dff8640d4b (IsA wild_thyme thyme) (STV 1.0 0.9091)) +(: cnet_isa_5c47e40611 (IsA wild_tobacco tobacco) (STV 1.0 0.9091)) +(: cnet_isa_6103a968e6 (IsA wild_vanilla herb) (STV 1.0 0.9091)) +(: cnet_isa_674f03e7eb (IsA wild_west_show show) (STV 1.0 0.9091)) +(: cnet_isa_c1b7ed8cdc (IsA wild_wheat wheat) (STV 1.0 0.9091)) +(: cnet_isa_4258f9bc53 (IsA wild_yam vine) (STV 1.0 0.9091)) +(: cnet_isa_ad76286064 (IsA wildcat cat) (STV 1.0 0.9091)) +(: cnet_isa_45a9df70e0 (IsA wildcat_strike strike) (STV 1.0 0.9091)) +(: cnet_isa_d91c5a6377 (IsA wildcat_well oil_well) (STV 1.0 0.9091)) +(: cnet_isa_0a1f9fe241 (IsA wildcatter oilman) (STV 1.0 0.9091)) +(: cnet_isa_3332b43bd7 (IsA wilderness profusion) (STV 1.0 0.9091)) +(: cnet_isa_9af2612e73 (IsA wilderness geographical_area) (STV 1.0 0.9091)) +(: cnet_isa_4f4de623ac (IsA wilderness disfavor) (STV 1.0 0.9091)) +(: cnet_isa_cc4d5cb02c (IsA wildfire conflagration) (STV 1.0 0.9091)) +(: cnet_isa_24ec11c270 (IsA wildflower angiosperm) (STV 1.0 0.9091)) +(: cnet_isa_67144a36fd (IsA wildflower wilding) (STV 1.0 0.9091)) +(: cnet_isa_85320595f4 (IsA wildfowl bird) (STV 1.0 0.9091)) +(: cnet_isa_1bcdbbc8a9 (IsA wilding rampage) (STV 1.0 0.9091)) +(: cnet_isa_ee18c6cd91 (IsA wilding plant) (STV 1.0 0.9091)) +(: cnet_isa_6693ba2aa7 (IsA wildlife life) (STV 1.0 0.9091)) +(: cnet_isa_52695f98c9 (IsA wildness intractability) (STV 1.0 0.9091)) +(: cnet_isa_94b069f298 (IsA wildness unruliness) (STV 1.0 0.9091)) +(: cnet_isa_6c7d599b0e (IsA wildness passion) (STV 1.0 0.9091)) +(: cnet_isa_5684db3fa4 (IsA will purpose) (STV 1.0 0.9091)) +(: cnet_isa_ccf36e4edb (IsA will legal_document) (STV 1.0 0.9091)) +(: cnet_isa_b82350fcad (IsA will_o_wisp illusion) (STV 1.0 0.9091)) +(: cnet_isa_90ad19d4af (IsA willet tattler) (STV 1.0 0.9091)) +(: cnet_isa_750f5d240a (IsA william_gibson writer) (STV 1.0 0.9091)) +(: cnet_isa_07d86de7f5 (IsA william_syndrome syndrome) (STV 1.0 0.9091)) +(: cnet_isa_669f1921c3 (IsA willy edginess) (STV 1.0 0.9091)) +(: cnet_isa_ab0ceb1084 (IsA willingness disposition) (STV 1.0 0.9091)) +(: cnet_isa_fdaecefb4f (IsA willow textile_machine) (STV 1.0 0.9091)) +(: cnet_isa_7637c18602 (IsA willow tree) (STV 1.0 0.9091)) +(: cnet_isa_cd0027ecc9 (IsA willow_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_ac6a809cfa (IsA willow_oak oak) (STV 1.0 0.9091)) +(: cnet_isa_43e9934210 (IsA willowherb herb) (STV 1.0 0.9091)) +(: cnet_isa_c0d87ee4a0 (IsA willowware chinaware) (STV 1.0 0.9091)) +(: cnet_isa_0e006e24fe (IsA wilm_tumor sarcoma) (STV 1.0 0.9091)) +(: cnet_isa_ce2b8fe748 (IsA wilson_s_phalarope phalarope) (STV 1.0 0.9091)) +(: cnet_isa_80a99e7c01 (IsA wilson_s_snipe snipe) (STV 1.0 0.9091)) +(: cnet_isa_cb35eff702 (IsA wilson_s_warbler new_world_warbler) (STV 1.0 0.9091)) +(: cnet_isa_a37ce7c156 (IsA wilt weakening) (STV 1.0 0.9091)) +(: cnet_isa_69e8ac7a26 (IsA wilt plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_bc072dc4ec (IsA wilton rug) (STV 1.0 0.9091)) +(: cnet_isa_4af9870610 (IsA wimp weakling) (STV 1.0 0.9091)) +(: cnet_isa_f72dd09480 (IsA wimple headdress) (STV 1.0 0.9091)) +(: cnet_isa_220076665a (IsA win victory) (STV 1.0 0.9091)) +(: cnet_isa_ca81a82057 (IsA wince startle) (STV 1.0 0.9091)) +(: cnet_isa_bc5ea75af1 (IsA wince facial_expression) (STV 1.0 0.9091)) +(: cnet_isa_283cd6b769 (IsA wincey fabric) (STV 1.0 0.9091)) +(: cnet_isa_00e395b903 (IsA winceyette flannelette) (STV 1.0 0.9091)) +(: cnet_isa_d655c7e9cf (IsA winch lifting_device) (STV 1.0 0.9091)) +(: cnet_isa_cd75b01c0b (IsA winchester_college public_school) (STV 1.0 0.9091)) +(: cnet_isa_ed8e418120 (IsA wind air_moving) (STV 1.0 0.9091)) +(: cnet_isa_b24e060978 (IsA wind blowing) (STV 1.0 0.9091)) +(: cnet_isa_50ee20591b (IsA wind moving_air) (STV 1.0 0.9091)) +(: cnet_isa_93fadf3d1c (IsA wind exhalation) (STV 1.0 0.9091)) +(: cnet_isa_085f1dcc2a (IsA wind rotation) (STV 1.0 0.9091)) +(: cnet_isa_e2f985fbcd (IsA wind talk) (STV 1.0 0.9091)) +(: cnet_isa_bac2d5b7ef (IsA wind influence) (STV 1.0 0.9091)) +(: cnet_isa_40036dcab6 (IsA wind weather) (STV 1.0 0.9091)) +(: cnet_isa_37b90da76b (IsA wind_chime decoration) (STV 1.0 0.9091)) +(: cnet_isa_b735db02c0 (IsA wind_farm power_station) (STV 1.0 0.9091)) +(: cnet_isa_e511c66ecc (IsA wind_gap col) (STV 1.0 0.9091)) +(: cnet_isa_9561bd0e9b (IsA wind_generation alternative_energy) (STV 1.0 0.9091)) +(: cnet_isa_01d9759c00 (IsA wind_instrument musical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_85525825dc (IsA wind_poppy poppy) (STV 1.0 0.9091)) +(: cnet_isa_abed70c18b (IsA wind_rose weather_map) (STV 1.0 0.9091)) +(: cnet_isa_4f6968ad57 (IsA wind_tee weathervane) (STV 1.0 0.9091)) +(: cnet_isa_5fd2f21bae (IsA wind_tunnel structure) (STV 1.0 0.9091)) +(: cnet_isa_67a82d07b6 (IsA wind_turbine turbine) (STV 1.0 0.9091)) +(: cnet_isa_73670fdf94 (IsA windage deflection) (STV 1.0 0.9091)) +(: cnet_isa_32ab8fb412 (IsA windage diameter) (STV 1.0 0.9091)) +(: cnet_isa_e7688c288a (IsA windage exposure) (STV 1.0 0.9091)) +(: cnet_isa_f788824078 (IsA windage drag) (STV 1.0 0.9091)) +(: cnet_isa_aa4e04c8f7 (IsA windbreak hedge) (STV 1.0 0.9091)) +(: cnet_isa_66c448f9bd (IsA windburn erythema) (STV 1.0 0.9091)) +(: cnet_isa_21c6f53067 (IsA winder mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_033cffb1eb (IsA winder worker) (STV 1.0 0.9091)) +(: cnet_isa_78cc950664 (IsA windfall edible_fruit) (STV 1.0 0.9091)) +(: cnet_isa_0d9ca893e5 (IsA windfall_profit net_income) (STV 1.0 0.9091)) +(: cnet_isa_0a529b9173 (IsA windjammer sailing_vessel) (STV 1.0 0.9091)) +(: cnet_isa_d5d293cd29 (IsA windmill generator) (STV 1.0 0.9091)) +(: cnet_isa_9d28da974f (IsA windmill mill) (STV 1.0 0.9091)) +(: cnet_isa_6e1cee816b (IsA windmill_grass finger_grass) (STV 1.0 0.9091)) +(: cnet_isa_26e8258548 (IsA window framework) (STV 1.0 0.9091)) +(: cnet_isa_a8aad824b7 (IsA window opening) (STV 1.0 0.9091)) +(: cnet_isa_50ed91f9f9 (IsA window panel) (STV 1.0 0.9091)) +(: cnet_isa_aae8b3550d (IsA window display) (STV 1.0 0.9091)) +(: cnet_isa_4cef19c384 (IsA window time_period) (STV 1.0 0.9091)) +(: cnet_isa_ca0b6f840c (IsA window_blind blind) (STV 1.0 0.9091)) +(: cnet_isa_b01db0dc36 (IsA window_box box) (STV 1.0 0.9091)) +(: cnet_isa_dfcce4b827 (IsA window_cleaner cleaner) (STV 1.0 0.9091)) +(: cnet_isa_36abed603d (IsA window_dresser craftsman) (STV 1.0 0.9091)) +(: cnet_isa_7753e575e9 (IsA window_dressing decoration) (STV 1.0 0.9091)) +(: cnet_isa_1df6788482 (IsA window_envelope envelope) (STV 1.0 0.9091)) +(: cnet_isa_918ef5a42a (IsA window_frame framework) (STV 1.0 0.9091)) +(: cnet_isa_eb048508b4 (IsA window_oyster oyster) (STV 1.0 0.9091)) +(: cnet_isa_db239ff1a2 (IsA window_screen screen) (STV 1.0 0.9091)) +(: cnet_isa_b8465c44f8 (IsA window_seat bench) (STV 1.0 0.9091)) +(: cnet_isa_f4b97b14c6 (IsA window_shade window_blind) (STV 1.0 0.9091)) +(: cnet_isa_69ba131487 (IsA window_washer washer) (STV 1.0 0.9091)) +(: cnet_isa_8682aa83f0 (IsA window_washing wash) (STV 1.0 0.9091)) +(: cnet_isa_af9e412372 (IsA windowpane lefteye_flounder) (STV 1.0 0.9091)) +(: cnet_isa_911aebf1ed (IsA windowpane pane) (STV 1.0 0.9091)) +(: cnet_isa_e03b85ceaf (IsA window operating_system) (STV 1.0 0.9636)) +(: cnet_isa_6fe692f724 (IsA windowsill sill) (STV 1.0 0.9091)) +(: cnet_isa_466390a208 (IsA windshield screen) (STV 1.0 0.9091)) +(: cnet_isa_e19f64b40c (IsA windshield_wiper mechanical_device) (STV 1.0 0.9091)) +(: cnet_isa_e5373c171c (IsA windsock visual_signal) (STV 1.0 0.9091)) +(: cnet_isa_86df36533d (IsA windsor dynasty) (STV 1.0 0.9091)) +(: cnet_isa_dbbfeb09d1 (IsA windsor_chair straight_chair) (STV 1.0 0.9091)) +(: cnet_isa_4c57bbe9a6 (IsA windsor_green chrome_green) (STV 1.0 0.9091)) +(: cnet_isa_f73d98ad43 (IsA windsor_knot slipknot) (STV 1.0 0.9091)) +(: cnet_isa_25cf56d72a (IsA windsor_tie necktie) (STV 1.0 0.9091)) +(: cnet_isa_d6f5deebf9 (IsA windstorm storm) (STV 1.0 0.9091)) +(: cnet_isa_744592a778 (IsA windward direction) (STV 1.0 0.9091)) +(: cnet_isa_4a5932c259 (IsA windward windward) (STV 1.0 0.9091)) +(: cnet_isa_ecae30c016 (IsA windward side) (STV 1.0 0.9091)) +(: cnet_isa_bb072e8859 (IsA wine alcoholic_beverage) (STV 1.0 0.9608)) +(: cnet_isa_4061fba0c1 (IsA wine alcoholic_drink) (STV 1.0 0.9339)) +(: cnet_isa_b698e62851 (IsA wine beverage) (STV 1.0 0.9693)) +(: cnet_isa_7e5e9e3f99 (IsA wine fermented_grape_juice) (STV 1.0 0.9091)) +(: cnet_isa_9b5d76136f (IsA wine dark_red) (STV 1.0 0.9091)) +(: cnet_isa_c3b8fc5b32 (IsA wine alcohol) (STV 1.0 0.9091)) +(: cnet_isa_72bda7aa47 (IsA wine_bar bar) (STV 1.0 0.9091)) +(: cnet_isa_74fe18a3b1 (IsA wine_bottle bottle) (STV 1.0 0.9091)) +(: cnet_isa_f985563c8f (IsA wine_bucket bucket) (STV 1.0 0.9091)) +(: cnet_isa_49173e5548 (IsA wine_cask barrel) (STV 1.0 0.9091)) +(: cnet_isa_11d713be06 (IsA wine_maker_s_yeast yeast) (STV 1.0 0.9091)) +(: cnet_isa_b57182964b (IsA wine_palm sago_palm) (STV 1.0 0.9091)) +(: cnet_isa_8a1d6d54cc (IsA wine_sauce sauce) (STV 1.0 0.9091)) +(: cnet_isa_c78f807954 (IsA wine_taster taster) (STV 1.0 0.9091)) +(: cnet_isa_511433c362 (IsA wine_tasting gathering) (STV 1.0 0.9091)) +(: cnet_isa_afd3cd4f72 (IsA wine_vinegar vinegar) (STV 1.0 0.9091)) +(: cnet_isa_d06c707bde (IsA wineberry raspberry) (STV 1.0 0.9091)) +(: cnet_isa_29aba20dee (IsA wineglass glass) (STV 1.0 0.9091)) +(: cnet_isa_a02ea55e8a (IsA wineglass_heel heel) (STV 1.0 0.9091)) +(: cnet_isa_93895550a2 (IsA winepress press) (STV 1.0 0.9091)) +(: cnet_isa_a7aec597a0 (IsA winery factory) (STV 1.0 0.9091)) +(: cnet_isa_cbddf11083 (IsA winery place) (STV 1.0 0.9091)) +(: cnet_isa_556559325a (IsA winery establishment) (STV 1.0 0.9091)) +(: cnet_isa_1de8477e89 (IsA winery plant) (STV 1.0 0.9091)) +(: cnet_isa_5bb28258f2 (IsA winesap eating_apple) (STV 1.0 0.9091)) +(: cnet_isa_f0fc8e66ce (IsA wineskin skin) (STV 1.0 0.9091)) +(: cnet_isa_24602cd05d (IsA wing organ) (STV 1.0 0.9091)) +(: cnet_isa_0b0d1bfcd2 (IsA wing airfoil) (STV 1.0 0.9091)) +(: cnet_isa_7920717d1c (IsA wing stage) (STV 1.0 0.9091)) +(: cnet_isa_94f237a4f2 (IsA wing helping) (STV 1.0 0.9091)) +(: cnet_isa_6081d761ff (IsA wing social_group) (STV 1.0 0.9091)) +(: cnet_isa_2e44897e96 (IsA wing position) (STV 1.0 0.9091)) +(: cnet_isa_35880ce542 (IsA wing air_unit) (STV 1.0 0.9091)) +(: cnet_isa_98b25d1ff5 (IsA wing hockey_player) (STV 1.0 0.9091)) +(: cnet_isa_c310c9f9af (IsA wing_case wing) (STV 1.0 0.9091)) +(: cnet_isa_1bc5081c9f (IsA wing_chair easy_chair) (STV 1.0 0.9091)) +(: cnet_isa_b3ca3e35c6 (IsA wing_commander commanding_officer) (STV 1.0 0.9091)) +(: cnet_isa_76d0efe681 (IsA wing_loading loading) (STV 1.0 0.9091)) +(: cnet_isa_9d363852be (IsA wing_nut nut) (STV 1.0 0.9091)) +(: cnet_isa_073b01f90f (IsA wing_nut nut_tree) (STV 1.0 0.9091)) +(: cnet_isa_778b353b25 (IsA wing_shooting shooting) (STV 1.0 0.9091)) +(: cnet_isa_5110cbaa99 (IsA wing_tip shoe) (STV 1.0 0.9091)) +(: cnet_isa_70d0a3cc84 (IsA wing_tip toecap) (STV 1.0 0.9091)) +(: cnet_isa_c9c507b212 (IsA wingback back) (STV 1.0 0.9091)) +(: cnet_isa_cf35cc8abd (IsA winged_bean vine) (STV 1.0 0.9091)) +(: cnet_isa_e6ec39b539 (IsA winged_elm elm) (STV 1.0 0.9091)) +(: cnet_isa_fc61f571b8 (IsA winged_everlasting ammobium) (STV 1.0 0.9091)) +(: cnet_isa_cfa87a3513 (IsA winged_pea herb) (STV 1.0 0.9091)) +(: cnet_isa_9c60b84bdf (IsA winged_pigweed shrub) (STV 1.0 0.9091)) +(: cnet_isa_affd147579 (IsA winged_spindle_tree spindle_tree) (STV 1.0 0.9091)) +(: cnet_isa_f4d898b4a0 (IsA winger athlete) (STV 1.0 0.9091)) +(: cnet_isa_e826489fea (IsA wingman pilot) (STV 1.0 0.9091)) +(: cnet_isa_720c655d36 (IsA wing mean) (STV 1.0 0.9091)) +(: cnet_isa_bea2872b83 (IsA wing insignia) (STV 1.0 0.9091)) +(: cnet_isa_8c6048b257 (IsA wingspan distance) (STV 1.0 0.9091)) +(: cnet_isa_b03819b85b (IsA wingspread distance) (STV 1.0 0.9091)) +(: cnet_isa_8a272a5d9a (IsA wingstem crownbeard) (STV 1.0 0.9091)) +(: cnet_isa_d54268ec64 (IsA wink facial_expression) (STV 1.0 0.9091)) +(: cnet_isa_e6a6b5bcf0 (IsA winker blind) (STV 1.0 0.9091)) +(: cnet_isa_41e772a821 (IsA winker person) (STV 1.0 0.9091)) +(: cnet_isa_8a663626d7 (IsA winnebago siouan) (STV 1.0 0.9091)) +(: cnet_isa_497d600b50 (IsA winner_s_circle area) (STV 1.0 0.9091)) +(: cnet_isa_1138e80dd1 (IsA winner contestant) (STV 1.0 0.9091)) +(: cnet_isa_d8394ae383 (IsA winner gambler) (STV 1.0 0.9091)) +(: cnet_isa_59d3d432ab (IsA winning spectacular_feeling) (STV 1.0 0.9091)) +(: cnet_isa_bee57f4727 (IsA winning success) (STV 1.0 0.9091)) +(: cnet_isa_f8ab183567 (IsA winning_post post) (STV 1.0 0.9091)) +(: cnet_isa_3ebd1dfd26 (IsA winning_prize wonderful_sensation) (STV 1.0 0.9091)) +(: cnet_isa_acc84105eb (IsA winning_streak streak) (STV 1.0 0.9091)) +(: cnet_isa_e28e9c1359 (IsA winning financial_gain) (STV 1.0 0.9091)) +(: cnet_isa_f591ea0171 (IsA winnipeg in_canada) (STV 1.0 0.9339)) +(: cnet_isa_58a0ccf337 (IsA winnow separation) (STV 1.0 0.9091)) +(: cnet_isa_d4fc3d6e47 (IsA winsomeness appeal) (STV 1.0 0.9091)) +(: cnet_isa_3c83b1c509 (IsA winter_s_bark bark) (STV 1.0 0.9091)) +(: cnet_isa_aa8ea47704 (IsA winter_s_bark tree) (STV 1.0 0.9091)) +(: cnet_isa_cb4673656f (IsA winter colder_than_summer) (STV 1.0 0.9091)) +(: cnet_isa_bd842142dc (IsA winter season) (STV 1.0 0.9524)) +(: cnet_isa_8a3ba4134f (IsA winter seasonal_condition) (STV 1.0 0.9091)) +(: cnet_isa_be72775375 (IsA winter very_cold_season) (STV 1.0 0.9091)) +(: cnet_isa_9b05545d8a (IsA winter_aconite herb) (STV 1.0 0.9091)) +(: cnet_isa_654de50d12 (IsA winter_cress cress) (STV 1.0 0.9091)) +(: cnet_isa_53413bd010 (IsA winter_crookneck winter_squash) (STV 1.0 0.9091)) +(: cnet_isa_c12b717807 (IsA winter_crookneck_squash winter_squash) (STV 1.0 0.9091)) +(: cnet_isa_d57b48d0fb (IsA winter_currant currant) (STV 1.0 0.9091)) +(: cnet_isa_f4191258f7 (IsA winter_flounder righteye_flounder) (STV 1.0 0.9091)) +(: cnet_isa_f439fcab0e (IsA winter_hazel shrub) (STV 1.0 0.9091)) +(: cnet_isa_52fd1fa3c6 (IsA winter_heath erica) (STV 1.0 0.9091)) +(: cnet_isa_76cf382962 (IsA winter_heliotrope herb) (STV 1.0 0.9091)) +(: cnet_isa_e6fd45475f (IsA winter_jasmine jasmine) (STV 1.0 0.9091)) +(: cnet_isa_1395c9863b (IsA winter_melon muskmelon) (STV 1.0 0.9091)) +(: cnet_isa_44c1578692 (IsA winter_melon sweet_melon) (STV 1.0 0.9091)) +(: cnet_isa_af2c40f1b0 (IsA winter_mushroom agaric) (STV 1.0 0.9091)) +(: cnet_isa_d75cfa19dc (IsA winter_olympic_game olympic_game) (STV 1.0 0.9091)) +(: cnet_isa_081f9f2046 (IsA winter_purslane indian_lettuce) (STV 1.0 0.9091)) +(: cnet_isa_ddbba94b11 (IsA winter_savory savory) (STV 1.0 0.9091)) +(: cnet_isa_db349dc200 (IsA winter_solstice solstice) (STV 1.0 0.9091)) +(: cnet_isa_034082bc84 (IsA winter_squash squash) (STV 1.0 0.9091)) +(: cnet_isa_b1f586e2fa (IsA winter_sweet shrub) (STV 1.0 0.9091)) +(: cnet_isa_4d0cd50502 (IsA winter_urn sarcosomataceae) (STV 1.0 0.9091)) +(: cnet_isa_31a3ae5968 (IsA winter_wren wren) (STV 1.0 0.9091)) +(: cnet_isa_e6e6b44b98 (IsA winteraceae magnoliid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_d5d5ffc8c6 (IsA wintergreen berry) (STV 1.0 0.9091)) +(: cnet_isa_deacbbc6c2 (IsA wintergreen herb) (STV 1.0 0.9091)) +(: cnet_isa_255dea570a (IsA wintergreen_oil flavorer) (STV 1.0 0.9091)) +(: cnet_isa_942f9d5299 (IsA wintun copehan) (STV 1.0 0.9091)) +(: cnet_isa_2e9699c1b6 (IsA wintun penutian) (STV 1.0 0.9091)) +(: cnet_isa_0ddb185108 (IsA wipeout spill) (STV 1.0 0.9091)) +(: cnet_isa_2f80e70de2 (IsA wiper contact) (STV 1.0 0.9091)) +(: cnet_isa_8f648ac0f6 (IsA wiper worker) (STV 1.0 0.9091)) +(: cnet_isa_133c3424fb (IsA wiper_motor electric_motor) (STV 1.0 0.9091)) +(: cnet_isa_5769f74a16 (IsA wire conductor) (STV 1.0 0.9091)) +(: cnet_isa_7b6f2ce105 (IsA wire ligament) (STV 1.0 0.9091)) +(: cnet_isa_b0e5ccfbae (IsA wire finishing_line) (STV 1.0 0.9091)) +(: cnet_isa_269569c78e (IsA wire_cloth fabric) (STV 1.0 0.9091)) +(: cnet_isa_eefe35eb15 (IsA wire_cutter edge_tool) (STV 1.0 0.9091)) +(: cnet_isa_98b16fdb7c (IsA wire_gauge gauge) (STV 1.0 0.9091)) +(: cnet_isa_fad0fdf662 (IsA wire_glass glass) (STV 1.0 0.9091)) +(: cnet_isa_15ffef2149 (IsA wire_haired_fox_terrier fox_terrier) (STV 1.0 0.9091)) +(: cnet_isa_15d02b75d6 (IsA wire_matrix_printer dot_matrix_printer) (STV 1.0 0.9091)) +(: cnet_isa_46893f5b64 (IsA wire_matrix_printer impact_printer) (STV 1.0 0.9091)) +(: cnet_isa_d6ba9df733 (IsA wire_puller hustler) (STV 1.0 0.9091)) +(: cnet_isa_151fa2bfc5 (IsA wire_recorder magnetic_recorder) (STV 1.0 0.9091)) +(: cnet_isa_4c05f7b2bf (IsA wire_stripper hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_03f8db5ed4 (IsA wired magazine) (STV 1.0 0.9524)) +(: cnet_isa_efd6f2f66f (IsA wirehair terrier) (STV 1.0 0.9091)) +(: cnet_isa_d590456c24 (IsA wireless telecommunication) (STV 1.0 0.9091)) +(: cnet_isa_1166e7af50 (IsA wireless_local_area_network local_area_network) (STV 1.0 0.9091)) +(: cnet_isa_fe2b09d0b0 (IsA wireman skilled_worker) (STV 1.0 0.9091)) +(: cnet_isa_e00a035786 (IsA wirer communicator) (STV 1.0 0.9091)) +(: cnet_isa_33010ccc63 (IsA wiretap investigation) (STV 1.0 0.9091)) +(: cnet_isa_44885f2266 (IsA wirework net) (STV 1.0 0.9091)) +(: cnet_isa_aece527757 (IsA wireworm larva) (STV 1.0 0.9091)) +(: cnet_isa_ba4b984cb2 (IsA wiriness leanness) (STV 1.0 0.9091)) +(: cnet_isa_bae24123a9 (IsA wiring manual_labor) (STV 1.0 0.9091)) +(: cnet_isa_9a4733263c (IsA wiring circuit) (STV 1.0 0.9091)) +(: cnet_isa_f45b1d6bf6 (IsA wiring_diagram schematic) (STV 1.0 0.9091)) +(: cnet_isa_ff30d5a80d (IsA wisconsin state) (STV 1.0 0.9091)) +(: cnet_isa_02c9bcb6d7 (IsA wisconsin_weeping_willow willow) (STV 1.0 0.9091)) +(: cnet_isa_6b209f6881 (IsA wisdom good) (STV 1.0 0.9091)) +(: cnet_isa_d06b1d27fa (IsA wisdom trait) (STV 1.0 0.9091)) +(: cnet_isa_0341d678fa (IsA wisdom content) (STV 1.0 0.9091)) +(: cnet_isa_12f630eff7 (IsA wisdom know_how) (STV 1.0 0.9091)) +(: cnet_isa_ec21b3347b (IsA wisdom_tooth molar) (STV 1.0 0.9091)) +(: cnet_isa_7b2cfc5439 (IsA wise manner) (STV 1.0 0.9091)) +(: cnet_isa_d99d49083f (IsA wise_guy upstart) (STV 1.0 0.9091)) +(: cnet_isa_fdc8bb8cd9 (IsA wisecrack remark) (STV 1.0 0.9091)) +(: cnet_isa_ec230da851 (IsA wisent bison) (STV 1.0 0.9091)) +(: cnet_isa_cc79b8e61c (IsA wish preference) (STV 1.0 0.9091)) +(: cnet_isa_44be6ad34a (IsA wish request) (STV 1.0 0.9091)) +(: cnet_isa_b68ada4e60 (IsA wish desire) (STV 1.0 0.9091)) +(: cnet_isa_c8a613ad7b (IsA wish_list list) (STV 1.0 0.9091)) +(: cnet_isa_45575e1607 (IsA wish_wash beverage) (STV 1.0 0.9091)) +(: cnet_isa_ed804c9e9f (IsA wishbone furcula) (STV 1.0 0.9091)) +(: cnet_isa_f4c4f73dfc (IsA wishful_thinking illusion) (STV 1.0 0.9091)) +(: cnet_isa_c2489f4d4d (IsA wishfulness longing) (STV 1.0 0.9091)) +(: cnet_isa_5f3785281a (IsA wishing_cap cap) (STV 1.0 0.9091)) +(: cnet_isa_543639271b (IsA wisp flock) (STV 1.0 0.9091)) +(: cnet_isa_3f72091056 (IsA wisp package) (STV 1.0 0.9091)) +(: cnet_isa_a5ce73dbe3 (IsA wisp tuft) (STV 1.0 0.9091)) +(: cnet_isa_15b4988dad (IsA wisp small_person) (STV 1.0 0.9091)) +(: cnet_isa_fadd3966e4 (IsA wisteria vine) (STV 1.0 0.9091)) +(: cnet_isa_8793abd924 (IsA wistfulness longing) (STV 1.0 0.9091)) +(: cnet_isa_a8551cab47 (IsA wit message) (STV 1.0 0.9091)) +(: cnet_isa_80671cfddb (IsA witch imaginary_being) (STV 1.0 0.9091)) +(: cnet_isa_d730ed1005 (IsA witch_doctor sorcerer) (STV 1.0 0.9091)) +(: cnet_isa_55933a9f8e (IsA witch_elm elm) (STV 1.0 0.9091)) +(: cnet_isa_19769a6a74 (IsA witch_hazel lotion) (STV 1.0 0.9091)) +(: cnet_isa_2c7f124cb2 (IsA witch_hazel shrub) (STV 1.0 0.9091)) +(: cnet_isa_99917fdb10 (IsA witch_hunt harassment) (STV 1.0 0.9091)) +(: cnet_isa_2977219718 (IsA witch_hunter tormentor) (STV 1.0 0.9091)) +(: cnet_isa_89d2930686 (IsA witchcraft sorcery) (STV 1.0 0.9091)) +(: cnet_isa_e1b71701ad (IsA witche_brew assortment) (STV 1.0 0.9091)) +(: cnet_isa_a4273d5c1c (IsA witche_broom tuft) (STV 1.0 0.9091)) +(: cnet_isa_0922ebecb7 (IsA witche_butter jelly_fungus) (STV 1.0 0.9091)) +(: cnet_isa_83811d81f7 (IsA witchgrass panic_grass) (STV 1.0 0.9091)) +(: cnet_isa_44b183bed4 (IsA witching practice) (STV 1.0 0.9091)) +(: cnet_isa_92f974d55e (IsA withdrawal departure) (STV 1.0 0.9091)) +(: cnet_isa_3f8124be66 (IsA withdrawal removal) (STV 1.0 0.9091)) +(: cnet_isa_3900fb8db0 (IsA withdrawal separation) (STV 1.0 0.9091)) +(: cnet_isa_0f5fdcc931 (IsA withdrawal termination) (STV 1.0 0.9091)) +(: cnet_isa_c85e451b05 (IsA withdrawal retraction) (STV 1.0 0.9091)) +(: cnet_isa_1c0f5dfb73 (IsA withdrawal indifference) (STV 1.0 0.9091)) +(: cnet_isa_9421a7a1c1 (IsA withdrawal_symptom symptom) (STV 1.0 0.9091)) +(: cnet_isa_cec468e945 (IsA withdrawer authority) (STV 1.0 0.9091)) +(: cnet_isa_8e816d4739 (IsA withdrawer contestant) (STV 1.0 0.9091)) +(: cnet_isa_5f7d25654e (IsA withdrawer depositor) (STV 1.0 0.9091)) +(: cnet_isa_30cf23823d (IsA withdrawer drug_addict) (STV 1.0 0.9091)) +(: cnet_isa_dd073f4aab (IsA withdrawer individualist) (STV 1.0 0.9091)) +(: cnet_isa_9a0d01e621 (IsA withdrawer student) (STV 1.0 0.9091)) +(: cnet_isa_0c741aa3ef (IsA withe band) (STV 1.0 0.9091)) +(: cnet_isa_c160bea473 (IsA withe branchlet) (STV 1.0 0.9091)) +(: cnet_isa_affefe7590 (IsA wither body_part) (STV 1.0 0.9091)) +(: cnet_isa_a51426d72e (IsA withholder person) (STV 1.0 0.9091)) +(: cnet_isa_54d7491f8a (IsA withholder restrainer) (STV 1.0 0.9091)) +(: cnet_isa_6270913534 (IsA withholding retention) (STV 1.0 0.9091)) +(: cnet_isa_3224d23ae0 (IsA withholding subtraction) (STV 1.0 0.9091)) +(: cnet_isa_6afd143f7e (IsA withholding_tax income_tax) (STV 1.0 0.9091)) +(: cnet_isa_b2a05ec855 (IsA withstander adversary) (STV 1.0 0.9091)) +(: cnet_isa_b454d437e9 (IsA witness testimony) (STV 1.0 0.9091)) +(: cnet_isa_ebc9ab6980 (IsA witness person) (STV 1.0 0.9091)) +(: cnet_isa_da55cec725 (IsA witness signer) (STV 1.0 0.9091)) +(: cnet_isa_ce777180c4 (IsA witness perceiver) (STV 1.0 0.9091)) +(: cnet_isa_bb544be89c (IsA witness speaker) (STV 1.0 0.9091)) +(: cnet_isa_805ec650b0 (IsA witness_box box) (STV 1.0 0.9091)) +(: cnet_isa_f4a9d4b811 (IsA wit intelligence) (STV 1.0 0.9091)) +(: cnet_isa_bd8077f5a0 (IsA wittol cuckold) (STV 1.0 0.9091)) +(: cnet_isa_6bcebc08d5 (IsA woad herb) (STV 1.0 0.9091)) +(: cnet_isa_efc8867e37 (IsA woad dye) (STV 1.0 0.9091)) +(: cnet_isa_c26224fa12 (IsA wobble movement) (STV 1.0 0.9091)) +(: cnet_isa_322b64747b (IsA wobbler thing) (STV 1.0 0.9091)) +(: cnet_isa_ce1d325ad7 (IsA wobbly radical) (STV 1.0 0.9091)) +(: cnet_isa_3bf1b2d3fd (IsA woe mournfulness) (STV 1.0 0.9091)) +(: cnet_isa_f64c709288 (IsA wog person_of_color) (STV 1.0 0.9091)) +(: cnet_isa_c1da89f632 (IsA wok cooking_pot) (STV 1.0 0.9091)) +(: cnet_isa_6b7eacd789 (IsA wok pan) (STV 1.0 0.9091)) +(: cnet_isa_4881ca6e42 (IsA wold country) (STV 1.0 0.9091)) +(: cnet_isa_0edee88b19 (IsA wolf canine) (STV 1.0 0.9091)) +(: cnet_isa_59988ee05d (IsA wolf womanizer) (STV 1.0 0.9091)) +(: cnet_isa_e641ba8077 (IsA wolf_boy wild_man) (STV 1.0 0.9091)) +(: cnet_isa_b57f495df3 (IsA wolf_pack fleet) (STV 1.0 0.9091)) +(: cnet_isa_2a33b90c47 (IsA wolf_pack pack) (STV 1.0 0.9091)) +(: cnet_isa_f2f5c277d6 (IsA wolf_pup wolf) (STV 1.0 0.9091)) +(: cnet_isa_b0b4a8c528 (IsA wolf_pup young_mammal) (STV 1.0 0.9091)) +(: cnet_isa_008e8de699 (IsA wolf_spider spider) (STV 1.0 0.9091)) +(: cnet_isa_e54734c0dd (IsA wolffia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_7dd3b33288 (IsA wolffiella monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_b0b99ffeb2 (IsA wolffish blennioid_fish) (STV 1.0 0.9091)) +(: cnet_isa_a1768aac38 (IsA wolfhound hound) (STV 1.0 0.9091)) +(: cnet_isa_6e35f10651 (IsA wolframite mineral) (STV 1.0 0.9091)) +(: cnet_isa_dd433cb1d3 (IsA wolfsbane aconite) (STV 1.0 0.9091)) +(: cnet_isa_eb946a737f (IsA wollastonite mineral) (STV 1.0 0.9091)) +(: cnet_isa_1da66dbd75 (IsA wollemi_pine conifer) (STV 1.0 0.9091)) +(: cnet_isa_36215e7d1f (IsA wolof west_african) (STV 1.0 0.9091)) +(: cnet_isa_56d9a20cbe (IsA wolstonian_glaciation glaciation) (STV 1.0 0.9091)) +(: cnet_isa_e95aacf6da (IsA wolverine musteline_mammal) (STV 1.0 0.9091)) +(: cnet_isa_4e85e2e7c9 (IsA wolverine american) (STV 1.0 0.9091)) +(: cnet_isa_13b85acd36 (IsA woman_s_clothing clothing) (STV 1.0 0.9091)) +(: cnet_isa_6daf5d33a7 (IsA woman adult) (STV 1.0 0.9091)) +(: cnet_isa_df6145ff5e (IsA woman female) (STV 1.0 0.9091)) +(: cnet_isa_ca69ce317d (IsA womanhood position) (STV 1.0 0.9091)) +(: cnet_isa_fe8a662d0d (IsA womanhood class) (STV 1.0 0.9091)) +(: cnet_isa_b5cf7137b1 (IsA womanhood adulthood) (STV 1.0 0.9091)) +(: cnet_isa_032bf88ef6 (IsA womanizer libertine) (STV 1.0 0.9091)) +(: cnet_isa_9775e7b9f2 (IsA womanizer man) (STV 1.0 0.9091)) +(: cnet_isa_210bb1c0a7 (IsA womankind people) (STV 1.0 0.9091)) +(: cnet_isa_03f0dcefdd (IsA womanliness femininity) (STV 1.0 0.9091)) +(: cnet_isa_a01f6a0422 (IsA wombat marsupial) (STV 1.0 0.9091)) +(: cnet_isa_ee18195b59 (IsA women_s_army_corp corp) (STV 1.0 0.9091)) +(: cnet_isa_e9373d96b4 (IsA won_lost_record record) (STV 1.0 0.9091)) +(: cnet_isa_0be1ac4d8e (IsA won_ton dumpling) (STV 1.0 0.9091)) +(: cnet_isa_cd96b3c2e6 (IsA won_ton soup) (STV 1.0 0.9091)) +(: cnet_isa_cc30466b61 (IsA wonder happening) (STV 1.0 0.9091)) +(: cnet_isa_81eab06373 (IsA wonder astonishment) (STV 1.0 0.9091)) +(: cnet_isa_24940535b1 (IsA wonder_boy man) (STV 1.0 0.9091)) +(: cnet_isa_363a9dd175 (IsA wonder_woman woman) (STV 1.0 0.9091)) +(: cnet_isa_ea3339f778 (IsA wonderer admirer) (STV 1.0 0.9091)) +(: cnet_isa_97d3d5de94 (IsA wonderer intellectual) (STV 1.0 0.9091)) +(: cnet_isa_0d393c4222 (IsA wonderland imaginary_place) (STV 1.0 0.9091)) +(: cnet_isa_024d056e65 (IsA wonderland land) (STV 1.0 0.9091)) +(: cnet_isa_c3179a22b4 (IsA wood_s_metal alloy) (STV 1.0 0.9091)) +(: cnet_isa_19dc7f9a90 (IsA wood fuel) (STV 1.0 0.9091)) +(: cnet_isa_e747a82a22 (IsA wood material) (STV 1.0 0.9572)) +(: cnet_isa_8b1cbfcfd6 (IsA wood renewable_resource) (STV 1.0 0.9091)) +(: cnet_isa_bd058c3ea8 (IsA wood golf_club) (STV 1.0 0.9091)) +(: cnet_isa_901e15539f (IsA wood plant_material) (STV 1.0 0.9091)) +(: cnet_isa_b8eb3fcf27 (IsA wood_anemone anemone) (STV 1.0 0.9091)) +(: cnet_isa_8fc607afa8 (IsA wood_ant ant) (STV 1.0 0.9091)) +(: cnet_isa_6e4d22de4e (IsA wood_aster aster) (STV 1.0 0.9091)) +(: cnet_isa_546381552a (IsA wood_chisel chisel) (STV 1.0 0.9091)) +(: cnet_isa_52c54e57aa (IsA wood_drake wood_duck) (STV 1.0 0.9091)) +(: cnet_isa_31cc2da94b (IsA wood_duck duck) (STV 1.0 0.9091)) +(: cnet_isa_9de968b5b1 (IsA wood_fern fern) (STV 1.0 0.9091)) +(: cnet_isa_b5e4aa328b (IsA wood_frog true_frog) (STV 1.0 0.9091)) +(: cnet_isa_a05d82a9fc (IsA wood_grain grain) (STV 1.0 0.9091)) +(: cnet_isa_0fa702f329 (IsA wood_hoopoe coraciiform_bird) (STV 1.0 0.9091)) +(: cnet_isa_ee0e68ce9a (IsA wood_horsetail horsetail) (STV 1.0 0.9091)) +(: cnet_isa_406d84787a (IsA wood_ibis ibis) (STV 1.0 0.9091)) +(: cnet_isa_125b64ed01 (IsA wood_ibis stork) (STV 1.0 0.9091)) +(: cnet_isa_12af4767ee (IsA wood_lily lily) (STV 1.0 0.9091)) +(: cnet_isa_879d32434e (IsA wood_meadowgrass meadowgrass) (STV 1.0 0.9091)) +(: cnet_isa_96664cba31 (IsA wood_mint herb) (STV 1.0 0.9091)) +(: cnet_isa_01eedf0a1a (IsA wood_mouse mouse) (STV 1.0 0.9091)) +(: cnet_isa_58fc69bb7a (IsA wood_nettle nettle) (STV 1.0 0.9091)) +(: cnet_isa_888f1ce0c2 (IsA wood_pigeon pigeon) (STV 1.0 0.9091)) +(: cnet_isa_3fa7becde7 (IsA wood_pulp pulp) (STV 1.0 0.9091)) +(: cnet_isa_39cd339aef (IsA wood_rabbit rabbit) (STV 1.0 0.9091)) +(: cnet_isa_d6523d4226 (IsA wood_rat rodent) (STV 1.0 0.9091)) +(: cnet_isa_08e2ea4f2b (IsA wood_sage germander) (STV 1.0 0.9091)) +(: cnet_isa_47919ebce0 (IsA wood_spurge spurge) (STV 1.0 0.9091)) +(: cnet_isa_e0a3043069 (IsA wood_sugar carbohydrate) (STV 1.0 0.9091)) +(: cnet_isa_fe1cb90cd9 (IsA wood_swallow oscine) (STV 1.0 0.9091)) +(: cnet_isa_0809e45d49 (IsA wood_tar natural_resin) (STV 1.0 0.9091)) +(: cnet_isa_19623512d2 (IsA wood_thrush thrush) (STV 1.0 0.9091)) +(: cnet_isa_52a3d6c82c (IsA wood_tick hard_tick) (STV 1.0 0.9091)) +(: cnet_isa_a931bf9804 (IsA wood_vise vise) (STV 1.0 0.9091)) +(: cnet_isa_9be42bd1a6 (IsA wood_warbler old_world_warbler) (STV 1.0 0.9091)) +(: cnet_isa_369f25f748 (IsA woodbine honeysuckle) (STV 1.0 0.9091)) +(: cnet_isa_ae528bf5ff (IsA woodborer invertebrate) (STV 1.0 0.9091)) +(: cnet_isa_c68c094180 (IsA woodcarver woodworker) (STV 1.0 0.9091)) +(: cnet_isa_35dbde5572 (IsA woodcarving carving) (STV 1.0 0.9091)) +(: cnet_isa_f9c179870f (IsA woodcock shorebird) (STV 1.0 0.9091)) +(: cnet_isa_568455fafb (IsA woodcraft craft) (STV 1.0 0.9091)) +(: cnet_isa_82fff9ad9e (IsA woodcraft experience) (STV 1.0 0.9091)) +(: cnet_isa_87be87eccc (IsA woodcut engraving) (STV 1.0 0.9091)) +(: cnet_isa_abbf8f0525 (IsA woodcutter laborer) (STV 1.0 0.9091)) +(: cnet_isa_c5ebe35411 (IsA wooden_spoon booby_prize) (STV 1.0 0.9091)) +(: cnet_isa_19016554ee (IsA wooden_spoon spoon) (STV 1.0 0.9091)) +(: cnet_isa_7e8efd0268 (IsA wooden_spoon woodenware) (STV 1.0 0.9091)) +(: cnet_isa_dc1a533dd5 (IsA woodenness awkwardness) (STV 1.0 0.9091)) +(: cnet_isa_539d4db65f (IsA woodenware ware) (STV 1.0 0.9091)) +(: cnet_isa_329234a644 (IsA woodhewer tyrannid) (STV 1.0 0.9091)) +(: cnet_isa_fb4e6544df (IsA woodland_caribou caribou) (STV 1.0 0.9091)) +(: cnet_isa_c38026db05 (IsA woodland_oxeye oxeye) (STV 1.0 0.9091)) +(: cnet_isa_7c0e74e8dc (IsA woodland_star flower) (STV 1.0 0.9091)) +(: cnet_isa_3917e7ae6c (IsA woodlouse isopod) (STV 1.0 0.9091)) +(: cnet_isa_78b5c27954 (IsA woodpecker bird) (STV 1.0 0.9091)) +(: cnet_isa_e2786150aa (IsA woodpecker piciform_bird) (STV 1.0 0.9091)) +(: cnet_isa_299202391b (IsA woodpile pile) (STV 1.0 0.9091)) +(: cnet_isa_0a7afbad8d (IsA woodruff subshrub) (STV 1.0 0.9091)) +(: cnet_isa_efe4f62a26 (IsA woodscrew screw) (STV 1.0 0.9091)) +(: cnet_isa_6af1441782 (IsA woodshed shed) (STV 1.0 0.9091)) +(: cnet_isa_6c934fed6f (IsA woodsia fern) (STV 1.0 0.9091)) +(: cnet_isa_2418c01984 (IsA woodsiness quality) (STV 1.0 0.9091)) +(: cnet_isa_8045ca8cbe (IsA woodsman rustic) (STV 1.0 0.9091)) +(: cnet_isa_813a85d473 (IsA woodwardia fern_genus) (STV 1.0 0.9091)) +(: cnet_isa_a749e0f2d7 (IsA woodwaxen broom) (STV 1.0 0.9091)) +(: cnet_isa_152b39c690 (IsA woodwind instrument) (STV 1.0 0.9719)) +(: cnet_isa_198ace38b0 (IsA woodwind musical_instrument) (STV 1.0 0.9636)) +(: cnet_isa_a787a1672b (IsA woodwind wind_instrument) (STV 1.0 0.9091)) +(: cnet_isa_cb121511ad (IsA woodwind_family class) (STV 1.0 0.9091)) +(: cnet_isa_b08b45bba3 (IsA woodwork work) (STV 1.0 0.9091)) +(: cnet_isa_30121648b4 (IsA woodworker craftsman) (STV 1.0 0.9091)) +(: cnet_isa_50e36790b2 (IsA woodworking hobby) (STV 1.0 0.9091)) +(: cnet_isa_e15f6133e8 (IsA woodworm worm) (STV 1.0 0.9091)) +(: cnet_isa_a408228627 (IsA woody_plant vascular_plant) (STV 1.0 0.9091)) +(: cnet_isa_00ad2e007f (IsA woof thread) (STV 1.0 0.9091)) +(: cnet_isa_ced5449183 (IsA woofer loudspeaker) (STV 1.0 0.9091)) +(: cnet_isa_09610a5fa0 (IsA wool material) (STV 1.0 0.9091)) +(: cnet_isa_4b2ab72b2f (IsA wool natural_fiber) (STV 1.0 0.9091)) +(: cnet_isa_68551d2bf1 (IsA wool coat) (STV 1.0 0.9091)) +(: cnet_isa_0b3c8f24e3 (IsA wool fabric) (STV 1.0 0.9091)) +(: cnet_isa_adf6deea22 (IsA wool animal_fiber) (STV 1.0 0.9091)) +(: cnet_isa_ac4956fa84 (IsA wool_grass sedge) (STV 1.0 0.9091)) +(: cnet_isa_4d26aa5b99 (IsA wool_oil animal_oil) (STV 1.0 0.9091)) +(: cnet_isa_4c7a67dd97 (IsA wool_stapler distributor) (STV 1.0 0.9091)) +(: cnet_isa_f33bb194e5 (IsA wool_stapler grader) (STV 1.0 0.9091)) +(: cnet_isa_70fd0cb5b7 (IsA woolgathering dream) (STV 1.0 0.9091)) +(: cnet_isa_115cd9a743 (IsA woolly_adelgid adelgid) (STV 1.0 0.9091)) +(: cnet_isa_9f7462cb45 (IsA woolly_alder_aphid woolly_aphid) (STV 1.0 0.9091)) +(: cnet_isa_d55a4336f8 (IsA woolly_aphid aphid) (STV 1.0 0.9091)) +(: cnet_isa_2195184602 (IsA woolly_apple_aphid woolly_aphid) (STV 1.0 0.9091)) +(: cnet_isa_450e074b6c (IsA woolly_bear caterpillar) (STV 1.0 0.9091)) +(: cnet_isa_7d2315b545 (IsA woolly_bear_moth woolly_bear) (STV 1.0 0.9091)) +(: cnet_isa_170f662f01 (IsA woolly_daisy wildflower) (STV 1.0 0.9091)) +(: cnet_isa_acbe20a09b (IsA woolly_indris lemur) (STV 1.0 0.9091)) +(: cnet_isa_aa31b7febe (IsA woolly_mammoth mammoth) (STV 1.0 0.9091)) +(: cnet_isa_14d5ed5c60 (IsA woolly_monkey new_world_monkey) (STV 1.0 0.9091)) +(: cnet_isa_dd4a9a7d6d (IsA woolly_rhinocero rhinocero) (STV 1.0 0.9091)) +(: cnet_isa_5c23499086 (IsA woolly_sunflower wildflower) (STV 1.0 0.9091)) +(: cnet_isa_76ad7b62ca (IsA woolly_thistle plume_thistle) (STV 1.0 0.9091)) +(: cnet_isa_9dae76d3b1 (IsA wooly_lip_fern lip_fern) (STV 1.0 0.9091)) +(: cnet_isa_f3fed39bf4 (IsA wop italian) (STV 1.0 0.9091)) +(: cnet_isa_bc4c6b65e8 (IsA worcester_sauce sauce) (STV 1.0 0.9091)) +(: cnet_isa_fb16770323 (IsA word piece_of_sentence) (STV 1.0 0.9339)) +(: cnet_isa_8a7e6c05c9 (IsA word language_unit) (STV 1.0 0.9091)) +(: cnet_isa_02f72a63bd (IsA word order) (STV 1.0 0.9091)) +(: cnet_isa_04bafb214a (IsA word statement) (STV 1.0 0.9091)) +(: cnet_isa_5358524cbf (IsA word computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_16da971b86 (IsA word_division division) (STV 1.0 0.9091)) +(: cnet_isa_de91f73ad9 (IsA word_finder thesaurus) (STV 1.0 0.9091)) +(: cnet_isa_8f120337c5 (IsA word_game parlor_game) (STV 1.0 0.9091)) +(: cnet_isa_0de462470f (IsA word_meaning sense) (STV 1.0 0.9091)) +(: cnet_isa_27afac83a4 (IsA word_of_god gospel) (STV 1.0 0.9091)) +(: cnet_isa_e75b2ebdbe (IsA word_of_god manifestation) (STV 1.0 0.9091)) +(: cnet_isa_e969fbccb1 (IsA word_order ordering) (STV 1.0 0.9091)) +(: cnet_isa_6e83195198 (IsA word_painter writer) (STV 1.0 0.9091)) +(: cnet_isa_c4624e8de0 (IsA word_picture description) (STV 1.0 0.9091)) +(: cnet_isa_b95789ab5f (IsA word_play play) (STV 1.0 0.9091)) +(: cnet_isa_c9e9f7af50 (IsA word_processing data_processing) (STV 1.0 0.9091)) +(: cnet_isa_2bf2404c61 (IsA word_processor application) (STV 1.0 0.9091)) +(: cnet_isa_11a408191d (IsA word_salad incoherence) (STV 1.0 0.9091)) +(: cnet_isa_db310bf90c (IsA word_square puzzle) (STV 1.0 0.9091)) +(: cnet_isa_210a13d133 (IsA word_stress stress) (STV 1.0 0.9091)) +(: cnet_isa_66cd9239f5 (IsA wordbook reference_book) (STV 1.0 0.9091)) +(: cnet_isa_4325fdf09a (IsA wording formulation) (STV 1.0 0.9091)) +(: cnet_isa_83e9244f5b (IsA wordmonger writer) (STV 1.0 0.9091)) +(: cnet_isa_33560eaff2 (IsA wordnet lexical_database) (STV 1.0 0.9091)) +(: cnet_isa_0ed48937d1 (IsA word language) (STV 1.0 0.9091)) +(: cnet_isa_d424d83abe (IsA word speech) (STV 1.0 0.9091)) +(: cnet_isa_0ce392e2ae (IsA word_per_minute rate) (STV 1.0 0.9091)) +(: cnet_isa_fadb1fdaeb (IsA wordsmith writer) (STV 1.0 0.9091)) +(: cnet_isa_76293cf5ee (IsA work cooperative_activity) (STV 1.0 0.9339)) +(: cnet_isa_37ebdfb075 (IsA work activity) (STV 1.0 0.9091)) +(: cnet_isa_c4a1ac66e3 (IsA work product) (STV 1.0 0.9091)) +(: cnet_isa_4adfa8c3eb (IsA work energy) (STV 1.0 0.9091)) +(: cnet_isa_b1113d8502 (IsA work_animal animal) (STV 1.0 0.9091)) +(: cnet_isa_5d31253eb0 (IsA work_camp camp) (STV 1.0 0.9091)) +(: cnet_isa_93d65fd220 (IsA work_clothing clothing) (STV 1.0 0.9091)) +(: cnet_isa_c3bc1ffea0 (IsA work_flow advancement) (STV 1.0 0.9091)) +(: cnet_isa_c1b75bf737 (IsA work_force force) (STV 1.0 0.9091)) +(: cnet_isa_5d22deebd5 (IsA work_in demonstration) (STV 1.0 0.9091)) +(: cnet_isa_8bbd964d25 (IsA work_in_progress work) (STV 1.0 0.9091)) +(: cnet_isa_7fa0a1f0c5 (IsA work_of_art art) (STV 1.0 0.9091)) +(: cnet_isa_04c3ae6ea2 (IsA work_shirt shirt) (STV 1.0 0.9091)) +(: cnet_isa_d928ec80a6 (IsA work_shirt workwear) (STV 1.0 0.9091)) +(: cnet_isa_67ef580e80 (IsA work_song song) (STV 1.0 0.9091)) +(: cnet_isa_a6609ea3e4 (IsA work_study_program education) (STV 1.0 0.9091)) +(: cnet_isa_fa989783b2 (IsA work_surface surface) (STV 1.0 0.9091)) +(: cnet_isa_5475c3f787 (IsA work_time time_period) (STV 1.0 0.9091)) +(: cnet_isa_ce2e836090 (IsA work_to_rule job_action) (STV 1.0 0.9091)) +(: cnet_isa_5a4db832b0 (IsA work_unit unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_6971535b98 (IsA workaholic compulsive) (STV 1.0 0.9091)) +(: cnet_isa_2c353d61a1 (IsA workaholism compulsiveness) (STV 1.0 0.9091)) +(: cnet_isa_bde3d99b6d (IsA workbasket container) (STV 1.0 0.9091)) +(: cnet_isa_69e053525f (IsA workbench worktable) (STV 1.0 0.9091)) +(: cnet_isa_e9a61aab58 (IsA workboard board) (STV 1.0 0.9091)) +(: cnet_isa_7716b9fe6a (IsA workbook book) (STV 1.0 0.9091)) +(: cnet_isa_91d13fa221 (IsA workday day) (STV 1.0 0.9091)) +(: cnet_isa_991b3a8de4 (IsA workday weekday) (STV 1.0 0.9091)) +(: cnet_isa_9151c92d6c (IsA worker insect) (STV 1.0 0.9091)) +(: cnet_isa_dbfc6ff973 (IsA worker person) (STV 1.0 0.9091)) +(: cnet_isa_8a83766802 (IsA worker_bee worker) (STV 1.0 0.9091)) +(: cnet_isa_740f572ce2 (IsA workhorse horse) (STV 1.0 0.9091)) +(: cnet_isa_eeb1d89755 (IsA workhorse machine) (STV 1.0 0.9091)) +(: cnet_isa_04ee9202a8 (IsA workhouse jail) (STV 1.0 0.9091)) +(: cnet_isa_0688083301 (IsA workhouse poorhouse) (STV 1.0 0.9091)) +(: cnet_isa_fb6858eb5c (IsA working excavation) (STV 1.0 0.9091)) +(: cnet_isa_6cf2af0591 (IsA working_agreement agreement) (STV 1.0 0.9091)) +(: cnet_isa_00f0ef00d2 (IsA working_dog dog) (STV 1.0 0.9091)) +(: cnet_isa_d0a90615f1 (IsA working_girl girl) (STV 1.0 0.9091)) +(: cnet_isa_c6dbb980c5 (IsA working_girl worker) (STV 1.0 0.9091)) +(: cnet_isa_87086e4d9f (IsA working_group unit) (STV 1.0 0.9091)) +(: cnet_isa_a5c6e0b3cc (IsA working_memory memory) (STV 1.0 0.9091)) +(: cnet_isa_596bcb0dc1 (IsA working_paper legal_document) (STV 1.0 0.9091)) +(: cnet_isa_7e4d80fe8e (IsA working_paper record) (STV 1.0 0.9091)) +(: cnet_isa_f1576dec48 (IsA working_principle rule) (STV 1.0 0.9091)) +(: cnet_isa_9a63b42428 (IsA workload employment) (STV 1.0 0.9091)) +(: cnet_isa_98fad64ff9 (IsA workman employee) (STV 1.0 0.9091)) +(: cnet_isa_6dac3cad4c (IsA workmate worker) (STV 1.0 0.9091)) +(: cnet_isa_f5e73564d8 (IsA workmen_s_compensation compensation) (STV 1.0 0.9091)) +(: cnet_isa_2f06a6ada1 (IsA workpiece work) (STV 1.0 0.9091)) +(: cnet_isa_fc0663c788 (IsA workplace geographic_point) (STV 1.0 0.9091)) +(: cnet_isa_6f396b1917 (IsA workplace often_office) (STV 1.0 0.9091)) +(: cnet_isa_58cb25e098 (IsA workroom room) (STV 1.0 0.9091)) +(: cnet_isa_ad59507e0c (IsA work mechanism) (STV 1.0 0.9091)) +(: cnet_isa_dbdcf8a993 (IsA work_council council) (STV 1.0 0.9091)) +(: cnet_isa_ae27939bb8 (IsA work_program program) (STV 1.0 0.9091)) +(: cnet_isa_c53c1fe9c7 (IsA worksheet sheet) (STV 1.0 0.9091)) +(: cnet_isa_d01a9557be (IsA worksheet written_record) (STV 1.0 0.9091)) +(: cnet_isa_d7f17fd1c8 (IsA workshop course) (STV 1.0 0.9091)) +(: cnet_isa_bf2b682723 (IsA workshop workplace) (STV 1.0 0.9091)) +(: cnet_isa_3240119466 (IsA workspace space) (STV 1.0 0.9091)) +(: cnet_isa_86579dac04 (IsA workstation digital_computer) (STV 1.0 0.9091)) +(: cnet_isa_8b9c4bc929 (IsA worktable table) (STV 1.0 0.9091)) +(: cnet_isa_ae27162efb (IsA workwear apparel) (STV 1.0 0.9091)) +(: cnet_isa_0d3a0fcb2e (IsA workweek work_time) (STV 1.0 0.9091)) +(: cnet_isa_19e9f1cbc5 (IsA world big_place) (STV 1.0 0.9339)) +(: cnet_isa_c0cca509fc (IsA world where_live) (STV 1.0 0.9339)) +(: cnet_isa_8a7376e945 (IsA world group) (STV 1.0 0.9091)) +(: cnet_isa_cafc60540f (IsA world homo) (STV 1.0 0.9091)) +(: cnet_isa_238315d018 (IsA world experience) (STV 1.0 0.9091)) +(: cnet_isa_d4f82779c1 (IsA world class) (STV 1.0 0.9091)) +(: cnet_isa_aae6e1350e (IsA world part) (STV 1.0 0.9091)) +(: cnet_isa_d1e03cbc1b (IsA world_affair affair) (STV 1.0 0.9091)) +(: cnet_isa_1cf7693ae1 (IsA world_beater rival) (STV 1.0 0.9091)) +(: cnet_isa_71e6c3e060 (IsA world_council council) (STV 1.0 0.9091)) +(: cnet_isa_f907a2e944 (IsA world_council_of_churche world_council) (STV 1.0 0.9091)) +(: cnet_isa_84108776f4 (IsA world_cup tournament) (STV 1.0 0.9091)) +(: cnet_isa_efc5da1bd6 (IsA world_health_organization united_nation_agency) (STV 1.0 0.9091)) +(: cnet_isa_363c861bf7 (IsA world_meteorological_organization united_nation_agency) (STV 1.0 0.9091)) +(: cnet_isa_c02060a87c (IsA world_organization alliance) (STV 1.0 0.9091)) +(: cnet_isa_4c8e68d118 (IsA world_peace big_issue_with_politicion) (STV 1.0 0.9091)) +(: cnet_isa_5569569027 (IsA world_power state) (STV 1.0 0.9091)) +(: cnet_isa_292842d60d (IsA world_premiere performance) (STV 1.0 0.9091)) +(: cnet_isa_6b8bbc68ed (IsA world_record record) (STV 1.0 0.9091)) +(: cnet_isa_c7e9356c2e (IsA world_sery playoff) (STV 1.0 0.9091)) +(: cnet_isa_1967a6b119 (IsA world_sery sery) (STV 1.0 0.9091)) +(: cnet_isa_0a2da8b0b6 (IsA world_trade_organization world_organization) (STV 1.0 0.9091)) +(: cnet_isa_b2f199df17 (IsA world_war war) (STV 1.0 0.9091)) +(: cnet_isa_dc0c3a16e8 (IsA world_weariness melancholy) (STV 1.0 0.9091)) +(: cnet_isa_6b5fbc2785 (IsA world_wide_web computer_network) (STV 1.0 0.9091)) +(: cnet_isa_e30878a302 (IsA worldliness outwardness) (STV 1.0 0.9091)) +(: cnet_isa_65616d53df (IsA worldling person) (STV 1.0 0.9091)) +(: cnet_isa_c2bf003aa8 (IsA worldly_concern concern) (STV 1.0 0.9091)) +(: cnet_isa_0864c3207b (IsA worldly_possession commodity) (STV 1.0 0.9091)) +(: cnet_isa_8500dab48b (IsA worldly_possession property) (STV 1.0 0.9091)) +(: cnet_isa_0fda973cbb (IsA worm animal) (STV 1.0 0.9339)) +(: cnet_isa_5a45345ffa (IsA worm invertebrate) (STV 1.0 0.9091)) +(: cnet_isa_503a7402ed (IsA worm screw) (STV 1.0 0.9091)) +(: cnet_isa_12d9dfbd39 (IsA worm malevolent_program) (STV 1.0 0.9091)) +(: cnet_isa_fde37ee976 (IsA worm unpleasant_person) (STV 1.0 0.9091)) +(: cnet_isa_05d3e33b29 (IsA worm_family family) (STV 1.0 0.9091)) +(: cnet_isa_ed2deed42d (IsA worm_fence rail_fence) (STV 1.0 0.9091)) +(: cnet_isa_c563f4b7c6 (IsA worm_fish percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_b2010199eb (IsA worm_gear gear) (STV 1.0 0.9091)) +(: cnet_isa_1921be3e34 (IsA worm_genus genus) (STV 1.0 0.9091)) +(: cnet_isa_879c97ae91 (IsA worm_lizard lizard) (STV 1.0 0.9091)) +(: cnet_isa_3a157de765 (IsA worm_wheel gear) (STV 1.0 0.9091)) +(: cnet_isa_65437088f6 (IsA wormcast fossil) (STV 1.0 0.9091)) +(: cnet_isa_4fea0b6540 (IsA wormcast body_waste) (STV 1.0 0.9091)) +(: cnet_isa_21dfcf0a0c (IsA wormhole hole) (STV 1.0 0.9091)) +(: cnet_isa_b8d784a623 (IsA wormian_bone bone) (STV 1.0 0.9091)) +(: cnet_isa_e3b6c199d4 (IsA wormseed_mustard weed) (STV 1.0 0.9091)) +(: cnet_isa_e865a87835 (IsA wormwood subshrub) (STV 1.0 0.9091)) +(: cnet_isa_e705be50dc (IsA wormwood_oil essential_oil) (STV 1.0 0.9091)) +(: cnet_isa_f5e4b7bbe7 (IsA wormwood_sage wormwood) (STV 1.0 0.9091)) +(: cnet_isa_cae092ee10 (IsA worn_spot spot) (STV 1.0 0.9091)) +(: cnet_isa_7c4ff04d6f (IsA worrier spoilsport) (STV 1.0 0.9091)) +(: cnet_isa_dc185b28cf (IsA worry anxiety) (STV 1.0 0.9091)) +(: cnet_isa_b71bd44fa6 (IsA worrying agitation) (STV 1.0 0.9091)) +(: cnet_isa_0addc41c73 (IsA worse bad) (STV 1.0 0.9091)) +(: cnet_isa_0d2787cae3 (IsA worsening change_of_state) (STV 1.0 0.9091)) +(: cnet_isa_d70b6f88b8 (IsA worship activity) (STV 1.0 0.9091)) +(: cnet_isa_dd91791799 (IsA worship love) (STV 1.0 0.9091)) +(: cnet_isa_0d56bba38c (IsA worshiper admirer) (STV 1.0 0.9091)) +(: cnet_isa_8c25c59b22 (IsA worst attempt) (STV 1.0 0.9091)) +(: cnet_isa_71046c1eb0 (IsA worst evil) (STV 1.0 0.9091)) +(: cnet_isa_a9dbb4fb5e (IsA worst result) (STV 1.0 0.9091)) +(: cnet_isa_f32c73d8a7 (IsA worsted fabric) (STV 1.0 0.9091)) +(: cnet_isa_9e8885ac14 (IsA worsted thread) (STV 1.0 0.9091)) +(: cnet_isa_db6df28786 (IsA wort malt) (STV 1.0 0.9091)) +(: cnet_isa_d2ddda62e2 (IsA wort herb) (STV 1.0 0.9091)) +(: cnet_isa_ff0da44113 (IsA worth quality) (STV 1.0 0.9091)) +(: cnet_isa_ba4fa30eaa (IsA worth indefinite_quantity) (STV 1.0 0.9091)) +(: cnet_isa_55fab12c0c (IsA worthiness good) (STV 1.0 0.9091)) +(: cnet_isa_a20445bbd9 (IsA worthless_object object) (STV 1.0 0.9091)) +(: cnet_isa_4c8779ae47 (IsA worthlessness inutility) (STV 1.0 0.9091)) +(: cnet_isa_ae10fc690b (IsA worthlessness quality) (STV 1.0 0.9091)) +(: cnet_isa_d1ea45b30a (IsA worthwhileness worth) (STV 1.0 0.9091)) +(: cnet_isa_d4e2d5fbe4 (IsA worthy important_person) (STV 1.0 0.9091)) +(: cnet_isa_f62f5646a5 (IsA wound damage) (STV 1.0 0.9091)) +(: cnet_isa_623ca0f29a (IsA wound distress) (STV 1.0 0.9091)) +(: cnet_isa_48c7eaecda (IsA wound personnel_casualty) (STV 1.0 0.9091)) +(: cnet_isa_d3ae1fa37b (IsA wound injury) (STV 1.0 0.9091)) +(: cnet_isa_833044b6ff (IsA wound_tumor_virus tumor_virus) (STV 1.0 0.9091)) +(: cnet_isa_5a53c7adc0 (IsA wounded people) (STV 1.0 0.9091)) +(: cnet_isa_8a831b299b (IsA wove_paper writing_paper) (STV 1.0 0.9091)) +(: cnet_isa_4950416bdd (IsA wrack seaweed) (STV 1.0 0.9091)) +(: cnet_isa_70f1a1fd85 (IsA wrack destruction) (STV 1.0 0.9091)) +(: cnet_isa_be2feee36a (IsA wrangler debater) (STV 1.0 0.9091)) +(: cnet_isa_809eb7b2b9 (IsA wrap cloak) (STV 1.0 0.9091)) +(: cnet_isa_cdf427e903 (IsA wrap sandwich) (STV 1.0 0.9091)) +(: cnet_isa_97fee51bcd (IsA wraparound garment) (STV 1.0 0.9091)) +(: cnet_isa_204c4d611f (IsA wrapper material) (STV 1.0 0.9091)) +(: cnet_isa_6669fe1d8c (IsA wrapping covering) (STV 1.0 0.9091)) +(: cnet_isa_f42c860cc5 (IsA wrapping_paper paper) (STV 1.0 0.9091)) +(: cnet_isa_6f55338935 (IsA wrasse percoid_fish) (STV 1.0 0.9091)) +(: cnet_isa_b6c47c5565 (IsA wrath mortal_sin) (STV 1.0 0.9091)) +(: cnet_isa_47e0c86f22 (IsA wrath fury) (STV 1.0 0.9091)) +(: cnet_isa_9d87f253bb (IsA wreath flower_arrangement) (STV 1.0 0.9091)) +(: cnet_isa_1c7d3427eb (IsA wreck serious_accident) (STV 1.0 0.9091)) +(: cnet_isa_045c4cfa9b (IsA wreck ship) (STV 1.0 0.9091)) +(: cnet_isa_d7d1fc6838 (IsA wreck decline) (STV 1.0 0.9091)) +(: cnet_isa_bb2c0caa68 (IsA wreckage part) (STV 1.0 0.9091)) +(: cnet_isa_738d56ad51 (IsA wrecker laborer) (STV 1.0 0.9091)) +(: cnet_isa_f09b653dc8 (IsA wren bird) (STV 1.0 0.9339)) +(: cnet_isa_34f64f83e1 (IsA wren passerine) (STV 1.0 0.9091)) +(: cnet_isa_146f5b6fd7 (IsA wren_tit titmouse) (STV 1.0 0.9091)) +(: cnet_isa_aad590863e (IsA wren_warbler old_world_warbler) (STV 1.0 0.9091)) +(: cnet_isa_ab58f23eb3 (IsA wrench hand_tool) (STV 1.0 0.9091)) +(: cnet_isa_3c1f3d9305 (IsA wrench injury) (STV 1.0 0.9091)) +(: cnet_isa_b3494ee531 (IsA wrester puller) (STV 1.0 0.9091)) +(: cnet_isa_7eda714856 (IsA wrestle struggle) (STV 1.0 0.9091)) +(: cnet_isa_a7edd9afb3 (IsA wrestler combatant) (STV 1.0 0.9091)) +(: cnet_isa_6d405b871b (IsA wrestling sport) (STV 1.0 0.9091)) +(: cnet_isa_5be22d2d43 (IsA wrestling contact_sport) (STV 1.0 0.9091)) +(: cnet_isa_6a1161a5c1 (IsA wrestling_hold clasp) (STV 1.0 0.9091)) +(: cnet_isa_e01e954e11 (IsA wrestling_mat mat) (STV 1.0 0.9091)) +(: cnet_isa_0f518112d1 (IsA wrestling_match match) (STV 1.0 0.9091)) +(: cnet_isa_f03900bc86 (IsA wrestling_ring ring) (STV 1.0 0.9091)) +(: cnet_isa_782161e911 (IsA wretch reprobate) (STV 1.0 0.9091)) +(: cnet_isa_155dca3ac5 (IsA wretchedness inferiority) (STV 1.0 0.9091)) +(: cnet_isa_8e8429fe03 (IsA wretchedness discomfort) (STV 1.0 0.9091)) +(: cnet_isa_7fcccdbabf (IsA wright craftsman) (STV 1.0 0.9091)) +(: cnet_isa_ec93fca195 (IsA wringer clothe_dryer) (STV 1.0 0.9091)) +(: cnet_isa_91cfdfb02e (IsA wrinkle difficulty) (STV 1.0 0.9091)) +(: cnet_isa_9477829fb5 (IsA wrinkle method) (STV 1.0 0.9091)) +(: cnet_isa_39fc5c0b2d (IsA wrinkle depression) (STV 1.0 0.9091)) +(: cnet_isa_5511237c2e (IsA wrist gliding_joint) (STV 1.0 0.9091)) +(: cnet_isa_26a799db40 (IsA wrist_pad protective_garment) (STV 1.0 0.9091)) +(: cnet_isa_dd81688005 (IsA wrist_pin pin) (STV 1.0 0.9091)) +(: cnet_isa_454da84e52 (IsA wristband band) (STV 1.0 0.9091)) +(: cnet_isa_0eba6aa5c2 (IsA wristlet band) (STV 1.0 0.9091)) +(: cnet_isa_abfe099f9a (IsA wristwatch portable_clock) (STV 1.0 0.9091)) +(: cnet_isa_fc32e5efa7 (IsA wristwatch watch) (STV 1.0 0.9091)) +(: cnet_isa_17315f4a02 (IsA writ legal_document) (STV 1.0 0.9091)) +(: cnet_isa_eee038a974 (IsA writ_of_detinue writ) (STV 1.0 0.9091)) +(: cnet_isa_181ab973b0 (IsA writ_of_election writ) (STV 1.0 0.9091)) +(: cnet_isa_b0f55b6f16 (IsA writ_of_error writ) (STV 1.0 0.9091)) +(: cnet_isa_07ccc99b45 (IsA writ_of_prohibition writ) (STV 1.0 0.9091)) +(: cnet_isa_35c86845b2 (IsA writ_of_right writ) (STV 1.0 0.9091)) +(: cnet_isa_de52fdb580 (IsA write_in vote) (STV 1.0 0.9091)) +(: cnet_isa_443c0c4e2b (IsA write_in_candidate campaigner) (STV 1.0 0.9091)) +(: cnet_isa_5dccaba2b9 (IsA write_off depreciation) (STV 1.0 0.9091)) +(: cnet_isa_2522796a9e (IsA write_off cancellation) (STV 1.0 0.9091)) +(: cnet_isa_d138fa5b08 (IsA writer_s_block block) (STV 1.0 0.9091)) +(: cnet_isa_6475d04525 (IsA writer_s_cramp spasm) (STV 1.0 0.9091)) +(: cnet_isa_50b8466eec (IsA writer_s_name name) (STV 1.0 0.9091)) +(: cnet_isa_322a41e222 (IsA writer communicator) (STV 1.0 0.9091)) +(: cnet_isa_bac4e5a212 (IsA writer literate) (STV 1.0 0.9091)) +(: cnet_isa_813392b3fe (IsA writing form_of_communication) (STV 1.0 0.9636)) +(: cnet_isa_2d901dac53 (IsA writing important_communication_skill) (STV 1.0 0.9091)) +(: cnet_isa_0275b4864a (IsA writing sery_of_mark_on_paper) (STV 1.0 0.9091)) +(: cnet_isa_89a91b69f3 (IsA writing way_to_store_information) (STV 1.0 0.9339)) +(: cnet_isa_d678119bcd (IsA writing activity) (STV 1.0 0.9091)) +(: cnet_isa_a88c8c1441 (IsA writing verbal_creation) (STV 1.0 0.9091)) +(: cnet_isa_99c319e984 (IsA writing oeuvre) (STV 1.0 0.9091)) +(: cnet_isa_e6571f0626 (IsA writing written_communication) (STV 1.0 0.9091)) +(: cnet_isa_05f19d668c (IsA writing_arm arm) (STV 1.0 0.9091)) +(: cnet_isa_dc6b4f3077 (IsA writing_board work_surface) (STV 1.0 0.9091)) +(: cnet_isa_720bb4f85e (IsA writing_desk case) (STV 1.0 0.9091)) +(: cnet_isa_64319518d2 (IsA writing_desk desk) (STV 1.0 0.9091)) +(: cnet_isa_1d9a057072 (IsA writing_implement implement) (STV 1.0 0.9091)) +(: cnet_isa_c874e373d0 (IsA writing_ink ink) (STV 1.0 0.9091)) +(: cnet_isa_ec1fe30720 (IsA writing_paper paper) (STV 1.0 0.9091)) +(: cnet_isa_5837cf7949 (IsA writing_style expressive_style) (STV 1.0 0.9091)) +(: cnet_isa_04177997a1 (IsA written_agreement agreement) (STV 1.0 0.9091)) +(: cnet_isa_6b7c62b518 (IsA written_agreement legal_document) (STV 1.0 0.9091)) +(: cnet_isa_badde8f7ca (IsA written_assignment assignment) (STV 1.0 0.9091)) +(: cnet_isa_a453637ef1 (IsA written_communication communication) (STV 1.0 0.9091)) +(: cnet_isa_58df42afff (IsA written_record record) (STV 1.0 0.9091)) +(: cnet_isa_221a25ac7b (IsA written_symbol symbol) (STV 1.0 0.9091)) +(: cnet_isa_98ca574851 (IsA written_word word) (STV 1.0 0.9091)) +(: cnet_isa_28949da7a7 (IsA wrong injury) (STV 1.0 0.9091)) +(: cnet_isa_145cd2cf9b (IsA wrong injustice) (STV 1.0 0.9091)) +(: cnet_isa_5796319edb (IsA wrong_site_surgery operation) (STV 1.0 0.9091)) +(: cnet_isa_0a4a382f09 (IsA wrongdoer bad_person) (STV 1.0 0.9091)) +(: cnet_isa_ce18378ca3 (IsA wrongdoing activity) (STV 1.0 0.9091)) +(: cnet_isa_f246a7ee74 (IsA wrongful_death death) (STV 1.0 0.9091)) +(: cnet_isa_982eb2fa12 (IsA wrongness immorality) (STV 1.0 0.9091)) +(: cnet_isa_c1a3be17c7 (IsA wrought_iron iron) (STV 1.0 0.9091)) +(: cnet_isa_8b345973b4 (IsA wrymouth blennioid_fish) (STV 1.0 0.9091)) +(: cnet_isa_88c7df44c0 (IsA wryneck woodpecker) (STV 1.0 0.9091)) +(: cnet_isa_552b26e051 (IsA wu chinese) (STV 1.0 0.9091)) +(: cnet_isa_7beec72e4b (IsA wulfenite mineral) (STV 1.0 0.9091)) +(: cnet_isa_8ab352ce96 (IsA wurtzite mineral) (STV 1.0 0.9091)) +(: cnet_isa_9f80a75f67 (IsA wykehamist student) (STV 1.0 0.9091)) +(: cnet_isa_4d94ea4a62 (IsA wynnea fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_3084f73f34 (IsA wynnea_americana fungus) (STV 1.0 0.9091)) +(: cnet_isa_6e2a1e9901 (IsA wynnea_sparassoide fungus) (STV 1.0 0.9091)) +(: cnet_isa_87890dc30a (IsA wyoming state) (STV 1.0 0.9339)) +(: cnet_isa_85a98547ff (IsA wyomingite american) (STV 1.0 0.9091)) +(: cnet_isa_910f5f748b (IsA wyvern dragon) (STV 1.0 0.9091)) +(: cnet_isa_7fec94147a (IsA x letter) (STV 1.0 0.9091)) +(: cnet_isa_a48e60d75a (IsA x_axis coordinate_axis) (STV 1.0 0.9091)) +(: cnet_isa_cec9a53109 (IsA x_chromosome sex_chromosome) (STV 1.0 0.9091)) +(: cnet_isa_8dacd4ff5f (IsA x_linked_dominant_inheritance inheritance) (STV 1.0 0.9091)) +(: cnet_isa_a6823665fc (IsA x_linked_gene gene) (STV 1.0 0.9091)) +(: cnet_isa_748ed01bcb (IsA x_linked_recessive_inheritance inheritance) (STV 1.0 0.9091)) +(: cnet_isa_9722de7854 (IsA x_linked_scid severe_combined_immunodeficiency) (STV 1.0 0.9091)) +(: cnet_isa_4d61d3bc6c (IsA x_men team_of_mutant) (STV 1.0 0.9091)) +(: cnet_isa_ec666d980d (IsA x_or_circuit gate) (STV 1.0 0.9091)) +(: cnet_isa_d077885f7a (IsA x_ray electromagnetic_radiation) (STV 1.0 0.9091)) +(: cnet_isa_f2b23e1c99 (IsA x_ray ionizing_radiation) (STV 1.0 0.9091)) +(: cnet_isa_34e37f786d (IsA x_ray_diffraction diffraction) (STV 1.0 0.9091)) +(: cnet_isa_6916b8a1ec (IsA x_ray_film film) (STV 1.0 0.9091)) +(: cnet_isa_23c6325918 (IsA x_ray_machine apparatus) (STV 1.0 0.9091)) +(: cnet_isa_5452d0f3c0 (IsA x_ray_therapy radiotherapy) (STV 1.0 0.9091)) +(: cnet_isa_8fbf2143b3 (IsA x_ray_tube tube) (STV 1.0 0.9091)) +(: cnet_isa_8b59d4e994 (IsA x_raying imaging) (STV 1.0 0.9091)) +(: cnet_isa_70f56ea2f0 (IsA xanthate salt) (STV 1.0 0.9091)) +(: cnet_isa_c7053a455f (IsA xanthelasma xanthoma) (STV 1.0 0.9091)) +(: cnet_isa_4f0425b4de (IsA xanthic_acid acid) (STV 1.0 0.9091)) +(: cnet_isa_420d2f4599 (IsA xanthine organic_compound) (STV 1.0 0.9091)) +(: cnet_isa_e65810af1f (IsA xanthium asterid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_63e229b766 (IsA xanthoma skin_disease) (STV 1.0 0.9091)) +(: cnet_isa_56136df665 (IsA xanthoma_disseminatum xanthoma) (STV 1.0 0.9091)) +(: cnet_isa_1bb9a6bb8d (IsA xanthomatosis xanthoma) (STV 1.0 0.9091)) +(: cnet_isa_986597e1f8 (IsA xanthomonad eubacteria) (STV 1.0 0.9091)) +(: cnet_isa_96f7ad0719 (IsA xanthomona bacteria_genus) (STV 1.0 0.9091)) +(: cnet_isa_1ce6db64fd (IsA xanthophyceae class) (STV 1.0 0.9091)) +(: cnet_isa_0a799272e7 (IsA xanthophyll carotenoid) (STV 1.0 0.9091)) +(: cnet_isa_490dd94270 (IsA xanthopsia visual_impairment) (STV 1.0 0.9091)) +(: cnet_isa_a7947aba01 (IsA xanthorrhoeaceae liliid_monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_227b81864f (IsA xanthorroea liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9939cfee38 (IsA xanthosis skin_disease) (STV 1.0 0.9091)) +(: cnet_isa_c7bc6020d5 (IsA xanthosoma monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8499d4cae2 (IsA xantusiidae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_4289b5b5b7 (IsA xenarthra animal_order) (STV 1.0 0.9091)) +(: cnet_isa_f9f5fb3d26 (IsA xenicidae bird_family) (STV 1.0 0.9091)) +(: cnet_isa_3d3ab10b4b (IsA xenicus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_562b5d2fb1 (IsA xenolith rock) (STV 1.0 0.9091)) +(: cnet_isa_702f4d501f (IsA xenon element) (STV 1.0 0.9091)) +(: cnet_isa_4d7b291e98 (IsA xenon gas) (STV 1.0 0.9091)) +(: cnet_isa_cfa59844a2 (IsA xenon chemical_element) (STV 1.0 0.9091)) +(: cnet_isa_6a23e3e3eb (IsA xenon noble_gas) (STV 1.0 0.9091)) +(: cnet_isa_c9db36abc5 (IsA xenophobia social_phobia) (STV 1.0 0.9091)) +(: cnet_isa_dd7484e6bf (IsA xenopodidae amphibian_family) (STV 1.0 0.9091)) +(: cnet_isa_57769c3117 (IsA xenopus amphibian_genus) (STV 1.0 0.9091)) +(: cnet_isa_b1a9b678f5 (IsA xenorhyncus bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_550564bf0c (IsA xenosauridae reptile_family) (STV 1.0 0.9091)) +(: cnet_isa_293b47aa9b (IsA xenosaurus reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_9587db6f37 (IsA xenotime mineral) (STV 1.0 0.9091)) +(: cnet_isa_db794edbfd (IsA xenotransplant transplant) (STV 1.0 0.9091)) +(: cnet_isa_6452ff567d (IsA xeranthemum flower) (STV 1.0 0.9091)) +(: cnet_isa_3b0739487c (IsA xerobate reptile_genus) (STV 1.0 0.9091)) +(: cnet_isa_f7aa27171d (IsA xeroderma ichthyosis) (STV 1.0 0.9091)) +(: cnet_isa_41cc2ea0ba (IsA xeroderma_pigmentosum xeroderma) (STV 1.0 0.9091)) +(: cnet_isa_f418530235 (IsA xerographic_printer page_printer) (STV 1.0 0.9091)) +(: cnet_isa_b99fedd73d (IsA xerography photography) (STV 1.0 0.9091)) +(: cnet_isa_76f2e9ff2f (IsA xerophthalmia dryness) (STV 1.0 0.9091)) +(: cnet_isa_0e67725187 (IsA xerophyllum liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8481bf9ed2 (IsA xeroradiography radiography) (STV 1.0 0.9091)) +(: cnet_isa_0558cef97f (IsA xerostomia dryness) (STV 1.0 0.9091)) +(: cnet_isa_7f2a02d403 (IsA xerox copy) (STV 1.0 0.9091)) +(: cnet_isa_265fd45d96 (IsA xerox duplicator) (STV 1.0 0.9091)) +(: cnet_isa_c0cadaf3f8 (IsA xhosa nguni) (STV 1.0 0.9091)) +(: cnet_isa_54e02250a7 (IsA xhosa african) (STV 1.0 0.9091)) +(: cnet_isa_1f15866d0d (IsA xi letter) (STV 1.0 0.9091)) +(: cnet_isa_a70dd7fc05 (IsA xiphia fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_6a2abd4d74 (IsA xiphiidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_7415d495e6 (IsA xiphoid_process bone) (STV 1.0 0.9091)) +(: cnet_isa_1ee3092ae1 (IsA xiphosura animal_order) (STV 1.0 0.9091)) +(: cnet_isa_cb542c7184 (IsA xx sex_chromosome) (STV 1.0 0.9091)) +(: cnet_isa_c01c820b95 (IsA xxx sex_chromosome) (STV 1.0 0.9091)) +(: cnet_isa_73e8ad3f40 (IsA xxy sex_chromosome) (STV 1.0 0.9091)) +(: cnet_isa_062b6c28df (IsA xy sex_chromosome) (STV 1.0 0.9091)) +(: cnet_isa_8388592840 (IsA xylaria fungus_genus) (STV 1.0 0.9091)) +(: cnet_isa_b1734f2ee1 (IsA xylariaceae fungus_family) (STV 1.0 0.9091)) +(: cnet_isa_10aa1e7fc3 (IsA xylem vascular_tissue) (STV 1.0 0.9091)) +(: cnet_isa_7caa6d8cb1 (IsA xylene solvent) (STV 1.0 0.9091)) +(: cnet_isa_90699d23cb (IsA xylocopa arthropod_genus) (STV 1.0 0.9091)) +(: cnet_isa_d71a305499 (IsA xylomelum dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_04a42850f9 (IsA xylophone instrument) (STV 1.0 0.9572)) +(: cnet_isa_fbdd5b30bd (IsA xylophone instrument_of_music) (STV 1.0 0.9572)) +(: cnet_isa_20b0aff910 (IsA xylophone percussion_instrument) (STV 1.0 0.9636)) +(: cnet_isa_f02ea24a84 (IsA xylophonist percussionist) (STV 1.0 0.9091)) +(: cnet_isa_d04f0fc0f6 (IsA xylopia magnoliid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_720af63ee0 (IsA xylosma shrub) (STV 1.0 0.9091)) +(: cnet_isa_64d4293855 (IsA xyphophorus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_11435110c9 (IsA xyridaceae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_1c293fffa4 (IsA xyridale plant_order) (STV 1.0 0.9091)) +(: cnet_isa_b92c819e50 (IsA xyris monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_830c687893 (IsA xyy sex_chromosome) (STV 1.0 0.9091)) +(: cnet_isa_5a64ae95a5 (IsA y letter) (STV 1.0 0.9091)) +(: cnet_isa_80bba3df01 (IsA y2k year) (STV 1.0 0.9091)) +(: cnet_isa_9f34f5a66b (IsA y_axis coordinate_axis) (STV 1.0 0.9091)) +(: cnet_isa_a61cff3ac2 (IsA y_chromosome sex_chromosome) (STV 1.0 0.9091)) +(: cnet_isa_82f4146d24 (IsA y_linked_gene gene) (STV 1.0 0.9091)) +(: cnet_isa_b913bcc9ba (IsA yacca conifer) (STV 1.0 0.9091)) +(: cnet_isa_e0c06bb20f (IsA yacht vessel) (STV 1.0 0.9091)) +(: cnet_isa_8a8fa5e072 (IsA yacht_chair folding_chair) (STV 1.0 0.9091)) +(: cnet_isa_c083379b63 (IsA yacht_club club) (STV 1.0 0.9091)) +(: cnet_isa_46a467ae88 (IsA yacht_racing extremely_expensive_sport) (STV 1.0 0.9091)) +(: cnet_isa_921c4f16f6 (IsA yachtsman sailor) (STV 1.0 0.9091)) +(: cnet_isa_745f97f826 (IsA yagi directional_antenna) (STV 1.0 0.9091)) +(: cnet_isa_f70eecc4e2 (IsA yahi yanan) (STV 1.0 0.9091)) +(: cnet_isa_29d379ac4b (IsA yahi hoka) (STV 1.0 0.9091)) +(: cnet_isa_b0161aadce (IsA yak_s_milk milk) (STV 1.0 0.9091)) +(: cnet_isa_3e1c36689b (IsA yak ox) (STV 1.0 0.9091)) +(: cnet_isa_60f8fa4302 (IsA yak talk) (STV 1.0 0.9091)) +(: cnet_isa_cf382c76ae (IsA yak_butter butter) (STV 1.0 0.9091)) +(: cnet_isa_6b922c6eb5 (IsA yakut turki) (STV 1.0 0.9091)) +(: cnet_isa_bf2a8b1ad1 (IsA yakuza organized_crime) (STV 1.0 0.9091)) +(: cnet_isa_9671bef4be (IsA yakuza gangster) (STV 1.0 0.9091)) +(: cnet_isa_4a3938537a (IsA yam root_vegetable) (STV 1.0 0.9091)) +(: cnet_isa_5116295486 (IsA yam sweet_potato) (STV 1.0 0.9091)) +(: cnet_isa_6c818fc4d8 (IsA yam tuber) (STV 1.0 0.9091)) +(: cnet_isa_9f7001616e (IsA yam vine) (STV 1.0 0.9091)) +(: cnet_isa_c92496e98d (IsA yam_bean vine) (STV 1.0 0.9091)) +(: cnet_isa_66c8e68997 (IsA yana yanan) (STV 1.0 0.9091)) +(: cnet_isa_5a9382ba5c (IsA yana hoka) (STV 1.0 0.9091)) +(: cnet_isa_505d8e045b (IsA yanan hokan) (STV 1.0 0.9091)) +(: cnet_isa_1994f2a477 (IsA yang principle) (STV 1.0 0.9091)) +(: cnet_isa_427b0ae2b8 (IsA yank american) (STV 1.0 0.9091)) +(: cnet_isa_086d38521d (IsA yankee_doodle american) (STV 1.0 0.9091)) +(: cnet_isa_eebf6ce8df (IsA yanker puller) (STV 1.0 0.9091)) +(: cnet_isa_0bf2c0a298 (IsA yard area_of_land) (STV 1.0 0.9091)) +(: cnet_isa_0c9e3ab585 (IsA yard unit_of_measurement) (STV 1.0 0.9091)) +(: cnet_isa_63f3086662 (IsA yard enclosure) (STV 1.0 0.9091)) +(: cnet_isa_ff1b25c62e (IsA yard field) (STV 1.0 0.9091)) +(: cnet_isa_7f4344d1bc (IsA yard spar) (STV 1.0 0.9091)) +(: cnet_isa_1aeca6b282 (IsA yard tract) (STV 1.0 0.9091)) +(: cnet_isa_eda83ab10f (IsA yard linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_0936f44d15 (IsA yard_bird recruit) (STV 1.0 0.9091)) +(: cnet_isa_4f2034f08a (IsA yard_donkey winch) (STV 1.0 0.9091)) +(: cnet_isa_2464a99395 (IsA yard_good merchandise) (STV 1.0 0.9091)) +(: cnet_isa_8edc79b99f (IsA yard_line line) (STV 1.0 0.9091)) +(: cnet_isa_1d024bfbc0 (IsA yard_marker marker) (STV 1.0 0.9091)) +(: cnet_isa_55fc87bb8c (IsA yardage distance) (STV 1.0 0.9091)) +(: cnet_isa_ac275163eb (IsA yardarm end) (STV 1.0 0.9091)) +(: cnet_isa_f1feb45dce (IsA yarder linear_unit) (STV 1.0 0.9091)) +(: cnet_isa_463332f152 (IsA yardgrass millet) (STV 1.0 0.9091)) +(: cnet_isa_47923d664a (IsA yardie gangster) (STV 1.0 0.9091)) +(: cnet_isa_847d1ef781 (IsA yardman laborer) (STV 1.0 0.9091)) +(: cnet_isa_29ab0f6658 (IsA yardman trainman) (STV 1.0 0.9091)) +(: cnet_isa_91f2604f85 (IsA yardmaster dispatcher) (STV 1.0 0.9091)) +(: cnet_isa_c70168a30d (IsA yardmaster trainman) (STV 1.0 0.9091)) +(: cnet_isa_349c336ff8 (IsA yardstick rule) (STV 1.0 0.9091)) +(: cnet_isa_8ade009bfa (IsA yardstick standard) (STV 1.0 0.9091)) +(: cnet_isa_ecfdce2916 (IsA yarmulke skullcap) (STV 1.0 0.9091)) +(: cnet_isa_710ba06d6c (IsA yarrow achillea) (STV 1.0 0.9091)) +(: cnet_isa_4ac69ef068 (IsA yashmak head_covering) (STV 1.0 0.9091)) +(: cnet_isa_b1bc7a0758 (IsA yataghan knife) (STV 1.0 0.9091)) +(: cnet_isa_22e1c035dd (IsA yaupon_holly holly) (STV 1.0 0.9091)) +(: cnet_isa_dd6f160de3 (IsA yautia arum) (STV 1.0 0.9091)) +(: cnet_isa_8400679da8 (IsA yavapai yuman) (STV 1.0 0.9091)) +(: cnet_isa_879fb6a268 (IsA yavapai hoka) (STV 1.0 0.9091)) +(: cnet_isa_feb87e008c (IsA yaw turning) (STV 1.0 0.9091)) +(: cnet_isa_c143561c99 (IsA yawl sailing_vessel) (STV 1.0 0.9091)) +(: cnet_isa_458b48f0d0 (IsA yawl small_boat) (STV 1.0 0.9091)) +(: cnet_isa_c88f6fa920 (IsA yawn reflex) (STV 1.0 0.9091)) +(: cnet_isa_dda44d5fc6 (IsA yawner person) (STV 1.0 0.9091)) +(: cnet_isa_98d133462f (IsA yaw infectious_disease) (STV 1.0 0.9091)) +(: cnet_isa_c16dbcee8a (IsA yay tai) (STV 1.0 0.9091)) +(: cnet_isa_abb421e317 (IsA yb computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_12ac708762 (IsA yea affirmative) (STV 1.0 0.9091)) +(: cnet_isa_dc0b4db6fc (IsA year 365_day) (STV 1.0 0.9091)) +(: cnet_isa_651319ae01 (IsA year time_period) (STV 1.0 0.9091)) +(: cnet_isa_95470e6914 (IsA year_dot long_time) (STV 1.0 0.9091)) +(: cnet_isa_940373421d (IsA year_end end) (STV 1.0 0.9091)) +(: cnet_isa_44140b9e97 (IsA year_of_grace year) (STV 1.0 0.9091)) +(: cnet_isa_6b4d4aeadb (IsA yearbook book) (STV 1.0 0.9091)) +(: cnet_isa_3ff04c0363 (IsA yearling placental) (STV 1.0 0.9091)) +(: cnet_isa_d44643a3f1 (IsA yearling racehorse) (STV 1.0 0.9091)) +(: cnet_isa_85ce75d764 (IsA yeast ingredient_in_bread) (STV 1.0 0.9091)) +(: cnet_isa_1bbb41fe9c (IsA yeast single_celled_plant) (STV 1.0 0.9091)) +(: cnet_isa_df1751440b (IsA yeast fungus) (STV 1.0 0.9091)) +(: cnet_isa_8730a86f4e (IsA yeast leaven) (STV 1.0 0.9091)) +(: cnet_isa_6a1a46e26c (IsA yeast_cake yeast) (STV 1.0 0.9091)) +(: cnet_isa_455b4bd8f5 (IsA yelling cry) (STV 1.0 0.9091)) +(: cnet_isa_154548d65f (IsA yellow color) (STV 1.0 0.9608)) +(: cnet_isa_6402484592 (IsA yellow colour) (STV 1.0 0.9524)) +(: cnet_isa_88a8e6a9d6 (IsA yellow primary_color) (STV 1.0 0.9339)) +(: cnet_isa_f6ee2f1b19 (IsA yellow chromatic_color) (STV 1.0 0.9091)) +(: cnet_isa_8cffab4fdf (IsA yellow_adder_s_tongue dogtooth_violet) (STV 1.0 0.9091)) +(: cnet_isa_2d8ceb16ce (IsA yellow_aven aven) (STV 1.0 0.9091)) +(: cnet_isa_676f404094 (IsA yellow_bass serranid_fish) (STV 1.0 0.9091)) +(: cnet_isa_c22c0a644a (IsA yellow_bedstraw bedstraw) (STV 1.0 0.9091)) +(: cnet_isa_5e800d4121 (IsA yellow_bellied_sapsucker sapsucker) (STV 1.0 0.9091)) +(: cnet_isa_f8a70b99ff (IsA yellow_bell herb) (STV 1.0 0.9091)) +(: cnet_isa_af98defe23 (IsA yellow_bile liquid_body_substance) (STV 1.0 0.9091)) +(: cnet_isa_705bea2f8c (IsA yellow_birch birch) (STV 1.0 0.9091)) +(: cnet_isa_3b685c01b9 (IsA yellow_blue_dichromacy dichromacy) (STV 1.0 0.9091)) +(: cnet_isa_26e443286c (IsA yellow_breasted_bunting bunting) (STV 1.0 0.9091)) +(: cnet_isa_346193731c (IsA yellow_breasted_chat new_world_chat) (STV 1.0 0.9091)) +(: cnet_isa_9eb637bbc9 (IsA yellow_bristlegrass foxtail) (STV 1.0 0.9091)) +(: cnet_isa_773e5c5bc5 (IsA yellow_chamomile composite) (STV 1.0 0.9091)) +(: cnet_isa_b6ba87448a (IsA yellow_clintonia clintonia) (STV 1.0 0.9091)) +(: cnet_isa_ed8009cd76 (IsA yellow_colicroot colicroot) (STV 1.0 0.9091)) +(: cnet_isa_b0b52fc378 (IsA yellow_crowned_night_heron night_heron) (STV 1.0 0.9091)) +(: cnet_isa_c27dc147ab (IsA yellow_cypress cedar) (STV 1.0 0.9091)) +(: cnet_isa_ae1b62496e (IsA yellow_dog_contract labor_contract) (STV 1.0 0.9091)) +(: cnet_isa_99b4f2cad6 (IsA yellow_dwarf plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_fbfb8c53d5 (IsA yellow_dwarf_of_potato yellow_dwarf) (STV 1.0 0.9091)) +(: cnet_isa_9beb68537b (IsA yellow_eyed_grass marsh_plant) (STV 1.0 0.9091)) +(: cnet_isa_8c5c15e37d (IsA yellow_fever_mosquito mosquito) (STV 1.0 0.9091)) +(: cnet_isa_3055722d11 (IsA yellow_foxglove foxglove) (STV 1.0 0.9091)) +(: cnet_isa_e90f86937b (IsA yellow_giant_hyssop giant_hyssop) (STV 1.0 0.9091)) +(: cnet_isa_97417c38ba (IsA yellow_globe_lily globe_lily) (STV 1.0 0.9091)) +(: cnet_isa_cfd43a8ced (IsA yellow_goatfish goatfish) (STV 1.0 0.9091)) +(: cnet_isa_acb50bbbd0 (IsA yellow_green green) (STV 1.0 0.9091)) +(: cnet_isa_016e0d671e (IsA yellow_green_algae alga) (STV 1.0 0.9091)) +(: cnet_isa_8567b616ec (IsA yellow_henbane ground_cherry) (STV 1.0 0.9091)) +(: cnet_isa_af4551981e (IsA yellow_honeysuckle honeysuckle) (STV 1.0 0.9091)) +(: cnet_isa_ef47739d56 (IsA yellow_iris iris) (STV 1.0 0.9091)) +(: cnet_isa_e579119210 (IsA yellow_jack jack) (STV 1.0 0.9091)) +(: cnet_isa_085afe7628 (IsA yellow_jack flag) (STV 1.0 0.9091)) +(: cnet_isa_f5e5dba273 (IsA yellow_jack infectious_disease) (STV 1.0 0.9091)) +(: cnet_isa_a9f57d606e (IsA yellow_jacket hornet) (STV 1.0 0.9091)) +(: cnet_isa_c5f0b0cce0 (IsA yellow_jasmine vine) (STV 1.0 0.9091)) +(: cnet_isa_afe7a16cce (IsA yellow_journalism journalism) (STV 1.0 0.9091)) +(: cnet_isa_2316cd324f (IsA yellow_lady_s_slipper lady_s_slipper) (STV 1.0 0.9091)) +(: cnet_isa_dc104e0e8e (IsA yellow_leaf_sickle_pine conifer) (STV 1.0 0.9091)) +(: cnet_isa_863804de4e (IsA yellow_light traffic_light) (STV 1.0 0.9091)) +(: cnet_isa_47ab67ad66 (IsA yellow_loosestrife loosestrife) (STV 1.0 0.9091)) +(: cnet_isa_8b1e6c4dd5 (IsA yellow_lupine lupine) (STV 1.0 0.9091)) +(: cnet_isa_976f9e5290 (IsA yellow_mariposa_tulip mariposa) (STV 1.0 0.9091)) +(: cnet_isa_bf339a7713 (IsA yellow_marrow marrow) (STV 1.0 0.9091)) +(: cnet_isa_22be8a4f70 (IsA yellow_mountain_saxifrage saxifrage) (STV 1.0 0.9091)) +(: cnet_isa_c38330b0b5 (IsA yellow_ocher ocher) (STV 1.0 0.9091)) +(: cnet_isa_de5d1d117d (IsA yellow_oleander shrub) (STV 1.0 0.9091)) +(: cnet_isa_28d919f8e8 (IsA yellow_page phonebook) (STV 1.0 0.9091)) +(: cnet_isa_10a45d8bba (IsA yellow_perch perch) (STV 1.0 0.9091)) +(: cnet_isa_ef5b445402 (IsA yellow_peril menace) (STV 1.0 0.9091)) +(: cnet_isa_dbff4205a7 (IsA yellow_pimpernel loosestrife) (STV 1.0 0.9091)) +(: cnet_isa_4db276ae57 (IsA yellow_pine pine) (STV 1.0 0.9091)) +(: cnet_isa_215b81e4b9 (IsA yellow_ribbon sign_of_rememberance) (STV 1.0 0.9091)) +(: cnet_isa_a03a0d5a04 (IsA yellow_rocket weed) (STV 1.0 0.9091)) +(: cnet_isa_f30114efde (IsA yellow_rubber_duck common_bath_toy) (STV 1.0 0.9091)) +(: cnet_isa_8c0ce52523 (IsA yellow_salsify wildflower) (STV 1.0 0.9091)) +(: cnet_isa_d936335830 (IsA yellow_sand_verbena sand_verbena) (STV 1.0 0.9091)) +(: cnet_isa_211896a8a3 (IsA yellow_shafted_flicker flicker) (STV 1.0 0.9091)) +(: cnet_isa_c146e0a552 (IsA yellow_spiny_daisy goldenbush) (STV 1.0 0.9091)) +(: cnet_isa_7a036cbeb8 (IsA yellow_spot plant_disease) (STV 1.0 0.9091)) +(: cnet_isa_e7ba88af30 (IsA yellow_spot_fungus fungus) (STV 1.0 0.9091)) +(: cnet_isa_395da99db4 (IsA yellow_squash summer_squash) (STV 1.0 0.9091)) +(: cnet_isa_de3d66d6dd (IsA yellow_sweet_clover melilotus) (STV 1.0 0.9091)) +(: cnet_isa_0967d3b577 (IsA yellow_throated_marten marten) (STV 1.0 0.9091)) +(: cnet_isa_c3563687c9 (IsA yellow_twining_snapdragon snapdragon) (STV 1.0 0.9091)) +(: cnet_isa_204388e912 (IsA yellow_warbler new_world_warbler) (STV 1.0 0.9091)) +(: cnet_isa_c39d87f8c0 (IsA yellow_water_lily water_lily) (STV 1.0 0.9091)) +(: cnet_isa_927931d7a4 (IsA yellowbelly_marmot marmot) (STV 1.0 0.9091)) +(: cnet_isa_eb39c0722f (IsA yellowcake compound) (STV 1.0 0.9091)) +(: cnet_isa_a5de592d05 (IsA yellowfin tuna) (STV 1.0 0.9091)) +(: cnet_isa_4a25074392 (IsA yellowfin_croaker croaker) (STV 1.0 0.9091)) +(: cnet_isa_25fde163f5 (IsA yellowfin_mojarra mojarra) (STV 1.0 0.9091)) +(: cnet_isa_c4aa86472a (IsA yellowhammer bunting) (STV 1.0 0.9091)) +(: cnet_isa_3331d06e5d (IsA yellowish_brown brown) (STV 1.0 0.9091)) +(: cnet_isa_4ee198fe1d (IsA yellowish_pink pink) (STV 1.0 0.9091)) +(: cnet_isa_4dfc863b09 (IsA yellowleg sandpiper) (STV 1.0 0.9091)) +(: cnet_isa_cdac333b4b (IsA yellowtail jack) (STV 1.0 0.9091)) +(: cnet_isa_5c9ef7eb4f (IsA yellowtail snapper) (STV 1.0 0.9091)) +(: cnet_isa_f3d80c51a6 (IsA yellowtail_flounder righteye_flounder) (STV 1.0 0.9091)) +(: cnet_isa_70436ad422 (IsA yellowtail_flounder flounder) (STV 1.0 0.9091)) +(: cnet_isa_e02355dec3 (IsA yellowthroat new_world_warbler) (STV 1.0 0.9091)) +(: cnet_isa_ef892cd55c (IsA yellowwood tree) (STV 1.0 0.9091)) +(: cnet_isa_7a7ee6a25f (IsA yellowwood wood) (STV 1.0 0.9091)) +(: cnet_isa_600ba2a012 (IsA yelp cry) (STV 1.0 0.9091)) +(: cnet_isa_c1d0e5b428 (IsA yemeni arabian) (STV 1.0 0.9091)) +(: cnet_isa_3d013a6598 (IsA yemeni_fil yemeni_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_4090ddb72b (IsA yemeni_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_ee0b20b35c (IsA yemeni_rial yemeni_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_56b4b91b66 (IsA yen japanese_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_c92f6e4dc3 (IsA yeniseian russian) (STV 1.0 0.9091)) +(: cnet_isa_f9d0760acd (IsA yenta gossip) (STV 1.0 0.9091)) +(: cnet_isa_193d08597e (IsA yenta shrew) (STV 1.0 0.9091)) +(: cnet_isa_d431025fae (IsA yeoman bodyguard) (STV 1.0 0.9091)) +(: cnet_isa_2338cc80ea (IsA yeoman freeholder) (STV 1.0 0.9091)) +(: cnet_isa_b9d6429828 (IsA yeomanry class) (STV 1.0 0.9091)) +(: cnet_isa_e29eb6270e (IsA yeomanry home_guard) (STV 1.0 0.9091)) +(: cnet_isa_7c92ea85f7 (IsA yerba_buena herb) (STV 1.0 0.9091)) +(: cnet_isa_131ec4946c (IsA yerba_mansa herb) (STV 1.0 0.9091)) +(: cnet_isa_86f8dd855e (IsA yerba_santa shrub) (STV 1.0 0.9091)) +(: cnet_isa_5ed503a747 (IsA yersinia_pestis bacillus) (STV 1.0 0.9091)) +(: cnet_isa_54566d7409 (IsA yes affirmative) (STV 1.0 0.9091)) +(: cnet_isa_da19d793a2 (IsA yes_no_question question) (STV 1.0 0.9091)) +(: cnet_isa_ed94d77601 (IsA yeshiva academy) (STV 1.0 0.9091)) +(: cnet_isa_da88087a72 (IsA yesterday day) (STV 1.0 0.9091)) +(: cnet_isa_7ee89027b6 (IsA yesterday past) (STV 1.0 0.9091)) +(: cnet_isa_8a769c9306 (IsA yew conifer) (STV 1.0 0.9091)) +(: cnet_isa_74dc2c04ae (IsA yew wood) (STV 1.0 0.9091)) +(: cnet_isa_51e06f208f (IsA yiddish german) (STV 1.0 0.9091)) +(: cnet_isa_bfc3327357 (IsA yield product) (STV 1.0 0.9091)) +(: cnet_isa_71b0457b41 (IsA yin principle) (STV 1.0 0.9091)) +(: cnet_isa_a0ebf8ed40 (IsA yip tension) (STV 1.0 0.9091)) +(: cnet_isa_eff48590db (IsA ylem substance) (STV 1.0 0.9091)) +(: cnet_isa_81b171dedf (IsA yo_yo toy) (STV 1.0 0.9898)) +(: cnet_isa_320b013ffa (IsA yo_yo plaything) (STV 1.0 0.9091)) +(: cnet_isa_fc57fcf527 (IsA yobibit computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_3898fc7191 (IsA yodel cry) (STV 1.0 0.9091)) +(: cnet_isa_baf72a5539 (IsA yodeling singing) (STV 1.0 0.9091)) +(: cnet_isa_a1b617f2bb (IsA yodeller singer) (STV 1.0 0.9091)) +(: cnet_isa_5f7a59c71d (IsA yodh letter) (STV 1.0 0.9091)) +(: cnet_isa_347534442c (IsA yoga body_training) (STV 1.0 0.9091)) +(: cnet_isa_a05120889b (IsA yoga exercise) (STV 1.0 0.9091)) +(: cnet_isa_554e0b872d (IsA yoga discipline) (STV 1.0 0.9091)) +(: cnet_isa_ad829e4f9e (IsA yogacara mahayana) (STV 1.0 0.9091)) +(: cnet_isa_48152d3b86 (IsA yogi philosopher) (STV 1.0 0.9091)) +(: cnet_isa_7afee2f3ea (IsA yogurt dairy_product) (STV 1.0 0.9091)) +(: cnet_isa_1c3f560556 (IsA yogurt food) (STV 1.0 0.9091)) +(: cnet_isa_3895dd2633 (IsA yoke connection) (STV 1.0 0.9091)) +(: cnet_isa_6017faf591 (IsA yoke fabric) (STV 1.0 0.9091)) +(: cnet_isa_aec81b1212 (IsA yoke stable_gear) (STV 1.0 0.9091)) +(: cnet_isa_be0d48f73a (IsA yoke support) (STV 1.0 0.9091)) +(: cnet_isa_f1d556a5c2 (IsA yoke pair) (STV 1.0 0.9091)) +(: cnet_isa_99cb2fd901 (IsA yoke oppression) (STV 1.0 0.9091)) +(: cnet_isa_2d98e7cf91 (IsA yokel rustic) (STV 1.0 0.9091)) +(: cnet_isa_6f1b3af714 (IsA yokut penutian) (STV 1.0 0.9091)) +(: cnet_isa_1028a1c859 (IsA yolk food) (STV 1.0 0.9091)) +(: cnet_isa_1c9d850fdd (IsA yolk_sac sac) (STV 1.0 0.9091)) +(: cnet_isa_6035fdbc7e (IsA yom_kippur high_holy_day) (STV 1.0 0.9091)) +(: cnet_isa_26fcb0722a (IsA yom_kippur major_fast_day) (STV 1.0 0.9091)) +(: cnet_isa_352832c806 (IsA yore past) (STV 1.0 0.9091)) +(: cnet_isa_1a4452e30b (IsA york example_of_city) (STV 1.0 0.9091)) +(: cnet_isa_7da8d097b4 (IsA york dynasty) (STV 1.0 0.9091)) +(: cnet_isa_e2e6ec579c (IsA york royalty) (STV 1.0 0.9091)) +(: cnet_isa_e9ac81c6a1 (IsA yorkshire county) (STV 1.0 0.9091)) +(: cnet_isa_da0833ec24 (IsA yorkshire_pudding quick_bread) (STV 1.0 0.9091)) +(: cnet_isa_17f207541c (IsA yorkshire_terrier terrier) (STV 1.0 0.9091)) +(: cnet_isa_d91b6a808e (IsA yoruba kwa) (STV 1.0 0.9091)) +(: cnet_isa_82aa119849 (IsA yoruba nigerian) (STV 1.0 0.9091)) +(: cnet_isa_b158db6e61 (IsA yosemite_toad true_toad) (STV 1.0 0.9091)) +(: cnet_isa_2afb79078f (IsA yottabit computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_79edbe49b9 (IsA yottabyte computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_0d8dd9ba6d (IsA young_s_modulus coefficient_of_elasticity) (STV 1.0 0.9091)) +(: cnet_isa_e677375b8c (IsA young animal) (STV 1.0 0.9091)) +(: cnet_isa_bc462341ad (IsA young age_group) (STV 1.0 0.9091)) +(: cnet_isa_5a88103a11 (IsA young_bird young) (STV 1.0 0.9091)) +(: cnet_isa_2edd4fe3cc (IsA young_buck adolescent) (STV 1.0 0.9091)) +(: cnet_isa_9fd7f0d938 (IsA young_buck man) (STV 1.0 0.9091)) +(: cnet_isa_186ce30781 (IsA young_fish fish) (STV 1.0 0.9091)) +(: cnet_isa_41afb14b53 (IsA young_fish young) (STV 1.0 0.9091)) +(: cnet_isa_cc1b38e3e4 (IsA young_mammal young) (STV 1.0 0.9091)) +(: cnet_isa_c456cf4899 (IsA young_person juvenile) (STV 1.0 0.9091)) +(: cnet_isa_1a14239d26 (IsA young_turk insurgent) (STV 1.0 0.9091)) +(: cnet_isa_5b63fe1b1b (IsA young_turk radical) (STV 1.0 0.9091)) +(: cnet_isa_430bf61b4c (IsA youngness age) (STV 1.0 0.9091)) +(: cnet_isa_c38372bf9c (IsA youth youngness) (STV 1.0 0.9091)) +(: cnet_isa_ce078fd441 (IsA youth maturity) (STV 1.0 0.9091)) +(: cnet_isa_a74ff60e58 (IsA youth time_of_life) (STV 1.0 0.9091)) +(: cnet_isa_9bbdcbd54a (IsA youth time_period) (STV 1.0 0.9091)) +(: cnet_isa_eebe77efbf (IsA youth_culture coeval) (STV 1.0 0.9091)) +(: cnet_isa_14934528cf (IsA youth_culture subculture) (STV 1.0 0.9091)) +(: cnet_isa_770630aeeb (IsA youth_gang gang) (STV 1.0 0.9091)) +(: cnet_isa_438b9385ec (IsA youth_movement campaign) (STV 1.0 0.9091)) +(: cnet_isa_28c1c5f211 (IsA youth_subculture youth_culture) (STV 1.0 0.9091)) +(: cnet_isa_cf930fd941 (IsA yoyo toy) (STV 1.0 0.9740)) +(: cnet_isa_c59a610f07 (IsA yquem white_wine) (STV 1.0 0.9091)) +(: cnet_isa_5fd6fe2932 (IsA ytterbium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_e82f321aee (IsA yttrium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_35fb084b24 (IsA yuan dynasty) (STV 1.0 0.9091)) +(: cnet_isa_a3856897a0 (IsA yuan chinese_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_9706994f83 (IsA yucatec maya) (STV 1.0 0.9091)) +(: cnet_isa_274076a419 (IsA yucateco mayan) (STV 1.0 0.9091)) +(: cnet_isa_331db079dd (IsA yucca shrub) (STV 1.0 0.9091)) +(: cnet_isa_2e76fd9add (IsA yue chinese) (STV 1.0 0.9091)) +(: cnet_isa_4db443c373 (IsA yugoslavian_dinar yugoslavian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_99da862d61 (IsA yugoslavian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_004aec5cf0 (IsA yukon_white_birch birch) (STV 1.0 0.9091)) +(: cnet_isa_6d431e4b06 (IsA yule_log backlog) (STV 1.0 0.9091)) +(: cnet_isa_d90db0bdca (IsA yuma yuman) (STV 1.0 0.9091)) +(: cnet_isa_aac1e914a8 (IsA yuma hoka) (STV 1.0 0.9091)) +(: cnet_isa_925a264f41 (IsA yuman hokan) (STV 1.0 0.9091)) +(: cnet_isa_782f0281a6 (IsA yuppie professional) (STV 1.0 0.9091)) +(: cnet_isa_fc1ba9a208 (IsA yurt dwelling) (STV 1.0 0.9091)) +(: cnet_isa_1dcf20c772 (IsA z letter) (STV 1.0 0.9091)) +(: cnet_isa_83054da485 (IsA z_axis coordinate_axis) (STV 1.0 0.9091)) +(: cnet_isa_a1b2a75c20 (IsA zaar west_chadic) (STV 1.0 0.9091)) +(: cnet_isa_1b056ccd0a (IsA zabaglione dessert) (STV 1.0 0.9091)) +(: cnet_isa_3a0716733b (IsA zaglossus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_3a3ebdcf50 (IsA zaire zairese_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_07f549e132 (IsA zairean african) (STV 1.0 0.9091)) +(: cnet_isa_70c40ac803 (IsA zairese_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_d488432676 (IsA zakat charity) (STV 1.0 0.9091)) +(: cnet_isa_fdc6ef4220 (IsA zakat pillar_of_islam) (STV 1.0 0.9091)) +(: cnet_isa_cde19df71b (IsA zalophus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_37f1f03416 (IsA zambian african) (STV 1.0 0.9091)) +(: cnet_isa_78703163b8 (IsA zambian_kwacha zambian_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_ea411b4d70 (IsA zambian_monetary_unit monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_c21a228b3f (IsA zamia cycad) (STV 1.0 0.9091)) +(: cnet_isa_c7909d2f86 (IsA zamiaceae gymnosperm_family) (STV 1.0 0.9091)) +(: cnet_isa_3ba1f41d5f (IsA zannichellia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_d1d95e31ce (IsA zannichelliaceae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_06cba6271f (IsA zantedeschia monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_a3c7ceb486 (IsA zanthoxylum rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_8a57798e2f (IsA zany clown) (STV 1.0 0.9091)) +(: cnet_isa_c09b21269c (IsA zanzibar_copal copal) (STV 1.0 0.9091)) +(: cnet_isa_0d3b652d6e (IsA zap event) (STV 1.0 0.9091)) +(: cnet_isa_9026add399 (IsA zapodidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_a706cb899e (IsA zapotec uto_aztecan) (STV 1.0 0.9091)) +(: cnet_isa_bed5feb054 (IsA zapotecan native_american) (STV 1.0 0.9091)) +(: cnet_isa_e616250766 (IsA zapper electrical_device) (STV 1.0 0.9091)) +(: cnet_isa_02ef6970ce (IsA zapus mammal_genus) (STV 1.0 0.9091)) +(: cnet_isa_9693b0c7e7 (IsA zarf holder) (STV 1.0 0.9091)) +(: cnet_isa_c4850079b4 (IsA zayin letter) (STV 1.0 0.9091)) +(: cnet_isa_5bf6ecb662 (IsA zb computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_dd625da15f (IsA zea monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_04dc3961a1 (IsA zeal ardor) (STV 1.0 0.9091)) +(: cnet_isa_d12b1eba36 (IsA zealander dane) (STV 1.0 0.9091)) +(: cnet_isa_8ba6a96c38 (IsA zealot israelite) (STV 1.0 0.9091)) +(: cnet_isa_f0e983a085 (IsA zeaxanthin carotenoid) (STV 1.0 0.9091)) +(: cnet_isa_666f4a9861 (IsA zebibit computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_4ff6c604ed (IsA zebra equine) (STV 1.0 0.9091)) +(: cnet_isa_5d251111f3 (IsA zebra_finch grassfinch) (STV 1.0 0.9091)) +(: cnet_isa_c0c0e77b4b (IsA zebra_mussel freshwater_mussel) (STV 1.0 0.9091)) +(: cnet_isa_59cc25637b (IsA zebra_orchid caladenia) (STV 1.0 0.9091)) +(: cnet_isa_d6c7202932 (IsA zebra_tailed_lizard iguanid) (STV 1.0 0.9091)) +(: cnet_isa_ae663dce80 (IsA zebrawood tree) (STV 1.0 0.9091)) +(: cnet_isa_f4a729e6b3 (IsA zebrawood wood) (STV 1.0 0.9091)) +(: cnet_isa_8f264f986f (IsA zebu brahman) (STV 1.0 0.9091)) +(: cnet_isa_c50e1945be (IsA zeidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_8cba176c50 (IsA zeitgeist spirit) (STV 1.0 0.9091)) +(: cnet_isa_2087c1917a (IsA zen buddhism) (STV 1.0 0.9091)) +(: cnet_isa_cfd3f5d88a (IsA zen_buddhist disciple) (STV 1.0 0.9091)) +(: cnet_isa_1cbf2e25af (IsA zenaidura bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_a6509b06ee (IsA zenith celestial_point) (STV 1.0 0.9091)) +(: cnet_isa_5cd2dbb2ec (IsA zeolite mineral) (STV 1.0 0.9091)) +(: cnet_isa_f6ece391da (IsA zeolite water_softener) (STV 1.0 0.9091)) +(: cnet_isa_a5210f23ba (IsA zeomorphi animal_order) (STV 1.0 0.9091)) +(: cnet_isa_e49379fa4e (IsA zero number) (STV 1.0 0.9572)) +(: cnet_isa_dd190887fb (IsA zero sight_setting) (STV 1.0 0.9091)) +(: cnet_isa_fe52469f2c (IsA zero numerical_quantity) (STV 1.0 0.9091)) +(: cnet_isa_3adc92131d (IsA zero digit) (STV 1.0 0.9091)) +(: cnet_isa_f2b006980b (IsA zero_coupon_bond bond) (STV 1.0 0.9091)) +(: cnet_isa_31fc065c70 (IsA zero_coupon_bond zero_coupon_security) (STV 1.0 0.9091)) +(: cnet_isa_cc270259d1 (IsA zero_coupon_security security) (STV 1.0 0.9091)) +(: cnet_isa_e730a1e3e2 (IsA zero_hour hour) (STV 1.0 0.9091)) +(: cnet_isa_23a2bd2c38 (IsA zero_sum_game game) (STV 1.0 0.9091)) +(: cnet_isa_01897ab990 (IsA zero_tolerance intolerance) (STV 1.0 0.9091)) +(: cnet_isa_ddaa2c5d1f (IsA zero_tolerance_policy policy) (STV 1.0 0.9091)) +(: cnet_isa_7858d5416b (IsA zeroth_law_of_thermodynamic law_of_thermodynamic) (STV 1.0 0.9091)) +(: cnet_isa_dee74782d4 (IsA zeta letter) (STV 1.0 0.9091)) +(: cnet_isa_aedf6e2498 (IsA zettabit computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_d9830e005f (IsA zettabyte computer_memory_unit) (STV 1.0 0.9091)) +(: cnet_isa_a4b367caab (IsA zeugma trope) (STV 1.0 0.9091)) +(: cnet_isa_6bd228e249 (IsA zeus fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_d5988bd027 (IsA zhou dynasty) (STV 1.0 0.9091)) +(: cnet_isa_b6109ef5b8 (IsA zhuang tai) (STV 1.0 0.9091)) +(: cnet_isa_bb09b1771b (IsA ziegfeld_folly folly) (STV 1.0 0.9091)) +(: cnet_isa_9287e3f72b (IsA zigadenus liliid_monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_1da694b695 (IsA ziggurat temple) (STV 1.0 0.9091)) +(: cnet_isa_661b47ec4c (IsA zigzag angular_shape) (STV 1.0 0.9091)) +(: cnet_isa_a472c872b7 (IsA zigzag_goldenrod goldenrod) (STV 1.0 0.9091)) +(: cnet_isa_43005c9d29 (IsA zill cymbal) (STV 1.0 0.9091)) +(: cnet_isa_480706f4f0 (IsA zimbabwe country) (STV 1.0 0.9091)) +(: cnet_isa_0e04d7991f (IsA zimbabwean african) (STV 1.0 0.9091)) +(: cnet_isa_d4c6b3c5de (IsA zimbabwean_dollar dollar) (STV 1.0 0.9091)) +(: cnet_isa_108c3fa38a (IsA zinc metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_dc92d30fd9 (IsA zinc_blende mineral) (STV 1.0 0.9091)) +(: cnet_isa_8a5c66e19e (IsA zinc_cadmium_sulfide cadmium_sulfide) (STV 1.0 0.9091)) +(: cnet_isa_73084d1dfe (IsA zinc_deficiency deficiency_disease) (STV 1.0 0.9091)) +(: cnet_isa_01f861d2c9 (IsA zinc_ointment ointment) (STV 1.0 0.9091)) +(: cnet_isa_fb26282728 (IsA zinc_oxide oxide) (STV 1.0 0.9091)) +(: cnet_isa_f1893e1e0c (IsA zinc_sulfate sulfate) (STV 1.0 0.9091)) +(: cnet_isa_794ba8c768 (IsA zinc_sulphide sulfide) (STV 1.0 0.9091)) +(: cnet_isa_e571288f4d (IsA zinc_white pigment) (STV 1.0 0.9091)) +(: cnet_isa_a62e468516 (IsA zinfandel red_wine) (STV 1.0 0.9091)) +(: cnet_isa_edb79b5a84 (IsA zinfandel vinifera) (STV 1.0 0.9091)) +(: cnet_isa_ffdf5a083e (IsA zing sound) (STV 1.0 0.9091)) +(: cnet_isa_7d79827a09 (IsA zinger remark) (STV 1.0 0.9091)) +(: cnet_isa_fa9da9e459 (IsA zingiber monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_5ac0cefafb (IsA zingiberaceae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_0c34c1aaa2 (IsA zinjanthropus australopithecine) (STV 1.0 0.9091)) +(: cnet_isa_43c1993bb8 (IsA zinkenite mineral) (STV 1.0 0.9091)) +(: cnet_isa_9bca6f2c97 (IsA zinnia flower) (STV 1.0 0.9091)) +(: cnet_isa_b906b77eb9 (IsA zinnwaldite mica) (STV 1.0 0.9091)) +(: cnet_isa_2d6061b80b (IsA zionism policy) (STV 1.0 0.9091)) +(: cnet_isa_6172c0ccc2 (IsA zionism movement) (STV 1.0 0.9091)) +(: cnet_isa_8e8ed4623a (IsA zionist israelite) (STV 1.0 0.9091)) +(: cnet_isa_a8828f174a (IsA zip_code postal_code) (STV 1.0 0.9091)) +(: cnet_isa_a8876d3437 (IsA zip_code code) (STV 1.0 0.9091)) +(: cnet_isa_5b147744de (IsA zip_gun pistol) (STV 1.0 0.9091)) +(: cnet_isa_6d34fa1573 (IsA ziphiidae mammal_family) (STV 1.0 0.9091)) +(: cnet_isa_d041c5f746 (IsA zircon mineral) (STV 1.0 0.9091)) +(: cnet_isa_478174c67c (IsA zirconium metallic_element) (STV 1.0 0.9091)) +(: cnet_isa_d79482e2fe (IsA zirconium_oxide oxide) (STV 1.0 0.9091)) +(: cnet_isa_62a21b8e53 (IsA zit pimple) (STV 1.0 0.9091)) +(: cnet_isa_8d1f78f47d (IsA zither instrument) (STV 1.0 0.9091)) +(: cnet_isa_29b1888771 (IsA zither musical_instrument) (STV 1.0 0.9091)) +(: cnet_isa_56f99b959d (IsA zither stringed_instrument) (STV 1.0 0.9091)) +(: cnet_isa_bbb0fc367c (IsA ziti pasta) (STV 1.0 0.9091)) +(: cnet_isa_54a87dc6e2 (IsA zizania monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_60b64a74e8 (IsA ziziphus dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_9d85cf0dcb (IsA zizz nap) (STV 1.0 0.9091)) +(: cnet_isa_0518a9ac55 (IsA zizz sound) (STV 1.0 0.9091)) +(: cnet_isa_413784dce5 (IsA zloty polish_monetary_unit) (STV 1.0 0.9091)) +(: cnet_isa_651e34f26a (IsA zoanthropy delusion) (STV 1.0 0.9091)) +(: cnet_isa_906c036311 (IsA zoarce fish_genus) (STV 1.0 0.9091)) +(: cnet_isa_a29f0fc5a0 (IsA zoarcidae fish_family) (STV 1.0 0.9091)) +(: cnet_isa_16b04be2f8 (IsA zodiac diagram) (STV 1.0 0.9091)) +(: cnet_isa_93e9414b2f (IsA zodiac region) (STV 1.0 0.9091)) +(: cnet_isa_783883e7a0 (IsA zodiacal_light reflection) (STV 1.0 0.9091)) +(: cnet_isa_de40031d39 (IsA zollinger_ellison_syndrome syndrome) (STV 1.0 0.9091)) +(: cnet_isa_52c289a945 (IsA zombi dead_person) (STV 1.0 0.9091)) +(: cnet_isa_4c2ad0724f (IsA zombi deity) (STV 1.0 0.9091)) +(: cnet_isa_8fee5fb73b (IsA zombi spirit) (STV 1.0 0.9091)) +(: cnet_isa_5808210183 (IsA zombie monster) (STV 1.0 0.9524)) +(: cnet_isa_0c8ae8692a (IsA zombie undead) (STV 1.0 0.9454)) +(: cnet_isa_9a95fedbd9 (IsA zombie highball) (STV 1.0 0.9091)) +(: cnet_isa_d07481bdab (IsA zona_pellucida zone) (STV 1.0 0.9091)) +(: cnet_isa_2630d9e0fb (IsA zone structure) (STV 1.0 0.9091)) +(: cnet_isa_c35ef8ad1c (IsA zone geographical_area) (STV 1.0 0.9091)) +(: cnet_isa_9ee48ec1eb (IsA zone region) (STV 1.0 0.9091)) +(: cnet_isa_25ed22a41c (IsA zone topographic_point) (STV 1.0 0.9091)) +(: cnet_isa_d5ecf83d8d (IsA zone_fire artillery_fire) (STV 1.0 0.9091)) +(: cnet_isa_bb08b2c131 (IsA zone_of_interior region) (STV 1.0 0.9091)) +(: cnet_isa_f99b6b25dc (IsA zoning division) (STV 1.0 0.9091)) +(: cnet_isa_b2a636bc74 (IsA zoning_board board) (STV 1.0 0.9091)) +(: cnet_isa_ee364c9d0e (IsA zoning_commission committee) (STV 1.0 0.9091)) +(: cnet_isa_230fee5c63 (IsA zonotrichia bird_genus) (STV 1.0 0.9091)) +(: cnet_isa_74cccae8c9 (IsA zonule zone) (STV 1.0 0.9091)) +(: cnet_isa_7995ff3792 (IsA zoo_keeper custodian) (STV 1.0 0.9091)) +(: cnet_isa_294e7b02f1 (IsA zooid organism) (STV 1.0 0.9091)) +(: cnet_isa_bb2d21032e (IsA zoolatry worship) (STV 1.0 0.9091)) +(: cnet_isa_358db9de6a (IsA zoologist biologist) (STV 1.0 0.9091)) +(: cnet_isa_17172808e7 (IsA zoology biology) (STV 1.0 0.9091)) +(: cnet_isa_17788a826f (IsA zoomastigina class) (STV 1.0 0.9091)) +(: cnet_isa_68dcaf008d (IsA zoomastigote flagellate) (STV 1.0 0.9091)) +(: cnet_isa_5767892b07 (IsA zoomorphism attribution) (STV 1.0 0.9091)) +(: cnet_isa_74c92a8ea1 (IsA zoonosis animal_disease) (STV 1.0 0.9091)) +(: cnet_isa_e9b7d238eb (IsA zoophilia paraphilia) (STV 1.0 0.9091)) +(: cnet_isa_e5c7490348 (IsA zoophobia simple_phobia) (STV 1.0 0.9091)) +(: cnet_isa_0d43c00310 (IsA zoophyte invertebrate) (STV 1.0 0.9091)) +(: cnet_isa_2ee17fbe2c (IsA zooplankton animal) (STV 1.0 0.9091)) +(: cnet_isa_67e262fab7 (IsA zoopsia visual_hallucination) (STV 1.0 0.9091)) +(: cnet_isa_ffc0428b41 (IsA zoospore spore) (STV 1.0 0.9091)) +(: cnet_isa_97d3549579 (IsA zoot_suit suit) (STV 1.0 0.9091)) +(: cnet_isa_175716a7ab (IsA zorak one_space_ghost_s_enemy) (STV 1.0 0.9091)) +(: cnet_isa_2e9ca04acb (IsA zorak space_ghost_s_enemy) (STV 1.0 0.9091)) +(: cnet_isa_a59bc1fc69 (IsA zoril muishond) (STV 1.0 0.9091)) +(: cnet_isa_3cdc4350d6 (IsA zork game) (STV 1.0 0.9339)) +(: cnet_isa_1572a3d020 (IsA zoroastrian disciple) (STV 1.0 0.9091)) +(: cnet_isa_53cacb60e3 (IsA zoroastrianism religion) (STV 1.0 0.9091)) +(: cnet_isa_a8c316c698 (IsA zostera monocot_genus) (STV 1.0 0.9091)) +(: cnet_isa_4c23bdc56b (IsA zosteraceae monocot_family) (STV 1.0 0.9091)) +(: cnet_isa_d9d62e1d0a (IsA zoysia grass) (STV 1.0 0.9091)) +(: cnet_isa_7c64ad546e (IsA zucchini summer_squash) (STV 1.0 0.9091)) +(: cnet_isa_07f0e97615 (IsA zucchini marrow) (STV 1.0 0.9091)) +(: cnet_isa_24a6d2b8b7 (IsA zulu nguni) (STV 1.0 0.9091)) +(: cnet_isa_7ce694b459 (IsA zulu african) (STV 1.0 0.9091)) +(: cnet_isa_8fc8d3a53b (IsA zuni pueblo) (STV 1.0 0.9091)) +(: cnet_isa_90071fd253 (IsA zurvanism heresy) (STV 1.0 0.9091)) +(: cnet_isa_f11a0f1525 (IsA zurvanism theological_doctrine) (STV 1.0 0.9091)) +(: cnet_isa_447280df57 (IsA zurvanism sect) (STV 1.0 0.9091)) +(: cnet_isa_bb36def5cd (IsA zwieback toast) (STV 1.0 0.9091)) +(: cnet_isa_9f8c8d030a (IsA zydeco country_music) (STV 1.0 0.9091)) +(: cnet_isa_8fafe4790d (IsA zygnema protoctist_genus) (STV 1.0 0.9091)) +(: cnet_isa_98afa308ec (IsA zygnemataceae protoctist_family) (STV 1.0 0.9091)) +(: cnet_isa_c509ebbbc5 (IsA zygnematale animal_order) (STV 1.0 0.9091)) +(: cnet_isa_6926a2b86e (IsA zygocactus caryophylloid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_bb35faa7af (IsA zygodactyl_foot bird_s_foot) (STV 1.0 0.9091)) +(: cnet_isa_5902222c22 (IsA zygoma bone) (STV 1.0 0.9091)) +(: cnet_isa_e1a60a73a0 (IsA zygomatic_process process) (STV 1.0 0.9091)) +(: cnet_isa_28700b0b5c (IsA zygomycete class) (STV 1.0 0.9091)) +(: cnet_isa_9d5967bd15 (IsA zygomycota division) (STV 1.0 0.9091)) +(: cnet_isa_47f15f6d14 (IsA zygophyllaceae rosid_dicot_family) (STV 1.0 0.9091)) +(: cnet_isa_ea801f12c1 (IsA zygophyllum rosid_dicot_genus) (STV 1.0 0.9091)) +(: cnet_isa_622f8836ee (IsA zygoptera animal_order) (STV 1.0 0.9091)) +(: cnet_isa_1273c12c98 (IsA zygospore spore) (STV 1.0 0.9091)) +(: cnet_isa_580e8db4a9 (IsA zygote cell) (STV 1.0 0.9091)) +(: cnet_isa_fed9dcf2e1 (IsA zygotene phase) (STV 1.0 0.9091)) +(: cnet_isa_e401ff4712 (IsA zymase enzyme) (STV 1.0 0.9091)) +(: cnet_isa_730c60c2fe (IsA zymosis infection) (STV 1.0 0.9091)) +(: cnet_isa_a0a2c327ec (IsA zymosis chemical_process) (STV 1.0 0.9091)) +(: cnet_isa_dd327ae4c0 (IsA zymurgy biochemistry) (STV 1.0 0.9091)) +(: cnet_madeof_e2865e6660 (MadeOf ammonia nitrogen_and_hydrogen) (STV 1.0 0.9091)) +(: cnet_madeof_cec957ceaa (MadeOf animated_flesh_of_dead_person cell) (STV 1.0 0.9091)) +(: cnet_madeof_450c993e74 (MadeOf atom subatomic_particle) (STV 1.0 0.9091)) +(: cnet_madeof_29ec46c65c (MadeOf banana_pudding banana) (STV 1.0 0.9091)) +(: cnet_madeof_ea8c78486b (MadeOf bicycle metal) (STV 1.0 0.9454)) +(: cnet_madeof_513eccc959 (MadeOf book paper) (STV 1.0 0.9572)) +(: cnet_madeof_d12b4b900d (MadeOf bottle plastic) (STV 1.0 0.9339)) +(: cnet_madeof_d44506b063 (MadeOf bottle green_glass) (STV 1.0 0.9091)) +(: cnet_madeof_db82c95e80 (MadeOf brain neuron) (STV 1.0 0.9339)) +(: cnet_madeof_644ea31c73 (MadeOf brick clay) (STV 1.0 0.9339)) +(: cnet_madeof_9e79192302 (MadeOf cheese milk) (STV 1.0 0.9091)) +(: cnet_madeof_55bb907d3f (MadeOf closet wood) (STV 1.0 0.9091)) +(: cnet_madeof_ee8e087f17 (MadeOf cloth fiber) (STV 1.0 0.9091)) +(: cnet_madeof_8d8279dedb (MadeOf community political_ideology) (STV 1.0 0.9091)) +(: cnet_madeof_0313b38930 (MadeOf computer hardware) (STV 1.0 0.9091)) +(: cnet_madeof_e88e0bd75b (MadeOf computer_mice plastic) (STV 1.0 0.9091)) +(: cnet_madeof_f32ef081fd (MadeOf computer_program source_code) (STV 1.0 0.9091)) +(: cnet_madeof_2a9a4794ae (MadeOf cotton_candy sugar) (STV 1.0 0.9339)) +(: cnet_madeof_46eccf9739 (MadeOf crt glass) (STV 1.0 0.9091)) +(: cnet_madeof_0488f0cf58 (MadeOf data bit) (STV 1.0 0.9091)) +(: cnet_madeof_fa57d2e73c (MadeOf diamond carbon) (STV 1.0 0.9091)) +(: cnet_madeof_10e2844e70 (MadeOf digital_data bit) (STV 1.0 0.9091)) +(: cnet_madeof_1f8aac0b89 (MadeOf electricity electron) (STV 1.0 0.9091)) +(: cnet_madeof_082b193652 (MadeOf electricity flow_of_electron) (STV 1.0 0.9091)) +(: cnet_madeof_9cf35d7c02 (MadeOf envelope paper) (STV 1.0 0.9091)) +(: cnet_madeof_23d364961a (MadeOf fabric fiber) (STV 1.0 0.9091)) +(: cnet_madeof_34ce4fc9fb (MadeOf furniture wood) (STV 1.0 0.9091)) +(: cnet_madeof_64e164b2dc (MadeOf glass sand) (STV 1.0 0.9091)) +(: cnet_madeof_6879c4dff4 (MadeOf gnocchi potato) (STV 1.0 0.9339)) +(: cnet_madeof_796288d004 (MadeOf government political_ideology) (STV 1.0 0.9091)) +(: cnet_madeof_01e31a8740 (MadeOf guitar string) (STV 1.0 0.9091)) +(: cnet_madeof_0cf52758c2 (MadeOf heroin diamorphine) (STV 1.0 0.9091)) +(: cnet_madeof_615317dc38 (MadeOf heroin poppy_flower) (STV 1.0 0.9091)) +(: cnet_madeof_4ae46d61db (MadeOf house room) (STV 1.0 0.9091)) +(: cnet_madeof_4e98098a0f (MadeOf house wood) (STV 1.0 0.9091)) +(: cnet_madeof_3fe977d876 (MadeOf human_body molecule) (STV 1.0 0.9091)) +(: cnet_madeof_25070f1a87 (MadeOf ice water) (STV 1.0 0.9339)) +(: cnet_madeof_4070c145f2 (MadeOf index_card paper) (STV 1.0 0.9091)) +(: cnet_madeof_8567bcc893 (MadeOf indica cannabis) (STV 1.0 0.9091)) +(: cnet_madeof_47793bc3b7 (MadeOf ipod microchip_and_plastic) (STV 1.0 0.9454)) +(: cnet_madeof_8bc6c84b70 (MadeOf jean denim) (STV 1.0 0.9091)) +(: cnet_madeof_b6e3711306 (MadeOf john_safran cell) (STV 1.0 0.9091)) +(: cnet_madeof_ce3411f817 (MadeOf katana steel) (STV 1.0 0.9091)) +(: cnet_madeof_8abdf8ce99 (MadeOf laser photon) (STV 1.0 0.9091)) +(: cnet_madeof_a3632ecf64 (MadeOf len glass) (STV 1.0 0.9339)) +(: cnet_madeof_b216b22c76 (MadeOf lens glass) (STV 1.0 0.9339)) +(: cnet_madeof_59fb04758e (MadeOf letter paper) (STV 1.0 0.9091)) +(: cnet_madeof_2fea9ef3dc (MadeOf light energy) (STV 1.0 0.9091)) +(: cnet_madeof_c959b153c9 (MadeOf lubrication oil) (STV 1.0 0.9091)) +(: cnet_madeof_ee5c19d73d (MadeOf many_bottle glass) (STV 1.0 0.9091)) +(: cnet_madeof_132152d794 (MadeOf matter particle) (STV 1.0 0.9091)) +(: cnet_madeof_9d3707a51f (MadeOf mead fermented_honey_water) (STV 1.0 0.9091)) +(: cnet_madeof_dbdf6d52ac (MadeOf mind subjective_thought) (STV 1.0 0.9091)) +(: cnet_madeof_a8e1cac25a (MadeOf mozart_music musical_composition) (STV 1.0 0.9091)) +(: cnet_madeof_9e7834ba10 (MadeOf music sound) (STV 1.0 0.9091)) +(: cnet_madeof_13a8205bd3 (MadeOf nail keratin) (STV 1.0 0.9091)) +(: cnet_madeof_37480463c0 (MadeOf newspaper ink_and_paper) (STV 1.0 0.9339)) +(: cnet_madeof_1e5fb883f3 (MadeOf ocean water) (STV 1.0 0.9339)) +(: cnet_madeof_38d44b387a (MadeOf outfit clothe) (STV 1.0 0.9091)) +(: cnet_madeof_de92b49444 (MadeOf page paper_with_word_on) (STV 1.0 0.9091)) +(: cnet_madeof_87284f495d (MadeOf paper tree) (STV 1.0 0.9339)) +(: cnet_madeof_11b5f7f7d1 (MadeOf peanut_butter peanut) (STV 1.0 0.9524)) +(: cnet_madeof_6c3253d77f (MadeOf pen plastic) (STV 1.0 0.9091)) +(: cnet_madeof_9ec45d72e7 (MadeOf pencil wood) (STV 1.0 0.9091)) +(: cnet_madeof_1c3425012f (MadeOf penis cell) (STV 1.0 0.9091)) +(: cnet_madeof_ee8bd22447 (MadeOf penis flesh) (STV 1.0 0.9091)) +(: cnet_madeof_293bcbc4e3 (MadeOf pillow feather) (STV 1.0 0.9091)) +(: cnet_madeof_f8729d3a9d (MadeOf porn naked_people) (STV 1.0 0.9091)) +(: cnet_madeof_9f913c20ec (MadeOf revolution sentient_being) (STV 1.0 0.9091)) +(: cnet_madeof_ee0e9cbb26 (MadeOf room four_wall) (STV 1.0 0.9339)) +(: cnet_madeof_440f11b1ce (MadeOf sativa cannabis) (STV 1.0 0.9091)) +(: cnet_madeof_8bcb6fa557 (MadeOf sausage meat) (STV 1.0 0.9091)) +(: cnet_madeof_8bb90689eb (MadeOf semen sperm_cell) (STV 1.0 0.9091)) +(: cnet_madeof_4805c5bb52 (MadeOf set element) (STV 1.0 0.9339)) +(: cnet_madeof_4d0ce31f1f (MadeOf set member) (STV 1.0 0.9091)) +(: cnet_madeof_727ba424df (MadeOf silverware metal) (STV 1.0 0.9339)) +(: cnet_madeof_c6f4c66904 (MadeOf soccer_ball leather) (STV 1.0 0.9091)) +(: cnet_madeof_c66e4e6c16 (MadeOf socialism socialist) (STV 1.0 0.9091)) +(: cnet_madeof_a5fa21df97 (MadeOf sock thread) (STV 1.0 0.9091)) +(: cnet_madeof_f4dec3fea6 (MadeOf spring metal) (STV 1.0 0.9091)) +(: cnet_madeof_3027ce7616 (MadeOf steel iron) (STV 1.0 0.9339)) +(: cnet_madeof_b28a580ea2 (MadeOf sword steel) (STV 1.0 0.9339)) +(: cnet_madeof_6db3d61e79 (MadeOf system_of_abstract_thought abstraction) (STV 1.0 0.9091)) +(: cnet_madeof_8898949dc8 (MadeOf system_of_abstract_thought ideal) (STV 1.0 0.9091)) +(: cnet_madeof_9f9af4607e (MadeOf table wood) (STV 1.0 0.9091)) +(: cnet_madeof_3528211496 (MadeOf telephone_pole wood) (STV 1.0 0.9091)) +(: cnet_madeof_a396548e3b (MadeOf toast bread) (STV 1.0 0.9091)) +(: cnet_madeof_dd778c2951 (MadeOf tortilla corn_or_flour) (STV 1.0 0.9091)) +(: cnet_madeof_1ba2e949f4 (MadeOf tree wood) (STV 1.0 0.9091)) +(: cnet_madeof_187e586db1 (MadeOf tree_plant_and wood) (STV 1.0 0.9339)) +(: cnet_madeof_8a7c3ce0ec (MadeOf trust honesty) (STV 1.0 0.9091)) +(: cnet_madeof_11d3328d53 (MadeOf tv glass) (STV 1.0 0.9091)) +(: cnet_madeof_3b37869af7 (MadeOf tv plastic) (STV 1.0 0.9091)) +(: cnet_madeof_7646719f46 (MadeOf u_f_o alien_material) (STV 1.0 0.9339)) +(: cnet_madeof_c4c0b884af (MadeOf universe string) (STV 1.0 0.9091)) +(: cnet_madeof_9ef572f9f9 (MadeOf utopia community) (STV 1.0 0.9091)) +(: cnet_madeof_f0e9d30a4c (MadeOf utopia equality_for_everyone) (STV 1.0 0.9091)) +(: cnet_madeof_3ae98f5ae2 (MadeOf water h2o) (STV 1.0 0.9091)) +(: cnet_madeof_9c3690ac00 (MadeOf water oxygen) (STV 1.0 0.9339)) +(: cnet_madeof_a027efb654 (MadeOf wedding_ring gold) (STV 1.0 0.9091)) +(: cnet_madeof_ab1f121a55 (MadeOf whorehouse room) (STV 1.0 0.9091)) +(: cnet_madeof_acdcd6f8a6 (MadeOf wind air) (STV 1.0 0.9091)) +(: cnet_madeof_bd6c269c5c (MadeOf wine fruit) (STV 1.0 0.9091)) +(: cnet_madeof_639b5b2c9d (MadeOf written_word character) (STV 1.0 0.9091)) +(: cnet_madeof_6403199856 (MadeOf zombie cell) (STV 1.0 0.9091)) +(: cnet_partof_ce6d3dd31e (PartOf 9_11 september) (STV 1.0 0.9091)) +(: cnet_partof_f1d40c049b (PartOf a alphabet) (STV 1.0 0.9339)) +(: cnet_partof_ba8557f954 (PartOf aachen germany) (STV 1.0 0.9091)) +(: cnet_partof_ebe9e66e11 (PartOf aalborg denmark) (STV 1.0 0.9091)) +(: cnet_partof_16f0a2cf3d (PartOf aare switzerland) (STV 1.0 0.9091)) +(: cnet_partof_a7d8ed2b2a (PartOf ab jewish_calendar) (STV 1.0 0.9091)) +(: cnet_partof_b3d95cf9ab (PartOf abadan iran) (STV 1.0 0.9091)) +(: cnet_partof_190d4cc6b4 (PartOf abdomen torso) (STV 1.0 0.9091)) +(: cnet_partof_ae202525e0 (PartOf abdominal abdomen) (STV 1.0 0.9091)) +(: cnet_partof_1cd65cd50f (PartOf abdominal_aorta abdomen) (STV 1.0 0.9091)) +(: cnet_partof_2d27b1bdda (PartOf abdominal_cavity abdomen) (STV 1.0 0.9091)) +(: cnet_partof_567a06a9a1 (PartOf abdominal_wall abdomen) (STV 1.0 0.9091)) +(: cnet_partof_8ab3dd33ec (PartOf aberdare wale) (STV 1.0 0.9091)) +(: cnet_partof_914aeba0ea (PartOf aberdeen maryland) (STV 1.0 0.9091)) +(: cnet_partof_bcd1bc8cfd (PartOf aberdeen scotland) (STV 1.0 0.9091)) +(: cnet_partof_aca98ceadf (PartOf aberdeen south_dakota) (STV 1.0 0.9091)) +(: cnet_partof_43228ca1f0 (PartOf aberdeen washington) (STV 1.0 0.9091)) +(: cnet_partof_356a245936 (PartOf abhenry henry) (STV 1.0 0.9091)) +(: cnet_partof_1cd4b1a01e (PartOf abidjan ivory_coast) (STV 1.0 0.9091)) +(: cnet_partof_d424130c3e (PartOf abilene kansa) (STV 1.0 0.9091)) +(: cnet_partof_8cea43a417 (PartOf abilene texa) (STV 1.0 0.9091)) +(: cnet_partof_d16680bd0a (PartOf abkhaz georgia) (STV 1.0 0.9091)) +(: cnet_partof_328ee9ac28 (PartOf abohm ohm) (STV 1.0 0.9091)) +(: cnet_partof_9fd0625e02 (PartOf abomasum ruminant) (STV 1.0 0.9091)) +(: cnet_partof_47d8a0494a (PartOf abruzzi italy) (STV 1.0 0.9091)) +(: cnet_partof_8e30cb2408 (PartOf absolution penance) (STV 1.0 0.9091)) +(: cnet_partof_08f8d3f546 (PartOf absorption extinction) (STV 1.0 0.9091)) +(: cnet_partof_0504212371 (PartOf abu_dhabi united_arab_emirate) (STV 1.0 0.9091)) +(: cnet_partof_c8564a0894 (PartOf abuja nigeria) (STV 1.0 0.9091)) +(: cnet_partof_23bd73bb71 (PartOf abukir mediterranean) (STV 1.0 0.9091)) +(: cnet_partof_a24b08803d (PartOf abvolt volt) (STV 1.0 0.9091)) +(: cnet_partof_aa673bf395 (PartOf abwatt milliwatt) (STV 1.0 0.9091)) +(: cnet_partof_b13712de35 (PartOf abydo turkey) (STV 1.0 0.9091)) +(: cnet_partof_21dea5e205 (PartOf academic_gown academic_costume) (STV 1.0 0.9091)) +(: cnet_partof_7c5c336d16 (PartOf acadia maritime_province) (STV 1.0 0.9091)) +(: cnet_partof_72166fd70e (PartOf acadia_national_park maine) (STV 1.0 0.9091)) +(: cnet_partof_388d97cb8c (PartOf acantholysis pemphigus) (STV 1.0 0.9091)) +(: cnet_partof_1dc6a01fa3 (PartOf acanthosis psoriasis) (STV 1.0 0.9091)) +(: cnet_partof_913098ba12 (PartOf acapulco mexico) (STV 1.0 0.9091)) +(: cnet_partof_25f20cbe4b (PartOf acapulco_gold marijuana) (STV 1.0 0.9091)) +(: cnet_partof_a4c1c733ba (PartOf acardia monster) (STV 1.0 0.9091)) +(: cnet_partof_a0bd83b919 (PartOf accelerator airplane) (STV 1.0 0.9091)) +(: cnet_partof_02d9eef7b2 (PartOf accelerator car) (STV 1.0 0.9091)) +(: cnet_partof_81509dceb9 (PartOf accelerator fuel_system) (STV 1.0 0.9091)) +(: cnet_partof_7886abb02e (PartOf accessory_cephalic_vein forearm) (STV 1.0 0.9091)) +(: cnet_partof_cebd0ff226 (PartOf accra ghana) (STV 1.0 0.9091)) +(: cnet_partof_684bb99553 (PartOf acephalia monster) (STV 1.0 0.9091)) +(: cnet_partof_9f9d573035 (PartOf acerola barbado_cherry) (STV 1.0 0.9091)) +(: cnet_partof_1b02df6f38 (PartOf acetabulum hipbone) (STV 1.0 0.9091)) +(: cnet_partof_71ecb48db6 (PartOf acetate_disk phonograph_record) (STV 1.0 0.9091)) +(: cnet_partof_57007ae39c (PartOf achaea greece) (STV 1.0 0.9091)) +(: cnet_partof_72d038b173 (PartOf acheron hel) (STV 1.0 0.9091)) +(: cnet_partof_b3f7b82834 (PartOf achille_tendon calf) (STV 1.0 0.9091)) +(: cnet_partof_959a2876b8 (PartOf achille_tendon heel) (STV 1.0 0.9091)) +(: cnet_partof_6810df81d7 (PartOf achromatin nucleus) (STV 1.0 0.9091)) +(: cnet_partof_3511850bba (PartOf acinus gland) (STV 1.0 0.9091)) +(: cnet_partof_fb07086949 (PartOf ackee akee) (STV 1.0 0.9091)) +(: cnet_partof_02495ff3a4 (PartOf aconcagua ande) (STV 1.0 0.9091)) +(: cnet_partof_a91fd2e2d7 (PartOf aconcagua argentina) (STV 1.0 0.9091)) +(: cnet_partof_51166da1c7 (PartOf acorn oak) (STV 1.0 0.9091)) +(: cnet_partof_cbb512ea27 (PartOf acorn_squash acorn_squash) (STV 1.0 0.9091)) +(: cnet_partof_eabe022c0a (PartOf acoustic_delay_line acoustic_storage) (STV 1.0 0.9091)) +(: cnet_partof_7be7aa31a2 (PartOf acoustic_nerve auditory_system) (STV 1.0 0.9091)) +(: cnet_partof_3af872638a (PartOf acre brazil) (STV 1.0 0.9091)) +(: cnet_partof_8b2f28a5ee (PartOf acre israel) (STV 1.0 0.9091)) +(: cnet_partof_98d08e4da1 (PartOf acrobatic_stunt acrobatic) (STV 1.0 0.9091)) +(: cnet_partof_5874c9a143 (PartOf acromion scapula) (STV 1.0 0.9091)) +(: cnet_partof_c0ef3051e9 (PartOf acrosome sperm) (STV 1.0 0.9091)) +(: cnet_partof_a237075f10 (PartOf act ballet) (STV 1.0 0.9091)) +(: cnet_partof_dc6daecf2f (PartOf act opera) (STV 1.0 0.9091)) +(: cnet_partof_00ef832c6e (PartOf act play) (STV 1.0 0.9091)) +(: cnet_partof_b589e0a055 (PartOf acting performance) (STV 1.0 0.9091)) +(: cnet_partof_ad3de78694 (PartOf actinic_radiation electromagnetic_spectrum) (STV 1.0 0.9091)) +(: cnet_partof_9eef9368e2 (PartOf action gun) (STV 1.0 0.9091)) +(: cnet_partof_69f7531447 (PartOf action keyboard) (STV 1.0 0.9091)) +(: cnet_partof_b8e883028b (PartOf actium greece) (STV 1.0 0.9091)) +(: cnet_partof_e40e462fee (PartOf active_site antibody) (STV 1.0 0.9091)) +(: cnet_partof_4451f953f9 (PartOf active_site enzyme) (STV 1.0 0.9091)) +(: cnet_partof_2961b2c1c2 (PartOf actor_s_line dialogue) (STV 1.0 0.9091)) +(: cnet_partof_9cd18bb425 (PartOf act_of_apostle new_testament) (STV 1.0 0.9091)) +(: cnet_partof_c70d4c1a4e (PartOf adagio pas_de_deux) (STV 1.0 0.9091)) +(: cnet_partof_7184b7b7b4 (PartOf adam_s_peak sri_lanka) (STV 1.0 0.9091)) +(: cnet_partof_4d1ac50592 (PartOf adam cascade) (STV 1.0 0.9091)) +(: cnet_partof_545ce28d0c (PartOf adam washington) (STV 1.0 0.9091)) +(: cnet_partof_729eeb6fea (PartOf adana turkey) (STV 1.0 0.9091)) +(: cnet_partof_3a39e9585f (PartOf adaptation evolution) (STV 1.0 0.9091)) +(: cnet_partof_19a1bb56b8 (PartOf adar jewish_calendar) (STV 1.0 0.9091)) +(: cnet_partof_6940e794e2 (PartOf addendum back_matter) (STV 1.0 0.9091)) +(: cnet_partof_9b5989fe3b (PartOf adding_machine cash_register) (STV 1.0 0.9091)) +(: cnet_partof_b45646f4d6 (PartOf addis_ababa ethiopia) (STV 1.0 0.9091)) +(: cnet_partof_27b2cd325e (PartOf addition_to_esther apocrypha) (STV 1.0 0.9091)) +(: cnet_partof_837d7e8b50 (PartOf address letter) (STV 1.0 0.9091)) +(: cnet_partof_e0ce7bd323 (PartOf adelaide south_australia) (STV 1.0 0.9091)) +(: cnet_partof_d4dadf07aa (PartOf adelie_coast antarctica) (STV 1.0 0.9091)) +(: cnet_partof_8595ae6756 (PartOf aden yemen) (STV 1.0 0.9091)) +(: cnet_partof_f531b43453 (PartOf adige italy) (STV 1.0 0.9091)) +(: cnet_partof_9df40cd0d7 (PartOf adirondack new_york) (STV 1.0 0.9091)) +(: cnet_partof_65da10690b (PartOf adit mine) (STV 1.0 0.9091)) +(: cnet_partof_3733ece2e3 (PartOf adjective adjective) (STV 1.0 0.9091)) +(: cnet_partof_57d8fd5e20 (PartOf administration government) (STV 1.0 0.9091)) +(: cnet_partof_f4f2b1e307 (PartOf admiralty_island alexander_archipelago) (STV 1.0 0.9091)) +(: cnet_partof_b77291e93f (PartOf admiralty_island bismarck_archipelago) (STV 1.0 0.9091)) +(: cnet_partof_e857cd0a2a (PartOf admiralty_range antarctica) (STV 1.0 0.9091)) +(: cnet_partof_5ae25eb81d (PartOf adolescence youth) (STV 1.0 0.9091)) +(: cnet_partof_535e3c4833 (PartOf adrenal_cortex adrenal_gland) (STV 1.0 0.9091)) +(: cnet_partof_db87c44fd5 (PartOf adrenal_gland kidney) (STV 1.0 0.9091)) +(: cnet_partof_219a774216 (PartOf adrenal_medulla adrenal_gland) (STV 1.0 0.9091)) +(: cnet_partof_663acc4336 (PartOf adriatic mediterranean) (STV 1.0 0.9091)) +(: cnet_partof_23a730715e (PartOf adult_body adult) (STV 1.0 0.9091)) +(: cnet_partof_86d1f96332 (PartOf adult_female_body woman) (STV 1.0 0.9091)) +(: cnet_partof_d258441868 (PartOf adult_male_body man) (STV 1.0 0.9091)) +(: cnet_partof_78ebfaabb0 (PartOf advanced_research_and_development_activity intelligence_community) (STV 1.0 0.9091)) +(: cnet_partof_740f3d4922 (PartOf advantage tennis) (STV 1.0 0.9091)) +(: cnet_partof_89e5a61cf3 (PartOf advent church_calendar) (STV 1.0 0.9091)) +(: cnet_partof_b77466b2f2 (PartOf advent_sunday advent) (STV 1.0 0.9091)) +(: cnet_partof_7e408c0dc6 (PartOf adverb adverb) (STV 1.0 0.9091)) +(: cnet_partof_27a5dfe412 (PartOf advice_and_consent united_state_constitution) (STV 1.0 0.9091)) +(: cnet_partof_a03eef527e (PartOf adzhar georgia) (STV 1.0 0.9091)) +(: cnet_partof_8a604cabc8 (PartOf aeciospore rust) (STV 1.0 0.9091)) +(: cnet_partof_ef8dcaa5e0 (PartOf aecium rust) (STV 1.0 0.9091)) +(: cnet_partof_c3dc5d770d (PartOf aegate_isle punic_war) (STV 1.0 0.9091)) +(: cnet_partof_7f7262202f (PartOf aegean mediterranean) (STV 1.0 0.9091)) +(: cnet_partof_a810c90870 (PartOf aegean_island aegean) (STV 1.0 0.9091)) +(: cnet_partof_f33962177c (PartOf aegina greece) (STV 1.0 0.9091)) +(: cnet_partof_ff94c9a8af (PartOf aegospotami peloponnesian_war) (STV 1.0 0.9091)) +(: cnet_partof_639e54011f (PartOf aegospotami turkey) (STV 1.0 0.9091)) +(: cnet_partof_b5a0dfa7ad (PartOf aeolis asia_minor) (STV 1.0 0.9091)) +(: cnet_partof_9bac774f87 (PartOf aerospace space) (STV 1.0 0.9091)) +(: cnet_partof_8a3042435d (PartOf afferent_fiber sensory_nerve) (STV 1.0 0.9091)) +(: cnet_partof_cc9c6f3107 (PartOf affix word) (STV 1.0 0.9091)) +(: cnet_partof_a378ba0c13 (PartOf afghanistan asia) (STV 1.0 0.9091)) +(: cnet_partof_77becdc98e (PartOf africa eastern_hemisphere) (STV 1.0 0.9091)) +(: cnet_partof_95df37b6c1 (PartOf african_country africa) (STV 1.0 0.9091)) +(: cnet_partof_5229368df8 (PartOf afterburner turbojet) (STV 1.0 0.9091)) +(: cnet_partof_146834e68d (PartOf age life) (STV 1.0 0.9091)) +(: cnet_partof_ff462dc6fe (PartOf agenda_item agenda) (STV 1.0 0.9091)) +(: cnet_partof_f0eb6ebf3a (PartOf aggression war) (STV 1.0 0.9091)) +(: cnet_partof_abfdee3e69 (PartOf aghan hindu_calendar) (STV 1.0 0.9091)) +(: cnet_partof_560ec618ad (PartOf aglet shoelace) (STV 1.0 0.9091)) +(: cnet_partof_449a3a4e5d (PartOf agora shekel) (STV 1.0 0.9091)) +(: cnet_partof_4f4fe06bfe (PartOf agra india) (STV 1.0 0.9091)) +(: cnet_partof_91e30b9841 (PartOf agrigento sicily) (STV 1.0 0.9091)) +(: cnet_partof_576b2b611f (PartOf agrobiology agronomy) (STV 1.0 0.9091)) +(: cnet_partof_9c5fe96c1b (PartOf agrology agronomy) (STV 1.0 0.9091)) +(: cnet_partof_f6188da6e8 (PartOf ague malaria) (STV 1.0 0.9091)) +(: cnet_partof_13caad41f2 (PartOf ahuehuete mexico) (STV 1.0 0.9091)) +(: cnet_partof_a22cc103b7 (PartOf aileron wing) (STV 1.0 0.9091)) +(: cnet_partof_f37384c225 (PartOf air_bag car) (STV 1.0 0.9091)) +(: cnet_partof_d0d8b55fe1 (PartOf air_combat_command united_state_air_force) (STV 1.0 0.9091)) +(: cnet_partof_011ec6bd5f (PartOf air_filter ventilator) (STV 1.0 0.9091)) +(: cnet_partof_2017126f74 (PartOf air_force_intelligence_surveillance_and_reconnaissance united_state_air_force) (STV 1.0 0.9091)) +(: cnet_partof_17b21dd367 (PartOf air_force_research_laboratory united_state_air_force) (STV 1.0 0.9091)) +(: cnet_partof_617ac46435 (PartOf air_force_space_command united_state_air_force) (STV 1.0 0.9091)) +(: cnet_partof_785c3eb193 (PartOf air_horn carburetor) (STV 1.0 0.9091)) +(: cnet_partof_90855d9dc1 (PartOf air_intake carburetor) (STV 1.0 0.9091)) +(: cnet_partof_0f0c2ebcb3 (PartOf air_national_guard united_state_air_force) (STV 1.0 0.9091)) +(: cnet_partof_1f5df4c492 (PartOf air_sac bird) (STV 1.0 0.9091)) +(: cnet_partof_eb87fae6b2 (PartOf air_sac insect) (STV 1.0 0.9091)) +(: cnet_partof_d418f0eb9c (PartOf air_terminal airport) (STV 1.0 0.9091)) +(: cnet_partof_bf9dedc2c5 (PartOf airbrake motor_vehicle) (STV 1.0 0.9091)) +(: cnet_partof_ed8b88d95b (PartOf aircraft_engine aircraft) (STV 1.0 0.9091)) +(: cnet_partof_06a7d2b3b2 (PartOf airdock airport) (STV 1.0 0.9091)) +(: cnet_partof_e306ef53e5 (PartOf aire england) (STV 1.0 0.9091)) +(: cnet_partof_6444ce2597 (PartOf airfield transportation_system) (STV 1.0 0.9091)) +(: cnet_partof_3dbf6f5e03 (PartOf airplane_propeller propeller_plane) (STV 1.0 0.9091)) +(: cnet_partof_59dd6b3186 (PartOf airspace atmosphere) (STV 1.0 0.9091)) +(: cnet_partof_02ca890323 (PartOf akron ohio) (STV 1.0 0.9091)) +(: cnet_partof_7f0e17f42a (PartOf al_ladhiqiyah syria) (STV 1.0 0.9091)) +(: cnet_partof_e0609cc137 (PartOf ala insect) (STV 1.0 0.9091)) +(: cnet_partof_b36a9fb37a (PartOf alabama deep_south) (STV 1.0 0.9091)) +(: cnet_partof_41776552ce (PartOf alabama gulf_state) (STV 1.0 0.9091)) +(: cnet_partof_356532d7d3 (PartOf alabama united_state) (STV 1.0 0.9091)) +(: cnet_partof_6763fb2cd3 (PartOf alabama alabama) (STV 1.0 0.9091)) +(: cnet_partof_fb2cc12e6d (PartOf aland_island finland) (STV 1.0 0.9091)) +(: cnet_partof_e27b5c3e07 (PartOf aland_island gulf_of_bothnia) (STV 1.0 0.9091)) +(: cnet_partof_4df85c4f6f (PartOf alaska united_state) (STV 1.0 0.9091)) +(: cnet_partof_8bfa08f6d8 (PartOf alaska_king_crab king_crab) (STV 1.0 0.9091)) +(: cnet_partof_e5b78152a7 (PartOf alaska_peninsula alaska) (STV 1.0 0.9091)) +(: cnet_partof_daee4c217b (PartOf alaska_range alaska) (STV 1.0 0.9091)) +(: cnet_partof_b01fb39c6a (PartOf alaskan_pipeline alaska) (STV 1.0 0.9091)) +(: cnet_partof_d9b42f5dc8 (PartOf albacore albacore) (STV 1.0 0.9091)) +(: cnet_partof_862b0812ff (PartOf albania balkan_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_7b22a17775 (PartOf albany georgia) (STV 1.0 0.9091)) +(: cnet_partof_bebc04ccba (PartOf albany new_york) (STV 1.0 0.9091)) +(: cnet_partof_539cb28d4c (PartOf alberta canada) (STV 1.0 0.9091)) +(: cnet_partof_0d7f23f436 (PartOf albuquerque new_mexico) (STV 1.0 0.9091)) +(: cnet_partof_775547bbdf (PartOf aleppo syria) (STV 1.0 0.9091)) +(: cnet_partof_b4d1671020 (PartOf aleutian_island alaska) (STV 1.0 0.9091)) +(: cnet_partof_e1c3b6e0c9 (PartOf aleutian_island pacific) (STV 1.0 0.9091)) +(: cnet_partof_63a8e96bdd (PartOf alewife alewife) (STV 1.0 0.9091)) +(: cnet_partof_0cc67e654b (PartOf alexander_archipelago alaska) (STV 1.0 0.9091)) +(: cnet_partof_fa03b01106 (PartOf alexandria egypt) (STV 1.0 0.9091)) +(: cnet_partof_f89d6b959a (PartOf alexandria louisiana) (STV 1.0 0.9091)) +(: cnet_partof_0acc99f67d (PartOf alfalfa alfalfa) (STV 1.0 0.9091)) +(: cnet_partof_cb64f34d0d (PartOf algarroba algarroba) (STV 1.0 0.9091)) +(: cnet_partof_f530b24599 (PartOf algeria maghreb) (STV 1.0 0.9091)) +(: cnet_partof_55a5d001e4 (PartOf algerian_centime algerian_dinar) (STV 1.0 0.9091)) +(: cnet_partof_7612e3d038 (PartOf algier algeria) (STV 1.0 0.9091)) +(: cnet_partof_8af37e293f (PartOf alhambra granada) (STV 1.0 0.9091)) +(: cnet_partof_01a3db158a (PartOf alidade theodolite) (STV 1.0 0.9091)) +(: cnet_partof_6224dee97f (PartOf alimentary_canal digestive_system) (STV 1.0 0.9091)) +(: cnet_partof_e4eb2eb8cf (PartOf all_saint_day november) (STV 1.0 0.9091)) +(: cnet_partof_200fb5074a (PartOf all_soul_day november) (STV 1.0 0.9091)) +(: cnet_partof_cdd7dc194b (PartOf allegheny appalachian) (STV 1.0 0.9091)) +(: cnet_partof_89ffcbf32d (PartOf allegheny pennsylvania) (STV 1.0 0.9091)) +(: cnet_partof_8b97063d4f (PartOf allegheny virginia) (STV 1.0 0.9091)) +(: cnet_partof_1d7e764643 (PartOf allegheny west_virginia) (STV 1.0 0.9091)) +(: cnet_partof_08fc8ddb57 (PartOf allegheny new_york) (STV 1.0 0.9091)) +(: cnet_partof_40cbb02676 (PartOf allentown pennsylvania) (STV 1.0 0.9091)) +(: cnet_partof_efa4076ceb (PartOf allied_command_atlantic north_atlantic_treaty_organization) (STV 1.0 0.9091)) +(: cnet_partof_7ec1dd8073 (PartOf allied_command_europe north_atlantic_treaty_organization) (STV 1.0 0.9091)) +(: cnet_partof_b16ac9c91b (PartOf allspice allspice) (STV 1.0 0.9091)) +(: cnet_partof_5186413f23 (PartOf almaty kazakhstan) (STV 1.0 0.9091)) +(: cnet_partof_d64b7a7500 (PartOf almond almond) (STV 1.0 0.9091)) +(: cnet_partof_9429e36ece (PartOf alpena michigan) (STV 1.0 0.9091)) +(: cnet_partof_04477410ac (PartOf alpha_receptor sympathetic_nervous_system) (STV 1.0 0.9091)) +(: cnet_partof_cfef13c79e (PartOf alp austria) (STV 1.0 0.9091)) +(: cnet_partof_059aa3fe97 (PartOf alp france) (STV 1.0 0.9091)) +(: cnet_partof_514a1f0966 (PartOf alp italy) (STV 1.0 0.9091)) +(: cnet_partof_97e42e68e4 (PartOf alp switzerland) (STV 1.0 0.9091)) +(: cnet_partof_9a4b0b1d30 (PartOf alsace france) (STV 1.0 0.9091)) +(: cnet_partof_813c8a828b (PartOf altai_mountain asia) (STV 1.0 0.9091)) +(: cnet_partof_11c1d2d9a7 (PartOf alternator electrical_system) (STV 1.0 0.9091)) +(: cnet_partof_50bbbfc807 (PartOf altoona pennsylvania) (STV 1.0 0.9091)) +(: cnet_partof_f4365fb7a0 (PartOf alula fly) (STV 1.0 0.9091)) +(: cnet_partof_12cbd19a38 (PartOf alveolar_arch jaw) (STV 1.0 0.9091)) +(: cnet_partof_1e7083def4 (PartOf alveolar_artery alveolar_ridge) (STV 1.0 0.9091)) +(: cnet_partof_93808bb97c (PartOf alveolar_bed lung) (STV 1.0 0.9091)) +(: cnet_partof_4a54d7aa21 (PartOf alveolar_ridge jaw) (STV 1.0 0.9091)) +(: cnet_partof_6fbef62fe4 (PartOf alveolus lung) (STV 1.0 0.9091)) +(: cnet_partof_8e0c24e029 (PartOf amarelle amarelle) (STV 1.0 0.9091)) +(: cnet_partof_e2f20dfb9b (PartOf amarillo texa) (STV 1.0 0.9091)) +(: cnet_partof_f389433cee (PartOf amazon brazil) (STV 1.0 0.9091)) +(: cnet_partof_921b44d679 (PartOf amazon peru) (STV 1.0 0.9091)) +(: cnet_partof_53b2d3e6a5 (PartOf ambulacrum echinoderm) (STV 1.0 0.9091)) +(: cnet_partof_2e02a78b40 (PartOf amen_corner church) (STV 1.0 0.9091)) +(: cnet_partof_819f4f6609 (PartOf american_fall new_york) (STV 1.0 0.9091)) +(: cnet_partof_6357ae401b (PartOf american_fall niagara) (STV 1.0 0.9091)) +(: cnet_partof_8a367b89b2 (PartOf american_indian_day september) (STV 1.0 0.9091)) +(: cnet_partof_1b086a7f1c (PartOf american_lobster american_lobster) (STV 1.0 0.9091)) +(: cnet_partof_7698ab2d1a (PartOf american_samoa samoa) (STV 1.0 0.9091)) +(: cnet_partof_26ae307a80 (PartOf american_smelt rainbow_smelt) (STV 1.0 0.9091)) +(: cnet_partof_758774c1ed (PartOf american_state united_state) (STV 1.0 0.9091)) +(: cnet_partof_fa66409759 (PartOf amman jordan) (STV 1.0 0.9091)) +(: cnet_partof_ae49903042 (PartOf amnion amniote) (STV 1.0 0.9091)) +(: cnet_partof_cf7abe548a (PartOf amnion fetal_membrane) (STV 1.0 0.9091)) +(: cnet_partof_a881881a67 (PartOf amniotic_fluid amniotic_cavity) (STV 1.0 0.9091)) +(: cnet_partof_fdca7e2688 (PartOf amo old_testament) (STV 1.0 0.9091)) +(: cnet_partof_386d108bc4 (PartOf amo prophet) (STV 1.0 0.9091)) +(: cnet_partof_baaa41914d (PartOf ampere abampere) (STV 1.0 0.9091)) +(: cnet_partof_f9138c2f6b (PartOf ampere_minute ampere_hour) (STV 1.0 0.9091)) +(: cnet_partof_4494fa38e4 (PartOf amplifier public_address_system) (STV 1.0 0.9091)) +(: cnet_partof_baceaddcd1 (PartOf amplifier radio_receiver) (STV 1.0 0.9091)) +(: cnet_partof_fb9d09caeb (PartOf amplifier stereo) (STV 1.0 0.9091)) +(: cnet_partof_2e15cf6f34 (PartOf ampulla duct) (STV 1.0 0.9091)) +(: cnet_partof_75122b233b (PartOf amsterdam netherland) (STV 1.0 0.9091)) +(: cnet_partof_824d44cda5 (PartOf amur china) (STV 1.0 0.9091)) +(: cnet_partof_184d36ff45 (PartOf amur russia) (STV 1.0 0.9091)) +(: cnet_partof_226a1d29bc (PartOf amygdala brain) (STV 1.0 0.9091)) +(: cnet_partof_b5726c3780 (PartOf amygdala limbic_system) (STV 1.0 0.9091)) +(: cnet_partof_8bacd9d069 (PartOf amygdala temporal_lobe) (STV 1.0 0.9091)) +(: cnet_partof_dcff6f525f (PartOf anabolism metabolism) (STV 1.0 0.9091)) +(: cnet_partof_a16f595b57 (PartOf anaheim california) (STV 1.0 0.9091)) +(: cnet_partof_5ccd6017d0 (PartOf anal_sphincter anus) (STV 1.0 0.9091)) +(: cnet_partof_77a87c6cf8 (PartOf anal_stage childhood) (STV 1.0 0.9091)) +(: cnet_partof_bd2b3749b4 (PartOf anaphase meiosis) (STV 1.0 0.9091)) +(: cnet_partof_8b97a6dd8a (PartOf anchor vessel) (STV 1.0 0.9091)) +(: cnet_partof_743ddced5e (PartOf anchorage alaska) (STV 1.0 0.9091)) +(: cnet_partof_b072df5e04 (PartOf anchorage seaport) (STV 1.0 0.9091)) +(: cnet_partof_a371e4baaa (PartOf anchovy_pear anchovy_pear) (STV 1.0 0.9091)) +(: cnet_partof_f76080bf51 (PartOf ancohuma ande) (STV 1.0 0.9091)) +(: cnet_partof_6eb585d42b (PartOf ancohuma bolivia) (STV 1.0 0.9091)) +(: cnet_partof_ff1ed310f0 (PartOf anconeous_muscle forearm) (STV 1.0 0.9091)) +(: cnet_partof_bb0b62ed83 (PartOf andalusia spain) (STV 1.0 0.9091)) +(: cnet_partof_17af801d16 (PartOf andaman_sea bay_of_bengal) (STV 1.0 0.9091)) +(: cnet_partof_c3b8072f4e (PartOf ande argentina) (STV 1.0 0.9091)) +(: cnet_partof_e577714106 (PartOf ande bolivia) (STV 1.0 0.9091)) +(: cnet_partof_d475944dab (PartOf ande chile) (STV 1.0 0.9091)) +(: cnet_partof_ccc7bc15e5 (PartOf ande colombia) (STV 1.0 0.9091)) +(: cnet_partof_a71d895360 (PartOf ande ecuador) (STV 1.0 0.9091)) +(: cnet_partof_b890636eaf (PartOf ande peru) (STV 1.0 0.9091)) +(: cnet_partof_4c627beb99 (PartOf andhra_pradesh india) (STV 1.0 0.9091)) +(: cnet_partof_91ce2254f4 (PartOf andorra europe) (STV 1.0 0.9091)) +(: cnet_partof_ec155dc847 (PartOf andorra iberian_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_1994fb69aa (PartOf aneroid_barometer altimeter) (STV 1.0 0.9091)) +(: cnet_partof_103cdd058b (PartOf angel venezuela) (STV 1.0 0.9091)) +(: cnet_partof_49d172ef5d (PartOf anglesey wale) (STV 1.0 0.9091)) +(: cnet_partof_4d6516fee1 (PartOf angola africa) (STV 1.0 0.9091)) +(: cnet_partof_69b4ad70a4 (PartOf angostura_bridge ciudad_bolivar) (STV 1.0 0.9091)) +(: cnet_partof_913371a87e (PartOf angstrom nanometer) (STV 1.0 0.9091)) +(: cnet_partof_b2866fbd97 (PartOf anguilla west_indy) (STV 1.0 0.9091)) +(: cnet_partof_a79e5515ca (PartOf animal ecology) (STV 1.0 0.9091)) +(: cnet_partof_64cee047ae (PartOf animal_leg biped) (STV 1.0 0.9091)) +(: cnet_partof_602349633c (PartOf animal_leg quadruped) (STV 1.0 0.9091)) +(: cnet_partof_adc72d2855 (PartOf anise anise) (STV 1.0 0.9091)) +(: cnet_partof_50a1d9bfcf (PartOf anjou france) (STV 1.0 0.9091)) +(: cnet_partof_8a704fde6d (PartOf ankara turkey) (STV 1.0 0.9091)) +(: cnet_partof_d12d2ef91f (PartOf ankle leg) (STV 1.0 0.9091)) +(: cnet_partof_6832c38a58 (PartOf anklebone ankle) (STV 1.0 0.9091)) +(: cnet_partof_729b7075b4 (PartOf ann_arbor michigan) (STV 1.0 0.9091)) +(: cnet_partof_f1e4942e1b (PartOf annaba algeria) (STV 1.0 0.9091)) +(: cnet_partof_6d26045d79 (PartOf annapolis maryland) (STV 1.0 0.9091)) +(: cnet_partof_4828cff76e (PartOf annapurna himalaya) (STV 1.0 0.9091)) +(: cnet_partof_bb242a04f5 (PartOf annapurna nepal) (STV 1.0 0.9091)) +(: cnet_partof_e913106798 (PartOf annex building) (STV 1.0 0.9091)) +(: cnet_partof_32a2402c4a (PartOf annulus partial_veil) (STV 1.0 0.9091)) +(: cnet_partof_6bd0805eab (PartOf annunciation march) (STV 1.0 0.9091)) +(: cnet_partof_5783833327 (PartOf anode electrolytic_cell) (STV 1.0 0.9091)) +(: cnet_partof_905c3d6eb9 (PartOf anode storage_battery) (STV 1.0 0.9091)) +(: cnet_partof_ddf4c08fdc (PartOf anode tube) (STV 1.0 0.9091)) +(: cnet_partof_4cf5f30086 (PartOf anode voltaic_cell) (STV 1.0 0.9091)) +(: cnet_partof_0b7bdfd47d (PartOf antalya turkey) (STV 1.0 0.9091)) +(: cnet_partof_739793959f (PartOf antananarivo madagascar) (STV 1.0 0.9091)) +(: cnet_partof_06d5425ae5 (PartOf antarctic_ocean antarctic) (STV 1.0 0.9091)) +(: cnet_partof_f6dcbe1052 (PartOf antarctic_ocean atlantic) (STV 1.0 0.9091)) +(: cnet_partof_4aca969c01 (PartOf antarctic_ocean indian_ocean) (STV 1.0 0.9091)) +(: cnet_partof_f6175f9f94 (PartOf antarctic_ocean pacific) (STV 1.0 0.9091)) +(: cnet_partof_7a8635f32d (PartOf antarctic_peninsula antarctica) (STV 1.0 0.9091)) +(: cnet_partof_5a016fea8f (PartOf antarctica antarctic) (STV 1.0 0.9091)) +(: cnet_partof_38d2991c18 (PartOf antenna radio) (STV 1.0 0.9091)) +(: cnet_partof_93f63c660c (PartOf antenna receiver) (STV 1.0 0.9091)) +(: cnet_partof_ee326665b5 (PartOf antenna transmitter) (STV 1.0 0.9091)) +(: cnet_partof_bb090109c9 (PartOf anterior_horn spinal_nerve_root) (STV 1.0 0.9091)) +(: cnet_partof_f2ee2d44c2 (PartOf anterior_pituitary pituitary) (STV 1.0 0.9091)) +(: cnet_partof_5affbfc9d4 (PartOf anteroom building) (STV 1.0 0.9091)) +(: cnet_partof_f7a223279c (PartOf anther stamen) (STV 1.0 0.9091)) +(: cnet_partof_a267129143 (PartOf anticlimax story) (STV 1.0 0.9091)) +(: cnet_partof_213bbf952c (PartOf antigenic_determinant antigen) (STV 1.0 0.9091)) +(: cnet_partof_75bd81883e (PartOf antigua antigua_and_barbuda) (STV 1.0 0.9091)) +(: cnet_partof_4121f4267f (PartOf antigua_and_barbuda caribbean) (STV 1.0 0.9091)) +(: cnet_partof_afc397f2c6 (PartOf antigua_and_barbuda leeward_island) (STV 1.0 0.9091)) +(: cnet_partof_9cf93948e4 (PartOf antille west_indy) (STV 1.0 0.9091)) +(: cnet_partof_dd4244b686 (PartOf antioch turkey) (STV 1.0 0.9091)) +(: cnet_partof_227469d38d (PartOf antiphrasis irony) (STV 1.0 0.9091)) +(: cnet_partof_df5dc83282 (PartOf antiquark hadron) (STV 1.0 0.9091)) +(: cnet_partof_00149578bd (PartOf antiquity history) (STV 1.0 0.9091)) +(: cnet_partof_e13481f91b (PartOf antistrophe lyric) (STV 1.0 0.9091)) +(: cnet_partof_ee2e25ff3a (PartOf antler deer) (STV 1.0 0.9091)) +(: cnet_partof_77f33a3cf8 (PartOf antler moose) (STV 1.0 0.9091)) +(: cnet_partof_8bae91cb11 (PartOf antofagasta chile) (STV 1.0 0.9091)) +(: cnet_partof_8499088fe2 (PartOf antonine_wall scotland) (STV 1.0 0.9091)) +(: cnet_partof_3f1af36f1c (PartOf antwerpen belgium) (STV 1.0 0.9091)) +(: cnet_partof_24b387a626 (PartOf anus body) (STV 1.0 0.9091)) +(: cnet_partof_3a8ab72176 (PartOf anus human_body) (STV 1.0 0.9091)) +(: cnet_partof_e5f912b141 (PartOf anus normal_human_body) (STV 1.0 0.9339)) +(: cnet_partof_662fa19fda (PartOf anus rectum) (STV 1.0 0.9091)) +(: cnet_partof_0c9292f62f (PartOf anvil forge) (STV 1.0 0.9091)) +(: cnet_partof_3f77e01c7b (PartOf anzio italy) (STV 1.0 0.9091)) +(: cnet_partof_23a4c8e105 (PartOf apalachicola florida) (STV 1.0 0.9091)) +(: cnet_partof_73d796ffbe (PartOf apartment apartment_building) (STV 1.0 0.9091)) +(: cnet_partof_db5116f4d0 (PartOf apeldoorn netherland) (STV 1.0 0.9091)) +(: cnet_partof_9fd91b817d (PartOf apennine italy) (STV 1.0 0.9091)) +(: cnet_partof_d5d21e8eec (PartOf aperture camera) (STV 1.0 0.9091)) +(: cnet_partof_b527d00c30 (PartOf aperture telescope) (STV 1.0 0.9091)) +(: cnet_partof_098e89d568 (PartOf aperture eye) (STV 1.0 0.9091)) +(: cnet_partof_850cd1eebd (PartOf apex celestial_sphere) (STV 1.0 0.9091)) +(: cnet_partof_013a29acc4 (PartOf apia samoa) (STV 1.0 0.9091)) +(: cnet_partof_5a0570290d (PartOf apoapsis orbit) (STV 1.0 0.9091)) +(: cnet_partof_8de36fb17c (PartOf apocrypha old_testament) (STV 1.0 0.9091)) +(: cnet_partof_e16025d254 (PartOf apodeme arthropod) (STV 1.0 0.9091)) +(: cnet_partof_6e707ee06a (PartOf apophysis vertebra) (STV 1.0 0.9091)) +(: cnet_partof_776937cea8 (PartOf appalachia appalachian) (STV 1.0 0.9091)) +(: cnet_partof_0d640b63ca (PartOf appalachian east) (STV 1.0 0.9091)) +(: cnet_partof_24e42097a1 (PartOf appendicular_skeleton endoskeleton) (STV 1.0 0.9091)) +(: cnet_partof_8a94dc4496 (PartOf appendix cecum) (STV 1.0 0.9091)) +(: cnet_partof_2a812ed4e8 (PartOf appian_way italy) (STV 1.0 0.9091)) +(: cnet_partof_f4b5027eb0 (PartOf applause ovation) (STV 1.0 0.9091)) +(: cnet_partof_da23673b54 (PartOf apple apple) (STV 1.0 0.9091)) +(: cnet_partof_5c82aa659a (PartOf appleton wisconsin) (STV 1.0 0.9091)) +(: cnet_partof_ee9a1ae471 (PartOf appleton_layer ionosphere) (STV 1.0 0.9091)) +(: cnet_partof_e00ea4ed7c (PartOf approach_path traffic_pattern) (STV 1.0 0.9091)) +(: cnet_partof_25236e65ff (PartOf apricot common_apricot) (STV 1.0 0.9091)) +(: cnet_partof_bfbe1e9e30 (PartOf april gregorian_calendar) (STV 1.0 0.9091)) +(: cnet_partof_74397951cb (PartOf april_fool april) (STV 1.0 0.9091)) +(: cnet_partof_4930514cf1 (PartOf apron airfield) (STV 1.0 0.9091)) +(: cnet_partof_45e933e0b3 (PartOf apron fairway) (STV 1.0 0.9091)) +(: cnet_partof_d25c62421d (PartOf apron_string apron) (STV 1.0 0.9091)) +(: cnet_partof_bef23dc7c6 (PartOf apse church) (STV 1.0 0.9091)) +(: cnet_partof_f27946b709 (PartOf aqaba jordan) (STV 1.0 0.9091)) +(: cnet_partof_c8d95563ba (PartOf aquarius zodiac) (STV 1.0 0.9091)) +(: cnet_partof_3a59c67f06 (PartOf aquila abruzzi) (STV 1.0 0.9091)) +(: cnet_partof_8fe4ad46a0 (PartOf aquitaine france) (STV 1.0 0.9091)) +(: cnet_partof_b856e4535f (PartOf arabian_desert arabian_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_0e1c789004 (PartOf arabian_peninsula asia) (STV 1.0 0.9091)) +(: cnet_partof_8d0b8eaded (PartOf arabian_sea indian_ocean) (STV 1.0 0.9091)) +(: cnet_partof_b58e05d3e0 (PartOf arachnoid leptomeninge) (STV 1.0 0.9091)) +(: cnet_partof_3fdaaa9d3c (PartOf arafura_sea pacific) (STV 1.0 0.9091)) +(: cnet_partof_bf9349d90c (PartOf aragon spain) (STV 1.0 0.9091)) +(: cnet_partof_e9cbe3516f (PartOf araguaia brazil) (STV 1.0 0.9091)) +(: cnet_partof_d5dd1b5db4 (PartOf aran_island galway_bay) (STV 1.0 0.9091)) +(: cnet_partof_90e87f8d0c (PartOf aran_island ireland) (STV 1.0 0.9091)) +(: cnet_partof_32eba628c8 (PartOf ararat turkey) (STV 1.0 0.9091)) +(: cnet_partof_77588fa7a4 (PartOf ara armenia) (STV 1.0 0.9091)) +(: cnet_partof_8ae2ef4d00 (PartOf ara turkey) (STV 1.0 0.9091)) +(: cnet_partof_c8dde7f602 (PartOf arauca colombia) (STV 1.0 0.9091)) +(: cnet_partof_fcdcb69e5c (PartOf arauca venezuela) (STV 1.0 0.9091)) +(: cnet_partof_04401d4815 (PartOf arbitration_clause contract) (STV 1.0 0.9091)) +(: cnet_partof_a3b58d39fc (PartOf arc circle) (STV 1.0 0.9091)) +(: cnet_partof_91bb2ded30 (PartOf arc sector) (STV 1.0 0.9091)) +(: cnet_partof_6af5a14aff (PartOf arcadia greece) (STV 1.0 0.9091)) +(: cnet_partof_29eb1ca55e (PartOf arch aqueduct) (STV 1.0 0.9091)) +(: cnet_partof_1707a33e12 (PartOf arch arcade) (STV 1.0 0.9091)) +(: cnet_partof_5f24810398 (PartOf arch bridge) (STV 1.0 0.9091)) +(: cnet_partof_1060c9fe08 (PartOf arch wall) (STV 1.0 0.9091)) +(: cnet_partof_7b84dda664 (PartOf archean precambrian) (STV 1.0 0.9091)) +(: cnet_partof_83e6013374 (PartOf archenteron gastrula) (STV 1.0 0.9091)) +(: cnet_partof_30178d5408 (PartOf arche_national_park utah) (STV 1.0 0.9091)) +(: cnet_partof_263c2c6443 (PartOf architectonic architecture) (STV 1.0 0.9091)) +(: cnet_partof_ffa0bbe10f (PartOf architrave entablature) (STV 1.0 0.9091)) +(: cnet_partof_47d4f405a8 (PartOf arctic_archipelago canada) (STV 1.0 0.9091)) +(: cnet_partof_19d0d987c3 (PartOf arcuate_artery foot) (STV 1.0 0.9091)) +(: cnet_partof_937eba4c5f (PartOf arcuate_artery_of_kidney kidney) (STV 1.0 0.9091)) +(: cnet_partof_a5b294b0b9 (PartOf arcuate_vein_of_kidney kidney) (STV 1.0 0.9091)) +(: cnet_partof_daad4b9e15 (PartOf ardenne champagne) (STV 1.0 0.9091)) +(: cnet_partof_9150dbe270 (PartOf are hectare) (STV 1.0 0.9091)) +(: cnet_partof_f6afea053e (PartOf area_of_cardiac_dullness thorax) (STV 1.0 0.9091)) +(: cnet_partof_cdb555df7e (PartOf areola breast) (STV 1.0 0.9091)) +(: cnet_partof_2bd49d7ff7 (PartOf areopagus athen) (STV 1.0 0.9091)) +(: cnet_partof_56d14e8ac7 (PartOf arequipa peru) (STV 1.0 0.9091)) +(: cnet_partof_054c6bddd7 (PartOf argentina south_america) (STV 1.0 0.9091)) +(: cnet_partof_04e0434ae6 (PartOf argo greece) (STV 1.0 0.9091)) +(: cnet_partof_52cc275b9a (PartOf argun_river asia) (STV 1.0 0.9091)) +(: cnet_partof_0764bfaa1f (PartOf arhus denmark) (STV 1.0 0.9091)) +(: cnet_partof_4752e9765f (PartOf aria opera) (STV 1.0 0.9091)) +(: cnet_partof_ed95207480 (PartOf ariana tunisia) (STV 1.0 0.9091)) +(: cnet_partof_7fddb2f3cb (PartOf ary zodiac) (STV 1.0 0.9091)) +(: cnet_partof_e16160ab81 (PartOf arizona southwest) (STV 1.0 0.9091)) +(: cnet_partof_3d7c9fae0f (PartOf arizona united_state) (STV 1.0 0.9091)) +(: cnet_partof_d14c8a61d9 (PartOf arkansa united_state) (STV 1.0 0.9091)) +(: cnet_partof_e18c1f85a0 (PartOf arkansa arkansa) (STV 1.0 0.9091)) +(: cnet_partof_0a08c6a819 (PartOf arkansa colorado) (STV 1.0 0.9091)) +(: cnet_partof_f21ac1aeb0 (PartOf arkansa kansa) (STV 1.0 0.9091)) +(: cnet_partof_5c42755e9b (PartOf arkansa oklahoma) (STV 1.0 0.9091)) +(: cnet_partof_1ef6faefd1 (PartOf arlington texa) (STV 1.0 0.9091)) +(: cnet_partof_c60c487f03 (PartOf arm body) (STV 1.0 0.9339)) +(: cnet_partof_8968a0a2fc (PartOf arm armchair) (STV 1.0 0.9091)) +(: cnet_partof_b5595fb680 (PartOf arm homo) (STV 1.0 0.9091)) +(: cnet_partof_9b4c97cc11 (PartOf arm_bone arm) (STV 1.0 0.9091)) +(: cnet_partof_4019f85f01 (PartOf arm_bone endoskeleton) (STV 1.0 0.9091)) +(: cnet_partof_113197779e (PartOf armature electric_motor) (STV 1.0 0.9091)) +(: cnet_partof_ca3e7fa228 (PartOf armature electromagnet) (STV 1.0 0.9091)) +(: cnet_partof_3938c33f15 (PartOf armed_force_day may) (STV 1.0 0.9091)) +(: cnet_partof_12dbd1eafb (PartOf armenia transcaucasia) (STV 1.0 0.9091)) +(: cnet_partof_3c39beafdc (PartOf armenian_church armenia) (STV 1.0 0.9091)) +(: cnet_partof_5c140c9e9d (PartOf armet body_armor) (STV 1.0 0.9091)) +(: cnet_partof_0a4091b4cf (PartOf armhole garment) (STV 1.0 0.9091)) +(: cnet_partof_08fa447eaa (PartOf armpit shoulder) (STV 1.0 0.9091)) +(: cnet_partof_ead2c0f6c9 (PartOf armrest car_door) (STV 1.0 0.9091)) +(: cnet_partof_ccf4c25e10 (PartOf army_high_performance_computing_research_center united_state_army) (STV 1.0 0.9091)) +(: cnet_partof_502451e726 (PartOf army_intelligence united_state_army) (STV 1.0 0.9091)) +(: cnet_partof_ac3f5fc6b0 (PartOf army_national_guard united_state_army) (STV 1.0 0.9091)) +(: cnet_partof_1f0a67d9d2 (PartOf arnhem netherland) (STV 1.0 0.9091)) +(: cnet_partof_f37f724ec6 (PartOf arno italy) (STV 1.0 0.9091)) +(: cnet_partof_9bdf378f03 (PartOf arrester aircraft_carrier) (STV 1.0 0.9091)) +(: cnet_partof_6fadec1896 (PartOf arrow bow_and_arrow) (STV 1.0 0.9091)) +(: cnet_partof_8cbf872add (PartOf arrowhead arrow) (STV 1.0 0.9091)) +(: cnet_partof_b3c753d570 (PartOf arthromere arthropod) (STV 1.0 0.9091)) +(: cnet_partof_084bfe5810 (PartOf artichoke artichoke) (STV 1.0 0.9091)) +(: cnet_partof_5d6e9cb60d (PartOf artichoke_heart artichoke) (STV 1.0 0.9091)) +(: cnet_partof_55cac14dd1 (PartOf article document) (STV 1.0 0.9091)) +(: cnet_partof_9b98d2197f (PartOf article_of_incorporation charter) (STV 1.0 0.9091)) +(: cnet_partof_21b54e8e43 (PartOf articular_muscle joint) (STV 1.0 0.9091)) +(: cnet_partof_990db4e41a (PartOf articulatory_system body) (STV 1.0 0.9091)) +(: cnet_partof_702976acb5 (PartOf artificial_respiration cardiopulmonary_resuscitation) (STV 1.0 0.9091)) +(: cnet_partof_0193a56a3d (PartOf artillery battery) (STV 1.0 0.9091)) +(: cnet_partof_0028e9bd5a (PartOf artois france) (STV 1.0 0.9091)) +(: cnet_partof_75f63f6693 (PartOf artwork publication) (STV 1.0 0.9091)) +(: cnet_partof_d7d02c9fd1 (PartOf aruba netherland_antille) (STV 1.0 0.9091)) +(: cnet_partof_7dc8cf63b3 (PartOf arum cuckoopint) (STV 1.0 0.9091)) +(: cnet_partof_80087c2392 (PartOf arytenoid larynx) (STV 1.0 0.9091)) +(: cnet_partof_d143356ba6 (PartOf asahikawa hokkaido) (STV 1.0 0.9091)) +(: cnet_partof_35e5b580b0 (PartOf asahikawa japan) (STV 1.0 0.9091)) +(: cnet_partof_b743c42ea4 (PartOf asama honshu) (STV 1.0 0.9091)) +(: cnet_partof_fd67386a2e (PartOf asama japan) (STV 1.0 0.9091)) +(: cnet_partof_b8390e4bc7 (PartOf asarh hindu_calendar) (STV 1.0 0.9091)) +(: cnet_partof_ce4c5d696a (PartOf ascending_artery ascending_colon) (STV 1.0 0.9091)) +(: cnet_partof_ac1a609f93 (PartOf ascending_colon large_intestine) (STV 1.0 0.9091)) +(: cnet_partof_ced74edeff (PartOf ascii_character american_standard_code_for_information_interchange) (STV 1.0 0.9091)) +(: cnet_partof_5a65bcdf25 (PartOf ascocarp ascomycete) (STV 1.0 0.9091)) +(: cnet_partof_93859b929c (PartOf ascus ascomycete) (STV 1.0 0.9091)) +(: cnet_partof_c8c72280fd (PartOf ash_key ash) (STV 1.0 0.9091)) +(: cnet_partof_22d977b8f7 (PartOf ash_wednesday lent) (STV 1.0 0.9091)) +(: cnet_partof_5893048a25 (PartOf asheville north_carolina) (STV 1.0 0.9091)) +(: cnet_partof_6d79fdd6d8 (PartOf ashkhabad turkmenistan) (STV 1.0 0.9091)) +(: cnet_partof_7a56229fe1 (PartOf asia eurasia) (STV 1.0 0.9091)) +(: cnet_partof_e1d60875c8 (PartOf asia_minor asia) (STV 1.0 0.9091)) +(: cnet_partof_1397b14160 (PartOf asian_country asia) (STV 1.0 0.9091)) +(: cnet_partof_7edfe657fa (PartOf asian_russia asia) (STV 1.0 0.9091)) +(: cnet_partof_896720d461 (PartOf asin hindu_calendar) (STV 1.0 0.9091)) +(: cnet_partof_754944e7e8 (PartOf asmara eritrea) (STV 1.0 0.9091)) +(: cnet_partof_727926be74 (PartOf asparagus asparagus) (STV 1.0 0.9091)) +(: cnet_partof_3c5b00e293 (PartOf asper kuru) (STV 1.0 0.9091)) +(: cnet_partof_8f9d1a1d32 (PartOf assam india) (STV 1.0 0.9091)) +(: cnet_partof_052da716f7 (PartOf assault attack) (STV 1.0 0.9091)) +(: cnet_partof_cbb3aa1de5 (PartOf assumption august) (STV 1.0 0.9091)) +(: cnet_partof_fc365a71b5 (PartOf assur assyria) (STV 1.0 0.9091)) +(: cnet_partof_cc3222154e (PartOf assur iraq) (STV 1.0 0.9091)) +(: cnet_partof_03b433af3a (PartOf assyria iraq) (STV 1.0 0.9091)) +(: cnet_partof_f2a6dd5564 (PartOf assyria mesopotamia) (STV 1.0 0.9091)) +(: cnet_partof_a78f62ca66 (PartOf astatic_coil astatic_galvanometer) (STV 1.0 0.9091)) +(: cnet_partof_6d5851ddc5 (PartOf asterion cranium) (STV 1.0 0.9091)) +(: cnet_partof_59fa8ca028 (PartOf asteroid_belt interplanetary_space) (STV 1.0 0.9091)) +(: cnet_partof_0121e252b4 (PartOf asthenosphere crust) (STV 1.0 0.9091)) +(: cnet_partof_a128c203d9 (PartOf astrakhan russia) (STV 1.0 0.9091)) +(: cnet_partof_cbf2479bf2 (PartOf astrocyte astroglia) (STV 1.0 0.9091)) +(: cnet_partof_8a32ebe238 (PartOf asuncion paraguay) (STV 1.0 0.9091)) +(: cnet_partof_5b2cece06f (PartOf aswan egypt) (STV 1.0 0.9091)) +(: cnet_partof_ed40da5e11 (PartOf aswan_high_dam egypt) (STV 1.0 0.9091)) +(: cnet_partof_eb006f2b29 (PartOf asynclitism parturiency) (STV 1.0 0.9091)) +(: cnet_partof_587f794878 (PartOf at kip) (STV 1.0 0.9091)) +(: cnet_partof_e5518e0a3b (PartOf atacama_desert chile) (STV 1.0 0.9091)) +(: cnet_partof_3525c59270 (PartOf ataxia spinocerebellar_disorder) (STV 1.0 0.9091)) +(: cnet_partof_79c40b9948 (PartOf athen georgia) (STV 1.0 0.9091)) +(: cnet_partof_c0fb83ded7 (PartOf athen greece) (STV 1.0 0.9091)) +(: cnet_partof_053c3f0d15 (PartOf athen ohio) (STV 1.0 0.9091)) +(: cnet_partof_d9a4465dd8 (PartOf atho greece) (STV 1.0 0.9091)) +(: cnet_partof_7e3039fa31 (PartOf atlanta american_civil_war) (STV 1.0 0.9091)) +(: cnet_partof_6a7a9863a9 (PartOf atlanta georgia) (STV 1.0 0.9091)) +(: cnet_partof_5813e89cdd (PartOf atlantic_city new_jersey) (STV 1.0 0.9091)) +(: cnet_partof_500028525c (PartOf atlantic_coast atlantic) (STV 1.0 0.9091)) +(: cnet_partof_508331cf01 (PartOf atlantic_salmon atlantic_salmon) (STV 1.0 0.9091)) +(: cnet_partof_da11c7de3c (PartOf atla_mountain algeria) (STV 1.0 0.9091)) +(: cnet_partof_7516706f37 (PartOf atla_mountain morocco) (STV 1.0 0.9091)) +(: cnet_partof_469d736d5b (PartOf atla_mountain tunisia) (STV 1.0 0.9091)) +(: cnet_partof_e70ceec31a (PartOf atmosphere earth) (STV 1.0 0.9091)) +(: cnet_partof_29363973fd (PartOf atom molecule) (STV 1.0 0.9454)) +(: cnet_partof_f8b7b0e2b7 (PartOf atom chemical_element) (STV 1.0 0.9091)) +(: cnet_partof_b11bbd7ef5 (PartOf atomic_energy_commission executive_branch) (STV 1.0 0.9091)) +(: cnet_partof_a6993c8328 (PartOf atomic_theory nuclear_physic) (STV 1.0 0.9091)) +(: cnet_partof_acc6734f0b (PartOf atomic_warhead nuclear_weapon) (STV 1.0 0.9091)) +(: cnet_partof_a91b5bad4f (PartOf attic house) (STV 1.0 0.9091)) +(: cnet_partof_5fcea52db7 (PartOf attic entablature) (STV 1.0 0.9091)) +(: cnet_partof_0222e1e8ca (PartOf attica greece) (STV 1.0 0.9091)) +(: cnet_partof_30e281b00d (PartOf attosecond femtosecond) (STV 1.0 0.9091)) +(: cnet_partof_e0fad20b33 (PartOf auckland new_zealand) (STV 1.0 0.9091)) +(: cnet_partof_00476fd8ee (PartOf audio television) (STV 1.0 0.9091)) +(: cnet_partof_2222ec2ff3 (PartOf auditorium concert_hall) (STV 1.0 0.9091)) +(: cnet_partof_de3ba80f7e (PartOf auditory_apparatus auditory_system) (STV 1.0 0.9091)) +(: cnet_partof_a605305d73 (PartOf auditory_meatus external_ear) (STV 1.0 0.9091)) +(: cnet_partof_d2fbcffa9d (PartOf august gregorian_calendar) (STV 1.0 0.9091)) +(: cnet_partof_316e37304c (PartOf augusta georgia) (STV 1.0 0.9091)) +(: cnet_partof_4f7cce5719 (PartOf augusta maine) (STV 1.0 0.9091)) +(: cnet_partof_8a583319e1 (PartOf aunt family) (STV 1.0 0.9454)) +(: cnet_partof_c50c4454f0 (PartOf aurar icelandic_krona) (STV 1.0 0.9091)) +(: cnet_partof_5432309bb2 (PartOf aureole nimbus) (STV 1.0 0.9091)) +(: cnet_partof_76805d400b (PartOf auricle atrium_cordis) (STV 1.0 0.9091)) +(: cnet_partof_424bdf45a5 (PartOf auricle external_ear) (STV 1.0 0.9091)) +(: cnet_partof_354753ff14 (PartOf auricula atrium_cordis) (STV 1.0 0.9091)) +(: cnet_partof_026a81e9b8 (PartOf auricular_artery ear) (STV 1.0 0.9091)) +(: cnet_partof_dedabbb018 (PartOf auriculare auditory_meatus) (STV 1.0 0.9091)) +(: cnet_partof_6003ba6d06 (PartOf auschwitz poland) (STV 1.0 0.9091)) +(: cnet_partof_10e91d68c6 (PartOf austerlitz napoleonic_war) (STV 1.0 0.9091)) +(: cnet_partof_1994ade8d2 (PartOf austerlitz czech_republic) (STV 1.0 0.9091)) +(: cnet_partof_d9e1579ed3 (PartOf austin texa) (STV 1.0 0.9339)) +(: cnet_partof_a08329781b (PartOf australasia pacific) (STV 1.0 0.9091)) +(: cnet_partof_888bec0395 (PartOf australia australia) (STV 1.0 0.9091)) +(: cnet_partof_3b2d101819 (PartOf australia eastern_hemisphere) (STV 1.0 0.9091)) +(: cnet_partof_2324dd4c25 (PartOf australia southern_hemisphere) (STV 1.0 0.9091)) +(: cnet_partof_890811f7f2 (PartOf australian_alp australia) (STV 1.0 0.9091)) +(: cnet_partof_8e68fcc675 (PartOf australian_alp great_dividing_range) (STV 1.0 0.9091)) +(: cnet_partof_f458c7b002 (PartOf australian_desert australia) (STV 1.0 0.9091)) +(: cnet_partof_05735970c3 (PartOf australian_state australia) (STV 1.0 0.9091)) +(: cnet_partof_1190ba9ee9 (PartOf austria europe) (STV 1.0 0.9091)) +(: cnet_partof_b9a0d0d0b0 (PartOf austria_hungary europe) (STV 1.0 0.9091)) +(: cnet_partof_d4dbc5b773 (PartOf austronesia pacific) (STV 1.0 0.9091)) +(: cnet_partof_97ba9933d5 (PartOf auto_accessory car) (STV 1.0 0.9091)) +(: cnet_partof_9ee538986b (PartOf autoimmunity autoimmune_disease) (STV 1.0 0.9091)) +(: cnet_partof_4a2e6fffa0 (PartOf automobile_engine car) (STV 1.0 0.9091)) +(: cnet_partof_132521400f (PartOf automobile_horn car) (STV 1.0 0.9091)) +(: cnet_partof_2c276cd06a (PartOf autonomic_ganglion autonomic_nervous_system) (STV 1.0 0.9091)) +(: cnet_partof_c9635c8128 (PartOf autonomic_nervous_system nervous_system) (STV 1.0 0.9091)) +(: cnet_partof_7f111c3dbf (PartOf autumnal_equinox fall) (STV 1.0 0.9091)) +(: cnet_partof_54836d5336 (PartOf autumnal_equinox september) (STV 1.0 0.9091)) +(: cnet_partof_f3a3c4c765 (PartOf auvergne france) (STV 1.0 0.9091)) +(: cnet_partof_9f237e0c99 (PartOf avignon france) (STV 1.0 0.9091)) +(: cnet_partof_4b409dfe2f (PartOf avo pataca) (STV 1.0 0.9091)) +(: cnet_partof_9e4fe3cb15 (PartOf avocado avocado) (STV 1.0 0.9091)) +(: cnet_partof_4ed21cbfe3 (PartOf avoirdupois_unit avoirdupois) (STV 1.0 0.9091)) +(: cnet_partof_9d7eb55448 (PartOf avoirdupois_unit british_imperial_system) (STV 1.0 0.9091)) +(: cnet_partof_d7558a607a (PartOf avon england) (STV 1.0 0.9091)) +(: cnet_partof_44999d2b1f (PartOf ax_handle ax) (STV 1.0 0.9091)) +(: cnet_partof_cdfc91e64b (PartOf ax_head ax) (STV 1.0 0.9091)) +(: cnet_partof_e816af7a86 (PartOf axial_skeleton endoskeleton) (STV 1.0 0.9091)) +(: cnet_partof_a61d23d8a5 (PartOf axillary_artery armpit) (STV 1.0 0.9091)) +(: cnet_partof_1ccde3867e (PartOf axle wheeled_vehicle) (STV 1.0 0.9091)) +(: cnet_partof_73c916feab (PartOf axletree carriage) (STV 1.0 0.9091)) +(: cnet_partof_11cf01ceff (PartOf axletree cart) (STV 1.0 0.9091)) +(: cnet_partof_16454c6a43 (PartOf axletree wagon) (STV 1.0 0.9091)) +(: cnet_partof_285462d93e (PartOf axolemma medullary_sheath) (STV 1.0 0.9091)) +(: cnet_partof_6c6b5cab28 (PartOf axon nerve_cell) (STV 1.0 0.9091)) +(: cnet_partof_2f40f2612c (PartOf azerbaijan transcaucasia) (STV 1.0 0.9091)) +(: cnet_partof_20570186c0 (PartOf azore portugal) (STV 1.0 0.9091)) +(: cnet_partof_34185f8a2d (PartOf babassu_nut babassu) (STV 1.0 0.9091)) +(: cnet_partof_d3095863ce (PartOf babylon mesopotamia) (STV 1.0 0.9091)) +(: cnet_partof_cee0d0d057 (PartOf babylonia iraq) (STV 1.0 0.9091)) +(: cnet_partof_87de224a1b (PartOf babylonia mesopotamia) (STV 1.0 0.9091)) +(: cnet_partof_15acdc79fb (PartOf baccalaureate commencement) (STV 1.0 0.9091)) +(: cnet_partof_9d5f60412b (PartOf back car_seat) (STV 1.0 0.9091)) +(: cnet_partof_26983635d2 (PartOf back chair) (STV 1.0 0.9091)) +(: cnet_partof_7b5369048c (PartOf back torso) (STV 1.0 0.9091)) +(: cnet_partof_0351e18150 (PartOf backbeat rock_n_roll) (STV 1.0 0.9091)) +(: cnet_partof_2386c28566 (PartOf backbone book) (STV 1.0 0.9091)) +(: cnet_partof_0561952bab (PartOf backbone net) (STV 1.0 0.9091)) +(: cnet_partof_3a0b21e061 (PartOf backing framework) (STV 1.0 0.9091)) +(: cnet_partof_b677b4d5c0 (PartOf backplate cuirass) (STV 1.0 0.9091)) +(: cnet_partof_98fdd2e611 (PartOf backspace_key typewriter_keyboard) (STV 1.0 0.9091)) +(: cnet_partof_eefe074bc3 (PartOf bacon_rind bacon) (STV 1.0 0.9091)) +(: cnet_partof_dbb96769a9 (PartOf bad_land nebraska) (STV 1.0 0.9091)) +(: cnet_partof_87523accd2 (PartOf bad_land south_dakota) (STV 1.0 0.9091)) +(: cnet_partof_b49aee7ef5 (PartOf badland_national_park south_dakota) (STV 1.0 0.9091)) +(: cnet_partof_f4b14e2ba1 (PartOf baffin_island arctic_ocean) (STV 1.0 0.9091)) +(: cnet_partof_7021d6fb51 (PartOf baffin_island canada) (STV 1.0 0.9091)) +(: cnet_partof_3f0bea085a (PartOf baghdad iraq) (STV 1.0 0.9091)) +(: cnet_partof_75a8a2013f (PartOf bahama caribbean) (STV 1.0 0.9091)) +(: cnet_partof_336b75de5e (PartOf bahama west_indy) (STV 1.0 0.9091)) +(: cnet_partof_957216b108 (PartOf bahrain asia) (STV 1.0 0.9091)) +(: cnet_partof_317676044d (PartOf bahrain gulf_state) (STV 1.0 0.9091)) +(: cnet_partof_7d1456fc3f (PartOf bahrain persian_gulf) (STV 1.0 0.9091)) +(: cnet_partof_4e3efe9f70 (PartOf baisakh hindu_calendar) (STV 1.0 0.9091)) +(: cnet_partof_f91b95e1ee (PartOf bait trap) (STV 1.0 0.9091)) +(: cnet_partof_59aa7a265f (PartOf baiza riyal_omani) (STV 1.0 0.9091)) +(: cnet_partof_671cc1f5bc (PartOf bakersfield california) (STV 1.0 0.9091)) +(: cnet_partof_f9f472152b (PartOf baku azerbaijan) (STV 1.0 0.9091)) +(: cnet_partof_3a3e79bca8 (PartOf balance account) (STV 1.0 0.9091)) +(: cnet_partof_4e29fc8e8a (PartOf balance_wheel timepiece) (STV 1.0 0.9091)) +(: cnet_partof_b074ae549b (PartOf balaton hungary) (STV 1.0 0.9091)) +(: cnet_partof_c0d15a01e7 (PartOf balearic_island spain) (STV 1.0 0.9091)) +(: cnet_partof_5c662100c6 (PartOf bali indonesia) (STV 1.0 0.9091)) +(: cnet_partof_4065677b0d (PartOf balk pool_table) (STV 1.0 0.9091)) +(: cnet_partof_abaefa53d9 (PartOf balkan_country balkan_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_8b25c0cbae (PartOf balkan_peninsula europe) (STV 1.0 0.9091)) +(: cnet_partof_e19c7edfc6 (PartOf balkan_war balkan_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_97d1a16b9f (PartOf balkan balkan_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_4861f983e2 (PartOf ball hand) (STV 1.0 0.9091)) +(: cnet_partof_fa2d3466d6 (PartOf ball sole) (STV 1.0 0.9091)) +(: cnet_partof_261dcde411 (PartOf ball_field ballpark) (STV 1.0 0.9091)) +(: cnet_partof_b63be4b27c (PartOf ballistic_missile_defense_organization department_of_defense) (STV 1.0 0.9091)) +(: cnet_partof_3b76986b45 (PartOf ballistocardiogram checkup) (STV 1.0 0.9091)) +(: cnet_partof_3208fc70e4 (PartOf ballistocardiograph cardiac_monitor) (STV 1.0 0.9091)) +(: cnet_partof_1059770227 (PartOf balmoral_castle scotland) (STV 1.0 0.9091)) +(: cnet_partof_1c6031bbf1 (PartOf baltic_state europe) (STV 1.0 0.9091)) +(: cnet_partof_06678add04 (PartOf baltimore maryland) (STV 1.0 0.9091)) +(: cnet_partof_ce4d08b45b (PartOf baluster bannister) (STV 1.0 0.9091)) +(: cnet_partof_184c210add (PartOf bam iran) (STV 1.0 0.9091)) +(: cnet_partof_d9f12549c9 (PartOf bamako mali) (STV 1.0 0.9091)) +(: cnet_partof_6fc6a9fba2 (PartOf bamboo_shoot common_bamboo) (STV 1.0 0.9091)) +(: cnet_partof_981ac358cd (PartOf ban leu) (STV 1.0 0.9091)) +(: cnet_partof_3a946f74cd (PartOf banana dwarf_banana) (STV 1.0 0.9091)) +(: cnet_partof_183a669cbe (PartOf banana edible_banana) (STV 1.0 0.9091)) +(: cnet_partof_c005ba32f1 (PartOf band garment) (STV 1.0 0.9091)) +(: cnet_partof_75dcb6e0f1 (PartOf bandung java) (STV 1.0 0.9091)) +(: cnet_partof_01f40595bd (PartOf baneberry baneberry) (STV 1.0 0.9091)) +(: cnet_partof_7ae0dfff51 (PartOf banff alberta) (STV 1.0 0.9091)) +(: cnet_partof_f9e73e659a (PartOf bangalore india) (STV 1.0 0.9091)) +(: cnet_partof_b4a9509993 (PartOf bangkok thailand) (STV 1.0 0.9091)) +(: cnet_partof_594be9fc91 (PartOf bangladesh asia) (STV 1.0 0.9091)) +(: cnet_partof_ad8318aac6 (PartOf bangor maine) (STV 1.0 0.9091)) +(: cnet_partof_1ac25069b4 (PartOf bangor northern_ireland) (STV 1.0 0.9091)) +(: cnet_partof_2aedf1e74d (PartOf bangor wale) (STV 1.0 0.9091)) +(: cnet_partof_1b186c5e99 (PartOf bangui central_african_republic) (STV 1.0 0.9091)) +(: cnet_partof_7b3774e04d (PartOf banjul gambia) (STV 1.0 0.9091)) +(: cnet_partof_c58157a405 (PartOf bannister balcony) (STV 1.0 0.9091)) +(: cnet_partof_6f99cc989c (PartOf baptist_denomination baptist_church) (STV 1.0 0.9091)) +(: cnet_partof_f8542d3501 (PartOf bar goal) (STV 1.0 0.9091)) +(: cnet_partof_61371a9db1 (PartOf bar horizontal_bar) (STV 1.0 0.9091)) +(: cnet_partof_2c7e88099f (PartOf bar parallel_bar) (STV 1.0 0.9091)) +(: cnet_partof_db405d9dde (PartOf bar court) (STV 1.0 0.9091)) +(: cnet_partof_68800eb6bd (PartOf barb vane) (STV 1.0 0.9091)) +(: cnet_partof_ef64a93e7e (PartOf barb arrowhead) (STV 1.0 0.9091)) +(: cnet_partof_cf3e4d74e4 (PartOf barb barbed_wire) (STV 1.0 0.9091)) +(: cnet_partof_0b8f4857e2 (PartOf barb hook) (STV 1.0 0.9091)) +(: cnet_partof_5c3ef00817 (PartOf barb spear) (STV 1.0 0.9091)) +(: cnet_partof_e8a9d650a2 (PartOf barbado barbado) (STV 1.0 0.9091)) +(: cnet_partof_6c110a1416 (PartOf barbado caribbean) (STV 1.0 0.9091)) +(: cnet_partof_43cff72838 (PartOf barbado lesser_antille) (STV 1.0 0.9091)) +(: cnet_partof_ca3ee87c93 (PartOf barbado_gooseberry barbado_gooseberry) (STV 1.0 0.9091)) +(: cnet_partof_4cd2ede81b (PartOf barbary africa) (STV 1.0 0.9091)) +(: cnet_partof_e71e3db0cc (PartOf barbary_coast barbary) (STV 1.0 0.9091)) +(: cnet_partof_48c5355c4e (PartOf barber_chair barbershop) (STV 1.0 0.9091)) +(: cnet_partof_f4060f83f7 (PartOf barbuda antigua_and_barbuda) (STV 1.0 0.9091)) +(: cnet_partof_592e9aa511 (PartOf barcelona spain) (STV 1.0 0.9091)) +(: cnet_partof_2cb7fafc81 (PartOf barent_sea arctic_ocean) (STV 1.0 0.9091)) +(: cnet_partof_8e421b6c2f (PartOf bari puglia) (STV 1.0 0.9091)) +(: cnet_partof_fe5e7c4617 (PartOf bark tree) (STV 1.0 0.9636)) +(: cnet_partof_fa9659487a (PartOf bark branch) (STV 1.0 0.9091)) +(: cnet_partof_3f1c79ae7b (PartOf bark root) (STV 1.0 0.9091)) +(: cnet_partof_bd2a8f13d8 (PartOf bark trunk) (STV 1.0 0.9091)) +(: cnet_partof_d836482e79 (PartOf barley common_barley) (STV 1.0 0.9091)) +(: cnet_partof_ddeb3b969d (PartOf barleycorn common_barley) (STV 1.0 0.9091)) +(: cnet_partof_915b82264f (PartOf barranquilla colombia) (STV 1.0 0.9091)) +(: cnet_partof_fff8327c00 (PartOf barrel gun) (STV 1.0 0.9091)) +(: cnet_partof_3259b22304 (PartOf barrel hogshead) (STV 1.0 0.9091)) +(: cnet_partof_e069bc4939 (PartOf barroom public_house) (STV 1.0 0.9091)) +(: cnet_partof_71ae0a1d72 (PartOf barstow california) (STV 1.0 0.9091)) +(: cnet_partof_0de8dcdbc0 (PartOf bartholin_s_gland female_reproductive_system) (STV 1.0 0.9091)) +(: cnet_partof_fb6bffadfa (PartOf bartlesville oklahoma) (STV 1.0 0.9091)) +(: cnet_partof_5895007fd9 (PartOf baruch apocrypha) (STV 1.0 0.9091)) +(: cnet_partof_582ef48ced (PartOf barye bar) (STV 1.0 0.9091)) +(: cnet_partof_fd2b72e63d (PartOf basal_ganglion diencephalon) (STV 1.0 0.9091)) +(: cnet_partof_b8054ce01f (PartOf basal_ganglion pyramidal_tract) (STV 1.0 0.9091)) +(: cnet_partof_e79ab40226 (PartOf base baseball_diamond) (STV 1.0 0.9091)) +(: cnet_partof_5c7b43a55c (PartOf base box) (STV 1.0 0.9091)) +(: cnet_partof_9de614a7c4 (PartOf base lamp) (STV 1.0 0.9091)) +(: cnet_partof_f5cf374aa2 (PartOf base vessel) (STV 1.0 0.9091)) +(: cnet_partof_2a3a7507f5 (PartOf base transistor) (STV 1.0 0.9091)) +(: cnet_partof_d0b9985d87 (PartOf base_pair deoxyribonucleic_acid) (STV 1.0 0.9091)) +(: cnet_partof_d27607f68b (PartOf baseball_diamond ball_field) (STV 1.0 0.9091)) +(: cnet_partof_a3eb230bfe (PartOf basel switzerland) (STV 1.0 0.9091)) +(: cnet_partof_34f59d878a (PartOf basidiocarp basidiomycete) (STV 1.0 0.9091)) +(: cnet_partof_3c59bdc7d2 (PartOf basil common_basil) (STV 1.0 0.9091)) +(: cnet_partof_79a67f2588 (PartOf basilar_artery head) (STV 1.0 0.9091)) +(: cnet_partof_596bd08f37 (PartOf basilar_membrane cochlea) (STV 1.0 0.9091)) +(: cnet_partof_dcf81474df (PartOf basilic_vein forearm) (STV 1.0 0.9091)) +(: cnet_partof_27ae9a16f3 (PartOf basilicata italy) (STV 1.0 0.9091)) +(: cnet_partof_df39eef1c2 (PartOf basinet body_armor) (STV 1.0 0.9091)) +(: cnet_partof_8600fb6e47 (PartOf basis explanation) (STV 1.0 0.9091)) +(: cnet_partof_6230aaf41c (PartOf basketball_play basketball) (STV 1.0 0.9091)) +(: cnet_partof_7a4d173843 (PartOf basketball_shot basketball) (STV 1.0 0.9091)) +(: cnet_partof_768682eb8f (PartOf basra iraq) (STV 1.0 0.9091)) +(: cnet_partof_f7990081a6 (PartOf basse_normandie normandie) (STV 1.0 0.9091)) +(: cnet_partof_3f8deb7040 (PartOf basseterre saint_kitt_and_nevis) (STV 1.0 0.9091)) +(: cnet_partof_fc984028ac (PartOf bastard_wing wing) (STV 1.0 0.9091)) +(: cnet_partof_ef1f2bff19 (PartOf bastille paris) (STV 1.0 0.9091)) +(: cnet_partof_99f0766881 (PartOf bastille_day july) (STV 1.0 0.9091)) +(: cnet_partof_749feb3796 (PartOf basting roasting) (STV 1.0 0.9091)) +(: cnet_partof_8c5c50d786 (PartOf bataan world_war_ii) (STV 1.0 0.9091)) +(: cnet_partof_f000f74247 (PartOf bath england) (STV 1.0 0.9091)) +(: cnet_partof_755e4c1edc (PartOf bath homer) (STV 1.0 0.9091)) +(: cnet_partof_a813124ad3 (PartOf bathroom dwelling) (STV 1.0 0.9091)) +(: cnet_partof_269bcdf751 (PartOf bathtub bathroom) (STV 1.0 0.9091)) +(: cnet_partof_f86378e756 (PartOf batna algeria) (STV 1.0 0.9091)) +(: cnet_partof_e6b004ccdc (PartOf baton_rouge louisiana) (STV 1.0 0.9091)) +(: cnet_partof_cfe20be146 (PartOf baton_rouge_bridge baton_rouge) (STV 1.0 0.9091)) +(: cnet_partof_fdc3929797 (PartOf batter_s_box baseball_diamond) (STV 1.0 0.9091)) +(: cnet_partof_f4c2744548 (PartOf battery baseball_team) (STV 1.0 0.9091)) +(: cnet_partof_c2b216e134 (PartOf battle war) (STV 1.0 0.9572)) +(: cnet_partof_30931c0362 (PartOf battle_ax halberd) (STV 1.0 0.9091)) +(: cnet_partof_5ad8f99096 (PartOf battle_of_ardenne_bulge world_war_ii) (STV 1.0 0.9091)) +(: cnet_partof_b11ce8a35a (PartOf battle_of_britain world_war_ii) (STV 1.0 0.9091)) +(: cnet_partof_3937154c9f (PartOf battle_of_marne world_war_i) (STV 1.0 0.9091)) +(: cnet_partof_2a2fa991fa (PartOf battle_of_wake world_war_ii) (STV 1.0 0.9091)) +(: cnet_partof_29608701f5 (PartOf battlefront battlefield) (STV 1.0 0.9091)) +(: cnet_partof_64cd4d0414 (PartOf battlement fortress) (STV 1.0 0.9091)) +(: cnet_partof_d65d68778b (PartOf bavaria germany) (STV 1.0 0.9091)) +(: cnet_partof_7a066349f5 (PartOf bay aircraft) (STV 1.0 0.9091)) +(: cnet_partof_83b9d6f636 (PartOf bay ship) (STV 1.0 0.9091)) +(: cnet_partof_6d77f2cf2b (PartOf bay sea) (STV 1.0 0.9091)) +(: cnet_partof_d3cec6590c (PartOf bay_leaf true_laurel) (STV 1.0 0.9091)) +(: cnet_partof_f52dfbd624 (PartOf bay_of_bengal indian_ocean) (STV 1.0 0.9091)) +(: cnet_partof_3c96c059e6 (PartOf bay_of_biscay atlantic) (STV 1.0 0.9091)) +(: cnet_partof_e25361a750 (PartOf bay_of_campeche gulf_of_mexico) (STV 1.0 0.9091)) +(: cnet_partof_cf2922ddee (PartOf bay_of_campeche mexico) (STV 1.0 0.9091)) +(: cnet_partof_f0b6c74be3 (PartOf bay_of_fundy atlantic) (STV 1.0 0.9091)) +(: cnet_partof_6d718a2460 (PartOf bay_of_naple italy) (STV 1.0 0.9091)) +(: cnet_partof_affa9f3c17 (PartOf bay_scallop bay_scallop) (STV 1.0 0.9091)) +(: cnet_partof_e8ca3b56b4 (PartOf bayonne new_jersey) (STV 1.0 0.9091)) +(: cnet_partof_fe10785ef3 (PartOf bayonne_bridge bayonne) (STV 1.0 0.9091)) +(: cnet_partof_46cb83d68e (PartOf beach shore) (STV 1.0 0.9091)) +(: cnet_partof_f020c8bd18 (PartOf beach_plum beach_plum) (STV 1.0 0.9091)) +(: cnet_partof_ef9ba530c3 (PartOf beacon_hill boston) (STV 1.0 0.9091)) +(: cnet_partof_0687cdbbad (PartOf beak bird) (STV 1.0 0.9091)) +(: cnet_partof_c10cc688dc (PartOf bean bean) (STV 1.0 0.9091)) +(: cnet_partof_5d1e80acf0 (PartOf beard goat) (STV 1.0 0.9091)) +(: cnet_partof_4f73f08fa5 (PartOf beard adult_male_body) (STV 1.0 0.9091)) +(: cnet_partof_6caf2d38b5 (PartOf beard face) (STV 1.0 0.9091)) +(: cnet_partof_2c17fe0c69 (PartOf bearing rotating_mechanism) (STV 1.0 0.9091)) +(: cnet_partof_e566ea0237 (PartOf beatitude sermon_on_mount) (STV 1.0 0.9091)) +(: cnet_partof_d91db6db10 (PartOf beat_per_minute music) (STV 1.0 0.9091)) +(: cnet_partof_b7ff4b9622 (PartOf beaufort_sea arctic_ocean) (STV 1.0 0.9091)) +(: cnet_partof_1cf7a5863f (PartOf beaumont texa) (STV 1.0 0.9091)) +(: cnet_partof_979a93359b (PartOf beaver helmet) (STV 1.0 0.9091)) +(: cnet_partof_e4b45be8af (PartOf beckley west_virginia) (STV 1.0 0.9091)) +(: cnet_partof_7d29ffef3c (PartOf bed bedroom) (STV 1.0 0.9091)) +(: cnet_partof_f7483f3bce (PartOf bed press) (STV 1.0 0.9091)) +(: cnet_partof_454c6599a5 (PartOf bedpost bedstead) (STV 1.0 0.9091)) +(: cnet_partof_8d58d51a7a (PartOf bedroom dwelling) (STV 1.0 0.9091)) +(: cnet_partof_d5bccf5228 (PartOf bedspring bedstead) (STV 1.0 0.9091)) +(: cnet_partof_aae85a21fc (PartOf bedstead bed) (STV 1.0 0.9091)) +(: cnet_partof_2594e478bb (PartOf beechnut beech) (STV 1.0 0.9091)) +(: cnet_partof_d03be1256e (PartOf beef cattle) (STV 1.0 0.9091)) +(: cnet_partof_9b42d92ae5 (PartOf beef_loin beef) (STV 1.0 0.9091)) +(: cnet_partof_fb58dfc810 (PartOf beehive apiary) (STV 1.0 0.9091)) +(: cnet_partof_c49f2ad0b9 (PartOf beet beetroot) (STV 1.0 0.9091)) +(: cnet_partof_41c37d2d48 (PartOf beet_green beetroot) (STV 1.0 0.9091)) +(: cnet_partof_654cb53e99 (PartOf beijing china) (STV 1.0 0.9091)) +(: cnet_partof_9cbda3dc94 (PartOf beira mozambique) (STV 1.0 0.9091)) +(: cnet_partof_fbdb44a5e8 (PartOf beirut lebanon) (STV 1.0 0.9091)) +(: cnet_partof_5a30e1ff2a (PartOf bel_and_dragon apocrypha) (STV 1.0 0.9091)) +(: cnet_partof_596e2f0659 (PartOf belarus europe) (STV 1.0 0.9091)) +(: cnet_partof_c058b59e30 (PartOf belem brazil) (STV 1.0 0.9091)) +(: cnet_partof_8704e4dd7c (PartOf belfast northern_ireland) (STV 1.0 0.9091)) +(: cnet_partof_ec63f68a2a (PartOf belfry bell_tower) (STV 1.0 0.9091)) +(: cnet_partof_a4e8da9133 (PartOf belgian_endive endive) (STV 1.0 0.9091)) +(: cnet_partof_09e0bfae32 (PartOf belgium europe) (STV 1.0 0.9091)) +(: cnet_partof_52c9468396 (PartOf belgrade serbia) (STV 1.0 0.9091)) +(: cnet_partof_9b6194c5ab (PartOf belgrade yugoslavia) (STV 1.0 0.9091)) +(: cnet_partof_2403301fef (PartOf belize central_america) (STV 1.0 0.9091)) +(: cnet_partof_21b706c259 (PartOf bell blunderbuss) (STV 1.0 0.9091)) +(: cnet_partof_73bcfb2f42 (PartOf bell funnel) (STV 1.0 0.9091)) +(: cnet_partof_c6af4d8865 (PartOf bell wind_instrument) (STV 1.0 0.9091)) +(: cnet_partof_9d7184fa92 (PartOf bell_apple jamaica_honeysuckle) (STV 1.0 0.9091)) +(: cnet_partof_9b01e3a0b3 (PartOf belle_isle_cress barbarea) (STV 1.0 0.9091)) +(: cnet_partof_b2a1da81bd (PartOf bellingham washington) (STV 1.0 0.9091)) +(: cnet_partof_1bf7fc9209 (PartOf belly vertebrate) (STV 1.0 0.9091)) +(: cnet_partof_b5378f6f5a (PartOf belly torso) (STV 1.0 0.9091)) +(: cnet_partof_8cdb69fed4 (PartOf belmont_park elmont) (STV 1.0 0.9091)) +(: cnet_partof_193d0f21e2 (PartOf belo_horizonte brazil) (STV 1.0 0.9091)) +(: cnet_partof_a6a885f0b0 (PartOf belt_buckle belt) (STV 1.0 0.9091)) +(: cnet_partof_d1dcb69dbc (PartOf beluga_caviar beluga) (STV 1.0 0.9091)) +(: cnet_partof_57a63123f7 (PartOf bemidji minnesota) (STV 1.0 0.9091)) +(: cnet_partof_706fc32916 (PartOf ben_sira apocrypha) (STV 1.0 0.9091)) +(: cnet_partof_747982eddc (PartOf ben_sira sapiential_book) (STV 1.0 0.9091)) +(: cnet_partof_a4e5f3db2c (PartOf bench court) (STV 1.0 0.9091)) +(: cnet_partof_46a4dd3971 (PartOf bench team) (STV 1.0 0.9091)) +(: cnet_partof_cc34630bfc (PartOf bend oregon) (STV 1.0 0.9091)) +(: cnet_partof_94d8365fda (PartOf bend road) (STV 1.0 0.9091)) +(: cnet_partof_f9d5802eb7 (PartOf benghazi libya) (STV 1.0 0.9091)) +(: cnet_partof_d50daa1718 (PartOf benin africa) (STV 1.0 0.9091)) +(: cnet_partof_b51b04d872 (PartOf benjamin_franklin_bridge philadelphia) (STV 1.0 0.9091)) +(: cnet_partof_5c8cdd45b2 (PartOf bennington vermont) (STV 1.0 0.9091)) +(: cnet_partof_f8fffd6caf (PartOf bergen norway) (STV 1.0 0.9091)) +(: cnet_partof_d3b65c9b24 (PartOf bering_sea pacific) (STV 1.0 0.9091)) +(: cnet_partof_b6739c3775 (PartOf berkeley california) (STV 1.0 0.9091)) +(: cnet_partof_882851c817 (PartOf berkshire england) (STV 1.0 0.9091)) +(: cnet_partof_798acd1a8a (PartOf berkshire massachusett) (STV 1.0 0.9091)) +(: cnet_partof_e8eb02714e (PartOf berlin germany) (STV 1.0 0.9091)) +(: cnet_partof_b34e3b839e (PartOf bermuda atlantic) (STV 1.0 0.9091)) +(: cnet_partof_6cfb7400aa (PartOf bermuda_triangle atlantic) (STV 1.0 0.9091)) +(: cnet_partof_04c1964101 (PartOf bern switzerland) (STV 1.0 0.9091)) +(: cnet_partof_197b5c1f77 (PartOf berry berry) (STV 1.0 0.9091)) +(: cnet_partof_c2f220ba28 (PartOf bessemer_converter steel_mill) (STV 1.0 0.9091)) +(: cnet_partof_d8341306f4 (PartOf beta_receptor sympathetic_nervous_system) (STV 1.0 0.9091)) +(: cnet_partof_6df9c5b5f4 (PartOf betel_nut betel_palm) (STV 1.0 0.9091)) +(: cnet_partof_d85907dc18 (PartOf bethlehem pennsylvania) (STV 1.0 0.9091)) +(: cnet_partof_5072420cea (PartOf bethlehem west_bank) (STV 1.0 0.9091)) +(: cnet_partof_8cc69f9000 (PartOf beverly_hill california) (STV 1.0 0.9091)) +(: cnet_partof_830c1405b7 (PartOf bhadon hindu_calendar) (STV 1.0 0.9091)) +(: cnet_partof_0c4bd897a0 (PartOf bhagavad_gita mahabharata) (STV 1.0 0.9091)) +(: cnet_partof_80a08097c6 (PartOf bhang indian_hemp) (STV 1.0 0.9091)) +(: cnet_partof_b5bd33da04 (PartOf bhutan asia) (STV 1.0 0.9091)) +(: cnet_partof_6eeacb662c (PartOf bib apron) (STV 1.0 0.9091)) +(: cnet_partof_0d08b43c67 (PartOf bicep_brachii arm) (STV 1.0 0.9091)) +(: cnet_partof_57098c74e3 (PartOf bicycle_seat bicycle) (STV 1.0 0.9091)) +(: cnet_partof_c728ecc70e (PartOf bicycle_wheel bicycle) (STV 1.0 0.9091)) +(: cnet_partof_a46baef84e (PartOf bid bridge) (STV 1.0 0.9091)) +(: cnet_partof_acddbcad3d (PartOf bifurcation bifurcation) (STV 1.0 0.9091)) +(: cnet_partof_2638a52823 (PartOf big_ben london) (STV 1.0 0.9091)) +(: cnet_partof_82851c6b6d (PartOf big_bend texa) (STV 1.0 0.9091)) +(: cnet_partof_ea83201ce2 (PartOf big_bend_national_park texa) (STV 1.0 0.9091)) +(: cnet_partof_5e37cdef0b (PartOf big_board new_york_stock_exchange) (STV 1.0 0.9091)) +(: cnet_partof_1ae9a54803 (PartOf big_dipper great_bear) (STV 1.0 0.9091)) +(: cnet_partof_a6a34c6e9f (PartOf big_sioux_river south_dakota) (STV 1.0 0.9091)) +(: cnet_partof_ad84fde291 (PartOf big_sur california) (STV 1.0 0.9091)) +(: cnet_partof_302002fc65 (PartOf big_toe foot) (STV 1.0 0.9091)) +(: cnet_partof_f9dc7588ce (PartOf bighorn montana) (STV 1.0 0.9091)) +(: cnet_partof_407c14f723 (PartOf bighorn wyoming) (STV 1.0 0.9091)) +(: cnet_partof_3e9f8bd703 (PartOf bight rope) (STV 1.0 0.9091)) +(: cnet_partof_ab13c824b4 (PartOf bight_of_benin gulf_of_guinea) (STV 1.0 0.9091)) +(: cnet_partof_2574649898 (PartOf bihar india) (STV 1.0 0.9091)) +(: cnet_partof_680a5cbd69 (PartOf bikini marshall_island) (STV 1.0 0.9091)) +(: cnet_partof_b182b865db (PartOf bilberry bilberry) (STV 1.0 0.9091)) +(: cnet_partof_85998540f4 (PartOf bilge vessel) (STV 1.0 0.9091)) +(: cnet_partof_6f6f763fa4 (PartOf bilge_keel vessel) (STV 1.0 0.9091)) +(: cnet_partof_6ee1f848fb (PartOf bilge_pump ship) (STV 1.0 0.9091)) +(: cnet_partof_44a14b765b (PartOf bilge_well ship) (STV 1.0 0.9091)) +(: cnet_partof_f27e8cebe2 (PartOf biliary_ductule liver) (STV 1.0 0.9091)) +(: cnet_partof_de934bc7eb (PartOf bill baseball_cap) (STV 1.0 0.9091)) +(: cnet_partof_ccbdf5c4e4 (PartOf bill kepi) (STV 1.0 0.9091)) +(: cnet_partof_7a4e5983ff (PartOf bill_acceptor vending_machine) (STV 1.0 0.9091)) +(: cnet_partof_aa38a59181 (PartOf bill_of_particular pleading) (STV 1.0 0.9091)) +(: cnet_partof_6dea08e129 (PartOf bill_of_right united_state_constitution) (STV 1.0 0.9091)) +(: cnet_partof_0ad874f80f (PartOf billing montana) (STV 1.0 0.9091)) +(: cnet_partof_ab5fca50a1 (PartOf biloxi mississippi) (STV 1.0 0.9091)) +(: cnet_partof_65b4aca1b8 (PartOf bimetallic_strip thermostat) (STV 1.0 0.9091)) +(: cnet_partof_fcaecce5b3 (PartOf binary_operation group) (STV 1.0 0.9091)) +(: cnet_partof_82c0cc0ea0 (PartOf binding book) (STV 1.0 0.9091)) +(: cnet_partof_d0402fcefb (PartOf binghamton new_york) (STV 1.0 0.9091)) +(: cnet_partof_bed11be637 (PartOf binomial_theorem probability_theory) (STV 1.0 0.9091)) +(: cnet_partof_8aa19da4ee (PartOf bioko equatorial_guinea) (STV 1.0 0.9091)) +(: cnet_partof_436d657c7e (PartOf bioko gulf_of_guinea) (STV 1.0 0.9091)) +(: cnet_partof_3866a5801a (PartOf bio computer) (STV 1.0 0.9091)) +(: cnet_partof_8fbd8ab437 (PartOf biosphere planet) (STV 1.0 0.9091)) +(: cnet_partof_ea918d82eb (PartOf bird_s_foot bird) (STV 1.0 0.9091)) +(: cnet_partof_10fc61d8c6 (PartOf bird bird) (STV 1.0 0.9091)) +(: cnet_partof_64a7c59578 (PartOf bird_shot shotgun_shell) (STV 1.0 0.9091)) +(: cnet_partof_6bb537ad1f (PartOf birmingham alabama) (STV 1.0 0.9091)) +(: cnet_partof_6cd56b1952 (PartOf birmingham england) (STV 1.0 0.9091)) +(: cnet_partof_23c973d429 (PartOf birth human_experience) (STV 1.0 0.9091)) +(: cnet_partof_593c8d66d0 (PartOf birth life) (STV 1.0 0.9091)) +(: cnet_partof_eaef05df2b (PartOf biscayne_bay atlantic) (STV 1.0 0.9091)) +(: cnet_partof_bd748412e0 (PartOf biscayne_bay florida) (STV 1.0 0.9091)) +(: cnet_partof_40b275343d (PartOf biscayne_national_park florida) (STV 1.0 0.9091)) +(: cnet_partof_58011d1150 (PartOf bishkek kyrgyzstan) (STV 1.0 0.9091)) +(: cnet_partof_8e0cbf2edb (PartOf bismarck north_dakota) (STV 1.0 0.9091)) +(: cnet_partof_9fddf55f16 (PartOf bismarck_archipelago melanesia) (STV 1.0 0.9091)) +(: cnet_partof_66176a53fb (PartOf bismarck_archipelago papua_new_guinea) (STV 1.0 0.9091)) +(: cnet_partof_7611016f78 (PartOf bismarck_sea world_war_ii) (STV 1.0 0.9091)) +(: cnet_partof_5abfa6a03b (PartOf bissau guinea_bissau) (STV 1.0 0.9091)) +(: cnet_partof_34656b3f00 (PartOf bit byte) (STV 1.0 0.9454)) +(: cnet_partof_b915b2d0f2 (PartOf bit bridle) (STV 1.0 0.9091)) +(: cnet_partof_d2c7427bea (PartOf bit drill) (STV 1.0 0.9091)) +(: cnet_partof_9435b15351 (PartOf bit key) (STV 1.0 0.9091)) +(: cnet_partof_fa7a01b2d5 (PartOf bithynia asia_minor) (STV 1.0 0.9091)) +(: cnet_partof_a3dd58b602 (PartOf bitter_end line) (STV 1.0 0.9091)) +(: cnet_partof_35b9cd14ec (PartOf bitter_orange sour_orange) (STV 1.0 0.9091)) +(: cnet_partof_b48de4baa1 (PartOf bitthead bollard) (STV 1.0 0.9091)) +(: cnet_partof_28643724ab (PartOf black_currant black_currant) (STV 1.0 0.9091)) +(: cnet_partof_d00f4b5cd6 (PartOf black_economy economy) (STV 1.0 0.9091)) +(: cnet_partof_c8636fb824 (PartOf black_eyed_pea cowpea) (STV 1.0 0.9091)) +(: cnet_partof_4ffe20e851 (PartOf black_hill south_dakota) (STV 1.0 0.9091)) +(: cnet_partof_786ed25684 (PartOf black_hill wyoming) (STV 1.0 0.9091)) +(: cnet_partof_b67bd7cf02 (PartOf black_rock_desert nevada) (STV 1.0 0.9091)) +(: cnet_partof_c420ad6b59 (PartOf black_walnut black_walnut) (STV 1.0 0.9091)) +(: cnet_partof_76a4e3cf53 (PartOf blackberry true_blackberry) (STV 1.0 0.9091)) +(: cnet_partof_703a23625f (PartOf blackberry western_blackberry) (STV 1.0 0.9091)) +(: cnet_partof_2cad34b999 (PartOf blackhead skin) (STV 1.0 0.9091)) +(: cnet_partof_0dd23b0ae8 (PartOf blackpool england) (STV 1.0 0.9091)) +(: cnet_partof_54861992cd (PartOf blacksburg virginia) (STV 1.0 0.9091)) +(: cnet_partof_048685887e (PartOf bladder human_body) (STV 1.0 0.9091)) +(: cnet_partof_515c633533 (PartOf bladder football) (STV 1.0 0.9091)) +(: cnet_partof_dadf310345 (PartOf bladder_sphincter urinary_bladder) (STV 1.0 0.9091)) +(: cnet_partof_8244bc902a (PartOf blade fan) (STV 1.0 0.9339)) +(: cnet_partof_0193047852 (PartOf blade knife) (STV 1.0 0.9524)) +(: cnet_partof_111c5127af (PartOf blade ax) (STV 1.0 0.9091)) +(: cnet_partof_635b16c6df (PartOf blade helicopter) (STV 1.0 0.9091)) +(: cnet_partof_6981b090eb (PartOf blade ice_skate) (STV 1.0 0.9091)) +(: cnet_partof_17df2a7e14 (PartOf blade lawn_mower) (STV 1.0 0.9091)) +(: cnet_partof_93e47fb6d2 (PartOf blade oar) (STV 1.0 0.9091)) +(: cnet_partof_59346aaf92 (PartOf blade propeller) (STV 1.0 0.9091)) +(: cnet_partof_72c5de3b45 (PartOf blade scissor) (STV 1.0 0.9091)) +(: cnet_partof_bc534e3f82 (PartOf blade spatula) (STV 1.0 0.9091)) +(: cnet_partof_a8c1262975 (PartOf blade sword) (STV 1.0 0.9091)) +(: cnet_partof_37d62cd896 (PartOf blade turbine) (STV 1.0 0.9091)) +(: cnet_partof_0c39a899f1 (PartOf blade windmill) (STV 1.0 0.9091)) +(: cnet_partof_28b8a54e0b (PartOf blade chuck) (STV 1.0 0.9091)) +(: cnet_partof_3a1f67783a (PartOf blanket breeder_reactor) (STV 1.0 0.9091)) +(: cnet_partof_318a55f08b (PartOf blantyre malawi) (STV 1.0 0.9091)) +(: cnet_partof_28a58df914 (PartOf blast_furnace steel_mill) (STV 1.0 0.9091)) +(: cnet_partof_9fcbf93fe4 (PartOf blastocoel blastosphere) (STV 1.0 0.9091)) +(: cnet_partof_7c96fb042a (PartOf blastopore archenteron) (STV 1.0 0.9091)) +(: cnet_partof_e2d84c4cd2 (PartOf blenheim war_of_spanish_succession) (STV 1.0 0.9091)) +(: cnet_partof_940688038b (PartOf blida algeria) (STV 1.0 0.9091)) +(: cnet_partof_ff2b7d05c1 (PartOf blind_spot retina) (STV 1.0 0.9091)) +(: cnet_partof_740cd29050 (PartOf blinker electrical_system) (STV 1.0 0.9091)) +(: cnet_partof_86941b6d15 (PartOf bloemfontein south_africa) (STV 1.0 0.9091)) +(: cnet_partof_55047891bf (PartOf blood body) (STV 1.0 0.9091)) +(: cnet_partof_ff60fc78fc (PartOf blood_cell blood) (STV 1.0 0.9091)) +(: cnet_partof_0d2e180ea0 (PartOf blood_pressure circulation) (STV 1.0 0.9091)) +(: cnet_partof_589f0c78ba (PartOf blood_vessel circulatory_system) (STV 1.0 0.9091)) +(: cnet_partof_868782b705 (PartOf bloodstream circulatory_system) (STV 1.0 0.9091)) +(: cnet_partof_c7c4318148 (PartOf bloom youth) (STV 1.0 0.9091)) +(: cnet_partof_d3603cbd08 (PartOf bloomington indiana) (STV 1.0 0.9091)) +(: cnet_partof_94c86a2af4 (PartOf bloomsbury london) (STV 1.0 0.9091)) +(: cnet_partof_bde1373dc3 (PartOf blow fight) (STV 1.0 0.9091)) +(: cnet_partof_7c86df2fbf (PartOf blowfish puffer) (STV 1.0 0.9091)) +(: cnet_partof_bbeec1c21c (PartOf blowhole cetacean) (STV 1.0 0.9091)) +(: cnet_partof_e051735e23 (PartOf blue_crab blue_crab) (STV 1.0 0.9091)) +(: cnet_partof_aae8a9de3b (PartOf blue_note blue) (STV 1.0 0.9091)) +(: cnet_partof_360c0e5ec3 (PartOf blue_ridge_mountain appalachian) (STV 1.0 0.9091)) +(: cnet_partof_b7bb5bef6f (PartOf blue_ridge_mountain north_carolina) (STV 1.0 0.9091)) +(: cnet_partof_6c66e984c8 (PartOf blue_ridge_mountain pennsylvania) (STV 1.0 0.9091)) +(: cnet_partof_82d2908a19 (PartOf blue_ridge_mountain virginia) (STV 1.0 0.9091)) +(: cnet_partof_40b85bdf50 (PartOf blueberry dwarf_bilberry) (STV 1.0 0.9091)) +(: cnet_partof_94c9bb9328 (PartOf blueberry high_bush_blueberry) (STV 1.0 0.9091)) +(: cnet_partof_f722a025bf (PartOf bluefin bluefin) (STV 1.0 0.9091)) +(: cnet_partof_6f80ceddfd (PartOf bluefish bluefish) (STV 1.0 0.9091)) +(: cnet_partof_3f5dd2499c (PartOf bluepoint bluepoint) (STV 1.0 0.9091)) +(: cnet_partof_3ee28c8586 (PartOf bo_hai china) (STV 1.0 0.9091)) +(: cnet_partof_c2f41c97a8 (PartOf bo_hai yellow_sea) (STV 1.0 0.9091)) +(: cnet_partof_d7e2723c0e (PartOf board ice_hockey_rink) (STV 1.0 0.9091)) +(: cnet_partof_4f574d7d12 (PartOf boat_whistle boat) (STV 1.0 0.9091)) +(: cnet_partof_83fb01039c (PartOf bob pendulum) (STV 1.0 0.9091)) +(: cnet_partof_13452e82f6 (PartOf bodice dress) (STV 1.0 0.9091)) +(: cnet_partof_9cc6fd252c (PartOf body address) (STV 1.0 0.9091)) +(: cnet_partof_81408162de (PartOf body narration) (STV 1.0 0.9091)) +(: cnet_partof_507dc2d649 (PartOf body_hair homo) (STV 1.0 0.9091)) +(: cnet_partof_399e9fcf3c (PartOf body_of_water hydrosphere) (STV 1.0 0.9091)) +(: cnet_partof_ad642ee584 (PartOf body_of_water surface) (STV 1.0 0.9091)) +(: cnet_partof_091001bfb0 (PartOf body_part organism) (STV 1.0 0.9091)) +(: cnet_partof_330d428ca1 (PartOf body_substance body) (STV 1.0 0.9091)) +(: cnet_partof_59a0b9cfd6 (PartOf bodywork motor_vehicle) (STV 1.0 0.9091)) +(: cnet_partof_ad0656b54c (PartOf boeotia greece) (STV 1.0 0.9091)) +(: cnet_partof_17641d1d79 (PartOf bogota colombia) (STV 1.0 0.9091)) +(: cnet_partof_831ae40b26 (PartOf bohemian czech_republic) (STV 1.0 0.9091)) +(: cnet_partof_f08153ff73 (PartOf boiler heating_system) (STV 1.0 0.9091)) +(: cnet_partof_6583fb320a (PartOf boiler steam_engine) (STV 1.0 0.9091)) +(: cnet_partof_3af3040041 (PartOf boilerplate contract) (STV 1.0 0.9091)) +(: cnet_partof_9a31855081 (PartOf boise idaho) (STV 1.0 0.9091)) +(: cnet_partof_4dfe3f9d73 (PartOf bolivia south_america) (STV 1.0 0.9091)) +(: cnet_partof_b1e239634c (PartOf bollard pier) (STV 1.0 0.9091)) +(: cnet_partof_f8803ea9ca (PartOf bologna emilia_romagna) (STV 1.0 0.9091)) +(: cnet_partof_5e438a8d11 (PartOf bolt lock) (STV 1.0 0.9091)) +(: cnet_partof_78222addb4 (PartOf bolt nut_and_bolt) (STV 1.0 0.9091)) +(: cnet_partof_ffedfdfa65 (PartOf bolt rifle) (STV 1.0 0.9091)) +(: cnet_partof_b02753f45d (PartOf bolzano italy) (STV 1.0 0.9091)) +(: cnet_partof_2fc4a2ac2b (PartOf bomb_rack bomber) (STV 1.0 0.9091)) +(: cnet_partof_e779416990 (PartOf bomblet cluster_bomb) (STV 1.0 0.9091)) +(: cnet_partof_4da9f02f9a (PartOf bonaire netherland_antille) (STV 1.0 0.9091)) +(: cnet_partof_c22f7a4210 (PartOf bonduc_nut bonduc) (STV 1.0 0.9091)) +(: cnet_partof_bb2df4fa75 (PartOf bone endoskeleton) (STV 1.0 0.9091)) +(: cnet_partof_36d7185fb1 (PartOf bone_cell bone) (STV 1.0 0.9091)) +(: cnet_partof_36df4c059a (PartOf bone_oil bone_fat) (STV 1.0 0.9091)) +(: cnet_partof_6034d3485b (PartOf bonete ande) (STV 1.0 0.9091)) +(: cnet_partof_6e773a34b9 (PartOf bonete argentina) (STV 1.0 0.9091)) +(: cnet_partof_ad7fbbd984 (PartOf bonito bonito) (STV 1.0 0.9091)) +(: cnet_partof_7614da08fc (PartOf bonn germany) (STV 1.0 0.9091)) +(: cnet_partof_b595c7d107 (PartOf bonus incentive_program) (STV 1.0 0.9091)) +(: cnet_partof_fd6e02709f (PartOf bony_labyrinth inner_ear) (STV 1.0 0.9091)) +(: cnet_partof_663038c852 (PartOf book library) (STV 1.0 0.9730)) +(: cnet_partof_1e5231e238 (PartOf book text) (STV 1.0 0.9091)) +(: cnet_partof_f2129cae56 (PartOf boom sailing_vessel) (STV 1.0 0.9091)) +(: cnet_partof_e662aad35e (PartOf booster multistage_rocket) (STV 1.0 0.9091)) +(: cnet_partof_64a1e5ec00 (PartOf booster communication_system) (STV 1.0 0.9091)) +(: cnet_partof_c215c8f30b (PartOf boot car) (STV 1.0 0.9091)) +(: cnet_partof_325fcaff7a (PartOf bootlace boot) (STV 1.0 0.9091)) +(: cnet_partof_75405532fa (PartOf bootleg boot) (STV 1.0 0.9091)) +(: cnet_partof_9267239603 (PartOf borage borage) (STV 1.0 0.9091)) +(: cnet_partof_3e2af10a5a (PartOf bordeaux france) (STV 1.0 0.9091)) +(: cnet_partof_b83d6ef2ea (PartOf borneo malay_archipelago) (STV 1.0 0.9091)) +(: cnet_partof_7e85f6cc98 (PartOf borodino napoleonic_war) (STV 1.0 0.9091)) +(: cnet_partof_65cb688ebf (PartOf boron_chamber boron_counter_tube) (STV 1.0 0.9091)) +(: cnet_partof_dcb17326a8 (PartOf borscht_circuit catskill) (STV 1.0 0.9091)) +(: cnet_partof_39863c7edb (PartOf bosnia bosnia_and_herzegovina) (STV 1.0 0.9091)) +(: cnet_partof_5a3e4c0ed1 (PartOf bosom garment) (STV 1.0 0.9091)) +(: cnet_partof_79c318929e (PartOf bosporus turkey) (STV 1.0 0.9091)) +(: cnet_partof_ab2e8be1ed (PartOf bosporus_bridge istanbul) (STV 1.0 0.9091)) +(: cnet_partof_2580ebf6ea (PartOf boston massachusett) (STV 1.0 0.9091)) +(: cnet_partof_00ef17d80c (PartOf boston_harbor boston) (STV 1.0 0.9091)) +(: cnet_partof_fd1738567b (PartOf bosworth_field war_of_ros) (STV 1.0 0.9091)) +(: cnet_partof_28f6aa8ca9 (PartOf botswana africa) (STV 1.0 0.9091)) +(: cnet_partof_f6d5afb601 (PartOf bottle bottle_of_wine) (STV 1.0 0.9091)) +(: cnet_partof_dcc523a008 (PartOf bottlecap bottle) (STV 1.0 0.9091)) +(: cnet_partof_2b963f22c6 (PartOf bottom inning) (STV 1.0 0.9091)) +(: cnet_partof_4bad46efc9 (PartOf bottom_line audited_account) (STV 1.0 0.9091)) +(: cnet_partof_52880ad461 (PartOf bougainville papua_new_guinea) (STV 1.0 0.9091)) +(: cnet_partof_5120f08a1b (PartOf bougainville solomon_island) (STV 1.0 0.9091)) +(: cnet_partof_e21a6d0f69 (PartOf boulder colorado) (STV 1.0 0.9091)) +(: cnet_partof_2a8286a041 (PartOf bourgogne france) (STV 1.0 0.9091)) +(: cnet_partof_0886221863 (PartOf bouvet_island south_atlantic) (STV 1.0 0.9091)) +(: cnet_partof_882c11f02c (PartOf bow bow_and_arrow) (STV 1.0 0.9091)) +(: cnet_partof_70416a71e3 (PartOf bow vessel) (STV 1.0 0.9091)) +(: cnet_partof_b8ab5e038f (PartOf bowery manhattan) (STV 1.0 0.9091)) +(: cnet_partof_638fdf8c5b (PartOf bowl lawn_bowling) (STV 1.0 0.9091)) +(: cnet_partof_3469b89737 (PartOf bowl pipe) (STV 1.0 0.9091)) +(: cnet_partof_d8d656c89d (PartOf bowling_alley bowling_equipment) (STV 1.0 0.9091)) +(: cnet_partof_d24391922f (PartOf bowling_ball bowling_equipment) (STV 1.0 0.9091)) +(: cnet_partof_1204b62bb5 (PartOf bowling_green kentucky) (STV 1.0 0.9091)) +(: cnet_partof_e24666fab5 (PartOf bowling_shoe bowling_equipment) (STV 1.0 0.9091)) +(: cnet_partof_a497becf8d (PartOf bowman_s_capsule malpighian_body) (STV 1.0 0.9091)) +(: cnet_partof_328e470227 (PartOf bowstring bow) (STV 1.0 0.9091)) +(: cnet_partof_f0da71c510 (PartOf box balcony) (STV 1.0 0.9091)) +(: cnet_partof_9b174367d1 (PartOf box ball_field) (STV 1.0 0.9091)) +(: cnet_partof_9b117c27cf (PartOf box coach) (STV 1.0 0.9091)) +(: cnet_partof_3d913823f9 (PartOf box_office theater) (STV 1.0 0.9091)) +(: cnet_partof_17113fd051 (PartOf box_pleat skirt) (STV 1.0 0.9091)) +(: cnet_partof_dc15f1f8c7 (PartOf box_seat box) (STV 1.0 0.9091)) +(: cnet_partof_95bc2b6d85 (PartOf box_seat grandstand) (STV 1.0 0.9091)) +(: cnet_partof_fc26b6779c (PartOf boxing_day christma) (STV 1.0 0.9091)) +(: cnet_partof_c0dd4bcb1a (PartOf boyne war_of_grand_alliance) (STV 1.0 0.9091)) +(: cnet_partof_07079a1988 (PartOf boysenberry boysenberry) (STV 1.0 0.9091)) +(: cnet_partof_c218ae3a59 (PartOf bozeman montana) (STV 1.0 0.9091)) +(: cnet_partof_0961ed205b (PartOf brace brace_and_bit) (STV 1.0 0.9091)) +(: cnet_partof_9a6a8fa572 (PartOf brace framework) (STV 1.0 0.9091)) +(: cnet_partof_82663a8068 (PartOf brachial_artery arm) (STV 1.0 0.9091)) +(: cnet_partof_3a8aa128fd (PartOf bract inflorescence) (STV 1.0 0.9091)) +(: cnet_partof_a947ef34ec (PartOf braga portugal) (STV 1.0 0.9091)) +(: cnet_partof_26467aee6b (PartOf brahmaputra bangladesh) (STV 1.0 0.9091)) +(: cnet_partof_8bd114093d (PartOf brahmaputra china) (STV 1.0 0.9091)) +(: cnet_partof_79d1d7b601 (PartOf brahmaputra india) (STV 1.0 0.9091)) +(: cnet_partof_8db6d7b230 (PartOf brain body) (STV 1.0 0.9572)) +(: cnet_partof_ae18ddd447 (PartOf brain human_body) (STV 1.0 0.9524)) +(: cnet_partof_846d6a9344 (PartOf brain person) (STV 1.0 0.9339)) +(: cnet_partof_343b5f8829 (PartOf brain central_nervous_system) (STV 1.0 0.9091)) +(: cnet_partof_639a3dc3ce (PartOf brain head) (STV 1.0 0.9091)) +(: cnet_partof_d5bd29d97e (PartOf brain_cell brain) (STV 1.0 0.9091)) +(: cnet_partof_350048e4fd (PartOf brainstem brain) (STV 1.0 0.9091)) +(: cnet_partof_ec0a631989 (PartOf brake wheeled_vehicle) (STV 1.0 0.9091)) +(: cnet_partof_df7e31f1de (PartOf brake_band brake_system) (STV 1.0 0.9091)) +(: cnet_partof_fdcdb2b748 (PartOf brake_cylinder hydraulic_brake) (STV 1.0 0.9091)) +(: cnet_partof_e1ae034c5f (PartOf brake_disk disk_brake) (STV 1.0 0.9091)) +(: cnet_partof_2f3f906c87 (PartOf brake_drum drum_brake) (STV 1.0 0.9091)) +(: cnet_partof_314de0fac9 (PartOf brake_lining brake_shoe) (STV 1.0 0.9091)) +(: cnet_partof_bdb239b080 (PartOf brake_pad disk_brake) (STV 1.0 0.9091)) +(: cnet_partof_673da34201 (PartOf brake_pedal hydraulic_brake) (STV 1.0 0.9091)) +(: cnet_partof_23462532b7 (PartOf brake_shoe drum_brake) (STV 1.0 0.9091)) +(: cnet_partof_5fccf1b0df (PartOf brake_system motor_vehicle) (STV 1.0 0.9091)) +(: cnet_partof_9b3f276070 (PartOf branch furcation) (STV 1.0 0.9091)) +(: cnet_partof_addc8e1128 (PartOf brandenburg germany) (STV 1.0 0.9091)) +(: cnet_partof_07b8b8ab25 (PartOf brandenburg prussia) (STV 1.0 0.9091)) +(: cnet_partof_f51f8aafcf (PartOf brasilia brazil) (STV 1.0 0.9091)) +(: cnet_partof_0d6897d9f4 (PartOf brasov romania) (STV 1.0 0.9091)) +(: cnet_partof_49c9ed8d72 (PartOf brassard body_armor) (STV 1.0 0.9091)) +(: cnet_partof_57278a7f5e (PartOf bratislava slovakia) (STV 1.0 0.9091)) +(: cnet_partof_1d5e315eb8 (PartOf brattleboro vermont) (STV 1.0 0.9091)) +(: cnet_partof_e2c1a8be1e (PartOf braunschweig germany) (STV 1.0 0.9091)) +(: cnet_partof_9b9c381f23 (PartOf brazil south_america) (STV 1.0 0.9091)) +(: cnet_partof_eb7ae81ab2 (PartOf brazil_nut brazil_nut) (STV 1.0 0.9091)) +(: cnet_partof_ece0486027 (PartOf brazo new_mexico) (STV 1.0 0.9091)) +(: cnet_partof_a7492446b0 (PartOf brazo texa) (STV 1.0 0.9091)) +(: cnet_partof_a8a72cbc6b (PartOf brazzaville congo) (STV 1.0 0.9091)) +(: cnet_partof_2ecb39c77f (PartOf bread sandwich) (STV 1.0 0.9339)) +(: cnet_partof_3ea139c26e (PartOf breadfruit breadfruit) (STV 1.0 0.9091)) +(: cnet_partof_49afeab594 (PartOf break billiard) (STV 1.0 0.9091)) +(: cnet_partof_0feec0e06f (PartOf break pool) (STV 1.0 0.9091)) +(: cnet_partof_6a31016b01 (PartOf bream freshwater_bream) (STV 1.0 0.9091)) +(: cnet_partof_eb091dde55 (PartOf bream sea_bream) (STV 1.0 0.9091)) +(: cnet_partof_d42c743a69 (PartOf breast adult_female_body) (STV 1.0 0.9091)) +(: cnet_partof_fb66bce850 (PartOf breast thorax) (STV 1.0 0.9091)) +(: cnet_partof_ec4d3e6884 (PartOf breast chicken) (STV 1.0 0.9091)) +(: cnet_partof_8f9da58edf (PartOf breast turkey) (STV 1.0 0.9091)) +(: cnet_partof_6e9e41e92d (PartOf breast_pocket coat) (STV 1.0 0.9091)) +(: cnet_partof_eff45cd799 (PartOf breastplate body_armor) (STV 1.0 0.9091)) +(: cnet_partof_16b3f5c39c (PartOf breech barrel) (STV 1.0 0.9091)) +(: cnet_partof_403a3f7991 (PartOf breechblock breech) (STV 1.0 0.9091)) +(: cnet_partof_414ccedaaf (PartOf breed_s_hill charlestown) (STV 1.0 0.9091)) +(: cnet_partof_b897b72724 (PartOf bremen germany) (STV 1.0 0.9091)) +(: cnet_partof_eebf0b79ff (PartOf bremerhaven germany) (STV 1.0 0.9091)) +(: cnet_partof_ede3131f6d (PartOf brenner_pass austria) (STV 1.0 0.9091)) +(: cnet_partof_6e008382a9 (PartOf brenner_pass italy) (STV 1.0 0.9091)) +(: cnet_partof_4bbd4cc5e2 (PartOf brescia italy) (STV 1.0 0.9091)) +(: cnet_partof_f5361de341 (PartOf brest france) (STV 1.0 0.9091)) +(: cnet_partof_c27f34d601 (PartOf bretagne france) (STV 1.0 0.9091)) +(: cnet_partof_5151cbf805 (PartOf briarroot tree_heath) (STV 1.0 0.9091)) +(: cnet_partof_0ca5959c5a (PartOf bridge spectacle) (STV 1.0 0.9091)) +(: cnet_partof_382b23e39c (PartOf bridge stringed_instrument) (STV 1.0 0.9091)) +(: cnet_partof_c0f3b56ccd (PartOf bridge transportation_system) (STV 1.0 0.9091)) +(: cnet_partof_b2e7f04106 (PartOf bridge nose) (STV 1.0 0.9091)) +(: cnet_partof_1f95a149b7 (PartOf bridgeport connecticut) (STV 1.0 0.9091)) +(: cnet_partof_31a910d1a6 (PartOf bridgetown barbado) (STV 1.0 0.9091)) +(: cnet_partof_11db5aa8e0 (PartOf bridle harness) (STV 1.0 0.9091)) +(: cnet_partof_6cbd296039 (PartOf brighton england) (STV 1.0 0.9091)) +(: cnet_partof_ab06eb8feb (PartOf brim hat) (STV 1.0 0.9091)) +(: cnet_partof_79e54d3f0b (PartOf brim vessel) (STV 1.0 0.9091)) +(: cnet_partof_6fdcf7c3ff (PartOf brindisi italy) (STV 1.0 0.9091)) +(: cnet_partof_bfc4b0d591 (PartOf brisbane queensland) (STV 1.0 0.9091)) +(: cnet_partof_bb1c4c6906 (PartOf bristle brush) (STV 1.0 0.9091)) +(: cnet_partof_a7aa13ca8f (PartOf bristol england) (STV 1.0 0.9091)) +(: cnet_partof_c8dbbe2ff7 (PartOf bristol_channel atlantic) (STV 1.0 0.9091)) +(: cnet_partof_b070971f60 (PartOf british_columbia canada) (STV 1.0 0.9091)) +(: cnet_partof_aa64f5d589 (PartOf british_isle atlantic) (STV 1.0 0.9091)) +(: cnet_partof_b63d715bb2 (PartOf british_thermal_unit therm) (STV 1.0 0.9091)) +(: cnet_partof_a17ab842aa (PartOf british_virgin_island virgin_island) (STV 1.0 0.9091)) +(: cnet_partof_009d892149 (PartOf british_west_africa west_africa) (STV 1.0 0.9091)) +(: cnet_partof_3ddc10c023 (PartOf brno czech_republic) (STV 1.0 0.9091)) +(: cnet_partof_e7a2f4d9ac (PartOf broad_bean broad_bean) (STV 1.0 0.9091)) +(: cnet_partof_544ef982b1 (PartOf broadcasting_studio radio_station) (STV 1.0 0.9091)) +(: cnet_partof_7c786697d8 (PartOf broadcasting_studio television_station) (STV 1.0 0.9091)) +(: cnet_partof_e7670272cb (PartOf broadway manhattan) (STV 1.0 0.9091)) +(: cnet_partof_dcb091c742 (PartOf broca_s_area language_area) (STV 1.0 0.9091)) +(: cnet_partof_919aa92b10 (PartOf broccoli broccoli) (STV 1.0 0.9091)) +(: cnet_partof_c9f44fbaec (PartOf broccoli_rabe broccoli_raab) (STV 1.0 0.9091)) +(: cnet_partof_97a0387c4c (PartOf bronchial_artery lung) (STV 1.0 0.9091)) +(: cnet_partof_3a0bc97782 (PartOf bronchiole lower_respiratory_tract) (STV 1.0 0.9091)) +(: cnet_partof_167701c44f (PartOf bronchospasm asthma) (STV 1.0 0.9091)) +(: cnet_partof_935f312574 (PartOf bronchospasm bronchitis) (STV 1.0 0.9091)) +(: cnet_partof_577396f5a4 (PartOf bronchus lower_respiratory_tract) (STV 1.0 0.9091)) +(: cnet_partof_f759563b9f (PartOf bronco_busting rodeo) (STV 1.0 0.9091)) +(: cnet_partof_d62957d6b4 (PartOf bronx new_york) (STV 1.0 0.9091)) +(: cnet_partof_3ca2d80768 (PartOf bronx_whitestone_bridge new_york) (STV 1.0 0.9091)) +(: cnet_partof_8dd1567cd6 (PartOf bronze_age prehistory) (STV 1.0 0.9091)) +(: cnet_partof_172d323601 (PartOf brook_trout brook_trout) (STV 1.0 0.9091)) +(: cnet_partof_5c0e401602 (PartOf brooklyn new_york) (STV 1.0 0.9091)) +(: cnet_partof_3889cb0b22 (PartOf brooklyn_bridge new_york) (STV 1.0 0.9091)) +(: cnet_partof_832cb68222 (PartOf broomstick broom) (STV 1.0 0.9091)) +(: cnet_partof_995faf387c (PartOf brother family) (STV 1.0 0.9091)) +(: cnet_partof_8152f80ac1 (PartOf brow face) (STV 1.0 0.9091)) +(: cnet_partof_498a96eb8b (PartOf brown_university rhode_island) (STV 1.0 0.9091)) +(: cnet_partof_2d7097cd84 (PartOf brownsville texa) (STV 1.0 0.9091)) +(: cnet_partof_a8e145efc8 (PartOf bruge belgium) (STV 1.0 0.9091)) +(: cnet_partof_19434a5fd6 (PartOf brumaire revolutionary_calendar) (STV 1.0 0.9091)) +(: cnet_partof_37eff79aac (PartOf brunei borneo) (STV 1.0 0.9091)) +(: cnet_partof_57451ffa62 (PartOf brunswick maine) (STV 1.0 0.9091)) +(: cnet_partof_f39b729646 (PartOf brush electric_motor) (STV 1.0 0.9091)) +(: cnet_partof_a0cb6a29f8 (PartOf brush generator) (STV 1.0 0.9091)) +(: cnet_partof_b967343c24 (PartOf brussel_sprout brussel_sprout) (STV 1.0 0.9091)) +(: cnet_partof_b7cbf57339 (PartOf bruxelle belgium) (STV 1.0 0.9091)) +(: cnet_partof_544007262d (PartOf bryan texa) (STV 1.0 0.9091)) +(: cnet_partof_2573d8d5c1 (PartOf bryce_canyon_national_park utah) (STV 1.0 0.9091)) +(: cnet_partof_5d2efa80e1 (PartOf buccal_artery cheek) (STV 1.0 0.9091)) +(: cnet_partof_cf531df2d8 (PartOf buccal_cavity mouth) (STV 1.0 0.9091)) +(: cnet_partof_d779325f39 (PartOf bucharest romania) (STV 1.0 0.9091)) +(: cnet_partof_c5703cab2a (PartOf buchenwald germany) (STV 1.0 0.9091)) +(: cnet_partof_6de0c6432c (PartOf bucket waterwheel) (STV 1.0 0.9091)) +(: cnet_partof_bee9d74926 (PartOf buckingham_palace westminster) (STV 1.0 0.9091)) +(: cnet_partof_c6733a8e01 (PartOf buckthorn_berry buckthorn) (STV 1.0 0.9091)) +(: cnet_partof_74ebdc4e3f (PartOf buckwheat buckwheat) (STV 1.0 0.9091)) +(: cnet_partof_3bf36d7bc3 (PartOf budapest hungary) (STV 1.0 0.9091)) +(: cnet_partof_3e08229ab7 (PartOf buena_vista mexican_war) (STV 1.0 0.9091)) +(: cnet_partof_d4b7e5ea18 (PartOf bueno_aire argentina) (STV 1.0 0.9091)) +(: cnet_partof_b9efeb83ec (PartOf buffalo american_bison) (STV 1.0 0.9091)) +(: cnet_partof_b701ba1198 (PartOf buffalo new_york) (STV 1.0 0.9091)) +(: cnet_partof_5036951bbb (PartOf buffalo_nut rabbitwood) (STV 1.0 0.9091)) +(: cnet_partof_8a87cf235a (PartOf buffalofish buffalo_fish) (STV 1.0 0.9091)) +(: cnet_partof_e03e89ec03 (PartOf buffer emac) (STV 1.0 0.9091)) +(: cnet_partof_d758e55541 (PartOf buffer car) (STV 1.0 0.9091)) +(: cnet_partof_ccd9f764b6 (PartOf buffer random_access_memory) (STV 1.0 0.9091)) +(: cnet_partof_d68378fc46 (PartOf buffet dining_room) (STV 1.0 0.9091)) +(: cnet_partof_2a2e5ac360 (PartOf buffing_wheel buffer) (STV 1.0 0.9091)) +(: cnet_partof_578f1f2da5 (PartOf buganda uganda) (STV 1.0 0.9091)) +(: cnet_partof_07a711bc07 (PartOf bujumbura burundi) (STV 1.0 0.9091)) +(: cnet_partof_04b834f5af (PartOf bulawayo zimbabwe) (STV 1.0 0.9091)) +(: cnet_partof_05ca26d461 (PartOf bulb mercury_thermometer) (STV 1.0 0.9091)) +(: cnet_partof_405d85e2f9 (PartOf bulb syringe) (STV 1.0 0.9091)) +(: cnet_partof_800c942cda (PartOf bulgaria europe) (STV 1.0 0.9091)) +(: cnet_partof_36fdde04c0 (PartOf bulgur tabbouleh) (STV 1.0 0.9091)) +(: cnet_partof_2f46b9a933 (PartOf bulkhead ship) (STV 1.0 0.9091)) +(: cnet_partof_865097f378 (PartOf bull_s_eye target) (STV 1.0 0.9091)) +(: cnet_partof_88eff8b88f (PartOf bull_run american_civil_war) (STV 1.0 0.9091)) +(: cnet_partof_6bc1d3390c (PartOf bull_run virginia) (STV 1.0 0.9091)) +(: cnet_partof_e533402e87 (PartOf bulldog_clip clip_lead) (STV 1.0 0.9091)) +(: cnet_partof_680c26ba64 (PartOf bullet cartridge) (STV 1.0 0.9091)) +(: cnet_partof_1d3706ffe0 (PartOf bullock_s_heart bullock_s_heart) (STV 1.0 0.9091)) +(: cnet_partof_2f2ab5117a (PartOf bullpen ballpark) (STV 1.0 0.9091)) +(: cnet_partof_a0224a36b0 (PartOf bulwark ship) (STV 1.0 0.9091)) +(: cnet_partof_189b4099b5 (PartOf bumper car) (STV 1.0 0.9454)) +(: cnet_partof_5437f3caf2 (PartOf bumper truck) (STV 1.0 0.9091)) +(: cnet_partof_71b3cbe9ec (PartOf bumper_guard bumper) (STV 1.0 0.9091)) +(: cnet_partof_cfb8677cf0 (PartOf bung barrel) (STV 1.0 0.9091)) +(: cnet_partof_14543bbd9c (PartOf bunker golf_course) (STV 1.0 0.9091)) +(: cnet_partof_20454519e1 (PartOf bunker_hill american_revolution) (STV 1.0 0.9091)) +(: cnet_partof_5a6a561f32 (PartOf buntal talipot) (STV 1.0 0.9091)) +(: cnet_partof_5f2d0de02f (PartOf bunya_bunya bunya_bunya) (STV 1.0 0.9091)) +(: cnet_partof_ccfc2e7f5d (PartOf bur dentist_s_drill) (STV 1.0 0.9091)) +(: cnet_partof_9a19b59ab0 (PartOf bureau_of_alcohol_tobacco_and_firearm department_of_treasury) (STV 1.0 0.9091)) +(: cnet_partof_ab8c7868b8 (PartOf bureau_of_census department_of_commerce) (STV 1.0 0.9091)) +(: cnet_partof_09c5d04eea (PartOf bureau_of_custom department_of_treasury) (STV 1.0 0.9091)) +(: cnet_partof_c34f9cc74e (PartOf bureau_of_diplomatic_security department_of_state) (STV 1.0 0.9091)) +(: cnet_partof_5e3a282edc (PartOf bureau_of_engraving_and_printing department_of_treasury) (STV 1.0 0.9091)) +(: cnet_partof_d6a7b1defc (PartOf bureau_of_intelligence_and_research department_of_state) (STV 1.0 0.9091)) +(: cnet_partof_4b02fe7fc0 (PartOf bureau_of_justice_assistance department_of_justice) (STV 1.0 0.9091)) +(: cnet_partof_5f63a26515 (PartOf bureau_of_justice_statistic department_of_justice) (STV 1.0 0.9091)) +(: cnet_partof_c0283a5e4e (PartOf burl tree) (STV 1.0 0.9091)) +(: cnet_partof_a277462760 (PartOf burlington vermont) (STV 1.0 0.9091)) +(: cnet_partof_aa3b4a319e (PartOf burn_center hospital) (STV 1.0 0.9091)) +(: cnet_partof_345985381c (PartOf bursa turkey) (STV 1.0 0.9091)) +(: cnet_partof_5e861b013e (PartOf bursa_omentalis peritoneal_cavity) (STV 1.0 0.9091)) +(: cnet_partof_cc761f2d3d (PartOf burundi africa) (STV 1.0 0.9091)) +(: cnet_partof_237b0e44af (PartOf burundi east_africa) (STV 1.0 0.9091)) +(: cnet_partof_21ea43a676 (PartOf bus_stop bus_route) (STV 1.0 0.9091)) +(: cnet_partof_f3be095f09 (PartOf busbar computer) (STV 1.0 0.9091)) +(: cnet_partof_7b3223e92c (PartOf busbar local_area_network) (STV 1.0 0.9091)) +(: cnet_partof_8b00127aff (PartOf busbar power_station) (STV 1.0 0.9091)) +(: cnet_partof_89c752c8b0 (PartOf bushel quarter) (STV 1.0 0.9091)) +(: cnet_partof_5895ca21c9 (PartOf business_activity commercial_enterprise) (STV 1.0 0.9091)) +(: cnet_partof_6f266bbfaa (PartOf butte montana) (STV 1.0 0.9091)) +(: cnet_partof_6f933b1243 (PartOf butterfish butterfish) (STV 1.0 0.9091)) +(: cnet_partof_e7753dca61 (PartOf butterfish rock_gunnel) (STV 1.0 0.9091)) +(: cnet_partof_1bdb623737 (PartOf butterfly_valve carburetor) (STV 1.0 0.9091)) +(: cnet_partof_df634c97d0 (PartOf butterhead_lettuce head_lettuce) (STV 1.0 0.9091)) +(: cnet_partof_b347703456 (PartOf butternut butternut) (STV 1.0 0.9091)) +(: cnet_partof_5340a627b7 (PartOf butternut_squash butternut_squash) (STV 1.0 0.9091)) +(: cnet_partof_3fa9228382 (PartOf buttock torso) (STV 1.0 0.9091)) +(: cnet_partof_ee1f5b6a0d (PartOf buttonhole garment) (STV 1.0 0.9091)) +(: cnet_partof_d7d78966ad (PartOf butut dalasi) (STV 1.0 0.9091)) +(: cnet_partof_de17790831 (PartOf buzzard_bay atlantic) (STV 1.0 0.9091)) +(: cnet_partof_d0144ae2d9 (PartOf byblo lebanon) (STV 1.0 0.9091)) +(: cnet_partof_9fe8094b3e (PartOf bydgoszcz poland) (STV 1.0 0.9091)) +(: cnet_partof_7f0dd6ee46 (PartOf byte word) (STV 1.0 0.9091)) +(: cnet_partof_baf858ce76 (PartOf byzantine_empire roman_empire) (STV 1.0 0.9091)) +(: cnet_partof_5dc4db06c6 (PartOf byzantium byzantine_empire) (STV 1.0 0.9091)) +(: cnet_partof_0557d6a03b (PartOf cab motor_vehicle) (STV 1.0 0.9091)) +(: cnet_partof_be6e8c9777 (PartOf cabbage cabbage) (STV 1.0 0.9091)) +(: cnet_partof_56ec3ed26e (PartOf cabin aircraft) (STV 1.0 0.9091)) +(: cnet_partof_8be154be98 (PartOf cabin liner) (STV 1.0 0.9091)) +(: cnet_partof_3223fe39b6 (PartOf cabin spacecraft) (STV 1.0 0.9091)) +(: cnet_partof_4cf59e5428 (PartOf cabinet locker_room) (STV 1.0 0.9091)) +(: cnet_partof_f52ff6b974 (PartOf cable cable) (STV 1.0 0.9091)) +(: cnet_partof_1f102f058b (PartOf cable suspension_bridge) (STV 1.0 0.9091)) +(: cnet_partof_21b7a7794d (PartOf cable telephone_system) (STV 1.0 0.9091)) +(: cnet_partof_102f881754 (PartOf cable_car cable_railway) (STV 1.0 0.9091)) +(: cnet_partof_8a72e254e8 (PartOf cachi ande) (STV 1.0 0.9091)) +(: cnet_partof_fc57655460 (PartOf cachi argentina) (STV 1.0 0.9091)) +(: cnet_partof_9091665b03 (PartOf cadiz spain) (STV 1.0 0.9091)) +(: cnet_partof_f8d8ab7452 (PartOf caesarea israel) (STV 1.0 0.9091)) +(: cnet_partof_c69d80e8d3 (PartOf cairo egypt) (STV 1.0 0.9091)) +(: cnet_partof_1bb72a26a4 (PartOf cairo illinois) (STV 1.0 0.9091)) +(: cnet_partof_bfb4ba7483 (PartOf cajan_pea pigeon_pea) (STV 1.0 0.9091)) +(: cnet_partof_cc89eb8216 (PartOf calabar_bean calabar_bean_vine) (STV 1.0 0.9091)) +(: cnet_partof_693666961a (PartOf calabria italy) (STV 1.0 0.9091)) +(: cnet_partof_e7fb997702 (PartOf calais france) (STV 1.0 0.9091)) +(: cnet_partof_4ba8145b52 (PartOf calamus sweet_flag) (STV 1.0 0.9091)) +(: cnet_partof_aa5065e687 (PartOf calash chaise) (STV 1.0 0.9091)) +(: cnet_partof_2d51947cec (PartOf calcarine_sulcus occipital_lobe) (STV 1.0 0.9091)) +(: cnet_partof_26212b2e7a (PartOf caledonia scotland) (STV 1.0 0.9091)) +(: cnet_partof_a829ceb2b5 (PartOf caledonian_canal scotland) (STV 1.0 0.9091)) +(: cnet_partof_388642c8d5 (PartOf calendar_day week) (STV 1.0 0.9091)) +(: cnet_partof_5463d6f99a (PartOf calf shank) (STV 1.0 0.9091)) +(: cnet_partof_cc054c0f96 (PartOf calf_roping rodeo) (STV 1.0 0.9091)) +(: cnet_partof_07418efdb7 (PartOf calgary canada) (STV 1.0 0.9339)) +(: cnet_partof_8c3430a92c (PartOf calgary alberta) (STV 1.0 0.9091)) +(: cnet_partof_6cddc41d08 (PartOf cali colombia) (STV 1.0 0.9091)) +(: cnet_partof_7ebbba58b2 (PartOf california u_s) (STV 1.0 0.9091)) +(: cnet_partof_44138df6f7 (PartOf california united_state_of_america) (STV 1.0 0.9454)) +(: cnet_partof_ea19e9b630 (PartOf california southwest) (STV 1.0 0.9091)) +(: cnet_partof_54682c2e2e (PartOf california united_state) (STV 1.0 0.9091)) +(: cnet_partof_a7de6e6132 (PartOf call card_game) (STV 1.0 0.9091)) +(: cnet_partof_0e8ab66a11 (PartOf call_option straddle) (STV 1.0 0.9091)) +(: cnet_partof_74aa1d43a4 (PartOf calm_air beaufort_scale) (STV 1.0 0.9091)) +(: cnet_partof_eccb813349 (PartOf caloocan philippine) (STV 1.0 0.9091)) +(: cnet_partof_c70dc6952d (PartOf caloosahatchee_canal florida) (STV 1.0 0.9091)) +(: cnet_partof_f3a703a3d6 (PartOf caloosahatchee_river florida) (STV 1.0 0.9091)) +(: cnet_partof_5824e0e129 (PartOf calorie calorie) (STV 1.0 0.9091)) +(: cnet_partof_0c83ae9baa (PartOf calvaria cranium) (STV 1.0 0.9091)) +(: cnet_partof_f7c23395d1 (PartOf calvary jerusalem) (STV 1.0 0.9091)) +(: cnet_partof_6f4477f272 (PartOf calyx perianth) (STV 1.0 0.9091)) +(: cnet_partof_c8940ecc0f (PartOf cam england) (STV 1.0 0.9091)) +(: cnet_partof_b682d89709 (PartOf camail basinet) (STV 1.0 0.9091)) +(: cnet_partof_3fb717ce3f (PartOf cambium periosteum) (STV 1.0 0.9091)) +(: cnet_partof_962f1691a5 (PartOf cambodia south_east_asia) (STV 1.0 0.9091)) +(: cnet_partof_d025828381 (PartOf cambodia indochina) (STV 1.0 0.9091)) +(: cnet_partof_d97ce8514e (PartOf cambrian paleozoic) (STV 1.0 0.9091)) +(: cnet_partof_ae32bf004e (PartOf cambridge england) (STV 1.0 0.9091)) +(: cnet_partof_405c52debc (PartOf cambridge massachusett) (STV 1.0 0.9091)) +(: cnet_partof_c4f22f09be (PartOf cambridge_university cambridge) (STV 1.0 0.9091)) +(: cnet_partof_38d22915a4 (PartOf camden new_jersey) (STV 1.0 0.9091)) +(: cnet_partof_79b36176ea (PartOf camera_len camera) (STV 1.0 0.9091)) +(: cnet_partof_66702c89d4 (PartOf camera_len television_camera) (STV 1.0 0.9091)) +(: cnet_partof_3b60155105 (PartOf camera_lucida microscope) (STV 1.0 0.9091)) +(: cnet_partof_b085305805 (PartOf cameroon africa) (STV 1.0 0.9091)) +(: cnet_partof_44f470af74 (PartOf cameroon cameroon) (STV 1.0 0.9091)) +(: cnet_partof_ed6a8e8216 (PartOf campania italy) (STV 1.0 0.9091)) +(: cnet_partof_9b0f769adf (PartOf campeche campeche) (STV 1.0 0.9091)) +(: cnet_partof_c3b86ad04c (PartOf camshaft engine) (STV 1.0 0.9091)) +(: cnet_partof_52027f6647 (PartOf canada north_america) (STV 1.0 0.9091)) +(: cnet_partof_c54211f592 (PartOf canadian new_mexico) (STV 1.0 0.9091)) +(: cnet_partof_a0f468e550 (PartOf canadian oklahoma) (STV 1.0 0.9091)) +(: cnet_partof_948975fb43 (PartOf canadian texa) (STV 1.0 0.9091)) +(: cnet_partof_1428596959 (PartOf canadian_bacon pork_loin) (STV 1.0 0.9091)) +(: cnet_partof_1d11d2706e (PartOf canadian_fall niagara) (STV 1.0 0.9091)) +(: cnet_partof_3a93a8ced9 (PartOf canadian_fall ontario) (STV 1.0 0.9091)) +(: cnet_partof_8b56b53ac6 (PartOf canary_island spain) (STV 1.0 0.9091)) +(: cnet_partof_67891babb6 (PartOf canberra australia) (STV 1.0 0.9091)) +(: cnet_partof_c52219e87b (PartOf cancer zodiac) (STV 1.0 0.9091)) +(: cnet_partof_813ee3618c (PartOf cancer_cell malignancy) (STV 1.0 0.9091)) +(: cnet_partof_0ad85f5791 (PartOf cancun quintana_roo) (STV 1.0 0.9091)) +(: cnet_partof_0ded5dd38c (PartOf candida_albican candidiasis) (STV 1.0 0.9091)) +(: cnet_partof_c6809be209 (PartOf candlema february) (STV 1.0 0.9091)) +(: cnet_partof_ca84afe197 (PartOf candlenut candlenut) (STV 1.0 0.9091)) +(: cnet_partof_524258b73e (PartOf candlewick candle) (STV 1.0 0.9091)) +(: cnet_partof_c007f753b9 (PartOf canella wild_cinnamon) (STV 1.0 0.9091)) +(: cnet_partof_a78015e8f3 (PartOf canistel canistel) (STV 1.0 0.9091)) +(: cnet_partof_088e63d11c (PartOf cannabis cannabis) (STV 1.0 0.9091)) +(: cnet_partof_6b3bf00ad9 (PartOf cannae punic_war) (STV 1.0 0.9091)) +(: cnet_partof_2b3022d13a (PartOf canne france) (STV 1.0 0.9091)) +(: cnet_partof_3bc0d4e441 (PartOf cannon animal_leg) (STV 1.0 0.9091)) +(: cnet_partof_3addc60cf8 (PartOf cannon ungulate) (STV 1.0 0.9091)) +(: cnet_partof_2226f1a1dc (PartOf cannon bomber) (STV 1.0 0.9091)) +(: cnet_partof_db97b66581 (PartOf cannon tank) (STV 1.0 0.9091)) +(: cnet_partof_888fcbed3f (PartOf cannon body_armor) (STV 1.0 0.9091)) +(: cnet_partof_f88413b2e3 (PartOf cannon_bone cannon) (STV 1.0 0.9091)) +(: cnet_partof_67ada2217c (PartOf canopy cockpit) (STV 1.0 0.9091)) +(: cnet_partof_b6eb0a1d3b (PartOf canopy parachute) (STV 1.0 0.9091)) +(: cnet_partof_c1c0d4f37d (PartOf cantabrian_mountain spain) (STV 1.0 0.9091)) +(: cnet_partof_4b2f464c64 (PartOf cantaloup cantaloupe) (STV 1.0 0.9091)) +(: cnet_partof_1006a760e9 (PartOf canterbury kent) (STV 1.0 0.9091)) +(: cnet_partof_fbf54506de (PartOf canthus eye) (STV 1.0 0.9091)) +(: cnet_partof_c980ec8e63 (PartOf cantle saddle) (STV 1.0 0.9091)) +(: cnet_partof_30f6e66f01 (PartOf canto poem) (STV 1.0 0.9091)) +(: cnet_partof_435aa27508 (PartOf canva ring) (STV 1.0 0.9091)) +(: cnet_partof_5bce7d27b3 (PartOf canyonland_national_park utah) (STV 1.0 0.9091)) +(: cnet_partof_292eca06a2 (PartOf canyonside canyon) (STV 1.0 0.9091)) +(: cnet_partof_09da1691d1 (PartOf cap fungus) (STV 1.0 0.9091)) +(: cnet_partof_9e93be4c6f (PartOf capacitor circuit) (STV 1.0 0.9091)) +(: cnet_partof_62ce107983 (PartOf capacitor distributor) (STV 1.0 0.9091)) +(: cnet_partof_e57f06965d (PartOf cape_ann massachusett) (STV 1.0 0.9091)) +(: cnet_partof_0a62bae1c8 (PartOf cape_breton_island nova_scotia) (STV 1.0 0.9091)) +(: cnet_partof_31d6f46660 (PartOf cape_canaveral florida) (STV 1.0 0.9091)) +(: cnet_partof_63a7ce8041 (PartOf cape_cod massachusett) (STV 1.0 0.9091)) +(: cnet_partof_2f194ce828 (PartOf cape_cod_bay massachusett_bay) (STV 1.0 0.9091)) +(: cnet_partof_5f6324e41b (PartOf cape_cod_canal massachusett) (STV 1.0 0.9091)) +(: cnet_partof_8b4a69f84b (PartOf cape_fear north_carolina) (STV 1.0 0.9091)) +(: cnet_partof_b28cfb0fc0 (PartOf cape_fear_river north_carolina) (STV 1.0 0.9091)) +(: cnet_partof_51957d23c3 (PartOf cape_flattery washington) (STV 1.0 0.9091)) +(: cnet_partof_15e3d75ef6 (PartOf cape_froward chile) (STV 1.0 0.9091)) +(: cnet_partof_ca2f774d79 (PartOf cape_girardeau missouri) (STV 1.0 0.9091)) +(: cnet_partof_29f60c1d14 (PartOf cape_hattera north_carolina) (STV 1.0 0.9091)) +(: cnet_partof_1569f0d513 (PartOf cape_horn chile) (STV 1.0 0.9091)) +(: cnet_partof_723488651e (PartOf cape_may new_jersey) (STV 1.0 0.9091)) +(: cnet_partof_f983364e4a (PartOf cape_passero sicily) (STV 1.0 0.9091)) +(: cnet_partof_99d92afdf6 (PartOf cape_province south_africa) (STV 1.0 0.9091)) +(: cnet_partof_9dca609c0b (PartOf cape_sable everglade_national_park) (STV 1.0 0.9091)) +(: cnet_partof_e82fa32a8e (PartOf cape_sable nova_scotia) (STV 1.0 0.9091)) +(: cnet_partof_081f2d3e7f (PartOf cape_town south_africa) (STV 1.0 0.9091)) +(: cnet_partof_881dec9c48 (PartOf cape_trafalgar spain) (STV 1.0 0.9091)) +(: cnet_partof_e03dcbad71 (PartOf cape_verde cape_verde_island) (STV 1.0 0.9091)) +(: cnet_partof_97d61ff51e (PartOf cape_verde_island atlantic) (STV 1.0 0.9091)) +(: cnet_partof_999059e127 (PartOf cape_york australia) (STV 1.0 0.9091)) +(: cnet_partof_0858ad70b7 (PartOf cape_york cape_york_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_01325d8ac2 (PartOf cape_york_peninsula australia) (STV 1.0 0.9091)) +(: cnet_partof_6bca38a1bf (PartOf cape_york_peninsula queensland) (STV 1.0 0.9091)) +(: cnet_partof_5398867c3d (PartOf caper common_caper) (STV 1.0 0.9091)) +(: cnet_partof_28fcee2b65 (PartOf capillary thermometer) (STV 1.0 0.9091)) +(: cnet_partof_504035ee7b (PartOf capital column) (STV 1.0 0.9091)) +(: cnet_partof_3e2825b69c (PartOf capital_account balance_of_payment) (STV 1.0 0.9091)) +(: cnet_partof_ac49005f9b (PartOf capital_of_malaysia malaysia) (STV 1.0 0.9091)) +(: cnet_partof_b3ff98f7b3 (PartOf capitol washington) (STV 1.0 0.9091)) +(: cnet_partof_f48d4f03b6 (PartOf capitol_hill washington) (STV 1.0 0.9091)) +(: cnet_partof_c3715a8ff9 (PartOf capitol_reef_national_park utah) (STV 1.0 0.9091)) +(: cnet_partof_9260755c3b (PartOf caporetto world_war_i) (STV 1.0 0.9091)) +(: cnet_partof_a0c2ba87c7 (PartOf cappadocia asia_minor) (STV 1.0 0.9091)) +(: cnet_partof_004313c423 (PartOf capri campania) (STV 1.0 0.9091)) +(: cnet_partof_f16d5a0d0d (PartOf capricornus zodiac) (STV 1.0 0.9091)) +(: cnet_partof_224b911b09 (PartOf capsid virion) (STV 1.0 0.9091)) +(: cnet_partof_8749798cf0 (PartOf capstone wall) (STV 1.0 0.9091)) +(: cnet_partof_d5cfe3d104 (PartOf caption illustration) (STV 1.0 0.9091)) +(: cnet_partof_2ca86c225c (PartOf capulin capulin) (STV 1.0 0.9091)) +(: cnet_partof_d72cf8ca95 (PartOf car airship) (STV 1.0 0.9091)) +(: cnet_partof_396deb9af4 (PartOf car elevator) (STV 1.0 0.9091)) +(: cnet_partof_0d2510c14a (PartOf car_battery electrical_system) (STV 1.0 0.9091)) +(: cnet_partof_44c6e3e638 (PartOf car_door car) (STV 1.0 0.9091)) +(: cnet_partof_0bd9e6784b (PartOf car_horn car) (STV 1.0 0.9091)) +(: cnet_partof_db35cfab55 (PartOf car_mirror car) (STV 1.0 0.9091)) +(: cnet_partof_c3581bc7e7 (PartOf car_seat car) (STV 1.0 0.9091)) +(: cnet_partof_f08d8ac483 (PartOf car_wheel motor_vehicle) (STV 1.0 0.9091)) +(: cnet_partof_78c7bfea5c (PartOf car_window car) (STV 1.0 0.9091)) +(: cnet_partof_09bdd6ceb7 (PartOf caraca venezuela) (STV 1.0 0.9091)) +(: cnet_partof_603a73317a (PartOf carambola carambola) (STV 1.0 0.9091)) +(: cnet_partof_2335fb9076 (PartOf carapace arthropod) (STV 1.0 0.9091)) +(: cnet_partof_0d362c0aaf (PartOf carapace mollusk) (STV 1.0 0.9091)) +(: cnet_partof_760d1f29cf (PartOf carapace turtle) (STV 1.0 0.9091)) +(: cnet_partof_34fb4aafab (PartOf carat gram) (STV 1.0 0.9091)) +(: cnet_partof_1680a5a9f0 (PartOf caraway caraway) (STV 1.0 0.9091)) +(: cnet_partof_34afd7d7a6 (PartOf caraway_seed caraway) (STV 1.0 0.9091)) +(: cnet_partof_b4a157afec (PartOf carbondale illinois) (STV 1.0 0.9091)) +(: cnet_partof_7756e5b51c (PartOf carboniferous paleozoic) (STV 1.0 0.9091)) +(: cnet_partof_e656dada72 (PartOf carburator car) (STV 1.0 0.9091)) +(: cnet_partof_97b40ce014 (PartOf carburetor fuel_system) (STV 1.0 0.9091)) +(: cnet_partof_ce65bc9b86 (PartOf card_swipe vending_machine) (STV 1.0 0.9091)) +(: cnet_partof_25117bc849 (PartOf cardamom cardamom) (STV 1.0 0.9091)) +(: cnet_partof_fac7985465 (PartOf cardiac_massage cardiopulmonary_resuscitation) (STV 1.0 0.9091)) +(: cnet_partof_dd40c041f0 (PartOf cardiac_muscle heart) (STV 1.0 0.9091)) +(: cnet_partof_c9f03fb57c (PartOf cardiac_sphincter esophagus) (STV 1.0 0.9091)) +(: cnet_partof_febfa369ce (PartOf cardiff wale) (STV 1.0 0.9091)) +(: cnet_partof_49145f54b7 (PartOf cardiograph cardiac_monitor) (STV 1.0 0.9091)) +(: cnet_partof_4044709a8b (PartOf cardoon cardoon) (STV 1.0 0.9091)) +(: cnet_partof_9e98e48544 (PartOf cargo_area ship) (STV 1.0 0.9091)) +(: cnet_partof_291e75bdc5 (PartOf caribbean_island caribbean) (STV 1.0 0.9091)) +(: cnet_partof_8e2ff7e267 (PartOf carina argo) (STV 1.0 0.9091)) +(: cnet_partof_5e0400f43b (PartOf carina_fornicis fornix) (STV 1.0 0.9091)) +(: cnet_partof_a3d125688b (PartOf carissa_plum natal_plum) (STV 1.0 0.9091)) +(: cnet_partof_08db904ba3 (PartOf carlsbad new_mexico) (STV 1.0 0.9091)) +(: cnet_partof_e19c911479 (PartOf carlsbad_cavern new_mexico) (STV 1.0 0.9091)) +(: cnet_partof_0f9baec3e7 (PartOf carlsbad_cavern_national_park new_mexico) (STV 1.0 0.9091)) +(: cnet_partof_74115059fe (PartOf carnegie_mellon_university pittsburgh) (STV 1.0 0.9091)) +(: cnet_partof_df6227da3f (PartOf carob carob) (STV 1.0 0.9091)) +(: cnet_partof_f214c12cfa (PartOf carolina south) (STV 1.0 0.9091)) +(: cnet_partof_19edf34c96 (PartOf caroline_island micronesia) (STV 1.0 0.9091)) +(: cnet_partof_8dbefad9fc (PartOf carom billiard) (STV 1.0 0.9091)) +(: cnet_partof_f11f1e0406 (PartOf carom pool) (STV 1.0 0.9091)) +(: cnet_partof_c1998e79f2 (PartOf carotid_artery neck) (STV 1.0 0.9091)) +(: cnet_partof_3a55100fb3 (PartOf carp domestic_carp) (STV 1.0 0.9091)) +(: cnet_partof_e98c0ea786 (PartOf carpal_bone wrist) (STV 1.0 0.9091)) +(: cnet_partof_187c1c7333 (PartOf carpal_tunnel wrist) (STV 1.0 0.9091)) +(: cnet_partof_c4613171db (PartOf carpathian poland) (STV 1.0 0.9091)) +(: cnet_partof_b1827aefba (PartOf carpathian romania) (STV 1.0 0.9091)) +(: cnet_partof_1fd7450c47 (PartOf carpathian slovakia) (STV 1.0 0.9091)) +(: cnet_partof_7baddca280 (PartOf carpathian ukraine) (STV 1.0 0.9091)) +(: cnet_partof_6374705ade (PartOf carpel flower) (STV 1.0 0.9091)) +(: cnet_partof_14b7d7b606 (PartOf carpospore red_algae) (STV 1.0 0.9091)) +(: cnet_partof_08dd6519aa (PartOf carrel library) (STV 1.0 0.9091)) +(: cnet_partof_3aa2125535 (PartOf carriage lathe) (STV 1.0 0.9091)) +(: cnet_partof_e337cbbf8e (PartOf carriage typewriter) (STV 1.0 0.9091)) +(: cnet_partof_56b77f0751 (PartOf carriageway expressway) (STV 1.0 0.9091)) +(: cnet_partof_3af50642fe (PartOf carrot carrot) (STV 1.0 0.9091)) +(: cnet_partof_d09574babb (PartOf carson_city nevada) (STV 1.0 0.9091)) +(: cnet_partof_eed2a22e6d (PartOf cartagena colombia) (STV 1.0 0.9091)) +(: cnet_partof_d1087a3902 (PartOf cartagena spain) (STV 1.0 0.9091)) +(: cnet_partof_3d736cbe28 (PartOf carthage phoenicia) (STV 1.0 0.9091)) +(: cnet_partof_a4e09bf87a (PartOf cartoon publication) (STV 1.0 0.9091)) +(: cnet_partof_7c0c3ab0ac (PartOf cartridge record_player) (STV 1.0 0.9091)) +(: cnet_partof_10ef121017 (PartOf cartridge_ejector gun) (STV 1.0 0.9091)) +(: cnet_partof_cbde88f230 (PartOf cartridge_extractor gun) (STV 1.0 0.9091)) +(: cnet_partof_986bdd53a6 (PartOf cartridge_holder gun) (STV 1.0 0.9091)) +(: cnet_partof_b54c2efcf9 (PartOf cartwheel cart) (STV 1.0 0.9091)) +(: cnet_partof_93a554cdc3 (PartOf casablanca morocco) (STV 1.0 0.9091)) +(: cnet_partof_20bf141be2 (PartOf cascade coast_range) (STV 1.0 0.9091)) +(: cnet_partof_7ac6fced53 (PartOf cascade northwest) (STV 1.0 0.9091)) +(: cnet_partof_8e51dfc9bf (PartOf cascara cascara_buckthorn) (STV 1.0 0.9091)) +(: cnet_partof_bb89865f27 (PartOf cascarilla_bark cascarilla) (STV 1.0 0.9091)) +(: cnet_partof_11596dd9f5 (PartOf cashew cashew) (STV 1.0 0.9091)) +(: cnet_partof_9b08945528 (PartOf casing doorway) (STV 1.0 0.9091)) +(: cnet_partof_53db5f989e (PartOf casing pneumatic_tire) (STV 1.0 0.9091)) +(: cnet_partof_1eef5773bb (PartOf casing window) (STV 1.0 0.9091)) +(: cnet_partof_e32d5201ad (PartOf casper wyoming) (STV 1.0 0.9091)) +(: cnet_partof_89d1249fd3 (PartOf caspian iran) (STV 1.0 0.9091)) +(: cnet_partof_0b304cff95 (PartOf caspian soviet_union) (STV 1.0 0.9091)) +(: cnet_partof_1e2064204c (PartOf casque body_armor) (STV 1.0 0.9091)) +(: cnet_partof_7bf2312115 (PartOf cassava bitter_cassava) (STV 1.0 0.9091)) +(: cnet_partof_c715722c79 (PartOf cassette_tape cassette) (STV 1.0 0.9091)) +(: cnet_partof_6fecb40216 (PartOf cassia_bark cassia) (STV 1.0 0.9091)) +(: cnet_partof_a791b59488 (PartOf cast crap) (STV 1.0 0.9091)) +(: cnet_partof_97c6149a5f (PartOf caste colony) (STV 1.0 0.9091)) +(: cnet_partof_0097702f6f (PartOf castile spain) (STV 1.0 0.9091)) +(: cnet_partof_75aff67b3c (PartOf castor_bean castor_oil_plant) (STV 1.0 0.9091)) +(: cnet_partof_e6c0a7f5c9 (PartOf castry saint_lucia) (STV 1.0 0.9091)) +(: cnet_partof_ac8ff75860 (PartOf casualty_care_research_center department_of_defense) (STV 1.0 0.9091)) +(: cnet_partof_8603997b08 (PartOf catabolism metabolism) (STV 1.0 0.9091)) +(: cnet_partof_6b30c31167 (PartOf cataloged_procedure library) (STV 1.0 0.9091)) +(: cnet_partof_524b32fb5f (PartOf catalonia spain) (STV 1.0 0.9091)) +(: cnet_partof_2934547fa9 (PartOf catalytic_cracker oil_refinery) (STV 1.0 0.9091)) +(: cnet_partof_87329fb320 (PartOf cataract_canyon arizona) (STV 1.0 0.9091)) +(: cnet_partof_c72ec9aea2 (PartOf catatonia catatonic_schizophrenia) (STV 1.0 0.9091)) +(: cnet_partof_c7b383cb0c (PartOf cathedra cathedral) (STV 1.0 0.9091)) +(: cnet_partof_aef777ac33 (PartOf cathode electrolytic_cell) (STV 1.0 0.9091)) +(: cnet_partof_a954475d4d (PartOf cathode storage_battery) (STV 1.0 0.9091)) +(: cnet_partof_c59e9cea37 (PartOf cathode tube) (STV 1.0 0.9091)) +(: cnet_partof_42385f2001 (PartOf cathode voltaic_cell) (STV 1.0 0.9091)) +(: cnet_partof_c857fb7e14 (PartOf cathode_ray_tube computer) (STV 1.0 0.9091)) +(: cnet_partof_74f16cdb9c (PartOf cathode_ray_tube oscilloscope) (STV 1.0 0.9091)) +(: cnet_partof_b12c0b3309 (PartOf cathode_ray_tube television) (STV 1.0 0.9091)) +(: cnet_partof_f9a3150336 (PartOf catskill appalachian) (STV 1.0 0.9091)) +(: cnet_partof_28b4bdca26 (PartOf catskill new_york) (STV 1.0 0.9091)) +(: cnet_partof_29635eecb7 (PartOf caucasus caucasia) (STV 1.0 0.9091)) +(: cnet_partof_0dc82ddd05 (PartOf caudal_appendage vertebrate) (STV 1.0 0.9091)) +(: cnet_partof_d6de264490 (PartOf caudate_nucleus corpus_striatum) (STV 1.0 0.9091)) +(: cnet_partof_c286c236a0 (PartOf caul placenta) (STV 1.0 0.9091)) +(: cnet_partof_caa7be2c93 (PartOf cauliflower cauliflower) (STV 1.0 0.9091)) +(: cnet_partof_bd83048960 (PartOf cavity body) (STV 1.0 0.9091)) +(: cnet_partof_6644c48703 (PartOf cayman_island west_indy) (STV 1.0 0.9091)) +(: cnet_partof_847abc6b48 (PartOf cd_drive cd_player) (STV 1.0 0.9091)) +(: cnet_partof_75c41990c4 (PartOf cebu philippine) (STV 1.0 0.9091)) +(: cnet_partof_15c76f14bd (PartOf cecum large_intestine) (STV 1.0 0.9091)) +(: cnet_partof_5ce722720a (PartOf cedar_rapid iowa) (STV 1.0 0.9091)) +(: cnet_partof_7dd014f108 (PartOf ceiling hallway) (STV 1.0 0.9091)) +(: cnet_partof_315cf0e5ae (PartOf ceiling room) (STV 1.0 0.9091)) +(: cnet_partof_bd39895113 (PartOf celebe indonesia) (STV 1.0 0.9091)) +(: cnet_partof_3b7edcce40 (PartOf celeriac celeriac) (STV 1.0 0.9091)) +(: cnet_partof_eea1e21aca (PartOf celery celery) (STV 1.0 0.9091)) +(: cnet_partof_32bcb9ac13 (PartOf celery_seed celery) (STV 1.0 0.9091)) +(: cnet_partof_ed124e7c9e (PartOf celery_stick celery) (STV 1.0 0.9091)) +(: cnet_partof_eeef3ee353 (PartOf celestial_body universe) (STV 1.0 0.9091)) +(: cnet_partof_35b8bc3f53 (PartOf celestial_point celestial_sphere) (STV 1.0 0.9091)) +(: cnet_partof_296e683cb1 (PartOf cell cellblock) (STV 1.0 0.9091)) +(: cnet_partof_3f20651c44 (PartOf cell convent) (STV 1.0 0.9091)) +(: cnet_partof_17841fafbd (PartOf cell monastery) (STV 1.0 0.9091)) +(: cnet_partof_fd0ea0889e (PartOf cell organism) (STV 1.0 0.9091)) +(: cnet_partof_b7735e0136 (PartOf cell_wall cell) (STV 1.0 0.9091)) +(: cnet_partof_b56f489fe0 (PartOf cell_wall plant_cell) (STV 1.0 0.9091)) +(: cnet_partof_1ad72add28 (PartOf cellblock prison) (STV 1.0 0.9091)) +(: cnet_partof_ac4381e25f (PartOf celtuce celtuce) (STV 1.0 0.9091)) +(: cnet_partof_14dcd6cc55 (PartOf cembra_nut swiss_pine) (STV 1.0 0.9091)) +(: cnet_partof_dd9c0dfe3c (PartOf cementum root) (STV 1.0 0.9091)) +(: cnet_partof_ef01b11474 (PartOf cenozoic phanerozoic) (STV 1.0 0.9091)) +(: cnet_partof_549aecc1a5 (PartOf cent birr) (STV 1.0 0.9091)) +(: cnet_partof_7b09b430f1 (PartOf cent british_shilling) (STV 1.0 0.9091)) +(: cnet_partof_ce8fb085f1 (PartOf cent dollar) (STV 1.0 0.9091)) +(: cnet_partof_b6ce0709ec (PartOf cent guilder) (STV 1.0 0.9091)) +(: cnet_partof_4e71cb6b56 (PartOf cent leone) (STV 1.0 0.9091)) +(: cnet_partof_70d1008666 (PartOf cent lilangeni) (STV 1.0 0.9091)) +(: cnet_partof_17da482a2e (PartOf cent mauritian_rupee) (STV 1.0 0.9091)) +(: cnet_partof_01f2aea4e9 (PartOf cent rand) (STV 1.0 0.9091)) +(: cnet_partof_15635d350d (PartOf cent seychelle_rupee) (STV 1.0 0.9091)) +(: cnet_partof_ca54c3b32b (PartOf centavo austral) (STV 1.0 0.9091)) +(: cnet_partof_e69a1e03e4 (PartOf centavo boliviano) (STV 1.0 0.9091)) +(: cnet_partof_d7d2a796d7 (PartOf centavo cape_verde_escudo) (STV 1.0 0.9091)) +(: cnet_partof_f9e1e48c7d (PartOf centavo colombian_peso) (STV 1.0 0.9091)) +(: cnet_partof_fecdeccf4b (PartOf centavo colon) (STV 1.0 0.9091)) +(: cnet_partof_bc97abf5d8 (PartOf centavo cordoba) (STV 1.0 0.9091)) +(: cnet_partof_7e1880596f (PartOf centavo cuban_peso) (STV 1.0 0.9091)) +(: cnet_partof_51571bdfab (PartOf centavo dobra) (STV 1.0 0.9091)) +(: cnet_partof_22d14fd1fd (PartOf centavo dominican_peso) (STV 1.0 0.9091)) +(: cnet_partof_026a6bf515 (PartOf centavo guinea_bissau_peso) (STV 1.0 0.9091)) +(: cnet_partof_7738d6a868 (PartOf centavo lempira) (STV 1.0 0.9091)) +(: cnet_partof_884a4094c6 (PartOf centavo metical) (STV 1.0 0.9091)) +(: cnet_partof_0ffbdf9e0c (PartOf centavo mexican_peso) (STV 1.0 0.9091)) +(: cnet_partof_e96baa3090 (PartOf centavo philippine_peso) (STV 1.0 0.9091)) +(: cnet_partof_14c75d43e6 (PartOf centavo portuguese_escudo) (STV 1.0 0.9091)) +(: cnet_partof_9bf066b746 (PartOf centavo quetzal) (STV 1.0 0.9091)) +(: cnet_partof_7c43f14d0c (PartOf centavo real) (STV 1.0 0.9091)) +(: cnet_partof_b223b72a14 (PartOf centavo sucre) (STV 1.0 0.9091)) +(: cnet_partof_d3aa84a55e (PartOf centavo uruguayan_peso) (STV 1.0 0.9091)) +(: cnet_partof_1898ae5b94 (PartOf center_field outfield) (STV 1.0 0.9091)) +(: cnet_partof_b1aef99ec3 (PartOf center_for_disease_control_and_prevention atlanta) (STV 1.0 0.9091)) +(: cnet_partof_bc97a5e5da (PartOf center_for_disease_control_and_prevention department_of_health_and_human_service) (STV 1.0 0.9091)) +(: cnet_partof_52622c1423 (PartOf center_spread magazine) (STV 1.0 0.9091)) +(: cnet_partof_9ec07f7e18 (PartOf centerboard sailboat) (STV 1.0 0.9091)) +(: cnet_partof_4b5face5c4 (PartOf centesimo balboa) (STV 1.0 0.9091)) +(: cnet_partof_13373523cd (PartOf centesimo chilean_peso) (STV 1.0 0.9091)) +(: cnet_partof_d840be7aed (PartOf centesimo lira) (STV 1.0 0.9091)) +(: cnet_partof_66462e8113 (PartOf centesimo uruguayan_peso) (STV 1.0 0.9091)) +(: cnet_partof_78e6c02e36 (PartOf centiliter deciliter) (STV 1.0 0.9091)) +(: cnet_partof_2a5921a029 (PartOf centime algerian_dinar) (STV 1.0 0.9091)) +(: cnet_partof_09903aa15a (PartOf centime belgian_franc) (STV 1.0 0.9091)) +(: cnet_partof_8037eaff12 (PartOf centime burkina_faso_franc) (STV 1.0 0.9091)) +(: cnet_partof_d0de5edc2b (PartOf centime burundi_franc) (STV 1.0 0.9091)) +(: cnet_partof_8cd7a460d3 (PartOf centime cameroon_franc) (STV 1.0 0.9091)) +(: cnet_partof_d127a58953 (PartOf centime chadian_franc) (STV 1.0 0.9091)) +(: cnet_partof_eac5cb18d1 (PartOf centime congo_franc) (STV 1.0 0.9091)) +(: cnet_partof_aab037e157 (PartOf centime franc) (STV 1.0 0.9091)) +(: cnet_partof_10fb0ed8cb (PartOf centime gabon_franc) (STV 1.0 0.9091)) +(: cnet_partof_c8db67ce48 (PartOf centime ivory_coast_franc) (STV 1.0 0.9091)) +(: cnet_partof_be0948e269 (PartOf centime luxembourg_franc) (STV 1.0 0.9091)) +(: cnet_partof_d20633616f (PartOf centime mali_franc) (STV 1.0 0.9091)) +(: cnet_partof_4958ab1527 (PartOf centime moroccan_dirham) (STV 1.0 0.9091)) +(: cnet_partof_2591a1d5e0 (PartOf centime niger_franc) (STV 1.0 0.9091)) +(: cnet_partof_b93c8dec35 (PartOf centime rwanda_franc) (STV 1.0 0.9091)) +(: cnet_partof_550227ac21 (PartOf centime senegalese_franc) (STV 1.0 0.9091)) +(: cnet_partof_83725bcdfc (PartOf centime swiss_franc) (STV 1.0 0.9091)) +(: cnet_partof_0b18285cb1 (PartOf centime togo_franc) (STV 1.0 0.9091)) +(: cnet_partof_87fa34cb45 (PartOf centimeter decimeter) (STV 1.0 0.9091)) +(: cnet_partof_fbaf4be224 (PartOf centimo bolivar) (STV 1.0 0.9091)) +(: cnet_partof_44f462c214 (PartOf centimo colon) (STV 1.0 0.9091)) +(: cnet_partof_2a107c91be (PartOf centimo guarani) (STV 1.0 0.9091)) +(: cnet_partof_b0aa6af431 (PartOf centimo peseta) (STV 1.0 0.9091)) +(: cnet_partof_661e6c561e (PartOf centner hundredweight) (STV 1.0 0.9091)) +(: cnet_partof_3e28c9b4b1 (PartOf central telephone_system) (STV 1.0 0.9091)) +(: cnet_partof_b2beeb5829 (PartOf central_african_republic africa) (STV 1.0 0.9091)) +(: cnet_partof_e8248805f1 (PartOf central_america america) (STV 1.0 0.9091)) +(: cnet_partof_284c7545d9 (PartOf central_america latin_america) (STV 1.0 0.9091)) +(: cnet_partof_3e245f1a3d (PartOf central_america north_america) (STV 1.0 0.9091)) +(: cnet_partof_3d09cdfb27 (PartOf central_american_country central_america) (STV 1.0 0.9091)) +(: cnet_partof_6fe6d0b969 (PartOf central_artery_of_retina eye) (STV 1.0 0.9091)) +(: cnet_partof_1eb4606a63 (PartOf central_nervous_system nervous_system) (STV 1.0 0.9091)) +(: cnet_partof_c99d88c9c0 (PartOf central_park manhattan) (STV 1.0 0.9091)) +(: cnet_partof_274257bb98 (PartOf central_processing_unit computer) (STV 1.0 0.9091)) +(: cnet_partof_5bd5780650 (PartOf centre france) (STV 1.0 0.9091)) +(: cnet_partof_ade01851a2 (PartOf centromere chromosome) (STV 1.0 0.9091)) +(: cnet_partof_28da333a6b (PartOf centrum vertebra) (STV 1.0 0.9091)) +(: cnet_partof_6bef0c4c35 (PartOf century millennium) (STV 1.0 0.9091)) +(: cnet_partof_aea53b5c9f (PartOf cephalic_vein arm) (STV 1.0 0.9091)) +(: cnet_partof_efa953d4d5 (PartOf cerebellar_artery cerebellum) (STV 1.0 0.9091)) +(: cnet_partof_81b00b9164 (PartOf cerebellar_hemisphere cerebellum) (STV 1.0 0.9091)) +(: cnet_partof_a7d4f607ca (PartOf cerebellum brain) (STV 1.0 0.9091)) +(: cnet_partof_31c0953035 (PartOf cerebellum hindbrain) (STV 1.0 0.9091)) +(: cnet_partof_aaca9f64f3 (PartOf cerebral_cortex cerebrum) (STV 1.0 0.9091)) +(: cnet_partof_c573fbfccc (PartOf cerebral_hemorrhage stroke) (STV 1.0 0.9091)) +(: cnet_partof_fe11710327 (PartOf cerebrum telencephalon) (STV 1.0 0.9091)) +(: cnet_partof_e43e1dc7a5 (PartOf ceriman ceriman) (STV 1.0 0.9091)) +(: cnet_partof_a151418d7a (PartOf certificate_of_incorporation charter) (STV 1.0 0.9091)) +(: cnet_partof_d0e9c89f27 (PartOf cervical_artery neck) (STV 1.0 0.9091)) +(: cnet_partof_7f55be2ca0 (PartOf cervical_smear pap_test) (STV 1.0 0.9091)) +(: cnet_partof_4dee02a0a1 (PartOf cervical_vertebra neck) (STV 1.0 0.9091)) +(: cnet_partof_a3862a33b2 (PartOf cervix uterus) (STV 1.0 0.9091)) +(: cnet_partof_78c5177b2b (PartOf ceylon indian_ocean) (STV 1.0 0.9091)) +(: cnet_partof_86f4136087 (PartOf chablis france) (STV 1.0 0.9091)) +(: cnet_partof_22fe0d6799 (PartOf chad africa) (STV 1.0 0.9091)) +(: cnet_partof_1b046d0af8 (PartOf chain bicycle) (STV 1.0 0.9091)) +(: cnet_partof_b156684e8d (PartOf chain chain_printer) (STV 1.0 0.9091)) +(: cnet_partof_a0ba732027 (PartOf chain chain_tong) (STV 1.0 0.9091)) +(: cnet_partof_ac462f04c9 (PartOf chain molecule) (STV 1.0 0.9091)) +(: cnet_partof_4f667e17a0 (PartOf chair funiture) (STV 1.0 0.9091)) +(: cnet_partof_2691aaaa1d (PartOf chait hindu_calendar) (STV 1.0 0.9091)) +(: cnet_partof_34d37b2bc2 (PartOf chalaza egg) (STV 1.0 0.9091)) +(: cnet_partof_199b1bccd7 (PartOf chalaza ovule) (STV 1.0 0.9091)) +(: cnet_partof_cec7f050b5 (PartOf chalcedon istanbul) (STV 1.0 0.9091)) +(: cnet_partof_299fb38a47 (PartOf chaldea iraq) (STV 1.0 0.9091)) +(: cnet_partof_27e5d62095 (PartOf chaldea mesopotamia) (STV 1.0 0.9091)) +(: cnet_partof_b805bac8ee (PartOf champagne france) (STV 1.0 0.9091)) +(: cnet_partof_b1f54c8185 (PartOf champaign illinois) (STV 1.0 0.9091)) +(: cnet_partof_3657b9c02e (PartOf champ_elysee paris) (STV 1.0 0.9091)) +(: cnet_partof_c42004c38a (PartOf chancel church) (STV 1.0 0.9091)) +(: cnet_partof_d207e07a19 (PartOf chancellorsville american_civil_war) (STV 1.0 0.9091)) +(: cnet_partof_493106ebaf (PartOf chancellorsville virginia) (STV 1.0 0.9091)) +(: cnet_partof_b25c7aed05 (PartOf chancre syphilis) (STV 1.0 0.9091)) +(: cnet_partof_fb18b35426 (PartOf chancre tularemia) (STV 1.0 0.9091)) +(: cnet_partof_0f03c11f25 (PartOf chang_jiang china) (STV 1.0 0.9091)) +(: cnet_partof_399ff7f940 (PartOf change_slot vending_machine) (STV 1.0 0.9091)) +(: cnet_partof_05b4a1f547 (PartOf changtzu himalaya) (STV 1.0 0.9091)) +(: cnet_partof_c75c7023dc (PartOf changtzu nepal) (STV 1.0 0.9091)) +(: cnet_partof_338e61769e (PartOf changtzu tibet) (STV 1.0 0.9091)) +(: cnet_partof_727d7f1115 (PartOf channel_island british_isle) (STV 1.0 0.9091)) +(: cnet_partof_d4e66bf39a (PartOf channel_island english_channel) (STV 1.0 0.9091)) +(: cnet_partof_d1acd38049 (PartOf channel_island_national_park california) (STV 1.0 0.9091)) +(: cnet_partof_587b26ffbd (PartOf chanter bagpipe) (STV 1.0 0.9091)) +(: cnet_partof_f2e3a8cd2a (PartOf chao_phraya thailand) (STV 1.0 0.9091)) +(: cnet_partof_33ea44b546 (PartOf chapel_hill north_carolina) (STV 1.0 0.9091)) +(: cnet_partof_3255dd84b8 (PartOf chapter book) (STV 1.0 0.9636)) +(: cnet_partof_ca55a5bd8f (PartOf chapter of_book) (STV 1.0 0.9608)) +(: cnet_partof_5cc464b73d (PartOf chapter text) (STV 1.0 0.9091)) +(: cnet_partof_89ed997ef8 (PartOf chapultepec mexican_war) (STV 1.0 0.9091)) +(: cnet_partof_525eab7e3b (PartOf character personality) (STV 1.0 0.9091)) +(: cnet_partof_1172a229bb (PartOf characteristic nature) (STV 1.0 0.9091)) +(: cnet_partof_eb331a2307 (PartOf charade charade) (STV 1.0 0.9091)) +(: cnet_partof_dda9ed1e6f (PartOf chard chard) (STV 1.0 0.9091)) +(: cnet_partof_67d7faaa35 (PartOf charge indictment) (STV 1.0 0.9091)) +(: cnet_partof_5bd381d0cf (PartOf charleroi belgium) (STV 1.0 0.9091)) +(: cnet_partof_26be37af7c (PartOf charle massachusett) (STV 1.0 0.9091)) +(: cnet_partof_fedfdd9346 (PartOf charleston south_carolina) (STV 1.0 0.9091)) +(: cnet_partof_9c1fc39249 (PartOf charleston west_virginia) (STV 1.0 0.9091)) +(: cnet_partof_e43c7802d1 (PartOf charlestown boston) (STV 1.0 0.9091)) +(: cnet_partof_90badad398 (PartOf charlestown_navy_yard boston) (STV 1.0 0.9091)) +(: cnet_partof_44c7c44f44 (PartOf charlotte north_carolina) (STV 1.0 0.9091)) +(: cnet_partof_39222e3aed (PartOf charlottetown prince_edward_island) (STV 1.0 0.9091)) +(: cnet_partof_5a5fd54b47 (PartOf chartre france) (STV 1.0 0.9091)) +(: cnet_partof_048151d9f1 (PartOf chartre_cathedral chartre) (STV 1.0 0.9091)) +(: cnet_partof_50d8e41648 (PartOf chassis motor_vehicle) (STV 1.0 0.9091)) +(: cnet_partof_b9bdd6d70c (PartOf chattahoochee georgia) (STV 1.0 0.9091)) +(: cnet_partof_f08e47e937 (PartOf chattanooga american_civil_war) (STV 1.0 0.9091)) +(: cnet_partof_61cca48c8d (PartOf chattanooga tennessee) (STV 1.0 0.9091)) +(: cnet_partof_53e9ab1646 (PartOf chechnya russia) (STV 1.0 0.9091)) +(: cnet_partof_9f52ebb48c (PartOf check ice_hockey) (STV 1.0 0.9091)) +(: cnet_partof_fee84c9c41 (PartOf checkerboard checker) (STV 1.0 0.9091)) +(: cnet_partof_49e5a5f97f (PartOf checkerboard chess) (STV 1.0 0.9091)) +(: cnet_partof_48d29db7c1 (PartOf cheddar england) (STV 1.0 0.9091)) +(: cnet_partof_90db560ab7 (PartOf cheek face) (STV 1.0 0.9091)) +(: cnet_partof_10510a8811 (PartOf cheek_muscle cheek) (STV 1.0 0.9091)) +(: cnet_partof_9034515a7c (PartOf cheekbone skull) (STV 1.0 0.9091)) +(: cnet_partof_dc83ef4617 (PartOf cheekpiece bridle) (STV 1.0 0.9091)) +(: cnet_partof_93e2064b69 (PartOf cheerfulness disposition) (STV 1.0 0.9091)) +(: cnet_partof_6a62ee19ba (PartOf cheese_rind cheese) (STV 1.0 0.9091)) +(: cnet_partof_66b29539fa (PartOf chelyabinsk russia) (STV 1.0 0.9091)) +(: cnet_partof_a8bab01f32 (PartOf chemical_notation formula) (STV 1.0 0.9091)) +(: cnet_partof_6cef59ea43 (PartOf chemnitz germany) (STV 1.0 0.9091)) +(: cnet_partof_5cce5cd29e (PartOf chennai india) (STV 1.0 0.9091)) +(: cnet_partof_e89c579149 (PartOf cherbourg france) (STV 1.0 0.9091)) +(: cnet_partof_e322db2cdd (PartOf cherepovet russia) (STV 1.0 0.9091)) +(: cnet_partof_5972a4dfde (PartOf cherimoya cherimoya) (STV 1.0 0.9091)) +(: cnet_partof_07bbad246a (PartOf chernobyl ukraine) (STV 1.0 0.9339)) +(: cnet_partof_e5b0a2e035 (PartOf cherry cherry) (STV 1.0 0.9091)) +(: cnet_partof_cdef28426e (PartOf cherry_tomato cherry_tomato) (STV 1.0 0.9091)) +(: cnet_partof_43c5e06739 (PartOf chervil chervil) (STV 1.0 0.9091)) +(: cnet_partof_63074b0c97 (PartOf chesapeake_bay atlantic) (STV 1.0 0.9091)) +(: cnet_partof_f26a2daabf (PartOf chesapeake_bay maryland) (STV 1.0 0.9091)) +(: cnet_partof_a5b1115118 (PartOf chesapeake_bay virginia) (STV 1.0 0.9091)) +(: cnet_partof_54ae4dba91 (PartOf chess_move chess) (STV 1.0 0.9091)) +(: cnet_partof_d3347b2f79 (PartOf chessboard chess_set) (STV 1.0 0.9091)) +(: cnet_partof_e44e52184b (PartOf chessman chess_set) (STV 1.0 0.9091)) +(: cnet_partof_ab70524333 (PartOf chest person) (STV 1.0 0.9091)) +(: cnet_partof_8e0ccb6046 (PartOf chest_cavity thorax) (STV 1.0 0.9091)) +(: cnet_partof_1d92a6d879 (PartOf chester pennsylvania) (STV 1.0 0.9091)) +(: cnet_partof_8d9cc01754 (PartOf chestnut chestnut) (STV 1.0 0.9091)) +(: cnet_partof_75d3a35d88 (PartOf chetrum ngultrum) (STV 1.0 0.9091)) +(: cnet_partof_50767fc822 (PartOf cheviot_hill england) (STV 1.0 0.9091)) +(: cnet_partof_67f40e4d55 (PartOf cheviot_hill scotland) (STV 1.0 0.9091)) +(: cnet_partof_100240a633 (PartOf chew eating) (STV 1.0 0.9091)) +(: cnet_partof_ea9a92d9ef (PartOf cheyenne wyoming) (STV 1.0 0.9091)) +(: cnet_partof_9e13e044c7 (PartOf chicago illinois) (STV 1.0 0.9091)) +(: cnet_partof_3ae5d2ad2b (PartOf chickamauga american_civil_war) (STV 1.0 0.9091)) +(: cnet_partof_2a10af4eef (PartOf chicken chicken) (STV 1.0 0.9091)) +(: cnet_partof_75fd596bec (PartOf chicken_wing chicken) (STV 1.0 0.9091)) +(: cnet_partof_6f2488f00b (PartOf chickpea chickpea) (STV 1.0 0.9091)) +(: cnet_partof_b42053cea2 (PartOf chicory chicory) (STV 1.0 0.9091)) +(: cnet_partof_e68e3bece2 (PartOf chicory_escarole endive) (STV 1.0 0.9091)) +(: cnet_partof_569e0f689f (PartOf chihuahua chihuahua) (STV 1.0 0.9091)) +(: cnet_partof_b322b86325 (PartOf chihuahuan_desert arizona) (STV 1.0 0.9091)) +(: cnet_partof_92d21cbf22 (PartOf chihuahuan_desert mexico) (STV 1.0 0.9091)) +(: cnet_partof_e2ee74993c (PartOf chihuahuan_desert new_mexico) (STV 1.0 0.9091)) +(: cnet_partof_39a39d8176 (PartOf chihuahuan_desert texa) (STV 1.0 0.9091)) +(: cnet_partof_5907930c15 (PartOf child_s_body child) (STV 1.0 0.9091)) +(: cnet_partof_ebdafe7ce0 (PartOf chile south_america) (STV 1.0 0.9091)) +(: cnet_partof_9734dc6227 (PartOf chili cayenne) (STV 1.0 0.9091)) +(: cnet_partof_787644b89a (PartOf chiloe chile) (STV 1.0 0.9091)) +(: cnet_partof_7072ed4bba (PartOf chimborazo ande) (STV 1.0 0.9091)) +(: cnet_partof_d1131fd6a4 (PartOf chimborazo ecuador) (STV 1.0 0.9091)) +(: cnet_partof_504ec9c23c (PartOf chimneystack chimney) (STV 1.0 0.9091)) +(: cnet_partof_3a5dd9f8f3 (PartOf chin face) (STV 1.0 0.9091)) +(: cnet_partof_004a0a5d1a (PartOf chin_rest violin) (STV 1.0 0.9091)) +(: cnet_partof_0a317983fb (PartOf china asia) (STV 1.0 0.9091)) +(: cnet_partof_ac605aabc6 (PartOf chincapin allegheny_chinkapin) (STV 1.0 0.9091)) +(: cnet_partof_3f38a3eecf (PartOf chincapin ozark_chinkapin) (STV 1.0 0.9091)) +(: cnet_partof_75289e96b1 (PartOf chinese_anise star_anise) (STV 1.0 0.9091)) +(: cnet_partof_e651da9e7f (PartOf chinese_wall china) (STV 1.0 0.9091)) +(: cnet_partof_0f1d9350a9 (PartOf chinook_salmon chinook) (STV 1.0 0.9091)) +(: cnet_partof_ef490f416c (PartOf chio greece) (STV 1.0 0.9091)) +(: cnet_partof_73b0191156 (PartOf chip computer) (STV 1.0 0.9091)) +(: cnet_partof_827e8f0207 (PartOf chisholm_trail kansa) (STV 1.0 0.9091)) +(: cnet_partof_f809d5c884 (PartOf chisholm_trail texa) (STV 1.0 0.9091)) +(: cnet_partof_f8b2e6fda3 (PartOf chittagong bangladesh) (STV 1.0 0.9091)) +(: cnet_partof_5b3e9aa45f (PartOf chive chive) (STV 1.0 0.9091)) +(: cnet_partof_a8c264fb78 (PartOf choir chancel) (STV 1.0 0.9091)) +(: cnet_partof_ab390c3246 (PartOf choke circuit) (STV 1.0 0.9091)) +(: cnet_partof_f6c412e840 (PartOf choke fuel_system) (STV 1.0 0.9091)) +(: cnet_partof_f15cbfee92 (PartOf chokecherry chokecherry) (STV 1.0 0.9091)) +(: cnet_partof_73a8d19fd5 (PartOf chon north_korean_won) (STV 1.0 0.9091)) +(: cnet_partof_56d6a92ffd (PartOf chon south_korean_won) (STV 1.0 0.9091)) +(: cnet_partof_57728da3e3 (PartOf chondrule chondrite) (STV 1.0 0.9091)) +(: cnet_partof_168ad7d00b (PartOf chongqing china) (STV 1.0 0.9091)) +(: cnet_partof_b2f014b145 (PartOf chop_suey_green chop_suey_green) (STV 1.0 0.9091)) +(: cnet_partof_d49813d5d9 (PartOf chorion amniote) (STV 1.0 0.9091)) +(: cnet_partof_63e89bbe9a (PartOf chorion fetal_membrane) (STV 1.0 0.9091)) +(: cnet_partof_02020d09b1 (PartOf chorionic_villus chorion) (STV 1.0 0.9091)) +(: cnet_partof_ececa7f49b (PartOf choroid eye) (STV 1.0 0.9091)) +(: cnet_partof_265a2eed1a (PartOf choroidal_artery choroid_plexus) (STV 1.0 0.9091)) +(: cnet_partof_74d1be9619 (PartOf christchurch new_zealand) (STV 1.0 0.9091)) +(: cnet_partof_c9220643e6 (PartOf christma december) (STV 1.0 0.9091)) +(: cnet_partof_7bac3c822b (PartOf christma january) (STV 1.0 0.9091)) +(: cnet_partof_dfd199ffea (PartOf chromatid chromosome) (STV 1.0 0.9091)) +(: cnet_partof_cbe83a78ac (PartOf chromatin chromosome) (STV 1.0 0.9091)) +(: cnet_partof_151d5172a2 (PartOf chromatin nucleus) (STV 1.0 0.9091)) +(: cnet_partof_8efa0beca7 (PartOf chromophore dye) (STV 1.0 0.9091)) +(: cnet_partof_94349c783c (PartOf chromosome nucleus) (STV 1.0 0.9091)) +(: cnet_partof_ede31f8f51 (PartOf chromosphere sun) (STV 1.0 0.9091)) +(: cnet_partof_305fc28626 (PartOf chrysanthemum chrysanthemum) (STV 1.0 0.9091)) +(: cnet_partof_1e895f2efc (PartOf chuck drill) (STV 1.0 0.9091)) +(: cnet_partof_c41afd8b9d (PartOf chuck electric_drill) (STV 1.0 0.9091)) +(: cnet_partof_80ffc6c0ea (PartOf chuck lathe) (STV 1.0 0.9091)) +(: cnet_partof_47c338943f (PartOf chuck side_of_beef) (STV 1.0 0.9091)) +(: cnet_partof_3ea6aed043 (PartOf chukchi_sea arctic_ocean) (STV 1.0 0.9091)) +(: cnet_partof_ea0443fccd (PartOf chukka playing_period) (STV 1.0 0.9091)) +(: cnet_partof_71c1514848 (PartOf chula_vista california) (STV 1.0 0.9091)) +(: cnet_partof_dff08b0621 (PartOf church christendom) (STV 1.0 0.9091)) +(: cnet_partof_3af12bd40c (PartOf church_tower church) (STV 1.0 0.9091)) +(: cnet_partof_1da71f9138 (PartOf churchill manitoba) (STV 1.0 0.9091)) +(: cnet_partof_27faa1a056 (PartOf churchill_down louisville) (STV 1.0 0.9091)) +(: cnet_partof_12714cd87e (PartOf cigar_butt cigar) (STV 1.0 0.9091)) +(: cnet_partof_4b3cc1dcf9 (PartOf cigarette_butt cigarette) (STV 1.0 0.9091)) +(: cnet_partof_0b9fd8cf71 (PartOf ciliary_artery eye) (STV 1.0 0.9091)) +(: cnet_partof_6f02ac30f3 (PartOf ciliary_body eye) (STV 1.0 0.9091)) +(: cnet_partof_f9c9849a02 (PartOf cimarron new_mexico) (STV 1.0 0.9091)) +(: cnet_partof_4ba5947e94 (PartOf cimarron oklahoma) (STV 1.0 0.9091)) +(: cnet_partof_4ec309cb5e (PartOf cinch harness) (STV 1.0 0.9091)) +(: cnet_partof_cb5c7ae47f (PartOf cinchona_bark cinchona) (STV 1.0 0.9091)) +(: cnet_partof_801a3ed24e (PartOf cincinnati ohio) (STV 1.0 0.9091)) +(: cnet_partof_7c35144806 (PartOf cingulate_gyrus limbic_system) (STV 1.0 0.9091)) +(: cnet_partof_277182da74 (PartOf cinnamon cinnamon) (STV 1.0 0.9091)) +(: cnet_partof_123039fd36 (PartOf cinnamon_bark saigon_cinnamon) (STV 1.0 0.9091)) +(: cnet_partof_7dfb3a0b29 (PartOf circle theater) (STV 1.0 0.9091)) +(: cnet_partof_041fcf3746 (PartOf circle_of_willis brain) (STV 1.0 0.9091)) +(: cnet_partof_71f9e300bd (PartOf circuit electronic_equipment) (STV 1.0 0.9091)) +(: cnet_partof_336475a424 (PartOf circulatory_system body) (STV 1.0 0.9091)) +(: cnet_partof_f55b341af3 (PartOf circumflex_artery_of_thigh thigh) (STV 1.0 0.9091)) +(: cnet_partof_f3c4724551 (PartOf circumflex_humeral_artery shoulder) (STV 1.0 0.9091)) +(: cnet_partof_a49f3df117 (PartOf circumflex_scapular_artery shoulder) (STV 1.0 0.9091)) +(: cnet_partof_d4e334efe2 (PartOf circus_tent circus) (STV 1.0 0.9091)) +(: cnet_partof_cea920bfa9 (PartOf citation_form lexical_entry) (STV 1.0 0.9091)) +(: cnet_partof_7dc2446601 (PartOf citizenship_day september) (STV 1.0 0.9091)) +(: cnet_partof_c5dd7035fa (PartOf citlaltepetl mexico) (STV 1.0 0.9091)) +(: cnet_partof_2734a2d59a (PartOf citrange citrange) (STV 1.0 0.9091)) +(: cnet_partof_85b72f5745 (PartOf citron citron) (STV 1.0 0.9091)) +(: cnet_partof_1fa1832dc3 (PartOf citrus citrus) (STV 1.0 0.9091)) +(: cnet_partof_807806c671 (PartOf city_center city) (STV 1.0 0.9091)) +(: cnet_partof_db0dbbef00 (PartOf city_district city) (STV 1.0 0.9091)) +(: cnet_partof_2122d61eb3 (PartOf city_limit city) (STV 1.0 0.9091)) +(: cnet_partof_587adacc56 (PartOf city_limit town) (STV 1.0 0.9091)) +(: cnet_partof_640bac5c93 (PartOf city_of_london london) (STV 1.0 0.9091)) +(: cnet_partof_4bedef77ec (PartOf ciudad_bolivar venezuela) (STV 1.0 0.9091)) +(: cnet_partof_a398ceb9e1 (PartOf ciudad_juarez mexico) (STV 1.0 0.9091)) +(: cnet_partof_9d8cee6d4e (PartOf ciudad_victoria mexico) (STV 1.0 0.9091)) +(: cnet_partof_b25a47f4e5 (PartOf civic_center city) (STV 1.0 0.9091)) +(: cnet_partof_651b3b1f17 (PartOf clam clam) (STV 1.0 0.9091)) +(: cnet_partof_d98218678f (PartOf clapper bell) (STV 1.0 0.9091)) +(: cnet_partof_fc7676b247 (PartOf claque house) (STV 1.0 0.9091)) +(: cnet_partof_9c0306a9ff (PartOf clarksburg west_virginia) (STV 1.0 0.9091)) +(: cnet_partof_68acf53e3c (PartOf clary_sage clary_sage) (STV 1.0 0.9091)) +(: cnet_partof_e0194ce5df (PartOf clasp bag) (STV 1.0 0.9091)) +(: cnet_partof_b952710d75 (PartOf clasp bracelet) (STV 1.0 0.9091)) +(: cnet_partof_5780c7faa4 (PartOf class society) (STV 1.0 0.9091)) +(: cnet_partof_e43706d781 (PartOf classroom school) (STV 1.0 0.9091)) +(: cnet_partof_666182c087 (PartOf classroom_project education) (STV 1.0 0.9091)) +(: cnet_partof_1bf24b27cf (PartOf classwork education) (STV 1.0 0.9091)) +(: cnet_partof_fe86889335 (PartOf clast clastic_rock) (STV 1.0 0.9091)) +(: cnet_partof_6e80aa4711 (PartOf clause sentence) (STV 1.0 0.9091)) +(: cnet_partof_36712f1821 (PartOf clavicle endoskeleton) (STV 1.0 0.9091)) +(: cnet_partof_290cc0a042 (PartOf claw crustacean) (STV 1.0 0.9091)) +(: cnet_partof_26023a1a3c (PartOf cleanup batting_order) (STV 1.0 0.9091)) +(: cnet_partof_818b8636ad (PartOf cleat cleat) (STV 1.0 0.9091)) +(: cnet_partof_2301f30055 (PartOf cleavage pregnancy) (STV 1.0 0.9091)) +(: cnet_partof_7275f6b19f (PartOf cleveland ohio) (STV 1.0 0.9091)) +(: cnet_partof_a5e6b25f79 (PartOf clichy paris) (STV 1.0 0.9091)) +(: cnet_partof_df5cdbc3c1 (PartOf climacteric middle_age) (STV 1.0 0.9091)) +(: cnet_partof_2f7ab99917 (PartOf climax story) (STV 1.0 0.9091)) +(: cnet_partof_d1faed06e0 (PartOf clinch bolt) (STV 1.0 0.9091)) +(: cnet_partof_d07b3c09ba (PartOf clinch nail) (STV 1.0 0.9091)) +(: cnet_partof_76b76d1d15 (PartOf clinch rivet) (STV 1.0 0.9091)) +(: cnet_partof_e36897da75 (PartOf clinch_river tennessee) (STV 1.0 0.9091)) +(: cnet_partof_005ea447f9 (PartOf clinch_river virginia) (STV 1.0 0.9091)) +(: cnet_partof_a6c9d7298a (PartOf clinic hospital) (STV 1.0 0.9091)) +(: cnet_partof_2d67afc255 (PartOf clinton iowa) (STV 1.0 0.9091)) +(: cnet_partof_4304ec4d15 (PartOf clitoris vulva) (STV 1.0 0.9091)) +(: cnet_partof_a4700b128e (PartOf clock_face clock) (STV 1.0 0.9091)) +(: cnet_partof_a54f904f3f (PartOf cloud sky) (STV 1.0 0.9091)) +(: cnet_partof_f349e5ebb2 (PartOf clove clove) (STV 1.0 0.9091)) +(: cnet_partof_31c8f82776 (PartOf clubroom clubhouse) (STV 1.0 0.9091)) +(: cnet_partof_c3878d2b21 (PartOf clutch car) (STV 1.0 0.9091)) +(: cnet_partof_07b9898c64 (PartOf clutch clutch) (STV 1.0 0.9091)) +(: cnet_partof_5b42ecbdb1 (PartOf clutch transmission) (STV 1.0 0.9091)) +(: cnet_partof_322f7c5bf0 (PartOf clyde scotland) (STV 1.0 0.9091)) +(: cnet_partof_9359260acb (PartOf clypeus insect) (STV 1.0 0.9091)) +(: cnet_partof_b7e33e39e2 (PartOf cn_tower toronto) (STV 1.0 0.9091)) +(: cnet_partof_0cfce660b6 (PartOf coahuila mexico) (STV 1.0 0.9091)) +(: cnet_partof_56f41feda1 (PartOf coal_mine colliery) (STV 1.0 0.9091)) +(: cnet_partof_2bc510511b (PartOf coalface coal_seam) (STV 1.0 0.9091)) +(: cnet_partof_99e2edf55b (PartOf coast_range north_america) (STV 1.0 0.9091)) +(: cnet_partof_d8d10a1b96 (PartOf coaster_brake bicycle) (STV 1.0 0.9091)) +(: cnet_partof_1b4c2a1763 (PartOf coat mammal) (STV 1.0 0.9091)) +(: cnet_partof_89817d08a2 (PartOf coat_button coat) (STV 1.0 0.9091)) +(: cnet_partof_d986cd4f1e (PartOf coat_land antarctica) (STV 1.0 0.9091)) +(: cnet_partof_26aa9b27cd (PartOf coattail coat) (STV 1.0 0.9091)) +(: cnet_partof_5677c922be (PartOf coccygeal_vertebra coccyx) (STV 1.0 0.9091)) +(: cnet_partof_44096d2ea0 (PartOf coccyx pelvis) (STV 1.0 0.9091)) +(: cnet_partof_2ff44654cc (PartOf coccyx spinal_column) (STV 1.0 0.9091)) +(: cnet_partof_123223c723 (PartOf cochlea inner_ear) (STV 1.0 0.9091)) +(: cnet_partof_f8afb9d98a (PartOf cockle edible_cockle) (STV 1.0 0.9091)) +(: cnet_partof_b100a47850 (PartOf cockpit aircraft) (STV 1.0 0.9091)) +(: cnet_partof_6650e763e8 (PartOf cockpit racer) (STV 1.0 0.9091)) +(: cnet_partof_c549bd870e (PartOf cocoa_plum coco_plum) (STV 1.0 0.9091)) +(: cnet_partof_f0637983b3 (PartOf coconut coconut) (STV 1.0 0.9091)) +(: cnet_partof_f02eed2662 (PartOf cocozelle cocozelle) (STV 1.0 0.9091)) +(: cnet_partof_bf8e4c34ab (PartOf cocytus hel) (STV 1.0 0.9091)) +(: cnet_partof_80805ec14c (PartOf cod atlantic_cod) (STV 1.0 0.9091)) +(: cnet_partof_35418d320b (PartOf codicil will) (STV 1.0 0.9091)) +(: cnet_partof_0142d8de0b (PartOf codpiece breeche) (STV 1.0 0.9091)) +(: cnet_partof_77992c30a2 (PartOf coelenteron coelenterate) (STV 1.0 0.9091)) +(: cnet_partof_a314c591bf (PartOf coeur_d_alene idaho) (STV 1.0 0.9091)) +(: cnet_partof_172cba9894 (PartOf coeur_d_alene_lake idaho) (STV 1.0 0.9091)) +(: cnet_partof_a32c60fb82 (PartOf coffee_bean coffee) (STV 1.0 0.9091)) +(: cnet_partof_b247308b56 (PartOf coffey_still distillery) (STV 1.0 0.9091)) +(: cnet_partof_52abf1b3bc (PartOf cog gear) (STV 1.0 0.9091)) +(: cnet_partof_8eac9cb32c (PartOf cognitive_neuroscience cognitive_science) (STV 1.0 0.9091)) +(: cnet_partof_d6f0f2349f (PartOf cognitive_psychology cognitive_science) (STV 1.0 0.9091)) +(: cnet_partof_ac996a7053 (PartOf cohune_nut cohune_palm) (STV 1.0 0.9091)) +(: cnet_partof_9d49b2a89b (PartOf coin_box slot_machine) (STV 1.0 0.9091)) +(: cnet_partof_ac58ce38ae (PartOf coin_return vending_machine) (STV 1.0 0.9091)) +(: cnet_partof_406dd48dfc (PartOf coin_slot vending_machine) (STV 1.0 0.9091)) +(: cnet_partof_e42747f63a (PartOf coin_slot slot_machine) (STV 1.0 0.9091)) +(: cnet_partof_8d9dbb42c3 (PartOf cold_sweat fear) (STV 1.0 0.9091)) +(: cnet_partof_47264fa69a (PartOf colic_artery abdomen) (STV 1.0 0.9091)) +(: cnet_partof_c057f9b46d (PartOf colima mexico) (STV 1.0 0.9091)) +(: cnet_partof_252184778b (PartOf collar neck) (STV 1.0 0.9091)) +(: cnet_partof_2299fa1966 (PartOf collector transistor) (STV 1.0 0.9091)) +(: cnet_partof_6c2dba5721 (PartOf college academia) (STV 1.0 0.9091)) +(: cnet_partof_7c6b30fbda (PartOf collet mounting) (STV 1.0 0.9091)) +(: cnet_partof_8aea6a25b3 (PartOf collimator spectroscope) (STV 1.0 0.9091)) +(: cnet_partof_693b9d22e9 (PartOf cologne germany) (STV 1.0 0.9091)) +(: cnet_partof_4e97701f05 (PartOf colombia south_america) (STV 1.0 0.9091)) +(: cnet_partof_935b048f2a (PartOf colombo sri_lanka) (STV 1.0 0.9091)) +(: cnet_partof_ce44b45489 (PartOf colon panama) (STV 1.0 0.9091)) +(: cnet_partof_742e1e2d5c (PartOf colony united_state) (STV 1.0 0.9091)) +(: cnet_partof_35390a7f96 (PartOf color_tube color_television) (STV 1.0 0.9091)) +(: cnet_partof_9d707a0fca (PartOf colorado united_state) (STV 1.0 0.9091)) +(: cnet_partof_d844ab30b4 (PartOf colorado arizona) (STV 1.0 0.9091)) +(: cnet_partof_6c30a859f8 (PartOf colorado colorado) (STV 1.0 0.9091)) +(: cnet_partof_48b3719e52 (PartOf colorado mexico) (STV 1.0 0.9091)) +(: cnet_partof_5ebff56e17 (PartOf colorado nevada) (STV 1.0 0.9091)) +(: cnet_partof_69a5fee91a (PartOf colorado texa) (STV 1.0 0.9091)) +(: cnet_partof_aba8b52ac3 (PartOf colorado utah) (STV 1.0 0.9091)) +(: cnet_partof_34dfcaf0de (PartOf colorado_desert california) (STV 1.0 0.9091)) +(: cnet_partof_3f49eb0c59 (PartOf colorado_plateau arizona) (STV 1.0 0.9091)) +(: cnet_partof_2995308889 (PartOf colorado_plateau colorado) (STV 1.0 0.9091)) +(: cnet_partof_3e091f3418 (PartOf colorado_plateau new_mexico) (STV 1.0 0.9091)) +(: cnet_partof_bd76b54c56 (PartOf colorado_plateau utah) (STV 1.0 0.9091)) +(: cnet_partof_c04a58db92 (PartOf colorado_spring colorado) (STV 1.0 0.9091)) +(: cnet_partof_8025a1cb1c (PartOf colossae phrygia) (STV 1.0 0.9091)) +(: cnet_partof_3837dd9465 (PartOf colosseum rome) (STV 1.0 0.9091)) +(: cnet_partof_b03408e00f (PartOf colter moldboard_plow) (STV 1.0 0.9091)) +(: cnet_partof_268e6e05da (PartOf columbia missouri) (STV 1.0 0.9091)) +(: cnet_partof_1aa2ca86aa (PartOf columbia south_carolina) (STV 1.0 0.9091)) +(: cnet_partof_407a5f5a55 (PartOf columbia tennessee) (STV 1.0 0.9091)) +(: cnet_partof_128256db41 (PartOf columbia canada) (STV 1.0 0.9091)) +(: cnet_partof_62d66a8a72 (PartOf columbia washington) (STV 1.0 0.9091)) +(: cnet_partof_16aa549705 (PartOf columbia_university new_york) (STV 1.0 0.9091)) +(: cnet_partof_24a49d71f8 (PartOf columbus mississippi) (STV 1.0 0.9091)) +(: cnet_partof_93752eb5d9 (PartOf columbus ohio) (STV 1.0 0.9091)) +(: cnet_partof_b375e923b8 (PartOf columbus_day october) (STV 1.0 0.9091)) +(: cnet_partof_064e85baab (PartOf column temple) (STV 1.0 0.9091)) +(: cnet_partof_d7a19b7c63 (PartOf column newspaper) (STV 1.0 0.9091)) +(: cnet_partof_97e63e2c87 (PartOf coma comet) (STV 1.0 0.9091)) +(: cnet_partof_19fc21b11c (PartOf comb ctenophore) (STV 1.0 0.9091)) +(: cnet_partof_c4732d172f (PartOf comb gallinaceous_bird) (STV 1.0 0.9091)) +(: cnet_partof_ae19c51320 (PartOf combat war) (STV 1.0 0.9091)) +(: cnet_partof_350c8f105e (PartOf combat_zone field) (STV 1.0 0.9091)) +(: cnet_partof_b0493193bc (PartOf comfrey common_comfrey) (STV 1.0 0.9091)) +(: cnet_partof_71f122b76d (PartOf comic_strip comic_book) (STV 1.0 0.9091)) +(: cnet_partof_2901d7ce54 (PartOf comic_strip newspaper) (STV 1.0 0.9091)) +(: cnet_partof_e2bba654f0 (PartOf command_processing_overhead_time access_time) (STV 1.0 0.9091)) +(: cnet_partof_c18d208116 (PartOf commercial_enterprise market) (STV 1.0 0.9091)) +(: cnet_partof_f10eaeb60d (PartOf commodore_john_barry_bridge chester) (STV 1.0 0.9091)) +(: cnet_partof_5aa2b4d9fc (PartOf common_bean common_bean) (STV 1.0 0.9091)) +(: cnet_partof_de04d74cc7 (PartOf common_bile_duct liver) (STV 1.0 0.9091)) +(: cnet_partof_cfefef636c (PartOf commonwealth_day may) (STV 1.0 0.9091)) +(: cnet_partof_9bd661f15b (PartOf communicating_artery brain) (STV 1.0 0.9091)) +(: cnet_partof_f3973375bf (PartOf communication_system infrastructure) (STV 1.0 0.9091)) +(: cnet_partof_1035a00fba (PartOf communication_satellite communication_system) (STV 1.0 0.9091)) +(: cnet_partof_a20f06fbf2 (PartOf communion holy_eucharist) (STV 1.0 0.9091)) +(: cnet_partof_ab1662f1a6 (PartOf comoro_island indian_ocean) (STV 1.0 0.9091)) +(: cnet_partof_0f05408405 (PartOf comoro comoro_island) (STV 1.0 0.9091)) +(: cnet_partof_d9f60cb39f (PartOf complement immune_response) (STV 1.0 0.9091)) +(: cnet_partof_3c28dfa8ae (PartOf comptroller_of_currency department_of_treasury) (STV 1.0 0.9091)) +(: cnet_partof_0aa86372ac (PartOf computer platform) (STV 1.0 0.9091)) +(: cnet_partof_4303988f8c (PartOf computer_accessory computer) (STV 1.0 0.9091)) +(: cnet_partof_893a4e7fb8 (PartOf computer_circuit computer) (STV 1.0 0.9091)) +(: cnet_partof_aecc3de764 (PartOf computer_science information_science) (STV 1.0 0.9091)) +(: cnet_partof_1cc6074d1d (PartOf conakry guinea) (STV 1.0 0.9091)) +(: cnet_partof_0acb13c975 (PartOf conclusion address) (STV 1.0 0.9091)) +(: cnet_partof_c477d2feb1 (PartOf conclusion narration) (STV 1.0 0.9091)) +(: cnet_partof_b1ad52b8e2 (PartOf conclusion syllogism) (STV 1.0 0.9091)) +(: cnet_partof_8371966a5e (PartOf concord massachusett) (STV 1.0 0.9091)) +(: cnet_partof_9ba834aae6 (PartOf concord new_hampshire) (STV 1.0 0.9091)) +(: cnet_partof_d59a3096da (PartOf concrete_jungle city) (STV 1.0 0.9091)) +(: cnet_partof_409826680f (PartOf condenser still) (STV 1.0 0.9091)) +(: cnet_partof_03f2d68e64 (PartOf condition experiment) (STV 1.0 0.9091)) +(: cnet_partof_9ec43b609a (PartOf condition agreement) (STV 1.0 0.9091)) +(: cnet_partof_0637deb34a (PartOf condominium condominium) (STV 1.0 0.9091)) +(: cnet_partof_23b106970c (PartOf condylar_process lower_jaw) (STV 1.0 0.9091)) +(: cnet_partof_a2d3d9166f (PartOf condyle bone) (STV 1.0 0.9091)) +(: cnet_partof_cbaf3ace1f (PartOf condylion ramus) (STV 1.0 0.9091)) +(: cnet_partof_e7788db987 (PartOf cone retina) (STV 1.0 0.9091)) +(: cnet_partof_3f7018dd22 (PartOf cone club_moss) (STV 1.0 0.9091)) +(: cnet_partof_8dd06fcee0 (PartOf cone conifer) (STV 1.0 0.9091)) +(: cnet_partof_223956e68d (PartOf cone horsetail) (STV 1.0 0.9091)) +(: cnet_partof_cb505bff33 (PartOf coney_island brooklyn) (STV 1.0 0.9091)) +(: cnet_partof_c7f31b10a1 (PartOf conference_table conference_room) (STV 1.0 0.9091)) +(: cnet_partof_801239899a (PartOf congo africa) (STV 1.0 0.9091)) +(: cnet_partof_506c2cc263 (PartOf congo congo) (STV 1.0 0.9091)) +(: cnet_partof_d3db5dbd14 (PartOf congress legislature) (STV 1.0 0.9091)) +(: cnet_partof_e73a9be7bc (PartOf congressional_district american_state) (STV 1.0 0.9091)) +(: cnet_partof_37aab212b2 (PartOf conjunctiva eye) (STV 1.0 0.9091)) +(: cnet_partof_930416f5dd (PartOf conjunctiva eyelid) (STV 1.0 0.9091)) +(: cnet_partof_8b2c24397c (PartOf connecticut new_england) (STV 1.0 0.9091)) +(: cnet_partof_74af679e82 (PartOf connecticut united_state) (STV 1.0 0.9091)) +(: cnet_partof_806b09ddb5 (PartOf conning_tower submarine) (STV 1.0 0.9091)) +(: cnet_partof_447c1f61b1 (PartOf conning_tower warship) (STV 1.0 0.9091)) +(: cnet_partof_187d3b892f (PartOf constantina romania) (STV 1.0 0.9091)) +(: cnet_partof_e468d67b23 (PartOf constantine algeria) (STV 1.0 0.9091)) +(: cnet_partof_883014a711 (PartOf constituent sentence) (STV 1.0 0.9091)) +(: cnet_partof_25f72556b4 (PartOf content publication) (STV 1.0 0.9091)) +(: cnet_partof_8f5353040a (PartOf continent europe) (STV 1.0 0.9091)) +(: cnet_partof_45efe54d56 (PartOf contract bridge) (STV 1.0 0.9091)) +(: cnet_partof_9b34a7a011 (PartOf control_account general_ledger) (STV 1.0 0.9091)) +(: cnet_partof_b3f09b2f6c (PartOf control_condition experiment) (STV 1.0 0.9091)) +(: cnet_partof_bdbdac539d (PartOf control_rod nuclear_reactor) (STV 1.0 0.9091)) +(: cnet_partof_084f32baa9 (PartOf control_tower airport) (STV 1.0 0.9091)) +(: cnet_partof_372fa0cb7c (PartOf convent sect) (STV 1.0 0.9091)) +(: cnet_partof_27e2ce6776 (PartOf convergent_thinking problem_solving) (STV 1.0 0.9091)) +(: cnet_partof_b675c25cd8 (PartOf conveyer_belt production_line) (STV 1.0 0.9091)) +(: cnet_partof_28f839014a (PartOf cook_strait new_zealand) (STV 1.0 0.9091)) +(: cnet_partof_b97961e28f (PartOf cooling_system motor_vehicle) (STV 1.0 0.9091)) +(: cnet_partof_0a7cd06bc5 (PartOf cooper_union new_york) (STV 1.0 0.9091)) +(: cnet_partof_de3ed045f9 (PartOf cooperstown new_york) (STV 1.0 0.9091)) +(: cnet_partof_df0706b875 (PartOf coordinate_axis coordinate_system) (STV 1.0 0.9091)) +(: cnet_partof_3b7afdc26a (PartOf coordinate_clause complex_sentence) (STV 1.0 0.9091)) +(: cnet_partof_9f58f80e62 (PartOf coosa alabama) (STV 1.0 0.9091)) +(: cnet_partof_084127a00c (PartOf coosa georgia) (STV 1.0 0.9091)) +(: cnet_partof_f6cb759aea (PartOf copenhagen denmark) (STV 1.0 0.9091)) +(: cnet_partof_ff58a47ed1 (PartOf copepod plankton) (STV 1.0 0.9091)) +(: cnet_partof_577da02092 (PartOf coquilla_nut piassava_palm) (STV 1.0 0.9091)) +(: cnet_partof_3c8fa87b86 (PartOf coral lobster) (STV 1.0 0.9091)) +(: cnet_partof_2f46f11315 (PartOf coral_sea world_war_ii) (STV 1.0 0.9091)) +(: cnet_partof_f66902dfd1 (PartOf coral_sea pacific) (STV 1.0 0.9091)) +(: cnet_partof_fb588c08a8 (PartOf cordoba argentina) (STV 1.0 0.9091)) +(: cnet_partof_18a4e29898 (PartOf cordoba spain) (STV 1.0 0.9091)) +(: cnet_partof_cf3e6a5afe (PartOf core magnet) (STV 1.0 0.9091)) +(: cnet_partof_82f05756e6 (PartOf core nuclear_reactor) (STV 1.0 0.9091)) +(: cnet_partof_4c1cf2ec2e (PartOf core_bit core_drill) (STV 1.0 0.9091)) +(: cnet_partof_e2158dbb3e (PartOf coriander coriander) (STV 1.0 0.9091)) +(: cnet_partof_dc97e92648 (PartOf corinth greece) (STV 1.0 0.9091)) +(: cnet_partof_8103a9908a (PartOf cork wine_bottle) (STV 1.0 0.9091)) +(: cnet_partof_3537b90f77 (PartOf cork ireland) (STV 1.0 0.9091)) +(: cnet_partof_96f8a588fc (PartOf corn corn) (STV 1.0 0.9091)) +(: cnet_partof_fa633143d6 (PartOf corn_stalk corn) (STV 1.0 0.9091)) +(: cnet_partof_9619a41038 (PartOf corncob corn) (STV 1.0 0.9091)) +(: cnet_partof_1f870b25fc (PartOf cornea eye) (STV 1.0 0.9608)) +(: cnet_partof_d9af00f43c (PartOf cornell_university new_york) (STV 1.0 0.9091)) +(: cnet_partof_130894a60e (PartOf corner building) (STV 1.0 0.9091)) +(: cnet_partof_1b90e7e2e9 (PartOf cornerstone building) (STV 1.0 0.9091)) +(: cnet_partof_d50a411869 (PartOf cornice entablature) (STV 1.0 0.9091)) +(: cnet_partof_ac20085c90 (PartOf cornwall england) (STV 1.0 0.9091)) +(: cnet_partof_f74692fb03 (PartOf corolla perianth) (STV 1.0 0.9091)) +(: cnet_partof_476ca975ea (PartOf corona corolla) (STV 1.0 0.9091)) +(: cnet_partof_83e4c80861 (PartOf coronal_suture cranium) (STV 1.0 0.9091)) +(: cnet_partof_b2b17151a0 (PartOf coronary_artery heart) (STV 1.0 0.9091)) +(: cnet_partof_5045e723d3 (PartOf coronary_care_unit hospital) (STV 1.0 0.9091)) +(: cnet_partof_c52f3d2b5c (PartOf coronary_thrombosis heart_attack) (STV 1.0 0.9091)) +(: cnet_partof_ef4c22445c (PartOf coronet pastern) (STV 1.0 0.9091)) +(: cnet_partof_c903c52a84 (PartOf coronion coronoid_process_of_mandible) (STV 1.0 0.9091)) +(: cnet_partof_dc4e5daf46 (PartOf coronoid_process bone) (STV 1.0 0.9091)) +(: cnet_partof_3fd767b9e5 (PartOf coronoid_process_of_mandible lower_jaw) (STV 1.0 0.9091)) +(: cnet_partof_b829a2f7fc (PartOf coropuna ande) (STV 1.0 0.9091)) +(: cnet_partof_c121418ee7 (PartOf coropuna peru) (STV 1.0 0.9091)) +(: cnet_partof_0aa7a58ff5 (PartOf corpus body_part) (STV 1.0 0.9091)) +(: cnet_partof_0e7c9430e3 (PartOf corpus_callosum forebrain) (STV 1.0 0.9091)) +(: cnet_partof_ac9625074f (PartOf corpus_christi texa) (STV 1.0 0.9091)) +(: cnet_partof_6212f3a4fc (PartOf corpus_luteum graafian_follicle) (STV 1.0 0.9091)) +(: cnet_partof_2d6eeb15bc (PartOf correlation correlational_analysis) (STV 1.0 0.9091)) +(: cnet_partof_6fda0df0ab (PartOf corse france) (STV 1.0 0.9091)) +(: cnet_partof_8e67d36ce2 (PartOf corse mediterranean) (STV 1.0 0.9091)) +(: cnet_partof_999d27846a (PartOf cortical_area cerebral_cortex) (STV 1.0 0.9091)) +(: cnet_partof_100f6768e9 (PartOf cosmic_ray cosmic_radiation) (STV 1.0 0.9091)) +(: cnet_partof_93447c504f (PartOf costa_rica central_america) (STV 1.0 0.9091)) +(: cnet_partof_f0034e9106 (PartOf costal_cartilage rib) (STV 1.0 0.9091)) +(: cnet_partof_24e6b81abc (PartOf costmary costmary) (STV 1.0 0.9091)) +(: cnet_partof_518a8616f1 (PartOf cotacachi ecuador) (STV 1.0 0.9091)) +(: cnet_partof_058d385d9d (PartOf cotonou benin) (STV 1.0 0.9091)) +(: cnet_partof_eea9be6fe6 (PartOf cotopaxi ecuador) (STV 1.0 0.9091)) +(: cnet_partof_0cf0fd7237 (PartOf cotswold england) (STV 1.0 0.9091)) +(: cnet_partof_4a951b0249 (PartOf cottonseed cotton) (STV 1.0 0.9091)) +(: cnet_partof_a9660cc50a (PartOf couchette passenger_train) (STV 1.0 0.9091)) +(: cnet_partof_6346345f53 (PartOf cough respiratory_disease) (STV 1.0 0.9091)) +(: cnet_partof_e683a780eb (PartOf coulomb abcoulomb) (STV 1.0 0.9091)) +(: cnet_partof_7d7296b18f (PartOf coulomb ampere_minute) (STV 1.0 0.9091)) +(: cnet_partof_0f1f644ba0 (PartOf countenance human_head) (STV 1.0 0.9091)) +(: cnet_partof_26fa58a248 (PartOf counter boot) (STV 1.0 0.9091)) +(: cnet_partof_d8113f74f2 (PartOf counter shoe) (STV 1.0 0.9091)) +(: cnet_partof_da11a93216 (PartOf counterterrorist_center central_intelligence_agency) (STV 1.0 0.9091)) +(: cnet_partof_becd7df81c (PartOf countertop counter) (STV 1.0 0.9091)) +(: cnet_partof_c900bd80db (PartOf county_seat county) (STV 1.0 0.9091)) +(: cnet_partof_9b65bf3d92 (PartOf county_town shire) (STV 1.0 0.9091)) +(: cnet_partof_c12c356ffe (PartOf coup_de_theatre production) (STV 1.0 0.9091)) +(: cnet_partof_72891358ba (PartOf course wall) (STV 1.0 0.9091)) +(: cnet_partof_0a73180dd8 (PartOf course meal) (STV 1.0 0.9091)) +(: cnet_partof_4c61321c6e (PartOf course_of_lecture course_of_study) (STV 1.0 0.9091)) +(: cnet_partof_9bfc58cc8e (PartOf course_session course) (STV 1.0 0.9091)) +(: cnet_partof_95846a6f32 (PartOf coursework course) (STV 1.0 0.9091)) +(: cnet_partof_bcc5c9cce5 (PartOf court building) (STV 1.0 0.9091)) +(: cnet_partof_b6d013e647 (PartOf court courthouse) (STV 1.0 0.9091)) +(: cnet_partof_d22f34b028 (PartOf coventry england) (STV 1.0 0.9091)) +(: cnet_partof_426ededad5 (PartOf cover_glass slide) (STV 1.0 0.9091)) +(: cnet_partof_0189427a24 (PartOf cowage cowage) (STV 1.0 0.9091)) +(: cnet_partof_908cd540a1 (PartOf cowpea cowpea) (STV 1.0 0.9091)) +(: cnet_partof_c0eba5e430 (PartOf cowpen american_revolution) (STV 1.0 0.9091)) +(: cnet_partof_c5fa250792 (PartOf cowper_s_gland male_reproductive_system) (STV 1.0 0.9091)) +(: cnet_partof_3107d52f83 (PartOf cpu computer) (STV 1.0 0.9693)) +(: cnet_partof_c4f7bb7fba (PartOf cpu_board central_processing_unit) (STV 1.0 0.9091)) +(: cnet_partof_240dcf8a01 (PartOf crab crab_cocktail) (STV 1.0 0.9091)) +(: cnet_partof_97498a31d9 (PartOf crab_apple crab_apple) (STV 1.0 0.9091)) +(: cnet_partof_15bcc5afcc (PartOf cracow poland) (STV 1.0 0.9091)) +(: cnet_partof_80fcff8ff0 (PartOf cranberry american_cranberry) (STV 1.0 0.9091)) +(: cnet_partof_884f640118 (PartOf craniometric_point skull) (STV 1.0 0.9091)) +(: cnet_partof_46133f4d46 (PartOf cranium skull) (STV 1.0 0.9091)) +(: cnet_partof_8709138a0e (PartOf crankcase reciprocating_engine) (STV 1.0 0.9091)) +(: cnet_partof_79586db48e (PartOf crankshaft reciprocating_engine) (STV 1.0 0.9091)) +(: cnet_partof_5160557f08 (PartOf crappie crappie) (STV 1.0 0.9091)) +(: cnet_partof_18e7fcf588 (PartOf crater_lake_national_park oregon) (STV 1.0 0.9091)) +(: cnet_partof_da5a6d6985 (PartOf craton continent) (STV 1.0 0.9091)) +(: cnet_partof_32ce1a4dd3 (PartOf crawlspace building) (STV 1.0 0.9091)) +(: cnet_partof_89a1b70631 (PartOf crayfish american_crayfish) (STV 1.0 0.9091)) +(: cnet_partof_a3ccf152c5 (PartOf crayfish old_world_crayfish) (STV 1.0 0.9091)) +(: cnet_partof_389bc709ad (PartOf creating_division stigma) (STV 1.0 0.9091)) +(: cnet_partof_bfe05a49a0 (PartOf crecy hundred_year_war) (STV 1.0 0.9091)) +(: cnet_partof_93c03fb516 (PartOf credit movie) (STV 1.0 0.9091)) +(: cnet_partof_34debcb2c8 (PartOf cremona lombardy) (STV 1.0 0.9091)) +(: cnet_partof_0edcc89924 (PartOf crenel battlement) (STV 1.0 0.9091)) +(: cnet_partof_0c8db8bac2 (PartOf crest coat_of_arm) (STV 1.0 0.9091)) +(: cnet_partof_6fd5f77dc2 (PartOf cretaceous mesozoic) (STV 1.0 0.9091)) +(: cnet_partof_4f4492b6cf (PartOf crete greece) (STV 1.0 0.9091)) +(: cnet_partof_4835aff35d (PartOf crete mediterranean) (STV 1.0 0.9091)) +(: cnet_partof_d741d09e57 (PartOf crib cribbage) (STV 1.0 0.9091)) +(: cnet_partof_ac823a364d (PartOf crimea ukraine) (STV 1.0 0.9091)) +(: cnet_partof_885e51e7da (PartOf criminal_investigation_command united_state_army) (STV 1.0 0.9091)) +(: cnet_partof_0084b5682f (PartOf crisphead_lettuce head_lettuce) (STV 1.0 0.9091)) +(: cnet_partof_f3d0a6bf0a (PartOf croaker croaker) (STV 1.0 0.9091)) +(: cnet_partof_5ee6da5e23 (PartOf croatia balkan_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_8851ca6a3a (PartOf crop whip) (STV 1.0 0.9091)) +(: cnet_partof_956b265b89 (PartOf cross_country_riding three_day_event) (STV 1.0 0.9091)) +(: cnet_partof_9cd353e711 (PartOf cross_hair reticle) (STV 1.0 0.9091)) +(: cnet_partof_6ca03c21be (PartOf cross_question cross_examination) (STV 1.0 0.9091)) +(: cnet_partof_008c3ac481 (PartOf crossbar goalpost) (STV 1.0 0.9091)) +(: cnet_partof_a89a1f5ffa (PartOf crosshead steam_engine) (STV 1.0 0.9091)) +(: cnet_partof_89c9b4f853 (PartOf crossing_over diplotene) (STV 1.0 0.9091)) +(: cnet_partof_b9f5c1dcf0 (PartOf crotaphion sphenoid_bone) (STV 1.0 0.9091)) +(: cnet_partof_5ca6985912 (PartOf crotch body) (STV 1.0 0.9091)) +(: cnet_partof_bcfce5ec41 (PartOf crow_s_nest ship) (STV 1.0 0.9091)) +(: cnet_partof_c7c00d9cc7 (PartOf crown hat) (STV 1.0 0.9091)) +(: cnet_partof_e07bf0046e (PartOf crown road) (STV 1.0 0.9091)) +(: cnet_partof_711d78c92b (PartOf crown tooth) (STV 1.0 0.9091)) +(: cnet_partof_1efb40515d (PartOf crown tree) (STV 1.0 0.9091)) +(: cnet_partof_441d75f76f (PartOf cruciferous_vegetable crucifer) (STV 1.0 0.9091)) +(: cnet_partof_0dab202d51 (PartOf crumb baked_good) (STV 1.0 0.9091)) +(: cnet_partof_db1afa15c2 (PartOf crus leg) (STV 1.0 0.9091)) +(: cnet_partof_f6fb9d531d (PartOf crust lithosphere) (STV 1.0 0.9091)) +(: cnet_partof_d96839b83c (PartOf crystal crystal_counter) (STV 1.0 0.9091)) +(: cnet_partof_67eeed7947 (PartOf crystal crystal_detector) (STV 1.0 0.9091)) +(: cnet_partof_20892a63fd (PartOf crystal crystal_microphone) (STV 1.0 0.9091)) +(: cnet_partof_727cecbbd2 (PartOf crystal crystal_pickup) (STV 1.0 0.9091)) +(: cnet_partof_3b094713fa (PartOf crystal watch) (STV 1.0 0.9091)) +(: cnet_partof_0c6102dadb (PartOf ctene ctenophore) (STV 1.0 0.9091)) +(: cnet_partof_5076d51808 (PartOf cuba caribbean) (STV 1.0 0.9091)) +(: cnet_partof_e8c3eb3ac6 (PartOf cuba cuba) (STV 1.0 0.9091)) +(: cnet_partof_520959d78d (PartOf cuba greater_antille) (STV 1.0 0.9091)) +(: cnet_partof_12c342da7e (PartOf cubeb cubeb) (STV 1.0 0.9091)) +(: cnet_partof_f8ec478d28 (PartOf cubic_millimeter milliliter) (STV 1.0 0.9091)) +(: cnet_partof_6a15b78be9 (PartOf cubitiere body_armor) (STV 1.0 0.9091)) +(: cnet_partof_b5221fa8ad (PartOf cuboid_bone tarsus) (STV 1.0 0.9091)) +(: cnet_partof_0efda49f99 (PartOf cucumber cucumber) (STV 1.0 0.9091)) +(: cnet_partof_16b4f71023 (PartOf cuddy small_ship) (STV 1.0 0.9091)) +(: cnet_partof_3e313d152c (PartOf cuff leg) (STV 1.0 0.9091)) +(: cnet_partof_b8cc7ff205 (PartOf cuff sleeve) (STV 1.0 0.9091)) +(: cnet_partof_a7f02355d4 (PartOf cuisse body_armor) (STV 1.0 0.9091)) +(: cnet_partof_28732ed3d4 (PartOf culebra puerto_rico) (STV 1.0 0.9091)) +(: cnet_partof_a7344b1353 (PartOf culiacan mexico) (STV 1.0 0.9091)) +(: cnet_partof_c7a56e7dae (PartOf cullis building) (STV 1.0 0.9091)) +(: cnet_partof_074aa36a91 (PartOf cumana venezuela) (STV 1.0 0.9091)) +(: cnet_partof_a309e5df02 (PartOf cumberland kentucky) (STV 1.0 0.9091)) +(: cnet_partof_7ed0d4dea6 (PartOf cumberland tennessee) (STV 1.0 0.9091)) +(: cnet_partof_1530996c1a (PartOf cumberland_gap cumberland_mountain) (STV 1.0 0.9091)) +(: cnet_partof_d0752aaf8e (PartOf cumberland_mountain appalachian) (STV 1.0 0.9091)) +(: cnet_partof_a69a75eda0 (PartOf cumbria england) (STV 1.0 0.9091)) +(: cnet_partof_5b790ada69 (PartOf cumbria scotland) (STV 1.0 0.9091)) +(: cnet_partof_040bd4e972 (PartOf cumin cumin) (STV 1.0 0.9091)) +(: cnet_partof_51195da19c (PartOf cumin cuminum) (STV 1.0 0.9091)) +(: cnet_partof_83822fb216 (PartOf cup pint) (STV 1.0 0.9091)) +(: cnet_partof_f00f698b5f (PartOf cupule acorn) (STV 1.0 0.9091)) +(: cnet_partof_3012f01126 (PartOf cuquenan venezuela) (STV 1.0 0.9091)) +(: cnet_partof_0392481945 (PartOf curacao netherland_antille) (STV 1.0 0.9091)) +(: cnet_partof_65a7a5f3bf (PartOf curbstone curb) (STV 1.0 0.9091)) +(: cnet_partof_ed8c8593d8 (PartOf curettage dilation_and_curettage) (STV 1.0 0.9091)) +(: cnet_partof_3df4bd9f1c (PartOf curia roman_catholic) (STV 1.0 0.9091)) +(: cnet_partof_79b0b1ced2 (PartOf curitiba brazil) (STV 1.0 0.9091)) +(: cnet_partof_0254ff89e8 (PartOf curl_curl sydney) (STV 1.0 0.9091)) +(: cnet_partof_6ed2fc6d43 (PartOf current_account balance_of_payment) (STV 1.0 0.9091)) +(: cnet_partof_4c716709bb (PartOf curve graph) (STV 1.0 0.9091)) +(: cnet_partof_3af3bc669a (PartOf cushaw cushaw) (STV 1.0 0.9091)) +(: cnet_partof_de53324486 (PartOf cushaw cucurbita) (STV 1.0 0.9091)) +(: cnet_partof_ee27e55b55 (PartOf cusk cusk) (STV 1.0 0.9091)) +(: cnet_partof_5208b9fb9a (PartOf cusp heart_valve) (STV 1.0 0.9091)) +(: cnet_partof_a3e033b3b4 (PartOf cusp tooth) (STV 1.0 0.9091)) +(: cnet_partof_16eedb0585 (PartOf custard_apple custard_apple) (STV 1.0 0.9091)) +(: cnet_partof_893ab2ad81 (PartOf cut card_game) (STV 1.0 0.9091)) +(: cnet_partof_100a5281b1 (PartOf cut loot) (STV 1.0 0.9091)) +(: cnet_partof_d38f455c47 (PartOf cut_of_beef beef) (STV 1.0 0.9091)) +(: cnet_partof_f53ee37d6e (PartOf cut_of_lamb lamb) (STV 1.0 0.9091)) +(: cnet_partof_6140f31786 (PartOf cut_of_pork pork) (STV 1.0 0.9091)) +(: cnet_partof_feef951f24 (PartOf cut_of_veal veal) (STV 1.0 0.9091)) +(: cnet_partof_0293e73959 (PartOf cyanosis carbon_monoxide_poisoning) (STV 1.0 0.9091)) +(: cnet_partof_a182ed0bf1 (PartOf cyclade greece) (STV 1.0 0.9091)) +(: cnet_partof_e07a41c67c (PartOf cylinder compressor) (STV 1.0 0.9091)) +(: cnet_partof_b8ed1af815 (PartOf cylinder engine_block) (STV 1.0 0.9091)) +(: cnet_partof_1f62620353 (PartOf cylinder pump) (STV 1.0 0.9091)) +(: cnet_partof_72be4c6470 (PartOf cynoscephalae thessalia) (STV 1.0 0.9091)) +(: cnet_partof_3f33eb85e9 (PartOf cyprus cyprus) (STV 1.0 0.9091)) +(: cnet_partof_8f7234de4b (PartOf cyprus mediterranean) (STV 1.0 0.9091)) +(: cnet_partof_ad43423ef2 (PartOf cytokinesis meiosis) (STV 1.0 0.9091)) +(: cnet_partof_885c13db6e (PartOf cytokinesis mitosis) (STV 1.0 0.9091)) +(: cnet_partof_017696d322 (PartOf cytoplasm cell) (STV 1.0 0.9091)) +(: cnet_partof_50fbed3ec4 (PartOf cytoskeleton cytoplasm) (STV 1.0 0.9091)) +(: cnet_partof_5f1ee1392d (PartOf cytostome protozoan) (STV 1.0 0.9091)) +(: cnet_partof_4e180179f1 (PartOf czech_republic europe) (STV 1.0 0.9091)) +(: cnet_partof_662e53a364 (PartOf czechoslovakia europe) (STV 1.0 0.9091)) +(: cnet_partof_8f18ecbc44 (PartOf czestochowa poland) (STV 1.0 0.9091)) +(: cnet_partof_7ed5293337 (PartOf d alphabet) (STV 1.0 0.9091)) +(: cnet_partof_bb664e4305 (PartOf d_layer ionosphere) (STV 1.0 0.9091)) +(: cnet_partof_338df64d01 (PartOf dachau germany) (STV 1.0 0.9091)) +(: cnet_partof_1499884f72 (PartOf dado pedestal) (STV 1.0 0.9091)) +(: cnet_partof_fa4d5a4963 (PartOf dail_eireann oireachta) (STV 1.0 0.9091)) +(: cnet_partof_d2d7ec7335 (PartOf dairen china) (STV 1.0 0.9091)) +(: cnet_partof_77689206e8 (PartOf dairen luda) (STV 1.0 0.9091)) +(: cnet_partof_9f2dfdc636 (PartOf daisy_print_wheel daisywheel_printer) (STV 1.0 0.9091)) +(: cnet_partof_c8d16d67c8 (PartOf dakar senegal) (STV 1.0 0.9091)) +(: cnet_partof_efdb3ba074 (PartOf dakota united_state) (STV 1.0 0.9091)) +(: cnet_partof_dcf4f80cda (PartOf dalla texa) (STV 1.0 0.9091)) +(: cnet_partof_dcd09230d1 (PartOf damascus syria) (STV 1.0 0.9091)) +(: cnet_partof_865baaa4cb (PartOf damper chimney) (STV 1.0 0.9091)) +(: cnet_partof_a446598e84 (PartOf damper_block piano_action) (STV 1.0 0.9091)) +(: cnet_partof_08bc635a7c (PartOf damson damson_plum) (STV 1.0 0.9091)) +(: cnet_partof_301f3a36c0 (PartOf dance_step step_dancing) (STV 1.0 0.9091)) +(: cnet_partof_3561e76455 (PartOf dandelion_green common_dandelion) (STV 1.0 0.9091)) +(: cnet_partof_5c8069bc8b (PartOf daniel hagiographa) (STV 1.0 0.9091)) +(: cnet_partof_37fa4b1248 (PartOf daniel old_testament) (STV 1.0 0.9091)) +(: cnet_partof_d538b407c8 (PartOf danube austria) (STV 1.0 0.9091)) +(: cnet_partof_2cfa09497f (PartOf danube bulgaria) (STV 1.0 0.9091)) +(: cnet_partof_c84037a0ae (PartOf danube czechoslovakia) (STV 1.0 0.9091)) +(: cnet_partof_12882a2a75 (PartOf danube germany) (STV 1.0 0.9091)) +(: cnet_partof_81a3fc3d77 (PartOf danube hungary) (STV 1.0 0.9091)) +(: cnet_partof_e07576aab2 (PartOf danube romania) (STV 1.0 0.9091)) +(: cnet_partof_72ce5995b5 (PartOf danube ukraine) (STV 1.0 0.9091)) +(: cnet_partof_b0c7e75f43 (PartOf danube yugoslavia) (STV 1.0 0.9091)) +(: cnet_partof_750a45eee4 (PartOf dar_es_salaam tanzania) (STV 1.0 0.9091)) +(: cnet_partof_ac32cecf4b (PartOf dardanelle world_war_i) (STV 1.0 0.9091)) +(: cnet_partof_f58b444391 (PartOf dardanelle turkey) (STV 1.0 0.9091)) +(: cnet_partof_92763e3c23 (PartOf darfur sudan) (STV 1.0 0.9091)) +(: cnet_partof_a90c023ec2 (PartOf dark_meat bird) (STV 1.0 0.9091)) +(: cnet_partof_46c284a88e (PartOf dark_meat drumstick) (STV 1.0 0.9091)) +(: cnet_partof_3cdd764109 (PartOf dark_meat second_joint) (STV 1.0 0.9091)) +(: cnet_partof_248d395ecd (PartOf darling australia) (STV 1.0 0.9091)) +(: cnet_partof_3198a9297d (PartOf dart garment) (STV 1.0 0.9091)) +(: cnet_partof_919c294ca2 (PartOf dartmouth_college new_hampshire) (STV 1.0 0.9091)) +(: cnet_partof_7b2905f001 (PartOf darwin northern_territory) (STV 1.0 0.9091)) +(: cnet_partof_1ac76f7ce7 (PartOf daryacheh_ye_orumiyeh iran) (STV 1.0 0.9091)) +(: cnet_partof_20f8baa462 (PartOf dash morse) (STV 1.0 0.9091)) +(: cnet_partof_e82f3dc020 (PartOf dasht_e_lut iran) (STV 1.0 0.9091)) +(: cnet_partof_2fc295b894 (PartOf data_converter computer) (STV 1.0 0.9091)) +(: cnet_partof_476cafd856 (PartOf date date_palm) (STV 1.0 0.9091)) +(: cnet_partof_1b7e76a8e4 (PartOf dateline dispatch) (STV 1.0 0.9091)) +(: cnet_partof_cc5b416660 (PartOf daugavpil latvia) (STV 1.0 0.9091)) +(: cnet_partof_9dd9ba5c0d (PartOf davenport iowa) (STV 1.0 0.9091)) +(: cnet_partof_ca5a4e5baa (PartOf davit ship) (STV 1.0 0.9091)) +(: cnet_partof_4bc99e8070 (PartOf dawson yukon) (STV 1.0 0.9091)) +(: cnet_partof_0eccb6274b (PartOf day month) (STV 1.0 0.9091)) +(: cnet_partof_2e846f6817 (PartOf day day) (STV 1.0 0.9091)) +(: cnet_partof_19856c5b65 (PartOf day_of_week week) (STV 1.0 0.9091)) +(: cnet_partof_b1a93819ec (PartOf dayton ohio) (STV 1.0 0.9091)) +(: cnet_partof_c09abacd8e (PartOf daytona_beach florida) (STV 1.0 0.9091)) +(: cnet_partof_cb5b2f154b (PartOf dead_sea israel) (STV 1.0 0.9091)) +(: cnet_partof_00136a7af6 (PartOf dead_sea jordan) (STV 1.0 0.9091)) +(: cnet_partof_b4d0361cc3 (PartOf deadlight porthole) (STV 1.0 0.9091)) +(: cnet_partof_65ec791993 (PartOf deal card_game) (STV 1.0 0.9091)) +(: cnet_partof_6dcfd080a1 (PartOf death human_experience) (STV 1.0 0.9091)) +(: cnet_partof_d53379927c (PartOf death life) (STV 1.0 0.9677)) +(: cnet_partof_16a7fa9698 (PartOf death_valley california) (STV 1.0 0.9091)) +(: cnet_partof_c91b5ea79b (PartOf death_valley mojave) (STV 1.0 0.9091)) +(: cnet_partof_88eee90273 (PartOf death_valley nevada) (STV 1.0 0.9091)) +(: cnet_partof_74310c3848 (PartOf decade century) (STV 1.0 0.9091)) +(: cnet_partof_4976ccb8da (PartOf decameter hectometer) (STV 1.0 0.9091)) +(: cnet_partof_5a4155debd (PartOf decatur alabama) (STV 1.0 0.9091)) +(: cnet_partof_e86a5b3b1f (PartOf decatur illinois) (STV 1.0 0.9091)) +(: cnet_partof_19eb458e75 (PartOf december gregorian_calendar) (STV 1.0 0.9091)) +(: cnet_partof_137cd9fbcc (PartOf decigram carat) (STV 1.0 0.9091)) +(: cnet_partof_e9b3080b85 (PartOf deciliter liter) (STV 1.0 0.9091)) +(: cnet_partof_ba0b7cb321 (PartOf decimeter meter) (STV 1.0 0.9091)) +(: cnet_partof_8efcdc4d98 (PartOf deck ship) (STV 1.0 0.9091)) +(: cnet_partof_d83ad2221e (PartOf deck_house upper_deck) (STV 1.0 0.9091)) +(: cnet_partof_60fa04a763 (PartOf deep_south south) (STV 1.0 0.9091)) +(: cnet_partof_ac5a83cfc7 (PartOf deep_space outer_space) (STV 1.0 0.9091)) +(: cnet_partof_52209b6c97 (PartOf defense trial) (STV 1.0 0.9091)) +(: cnet_partof_dc293597b4 (PartOf defense_advanced_research_project_agency department_of_defense) (STV 1.0 0.9091)) +(: cnet_partof_00ce308440 (PartOf defense_information_system_agency department_of_defense) (STV 1.0 0.9091)) +(: cnet_partof_5fb6bddf0e (PartOf defense_intelligence_agency department_of_defense) (STV 1.0 0.9091)) +(: cnet_partof_90016180bc (PartOf defense_logistic_agency department_of_defense) (STV 1.0 0.9091)) +(: cnet_partof_69d0968477 (PartOf defense_reutilization_and_marketing_service defense_logistic_agency) (STV 1.0 0.9091)) +(: cnet_partof_3de91d6c09 (PartOf defense_technical_information_center department_of_defense) (STV 1.0 0.9091)) +(: cnet_partof_4a352e0741 (PartOf degree oxtant) (STV 1.0 0.9091)) +(: cnet_partof_0c3d9c055f (PartOf degree sextant) (STV 1.0 0.9091)) +(: cnet_partof_756fd87d7e (PartOf dehydration plastination) (STV 1.0 0.9091)) +(: cnet_partof_3c164740eb (PartOf dekagram hectogram) (STV 1.0 0.9091)) +(: cnet_partof_47b3f47e21 (PartOf dekaliter hectoliter) (STV 1.0 0.9091)) +(: cnet_partof_2faeab3419 (PartOf del_rio texa) (STV 1.0 0.9091)) +(: cnet_partof_a2d45b7a03 (PartOf delaware mid_atlantic_state) (STV 1.0 0.9091)) +(: cnet_partof_e18748b321 (PartOf delaware united_state) (STV 1.0 0.9091)) +(: cnet_partof_3715061379 (PartOf delaware delaware) (STV 1.0 0.9091)) +(: cnet_partof_bae4dc9751 (PartOf delaware new_york) (STV 1.0 0.9091)) +(: cnet_partof_f2111d13f0 (PartOf delaware_bay atlantic) (STV 1.0 0.9091)) +(: cnet_partof_3ded9f30f2 (PartOf delaware_bay delaware) (STV 1.0 0.9091)) +(: cnet_partof_54dbad31f6 (PartOf delaware_bay new_jersey) (STV 1.0 0.9091)) +(: cnet_partof_8320c16da6 (PartOf delaware_memorial_bridge wilmington) (STV 1.0 0.9091)) +(: cnet_partof_c7d2be6528 (PartOf delayed_action camera) (STV 1.0 0.9091)) +(: cnet_partof_a27fd75a1d (PartOf delhi india) (STV 1.0 0.9091)) +(: cnet_partof_00fb6c9413 (PartOf delivery childbirth) (STV 1.0 0.9091)) +(: cnet_partof_cf0740ae34 (PartOf delphi greece) (STV 1.0 0.9091)) +(: cnet_partof_bf694748f2 (PartOf deltoid rotator_cuff) (STV 1.0 0.9091)) +(: cnet_partof_66ac88b755 (PartOf deltoid_tuberosity humerus) (STV 1.0 0.9091)) +(: cnet_partof_1e96b5399c (PartOf delusion_of_grandeur megalomania) (STV 1.0 0.9091)) +(: cnet_partof_48a9cc5232 (PartOf demavend iran) (STV 1.0 0.9091)) +(: cnet_partof_83cade1fe7 (PartOf demerara guyana) (STV 1.0 0.9091)) +(: cnet_partof_40a5ec6cfe (PartOf demineralization osteomalacia) (STV 1.0 0.9091)) +(: cnet_partof_eac76caa81 (PartOf demyelination multiple_sclerosis) (STV 1.0 0.9091)) +(: cnet_partof_ac08551a91 (PartOf den dwelling) (STV 1.0 0.9091)) +(: cnet_partof_f2556ce66b (PartOf denali_fault alaska) (STV 1.0 0.9091)) +(: cnet_partof_a1e25a590d (PartOf denali_national_park alaska) (STV 1.0 0.9091)) +(: cnet_partof_dc5e3e82be (PartOf dendrite nerve_cell) (STV 1.0 0.9091)) +(: cnet_partof_09557b04ea (PartOf denmark jutland) (STV 1.0 0.9091)) +(: cnet_partof_ab16a67dc1 (PartOf dentate_nucleus cerebellum) (STV 1.0 0.9091)) +(: cnet_partof_42b09614d3 (PartOf dentine tooth) (STV 1.0 0.9091)) +(: cnet_partof_05f150ff39 (PartOf dentition mouth) (STV 1.0 0.9091)) +(: cnet_partof_ad962b654b (PartOf denver colorado) (STV 1.0 0.9091)) +(: cnet_partof_6fac0f1c54 (PartOf department_of_defense_laboratory_system department_of_defense) (STV 1.0 0.9091)) +(: cnet_partof_01b49c9d5f (PartOf department_of_energy_intelligence department_of_energy) (STV 1.0 0.9091)) +(: cnet_partof_a6f01fc41c (PartOf dermis skin) (STV 1.0 0.9091)) +(: cnet_partof_bbc8e0d163 (PartOf des_moine iowa) (STV 1.0 0.9091)) +(: cnet_partof_7f38fae531 (PartOf descending_colon large_intestine) (STV 1.0 0.9091)) +(: cnet_partof_67cd530564 (PartOf detector radio_receiver) (STV 1.0 0.9091)) +(: cnet_partof_421514a451 (PartOf detroit michigan) (STV 1.0 0.9091)) +(: cnet_partof_dfe283180f (PartOf detroit_river michigan) (STV 1.0 0.9091)) +(: cnet_partof_97d507ecc4 (PartOf deuteronomy torah) (STV 1.0 0.9091)) +(: cnet_partof_371ba4cd76 (PartOf devon england) (STV 1.0 0.9091)) +(: cnet_partof_402ae934ef (PartOf devonian paleozoic) (STV 1.0 0.9091)) +(: cnet_partof_a7f75edec4 (PartOf dewberry european_dewberry) (STV 1.0 0.9091)) +(: cnet_partof_481c9e6ce5 (PartOf dewberry northern_dewberry) (STV 1.0 0.9091)) +(: cnet_partof_98d2bea150 (PartOf dewlap neck) (STV 1.0 0.9091)) +(: cnet_partof_aaf8f8699f (PartOf dhahran saudi_arabia) (STV 1.0 0.9091)) +(: cnet_partof_3e03c21250 (PartOf dhaka bangladesh) (STV 1.0 0.9091)) +(: cnet_partof_7ba553ae53 (PartOf dhaulagiri himalaya) (STV 1.0 0.9091)) +(: cnet_partof_ae355d5924 (PartOf dhaulagiri nepal) (STV 1.0 0.9091)) +(: cnet_partof_0ca0686d44 (PartOf dhu_l_hijja islamic_calendar) (STV 1.0 0.9091)) +(: cnet_partof_0523a419bb (PartOf dhu_l_qa_dah islamic_calendar) (STV 1.0 0.9091)) +(: cnet_partof_4e4b0cf99e (PartOf diagnostic_procedure medical_diagnosis) (STV 1.0 0.9091)) +(: cnet_partof_4b281225ba (PartOf diagonal checkerboard) (STV 1.0 0.9091)) +(: cnet_partof_daf4a0cc51 (PartOf diagonal square_matrix) (STV 1.0 0.9091)) +(: cnet_partof_59d5857074 (PartOf diakinesis prophase) (STV 1.0 0.9091)) +(: cnet_partof_6174e3bf5e (PartOf dial dial_telephone) (STV 1.0 0.9091)) +(: cnet_partof_26f9dced7a (PartOf dial timepiece) (STV 1.0 0.9091)) +(: cnet_partof_51321f6630 (PartOf dialog_box graphical_user_interface) (STV 1.0 0.9091)) +(: cnet_partof_96a99e57dd (PartOf diamond_point stylus) (STV 1.0 0.9091)) +(: cnet_partof_7388a9149d (PartOf diaphragm torso) (STV 1.0 0.9091)) +(: cnet_partof_a9dfdb0afe (PartOf diaphragm camera) (STV 1.0 0.9091)) +(: cnet_partof_58243dfe4b (PartOf diaphragm electro_acoustic_transducer) (STV 1.0 0.9091)) +(: cnet_partof_15983e6baa (PartOf diarrhea dysentery) (STV 1.0 0.9091)) +(: cnet_partof_1d7d854884 (PartOf dickey shirt) (STV 1.0 0.9091)) +(: cnet_partof_f2d6a88007 (PartOf diencephalon forebrain) (STV 1.0 0.9091)) +(: cnet_partof_3284a2ff5e (PartOf diesel diesel_locomotive) (STV 1.0 0.9091)) +(: cnet_partof_4495a5bcc8 (PartOf diffuser lamp) (STV 1.0 0.9091)) +(: cnet_partof_522255c3e1 (PartOf diffuser lighting_fixture) (STV 1.0 0.9091)) +(: cnet_partof_dd60367b34 (PartOf digestive_gland digestive_system) (STV 1.0 0.9091)) +(: cnet_partof_40da3e2435 (PartOf digestive_juice digestive_system) (STV 1.0 0.9091)) +(: cnet_partof_b42a8f586f (PartOf digestive_system body) (STV 1.0 0.9091)) +(: cnet_partof_7ec3a209cb (PartOf digit vertebrate) (STV 1.0 0.9091)) +(: cnet_partof_de4ffcf3a2 (PartOf digital_artery foot) (STV 1.0 0.9091)) +(: cnet_partof_e1c5fe40ce (PartOf digital_artery hand) (STV 1.0 0.9091)) +(: cnet_partof_f73406d9f5 (PartOf digital_display digital_voltmeter) (STV 1.0 0.9091)) +(: cnet_partof_4d215881a2 (PartOf digital_display digital_watch) (STV 1.0 0.9091)) +(: cnet_partof_f85beab980 (PartOf dijon france) (STV 1.0 0.9091)) +(: cnet_partof_3e136b074f (PartOf dika_nut wild_mango) (STV 1.0 0.9091)) +(: cnet_partof_fee63bc55f (PartOf dill dill) (STV 1.0 0.9091)) +(: cnet_partof_c38c5afa66 (PartOf dill_seed dill) (STV 1.0 0.9091)) +(: cnet_partof_7ac9b13c4b (PartOf dinette dwelling) (STV 1.0 0.9091)) +(: cnet_partof_d23addfb21 (PartOf dining_room dwelling) (STV 1.0 0.9091)) +(: cnet_partof_837865b09a (PartOf dining_room_table dining_room) (STV 1.0 0.9091)) +(: cnet_partof_6cbad8dc14 (PartOf diplotene prophase) (STV 1.0 0.9091)) +(: cnet_partof_fb74ac2412 (PartOf dipylon_gate athen) (STV 1.0 0.9091)) +(: cnet_partof_f4f1e7acbd (PartOf discard card_game) (STV 1.0 0.9091)) +(: cnet_partof_e6220a3185 (PartOf dish radar) (STV 1.0 0.9091)) +(: cnet_partof_c790e05731 (PartOf dish radio_telescope) (STV 1.0 0.9091)) +(: cnet_partof_a7f86713bd (PartOf dish meal) (STV 1.0 0.9091)) +(: cnet_partof_cc82a5def7 (PartOf disk_cache computer) (STV 1.0 0.9091)) +(: cnet_partof_f06442dd2c (PartOf disk_drive computer) (STV 1.0 0.9091)) +(: cnet_partof_7195cdea08 (PartOf diskette computer) (STV 1.0 0.9091)) +(: cnet_partof_64efbee96e (PartOf disneyland anaheim) (STV 1.0 0.9091)) +(: cnet_partof_b77cfc3eea (PartOf display_window shopfront) (STV 1.0 0.9091)) +(: cnet_partof_7290135797 (PartOf distaff spinning_wheel) (STV 1.0 0.9091)) +(: cnet_partof_6fdb983c0a (PartOf distribution marketing) (STV 1.0 0.9091)) +(: cnet_partof_9a8658034a (PartOf distributor ignition) (STV 1.0 0.9091)) +(: cnet_partof_158b9f4ae0 (PartOf distributor_cam distributor) (STV 1.0 0.9091)) +(: cnet_partof_d722937c5f (PartOf distributor_cap distributor) (STV 1.0 0.9091)) +(: cnet_partof_f448d2e0ad (PartOf distributor_point distributor) (STV 1.0 0.9091)) +(: cnet_partof_a8958a6a2c (PartOf district_of_columbia united_state) (STV 1.0 0.9091)) +(: cnet_partof_ed3a985649 (PartOf divergent_thinking creativity) (STV 1.0 0.9091)) +(: cnet_partof_f72ad688f1 (PartOf divi_divi divi_divi) (STV 1.0 0.9091)) +(: cnet_partof_fa4f88eee8 (PartOf diving swimming_meet) (STV 1.0 0.9091)) +(: cnet_partof_8d2f442e79 (PartOf djanet algeria) (STV 1.0 0.9091)) +(: cnet_partof_20a62a2383 (PartOf djibouti africa) (STV 1.0 0.9091)) +(: cnet_partof_916517e905 (PartOf djibouti djibouti) (STV 1.0 0.9091)) +(: cnet_partof_9cb86405af (PartOf djibouti somali_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_e180dac1dd (PartOf dnieper belarus) (STV 1.0 0.9091)) +(: cnet_partof_235eb0ccb6 (PartOf dnieper russia) (STV 1.0 0.9091)) +(: cnet_partof_d7769820c5 (PartOf dnieper ukraine) (STV 1.0 0.9091)) +(: cnet_partof_a6976b30f3 (PartOf do_si_do square_dance) (STV 1.0 0.9091)) +(: cnet_partof_8a9e8e0f8f (PartOf dock tail) (STV 1.0 0.9091)) +(: cnet_partof_e19693f133 (PartOf dock seaport) (STV 1.0 0.9091)) +(: cnet_partof_d6a988733e (PartOf dodecanese greece) (STV 1.0 0.9091)) +(: cnet_partof_6651be6c4c (PartOf dodge_city kansa) (STV 1.0 0.9091)) +(: cnet_partof_0ad2697ad9 (PartOf dodoma tanzania) (STV 1.0 0.9091)) +(: cnet_partof_5049a88f30 (PartOf dog_day summer) (STV 1.0 0.9091)) +(: cnet_partof_971d99e6b1 (PartOf dog_ear page) (STV 1.0 0.9091)) +(: cnet_partof_5eceb2fe0c (PartOf doha qatar) (STV 1.0 0.9091)) +(: cnet_partof_2bd2fc4411 (PartOf dokdo territory_of_korea) (STV 1.0 0.9091)) +(: cnet_partof_7c5a396b71 (PartOf dolman_sleeve dolman) (STV 1.0 0.9091)) +(: cnet_partof_1a482dba01 (PartOf dolomite_alp alp) (STV 1.0 0.9091)) +(: cnet_partof_d09dbc4712 (PartOf dolomite_alp italy) (STV 1.0 0.9091)) +(: cnet_partof_8b2f02ac88 (PartOf dolphin_kick butterfly) (STV 1.0 0.9091)) +(: cnet_partof_4c332eda7a (PartOf dolphinfish dolphinfish) (STV 1.0 0.9091)) +(: cnet_partof_4e5bcad37e (PartOf domain country) (STV 1.0 0.9091)) +(: cnet_partof_38e03e6cb7 (PartOf dominica caribbean) (STV 1.0 0.9091)) +(: cnet_partof_4c65cacd7a (PartOf dominica dominica) (STV 1.0 0.9091)) +(: cnet_partof_d4b89b8216 (PartOf dominica windward_island) (STV 1.0 0.9091)) +(: cnet_partof_b273a5db4b (PartOf dominican_republic caribbean) (STV 1.0 0.9091)) +(: cnet_partof_6ba2ab64ea (PartOf dominican_republic hispaniola) (STV 1.0 0.9091)) +(: cnet_partof_62b6361060 (PartOf dominion_day july) (STV 1.0 0.9091)) +(: cnet_partof_a969b79fb7 (PartOf domino fancy_dress) (STV 1.0 0.9091)) +(: cnet_partof_2e5e5a0f65 (PartOf don russia) (STV 1.0 0.9091)) +(: cnet_partof_805686ea01 (PartOf donet_basin ukraine) (STV 1.0 0.9091)) +(: cnet_partof_7c7682e60a (PartOf donetsk ukraine) (STV 1.0 0.9091)) +(: cnet_partof_8480c751bd (PartOf donner_pass california) (STV 1.0 0.9091)) +(: cnet_partof_e36b1b76c1 (PartOf donner_pass sierra_nevada) (STV 1.0 0.9091)) +(: cnet_partof_88b459740c (PartOf door doorway) (STV 1.0 0.9091)) +(: cnet_partof_0078841d5e (PartOf doorframe doorway) (STV 1.0 0.9091)) +(: cnet_partof_ef4889b369 (PartOf doorjamb doorframe) (STV 1.0 0.9091)) +(: cnet_partof_d7e13fe0bd (PartOf doorknob door) (STV 1.0 0.9339)) +(: cnet_partof_f465cb0426 (PartOf doorknob exterior_door) (STV 1.0 0.9091)) +(: cnet_partof_a09ab755d1 (PartOf doorlock car_door) (STV 1.0 0.9091)) +(: cnet_partof_6fb21a85fc (PartOf doorlock exterior_door) (STV 1.0 0.9091)) +(: cnet_partof_e012c6e8a7 (PartOf doorsill doorway) (STV 1.0 0.9091)) +(: cnet_partof_9b1ed10798 (PartOf doorway wall) (STV 1.0 0.9091)) +(: cnet_partof_b6eaa05589 (PartOf doris greece) (STV 1.0 0.9091)) +(: cnet_partof_d9d8d7ee8f (PartOf dormition august) (STV 1.0 0.9091)) +(: cnet_partof_6c33099241 (PartOf dortmund germany) (STV 1.0 0.9091)) +(: cnet_partof_0cc127afc9 (PartOf dot morse) (STV 1.0 0.9091)) +(: cnet_partof_82cc473583 (PartOf douala cameroon) (STV 1.0 0.9091)) +(: cnet_partof_62b63d1829 (PartOf double_breasted_jacket double_breasted_suit) (STV 1.0 0.9091)) +(: cnet_partof_2a25734e40 (PartOf double_reed double_reed_instrument) (STV 1.0 0.9091)) +(: cnet_partof_4f54ebdb50 (PartOf doubling card_game) (STV 1.0 0.9091)) +(: cnet_partof_20ff3458f3 (PartOf doubt human_experience) (STV 1.0 0.9339)) +(: cnet_partof_a558a328cb (PartOf dover delaware) (STV 1.0 0.9091)) +(: cnet_partof_9d339f6824 (PartOf downing_street westminster) (STV 1.0 0.9091)) +(: cnet_partof_ed3540312f (PartOf downstage theater_stage) (STV 1.0 0.9091)) +(: cnet_partof_595a45e198 (PartOf doxology christian_liturgy) (STV 1.0 0.9091)) +(: cnet_partof_f1d6055232 (PartOf drain_basket sink) (STV 1.0 0.9091)) +(: cnet_partof_695571dab8 (PartOf dram ounce) (STV 1.0 0.9091)) +(: cnet_partof_98afa357ea (PartOf dramatic_composition dramaturgy) (STV 1.0 0.9091)) +(: cnet_partof_185c034f4e (PartOf drawer buffet) (STV 1.0 0.9091)) +(: cnet_partof_904388c94d (PartOf drawer chest_of_drawer) (STV 1.0 0.9091)) +(: cnet_partof_b477603d48 (PartOf drawer chiffonier) (STV 1.0 0.9091)) +(: cnet_partof_6dc315b99a (PartOf drawer desk) (STV 1.0 0.9091)) +(: cnet_partof_2240b379d6 (PartOf drawing_room sleeping_car) (STV 1.0 0.9091)) +(: cnet_partof_865c61074a (PartOf drawstring drawstring_bag) (STV 1.0 0.9091)) +(: cnet_partof_1ed5cf7acd (PartOf dream sleeping) (STV 1.0 0.9091)) +(: cnet_partof_90467cb21d (PartOf dredge dredger) (STV 1.0 0.9091)) +(: cnet_partof_2c3748a84f (PartOf dredging_bucket dredge) (STV 1.0 0.9091)) +(: cnet_partof_b264afc499 (PartOf dresden germany) (STV 1.0 0.9091)) +(: cnet_partof_4872689f4b (PartOf dressage three_day_event) (STV 1.0 0.9091)) +(: cnet_partof_e2fe415b57 (PartOf dressing_room bathhouse) (STV 1.0 0.9091)) +(: cnet_partof_188c4f4a23 (PartOf dressing_room dwelling) (STV 1.0 0.9091)) +(: cnet_partof_6598a6890a (PartOf dressing_room theater) (STV 1.0 0.9091)) +(: cnet_partof_a95075eaec (PartOf drinking_age adulthood) (STV 1.0 0.9091)) +(: cnet_partof_ef9929b4e1 (PartOf drip_loop line) (STV 1.0 0.9091)) +(: cnet_partof_e15b992285 (PartOf drip_pan refrigerator) (STV 1.0 0.9091)) +(: cnet_partof_7e33a476a5 (PartOf drive_line motor_vehicle) (STV 1.0 0.9091)) +(: cnet_partof_044ee1dab0 (PartOf driveshaft drive_line) (STV 1.0 0.9091)) +(: cnet_partof_9f1a2394a5 (PartOf driving_wheel drive_line) (STV 1.0 0.9091)) +(: cnet_partof_8e8c13462c (PartOf drogheda english_civil_war) (STV 1.0 0.9091)) +(: cnet_partof_684dc178dd (PartOf drone bagpipe) (STV 1.0 0.9091)) +(: cnet_partof_2c0dc8d27a (PartOf drop_forge forge) (STV 1.0 0.9091)) +(: cnet_partof_73434bd39c (PartOf drop_leaf drop_leaf_table) (STV 1.0 0.9091)) +(: cnet_partof_3d355d2fb7 (PartOf drug pharmacopoeia) (STV 1.0 0.9091)) +(: cnet_partof_6083960dbc (PartOf drug_enforcement_administration department_of_justice) (STV 1.0 0.9091)) +(: cnet_partof_c2d93a5da2 (PartOf drumhead drum) (STV 1.0 0.9091)) +(: cnet_partof_bbb1ce1cae (PartOf drumstick bird) (STV 1.0 0.9091)) +(: cnet_partof_c189fb7e5d (PartOf dry_bulb_thermometer psychrometer) (STV 1.0 0.9091)) +(: cnet_partof_c9f57251a1 (PartOf dry_cell dry_battery) (STV 1.0 0.9091)) +(: cnet_partof_e45bc6e754 (PartOf dry_dock shipyard) (STV 1.0 0.9091)) +(: cnet_partof_39e6075e43 (PartOf dubai united_arab_emirate) (STV 1.0 0.9091)) +(: cnet_partof_54baf82e13 (PartOf dublin ireland) (STV 1.0 0.9091)) +(: cnet_partof_39d9e4ef91 (PartOf dubrovnik croatia) (STV 1.0 0.9091)) +(: cnet_partof_db6711f0df (PartOf dubuque iowa) (STV 1.0 0.9091)) +(: cnet_partof_d8373be1a6 (PartOf duck duck) (STV 1.0 0.9091)) +(: cnet_partof_27b2f191be (PartOf duck_down duck) (STV 1.0 0.9091)) +(: cnet_partof_7733295f29 (PartOf duct vascular_plant) (STV 1.0 0.9091)) +(: cnet_partof_6ed0610f34 (PartOf ductus_arteriosus fetus) (STV 1.0 0.9091)) +(: cnet_partof_0c2ebba073 (PartOf dug female_mammal) (STV 1.0 0.9091)) +(: cnet_partof_7034112c45 (PartOf dugout ballpark) (STV 1.0 0.9091)) +(: cnet_partof_19c5f43b05 (PartOf duke_university durham) (STV 1.0 0.9091)) +(: cnet_partof_e9461e58f9 (PartOf duluth minnesota) (STV 1.0 0.9091)) +(: cnet_partof_cc9bf24e40 (PartOf dungeness_crab dungeness_crab) (STV 1.0 0.9091)) +(: cnet_partof_d8f95d1ee1 (PartOf dunkirk world_war_ii) (STV 1.0 0.9091)) +(: cnet_partof_4b9dc6d248 (PartOf durango mexico) (STV 1.0 0.9091)) +(: cnet_partof_7b01297baf (PartOf durban south_africa) (STV 1.0 0.9091)) +(: cnet_partof_7d460ee9d3 (PartOf durham north_carolina) (STV 1.0 0.9091)) +(: cnet_partof_79a04051b0 (PartOf durian durian) (STV 1.0 0.9091)) +(: cnet_partof_40ccd834db (PartOf durre albania) (STV 1.0 0.9091)) +(: cnet_partof_9d8b8a6dcb (PartOf dushanbe tajikistan) (STV 1.0 0.9091)) +(: cnet_partof_f8c3227217 (PartOf dusseldorf germany) (STV 1.0 0.9091)) +(: cnet_partof_3676102006 (PartOf dust_bag vacuum) (STV 1.0 0.9091)) +(: cnet_partof_d8255e5d8d (PartOf dust_bowl great_plain) (STV 1.0 0.9091)) +(: cnet_partof_f0593ebeec (PartOf dyne newton) (STV 1.0 0.9091)) +(: cnet_partof_e44829f4dd (PartOf ear auditory_system) (STV 1.0 0.9091)) +(: cnet_partof_c1a3bd9da7 (PartOf ear head) (STV 1.0 0.9091)) +(: cnet_partof_b1efd6a65d (PartOf ear vestibular_apparatus) (STV 1.0 0.9091)) +(: cnet_partof_1946f57a8d (PartOf ear corn) (STV 1.0 0.9091)) +(: cnet_partof_530ac5f744 (PartOf eardrum ear) (STV 1.0 0.9091)) +(: cnet_partof_449bf335c0 (PartOf earflap cap) (STV 1.0 0.9091)) +(: cnet_partof_ed2398ce76 (PartOf earlobe auricle) (STV 1.0 0.9091)) +(: cnet_partof_911c656773 (PartOf early_morning_hour morning) (STV 1.0 0.9091)) +(: cnet_partof_df873455c2 (PartOf early_warning_radar early_warning_system) (STV 1.0 0.9091)) +(: cnet_partof_00caff29b4 (PartOf earth solar_system) (STV 1.0 0.9339)) +(: cnet_partof_a21b41a2d9 (PartOf earth universe) (STV 1.0 0.9636)) +(: cnet_partof_87a8976dd6 (PartOf east united_state) (STV 1.0 0.9091)) +(: cnet_partof_9b63a97ca8 (PartOf east_africa africa) (STV 1.0 0.9091)) +(: cnet_partof_9d5636fdf9 (PartOf east_anglia england) (STV 1.0 0.9091)) +(: cnet_partof_98d0502c6e (PartOf east_china_sea pacific) (STV 1.0 0.9091)) +(: cnet_partof_b2e4196cf2 (PartOf east_coast east) (STV 1.0 0.9091)) +(: cnet_partof_abdb8c3ae6 (PartOf east_malaysia borneo) (STV 1.0 0.9091)) +(: cnet_partof_715dc3b17a (PartOf east_malaysia malaysia) (STV 1.0 0.9091)) +(: cnet_partof_34b0351e22 (PartOf east_river new_york) (STV 1.0 0.9091)) +(: cnet_partof_07d69ef9b5 (PartOf east_saint_louis illinois) (STV 1.0 0.9091)) +(: cnet_partof_3563be75a3 (PartOf east_sussex england) (STV 1.0 0.9091)) +(: cnet_partof_d10d63857f (PartOf east_timor southeast_asia) (STV 1.0 0.9091)) +(: cnet_partof_a4c254977c (PartOf east_timor timor) (STV 1.0 0.9091)) +(: cnet_partof_47bf58b25e (PartOf eastern_desert arabian_desert) (STV 1.0 0.9091)) +(: cnet_partof_bfd05576b7 (PartOf eastern_desert egypt) (STV 1.0 0.9091)) +(: cnet_partof_e2f4f52721 (PartOf eau_claire wisconsin) (STV 1.0 0.9091)) +(: cnet_partof_22e3708ae9 (PartOf eave roof) (STV 1.0 0.9091)) +(: cnet_partof_3eb90530ea (PartOf ebb ebbtide) (STV 1.0 0.9091)) +(: cnet_partof_897c017b8b (PartOf ebro spain) (STV 1.0 0.9091)) +(: cnet_partof_bbc122079e (PartOf ecclesiaste hagiographa) (STV 1.0 0.9091)) +(: cnet_partof_b5a4442a6c (PartOf ecclesiaste old_testament) (STV 1.0 0.9091)) +(: cnet_partof_eef23d16e3 (PartOf ecclesiaste sapiential_book) (STV 1.0 0.9091)) +(: cnet_partof_d69c3543c7 (PartOf economic_theory economic) (STV 1.0 0.9091)) +(: cnet_partof_831795cd44 (PartOf ecuador south_america) (STV 1.0 0.9091)) +(: cnet_partof_e54bdf65cb (PartOf edging fabric) (STV 1.0 0.9091)) +(: cnet_partof_47b89f7dbb (PartOf edging rug) (STV 1.0 0.9091)) +(: cnet_partof_f17f6acf60 (PartOf edging tapestry) (STV 1.0 0.9091)) +(: cnet_partof_604dba996b (PartOf edinburgh lothian_region) (STV 1.0 0.9091)) +(: cnet_partof_dab8f3021c (PartOf edirne turkey) (STV 1.0 0.9091)) +(: cnet_partof_1399bcc03e (PartOf edmonton alberta) (STV 1.0 0.9091)) +(: cnet_partof_7b053621a5 (PartOf eel common_eel) (STV 1.0 0.9091)) +(: cnet_partof_c8dc3ccd67 (PartOf effacement parturiency) (STV 1.0 0.9091)) +(: cnet_partof_9b4ec0cf71 (PartOf efferent_fiber motor_nerve) (STV 1.0 0.9091)) +(: cnet_partof_caea133bdf (PartOf effleurage lamaze_method_of_childbirth) (STV 1.0 0.9091)) +(: cnet_partof_8f5119caec (PartOf egadi_island mediterranean) (STV 1.0 0.9091)) +(: cnet_partof_225ffe902d (PartOf egadi_island sicily) (STV 1.0 0.9091)) +(: cnet_partof_f963d5b979 (PartOf egg_white egg) (STV 1.0 0.9091)) +(: cnet_partof_1a1a01321a (PartOf egg_yolk egg) (STV 1.0 0.9091)) +(: cnet_partof_76ff880c28 (PartOf eggplant eggplant) (STV 1.0 0.9091)) +(: cnet_partof_2a455bc9da (PartOf egress eclipse) (STV 1.0 0.9091)) +(: cnet_partof_151a50c9f0 (PartOf egypt africa) (STV 1.0 0.9091)) +(: cnet_partof_6dccf4fa79 (PartOf egypt middle_east) (STV 1.0 0.9091)) +(: cnet_partof_d2962af60f (PartOf ehadhamen tunisia) (STV 1.0 0.9091)) +(: cnet_partof_d0c0cf2d95 (PartOf eiderdown eider) (STV 1.0 0.9091)) +(: cnet_partof_1dbc552164 (PartOf eiffel_tower paris) (STV 1.0 0.9091)) +(: cnet_partof_6e5a3bbeb5 (PartOf eighteenth_amendment united_state_constitution) (STV 1.0 0.9091)) +(: cnet_partof_660ef1e941 (PartOf eighty old_age) (STV 1.0 0.9091)) +(: cnet_partof_f77e99d0ad (PartOf eindhoven netherland) (STV 1.0 0.9091)) +(: cnet_partof_9c17199dc1 (PartOf ejaculatory_duct seminal_duct) (STV 1.0 0.9091)) +(: cnet_partof_eb3f8a4db2 (PartOf ejection_seat cockpit) (STV 1.0 0.9091)) +(: cnet_partof_cfd801b025 (PartOf el_aaium morocco) (STV 1.0 0.9091)) +(: cnet_partof_f11172b2b5 (PartOf el_alamein world_war_ii) (STV 1.0 0.9091)) +(: cnet_partof_ea56effbcf (PartOf el_alamein egypt) (STV 1.0 0.9091)) +(: cnet_partof_75962786f1 (PartOf el_libertador ande) (STV 1.0 0.9091)) +(: cnet_partof_3b5395746a (PartOf el_libertador argentina) (STV 1.0 0.9091)) +(: cnet_partof_e98e486035 (PartOf el_misti peru) (STV 1.0 0.9091)) +(: cnet_partof_97a2748951 (PartOf el_muerto ande) (STV 1.0 0.9091)) +(: cnet_partof_c529eb2a25 (PartOf el_muerto argentina) (STV 1.0 0.9091)) +(: cnet_partof_bf283e050d (PartOf el_muerto chile) (STV 1.0 0.9091)) +(: cnet_partof_26c32b1d77 (PartOf el_paso texa) (STV 1.0 0.9091)) +(: cnet_partof_2697731093 (PartOf el_salvador central_america) (STV 1.0 0.9091)) +(: cnet_partof_21d92aa5dc (PartOf elbe europe) (STV 1.0 0.9091)) +(: cnet_partof_b45934811f (PartOf elbow foreleg) (STV 1.0 0.9091)) +(: cnet_partof_19a2745d8e (PartOf elbow sleeve) (STV 1.0 0.9091)) +(: cnet_partof_39025cf91b (PartOf elbow arm) (STV 1.0 0.9091)) +(: cnet_partof_ceee83d83f (PartOf elderberry american_elder) (STV 1.0 0.9091)) +(: cnet_partof_b0b6068532 (PartOf electric_drill drill_press) (STV 1.0 0.9091)) +(: cnet_partof_3118d0033e (PartOf electric_main grid) (STV 1.0 0.9091)) +(: cnet_partof_f79e157b11 (PartOf electric_motor drum_sander) (STV 1.0 0.9091)) +(: cnet_partof_fca008a556 (PartOf electric_motor electric_clock) (STV 1.0 0.9091)) +(: cnet_partof_9861ce4c96 (PartOf electric_motor electric_drill) (STV 1.0 0.9091)) +(: cnet_partof_8bc200b804 (PartOf electric_motor electric_fan) (STV 1.0 0.9091)) +(: cnet_partof_bde267310a (PartOf electric_motor electric_hammer) (STV 1.0 0.9091)) +(: cnet_partof_c11e56aff5 (PartOf electric_motor electric_locomotive) (STV 1.0 0.9091)) +(: cnet_partof_ab3314a866 (PartOf electric_motor electric_mixer) (STV 1.0 0.9091)) +(: cnet_partof_c436ccebcb (PartOf electric_motor electric_refrigerator) (STV 1.0 0.9091)) +(: cnet_partof_b9b4efa0e0 (PartOf electric_motor electric_toothbrush) (STV 1.0 0.9091)) +(: cnet_partof_1da614ff0e (PartOf electric_motor electric_typewriter) (STV 1.0 0.9091)) +(: cnet_partof_1189485661 (PartOf electric_motor self_starter) (STV 1.0 0.9091)) +(: cnet_partof_70af638754 (PartOf electric_motor trolleybus) (STV 1.0 0.9091)) +(: cnet_partof_458ca6717f (PartOf electric_socket lamp) (STV 1.0 0.9091)) +(: cnet_partof_84b7f7ae47 (PartOf electrical_system motor_vehicle) (STV 1.0 0.9091)) +(: cnet_partof_a12068fd32 (PartOf electrocardiogram checkup) (STV 1.0 0.9091)) +(: cnet_partof_2070a20e4c (PartOf electrode battery) (STV 1.0 0.9091)) +(: cnet_partof_24f7c5dc7e (PartOf electrode electrolytic_cell) (STV 1.0 0.9091)) +(: cnet_partof_e6e54eccbf (PartOf electrode electronic_equipment) (STV 1.0 0.9091)) +(: cnet_partof_8a33ebb17f (PartOf electrode tube) (STV 1.0 0.9091)) +(: cnet_partof_38974fc734 (PartOf electromagnet electric_bell) (STV 1.0 0.9091)) +(: cnet_partof_372a292dc0 (PartOf electromagnet relay) (STV 1.0 0.9091)) +(: cnet_partof_4f028da4c5 (PartOf electron atom) (STV 1.0 0.9608)) +(: cnet_partof_8fd583c3b6 (PartOf electron_gun cathode_ray_tube) (STV 1.0 0.9091)) +(: cnet_partof_1bbd6e5ab2 (PartOf electron_gun electron_microscope) (STV 1.0 0.9091)) +(: cnet_partof_a6ba88e46e (PartOf elementary_particle atom) (STV 1.0 0.9091)) +(: cnet_partof_11155ab122 (PartOf elevator building) (STV 1.0 0.9091)) +(: cnet_partof_884d850af8 (PartOf elevator horizontal_tail) (STV 1.0 0.9091)) +(: cnet_partof_e7abed6c03 (PartOf elizabeth_river virginia) (STV 1.0 0.9091)) +(: cnet_partof_76e3042eab (PartOf ellis_island new_jersey) (STV 1.0 0.9091)) +(: cnet_partof_89711e3c04 (PartOf elmont long_island) (STV 1.0 0.9091)) +(: cnet_partof_931f9ee24c (PartOf elul jewish_calendar) (STV 1.0 0.9091)) +(: cnet_partof_804f342ec4 (PartOf em inch) (STV 1.0 0.9091)) +(: cnet_partof_0537eaf2a9 (PartOf embolism calendar) (STV 1.0 0.9091)) +(: cnet_partof_5b664d087c (PartOf embolus embolism) (STV 1.0 0.9091)) +(: cnet_partof_9d816ce1a0 (PartOf emilia_romagna italy) (STV 1.0 0.9091)) +(: cnet_partof_3eb98c9baa (PartOf emitter transistor) (STV 1.0 0.9091)) +(: cnet_partof_3d214025a2 (PartOf emotion mind) (STV 1.0 0.9339)) +(: cnet_partof_137b0dc750 (PartOf empire_state_building new_york) (STV 1.0 0.9091)) +(: cnet_partof_14f8d5a7d3 (PartOf employee company) (STV 1.0 0.9091)) +(: cnet_partof_036a21b918 (PartOf en em) (STV 1.0 0.9091)) +(: cnet_partof_c0225f919f (PartOf enamel crown) (STV 1.0 0.9091)) +(: cnet_partof_7e3a9f8b63 (PartOf encolure horse) (STV 1.0 0.9091)) +(: cnet_partof_acb43c36c2 (PartOf end_plate effector) (STV 1.0 0.9091)) +(: cnet_partof_a67008ea7b (PartOf enderby_land antarctica) (STV 1.0 0.9091)) +(: cnet_partof_75330468c4 (PartOf endocranium skull) (STV 1.0 0.9091)) +(: cnet_partof_9cc646400c (PartOf endocrine_gland endocrine_system) (STV 1.0 0.9091)) +(: cnet_partof_f4cd96ebc8 (PartOf endocrine_system body) (STV 1.0 0.9091)) +(: cnet_partof_6152a039dd (PartOf endolymph inner_ear) (STV 1.0 0.9091)) +(: cnet_partof_64298b62f3 (PartOf endometrium uterus) (STV 1.0 0.9091)) +(: cnet_partof_e9933ee7fb (PartOf endosperm seed) (STV 1.0 0.9091)) +(: cnet_partof_2f01bf4268 (PartOf endosteum long_bone) (STV 1.0 0.9091)) +(: cnet_partof_9be033e390 (PartOf energid cell) (STV 1.0 0.9091)) +(: cnet_partof_c2282bc9e8 (PartOf engine automobile) (STV 1.0 0.9091)) +(: cnet_partof_dc637b9bdb (PartOf engine car) (STV 1.0 0.9454)) +(: cnet_partof_eefbac57e7 (PartOf engine_block internal_combustion_engine) (STV 1.0 0.9091)) +(: cnet_partof_05dffa503a (PartOf engine_block reciprocating_engine) (STV 1.0 0.9091)) +(: cnet_partof_eff391024a (PartOf england europe) (STV 1.0 0.9091)) +(: cnet_partof_5bc8f6236c (PartOf england united_kingdom) (STV 1.0 0.9091)) +(: cnet_partof_f87a7fb958 (PartOf english_channel atlantic) (STV 1.0 0.9091)) +(: cnet_partof_7734aad689 (PartOf enid oklahoma) (STV 1.0 0.9091)) +(: cnet_partof_e543ce3724 (PartOf eniwetok world_war_ii) (STV 1.0 0.9091)) +(: cnet_partof_117934c0a3 (PartOf eniwetok marshall_island) (STV 1.0 0.9091)) +(: cnet_partof_7844eaf422 (PartOf entablature temple) (STV 1.0 0.9091)) +(: cnet_partof_a475f8c4cf (PartOf entasis column) (STV 1.0 0.9091)) +(: cnet_partof_b1324cf3b1 (PartOf entebbe uganda) (STV 1.0 0.9091)) +(: cnet_partof_2bd7baa508 (PartOf entomion parietal_bone) (STV 1.0 0.9091)) +(: cnet_partof_0b4ea6c091 (PartOf envelope balloon) (STV 1.0 0.9091)) +(: cnet_partof_bcd83ac962 (PartOf eocene tertiary) (STV 1.0 0.9091)) +(: cnet_partof_ba04c8c351 (PartOf eolithic_age stone_age) (STV 1.0 0.9091)) +(: cnet_partof_6ebd4a9140 (PartOf epauliere body_armor) (STV 1.0 0.9091)) +(: cnet_partof_971ca6211c (PartOf ephah homer) (STV 1.0 0.9091)) +(: cnet_partof_aeeae6ee76 (PartOf ephesus asia_minor) (STV 1.0 0.9091)) +(: cnet_partof_229ec00471 (PartOf epicanthus eye) (STV 1.0 0.9091)) +(: cnet_partof_b45a6328c7 (PartOf epicardia esophagus) (STV 1.0 0.9091)) +(: cnet_partof_a87761fee1 (PartOf epicardium pericardium) (STV 1.0 0.9091)) +(: cnet_partof_fa2b9e3dd8 (PartOf epidermal_cell epidermis) (STV 1.0 0.9091)) +(: cnet_partof_7d98b0daaf (PartOf epidermis skin) (STV 1.0 0.9091)) +(: cnet_partof_0c0a863e1c (PartOf epididymis seminal_duct) (STV 1.0 0.9091)) +(: cnet_partof_8173c8c4ce (PartOf epididymis testis) (STV 1.0 0.9091)) +(: cnet_partof_efdac401f4 (PartOf epiglottis trachea) (STV 1.0 0.9091)) +(: cnet_partof_87d5639f0c (PartOf epileptic_seizure epilepsy) (STV 1.0 0.9091)) +(: cnet_partof_1a7207ae57 (PartOf epilogue writing) (STV 1.0 0.9091)) +(: cnet_partof_d14240e411 (PartOf epiphany january) (STV 1.0 0.9091)) +(: cnet_partof_20ca4239bf (PartOf epirus albania) (STV 1.0 0.9091)) +(: cnet_partof_bcea6d069e (PartOf epirus greece) (STV 1.0 0.9091)) +(: cnet_partof_c5b7c93866 (PartOf episode serial) (STV 1.0 0.9091)) +(: cnet_partof_b8214de16e (PartOf epistle new_testament) (STV 1.0 0.9091)) +(: cnet_partof_1f1dcf9b5c (PartOf epistle_of_jame new_testament) (STV 1.0 0.9091)) +(: cnet_partof_e2d446117c (PartOf epistle_of_jude new_testament) (STV 1.0 0.9091)) +(: cnet_partof_2d0e43d176 (PartOf epistle_of_paul_apostle_to_colossian new_testament) (STV 1.0 0.9091)) +(: cnet_partof_053ac1765d (PartOf epistle_of_paul_apostle_to_ephesian new_testament) (STV 1.0 0.9091)) +(: cnet_partof_9348da7e44 (PartOf epistle_of_paul_apostle_to_galatian new_testament) (STV 1.0 0.9091)) +(: cnet_partof_8974ebabce (PartOf epistle_of_paul_apostle_to_philippian new_testament) (STV 1.0 0.9091)) +(: cnet_partof_8e8dd9addb (PartOf epistle_of_paul_apostle_to_roman new_testament) (STV 1.0 0.9091)) +(: cnet_partof_58b88755bc (PartOf epistle_of_paul_apostle_to_titus new_testament) (STV 1.0 0.9091)) +(: cnet_partof_2c2dc0c992 (PartOf epistle_to_hebrew new_testament) (STV 1.0 0.9091)) +(: cnet_partof_0596646fdf (PartOf epithelial_cell epithelium) (STV 1.0 0.9091)) +(: cnet_partof_95b1473f8a (PartOf epoch period) (STV 1.0 0.9091)) +(: cnet_partof_4f68edb9c7 (PartOf equality_for_everyone communism) (STV 1.0 0.9339)) +(: cnet_partof_b76a779b75 (PartOf equality_for_everyone democracy) (STV 1.0 0.9091)) +(: cnet_partof_6bcdaba324 (PartOf equatorial_guinea africa) (STV 1.0 0.9091)) +(: cnet_partof_23b29faed8 (PartOf era eon) (STV 1.0 0.9091)) +(: cnet_partof_cd42165db2 (PartOf erectile_tissue erectile_organ) (STV 1.0 0.9091)) +(: cnet_partof_f10c7885e3 (PartOf erg joule) (STV 1.0 0.9091)) +(: cnet_partof_0defc7b846 (PartOf erie pennsylvania) (STV 1.0 0.9091)) +(: cnet_partof_5bef333b42 (PartOf erie_canal new_york) (STV 1.0 0.9091)) +(: cnet_partof_a09d9963d9 (PartOf erie_canal new_york_state_barge_canal) (STV 1.0 0.9091)) +(: cnet_partof_a50347b897 (PartOf eritrea somali_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_93ae28240a (PartOf erythema_nodosum_leprosum leprosy) (STV 1.0 0.9091)) +(: cnet_partof_7163bfec72 (PartOf escape_hatch airplane) (STV 1.0 0.9091)) +(: cnet_partof_29455f283f (PartOf escape_hatch submarine) (STV 1.0 0.9091)) +(: cnet_partof_07b1f506ed (PartOf escape_wheel escapement) (STV 1.0 0.9091)) +(: cnet_partof_0ee5fcf8c7 (PartOf escapement timepiece) (STV 1.0 0.9091)) +(: cnet_partof_33b447ab52 (PartOf escutcheon stern) (STV 1.0 0.9091)) +(: cnet_partof_06dc1677b5 (PartOf esophagus alimentary_canal) (STV 1.0 0.9091)) +(: cnet_partof_5e2463dd06 (PartOf espoo finland) (STV 1.0 0.9091)) +(: cnet_partof_4667a61bd1 (PartOf essen germany) (STV 1.0 0.9091)) +(: cnet_partof_c865fff017 (PartOf essex england) (STV 1.0 0.9091)) +(: cnet_partof_d11eb6db51 (PartOf estate state) (STV 1.0 0.9091)) +(: cnet_partof_13d14c95d0 (PartOf esther hagiographa) (STV 1.0 0.9091)) +(: cnet_partof_b14ec54e2d (PartOf esther old_testament) (STV 1.0 0.9091)) +(: cnet_partof_26a7dec325 (PartOf estivation flower_bud) (STV 1.0 0.9091)) +(: cnet_partof_95659bdd83 (PartOf estonia europe) (STV 1.0 0.9091)) +(: cnet_partof_7ec21e1371 (PartOf estuary river) (STV 1.0 0.9091)) +(: cnet_partof_43e82d5b4a (PartOf ethernet_cable ethernet) (STV 1.0 0.9091)) +(: cnet_partof_ce0543902b (PartOf ethiopia africa) (STV 1.0 0.9091)) +(: cnet_partof_4185bc38f7 (PartOf ethiopia somali_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_a8126e7003 (PartOf ethmoid cranium) (STV 1.0 0.9091)) +(: cnet_partof_1cb39c3f6e (PartOf ethmoidal_artery nose) (STV 1.0 0.9091)) +(: cnet_partof_cdb1a3d04d (PartOf etna sicily) (STV 1.0 0.9091)) +(: cnet_partof_43397c68d6 (PartOf eton_college berkshire) (STV 1.0 0.9091)) +(: cnet_partof_363fedf8cd (PartOf etruria italy) (STV 1.0 0.9091)) +(: cnet_partof_13d884553b (PartOf eugene oregon) (STV 1.0 0.9091)) +(: cnet_partof_53e39a1209 (PartOf euphrate iraq) (STV 1.0 0.9091)) +(: cnet_partof_17c50afb27 (PartOf euphrate syria) (STV 1.0 0.9091)) +(: cnet_partof_49313f4cff (PartOf euphrate turkey) (STV 1.0 0.9091)) +(: cnet_partof_26f3763f36 (PartOf eurasia eastern_hemisphere) (STV 1.0 0.9091)) +(: cnet_partof_fe92f0f7bb (PartOf eurasia northern_hemisphere) (STV 1.0 0.9091)) +(: cnet_partof_2117a7203e (PartOf eureka california) (STV 1.0 0.9091)) +(: cnet_partof_56e360bc7e (PartOf europe eurasia) (STV 1.0 0.9091)) +(: cnet_partof_182c8ab0d3 (PartOf europe occident) (STV 1.0 0.9091)) +(: cnet_partof_ef275f3f55 (PartOf european_country europe) (STV 1.0 0.9091)) +(: cnet_partof_bbf8a3c802 (PartOf european_russia europe) (STV 1.0 0.9091)) +(: cnet_partof_39c09af1fa (PartOf european_russia russia) (STV 1.0 0.9091)) +(: cnet_partof_7a7221215b (PartOf european_smelt sparling) (STV 1.0 0.9091)) +(: cnet_partof_41d672fdf3 (PartOf eustachian_tube middle_ear) (STV 1.0 0.9091)) +(: cnet_partof_c8ec0b42a2 (PartOf evansville indiana) (STV 1.0 0.9091)) +(: cnet_partof_ac1341ea74 (PartOf evening night) (STV 1.0 0.9091)) +(: cnet_partof_bca7f521aa (PartOf everest himalaya) (STV 1.0 0.9091)) +(: cnet_partof_dacb9124a6 (PartOf everest nepal) (STV 1.0 0.9091)) +(: cnet_partof_c384c51448 (PartOf everest tibet) (STV 1.0 0.9091)) +(: cnet_partof_d009adddd3 (PartOf everglade florida) (STV 1.0 0.9091)) +(: cnet_partof_bf18496ad4 (PartOf everglade_national_park florida) (STV 1.0 0.9091)) +(: cnet_partof_62d8ad2418 (PartOf evocation exorcism) (STV 1.0 0.9091)) +(: cnet_partof_5c09739ae2 (PartOf exabit zettabit) (STV 1.0 0.9091)) +(: cnet_partof_d3cdd5c8f2 (PartOf exabyte zb) (STV 1.0 0.9091)) +(: cnet_partof_2e9cdaeba2 (PartOf exaltation zodiac) (STV 1.0 0.9091)) +(: cnet_partof_337f11cf26 (PartOf exbibit zebibit) (STV 1.0 0.9091)) +(: cnet_partof_2eac6ec961 (PartOf exbibyte zettabyte) (STV 1.0 0.9091)) +(: cnet_partof_9f953cb265 (PartOf excretory_organ urogenital_system) (STV 1.0 0.9091)) +(: cnet_partof_7e08ad95b7 (PartOf execution data_processing) (STV 1.0 0.9091)) +(: cnet_partof_43988cf96e (PartOf executive_agency executive_branch) (STV 1.0 0.9091)) +(: cnet_partof_6a25f7f0fe (PartOf exhalation breathing) (STV 1.0 0.9091)) +(: cnet_partof_9c2cc13794 (PartOf exhaust automobile_engine) (STV 1.0 0.9091)) +(: cnet_partof_7c2e19cdc8 (PartOf exhaust_manifold exhaust) (STV 1.0 0.9091)) +(: cnet_partof_a43cd73a7e (PartOf exhaust_pipe exhaust) (STV 1.0 0.9091)) +(: cnet_partof_0f06057134 (PartOf exhaust_valve exhaust) (STV 1.0 0.9091)) +(: cnet_partof_05863ac55c (PartOf exodus old_testament) (STV 1.0 0.9091)) +(: cnet_partof_2c2c99f406 (PartOf exodus torah) (STV 1.0 0.9091)) +(: cnet_partof_eb870b47bc (PartOf exophthalmo hyperthyroidism) (STV 1.0 0.9091)) +(: cnet_partof_794a2f3a46 (PartOf exosphere atmosphere) (STV 1.0 0.9091)) +(: cnet_partof_5aabf0d21e (PartOf explanan explanation) (STV 1.0 0.9091)) +(: cnet_partof_5abde4eb84 (PartOf explicandum explanation) (STV 1.0 0.9091)) +(: cnet_partof_c68bd4edaf (PartOf explosive explosive_device) (STV 1.0 0.9091)) +(: cnet_partof_986b1a60ea (PartOf extension filename) (STV 1.0 0.9091)) +(: cnet_partof_b41ee04ebc (PartOf extension_course extension) (STV 1.0 0.9091)) +(: cnet_partof_cff9f6cc48 (PartOf exterior_door building) (STV 1.0 0.9091)) +(: cnet_partof_97e5ba3554 (PartOf external_ear auditory_apparatus) (STV 1.0 0.9091)) +(: cnet_partof_bd60828392 (PartOf extraterrestrial_object universe) (STV 1.0 0.9091)) +(: cnet_partof_5b2d2b45fb (PartOf extremely_high_frequency electromagnetic_spectrum) (STV 1.0 0.9091)) +(: cnet_partof_cb4bd781b2 (PartOf extremely_low_frequency electromagnetic_spectrum) (STV 1.0 0.9091)) +(: cnet_partof_9cccc42cce (PartOf extremity limb) (STV 1.0 0.9091)) +(: cnet_partof_d12debff2c (PartOf eye face) (STV 1.0 0.9454)) +(: cnet_partof_ad5c3fe303 (PartOf eye head) (STV 1.0 0.9636)) +(: cnet_partof_3e8389b34f (PartOf eye needle) (STV 1.0 0.9091)) +(: cnet_partof_ca18440b70 (PartOf eye visual_system) (STV 1.0 0.9091)) +(: cnet_partof_c164969adf (PartOf eye_socket skull) (STV 1.0 0.9091)) +(: cnet_partof_8bf5ebe3d2 (PartOf eyeball eye) (STV 1.0 0.9091)) +(: cnet_partof_62a0719026 (PartOf eyebrow face) (STV 1.0 0.9091)) +(: cnet_partof_8484bb0636 (PartOf eyelash eyelid) (STV 1.0 0.9091)) +(: cnet_partof_1fa5b962ad (PartOf eyelet boot) (STV 1.0 0.9091)) +(: cnet_partof_5a8a22bbae (PartOf eyelet curtain) (STV 1.0 0.9091)) +(: cnet_partof_b23d36d948 (PartOf eyelet garment) (STV 1.0 0.9091)) +(: cnet_partof_b3fa9906f7 (PartOf eyelid eye) (STV 1.0 0.9091)) +(: cnet_partof_d3fc34d0d2 (PartOf eyepiece binocular) (STV 1.0 0.9091)) +(: cnet_partof_2c0c59dfc2 (PartOf eyepiece light_microscope) (STV 1.0 0.9091)) +(: cnet_partof_287e9aec97 (PartOf eyepiece optical_telescope) (STV 1.0 0.9091)) +(: cnet_partof_49048d1403 (PartOf eyepiece sight) (STV 1.0 0.9091)) +(: cnet_partof_050b29ff6c (PartOf eyre australia) (STV 1.0 0.9091)) +(: cnet_partof_c95e3eed8a (PartOf eyre_peninsula australia) (STV 1.0 0.9091)) +(: cnet_partof_0070b4d9dd (PartOf ezekiel old_testament) (STV 1.0 0.9091)) +(: cnet_partof_f69ec2411e (PartOf ezekiel prophet) (STV 1.0 0.9091)) +(: cnet_partof_a6d64f1ad7 (PartOf ezra hagiographa) (STV 1.0 0.9091)) +(: cnet_partof_97278ddbd3 (PartOf ezra old_testament) (STV 1.0 0.9091)) +(: cnet_partof_93b9646736 (PartOf face clock) (STV 1.0 0.9091)) +(: cnet_partof_7382d35742 (PartOf face golf_club_head) (STV 1.0 0.9091)) +(: cnet_partof_f3d46491d8 (PartOf face head) (STV 1.0 0.9091)) +(: cnet_partof_1e05acaeea (PartOf face playing_card) (STV 1.0 0.9091)) +(: cnet_partof_576cf62091 (PartOf face racket) (STV 1.0 0.9091)) +(: cnet_partof_c9e4abedff (PartOf face watch) (STV 1.0 0.9091)) +(: cnet_partof_d7208f2c71 (PartOf face animal) (STV 1.0 0.9091)) +(: cnet_partof_1c481fc2f1 (PartOf face homo) (STV 1.0 0.9091)) +(: cnet_partof_7361063c49 (PartOf face_guard football_helmet) (STV 1.0 0.9091)) +(: cnet_partof_9e29984b6b (PartOf face_off ice_hockey) (STV 1.0 0.9091)) +(: cnet_partof_40601c7ffe (PartOf facial face) (STV 1.0 0.9091)) +(: cnet_partof_5ba2a7fb1a (PartOf facial_muscle face) (STV 1.0 0.9091)) +(: cnet_partof_1e91e2d71a (PartOf facial_vein face) (STV 1.0 0.9091)) +(: cnet_partof_381ba771a2 (PartOf facing collar) (STV 1.0 0.9091)) +(: cnet_partof_d73e25b80c (PartOf facing cuff) (STV 1.0 0.9091)) +(: cnet_partof_6c10c727ba (PartOf faggot_stitch faggoting) (STV 1.0 0.9091)) +(: cnet_partof_f2b71e9e2e (PartOf fairway golf_course) (STV 1.0 0.9091)) +(: cnet_partof_31ccdea4f3 (PartOf faisalabad pakistan) (STV 1.0 0.9091)) +(: cnet_partof_1b20e72f26 (PartOf falkland_island atlantic) (STV 1.0 0.9091)) +(: cnet_partof_5580906643 (PartOf fall wrestling_match) (STV 1.0 0.9091)) +(: cnet_partof_06c13a4a62 (PartOf fall_board piano) (STV 1.0 0.9091)) +(: cnet_partof_f01d5a3e8f (PartOf fallopian_tube female_reproductive_system) (STV 1.0 0.9091)) +(: cnet_partof_f1bde86035 (PartOf fallopian_tube uterus) (STV 1.0 0.9091)) +(: cnet_partof_e0d693d7c4 (PartOf false_face fancy_dress) (STV 1.0 0.9091)) +(: cnet_partof_17db143f8f (PartOf family_history medical_history) (STV 1.0 0.9091)) +(: cnet_partof_b1a2c43e4f (PartOf family_room dwelling) (STV 1.0 0.9091)) +(: cnet_partof_da77b223f9 (PartOf fan cooling_system) (STV 1.0 0.9091)) +(: cnet_partof_e4e2839b23 (PartOf fan_belt cooling_system) (STV 1.0 0.9091)) +(: cnet_partof_223f38b15a (PartOf fan_blade electric_fan) (STV 1.0 0.9091)) +(: cnet_partof_401357238e (PartOf fan_letter fan_mail) (STV 1.0 0.9091)) +(: cnet_partof_93bfca2422 (PartOf fan_tracery fan_vaulting) (STV 1.0 0.9091)) +(: cnet_partof_4893397909 (PartOf fantail afterdeck) (STV 1.0 0.9091)) +(: cnet_partof_477f90623c (PartOf far_east east) (STV 1.0 0.9091)) +(: cnet_partof_7b32f38e84 (PartOf farad abfarad) (STV 1.0 0.9091)) +(: cnet_partof_cb19c552b7 (PartOf fargo north_dakota) (STV 1.0 0.9091)) +(: cnet_partof_25d85e1389 (PartOf farmhouse farm) (STV 1.0 0.9091)) +(: cnet_partof_f5c095fa63 (PartOf farmington connecticut) (STV 1.0 0.9091)) +(: cnet_partof_820af82572 (PartOf farmington new_mexico) (STV 1.0 0.9091)) +(: cnet_partof_f36bf32c4f (PartOf farmyard farm) (STV 1.0 0.9091)) +(: cnet_partof_3beb40bee0 (PartOf faroe_island atlantic) (STV 1.0 0.9091)) +(: cnet_partof_8f24b7e844 (PartOf fate supernatural) (STV 1.0 0.9091)) +(: cnet_partof_07754e40ce (PartOf father_s_day june) (STV 1.0 0.9091)) +(: cnet_partof_d3adb4806a (PartOf faubourg new_orlean) (STV 1.0 0.9091)) +(: cnet_partof_4376f12860 (PartOf fauld body_armor) (STV 1.0 0.9091)) +(: cnet_partof_4f088f9111 (PartOf fault_line fault) (STV 1.0 0.9091)) +(: cnet_partof_6e6d5141b5 (PartOf fayetteville arkansa) (STV 1.0 0.9091)) +(: cnet_partof_710e257727 (PartOf fayetteville north_carolina) (STV 1.0 0.9091)) +(: cnet_partof_e574a665d0 (PartOf fayetteville west_virginia) (STV 1.0 0.9091)) +(: cnet_partof_e457cf24c0 (PartOf feast_day religious_festival) (STV 1.0 0.9091)) +(: cnet_partof_2563a1e6da (PartOf feather rowing) (STV 1.0 0.9091)) +(: cnet_partof_8a30a425d1 (PartOf feather bird) (STV 1.0 0.9091)) +(: cnet_partof_e1a92e4c5c (PartOf feature face) (STV 1.0 0.9091)) +(: cnet_partof_7650a45844 (PartOf feature magazine) (STV 1.0 0.9091)) +(: cnet_partof_93bb000b0e (PartOf feature newspaper) (STV 1.0 0.9091)) +(: cnet_partof_9fecc9a315 (PartOf february gregorian_calendar) (STV 1.0 0.9091)) +(: cnet_partof_61a1f7a478 (PartOf federal_aviation_agency department_of_transportation) (STV 1.0 0.9091)) +(: cnet_partof_4268391b0f (PartOf federal_bureau_of_investigation department_of_justice) (STV 1.0 0.9091)) +(: cnet_partof_9d3d2c204d (PartOf federal_bureau_of_prison department_of_justice) (STV 1.0 0.9091)) +(: cnet_partof_32fc8b624b (PartOf federal_court federal_judiciary) (STV 1.0 0.9091)) +(: cnet_partof_9865942c8a (PartOf federal_emergency_management_agency homeland_security) (STV 1.0 0.9091)) +(: cnet_partof_548200f461 (PartOf federal_housing_administration department_of_housing_and_urban_development) (STV 1.0 0.9091)) +(: cnet_partof_c4bee94572 (PartOf federal_law_enforcement_training_center homeland_security) (STV 1.0 0.9091)) +(: cnet_partof_af87deb80d (PartOf federal_protective_service general_service_administration) (STV 1.0 0.9091)) +(: cnet_partof_f7fc37eeb8 (PartOf feijoa feijoa) (STV 1.0 0.9091)) +(: cnet_partof_94bbc182e2 (PartOf felloe wheel) (STV 1.0 0.9091)) +(: cnet_partof_f3924d79df (PartOf fellow couple) (STV 1.0 0.9091)) +(: cnet_partof_2054734821 (PartOf female_body female) (STV 1.0 0.9091)) +(: cnet_partof_1de640a904 (PartOf female_chest female_body) (STV 1.0 0.9091)) +(: cnet_partof_ae786229c8 (PartOf female_genitalia female_body) (STV 1.0 0.9091)) +(: cnet_partof_86619eb8bd (PartOf female_genitalia female_reproductive_system) (STV 1.0 0.9091)) +(: cnet_partof_07f66eb793 (PartOf female_internal_reproductive_organ female_body) (STV 1.0 0.9091)) +(: cnet_partof_eb5b2852ec (PartOf female_reproductive_system female_body) (STV 1.0 0.9091)) +(: cnet_partof_c438bac0c9 (PartOf femoral_artery thigh) (STV 1.0 0.9091)) +(: cnet_partof_1d1b781316 (PartOf femoral_nerve thigh) (STV 1.0 0.9091)) +(: cnet_partof_c89e0e5c3e (PartOf femoral_vein thigh) (STV 1.0 0.9091)) +(: cnet_partof_c9044ab1ee (PartOf femtometer picometer) (STV 1.0 0.9091)) +(: cnet_partof_43676ea7e4 (PartOf femtosecond picosecond) (STV 1.0 0.9091)) +(: cnet_partof_7148576d06 (PartOf femtovolt volt) (STV 1.0 0.9091)) +(: cnet_partof_45c701107c (PartOf femur thigh) (STV 1.0 0.9091)) +(: cnet_partof_0f9ce0f333 (PartOf fen jiao) (STV 1.0 0.9091)) +(: cnet_partof_5385980cd7 (PartOf fence fence_line) (STV 1.0 0.9091)) +(: cnet_partof_d2617284f8 (PartOf fender car) (STV 1.0 0.9091)) +(: cnet_partof_5ec0e50ceb (PartOf fender locomotive) (STV 1.0 0.9091)) +(: cnet_partof_59f13c3c67 (PartOf fenestra ear) (STV 1.0 0.9091)) +(: cnet_partof_2f90a62f40 (PartOf fennel common_fennel) (STV 1.0 0.9091)) +(: cnet_partof_dfdfc495fe (PartOf fennel florence_fennel) (STV 1.0 0.9091)) +(: cnet_partof_16e3801635 (PartOf fennel_seed common_fennel) (STV 1.0 0.9091)) +(: cnet_partof_687162fd7f (PartOf fenugreek fenugreek) (STV 1.0 0.9091)) +(: cnet_partof_0d481fb8f0 (PartOf fern_seed fern) (STV 1.0 0.9091)) +(: cnet_partof_38c627cf6f (PartOf ferrara italy) (STV 1.0 0.9091)) +(: cnet_partof_da64bcf6e9 (PartOf fertile_crescent middle_east) (STV 1.0 0.9091)) +(: cnet_partof_7a89d3cd2d (PartOf fertile_period menstrual_cycle) (STV 1.0 0.9091)) +(: cnet_partof_1ae5a145bc (PartOf fetlock horse_s_foot) (STV 1.0 0.9091)) +(: cnet_partof_7476e23991 (PartOf fez morocco) (STV 1.0 0.9091)) +(: cnet_partof_8c51944568 (PartOf fiber_bundle nervous_system) (STV 1.0 0.9091)) +(: cnet_partof_3d4ea6ed7d (PartOf fiber_optic_cable fiber_optic_transmission_system) (STV 1.0 0.9091)) +(: cnet_partof_1cc4b83ab4 (PartOf fibrosis pneumoconiosis) (STV 1.0 0.9091)) +(: cnet_partof_bdab272526 (PartOf fibrous_astrocyte white_matter) (STV 1.0 0.9091)) +(: cnet_partof_34c777aaa6 (PartOf fibula leg) (STV 1.0 0.9091)) +(: cnet_partof_da7696d669 (PartOf fiddlestick violin) (STV 1.0 0.9091)) +(: cnet_partof_8d4ea26019 (PartOf field theater_of_war) (STV 1.0 0.9091)) +(: cnet_partof_d34be7392e (PartOf field_event track_meet) (STV 1.0 0.9091)) +(: cnet_partof_a62829f5be (PartOf field_house stadium) (STV 1.0 0.9091)) +(: cnet_partof_3d89af5be5 (PartOf field_magnet dynamo) (STV 1.0 0.9091)) +(: cnet_partof_4f7da1ef99 (PartOf field_magnet electric_motor) (STV 1.0 0.9091)) +(: cnet_partof_9d59d14af8 (PartOf field_pea field_pea) (STV 1.0 0.9091)) +(: cnet_partof_dd3858f714 (PartOf fifth_amendment bill_of_right) (STV 1.0 0.9091)) +(: cnet_partof_2cdca860d0 (PartOf fifth_avenue manhattan) (STV 1.0 0.9091)) +(: cnet_partof_cabf72fce7 (PartOf fifty adulthood) (STV 1.0 0.9091)) +(: cnet_partof_e08156eb2a (PartOf fig fig) (STV 1.0 0.9091)) +(: cnet_partof_a4e1fc4c55 (PartOf fiji fiji_island) (STV 1.0 0.9091)) +(: cnet_partof_516d43ba48 (PartOf fiji_island melanesia) (STV 1.0 0.9091)) +(: cnet_partof_15ef0e27d0 (PartOf filament light_bulb) (STV 1.0 0.9091)) +(: cnet_partof_50b1172008 (PartOf filler cigar) (STV 1.0 0.9091)) +(: cnet_partof_4dc312adba (PartOf filler forint) (STV 1.0 0.9091)) +(: cnet_partof_ac9c7b8d4e (PartOf fillet beef_tenderloin) (STV 1.0 0.9091)) +(: cnet_partof_cb2f844bd9 (PartOf film_clip telecast) (STV 1.0 0.9091)) +(: cnet_partof_c2dcc6d9b4 (PartOf film_industry entertainment_industry) (STV 1.0 0.9091)) +(: cnet_partof_25803677b4 (PartOf fil bahrain_dinar) (STV 1.0 0.9091)) +(: cnet_partof_21fdde5d4f (PartOf fil iraqi_dinar) (STV 1.0 0.9091)) +(: cnet_partof_35b1e6b583 (PartOf fil jordanian_dinar) (STV 1.0 0.9091)) +(: cnet_partof_a4d2480c7a (PartOf fil kuwaiti_dirham) (STV 1.0 0.9091)) +(: cnet_partof_e0c2092b3a (PartOf filter_tip filter_tipped_cigarette) (STV 1.0 0.9091)) +(: cnet_partof_bf7ae3f359 (PartOf fin fish) (STV 1.0 0.9091)) +(: cnet_partof_705170b581 (PartOf fin ship) (STV 1.0 0.9091)) +(: cnet_partof_df5eb2318d (PartOf fin_keel keel) (STV 1.0 0.9091)) +(: cnet_partof_8c0b055c79 (PartOf final elimination_tournament) (STV 1.0 0.9091)) +(: cnet_partof_499b56b953 (PartOf final_period playing_period) (STV 1.0 0.9091)) +(: cnet_partof_0e62a422a9 (PartOf finale musical_composition) (STV 1.0 0.9091)) +(: cnet_partof_2b5213f7d3 (PartOf finale performance) (STV 1.0 0.9091)) +(: cnet_partof_1988a6dd98 (PartOf financial_center city) (STV 1.0 0.9091)) +(: cnet_partof_5c020da00b (PartOf financial_crime_enforcement_network department_of_treasury) (STV 1.0 0.9091)) +(: cnet_partof_c5e483e3eb (PartOf financial_management_service department_of_treasury) (STV 1.0 0.9091)) +(: cnet_partof_7317a703ad (PartOf finder camera) (STV 1.0 0.9091)) +(: cnet_partof_40292657ce (PartOf finder gunsight) (STV 1.0 0.9091)) +(: cnet_partof_a20244d423 (PartOf finder telescope) (STV 1.0 0.9091)) +(: cnet_partof_01ffb3e4d0 (PartOf fine_print contract) (STV 1.0 0.9091)) +(: cnet_partof_5bfd8ad9dd (PartOf fine_structure atomic_spectrum) (STV 1.0 0.9091)) +(: cnet_partof_6af23f70fd (PartOf fingal_s_cave staffa) (STV 1.0 0.9091)) +(: cnet_partof_379219128e (PartOf finger glove) (STV 1.0 0.9091)) +(: cnet_partof_4ea4138b9b (PartOf finger hand) (STV 1.0 0.9091)) +(: cnet_partof_63fa45a43e (PartOf finger_hole bowling_ball) (STV 1.0 0.9091)) +(: cnet_partof_206eff1a53 (PartOf finger_hole dial) (STV 1.0 0.9091)) +(: cnet_partof_f9f590889f (PartOf finger_hole woodwind) (STV 1.0 0.9091)) +(: cnet_partof_77f406cda9 (PartOf fingerboard banjo) (STV 1.0 0.9091)) +(: cnet_partof_289bfc29b6 (PartOf fingerboard bowed_stringed_instrument) (STV 1.0 0.9091)) +(: cnet_partof_7695f6b48f (PartOf fingerboard guitar) (STV 1.0 0.9091)) +(: cnet_partof_d42d886ae5 (PartOf fingerboard lute) (STV 1.0 0.9091)) +(: cnet_partof_3e4a321ffe (PartOf fingerboard mandolin) (STV 1.0 0.9091)) +(: cnet_partof_190d8dc836 (PartOf fingering musical_performance) (STV 1.0 0.9091)) +(: cnet_partof_8406a80606 (PartOf fingernail hand) (STV 1.0 0.9091)) +(: cnet_partof_5e59275529 (PartOf fingernail finger) (STV 1.0 0.9091)) +(: cnet_partof_f055a473aa (PartOf fingerprint finger) (STV 1.0 0.9091)) +(: cnet_partof_5cab0a1003 (PartOf fingertip finger) (STV 1.0 0.9091)) +(: cnet_partof_888d6c82e6 (PartOf finland europe) (STV 1.0 0.9091)) +(: cnet_partof_4b74ee2a8e (PartOf fir_cone fir) (STV 1.0 0.9091)) +(: cnet_partof_da5ca35d40 (PartOf fire_control shooting) (STV 1.0 0.9091)) +(: cnet_partof_b959660c4d (PartOf fire_iron fireplace) (STV 1.0 0.9091)) +(: cnet_partof_cd262aef40 (PartOf fire_station infrastructure) (STV 1.0 0.9091)) +(: cnet_partof_926a302ae4 (PartOf fireball nuclear_explosion) (STV 1.0 0.9091)) +(: cnet_partof_c339b99af2 (PartOf firebox steam_locomotive) (STV 1.0 0.9091)) +(: cnet_partof_43607e247d (PartOf firenze tuscany) (STV 1.0 0.9091)) +(: cnet_partof_32a1f4c5df (PartOf fireplace chimney) (STV 1.0 0.9091)) +(: cnet_partof_cea1e53db5 (PartOf firing_chamber gun) (STV 1.0 0.9091)) +(: cnet_partof_62df6fceba (PartOf firing_pin firearm) (STV 1.0 0.9091)) +(: cnet_partof_0438453ef2 (PartOf firkin kilderkin) (STV 1.0 0.9091)) +(: cnet_partof_a66121ebe4 (PartOf first_amendment bill_of_right) (STV 1.0 0.9091)) +(: cnet_partof_51baaeee1a (PartOf first_epistle_of_john new_testament) (STV 1.0 0.9091)) +(: cnet_partof_bcd1fd91d4 (PartOf first_epistle_of_paul_apostle_to_corinthian new_testament) (STV 1.0 0.9091)) +(: cnet_partof_8722b17f04 (PartOf first_epistle_of_paul_apostle_to_thessalonian new_testament) (STV 1.0 0.9091)) +(: cnet_partof_660abf38f4 (PartOf first_epistle_of_paul_apostle_to_timothy new_testament) (STV 1.0 0.9091)) +(: cnet_partof_bb77500f4e (PartOf first_epistle_of_peter new_testament) (STV 1.0 0.9091)) +(: cnet_partof_c7f290f931 (PartOf first_gear car) (STV 1.0 0.9091)) +(: cnet_partof_2e62e1b9a6 (PartOf first_period playing_period) (STV 1.0 0.9091)) +(: cnet_partof_6c0db29623 (PartOf first_visual_area occipital_lobe) (STV 1.0 0.9091)) +(: cnet_partof_5405cf140f (PartOf firth_of_clyde scotland) (STV 1.0 0.9091)) +(: cnet_partof_95eca4ceae (PartOf firth_of_forth scotland) (STV 1.0 0.9091)) +(: cnet_partof_75e7efd85e (PartOf fish_scale fish) (STV 1.0 0.9091)) +(: cnet_partof_bbb1d2945d (PartOf fishbone fish) (STV 1.0 0.9091)) +(: cnet_partof_03e76e6780 (PartOf fissure_of_rolando cerebrum) (STV 1.0 0.9091)) +(: cnet_partof_2a0e69d65a (PartOf fissure_of_sylvius cerebrum) (STV 1.0 0.9091)) +(: cnet_partof_c2c6d68602 (PartOf fixation plastination) (STV 1.0 0.9091)) +(: cnet_partof_af7a74df2c (PartOf flag deer) (STV 1.0 0.9091)) +(: cnet_partof_dacad64994 (PartOf flag dog) (STV 1.0 0.9091)) +(: cnet_partof_b721fc4b59 (PartOf flag_day june) (STV 1.0 0.9091)) +(: cnet_partof_56497ec34b (PartOf flagellum eubacteria) (STV 1.0 0.9091)) +(: cnet_partof_6aedc5bf9c (PartOf flagellum sperm) (STV 1.0 0.9091)) +(: cnet_partof_e66d2046d1 (PartOf flagstaff arizona) (STV 1.0 0.9091)) +(: cnet_partof_bb7344b478 (PartOf flame_cell flatworm) (STV 1.0 0.9091)) +(: cnet_partof_9b30f20166 (PartOf flaminian_way italy) (STV 1.0 0.9091)) +(: cnet_partof_9900466c88 (PartOf flander europe) (STV 1.0 0.9091)) +(: cnet_partof_5d7e30c124 (PartOf flander holy_roman_empire) (STV 1.0 0.9091)) +(: cnet_partof_2b045599ff (PartOf flank quadruped) (STV 1.0 0.9091)) +(: cnet_partof_401836e252 (PartOf flank_steak flank) (STV 1.0 0.9091)) +(: cnet_partof_f1621cd5af (PartOf flap wing) (STV 1.0 0.9091)) +(: cnet_partof_412fb97e26 (PartOf flash flash_camera) (STV 1.0 0.9091)) +(: cnet_partof_9c893446c7 (PartOf flashlight_battery flashlight) (STV 1.0 0.9091)) +(: cnet_partof_df03bdf588 (PartOf flat mise_en_scene) (STV 1.0 0.9091)) +(: cnet_partof_7b478d150a (PartOf flat_bone sirloin) (STV 1.0 0.9091)) +(: cnet_partof_3af82b4b7b (PartOf flat_panel_display portable_computer) (STV 1.0 0.9091)) +(: cnet_partof_d222874de2 (PartOf flavor_strip vending_machine) (STV 1.0 0.9091)) +(: cnet_partof_faa3f3593a (PartOf fleet airline) (STV 1.0 0.9091)) +(: cnet_partof_ed4a16ad7c (PartOf fleet bus_line) (STV 1.0 0.9091)) +(: cnet_partof_1d74776d63 (PartOf fleet_street london) (STV 1.0 0.9091)) +(: cnet_partof_5de3d397f7 (PartOf flight_deck aircraft_carrier) (STV 1.0 0.9091)) +(: cnet_partof_ea6e4c83d1 (PartOf flight_feather wing) (STV 1.0 0.9091)) +(: cnet_partof_d22cb615af (PartOf flight_line airfield) (STV 1.0 0.9091)) +(: cnet_partof_29ddcd6e50 (PartOf flint michigan) (STV 1.0 0.9091)) +(: cnet_partof_b06584221f (PartOf flint georgia) (STV 1.0 0.9091)) +(: cnet_partof_4ab2234e1e (PartOf flintlock flintlock) (STV 1.0 0.9091)) +(: cnet_partof_3114b7aa72 (PartOf flipper aquatic_mammal) (STV 1.0 0.9091)) +(: cnet_partof_bc09734d31 (PartOf flipper aquatic_vertebrate) (STV 1.0 0.9091)) +(: cnet_partof_b98d474819 (PartOf flitch side_of_pork) (STV 1.0 0.9091)) +(: cnet_partof_29caa08012 (PartOf flodden northumberland) (STV 1.0 0.9091)) +(: cnet_partof_c9d3ca0daf (PartOf flood photographic_equipment) (STV 1.0 0.9091)) +(: cnet_partof_f0e13f3326 (PartOf floor room) (STV 1.0 0.9091)) +(: cnet_partof_30e1eb6bba (PartOf floor building) (STV 1.0 0.9091)) +(: cnet_partof_0bcf100c3f (PartOf floor exchange) (STV 1.0 0.9091)) +(: cnet_partof_f9497c74e6 (PartOf floor hallway) (STV 1.0 0.9091)) +(: cnet_partof_f662589f74 (PartOf floor cave) (STV 1.0 0.9091)) +(: cnet_partof_109a6eaa17 (PartOf floor lake) (STV 1.0 0.9091)) +(: cnet_partof_d2851e0b65 (PartOf floorboard car) (STV 1.0 0.9091)) +(: cnet_partof_d71233d2ce (PartOf floral_leaf flower) (STV 1.0 0.9091)) +(: cnet_partof_27ead51d64 (PartOf floreal revolutionary_calendar) (STV 1.0 0.9091)) +(: cnet_partof_bf915cf358 (PartOf florence south_carolina) (STV 1.0 0.9091)) +(: cnet_partof_09fe1ec883 (PartOf florida united_state) (STV 1.0 0.9339)) +(: cnet_partof_60b6ddd3e1 (PartOf florida gulf_state) (STV 1.0 0.9091)) +(: cnet_partof_69704aef27 (PartOf flower angiosperm) (STV 1.0 0.9091)) +(: cnet_partof_2771326633 (PartOf fluid_drive transmission) (STV 1.0 0.9091)) +(: cnet_partof_a1b9a99b4e (PartOf fluidounce gill) (STV 1.0 0.9091)) +(: cnet_partof_36ba8031d1 (PartOf fluidram fluidounce) (STV 1.0 0.9091)) +(: cnet_partof_238e9541af (PartOf fluke cetacean) (STV 1.0 0.9091)) +(: cnet_partof_b26facf6b0 (PartOf fluke anchor) (STV 1.0 0.9091)) +(: cnet_partof_2ef1db0d36 (PartOf fluke harpoon) (STV 1.0 0.9091)) +(: cnet_partof_7bc5624c16 (PartOf flutter_kick backstroke) (STV 1.0 0.9091)) +(: cnet_partof_b24be1d156 (PartOf flutter_kick crawl) (STV 1.0 0.9091)) +(: cnet_partof_b77d82df1c (PartOf fly garment) (STV 1.0 0.9091)) +(: cnet_partof_52064f794c (PartOf focal_seizure cortical_epilepsy) (STV 1.0 0.9091)) +(: cnet_partof_58a42e4248 (PartOf focus focal_infection) (STV 1.0 0.9091)) +(: cnet_partof_322f90cd39 (PartOf foible sword) (STV 1.0 0.9091)) +(: cnet_partof_989718627e (PartOf folktale folklore) (STV 1.0 0.9091)) +(: cnet_partof_aa2d9bb183 (PartOf follow_through stroke) (STV 1.0 0.9091)) +(: cnet_partof_a76bd28c4d (PartOf fontanelle child_s_body) (STV 1.0 0.9091)) +(: cnet_partof_2b54e51815 (PartOf fontanelle cranium) (STV 1.0 0.9091)) +(: cnet_partof_6eb15d2a38 (PartOf fontenoy war_of_austrian_succession) (STV 1.0 0.9091)) +(: cnet_partof_10486098c3 (PartOf food food) (STV 1.0 0.9091)) +(: cnet_partof_d529df4893 (PartOf food_and_drug_administration department_of_health_and_human_service) (STV 1.0 0.9091)) +(: cnet_partof_40b5c58868 (PartOf food_chain food_web) (STV 1.0 0.9091)) +(: cnet_partof_77ba85a129 (PartOf food_court plaza) (STV 1.0 0.9091)) +(: cnet_partof_892d2f2283 (PartOf foot body) (STV 1.0 0.9454)) +(: cnet_partof_b32ac00b63 (PartOf foot invertebrate) (STV 1.0 0.9091)) +(: cnet_partof_b290e12313 (PartOf foot leg) (STV 1.0 0.9091)) +(: cnet_partof_756c19e1d8 (PartOf foot homo) (STV 1.0 0.9091)) +(: cnet_partof_f9a6840c1a (PartOf foot yard) (STV 1.0 0.9091)) +(: cnet_partof_5c40c898fe (PartOf foot_pound foot_ton) (STV 1.0 0.9091)) +(: cnet_partof_c6c4424e3b (PartOf football_field football_stadium) (STV 1.0 0.9091)) +(: cnet_partof_1370dc616a (PartOf footboard bedstead) (STV 1.0 0.9091)) +(: cnet_partof_25a9400f7b (PartOf footfault tennis) (STV 1.0 0.9091)) +(: cnet_partof_7eaade63bb (PartOf footlight proscenium) (STV 1.0 0.9091)) +(: cnet_partof_3a2523e53d (PartOf footplate locomotive) (STV 1.0 0.9091)) +(: cnet_partof_fcda5d2c24 (PartOf footwall inclined_fault) (STV 1.0 0.9091)) +(: cnet_partof_2402104d59 (PartOf foramen_magnum cranium) (STV 1.0 0.9091)) +(: cnet_partof_8a22aa82dc (PartOf forbidden_city beijing) (STV 1.0 0.9091)) +(: cnet_partof_25f21b2c86 (PartOf ford stream) (STV 1.0 0.9091)) +(: cnet_partof_1394530d58 (PartOf fore_edge book) (STV 1.0 0.9091)) +(: cnet_partof_6aad85544e (PartOf forearm arm) (STV 1.0 0.9091)) +(: cnet_partof_be9b5b2efc (PartOf forebrain brain) (STV 1.0 0.9091)) +(: cnet_partof_4ebfe9fbfc (PartOf forecastle ship) (STV 1.0 0.9091)) +(: cnet_partof_a21165c702 (PartOf foredeck weather_deck) (STV 1.0 0.9091)) +(: cnet_partof_f8b0b09d03 (PartOf forefoot quadruped) (STV 1.0 0.9091)) +(: cnet_partof_8ea746c117 (PartOf foreground screen) (STV 1.0 0.9091)) +(: cnet_partof_71406274cc (PartOf foreign_intelligence_surveillance_court federal_judiciary) (STV 1.0 0.9091)) +(: cnet_partof_97b9058200 (PartOf foreign_service department_of_state) (STV 1.0 0.9091)) +(: cnet_partof_d9bfeee7b4 (PartOf foreleg quadruped) (STV 1.0 0.9091)) +(: cnet_partof_ecbb335b8b (PartOf forelock encolure) (STV 1.0 0.9091)) +(: cnet_partof_5449ffe756 (PartOf forepaw forelimb) (STV 1.0 0.9091)) +(: cnet_partof_d507e952e7 (PartOf foreshore seashore) (STV 1.0 0.9091)) +(: cnet_partof_81c576c686 (PartOf foreskin penis) (STV 1.0 0.9091)) +(: cnet_partof_fcce4122b6 (PartOf foreword text) (STV 1.0 0.9091)) +(: cnet_partof_e17b4b4390 (PartOf form percept) (STV 1.0 0.9091)) +(: cnet_partof_3f74c71a2f (PartOf format publication) (STV 1.0 0.9091)) +(: cnet_partof_57a0ad2af8 (PartOf fornix limbic_system) (STV 1.0 0.9091)) +(: cnet_partof_d3f8fb3704 (PartOf fort_lauderdale florida) (STV 1.0 0.9091)) +(: cnet_partof_2d2c8e7689 (PartOf fort_meade maryland) (STV 1.0 0.9091)) +(: cnet_partof_b016654c11 (PartOf fort_myer florida) (STV 1.0 0.9091)) +(: cnet_partof_dc64bbf168 (PartOf fort_smith arkansa) (STV 1.0 0.9091)) +(: cnet_partof_f4c04e29db (PartOf fort_ticonderoga american_revolution) (STV 1.0 0.9091)) +(: cnet_partof_e84dee984f (PartOf fort_wayne indiana) (STV 1.0 0.9091)) +(: cnet_partof_5ceb3358ed (PartOf fort_worth texa) (STV 1.0 0.9091)) +(: cnet_partof_223229a81b (PartOf forte sword) (STV 1.0 0.9091)) +(: cnet_partof_30b9f1237f (PartOf forth_river scotland) (STV 1.0 0.9091)) +(: cnet_partof_597b4404e7 (PartOf forty adulthood) (STV 1.0 0.9091)) +(: cnet_partof_ecbdb615f3 (PartOf foul_line ball_field) (STV 1.0 0.9091)) +(: cnet_partof_7ea7398cc7 (PartOf foul_line bowling_alley) (STV 1.0 0.9091)) +(: cnet_partof_33e17e5f6e (PartOf foul_line key) (STV 1.0 0.9091)) +(: cnet_partof_a87f8ca688 (PartOf foundation structure) (STV 1.0 0.9091)) +(: cnet_partof_e9beb1621c (PartOf foundation_stone building) (STV 1.0 0.9091)) +(: cnet_partof_fe0d6ad10a (PartOf fourteenth_amendment united_state_constitution) (STV 1.0 0.9091)) +(: cnet_partof_d679ef8370 (PartOf fovea retina) (STV 1.0 0.9091)) +(: cnet_partof_5bcc903973 (PartOf fox_grape fox_grape) (STV 1.0 0.9091)) +(: cnet_partof_273bc291b6 (PartOf fox_river wisconsin) (STV 1.0 0.9091)) +(: cnet_partof_742caef3ee (PartOf foyer house) (STV 1.0 0.9091)) +(: cnet_partof_ee5e7b20b4 (PartOf fragmentation_bomb cluster_bomb) (STV 1.0 0.9091)) +(: cnet_partof_12408b0cea (PartOf frame picture) (STV 1.0 0.9091)) +(: cnet_partof_0a45826eec (PartOf frame bowling) (STV 1.0 0.9091)) +(: cnet_partof_9f6866ad96 (PartOf frame comic_strip) (STV 1.0 0.9091)) +(: cnet_partof_67833bb36c (PartOf france europe) (STV 1.0 0.9454)) +(: cnet_partof_75c4acdf53 (PartOf franche_comte france) (STV 1.0 0.9091)) +(: cnet_partof_c4e15c4ab5 (PartOf frank hotdog) (STV 1.0 0.9091)) +(: cnet_partof_851d65f3d2 (PartOf frankfort kentucky) (STV 1.0 0.9091)) +(: cnet_partof_d193d4e192 (PartOf frankfurt germany) (STV 1.0 0.9091)) +(: cnet_partof_372afec817 (PartOf frankfurt_on_main germany) (STV 1.0 0.9091)) +(: cnet_partof_8400dc33a0 (PartOf frankfurter_bun hotdog) (STV 1.0 0.9091)) +(: cnet_partof_49638c3043 (PartOf freckle skin) (STV 1.0 0.9091)) +(: cnet_partof_da49762776 (PartOf frederick maryland) (STV 1.0 0.9091)) +(: cnet_partof_1c815cef38 (PartOf fredericksburg american_civil_war) (STV 1.0 0.9091)) +(: cnet_partof_b64a6c0034 (PartOf fredericksburg virginia) (STV 1.0 0.9091)) +(: cnet_partof_45c3e4dceb (PartOf fredericton new_brunswick) (STV 1.0 0.9091)) +(: cnet_partof_3eb7a0de94 (PartOf free_nerve_ending skin) (STV 1.0 0.9091)) +(: cnet_partof_0323738a9a (PartOf free_reed free_reed_instrument) (STV 1.0 0.9091)) +(: cnet_partof_373f5a7c6a (PartOf free_state south_africa) (STV 1.0 0.9091)) +(: cnet_partof_d90d6f6587 (PartOf free_state union) (STV 1.0 0.9091)) +(: cnet_partof_f42ab67c13 (PartOf free_throw_lane basketball_court) (STV 1.0 0.9091)) +(: cnet_partof_bff60a662c (PartOf freeboard_deck cargo_ship) (STV 1.0 0.9091)) +(: cnet_partof_9bc3676f63 (PartOf freetown sierra_leone) (STV 1.0 0.9091)) +(: cnet_partof_39e4417922 (PartOf french_and_indian_war seven_year_war) (STV 1.0 0.9091)) +(: cnet_partof_6bfb24a5d5 (PartOf french_indochina indochina) (STV 1.0 0.9091)) +(: cnet_partof_3f940b3aa9 (PartOf french_polynesia polynesia) (STV 1.0 0.9091)) +(: cnet_partof_5b64d3e8f2 (PartOf french_region france) (STV 1.0 0.9091)) +(: cnet_partof_d52e12233b (PartOf french_riviera riviera) (STV 1.0 0.9091)) +(: cnet_partof_362ed462c3 (PartOf french_sorrel french_sorrel) (STV 1.0 0.9091)) +(: cnet_partof_72b71132ac (PartOf french_west_indy west_indy) (STV 1.0 0.9091)) +(: cnet_partof_96f445b426 (PartOf fresh_breeze beaufort_scale) (STV 1.0 0.9091)) +(: cnet_partof_7ab66c61c0 (PartOf fresh_gale beaufort_scale) (STV 1.0 0.9091)) +(: cnet_partof_f9d6325722 (PartOf freshwater_bass freshwater_bass) (STV 1.0 0.9091)) +(: cnet_partof_2070426006 (PartOf fresnel_len headlight) (STV 1.0 0.9091)) +(: cnet_partof_2c2ebd7c8d (PartOf fresnel_len searchlight) (STV 1.0 0.9091)) +(: cnet_partof_8da2e70a4b (PartOf fresno california) (STV 1.0 0.9091)) +(: cnet_partof_cd5167f227 (PartOf friesland frisia) (STV 1.0 0.9091)) +(: cnet_partof_9f70afae49 (PartOf friesland netherland) (STV 1.0 0.9091)) +(: cnet_partof_b6428207a3 (PartOf frieze entablature) (STV 1.0 0.9091)) +(: cnet_partof_73962bdd05 (PartOf frimaire revolutionary_calendar) (STV 1.0 0.9091)) +(: cnet_partof_437192d0e6 (PartOf frisia europe) (STV 1.0 0.9091)) +(: cnet_partof_d0d18efec2 (PartOf frisian_island denmark) (STV 1.0 0.9091)) +(: cnet_partof_4ae951fc43 (PartOf frisian_island germany) (STV 1.0 0.9091)) +(: cnet_partof_e95c943cfd (PartOf frisian_island netherland) (STV 1.0 0.9091)) +(: cnet_partof_1affbf7afd (PartOf friuli_venezia_giulia italy) (STV 1.0 0.9091)) +(: cnet_partof_d032609e7f (PartOf frog_kick breaststroke) (STV 1.0 0.9091)) +(: cnet_partof_8019fff60f (PartOf frog_leg true_frog) (STV 1.0 0.9091)) +(: cnet_partof_91536e4581 (PartOf frontal_area cerebral_cortex) (STV 1.0 0.9091)) +(: cnet_partof_e126f6d7bf (PartOf frontal_bone cranium) (STV 1.0 0.9091)) +(: cnet_partof_4c890722ae (PartOf frontal_eminence frontal_bone) (STV 1.0 0.9091)) +(: cnet_partof_9321d00605 (PartOf frontal_gyrus frontal_area) (STV 1.0 0.9091)) +(: cnet_partof_9cb3098e3d (PartOf frontal_lobe brain) (STV 1.0 0.9339)) +(: cnet_partof_b84cf12b6e (PartOf frontal_suture cranium) (STV 1.0 0.9091)) +(: cnet_partof_7ed71ef405 (PartOf fructidor revolutionary_calendar) (STV 1.0 0.9091)) +(: cnet_partof_c3776001a6 (PartOf fuego guatemala) (STV 1.0 0.9091)) +(: cnet_partof_fe61cd6b28 (PartOf fuel_filter fuel_system) (STV 1.0 0.9091)) +(: cnet_partof_9b0d2830af (PartOf fuel_gauge fuel_system) (STV 1.0 0.9091)) +(: cnet_partof_57afde2ff6 (PartOf fuel_line fuel_system) (STV 1.0 0.9091)) +(: cnet_partof_44cc1ec09c (PartOf fuel_system aircraft) (STV 1.0 0.9091)) +(: cnet_partof_719259e8f4 (PartOf fuel_system motor_vehicle) (STV 1.0 0.9091)) +(: cnet_partof_1492f6414a (PartOf fuji japan) (STV 1.0 0.9091)) +(: cnet_partof_7cf72f9672 (PartOf fukuoka japan) (STV 1.0 0.9091)) +(: cnet_partof_49bab7a92b (PartOf fukuoka kyushu) (STV 1.0 0.9091)) +(: cnet_partof_004396338e (PartOf fulcrum lever) (STV 1.0 0.9091)) +(: cnet_partof_ef0fa265e0 (PartOf full_moon month) (STV 1.0 0.9091)) +(: cnet_partof_56ef80f273 (PartOf funafuti tuvalu) (STV 1.0 0.9091)) +(: cnet_partof_35dcdac180 (PartOf funnel ship) (STV 1.0 0.9091)) +(: cnet_partof_f1d54eb626 (PartOf funny_bone elbow) (STV 1.0 0.9091)) +(: cnet_partof_466889b215 (PartOf furcula bird) (STV 1.0 0.9091)) +(: cnet_partof_127148cbad (PartOf furlong mile) (STV 1.0 0.9091)) +(: cnet_partof_ba00b3592d (PartOf fusee_drive clock) (STV 1.0 0.9091)) +(: cnet_partof_4e7dc23884 (PartOf fuselage airplane) (STV 1.0 0.9091)) +(: cnet_partof_7881a8958d (PartOf gabon africa) (STV 1.0 0.9091)) +(: cnet_partof_8874795586 (PartOf gaborone botswana) (STV 1.0 0.9091)) +(: cnet_partof_6a4ecb9632 (PartOf gaddi musnud) (STV 1.0 0.9091)) +(: cnet_partof_94301981d4 (PartOf gadsden alabama) (STV 1.0 0.9091)) +(: cnet_partof_3cc9dd6418 (PartOf gaff sailing_vessel) (STV 1.0 0.9091)) +(: cnet_partof_508a10944e (PartOf gaffsail sailing_vessel) (STV 1.0 0.9091)) +(: cnet_partof_76734f9a44 (PartOf gafsa tunisia) (STV 1.0 0.9091)) +(: cnet_partof_d105b358c8 (PartOf gainesville florida) (STV 1.0 0.9091)) +(: cnet_partof_4b3e0924db (PartOf galan ande) (STV 1.0 0.9091)) +(: cnet_partof_742a2d9eed (PartOf galan argentina) (STV 1.0 0.9091)) +(: cnet_partof_283f808f81 (PartOf galapago_island ecuador) (STV 1.0 0.9091)) +(: cnet_partof_3962fc0c21 (PartOf galatia asia_minor) (STV 1.0 0.9091)) +(: cnet_partof_2f361bdc45 (PartOf galaxy universe) (STV 1.0 0.9719)) +(: cnet_partof_d96a62d2fe (PartOf galbulus cypress) (STV 1.0 0.9091)) +(: cnet_partof_a286c629eb (PartOf galera colombia) (STV 1.0 0.9091)) +(: cnet_partof_ed97b07cb6 (PartOf galicia spain) (STV 1.0 0.9091)) +(: cnet_partof_7848243e71 (PartOf galilee israel) (STV 1.0 0.9091)) +(: cnet_partof_0df2d01b24 (PartOf gallbladder thorax) (STV 1.0 0.9091)) +(: cnet_partof_6038282a64 (PartOf galley airliner) (STV 1.0 0.9091)) +(: cnet_partof_518a623509 (PartOf galley ship) (STV 1.0 0.9091)) +(: cnet_partof_0e303fbe89 (PartOf gallon barrel) (STV 1.0 0.9091)) +(: cnet_partof_ec0120db6e (PartOf gallon bushel) (STV 1.0 0.9091)) +(: cnet_partof_1ca030db69 (PartOf gallon firkin) (STV 1.0 0.9091)) +(: cnet_partof_3a4de744a0 (PartOf galloway scotland) (STV 1.0 0.9091)) +(: cnet_partof_2021e1a19d (PartOf gallup new_mexico) (STV 1.0 0.9091)) +(: cnet_partof_2e90ac8109 (PartOf galvanic_skin_response lie_detector) (STV 1.0 0.9091)) +(: cnet_partof_65d9478d17 (PartOf galveston texa) (STV 1.0 0.9091)) +(: cnet_partof_322a3aaebf (PartOf galveston_bay gulf_of_mexico) (STV 1.0 0.9091)) +(: cnet_partof_16a1990309 (PartOf galveston_bay texa) (STV 1.0 0.9091)) +(: cnet_partof_9b72b1be19 (PartOf galveston_island texa) (STV 1.0 0.9091)) +(: cnet_partof_7b1b824483 (PartOf galway ireland) (STV 1.0 0.9091)) +(: cnet_partof_f49764cceb (PartOf galway_bay atlantic) (STV 1.0 0.9091)) +(: cnet_partof_b5f1c221ae (PartOf gambia africa) (STV 1.0 0.9091)) +(: cnet_partof_7be2d1d692 (PartOf gambier_island french_polynesia) (STV 1.0 0.9091)) +(: cnet_partof_f829d76570 (PartOf game set) (STV 1.0 0.9091)) +(: cnet_partof_a9e6e5255a (PartOf gamma oersted) (STV 1.0 0.9091)) +(: cnet_partof_c6142b9b03 (PartOf gamma_radiation electromagnetic_spectrum) (STV 1.0 0.9091)) +(: cnet_partof_b408f2d0dd (PartOf gammon flitch) (STV 1.0 0.9091)) +(: cnet_partof_4ec721272d (PartOf gan_jiang china) (STV 1.0 0.9091)) +(: cnet_partof_73ac2b519c (PartOf gange bangladesh) (STV 1.0 0.9091)) +(: cnet_partof_cf38e1fb20 (PartOf gange india) (STV 1.0 0.9091)) +(: cnet_partof_66f87deb34 (PartOf ganglion nervous_system) (STV 1.0 0.9091)) +(: cnet_partof_1d30b5973b (PartOf gansu china) (STV 1.0 0.9091)) +(: cnet_partof_325920c894 (PartOf gansu silk_road) (STV 1.0 0.9091)) +(: cnet_partof_e4ea9016bd (PartOf garambulla garambulla) (STV 1.0 0.9091)) +(: cnet_partof_7621bce6b6 (PartOf garden house) (STV 1.0 0.9339)) +(: cnet_partof_4c1894a7e8 (PartOf garden_cress common_garden_cress) (STV 1.0 0.9091)) +(: cnet_partof_a4cd7009fa (PartOf garden_pea garden_pea) (STV 1.0 0.9091)) +(: cnet_partof_0e046d29ee (PartOf garland texa) (STV 1.0 0.9091)) +(: cnet_partof_99ecc0522f (PartOf garlic garlic) (STV 1.0 0.9091)) +(: cnet_partof_1e5dfd6cfe (PartOf garlic_chive garlic_chive) (STV 1.0 0.9091)) +(: cnet_partof_a1dc56ae31 (PartOf garonne france) (STV 1.0 0.9091)) +(: cnet_partof_af8534e79f (PartOf gary indiana) (STV 1.0 0.9091)) +(: cnet_partof_0cea9fad96 (PartOf gas_main gas_system) (STV 1.0 0.9091)) +(: cnet_partof_520a50b96f (PartOf gas_ring gas_range) (STV 1.0 0.9091)) +(: cnet_partof_6355cede36 (PartOf gas_system infrastructure) (STV 1.0 0.9091)) +(: cnet_partof_4f9417c27a (PartOf gas_tank fuel_system) (STV 1.0 0.9091)) +(: cnet_partof_36b9aa5d66 (PartOf gas_turbine gas_turbine_ship) (STV 1.0 0.9091)) +(: cnet_partof_558eb4dd31 (PartOf gas_turbine turbojet) (STV 1.0 0.9091)) +(: cnet_partof_971c5ec20b (PartOf gascogne france) (STV 1.0 0.9091)) +(: cnet_partof_2e27491e4d (PartOf gasherbrum karakoram) (STV 1.0 0.9091)) +(: cnet_partof_802be1e4e5 (PartOf gaskin hind_leg) (STV 1.0 0.9091)) +(: cnet_partof_eb45332e6c (PartOf gaskin horse) (STV 1.0 0.9091)) +(: cnet_partof_9bb04181ec (PartOf gasoline_engine car) (STV 1.0 0.9091)) +(: cnet_partof_ec98ebb0b3 (PartOf gasoline_gauge fuel_system) (STV 1.0 0.9091)) +(: cnet_partof_67a8c1663c (PartOf gastric_artery stomach) (STV 1.0 0.9091)) +(: cnet_partof_2e32683019 (PartOf gastric_vein stomach) (STV 1.0 0.9091)) +(: cnet_partof_d9b9df514f (PartOf gastrocnemius calf) (STV 1.0 0.9091)) +(: cnet_partof_787484abed (PartOf gastroomental_vein stomach) (STV 1.0 0.9091)) +(: cnet_partof_a6ba1e7720 (PartOf gastrulation growth) (STV 1.0 0.9091)) +(: cnet_partof_f64d292aae (PartOf gate air_terminal) (STV 1.0 0.9091)) +(: cnet_partof_84aa15610f (PartOf gate_of_arctic_national_park alaska) (STV 1.0 0.9091)) +(: cnet_partof_0265228e1c (PartOf gauntlet body_armor) (STV 1.0 0.9091)) +(: cnet_partof_caa607b143 (PartOf gauss tesla) (STV 1.0 0.9091)) +(: cnet_partof_da17f85686 (PartOf gauze bandage) (STV 1.0 0.9091)) +(: cnet_partof_be12117cc1 (PartOf gauze surgical_dressing) (STV 1.0 0.9091)) +(: cnet_partof_dab585c6dd (PartOf gaza_strip israel) (STV 1.0 0.9091)) +(: cnet_partof_f4c023fc29 (PartOf gazetteer atla) (STV 1.0 0.9091)) +(: cnet_partof_6e35a471c4 (PartOf gb tb) (STV 1.0 0.9091)) +(: cnet_partof_89ec7588e7 (PartOf gdansk poland) (STV 1.0 0.9091)) +(: cnet_partof_176907f166 (PartOf gearbox transmission) (STV 1.0 0.9091)) +(: cnet_partof_399762c470 (PartOf gearing engine) (STV 1.0 0.9091)) +(: cnet_partof_dec9e1db5f (PartOf gearshift motor_vehicle) (STV 1.0 0.9091)) +(: cnet_partof_d64a5f19b1 (PartOf geiger_tube geiger_counter) (STV 1.0 0.9091)) +(: cnet_partof_973182e4f9 (PartOf gem jewelry) (STV 1.0 0.9091)) +(: cnet_partof_cf13a19c29 (PartOf gemara talmud) (STV 1.0 0.9091)) +(: cnet_partof_56943182fa (PartOf gemini zodiac) (STV 1.0 0.9091)) +(: cnet_partof_ab866937f4 (PartOf gene chromosome) (STV 1.0 0.9091)) +(: cnet_partof_f9ced14750 (PartOf gene deoxyribonucleic_acid) (STV 1.0 0.9091)) +(: cnet_partof_09b1ea32e2 (PartOf general_delivery post_office) (STV 1.0 0.9091)) +(: cnet_partof_12e34bd76a (PartOf genesis old_testament) (STV 1.0 0.9091)) +(: cnet_partof_f00461327f (PartOf genesis torah) (STV 1.0 0.9091)) +(: cnet_partof_45c21c84b6 (PartOf geneva switzerland) (STV 1.0 0.9091)) +(: cnet_partof_f6be9ebd12 (PartOf genicular_vein knee) (STV 1.0 0.9091)) +(: cnet_partof_83eb1d6e5b (PartOf geniculate_body thalamus) (STV 1.0 0.9091)) +(: cnet_partof_a9dfa7fa39 (PartOf genip spanish_lime) (STV 1.0 0.9091)) +(: cnet_partof_a0eadf2144 (PartOf genipap genipap_fruit) (STV 1.0 0.9091)) +(: cnet_partof_09ce39b2f0 (PartOf genital_stage adolescence) (STV 1.0 0.9091)) +(: cnet_partof_64825ee9ac (PartOf genoa liguria) (STV 1.0 0.9091)) +(: cnet_partof_de0e7491c3 (PartOf gent belgium) (STV 1.0 0.9091)) +(: cnet_partof_6e202e1b88 (PartOf gentle_breeze beaufort_scale) (STV 1.0 0.9091)) +(: cnet_partof_d3a131f9e9 (PartOf george_town cayman_island) (STV 1.0 0.9091)) +(: cnet_partof_eddd9d4949 (PartOf george_washington_bridge new_york) (STV 1.0 0.9091)) +(: cnet_partof_533b68c1fb (PartOf georgetown guyana) (STV 1.0 0.9091)) +(: cnet_partof_c24723912f (PartOf georgetown washington) (STV 1.0 0.9091)) +(: cnet_partof_b132bde966 (PartOf georgia deep_south) (STV 1.0 0.9091)) +(: cnet_partof_52e085d36b (PartOf georgia south) (STV 1.0 0.9091)) +(: cnet_partof_f4d5ce3988 (PartOf georgia transcaucasia) (STV 1.0 0.9091)) +(: cnet_partof_0c26a9ab31 (PartOf georgia united_state) (STV 1.0 0.9091)) +(: cnet_partof_34ce1fafdd (PartOf germany europe) (STV 1.0 0.9091)) +(: cnet_partof_675fed5604 (PartOf germinal revolutionary_calendar) (STV 1.0 0.9091)) +(: cnet_partof_9e7950d118 (PartOf gestalt_law_of_organization gestalt_psychology) (STV 1.0 0.9091)) +(: cnet_partof_c1da91edad (PartOf gestapo schutzstaffel) (STV 1.0 0.9091)) +(: cnet_partof_1cbb942d92 (PartOf gettysburg american_civil_war) (STV 1.0 0.9091)) +(: cnet_partof_76fc8f02bd (PartOf gettysburg pennsylvania) (STV 1.0 0.9091)) +(: cnet_partof_9ec77a427b (PartOf ghana africa) (STV 1.0 0.9091)) +(: cnet_partof_55b6082d75 (PartOf giant_cane canebrake) (STV 1.0 0.9091)) +(: cnet_partof_88d7984858 (PartOf gibibit tebibit) (STV 1.0 0.9091)) +(: cnet_partof_1be376482e (PartOf giblet bird) (STV 1.0 0.9091)) +(: cnet_partof_e948997515 (PartOf gibraltar europe) (STV 1.0 0.9091)) +(: cnet_partof_0a1e8d0e2c (PartOf gibraltar pillar_of_hercule) (STV 1.0 0.9091)) +(: cnet_partof_c18ded4024 (PartOf gibson_desert australia) (STV 1.0 0.9091)) +(: cnet_partof_c5866495d8 (PartOf gibson_desert australian_desert) (STV 1.0 0.9091)) +(: cnet_partof_cb6fe55794 (PartOf gig fishing_gear) (STV 1.0 0.9091)) +(: cnet_partof_a2881bb155 (PartOf gigabit terabit) (STV 1.0 0.9091)) +(: cnet_partof_2825c5f986 (PartOf gigabyte terabyte) (STV 1.0 0.9091)) +(: cnet_partof_afcc98a4a0 (PartOf gila arizona) (STV 1.0 0.9091)) +(: cnet_partof_62e0fd18c1 (PartOf gila new_mexico) (STV 1.0 0.9091)) +(: cnet_partof_0cd658d013 (PartOf gila_desert arizona) (STV 1.0 0.9091)) +(: cnet_partof_01ccb3173a (PartOf gilbert_and_ellice_island micronesia) (STV 1.0 0.9091)) +(: cnet_partof_9f4581f3bb (PartOf gilbert_island kiribati) (STV 1.0 0.9091)) +(: cnet_partof_4dfdbec87e (PartOf gill cup) (STV 1.0 0.9091)) +(: cnet_partof_0c759978a9 (PartOf gill pint) (STV 1.0 0.9091)) +(: cnet_partof_22a313f8b5 (PartOf ginger common_ginger) (STV 1.0 0.9091)) +(: cnet_partof_0f18ff76b2 (PartOf gingiva mouth) (STV 1.0 0.9091)) +(: cnet_partof_599791cb28 (PartOf ginseng american_ginseng) (STV 1.0 0.9091)) +(: cnet_partof_dc958ac55e (PartOf ginseng ginseng) (STV 1.0 0.9091)) +(: cnet_partof_da8319c946 (PartOf giza egypt) (STV 1.0 0.9091)) +(: cnet_partof_d451de31ff (PartOf glabella frontal_bone) (STV 1.0 0.9091)) +(: cnet_partof_6c912c25e3 (PartOf gladiolus sternum) (STV 1.0 0.9091)) +(: cnet_partof_30c6f4b484 (PartOf glan penis) (STV 1.0 0.9091)) +(: cnet_partof_c9d55d6a96 (PartOf glan_clitoridis clitoris) (STV 1.0 0.9091)) +(: cnet_partof_8c90de1f94 (PartOf glan_penis penis) (STV 1.0 0.9091)) +(: cnet_partof_4393e9c96b (PartOf glasgow scotland) (STV 1.0 0.9091)) +(: cnet_partof_26d8940eb1 (PartOf glass window) (STV 1.0 0.9454)) +(: cnet_partof_708a21db7b (PartOf glass glass) (STV 1.0 0.9091)) +(: cnet_partof_c8c7c0fbb2 (PartOf gleba sporophore) (STV 1.0 0.9091)) +(: cnet_partof_329ee6f71b (PartOf glen_canyon_dam arizona) (STV 1.0 0.9091)) +(: cnet_partof_5c5e66fd34 (PartOf glenoid_fossa scapula) (STV 1.0 0.9091)) +(: cnet_partof_f42b4d0e12 (PartOf glenoid_fossa temporal_bone) (STV 1.0 0.9091)) +(: cnet_partof_030a297d8f (PartOf glomerulus malpighian_body) (STV 1.0 0.9091)) +(: cnet_partof_07dc7a13ff (PartOf glottis larynx) (STV 1.0 0.9091)) +(: cnet_partof_00dfa85a8a (PartOf gloucester england) (STV 1.0 0.9091)) +(: cnet_partof_9e82ae1535 (PartOf gloucester massachusett) (STV 1.0 0.9091)) +(: cnet_partof_90f4b1fa69 (PartOf gloucestershire england) (STV 1.0 0.9091)) +(: cnet_partof_84634b5a11 (PartOf glove_compartment car) (STV 1.0 0.9091)) +(: cnet_partof_cf06198c38 (PartOf gluteal_artery hip) (STV 1.0 0.9091)) +(: cnet_partof_8781688839 (PartOf gluteus buttock) (STV 1.0 0.9091)) +(: cnet_partof_ce5a756aaf (PartOf glyceride fat) (STV 1.0 0.9091)) +(: cnet_partof_3b81b03dbe (PartOf gnathion lower_jaw) (STV 1.0 0.9091)) +(: cnet_partof_2d04683def (PartOf gnomon sundial) (STV 1.0 0.9091)) +(: cnet_partof_fce0ca9669 (PartOf goa india) (STV 1.0 0.9091)) +(: cnet_partof_c2ad919127 (PartOf goa_bean winged_bean) (STV 1.0 0.9091)) +(: cnet_partof_e94b55cba4 (PartOf goal plan_of_action) (STV 1.0 0.9091)) +(: cnet_partof_e0ebfde0c9 (PartOf goalpost goal) (STV 1.0 0.9091)) +(: cnet_partof_bab62a81f1 (PartOf goatee chin) (STV 1.0 0.9091)) +(: cnet_partof_3a3846ea70 (PartOf gobi china) (STV 1.0 0.9091)) +(: cnet_partof_e7d5fc809d (PartOf gobi mongolia) (STV 1.0 0.9091)) +(: cnet_partof_c1d1fc08de (PartOf god religion) (STV 1.0 0.9719)) +(: cnet_partof_49c7bcf41a (PartOf golan_height israel) (STV 1.0 0.9091)) +(: cnet_partof_862519f32a (PartOf golden_gate california) (STV 1.0 0.9091)) +(: cnet_partof_449633588e (PartOf golden_gate_bridge san_francisco) (STV 1.0 0.9091)) +(: cnet_partof_0ebb2dfc74 (PartOf golden_gram mung) (STV 1.0 0.9091)) +(: cnet_partof_2cba8d473a (PartOf goldsboro north_carolina) (STV 1.0 0.9091)) +(: cnet_partof_8d3bba15f6 (PartOf golf_club_head golf_club) (STV 1.0 0.9091)) +(: cnet_partof_267e6ce5ec (PartOf golgi_s_cell cerebral_cortex) (STV 1.0 0.9091)) +(: cnet_partof_427c14881e (PartOf golgi_s_cell spinal_cord) (STV 1.0 0.9091)) +(: cnet_partof_684b556d83 (PartOf golgi_body cytoplasm) (STV 1.0 0.9091)) +(: cnet_partof_25ed877042 (PartOf goma congo) (STV 1.0 0.9091)) +(: cnet_partof_ca2cef14cd (PartOf gomorrah israel) (STV 1.0 0.9091)) +(: cnet_partof_299bc9f6df (PartOf gondwanaland southern_hemisphere) (STV 1.0 0.9091)) +(: cnet_partof_ac06708066 (PartOf gonion lower_jaw) (STV 1.0 0.9091)) +(: cnet_partof_5aacc85f53 (PartOf good_friday lent) (STV 1.0 0.9091)) +(: cnet_partof_56d1f10eb0 (PartOf goose goose) (STV 1.0 0.9091)) +(: cnet_partof_a1b3b1ec39 (PartOf goose_down goose) (STV 1.0 0.9091)) +(: cnet_partof_3a459e1c6c (PartOf gooseberry gooseberry) (STV 1.0 0.9091)) +(: cnet_partof_4df7d33544 (PartOf gore full_skirt) (STV 1.0 0.9091)) +(: cnet_partof_66dfe6202c (PartOf gore gaiter) (STV 1.0 0.9091)) +(: cnet_partof_e54a5875f6 (PartOf gore umbrella) (STV 1.0 0.9091)) +(: cnet_partof_5cc87d57d8 (PartOf gorget body_armor) (STV 1.0 0.9091)) +(: cnet_partof_0e46a43f32 (PartOf gosainthan himalaya) (STV 1.0 0.9091)) +(: cnet_partof_6ac7a805e1 (PartOf gosainthan tibet) (STV 1.0 0.9091)) +(: cnet_partof_79ac49d9e9 (PartOf gospel new_testament) (STV 1.0 0.9091)) +(: cnet_partof_cbca9e6612 (PartOf gota_canal sweden) (STV 1.0 0.9091)) +(: cnet_partof_9e34e840d9 (PartOf goteborg sweden) (STV 1.0 0.9091)) +(: cnet_partof_6a088833d7 (PartOf gothenburg sweden) (STV 1.0 0.9091)) +(: cnet_partof_4b92d981e6 (PartOf governador_valadare brazil) (STV 1.0 0.9091)) +(: cnet_partof_3eb6506d28 (PartOf graafian_follicle ovary) (STV 1.0 0.9091)) +(: cnet_partof_eb2abd0ca3 (PartOf grad quadrant) (STV 1.0 0.9091)) +(: cnet_partof_518975b44b (PartOf grain decigram) (STV 1.0 0.9091)) +(: cnet_partof_9e504d258a (PartOf grain dram) (STV 1.0 0.9091)) +(: cnet_partof_56a5cedb0a (PartOf grain pennyweight) (STV 1.0 0.9091)) +(: cnet_partof_d012796dd9 (PartOf grain scruple) (STV 1.0 0.9091)) +(: cnet_partof_5248f7cea8 (PartOf gram dekagram) (STV 1.0 0.9091)) +(: cnet_partof_451f0a6e8f (PartOf grammatical_meaning function_word) (STV 1.0 0.9091)) +(: cnet_partof_a209ffcbe2 (PartOf gran_santiago chile) (STV 1.0 0.9091)) +(: cnet_partof_6ff2e7ae6c (PartOf granada andalusia) (STV 1.0 0.9091)) +(: cnet_partof_495521a9a6 (PartOf granadilla granadilla) (STV 1.0 0.9091)) +(: cnet_partof_a0c96b06a6 (PartOf grand_canal china) (STV 1.0 0.9091)) +(: cnet_partof_adff4d6fdb (PartOf grand_canal venice) (STV 1.0 0.9091)) +(: cnet_partof_939b6ccec3 (PartOf grand_canyon arizona) (STV 1.0 0.9091)) +(: cnet_partof_f4f1a9569f (PartOf grand_canyon colorado_plateau) (STV 1.0 0.9091)) +(: cnet_partof_8e381b547a (PartOf grand_canyon_national_park arizona) (STV 1.0 0.9091)) +(: cnet_partof_5af9dd9138 (PartOf grand_island nebraska) (STV 1.0 0.9091)) +(: cnet_partof_974c682f7a (PartOf grand_rapid michigan) (STV 1.0 0.9091)) +(: cnet_partof_3c7ccda688 (PartOf grand_river michigan) (STV 1.0 0.9091)) +(: cnet_partof_f13fd0149b (PartOf grand_teton teton_range) (STV 1.0 0.9091)) +(: cnet_partof_9609458d04 (PartOf grand_teton_national_park wyoming) (STV 1.0 0.9091)) +(: cnet_partof_7b1d869f0c (PartOf grandma family) (STV 1.0 0.9091)) +(: cnet_partof_94ba21bc3c (PartOf grape grape) (STV 1.0 0.9091)) +(: cnet_partof_dff0e895ea (PartOf grapefruit grapefruit) (STV 1.0 0.9091)) +(: cnet_partof_12d681a0c9 (PartOf grapefruit_peel grapefruit) (STV 1.0 0.9091)) +(: cnet_partof_389437287d (PartOf grate furnace) (STV 1.0 0.9091)) +(: cnet_partof_8fa65357e0 (PartOf grate stove) (STV 1.0 0.9091)) +(: cnet_partof_16524a256c (PartOf gravestone grave) (STV 1.0 0.9091)) +(: cnet_partof_720a42933f (PartOf gravitational_constant law_of_gravitation) (STV 1.0 0.9091)) +(: cnet_partof_4078402f1e (PartOf graz austria) (STV 1.0 0.9091)) +(: cnet_partof_ac2d5c8c88 (PartOf great_australian_bight australia) (STV 1.0 0.9091)) +(: cnet_partof_0cd885da36 (PartOf great_barrier_reef australia) (STV 1.0 0.9091)) +(: cnet_partof_e81cf983ec (PartOf great_britain british_isle) (STV 1.0 0.9091)) +(: cnet_partof_5888e79fb2 (PartOf great_divide continental_divide) (STV 1.0 0.9091)) +(: cnet_partof_47b5016836 (PartOf great_dividing_range australia) (STV 1.0 0.9091)) +(: cnet_partof_7224b9c576 (PartOf great_fall montana) (STV 1.0 0.9091)) +(: cnet_partof_91164c927b (PartOf great_hall palace) (STV 1.0 0.9091)) +(: cnet_partof_1da6a398e9 (PartOf great_indian_desert india) (STV 1.0 0.9091)) +(: cnet_partof_0d6836e254 (PartOf great_indian_desert pakistan) (STV 1.0 0.9091)) +(: cnet_partof_ece9610667 (PartOf great_lake canada) (STV 1.0 0.9091)) +(: cnet_partof_2f1aa0aa32 (PartOf great_lake united_state) (STV 1.0 0.9091)) +(: cnet_partof_8ded20e002 (PartOf great_plain north_america) (STV 1.0 0.9091)) +(: cnet_partof_430786ae0a (PartOf great_pumpkin halloween) (STV 1.0 0.9339)) +(: cnet_partof_25569384a8 (PartOf great_rift_valley africa) (STV 1.0 0.9091)) +(: cnet_partof_6fa5b84be4 (PartOf great_rift_valley asia) (STV 1.0 0.9091)) +(: cnet_partof_d0543814a6 (PartOf great_salt_desert iran) (STV 1.0 0.9091)) +(: cnet_partof_e188b06792 (PartOf great_salt_lake utah) (STV 1.0 0.9091)) +(: cnet_partof_3828a3a7fa (PartOf great_sandy_desert australia) (STV 1.0 0.9091)) +(: cnet_partof_162ed21d0c (PartOf great_sandy_desert australian_desert) (STV 1.0 0.9091)) +(: cnet_partof_a1307fdf94 (PartOf great_slave_lake northwest_territory) (STV 1.0 0.9091)) +(: cnet_partof_d9da220a40 (PartOf great_smoky_mountain appalachian) (STV 1.0 0.9091)) +(: cnet_partof_ebd852a7ec (PartOf great_smoky_mountain_national_park north_carolina) (STV 1.0 0.9091)) +(: cnet_partof_bd5a0b8807 (PartOf great_smoky_mountain_national_park tennessee) (STV 1.0 0.9091)) +(: cnet_partof_390ef2ad54 (PartOf great_victoria_desert australia) (STV 1.0 0.9091)) +(: cnet_partof_377eba9873 (PartOf great_victoria_desert australian_desert) (STV 1.0 0.9091)) +(: cnet_partof_ce6143091c (PartOf greater_antille antille) (STV 1.0 0.9091)) +(: cnet_partof_e5c801f9c6 (PartOf greater_new_orlean_bridge new_orlean) (STV 1.0 0.9091)) +(: cnet_partof_41b871b464 (PartOf greater_sunda_island sunda_island) (STV 1.0 0.9091)) +(: cnet_partof_3a4784ddd9 (PartOf greave body_armor) (STV 1.0 0.9091)) +(: cnet_partof_037d67fa55 (PartOf greece europe) (STV 1.0 0.9091)) +(: cnet_partof_f0c99982c6 (PartOf green golf_course) (STV 1.0 0.9091)) +(: cnet_partof_b253909e39 (PartOf green utah) (STV 1.0 0.9091)) +(: cnet_partof_0cb1ea7787 (PartOf green wyoming) (STV 1.0 0.9091)) +(: cnet_partof_d2796c131b (PartOf green_bay wisconsin) (STV 1.0 0.9091)) +(: cnet_partof_4244b2628d (PartOf green_gland crustacean) (STV 1.0 0.9091)) +(: cnet_partof_4243409af7 (PartOf green_mountain appalachian) (STV 1.0 0.9091)) +(: cnet_partof_28967bc1c7 (PartOf green_mountain vermont) (STV 1.0 0.9091)) +(: cnet_partof_57556fbdc9 (PartOf greenland arctic_ocean) (STV 1.0 0.9091)) +(: cnet_partof_094ca7d85a (PartOf greenland atlantic) (STV 1.0 0.9091)) +(: cnet_partof_235d6a19fc (PartOf greenland_sea arctic_ocean) (STV 1.0 0.9091)) +(: cnet_partof_f7aa8297ba (PartOf greenroom theater) (STV 1.0 0.9091)) +(: cnet_partof_554efdcd89 (PartOf greensboro north_carolina) (STV 1.0 0.9091)) +(: cnet_partof_5a56d0d58a (PartOf greenville mississippi) (STV 1.0 0.9091)) +(: cnet_partof_c69ca46460 (PartOf greenville north_carolina) (STV 1.0 0.9091)) +(: cnet_partof_6532bce4c0 (PartOf greenville south_carolina) (STV 1.0 0.9091)) +(: cnet_partof_47cb28d3c4 (PartOf greenwich london) (STV 1.0 0.9091)) +(: cnet_partof_9d58c9f80a (PartOf greenwich_village new_york) (STV 1.0 0.9091)) +(: cnet_partof_396a48c683 (PartOf gregorian_calendar_month gregorian_calendar) (STV 1.0 0.9091)) +(: cnet_partof_94778204ba (PartOf grenada windward_island) (STV 1.0 0.9091)) +(: cnet_partof_5559805020 (PartOf grenoble france) (STV 1.0 0.9091)) +(: cnet_partof_90f1a1c4d3 (PartOf grid infrastructure) (STV 1.0 0.9091)) +(: cnet_partof_f34b3eb598 (PartOf grid tube) (STV 1.0 0.9091)) +(: cnet_partof_55a0936a9e (PartOf grille car) (STV 1.0 0.9091)) +(: cnet_partof_c5bcec5b91 (PartOf grinding_wheel grinder) (STV 1.0 0.9091)) +(: cnet_partof_0ea0f75b1c (PartOf groin loin) (STV 1.0 0.9091)) +(: cnet_partof_c7c904fd8e (PartOf groschen schilling) (STV 1.0 0.9091)) +(: cnet_partof_940305994c (PartOf grosz zloty) (STV 1.0 0.9091)) +(: cnet_partof_e6df413573 (PartOf ground_beef hamburger) (STV 1.0 0.9091)) +(: cnet_partof_9402cb3ef2 (PartOf ground_zero new_york) (STV 1.0 0.9091)) +(: cnet_partof_b9b48d5070 (PartOf groundhog_day february) (STV 1.0 0.9091)) +(: cnet_partof_959446eb48 (PartOf groundnut groundnut) (STV 1.0 0.9091)) +(: cnet_partof_b7f663577d (PartOf group molecule) (STV 1.0 0.9091)) +(: cnet_partof_d6ae82c80b (PartOf grouper grouper) (STV 1.0 0.9091)) +(: cnet_partof_92956cfba0 (PartOf grouse grouse) (STV 1.0 0.9091)) +(: cnet_partof_7397750a78 (PartOf grozny russia) (STV 1.0 0.9091)) +(: cnet_partof_2d27f70367 (PartOf grugru_nut grugru) (STV 1.0 0.9091)) +(: cnet_partof_ed6f7df4bd (PartOf guadalajara mexico) (STV 1.0 0.9091)) +(: cnet_partof_2a35aa1f90 (PartOf guadalcanal world_war_ii) (STV 1.0 0.9091)) +(: cnet_partof_273f05a10b (PartOf guadalcanal solomon) (STV 1.0 0.9091)) +(: cnet_partof_38121a1766 (PartOf guadalupe_island pacific) (STV 1.0 0.9091)) +(: cnet_partof_59ba9572d8 (PartOf guadalupe_mountain new_mexico) (STV 1.0 0.9091)) +(: cnet_partof_8da50869d6 (PartOf guadalupe_mountain texa) (STV 1.0 0.9091)) +(: cnet_partof_12b007d2e4 (PartOf guadalupe_mountain_national_park texa) (STV 1.0 0.9091)) +(: cnet_partof_48e88dc579 (PartOf guadeloupe leeward_island) (STV 1.0 0.9091)) +(: cnet_partof_d2bb8f0df3 (PartOf guallatiri chile) (STV 1.0 0.9091)) +(: cnet_partof_36e9354048 (PartOf guam mariana_island) (STV 1.0 0.9091)) +(: cnet_partof_6d78a8e643 (PartOf guantanamo cuba) (STV 1.0 0.9091)) +(: cnet_partof_9d2fa75770 (PartOf guard cortege) (STV 1.0 0.9091)) +(: cnet_partof_6fa47ba445 (PartOf guard_hair fur) (STV 1.0 0.9091)) +(: cnet_partof_5ba95a85eb (PartOf guatemala central_america) (STV 1.0 0.9091)) +(: cnet_partof_7e5c38f07a (PartOf guatemala_city guatemala) (STV 1.0 0.9091)) +(: cnet_partof_87fc45f729 (PartOf guava guava) (STV 1.0 0.9091)) +(: cnet_partof_48f0343805 (PartOf guayaquil ecuador) (STV 1.0 0.9091)) +(: cnet_partof_bd41f58f98 (PartOf guiana south_america) (STV 1.0 0.9091)) +(: cnet_partof_2217982454 (PartOf guiana_highland south_america) (STV 1.0 0.9091)) +(: cnet_partof_1baa0606a9 (PartOf guidance_system guided_missile) (STV 1.0 0.9091)) +(: cnet_partof_789faafce2 (PartOf guimpe nun_s_habit) (STV 1.0 0.9091)) +(: cnet_partof_d361092f9f (PartOf guinea africa) (STV 1.0 0.9091)) +(: cnet_partof_155e5e136a (PartOf guinea_bissau africa) (STV 1.0 0.9091)) +(: cnet_partof_5422cb4b82 (PartOf guinea_hen guinea_fowl) (STV 1.0 0.9091)) +(: cnet_partof_df0583d006 (PartOf gujarat india) (STV 1.0 0.9091)) +(: cnet_partof_093ea32349 (PartOf gulf sea) (STV 1.0 0.9091)) +(: cnet_partof_6f07ef9f52 (PartOf gulf_coast gulf_of_mexico) (STV 1.0 0.9091)) +(: cnet_partof_4da1f45cf3 (PartOf gulf_of_aden indian_ocean) (STV 1.0 0.9091)) +(: cnet_partof_c9772114ab (PartOf gulf_of_alaska pacific) (STV 1.0 0.9091)) +(: cnet_partof_812b317358 (PartOf gulf_of_antalya mediterranean) (STV 1.0 0.9091)) +(: cnet_partof_b03d785afc (PartOf gulf_of_aqaba red_sea) (STV 1.0 0.9091)) +(: cnet_partof_f4318e1839 (PartOf gulf_of_bothnia baltic) (STV 1.0 0.9091)) +(: cnet_partof_3c6568b0ec (PartOf gulf_of_california mexico) (STV 1.0 0.9091)) +(: cnet_partof_7ce0983753 (PartOf gulf_of_carpentaria australia) (STV 1.0 0.9091)) +(: cnet_partof_41ad4d12a4 (PartOf gulf_of_corinth ionian_sea) (STV 1.0 0.9091)) +(: cnet_partof_be8da7d5b4 (PartOf gulf_of_finland baltic) (STV 1.0 0.9091)) +(: cnet_partof_6735dc835b (PartOf gulf_of_guinea atlantic) (STV 1.0 0.9091)) +(: cnet_partof_254ac74fe4 (PartOf gulf_of_martaban andaman_sea) (STV 1.0 0.9091)) +(: cnet_partof_1767727341 (PartOf gulf_of_mexico atlantic) (STV 1.0 0.9091)) +(: cnet_partof_ed3c875c3d (PartOf gulf_of_ob kara_sea) (STV 1.0 0.9091)) +(: cnet_partof_3aeba3ed86 (PartOf gulf_of_ob siberia) (STV 1.0 0.9091)) +(: cnet_partof_ee7b940e11 (PartOf gulf_of_oman arabian_sea) (STV 1.0 0.9091)) +(: cnet_partof_11656b478a (PartOf gulf_of_riga baltic) (STV 1.0 0.9091)) +(: cnet_partof_4c09a264fe (PartOf gulf_of_saint_lawrence atlantic) (STV 1.0 0.9091)) +(: cnet_partof_fe01901644 (PartOf gulf_of_sidra mediterranean) (STV 1.0 0.9091)) +(: cnet_partof_8ff1ea7b13 (PartOf gulf_of_suez red_sea) (STV 1.0 0.9091)) +(: cnet_partof_6fe0095741 (PartOf gulf_of_tehuantepec mexico) (STV 1.0 0.9091)) +(: cnet_partof_c9097de947 (PartOf gulf_of_tehuantepec pacific) (STV 1.0 0.9091)) +(: cnet_partof_48ed8422e8 (PartOf gulf_of_thailand south_china_sea) (STV 1.0 0.9091)) +(: cnet_partof_fde9a0f7f2 (PartOf gulf_of_venice adriatic) (STV 1.0 0.9091)) +(: cnet_partof_d16a96c99b (PartOf gulf_state south) (STV 1.0 0.9091)) +(: cnet_partof_7501858449 (PartOf gulu uganda) (STV 1.0 0.9091)) +(: cnet_partof_0ca306223d (PartOf gumbo okra) (STV 1.0 0.9091)) +(: cnet_partof_d64c1f0fce (PartOf gun_enclosure tank) (STV 1.0 0.9091)) +(: cnet_partof_544cbecf98 (PartOf gun_muzzle gun) (STV 1.0 0.9091)) +(: cnet_partof_bb98dc96db (PartOf gun_powder firework) (STV 1.0 0.9091)) +(: cnet_partof_77c20e784d (PartOf gun_trigger gun) (STV 1.0 0.9091)) +(: cnet_partof_a7e8b486e5 (PartOf gunflint flintlock) (STV 1.0 0.9091)) +(: cnet_partof_dbe7c3f05e (PartOf gunlock gun) (STV 1.0 0.9091)) +(: cnet_partof_98b4c41e45 (PartOf gunsight gun) (STV 1.0 0.9091)) +(: cnet_partof_f84672b3a5 (PartOf gunter_s_chain furlong) (STV 1.0 0.9091)) +(: cnet_partof_eff364cbcd (PartOf gusset garment) (STV 1.0 0.9091)) +(: cnet_partof_2b795523b8 (PartOf gutter gable_roof) (STV 1.0 0.9091)) +(: cnet_partof_cad8d840d6 (PartOf guy tent) (STV 1.0 0.9091)) +(: cnet_partof_fd8377923b (PartOf guyana guiana) (STV 1.0 0.9091)) +(: cnet_partof_989b2ff138 (PartOf gynostegium stamen) (STV 1.0 0.9091)) +(: cnet_partof_8698949e03 (PartOf gyroscope gyrocompass) (STV 1.0 0.9091)) +(: cnet_partof_de13a71a34 (PartOf gyroscope gyrostabilizer) (STV 1.0 0.9091)) +(: cnet_partof_59afe2e951 (PartOf gyrostabilizer ship) (STV 1.0 0.9091)) +(: cnet_partof_1d41d56704 (PartOf gyrus cerebrum) (STV 1.0 0.9091)) +(: cnet_partof_8130d99ed2 (PartOf habakkuk old_testament) (STV 1.0 0.9091)) +(: cnet_partof_8459306836 (PartOf habakkuk prophet) (STV 1.0 0.9091)) +(: cnet_partof_a40e816dcc (PartOf hacienda hacienda) (STV 1.0 0.9091)) +(: cnet_partof_3d443e2e68 (PartOf haddock haddock) (STV 1.0 0.9091)) +(: cnet_partof_969842c17f (PartOf hadrian_s_wall england) (STV 1.0 0.9091)) +(: cnet_partof_b5aa5c1cee (PartOf haft awl) (STV 1.0 0.9091)) +(: cnet_partof_e1b6ed5bfa (PartOf haft ax) (STV 1.0 0.9091)) +(: cnet_partof_66fcc995d9 (PartOf haft dagger) (STV 1.0 0.9091)) +(: cnet_partof_8322a8fd62 (PartOf haft file) (STV 1.0 0.9091)) +(: cnet_partof_d2d4dffa1d (PartOf haft knife) (STV 1.0 0.9091)) +(: cnet_partof_cd603f585a (PartOf haft sickle) (STV 1.0 0.9091)) +(: cnet_partof_eed3c20e48 (PartOf haft sword) (STV 1.0 0.9091)) +(: cnet_partof_31139ca04a (PartOf hagberry hagberry_tree) (STV 1.0 0.9091)) +(: cnet_partof_14873630c6 (PartOf hagerstown maryland) (STV 1.0 0.9091)) +(: cnet_partof_5543ef8195 (PartOf haggai old_testament) (STV 1.0 0.9091)) +(: cnet_partof_61285b4f88 (PartOf haggai prophet) (STV 1.0 0.9091)) +(: cnet_partof_75170aadc0 (PartOf hagia_sophia istanbul) (STV 1.0 0.9091)) +(: cnet_partof_07feedcab2 (PartOf hagiographa tanakh) (STV 1.0 0.9091)) +(: cnet_partof_e918dad91c (PartOf hague netherland) (STV 1.0 0.9091)) +(: cnet_partof_72eb3522a4 (PartOf haifa israel) (STV 1.0 0.9091)) +(: cnet_partof_b0e6ea9db3 (PartOf hailstone hail) (STV 1.0 0.9091)) +(: cnet_partof_9d88647b43 (PartOf haiphong vietnam) (STV 1.0 0.9091)) +(: cnet_partof_48c13c8467 (PartOf hair head) (STV 1.0 0.9524)) +(: cnet_partof_fdc9708796 (PartOf hair integumentary_system) (STV 1.0 0.9091)) +(: cnet_partof_c0b99d271b (PartOf hair mammal) (STV 1.0 0.9091)) +(: cnet_partof_1434c8ae7f (PartOf hair_cell organ_of_corti) (STV 1.0 0.9091)) +(: cnet_partof_a11db93518 (PartOf hairline hair) (STV 1.0 0.9091)) +(: cnet_partof_43adb97a9b (PartOf hairspring timepiece) (STV 1.0 0.9091)) +(: cnet_partof_f159338c12 (PartOf haiti caribbean) (STV 1.0 0.9091)) +(: cnet_partof_3088729ce8 (PartOf haiti hispaniola) (STV 1.0 0.9091)) +(: cnet_partof_2e0fb860d1 (PartOf haitian_centime gourde) (STV 1.0 0.9091)) +(: cnet_partof_2403cd60c8 (PartOf haleakala_national_park hawaii) (STV 1.0 0.9091)) +(: cnet_partof_d65ab6566d (PartOf haler koruna) (STV 1.0 0.9091)) +(: cnet_partof_45c6a1dd2d (PartOf half basketball) (STV 1.0 0.9091)) +(: cnet_partof_ab9d115113 (PartOf half football) (STV 1.0 0.9091)) +(: cnet_partof_a73e1f471c (PartOf half playing_period) (STV 1.0 0.9091)) +(: cnet_partof_ceb02d2326 (PartOf half_century century) (STV 1.0 0.9091)) +(: cnet_partof_63cdbacccd (PartOf half_hour hour) (STV 1.0 0.9091)) +(: cnet_partof_8e06ae1e96 (PartOf half_mile mile) (STV 1.0 0.9091)) +(: cnet_partof_57bba6d537 (PartOf half_moon nail) (STV 1.0 0.9091)) +(: cnet_partof_e7f15e934d (PartOf half_moon month) (STV 1.0 0.9091)) +(: cnet_partof_596f72aa8a (PartOf half_pound pound) (STV 1.0 0.9091)) +(: cnet_partof_a29ee01d20 (PartOf half_sole footwear) (STV 1.0 0.9091)) +(: cnet_partof_c599c05ff0 (PartOf halibut halibut) (STV 1.0 0.9091)) +(: cnet_partof_2af72c11ec (PartOf halicarnassus turkey) (STV 1.0 0.9091)) +(: cnet_partof_f02dd1f4de (PartOf halifax nova_scotia) (STV 1.0 0.9091)) +(: cnet_partof_20b5c2db6f (PartOf halle germany) (STV 1.0 0.9091)) +(: cnet_partof_8d921925a3 (PartOf halter dipterous_insect) (STV 1.0 0.9091)) +(: cnet_partof_bb6c02da9c (PartOf halter harness) (STV 1.0 0.9091)) +(: cnet_partof_c1ed02b225 (PartOf hambourg germany) (STV 1.0 0.9091)) +(: cnet_partof_91091d3cf6 (PartOf hamburg germany) (STV 1.0 0.9091)) +(: cnet_partof_fdcbc0130b (PartOf hame collar) (STV 1.0 0.9091)) +(: cnet_partof_cfc87770af (PartOf hamelin germany) (STV 1.0 0.9091)) +(: cnet_partof_d463833860 (PartOf hamilton ontario) (STV 1.0 0.9091)) +(: cnet_partof_002e58e62e (PartOf hammer gunlock) (STV 1.0 0.9091)) +(: cnet_partof_96fc3387ff (PartOf hammer piano_action) (STV 1.0 0.9091)) +(: cnet_partof_960d9ef379 (PartOf hammer_head hammer) (STV 1.0 0.9091)) +(: cnet_partof_8152745e1f (PartOf hammerhead hammer) (STV 1.0 0.9091)) +(: cnet_partof_4cc51c2d65 (PartOf hampshire england) (STV 1.0 0.9091)) +(: cnet_partof_8f64b8a1d4 (PartOf hampton_road american_civil_war) (STV 1.0 0.9091)) +(: cnet_partof_8f29ae905e (PartOf hampton_road virginia) (STV 1.0 0.9091)) +(: cnet_partof_3831c7e198 (PartOf hand arm) (STV 1.0 0.9091)) +(: cnet_partof_8071ffd3bc (PartOf hand body) (STV 1.0 0.9454)) +(: cnet_partof_e9be79af4b (PartOf hand timepiece) (STV 1.0 0.9091)) +(: cnet_partof_5f393d532e (PartOf hand homo) (STV 1.0 0.9091)) +(: cnet_partof_33d4e58645 (PartOf hand_brake motor_vehicle) (STV 1.0 0.9091)) +(: cnet_partof_4d439b3d6e (PartOf handy_peak san_juan_mountain) (STV 1.0 0.9091)) +(: cnet_partof_87a2f09360 (PartOf handle door) (STV 1.0 0.9572)) +(: cnet_partof_0dd3a19733 (PartOf handle hammer) (STV 1.0 0.9091)) +(: cnet_partof_417dc152d3 (PartOf handle aspergill) (STV 1.0 0.9091)) +(: cnet_partof_e1e3fe282f (PartOf handle baggage) (STV 1.0 0.9091)) +(: cnet_partof_cabc361554 (PartOf handle baseball_bat) (STV 1.0 0.9091)) +(: cnet_partof_f3e843d20b (PartOf handle briefcase) (STV 1.0 0.9091)) +(: cnet_partof_da31e381c4 (PartOf handle brush) (STV 1.0 0.9091)) +(: cnet_partof_2ab5d18bf0 (PartOf handle carpet_beater) (STV 1.0 0.9091)) +(: cnet_partof_23d7f96fbb (PartOf handle carrycot) (STV 1.0 0.9091)) +(: cnet_partof_aa1f280414 (PartOf handle cheese_cutter) (STV 1.0 0.9091)) +(: cnet_partof_cb98d18ed4 (PartOf handle coffee_cup) (STV 1.0 0.9091)) +(: cnet_partof_bf3ca92622 (PartOf handle coffeepot) (STV 1.0 0.9091)) +(: cnet_partof_ca3a6f6402 (PartOf handle cricket_bat) (STV 1.0 0.9091)) +(: cnet_partof_b196c1cd19 (PartOf handle cutlery) (STV 1.0 0.9091)) +(: cnet_partof_31d535728a (PartOf handle edge_tool) (STV 1.0 0.9091)) +(: cnet_partof_a554c42d96 (PartOf handle faucet) (STV 1.0 0.9091)) +(: cnet_partof_b6768c6f33 (PartOf handle frying_pan) (STV 1.0 0.9091)) +(: cnet_partof_14a2a0c8fd (PartOf handle hand_tool) (STV 1.0 0.9091)) +(: cnet_partof_24971668c6 (PartOf handle handbarrow) (STV 1.0 0.9091)) +(: cnet_partof_0d572de74e (PartOf handle handcart) (STV 1.0 0.9091)) +(: cnet_partof_437b15e399 (PartOf handle handlebar) (STV 1.0 0.9091)) +(: cnet_partof_15b2befec5 (PartOf handle handset) (STV 1.0 0.9091)) +(: cnet_partof_e6e587f90a (PartOf handle ladle) (STV 1.0 0.9091)) +(: cnet_partof_0d1bc52c2a (PartOf handle mug) (STV 1.0 0.9091)) +(: cnet_partof_b3b7bcc48b (PartOf handle racket) (STV 1.0 0.9091)) +(: cnet_partof_d00e0b33bf (PartOf handle saucepan) (STV 1.0 0.9091)) +(: cnet_partof_bb32095d07 (PartOf handle spatula) (STV 1.0 0.9091)) +(: cnet_partof_64f1bb22da (PartOf handle teacup) (STV 1.0 0.9091)) +(: cnet_partof_1e99fad38b (PartOf handle umbrella) (STV 1.0 0.9091)) +(: cnet_partof_29e68b6b13 (PartOf handle watering_can) (STV 1.0 0.9091)) +(: cnet_partof_08200e5f38 (PartOf handlebar bicycle) (STV 1.0 0.9091)) +(: cnet_partof_ee6645ddbc (PartOf handwheel lathe) (STV 1.0 0.9091)) +(: cnet_partof_a0c0a4cc60 (PartOf handwheel standing_press) (STV 1.0 0.9091)) +(: cnet_partof_ab67848ea8 (PartOf handwheel valve) (STV 1.0 0.9091)) +(: cnet_partof_388f4f65c9 (PartOf hanging_garden_of_babylon babylon) (STV 1.0 0.9091)) +(: cnet_partof_7cc6ecc661 (PartOf hanging_wall inclined_fault) (STV 1.0 0.9091)) +(: cnet_partof_de1a8a251d (PartOf hangman_s_rope gallow) (STV 1.0 0.9091)) +(: cnet_partof_5070b042a9 (PartOf hangzhou china) (STV 1.0 0.9091)) +(: cnet_partof_b9778d76b5 (PartOf hannibal missouri) (STV 1.0 0.9091)) +(: cnet_partof_66a3f5a7fb (PartOf hannover germany) (STV 1.0 0.9091)) +(: cnet_partof_a7d9f64ca4 (PartOf hanoi vietnam) (STV 1.0 0.9091)) +(: cnet_partof_80d0d9590f (PartOf hanukkah kislev) (STV 1.0 0.9091)) +(: cnet_partof_3570ca7a86 (PartOf hanukkah tebet) (STV 1.0 0.9091)) +(: cnet_partof_25d9f2f7d2 (PartOf hao dong) (STV 1.0 0.9091)) +(: cnet_partof_63202b4e3e (PartOf harare zimbabwe) (STV 1.0 0.9091)) +(: cnet_partof_95531f8b1b (PartOf hard_disc disk_drive) (STV 1.0 0.9091)) +(: cnet_partof_0b68a85479 (PartOf hard_palate palate) (STV 1.0 0.9091)) +(: cnet_partof_ce7b8e7ffc (PartOf hard_palate upper_jaw) (STV 1.0 0.9091)) +(: cnet_partof_37feb6a911 (PartOf hardening plastination) (STV 1.0 0.9091)) +(: cnet_partof_06c00ba9e4 (PartOf hardware computer) (STV 1.0 0.9091)) +(: cnet_partof_ebd9c1024c (PartOf hargeisa somalia) (STV 1.0 0.9091)) +(: cnet_partof_108fdd43f6 (PartOf harlem manhattan) (STV 1.0 0.9091)) +(: cnet_partof_0fb5f96895 (PartOf harlem_river new_york) (STV 1.0 0.9091)) +(: cnet_partof_bcc6290930 (PartOf harley_street london) (STV 1.0 0.9091)) +(: cnet_partof_746d998ca5 (PartOf harness parachute) (STV 1.0 0.9091)) +(: cnet_partof_4e1ee430c7 (PartOf harper_s_ferry west_virginia) (STV 1.0 0.9091)) +(: cnet_partof_66b9bfeae6 (PartOf harpoon_line harpoon) (STV 1.0 0.9091)) +(: cnet_partof_80082218b8 (PartOf harrisburg pennsylvania) (STV 1.0 0.9091)) +(: cnet_partof_a7ac17e1d2 (PartOf hartford connecticut) (STV 1.0 0.9091)) +(: cnet_partof_a6e9b61aaa (PartOf harvard_university cambridge) (STV 1.0 0.9091)) +(: cnet_partof_51895616b4 (PartOf harvest farming) (STV 1.0 0.9091)) +(: cnet_partof_37dc103430 (PartOf hashish indian_hemp) (STV 1.0 0.9091)) +(: cnet_partof_d8d53a49a0 (PartOf hasting norman_conquest) (STV 1.0 0.9091)) +(: cnet_partof_8cf9158611 (PartOf hasting east_sussex) (STV 1.0 0.9091)) +(: cnet_partof_736101bd5e (PartOf hatband hat) (STV 1.0 0.9091)) +(: cnet_partof_0e1661099b (PartOf hatch hatchway) (STV 1.0 0.9091)) +(: cnet_partof_b65d5448e4 (PartOf hattera_island north_carolina) (STV 1.0 0.9091)) +(: cnet_partof_f750b9c442 (PartOf hattiesburg mississippi) (STV 1.0 0.9091)) +(: cnet_partof_3fcd488b7b (PartOf haunch quadruped) (STV 1.0 0.9091)) +(: cnet_partof_70703a1761 (PartOf haunch torso) (STV 1.0 0.9091)) +(: cnet_partof_985b4ece23 (PartOf haute_normandie normandie) (STV 1.0 0.9091)) +(: cnet_partof_b75c0570bc (PartOf havana cuba) (STV 1.0 0.9091)) +(: cnet_partof_a170570b1f (PartOf hawaii hawaiian_island) (STV 1.0 0.9091)) +(: cnet_partof_022a2f92b1 (PartOf hawaii united_state) (STV 1.0 0.9091)) +(: cnet_partof_1c56685e0b (PartOf hawaii_volcanoe_national_park hawaii) (STV 1.0 0.9091)) +(: cnet_partof_307da3c71c (PartOf hawaiian_island polynesia) (STV 1.0 0.9091)) +(: cnet_partof_e0bcc89201 (PartOf hayloft barn) (STV 1.0 0.9091)) +(: cnet_partof_aa35564681 (PartOf hay kansa) (STV 1.0 0.9091)) +(: cnet_partof_7ea7f82a89 (PartOf hazard golf_course) (STV 1.0 0.9091)) +(: cnet_partof_700b0044b8 (PartOf hazelnut hazelnut) (STV 1.0 0.9091)) +(: cnet_partof_ec4a222ea5 (PartOf head animal) (STV 1.0 0.9454)) +(: cnet_partof_fa70f15440 (PartOf head people) (STV 1.0 0.9091)) +(: cnet_partof_c0ea92ea76 (PartOf head bolt) (STV 1.0 0.9091)) +(: cnet_partof_5d580f1ae1 (PartOf head coin) (STV 1.0 0.9091)) +(: cnet_partof_0b0ec71259 (PartOf head hammer) (STV 1.0 0.9091)) +(: cnet_partof_8165fae747 (PartOf head nail) (STV 1.0 0.9091)) +(: cnet_partof_8e316fe06a (PartOf head pin) (STV 1.0 0.9091)) +(: cnet_partof_be7ba68213 (PartOf head ram) (STV 1.0 0.9091)) +(: cnet_partof_ed5628c9be (PartOf head screw) (STV 1.0 0.9091)) +(: cnet_partof_a87cfe085c (PartOf head body) (STV 1.0 0.9091)) +(: cnet_partof_fb7d336cb1 (PartOf head skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_partof_352536459d (PartOf head abscess) (STV 1.0 0.9091)) +(: cnet_partof_60d4d902bf (PartOf headboard bedstead) (STV 1.0 0.9091)) +(: cnet_partof_b14db67fa7 (PartOf header wall) (STV 1.0 0.9091)) +(: cnet_partof_6c3975d871 (PartOf headgear harness) (STV 1.0 0.9091)) +(: cnet_partof_41bc66212c (PartOf headlight electrical_system) (STV 1.0 0.9091)) +(: cnet_partof_eca6023523 (PartOf headline newspaper) (STV 1.0 0.9091)) +(: cnet_partof_9472a4f2b4 (PartOf headquarter_staff headquarter) (STV 1.0 0.9091)) +(: cnet_partof_9f34a4f52f (PartOf headrest car_seat) (STV 1.0 0.9091)) +(: cnet_partof_e217aab2ab (PartOf headshot soccer) (STV 1.0 0.9091)) +(: cnet_partof_63c69d62a0 (PartOf headstall bridle) (STV 1.0 0.9091)) +(: cnet_partof_6d4bbfb357 (PartOf headword lexical_entry) (STV 1.0 0.9091)) +(: cnet_partof_ac9c785f6c (PartOf headword phrase) (STV 1.0 0.9091)) +(: cnet_partof_fd1cec94dd (PartOf heart body) (STV 1.0 0.9454)) +(: cnet_partof_bc8adf1693 (PartOf heart circulatory_system) (STV 1.0 0.9091)) +(: cnet_partof_c4c50ce064 (PartOf heart human_body) (STV 1.0 0.9454)) +(: cnet_partof_846843b55f (PartOf heart_valve heart) (STV 1.0 0.9091)) +(: cnet_partof_c550369df4 (PartOf hearth fireplace) (STV 1.0 0.9091)) +(: cnet_partof_c4f0dad0cf (PartOf hearthstone fireplace) (STV 1.0 0.9091)) +(: cnet_partof_1ba048120c (PartOf heat_shield spacecraft) (STV 1.0 0.9091)) +(: cnet_partof_8c4981e575 (PartOf heating_element electric_heater) (STV 1.0 0.9091)) +(: cnet_partof_988b1b9e46 (PartOf heating_element electric_range) (STV 1.0 0.9091)) +(: cnet_partof_ef33825e09 (PartOf heating_element gas_range) (STV 1.0 0.9091)) +(: cnet_partof_a94e37ce9a (PartOf heating_system building) (STV 1.0 0.9091)) +(: cnet_partof_c37d0ea780 (PartOf heaviside_layer ionosphere) (STV 1.0 0.9091)) +(: cnet_partof_42e76b3ebd (PartOf hebei china) (STV 1.0 0.9091)) +(: cnet_partof_57b88e49f2 (PartOf hebride scotland) (STV 1.0 0.9091)) +(: cnet_partof_5e0a790042 (PartOf hectogram kilogram) (STV 1.0 0.9091)) +(: cnet_partof_4b2d5f5065 (PartOf hectoliter kiloliter) (STV 1.0 0.9091)) +(: cnet_partof_9615b64c00 (PartOf hectometer kilometer) (STV 1.0 0.9091)) +(: cnet_partof_d6a0f8c935 (PartOf heel boot) (STV 1.0 0.9091)) +(: cnet_partof_f3ffe64b01 (PartOf heel shoe) (STV 1.0 0.9091)) +(: cnet_partof_e9b66772d3 (PartOf heel foot) (STV 1.0 0.9091)) +(: cnet_partof_fc47af3243 (PartOf heel loaf_of_bread) (STV 1.0 0.9091)) +(: cnet_partof_c67accfa6c (PartOf heel golf_club_head) (STV 1.0 0.9091)) +(: cnet_partof_1101f956ab (PartOf heelbone foot) (STV 1.0 0.9091)) +(: cnet_partof_2708bc975e (PartOf heirloom inheritance) (STV 1.0 0.9091)) +(: cnet_partof_8a7810572c (PartOf hejaz arabian_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_bfbfcf05b8 (PartOf hejaz saudi_arabia) (STV 1.0 0.9091)) +(: cnet_partof_eb20cc23e0 (PartOf helena montana) (STV 1.0 0.9091)) +(: cnet_partof_cc1647439e (PartOf heliosphere milky_way) (STV 1.0 0.9091)) +(: cnet_partof_9e515e0b09 (PartOf hell_s_kitchen manhattan) (STV 1.0 0.9091)) +(: cnet_partof_e2943010f2 (PartOf helm motorboat) (STV 1.0 0.9091)) +(: cnet_partof_1be878f12d (PartOf helm sailing_vessel) (STV 1.0 0.9091)) +(: cnet_partof_90c6d489b0 (PartOf helm ship) (STV 1.0 0.9091)) +(: cnet_partof_8ef2d36dd2 (PartOf helm tugboat) (STV 1.0 0.9091)) +(: cnet_partof_719ca9f42b (PartOf helmet body_armor) (STV 1.0 0.9091)) +(: cnet_partof_311617f2e7 (PartOf helping meal) (STV 1.0 0.9091)) +(: cnet_partof_588b0a2eda (PartOf helsinki finland) (STV 1.0 0.9091)) +(: cnet_partof_66099f42c4 (PartOf hem fabric) (STV 1.0 0.9091)) +(: cnet_partof_2ec5558b2c (PartOf hemal_arch centrum) (STV 1.0 0.9091)) +(: cnet_partof_438750bf2d (PartOf hemisphere cerebrum) (STV 1.0 0.9091)) +(: cnet_partof_3872a91659 (PartOf hemisphere earth) (STV 1.0 0.9091)) +(: cnet_partof_a8dff1cf7a (PartOf hemline coat) (STV 1.0 0.9091)) +(: cnet_partof_eda8834153 (PartOf hemline dress) (STV 1.0 0.9091)) +(: cnet_partof_e6059c9fe4 (PartOf hemline skirt) (STV 1.0 0.9091)) +(: cnet_partof_90cd8b9c23 (PartOf hemostasis operation) (STV 1.0 0.9091)) +(: cnet_partof_c3c0d7e447 (PartOf hepatic_artery liver) (STV 1.0 0.9091)) +(: cnet_partof_79217648c0 (PartOf hepatic_duct liver) (STV 1.0 0.9091)) +(: cnet_partof_5e191ef754 (PartOf hepatic_lobe liver) (STV 1.0 0.9091)) +(: cnet_partof_8c124b101e (PartOf hepatic_vein liver) (STV 1.0 0.9091)) +(: cnet_partof_a9cd48c944 (PartOf herat afghanistan) (STV 1.0 0.9091)) +(: cnet_partof_75cb9122fb (PartOf herculaneum italy) (STV 1.0 0.9091)) +(: cnet_partof_5b73afed39 (PartOf hermosillo mexico) (STV 1.0 0.9091)) +(: cnet_partof_d1c2bde3d8 (PartOf herring herring) (STV 1.0 0.9091)) +(: cnet_partof_5cea69cf94 (PartOf hertfordshire england) (STV 1.0 0.9091)) +(: cnet_partof_280cc64e75 (PartOf hertz kilohertz) (STV 1.0 0.9091)) +(: cnet_partof_ab374cbdf1 (PartOf heshvan jewish_calendar) (STV 1.0 0.9091)) +(: cnet_partof_ca612c92a4 (PartOf hibbing minnesota) (STV 1.0 0.9091)) +(: cnet_partof_df11b4da2b (PartOf hickory_nut big_shellbark) (STV 1.0 0.9091)) +(: cnet_partof_f4c1505919 (PartOf hickory_nut shagbark) (STV 1.0 0.9091)) +(: cnet_partof_25d9878b65 (PartOf hierarchy administration) (STV 1.0 0.9091)) +(: cnet_partof_1d69c0cc8a (PartOf hierarchy system) (STV 1.0 0.9091)) +(: cnet_partof_260e141f4b (PartOf high anticyclone) (STV 1.0 0.9091)) +(: cnet_partof_38ef6588c4 (PartOf high_frequency electromagnetic_spectrum) (STV 1.0 0.9091)) +(: cnet_partof_a43b19f087 (PartOf high_gear car) (STV 1.0 0.9091)) +(: cnet_partof_a008fac20b (PartOf high_point experience) (STV 1.0 0.9091)) +(: cnet_partof_3919894ff2 (PartOf high_renaissance renaissance) (STV 1.0 0.9091)) +(: cnet_partof_2a6b08b73c (PartOf high_sea main) (STV 1.0 0.9091)) +(: cnet_partof_24aa5d67c7 (PartOf high_table dining_hall) (STV 1.0 0.9091)) +(: cnet_partof_add0b9b2ea (PartOf highland scotland) (STV 1.0 0.9091)) +(: cnet_partof_5f4557c55c (PartOf hillside hill) (STV 1.0 0.9091)) +(: cnet_partof_3b30f91c7e (PartOf hilo hawaii) (STV 1.0 0.9091)) +(: cnet_partof_389a0409b2 (PartOf hilt dagger) (STV 1.0 0.9091)) +(: cnet_partof_c2658ea123 (PartOf hilt sword) (STV 1.0 0.9091)) +(: cnet_partof_25314eb4de (PartOf himalaya india) (STV 1.0 0.9091)) +(: cnet_partof_cfd1b61c7d (PartOf himalaya nepal) (STV 1.0 0.9091)) +(: cnet_partof_ee227ed335 (PartOf himalaya tibet) (STV 1.0 0.9091)) +(: cnet_partof_da4ab3dd2a (PartOf hind_leg quadruped) (STV 1.0 0.9091)) +(: cnet_partof_98c76af09f (PartOf hindbrain brain) (STV 1.0 0.9091)) +(: cnet_partof_0de492530b (PartOf hindfoot quadruped) (STV 1.0 0.9091)) +(: cnet_partof_62dee275a4 (PartOf hindgut intestine) (STV 1.0 0.9091)) +(: cnet_partof_a1f3f91746 (PartOf hindquarter bird) (STV 1.0 0.9091)) +(: cnet_partof_69b1fea04c (PartOf hindquarter quadruped) (STV 1.0 0.9091)) +(: cnet_partof_d09a7ee874 (PartOf hindu_calendar_month hindu_calendar) (STV 1.0 0.9091)) +(: cnet_partof_95aec285b9 (PartOf hindu_kush afghanistan) (STV 1.0 0.9091)) +(: cnet_partof_3dd8024d02 (PartOf hindu_kush pakistan) (STV 1.0 0.9091)) +(: cnet_partof_f4c6517f73 (PartOf hindustan india) (STV 1.0 0.9091)) +(: cnet_partof_74018cfad8 (PartOf hinge bi_fold_door) (STV 1.0 0.9091)) +(: cnet_partof_93802b7db9 (PartOf hinge car_door) (STV 1.0 0.9091)) +(: cnet_partof_ed9be19caf (PartOf hinge exterior_door) (STV 1.0 0.9091)) +(: cnet_partof_92fe928d4c (PartOf hinge french_door) (STV 1.0 0.9091)) +(: cnet_partof_60acc0996d (PartOf hinge gate) (STV 1.0 0.9091)) +(: cnet_partof_7426edbaa7 (PartOf hinge swing_door) (STV 1.0 0.9091)) +(: cnet_partof_47d9bb3c9f (PartOf hip hip_roof) (STV 1.0 0.9091)) +(: cnet_partof_6b00f3da6c (PartOf hip pelvis) (STV 1.0 0.9091)) +(: cnet_partof_656bf90bea (PartOf hip thigh) (STV 1.0 0.9091)) +(: cnet_partof_201da2dd6a (PartOf hip torso) (STV 1.0 0.9091)) +(: cnet_partof_7bd0c17811 (PartOf hip rose) (STV 1.0 0.9091)) +(: cnet_partof_6dfa5bb12d (PartOf hip_pocket pair_of_trouser) (STV 1.0 0.9091)) +(: cnet_partof_b7862c6e7d (PartOf hip_socket joint) (STV 1.0 0.9091)) +(: cnet_partof_5370b09252 (PartOf hipbone pelvis) (STV 1.0 0.9091)) +(: cnet_partof_d3eafe2348 (PartOf hipline garment) (STV 1.0 0.9091)) +(: cnet_partof_b48d3dfece (PartOf hippo algeria) (STV 1.0 0.9091)) +(: cnet_partof_50735917ea (PartOf hippocampus limbic_system) (STV 1.0 0.9091)) +(: cnet_partof_d277253f7c (PartOf hiroshima honshu) (STV 1.0 0.9091)) +(: cnet_partof_73cc18ff38 (PartOf hispaniola greater_antille) (STV 1.0 0.9091)) +(: cnet_partof_5b4fe61e21 (PartOf histiocyte connective_tissue) (STV 1.0 0.9091)) +(: cnet_partof_cd7af38236 (PartOf ho_chi_minh_city vietnam) (STV 1.0 0.9091)) +(: cnet_partof_3c0a3d820f (PartOf hobart tasmania) (STV 1.0 0.9091)) +(: cnet_partof_2c67d7af44 (PartOf hock hind_leg) (STV 1.0 0.9091)) +(: cnet_partof_46a6c12562 (PartOf hock ungulate) (STV 1.0 0.9091)) +(: cnet_partof_4c9923f158 (PartOf hodeida yemen) (STV 1.0 0.9091)) +(: cnet_partof_799a54311a (PartOf hoe_handle hoe) (STV 1.0 0.9091)) +(: cnet_partof_818bcdea53 (PartOf hog_plum chickasaw_plum) (STV 1.0 0.9091)) +(: cnet_partof_521a8623d3 (PartOf hog_plum hog_plum) (STV 1.0 0.9091)) +(: cnet_partof_279e1fbd70 (PartOf hohenlinden napoleonic_war) (STV 1.0 0.9091)) +(: cnet_partof_5bad0b7ab2 (PartOf hohenlinden bavaria) (STV 1.0 0.9091)) +(: cnet_partof_bc120c383e (PartOf hohhot inner_mongolia) (STV 1.0 0.9091)) +(: cnet_partof_d8c5e50408 (PartOf hokkaido japan) (STV 1.0 0.9091)) +(: cnet_partof_b87246feac (PartOf hole golf_course) (STV 1.0 0.9091)) +(: cnet_partof_0f983efd49 (PartOf holocene quaternary) (STV 1.0 0.9091)) +(: cnet_partof_d82dda8dc0 (PartOf holy_of_holy tabernacle) (STV 1.0 0.9091)) +(: cnet_partof_c0d6692938 (PartOf holy_roman_empire europe) (STV 1.0 0.9091)) +(: cnet_partof_0fae1b2b72 (PartOf holy_see rome) (STV 1.0 0.9091)) +(: cnet_partof_e467f682f6 (PartOf holy_sepulcher jerusalem) (STV 1.0 0.9091)) +(: cnet_partof_9e04303871 (PartOf holy_week church_calendar) (STV 1.0 0.9091)) +(: cnet_partof_9f84faee0c (PartOf homeboy youth_gang) (STV 1.0 0.9091)) +(: cnet_partof_23a4c5bf14 (PartOf homerun_wall baseball_stadium) (STV 1.0 0.9091)) +(: cnet_partof_17bf6fe685 (PartOf homework education) (STV 1.0 0.9091)) +(: cnet_partof_5178c3e678 (PartOf homing_device guided_missile) (STV 1.0 0.9091)) +(: cnet_partof_c25ab722b0 (PartOf homyel belarus) (STV 1.0 0.9091)) +(: cnet_partof_ba716aab6e (PartOf hondura central_america) (STV 1.0 0.9091)) +(: cnet_partof_d82948c343 (PartOf honesty integrity) (STV 1.0 0.9091)) +(: cnet_partof_89f35a3cb8 (PartOf honeycomb beehive) (STV 1.0 0.9091)) +(: cnet_partof_9d434c1002 (PartOf hong_kong china) (STV 1.0 0.9091)) +(: cnet_partof_0cb38efa10 (PartOf honiara solomon_island) (STV 1.0 0.9091)) +(: cnet_partof_7b93a2c4e2 (PartOf honolulu oahu) (STV 1.0 0.9091)) +(: cnet_partof_f3853b6f2c (PartOf honshu japan) (STV 1.0 0.9091)) +(: cnet_partof_1ead307ff3 (PartOf hood airplane) (STV 1.0 0.9091)) +(: cnet_partof_0e63524178 (PartOf hood car) (STV 1.0 0.9091)) +(: cnet_partof_6e8e11444c (PartOf hood plant) (STV 1.0 0.9091)) +(: cnet_partof_ec1538f95c (PartOf hood_ornament hood) (STV 1.0 0.9091)) +(: cnet_partof_fef52299a6 (PartOf hoof hoof) (STV 1.0 0.9091)) +(: cnet_partof_a61bd2391a (PartOf hoof ungulate) (STV 1.0 0.9091)) +(: cnet_partof_187199d738 (PartOf hook coat_hanger) (STV 1.0 0.9091)) +(: cnet_partof_548f64d7a7 (PartOf hook grapnel) (STV 1.0 0.9091)) +(: cnet_partof_8d7a65e5b5 (PartOf hook_of_holland netherland) (STV 1.0 0.9091)) +(: cnet_partof_febc5ae12d (PartOf hoop barrel) (STV 1.0 0.9091)) +(: cnet_partof_28848df2e0 (PartOf hoop hoopskirt) (STV 1.0 0.9091)) +(: cnet_partof_f4f103907b (PartOf hoop wagon_wheel) (STV 1.0 0.9091)) +(: cnet_partof_8c5e42ed87 (PartOf hoover_dam nevada) (STV 1.0 0.9091)) +(: cnet_partof_e177f621ff (PartOf horizon perspective) (STV 1.0 0.9091)) +(: cnet_partof_de380cc57b (PartOf horizon profile) (STV 1.0 0.9091)) +(: cnet_partof_585a909bd9 (PartOf horizontal_stabilizer horizontal_tail) (STV 1.0 0.9091)) +(: cnet_partof_8a645742cc (PartOf horizontal_tail tail) (STV 1.0 0.9091)) +(: cnet_partof_e76e5908f9 (PartOf horn car) (STV 1.0 0.9339)) +(: cnet_partof_e8e61bcf0e (PartOf horn bull) (STV 1.0 0.9091)) +(: cnet_partof_4766d7b589 (PartOf horn goat) (STV 1.0 0.9091)) +(: cnet_partof_c1a5cd035c (PartOf horn ram) (STV 1.0 0.9091)) +(: cnet_partof_b4199b30c3 (PartOf horn stock_saddle) (STV 1.0 0.9091)) +(: cnet_partof_c8118e2150 (PartOf horn_button automobile_horn) (STV 1.0 0.9091)) +(: cnet_partof_328a4841b4 (PartOf horse_s_foot horse) (STV 1.0 0.9091)) +(: cnet_partof_d220a7c511 (PartOf horseback horse) (STV 1.0 0.9091)) +(: cnet_partof_1d14652297 (PartOf horsemeat horse) (STV 1.0 0.9091)) +(: cnet_partof_3155cad7a5 (PartOf horseradish horseradish) (STV 1.0 0.9091)) +(: cnet_partof_f9d7f1313b (PartOf hosea old_testament) (STV 1.0 0.9091)) +(: cnet_partof_f54102c779 (PartOf hosea prophet) (STV 1.0 0.9091)) +(: cnet_partof_66144402f1 (PartOf hospital_room hospital) (STV 1.0 0.9091)) +(: cnet_partof_2b31e76c5c (PartOf hot_spring arkansa) (STV 1.0 0.9091)) +(: cnet_partof_a405dd8a8d (PartOf hot_spring_national_park arkansa) (STV 1.0 0.9091)) +(: cnet_partof_7f5d4a9575 (PartOf hotel_room hotel) (STV 1.0 0.9091)) +(: cnet_partof_f86acedcf6 (PartOf hottentot_bread elephant_s_foot) (STV 1.0 0.9091)) +(: cnet_partof_cfe5cf1447 (PartOf houghton michigan) (STV 1.0 0.9091)) +(: cnet_partof_410a7a8dad (PartOf hour day) (STV 1.0 0.9091)) +(: cnet_partof_df6b798ba9 (PartOf housatonic connecticut) (STV 1.0 0.9091)) +(: cnet_partof_ed49dbc631 (PartOf housatonic massachusett) (STV 1.0 0.9091)) +(: cnet_partof_30437c2f89 (PartOf hous_of_parliament westminster) (STV 1.0 0.9091)) +(: cnet_partof_a8f0f830a9 (PartOf housing_development residential_district) (STV 1.0 0.9091)) +(: cnet_partof_95350f4d8e (PartOf housing_estate residential_district) (STV 1.0 0.9091)) +(: cnet_partof_7e8a8274a6 (PartOf houston texa) (STV 1.0 0.9091)) +(: cnet_partof_73d2271afa (PartOf huainaputina peru) (STV 1.0 0.9091)) +(: cnet_partof_837e16e31c (PartOf huang_he china) (STV 1.0 0.9091)) +(: cnet_partof_c3bdf2e5ae (PartOf huascaran ande) (STV 1.0 0.9091)) +(: cnet_partof_6c538d92d7 (PartOf huascaran peru) (STV 1.0 0.9091)) +(: cnet_partof_3170b82b6c (PartOf hub car_wheel) (STV 1.0 0.9091)) +(: cnet_partof_b975e5cf9c (PartOf hub electric_fan) (STV 1.0 0.9091)) +(: cnet_partof_82ced5ec1d (PartOf hub propeller) (STV 1.0 0.9091)) +(: cnet_partof_ec9f3a8b45 (PartOf hubbard alaska) (STV 1.0 0.9091)) +(: cnet_partof_9db3c5e8a0 (PartOf hubbard coast_range) (STV 1.0 0.9091)) +(: cnet_partof_9432f0211c (PartOf hubbard_squash hubbard_squash) (STV 1.0 0.9091)) +(: cnet_partof_2962dd3d7b (PartOf hubcap car_wheel) (STV 1.0 0.9091)) +(: cnet_partof_53ee73890b (PartOf huckleberry black_huckleberry) (STV 1.0 0.9091)) +(: cnet_partof_3587cd5a8e (PartOf huddersfield west_yorkshire) (STV 1.0 0.9091)) +(: cnet_partof_906a111aea (PartOf hudson new_york) (STV 1.0 0.9091)) +(: cnet_partof_bdcb70df05 (PartOf hudson_bay canada) (STV 1.0 0.9091)) +(: cnet_partof_626621079c (PartOf huitre oyster) (STV 1.0 0.9091)) +(: cnet_partof_23e0af3660 (PartOf hull vessel) (STV 1.0 0.9091)) +(: cnet_partof_89f5b8f092 (PartOf hull england) (STV 1.0 0.9091)) +(: cnet_partof_451b5e0f03 (PartOf human ecology) (STV 1.0 0.9091)) +(: cnet_partof_1315892596 (PartOf human_body homo) (STV 1.0 0.9091)) +(: cnet_partof_45f32b61dc (PartOf human_body person) (STV 1.0 0.9091)) +(: cnet_partof_86b12e09c4 (PartOf human_head homo) (STV 1.0 0.9091)) +(: cnet_partof_fdfdeb3cb7 (PartOf humber england) (STV 1.0 0.9091)) +(: cnet_partof_caa69013ec (PartOf humber_bridge hull) (STV 1.0 0.9091)) +(: cnet_partof_bb7c1b3fd6 (PartOf humerus arm) (STV 1.0 0.9091)) +(: cnet_partof_4da65f67d4 (PartOf hunan china) (STV 1.0 0.9091)) +(: cnet_partof_903aad91b0 (PartOf hundredweight long_ton) (STV 1.0 0.9091)) +(: cnet_partof_6785bc7650 (PartOf hundredweight quintal) (STV 1.0 0.9091)) +(: cnet_partof_143d041e42 (PartOf hundredweight short_ton) (STV 1.0 0.9091)) +(: cnet_partof_a89809058b (PartOf hungary europe) (STV 1.0 0.9091)) +(: cnet_partof_a180915c58 (PartOf hunter_point san_francisco) (STV 1.0 0.9091)) +(: cnet_partof_65009548f4 (PartOf huntington west_virginia) (STV 1.0 0.9091)) +(: cnet_partof_47779aed49 (PartOf huntsville alabama) (STV 1.0 0.9091)) +(: cnet_partof_b220e2216b (PartOf hurricane beaufort_scale) (STV 1.0 0.9091)) +(: cnet_partof_bb0d78c5d9 (PartOf hurricane_deck passenger_ship) (STV 1.0 0.9091)) +(: cnet_partof_074714dfb7 (PartOf hyderabad india) (STV 1.0 0.9091)) +(: cnet_partof_0b927dc270 (PartOf hyderabad pakistan) (STV 1.0 0.9091)) +(: cnet_partof_7d34cb4185 (PartOf hydrazine rocket_fuel) (STV 1.0 0.9091)) +(: cnet_partof_968688fbbf (PartOf hydrogen water) (STV 1.0 0.9454)) +(: cnet_partof_eb8976af63 (PartOf hydrogen_ion hydrogen_atom) (STV 1.0 0.9091)) +(: cnet_partof_86e5db647f (PartOf hydrosphere earth) (STV 1.0 0.9091)) +(: cnet_partof_9d5c6ff125 (PartOf hymen vagina) (STV 1.0 0.9091)) +(: cnet_partof_a9ceada118 (PartOf hymenium fungus) (STV 1.0 0.9091)) +(: cnet_partof_45f5a3bf61 (PartOf hyperactivity attention_deficit_disorder) (STV 1.0 0.9091)) +(: cnet_partof_1f296a5ee2 (PartOf hyperbilirubinemia jaundice) (STV 1.0 0.9091)) +(: cnet_partof_ffe86e0126 (PartOf hypercapnia asphyxia) (STV 1.0 0.9091)) +(: cnet_partof_28b2291491 (PartOf hyperpituitarism acromegaly) (STV 1.0 0.9091)) +(: cnet_partof_520044289c (PartOf hyperpituitarism giantism) (STV 1.0 0.9091)) +(: cnet_partof_5134da3945 (PartOf hypertext object_oriented_database) (STV 1.0 0.9091)) +(: cnet_partof_0f019e6565 (PartOf hypha mycelium) (STV 1.0 0.9091)) +(: cnet_partof_7f288ed15b (PartOf hypobasidium basidium) (STV 1.0 0.9091)) +(: cnet_partof_3dcef99de2 (PartOf hypochondrium abdomen) (STV 1.0 0.9091)) +(: cnet_partof_2b16d31716 (PartOf hypodermic_needle hypodermic_syringe) (STV 1.0 0.9091)) +(: cnet_partof_a92770cd64 (PartOf hypodermis body_covering) (STV 1.0 0.9091)) +(: cnet_partof_7546c74686 (PartOf hypoglycemia insulin_shock) (STV 1.0 0.9091)) +(: cnet_partof_210f4a9d0a (PartOf hypophyseal_stalk pituitary) (STV 1.0 0.9091)) +(: cnet_partof_57cb2cffd7 (PartOf hypopigmentation leukoderma) (STV 1.0 0.9091)) +(: cnet_partof_03509c20f2 (PartOf hypopigmentation vitiligo) (STV 1.0 0.9091)) +(: cnet_partof_db70bff455 (PartOf hypotenuse right_triangle) (STV 1.0 0.9091)) +(: cnet_partof_16abe46873 (PartOf hypothalamus diencephalon) (STV 1.0 0.9091)) +(: cnet_partof_afc1aecf2c (PartOf hypothesis theory) (STV 1.0 0.9091)) +(: cnet_partof_e252242c66 (PartOf hypoxia asphyxia) (STV 1.0 0.9091)) +(: cnet_partof_cf61406bc6 (PartOf hyssop hyssop) (STV 1.0 0.9091)) +(: cnet_partof_55e04c5109 (PartOf hysterotomy cesarean_delivery) (STV 1.0 0.9091)) +(: cnet_partof_91c3b0ef66 (PartOf i_chronicle hagiographa) (STV 1.0 0.9091)) +(: cnet_partof_5197030ff3 (PartOf i_chronicle old_testament) (STV 1.0 0.9091)) +(: cnet_partof_3e657a80b1 (PartOf i_chronicle paralipomenon) (STV 1.0 0.9091)) +(: cnet_partof_b451464c93 (PartOf i_esdra apocrypha) (STV 1.0 0.9091)) +(: cnet_partof_deb8703879 (PartOf i_king old_testament) (STV 1.0 0.9091)) +(: cnet_partof_7078f0e372 (PartOf i_king prophet) (STV 1.0 0.9091)) +(: cnet_partof_cc6dd0bd36 (PartOf i_maccabee apocrypha) (STV 1.0 0.9091)) +(: cnet_partof_d163e94f0b (PartOf i_samuel old_testament) (STV 1.0 0.9091)) +(: cnet_partof_a457807c6f (PartOf i_samuel prophet) (STV 1.0 0.9091)) +(: cnet_partof_d3ddcf8ff0 (PartOf ibadan nigeria) (STV 1.0 0.9091)) +(: cnet_partof_502b0d8973 (PartOf iberian_peninsula europe) (STV 1.0 0.9091)) +(: cnet_partof_7d2e2a37db (PartOf ice_age prehistory) (STV 1.0 0.9091)) +(: cnet_partof_8253327534 (PartOf ice_crystal precipitation) (STV 1.0 0.9091)) +(: cnet_partof_13e169a24e (PartOf ice_maker electric_refrigerator) (STV 1.0 0.9091)) +(: cnet_partof_85411c6aff (PartOf icefall glacier) (STV 1.0 0.9091)) +(: cnet_partof_d2c51981b1 (PartOf iceland atlantic) (STV 1.0 0.9091)) +(: cnet_partof_c307f7a35d (PartOf iceland europe) (STV 1.0 0.9091)) +(: cnet_partof_861dfabb78 (PartOf iceland iceland) (STV 1.0 0.9091)) +(: cnet_partof_4cb2387cec (PartOf icon graphical_user_interface) (STV 1.0 0.9091)) +(: cnet_partof_4576878d01 (PartOf id unconscious_mind) (STV 1.0 0.9091)) +(: cnet_partof_6e7fa48260 (PartOf idaho united_state) (STV 1.0 0.9091)) +(: cnet_partof_30e900a79b (PartOf idaho_fall idaho) (STV 1.0 0.9091)) +(: cnet_partof_7f75d99a93 (PartOf idiot_light control_panel) (STV 1.0 0.9091)) +(: cnet_partof_4d92db05bc (PartOf iditarod_trail alaska) (STV 1.0 0.9091)) +(: cnet_partof_0a3070b8b6 (PartOf ignition electrical_system) (STV 1.0 0.9091)) +(: cnet_partof_376aa09b16 (PartOf ignition_coil ignition) (STV 1.0 0.9091)) +(: cnet_partof_55f4fe2c7d (PartOf ignition_switch ignition) (STV 1.0 0.9091)) +(: cnet_partof_6885dede61 (PartOf iguazu argentina) (STV 1.0 0.9091)) +(: cnet_partof_fb632c4e23 (PartOf iguazu brazil) (STV 1.0 0.9091)) +(: cnet_partof_f04480a9df (PartOf ii_chronicle hagiographa) (STV 1.0 0.9091)) +(: cnet_partof_bc4dc21737 (PartOf ii_chronicle old_testament) (STV 1.0 0.9091)) +(: cnet_partof_c8fedce343 (PartOf ii_chronicle paralipomenon) (STV 1.0 0.9091)) +(: cnet_partof_9ab46cd803 (PartOf ii_esdra apocrypha) (STV 1.0 0.9091)) +(: cnet_partof_796c27848e (PartOf ii_king old_testament) (STV 1.0 0.9091)) +(: cnet_partof_c515b34201 (PartOf ii_king prophet) (STV 1.0 0.9091)) +(: cnet_partof_76f0721999 (PartOf ii_maccabee apocrypha) (STV 1.0 0.9091)) +(: cnet_partof_d56f898ed4 (PartOf ii_samuel old_testament) (STV 1.0 0.9091)) +(: cnet_partof_ed86217844 (PartOf ii_samuel prophet) (STV 1.0 0.9091)) +(: cnet_partof_294db83a69 (PartOf ijssel netherland) (STV 1.0 0.9091)) +(: cnet_partof_56ba5281d8 (PartOf ijsselmeer netherland) (STV 1.0 0.9091)) +(: cnet_partof_2042248ce5 (PartOf ilama ilama) (STV 1.0 0.9091)) +(: cnet_partof_7cd88101e0 (PartOf ile_de_france france) (STV 1.0 0.9091)) +(: cnet_partof_a1f10c2bb3 (PartOf ile_st_louis paris) (STV 1.0 0.9091)) +(: cnet_partof_34109e2382 (PartOf ileal_artery small_intestine) (STV 1.0 0.9091)) +(: cnet_partof_950bcc0cd1 (PartOf iliac_artery ilium) (STV 1.0 0.9091)) +(: cnet_partof_be664c94d8 (PartOf ilium pelvis) (STV 1.0 0.9091)) +(: cnet_partof_af590de894 (PartOf illampu ande) (STV 1.0 0.9091)) +(: cnet_partof_b21e477ec5 (PartOf illampu bolivia) (STV 1.0 0.9091)) +(: cnet_partof_7d486174ea (PartOf illimani ande) (STV 1.0 0.9091)) +(: cnet_partof_a034743118 (PartOf illimani bolivia) (STV 1.0 0.9091)) +(: cnet_partof_7145a26983 (PartOf illinois midwest) (STV 1.0 0.9091)) +(: cnet_partof_cb9f70fc14 (PartOf illinois united_state) (STV 1.0 0.9091)) +(: cnet_partof_a45246d1b4 (PartOf illinois_river illinois) (STV 1.0 0.9091)) +(: cnet_partof_2999f95f0c (PartOf imaginary_part complex_number) (STV 1.0 0.9091)) +(: cnet_partof_695f2d0788 (PartOf immigration_and_naturalization_service homeland_security) (STV 1.0 0.9091)) +(: cnet_partof_a0dd27a780 (PartOf impeller rotor) (STV 1.0 0.9091)) +(: cnet_partof_281d41002e (PartOf implosion stop_consonant) (STV 1.0 0.9091)) +(: cnet_partof_f59310db67 (PartOf impregnation plastination) (STV 1.0 0.9091)) +(: cnet_partof_b1e367a31b (PartOf inaugural_address inauguration) (STV 1.0 0.9091)) +(: cnet_partof_d9b46ea54c (PartOf inauguration_day january) (STV 1.0 0.9091)) +(: cnet_partof_895dd94742 (PartOf inch foot) (STV 1.0 0.9091)) +(: cnet_partof_8b166479d2 (PartOf inchon korean_war) (STV 1.0 0.9091)) +(: cnet_partof_76d962c471 (PartOf inchon south_korea) (STV 1.0 0.9091)) +(: cnet_partof_1db4ce95ed (PartOf incident episode) (STV 1.0 0.9091)) +(: cnet_partof_2412ef452c (PartOf incision operation) (STV 1.0 0.9091)) +(: cnet_partof_725cbc6dae (PartOf incubation infection) (STV 1.0 0.9091)) +(: cnet_partof_4598698a75 (PartOf incus middle_ear) (STV 1.0 0.9091)) +(: cnet_partof_29f983d24f (PartOf independence missouri) (STV 1.0 0.9091)) +(: cnet_partof_e4849229e6 (PartOf independence_day july) (STV 1.0 0.9091)) +(: cnet_partof_38edd8d2f5 (PartOf independence_hall philadelphia) (STV 1.0 0.9091)) +(: cnet_partof_153c1d7b5f (PartOf index back_matter) (STV 1.0 0.9091)) +(: cnet_partof_069e8f951a (PartOf india asia) (STV 1.0 0.9091)) +(: cnet_partof_70d0141bcc (PartOf indian_summer fall) (STV 1.0 0.9091)) +(: cnet_partof_8a30c1a5e6 (PartOf indiana corn_belt) (STV 1.0 0.9091)) +(: cnet_partof_2974f032a9 (PartOf indiana midwest) (STV 1.0 0.9091)) +(: cnet_partof_ed134bf621 (PartOf indiana united_state) (STV 1.0 0.9091)) +(: cnet_partof_5ccef316ad (PartOf indianapolis indiana) (STV 1.0 0.9091)) +(: cnet_partof_a5e6396e4d (PartOf indigirka siberia) (STV 1.0 0.9091)) +(: cnet_partof_ccf40c9b56 (PartOf indochina southeast_asia) (STV 1.0 0.9091)) +(: cnet_partof_00fcd83112 (PartOf indonesia austronesia) (STV 1.0 0.9091)) +(: cnet_partof_b7ac8f2832 (PartOf indonesia southeast_asia) (STV 1.0 0.9091)) +(: cnet_partof_fcfbf50c0e (PartOf indonesian_borneo borneo) (STV 1.0 0.9091)) +(: cnet_partof_893725b0eb (PartOf indonesian_borneo indonesia) (STV 1.0 0.9091)) +(: cnet_partof_383a6a8e8e (PartOf induction_coil transformer) (STV 1.0 0.9091)) +(: cnet_partof_5a7daf2ca6 (PartOf indus pakistan) (STV 1.0 0.9091)) +(: cnet_partof_8608197803 (PartOf indusium sorus) (STV 1.0 0.9091)) +(: cnet_partof_038ea72627 (PartOf inertial_guidance_system autopilot) (STV 1.0 0.9091)) +(: cnet_partof_1b53f92554 (PartOf inertial_guidance_system spacecraft) (STV 1.0 0.9091)) +(: cnet_partof_e3da29949c (PartOf inferior_colliculus midbrain) (STV 1.0 0.9091)) +(: cnet_partof_40768d8cc5 (PartOf inflammation inflammatory_disease) (STV 1.0 0.9091)) +(: cnet_partof_72f2982e93 (PartOf infrared infrared_spectrum) (STV 1.0 0.9091)) +(: cnet_partof_538b77e09b (PartOf infrared_spectrum electromagnetic_spectrum) (STV 1.0 0.9091)) +(: cnet_partof_0a6df822f9 (PartOf infrastructure system) (STV 1.0 0.9091)) +(: cnet_partof_af84f28e07 (PartOf infundibulum diencephalon) (STV 1.0 0.9091)) +(: cnet_partof_eefe93f1ea (PartOf ingleside san_francisco) (STV 1.0 0.9091)) +(: cnet_partof_df11eefedb (PartOf ingredient dish) (STV 1.0 0.9091)) +(: cnet_partof_e397366a82 (PartOf ingress eclipse) (STV 1.0 0.9091)) +(: cnet_partof_766dcc439c (PartOf inhalation breathing) (STV 1.0 0.9091)) +(: cnet_partof_eb7bd0d3f4 (PartOf inion occipital_bone) (STV 1.0 0.9091)) +(: cnet_partof_3ce4fc6450 (PartOf ink pen) (STV 1.0 0.9091)) +(: cnet_partof_f78c66bb76 (PartOf ink_cartridge electrostatic_printer) (STV 1.0 0.9091)) +(: cnet_partof_9bbf5149dc (PartOf ink_cartridge fountain_pen) (STV 1.0 0.9091)) +(: cnet_partof_af0b08098e (PartOf inland_passage alaska) (STV 1.0 0.9091)) +(: cnet_partof_e0a25a00a6 (PartOf inland_passage british_columbia) (STV 1.0 0.9091)) +(: cnet_partof_9568ed6117 (PartOf inland_passage washington) (STV 1.0 0.9091)) +(: cnet_partof_8d5fba573d (PartOf inland_sea pacific) (STV 1.0 0.9091)) +(: cnet_partof_ffd1f6fd09 (PartOf inlet lake) (STV 1.0 0.9091)) +(: cnet_partof_5c1df18950 (PartOf inlet sea) (STV 1.0 0.9091)) +(: cnet_partof_6591e3f6a1 (PartOf inlet_manifold gasoline_engine) (STV 1.0 0.9091)) +(: cnet_partof_052095330f (PartOf inner_city city) (STV 1.0 0.9091)) +(: cnet_partof_2b4744ad08 (PartOf inner_ear auditory_apparatus) (STV 1.0 0.9091)) +(: cnet_partof_cdf1234368 (PartOf inner_hebride hebride) (STV 1.0 0.9091)) +(: cnet_partof_b8ffc9fe32 (PartOf inner_mongolia china) (STV 1.0 0.9091)) +(: cnet_partof_84c137437f (PartOf inner_tube pneumatic_tire) (STV 1.0 0.9091)) +(: cnet_partof_e793729131 (PartOf inning playing_period) (STV 1.0 0.9091)) +(: cnet_partof_ecbff35e6c (PartOf inning cricket) (STV 1.0 0.9091)) +(: cnet_partof_7569848a4e (PartOf innsbruck austria) (STV 1.0 0.9091)) +(: cnet_partof_b6221b0a89 (PartOf input_routine input_program) (STV 1.0 0.9091)) +(: cnet_partof_8e81b959da (PartOf insemination sexual_intercourse) (STV 1.0 0.9091)) +(: cnet_partof_fc9fd738ae (PartOf inside_track racetrack) (STV 1.0 0.9091)) +(: cnet_partof_194c61ae7f (PartOf insole boot) (STV 1.0 0.9091)) +(: cnet_partof_3103d2b113 (PartOf insole shoe) (STV 1.0 0.9091)) +(: cnet_partof_4bfe39021a (PartOf inspiration problem_solving) (STV 1.0 0.9091)) +(: cnet_partof_9be6ef7bed (PartOf installment sery) (STV 1.0 0.9091)) +(: cnet_partof_cc2a1f684e (PartOf instep boot) (STV 1.0 0.9091)) +(: cnet_partof_8948501a37 (PartOf instep shoe) (STV 1.0 0.9091)) +(: cnet_partof_ac29fab659 (PartOf instep stocking) (STV 1.0 0.9091)) +(: cnet_partof_dd4eaf9b8b (PartOf instep foot) (STV 1.0 0.9091)) +(: cnet_partof_0aab270f30 (PartOf instruction program) (STV 1.0 0.9091)) +(: cnet_partof_02a8382e79 (PartOf instrumentality government_department) (STV 1.0 0.9091)) +(: cnet_partof_1ee2c5c8d7 (PartOf intake_manifold fuel_system) (STV 1.0 0.9091)) +(: cnet_partof_d6002466c7 (PartOf intake_valve cylinder) (STV 1.0 0.9091)) +(: cnet_partof_3ead5dc5c5 (PartOf integrated_circuit chip) (STV 1.0 0.9091)) +(: cnet_partof_06fc8ba024 (PartOf integrity character) (STV 1.0 0.9091)) +(: cnet_partof_58c4bf9ac9 (PartOf intensive_care_unit hospital) (STV 1.0 0.9091)) +(: cnet_partof_753c0ab11b (PartOf intercapitular_vein foot) (STV 1.0 0.9091)) +(: cnet_partof_bf1999b20f (PartOf intercapitular_vein hand) (STV 1.0 0.9091)) +(: cnet_partof_f1e33177e4 (PartOf interchange highway) (STV 1.0 0.9091)) +(: cnet_partof_c164946cb3 (PartOf intergalactic_space outer_space) (STV 1.0 0.9091)) +(: cnet_partof_08f1e05e71 (PartOf interior_door building) (STV 1.0 0.9091)) +(: cnet_partof_87e8778132 (PartOf interlaken switzerland) (STV 1.0 0.9091)) +(: cnet_partof_72692fc57a (PartOf intermaxillary_suture upper_jaw) (STV 1.0 0.9091)) +(: cnet_partof_e5e420f00d (PartOf internal_combustion_engine motor_vehicle) (STV 1.0 0.9091)) +(: cnet_partof_7bd0fb2255 (PartOf internal_combustion_engine motorboat) (STV 1.0 0.9091)) +(: cnet_partof_7ff64eaece (PartOf internal_revenue_service department_of_treasury) (STV 1.0 0.9091)) +(: cnet_partof_9803b8be64 (PartOf internasal_suture nose) (STV 1.0 0.9091)) +(: cnet_partof_4de638050d (PartOf internet modern_communication_system) (STV 1.0 0.9091)) +(: cnet_partof_47cf90c71a (PartOf internode stalk) (STV 1.0 0.9091)) +(: cnet_partof_68648f73a6 (PartOf interplanetary_dust interplanetary_medium) (STV 1.0 0.9091)) +(: cnet_partof_d4458d3d68 (PartOf interplanetary_gas interplanetary_medium) (STV 1.0 0.9091)) +(: cnet_partof_e8d7175327 (PartOf interplanetary_medium solar_system) (STV 1.0 0.9091)) +(: cnet_partof_092905c238 (PartOf interplanetary_space outer_space) (STV 1.0 0.9091)) +(: cnet_partof_3dbf9f7897 (PartOf intersection road) (STV 1.0 0.9091)) +(: cnet_partof_105aa9e4cd (PartOf interstellar_space outer_space) (STV 1.0 0.9091)) +(: cnet_partof_04ce76e8d7 (PartOf intervertebral_disc spinal_column) (STV 1.0 0.9091)) +(: cnet_partof_2ed314a4b8 (PartOf intestine human_body) (STV 1.0 0.9091)) +(: cnet_partof_31919379eb (PartOf intestine abdomen) (STV 1.0 0.9091)) +(: cnet_partof_7c39d44b1c (PartOf introduction address) (STV 1.0 0.9091)) +(: cnet_partof_8e6de60de5 (PartOf introduction narration) (STV 1.0 0.9091)) +(: cnet_partof_a8f5ec3d8f (PartOf inventory_item inventory) (STV 1.0 0.9091)) +(: cnet_partof_5dea2c05f6 (PartOf invocation service) (STV 1.0 0.9091)) +(: cnet_partof_cc67fcd129 (PartOf iodopsin cone) (STV 1.0 0.9091)) +(: cnet_partof_dcca131844 (PartOf ionia asia_minor) (STV 1.0 0.9091)) +(: cnet_partof_8baa7cc614 (PartOf ionian_sea mediterranean) (STV 1.0 0.9091)) +(: cnet_partof_b87890bc91 (PartOf ionosphere atmosphere) (STV 1.0 0.9091)) +(: cnet_partof_2b06a43668 (PartOf iowa corn_belt) (STV 1.0 0.9091)) +(: cnet_partof_d6f5fb7aa0 (PartOf iowa midwest) (STV 1.0 0.9091)) +(: cnet_partof_b5ebf1f7a7 (PartOf iowa united_state) (STV 1.0 0.9091)) +(: cnet_partof_3c84504359 (PartOf iran asia) (STV 1.0 0.9091)) +(: cnet_partof_8cb26a1786 (PartOf iran gulf_state) (STV 1.0 0.9091)) +(: cnet_partof_d01a6def65 (PartOf iran middle_east) (STV 1.0 0.9091)) +(: cnet_partof_ee2328d759 (PartOf iranian_dinar iranian_rial) (STV 1.0 0.9091)) +(: cnet_partof_ee9bfddeda (PartOf iraq asia) (STV 1.0 0.9091)) +(: cnet_partof_cc6fff882b (PartOf iraq gulf_state) (STV 1.0 0.9091)) +(: cnet_partof_d52e3ade70 (PartOf iraq middle_east) (STV 1.0 0.9091)) +(: cnet_partof_9e872b6662 (PartOf iraqi_kurdistan iraq) (STV 1.0 0.9091)) +(: cnet_partof_abadf44712 (PartOf iraqi_kurdistan kurdistan) (STV 1.0 0.9091)) +(: cnet_partof_c6c8c0e49f (PartOf ireland british_isle) (STV 1.0 0.9091)) +(: cnet_partof_406ccacaa2 (PartOf ireland europe) (STV 1.0 0.9091)) +(: cnet_partof_4c4e87fb51 (PartOf ireland ireland) (STV 1.0 0.9091)) +(: cnet_partof_83c2d8c8d5 (PartOf iris eye) (STV 1.0 0.9572)) +(: cnet_partof_ef0c79435c (PartOf irish_sea north_atlantic) (STV 1.0 0.9091)) +(: cnet_partof_ca0e0d7748 (PartOf iron_age prehistory) (STV 1.0 0.9091)) +(: cnet_partof_158ced7122 (PartOf irtish siberia) (STV 1.0 0.9091)) +(: cnet_partof_531904cd55 (PartOf isaiah old_testament) (STV 1.0 0.9091)) +(: cnet_partof_67feebe8e4 (PartOf isaiah prophet) (STV 1.0 0.9091)) +(: cnet_partof_dcba7358b1 (PartOf ischia campania) (STV 1.0 0.9091)) +(: cnet_partof_2c0b5ea545 (PartOf ischium hip) (STV 1.0 0.9091)) +(: cnet_partof_6f07e6630c (PartOf ischium pelvis) (STV 1.0 0.9091)) +(: cnet_partof_ddc21aa9aa (PartOf isere france) (STV 1.0 0.9091)) +(: cnet_partof_e20d6b076b (PartOf isfahan iran) (STV 1.0 0.9091)) +(: cnet_partof_661db6abcc (PartOf islamabad pakistan) (STV 1.0 0.9091)) +(: cnet_partof_756ea5a9b3 (PartOf islamic_calendar_month islamic_calendar) (STV 1.0 0.9091)) +(: cnet_partof_a2be0484cd (PartOf island_of_langerhan pancrea) (STV 1.0 0.9091)) +(: cnet_partof_c2e6097008 (PartOf islay inner_hebride) (STV 1.0 0.9091)) +(: cnet_partof_eae4d7469f (PartOf isle_of_skye inner_hebride) (STV 1.0 0.9091)) +(: cnet_partof_b06d6d8595 (PartOf isle_royal_national_park michigan) (STV 1.0 0.9091)) +(: cnet_partof_733fe197ca (PartOf isobar weather_map) (STV 1.0 0.9091)) +(: cnet_partof_7a40798f95 (PartOf isotherm weather_map) (STV 1.0 0.9091)) +(: cnet_partof_a9c5bdf487 (PartOf israel middle_east) (STV 1.0 0.9091)) +(: cnet_partof_70ff651bcb (PartOf istanbul turkey) (STV 1.0 0.9091)) +(: cnet_partof_a786016d35 (PartOf italian_peninsula italy) (STV 1.0 0.9091)) +(: cnet_partof_f3dcf85f1c (PartOf italian_renaissance renaissance) (STV 1.0 0.9091)) +(: cnet_partof_03c61afa9d (PartOf italy europe) (STV 1.0 0.9091)) +(: cnet_partof_19e36a78c4 (PartOf item list) (STV 1.0 0.9091)) +(: cnet_partof_a7380879d0 (PartOf ithaca greece) (STV 1.0 0.9091)) +(: cnet_partof_7f8663ad4a (PartOf ithaca new_york) (STV 1.0 0.9091)) +(: cnet_partof_5b4d5f38ae (PartOf ivory_coast africa) (STV 1.0 0.9091)) +(: cnet_partof_e64bb61490 (PartOf ivory_nut ivory_palm) (STV 1.0 0.9091)) +(: cnet_partof_69779525b8 (PartOf iwo world_war_ii) (STV 1.0 0.9091)) +(: cnet_partof_e94c8a83bb (PartOf iwo_jima japan) (STV 1.0 0.9091)) +(: cnet_partof_c0d7e5c56c (PartOf iyar jewish_calendar) (STV 1.0 0.9091)) +(: cnet_partof_87ea402d18 (PartOf izmir turkey) (STV 1.0 0.9091)) +(: cnet_partof_9de1674589 (PartOf jabalpur india) (STV 1.0 0.9091)) +(: cnet_partof_28e768f791 (PartOf jaboticaba jaboticaba) (STV 1.0 0.9091)) +(: cnet_partof_1793667aa3 (PartOf jack lawn_bowling) (STV 1.0 0.9091)) +(: cnet_partof_7b5e8edbbb (PartOf jacket potato) (STV 1.0 0.9091)) +(: cnet_partof_88a74c1d3a (PartOf jackfruit jackfruit) (STV 1.0 0.9091)) +(: cnet_partof_f3194dd6ee (PartOf jackson michigan) (STV 1.0 0.9091)) +(: cnet_partof_be12c7e0d6 (PartOf jackson mississippi) (STV 1.0 0.9091)) +(: cnet_partof_2bb510eb2d (PartOf jackson tennessee) (STV 1.0 0.9091)) +(: cnet_partof_4dd44be23c (PartOf jackson wyoming) (STV 1.0 0.9091)) +(: cnet_partof_0e3cd9e04b (PartOf jacksonville florida) (STV 1.0 0.9091)) +(: cnet_partof_bea21490f0 (PartOf jaffa tel_aviv) (STV 1.0 0.9091)) +(: cnet_partof_55b2b54ffa (PartOf jag garment) (STV 1.0 0.9091)) +(: cnet_partof_c707af6c21 (PartOf jakarta java) (STV 1.0 0.9091)) +(: cnet_partof_9950ce0243 (PartOf jalalabad afghanistan) (STV 1.0 0.9091)) +(: cnet_partof_0b72de4b92 (PartOf jamaica caribbean) (STV 1.0 0.9091)) +(: cnet_partof_6cb42ea069 (PartOf jamaica greater_antille) (STV 1.0 0.9091)) +(: cnet_partof_aaead918da (PartOf jamaica jamaica) (STV 1.0 0.9091)) +(: cnet_partof_e3e8a3f5b5 (PartOf jamb window_frame) (STV 1.0 0.9091)) +(: cnet_partof_13a6482609 (PartOf jame north_dakota) (STV 1.0 0.9091)) +(: cnet_partof_48ac6eaa2e (PartOf jame south_dakota) (STV 1.0 0.9091)) +(: cnet_partof_43d4304aa2 (PartOf jame virginia) (STV 1.0 0.9091)) +(: cnet_partof_b76adfc39a (PartOf jame_bay ontario) (STV 1.0 0.9091)) +(: cnet_partof_615e4fa0d3 (PartOf jame_bay quebec) (STV 1.0 0.9091)) +(: cnet_partof_261dc4a24e (PartOf jamestown virginia) (STV 1.0 0.9091)) +(: cnet_partof_fcca642c4f (PartOf january gregorian_calendar) (STV 1.0 0.9091)) +(: cnet_partof_9d1b7b0edd (PartOf japan asia) (STV 1.0 0.9091)) +(: cnet_partof_470e9698bb (PartOf japan pacific) (STV 1.0 0.9091)) +(: cnet_partof_a43a775cc4 (PartOf java indonesia) (STV 1.0 0.9091)) +(: cnet_partof_f8f45f6c54 (PartOf jaw bulldog_clip) (STV 1.0 0.9091)) +(: cnet_partof_5fb87ba158 (PartOf jaw chuck) (STV 1.0 0.9091)) +(: cnet_partof_92ed7cfff9 (PartOf jaw plier) (STV 1.0 0.9091)) +(: cnet_partof_4c18bd5d8d (PartOf jaw vise) (STV 1.0 0.9091)) +(: cnet_partof_ead45034fe (PartOf jaw wrench) (STV 1.0 0.9091)) +(: cnet_partof_a3a9780a50 (PartOf jaw face) (STV 1.0 0.9091)) +(: cnet_partof_4e2c2f6819 (PartOf jaw skull) (STV 1.0 0.9091)) +(: cnet_partof_aa4e4312b8 (PartOf jebel_musa morocco) (STV 1.0 0.9091)) +(: cnet_partof_4a4f838bab (PartOf jebel_musa pillar_of_hercule) (STV 1.0 0.9091)) +(: cnet_partof_d807f61dbc (PartOf jeddah saudi_arabia) (STV 1.0 0.9091)) +(: cnet_partof_d2641f707e (PartOf jefferson_city missouri) (STV 1.0 0.9091)) +(: cnet_partof_3b803e3ed4 (PartOf jefferson_davis_birthday june) (STV 1.0 0.9091)) +(: cnet_partof_07c336ffb6 (PartOf jejunal_artery small_intestine) (STV 1.0 0.9091)) +(: cnet_partof_56b393820d (PartOf jena napoleonic_war) (STV 1.0 0.9091)) +(: cnet_partof_35812fae47 (PartOf jeremiah old_testament) (STV 1.0 0.9091)) +(: cnet_partof_e38df49d5a (PartOf jeremiah prophet) (STV 1.0 0.9091)) +(: cnet_partof_380b48f7e2 (PartOf jerez spain) (STV 1.0 0.9091)) +(: cnet_partof_981508db1d (PartOf jericho west_bank) (STV 1.0 0.9091)) +(: cnet_partof_9552cd89f7 (PartOf jerk clean_and_jerk) (STV 1.0 0.9091)) +(: cnet_partof_3ebbb4350b (PartOf jersey_city new_jersey) (STV 1.0 0.9091)) +(: cnet_partof_adae3949bd (PartOf jerusalem israel) (STV 1.0 0.9091)) +(: cnet_partof_f5a6fffa3e (PartOf jerusalem_artichoke jerusalem_artichoke) (STV 1.0 0.9091)) +(: cnet_partof_cbdef2a761 (PartOf jesus christianity) (STV 1.0 0.9091)) +(: cnet_partof_aede886300 (PartOf jet_engine jet) (STV 1.0 0.9091)) +(: cnet_partof_75678e5d59 (PartOf jeth hindu_calendar) (STV 1.0 0.9091)) +(: cnet_partof_9791887454 (PartOf jewish_calendar_month jewish_calendar) (STV 1.0 0.9091)) +(: cnet_partof_acc48d47f8 (PartOf jiao yuan) (STV 1.0 0.9091)) +(: cnet_partof_1fc1147ac2 (PartOf jinja uganda) (STV 1.0 0.9091)) +(: cnet_partof_58a7b21378 (PartOf joao_pessoa brazil) (STV 1.0 0.9091)) +(: cnet_partof_5300259e63 (PartOf job hagiographa) (STV 1.0 0.9091)) +(: cnet_partof_c371628d44 (PartOf job old_testament) (STV 1.0 0.9091)) +(: cnet_partof_a96a9e8e6a (PartOf jodhpur riding_habit) (STV 1.0 0.9091)) +(: cnet_partof_5f3606ab2f (PartOf joel old_testament) (STV 1.0 0.9091)) +(: cnet_partof_55148542da (PartOf joel prophet) (STV 1.0 0.9091)) +(: cnet_partof_d59854f86e (PartOf johannesburg south_africa) (STV 1.0 0.9091)) +(: cnet_partof_32d05bfcd5 (PartOf john new_testament) (STV 1.0 0.9091)) +(: cnet_partof_9e6887019a (PartOf john_safran entertainment_world) (STV 1.0 0.9091)) +(: cnet_partof_6a615dbc54 (PartOf john_hopkin baltimore) (STV 1.0 0.9091)) +(: cnet_partof_fe5bf05b6e (PartOf johnson_city tennessee) (STV 1.0 0.9091)) +(: cnet_partof_0a632ac095 (PartOf johore malaysia) (STV 1.0 0.9091)) +(: cnet_partof_0a70e6fa5b (PartOf joint skeleton) (STV 1.0 0.9091)) +(: cnet_partof_9e1d1d1a72 (PartOf joint articulatory_system) (STV 1.0 0.9091)) +(: cnet_partof_5196b8aee8 (PartOf joint endoskeleton) (STV 1.0 0.9091)) +(: cnet_partof_2d7448adbf (PartOf jonah old_testament) (STV 1.0 0.9091)) +(: cnet_partof_46825afad4 (PartOf jonah prophet) (STV 1.0 0.9091)) +(: cnet_partof_cce72ce844 (PartOf jonesboro arkansa) (STV 1.0 0.9091)) +(: cnet_partof_7aab63c033 (PartOf jordan asia) (STV 1.0 0.9091)) +(: cnet_partof_93b84a9234 (PartOf jordan middle_east) (STV 1.0 0.9091)) +(: cnet_partof_a5bdb4b150 (PartOf jordan palestine) (STV 1.0 0.9091)) +(: cnet_partof_cdc04aba10 (PartOf joshua old_testament) (STV 1.0 0.9091)) +(: cnet_partof_56ea879ca2 (PartOf joshua prophet) (STV 1.0 0.9091)) +(: cnet_partof_9c2439514b (PartOf joust tournament) (STV 1.0 0.9091)) +(: cnet_partof_be1c242d63 (PartOf jowl face) (STV 1.0 0.9091)) +(: cnet_partof_bd636893ac (PartOf judah palestine) (STV 1.0 0.9091)) +(: cnet_partof_6de1cc0b0d (PartOf judaism jewry) (STV 1.0 0.9091)) +(: cnet_partof_1ec27753de (PartOf judea palestine) (STV 1.0 0.9091)) +(: cnet_partof_1c433c4dc1 (PartOf judge old_testament) (STV 1.0 0.9091)) +(: cnet_partof_849f4ef6fb (PartOf judge prophet) (STV 1.0 0.9091)) +(: cnet_partof_22300a4a65 (PartOf judiciary government) (STV 1.0 0.9091)) +(: cnet_partof_15bdb8d1ff (PartOf judith apocrypha) (STV 1.0 0.9091)) +(: cnet_partof_7abe037426 (PartOf jugale cheekbone) (STV 1.0 0.9091)) +(: cnet_partof_a2950022f2 (PartOf jugular_vein neck) (STV 1.0 0.9091)) +(: cnet_partof_5c7175434d (PartOf jujube jujube) (STV 1.0 0.9091)) +(: cnet_partof_049e55c6e2 (PartOf july gregorian_calendar) (STV 1.0 0.9091)) +(: cnet_partof_290d2632a2 (PartOf jumada_i islamic_calendar) (STV 1.0 0.9091)) +(: cnet_partof_70c81a21f5 (PartOf jumada_ii islamic_calendar) (STV 1.0 0.9091)) +(: cnet_partof_da849f4bdf (PartOf jumping_bean sebastiana) (STV 1.0 0.9091)) +(: cnet_partof_5e22d53793 (PartOf june gregorian_calendar) (STV 1.0 0.9091)) +(: cnet_partof_f25b7975e1 (PartOf juneau alaska) (STV 1.0 0.9091)) +(: cnet_partof_ee3d0e4acd (PartOf juniper_berry common_juniper) (STV 1.0 0.9091)) +(: cnet_partof_d8a70e589d (PartOf juniper_berry juniper) (STV 1.0 0.9091)) +(: cnet_partof_8d74780148 (PartOf jurassic mesozoic) (STV 1.0 0.9091)) +(: cnet_partof_a5a864466c (PartOf jury_box court) (STV 1.0 0.9091)) +(: cnet_partof_3466b64ca3 (PartOf jutland world_war_i) (STV 1.0 0.9091)) +(: cnet_partof_0ead8fcdee (PartOf juvenile_body juvenile) (STV 1.0 0.9091)) +(: cnet_partof_79fcaabf5a (PartOf k2 karakoram) (STV 1.0 0.9091)) +(: cnet_partof_9426db7f94 (PartOf kaaba mecca) (STV 1.0 0.9091)) +(: cnet_partof_6a6887cf93 (PartOf kabul afghanistan) (STV 1.0 0.9091)) +(: cnet_partof_3b6caffb49 (PartOf kahoolawe hawaiian_island) (STV 1.0 0.9091)) +(: cnet_partof_54e55b8af9 (PartOf kai_apple kei_apple) (STV 1.0 0.9091)) +(: cnet_partof_79668fae7c (PartOf kalahari botswana) (STV 1.0 0.9091)) +(: cnet_partof_73965f31aa (PartOf kalahari namibia) (STV 1.0 0.9091)) +(: cnet_partof_c7a0a290ff (PartOf kalahari south_africa) (STV 1.0 0.9091)) +(: cnet_partof_171de6ccbc (PartOf kaluga russia) (STV 1.0 0.9091)) +(: cnet_partof_10eec3bf6c (PartOf kamchatka_peninsula siberia) (STV 1.0 0.9091)) +(: cnet_partof_1610ad5a74 (PartOf kamet himalaya) (STV 1.0 0.9091)) +(: cnet_partof_d810564e57 (PartOf kamet india) (STV 1.0 0.9091)) +(: cnet_partof_9885ef1b90 (PartOf kammon_strait_bridge japan) (STV 1.0 0.9091)) +(: cnet_partof_aa648f0c20 (PartOf kampala buganda) (STV 1.0 0.9091)) +(: cnet_partof_4d96dcf1f1 (PartOf kananga congo) (STV 1.0 0.9091)) +(: cnet_partof_046dfe234b (PartOf kanara india) (STV 1.0 0.9091)) +(: cnet_partof_34e597a473 (PartOf kanawha west_virginia) (STV 1.0 0.9091)) +(: cnet_partof_9af3df15ae (PartOf kanchenjunga himalaya) (STV 1.0 0.9091)) +(: cnet_partof_60fed8ea9e (PartOf kanchenjunga nepal) (STV 1.0 0.9091)) +(: cnet_partof_de73fab7a9 (PartOf kanchenjunga tibet) (STV 1.0 0.9091)) +(: cnet_partof_598c932ee2 (PartOf kandahar afghanistan) (STV 1.0 0.9091)) +(: cnet_partof_24166d60a6 (PartOf kandy sri_lanka) (STV 1.0 0.9091)) +(: cnet_partof_fdca19909d (PartOf kansa united_state) (STV 1.0 0.9339)) +(: cnet_partof_36f8adbd02 (PartOf kansa midwest) (STV 1.0 0.9091)) +(: cnet_partof_1d9771aa6d (PartOf kansa kansa) (STV 1.0 0.9091)) +(: cnet_partof_8079047553 (PartOf kansa_city kansa) (STV 1.0 0.9091)) +(: cnet_partof_ac29cc3418 (PartOf kansa_city missouri) (STV 1.0 0.9091)) +(: cnet_partof_909dc21de0 (PartOf kara_sea arctic_ocean) (STV 1.0 0.9091)) +(: cnet_partof_9845555ed6 (PartOf karachi pakistan) (STV 1.0 0.9091)) +(: cnet_partof_c1e54bd8f1 (PartOf karakoram kashmir) (STV 1.0 0.9091)) +(: cnet_partof_8e1f024451 (PartOf karelia finland) (STV 1.0 0.9091)) +(: cnet_partof_011e6cad18 (PartOf karelia russia) (STV 1.0 0.9091)) +(: cnet_partof_bb8c47ecff (PartOf karnataka india) (STV 1.0 0.9091)) +(: cnet_partof_f7d978eee1 (PartOf kartik hindu_calendar) (STV 1.0 0.9091)) +(: cnet_partof_8a1afb23aa (PartOf karyokinesis meiosis) (STV 1.0 0.9091)) +(: cnet_partof_6a8ff88946 (PartOf karyokinesis mitosis) (STV 1.0 0.9091)) +(: cnet_partof_5d9b0e110f (PartOf kasai angola) (STV 1.0 0.9091)) +(: cnet_partof_30eff67cf4 (PartOf kasai congo) (STV 1.0 0.9091)) +(: cnet_partof_e07d4b1683 (PartOf kashmir india) (STV 1.0 0.9091)) +(: cnet_partof_6b29f09418 (PartOf kashmir pakistan) (STV 1.0 0.9091)) +(: cnet_partof_12e1b97424 (PartOf kathmandu nepal) (STV 1.0 0.9091)) +(: cnet_partof_24dc7afddd (PartOf katmai_national_park alaska) (STV 1.0 0.9091)) +(: cnet_partof_c5dbd9602f (PartOf katowice poland) (STV 1.0 0.9091)) +(: cnet_partof_0de9612868 (PartOf katsina nigeria) (STV 1.0 0.9091)) +(: cnet_partof_d77925da31 (PartOf kattegatt north_sea) (STV 1.0 0.9091)) +(: cnet_partof_3b02cd05d3 (PartOf kauai hawaiian_island) (STV 1.0 0.9091)) +(: cnet_partof_d6cd659d46 (PartOf kauna lithuania) (STV 1.0 0.9091)) +(: cnet_partof_b8273aa830 (PartOf kazakhstan asia) (STV 1.0 0.9091)) +(: cnet_partof_4aa8719e1f (PartOf kazan russia) (STV 1.0 0.9091)) +(: cnet_partof_1c1e6de799 (PartOf kb mb) (STV 1.0 0.9091)) +(: cnet_partof_99f951cf3e (PartOf kedah malaysia) (STV 1.0 0.9091)) +(: cnet_partof_e3aa93ef6d (PartOf keel hull) (STV 1.0 0.9091)) +(: cnet_partof_b4e914763d (PartOf keel carinate) (STV 1.0 0.9091)) +(: cnet_partof_7e45bc527b (PartOf keelson hull) (STV 1.0 0.9091)) +(: cnet_partof_f8d69a3f72 (PartOf keep castle) (STV 1.0 0.9091)) +(: cnet_partof_0dd0139931 (PartOf kelantan malaysia) (STV 1.0 0.9091)) +(: cnet_partof_0ce71527dd (PartOf kenaf kenaf) (STV 1.0 0.9091)) +(: cnet_partof_cd29208904 (PartOf kenai_fjord_national_park alaska) (STV 1.0 0.9091)) +(: cnet_partof_faa4c12bc1 (PartOf kennedy long_island) (STV 1.0 0.9091)) +(: cnet_partof_9a6d5cf040 (PartOf kennesaw_mountain american_civil_war) (STV 1.0 0.9091)) +(: cnet_partof_6c2f41f0fd (PartOf kennewick washington) (STV 1.0 0.9091)) +(: cnet_partof_0a7f29e8a9 (PartOf kent england) (STV 1.0 0.9091)) +(: cnet_partof_49a92857d4 (PartOf kentucky united_state) (STV 1.0 0.9091)) +(: cnet_partof_703c14870d (PartOf kenya africa) (STV 1.0 0.9091)) +(: cnet_partof_45aa7eb5e7 (PartOf kenya east_africa) (STV 1.0 0.9091)) +(: cnet_partof_3c849f6cb3 (PartOf kerbala iraq) (STV 1.0 0.9091)) +(: cnet_partof_1dd4365f95 (PartOf kernel operating_system) (STV 1.0 0.9524)) +(: cnet_partof_3568a2f0d5 (PartOf kernel seed) (STV 1.0 0.9091)) +(: cnet_partof_b323d0146d (PartOf ketembilla ketembilla) (STV 1.0 0.9091)) +(: cnet_partof_e920c38715 (PartOf ketoacidosis type_i_diabete) (STV 1.0 0.9091)) +(: cnet_partof_4900a767c4 (PartOf key action) (STV 1.0 0.9091)) +(: cnet_partof_52e5f1fa88 (PartOf key basketball_court) (STV 1.0 0.9091)) +(: cnet_partof_b8b000949c (PartOf key florida) (STV 1.0 0.9091)) +(: cnet_partof_c494665754 (PartOf key_west florida) (STV 1.0 0.9091)) +(: cnet_partof_6c501ac171 (PartOf key_word index) (STV 1.0 0.9091)) +(: cnet_partof_818ee91daa (PartOf keyboard computer) (STV 1.0 0.9804)) +(: cnet_partof_7adcd55948 (PartOf keyboard computer_system) (STV 1.0 0.9091)) +(: cnet_partof_a8def18c95 (PartOf keyboard piano) (STV 1.0 0.9091)) +(: cnet_partof_3729cf6fe8 (PartOf keyboard organ) (STV 1.0 0.9091)) +(: cnet_partof_cfaa1b2a16 (PartOf keyboard terminal) (STV 1.0 0.9091)) +(: cnet_partof_1200b93507 (PartOf keyboard typesetting_machine) (STV 1.0 0.9091)) +(: cnet_partof_94ee9a3ea4 (PartOf keyboard typewriter) (STV 1.0 0.9091)) +(: cnet_partof_14d7e2af1a (PartOf keyhole lock) (STV 1.0 0.9091)) +(: cnet_partof_7242b9dedf (PartOf keynote keynote_speech) (STV 1.0 0.9091)) +(: cnet_partof_b738b03897 (PartOf key piano) (STV 1.0 0.9091)) +(: cnet_partof_6a0222d64f (PartOf keystone arch) (STV 1.0 0.9091)) +(: cnet_partof_a4a88fda75 (PartOf khabarovsk khabarovsk) (STV 1.0 0.9091)) +(: cnet_partof_41581d0e04 (PartOf khabarovsk russia) (STV 1.0 0.9091)) +(: cnet_partof_876e23ff31 (PartOf khabarovsk siberia) (STV 1.0 0.9091)) +(: cnet_partof_9b53f9a0fd (PartOf kharkov ukraine) (STV 1.0 0.9091)) +(: cnet_partof_1acb482721 (PartOf khartoum sudan) (STV 1.0 0.9091)) +(: cnet_partof_0f62b75b65 (PartOf khoum ouguiya) (STV 1.0 0.9091)) +(: cnet_partof_c101dd8683 (PartOf khyber_pass afghanistan) (STV 1.0 0.9091)) +(: cnet_partof_4fee19b264 (PartOf khyber_pass hindu_kush) (STV 1.0 0.9091)) +(: cnet_partof_dd1b4fdd6d (PartOf khyber_pass pakistan) (STV 1.0 0.9091)) +(: cnet_partof_ea12a976b0 (PartOf kibibit mebibit) (STV 1.0 0.9091)) +(: cnet_partof_c387056f8b (PartOf kick_pleat skirt) (STV 1.0 0.9091)) +(: cnet_partof_e451a6b0aa (PartOf kick_starter motorcycle) (STV 1.0 0.9091)) +(: cnet_partof_ad5320f11d (PartOf kick_up handstand) (STV 1.0 0.9091)) +(: cnet_partof_6d714bf597 (PartOf kickstand bicycle) (STV 1.0 0.9091)) +(: cnet_partof_b9e64dc3ef (PartOf kickstand motorcycle) (STV 1.0 0.9091)) +(: cnet_partof_af992d054f (PartOf kidney human_body) (STV 1.0 0.9091)) +(: cnet_partof_deb055d659 (PartOf kidney of_human_body) (STV 1.0 0.9091)) +(: cnet_partof_dad2309ab6 (PartOf kidney urinary_tract) (STV 1.0 0.9091)) +(: cnet_partof_fc105f511d (PartOf kigali rwanda) (STV 1.0 0.9091)) +(: cnet_partof_b2324c4835 (PartOf kilimanjaro tanzania) (STV 1.0 0.9091)) +(: cnet_partof_19a2fb0064 (PartOf killer community) (STV 1.0 0.9091)) +(: cnet_partof_141c1800fc (PartOf kilobit megabit) (STV 1.0 0.9091)) +(: cnet_partof_119840183c (PartOf kilobyte megabyte) (STV 1.0 0.9091)) +(: cnet_partof_0b17bc242d (PartOf kilogram myriagram) (STV 1.0 0.9091)) +(: cnet_partof_0378b51409 (PartOf kilohertz megahertz) (STV 1.0 0.9091)) +(: cnet_partof_fd97f93e44 (PartOf kiloliter cubic_kilometer) (STV 1.0 0.9091)) +(: cnet_partof_88d72bac81 (PartOf kilometer myriameter) (STV 1.0 0.9091)) +(: cnet_partof_2a0be39b55 (PartOf kiloton megaton) (STV 1.0 0.9091)) +(: cnet_partof_2eaed7e2ea (PartOf kilowatt megawatt) (STV 1.0 0.9091)) +(: cnet_partof_6e2afabeb2 (PartOf kimberley south_africa) (STV 1.0 0.9091)) +(: cnet_partof_276a400f96 (PartOf kinescope television_receiver) (STV 1.0 0.9091)) +(: cnet_partof_68a7e273a2 (PartOf kingfish cero) (STV 1.0 0.9091)) +(: cnet_partof_3f2d33c715 (PartOf kingfish kingfish) (STV 1.0 0.9091)) +(: cnet_partof_fbc80af6db (PartOf king_canyon_national_park california) (STV 1.0 0.9091)) +(: cnet_partof_41c24d84e1 (PartOf kingston jamaica) (STV 1.0 0.9091)) +(: cnet_partof_a0e67e1c6d (PartOf kingston new_york) (STV 1.0 0.9091)) +(: cnet_partof_f937042f8b (PartOf kingston ontario) (STV 1.0 0.9091)) +(: cnet_partof_b243a191fc (PartOf kingstown saint_vincent) (STV 1.0 0.9091)) +(: cnet_partof_52a3b1967a (PartOf kinshasa congo) (STV 1.0 0.9091)) +(: cnet_partof_de6abbb96e (PartOf kiribati micronesia) (STV 1.0 0.9091)) +(: cnet_partof_6e1df13b7b (PartOf kirkuk iraq) (STV 1.0 0.9091)) +(: cnet_partof_8a50cde59a (PartOf kishinev moldova) (STV 1.0 0.9091)) +(: cnet_partof_1cacc4fcb9 (PartOf kislev jewish_calendar) (STV 1.0 0.9091)) +(: cnet_partof_b071163a9f (PartOf kissimmee_river florida) (STV 1.0 0.9091)) +(: cnet_partof_4f494fabd7 (PartOf kisumu kenya) (STV 1.0 0.9091)) +(: cnet_partof_a4e1cae23d (PartOf kitakyushu japan) (STV 1.0 0.9091)) +(: cnet_partof_7d2b5cd1a7 (PartOf kitakyushu kyushu) (STV 1.0 0.9091)) +(: cnet_partof_312f861862 (PartOf kitchen dwelling) (STV 1.0 0.9091)) +(: cnet_partof_b67dc3c18a (PartOf kitchenette apartment) (STV 1.0 0.9091)) +(: cnet_partof_4ccff3d806 (PartOf kite_tail kite) (STV 1.0 0.9091)) +(: cnet_partof_f8e86a992e (PartOf kivu congo) (STV 1.0 0.9091)) +(: cnet_partof_57583ee37f (PartOf kivu rwanda) (STV 1.0 0.9091)) +(: cnet_partof_98c956ce44 (PartOf kiwi chinese_gooseberry) (STV 1.0 0.9091)) +(: cnet_partof_cd3145f0ad (PartOf kizil_kum uzbekistan) (STV 1.0 0.9091)) +(: cnet_partof_75ea2f87b9 (PartOf klaipeda lithuania) (STV 1.0 0.9091)) +(: cnet_partof_ffcb278b36 (PartOf klamath california) (STV 1.0 0.9091)) +(: cnet_partof_849db22573 (PartOf klamath oregon) (STV 1.0 0.9091)) +(: cnet_partof_3a453a3018 (PartOf klamath_fall oregon) (STV 1.0 0.9091)) +(: cnet_partof_cc7b522488 (PartOf klondike yukon) (STV 1.0 0.9091)) +(: cnet_partof_50491f4516 (PartOf klyuchevskaya kamchatka_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_1434e72ad2 (PartOf knee leg) (STV 1.0 0.9091)) +(: cnet_partof_a7b57e1c5f (PartOf knee_piece body_armor) (STV 1.0 0.9091)) +(: cnet_partof_f9c43ba36d (PartOf knife_blade knife) (STV 1.0 0.9091)) +(: cnet_partof_648e383e22 (PartOf knife_edge blade) (STV 1.0 0.9091)) +(: cnet_partof_8012807b58 (PartOf knife_edge edge_tool) (STV 1.0 0.9091)) +(: cnet_partof_ca2410ea1c (PartOf knob hilt) (STV 1.0 0.9091)) +(: cnet_partof_3fb611cf37 (PartOf knock_knee leg) (STV 1.0 0.9091)) +(: cnet_partof_7bc84062d1 (PartOf knock_on rugby) (STV 1.0 0.9091)) +(: cnet_partof_83ccf4143b (PartOf knocker front_door) (STV 1.0 0.9091)) +(: cnet_partof_beaf27f632 (PartOf knot board) (STV 1.0 0.9091)) +(: cnet_partof_2649af09fc (PartOf knothole board) (STV 1.0 0.9091)) +(: cnet_partof_09b5f8957e (PartOf knoxville tennessee) (STV 1.0 0.9091)) +(: cnet_partof_c7a8401970 (PartOf knuckle finger) (STV 1.0 0.9454)) +(: cnet_partof_1302cae3e5 (PartOf kobe honshu) (STV 1.0 0.9091)) +(: cnet_partof_c86c56a379 (PartOf kobo naira) (STV 1.0 0.9091)) +(: cnet_partof_6b89b7c90a (PartOf kobuk_valley_national_park alaska) (STV 1.0 0.9091)) +(: cnet_partof_79a4a10f02 (PartOf kodiak alaska) (STV 1.0 0.9091)) +(: cnet_partof_2b883be9d1 (PartOf kohlrabi kohlrabi) (STV 1.0 0.9091)) +(: cnet_partof_6788a9363d (PartOf kola_nut kola) (STV 1.0 0.9091)) +(: cnet_partof_e2904269a1 (PartOf kola_peninsula russia) (STV 1.0 0.9091)) +(: cnet_partof_213d87fe52 (PartOf kolkata india) (STV 1.0 0.9091)) +(: cnet_partof_d4c1f89546 (PartOf kolonia micronesia) (STV 1.0 0.9091)) +(: cnet_partof_2f50d47ab2 (PartOf kopek ruble) (STV 1.0 0.9091)) +(: cnet_partof_46711be998 (PartOf kopiyka hryvnia) (STV 1.0 0.9091)) +(: cnet_partof_585efde26d (PartOf kordofan sudan) (STV 1.0 0.9091)) +(: cnet_partof_4f5314cdb2 (PartOf korea asia) (STV 1.0 0.9091)) +(: cnet_partof_6779c64174 (PartOf korea_bay yellow_sea) (STV 1.0 0.9091)) +(: cnet_partof_b1301f591f (PartOf kosovo serbia) (STV 1.0 0.9091)) +(: cnet_partof_c7853fa7a3 (PartOf krakatau indonesia) (STV 1.0 0.9091)) +(: cnet_partof_dc1b315f27 (PartOf kreb_cycle metabolism) (STV 1.0 0.9091)) +(: cnet_partof_d66eac4df3 (PartOf kremlin moscow) (STV 1.0 0.9091)) +(: cnet_partof_ac480f3a60 (PartOf kuala_lumpur malaysia) (STV 1.0 0.9091)) +(: cnet_partof_9ac346018b (PartOf kuangchou china) (STV 1.0 0.9091)) +(: cnet_partof_add89278c6 (PartOf kumasi ghana) (STV 1.0 0.9091)) +(: cnet_partof_953f9307da (PartOf kumquat kumquat) (STV 1.0 0.9091)) +(: cnet_partof_a5b270195b (PartOf kunlun china) (STV 1.0 0.9091)) +(: cnet_partof_c2881cdc6c (PartOf kupffer_s_cell liver) (STV 1.0 0.9091)) +(: cnet_partof_6223c1303d (PartOf kura asia) (STV 1.0 0.9091)) +(: cnet_partof_5680a32abf (PartOf kurd kurdistan) (STV 1.0 0.9091)) +(: cnet_partof_54db0bc9d7 (PartOf kurdistan iran) (STV 1.0 0.9091)) +(: cnet_partof_7519dfc66d (PartOf kurdistan iraq) (STV 1.0 0.9091)) +(: cnet_partof_edff9dcf77 (PartOf kurdistan syria) (STV 1.0 0.9091)) +(: cnet_partof_d8b5a017ab (PartOf kurdistan turkey) (STV 1.0 0.9091)) +(: cnet_partof_e32ed72492 (PartOf kursk russia) (STV 1.0 0.9091)) +(: cnet_partof_b1061e34c6 (PartOf kuru lira) (STV 1.0 0.9091)) +(: cnet_partof_7ad49dadd2 (PartOf kuwait asia) (STV 1.0 0.9091)) +(: cnet_partof_8861bf1f2e (PartOf kuwait gulf_state) (STV 1.0 0.9091)) +(: cnet_partof_c2e23ae23d (PartOf kuwait kuwait) (STV 1.0 0.9091)) +(: cnet_partof_077626dc09 (PartOf kuwait middle_east) (STV 1.0 0.9091)) +(: cnet_partof_2909c11438 (PartOf kuwaiti_dirham kuwaiti_dinar) (STV 1.0 0.9091)) +(: cnet_partof_8d48cefe38 (PartOf kwajalein world_war_ii) (STV 1.0 0.9091)) +(: cnet_partof_637e85d3cb (PartOf kwajalein marshall_island) (STV 1.0 0.9091)) +(: cnet_partof_e23c0af51a (PartOf kwangju south_korea) (STV 1.0 0.9091)) +(: cnet_partof_1e038bc7ad (PartOf kyoto honshu) (STV 1.0 0.9091)) +(: cnet_partof_4acea335d5 (PartOf kyoto japan) (STV 1.0 0.9091)) +(: cnet_partof_3a93b6a834 (PartOf kyrgyzstan asia) (STV 1.0 0.9091)) +(: cnet_partof_6dfbe936b2 (PartOf kyushu japan) (STV 1.0 0.9091)) +(: cnet_partof_6de81b0b97 (PartOf kyyiv ukraine) (STV 1.0 0.9091)) +(: cnet_partof_eafc63df30 (PartOf la_crosse wisconsin) (STV 1.0 0.9091)) +(: cnet_partof_8149886a71 (PartOf la_paz bolivia) (STV 1.0 0.9091)) +(: cnet_partof_5a377150da (PartOf la_spezia liguria) (STV 1.0 0.9091)) +(: cnet_partof_9f1ac4884a (PartOf lab_bench lab) (STV 1.0 0.9091)) +(: cnet_partof_2fb6a7ae61 (PartOf labia_majora vulva) (STV 1.0 0.9091)) +(: cnet_partof_6cf908e856 (PartOf labia_minora vulva) (STV 1.0 0.9091)) +(: cnet_partof_5e16e2c2ae (PartOf labial_artery lip) (STV 1.0 0.9091)) +(: cnet_partof_decc3542b6 (PartOf labial_vein lip) (STV 1.0 0.9091)) +(: cnet_partof_b99c0d50dc (PartOf labial_vein vulva) (STV 1.0 0.9091)) +(: cnet_partof_0447712f04 (PartOf labium vulva) (STV 1.0 0.9091)) +(: cnet_partof_b079c2a482 (PartOf labor_day september) (STV 1.0 0.9091)) +(: cnet_partof_53f4344d6f (PartOf labrador labrador_ungava_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_41e19dfe78 (PartOf labrador newfoundland_and_labrador) (STV 1.0 0.9091)) +(: cnet_partof_d57504e0bb (PartOf labrador_sea atlantic) (STV 1.0 0.9091)) +(: cnet_partof_e0093d95a7 (PartOf labrador_ungava_peninsula canada) (STV 1.0 0.9091)) +(: cnet_partof_fb719bac99 (PartOf labyrinth_of_mino crete) (STV 1.0 0.9091)) +(: cnet_partof_f48b11672f (PartOf labyrinthine_artery inner_ear) (STV 1.0 0.9091)) +(: cnet_partof_95ecd9f0f3 (PartOf labyrinthine_vein inner_ear) (STV 1.0 0.9091)) +(: cnet_partof_26bc82e32d (PartOf lace shoe) (STV 1.0 0.9091)) +(: cnet_partof_09522f447a (PartOf laconia greece) (STV 1.0 0.9091)) +(: cnet_partof_406fb6dca7 (PartOf lacrimal_apparatus eye) (STV 1.0 0.9091)) +(: cnet_partof_50a5b48d9c (PartOf lacrimal_artery eye) (STV 1.0 0.9091)) +(: cnet_partof_633e4b65c7 (PartOf lacrimal_bone eye_socket) (STV 1.0 0.9091)) +(: cnet_partof_cd3f5fb818 (PartOf lacrimal_duct lacrimal_apparatus) (STV 1.0 0.9091)) +(: cnet_partof_f84c5edf39 (PartOf lacrimal_gland lacrimal_apparatus) (STV 1.0 0.9091)) +(: cnet_partof_fcad93ec36 (PartOf lacrimal_sac lacrimal_apparatus) (STV 1.0 0.9091)) +(: cnet_partof_f20f9a0130 (PartOf lacrimal_vein eye) (STV 1.0 0.9091)) +(: cnet_partof_0e9d7ef608 (PartOf lactiferous_duct breast) (STV 1.0 0.9091)) +(: cnet_partof_0d613c88a3 (PartOf ladder_back ladder_back) (STV 1.0 0.9091)) +(: cnet_partof_5015a6bf89 (PartOf lady_chapel church) (STV 1.0 0.9091)) +(: cnet_partof_7ed09fd2a8 (PartOf lafayette indiana) (STV 1.0 0.9091)) +(: cnet_partof_9841af4f78 (PartOf lafayette louisiana) (STV 1.0 0.9091)) +(: cnet_partof_2b10fc6c73 (PartOf lag_b_omer iyar) (STV 1.0 0.9091)) +(: cnet_partof_5b616a6fad (PartOf lago nigeria) (STV 1.0 0.9091)) +(: cnet_partof_da1296b10d (PartOf lahore pakistan) (STV 1.0 0.9091)) +(: cnet_partof_cf4bff196a (PartOf lake_baikal siberia) (STV 1.0 0.9091)) +(: cnet_partof_f5a2221dfa (PartOf lake_chad africa) (STV 1.0 0.9091)) +(: cnet_partof_838e032863 (PartOf lake_champlain new_york) (STV 1.0 0.9091)) +(: cnet_partof_8cf409e0e1 (PartOf lake_champlain quebec) (STV 1.0 0.9091)) +(: cnet_partof_d2ce2829fd (PartOf lake_champlain vermont) (STV 1.0 0.9091)) +(: cnet_partof_7d76c6d2a2 (PartOf lake_chelan washington) (STV 1.0 0.9091)) +(: cnet_partof_7fb3442fbb (PartOf lake_clark_national_park alaska) (STV 1.0 0.9091)) +(: cnet_partof_a44dd7f65a (PartOf lake_constance germany) (STV 1.0 0.9091)) +(: cnet_partof_c5d862a31e (PartOf lake_district cumbria) (STV 1.0 0.9091)) +(: cnet_partof_65a72d6ace (PartOf lake_district england) (STV 1.0 0.9091)) +(: cnet_partof_d2e42efa55 (PartOf lake_edward congo) (STV 1.0 0.9091)) +(: cnet_partof_bf686477cc (PartOf lake_edward uganda) (STV 1.0 0.9091)) +(: cnet_partof_a26e0a2742 (PartOf lake_erie great_lake) (STV 1.0 0.9091)) +(: cnet_partof_5382486263 (PartOf lake_geneva france) (STV 1.0 0.9091)) +(: cnet_partof_c763bccdef (PartOf lake_geneva switzerland) (STV 1.0 0.9091)) +(: cnet_partof_cd1f83e521 (PartOf lake_herring cisco) (STV 1.0 0.9091)) +(: cnet_partof_b975d5a94b (PartOf lake_huron great_lake) (STV 1.0 0.9091)) +(: cnet_partof_8928ed8d44 (PartOf lake_ilmen russia) (STV 1.0 0.9091)) +(: cnet_partof_89ebe39641 (PartOf lake_ladoga russia) (STV 1.0 0.9091)) +(: cnet_partof_5dc9001467 (PartOf lake_malawi malawi) (STV 1.0 0.9091)) +(: cnet_partof_5dfcec67c0 (PartOf lake_malawi mozambique) (STV 1.0 0.9091)) +(: cnet_partof_c6bd2cfb20 (PartOf lake_malawi tanzania) (STV 1.0 0.9091)) +(: cnet_partof_ff616a82af (PartOf lake_mead arizona) (STV 1.0 0.9091)) +(: cnet_partof_c67aaa014e (PartOf lake_mead nevada) (STV 1.0 0.9091)) +(: cnet_partof_ca7ed0a6f8 (PartOf lake_michigan great_lake) (STV 1.0 0.9091)) +(: cnet_partof_eee20e891d (PartOf lake_nasser egypt) (STV 1.0 0.9091)) +(: cnet_partof_e3cd27fd1d (PartOf lake_onega russia) (STV 1.0 0.9091)) +(: cnet_partof_010eb5e441 (PartOf lake_ontario great_lake) (STV 1.0 0.9091)) +(: cnet_partof_6f0a71bad8 (PartOf lake_powell arizona) (STV 1.0 0.9091)) +(: cnet_partof_6c369b93e7 (PartOf lake_powell utah) (STV 1.0 0.9091)) +(: cnet_partof_4a84172191 (PartOf lake_st_clair michigan) (STV 1.0 0.9091)) +(: cnet_partof_455c7869df (PartOf lake_st_clair ontario) (STV 1.0 0.9091)) +(: cnet_partof_51118b1bf2 (PartOf lake_superior great_lake) (STV 1.0 0.9091)) +(: cnet_partof_3d0e231173 (PartOf lake_tahoe california) (STV 1.0 0.9091)) +(: cnet_partof_46cead534f (PartOf lake_tahoe nevada) (STV 1.0 0.9091)) +(: cnet_partof_f442360eff (PartOf lake_tana ethiopia) (STV 1.0 0.9091)) +(: cnet_partof_6a3f4da1df (PartOf lake_tanganyika africa) (STV 1.0 0.9091)) +(: cnet_partof_50e7a46c47 (PartOf lake_trasimenus punic_war) (STV 1.0 0.9091)) +(: cnet_partof_123676b806 (PartOf lake_trout lake_trout) (STV 1.0 0.9091)) +(: cnet_partof_470cf3f9ca (PartOf lake_vanern sweden) (STV 1.0 0.9091)) +(: cnet_partof_d425430348 (PartOf lake_victoria africa) (STV 1.0 0.9091)) +(: cnet_partof_2a515d1946 (PartOf lake_volta ghana) (STV 1.0 0.9091)) +(: cnet_partof_6e80e5659b (PartOf lamb_s_quarter lamb_s_quarter) (STV 1.0 0.9091)) +(: cnet_partof_0598e0ec99 (PartOf lamb domestic_sheep) (STV 1.0 0.9091)) +(: cnet_partof_928b994d8c (PartOf lamboid_suture cranium) (STV 1.0 0.9091)) +(: cnet_partof_6d25dd93ce (PartOf lamella bone) (STV 1.0 0.9091)) +(: cnet_partof_1649a13961 (PartOf lamentation hagiographa) (STV 1.0 0.9091)) +(: cnet_partof_b9f2e1a974 (PartOf lamentation old_testament) (STV 1.0 0.9091)) +(: cnet_partof_0046fb0b10 (PartOf lamp_chimney oil_lamp) (STV 1.0 0.9091)) +(: cnet_partof_f83b01cf2f (PartOf lamp_house movie_projector) (STV 1.0 0.9091)) +(: cnet_partof_f63a25dfbd (PartOf lamppost streetlight) (STV 1.0 0.9091)) +(: cnet_partof_e6f4eec8f7 (PartOf lampshade lamp) (STV 1.0 0.9091)) +(: cnet_partof_4300227101 (PartOf lanai hawaiian_island) (STV 1.0 0.9091)) +(: cnet_partof_b29f9b2203 (PartOf lancashire england) (STV 1.0 0.9091)) +(: cnet_partof_75681b478b (PartOf lancaster england) (STV 1.0 0.9091)) +(: cnet_partof_40605ded62 (PartOf land earth) (STV 1.0 0.9091)) +(: cnet_partof_2446c0fd71 (PartOf lander wyoming) (STV 1.0 0.9091)) +(: cnet_partof_7581a9a199 (PartOf landing seaport) (STV 1.0 0.9091)) +(: cnet_partof_3ac0c24f9f (PartOf landing stairway) (STV 1.0 0.9091)) +(: cnet_partof_d8c604d26d (PartOf landing_approach landing) (STV 1.0 0.9091)) +(: cnet_partof_6eb7eef465 (PartOf landing_gear airplane) (STV 1.0 0.9091)) +(: cnet_partof_5e64e18662 (PartOf landing_skid helicopter) (STV 1.0 0.9091)) +(: cnet_partof_cdeb642367 (PartOf landing_stage landing) (STV 1.0 0.9091)) +(: cnet_partof_fc16943f3b (PartOf landside moldboard_plow) (STV 1.0 0.9091)) +(: cnet_partof_50a86bddb7 (PartOf language_area left_hemisphere) (STV 1.0 0.9091)) +(: cnet_partof_346e52e59a (PartOf language_unit string) (STV 1.0 0.9091)) +(: cnet_partof_9b598d4290 (PartOf languedoc_roussillon france) (STV 1.0 0.9091)) +(: cnet_partof_c4f58cc211 (PartOf lanseh lanseh_tree) (STV 1.0 0.9091)) +(: cnet_partof_02562f96b6 (PartOf lansing michigan) (STV 1.0 0.9091)) +(: cnet_partof_9dd9c03233 (PartOf lanzhou gansu) (STV 1.0 0.9091)) +(: cnet_partof_fc08c02818 (PartOf lao indochina) (STV 1.0 0.9091)) +(: cnet_partof_ace3ca8007 (PartOf lap pair_of_trouser) (STV 1.0 0.9091)) +(: cnet_partof_2206aa94ed (PartOf lap skirt) (STV 1.0 0.9091)) +(: cnet_partof_ae31d3a6f9 (PartOf lappland europe) (STV 1.0 0.9091)) +(: cnet_partof_bd7eefbf21 (PartOf laptev_sea arctic_ocean) (STV 1.0 0.9091)) +(: cnet_partof_95291e6f92 (PartOf laramie wyoming) (STV 1.0 0.9091)) +(: cnet_partof_4cdf06f2ca (PartOf laredo texa) (STV 1.0 0.9091)) +(: cnet_partof_397dc37efc (PartOf large_intestine alimentary_canal) (STV 1.0 0.9091)) +(: cnet_partof_5b54690cad (PartOf largemouth_bass largemouth) (STV 1.0 0.9091)) +(: cnet_partof_955b866c26 (PartOf laryngeal_artery larynx) (STV 1.0 0.9091)) +(: cnet_partof_443ca9bffc (PartOf laryngeal_vein larynx) (STV 1.0 0.9091)) +(: cnet_partof_a74e2e8e86 (PartOf laryngopharynx throat) (STV 1.0 0.9091)) +(: cnet_partof_f2330a47e1 (PartOf larynx human_body) (STV 1.0 0.9091)) +(: cnet_partof_a1269709bf (PartOf larynx upper_respiratory_tract) (STV 1.0 0.9091)) +(: cnet_partof_7879cfb3a9 (PartOf las_cruce new_mexico) (STV 1.0 0.9091)) +(: cnet_partof_739383b1b5 (PartOf las_vega nevada) (STV 1.0 0.9091)) +(: cnet_partof_e784e3ed38 (PartOf lascar chile) (STV 1.0 0.9091)) +(: cnet_partof_99082e1847 (PartOf lascaux france) (STV 1.0 0.9091)) +(: cnet_partof_c66416d4f5 (PartOf laser photocoagulator) (STV 1.0 0.9091)) +(: cnet_partof_51c718fc97 (PartOf lash whip) (STV 1.0 0.9091)) +(: cnet_partof_a7f1330446 (PartOf lashkar_e_jhangvi sipah_e_sahaba) (STV 1.0 0.9091)) +(: cnet_partof_0b8cc2a393 (PartOf lassen_volcanic_national_park california) (STV 1.0 0.9091)) +(: cnet_partof_b1e1eca843 (PartOf late_night_hour night) (STV 1.0 0.9091)) +(: cnet_partof_364f7b80f5 (PartOf lateen lateen_rig) (STV 1.0 0.9091)) +(: cnet_partof_be85a9b73c (PartOf lateen_rig dhow) (STV 1.0 0.9091)) +(: cnet_partof_ec79a2660d (PartOf latency_stage childhood) (STV 1.0 0.9091)) +(: cnet_partof_198f4f2aa5 (PartOf lateral_condyle femur) (STV 1.0 0.9091)) +(: cnet_partof_63ea5d34e2 (PartOf lateral_line amphibian) (STV 1.0 0.9091)) +(: cnet_partof_a972393039 (PartOf lateral_line fish) (STV 1.0 0.9091)) +(: cnet_partof_1e0b92f307 (PartOf lateran rome) (STV 1.0 0.9091)) +(: cnet_partof_a6613d857b (PartOf lateran_palace lateran) (STV 1.0 0.9091)) +(: cnet_partof_79339f9ad3 (PartOf lath lattice) (STV 1.0 0.9091)) +(: cnet_partof_28d2b8009b (PartOf latisimus_dorsi back) (STV 1.0 0.9091)) +(: cnet_partof_93f83af4b6 (PartOf latium italy) (STV 1.0 0.9091)) +(: cnet_partof_40e0c3b778 (PartOf latvia europe) (STV 1.0 0.9091)) +(: cnet_partof_9a744abd9d (PartOf laudo ande) (STV 1.0 0.9091)) +(: cnet_partof_8a3400328d (PartOf laudo argentina) (STV 1.0 0.9091)) +(: cnet_partof_7f99e89f3b (PartOf launching_pad launching_site) (STV 1.0 0.9091)) +(: cnet_partof_3e7b97cacb (PartOf laurasia northern_hemisphere) (STV 1.0 0.9091)) +(: cnet_partof_52ac402b91 (PartOf laurentian_highland canada) (STV 1.0 0.9091)) +(: cnet_partof_b72c96626c (PartOf lausanne switzerland) (STV 1.0 0.9091)) +(: cnet_partof_ff7f06be01 (PartOf law theory) (STV 1.0 0.9091)) +(: cnet_partof_0df0989b81 (PartOf law law) (STV 1.0 0.9091)) +(: cnet_partof_e49dd91336 (PartOf law_of_gravitation theory_of_gravitation) (STV 1.0 0.9091)) +(: cnet_partof_965113b68f (PartOf lawrence kansa) (STV 1.0 0.9091)) +(: cnet_partof_96f90fb9b6 (PartOf lawton oklahoma) (STV 1.0 0.9091)) +(: cnet_partof_7ab56888fb (PartOf layer laminate) (STV 1.0 0.9091)) +(: cnet_partof_094f66e3e1 (PartOf le_havre france) (STV 1.0 0.9091)) +(: cnet_partof_c931329bc1 (PartOf lead card_game) (STV 1.0 0.9091)) +(: cnet_partof_94d60e0313 (PartOf lead lead_pencil) (STV 1.0 0.9091)) +(: cnet_partof_9da3806e2c (PartOf lead new_article) (STV 1.0 0.9091)) +(: cnet_partof_240944583f (PartOf leading_edge airfoil) (STV 1.0 0.9091)) +(: cnet_partof_e82c24162b (PartOf leading_question cross_examination) (STV 1.0 0.9091)) +(: cnet_partof_691be51c04 (PartOf leaf tree) (STV 1.0 0.9659)) +(: cnet_partof_4310e2e452 (PartOf leaf dinner_table) (STV 1.0 0.9091)) +(: cnet_partof_85338ad00e (PartOf leaf written_communication) (STV 1.0 0.9091)) +(: cnet_partof_20f84d6f33 (PartOf leaf_lettuce leaf_lettuce) (STV 1.0 0.9091)) +(: cnet_partof_b9965ca52f (PartOf leaf_node stalk) (STV 1.0 0.9091)) +(: cnet_partof_4a7936d4bf (PartOf leaf_shape leaf) (STV 1.0 0.9091)) +(: cnet_partof_f603931f1d (PartOf leaning_tower pisa) (STV 1.0 0.9091)) +(: cnet_partof_530e2df61e (PartOf leap_day february) (STV 1.0 0.9091)) +(: cnet_partof_c408a68764 (PartOf lebanon asia) (STV 1.0 0.9339)) +(: cnet_partof_f100d7436a (PartOf lebanon middle_east) (STV 1.0 0.9091)) +(: cnet_partof_152ebc416c (PartOf lecture course) (STV 1.0 0.9091)) +(: cnet_partof_e7dace8935 (PartOf lecture_demonstration lecture) (STV 1.0 0.9091)) +(: cnet_partof_47d8f72995 (PartOf ledger_board railing) (STV 1.0 0.9091)) +(: cnet_partof_5b3f689809 (PartOf ledger_line musical_notation) (STV 1.0 0.9091)) +(: cnet_partof_92882083b2 (PartOf leed west_yorkshire) (STV 1.0 0.9091)) +(: cnet_partof_1963fcdfa1 (PartOf leek leek) (STV 1.0 0.9091)) +(: cnet_partof_0e7aaf0372 (PartOf leeward_island lesser_antille) (STV 1.0 0.9091)) +(: cnet_partof_4f49a131d8 (PartOf left_bank paris) (STV 1.0 0.9091)) +(: cnet_partof_42f0062a4e (PartOf left_ear person) (STV 1.0 0.9091)) +(: cnet_partof_c27ee3c5dc (PartOf left_field outfield) (STV 1.0 0.9091)) +(: cnet_partof_3700e6794d (PartOf left_hand person) (STV 1.0 0.9091)) +(: cnet_partof_cddb709f25 (PartOf left_leg person) (STV 1.0 0.9091)) +(: cnet_partof_751fa0d037 (PartOf leg chair) (STV 1.0 0.9091)) +(: cnet_partof_0e6a488261 (PartOf leg table) (STV 1.0 0.9572)) +(: cnet_partof_4d40b78f0d (PartOf leg cot) (STV 1.0 0.9091)) +(: cnet_partof_a11eeef451 (PartOf leg four_poster) (STV 1.0 0.9091)) +(: cnet_partof_c786a91c44 (PartOf leg grand_piano) (STV 1.0 0.9091)) +(: cnet_partof_03916e1ce6 (PartOf leg hospital_bed) (STV 1.0 0.9091)) +(: cnet_partof_522e7842fa (PartOf leg pair_of_trouser) (STV 1.0 0.9091)) +(: cnet_partof_02d703c1cc (PartOf leg spinning_wheel) (STV 1.0 0.9091)) +(: cnet_partof_8f6a9175ce (PartOf leg tripod) (STV 1.0 0.9091)) +(: cnet_partof_d4ca560388 (PartOf leg body) (STV 1.0 0.9091)) +(: cnet_partof_804dc1f10f (PartOf leg_bone endoskeleton) (STV 1.0 0.9091)) +(: cnet_partof_d785750d9e (PartOf leg_bone leg) (STV 1.0 0.9091)) +(: cnet_partof_a10321135d (PartOf legislation statute_book) (STV 1.0 0.9091)) +(: cnet_partof_0e893cf79c (PartOf legume legume) (STV 1.0 0.9091)) +(: cnet_partof_896a1309cd (PartOf lehigh_river pennsylvania) (STV 1.0 0.9091)) +(: cnet_partof_890425cf45 (PartOf leicester england) (STV 1.0 0.9091)) +(: cnet_partof_14aa6a3543 (PartOf leicester leicestershire) (STV 1.0 0.9091)) +(: cnet_partof_159325eaea (PartOf leicestershire england) (STV 1.0 0.9091)) +(: cnet_partof_eb90a6e9f5 (PartOf leiden netherland) (STV 1.0 0.9091)) +(: cnet_partof_737a67ad3d (PartOf leipzig germany) (STV 1.0 0.9091)) +(: cnet_partof_8d9637bd69 (PartOf lemno aegean) (STV 1.0 0.9091)) +(: cnet_partof_bc68232b95 (PartOf lemno greece) (STV 1.0 0.9091)) +(: cnet_partof_47afef4bbb (PartOf lemon lemon) (STV 1.0 0.9091)) +(: cnet_partof_c5d5f5d680 (PartOf lemon_balm lemon_balm) (STV 1.0 0.9091)) +(: cnet_partof_67b3018a8a (PartOf lemon_peel lemon) (STV 1.0 0.9091)) +(: cnet_partof_56b5fa35d1 (PartOf lemon_sole lemon_sole) (STV 1.0 0.9091)) +(: cnet_partof_eb09b10f52 (PartOf lemon_sole winter_flounder) (STV 1.0 0.9091)) +(: cnet_partof_b400871cfc (PartOf lemonwood lemonwood) (STV 1.0 0.9091)) +(: cnet_partof_ec31b10da7 (PartOf lena siberia) (STV 1.0 0.9091)) +(: cnet_partof_d01a511be8 (PartOf len camera) (STV 1.0 0.9091)) +(: cnet_partof_f2c25f1cfd (PartOf len eye) (STV 1.0 0.9572)) +(: cnet_partof_8ef7ad61f5 (PartOf len eyeglass) (STV 1.0 0.9091)) +(: cnet_partof_0953fc2501 (PartOf len optical_instrument) (STV 1.0 0.9091)) +(: cnet_partof_c2eabe4f41 (PartOf len_capsule len) (STV 1.0 0.9091)) +(: cnet_partof_db03da97e2 (PartOf len_cortex len) (STV 1.0 0.9091)) +(: cnet_partof_c3ea7cae03 (PartOf len_hood camera) (STV 1.0 0.9091)) +(: cnet_partof_251c8a73a8 (PartOf len_hood television_camera) (STV 1.0 0.9091)) +(: cnet_partof_576a473e6a (PartOf lent church_calendar) (STV 1.0 0.9091)) +(: cnet_partof_90d00e9bbb (PartOf lenticular_nucleus corpus_striatum) (STV 1.0 0.9091)) +(: cnet_partof_b48910e703 (PartOf lentil lentil) (STV 1.0 0.9091)) +(: cnet_partof_b913041b52 (PartOf leo zodiac) (STV 1.0 0.9091)) +(: cnet_partof_70d5098073 (PartOf leon mexico) (STV 1.0 0.9091)) +(: cnet_partof_d220896b4a (PartOf leon spain) (STV 1.0 0.9091)) +(: cnet_partof_0503d0cf0d (PartOf lepton drachma) (STV 1.0 0.9091)) +(: cnet_partof_d98cab16a6 (PartOf leptotene prophase) (STV 1.0 0.9091)) +(: cnet_partof_acc858d2f2 (PartOf lesbo aeolis) (STV 1.0 0.9091)) +(: cnet_partof_45768c88fb (PartOf lesbo greece) (STV 1.0 0.9091)) +(: cnet_partof_263677e4e4 (PartOf lesotho africa) (STV 1.0 0.9091)) +(: cnet_partof_832cf9e1fa (PartOf lesser_antille antille) (STV 1.0 0.9091)) +(: cnet_partof_1acc1b7410 (PartOf lesser_sunda_island sunda_island) (STV 1.0 0.9091)) +(: cnet_partof_69124744f1 (PartOf lesson course) (STV 1.0 0.9091)) +(: cnet_partof_848e7e5917 (PartOf lesson education) (STV 1.0 0.9091)) +(: cnet_partof_cf85ce1f9e (PartOf lethe hel) (STV 1.0 0.9091)) +(: cnet_partof_52a5ee0dc9 (PartOf letter alphabet) (STV 1.0 0.9339)) +(: cnet_partof_2f3d5803e3 (PartOf letter word) (STV 1.0 0.9608)) +(: cnet_partof_3a751ead7c (PartOf letter correspondence) (STV 1.0 0.9091)) +(: cnet_partof_ee9118ad98 (PartOf letter mail) (STV 1.0 0.9091)) +(: cnet_partof_20646aaa3e (PartOf letter spelling) (STV 1.0 0.9091)) +(: cnet_partof_0dd4573f29 (PartOf letter_of_jeremiah apocrypha) (STV 1.0 0.9091)) +(: cnet_partof_d67fce7d99 (PartOf lettuce salad) (STV 1.0 0.9339)) +(: cnet_partof_c9b603917c (PartOf lettuce garden_lettuce) (STV 1.0 0.9091)) +(: cnet_partof_9e21a3dc3a (PartOf levant middle_east) (STV 1.0 0.9091)) +(: cnet_partof_f1aab29b81 (PartOf level carpenter_s_level) (STV 1.0 0.9091)) +(: cnet_partof_3794218285 (PartOf level surveyor_s_level) (STV 1.0 0.9091)) +(: cnet_partof_25124ccef8 (PartOf lever lever_lock) (STV 1.0 0.9091)) +(: cnet_partof_3b161e0257 (PartOf leviticus old_testament) (STV 1.0 0.9091)) +(: cnet_partof_e1708e5657 (PartOf leviticus torah) (STV 1.0 0.9091)) +(: cnet_partof_c94ae5b9f1 (PartOf lewiston idaho) (STV 1.0 0.9091)) +(: cnet_partof_8318f4450f (PartOf lewiston maine) (STV 1.0 0.9091)) +(: cnet_partof_bd9ee41bc9 (PartOf lexical_entry dictionary) (STV 1.0 0.9091)) +(: cnet_partof_2c28532b6c (PartOf lexical_meaning content_word) (STV 1.0 0.9091)) +(: cnet_partof_294749dd56 (PartOf lexington american_revolution) (STV 1.0 0.9091)) +(: cnet_partof_15270885be (PartOf lexington kentucky) (STV 1.0 0.9091)) +(: cnet_partof_a0eb750b68 (PartOf lexington massachusett) (STV 1.0 0.9091)) +(: cnet_partof_90d001935f (PartOf lexis language) (STV 1.0 0.9091)) +(: cnet_partof_763b423b0c (PartOf leyte world_war_ii) (STV 1.0 0.9091)) +(: cnet_partof_aecb052343 (PartOf lhasa tibet) (STV 1.0 0.9091)) +(: cnet_partof_879ed2e3e0 (PartOf lhotse himalaya) (STV 1.0 0.9091)) +(: cnet_partof_dcae35c8e8 (PartOf lhotse nepal) (STV 1.0 0.9091)) +(: cnet_partof_756eb78f6f (PartOf lhotse tibet) (STV 1.0 0.9091)) +(: cnet_partof_f7c5a77ec3 (PartOf liaodong_peninsula china) (STV 1.0 0.9091)) +(: cnet_partof_5dfda4a366 (PartOf liberia africa) (STV 1.0 0.9091)) +(: cnet_partof_4542867e7f (PartOf liberty_island new_york) (STV 1.0 0.9091)) +(: cnet_partof_a2f545a105 (PartOf liberty_island new_york_bay) (STV 1.0 0.9091)) +(: cnet_partof_6532f04617 (PartOf libra zodiac) (STV 1.0 0.9091)) +(: cnet_partof_904f1a3ad8 (PartOf library house) (STV 1.0 0.9091)) +(: cnet_partof_587c73cb86 (PartOf library_program library) (STV 1.0 0.9091)) +(: cnet_partof_f14fb78d44 (PartOf library_routine library) (STV 1.0 0.9091)) +(: cnet_partof_9be8e3cc42 (PartOf libreville gabon) (STV 1.0 0.9091)) +(: cnet_partof_fdeab2b610 (PartOf libya africa) (STV 1.0 0.9091)) +(: cnet_partof_019c50de3a (PartOf libyan_desert egypt) (STV 1.0 0.9091)) +(: cnet_partof_c5d1155001 (PartOf libyan_desert libya) (STV 1.0 0.9091)) +(: cnet_partof_9ad51a7337 (PartOf libyan_desert sahara) (STV 1.0 0.9091)) +(: cnet_partof_b3f3fef515 (PartOf libyan_desert sudan) (STV 1.0 0.9091)) +(: cnet_partof_98429d623d (PartOf libyan_dirham libyan_dinar) (STV 1.0 0.9091)) +(: cnet_partof_05cfd7cd37 (PartOf licorice_root licorice) (STV 1.0 0.9091)) +(: cnet_partof_722c96927a (PartOf lid jar) (STV 1.0 0.9339)) +(: cnet_partof_df7ca58b11 (PartOf lid box) (STV 1.0 0.9091)) +(: cnet_partof_047f0fcfb5 (PartOf lid chest) (STV 1.0 0.9091)) +(: cnet_partof_52148369e2 (PartOf liechtenstein europe) (STV 1.0 0.9091)) +(: cnet_partof_0410c24b61 (PartOf liege belgium) (STV 1.0 0.9091)) +(: cnet_partof_a74096575b (PartOf lienal_artery spleen) (STV 1.0 0.9091)) +(: cnet_partof_e498a37c25 (PartOf liepaja latvia) (STV 1.0 0.9091)) +(: cnet_partof_3c9bebc276 (PartOf lift heel) (STV 1.0 0.9091)) +(: cnet_partof_154648b270 (PartOf ligament muscular_structure) (STV 1.0 0.9091)) +(: cnet_partof_66b3d919b3 (PartOf light electromagnetic_spectrum) (STV 1.0 0.9091)) +(: cnet_partof_cc46c2cece (PartOf light_air beaufort_scale) (STV 1.0 0.9091)) +(: cnet_partof_f12e49ce9b (PartOf light_breeze beaufort_scale) (STV 1.0 0.9091)) +(: cnet_partof_b0052fc52e (PartOf light_emitting_diode digital_display) (STV 1.0 0.9091)) +(: cnet_partof_382ef15c9f (PartOf light_hour light_year) (STV 1.0 0.9091)) +(: cnet_partof_2c213f8622 (PartOf light_minute light_year) (STV 1.0 0.9091)) +(: cnet_partof_7c65f04dab (PartOf light_reaction photosynthesis) (STV 1.0 0.9091)) +(: cnet_partof_7e7dbea8f7 (PartOf light_second light_year) (STV 1.0 0.9091)) +(: cnet_partof_30e9d8f2a0 (PartOf light_out night) (STV 1.0 0.9091)) +(: cnet_partof_9bdbb3ed10 (PartOf ligne inch) (STV 1.0 0.9091)) +(: cnet_partof_ae7a1873a5 (PartOf liguria italy) (STV 1.0 0.9091)) +(: cnet_partof_e3999926ac (PartOf ligurian_sea mediterranean) (STV 1.0 0.9091)) +(: cnet_partof_a8bb3aa030 (PartOf likuta zaire) (STV 1.0 0.9091)) +(: cnet_partof_9a93aef936 (PartOf lille france) (STV 1.0 0.9091)) +(: cnet_partof_03e9fe7efa (PartOf lilongwe malawi) (STV 1.0 0.9091)) +(: cnet_partof_291046f03e (PartOf lily_pad water_lily) (STV 1.0 0.9091)) +(: cnet_partof_5b5ba84ec1 (PartOf lima peru) (STV 1.0 0.9091)) +(: cnet_partof_6989e37661 (PartOf lima_bean lima_bean) (STV 1.0 0.9091)) +(: cnet_partof_4e6b6bdfed (PartOf limb bow) (STV 1.0 0.9091)) +(: cnet_partof_0a3843422b (PartOf limb octant) (STV 1.0 0.9091)) +(: cnet_partof_642a4a8010 (PartOf limb sextant) (STV 1.0 0.9091)) +(: cnet_partof_f306491517 (PartOf limb appendicular_skeleton) (STV 1.0 0.9091)) +(: cnet_partof_1560112279 (PartOf limb tree) (STV 1.0 0.9091)) +(: cnet_partof_845d59937b (PartOf lime lime) (STV 1.0 0.9091)) +(: cnet_partof_05fc5f7e03 (PartOf limeira brazil) (STV 1.0 0.9091)) +(: cnet_partof_9788c806f2 (PartOf limerick ireland) (STV 1.0 0.9091)) +(: cnet_partof_f56192a64e (PartOf limousin france) (STV 1.0 0.9091)) +(: cnet_partof_f2ce2613ae (PartOf limpopo mozambique) (STV 1.0 0.9091)) +(: cnet_partof_726ebfed20 (PartOf limpopo south_africa) (STV 1.0 0.9091)) +(: cnet_partof_c29761c49c (PartOf lincoln_s_birthday february) (STV 1.0 0.9091)) +(: cnet_partof_8d3b928a7e (PartOf lincoln nebraska) (STV 1.0 0.9091)) +(: cnet_partof_061a0c49f9 (PartOf lincoln_memorial washington) (STV 1.0 0.9091)) +(: cnet_partof_26e9b05a4c (PartOf lincolnshire england) (STV 1.0 0.9091)) +(: cnet_partof_35dc17907f (PartOf lindesne norway) (STV 1.0 0.9091)) +(: cnet_partof_ad46f359c0 (PartOf line transportation_system) (STV 1.0 0.9091)) +(: cnet_partof_6fc5d1c6e4 (PartOf line letter) (STV 1.0 0.9091)) +(: cnet_partof_cf8ad3a652 (PartOf line stanza) (STV 1.0 0.9091)) +(: cnet_partof_6ea3d7b33e (PartOf line electromagnetic_spectrum) (STV 1.0 0.9091)) +(: cnet_partof_a00bc18929 (PartOf line_item appropriation_bill) (STV 1.0 0.9091)) +(: cnet_partof_df82c4065f (PartOf line_of_control kashmir) (STV 1.0 0.9091)) +(: cnet_partof_3a4effb622 (PartOf line_of_poetry couplet) (STV 1.0 0.9091)) +(: cnet_partof_e9bdeeb8b3 (PartOf line_of_poetry poem) (STV 1.0 0.9091)) +(: cnet_partof_b387247f1b (PartOf liner garment) (STV 1.0 0.9091)) +(: cnet_partof_c52ff3210b (PartOf lingcod lingcod) (STV 1.0 0.9091)) +(: cnet_partof_dbd7f46e1b (PartOf lingonberry cowberry) (STV 1.0 0.9091)) +(: cnet_partof_659b2e67d6 (PartOf lingual_artery mouth) (STV 1.0 0.9091)) +(: cnet_partof_8ced515d86 (PartOf lingual_vein mouth) (STV 1.0 0.9091)) +(: cnet_partof_98f60b6bf4 (PartOf linguistic cognitive_science) (STV 1.0 0.9091)) +(: cnet_partof_bddd56de88 (PartOf linin nucleus) (STV 1.0 0.9091)) +(: cnet_partof_eb4fe6b64a (PartOf link chain) (STV 1.0 0.9091)) +(: cnet_partof_3183f66f1a (PartOf linz austria) (STV 1.0 0.9091)) +(: cnet_partof_ce497b73c5 (PartOf lip mouth) (STV 1.0 0.9091)) +(: cnet_partof_f8712a9ba4 (PartOf lisbon portugal) (STV 1.0 0.9091)) +(: cnet_partof_89c2c241b3 (PartOf litany book_of_common_prayer) (STV 1.0 0.9091)) +(: cnet_partof_ea3b737be3 (PartOf litchi litchi) (STV 1.0 0.9091)) +(: cnet_partof_aeb7d7ce1a (PartOf liter dekaliter) (STV 1.0 0.9091)) +(: cnet_partof_1a6a9e0a9e (PartOf lithosphere earth) (STV 1.0 0.9091)) +(: cnet_partof_28cbff12b9 (PartOf little_bighorn montana) (STV 1.0 0.9091)) +(: cnet_partof_fba50ae1ec (PartOf little_bighorn wyoming) (STV 1.0 0.9091)) +(: cnet_partof_99bce8f23f (PartOf little_dipper little_bear) (STV 1.0 0.9091)) +(: cnet_partof_839bafb919 (PartOf little_missouri montana) (STV 1.0 0.9091)) +(: cnet_partof_37fd9fd8e4 (PartOf little_missouri north_dakota) (STV 1.0 0.9091)) +(: cnet_partof_43397d2299 (PartOf little_missouri south_dakota) (STV 1.0 0.9091)) +(: cnet_partof_81d86c2f84 (PartOf little_missouri wyoming) (STV 1.0 0.9091)) +(: cnet_partof_75bc6654d0 (PartOf little_rock arkansa) (STV 1.0 0.9091)) +(: cnet_partof_d75d486908 (PartOf little_sioux_river iowa) (STV 1.0 0.9091)) +(: cnet_partof_6878567d1c (PartOf little_sioux_river minnesota) (STV 1.0 0.9091)) +(: cnet_partof_0a96bef1a8 (PartOf little_toe foot) (STV 1.0 0.9091)) +(: cnet_partof_fe64d30022 (PartOf little_wabash illinois) (STV 1.0 0.9091)) +(: cnet_partof_f8b970a1ae (PartOf live_axle drive_line) (STV 1.0 0.9091)) +(: cnet_partof_6288f219ed (PartOf liver body) (STV 1.0 0.9454)) +(: cnet_partof_7dbe40a5ff (PartOf liver human_body) (STV 1.0 0.9339)) +(: cnet_partof_e2957b384e (PartOf liver circulatory_system) (STV 1.0 0.9091)) +(: cnet_partof_ff73c3cd7e (PartOf liver digestive_system) (STV 1.0 0.9091)) +(: cnet_partof_788024bb2a (PartOf liver_spot skin) (STV 1.0 0.9091)) +(: cnet_partof_a103f7b0e4 (PartOf liverpool england) (STV 1.0 0.9091)) +(: cnet_partof_265c1bd856 (PartOf living_room house) (STV 1.0 0.9454)) +(: cnet_partof_564c25906b (PartOf living_room dwelling) (STV 1.0 0.9091)) +(: cnet_partof_d302e63b20 (PartOf livonia estonia) (STV 1.0 0.9091)) +(: cnet_partof_c565ef3df1 (PartOf livonia latvia) (STV 1.0 0.9091)) +(: cnet_partof_67337e55b8 (PartOf ljubljana slovenia) (STV 1.0 0.9091)) +(: cnet_partof_7d9de1fe63 (PartOf llano_estacado great_plain) (STV 1.0 0.9091)) +(: cnet_partof_dc198d6e9d (PartOf llano_estacado new_mexico) (STV 1.0 0.9091)) +(: cnet_partof_bae1e6adc3 (PartOf llano_estacado oklahoma) (STV 1.0 0.9091)) +(: cnet_partof_d94ae85764 (PartOf llano_estacado texa) (STV 1.0 0.9091)) +(: cnet_partof_680927fa80 (PartOf llullaillaco ande) (STV 1.0 0.9091)) +(: cnet_partof_27e84b9707 (PartOf llullaillaco argentina) (STV 1.0 0.9091)) +(: cnet_partof_4a94faec9d (PartOf llullaillaco chile) (STV 1.0 0.9091)) +(: cnet_partof_3b14df0e19 (PartOf lobe organ) (STV 1.0 0.9091)) +(: cnet_partof_09d1318968 (PartOf lobe leaf) (STV 1.0 0.9091)) +(: cnet_partof_31ce13f20e (PartOf lobe radiation_pattern) (STV 1.0 0.9091)) +(: cnet_partof_ab9b316ea1 (PartOf lobe_of_lung lung) (STV 1.0 0.9091)) +(: cnet_partof_bc64133140 (PartOf lobito angola) (STV 1.0 0.9091)) +(: cnet_partof_22736139c5 (PartOf lobster true_lobster) (STV 1.0 0.9091)) +(: cnet_partof_a06a93c889 (PartOf local_oscillator heterodyne_receiver) (STV 1.0 0.9091)) +(: cnet_partof_59d01425c0 (PartOf location space) (STV 1.0 0.9091)) +(: cnet_partof_9e70331437 (PartOf loch_achray scotland) (STV 1.0 0.9091)) +(: cnet_partof_661f230c98 (PartOf loch_linnhe scotland) (STV 1.0 0.9091)) +(: cnet_partof_11e82483e5 (PartOf loch_ness scotland) (STV 1.0 0.9091)) +(: cnet_partof_c3e3c34261 (PartOf lock canal) (STV 1.0 0.9091)) +(: cnet_partof_309097f3ba (PartOf lock door) (STV 1.0 0.9091)) +(: cnet_partof_e2e924e92b (PartOf lock drawer) (STV 1.0 0.9091)) +(: cnet_partof_dddac940df (PartOf lock firearm) (STV 1.0 0.9091)) +(: cnet_partof_0cb72dc845 (PartOf lock gate) (STV 1.0 0.9091)) +(: cnet_partof_dcfb5f3869 (PartOf lock ignition_switch) (STV 1.0 0.9091)) +(: cnet_partof_924a4c31e2 (PartOf lock lid) (STV 1.0 0.9091)) +(: cnet_partof_6681bdb472 (PartOf lock hairdo) (STV 1.0 0.9091)) +(: cnet_partof_325dbfeee6 (PartOf lockage canal) (STV 1.0 0.9091)) +(: cnet_partof_928bd5fbe8 (PartOf locker_room athletic_facility) (STV 1.0 0.9091)) +(: cnet_partof_134d3b6c8c (PartOf locker_room workplace) (STV 1.0 0.9091)) +(: cnet_partof_b63cd01dba (PartOf lodi cal) (STV 1.0 0.9091)) +(: cnet_partof_9db399c898 (PartOf lodz poland) (STV 1.0 0.9091)) +(: cnet_partof_97d5727d7d (PartOf lofoten norway) (STV 1.0 0.9091)) +(: cnet_partof_24e3c3cbf0 (PartOf lofoten norwegian_sea) (STV 1.0 0.9091)) +(: cnet_partof_4103065d3e (PartOf loft house) (STV 1.0 0.9091)) +(: cnet_partof_d4093958ad (PartOf log ship) (STV 1.0 0.9091)) +(: cnet_partof_db6bb62be2 (PartOf log_line log) (STV 1.0 0.9091)) +(: cnet_partof_ef73b72967 (PartOf logan st_elia_range) (STV 1.0 0.9091)) +(: cnet_partof_686281a917 (PartOf logan yukon) (STV 1.0 0.9091)) +(: cnet_partof_ce3edcef43 (PartOf loganberry loganberry) (STV 1.0 0.9091)) +(: cnet_partof_9b56d0da8d (PartOf loge mezzanine) (STV 1.0 0.9091)) +(: cnet_partof_b1828e9420 (PartOf loin homo) (STV 1.0 0.9091)) +(: cnet_partof_9bcdd12060 (PartOf loin quadruped) (STV 1.0 0.9091)) +(: cnet_partof_ce08a5280c (PartOf loin_of_lamb lamb) (STV 1.0 0.9091)) +(: cnet_partof_40dcbe5654 (PartOf loin torso) (STV 1.0 0.9091)) +(: cnet_partof_f2ed328d77 (PartOf loire france) (STV 1.0 0.9091)) +(: cnet_partof_1040054798 (PartOf loire_valley france) (STV 1.0 0.9091)) +(: cnet_partof_5063b85cf6 (PartOf lombard_street london) (STV 1.0 0.9091)) +(: cnet_partof_24992d4fc4 (PartOf lombardy italy) (STV 1.0 0.9091)) +(: cnet_partof_553b0b0e20 (PartOf lome togo) (STV 1.0 0.9091)) +(: cnet_partof_1352508867 (PartOf london england) (STV 1.0 0.9091)) +(: cnet_partof_3c6db969a2 (PartOf long_beach california) (STV 1.0 0.9091)) +(: cnet_partof_74cfba23dd (PartOf long_island new_york) (STV 1.0 0.9091)) +(: cnet_partof_fc5e00be1b (PartOf long_island_sound atlantic) (STV 1.0 0.9091)) +(: cnet_partof_6b12ad4775 (PartOf long_island_sound connecticut) (STV 1.0 0.9091)) +(: cnet_partof_734b1be96e (PartOf long_island_sound long_island) (STV 1.0 0.9091)) +(: cnet_partof_78d45c5d63 (PartOf long_suit hand) (STV 1.0 0.9091)) +(: cnet_partof_feb63f61dd (PartOf longanberry longan) (STV 1.0 0.9091)) +(: cnet_partof_e26f9bda1d (PartOf loofa luffa) (STV 1.0 0.9091)) +(: cnet_partof_00145abfe6 (PartOf loquat loquat) (STV 1.0 0.9091)) +(: cnet_partof_a38eecb768 (PartOf lord_s_prayer sermon_on_mount) (STV 1.0 0.9091)) +(: cnet_partof_f6e07e3d5f (PartOf lorraine france) (STV 1.0 0.9091)) +(: cnet_partof_87e59b0dee (PartOf los_alamo new_mexico) (STV 1.0 0.9091)) +(: cnet_partof_d2c4ce7698 (PartOf los_angele california) (STV 1.0 0.9091)) +(: cnet_partof_859495fc4a (PartOf lothian_region scotland) (STV 1.0 0.9091)) +(: cnet_partof_b487ee8c58 (PartOf lotus_position yoga) (STV 1.0 0.9091)) +(: cnet_partof_3ddb19f119 (PartOf loudspeaker public_address_system) (STV 1.0 0.9091)) +(: cnet_partof_f4bc8ccec6 (PartOf louisiana deep_south) (STV 1.0 0.9091)) +(: cnet_partof_3c4b4bf82f (PartOf louisiana gulf_state) (STV 1.0 0.9091)) +(: cnet_partof_68fc41df67 (PartOf louisiana south) (STV 1.0 0.9091)) +(: cnet_partof_77fa457af0 (PartOf louisiana united_state) (STV 1.0 0.9091)) +(: cnet_partof_2d303bc8ae (PartOf louisiana_purchase united_state) (STV 1.0 0.9091)) +(: cnet_partof_3e5b62e84a (PartOf louisville kentucky) (STV 1.0 0.9091)) +(: cnet_partof_88b9154523 (PartOf louver jalousie) (STV 1.0 0.9091)) +(: cnet_partof_d43e748dbe (PartOf louvre paris) (STV 1.0 0.9091)) +(: cnet_partof_98ff1f6c38 (PartOf lovage lovage) (STV 1.0 0.9091)) +(: cnet_partof_a6b3494425 (PartOf loving living) (STV 1.0 0.9091)) +(: cnet_partof_95f3701b32 (PartOf low cyclone) (STV 1.0 0.9091)) +(: cnet_partof_3208b70882 (PartOf low_country europe) (STV 1.0 0.9091)) +(: cnet_partof_176a95914c (PartOf low_frequency electromagnetic_spectrum) (STV 1.0 0.9091)) +(: cnet_partof_cd6b3ff761 (PartOf lower_california mexico) (STV 1.0 0.9091)) +(: cnet_partof_8f8117f447 (PartOf lower_egypt egypt) (STV 1.0 0.9091)) +(: cnet_partof_62c255f5ec (PartOf lower_mantle mantle) (STV 1.0 0.9091)) +(: cnet_partof_d1b7a342f8 (PartOf lower_paleolithic paleolithic_age) (STV 1.0 0.9091)) +(: cnet_partof_f274f7e82d (PartOf lower_peninsula michigan) (STV 1.0 0.9091)) +(: cnet_partof_41a92a6379 (PartOf lower_saxony germany) (STV 1.0 0.9091)) +(: cnet_partof_494b4b8b4f (PartOf lower_tunguska siberia) (STV 1.0 0.9091)) +(: cnet_partof_2426023e2f (PartOf lowland scotland) (STV 1.0 0.9091)) +(: cnet_partof_559188e0f0 (PartOf luanda angola) (STV 1.0 0.9091)) +(: cnet_partof_5dbe4e8af2 (PartOf lubavitch belarus) (STV 1.0 0.9091)) +(: cnet_partof_7b944840ad (PartOf lubber_s_hole ship) (STV 1.0 0.9091)) +(: cnet_partof_370db031bc (PartOf lubbock texa) (STV 1.0 0.9091)) +(: cnet_partof_28380d355f (PartOf lubeck germany) (STV 1.0 0.9091)) +(: cnet_partof_a96a6f061c (PartOf lublin poland) (STV 1.0 0.9091)) +(: cnet_partof_2dd5b8f8bf (PartOf lubricating_system internal_combustion_engine) (STV 1.0 0.9091)) +(: cnet_partof_ae871b6c31 (PartOf lubumbashi congo) (STV 1.0 0.9091)) +(: cnet_partof_bba7e3463d (PartOf lucknow india) (STV 1.0 0.9091)) +(: cnet_partof_97da0d6f2f (PartOf luda china) (STV 1.0 0.9091)) +(: cnet_partof_cf0f302539 (PartOf luff fore_and_aft_sail) (STV 1.0 0.9091)) +(: cnet_partof_cf1b760fb5 (PartOf lufkin texa) (STV 1.0 0.9091)) +(: cnet_partof_d01c522bc2 (PartOf lug lug_wrench) (STV 1.0 0.9091)) +(: cnet_partof_269a211872 (PartOf lugsail junk) (STV 1.0 0.9091)) +(: cnet_partof_df82e75622 (PartOf lugsail lugger) (STV 1.0 0.9091)) +(: cnet_partof_20853181e4 (PartOf luke new_testament) (STV 1.0 0.9091)) +(: cnet_partof_0ce760d8ea (PartOf lule_burga balkan_war) (STV 1.0 0.9091)) +(: cnet_partof_147f3e8a3d (PartOf lumbar_vertebra back) (STV 1.0 0.9091)) +(: cnet_partof_fb6daac08a (PartOf lunar_month lunar_year) (STV 1.0 0.9091)) +(: cnet_partof_454ba92d6f (PartOf lund sweden) (STV 1.0 0.9091)) +(: cnet_partof_1da3df9b10 (PartOf lunette vault) (STV 1.0 0.9091)) +(: cnet_partof_cb79507614 (PartOf lung human_body) (STV 1.0 0.9339)) +(: cnet_partof_79f6848618 (PartOf lung lower_respiratory_tract) (STV 1.0 0.9091)) +(: cnet_partof_bcbc550a09 (PartOf luoyang china) (STV 1.0 0.9091)) +(: cnet_partof_9549f2b2f8 (PartOf lusaka zambia) (STV 1.0 0.9091)) +(: cnet_partof_36f9991e87 (PartOf lushun china) (STV 1.0 0.9091)) +(: cnet_partof_912ee195fb (PartOf lushun luda) (STV 1.0 0.9091)) +(: cnet_partof_b6aad6fa92 (PartOf lusitania portugal) (STV 1.0 0.9091)) +(: cnet_partof_eabe05de32 (PartOf lusitania spain) (STV 1.0 0.9091)) +(: cnet_partof_4b141efeed (PartOf lutzen thirty_year_war) (STV 1.0 0.9091)) +(: cnet_partof_21784a36e5 (PartOf lux phot) (STV 1.0 0.9091)) +(: cnet_partof_343b1b8f0b (PartOf luxembourg europe) (STV 1.0 0.9091)) +(: cnet_partof_3583751341 (PartOf luxembourg_ville luxembourg) (STV 1.0 0.9091)) +(: cnet_partof_7eddea6a0d (PartOf luxor egypt) (STV 1.0 0.9091)) +(: cnet_partof_cbe7e89505 (PartOf luzon philippine) (STV 1.0 0.9091)) +(: cnet_partof_44a23defb9 (PartOf lwei kwanza) (STV 1.0 0.9091)) +(: cnet_partof_432966ff1a (PartOf lycia asia_minor) (STV 1.0 0.9091)) +(: cnet_partof_0cf8af0ce4 (PartOf lydia asia_minor) (STV 1.0 0.9091)) +(: cnet_partof_8b07aa09d8 (PartOf lymph circulatory_system) (STV 1.0 0.9091)) +(: cnet_partof_939df483a1 (PartOf lymph_node circulatory_system) (STV 1.0 0.9091)) +(: cnet_partof_88717d9761 (PartOf lymph_node immune_system) (STV 1.0 0.9091)) +(: cnet_partof_87cd5716cd (PartOf lymph_vessel lymphatic_system) (STV 1.0 0.9091)) +(: cnet_partof_313bef6c86 (PartOf lymphatic_system body) (STV 1.0 0.9091)) +(: cnet_partof_34651d1aa7 (PartOf lymphatic_tissue lymphatic_system) (STV 1.0 0.9091)) +(: cnet_partof_ee3064a83e (PartOf lymphocyte lymphatic_system) (STV 1.0 0.9091)) +(: cnet_partof_7030c8fd2c (PartOf lynchburg virginia) (STV 1.0 0.9091)) +(: cnet_partof_3ad2161a8e (PartOf lyon france) (STV 1.0 0.9091)) +(: cnet_partof_41180fce5d (PartOf lyon lyonnais) (STV 1.0 0.9091)) +(: cnet_partof_f9a50966ab (PartOf lyonnais rhone_alpe) (STV 1.0 0.9091)) +(: cnet_partof_9f26d5029a (PartOf lyric song) (STV 1.0 0.9091)) +(: cnet_partof_e7fdbf8e67 (PartOf macadamia_nut macadamia_nut) (STV 1.0 0.9091)) +(: cnet_partof_331701c1d9 (PartOf macedon balkan_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_c2f6934608 (PartOf macedonia balkan_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_0c8c3d9220 (PartOf machu_picchu peru) (STV 1.0 0.9091)) +(: cnet_partof_26253b1117 (PartOf mackenzie canada) (STV 1.0 0.9091)) +(: cnet_partof_d24933f322 (PartOf mackerel common_mackerel) (STV 1.0 0.9091)) +(: cnet_partof_c38937aaa8 (PartOf mackinac_bridge michigan) (STV 1.0 0.9091)) +(: cnet_partof_2090ba923e (PartOf macon georgia) (STV 1.0 0.9091)) +(: cnet_partof_39232f6c40 (PartOf macula retina) (STV 1.0 0.9091)) +(: cnet_partof_ef817e89df (PartOf macule skin) (STV 1.0 0.9091)) +(: cnet_partof_7de29e55ef (PartOf madagascar africa) (STV 1.0 0.9091)) +(: cnet_partof_2e110d11a1 (PartOf madagascar indian_ocean) (STV 1.0 0.9091)) +(: cnet_partof_f87c7beaf6 (PartOf madagascar madagascar) (STV 1.0 0.9091)) +(: cnet_partof_7d8da65c9d (PartOf madeira madeira_island) (STV 1.0 0.9091)) +(: cnet_partof_4b4893efe7 (PartOf madeira brazil) (STV 1.0 0.9091)) +(: cnet_partof_b890968272 (PartOf madeira_island portugal) (STV 1.0 0.9091)) +(: cnet_partof_3a0c977479 (PartOf madison wisconsin) (STV 1.0 0.9091)) +(: cnet_partof_0c11ef9f60 (PartOf madrid spain) (STV 1.0 0.9091)) +(: cnet_partof_bb49da1a4f (PartOf magazine camera) (STV 1.0 0.9091)) +(: cnet_partof_4c04319e07 (PartOf magazine_article magazine) (STV 1.0 0.9091)) +(: cnet_partof_671de56e17 (PartOf magdalena colombia) (STV 1.0 0.9091)) +(: cnet_partof_9c8635dc98 (PartOf magh hindu_calendar) (STV 1.0 0.9091)) +(: cnet_partof_d22b8468f7 (PartOf maghreb africa) (STV 1.0 0.9091)) +(: cnet_partof_4a8c61f667 (PartOf maginot_line france) (STV 1.0 0.9091)) +(: cnet_partof_ed4cd1a98f (PartOf magnetic_bottle tokamak) (STV 1.0 0.9091)) +(: cnet_partof_f44193a9ac (PartOf magnetic_core magnetic_core_memory) (STV 1.0 0.9091)) +(: cnet_partof_5a311307ad (PartOf magnetic_core random_access_memory) (STV 1.0 0.9091)) +(: cnet_partof_f2e34498a7 (PartOf magnetic_head tape_recorder) (STV 1.0 0.9091)) +(: cnet_partof_299b7e41be (PartOf magnetic_needle magnetic_compass) (STV 1.0 0.9091)) +(: cnet_partof_3aa74df592 (PartOf magnetic_stripe credit_card) (STV 1.0 0.9091)) +(: cnet_partof_45d33cb27e (PartOf magnetic_stripe debit_card) (STV 1.0 0.9091)) +(: cnet_partof_35eb951d41 (PartOf magneto ignition) (STV 1.0 0.9091)) +(: cnet_partof_66dfdafe5c (PartOf magnolia magnolia) (STV 1.0 0.9091)) +(: cnet_partof_229b9ba320 (PartOf maharashtra india) (STV 1.0 0.9091)) +(: cnet_partof_41c614f254 (PartOf maiduguri nigeria) (STV 1.0 0.9091)) +(: cnet_partof_6c0b1fd540 (PartOf main infrastructure) (STV 1.0 0.9091)) +(: cnet_partof_490028713d (PartOf main hydrosphere) (STV 1.0 0.9091)) +(: cnet_partof_7193b16709 (PartOf main_clause complex_sentence) (STV 1.0 0.9091)) +(: cnet_partof_c036c2fe81 (PartOf maine new_england) (STV 1.0 0.9091)) +(: cnet_partof_25d1ac903a (PartOf maine united_state) (STV 1.0 0.9091)) +(: cnet_partof_1c5d969541 (PartOf mainspring clockwork) (STV 1.0 0.9091)) +(: cnet_partof_876901be69 (PartOf major_premise syllogism) (STV 1.0 0.9091)) +(: cnet_partof_49b05b1703 (PartOf major_term conclusion) (STV 1.0 0.9091)) +(: cnet_partof_0c34f50c88 (PartOf major_term major_premise) (STV 1.0 0.9091)) +(: cnet_partof_301166ece4 (PartOf majorca balearic_island) (STV 1.0 0.9091)) +(: cnet_partof_2f41befa1a (PartOf majorca spain) (STV 1.0 0.9091)) +(: cnet_partof_dbf5f48859 (PartOf majority adulthood) (STV 1.0 0.9091)) +(: cnet_partof_5e9c9a251d (PartOf makalu himalaya) (STV 1.0 0.9091)) +(: cnet_partof_23ed813044 (PartOf makalu nepal) (STV 1.0 0.9091)) +(: cnet_partof_f2a4bca376 (PartOf makalu tibet) (STV 1.0 0.9091)) +(: cnet_partof_016f0ff276 (PartOf malabo bioko) (STV 1.0 0.9091)) +(: cnet_partof_94c9d58a8a (PartOf malacca malaysia) (STV 1.0 0.9091)) +(: cnet_partof_70a526923f (PartOf malacca rattan) (STV 1.0 0.9091)) +(: cnet_partof_41d13756de (PartOf malaga spain) (STV 1.0 0.9091)) +(: cnet_partof_a206aa7055 (PartOf malawi africa) (STV 1.0 0.9091)) +(: cnet_partof_5b08d0e975 (PartOf malay_archipelago pacific) (STV 1.0 0.9091)) +(: cnet_partof_959dabedd3 (PartOf malay_peninsula asia) (STV 1.0 0.9091)) +(: cnet_partof_783557a202 (PartOf malaysia indochina) (STV 1.0 0.9091)) +(: cnet_partof_2c9740f215 (PartOf malaysia malay_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_25eab7a452 (PartOf malaysia malaysia) (STV 1.0 0.9091)) +(: cnet_partof_6f4d4f5eae (PartOf malaysian_state malaysia) (STV 1.0 0.9091)) +(: cnet_partof_99e15081fb (PartOf maldive indian_ocean) (STV 1.0 0.9091)) +(: cnet_partof_8df8d27f6a (PartOf maldive maldive) (STV 1.0 0.9091)) +(: cnet_partof_602fbf32e3 (PartOf male maldive) (STV 1.0 0.9091)) +(: cnet_partof_089dbd3474 (PartOf male_body male) (STV 1.0 0.9091)) +(: cnet_partof_61e91df12e (PartOf male_chest male_body) (STV 1.0 0.9091)) +(: cnet_partof_9653d8cbd6 (PartOf male_genitalia male_body) (STV 1.0 0.9091)) +(: cnet_partof_a8d15bb3b9 (PartOf male_genitalia male_reproductive_system) (STV 1.0 0.9091)) +(: cnet_partof_f50474fa32 (PartOf male_internal_reproductive_organ male_body) (STV 1.0 0.9091)) +(: cnet_partof_335712b997 (PartOf male_reproductive_gland male_genitalia) (STV 1.0 0.9091)) +(: cnet_partof_f7e4763f6a (PartOf male_reproductive_system male_body) (STV 1.0 0.9091)) +(: cnet_partof_b5728217a0 (PartOf mali africa) (STV 1.0 0.9091)) +(: cnet_partof_1205bd85b1 (PartOf mallet percussion_instrument) (STV 1.0 0.9091)) +(: cnet_partof_d2693b24b2 (PartOf malleus middle_ear) (STV 1.0 0.9091)) +(: cnet_partof_79aa6bdd65 (PartOf malmo sweden) (STV 1.0 0.9091)) +(: cnet_partof_f78dc2fbf3 (PartOf malpighian_body nephron) (STV 1.0 0.9091)) +(: cnet_partof_7a5f59d646 (PartOf malta malta) (STV 1.0 0.9091)) +(: cnet_partof_8babacb815 (PartOf malta mediterranean) (STV 1.0 0.9091)) +(: cnet_partof_0251fd60d9 (PartOf mamey mammee_apple) (STV 1.0 0.9091)) +(: cnet_partof_95412399f3 (PartOf mamillary_body diencephalon) (STV 1.0 0.9091)) +(: cnet_partof_86b27df1de (PartOf mammary_gland female_mammal) (STV 1.0 0.9091)) +(: cnet_partof_070b5fa5f3 (PartOf mammoth_cave_national_park kentucky) (STV 1.0 0.9091)) +(: cnet_partof_fd0b04c838 (PartOf man british_isle) (STV 1.0 0.9091)) +(: cnet_partof_c340255ff6 (PartOf man_hour workday) (STV 1.0 0.9091)) +(: cnet_partof_9dc8d2605c (PartOf managua nicaragua) (STV 1.0 0.9091)) +(: cnet_partof_7dd6ec08b4 (PartOf manama bahrain) (STV 1.0 0.9091)) +(: cnet_partof_336f827be3 (PartOf manchester england) (STV 1.0 0.9091)) +(: cnet_partof_0ae61ba609 (PartOf manchester new_hampshire) (STV 1.0 0.9091)) +(: cnet_partof_43e8315e17 (PartOf manchuria china) (STV 1.0 0.9091)) +(: cnet_partof_9f746ec56a (PartOf mandalay myanmar) (STV 1.0 0.9091)) +(: cnet_partof_af11c6a8b8 (PartOf mandarin mandarin) (STV 1.0 0.9091)) +(: cnet_partof_c2359cb0ed (PartOf mandible jaw) (STV 1.0 0.9091)) +(: cnet_partof_732fbb1978 (PartOf mandibular_notch lower_jaw) (STV 1.0 0.9091)) +(: cnet_partof_8f0a59a63a (PartOf mandrake_root mandrake) (STV 1.0 0.9091)) +(: cnet_partof_a25c80b340 (PartOf mane lion) (STV 1.0 0.9091)) +(: cnet_partof_2bd56f3b9a (PartOf mane homo) (STV 1.0 0.9091)) +(: cnet_partof_934be96d74 (PartOf maneuver athletic_game) (STV 1.0 0.9091)) +(: cnet_partof_0f0185353f (PartOf maneuver military_training) (STV 1.0 0.9091)) +(: cnet_partof_c0b0fe80e3 (PartOf mango mango) (STV 1.0 0.9091)) +(: cnet_partof_a7c6adf0a7 (PartOf mangosteen mangosteen) (STV 1.0 0.9091)) +(: cnet_partof_9e58abe759 (PartOf manhattan new_york) (STV 1.0 0.9091)) +(: cnet_partof_3e66909de7 (PartOf manhattan_island new_york) (STV 1.0 0.9091)) +(: cnet_partof_936426c54d (PartOf manhattan_project executive_branch) (STV 1.0 0.9091)) +(: cnet_partof_1719afe8c7 (PartOf manhole_cover manhole) (STV 1.0 0.9091)) +(: cnet_partof_938bc93537 (PartOf manila philippine) (STV 1.0 0.9091)) +(: cnet_partof_2bf8ea28fe (PartOf manila_bay spanish_american_war) (STV 1.0 0.9091)) +(: cnet_partof_2683661244 (PartOf manipur india) (STV 1.0 0.9091)) +(: cnet_partof_51467af380 (PartOf manitoba canada) (STV 1.0 0.9091)) +(: cnet_partof_c3fd5338d5 (PartOf mankato minnesota) (STV 1.0 0.9091)) +(: cnet_partof_c9006f5fb7 (PartOf mankind nature) (STV 1.0 0.9091)) +(: cnet_partof_f309557a84 (PartOf manner_of_speaking paralanguage) (STV 1.0 0.9091)) +(: cnet_partof_8a56611d21 (PartOf mannheim germany) (STV 1.0 0.9091)) +(: cnet_partof_c7e06e1b73 (PartOf manor_hall mansion) (STV 1.0 0.9091)) +(: cnet_partof_395ca6a7ad (PartOf mansfield ohio) (STV 1.0 0.9091)) +(: cnet_partof_c6f6b8b0aa (PartOf mantel fireplace) (STV 1.0 0.9091)) +(: cnet_partof_e84cc5eeaa (PartOf mantle lithosphere) (STV 1.0 0.9091)) +(: cnet_partof_f14334cded (PartOf manual_alphabet asl) (STV 1.0 0.9091)) +(: cnet_partof_00dbd4bab4 (PartOf manubrium sternum) (STV 1.0 0.9091)) +(: cnet_partof_2a3fdaad62 (PartOf maputo mozambique) (STV 1.0 0.9091)) +(: cnet_partof_6eead13c84 (PartOf marabou marabou) (STV 1.0 0.9091)) +(: cnet_partof_805a9b9dcc (PartOf maracaibo venezuela) (STV 1.0 0.9091)) +(: cnet_partof_139e13b346 (PartOf maracay venezuela) (STV 1.0 0.9091)) +(: cnet_partof_051729eebe (PartOf marang marang) (STV 1.0 0.9091)) +(: cnet_partof_ee2ed6fa34 (PartOf marasca marasca) (STV 1.0 0.9091)) +(: cnet_partof_a22081d2a9 (PartOf march gregorian_calendar) (STV 1.0 0.9091)) +(: cnet_partof_4f5298b58a (PartOf marche italy) (STV 1.0 0.9091)) +(: cnet_partof_981d78c2bc (PartOf mardi_gra new_orlean) (STV 1.0 0.9091)) +(: cnet_partof_e244ec4d35 (PartOf mardi_gra shrovetide) (STV 1.0 0.9091)) +(: cnet_partof_d003aa8a00 (PartOf marengo napoleonic_war) (STV 1.0 0.9091)) +(: cnet_partof_0c0233b2ab (PartOf margin page) (STV 1.0 0.9091)) +(: cnet_partof_a09ed40a3c (PartOf mariana_island micronesia) (STV 1.0 0.9091)) +(: cnet_partof_b27929112f (PartOf mariehamn finland) (STV 1.0 0.9091)) +(: cnet_partof_994efd0277 (PartOf marine_corp_intelligence_activity united_state_marine_corp) (STV 1.0 0.9091)) +(: cnet_partof_01079658f5 (PartOf maritime_province canada) (STV 1.0 0.9091)) +(: cnet_partof_9be2800b1f (PartOf marjoram oregano) (STV 1.0 0.9091)) +(: cnet_partof_c7d472a262 (PartOf mark new_testament) (STV 1.0 0.9091)) +(: cnet_partof_52a82015ce (PartOf marquesa_island french_polynesia) (STV 1.0 0.9091)) +(: cnet_partof_2d70f81c57 (PartOf marquette michigan) (STV 1.0 0.9091)) +(: cnet_partof_58d24daa07 (PartOf marrakesh morocco) (STV 1.0 0.9091)) +(: cnet_partof_08045b8409 (PartOf marrow bone) (STV 1.0 0.9091)) +(: cnet_partof_9ffa0b4314 (PartOf marrow immune_system) (STV 1.0 0.9091)) +(: cnet_partof_bbfbb9fd82 (PartOf marrow marrow) (STV 1.0 0.9091)) +(: cnet_partof_754db3b227 (PartOf marrow marrowbone) (STV 1.0 0.9091)) +(: cnet_partof_a4fd44a75e (PartOf marseille france) (STV 1.0 0.9091)) +(: cnet_partof_1f29e2ba8c (PartOf marshall_island marshall_island) (STV 1.0 0.9091)) +(: cnet_partof_bb786fbd42 (PartOf marshall_island micronesia) (STV 1.0 0.9091)) +(: cnet_partof_0a32ae6058 (PartOf marston_moor english_civil_war) (STV 1.0 0.9091)) +(: cnet_partof_421b8e243b (PartOf marston_moor england) (STV 1.0 0.9091)) +(: cnet_partof_ed3412018f (PartOf martin_luther_king_jr_s_birthday january) (STV 1.0 0.9091)) +(: cnet_partof_e430f09119 (PartOf martingale harness) (STV 1.0 0.9091)) +(: cnet_partof_8b7d469b51 (PartOf martinique windward_island) (STV 1.0 0.9091)) +(: cnet_partof_1cabcec59b (PartOf martinma november) (STV 1.0 0.9091)) +(: cnet_partof_63275e77c1 (PartOf maryland mid_atlantic_state) (STV 1.0 0.9091)) +(: cnet_partof_669a9862b9 (PartOf maryland south) (STV 1.0 0.9091)) +(: cnet_partof_a401f8f98a (PartOf maryland united_state) (STV 1.0 0.9091)) +(: cnet_partof_d034812368 (PartOf maseru lesotho) (STV 1.0 0.9091)) +(: cnet_partof_ad9f85da1d (PartOf mashhad iran) (STV 1.0 0.9091)) +(: cnet_partof_7a19d83f48 (PartOf mason_city iowa) (STV 1.0 0.9091)) +(: cnet_partof_005a4a307a (PartOf masonry construction) (STV 1.0 0.9091)) +(: cnet_partof_1c1865a8cf (PartOf mass high_mass) (STV 1.0 0.9091)) +(: cnet_partof_1da622da70 (PartOf massachusett new_england) (STV 1.0 0.9091)) +(: cnet_partof_669a1d8d64 (PartOf massachusett united_state) (STV 1.0 0.9091)) +(: cnet_partof_48741c88b1 (PartOf massachusett_bay atlantic) (STV 1.0 0.9091)) +(: cnet_partof_bc5f9ffe82 (PartOf massachusett_institute_of_technology cambridge) (STV 1.0 0.9091)) +(: cnet_partof_0a52d348e2 (PartOf massawa eritrea) (STV 1.0 0.9091)) +(: cnet_partof_182064054e (PartOf masse billiard) (STV 1.0 0.9091)) +(: cnet_partof_0f5dab4cbb (PartOf masse pool) (STV 1.0 0.9091)) +(: cnet_partof_107f53636c (PartOf massif range) (STV 1.0 0.9091)) +(: cnet_partof_a8a1992847 (PartOf massif_central france) (STV 1.0 0.9091)) +(: cnet_partof_6cde4da2bb (PartOf mast sailing_vessel) (STV 1.0 0.9091)) +(: cnet_partof_a2689c67ad (PartOf mast_cell connective_tissue) (STV 1.0 0.9091)) +(: cnet_partof_8567fe6dfe (PartOf masthead mast) (STV 1.0 0.9091)) +(: cnet_partof_93d362131f (PartOf mastoid temporal_bone) (STV 1.0 0.9091)) +(: cnet_partof_99b12b7365 (PartOf mastoidale mastoid) (STV 1.0 0.9091)) +(: cnet_partof_1e93a04f49 (PartOf masturbation people_s_sexual_repertoire) (STV 1.0 0.9091)) +(: cnet_partof_78486b2f03 (PartOf matamoro mexico) (STV 1.0 0.9091)) +(: cnet_partof_d416f89b74 (PartOf matchstick match) (STV 1.0 0.9091)) +(: cnet_partof_d49f027316 (PartOf mathematical_notation mathematical_statement) (STV 1.0 0.9091)) +(: cnet_partof_5525eb4794 (PartOf matrix bone) (STV 1.0 0.9091)) +(: cnet_partof_995035b1df (PartOf matrix cartilage) (STV 1.0 0.9091)) +(: cnet_partof_5093cfcb55 (PartOf matrix connective_tissue) (STV 1.0 0.9091)) +(: cnet_partof_cbe8e8c7e0 (PartOf matrix nail) (STV 1.0 0.9091)) +(: cnet_partof_3338792a5f (PartOf matterhorn alp) (STV 1.0 0.9091)) +(: cnet_partof_006cef66a9 (PartOf matterhorn italy) (STV 1.0 0.9091)) +(: cnet_partof_789316c825 (PartOf matterhorn switzerland) (STV 1.0 0.9091)) +(: cnet_partof_871e47e3ed (PartOf matthew new_testament) (STV 1.0 0.9091)) +(: cnet_partof_7bd9f1f064 (PartOf mattress bed) (STV 1.0 0.9572)) +(: cnet_partof_be6d881ca1 (PartOf maui hawaiian_island) (STV 1.0 0.9091)) +(: cnet_partof_16a4cd06de (PartOf mauna_kea hawaii) (STV 1.0 0.9091)) +(: cnet_partof_5ad551dd73 (PartOf mauna_loa hawaii) (STV 1.0 0.9091)) +(: cnet_partof_84f7be9c66 (PartOf mauritania africa) (STV 1.0 0.9091)) +(: cnet_partof_c3baae3710 (PartOf mauritius indian_ocean) (STV 1.0 0.9091)) +(: cnet_partof_4817c63d8f (PartOf mauritius mauritius) (STV 1.0 0.9091)) +(: cnet_partof_ef091df20e (PartOf maxwell weber) (STV 1.0 0.9091)) +(: cnet_partof_b5a54bf013 (PartOf may gregorian_calendar) (STV 1.0 0.9091)) +(: cnet_partof_3406774af9 (PartOf may_apple mayapple) (STV 1.0 0.9091)) +(: cnet_partof_cf8c9ecc34 (PartOf may_day may) (STV 1.0 0.9091)) +(: cnet_partof_672369f0f3 (PartOf mayenne pay_de_la_loire) (STV 1.0 0.9091)) +(: cnet_partof_f515a26db9 (PartOf mazar_i_sharif afghanistan) (STV 1.0 0.9091)) +(: cnet_partof_b2f7b67659 (PartOf mazatlan mexico) (STV 1.0 0.9091)) +(: cnet_partof_b48c4228d5 (PartOf mb gb) (STV 1.0 0.9091)) +(: cnet_partof_9afd8a9166 (PartOf mbabane swaziland) (STV 1.0 0.9091)) +(: cnet_partof_c856249b49 (PartOf mbeya tanzania) (STV 1.0 0.9091)) +(: cnet_partof_c5940249ac (PartOf mcalester oklahoma) (STV 1.0 0.9091)) +(: cnet_partof_d6bd678807 (PartOf mcallen texa) (STV 1.0 0.9091)) +(: cnet_partof_534caa6d58 (PartOf mckinley alaska) (STV 1.0 0.9091)) +(: cnet_partof_9e61fb9b1b (PartOf mckinley alaska_range) (STV 1.0 0.9091)) +(: cnet_partof_933cd583ed (PartOf meander stream) (STV 1.0 0.9091)) +(: cnet_partof_cfe5b8b5ce (PartOf mebibit gibibit) (STV 1.0 0.9091)) +(: cnet_partof_1d3daee723 (PartOf mecca hejaz) (STV 1.0 0.9091)) +(: cnet_partof_f1ef382949 (PartOf mecca saudi_arabia) (STV 1.0 0.9091)) +(: cnet_partof_c756499992 (PartOf medan sumatra) (STV 1.0 0.9091)) +(: cnet_partof_d07a7e02ed (PartOf medellin colombia) (STV 1.0 0.9091)) +(: cnet_partof_8ec31bcaee (PartOf medford massachusett) (STV 1.0 0.9091)) +(: cnet_partof_894ef996c4 (PartOf medford oregon) (STV 1.0 0.9091)) +(: cnet_partof_78a784ac41 (PartOf media_lab mit) (STV 1.0 0.9454)) +(: cnet_partof_cb83a4a23d (PartOf medial_condyle femur) (STV 1.0 0.9091)) +(: cnet_partof_87f18c740c (PartOf mediastinum chest_cavity) (STV 1.0 0.9091)) +(: cnet_partof_bc2ffa4d7d (PartOf medical_center city) (STV 1.0 0.9091)) +(: cnet_partof_85c36c86b8 (PartOf medical_diagnosis medical_care) (STV 1.0 0.9091)) +(: cnet_partof_8e3dca77a8 (PartOf medina hejaz) (STV 1.0 0.9091)) +(: cnet_partof_1b7cf843f5 (PartOf medina saudi_arabia) (STV 1.0 0.9091)) +(: cnet_partof_3e4b72fc1c (PartOf medium_frequency electromagnetic_spectrum) (STV 1.0 0.9091)) +(: cnet_partof_ab96027adf (PartOf medlar medlar) (STV 1.0 0.9091)) +(: cnet_partof_75432e46ac (PartOf medlar wild_medlar) (STV 1.0 0.9091)) +(: cnet_partof_d3d5258906 (PartOf medulla_oblongata brainstem) (STV 1.0 0.9091)) +(: cnet_partof_00222057d0 (PartOf medullary_sheath medullated_nerve_fiber) (STV 1.0 0.9091)) +(: cnet_partof_37956af8e4 (PartOf megabit gigabit) (STV 1.0 0.9091)) +(: cnet_partof_c1768d0f60 (PartOf megabyte gigabyte) (STV 1.0 0.9091)) +(: cnet_partof_748ff76237 (PartOf megaflop teraflop) (STV 1.0 0.9091)) +(: cnet_partof_2e64c8f2cc (PartOf mekong cambodia) (STV 1.0 0.9091)) +(: cnet_partof_f99c37bfb8 (PartOf mekong china) (STV 1.0 0.9091)) +(: cnet_partof_44dde4f0a0 (PartOf mekong lao) (STV 1.0 0.9091)) +(: cnet_partof_f9ab1ff1e4 (PartOf mekong myanmar) (STV 1.0 0.9091)) +(: cnet_partof_365390f5fa (PartOf mekong thailand) (STV 1.0 0.9091)) +(: cnet_partof_373d304df6 (PartOf melanesia austronesia) (STV 1.0 0.9091)) +(: cnet_partof_848c53fc5e (PartOf melanesia oceania) (STV 1.0 0.9091)) +(: cnet_partof_f93ba9c160 (PartOf melbourne florida) (STV 1.0 0.9091)) +(: cnet_partof_77297cc1c5 (PartOf melbourne victoria) (STV 1.0 0.9091)) +(: cnet_partof_f68e154786 (PartOf melon melon) (STV 1.0 0.9091)) +(: cnet_partof_ea1f64e947 (PartOf membranous_labyrinth inner_ear) (STV 1.0 0.9091)) +(: cnet_partof_ead055217e (PartOf memorial_day may) (STV 1.0 0.9091)) +(: cnet_partof_649b3d3661 (PartOf memory computer) (STV 1.0 0.9091)) +(: cnet_partof_c640c0ead2 (PartOf memphis egypt) (STV 1.0 0.9091)) +(: cnet_partof_f9fab8f449 (PartOf memphis tennessee) (STV 1.0 0.9091)) +(: cnet_partof_3ea7dae273 (PartOf menai_strait wale) (STV 1.0 0.9091)) +(: cnet_partof_385817c399 (PartOf mendenhall_glacier alaska) (STV 1.0 0.9091)) +(: cnet_partof_78b304508f (PartOf menopause middle_age) (STV 1.0 0.9091)) +(: cnet_partof_926f514dc4 (PartOf menorrhea adult_female_body) (STV 1.0 0.9091)) +(: cnet_partof_be2058dffb (PartOf menstrual_phase menstrual_cycle) (STV 1.0 0.9091)) +(: cnet_partof_18f92a3b72 (PartOf mentum insect) (STV 1.0 0.9091)) +(: cnet_partof_11fbd0f538 (PartOf mentum orchid) (STV 1.0 0.9091)) +(: cnet_partof_92fb7382d7 (PartOf mercedario ande) (STV 1.0 0.9091)) +(: cnet_partof_4129f7a20e (PartOf mercedario argentina) (STV 1.0 0.9091)) +(: cnet_partof_13be6751bf (PartOf merchandise mercantile_establishment) (STV 1.0 0.9091)) +(: cnet_partof_c4afacbc6e (PartOf mercury_fulminate blasting_cap) (STV 1.0 0.9091)) +(: cnet_partof_95d8e517ee (PartOf mercury_fulminate percussion_cap) (STV 1.0 0.9091)) +(: cnet_partof_e684948360 (PartOf merida yucatan) (STV 1.0 0.9091)) +(: cnet_partof_60c7dc5de9 (PartOf meridian mississippi) (STV 1.0 0.9091)) +(: cnet_partof_1dc5699351 (PartOf merlon battlement) (STV 1.0 0.9091)) +(: cnet_partof_75a5cf4397 (PartOf merrimack massachusett) (STV 1.0 0.9091)) +(: cnet_partof_950d8ce5cb (PartOf merrimack new_hampshire) (STV 1.0 0.9091)) +(: cnet_partof_72427c87e3 (PartOf mesa arizona) (STV 1.0 0.9091)) +(: cnet_partof_48d820426b (PartOf mesa_verde_national_park colorado) (STV 1.0 0.9091)) +(: cnet_partof_921d033d86 (PartOf mesabi_range minnesota) (STV 1.0 0.9091)) +(: cnet_partof_d0fb0c9c3d (PartOf mesasamkranti magh) (STV 1.0 0.9091)) +(: cnet_partof_4e23cec9e3 (PartOf mescal_button mescal) (STV 1.0 0.9091)) +(: cnet_partof_433540857f (PartOf mesh inch) (STV 1.0 0.9091)) +(: cnet_partof_7df5df6e20 (PartOf mesoamerica north_america) (STV 1.0 0.9091)) +(: cnet_partof_649923fab3 (PartOf mesolithic_age stone_age) (STV 1.0 0.9091)) +(: cnet_partof_932088f541 (PartOf mesopotamia iraq) (STV 1.0 0.9091)) +(: cnet_partof_5f39c74576 (PartOf mesosphere atmosphere) (STV 1.0 0.9091)) +(: cnet_partof_6d48e2c703 (PartOf messidor revolutionary_calendar) (STV 1.0 0.9091)) +(: cnet_partof_ae8f7c891f (PartOf messina sicily) (STV 1.0 0.9091)) +(: cnet_partof_0c9e378fec (PartOf metacarpal metacarpus) (STV 1.0 0.9091)) +(: cnet_partof_eb0b3c2c76 (PartOf metacarpal_artery hand) (STV 1.0 0.9091)) +(: cnet_partof_768b06c506 (PartOf metacarpal_vein hand) (STV 1.0 0.9091)) +(: cnet_partof_3e766c00ad (PartOf metacarpus hand) (STV 1.0 0.9091)) +(: cnet_partof_0147cfe27c (PartOf metaphase meiosis) (STV 1.0 0.9091)) +(: cnet_partof_5b33362989 (PartOf metaphase mitosis) (STV 1.0 0.9091)) +(: cnet_partof_f4443bb9ac (PartOf metaphysis long_bone) (STV 1.0 0.9091)) +(: cnet_partof_4195eae21c (PartOf metatarsal metatarsus) (STV 1.0 0.9091)) +(: cnet_partof_2ba9d2276b (PartOf metatarsal_artery foot) (STV 1.0 0.9091)) +(: cnet_partof_67740a1cf6 (PartOf metatarsal_vein foot) (STV 1.0 0.9091)) +(: cnet_partof_c85b28be28 (PartOf metatarsus vertebrate_foot) (STV 1.0 0.9091)) +(: cnet_partof_d9f70e4e28 (PartOf metaurus_river punic_war) (STV 1.0 0.9091)) +(: cnet_partof_4190ecc86c (PartOf meteor meteor_shower) (STV 1.0 0.9091)) +(: cnet_partof_59ed1ae43e (PartOf meter decameter) (STV 1.0 0.9091)) +(: cnet_partof_3b51c9919c (PartOf methodist_denomination methodist_church) (STV 1.0 0.9091)) +(: cnet_partof_b7dc4a1df0 (PartOf metopion frontal_bone) (STV 1.0 0.9091)) +(: cnet_partof_86bfc8bdf1 (PartOf metric_weight_unit metric_system) (STV 1.0 0.9091)) +(: cnet_partof_9625e2a1ff (PartOf meuse world_war_i) (STV 1.0 0.9091)) +(: cnet_partof_c7b59cd7dd (PartOf meuse belgium) (STV 1.0 0.9091)) +(: cnet_partof_a80acdced8 (PartOf meuse france) (STV 1.0 0.9091)) +(: cnet_partof_ced1e8acb6 (PartOf meuse netherland) (STV 1.0 0.9091)) +(: cnet_partof_9a129dca48 (PartOf mexicali mexico) (STV 1.0 0.9091)) +(: cnet_partof_33acb5d070 (PartOf mexico mesoamerica) (STV 1.0 0.9091)) +(: cnet_partof_3a18e03c48 (PartOf mexico_city mexico) (STV 1.0 0.9091)) +(: cnet_partof_fd92b34c00 (PartOf mezereum mezereon) (STV 1.0 0.9091)) +(: cnet_partof_90c418ca02 (PartOf mezuzah deuteronomy) (STV 1.0 0.9091)) +(: cnet_partof_e00a06882f (PartOf miami florida) (STV 1.0 0.9091)) +(: cnet_partof_ab551e6eb6 (PartOf miami_beach florida) (STV 1.0 0.9091)) +(: cnet_partof_5b85ffd8fd (PartOf micah old_testament) (STV 1.0 0.9091)) +(: cnet_partof_093da26f76 (PartOf micah prophet) (STV 1.0 0.9091)) +(: cnet_partof_03d965959c (PartOf michaelma september) (STV 1.0 0.9091)) +(: cnet_partof_23d88c9717 (PartOf michigan midwest) (STV 1.0 0.9091)) +(: cnet_partof_791594fd8a (PartOf michigan united_state) (STV 1.0 0.9091)) +(: cnet_partof_60b24f4674 (PartOf microcytosis microcytic_anemia) (STV 1.0 0.9091)) +(: cnet_partof_3100c16490 (PartOf microfarad millifarad) (STV 1.0 0.9091)) +(: cnet_partof_98414302a2 (PartOf microgauss gauss) (STV 1.0 0.9091)) +(: cnet_partof_6458b7c413 (PartOf microgliacyte microglia) (STV 1.0 0.9091)) +(: cnet_partof_0b6746b675 (PartOf microgram milligram) (STV 1.0 0.9091)) +(: cnet_partof_1ee9e00a24 (PartOf micron millimeter) (STV 1.0 0.9091)) +(: cnet_partof_a730290111 (PartOf micronesia austronesia) (STV 1.0 0.9091)) +(: cnet_partof_5604ab64fa (PartOf micronesia micronesia) (STV 1.0 0.9091)) +(: cnet_partof_1480318b21 (PartOf micronesia oceania) (STV 1.0 0.9091)) +(: cnet_partof_6fc7e4049b (PartOf microprocessor personal_computer) (STV 1.0 0.9091)) +(: cnet_partof_80d3fdac11 (PartOf micropyle ovule) (STV 1.0 0.9091)) +(: cnet_partof_63f40392d5 (PartOf microradian milliradian) (STV 1.0 0.9091)) +(: cnet_partof_4c985c6295 (PartOf microsecond millisecond) (STV 1.0 0.9091)) +(: cnet_partof_ffd86c998b (PartOf microsome cytoplasm) (STV 1.0 0.9091)) +(: cnet_partof_2f13d30e8e (PartOf microvolt volt) (STV 1.0 0.9091)) +(: cnet_partof_f5ed82dafb (PartOf microwave electromagnetic_spectrum) (STV 1.0 0.9091)) +(: cnet_partof_09ebd873bf (PartOf microwave_spectrum electromagnetic_spectrum) (STV 1.0 0.9091)) +(: cnet_partof_4bcd279cd6 (PartOf mid_april april) (STV 1.0 0.9091)) +(: cnet_partof_0e6e8aa35a (PartOf mid_atlantic_ridge atlantic) (STV 1.0 0.9091)) +(: cnet_partof_b7c2b546ac (PartOf mid_atlantic_state united_state) (STV 1.0 0.9091)) +(: cnet_partof_b7744fa76b (PartOf mid_august august) (STV 1.0 0.9091)) +(: cnet_partof_9be203246a (PartOf mid_december december) (STV 1.0 0.9091)) +(: cnet_partof_e67940e6b2 (PartOf mid_february february) (STV 1.0 0.9091)) +(: cnet_partof_ab8e4c4ac8 (PartOf mid_january january) (STV 1.0 0.9091)) +(: cnet_partof_65227e2dc7 (PartOf mid_july july) (STV 1.0 0.9091)) +(: cnet_partof_b9b451bb0b (PartOf mid_june june) (STV 1.0 0.9091)) +(: cnet_partof_e69f93844e (PartOf mid_march march) (STV 1.0 0.9091)) +(: cnet_partof_f136218620 (PartOf mid_may may) (STV 1.0 0.9091)) +(: cnet_partof_c86af7adb3 (PartOf mid_november november) (STV 1.0 0.9091)) +(: cnet_partof_8df54397a0 (PartOf mid_october october) (STV 1.0 0.9091)) +(: cnet_partof_ec22b8abde (PartOf mid_september september) (STV 1.0 0.9091)) +(: cnet_partof_a26f8c8216 (PartOf midafternoon afternoon) (STV 1.0 0.9091)) +(: cnet_partof_062c0b9a9c (PartOf midbrain brain) (STV 1.0 0.9091)) +(: cnet_partof_74566642a8 (PartOf middle torso) (STV 1.0 0.9091)) +(: cnet_partof_4ce8bde959 (PartOf middle_age adulthood) (STV 1.0 0.9091)) +(: cnet_partof_ea195189cc (PartOf middle_age history) (STV 1.0 0.9091)) +(: cnet_partof_e0270ba64f (PartOf middle_ear auditory_apparatus) (STV 1.0 0.9091)) +(: cnet_partof_ab4c423439 (PartOf middle_paleolithic paleolithic_age) (STV 1.0 0.9091)) +(: cnet_partof_880e2e722a (PartOf middle_term major_premise) (STV 1.0 0.9091)) +(: cnet_partof_1091429dc0 (PartOf middle_term minor_premise) (STV 1.0 0.9091)) +(: cnet_partof_041b49ae4c (PartOf midfield playing_field) (STV 1.0 0.9091)) +(: cnet_partof_04b2ab7b78 (PartOf midi france) (STV 1.0 0.9091)) +(: cnet_partof_4a02e83e6f (PartOf midi_pyrenee france) (STV 1.0 0.9091)) +(: cnet_partof_dee82b01d5 (PartOf midland country) (STV 1.0 0.9091)) +(: cnet_partof_0e2ea274ea (PartOf midland texa) (STV 1.0 0.9091)) +(: cnet_partof_c44a0c17ea (PartOf midnight night) (STV 1.0 0.9091)) +(: cnet_partof_bdf489895b (PartOf midstream stream) (STV 1.0 0.9091)) +(: cnet_partof_ec8cac3db3 (PartOf midsummer_day june) (STV 1.0 0.9091)) +(: cnet_partof_16c88a95fc (PartOf midsummer_eve june) (STV 1.0 0.9091)) +(: cnet_partof_7c8cb5c6bf (PartOf midterm gestation) (STV 1.0 0.9091)) +(: cnet_partof_e9ba061730 (PartOf midterm term) (STV 1.0 0.9091)) +(: cnet_partof_c597e45573 (PartOf midway world_war_ii) (STV 1.0 0.9091)) +(: cnet_partof_0251f5dbd0 (PartOf midway carnival) (STV 1.0 0.9091)) +(: cnet_partof_ec01638c87 (PartOf midway_island hawaiian_island) (STV 1.0 0.9091)) +(: cnet_partof_3d5c510c20 (PartOf midweek week) (STV 1.0 0.9091)) +(: cnet_partof_7b1761c050 (PartOf midwest united_state) (STV 1.0 0.9091)) +(: cnet_partof_a4ce35ad9f (PartOf midwinter winter) (STV 1.0 0.9091)) +(: cnet_partof_0312d4e206 (PartOf mihrab mosque) (STV 1.0 0.9091)) +(: cnet_partof_a5f3324789 (PartOf mihrab prayer_rug) (STV 1.0 0.9091)) +(: cnet_partof_ae88bb914e (PartOf mil cypriot_pound) (STV 1.0 0.9091)) +(: cnet_partof_e16c49d76d (PartOf mil inch) (STV 1.0 0.9091)) +(: cnet_partof_8057c2c502 (PartOf milan lombardy) (STV 1.0 0.9091)) +(: cnet_partof_eb9d113f0c (PartOf mile league) (STV 1.0 0.9091)) +(: cnet_partof_58f9985014 (PartOf military_drill military_training) (STV 1.0 0.9091)) +(: cnet_partof_3a6aa49615 (PartOf military_quarter military_post) (STV 1.0 0.9091)) +(: cnet_partof_3e8ab765f7 (PartOf milk montana) (STV 1.0 0.9091)) +(: cnet_partof_c470901f68 (PartOf milliampere ampere) (STV 1.0 0.9091)) +(: cnet_partof_31d4b71798 (PartOf millibar bar) (STV 1.0 0.9091)) +(: cnet_partof_6336dd7401 (PartOf millicurie curie) (STV 1.0 0.9091)) +(: cnet_partof_a40bf132ff (PartOf millifarad farad) (STV 1.0 0.9091)) +(: cnet_partof_e978d9e418 (PartOf milligram grain) (STV 1.0 0.9091)) +(: cnet_partof_91b95b8991 (PartOf millihenry henry) (STV 1.0 0.9091)) +(: cnet_partof_d0caed795e (PartOf milliliter centiliter) (STV 1.0 0.9091)) +(: cnet_partof_5aa947036e (PartOf millime tunisian_dirham) (STV 1.0 0.9091)) +(: cnet_partof_6526db69de (PartOf millimeter centimeter) (STV 1.0 0.9091)) +(: cnet_partof_ced8a32eb4 (PartOf milliradian radian) (STV 1.0 0.9091)) +(: cnet_partof_6687b56442 (PartOf millisecond second) (STV 1.0 0.9091)) +(: cnet_partof_eae5f579af (PartOf millivolt volt) (STV 1.0 0.9091)) +(: cnet_partof_b8836ed445 (PartOf milliwatt watt) (STV 1.0 0.9091)) +(: cnet_partof_19f11320b4 (PartOf millstone gristmill) (STV 1.0 0.9091)) +(: cnet_partof_337f42a638 (PartOf millwheel water_mill) (STV 1.0 0.9091)) +(: cnet_partof_6524407e3e (PartOf milt fish) (STV 1.0 0.9091)) +(: cnet_partof_c94a9d53bd (PartOf milwaukee wisconsin) (STV 1.0 0.9091)) +(: cnet_partof_857f0653ce (PartOf mimesis hysteria) (STV 1.0 0.9091)) +(: cnet_partof_b9f89ee265 (PartOf minamata_bay kyushu) (STV 1.0 0.9091)) +(: cnet_partof_d5362dd41f (PartOf minaret mosque) (STV 1.0 0.9091)) +(: cnet_partof_c1bf157f35 (PartOf minato_ohashi_bridge osaka) (STV 1.0 0.9091)) +(: cnet_partof_71068fd339 (PartOf mindanao philippine) (STV 1.0 0.9091)) +(: cnet_partof_7094b1a5e9 (PartOf minden seven_year_war) (STV 1.0 0.9091)) +(: cnet_partof_f64f786837 (PartOf mindoro philippine) (STV 1.0 0.9091)) +(: cnet_partof_3c76129073 (PartOf mine colliery) (STV 1.0 0.9091)) +(: cnet_partof_e5ebac7f42 (PartOf mineshaft mine) (STV 1.0 0.9091)) +(: cnet_partof_640b336c91 (PartOf minim fluidram) (STV 1.0 0.9091)) +(: cnet_partof_041f2ae42f (PartOf minister cabinet) (STV 1.0 0.9339)) +(: cnet_partof_c44e9bdabd (PartOf minneapolis minnesota) (STV 1.0 0.9091)) +(: cnet_partof_75eb301c62 (PartOf minnesota midwest) (STV 1.0 0.9091)) +(: cnet_partof_cee5920ef0 (PartOf minnesota united_state) (STV 1.0 0.9091)) +(: cnet_partof_7e3c2ad47b (PartOf minor_premise syllogism) (STV 1.0 0.9091)) +(: cnet_partof_90a5f2cfdd (PartOf minor_term conclusion) (STV 1.0 0.9091)) +(: cnet_partof_78ee9a7609 (PartOf minor_term minor_premise) (STV 1.0 0.9091)) +(: cnet_partof_f3140e80c9 (PartOf minsk belarus) (STV 1.0 0.9091)) +(: cnet_partof_d02fc86656 (PartOf minster monastery) (STV 1.0 0.9091)) +(: cnet_partof_cbea58535e (PartOf mint mint) (STV 1.0 0.9091)) +(: cnet_partof_cd918c3928 (PartOf minute hour) (STV 1.0 0.9339)) +(: cnet_partof_d38d826a24 (PartOf minute degree) (STV 1.0 0.9091)) +(: cnet_partof_f8e2288c9f (PartOf minute minute_book) (STV 1.0 0.9091)) +(: cnet_partof_a45f67ee2a (PartOf miocene tertiary) (STV 1.0 0.9091)) +(: cnet_partof_b5f8b93750 (PartOf miscue billiard) (STV 1.0 0.9091)) +(: cnet_partof_8125251b55 (PartOf miscue pool) (STV 1.0 0.9091)) +(: cnet_partof_d269adfb8f (PartOf mishna talmud) (STV 1.0 0.9091)) +(: cnet_partof_594ec5b300 (PartOf mississippi deep_south) (STV 1.0 0.9091)) +(: cnet_partof_3cd0fa2500 (PartOf mississippi gulf_state) (STV 1.0 0.9091)) +(: cnet_partof_d0f8b72a42 (PartOf mississippi south) (STV 1.0 0.9091)) +(: cnet_partof_c92c5bf9ef (PartOf mississippi united_state) (STV 1.0 0.9091)) +(: cnet_partof_5e1498b7fb (PartOf mississippian carboniferous) (STV 1.0 0.9091)) +(: cnet_partof_0fc4f203b8 (PartOf missoula montana) (STV 1.0 0.9091)) +(: cnet_partof_2b1fb6a19e (PartOf missouri united_state) (STV 1.0 0.9091)) +(: cnet_partof_8b4a39dff9 (PartOf missouri midwest) (STV 1.0 0.9091)) +(: cnet_partof_ae11c90646 (PartOf mixer mixed_drink) (STV 1.0 0.9091)) +(: cnet_partof_5fcf981fce (PartOf mobile alabama) (STV 1.0 0.9091)) +(: cnet_partof_345b106f40 (PartOf mobile_bay alabama) (STV 1.0 0.9091)) +(: cnet_partof_a68032ebb2 (PartOf mobile_bay gulf_of_mexico) (STV 1.0 0.9091)) +(: cnet_partof_887dca14cb (PartOf modality physical_therapy) (STV 1.0 0.9091)) +(: cnet_partof_688e7ac88a (PartOf moderate_breeze beaufort_scale) (STV 1.0 0.9091)) +(: cnet_partof_4d27adb769 (PartOf moderate_gale beaufort_scale) (STV 1.0 0.9091)) +(: cnet_partof_98c4d5b70e (PartOf moderator nuclear_reactor) (STV 1.0 0.9091)) +(: cnet_partof_665c88b59e (PartOf modifier phrase) (STV 1.0 0.9091)) +(: cnet_partof_6a7d7b581c (PartOf modiolus cochlea) (STV 1.0 0.9091)) +(: cnet_partof_1c26a208a9 (PartOf module spacecraft) (STV 1.0 0.9091)) +(: cnet_partof_a97ebae6cb (PartOf module system) (STV 1.0 0.9091)) +(: cnet_partof_80d18bcac4 (PartOf mogadishu somalia) (STV 1.0 0.9091)) +(: cnet_partof_75ec78e5b0 (PartOf mohawk_river new_york) (STV 1.0 0.9091)) +(: cnet_partof_9af12211ed (PartOf mojave arizona) (STV 1.0 0.9091)) +(: cnet_partof_38e82fb2e9 (PartOf mojave california) (STV 1.0 0.9091)) +(: cnet_partof_3c7b56653a (PartOf moldboard moldboard_plow) (STV 1.0 0.9091)) +(: cnet_partof_cb209767aa (PartOf molding picture_frame) (STV 1.0 0.9091)) +(: cnet_partof_b4cda1637e (PartOf moldova europe) (STV 1.0 0.9091)) +(: cnet_partof_76a9e75703 (PartOf moline illinois) (STV 1.0 0.9091)) +(: cnet_partof_25b8db364d (PartOf molise italy) (STV 1.0 0.9091)) +(: cnet_partof_a1ffab0a6d (PartOf molokai hawaiian_island) (STV 1.0 0.9091)) +(: cnet_partof_8ed2e3a2fe (PartOf molucca indonesia) (STV 1.0 0.9091)) +(: cnet_partof_c2c7af1dd5 (PartOf mombasa kenya) (STV 1.0 0.9091)) +(: cnet_partof_03a9532eba (PartOf mombin mombin) (STV 1.0 0.9091)) +(: cnet_partof_a414d0ba6e (PartOf moment_of_couple couple) (STV 1.0 0.9091)) +(: cnet_partof_a9613b1ba4 (PartOf moment_of_truth bullfighting) (STV 1.0 0.9091)) +(: cnet_partof_cb491b08a2 (PartOf monaco europe) (STV 1.0 0.9091)) +(: cnet_partof_a22449e2b8 (PartOf monaco_ville monaco) (STV 1.0 0.9091)) +(: cnet_partof_201a7ac724 (PartOf money money_supply) (STV 1.0 0.9091)) +(: cnet_partof_0b8f48eae9 (PartOf mongo tugrik) (STV 1.0 0.9091)) +(: cnet_partof_6fa236f7bc (PartOf mongolia asia) (STV 1.0 0.9091)) +(: cnet_partof_b4e9de4432 (PartOf mongolia mongolia) (STV 1.0 0.9091)) +(: cnet_partof_8b1e867d1a (PartOf monitor computer) (STV 1.0 0.9677)) +(: cnet_partof_290ab0290d (PartOf monitor computer_system) (STV 1.0 0.9339)) +(: cnet_partof_740d355c28 (PartOf monitor television) (STV 1.0 0.9091)) +(: cnet_partof_6416e63677 (PartOf monkfish goosefish) (STV 1.0 0.9091)) +(: cnet_partof_ef26c77b16 (PartOf monmouth_court_house american_revolution) (STV 1.0 0.9091)) +(: cnet_partof_665dc9520e (PartOf monongahela pennsylvania) (STV 1.0 0.9091)) +(: cnet_partof_a6f1144d07 (PartOf monongahela west_virginia) (STV 1.0 0.9091)) +(: cnet_partof_3dcba3100c (PartOf mononuclear_phagocyte_system reticuloendothelial_system) (STV 1.0 0.9091)) +(: cnet_partof_0c3ec261c7 (PartOf monroe louisiana) (STV 1.0 0.9091)) +(: cnet_partof_14776344c2 (PartOf monroe michigan) (STV 1.0 0.9091)) +(: cnet_partof_dcd41e45f2 (PartOf monrovia liberia) (STV 1.0 0.9091)) +(: cnet_partof_bd5ca2ace3 (PartOf mon pube) (STV 1.0 0.9091)) +(: cnet_partof_d5de1f864c (PartOf mon vulva) (STV 1.0 0.9091)) +(: cnet_partof_7a2af0725d (PartOf mont_blanc alp) (STV 1.0 0.9091)) +(: cnet_partof_b5e97ce817 (PartOf mont_blanc france) (STV 1.0 0.9091)) +(: cnet_partof_ce07c78d9b (PartOf mont_blanc italy) (STV 1.0 0.9091)) +(: cnet_partof_0ac5d2908f (PartOf montana united_state) (STV 1.0 0.9339)) +(: cnet_partof_c18221b26c (PartOf monte_carlo monaco) (STV 1.0 0.9091)) +(: cnet_partof_651a958ff1 (PartOf montego_bay jamaica) (STV 1.0 0.9091)) +(: cnet_partof_662addaaa2 (PartOf montenegro balkan_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_13702cc8d0 (PartOf montenegro yugoslavia) (STV 1.0 0.9091)) +(: cnet_partof_1b23592638 (PartOf monterey california) (STV 1.0 0.9091)) +(: cnet_partof_fdc40e5f49 (PartOf monterey_bay california) (STV 1.0 0.9091)) +(: cnet_partof_78518db7ca (PartOf monterrey mexico) (STV 1.0 0.9091)) +(: cnet_partof_a513b20448 (PartOf montevideo uruguay) (STV 1.0 0.9091)) +(: cnet_partof_1879232d08 (PartOf montgomery alabama) (STV 1.0 0.9091)) +(: cnet_partof_26bd2f2198 (PartOf month year) (STV 1.0 0.9091)) +(: cnet_partof_9f0d781030 (PartOf montmartre paris) (STV 1.0 0.9091)) +(: cnet_partof_0c48defde0 (PartOf montpelier vermont) (STV 1.0 0.9091)) +(: cnet_partof_df5ab6cc67 (PartOf montreal quebec) (STV 1.0 0.9091)) +(: cnet_partof_a6f953bc93 (PartOf montserrat west_indy) (STV 1.0 0.9091)) +(: cnet_partof_27d5a227dd (PartOf moonbeam moonlight) (STV 1.0 0.9091)) +(: cnet_partof_db82ba41d9 (PartOf mop_handle swab) (STV 1.0 0.9091)) +(: cnet_partof_527aa17a96 (PartOf moraine glacier) (STV 1.0 0.9091)) +(: cnet_partof_d378ba09e7 (PartOf moravia czech_republic) (STV 1.0 0.9091)) +(: cnet_partof_c707341714 (PartOf moreau_river south_dakota) (STV 1.0 0.9091)) +(: cnet_partof_d0a3580738 (PartOf morello morello) (STV 1.0 0.9091)) +(: cnet_partof_ec6f55050a (PartOf moreton_bay australia) (STV 1.0 0.9091)) +(: cnet_partof_05e556dec5 (PartOf moreton_bay queensland) (STV 1.0 0.9091)) +(: cnet_partof_be85ef9869 (PartOf morgan_city louisiana) (STV 1.0 0.9091)) +(: cnet_partof_5caacb3b77 (PartOf morgantown kentucky) (STV 1.0 0.9091)) +(: cnet_partof_90964d84d8 (PartOf morgantown west_virginia) (STV 1.0 0.9091)) +(: cnet_partof_ce8410b6ff (PartOf mormon_tabernacle utah) (STV 1.0 0.9091)) +(: cnet_partof_e801145795 (PartOf morning day) (STV 1.0 0.9091)) +(: cnet_partof_e1e54026f1 (PartOf morning_sickness pregnancy) (STV 1.0 0.9091)) +(: cnet_partof_831c13dba4 (PartOf morocco maghreb) (STV 1.0 0.9091)) +(: cnet_partof_115737b317 (PartOf moron argentina) (STV 1.0 0.9091)) +(: cnet_partof_68e94dc1da (PartOf morristown new_jersey) (STV 1.0 0.9091)) +(: cnet_partof_3a1d944d16 (PartOf mortarboard academic_costume) (STV 1.0 0.9091)) +(: cnet_partof_20d672ffdd (PartOf mortise mortise_joint) (STV 1.0 0.9091)) +(: cnet_partof_1a27048b82 (PartOf mosaic television_camera) (STV 1.0 0.9091)) +(: cnet_partof_ca1c2f5d82 (PartOf moscow russia) (STV 1.0 0.9091)) +(: cnet_partof_860d0e922d (PartOf mosul iraq) (STV 1.0 0.9091)) +(: cnet_partof_64404bcd55 (PartOf motel_room motel) (STV 1.0 0.9091)) +(: cnet_partof_fe78a75be7 (PartOf mother_s_day may) (STV 1.0 0.9091)) +(: cnet_partof_5528c31c0a (PartOf motherboard computer) (STV 1.0 0.9608)) +(: cnet_partof_7ed14be71b (PartOf motor_neuron motor_nerve) (STV 1.0 0.9091)) +(: cnet_partof_d6a841fa9a (PartOf mound baseball_diamond) (STV 1.0 0.9091)) +(: cnet_partof_77f3097d1d (PartOf mount_bartle_frere queensland) (STV 1.0 0.9091)) +(: cnet_partof_e4fa4bb5e7 (PartOf mount_carmel israel) (STV 1.0 0.9091)) +(: cnet_partof_70044f64d7 (PartOf mount_communism tajikistan) (STV 1.0 0.9091)) +(: cnet_partof_5faee953b1 (PartOf mount_elbert rocky) (STV 1.0 0.9091)) +(: cnet_partof_970c7a3542 (PartOf mount_rainier_national_park washington) (STV 1.0 0.9091)) +(: cnet_partof_dad55db01c (PartOf mount_saint_helen cascade) (STV 1.0 0.9091)) +(: cnet_partof_3edeee3967 (PartOf mount_saint_helen washington) (STV 1.0 0.9091)) +(: cnet_partof_13123c7b03 (PartOf mount_vernon virginia) (STV 1.0 0.9091)) +(: cnet_partof_22af1a7e43 (PartOf mountain_peak mountain) (STV 1.0 0.9091)) +(: cnet_partof_5b9d43950b (PartOf mountainside mountain) (STV 1.0 0.9091)) +(: cnet_partof_8565cc80d2 (PartOf mouse computer) (STV 1.0 0.9572)) +(: cnet_partof_df2b1ea651 (PartOf mouse_button mouse) (STV 1.0 0.9091)) +(: cnet_partof_4334c60b0c (PartOf mouth bottle) (STV 1.0 0.9091)) +(: cnet_partof_f3ea6d294f (PartOf mouth jar) (STV 1.0 0.9091)) +(: cnet_partof_27a62cf1ea (PartOf mouth face) (STV 1.0 0.9091)) +(: cnet_partof_2a4771975a (PartOf mouth mouth) (STV 1.0 0.9091)) +(: cnet_partof_3254bcb383 (PartOf mouth_hole ski_mask) (STV 1.0 0.9091)) +(: cnet_partof_d2fc22338b (PartOf mouthpiece cigarette_holder) (STV 1.0 0.9091)) +(: cnet_partof_584d2bee57 (PartOf mouthpiece pipe) (STV 1.0 0.9091)) +(: cnet_partof_5ae3895dbc (PartOf mouthpiece respirator) (STV 1.0 0.9091)) +(: cnet_partof_79d4dacb49 (PartOf mouthpiece telephone) (STV 1.0 0.9091)) +(: cnet_partof_6bb57079f9 (PartOf mouthpiece wind_instrument) (STV 1.0 0.9091)) +(: cnet_partof_b700ef83a1 (PartOf mouton domestic_sheep) (STV 1.0 0.9091)) +(: cnet_partof_1657498b29 (PartOf movement clock) (STV 1.0 0.9091)) +(: cnet_partof_096eca43f1 (PartOf movement watch) (STV 1.0 0.9091)) +(: cnet_partof_fe50a9967b (PartOf movement sonata) (STV 1.0 0.9091)) +(: cnet_partof_12b2a4e51c (PartOf mozambique africa) (STV 1.0 0.9091)) +(: cnet_partof_c4e23c9537 (PartOf mozambique_channel indian_ocean) (STV 1.0 0.9091)) +(: cnet_partof_04620ab9c9 (PartOf mudguard bicycle) (STV 1.0 0.9091)) +(: cnet_partof_5d1d12527a (PartOf mudguard motorcycle) (STV 1.0 0.9091)) +(: cnet_partof_558565b491 (PartOf muharram islamic_calendar) (STV 1.0 0.9091)) +(: cnet_partof_49ee699bff (PartOf mukalla yemen) (STV 1.0 0.9091)) +(: cnet_partof_83da906a0a (PartOf mulberry mulberry) (STV 1.0 0.9091)) +(: cnet_partof_589a328ee0 (PartOf mull inner_hebride) (STV 1.0 0.9091)) +(: cnet_partof_48265c89a2 (PartOf mullet mullet) (STV 1.0 0.9091)) +(: cnet_partof_0c545a965b (PartOf mullion window) (STV 1.0 0.9091)) +(: cnet_partof_714197e542 (PartOf mumbai india) (STV 1.0 0.9091)) +(: cnet_partof_a5674eb388 (PartOf muncie indiana) (STV 1.0 0.9091)) +(: cnet_partof_ac13988dc3 (PartOf mung mung) (STV 1.0 0.9091)) +(: cnet_partof_e2e4353654 (PartOf munich bavaria) (STV 1.0 0.9091)) +(: cnet_partof_ee8a241e85 (PartOf murmansk russia) (STV 1.0 0.9091)) +(: cnet_partof_1a55ba7220 (PartOf murray australia) (STV 1.0 0.9091)) +(: cnet_partof_7ae2e5fe54 (PartOf murrumbidgee australia) (STV 1.0 0.9091)) +(: cnet_partof_569d67cba9 (PartOf muscadine muscadine) (STV 1.0 0.9091)) +(: cnet_partof_f5405fa6d0 (PartOf muscat oman) (STV 1.0 0.9091)) +(: cnet_partof_be20548422 (PartOf muscle body) (STV 1.0 0.9339)) +(: cnet_partof_9d004f9f0c (PartOf muscle muscular_structure) (STV 1.0 0.9091)) +(: cnet_partof_c4c4efa07e (PartOf muscle_cell muscle) (STV 1.0 0.9091)) +(: cnet_partof_9e5872b9c1 (PartOf muscovy russia) (STV 1.0 0.9091)) +(: cnet_partof_7a3daa058c (PartOf muscular_structure musculoskeletal_system) (STV 1.0 0.9091)) +(: cnet_partof_c759124076 (PartOf musculoskeletal_system body) (STV 1.0 0.9091)) +(: cnet_partof_43604bf563 (PartOf musculus_abductor_digiti_minimi_manus pinkie) (STV 1.0 0.9091)) +(: cnet_partof_8348afa0f6 (PartOf musculus_abductor_pollicis thumb) (STV 1.0 0.9091)) +(: cnet_partof_56b0439746 (PartOf musculus_adductor_brevis thigh) (STV 1.0 0.9091)) +(: cnet_partof_ddc18530d9 (PartOf musculus_adductor_longus thigh) (STV 1.0 0.9091)) +(: cnet_partof_8a8b0d0a9c (PartOf musculus_adductor_magnus thigh) (STV 1.0 0.9091)) +(: cnet_partof_54dc522df2 (PartOf musculus_articularis_cubiti elbow) (STV 1.0 0.9091)) +(: cnet_partof_7ae36dd8c2 (PartOf musculus_articularis_genus knee) (STV 1.0 0.9091)) +(: cnet_partof_484af3a3c1 (PartOf musculus_bicep_femoris thigh) (STV 1.0 0.9091)) +(: cnet_partof_4db7077495 (PartOf musculus_sphincter_ani_externus anal_sphincter) (STV 1.0 0.9091)) +(: cnet_partof_1987095266 (PartOf musculus_sphincter_ani_internus anal_sphincter) (STV 1.0 0.9091)) +(: cnet_partof_123b511d16 (PartOf musculus_sphincter_ductus_choledochi common_bile_duct) (STV 1.0 0.9091)) +(: cnet_partof_2e969699e7 (PartOf musculus_sphincter_ductus_pancreatici pancreatic_duct) (STV 1.0 0.9091)) +(: cnet_partof_62ffc4d5bd (PartOf mushroom stuffed_mushroom) (STV 1.0 0.9091)) +(: cnet_partof_19601dcc63 (PartOf musical_notation score) (STV 1.0 0.9091)) +(: cnet_partof_c0c3c123dd (PartOf muskellunge muskellunge) (STV 1.0 0.9091)) +(: cnet_partof_93c690f3da (PartOf muskmelon sweet_melon) (STV 1.0 0.9091)) +(: cnet_partof_f3bfd7c03a (PartOf muskogee oklahoma) (STV 1.0 0.9091)) +(: cnet_partof_2e64fbaf3f (PartOf mussel edible_mussel) (STV 1.0 0.9091)) +(: cnet_partof_88dcd8bdbb (PartOf mustache beard) (STV 1.0 0.9091)) +(: cnet_partof_e9bda75091 (PartOf mustard_seed black_mustard) (STV 1.0 0.9091)) +(: cnet_partof_ba61a16c5d (PartOf mustard_seed white_mustard) (STV 1.0 0.9091)) +(: cnet_partof_942f5e0afc (PartOf mutagenesis mutation) (STV 1.0 0.9091)) +(: cnet_partof_11798423e3 (PartOf muztagh kunlun) (STV 1.0 0.9091)) +(: cnet_partof_7369e9cc45 (PartOf muzzle head) (STV 1.0 0.9091)) +(: cnet_partof_942a6ad0ab (PartOf mwanza tanzania) (STV 1.0 0.9091)) +(: cnet_partof_80ec706352 (PartOf myanmar indochina) (STV 1.0 0.9091)) +(: cnet_partof_7fb3f52f76 (PartOf myanmar malay_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_2b873748b9 (PartOf mycelium fungus) (STV 1.0 0.9091)) +(: cnet_partof_99d2042169 (PartOf mycenae greece) (STV 1.0 0.9091)) +(: cnet_partof_d85d919830 (PartOf myelencephalon hindbrain) (STV 1.0 0.9091)) +(: cnet_partof_79c1c4803e (PartOf myocardial_infarction heart_attack) (STV 1.0 0.9091)) +(: cnet_partof_35ce1a53c4 (PartOf myofibril striated_muscle_cell) (STV 1.0 0.9091)) +(: cnet_partof_532ec6e630 (PartOf myometrium uterus) (STV 1.0 0.9091)) +(: cnet_partof_0f914c25c0 (PartOf myriagram centner) (STV 1.0 0.9091)) +(: cnet_partof_833f121788 (PartOf mysore india) (STV 1.0 0.9091)) +(: cnet_partof_dd58852ad1 (PartOf n_djamena chad) (STV 1.0 0.9091)) +(: cnet_partof_1ac8cd3e48 (PartOf nablus west_bank) (STV 1.0 0.9091)) +(: cnet_partof_c2be56defa (PartOf nacimiento ande) (STV 1.0 0.9091)) +(: cnet_partof_007fdfc5c7 (PartOf nacimiento argentina) (STV 1.0 0.9091)) +(: cnet_partof_a327661380 (PartOf nadir celestial_sphere) (STV 1.0 0.9091)) +(: cnet_partof_af5f4c642c (PartOf nafud saudi_arabia) (STV 1.0 0.9091)) +(: cnet_partof_654f3a0805 (PartOf nag_hammadi upper_egypt) (STV 1.0 0.9091)) +(: cnet_partof_ce378b6fb6 (PartOf nagano honshu) (STV 1.0 0.9091)) +(: cnet_partof_6523a1d5c7 (PartOf nagano japan) (STV 1.0 0.9091)) +(: cnet_partof_70c340a4f5 (PartOf nagasaki japan) (STV 1.0 0.9091)) +(: cnet_partof_89a0b9f805 (PartOf nagasaki kyushu) (STV 1.0 0.9091)) +(: cnet_partof_42da7af699 (PartOf nagoya honshu) (STV 1.0 0.9091)) +(: cnet_partof_78bc635ea1 (PartOf nagoya japan) (STV 1.0 0.9091)) +(: cnet_partof_a379cb4486 (PartOf naha_city japan) (STV 1.0 0.9091)) +(: cnet_partof_9dba748012 (PartOf naha_city okinawa) (STV 1.0 0.9091)) +(: cnet_partof_49f0433077 (PartOf nahum old_testament) (STV 1.0 0.9091)) +(: cnet_partof_7985c8079f (PartOf nahum prophet) (STV 1.0 0.9091)) +(: cnet_partof_b6570cfb26 (PartOf nail house) (STV 1.0 0.9091)) +(: cnet_partof_04a2dd39a4 (PartOf nail digit) (STV 1.0 0.9091)) +(: cnet_partof_86967046fd (PartOf nail integumentary_system) (STV 1.0 0.9091)) +(: cnet_partof_5c53fbc964 (PartOf nailhead nail) (STV 1.0 0.9091)) +(: cnet_partof_36b2f2a5db (PartOf nairobi kenya) (STV 1.0 0.9091)) +(: cnet_partof_d5da5b675a (PartOf nakuru kenya) (STV 1.0 0.9091)) +(: cnet_partof_76ad508042 (PartOf nalchik russia) (STV 1.0 0.9091)) +(: cnet_partof_a880332ef2 (PartOf namib_desert namibia) (STV 1.0 0.9091)) +(: cnet_partof_6b21107c7e (PartOf namibia africa) (STV 1.0 0.9091)) +(: cnet_partof_e09580c8df (PartOf namoi australia) (STV 1.0 0.9091)) +(: cnet_partof_b6febb5dc9 (PartOf nampa idaho) (STV 1.0 0.9091)) +(: cnet_partof_4ef9435bd8 (PartOf namur belgium) (STV 1.0 0.9091)) +(: cnet_partof_70a834f2de (PartOf nan thailand) (STV 1.0 0.9091)) +(: cnet_partof_36dadfe556 (PartOf nan_ling china) (STV 1.0 0.9091)) +(: cnet_partof_d42b9d7b0d (PartOf nanaimo british_columbia) (STV 1.0 0.9091)) +(: cnet_partof_b6d46f3665 (PartOf nanchang china) (STV 1.0 0.9091)) +(: cnet_partof_61e50a70ae (PartOf nancy france) (STV 1.0 0.9091)) +(: cnet_partof_ed5e8b70ab (PartOf nanda_devi himalaya) (STV 1.0 0.9091)) +(: cnet_partof_8cc95a02a0 (PartOf nanda_devi india) (STV 1.0 0.9091)) +(: cnet_partof_73a2b6399c (PartOf nanga_parbat himalaya) (STV 1.0 0.9091)) +(: cnet_partof_38e9b3a386 (PartOf nanga_parbat kashmir) (STV 1.0 0.9091)) +(: cnet_partof_306d56e850 (PartOf nanjing china) (STV 1.0 0.9091)) +(: cnet_partof_f36bdccd62 (PartOf nanning china) (STV 1.0 0.9091)) +(: cnet_partof_6314d9321a (PartOf nanogram microgram) (STV 1.0 0.9091)) +(: cnet_partof_569ee4f1de (PartOf nanometer micron) (STV 1.0 0.9091)) +(: cnet_partof_b8d5a3b2d7 (PartOf nanosecond microsecond) (STV 1.0 0.9091)) +(: cnet_partof_0865b56bbe (PartOf nanovolt volt) (STV 1.0 0.9091)) +(: cnet_partof_3319438489 (PartOf nante france) (STV 1.0 0.9091)) +(: cnet_partof_240db968c6 (PartOf nape neck) (STV 1.0 0.9091)) +(: cnet_partof_e6440508ad (PartOf naple campania) (STV 1.0 0.9091)) +(: cnet_partof_d41e43dcd0 (PartOf narragansett_bay rhode_island) (STV 1.0 0.9091)) +(: cnet_partof_be8079b135 (PartOf narthex basilica) (STV 1.0 0.9091)) +(: cnet_partof_45b84d898c (PartOf narthex church) (STV 1.0 0.9091)) +(: cnet_partof_3fc9ac990b (PartOf nasal bridge) (STV 1.0 0.9091)) +(: cnet_partof_4dda9c64da (PartOf nasal_cavity nose) (STV 1.0 0.9091)) +(: cnet_partof_c17fdef6f2 (PartOf nasal_cavity upper_respiratory_tract) (STV 1.0 0.9091)) +(: cnet_partof_d04762a3f6 (PartOf naseby english_civil_war) (STV 1.0 0.9091)) +(: cnet_partof_bde7e78fcc (PartOf naseby northamptonshire) (STV 1.0 0.9091)) +(: cnet_partof_6d0819eae9 (PartOf nashville tennessee) (STV 1.0 0.9091)) +(: cnet_partof_3336748342 (PartOf nasopharynx throat) (STV 1.0 0.9091)) +(: cnet_partof_ff506e12cf (PartOf nassau bahama) (STV 1.0 0.9091)) +(: cnet_partof_12f3695ef0 (PartOf nasturtium nasturtium) (STV 1.0 0.9091)) +(: cnet_partof_3ab0d4b22e (PartOf natal brazil) (STV 1.0 0.9091)) +(: cnet_partof_9bd8b442da (PartOf natal south_africa) (STV 1.0 0.9091)) +(: cnet_partof_ed0eddd371 (PartOf natchez mississippi) (STV 1.0 0.9091)) +(: cnet_partof_f0bc08b0ed (PartOf national_baseball_hall_of_fame cooperstown) (STV 1.0 0.9091)) +(: cnet_partof_263097df3a (PartOf national_climatic_data_center national_oceanic_and_atmospheric_administration) (STV 1.0 0.9091)) +(: cnet_partof_5c86ce2d07 (PartOf national_geospatial_intelligence_agency department_of_defense) (STV 1.0 0.9091)) +(: cnet_partof_223aa3075b (PartOf national_guard_bureau national_guard) (STV 1.0 0.9091)) +(: cnet_partof_4824f69de0 (PartOf national_institute_of_justice department_of_justice) (STV 1.0 0.9091)) +(: cnet_partof_7162dc7391 (PartOf national_institute_of_standard_and_technology technology_administration) (STV 1.0 0.9091)) +(: cnet_partof_26f0031a5e (PartOf national_institute_of_health department_of_health_and_human_service) (STV 1.0 0.9091)) +(: cnet_partof_a84c93c5eb (PartOf national_library_of_medicine national_institute_of_health) (STV 1.0 0.9091)) +(: cnet_partof_e6ab34449c (PartOf national_oceanic_and_atmospheric_administration department_of_commerce) (STV 1.0 0.9091)) +(: cnet_partof_07748cede7 (PartOf national_park_service department_of_interior) (STV 1.0 0.9091)) +(: cnet_partof_51e326e522 (PartOf national_reconnaissance_office department_of_defense) (STV 1.0 0.9091)) +(: cnet_partof_3bdc563eb4 (PartOf national_security_agency department_of_defense) (STV 1.0 0.9091)) +(: cnet_partof_b902d2b822 (PartOf national_technical_information_service technology_administration) (STV 1.0 0.9091)) +(: cnet_partof_7c9763472b (PartOf national_weather_service national_oceanic_and_atmospheric_administration) (STV 1.0 0.9091)) +(: cnet_partof_a9bd3a420f (PartOf nature personality) (STV 1.0 0.9091)) +(: cnet_partof_63846ed94d (PartOf nauru micronesia) (STV 1.0 0.9091)) +(: cnet_partof_697e5a1317 (PartOf nauru nauru) (STV 1.0 0.9091)) +(: cnet_partof_a374216d10 (PartOf naval_air_warfare_center_weapon_division united_state_navy) (STV 1.0 0.9091)) +(: cnet_partof_875ed22c9e (PartOf naval_gun warship) (STV 1.0 0.9091)) +(: cnet_partof_b5b70b7433 (PartOf naval_research_laboratory united_state_navy) (STV 1.0 0.9091)) +(: cnet_partof_2e7bbf5a47 (PartOf naval_special_warfare united_state_navy) (STV 1.0 0.9091)) +(: cnet_partof_9625aa6dc7 (PartOf naval_surface_warfare_center united_state_navy) (STV 1.0 0.9091)) +(: cnet_partof_b18ff7e5fa (PartOf naval_underwater_warfare_center united_state_navy) (STV 1.0 0.9091)) +(: cnet_partof_c8a89699f0 (PartOf nave church) (STV 1.0 0.9091)) +(: cnet_partof_ca025214ad (PartOf navel abdomen) (STV 1.0 0.9091)) +(: cnet_partof_10484738b8 (PartOf navigation_light airplane) (STV 1.0 0.9091)) +(: cnet_partof_0d84944411 (PartOf nazareth galilee) (STV 1.0 0.9091)) +(: cnet_partof_c2801cc33a (PartOf nebraska midwest) (STV 1.0 0.9091)) +(: cnet_partof_02ee4b3942 (PartOf nebraska united_state) (STV 1.0 0.9091)) +(: cnet_partof_6cd61183d8 (PartOf neck garment) (STV 1.0 0.9091)) +(: cnet_partof_e934c1353d (PartOf neck body) (STV 1.0 0.9091)) +(: cnet_partof_a46e2d17f5 (PartOf neckar germany) (STV 1.0 0.9091)) +(: cnet_partof_dcf1531938 (PartOf neckband sweater) (STV 1.0 0.9091)) +(: cnet_partof_0722221ac2 (PartOf neckline blouse) (STV 1.0 0.9091)) +(: cnet_partof_78842bf9da (PartOf neckline dress) (STV 1.0 0.9091)) +(: cnet_partof_634da26d34 (PartOf neckline sweater) (STV 1.0 0.9091)) +(: cnet_partof_f35057ca9a (PartOf nectarine nectarine) (STV 1.0 0.9091)) +(: cnet_partof_0ce2f00009 (PartOf neem_seed neem) (STV 1.0 0.9091)) +(: cnet_partof_49d897f43d (PartOf neencephalon brain) (STV 1.0 0.9091)) +(: cnet_partof_8a11bb90e7 (PartOf negeri_sembilan malaysia) (STV 1.0 0.9091)) +(: cnet_partof_7f01ff432b (PartOf negev israel) (STV 1.0 0.9091)) +(: cnet_partof_2e4b37bdbb (PartOf nehemiah hagiographa) (STV 1.0 0.9091)) +(: cnet_partof_daa8f0219c (PartOf nehemiah old_testament) (STV 1.0 0.9091)) +(: cnet_partof_3835e58d8c (PartOf nejd arabian_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_d0b45a7e93 (PartOf nejd saudi_arabia) (STV 1.0 0.9091)) +(: cnet_partof_01866b9c62 (PartOf nemea greece) (STV 1.0 0.9091)) +(: cnet_partof_1634ba5915 (PartOf neolithic_age stone_age) (STV 1.0 0.9091)) +(: cnet_partof_664f59a88f (PartOf neosho kansa) (STV 1.0 0.9091)) +(: cnet_partof_3cca3e9691 (PartOf neosho oklahoma) (STV 1.0 0.9091)) +(: cnet_partof_f61ccea544 (PartOf nepal asia) (STV 1.0 0.9091)) +(: cnet_partof_fc6eda0b28 (PartOf nephron kidney) (STV 1.0 0.9091)) +(: cnet_partof_c54d2f8bcb (PartOf nerve human_body) (STV 1.0 0.9091)) +(: cnet_partof_d91ef29164 (PartOf nerve_cell nervous_system) (STV 1.0 0.9091)) +(: cnet_partof_cc8177cd7f (PartOf nerve_ending axon) (STV 1.0 0.9091)) +(: cnet_partof_da7bb6d307 (PartOf nerve_fiber nerve) (STV 1.0 0.9091)) +(: cnet_partof_80d89dfdc8 (PartOf nervous_system body) (STV 1.0 0.9091)) +(: cnet_partof_ee1e3f0704 (PartOf nervous_tissue nervous_system) (STV 1.0 0.9091)) +(: cnet_partof_c2f7607f2e (PartOf nessie loch_ness) (STV 1.0 0.9091)) +(: cnet_partof_79ba800cf4 (PartOf net_melon net_melon) (STV 1.0 0.9091)) +(: cnet_partof_91f5ef2c19 (PartOf netherland europe) (STV 1.0 0.9091)) +(: cnet_partof_8682c18649 (PartOf netherland_antille lesser_antille) (STV 1.0 0.9091)) +(: cnet_partof_68419e44de (PartOf neural_arch centrum) (STV 1.0 0.9091)) +(: cnet_partof_d61188f8f5 (PartOf neural_network nervous_system) (STV 1.0 0.9091)) +(: cnet_partof_65b4c73e19 (PartOf neuroepithelium inner_ear) (STV 1.0 0.9091)) +(: cnet_partof_bc8670ef64 (PartOf neuroepithelium nasal_cavity) (STV 1.0 0.9091)) +(: cnet_partof_efabe705ba (PartOf neuroepithelium retina) (STV 1.0 0.9091)) +(: cnet_partof_cac93c921f (PartOf neuroepithelium tastebud) (STV 1.0 0.9091)) +(: cnet_partof_99793d9dc2 (PartOf neuroglia central_nervous_system) (STV 1.0 0.9091)) +(: cnet_partof_0d1635eb1d (PartOf neurogliacyte neuroglia) (STV 1.0 0.9091)) +(: cnet_partof_65ea962b5a (PartOf neurolemma nerve_fiber) (STV 1.0 0.9091)) +(: cnet_partof_967cba7c30 (PartOf neuron brain) (STV 1.0 0.9524)) +(: cnet_partof_9d47894aee (PartOf neuron cerebral_cortex) (STV 1.0 0.9091)) +(: cnet_partof_b56d25ee21 (PartOf neutron atom) (STV 1.0 0.9339)) +(: cnet_partof_f2b3979932 (PartOf neva russia) (STV 1.0 0.9091)) +(: cnet_partof_6115f5ade3 (PartOf nevada southwest) (STV 1.0 0.9091)) +(: cnet_partof_806badb048 (PartOf nevada united_state) (STV 1.0 0.9091)) +(: cnet_partof_c04b08b794 (PartOf neve glacier) (STV 1.0 0.9091)) +(: cnet_partof_014aece750 (PartOf never_never australian_desert) (STV 1.0 0.9091)) +(: cnet_partof_9151901ec9 (PartOf nevis saint_kitt_and_nevis) (STV 1.0 0.9091)) +(: cnet_partof_b51d36796d (PartOf new_amsterdam new_york) (STV 1.0 0.9091)) +(: cnet_partof_93e6ef0c2d (PartOf new_britain bismarck_archipelago) (STV 1.0 0.9091)) +(: cnet_partof_b939233179 (PartOf new_brunswick maritime_province) (STV 1.0 0.9091)) +(: cnet_partof_93155bafaf (PartOf new_brunswick new_jersey) (STV 1.0 0.9091)) +(: cnet_partof_76699e4f19 (PartOf new_caledonia melanesia) (STV 1.0 0.9091)) +(: cnet_partof_5608bda741 (PartOf new_england united_state) (STV 1.0 0.9339)) +(: cnet_partof_253000a234 (PartOf new_forest hampshire) (STV 1.0 0.9091)) +(: cnet_partof_64f594384f (PartOf new_guinea pacific) (STV 1.0 0.9091)) +(: cnet_partof_cbe38c2cde (PartOf new_hampshire new_england) (STV 1.0 0.9091)) +(: cnet_partof_1a68845eb9 (PartOf new_hampshire united_state) (STV 1.0 0.9091)) +(: cnet_partof_f2aee9dc9e (PartOf new_haven connecticut) (STV 1.0 0.9091)) +(: cnet_partof_3cc4a3fa72 (PartOf new_ireland bismarck_archipelago) (STV 1.0 0.9091)) +(: cnet_partof_51d11206bf (PartOf new_jersey mid_atlantic_state) (STV 1.0 0.9091)) +(: cnet_partof_3ee0f70fc6 (PartOf new_jersey united_state) (STV 1.0 0.9091)) +(: cnet_partof_4f8a1250ff (PartOf new_london connecticut) (STV 1.0 0.9091)) +(: cnet_partof_e9be28ed5e (PartOf new_mexico southwest) (STV 1.0 0.9091)) +(: cnet_partof_1b1f476a81 (PartOf new_mexico united_state) (STV 1.0 0.9091)) +(: cnet_partof_fd9822464c (PartOf new_moon month) (STV 1.0 0.9091)) +(: cnet_partof_0da5c38d7e (PartOf new_netherland new_york) (STV 1.0 0.9091)) +(: cnet_partof_021c36d9b3 (PartOf new_orlean louisiana) (STV 1.0 0.9091)) +(: cnet_partof_abbd762c7a (PartOf new_river united_state) (STV 1.0 0.9091)) +(: cnet_partof_7ecb8f3666 (PartOf new_river_gorge_bridge fayetteville) (STV 1.0 0.9091)) +(: cnet_partof_a0586f2a8f (PartOf new_siberian_island arctic_ocean) (STV 1.0 0.9091)) +(: cnet_partof_e103484c06 (PartOf new_south_wale australia) (STV 1.0 0.9091)) +(: cnet_partof_65398c768a (PartOf new_testament bible) (STV 1.0 0.9091)) +(: cnet_partof_8b6ca63b7a (PartOf new_year_s_day january) (STV 1.0 0.9091)) +(: cnet_partof_180906dd61 (PartOf new_year_s_eve december) (STV 1.0 0.9091)) +(: cnet_partof_2957e9efd8 (PartOf new_york mid_atlantic_state) (STV 1.0 0.9091)) +(: cnet_partof_44481b48d0 (PartOf new_york new_york) (STV 1.0 0.9091)) +(: cnet_partof_bc8fc83ef0 (PartOf new_york united_state) (STV 1.0 0.9091)) +(: cnet_partof_fccd87f5f0 (PartOf new_york_bay atlantic) (STV 1.0 0.9091)) +(: cnet_partof_24ae3ee4fe (PartOf new_york_bay new_york) (STV 1.0 0.9091)) +(: cnet_partof_43f3318350 (PartOf new_york_city new_york_state) (STV 1.0 0.9091)) +(: cnet_partof_892c696e4f (PartOf new_zealand new_zealand) (STV 1.0 0.9091)) +(: cnet_partof_4a1f4d4697 (PartOf new_zealand pacific) (STV 1.0 0.9091)) +(: cnet_partof_60b780408f (PartOf newark new_jersey) (STV 1.0 0.9091)) +(: cnet_partof_5dbdfe5b58 (PartOf newburgh new_york) (STV 1.0 0.9091)) +(: cnet_partof_19300dba6f (PartOf newcastle england) (STV 1.0 0.9091)) +(: cnet_partof_1871b7d7ba (PartOf newfoundland atlantic) (STV 1.0 0.9091)) +(: cnet_partof_42bf5626b7 (PartOf newfoundland_and_labrador canada) (STV 1.0 0.9091)) +(: cnet_partof_172ed9c58e (PartOf newgate london) (STV 1.0 0.9091)) +(: cnet_partof_fd9e3360df (PartOf newport rhode_island) (STV 1.0 0.9091)) +(: cnet_partof_5b79257cd8 (PartOf newport wale) (STV 1.0 0.9091)) +(: cnet_partof_0708c5b40e (PartOf newport_new virginia) (STV 1.0 0.9091)) +(: cnet_partof_cc3450b006 (PartOf new media) (STV 1.0 0.9091)) +(: cnet_partof_00732d3bba (PartOf new_article newspaper) (STV 1.0 0.9091)) +(: cnet_partof_0e05adbef8 (PartOf new_item newspaper) (STV 1.0 0.9091)) +(: cnet_partof_c924db9319 (PartOf newton sthene) (STV 1.0 0.9091)) +(: cnet_partof_c3bde838fe (PartOf ngwee zambian_kwacha) (STV 1.0 0.9091)) +(: cnet_partof_3483fd3730 (PartOf niagara canada) (STV 1.0 0.9091)) +(: cnet_partof_2ed0aabe60 (PartOf niagara new_york) (STV 1.0 0.9091)) +(: cnet_partof_263237c3ad (PartOf niagara niagara) (STV 1.0 0.9091)) +(: cnet_partof_f727a956ae (PartOf niagara ontario) (STV 1.0 0.9091)) +(: cnet_partof_2669ad98bc (PartOf niagara united_state) (STV 1.0 0.9091)) +(: cnet_partof_a1df6b6e56 (PartOf niagara_fall new_york) (STV 1.0 0.9091)) +(: cnet_partof_cbcef5db96 (PartOf niamey niger) (STV 1.0 0.9091)) +(: cnet_partof_bb76c1f725 (PartOf nib pen) (STV 1.0 0.9091)) +(: cnet_partof_7c5f3baf65 (PartOf nicaea bithynia) (STV 1.0 0.9091)) +(: cnet_partof_7075fc1cad (PartOf nicaragua central_america) (STV 1.0 0.9091)) +(: cnet_partof_1698f3d6a2 (PartOf nice france) (STV 1.0 0.9091)) +(: cnet_partof_9caf0adc37 (PartOf nicosia cyprus) (STV 1.0 0.9091)) +(: cnet_partof_3b81f9f63f (PartOf nictitating_membrane eye) (STV 1.0 0.9091)) +(: cnet_partof_825d2782c0 (PartOf niger africa) (STV 1.0 0.9091)) +(: cnet_partof_e27222b251 (PartOf niger benin) (STV 1.0 0.9091)) +(: cnet_partof_1bd91d9d7a (PartOf niger guinea) (STV 1.0 0.9091)) +(: cnet_partof_16cf7e338c (PartOf niger mali) (STV 1.0 0.9091)) +(: cnet_partof_a85dd44586 (PartOf niger niger) (STV 1.0 0.9091)) +(: cnet_partof_cd40586050 (PartOf niger nigeria) (STV 1.0 0.9091)) +(: cnet_partof_06dbbe0073 (PartOf nigeria africa) (STV 1.0 0.9091)) +(: cnet_partof_a02d73ee7d (PartOf night day) (STV 1.0 0.9091)) +(: cnet_partof_b49018852c (PartOf nightcap twin_bill) (STV 1.0 0.9091)) +(: cnet_partof_ac52ee130f (PartOf nightcap nightgown) (STV 1.0 0.9091)) +(: cnet_partof_503ca2909f (PartOf nihau hawaiian_island) (STV 1.0 0.9091)) +(: cnet_partof_f1c478a631 (PartOf nijmegen netherland) (STV 1.0 0.9091)) +(: cnet_partof_b95f9ccae7 (PartOf nile egypt) (STV 1.0 0.9091)) +(: cnet_partof_a340800e71 (PartOf nile sudan) (STV 1.0 0.9091)) +(: cnet_partof_e2ef21813e (PartOf nile uganda) (STV 1.0 0.9091)) +(: cnet_partof_06b94bf76b (PartOf nilgiri_hill india) (STV 1.0 0.9091)) +(: cnet_partof_ec70de030f (PartOf nineteenth_amendment united_state_constitution) (STV 1.0 0.9091)) +(: cnet_partof_65db8ed475 (PartOf ninety old_age) (STV 1.0 0.9091)) +(: cnet_partof_ae7a397b99 (PartOf nineveh assyria) (STV 1.0 0.9091)) +(: cnet_partof_31a7537f10 (PartOf nineveh iraq) (STV 1.0 0.9091)) +(: cnet_partof_b7dc01d69e (PartOf niobrara united_state) (STV 1.0 0.9091)) +(: cnet_partof_75ebee80c3 (PartOf nipple nursing_bottle) (STV 1.0 0.9091)) +(: cnet_partof_c822ed77e2 (PartOf nipple mammary_gland) (STV 1.0 0.9091)) +(: cnet_partof_f9601a2a62 (PartOf nisan jewish_calendar) (STV 1.0 0.9091)) +(: cnet_partof_33eed22a11 (PartOf nivose revolutionary_calendar) (STV 1.0 0.9091)) +(: cnet_partof_14bdef12c7 (PartOf nizhnyi_novgorod russia) (STV 1.0 0.9091)) +(: cnet_partof_da1e0920eb (PartOf nob_hill san_francisco) (STV 1.0 0.9091)) +(: cnet_partof_4c8d7b5763 (PartOf nocturnal_emission wet_dream) (STV 1.0 0.9091)) +(: cnet_partof_cfceb3b5b3 (PartOf node computer_network) (STV 1.0 0.9091)) +(: cnet_partof_1164cdf29d (PartOf nogale arizona) (STV 1.0 0.9091)) +(: cnet_partof_150ead336a (PartOf nogale mexico) (STV 1.0 0.9091)) +(: cnet_partof_3b9e8e2e2c (PartOf nome alaska) (STV 1.0 0.9091)) +(: cnet_partof_86ea9ec1f6 (PartOf non_nucleoside_reverse_transcriptase_inhibitor drug_cocktail) (STV 1.0 0.9091)) +(: cnet_partof_4769f55897 (PartOf nonproliferation_center central_intelligence_agency) (STV 1.0 0.9091)) +(: cnet_partof_9266fe1749 (PartOf noon day) (STV 1.0 0.9091)) +(: cnet_partof_16be066140 (PartOf noose hangman_s_rope) (STV 1.0 0.9091)) +(: cnet_partof_e92bf40bf7 (PartOf noose lasso) (STV 1.0 0.9091)) +(: cnet_partof_e03ec1b492 (PartOf nord_pas_de_calais france) (STV 1.0 0.9091)) +(: cnet_partof_79067ce4f2 (PartOf norfolk virginia) (STV 1.0 0.9091)) +(: cnet_partof_3ebb9a8a05 (PartOf norfolk_island australia) (STV 1.0 0.9091)) +(: cnet_partof_9b4f766102 (PartOf normandie france) (STV 1.0 0.9091)) +(: cnet_partof_e9e2e31522 (PartOf north united_state) (STV 1.0 0.9091)) +(: cnet_partof_8d9c6c59ac (PartOf north_africa africa) (STV 1.0 0.9091)) +(: cnet_partof_24b6181d34 (PartOf north_america america) (STV 1.0 0.9091)) +(: cnet_partof_7fe728cef9 (PartOf north_america northern_hemisphere) (STV 1.0 0.9091)) +(: cnet_partof_5a5bff5fcb (PartOf north_america occident) (STV 1.0 0.9091)) +(: cnet_partof_373f0eec4b (PartOf north_america western_hemisphere) (STV 1.0 0.9091)) +(: cnet_partof_78791597f2 (PartOf north_american_country north_america) (STV 1.0 0.9091)) +(: cnet_partof_b9626b0e3b (PartOf north_atlantic atlantic) (STV 1.0 0.9091)) +(: cnet_partof_c1ed22b93d (PartOf north_atlantic_council north_atlantic_treaty_organization) (STV 1.0 0.9091)) +(: cnet_partof_ffad47a470 (PartOf north_carolina carolina) (STV 1.0 0.9091)) +(: cnet_partof_9047aaf6be (PartOf north_carolina south) (STV 1.0 0.9091)) +(: cnet_partof_8722e52758 (PartOf north_carolina united_state) (STV 1.0 0.9091)) +(: cnet_partof_ada5e09a89 (PartOf north_cascade_national_park washington) (STV 1.0 0.9091)) +(: cnet_partof_f4ceacb1dd (PartOf north_dakota dakota) (STV 1.0 0.9091)) +(: cnet_partof_ba9ed1c6bc (PartOf north_dakota united_state) (STV 1.0 0.9091)) +(: cnet_partof_6cf1093ae8 (PartOf north_island new_zealand) (STV 1.0 0.9091)) +(: cnet_partof_393298048b (PartOf north_korea asia) (STV 1.0 0.9091)) +(: cnet_partof_f1d89e0e9d (PartOf north_korea korea) (STV 1.0 0.9091)) +(: cnet_partof_e2e68e7c2f (PartOf north_pacific pacific) (STV 1.0 0.9091)) +(: cnet_partof_39ef7a56c7 (PartOf north_peak alaska_range) (STV 1.0 0.9091)) +(: cnet_partof_b13bcce1e0 (PartOf north_platte nebraska) (STV 1.0 0.9091)) +(: cnet_partof_01367e32f0 (PartOf north_platte colorado) (STV 1.0 0.9091)) +(: cnet_partof_939c97331f (PartOf north_platte wyoming) (STV 1.0 0.9091)) +(: cnet_partof_2c84e38ec7 (PartOf north_sea atlantic) (STV 1.0 0.9091)) +(: cnet_partof_cac49582c9 (PartOf north_vietnam vietnam) (STV 1.0 0.9091)) +(: cnet_partof_8563954ee6 (PartOf north_yorkshire england) (STV 1.0 0.9091)) +(: cnet_partof_efb2070989 (PartOf northampton northamptonshire) (STV 1.0 0.9091)) +(: cnet_partof_096311f786 (PartOf northamptonshire england) (STV 1.0 0.9091)) +(: cnet_partof_c695530b13 (PartOf northeast east) (STV 1.0 0.9091)) +(: cnet_partof_707b7ea62e (PartOf northern_europe europe) (STV 1.0 0.9091)) +(: cnet_partof_83f3949afb (PartOf northern_ireland europe) (STV 1.0 0.9091)) +(: cnet_partof_c9304b40da (PartOf northern_ireland ireland) (STV 1.0 0.9091)) +(: cnet_partof_deb1b28aa8 (PartOf northern_ireland united_kingdom) (STV 1.0 0.9091)) +(: cnet_partof_6da085028d (PartOf northern_mariana mariana_island) (STV 1.0 0.9091)) +(: cnet_partof_d6a9ed8cf1 (PartOf northern_territory australia) (STV 1.0 0.9091)) +(: cnet_partof_77beaeac26 (PartOf northumberland england) (STV 1.0 0.9091)) +(: cnet_partof_2a3c94bbc3 (PartOf northumbria england) (STV 1.0 0.9091)) +(: cnet_partof_29f465d9b9 (PartOf northwest west) (STV 1.0 0.9091)) +(: cnet_partof_e5b95910e6 (PartOf northwest_territory canada) (STV 1.0 0.9091)) +(: cnet_partof_dae8687ec4 (PartOf norwegian_lobster norway_lobster) (STV 1.0 0.9091)) +(: cnet_partof_0598b62390 (PartOf norwegian_sea atlantic) (STV 1.0 0.9091)) +(: cnet_partof_e7ab98fea2 (PartOf nose head) (STV 1.0 0.9091)) +(: cnet_partof_b3011b983b (PartOf nose aircraft) (STV 1.0 0.9091)) +(: cnet_partof_e8a4ac458f (PartOf nose missile) (STV 1.0 0.9091)) +(: cnet_partof_8a576058a5 (PartOf nose face) (STV 1.0 0.9091)) +(: cnet_partof_5124bc481c (PartOf nose upper_respiratory_tract) (STV 1.0 0.9091)) +(: cnet_partof_a81d253d34 (PartOf nose_cone heat_shield) (STV 1.0 0.9091)) +(: cnet_partof_21ad139040 (PartOf noseband bridle) (STV 1.0 0.9091)) +(: cnet_partof_fe3fde8872 (PartOf nosepiece body_armor) (STV 1.0 0.9091)) +(: cnet_partof_6eb23248c2 (PartOf nosewheel landing_gear) (STV 1.0 0.9091)) +(: cnet_partof_a676304e10 (PartOf nostril nose) (STV 1.0 0.9339)) +(: cnet_partof_00e965d8b3 (PartOf note music) (STV 1.0 0.9339)) +(: cnet_partof_79d958e4cb (PartOf nouakchott mauritania) (STV 1.0 0.9091)) +(: cnet_partof_44859b0cca (PartOf noun sentence) (STV 1.0 0.9339)) +(: cnet_partof_084210ed1a (PartOf noun noun) (STV 1.0 0.9091)) +(: cnet_partof_9e8e0c218b (PartOf nova_lisboa angola) (STV 1.0 0.9091)) +(: cnet_partof_98e15e7ad5 (PartOf nova_scotia maritime_province) (STV 1.0 0.9091)) +(: cnet_partof_fcc71cf70c (PartOf nova_scotia nova_scotia) (STV 1.0 0.9091)) +(: cnet_partof_42be08d111 (PartOf novaya_zemlya russia) (STV 1.0 0.9091)) +(: cnet_partof_c146adc628 (PartOf november gregorian_calendar) (STV 1.0 0.9091)) +(: cnet_partof_a63baa0ace (PartOf november_5 november) (STV 1.0 0.9091)) +(: cnet_partof_9562e06d25 (PartOf novgorod russia) (STV 1.0 0.9091)) +(: cnet_partof_0b9d5806b8 (PartOf novosibirsk russia) (STV 1.0 0.9091)) +(: cnet_partof_63c8432df6 (PartOf nozzle gas_burner) (STV 1.0 0.9091)) +(: cnet_partof_8bea1b22b7 (PartOf nozzle oilcan) (STV 1.0 0.9091)) +(: cnet_partof_d978640849 (PartOf nozzle sprinkler_system) (STV 1.0 0.9091)) +(: cnet_partof_40ba845025 (PartOf nubia africa) (STV 1.0 0.9091)) +(: cnet_partof_e6598e05a1 (PartOf nubian_desert arabian_desert) (STV 1.0 0.9091)) +(: cnet_partof_184ced26c9 (PartOf nubian_desert sudan) (STV 1.0 0.9091)) +(: cnet_partof_2d2775cb64 (PartOf nucellus ovule) (STV 1.0 0.9091)) +(: cnet_partof_331c40fa16 (PartOf nucleic_acid deoxyribonucleic_acid) (STV 1.0 0.9091)) +(: cnet_partof_c3173bbf42 (PartOf nucleic_acid ribonucleic_acid) (STV 1.0 0.9091)) +(: cnet_partof_e83e3d7809 (PartOf nucleolus nucleus) (STV 1.0 0.9091)) +(: cnet_partof_19a0f7b878 (PartOf nucleolus_organizer chromosome) (STV 1.0 0.9091)) +(: cnet_partof_260b33d106 (PartOf nucleon nucleus) (STV 1.0 0.9091)) +(: cnet_partof_183e46c82e (PartOf nucleoside_reverse_transcriptase_inhibitor drug_cocktail) (STV 1.0 0.9091)) +(: cnet_partof_adc26109fc (PartOf nucleus cell) (STV 1.0 0.9454)) +(: cnet_partof_fcf53e0dcc (PartOf nucleus comet) (STV 1.0 0.9091)) +(: cnet_partof_55c6c25aae (PartOf nucleus atom) (STV 1.0 0.9091)) +(: cnet_partof_248068c10e (PartOf null_set all_set) (STV 1.0 0.9091)) +(: cnet_partof_4e849c1455 (PartOf nullarbor_plain australia) (STV 1.0 0.9091)) +(: cnet_partof_edb3f93eea (PartOf number scale) (STV 1.0 0.9091)) +(: cnet_partof_77570c7fcc (PartOf number old_testament) (STV 1.0 0.9091)) +(: cnet_partof_df69952046 (PartOf number torah) (STV 1.0 0.9091)) +(: cnet_partof_dcad2071d8 (PartOf numidia north_africa) (STV 1.0 0.9091)) +(: cnet_partof_d873b903d9 (PartOf nunavut canada) (STV 1.0 0.9091)) +(: cnet_partof_b68b9fe1c3 (PartOf nuptse himalaya) (STV 1.0 0.9091)) +(: cnet_partof_eabb3af671 (PartOf nuptse nepal) (STV 1.0 0.9091)) +(: cnet_partof_5ba2f98d06 (PartOf nuptse tibet) (STV 1.0 0.9091)) +(: cnet_partof_06aa6205b1 (PartOf nuremberg germany) (STV 1.0 0.9091)) +(: cnet_partof_103a57c30a (PartOf nut nut_and_bolt) (STV 1.0 0.9091)) +(: cnet_partof_73ce739d94 (PartOf nutmeg nutmeg) (STV 1.0 0.9091)) +(: cnet_partof_644d17e828 (PartOf nyala sudan) (STV 1.0 0.9091)) +(: cnet_partof_787638423f (PartOf nyamuragira congo) (STV 1.0 0.9091)) +(: cnet_partof_df12b61f8e (PartOf nybble byte) (STV 1.0 0.9091)) +(: cnet_partof_25e77a50a2 (PartOf nyiragongo congo) (STV 1.0 0.9091)) +(: cnet_partof_2d65823a4a (PartOf o alphabet) (STV 1.0 0.9091)) +(: cnet_partof_f9ac9f1b95 (PartOf oahu hawaiian_island) (STV 1.0 0.9091)) +(: cnet_partof_44be323216 (PartOf oakland california) (STV 1.0 0.9091)) +(: cnet_partof_4f708e129f (PartOf oasis desert) (STV 1.0 0.9091)) +(: cnet_partof_e312d692a9 (PartOf oast oast_house) (STV 1.0 0.9091)) +(: cnet_partof_57ac1b073a (PartOf oat cereal_oat) (STV 1.0 0.9091)) +(: cnet_partof_6f424c63f5 (PartOf oaxaca mexico) (STV 1.0 0.9091)) +(: cnet_partof_cdecbdf2d2 (PartOf ob siberia) (STV 1.0 0.9091)) +(: cnet_partof_f363e67421 (PartOf obadiah old_testament) (STV 1.0 0.9091)) +(: cnet_partof_8e80957285 (PartOf obadiah prophet) (STV 1.0 0.9091)) +(: cnet_partof_d62fa65c47 (PartOf object_oriented_database_management_system hypermedia) (STV 1.0 0.9091)) +(: cnet_partof_af16f797de (PartOf objective compound_microscope) (STV 1.0 0.9091)) +(: cnet_partof_d260d750c8 (PartOf objective optical_telescope) (STV 1.0 0.9091)) +(: cnet_partof_f059643f0f (PartOf obolus gram) (STV 1.0 0.9091)) +(: cnet_partof_85bec4138a (PartOf obverse coin) (STV 1.0 0.9091)) +(: cnet_partof_6d4f07634b (PartOf occipital_bone cranium) (STV 1.0 0.9091)) +(: cnet_partof_b59ad84c07 (PartOf occipital_gyrus occipital_lobe) (STV 1.0 0.9091)) +(: cnet_partof_c9bc846c7a (PartOf occipital_lobe cerebral_cortex) (STV 1.0 0.9091)) +(: cnet_partof_03f6a66693 (PartOf occipital_protuberance occipital_bone) (STV 1.0 0.9091)) +(: cnet_partof_95bf5ed67d (PartOf occipitomastoid_suture cranium) (STV 1.0 0.9091)) +(: cnet_partof_a99d04352f (PartOf occiput human_head) (STV 1.0 0.9091)) +(: cnet_partof_d86a0bbe30 (PartOf occupational_safety_and_health_administration department_of_labor) (STV 1.0 0.9091)) +(: cnet_partof_81983786e4 (PartOf ocean hydrosphere) (STV 1.0 0.9091)) +(: cnet_partof_1ad7086712 (PartOf oceania pacific) (STV 1.0 0.9091)) +(: cnet_partof_e4259d3fd6 (PartOf october gregorian_calendar) (STV 1.0 0.9091)) +(: cnet_partof_4430e49689 (PartOf octopus octopus) (STV 1.0 0.9091)) +(: cnet_partof_879ba8fe34 (PartOf ocular_muscle eye) (STV 1.0 0.9091)) +(: cnet_partof_2209df79a5 (PartOf oder germany) (STV 1.0 0.9091)) +(: cnet_partof_5d44e0b790 (PartOf oder poland) (STV 1.0 0.9091)) +(: cnet_partof_088bdfc264 (PartOf odessa texa) (STV 1.0 0.9091)) +(: cnet_partof_4f41c75894 (PartOf odessa ukraine) (STV 1.0 0.9091)) +(: cnet_partof_af46314fc1 (PartOf odometer motor_vehicle) (STV 1.0 0.9091)) +(: cnet_partof_a1cc941544 (PartOf odontoid_process axis) (STV 1.0 0.9091)) +(: cnet_partof_2f4d34b864 (PartOf off_broadway manhattan) (STV 1.0 0.9091)) +(: cnet_partof_4063a08004 (PartOf off_line_equipment computer_system) (STV 1.0 0.9091)) +(: cnet_partof_7454918622 (PartOf offertory holy_eucharist) (STV 1.0 0.9091)) +(: cnet_partof_a83ec04d28 (PartOf office office_building) (STV 1.0 0.9091)) +(: cnet_partof_119d26085e (PartOf office_of_inspector_general federal_trade_commission) (STV 1.0 0.9091)) +(: cnet_partof_642920721c (PartOf office_of_intelligence_support department_of_treasury) (STV 1.0 0.9091)) +(: cnet_partof_6e449197a2 (PartOf office_of_naval_intelligence united_state_navy) (STV 1.0 0.9091)) +(: cnet_partof_2a803de0ef (PartOf offing main) (STV 1.0 0.9091)) +(: cnet_partof_fb8516908f (PartOf ogden utah) (STV 1.0 0.9091)) +(: cnet_partof_4477574448 (PartOf ohio midwest) (STV 1.0 0.9091)) +(: cnet_partof_569d06632c (PartOf ohio united_state) (STV 1.0 0.9091)) +(: cnet_partof_ce3ebfcf21 (PartOf ohio_state_university columbus) (STV 1.0 0.9091)) +(: cnet_partof_94e64d4f4f (PartOf ohm megohm) (STV 1.0 0.9091)) +(: cnet_partof_5ff23474af (PartOf oil_filter lubricating_system) (STV 1.0 0.9091)) +(: cnet_partof_f3b10d4f4c (PartOf oil_pump lubricating_system) (STV 1.0 0.9091)) +(: cnet_partof_84d72d0c27 (PartOf ojo_del_salado ande) (STV 1.0 0.9091)) +(: cnet_partof_7b5c8efa93 (PartOf ojo_del_salado argentina) (STV 1.0 0.9091)) +(: cnet_partof_0222a5c41b (PartOf ojo_del_salado chile) (STV 1.0 0.9091)) +(: cnet_partof_56848975a4 (PartOf okeechobee florida) (STV 1.0 0.9091)) +(: cnet_partof_1f772dd9ce (PartOf okefenokee_swamp florida) (STV 1.0 0.9091)) +(: cnet_partof_b3820dcd17 (PartOf okefenokee_swamp georgia) (STV 1.0 0.9091)) +(: cnet_partof_dd80698bf4 (PartOf okinawa world_war_ii) (STV 1.0 0.9091)) +(: cnet_partof_13ece40bf7 (PartOf okinawa ryukyu_island) (STV 1.0 0.9091)) +(: cnet_partof_235449d471 (PartOf oklahoma united_state) (STV 1.0 0.9091)) +(: cnet_partof_1a2e4b54bd (PartOf oklahoma_city oklahoma) (STV 1.0 0.9091)) +(: cnet_partof_5ce26f55eb (PartOf okra okra) (STV 1.0 0.9091)) +(: cnet_partof_4e9ac4917a (PartOf ola talipot) (STV 1.0 0.9091)) +(: cnet_partof_70d6837365 (PartOf old_bailey london) (STV 1.0 0.9091)) +(: cnet_partof_ee09b3699f (PartOf old_faithful yellowstone_national_park) (STV 1.0 0.9091)) +(: cnet_partof_c0bbe4562a (PartOf old_testament bible) (STV 1.0 0.9091)) +(: cnet_partof_d70162ed1a (PartOf old_world eastern_hemisphere) (STV 1.0 0.9091)) +(: cnet_partof_190f9e2d8e (PartOf olduvai_gorge tanzania) (STV 1.0 0.9091)) +(: cnet_partof_ffd1c30f30 (PartOf olecranon ulna) (STV 1.0 0.9091)) +(: cnet_partof_d2c8cd2c0f (PartOf olfactory_bulb rhinencephalon) (STV 1.0 0.9091)) +(: cnet_partof_c6b5895a3e (PartOf olfactory_nerve sensory_system) (STV 1.0 0.9091)) +(: cnet_partof_f97947e421 (PartOf oligocene tertiary) (STV 1.0 0.9091)) +(: cnet_partof_d93abde648 (PartOf oligodendrocyte oligodendroglia) (STV 1.0 0.9091)) +(: cnet_partof_549742b6e3 (PartOf oligodendroglia medullary_sheath) (STV 1.0 0.9091)) +(: cnet_partof_97021dedde (PartOf olive olive) (STV 1.0 0.9091)) +(: cnet_partof_b2e377085a (PartOf olympia peloponnese) (STV 1.0 0.9091)) +(: cnet_partof_a15708dc6e (PartOf olympia washington) (STV 1.0 0.9091)) +(: cnet_partof_af06c28270 (PartOf olympic_national_park washington) (STV 1.0 0.9091)) +(: cnet_partof_569d9a6540 (PartOf olympus greece) (STV 1.0 0.9091)) +(: cnet_partof_26634b0bfa (PartOf omaha nebraska) (STV 1.0 0.9091)) +(: cnet_partof_d46c3e9029 (PartOf oman arabian_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_0e3396889e (PartOf oman asia) (STV 1.0 0.9091)) +(: cnet_partof_e41711d61e (PartOf oman gulf_state) (STV 1.0 0.9091)) +(: cnet_partof_e8d997ac7e (PartOf omdurman sudan) (STV 1.0 0.9091)) +(: cnet_partof_38dd540a57 (PartOf omiya honshu) (STV 1.0 0.9091)) +(: cnet_partof_78d04cc33f (PartOf omiya japan) (STV 1.0 0.9091)) +(: cnet_partof_c24e96bce6 (PartOf ommatidium compound_eye) (STV 1.0 0.9091)) +(: cnet_partof_980868cfa2 (PartOf omsk russia) (STV 1.0 0.9091)) +(: cnet_partof_90b8dc05d4 (PartOf onion onion) (STV 1.0 0.9091)) +(: cnet_partof_35ad5a0e55 (PartOf ontario canada) (STV 1.0 0.9339)) +(: cnet_partof_5c39be5833 (PartOf opening surface) (STV 1.0 0.9091)) +(: cnet_partof_c7b9499f09 (PartOf opening_line new_article) (STV 1.0 0.9091)) +(: cnet_partof_d7f1fcc67c (PartOf openmind internet) (STV 1.0 0.9339)) +(: cnet_partof_cfc641fe63 (PartOf operating_expense operating_budget) (STV 1.0 0.9091)) +(: cnet_partof_ee106c0120 (PartOf operating_system platform) (STV 1.0 0.9091)) +(: cnet_partof_a1ce9299d9 (PartOf operation_desert_storm persian_gulf_war) (STV 1.0 0.9091)) +(: cnet_partof_c9c0a742b6 (PartOf operator_gene operon) (STV 1.0 0.9091)) +(: cnet_partof_13407d29a9 (PartOf ophryon frontal_bone) (STV 1.0 0.9091)) +(: cnet_partof_4a41fc89bd (PartOf optic_nerve diencephalon) (STV 1.0 0.9091)) +(: cnet_partof_9574fe647e (PartOf optic_nerve visual_system) (STV 1.0 0.9091)) +(: cnet_partof_e4a867350a (PartOf optical_fiber fiber_optic_cable) (STV 1.0 0.9091)) +(: cnet_partof_f9b709c3fa (PartOf optical_fiber fiberscope) (STV 1.0 0.9091)) +(: cnet_partof_d26fd19cba (PartOf oral_stage infancy) (STV 1.0 0.9091)) +(: cnet_partof_9fe43f86ec (PartOf oran algeria) (STV 1.0 0.9091)) +(: cnet_partof_c561f53b22 (PartOf orange orange) (STV 1.0 0.9091)) +(: cnet_partof_cd452c6cb1 (PartOf orange south_africa) (STV 1.0 0.9091)) +(: cnet_partof_8285b66199 (PartOf orange_peel orange) (STV 1.0 0.9091)) +(: cnet_partof_8986060bec (PartOf orchestra theater) (STV 1.0 0.9091)) +(: cnet_partof_1ac7114cdd (PartOf orchestra_pit theater) (STV 1.0 0.9091)) +(: cnet_partof_4cfe9aa027 (PartOf order_arm manual_of_arm) (STV 1.0 0.9091)) +(: cnet_partof_c9a37019c4 (PartOf ordination holy_order) (STV 1.0 0.9091)) +(: cnet_partof_b882a129b2 (PartOf ordovician paleozoic) (STV 1.0 0.9091)) +(: cnet_partof_f76ce1d76f (PartOf ore danish_krone) (STV 1.0 0.9091)) +(: cnet_partof_cc093be030 (PartOf ore norwegian_krone) (STV 1.0 0.9091)) +(: cnet_partof_ff430f33f4 (PartOf ore swedish_krona) (STV 1.0 0.9091)) +(: cnet_partof_15224f94f5 (PartOf oregon united_state) (STV 1.0 0.9091)) +(: cnet_partof_c46b00b610 (PartOf organ body) (STV 1.0 0.9091)) +(: cnet_partof_568953c92a (PartOf organ_of_corti cochlea) (STV 1.0 0.9091)) +(: cnet_partof_b867dade10 (PartOf organ_of_hearing ear) (STV 1.0 0.9091)) +(: cnet_partof_55641f06c1 (PartOf organ_pipe organ) (STV 1.0 0.9091)) +(: cnet_partof_fdfdcb057e (PartOf organelle cell) (STV 1.0 0.9091)) +(: cnet_partof_aae071f4ca (PartOf organ organism) (STV 1.0 0.9091)) +(: cnet_partof_19ea253cbd (PartOf orinoco colombia) (STV 1.0 0.9091)) +(: cnet_partof_c19189107a (PartOf orinoco venezuela) (STV 1.0 0.9091)) +(: cnet_partof_c1786ca09a (PartOf orissa india) (STV 1.0 0.9091)) +(: cnet_partof_36e198d2e8 (PartOf orizaba mexico) (STV 1.0 0.9091)) +(: cnet_partof_ca5da7b460 (PartOf orkney_island atlantic) (STV 1.0 0.9091)) +(: cnet_partof_9235029e10 (PartOf orkney_island north_sea) (STV 1.0 0.9091)) +(: cnet_partof_71fdcf3f33 (PartOf orkney_island scotland) (STV 1.0 0.9091)) +(: cnet_partof_2dd3328364 (PartOf orlando florida) (STV 1.0 0.9091)) +(: cnet_partof_297b9d70a7 (PartOf orleanais france) (STV 1.0 0.9091)) +(: cnet_partof_9d8811d1f3 (PartOf orlean france) (STV 1.0 0.9091)) +(: cnet_partof_6e46b31450 (PartOf orly paris) (STV 1.0 0.9091)) +(: cnet_partof_b0759cba95 (PartOf orono maine) (STV 1.0 0.9091)) +(: cnet_partof_3e6f4ccdc4 (PartOf oropharynx throat) (STV 1.0 0.9091)) +(: cnet_partof_7a6d96b859 (PartOf orphrey vestment) (STV 1.0 0.9091)) +(: cnet_partof_3e734de20e (PartOf orumiyeh iran) (STV 1.0 0.9091)) +(: cnet_partof_336707033a (PartOf osage missouri) (STV 1.0 0.9091)) +(: cnet_partof_ce6f463a47 (PartOf osaka honshu) (STV 1.0 0.9091)) +(: cnet_partof_799dbcc961 (PartOf osaka japan) (STV 1.0 0.9091)) +(: cnet_partof_93d622acff (PartOf osaka_bay japan) (STV 1.0 0.9091)) +(: cnet_partof_afc2b2eb9c (PartOf osaka_bay pacific) (STV 1.0 0.9091)) +(: cnet_partof_5d9de1b739 (PartOf oscilloscope cardiac_monitor) (STV 1.0 0.9091)) +(: cnet_partof_ad3c491902 (PartOf oscilloscope monitor) (STV 1.0 0.9091)) +(: cnet_partof_68c5fd3984 (PartOf oscilloscope radar) (STV 1.0 0.9091)) +(: cnet_partof_fb4437c0c1 (PartOf oslo norway) (STV 1.0 0.9091)) +(: cnet_partof_9c4a31973e (PartOf osmosis dialysis) (STV 1.0 0.9091)) +(: cnet_partof_f897830927 (PartOf ossicle middle_ear) (STV 1.0 0.9091)) +(: cnet_partof_c8dcd0687b (PartOf ostrava czech_republic) (STV 1.0 0.9091)) +(: cnet_partof_51e767bf50 (PartOf ottawa ontario) (STV 1.0 0.9091)) +(: cnet_partof_c2f581a5b7 (PartOf ottawa_river canada) (STV 1.0 0.9091)) +(: cnet_partof_c34e87b143 (PartOf ottoman_empire africa) (STV 1.0 0.9091)) +(: cnet_partof_405c95566d (PartOf ottoman_empire asia) (STV 1.0 0.9091)) +(: cnet_partof_cee1823de2 (PartOf ottoman_empire europe) (STV 1.0 0.9091)) +(: cnet_partof_79dbab19c7 (PartOf ottumwa iowa) (STV 1.0 0.9091)) +(: cnet_partof_9282934268 (PartOf ouachita arkansa) (STV 1.0 0.9091)) +(: cnet_partof_1f312ec797 (PartOf ouachita louisiana) (STV 1.0 0.9091)) +(: cnet_partof_9d65e9514d (PartOf oujda morocco) (STV 1.0 0.9091)) +(: cnet_partof_fe79b02b48 (PartOf ounce pound) (STV 1.0 0.9091)) +(: cnet_partof_112b91f5d0 (PartOf ounce troy_pound) (STV 1.0 0.9091)) +(: cnet_partof_de46efb920 (PartOf ouse england) (STV 1.0 0.9091)) +(: cnet_partof_24afd311b9 (PartOf outback australian_desert) (STV 1.0 0.9091)) +(: cnet_partof_3caf7fdbf9 (PartOf outer_hebride hebride) (STV 1.0 0.9091)) +(: cnet_partof_28677fd4c4 (PartOf outer_space aerospace) (STV 1.0 0.9091)) +(: cnet_partof_6975a7b9ec (PartOf outfield ball_field) (STV 1.0 0.9091)) +(: cnet_partof_2df4b36080 (PartOf output_routine output_program) (STV 1.0 0.9091)) +(: cnet_partof_583b155380 (PartOf output_to_input_ratio frequency_response) (STV 1.0 0.9091)) +(: cnet_partof_487b1594c3 (PartOf outrigger outrigger_canoe) (STV 1.0 0.9091)) +(: cnet_partof_f07fceba56 (PartOf outsole boot) (STV 1.0 0.9091)) +(: cnet_partof_d9e46fd559 (PartOf outsole shoe) (STV 1.0 0.9091)) +(: cnet_partof_5868d1f622 (PartOf oval_office white_house) (STV 1.0 0.9091)) +(: cnet_partof_6cf7b4fafd (PartOf ovarian_artery ovary) (STV 1.0 0.9091)) +(: cnet_partof_10529c0add (PartOf ovary flower) (STV 1.0 0.9091)) +(: cnet_partof_a12ee9a298 (PartOf ovary female_reproductive_system) (STV 1.0 0.9091)) +(: cnet_partof_9a27824429 (PartOf over playing_period) (STV 1.0 0.9091)) +(: cnet_partof_5361414041 (PartOf overhead cabin) (STV 1.0 0.9091)) +(: cnet_partof_048a28bd5c (PartOf overtime athletic_game) (STV 1.0 0.9091)) +(: cnet_partof_4aa66369b0 (PartOf oviedo spain) (STV 1.0 0.9091)) +(: cnet_partof_c746304163 (PartOf ovum female_reproductive_system) (STV 1.0 0.9091)) +(: cnet_partof_781ac9123d (PartOf owensboro kentucky) (STV 1.0 0.9091)) +(: cnet_partof_24850bc5ba (PartOf oxford england) (STV 1.0 0.9091)) +(: cnet_partof_838dc52492 (PartOf oxford georgia) (STV 1.0 0.9091)) +(: cnet_partof_bc8c27b21f (PartOf oxford_university oxford) (STV 1.0 0.9091)) +(: cnet_partof_1ef7ed2527 (PartOf oxidative_phosphorylation kreb_cycle) (STV 1.0 0.9091)) +(: cnet_partof_cd97546cfc (PartOf oxygen air) (STV 1.0 0.9339)) +(: cnet_partof_b10e843598 (PartOf oyster bird) (STV 1.0 0.9091)) +(: cnet_partof_b3d7f6cd75 (PartOf oyster_plant salsify) (STV 1.0 0.9091)) +(: cnet_partof_fa04afc085 (PartOf ozark arkansa) (STV 1.0 0.9091)) +(: cnet_partof_2ae0d0ff76 (PartOf ozone_hole ozone_layer) (STV 1.0 0.9091)) +(: cnet_partof_23ae1e7c01 (PartOf ozone_layer stratosphere) (STV 1.0 0.9091)) +(: cnet_partof_e928ba62bd (PartOf p alphabet) (STV 1.0 0.9091)) +(: cnet_partof_75431dbf46 (PartOf pablum soft_diet) (STV 1.0 0.9091)) +(: cnet_partof_b00d7559de (PartOf pace walk) (STV 1.0 0.9091)) +(: cnet_partof_e4632723ba (PartOf pachytene prophase) (STV 1.0 0.9091)) +(: cnet_partof_5bc463c390 (PartOf pacific_bell_park san_francisco) (STV 1.0 0.9091)) +(: cnet_partof_4815593d3b (PartOf pacific_coast pacific) (STV 1.0 0.9091)) +(: cnet_partof_5ac2f9ff6a (PartOf pacific_northwest british_columbia) (STV 1.0 0.9091)) +(: cnet_partof_69d385f6d2 (PartOf pacific_northwest oregon) (STV 1.0 0.9091)) +(: cnet_partof_78030993c2 (PartOf pacific_northwest united_state) (STV 1.0 0.9091)) +(: cnet_partof_ea0814acf9 (PartOf pacific_northwest washington) (STV 1.0 0.9091)) +(: cnet_partof_b9bb10fb28 (PartOf pacinian_corpuscle skin) (STV 1.0 0.9091)) +(: cnet_partof_8e412c75c3 (PartOf pad finger) (STV 1.0 0.9091)) +(: cnet_partof_e1f9566eee (PartOf pad paw) (STV 1.0 0.9091)) +(: cnet_partof_5d68eace0e (PartOf pad aquatic_plant) (STV 1.0 0.9091)) +(: cnet_partof_3f87a37930 (PartOf paddle millwheel) (STV 1.0 0.9091)) +(: cnet_partof_07d4c9617c (PartOf paddle paddlewheel) (STV 1.0 0.9091)) +(: cnet_partof_6ba5d34421 (PartOf paddle_box paddlewheel) (STV 1.0 0.9091)) +(: cnet_partof_191c178cbe (PartOf padua veneto) (STV 1.0 0.9091)) +(: cnet_partof_af8e114576 (PartOf paducah kentucky) (STV 1.0 0.9091)) +(: cnet_partof_e373fe1abe (PartOf page book) (STV 1.0 0.9339)) +(: cnet_partof_56ed4a2c8e (PartOf pagination page) (STV 1.0 0.9091)) +(: cnet_partof_7be3ab5738 (PartOf pago_pago american_samoa) (STV 1.0 0.9091)) +(: cnet_partof_d9bc606ce7 (PartOf pahang malaysia) (STV 1.0 0.9091)) +(: cnet_partof_4ed00e9080 (PartOf pain life) (STV 1.0 0.9091)) +(: cnet_partof_088fd5555b (PartOf painted_desert arizona) (STV 1.0 0.9091)) +(: cnet_partof_b3677e8e82 (PartOf painting construction) (STV 1.0 0.9091)) +(: cnet_partof_0fb5bd9233 (PartOf paisa indian_rupee) (STV 1.0 0.9091)) +(: cnet_partof_31da22cd89 (PartOf paisa nepalese_rupee) (STV 1.0 0.9091)) +(: cnet_partof_02764da352 (PartOf paisa pakistani_rupee) (STV 1.0 0.9091)) +(: cnet_partof_ab1637be10 (PartOf paisa taka) (STV 1.0 0.9091)) +(: cnet_partof_34f609d60e (PartOf pakistan asia) (STV 1.0 0.9091)) +(: cnet_partof_f992ac4907 (PartOf palate mouth) (STV 1.0 0.9091)) +(: cnet_partof_e155cc2cb2 (PartOf palatine seven_hill_of_rome) (STV 1.0 0.9091)) +(: cnet_partof_f7486da773 (PartOf palau pacific) (STV 1.0 0.9091)) +(: cnet_partof_a5c1fb946a (PartOf palau palau) (STV 1.0 0.9091)) +(: cnet_partof_84b16d963d (PartOf paleocene tertiary) (STV 1.0 0.9091)) +(: cnet_partof_07721e31bb (PartOf paleocerebellum cerebellum) (STV 1.0 0.9091)) +(: cnet_partof_e68f36927d (PartOf paleolithic_age stone_age) (STV 1.0 0.9091)) +(: cnet_partof_1a15e8a9af (PartOf palermo sicily) (STV 1.0 0.9091)) +(: cnet_partof_734d702d59 (PartOf palestine asia) (STV 1.0 0.9091)) +(: cnet_partof_39b2943f75 (PartOf pall_mall london) (STV 1.0 0.9091)) +(: cnet_partof_5b31558dfe (PartOf pallette body_armor) (STV 1.0 0.9091)) +(: cnet_partof_24fe4a800f (PartOf pallidum lenticular_nucleus) (STV 1.0 0.9091)) +(: cnet_partof_bf80279f7f (PartOf palm hand) (STV 1.0 0.9339)) +(: cnet_partof_734a718891 (PartOf palm_beach florida) (STV 1.0 0.9091)) +(: cnet_partof_091fa94af2 (PartOf palm_nut oil_palm) (STV 1.0 0.9091)) +(: cnet_partof_e5c958d067 (PartOf palo_alto california) (STV 1.0 0.9091)) +(: cnet_partof_cb975b94d3 (PartOf pamir_mountain afghanistan) (STV 1.0 0.9091)) +(: cnet_partof_d156c2623f (PartOf pamir_mountain china) (STV 1.0 0.9091)) +(: cnet_partof_59d70d5026 (PartOf pamir_mountain kyrgyzstan) (STV 1.0 0.9091)) +(: cnet_partof_7da04990e6 (PartOf pamir_mountain pakistan) (STV 1.0 0.9091)) +(: cnet_partof_92c3b29b51 (PartOf pamir_mountain tajikistan) (STV 1.0 0.9091)) +(: cnet_partof_98a9d4e563 (PartOf pampa argentina) (STV 1.0 0.9091)) +(: cnet_partof_11cddaee39 (PartOf pan_american_day april) (STV 1.0 0.9091)) +(: cnet_partof_477e06637f (PartOf panama isthmus_of_panama) (STV 1.0 0.9091)) +(: cnet_partof_3f283325f9 (PartOf panama_canal panama) (STV 1.0 0.9091)) +(: cnet_partof_33c1167302 (PartOf panama_canal_zone panama) (STV 1.0 0.9091)) +(: cnet_partof_c391c37b7b (PartOf panama_city florida) (STV 1.0 0.9091)) +(: cnet_partof_21f29902e0 (PartOf panama_city panama) (STV 1.0 0.9091)) +(: cnet_partof_b5b83aefd9 (PartOf pancrea human_body) (STV 1.0 0.9339)) +(: cnet_partof_c0ef37836c (PartOf pancrea digestive_system) (STV 1.0 0.9091)) +(: cnet_partof_f91de46b25 (PartOf pancreatic_duct pancrea) (STV 1.0 0.9091)) +(: cnet_partof_c42d13b165 (PartOf pane window) (STV 1.0 0.9091)) +(: cnet_partof_c70d7afbde (PartOf paneling exterior_door) (STV 1.0 0.9091)) +(: cnet_partof_e52f75ee6d (PartOf paneling sliding_door) (STV 1.0 0.9091)) +(: cnet_partof_7cb0796012 (PartOf paneling swing_door) (STV 1.0 0.9091)) +(: cnet_partof_4bcca3f5dc (PartOf paneling wall) (STV 1.0 0.9091)) +(: cnet_partof_c00a0c8479 (PartOf panhandle pan) (STV 1.0 0.9091)) +(: cnet_partof_6678257300 (PartOf pant_leg pair_of_trouser) (STV 1.0 0.9091)) +(: cnet_partof_7923ae99b8 (PartOf papal_state italy) (STV 1.0 0.9091)) +(: cnet_partof_f579a8bcba (PartOf papaw pawpaw) (STV 1.0 0.9091)) +(: cnet_partof_87f09ee0c2 (PartOf papaya papaya) (STV 1.0 0.9091)) +(: cnet_partof_6e00a7fc18 (PartOf papeete tahiti) (STV 1.0 0.9091)) +(: cnet_partof_d8b336cccb (PartOf papilla sense_organ) (STV 1.0 0.9091)) +(: cnet_partof_553a93075e (PartOf papillary_muscle atrioventricular_valve) (STV 1.0 0.9091)) +(: cnet_partof_4e11a32560 (PartOf papua papua_new_guinea) (STV 1.0 0.9091)) +(: cnet_partof_7c66e22a66 (PartOf papua_new_guinea new_guinea) (STV 1.0 0.9091)) +(: cnet_partof_76ecb87eba (PartOf para brazil) (STV 1.0 0.9091)) +(: cnet_partof_7ffd14996c (PartOf para yugoslavian_dinar) (STV 1.0 0.9091)) +(: cnet_partof_6a9023e039 (PartOf parabolic_mirror reflecting_telescope) (STV 1.0 0.9091)) +(: cnet_partof_c41c061f66 (PartOf parafovea retina) (STV 1.0 0.9091)) +(: cnet_partof_37df1ac13b (PartOf paragraph text) (STV 1.0 0.9091)) +(: cnet_partof_deaf8a3a99 (PartOf paraguay south_america) (STV 1.0 0.9091)) +(: cnet_partof_4be21f2a06 (PartOf paramaribo suriname) (STV 1.0 0.9091)) +(: cnet_partof_9e4183e0b2 (PartOf parana argentina) (STV 1.0 0.9091)) +(: cnet_partof_bdc1732cf2 (PartOf parana brazil) (STV 1.0 0.9091)) +(: cnet_partof_2a4695f88f (PartOf parana paraguay) (STV 1.0 0.9091)) +(: cnet_partof_0972e7afcc (PartOf paraph signature) (STV 1.0 0.9091)) +(: cnet_partof_0ff9070d15 (PartOf parasympathetic_nervous_system autonomic_nervous_system) (STV 1.0 0.9091)) +(: cnet_partof_10437af20c (PartOf parietal_bone cranium) (STV 1.0 0.9091)) +(: cnet_partof_c807bd7b61 (PartOf parietal_gyrus parietal_lobe) (STV 1.0 0.9091)) +(: cnet_partof_e460403cfe (PartOf parietal_lobe cerebral_cortex) (STV 1.0 0.9091)) +(: cnet_partof_bbcd7f9d48 (PartOf parietal_pericardium pericardium) (STV 1.0 0.9091)) +(: cnet_partof_4470a1033a (PartOf parietomastoid_suture cranium) (STV 1.0 0.9091)) +(: cnet_partof_59705e85c8 (PartOf paris france) (STV 1.0 0.9091)) +(: cnet_partof_ef9b5b0cc7 (PartOf paris texa) (STV 1.0 0.9091)) +(: cnet_partof_08fc29b0e8 (PartOf paris_university paris) (STV 1.0 0.9091)) +(: cnet_partof_fd6fe8b350 (PartOf parish diocese) (STV 1.0 0.9091)) +(: cnet_partof_9129555921 (PartOf park urban_area) (STV 1.0 0.9091)) +(: cnet_partof_9be8782057 (PartOf park_avenue manhattan) (STV 1.0 0.9091)) +(: cnet_partof_a41ed0bbf2 (PartOf parkersburg west_virginia) (STV 1.0 0.9091)) +(: cnet_partof_cd80117038 (PartOf parnaiba brazil) (STV 1.0 0.9091)) +(: cnet_partof_cf696bda29 (PartOf parnassus greece) (STV 1.0 0.9091)) +(: cnet_partof_bf4bf25eb4 (PartOf parotitis mump) (STV 1.0 0.9091)) +(: cnet_partof_2e939c2039 (PartOf parquet theater) (STV 1.0 0.9091)) +(: cnet_partof_67f6227005 (PartOf parquet_circle theater) (STV 1.0 0.9091)) +(: cnet_partof_de1f587f38 (PartOf par_distilis anterior_pituitary) (STV 1.0 0.9091)) +(: cnet_partof_8c7a3587ec (PartOf par_intermedia posterior_pituitary) (STV 1.0 0.9091)) +(: cnet_partof_3cfc14d618 (PartOf parser compiler) (STV 1.0 0.9091)) +(: cnet_partof_3d6b387e46 (PartOf parsnip cultivated_parsnip) (STV 1.0 0.9091)) +(: cnet_partof_2f5dba5669 (PartOf parson_s_nose bird) (STV 1.0 0.9091)) +(: cnet_partof_57a0555fa2 (PartOf part whole) (STV 1.0 0.9091)) +(: cnet_partof_76057ae03e (PartOf part hair) (STV 1.0 0.9091)) +(: cnet_partof_d486691d65 (PartOf part meronymy) (STV 1.0 0.9091)) +(: cnet_partof_6572f0b81a (PartOf part unit) (STV 1.0 0.9091)) +(: cnet_partof_8332edc011 (PartOf parthenon athen) (STV 1.0 0.9091)) +(: cnet_partof_42e7b08703 (PartOf parthia asia) (STV 1.0 0.9091)) +(: cnet_partof_451d8c08b0 (PartOf parturiency pregnancy) (STV 1.0 0.9091)) +(: cnet_partof_3d9c57be0d (PartOf parturition reproduction) (STV 1.0 0.9091)) +(: cnet_partof_497bb7e78c (PartOf pas_de_deux ballet) (STV 1.0 0.9091)) +(: cnet_partof_b919686e12 (PartOf pas_de_quatre ballet) (STV 1.0 0.9091)) +(: cnet_partof_22dd4eb087 (PartOf pas_de_trois ballet) (STV 1.0 0.9091)) +(: cnet_partof_635ac98d3b (PartOf pasadena california) (STV 1.0 0.9091)) +(: cnet_partof_0d3d9c1131 (PartOf pass range) (STV 1.0 0.9091)) +(: cnet_partof_4916ad2d81 (PartOf passage text) (STV 1.0 0.9091)) +(: cnet_partof_ca334d46d8 (PartOf passion_fruit passionflower) (STV 1.0 0.9091)) +(: cnet_partof_1f475b3d99 (PartOf past life) (STV 1.0 0.9091)) +(: cnet_partof_efdcdfbc78 (PartOf pastern horse_s_foot) (STV 1.0 0.9091)) +(: cnet_partof_ee204c0a37 (PartOf pasture country) (STV 1.0 0.9091)) +(: cnet_partof_4693c32b4b (PartOf patagonia argentina) (STV 1.0 0.9091)) +(: cnet_partof_2701ef43b7 (PartOf patagonia chile) (STV 1.0 0.9091)) +(: cnet_partof_bd27520e70 (PartOf patagonian_desert patagonia) (STV 1.0 0.9091)) +(: cnet_partof_dc5549ef49 (PartOf pate human_head) (STV 1.0 0.9091)) +(: cnet_partof_8515eb37b4 (PartOf patella knee) (STV 1.0 0.9091)) +(: cnet_partof_ea338a511c (PartOf patent_and_trademark_office_database department_of_commerce) (STV 1.0 0.9091)) +(: cnet_partof_fd39dcb339 (PartOf paterson new_jersey) (STV 1.0 0.9091)) +(: cnet_partof_dab784b57a (PartOf patio garden) (STV 1.0 0.9091)) +(: cnet_partof_b5fbe37e58 (PartOf patriot_s_day april) (STV 1.0 0.9091)) +(: cnet_partof_3ff1e37708 (PartOf pattypan_squash cymling) (STV 1.0 0.9091)) +(: cnet_partof_5b42440a3a (PartOf paulo_afonso brazil) (STV 1.0 0.9091)) +(: cnet_partof_cca38ba385 (PartOf paw canine) (STV 1.0 0.9091)) +(: cnet_partof_857a9cedfc (PartOf paw feline) (STV 1.0 0.9091)) +(: cnet_partof_63bbe547e2 (PartOf pawl ratchet) (STV 1.0 0.9091)) +(: cnet_partof_4a4aa16d7d (PartOf paying_taxe of_life) (STV 1.0 0.9091)) +(: cnet_partof_7a3bf7022d (PartOf pay_de_la_loire france) (STV 1.0 0.9091)) +(: cnet_partof_0aa5545c03 (PartOf pb exabyte) (STV 1.0 0.9091)) +(: cnet_partof_4996f0871f (PartOf pc_board personal_computer) (STV 1.0 0.9091)) +(: cnet_partof_414fb9a78f (PartOf pe hebrew_alphabet) (STV 1.0 0.9091)) +(: cnet_partof_eddcf46253 (PartOf pea pea) (STV 1.0 0.9091)) +(: cnet_partof_dff318f3c6 (PartOf pea_pod pea) (STV 1.0 0.9091)) +(: cnet_partof_efd7211fe7 (PartOf peach peach) (STV 1.0 0.9091)) +(: cnet_partof_a07e2330d6 (PartOf peanut peanut) (STV 1.0 0.9091)) +(: cnet_partof_2ff9403b8e (PartOf pear pear) (STV 1.0 0.9091)) +(: cnet_partof_29f9ef7b26 (PartOf pearl_harbor oahu) (STV 1.0 0.9091)) +(: cnet_partof_17d871ffe7 (PartOf pearl_river mississippi) (STV 1.0 0.9091)) +(: cnet_partof_214da8e1e7 (PartOf pebibit exbibit) (STV 1.0 0.9091)) +(: cnet_partof_3c31311ac4 (PartOf pecan pecan) (STV 1.0 0.9091)) +(: cnet_partof_be1926c3ec (PartOf peck bushel) (STV 1.0 0.9091)) +(: cnet_partof_7707cdb6bc (PartOf peco new_mexico) (STV 1.0 0.9091)) +(: cnet_partof_115f4c133f (PartOf peco texa) (STV 1.0 0.9091)) +(: cnet_partof_ffdcb80cbd (PartOf pectoral thorax) (STV 1.0 0.9091)) +(: cnet_partof_3c81b714a0 (PartOf pectoral_girdle appendicular_skeleton) (STV 1.0 0.9091)) +(: cnet_partof_4ce94c74d7 (PartOf pedal bicycle) (STV 1.0 0.9091)) +(: cnet_partof_bcfa9686a6 (PartOf pedal motor_vehicle) (STV 1.0 0.9091)) +(: cnet_partof_d32779f944 (PartOf pedal organ) (STV 1.0 0.9091)) +(: cnet_partof_9f6868887f (PartOf pedestal column) (STV 1.0 0.9091)) +(: cnet_partof_d031684e0f (PartOf peduncle forebrain) (STV 1.0 0.9091)) +(: cnet_partof_31ad88d49a (PartOf peduncle pedunculated_polyp) (STV 1.0 0.9091)) +(: cnet_partof_e8f159928a (PartOf pee_dee north_carolina) (STV 1.0 0.9091)) +(: cnet_partof_ab58d3d5cf (PartOf pee_dee south_carolina) (STV 1.0 0.9091)) +(: cnet_partof_c5016907c4 (PartOf peel edible_fruit) (STV 1.0 0.9091)) +(: cnet_partof_620f5414b1 (PartOf peen hammerhead) (STV 1.0 0.9091)) +(: cnet_partof_d98f0c7eb6 (PartOf peg dinghy) (STV 1.0 0.9091)) +(: cnet_partof_7a030ec374 (PartOf peg stringed_instrument) (STV 1.0 0.9091)) +(: cnet_partof_02e182097a (PartOf peloponnese greece) (STV 1.0 0.9091)) +(: cnet_partof_450e35ab91 (PartOf pelvis appendicular_skeleton) (STV 1.0 0.9091)) +(: cnet_partof_b909f8a654 (PartOf pelvis kidney) (STV 1.0 0.9091)) +(: cnet_partof_c91b290a98 (PartOf penal_institution infrastructure) (STV 1.0 0.9091)) +(: cnet_partof_2dc5f3cee3 (PartOf penalty_box ice_hockey_rink) (STV 1.0 0.9091)) +(: cnet_partof_e62afa9d93 (PartOf penang malaysia) (STV 1.0 0.9091)) +(: cnet_partof_c27776da49 (PartOf pendant necklace) (STV 1.0 0.9091)) +(: cnet_partof_baf2448320 (PartOf pendant pendant_earring) (STV 1.0 0.9091)) +(: cnet_partof_693416df42 (PartOf penis body) (STV 1.0 0.9524)) +(: cnet_partof_446e5e62a0 (PartOf penis male) (STV 1.0 0.9339)) +(: cnet_partof_2ead46697a (PartOf penis normal_male_human_body) (STV 1.0 0.9339)) +(: cnet_partof_d4aad9fe37 (PartOf penis male_genitalia) (STV 1.0 0.9091)) +(: cnet_partof_b968615338 (PartOf penis male_reproductive_system) (STV 1.0 0.9091)) +(: cnet_partof_24b05ad199 (PartOf penni markka) (STV 1.0 0.9091)) +(: cnet_partof_740c314d7b (PartOf pennine england) (STV 1.0 0.9091)) +(: cnet_partof_67f8c2aa7f (PartOf pennon bird) (STV 1.0 0.9091)) +(: cnet_partof_577a4ce332 (PartOf pennsylvania mid_atlantic_state) (STV 1.0 0.9091)) +(: cnet_partof_5cab0be75e (PartOf pennsylvania united_state) (STV 1.0 0.9091)) +(: cnet_partof_6b5f5c7830 (PartOf pennsylvanian carboniferous) (STV 1.0 0.9091)) +(: cnet_partof_b106925dc8 (PartOf penny british_pound) (STV 1.0 0.9091)) +(: cnet_partof_f1c66a5a75 (PartOf penny irish_pound) (STV 1.0 0.9091)) +(: cnet_partof_37ebc8556f (PartOf pennyweight ounce) (STV 1.0 0.9091)) +(: cnet_partof_c57dc2ed1c (PartOf penobscot maine) (STV 1.0 0.9091)) +(: cnet_partof_cf97d703c4 (PartOf penobscot_bay atlantic) (STV 1.0 0.9091)) +(: cnet_partof_bc7d9945ea (PartOf pensacola florida) (STV 1.0 0.9091)) +(: cnet_partof_7b70a74976 (PartOf pentecost whitsun) (STV 1.0 0.9091)) +(: cnet_partof_50436046d9 (PartOf peoria illinois) (STV 1.0 0.9091)) +(: cnet_partof_41fa190bd5 (PartOf pepper capsicum) (STV 1.0 0.9091)) +(: cnet_partof_e68f545e88 (PartOf pepper pepper) (STV 1.0 0.9091)) +(: cnet_partof_6d27810512 (PartOf perak malaysia) (STV 1.0 0.9091)) +(: cnet_partof_3bdca28047 (PartOf perch roost) (STV 1.0 0.9091)) +(: cnet_partof_f5c25be776 (PartOf perch european_perch) (STV 1.0 0.9091)) +(: cnet_partof_2ffea37867 (PartOf perch yellow_perch) (STV 1.0 0.9091)) +(: cnet_partof_fa0450e836 (PartOf perch furlong) (STV 1.0 0.9091)) +(: cnet_partof_740223ccba (PartOf perejil mediterranean) (STV 1.0 0.9091)) +(: cnet_partof_d982929407 (PartOf pergamum turkey) (STV 1.0 0.9091)) +(: cnet_partof_7ebf12e7f9 (PartOf perianth flower) (STV 1.0 0.9091)) +(: cnet_partof_e18f052b27 (PartOf periapsis orbit) (STV 1.0 0.9091)) +(: cnet_partof_db43f48d81 (PartOf pericarp seed) (STV 1.0 0.9091)) +(: cnet_partof_e4a04d5570 (PartOf perilymph inner_ear) (STV 1.0 0.9091)) +(: cnet_partof_7fced1ca56 (PartOf period playing_period) (STV 1.0 0.9091)) +(: cnet_partof_84655668a8 (PartOf period era) (STV 1.0 0.9091)) +(: cnet_partof_e1b21c0ddd (PartOf period history) (STV 1.0 0.9091)) +(: cnet_partof_16a04c8aff (PartOf peripheral computer) (STV 1.0 0.9091)) +(: cnet_partof_58122c3ff8 (PartOf peripheral_nervous_system nervous_system) (STV 1.0 0.9091)) +(: cnet_partof_9b424bb3a4 (PartOf periscope submarine) (STV 1.0 0.9091)) +(: cnet_partof_d8aab1c168 (PartOf peristome invertebrate) (STV 1.0 0.9091)) +(: cnet_partof_fa2995d821 (PartOf peristome capsule) (STV 1.0 0.9091)) +(: cnet_partof_9299e04af0 (PartOf perlis malaysia) (STV 1.0 0.9091)) +(: cnet_partof_f5bc99835f (PartOf perm russia) (STV 1.0 0.9091)) +(: cnet_partof_d451f31f80 (PartOf permian paleozoic) (STV 1.0 0.9091)) +(: cnet_partof_443ec8264c (PartOf peroneal_vein leg) (STV 1.0 0.9091)) +(: cnet_partof_5ae682ceda (PartOf peroration oration) (STV 1.0 0.9091)) +(: cnet_partof_73282ea092 (PartOf persepolis iran) (STV 1.0 0.9091)) +(: cnet_partof_208f304461 (PartOf persia asia) (STV 1.0 0.9091)) +(: cnet_partof_e53a84bc2e (PartOf persian_gulf arabian_sea) (STV 1.0 0.9091)) +(: cnet_partof_74481f360b (PartOf persimmon american_persimmon) (STV 1.0 0.9091)) +(: cnet_partof_d0a15ead71 (PartOf persimmon japanese_persimmon) (STV 1.0 0.9091)) +(: cnet_partof_6fba210b2b (PartOf person society) (STV 1.0 0.9636)) +(: cnet_partof_61e2f24424 (PartOf personality person) (STV 1.0 0.9091)) +(: cnet_partof_48ec00a4a5 (PartOf perth western_australia) (STV 1.0 0.9091)) +(: cnet_partof_68decc89ed (PartOf peru south_america) (STV 1.0 0.9091)) +(: cnet_partof_6f18d5d54e (PartOf pesewa cedi) (STV 1.0 0.9091)) +(: cnet_partof_b0f3ba2382 (PartOf peshawar pakistan) (STV 1.0 0.9091)) +(: cnet_partof_984059f0af (PartOf petabit exabit) (STV 1.0 0.9091)) +(: cnet_partof_c210d98bd1 (PartOf petabyte exbibyte) (STV 1.0 0.9091)) +(: cnet_partof_826a220441 (PartOf petal corolla) (STV 1.0 0.9091)) +(: cnet_partof_a6be5de08c (PartOf petersburg american_civil_war) (STV 1.0 0.9091)) +(: cnet_partof_ad44a89a36 (PartOf petersburg virginia) (STV 1.0 0.9091)) +(: cnet_partof_8dd7b6be01 (PartOf petit_mal_epilepsy epilepsia_minor) (STV 1.0 0.9091)) +(: cnet_partof_73798aa02f (PartOf petrified_forest_national_park arizona) (STV 1.0 0.9091)) +(: cnet_partof_8d72c68953 (PartOf petrona_tower kuala_lumpur) (STV 1.0 0.9091)) +(: cnet_partof_ca2d403e86 (PartOf pfennig mark) (STV 1.0 0.9091)) +(: cnet_partof_b34db94c5c (PartOf phagun hindu_calendar) (STV 1.0 0.9091)) +(: cnet_partof_4632154861 (PartOf phalanx digit) (STV 1.0 0.9091)) +(: cnet_partof_10c86fae48 (PartOf phallic_stage childhood) (STV 1.0 0.9091)) +(: cnet_partof_59ce363e82 (PartOf pharmacopoeia drugstore) (STV 1.0 0.9091)) +(: cnet_partof_5f0777480c (PartOf pharyngeal_recess throat) (STV 1.0 0.9091)) +(: cnet_partof_6a5a34e23a (PartOf pharyngeal_tonsil throat) (STV 1.0 0.9091)) +(: cnet_partof_fa6e5ef195 (PartOf phase cycle) (STV 1.0 0.9091)) +(: cnet_partof_70b48b3006 (PartOf pheasant ring_necked_pheasant) (STV 1.0 0.9091)) +(: cnet_partof_d6ad918570 (PartOf philadelphia pennsylvania) (STV 1.0 0.9091)) +(: cnet_partof_6442705877 (PartOf philippine_sea world_war_ii) (STV 1.0 0.9091)) +(: cnet_partof_e36e122948 (PartOf philippine pacific) (STV 1.0 0.9091)) +(: cnet_partof_b32d77f675 (PartOf philippine philippine) (STV 1.0 0.9091)) +(: cnet_partof_9e72babe19 (PartOf philippine southeast_asia) (STV 1.0 0.9091)) +(: cnet_partof_cbe4acef6b (PartOf philistia palestine) (STV 1.0 0.9091)) +(: cnet_partof_a72ee08253 (PartOf phnom_penh cambodia) (STV 1.0 0.9091)) +(: cnet_partof_e09788941e (PartOf phoenix arizona) (STV 1.0 0.9091)) +(: cnet_partof_c613316fdc (PartOf phone utterance) (STV 1.0 0.9091)) +(: cnet_partof_ed0bbb70d7 (PartOf phonetic_symbol phonetic_transcription) (STV 1.0 0.9091)) +(: cnet_partof_09f2f0c5e3 (PartOf photocathode photoelectric_cell) (STV 1.0 0.9091)) +(: cnet_partof_b1548599b2 (PartOf photon electromagnetic_radiation) (STV 1.0 0.9091)) +(: cnet_partof_d11465222d (PartOf photosphere sun) (STV 1.0 0.9091)) +(: cnet_partof_d32a3db403 (PartOf phrase tune) (STV 1.0 0.9091)) +(: cnet_partof_91435be90e (PartOf phrygia asia_minor) (STV 1.0 0.9091)) +(: cnet_partof_773e6b345a (PartOf pi geometry) (STV 1.0 0.9339)) +(: cnet_partof_2e91470748 (PartOf pia_mater leptomeninge) (STV 1.0 0.9091)) +(: cnet_partof_6c5735a6ed (PartOf piano_action piano) (STV 1.0 0.9091)) +(: cnet_partof_5c5da562fa (PartOf piano_keyboard accordion) (STV 1.0 0.9091)) +(: cnet_partof_f96c2a115f (PartOf piano_keyboard organ) (STV 1.0 0.9091)) +(: cnet_partof_fbbde0beaa (PartOf piano_keyboard piano) (STV 1.0 0.9091)) +(: cnet_partof_bef40c02ea (PartOf piaster egyptian_pound) (STV 1.0 0.9091)) +(: cnet_partof_20686e5705 (PartOf piaster lebanese_pound) (STV 1.0 0.9091)) +(: cnet_partof_7027f11837 (PartOf piaster sudanese_pound) (STV 1.0 0.9091)) +(: cnet_partof_e87c190716 (PartOf piaster syrian_pound) (STV 1.0 0.9091)) +(: cnet_partof_df71b06b19 (PartOf picardie france) (STV 1.0 0.9091)) +(: cnet_partof_f742f49857 (PartOf picket picket_fence) (STV 1.0 0.9091)) +(: cnet_partof_9b1af4f852 (PartOf pickup transportation) (STV 1.0 0.9091)) +(: cnet_partof_114491fe9f (PartOf picofarad microfarad) (STV 1.0 0.9091)) +(: cnet_partof_6277eeb13d (PartOf picometer angstrom) (STV 1.0 0.9091)) +(: cnet_partof_79834ac6e1 (PartOf picosecond nanosecond) (STV 1.0 0.9091)) +(: cnet_partof_334f44aafe (PartOf picovolt volt) (STV 1.0 0.9091)) +(: cnet_partof_79aed8a80f (PartOf picture_plane perspective) (STV 1.0 0.9091)) +(: cnet_partof_49bcb14ac5 (PartOf piece whole) (STV 1.0 0.9608)) +(: cnet_partof_fb5b95966f (PartOf piedmont italy) (STV 1.0 0.9091)) +(: cnet_partof_c49f61b67c (PartOf piedmont south) (STV 1.0 0.9091)) +(: cnet_partof_7d90f0372c (PartOf pier wall) (STV 1.0 0.9091)) +(: cnet_partof_2ef879dde8 (PartOf pier bridge) (STV 1.0 0.9091)) +(: cnet_partof_fb45e3f5df (PartOf pierre south_dakota) (STV 1.0 0.9091)) +(: cnet_partof_67a22c3b19 (PartOf pierre_laporte_bridge quebec) (STV 1.0 0.9091)) +(: cnet_partof_b9ab4b09bb (PartOf pike_s_peak colorado) (STV 1.0 0.9091)) +(: cnet_partof_4514a9d39c (PartOf pike_s_peak rocky) (STV 1.0 0.9091)) +(: cnet_partof_5daa9b1467 (PartOf pike pike) (STV 1.0 0.9091)) +(: cnet_partof_68f0dea094 (PartOf pikestaff pike) (STV 1.0 0.9091)) +(: cnet_partof_4cfb958926 (PartOf pillar_of_hercule strait_of_gibraltar) (STV 1.0 0.9091)) +(: cnet_partof_b05c036e32 (PartOf pilothouse bridge) (STV 1.0 0.9091)) +(: cnet_partof_749b70a45b (PartOf pilsen czech_republic) (STV 1.0 0.9091)) +(: cnet_partof_4379806f16 (PartOf pilus microorganism) (STV 1.0 0.9091)) +(: cnet_partof_426915fc30 (PartOf pimlico baltimore) (STV 1.0 0.9091)) +(: cnet_partof_7bf6c6b6c3 (PartOf pin cylinder_lock) (STV 1.0 0.9091)) +(: cnet_partof_3d1c203e57 (PartOf pin_bone sirloin) (STV 1.0 0.9091)) +(: cnet_partof_273c9c17a6 (PartOf pine_bluff arkansa) (STV 1.0 0.9091)) +(: cnet_partof_42df0fe1e9 (PartOf pine_nut nut_pine) (STV 1.0 0.9091)) +(: cnet_partof_578554fc85 (PartOf pine_nut stone_pine) (STV 1.0 0.9091)) +(: cnet_partof_bd18586250 (PartOf pineapple pineapple) (STV 1.0 0.9091)) +(: cnet_partof_07253081ac (PartOf pinecone pine) (STV 1.0 0.9091)) +(: cnet_partof_08257eaf9c (PartOf ping thailand) (STV 1.0 0.9091)) +(: cnet_partof_f41502d193 (PartOf pinger sonar) (STV 1.0 0.9091)) +(: cnet_partof_34f5da3bf9 (PartOf pinhead pin) (STV 1.0 0.9091)) +(: cnet_partof_f654b96c1b (PartOf pinsk belarus) (STV 1.0 0.9091)) +(: cnet_partof_a43341139f (PartOf pint quart) (STV 1.0 0.9091)) +(: cnet_partof_203e516329 (PartOf pintle hinge) (STV 1.0 0.9091)) +(: cnet_partof_80a127eff3 (PartOf pisa tuscany) (STV 1.0 0.9091)) +(: cnet_partof_3af2aeddf4 (PartOf pisce zodiac) (STV 1.0 0.9091)) +(: cnet_partof_07abd2d71d (PartOf pissis ande) (STV 1.0 0.9091)) +(: cnet_partof_c19ebd505f (PartOf pissis argentina) (STV 1.0 0.9091)) +(: cnet_partof_e9bf899a0b (PartOf pistachio pistachio) (STV 1.0 0.9091)) +(: cnet_partof_f72131b613 (PartOf pistil flower) (STV 1.0 0.9091)) +(: cnet_partof_ac5ebc4f46 (PartOf piston engine) (STV 1.0 0.9091)) +(: cnet_partof_130825fb48 (PartOf piston reciprocating_engine) (STV 1.0 0.9091)) +(: cnet_partof_536c32dc7d (PartOf piston_ring piston) (STV 1.0 0.9091)) +(: cnet_partof_564bd74bbd (PartOf piston_rod piston) (STV 1.0 0.9091)) +(: cnet_partof_bd2c684201 (PartOf pit peach) (STV 1.0 0.9091)) +(: cnet_partof_cd667ee9eb (PartOf pit commodity_exchange) (STV 1.0 0.9091)) +(: cnet_partof_2027412d1c (PartOf pit_of_stomach stomach) (STV 1.0 0.9091)) +(: cnet_partof_2cbac2f854 (PartOf pita gyro) (STV 1.0 0.9091)) +(: cnet_partof_6e3871fbf5 (PartOf pitahaya pitahaya_cactus) (STV 1.0 0.9091)) +(: cnet_partof_82d7c2c2cb (PartOf pitcher baseball_team) (STV 1.0 0.9339)) +(: cnet_partof_0ad33453db (PartOf pittsburgh pennsylvania) (STV 1.0 0.9091)) +(: cnet_partof_b58aa2b235 (PartOf pittsfield massachusett) (STV 1.0 0.9091)) +(: cnet_partof_abeb9e8250 (PartOf pituitary diencephalon) (STV 1.0 0.9091)) +(: cnet_partof_78a211d96d (PartOf pixel raster) (STV 1.0 0.9091)) +(: cnet_partof_b38f520193 (PartOf place_name troponymy) (STV 1.0 0.9091)) +(: cnet_partof_e426f212cc (PartOf placenta uterus) (STV 1.0 0.9091)) +(: cnet_partof_57f8e14465 (PartOf placenta ovary) (STV 1.0 0.9091)) +(: cnet_partof_81f0e62f1f (PartOf placket skirt) (STV 1.0 0.9091)) +(: cnet_partof_b7894f2fb2 (PartOf plaice plaice) (STV 1.0 0.9091)) +(: cnet_partof_02a360dd10 (PartOf planchette ouija) (STV 1.0 0.9091)) +(: cnet_partof_5a69ab83b5 (PartOf plane_seat airliner) (STV 1.0 0.9091)) +(: cnet_partof_03b8a51d34 (PartOf planetarium planetarium) (STV 1.0 0.9091)) +(: cnet_partof_0bc7b1f12f (PartOf planetary_gear epicyclic_train) (STV 1.0 0.9091)) +(: cnet_partof_eb5ec731d1 (PartOf plank platform) (STV 1.0 0.9091)) +(: cnet_partof_5f42603ceb (PartOf plano texa) (STV 1.0 0.9091)) +(: cnet_partof_d0afa6886b (PartOf plant_part plant) (STV 1.0 0.9091)) +(: cnet_partof_749dcb2657 (PartOf plantain plantain) (STV 1.0 0.9091)) +(: cnet_partof_8d5890edf2 (PartOf plastron bodice) (STV 1.0 0.9091)) +(: cnet_partof_98d45d548e (PartOf plastron dress_shirt) (STV 1.0 0.9091)) +(: cnet_partof_6dd04a4155 (PartOf plastron turtle) (STV 1.0 0.9091)) +(: cnet_partof_34ba826216 (PartOf plataea boeotia) (STV 1.0 0.9091)) +(: cnet_partof_e1f89b3a0a (PartOf plate structure) (STV 1.0 0.9091)) +(: cnet_partof_8244f7ea50 (PartOf plate tube) (STV 1.0 0.9091)) +(: cnet_partof_2b73386844 (PartOf platt_national_park oklahoma) (STV 1.0 0.9091)) +(: cnet_partof_f1a83723f1 (PartOf platte nebraska) (STV 1.0 0.9091)) +(: cnet_partof_0ef0751dea (PartOf playback recorder) (STV 1.0 0.9091)) +(: cnet_partof_d46aedfbba (PartOf player team) (STV 1.0 0.9524)) +(: cnet_partof_6c3bc0ae0c (PartOf playing_card deck) (STV 1.0 0.9091)) +(: cnet_partof_31dd1bc067 (PartOf playing_field stadium) (STV 1.0 0.9091)) +(: cnet_partof_74ed29c344 (PartOf playing_period athletic_game) (STV 1.0 0.9091)) +(: cnet_partof_fe42ad979d (PartOf playoff_game playoff) (STV 1.0 0.9091)) +(: cnet_partof_2f85cb3c4b (PartOf plea trial) (STV 1.0 0.9091)) +(: cnet_partof_772157a79e (PartOf pleistocene quaternary) (STV 1.0 0.9091)) +(: cnet_partof_4d67824d18 (PartOf pleura pleural_cavity) (STV 1.0 0.9091)) +(: cnet_partof_f4a5442795 (PartOf pliocene tertiary) (STV 1.0 0.9091)) +(: cnet_partof_04b0150014 (PartOf plosion stop_consonant) (STV 1.0 0.9091)) +(: cnet_partof_2322084cdb (PartOf plovdiv bulgaria) (STV 1.0 0.9091)) +(: cnet_partof_deced9df56 (PartOf plowshare moldboard_plow) (STV 1.0 0.9091)) +(: cnet_partof_e14217254c (PartOf plum plum) (STV 1.0 0.9091)) +(: cnet_partof_4814535566 (PartOf plumb_bob plumb_line) (STV 1.0 0.9091)) +(: cnet_partof_0aff540bb3 (PartOf plumbing construction) (STV 1.0 0.9091)) +(: cnet_partof_ef8c9254af (PartOf plumbing_fixture plumbing) (STV 1.0 0.9091)) +(: cnet_partof_78fe64d58f (PartOf plumcot plumcot) (STV 1.0 0.9091)) +(: cnet_partof_6824fa701d (PartOf plutonium_trigger atom_bomb) (STV 1.0 0.9091)) +(: cnet_partof_668c40e4f5 (PartOf pluviose revolutionary_calendar) (STV 1.0 0.9091)) +(: cnet_partof_8d8f552a6a (PartOf plymouth massachusett) (STV 1.0 0.9091)) +(: cnet_partof_dcb61887bc (PartOf plymouth_colony plymouth) (STV 1.0 0.9091)) +(: cnet_partof_b4482dfde3 (PartOf plymouth_rock plymouth) (STV 1.0 0.9091)) +(: cnet_partof_9e9083c506 (PartOf pneumatic_tire bicycle_wheel) (STV 1.0 0.9091)) +(: cnet_partof_fd1d7940b4 (PartOf pneumatic_tire car_wheel) (STV 1.0 0.9091)) +(: cnet_partof_f1fff6cf33 (PartOf po italy) (STV 1.0 0.9091)) +(: cnet_partof_2bb25b7612 (PartOf pobeda_peak india) (STV 1.0 0.9091)) +(: cnet_partof_3aacdfc236 (PartOf pobeda_peak tien_shan) (STV 1.0 0.9091)) +(: cnet_partof_1245ccc130 (PartOf pocatello idaho) (STV 1.0 0.9091)) +(: cnet_partof_e3abcfbfe9 (PartOf pock smallpox) (STV 1.0 0.9091)) +(: cnet_partof_48ddfee4f5 (PartOf pocket garment) (STV 1.0 0.9091)) +(: cnet_partof_bc0b918183 (PartOf pocket pool_table) (STV 1.0 0.9091)) +(: cnet_partof_a56b2118d1 (PartOf pocket_flap pocket) (STV 1.0 0.9091)) +(: cnet_partof_78e5ff4419 (PartOf pod airplane) (STV 1.0 0.9091)) +(: cnet_partof_3aa594f85c (PartOf poetic_rhythm poem) (STV 1.0 0.9091)) +(: cnet_partof_f2d2d34eee (PartOf pogonion lower_jaw) (STV 1.0 0.9091)) +(: cnet_partof_757360e1c7 (PartOf point awl) (STV 1.0 0.9091)) +(: cnet_partof_ec242af8c9 (PartOf point icepick) (STV 1.0 0.9091)) +(: cnet_partof_e4d2ce394d (PartOf point knife) (STV 1.0 0.9091)) +(: cnet_partof_380a593823 (PartOf point needle) (STV 1.0 0.9091)) +(: cnet_partof_aa713095d8 (PartOf point pencil) (STV 1.0 0.9091)) +(: cnet_partof_9ee8dff184 (PartOf point pin) (STV 1.0 0.9091)) +(: cnet_partof_1a0ecf1699 (PartOf point arrow) (STV 1.0 0.9091)) +(: cnet_partof_f545a65fe0 (PartOf point em) (STV 1.0 0.9091)) +(: cnet_partof_15ecb939b5 (PartOf point score) (STV 1.0 0.9091)) +(: cnet_partof_173d2a2bc1 (PartOf point alpenstock) (STV 1.0 0.9091)) +(: cnet_partof_58a5f6e8e1 (PartOf point arrowhead) (STV 1.0 0.9091)) +(: cnet_partof_f645394b23 (PartOf point cone) (STV 1.0 0.9091)) +(: cnet_partof_11e8a73032 (PartOf point sword) (STV 1.0 0.9091)) +(: cnet_partof_c3d89e663e (PartOf poitou_charente france) (STV 1.0 0.9091)) +(: cnet_partof_12583ed844 (PartOf poland europe) (STV 1.0 0.9091)) +(: cnet_partof_8a5a2d0c3a (PartOf pole magnet) (STV 1.0 0.9091)) +(: cnet_partof_5aafbd3c98 (PartOf political_ideology ideology) (STV 1.0 0.9091)) +(: cnet_partof_670b9d809a (PartOf poll cow) (STV 1.0 0.9091)) +(: cnet_partof_542b61273e (PartOf poll horse) (STV 1.0 0.9091)) +(: cnet_partof_08eecf1d77 (PartOf pollack pollack) (STV 1.0 0.9091)) +(: cnet_partof_4b3b1a318e (PartOf polling_booth polling_place) (STV 1.0 0.9091)) +(: cnet_partof_8422f66fa2 (PartOf polydipsia diabete) (STV 1.0 0.9091)) +(: cnet_partof_b425cc6c25 (PartOf polynesia austronesia) (STV 1.0 0.9091)) +(: cnet_partof_13e5f4412e (PartOf polynesia oceania) (STV 1.0 0.9091)) +(: cnet_partof_aa483301db (PartOf polyuria diabete) (STV 1.0 0.9091)) +(: cnet_partof_6cb4a47627 (PartOf pomegranate pomegranate) (STV 1.0 0.9091)) +(: cnet_partof_3e062dba42 (PartOf pomelo pomelo) (STV 1.0 0.9091)) +(: cnet_partof_058207d5c4 (PartOf pommel pommel_horse) (STV 1.0 0.9091)) +(: cnet_partof_ed3ff43f5e (PartOf pommel saddle) (STV 1.0 0.9091)) +(: cnet_partof_9b35b68156 (PartOf pompano pompano) (STV 1.0 0.9091)) +(: cnet_partof_7162025603 (PartOf pompeii italy) (STV 1.0 0.9091)) +(: cnet_partof_7bb206d269 (PartOf pond_apple pond_apple) (STV 1.0 0.9091)) +(: cnet_partof_a3d1339bc5 (PartOf pon brainstem) (STV 1.0 0.9091)) +(: cnet_partof_3e38f95278 (PartOf ponte_25_de_abril lisbon) (STV 1.0 0.9091)) +(: cnet_partof_5eedd7f059 (PartOf pontoon amphibian) (STV 1.0 0.9091)) +(: cnet_partof_27f05804c2 (PartOf pontoon pontoon_bridge) (STV 1.0 0.9091)) +(: cnet_partof_60fa2404bc (PartOf pontus asia_minor) (STV 1.0 0.9091)) +(: cnet_partof_0950952586 (PartOf popcorn popcorn) (STV 1.0 0.9091)) +(: cnet_partof_f7fa120414 (PartOf poplar_bluff missouri) (STV 1.0 0.9091)) +(: cnet_partof_b8fa406c91 (PartOf poppet internal_combustion_engine) (STV 1.0 0.9091)) +(: cnet_partof_d462b5ed68 (PartOf poppy_seed opium_poppy) (STV 1.0 0.9091)) +(: cnet_partof_d01457d37c (PartOf porch house) (STV 1.0 0.9091)) +(: cnet_partof_25c6eb12c0 (PartOf pore skin) (STV 1.0 0.9091)) +(: cnet_partof_d0ee6b0a92 (PartOf porgy scup) (STV 1.0 0.9091)) +(: cnet_partof_216f3f8f5d (PartOf pork hog) (STV 1.0 0.9091)) +(: cnet_partof_cf729c358a (PartOf pork_loin pork) (STV 1.0 0.9091)) +(: cnet_partof_64ec3e2334 (PartOf port_au_prince haiti) (STV 1.0 0.9091)) +(: cnet_partof_bf27cc1989 (PartOf port_louis mauritius) (STV 1.0 0.9091)) +(: cnet_partof_4e4fef25bc (PartOf port_moresby papua_new_guinea) (STV 1.0 0.9091)) +(: cnet_partof_04bb991cd8 (PartOf port_of_spain trinidad) (STV 1.0 0.9091)) +(: cnet_partof_cfeafc91af (PartOf port_sudan sudan) (STV 1.0 0.9091)) +(: cnet_partof_d79638e22e (PartOf port_vila vanuatu) (STV 1.0 0.9091)) +(: cnet_partof_c13117491c (PartOf portal_vein portal_system) (STV 1.0 0.9091)) +(: cnet_partof_38c2f022dc (PartOf porterhouse beef_loin) (STV 1.0 0.9091)) +(: cnet_partof_4454c1bd35 (PartOf porthole fuselage) (STV 1.0 0.9091)) +(: cnet_partof_1f0e1a86d7 (PartOf porthole ship) (STV 1.0 0.9091)) +(: cnet_partof_aeaccefcf7 (PartOf portland maine) (STV 1.0 0.9091)) +(: cnet_partof_ae3d8730dd (PartOf portland oregon) (STV 1.0 0.9091)) +(: cnet_partof_cb847aadae (PartOf porto portugal) (STV 1.0 0.9091)) +(: cnet_partof_2fb4f031bd (PartOf porto_novo benin) (STV 1.0 0.9091)) +(: cnet_partof_f97bb7e59c (PartOf portrait_len portrait_camera) (STV 1.0 0.9091)) +(: cnet_partof_495faa2309 (PartOf portsmouth england) (STV 1.0 0.9091)) +(: cnet_partof_0c00738331 (PartOf portsmouth new_hampshire) (STV 1.0 0.9091)) +(: cnet_partof_6f0fbd5fa3 (PartOf portsmouth virginia) (STV 1.0 0.9091)) +(: cnet_partof_b06c0bceb2 (PartOf portugal europe) (STV 1.0 0.9091)) +(: cnet_partof_0c723037d8 (PartOf portugal iberian_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_ea701f347f (PartOf portuguese_escudo conto) (STV 1.0 0.9091)) +(: cnet_partof_ec83b10031 (PartOf positive slide) (STV 1.0 0.9091)) +(: cnet_partof_61de791921 (PartOf postcentral_gyrus parietal_lobe) (STV 1.0 0.9091)) +(: cnet_partof_90d876aa12 (PartOf posterior_horn spinal_nerve_root) (STV 1.0 0.9091)) +(: cnet_partof_2c853f909b (PartOf posterior_pituitary pituitary) (STV 1.0 0.9091)) +(: cnet_partof_2f05db06be (PartOf postscript letter) (STV 1.0 0.9091)) +(: cnet_partof_f1d076579c (PartOf potato potato) (STV 1.0 0.9091)) +(: cnet_partof_582e6b8b5a (PartOf potomac maryland) (STV 1.0 0.9091)) +(: cnet_partof_64e274aa66 (PartOf potomac virginia) (STV 1.0 0.9091)) +(: cnet_partof_532119d929 (PartOf potomac west_virginia) (STV 1.0 0.9091)) +(: cnet_partof_ba7ee29c85 (PartOf potsdam germany) (STV 1.0 0.9091)) +(: cnet_partof_2e882077e8 (PartOf poultry domestic_fowl) (STV 1.0 0.9091)) +(: cnet_partof_2af45c3ee2 (PartOf pound quarter) (STV 1.0 0.9091)) +(: cnet_partof_dc66890592 (PartOf pound stone) (STV 1.0 0.9091)) +(: cnet_partof_1da911d012 (PartOf power_brake motor_vehicle) (STV 1.0 0.9091)) +(: cnet_partof_2bb371b126 (PartOf power_line grid) (STV 1.0 0.9091)) +(: cnet_partof_d9397fe654 (PartOf power_station grid) (STV 1.0 0.9091)) +(: cnet_partof_b8333196c3 (PartOf poyang china) (STV 1.0 0.9091)) +(: cnet_partof_a306456ca2 (PartOf prague czech_republic) (STV 1.0 0.9091)) +(: cnet_partof_68a7055822 (PartOf praia cape_verde) (STV 1.0 0.9091)) +(: cnet_partof_ffdfc48699 (PartOf prairial revolutionary_calendar) (STV 1.0 0.9091)) +(: cnet_partof_80efd49300 (PartOf prairie_gourd prairie_gourd) (STV 1.0 0.9091)) +(: cnet_partof_6c63beef93 (PartOf prawn shrimp) (STV 1.0 0.9091)) +(: cnet_partof_f8b3b66aea (PartOf prayer_of_azariah_and_song_of_three_children apocrypha) (STV 1.0 0.9091)) +(: cnet_partof_03270e599d (PartOf preamble document) (STV 1.0 0.9091)) +(: cnet_partof_040ac44686 (PartOf precentral_gyrus frontal_area) (STV 1.0 0.9091)) +(: cnet_partof_cf883ec0b3 (PartOf predictor antiaircraft) (STV 1.0 0.9091)) +(: cnet_partof_5d19dd9e54 (PartOf prefrontal_lobe cerebral_cortex) (STV 1.0 0.9091)) +(: cnet_partof_b9a2f55994 (PartOf prepuberty childhood) (STV 1.0 0.9091)) +(: cnet_partof_99e9aec27a (PartOf prepuce clitoris) (STV 1.0 0.9091)) +(: cnet_partof_6c8947a84a (PartOf prepuce penis) (STV 1.0 0.9091)) +(: cnet_partof_9f19602262 (PartOf presbytery church) (STV 1.0 0.9091)) +(: cnet_partof_816d240d1b (PartOf prescott arizona) (STV 1.0 0.9091)) +(: cnet_partof_bf52f14d59 (PartOf president_bush problem) (STV 1.0 0.9091)) +(: cnet_partof_a4586dad86 (PartOf president_day february) (STV 1.0 0.9091)) +(: cnet_partof_81aab18559 (PartOf press_corp press) (STV 1.0 0.9091)) +(: cnet_partof_a176a51c1b (PartOf pressure_point skin) (STV 1.0 0.9091)) +(: cnet_partof_77c545caab (PartOf pressure_point body) (STV 1.0 0.9091)) +(: cnet_partof_84d29e2faf (PartOf pretoria south_africa) (STV 1.0 0.9091)) +(: cnet_partof_a3eb446777 (PartOf pricket candlestick) (STV 1.0 0.9091)) +(: cnet_partof_edcf38c686 (PartOf prickly_pear prickly_pear) (STV 1.0 0.9091)) +(: cnet_partof_bd984f82fd (PartOf primary_coil transformer) (STV 1.0 0.9091)) +(: cnet_partof_539eb6c58c (PartOf primary_tooth child_s_body) (STV 1.0 0.9091)) +(: cnet_partof_57d3bb03e0 (PartOf primo duet) (STV 1.0 0.9091)) +(: cnet_partof_6a4822c60f (PartOf prince_edward_island maritime_province) (STV 1.0 0.9091)) +(: cnet_partof_fd326b24b2 (PartOf princeton new_jersey) (STV 1.0 0.9091)) +(: cnet_partof_2822b7a2c7 (PartOf princeton_university princeton) (STV 1.0 0.9091)) +(: cnet_partof_3e50ca074e (PartOf principal loan) (STV 1.0 0.9091)) +(: cnet_partof_0d0b4b746d (PartOf principality_of_asturia spain) (STV 1.0 0.9091)) +(: cnet_partof_a9c7ac1068 (PartOf principe sao_tome_and_principe) (STV 1.0 0.9091)) +(: cnet_partof_49dc2bcfcd (PartOf principle ethic) (STV 1.0 0.9091)) +(: cnet_partof_10222c58ae (PartOf prism biprism) (STV 1.0 0.9091)) +(: cnet_partof_a5b5882771 (PartOf prism spectroscope) (STV 1.0 0.9091)) +(: cnet_partof_212b66a823 (PartOf prism telescope) (STV 1.0 0.9091)) +(: cnet_partof_79a9ef58e8 (PartOf proboscis elephant) (STV 1.0 0.9091)) +(: cnet_partof_8612a3485d (PartOf proboscis mammoth) (STV 1.0 0.9091)) +(: cnet_partof_092ef63894 (PartOf processor computer) (STV 1.0 0.9091)) +(: cnet_partof_79a7045b26 (PartOf production_line factory) (STV 1.0 0.9091)) +(: cnet_partof_67fc86ed20 (PartOf prologue dramatic_composition) (STV 1.0 0.9091)) +(: cnet_partof_ae54ade824 (PartOf prolonge_knot prolonge) (STV 1.0 0.9091)) +(: cnet_partof_05ad06245a (PartOf promenade ball) (STV 1.0 0.9091)) +(: cnet_partof_6dbd5e85f9 (PartOf promenade square_dance) (STV 1.0 0.9091)) +(: cnet_partof_c4a69d45ab (PartOf promotion marketing) (STV 1.0 0.9091)) +(: cnet_partof_7fd9667509 (PartOf prompt_box proscenium) (STV 1.0 0.9091)) +(: cnet_partof_47d499a8f5 (PartOf prong belt_buckle) (STV 1.0 0.9091)) +(: cnet_partof_941ea7419a (PartOf prong buckle) (STV 1.0 0.9091)) +(: cnet_partof_3e2db98115 (PartOf prong fork) (STV 1.0 0.9091)) +(: cnet_partof_fc228ae71b (PartOf prong trident) (STV 1.0 0.9091)) +(: cnet_partof_3aa0944642 (PartOf property mise_en_scene) (STV 1.0 0.9091)) +(: cnet_partof_e108059e84 (PartOf prophase meiosis) (STV 1.0 0.9091)) +(: cnet_partof_725a0e7436 (PartOf prophase mitosis) (STV 1.0 0.9091)) +(: cnet_partof_a378752256 (PartOf prophet tanakh) (STV 1.0 0.9091)) +(: cnet_partof_4d56df9041 (PartOf proportional proportion) (STV 1.0 0.9091)) +(: cnet_partof_b6795b7328 (PartOf proprioception somesthesia) (STV 1.0 0.9091)) +(: cnet_partof_bc7b2d8800 (PartOf proscenium theater_stage) (STV 1.0 0.9091)) +(: cnet_partof_d6f5be3151 (PartOf proscenium_arch proscenium) (STV 1.0 0.9091)) +(: cnet_partof_a9a58d8fb6 (PartOf prosecution trial) (STV 1.0 0.9091)) +(: cnet_partof_d0a347c203 (PartOf prostate_gland male_reproductive_system) (STV 1.0 0.9091)) +(: cnet_partof_fdc18d70dc (PartOf protease_inhibitor drug_cocktail) (STV 1.0 0.9091)) +(: cnet_partof_b55e6c73a4 (PartOf proterozoic precambrian) (STV 1.0 0.9091)) +(: cnet_partof_feb1af1d61 (PartOf proton atom) (STV 1.0 0.9608)) +(: cnet_partof_b976f1ae83 (PartOf proton nucleus) (STV 1.0 0.9339)) +(: cnet_partof_7c519f7d04 (PartOf provence france) (STV 1.0 0.9091)) +(: cnet_partof_d0c98934d2 (PartOf proverb hagiographa) (STV 1.0 0.9091)) +(: cnet_partof_2876e09bf1 (PartOf proverb old_testament) (STV 1.0 0.9091)) +(: cnet_partof_106ec720f6 (PartOf proverb sapiential_book) (STV 1.0 0.9091)) +(: cnet_partof_92fa047d0e (PartOf providence rhode_island) (STV 1.0 0.9091)) +(: cnet_partof_b39b979b41 (PartOf provo utah) (STV 1.0 0.9091)) +(: cnet_partof_fa4748537c (PartOf prudhoe_bay alaska) (STV 1.0 0.9091)) +(: cnet_partof_51e305cda4 (PartOf prussia germany) (STV 1.0 0.9091)) +(: cnet_partof_3a398b30b1 (PartOf prussia poland) (STV 1.0 0.9091)) +(: cnet_partof_8621a3e199 (PartOf psalm old_testament) (STV 1.0 0.9091)) +(: cnet_partof_4b6f2af5bd (PartOf psalm hagiographa) (STV 1.0 0.9091)) +(: cnet_partof_eeedccd0e4 (PartOf psalter book_of_common_prayer) (STV 1.0 0.9091)) +(: cnet_partof_aa9c27ed9e (PartOf psalterium ruminant) (STV 1.0 0.9091)) +(: cnet_partof_d4e5d98661 (PartOf pterygoid_process sphenoid_bone) (STV 1.0 0.9091)) +(: cnet_partof_36e7f51934 (PartOf puberty adolescence) (STV 1.0 0.9091)) +(: cnet_partof_d260abc40f (PartOf pubic_hair adult_body) (STV 1.0 0.9091)) +(: cnet_partof_10f361ff9e (PartOf pubis pelvis) (STV 1.0 0.9091)) +(: cnet_partof_dcbdcb7155 (PartOf public_square city) (STV 1.0 0.9091)) +(: cnet_partof_8d83ee6e03 (PartOf public_transport transportation_system) (STV 1.0 0.9091)) +(: cnet_partof_f4762600bc (PartOf public_work infrastructure) (STV 1.0 0.9091)) +(: cnet_partof_bb280ead19 (PartOf pudendal_cleft vulva) (STV 1.0 0.9091)) +(: cnet_partof_ccb971a6a6 (PartOf puebla mexico) (STV 1.0 0.9091)) +(: cnet_partof_8e3d7d69f6 (PartOf pueblo colorado) (STV 1.0 0.9091)) +(: cnet_partof_df6e127fcb (PartOf puerto_rico caribbean) (STV 1.0 0.9091)) +(: cnet_partof_02aa5333a6 (PartOf puerto_rico greater_antille) (STV 1.0 0.9091)) +(: cnet_partof_29002ec2d0 (PartOf puerto_rico puerto_rico) (STV 1.0 0.9091)) +(: cnet_partof_a03c9e5808 (PartOf puff smoke) (STV 1.0 0.9091)) +(: cnet_partof_c0a114bfae (PartOf puget_sound pacific) (STV 1.0 0.9091)) +(: cnet_partof_5b601c72a6 (PartOf puget_sound washington) (STV 1.0 0.9091)) +(: cnet_partof_e1f59cd022 (PartOf puglia italy) (STV 1.0 0.9091)) +(: cnet_partof_e81ec168aa (PartOf pul afghani) (STV 1.0 0.9091)) +(: cnet_partof_4426f9da52 (PartOf pulasan pulasan) (STV 1.0 0.9091)) +(: cnet_partof_46007a131a (PartOf pull_chain flush_toilet) (STV 1.0 0.9091)) +(: cnet_partof_129adbcbb8 (PartOf pulley block_and_tackle) (STV 1.0 0.9091)) +(: cnet_partof_b8c92b0ea4 (PartOf pulmonary_stenosis tetralogy_of_fallot) (STV 1.0 0.9091)) +(: cnet_partof_36431626dd (PartOf pulmonary_vein lung) (STV 1.0 0.9091)) +(: cnet_partof_b86b10edec (PartOf pulp tooth) (STV 1.0 0.9091)) +(: cnet_partof_778c77e774 (PartOf pulp_cavity tooth) (STV 1.0 0.9091)) +(: cnet_partof_18f9b4fc0d (PartOf pulse_generator radar) (STV 1.0 0.9091)) +(: cnet_partof_a627dae709 (PartOf pulse_generator sonar) (STV 1.0 0.9091)) +(: cnet_partof_bd5c085ae4 (PartOf pump cooling_system) (STV 1.0 0.9091)) +(: cnet_partof_9a87aa757c (PartOf pump fuel_system) (STV 1.0 0.9091)) +(: cnet_partof_ef1ab28954 (PartOf pump_action rifle) (STV 1.0 0.9091)) +(: cnet_partof_618391e983 (PartOf pump_action shotgun) (STV 1.0 0.9091)) +(: cnet_partof_f0e959a035 (PartOf pump_room watering_place) (STV 1.0 0.9091)) +(: cnet_partof_d3dc7eb88b (PartOf pumpkin pumpkin) (STV 1.0 0.9091)) +(: cnet_partof_f996172a59 (PartOf pumpkin_seed pumpkin) (STV 1.0 0.9091)) +(: cnet_partof_0df93a5099 (PartOf punch_line joke) (STV 1.0 0.9091)) +(: cnet_partof_f075cb965d (PartOf punctuation orthography) (STV 1.0 0.9091)) +(: cnet_partof_52cd39bef6 (PartOf punjab india) (STV 1.0 0.9091)) +(: cnet_partof_2fd77d024a (PartOf punjab pakistan) (STV 1.0 0.9091)) +(: cnet_partof_45c5c0ca20 (PartOf punta_arena chile) (STV 1.0 0.9091)) +(: cnet_partof_f80ca06326 (PartOf pupil class) (STV 1.0 0.9091)) +(: cnet_partof_49a9d5a6c7 (PartOf pupil eye) (STV 1.0 0.9339)) +(: cnet_partof_ed3b58e6d8 (PartOf pupil iris) (STV 1.0 0.9091)) +(: cnet_partof_28521eb86b (PartOf pupillary_sphincter eye) (STV 1.0 0.9091)) +(: cnet_partof_8507264f84 (PartOf puppis argo) (STV 1.0 0.9091)) +(: cnet_partof_f02d8ed5fb (PartOf purace colombia) (STV 1.0 0.9091)) +(: cnet_partof_890ab89b16 (PartOf purim adar) (STV 1.0 0.9091)) +(: cnet_partof_41bbc9abcf (PartOf purkinje_fiber purkinje_network) (STV 1.0 0.9091)) +(: cnet_partof_70047ce2e6 (PartOf purse_string purse) (STV 1.0 0.9091)) +(: cnet_partof_70a88845dd (PartOf purulence abscess) (STV 1.0 0.9091)) +(: cnet_partof_0acec3d0de (PartOf purus brazil) (STV 1.0 0.9091)) +(: cnet_partof_d4a861dcd7 (PartOf pus hindu_calendar) (STV 1.0 0.9091)) +(: cnet_partof_c881536f67 (PartOf pusan south_korea) (STV 1.0 0.9091)) +(: cnet_partof_9c1cac018a (PartOf push_button push_button_radio) (STV 1.0 0.9091)) +(: cnet_partof_88793bf208 (PartOf put_option straddle) (STV 1.0 0.9091)) +(: cnet_partof_37e08ebbd5 (PartOf putamen lenticular_nucleus) (STV 1.0 0.9091)) +(: cnet_partof_18b6cdd53d (PartOf pya kyat) (STV 1.0 0.9091)) +(: cnet_partof_0f0a562c5c (PartOf pyloric_sphincter pylorus) (STV 1.0 0.9091)) +(: cnet_partof_e0af2f629c (PartOf pyongyang north_korea) (STV 1.0 0.9091)) +(: cnet_partof_be53fd9e3a (PartOf pyramidal_tract central_nervous_system) (STV 1.0 0.9091)) +(: cnet_partof_fed4f0f998 (PartOf pyrenee france) (STV 1.0 0.9091)) +(: cnet_partof_4d7d615d4e (PartOf pyrenee spain) (STV 1.0 0.9091)) +(: cnet_partof_869f3cb571 (PartOf pyriform_area rhinencephalon) (STV 1.0 0.9091)) +(: cnet_partof_b84ab81c5d (PartOf pyxis argo) (STV 1.0 0.9091)) +(: cnet_partof_7a5861422c (PartOf qassam_brigade hama) (STV 1.0 0.9091)) +(: cnet_partof_22784bd7c0 (PartOf qatar arabian_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_666a7c6dcf (PartOf qatar asia) (STV 1.0 0.9091)) +(: cnet_partof_c3afb788d1 (PartOf qatar gulf_state) (STV 1.0 0.9091)) +(: cnet_partof_cd8f4ede89 (PartOf qatar qatar) (STV 1.0 0.9091)) +(: cnet_partof_b4c5f807e2 (PartOf qatari_dirham qatari_riyal) (STV 1.0 0.9091)) +(: cnet_partof_5cff6aceb6 (PartOf qindarka lek) (STV 1.0 0.9091)) +(: cnet_partof_9088343c0f (PartOf qoph hebrew_alphabet) (STV 1.0 0.9091)) +(: cnet_partof_2e723beb67 (PartOf quadricep thigh) (STV 1.0 0.9091)) +(: cnet_partof_f995502fcc (PartOf quahaug quahog) (STV 1.0 0.9091)) +(: cnet_partof_99a7b8c973 (PartOf quai_d_orsay left_bank) (STV 1.0 0.9091)) +(: cnet_partof_8204aa01e4 (PartOf quail quail) (STV 1.0 0.9091)) +(: cnet_partof_36076e00d1 (PartOf quandong quandong) (STV 1.0 0.9091)) +(: cnet_partof_4d0062d8fb (PartOf quandong_nut quandong) (STV 1.0 0.9091)) +(: cnet_partof_bca0c4a7b1 (PartOf quantification predicate_calculus) (STV 1.0 0.9091)) +(: cnet_partof_85737ad3e9 (PartOf quark hadron) (STV 1.0 0.9091)) +(: cnet_partof_e0566feb82 (PartOf quart gallon) (STV 1.0 0.9091)) +(: cnet_partof_1087c46f4a (PartOf quart peck) (STV 1.0 0.9091)) +(: cnet_partof_693ed4524d (PartOf quarter upper) (STV 1.0 0.9091)) +(: cnet_partof_93de7f48c9 (PartOf quarter playing_period) (STV 1.0 0.9091)) +(: cnet_partof_fb3a1f678a (PartOf quarter hundredweight) (STV 1.0 0.9091)) +(: cnet_partof_54c4e2370b (PartOf quarter hour) (STV 1.0 0.9091)) +(: cnet_partof_4578c420aa (PartOf quarter school_year) (STV 1.0 0.9091)) +(: cnet_partof_93bbbe0a6d (PartOf quarter_century century) (STV 1.0 0.9091)) +(: cnet_partof_cbbe7fb7e4 (PartOf quarter_hour hour) (STV 1.0 0.9091)) +(: cnet_partof_37c8706f60 (PartOf quarter_mile mile) (STV 1.0 0.9091)) +(: cnet_partof_869e8afeec (PartOf quarter_pound pound) (STV 1.0 0.9091)) +(: cnet_partof_5a4b82c6e0 (PartOf quarterdeck weather_deck) (STV 1.0 0.9091)) +(: cnet_partof_5eccf77cf1 (PartOf quarterfinal elimination_tournament) (STV 1.0 0.9091)) +(: cnet_partof_29a1489098 (PartOf quaternary cenozoic) (STV 1.0 0.9091)) +(: cnet_partof_d5fb549072 (PartOf quattrocento renaissance) (STV 1.0 0.9091)) +(: cnet_partof_3c5f5071b9 (PartOf quebec canada) (STV 1.0 0.9339)) +(: cnet_partof_c71a28108e (PartOf quebec quebec) (STV 1.0 0.9091)) +(: cnet_partof_80b6bcd6e9 (PartOf quebec_bridge quebec) (STV 1.0 0.9091)) +(: cnet_partof_28ae6e2f49 (PartOf queen_charlotte_sound british_columbia) (STV 1.0 0.9091)) +(: cnet_partof_e7f856c3a7 (PartOf queen_maud_land antarctica) (STV 1.0 0.9091)) +(: cnet_partof_979620e871 (PartOf queen new_york) (STV 1.0 0.9091)) +(: cnet_partof_3a579413ed (PartOf queensboro_bridge new_york) (STV 1.0 0.9091)) +(: cnet_partof_4b32248aa2 (PartOf queensland australia) (STV 1.0 0.9091)) +(: cnet_partof_459e35a899 (PartOf quezon_city philippine) (STV 1.0 0.9091)) +(: cnet_partof_ce5e3e9d58 (PartOf quickening pregnancy) (STV 1.0 0.9091)) +(: cnet_partof_caec85193d (PartOf quill feather) (STV 1.0 0.9091)) +(: cnet_partof_12f1ec1143 (PartOf quill hedgehog) (STV 1.0 0.9091)) +(: cnet_partof_97abf23734 (PartOf quill porcupine) (STV 1.0 0.9091)) +(: cnet_partof_2c6ee66b9c (PartOf quince quince) (STV 1.0 0.9091)) +(: cnet_partof_cdd2642639 (PartOf quintal metric_ton) (STV 1.0 0.9091)) +(: cnet_partof_dcb0dfbcbc (PartOf quintana_roo mexico) (STV 1.0 0.9091)) +(: cnet_partof_0c67963ea8 (PartOf quire ream) (STV 1.0 0.9091)) +(: cnet_partof_aa94aed29c (PartOf quito ecuador) (STV 1.0 0.9091)) +(: cnet_partof_ae07f88995 (PartOf qum iran) (STV 1.0 0.9091)) +(: cnet_partof_6c0b3c968f (PartOf qurush saudi_arabian_riyal) (STV 1.0 0.9091)) +(: cnet_partof_6047078723 (PartOf rabat morocco) (STV 1.0 0.9091)) +(: cnet_partof_f7c690bf69 (PartOf rabbit european_rabbit) (STV 1.0 0.9091)) +(: cnet_partof_f90afc32ff (PartOf rabbit hare) (STV 1.0 0.9091)) +(: cnet_partof_e6324e263d (PartOf rabbit wood_rabbit) (STV 1.0 0.9091)) +(: cnet_partof_d7930a2959 (PartOf rabi_i islamic_calendar) (STV 1.0 0.9091)) +(: cnet_partof_2a9e59dc6b (PartOf rabi_ii islamic_calendar) (STV 1.0 0.9091)) +(: cnet_partof_983b8d4624 (PartOf racine wisconsin) (STV 1.0 0.9091)) +(: cnet_partof_4d9ff59b33 (PartOf radial_vein forearm) (STV 1.0 0.9091)) +(: cnet_partof_208c1208a0 (PartOf radiator car) (STV 1.0 0.9091)) +(: cnet_partof_7759a273cb (PartOf radiator cooling_system) (STV 1.0 0.9091)) +(: cnet_partof_00d843d557 (PartOf radiator heating_system) (STV 1.0 0.9091)) +(: cnet_partof_ab7c59cafb (PartOf radiator_cap radiator) (STV 1.0 0.9091)) +(: cnet_partof_122ef0a04f (PartOf radiator_hose cooling_system) (STV 1.0 0.9091)) +(: cnet_partof_0951cc34f1 (PartOf radical ideogram) (STV 1.0 0.9091)) +(: cnet_partof_626c3921db (PartOf radicle nerve) (STV 1.0 0.9091)) +(: cnet_partof_d84f65d2ac (PartOf radio_chassis receiver) (STV 1.0 0.9091)) +(: cnet_partof_a59463112a (PartOf radio_chassis record_player) (STV 1.0 0.9091)) +(: cnet_partof_44dc024e20 (PartOf radio_frequency electromagnetic_spectrum) (STV 1.0 0.9091)) +(: cnet_partof_c05f9a5137 (PartOf radio_phonograph audio_system) (STV 1.0 0.9091)) +(: cnet_partof_9d5e88de85 (PartOf radio_receiver radio) (STV 1.0 0.9091)) +(: cnet_partof_241120eea1 (PartOf radio_receiver radio_phonograph) (STV 1.0 0.9091)) +(: cnet_partof_0f0f79658d (PartOf radio_spectrum electromagnetic_spectrum) (STV 1.0 0.9091)) +(: cnet_partof_23cfd62451 (PartOf radio_station communication_system) (STV 1.0 0.9091)) +(: cnet_partof_f34b40fd97 (PartOf radio_transmitter radio) (STV 1.0 0.9091)) +(: cnet_partof_7552392a53 (PartOf radio_wave radio_spectrum) (STV 1.0 0.9091)) +(: cnet_partof_55030d8f85 (PartOf radish radish_plant) (STV 1.0 0.9091)) +(: cnet_partof_4aea7da2a0 (PartOf radius diameter) (STV 1.0 0.9091)) +(: cnet_partof_95d29417e9 (PartOf radius forearm) (STV 1.0 0.9091)) +(: cnet_partof_2f79f56ce3 (PartOf radome airplane) (STV 1.0 0.9091)) +(: cnet_partof_aeaf7812cc (PartOf rag_day rag) (STV 1.0 0.9091)) +(: cnet_partof_33edf0a572 (PartOf raglan_sleeve raglan) (STV 1.0 0.9091)) +(: cnet_partof_0074367946 (PartOf railing bannister) (STV 1.0 0.9091)) +(: cnet_partof_b68803749d (PartOf railroad_bed line) (STV 1.0 0.9091)) +(: cnet_partof_25069fa3c8 (PartOf railroad_track line) (STV 1.0 0.9091)) +(: cnet_partof_4826550bb4 (PartOf rainbow sky) (STV 1.0 0.9091)) +(: cnet_partof_e1859d7e3b (PartOf rainbow_trout rainbow_trout) (STV 1.0 0.9091)) +(: cnet_partof_b2a8661414 (PartOf raindrop rain) (STV 1.0 0.9091)) +(: cnet_partof_bb70723380 (PartOf rajab islamic_calendar) (STV 1.0 0.9091)) +(: cnet_partof_4f08b9f65c (PartOf rakaposhi karakoram) (STV 1.0 0.9091)) +(: cnet_partof_098814c51a (PartOf rake_handle rake) (STV 1.0 0.9091)) +(: cnet_partof_8623a90319 (PartOf raleigh north_carolina) (STV 1.0 0.9091)) +(: cnet_partof_6419828859 (PartOf ram computer) (STV 1.0 0.9572)) +(: cnet_partof_b15027cd03 (PartOf ram_disk random_access_memory) (STV 1.0 0.9091)) +(: cnet_partof_c0fd1243b2 (PartOf ramadan islamic_calendar) (STV 1.0 0.9091)) +(: cnet_partof_5294d5dbea (PartOf ramanavami chait) (STV 1.0 0.9091)) +(: cnet_partof_5d1fb6d89b (PartOf rambutan rambutan) (STV 1.0 0.9091)) +(: cnet_partof_846164fd9f (PartOf rampart fortification) (STV 1.0 0.9091)) +(: cnet_partof_81f2b3d544 (PartOf ranier cascade) (STV 1.0 0.9091)) +(: cnet_partof_05ca77afd1 (PartOf ranier washington) (STV 1.0 0.9091)) +(: cnet_partof_027573214f (PartOf ranvier_s_node medullary_sheath) (STV 1.0 0.9091)) +(: cnet_partof_2f7bc5315e (PartOf raphe scrotum) (STV 1.0 0.9091)) +(: cnet_partof_20de07dff6 (PartOf rapid river) (STV 1.0 0.9091)) +(: cnet_partof_f634d792a1 (PartOf rapid_city south_dakota) (STV 1.0 0.9091)) +(: cnet_partof_91ca44cfc1 (PartOf rappahannock_river virginia) (STV 1.0 0.9091)) +(: cnet_partof_eee17f9a9b (PartOf rasht iran) (STV 1.0 0.9091)) +(: cnet_partof_e102a8aca8 (PartOf raspberry american_raspberry) (STV 1.0 0.9091)) +(: cnet_partof_7e35186ade (PartOf raspberry black_raspberry) (STV 1.0 0.9091)) +(: cnet_partof_b13981b43e (PartOf raster display) (STV 1.0 0.9091)) +(: cnet_partof_231cd0427f (PartOf rat hairdo) (STV 1.0 0.9091)) +(: cnet_partof_44f008f917 (PartOf ratchet spiral_ratchet_screwdriver) (STV 1.0 0.9091)) +(: cnet_partof_c2a2d701b5 (PartOf ratchet_wheel ratchet) (STV 1.0 0.9091)) +(: cnet_partof_d668d17237 (PartOf ratline ship) (STV 1.0 0.9091)) +(: cnet_partof_dfbf4361c7 (PartOf rattle rattlesnake) (STV 1.0 0.9091)) +(: cnet_partof_3e6753cb0f (PartOf rawalpindi pakistan) (STV 1.0 0.9091)) +(: cnet_partof_cb3c99f196 (PartOf ray fin) (STV 1.0 0.9091)) +(: cnet_partof_c679375205 (PartOf ray_flower flower_head) (STV 1.0 0.9091)) +(: cnet_partof_d75b79b842 (PartOf razorblade razor) (STV 1.0 0.9091)) +(: cnet_partof_49d8457d5b (PartOf reading berkshire) (STV 1.0 0.9091)) +(: cnet_partof_1cb307df86 (PartOf reading england) (STV 1.0 0.9091)) +(: cnet_partof_bfc2765171 (PartOf reading_room clubhouse) (STV 1.0 0.9091)) +(: cnet_partof_43e119c861 (PartOf reading_room library) (STV 1.0 0.9091)) +(: cnet_partof_85f59ccf8d (PartOf rear_window car) (STV 1.0 0.9091)) +(: cnet_partof_38ff5b90a7 (PartOf rebound basketball) (STV 1.0 0.9091)) +(: cnet_partof_f4d2d07a3c (PartOf receptacle stalk) (STV 1.0 0.9091)) +(: cnet_partof_13e316c953 (PartOf reception_line reception) (STV 1.0 0.9091)) +(: cnet_partof_f1b6265c26 (PartOf recife brazil) (STV 1.0 0.9091)) +(: cnet_partof_8d907e6a06 (PartOf record_changer record_player) (STV 1.0 0.9091)) +(: cnet_partof_4aaab955c4 (PartOf record_player audio_system) (STV 1.0 0.9091)) +(: cnet_partof_ebe439b417 (PartOf rectal_artery rectum) (STV 1.0 0.9091)) +(: cnet_partof_99f38ef3cd (PartOf rectum large_intestine) (STV 1.0 0.9091)) +(: cnet_partof_aac0cd9d4a (PartOf red louisiana) (STV 1.0 0.9091)) +(: cnet_partof_07362d696c (PartOf red oklahoma) (STV 1.0 0.9091)) +(: cnet_partof_e3ff960fd1 (PartOf red texa) (STV 1.0 0.9091)) +(: cnet_partof_ead0bf6555 (PartOf red_currant red_currant) (STV 1.0 0.9091)) +(: cnet_partof_5725c3c273 (PartOf red_rockfish red_rockfish) (STV 1.0 0.9091)) +(: cnet_partof_b12ee629ab (PartOf red_salmon sockeye) (STV 1.0 0.9091)) +(: cnet_partof_0b03876163 (PartOf red_sea indian_ocean) (STV 1.0 0.9091)) +(: cnet_partof_0a5aa887a4 (PartOf red_snapper red_snapper) (STV 1.0 0.9091)) +(: cnet_partof_bf018e5002 (PartOf redding california) (STV 1.0 0.9091)) +(: cnet_partof_3fd8562d49 (PartOf redonda antigua_and_barbuda) (STV 1.0 0.9091)) +(: cnet_partof_09b2273df9 (PartOf redwood_national_park california) (STV 1.0 0.9091)) +(: cnet_partof_77ff7c8b0d (PartOf reef sail) (STV 1.0 0.9091)) +(: cnet_partof_e920c83f2e (PartOf reel fishing_rod) (STV 1.0 0.9091)) +(: cnet_partof_5269d335ea (PartOf reformer oil_refinery) (STV 1.0 0.9091)) +(: cnet_partof_62031627a7 (PartOf refrain song) (STV 1.0 0.9091)) +(: cnet_partof_ed829c9155 (PartOf refrigeration_system refrigerator) (STV 1.0 0.9091)) +(: cnet_partof_e196b3e8f3 (PartOf refrigeration_system refrigerator_car) (STV 1.0 0.9091)) +(: cnet_partof_dab254789b (PartOf reggane algeria) (STV 1.0 0.9091)) +(: cnet_partof_3cba3b7c18 (PartOf regina saskatchewan) (STV 1.0 0.9091)) +(: cnet_partof_9aebe63a00 (PartOf register furnace) (STV 1.0 0.9091)) +(: cnet_partof_13e7594855 (PartOf register memory) (STV 1.0 0.9091)) +(: cnet_partof_0f81b43372 (PartOf regression regression_analysis) (STV 1.0 0.9091)) +(: cnet_partof_037430522c (PartOf regression_coefficient linear_regression) (STV 1.0 0.9091)) +(: cnet_partof_7b02371978 (PartOf regression_equation regression_analysis) (STV 1.0 0.9091)) +(: cnet_partof_bd61a976f1 (PartOf regression_line regression_analysis) (STV 1.0 0.9091)) +(: cnet_partof_d8b210225e (PartOf regulation_time athletic_game) (STV 1.0 0.9091)) +(: cnet_partof_a6bb49bf56 (PartOf regulatory_gene operon) (STV 1.0 0.9091)) +(: cnet_partof_8fbd604d23 (PartOf rein bridle) (STV 1.0 0.9091)) +(: cnet_partof_d3ef50a99a (PartOf relay circuit) (STV 1.0 0.9091)) +(: cnet_partof_d1f4078987 (PartOf religious_holiday church_year) (STV 1.0 0.9091)) +(: cnet_partof_5a104d1d4b (PartOf remedy treatment) (STV 1.0 0.9091)) +(: cnet_partof_c258f6379a (PartOf remise straight_thrust) (STV 1.0 0.9091)) +(: cnet_partof_91f14b9bfe (PartOf remote_control remote_control_bomb) (STV 1.0 0.9091)) +(: cnet_partof_68b33e09b0 (PartOf renaissance history) (STV 1.0 0.9091)) +(: cnet_partof_71d31d5f5e (PartOf renal_artery kidney) (STV 1.0 0.9091)) +(: cnet_partof_82905e11e4 (PartOf renal_cortex kidney) (STV 1.0 0.9091)) +(: cnet_partof_1a657f1958 (PartOf renal_vein kidney) (STV 1.0 0.9091)) +(: cnet_partof_af851ef75d (PartOf reno nevada) (STV 1.0 0.9091)) +(: cnet_partof_9dfd5131db (PartOf rent_seeking economic) (STV 1.0 0.9091)) +(: cnet_partof_b64bf9b2fb (PartOf reproductive_cell reproductive_system) (STV 1.0 0.9091)) +(: cnet_partof_f1a2df31a1 (PartOf reproductive_organ reproductive_system) (STV 1.0 0.9091)) +(: cnet_partof_589e1aa6f2 (PartOf reproductive_system urogenital_system) (STV 1.0 0.9091)) +(: cnet_partof_a1450e7f57 (PartOf republican colorado) (STV 1.0 0.9091)) +(: cnet_partof_83842872c8 (PartOf republican kansa) (STV 1.0 0.9091)) +(: cnet_partof_4ff1b2f464 (PartOf republican nebraska) (STV 1.0 0.9091)) +(: cnet_partof_7f8e165a1e (PartOf requiem requiem) (STV 1.0 0.9091)) +(: cnet_partof_935bbc3278 (PartOf rerebrace body_armor) (STV 1.0 0.9091)) +(: cnet_partof_32697691df (PartOf reserve_clause contract) (STV 1.0 0.9091)) +(: cnet_partof_13f3b7da50 (PartOf reservoir water_system) (STV 1.0 0.9091)) +(: cnet_partof_1d2ba31a81 (PartOf reset_button reset) (STV 1.0 0.9091)) +(: cnet_partof_f4e6086e5e (PartOf resh hebrew_alphabet) (STV 1.0 0.9091)) +(: cnet_partof_93c4c48b2a (PartOf resistor circuit) (STV 1.0 0.9091)) +(: cnet_partof_232df5b81a (PartOf resort resort_area) (STV 1.0 0.9091)) +(: cnet_partof_74f510a8dc (PartOf resort_hotel resort_area) (STV 1.0 0.9091)) +(: cnet_partof_1383f082e2 (PartOf respiratory_center medulla_oblongata) (STV 1.0 0.9091)) +(: cnet_partof_b6191abc21 (PartOf respiratory_center pon) (STV 1.0 0.9091)) +(: cnet_partof_ea7b27ea8c (PartOf respiratory_organ respiratory_system) (STV 1.0 0.9091)) +(: cnet_partof_98336e9245 (PartOf respiratory_system body) (STV 1.0 0.9091)) +(: cnet_partof_1b749c3771 (PartOf respiratory_tract respiratory_system) (STV 1.0 0.9091)) +(: cnet_partof_fc1a0c1e3c (PartOf responsibility character) (STV 1.0 0.9091)) +(: cnet_partof_d89500ece2 (PartOf rete_testis testis) (STV 1.0 0.9091)) +(: cnet_partof_389750e2b4 (PartOf reticle eyepiece) (STV 1.0 0.9091)) +(: cnet_partof_9f38f35fa5 (PartOf reticular_activating_system reticular_formation) (STV 1.0 0.9091)) +(: cnet_partof_2914633a10 (PartOf reticular_formation brainstem) (STV 1.0 0.9091)) +(: cnet_partof_e0455e2a1e (PartOf reticuloendothelial_system immune_system) (STV 1.0 0.9091)) +(: cnet_partof_a0e7ad2518 (PartOf reticulum ruminant) (STV 1.0 0.9091)) +(: cnet_partof_c5e9d9ea7a (PartOf retina eye) (STV 1.0 0.9091)) +(: cnet_partof_afd4966ad9 (PartOf retort still) (STV 1.0 0.9091)) +(: cnet_partof_7d2fb58f13 (PartOf return tennis) (STV 1.0 0.9091)) +(: cnet_partof_18038737c4 (PartOf revelation new_testament) (STV 1.0 0.9091)) +(: cnet_partof_1aff4f55d5 (PartOf reverse car) (STV 1.0 0.9091)) +(: cnet_partof_c5d6d83142 (PartOf reverse coin) (STV 1.0 0.9091)) +(: cnet_partof_ee476db824 (PartOf revetment embankment) (STV 1.0 0.9091)) +(: cnet_partof_ccd6452a66 (PartOf revoke card_game) (STV 1.0 0.9091)) +(: cnet_partof_5be4f11db0 (PartOf revolutionary_calendar_month revolutionary_calendar) (STV 1.0 0.9091)) +(: cnet_partof_4aac01901e (PartOf reykjavik iceland) (STV 1.0 0.9091)) +(: cnet_partof_5a7e6e5b74 (PartOf rheim france) (STV 1.0 0.9091)) +(: cnet_partof_167553be0b (PartOf rhetorical_device rhetoric) (STV 1.0 0.9091)) +(: cnet_partof_34dec315d3 (PartOf rheumatic_aortitis rheumatic_fever) (STV 1.0 0.9091)) +(: cnet_partof_87c7029728 (PartOf rhine france) (STV 1.0 0.9091)) +(: cnet_partof_815769ccc0 (PartOf rhine germany) (STV 1.0 0.9091)) +(: cnet_partof_5988910d68 (PartOf rhine netherland) (STV 1.0 0.9091)) +(: cnet_partof_57944ec165 (PartOf rhine switzerland) (STV 1.0 0.9091)) +(: cnet_partof_0302f6308b (PartOf rhineland germany) (STV 1.0 0.9091)) +(: cnet_partof_ec7be9f4c6 (PartOf rhineland_palatinate germany) (STV 1.0 0.9091)) +(: cnet_partof_659fcfb141 (PartOf rhinion nasal) (STV 1.0 0.9091)) +(: cnet_partof_6c6a7f92ba (PartOf rhinorrhea cold) (STV 1.0 0.9091)) +(: cnet_partof_d9fdf33c4d (PartOf rhode_island new_england) (STV 1.0 0.9091)) +(: cnet_partof_668ccfc326 (PartOf rhode_island united_state) (STV 1.0 0.9091)) +(: cnet_partof_fda0e9bf3e (PartOf rhode dodecanese) (STV 1.0 0.9091)) +(: cnet_partof_d2158cec52 (PartOf rhode greece) (STV 1.0 0.9091)) +(: cnet_partof_322a9aa87b (PartOf rhone france) (STV 1.0 0.9091)) +(: cnet_partof_d79781734f (PartOf rhone switzerland) (STV 1.0 0.9091)) +(: cnet_partof_69aadb3e2c (PartOf rhone_alpe france) (STV 1.0 0.9091)) +(: cnet_partof_6faa246e72 (PartOf rhyme poem) (STV 1.0 0.9091)) +(: cnet_partof_d8aac3b967 (PartOf rib hull) (STV 1.0 0.9091)) +(: cnet_partof_e8e93b47e7 (PartOf rib umbrella) (STV 1.0 0.9091)) +(: cnet_partof_6586f60d4d (PartOf rib wing) (STV 1.0 0.9091)) +(: cnet_partof_12b8eca214 (PartOf rib vertebrate) (STV 1.0 0.9091)) +(: cnet_partof_9547807a0c (PartOf rib_cage axial_skeleton) (STV 1.0 0.9091)) +(: cnet_partof_f0a1e716ff (PartOf rib_cage thorax) (STV 1.0 0.9091)) +(: cnet_partof_d4c68e99e4 (PartOf rib_roast rib) (STV 1.0 0.9091)) +(: cnet_partof_5f951a1315 (PartOf ribbon typewriter) (STV 1.0 0.9091)) +(: cnet_partof_2294bcc396 (PartOf rice cultivated_rice) (STV 1.0 0.9091)) +(: cnet_partof_3c33b36d03 (PartOf richmond virginia) (STV 1.0 0.9091)) +(: cnet_partof_b5e7d372fc (PartOf ride amusement_park) (STV 1.0 0.9091)) +(: cnet_partof_d92c37a2be (PartOf rider bill) (STV 1.0 0.9091)) +(: cnet_partof_9fc4b5eda2 (PartOf rider legislative_act) (STV 1.0 0.9091)) +(: cnet_partof_8a79c84a14 (PartOf rider_plate hull) (STV 1.0 0.9091)) +(: cnet_partof_44e83284fa (PartOf ridge gable_roof) (STV 1.0 0.9091)) +(: cnet_partof_389eadc7d6 (PartOf ridge_rope ship) (STV 1.0 0.9091)) +(: cnet_partof_8155380148 (PartOf riding_bitt ship) (STV 1.0 0.9091)) +(: cnet_partof_35e6a67dfb (PartOf riding_boot riding_habit) (STV 1.0 0.9091)) +(: cnet_partof_1dddc7e9aa (PartOf rifle_butt rifle) (STV 1.0 0.9091)) +(: cnet_partof_12b4c52f24 (PartOf riga latvia) (STV 1.0 0.9091)) +(: cnet_partof_0b209d5ae1 (PartOf right_bank paris) (STV 1.0 0.9091)) +(: cnet_partof_695e9f57f6 (PartOf right_ear person) (STV 1.0 0.9091)) +(: cnet_partof_d59b370043 (PartOf right_field outfield) (STV 1.0 0.9091)) +(: cnet_partof_742d080168 (PartOf right_hand person) (STV 1.0 0.9091)) +(: cnet_partof_a137635803 (PartOf right_leg person) (STV 1.0 0.9091)) +(: cnet_partof_838337a52e (PartOf rim wheel) (STV 1.0 0.9091)) +(: cnet_partof_e2110135f7 (PartOf rima_glottidis glottis) (STV 1.0 0.9091)) +(: cnet_partof_065f11f9ba (PartOf rinse wash) (STV 1.0 0.9091)) +(: cnet_partof_d52227e92b (PartOf rio_de_janeiro brazil) (STV 1.0 0.9091)) +(: cnet_partof_26815dc13b (PartOf rio_de_la_plata argentina) (STV 1.0 0.9091)) +(: cnet_partof_fdca7aa110 (PartOf rio_de_la_plata uruguay) (STV 1.0 0.9091)) +(: cnet_partof_3e153f635a (PartOf rio_grande mexico) (STV 1.0 0.9091)) +(: cnet_partof_843fa137cf (PartOf rio_grande united_state) (STV 1.0 0.9091)) +(: cnet_partof_a60521df34 (PartOf riot_act criminal_law) (STV 1.0 0.9091)) +(: cnet_partof_8606c4c44e (PartOf ripcord balloon) (STV 1.0 0.9091)) +(: cnet_partof_a6fd8131d1 (PartOf ripcord parachute) (STV 1.0 0.9091)) +(: cnet_partof_81fefd220d (PartOf ripping_chisel ripping_bar) (STV 1.0 0.9091)) +(: cnet_partof_7cb3135e32 (PartOf riptide tide) (STV 1.0 0.9091)) +(: cnet_partof_4a0c04d2e4 (PartOf riser step) (STV 1.0 0.9091)) +(: cnet_partof_f4a88aa891 (PartOf ritual_dancing ritual) (STV 1.0 0.9091)) +(: cnet_partof_0bfccb3e1a (PartOf river water_system) (STV 1.0 0.9091)) +(: cnet_partof_13e9edc0a1 (PartOf river_prawn long_clawed_prawn) (STV 1.0 0.9091)) +(: cnet_partof_7509fa40be (PartOf riverside california) (STV 1.0 0.9091)) +(: cnet_partof_1b12571988 (PartOf riviera france) (STV 1.0 0.9091)) +(: cnet_partof_98720d95cc (PartOf riviera italy) (STV 1.0 0.9091)) +(: cnet_partof_8f7e1f4258 (PartOf riyadh saudi_arabia) (STV 1.0 0.9091)) +(: cnet_partof_a07f64c2f5 (PartOf roadbed road) (STV 1.0 0.9091)) +(: cnet_partof_c1e1ab6dac (PartOf roanoke virginia) (STV 1.0 0.9091)) +(: cnet_partof_1cb213b3f0 (PartOf rochester minnesota) (STV 1.0 0.9091)) +(: cnet_partof_7a33d2c7a5 (PartOf rochester new_york) (STV 1.0 0.9091)) +(: cnet_partof_4e6e30aadc (PartOf rock_cornish_hen rock_cornish) (STV 1.0 0.9091)) +(: cnet_partof_d6b458dd10 (PartOf rock_island illinois) (STV 1.0 0.9091)) +(: cnet_partof_fcfaf05c86 (PartOf rock_spring wyoming) (STV 1.0 0.9091)) +(: cnet_partof_02015663ab (PartOf rocker cradle) (STV 1.0 0.9091)) +(: cnet_partof_d8f9baa2c8 (PartOf rocker hobby) (STV 1.0 0.9091)) +(: cnet_partof_f72637dacf (PartOf rocker rocking_chair) (STV 1.0 0.9091)) +(: cnet_partof_b65cc4e570 (PartOf rocket rocket) (STV 1.0 0.9091)) +(: cnet_partof_9141447419 (PartOf rockfish rockfish) (STV 1.0 0.9091)) +(: cnet_partof_bcccfb695b (PartOf rockford illinois) (STV 1.0 0.9091)) +(: cnet_partof_e6eb52109d (PartOf rocky north_america) (STV 1.0 0.9091)) +(: cnet_partof_428ff5795e (PartOf rocky_mountain_national_park colorado) (STV 1.0 0.9091)) +(: cnet_partof_2eae734867 (PartOf rocroi thirty_year_war) (STV 1.0 0.9091)) +(: cnet_partof_5c3d4dc473 (PartOf rod eye) (STV 1.0 0.9091)) +(: cnet_partof_661407d402 (PartOf rod retina) (STV 1.0 0.9091)) +(: cnet_partof_4bc8d1f00e (PartOf roe fish) (STV 1.0 0.9091)) +(: cnet_partof_92e4bfdd7a (PartOf roll bowling) (STV 1.0 0.9091)) +(: cnet_partof_b928b1deea (PartOf roller roller_blind) (STV 1.0 0.9091)) +(: cnet_partof_aa0aa7ba5a (PartOf roller roller_skate) (STV 1.0 0.9091)) +(: cnet_partof_ea4209a406 (PartOf roman_empire africa) (STV 1.0 0.9091)) +(: cnet_partof_48fc7d8c7f (PartOf roman_empire asia) (STV 1.0 0.9091)) +(: cnet_partof_71c000c542 (PartOf roman_empire europe) (STV 1.0 0.9091)) +(: cnet_partof_1234fcc372 (PartOf roman_republic europe) (STV 1.0 0.9091)) +(: cnet_partof_174b4f2e7c (PartOf romania europe) (STV 1.0 0.9091)) +(: cnet_partof_39a71c2e0c (PartOf rome roman_catholic) (STV 1.0 0.9091)) +(: cnet_partof_8650fb9d42 (PartOf rome italy) (STV 1.0 0.9091)) +(: cnet_partof_f2ca8366dd (PartOf rood_screen church) (STV 1.0 0.9091)) +(: cnet_partof_6f82d852e7 (PartOf roof building) (STV 1.0 0.9091)) +(: cnet_partof_d06a79b5e0 (PartOf roof bus) (STV 1.0 0.9091)) +(: cnet_partof_740b9847fb (PartOf roof car) (STV 1.0 0.9091)) +(: cnet_partof_d45bf91e77 (PartOf roof truck) (STV 1.0 0.9091)) +(: cnet_partof_f58be305b2 (PartOf roof cave) (STV 1.0 0.9091)) +(: cnet_partof_bda6c18450 (PartOf roof_peak roof) (STV 1.0 0.9091)) +(: cnet_partof_6a88d4ba8e (PartOf roofing construction) (STV 1.0 0.9091)) +(: cnet_partof_47563636b9 (PartOf room building) (STV 1.0 0.9339)) +(: cnet_partof_c90c726454 (PartOf room_light room) (STV 1.0 0.9091)) +(: cnet_partof_3f80fa05a2 (PartOf roomette sleeping_car) (STV 1.0 0.9091)) +(: cnet_partof_7a5d6ee3fa (PartOf root transport_system_of_plant) (STV 1.0 0.9091)) +(: cnet_partof_f7e166c7b2 (PartOf root hair) (STV 1.0 0.9091)) +(: cnet_partof_aec2515727 (PartOf root nail) (STV 1.0 0.9091)) +(: cnet_partof_2fafabeb62 (PartOf root tooth) (STV 1.0 0.9091)) +(: cnet_partof_526aaac5a4 (PartOf root rootage) (STV 1.0 0.9091)) +(: cnet_partof_bbf19c8d43 (PartOf root_canal pulp_cavity) (STV 1.0 0.9091)) +(: cnet_partof_4aaefad2f8 (PartOf root_cap root) (STV 1.0 0.9091)) +(: cnet_partof_42f9c3a7c0 (PartOf root_hair root) (STV 1.0 0.9091)) +(: cnet_partof_299f5c955b (PartOf rosario argentina) (STV 1.0 0.9091)) +(: cnet_partof_8456ee3d2d (PartOf rose_apple rose_apple) (STV 1.0 0.9091)) +(: cnet_partof_efa412c79d (PartOf rose_bed rose_garden) (STV 1.0 0.9091)) +(: cnet_partof_bc6cad7cc3 (PartOf roseau dominica) (STV 1.0 0.9091)) +(: cnet_partof_d7e00f5660 (PartOf rosemary rosemary) (STV 1.0 0.9091)) +(: cnet_partof_d69d8226b7 (PartOf ross_sea antarctica) (STV 1.0 0.9091)) +(: cnet_partof_88463bf399 (PartOf rossbach seven_year_war) (STV 1.0 0.9091)) +(: cnet_partof_6a96c7fc99 (PartOf rostock germany) (STV 1.0 0.9091)) +(: cnet_partof_7238e1b084 (PartOf rostov russia) (STV 1.0 0.9091)) +(: cnet_partof_83d9b2904f (PartOf roswell new_mexico) (STV 1.0 0.9091)) +(: cnet_partof_3a802ca056 (PartOf rotating_shaft rotating_mechanism) (STV 1.0 0.9091)) +(: cnet_partof_df5b8fe01e (PartOf rotational_latency access_time) (STV 1.0 0.9091)) +(: cnet_partof_780a301e4a (PartOf rotator_cuff shoulder) (STV 1.0 0.9091)) +(: cnet_partof_32a466dfb8 (PartOf rotogravure newspaper) (STV 1.0 0.9091)) +(: cnet_partof_972ef1e003 (PartOf rotor distributor) (STV 1.0 0.9091)) +(: cnet_partof_e8143fa290 (PartOf rotor electric_motor) (STV 1.0 0.9091)) +(: cnet_partof_ff4ff4b822 (PartOf rotor generator) (STV 1.0 0.9091)) +(: cnet_partof_cd77a1aed8 (PartOf rotor helicopter) (STV 1.0 0.9091)) +(: cnet_partof_7d90a35cb6 (PartOf rotor jet_engine) (STV 1.0 0.9091)) +(: cnet_partof_146e35b2f3 (PartOf rotor turbine) (STV 1.0 0.9091)) +(: cnet_partof_94974a3184 (PartOf rotor_blade main_rotor) (STV 1.0 0.9091)) +(: cnet_partof_cbf9116d92 (PartOf rotor_head main_rotor) (STV 1.0 0.9091)) +(: cnet_partof_1c91b00aa5 (PartOf rotterdam netherland) (STV 1.0 0.9091)) +(: cnet_partof_d6445d3d8c (PartOf rough golf_course) (STV 1.0 0.9091)) +(: cnet_partof_4263be7935 (PartOf round_steak round) (STV 1.0 0.9091)) +(: cnet_partof_1b66e1aa4d (PartOf roundel body_armor) (STV 1.0 0.9091)) +(: cnet_partof_e7c09175eb (PartOf routine program) (STV 1.0 0.9091)) +(: cnet_partof_c8ee2a71ca (PartOf row table) (STV 1.0 0.9091)) +(: cnet_partof_e1df2f3c26 (PartOf rowanberry rowan) (STV 1.0 0.9091)) +(: cnet_partof_7ab47531f9 (PartOf rowel spur) (STV 1.0 0.9091)) +(: cnet_partof_2a4dcf3116 (PartOf rub_al_khali arabian_desert) (STV 1.0 0.9091)) +(: cnet_partof_2ce1edf0ab (PartOf rub_al_khali saudi_arabia) (STV 1.0 0.9091)) +(: cnet_partof_0dd3cf81e5 (PartOf rubber_eraser pencil) (STV 1.0 0.9091)) +(: cnet_partof_022ab27c21 (PartOf rudder vertical_tail) (STV 1.0 0.9091)) +(: cnet_partof_b71cc3e209 (PartOf rudder vessel) (STV 1.0 0.9091)) +(: cnet_partof_f714f7e149 (PartOf rudder_blade rudder) (STV 1.0 0.9091)) +(: cnet_partof_5391b37f4f (PartOf rudderpost rudder) (STV 1.0 0.9091)) +(: cnet_partof_2b137bd47d (PartOf rue rue) (STV 1.0 0.9091)) +(: cnet_partof_fc914e0b9f (PartOf ruff bridge) (STV 1.0 0.9091)) +(: cnet_partof_c94f3e6a91 (PartOf ruhr germany) (STV 1.0 0.9091)) +(: cnet_partof_ad8cf85970 (PartOf rule book) (STV 1.0 0.9091)) +(: cnet_partof_742c377071 (PartOf rumble carriage) (STV 1.0 0.9091)) +(: cnet_partof_f2c678a912 (PartOf rumble_seat roadster) (STV 1.0 0.9091)) +(: cnet_partof_ba770eb1c6 (PartOf rumen ruminant) (STV 1.0 0.9091)) +(: cnet_partof_f08ea867f6 (PartOf rump_roast rump) (STV 1.0 0.9091)) +(: cnet_partof_b9a37f2ebd (PartOf rump_steak rump) (STV 1.0 0.9091)) +(: cnet_partof_fad9138bb0 (PartOf run_up bowling) (STV 1.0 0.9091)) +(: cnet_partof_3f2896626a (PartOf run_up long_jump) (STV 1.0 0.9091)) +(: cnet_partof_199074d8f2 (PartOf run_up pole_vault) (STV 1.0 0.9091)) +(: cnet_partof_cb56a5e003 (PartOf rundle ladder) (STV 1.0 0.9091)) +(: cnet_partof_34b709b5af (PartOf rung folding_chair) (STV 1.0 0.9091)) +(: cnet_partof_33663274bf (PartOf rung highchair) (STV 1.0 0.9091)) +(: cnet_partof_ce018fadca (PartOf rung rocking_chair) (STV 1.0 0.9091)) +(: cnet_partof_1d459a069f (PartOf rung straight_chair) (STV 1.0 0.9091)) +(: cnet_partof_d70dd95b33 (PartOf runner sled) (STV 1.0 0.9091)) +(: cnet_partof_f6156a764d (PartOf running_board car) (STV 1.0 0.9091)) +(: cnet_partof_eaee4ae72e (PartOf running_head book) (STV 1.0 0.9091)) +(: cnet_partof_feb4b0cbf7 (PartOf runway airfield) (STV 1.0 0.9091)) +(: cnet_partof_3a9e8b6da6 (PartOf runway airstrip) (STV 1.0 0.9091)) +(: cnet_partof_c50fa4b434 (PartOf rushmore black_hill) (STV 1.0 0.9091)) +(: cnet_partof_887fcdb5da (PartOf rushmore south_dakota) (STV 1.0 0.9091)) +(: cnet_partof_71d647032e (PartOf russia eurasia) (STV 1.0 0.9091)) +(: cnet_partof_49c2579fdd (PartOf russian_river california) (STV 1.0 0.9091)) +(: cnet_partof_d34e67daa1 (PartOf rustbelt midwest) (STV 1.0 0.9091)) +(: cnet_partof_e60fed5292 (PartOf rustbelt new_england) (STV 1.0 0.9091)) +(: cnet_partof_6426d9ea6b (PartOf rutabaga rutabaga) (STV 1.0 0.9091)) +(: cnet_partof_f9603eeab3 (PartOf ruth hagiographa) (STV 1.0 0.9091)) +(: cnet_partof_ea1868e9c5 (PartOf ruth old_testament) (STV 1.0 0.9091)) +(: cnet_partof_cd46118f2c (PartOf rutland vermont) (STV 1.0 0.9091)) +(: cnet_partof_78c136ac16 (PartOf rwanda africa) (STV 1.0 0.9091)) +(: cnet_partof_769b62ce69 (PartOf rwanda east_africa) (STV 1.0 0.9091)) +(: cnet_partof_1da68035d5 (PartOf rye rye) (STV 1.0 0.9091)) +(: cnet_partof_1b36ac46ea (PartOf ryukyu_island japan) (STV 1.0 0.9091)) +(: cnet_partof_c7d077b9ad (PartOf saale germany) (STV 1.0 0.9091)) +(: cnet_partof_0d20a90a6a (PartOf saba netherland_antille) (STV 1.0 0.9091)) +(: cnet_partof_b1bd429b81 (PartOf sabah borneo) (STV 1.0 0.9091)) +(: cnet_partof_8c3394395e (PartOf sabah east_malaysia) (STV 1.0 0.9091)) +(: cnet_partof_c7f88da95d (PartOf sabine texa) (STV 1.0 0.9091)) +(: cnet_partof_1e0aa0d074 (PartOf saccule membranous_labyrinth) (STV 1.0 0.9091)) +(: cnet_partof_161a7afab6 (PartOf sacral_vertebra sacrum) (STV 1.0 0.9091)) +(: cnet_partof_83310bdc91 (PartOf sacramento california) (STV 1.0 0.9091)) +(: cnet_partof_54c12b171f (PartOf sacramento_mountain new_mexico) (STV 1.0 0.9091)) +(: cnet_partof_6b9de8be29 (PartOf sacramento_river california) (STV 1.0 0.9091)) +(: cnet_partof_45751ee488 (PartOf sacred_college roman_catholic) (STV 1.0 0.9091)) +(: cnet_partof_381436cf90 (PartOf sacrum pelvis) (STV 1.0 0.9091)) +(: cnet_partof_04d7c6decd (PartOf saddle back) (STV 1.0 0.9091)) +(: cnet_partof_b0f3cbd34c (PartOf saddle domestic_fowl) (STV 1.0 0.9091)) +(: cnet_partof_260987d6c5 (PartOf saddle shoe) (STV 1.0 0.9091)) +(: cnet_partof_feb21e3224 (PartOf saddle_horn saddle) (STV 1.0 0.9091)) +(: cnet_partof_c7f460d829 (PartOf sadhe hebrew_alphabet) (STV 1.0 0.9091)) +(: cnet_partof_4b63b33fa8 (PartOf safar islamic_calendar) (STV 1.0 0.9091)) +(: cnet_partof_a790bc0e1c (PartOf safe_period menstrual_cycle) (STV 1.0 0.9091)) +(: cnet_partof_852ad3fbc9 (PartOf safety_catch gun) (STV 1.0 0.9091)) +(: cnet_partof_b82d339c26 (PartOf safflower_seed safflower) (STV 1.0 0.9091)) +(: cnet_partof_bcedebcc09 (PartOf saffron saffron) (STV 1.0 0.9091)) +(: cnet_partof_ed7b3e94be (PartOf sage common_sage) (STV 1.0 0.9091)) +(: cnet_partof_cef8829f93 (PartOf sagittal_suture cranium) (STV 1.0 0.9091)) +(: cnet_partof_838de8ed0d (PartOf sagittarius zodiac) (STV 1.0 0.9091)) +(: cnet_partof_bca4243e5e (PartOf sahara africa) (STV 1.0 0.9091)) +(: cnet_partof_8cda3c150b (PartOf saida lebanon) (STV 1.0 0.9091)) +(: cnet_partof_2800544d97 (PartOf sail sailing_vessel) (STV 1.0 0.9091)) +(: cnet_partof_371928a1b1 (PartOf sailboat regatta) (STV 1.0 0.9091)) +(: cnet_partof_dd2069f642 (PartOf saint_s_day church_year) (STV 1.0 0.9091)) +(: cnet_partof_bf13e9732b (PartOf saint_agne_s_eve january) (STV 1.0 0.9091)) +(: cnet_partof_c469759c9a (PartOf saint_christopher saint_kitt_and_nevis) (STV 1.0 0.9091)) +(: cnet_partof_5e854d6f28 (PartOf saint_cloud minnesota) (STV 1.0 0.9091)) +(: cnet_partof_31184656c4 (PartOf saint_eustatius netherland_antille) (STV 1.0 0.9091)) +(: cnet_partof_076df3a26e (PartOf saint_francis arkansa) (STV 1.0 0.9091)) +(: cnet_partof_5df7deb9aa (PartOf saint_francis missouri) (STV 1.0 0.9091)) +(: cnet_partof_474d99ab6f (PartOf saint_john new_brunswick) (STV 1.0 0.9091)) +(: cnet_partof_7a09347914 (PartOf saint_john maine) (STV 1.0 0.9091)) +(: cnet_partof_e7e1dc53b3 (PartOf saint_john_s newfoundland_and_labrador) (STV 1.0 0.9091)) +(: cnet_partof_980c7262f4 (PartOf saint_john florida) (STV 1.0 0.9091)) +(: cnet_partof_6e5f0bfab5 (PartOf saint_joseph missouri) (STV 1.0 0.9091)) +(: cnet_partof_c38aa0c4bf (PartOf saint_joseph march) (STV 1.0 0.9091)) +(: cnet_partof_12e7fb3e5e (PartOf saint_kitt_and_nevis caribbean) (STV 1.0 0.9091)) +(: cnet_partof_2b76079d4d (PartOf saint_kitt_and_nevis leeward_island) (STV 1.0 0.9091)) +(: cnet_partof_ddf3a8683b (PartOf saint_lawrence canada) (STV 1.0 0.9091)) +(: cnet_partof_396b9122b7 (PartOf saint_lawrence united_state) (STV 1.0 0.9091)) +(: cnet_partof_299e20281b (PartOf saint_louis missouri) (STV 1.0 0.9091)) +(: cnet_partof_34da4fcfdf (PartOf saint_lucia caribbean) (STV 1.0 0.9091)) +(: cnet_partof_79545ffdfa (PartOf saint_lucia saint_lucia) (STV 1.0 0.9091)) +(: cnet_partof_28c43557df (PartOf saint_lucia windward_island) (STV 1.0 0.9091)) +(: cnet_partof_1f9e5881bb (PartOf saint_martin leeward_island) (STV 1.0 0.9091)) +(: cnet_partof_de1e777e86 (PartOf saint_mihiel meuse) (STV 1.0 0.9091)) +(: cnet_partof_86ab926da1 (PartOf saint_paul minnesota) (STV 1.0 0.9091)) +(: cnet_partof_16eea7fd89 (PartOf saint_vincent saint_vincent_and_grenadine) (STV 1.0 0.9091)) +(: cnet_partof_b12885ebe6 (PartOf saint_vincent_and_grenadine caribbean) (STV 1.0 0.9091)) +(: cnet_partof_c7ecf4d673 (PartOf saint_vincent_and_grenadine windward_island) (STV 1.0 0.9091)) +(: cnet_partof_86db599d2b (PartOf saint_peter_and_paul june) (STV 1.0 0.9091)) +(: cnet_partof_a3867109fb (PartOf saipan world_war_ii) (STV 1.0 0.9091)) +(: cnet_partof_7fead15995 (PartOf saipan northern_mariana) (STV 1.0 0.9091)) +(: cnet_partof_457115c726 (PartOf sajama ande) (STV 1.0 0.9091)) +(: cnet_partof_900287777c (PartOf sajama bolivia) (STV 1.0 0.9091)) +(: cnet_partof_0dbd040552 (PartOf salad_burnet salad_burnet) (STV 1.0 0.9091)) +(: cnet_partof_ca76085329 (PartOf salem india) (STV 1.0 0.9091)) +(: cnet_partof_44b8f79648 (PartOf salem massachusett) (STV 1.0 0.9091)) +(: cnet_partof_cfcd70c92b (PartOf salem oregon) (STV 1.0 0.9091)) +(: cnet_partof_0113d7ced9 (PartOf salerno world_war_ii) (STV 1.0 0.9091)) +(: cnet_partof_8bc8774d32 (PartOf salient line_of_battle) (STV 1.0 0.9091)) +(: cnet_partof_b9ad3ae59a (PartOf salina kansa) (STV 1.0 0.9091)) +(: cnet_partof_7c057ad599 (PartOf saliva salivary_gland) (STV 1.0 0.9091)) +(: cnet_partof_8f20a5f93c (PartOf salivary_gland digestive_system) (STV 1.0 0.9091)) +(: cnet_partof_cbf37a409b (PartOf salivary_gland mouth) (STV 1.0 0.9091)) +(: cnet_partof_42c92728b6 (PartOf salmon salmon) (STV 1.0 0.9091)) +(: cnet_partof_577fb994e5 (PartOf salmon idaho) (STV 1.0 0.9091)) +(: cnet_partof_9c77eec4cc (PartOf salsify salsify) (STV 1.0 0.9091)) +(: cnet_partof_f41adccc46 (PartOf salt_lake_city utah) (STV 1.0 0.9091)) +(: cnet_partof_8740861f8e (PartOf salton_sea california) (STV 1.0 0.9091)) +(: cnet_partof_299d9ef924 (PartOf salzburg austria) (STV 1.0 0.9091)) +(: cnet_partof_07fab11ac3 (PartOf sam_browne_belt military_uniform) (STV 1.0 0.9091)) +(: cnet_partof_4b3940b821 (PartOf samaria palestine) (STV 1.0 0.9091)) +(: cnet_partof_47d4a9c98b (PartOf samarkand uzbekistan) (STV 1.0 0.9091)) +(: cnet_partof_e5f7474069 (PartOf sambre belgium) (STV 1.0 0.9091)) +(: cnet_partof_e73fd3f0db (PartOf sambre france) (STV 1.0 0.9091)) +(: cnet_partof_b8d878c881 (PartOf samoa polynesia) (STV 1.0 0.9091)) +(: cnet_partof_f1615c98a1 (PartOf samoa samoa) (STV 1.0 0.9091)) +(: cnet_partof_55f2ffee72 (PartOf san_andrea_fault california) (STV 1.0 0.9091)) +(: cnet_partof_5576a8dac8 (PartOf san_angelo texa) (STV 1.0 0.9091)) +(: cnet_partof_c94ca03fb4 (PartOf san_antonio texa) (STV 1.0 0.9091)) +(: cnet_partof_6c6f22852e (PartOf san_bernardino california) (STV 1.0 0.9091)) +(: cnet_partof_226168cee5 (PartOf san_diego california) (STV 1.0 0.9091)) +(: cnet_partof_d3ee738a73 (PartOf san_diego_bay pacific) (STV 1.0 0.9091)) +(: cnet_partof_83904a66f3 (PartOf san_diego_bay san_diego) (STV 1.0 0.9091)) +(: cnet_partof_210052d6a8 (PartOf san_fernando_valley california) (STV 1.0 0.9091)) +(: cnet_partof_474c5a1386 (PartOf san_francisco california) (STV 1.0 0.9091)) +(: cnet_partof_9871ccd8af (PartOf san_francisco_bay pacific) (STV 1.0 0.9091)) +(: cnet_partof_d85331e423 (PartOf san_francisco_bay san_francisco) (STV 1.0 0.9091)) +(: cnet_partof_c628e215a1 (PartOf san_joaquin_river california) (STV 1.0 0.9091)) +(: cnet_partof_983fcd597c (PartOf san_joaquin_valley california) (STV 1.0 0.9091)) +(: cnet_partof_3cf17394d3 (PartOf san_jose california) (STV 1.0 0.9091)) +(: cnet_partof_89cdd69e51 (PartOf san_jose costa_rica) (STV 1.0 0.9091)) +(: cnet_partof_4b01f5f87b (PartOf san_juan puerto_rico) (STV 1.0 0.9091)) +(: cnet_partof_39be2d4d2e (PartOf san_juan_hill cuba) (STV 1.0 0.9091)) +(: cnet_partof_651804b3b3 (PartOf san_juan_mountain colorado) (STV 1.0 0.9091)) +(: cnet_partof_dc6650587c (PartOf san_juan_mountain rocky) (STV 1.0 0.9091)) +(: cnet_partof_99c987b10c (PartOf san_luis_potosi mexico) (STV 1.0 0.9091)) +(: cnet_partof_6b426a4264 (PartOf san_marino europe) (STV 1.0 0.9091)) +(: cnet_partof_2b6147f174 (PartOf san_marino italian_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_64d988444e (PartOf san_marino san_marino) (STV 1.0 0.9091)) +(: cnet_partof_c31b26acca (PartOf san_mateo california) (STV 1.0 0.9091)) +(: cnet_partof_f585f212bc (PartOf san_pablo california) (STV 1.0 0.9091)) +(: cnet_partof_6eeaeee619 (PartOf san_pedro_sula hondura) (STV 1.0 0.9091)) +(: cnet_partof_e6713e0545 (PartOf san_salvador el_salvador) (STV 1.0 0.9091)) +(: cnet_partof_f81016fe19 (PartOf san_sebastian spain) (STV 1.0 0.9091)) +(: cnet_partof_cf36480ae0 (PartOf sana yemen) (STV 1.0 0.9091)) +(: cnet_partof_916e083db2 (PartOf sandwich meal) (STV 1.0 0.9091)) +(: cnet_partof_8059a63e88 (PartOf sangay ecuador) (STV 1.0 0.9091)) +(: cnet_partof_096fd2a396 (PartOf santa_ana california) (STV 1.0 0.9091)) +(: cnet_partof_88ef2feb79 (PartOf santa_ana el_salvador) (STV 1.0 0.9091)) +(: cnet_partof_d55d98c64f (PartOf santa_barbara california) (STV 1.0 0.9091)) +(: cnet_partof_cb326a9bbd (PartOf santa_catalina los_angele) (STV 1.0 0.9091)) +(: cnet_partof_04fd53a72f (PartOf santa_catalina pacific) (STV 1.0 0.9091)) +(: cnet_partof_f6ab102f29 (PartOf santa_clara california) (STV 1.0 0.9091)) +(: cnet_partof_d04f847909 (PartOf santa_cruz bolivia) (STV 1.0 0.9091)) +(: cnet_partof_eb62aade5f (PartOf santa_cruz california) (STV 1.0 0.9091)) +(: cnet_partof_fa1cc9e548 (PartOf santa_fe new_mexico) (STV 1.0 0.9091)) +(: cnet_partof_02d2a11808 (PartOf santa_fe_trail west) (STV 1.0 0.9091)) +(: cnet_partof_4a09ebcb7c (PartOf santa_maria_del_tule mexico) (STV 1.0 0.9091)) +(: cnet_partof_8b88b43f6e (PartOf santiago spanish_american_war) (STV 1.0 0.9091)) +(: cnet_partof_a0427c0847 (PartOf santiago_de_cuba cuba) (STV 1.0 0.9091)) +(: cnet_partof_a852df018d (PartOf santiago_de_los_caballero dominican_republic) (STV 1.0 0.9091)) +(: cnet_partof_c600541cf8 (PartOf santo_domingo dominican_republic) (STV 1.0 0.9091)) +(: cnet_partof_0a009fe28f (PartOf santo brazil) (STV 1.0 0.9091)) +(: cnet_partof_3a6f3b08bd (PartOf sao_bernardo_do_campo brazil) (STV 1.0 0.9091)) +(: cnet_partof_c4298390e6 (PartOf sao_francisco brazil) (STV 1.0 0.9091)) +(: cnet_partof_3c5ca5d87e (PartOf sao_goncalo brazil) (STV 1.0 0.9091)) +(: cnet_partof_3078f60896 (PartOf sao_joao_de_meriti brazil) (STV 1.0 0.9091)) +(: cnet_partof_20f7e00feb (PartOf sao_jose_dos_campo brazil) (STV 1.0 0.9091)) +(: cnet_partof_8ac87eb071 (PartOf sao_louis brazil) (STV 1.0 0.9091)) +(: cnet_partof_53a9ea6a22 (PartOf sao_paulo brazil) (STV 1.0 0.9091)) +(: cnet_partof_b53cdc940e (PartOf sao_tiago_island cape_verde_island) (STV 1.0 0.9091)) +(: cnet_partof_d77fd7ef02 (PartOf sao_tome sao_tome_and_principe) (STV 1.0 0.9091)) +(: cnet_partof_1bebd3e0f0 (PartOf sao_tome_and_principe atlantic) (STV 1.0 0.9091)) +(: cnet_partof_e35aa3b0dc (PartOf saone france) (STV 1.0 0.9091)) +(: cnet_partof_3fc1f5bfa7 (PartOf saphenous_nerve leg) (STV 1.0 0.9091)) +(: cnet_partof_c18595d5be (PartOf saphenous_vein leg) (STV 1.0 0.9091)) +(: cnet_partof_1fec3911a2 (PartOf sapodilla sapodilla) (STV 1.0 0.9091)) +(: cnet_partof_79fdb85f25 (PartOf sapodilla manilkara) (STV 1.0 0.9091)) +(: cnet_partof_7de9b38238 (PartOf sapote marmalade_tree) (STV 1.0 0.9091)) +(: cnet_partof_5e2f1a97e2 (PartOf sapporo hokkaido) (STV 1.0 0.9091)) +(: cnet_partof_fb417ba47d (PartOf sapporo japan) (STV 1.0 0.9091)) +(: cnet_partof_cbefadf8ed (PartOf saqqara egypt) (STV 1.0 0.9091)) +(: cnet_partof_3d952aabe9 (PartOf sarajevo bosnia_and_herzegovina) (STV 1.0 0.9091)) +(: cnet_partof_2656be2471 (PartOf sarasota florida) (STV 1.0 0.9091)) +(: cnet_partof_10d6add2b8 (PartOf saratoga american_revolution) (STV 1.0 0.9091)) +(: cnet_partof_6aff646982 (PartOf saratoga_spring new_york) (STV 1.0 0.9091)) +(: cnet_partof_ada3cca9f7 (PartOf saratov russia) (STV 1.0 0.9091)) +(: cnet_partof_a1dec799f0 (PartOf sarawak borneo) (STV 1.0 0.9091)) +(: cnet_partof_60f509ceb3 (PartOf sarawak east_malaysia) (STV 1.0 0.9091)) +(: cnet_partof_9e1793d1a9 (PartOf sarcomere myofibril) (STV 1.0 0.9091)) +(: cnet_partof_c5cdf140e8 (PartOf sarcoplasm myofibril) (STV 1.0 0.9091)) +(: cnet_partof_89e4c6310e (PartOf sardinia italy) (STV 1.0 0.9091)) +(: cnet_partof_4cd6386993 (PartOf sardinia mediterranean) (STV 1.0 0.9091)) +(: cnet_partof_96563f7d4f (PartOf sardis turkey) (STV 1.0 0.9091)) +(: cnet_partof_aa8f36ac81 (PartOf sargasso_sea atlantic) (STV 1.0 0.9091)) +(: cnet_partof_5b2c38f545 (PartOf saronic_gulf greece) (STV 1.0 0.9091)) +(: cnet_partof_6e4357a96e (PartOf sarsaparilla_root sarsaparilla) (STV 1.0 0.9091)) +(: cnet_partof_e2222cba1c (PartOf sash window) (STV 1.0 0.9091)) +(: cnet_partof_3f55094e36 (PartOf sash_fastener window) (STV 1.0 0.9091)) +(: cnet_partof_8d53c71970 (PartOf sashay square_dance) (STV 1.0 0.9091)) +(: cnet_partof_11d259a022 (PartOf saskatchewan canada) (STV 1.0 0.9091)) +(: cnet_partof_ff8aa2aaf3 (PartOf saskatoon juneberry) (STV 1.0 0.9091)) +(: cnet_partof_40a5408880 (PartOf saskatoon saskatchewan) (STV 1.0 0.9091)) +(: cnet_partof_d01e7061f9 (PartOf saskinbakkal istanbul) (STV 1.0 0.9091)) +(: cnet_partof_b1fcd92596 (PartOf sassafra sassafra) (STV 1.0 0.9091)) +(: cnet_partof_2586dbfe4d (PartOf satan christian_myth) (STV 1.0 0.9339)) +(: cnet_partof_d47e2666e8 (PartOf satang baht) (STV 1.0 0.9091)) +(: cnet_partof_645f14860c (PartOf satellite_receiver communication_satellite) (STV 1.0 0.9091)) +(: cnet_partof_95698f5f1f (PartOf satellite_transmitter communication_satellite) (STV 1.0 0.9091)) +(: cnet_partof_a98cb999c7 (PartOf satsuma satsuma) (STV 1.0 0.9091)) +(: cnet_partof_7ade5b2801 (PartOf saturday weekend) (STV 1.0 0.9091)) +(: cnet_partof_13c0d789b8 (PartOf sauce dish) (STV 1.0 0.9091)) +(: cnet_partof_4505836f30 (PartOf saudi_arabia arabian_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_40d400e124 (PartOf saudi_arabia gulf_state) (STV 1.0 0.9091)) +(: cnet_partof_da777ba4b9 (PartOf saudi_arabia middle_east) (STV 1.0 0.9091)) +(: cnet_partof_f299eae5d3 (PartOf sault_sainte_marie ontario) (STV 1.0 0.9091)) +(: cnet_partof_ade126bca0 (PartOf savannah georgia) (STV 1.0 0.9091)) +(: cnet_partof_dddd3d60fc (PartOf savannah south_carolina) (STV 1.0 0.9091)) +(: cnet_partof_044290e4dc (PartOf savoy france) (STV 1.0 0.9091)) +(: cnet_partof_2bf9f4126c (PartOf savoy italy) (STV 1.0 0.9091)) +(: cnet_partof_64d041ea73 (PartOf savoy switzerland) (STV 1.0 0.9091)) +(: cnet_partof_02a8caba6a (PartOf sawan hindu_calendar) (STV 1.0 0.9091)) +(: cnet_partof_5e05d61f03 (PartOf sawtooth saw) (STV 1.0 0.9091)) +(: cnet_partof_bd976d60c0 (PartOf sayan_mountain siberia) (STV 1.0 0.9091)) +(: cnet_partof_8118ae30b8 (PartOf sayeret_matkal israeli_defense_force) (STV 1.0 0.9091)) +(: cnet_partof_b93d7f7cea (PartOf scab skin) (STV 1.0 0.9091)) +(: cnet_partof_8521db0d33 (PartOf scabland washington) (STV 1.0 0.9091)) +(: cnet_partof_3d4910be4f (PartOf scaffold instrument_of_execution) (STV 1.0 0.9091)) +(: cnet_partof_fec15353b0 (PartOf scaffold scaffolding) (STV 1.0 0.9091)) +(: cnet_partof_7cbc8ee593 (PartOf scallop scallop) (STV 1.0 0.9091)) +(: cnet_partof_bac92737c3 (PartOf scalp human_head) (STV 1.0 0.9091)) +(: cnet_partof_32c0cf5c6d (PartOf scandinavia europe) (STV 1.0 0.9091)) +(: cnet_partof_09a9f00ff2 (PartOf scandinavian_country europe) (STV 1.0 0.9091)) +(: cnet_partof_e9d62e5d6d (PartOf scantling building) (STV 1.0 0.9091)) +(: cnet_partof_e0ac4ea58f (PartOf scapula endoskeleton) (STV 1.0 0.9091)) +(: cnet_partof_87abf8dce3 (PartOf scapula shoulder) (STV 1.0 0.9091)) +(: cnet_partof_9e6771c086 (PartOf scapular monastic_habit) (STV 1.0 0.9091)) +(: cnet_partof_473b17f32e (PartOf scattering extinction) (STV 1.0 0.9091)) +(: cnet_partof_a2000c3df6 (PartOf scene act) (STV 1.0 0.9091)) +(: cnet_partof_847ce8cde1 (PartOf scene movie) (STV 1.0 0.9091)) +(: cnet_partof_235595d6c6 (PartOf scheldt belgium) (STV 1.0 0.9091)) +(: cnet_partof_7ec49898e8 (PartOf scheldt france) (STV 1.0 0.9091)) +(: cnet_partof_d81736775c (PartOf schenectady new_york) (STV 1.0 0.9091)) +(: cnet_partof_d6a05e19c0 (PartOf school school_system) (STV 1.0 0.9091)) +(: cnet_partof_2ccec46146 (PartOf school_system infrastructure) (STV 1.0 0.9091)) +(: cnet_partof_bef3c5a3d4 (PartOf school_term school_year) (STV 1.0 0.9091)) +(: cnet_partof_2bbcfcceee (PartOf sciatic_nerve leg) (STV 1.0 0.9091)) +(: cnet_partof_cad6c26296 (PartOf science scientific_knowledge) (STV 1.0 0.9091)) +(: cnet_partof_962cbf6d8f (PartOf scientific_theory science) (STV 1.0 0.9091)) +(: cnet_partof_8ff2d70c9c (PartOf scilly_island england) (STV 1.0 0.9091)) +(: cnet_partof_744be6e620 (PartOf scissor_kick sidestroke) (STV 1.0 0.9091)) +(: cnet_partof_2454ccdd18 (PartOf sclera eye) (STV 1.0 0.9091)) +(: cnet_partof_3876acebdc (PartOf sclerite arthropod) (STV 1.0 0.9091)) +(: cnet_partof_4b26843518 (PartOf scoop backhoe) (STV 1.0 0.9091)) +(: cnet_partof_95c0e5a1c9 (PartOf scoop dredge) (STV 1.0 0.9091)) +(: cnet_partof_5514299ec8 (PartOf scorpius zodiac) (STV 1.0 0.9091)) +(: cnet_partof_f009e16d79 (PartOf scorzonera black_salsify) (STV 1.0 0.9091)) +(: cnet_partof_c9c4a2c3f9 (PartOf scotland british_isle) (STV 1.0 0.9091)) +(: cnet_partof_a9aa1a107a (PartOf scotland europe) (STV 1.0 0.9091)) +(: cnet_partof_9713b6dace (PartOf scotland great_britain) (STV 1.0 0.9091)) +(: cnet_partof_f0a2c1747f (PartOf scotland united_kingdom) (STV 1.0 0.9091)) +(: cnet_partof_a09e147b1b (PartOf scrag neck) (STV 1.0 0.9091)) +(: cnet_partof_67b631e435 (PartOf screen monitor) (STV 1.0 0.9091)) +(: cnet_partof_fc19061dc6 (PartOf screen cathode_ray_tube) (STV 1.0 0.9091)) +(: cnet_partof_80c241d027 (PartOf screen screen_door) (STV 1.0 0.9091)) +(: cnet_partof_71e7b06a6a (PartOf screw outboard_motor) (STV 1.0 0.9091)) +(: cnet_partof_50e9c0e2f1 (PartOf screw ship) (STV 1.0 0.9091)) +(: cnet_partof_e0747038eb (PartOf screw_bean screw_bean) (STV 1.0 0.9091)) +(: cnet_partof_cbc707b8fe (PartOf screw_thread screw) (STV 1.0 0.9091)) +(: cnet_partof_db5b8062d0 (PartOf scriptorium monastery) (STV 1.0 0.9091)) +(: cnet_partof_d2d203af5a (PartOf scrotum male_genitalia) (STV 1.0 0.9091)) +(: cnet_partof_b41e23081c (PartOf scruple dram) (STV 1.0 0.9091)) +(: cnet_partof_293762930b (PartOf scup scup) (STV 1.0 0.9091)) +(: cnet_partof_a5df5cc96e (PartOf scut deer) (STV 1.0 0.9091)) +(: cnet_partof_a698a81c29 (PartOf scut rabbit) (STV 1.0 0.9091)) +(: cnet_partof_6716799f08 (PartOf scythia eurasia) (STV 1.0 0.9091)) +(: cnet_partof_30d0ba4872 (PartOf sea hydrosphere) (STV 1.0 0.9091)) +(: cnet_partof_2c55cad1f3 (PartOf sea_anchor ship) (STV 1.0 0.9091)) +(: cnet_partof_661bbcbd29 (PartOf sea_bass sea_bass) (STV 1.0 0.9091)) +(: cnet_partof_d58a04638c (PartOf sea_of_azov black_sea) (STV 1.0 0.9091)) +(: cnet_partof_88b76a2a56 (PartOf sea_of_japan pacific) (STV 1.0 0.9091)) +(: cnet_partof_77d4804b90 (PartOf sea_of_okhotsk pacific) (STV 1.0 0.9091)) +(: cnet_partof_ebb3a06a5a (PartOf sea_scallop sea_scallop) (STV 1.0 0.9091)) +(: cnet_partof_c970eda474 (PartOf sea_trout brown_trout) (STV 1.0 0.9091)) +(: cnet_partof_b1db8abb4a (PartOf sealyham wale) (STV 1.0 0.9091)) +(: cnet_partof_966fc8efd2 (PartOf seanad_eireann oireachta) (STV 1.0 0.9091)) +(: cnet_partof_2f0abffb23 (PartOf seaport seafront) (STV 1.0 0.9091)) +(: cnet_partof_7186ce7eba (PartOf sear_tower chicago) (STV 1.0 0.9091)) +(: cnet_partof_9846d58a63 (PartOf seaside land) (STV 1.0 0.9091)) +(: cnet_partof_8404c70e28 (PartOf seaside ocean) (STV 1.0 0.9091)) +(: cnet_partof_46a432c193 (PartOf season year) (STV 1.0 0.9091)) +(: cnet_partof_74f5a06125 (PartOf seasoning cooking) (STV 1.0 0.9091)) +(: cnet_partof_425e937260 (PartOf seat pair_of_trouser) (STV 1.0 0.9091)) +(: cnet_partof_fc0ec51159 (PartOf seat seat) (STV 1.0 0.9091)) +(: cnet_partof_26f600cd9e (PartOf seat skirt) (STV 1.0 0.9091)) +(: cnet_partof_624e0a6502 (PartOf seat_belt car_seat) (STV 1.0 0.9091)) +(: cnet_partof_135bb595ae (PartOf seat_belt plane_seat) (STV 1.0 0.9091)) +(: cnet_partof_a768847f39 (PartOf seattle washington) (STV 1.0 0.9091)) +(: cnet_partof_a24b6e43bd (PartOf sebaceous_gland hair_follicle) (STV 1.0 0.9091)) +(: cnet_partof_693309fa35 (PartOf sebaceous_gland integumentary_system) (STV 1.0 0.9091)) +(: cnet_partof_de009d4923 (PartOf sebastopol crimea) (STV 1.0 0.9091)) +(: cnet_partof_db32ae6a8b (PartOf second minute) (STV 1.0 0.9091)) +(: cnet_partof_438e329627 (PartOf second_balcony balcony) (STV 1.0 0.9091)) +(: cnet_partof_66900a2004 (PartOf second_epistel_of_john new_testament) (STV 1.0 0.9091)) +(: cnet_partof_c6d5c1cc4f (PartOf second_epistle_of_paul_apostle_to_corinthian new_testament) (STV 1.0 0.9091)) +(: cnet_partof_6d9efa1fac (PartOf second_epistle_of_paul_apostle_to_thessalonian new_testament) (STV 1.0 0.9091)) +(: cnet_partof_ad38182f0b (PartOf second_epistle_of_paul_apostle_to_timothy new_testament) (STV 1.0 0.9091)) +(: cnet_partof_8b29d39856 (PartOf second_epistle_of_peter new_testament) (STV 1.0 0.9091)) +(: cnet_partof_694568a7e4 (PartOf second_gear motor_vehicle) (STV 1.0 0.9091)) +(: cnet_partof_36bc4bfca1 (PartOf second_joint bird) (STV 1.0 0.9091)) +(: cnet_partof_3792577946 (PartOf second_period playing_period) (STV 1.0 0.9091)) +(: cnet_partof_19b6aa214f (PartOf secondary_coil transformer) (STV 1.0 0.9091)) +(: cnet_partof_e16fb70b8c (PartOf secondo duet) (STV 1.0 0.9091)) +(: cnet_partof_579ef238fb (PartOf secretory_phase menstrual_cycle) (STV 1.0 0.9091)) +(: cnet_partof_2cea67b12f (PartOf section whole) (STV 1.0 0.9091)) +(: cnet_partof_a3e4b94204 (PartOf section citrus) (STV 1.0 0.9091)) +(: cnet_partof_6a5c466960 (PartOf section band) (STV 1.0 0.9091)) +(: cnet_partof_7a458e0205 (PartOf section orchestra) (STV 1.0 0.9091)) +(: cnet_partof_aad7cee1c0 (PartOf section platoon) (STV 1.0 0.9091)) +(: cnet_partof_9f33341fbd (PartOf section slide) (STV 1.0 0.9091)) +(: cnet_partof_f4ccfbba92 (PartOf sector economy) (STV 1.0 0.9091)) +(: cnet_partof_73623122f8 (PartOf sector society) (STV 1.0 0.9091)) +(: cnet_partof_e3887a0a62 (PartOf sector battlefield) (STV 1.0 0.9091)) +(: cnet_partof_0ae8a9ddf0 (PartOf sector allocation_unit) (STV 1.0 0.9091)) +(: cnet_partof_16c78e471e (PartOf sector block) (STV 1.0 0.9091)) +(: cnet_partof_cb47502638 (PartOf sedalia missouri) (STV 1.0 0.9091)) +(: cnet_partof_94dbe9701c (PartOf see diocese) (STV 1.0 0.9091)) +(: cnet_partof_ab51e082cb (PartOf seek_time access_time) (STV 1.0 0.9091)) +(: cnet_partof_8ecbc989a0 (PartOf seesaw playground) (STV 1.0 0.9091)) +(: cnet_partof_afef47552e (PartOf segregation meiosis) (STV 1.0 0.9091)) +(: cnet_partof_861308952d (PartOf seine france) (STV 1.0 0.9091)) +(: cnet_partof_c516487696 (PartOf selangor malaysia) (STV 1.0 0.9091)) +(: cnet_partof_f094c487cd (PartOf self_starter internal_combustion_engine) (STV 1.0 0.9091)) +(: cnet_partof_a65ef75783 (PartOf selkirk_mountain british_columbia) (STV 1.0 0.9091)) +(: cnet_partof_314d88eb30 (PartOf selkirk_mountain rocky) (STV 1.0 0.9091)) +(: cnet_partof_117c2a8fcf (PartOf selling marketing) (STV 1.0 0.9091)) +(: cnet_partof_3695852613 (PartOf selma alabama) (STV 1.0 0.9091)) +(: cnet_partof_3f300507ea (PartOf semarang java) (STV 1.0 0.9091)) +(: cnet_partof_771ef95b64 (PartOf semester school_year) (STV 1.0 0.9091)) +(: cnet_partof_82a9610919 (PartOf semicircular_canal inner_ear) (STV 1.0 0.9091)) +(: cnet_partof_0d11a51a6d (PartOf semicircular_canal vestibular_apparatus) (STV 1.0 0.9091)) +(: cnet_partof_7048118f7f (PartOf semifinal elimination_tournament) (STV 1.0 0.9091)) +(: cnet_partof_41522af1b2 (PartOf semimajor_axis major_axis) (STV 1.0 0.9091)) +(: cnet_partof_84a23fe06b (PartOf semiminor_axis minor_axis) (STV 1.0 0.9091)) +(: cnet_partof_82ffa400c9 (PartOf seminal_duct scrotum) (STV 1.0 0.9091)) +(: cnet_partof_56f99b1bdd (PartOf seminal_vesicle male_reproductive_system) (STV 1.0 0.9091)) +(: cnet_partof_17814a9d4a (PartOf seminiferous_tubule testis) (STV 1.0 0.9091)) +(: cnet_partof_c824a07e04 (PartOf semitrailer trailer_truck) (STV 1.0 0.9091)) +(: cnet_partof_3c89cd045a (PartOf sen riel) (STV 1.0 0.9091)) +(: cnet_partof_9a1dec1b1b (PartOf sen ringgit) (STV 1.0 0.9091)) +(: cnet_partof_9c93da19b1 (PartOf sen rupiah) (STV 1.0 0.9091)) +(: cnet_partof_0de5cd5ff3 (PartOf sen yen) (STV 1.0 0.9091)) +(: cnet_partof_6782be480e (PartOf sene tala) (STV 1.0 0.9091)) +(: cnet_partof_cdaaafe917 (PartOf senega seneca_snakeroot) (STV 1.0 0.9091)) +(: cnet_partof_bce74f3e30 (PartOf senega senega) (STV 1.0 0.9091)) +(: cnet_partof_16b2b4b74e (PartOf senegal africa) (STV 1.0 0.9091)) +(: cnet_partof_290e8f3acf (PartOf seniti pa_anga) (STV 1.0 0.9091)) +(: cnet_partof_0a24f9db4d (PartOf sense_organ sensory_system) (STV 1.0 0.9091)) +(: cnet_partof_8c04335d55 (PartOf sensory_neuron sensory_nerve) (STV 1.0 0.9091)) +(: cnet_partof_a4ac9b782a (PartOf sensory_system body) (STV 1.0 0.9091)) +(: cnet_partof_757cf3df45 (PartOf sente loti) (STV 1.0 0.9091)) +(: cnet_partof_8e6264af99 (PartOf sentence paragraph) (STV 1.0 0.9091)) +(: cnet_partof_c3dead3c5b (PartOf seoul south_korea) (STV 1.0 0.9091)) +(: cnet_partof_f28b3aeda7 (PartOf sepal calyx) (STV 1.0 0.9091)) +(: cnet_partof_f2d2af7de0 (PartOf september gregorian_calendar) (STV 1.0 0.9091)) +(: cnet_partof_2b4bdf7451 (PartOf sequence movie) (STV 1.0 0.9091)) +(: cnet_partof_20bce6e8b1 (PartOf sequoia_national_park california) (STV 1.0 0.9091)) +(: cnet_partof_781f4412e6 (PartOf serbia yugoslavia) (STV 1.0 0.9091)) +(: cnet_partof_e63548615e (PartOf serengeti_national_park serengeti_plain) (STV 1.0 0.9091)) +(: cnet_partof_18a568227c (PartOf serengeti_plain tanzania) (STV 1.0 0.9091)) +(: cnet_partof_6e4c59327e (PartOf serratus torso) (STV 1.0 0.9091)) +(: cnet_partof_b59e33bef1 (PartOf server computer_network) (STV 1.0 0.9091)) +(: cnet_partof_b6d7bf6886 (PartOf service_break tennis) (STV 1.0 0.9091)) +(: cnet_partof_70ca2ba47c (PartOf sesame_seed sesame) (STV 1.0 0.9091)) +(: cnet_partof_f4ff7106a4 (PartOf set communication_system) (STV 1.0 0.9091)) +(: cnet_partof_c4a3cf70b4 (PartOf set_decoration stage_set) (STV 1.0 0.9091)) +(: cnet_partof_a68e168ca8 (PartOf set_point tennis) (STV 1.0 0.9091)) +(: cnet_partof_f5782a663d (PartOf sete_queda brazil) (STV 1.0 0.9091)) +(: cnet_partof_91d39014a6 (PartOf sete_queda paraguay) (STV 1.0 0.9091)) +(: cnet_partof_eb142a0b93 (PartOf sete_queda parana) (STV 1.0 0.9091)) +(: cnet_partof_70bc30e577 (PartOf setubal portugal) (STV 1.0 0.9091)) +(: cnet_partof_2113f356e7 (PartOf seven_hill_of_rome rome) (STV 1.0 0.9091)) +(: cnet_partof_a3a545c568 (PartOf seventh_avenue manhattan) (STV 1.0 0.9091)) +(: cnet_partof_7f44336029 (PartOf seventy old_age) (STV 1.0 0.9091)) +(: cnet_partof_76641cf2b7 (PartOf severn england) (STV 1.0 0.9091)) +(: cnet_partof_9412f7065f (PartOf severn ontario) (STV 1.0 0.9091)) +(: cnet_partof_73b1a66ff1 (PartOf severn wale) (STV 1.0 0.9091)) +(: cnet_partof_c3cfe64d28 (PartOf sevilla spain) (STV 1.0 0.9091)) +(: cnet_partof_14328fd0c1 (PartOf sewage_system infrastructure) (STV 1.0 0.9091)) +(: cnet_partof_3aff869a0d (PartOf seward_peninsula alaska) (STV 1.0 0.9091)) +(: cnet_partof_0a82d8ca24 (PartOf sewer sewage_system) (STV 1.0 0.9091)) +(: cnet_partof_37a65d882c (PartOf sewer_main sewage_system) (STV 1.0 0.9091)) +(: cnet_partof_e2fce1b537 (PartOf sex human_experience) (STV 1.0 0.9636)) +(: cnet_partof_2f6c07b236 (PartOf sex procreation) (STV 1.0 0.9339)) +(: cnet_partof_134f428ead (PartOf sex reproductive_cycle) (STV 1.0 0.9659)) +(: cnet_partof_c7ccdb225c (PartOf sextant circumference) (STV 1.0 0.9091)) +(: cnet_partof_a84f1bc647 (PartOf seychelle indian_ocean) (STV 1.0 0.9091)) +(: cnet_partof_9b20d7cb07 (PartOf seychelle seychelle) (STV 1.0 0.9091)) +(: cnet_partof_bd2ef8de95 (PartOf seyhan turkey) (STV 1.0 0.9091)) +(: cnet_partof_5e0cb5038c (PartOf sfax tunisia) (STV 1.0 0.9091)) +(: cnet_partof_b6904ce35f (PartOf sha_ban islamic_calendar) (STV 1.0 0.9091)) +(: cnet_partof_6a98061d7d (PartOf shackle padlock) (STV 1.0 0.9091)) +(: cnet_partof_168082edb3 (PartOf shad common_american_shad) (STV 1.0 0.9091)) +(: cnet_partof_6bf6fabaf4 (PartOf shad_roe common_american_shad) (STV 1.0 0.9091)) +(: cnet_partof_415b4ba88b (PartOf shaft column) (STV 1.0 0.9091)) +(: cnet_partof_add92a9b6e (PartOf shaft building) (STV 1.0 0.9091)) +(: cnet_partof_cc047ef62a (PartOf shaft mine) (STV 1.0 0.9091)) +(: cnet_partof_492157eb85 (PartOf shaft tunnel) (STV 1.0 0.9091)) +(: cnet_partof_7fa8b6c958 (PartOf shaft arrow) (STV 1.0 0.9091)) +(: cnet_partof_c7431d2662 (PartOf shag shag_rug) (STV 1.0 0.9091)) +(: cnet_partof_996b048b34 (PartOf shallot shallot) (STV 1.0 0.9091)) +(: cnet_partof_492b6ab4c5 (PartOf shanghai china) (STV 1.0 0.9091)) +(: cnet_partof_afa9e5b8ec (PartOf shank anchor) (STV 1.0 0.9091)) +(: cnet_partof_63e6b4a96e (PartOf shank bit) (STV 1.0 0.9091)) +(: cnet_partof_d747ce02ad (PartOf shank bolt) (STV 1.0 0.9091)) +(: cnet_partof_76d362b3b7 (PartOf shank handle) (STV 1.0 0.9091)) +(: cnet_partof_714ca7ca61 (PartOf shank key) (STV 1.0 0.9091)) +(: cnet_partof_dd53430778 (PartOf shank nail) (STV 1.0 0.9091)) +(: cnet_partof_5b983ec286 (PartOf shank pin) (STV 1.0 0.9091)) +(: cnet_partof_5421184a02 (PartOf shank sole) (STV 1.0 0.9091)) +(: cnet_partof_b39a6112ea (PartOf shank wineglass) (STV 1.0 0.9091)) +(: cnet_partof_64393581c8 (PartOf shank leg) (STV 1.0 0.9091)) +(: cnet_partof_5b2326fbfb (PartOf share net_income) (STV 1.0 0.9091)) +(: cnet_partof_d0cc08ec0c (PartOf share stock) (STV 1.0 0.9091)) +(: cnet_partof_bfedef865b (PartOf shari africa) (STV 1.0 0.9091)) +(: cnet_partof_9923293838 (PartOf shasta california) (STV 1.0 0.9091)) +(: cnet_partof_fe8adab299 (PartOf shawwal islamic_calendar) (STV 1.0 0.9091)) +(: cnet_partof_50ee0c0066 (PartOf shebat jewish_calendar) (STV 1.0 0.9091)) +(: cnet_partof_70179a80cd (PartOf sheet ship) (STV 1.0 0.9091)) +(: cnet_partof_f9378e1f57 (PartOf sheet_metal_work construction) (STV 1.0 0.9091)) +(: cnet_partof_3e3bbac316 (PartOf sheffield south_yorkshire) (STV 1.0 0.9091)) +(: cnet_partof_3f0147acb8 (PartOf shelf bookcase) (STV 1.0 0.9091)) +(: cnet_partof_3621a235ff (PartOf shelf buffet) (STV 1.0 0.9091)) +(: cnet_partof_7723292588 (PartOf shelf cabinet) (STV 1.0 0.9091)) +(: cnet_partof_0a617b6d57 (PartOf shelf chest_of_drawer) (STV 1.0 0.9091)) +(: cnet_partof_1cc74d0a7a (PartOf shelf closet) (STV 1.0 0.9091)) +(: cnet_partof_34aafda00b (PartOf shelf etagere) (STV 1.0 0.9091)) +(: cnet_partof_b4fd83a30d (PartOf shelf grocery_store) (STV 1.0 0.9091)) +(: cnet_partof_7c1c0c4d1f (PartOf shell egg) (STV 1.0 0.9091)) +(: cnet_partof_7a4868c816 (PartOf shell grandfather_clock) (STV 1.0 0.9091)) +(: cnet_partof_381f2340e6 (PartOf shell_bean shell_bean) (STV 1.0 0.9091)) +(: cnet_partof_7153a09637 (PartOf shellfish mollusk) (STV 1.0 0.9091)) +(: cnet_partof_8a5fa9967a (PartOf shenandoah_national_park virginia) (STV 1.0 0.9091)) +(: cnet_partof_0f16a2c20a (PartOf shenandoah_river virginia) (STV 1.0 0.9091)) +(: cnet_partof_e409f6565d (PartOf shenandoah_valley virginia) (STV 1.0 0.9091)) +(: cnet_partof_8af7a00aee (PartOf shenyang china) (STV 1.0 0.9091)) +(: cnet_partof_fb59c1e51a (PartOf shenzhen china) (STV 1.0 0.9339)) +(: cnet_partof_7fca7a31c2 (PartOf sherman texa) (STV 1.0 0.9091)) +(: cnet_partof_5d11418be6 (PartOf sherman colorado) (STV 1.0 0.9091)) +(: cnet_partof_3c6d1faba1 (PartOf shetland atlantic) (STV 1.0 0.9091)) +(: cnet_partof_9cee4a179f (PartOf shetland scotland) (STV 1.0 0.9091)) +(: cnet_partof_0c91153f07 (PartOf shift work_force) (STV 1.0 0.9091)) +(: cnet_partof_bbb98c03e9 (PartOf shift workday) (STV 1.0 0.9091)) +(: cnet_partof_f7089468b2 (PartOf shift_key typewriter_keyboard) (STV 1.0 0.9091)) +(: cnet_partof_9a1223afc6 (PartOf shikoku japan) (STV 1.0 0.9091)) +(: cnet_partof_069919cf27 (PartOf shiloh american_civil_war) (STV 1.0 0.9091)) +(: cnet_partof_38f2bd4408 (PartOf shin leg) (STV 1.0 0.9091)) +(: cnet_partof_def80072f6 (PartOf shin hebrew_alphabet) (STV 1.0 0.9091)) +(: cnet_partof_8e759f7f15 (PartOf shingling construction) (STV 1.0 0.9091)) +(: cnet_partof_5f41fcb0f4 (PartOf shipside pier) (STV 1.0 0.9091)) +(: cnet_partof_9e150c1b9d (PartOf shiraz iran) (STV 1.0 0.9091)) +(: cnet_partof_23fdd44e56 (PartOf shirt outfit) (STV 1.0 0.9091)) +(: cnet_partof_7065704ce7 (PartOf shirt_button shirt) (STV 1.0 0.9091)) +(: cnet_partof_278c8939ae (PartOf shirtfront shirt) (STV 1.0 0.9091)) +(: cnet_partof_be17a6fa01 (PartOf shirtsleeve shirt) (STV 1.0 0.9091)) +(: cnet_partof_4146cbd398 (PartOf shirttail shirt) (STV 1.0 0.9091)) +(: cnet_partof_3cb62849c0 (PartOf shirttail new_article) (STV 1.0 0.9091)) +(: cnet_partof_341674decb (PartOf shock_absorber suspension) (STV 1.0 0.9091)) +(: cnet_partof_cd9b4b7732 (PartOf shoe_collar boot) (STV 1.0 0.9091)) +(: cnet_partof_d668a9ec9b (PartOf shoe_collar shoe) (STV 1.0 0.9091)) +(: cnet_partof_0248727106 (PartOf shoelace shoe) (STV 1.0 0.9091)) +(: cnet_partof_25bedd9496 (PartOf shop_floor factory) (STV 1.0 0.9091)) +(: cnet_partof_51cbe8a1f2 (PartOf shopfront shop) (STV 1.0 0.9091)) +(: cnet_partof_009c723619 (PartOf shoreline shore) (STV 1.0 0.9091)) +(: cnet_partof_d392f58365 (PartOf short baseball_diamond) (STV 1.0 0.9091)) +(: cnet_partof_cb2349964f (PartOf short_circuit circuit) (STV 1.0 0.9091)) +(: cnet_partof_252d88fd4f (PartOf short_ton kiloton) (STV 1.0 0.9091)) +(: cnet_partof_c2c1ba39d7 (PartOf shot case_shot) (STV 1.0 0.9091)) +(: cnet_partof_83890c7e54 (PartOf shoulder garment) (STV 1.0 0.9091)) +(: cnet_partof_843c509289 (PartOf shoulder road) (STV 1.0 0.9091)) +(: cnet_partof_e922aa8ccc (PartOf shoulder torso) (STV 1.0 0.9091)) +(: cnet_partof_ba49f53209 (PartOf shoulder chuck) (STV 1.0 0.9091)) +(: cnet_partof_33897a0620 (PartOf shoulder_board military_uniform) (STV 1.0 0.9091)) +(: cnet_partof_083ed4de6f (PartOf shoulder_girdle pectoral_girdle) (STV 1.0 0.9091)) +(: cnet_partof_411e14b4c8 (PartOf shoulder_patch military_uniform) (STV 1.0 0.9091)) +(: cnet_partof_440bf52cd5 (PartOf shower shower_stall) (STV 1.0 0.9091)) +(: cnet_partof_264d28d762 (PartOf shower_curtain shower_stall) (STV 1.0 0.9091)) +(: cnet_partof_fd6f0694dc (PartOf shower_stall bathroom) (STV 1.0 0.9091)) +(: cnet_partof_d644b98dd0 (PartOf shower_stall shower_room) (STV 1.0 0.9091)) +(: cnet_partof_679a93bbf8 (PartOf showerhead shower) (STV 1.0 0.9091)) +(: cnet_partof_ab89d505d1 (PartOf showjumping three_day_event) (STV 1.0 0.9091)) +(: cnet_partof_dc0fb9642f (PartOf shreveport louisiana) (STV 1.0 0.9091)) +(: cnet_partof_3e8a35f871 (PartOf shroud parachute) (STV 1.0 0.9091)) +(: cnet_partof_6ccb56956b (PartOf shrovetide church_calendar) (STV 1.0 0.9091)) +(: cnet_partof_a675ef024a (PartOf shuffle card_game) (STV 1.0 0.9091)) +(: cnet_partof_5cafbe038a (PartOf shunt circuit) (STV 1.0 0.9091)) +(: cnet_partof_348a7e384a (PartOf shutter camera) (STV 1.0 0.9091)) +(: cnet_partof_53230fc4d0 (PartOf shutter double_hung_window) (STV 1.0 0.9091)) +(: cnet_partof_436c52b62b (PartOf siamese_connection sprinkler_system) (STV 1.0 0.9091)) +(: cnet_partof_88400a7688 (PartOf siberia russia) (STV 1.0 0.9091)) +(: cnet_partof_ac0876a1f6 (PartOf sicily italy) (STV 1.0 0.9091)) +(: cnet_partof_2fed344333 (PartOf sicily mediterranean) (STV 1.0 0.9091)) +(: cnet_partof_47b20ffd34 (PartOf side torso) (STV 1.0 0.9091)) +(: cnet_partof_cdf60c727b (PartOf side_chapel church) (STV 1.0 0.9091)) +(: cnet_partof_9c726cd2f4 (PartOf side_dish meal) (STV 1.0 0.9091)) +(: cnet_partof_97573f7229 (PartOf siegfried_line germany) (STV 1.0 0.9091)) +(: cnet_partof_99169ba5a8 (PartOf sierra_leone africa) (STV 1.0 0.9091)) +(: cnet_partof_b6e932fb2e (PartOf sierra_madre_occidental mexico) (STV 1.0 0.9091)) +(: cnet_partof_2045f5c3b1 (PartOf sierra_madre_oriental mexico) (STV 1.0 0.9091)) +(: cnet_partof_5d5dd6eb3c (PartOf sierra_nevada california) (STV 1.0 0.9091)) +(: cnet_partof_eb393c8c9d (PartOf sierra_nevada spain) (STV 1.0 0.9091)) +(: cnet_partof_231f123623 (PartOf sieva_bean sieva_bean) (STV 1.0 0.9091)) +(: cnet_partof_13cf098261 (PartOf sieve_tube phloem) (STV 1.0 0.9091)) +(: cnet_partof_9a022c81cb (PartOf sight firearm) (STV 1.0 0.9091)) +(: cnet_partof_85548b8e4b (PartOf sight surveying_instrument) (STV 1.0 0.9091)) +(: cnet_partof_5b512b4d04 (PartOf sigmoid_colon large_intestine) (STV 1.0 0.9091)) +(: cnet_partof_1ba6f55f41 (PartOf sigmoid_vein colon) (STV 1.0 0.9091)) +(: cnet_partof_c049287e72 (PartOf sign sign_language) (STV 1.0 0.9091)) +(: cnet_partof_ac289f0074 (PartOf sign disease) (STV 1.0 0.9091)) +(: cnet_partof_2c0c5de8b0 (PartOf sign_of_zodiac zodiac) (STV 1.0 0.9091)) +(: cnet_partof_93a25d070f (PartOf signature book) (STV 1.0 0.9091)) +(: cnet_partof_482439fb06 (PartOf signet signet_ring) (STV 1.0 0.9091)) +(: cnet_partof_697fb1de30 (PartOf sikkim india) (STV 1.0 0.9091)) +(: cnet_partof_8ecba45624 (PartOf silencer exhaust) (STV 1.0 0.9091)) +(: cnet_partof_85252c693a (PartOf silesia europe) (STV 1.0 0.9091)) +(: cnet_partof_b1be6891a3 (PartOf silicon_valley california) (STV 1.0 0.9091)) +(: cnet_partof_5602eb6da7 (PartOf silk_gland silkworm) (STV 1.0 0.9091)) +(: cnet_partof_7599b13820 (PartOf silurian paleozoic) (STV 1.0 0.9091)) +(: cnet_partof_51bc8f4969 (PartOf silver_city new_mexico) (STV 1.0 0.9091)) +(: cnet_partof_b6dd033600 (PartOf silver_quandong quandong) (STV 1.0 0.9091)) +(: cnet_partof_af7c2f6b4a (PartOf silver_salmon coho) (STV 1.0 0.9091)) +(: cnet_partof_c1d8d3fd22 (PartOf simpson_desert australia) (STV 1.0 0.9091)) +(: cnet_partof_f8a7f742e8 (PartOf sin hebrew_alphabet) (STV 1.0 0.9091)) +(: cnet_partof_318dff5180 (PartOf sinai arabian_desert) (STV 1.0 0.9091)) +(: cnet_partof_1e051875e9 (PartOf sinai egypt) (STV 1.0 0.9091)) +(: cnet_partof_6a011e175d (PartOf sinai sinai) (STV 1.0 0.9091)) +(: cnet_partof_c65e92e7e2 (PartOf sinciput human_head) (STV 1.0 0.9091)) +(: cnet_partof_3955cd489c (PartOf sind pakistan) (STV 1.0 0.9091)) +(: cnet_partof_53f609abd8 (PartOf singapore singapore) (STV 1.0 0.9091)) +(: cnet_partof_54155f077d (PartOf singapore south_china_sea) (STV 1.0 0.9091)) +(: cnet_partof_cb330f28bd (PartOf singapore southeast_asia) (STV 1.0 0.9091)) +(: cnet_partof_b677b8617e (PartOf single_breasted_jacket single_breasted_suit) (STV 1.0 0.9091)) +(: cnet_partof_ba18b412b7 (PartOf sinn_fein irish_republican_army) (STV 1.0 0.9091)) +(: cnet_partof_aa330633fe (PartOf sioux_city iowa) (STV 1.0 0.9091)) +(: cnet_partof_5eb2d7ae36 (PartOf sioux_fall south_dakota) (STV 1.0 0.9091)) +(: cnet_partof_5ec332247c (PartOf sirloin beef_loin) (STV 1.0 0.9091)) +(: cnet_partof_d91a95a212 (PartOf sirloin_steak sirloin) (STV 1.0 0.9091)) +(: cnet_partof_5d95840b10 (PartOf sirloin_tip sirloin) (STV 1.0 0.9091)) +(: cnet_partof_18dd34d709 (PartOf sistine_chapel rome) (STV 1.0 0.9091)) +(: cnet_partof_c77ac67cc3 (PartOf sitka alaska) (STV 1.0 0.9091)) +(: cnet_partof_dd7c898df7 (PartOf sivan jewish_calendar) (STV 1.0 0.9091)) +(: cnet_partof_16c55f683b (PartOf sixty old_age) (STV 1.0 0.9091)) +(: cnet_partof_5b21035462 (PartOf skagen_odde jutland) (STV 1.0 0.9091)) +(: cnet_partof_66ef92140d (PartOf skagerrak north_sea) (STV 1.0 0.9091)) +(: cnet_partof_4aaa8b4016 (PartOf skagway alaska) (STV 1.0 0.9091)) +(: cnet_partof_e10d0d41f6 (PartOf skeg stern) (STV 1.0 0.9091)) +(: cnet_partof_7266c4336b (PartOf skeletal_structure skeletal_system) (STV 1.0 0.9091)) +(: cnet_partof_412612b3a0 (PartOf skeletal_system musculoskeletal_system) (STV 1.0 0.9091)) +(: cnet_partof_461f4bbb87 (PartOf skeleton aircraft) (STV 1.0 0.9091)) +(: cnet_partof_49adb9b436 (PartOf skeleton building) (STV 1.0 0.9091)) +(: cnet_partof_6d9de29705 (PartOf skeleton ship) (STV 1.0 0.9091)) +(: cnet_partof_d6f3b29df3 (PartOf skid chute) (STV 1.0 0.9091)) +(: cnet_partof_be802e756d (PartOf skin aircraft) (STV 1.0 0.9091)) +(: cnet_partof_3a0d8de0a3 (PartOf skin integumentary_system) (STV 1.0 0.9091)) +(: cnet_partof_29579465f4 (PartOf skin_cell skin) (STV 1.0 0.9091)) +(: cnet_partof_72e1f8a06b (PartOf skirt garment) (STV 1.0 0.9091)) +(: cnet_partof_221d6c71e2 (PartOf skirt_of_tass body_armor) (STV 1.0 0.9091)) +(: cnet_partof_678a40c634 (PartOf skopje macedonia) (STV 1.0 0.9091)) +(: cnet_partof_b08012d262 (PartOf skull axial_skeleton) (STV 1.0 0.9091)) +(: cnet_partof_4ba16c89d6 (PartOf skull head) (STV 1.0 0.9091)) +(: cnet_partof_c4cfdee07b (PartOf skull_and_crossbone black_flag) (STV 1.0 0.9091)) +(: cnet_partof_e56328125d (PartOf sky earth) (STV 1.0 0.9091)) +(: cnet_partof_4ef0dc14f1 (PartOf slam bridge) (STV 1.0 0.9091)) +(: cnet_partof_59327d2b6e (PartOf slapshot ice_hockey) (STV 1.0 0.9091)) +(: cnet_partof_4e6e8b69f8 (PartOf slat venetian_blind) (STV 1.0 0.9091)) +(: cnet_partof_3110416fea (PartOf slaughter butchery) (STV 1.0 0.9091)) +(: cnet_partof_ed69dba7b2 (PartOf slave_state confederacy) (STV 1.0 0.9091)) +(: cnet_partof_79122f10b0 (PartOf sleeve shirt) (STV 1.0 0.9091)) +(: cnet_partof_0a14ba6ac6 (PartOf sleeve garment) (STV 1.0 0.9091)) +(: cnet_partof_1b9dd38df8 (PartOf slide playground) (STV 1.0 0.9091)) +(: cnet_partof_18df04e0f0 (PartOf slide_fastener cardigan) (STV 1.0 0.9091)) +(: cnet_partof_fee6cdef40 (PartOf slide_fastener dress) (STV 1.0 0.9091)) +(: cnet_partof_d7150a38c9 (PartOf slide_fastener pair_of_trouser) (STV 1.0 0.9091)) +(: cnet_partof_94aed57f87 (PartOf slide_fastener skirt) (STV 1.0 0.9091)) +(: cnet_partof_5c765785ca (PartOf sliding_seat shell) (STV 1.0 0.9091)) +(: cnet_partof_3ef947ef96 (PartOf slipknot noose) (STV 1.0 0.9091)) +(: cnet_partof_99aed811d5 (PartOf slipknot snare) (STV 1.0 0.9091)) +(: cnet_partof_f9054ee910 (PartOf sloe allegheny_plum) (STV 1.0 0.9091)) +(: cnet_partof_4bceb03df5 (PartOf slope natural_elevation) (STV 1.0 0.9091)) +(: cnet_partof_290c7e3b8a (PartOf slovakia europe) (STV 1.0 0.9091)) +(: cnet_partof_ae9eef3444 (PartOf sluicegate sluice) (STV 1.0 0.9091)) +(: cnet_partof_15d93bd96e (PartOf small back) (STV 1.0 0.9091)) +(: cnet_partof_882a9ba788 (PartOf small_hour night) (STV 1.0 0.9091)) +(: cnet_partof_dcfa28f9d8 (PartOf small_intestine alimentary_canal) (STV 1.0 0.9091)) +(: cnet_partof_6d576c4d7a (PartOf smallmouth_bass smallmouth) (STV 1.0 0.9091)) +(: cnet_partof_c18191d98f (PartOf smelt smelt) (STV 1.0 0.9091)) +(: cnet_partof_ee28664363 (PartOf smolensk russia) (STV 1.0 0.9091)) +(: cnet_partof_f25b5a665a (PartOf smooth_muscle_cell smooth_muscle) (STV 1.0 0.9091)) +(: cnet_partof_2b69e26712 (PartOf snake idaho) (STV 1.0 0.9091)) +(: cnet_partof_def9effb7c (PartOf snake oregon) (STV 1.0 0.9091)) +(: cnet_partof_e59c6d4031 (PartOf snake washington) (STV 1.0 0.9091)) +(: cnet_partof_633f5bea26 (PartOf snake wyoming) (STV 1.0 0.9091)) +(: cnet_partof_9262c4756d (PartOf snapper snapper) (STV 1.0 0.9091)) +(: cnet_partof_95755c7410 (PartOf snare snare_drum) (STV 1.0 0.9091)) +(: cnet_partof_80b0e9fbca (PartOf snick cricket) (STV 1.0 0.9091)) +(: cnet_partof_14d40239fe (PartOf snorkel submarine) (STV 1.0 0.9091)) +(: cnet_partof_76ffc67b95 (PartOf snout muzzle) (STV 1.0 0.9091)) +(: cnet_partof_722f59a863 (PartOf snowflake snow) (STV 1.0 0.9091)) +(: cnet_partof_a0687655cf (PartOf snuff candlewick) (STV 1.0 0.9091)) +(: cnet_partof_12b1162f18 (PartOf sociability personableness) (STV 1.0 0.9091)) +(: cnet_partof_cfafea0ca8 (PartOf society_island french_polynesia) (STV 1.0 0.9091)) +(: cnet_partof_21eddf1f13 (PartOf socket ball_and_socket_joint) (STV 1.0 0.9091)) +(: cnet_partof_2c96a7527a (PartOf socket box_wrench) (STV 1.0 0.9091)) +(: cnet_partof_0b40b649e7 (PartOf socket socket_wrench) (STV 1.0 0.9091)) +(: cnet_partof_76c6527cb5 (PartOf socket bone) (STV 1.0 0.9091)) +(: cnet_partof_82563bc9e7 (PartOf sodom israel) (STV 1.0 0.9091)) +(: cnet_partof_484b44bd50 (PartOf sofia bulgaria) (STV 1.0 0.9091)) +(: cnet_partof_399ccb66dc (PartOf soft_palate palate) (STV 1.0 0.9091)) +(: cnet_partof_a240380549 (PartOf soft_pedal piano) (STV 1.0 0.9091)) +(: cnet_partof_3b3f0e3d2a (PartOf soft_shell_clam soft_shell_clam) (STV 1.0 0.9091)) +(: cnet_partof_a01b9503d9 (PartOf soho london) (STV 1.0 0.9091)) +(: cnet_partof_0c06bbd68a (PartOf soho manhattan) (STV 1.0 0.9091)) +(: cnet_partof_c2fdfe8044 (PartOf soil_horizon profile) (STV 1.0 0.9091)) +(: cnet_partof_f430883f9e (PartOf soisson world_war_i) (STV 1.0 0.9091)) +(: cnet_partof_abd5565166 (PartOf solar_array satellite) (STV 1.0 0.9091)) +(: cnet_partof_3b117a23e1 (PartOf solar_cell solar_array) (STV 1.0 0.9091)) +(: cnet_partof_6f0c317d10 (PartOf solar_dish solar_thermal_system) (STV 1.0 0.9091)) +(: cnet_partof_c85d7d3ea7 (PartOf solar_magnetic_field interplanetary_medium) (STV 1.0 0.9091)) +(: cnet_partof_6c6ee69bd8 (PartOf solar_plexus sympathetic_nervous_system) (STV 1.0 0.9091)) +(: cnet_partof_d59b608073 (PartOf solar_system galaxy) (STV 1.0 0.9636)) +(: cnet_partof_83d742203c (PartOf solar_system heliosphere) (STV 1.0 0.9091)) +(: cnet_partof_f7d232ae13 (PartOf solar_wind interplanetary_medium) (STV 1.0 0.9091)) +(: cnet_partof_831fa05e02 (PartOf soldier army) (STV 1.0 0.9339)) +(: cnet_partof_7b5042b089 (PartOf sole shoe) (STV 1.0 0.9339)) +(: cnet_partof_29d900cd66 (PartOf sole footwear) (STV 1.0 0.9091)) +(: cnet_partof_8ad82f011c (PartOf sole golf_club_head) (STV 1.0 0.9091)) +(: cnet_partof_e79422f37a (PartOf sole foot) (STV 1.0 0.9091)) +(: cnet_partof_9bf429f352 (PartOf sole sole) (STV 1.0 0.9091)) +(: cnet_partof_b31d3a87cc (PartOf soledad colombia) (STV 1.0 0.9091)) +(: cnet_partof_fa41e1a63e (PartOf solemnity_of_mary january) (STV 1.0 0.9091)) +(: cnet_partof_03f1283ed3 (PartOf solent english_channel) (STV 1.0 0.9091)) +(: cnet_partof_caf4c20a70 (PartOf soleus calf) (STV 1.0 0.9091)) +(: cnet_partof_a57d05c7c1 (PartOf solfa_syllable tonic_solfa) (STV 1.0 0.9091)) +(: cnet_partof_e3e0b081b6 (PartOf solingen germany) (STV 1.0 0.9091)) +(: cnet_partof_5cd64f30bc (PartOf solleret body_armor) (STV 1.0 0.9091)) +(: cnet_partof_9a02ca4f43 (PartOf solomon_island solomon) (STV 1.0 0.9091)) +(: cnet_partof_d039cf3fd8 (PartOf solomon melanesia) (STV 1.0 0.9091)) +(: cnet_partof_8a6709aaa3 (PartOf solway_firth great_britain) (STV 1.0 0.9091)) +(: cnet_partof_c62828e04a (PartOf somali_peninsula africa) (STV 1.0 0.9091)) +(: cnet_partof_90eb93d6de (PartOf somalia africa) (STV 1.0 0.9091)) +(: cnet_partof_23fe1eec9a (PartOf somalia somali_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_442ccba2b1 (PartOf sombrero saint_kitt_and_nevis) (STV 1.0 0.9091)) +(: cnet_partof_cb782c2558 (PartOf somerset england) (STV 1.0 0.9091)) +(: cnet_partof_8a19a6be0d (PartOf somme world_war_i) (STV 1.0 0.9091)) +(: cnet_partof_80393cc3d4 (PartOf somme world_war_ii) (STV 1.0 0.9091)) +(: cnet_partof_6b1dcefdc2 (PartOf sonar submarine) (STV 1.0 0.9091)) +(: cnet_partof_5cb94bb3d3 (PartOf sone phon) (STV 1.0 0.9091)) +(: cnet_partof_92db0ded37 (PartOf song_of_song hagiographa) (STV 1.0 0.9091)) +(: cnet_partof_22e7eeec5b (PartOf song_of_song old_testament) (STV 1.0 0.9091)) +(: cnet_partof_3d3ff57703 (PartOf song_of_song sapiential_book) (STV 1.0 0.9091)) +(: cnet_partof_3182dede08 (PartOf sonora_gum creosote_bush) (STV 1.0 0.9091)) +(: cnet_partof_7f7f2ff164 (PartOf sonoran_desert arizona) (STV 1.0 0.9091)) +(: cnet_partof_5eda7f865e (PartOf sorb service_tree) (STV 1.0 0.9091)) +(: cnet_partof_7eb3f1f040 (PartOf sorrel sour_dock) (STV 1.0 0.9091)) +(: cnet_partof_f7159d1485 (PartOf souari_nut souari) (STV 1.0 0.9091)) +(: cnet_partof_c57bf0be16 (PartOf soudan africa) (STV 1.0 0.9091)) +(: cnet_partof_33d0077878 (PartOf sound_bow bell) (STV 1.0 0.9091)) +(: cnet_partof_68de3c97cf (PartOf sound_hole sounding_board) (STV 1.0 0.9091)) +(: cnet_partof_a994fe825c (PartOf sound_law historical_linguistic) (STV 1.0 0.9091)) +(: cnet_partof_eba759558d (PartOf sounding_board piano) (STV 1.0 0.9091)) +(: cnet_partof_753f9b698a (PartOf sounding_board stringed_instrument) (STV 1.0 0.9091)) +(: cnet_partof_c7c8582d2b (PartOf sounding_lead lead_line) (STV 1.0 0.9091)) +(: cnet_partof_11dc87ad23 (PartOf soundtrack sound_film) (STV 1.0 0.9091)) +(: cnet_partof_3fb3fb0e62 (PartOf sour_gourd baobab) (STV 1.0 0.9091)) +(: cnet_partof_4d4e971fe5 (PartOf sour_gourd cream_of_tartar_tree) (STV 1.0 0.9091)) +(: cnet_partof_0cfd173942 (PartOf soursop soursop) (STV 1.0 0.9091)) +(: cnet_partof_5b82eb204a (PartOf sousse tunisia) (STV 1.0 0.9091)) +(: cnet_partof_34a2e22eb7 (PartOf south united_state) (STV 1.0 0.9091)) +(: cnet_partof_d523502159 (PartOf south_africa africa) (STV 1.0 0.9091)) +(: cnet_partof_f456924260 (PartOf south_america america) (STV 1.0 0.9091)) +(: cnet_partof_98d846a77a (PartOf south_america occident) (STV 1.0 0.9091)) +(: cnet_partof_6048d1ea22 (PartOf south_america southern_hemisphere) (STV 1.0 0.9091)) +(: cnet_partof_17e0d11c8e (PartOf south_america western_hemisphere) (STV 1.0 0.9091)) +(: cnet_partof_c64c008904 (PartOf south_american_country south_america) (STV 1.0 0.9091)) +(: cnet_partof_d9404a013e (PartOf south_atlantic atlantic) (STV 1.0 0.9091)) +(: cnet_partof_6ea5398ee0 (PartOf south_australia australia) (STV 1.0 0.9091)) +(: cnet_partof_537aac707e (PartOf south_bend indiana) (STV 1.0 0.9091)) +(: cnet_partof_7b58523b39 (PartOf south_carolina carolina) (STV 1.0 0.9091)) +(: cnet_partof_d5d1d493a6 (PartOf south_carolina deep_south) (STV 1.0 0.9091)) +(: cnet_partof_94876893e5 (PartOf south_carolina south) (STV 1.0 0.9091)) +(: cnet_partof_41726204f5 (PartOf south_carolina united_state) (STV 1.0 0.9091)) +(: cnet_partof_c1af211663 (PartOf south_china_sea pacific) (STV 1.0 0.9091)) +(: cnet_partof_4f5d1d4731 (PartOf south_dakota dakota) (STV 1.0 0.9091)) +(: cnet_partof_b7a523005b (PartOf south_dakota united_state) (STV 1.0 0.9091)) +(: cnet_partof_691bbc859c (PartOf south_island new_zealand) (STV 1.0 0.9091)) +(: cnet_partof_be100506f0 (PartOf south_korea asia) (STV 1.0 0.9091)) +(: cnet_partof_92e1851d2e (PartOf south_korea korea) (STV 1.0 0.9091)) +(: cnet_partof_f15b3265d8 (PartOf south_pacific pacific) (STV 1.0 0.9091)) +(: cnet_partof_6cac93e135 (PartOf south_platte colorado) (STV 1.0 0.9091)) +(: cnet_partof_57c8dc6d65 (PartOf south_platte nebraska) (STV 1.0 0.9091)) +(: cnet_partof_b7e211d5b9 (PartOf south_pole antarctica) (STV 1.0 0.9091)) +(: cnet_partof_2ad999d58e (PartOf south_vietnam vietnam) (STV 1.0 0.9091)) +(: cnet_partof_4807981706 (PartOf south_yorkshire england) (STV 1.0 0.9091)) +(: cnet_partof_adff61400b (PartOf southeast east) (STV 1.0 0.9091)) +(: cnet_partof_209f2c9e48 (PartOf southeast_asia asia) (STV 1.0 0.9091)) +(: cnet_partof_3add3ecbab (PartOf southwest west) (STV 1.0 0.9091)) +(: cnet_partof_f85d597d6f (PartOf soviet_russia eurasia) (STV 1.0 0.9091)) +(: cnet_partof_79972e67d7 (PartOf soviet_russia soviet_union) (STV 1.0 0.9091)) +(: cnet_partof_58e1a5b3f0 (PartOf soviet_socialist_republic soviet_union) (STV 1.0 0.9091)) +(: cnet_partof_616c73266e (PartOf soviet_union eurasia) (STV 1.0 0.9091)) +(: cnet_partof_71fac0c200 (PartOf soweto south_africa) (STV 1.0 0.9091)) +(: cnet_partof_7715d22fc8 (PartOf soy soy) (STV 1.0 0.9091)) +(: cnet_partof_2020a8ddd4 (PartOf space form) (STV 1.0 0.9091)) +(: cnet_partof_a197891635 (PartOf space musical_notation) (STV 1.0 0.9091)) +(: cnet_partof_d2cb4f3d9b (PartOf space staff) (STV 1.0 0.9091)) +(: cnet_partof_8f8a1a2f8b (PartOf space_bar typewriter_keyboard) (STV 1.0 0.9091)) +(: cnet_partof_a1e45734fd (PartOf space_needle seattle) (STV 1.0 0.9091)) +(: cnet_partof_fa87369b9a (PartOf spadix spike) (STV 1.0 0.9091)) +(: cnet_partof_13a80e8a98 (PartOf spaghetti_squash spaghetti_squash) (STV 1.0 0.9091)) +(: cnet_partof_836a7d7008 (PartOf spain europe) (STV 1.0 0.9091)) +(: cnet_partof_e8f0a9a165 (PartOf spain iberian_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_e057393ed0 (PartOf spanish_mackerel spanish_mackerel) (STV 1.0 0.9091)) +(: cnet_partof_fe31fa4031 (PartOf spanish_needle bur_marigold) (STV 1.0 0.9091)) +(: cnet_partof_2dbecddbbe (PartOf spar ship) (STV 1.0 0.9091)) +(: cnet_partof_332b766582 (PartOf spare_tire torso) (STV 1.0 0.9091)) +(: cnet_partof_b33f4b0558 (PartOf spark_coil ignition) (STV 1.0 0.9091)) +(: cnet_partof_a99ea69e7c (PartOf spark_gap ignition) (STV 1.0 0.9091)) +(: cnet_partof_8a2215c4cf (PartOf spark_gap induction_coil) (STV 1.0 0.9091)) +(: cnet_partof_6ccc2236a9 (PartOf spark_plug ignition) (STV 1.0 0.9091)) +(: cnet_partof_0e5cb84beb (PartOf sparrow_unit new_people_s_army) (STV 1.0 0.9091)) +(: cnet_partof_67076a5d56 (PartOf sparta peloponnese) (STV 1.0 0.9091)) +(: cnet_partof_9ef908408b (PartOf speaker stereo_system) (STV 1.0 0.9091)) +(: cnet_partof_2fc064e375 (PartOf spearhead pike) (STV 1.0 0.9091)) +(: cnet_partof_4bb14543db (PartOf spearhead spear) (STV 1.0 0.9091)) +(: cnet_partof_cd06ca0ff0 (PartOf special_force united_state_army) (STV 1.0 0.9091)) +(: cnet_partof_10a217e3ef (PartOf spectacle frame) (STV 1.0 0.9091)) +(: cnet_partof_1064d71f8a (PartOf spectrum_line spectrum) (STV 1.0 0.9091)) +(: cnet_partof_19458509b8 (PartOf speedometer motor_vehicle) (STV 1.0 0.9091)) +(: cnet_partof_d41e9d3b7d (PartOf sperm male_reproductive_system) (STV 1.0 0.9091)) +(: cnet_partof_4fe4c09289 (PartOf sperm semen) (STV 1.0 0.9091)) +(: cnet_partof_2e88ca46df (PartOf spermatic_cord testis) (STV 1.0 0.9091)) +(: cnet_partof_b213e97b8c (PartOf sphenion parietal_bone) (STV 1.0 0.9091)) +(: cnet_partof_49031cf647 (PartOf sphenoid_bone skull) (STV 1.0 0.9091)) +(: cnet_partof_dbc2dcc5e3 (PartOf spike shoe) (STV 1.0 0.9091)) +(: cnet_partof_a5ccfb544a (PartOf spinach spinach) (STV 1.0 0.9091)) +(: cnet_partof_3380f8c569 (PartOf spinal_canal spinal_column) (STV 1.0 0.9091)) +(: cnet_partof_a02fc92651 (PartOf spinal_column axial_skeleton) (STV 1.0 0.9091)) +(: cnet_partof_8f18b519bc (PartOf spinal_cord central_nervous_system) (STV 1.0 0.9091)) +(: cnet_partof_4c65186dc3 (PartOf spinal_fluid spinal_cord) (STV 1.0 0.9091)) +(: cnet_partof_15b99b76a8 (PartOf spinal_fluid ventricle) (STV 1.0 0.9091)) +(: cnet_partof_7e5a95d784 (PartOf spinal_vein spinal_cord) (STV 1.0 0.9091)) +(: cnet_partof_9f77166690 (PartOf spindle drive) (STV 1.0 0.9091)) +(: cnet_partof_5e682a0e64 (PartOf spindle spinning_frame) (STV 1.0 0.9091)) +(: cnet_partof_29d5cb4bd5 (PartOf spindle spinning_wheel) (STV 1.0 0.9091)) +(: cnet_partof_059d2c3ecf (PartOf spine human_body) (STV 1.0 0.9339)) +(: cnet_partof_31a30961ab (PartOf spiny_lobster spiny_lobster) (STV 1.0 0.9091)) +(: cnet_partof_35ae5b23f1 (PartOf spit rack) (STV 1.0 0.9091)) +(: cnet_partof_2388931ca7 (PartOf spitsbergen svalbard) (STV 1.0 0.9091)) +(: cnet_partof_afacc99076 (PartOf splanchnic_nerve sympathetic_nervous_system) (STV 1.0 0.9091)) +(: cnet_partof_ec8079c7b3 (PartOf splashboard vehicle) (STV 1.0 0.9091)) +(: cnet_partof_9d632ca6b3 (PartOf splasher wheeled_vehicle) (STV 1.0 0.9091)) +(: cnet_partof_2ca16c325a (PartOf splat straight_chair) (STV 1.0 0.9091)) +(: cnet_partof_fdb1a40ccb (PartOf spleen lymphatic_system) (STV 1.0 0.9091)) +(: cnet_partof_90b4b62c15 (PartOf splenic_vein spleen) (STV 1.0 0.9091)) +(: cnet_partof_3c5965be53 (PartOf split croatia) (STV 1.0 0.9091)) +(: cnet_partof_f15e8c01b4 (PartOf split_rail rail_fence) (STV 1.0 0.9091)) +(: cnet_partof_11e9ea5ba9 (PartOf spokane washington) (STV 1.0 0.9091)) +(: cnet_partof_75e432ff73 (PartOf spoke bicycle_wheel) (STV 1.0 0.9091)) +(: cnet_partof_6a2d12c333 (PartOf spoke cartwheel) (STV 1.0 0.9091)) +(: cnet_partof_f0df54ce53 (PartOf spoke wagon_wheel) (STV 1.0 0.9091)) +(: cnet_partof_8bd4de1165 (PartOf sport_page sport_section) (STV 1.0 0.9091)) +(: cnet_partof_dc639a3c95 (PartOf sport_section newspaper) (STV 1.0 0.9091)) +(: cnet_partof_7baab3c5c4 (PartOf spot playing_card) (STV 1.0 0.9091)) +(: cnet_partof_e099abb5be (PartOf spotsylvania wilderness_campaign) (STV 1.0 0.9091)) +(: cnet_partof_28dd5fcc3a (PartOf spotsylvania virginia) (STV 1.0 0.9091)) +(: cnet_partof_259a6d3bfc (PartOf spout pipe) (STV 1.0 0.9091)) +(: cnet_partof_61228ac2fa (PartOf spout watering_can) (STV 1.0 0.9091)) +(: cnet_partof_982db5452d (PartOf sprat brisling) (STV 1.0 0.9091)) +(: cnet_partof_8292520344 (PartOf spread publication) (STV 1.0 0.9091)) +(: cnet_partof_e425786e4b (PartOf springer arch) (STV 1.0 0.9091)) +(: cnet_partof_91f393e57a (PartOf springfield illinois) (STV 1.0 0.9091)) +(: cnet_partof_9a83715823 (PartOf springfield massachusett) (STV 1.0 0.9091)) +(: cnet_partof_f406152077 (PartOf springfield missouri) (STV 1.0 0.9091)) +(: cnet_partof_ccdb88dc15 (PartOf sprit spritsail) (STV 1.0 0.9091)) +(: cnet_partof_38cec7a40e (PartOf sprocket bicycle) (STV 1.0 0.9091)) +(: cnet_partof_d4b56a9cf8 (PartOf sprocket camera) (STV 1.0 0.9091)) +(: cnet_partof_c2e2e82d82 (PartOf spur boot) (STV 1.0 0.9091)) +(: cnet_partof_9e6808b2f0 (PartOf squab domestic_pigeon) (STV 1.0 0.9091)) +(: cnet_partof_4f1eda3723 (PartOf squad_room barrack) (STV 1.0 0.9091)) +(: cnet_partof_4b426be30e (PartOf squad_room police_station) (STV 1.0 0.9091)) +(: cnet_partof_c5836dc05a (PartOf square checkerboard) (STV 1.0 0.9091)) +(: cnet_partof_efdd8138c4 (PartOf squash squash) (STV 1.0 0.9091)) +(: cnet_partof_230f11a510 (PartOf squawk_box intercommunication_system) (STV 1.0 0.9091)) +(: cnet_partof_90d8dfe52a (PartOf squid squid) (STV 1.0 0.9091)) +(: cnet_partof_1eecf6df23 (PartOf squill sea_squill) (STV 1.0 0.9091)) +(: cnet_partof_aa1af28b61 (PartOf st_augustine florida) (STV 1.0 0.9091)) +(: cnet_partof_4db51645a7 (PartOf st_elia_range alaska) (STV 1.0 0.9091)) +(: cnet_partof_c59965c67a (PartOf st_elia_range yukon) (STV 1.0 0.9091)) +(: cnet_partof_1a8970d128 (PartOf st_george_s grenada) (STV 1.0 0.9091)) +(: cnet_partof_c0c5bfa63a (PartOf st_john_s antigua_and_barbuda) (STV 1.0 0.9091)) +(: cnet_partof_296e20d488 (PartOf st_petersburg florida) (STV 1.0 0.9091)) +(: cnet_partof_c62bb26a63 (PartOf st_petersburg russia) (STV 1.0 0.9091)) +(: cnet_partof_778e812b54 (PartOf stabilizer tail) (STV 1.0 0.9091)) +(: cnet_partof_94648c2d64 (PartOf stabilizer_bar car) (STV 1.0 0.9091)) +(: cnet_partof_cf992dec72 (PartOf stabilizer_bar truck) (STV 1.0 0.9091)) +(: cnet_partof_3642c647a6 (PartOf stack library) (STV 1.0 0.9091)) +(: cnet_partof_584cdb00b6 (PartOf staff_line musical_notation) (STV 1.0 0.9091)) +(: cnet_partof_6b8687018e (PartOf staff_line staff) (STV 1.0 0.9091)) +(: cnet_partof_e34f21befc (PartOf staffa inner_hebride) (STV 1.0 0.9091)) +(: cnet_partof_90189f725e (PartOf stage journey) (STV 1.0 0.9091)) +(: cnet_partof_392285f1c6 (PartOf stage theater) (STV 1.0 0.9091)) +(: cnet_partof_43c4b7adbe (PartOf stage_direction play) (STV 1.0 0.9091)) +(: cnet_partof_9e2b7a0299 (PartOf stage_left stage) (STV 1.0 0.9091)) +(: cnet_partof_0e719af692 (PartOf stage_right stage) (STV 1.0 0.9091)) +(: cnet_partof_107db4939e (PartOf stage_set mise_en_scene) (STV 1.0 0.9091)) +(: cnet_partof_f7188f8a9f (PartOf stagira greece) (STV 1.0 0.9091)) +(: cnet_partof_89df77a4e4 (PartOf stairhead stairway) (STV 1.0 0.9091)) +(: cnet_partof_f38eb6722d (PartOf stairway building) (STV 1.0 0.9091)) +(: cnet_partof_56a50c35c7 (PartOf stake pool) (STV 1.0 0.9091)) +(: cnet_partof_c3f4129fc7 (PartOf stalactite cave) (STV 1.0 0.9091)) +(: cnet_partof_684e4ab790 (PartOf stalagmite cave) (STV 1.0 0.9091)) +(: cnet_partof_dee00a0e57 (PartOf stall stall) (STV 1.0 0.9091)) +(: cnet_partof_e095bffe8f (PartOf stamen flower) (STV 1.0 0.9091)) +(: cnet_partof_2c7489720f (PartOf stamp battery) (STV 1.0 0.9091)) +(: cnet_partof_daff5cf1de (PartOf stand ballpark) (STV 1.0 0.9091)) +(: cnet_partof_752ecd2ad0 (PartOf stand stadium) (STV 1.0 0.9091)) +(: cnet_partof_e8787d28c4 (PartOf standing_room stadium) (STV 1.0 0.9091)) +(: cnet_partof_1fff41a092 (PartOf standing_room theater) (STV 1.0 0.9091)) +(: cnet_partof_881c26c731 (PartOf stanford_university palo_alto) (STV 1.0 0.9091)) +(: cnet_partof_321f92556d (PartOf stanza poem) (STV 1.0 0.9091)) +(: cnet_partof_2e2545404b (PartOf stape middle_ear) (STV 1.0 0.9091)) +(: cnet_partof_4c9605a02d (PartOf star galaxy) (STV 1.0 0.9091)) +(: cnet_partof_6e3f3e0cc6 (PartOf starter electrical_system) (STV 1.0 0.9091)) +(: cnet_partof_a7375bdeb3 (PartOf stassano_furnace steel_mill) (STV 1.0 0.9091)) +(: cnet_partof_d656e37ad6 (PartOf staten_island new_york) (STV 1.0 0.9091)) +(: cnet_partof_6153df237e (PartOf static_line parachute) (STV 1.0 0.9091)) +(: cnet_partof_8381563b55 (PartOf statistical_method statistic) (STV 1.0 0.9091)) +(: cnet_partof_687bb3006c (PartOf stator electric_motor) (STV 1.0 0.9091)) +(: cnet_partof_480b28ea02 (PartOf stator generator) (STV 1.0 0.9091)) +(: cnet_partof_65c6bf7900 (PartOf stator turbine) (STV 1.0 0.9091)) +(: cnet_partof_7159968a7a (PartOf stavanger norway) (STV 1.0 0.9091)) +(: cnet_partof_4fa82af319 (PartOf stave barrel) (STV 1.0 0.9091)) +(: cnet_partof_283375e3b0 (PartOf steam_chest steam_engine) (STV 1.0 0.9091)) +(: cnet_partof_6bd45a1d8b (PartOf steam_engine steam_locomotive) (STV 1.0 0.9091)) +(: cnet_partof_a15b14a3c5 (PartOf steam_engine steamer) (STV 1.0 0.9091)) +(: cnet_partof_9b3c284d1b (PartOf steam_whistle boiler) (STV 1.0 0.9091)) +(: cnet_partof_659aad0d08 (PartOf steam_whistle calliope) (STV 1.0 0.9091)) +(: cnet_partof_7f4dacbbc3 (PartOf steer_roping rodeo) (STV 1.0 0.9091)) +(: cnet_partof_54fb96f4d7 (PartOf steering seafaring) (STV 1.0 0.9091)) +(: cnet_partof_95dd08105f (PartOf steering_gear steering_system) (STV 1.0 0.9091)) +(: cnet_partof_7d00527187 (PartOf steering_linkage steering_system) (STV 1.0 0.9091)) +(: cnet_partof_9bf1698803 (PartOf steering_wheel steering_system) (STV 1.0 0.9091)) +(: cnet_partof_bdb1cc6175 (PartOf stele axis) (STV 1.0 0.9091)) +(: cnet_partof_78bf70a7d7 (PartOf stem flower) (STV 1.0 0.9091)) +(: cnet_partof_ea2b12391d (PartOf stem pipe) (STV 1.0 0.9091)) +(: cnet_partof_6e846a74d4 (PartOf step stairway) (STV 1.0 0.9091)) +(: cnet_partof_4e3302412f (PartOf stephanion cranium) (STV 1.0 0.9091)) +(: cnet_partof_c3273bd58d (PartOf steradian sphere) (STV 1.0 0.9091)) +(: cnet_partof_1e04dc7fa7 (PartOf stereotyping_people_who_have_condition stigma) (STV 1.0 0.9091)) +(: cnet_partof_b5144b62d7 (PartOf stern ship) (STV 1.0 0.9091)) +(: cnet_partof_298d3572c3 (PartOf sternocleidomastoid neck) (STV 1.0 0.9091)) +(: cnet_partof_702da584fb (PartOf sternum axial_skeleton) (STV 1.0 0.9091)) +(: cnet_partof_9a46c46ce2 (PartOf sternum thorax) (STV 1.0 0.9091)) +(: cnet_partof_8c02759861 (PartOf stifle hind_leg) (STV 1.0 0.9091)) +(: cnet_partof_3cdb77e89e (PartOf stigma style) (STV 1.0 0.9091)) +(: cnet_partof_cb3436791b (PartOf stirrup saddle) (STV 1.0 0.9091)) +(: cnet_partof_0f582c9dd0 (PartOf stock artillery) (STV 1.0 0.9091)) +(: cnet_partof_32a9ef5973 (PartOf stock cue) (STV 1.0 0.9091)) +(: cnet_partof_67092c00c8 (PartOf stock fishing_rod) (STV 1.0 0.9091)) +(: cnet_partof_428337872c (PartOf stock gun) (STV 1.0 0.9091)) +(: cnet_partof_9ba05cc592 (PartOf stock machine_gun) (STV 1.0 0.9091)) +(: cnet_partof_ed360ef29a (PartOf stock pistol) (STV 1.0 0.9091)) +(: cnet_partof_2b1234d980 (PartOf stock whip) (STV 1.0 0.9091)) +(: cnet_partof_6ea065ed0c (PartOf stockholm sweden) (STV 1.0 0.9091)) +(: cnet_partof_1a76510a98 (PartOf stocking pantyhose) (STV 1.0 0.9091)) +(: cnet_partof_6a1108d8f5 (PartOf stoma colostomy) (STV 1.0 0.9091)) +(: cnet_partof_6e0286e50f (PartOf stoma tracheostomy) (STV 1.0 0.9091)) +(: cnet_partof_197a4264b5 (PartOf stomach body) (STV 1.0 0.9091)) +(: cnet_partof_d20376a73e (PartOf stomach human_body) (STV 1.0 0.9091)) +(: cnet_partof_1127bbe6d2 (PartOf stomach alimentary_canal) (STV 1.0 0.9091)) +(: cnet_partof_58a1cde92c (PartOf stomachache indigestion) (STV 1.0 0.9091)) +(: cnet_partof_8c50e8ef32 (PartOf stone quarter) (STV 1.0 0.9091)) +(: cnet_partof_02fe50fdd8 (PartOf stone_age prehistory) (STV 1.0 0.9091)) +(: cnet_partof_7cf07e2fad (PartOf stone_crab stone_crab) (STV 1.0 0.9091)) +(: cnet_partof_e742e01ea1 (PartOf stony_tunguska siberia) (STV 1.0 0.9091)) +(: cnet_partof_f90206e2b8 (PartOf stop organ) (STV 1.0 0.9091)) +(: cnet_partof_737104effc (PartOf stoplight brake_system) (STV 1.0 0.9091)) +(: cnet_partof_cf7320f68c (PartOf storage_battery_grid storage_battery) (STV 1.0 0.9091)) +(: cnet_partof_0256bda6b0 (PartOf storage_cell storage_battery) (STV 1.0 0.9091)) +(: cnet_partof_535ce76ac1 (PartOf storage_ring accelerator) (STV 1.0 0.9091)) +(: cnet_partof_425653f1f3 (PartOf storage_space depository) (STV 1.0 0.9091)) +(: cnet_partof_f2f8a9aa1c (PartOf storm beaufort_scale) (STV 1.0 0.9091)) +(: cnet_partof_9379ad7493 (PartOf storm_center storm) (STV 1.0 0.9091)) +(: cnet_partof_c8f04664c6 (PartOf stotinka lev) (STV 1.0 0.9091)) +(: cnet_partof_1854610530 (PartOf straight_angle circumference) (STV 1.0 0.9091)) +(: cnet_partof_8a099d2aa2 (PartOf strait_of_hormuz arabian_sea) (STV 1.0 0.9091)) +(: cnet_partof_ae63e83bab (PartOf strand west_end) (STV 1.0 0.9091)) +(: cnet_partof_088ae6514d (PartOf strap baggage) (STV 1.0 0.9091)) +(: cnet_partof_16218445bf (PartOf strap brace) (STV 1.0 0.9091)) +(: cnet_partof_3704efdccf (PartOf strap brassiere) (STV 1.0 0.9091)) +(: cnet_partof_1b39b26d60 (PartOf strap chemise) (STV 1.0 0.9091)) +(: cnet_partof_e623b35764 (PartOf strap golf_bag) (STV 1.0 0.9091)) +(: cnet_partof_6b68128a07 (PartOf stratosphere atmosphere) (STV 1.0 0.9091)) +(: cnet_partof_1d1b9e6c1a (PartOf stratum_corneum epidermis) (STV 1.0 0.9091)) +(: cnet_partof_b8932ddb26 (PartOf stratum_germinativum epidermis) (STV 1.0 0.9091)) +(: cnet_partof_7657f061f6 (PartOf stratum_granulosum epidermis) (STV 1.0 0.9091)) +(: cnet_partof_4d31f1211a (PartOf stratum_lucidum epidermis) (STV 1.0 0.9091)) +(: cnet_partof_0160222a98 (PartOf strawberry garden_strawberry) (STV 1.0 0.9091)) +(: cnet_partof_ef65f9c267 (PartOf streamer aurora) (STV 1.0 0.9091)) +(: cnet_partof_74090d5b9d (PartOf street concrete_jungle) (STV 1.0 0.9091)) +(: cnet_partof_12cc0049ca (PartOf streetcar trolley_line) (STV 1.0 0.9091)) +(: cnet_partof_2285bfe0bf (PartOf stretch racetrack) (STV 1.0 0.9091)) +(: cnet_partof_345bff89c9 (PartOf striated_muscle_cell skeletal_muscle) (STV 1.0 0.9091)) +(: cnet_partof_e4c0e87c66 (PartOf string_theory m_theory) (STV 1.0 0.9091)) +(: cnet_partof_cef300744b (PartOf strong_breeze beaufort_scale) (STV 1.0 0.9091)) +(: cnet_partof_47c3359b78 (PartOf strong_gale beaufort_scale) (STV 1.0 0.9091)) +(: cnet_partof_5c7501169f (PartOf strong_suit bridge_hand) (STV 1.0 0.9091)) +(: cnet_partof_be04232732 (PartOf strophe lyric) (STV 1.0 0.9091)) +(: cnet_partof_6c143c8805 (PartOf structural_member structure) (STV 1.0 0.9091)) +(: cnet_partof_24c7092278 (PartOf structuralism anthropology) (STV 1.0 0.9091)) +(: cnet_partof_7eafd87b07 (PartOf structuralism sociology) (STV 1.0 0.9091)) +(: cnet_partof_138469dadb (PartOf student class) (STV 1.0 0.9339)) +(: cnet_partof_8e90cd4030 (PartOf student_union campus) (STV 1.0 0.9091)) +(: cnet_partof_dcfd110b41 (PartOf study house) (STV 1.0 0.9091)) +(: cnet_partof_fc9ec230f8 (PartOf study_hall school) (STV 1.0 0.9091)) +(: cnet_partof_606a9e7040 (PartOf stuffing_nut stuffing_box) (STV 1.0 0.9091)) +(: cnet_partof_448c23fa67 (PartOf stump limb) (STV 1.0 0.9091)) +(: cnet_partof_d41d1963fd (PartOf stump tooth) (STV 1.0 0.9091)) +(: cnet_partof_f2aa6f1b95 (PartOf stump wicket) (STV 1.0 0.9091)) +(: cnet_partof_b0889049b8 (PartOf stump tree) (STV 1.0 0.9091)) +(: cnet_partof_0e8bf31bbf (PartOf stuttgart germany) (STV 1.0 0.9091)) +(: cnet_partof_90c1b3a28a (PartOf style pistil) (STV 1.0 0.9091)) +(: cnet_partof_c4d3ac8a7e (PartOf stylet tardigrade) (STV 1.0 0.9091)) +(: cnet_partof_349666b585 (PartOf styloid_process temporal_bone) (STV 1.0 0.9091)) +(: cnet_partof_46eb26f9db (PartOf stylus cartridge) (STV 1.0 0.9091)) +(: cnet_partof_f84d68db76 (PartOf styx hel) (STV 1.0 0.9091)) +(: cnet_partof_d4719d9ce5 (PartOf sub_saharan_africa africa) (STV 1.0 0.9091)) +(: cnet_partof_defd48611a (PartOf subarachnoid_space meninx) (STV 1.0 0.9091)) +(: cnet_partof_c1a699afc0 (PartOf subclavian_artery clavicle) (STV 1.0 0.9091)) +(: cnet_partof_54392eaedd (PartOf subcontinent continent) (STV 1.0 0.9091)) +(: cnet_partof_862c9f02e9 (PartOf subculture culture) (STV 1.0 0.9091)) +(: cnet_partof_2785a21426 (PartOf subject scene) (STV 1.0 0.9091)) +(: cnet_partof_292f626db5 (PartOf subordinate_clause complex_sentence) (STV 1.0 0.9091)) +(: cnet_partof_3430e68cdb (PartOf substantia_nigra midbrain) (STV 1.0 0.9091)) +(: cnet_partof_a3731fe35d (PartOf subthalamic_nucleus subthalamus) (STV 1.0 0.9091)) +(: cnet_partof_55d0862e97 (PartOf subthalamus thalamus) (STV 1.0 0.9091)) +(: cnet_partof_ba8a6b3167 (PartOf subtitle movie) (STV 1.0 0.9091)) +(: cnet_partof_4c168ef03a (PartOf suburb outskirt) (STV 1.0 0.9091)) +(: cnet_partof_26f39cff70 (PartOf succo tishri) (STV 1.0 0.9091)) +(: cnet_partof_ff8b9d6afc (PartOf sucker sucker) (STV 1.0 0.9091)) +(: cnet_partof_7ae7703ed4 (PartOf sucre bolivia) (STV 1.0 0.9091)) +(: cnet_partof_1951ef1f6a (PartOf sudan africa) (STV 1.0 0.9091)) +(: cnet_partof_b594c171ae (PartOf sudbury ontario) (STV 1.0 0.9091)) +(: cnet_partof_e9c07d16ab (PartOf suez egypt) (STV 1.0 0.9091)) +(: cnet_partof_5723bca833 (PartOf suez_canal egypt) (STV 1.0 0.9091)) +(: cnet_partof_cab4570604 (PartOf sugar candy) (STV 1.0 0.9091)) +(: cnet_partof_38a89020ed (PartOf sugarcane sugarcane) (STV 1.0 0.9091)) +(: cnet_partof_d50f9ee105 (PartOf sumatra indonesia) (STV 1.0 0.9091)) +(: cnet_partof_4cf388549c (PartOf sumer babylonia) (STV 1.0 0.9091)) +(: cnet_partof_4a9c9e090b (PartOf sumer iraq) (STV 1.0 0.9091)) +(: cnet_partof_23563849d2 (PartOf summer_savory summer_savory) (STV 1.0 0.9091)) +(: cnet_partof_4034c8becd (PartOf summer_solstice june) (STV 1.0 0.9091)) +(: cnet_partof_537f71469f (PartOf summer_solstice summer) (STV 1.0 0.9091)) +(: cnet_partof_428c33c8f9 (PartOf summer_squash summer_squash) (STV 1.0 0.9091)) +(: cnet_partof_a4afddf572 (PartOf sun_city arizona) (STV 1.0 0.9091)) +(: cnet_partof_2e02829bc0 (PartOf sun_gear epicyclic_train) (STV 1.0 0.9091)) +(: cnet_partof_8ca7e2db3e (PartOf sun_river montana) (STV 1.0 0.9091)) +(: cnet_partof_daeaa30c6e (PartOf sun_valley idaho) (STV 1.0 0.9091)) +(: cnet_partof_118d039511 (PartOf sunbeam sunlight) (STV 1.0 0.9091)) +(: cnet_partof_e001b0853c (PartOf sunbelt united_state) (STV 1.0 0.9091)) +(: cnet_partof_1e894d60bb (PartOf sunburst_pleat skirt) (STV 1.0 0.9091)) +(: cnet_partof_7fd8020c54 (PartOf sunda_island malay_archipelago) (STV 1.0 0.9091)) +(: cnet_partof_a314f2ff3e (PartOf sunday weekend) (STV 1.0 0.9091)) +(: cnet_partof_faf2c5e19f (PartOf sunderland england) (STV 1.0 0.9091)) +(: cnet_partof_b10c1640ee (PartOf sunfish sunfish) (STV 1.0 0.9091)) +(: cnet_partof_85eb1705f8 (PartOf sunflower_seed common_sunflower) (STV 1.0 0.9091)) +(: cnet_partof_61c090c956 (PartOf sunroof car) (STV 1.0 0.9091)) +(: cnet_partof_c7cbe8b59c (PartOf sunset evening) (STV 1.0 0.9091)) +(: cnet_partof_1e56bb8924 (PartOf supercharger internal_combustion_engine) (STV 1.0 0.9091)) +(: cnet_partof_c1be2611c7 (PartOf superego unconscious_mind) (STV 1.0 0.9091)) +(: cnet_partof_7782027846 (PartOf superhigh_frequency electromagnetic_spectrum) (STV 1.0 0.9091)) +(: cnet_partof_e1f38c15c3 (PartOf superior wisconsin) (STV 1.0 0.9091)) +(: cnet_partof_d860cd83fe (PartOf superior_colliculus midbrain) (STV 1.0 0.9091)) +(: cnet_partof_fd2ecac1a5 (PartOf superstructure ship) (STV 1.0 0.9091)) +(: cnet_partof_1eb8f51246 (PartOf supertitle opera) (STV 1.0 0.9091)) +(: cnet_partof_7ab7a85997 (PartOf supervisory_program operating_system) (STV 1.0 0.9091)) +(: cnet_partof_2acda56b67 (PartOf supervisory_routine supervisory_program) (STV 1.0 0.9091)) +(: cnet_partof_d65e6070d5 (PartOf supreme_headquarter_allied_power_europe north_atlantic_treaty_organization) (STV 1.0 0.9091)) +(: cnet_partof_f6ba4d16b4 (PartOf sur lebanon) (STV 1.0 0.9091)) +(: cnet_partof_38c996b75b (PartOf sura koran) (STV 1.0 0.9091)) +(: cnet_partof_71dc410cec (PartOf surface lithosphere) (STV 1.0 0.9091)) +(: cnet_partof_a9aac81f33 (PartOf surface_to_air_missile surface_to_air_missile_system) (STV 1.0 0.9091)) +(: cnet_partof_71b8db7407 (PartOf suriname guiana) (STV 1.0 0.9091)) +(: cnet_partof_c5c6c415ad (PartOf suriname_river suriname) (STV 1.0 0.9091)) +(: cnet_partof_aa8b27a2d9 (PartOf surrey england) (STV 1.0 0.9091)) +(: cnet_partof_2d3754c0ae (PartOf survivor_guilt posttraumatic_stress_disorder) (STV 1.0 0.9091)) +(: cnet_partof_9ca95bfe04 (PartOf susanna apocrypha) (STV 1.0 0.9091)) +(: cnet_partof_93e80f892a (PartOf suspension car) (STV 1.0 0.9091)) +(: cnet_partof_c48039f0ac (PartOf suspension motor_vehicle) (STV 1.0 0.9091)) +(: cnet_partof_510c18ab1e (PartOf susquehanna maryland) (STV 1.0 0.9091)) +(: cnet_partof_009f9846d8 (PartOf susquehanna new_york) (STV 1.0 0.9091)) +(: cnet_partof_51f392f528 (PartOf susquehanna pennsylvania) (STV 1.0 0.9091)) +(: cnet_partof_4fd68f85eb (PartOf sussex england) (STV 1.0 0.9091)) +(: cnet_partof_1094d5fff4 (PartOf sustaining_pedal piano) (STV 1.0 0.9091)) +(: cnet_partof_7fd0328f24 (PartOf suturing operation) (STV 1.0 0.9091)) +(: cnet_partof_00e423ee7a (PartOf suva fiji) (STV 1.0 0.9091)) +(: cnet_partof_73488318af (PartOf svalbard arctic_ocean) (STV 1.0 0.9091)) +(: cnet_partof_96bfb68f83 (PartOf svalbard norway) (STV 1.0 0.9091)) +(: cnet_partof_614c9fdc1c (PartOf swallow_tailed_coat dress_suit) (STV 1.0 0.9091)) +(: cnet_partof_452550e3b1 (PartOf swallow_tailed_coat morning_dress) (STV 1.0 0.9091)) +(: cnet_partof_24a15790f6 (PartOf swan_s_down swan) (STV 1.0 0.9091)) +(: cnet_partof_64fc77cfdf (PartOf swansea wale) (STV 1.0 0.9091)) +(: cnet_partof_b452bb30fd (PartOf swaziland africa) (STV 1.0 0.9091)) +(: cnet_partof_b9f632af98 (PartOf sweat_gland skin) (STV 1.0 0.9091)) +(: cnet_partof_fe527f8af5 (PartOf sweat_pant sweat_suit) (STV 1.0 0.9091)) +(: cnet_partof_cd78aaf885 (PartOf sweatshirt sweat_suit) (STV 1.0 0.9091)) +(: cnet_partof_e6c0abaf30 (PartOf sweeping cleaning_up_kitchen) (STV 1.0 0.9091)) +(: cnet_partof_381a2378e0 (PartOf sweet_calabash sweet_calabash) (STV 1.0 0.9091)) +(: cnet_partof_378ae34a68 (PartOf sweet_cherry sweet_cherry) (STV 1.0 0.9091)) +(: cnet_partof_9f90f69e32 (PartOf sweet_cicely sweet_cicely) (STV 1.0 0.9091)) +(: cnet_partof_620ff0f4ac (PartOf sweet_corn corn) (STV 1.0 0.9091)) +(: cnet_partof_0e0ee2da4a (PartOf sweet_orange sweet_orange) (STV 1.0 0.9091)) +(: cnet_partof_6f57ce3314 (PartOf sweet_pepper sweet_pepper) (STV 1.0 0.9091)) +(: cnet_partof_c1c83b7225 (PartOf sweet_potato sweet_potato) (STV 1.0 0.9091)) +(: cnet_partof_16ecf491a6 (PartOf sweet_woodruff sweet_woodruff) (STV 1.0 0.9091)) +(: cnet_partof_d71464f56e (PartOf sweetsop sweetsop) (STV 1.0 0.9091)) +(: cnet_partof_1908d21b75 (PartOf swimmeret isopod) (STV 1.0 0.9091)) +(: cnet_partof_f007e9a4d5 (PartOf swimmeret lobster) (STV 1.0 0.9091)) +(: cnet_partof_c925738aac (PartOf swimmeret shrimp) (STV 1.0 0.9091)) +(: cnet_partof_91748c534c (PartOf swimming_event swimming_meet) (STV 1.0 0.9091)) +(: cnet_partof_5ab5da2377 (PartOf swimming_kick swimming_stroke) (STV 1.0 0.9091)) +(: cnet_partof_d47a646d5e (PartOf swimming_pool lido) (STV 1.0 0.9091)) +(: cnet_partof_30b4b9ec7e (PartOf swing square_dance) (STV 1.0 0.9091)) +(: cnet_partof_e22b804a01 (PartOf swing playground) (STV 1.0 0.9091)) +(: cnet_partof_6510696e16 (PartOf swiss_canton switzerland) (STV 1.0 0.9091)) +(: cnet_partof_88a793f957 (PartOf switchboard telephone_system) (STV 1.0 0.9091)) +(: cnet_partof_70639c6c70 (PartOf switzerland europe) (STV 1.0 0.9339)) +(: cnet_partof_641ef49a91 (PartOf swordfish swordfish) (STV 1.0 0.9091)) +(: cnet_partof_b841835e15 (PartOf syconium fig) (STV 1.0 0.9091)) +(: cnet_partof_fde244e287 (PartOf sydney new_south_wale) (STV 1.0 0.9091)) +(: cnet_partof_c54c68ea50 (PartOf sydney_harbor_bridge sydney) (STV 1.0 0.9091)) +(: cnet_partof_e33ef8dfdc (PartOf syllable word) (STV 1.0 0.9091)) +(: cnet_partof_3321c0925e (PartOf sympathetic_nervous_system autonomic_nervous_system) (STV 1.0 0.9091)) +(: cnet_partof_fbafe8ea97 (PartOf symphysion lower_jaw) (STV 1.0 0.9091)) +(: cnet_partof_f7a40a049d (PartOf symptom disease) (STV 1.0 0.9091)) +(: cnet_partof_1d692b1099 (PartOf synapse brain) (STV 1.0 0.9091)) +(: cnet_partof_8330c50840 (PartOf synapse nerve) (STV 1.0 0.9091)) +(: cnet_partof_5d7833f85b (PartOf synapsis leptotene) (STV 1.0 0.9091)) +(: cnet_partof_851f41d56c (PartOf syndrome disease) (STV 1.0 0.9091)) +(: cnet_partof_b70a60b61b (PartOf synizesis prophase) (STV 1.0 0.9091)) +(: cnet_partof_b2db1306d7 (PartOf synoptic_gospel gospel) (STV 1.0 0.9091)) +(: cnet_partof_5d3fe9dc59 (PartOf syracuse new_york) (STV 1.0 0.9091)) +(: cnet_partof_31a7f284b6 (PartOf syracuse sicily) (STV 1.0 0.9091)) +(: cnet_partof_32364cec4c (PartOf syria asia) (STV 1.0 0.9091)) +(: cnet_partof_5e124e4489 (PartOf syria middle_east) (STV 1.0 0.9091)) +(: cnet_partof_382e5def26 (PartOf syrian_desert arabian_desert) (STV 1.0 0.9091)) +(: cnet_partof_cdf7b80319 (PartOf syrian_desert iraq) (STV 1.0 0.9091)) +(: cnet_partof_95eb7fd4d0 (PartOf syrian_desert jordan) (STV 1.0 0.9091)) +(: cnet_partof_ed19245285 (PartOf syrian_desert saudi_arabia) (STV 1.0 0.9091)) +(: cnet_partof_719043a18b (PartOf syrian_desert syria) (STV 1.0 0.9091)) +(: cnet_partof_5c37c71082 (PartOf syrinx bird) (STV 1.0 0.9091)) +(: cnet_partof_c0662dbef1 (PartOf szechwan china) (STV 1.0 0.9091)) +(: cnet_partof_252dddd933 (PartOf tab_key typewriter_keyboard) (STV 1.0 0.9091)) +(: cnet_partof_9bda93f53a (PartOf tabasco tabasco_pepper) (STV 1.0 0.9091)) +(: cnet_partof_1f93676749 (PartOf tabasco mexico) (STV 1.0 0.9091)) +(: cnet_partof_87e084e755 (PartOf table_of_content book) (STV 1.0 0.9091)) +(: cnet_partof_600c55131f (PartOf table_rapping seance) (STV 1.0 0.9091)) +(: cnet_partof_a0bb4ed648 (PartOf table_tipping seance) (STV 1.0 0.9091)) +(: cnet_partof_ec01f0596b (PartOf tabletop table) (STV 1.0 0.9091)) +(: cnet_partof_40ed7af298 (PartOf tableware table) (STV 1.0 0.9091)) +(: cnet_partof_e02fd61c2d (PartOf tabora tanzania) (STV 1.0 0.9091)) +(: cnet_partof_784f4dea47 (PartOf tabriz iran) (STV 1.0 0.9091)) +(: cnet_partof_4effff80bd (PartOf tabuk saudi_arabia) (STV 1.0 0.9091)) +(: cnet_partof_e054efab0d (PartOf tacoma washington) (STV 1.0 0.9091)) +(: cnet_partof_f179d2c2de (PartOf tacoma_narrow_bridge tacoma) (STV 1.0 0.9091)) +(: cnet_partof_4c2445fc6a (PartOf taconic_mountain appalachian) (STV 1.0 0.9091)) +(: cnet_partof_50d6238db4 (PartOf taconic_mountain connecticut) (STV 1.0 0.9091)) +(: cnet_partof_50393b98ee (PartOf taconic_mountain massachusett) (STV 1.0 0.9091)) +(: cnet_partof_7f4f9d497d (PartOf taconic_mountain new_york) (STV 1.0 0.9091)) +(: cnet_partof_56fce7a9f7 (PartOf taconic_mountain vermont) (STV 1.0 0.9091)) +(: cnet_partof_60383232d6 (PartOf taegu south_korea) (STV 1.0 0.9091)) +(: cnet_partof_3b29093446 (PartOf tagus portugal) (STV 1.0 0.9091)) +(: cnet_partof_a8b154b42e (PartOf tagus spain) (STV 1.0 0.9091)) +(: cnet_partof_60880c5c3e (PartOf tahiti society_island) (STV 1.0 0.9091)) +(: cnet_partof_848cc6cee0 (PartOf taichung taiwan) (STV 1.0 0.9091)) +(: cnet_partof_f89cee929f (PartOf taif saudi_arabia) (STV 1.0 0.9091)) +(: cnet_partof_a7e6eeb9f0 (PartOf tail cat) (STV 1.0 0.9091)) +(: cnet_partof_4d8e9359a7 (PartOf tail vertebrate) (STV 1.0 0.9091)) +(: cnet_partof_9308fb735e (PartOf tail coin) (STV 1.0 0.9091)) +(: cnet_partof_3720297ba9 (PartOf tail fuselage) (STV 1.0 0.9091)) +(: cnet_partof_1303276de2 (PartOf tail_fin fish) (STV 1.0 0.9091)) +(: cnet_partof_ab25aac7f1 (PartOf tail_fin car) (STV 1.0 0.9091)) +(: cnet_partof_724e65d20e (PartOf tailgate beach_wagon) (STV 1.0 0.9091)) +(: cnet_partof_3b060abefd (PartOf tailgate truck) (STV 1.0 0.9091)) +(: cnet_partof_e2d79e1079 (PartOf taillight electrical_system) (STV 1.0 0.9091)) +(: cnet_partof_5cf75619fa (PartOf tailpipe exhaust) (STV 1.0 0.9091)) +(: cnet_partof_4913654bff (PartOf taimyr_peninsula siberia) (STV 1.0 0.9091)) +(: cnet_partof_a6a4b8a8ec (PartOf taipei taiwan) (STV 1.0 0.9091)) +(: cnet_partof_bb0eb0ce1d (PartOf taiwan south_china_sea) (STV 1.0 0.9091)) +(: cnet_partof_97ea11f4c4 (PartOf taiyuan china) (STV 1.0 0.9091)) +(: cnet_partof_06c1a69c37 (PartOf tajikistan asia) (STV 1.0 0.9091)) +(: cnet_partof_1044fea4f1 (PartOf takakkaw british_columbia) (STV 1.0 0.9091)) +(: cnet_partof_deb3e3fd3d (PartOf takedown wrestling_match) (STV 1.0 0.9091)) +(: cnet_partof_0bd3a33fd2 (PartOf taklamakan_desert china) (STV 1.0 0.9091)) +(: cnet_partof_d525518ea0 (PartOf tallahassee florida) (STV 1.0 0.9091)) +(: cnet_partof_d259518bba (PartOf tallapoosa alabama) (STV 1.0 0.9091)) +(: cnet_partof_c8c97472ae (PartOf tallapoosa georgia) (STV 1.0 0.9091)) +(: cnet_partof_3e4aed13e5 (PartOf tallinn estonia) (STV 1.0 0.9091)) +(: cnet_partof_eecff78487 (PartOf talon bird_s_foot) (STV 1.0 0.9091)) +(: cnet_partof_a3b9f98ca7 (PartOf tamale ghana) (STV 1.0 0.9091)) +(: cnet_partof_dea409f43b (PartOf tamarind tamarind) (STV 1.0 0.9091)) +(: cnet_partof_c4644dca6e (PartOf tambala malawi_kwacha) (STV 1.0 0.9091)) +(: cnet_partof_52c1227c9a (PartOf tamil_eelam sri_lanka) (STV 1.0 0.9091)) +(: cnet_partof_fcdf88e19b (PartOf tamil_nadu india) (STV 1.0 0.9091)) +(: cnet_partof_a2b44d7650 (PartOf tammany_hall democratic_party) (STV 1.0 0.9091)) +(: cnet_partof_3bc154cc84 (PartOf tammuz jewish_calendar) (STV 1.0 0.9091)) +(: cnet_partof_357bcbbe0c (PartOf tampa florida) (STV 1.0 0.9091)) +(: cnet_partof_44f5f243b1 (PartOf tampa_bay florida) (STV 1.0 0.9091)) +(: cnet_partof_a310d00561 (PartOf tampa_bay gulf_of_mexico) (STV 1.0 0.9091)) +(: cnet_partof_a51a4aeede (PartOf tampere finland) (STV 1.0 0.9091)) +(: cnet_partof_f5045ee118 (PartOf tampico mexico) (STV 1.0 0.9091)) +(: cnet_partof_6720d08839 (PartOf tanga tanzania) (STV 1.0 0.9091)) +(: cnet_partof_1e1858df2f (PartOf tanganyika tanzania) (STV 1.0 0.9091)) +(: cnet_partof_4ba9486b02 (PartOf tangelo tangelo) (STV 1.0 0.9091)) +(: cnet_partof_cda2d25ad2 (PartOf tangerine tangerine) (STV 1.0 0.9091)) +(: cnet_partof_9306325e6a (PartOf tangier morocco) (STV 1.0 0.9091)) +(: cnet_partof_39d1e39f88 (PartOf tangshan china) (STV 1.0 0.9091)) +(: cnet_partof_efe4e50541 (PartOf tannenberg world_war_i) (STV 1.0 0.9091)) +(: cnet_partof_61d97a03ac (PartOf tannoy public_address_system) (STV 1.0 0.9091)) +(: cnet_partof_59c9fcb9db (PartOf tanzania africa) (STV 1.0 0.9091)) +(: cnet_partof_d4aa2af2ed (PartOf tanzania east_africa) (STV 1.0 0.9091)) +(: cnet_partof_bdb98096b3 (PartOf tao taoism) (STV 1.0 0.9091)) +(: cnet_partof_87a8a744dc (PartOf tao new_mexico) (STV 1.0 0.9091)) +(: cnet_partof_20ebb92cdd (PartOf tap barrel) (STV 1.0 0.9091)) +(: cnet_partof_5713af10d9 (PartOf tape_deck audio_system) (STV 1.0 0.9091)) +(: cnet_partof_c36e60cee1 (PartOf tape_drive tape_deck) (STV 1.0 0.9091)) +(: cnet_partof_40c7ce7eb9 (PartOf tape_drive tape_recorder) (STV 1.0 0.9091)) +(: cnet_partof_7c5f02ca83 (PartOf tappan_zee_bridge new_york) (STV 1.0 0.9091)) +(: cnet_partof_91321fb156 (PartOf tara ireland) (STV 1.0 0.9091)) +(: cnet_partof_87dd8ef4dd (PartOf tarawa world_war_ii) (STV 1.0 0.9091)) +(: cnet_partof_a87c91a20f (PartOf tarawa kiribati) (STV 1.0 0.9091)) +(: cnet_partof_bd5307552d (PartOf taro taro) (STV 1.0 0.9091)) +(: cnet_partof_477af3af2b (PartOf tarragon tarragon) (STV 1.0 0.9091)) +(: cnet_partof_6ee7373b84 (PartOf tarsal tarsus) (STV 1.0 0.9091)) +(: cnet_partof_7ba2b7cc99 (PartOf tarsus vertebrate_foot) (STV 1.0 0.9091)) +(: cnet_partof_33923b9449 (PartOf tartary asia) (STV 1.0 0.9091)) +(: cnet_partof_119375856a (PartOf tartary europe) (STV 1.0 0.9091)) +(: cnet_partof_4340d1799f (PartOf tartu estonia) (STV 1.0 0.9091)) +(: cnet_partof_864f987e42 (PartOf tashkent uzbekistan) (STV 1.0 0.9091)) +(: cnet_partof_11825d73e6 (PartOf tasman_sea pacific) (STV 1.0 0.9091)) +(: cnet_partof_4d7774b078 (PartOf tasmania australia) (STV 1.0 0.9091)) +(: cnet_partof_df1de5ec75 (PartOf tasset body_armor) (STV 1.0 0.9091)) +(: cnet_partof_d04c7816f3 (PartOf taste helping) (STV 1.0 0.9091)) +(: cnet_partof_d0fd9ad281 (PartOf taste_cell tastebud) (STV 1.0 0.9091)) +(: cnet_partof_27d4c1baba (PartOf tastebud epiglottis) (STV 1.0 0.9091)) +(: cnet_partof_ad566a4c62 (PartOf tastebud palate) (STV 1.0 0.9091)) +(: cnet_partof_d20cf7904e (PartOf tastebud throat) (STV 1.0 0.9091)) +(: cnet_partof_1017cd32e8 (PartOf tastebud tongue) (STV 1.0 0.9091)) +(: cnet_partof_59db407d0a (PartOf taurus zodiac) (STV 1.0 0.9091)) +(: cnet_partof_723b8762fb (PartOf taw hebrew_alphabet) (STV 1.0 0.9091)) +(: cnet_partof_6ccee1ce30 (PartOf taxiway airfield) (STV 1.0 0.9091)) +(: cnet_partof_83a04303ec (PartOf tb pb) (STV 1.0 0.9091)) +(: cnet_partof_2695092777 (PartOf tbilisi georgia) (STV 1.0 0.9091)) +(: cnet_partof_f6f35fbec4 (PartOf tea tea) (STV 1.0 0.9091)) +(: cnet_partof_78b60e79a1 (PartOf tear lacrimal_secretion) (STV 1.0 0.9091)) +(: cnet_partof_42cbddd7f1 (PartOf tebet jewish_calendar) (STV 1.0 0.9091)) +(: cnet_partof_645f139797 (PartOf tebibit pebibit) (STV 1.0 0.9091)) +(: cnet_partof_118252177d (PartOf technology_administration department_of_commerce) (STV 1.0 0.9091)) +(: cnet_partof_a446c86bdb (PartOf tee golf_course) (STV 1.0 0.9091)) +(: cnet_partof_98af3ff2c3 (PartOf teen adulthood) (STV 1.0 0.9091)) +(: cnet_partof_dacc812ba0 (PartOf tegucigalpa hondura) (STV 1.0 0.9091)) +(: cnet_partof_a5bbc1c57b (PartOf teheran iran) (STV 1.0 0.9091)) +(: cnet_partof_af67b0dea3 (PartOf tel_aviv israel) (STV 1.0 0.9091)) +(: cnet_partof_f92e37f991 (PartOf telemeter space_probe) (STV 1.0 0.9091)) +(: cnet_partof_7633dab277 (PartOf telencephalon forebrain) (STV 1.0 0.9091)) +(: cnet_partof_e2d87444c0 (PartOf telephone telephone_system) (STV 1.0 0.9091)) +(: cnet_partof_5768e4944e (PartOf telephone_receiver telephone) (STV 1.0 0.9091)) +(: cnet_partof_6263b35f57 (PartOf television_camera_tube television_camera) (STV 1.0 0.9091)) +(: cnet_partof_c540029fa6 (PartOf television_equipment television) (STV 1.0 0.9091)) +(: cnet_partof_d92a597ef7 (PartOf television_receiver television) (STV 1.0 0.9091)) +(: cnet_partof_6fcd0d9fbe (PartOf television_station communication_system) (STV 1.0 0.9091)) +(: cnet_partof_cfb4468aa1 (PartOf television_transmitter television) (STV 1.0 0.9091)) +(: cnet_partof_cd1262f3d3 (PartOf telomere chromosome) (STV 1.0 0.9091)) +(: cnet_partof_063cd41060 (PartOf telophase meiosis) (STV 1.0 0.9091)) +(: cnet_partof_72f13c36de (PartOf telophase mitosis) (STV 1.0 0.9091)) +(: cnet_partof_9dc9b7a944 (PartOf telpher telpherage) (STV 1.0 0.9091)) +(: cnet_partof_e8713f2060 (PartOf temple head) (STV 1.0 0.9091)) +(: cnet_partof_bf3a394ea1 (PartOf temple_of_apollo delphi) (STV 1.0 0.9091)) +(: cnet_partof_5f4d9d0ba6 (PartOf temple_of_jerusalem jerusalem) (STV 1.0 0.9091)) +(: cnet_partof_a92410aefa (PartOf temple_orange temple_orange) (STV 1.0 0.9091)) +(: cnet_partof_3290883519 (PartOf temporal_bone cranium) (STV 1.0 0.9091)) +(: cnet_partof_d88a41ea44 (PartOf temporal_gyrus temporal_lobe) (STV 1.0 0.9091)) +(: cnet_partof_6cfe67c72c (PartOf temporal_lobe brain) (STV 1.0 0.9091)) +(: cnet_partof_816eb2ef4e (PartOf temporal_lobe cerebral_cortex) (STV 1.0 0.9091)) +(: cnet_partof_e2b3d94761 (PartOf temuco chile) (STV 1.0 0.9091)) +(: cnet_partof_16c5429e63 (PartOf tenderization cooking) (STV 1.0 0.9091)) +(: cnet_partof_24d3eee79e (PartOf tendon muscular_structure) (STV 1.0 0.9091)) +(: cnet_partof_6b9b3504f8 (PartOf tenerife atlantic) (STV 1.0 0.9091)) +(: cnet_partof_34957aa028 (PartOf tenerife canary_island) (STV 1.0 0.9091)) +(: cnet_partof_7e9e796b24 (PartOf tennessee south) (STV 1.0 0.9091)) +(: cnet_partof_0b42c567db (PartOf tennessee united_state) (STV 1.0 0.9091)) +(: cnet_partof_7b6b77142b (PartOf tennessee kentucky) (STV 1.0 0.9091)) +(: cnet_partof_6521cddca0 (PartOf tennessee tennessee) (STV 1.0 0.9091)) +(: cnet_partof_93ad440d39 (PartOf tenon mortise_joint) (STV 1.0 0.9091)) +(: cnet_partof_4ffc83b74e (PartOf tent_fly fly_tent) (STV 1.0 0.9091)) +(: cnet_partof_500e6d766a (PartOf tenterhook tenter) (STV 1.0 0.9091)) +(: cnet_partof_c2ffef2174 (PartOf tepic mexico) (STV 1.0 0.9091)) +(: cnet_partof_9b66d2e43d (PartOf terabit petabit) (STV 1.0 0.9091)) +(: cnet_partof_b03bca9ceb (PartOf terabyte petabyte) (STV 1.0 0.9091)) +(: cnet_partof_d8bbe8fa93 (PartOf terengganu malaysia) (STV 1.0 0.9091)) +(: cnet_partof_c82cfd854e (PartOf tere shoulder) (STV 1.0 0.9091)) +(: cnet_partof_e546a9d358 (PartOf term proposition) (STV 1.0 0.9091)) +(: cnet_partof_d77ce53c4b (PartOf term gestation) (STV 1.0 0.9091)) +(: cnet_partof_33b36a869f (PartOf terminal battery) (STV 1.0 0.9091)) +(: cnet_partof_75bbed631e (PartOf terminal electrical_device) (STV 1.0 0.9091)) +(: cnet_partof_006e6a8b9a (PartOf terminal transportation_system) (STV 1.0 0.9091)) +(: cnet_partof_fa3fa008a6 (PartOf territorial militia) (STV 1.0 0.9091)) +(: cnet_partof_a537b55d94 (PartOf territorial_water main) (STV 1.0 0.9091)) +(: cnet_partof_c4c74b1010 (PartOf tertiary cenozoic) (STV 1.0 0.9091)) +(: cnet_partof_bb4401f858 (PartOf tessera mosaic) (STV 1.0 0.9091)) +(: cnet_partof_ba8d3503fe (PartOf testa seed) (STV 1.0 0.9091)) +(: cnet_partof_3de4630849 (PartOf testament bible) (STV 1.0 0.9091)) +(: cnet_partof_d2518845ba (PartOf testicular_artery testis) (STV 1.0 0.9091)) +(: cnet_partof_68e9961eaa (PartOf testicular_vein testis) (STV 1.0 0.9091)) +(: cnet_partof_da13c11e97 (PartOf testis male_genitalia) (STV 1.0 0.9091)) +(: cnet_partof_d0944c11a7 (PartOf testis male_reproductive_system) (STV 1.0 0.9091)) +(: cnet_partof_47b7890b83 (PartOf tet january) (STV 1.0 0.9091)) +(: cnet_partof_41507b5b84 (PartOf teton_range wyoming) (STV 1.0 0.9091)) +(: cnet_partof_010b1e8f13 (PartOf tetri lari) (STV 1.0 0.9091)) +(: cnet_partof_8a88f52d4b (PartOf texarkana arkansa) (STV 1.0 0.9091)) +(: cnet_partof_d294c857c4 (PartOf texarkana texa) (STV 1.0 0.9091)) +(: cnet_partof_fd838ba161 (PartOf texa united_state_of_america) (STV 1.0 0.9339)) +(: cnet_partof_6b1e4ebab1 (PartOf texa gulf_state) (STV 1.0 0.9091)) +(: cnet_partof_b12f81f2c9 (PartOf texa southwest) (STV 1.0 0.9091)) +(: cnet_partof_42ddad1038 (PartOf texa united_state) (STV 1.0 0.9091)) +(: cnet_partof_e0c8a1eac4 (PartOf texa_independence_day march) (STV 1.0 0.9091)) +(: cnet_partof_25455bac8e (PartOf text bible) (STV 1.0 0.9091)) +(: cnet_partof_b026604e40 (PartOf text publication) (STV 1.0 0.9091)) +(: cnet_partof_fb19106533 (PartOf thailand indochina) (STV 1.0 0.9091)) +(: cnet_partof_88c694d9f8 (PartOf thailand malay_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_a748a08b44 (PartOf thalamus diencephalon) (STV 1.0 0.9091)) +(: cnet_partof_faa7d5492d (PartOf thame england) (STV 1.0 0.9091)) +(: cnet_partof_b0f74b263f (PartOf thanksgiving november) (STV 1.0 0.9091)) +(: cnet_partof_5728b6e519 (PartOf theater_curtain theater_stage) (STV 1.0 0.9091)) +(: cnet_partof_13e9d16c0d (PartOf theater_stage theater) (STV 1.0 0.9091)) +(: cnet_partof_dfa97d91fd (PartOf thebe pula) (STV 1.0 0.9091)) +(: cnet_partof_bcf2fe5b62 (PartOf thebe boeotia) (STV 1.0 0.9091)) +(: cnet_partof_d1ece5327d (PartOf thebe egypt) (STV 1.0 0.9091)) +(: cnet_partof_4074441e39 (PartOf thenar palm) (STV 1.0 0.9091)) +(: cnet_partof_1b9265ede9 (PartOf theodore_roosevelt_memorial_national_park north_dakota) (STV 1.0 0.9091)) +(: cnet_partof_366d5db1a5 (PartOf thermidor revolutionary_calendar) (STV 1.0 0.9091)) +(: cnet_partof_aa11f23476 (PartOf thermosphere atmosphere) (STV 1.0 0.9091)) +(: cnet_partof_ead2a4495b (PartOf thermostat cooling_system) (STV 1.0 0.9091)) +(: cnet_partof_5b375b8a91 (PartOf thermostat incubator) (STV 1.0 0.9091)) +(: cnet_partof_8f9a6d1761 (PartOf thessalia greece) (STV 1.0 0.9091)) +(: cnet_partof_a75a38dac9 (PartOf thessaloniki greece) (STV 1.0 0.9091)) +(: cnet_partof_c78cc14748 (PartOf theurgy supernatural) (STV 1.0 0.9091)) +(: cnet_partof_53c93cc64b (PartOf thick_skin pachyderm) (STV 1.0 0.9091)) +(: cnet_partof_0703a16dd4 (PartOf thigh leg) (STV 1.0 0.9091)) +(: cnet_partof_f2a6305407 (PartOf third_epistel_of_john new_testament) (STV 1.0 0.9091)) +(: cnet_partof_0099484c51 (PartOf third_eye diencephalon) (STV 1.0 0.9091)) +(: cnet_partof_94755b05e3 (PartOf third_gear car) (STV 1.0 0.9091)) +(: cnet_partof_7c660e61e2 (PartOf thirty adulthood) (STV 1.0 0.9091)) +(: cnet_partof_1254986224 (PartOf thoracic_aorta thorax) (STV 1.0 0.9091)) +(: cnet_partof_ca3c8cc54c (PartOf thoracic_duct lymphatic_system) (STV 1.0 0.9091)) +(: cnet_partof_142f4a10c1 (PartOf thoracic_vein thorax) (STV 1.0 0.9091)) +(: cnet_partof_7ea0215b02 (PartOf thoracic_vertebra back) (STV 1.0 0.9091)) +(: cnet_partof_318ac33746 (PartOf thorax insect) (STV 1.0 0.9091)) +(: cnet_partof_fa2a75f905 (PartOf thorax arthropod) (STV 1.0 0.9091)) +(: cnet_partof_637ae2308e (PartOf thorax torso) (STV 1.0 0.9091)) +(: cnet_partof_95f12376a1 (PartOf thorax vertebrate) (STV 1.0 0.9091)) +(: cnet_partof_454cf31574 (PartOf thorshavn faroe_island) (STV 1.0 0.9091)) +(: cnet_partof_a5cf1d115d (PartOf thoughtfulness character) (STV 1.0 0.9091)) +(: cnet_partof_cf9060ab32 (PartOf thrace balkan_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_3bae512155 (PartOf thrash treading_water) (STV 1.0 0.9091)) +(: cnet_partof_4e1926c9c2 (PartOf throat shoe) (STV 1.0 0.9091)) +(: cnet_partof_c455c9deec (PartOf throat alimentary_canal) (STV 1.0 0.9091)) +(: cnet_partof_a9ef3b4a77 (PartOf throat neck) (STV 1.0 0.9091)) +(: cnet_partof_5fecdd336f (PartOf throat upper_respiratory_tract) (STV 1.0 0.9091)) +(: cnet_partof_9f9ac69fdb (PartOf thrombus thrombosis) (STV 1.0 0.9091)) +(: cnet_partof_8f5d1e9e8d (PartOf thule greenland) (STV 1.0 0.9091)) +(: cnet_partof_bb33c12914 (PartOf thumb glove) (STV 1.0 0.9091)) +(: cnet_partof_c064eec144 (PartOf thumbhole bowling_ball) (STV 1.0 0.9091)) +(: cnet_partof_691da626cf (PartOf thumbhole woodwind) (STV 1.0 0.9091)) +(: cnet_partof_0b12a0bbeb (PartOf thumbnail thumb) (STV 1.0 0.9091)) +(: cnet_partof_d23407c685 (PartOf thunder_bay ontario) (STV 1.0 0.9091)) +(: cnet_partof_c857060187 (PartOf thuringia germany) (STV 1.0 0.9091)) +(: cnet_partof_435833e7f9 (PartOf thwart dinghy) (STV 1.0 0.9091)) +(: cnet_partof_9ca3576fdb (PartOf thyme common_thyme) (STV 1.0 0.9091)) +(: cnet_partof_28408ccd3c (PartOf thymus_gland immune_system) (STV 1.0 0.9091)) +(: cnet_partof_a83fc2617a (PartOf thymus_gland neck) (STV 1.0 0.9091)) +(: cnet_partof_fe01e6c212 (PartOf thyroid_cartilage larynx) (STV 1.0 0.9091)) +(: cnet_partof_b96b2f47cc (PartOf tianjin china) (STV 1.0 0.9091)) +(: cnet_partof_c6be9523d7 (PartOf tibet asia) (STV 1.0 0.9091)) +(: cnet_partof_2adab4e9a3 (PartOf tibia leg) (STV 1.0 0.9091)) +(: cnet_partof_2deb98aad6 (PartOf tibial_vein leg) (STV 1.0 0.9091)) +(: cnet_partof_8572c35247 (PartOf tibialis leg) (STV 1.0 0.9091)) +(: cnet_partof_e5d0767ad3 (PartOf ticino switzerland) (STV 1.0 0.9091)) +(: cnet_partof_5dc116ca7f (PartOf tidal_flow tide) (STV 1.0 0.9091)) +(: cnet_partof_fdf5b4bf84 (PartOf tidal_river tidewater) (STV 1.0 0.9091)) +(: cnet_partof_6bb965862a (PartOf tidewater south) (STV 1.0 0.9091)) +(: cnet_partof_2ec1ae98d6 (PartOf tie railroad_track) (STV 1.0 0.9091)) +(: cnet_partof_14e74593d0 (PartOf tie_rod steering_linkage) (STV 1.0 0.9091)) +(: cnet_partof_16e53b7188 (PartOf tien_shan china) (STV 1.0 0.9091)) +(: cnet_partof_9e9a9cde04 (PartOf tien_shan india) (STV 1.0 0.9091)) +(: cnet_partof_ca977a5dca (PartOf tien_shan russia) (STV 1.0 0.9091)) +(: cnet_partof_b2b226fd60 (PartOf tiered_seat amphitheater) (STV 1.0 0.9091)) +(: cnet_partof_4faaabc902 (PartOf tiered_seat stadium) (STV 1.0 0.9091)) +(: cnet_partof_b2420a1085 (PartOf tiered_seat theater) (STV 1.0 0.9091)) +(: cnet_partof_71aa76cdd2 (PartOf tierra_del_fuego argentina) (STV 1.0 0.9091)) +(: cnet_partof_796823f2ac (PartOf tierra_del_fuego chile) (STV 1.0 0.9091)) +(: cnet_partof_a7b7b34dbb (PartOf tigris iraq) (STV 1.0 0.9091)) +(: cnet_partof_dee407d206 (PartOf tigris syria) (STV 1.0 0.9091)) +(: cnet_partof_ffb1f5c34c (PartOf tigris turkey) (STV 1.0 0.9091)) +(: cnet_partof_ed7b069e34 (PartOf tijuana lower_california) (STV 1.0 0.9091)) +(: cnet_partof_93e02e0239 (PartOf tile tile_roof) (STV 1.0 0.9091)) +(: cnet_partof_d4fe5518ba (PartOf tiller rudder) (STV 1.0 0.9091)) +(: cnet_partof_a97cdcb17d (PartOf tilling farming) (STV 1.0 0.9091)) +(: cnet_partof_4f805d6913 (PartOf timbuktu mali) (STV 1.0 0.9091)) +(: cnet_partof_84e2f0c7c4 (PartOf time_ball timepiece) (STV 1.0 0.9091)) +(: cnet_partof_0e7a32592a (PartOf time_of_life life) (STV 1.0 0.9091)) +(: cnet_partof_702ae1ef99 (PartOf time_out athletic_game) (STV 1.0 0.9091)) +(: cnet_partof_aa2f87b9ab (PartOf time_square manhattan) (STV 1.0 0.9091)) +(: cnet_partof_03be3da8c1 (PartOf timgad algeria) (STV 1.0 0.9091)) +(: cnet_partof_56bdb62bcc (PartOf timimoun algeria) (STV 1.0 0.9091)) +(: cnet_partof_56e1e5a0c1 (PartOf timor indonesia) (STV 1.0 0.9091)) +(: cnet_partof_e5f530301e (PartOf timor_sea indian_ocean) (STV 1.0 0.9091)) +(: cnet_partof_d0005b7bf6 (PartOf timothy timothy) (STV 1.0 0.9091)) +(: cnet_partof_34f10eb724 (PartOf tine fork) (STV 1.0 0.9091)) +(: cnet_partof_9e517aa5e0 (PartOf tine pitchfork) (STV 1.0 0.9091)) +(: cnet_partof_55ecb9e8f8 (PartOf tip_off basketball) (STV 1.0 0.9091)) +(: cnet_partof_50fa177e24 (PartOf tiptoe toe) (STV 1.0 0.9091)) +(: cnet_partof_db956cf811 (PartOf tirana albania) (STV 1.0 0.9091)) +(: cnet_partof_d90ca34911 (PartOf tire car) (STV 1.0 0.9572)) +(: cnet_partof_2e33bdea3c (PartOf tirich_mir hindu_kush) (STV 1.0 0.9091)) +(: cnet_partof_776379efce (PartOf tirich_mir pakistan) (STV 1.0 0.9091)) +(: cnet_partof_fe8b912957 (PartOf tishri jewish_calendar) (STV 1.0 0.9091)) +(: cnet_partof_9bb7abf379 (PartOf tivoli italy) (STV 1.0 0.9091)) +(: cnet_partof_ff9def8aef (PartOf tobago trinidad_and_tobago) (STV 1.0 0.9091)) +(: cnet_partof_4609f1b096 (PartOf tobago west_indy) (STV 1.0 0.9091)) +(: cnet_partof_0e8fa9038c (PartOf tobit apocrypha) (STV 1.0 0.9091)) +(: cnet_partof_c7a6129e92 (PartOf tocantin brazil) (STV 1.0 0.9091)) +(: cnet_partof_c5110f0b13 (PartOf toe foot) (STV 1.0 0.9608)) +(: cnet_partof_21f8c4f3e3 (PartOf toe footwear) (STV 1.0 0.9091)) +(: cnet_partof_8866a0346e (PartOf toe hoof) (STV 1.0 0.9091)) +(: cnet_partof_b3e58f8bb4 (PartOf toe golf_club_head) (STV 1.0 0.9091)) +(: cnet_partof_26cfc3c453 (PartOf toe_box boot) (STV 1.0 0.9091)) +(: cnet_partof_4b7e1557f1 (PartOf toe_box shoe) (STV 1.0 0.9091)) +(: cnet_partof_bb7fdecfb5 (PartOf toea kina) (STV 1.0 0.9091)) +(: cnet_partof_de8d1079aa (PartOf toecap boot) (STV 1.0 0.9091)) +(: cnet_partof_18dad01ac0 (PartOf toecap shoe) (STV 1.0 0.9091)) +(: cnet_partof_ed298c3bbb (PartOf toenail toe) (STV 1.0 0.9454)) +(: cnet_partof_f7daefc6c9 (PartOf togo africa) (STV 1.0 0.9091)) +(: cnet_partof_f24476200b (PartOf toilet bathroom) (STV 1.0 0.9091)) +(: cnet_partof_8ff3b2bbe4 (PartOf toilet toilet) (STV 1.0 0.9091)) +(: cnet_partof_a64b98c521 (PartOf toilet_bowl toilet) (STV 1.0 0.9091)) +(: cnet_partof_d6f2ae69a2 (PartOf toilet_seat toilet) (STV 1.0 0.9091)) +(: cnet_partof_f058896852 (PartOf tokyo honshu) (STV 1.0 0.9091)) +(: cnet_partof_debc605590 (PartOf tokyo japan) (STV 1.0 0.9091)) +(: cnet_partof_61993ef84f (PartOf toledo ohio) (STV 1.0 0.9091)) +(: cnet_partof_6be82e2323 (PartOf toledo spain) (STV 1.0 0.9091)) +(: cnet_partof_2187777899 (PartOf tollbooth toll_plaza) (STV 1.0 0.9091)) +(: cnet_partof_3c67671b6e (PartOf tomalley lobster) (STV 1.0 0.9091)) +(: cnet_partof_1a804c3017 (PartOf tomatillo tomatillo) (STV 1.0 0.9091)) +(: cnet_partof_adc53069f4 (PartOf tomato tomato) (STV 1.0 0.9091)) +(: cnet_partof_969ab0e0a9 (PartOf tombigbee alabama) (STV 1.0 0.9091)) +(: cnet_partof_bdc32378b6 (PartOf tombigbee mississippi) (STV 1.0 0.9091)) +(: cnet_partof_5ef97e00ca (PartOf tone_arm record_player) (STV 1.0 0.9091)) +(: cnet_partof_5a1a9a0f46 (PartOf tone_system tone_language) (STV 1.0 0.9091)) +(: cnet_partof_20033c27af (PartOf tonga polynesia) (STV 1.0 0.9091)) +(: cnet_partof_9fdf2ba4bb (PartOf tongue mouth) (STV 1.0 0.9091)) +(: cnet_partof_30c8ee9a4a (PartOf tongue boot) (STV 1.0 0.9091)) +(: cnet_partof_204c6db7a9 (PartOf tongue shoe) (STV 1.0 0.9091)) +(: cnet_partof_020f6ae125 (PartOf tongue throat) (STV 1.0 0.9091)) +(: cnet_partof_0e2d49f526 (PartOf tonsil nasopharynx) (STV 1.0 0.9091)) +(: cnet_partof_978da7229d (PartOf tooth mouth) (STV 1.0 0.9339)) +(: cnet_partof_e54d83a33e (PartOf tooth comb) (STV 1.0 0.9091)) +(: cnet_partof_bff199520c (PartOf tooth gear) (STV 1.0 0.9091)) +(: cnet_partof_3567380225 (PartOf tooth power_saw) (STV 1.0 0.9091)) +(: cnet_partof_eda39f4844 (PartOf tooth saw) (STV 1.0 0.9091)) +(: cnet_partof_ab5f6460b2 (PartOf tooth_socket alveolar_ridge) (STV 1.0 0.9091)) +(: cnet_partof_d16878df5f (PartOf top ship) (STV 1.0 0.9091)) +(: cnet_partof_dfcf9ebc32 (PartOf top inning) (STV 1.0 0.9091)) +(: cnet_partof_9666ba50dd (PartOf top_billing show_bill) (STV 1.0 0.9091)) +(: cnet_partof_3188e6cbab (PartOf top_of_line line) (STV 1.0 0.9091)) +(: cnet_partof_703368e715 (PartOf topeka kansa) (STV 1.0 0.9091)) +(: cnet_partof_e18b0cfd34 (PartOf topping dish) (STV 1.0 0.9091)) +(: cnet_partof_ef018f2899 (PartOf topside ship) (STV 1.0 0.9091)) +(: cnet_partof_98d3fc56f9 (PartOf torah old_testament) (STV 1.0 0.9091)) +(: cnet_partof_a96fa91b8e (PartOf torah tanakh) (STV 1.0 0.9091)) +(: cnet_partof_0acde1541c (PartOf toronto ontario) (STV 1.0 0.9091)) +(: cnet_partof_f2dbf4ea30 (PartOf torreon mexico) (STV 1.0 0.9091)) +(: cnet_partof_49c584412d (PartOf torso body) (STV 1.0 0.9091)) +(: cnet_partof_6d40e0efd8 (PartOf tortilla wrap) (STV 1.0 0.9091)) +(: cnet_partof_aa60386871 (PartOf touch somesthesia) (STV 1.0 0.9091)) +(: cnet_partof_e14005c911 (PartOf toulon france) (STV 1.0 0.9091)) +(: cnet_partof_e741cf340f (PartOf toulouse france) (STV 1.0 0.9091)) +(: cnet_partof_71d9daff9f (PartOf tour france) (STV 1.0 0.9091)) +(: cnet_partof_6700f4bb6b (PartOf tower_of_babel babylon) (STV 1.0 0.9091)) +(: cnet_partof_8ee64924ae (PartOf tower_of_london london) (STV 1.0 0.9091)) +(: cnet_partof_cc2e61970a (PartOf toyohashi honshu) (STV 1.0 0.9091)) +(: cnet_partof_8333f3f3af (PartOf toyohashi japan) (STV 1.0 0.9091)) +(: cnet_partof_28112aef4c (PartOf toyonaki honshu) (STV 1.0 0.9091)) +(: cnet_partof_fdb49fdc3b (PartOf toyonaki japan) (STV 1.0 0.9091)) +(: cnet_partof_5341ba1583 (PartOf toyota honshu) (STV 1.0 0.9091)) +(: cnet_partof_ef02857e7f (PartOf toyota japan) (STV 1.0 0.9091)) +(: cnet_partof_b99fb6d82f (PartOf trace harness) (STV 1.0 0.9091)) +(: cnet_partof_ba34c912d9 (PartOf trachea neck) (STV 1.0 0.9091)) +(: cnet_partof_29cdb73d74 (PartOf trachea respiratory_system) (STV 1.0 0.9091)) +(: cnet_partof_29572b7cc9 (PartOf trachea upper_respiratory_tract) (STV 1.0 0.9091)) +(: cnet_partof_8ae90b5d04 (PartOf tracheid xylem) (STV 1.0 0.9091)) +(: cnet_partof_34c41d3ad8 (PartOf tracing_routine trace_program) (STV 1.0 0.9091)) +(: cnet_partof_1c0743ee92 (PartOf track track_meet) (STV 1.0 0.9091)) +(: cnet_partof_69d47d2be2 (PartOf track railroad_track) (STV 1.0 0.9091)) +(: cnet_partof_da8a7f37c8 (PartOf track tracked_vehicle) (STV 1.0 0.9091)) +(: cnet_partof_079dba5793 (PartOf track tramline) (STV 1.0 0.9091)) +(: cnet_partof_85e845cbe8 (PartOf track_and_field meet) (STV 1.0 0.9091)) +(: cnet_partof_78093d8334 (PartOf track_event track_meet) (STV 1.0 0.9091)) +(: cnet_partof_fc95843fd7 (PartOf tract_house tract_housing) (STV 1.0 0.9091)) +(: cnet_partof_b9cc79d61d (PartOf trafalgar napoleonic_war) (STV 1.0 0.9091)) +(: cnet_partof_abe401ddf5 (PartOf trafalgar_square london) (STV 1.0 0.9091)) +(: cnet_partof_ceca3398df (PartOf traffic_circle road) (STV 1.0 0.9091)) +(: cnet_partof_af84d68a0f (PartOf traffic_island roadbed) (STV 1.0 0.9091)) +(: cnet_partof_e69f9a6a2a (PartOf traffic_lane highway) (STV 1.0 0.9091)) +(: cnet_partof_338140b512 (PartOf tragus auricle) (STV 1.0 0.9091)) +(: cnet_partof_5aabb28932 (PartOf trailer trailer_truck) (STV 1.0 0.9091)) +(: cnet_partof_2e9c4fe423 (PartOf trailing_edge airfoil) (STV 1.0 0.9091)) +(: cnet_partof_b270505ae6 (PartOf train gown) (STV 1.0 0.9091)) +(: cnet_partof_a4ad47c55f (PartOf training_table mess) (STV 1.0 0.9091)) +(: cnet_partof_08cbb2a0c1 (PartOf trait personality) (STV 1.0 0.9091)) +(: cnet_partof_14dfefc1f7 (PartOf transcaucasia caucasia) (STV 1.0 0.9091)) +(: cnet_partof_dba7ecff73 (PartOf transept church) (STV 1.0 0.9091)) +(: cnet_partof_6f2aaea2bf (PartOf transit_line public_transit) (STV 1.0 0.9091)) +(: cnet_partof_2328990645 (PartOf transmission drive_line) (STV 1.0 0.9091)) +(: cnet_partof_1ae9968cb8 (PartOf transmission_control_protocol transmission_control_protocol_internet_protocol) (STV 1.0 0.9091)) +(: cnet_partof_03da551f7e (PartOf transmission_shaft gearbox) (STV 1.0 0.9091)) +(: cnet_partof_efe0aca9d8 (PartOf transport_system plant) (STV 1.0 0.9091)) +(: cnet_partof_17f921656d (PartOf transportation commerce) (STV 1.0 0.9091)) +(: cnet_partof_1a78b3f84b (PartOf transportation_safety_administration department_of_transportation) (STV 1.0 0.9091)) +(: cnet_partof_8640c1b89a (PartOf transportation_system infrastructure) (STV 1.0 0.9091)) +(: cnet_partof_2f068f7e4a (PartOf transvaal south_africa) (STV 1.0 0.9091)) +(: cnet_partof_f673a99a25 (PartOf transverse_colon large_intestine) (STV 1.0 0.9091)) +(: cnet_partof_14176d3728 (PartOf transverse_process vertebra) (STV 1.0 0.9091)) +(: cnet_partof_b7318fb9d4 (PartOf transylvania romania) (STV 1.0 0.9091)) +(: cnet_partof_9e1ac32ea1 (PartOf transylvanian_alp carpathian) (STV 1.0 0.9091)) +(: cnet_partof_4fef5ce3b8 (PartOf transylvanian_alp romania) (STV 1.0 0.9091)) +(: cnet_partof_bf8e8dd4e2 (PartOf traversal skiing) (STV 1.0 0.9091)) +(: cnet_partof_698a0c8fde (PartOf traverse_city michigan) (STV 1.0 0.9091)) +(: cnet_partof_504f3127f2 (PartOf tread pneumatic_tire) (STV 1.0 0.9091)) +(: cnet_partof_a9cca1110e (PartOf tread step) (STV 1.0 0.9091)) +(: cnet_partof_1886b86957 (PartOf tree forest) (STV 1.0 0.9572)) +(: cnet_partof_d5cfc42388 (PartOf tree forrest) (STV 1.0 0.9091)) +(: cnet_partof_a509bce223 (PartOf tremor paralysis_agitan) (STV 1.0 0.9091)) +(: cnet_partof_5dd821159b (PartOf trench entrenchment) (STV 1.0 0.9091)) +(: cnet_partof_f120d62fe2 (PartOf trent england) (STV 1.0 0.9091)) +(: cnet_partof_5a55a543cf (PartOf trentino_alto_adige italy) (STV 1.0 0.9091)) +(: cnet_partof_5f3364b01e (PartOf trento trentino_alto_adige) (STV 1.0 0.9091)) +(: cnet_partof_ef92f20c95 (PartOf trenton new_jersey) (STV 1.0 0.9091)) +(: cnet_partof_f4cd4981de (PartOf trestle bridge) (STV 1.0 0.9091)) +(: cnet_partof_89637dcedf (PartOf trestle trestle_table) (STV 1.0 0.9091)) +(: cnet_partof_22c556f75f (PartOf triassic mesozoic) (STV 1.0 0.9091)) +(: cnet_partof_374aaef8b6 (PartOf tricep_brachii arm) (STV 1.0 0.9091)) +(: cnet_partof_4078b4891e (PartOf trichion brow) (STV 1.0 0.9091)) +(: cnet_partof_a50a72afab (PartOf trigger gun) (STV 1.0 0.9524)) +(: cnet_partof_6d07f6ba54 (PartOf trimester academic_year) (STV 1.0 0.9091)) +(: cnet_partof_295983da2a (PartOf trimester gestation) (STV 1.0 0.9091)) +(: cnet_partof_b34dca319c (PartOf trimester school_year) (STV 1.0 0.9091)) +(: cnet_partof_01ce20641e (PartOf trinidad trinidad_and_tobago) (STV 1.0 0.9091)) +(: cnet_partof_40695bb85b (PartOf trinidad west_indy) (STV 1.0 0.9091)) +(: cnet_partof_491b3c7dad (PartOf trinidad_and_tobago caribbean) (STV 1.0 0.9091)) +(: cnet_partof_6e16c13344 (PartOf trinity_river texa) (STV 1.0 0.9091)) +(: cnet_partof_04b818dca9 (PartOf triple_frontier argentina) (STV 1.0 0.9091)) +(: cnet_partof_887fa0079f (PartOf triple_frontier brazil) (STV 1.0 0.9091)) +(: cnet_partof_0c2fe5f26e (PartOf triple_frontier paraguay) (STV 1.0 0.9091)) +(: cnet_partof_e6e144884c (PartOf tripoli lebanon) (STV 1.0 0.9091)) +(: cnet_partof_5952329819 (PartOf tripoli libya) (STV 1.0 0.9091)) +(: cnet_partof_6ff8195612 (PartOf trochanter femur) (STV 1.0 0.9091)) +(: cnet_partof_05d205a7bf (PartOf trondheim norway) (STV 1.0 0.9091)) +(: cnet_partof_2def19f24e (PartOf trondheim_fjord norway) (STV 1.0 0.9091)) +(: cnet_partof_645a8fa205 (PartOf trophoblast blastosphere) (STV 1.0 0.9091)) +(: cnet_partof_a01d089c84 (PartOf tropopause troposphere) (STV 1.0 0.9091)) +(: cnet_partof_28d7ea1331 (PartOf troposphere atmosphere) (STV 1.0 0.9091)) +(: cnet_partof_8e4ffbf998 (PartOf trotter hog) (STV 1.0 0.9091)) +(: cnet_partof_e252641162 (PartOf trotter sheep) (STV 1.0 0.9091)) +(: cnet_partof_01f6a83641 (PartOf trouser pair_of_trouser) (STV 1.0 0.9091)) +(: cnet_partof_ae5d013dbc (PartOf trouser_cuff pair_of_trouser) (STV 1.0 0.9091)) +(: cnet_partof_888a982e8f (PartOf troy asia_minor) (STV 1.0 0.9091)) +(: cnet_partof_40ebffde86 (PartOf troy_unit troy) (STV 1.0 0.9091)) +(: cnet_partof_f6fd1697d7 (PartOf trunk automobile) (STV 1.0 0.9091)) +(: cnet_partof_c5c873b8c0 (PartOf trunk tree) (STV 1.0 0.9091)) +(: cnet_partof_477e75fe69 (PartOf trunk_lid trunk) (STV 1.0 0.9091)) +(: cnet_partof_5add767db8 (PartOf truss truss_bridge) (STV 1.0 0.9091)) +(: cnet_partof_0becd8f67b (PartOf tsushima russo_japanese_war) (STV 1.0 0.9091)) +(: cnet_partof_2aae69eac9 (PartOf tuamotu_archipelago french_polynesia) (STV 1.0 0.9091)) +(: cnet_partof_c897da3d20 (PartOf tube circuit) (STV 1.0 0.9091)) +(: cnet_partof_fb0d5a16f8 (PartOf tube_foot echinoderm) (STV 1.0 0.9091)) +(: cnet_partof_d9e33e4f3d (PartOf tubuai_island french_polynesia) (STV 1.0 0.9091)) +(: cnet_partof_64a777f45d (PartOf tucson arizona) (STV 1.0 0.9091)) +(: cnet_partof_e87ffc3daf (PartOf tugela natal) (STV 1.0 0.9091)) +(: cnet_partof_38b4da37ae (PartOf tuilery paris) (STV 1.0 0.9091)) +(: cnet_partof_659251ed49 (PartOf tuille body_armor) (STV 1.0 0.9091)) +(: cnet_partof_ba6d5568f4 (PartOf tulsa oklahoma) (STV 1.0 0.9091)) +(: cnet_partof_be06f17ca5 (PartOf tumbler lock) (STV 1.0 0.9091)) +(: cnet_partof_a452d30874 (PartOf tuna tuna) (STV 1.0 0.9091)) +(: cnet_partof_aa0b94fb50 (PartOf tuner tv) (STV 1.0 0.9091)) +(: cnet_partof_a57e35363d (PartOf tunis tunisia) (STV 1.0 0.9091)) +(: cnet_partof_4ea62c092a (PartOf tunisia maghreb) (STV 1.0 0.9091)) +(: cnet_partof_195899d75f (PartOf tunisian_dirham tunisian_dinar) (STV 1.0 0.9091)) +(: cnet_partof_a213b5fc52 (PartOf tupelo mississippi) (STV 1.0 0.9091)) +(: cnet_partof_9d6a913ec1 (PartOf tupungatito chile) (STV 1.0 0.9091)) +(: cnet_partof_b9c38148d1 (PartOf tupungato ande) (STV 1.0 0.9091)) +(: cnet_partof_b8a542aa07 (PartOf tupungato argentina) (STV 1.0 0.9091)) +(: cnet_partof_04532f64d3 (PartOf tupungato chile) (STV 1.0 0.9091)) +(: cnet_partof_dcc80abc4d (PartOf turban_squash turban_squash) (STV 1.0 0.9091)) +(: cnet_partof_add331018e (PartOf turbinate_bone nose) (STV 1.0 0.9091)) +(: cnet_partof_b871d57f22 (PartOf turbogenerator power_station) (STV 1.0 0.9091)) +(: cnet_partof_7928b6da7e (PartOf turbojet propjet) (STV 1.0 0.9091)) +(: cnet_partof_01acd69330 (PartOf turbojet turbojet) (STV 1.0 0.9091)) +(: cnet_partof_212dbc1b1a (PartOf turbot turbot) (STV 1.0 0.9091)) +(: cnet_partof_64b750e77a (PartOf turin piedmont) (STV 1.0 0.9091)) +(: cnet_partof_c1d3f07c15 (PartOf turkestan_desert turkmenistan) (STV 1.0 0.9091)) +(: cnet_partof_4b523c0e24 (PartOf turkey asia_minor) (STV 1.0 0.9091)) +(: cnet_partof_401901578d (PartOf turkey balkan_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_77bfd7b53a (PartOf turkey middle_east) (STV 1.0 0.9091)) +(: cnet_partof_4aa40698d8 (PartOf turkey_wing turkey) (STV 1.0 0.9091)) +(: cnet_partof_d948b148e8 (PartOf turkistan asia) (STV 1.0 0.9091)) +(: cnet_partof_d11c4b52c7 (PartOf turkmenistan asia) (STV 1.0 0.9091)) +(: cnet_partof_11674cca5e (PartOf turmeric turmeric) (STV 1.0 0.9091)) +(: cnet_partof_ebd8922150 (PartOf turn playing_period) (STV 1.0 0.9091)) +(: cnet_partof_9651cdf2a9 (PartOf turnaround driveway) (STV 1.0 0.9091)) +(: cnet_partof_e0c95a2d0f (PartOf turnaround road) (STV 1.0 0.9091)) +(: cnet_partof_ee18447795 (PartOf turnip turnip_plant) (STV 1.0 0.9091)) +(: cnet_partof_f95918dc30 (PartOf turnip_green turnip) (STV 1.0 0.9091)) +(: cnet_partof_1aaace62a0 (PartOf turnout road) (STV 1.0 0.9091)) +(: cnet_partof_65d80989a5 (PartOf turntable record_player) (STV 1.0 0.9091)) +(: cnet_partof_eac7ce9e0b (PartOf turret castle) (STV 1.0 0.9091)) +(: cnet_partof_bce66b189d (PartOf turtleneck_collar turtleneck) (STV 1.0 0.9091)) +(: cnet_partof_0f502999f5 (PartOf tuscaloosa alabama) (STV 1.0 0.9091)) +(: cnet_partof_bfdde422eb (PartOf tuscany italy) (STV 1.0 0.9091)) +(: cnet_partof_364e38b94b (PartOf tusk elephant) (STV 1.0 0.9091)) +(: cnet_partof_cde39d5dc8 (PartOf tusk tusker) (STV 1.0 0.9091)) +(: cnet_partof_6cce0564a6 (PartOf tusk wild_boar) (STV 1.0 0.9091)) +(: cnet_partof_018382d887 (PartOf tuskegee alabama) (STV 1.0 0.9091)) +(: cnet_partof_467db44c76 (PartOf tuvalu micronesia) (STV 1.0 0.9091)) +(: cnet_partof_73f75def24 (PartOf tuvalu tuvalu) (STV 1.0 0.9091)) +(: cnet_partof_76f0586e8a (PartOf tuxtla_gutierrez mexico) (STV 1.0 0.9091)) +(: cnet_partof_99a45491e6 (PartOf twelfth_night january) (STV 1.0 0.9091)) +(: cnet_partof_81b1746d52 (PartOf twenty adulthood) (STV 1.0 0.9091)) +(: cnet_partof_1c298fe789 (PartOf twilight evening) (STV 1.0 0.9091)) +(: cnet_partof_ea1e18a249 (PartOf twin snake) (STV 1.0 0.9091)) +(: cnet_partof_8855d2ff76 (PartOf twin united_state) (STV 1.0 0.9091)) +(: cnet_partof_97d1d4df20 (PartOf twin_city minnesota) (STV 1.0 0.9091)) +(: cnet_partof_33704de100 (PartOf twin_fall idaho) (STV 1.0 0.9091)) +(: cnet_partof_e3bb7394bb (PartOf tyler texa) (STV 1.0 0.9091)) +(: cnet_partof_f249d49d64 (PartOf tympanic_bone temporal_bone) (STV 1.0 0.9091)) +(: cnet_partof_f9536a4b99 (PartOf tyne england) (STV 1.0 0.9091)) +(: cnet_partof_aad7985715 (PartOf typewriter_carriage typewriter) (STV 1.0 0.9091)) +(: cnet_partof_92d15df5ba (PartOf typewriter_keyboard typewriter) (STV 1.0 0.9091)) +(: cnet_partof_7b49d58616 (PartOf tyrol austria) (STV 1.0 0.9091)) +(: cnet_partof_daad5c8304 (PartOf tyrol italy) (STV 1.0 0.9091)) +(: cnet_partof_4a07d83f63 (PartOf tyrolean_alp alp) (STV 1.0 0.9091)) +(: cnet_partof_63a90daaec (PartOf tyrolean_alp austria) (STV 1.0 0.9091)) +(: cnet_partof_6923d45cf5 (PartOf tyrolean_alp italy) (STV 1.0 0.9091)) +(: cnet_partof_c1d25bbd6d (PartOf tyrrhenian_sea mediterranean) (STV 1.0 0.9091)) +(: cnet_partof_44599ab839 (PartOf udder cow) (STV 1.0 0.9091)) +(: cnet_partof_3efa92582e (PartOf udder ewe) (STV 1.0 0.9091)) +(: cnet_partof_6fdbc98885 (PartOf udder nanny) (STV 1.0 0.9091)) +(: cnet_partof_0829389f97 (PartOf ufa russia) (STV 1.0 0.9091)) +(: cnet_partof_471566a57e (PartOf uganda africa) (STV 1.0 0.9091)) +(: cnet_partof_23a3b88b48 (PartOf uganda east_africa) (STV 1.0 0.9091)) +(: cnet_partof_2e519e7b10 (PartOf ukraine europe) (STV 1.0 0.9091)) +(: cnet_partof_401ac9b9fb (PartOf ulan_bator mongolia) (STV 1.0 0.9091)) +(: cnet_partof_3992d63f32 (PartOf ulna forearm) (STV 1.0 0.9091)) +(: cnet_partof_150cb707de (PartOf ulnar_nerve arm) (STV 1.0 0.9091)) +(: cnet_partof_fa405730c9 (PartOf ulnar_vein forearm) (STV 1.0 0.9091)) +(: cnet_partof_6b66b07466 (PartOf ultrahigh_frequency electromagnetic_spectrum) (STV 1.0 0.9091)) +(: cnet_partof_15258b01c7 (PartOf ultraviolet_spectrum electromagnetic_spectrum) (STV 1.0 0.9091)) +(: cnet_partof_ddb89bf588 (PartOf ulugh_muztagh kunlun) (STV 1.0 0.9091)) +(: cnet_partof_d3aa29c9ee (PartOf umbilical_cord embryo) (STV 1.0 0.9091)) +(: cnet_partof_f0f6ceab1c (PartOf umbilical_cord fetus) (STV 1.0 0.9091)) +(: cnet_partof_a2f3025655 (PartOf umbilical_vein umbilical_cord) (STV 1.0 0.9091)) +(: cnet_partof_f7fde20db2 (PartOf umbo eardrum) (STV 1.0 0.9091)) +(: cnet_partof_46c9d9555e (PartOf umbria italy) (STV 1.0 0.9091)) +(: cnet_partof_5c96961372 (PartOf uncheerfulness disposition) (STV 1.0 0.9091)) +(: cnet_partof_e28f41a9d8 (PartOf uncle family) (STV 1.0 0.9091)) +(: cnet_partof_6355f7f794 (PartOf uncompahgre_peak san_juan_mountain) (STV 1.0 0.9091)) +(: cnet_partof_27ccaae185 (PartOf underpant pantyhose) (STV 1.0 0.9091)) +(: cnet_partof_9b769293ea (PartOf undertide tide) (STV 1.0 0.9091)) +(: cnet_partof_adc8790850 (PartOf undescended_testis cryptorchidy) (STV 1.0 0.9091)) +(: cnet_partof_615a457664 (PartOf union labor_movement) (STV 1.0 0.9091)) +(: cnet_partof_44a2fa7be8 (PartOf united_arab_emirate arabian_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_6872ef880f (PartOf united_arab_emirate asia) (STV 1.0 0.9091)) +(: cnet_partof_33273340de (PartOf united_arab_emirate gulf_state) (STV 1.0 0.9091)) +(: cnet_partof_ad23c5a8b4 (PartOf united_kingdom british_isle) (STV 1.0 0.9091)) +(: cnet_partof_9bc01e555d (PartOf united_nation_day october) (STV 1.0 0.9091)) +(: cnet_partof_e9990a5914 (PartOf united_state north_america) (STV 1.0 0.9091)) +(: cnet_partof_0c0d16dbe5 (PartOf united_state_air_force department_of_defense) (STV 1.0 0.9091)) +(: cnet_partof_351f983f08 (PartOf united_state_air_force_academy united_state_air_force) (STV 1.0 0.9091)) +(: cnet_partof_547eb7cca2 (PartOf united_state_army department_of_defense) (STV 1.0 0.9091)) +(: cnet_partof_2d1d1d8604 (PartOf united_state_army_criminal_investigation_laboratory criminal_investigation_command) (STV 1.0 0.9091)) +(: cnet_partof_886f1e0444 (PartOf united_state_army_ranger united_state_army) (STV 1.0 0.9091)) +(: cnet_partof_e604156b0a (PartOf united_state_border_patrol immigration_and_naturalization_service) (STV 1.0 0.9091)) +(: cnet_partof_9090637ddb (PartOf united_state_coast_guard department_of_transportation) (STV 1.0 0.9091)) +(: cnet_partof_41ba8d15c4 (PartOf united_state_fish_and_wildlife_service department_of_interior) (STV 1.0 0.9091)) +(: cnet_partof_f5b8092553 (PartOf united_state_government_printing_office legislative_branch) (STV 1.0 0.9091)) +(: cnet_partof_03f0060a41 (PartOf united_state_marine_corp united_state_navy) (STV 1.0 0.9091)) +(: cnet_partof_56ca0b6390 (PartOf united_state_marshal_service department_of_justice) (STV 1.0 0.9091)) +(: cnet_partof_7985e0a64e (PartOf united_state_military_academy united_state_army) (STV 1.0 0.9091)) +(: cnet_partof_e5cc9ccb0d (PartOf united_state_mint department_of_treasury) (STV 1.0 0.9091)) +(: cnet_partof_794c6feb10 (PartOf united_state_naval_academy united_state_navy) (STV 1.0 0.9091)) +(: cnet_partof_897f0ef8ba (PartOf united_state_navy department_of_defense) (STV 1.0 0.9091)) +(: cnet_partof_de6bca2318 (PartOf united_state_postal_inspection_service united_state_postal_service) (STV 1.0 0.9091)) +(: cnet_partof_0321558bdf (PartOf united_state_president executive_branch) (STV 1.0 0.9091)) +(: cnet_partof_70e951b8b7 (PartOf united_state_public_health_service department_of_health_and_human_service) (STV 1.0 0.9091)) +(: cnet_partof_aad195848c (PartOf united_state_secret_service homeland_security) (STV 1.0 0.9091)) +(: cnet_partof_d9669c7181 (PartOf united_state_virgin_island virgin_island) (STV 1.0 0.9091)) +(: cnet_partof_629e91d7fc (PartOf universal_joint drive_line) (STV 1.0 0.9091)) +(: cnet_partof_131300cc6a (PartOf university academia) (STV 1.0 0.9091)) +(: cnet_partof_b018a56773 (PartOf university_of_california_at_berkeley berkeley) (STV 1.0 0.9091)) +(: cnet_partof_71305e1700 (PartOf university_of_chicago chicago) (STV 1.0 0.9091)) +(: cnet_partof_f841d990e6 (PartOf university_of_michigan ann_arbor) (STV 1.0 0.9091)) +(: cnet_partof_3d92ee4dd0 (PartOf university_of_nebraska lincoln) (STV 1.0 0.9091)) +(: cnet_partof_da34d6a893 (PartOf university_of_north_carolina chapel_hill) (STV 1.0 0.9091)) +(: cnet_partof_158e127bd9 (PartOf university_of_pennsylvania pennsylvania) (STV 1.0 0.9091)) +(: cnet_partof_2056b35dbb (PartOf university_of_pittsburgh pittsburgh) (STV 1.0 0.9091)) +(: cnet_partof_dc76e84dd1 (PartOf university_of_sussex east_sussex) (STV 1.0 0.9091)) +(: cnet_partof_1fa1e7dec5 (PartOf university_of_texa austin) (STV 1.0 0.9091)) +(: cnet_partof_b707f9fcd0 (PartOf university_of_vermont burlington) (STV 1.0 0.9091)) +(: cnet_partof_52a7f21973 (PartOf university_of_washington seattle) (STV 1.0 0.9091)) +(: cnet_partof_7d69f6fd0c (PartOf university_of_west_virginia morgantown) (STV 1.0 0.9091)) +(: cnet_partof_5105af8f94 (PartOf university_of_wisconsin madison) (STV 1.0 0.9091)) +(: cnet_partof_b10fc3dcf2 (PartOf upholstery seat) (STV 1.0 0.9091)) +(: cnet_partof_a1e368357c (PartOf upper boot) (STV 1.0 0.9091)) +(: cnet_partof_23a8dbde6c (PartOf upper shoe) (STV 1.0 0.9091)) +(: cnet_partof_95f8723515 (PartOf upper_egypt egypt) (STV 1.0 0.9091)) +(: cnet_partof_4e43572539 (PartOf upper_mantle mantle) (STV 1.0 0.9091)) +(: cnet_partof_222bb36ece (PartOf upper_paleolithic paleolithic_age) (STV 1.0 0.9091)) +(: cnet_partof_0fbc119b8e (PartOf upper_peninsula michigan) (STV 1.0 0.9091)) +(: cnet_partof_4698588887 (PartOf upper_tunguska siberia) (STV 1.0 0.9091)) +(: cnet_partof_6e5b76a74c (PartOf uppsala sweden) (STV 1.0 0.9091)) +(: cnet_partof_3b1bd9c926 (PartOf upright goalpost) (STV 1.0 0.9091)) +(: cnet_partof_b013979ff7 (PartOf upstage stage) (STV 1.0 0.9091)) +(: cnet_partof_9fb6c691d8 (PartOf upstair building) (STV 1.0 0.9091)) +(: cnet_partof_34db668344 (PartOf uptown city) (STV 1.0 0.9091)) +(: cnet_partof_8c651ac97e (PartOf ur sumer) (STV 1.0 0.9091)) +(: cnet_partof_6108b50274 (PartOf ural russia) (STV 1.0 0.9091)) +(: cnet_partof_0d4b48928d (PartOf urbana illinois) (STV 1.0 0.9091)) +(: cnet_partof_265dee3582 (PartOf ureter urinary_tract) (STV 1.0 0.9091)) +(: cnet_partof_b2bd887c9a (PartOf ureter urogenital_system) (STV 1.0 0.9091)) +(: cnet_partof_2a0df3bde4 (PartOf urethra penis) (STV 1.0 0.9091)) +(: cnet_partof_100c9653be (PartOf urethra urinary_tract) (STV 1.0 0.9091)) +(: cnet_partof_c1cc3671a0 (PartOf urethra urogenital_system) (STV 1.0 0.9091)) +(: cnet_partof_1dd4f65c08 (PartOf urethra vulva) (STV 1.0 0.9091)) +(: cnet_partof_9745f8aeb0 (PartOf urethral_orifice urethra) (STV 1.0 0.9091)) +(: cnet_partof_dc0cb0ac9b (PartOf urethral_orifice vagina) (STV 1.0 0.9091)) +(: cnet_partof_15e825d909 (PartOf urethral_sphincter urethra) (STV 1.0 0.9091)) +(: cnet_partof_7bce0a89e7 (PartOf urinary_bladder urinary_tract) (STV 1.0 0.9091)) +(: cnet_partof_1ad24a8312 (PartOf urinary_bladder urogenital_system) (STV 1.0 0.9091)) +(: cnet_partof_bd756bede9 (PartOf urinary_tract urogenital_system) (STV 1.0 0.9091)) +(: cnet_partof_cf44e1d690 (PartOf uropygial_gland bird) (STV 1.0 0.9091)) +(: cnet_partof_e624c349f4 (PartOf uropygium bird) (STV 1.0 0.9091)) +(: cnet_partof_8a345ad927 (PartOf urubupunga brazil) (STV 1.0 0.9091)) +(: cnet_partof_02b258d698 (PartOf urubupunga parana) (STV 1.0 0.9091)) +(: cnet_partof_4727f39dbd (PartOf uruguay south_america) (STV 1.0 0.9091)) +(: cnet_partof_121fa3b620 (PartOf uruguay_potato uruguay_potato) (STV 1.0 0.9091)) +(: cnet_partof_fef237430a (PartOf uruguay_river south_america) (STV 1.0 0.9091)) +(: cnet_partof_57aafa4771 (PartOf utah united_state) (STV 1.0 0.9091)) +(: cnet_partof_2c776d0f6d (PartOf uterine_artery uterus) (STV 1.0 0.9091)) +(: cnet_partof_645c10c3f7 (PartOf uterine_cavity uterus) (STV 1.0 0.9091)) +(: cnet_partof_8a0efc0b99 (PartOf uterine_contraction parturiency) (STV 1.0 0.9091)) +(: cnet_partof_7771857e74 (PartOf uterus female_reproductive_system) (STV 1.0 0.9091)) +(: cnet_partof_6ada202362 (PartOf utica new_york) (STV 1.0 0.9091)) +(: cnet_partof_6fd1c33ef5 (PartOf utica phoenicia) (STV 1.0 0.9091)) +(: cnet_partof_809809f65f (PartOf utility_routine utility_program) (STV 1.0 0.9091)) +(: cnet_partof_6c4eb8278d (PartOf utrecht netherland) (STV 1.0 0.9091)) +(: cnet_partof_5d71835e82 (PartOf utricle membranous_labyrinth) (STV 1.0 0.9091)) +(: cnet_partof_eefcedd857 (PartOf uttar_pradesh india) (STV 1.0 0.9091)) +(: cnet_partof_5cfbd17e27 (PartOf uvea eye) (STV 1.0 0.9091)) +(: cnet_partof_3bcb2dc055 (PartOf uveoscleral_pathway eye) (STV 1.0 0.9091)) +(: cnet_partof_96b8a20560 (PartOf uvula soft_palate) (STV 1.0 0.9091)) +(: cnet_partof_0fd7ca2359 (PartOf uzbekistan asia) (STV 1.0 0.9091)) +(: cnet_partof_6f70dd6d84 (PartOf vacuole cell) (STV 1.0 0.9091)) +(: cnet_partof_f092dde860 (PartOf vaduz liechtenstein) (STV 1.0 0.9091)) +(: cnet_partof_555146fd4e (PartOf vagina female_genitalia) (STV 1.0 0.9091)) +(: cnet_partof_ad4443d94c (PartOf vagina female_reproductive_system) (STV 1.0 0.9091)) +(: cnet_partof_e8327dea1c (PartOf vaginal_artery vagina) (STV 1.0 0.9091)) +(: cnet_partof_9478505169 (PartOf vaginitis candidiasis) (STV 1.0 0.9091)) +(: cnet_partof_686b7daa3e (PartOf valdez alaska) (STV 1.0 0.9091)) +(: cnet_partof_f3c0c89971 (PartOf valdosta georgia) (STV 1.0 0.9091)) +(: cnet_partof_9857dde2a0 (PartOf valencia spain) (STV 1.0 0.9091)) +(: cnet_partof_1d879fcfa6 (PartOf valencia venezuela) (STV 1.0 0.9091)) +(: cnet_partof_73328d8e0d (PartOf valencienne france) (STV 1.0 0.9091)) +(: cnet_partof_945b35b8dc (PartOf valentine_day february) (STV 1.0 0.9091)) +(: cnet_partof_28d11587dc (PartOf valle_d_aosta italy) (STV 1.0 0.9091)) +(: cnet_partof_218d5c3e4a (PartOf valletta malta) (STV 1.0 0.9091)) +(: cnet_partof_7aebe48f02 (PartOf valparaiso chile) (STV 1.0 0.9091)) +(: cnet_partof_1b4232dc3f (PartOf valve brass) (STV 1.0 0.9091)) +(: cnet_partof_2403d06504 (PartOf valve heart) (STV 1.0 0.9091)) +(: cnet_partof_612be94e9e (PartOf vambrace body_armor) (STV 1.0 0.9091)) +(: cnet_partof_37bca58ffd (PartOf vamp upper) (STV 1.0 0.9091)) +(: cnet_partof_202103ba63 (PartOf van_allen_belt earth) (STV 1.0 0.9091)) +(: cnet_partof_d440e78d68 (PartOf vancouver british_columbia) (STV 1.0 0.9091)) +(: cnet_partof_a0af32cfb8 (PartOf vancouver washington) (STV 1.0 0.9091)) +(: cnet_partof_2c7c3c03c7 (PartOf vancouver_island british_columbia) (STV 1.0 0.9091)) +(: cnet_partof_e91569358c (PartOf vane feather) (STV 1.0 0.9091)) +(: cnet_partof_15c6989c0f (PartOf vane arrow) (STV 1.0 0.9091)) +(: cnet_partof_572865f3a8 (PartOf vane missile) (STV 1.0 0.9091)) +(: cnet_partof_8349d490e2 (PartOf vanilla_bean vanilla_orchid) (STV 1.0 0.9091)) +(: cnet_partof_4d501fd031 (PartOf vanishing_point perspective) (STV 1.0 0.9091)) +(: cnet_partof_4a07fcb1eb (PartOf vanua_levu fiji_island) (STV 1.0 0.9091)) +(: cnet_partof_0f815242c9 (PartOf vanuatu melanesia) (STV 1.0 0.9091)) +(: cnet_partof_99ccc96182 (PartOf variety specy) (STV 1.0 0.9091)) +(: cnet_partof_0d04835a2e (PartOf varna bulgaria) (STV 1.0 0.9091)) +(: cnet_partof_ac8caae317 (PartOf vas_deferen male_reproductive_system) (STV 1.0 0.9091)) +(: cnet_partof_dd8118f1ce (PartOf vas_deferen seminal_duct) (STV 1.0 0.9091)) +(: cnet_partof_e3bf404415 (PartOf vas_deferen testis) (STV 1.0 0.9091)) +(: cnet_partof_be15bdb87e (PartOf vasa_efferentia epididymis) (STV 1.0 0.9091)) +(: cnet_partof_ac0a057231 (PartOf vascular_system body) (STV 1.0 0.9091)) +(: cnet_partof_fd249263e7 (PartOf vascular_system vascular_plant) (STV 1.0 0.9091)) +(: cnet_partof_7ad48f1653 (PartOf vascular_tissue vascular_plant) (STV 1.0 0.9091)) +(: cnet_partof_919f71b8f0 (PartOf vascular_tissue vascular_system) (STV 1.0 0.9091)) +(: cnet_partof_21ab289814 (PartOf vatican vatican_city) (STV 1.0 0.9091)) +(: cnet_partof_6bb6054e28 (PartOf vatican_city holy_see) (STV 1.0 0.9091)) +(: cnet_partof_cf58a15363 (PartOf vault bank) (STV 1.0 0.9091)) +(: cnet_partof_df8ebdf045 (PartOf veadar jewish_calendar) (STV 1.0 0.9091)) +(: cnet_partof_32547d713b (PartOf veal calf) (STV 1.0 0.9091)) +(: cnet_partof_29cb7ab90c (PartOf vegetable herb) (STV 1.0 0.9091)) +(: cnet_partof_b689467914 (PartOf vein circulatory_system) (STV 1.0 0.9091)) +(: cnet_partof_b8b1f00f55 (PartOf vela argo) (STV 1.0 0.9091)) +(: cnet_partof_da95e03c40 (PartOf vena_bulbi_penis penis) (STV 1.0 0.9091)) +(: cnet_partof_007e407ee2 (PartOf venae_interlobulare_hepatis liver) (STV 1.0 0.9091)) +(: cnet_partof_df332e61e8 (PartOf venae_interlobulare_renis kidney) (STV 1.0 0.9091)) +(: cnet_partof_2e52530601 (PartOf venae_palpebrale eyebrow) (STV 1.0 0.9091)) +(: cnet_partof_c45a5131f2 (PartOf venae_renis kidney) (STV 1.0 0.9091)) +(: cnet_partof_e6e6c509f4 (PartOf venation leaf) (STV 1.0 0.9091)) +(: cnet_partof_6fbfa69204 (PartOf venation circulatory_system) (STV 1.0 0.9091)) +(: cnet_partof_45ce88b903 (PartOf vendemiaire revolutionary_calendar) (STV 1.0 0.9091)) +(: cnet_partof_9ab188967b (PartOf veneto italy) (STV 1.0 0.9091)) +(: cnet_partof_f1116ea574 (PartOf venezuela south_america) (STV 1.0 0.9091)) +(: cnet_partof_cd6e61d75e (PartOf venice veneto) (STV 1.0 0.9091)) +(: cnet_partof_0335bce4dc (PartOf vent air_passage) (STV 1.0 0.9091)) +(: cnet_partof_e425f67d9e (PartOf ventilation_shaft ventilation) (STV 1.0 0.9091)) +(: cnet_partof_c3c837761d (PartOf ventilator ventilation) (STV 1.0 0.9091)) +(: cnet_partof_3d95ad0eb1 (PartOf ventose revolutionary_calendar) (STV 1.0 0.9091)) +(: cnet_partof_ea1c214474 (PartOf ventricle brain) (STV 1.0 0.9091)) +(: cnet_partof_4c8c5706ff (PartOf ventricular_septal_defect tetralogy_of_fallot) (STV 1.0 0.9091)) +(: cnet_partof_f3c384d596 (PartOf venturi carburetor) (STV 1.0 0.9091)) +(: cnet_partof_98e0be9b73 (PartOf veracruz mexico) (STV 1.0 0.9091)) +(: cnet_partof_05f17428d1 (PartOf verb predicate) (STV 1.0 0.9091)) +(: cnet_partof_e08de7240b (PartOf verb sentence) (STV 1.0 0.9339)) +(: cnet_partof_ae42acc327 (PartOf verb verb) (STV 1.0 0.9091)) +(: cnet_partof_ba38f2d447 (PartOf verdun world_war_i) (STV 1.0 0.9091)) +(: cnet_partof_cf671fbbe9 (PartOf vermis cerebellum) (STV 1.0 0.9091)) +(: cnet_partof_0e4835c33a (PartOf vermont new_england) (STV 1.0 0.9091)) +(: cnet_partof_8283e9125f (PartOf vermont united_state) (STV 1.0 0.9091)) +(: cnet_partof_6c872a4a53 (PartOf vernal_equinox march) (STV 1.0 0.9091)) +(: cnet_partof_e9919aed5c (PartOf vernal_equinox spring) (STV 1.0 0.9091)) +(: cnet_partof_74769e611d (PartOf vernation leaf_bud) (STV 1.0 0.9091)) +(: cnet_partof_ea3df76f8c (PartOf verona veneto) (STV 1.0 0.9091)) +(: cnet_partof_068f0793be (PartOf verrazano_narrow new_york) (STV 1.0 0.9091)) +(: cnet_partof_03869a71b8 (PartOf verrazano_narrow_bridge new_york) (STV 1.0 0.9091)) +(: cnet_partof_b120a02d47 (PartOf versaille france) (STV 1.0 0.9091)) +(: cnet_partof_8876fb216b (PartOf verse poem) (STV 1.0 0.9091)) +(: cnet_partof_df3a65a1d1 (PartOf vertebra spinal_column) (STV 1.0 0.9091)) +(: cnet_partof_02b21f0c97 (PartOf vertebrate_foot leg) (STV 1.0 0.9091)) +(: cnet_partof_4ec2bacda4 (PartOf vertebrate_foot vertebrate) (STV 1.0 0.9091)) +(: cnet_partof_59c0f218b2 (PartOf vertical_stabilizer vertical_tail) (STV 1.0 0.9091)) +(: cnet_partof_474e0ff753 (PartOf vertical_tail tail) (STV 1.0 0.9091)) +(: cnet_partof_aa71bbea89 (PartOf very_high_frequency electromagnetic_spectrum) (STV 1.0 0.9091)) +(: cnet_partof_d02b62f618 (PartOf very_low_frequency electromagnetic_spectrum) (STV 1.0 0.9091)) +(: cnet_partof_90d5717c49 (PartOf vessel vascular_system) (STV 1.0 0.9091)) +(: cnet_partof_e698ba7c31 (PartOf vest three_piece_suit) (STV 1.0 0.9091)) +(: cnet_partof_348afc5eeb (PartOf vestibule_of_ear ear) (STV 1.0 0.9091)) +(: cnet_partof_b6a401f41a (PartOf vestibule_of_vagina vulva) (STV 1.0 0.9091)) +(: cnet_partof_64d028825f (PartOf vestry church) (STV 1.0 0.9091)) +(: cnet_partof_c14bab04d0 (PartOf vesuvius italy) (STV 1.0 0.9091)) +(: cnet_partof_a529bc6d33 (PartOf veteran_day november) (STV 1.0 0.9091)) +(: cnet_partof_cdfb36f662 (PartOf vetluga_river russia) (STV 1.0 0.9091)) +(: cnet_partof_93ab235383 (PartOf viborg denmark) (STV 1.0 0.9091)) +(: cnet_partof_5271938b7f (PartOf vicente_lopez argentina) (STV 1.0 0.9091)) +(: cnet_partof_cc343bea23 (PartOf vichy france) (STV 1.0 0.9091)) +(: cnet_partof_72d91da393 (PartOf vicksburg american_civil_war) (STV 1.0 0.9091)) +(: cnet_partof_a55324d369 (PartOf vicksburg mississippi) (STV 1.0 0.9091)) +(: cnet_partof_f45facd55c (PartOf victoria australia) (STV 1.0 0.9091)) +(: cnet_partof_937cafcdac (PartOf victoria british_columbia) (STV 1.0 0.9091)) +(: cnet_partof_81195d40f1 (PartOf victoria seychelle) (STV 1.0 0.9091)) +(: cnet_partof_1a41a9d59d (PartOf victoria texa) (STV 1.0 0.9091)) +(: cnet_partof_b39b3b09c3 (PartOf victoria zambezi) (STV 1.0 0.9091)) +(: cnet_partof_f27991e399 (PartOf victoria zambia) (STV 1.0 0.9091)) +(: cnet_partof_8e32d25523 (PartOf victoria zimbabwe) (STV 1.0 0.9091)) +(: cnet_partof_0bfd266f27 (PartOf victoria_land antarctica) (STV 1.0 0.9091)) +(: cnet_partof_05408e88f0 (PartOf vidalia georgia) (STV 1.0 0.9091)) +(: cnet_partof_09e606abce (PartOf video television) (STV 1.0 0.9091)) +(: cnet_partof_35268394fe (PartOf vienna austria) (STV 1.0 0.9091)) +(: cnet_partof_bd78fbdf35 (PartOf vienne france) (STV 1.0 0.9091)) +(: cnet_partof_5498b7f1f2 (PartOf vientiane lao) (STV 1.0 0.9091)) +(: cnet_partof_1e34ba5922 (PartOf vieque puerto_rico) (STV 1.0 0.9091)) +(: cnet_partof_fbb1e2b100 (PartOf vietnam indochina) (STV 1.0 0.9091)) +(: cnet_partof_a2c476bdce (PartOf villahermosa mexico) (STV 1.0 0.9091)) +(: cnet_partof_1a848cffed (PartOf vilnius lithuania) (STV 1.0 0.9091)) +(: cnet_partof_1ab5a9eb57 (PartOf vina_del_mar chile) (STV 1.0 0.9091)) +(: cnet_partof_9dd3ecb120 (PartOf vinifera_grape vinifera) (STV 1.0 0.9091)) +(: cnet_partof_fd4e10e8ac (PartOf virgin_birth christian_theology) (STV 1.0 0.9091)) +(: cnet_partof_21ad233e2f (PartOf virgin_island west_indy) (STV 1.0 0.9091)) +(: cnet_partof_30f6950bb1 (PartOf virgin_island_national_park virgin_island) (STV 1.0 0.9091)) +(: cnet_partof_698e0d3408 (PartOf virginia minnesota) (STV 1.0 0.9091)) +(: cnet_partof_b0c8228e96 (PartOf virginia south) (STV 1.0 0.9091)) +(: cnet_partof_63e95aaa29 (PartOf virginia united_state) (STV 1.0 0.9091)) +(: cnet_partof_bb2fc781c3 (PartOf virginia_beach virginia) (STV 1.0 0.9091)) +(: cnet_partof_6890bab598 (PartOf virgo zodiac) (STV 1.0 0.9091)) +(: cnet_partof_f168151d9a (PartOf visa passport) (STV 1.0 0.9091)) +(: cnet_partof_d1e33d710c (PartOf visayan_island philippine) (STV 1.0 0.9091)) +(: cnet_partof_7b70c8ad7a (PartOf visible_spectrum electromagnetic_spectrum) (STV 1.0 0.9091)) +(: cnet_partof_5c8a9e069a (PartOf visor helmet) (STV 1.0 0.9091)) +(: cnet_partof_fca65346d4 (PartOf vistula poland) (STV 1.0 0.9091)) +(: cnet_partof_4608aa1586 (PartOf visual_cell retina) (STV 1.0 0.9091)) +(: cnet_partof_e53360f26b (PartOf visual_cortex brain) (STV 1.0 0.9091)) +(: cnet_partof_648da874b6 (PartOf visual_purple rod) (STV 1.0 0.9091)) +(: cnet_partof_6da6413d7b (PartOf visual_signal visual_communication) (STV 1.0 0.9091)) +(: cnet_partof_8be82c0840 (PartOf viti_levu fiji_island) (STV 1.0 0.9091)) +(: cnet_partof_48cd026bac (PartOf vladivostok russia) (STV 1.0 0.9091)) +(: cnet_partof_b1c5867326 (PartOf vocabulary language) (STV 1.0 0.9091)) +(: cnet_partof_5442609317 (PartOf vocal_cord larynx) (STV 1.0 0.9091)) +(: cnet_partof_1e35259fa7 (PartOf voider body_armor) (STV 1.0 0.9091)) +(: cnet_partof_8ef7440f3c (PartOf volcanic_crater volcano) (STV 1.0 0.9091)) +(: cnet_partof_a2112c5377 (PartOf volcano_island japan) (STV 1.0 0.9091)) +(: cnet_partof_ae0fda03d5 (PartOf volcano_island pacific) (STV 1.0 0.9091)) +(: cnet_partof_777f6ecf49 (PartOf volga russia) (STV 1.0 0.9091)) +(: cnet_partof_ce18f463a8 (PartOf volgograd russia) (STV 1.0 0.9091)) +(: cnet_partof_a5f6d545ab (PartOf volkhov russia) (STV 1.0 0.9091)) +(: cnet_partof_dcca62eef9 (PartOf volt kilovolt) (STV 1.0 0.9091)) +(: cnet_partof_7437df285d (PartOf volt_ampere kilovolt_ampere) (STV 1.0 0.9091)) +(: cnet_partof_e13a0f0c32 (PartOf volta ghana) (STV 1.0 0.9091)) +(: cnet_partof_1055294b72 (PartOf voltage_regulator electrical_system) (STV 1.0 0.9091)) +(: cnet_partof_fc1752554d (PartOf voltaic_cell voltaic_battery) (STV 1.0 0.9091)) +(: cnet_partof_839af21bc7 (PartOf volume_unit volume) (STV 1.0 0.9091)) +(: cnet_partof_9a741c7183 (PartOf volva fungus) (STV 1.0 0.9091)) +(: cnet_partof_ed3c5024f2 (PartOf vomer nasal_septum) (STV 1.0 0.9091)) +(: cnet_partof_719ab6dfb1 (PartOf vomer skull) (STV 1.0 0.9091)) +(: cnet_partof_5283b12220 (PartOf vomitory amphitheater) (STV 1.0 0.9091)) +(: cnet_partof_20837c5b5f (PartOf voting_age adulthood) (STV 1.0 0.9091)) +(: cnet_partof_71f7259641 (PartOf voussoir arch) (STV 1.0 0.9091)) +(: cnet_partof_4b40fd17ed (PartOf voyageur_national_park minnesota) (STV 1.0 0.9091)) +(: cnet_partof_0f9c834314 (PartOf vulva female_reproductive_system) (STV 1.0 0.9091)) +(: cnet_partof_cfc54eeb4f (PartOf wabash indiana) (STV 1.0 0.9091)) +(: cnet_partof_2e985bd6b9 (PartOf wabash ohio) (STV 1.0 0.9091)) +(: cnet_partof_47608eec77 (PartOf waco texa) (STV 1.0 0.9091)) +(: cnet_partof_85823c5d58 (PartOf wage payroll) (STV 1.0 0.9091)) +(: cnet_partof_ca20ba0ed6 (PartOf wagga_wagga new_south_wale) (STV 1.0 0.9091)) +(: cnet_partof_aa8f48032d (PartOf wagon_tire cartwheel) (STV 1.0 0.9091)) +(: cnet_partof_36e79d9f88 (PartOf wagon_tire wagon_wheel) (STV 1.0 0.9091)) +(: cnet_partof_e09d0ea135 (PartOf wagon_wheel wagon) (STV 1.0 0.9091)) +(: cnet_partof_1b9b18db1c (PartOf wagram napoleonic_war) (STV 1.0 0.9091)) +(: cnet_partof_0a82d5a473 (PartOf wagram austria) (STV 1.0 0.9091)) +(: cnet_partof_9cd38a9ad8 (PartOf waikiki oahu) (STV 1.0 0.9091)) +(: cnet_partof_b71f685afb (PartOf wailing_wall jerusalem) (STV 1.0 0.9091)) +(: cnet_partof_ac183c778c (PartOf wainscot wall) (STV 1.0 0.9091)) +(: cnet_partof_126bee9642 (PartOf waist torso) (STV 1.0 0.9091)) +(: cnet_partof_94dd665e57 (PartOf wake_island pacific) (STV 1.0 0.9091)) +(: cnet_partof_f210b8a921 (PartOf wale vessel) (STV 1.0 0.9091)) +(: cnet_partof_c689644499 (PartOf wale united_kingdom) (STV 1.0 0.9091)) +(: cnet_partof_25c8aa7183 (PartOf walk_up_apartment walk_up) (STV 1.0 0.9091)) +(: cnet_partof_cf4f31e7cc (PartOf wall house) (STV 1.0 0.9454)) +(: cnet_partof_0b91f21612 (PartOf wall structure) (STV 1.0 0.9091)) +(: cnet_partof_e63edfe67f (PartOf wall building) (STV 1.0 0.9091)) +(: cnet_partof_e298bb5ab7 (PartOf wall hallway) (STV 1.0 0.9091)) +(: cnet_partof_da86301897 (PartOf wall room) (STV 1.0 0.9091)) +(: cnet_partof_3a4b053582 (PartOf wall cave) (STV 1.0 0.9091)) +(: cnet_partof_36d1106b5a (PartOf wall_panel wall) (STV 1.0 0.9091)) +(: cnet_partof_c778de3725 (PartOf wall_street manhattan) (STV 1.0 0.9091)) +(: cnet_partof_47e7b57f6e (PartOf walla_walla washington) (STV 1.0 0.9091)) +(: cnet_partof_3f07c33b41 (PartOf walnut walnut) (STV 1.0 0.9091)) +(: cnet_partof_1e2aa556e9 (PartOf walt_disney_world orlando) (STV 1.0 0.9091)) +(: cnet_partof_dfb2cfae00 (PartOf walt_whitman_bridge philadelphia) (STV 1.0 0.9091)) +(: cnet_partof_689d2672cd (PartOf ward hospital) (STV 1.0 0.9091)) +(: cnet_partof_34d8976f93 (PartOf ward municipality) (STV 1.0 0.9091)) +(: cnet_partof_586a76936c (PartOf wardrobe clothing) (STV 1.0 0.9091)) +(: cnet_partof_78cc372f82 (PartOf wardrobe costume) (STV 1.0 0.9091)) +(: cnet_partof_b85e3ed43c (PartOf warhead guided_missile) (STV 1.0 0.9091)) +(: cnet_partof_fc8f517a9e (PartOf warp weave) (STV 1.0 0.9091)) +(: cnet_partof_ae25dd73b9 (PartOf warszawa poland) (STV 1.0 0.9091)) +(: cnet_partof_26b8672d80 (PartOf washbasin bathroom) (STV 1.0 0.9091)) +(: cnet_partof_beede3d895 (PartOf washboard vessel) (STV 1.0 0.9091)) +(: cnet_partof_a230caf7d1 (PartOf washington_s_birthday february) (STV 1.0 0.9091)) +(: cnet_partof_8004e26bc0 (PartOf washington district_of_columbia) (STV 1.0 0.9091)) +(: cnet_partof_5f0482d84a (PartOf washington united_state) (STV 1.0 0.9091)) +(: cnet_partof_897fd7f7d0 (PartOf washington_monument washington) (STV 1.0 0.9091)) +(: cnet_partof_9da64a66e8 (PartOf watch_case watch) (STV 1.0 0.9091)) +(: cnet_partof_6fb8a0837b (PartOf water_back cookstove) (STV 1.0 0.9091)) +(: cnet_partof_1b126e2c02 (PartOf water_back fireplace) (STV 1.0 0.9091)) +(: cnet_partof_221da57588 (PartOf water_chestnut water_chestnut) (STV 1.0 0.9091)) +(: cnet_partof_515a33a8ca (PartOf water_chinquapin water_chinquapin) (STV 1.0 0.9091)) +(: cnet_partof_6b029d2ed2 (PartOf water_hazard golf_course) (STV 1.0 0.9091)) +(: cnet_partof_02d04521d4 (PartOf water_main water_system) (STV 1.0 0.9091)) +(: cnet_partof_f1cd67cef8 (PartOf water_pump cooling_system) (STV 1.0 0.9091)) +(: cnet_partof_1607272368 (PartOf water_system infrastructure) (STV 1.0 0.9091)) +(: cnet_partof_277278774f (PartOf water_vascular_system echinoderm) (STV 1.0 0.9091)) +(: cnet_partof_6a13002ada (PartOf waterbury connecticut) (STV 1.0 0.9091)) +(: cnet_partof_ea2a2fff23 (PartOf waterfall river) (STV 1.0 0.9091)) +(: cnet_partof_bcca10b181 (PartOf waterford ireland) (STV 1.0 0.9091)) +(: cnet_partof_f51d41425a (PartOf waterloo napoleonic_war) (STV 1.0 0.9091)) +(: cnet_partof_e43abd327e (PartOf waterloo belgium) (STV 1.0 0.9091)) +(: cnet_partof_d010150a00 (PartOf watermelon watermelon) (STV 1.0 0.9091)) +(: cnet_partof_bb4ed3f470 (PartOf watertown new_york) (STV 1.0 0.9091)) +(: cnet_partof_87fcd781a3 (PartOf watertown wisconsin) (STV 1.0 0.9091)) +(: cnet_partof_bc3c167772 (PartOf waterwheel water_mill) (STV 1.0 0.9091)) +(: cnet_partof_6bdd01310d (PartOf watt horsepower) (STV 1.0 0.9091)) +(: cnet_partof_27ea72f101 (PartOf watt kilowatt) (STV 1.0 0.9091)) +(: cnet_partof_396a703f38 (PartOf watt_hour kilowatt_hour) (STV 1.0 0.9091)) +(: cnet_partof_39445138fe (PartOf wausau wisconsin) (STV 1.0 0.9091)) +(: cnet_partof_218ab7d28d (PartOf wave ocean) (STV 1.0 0.9524)) +(: cnet_partof_8761f93374 (PartOf wave_front wave) (STV 1.0 0.9091)) +(: cnet_partof_00eafa23b4 (PartOf waveguide radar) (STV 1.0 0.9091)) +(: cnet_partof_55d29b9eac (PartOf way transportation_system) (STV 1.0 0.9091)) +(: cnet_partof_1f60a366fc (PartOf way shipyard) (STV 1.0 0.9091)) +(: cnet_partof_f2410600d9 (PartOf wayside way) (STV 1.0 0.9091)) +(: cnet_partof_33c12695aa (PartOf weakfish spotted_weakfish) (STV 1.0 0.9091)) +(: cnet_partof_576e4e6f24 (PartOf weakfish weakfish) (STV 1.0 0.9091)) +(: cnet_partof_3a59853a99 (PartOf weakly_interacting_massive_particle dark_matter) (STV 1.0 0.9091)) +(: cnet_partof_e9c8c8c8d9 (PartOf weapon weaponry) (STV 1.0 0.9091)) +(: cnet_partof_2cdd8a1cf3 (PartOf web webfoot) (STV 1.0 0.9091)) +(: cnet_partof_d3954663c0 (PartOf wedding_night wedding_day) (STV 1.0 0.9091)) +(: cnet_partof_06e7bf189d (PartOf wedge_bone sirloin) (STV 1.0 0.9091)) +(: cnet_partof_b8d5eba72e (PartOf wedge_heel wedgie) (STV 1.0 0.9091)) +(: cnet_partof_e5468e41fa (PartOf week calendar_month) (STV 1.0 0.9091)) +(: cnet_partof_b0e91365c5 (PartOf weekend week) (STV 1.0 0.9091)) +(: cnet_partof_2f432f422b (PartOf weimar germany) (STV 1.0 0.9091)) +(: cnet_partof_dc67658b14 (PartOf weisshorn alp) (STV 1.0 0.9091)) +(: cnet_partof_3b9ce522d1 (PartOf weisshorn switzerland) (STV 1.0 0.9091)) +(: cnet_partof_5c6bb07fee (PartOf wellington new_zealand) (STV 1.0 0.9091)) +(: cnet_partof_69122b0ca0 (PartOf wembley london) (STV 1.0 0.9091)) +(: cnet_partof_71299ccbd2 (PartOf wernicke_s_area language_area) (STV 1.0 0.9091)) +(: cnet_partof_65df573d27 (PartOf weser_river germany) (STV 1.0 0.9091)) +(: cnet_partof_07013c8ceb (PartOf wessex england) (STV 1.0 0.9091)) +(: cnet_partof_a01a7fac57 (PartOf west united_state) (STV 1.0 0.9091)) +(: cnet_partof_bf9a019b4f (PartOf west_africa africa) (STV 1.0 0.9091)) +(: cnet_partof_1f6c0e441f (PartOf west_bank israel) (STV 1.0 0.9091)) +(: cnet_partof_ab3c39a805 (PartOf west_bengal india) (STV 1.0 0.9091)) +(: cnet_partof_61ecddbc22 (PartOf west_berlin berlin) (STV 1.0 0.9091)) +(: cnet_partof_88ad654a56 (PartOf west_coast west) (STV 1.0 0.9091)) +(: cnet_partof_55c702c269 (PartOf west_country england) (STV 1.0 0.9091)) +(: cnet_partof_01c7bc859c (PartOf west_end london) (STV 1.0 0.9091)) +(: cnet_partof_0af89dc040 (PartOf west_indy atlantic) (STV 1.0 0.9091)) +(: cnet_partof_f8f4c30713 (PartOf west_indy caribbean) (STV 1.0 0.9091)) +(: cnet_partof_5580b328fd (PartOf west_palm_beach florida) (STV 1.0 0.9091)) +(: cnet_partof_29b09c84a6 (PartOf west_point new_york) (STV 1.0 0.9091)) +(: cnet_partof_c4232e0caa (PartOf west_sussex england) (STV 1.0 0.9091)) +(: cnet_partof_1b34f7642c (PartOf west_virginia united_state) (STV 1.0 0.9091)) +(: cnet_partof_9699af78be (PartOf west_yorkshire england) (STV 1.0 0.9091)) +(: cnet_partof_b72cbd89ed (PartOf western_australia australia) (STV 1.0 0.9091)) +(: cnet_partof_d82687aac4 (PartOf western_roman_empire roman_empire) (STV 1.0 0.9091)) +(: cnet_partof_2622034f17 (PartOf western_sahara morocco) (STV 1.0 0.9091)) +(: cnet_partof_ff103201f6 (PartOf westminster london) (STV 1.0 0.9091)) +(: cnet_partof_4d8296bffb (PartOf westminster_abbey westminster) (STV 1.0 0.9091)) +(: cnet_partof_8906ddb5c2 (PartOf wet_bulb_thermometer psychrometer) (STV 1.0 0.9091)) +(: cnet_partof_e43d1db857 (PartOf wheat common_wheat) (STV 1.0 0.9091)) +(: cnet_partof_f85069c90d (PartOf wheat_berry wheat) (STV 1.0 0.9091)) +(: cnet_partof_1cd361aa33 (PartOf wheat_germ wheat) (STV 1.0 0.9091)) +(: cnet_partof_5c93ccc6d3 (PartOf wheel bicycle) (STV 1.0 0.9454)) +(: cnet_partof_4ee02a581c (PartOf wheel car) (STV 1.0 0.9091)) +(: cnet_partof_37ab2b161f (PartOf wheel vehicle) (STV 1.0 0.9091)) +(: cnet_partof_98b9eeae48 (PartOf wheel wheeled_vehicle) (STV 1.0 0.9091)) +(: cnet_partof_20f1483120 (PartOf wheeler_peak new_mexico) (STV 1.0 0.9091)) +(: cnet_partof_a2d135c55b (PartOf wheeler_peak rocky) (STV 1.0 0.9091)) +(: cnet_partof_14550c0e31 (PartOf wheeling west_virginia) (STV 1.0 0.9091)) +(: cnet_partof_e2eca9e160 (PartOf whistle_stop_tour campaigning) (STV 1.0 0.9091)) +(: cnet_partof_dfc560f273 (PartOf whit_tuesday whitsun) (STV 1.0 0.9091)) +(: cnet_partof_674fb08851 (PartOf white arkansa) (STV 1.0 0.9091)) +(: cnet_partof_d3cef6f48d (PartOf white missouri) (STV 1.0 0.9091)) +(: cnet_partof_c6bcb00f98 (PartOf white_house washington) (STV 1.0 0.9091)) +(: cnet_partof_c411f3d631 (PartOf white_sea barent_sea) (STV 1.0 0.9091)) +(: cnet_partof_45fd0755c4 (PartOf white_turnip turnip) (STV 1.0 0.9091)) +(: cnet_partof_bd002945df (PartOf whitefish whitefish) (STV 1.0 0.9091)) +(: cnet_partof_1f19e4e098 (PartOf whitehall london) (STV 1.0 0.9091)) +(: cnet_partof_f260f4e79b (PartOf whitehead skin) (STV 1.0 0.9091)) +(: cnet_partof_689164199c (PartOf whitehorse yukon) (STV 1.0 0.9091)) +(: cnet_partof_b7602a6f7e (PartOf whiting silver_hake) (STV 1.0 0.9091)) +(: cnet_partof_8b27590914 (PartOf whiting whiting) (STV 1.0 0.9091)) +(: cnet_partof_ca0169ae41 (PartOf whitmonday whitsun) (STV 1.0 0.9091)) +(: cnet_partof_013f13433d (PartOf whitney sierra_nevada) (STV 1.0 0.9091)) +(: cnet_partof_14b6cb89c2 (PartOf whitsun church_calendar) (STV 1.0 0.9091)) +(: cnet_partof_c98a40c7c9 (PartOf whole_gale beaufort_scale) (STV 1.0 0.9091)) +(: cnet_partof_1cc8b0488e (PartOf whore whorehouse) (STV 1.0 0.9091)) +(: cnet_partof_6caf580d5e (PartOf wichita kansa) (STV 1.0 0.9091)) +(: cnet_partof_cbf340ec54 (PartOf wichita_fall texa) (STV 1.0 0.9091)) +(: cnet_partof_8fdc1cb941 (PartOf wick candle) (STV 1.0 0.9091)) +(: cnet_partof_2aa8468beb (PartOf wick oil_lamp) (STV 1.0 0.9091)) +(: cnet_partof_e75c11bacd (PartOf widow_s_peak hairline) (STV 1.0 0.9091)) +(: cnet_partof_d3834eb4f2 (PartOf wight british_isle) (STV 1.0 0.9091)) +(: cnet_partof_21955f4042 (PartOf wight english_channel) (STV 1.0 0.9091)) +(: cnet_partof_0cbffc27a8 (PartOf wild_cherry wild_cherry) (STV 1.0 0.9091)) +(: cnet_partof_b9e1490165 (PartOf wild_rice wild_rice) (STV 1.0 0.9091)) +(: cnet_partof_a3561ccd0e (PartOf wild_spinach good_king_henry) (STV 1.0 0.9091)) +(: cnet_partof_61a9019927 (PartOf wild_spinach lamb_s_quarter) (STV 1.0 0.9091)) +(: cnet_partof_604aba25b8 (PartOf wilderness_campaign american_civil_war) (STV 1.0 0.9091)) +(: cnet_partof_d90ff5e7af (PartOf wilke_land antarctica) (STV 1.0 0.9091)) +(: cnet_partof_7c31a39dd3 (PartOf willamette oregon) (STV 1.0 0.9091)) +(: cnet_partof_60073d0135 (PartOf williamstown massachusett) (STV 1.0 0.9091)) +(: cnet_partof_0637fa633d (PartOf wilmington delaware) (STV 1.0 0.9091)) +(: cnet_partof_94a813892c (PartOf wilmington north_carolina) (STV 1.0 0.9091)) +(: cnet_partof_6e50ed0c95 (PartOf wilson san_juan_mountain) (STV 1.0 0.9091)) +(: cnet_partof_3972795554 (PartOf wimbledon london) (STV 1.0 0.9091)) +(: cnet_partof_2a73356b1b (PartOf winch ship) (STV 1.0 0.9091)) +(: cnet_partof_f7778a8d3c (PartOf winchester hampshire) (STV 1.0 0.9091)) +(: cnet_partof_c04c403ef7 (PartOf winchester_college winchester) (STV 1.0 0.9091)) +(: cnet_partof_b9f176afff (PartOf wind_cave_national_park south_dakota) (STV 1.0 0.9091)) +(: cnet_partof_0756cd4de4 (PartOf wind_turbine wind_farm) (STV 1.0 0.9091)) +(: cnet_partof_b0d6ee9a52 (PartOf windhoek namibia) (STV 1.0 0.9091)) +(: cnet_partof_b60b4144bd (PartOf window building) (STV 1.0 0.9524)) +(: cnet_partof_f783eaa2a4 (PartOf window bus) (STV 1.0 0.9091)) +(: cnet_partof_b4220bab0f (PartOf window car) (STV 1.0 0.9091)) +(: cnet_partof_98ddc90033 (PartOf window window_envelope) (STV 1.0 0.9091)) +(: cnet_partof_4351ffd209 (PartOf window computer_screen) (STV 1.0 0.9091)) +(: cnet_partof_47dbc5c698 (PartOf window_frame window) (STV 1.0 0.9091)) +(: cnet_partof_3aa1f86eb5 (PartOf windowpane window) (STV 1.0 0.9091)) +(: cnet_partof_1fe1a83692 (PartOf windowsill window_frame) (STV 1.0 0.9091)) +(: cnet_partof_82974c7181 (PartOf windshield airplane) (STV 1.0 0.9091)) +(: cnet_partof_dc29214b99 (PartOf windshield motor_vehicle) (STV 1.0 0.9091)) +(: cnet_partof_1bfba493ee (PartOf windshield motorboat) (STV 1.0 0.9091)) +(: cnet_partof_a206dfcec5 (PartOf windshield_wiper motor_vehicle) (STV 1.0 0.9091)) +(: cnet_partof_927bd24352 (PartOf windward_island lesser_antille) (STV 1.0 0.9091)) +(: cnet_partof_c31d1d1de9 (PartOf windward_passage atlantic) (STV 1.0 0.9091)) +(: cnet_partof_26059b67df (PartOf wing angel) (STV 1.0 0.9091)) +(: cnet_partof_d0efb04351 (PartOf wing bat) (STV 1.0 0.9091)) +(: cnet_partof_5d4d398a3a (PartOf wing bird) (STV 1.0 0.9091)) +(: cnet_partof_5d121f6ee7 (PartOf wing insect) (STV 1.0 0.9091)) +(: cnet_partof_571d982ebf (PartOf wing airplane) (STV 1.0 0.9091)) +(: cnet_partof_5879045518 (PartOf wing division) (STV 1.0 0.9091)) +(: cnet_partof_bf77780a4d (PartOf wing_tip wing_tip) (STV 1.0 0.9091)) +(: cnet_partof_e0089e5547 (PartOf winnipeg manitoba) (STV 1.0 0.9091)) +(: cnet_partof_24aac47fc2 (PartOf winston_salem north_carolina) (STV 1.0 0.9091)) +(: cnet_partof_2ac5b53faf (PartOf winter_s_bark winter_s_bark) (STV 1.0 0.9091)) +(: cnet_partof_c4488609fc (PartOf winter_crookneck_squash winter_crookneck) (STV 1.0 0.9091)) +(: cnet_partof_30cc7ca069 (PartOf winter_melon winter_melon) (STV 1.0 0.9091)) +(: cnet_partof_01ddb86397 (PartOf winter_savory winter_savory) (STV 1.0 0.9091)) +(: cnet_partof_c3c8d55277 (PartOf winter_solstice winter) (STV 1.0 0.9091)) +(: cnet_partof_49fae8b8fa (PartOf winter_squash winter_squash) (STV 1.0 0.9091)) +(: cnet_partof_402e9847fd (PartOf wintergreen teaberry) (STV 1.0 0.9091)) +(: cnet_partof_d3084100e6 (PartOf wiper rheostat) (STV 1.0 0.9091)) +(: cnet_partof_5c15a6ce51 (PartOf wiper selector) (STV 1.0 0.9091)) +(: cnet_partof_c515fae1fd (PartOf wisconsin midwest) (STV 1.0 0.9091)) +(: cnet_partof_36e93cb2f6 (PartOf wisconsin united_state) (STV 1.0 0.9091)) +(: cnet_partof_ebc498aec9 (PartOf wisconsin wisconsin) (STV 1.0 0.9091)) +(: cnet_partof_ecfc389a88 (PartOf wisdom_of_solomon apocrypha) (STV 1.0 0.9091)) +(: cnet_partof_343a5876f8 (PartOf wisdom_of_solomon sapiential_book) (STV 1.0 0.9091)) +(: cnet_partof_35b7e51387 (PartOf wishbone bird) (STV 1.0 0.9091)) +(: cnet_partof_ee8b19c694 (PartOf wither deer) (STV 1.0 0.9091)) +(: cnet_partof_292011bcd5 (PartOf wither horse) (STV 1.0 0.9091)) +(: cnet_partof_a12e427046 (PartOf wither ox) (STV 1.0 0.9091)) +(: cnet_partof_6d8cc430f7 (PartOf wither sheep) (STV 1.0 0.9091)) +(: cnet_partof_68280270f1 (PartOf witness_box court) (STV 1.0 0.9091)) +(: cnet_partof_32d384b328 (PartOf witwatersrand transvaal) (STV 1.0 0.9091)) +(: cnet_partof_26a7511d8a (PartOf woof weave) (STV 1.0 0.9091)) +(: cnet_partof_21dc8e2450 (PartOf worcester england) (STV 1.0 0.9091)) +(: cnet_partof_bfc7865d82 (PartOf worcester massachusett) (STV 1.0 0.9091)) +(: cnet_partof_15fbe014c8 (PartOf word language) (STV 1.0 0.9524)) +(: cnet_partof_977da7368d (PartOf word sentence) (STV 1.0 0.9730)) +(: cnet_partof_40cccf0d7e (PartOf word kilobyte) (STV 1.0 0.9091)) +(: cnet_partof_42fa2f614d (PartOf word_division orthography) (STV 1.0 0.9091)) +(: cnet_partof_fe79d35db7 (PartOf word_order text) (STV 1.0 0.9091)) +(: cnet_partof_159210650a (PartOf workweek week) (STV 1.0 0.9091)) +(: cnet_partof_bb36112909 (PartOf world_trade_center new_york) (STV 1.0 0.9091)) +(: cnet_partof_08e28c0fe0 (PartOf worm worm_gear) (STV 1.0 0.9091)) +(: cnet_partof_51523c9dba (PartOf worm_wheel worm_gear) (STV 1.0 0.9091)) +(: cnet_partof_2f3202ad24 (PartOf wrangell_st_elia_national_park alaska) (STV 1.0 0.9091)) +(: cnet_partof_c852fa83b6 (PartOf wrestling_hold wrestling) (STV 1.0 0.9091)) +(: cnet_partof_8254e1744e (PartOf wrinkle skin) (STV 1.0 0.9091)) +(: cnet_partof_c9f67a1107 (PartOf wrist arm) (STV 1.0 0.9091)) +(: cnet_partof_1a37895750 (PartOf wristband sleeve) (STV 1.0 0.9091)) +(: cnet_partof_6459a1174f (PartOf writer_s_name by_line) (STV 1.0 0.9091)) +(: cnet_partof_c80490362c (PartOf writing_arm tablet_armed_chair) (STV 1.0 0.9091)) +(: cnet_partof_a0a64b8a08 (PartOf wroclaw poland) (STV 1.0 0.9091)) +(: cnet_partof_28fabff451 (PartOf wuhan china) (STV 1.0 0.9091)) +(: cnet_partof_589137e82f (PartOf wurzburg germany) (STV 1.0 0.9091)) +(: cnet_partof_5e29cdd644 (PartOf wyoming united_state) (STV 1.0 0.9091)) +(: cnet_partof_a2c681e95c (PartOf x_ray_tube x_ray_machine) (STV 1.0 0.9091)) +(: cnet_partof_76b5d7b0d6 (PartOf xian china) (STV 1.0 0.9091)) +(: cnet_partof_89a97db7ad (PartOf xinjiang china) (STV 1.0 0.9091)) +(: cnet_partof_c9475663f0 (PartOf xiphoid_process sternum) (STV 1.0 0.9091)) +(: cnet_partof_09e7edbe3b (PartOf xylem woody_plant) (STV 1.0 0.9091)) +(: cnet_partof_8f62f7d59c (PartOf yakima washington) (STV 1.0 0.9091)) +(: cnet_partof_cec021b8f7 (PartOf yale_university new_haven) (STV 1.0 0.9091)) +(: cnet_partof_556488646f (PartOf yalta crimea) (STV 1.0 0.9091)) +(: cnet_partof_a519a001ed (PartOf yalu north_korea) (STV 1.0 0.9091)) +(: cnet_partof_ae0535910f (PartOf yalu_river korean_war) (STV 1.0 0.9091)) +(: cnet_partof_86d9383a76 (PartOf yam yam) (STV 1.0 0.9091)) +(: cnet_partof_970ac6f2d3 (PartOf yangon myanmar) (STV 1.0 0.9091)) +(: cnet_partof_300c34bf96 (PartOf yaounde cameroon) (STV 1.0 0.9091)) +(: cnet_partof_bd3fdae7e2 (PartOf yard sailing_vessel) (STV 1.0 0.9091)) +(: cnet_partof_aa3b00f0e5 (PartOf yard chain) (STV 1.0 0.9091)) +(: cnet_partof_6e8b418e72 (PartOf yard fathom) (STV 1.0 0.9091)) +(: cnet_partof_c85c6bbcc7 (PartOf yard lea) (STV 1.0 0.9091)) +(: cnet_partof_4b4fb47432 (PartOf yard perch) (STV 1.0 0.9091)) +(: cnet_partof_7a8a982c33 (PartOf yardarm yard) (STV 1.0 0.9091)) +(: cnet_partof_b9f82d139c (PartOf yazoo mississippi) (STV 1.0 0.9091)) +(: cnet_partof_b588ba5bf1 (PartOf year decade) (STV 1.0 0.9091)) +(: cnet_partof_175875d47f (PartOf yellow_rocket barbarea) (STV 1.0 0.9091)) +(: cnet_partof_0faf5b408c (PartOf yellow_sea pacific) (STV 1.0 0.9091)) +(: cnet_partof_696a3608f4 (PartOf yellow_squash yellow_squash) (STV 1.0 0.9091)) +(: cnet_partof_edf55da8c3 (PartOf yellowknife northwest_territory) (STV 1.0 0.9091)) +(: cnet_partof_346d7c8ea3 (PartOf yellowstone montana) (STV 1.0 0.9091)) +(: cnet_partof_fd15b2cfc9 (PartOf yellowstone wyoming) (STV 1.0 0.9091)) +(: cnet_partof_9b4c9bbc4b (PartOf yellowstone_national_park idaho) (STV 1.0 0.9091)) +(: cnet_partof_db9f9f3ec9 (PartOf yellowstone_national_park montana) (STV 1.0 0.9091)) +(: cnet_partof_3a5e8b545d (PartOf yellowstone_national_park wyoming) (STV 1.0 0.9091)) +(: cnet_partof_24b803e2b4 (PartOf yellowtail_flounder yellowtail_flounder) (STV 1.0 0.9091)) +(: cnet_partof_daeba08385 (PartOf yemen arabian_peninsula) (STV 1.0 0.9091)) +(: cnet_partof_cc8e7c62bf (PartOf yemen asia) (STV 1.0 0.9091)) +(: cnet_partof_69b475ae3a (PartOf yenisei siberia) (STV 1.0 0.9091)) +(: cnet_partof_aae3cc24b0 (PartOf yeomanry territorial_army) (STV 1.0 0.9091)) +(: cnet_partof_f9e876576d (PartOf yerevan armenia) (STV 1.0 0.9091)) +(: cnet_partof_1d1769588e (PartOf yerupaja ande) (STV 1.0 0.9091)) +(: cnet_partof_33a7146281 (PartOf yerupaja peru) (STV 1.0 0.9091)) +(: cnet_partof_22ef5209dc (PartOf yogyakarta java) (STV 1.0 0.9091)) +(: cnet_partof_024c4f8688 (PartOf yoke garment) (STV 1.0 0.9091)) +(: cnet_partof_5971b26764 (PartOf yokohama honshu) (STV 1.0 0.9091)) +(: cnet_partof_981156d7a6 (PartOf yokohama japan) (STV 1.0 0.9091)) +(: cnet_partof_27f868327a (PartOf yolk egg) (STV 1.0 0.9091)) +(: cnet_partof_28be882b6d (PartOf yorkshire england) (STV 1.0 0.9091)) +(: cnet_partof_803c258aa4 (PartOf yorktown american_revolution) (STV 1.0 0.9091)) +(: cnet_partof_c027dfdeb1 (PartOf yorktown virginia) (STV 1.0 0.9091)) +(: cnet_partof_707e8f5aa6 (PartOf yosemite united_state) (STV 1.0 0.9091)) +(: cnet_partof_60c3bf705a (PartOf yosemite_national_park california) (STV 1.0 0.9091)) +(: cnet_partof_b7f6f6f0e1 (PartOf youngstown ohio) (STV 1.0 0.9091)) +(: cnet_partof_39a3784b5d (PartOf ypre world_war_i) (STV 1.0 0.9091)) +(: cnet_partof_712faa3047 (PartOf yucatan mexico) (STV 1.0 0.9091)) +(: cnet_partof_c787f07972 (PartOf yukon canada) (STV 1.0 0.9091)) +(: cnet_partof_b4680085f6 (PartOf yukon united_state) (STV 1.0 0.9091)) +(: cnet_partof_ba09d5a658 (PartOf yuma arizona) (STV 1.0 0.9091)) +(: cnet_partof_e870cf25a3 (PartOf yunnan china) (STV 1.0 0.9091)) +(: cnet_partof_450991f56c (PartOf zabrze poland) (STV 1.0 0.9091)) +(: cnet_partof_be688d4320 (PartOf zagreb croatia) (STV 1.0 0.9091)) +(: cnet_partof_6303d6a2a3 (PartOf zama punic_war) (STV 1.0 0.9091)) +(: cnet_partof_4197b84f6d (PartOf zambezi angola) (STV 1.0 0.9091)) +(: cnet_partof_c858cf8a5f (PartOf zambezi mozambique) (STV 1.0 0.9091)) +(: cnet_partof_3e8e287e39 (PartOf zambezi zambia) (STV 1.0 0.9091)) +(: cnet_partof_f5702429da (PartOf zambezi zimbabwe) (STV 1.0 0.9091)) +(: cnet_partof_76cdf5d6d7 (PartOf zambia africa) (STV 1.0 0.9091)) +(: cnet_partof_1f15940dcf (PartOf zanzibar tanzania) (STV 1.0 0.9091)) +(: cnet_partof_aa9a2c2d9e (PartOf zaragoza spain) (STV 1.0 0.9091)) +(: cnet_partof_2fb80956f4 (PartOf zaria nigeria) (STV 1.0 0.9091)) +(: cnet_partof_c31d4a3979 (PartOf zarqa jordan) (STV 1.0 0.9091)) +(: cnet_partof_e295e5c05d (PartOf zb yb) (STV 1.0 0.9091)) +(: cnet_partof_88efdc3108 (PartOf zealand denmark) (STV 1.0 0.9091)) +(: cnet_partof_bbc4c1ee9e (PartOf zebibit yobibit) (STV 1.0 0.9091)) +(: cnet_partof_5f71d80c99 (PartOf zechariah old_testament) (STV 1.0 0.9091)) +(: cnet_partof_7d33c6b52d (PartOf zechariah prophet) (STV 1.0 0.9091)) +(: cnet_partof_33fe49db9d (PartOf zenith celestial_sphere) (STV 1.0 0.9091)) +(: cnet_partof_f281b86930 (PartOf zephaniah old_testament) (STV 1.0 0.9091)) +(: cnet_partof_5a53e3e9bd (PartOf zephaniah prophet) (STV 1.0 0.9091)) +(: cnet_partof_835f91e892 (PartOf zettabit yottabit) (STV 1.0 0.9091)) +(: cnet_partof_89b117fe2c (PartOf zettabyte yottabyte) (STV 1.0 0.9091)) +(: cnet_partof_f7e31c8944 (PartOf zhu_jiangi china) (STV 1.0 0.9091)) +(: cnet_partof_763e5b0d09 (PartOf zimbabwe africa) (STV 1.0 0.9091)) +(: cnet_partof_491da49ab8 (PartOf zion jerusalem) (STV 1.0 0.9091)) +(: cnet_partof_d5806cdca4 (PartOf zion_national_park utah) (STV 1.0 0.9091)) +(: cnet_partof_4b4e9642e7 (PartOf zip_code address) (STV 1.0 0.9091)) +(: cnet_partof_ea417c44d2 (PartOf zodiac celestial_sphere) (STV 1.0 0.9091)) +(: cnet_partof_bfc2316d54 (PartOf zomba malawi) (STV 1.0 0.9091)) +(: cnet_partof_940a5b84af (PartOf zone_of_interior theater_of_war) (STV 1.0 0.9091)) +(: cnet_partof_6916d47480 (PartOf zucchini zucchini) (STV 1.0 0.9091)) +(: cnet_partof_b824713897 (PartOf zuider_zee north_sea) (STV 1.0 0.9091)) +(: cnet_partof_b2ccd19585 (PartOf zurich switzerland) (STV 1.0 0.9091)) +(: cnet_partof_056cc0db53 (PartOf zygoma cheekbone) (STV 1.0 0.9091)) +(: cnet_partof_43b203c2f2 (PartOf zygomatic_process cheekbone) (STV 1.0 0.9091)) +(: cnet_partof_578c19c8d2 (PartOf zygotene prophase) (STV 1.0 0.9091)) +(: cnet_usedfor_8103c93752 (UsedFor accelerator accelerate) (STV 1.0 0.9091)) +(: cnet_usedfor_c09aac4fb6 (UsedFor accelerator speed) (STV 1.0 0.9091)) +(: cnet_usedfor_fcd4c64dbd (UsedFor accommodation staying_in) (STV 1.0 0.9091)) +(: cnet_usedfor_4f547542d2 (UsedFor accommodation sleeping) (STV 1.0 0.9091)) +(: cnet_usedfor_7e473af7bc (UsedFor accordion make_music) (STV 1.0 0.9454)) +(: cnet_usedfor_618fb890c5 (UsedFor accordion making_music) (STV 1.0 0.9091)) +(: cnet_usedfor_c05f0ba314 (UsedFor accordion polka_music) (STV 1.0 0.9339)) +(: cnet_usedfor_162805fd50 (UsedFor account_book keeping_track_of_expens) (STV 1.0 0.9339)) +(: cnet_usedfor_ab4097cb36 (UsedFor acne_medication clear_skin) (STV 1.0 0.9454)) +(: cnet_usedfor_a78b43567a (UsedFor acne_medication getting_rid_of_pimple) (STV 1.0 0.9339)) +(: cnet_usedfor_4d1d7f68c0 (UsedFor acne_medication getting_rid_of_spot) (STV 1.0 0.9091)) +(: cnet_usedfor_109f3a0814 (UsedFor acoustic_ceiling reduce_echoe) (STV 1.0 0.9339)) +(: cnet_usedfor_a0f53c23ba (UsedFor acoustic_guitar folk_music) (STV 1.0 0.9339)) +(: cnet_usedfor_f43f4bc977 (UsedFor acoustic_guitar performing_music) (STV 1.0 0.9454)) +(: cnet_usedfor_9357ce39c9 (UsedFor acoustic_guitar playing_music) (STV 1.0 0.9454)) +(: cnet_usedfor_1ea343523a (UsedFor acrylic for_painting_with) (STV 1.0 0.9091)) +(: cnet_usedfor_831dfbe7c0 (UsedFor acrylic making_paint) (STV 1.0 0.9091)) +(: cnet_usedfor_b79bb037d6 (UsedFor acrylic paint_picture) (STV 1.0 0.9339)) +(: cnet_usedfor_e4104e9bbc (UsedFor acrylic painting_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_7d4e922613 (UsedFor acting_in_play entertaining_audience) (STV 1.0 0.9454)) +(: cnet_usedfor_0f014e7af8 (UsedFor acting_in_play portraying_charactor) (STV 1.0 0.9091)) +(: cnet_usedfor_531b83595a (UsedFor action_figure have_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_eb4fa08be3 (UsedFor action_figure play) (STV 1.0 0.9091)) +(: cnet_usedfor_43cba238e3 (UsedFor action_figure play_with) (STV 1.0 0.9524)) +(: cnet_usedfor_6dbb358e77 (UsedFor action_figure playing) (STV 1.0 0.9339)) +(: cnet_usedfor_e86f058960 (UsedFor adding_up_column_of_number accountant) (STV 1.0 0.9091)) +(: cnet_usedfor_aebe1ddaf1 (UsedFor adding_up_number building_sum) (STV 1.0 0.9091)) +(: cnet_usedfor_c31f488479 (UsedFor adding_up_number finding_total) (STV 1.0 0.9091)) +(: cnet_usedfor_06459f0a90 (UsedFor adding_up_number getting_sum) (STV 1.0 0.9339)) +(: cnet_usedfor_a55433c4ba (UsedFor adding_up_number getting_total) (STV 1.0 0.9339)) +(: cnet_usedfor_825cd8bbe2 (UsedFor adding_up_number totalling) (STV 1.0 0.9091)) +(: cnet_usedfor_0645abf4c2 (UsedFor adhesive_bandage cover_wound) (STV 1.0 0.9091)) +(: cnet_usedfor_955db6e8ec (UsedFor adhesive_bandage cut) (STV 1.0 0.9091)) +(: cnet_usedfor_3c1802379e (UsedFor advancing_into_battle attacking_enemy) (STV 1.0 0.9091)) +(: cnet_usedfor_8c29bfd211 (UsedFor advancing_into_battle gaining_offensive) (STV 1.0 0.9091)) +(: cnet_usedfor_df3b8dd39e (UsedFor advancing_into_battle going_to_war) (STV 1.0 0.9091)) +(: cnet_usedfor_f1f6bf9cbc (UsedFor advertisement selling_product) (STV 1.0 0.9339)) +(: cnet_usedfor_78e209c81d (UsedFor advertising_panel advertising) (STV 1.0 0.9339)) +(: cnet_usedfor_7028bde48c (UsedFor aerial_bomb blowing_thing_up) (STV 1.0 0.9091)) +(: cnet_usedfor_bac6cfc62d (UsedFor air_conditioner cool_room) (STV 1.0 0.9524)) +(: cnet_usedfor_2f55ce8944 (UsedFor air_conditioner cooling_air) (STV 1.0 0.9454)) +(: cnet_usedfor_c0cdd2b5bd (UsedFor air_conditioner cooling_room) (STV 1.0 0.9091)) +(: cnet_usedfor_a59c730d9b (UsedFor air_conditioning cool_down) (STV 1.0 0.9091)) +(: cnet_usedfor_3dbb042a56 (UsedFor air_conditioning cooling_room) (STV 1.0 0.9339)) +(: cnet_usedfor_db3a210720 (UsedFor air_ticket traveling) (STV 1.0 0.9091)) +(: cnet_usedfor_1ed81ce8ca (UsedFor aircraft fly) (STV 1.0 0.9091)) +(: cnet_usedfor_f1fe22fc45 (UsedFor aircraft land) (STV 1.0 0.9091)) +(: cnet_usedfor_4ceb874cde (UsedFor aircraft transport) (STV 1.0 0.9091)) +(: cnet_usedfor_c3d2061c00 (UsedFor airline_seat sitting_in_airplane) (STV 1.0 0.9091)) +(: cnet_usedfor_68b1e1ba43 (UsedFor airplane air_transportation) (STV 1.0 0.9091)) +(: cnet_usedfor_c4951db75b (UsedFor airplane flight) (STV 1.0 0.9091)) +(: cnet_usedfor_842abc5925 (UsedFor airplane fly) (STV 1.0 0.9091)) +(: cnet_usedfor_097e7d2412 (UsedFor airplane transport) (STV 1.0 0.9091)) +(: cnet_usedfor_35ca630161 (UsedFor airplane traveling) (STV 1.0 0.9636)) +(: cnet_usedfor_ee995c49a3 (UsedFor airplane_seat sitting_in) (STV 1.0 0.9454)) +(: cnet_usedfor_c77d8b32de (UsedFor aisle getting_to_seat) (STV 1.0 0.9091)) +(: cnet_usedfor_fd921412ca (UsedFor aisle organize_store) (STV 1.0 0.9091)) +(: cnet_usedfor_686517f1f7 (UsedFor aisle walking) (STV 1.0 0.9091)) +(: cnet_usedfor_9acfbbf4c9 (UsedFor aisle walking_through) (STV 1.0 0.9677)) +(: cnet_usedfor_57fa2eef90 (UsedFor alarm alarm) (STV 1.0 0.9091)) +(: cnet_usedfor_63afde6378 (UsedFor alarm alert) (STV 1.0 0.9091)) +(: cnet_usedfor_3cfea7200c (UsedFor alarm ring) (STV 1.0 0.9091)) +(: cnet_usedfor_029cade017 (UsedFor alarm warn) (STV 1.0 0.9091)) +(: cnet_usedfor_c2ced39a29 (UsedFor alarm_clock awaken) (STV 1.0 0.9091)) +(: cnet_usedfor_ccc35cdcf4 (UsedFor alarm_clock clock) (STV 1.0 0.9091)) +(: cnet_usedfor_7ae766c181 (UsedFor alarm_clock clock_time) (STV 1.0 0.9091)) +(: cnet_usedfor_34b5b4a48f (UsedFor alarm_clock go_off) (STV 1.0 0.9091)) +(: cnet_usedfor_793bf418a6 (UsedFor alarm_clock ring) (STV 1.0 0.9091)) +(: cnet_usedfor_34f61d943f (UsedFor album hold_photograph) (STV 1.0 0.9091)) +(: cnet_usedfor_0cf694db87 (UsedFor album store_photograph) (STV 1.0 0.9091)) +(: cnet_usedfor_1919e8fa34 (UsedFor album storing_photograph) (STV 1.0 0.9454)) +(: cnet_usedfor_411391b854 (UsedFor album play) (STV 1.0 0.9091)) +(: cnet_usedfor_f96d9e3472 (UsedFor album hearer) (STV 1.0 0.9091)) +(: cnet_usedfor_0dd244e890 (UsedFor album launch) (STV 1.0 0.9091)) +(: cnet_usedfor_0f87652a5f (UsedFor album music) (STV 1.0 0.9091)) +(: cnet_usedfor_c5a83b17a9 (UsedFor album sell) (STV 1.0 0.9091)) +(: cnet_usedfor_d58147a0d4 (UsedFor alcohol clean_wound) (STV 1.0 0.9091)) +(: cnet_usedfor_f662978474 (UsedFor alcohol sterilize_instrument) (STV 1.0 0.9091)) +(: cnet_usedfor_d1fd83be9a (UsedFor altar pray_to_god) (STV 1.0 0.9091)) +(: cnet_usedfor_c255e5f6a4 (UsedFor alto singing) (STV 1.0 0.9524)) +(: cnet_usedfor_b6b42d1318 (UsedFor ambulance drive) (STV 1.0 0.9091)) +(: cnet_usedfor_eef1d5269f (UsedFor ambulance rush) (STV 1.0 0.9091)) +(: cnet_usedfor_5ea2d8c047 (UsedFor ambulance transport) (STV 1.0 0.9091)) +(: cnet_usedfor_fa3b8cf5c3 (UsedFor analysing getting_detail) (STV 1.0 0.9091)) +(: cnet_usedfor_91fdeac681 (UsedFor analysing learning_from) (STV 1.0 0.9091)) +(: cnet_usedfor_6bd5ebf52a (UsedFor analysing understanding) (STV 1.0 0.9454)) +(: cnet_usedfor_a8f53f8a02 (UsedFor animal food) (STV 1.0 0.9091)) +(: cnet_usedfor_8d4c3daa24 (UsedFor animal killing_for_food) (STV 1.0 0.9091)) +(: cnet_usedfor_836f42eddd (UsedFor animal pet) (STV 1.0 0.9091)) +(: cnet_usedfor_f47b0af72e (UsedFor animal petting) (STV 1.0 0.9339)) +(: cnet_usedfor_659280021c (UsedFor anime entertainment) (STV 1.0 0.9091)) +(: cnet_usedfor_c05363a352 (UsedFor answering_question educating) (STV 1.0 0.9339)) +(: cnet_usedfor_ab5735fa91 (UsedFor answering_question give_information) (STV 1.0 0.9339)) +(: cnet_usedfor_92d89314f1 (UsedFor answering_question giving_information) (STV 1.0 0.9091)) +(: cnet_usedfor_d709d4ca88 (UsedFor answering_question teaching) (STV 1.0 0.9091)) +(: cnet_usedfor_aebe980b28 (UsedFor antibiotic kill_bacteria) (STV 1.0 0.9091)) +(: cnet_usedfor_89ff374cdb (UsedFor anxious_people anxiety) (STV 1.0 0.9091)) +(: cnet_usedfor_50427a42ad (UsedFor apartment_building live_in) (STV 1.0 0.9339)) +(: cnet_usedfor_1d6fcd7531 (UsedFor apartment_building living_in) (STV 1.0 0.9091)) +(: cnet_usedfor_149d545f76 (UsedFor apartment_building people_to_live_in) (STV 1.0 0.9339)) +(: cnet_usedfor_4eafccfd7d (UsedFor apparatus perform) (STV 1.0 0.9091)) +(: cnet_usedfor_672e48a7e8 (UsedFor apparatus serve) (STV 1.0 0.9091)) +(: cnet_usedfor_c25114b9d4 (UsedFor apparatus work) (STV 1.0 0.9091)) +(: cnet_usedfor_ab98504c8f (UsedFor apple eating) (STV 1.0 0.9636)) +(: cnet_usedfor_dd4ada497c (UsedFor apple making_apple_pie) (STV 1.0 0.9091)) +(: cnet_usedfor_34a82ac435 (UsedFor apple sate_hunger) (STV 1.0 0.9091)) +(: cnet_usedfor_1091410a1d (UsedFor applying_for_job getting_job) (STV 1.0 0.9339)) +(: cnet_usedfor_fac04489a9 (UsedFor appointment_book remind_person_of_schedule) (STV 1.0 0.9091)) +(: cnet_usedfor_b87af92568 (UsedFor appointment_book scheduling) (STV 1.0 0.9339)) +(: cnet_usedfor_96ab0589eb (UsedFor aquarium attract) (STV 1.0 0.9091)) +(: cnet_usedfor_d2fd09c03e (UsedFor aquarium fish) (STV 1.0 0.9091)) +(: cnet_usedfor_76dbaa86c5 (UsedFor aquarium hold) (STV 1.0 0.9091)) +(: cnet_usedfor_8d010578b7 (UsedFor aquarium house) (STV 1.0 0.9091)) +(: cnet_usedfor_32d07cb13e (UsedFor archaeology learning_about_past) (STV 1.0 0.9091)) +(: cnet_usedfor_fc4a852adc (UsedFor architecture regulate_behavior) (STV 1.0 0.9091)) +(: cnet_usedfor_189ed0937d (UsedFor archway pass_through) (STV 1.0 0.9091)) +(: cnet_usedfor_e4812839ca (UsedFor area_51 testing_aircraft) (STV 1.0 0.9091)) +(: cnet_usedfor_fd20641151 (UsedFor arena competition) (STV 1.0 0.9091)) +(: cnet_usedfor_da1fab45d5 (UsedFor arena fight) (STV 1.0 0.9091)) +(: cnet_usedfor_bc2ddb7c46 (UsedFor arena gathering) (STV 1.0 0.9091)) +(: cnet_usedfor_e512dba409 (UsedFor arena live_concert) (STV 1.0 0.9091)) +(: cnet_usedfor_f9c400643c (UsedFor arm holding_down) (STV 1.0 0.9091)) +(: cnet_usedfor_d5dca70c23 (UsedFor arm lifting_thing) (STV 1.0 0.9454)) +(: cnet_usedfor_3d5ca3c862 (UsedFor arm wave) (STV 1.0 0.9339)) +(: cnet_usedfor_ffe5c0f312 (UsedFor arm waving) (STV 1.0 0.9454)) +(: cnet_usedfor_8a48895406 (UsedFor armchair relaxing_in) (STV 1.0 0.9091)) +(: cnet_usedfor_24552d3e35 (UsedFor armchair resting_in) (STV 1.0 0.9091)) +(: cnet_usedfor_86a68b0484 (UsedFor armchair sitting) (STV 1.0 0.9091)) +(: cnet_usedfor_41ff0d95cb (UsedFor armchair sitting_in) (STV 1.0 0.9454)) +(: cnet_usedfor_13efd4cb54 (UsedFor armchair seat) (STV 1.0 0.9091)) +(: cnet_usedfor_9e4fe9af99 (UsedFor armchair sitter) (STV 1.0 0.9091)) +(: cnet_usedfor_09fd228a55 (UsedFor arrow fly) (STV 1.0 0.9091)) +(: cnet_usedfor_83bc51e090 (UsedFor arrow hit) (STV 1.0 0.9091)) +(: cnet_usedfor_82f1655af1 (UsedFor arrow pierce) (STV 1.0 0.9091)) +(: cnet_usedfor_030f011d55 (UsedFor arrow shoot) (STV 1.0 0.9091)) +(: cnet_usedfor_14e9a14643 (UsedFor arrow wound) (STV 1.0 0.9091)) +(: cnet_usedfor_78ad1f6b0c (UsedFor arrow target) (STV 1.0 0.9091)) +(: cnet_usedfor_7f04ac09e6 (UsedFor art enjoyment) (STV 1.0 0.9091)) +(: cnet_usedfor_893443b005 (UsedFor art express_yourself) (STV 1.0 0.9091)) +(: cnet_usedfor_10db90b9ce (UsedFor artery carrying_blood) (STV 1.0 0.9339)) +(: cnet_usedfor_b5309938a6 (UsedFor article reading) (STV 1.0 0.9339)) +(: cnet_usedfor_192969fe75 (UsedFor article_in_magazine benefit_of_reader) (STV 1.0 0.9339)) +(: cnet_usedfor_45836243f6 (UsedFor article_in_magazine read) (STV 1.0 0.9572)) +(: cnet_usedfor_37a6b783fa (UsedFor article_in_magazine telling_story) (STV 1.0 0.9339)) +(: cnet_usedfor_cdcf367a0c (UsedFor article_in_newspaper reading) (STV 1.0 0.9091)) +(: cnet_usedfor_1a2dea2bcc (UsedFor asphalt pave_road) (STV 1.0 0.9091)) +(: cnet_usedfor_ac871d04d7 (UsedFor atlantic_ocean sailing_on) (STV 1.0 0.9091)) +(: cnet_usedfor_04caaf92c4 (UsedFor atlantic_ocean shipping) (STV 1.0 0.9091)) +(: cnet_usedfor_8e6c186614 (UsedFor atomic_explosion mass_killing) (STV 1.0 0.9339)) +(: cnet_usedfor_853eeccec8 (UsedFor attache_case carrying_document) (STV 1.0 0.9091)) +(: cnet_usedfor_5404dc4bd0 (UsedFor attending_class listening_to_teacher) (STV 1.0 0.9091)) +(: cnet_usedfor_3f70b88592 (UsedFor attending_class student) (STV 1.0 0.9091)) +(: cnet_usedfor_b6c1021db5 (UsedFor attending_class taking_note_on_subject) (STV 1.0 0.9339)) +(: cnet_usedfor_f27819c4c0 (UsedFor attending_class teacher) (STV 1.0 0.9091)) +(: cnet_usedfor_92c78943c5 (UsedFor attending_classical_concert pleasure) (STV 1.0 0.9091)) +(: cnet_usedfor_3d88cf70f3 (UsedFor attending_lecture learning) (STV 1.0 0.9454)) +(: cnet_usedfor_074018f722 (UsedFor attending_meeting making_decision) (STV 1.0 0.9091)) +(: cnet_usedfor_691926c892 (UsedFor attending_school gaining_knowledge) (STV 1.0 0.9339)) +(: cnet_usedfor_848d2457fc (UsedFor attending_school learning) (STV 1.0 0.9091)) +(: cnet_usedfor_3428184457 (UsedFor attic keep_stuff_in) (STV 1.0 0.9091)) +(: cnet_usedfor_7d59675234 (UsedFor attribute describe) (STV 1.0 0.9091)) +(: cnet_usedfor_bce2a4391e (UsedFor attribute describing) (STV 1.0 0.9524)) +(: cnet_usedfor_3557fce7ab (UsedFor auditorium assembly) (STV 1.0 0.9091)) +(: cnet_usedfor_8a9724b893 (UsedFor auditorium lecture) (STV 1.0 0.9091)) +(: cnet_usedfor_eb6a7f6db7 (UsedFor auditorium performance) (STV 1.0 0.9339)) +(: cnet_usedfor_3b919ce89e (UsedFor automobile travelling) (STV 1.0 0.9091)) +(: cnet_usedfor_e2206059f1 (UsedFor automobile_horn dissonance) (STV 1.0 0.9091)) +(: cnet_usedfor_bbdb89104c (UsedFor automobile_horn honk) (STV 1.0 0.9091)) +(: cnet_usedfor_5ebfe5ea4a (UsedFor automobile_horn sound) (STV 1.0 0.9091)) +(: cnet_usedfor_bcb31129d6 (UsedFor awaking starting_day) (STV 1.0 0.9339)) +(: cnet_usedfor_8425362a12 (UsedFor baby_buggy baby) (STV 1.0 0.9091)) +(: cnet_usedfor_ac9a00f113 (UsedFor baby_buggy handcart) (STV 1.0 0.9091)) +(: cnet_usedfor_26484334d1 (UsedFor back_garden grow_plant_in) (STV 1.0 0.9091)) +(: cnet_usedfor_5d3a6954c3 (UsedFor back_garden growing_vegetable) (STV 1.0 0.9454)) +(: cnet_usedfor_44065f2460 (UsedFor back_yard grilling_steak) (STV 1.0 0.9091)) +(: cnet_usedfor_eada242519 (UsedFor back_yard playing) (STV 1.0 0.9454)) +(: cnet_usedfor_7c0dbf84c1 (UsedFor backyard having_barbecue) (STV 1.0 0.9454)) +(: cnet_usedfor_d5725d6336 (UsedFor backyard having_party) (STV 1.0 0.9091)) +(: cnet_usedfor_027ee7fcf4 (UsedFor bag carrying_grocery) (STV 1.0 0.9339)) +(: cnet_usedfor_7ba1e294c0 (UsedFor bag carrying_thing) (STV 1.0 0.9454)) +(: cnet_usedfor_069035b08d (UsedFor bag holding_many_small_item_together) (STV 1.0 0.9091)) +(: cnet_usedfor_f899b98b30 (UsedFor bag hold) (STV 1.0 0.9091)) +(: cnet_usedfor_7f2c3e18fe (UsedFor bag transport) (STV 1.0 0.9091)) +(: cnet_usedfor_d21bd0747a (UsedFor bag traveler) (STV 1.0 0.9091)) +(: cnet_usedfor_adf96cb762 (UsedFor bag wearer) (STV 1.0 0.9091)) +(: cnet_usedfor_ff73e51c00 (UsedFor baggage carry_clothe) (STV 1.0 0.9339)) +(: cnet_usedfor_aeca436e06 (UsedFor baggage holding_clothe) (STV 1.0 0.9339)) +(: cnet_usedfor_dc696ca598 (UsedFor baggage taking_thing_on_trip) (STV 1.0 0.9091)) +(: cnet_usedfor_4ceddb3e9f (UsedFor baggage travel) (STV 1.0 0.9091)) +(: cnet_usedfor_830ee7a132 (UsedFor bagpipe making_music) (STV 1.0 0.9572)) +(: cnet_usedfor_d51661c843 (UsedFor bagpipe play_music) (STV 1.0 0.9091)) +(: cnet_usedfor_ea973029a1 (UsedFor bagpipe playing_music) (STV 1.0 0.9572)) +(: cnet_usedfor_7a9e1527b0 (UsedFor bait catch_bass) (STV 1.0 0.9091)) +(: cnet_usedfor_bfae1e5b2f (UsedFor bait catch_fish) (STV 1.0 0.9091)) +(: cnet_usedfor_d4ca3ef67b (UsedFor baking_cake birthday) (STV 1.0 0.9091)) +(: cnet_usedfor_5f074d9147 (UsedFor baking_cake celebrating_birthday) (STV 1.0 0.9091)) +(: cnet_usedfor_db14603b83 (UsedFor baking_cake dessert) (STV 1.0 0.9091)) +(: cnet_usedfor_f562aa3285 (UsedFor baking_cake eating) (STV 1.0 0.9339)) +(: cnet_usedfor_7afdd1ef04 (UsedFor baking_cake special_occasion) (STV 1.0 0.9091)) +(: cnet_usedfor_e9045f71b6 (UsedFor baking_oven bake_bread) (STV 1.0 0.9091)) +(: cnet_usedfor_b54b7d2331 (UsedFor baking_oven baking) (STV 1.0 0.9339)) +(: cnet_usedfor_0a4f4ecb82 (UsedFor baking_oven baking_cake) (STV 1.0 0.9091)) +(: cnet_usedfor_7b50298e04 (UsedFor baking_oven cook) (STV 1.0 0.9091)) +(: cnet_usedfor_8690fca6fc (UsedFor baking_oven cooky) (STV 1.0 0.9091)) +(: cnet_usedfor_61b0fedcab (UsedFor baking_oven cooking_food) (STV 1.0 0.9339)) +(: cnet_usedfor_3d8e900c18 (UsedFor balalaika make_music) (STV 1.0 0.9339)) +(: cnet_usedfor_382b6aae77 (UsedFor balalaika making_music) (STV 1.0 0.9091)) +(: cnet_usedfor_0774ae2e20 (UsedFor balalaika play_russian_music) (STV 1.0 0.9339)) +(: cnet_usedfor_69622988c7 (UsedFor ball bouncing) (STV 1.0 0.9524)) +(: cnet_usedfor_62285b1034 (UsedFor ball bowling) (STV 1.0 0.9339)) +(: cnet_usedfor_c2e68140a0 (UsedFor ball dancing_at) (STV 1.0 0.9091)) +(: cnet_usedfor_35bd5cb382 (UsedFor ball do_pilate_exercis) (STV 1.0 0.9091)) +(: cnet_usedfor_da73880c7c (UsedFor ball having_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_253559f7db (UsedFor ball inflating) (STV 1.0 0.9091)) +(: cnet_usedfor_ab08ca8e48 (UsedFor ball play) (STV 1.0 0.9524)) +(: cnet_usedfor_2ff5a383f2 (UsedFor ball play_with_dog) (STV 1.0 0.9339)) +(: cnet_usedfor_82ea9802fc (UsedFor ball playing_baseball) (STV 1.0 0.9091)) +(: cnet_usedfor_b3ea4e29cf (UsedFor ball playing_basketball) (STV 1.0 0.9091)) +(: cnet_usedfor_7073e3ccc7 (UsedFor ball playing_football) (STV 1.0 0.9091)) +(: cnet_usedfor_345a2301e6 (UsedFor ball playing_game) (STV 1.0 0.9572)) +(: cnet_usedfor_44d912908d (UsedFor ball rolling) (STV 1.0 0.9091)) +(: cnet_usedfor_36eaf574f3 (UsedFor ball tennis) (STV 1.0 0.9091)) +(: cnet_usedfor_72cca3771e (UsedFor ball throwing) (STV 1.0 0.9572)) +(: cnet_usedfor_46b9065a69 (UsedFor ball bounce) (STV 1.0 0.9091)) +(: cnet_usedfor_f495fbde1d (UsedFor ball roll) (STV 1.0 0.9091)) +(: cnet_usedfor_59ab275e5f (UsedFor balloon birthday_party) (STV 1.0 0.9091)) +(: cnet_usedfor_4a562314be (UsedFor balloon decoration) (STV 1.0 0.9339)) +(: cnet_usedfor_b401c3e778 (UsedFor balloon opening_clogged_artery) (STV 1.0 0.9091)) +(: cnet_usedfor_1a1687ff1e (UsedFor ballpoint_pen pointing_at) (STV 1.0 0.9091)) +(: cnet_usedfor_314422cd78 (UsedFor ballpoint_pen write_thing_down) (STV 1.0 0.9091)) +(: cnet_usedfor_a2154b1bb4 (UsedFor ballpoint_pen write_with) (STV 1.0 0.9677)) +(: cnet_usedfor_865da88d8c (UsedFor ballpoint_pen writing) (STV 1.0 0.9524)) +(: cnet_usedfor_eee0a0d6bc (UsedFor band_aid cover_wound) (STV 1.0 0.9454)) +(: cnet_usedfor_3ad0c4c4fc (UsedFor band_aid heal_wound) (STV 1.0 0.9339)) +(: cnet_usedfor_66e18402ba (UsedFor band_aid putting_on_cut) (STV 1.0 0.9091)) +(: cnet_usedfor_cb61dc1a64 (UsedFor band_aid stopping_bleeding) (STV 1.0 0.9091)) +(: cnet_usedfor_b4cfaed553 (UsedFor bandage cover_wound) (STV 1.0 0.9339)) +(: cnet_usedfor_2916ad7eba (UsedFor banjo making_music) (STV 1.0 0.9339)) +(: cnet_usedfor_d76dd4d74c (UsedFor banjo perform_music) (STV 1.0 0.9091)) +(: cnet_usedfor_d67293c094 (UsedFor banjo strumming) (STV 1.0 0.9454)) +(: cnet_usedfor_43a36d8a09 (UsedFor bank save_money) (STV 1.0 0.9091)) +(: cnet_usedfor_d0bbbbcafd (UsedFor bank store_money) (STV 1.0 0.9454)) +(: cnet_usedfor_8f18418a4d (UsedFor bank storing_money) (STV 1.0 0.9707)) +(: cnet_usedfor_c207166172 (UsedFor bar getting_drunk) (STV 1.0 0.9339)) +(: cnet_usedfor_10f382047a (UsedFor bar protect) (STV 1.0 0.9091)) +(: cnet_usedfor_ab6fda9fae (UsedFor bar separate) (STV 1.0 0.9091)) +(: cnet_usedfor_548fe0434f (UsedFor bar_stool sitting_at_bar) (STV 1.0 0.9524)) +(: cnet_usedfor_0bb3929fe2 (UsedFor bar_stool sitting_on) (STV 1.0 0.9707)) +(: cnet_usedfor_dd8f81fe6a (UsedFor barbecue cooking_food) (STV 1.0 0.9572)) +(: cnet_usedfor_ec06e92007 (UsedFor barbecue cook) (STV 1.0 0.9091)) +(: cnet_usedfor_478689c486 (UsedFor barbecue_restaurant dining) (STV 1.0 0.9339)) +(: cnet_usedfor_095b1640cd (UsedFor barbecue_restaurant eat_food) (STV 1.0 0.9091)) +(: cnet_usedfor_9fbd125b6e (UsedFor barber_comb combing_hair) (STV 1.0 0.9524)) +(: cnet_usedfor_f966d63f90 (UsedFor barber_comb cutting_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_f427981e44 (UsedFor barber_shop get_hair_trimmed) (STV 1.0 0.9091)) +(: cnet_usedfor_b2f64bd089 (UsedFor barber_shop get_haircut) (STV 1.0 0.9091)) +(: cnet_usedfor_5e6afcf79e (UsedFor barber_shop getting_hair_cut) (STV 1.0 0.9454)) +(: cnet_usedfor_ae2535cf5d (UsedFor barber_shop haircut) (STV 1.0 0.9091)) +(: cnet_usedfor_ec9afb58e6 (UsedFor barbershop get_haircut) (STV 1.0 0.9091)) +(: cnet_usedfor_60d9c1150c (UsedFor barn for_giving_animal_shelter) (STV 1.0 0.9091)) +(: cnet_usedfor_bc3130738f (UsedFor barn keeping_animal) (STV 1.0 0.9454)) +(: cnet_usedfor_76959362cb (UsedFor barn storing_farming_equipment) (STV 1.0 0.9091)) +(: cnet_usedfor_4227a0e1bc (UsedFor barn storing_hay) (STV 1.0 0.9091)) +(: cnet_usedfor_7e903189bf (UsedFor barrel hold) (STV 1.0 0.9091)) +(: cnet_usedfor_46e44950ce (UsedFor barroom serve) (STV 1.0 0.9091)) +(: cnet_usedfor_353272b796 (UsedFor baseball break_window) (STV 1.0 0.9091)) +(: cnet_usedfor_7a39b88f13 (UsedFor baseball playing_baseball) (STV 1.0 0.9608)) +(: cnet_usedfor_f67f166319 (UsedFor baseball playing_game) (STV 1.0 0.9091)) +(: cnet_usedfor_a0a90cde2b (UsedFor baseball_bat hit_baseball) (STV 1.0 0.9524)) +(: cnet_usedfor_f8dd919d8f (UsedFor baseball_field play_baseball) (STV 1.0 0.9572)) +(: cnet_usedfor_0a68bccfb8 (UsedFor baseball_field playing_baseball) (STV 1.0 0.9454)) +(: cnet_usedfor_a8fe183c13 (UsedFor baseball_stadium baseball) (STV 1.0 0.9091)) +(: cnet_usedfor_10fb870f73 (UsedFor baseball_stadium fun) (STV 1.0 0.9091)) +(: cnet_usedfor_4cfbf19ce2 (UsedFor baseball_stadium play_baseball) (STV 1.0 0.9454)) +(: cnet_usedfor_fc85594d53 (UsedFor baseball_stadium play_baseball_game) (STV 1.0 0.9091)) +(: cnet_usedfor_659d9c12bf (UsedFor baseball_stadium sport) (STV 1.0 0.9091)) +(: cnet_usedfor_1c47e14ee9 (UsedFor baseball_ticket attending_baseball_game) (STV 1.0 0.9091)) +(: cnet_usedfor_f538859da3 (UsedFor baseball_ticket going_to_game) (STV 1.0 0.9091)) +(: cnet_usedfor_8a5f4e473d (UsedFor basement store_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_db7e63b8d0 (UsedFor basket carrying) (STV 1.0 0.9339)) +(: cnet_usedfor_20c4d4860b (UsedFor basket hold) (STV 1.0 0.9091)) +(: cnet_usedfor_97d1e453f1 (UsedFor basket include) (STV 1.0 0.9091)) +(: cnet_usedfor_7f2c1801eb (UsedFor basket_of_laundry holding_dirty_clothe) (STV 1.0 0.9339)) +(: cnet_usedfor_6aa88b07aa (UsedFor basket_of_laundry store_dirty_clothe) (STV 1.0 0.9091)) +(: cnet_usedfor_48c3abca69 (UsedFor basket_with_handle carrying_thing) (STV 1.0 0.9454)) +(: cnet_usedfor_21345401ef (UsedFor basketball bounc) (STV 1.0 0.9091)) +(: cnet_usedfor_02fac76588 (UsedFor basketball throw) (STV 1.0 0.9339)) +(: cnet_usedfor_274beea35f (UsedFor basketball_court exercise) (STV 1.0 0.9091)) +(: cnet_usedfor_c155199a99 (UsedFor basketball_court playing_basketball_game) (STV 1.0 0.9339)) +(: cnet_usedfor_103fb130c6 (UsedFor bass eat) (STV 1.0 0.9339)) +(: cnet_usedfor_8c348faa22 (UsedFor bass eating) (STV 1.0 0.9091)) +(: cnet_usedfor_3c8ae6abb4 (UsedFor bass_baritone making_music) (STV 1.0 0.9091)) +(: cnet_usedfor_2e736058b5 (UsedFor bass_clarinet music_making) (STV 1.0 0.9339)) +(: cnet_usedfor_e4eb354bf4 (UsedFor bass_drum beat) (STV 1.0 0.9091)) +(: cnet_usedfor_257baf4c04 (UsedFor bass_fiddle make_music) (STV 1.0 0.9091)) +(: cnet_usedfor_0533c04242 (UsedFor bass_fiddle making_music) (STV 1.0 0.9091)) +(: cnet_usedfor_b6343fd6e0 (UsedFor bass_fiddle music) (STV 1.0 0.9339)) +(: cnet_usedfor_37261dba29 (UsedFor bass_fiddle playing_music) (STV 1.0 0.9091)) +(: cnet_usedfor_d59b0aac90 (UsedFor bassoon make_music) (STV 1.0 0.9091)) +(: cnet_usedfor_661c8bc694 (UsedFor bassoon play_music) (STV 1.0 0.9091)) +(: cnet_usedfor_edd521c2ec (UsedFor bat baseball) (STV 1.0 0.9454)) +(: cnet_usedfor_0e5f29568a (UsedFor bat playing_baseball) (STV 1.0 0.9454)) +(: cnet_usedfor_54b1c97f73 (UsedFor bath cleansing_body) (STV 1.0 0.9454)) +(: cnet_usedfor_f69e96cfdc (UsedFor bath relaxation) (STV 1.0 0.9659)) +(: cnet_usedfor_8be55c2dca (UsedFor bath fill) (STV 1.0 0.9091)) +(: cnet_usedfor_d69df22020 (UsedFor bath_shower getting_clean) (STV 1.0 0.9339)) +(: cnet_usedfor_eec7b5dc6b (UsedFor bathing cleaning_body) (STV 1.0 0.9091)) +(: cnet_usedfor_fa0ea55297 (UsedFor bathing cleansing_body) (STV 1.0 0.9454)) +(: cnet_usedfor_3f7e14de66 (UsedFor bathing getting_body_clean) (STV 1.0 0.9339)) +(: cnet_usedfor_eab4120632 (UsedFor bathing getting_clean) (STV 1.0 0.9339)) +(: cnet_usedfor_f00c0977cb (UsedFor bathing relaxing) (STV 1.0 0.9091)) +(: cnet_usedfor_65d3e88f28 (UsedFor bathing removing_dirt) (STV 1.0 0.9339)) +(: cnet_usedfor_0346f4815a (UsedFor bathing smelling_nice) (STV 1.0 0.9091)) +(: cnet_usedfor_08575f34aa (UsedFor bathroom peeing) (STV 1.0 0.9091)) +(: cnet_usedfor_b8ad039383 (UsedFor bathroom pooping) (STV 1.0 0.9091)) +(: cnet_usedfor_59b1aecafe (UsedFor bathroom taking_bath) (STV 1.0 0.9524)) +(: cnet_usedfor_1696b2008e (UsedFor bathroom taking_shower) (STV 1.0 0.9339)) +(: cnet_usedfor_1bbe29c5df (UsedFor bathroom washing) (STV 1.0 0.9091)) +(: cnet_usedfor_9af591a157 (UsedFor bathroom washing_up) (STV 1.0 0.9339)) +(: cnet_usedfor_7bd0ae4d09 (UsedFor bathroom washing_up_in) (STV 1.0 0.9091)) +(: cnet_usedfor_603ebb9cdc (UsedFor bathroom_with_toilet go_potty) (STV 1.0 0.9091)) +(: cnet_usedfor_294583aa67 (UsedFor bathtub bathing) (STV 1.0 0.9693)) +(: cnet_usedfor_397f03debb (UsedFor bathtub soak_in) (STV 1.0 0.9091)) +(: cnet_usedfor_f786197942 (UsedFor bathtub take_bath_in) (STV 1.0 0.9091)) +(: cnet_usedfor_59950602ed (UsedFor battery power) (STV 1.0 0.9091)) +(: cnet_usedfor_ba646e71d9 (UsedFor battery charge) (STV 1.0 0.9091)) +(: cnet_usedfor_f8851a7ade (UsedFor battery run) (STV 1.0 0.9091)) +(: cnet_usedfor_5eb6698622 (UsedFor battle fighting) (STV 1.0 0.9091)) +(: cnet_usedfor_d4dc4769f3 (UsedFor battle fighting_war) (STV 1.0 0.9339)) +(: cnet_usedfor_1f106f2f2b (UsedFor battle winning_war) (STV 1.0 0.9091)) +(: cnet_usedfor_7e37322547 (UsedFor bay fishing_in) (STV 1.0 0.9091)) +(: cnet_usedfor_cd1a97de62 (UsedFor bay sailing) (STV 1.0 0.9091)) +(: cnet_usedfor_9dec47e0c8 (UsedFor bay_window looking_out_of) (STV 1.0 0.9091)) +(: cnet_usedfor_61e6ebf007 (UsedFor bbq cook_meat) (STV 1.0 0.9339)) +(: cnet_usedfor_e43af8bcae (UsedFor beach_towel drying_yourself) (STV 1.0 0.9091)) +(: cnet_usedfor_1d6deaf295 (UsedFor beach_towel lying_on) (STV 1.0 0.9339)) +(: cnet_usedfor_f968a1603b (UsedFor beam support) (STV 1.0 0.9454)) +(: cnet_usedfor_d14fb3c3a0 (UsedFor beam support_roof) (STV 1.0 0.9339)) +(: cnet_usedfor_4fc56dbd61 (UsedFor beam supporting_roof) (STV 1.0 0.9339)) +(: cnet_usedfor_bf6f38137e (UsedFor beam hold) (STV 1.0 0.9091)) +(: cnet_usedfor_b66709217e (UsedFor beam scan) (STV 1.0 0.9091)) +(: cnet_usedfor_982984ea51 (UsedFor beam shine) (STV 1.0 0.9091)) +(: cnet_usedfor_f0a46a599f (UsedFor bean cooking) (STV 1.0 0.9339)) +(: cnet_usedfor_4ee05a15c3 (UsedFor bean grow) (STV 1.0 0.9091)) +(: cnet_usedfor_27aa34f130 (UsedFor bean_bag_chair relaxation) (STV 1.0 0.9339)) +(: cnet_usedfor_08e2034727 (UsedFor bean_bag_chair relaxing) (STV 1.0 0.9091)) +(: cnet_usedfor_f3817258c1 (UsedFor bean_bag_chair sit_in) (STV 1.0 0.9091)) +(: cnet_usedfor_ff68d93582 (UsedFor bean_bag_chair sitting_in) (STV 1.0 0.9091)) +(: cnet_usedfor_4ff218b912 (UsedFor bean_bag_chair sitting_on) (STV 1.0 0.9572)) +(: cnet_usedfor_91b0d98720 (UsedFor beanbag play_catch) (STV 1.0 0.9091)) +(: cnet_usedfor_080bb40156 (UsedFor beanbag playing_game) (STV 1.0 0.9091)) +(: cnet_usedfor_b3ade8d63d (UsedFor beanbag sit_in) (STV 1.0 0.9091)) +(: cnet_usedfor_b2a1404860 (UsedFor beanbag sitting_down) (STV 1.0 0.9454)) +(: cnet_usedfor_3ceff16836 (UsedFor beanbag_chair relaxing) (STV 1.0 0.9091)) +(: cnet_usedfor_c6df1b8cb1 (UsedFor beanbag_chair sitting) (STV 1.0 0.9339)) +(: cnet_usedfor_fbdf1cdad8 (UsedFor beanbag_chair sitting_down) (STV 1.0 0.9677)) +(: cnet_usedfor_a583756436 (UsedFor beanie_baby collection) (STV 1.0 0.9091)) +(: cnet_usedfor_6b21d3d08c (UsedFor beauty_salon getting_manicure) (STV 1.0 0.9091)) +(: cnet_usedfor_dcbe8dd8f5 (UsedFor becoming_inebriated being_social) (STV 1.0 0.9091)) +(: cnet_usedfor_8bf41104d7 (UsedFor becoming_inebriated feeling_good) (STV 1.0 0.9091)) +(: cnet_usedfor_88500e062a (UsedFor becoming_inebriated forgetting_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_b9ae246a4d (UsedFor becoming_inebriated fun) (STV 1.0 0.9091)) +(: cnet_usedfor_96a0134d07 (UsedFor becoming_inebriated relaxation) (STV 1.0 0.9091)) +(: cnet_usedfor_e6214330f9 (UsedFor becoming_more_clean removing_dirt_from_body) (STV 1.0 0.9091)) +(: cnet_usedfor_6d24a028d4 (UsedFor becoming_scuba_diver underwater_exploration) (STV 1.0 0.9091)) +(: cnet_usedfor_9901aecd0f (UsedFor bed fucking_in) (STV 1.0 0.9339)) +(: cnet_usedfor_d0d59a36d9 (UsedFor bed have_sex) (STV 1.0 0.9791)) +(: cnet_usedfor_b82597792e (UsedFor bed having_sex_in) (STV 1.0 0.9091)) +(: cnet_usedfor_41fb621c51 (UsedFor bed laying_down) (STV 1.0 0.9091)) +(: cnet_usedfor_715866269b (UsedFor bed lie_down) (STV 1.0 0.9339)) +(: cnet_usedfor_171ec08fd3 (UsedFor bed lying_down) (STV 1.0 0.9091)) +(: cnet_usedfor_64315cdc59 (UsedFor bed making_love) (STV 1.0 0.9454)) +(: cnet_usedfor_536d999626 (UsedFor bed napping_on) (STV 1.0 0.9091)) +(: cnet_usedfor_f26723601f (UsedFor bed reading_in) (STV 1.0 0.9091)) +(: cnet_usedfor_721eda7f29 (UsedFor bed resting) (STV 1.0 0.9091)) +(: cnet_usedfor_3df41d1c94 (UsedFor bed resting_on) (STV 1.0 0.9572)) +(: cnet_usedfor_433bcb1936 (UsedFor bed sit_on) (STV 1.0 0.9091)) +(: cnet_usedfor_5226a4ed27 (UsedFor bed hold) (STV 1.0 0.9091)) +(: cnet_usedfor_0536fcfb45 (UsedFor bed sleep) (STV 1.0 0.9091)) +(: cnet_usedfor_79acc2f550 (UsedFor bed_sheet cover_bed) (STV 1.0 0.9091)) +(: cnet_usedfor_f1d193542d (UsedFor bed_sheet sleeping_on) (STV 1.0 0.9339)) +(: cnet_usedfor_e8c9028fed (UsedFor bedroom having_sex) (STV 1.0 0.9572)) +(: cnet_usedfor_338beb469b (UsedFor bedroom privacy) (STV 1.0 0.9091)) +(: cnet_usedfor_599975b4b1 (UsedFor beer drinking) (STV 1.0 0.9608)) +(: cnet_usedfor_0ebc8a957a (UsedFor beer get_drunk) (STV 1.0 0.9091)) +(: cnet_usedfor_dc673834a3 (UsedFor beer_mug drink) (STV 1.0 0.9091)) +(: cnet_usedfor_46e785b143 (UsedFor beer_mug drink_beer_from) (STV 1.0 0.9091)) +(: cnet_usedfor_08e33afd30 (UsedFor beer_mug drinking) (STV 1.0 0.9339)) +(: cnet_usedfor_55d58b184a (UsedFor beer_mug drinking_beer) (STV 1.0 0.9091)) +(: cnet_usedfor_261e2a811f (UsedFor beer_mug drinking_beer_from) (STV 1.0 0.9524)) +(: cnet_usedfor_86bb563090 (UsedFor beer_mug filling_with_beer) (STV 1.0 0.9091)) +(: cnet_usedfor_140856baf5 (UsedFor beginning_work starting_on_project) (STV 1.0 0.9091)) +(: cnet_usedfor_ff078ef8ce (UsedFor being_full not_eating_anymore) (STV 1.0 0.9091)) +(: cnet_usedfor_0259245fdc (UsedFor bell getting_attention) (STV 1.0 0.9339)) +(: cnet_usedfor_d84ac83172 (UsedFor bell make_noise) (STV 1.0 0.9091)) +(: cnet_usedfor_d5af250e3a (UsedFor bell making_noise) (STV 1.0 0.9339)) +(: cnet_usedfor_2f39b10d22 (UsedFor bell ring) (STV 1.0 0.9454)) +(: cnet_usedfor_c8ba3ba6a2 (UsedFor bell ringing) (STV 1.0 0.9339)) +(: cnet_usedfor_8795463f05 (UsedFor bell summoning_people) (STV 1.0 0.9091)) +(: cnet_usedfor_e954280cb7 (UsedFor bell toll) (STV 1.0 0.9091)) +(: cnet_usedfor_6e97f8478c (UsedFor bell attract_people_s_attention) (STV 1.0 0.9091)) +(: cnet_usedfor_895eb15ed6 (UsedFor belt holding_up_pant) (STV 1.0 0.9454)) +(: cnet_usedfor_fb11534bde (UsedFor bench seat) (STV 1.0 0.9091)) +(: cnet_usedfor_9cafdf5fd5 (UsedFor beverage drinking) (STV 1.0 0.9339)) +(: cnet_usedfor_7986dbd3d4 (UsedFor bicycle personal_transport) (STV 1.0 0.9091)) +(: cnet_usedfor_934f0ae3ef (UsedFor bicycle racing) (STV 1.0 0.9339)) +(: cnet_usedfor_4d85b038d2 (UsedFor bicycle riding) (STV 1.0 0.9524)) +(: cnet_usedfor_0e3abc951f (UsedFor bicycle transportation) (STV 1.0 0.9707)) +(: cnet_usedfor_3e098ad66f (UsedFor bicycle travelling_on) (STV 1.0 0.9091)) +(: cnet_usedfor_54f7b0cf07 (UsedFor bicycle ride) (STV 1.0 0.9091)) +(: cnet_usedfor_8e99951662 (UsedFor bicycle rush) (STV 1.0 0.9091)) +(: cnet_usedfor_615ddb0d79 (UsedFor bicycle_storage_area protecting_bicycle) (STV 1.0 0.9091)) +(: cnet_usedfor_d76c9a960b (UsedFor bicycle_storage_area protecting_bycyle_from_bad_weather) (STV 1.0 0.9091)) +(: cnet_usedfor_9f28eaab8a (UsedFor bicycle_storage_area store_bicycle) (STV 1.0 0.9339)) +(: cnet_usedfor_1135fa2b48 (UsedFor bicycle_storage_area storing_bicycle) (STV 1.0 0.9339)) +(: cnet_usedfor_db919202ab (UsedFor bicycle_storage_area storing_bycycle_in) (STV 1.0 0.9339)) +(: cnet_usedfor_d0a85120d2 (UsedFor bike transport) (STV 1.0 0.9091)) +(: cnet_usedfor_5f200783ad (UsedFor bill bird_to_eat_with) (STV 1.0 0.9091)) +(: cnet_usedfor_c69b59e910 (UsedFor billboard advertise_product) (STV 1.0 0.9339)) +(: cnet_usedfor_6cff42a8b0 (UsedFor billboard advertisement) (STV 1.0 0.9091)) +(: cnet_usedfor_d940990858 (UsedFor billboard displaying_image) (STV 1.0 0.9091)) +(: cnet_usedfor_a652f4abd3 (UsedFor billfold hold_money) (STV 1.0 0.9524)) +(: cnet_usedfor_e719636e39 (UsedFor billiard_ball playing_billiard) (STV 1.0 0.9091)) +(: cnet_usedfor_0b58d45e1d (UsedFor bin hold) (STV 1.0 0.9091)) +(: cnet_usedfor_9fa6344e1a (UsedFor bird laying_egg) (STV 1.0 0.9091)) +(: cnet_usedfor_eccc2f6ef0 (UsedFor bird watching) (STV 1.0 0.9339)) +(: cnet_usedfor_ca24dbb17a (UsedFor birth_control_pill avoid_pregnancy) (STV 1.0 0.9091)) +(: cnet_usedfor_a4a6f211fd (UsedFor birth_control_pill prevent_unwanted_pregnancy) (STV 1.0 0.9454)) +(: cnet_usedfor_f9820e887d (UsedFor bishop play_chess) (STV 1.0 0.9091)) +(: cnet_usedfor_c58d3e1e05 (UsedFor blade cutting) (STV 1.0 0.9339)) +(: cnet_usedfor_baa3782b01 (UsedFor blade slit) (STV 1.0 0.9091)) +(: cnet_usedfor_758359ba74 (UsedFor blanket covering_bed) (STV 1.0 0.9091)) +(: cnet_usedfor_d4c713a7ee (UsedFor blanket sleeping_under) (STV 1.0 0.9339)) +(: cnet_usedfor_ab383f43f7 (UsedFor blanket warmth) (STV 1.0 0.9091)) +(: cnet_usedfor_bb065e8890 (UsedFor blanketing cover_yourself) (STV 1.0 0.9454)) +(: cnet_usedfor_18ae4cf443 (UsedFor blanketing warm_up) (STV 1.0 0.9091)) +(: cnet_usedfor_370048ed67 (UsedFor blanketing warmth) (STV 1.0 0.9091)) +(: cnet_usedfor_bef0eac7d0 (UsedFor bleach whitening) (STV 1.0 0.9091)) +(: cnet_usedfor_0c5966deb0 (UsedFor bleacher sit_on) (STV 1.0 0.9091)) +(: cnet_usedfor_54555df9ac (UsedFor blow_dryer styling_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_f8ef0c6b78 (UsedFor blowdryer drying) (STV 1.0 0.9339)) +(: cnet_usedfor_9f290c185c (UsedFor board build) (STV 1.0 0.9572)) +(: cnet_usedfor_0a250988c0 (UsedFor board building) (STV 1.0 0.9091)) +(: cnet_usedfor_22af003ab8 (UsedFor board_game passing_time) (STV 1.0 0.9524)) +(: cnet_usedfor_1358cbaa21 (UsedFor boarding_room keeping_stuff) (STV 1.0 0.9091)) +(: cnet_usedfor_e1b06eec31 (UsedFor boarding_room stay_overnight) (STV 1.0 0.9091)) +(: cnet_usedfor_10fe37cb7d (UsedFor boat cross_water) (STV 1.0 0.9091)) +(: cnet_usedfor_c8eebb8d1b (UsedFor boat fishing) (STV 1.0 0.9572)) +(: cnet_usedfor_f043d06d5d (UsedFor boat floating_on_water) (STV 1.0 0.9524)) +(: cnet_usedfor_c501df3b4f (UsedFor boat rowing) (STV 1.0 0.9091)) +(: cnet_usedfor_bf26ba315e (UsedFor boat sailing) (STV 1.0 0.9524)) +(: cnet_usedfor_5fd7bdb9f7 (UsedFor boat travel) (STV 1.0 0.9454)) +(: cnet_usedfor_b96151d748 (UsedFor boat travel_on_water) (STV 1.0 0.9730)) +(: cnet_usedfor_aaa2ca079b (UsedFor boat water_skiing) (STV 1.0 0.9091)) +(: cnet_usedfor_a3e3385478 (UsedFor boat watersport) (STV 1.0 0.9091)) +(: cnet_usedfor_36c1696218 (UsedFor boat capsize) (STV 1.0 0.9091)) +(: cnet_usedfor_f0af80e857 (UsedFor boat transport) (STV 1.0 0.9091)) +(: cnet_usedfor_146db5a636 (UsedFor bobby_pin hold_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_a863085c9a (UsedFor bobby_pin hold_hair_in_place) (STV 1.0 0.9339)) +(: cnet_usedfor_c31b9a710f (UsedFor bobby_pin picking_lock) (STV 1.0 0.9454)) +(: cnet_usedfor_e87a5304b9 (UsedFor bolt fasten) (STV 1.0 0.9091)) +(: cnet_usedfor_f4ca20bf89 (UsedFor bolt screw) (STV 1.0 0.9091)) +(: cnet_usedfor_2262ae29d4 (UsedFor bomb blowing_thing_up) (STV 1.0 0.9719)) +(: cnet_usedfor_ad2375cec9 (UsedFor bomb blowing_up_building) (STV 1.0 0.9339)) +(: cnet_usedfor_66ba84bf4e (UsedFor bomb commit_genocide) (STV 1.0 0.9091)) +(: cnet_usedfor_447eb24434 (UsedFor bomb destroying_thing) (STV 1.0 0.9454)) +(: cnet_usedfor_bed30f9929 (UsedFor bomb kill_people) (STV 1.0 0.9091)) +(: cnet_usedfor_1b69913689 (UsedFor bomb killing_people) (STV 1.0 0.9608)) +(: cnet_usedfor_4dd60e6aa8 (UsedFor bomb scaring_people) (STV 1.0 0.9091)) +(: cnet_usedfor_d497f0ffb4 (UsedFor bomb terror) (STV 1.0 0.9339)) +(: cnet_usedfor_ab25be5792 (UsedFor bomb bombard) (STV 1.0 0.9091)) +(: cnet_usedfor_0593f30bdc (UsedFor bomb detonate) (STV 1.0 0.9091)) +(: cnet_usedfor_286e6eba1b (UsedFor bomb go_off) (STV 1.0 0.9091)) +(: cnet_usedfor_98cac810e0 (UsedFor bomb kill) (STV 1.0 0.9091)) +(: cnet_usedfor_114a64964c (UsedFor bomber detonate) (STV 1.0 0.9091)) +(: cnet_usedfor_4848bc410d (UsedFor bomber kill) (STV 1.0 0.9091)) +(: cnet_usedfor_056b555340 (UsedFor bomber launch) (STV 1.0 0.9091)) +(: cnet_usedfor_f1b8844262 (UsedFor bomber take_off) (STV 1.0 0.9091)) +(: cnet_usedfor_ce5c1b339b (UsedFor bone carving_into_artwork) (STV 1.0 0.9091)) +(: cnet_usedfor_71b46208f8 (UsedFor bone carving_into_needle) (STV 1.0 0.9091)) +(: cnet_usedfor_6a4e7615e7 (UsedFor bone chewing_on_by_happy_dog) (STV 1.0 0.9454)) +(: cnet_usedfor_932d846db2 (UsedFor bone giving_body_structure) (STV 1.0 0.9091)) +(: cnet_usedfor_ec318e680a (UsedFor bone make_bone_meal) (STV 1.0 0.9091)) +(: cnet_usedfor_28f0ffa074 (UsedFor bone making_great_soup_stock) (STV 1.0 0.9091)) +(: cnet_usedfor_98cf727d78 (UsedFor bone pleasing_dog) (STV 1.0 0.9091)) +(: cnet_usedfor_fa37abdf2d (UsedFor bone producing_red_blood_cell) (STV 1.0 0.9091)) +(: cnet_usedfor_49c433e46b (UsedFor bone reward_dog) (STV 1.0 0.9091)) +(: cnet_usedfor_63c6b711f0 (UsedFor bone structural_support) (STV 1.0 0.9091)) +(: cnet_usedfor_c0bdd658d5 (UsedFor bone support) (STV 1.0 0.9454)) +(: cnet_usedfor_9ba1e720b3 (UsedFor bone throwing_to) (STV 1.0 0.9091)) +(: cnet_usedfor_ac594863b6 (UsedFor book developing_perspective) (STV 1.0 0.9091)) +(: cnet_usedfor_b6ff659bb6 (UsedFor book education) (STV 1.0 0.9091)) +(: cnet_usedfor_73e28ab814 (UsedFor book entertainment) (STV 1.0 0.9339)) +(: cnet_usedfor_6aa223fee0 (UsedFor book learn) (STV 1.0 0.9091)) +(: cnet_usedfor_3b3854fadc (UsedFor book learn_from) (STV 1.0 0.9091)) +(: cnet_usedfor_40aa39a340 (UsedFor book learning) (STV 1.0 0.9763)) +(: cnet_usedfor_6d97f19d1f (UsedFor book recording_charge_in_police_register) (STV 1.0 0.9091)) +(: cnet_usedfor_fced4c5d9e (UsedFor book study) (STV 1.0 0.9091)) +(: cnet_usedfor_064035031c (UsedFor book studying) (STV 1.0 0.9091)) +(: cnet_usedfor_e4de1e1378 (UsedFor book_end holding_book_upright) (STV 1.0 0.9091)) +(: cnet_usedfor_932ff412b0 (UsedFor book_end keeping_book_from_falling) (STV 1.0 0.9524)) +(: cnet_usedfor_7fe955350d (UsedFor bookcase store_book) (STV 1.0 0.9091)) +(: cnet_usedfor_f5a38a9866 (UsedFor bookend keep_book_from_falling_over) (STV 1.0 0.9339)) +(: cnet_usedfor_85339f3fcf (UsedFor booking_office selling_ticket) (STV 1.0 0.9091)) +(: cnet_usedfor_d6eeae7e28 (UsedFor book reading) (STV 1.0 0.9091)) +(: cnet_usedfor_52ba454ee8 (UsedFor book store_information) (STV 1.0 0.9091)) +(: cnet_usedfor_246c3497d8 (UsedFor book teach) (STV 1.0 0.9091)) +(: cnet_usedfor_c2423454b7 (UsedFor bookshelf book) (STV 1.0 0.9339)) +(: cnet_usedfor_9ea03bbe1b (UsedFor bookshelf organizing_book) (STV 1.0 0.9339)) +(: cnet_usedfor_3f3277b2f9 (UsedFor bookshop buying_book_in) (STV 1.0 0.9339)) +(: cnet_usedfor_23cb662124 (UsedFor bookstore browsing_through_book) (STV 1.0 0.9091)) +(: cnet_usedfor_2b410f16b1 (UsedFor bookstore buy_book) (STV 1.0 0.9339)) +(: cnet_usedfor_13f6f8cc87 (UsedFor bookstore buying_book) (STV 1.0 0.9454)) +(: cnet_usedfor_53fda4cd56 (UsedFor boot walking) (STV 1.0 0.9339)) +(: cnet_usedfor_a010fdf820 (UsedFor boot keep_feet_warm) (STV 1.0 0.9091)) +(: cnet_usedfor_777b2c1bb8 (UsedFor bottle storing_liquid) (STV 1.0 0.9339)) +(: cnet_usedfor_7af13435c3 (UsedFor bottle hold) (STV 1.0 0.9091)) +(: cnet_usedfor_3a51abf4d6 (UsedFor bottle_of_vodka making_mixed_drink) (STV 1.0 0.9091)) +(: cnet_usedfor_e97970a2a5 (UsedFor bottle_opener beer) (STV 1.0 0.9091)) +(: cnet_usedfor_f203e352c0 (UsedFor boulevard travel_more_directly) (STV 1.0 0.9091)) +(: cnet_usedfor_0b6f7152da (UsedFor bow play) (STV 1.0 0.9091)) +(: cnet_usedfor_7272284f31 (UsedFor bow shoot) (STV 1.0 0.9091)) +(: cnet_usedfor_b6a8dd6c3b (UsedFor bow tie) (STV 1.0 0.9091)) +(: cnet_usedfor_3f98bc72bb (UsedFor bowl cut_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_b96d6ac38c (UsedFor bowl have_athletic_event) (STV 1.0 0.9091)) +(: cnet_usedfor_5e44c321e9 (UsedFor bowl have_outdoor_musical_event) (STV 1.0 0.9091)) +(: cnet_usedfor_1b7c86dada (UsedFor bowl hold_apple) (STV 1.0 0.9091)) +(: cnet_usedfor_b170d53910 (UsedFor bowl hold_apricot) (STV 1.0 0.9091)) +(: cnet_usedfor_8e643b2875 (UsedFor bowl hold_bean) (STV 1.0 0.9091)) +(: cnet_usedfor_c3118be6b9 (UsedFor bowl hold_blueberry) (STV 1.0 0.9091)) +(: cnet_usedfor_8883af9540 (UsedFor bowl hold_broth) (STV 1.0 0.9091)) +(: cnet_usedfor_fe4b79fbe8 (UsedFor bowl hold_cereal) (STV 1.0 0.9091)) +(: cnet_usedfor_1cdf4f141d (UsedFor bowl hold_cherry) (STV 1.0 0.9091)) +(: cnet_usedfor_525d08b599 (UsedFor bowl hold_chip) (STV 1.0 0.9091)) +(: cnet_usedfor_7f9853a9a4 (UsedFor bowl hold_cream) (STV 1.0 0.9091)) +(: cnet_usedfor_63e8512a6c (UsedFor bowl hold_cream_of_wheat) (STV 1.0 0.9091)) +(: cnet_usedfor_3e26950476 (UsedFor bowl hold_dip) (STV 1.0 0.9091)) +(: cnet_usedfor_d4201bff17 (UsedFor bowl hold_fig) (STV 1.0 0.9091)) +(: cnet_usedfor_1242b3ff90 (UsedFor bowl hold_fruit) (STV 1.0 0.9091)) +(: cnet_usedfor_ab65c3dfa8 (UsedFor bowl hold_grape) (STV 1.0 0.9091)) +(: cnet_usedfor_f239dbca3d (UsedFor bowl hold_hot_cereal) (STV 1.0 0.9091)) +(: cnet_usedfor_bf8a90c4d4 (UsedFor bowl hold_ice_cream) (STV 1.0 0.9091)) +(: cnet_usedfor_378e399acb (UsedFor bowl hold_liquid) (STV 1.0 0.9091)) +(: cnet_usedfor_2516055e4f (UsedFor bowl hold_marinade) (STV 1.0 0.9091)) +(: cnet_usedfor_85c4f30901 (UsedFor bowl hold_mixed_nut) (STV 1.0 0.9091)) +(: cnet_usedfor_fa5cccde93 (UsedFor bowl hold_mush) (STV 1.0 0.9091)) +(: cnet_usedfor_88295ff47d (UsedFor bowl hold_orange) (STV 1.0 0.9091)) +(: cnet_usedfor_0baf7f4808 (UsedFor bowl hold_peanut) (STV 1.0 0.9091)) +(: cnet_usedfor_3e5ae93948 (UsedFor bowl hold_popcorn) (STV 1.0 0.9091)) +(: cnet_usedfor_42922e58a5 (UsedFor bowl hold_relish) (STV 1.0 0.9091)) +(: cnet_usedfor_3cc85cf114 (UsedFor bowl hold_soup) (STV 1.0 0.9091)) +(: cnet_usedfor_4c6d5f4355 (UsedFor bowl hold_spice) (STV 1.0 0.9091)) +(: cnet_usedfor_60b63fb5f7 (UsedFor bowl hold_sugar) (STV 1.0 0.9091)) +(: cnet_usedfor_16105e7be4 (UsedFor bowl hold_tobacco_in_pipe) (STV 1.0 0.9091)) +(: cnet_usedfor_9a4450f0f4 (UsedFor bowl hold_wine) (STV 1.0 0.9091)) +(: cnet_usedfor_8ca814bd05 (UsedFor bowl mix_ingredient) (STV 1.0 0.9091)) +(: cnet_usedfor_a7d39408cb (UsedFor bowl play_football) (STV 1.0 0.9091)) +(: cnet_usedfor_aee973f001 (UsedFor bowl soup) (STV 1.0 0.9091)) +(: cnet_usedfor_a62b57d32d (UsedFor bowl hold) (STV 1.0 0.9091)) +(: cnet_usedfor_556ac7ad89 (UsedFor bowl serve) (STV 1.0 0.9091)) +(: cnet_usedfor_67e7891e01 (UsedFor box contain_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_9b0d56fe7c (UsedFor box containing_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_d4776e5daf (UsedFor box holding_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_1727a7ac64 (UsedFor box keeping_stuff_in) (STV 1.0 0.9091)) +(: cnet_usedfor_70f8b37598 (UsedFor box packing) (STV 1.0 0.9339)) +(: cnet_usedfor_78940e3094 (UsedFor box storage) (STV 1.0 0.9339)) +(: cnet_usedfor_4a08c14ddf (UsedFor box storing_in) (STV 1.0 0.9524)) +(: cnet_usedfor_f2b4ee7bcc (UsedFor box wrapping_gift_in) (STV 1.0 0.9091)) +(: cnet_usedfor_415f26f549 (UsedFor box accommodate) (STV 1.0 0.9091)) +(: cnet_usedfor_eddfa62a39 (UsedFor box hold) (STV 1.0 0.9091)) +(: cnet_usedfor_bf1fe75c39 (UsedFor box seat) (STV 1.0 0.9091)) +(: cnet_usedfor_9c582e508f (UsedFor box_office selling_ticket) (STV 1.0 0.9339)) +(: cnet_usedfor_0109ef2d0b (UsedFor brain invent_new_gadget) (STV 1.0 0.9091)) +(: cnet_usedfor_7ce18d648b (UsedFor brain thinking) (STV 1.0 0.9572)) +(: cnet_usedfor_a330d51703 (UsedFor brake fail) (STV 1.0 0.9091)) +(: cnet_usedfor_f07e2ecd00 (UsedFor brake stop) (STV 1.0 0.9091)) +(: cnet_usedfor_aa0e74e7ff (UsedFor brass_instrument make_music) (STV 1.0 0.9091)) +(: cnet_usedfor_77f9f4de34 (UsedFor brass_instrument making_music) (STV 1.0 0.9091)) +(: cnet_usedfor_cb5607aec9 (UsedFor brass_instrument playing) (STV 1.0 0.9091)) +(: cnet_usedfor_359e095762 (UsedFor bread baking) (STV 1.0 0.9091)) +(: cnet_usedfor_6562587c05 (UsedFor bread buttering) (STV 1.0 0.9091)) +(: cnet_usedfor_18f92df041 (UsedFor bread eating) (STV 1.0 0.9659)) +(: cnet_usedfor_58cd5f39c2 (UsedFor bread sandwiche) (STV 1.0 0.9339)) +(: cnet_usedfor_8f0e228f90 (UsedFor breathing getting_air_to_lung) (STV 1.0 0.9339)) +(: cnet_usedfor_aeb4d3208d (UsedFor breathing living) (STV 1.0 0.9454)) +(: cnet_usedfor_feab504354 (UsedFor breathing staying_alive) (STV 1.0 0.9091)) +(: cnet_usedfor_71e25feede (UsedFor breathing survival) (STV 1.0 0.9454)) +(: cnet_usedfor_531c542729 (UsedFor breathing_fresh_air clearing_lung) (STV 1.0 0.9091)) +(: cnet_usedfor_efdb60f6ae (UsedFor breathing_fresh_air getting_oxygen) (STV 1.0 0.9339)) +(: cnet_usedfor_6b099ca419 (UsedFor breathing_fresh_air relaxing) (STV 1.0 0.9091)) +(: cnet_usedfor_212a40173f (UsedFor brick construct) (STV 1.0 0.9091)) +(: cnet_usedfor_21836dfcd7 (UsedFor brick_row_house for_people_to_live_in) (STV 1.0 0.9091)) +(: cnet_usedfor_c42dfc846d (UsedFor brick_row_house living_in) (STV 1.0 0.9339)) +(: cnet_usedfor_c0ae9acb91 (UsedFor brick_row_house people_to_live_in) (STV 1.0 0.9091)) +(: cnet_usedfor_b1d97451a9 (UsedFor brick_row_house real_estate_broker_to_sell) (STV 1.0 0.9091)) +(: cnet_usedfor_a772e23600 (UsedFor bridge cross_bay) (STV 1.0 0.9454)) +(: cnet_usedfor_4582eb8c8c (UsedFor bridge cross_over) (STV 1.0 0.9091)) +(: cnet_usedfor_e8fefb1a93 (UsedFor bridge cross_over_body_of_water) (STV 1.0 0.9454)) +(: cnet_usedfor_022a0309d1 (UsedFor bridge cross_river) (STV 1.0 0.9454)) +(: cnet_usedfor_e77272dced (UsedFor bridge cross_water) (STV 1.0 0.9339)) +(: cnet_usedfor_05e75ef14b (UsedFor bridge crossing_river) (STV 1.0 0.9524)) +(: cnet_usedfor_7388c4fe30 (UsedFor bridge crossing_sometihng) (STV 1.0 0.9091)) +(: cnet_usedfor_7d40461b47 (UsedFor bridge_arch cross_river) (STV 1.0 0.9091)) +(: cnet_usedfor_675e089702 (UsedFor bridge_arch supporting_bridge) (STV 1.0 0.9091)) +(: cnet_usedfor_a0c7ac78a9 (UsedFor bridge_railing keeping_people_from_falling_off) (STV 1.0 0.9454)) +(: cnet_usedfor_9efea03247 (UsedFor bridge_railing safety) (STV 1.0 0.9454)) +(: cnet_usedfor_8d90405eaa (UsedFor briefcase carry_paper) (STV 1.0 0.9339)) +(: cnet_usedfor_c902b270b4 (UsedFor briefcase carrying_paper) (STV 1.0 0.9339)) +(: cnet_usedfor_58e048e6ce (UsedFor briefcase transporting_document) (STV 1.0 0.9091)) +(: cnet_usedfor_d51770c4f8 (UsedFor bringing_home_fish cooking_dinner) (STV 1.0 0.9091)) +(: cnet_usedfor_838716ccb1 (UsedFor bringing_home_fish cooking_for_dinner) (STV 1.0 0.9091)) +(: cnet_usedfor_500f451f94 (UsedFor bringing_home_fish dinner) (STV 1.0 0.9091)) +(: cnet_usedfor_e09823fc88 (UsedFor bringing_home_fish feeding_cat) (STV 1.0 0.9091)) +(: cnet_usedfor_b890e2a020 (UsedFor bringing_home_fish making_dinner) (STV 1.0 0.9454)) +(: cnet_usedfor_6733794ec3 (UsedFor bringing_home_fish preparing_to_cook_fish_dinner) (STV 1.0 0.9091)) +(: cnet_usedfor_9cf3fcc08f (UsedFor bringing_in_verdict judge_to_do) (STV 1.0 0.9339)) +(: cnet_usedfor_de5b7c7b5f (UsedFor bringing_in_verdict judging) (STV 1.0 0.9091)) +(: cnet_usedfor_3aa6578eec (UsedFor bringing_in_verdict jury_to_do) (STV 1.0 0.9091)) +(: cnet_usedfor_1de31c49ec (UsedFor bringing_suit getting_revenge) (STV 1.0 0.9091)) +(: cnet_usedfor_b996114716 (UsedFor broadcast_studio sending_radio_signal) (STV 1.0 0.9091)) +(: cnet_usedfor_5977aba807 (UsedFor broadcast_studio sending_signal) (STV 1.0 0.9091)) +(: cnet_usedfor_7b02083a99 (UsedFor broom sweeping) (STV 1.0 0.9608)) +(: cnet_usedfor_87408c690b (UsedFor broom sweep_floor) (STV 1.0 0.9454)) +(: cnet_usedfor_cc555e9791 (UsedFor brownstone live_in) (STV 1.0 0.9454)) +(: cnet_usedfor_e8f3c8b2bf (UsedFor brownstone living_in) (STV 1.0 0.9339)) +(: cnet_usedfor_2fa948acac (UsedFor brush painting) (STV 1.0 0.9339)) +(: cnet_usedfor_323b175888 (UsedFor brush brush) (STV 1.0 0.9091)) +(: cnet_usedfor_1a14974381 (UsedFor brush paint) (STV 1.0 0.9091)) +(: cnet_usedfor_8baacf72dc (UsedFor bucket carry_water) (STV 1.0 0.9339)) +(: cnet_usedfor_eb5415fbc7 (UsedFor bucket carrying_liquid) (STV 1.0 0.9572)) +(: cnet_usedfor_480f4f808c (UsedFor bucket hold) (STV 1.0 0.9091)) +(: cnet_usedfor_06b1359c9e (UsedFor buffet breakfast) (STV 1.0 0.9091)) +(: cnet_usedfor_2d7ade595c (UsedFor buffet dessert) (STV 1.0 0.9091)) +(: cnet_usedfor_bb855c981f (UsedFor buffet food) (STV 1.0 0.9091)) +(: cnet_usedfor_c9fd3cedd4 (UsedFor bugle play_music) (STV 1.0 0.9091)) +(: cnet_usedfor_3b1f8b2a29 (UsedFor building shelter) (STV 1.0 0.9339)) +(: cnet_usedfor_1c8a89b8cb (UsedFor bulb bloom) (STV 1.0 0.9091)) +(: cnet_usedfor_b97a05b14a (UsedFor bull_s_horn goring) (STV 1.0 0.9091)) +(: cnet_usedfor_f5660c6804 (UsedFor bullet killing) (STV 1.0 0.9608)) +(: cnet_usedfor_fbc35ea7ef (UsedFor bullet murdering) (STV 1.0 0.9339)) +(: cnet_usedfor_1de42fb914 (UsedFor bullet projectile) (STV 1.0 0.9339)) +(: cnet_usedfor_bdc0a5b3cc (UsedFor bullet shooting) (STV 1.0 0.9339)) +(: cnet_usedfor_6a2a332d2f (UsedFor bullet wounding) (STV 1.0 0.9339)) +(: cnet_usedfor_15a14fe769 (UsedFor bullet shoot) (STV 1.0 0.9091)) +(: cnet_usedfor_7b549f66a0 (UsedFor bullet_train transport) (STV 1.0 0.9091)) +(: cnet_usedfor_9b1e3575fd (UsedFor bullhorn amplifying_voice) (STV 1.0 0.9339)) +(: cnet_usedfor_b92b2ee45e (UsedFor bungalow live_in) (STV 1.0 0.9524)) +(: cnet_usedfor_f2710e92da (UsedFor bungalow living_in) (STV 1.0 0.9091)) +(: cnet_usedfor_92cb6fa4f1 (UsedFor bureau clothing) (STV 1.0 0.9339)) +(: cnet_usedfor_44d3dab5a3 (UsedFor bureau storage) (STV 1.0 0.9339)) +(: cnet_usedfor_d656f0c2a6 (UsedFor bureau storing_clothe) (STV 1.0 0.9091)) +(: cnet_usedfor_5dcf35a083 (UsedFor burlap make_bag) (STV 1.0 0.9339)) +(: cnet_usedfor_2e8ad6887b (UsedFor burlap making_bag) (STV 1.0 0.9091)) +(: cnet_usedfor_6021177217 (UsedFor burying_cat hiding_body_from_buzzard) (STV 1.0 0.9091)) +(: cnet_usedfor_b43321a9a7 (UsedFor bus transportation) (STV 1.0 0.9339)) +(: cnet_usedfor_3406a94bf2 (UsedFor bus travel) (STV 1.0 0.9339)) +(: cnet_usedfor_c8d08489e5 (UsedFor bus transport) (STV 1.0 0.9091)) +(: cnet_usedfor_ca0c3103a2 (UsedFor bus_pass getting_around) (STV 1.0 0.9091)) +(: cnet_usedfor_e010d04b9a (UsedFor bus_pass travel_on_bus) (STV 1.0 0.9091)) +(: cnet_usedfor_345463170e (UsedFor bus_seat seating_passenger) (STV 1.0 0.9091)) +(: cnet_usedfor_a98f72fa42 (UsedFor bus_seat sitting) (STV 1.0 0.9091)) +(: cnet_usedfor_9247957f5d (UsedFor bus_shelter waiting_for_bus) (STV 1.0 0.9339)) +(: cnet_usedfor_025e39f55f (UsedFor bus_station traveller) (STV 1.0 0.9091)) +(: cnet_usedfor_0b7a156eb2 (UsedFor bus_stop getting_off_of_bus) (STV 1.0 0.9091)) +(: cnet_usedfor_a666a1b1dd (UsedFor bus_stop getting_on_bus) (STV 1.0 0.9091)) +(: cnet_usedfor_5c8bcc2859 (UsedFor bus_stop wait_for_bus) (STV 1.0 0.9693)) +(: cnet_usedfor_245a0a7989 (UsedFor bus_stop waiting_for_bus) (STV 1.0 0.9693)) +(: cnet_usedfor_237925e608 (UsedFor business making_money) (STV 1.0 0.9524)) +(: cnet_usedfor_6c8a62d9c9 (UsedFor business_class_airplane_seat businessperson) (STV 1.0 0.9091)) +(: cnet_usedfor_3bedc60ae1 (UsedFor butler answering_door) (STV 1.0 0.9091)) +(: cnet_usedfor_5553d345b7 (UsedFor butter flavoring) (STV 1.0 0.9091)) +(: cnet_usedfor_3a73efcb3d (UsedFor butterfly_net catching_insect) (STV 1.0 0.9091)) +(: cnet_usedfor_2be5032822 (UsedFor button fasten) (STV 1.0 0.9091)) +(: cnet_usedfor_f8588ccfe5 (UsedFor button pin) (STV 1.0 0.9091)) +(: cnet_usedfor_f4bb264ec2 (UsedFor button fasten_pant) (STV 1.0 0.9091)) +(: cnet_usedfor_8234757197 (UsedFor buying owning) (STV 1.0 0.9091)) +(: cnet_usedfor_7eab84f176 (UsedFor buying_beer forgetting) (STV 1.0 0.9091)) +(: cnet_usedfor_f0333be793 (UsedFor buying_christma_present fun) (STV 1.0 0.9572)) +(: cnet_usedfor_61626d3737 (UsedFor buying_food preparing_meal) (STV 1.0 0.9091)) +(: cnet_usedfor_95ed9f29b8 (UsedFor buying_for_loved_one making_happy) (STV 1.0 0.9091)) +(: cnet_usedfor_8eceff7aaf (UsedFor buying_for_loved_one saying_sorry) (STV 1.0 0.9091)) +(: cnet_usedfor_dd642ff69c (UsedFor buying_for_loved_one showing_love) (STV 1.0 0.9339)) +(: cnet_usedfor_4159c7b169 (UsedFor buying_for_loved_one surprise) (STV 1.0 0.9091)) +(: cnet_usedfor_69f164d509 (UsedFor buying_fresh_fruit_and_vegetable making_salad) (STV 1.0 0.9339)) +(: cnet_usedfor_f6d72c91a8 (UsedFor buying_house investing) (STV 1.0 0.9091)) +(: cnet_usedfor_4ae19c29e8 (UsedFor buying_house living_in) (STV 1.0 0.9091)) +(: cnet_usedfor_e63884e359 (UsedFor buying_house making_investment) (STV 1.0 0.9091)) +(: cnet_usedfor_29747741fb (UsedFor buying_present birthday) (STV 1.0 0.9339)) +(: cnet_usedfor_2506f728ef (UsedFor buying_present christma) (STV 1.0 0.9524)) +(: cnet_usedfor_7acd98428a (UsedFor buying_present_for_other celebrating_birthday) (STV 1.0 0.9339)) +(: cnet_usedfor_1749a0daae (UsedFor buying_product consumption) (STV 1.0 0.9091)) +(: cnet_usedfor_b80f8e7c52 (UsedFor cabinet storage) (STV 1.0 0.9091)) +(: cnet_usedfor_d66df48c81 (UsedFor cabinet store_object) (STV 1.0 0.9454)) +(: cnet_usedfor_4f4fe2bb52 (UsedFor cafe meet_people) (STV 1.0 0.9091)) +(: cnet_usedfor_29c16dcf10 (UsedFor cafe meeting_friend) (STV 1.0 0.9091)) +(: cnet_usedfor_9a1f7272ee (UsedFor cafe meeting_people) (STV 1.0 0.9454)) +(: cnet_usedfor_c11b70b4c3 (UsedFor cake birthday) (STV 1.0 0.9091)) +(: cnet_usedfor_72ef18ece9 (UsedFor cake celebrate) (STV 1.0 0.9339)) +(: cnet_usedfor_f236b994d6 (UsedFor cake decorating) (STV 1.0 0.9091)) +(: cnet_usedfor_1daffafd4c (UsedFor cake dessert) (STV 1.0 0.9339)) +(: cnet_usedfor_35ecea9b68 (UsedFor cake eating) (STV 1.0 0.9454)) +(: cnet_usedfor_a2baa1221f (UsedFor cake gift) (STV 1.0 0.9091)) +(: cnet_usedfor_e1114137ef (UsedFor cake wedding) (STV 1.0 0.9091)) +(: cnet_usedfor_0d23738dfc (UsedFor calculator add_number) (STV 1.0 0.9339)) +(: cnet_usedfor_51cbcbf7d3 (UsedFor calculator adding_number) (STV 1.0 0.9339)) +(: cnet_usedfor_111ad2486b (UsedFor calculator calculating_number) (STV 1.0 0.9091)) +(: cnet_usedfor_ab8344b5bd (UsedFor calculator do_math) (STV 1.0 0.9572)) +(: cnet_usedfor_6ac29c1b6c (UsedFor calculator do_mathematic) (STV 1.0 0.9091)) +(: cnet_usedfor_8c0759e8ab (UsedFor calendar keeping_track_of_time) (STV 1.0 0.9524)) +(: cnet_usedfor_4e8bc3d625 (UsedFor calendar_book planning) (STV 1.0 0.9454)) +(: cnet_usedfor_1642020f81 (UsedFor calendar_book planning_month_or_two_ahead) (STV 1.0 0.9091)) +(: cnet_usedfor_0f6dce7dea (UsedFor calendar_book planning_week_or_two_ahead) (STV 1.0 0.9091)) +(: cnet_usedfor_efef439e5f (UsedFor calendar_pad finding_out_date) (STV 1.0 0.9091)) +(: cnet_usedfor_e51484d0a5 (UsedFor call communicate) (STV 1.0 0.9339)) +(: cnet_usedfor_0cdc2d48c9 (UsedFor call communicating) (STV 1.0 0.9091)) +(: cnet_usedfor_584ea746b0 (UsedFor call contact) (STV 1.0 0.9339)) +(: cnet_usedfor_264294a86c (UsedFor camera take_picture) (STV 1.0 0.9740)) +(: cnet_usedfor_2b0aabab08 (UsedFor camera photograph) (STV 1.0 0.9091)) +(: cnet_usedfor_423443e06f (UsedFor camera picture) (STV 1.0 0.9091)) +(: cnet_usedfor_caeedb555b (UsedFor camera take_photograph) (STV 1.0 0.9091)) +(: cnet_usedfor_244d17ea86 (UsedFor can storing_food) (STV 1.0 0.9091)) +(: cnet_usedfor_4a8336b23f (UsedFor can_of_soda quenching_thirst) (STV 1.0 0.9091)) +(: cnet_usedfor_0445a1cbd5 (UsedFor can_of_soda refreshment) (STV 1.0 0.9091)) +(: cnet_usedfor_c59ec5132d (UsedFor canal connect_two_body_of_water) (STV 1.0 0.9091)) +(: cnet_usedfor_78bdee2cba (UsedFor candle decoration) (STV 1.0 0.9091)) +(: cnet_usedfor_619c11f13a (UsedFor candle light_room) (STV 1.0 0.9608)) +(: cnet_usedfor_935cc124b3 (UsedFor candle provide_light) (STV 1.0 0.9091)) +(: cnet_usedfor_90d16775c6 (UsedFor candle light) (STV 1.0 0.9091)) +(: cnet_usedfor_688d32fa41 (UsedFor candle luminosity) (STV 1.0 0.9091)) +(: cnet_usedfor_840860a83e (UsedFor cane hold) (STV 1.0 0.9091)) +(: cnet_usedfor_4e0b182501 (UsedFor cane support) (STV 1.0 0.9091)) +(: cnet_usedfor_6c7e01345c (UsedFor cannabis pleasure) (STV 1.0 0.9091)) +(: cnet_usedfor_70038cd8c7 (UsedFor cannon fire_cannon_ball) (STV 1.0 0.9091)) +(: cnet_usedfor_3506555c01 (UsedFor cannon killing_enemy) (STV 1.0 0.9339)) +(: cnet_usedfor_3a3b4254d3 (UsedFor cannon shoot_cannon_ball) (STV 1.0 0.9454)) +(: cnet_usedfor_f5d2e676ad (UsedFor cannon shoot_cannonball) (STV 1.0 0.9091)) +(: cnet_usedfor_9384f505fb (UsedFor cannon shooting_cannonball) (STV 1.0 0.9454)) +(: cnet_usedfor_debe9d21ed (UsedFor cannon war) (STV 1.0 0.9091)) +(: cnet_usedfor_a7b81be691 (UsedFor cannonball sinking_ship) (STV 1.0 0.9091)) +(: cnet_usedfor_1a17c2caee (UsedFor canoe having_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_888cc21448 (UsedFor can transfer_gasoline) (STV 1.0 0.9091)) +(: cnet_usedfor_8b185309d6 (UsedFor canva covering) (STV 1.0 0.9091)) +(: cnet_usedfor_75d198d920 (UsedFor canva paint) (STV 1.0 0.9091)) +(: cnet_usedfor_bb2a36f76a (UsedFor canva paint_picture_on) (STV 1.0 0.9091)) +(: cnet_usedfor_08c7039437 (UsedFor canva painting) (STV 1.0 0.9091)) +(: cnet_usedfor_960a453a02 (UsedFor canva painting_on) (STV 1.0 0.9730)) +(: cnet_usedfor_52c2c2b069 (UsedFor capital begin_sentence) (STV 1.0 0.9091)) +(: cnet_usedfor_a4262c3dbd (UsedFor captain being_army_company_commander) (STV 1.0 0.9091)) +(: cnet_usedfor_6c3464b855 (UsedFor captain commanding_ship) (STV 1.0 0.9091)) +(: cnet_usedfor_a58cd55aaf (UsedFor car fun) (STV 1.0 0.9339)) +(: cnet_usedfor_034891e121 (UsedFor car getting_to_work) (STV 1.0 0.9091)) +(: cnet_usedfor_dd002a6f15 (UsedFor car drive) (STV 1.0 0.9091)) +(: cnet_usedfor_31a6640fa4 (UsedFor car transport) (STV 1.0 0.9091)) +(: cnet_usedfor_f8b50baede (UsedFor car_park park_car) (STV 1.0 0.9339)) +(: cnet_usedfor_bd84a77247 (UsedFor car_park parking_car) (STV 1.0 0.9091)) +(: cnet_usedfor_6eefeeac26 (UsedFor car_park storing_car) (STV 1.0 0.9091)) +(: cnet_usedfor_680cd3c1f0 (UsedFor carafe serve_wine) (STV 1.0 0.9091)) +(: cnet_usedfor_237e62f8b8 (UsedFor card birthday) (STV 1.0 0.9339)) +(: cnet_usedfor_e3f4010ea3 (UsedFor card christma) (STV 1.0 0.9339)) +(: cnet_usedfor_fbad06fddd (UsedFor card identification) (STV 1.0 0.9339)) +(: cnet_usedfor_149c4aa6c9 (UsedFor card introduce_yourself) (STV 1.0 0.9091)) +(: cnet_usedfor_ef746977ac (UsedFor card playing_game_with) (STV 1.0 0.9339)) +(: cnet_usedfor_9fe1fe9270 (UsedFor card playing_poker) (STV 1.0 0.9339)) +(: cnet_usedfor_adfb79fbe6 (UsedFor card_case carry_business_card) (STV 1.0 0.9339)) +(: cnet_usedfor_1f920cdab5 (UsedFor card_case carrying_card) (STV 1.0 0.9091)) +(: cnet_usedfor_55f7b10e52 (UsedFor card_case keeping_card) (STV 1.0 0.9339)) +(: cnet_usedfor_d9be8ce364 (UsedFor card_catalog finding_book_at_library) (STV 1.0 0.9091)) +(: cnet_usedfor_05b95c8a05 (UsedFor card_catalog organization_of_information) (STV 1.0 0.9091)) +(: cnet_usedfor_c5f6a90dac (UsedFor cardboard making_boxe) (STV 1.0 0.9454)) +(: cnet_usedfor_71ede8cb11 (UsedFor carpet cover_floor) (STV 1.0 0.9091)) +(: cnet_usedfor_3feb5bfc64 (UsedFor carpet covering_floor) (STV 1.0 0.9091)) +(: cnet_usedfor_188d1eb352 (UsedFor carpet flooring) (STV 1.0 0.9091)) +(: cnet_usedfor_954cdb0cb3 (UsedFor carpet insulation) (STV 1.0 0.9091)) +(: cnet_usedfor_8b23ba68b2 (UsedFor carpet walking_on) (STV 1.0 0.9524)) +(: cnet_usedfor_8b86f2e994 (UsedFor carpeting comfort) (STV 1.0 0.9091)) +(: cnet_usedfor_3ae745f349 (UsedFor carpeting cover_bare_floor) (STV 1.0 0.9091)) +(: cnet_usedfor_62bf19f21b (UsedFor carpeting covering_floor) (STV 1.0 0.9707)) +(: cnet_usedfor_dd3f3f560b (UsedFor carpeting decoration) (STV 1.0 0.9339)) +(: cnet_usedfor_ee03b38abd (UsedFor carpeting home_decoration) (STV 1.0 0.9339)) +(: cnet_usedfor_aa63f08e4e (UsedFor carpeting warmth) (STV 1.0 0.9339)) +(: cnet_usedfor_14940ecc01 (UsedFor carrier_bag carry) (STV 1.0 0.9454)) +(: cnet_usedfor_9a32822583 (UsedFor carry_on_bag airline_travel) (STV 1.0 0.9091)) +(: cnet_usedfor_805b55b829 (UsedFor carry_on_bag carry_personal_item) (STV 1.0 0.9091)) +(: cnet_usedfor_879d7392c1 (UsedFor carry_on_bag magazine) (STV 1.0 0.9091)) +(: cnet_usedfor_f0130f296e (UsedFor case_of_beer have_party) (STV 1.0 0.9339)) +(: cnet_usedfor_01b82f4f4f (UsedFor case_of_beer holding_beer) (STV 1.0 0.9339)) +(: cnet_usedfor_437ea824b7 (UsedFor cash bribe) (STV 1.0 0.9091)) +(: cnet_usedfor_b4bbe6702d (UsedFor cash buy_thing_with) (STV 1.0 0.9339)) +(: cnet_usedfor_2ef4b3e05e (UsedFor cash_token pay_for_subway) (STV 1.0 0.9091)) +(: cnet_usedfor_8403735464 (UsedFor cash_token riding_subway) (STV 1.0 0.9454)) +(: cnet_usedfor_f9afc6ce3a (UsedFor cashing_in getting_money) (STV 1.0 0.9339)) +(: cnet_usedfor_e3830829d4 (UsedFor castanet create_percussion_music) (STV 1.0 0.9091)) +(: cnet_usedfor_b52a7e7972 (UsedFor castanet dancing) (STV 1.0 0.9091)) +(: cnet_usedfor_9f0c4b5a56 (UsedFor castanet playing_spanish_music) (STV 1.0 0.9339)) +(: cnet_usedfor_88b2a7a4c9 (UsedFor cat catch_mice) (STV 1.0 0.9524)) +(: cnet_usedfor_3fa6fac4aa (UsedFor cat companionship) (STV 1.0 0.9524)) +(: cnet_usedfor_b6651a342e (UsedFor cat pet) (STV 1.0 0.9454)) +(: cnet_usedfor_85c0868a07 (UsedFor cave hiding) (STV 1.0 0.9091)) +(: cnet_usedfor_4a72816c1a (UsedFor cd distribution_of_music) (STV 1.0 0.9091)) +(: cnet_usedfor_f8e1b7330e (UsedFor cd listening_to_music) (STV 1.0 0.9454)) +(: cnet_usedfor_6041ca4ef4 (UsedFor cd store_information) (STV 1.0 0.9091)) +(: cnet_usedfor_b351847ae6 (UsedFor cd storing_data) (STV 1.0 0.9339)) +(: cnet_usedfor_4591cc7433 (UsedFor cd storing_information) (STV 1.0 0.9339)) +(: cnet_usedfor_c0f59eb53e (UsedFor cd writing_data_optically_with_laser) (STV 1.0 0.9091)) +(: cnet_usedfor_d8b14e28a9 (UsedFor celebrating 50_year_anniversary) (STV 1.0 0.9091)) +(: cnet_usedfor_d52ecbaab3 (UsedFor celebrating fun) (STV 1.0 0.9454)) +(: cnet_usedfor_bfee196904 (UsedFor celebrating partying) (STV 1.0 0.9091)) +(: cnet_usedfor_59a2915e2a (UsedFor cellar storing_wine) (STV 1.0 0.9091)) +(: cnet_usedfor_1674693212 (UsedFor cello play_quartet) (STV 1.0 0.9091)) +(: cnet_usedfor_e918efb72d (UsedFor cellphone communication) (STV 1.0 0.9339)) +(: cnet_usedfor_ece7349878 (UsedFor cellular_telephone call) (STV 1.0 0.9091)) +(: cnet_usedfor_a5d4295847 (UsedFor cereal_bowl eat_cereal) (STV 1.0 0.9608)) +(: cnet_usedfor_a9cf380419 (UsedFor cereal_bowl eating_cereal) (STV 1.0 0.9339)) +(: cnet_usedfor_dd718704f7 (UsedFor chain chain) (STV 1.0 0.9091)) +(: cnet_usedfor_3205e3859b (UsedFor chain connect) (STV 1.0 0.9091)) +(: cnet_usedfor_dfcdbbdbf2 (UsedFor chain fasten) (STV 1.0 0.9091)) +(: cnet_usedfor_b0d5b36841 (UsedFor chainsaw cutting_down_tree) (STV 1.0 0.9091)) +(: cnet_usedfor_bed5ed9ca5 (UsedFor chair resting) (STV 1.0 0.9454)) +(: cnet_usedfor_d063e37c5e (UsedFor chair people) (STV 1.0 0.9091)) +(: cnet_usedfor_82b048c358 (UsedFor chair seat) (STV 1.0 0.9091)) +(: cnet_usedfor_f5468bdc8d (UsedFor chalk mark) (STV 1.0 0.9091)) +(: cnet_usedfor_264161a397 (UsedFor chalk write) (STV 1.0 0.9091)) +(: cnet_usedfor_28070a1b36 (UsedFor chalk writing) (STV 1.0 0.9091)) +(: cnet_usedfor_00a5db655d (UsedFor changing_appearance disguising_yourself) (STV 1.0 0.9454)) +(: cnet_usedfor_59e461d2ce (UsedFor changing_appearance fooling_people) (STV 1.0 0.9091)) +(: cnet_usedfor_ee34f68ed5 (UsedFor changing_room trying_on_clothe) (STV 1.0 0.9091)) +(: cnet_usedfor_e3184d6195 (UsedFor changing_society enforcing_rule) (STV 1.0 0.9091)) +(: cnet_usedfor_87e207363a (UsedFor changing_society furthering_good_cause) (STV 1.0 0.9091)) +(: cnet_usedfor_a4a83abfb6 (UsedFor changing_society good_of_people) (STV 1.0 0.9091)) +(: cnet_usedfor_91827a23ae (UsedFor changing_society improving_condition) (STV 1.0 0.9091)) +(: cnet_usedfor_e7d434a62c (UsedFor changing_society improving_quality_of_people_s_live) (STV 1.0 0.9091)) +(: cnet_usedfor_46837cc69b (UsedFor changing_society increasing_fairness) (STV 1.0 0.9091)) +(: cnet_usedfor_ab58707134 (UsedFor changing_society making_difference) (STV 1.0 0.9091)) +(: cnet_usedfor_4162e6aeb5 (UsedFor changing_society politician_and_activist) (STV 1.0 0.9091)) +(: cnet_usedfor_b355f741e6 (UsedFor changing_society righting_wrong) (STV 1.0 0.9091)) +(: cnet_usedfor_a907281ac7 (UsedFor chapel get_married) (STV 1.0 0.9091)) +(: cnet_usedfor_e6dc3523b1 (UsedFor chapel getting_married) (STV 1.0 0.9524)) +(: cnet_usedfor_dbd5c9a8fc (UsedFor chapel meditation) (STV 1.0 0.9339)) +(: cnet_usedfor_afdd0fb03e (UsedFor chapel praying) (STV 1.0 0.9636)) +(: cnet_usedfor_53385a926d (UsedFor chapel praying_to_god) (STV 1.0 0.9091)) +(: cnet_usedfor_f2a9dff92a (UsedFor chapel worship) (STV 1.0 0.9091)) +(: cnet_usedfor_f3ed6d1444 (UsedFor chapel worshipping) (STV 1.0 0.9339)) +(: cnet_usedfor_4975c489be (UsedFor chatting_with_friend being_social) (STV 1.0 0.9339)) +(: cnet_usedfor_741feea3f1 (UsedFor chatting_with_friend catching_up_with_each_other) (STV 1.0 0.9091)) +(: cnet_usedfor_d60e0c1b86 (UsedFor chatting_with_friend exchanging_information) (STV 1.0 0.9091)) +(: cnet_usedfor_d9a1ed603d (UsedFor chatting_with_friend gossiping) (STV 1.0 0.9091)) +(: cnet_usedfor_1e1a6d7b60 (UsedFor chatting_with_friend keeping_friend) (STV 1.0 0.9091)) +(: cnet_usedfor_a2285ac2b3 (UsedFor chatting_with_friend passing_time) (STV 1.0 0.9339)) +(: cnet_usedfor_79c2a43043 (UsedFor chatting_with_friend socialising) (STV 1.0 0.9091)) +(: cnet_usedfor_20c09f9967 (UsedFor check pay) (STV 1.0 0.9454)) +(: cnet_usedfor_e844162ab5 (UsedFor check pay_bill) (STV 1.0 0.9339)) +(: cnet_usedfor_d51880eef0 (UsedFor check pay_for) (STV 1.0 0.9091)) +(: cnet_usedfor_81bc0735be (UsedFor check_in_counter checking_in) (STV 1.0 0.9454)) +(: cnet_usedfor_e5c783d0f6 (UsedFor check_in_counter checking_out) (STV 1.0 0.9339)) +(: cnet_usedfor_793423b56c (UsedFor checkbook writing_check) (STV 1.0 0.9339)) +(: cnet_usedfor_e9af8cba70 (UsedFor checkbook_cover protect_check) (STV 1.0 0.9091)) +(: cnet_usedfor_8d3b52bc97 (UsedFor checkbook_cover protecting_check) (STV 1.0 0.9339)) +(: cnet_usedfor_c44a297f02 (UsedFor checkbook_holder holding_checkbook) (STV 1.0 0.9524)) +(: cnet_usedfor_41201ca007 (UsedFor checkbook_holder holding_check) (STV 1.0 0.9339)) +(: cnet_usedfor_97de2a9020 (UsedFor checking_vital_sign doctor) (STV 1.0 0.9091)) +(: cnet_usedfor_cb70f52b5f (UsedFor checking_vital_sign dying) (STV 1.0 0.9091)) +(: cnet_usedfor_5ca79974fc (UsedFor checking_vital_sign making_sure_alive) (STV 1.0 0.9339)) +(: cnet_usedfor_2bf791ba5a (UsedFor checking_vital_sign nurse) (STV 1.0 0.9091)) +(: cnet_usedfor_23062535e0 (UsedFor checking_vital_sign seeing_if_alive) (STV 1.0 0.9091)) +(: cnet_usedfor_5d5379a0d8 (UsedFor cheque buy) (STV 1.0 0.9091)) +(: cnet_usedfor_d37458b653 (UsedFor cheque pay_bill) (STV 1.0 0.9091)) +(: cnet_usedfor_fcc13b9744 (UsedFor cheque paying_bill) (STV 1.0 0.9524)) +(: cnet_usedfor_6917ee6a0e (UsedFor cheque_book paying_bill) (STV 1.0 0.9091)) +(: cnet_usedfor_5028a34fda (UsedFor cheque_book paying_money) (STV 1.0 0.9091)) +(: cnet_usedfor_6c3da12ed1 (UsedFor cheque_book writing_cheque) (STV 1.0 0.9339)) +(: cnet_usedfor_2472dec485 (UsedFor cheque_book_cover protecting_cheque_against_damage) (STV 1.0 0.9339)) +(: cnet_usedfor_b7667579b5 (UsedFor cheque_book_holder balancing_check_book) (STV 1.0 0.9091)) +(: cnet_usedfor_bb77009b2e (UsedFor chess_bishop checkmate_king) (STV 1.0 0.9091)) +(: cnet_usedfor_3c8a990628 (UsedFor chess_bishop traversing_diagnonally) (STV 1.0 0.9091)) +(: cnet_usedfor_1671e5398c (UsedFor chess_board challenging_chess_opponent) (STV 1.0 0.9091)) +(: cnet_usedfor_f9b5e1f251 (UsedFor chess_board entertainment) (STV 1.0 0.9339)) +(: cnet_usedfor_841d98e318 (UsedFor chess_board play_chess) (STV 1.0 0.9677)) +(: cnet_usedfor_5fc82e49aa (UsedFor chess_board playing_checker) (STV 1.0 0.9091)) +(: cnet_usedfor_7675fae878 (UsedFor chess_board playing_chess) (STV 1.0 0.9339)) +(: cnet_usedfor_e3d1555b5a (UsedFor chess_board playing_game_of_chess) (STV 1.0 0.9339)) +(: cnet_usedfor_8b61e2be02 (UsedFor chess_board playing_game) (STV 1.0 0.9339)) +(: cnet_usedfor_a8bf9fa0cb (UsedFor chess_king playing_chess) (STV 1.0 0.9524)) +(: cnet_usedfor_298aa0e2bb (UsedFor chess_knight playing_chess) (STV 1.0 0.9524)) +(: cnet_usedfor_a4a2781758 (UsedFor chess_pawn chess_game) (STV 1.0 0.9091)) +(: cnet_usedfor_b9617e73ed (UsedFor chess_pawn playing_chess) (STV 1.0 0.9091)) +(: cnet_usedfor_fd1d2c4c27 (UsedFor chess_pawn sacrificing) (STV 1.0 0.9339)) +(: cnet_usedfor_6363cad572 (UsedFor chess_queen play_game_of_chess) (STV 1.0 0.9454)) +(: cnet_usedfor_bf2fd4c14d (UsedFor chess_queen playing_chess) (STV 1.0 0.9339)) +(: cnet_usedfor_a090bc73f7 (UsedFor chess_set fun) (STV 1.0 0.9091)) +(: cnet_usedfor_01553edc96 (UsedFor chess_set have_fun) (STV 1.0 0.9524)) +(: cnet_usedfor_1badea3505 (UsedFor chess_set play) (STV 1.0 0.9454)) +(: cnet_usedfor_eb731f3523 (UsedFor chess_set play_game_of_chess) (STV 1.0 0.9091)) +(: cnet_usedfor_67ed807c26 (UsedFor chesspiece capturing_another_piece) (STV 1.0 0.9091)) +(: cnet_usedfor_5cd9fbde59 (UsedFor chest storage) (STV 1.0 0.9091)) +(: cnet_usedfor_4f9c5daeaa (UsedFor chest storing_clothe) (STV 1.0 0.9091)) +(: cnet_usedfor_809c43bd8f (UsedFor chest storing_thing) (STV 1.0 0.9339)) +(: cnet_usedfor_122ac7d607 (UsedFor chest storing_thing_in) (STV 1.0 0.9454)) +(: cnet_usedfor_d5b8be348e (UsedFor chest_of_drawer store_clothe) (STV 1.0 0.9677)) +(: cnet_usedfor_fe878a0f3b (UsedFor chewing_food avoiding_choking) (STV 1.0 0.9091)) +(: cnet_usedfor_c0ac52be7c (UsedFor chewing_food swallowing) (STV 1.0 0.9339)) +(: cnet_usedfor_647a0ce4eb (UsedFor chewing_food swallowing_food) (STV 1.0 0.9339)) +(: cnet_usedfor_c6bab7a98c (UsedFor chinese_restaurant consuming_nourishment) (STV 1.0 0.9091)) +(: cnet_usedfor_fd92b5f699 (UsedFor chinese_restaurant eat_chinese_food) (STV 1.0 0.9454)) +(: cnet_usedfor_fbb117688b (UsedFor chinese_restaurant eating_chinese_food) (STV 1.0 0.9091)) +(: cnet_usedfor_84c62a49f5 (UsedFor chinese_restaurant eating_rice) (STV 1.0 0.9091)) +(: cnet_usedfor_62d9b6aa2d (UsedFor choker decorate_neck) (STV 1.0 0.9091)) +(: cnet_usedfor_906e709c8b (UsedFor choker wear_around_neck) (STV 1.0 0.9091)) +(: cnet_usedfor_0d298fcabf (UsedFor chopping_firewood build_fire) (STV 1.0 0.9339)) +(: cnet_usedfor_1c49dc5a4d (UsedFor chopping_firewood building_fire) (STV 1.0 0.9091)) +(: cnet_usedfor_fcaf54e76f (UsedFor chopping_firewood getting_exercise) (STV 1.0 0.9339)) +(: cnet_usedfor_782808077b (UsedFor chopping_firewood preparing_for_winter) (STV 1.0 0.9339)) +(: cnet_usedfor_210476df07 (UsedFor chopstick eat_chinese_food) (STV 1.0 0.9091)) +(: cnet_usedfor_34b72a1679 (UsedFor church preaching) (STV 1.0 0.9091)) +(: cnet_usedfor_4da8609850 (UsedFor church sing) (STV 1.0 0.9091)) +(: cnet_usedfor_c78ac41d9e (UsedFor church wedding) (STV 1.0 0.9339)) +(: cnet_usedfor_ff9e9fccc7 (UsedFor church worship) (STV 1.0 0.9524)) +(: cnet_usedfor_5ea5c9016a (UsedFor churchyard charitie_event) (STV 1.0 0.9091)) +(: cnet_usedfor_5c78984533 (UsedFor churchyard grave) (STV 1.0 0.9339)) +(: cnet_usedfor_046144c049 (UsedFor cider drinking) (STV 1.0 0.9091)) +(: cnet_usedfor_07465f779a (UsedFor cigarette burn) (STV 1.0 0.9091)) +(: cnet_usedfor_56b72bbaa9 (UsedFor cigarette smoking) (STV 1.0 0.9524)) +(: cnet_usedfor_465d45415f (UsedFor cinema entertainment) (STV 1.0 0.9091)) +(: cnet_usedfor_797244d04a (UsedFor cinema showing_movy) (STV 1.0 0.9339)) +(: cnet_usedfor_3b6bbe498d (UsedFor cinema watch_movie) (STV 1.0 0.9339)) +(: cnet_usedfor_c7937bec5b (UsedFor cinema watching_film) (STV 1.0 0.9524)) +(: cnet_usedfor_cadd5cdb9a (UsedFor circular_route returning_to_origin) (STV 1.0 0.9339)) +(: cnet_usedfor_935f49b63a (UsedFor city business) (STV 1.0 0.9091)) +(: cnet_usedfor_debd0e03a9 (UsedFor city live_in) (STV 1.0 0.9091)) +(: cnet_usedfor_d3885212de (UsedFor city_hall have_meeting) (STV 1.0 0.9454)) +(: cnet_usedfor_ecff408246 (UsedFor city_hall meeting) (STV 1.0 0.9091)) +(: cnet_usedfor_4188096a6d (UsedFor clarinet make_music) (STV 1.0 0.9091)) +(: cnet_usedfor_892e6948ab (UsedFor clarinet making_music) (STV 1.0 0.9339)) +(: cnet_usedfor_467df23e1e (UsedFor clarinet play_music) (STV 1.0 0.9091)) +(: cnet_usedfor_a6f90c57d9 (UsedFor classroom education) (STV 1.0 0.9339)) +(: cnet_usedfor_4fef90a598 (UsedFor classroom learning) (STV 1.0 0.9339)) +(: cnet_usedfor_0d52023fc2 (UsedFor classroom teaching) (STV 1.0 0.9636)) +(: cnet_usedfor_41365aac7d (UsedFor classroom teaching_student) (STV 1.0 0.9091)) +(: cnet_usedfor_d5e9b283ea (UsedFor classroom_chair student_to_sit_in) (STV 1.0 0.9091)) +(: cnet_usedfor_10ed527abb (UsedFor clavichord making_music) (STV 1.0 0.9091)) +(: cnet_usedfor_5aa3512ca1 (UsedFor clavichord play_music) (STV 1.0 0.9091)) +(: cnet_usedfor_81e40cd8e9 (UsedFor cleaning getting_rid_of_dirt) (STV 1.0 0.9339)) +(: cnet_usedfor_c8c70442d8 (UsedFor cleaning_clothe appearance) (STV 1.0 0.9091)) +(: cnet_usedfor_205b2ededd (UsedFor cleaning_clothe cleanliness) (STV 1.0 0.9091)) +(: cnet_usedfor_6257f988bc (UsedFor cleaning_clothe health) (STV 1.0 0.9339)) +(: cnet_usedfor_86bbeb3aa1 (UsedFor cleaning_clothe hygeine) (STV 1.0 0.9091)) +(: cnet_usedfor_ac28450de6 (UsedFor cleaning_clothing removing_stain) (STV 1.0 0.9339)) +(: cnet_usedfor_443ef9e085 (UsedFor cleaning_house preparing_for_guest) (STV 1.0 0.9091)) +(: cnet_usedfor_b8a38ec914 (UsedFor cleaning_room comfort) (STV 1.0 0.9091)) +(: cnet_usedfor_7953c5c35a (UsedFor cleaning_room tidyness) (STV 1.0 0.9091)) +(: cnet_usedfor_88c4d2cb52 (UsedFor climbing exercise) (STV 1.0 0.9091)) +(: cnet_usedfor_a63833d5d5 (UsedFor climbing exercising) (STV 1.0 0.9091)) +(: cnet_usedfor_def7c50edb (UsedFor climbing getting_on_top) (STV 1.0 0.9339)) +(: cnet_usedfor_48dc0d57a1 (UsedFor climbing having_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_dff8fb4cad (UsedFor climbing_mountain adventure) (STV 1.0 0.9091)) +(: cnet_usedfor_9d43cccafc (UsedFor climbing_mountain adventurous) (STV 1.0 0.9339)) +(: cnet_usedfor_096b8852ec (UsedFor climbing_mountain challenge) (STV 1.0 0.9339)) +(: cnet_usedfor_9ab6da3d3e (UsedFor climbing_mountain excitement) (STV 1.0 0.9091)) +(: cnet_usedfor_dd283cd6d6 (UsedFor climbing_mountain exercise) (STV 1.0 0.9339)) +(: cnet_usedfor_e27fcff594 (UsedFor climbing_mountain thrill_of) (STV 1.0 0.9091)) +(: cnet_usedfor_a5b1d892d3 (UsedFor climbing_mountain thrill_of_danger) (STV 1.0 0.9091)) +(: cnet_usedfor_0671fb6575 (UsedFor clipboard hold_paper) (STV 1.0 0.9454)) +(: cnet_usedfor_ef6b8e766f (UsedFor clipboard holding_paper) (STV 1.0 0.9339)) +(: cnet_usedfor_f5fae65567 (UsedFor clipper clip_fingernail) (STV 1.0 0.9091)) +(: cnet_usedfor_40a14391e3 (UsedFor clipper clip_grass) (STV 1.0 0.9091)) +(: cnet_usedfor_eab9185826 (UsedFor clipper clip_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_b889c9000c (UsedFor clipper cut_toenail) (STV 1.0 0.9091)) +(: cnet_usedfor_5d4db404ab (UsedFor clipper cutting_thing) (STV 1.0 0.9339)) +(: cnet_usedfor_2c011e1561 (UsedFor clipper trim_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_a6cd3e4635 (UsedFor clipper trim_hedge) (STV 1.0 0.9454)) +(: cnet_usedfor_786a75e5a1 (UsedFor clipper trim_tree) (STV 1.0 0.9091)) +(: cnet_usedfor_844ac54fbc (UsedFor clock indicate_time) (STV 1.0 0.9091)) +(: cnet_usedfor_dd76e778e7 (UsedFor clock keeping_time) (STV 1.0 0.9339)) +(: cnet_usedfor_3e162d9db9 (UsedFor clock keeping_track_of_time) (STV 1.0 0.9091)) +(: cnet_usedfor_7854f493d7 (UsedFor clock measure_time) (STV 1.0 0.9339)) +(: cnet_usedfor_2483bd0898 (UsedFor clock set_alarm) (STV 1.0 0.9339)) +(: cnet_usedfor_b8e4e7460b (UsedFor clock setting_alarm) (STV 1.0 0.9091)) +(: cnet_usedfor_94cf5e9408 (UsedFor clock timing) (STV 1.0 0.9339)) +(: cnet_usedfor_89911fa789 (UsedFor clock clock) (STV 1.0 0.9091)) +(: cnet_usedfor_1faf7139cb (UsedFor clock clock_time) (STV 1.0 0.9091)) +(: cnet_usedfor_be6a43b13f (UsedFor clock people) (STV 1.0 0.9091)) +(: cnet_usedfor_23eb4fb4d3 (UsedFor clonazepam anxiety) (STV 1.0 0.9091)) +(: cnet_usedfor_7816cbd40e (UsedFor closet hanging_clothe) (STV 1.0 0.9454)) +(: cnet_usedfor_dab1c34720 (UsedFor closet storing_clothe) (STV 1.0 0.9091)) +(: cnet_usedfor_c5e4ff2200 (UsedFor closet storing_clothing) (STV 1.0 0.9454)) +(: cnet_usedfor_7e90053d42 (UsedFor closet storing_object) (STV 1.0 0.9091)) +(: cnet_usedfor_f7bd8d0894 (UsedFor closet storing_thing) (STV 1.0 0.9339)) +(: cnet_usedfor_669fb83aea (UsedFor closet_for_clothe hanging_belt) (STV 1.0 0.9091)) +(: cnet_usedfor_1f95f523b9 (UsedFor cloth clean) (STV 1.0 0.9748)) +(: cnet_usedfor_b32d0452ab (UsedFor cloth cleaning) (STV 1.0 0.9572)) +(: cnet_usedfor_1d96f73dd7 (UsedFor cloth clothing) (STV 1.0 0.9339)) +(: cnet_usedfor_25acaab121 (UsedFor cloth covering_skin) (STV 1.0 0.9091)) +(: cnet_usedfor_fbff03f30f (UsedFor cloth dry_dishe) (STV 1.0 0.9524)) +(: cnet_usedfor_7f01a48ae0 (UsedFor cloth make_clothing) (STV 1.0 0.9677)) +(: cnet_usedfor_c570961080 (UsedFor cloth making_clothe) (STV 1.0 0.9091)) +(: cnet_usedfor_941e6cf2c5 (UsedFor cloth making_clothing) (STV 1.0 0.9091)) +(: cnet_usedfor_98bc223089 (UsedFor clothe keep_warm) (STV 1.0 0.9091)) +(: cnet_usedfor_6393d2ea85 (UsedFor clothe wearing) (STV 1.0 0.9454)) +(: cnet_usedfor_3cbd43523e (UsedFor clothe_closet hang_clothe) (STV 1.0 0.9572)) +(: cnet_usedfor_154daee1c0 (UsedFor clothe_closet hang_shirt) (STV 1.0 0.9091)) +(: cnet_usedfor_997b0abb3f (UsedFor clothe_closet hanging_clothe_in) (STV 1.0 0.9091)) +(: cnet_usedfor_5a818a9e82 (UsedFor clothe_closet hide) (STV 1.0 0.9091)) +(: cnet_usedfor_fcd3a9b7ef (UsedFor clothing keep_warm) (STV 1.0 0.9091)) +(: cnet_usedfor_be0772dadf (UsedFor clothing_closet hanging_clothe) (STV 1.0 0.9091)) +(: cnet_usedfor_dd7e53aafd (UsedFor clothing_closet storing_suit) (STV 1.0 0.9091)) +(: cnet_usedfor_e1f468f15b (UsedFor clothing_shelf storing_clothe) (STV 1.0 0.9454)) +(: cnet_usedfor_53e12430cc (UsedFor clothing_shelf storing_clothing) (STV 1.0 0.9091)) +(: cnet_usedfor_daa5cb8d6c (UsedFor clothing_store buy_clothe) (STV 1.0 0.9339)) +(: cnet_usedfor_65f91f06a3 (UsedFor clothing_store shopping) (STV 1.0 0.9091)) +(: cnet_usedfor_85b23a6dd8 (UsedFor clothing_store_changing_room trying_on_clothe) (STV 1.0 0.9524)) +(: cnet_usedfor_fcca5c805f (UsedFor clothing_store_changing_room trying_on_clothe_before_buying) (STV 1.0 0.9091)) +(: cnet_usedfor_febabcf268 (UsedFor clothing_store_changing_room trying_on_clothe_for_possible_purchase) (STV 1.0 0.9091)) +(: cnet_usedfor_332cf426fe (UsedFor clothing_store_changing_room trying_on_new_clothe) (STV 1.0 0.9091)) +(: cnet_usedfor_dd5bf8f11b (UsedFor cloud bringing_rain) (STV 1.0 0.9091)) +(: cnet_usedfor_bdad3039f5 (UsedFor cloud rain) (STV 1.0 0.9091)) +(: cnet_usedfor_2d7acf5662 (UsedFor club beating) (STV 1.0 0.9524)) +(: cnet_usedfor_def22cd03b (UsedFor club dance) (STV 1.0 0.9339)) +(: cnet_usedfor_bd0d668f27 (UsedFor club play_golf) (STV 1.0 0.9339)) +(: cnet_usedfor_997babb3c3 (UsedFor club beat) (STV 1.0 0.9091)) +(: cnet_usedfor_111079ce46 (UsedFor club club) (STV 1.0 0.9091)) +(: cnet_usedfor_712703cea9 (UsedFor club_chair sit) (STV 1.0 0.9339)) +(: cnet_usedfor_ab71107894 (UsedFor clutch_bag carrying_thing_in) (STV 1.0 0.9091)) +(: cnet_usedfor_dbd6533878 (UsedFor coach_airline_seat saving_money) (STV 1.0 0.9091)) +(: cnet_usedfor_a8af4731fc (UsedFor coach_airplane_seat sitting_on_airplane) (STV 1.0 0.9091)) +(: cnet_usedfor_212ff3944c (UsedFor coast fishing) (STV 1.0 0.9091)) +(: cnet_usedfor_9b36a1f2c2 (UsedFor coat keeping_warm) (STV 1.0 0.9572)) +(: cnet_usedfor_ccb31ec2b8 (UsedFor coat keeping_warm_in_winter) (STV 1.0 0.9091)) +(: cnet_usedfor_3f749c9358 (UsedFor coat keep_warm) (STV 1.0 0.9091)) +(: cnet_usedfor_32ec111639 (UsedFor cocktail_cabinet mixing_drink) (STV 1.0 0.9091)) +(: cnet_usedfor_2736cc7ec5 (UsedFor cocktail_cabinet storing_alcohol) (STV 1.0 0.9339)) +(: cnet_usedfor_e626cff5c5 (UsedFor cocktail_cabinet storing_mini_bar) (STV 1.0 0.9091)) +(: cnet_usedfor_cb3b187da6 (UsedFor coffee_table make_love) (STV 1.0 0.9339)) +(: cnet_usedfor_471f740c8e (UsedFor coffin coffin) (STV 1.0 0.9091)) +(: cnet_usedfor_a971ef43d1 (UsedFor cogitating thinking) (STV 1.0 0.9091)) +(: cnet_usedfor_a1ebe21fd9 (UsedFor cogitating thinking_thing_over) (STV 1.0 0.9454)) +(: cnet_usedfor_31389a5630 (UsedFor coil prevent_pregnancy) (STV 1.0 0.9091)) +(: cnet_usedfor_70d27ed502 (UsedFor coin flipping) (STV 1.0 0.9339)) +(: cnet_usedfor_639f2c878d (UsedFor coin_purse holding_change) (STV 1.0 0.9454)) +(: cnet_usedfor_c272b9bbb9 (UsedFor coin_purse holding_coin) (STV 1.0 0.9454)) +(: cnet_usedfor_e01ea161ac (UsedFor coin_slot insert_coin) (STV 1.0 0.9091)) +(: cnet_usedfor_66817f2383 (UsedFor coin_slot putting_coin_in) (STV 1.0 0.9454)) +(: cnet_usedfor_be5df6772f (UsedFor cold_faucet get_cold_water) (STV 1.0 0.9339)) +(: cnet_usedfor_635d8804a8 (UsedFor cold_storage keeping_food_cold_and_fresh) (STV 1.0 0.9339)) +(: cnet_usedfor_81a7c1c5dc (UsedFor cold_storage keeping_food_from_spoiling) (STV 1.0 0.9091)) +(: cnet_usedfor_8d8ffde2dd (UsedFor cold_storage preserve_food) (STV 1.0 0.9091)) +(: cnet_usedfor_3921e759e2 (UsedFor college getting_degree) (STV 1.0 0.9091)) +(: cnet_usedfor_a58b2a9d81 (UsedFor college learning) (STV 1.0 0.9454)) +(: cnet_usedfor_96b3727553 (UsedFor college learning_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_8f451fcaef (UsedFor college preparing_for_adult_life) (STV 1.0 0.9091)) +(: cnet_usedfor_84b3891e71 (UsedFor column hold_up_roof) (STV 1.0 0.9339)) +(: cnet_usedfor_4c84758237 (UsedFor column support) (STV 1.0 0.9524)) +(: cnet_usedfor_d5a9ffc48d (UsedFor column supporting_roof) (STV 1.0 0.9091)) +(: cnet_usedfor_5b9b39275a (UsedFor comb arrange_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_c4a76db993 (UsedFor comb combing_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_a53864c5c8 (UsedFor comb grooming) (STV 1.0 0.9339)) +(: cnet_usedfor_0aa3601ee4 (UsedFor comb hair) (STV 1.0 0.9454)) +(: cnet_usedfor_5a897c5c24 (UsedFor comb remove_tangle_for_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_0540c3e28b (UsedFor comb removing_tangle_from_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_b6c0ea5d31 (UsedFor comb styling_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_9300fb7df5 (UsedFor comforting_friend making_friend_feel_better) (STV 1.0 0.9339)) +(: cnet_usedfor_7f20ca14e3 (UsedFor commiting_genocide survival) (STV 1.0 0.9091)) +(: cnet_usedfor_8acf490d4d (UsedFor committing_murder getting_rid_of_enemy) (STV 1.0 0.9091)) +(: cnet_usedfor_c7ee3ee6aa (UsedFor committing_murder killer) (STV 1.0 0.9091)) +(: cnet_usedfor_c4680c1610 (UsedFor committing_murder murderer) (STV 1.0 0.9339)) +(: cnet_usedfor_3c71077468 (UsedFor committing_perjury avoiding_punishment) (STV 1.0 0.9091)) +(: cnet_usedfor_45c9551cef (UsedFor committing_perjury getting_guilty_person_let_off) (STV 1.0 0.9091)) +(: cnet_usedfor_709688b4dd (UsedFor committing_perjury getting_of_scott_free) (STV 1.0 0.9091)) +(: cnet_usedfor_4ad24b5178 (UsedFor committing_perjury helping_friend) (STV 1.0 0.9091)) +(: cnet_usedfor_109af72bc7 (UsedFor committing_perjury hiding_crime) (STV 1.0 0.9091)) +(: cnet_usedfor_9a97ab7c14 (UsedFor committing_perjury hiding_truth) (STV 1.0 0.9091)) +(: cnet_usedfor_713f6408ba (UsedFor committing_perjury incriminating_innocent_person) (STV 1.0 0.9091)) +(: cnet_usedfor_016faadb8a (UsedFor committing_perjury liar) (STV 1.0 0.9091)) +(: cnet_usedfor_fb2da827da (UsedFor committing_perjury lying_before_judge) (STV 1.0 0.9091)) +(: cnet_usedfor_83814f7b80 (UsedFor committing_perjury lying_in_court_of_law) (STV 1.0 0.9091)) +(: cnet_usedfor_88babc4d4b (UsedFor committing_perjury obstructing_justice) (STV 1.0 0.9091)) +(: cnet_usedfor_fcc4ea25b4 (UsedFor committing_perjury personal_gain) (STV 1.0 0.9091)) +(: cnet_usedfor_18e6925b0b (UsedFor committing_suicide ending_own_life) (STV 1.0 0.9524)) +(: cnet_usedfor_2c9aadb06c (UsedFor committing_suicide hitler) (STV 1.0 0.9091)) +(: cnet_usedfor_afdfab28cd (UsedFor committing_to_memory later_recall) (STV 1.0 0.9091)) +(: cnet_usedfor_7cee1c576e (UsedFor committing_to_memory learning) (STV 1.0 0.9454)) +(: cnet_usedfor_56d40f8d15 (UsedFor committing_to_memory memorizing) (STV 1.0 0.9454)) +(: cnet_usedfor_f8d99d2dde (UsedFor committing_to_memory recalling_later) (STV 1.0 0.9339)) +(: cnet_usedfor_931b1b778d (UsedFor communicating expressing_idea) (STV 1.0 0.9091)) +(: cnet_usedfor_5c6e9f1c28 (UsedFor communicating passing_on_information) (STV 1.0 0.9339)) +(: cnet_usedfor_8204aee04a (UsedFor compact drive) (STV 1.0 0.9091)) +(: cnet_usedfor_adbf76de0b (UsedFor compact transport) (STV 1.0 0.9091)) +(: cnet_usedfor_9686eee3d4 (UsedFor competing sporting) (STV 1.0 0.9091)) +(: cnet_usedfor_056f2be567 (UsedFor competing_against honor) (STV 1.0 0.9091)) +(: cnet_usedfor_4ddc25ebf5 (UsedFor computer accessing_internet) (STV 1.0 0.9091)) +(: cnet_usedfor_c84ac84f84 (UsedFor computer calculating) (STV 1.0 0.9572)) +(: cnet_usedfor_3f57b13aac (UsedFor computer communication) (STV 1.0 0.9740)) +(: cnet_usedfor_0db9a53ab9 (UsedFor computer computer) (STV 1.0 0.9339)) +(: cnet_usedfor_286b4ca043 (UsedFor computer computing) (STV 1.0 0.9339)) +(: cnet_usedfor_50a9858ca9 (UsedFor computer entertain_yourself) (STV 1.0 0.9454)) +(: cnet_usedfor_149ac0b1a0 (UsedFor computer entertainment) (STV 1.0 0.9091)) +(: cnet_usedfor_b362cc0fbc (UsedFor computer learn) (STV 1.0 0.9091)) +(: cnet_usedfor_30e23dca48 (UsedFor computer organize_information) (STV 1.0 0.9091)) +(: cnet_usedfor_ba20ce8d91 (UsedFor computer play_game) (STV 1.0 0.9730)) +(: cnet_usedfor_74a697a194 (UsedFor computer playing_game) (STV 1.0 0.9091)) +(: cnet_usedfor_af85f50fdb (UsedFor computer send_email) (STV 1.0 0.9091)) +(: cnet_usedfor_b9054cdb1c (UsedFor computer storing_information) (STV 1.0 0.9091)) +(: cnet_usedfor_ae8c0887b2 (UsedFor computer surfing_internet) (STV 1.0 0.9339)) +(: cnet_usedfor_02745e249f (UsedFor computer word_processing) (STV 1.0 0.9524)) +(: cnet_usedfor_cabf9f3423 (UsedFor computer work) (STV 1.0 0.9707)) +(: cnet_usedfor_b9aefb3f8c (UsedFor computer writing) (STV 1.0 0.9091)) +(: cnet_usedfor_6278613e3c (UsedFor computer calculate) (STV 1.0 0.9091)) +(: cnet_usedfor_91d45926c5 (UsedFor computer cybernate) (STV 1.0 0.9091)) +(: cnet_usedfor_cb59fc2668 (UsedFor computer process) (STV 1.0 0.9091)) +(: cnet_usedfor_b95edd1911 (UsedFor computer_disk holding_data) (STV 1.0 0.9091)) +(: cnet_usedfor_de6ecd097a (UsedFor computer do_simulation) (STV 1.0 0.9091)) +(: cnet_usedfor_2df60d37c0 (UsedFor computer learn_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_dc8fd829a6 (UsedFor concert_hall listening_to_music) (STV 1.0 0.9091)) +(: cnet_usedfor_effffb3f6f (UsedFor concert_hall performance) (STV 1.0 0.9091)) +(: cnet_usedfor_1b04ba7a42 (UsedFor condom preventing_pregnancy) (STV 1.0 0.9454)) +(: cnet_usedfor_537420ea96 (UsedFor condom preventing_std) (STV 1.0 0.9091)) +(: cnet_usedfor_2aae69fc59 (UsedFor condom protecting_other_during_sex) (STV 1.0 0.9091)) +(: cnet_usedfor_35f7ec6419 (UsedFor condom protecting_yourself_during_sex) (STV 1.0 0.9091)) +(: cnet_usedfor_1c389a993c (UsedFor condom protection) (STV 1.0 0.9339)) +(: cnet_usedfor_9f814005b4 (UsedFor condom sex) (STV 1.0 0.9572)) +(: cnet_usedfor_bd4dcabf9b (UsedFor condominium live_in) (STV 1.0 0.9339)) +(: cnet_usedfor_b6e2efcd1d (UsedFor condominium living_in) (STV 1.0 0.9659)) +(: cnet_usedfor_4f50ba7e81 (UsedFor condom protect_against_disease) (STV 1.0 0.9091)) +(: cnet_usedfor_a00b3e7c6b (UsedFor conducting_trial determining_guilt_or_innocence) (STV 1.0 0.9339)) +(: cnet_usedfor_efacbb779f (UsedFor conference_auditorium lecture) (STV 1.0 0.9339)) +(: cnet_usedfor_98cb08d4fa (UsedFor conference_auditorium meet) (STV 1.0 0.9339)) +(: cnet_usedfor_70c35757f4 (UsedFor confetti celebrate) (STV 1.0 0.9091)) +(: cnet_usedfor_1db45c1491 (UsedFor confetti enhance_celebration) (STV 1.0 0.9091)) +(: cnet_usedfor_a23582f354 (UsedFor confetti throwing) (STV 1.0 0.9091)) +(: cnet_usedfor_d13ed8d9f2 (UsedFor confetti throwing_during_party) (STV 1.0 0.9091)) +(: cnet_usedfor_4128b72276 (UsedFor connection getting_job) (STV 1.0 0.9091)) +(: cnet_usedfor_ca5eab790a (UsedFor conquering_nation expanding_empire) (STV 1.0 0.9091)) +(: cnet_usedfor_179180b6f7 (UsedFor conquering_nation making_business_community_rich) (STV 1.0 0.9091)) +(: cnet_usedfor_d8914eebcc (UsedFor conquering_nation power) (STV 1.0 0.9091)) +(: cnet_usedfor_fd104e2111 (UsedFor conquering_nation wealth) (STV 1.0 0.9091)) +(: cnet_usedfor_f41ed446d9 (UsedFor conquering_opponent being_victorious) (STV 1.0 0.9091)) +(: cnet_usedfor_0e0465f4f5 (UsedFor conquering_opponent showing_own_strength) (STV 1.0 0.9091)) +(: cnet_usedfor_446446c8a6 (UsedFor conquering_opponent winning) (STV 1.0 0.9091)) +(: cnet_usedfor_41ebc935f3 (UsedFor conquering_opponent winning_battle) (STV 1.0 0.9339)) +(: cnet_usedfor_01a3dda893 (UsedFor conquering_opponent winning_game) (STV 1.0 0.9524)) +(: cnet_usedfor_673ca5aee1 (UsedFor container containing) (STV 1.0 0.9091)) +(: cnet_usedfor_768c33eb6f (UsedFor container holding) (STV 1.0 0.9572)) +(: cnet_usedfor_8a2d26cd7a (UsedFor container_cup drink_from) (STV 1.0 0.9091)) +(: cnet_usedfor_c18321fd29 (UsedFor container_cup drinking) (STV 1.0 0.9524)) +(: cnet_usedfor_44c1f46ba5 (UsedFor container_drum holding_crude_oil) (STV 1.0 0.9091)) +(: cnet_usedfor_496798e995 (UsedFor container_drum store_liquid) (STV 1.0 0.9091)) +(: cnet_usedfor_b1627fedd9 (UsedFor contemplating finding_meaning_in) (STV 1.0 0.9091)) +(: cnet_usedfor_c9d156f73d (UsedFor contemplating thinking_about) (STV 1.0 0.9339)) +(: cnet_usedfor_e4f46521f8 (UsedFor contraceptive prevent_pregnancy) (STV 1.0 0.9524)) +(: cnet_usedfor_a3daa2e385 (UsedFor contraceptive preventing_pregnancy) (STV 1.0 0.9339)) +(: cnet_usedfor_e4c08df1fb (UsedFor contraceptive_device avoid_pregnancy) (STV 1.0 0.9454)) +(: cnet_usedfor_7e7b817547 (UsedFor contraceptive_device family_planning) (STV 1.0 0.9091)) +(: cnet_usedfor_b1f09e1d81 (UsedFor contralto singing) (STV 1.0 0.9091)) +(: cnet_usedfor_dd6f87a3d0 (UsedFor cooking food_preparation) (STV 1.0 0.9524)) +(: cnet_usedfor_d9e98a8714 (UsedFor cooking preparing_food) (STV 1.0 0.9091)) +(: cnet_usedfor_be061b8a61 (UsedFor cooking_curry eating) (STV 1.0 0.9339)) +(: cnet_usedfor_90b4b25cbb (UsedFor cooking_dinner eat) (STV 1.0 0.9091)) +(: cnet_usedfor_d39328b8c4 (UsedFor cooking_dinner entertaining_company) (STV 1.0 0.9091)) +(: cnet_usedfor_0975a1b61b (UsedFor cooking_dinner feeding_family) (STV 1.0 0.9454)) +(: cnet_usedfor_fb1df7941e (UsedFor cooking_dinner feeding_yourself) (STV 1.0 0.9091)) +(: cnet_usedfor_8fe27bbfb0 (UsedFor cooking_meal eating) (STV 1.0 0.9091)) +(: cnet_usedfor_5c8b61f026 (UsedFor cooking_meal feeding_family) (STV 1.0 0.9572)) +(: cnet_usedfor_f141f8f89a (UsedFor cooking_meal feeding_yourself) (STV 1.0 0.9091)) +(: cnet_usedfor_ef1ddc15f3 (UsedFor cooking_meal having_to_eat) (STV 1.0 0.9339)) +(: cnet_usedfor_a629408cc7 (UsedFor cooking_meal saving_money) (STV 1.0 0.9091)) +(: cnet_usedfor_443707014c (UsedFor cooling_off becoming_more_comfortable) (STV 1.0 0.9091)) +(: cnet_usedfor_83367fbc20 (UsedFor copulating couple) (STV 1.0 0.9091)) +(: cnet_usedfor_daf34bc7fb (UsedFor copulating enjoying_yourself) (STV 1.0 0.9091)) +(: cnet_usedfor_4d59dc76d9 (UsedFor copulating enjoyment) (STV 1.0 0.9091)) +(: cnet_usedfor_74aeb78c9c (UsedFor copulating fun) (STV 1.0 0.9091)) +(: cnet_usedfor_33ea0810bd (UsedFor copulating lover) (STV 1.0 0.9091)) +(: cnet_usedfor_ac963a4654 (UsedFor copulating pleasure) (STV 1.0 0.9091)) +(: cnet_usedfor_85f1b03af6 (UsedFor copulating procreating) (STV 1.0 0.9454)) +(: cnet_usedfor_3edcf4ff93 (UsedFor copulating producing_offspring) (STV 1.0 0.9091)) +(: cnet_usedfor_f523a05bae (UsedFor copulating reproduction) (STV 1.0 0.9339)) +(: cnet_usedfor_a9569c67e4 (UsedFor copulating satisfying_desire) (STV 1.0 0.9091)) +(: cnet_usedfor_b9292af6cb (UsedFor copulating sex) (STV 1.0 0.9339)) +(: cnet_usedfor_09e3b6e32e (UsedFor cord tie) (STV 1.0 0.9339)) +(: cnet_usedfor_8ee6b73ac1 (UsedFor cord tying_thing_together) (STV 1.0 0.9091)) +(: cnet_usedfor_1057169690 (UsedFor corner_cupboard store_dishe_in) (STV 1.0 0.9091)) +(: cnet_usedfor_d31f1c3c04 (UsedFor corner_grocery buy_more_milk) (STV 1.0 0.9091)) +(: cnet_usedfor_656dba9097 (UsedFor cornet playing_music) (STV 1.0 0.9091)) +(: cnet_usedfor_e339ddebd4 (UsedFor correction_fluid correcting_error) (STV 1.0 0.9091)) +(: cnet_usedfor_08e5c6ac9b (UsedFor correction_fluid correcting_mistake) (STV 1.0 0.9091)) +(: cnet_usedfor_344a6fbf25 (UsedFor correction_fluid cover_mistake) (STV 1.0 0.9091)) +(: cnet_usedfor_0e8256a0a2 (UsedFor cottage live_in) (STV 1.0 0.9454)) +(: cnet_usedfor_d32d940a92 (UsedFor cottage living_in) (STV 1.0 0.9091)) +(: cnet_usedfor_b647d3b2b9 (UsedFor cottage vacationing_in) (STV 1.0 0.9454)) +(: cnet_usedfor_7afd6237d7 (UsedFor cotton make_cloth) (STV 1.0 0.9091)) +(: cnet_usedfor_0bef0e5d89 (UsedFor cotton make_clothe) (STV 1.0 0.9524)) +(: cnet_usedfor_779816974f (UsedFor cotton making_clothing) (STV 1.0 0.9091)) +(: cnet_usedfor_3a0ad05330 (UsedFor cotton threading) (STV 1.0 0.9091)) +(: cnet_usedfor_81e83102a5 (UsedFor couch furnish_home) (STV 1.0 0.9339)) +(: cnet_usedfor_0577b9aac9 (UsedFor couch lying_on) (STV 1.0 0.9091)) +(: cnet_usedfor_26c440f6e8 (UsedFor couch relaxing) (STV 1.0 0.9091)) +(: cnet_usedfor_85ee7c544f (UsedFor couch sleeping) (STV 1.0 0.9339)) +(: cnet_usedfor_d95f309768 (UsedFor council decide) (STV 1.0 0.9339)) +(: cnet_usedfor_39595d2e53 (UsedFor council decision_making) (STV 1.0 0.9339)) +(: cnet_usedfor_fa1065ff6a (UsedFor council talking_about_thing) (STV 1.0 0.9339)) +(: cnet_usedfor_fdee2164f3 (UsedFor counter counting) (STV 1.0 0.9339)) +(: cnet_usedfor_675e7cf2bd (UsedFor counter store) (STV 1.0 0.9091)) +(: cnet_usedfor_e7550cbb38 (UsedFor counter working_on) (STV 1.0 0.9339)) +(: cnet_usedfor_43008afe3f (UsedFor counter hold) (STV 1.0 0.9091)) +(: cnet_usedfor_8845ef1594 (UsedFor counter space) (STV 1.0 0.9091)) +(: cnet_usedfor_32c1aaae05 (UsedFor court playing_basketball) (STV 1.0 0.9339)) +(: cnet_usedfor_bd9e971a47 (UsedFor court playing_tennis) (STV 1.0 0.9524)) +(: cnet_usedfor_727ce35afe (UsedFor court trial) (STV 1.0 0.9091)) +(: cnet_usedfor_46034829f5 (UsedFor courthouse trying_cas) (STV 1.0 0.9339)) +(: cnet_usedfor_573f724663 (UsedFor courtroom holding_court) (STV 1.0 0.9091)) +(: cnet_usedfor_bdaee2fba2 (UsedFor courtyard have_garden) (STV 1.0 0.9091)) +(: cnet_usedfor_ab21d62d1a (UsedFor cover protecting_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_8b441fa799 (UsedFor cpr resuscitation) (STV 1.0 0.9091)) +(: cnet_usedfor_5d17cdcf2d (UsedFor crayon colour_with) (STV 1.0 0.9339)) +(: cnet_usedfor_cff092493e (UsedFor crayon draw) (STV 1.0 0.9091)) +(: cnet_usedfor_850493e7e0 (UsedFor cream humidify) (STV 1.0 0.9091)) +(: cnet_usedfor_323eccea3a (UsedFor cream person) (STV 1.0 0.9454)) +(: cnet_usedfor_7f65b4b7b7 (UsedFor cream skin) (STV 1.0 0.9091)) +(: cnet_usedfor_ce844709b9 (UsedFor cream soften) (STV 1.0 0.9091)) +(: cnet_usedfor_aed34befab (UsedFor cream soothe) (STV 1.0 0.9091)) +(: cnet_usedfor_4f72a7d263 (UsedFor creating_art fun) (STV 1.0 0.9091)) +(: cnet_usedfor_b63ea57b35 (UsedFor credit_card buy_gas) (STV 1.0 0.9091)) +(: cnet_usedfor_9603b8b43a (UsedFor credit_card purchasing_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_b36c6a208d (UsedFor credit_card renting_car) (STV 1.0 0.9454)) +(: cnet_usedfor_40eeb62b04 (UsedFor credit_card shop) (STV 1.0 0.9091)) +(: cnet_usedfor_abbce78603 (UsedFor credit_card_wallet carry_all_credit_card) (STV 1.0 0.9454)) +(: cnet_usedfor_016c16cc39 (UsedFor credit_card_wallet carry_credit_card) (STV 1.0 0.9091)) +(: cnet_usedfor_f0d4269caa (UsedFor credit_card_wallet holding_credit_card) (STV 1.0 0.9524)) +(: cnet_usedfor_73b859cc97 (UsedFor credit_card_wallet store_credit_card) (STV 1.0 0.9091)) +(: cnet_usedfor_594b2766f3 (UsedFor crossing_street getting_to_other_side) (STV 1.0 0.9091)) +(: cnet_usedfor_7678fca273 (UsedFor crossing_street pedestrian) (STV 1.0 0.9091)) +(: cnet_usedfor_d9680e6def (UsedFor crown crown) (STV 1.0 0.9091)) +(: cnet_usedfor_ac5aeeb81c (UsedFor crutch cripple) (STV 1.0 0.9091)) +(: cnet_usedfor_8d8d758f20 (UsedFor crutch help) (STV 1.0 0.9091)) +(: cnet_usedfor_cde4c6c154 (UsedFor crutch hold) (STV 1.0 0.9091)) +(: cnet_usedfor_21e2f98fd6 (UsedFor crutch patient) (STV 1.0 0.9091)) +(: cnet_usedfor_f9227513f9 (UsedFor crutch person) (STV 1.0 0.9091)) +(: cnet_usedfor_64683c2cb2 (UsedFor cubicle constructing_office_space) (STV 1.0 0.9091)) +(: cnet_usedfor_d24de6ac69 (UsedFor cubicle dividing_work_space) (STV 1.0 0.9454)) +(: cnet_usedfor_12cd49bfcc (UsedFor cubicle granting_personal_space) (STV 1.0 0.9091)) +(: cnet_usedfor_6f4c360295 (UsedFor cubicle office_work) (STV 1.0 0.9572)) +(: cnet_usedfor_6b1b087b97 (UsedFor cubicle privacy) (STV 1.0 0.9524)) +(: cnet_usedfor_5881c4c329 (UsedFor cubicle storage) (STV 1.0 0.9091)) +(: cnet_usedfor_4614123a04 (UsedFor cubicle work_in) (STV 1.0 0.9454)) +(: cnet_usedfor_8b11cdd43e (UsedFor cubicle working_within) (STV 1.0 0.9454)) +(: cnet_usedfor_c46413039d (UsedFor cup drinking) (STV 1.0 0.9454)) +(: cnet_usedfor_546ec043a3 (UsedFor cup drinking_coffee) (STV 1.0 0.9091)) +(: cnet_usedfor_cbd76b1208 (UsedFor cup hold_coffee) (STV 1.0 0.9091)) +(: cnet_usedfor_1d9c468cda (UsedFor cup measuring_liquid) (STV 1.0 0.9454)) +(: cnet_usedfor_7a555c4f1b (UsedFor cup hold) (STV 1.0 0.9091)) +(: cnet_usedfor_97746479b7 (UsedFor cupboard coffee_mug) (STV 1.0 0.9091)) +(: cnet_usedfor_952866f7f7 (UsedFor cupboard keeping_thing_clean) (STV 1.0 0.9091)) +(: cnet_usedfor_f382f12899 (UsedFor cupboard storing_crockery) (STV 1.0 0.9091)) +(: cnet_usedfor_764c2b6297 (UsedFor cupboard storing_dishe) (STV 1.0 0.9454)) +(: cnet_usedfor_e46a963459 (UsedFor cupboard storing_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_19bd578401 (UsedFor cup drink_from) (STV 1.0 0.9730)) +(: cnet_usedfor_b9d0d5588c (UsedFor curb parking_car) (STV 1.0 0.9091)) +(: cnet_usedfor_b0f9210e6c (UsedFor curling_iron curling_straight_hair) (STV 1.0 0.9339)) +(: cnet_usedfor_8b4c18498f (UsedFor curling_iron style_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_5a36bca8be (UsedFor curtain cover_window) (STV 1.0 0.9339)) +(: cnet_usedfor_f3fea6aaac (UsedFor curtain covering_window) (STV 1.0 0.9454)) +(: cnet_usedfor_df99f4d8ff (UsedFor curtain get_privacy) (STV 1.0 0.9339)) +(: cnet_usedfor_b354596416 (UsedFor curtain privacy) (STV 1.0 0.9091)) +(: cnet_usedfor_6e04eb4864 (UsedFor curtain blind) (STV 1.0 0.9091)) +(: cnet_usedfor_eb65ff669a (UsedFor curtain curtain) (STV 1.0 0.9091)) +(: cnet_usedfor_0379d9b027 (UsedFor curtain dark) (STV 1.0 0.9091)) +(: cnet_usedfor_4f32e43c9a (UsedFor curtain darken) (STV 1.0 0.9091)) +(: cnet_usedfor_9c1e2806be (UsedFor curtain hide) (STV 1.0 0.9091)) +(: cnet_usedfor_fe2e1375ac (UsedFor curtain obstruct) (STV 1.0 0.9091)) +(: cnet_usedfor_32d2106f7a (UsedFor cutlery_drawer store_knive) (STV 1.0 0.9524)) +(: cnet_usedfor_17b4160c10 (UsedFor cutlery_drawer storing_knive) (STV 1.0 0.9091)) +(: cnet_usedfor_0b0231c566 (UsedFor cymbal make_crashing_sound) (STV 1.0 0.9091)) +(: cnet_usedfor_985c613f22 (UsedFor cymbal playing_music_with) (STV 1.0 0.9091)) +(: cnet_usedfor_f59e268164 (UsedFor dam generate_hydro_electric_power) (STV 1.0 0.9091)) +(: cnet_usedfor_950e841daf (UsedFor dance_club dancing) (STV 1.0 0.9572)) +(: cnet_usedfor_e653765070 (UsedFor dance_club meeting_friend) (STV 1.0 0.9091)) +(: cnet_usedfor_81d7c4eddf (UsedFor dancing enjoying_music) (STV 1.0 0.9091)) +(: cnet_usedfor_c164ab3493 (UsedFor dancing enjoying_yourself) (STV 1.0 0.9091)) +(: cnet_usedfor_586f3c5184 (UsedFor dancing exercise) (STV 1.0 0.9524)) +(: cnet_usedfor_569d64cf8d (UsedFor dancing flirting) (STV 1.0 0.9091)) +(: cnet_usedfor_5cb55ab4be (UsedFor dancing fun) (STV 1.0 0.9572)) +(: cnet_usedfor_5566f8f646 (UsedFor dancing getting_exercise) (STV 1.0 0.9091)) +(: cnet_usedfor_6a66001ce2 (UsedFor dancing performing) (STV 1.0 0.9339)) +(: cnet_usedfor_fc26b42850 (UsedFor dandruff_shampoo fighting_dandruff) (STV 1.0 0.9091)) +(: cnet_usedfor_956bc83e5c (UsedFor dandruff_shampoo prevention_of_dandruff) (STV 1.0 0.9091)) +(: cnet_usedfor_a8625a17d8 (UsedFor dandruff_shampoo treating_dandruff) (STV 1.0 0.9091)) +(: cnet_usedfor_4ba024518d (UsedFor dandruff_shampoo washing_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_b51e6e6e51 (UsedFor dark_glass looking_cool) (STV 1.0 0.9339)) +(: cnet_usedfor_99a179a760 (UsedFor dark_glass protecting_eye_from_sun) (STV 1.0 0.9572)) +(: cnet_usedfor_5159b4f643 (UsedFor databas store_data) (STV 1.0 0.9091)) +(: cnet_usedfor_2bfc4748c9 (UsedFor debit_card paying_for) (STV 1.0 0.9091)) +(: cnet_usedfor_dd9ffd1d2e (UsedFor debit_card paying_for_good) (STV 1.0 0.9091)) +(: cnet_usedfor_fe6b74a7f6 (UsedFor decanter hold_wine) (STV 1.0 0.9091)) +(: cnet_usedfor_8e6323f8eb (UsedFor decanter holding_wine) (STV 1.0 0.9091)) +(: cnet_usedfor_151527f814 (UsedFor deciding_criminal_s_fate judge) (STV 1.0 0.9339)) +(: cnet_usedfor_e96af01788 (UsedFor defibrilator resuscitation) (STV 1.0 0.9091)) +(: cnet_usedfor_1a0d253f47 (UsedFor deli purchasing_sandwiche) (STV 1.0 0.9091)) +(: cnet_usedfor_a528330b81 (UsedFor delicatessen buy_food) (STV 1.0 0.9091)) +(: cnet_usedfor_f4117d0c57 (UsedFor delicatessen sandwiche) (STV 1.0 0.9339)) +(: cnet_usedfor_94993b037e (UsedFor den hybernation) (STV 1.0 0.9091)) +(: cnet_usedfor_8694915c3f (UsedFor denim clothe) (STV 1.0 0.9339)) +(: cnet_usedfor_0c19da16fe (UsedFor denim jean) (STV 1.0 0.9454)) +(: cnet_usedfor_308da80ce5 (UsedFor denim make_clothing) (STV 1.0 0.9339)) +(: cnet_usedfor_598b3b91a4 (UsedFor denim make_jean) (STV 1.0 0.9091)) +(: cnet_usedfor_40950c3fd6 (UsedFor denim making_jean) (STV 1.0 0.9454)) +(: cnet_usedfor_acfc66ba20 (UsedFor dental_floss removing_plaque) (STV 1.0 0.9454)) +(: cnet_usedfor_2428f66dab (UsedFor dentist cleaning_teeth) (STV 1.0 0.9572)) +(: cnet_usedfor_571f067944 (UsedFor dentist repairing_damage_done_to_teeth) (STV 1.0 0.9339)) +(: cnet_usedfor_cd5a1a85c2 (UsedFor dentist_office reading_magazine) (STV 1.0 0.9091)) +(: cnet_usedfor_105207848e (UsedFor deodorant smell_good) (STV 1.0 0.9091)) +(: cnet_usedfor_6f3dd72724 (UsedFor department_store buying_clothe) (STV 1.0 0.9091)) +(: cnet_usedfor_bef1727d79 (UsedFor department_store shopping) (STV 1.0 0.9339)) +(: cnet_usedfor_54464e538f (UsedFor designing_software artificial_intelligence) (STV 1.0 0.9091)) +(: cnet_usedfor_860bf7e519 (UsedFor designing_software solving_problem) (STV 1.0 0.9091)) +(: cnet_usedfor_5964841156 (UsedFor desk working) (STV 1.0 0.9572)) +(: cnet_usedfor_84a06e85a2 (UsedFor desk work) (STV 1.0 0.9091)) +(: cnet_usedfor_49349fd9e6 (UsedFor desk write) (STV 1.0 0.9091)) +(: cnet_usedfor_543900bc2e (UsedFor desk_drawer paper) (STV 1.0 0.9454)) +(: cnet_usedfor_c60f113405 (UsedFor desk_drawer storing_thing) (STV 1.0 0.9454)) +(: cnet_usedfor_1918f62944 (UsedFor desk_tray holding_paper_clip) (STV 1.0 0.9091)) +(: cnet_usedfor_8942849f2b (UsedFor desk_tray put_paper_in) (STV 1.0 0.9091)) +(: cnet_usedfor_0d34dbbc80 (UsedFor desk_tray storing_paper_clip) (STV 1.0 0.9091)) +(: cnet_usedfor_67d3ac1dee (UsedFor detector detect) (STV 1.0 0.9091)) +(: cnet_usedfor_fcc02e0693 (UsedFor detector monitor) (STV 1.0 0.9091)) +(: cnet_usedfor_ef47bdef69 (UsedFor detector response) (STV 1.0 0.9091)) +(: cnet_usedfor_f942736f96 (UsedFor detector sense) (STV 1.0 0.9091)) +(: cnet_usedfor_9066e74d57 (UsedFor detergent cleaning) (STV 1.0 0.9091)) +(: cnet_usedfor_435ef88bc4 (UsedFor diamond cut_steel) (STV 1.0 0.9091)) +(: cnet_usedfor_21dc9d0cf4 (UsedFor diamond cutting) (STV 1.0 0.9339)) +(: cnet_usedfor_d7b3311569 (UsedFor diamond drill) (STV 1.0 0.9091)) +(: cnet_usedfor_86980aa376 (UsedFor diamond scratch_glass) (STV 1.0 0.9091)) +(: cnet_usedfor_ca32c5b09f (UsedFor digestion destroy_evidence) (STV 1.0 0.9091)) +(: cnet_usedfor_afab586ef0 (UsedFor digital_library learning) (STV 1.0 0.9091)) +(: cnet_usedfor_2aa8ece0ac (UsedFor dildo fucking) (STV 1.0 0.9339)) +(: cnet_usedfor_c29a9823e4 (UsedFor dildo give_sexual_pleasure) (STV 1.0 0.9339)) +(: cnet_usedfor_6a778182bb (UsedFor dildo masturbation) (STV 1.0 0.9524)) +(: cnet_usedfor_5062e95960 (UsedFor dildo playing_game_in_bedroom) (STV 1.0 0.9091)) +(: cnet_usedfor_11cbc47eb4 (UsedFor dildo playing_game_in_genitalia) (STV 1.0 0.9339)) +(: cnet_usedfor_2c0869baf6 (UsedFor dime_store purchasing_inexpensive_item) (STV 1.0 0.9091)) +(: cnet_usedfor_98d40260aa (UsedFor diner eating) (STV 1.0 0.9659)) +(: cnet_usedfor_c036b0e9a8 (UsedFor dining_room eating_in) (STV 1.0 0.9572)) +(: cnet_usedfor_cc9df7aef9 (UsedFor dining_room eating_meal) (STV 1.0 0.9091)) +(: cnet_usedfor_89fd3d3fd7 (UsedFor dining_room_table eat_at) (STV 1.0 0.9339)) +(: cnet_usedfor_3e312020fc (UsedFor dining_room_table eating_dinner_on) (STV 1.0 0.9524)) +(: cnet_usedfor_5d497d56be (UsedFor dining_room_table serve_dinner) (STV 1.0 0.9339)) +(: cnet_usedfor_9f31589b15 (UsedFor dining_table eat_dinner) (STV 1.0 0.9454)) +(: cnet_usedfor_a7433db59a (UsedFor dining_table eat_dinnner) (STV 1.0 0.9091)) +(: cnet_usedfor_e97980067f (UsedFor dining_table playing_game_on) (STV 1.0 0.9339)) +(: cnet_usedfor_0f44953c77 (UsedFor dining_table serving_dinner) (STV 1.0 0.9091)) +(: cnet_usedfor_d326f217d2 (UsedFor dining_table sitting_around_with_family) (STV 1.0 0.9091)) +(: cnet_usedfor_88075c0526 (UsedFor director_chair director_to_sit_in) (STV 1.0 0.9339)) +(: cnet_usedfor_3fe2f89fa7 (UsedFor dirty_dishe putting_in_dishwasher) (STV 1.0 0.9339)) +(: cnet_usedfor_fb8a7f752f (UsedFor dirty_dishe washing) (STV 1.0 0.9454)) +(: cnet_usedfor_335d264343 (UsedFor disco dancing) (STV 1.0 0.9693)) +(: cnet_usedfor_bb496977f7 (UsedFor discothque drinking_in) (STV 1.0 0.9091)) +(: cnet_usedfor_05d65f179f (UsedFor discothque fun) (STV 1.0 0.9091)) +(: cnet_usedfor_1ef5579dae (UsedFor discothque meeting_people) (STV 1.0 0.9091)) +(: cnet_usedfor_d60386b387 (UsedFor disease make_sick) (STV 1.0 0.9091)) +(: cnet_usedfor_85f6d4105b (UsedFor dish cooking) (STV 1.0 0.9091)) +(: cnet_usedfor_98167d1291 (UsedFor dish eat_thing_off_of) (STV 1.0 0.9659)) +(: cnet_usedfor_4e47fd49f8 (UsedFor dish eating) (STV 1.0 0.9091)) +(: cnet_usedfor_7302cb836e (UsedFor dish eating_food) (STV 1.0 0.9524)) +(: cnet_usedfor_0dbcb63b04 (UsedFor dish hold_food) (STV 1.0 0.9454)) +(: cnet_usedfor_1a06c9aeb5 (UsedFor dish serving_food) (STV 1.0 0.9091)) +(: cnet_usedfor_b9fa706680 (UsedFor dish air) (STV 1.0 0.9091)) +(: cnet_usedfor_ac2413a893 (UsedFor dish hold) (STV 1.0 0.9091)) +(: cnet_usedfor_c9989496aa (UsedFor dish pick_up) (STV 1.0 0.9091)) +(: cnet_usedfor_c80af7f5c5 (UsedFor dish scan) (STV 1.0 0.9091)) +(: cnet_usedfor_d64fb25683 (UsedFor dish serve) (STV 1.0 0.9091)) +(: cnet_usedfor_0dcd586ab0 (UsedFor dishwasher washing_dishe) (STV 1.0 0.9091)) +(: cnet_usedfor_920f75c630 (UsedFor disk store_computer_data) (STV 1.0 0.9091)) +(: cnet_usedfor_54593ce371 (UsedFor disk storing_data) (STV 1.0 0.9091)) +(: cnet_usedfor_b2993ccaf1 (UsedFor display_cabinet displaying) (STV 1.0 0.9339)) +(: cnet_usedfor_0370c7e18c (UsedFor display_cabinet showing_off_collection_of_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_d9b0327a4d (UsedFor disposable_razor shave_leg) (STV 1.0 0.9091)) +(: cnet_usedfor_ccd85750c3 (UsedFor disposable_razor shaving_leg) (STV 1.0 0.9454)) +(: cnet_usedfor_eafa92e750 (UsedFor diversion attracting_attention) (STV 1.0 0.9091)) +(: cnet_usedfor_55776f249f (UsedFor divider divide_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_30d8fb55e4 (UsedFor divider dividing_thing) (STV 1.0 0.9339)) +(: cnet_usedfor_1a4fd999ae (UsedFor diving entering_water) (STV 1.0 0.9339)) +(: cnet_usedfor_062523fbc7 (UsedFor diving exercise) (STV 1.0 0.9339)) +(: cnet_usedfor_dbbee530fd (UsedFor diving fun) (STV 1.0 0.9091)) +(: cnet_usedfor_ef26b3f065 (UsedFor diving observing_specy_which_live_underwater) (STV 1.0 0.9091)) +(: cnet_usedfor_577f730a42 (UsedFor diving recreation) (STV 1.0 0.9091)) +(: cnet_usedfor_80fcd20a7d (UsedFor diving relaxation) (STV 1.0 0.9091)) +(: cnet_usedfor_c2e58717a6 (UsedFor dna convict) (STV 1.0 0.9091)) +(: cnet_usedfor_9e3f1f1e13 (UsedFor dna identify_people) (STV 1.0 0.9091)) +(: cnet_usedfor_48d0cfef87 (UsedFor dna make_protein) (STV 1.0 0.9091)) +(: cnet_usedfor_e903ef9258 (UsedFor doctor diagnosing_people_problem) (STV 1.0 0.9091)) +(: cnet_usedfor_ac49d2a4dc (UsedFor doctor heal) (STV 1.0 0.9339)) +(: cnet_usedfor_576da5ca9e (UsedFor doctor maintaining_health) (STV 1.0 0.9091)) +(: cnet_usedfor_f95e6f2653 (UsedFor doctor providing_expert_information) (STV 1.0 0.9091)) +(: cnet_usedfor_eba71908a2 (UsedFor doctor_examination_room examining_patient) (STV 1.0 0.9339)) +(: cnet_usedfor_a0dd228a0d (UsedFor doctor_office seeing_doctor) (STV 1.0 0.9091)) +(: cnet_usedfor_1913dfab96 (UsedFor doctor_office waiting_for_doctor) (STV 1.0 0.9091)) +(: cnet_usedfor_6da5326c47 (UsedFor document_folder filing) (STV 1.0 0.9091)) +(: cnet_usedfor_1e4be16e6d (UsedFor document_folder keeping_paper) (STV 1.0 0.9091)) +(: cnet_usedfor_d7020bf977 (UsedFor document_folder store_document) (STV 1.0 0.9339)) +(: cnet_usedfor_545d21a43f (UsedFor document_folder storing_document) (STV 1.0 0.9091)) +(: cnet_usedfor_90442aad8d (UsedFor dog companionship) (STV 1.0 0.9693)) +(: cnet_usedfor_258095f402 (UsedFor dog guard_house) (STV 1.0 0.9091)) +(: cnet_usedfor_3dbc486085 (UsedFor dog guarding_property) (STV 1.0 0.9339)) +(: cnet_usedfor_ecee02e72f (UsedFor dog keep_company) (STV 1.0 0.9091)) +(: cnet_usedfor_b98ec38de1 (UsedFor dog keeping_company) (STV 1.0 0.9091)) +(: cnet_usedfor_b09aca73a2 (UsedFor dog pet) (STV 1.0 0.9339)) +(: cnet_usedfor_d577196a99 (UsedFor dog find_hidden_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_7f2a676eaf (UsedFor doing_crossword_puzzle entertainment) (STV 1.0 0.9091)) +(: cnet_usedfor_86e57b3f1e (UsedFor doing_crossword_puzzle having_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_13c2ac0a77 (UsedFor doing_crossword_puzzle learning_new_word) (STV 1.0 0.9091)) +(: cnet_usedfor_a5e17ce4a4 (UsedFor doing_crossword_puzzle relaxation) (STV 1.0 0.9091)) +(: cnet_usedfor_76ea018c9d (UsedFor doing_exercis building_muscle) (STV 1.0 0.9454)) +(: cnet_usedfor_f65f35584b (UsedFor doing_exercis good_health) (STV 1.0 0.9091)) +(: cnet_usedfor_387caed466 (UsedFor doing_exercis health) (STV 1.0 0.9339)) +(: cnet_usedfor_c5bbe89a63 (UsedFor doing_exercis practice) (STV 1.0 0.9091)) +(: cnet_usedfor_8756c671b7 (UsedFor doing_exercis staying_in_shape) (STV 1.0 0.9091)) +(: cnet_usedfor_676e2f7053 (UsedFor doing_exercis toning_muscle) (STV 1.0 0.9339)) +(: cnet_usedfor_4d069af093 (UsedFor doing_housework cleaning_house) (STV 1.0 0.9524)) +(: cnet_usedfor_8993a5b74a (UsedFor doing_housework cleanliness) (STV 1.0 0.9454)) +(: cnet_usedfor_26f03ddd1a (UsedFor doing_housework everyone) (STV 1.0 0.9091)) +(: cnet_usedfor_d8bc19dc48 (UsedFor doing_housework exercise) (STV 1.0 0.9091)) +(: cnet_usedfor_c634d91ce5 (UsedFor doing_housework keeping_home_clean) (STV 1.0 0.9339)) +(: cnet_usedfor_a00f247c74 (UsedFor doing_housework maid) (STV 1.0 0.9339)) +(: cnet_usedfor_2b483b6225 (UsedFor doll child_therapy) (STV 1.0 0.9091)) +(: cnet_usedfor_bd523aa87d (UsedFor doll child_play) (STV 1.0 0.9091)) +(: cnet_usedfor_0ee7e54149 (UsedFor doll collecting) (STV 1.0 0.9091)) +(: cnet_usedfor_7360e48043 (UsedFor doll creating_humor) (STV 1.0 0.9091)) +(: cnet_usedfor_746539b03a (UsedFor doll entertain_child) (STV 1.0 0.9091)) +(: cnet_usedfor_85af9c6050 (UsedFor doll fun_for_children) (STV 1.0 0.9091)) +(: cnet_usedfor_dcf9c499e1 (UsedFor doll learning_about_clothe) (STV 1.0 0.9091)) +(: cnet_usedfor_838530ae0b (UsedFor doll little_girl) (STV 1.0 0.9091)) +(: cnet_usedfor_1c30dfa291 (UsedFor doll play) (STV 1.0 0.9524)) +(: cnet_usedfor_59300c4a24 (UsedFor doll play_house) (STV 1.0 0.9091)) +(: cnet_usedfor_a4060eaefe (UsedFor doll play_with_little_girl) (STV 1.0 0.9091)) +(: cnet_usedfor_9eaab68565 (UsedFor doll playing_pretend_game) (STV 1.0 0.9091)) +(: cnet_usedfor_9d9c027bb1 (UsedFor doll playing_with) (STV 1.0 0.9608)) +(: cnet_usedfor_8731cc962a (UsedFor doll plaything_for_cat) (STV 1.0 0.9091)) +(: cnet_usedfor_dbdc85bb8f (UsedFor doll plaything_for_dog) (STV 1.0 0.9091)) +(: cnet_usedfor_28ed8bdca8 (UsedFor doll teaching_children) (STV 1.0 0.9091)) +(: cnet_usedfor_dd1da1af2a (UsedFor doll teaching_medical_personnel) (STV 1.0 0.9091)) +(: cnet_usedfor_de80f6c75d (UsedFor dollar buying) (STV 1.0 0.9091)) +(: cnet_usedfor_2fe768dd47 (UsedFor dollar spending) (STV 1.0 0.9091)) +(: cnet_usedfor_757771897a (UsedFor dollar_bill pay) (STV 1.0 0.9339)) +(: cnet_usedfor_1c3a90bace (UsedFor dollar_bill paying_for_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_25a1e6c440 (UsedFor dollar_bill tipping_taxi_driver) (STV 1.0 0.9091)) +(: cnet_usedfor_fb0fb5fba1 (UsedFor door separating_room) (STV 1.0 0.9091)) +(: cnet_usedfor_c8273082cd (UsedFor door_knob opening_door) (STV 1.0 0.9091)) +(: cnet_usedfor_fae48e1ab5 (UsedFor door_knob open_door) (STV 1.0 0.9339)) +(: cnet_usedfor_16f6400473 (UsedFor door_with_lock keep_people_out) (STV 1.0 0.9339)) +(: cnet_usedfor_c2b039a223 (UsedFor door_with_lock locking_thing_in) (STV 1.0 0.9091)) +(: cnet_usedfor_a035d54126 (UsedFor door_with_lock locking_thing_out) (STV 1.0 0.9091)) +(: cnet_usedfor_fef3ede1c3 (UsedFor door_with_lock privacy) (STV 1.0 0.9091)) +(: cnet_usedfor_c3d94a204b (UsedFor door_with_lock security) (STV 1.0 0.9339)) +(: cnet_usedfor_7e24ab330e (UsedFor doorbell ring) (STV 1.0 0.9091)) +(: cnet_usedfor_4253b9d517 (UsedFor doormat keeping_house_clean) (STV 1.0 0.9339)) +(: cnet_usedfor_970ece18ed (UsedFor doormat saying_welcome) (STV 1.0 0.9339)) +(: cnet_usedfor_dc95fbcfc6 (UsedFor doormat wipe_shoe) (STV 1.0 0.9091)) +(: cnet_usedfor_b18e33e18d (UsedFor doorway enter_room) (STV 1.0 0.9454)) +(: cnet_usedfor_28b7759bbd (UsedFor doorway going_into_room) (STV 1.0 0.9339)) +(: cnet_usedfor_b26a13af1b (UsedFor double_bass add_harmony_and_beat) (STV 1.0 0.9091)) +(: cnet_usedfor_9e29c47c00 (UsedFor double_bass playing_music) (STV 1.0 0.9524)) +(: cnet_usedfor_53cbd96bc5 (UsedFor double_edged_razor cut) (STV 1.0 0.9091)) +(: cnet_usedfor_87e1c0864b (UsedFor double_edged_razor shave) (STV 1.0 0.9091)) +(: cnet_usedfor_38f0f4c90a (UsedFor double_edged_razor shave_with) (STV 1.0 0.9091)) +(: cnet_usedfor_6702ca0a61 (UsedFor double_edged_razor shaving) (STV 1.0 0.9677)) +(: cnet_usedfor_5f096029b9 (UsedFor drawer hold_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_e498930205 (UsedFor drawer storing_sock) (STV 1.0 0.9572)) +(: cnet_usedfor_384622be8a (UsedFor drawer storing_thing) (STV 1.0 0.9454)) +(: cnet_usedfor_4cffcc1356 (UsedFor drawer store) (STV 1.0 0.9091)) +(: cnet_usedfor_fa3f69345c (UsedFor drawstring_bag keeping_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_ed93aa0c7b (UsedFor drawstring_bag keeping_thing_in) (STV 1.0 0.9091)) +(: cnet_usedfor_759b64a6d2 (UsedFor dress_circle make_dress) (STV 1.0 0.9091)) +(: cnet_usedfor_f8800b7614 (UsedFor dresser holding_clothe) (STV 1.0 0.9091)) +(: cnet_usedfor_0713f45c3f (UsedFor dresser storing_clothe) (STV 1.0 0.9091)) +(: cnet_usedfor_a2fff31a0a (UsedFor dresser storing_clothing) (STV 1.0 0.9454)) +(: cnet_usedfor_9a293293e2 (UsedFor dressing_nice date) (STV 1.0 0.9091)) +(: cnet_usedfor_1ee9cd8a57 (UsedFor dressing_nice going_on_date) (STV 1.0 0.9091)) +(: cnet_usedfor_834023dadc (UsedFor dressing_nice going_out) (STV 1.0 0.9091)) +(: cnet_usedfor_cd872e8dac (UsedFor dressing_nice having_date) (STV 1.0 0.9091)) +(: cnet_usedfor_9fec60d7d8 (UsedFor dressing_nice impressing) (STV 1.0 0.9091)) +(: cnet_usedfor_2b19b74efb (UsedFor dressing_nice special_occasion) (STV 1.0 0.9091)) +(: cnet_usedfor_f4531812dc (UsedFor dressing_room get_dressed) (STV 1.0 0.9091)) +(: cnet_usedfor_fae492925c (UsedFor dressing_room privacy) (STV 1.0 0.9091)) +(: cnet_usedfor_826d5a94b0 (UsedFor dressing_room try_on_clothing_before_buying) (STV 1.0 0.9091)) +(: cnet_usedfor_2da42f01fc (UsedFor drill drilling) (STV 1.0 0.9091)) +(: cnet_usedfor_7032a04af3 (UsedFor drill drilling_hole_in_thing) (STV 1.0 0.9454)) +(: cnet_usedfor_64cfeb5b8a (UsedFor drill bore) (STV 1.0 0.9091)) +(: cnet_usedfor_96f161d4fc (UsedFor drill cut) (STV 1.0 0.9091)) +(: cnet_usedfor_682fe06f95 (UsedFor drill hole) (STV 1.0 0.9091)) +(: cnet_usedfor_6167718fb0 (UsedFor drinking quenching_thirst) (STV 1.0 0.9572)) +(: cnet_usedfor_92ce093ef6 (UsedFor drinking_alcohol celebration) (STV 1.0 0.9091)) +(: cnet_usedfor_73877f7af7 (UsedFor drinking_alcohol getting_drunk) (STV 1.0 0.9091)) +(: cnet_usedfor_e7fc057a77 (UsedFor drinking_alcohol partying) (STV 1.0 0.9339)) +(: cnet_usedfor_4f9624a015 (UsedFor drinking_alcohol social_occasion) (STV 1.0 0.9091)) +(: cnet_usedfor_54ef1d015e (UsedFor drink drinking) (STV 1.0 0.9091)) +(: cnet_usedfor_a9cadd4f30 (UsedFor drive storing_data) (STV 1.0 0.9339)) +(: cnet_usedfor_a43fbc853b (UsedFor driveway car) (STV 1.0 0.9091)) +(: cnet_usedfor_342accea14 (UsedFor driveway garage_sale) (STV 1.0 0.9091)) +(: cnet_usedfor_9f358bf5fd (UsedFor driveway parking) (STV 1.0 0.9524)) +(: cnet_usedfor_be86966da2 (UsedFor driveway pickup) (STV 1.0 0.9091)) +(: cnet_usedfor_2c9df448ce (UsedFor driveway truck) (STV 1.0 0.9339)) +(: cnet_usedfor_cbc8d04bac (UsedFor driving control_of_vehicle) (STV 1.0 0.9091)) +(: cnet_usedfor_82d8245aef (UsedFor driving_car getting_from_one_place_to_another) (STV 1.0 0.9091)) +(: cnet_usedfor_67994f881b (UsedFor driving_car getting_one_place_to_another) (STV 1.0 0.9091)) +(: cnet_usedfor_51906c08f2 (UsedFor driving_car getting_other_place) (STV 1.0 0.9339)) +(: cnet_usedfor_f08ca07128 (UsedFor driving_car getting_somewhere) (STV 1.0 0.9524)) +(: cnet_usedfor_7f0bb237dc (UsedFor driving_car going_somewhere) (STV 1.0 0.9608)) +(: cnet_usedfor_42c66ef6cb (UsedFor driving_car having_fun) (STV 1.0 0.9454)) +(: cnet_usedfor_517704a741 (UsedFor driving_car transporting_thing) (STV 1.0 0.9339)) +(: cnet_usedfor_2111a73206 (UsedFor drug treat_illness) (STV 1.0 0.9339)) +(: cnet_usedfor_6749ad3043 (UsedFor drug get_high) (STV 1.0 0.9339)) +(: cnet_usedfor_589743772e (UsedFor drum beat) (STV 1.0 0.9091)) +(: cnet_usedfor_ca0baa2bf4 (UsedFor drum making_music) (STV 1.0 0.9339)) +(: cnet_usedfor_67870257a7 (UsedFor drum drum) (STV 1.0 0.9091)) +(: cnet_usedfor_f2b9588614 (UsedFor drum music) (STV 1.0 0.9091)) +(: cnet_usedfor_fdb1ec08a0 (UsedFor drum rhythm) (STV 1.0 0.9091)) +(: cnet_usedfor_07e1721637 (UsedFor duck eat) (STV 1.0 0.9091)) +(: cnet_usedfor_b56c3f2021 (UsedFor duplex housing_two_family) (STV 1.0 0.9339)) +(: cnet_usedfor_4238372226 (UsedFor duvet sleep) (STV 1.0 0.9091)) +(: cnet_usedfor_f64fb68130 (UsedFor duvet_cover cover_comforter) (STV 1.0 0.9339)) +(: cnet_usedfor_dbdd8aabbd (UsedFor dvd_player watching_dvd) (STV 1.0 0.9091)) +(: cnet_usedfor_91dc05a777 (UsedFor dying changing_color) (STV 1.0 0.9091)) +(: cnet_usedfor_7e1b88cc5b (UsedFor dying end_of_life) (STV 1.0 0.9339)) +(: cnet_usedfor_69f692c7ef (UsedFor dying ending_life) (STV 1.0 0.9091)) +(: cnet_usedfor_7c837dfbd9 (UsedFor dying ending_live) (STV 1.0 0.9091)) +(: cnet_usedfor_2cf037c6d4 (UsedFor dynamite blow_thing_up) (STV 1.0 0.9339)) +(: cnet_usedfor_cebd9c21e8 (UsedFor dynamite blowing_thing_up) (STV 1.0 0.9454)) +(: cnet_usedfor_8106f67a97 (UsedFor e_mail communication) (STV 1.0 0.9339)) +(: cnet_usedfor_dc7f3c3a25 (UsedFor earning_living saving_money) (STV 1.0 0.9091)) +(: cnet_usedfor_5788066ff6 (UsedFor earring decoration) (STV 1.0 0.9091)) +(: cnet_usedfor_f16458cbd7 (UsedFor ear hear_sound) (STV 1.0 0.9524)) +(: cnet_usedfor_91c3b8dfb1 (UsedFor earth live_on) (STV 1.0 0.9524)) +(: cnet_usedfor_0fb0b75b62 (UsedFor eat_meal nutrition) (STV 1.0 0.9091)) +(: cnet_usedfor_be6a9b49f5 (UsedFor eatery buying_food) (STV 1.0 0.9091)) +(: cnet_usedfor_b74830e992 (UsedFor eatery getting_food) (STV 1.0 0.9091)) +(: cnet_usedfor_be8303784b (UsedFor eating satisfying_hunger) (STV 1.0 0.9339)) +(: cnet_usedfor_f94c3b01a2 (UsedFor eating_apple health) (STV 1.0 0.9339)) +(: cnet_usedfor_7fa0c8edfc (UsedFor eating_apple nutrient) (STV 1.0 0.9091)) +(: cnet_usedfor_85e85592a3 (UsedFor eating_apple nutrition) (STV 1.0 0.9091)) +(: cnet_usedfor_414a8ca0e9 (UsedFor eating_apple pleasure) (STV 1.0 0.9091)) +(: cnet_usedfor_9b891f9a5f (UsedFor eating_apple satisfying_hunger) (STV 1.0 0.9339)) +(: cnet_usedfor_185a48a373 (UsedFor eating_apple taste) (STV 1.0 0.9339)) +(: cnet_usedfor_153ec66808 (UsedFor eating_breakfast consuming_nourishment) (STV 1.0 0.9091)) +(: cnet_usedfor_95bbc76d9c (UsedFor eating_breakfast starting_day) (STV 1.0 0.9339)) +(: cnet_usedfor_74c254e032 (UsedFor eating_breakfast starting_day_right) (STV 1.0 0.9454)) +(: cnet_usedfor_051c250127 (UsedFor eating_breakfast_in_bed being_lazy) (STV 1.0 0.9339)) +(: cnet_usedfor_324a2f2ef6 (UsedFor eating_cookie treat) (STV 1.0 0.9339)) +(: cnet_usedfor_4d586b30fb (UsedFor eating_dinner satisfying_hunger) (STV 1.0 0.9091)) +(: cnet_usedfor_37107f614a (UsedFor eating_hamburger reducing_hunger) (STV 1.0 0.9339)) +(: cnet_usedfor_7becd98f0d (UsedFor eating_hamburger satisfying_hunger) (STV 1.0 0.9339)) +(: cnet_usedfor_f3c305c6df (UsedFor eating_ice_cream cooling_off) (STV 1.0 0.9339)) +(: cnet_usedfor_076beadffe (UsedFor eating_ice_cream enjoyment) (STV 1.0 0.9339)) +(: cnet_usedfor_3c0e496774 (UsedFor eating_ice_cream having_dessert) (STV 1.0 0.9091)) +(: cnet_usedfor_f9812e2654 (UsedFor eating_in_restaurant being_social) (STV 1.0 0.9091)) +(: cnet_usedfor_ab86413ab2 (UsedFor eating_in_restaurant satisfying_hunger) (STV 1.0 0.9339)) +(: cnet_usedfor_a3da01aa8f (UsedFor eating_in_restaurant socialising) (STV 1.0 0.9339)) +(: cnet_usedfor_59adaf9d48 (UsedFor eating_lunch energy) (STV 1.0 0.9091)) +(: cnet_usedfor_3362f2beac (UsedFor eating_lunch nutrition) (STV 1.0 0.9091)) +(: cnet_usedfor_5c387d452b (UsedFor eating_place consuming_nourishment) (STV 1.0 0.9091)) +(: cnet_usedfor_8fd3463e10 (UsedFor eating_place eat_food) (STV 1.0 0.9454)) +(: cnet_usedfor_1b76275679 (UsedFor eating_place eating_food) (STV 1.0 0.9091)) +(: cnet_usedfor_7e3745e9d7 (UsedFor eating_place having_drink) (STV 1.0 0.9091)) +(: cnet_usedfor_06ecbc1cbf (UsedFor eating_place relaxing) (STV 1.0 0.9091)) +(: cnet_usedfor_18a4d6c4f4 (UsedFor eating_quickly speed) (STV 1.0 0.9091)) +(: cnet_usedfor_352b4368aa (UsedFor eating_vegetable getting_vitamin) (STV 1.0 0.9339)) +(: cnet_usedfor_1abec8ea5b (UsedFor eating_vegetable health) (STV 1.0 0.9524)) +(: cnet_usedfor_f3de6c61a4 (UsedFor edinburgh tourism) (STV 1.0 0.9091)) +(: cnet_usedfor_927e5c2e6f (UsedFor egg food) (STV 1.0 0.9091)) +(: cnet_usedfor_e5c09c39ed (UsedFor egg create_paint) (STV 1.0 0.9091)) +(: cnet_usedfor_76f7ed7ccd (UsedFor eiffel_tower tourist) (STV 1.0 0.9091)) +(: cnet_usedfor_57aee55c10 (UsedFor election_day voting) (STV 1.0 0.9091)) +(: cnet_usedfor_be67e7b03b (UsedFor electric_fan air_circulation) (STV 1.0 0.9091)) +(: cnet_usedfor_4e356b2932 (UsedFor electric_fan circulating_air) (STV 1.0 0.9091)) +(: cnet_usedfor_e3409d3d73 (UsedFor electric_fan cool_down_room) (STV 1.0 0.9454)) +(: cnet_usedfor_658a049428 (UsedFor electric_fan cooling) (STV 1.0 0.9608)) +(: cnet_usedfor_30e9ae02ec (UsedFor electric_fan moving_air) (STV 1.0 0.9091)) +(: cnet_usedfor_c5abb8b289 (UsedFor electric_pencil_sharpener pencil) (STV 1.0 0.9091)) +(: cnet_usedfor_cc1c292c21 (UsedFor electric_razor remove_unwanted_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_2bd0d68f6a (UsedFor electric_razor shave) (STV 1.0 0.9454)) +(: cnet_usedfor_020679c36e (UsedFor electric_razor shaving) (STV 1.0 0.9339)) +(: cnet_usedfor_97ad685c98 (UsedFor electric_razor trimming_beard) (STV 1.0 0.9339)) +(: cnet_usedfor_70808d5170 (UsedFor electric_toothbrush brushing_teeth) (STV 1.0 0.9091)) +(: cnet_usedfor_659b491ced (UsedFor electric_toothbrush clean_teeth) (STV 1.0 0.9454)) +(: cnet_usedfor_4761691146 (UsedFor electronic_appliance making_life_easier) (STV 1.0 0.9091)) +(: cnet_usedfor_33ac40f7f2 (UsedFor electronic_store buy_computer) (STV 1.0 0.9091)) +(: cnet_usedfor_23288f4962 (UsedFor electronic_store buy_electronic) (STV 1.0 0.9454)) +(: cnet_usedfor_98ab799f3d (UsedFor electronic_store buying_communication_equipment) (STV 1.0 0.9091)) +(: cnet_usedfor_66eec90b50 (UsedFor electronic_store buying_electronic) (STV 1.0 0.9091)) +(: cnet_usedfor_4a2c8e7ac5 (UsedFor elevator hoist) (STV 1.0 0.9091)) +(: cnet_usedfor_dda575fb97 (UsedFor elevator raise) (STV 1.0 0.9091)) +(: cnet_usedfor_1e94fefdda (UsedFor elevator transport) (STV 1.0 0.9091)) +(: cnet_usedfor_2ec43d5446 (UsedFor emptying_bladder relief) (STV 1.0 0.9091)) +(: cnet_usedfor_47c946973e (UsedFor energetic_music relax_mind) (STV 1.0 0.9091)) +(: cnet_usedfor_edb341fee8 (UsedFor engine power) (STV 1.0 0.9091)) +(: cnet_usedfor_ebea7c91ed (UsedFor engine work) (STV 1.0 0.9091)) +(: cnet_usedfor_42af131dad (UsedFor english_channel swimming_across) (STV 1.0 0.9091)) +(: cnet_usedfor_58a1114802 (UsedFor enjoying_company_of_friend happiness) (STV 1.0 0.9091)) +(: cnet_usedfor_39dc5efd01 (UsedFor enjoying_day happy_people) (STV 1.0 0.9091)) +(: cnet_usedfor_0279b3c9db (UsedFor enjoying_film entertainment) (STV 1.0 0.9339)) +(: cnet_usedfor_3c8062b3dd (UsedFor enjoying_film fun) (STV 1.0 0.9091)) +(: cnet_usedfor_0d5c8de55d (UsedFor entertaining getting_to_know_better) (STV 1.0 0.9091)) +(: cnet_usedfor_740672d59a (UsedFor entertaining having_fun) (STV 1.0 0.9339)) +(: cnet_usedfor_d9bcadf6ee (UsedFor entertaining making_feel_better) (STV 1.0 0.9091)) +(: cnet_usedfor_712e588ef9 (UsedFor entertaining_people becoming_popular) (STV 1.0 0.9091)) +(: cnet_usedfor_ea8ac5fafa (UsedFor entertaining_people fun) (STV 1.0 0.9091)) +(: cnet_usedfor_26b2772ed5 (UsedFor entertaining_people making_laugh) (STV 1.0 0.9454)) +(: cnet_usedfor_290d651833 (UsedFor entrance enter_building) (STV 1.0 0.9091)) +(: cnet_usedfor_452ab66509 (UsedFor entrance entering) (STV 1.0 0.9454)) +(: cnet_usedfor_8d6d772ab8 (UsedFor entrance entering_building) (STV 1.0 0.9454)) +(: cnet_usedfor_af36770bc9 (UsedFor entranceway enter) (STV 1.0 0.9091)) +(: cnet_usedfor_403abb0383 (UsedFor entranceway entering) (STV 1.0 0.9339)) +(: cnet_usedfor_c624249b2c (UsedFor entranceway entering_place) (STV 1.0 0.9091)) +(: cnet_usedfor_40e05d5d47 (UsedFor entranceway going_in) (STV 1.0 0.9091)) +(: cnet_usedfor_c70648b324 (UsedFor entranceway going_through) (STV 1.0 0.9454)) +(: cnet_usedfor_0fb30edff2 (UsedFor entryway enter) (STV 1.0 0.9608)) +(: cnet_usedfor_15e5dd41a1 (UsedFor entryway entering) (STV 1.0 0.9091)) +(: cnet_usedfor_0d19bad5dd (UsedFor entryway go_into_building) (STV 1.0 0.9091)) +(: cnet_usedfor_90134860d9 (UsedFor envelope mailing_letter) (STV 1.0 0.9572)) +(: cnet_usedfor_e61dee0fcc (UsedFor envelope send_letter) (STV 1.0 0.9339)) +(: cnet_usedfor_f66ede1bd0 (UsedFor envelope hold) (STV 1.0 0.9091)) +(: cnet_usedfor_a581f7c33c (UsedFor envelope protect) (STV 1.0 0.9091)) +(: cnet_usedfor_4ba74e1e55 (UsedFor equality_for_everyone good_of_community) (STV 1.0 0.9091)) +(: cnet_usedfor_2e0378a46a (UsedFor equipment perform) (STV 1.0 0.9091)) +(: cnet_usedfor_14523c07f2 (UsedFor equipment undertake) (STV 1.0 0.9091)) +(: cnet_usedfor_5d1d4324d1 (UsedFor equipment work) (STV 1.0 0.9091)) +(: cnet_usedfor_52502d7632 (UsedFor eraser erasing_mistake) (STV 1.0 0.9091)) +(: cnet_usedfor_591ebebf85 (UsedFor eraser removing_image) (STV 1.0 0.9091)) +(: cnet_usedfor_ae3fb6ee04 (UsedFor eraser removing_pencil_mark) (STV 1.0 0.9091)) +(: cnet_usedfor_b71a4e27ed (UsedFor eraser_holder hold_eraser) (STV 1.0 0.9339)) +(: cnet_usedfor_b74a9b1e42 (UsedFor eraser_holder holding_eraser) (STV 1.0 0.9339)) +(: cnet_usedfor_4b92e2a745 (UsedFor ergonomic_chair comfortable) (STV 1.0 0.9339)) +(: cnet_usedfor_a7973ce4c9 (UsedFor ergonomic_chair sit_comfortable) (STV 1.0 0.9091)) +(: cnet_usedfor_7fe9b667dc (UsedFor ethernet_cord connecting_to_internet) (STV 1.0 0.9091)) +(: cnet_usedfor_70fb54843c (UsedFor examination_table examin_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_7909113f31 (UsedFor examination_table medical_exam) (STV 1.0 0.9091)) +(: cnet_usedfor_fa60cb6cfa (UsedFor examining_thing determining_nature) (STV 1.0 0.9339)) +(: cnet_usedfor_284b8b7140 (UsedFor examining_thing learning_about_thing) (STV 1.0 0.9524)) +(: cnet_usedfor_0edaaa8417 (UsedFor examining_thing learning_more_about) (STV 1.0 0.9091)) +(: cnet_usedfor_b52279bfb6 (UsedFor examining_thing understanding_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_32019cbd96 (UsedFor executive enforcing_law) (STV 1.0 0.9091)) +(: cnet_usedfor_5c675bda3f (UsedFor exercising cleaning_blood_vessel_and_lung) (STV 1.0 0.9091)) +(: cnet_usedfor_0f5cdd8397 (UsedFor exercising feeling_good) (STV 1.0 0.9524)) +(: cnet_usedfor_76d5a4dd07 (UsedFor exercising fun) (STV 1.0 0.9091)) +(: cnet_usedfor_af8a032919 (UsedFor exercising getting_in_shape) (STV 1.0 0.9091)) +(: cnet_usedfor_8a1ad36ff3 (UsedFor exercising keeping_excess_weight_off) (STV 1.0 0.9091)) +(: cnet_usedfor_3de6d9e380 (UsedFor exercising keeping_fit) (STV 1.0 0.9091)) +(: cnet_usedfor_cb69ffa12b (UsedFor exercising losing_weight) (STV 1.0 0.9454)) +(: cnet_usedfor_8b000785ab (UsedFor exercising training) (STV 1.0 0.9091)) +(: cnet_usedfor_56448e0da8 (UsedFor explosive blow_thing_up) (STV 1.0 0.9091)) +(: cnet_usedfor_a0bd2fc727 (UsedFor explosive blow_up_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_668d875faf (UsedFor explosive blowing_thing_up) (STV 1.0 0.9572)) +(: cnet_usedfor_d9982cd37c (UsedFor explosive destruction) (STV 1.0 0.9091)) +(: cnet_usedfor_a57414922a (UsedFor expressing_information communication) (STV 1.0 0.9339)) +(: cnet_usedfor_e554a26167 (UsedFor expressway driving) (STV 1.0 0.9091)) +(: cnet_usedfor_ea47cbca0e (UsedFor eye blinking) (STV 1.0 0.9339)) +(: cnet_usedfor_eb8d77ce0e (UsedFor eye looking) (STV 1.0 0.9636)) +(: cnet_usedfor_db03019006 (UsedFor eye looking_at) (STV 1.0 0.9091)) +(: cnet_usedfor_db90c69d3a (UsedFor eye staring) (STV 1.0 0.9091)) +(: cnet_usedfor_e06791e169 (UsedFor eye viewing) (STV 1.0 0.9091)) +(: cnet_usedfor_f308f9ded0 (UsedFor eye vision) (STV 1.0 0.9091)) +(: cnet_usedfor_827ebc4a25 (UsedFor eyeglass correcting_vision) (STV 1.0 0.9339)) +(: cnet_usedfor_142e7ec79a (UsedFor eyeglass improve_vision) (STV 1.0 0.9454)) +(: cnet_usedfor_e123eadd0c (UsedFor eyeglass_case holding_eyeglass) (STV 1.0 0.9091)) +(: cnet_usedfor_65072d9f93 (UsedFor eyeglass_case protect_eyeglass) (STV 1.0 0.9091)) +(: cnet_usedfor_eb0f13381e (UsedFor eyeglass_case protecting_eyeglass) (STV 1.0 0.9091)) +(: cnet_usedfor_79dea09488 (UsedFor eyeglass_case storing_eyeglass) (STV 1.0 0.9091)) +(: cnet_usedfor_d91c92c44b (UsedFor fabric clothing) (STV 1.0 0.9339)) +(: cnet_usedfor_9da8da05cc (UsedFor fabric furniture_covering) (STV 1.0 0.9091)) +(: cnet_usedfor_3c1832f8b0 (UsedFor fabric make_clothe) (STV 1.0 0.9339)) +(: cnet_usedfor_c0286e88a1 (UsedFor fabric make_clothing) (STV 1.0 0.9091)) +(: cnet_usedfor_1e181a22d4 (UsedFor fabric make_curtain) (STV 1.0 0.9091)) +(: cnet_usedfor_dba3bad6f9 (UsedFor fabric making_blanket) (STV 1.0 0.9091)) +(: cnet_usedfor_bde0e3051a (UsedFor fabric making_cloth) (STV 1.0 0.9572)) +(: cnet_usedfor_37547f6f23 (UsedFor facial_tissue blowing_nose) (STV 1.0 0.9091)) +(: cnet_usedfor_31e4c7a00f (UsedFor facsimile fax) (STV 1.0 0.9091)) +(: cnet_usedfor_2bddfa58cc (UsedFor facsimile mail) (STV 1.0 0.9091)) +(: cnet_usedfor_744305acc2 (UsedFor facsimile replicate) (STV 1.0 0.9091)) +(: cnet_usedfor_876dfc292b (UsedFor facsimile transcript) (STV 1.0 0.9091)) +(: cnet_usedfor_28e165ad25 (UsedFor factory manufacture_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_42d229bb48 (UsedFor family_room gather_clan) (STV 1.0 0.9091)) +(: cnet_usedfor_47e4443e6b (UsedFor family_room look_at_slide) (STV 1.0 0.9091)) +(: cnet_usedfor_848d721d8d (UsedFor family_room play_card) (STV 1.0 0.9091)) +(: cnet_usedfor_019e54ffd6 (UsedFor family_room play_game) (STV 1.0 0.9339)) +(: cnet_usedfor_6bcb9f2ae6 (UsedFor family_room play_piano) (STV 1.0 0.9091)) +(: cnet_usedfor_3e2b837537 (UsedFor family_room play_ping_pong) (STV 1.0 0.9091)) +(: cnet_usedfor_fe25fa2c87 (UsedFor family_room play_pool) (STV 1.0 0.9091)) +(: cnet_usedfor_5d8c01aea3 (UsedFor family_room watch_home_movy) (STV 1.0 0.9091)) +(: cnet_usedfor_75c104e8b4 (UsedFor family_room watch_tv) (STV 1.0 0.9454)) +(: cnet_usedfor_7c9ba71119 (UsedFor family_room watching_television) (STV 1.0 0.9091)) +(: cnet_usedfor_c93715ee41 (UsedFor family_room watching_tv) (STV 1.0 0.9339)) +(: cnet_usedfor_cbd3c02d2a (UsedFor fan circulate_air) (STV 1.0 0.9091)) +(: cnet_usedfor_4228d8273e (UsedFor fan circulating_air) (STV 1.0 0.9572)) +(: cnet_usedfor_9d3f6d24b6 (UsedFor fan cool_off) (STV 1.0 0.9677)) +(: cnet_usedfor_d553a5a3b7 (UsedFor fan cool_people_down) (STV 1.0 0.9091)) +(: cnet_usedfor_e7a6dcaca7 (UsedFor fan cooling_air) (STV 1.0 0.9091)) +(: cnet_usedfor_b5df8153c3 (UsedFor fan moving_air) (STV 1.0 0.9572)) +(: cnet_usedfor_f8226e2db0 (UsedFor farecard riding_bus) (STV 1.0 0.9091)) +(: cnet_usedfor_6144f3bf5f (UsedFor farecard riding_subway) (STV 1.0 0.9339)) +(: cnet_usedfor_c99a794a8f (UsedFor farecard travel) (STV 1.0 0.9091)) +(: cnet_usedfor_eb19342ebb (UsedFor farmhouse housing_farmer_and_family) (STV 1.0 0.9091)) +(: cnet_usedfor_1d0057091d (UsedFor farmhouse live_in) (STV 1.0 0.9339)) +(: cnet_usedfor_86856c4235 (UsedFor farmland building_farm_on) (STV 1.0 0.9091)) +(: cnet_usedfor_eb011ffb69 (UsedFor farmland farm) (STV 1.0 0.9091)) +(: cnet_usedfor_2086f318a1 (UsedFor farmland grow_crop) (STV 1.0 0.9339)) +(: cnet_usedfor_d825d6420a (UsedFor farmland planting_crop) (STV 1.0 0.9091)) +(: cnet_usedfor_311a25b99b (UsedFor fast_food_restaurant_counter ordering_food_at) (STV 1.0 0.9091)) +(: cnet_usedfor_29c2ef8132 (UsedFor faucet get_water) (STV 1.0 0.9091)) +(: cnet_usedfor_4acf5b4c91 (UsedFor feather making_pen) (STV 1.0 0.9091)) +(: cnet_usedfor_e6a5e101cd (UsedFor feather tickle) (STV 1.0 0.9659)) +(: cnet_usedfor_3981ad7e8c (UsedFor feather tickling) (STV 1.0 0.9091)) +(: cnet_usedfor_dd8df79794 (UsedFor feeding_family survival) (STV 1.0 0.9454)) +(: cnet_usedfor_6dbe8555e7 (UsedFor feet walk) (STV 1.0 0.9454)) +(: cnet_usedfor_a121e5ddb5 (UsedFor fencing controlling_fighting_with_sword) (STV 1.0 0.9091)) +(: cnet_usedfor_a8572b5010 (UsedFor fencing defining_property) (STV 1.0 0.9091)) +(: cnet_usedfor_e9d793d7a8 (UsedFor fencing fighting_with_sword) (STV 1.0 0.9091)) +(: cnet_usedfor_d690508489 (UsedFor fencing fun) (STV 1.0 0.9091)) +(: cnet_usedfor_1a61182ad7 (UsedFor fencing guiding_people_and_animal) (STV 1.0 0.9091)) +(: cnet_usedfor_dde42b420a (UsedFor fencing keeping_animal_out_of_garden) (STV 1.0 0.9339)) +(: cnet_usedfor_c2fb2ee3dd (UsedFor ferry ferry) (STV 1.0 0.9091)) +(: cnet_usedfor_8eab60be5b (UsedFor ferry transport) (STV 1.0 0.9091)) +(: cnet_usedfor_531c0545a5 (UsedFor ferry transportation) (STV 1.0 0.9091)) +(: cnet_usedfor_32190c9263 (UsedFor fighting_enemy self_defense) (STV 1.0 0.9091)) +(: cnet_usedfor_450fd0b2f1 (UsedFor fighting_enemy winning_war) (STV 1.0 0.9524)) +(: cnet_usedfor_b4b1166ec1 (UsedFor file gathering_more_informatioin_into) (STV 1.0 0.9091)) +(: cnet_usedfor_5f66bc5ed1 (UsedFor file keeping_of_record) (STV 1.0 0.9091)) +(: cnet_usedfor_3aa217dba3 (UsedFor file smooth_rough_edge) (STV 1.0 0.9091)) +(: cnet_usedfor_621e554501 (UsedFor file storage_of_information) (STV 1.0 0.9339)) +(: cnet_usedfor_17ac868d9a (UsedFor file file) (STV 1.0 0.9091)) +(: cnet_usedfor_2dec0b455e (UsedFor file form) (STV 1.0 0.9091)) +(: cnet_usedfor_1f577f061a (UsedFor file organization) (STV 1.0 0.9091)) +(: cnet_usedfor_545fa56902 (UsedFor file organize) (STV 1.0 0.9091)) +(: cnet_usedfor_fd7a6b59c8 (UsedFor file polish) (STV 1.0 0.9091)) +(: cnet_usedfor_677861c3b8 (UsedFor file shape) (STV 1.0 0.9091)) +(: cnet_usedfor_57bb78aaa0 (UsedFor file smoothness) (STV 1.0 0.9091)) +(: cnet_usedfor_48ac8b59f3 (UsedFor file store) (STV 1.0 0.9091)) +(: cnet_usedfor_2e8ffdabda (UsedFor filing_folder group_like_item) (STV 1.0 0.9091)) +(: cnet_usedfor_fab9e7521c (UsedFor film store_movy) (STV 1.0 0.9091)) +(: cnet_usedfor_02f18d8748 (UsedFor film film) (STV 1.0 0.9091)) +(: cnet_usedfor_db9596cb7f (UsedFor film foil) (STV 1.0 0.9091)) +(: cnet_usedfor_3aab5c456c (UsedFor film negative) (STV 1.0 0.9091)) +(: cnet_usedfor_5fec070a92 (UsedFor film record) (STV 1.0 0.9091)) +(: cnet_usedfor_920a324c37 (UsedFor film movie) (STV 1.0 0.9091)) +(: cnet_usedfor_1747a16a37 (UsedFor filter filtrate) (STV 1.0 0.9091)) +(: cnet_usedfor_a38cdb16d4 (UsedFor filter purify) (STV 1.0 0.9091)) +(: cnet_usedfor_173bbfe26f (UsedFor filter trickle) (STV 1.0 0.9091)) +(: cnet_usedfor_99bce8e08c (UsedFor finding_information learning) (STV 1.0 0.9454)) +(: cnet_usedfor_3aee37fed6 (UsedFor finding_information research) (STV 1.0 0.9454)) +(: cnet_usedfor_3a81ff07d1 (UsedFor finding_information scholar) (STV 1.0 0.9091)) +(: cnet_usedfor_f1d312cd5c (UsedFor finding_lost_item being_able_to_use_item) (STV 1.0 0.9091)) +(: cnet_usedfor_41ac589b7c (UsedFor finding_truth understanding) (STV 1.0 0.9091)) +(: cnet_usedfor_e73efcaa8a (UsedFor finger create_shadow) (STV 1.0 0.9091)) +(: cnet_usedfor_f4060dc136 (UsedFor finger picking_nose) (STV 1.0 0.9091)) +(: cnet_usedfor_93faf5dd4a (UsedFor finger point) (STV 1.0 0.9454)) +(: cnet_usedfor_ede213a0b4 (UsedFor finger pulling_binder_ring_open) (STV 1.0 0.9091)) +(: cnet_usedfor_3bec81e42c (UsedFor finger push_button) (STV 1.0 0.9091)) +(: cnet_usedfor_7d2594aa44 (UsedFor finger typing) (STV 1.0 0.9636)) +(: cnet_usedfor_42fe7111da (UsedFor fingernail scratch) (STV 1.0 0.9339)) +(: cnet_usedfor_2f36152ea3 (UsedFor fire cook) (STV 1.0 0.9339)) +(: cnet_usedfor_86911fe79c (UsedFor fire cook_food) (STV 1.0 0.9091)) +(: cnet_usedfor_85c39b3684 (UsedFor fire_extinguisher extinguishing_fire) (STV 1.0 0.9091)) +(: cnet_usedfor_35cc4b8f45 (UsedFor fire_extinguisher putting_out_fire) (STV 1.0 0.9524)) +(: cnet_usedfor_6e79c58eaa (UsedFor firebomb blowing_thing_up) (STV 1.0 0.9091)) +(: cnet_usedfor_224a2933e3 (UsedFor firefox browsing_www) (STV 1.0 0.9091)) +(: cnet_usedfor_3d5873fb0e (UsedFor fireplace burn_wood) (STV 1.0 0.9091)) +(: cnet_usedfor_dc132117e8 (UsedFor fireplace warmth) (STV 1.0 0.9339)) +(: cnet_usedfor_5fb0d88022 (UsedFor first_class_airline_seat rich_people) (STV 1.0 0.9091)) +(: cnet_usedfor_d730afb2a8 (UsedFor first_class_airplane_seat rich_people) (STV 1.0 0.9454)) +(: cnet_usedfor_d3db823cec (UsedFor first_class_airplane_seat sitting) (STV 1.0 0.9091)) +(: cnet_usedfor_56eab7cf53 (UsedFor first_class_airplane_seat sitting_in) (STV 1.0 0.9091)) +(: cnet_usedfor_cea0dd2435 (UsedFor first_class_airplane_seat travel) (STV 1.0 0.9454)) +(: cnet_usedfor_367a765231 (UsedFor first_class_airplane_seat traveling) (STV 1.0 0.9091)) +(: cnet_usedfor_2f3123de34 (UsedFor first_floor reception_area) (STV 1.0 0.9339)) +(: cnet_usedfor_6391086e1e (UsedFor first_violin perform_symphony) (STV 1.0 0.9091)) +(: cnet_usedfor_36e2590cab (UsedFor first_violin play_in_orchestra) (STV 1.0 0.9091)) +(: cnet_usedfor_b936dd705a (UsedFor first_violin playing_music) (STV 1.0 0.9339)) +(: cnet_usedfor_0006644db5 (UsedFor fish_tank hold_fish) (STV 1.0 0.9339)) +(: cnet_usedfor_89b14eae71 (UsedFor fishing catching_fish) (STV 1.0 0.9608)) +(: cnet_usedfor_b699f556c2 (UsedFor fishing dad) (STV 1.0 0.9091)) +(: cnet_usedfor_8466edb8be (UsedFor fishing fun) (STV 1.0 0.9339)) +(: cnet_usedfor_4bc068bd50 (UsedFor fishing relaxing) (STV 1.0 0.9091)) +(: cnet_usedfor_f6984cf174 (UsedFor fishing sport) (STV 1.0 0.9339)) +(: cnet_usedfor_1344e929cb (UsedFor fishing_pole catch_fish) (STV 1.0 0.9091)) +(: cnet_usedfor_11e6d0a1f7 (UsedFor fitting_room change_clothing) (STV 1.0 0.9091)) +(: cnet_usedfor_8613bf9955 (UsedFor fitting_room try_clothe) (STV 1.0 0.9524)) +(: cnet_usedfor_3e32d7eb2e (UsedFor fitting_room trying_on_clothe) (STV 1.0 0.9091)) +(: cnet_usedfor_fc51a1d102 (UsedFor fitting_room trying_on_clothe_before_buying) (STV 1.0 0.9091)) +(: cnet_usedfor_7c15448d65 (UsedFor fitting_room trying_on_pant) (STV 1.0 0.9339)) +(: cnet_usedfor_f9a1762cd9 (UsedFor fixing_computer getting_computer_into_working_state) (STV 1.0 0.9091)) +(: cnet_usedfor_09e11026f4 (UsedFor fixing_computer making_work) (STV 1.0 0.9091)) +(: cnet_usedfor_bc1877ea82 (UsedFor flash flash) (STV 1.0 0.9091)) +(: cnet_usedfor_46f4e07373 (UsedFor flash light) (STV 1.0 0.9091)) +(: cnet_usedfor_4e0cc2fd76 (UsedFor flashlight seeing_in_dark) (STV 1.0 0.9091)) +(: cnet_usedfor_4ac3fdb32f (UsedFor flask drinking) (STV 1.0 0.9339)) +(: cnet_usedfor_e7f2e084e8 (UsedFor flask hold_liquid) (STV 1.0 0.9339)) +(: cnet_usedfor_43c3458dc4 (UsedFor flask holding_liquid) (STV 1.0 0.9091)) +(: cnet_usedfor_a645a91b12 (UsedFor flask holding_wine) (STV 1.0 0.9091)) +(: cnet_usedfor_fb36df280b (UsedFor flask store_liquid) (STV 1.0 0.9454)) +(: cnet_usedfor_e2e27cb457 (UsedFor flirting attracting_mate) (STV 1.0 0.9091)) +(: cnet_usedfor_ae28d818fb (UsedFor flirting having_fun) (STV 1.0 0.9339)) +(: cnet_usedfor_4821bded97 (UsedFor floor sit_on) (STV 1.0 0.9091)) +(: cnet_usedfor_d9eaa5de07 (UsedFor floor standing_on) (STV 1.0 0.9091)) +(: cnet_usedfor_49b95af3b8 (UsedFor floor walk) (STV 1.0 0.9693)) +(: cnet_usedfor_11b340f1eb (UsedFor floor walk_on) (STV 1.0 0.9091)) +(: cnet_usedfor_e8d9a32037 (UsedFor floor walking_on) (STV 1.0 0.9339)) +(: cnet_usedfor_a040193463 (UsedFor fluoride_mouthwash freshen_breath) (STV 1.0 0.9091)) +(: cnet_usedfor_a4ecd88599 (UsedFor fluoride_mouthwash kill_bacteria) (STV 1.0 0.9091)) +(: cnet_usedfor_de5e9c048d (UsedFor fluoride_mouthwash preventing_cavity) (STV 1.0 0.9339)) +(: cnet_usedfor_cdde98c0e5 (UsedFor fluoride_toothpaste cleaning_teeth) (STV 1.0 0.9339)) +(: cnet_usedfor_0e51f34aa5 (UsedFor fluoride_toothpaste keeping_teeth_clean) (STV 1.0 0.9091)) +(: cnet_usedfor_fc6aea9c3f (UsedFor fluoride_toothpaste preventing_cavity) (STV 1.0 0.9454)) +(: cnet_usedfor_04abe4df2b (UsedFor fluoride_toothpaste whitening_teeth) (STV 1.0 0.9091)) +(: cnet_usedfor_6f3c8e2f3d (UsedFor flute creating_music) (STV 1.0 0.9091)) +(: cnet_usedfor_e529e0e827 (UsedFor flute make_music) (STV 1.0 0.9454)) +(: cnet_usedfor_80ef055d47 (UsedFor flute making_music) (STV 1.0 0.9091)) +(: cnet_usedfor_52065470a7 (UsedFor flute music) (STV 1.0 0.9091)) +(: cnet_usedfor_8c98d2b585 (UsedFor flying_kite fun) (STV 1.0 0.9454)) +(: cnet_usedfor_593c8e5975 (UsedFor flying_kite having_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_f827ded6fd (UsedFor flying_kite pleasure) (STV 1.0 0.9339)) +(: cnet_usedfor_29b7e430a6 (UsedFor flying_kite relaxing) (STV 1.0 0.9091)) +(: cnet_usedfor_4422542ee6 (UsedFor fog_horn warning_people_about_thick_fog) (STV 1.0 0.9091)) +(: cnet_usedfor_7def4edf1d (UsedFor folder storage) (STV 1.0 0.9091)) +(: cnet_usedfor_b0e25b532b (UsedFor folder store_document) (STV 1.0 0.9091)) +(: cnet_usedfor_f7c5829ad8 (UsedFor folding_chair sit) (STV 1.0 0.9454)) +(: cnet_usedfor_9105b3435e (UsedFor folding_chair sitting) (STV 1.0 0.9091)) +(: cnet_usedfor_dc4d7a334d (UsedFor folding_chair tame_lion) (STV 1.0 0.9091)) +(: cnet_usedfor_2b7b5a4974 (UsedFor folding_door closet) (STV 1.0 0.9339)) +(: cnet_usedfor_d5fa390f62 (UsedFor food eating) (STV 1.0 0.9524)) +(: cnet_usedfor_3c8ea47a1f (UsedFor food energy) (STV 1.0 0.9339)) +(: cnet_usedfor_c8c3dd0523 (UsedFor food nourishment) (STV 1.0 0.9454)) +(: cnet_usedfor_1400d9967a (UsedFor food sustenance) (STV 1.0 0.9339)) +(: cnet_usedfor_770997b3ef (UsedFor food_store buy_drink) (STV 1.0 0.9091)) +(: cnet_usedfor_ad843d6c31 (UsedFor food_store buying_food) (STV 1.0 0.9454)) +(: cnet_usedfor_ab2e7da9f8 (UsedFor foot measuring_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_352a019986 (UsedFor foot running) (STV 1.0 0.9339)) +(: cnet_usedfor_a6cd96021c (UsedFor foot standing) (STV 1.0 0.9339)) +(: cnet_usedfor_7fd66b3b11 (UsedFor foot walking) (STV 1.0 0.9091)) +(: cnet_usedfor_d7f03842cb (UsedFor foot walking_on) (STV 1.0 0.9454)) +(: cnet_usedfor_1a63ef510d (UsedFor football playing_football) (STV 1.0 0.9091)) +(: cnet_usedfor_0c9ce70052 (UsedFor football_field marching_band_at_half_time) (STV 1.0 0.9091)) +(: cnet_usedfor_390efc67ef (UsedFor football_field playing_football) (STV 1.0 0.9454)) +(: cnet_usedfor_f40b3c9aa9 (UsedFor footstool elevating_feet) (STV 1.0 0.9454)) +(: cnet_usedfor_28c6dade9d (UsedFor footstool resting_feet) (STV 1.0 0.9339)) +(: cnet_usedfor_91e8c0ad0b (UsedFor footstool stand_on) (STV 1.0 0.9091)) +(: cnet_usedfor_4c7df08a0f (UsedFor footstool standing_on) (STV 1.0 0.9339)) +(: cnet_usedfor_4ba39448ef (UsedFor forgiving showing_compassion) (STV 1.0 0.9091)) +(: cnet_usedfor_3002a0d377 (UsedFor fork eat_dinner) (STV 1.0 0.9091)) +(: cnet_usedfor_20cce9bcf4 (UsedFor fork eat_food) (STV 1.0 0.9091)) +(: cnet_usedfor_63e11e0c77 (UsedFor fork eat_meal) (STV 1.0 0.9091)) +(: cnet_usedfor_10055d289d (UsedFor fork eating_food) (STV 1.0 0.9572)) +(: cnet_usedfor_469c281706 (UsedFor fork picking_up_food) (STV 1.0 0.9091)) +(: cnet_usedfor_ded28c50b5 (UsedFor forklift accomplish_work_in_warehouse) (STV 1.0 0.9091)) +(: cnet_usedfor_cbdb75759d (UsedFor forklift carry_thing) (STV 1.0 0.9339)) +(: cnet_usedfor_9185fa38b4 (UsedFor forklift lift) (STV 1.0 0.9091)) +(: cnet_usedfor_cc77ac444c (UsedFor forklift lift_heavy_item) (STV 1.0 0.9339)) +(: cnet_usedfor_8033b1e94d (UsedFor forklift lifting) (STV 1.0 0.9454)) +(: cnet_usedfor_324f75db5c (UsedFor forklift lifting_heavy_thing) (STV 1.0 0.9339)) +(: cnet_usedfor_03ae1b0688 (UsedFor forklift lifting_pallet) (STV 1.0 0.9091)) +(: cnet_usedfor_b821c04774 (UsedFor forklift load_truck) (STV 1.0 0.9339)) +(: cnet_usedfor_2d77c5b2a2 (UsedFor forklift move_heavy_item) (STV 1.0 0.9339)) +(: cnet_usedfor_fd2136a8b5 (UsedFor forklift move_heavy_object) (STV 1.0 0.9524)) +(: cnet_usedfor_85b9d5e796 (UsedFor forklift moving_heavy_object) (STV 1.0 0.9091)) +(: cnet_usedfor_8efad4a56d (UsedFor forklift raise_heavy_item) (STV 1.0 0.9339)) +(: cnet_usedfor_1d1c0b8ea5 (UsedFor forklift remove_pallet_of_merchandise_from_storage) (STV 1.0 0.9091)) +(: cnet_usedfor_b9ce9b8e45 (UsedFor forklift ride_across_plant) (STV 1.0 0.9091)) +(: cnet_usedfor_8cfe25b01b (UsedFor forklift store_pallet_of_merchandise) (STV 1.0 0.9091)) +(: cnet_usedfor_6564d0fc94 (UsedFor forklift lift_heavy_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_9bd65d9629 (UsedFor fork eat_steak) (STV 1.0 0.9454)) +(: cnet_usedfor_3a9dedb4fb (UsedFor formula calculate_value) (STV 1.0 0.9091)) +(: cnet_usedfor_84f98eb3ca (UsedFor fountain decoration) (STV 1.0 0.9091)) +(: cnet_usedfor_ca76f408b9 (UsedFor fountain_pen signing_document) (STV 1.0 0.9339)) +(: cnet_usedfor_69a23198cb (UsedFor freeway car) (STV 1.0 0.9091)) +(: cnet_usedfor_8310255dd2 (UsedFor freeway driving_on) (STV 1.0 0.9339)) +(: cnet_usedfor_b15fbad18a (UsedFor freezer freezing_fresh_food) (STV 1.0 0.9091)) +(: cnet_usedfor_e86db701b3 (UsedFor freezer freezing_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_e3087ee8d7 (UsedFor freezer keeping_thing_cold) (STV 1.0 0.9091)) +(: cnet_usedfor_d3587d98ef (UsedFor freezer keeping_thing_frozen) (STV 1.0 0.9091)) +(: cnet_usedfor_7507ecf728 (UsedFor freezer making_ice_cube) (STV 1.0 0.9339)) +(: cnet_usedfor_8b6419e4c3 (UsedFor freezer store_food) (STV 1.0 0.9091)) +(: cnet_usedfor_812d0d0dec (UsedFor french_horn play_in_orchestra) (STV 1.0 0.9091)) +(: cnet_usedfor_9055095b88 (UsedFor french_horn play_music) (STV 1.0 0.9339)) +(: cnet_usedfor_4fafe7212c (UsedFor friend companionship) (STV 1.0 0.9454)) +(: cnet_usedfor_acbfeb8be8 (UsedFor friend confiding) (STV 1.0 0.9524)) +(: cnet_usedfor_7f9f925f30 (UsedFor frisbee catching) (STV 1.0 0.9339)) +(: cnet_usedfor_ccddb7483b (UsedFor frisbee having_fun) (STV 1.0 0.9339)) +(: cnet_usedfor_910b343534 (UsedFor frisbee playing_catch) (STV 1.0 0.9339)) +(: cnet_usedfor_5647e3128e (UsedFor frisbee ultimate_frisbee) (STV 1.0 0.9091)) +(: cnet_usedfor_2e516e8b90 (UsedFor front_room bring_in_sunshine) (STV 1.0 0.9091)) +(: cnet_usedfor_ed7aacea1c (UsedFor front_room entertain_guest) (STV 1.0 0.9091)) +(: cnet_usedfor_665d3be6ee (UsedFor front_room guest) (STV 1.0 0.9339)) +(: cnet_usedfor_1655c608ad (UsedFor front_room have_party) (STV 1.0 0.9339)) +(: cnet_usedfor_87247dd75e (UsedFor front_room hold_coat_and_shoe) (STV 1.0 0.9091)) +(: cnet_usedfor_45561ddf61 (UsedFor front_room socialize) (STV 1.0 0.9091)) +(: cnet_usedfor_0081876013 (UsedFor front_room visiting) (STV 1.0 0.9091)) +(: cnet_usedfor_c1ffb773ed (UsedFor front_yard planting_flower) (STV 1.0 0.9091)) +(: cnet_usedfor_052882dffc (UsedFor front_yard sitting_in) (STV 1.0 0.9091)) +(: cnet_usedfor_bf5660ada5 (UsedFor fruit eating) (STV 1.0 0.9748)) +(: cnet_usedfor_de12da4afe (UsedFor frying_pan cooking) (STV 1.0 0.9636)) +(: cnet_usedfor_6b3156d7d5 (UsedFor frying_pan fry_food) (STV 1.0 0.9091)) +(: cnet_usedfor_57e20b9e8d (UsedFor frying_pan hit_on_head) (STV 1.0 0.9091)) +(: cnet_usedfor_cd9eefaf1e (UsedFor fur insulation) (STV 1.0 0.9091)) +(: cnet_usedfor_c7f3e7f6fc (UsedFor fur keeping_animal_warm) (STV 1.0 0.9454)) +(: cnet_usedfor_640873d4cb (UsedFor fur making_clothe) (STV 1.0 0.9091)) +(: cnet_usedfor_ac6b00542a (UsedFor fur making_coat) (STV 1.0 0.9339)) +(: cnet_usedfor_59e95b1dab (UsedFor furniture furnish) (STV 1.0 0.9091)) +(: cnet_usedfor_96dd144d29 (UsedFor gaining_more_land getting_rich) (STV 1.0 0.9091)) +(: cnet_usedfor_f0ea969c36 (UsedFor gaining_more_land growing_food) (STV 1.0 0.9091)) +(: cnet_usedfor_62b1cc0623 (UsedFor gaining_more_land having_more_power) (STV 1.0 0.9091)) +(: cnet_usedfor_0257155eaa (UsedFor gaining_more_land increasing_size_of_farm) (STV 1.0 0.9091)) +(: cnet_usedfor_782729b8ba (UsedFor gaining_more_land investment) (STV 1.0 0.9339)) +(: cnet_usedfor_0015cfcdce (UsedFor gallery art) (STV 1.0 0.9339)) +(: cnet_usedfor_7444b4d4b4 (UsedFor gallery display_artwork) (STV 1.0 0.9091)) +(: cnet_usedfor_fe44ad941c (UsedFor gallery displaying_artwork) (STV 1.0 0.9091)) +(: cnet_usedfor_2106cd8e6f (UsedFor gallery feature_painting) (STV 1.0 0.9339)) +(: cnet_usedfor_0eefbcab3c (UsedFor gallery showing_work_of_art) (STV 1.0 0.9091)) +(: cnet_usedfor_7fd5b6de74 (UsedFor game entertainment) (STV 1.0 0.9454)) +(: cnet_usedfor_d611943393 (UsedFor game have_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_534d633120 (UsedFor garage parking_car) (STV 1.0 0.9454)) +(: cnet_usedfor_a02a7ba8e1 (UsedFor garage store_tool) (STV 1.0 0.9091)) +(: cnet_usedfor_0f01a23ca4 (UsedFor garbage recycling) (STV 1.0 0.9339)) +(: cnet_usedfor_450793b90e (UsedFor garbage_can compost) (STV 1.0 0.9091)) +(: cnet_usedfor_f472280a49 (UsedFor garbage_can holding_garbage) (STV 1.0 0.9339)) +(: cnet_usedfor_b6f6892f9a (UsedFor garbage_waste compost) (STV 1.0 0.9339)) +(: cnet_usedfor_61a5e14342 (UsedFor garden growing_flower) (STV 1.0 0.9091)) +(: cnet_usedfor_222419367a (UsedFor garden growing_vegetable) (STV 1.0 0.9091)) +(: cnet_usedfor_a632d0ce98 (UsedFor garden relaxation) (STV 1.0 0.9091)) +(: cnet_usedfor_86388aa6a6 (UsedFor garden_hose watering_garden) (STV 1.0 0.9608)) +(: cnet_usedfor_c32f6ca629 (UsedFor garden grow_flower) (STV 1.0 0.9339)) +(: cnet_usedfor_9cdcf3c2ae (UsedFor garden grow_vegetable) (STV 1.0 0.9339)) +(: cnet_usedfor_fe5e40b147 (UsedFor garment_bag protecting_garment) (STV 1.0 0.9091)) +(: cnet_usedfor_521977b609 (UsedFor gas cooking) (STV 1.0 0.9454)) +(: cnet_usedfor_2a4a81e170 (UsedFor gas heating) (STV 1.0 0.9091)) +(: cnet_usedfor_b999813452 (UsedFor gas running_gas_powered_machine) (STV 1.0 0.9091)) +(: cnet_usedfor_0f56cadb44 (UsedFor gas_station buying_gas) (STV 1.0 0.9091)) +(: cnet_usedfor_f1beaa273f (UsedFor gate closing) (STV 1.0 0.9091)) +(: cnet_usedfor_c9dd6745d9 (UsedFor gate leaving_garden) (STV 1.0 0.9091)) +(: cnet_usedfor_1d0e5ba11f (UsedFor gel hair) (STV 1.0 0.9339)) +(: cnet_usedfor_0f6b8d2afc (UsedFor gel hair_styling) (STV 1.0 0.9091)) +(: cnet_usedfor_70df6a83fc (UsedFor gel soap) (STV 1.0 0.9091)) +(: cnet_usedfor_7301e5a568 (UsedFor gel toothpaste) (STV 1.0 0.9091)) +(: cnet_usedfor_a9431327a2 (UsedFor gel_toothpaste brushing_teeth) (STV 1.0 0.9524)) +(: cnet_usedfor_61a7dbce6c (UsedFor general_ledger accounting) (STV 1.0 0.9091)) +(: cnet_usedfor_8669d78fd6 (UsedFor general_ledger tracking_expens) (STV 1.0 0.9091)) +(: cnet_usedfor_d71348d04d (UsedFor general_ledger tracking_income) (STV 1.0 0.9091)) +(: cnet_usedfor_0c3aec5852 (UsedFor general_ledger tracking_profit) (STV 1.0 0.9091)) +(: cnet_usedfor_5098c273f4 (UsedFor general_store buy_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_6cd6eeebcb (UsedFor getting_away_with_crime criminal) (STV 1.0 0.9091)) +(: cnet_usedfor_ed17042247 (UsedFor getting_clean staying_healthy) (STV 1.0 0.9091)) +(: cnet_usedfor_6d19ff5eb6 (UsedFor getting_divorce ending_marriage) (STV 1.0 0.9091)) +(: cnet_usedfor_2587925fb2 (UsedFor getting_drunk forgetting_problem) (STV 1.0 0.9454)) +(: cnet_usedfor_362101c85f (UsedFor getting_exercise feeling_good_about_yourself) (STV 1.0 0.9091)) +(: cnet_usedfor_1245fabd2c (UsedFor getting_exercise having_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_c34f99f3df (UsedFor getting_exercise health) (STV 1.0 0.9339)) +(: cnet_usedfor_5d2fbed684 (UsedFor getting_exercise keeping_fit) (STV 1.0 0.9339)) +(: cnet_usedfor_f6cc851bf0 (UsedFor getting_exercise training) (STV 1.0 0.9091)) +(: cnet_usedfor_edda76a1df (UsedFor getting_good_grade pleasing_parent) (STV 1.0 0.9091)) +(: cnet_usedfor_0ad0084ad1 (UsedFor getting_in_line waiting_for_turn) (STV 1.0 0.9091)) +(: cnet_usedfor_475a965874 (UsedFor getting_in_shape being_more_attractive) (STV 1.0 0.9091)) +(: cnet_usedfor_a881e619e0 (UsedFor getting_in_shape having_more_energy) (STV 1.0 0.9339)) +(: cnet_usedfor_5630a1bf78 (UsedFor getting_in_shape improving_health) (STV 1.0 0.9339)) +(: cnet_usedfor_44a0c2f235 (UsedFor getting_in_shape living_longer) (STV 1.0 0.9091)) +(: cnet_usedfor_32c1d92648 (UsedFor getting_in_shape looking_better) (STV 1.0 0.9091)) +(: cnet_usedfor_4e1f38dadc (UsedFor getting_in_shape own_good_health) (STV 1.0 0.9091)) +(: cnet_usedfor_6503d0c218 (UsedFor getting_in_shape well_toned_body) (STV 1.0 0.9091)) +(: cnet_usedfor_0474c35b68 (UsedFor getting_job earning_living) (STV 1.0 0.9091)) +(: cnet_usedfor_46e6399c53 (UsedFor getting_job earning_money) (STV 1.0 0.9091)) +(: cnet_usedfor_7244f39fdf (UsedFor getting_job making_money) (STV 1.0 0.9454)) +(: cnet_usedfor_94e50843b2 (UsedFor getting_job pay_bill) (STV 1.0 0.9091)) +(: cnet_usedfor_c442e96941 (UsedFor getting_job work) (STV 1.0 0.9091)) +(: cnet_usedfor_f53691123b (UsedFor getting_money_from collecting_debt) (STV 1.0 0.9091)) +(: cnet_usedfor_bf1197ff8a (UsedFor getting_money_from have_more_money) (STV 1.0 0.9091)) +(: cnet_usedfor_6f5d34bfcb (UsedFor getting_onto_web chating) (STV 1.0 0.9091)) +(: cnet_usedfor_cf5f4839d9 (UsedFor getting_onto_web finding_information) (STV 1.0 0.9339)) +(: cnet_usedfor_1bd22c4f87 (UsedFor getting_onto_web reading_new) (STV 1.0 0.9091)) +(: cnet_usedfor_ddbe10ea72 (UsedFor getting_onto_web relaxing) (STV 1.0 0.9091)) +(: cnet_usedfor_97b20b8fb7 (UsedFor getting_onto_web surfing) (STV 1.0 0.9091)) +(: cnet_usedfor_fd8241d28b (UsedFor getting_paid getting_laid) (STV 1.0 0.9091)) +(: cnet_usedfor_3e937ded54 (UsedFor getting_paid working) (STV 1.0 0.9091)) +(: cnet_usedfor_670d72b8c2 (UsedFor getting_physical_activity exercise) (STV 1.0 0.9091)) +(: cnet_usedfor_e6ea7de531 (UsedFor getting_physical_activity exercising) (STV 1.0 0.9339)) +(: cnet_usedfor_17162b432f (UsedFor getting_physical_activity stimulation) (STV 1.0 0.9091)) +(: cnet_usedfor_90bb97488a (UsedFor getting_up_early watching_sunrise) (STV 1.0 0.9454)) +(: cnet_usedfor_883f3b6c43 (UsedFor getting_warm body_heat) (STV 1.0 0.9091)) +(: cnet_usedfor_410fc1d972 (UsedFor getting_warm heating_body) (STV 1.0 0.9091)) +(: cnet_usedfor_60341ff93e (UsedFor getting_wet bathing) (STV 1.0 0.9091)) +(: cnet_usedfor_71e21d0a1d (UsedFor getting_wet cooling_off) (STV 1.0 0.9091)) +(: cnet_usedfor_c65421c39a (UsedFor getting_wet showering) (STV 1.0 0.9091)) +(: cnet_usedfor_cb0b53c582 (UsedFor ghille_suit camouflage) (STV 1.0 0.9091)) +(: cnet_usedfor_6c0c6fa72c (UsedFor giving_assistance helping) (STV 1.0 0.9608)) +(: cnet_usedfor_8b042f10b3 (UsedFor giving_assistance helping_in_need) (STV 1.0 0.9091)) +(: cnet_usedfor_e85c763aa3 (UsedFor giving_assistance helping_other) (STV 1.0 0.9091)) +(: cnet_usedfor_98fed60a3f (UsedFor giving_gift birthday) (STV 1.0 0.9091)) +(: cnet_usedfor_1b22a13aab (UsedFor giving_gift celebrating_birthday) (STV 1.0 0.9091)) +(: cnet_usedfor_928200c508 (UsedFor giving_gift christma) (STV 1.0 0.9339)) +(: cnet_usedfor_ec89573a23 (UsedFor giving_gift making_happy) (STV 1.0 0.9454)) +(: cnet_usedfor_f3904787ab (UsedFor giving_gift party) (STV 1.0 0.9091)) +(: cnet_usedfor_2b17aaa374 (UsedFor giving_plug advertiser) (STV 1.0 0.9091)) +(: cnet_usedfor_df8b142db2 (UsedFor giving_plug making_yourself_known) (STV 1.0 0.9091)) +(: cnet_usedfor_93d133f3f0 (UsedFor giving_plug promoting) (STV 1.0 0.9454)) +(: cnet_usedfor_1bb69b77cf (UsedFor giving_plug promoting_book) (STV 1.0 0.9091)) +(: cnet_usedfor_a09849105c (UsedFor glass drinking) (STV 1.0 0.9730)) +(: cnet_usedfor_d98720bb98 (UsedFor glass drinking_from) (STV 1.0 0.9091)) +(: cnet_usedfor_1a382a24c4 (UsedFor glass drinking_liquid_from) (STV 1.0 0.9091)) +(: cnet_usedfor_4505e71adf (UsedFor glass drinking_out_of) (STV 1.0 0.9091)) +(: cnet_usedfor_ad3ea14ccc (UsedFor glass holding_liquid) (STV 1.0 0.9524)) +(: cnet_usedfor_89092d91ad (UsedFor glass seeing_through) (STV 1.0 0.9524)) +(: cnet_usedfor_31e731155c (UsedFor glass hold) (STV 1.0 0.9091)) +(: cnet_usedfor_e1674a4485 (UsedFor glass_of_milk drinking) (STV 1.0 0.9572)) +(: cnet_usedfor_9aad347aaf (UsedFor glass_of_water drinking) (STV 1.0 0.9339)) +(: cnet_usedfor_b08349a963 (UsedFor glass_of_water quench_thirst) (STV 1.0 0.9339)) +(: cnet_usedfor_9049c9e23a (UsedFor glass_pipe smoking_marijuana) (STV 1.0 0.9091)) +(: cnet_usedfor_d0dbded69d (UsedFor glassed_roof greenhouse) (STV 1.0 0.9091)) +(: cnet_usedfor_5269591b51 (UsedFor glassed_roof greenhous) (STV 1.0 0.9524)) +(: cnet_usedfor_8be4bc3d69 (UsedFor glass correct_vision) (STV 1.0 0.9091)) +(: cnet_usedfor_324c599626 (UsedFor glass correcting_vision) (STV 1.0 0.9339)) +(: cnet_usedfor_cd3b1183ac (UsedFor glass enhance_visual_clarity) (STV 1.0 0.9091)) +(: cnet_usedfor_e5d8700d6f (UsedFor glass expand_range_of_vision) (STV 1.0 0.9091)) +(: cnet_usedfor_806c106cf1 (UsedFor glass hold_drink) (STV 1.0 0.9091)) +(: cnet_usedfor_0fbdf3abf7 (UsedFor glass improve_eyesight) (STV 1.0 0.9339)) +(: cnet_usedfor_a7910d6c5f (UsedFor glass_case holding_eyeglass) (STV 1.0 0.9091)) +(: cnet_usedfor_43c0b40e38 (UsedFor glass_case protect_glass) (STV 1.0 0.9091)) +(: cnet_usedfor_23e19b32c5 (UsedFor glove protecting_hand) (STV 1.0 0.9454)) +(: cnet_usedfor_83da3ffe4b (UsedFor glove_leather keeping_hand_warm) (STV 1.0 0.9091)) +(: cnet_usedfor_bc71d19190 (UsedFor glove_leather making_glove) (STV 1.0 0.9091)) +(: cnet_usedfor_7e742d5cc5 (UsedFor glove keep_hand_warm) (STV 1.0 0.9091)) +(: cnet_usedfor_21fcfa4bba (UsedFor glue fastening_two_object_together) (STV 1.0 0.9091)) +(: cnet_usedfor_35bd8d1f1a (UsedFor glue hold_thing_together) (STV 1.0 0.9091)) +(: cnet_usedfor_af2bfceb24 (UsedFor glue holding_two_thing_together) (STV 1.0 0.9091)) +(: cnet_usedfor_aac5101b49 (UsedFor glue stick_thing_together) (STV 1.0 0.9339)) +(: cnet_usedfor_a2ff58b276 (UsedFor glue sticking_thing_together) (STV 1.0 0.9091)) +(: cnet_usedfor_1e29bd3223 (UsedFor glue_stick gluing_paper) (STV 1.0 0.9339)) +(: cnet_usedfor_761113c060 (UsedFor glue_stick sticking_paper_together) (STV 1.0 0.9091)) +(: cnet_usedfor_8b568e0b1e (UsedFor god justify_hate) (STV 1.0 0.9339)) +(: cnet_usedfor_0c98c8925d (UsedFor god justify_war) (STV 1.0 0.9339)) +(: cnet_usedfor_602cfa89df (UsedFor going_fishing sport) (STV 1.0 0.9091)) +(: cnet_usedfor_f0e48bb751 (UsedFor going_for_drive passing_time) (STV 1.0 0.9339)) +(: cnet_usedfor_c9eec469f6 (UsedFor going_for_haircut creating_conservative_image) (STV 1.0 0.9091)) +(: cnet_usedfor_0b5f2a9f9f (UsedFor going_for_haircut having_shorter_hair) (STV 1.0 0.9339)) +(: cnet_usedfor_8b6f0e3daa (UsedFor going_for_haircut looking_better) (STV 1.0 0.9091)) +(: cnet_usedfor_f9fd65d41a (UsedFor going_for_haircut looking_good) (STV 1.0 0.9339)) +(: cnet_usedfor_f7a89112ac (UsedFor going_for_haircut making_hair_shorter) (STV 1.0 0.9339)) +(: cnet_usedfor_0a0fb4f650 (UsedFor going_for_haircut preparing_for_date) (STV 1.0 0.9091)) +(: cnet_usedfor_5af2e3e679 (UsedFor going_for_haircut reducing_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_4a556aea82 (UsedFor going_for_haircut shortening_hair_length) (STV 1.0 0.9091)) +(: cnet_usedfor_880f8f67e4 (UsedFor going_for_haircut supporting_local_barber) (STV 1.0 0.9091)) +(: cnet_usedfor_fff025c36a (UsedFor going_for_jog fun) (STV 1.0 0.9339)) +(: cnet_usedfor_eb7da6d873 (UsedFor going_for_jog getting_in_shape) (STV 1.0 0.9339)) +(: cnet_usedfor_0b02c5a64e (UsedFor going_for_jog losing_weight) (STV 1.0 0.9524)) +(: cnet_usedfor_e247b7d355 (UsedFor going_for_jog staying_fit) (STV 1.0 0.9091)) +(: cnet_usedfor_0014798d73 (UsedFor going_for_jog staying_healthy) (STV 1.0 0.9339)) +(: cnet_usedfor_28a227c762 (UsedFor going_for_run getting_fresh_air) (STV 1.0 0.9091)) +(: cnet_usedfor_350403fc11 (UsedFor going_for_run getting_into_shape) (STV 1.0 0.9091)) +(: cnet_usedfor_571983aaff (UsedFor going_for_run preparing_for_race) (STV 1.0 0.9091)) +(: cnet_usedfor_ecc5f3de7a (UsedFor going_for_run staying_in_shape) (STV 1.0 0.9091)) +(: cnet_usedfor_436eef72ee (UsedFor going_for_swim cooling_off) (STV 1.0 0.9339)) +(: cnet_usedfor_389025b36f (UsedFor going_for_swim fun) (STV 1.0 0.9339)) +(: cnet_usedfor_2ee2d5a2ac (UsedFor going_for_walk excersice) (STV 1.0 0.9091)) +(: cnet_usedfor_4400a68c86 (UsedFor going_for_walk fun) (STV 1.0 0.9091)) +(: cnet_usedfor_f6c0b46274 (UsedFor going_for_walk going_to_place) (STV 1.0 0.9091)) +(: cnet_usedfor_34c709209d (UsedFor going_for_walk relaxation) (STV 1.0 0.9091)) +(: cnet_usedfor_bfb21f75b2 (UsedFor going_for_walk staying_fit) (STV 1.0 0.9091)) +(: cnet_usedfor_3f7c6e5340 (UsedFor going_for_walk stress_reduction) (STV 1.0 0.9091)) +(: cnet_usedfor_5718840156 (UsedFor going_for_walk stretching_leg) (STV 1.0 0.9091)) +(: cnet_usedfor_2b311529d3 (UsedFor going_into_trance meditating) (STV 1.0 0.9454)) +(: cnet_usedfor_3ce53a47e9 (UsedFor going_jogging exersice) (STV 1.0 0.9091)) +(: cnet_usedfor_7633db3b82 (UsedFor going_jogging having_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_d49d36855a (UsedFor going_jogging losing_weight) (STV 1.0 0.9091)) +(: cnet_usedfor_f26e64bf13 (UsedFor going_on_internet doing_research) (STV 1.0 0.9091)) +(: cnet_usedfor_9c1bfabbea (UsedFor going_on_internet fun) (STV 1.0 0.9091)) +(: cnet_usedfor_df37ba2c0b (UsedFor going_on_internet learning) (STV 1.0 0.9091)) +(: cnet_usedfor_786052031e (UsedFor going_on_internet researching) (STV 1.0 0.9339)) +(: cnet_usedfor_bdd557a629 (UsedFor going_on_stage doing_performance) (STV 1.0 0.9339)) +(: cnet_usedfor_1c0a301ef7 (UsedFor going_on_stage performing_play) (STV 1.0 0.9091)) +(: cnet_usedfor_25df63c4e3 (UsedFor going_on_vacation doing_new_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_706d57960c (UsedFor going_on_vacation enjoyment) (STV 1.0 0.9339)) +(: cnet_usedfor_e3d90b6cae (UsedFor going_on_vacation fun) (STV 1.0 0.9339)) +(: cnet_usedfor_149d9dfd88 (UsedFor going_on_vacation pleasure) (STV 1.0 0.9091)) +(: cnet_usedfor_06fe22f49a (UsedFor going_on_vacation relaxation) (STV 1.0 0.9524)) +(: cnet_usedfor_af48819d98 (UsedFor going_on_vacation relaxing) (STV 1.0 0.9091)) +(: cnet_usedfor_3286f953b6 (UsedFor going_on_vacation seeing_other_part_of_world) (STV 1.0 0.9091)) +(: cnet_usedfor_27ab05a52c (UsedFor going_on_vacation seeing_world) (STV 1.0 0.9524)) +(: cnet_usedfor_44d7691e0f (UsedFor going_on_vacation taking_break_from_work) (STV 1.0 0.9091)) +(: cnet_usedfor_6665c54bd5 (UsedFor going_outside_for_evening enjoying_weather) (STV 1.0 0.9339)) +(: cnet_usedfor_5e42dcbc40 (UsedFor going_outside_for_evening fun) (STV 1.0 0.9091)) +(: cnet_usedfor_5c8ad5a90f (UsedFor going_outside_for_evening get_out_of_house) (STV 1.0 0.9091)) +(: cnet_usedfor_44a294b910 (UsedFor going_outside_for_evening getting_fresh_air) (STV 1.0 0.9339)) +(: cnet_usedfor_d0b293527f (UsedFor going_outside_for_evening having_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_33940bd1bc (UsedFor going_outside_for_evening relaxation) (STV 1.0 0.9091)) +(: cnet_usedfor_d0d36ffa35 (UsedFor going_public gay) (STV 1.0 0.9091)) +(: cnet_usedfor_8bf90a470f (UsedFor going_see_film fun) (STV 1.0 0.9091)) +(: cnet_usedfor_7407553a15 (UsedFor going_see_film having_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_bb2c2352d0 (UsedFor going_see_play do_on_date) (STV 1.0 0.9091)) +(: cnet_usedfor_f72954eab6 (UsedFor going_see_play having_date) (STV 1.0 0.9339)) +(: cnet_usedfor_07f6976d7c (UsedFor going_somewhere getting_somewhere) (STV 1.0 0.9091)) +(: cnet_usedfor_9a6c1eb95b (UsedFor going_to_baseball_game cheering_wildly) (STV 1.0 0.9091)) +(: cnet_usedfor_265a730142 (UsedFor going_to_baseball_game fun) (STV 1.0 0.9091)) +(: cnet_usedfor_ec6ff5bba2 (UsedFor going_to_bed going_to_sleep) (STV 1.0 0.9091)) +(: cnet_usedfor_620a6ac6d3 (UsedFor going_to_bed having_sex) (STV 1.0 0.9339)) +(: cnet_usedfor_552e994940 (UsedFor going_to_bed reading) (STV 1.0 0.9091)) +(: cnet_usedfor_95e522c93b (UsedFor going_to_bed relaxation) (STV 1.0 0.9339)) +(: cnet_usedfor_673b8e3853 (UsedFor going_to_bed relaxing) (STV 1.0 0.9091)) +(: cnet_usedfor_832145b293 (UsedFor going_to_bed taking_nap) (STV 1.0 0.9091)) +(: cnet_usedfor_3e19b34bc9 (UsedFor going_to_concert doing_with_friend) (STV 1.0 0.9091)) +(: cnet_usedfor_d99e8347a1 (UsedFor going_to_concert listening_to_music) (STV 1.0 0.9339)) +(: cnet_usedfor_cc3aa254dd (UsedFor going_to_film dating) (STV 1.0 0.9091)) +(: cnet_usedfor_df72824e0a (UsedFor going_to_film enjoyment) (STV 1.0 0.9091)) +(: cnet_usedfor_f2033b0957 (UsedFor going_to_film having_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_3903d3e176 (UsedFor going_to_get_haircut having_hair_cut) (STV 1.0 0.9091)) +(: cnet_usedfor_fdffe0bb3e (UsedFor going_to_get_haircut looking_nice) (STV 1.0 0.9524)) +(: cnet_usedfor_4b7acf40d2 (UsedFor going_to_get_haircut making_hair_shorter) (STV 1.0 0.9339)) +(: cnet_usedfor_5951adbdff (UsedFor going_to_get_haircut smartening_appearance) (STV 1.0 0.9339)) +(: cnet_usedfor_5329585a1b (UsedFor going_to_hairdresser getting_hair_styled) (STV 1.0 0.9091)) +(: cnet_usedfor_4cedc0d8ad (UsedFor going_to_laundromat doing_laundry) (STV 1.0 0.9339)) +(: cnet_usedfor_45bf73272b (UsedFor going_to_laundromat washing_and_drying_clothe) (STV 1.0 0.9339)) +(: cnet_usedfor_fdd688aace (UsedFor going_to_laundromat washing_cloth) (STV 1.0 0.9454)) +(: cnet_usedfor_aeb105b824 (UsedFor going_to_mall buying_thing) (STV 1.0 0.9339)) +(: cnet_usedfor_8e7cf53027 (UsedFor going_to_mall good_time) (STV 1.0 0.9091)) +(: cnet_usedfor_2cced472c8 (UsedFor going_to_mall shopping) (STV 1.0 0.9339)) +(: cnet_usedfor_ac5bc8d82f (UsedFor going_to_market buying_bread) (STV 1.0 0.9091)) +(: cnet_usedfor_f2ee5a5d5a (UsedFor going_to_market buying_food) (STV 1.0 0.9339)) +(: cnet_usedfor_0cdc64c959 (UsedFor going_to_market grocery_shopping) (STV 1.0 0.9091)) +(: cnet_usedfor_7ae9601a3a (UsedFor going_to_movie being_entertained) (STV 1.0 0.9677)) +(: cnet_usedfor_42bc2a171f (UsedFor going_to_opera appreciating_music) (STV 1.0 0.9091)) +(: cnet_usedfor_56ce7909f1 (UsedFor going_to_opera listening_to_music) (STV 1.0 0.9091)) +(: cnet_usedfor_983a73ba3c (UsedFor going_to_opera seeing_people_and_being_seen) (STV 1.0 0.9091)) +(: cnet_usedfor_81ff36fe8b (UsedFor going_to_party being_together_with_other) (STV 1.0 0.9339)) +(: cnet_usedfor_7dcd6612ac (UsedFor going_to_party celebrating) (STV 1.0 0.9339)) +(: cnet_usedfor_971650a4bc (UsedFor going_to_party fun) (STV 1.0 0.9693)) +(: cnet_usedfor_aa67bd1234 (UsedFor going_to_party getting_drunk) (STV 1.0 0.9339)) +(: cnet_usedfor_3d4a4be600 (UsedFor going_to_party having_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_6435458346 (UsedFor going_to_party meeting_new_people) (STV 1.0 0.9091)) +(: cnet_usedfor_3b91c91983 (UsedFor going_to_party socializing) (STV 1.0 0.9339)) +(: cnet_usedfor_e3b62c3359 (UsedFor going_to_performance being_entertained) (STV 1.0 0.9091)) +(: cnet_usedfor_6d7533f838 (UsedFor going_to_performance enjoyment) (STV 1.0 0.9091)) +(: cnet_usedfor_fe5a5cb485 (UsedFor going_to_performance socializing) (STV 1.0 0.9091)) +(: cnet_usedfor_b0bc999baf (UsedFor going_to_play having_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_e73e56be8a (UsedFor going_to_play literary_enlightenment) (STV 1.0 0.9091)) +(: cnet_usedfor_519224e576 (UsedFor going_to_pub drinking) (STV 1.0 0.9339)) +(: cnet_usedfor_2230f9cf5f (UsedFor going_to_pub having_beer) (STV 1.0 0.9091)) +(: cnet_usedfor_0d294e2ad6 (UsedFor going_to_pub having_drink) (STV 1.0 0.9677)) +(: cnet_usedfor_306f813246 (UsedFor going_to_pub meeting_friend) (STV 1.0 0.9454)) +(: cnet_usedfor_e53c8db6e9 (UsedFor going_to_pub socializing) (STV 1.0 0.9091)) +(: cnet_usedfor_76735c7abc (UsedFor going_to_restaurant eating_out) (STV 1.0 0.9091)) +(: cnet_usedfor_7bb4b3ae00 (UsedFor going_to_sleep letting_body_recover) (STV 1.0 0.9454)) +(: cnet_usedfor_0883d3ffff (UsedFor going_to_sleep relaxing) (STV 1.0 0.9091)) +(: cnet_usedfor_30eea6c5dd (UsedFor going_to_sleep rest) (STV 1.0 0.9693)) +(: cnet_usedfor_f55eae0328 (UsedFor going_to_sleep resting) (STV 1.0 0.9339)) +(: cnet_usedfor_3971e0902f (UsedFor going_to_store buying_clothe) (STV 1.0 0.9091)) +(: cnet_usedfor_fc4ea7a3b7 (UsedFor going_to_store buying_food) (STV 1.0 0.9091)) +(: cnet_usedfor_d34cdaea70 (UsedFor going_to_store fun) (STV 1.0 0.9091)) +(: cnet_usedfor_296be97bd3 (UsedFor going_to_store shopping) (STV 1.0 0.9091)) +(: cnet_usedfor_c539981ba8 (UsedFor going_to_store spending_money) (STV 1.0 0.9091)) +(: cnet_usedfor_69f8250d96 (UsedFor going_to_work accomplishing) (STV 1.0 0.9091)) +(: cnet_usedfor_491a03e393 (UsedFor going_to_work being_productive) (STV 1.0 0.9091)) +(: cnet_usedfor_d64ce5235f (UsedFor going_to_work earning_living) (STV 1.0 0.9339)) +(: cnet_usedfor_272437365b (UsedFor going_to_work money) (STV 1.0 0.9091)) +(: cnet_usedfor_9a51845344 (UsedFor going_to_work paying_bill) (STV 1.0 0.9339)) +(: cnet_usedfor_1cc900278a (UsedFor going_to_work supporting_family) (STV 1.0 0.9454)) +(: cnet_usedfor_6e4d2715c8 (UsedFor going_to_work who_have_job) (STV 1.0 0.9339)) +(: cnet_usedfor_ea54e13103 (UsedFor going_to_zoo education) (STV 1.0 0.9091)) +(: cnet_usedfor_9be416a4a4 (UsedFor going_to_zoo having_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_d7ac8262b1 (UsedFor going_to_zoo learning_about_animal) (STV 1.0 0.9339)) +(: cnet_usedfor_42ea1938fc (UsedFor going_to_zoo seeing_animal) (STV 1.0 0.9091)) +(: cnet_usedfor_605b5c5303 (UsedFor gold_medal first_place) (STV 1.0 0.9091)) +(: cnet_usedfor_272ae15534 (UsedFor golf_club hit_golf_ball) (STV 1.0 0.9091)) +(: cnet_usedfor_c9bfdfecaf (UsedFor golf_club play_golf) (STV 1.0 0.9091)) +(: cnet_usedfor_5e01cc6ea7 (UsedFor gong making_music) (STV 1.0 0.9091)) +(: cnet_usedfor_e821fdd7a4 (UsedFor graphite_pencil doing_math) (STV 1.0 0.9091)) +(: cnet_usedfor_2b64873fbd (UsedFor graphite_pencil draw) (STV 1.0 0.9091)) +(: cnet_usedfor_60c2710949 (UsedFor graphite_pencil write) (STV 1.0 0.9091)) +(: cnet_usedfor_884376ae6d (UsedFor graphite_pencil write_on_paper) (STV 1.0 0.9454)) +(: cnet_usedfor_c45a50d861 (UsedFor gravy_boat hold) (STV 1.0 0.9091)) +(: cnet_usedfor_b6efb3e759 (UsedFor greengrocer buy_vegetable) (STV 1.0 0.9091)) +(: cnet_usedfor_601b7a55a5 (UsedFor grenade blow_up_enemy) (STV 1.0 0.9091)) +(: cnet_usedfor_d39f3521cd (UsedFor grenade blowing_up) (STV 1.0 0.9454)) +(: cnet_usedfor_38bdc447fe (UsedFor grenade blowing_up_thing) (STV 1.0 0.9339)) +(: cnet_usedfor_444020ef23 (UsedFor grenade commit_suicide) (STV 1.0 0.9091)) +(: cnet_usedfor_fd1722bbd5 (UsedFor grenade do_damage) (STV 1.0 0.9339)) +(: cnet_usedfor_af0f2c2300 (UsedFor grenade killing_people) (STV 1.0 0.9339)) +(: cnet_usedfor_e7fc39dec4 (UsedFor grenade murder) (STV 1.0 0.9091)) +(: cnet_usedfor_f868ea3cc5 (UsedFor grill barbecue) (STV 1.0 0.9339)) +(: cnet_usedfor_94e1a8d114 (UsedFor grill cooking) (STV 1.0 0.9454)) +(: cnet_usedfor_e9386e5657 (UsedFor grill grilling_steak) (STV 1.0 0.9339)) +(: cnet_usedfor_6006180ea4 (UsedFor grocer selling_food) (STV 1.0 0.9572)) +(: cnet_usedfor_2f77346cec (UsedFor grocer selling_grocery) (STV 1.0 0.9091)) +(: cnet_usedfor_b4baae2a67 (UsedFor grocer_shop_to buy_food_supply) (STV 1.0 0.9091)) +(: cnet_usedfor_05bc0d4052 (UsedFor grocery_store buying_grocery) (STV 1.0 0.9091)) +(: cnet_usedfor_51ef06f20c (UsedFor grocery_store selling_food) (STV 1.0 0.9091)) +(: cnet_usedfor_d28a54f56b (UsedFor grocery_store shopping) (STV 1.0 0.9091)) +(: cnet_usedfor_0e5e808638 (UsedFor grocery_store storing_food_for_sale) (STV 1.0 0.9091)) +(: cnet_usedfor_5a843ffb3d (UsedFor grooming keeping_one_clean) (STV 1.0 0.9091)) +(: cnet_usedfor_e076f74756 (UsedFor grooming looking_good) (STV 1.0 0.9091)) +(: cnet_usedfor_4c369e9a52 (UsedFor ground_floor entering_building) (STV 1.0 0.9091)) +(: cnet_usedfor_1deea2a388 (UsedFor growing_vegetable eating) (STV 1.0 0.9524)) +(: cnet_usedfor_00e3e6d37e (UsedFor growing_vegetable gardener) (STV 1.0 0.9091)) +(: cnet_usedfor_e8e4373919 (UsedFor guitar making_music) (STV 1.0 0.9693)) +(: cnet_usedfor_c3c4f3aa79 (UsedFor guitar music) (STV 1.0 0.9339)) +(: cnet_usedfor_f6e6007a16 (UsedFor guitar play_song) (STV 1.0 0.9091)) +(: cnet_usedfor_c3b0a556fd (UsedFor guitar sound) (STV 1.0 0.9091)) +(: cnet_usedfor_8b506b00cd (UsedFor gun kill) (STV 1.0 0.9730)) +(: cnet_usedfor_7a55a2d994 (UsedFor gun kill_person) (STV 1.0 0.9091)) +(: cnet_usedfor_d8f34bcfe1 (UsedFor gun shoot_bullet) (STV 1.0 0.9339)) +(: cnet_usedfor_9329aa07b5 (UsedFor gun shooting_thing) (STV 1.0 0.9572)) +(: cnet_usedfor_eb49d2e86f (UsedFor gun fire) (STV 1.0 0.9091)) +(: cnet_usedfor_d40320c6de (UsedFor gun shoot) (STV 1.0 0.9091)) +(: cnet_usedfor_4251838e43 (UsedFor gun shooting) (STV 1.0 0.9091)) +(: cnet_usedfor_6cf1e9e2ab (UsedFor gun shot) (STV 1.0 0.9091)) +(: cnet_usedfor_912236481f (UsedFor gun hunt_animal) (STV 1.0 0.9091)) +(: cnet_usedfor_a692809eab (UsedFor gymnasium class) (STV 1.0 0.9091)) +(: cnet_usedfor_2cb811c166 (UsedFor gymnasium exercise) (STV 1.0 0.9454)) +(: cnet_usedfor_acc56bbaad (UsedFor gymnasium gymnastic) (STV 1.0 0.9454)) +(: cnet_usedfor_8708d3235f (UsedFor hair combing) (STV 1.0 0.9339)) +(: cnet_usedfor_60b62ba6e1 (UsedFor hair warmth) (STV 1.0 0.9524)) +(: cnet_usedfor_c413ed8ad0 (UsedFor hair washing) (STV 1.0 0.9339)) +(: cnet_usedfor_314eae825e (UsedFor hair_clip decorating_yourself) (STV 1.0 0.9339)) +(: cnet_usedfor_83e184e03c (UsedFor hair_clip hold_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_7a88f5360f (UsedFor hair_clip keep_hair_in_place) (STV 1.0 0.9454)) +(: cnet_usedfor_2dcea14337 (UsedFor hair_clip keeping_hair_out_of_eye) (STV 1.0 0.9339)) +(: cnet_usedfor_7af2ab68eb (UsedFor hair_clip styling_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_cb44d6bf4f (UsedFor hair_conditioner making_hair_soft) (STV 1.0 0.9454)) +(: cnet_usedfor_8ac26c79d9 (UsedFor hair_conditioner softening_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_0810bb0c2d (UsedFor hair_dryer dry_hair) (STV 1.0 0.9524)) +(: cnet_usedfor_cc5d6b3f02 (UsedFor hair_dryer drying_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_56989b2f90 (UsedFor hair_dryer drying_wet_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_e500e20421 (UsedFor hair_dryer style_hair) (STV 1.0 0.9339)) +(: cnet_usedfor_0ab3b6559c (UsedFor hair_gel styling_hair) (STV 1.0 0.9454)) +(: cnet_usedfor_dfdd1e8ca6 (UsedFor hair_roller curl_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_d5021870fe (UsedFor hair_roller curling_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_f9e05b9217 (UsedFor hair_roller change_appearance_of_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_2cbd1812eb (UsedFor hair_salon getting_hair_cut) (STV 1.0 0.9454)) +(: cnet_usedfor_bd96d3ed85 (UsedFor hair_salon hair_cut) (STV 1.0 0.9091)) +(: cnet_usedfor_32206440dd (UsedFor hair_salon perm) (STV 1.0 0.9091)) +(: cnet_usedfor_1f456d0853 (UsedFor hair_shaping_gel shape_hair) (STV 1.0 0.9339)) +(: cnet_usedfor_0d34279cbb (UsedFor hair_shaping_gel shaping_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_3afd99dbf1 (UsedFor hair_shaping_gel style_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_76dc0bff67 (UsedFor hairbrush brush_hair) (STV 1.0 0.9524)) +(: cnet_usedfor_e623e44d30 (UsedFor hairbrush brushing_hair) (STV 1.0 0.9339)) +(: cnet_usedfor_d65b7b5ded (UsedFor hairbrush comb_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_cd252fb63c (UsedFor hairbrush combing_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_8b2d532f43 (UsedFor haircutting_scissor cut_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_2ba05f4f18 (UsedFor haircutting_scissor cutting_hair) (STV 1.0 0.9608)) +(: cnet_usedfor_5d4ef60c85 (UsedFor hairdresser_chair having_hair_cut) (STV 1.0 0.9091)) +(: cnet_usedfor_e808b2f96b (UsedFor hairdresser_chair sit_in) (STV 1.0 0.9091)) +(: cnet_usedfor_fa00d4130d (UsedFor hairdresser_chair sitting) (STV 1.0 0.9339)) +(: cnet_usedfor_f1daa46bdc (UsedFor hairdressing_salon get_hair_cut) (STV 1.0 0.9339)) +(: cnet_usedfor_d9265d1422 (UsedFor hairdressing_salon getting_haircut) (STV 1.0 0.9454)) +(: cnet_usedfor_0c54533770 (UsedFor hairdressing_salon having_hair_cut) (STV 1.0 0.9454)) +(: cnet_usedfor_d53b31c2e7 (UsedFor hairdryer blowing_hot_air) (STV 1.0 0.9091)) +(: cnet_usedfor_8ee8af76ba (UsedFor hairdryer dry_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_93b90171dc (UsedFor hairdryer drying_hair) (STV 1.0 0.9524)) +(: cnet_usedfor_d570a69e3b (UsedFor hairdryer melting_ice) (STV 1.0 0.9091)) +(: cnet_usedfor_dcd13453f5 (UsedFor hairdryer styling_hair) (STV 1.0 0.9339)) +(: cnet_usedfor_0a36bfef87 (UsedFor hairpin holding_hair_back) (STV 1.0 0.9091)) +(: cnet_usedfor_123bb4f939 (UsedFor hairpin holding_hair_up) (STV 1.0 0.9091)) +(: cnet_usedfor_3f8070381f (UsedFor hall walking_down) (STV 1.0 0.9091)) +(: cnet_usedfor_f3a2e1737d (UsedFor hallway go_between_nonadjacent_room) (STV 1.0 0.9091)) +(: cnet_usedfor_e4e6812510 (UsedFor hallway moving_between_room) (STV 1.0 0.9091)) +(: cnet_usedfor_abaa4632a3 (UsedFor hallway walking_in) (STV 1.0 0.9091)) +(: cnet_usedfor_6f751a043d (UsedFor hammer breaking_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_fd3dced6ed (UsedFor hammer drive_nail) (STV 1.0 0.9339)) +(: cnet_usedfor_ee9e75a319 (UsedFor hammer driving_nail) (STV 1.0 0.9730)) +(: cnet_usedfor_9a5bdb7632 (UsedFor hammer hit_nail) (STV 1.0 0.9454)) +(: cnet_usedfor_f53b418d75 (UsedFor hammer pound_nail) (STV 1.0 0.9091)) +(: cnet_usedfor_0f49935894 (UsedFor hammer pounding_nail) (STV 1.0 0.9659)) +(: cnet_usedfor_37d2f2f0de (UsedFor hammer pulling_out_nail) (STV 1.0 0.9091)) +(: cnet_usedfor_bd2f212efa (UsedFor hammer whack) (STV 1.0 0.9091)) +(: cnet_usedfor_54268e2765 (UsedFor hammer hammer) (STV 1.0 0.9091)) +(: cnet_usedfor_5e3a31acb0 (UsedFor hammer strike) (STV 1.0 0.9091)) +(: cnet_usedfor_99df68a772 (UsedFor hand_luggage carrying_with) (STV 1.0 0.9339)) +(: cnet_usedfor_53e04da1d6 (UsedFor hand_luggage travel) (STV 1.0 0.9339)) +(: cnet_usedfor_f036218a02 (UsedFor handbag carry_makeup) (STV 1.0 0.9091)) +(: cnet_usedfor_a1958f8017 (UsedFor handbag carry_money) (STV 1.0 0.9091)) +(: cnet_usedfor_231d59c844 (UsedFor handbag carrying_makeup) (STV 1.0 0.9454)) +(: cnet_usedfor_da5401686d (UsedFor handcart haul) (STV 1.0 0.9091)) +(: cnet_usedfor_96d3df2519 (UsedFor handgun murder) (STV 1.0 0.9091)) +(: cnet_usedfor_cc8a111159 (UsedFor handgun self_defense) (STV 1.0 0.9339)) +(: cnet_usedfor_8045a6873d (UsedFor handgun shooting_bullet) (STV 1.0 0.9091)) +(: cnet_usedfor_2d1daf521d (UsedFor handgun target_practice) (STV 1.0 0.9339)) +(: cnet_usedfor_e5097c44eb (UsedFor handle hold_tool) (STV 1.0 0.9091)) +(: cnet_usedfor_fdfe2d527d (UsedFor handle open_door) (STV 1.0 0.9091)) +(: cnet_usedfor_136ae5666a (UsedFor handle pulling) (STV 1.0 0.9091)) +(: cnet_usedfor_d9c2500ef8 (UsedFor handling_proposal lawyer) (STV 1.0 0.9091)) +(: cnet_usedfor_ff1659c753 (UsedFor hand create_pottery) (STV 1.0 0.9091)) +(: cnet_usedfor_a3370846e6 (UsedFor hand create_sand_castle) (STV 1.0 0.9091)) +(: cnet_usedfor_dce1622084 (UsedFor hand hold_thing) (STV 1.0 0.9339)) +(: cnet_usedfor_e224afc464 (UsedFor hanging_out_at_bar meeting_other_people) (STV 1.0 0.9091)) +(: cnet_usedfor_e02386613f (UsedFor hanging_out_at_bar people_with_nothing_better_to_do) (STV 1.0 0.9091)) +(: cnet_usedfor_f7954e1141 (UsedFor hanging_out_at_bar picking_up_women) (STV 1.0 0.9339)) +(: cnet_usedfor_4f4c0c77a6 (UsedFor hanging_out_at_bar socialising) (STV 1.0 0.9524)) +(: cnet_usedfor_cccc202d8c (UsedFor hardware_shop buy_nail) (STV 1.0 0.9454)) +(: cnet_usedfor_a21d19e2db (UsedFor hardware_shop buying_hardware) (STV 1.0 0.9454)) +(: cnet_usedfor_07c6d69269 (UsedFor hardware_shop buying_paint) (STV 1.0 0.9091)) +(: cnet_usedfor_4e614f5250 (UsedFor hardware_shop buying_screw_and_nail) (STV 1.0 0.9091)) +(: cnet_usedfor_3ac3072314 (UsedFor hardware_shop buying_tool) (STV 1.0 0.9091)) +(: cnet_usedfor_b7ba1b3c80 (UsedFor hardware_store buy_nail) (STV 1.0 0.9091)) +(: cnet_usedfor_02e2a56789 (UsedFor hardware_store buy_screw) (STV 1.0 0.9091)) +(: cnet_usedfor_07aeaa18eb (UsedFor hardware_store buy_tool) (STV 1.0 0.9339)) +(: cnet_usedfor_7c2ebbabdd (UsedFor hardware_store buying_hardware) (STV 1.0 0.9454)) +(: cnet_usedfor_d6e7923811 (UsedFor harmonica make_music) (STV 1.0 0.9091)) +(: cnet_usedfor_a91087d574 (UsedFor harmonica making_music) (STV 1.0 0.9524)) +(: cnet_usedfor_162cd35d57 (UsedFor harmonica play_tune) (STV 1.0 0.9091)) +(: cnet_usedfor_85739ea308 (UsedFor harmonica playing_music) (STV 1.0 0.9091)) +(: cnet_usedfor_b3de07a0b6 (UsedFor harpsichord make_music) (STV 1.0 0.9524)) +(: cnet_usedfor_1cac8e76de (UsedFor harpsichord making_music) (STV 1.0 0.9091)) +(: cnet_usedfor_62c7c67694 (UsedFor harpsichord playing_music) (STV 1.0 0.9339)) +(: cnet_usedfor_e159f05a6b (UsedFor hat begging) (STV 1.0 0.9091)) +(: cnet_usedfor_074e039bf4 (UsedFor hat keep_sun_out_of_eye) (STV 1.0 0.9091)) +(: cnet_usedfor_4d522660db (UsedFor hat preventing_sunburn) (STV 1.0 0.9091)) +(: cnet_usedfor_c492ad5490 (UsedFor hat protecting_face_from_sun) (STV 1.0 0.9091)) +(: cnet_usedfor_c612423220 (UsedFor hat protecting_head) (STV 1.0 0.9339)) +(: cnet_usedfor_aa78f11c73 (UsedFor hat waving) (STV 1.0 0.9091)) +(: cnet_usedfor_f6eae1cfe4 (UsedFor hat wearing) (STV 1.0 0.9091)) +(: cnet_usedfor_46b971a33f (UsedFor hat wearing_on_head) (STV 1.0 0.9091)) +(: cnet_usedfor_190e4918da (UsedFor having_bath pleasure) (STV 1.0 0.9091)) +(: cnet_usedfor_2e06a86a46 (UsedFor having_bath washing_yourself) (STV 1.0 0.9454)) +(: cnet_usedfor_2eacba4272 (UsedFor having_checkup staying_healthy) (STV 1.0 0.9339)) +(: cnet_usedfor_c3d9f6d92d (UsedFor having_conversation communicating) (STV 1.0 0.9636)) +(: cnet_usedfor_dd56387002 (UsedFor having_conversation communicating_idea) (STV 1.0 0.9091)) +(: cnet_usedfor_9130169423 (UsedFor having_examination testing) (STV 1.0 0.9091)) +(: cnet_usedfor_b7047fdd34 (UsedFor having_food eating) (STV 1.0 0.9693)) +(: cnet_usedfor_17a2d250a6 (UsedFor having_food pleasure) (STV 1.0 0.9091)) +(: cnet_usedfor_d45559dccf (UsedFor having_food storage) (STV 1.0 0.9091)) +(: cnet_usedfor_a1b1fe694e (UsedFor having_friend_over entertaining) (STV 1.0 0.9091)) +(: cnet_usedfor_1de0222e1b (UsedFor having_friend_over good_time) (STV 1.0 0.9091)) +(: cnet_usedfor_322c4ab76c (UsedFor having_friend_over having_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_61011f5af6 (UsedFor having_friend_over having_good_time) (STV 1.0 0.9091)) +(: cnet_usedfor_b9fe5622f9 (UsedFor having_friend_over having_party) (STV 1.0 0.9091)) +(: cnet_usedfor_ca18e1d6df (UsedFor having_friend_over party) (STV 1.0 0.9339)) +(: cnet_usedfor_8ce252605b (UsedFor having_friend_over talk) (STV 1.0 0.9091)) +(: cnet_usedfor_146350a3db (UsedFor having_fun enjoyment) (STV 1.0 0.9091)) +(: cnet_usedfor_b948598a80 (UsedFor having_fun personal_benefit) (STV 1.0 0.9091)) +(: cnet_usedfor_b2b847f5e2 (UsedFor having_haircut shortening_hair) (STV 1.0 0.9339)) +(: cnet_usedfor_ab11d50b58 (UsedFor having_lunch eating_food) (STV 1.0 0.9339)) +(: cnet_usedfor_197d5f4166 (UsedFor having_lunch meeting_friend) (STV 1.0 0.9091)) +(: cnet_usedfor_50ca45c08d (UsedFor having_lunch taking_break) (STV 1.0 0.9091)) +(: cnet_usedfor_ee96a7eccf (UsedFor having_lunch taking_break_from_work) (STV 1.0 0.9091)) +(: cnet_usedfor_88edb8e4d7 (UsedFor having_party celebrating_special_occasion) (STV 1.0 0.9339)) +(: cnet_usedfor_14ea196ea5 (UsedFor having_party dancing) (STV 1.0 0.9091)) +(: cnet_usedfor_31d04e2e7a (UsedFor having_party drinking_alcohol) (STV 1.0 0.9091)) +(: cnet_usedfor_f226e19716 (UsedFor having_party entertainment) (STV 1.0 0.9091)) +(: cnet_usedfor_301df4879e (UsedFor having_party having_good_time) (STV 1.0 0.9091)) +(: cnet_usedfor_52e461045e (UsedFor having_party meeting_friend) (STV 1.0 0.9091)) +(: cnet_usedfor_8f18bbcabd (UsedFor having_physical_exam checking_health) (STV 1.0 0.9524)) +(: cnet_usedfor_73bf844a30 (UsedFor having_physical_exam having_checkup_by_doctor) (STV 1.0 0.9091)) +(: cnet_usedfor_251e23cbb7 (UsedFor having_physical_exam maintaining_good_health) (STV 1.0 0.9091)) +(: cnet_usedfor_e849d2a812 (UsedFor having_physical_examination determining_health) (STV 1.0 0.9091)) +(: cnet_usedfor_1ef65864b0 (UsedFor having_sex entertain_yourself) (STV 1.0 0.9091)) +(: cnet_usedfor_14af089b58 (UsedFor having_sex fun) (STV 1.0 0.9636)) +(: cnet_usedfor_217ae2d4d1 (UsedFor having_sex wasting_time) (STV 1.0 0.9091)) +(: cnet_usedfor_d361ba802e (UsedFor having_sex_with_same_gender being_gay) (STV 1.0 0.9091)) +(: cnet_usedfor_9a80f6ecd9 (UsedFor having_shower cleanliness) (STV 1.0 0.9091)) +(: cnet_usedfor_04507de90a (UsedFor having_shower removing_dirt_from_body) (STV 1.0 0.9339)) +(: cnet_usedfor_2be0324db1 (UsedFor having_shower shaving) (STV 1.0 0.9091)) +(: cnet_usedfor_b0ec1bd2ce (UsedFor having_shower washing) (STV 1.0 0.9339)) +(: cnet_usedfor_01b47773e2 (UsedFor having_shower washing_hair) (STV 1.0 0.9454)) +(: cnet_usedfor_d44dc63457 (UsedFor head bang_on_wall) (STV 1.0 0.9454)) +(: cnet_usedfor_1bd097fdfc (UsedFor head go_to_bathroom) (STV 1.0 0.9091)) +(: cnet_usedfor_8cd4a3b370 (UsedFor head go_to_bathroom_in) (STV 1.0 0.9091)) +(: cnet_usedfor_b1dba6fd2a (UsedFor head hat) (STV 1.0 0.9091)) +(: cnet_usedfor_4ba7534819 (UsedFor head think) (STV 1.0 0.9339)) +(: cnet_usedfor_594710d54c (UsedFor headphone listen_to_mushc) (STV 1.0 0.9091)) +(: cnet_usedfor_dc5425bf70 (UsedFor health_food_store buy_health_food) (STV 1.0 0.9091)) +(: cnet_usedfor_503bfb4999 (UsedFor health_food_store buy_organic_food) (STV 1.0 0.9091)) +(: cnet_usedfor_20176616e6 (UsedFor health_food_store buy_vitamin) (STV 1.0 0.9091)) +(: cnet_usedfor_b86675168f (UsedFor hearing_music distraction) (STV 1.0 0.9091)) +(: cnet_usedfor_017f44db07 (UsedFor hearing_music enjoying_yourself) (STV 1.0 0.9091)) +(: cnet_usedfor_866c118a87 (UsedFor hearing_music relaxing) (STV 1.0 0.9339)) +(: cnet_usedfor_f618d93ac6 (UsedFor hearing_new information) (STV 1.0 0.9524)) +(: cnet_usedfor_4f9466ae4d (UsedFor hearing_singing attending_concert) (STV 1.0 0.9091)) +(: cnet_usedfor_d6a2d1ff06 (UsedFor hearing_testimony judge) (STV 1.0 0.9091)) +(: cnet_usedfor_a5083d7bea (UsedFor hearing_testimony jury) (STV 1.0 0.9339)) +(: cnet_usedfor_b35a98860a (UsedFor heart love) (STV 1.0 0.9091)) +(: cnet_usedfor_d57c538dff (UsedFor heart pumping_blood) (STV 1.0 0.9524)) +(: cnet_usedfor_bd43cb9d19 (UsedFor heat_source cooking) (STV 1.0 0.9091)) +(: cnet_usedfor_a017e38219 (UsedFor heat_source cooking_food) (STV 1.0 0.9339)) +(: cnet_usedfor_83bc563df0 (UsedFor heat_source warmth) (STV 1.0 0.9339)) +(: cnet_usedfor_40dc29d333 (UsedFor heated_towel_rack drying_towel) (STV 1.0 0.9091)) +(: cnet_usedfor_aefacbb766 (UsedFor heated_towel_rack have_warm_towel) (STV 1.0 0.9454)) +(: cnet_usedfor_2093341e9a (UsedFor heated_towel_rack heating_towel) (STV 1.0 0.9454)) +(: cnet_usedfor_980665f797 (UsedFor heated_towel_rack keeping_towel_warm) (STV 1.0 0.9091)) +(: cnet_usedfor_adfc283c06 (UsedFor heated_towel_rack warm_towel) (STV 1.0 0.9091)) +(: cnet_usedfor_aaa0f37fb3 (UsedFor heater get_warm) (STV 1.0 0.9091)) +(: cnet_usedfor_8bc3575279 (UsedFor heater heat) (STV 1.0 0.9091)) +(: cnet_usedfor_638f52b2b8 (UsedFor heater heating) (STV 1.0 0.9339)) +(: cnet_usedfor_285dc6596e (UsedFor helicopter fly) (STV 1.0 0.9091)) +(: cnet_usedfor_a7c8db29e6 (UsedFor helicopter transport) (STV 1.0 0.9091)) +(: cnet_usedfor_fc88b94846 (UsedFor helicopter travel) (STV 1.0 0.9091)) +(: cnet_usedfor_e94dd7ab6d (UsedFor helium_balloon decorate_for_party) (STV 1.0 0.9091)) +(: cnet_usedfor_9ce2fe8e3b (UsedFor helium_balloon decorating_for_party) (STV 1.0 0.9454)) +(: cnet_usedfor_67bf4ae112 (UsedFor helmet protect_head) (STV 1.0 0.9454)) +(: cnet_usedfor_298e731775 (UsedFor helping feeling_good) (STV 1.0 0.9339)) +(: cnet_usedfor_2e5ee7a455 (UsedFor hide_bed sleep_guest) (STV 1.0 0.9091)) +(: cnet_usedfor_200aa8e0c0 (UsedFor hide_bed_sofa sleep_guest) (STV 1.0 0.9339)) +(: cnet_usedfor_ed5c7d21d9 (UsedFor hide_bed_sofa sleeping_on) (STV 1.0 0.9091)) +(: cnet_usedfor_829f1946d3 (UsedFor high_rise apartment) (STV 1.0 0.9091)) +(: cnet_usedfor_8a10780a2a (UsedFor high_rise office) (STV 1.0 0.9454)) +(: cnet_usedfor_dd63c1c167 (UsedFor highlighter_pen coloring) (STV 1.0 0.9091)) +(: cnet_usedfor_c6316a2571 (UsedFor highlighter_pen highlighting) (STV 1.0 0.9339)) +(: cnet_usedfor_51cc17ea78 (UsedFor highway drive_on) (STV 1.0 0.9572)) +(: cnet_usedfor_12767852fc (UsedFor highway driving_on) (STV 1.0 0.9091)) +(: cnet_usedfor_38026a0d8a (UsedFor highway getting_from_one_place_to_another) (STV 1.0 0.9091)) +(: cnet_usedfor_17074dd14c (UsedFor highway go_elsewhere) (STV 1.0 0.9339)) +(: cnet_usedfor_aa4d392f83 (UsedFor highway motor_vehicle_to_travel_on) (STV 1.0 0.9091)) +(: cnet_usedfor_886b73ee4b (UsedFor highway travel) (STV 1.0 0.9608)) +(: cnet_usedfor_4be5c09ad4 (UsedFor highway travel_in_car) (STV 1.0 0.9091)) +(: cnet_usedfor_9380b02ce2 (UsedFor highway car_to_drive_on) (STV 1.0 0.9572)) +(: cnet_usedfor_d6d2ff9c6d (UsedFor hiking exercise) (STV 1.0 0.9454)) +(: cnet_usedfor_4925cd574f (UsedFor hiking see_new_country) (STV 1.0 0.9091)) +(: cnet_usedfor_22894274ec (UsedFor hill climb) (STV 1.0 0.9572)) +(: cnet_usedfor_55ddb01856 (UsedFor hill climbing) (STV 1.0 0.9339)) +(: cnet_usedfor_c626f6f4c5 (UsedFor hinged_door get_in) (STV 1.0 0.9091)) +(: cnet_usedfor_6e0dde78c5 (UsedFor hinged_door shut_outside) (STV 1.0 0.9339)) +(: cnet_usedfor_bb7f343cad (UsedFor history remembering_past) (STV 1.0 0.9091)) +(: cnet_usedfor_bcf0f7cda7 (UsedFor hitting_bottle forgetting_thing) (STV 1.0 0.9339)) +(: cnet_usedfor_e28330a5d9 (UsedFor hitting_bottle getting_drunk) (STV 1.0 0.9339)) +(: cnet_usedfor_97bdf1b610 (UsedFor hitting_bottle getting_soused) (STV 1.0 0.9091)) +(: cnet_usedfor_8af739b2a9 (UsedFor hitting_bottle intoxication) (STV 1.0 0.9091)) +(: cnet_usedfor_e1715ee4f3 (UsedFor hockey_puck making_goal) (STV 1.0 0.9091)) +(: cnet_usedfor_d61b5113ab (UsedFor hockey_puck passing) (STV 1.0 0.9339)) +(: cnet_usedfor_d0a87e6853 (UsedFor hockey_puck scoring_goal) (STV 1.0 0.9339)) +(: cnet_usedfor_fcfe48706f (UsedFor hoist lift_heavy_object) (STV 1.0 0.9091)) +(: cnet_usedfor_ee7752b02b (UsedFor hoist lift_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_334b03ddcd (UsedFor hoist lifting) (STV 1.0 0.9091)) +(: cnet_usedfor_927339bca0 (UsedFor hoist lifting_heavy_object) (STV 1.0 0.9339)) +(: cnet_usedfor_d68756f155 (UsedFor holding_bay store_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_ed42c4b329 (UsedFor hole hide_in) (STV 1.0 0.9339)) +(: cnet_usedfor_146a0e1109 (UsedFor home living) (STV 1.0 0.9524)) +(: cnet_usedfor_f9f9323b23 (UsedFor home living_in) (STV 1.0 0.9091)) +(: cnet_usedfor_a10958f4f8 (UsedFor homeschooling teaching_children) (STV 1.0 0.9091)) +(: cnet_usedfor_59d0b729fc (UsedFor hook catch_fish) (STV 1.0 0.9524)) +(: cnet_usedfor_e5bc0e93b9 (UsedFor hook hook) (STV 1.0 0.9091)) +(: cnet_usedfor_b705d32c3a (UsedFor horn beeping) (STV 1.0 0.9091)) +(: cnet_usedfor_46b20354b9 (UsedFor horn blowing) (STV 1.0 0.9339)) +(: cnet_usedfor_6ac80f4746 (UsedFor horn honking) (STV 1.0 0.9091)) +(: cnet_usedfor_9767b1b142 (UsedFor horn music) (STV 1.0 0.9454)) +(: cnet_usedfor_670d2f8365 (UsedFor horn playing_music) (STV 1.0 0.9091)) +(: cnet_usedfor_4e1e49872c (UsedFor horn representing_plenty) (STV 1.0 0.9091)) +(: cnet_usedfor_24ac0572ce (UsedFor horn starting_sporting_event) (STV 1.0 0.9091)) +(: cnet_usedfor_dbf36111a7 (UsedFor horn tooting) (STV 1.0 0.9091)) +(: cnet_usedfor_43a4422b9a (UsedFor horse riding) (STV 1.0 0.9659)) +(: cnet_usedfor_325af11543 (UsedFor hose putting_out_fire) (STV 1.0 0.9339)) +(: cnet_usedfor_127b7a17ed (UsedFor hose washing_car) (STV 1.0 0.9339)) +(: cnet_usedfor_ccc73b0ba7 (UsedFor hose watering_flower) (STV 1.0 0.9091)) +(: cnet_usedfor_98d14f4e47 (UsedFor hose watering_garden) (STV 1.0 0.9454)) +(: cnet_usedfor_a6bd662569 (UsedFor hose watering_lawn) (STV 1.0 0.9524)) +(: cnet_usedfor_e4acb9f89a (UsedFor hospital emergency) (STV 1.0 0.9339)) +(: cnet_usedfor_aae0bfa829 (UsedFor hospital having_surgery) (STV 1.0 0.9091)) +(: cnet_usedfor_248f02a28d (UsedFor hospital healing_sick_people) (STV 1.0 0.9091)) +(: cnet_usedfor_399847a67e (UsedFor hospital surgery) (STV 1.0 0.9091)) +(: cnet_usedfor_cbe78d0a19 (UsedFor hot_tap get_hot_water) (STV 1.0 0.9091)) +(: cnet_usedfor_3ffe9fecb5 (UsedFor hotel place_to_sleep) (STV 1.0 0.9091)) +(: cnet_usedfor_2d2c1a4ee7 (UsedFor hotel rest) (STV 1.0 0.9339)) +(: cnet_usedfor_fcc0203ada (UsedFor hotel sleep) (STV 1.0 0.9091)) +(: cnet_usedfor_f8ca200d7c (UsedFor hotel sleeping) (STV 1.0 0.9636)) +(: cnet_usedfor_b2d76da856 (UsedFor hotel_room rest) (STV 1.0 0.9454)) +(: cnet_usedfor_e880894ec9 (UsedFor hotel_room sleeping) (STV 1.0 0.9091)) +(: cnet_usedfor_31b9081f52 (UsedFor hotel_room sleeping_in) (STV 1.0 0.9572)) +(: cnet_usedfor_1bc6f7dd4c (UsedFor house protection_from_element) (STV 1.0 0.9339)) +(: cnet_usedfor_b8bca7435e (UsedFor house residency) (STV 1.0 0.9091)) +(: cnet_usedfor_651416f565 (UsedFor house shelter) (STV 1.0 0.9454)) +(: cnet_usedfor_eda50cc068 (UsedFor house_hold_oil quieting_squeaky_door) (STV 1.0 0.9091)) +(: cnet_usedfor_45141a4275 (UsedFor howling_with_laughter responding_to_funny_joke) (STV 1.0 0.9091)) +(: cnet_usedfor_b315b04132 (UsedFor hurting_else causing_pain) (STV 1.0 0.9091)) +(: cnet_usedfor_cbd5491268 (UsedFor hurting_else getting_revenge) (STV 1.0 0.9091)) +(: cnet_usedfor_a4be86d2a5 (UsedFor hurting_else revenge) (STV 1.0 0.9091)) +(: cnet_usedfor_a9220c3210 (UsedFor ice chilling) (STV 1.0 0.9454)) +(: cnet_usedfor_fad262c7af (UsedFor ice cold) (STV 1.0 0.9091)) +(: cnet_usedfor_927f623907 (UsedFor ice cool_drink) (STV 1.0 0.9454)) +(: cnet_usedfor_b159a96118 (UsedFor ice cooling_drink) (STV 1.0 0.9091)) +(: cnet_usedfor_02fe68c114 (UsedFor ice drink) (STV 1.0 0.9454)) +(: cnet_usedfor_9ab629274a (UsedFor ice keep_thing_cold) (STV 1.0 0.9091)) +(: cnet_usedfor_7052a999df (UsedFor ice keeping_thing_cold) (STV 1.0 0.9091)) +(: cnet_usedfor_dbf416b52a (UsedFor ice reduce_swelling) (STV 1.0 0.9339)) +(: cnet_usedfor_6adf72fab0 (UsedFor icebox keep_thing_cool) (STV 1.0 0.9091)) +(: cnet_usedfor_6ffaa6dfab (UsedFor icebox keeping_food_cold) (STV 1.0 0.9091)) +(: cnet_usedfor_0fcbc38e47 (UsedFor id identification) (STV 1.0 0.9339)) +(: cnet_usedfor_814c79b15d (UsedFor ideology how_to_live_life) (STV 1.0 0.9091)) +(: cnet_usedfor_4701539c8d (UsedFor improving_image feeling_better_about_yourself) (STV 1.0 0.9091)) +(: cnet_usedfor_a0f83da747 (UsedFor improving_image getting_better_job) (STV 1.0 0.9091)) +(: cnet_usedfor_9ffe5c0cae (UsedFor improving_image getting_job) (STV 1.0 0.9339)) +(: cnet_usedfor_0c50ad8b94 (UsedFor improving_yourself accomplishing_goal) (STV 1.0 0.9091)) +(: cnet_usedfor_d83d89d2cf (UsedFor index_card take_note) (STV 1.0 0.9091)) +(: cnet_usedfor_ee5e257546 (UsedFor index_card_cabinet collecting_information_over_time) (STV 1.0 0.9091)) +(: cnet_usedfor_e100f88163 (UsedFor index_card_drawer storing_index_card) (STV 1.0 0.9091)) +(: cnet_usedfor_dea87594c3 (UsedFor indian_ocean fishing) (STV 1.0 0.9339)) +(: cnet_usedfor_d7ddea0765 (UsedFor indian_ocean sailing) (STV 1.0 0.9339)) +(: cnet_usedfor_a1224c4b99 (UsedFor indian_restaurant eating_in) (STV 1.0 0.9339)) +(: cnet_usedfor_533d16a3bc (UsedFor indica mellow_sleepy_high) (STV 1.0 0.9091)) +(: cnet_usedfor_68a3af1988 (UsedFor injury claim_insurance) (STV 1.0 0.9091)) +(: cnet_usedfor_f6b89d2d52 (UsedFor ink coloring) (STV 1.0 0.9091)) +(: cnet_usedfor_800aa814ff (UsedFor ink drawing) (STV 1.0 0.9572)) +(: cnet_usedfor_692fca1a29 (UsedFor ink marking) (STV 1.0 0.9091)) +(: cnet_usedfor_0a7193eac4 (UsedFor ink printing) (STV 1.0 0.9091)) +(: cnet_usedfor_13953c9ad4 (UsedFor instrument making_music) (STV 1.0 0.9524)) +(: cnet_usedfor_7c1dbcb2d6 (UsedFor instrument music) (STV 1.0 0.9091)) +(: cnet_usedfor_ef56d96949 (UsedFor instrument playing_music) (STV 1.0 0.9339)) +(: cnet_usedfor_92f98b8682 (UsedFor instrument_organ play_music) (STV 1.0 0.9339)) +(: cnet_usedfor_b474dc8b5b (UsedFor instrument_triangle make_sound) (STV 1.0 0.9339)) +(: cnet_usedfor_760d7d47ba (UsedFor instrument_triangle making_music) (STV 1.0 0.9636)) +(: cnet_usedfor_f58f9b6d6f (UsedFor instrument_triangle making_noise) (STV 1.0 0.9339)) +(: cnet_usedfor_3713c8659d (UsedFor interior_area throw_party) (STV 1.0 0.9091)) +(: cnet_usedfor_0aa6a9cfcc (UsedFor international_highway drive) (STV 1.0 0.9091)) +(: cnet_usedfor_37e223c37b (UsedFor internet communicate) (STV 1.0 0.9454)) +(: cnet_usedfor_d18d0210ec (UsedFor internet communicate_with_family) (STV 1.0 0.9091)) +(: cnet_usedfor_d30b2b82e3 (UsedFor internet make_travel_arrangement) (STV 1.0 0.9091)) +(: cnet_usedfor_2e306abca8 (UsedFor internet research) (STV 1.0 0.9719)) +(: cnet_usedfor_e4f137b963 (UsedFor interstate_highway drive_upon) (STV 1.0 0.9091)) +(: cnet_usedfor_dd4957c8f7 (UsedFor interstate_highway driving) (STV 1.0 0.9091)) +(: cnet_usedfor_263454e8dc (UsedFor interstate_highway transportation) (STV 1.0 0.9339)) +(: cnet_usedfor_171f79bfe3 (UsedFor intuition create) (STV 1.0 0.9091)) +(: cnet_usedfor_6a730909f6 (UsedFor investing_money_or_energy getting_return_on_investment) (STV 1.0 0.9091)) +(: cnet_usedfor_5262cc7a62 (UsedFor investing_money_or_energy keeping_away_from_boredom) (STV 1.0 0.9091)) +(: cnet_usedfor_d514c1c455 (UsedFor iron hitting_golf_ball) (STV 1.0 0.9091)) +(: cnet_usedfor_df82295f4e (UsedFor iron ironing_clothe) (STV 1.0 0.9572)) +(: cnet_usedfor_3b1f9a3717 (UsedFor iron pressing_cloth) (STV 1.0 0.9339)) +(: cnet_usedfor_984518f2ee (UsedFor island vacation) (STV 1.0 0.9454)) +(: cnet_usedfor_35a6c9a7d8 (UsedFor isle walking) (STV 1.0 0.9339)) +(: cnet_usedfor_364cc02ec9 (UsedFor italian_restaurant eat_italian_food) (STV 1.0 0.9454)) +(: cnet_usedfor_3bc0e97487 (UsedFor italian_restaurant eat_spaghetti) (STV 1.0 0.9339)) +(: cnet_usedfor_fc3b5cfa49 (UsedFor italian_restaurant eating_italian_food) (STV 1.0 0.9091)) +(: cnet_usedfor_672704faf6 (UsedFor italian_restaurant eating_spaghetti) (STV 1.0 0.9091)) +(: cnet_usedfor_ae3747c9fb (UsedFor jack lift_car) (STV 1.0 0.9091)) +(: cnet_usedfor_6eea03bf66 (UsedFor japanese_restaurant eat_sushi) (STV 1.0 0.9091)) +(: cnet_usedfor_cb17bc1c31 (UsedFor japanese_restaurant eating_japanese_food) (STV 1.0 0.9454)) +(: cnet_usedfor_7a552f4367 (UsedFor japanese_restaurant eating_sushi) (STV 1.0 0.9339)) +(: cnet_usedfor_e2e4573cad (UsedFor jar hold) (STV 1.0 0.9091)) +(: cnet_usedfor_06d65c7ee4 (UsedFor jar jar) (STV 1.0 0.9091)) +(: cnet_usedfor_0d24fca622 (UsedFor jar keep) (STV 1.0 0.9091)) +(: cnet_usedfor_f244f9a0ca (UsedFor jean display_shapely_physique) (STV 1.0 0.9091)) +(: cnet_usedfor_11e490403c (UsedFor jean material_for_making_pant) (STV 1.0 0.9091)) +(: cnet_usedfor_fccc555cf0 (UsedFor jean protect_leg) (STV 1.0 0.9091)) +(: cnet_usedfor_b76e67d683 (UsedFor jean wearing) (STV 1.0 0.9524)) +(: cnet_usedfor_c1973decc7 (UsedFor jewelry decorate_body) (STV 1.0 0.9339)) +(: cnet_usedfor_6f15713b5c (UsedFor jewelry decoration) (STV 1.0 0.9339)) +(: cnet_usedfor_1d65ca01e9 (UsedFor jewelry make_social_statement) (STV 1.0 0.9091)) +(: cnet_usedfor_c0dcbfb6c2 (UsedFor job earn_money) (STV 1.0 0.9339)) +(: cnet_usedfor_372efdf82e (UsedFor jogging being_in_shape) (STV 1.0 0.9091)) +(: cnet_usedfor_88f9cc7d73 (UsedFor jogging exercising) (STV 1.0 0.9091)) +(: cnet_usedfor_a2b66d5b83 (UsedFor jogging health) (STV 1.0 0.9339)) +(: cnet_usedfor_87228ee8d6 (UsedFor john going_to_bathroom) (STV 1.0 0.9454)) +(: cnet_usedfor_5f84f25eb8 (UsedFor joining_army defending_country) (STV 1.0 0.9091)) +(: cnet_usedfor_ea1741585a (UsedFor joining_army killing_people) (STV 1.0 0.9091)) +(: cnet_usedfor_812d336c49 (UsedFor joining_army serving_country) (STV 1.0 0.9524)) +(: cnet_usedfor_0925aad6db (UsedFor judiciary interpreting_law) (STV 1.0 0.9091)) +(: cnet_usedfor_fed27b87d5 (UsedFor jump_rope exercising) (STV 1.0 0.9659)) +(: cnet_usedfor_a7b17bbb5e (UsedFor jumping_at_chance taking_opportunity) (STV 1.0 0.9091)) +(: cnet_usedfor_798326786c (UsedFor jumping_out_of_window commiting_suicide) (STV 1.0 0.9454)) +(: cnet_usedfor_1520ea7de3 (UsedFor jumping_out_of_window escaping) (STV 1.0 0.9339)) +(: cnet_usedfor_afdfafc82f (UsedFor jumping_out_of_window escaping_fire) (STV 1.0 0.9454)) +(: cnet_usedfor_8527f5eb7b (UsedFor jumping_out_of_window escaping_from_burning_building) (STV 1.0 0.9524)) +(: cnet_usedfor_269780f412 (UsedFor jumping_out_of_window suicide) (STV 1.0 0.9339)) +(: cnet_usedfor_0195bd5ed1 (UsedFor jumping_rope exercise) (STV 1.0 0.9091)) +(: cnet_usedfor_b1b7f91051 (UsedFor jumping_rope fun) (STV 1.0 0.9339)) +(: cnet_usedfor_119b8f6a4c (UsedFor jumping_rope having_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_9657bd9518 (UsedFor jumping_rope play) (STV 1.0 0.9091)) +(: cnet_usedfor_909d3afc2c (UsedFor jumping_up_and_down expressing_joy) (STV 1.0 0.9091)) +(: cnet_usedfor_d453503763 (UsedFor jumping_up_and_down joy) (STV 1.0 0.9091)) +(: cnet_usedfor_4335f7855a (UsedFor junky heroin) (STV 1.0 0.9091)) +(: cnet_usedfor_b2c859668d (UsedFor keeping_thing_orderly_and_tidy cleanliness) (STV 1.0 0.9091)) +(: cnet_usedfor_52c823f75c (UsedFor kettle boil_water) (STV 1.0 0.9707)) +(: cnet_usedfor_2f4bd2201c (UsedFor kettle heating_water) (STV 1.0 0.9091)) +(: cnet_usedfor_2d8f0cd39f (UsedFor kettle making_tea) (STV 1.0 0.9339)) +(: cnet_usedfor_c5d9fdd0ef (UsedFor kettle boil) (STV 1.0 0.9091)) +(: cnet_usedfor_fa3913fb41 (UsedFor kettle hold) (STV 1.0 0.9091)) +(: cnet_usedfor_96a3622050 (UsedFor key keeping_secure) (STV 1.0 0.9091)) +(: cnet_usedfor_8e7759cff9 (UsedFor key keeping_thing_secure) (STV 1.0 0.9091)) +(: cnet_usedfor_5ca0b06a07 (UsedFor key locking) (STV 1.0 0.9091)) +(: cnet_usedfor_5f6ff7aaad (UsedFor key locking_door) (STV 1.0 0.9339)) +(: cnet_usedfor_e98422ee73 (UsedFor key open_door) (STV 1.0 0.9339)) +(: cnet_usedfor_ff8d1fffef (UsedFor key open_lock) (STV 1.0 0.9677)) +(: cnet_usedfor_f77b19947a (UsedFor key opening_door) (STV 1.0 0.9339)) +(: cnet_usedfor_3c89e9ea70 (UsedFor key opening_lock) (STV 1.0 0.9524)) +(: cnet_usedfor_b674944252 (UsedFor key opening_thing) (STV 1.0 0.9339)) +(: cnet_usedfor_382eebdeda (UsedFor key unlock_lock) (STV 1.0 0.9091)) +(: cnet_usedfor_502f7018f2 (UsedFor key unlocking) (STV 1.0 0.9524)) +(: cnet_usedfor_a3d3d31e0c (UsedFor key close) (STV 1.0 0.9091)) +(: cnet_usedfor_4a9daff25e (UsedFor key lock) (STV 1.0 0.9091)) +(: cnet_usedfor_63d7c38ce1 (UsedFor key open) (STV 1.0 0.9091)) +(: cnet_usedfor_fdd41ccdac (UsedFor key unlock) (STV 1.0 0.9091)) +(: cnet_usedfor_cec221a6aa (UsedFor key_case hiding_key) (STV 1.0 0.9091)) +(: cnet_usedfor_bbef79c18a (UsedFor key_chain hold_key) (STV 1.0 0.9454)) +(: cnet_usedfor_233e58e3df (UsedFor key_chain holding_key) (STV 1.0 0.9091)) +(: cnet_usedfor_7a66ec4a58 (UsedFor key_chain keep_key_together) (STV 1.0 0.9524)) +(: cnet_usedfor_b74e45f77e (UsedFor key_chain keeping_key_together) (STV 1.0 0.9454)) +(: cnet_usedfor_0cbbf1c6e6 (UsedFor keyboard coding) (STV 1.0 0.9091)) +(: cnet_usedfor_c3e98c0500 (UsedFor keyboard communicating) (STV 1.0 0.9091)) +(: cnet_usedfor_e4ce0c6234 (UsedFor keyboard controlling_computer) (STV 1.0 0.9091)) +(: cnet_usedfor_b84382c45f (UsedFor keyboard entering_text) (STV 1.0 0.9091)) +(: cnet_usedfor_b94aa97235 (UsedFor keyboard playing_music) (STV 1.0 0.9454)) +(: cnet_usedfor_3d46871be9 (UsedFor keyboard type_letter) (STV 1.0 0.9091)) +(: cnet_usedfor_2e93106d48 (UsedFor keyboard typing) (STV 1.0 0.9786)) +(: cnet_usedfor_65c799f17e (UsedFor keyboard type) (STV 1.0 0.9091)) +(: cnet_usedfor_573f9c53c4 (UsedFor killing ending_life) (STV 1.0 0.9524)) +(: cnet_usedfor_dead6976d4 (UsedFor killing hurting_other) (STV 1.0 0.9091)) +(: cnet_usedfor_e75ac198a4 (UsedFor killing murderer) (STV 1.0 0.9339)) +(: cnet_usedfor_d93701a6dd (UsedFor killing protecting_loved_one) (STV 1.0 0.9091)) +(: cnet_usedfor_41b8c8455c (UsedFor killing revenge) (STV 1.0 0.9454)) +(: cnet_usedfor_1389a82dfe (UsedFor killing soldier_in_war) (STV 1.0 0.9339)) +(: cnet_usedfor_9e64ba0010 (UsedFor killing_people getting_revenge) (STV 1.0 0.9091)) +(: cnet_usedfor_fd1d75dc91 (UsedFor killing_people murderer) (STV 1.0 0.9339)) +(: cnet_usedfor_cf39ee86b5 (UsedFor killing_people vengence) (STV 1.0 0.9339)) +(: cnet_usedfor_0e565af1b7 (UsedFor kindling start_fire) (STV 1.0 0.9339)) +(: cnet_usedfor_fd75fe3305 (UsedFor king leading_country) (STV 1.0 0.9339)) +(: cnet_usedfor_7091639940 (UsedFor king playing_chess) (STV 1.0 0.9091)) +(: cnet_usedfor_5ac28dbab1 (UsedFor king rule_country) (STV 1.0 0.9339)) +(: cnet_usedfor_ef3bdd2f91 (UsedFor king ruling_country) (STV 1.0 0.9091)) +(: cnet_usedfor_7c4e4e71c6 (UsedFor kingdom feudal_society) (STV 1.0 0.9091)) +(: cnet_usedfor_352efb7584 (UsedFor kingdom government) (STV 1.0 0.9091)) +(: cnet_usedfor_da23b16177 (UsedFor kissing displaying_affection) (STV 1.0 0.9091)) +(: cnet_usedfor_399e96a1be (UsedFor kissing expressing_desire) (STV 1.0 0.9091)) +(: cnet_usedfor_0ff4982535 (UsedFor kissing expressing_love) (STV 1.0 0.9707)) +(: cnet_usedfor_76e73971b2 (UsedFor kissing foreplay) (STV 1.0 0.9524)) +(: cnet_usedfor_c8c87ccc9b (UsedFor kissing fun) (STV 1.0 0.9091)) +(: cnet_usedfor_08edc321a3 (UsedFor kissing getting_closer) (STV 1.0 0.9091)) +(: cnet_usedfor_76e3951947 (UsedFor kissing love) (STV 1.0 0.9524)) +(: cnet_usedfor_ceff662c10 (UsedFor kissing saying_goodbye) (STV 1.0 0.9524)) +(: cnet_usedfor_973674d6b1 (UsedFor kissing saying_hello) (STV 1.0 0.9339)) +(: cnet_usedfor_6102886749 (UsedFor kissing sexual_pleasure) (STV 1.0 0.9339)) +(: cnet_usedfor_59705370e2 (UsedFor kissing showing_affection) (STV 1.0 0.9608)) +(: cnet_usedfor_c67c0da80b (UsedFor kitchen cook) (STV 1.0 0.9091)) +(: cnet_usedfor_93e9bebef1 (UsedFor kitchen cook_food) (STV 1.0 0.9091)) +(: cnet_usedfor_c0e6483227 (UsedFor kitchen cooking_food) (STV 1.0 0.9572)) +(: cnet_usedfor_ac1ca731d4 (UsedFor kitchen storing_food) (STV 1.0 0.9091)) +(: cnet_usedfor_8534029cc5 (UsedFor kitchen_table eating) (STV 1.0 0.9091)) +(: cnet_usedfor_ee1f71a7b1 (UsedFor kitchen_utensil beating) (STV 1.0 0.9091)) +(: cnet_usedfor_933ec11e02 (UsedFor kitchen_utensil opening_can) (STV 1.0 0.9091)) +(: cnet_usedfor_97d346177e (UsedFor kitchen_utensil peeling_carrot) (STV 1.0 0.9091)) +(: cnet_usedfor_b1391d25d4 (UsedFor kitchen_utensil prepare_food) (STV 1.0 0.9454)) +(: cnet_usedfor_2e8c052ca5 (UsedFor kitchenette cooking) (STV 1.0 0.9091)) +(: cnet_usedfor_50ff5f8b96 (UsedFor kite flying) (STV 1.0 0.9524)) +(: cnet_usedfor_05fef47b5c (UsedFor kite fun) (STV 1.0 0.9091)) +(: cnet_usedfor_b4df951f24 (UsedFor knife boning) (STV 1.0 0.9091)) +(: cnet_usedfor_24367a9783 (UsedFor knife butter) (STV 1.0 0.9524)) +(: cnet_usedfor_8548d65276 (UsedFor knife carving_wood) (STV 1.0 0.9339)) +(: cnet_usedfor_92455b53db (UsedFor knife cut_meat_with) (STV 1.0 0.9091)) +(: cnet_usedfor_9bac3a9abe (UsedFor knife cut_string) (STV 1.0 0.9091)) +(: cnet_usedfor_b4832f37e3 (UsedFor knife cutting) (STV 1.0 0.9091)) +(: cnet_usedfor_52245071f1 (UsedFor knife cutting_food) (STV 1.0 0.9454)) +(: cnet_usedfor_e3ef5005b6 (UsedFor knife cutting_steak) (STV 1.0 0.9091)) +(: cnet_usedfor_72b2b69293 (UsedFor knife killing) (STV 1.0 0.9091)) +(: cnet_usedfor_a7f36f5ab2 (UsedFor knife pare_apple) (STV 1.0 0.9091)) +(: cnet_usedfor_87fa183dfe (UsedFor knife scratching) (STV 1.0 0.9091)) +(: cnet_usedfor_db1820e135 (UsedFor knife slicing) (STV 1.0 0.9339)) +(: cnet_usedfor_af7a594c5e (UsedFor knife slicing_bread) (STV 1.0 0.9091)) +(: cnet_usedfor_3f28703572 (UsedFor knife stabbing) (STV 1.0 0.9659)) +(: cnet_usedfor_aa215e329b (UsedFor knife cut) (STV 1.0 0.9091)) +(: cnet_usedfor_e9727cc865 (UsedFor knife stab) (STV 1.0 0.9091)) +(: cnet_usedfor_d636c95e52 (UsedFor knight jousting) (STV 1.0 0.9572)) +(: cnet_usedfor_ded50af1e7 (UsedFor knitting making_clothe) (STV 1.0 0.9454)) +(: cnet_usedfor_ccb1d871be (UsedFor knive cut_flesh) (STV 1.0 0.9091)) +(: cnet_usedfor_47e8714d7c (UsedFor knive cut_vegetable) (STV 1.0 0.9091)) +(: cnet_usedfor_0cd138450f (UsedFor knob opening_door) (STV 1.0 0.9091)) +(: cnet_usedfor_601db3d10f (UsedFor knot fastener) (STV 1.0 0.9091)) +(: cnet_usedfor_ce816026a4 (UsedFor knot tie) (STV 1.0 0.9091)) +(: cnet_usedfor_f729c112b5 (UsedFor kosher_delicatessen buy_kosher_food) (STV 1.0 0.9091)) +(: cnet_usedfor_a784bdb2b5 (UsedFor kosher_restaurant eating_at) (STV 1.0 0.9339)) +(: cnet_usedfor_45dde92541 (UsedFor kosher_restaurant jewish_people) (STV 1.0 0.9454)) +(: cnet_usedfor_fe09221d7b (UsedFor label_maker make_label) (STV 1.0 0.9454)) +(: cnet_usedfor_9ae7703103 (UsedFor labeler making_label) (STV 1.0 0.9091)) +(: cnet_usedfor_ffba061c05 (UsedFor ladder climbing_wall) (STV 1.0 0.9091)) +(: cnet_usedfor_c770edf65b (UsedFor ladder painting_ceiling) (STV 1.0 0.9339)) +(: cnet_usedfor_782565f35c (UsedFor lady have_sex) (STV 1.0 0.9454)) +(: cnet_usedfor_e0910eaac9 (UsedFor lake boating_on) (STV 1.0 0.9091)) +(: cnet_usedfor_ceef5c48bd (UsedFor lake fishing_in) (STV 1.0 0.9339)) +(: cnet_usedfor_49a63673fb (UsedFor lake sailing_on) (STV 1.0 0.9091)) +(: cnet_usedfor_4fe7ea3a44 (UsedFor lake water_skiing) (STV 1.0 0.9339)) +(: cnet_usedfor_549391efb9 (UsedFor lamp illuminating_area) (STV 1.0 0.9339)) +(: cnet_usedfor_6118240144 (UsedFor lamp light) (STV 1.0 0.9091)) +(: cnet_usedfor_f2b3aab607 (UsedFor land building_on) (STV 1.0 0.9339)) +(: cnet_usedfor_e9c5e07ae9 (UsedFor land farming) (STV 1.0 0.9339)) +(: cnet_usedfor_4b591dc467 (UsedFor landmass building_city) (STV 1.0 0.9091)) +(: cnet_usedfor_0d620d6d29 (UsedFor lane bowling) (STV 1.0 0.9091)) +(: cnet_usedfor_7a6a882a72 (UsedFor lane driving) (STV 1.0 0.9454)) +(: cnet_usedfor_4be0bce3f2 (UsedFor language communication) (STV 1.0 0.9636)) +(: cnet_usedfor_26541f3844 (UsedFor lantern illumination) (STV 1.0 0.9091)) +(: cnet_usedfor_a0f122563a (UsedFor lantern light_path) (STV 1.0 0.9091)) +(: cnet_usedfor_664ae2db28 (UsedFor lantern light_up_dark_room) (STV 1.0 0.9091)) +(: cnet_usedfor_0edf410085 (UsedFor large_city_shopping_mall shopping) (STV 1.0 0.9091)) +(: cnet_usedfor_6443038785 (UsedFor large_container holding_lot_of_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_1006528994 (UsedFor large_container holding_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_3d8b5e16c4 (UsedFor large_container store_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_446cf74698 (UsedFor large_food_store buy_grocery) (STV 1.0 0.9339)) +(: cnet_usedfor_d34bcac5dd (UsedFor large_food_store buying_food_in_bulk) (STV 1.0 0.9091)) +(: cnet_usedfor_7c27af98e7 (UsedFor large_food_store keeping_food_in) (STV 1.0 0.9091)) +(: cnet_usedfor_7b9d66144b (UsedFor large_food_store purchase_bulk_food_item) (STV 1.0 0.9091)) +(: cnet_usedfor_b4f0e63e5c (UsedFor large_food_store shopping_grocery) (STV 1.0 0.9339)) +(: cnet_usedfor_e9d72a7a87 (UsedFor laser eye_surgery) (STV 1.0 0.9091)) +(: cnet_usedfor_6be1d981ed (UsedFor laser reading_compact_disc) (STV 1.0 0.9339)) +(: cnet_usedfor_0a6adf2f53 (UsedFor laser cut) (STV 1.0 0.9091)) +(: cnet_usedfor_7ddb48a0f3 (UsedFor laser heat) (STV 1.0 0.9091)) +(: cnet_usedfor_b7d789c246 (UsedFor laser light) (STV 1.0 0.9091)) +(: cnet_usedfor_b4798ef7a1 (UsedFor laser operate_on) (STV 1.0 0.9091)) +(: cnet_usedfor_00dea74778 (UsedFor laughing_at_joke being_polite) (STV 1.0 0.9091)) +(: cnet_usedfor_5d2799c245 (UsedFor laughing_at_joke having_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_86e85fa23e (UsedFor launch_platform send_rocket_off_into_space) (STV 1.0 0.9091)) +(: cnet_usedfor_47dedbc95e (UsedFor launching_pad rocket) (STV 1.0 0.9091)) +(: cnet_usedfor_d691b474bf (UsedFor launching_platform launching) (STV 1.0 0.9091)) +(: cnet_usedfor_286b8594de (UsedFor launching_platform launching_space_shuttle) (STV 1.0 0.9091)) +(: cnet_usedfor_a84af74140 (UsedFor laundry_room cleaning_clothe) (STV 1.0 0.9091)) +(: cnet_usedfor_6c2a91e5e5 (UsedFor laundry_room washing_clothe) (STV 1.0 0.9091)) +(: cnet_usedfor_2d47aa1bac (UsedFor lawn_mower cutting_grass) (STV 1.0 0.9091)) +(: cnet_usedfor_646270cb3d (UsedFor leader follower) (STV 1.0 0.9339)) +(: cnet_usedfor_ec9bd9524d (UsedFor leader following) (STV 1.0 0.9091)) +(: cnet_usedfor_eb9b88f3bf (UsedFor leader leading) (STV 1.0 0.9091)) +(: cnet_usedfor_2279b0f875 (UsedFor leaf photosynthesis) (STV 1.0 0.9339)) +(: cnet_usedfor_251da8aec4 (UsedFor learning acquiring_knowledge) (STV 1.0 0.9339)) +(: cnet_usedfor_6a9b2f3b5e (UsedFor learning_about_science acquiring_knowledge) (STV 1.0 0.9091)) +(: cnet_usedfor_c915f0e186 (UsedFor learning_about_science nerd) (STV 1.0 0.9091)) +(: cnet_usedfor_1f2cbf47df (UsedFor learning_about_science understanding_universe) (STV 1.0 0.9091)) +(: cnet_usedfor_0290d105fd (UsedFor learning_about_subject doing_research) (STV 1.0 0.9091)) +(: cnet_usedfor_6b930f9593 (UsedFor learning_about_world student) (STV 1.0 0.9091)) +(: cnet_usedfor_8b7ff9015e (UsedFor leash lead) (STV 1.0 0.9091)) +(: cnet_usedfor_5481eb9336 (UsedFor leaving_line impatient_people) (STV 1.0 0.9091)) +(: cnet_usedfor_d5008e6b56 (UsedFor lecture_theatre teaching) (STV 1.0 0.9091)) +(: cnet_usedfor_1f81c359d7 (UsedFor leg stand) (STV 1.0 0.9091)) +(: cnet_usedfor_2d4e2e67e7 (UsedFor leg hold) (STV 1.0 0.9091)) +(: cnet_usedfor_5adb5e75e4 (UsedFor legislature making_law) (STV 1.0 0.9091)) +(: cnet_usedfor_0d18ff6669 (UsedFor leg run) (STV 1.0 0.9454)) +(: cnet_usedfor_6e464f8db3 (UsedFor len magnify) (STV 1.0 0.9339)) +(: cnet_usedfor_b885ee953a (UsedFor len magnify_object) (STV 1.0 0.9091)) +(: cnet_usedfor_81f6fb84c2 (UsedFor letter communication) (STV 1.0 0.9572)) +(: cnet_usedfor_fd94dfbd86 (UsedFor letter spelling_word) (STV 1.0 0.9091)) +(: cnet_usedfor_a4e3545c86 (UsedFor letter_opener opening_envelope) (STV 1.0 0.9454)) +(: cnet_usedfor_c8e16edd56 (UsedFor letter_scale weigh_letter) (STV 1.0 0.9091)) +(: cnet_usedfor_29bcc2c331 (UsedFor letter_scale weigh_mail) (STV 1.0 0.9339)) +(: cnet_usedfor_54ee82ac24 (UsedFor letter_scale weighing_letter) (STV 1.0 0.9091)) +(: cnet_usedfor_ade6eef2c5 (UsedFor letter_scale weighing_mail) (STV 1.0 0.9091)) +(: cnet_usedfor_58882a6a82 (UsedFor library borrowing_book) (STV 1.0 0.9524)) +(: cnet_usedfor_0afc6da94b (UsedFor library do_research) (STV 1.0 0.9707)) +(: cnet_usedfor_55ffedde9a (UsedFor library finding_book_to_read) (STV 1.0 0.9091)) +(: cnet_usedfor_9d50da5869 (UsedFor library reading) (STV 1.0 0.9339)) +(: cnet_usedfor_78db45fd57 (UsedFor library research) (STV 1.0 0.9091)) +(: cnet_usedfor_9070cac896 (UsedFor library storing_book) (STV 1.0 0.9339)) +(: cnet_usedfor_176b595ead (UsedFor life living) (STV 1.0 0.9454)) +(: cnet_usedfor_2fa4dd2f09 (UsedFor light reading) (STV 1.0 0.9091)) +(: cnet_usedfor_85066e3608 (UsedFor light light) (STV 1.0 0.9091)) +(: cnet_usedfor_2d7cffa37d (UsedFor light_bulb illumination) (STV 1.0 0.9091)) +(: cnet_usedfor_2252308d81 (UsedFor light_bulb flash) (STV 1.0 0.9091)) +(: cnet_usedfor_ff97385f82 (UsedFor light_bulb light) (STV 1.0 0.9091)) +(: cnet_usedfor_f7a35806c9 (UsedFor light_source seeing_thing) (STV 1.0 0.9339)) +(: cnet_usedfor_b98721fbe3 (UsedFor light_switch turn_off_light) (STV 1.0 0.9091)) +(: cnet_usedfor_57e897260d (UsedFor light_switch turn_on_light) (STV 1.0 0.9091)) +(: cnet_usedfor_a0864a1395 (UsedFor lighter lighting_cigarette) (STV 1.0 0.9091)) +(: cnet_usedfor_9262eb62bf (UsedFor lighter start_fire) (STV 1.0 0.9091)) +(: cnet_usedfor_801fd4034a (UsedFor lighter burning) (STV 1.0 0.9091)) +(: cnet_usedfor_a151ba5800 (UsedFor lighter ignite) (STV 1.0 0.9091)) +(: cnet_usedfor_46097b4cac (UsedFor lighting_fire cooking_food) (STV 1.0 0.9454)) +(: cnet_usedfor_bd98915736 (UsedFor lighting_fire heating_thing_up) (STV 1.0 0.9091)) +(: cnet_usedfor_66d3c9d296 (UsedFor lighting_fire lighting_darkness) (STV 1.0 0.9091)) +(: cnet_usedfor_3298a01835 (UsedFor lighting_fire signaling_for_help) (STV 1.0 0.9339)) +(: cnet_usedfor_95bdf924da (UsedFor lighting_match creating_flame) (STV 1.0 0.9091)) +(: cnet_usedfor_cdabadee29 (UsedFor lighting_match creating_light) (STV 1.0 0.9339)) +(: cnet_usedfor_fc46d7da17 (UsedFor lighting_match lighting_candle) (STV 1.0 0.9091)) +(: cnet_usedfor_f8d604a649 (UsedFor lighting_match making_fire) (STV 1.0 0.9339)) +(: cnet_usedfor_8d5300029b (UsedFor lighting_match starting_fire) (STV 1.0 0.9524)) +(: cnet_usedfor_d6443addb6 (UsedFor light illuminate) (STV 1.0 0.9524)) +(: cnet_usedfor_0f0c99d6c3 (UsedFor line connect_two_dot) (STV 1.0 0.9091)) +(: cnet_usedfor_710599dc3e (UsedFor line geometry) (STV 1.0 0.9091)) +(: cnet_usedfor_358a98c204 (UsedFor line make_drawing) (STV 1.0 0.9091)) +(: cnet_usedfor_7fbf9542e9 (UsedFor linen_chest store_sheet) (STV 1.0 0.9524)) +(: cnet_usedfor_b897d74fd8 (UsedFor linen_closet keeping_sheet) (STV 1.0 0.9524)) +(: cnet_usedfor_160a69eb47 (UsedFor linen_closet keeping_towel) (STV 1.0 0.9339)) +(: cnet_usedfor_bb17360362 (UsedFor linen_closet storage) (STV 1.0 0.9339)) +(: cnet_usedfor_fc341cbda6 (UsedFor linen_closet store_sheet_and_towel) (STV 1.0 0.9091)) +(: cnet_usedfor_83dc32b36b (UsedFor linen_closet storing_bath_towel) (STV 1.0 0.9339)) +(: cnet_usedfor_6178e3071e (UsedFor linen_closet storing_hand_towel) (STV 1.0 0.9339)) +(: cnet_usedfor_590fb14dc8 (UsedFor linen_closet storing_linen) (STV 1.0 0.9339)) +(: cnet_usedfor_bd02ea3c56 (UsedFor linen_closet storing_towel) (STV 1.0 0.9454)) +(: cnet_usedfor_7bf2cf000f (UsedFor link connect) (STV 1.0 0.9091)) +(: cnet_usedfor_bdecd4a17c (UsedFor link connection) (STV 1.0 0.9091)) +(: cnet_usedfor_9c0c9042c2 (UsedFor link join) (STV 1.0 0.9091)) +(: cnet_usedfor_d1930728b5 (UsedFor linoleum cover_floor) (STV 1.0 0.9608)) +(: cnet_usedfor_83b318d02a (UsedFor linoleum flooring) (STV 1.0 0.9339)) +(: cnet_usedfor_c6f1fe7eed (UsedFor lip expressing_feeling) (STV 1.0 0.9091)) +(: cnet_usedfor_5e6a3c0a87 (UsedFor lip speak) (STV 1.0 0.9091)) +(: cnet_usedfor_481ba7c2ce (UsedFor lip suck) (STV 1.0 0.9091)) +(: cnet_usedfor_cfcfc7efd3 (UsedFor lip whistling) (STV 1.0 0.9091)) +(: cnet_usedfor_893ddd7673 (UsedFor lip communicate) (STV 1.0 0.9339)) +(: cnet_usedfor_710ed2ebaa (UsedFor lip licking) (STV 1.0 0.9339)) +(: cnet_usedfor_f61ad66dea (UsedFor lip lip_for_kissing) (STV 1.0 0.9091)) +(: cnet_usedfor_6cc26c1f63 (UsedFor liquid_oxygen_and_liquid_hydrogen power_rocket) (STV 1.0 0.9091)) +(: cnet_usedfor_a2b1fc804a (UsedFor liquor_glass holding_liquid) (STV 1.0 0.9091)) +(: cnet_usedfor_7ce85009ab (UsedFor lisp ai) (STV 1.0 0.9091)) +(: cnet_usedfor_6fa0ee21e0 (UsedFor listening enjoying_music) (STV 1.0 0.9091)) +(: cnet_usedfor_8459bb1e3d (UsedFor listening hearing_thing) (STV 1.0 0.9339)) +(: cnet_usedfor_a44f05e469 (UsedFor listening learning) (STV 1.0 0.9339)) +(: cnet_usedfor_1ea79fca14 (UsedFor listening_music relaxing) (STV 1.0 0.9608)) +(: cnet_usedfor_a99a8906b7 (UsedFor listening_to_music dancing) (STV 1.0 0.9091)) +(: cnet_usedfor_dc7b14af6c (UsedFor listening_to_music entertainment) (STV 1.0 0.9339)) +(: cnet_usedfor_f83fe9ad38 (UsedFor listening_to_music partying) (STV 1.0 0.9091)) +(: cnet_usedfor_728318c473 (UsedFor listening_to_music relaxing) (STV 1.0 0.9339)) +(: cnet_usedfor_706d0a707b (UsedFor listening_to_music setting_mood) (STV 1.0 0.9339)) +(: cnet_usedfor_ba664f8fc8 (UsedFor listening_to_radio entertainment) (STV 1.0 0.9091)) +(: cnet_usedfor_768358285c (UsedFor listening_to_radio information) (STV 1.0 0.9091)) +(: cnet_usedfor_79ca7f5759 (UsedFor listening_to_radio passing_time) (STV 1.0 0.9339)) +(: cnet_usedfor_68b7f4a058 (UsedFor listening_to_radio relaxation) (STV 1.0 0.9091)) +(: cnet_usedfor_4e1b2262e5 (UsedFor literature illustrate) (STV 1.0 0.9091)) +(: cnet_usedfor_beae5b4958 (UsedFor literature learning) (STV 1.0 0.9339)) +(: cnet_usedfor_ba2f4f2ad0 (UsedFor literature professor) (STV 1.0 0.9091)) +(: cnet_usedfor_91810b2d9a (UsedFor literature read) (STV 1.0 0.9608)) +(: cnet_usedfor_278f1c7a99 (UsedFor literature reading) (STV 1.0 0.9339)) +(: cnet_usedfor_de99e59141 (UsedFor literature student) (STV 1.0 0.9091)) +(: cnet_usedfor_cf18d8dcd1 (UsedFor living enjoying_life) (STV 1.0 0.9091)) +(: cnet_usedfor_611e4f472e (UsedFor living enjoyment) (STV 1.0 0.9091)) +(: cnet_usedfor_18e7ced1f8 (UsedFor living having_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_f189583415 (UsedFor living_room watching_tv) (STV 1.0 0.9091)) +(: cnet_usedfor_97064314f9 (UsedFor lobby have_drink) (STV 1.0 0.9091)) +(: cnet_usedfor_b4a39292df (UsedFor lock privacy) (STV 1.0 0.9091)) +(: cnet_usedfor_dfb5633e01 (UsedFor lock protecting) (STV 1.0 0.9091)) +(: cnet_usedfor_d99ba7c737 (UsedFor lock protecting_valuable) (STV 1.0 0.9091)) +(: cnet_usedfor_c6aa75114d (UsedFor lock securing_door) (STV 1.0 0.9339)) +(: cnet_usedfor_5ec709f449 (UsedFor lock securing_valuable) (STV 1.0 0.9091)) +(: cnet_usedfor_d4d755ad86 (UsedFor lock close) (STV 1.0 0.9091)) +(: cnet_usedfor_b92222cff3 (UsedFor lock fasten) (STV 1.0 0.9091)) +(: cnet_usedfor_e0454a971d (UsedFor lock lock) (STV 1.0 0.9091)) +(: cnet_usedfor_18040a74bd (UsedFor lock protection) (STV 1.0 0.9091)) +(: cnet_usedfor_5534b300c4 (UsedFor locker_room change_clothe) (STV 1.0 0.9524)) +(: cnet_usedfor_49e0db6d25 (UsedFor locker_room changing_clothe) (STV 1.0 0.9091)) +(: cnet_usedfor_6969711483 (UsedFor locker_room shower) (STV 1.0 0.9091)) +(: cnet_usedfor_7db6634276 (UsedFor locomotive motion) (STV 1.0 0.9091)) +(: cnet_usedfor_71ed0f24dd (UsedFor locomotive power) (STV 1.0 0.9091)) +(: cnet_usedfor_528210963e (UsedFor locomotive work) (STV 1.0 0.9091)) +(: cnet_usedfor_d95d598f64 (UsedFor loft sleeping) (STV 1.0 0.9454)) +(: cnet_usedfor_926661c742 (UsedFor logic reasoning) (STV 1.0 0.9091)) +(: cnet_usedfor_c846ad2908 (UsedFor looking_better getting_job) (STV 1.0 0.9091)) +(: cnet_usedfor_d1457fd5d4 (UsedFor looking_glass reflect) (STV 1.0 0.9091)) +(: cnet_usedfor_95b4eb7528 (UsedFor looking_glass reflection) (STV 1.0 0.9091)) +(: cnet_usedfor_7cb5935fda (UsedFor looking_glass spectator) (STV 1.0 0.9091)) +(: cnet_usedfor_5c15cc4809 (UsedFor looking_through_telescope astronomer) (STV 1.0 0.9091)) +(: cnet_usedfor_37714f7af8 (UsedFor looking_through_telescope looking_at_star) (STV 1.0 0.9339)) +(: cnet_usedfor_490a537c0a (UsedFor loom weave_cloth) (STV 1.0 0.9454)) +(: cnet_usedfor_69f4c1d419 (UsedFor losing_consciousness passing_out) (STV 1.0 0.9091)) +(: cnet_usedfor_38c5c3d5fd (UsedFor losing_consciousness surgery) (STV 1.0 0.9091)) +(: cnet_usedfor_0a2c8e56d2 (UsedFor love_seat sitting_on) (STV 1.0 0.9608)) +(: cnet_usedfor_f2894e34ec (UsedFor love_seat snuggling) (STV 1.0 0.9339)) +(: cnet_usedfor_6c744dd1d6 (UsedFor lubrication reducing_friction) (STV 1.0 0.9091)) +(: cnet_usedfor_4c08ffa75e (UsedFor luggage pack_clothing) (STV 1.0 0.9091)) +(: cnet_usedfor_b3d13f338c (UsedFor luggage_carrier carry_luggage) (STV 1.0 0.9091)) +(: cnet_usedfor_87b17e0548 (UsedFor luggage_carrier carrying_luggage) (STV 1.0 0.9091)) +(: cnet_usedfor_c30c2aa67d (UsedFor luggage_trolley carrying_luggage) (STV 1.0 0.9091)) +(: cnet_usedfor_214c4ce16a (UsedFor luggage_trolley move_suitcas) (STV 1.0 0.9091)) +(: cnet_usedfor_66ac926064 (UsedFor lying cheating) (STV 1.0 0.9091)) +(: cnet_usedfor_8754a0e160 (UsedFor lying coward) (STV 1.0 0.9091)) +(: cnet_usedfor_c243e736ee (UsedFor lying deceit) (STV 1.0 0.9091)) +(: cnet_usedfor_1e09cfd469 (UsedFor lying deceiving) (STV 1.0 0.9339)) +(: cnet_usedfor_340f7cff41 (UsedFor lying deception) (STV 1.0 0.9091)) +(: cnet_usedfor_1f7359ca4d (UsedFor lying hiding_truth) (STV 1.0 0.9091)) +(: cnet_usedfor_38ee3c6467 (UsedFor lying manipulating) (STV 1.0 0.9091)) +(: cnet_usedfor_3bf924d608 (UsedFor mac make_graphic) (STV 1.0 0.9091)) +(: cnet_usedfor_936b55291b (UsedFor machine answer_phone) (STV 1.0 0.9091)) +(: cnet_usedfor_6122eb8473 (UsedFor machine apply_coating) (STV 1.0 0.9091)) +(: cnet_usedfor_8bc2935772 (UsedFor machine bake_bread) (STV 1.0 0.9091)) +(: cnet_usedfor_23b8362da6 (UsedFor machine bake_good) (STV 1.0 0.9091)) +(: cnet_usedfor_46b7026bfd (UsedFor machine beat_egg) (STV 1.0 0.9091)) +(: cnet_usedfor_1c1a89bfb3 (UsedFor machine bend_metal) (STV 1.0 0.9091)) +(: cnet_usedfor_b4c52d3886 (UsedFor machine bind_book) (STV 1.0 0.9091)) +(: cnet_usedfor_20d8eaeb67 (UsedFor machine brush_teeth) (STV 1.0 0.9091)) +(: cnet_usedfor_6bb54a68e9 (UsedFor machine build_health_in_gym) (STV 1.0 0.9091)) +(: cnet_usedfor_a981fbe28e (UsedFor machine burn_into_leather) (STV 1.0 0.9091)) +(: cnet_usedfor_34ce0c0129 (UsedFor machine burn_trash) (STV 1.0 0.9091)) +(: cnet_usedfor_ff433848b9 (UsedFor machine burn_wood) (STV 1.0 0.9091)) +(: cnet_usedfor_deb89348bc (UsedFor machine calculate) (STV 1.0 0.9091)) +(: cnet_usedfor_a0e0bb8ab8 (UsedFor machine circulate_water) (STV 1.0 0.9091)) +(: cnet_usedfor_605aeb5f1c (UsedFor machine clean_sonically) (STV 1.0 0.9091)) +(: cnet_usedfor_5c1bc3fd88 (UsedFor machine clip_sheep) (STV 1.0 0.9091)) +(: cnet_usedfor_1e03443d9b (UsedFor machine combine) (STV 1.0 0.9091)) +(: cnet_usedfor_48a438b049 (UsedFor machine cook) (STV 1.0 0.9091)) +(: cnet_usedfor_5c0d425fd0 (UsedFor machine count_coin) (STV 1.0 0.9091)) +(: cnet_usedfor_5a0f25ea28 (UsedFor machine count_money) (STV 1.0 0.9091)) +(: cnet_usedfor_0c2479237d (UsedFor machine create_electricity) (STV 1.0 0.9091)) +(: cnet_usedfor_516000c48c (UsedFor machine create_part) (STV 1.0 0.9091)) +(: cnet_usedfor_2e2a047117 (UsedFor machine cremate) (STV 1.0 0.9091)) +(: cnet_usedfor_581fa681d8 (UsedFor machine crosscut_wood) (STV 1.0 0.9091)) +(: cnet_usedfor_3ca83216b0 (UsedFor machine crush_ice) (STV 1.0 0.9339)) +(: cnet_usedfor_e229641a59 (UsedFor machine cut_paper) (STV 1.0 0.9091)) +(: cnet_usedfor_53eb27fde7 (UsedFor machine deliver_insecticide) (STV 1.0 0.9091)) +(: cnet_usedfor_fef60dd9ed (UsedFor machine deliver_luggage) (STV 1.0 0.9091)) +(: cnet_usedfor_036c672d2e (UsedFor machine develop_strength) (STV 1.0 0.9091)) +(: cnet_usedfor_1d4ce1b3ec (UsedFor machine dig) (STV 1.0 0.9091)) +(: cnet_usedfor_0d20df04ef (UsedFor machine dispense_candy) (STV 1.0 0.9091)) +(: cnet_usedfor_f1fa686f67 (UsedFor machine dispense_cigarette) (STV 1.0 0.9091)) +(: cnet_usedfor_9de29ba1bc (UsedFor machine dispense_gum) (STV 1.0 0.9091)) +(: cnet_usedfor_6ca0dfd306 (UsedFor machine dispense_popcorn) (STV 1.0 0.9091)) +(: cnet_usedfor_714cec3385 (UsedFor machine dispense_snack) (STV 1.0 0.9091)) +(: cnet_usedfor_7360d68e7f (UsedFor machine dispense_water) (STV 1.0 0.9091)) +(: cnet_usedfor_f0ab80ab76 (UsedFor machine drain_swamp) (STV 1.0 0.9091)) +(: cnet_usedfor_0fca5de5a6 (UsedFor machine drill_hole) (STV 1.0 0.9091)) +(: cnet_usedfor_acd7cf1cb9 (UsedFor machine drill_teeth) (STV 1.0 0.9091)) +(: cnet_usedfor_c3f9243d4b (UsedFor machine drive_nail) (STV 1.0 0.9091)) +(: cnet_usedfor_c510ae6819 (UsedFor machine dry_clothe) (STV 1.0 0.9091)) +(: cnet_usedfor_2e4d576a72 (UsedFor machine dump) (STV 1.0 0.9091)) +(: cnet_usedfor_107c39071c (UsedFor machine enlarge_print) (STV 1.0 0.9091)) +(: cnet_usedfor_44c36d5c24 (UsedFor machine entertain) (STV 1.0 0.9091)) +(: cnet_usedfor_939494f41c (UsedFor machine exercise_muscle) (STV 1.0 0.9339)) +(: cnet_usedfor_c57066c43e (UsedFor machine fan_air) (STV 1.0 0.9091)) +(: cnet_usedfor_cc8183f9b7 (UsedFor machine fill_order) (STV 1.0 0.9091)) +(: cnet_usedfor_748be4f37a (UsedFor machine filter) (STV 1.0 0.9091)) +(: cnet_usedfor_23ec46d91e (UsedFor machine fly) (STV 1.0 0.9091)) +(: cnet_usedfor_f67669e36a (UsedFor machine fry) (STV 1.0 0.9091)) +(: cnet_usedfor_f5fa0f8974 (UsedFor machine fry_donut) (STV 1.0 0.9091)) +(: cnet_usedfor_1a78783c43 (UsedFor machine generate_electricity) (STV 1.0 0.9091)) +(: cnet_usedfor_06ed4821dd (UsedFor machine glaze) (STV 1.0 0.9091)) +(: cnet_usedfor_c0a029a21f (UsedFor machine grasp_part) (STV 1.0 0.9091)) +(: cnet_usedfor_197342a403 (UsedFor machine grind_garbage) (STV 1.0 0.9091)) +(: cnet_usedfor_ee45bafca4 (UsedFor machine grind_grain) (STV 1.0 0.9091)) +(: cnet_usedfor_494e061ddf (UsedFor machine harvest) (STV 1.0 0.9091)) +(: cnet_usedfor_fa0b60c687 (UsedFor machine heat_tar) (STV 1.0 0.9091)) +(: cnet_usedfor_911a553d53 (UsedFor machine incinerate) (STV 1.0 0.9091)) +(: cnet_usedfor_1a8c27e81f (UsedFor machine iron_clothe) (STV 1.0 0.9091)) +(: cnet_usedfor_68a248b0b9 (UsedFor machine kill) (STV 1.0 0.9091)) +(: cnet_usedfor_c4a93d64b7 (UsedFor machine lay_railroad_track) (STV 1.0 0.9091)) +(: cnet_usedfor_34f4c3d440 (UsedFor machine lift) (STV 1.0 0.9091)) +(: cnet_usedfor_4a135bd375 (UsedFor machine lift_car) (STV 1.0 0.9091)) +(: cnet_usedfor_4784f0d0e5 (UsedFor machine lift_skiier) (STV 1.0 0.9091)) +(: cnet_usedfor_4a5cd67c11 (UsedFor machine load_ship) (STV 1.0 0.9091)) +(: cnet_usedfor_311f004b0e (UsedFor machine lubricate) (STV 1.0 0.9091)) +(: cnet_usedfor_9bd001501c (UsedFor machine make_artificial_snow) (STV 1.0 0.9091)) +(: cnet_usedfor_887db55c58 (UsedFor machine make_bread) (STV 1.0 0.9091)) +(: cnet_usedfor_965da6b671 (UsedFor machine make_copy) (STV 1.0 0.9091)) +(: cnet_usedfor_d2519d1036 (UsedFor machine make_cotton_candy) (STV 1.0 0.9091)) +(: cnet_usedfor_e151bf0c0d (UsedFor machine make_juice_drink) (STV 1.0 0.9091)) +(: cnet_usedfor_2b17816870 (UsedFor machine make_popcorn) (STV 1.0 0.9091)) +(: cnet_usedfor_e8cc8496ff (UsedFor machine manufacture) (STV 1.0 0.9339)) +(: cnet_usedfor_71ce63314a (UsedFor machine measure) (STV 1.0 0.9091)) +(: cnet_usedfor_5be86c6873 (UsedFor machine mechanized_process) (STV 1.0 0.9091)) +(: cnet_usedfor_05c7a2a259 (UsedFor machine mix_concrete) (STV 1.0 0.9091)) +(: cnet_usedfor_703eabd395 (UsedFor machine mold) (STV 1.0 0.9091)) +(: cnet_usedfor_6d4827cf02 (UsedFor machine move_vehicle) (STV 1.0 0.9091)) +(: cnet_usedfor_71b9ecfa43 (UsedFor machine pack_carton) (STV 1.0 0.9091)) +(: cnet_usedfor_8be6f4c851 (UsedFor machine paint_car) (STV 1.0 0.9091)) +(: cnet_usedfor_f0737ac423 (UsedFor machine paint_house) (STV 1.0 0.9091)) +(: cnet_usedfor_862b212224 (UsedFor machine phone) (STV 1.0 0.9091)) +(: cnet_usedfor_667b4f3e64 (UsedFor machine play_checker) (STV 1.0 0.9091)) +(: cnet_usedfor_69a803b6cc (UsedFor machine play_chess) (STV 1.0 0.9091)) +(: cnet_usedfor_7a0284f65d (UsedFor machine play_tape) (STV 1.0 0.9091)) +(: cnet_usedfor_421128262d (UsedFor machine plow) (STV 1.0 0.9091)) +(: cnet_usedfor_4265f68eb5 (UsedFor machine pop_popcorn) (STV 1.0 0.9091)) +(: cnet_usedfor_ce80889c37 (UsedFor machine pour_grain) (STV 1.0 0.9091)) +(: cnet_usedfor_1395eceab9 (UsedFor machine power_boat) (STV 1.0 0.9091)) +(: cnet_usedfor_d6230beb79 (UsedFor machine power_car) (STV 1.0 0.9091)) +(: cnet_usedfor_c371538ec5 (UsedFor machine power_plane) (STV 1.0 0.9091)) +(: cnet_usedfor_035217bdcd (UsedFor machine power_train) (STV 1.0 0.9091)) +(: cnet_usedfor_03c628692e (UsedFor machine press_clothe) (STV 1.0 0.9091)) +(: cnet_usedfor_2a46c7a62b (UsedFor machine print) (STV 1.0 0.9091)) +(: cnet_usedfor_7fa9e842a9 (UsedFor machine pump_gas) (STV 1.0 0.9091)) +(: cnet_usedfor_475680de98 (UsedFor machine pump_oil) (STV 1.0 0.9091)) +(: cnet_usedfor_7547caf753 (UsedFor machine pump_water) (STV 1.0 0.9091)) +(: cnet_usedfor_9ebb63948c (UsedFor machine record_message) (STV 1.0 0.9091)) +(: cnet_usedfor_c7553ccf0f (UsedFor machine refrigerate) (STV 1.0 0.9091)) +(: cnet_usedfor_43cb3e4956 (UsedFor machine repair_car_body) (STV 1.0 0.9091)) +(: cnet_usedfor_4b73220b18 (UsedFor machine rotate_tire) (STV 1.0 0.9091)) +(: cnet_usedfor_e62b1a0297 (UsedFor machine scan_body) (STV 1.0 0.9091)) +(: cnet_usedfor_18b2d65e38 (UsedFor machine scan_product_code) (STV 1.0 0.9091)) +(: cnet_usedfor_7b41f22dc9 (UsedFor machine scrub_floor) (STV 1.0 0.9091)) +(: cnet_usedfor_2853ab7437 (UsedFor machine seal) (STV 1.0 0.9091)) +(: cnet_usedfor_bba63a69ff (UsedFor machine see_star) (STV 1.0 0.9091)) +(: cnet_usedfor_b3db31462d (UsedFor machine simulate_airplane) (STV 1.0 0.9091)) +(: cnet_usedfor_eab63602de (UsedFor machine simulate_automobile) (STV 1.0 0.9091)) +(: cnet_usedfor_ca0ab12f50 (UsedFor machine simulate_human_thinking) (STV 1.0 0.9091)) +(: cnet_usedfor_9231624f2a (UsedFor machine smooth_ice) (STV 1.0 0.9091)) +(: cnet_usedfor_aebde88ec8 (UsedFor machine sprinkle_lawn) (STV 1.0 0.9091)) +(: cnet_usedfor_9cfa0a99bb (UsedFor machine survey) (STV 1.0 0.9091)) +(: cnet_usedfor_21941a0aef (UsedFor machine take_picture) (STV 1.0 0.9091)) +(: cnet_usedfor_5e1f4499a0 (UsedFor machine take_tire_off_rim) (STV 1.0 0.9091)) +(: cnet_usedfor_12758d21bd (UsedFor machine televise) (STV 1.0 0.9091)) +(: cnet_usedfor_3656b36784 (UsedFor machine test_astronaut) (STV 1.0 0.9091)) +(: cnet_usedfor_4c9a835316 (UsedFor machine test_blood) (STV 1.0 0.9091)) +(: cnet_usedfor_8ccb9dd6e5 (UsedFor machine test_body_temperature) (STV 1.0 0.9091)) +(: cnet_usedfor_1cdc4da36d (UsedFor machine test_pilot) (STV 1.0 0.9091)) +(: cnet_usedfor_e50234d99e (UsedFor machine transport_good) (STV 1.0 0.9091)) +(: cnet_usedfor_e3d3e43b11 (UsedFor machine vacuum) (STV 1.0 0.9091)) +(: cnet_usedfor_fc3b631fea (UsedFor machine vend_newspaper) (STV 1.0 0.9091)) +(: cnet_usedfor_2fd0a290ff (UsedFor machine vend_product) (STV 1.0 0.9091)) +(: cnet_usedfor_8fabf529ad (UsedFor machine verify_check) (STV 1.0 0.9091)) +(: cnet_usedfor_240c36d90c (UsedFor machine wash_car) (STV 1.0 0.9091)) +(: cnet_usedfor_39cd6187ed (UsedFor machine wash_carpet) (STV 1.0 0.9091)) +(: cnet_usedfor_4d4bb51072 (UsedFor machine wash_clothe) (STV 1.0 0.9091)) +(: cnet_usedfor_7cd2f96ab5 (UsedFor machine wash_dirty_clothe) (STV 1.0 0.9091)) +(: cnet_usedfor_d3a2548401 (UsedFor machine water_field) (STV 1.0 0.9091)) +(: cnet_usedfor_92c663cacb (UsedFor machine water_flower) (STV 1.0 0.9091)) +(: cnet_usedfor_8de992008f (UsedFor machine wax_floor) (STV 1.0 0.9091)) +(: cnet_usedfor_f2fff2375f (UsedFor machine weave_cloth) (STV 1.0 0.9091)) +(: cnet_usedfor_5fe3ae2640 (UsedFor machine work) (STV 1.0 0.9454)) +(: cnet_usedfor_688d1b1252 (UsedFor machine write) (STV 1.0 0.9091)) +(: cnet_usedfor_4a551ece68 (UsedFor machine function) (STV 1.0 0.9091)) +(: cnet_usedfor_81b0c18a59 (UsedFor machine help) (STV 1.0 0.9091)) +(: cnet_usedfor_13e92a9dba (UsedFor machine perform) (STV 1.0 0.9091)) +(: cnet_usedfor_06ec245cca (UsedFor machine_gun kill) (STV 1.0 0.9091)) +(: cnet_usedfor_d5cdca5ec4 (UsedFor machine_gun kill_people) (STV 1.0 0.9091)) +(: cnet_usedfor_477efa4f7c (UsedFor machine_gun killing_people) (STV 1.0 0.9524)) +(: cnet_usedfor_54805f7a33 (UsedFor machine_gun rapidly_firing_bullet) (STV 1.0 0.9091)) +(: cnet_usedfor_5e9254e562 (UsedFor machine_gun shooting) (STV 1.0 0.9454)) +(: cnet_usedfor_5dc6027418 (UsedFor machinery function) (STV 1.0 0.9091)) +(: cnet_usedfor_9ee3de835b (UsedFor machinery help) (STV 1.0 0.9091)) +(: cnet_usedfor_75c0e50603 (UsedFor machinery perform) (STV 1.0 0.9091)) +(: cnet_usedfor_2cce5b5b2a (UsedFor machinery work) (STV 1.0 0.9091)) +(: cnet_usedfor_9de7d47a06 (UsedFor magnifying_glass create_fire) (STV 1.0 0.9339)) +(: cnet_usedfor_f7c8242c0d (UsedFor mailbox get_mail) (STV 1.0 0.9091)) +(: cnet_usedfor_21a17710b3 (UsedFor mailbox receiving_letter) (STV 1.0 0.9454)) +(: cnet_usedfor_1cb96c1d67 (UsedFor mailbox receiving_mail) (STV 1.0 0.9339)) +(: cnet_usedfor_697297d1cf (UsedFor mailbox send_letter) (STV 1.0 0.9454)) +(: cnet_usedfor_30d0c5345b (UsedFor mailbox sending_package) (STV 1.0 0.9091)) +(: cnet_usedfor_56600ef6e0 (UsedFor mailbox storing_mail) (STV 1.0 0.9339)) +(: cnet_usedfor_a2b7866aa3 (UsedFor mailing_letter communicating_with) (STV 1.0 0.9339)) +(: cnet_usedfor_5c09fea2d1 (UsedFor mailing_letter getting_to_recipient) (STV 1.0 0.9091)) +(: cnet_usedfor_d1e604e9e0 (UsedFor mailing_letter paying_bill) (STV 1.0 0.9091)) +(: cnet_usedfor_b36b41c7a3 (UsedFor mailing_letter sending_information) (STV 1.0 0.9339)) +(: cnet_usedfor_aea3cd5f08 (UsedFor main_entrance enter_building) (STV 1.0 0.9091)) +(: cnet_usedfor_6e15755a9a (UsedFor main_entrance entering_building) (STV 1.0 0.9091)) +(: cnet_usedfor_81411512ab (UsedFor maintaining_muscle_strength health) (STV 1.0 0.9454)) +(: cnet_usedfor_da05b8cbde (UsedFor maintaining_muscle_strength keeping_fit) (STV 1.0 0.9339)) +(: cnet_usedfor_a8fa22716b (UsedFor maintaining_muscle_strength keeping_healthy) (STV 1.0 0.9091)) +(: cnet_usedfor_65a1a3b8a6 (UsedFor maintaining_muscle_strength maintaining_health) (STV 1.0 0.9091)) +(: cnet_usedfor_f035c758fe (UsedFor makeup concealing_cosmetic_flaw) (STV 1.0 0.9091)) +(: cnet_usedfor_3c85bb5a34 (UsedFor makeup beautify) (STV 1.0 0.9091)) +(: cnet_usedfor_27c206d061 (UsedFor makeup change) (STV 1.0 0.9091)) +(: cnet_usedfor_77098ad177 (UsedFor makeup cover) (STV 1.0 0.9091)) +(: cnet_usedfor_671e0a752f (UsedFor makeup enhance) (STV 1.0 0.9091)) +(: cnet_usedfor_f378a49fcf (UsedFor makeup wearer) (STV 1.0 0.9091)) +(: cnet_usedfor_5f73fd4518 (UsedFor making_better_world children) (STV 1.0 0.9091)) +(: cnet_usedfor_b6bec556d2 (UsedFor making_better_world making_people_happier) (STV 1.0 0.9091)) +(: cnet_usedfor_323b84f270 (UsedFor making_bread dinner) (STV 1.0 0.9091)) +(: cnet_usedfor_7e70636ca8 (UsedFor making_bread eating) (STV 1.0 0.9454)) +(: cnet_usedfor_8ba4e43adc (UsedFor making_bread making_sandwiche) (STV 1.0 0.9091)) +(: cnet_usedfor_8a2024cb1c (UsedFor making_friend having_to_converse_with) (STV 1.0 0.9091)) +(: cnet_usedfor_90ac126d9b (UsedFor making_friend mental_health) (STV 1.0 0.9339)) +(: cnet_usedfor_0da82179f6 (UsedFor making_friend not_being_alone) (STV 1.0 0.9572)) +(: cnet_usedfor_1a60e56473 (UsedFor making_grow plant) (STV 1.0 0.9339)) +(: cnet_usedfor_574613a02d (UsedFor making_patchwork_quilt creating) (STV 1.0 0.9091)) +(: cnet_usedfor_124c27781e (UsedFor making_patchwork_quilt elderly) (STV 1.0 0.9091)) +(: cnet_usedfor_ed9812b0b7 (UsedFor making_patchwork_quilt passing_time) (STV 1.0 0.9339)) +(: cnet_usedfor_6aee7865e1 (UsedFor making_phone_call communicating_with) (STV 1.0 0.9091)) +(: cnet_usedfor_c275a5a2a4 (UsedFor making_phone_call making_appointment) (STV 1.0 0.9091)) +(: cnet_usedfor_048fc5f8e3 (UsedFor making_sure_re_healthy living_longer) (STV 1.0 0.9091)) +(: cnet_usedfor_25455c5fdd (UsedFor mall hanging_out_at) (STV 1.0 0.9091)) +(: cnet_usedfor_96364cb3cb (UsedFor mall meeting_friend) (STV 1.0 0.9091)) +(: cnet_usedfor_52e14d6a53 (UsedFor mall selling_stuff) (STV 1.0 0.9091)) +(: cnet_usedfor_65e03ded80 (UsedFor mall shopping) (STV 1.0 0.9572)) +(: cnet_usedfor_3910abe483 (UsedFor mandolin making_music) (STV 1.0 0.9454)) +(: cnet_usedfor_3128bc6535 (UsedFor mandolin playing_music) (STV 1.0 0.9339)) +(: cnet_usedfor_799ec869e0 (UsedFor mantra meditate) (STV 1.0 0.9091)) +(: cnet_usedfor_b8b652d61e (UsedFor manure fertilising_crop) (STV 1.0 0.9091)) +(: cnet_usedfor_ed0d188313 (UsedFor many_part make_window) (STV 1.0 0.9091)) +(: cnet_usedfor_bbe4fffbda (UsedFor map find_address) (STV 1.0 0.9091)) +(: cnet_usedfor_4fab7ac0c3 (UsedFor map finding_address) (STV 1.0 0.9339)) +(: cnet_usedfor_35bfe10024 (UsedFor map finding_way) (STV 1.0 0.9091)) +(: cnet_usedfor_fb8068ea7f (UsedFor map locating_place) (STV 1.0 0.9091)) +(: cnet_usedfor_f644810c43 (UsedFor map orientating_yourself) (STV 1.0 0.9091)) +(: cnet_usedfor_db58622bc3 (UsedFor map find_place) (STV 1.0 0.9091)) +(: cnet_usedfor_2e3664bcba (UsedFor marble game) (STV 1.0 0.9339)) +(: cnet_usedfor_eacd8508db (UsedFor marble playing_marble) (STV 1.0 0.9454)) +(: cnet_usedfor_699ddd99a6 (UsedFor marble roll) (STV 1.0 0.9091)) +(: cnet_usedfor_56028badb7 (UsedFor marble shoot) (STV 1.0 0.9091)) +(: cnet_usedfor_227a08001e (UsedFor marijuana fun) (STV 1.0 0.9339)) +(: cnet_usedfor_08c1d2dd47 (UsedFor marijuana getting_high) (STV 1.0 0.9524)) +(: cnet_usedfor_d86e884643 (UsedFor marijuana pleasure) (STV 1.0 0.9524)) +(: cnet_usedfor_f629b338e9 (UsedFor marker coloring) (STV 1.0 0.9339)) +(: cnet_usedfor_39495fb652 (UsedFor marker write) (STV 1.0 0.9524)) +(: cnet_usedfor_14f729a401 (UsedFor mast hold_sail) (STV 1.0 0.9572)) +(: cnet_usedfor_6c0f4f9f36 (UsedFor mast holding_up_sail) (STV 1.0 0.9091)) +(: cnet_usedfor_35a0b08e2e (UsedFor mast sailing) (STV 1.0 0.9339)) +(: cnet_usedfor_896ad3473b (UsedFor mast ship) (STV 1.0 0.9339)) +(: cnet_usedfor_279104ea19 (UsedFor master_bedroom making_love) (STV 1.0 0.9091)) +(: cnet_usedfor_2e6f748fd5 (UsedFor master_bedroom privacy) (STV 1.0 0.9091)) +(: cnet_usedfor_196054e680 (UsedFor master_bedroom sleep_in) (STV 1.0 0.9091)) +(: cnet_usedfor_f3cb7e3268 (UsedFor master_bedroom sleeping) (STV 1.0 0.9636)) +(: cnet_usedfor_177346d8a9 (UsedFor master_bedroom sleeping_sex_and_relaxation) (STV 1.0 0.9091)) +(: cnet_usedfor_b45ac07b4b (UsedFor masturbation providing_yourself_with_sexual_pleasure) (STV 1.0 0.9091)) +(: cnet_usedfor_ab9461fac9 (UsedFor mat wipe_feet_on) (STV 1.0 0.9091)) +(: cnet_usedfor_95d74b3f8c (UsedFor mat wrestle_on) (STV 1.0 0.9091)) +(: cnet_usedfor_927c7af835 (UsedFor match lighting_fire) (STV 1.0 0.9524)) +(: cnet_usedfor_eeab1f279f (UsedFor match starting_fire) (STV 1.0 0.9339)) +(: cnet_usedfor_1998f2a944 (UsedFor match fire) (STV 1.0 0.9091)) +(: cnet_usedfor_ca5a616161 (UsedFor match ignite) (STV 1.0 0.9091)) +(: cnet_usedfor_7abe68addf (UsedFor matche light_candle) (STV 1.0 0.9091)) +(: cnet_usedfor_1830a456d5 (UsedFor matche light_fire) (STV 1.0 0.9091)) +(: cnet_usedfor_99d218e046 (UsedFor matche start_fire) (STV 1.0 0.9091)) +(: cnet_usedfor_e30d8d88de (UsedFor mathematic model_physical_world) (STV 1.0 0.9091)) +(: cnet_usedfor_af462957da (UsedFor mayor govern_town) (STV 1.0 0.9339)) +(: cnet_usedfor_cfbe502327 (UsedFor mayor leadership) (STV 1.0 0.9339)) +(: cnet_usedfor_7089b5c371 (UsedFor mayor leading_city) (STV 1.0 0.9339)) +(: cnet_usedfor_70f74e3b9b (UsedFor mayor running_town) (STV 1.0 0.9524)) +(: cnet_usedfor_22fd7133a1 (UsedFor mead getting_drunk) (STV 1.0 0.9091)) +(: cnet_usedfor_7d36729366 (UsedFor mean goal) (STV 1.0 0.9091)) +(: cnet_usedfor_a76d7de20a (UsedFor mean help) (STV 1.0 0.9091)) +(: cnet_usedfor_9014a208e4 (UsedFor measuring_cup measure_ingredient) (STV 1.0 0.9454)) +(: cnet_usedfor_6b9f4ace0e (UsedFor measuring_cup measuring_food) (STV 1.0 0.9091)) +(: cnet_usedfor_bbeb7cf7b0 (UsedFor measuring_stick datum) (STV 1.0 0.9091)) +(: cnet_usedfor_b751dd52a8 (UsedFor measuring_stick measure) (STV 1.0 0.9091)) +(: cnet_usedfor_00a4f9eae6 (UsedFor measuring_stick measurement) (STV 1.0 0.9091)) +(: cnet_usedfor_ab7cf9f889 (UsedFor meat eat) (STV 1.0 0.9572)) +(: cnet_usedfor_90e6fe188b (UsedFor meat eating) (STV 1.0 0.9454)) +(: cnet_usedfor_9af8b94d17 (UsedFor meat meal) (STV 1.0 0.9339)) +(: cnet_usedfor_1f8b5961bd (UsedFor meat people_to_eat) (STV 1.0 0.9091)) +(: cnet_usedfor_531ac302e7 (UsedFor mechanical_pencil writing) (STV 1.0 0.9339)) +(: cnet_usedfor_8dc96fa1a3 (UsedFor mechanism function) (STV 1.0 0.9091)) +(: cnet_usedfor_97eb3cbdc7 (UsedFor mechanism help) (STV 1.0 0.9091)) +(: cnet_usedfor_5b5d84a4d3 (UsedFor mechanism perform) (STV 1.0 0.9091)) +(: cnet_usedfor_f30cad4221 (UsedFor mechanism work) (STV 1.0 0.9091)) +(: cnet_usedfor_92a2fb29f3 (UsedFor medical_exam diagnosis) (STV 1.0 0.9339)) +(: cnet_usedfor_eaa6c9bf5c (UsedFor meditation relaxation) (STV 1.0 0.9091)) +(: cnet_usedfor_2f323df289 (UsedFor meeting_friend communication) (STV 1.0 0.9091)) +(: cnet_usedfor_fba777514c (UsedFor meeting_friend reminiscing) (STV 1.0 0.9091)) +(: cnet_usedfor_e9df62365c (UsedFor meeting_girl having_sex) (STV 1.0 0.9091)) +(: cnet_usedfor_5532aa4da4 (UsedFor meeting_girl love) (STV 1.0 0.9091)) +(: cnet_usedfor_cbe9af6e29 (UsedFor meeting_people making_new_friend) (STV 1.0 0.9091)) +(: cnet_usedfor_51a825b507 (UsedFor meeting_people socializing) (STV 1.0 0.9091)) +(: cnet_usedfor_c64fd1514e (UsedFor memo_pad taking_note) (STV 1.0 0.9572)) +(: cnet_usedfor_83e130d3d4 (UsedFor memo_pad write_down) (STV 1.0 0.9572)) +(: cnet_usedfor_280bc09eb8 (UsedFor memo_pad write_on) (STV 1.0 0.9091)) +(: cnet_usedfor_08207e1b32 (UsedFor memo_pad writing_note) (STV 1.0 0.9339)) +(: cnet_usedfor_d7a9227623 (UsedFor memorising remembering) (STV 1.0 0.9339)) +(: cnet_usedfor_30fbb71cbf (UsedFor memory function) (STV 1.0 0.9091)) +(: cnet_usedfor_5e26b5a440 (UsedFor menu ordering_food) (STV 1.0 0.9339)) +(: cnet_usedfor_f816e02934 (UsedFor merchant selling_thing) (STV 1.0 0.9339)) +(: cnet_usedfor_69a2a00202 (UsedFor metal_rod conduct_electricity) (STV 1.0 0.9091)) +(: cnet_usedfor_e0c08318cb (UsedFor metal_rod conducting_electricity) (STV 1.0 0.9091)) +(: cnet_usedfor_787da1c578 (UsedFor metronome keep_steady_beat) (STV 1.0 0.9091)) +(: cnet_usedfor_fbc4c4d5e4 (UsedFor mexican_restaurant drink_tequila) (STV 1.0 0.9091)) +(: cnet_usedfor_a994320c28 (UsedFor mexican_restaurant eat_out) (STV 1.0 0.9091)) +(: cnet_usedfor_d017f0b8d7 (UsedFor mexican_restaurant eat_taco) (STV 1.0 0.9091)) +(: cnet_usedfor_333bf2ca90 (UsedFor microphone amplification) (STV 1.0 0.9091)) +(: cnet_usedfor_374bdd6d8f (UsedFor microphone amplify) (STV 1.0 0.9091)) +(: cnet_usedfor_b54ae0c9e8 (UsedFor microphone_boom holding_microphone) (STV 1.0 0.9091)) +(: cnet_usedfor_7406763fc9 (UsedFor microscope observing_small_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_17c5b558d7 (UsedFor milk drinking) (STV 1.0 0.9091)) +(: cnet_usedfor_ea4e5eb749 (UsedFor mill grinding) (STV 1.0 0.9454)) +(: cnet_usedfor_04207635eb (UsedFor mill making_paper) (STV 1.0 0.9091)) +(: cnet_usedfor_249646f67d (UsedFor mill shaping) (STV 1.0 0.9091)) +(: cnet_usedfor_5c9918937c (UsedFor mill crunch) (STV 1.0 0.9091)) +(: cnet_usedfor_26f1b071e1 (UsedFor mill crush) (STV 1.0 0.9091)) +(: cnet_usedfor_59a7e3a5e6 (UsedFor mill flour) (STV 1.0 0.9091)) +(: cnet_usedfor_89f6f41891 (UsedFor mill mill) (STV 1.0 0.9091)) +(: cnet_usedfor_79bd14dfca (UsedFor mind thinking) (STV 1.0 0.9524)) +(: cnet_usedfor_6d2e9da2e1 (UsedFor mine blow_thing_up) (STV 1.0 0.9091)) +(: cnet_usedfor_ea75bfd641 (UsedFor mine destruction) (STV 1.0 0.9091)) +(: cnet_usedfor_11ee092d07 (UsedFor mine detonate) (STV 1.0 0.9091)) +(: cnet_usedfor_be639d392f (UsedFor mine explode) (STV 1.0 0.9091)) +(: cnet_usedfor_0567572406 (UsedFor mine explosion) (STV 1.0 0.9091)) +(: cnet_usedfor_bd3bc0f751 (UsedFor mineral health) (STV 1.0 0.9454)) +(: cnet_usedfor_2a57b2f5a8 (UsedFor mini_bar serving_drink) (STV 1.0 0.9091)) +(: cnet_usedfor_5565dd8730 (UsedFor mini_bar storing_drink) (STV 1.0 0.9091)) +(: cnet_usedfor_57f5b51501 (UsedFor minibar beer) (STV 1.0 0.9091)) +(: cnet_usedfor_742b117cd6 (UsedFor minibar drinking) (STV 1.0 0.9339)) +(: cnet_usedfor_25b1b41a1b (UsedFor minister preaching) (STV 1.0 0.9091)) +(: cnet_usedfor_842780f51e (UsedFor mirror light_reflection) (STV 1.0 0.9091)) +(: cnet_usedfor_6775da68ff (UsedFor mirror looking_at_yourself) (STV 1.0 0.9091)) +(: cnet_usedfor_57a889da36 (UsedFor mirror see_reflection) (STV 1.0 0.9091)) +(: cnet_usedfor_925da42cf6 (UsedFor mirror see_yourself) (STV 1.0 0.9454)) +(: cnet_usedfor_3527d18361 (UsedFor mirror reflect) (STV 1.0 0.9091)) +(: cnet_usedfor_25b533a0c1 (UsedFor mirror reflection) (STV 1.0 0.9091)) +(: cnet_usedfor_92f04386ca (UsedFor mirror spectator) (STV 1.0 0.9091)) +(: cnet_usedfor_0645de4d9f (UsedFor money obtain_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_8c25dea668 (UsedFor money pay_for) (STV 1.0 0.9091)) +(: cnet_usedfor_ab28acd516 (UsedFor money pay_for_sex) (STV 1.0 0.9091)) +(: cnet_usedfor_96977c8622 (UsedFor money saving) (STV 1.0 0.9091)) +(: cnet_usedfor_8277e03d06 (UsedFor monitor_wall monitoring_thing) (STV 1.0 0.9339)) +(: cnet_usedfor_83f770b650 (UsedFor monocle seeing) (STV 1.0 0.9572)) +(: cnet_usedfor_a46d0788fd (UsedFor monument remembering) (STV 1.0 0.9091)) +(: cnet_usedfor_be5e54da7c (UsedFor moon keep_track_of_time) (STV 1.0 0.9454)) +(: cnet_usedfor_5e882d1063 (UsedFor mortar grinding_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_27fd77be48 (UsedFor motel overnight_stay) (STV 1.0 0.9339)) +(: cnet_usedfor_8a48fc56a6 (UsedFor motel resting) (STV 1.0 0.9091)) +(: cnet_usedfor_70688036da (UsedFor motel sleeping) (STV 1.0 0.9454)) +(: cnet_usedfor_7aa43f4910 (UsedFor motherboard making_computer) (STV 1.0 0.9091)) +(: cnet_usedfor_c684b7c838 (UsedFor motorcycle ride) (STV 1.0 0.9091)) +(: cnet_usedfor_617869e52f (UsedFor motorcycle rush) (STV 1.0 0.9091)) +(: cnet_usedfor_561069cb52 (UsedFor motorcycle go_from_place_to_place) (STV 1.0 0.9091)) +(: cnet_usedfor_6a3f7440ef (UsedFor motorway drive) (STV 1.0 0.9091)) +(: cnet_usedfor_f479262233 (UsedFor mound stand_on) (STV 1.0 0.9091)) +(: cnet_usedfor_412203069f (UsedFor mountain climbing) (STV 1.0 0.9608)) +(: cnet_usedfor_4868778c06 (UsedFor mouse computer_input) (STV 1.0 0.9091)) +(: cnet_usedfor_32229fd84b (UsedFor mouse surfing) (STV 1.0 0.9339)) +(: cnet_usedfor_5524264e1a (UsedFor mouse move) (STV 1.0 0.9091)) +(: cnet_usedfor_e86c557a0f (UsedFor mouse operate) (STV 1.0 0.9091)) +(: cnet_usedfor_41afb0a672 (UsedFor mouth eating) (STV 1.0 0.9454)) +(: cnet_usedfor_766dada426 (UsedFor mouth kissing) (STV 1.0 0.9091)) +(: cnet_usedfor_e4eefce7f9 (UsedFor mouth singing) (STV 1.0 0.9339)) +(: cnet_usedfor_f6da3a2464 (UsedFor mouth speak) (STV 1.0 0.9339)) +(: cnet_usedfor_8c8f6835e2 (UsedFor mouth talking) (STV 1.0 0.9524)) +(: cnet_usedfor_cb05689bdd (UsedFor mouthwash cleaning_mouth) (STV 1.0 0.9339)) +(: cnet_usedfor_ccfc840798 (UsedFor mouthwash freshen_breath) (STV 1.0 0.9339)) +(: cnet_usedfor_41a5c3e622 (UsedFor movie entertainment) (STV 1.0 0.9454)) +(: cnet_usedfor_86ac3ddafd (UsedFor movie learn) (STV 1.0 0.9339)) +(: cnet_usedfor_4ec4ea9834 (UsedFor movie_house watching_movy) (STV 1.0 0.9572)) +(: cnet_usedfor_46205f91dd (UsedFor movie_theater watching_movy) (STV 1.0 0.9091)) +(: cnet_usedfor_e668797655 (UsedFor movie_theater_seat sitting_in) (STV 1.0 0.9339)) +(: cnet_usedfor_89dec4f50a (UsedFor movie_theater_seat sitting_in_at_movy) (STV 1.0 0.9091)) +(: cnet_usedfor_31648a5a11 (UsedFor movie_ticket getting_into_movy) (STV 1.0 0.9091)) +(: cnet_usedfor_0ecca5a1be (UsedFor moving_car driving) (STV 1.0 0.9339)) +(: cnet_usedfor_d69a1984c5 (UsedFor moving_car transportation) (STV 1.0 0.9091)) +(: cnet_usedfor_bc6baa4f0e (UsedFor moving_sidewalk transportation) (STV 1.0 0.9339)) +(: cnet_usedfor_23005bf642 (UsedFor moving_walkway airport) (STV 1.0 0.9454)) +(: cnet_usedfor_c297f060f0 (UsedFor moving_walkway moving_people) (STV 1.0 0.9091)) +(: cnet_usedfor_b5e47ecb99 (UsedFor moving_walkway transportation) (STV 1.0 0.9454)) +(: cnet_usedfor_e220fc2ac9 (UsedFor mp3_player listen_to_music) (STV 1.0 0.9091)) +(: cnet_usedfor_3424184131 (UsedFor mug coffee) (STV 1.0 0.9339)) +(: cnet_usedfor_d5344ecac1 (UsedFor mug drink_beer) (STV 1.0 0.9091)) +(: cnet_usedfor_b491a6b9ac (UsedFor mug drink_coffee) (STV 1.0 0.9339)) +(: cnet_usedfor_0d668632c8 (UsedFor mug drinking_from) (STV 1.0 0.9524)) +(: cnet_usedfor_a4dfa9339b (UsedFor mug drinking_tea) (STV 1.0 0.9091)) +(: cnet_usedfor_f930783f5b (UsedFor mug holding_coffee) (STV 1.0 0.9091)) +(: cnet_usedfor_441e315ca5 (UsedFor mug drinker) (STV 1.0 0.9091)) +(: cnet_usedfor_b45ab3e849 (UsedFor mug hold) (STV 1.0 0.9091)) +(: cnet_usedfor_b7c67c755f (UsedFor muscle constricting) (STV 1.0 0.9091)) +(: cnet_usedfor_c920a88874 (UsedFor muscle eating) (STV 1.0 0.9091)) +(: cnet_usedfor_f6fd0d7a10 (UsedFor muscle extension) (STV 1.0 0.9091)) +(: cnet_usedfor_a573ece7fc (UsedFor muscle flexion) (STV 1.0 0.9091)) +(: cnet_usedfor_8b15ddeaa2 (UsedFor muscle lift_thing) (STV 1.0 0.9339)) +(: cnet_usedfor_08a9cab8e9 (UsedFor muscle lift_weight) (STV 1.0 0.9091)) +(: cnet_usedfor_a3be23759f (UsedFor muscle move) (STV 1.0 0.9339)) +(: cnet_usedfor_08bc7ef57d (UsedFor muscle walk) (STV 1.0 0.9091)) +(: cnet_usedfor_72d177d1ff (UsedFor museum learn_about_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_b06758a547 (UsedFor museum store_artifact) (STV 1.0 0.9091)) +(: cnet_usedfor_f5a058ce77 (UsedFor museum_ticket enter_museum) (STV 1.0 0.9454)) +(: cnet_usedfor_b588461501 (UsedFor museum_ticket entering_museum) (STV 1.0 0.9091)) +(: cnet_usedfor_c98739de58 (UsedFor museum_ticket get_into_museum) (STV 1.0 0.9454)) +(: cnet_usedfor_c133248a74 (UsedFor music passing_time) (STV 1.0 0.9091)) +(: cnet_usedfor_32e1d21e24 (UsedFor music pleasure) (STV 1.0 0.9524)) +(: cnet_usedfor_abce55bf01 (UsedFor music relax_yourself) (STV 1.0 0.9339)) +(: cnet_usedfor_9307f5ff42 (UsedFor music soothing_savage_beast) (STV 1.0 0.9091)) +(: cnet_usedfor_36f61177f6 (UsedFor music_stand hold_music) (STV 1.0 0.9091)) +(: cnet_usedfor_d6c05fa475 (UsedFor music_stand hold_sheet_music) (STV 1.0 0.9339)) +(: cnet_usedfor_d018828f56 (UsedFor music_stand holding_music) (STV 1.0 0.9608)) +(: cnet_usedfor_a7e6ebc1b1 (UsedFor music_stand holding_sheet_music) (STV 1.0 0.9091)) +(: cnet_usedfor_e507e67489 (UsedFor musical_instrument making_music) (STV 1.0 0.9454)) +(: cnet_usedfor_491a24e2d1 (UsedFor musical_instrument making_music_and_enjoyment) (STV 1.0 0.9091)) +(: cnet_usedfor_05adba0f0a (UsedFor musical_instrument hearer) (STV 1.0 0.9091)) +(: cnet_usedfor_4ca08a7640 (UsedFor musical_instrument music) (STV 1.0 0.9091)) +(: cnet_usedfor_5c17b911af (UsedFor musical_instrument play) (STV 1.0 0.9091)) +(: cnet_usedfor_ce1e74eb44 (UsedFor musical_instrument sound) (STV 1.0 0.9091)) +(: cnet_usedfor_7c651a4ebf (UsedFor musical_instrument_which make_musical_sound) (STV 1.0 0.9091)) +(: cnet_usedfor_91802ee0de (UsedFor musket_ball shoot) (STV 1.0 0.9091)) +(: cnet_usedfor_b76e2ec6bc (UsedFor nail hold_thing_together) (STV 1.0 0.9091)) +(: cnet_usedfor_19ae0f35a3 (UsedFor name identification) (STV 1.0 0.9339)) +(: cnet_usedfor_10ecbf6674 (UsedFor name identify_or) (STV 1.0 0.9608)) +(: cnet_usedfor_40d7d10f50 (UsedFor name labeling_thing) (STV 1.0 0.9454)) +(: cnet_usedfor_447a3301ff (UsedFor napkin wipe_mouth) (STV 1.0 0.9091)) +(: cnet_usedfor_1cdc1da19e (UsedFor national_interstate_highway driving_on) (STV 1.0 0.9524)) +(: cnet_usedfor_b7a6e4624b (UsedFor neck supporting_head) (STV 1.0 0.9454)) +(: cnet_usedfor_f0b82237c8 (UsedFor necklace decorate) (STV 1.0 0.9339)) +(: cnet_usedfor_2508e57254 (UsedFor necklace decoration) (STV 1.0 0.9091)) +(: cnet_usedfor_f4edf80fbe (UsedFor necklace wearing_around_neck) (STV 1.0 0.9339)) +(: cnet_usedfor_fc502c8aa3 (UsedFor needle sew) (STV 1.0 0.9707)) +(: cnet_usedfor_82f977452e (UsedFor needle sewing) (STV 1.0 0.9339)) +(: cnet_usedfor_cdef09cc5c (UsedFor neighborhood_map find_way_around) (STV 1.0 0.9454)) +(: cnet_usedfor_93f50705c5 (UsedFor nerve sensing_pain) (STV 1.0 0.9339)) +(: cnet_usedfor_6a432bec83 (UsedFor net catch_fish) (STV 1.0 0.9454)) +(: cnet_usedfor_c54480b87e (UsedFor net catching_fish) (STV 1.0 0.9740)) +(: cnet_usedfor_c7dbe5d715 (UsedFor net fishing) (STV 1.0 0.9339)) +(: cnet_usedfor_30e9df9758 (UsedFor night_table hold_lamp) (STV 1.0 0.9091)) +(: cnet_usedfor_faf5c9b8e6 (UsedFor nightclub drinking) (STV 1.0 0.9091)) +(: cnet_usedfor_19f5a4d6b2 (UsedFor nightclub party) (STV 1.0 0.9339)) +(: cnet_usedfor_925abfb3b2 (UsedFor noise distract_other) (STV 1.0 0.9339)) +(: cnet_usedfor_4fdf4bb62c (UsedFor noise get_attention) (STV 1.0 0.9339)) +(: cnet_usedfor_9661df71e6 (UsedFor noise getting_attention) (STV 1.0 0.9339)) +(: cnet_usedfor_3544501fe1 (UsedFor nose breathing) (STV 1.0 0.9339)) +(: cnet_usedfor_9a5041ecc1 (UsedFor nose getting_congested_and_blowing) (STV 1.0 0.9091)) +(: cnet_usedfor_13587ce915 (UsedFor note communication) (STV 1.0 0.9339)) +(: cnet_usedfor_30d70824fc (UsedFor notebook taking_note) (STV 1.0 0.9339)) +(: cnet_usedfor_8a279dc4ce (UsedFor notebook write_note) (STV 1.0 0.9091)) +(: cnet_usedfor_c05d5cbdfe (UsedFor notebook collect_information) (STV 1.0 0.9091)) +(: cnet_usedfor_b85eaa1a2d (UsedFor notepad doodle) (STV 1.0 0.9339)) +(: cnet_usedfor_145aee8400 (UsedFor notepad leaving_message) (STV 1.0 0.9091)) +(: cnet_usedfor_f453d377a0 (UsedFor notepad writing_note) (STV 1.0 0.9572)) +(: cnet_usedfor_de261ab4aa (UsedFor number call_on_telephone) (STV 1.0 0.9339)) +(: cnet_usedfor_a7663b323f (UsedFor number identifying_house) (STV 1.0 0.9091)) +(: cnet_usedfor_e40fe2d0e3 (UsedFor number index_material) (STV 1.0 0.9339)) +(: cnet_usedfor_70af0aa27d (UsedFor number orginization) (STV 1.0 0.9091)) +(: cnet_usedfor_667642b4c5 (UsedFor number represent_order) (STV 1.0 0.9339)) +(: cnet_usedfor_93e341f2e7 (UsedFor number number_kata) (STV 1.0 0.9091)) +(: cnet_usedfor_ce3624403e (UsedFor nylon making_clothe) (STV 1.0 0.9524)) +(: cnet_usedfor_4e32228a96 (UsedFor oar rowing) (STV 1.0 0.9339)) +(: cnet_usedfor_1f0f15d6e5 (UsedFor oboe make_music) (STV 1.0 0.9339)) +(: cnet_usedfor_dd4c184537 (UsedFor oboe making_music) (STV 1.0 0.9091)) +(: cnet_usedfor_7f1a0480b1 (UsedFor oboe playing_in_orchestra) (STV 1.0 0.9524)) +(: cnet_usedfor_47a85b56bb (UsedFor obstructing_justice protecting) (STV 1.0 0.9091)) +(: cnet_usedfor_51a213dda9 (UsedFor ocean diving) (STV 1.0 0.9339)) +(: cnet_usedfor_a561d8fddf (UsedFor ocean fish) (STV 1.0 0.9339)) +(: cnet_usedfor_58f0d84816 (UsedFor ocean fishing) (STV 1.0 0.9091)) +(: cnet_usedfor_fef42c153c (UsedFor ocean relax) (STV 1.0 0.9091)) +(: cnet_usedfor_19ee4b3b5b (UsedFor ocean sail) (STV 1.0 0.9091)) +(: cnet_usedfor_20f04663d0 (UsedFor ocean sailing) (STV 1.0 0.9707)) +(: cnet_usedfor_e07aaa6543 (UsedFor ocean swim_in) (STV 1.0 0.9454)) +(: cnet_usedfor_76e8ba0122 (UsedFor ocean swimming) (STV 1.0 0.9091)) +(: cnet_usedfor_f5b75e6fe2 (UsedFor office get_work_done) (STV 1.0 0.9091)) +(: cnet_usedfor_e6f5dbbd2e (UsedFor office work) (STV 1.0 0.9524)) +(: cnet_usedfor_01a5536e59 (UsedFor office working) (STV 1.0 0.9091)) +(: cnet_usedfor_d1dd1af5c2 (UsedFor office_building business_function) (STV 1.0 0.9091)) +(: cnet_usedfor_f40033e2a7 (UsedFor office_building investing_in_commercial_development) (STV 1.0 0.9091)) +(: cnet_usedfor_47a6fc4a04 (UsedFor office_building work) (STV 1.0 0.9454)) +(: cnet_usedfor_bece527107 (UsedFor oil car) (STV 1.0 0.9091)) +(: cnet_usedfor_2e33378df3 (UsedFor oil lubricate) (STV 1.0 0.9091)) +(: cnet_usedfor_4399506066 (UsedFor on_off_switch control_machine) (STV 1.0 0.9091)) +(: cnet_usedfor_984258093e (UsedFor on_off_switch turn_machine_on_or_off) (STV 1.0 0.9091)) +(: cnet_usedfor_9a805940b1 (UsedFor on_off_switch turning_off_light) (STV 1.0 0.9091)) +(: cnet_usedfor_2d12a4c572 (UsedFor on_off_switch turning_on_light) (STV 1.0 0.9091)) +(: cnet_usedfor_485eee2034 (UsedFor one_person_chair sitting_alone) (STV 1.0 0.9091)) +(: cnet_usedfor_2786b4def5 (UsedFor opening_bag_of_chip eating_chip) (STV 1.0 0.9454)) +(: cnet_usedfor_32207d4393 (UsedFor opening_bag_of_chip having_snack) (STV 1.0 0.9091)) +(: cnet_usedfor_9a179e3642 (UsedFor opening_business making_money) (STV 1.0 0.9524)) +(: cnet_usedfor_f82aebb056 (UsedFor opening_business providing_service) (STV 1.0 0.9339)) +(: cnet_usedfor_7da2a13d31 (UsedFor opening_gift being_surprised) (STV 1.0 0.9091)) +(: cnet_usedfor_56cf50b354 (UsedFor opening_gift surprise) (STV 1.0 0.9091)) +(: cnet_usedfor_a0b7cdfc69 (UsedFor opera_glass see_farther) (STV 1.0 0.9091)) +(: cnet_usedfor_ab5764bfe1 (UsedFor orchestra_pit holding_orchestra) (STV 1.0 0.9091)) +(: cnet_usedfor_3d04aa12bf (UsedFor orchestra_pit musician) (STV 1.0 0.9454)) +(: cnet_usedfor_0e25afca89 (UsedFor orchestra_pit orchestra_to_sit_in) (STV 1.0 0.9524)) +(: cnet_usedfor_53ddd649af (UsedFor orchestra_seat sit_in) (STV 1.0 0.9339)) +(: cnet_usedfor_be4bedccfc (UsedFor organ keeping_human_alive) (STV 1.0 0.9091)) +(: cnet_usedfor_8168cb4659 (UsedFor organ play_music) (STV 1.0 0.9454)) +(: cnet_usedfor_c3c808b70b (UsedFor ottoman prop_feet) (STV 1.0 0.9091)) +(: cnet_usedfor_06de3d67cd (UsedFor ottoman put_feet_on) (STV 1.0 0.9339)) +(: cnet_usedfor_e2cab11867 (UsedFor ottoman rest_feet) (STV 1.0 0.9091)) +(: cnet_usedfor_eccea030fb (UsedFor ottoman sitting) (STV 1.0 0.9454)) +(: cnet_usedfor_94e98cf442 (UsedFor outfield catch_baseball) (STV 1.0 0.9091)) +(: cnet_usedfor_8f7115001f (UsedFor oven bake_cake) (STV 1.0 0.9091)) +(: cnet_usedfor_cd455c4139 (UsedFor oven bake_cooky) (STV 1.0 0.9524)) +(: cnet_usedfor_666c653ffc (UsedFor oven baking_food) (STV 1.0 0.9091)) +(: cnet_usedfor_6c95241af1 (UsedFor oven cooking) (STV 1.0 0.9608)) +(: cnet_usedfor_62a3628dab (UsedFor overflow preventing_flood) (STV 1.0 0.9091)) +(: cnet_usedfor_0652671016 (UsedFor pacific_ocean fishing) (STV 1.0 0.9091)) +(: cnet_usedfor_cd47a8e8fe (UsedFor pacific_ocean getting_from_usa_to_asia) (STV 1.0 0.9091)) +(: cnet_usedfor_28bea5c032 (UsedFor pacific_ocean separating_asia_from_america) (STV 1.0 0.9091)) +(: cnet_usedfor_b5ff85ea61 (UsedFor pacific_ocean swimming_in) (STV 1.0 0.9339)) +(: cnet_usedfor_71eabc4d06 (UsedFor package hold) (STV 1.0 0.9091)) +(: cnet_usedfor_f6a08f962f (UsedFor pad crash) (STV 1.0 0.9091)) +(: cnet_usedfor_9ace7bb5f2 (UsedFor pad crash_in) (STV 1.0 0.9091)) +(: cnet_usedfor_db70bf0bd5 (UsedFor pad living_in) (STV 1.0 0.9091)) +(: cnet_usedfor_f77ed8794a (UsedFor pad mouse) (STV 1.0 0.9454)) +(: cnet_usedfor_9a630ec354 (UsedFor pad paper) (STV 1.0 0.9091)) +(: cnet_usedfor_5cf5fec2ea (UsedFor pad writing_note_on) (STV 1.0 0.9091)) +(: cnet_usedfor_3025ce08c5 (UsedFor pad writing_on) (STV 1.0 0.9524)) +(: cnet_usedfor_df5e0dbf24 (UsedFor page writing) (STV 1.0 0.9091)) +(: cnet_usedfor_7eaf170ff1 (UsedFor pail carry_water) (STV 1.0 0.9091)) +(: cnet_usedfor_b0b3bcf1ed (UsedFor pail carrying_water) (STV 1.0 0.9339)) +(: cnet_usedfor_5c40847bd2 (UsedFor paint painting) (STV 1.0 0.9454)) +(: cnet_usedfor_88463dd51b (UsedFor painting art) (STV 1.0 0.9339)) +(: cnet_usedfor_cb510959d4 (UsedFor painting artist) (STV 1.0 0.9091)) +(: cnet_usedfor_c66347d4c0 (UsedFor painting creating_work_of_art) (STV 1.0 0.9091)) +(: cnet_usedfor_fcc7eaa679 (UsedFor painting decorating) (STV 1.0 0.9091)) +(: cnet_usedfor_88a8e3470e (UsedFor painting expressing_artistically) (STV 1.0 0.9091)) +(: cnet_usedfor_5e9783232a (UsedFor painting expressing_yourself) (STV 1.0 0.9339)) +(: cnet_usedfor_f6b5de6553 (UsedFor painting home_improvement) (STV 1.0 0.9091)) +(: cnet_usedfor_5e94277a89 (UsedFor painting relaxation) (STV 1.0 0.9091)) +(: cnet_usedfor_39a6d64f3f (UsedFor painting_house change_colour) (STV 1.0 0.9091)) +(: cnet_usedfor_64cdf44823 (UsedFor painting_house changing_color_of_house) (STV 1.0 0.9339)) +(: cnet_usedfor_90bcff4626 (UsedFor painting_house making_look_better) (STV 1.0 0.9091)) +(: cnet_usedfor_f366fc13d3 (UsedFor painting_picture detail) (STV 1.0 0.9091)) +(: cnet_usedfor_95abd86807 (UsedFor painting_picture entertainment) (STV 1.0 0.9091)) +(: cnet_usedfor_8c28bb78b2 (UsedFor painting_picture expressing_yourself) (STV 1.0 0.9339)) +(: cnet_usedfor_a62f48b9ec (UsedFor painting_picture having_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_6d2f6baa74 (UsedFor painting_picture hobbie) (STV 1.0 0.9091)) +(: cnet_usedfor_32b3c0aeea (UsedFor painting_picture relaxing) (STV 1.0 0.9091)) +(: cnet_usedfor_6e80fa5b9c (UsedFor pair_of_pant cover_leg) (STV 1.0 0.9091)) +(: cnet_usedfor_0a56b6f3fd (UsedFor pair_of_pant wearing) (STV 1.0 0.9636)) +(: cnet_usedfor_e7d8d66d83 (UsedFor pan cooking) (STV 1.0 0.9608)) +(: cnet_usedfor_86442f8bb5 (UsedFor pan fry_egg) (STV 1.0 0.9091)) +(: cnet_usedfor_6af2f0d064 (UsedFor pan frying) (STV 1.0 0.9454)) +(: cnet_usedfor_5dbaacb77e (UsedFor pan frying_food) (STV 1.0 0.9339)) +(: cnet_usedfor_dbcc3f8d04 (UsedFor pantry store_food) (STV 1.0 0.9091)) +(: cnet_usedfor_dc5757ce07 (UsedFor paper communication) (STV 1.0 0.9091)) +(: cnet_usedfor_5e931317ea (UsedFor paper drawing) (STV 1.0 0.9608)) +(: cnet_usedfor_88e5e75311 (UsedFor paper make_paper_airplane) (STV 1.0 0.9608)) +(: cnet_usedfor_3a1f567ea4 (UsedFor paper origami) (STV 1.0 0.9091)) +(: cnet_usedfor_92a4e480d7 (UsedFor paper print_on) (STV 1.0 0.9454)) +(: cnet_usedfor_d5bd1a314e (UsedFor paper reading_new) (STV 1.0 0.9091)) +(: cnet_usedfor_2214654b8b (UsedFor paper recording_information) (STV 1.0 0.9091)) +(: cnet_usedfor_a79b0c9de2 (UsedFor paper wrap_present) (STV 1.0 0.9091)) +(: cnet_usedfor_f27c8acf95 (UsedFor paper write_letter) (STV 1.0 0.9454)) +(: cnet_usedfor_97676b7879 (UsedFor paper_bill buying_thing_from_vending_machine) (STV 1.0 0.9091)) +(: cnet_usedfor_a0e53f6ec6 (UsedFor paper_clip holding_paper_together) (STV 1.0 0.9091)) +(: cnet_usedfor_acca461b05 (UsedFor paper_clip keeping_paper_together) (STV 1.0 0.9339)) +(: cnet_usedfor_87555fbdb7 (UsedFor paper_fastener keep_paper_together) (STV 1.0 0.9091)) +(: cnet_usedfor_daa84517b2 (UsedFor paper_menu order_food) (STV 1.0 0.9339)) +(: cnet_usedfor_044cd7e233 (UsedFor paper_page reading) (STV 1.0 0.9339)) +(: cnet_usedfor_24a1b08db8 (UsedFor paper_punch make_hole_in_paper) (STV 1.0 0.9091)) +(: cnet_usedfor_7815fa361c (UsedFor paper_punch making_confetti) (STV 1.0 0.9091)) +(: cnet_usedfor_95abeefb92 (UsedFor paper_punch making_hole_in_paper) (STV 1.0 0.9339)) +(: cnet_usedfor_4d44cf2801 (UsedFor parking_area park_car) (STV 1.0 0.9693)) +(: cnet_usedfor_f3e789ef08 (UsedFor parking_area parking_car) (STV 1.0 0.9091)) +(: cnet_usedfor_3da43bf70e (UsedFor parking_lot car) (STV 1.0 0.9339)) +(: cnet_usedfor_f38e4bebcd (UsedFor parking_lot park) (STV 1.0 0.9091)) +(: cnet_usedfor_885bbad1f0 (UsedFor parking_lot parking_car) (STV 1.0 0.9572)) +(: cnet_usedfor_a145d9e700 (UsedFor parking_lot practice_bagpipe_technique) (STV 1.0 0.9091)) +(: cnet_usedfor_99ec259d35 (UsedFor parking_structure car) (STV 1.0 0.9339)) +(: cnet_usedfor_7573477d47 (UsedFor parking_structure park) (STV 1.0 0.9091)) +(: cnet_usedfor_a11eb8345c (UsedFor parking_zone leave_car) (STV 1.0 0.9091)) +(: cnet_usedfor_092d7ea2d4 (UsedFor parking_zone park_car) (STV 1.0 0.9572)) +(: cnet_usedfor_6f72fbd047 (UsedFor parking_zone parking_car) (STV 1.0 0.9091)) +(: cnet_usedfor_de4d0441ce (UsedFor parking_zone parking_vehicle) (STV 1.0 0.9339)) +(: cnet_usedfor_d91e067a55 (UsedFor parkway driving) (STV 1.0 0.9454)) +(: cnet_usedfor_d219c600b2 (UsedFor parlor entertaining_guest) (STV 1.0 0.9339)) +(: cnet_usedfor_6e8007b1a3 (UsedFor party celebrate_birthday) (STV 1.0 0.9339)) +(: cnet_usedfor_2823b360c7 (UsedFor party make_friend) (STV 1.0 0.9091)) +(: cnet_usedfor_801482af87 (UsedFor party meet_new_people) (STV 1.0 0.9339)) +(: cnet_usedfor_ac3f189061 (UsedFor party meeting_people) (STV 1.0 0.9454)) +(: cnet_usedfor_d5a25e9a88 (UsedFor party relaxing) (STV 1.0 0.9091)) +(: cnet_usedfor_62b612b091 (UsedFor passage direct_one_s_location) (STV 1.0 0.9091)) +(: cnet_usedfor_eedcb8117d (UsedFor passageway getting_from_one_place_to_another) (STV 1.0 0.9091)) +(: cnet_usedfor_f47ca72202 (UsedFor passageway walk) (STV 1.0 0.9091)) +(: cnet_usedfor_03df818a3b (UsedFor passageway walk_along) (STV 1.0 0.9091)) +(: cnet_usedfor_2f64005ee3 (UsedFor passenger_ticket board_plane) (STV 1.0 0.9091)) +(: cnet_usedfor_363889bcb6 (UsedFor passenger_ticket travelling) (STV 1.0 0.9091)) +(: cnet_usedfor_467bd4e4ba (UsedFor passing_class being_happy) (STV 1.0 0.9091)) +(: cnet_usedfor_c7354b5878 (UsedFor passing_class benefitting_from_previous_work) (STV 1.0 0.9091)) +(: cnet_usedfor_b5d60dd30b (UsedFor passing_class gaining_future_success) (STV 1.0 0.9091)) +(: cnet_usedfor_19df99d246 (UsedFor passing_class getting_to_next_academic_level) (STV 1.0 0.9091)) +(: cnet_usedfor_49b6507410 (UsedFor passing_class indicating_competence) (STV 1.0 0.9091)) +(: cnet_usedfor_0f6a9da4df (UsedFor passing_university_exam getting_degree) (STV 1.0 0.9572)) +(: cnet_usedfor_e97ce679fa (UsedFor passport identification) (STV 1.0 0.9091)) +(: cnet_usedfor_97f29a3932 (UsedFor passport_case protecting_passport) (STV 1.0 0.9339)) +(: cnet_usedfor_cf22c27920 (UsedFor patio_door entering_patio) (STV 1.0 0.9339)) +(: cnet_usedfor_ee289513b5 (UsedFor pavement driving_car_on) (STV 1.0 0.9091)) +(: cnet_usedfor_942c456a9c (UsedFor pavement riding_motorcycle_over) (STV 1.0 0.9091)) +(: cnet_usedfor_65f14a4325 (UsedFor pawn play_chess) (STV 1.0 0.9572)) +(: cnet_usedfor_6ed44037d2 (UsedFor paying_bill keeping_utility_on) (STV 1.0 0.9339)) +(: cnet_usedfor_02eb302fe9 (UsedFor paying_by_check not_carrying_cash) (STV 1.0 0.9091)) +(: cnet_usedfor_d3861c83b9 (UsedFor paying_by_check not_having_to_carry_cash) (STV 1.0 0.9091)) +(: cnet_usedfor_5b0c851d32 (UsedFor paying_by_credit_card putting_off_payment) (STV 1.0 0.9091)) +(: cnet_usedfor_230e80aa78 (UsedFor paying_cash paying_for_service) (STV 1.0 0.9339)) +(: cnet_usedfor_9ab806331a (UsedFor payment_counter make_payment) (STV 1.0 0.9339)) +(: cnet_usedfor_2b2c64631f (UsedFor payment_counter transacting_business) (STV 1.0 0.9339)) +(: cnet_usedfor_f3aa220f3a (UsedFor pedestal put_statue_on) (STV 1.0 0.9091)) +(: cnet_usedfor_b6ae543aab (UsedFor pen drawing) (STV 1.0 0.9091)) +(: cnet_usedfor_f0a58a28bf (UsedFor pen holding_animal) (STV 1.0 0.9091)) +(: cnet_usedfor_f4d46e2f1c (UsedFor pen write_story) (STV 1.0 0.9091)) +(: cnet_usedfor_011f805645 (UsedFor pen write_thing_down) (STV 1.0 0.9091)) +(: cnet_usedfor_70eb363708 (UsedFor pen writing) (STV 1.0 0.9091)) +(: cnet_usedfor_3519ebf70a (UsedFor pen writing_letter) (STV 1.0 0.9339)) +(: cnet_usedfor_9a4cf10c6c (UsedFor pencil doing_math) (STV 1.0 0.9454)) +(: cnet_usedfor_4877c2c249 (UsedFor pencil letter_writing) (STV 1.0 0.9091)) +(: cnet_usedfor_33672e9c6c (UsedFor pencil write_on_paper) (STV 1.0 0.9730)) +(: cnet_usedfor_6feb697d91 (UsedFor pencil write_story) (STV 1.0 0.9091)) +(: cnet_usedfor_3b8afec753 (UsedFor pencil_sharpener sharpening_pencil) (STV 1.0 0.9091)) +(: cnet_usedfor_192f191131 (UsedFor pencil take_note) (STV 1.0 0.9524)) +(: cnet_usedfor_92a0bcc6e8 (UsedFor penis insertion_into_vagina) (STV 1.0 0.9339)) +(: cnet_usedfor_647e68b7a7 (UsedFor penis peeing) (STV 1.0 0.9339)) +(: cnet_usedfor_2eecb016f5 (UsedFor penny buying_gumball) (STV 1.0 0.9339)) +(: cnet_usedfor_fa0355af0f (UsedFor penny making_change) (STV 1.0 0.9339)) +(: cnet_usedfor_709808da69 (UsedFor pen take_note) (STV 1.0 0.9091)) +(: cnet_usedfor_7bc5e78db1 (UsedFor people labor) (STV 1.0 0.9091)) +(: cnet_usedfor_392bfebdbc (UsedFor people socializing) (STV 1.0 0.9091)) +(: cnet_usedfor_b23a6b97c2 (UsedFor people socializing_with) (STV 1.0 0.9091)) +(: cnet_usedfor_dc5afb0647 (UsedFor people talk) (STV 1.0 0.9091)) +(: cnet_usedfor_0c246a74f8 (UsedFor people work) (STV 1.0 0.9339)) +(: cnet_usedfor_9e61df88af (UsedFor people work_for) (STV 1.0 0.9091)) +(: cnet_usedfor_dcba3667a8 (UsedFor pepper season_food) (STV 1.0 0.9091)) +(: cnet_usedfor_3d42d6232b (UsedFor pepper_and_salt flavoring_food) (STV 1.0 0.9091)) +(: cnet_usedfor_9734194df8 (UsedFor pepper_and_salt making_food_taste_better) (STV 1.0 0.9091)) +(: cnet_usedfor_eefca27531 (UsedFor pepper_and_salt season_food) (STV 1.0 0.9524)) +(: cnet_usedfor_2f0b8f594c (UsedFor pepper_and_salt seasoning_food) (STV 1.0 0.9454)) +(: cnet_usedfor_8ca8411dcd (UsedFor pepper_and_salt spice_up_food) (STV 1.0 0.9339)) +(: cnet_usedfor_c80f154533 (UsedFor percussion_instrument beating) (STV 1.0 0.9091)) +(: cnet_usedfor_6c2d8afb5a (UsedFor percussion_instrument hitting) (STV 1.0 0.9339)) +(: cnet_usedfor_c080f222d3 (UsedFor percussion_instrument keep_beat) (STV 1.0 0.9091)) +(: cnet_usedfor_3dce7e2ccd (UsedFor percussion_instrument make_noise) (STV 1.0 0.9091)) +(: cnet_usedfor_d33aca6e2f (UsedFor percussion_instrument making_music) (STV 1.0 0.9339)) +(: cnet_usedfor_5ddb979795 (UsedFor percussion_instrument play_music) (STV 1.0 0.9091)) +(: cnet_usedfor_c68f9e0259 (UsedFor percussion_instrument striking) (STV 1.0 0.9091)) +(: cnet_usedfor_d6f8aa973f (UsedFor performance show_talent) (STV 1.0 0.9091)) +(: cnet_usedfor_30c60239df (UsedFor performing actor) (STV 1.0 0.9339)) +(: cnet_usedfor_e044dbed64 (UsedFor performing entertaining_people) (STV 1.0 0.9339)) +(: cnet_usedfor_94dca05d1c (UsedFor performing entertainment) (STV 1.0 0.9454)) +(: cnet_usedfor_1d2482db83 (UsedFor performing singer) (STV 1.0 0.9339)) +(: cnet_usedfor_9904a21f60 (UsedFor perfume aroma) (STV 1.0 0.9091)) +(: cnet_usedfor_bd34a8e4eb (UsedFor perfume perfume) (STV 1.0 0.9091)) +(: cnet_usedfor_cf84e041b0 (UsedFor person help) (STV 1.0 0.9339)) +(: cnet_usedfor_0aa8879b28 (UsedFor person loving) (STV 1.0 0.9091)) +(: cnet_usedfor_da297b2191 (UsedFor pet companionship) (STV 1.0 0.9608)) +(: cnet_usedfor_849dbd9893 (UsedFor pew kneeling_at) (STV 1.0 0.9091)) +(: cnet_usedfor_0e7aa315e4 (UsedFor phillip_head_screwdriver screwing_in_phillip_head_screw) (STV 1.0 0.9091)) +(: cnet_usedfor_85e6c47424 (UsedFor phillip_head_screwdriver unscrewing_phillip_head_screw) (STV 1.0 0.9091)) +(: cnet_usedfor_e3c3b907d3 (UsedFor phillip_screwdriver tighten_phillip_head_screw) (STV 1.0 0.9091)) +(: cnet_usedfor_216ee5b2c4 (UsedFor phone calling) (STV 1.0 0.9454)) +(: cnet_usedfor_82f92a7710 (UsedFor phone communication) (STV 1.0 0.9608)) +(: cnet_usedfor_bd2fb03995 (UsedFor phone make_call) (STV 1.0 0.9091)) +(: cnet_usedfor_2a09fb0536 (UsedFor phone talking) (STV 1.0 0.9091)) +(: cnet_usedfor_c38f6ce28e (UsedFor photo_album storing_photo) (STV 1.0 0.9091)) +(: cnet_usedfor_e1ff00e8e0 (UsedFor php make_dynamic_webpage) (STV 1.0 0.9091)) +(: cnet_usedfor_ecaee25f1d (UsedFor piano accompanying_orchestra) (STV 1.0 0.9091)) +(: cnet_usedfor_4018df077e (UsedFor piano music) (STV 1.0 0.9454)) +(: cnet_usedfor_f6faf425a0 (UsedFor piano performing_music) (STV 1.0 0.9572)) +(: cnet_usedfor_6e1cfe1650 (UsedFor piccolo play_music) (STV 1.0 0.9091)) +(: cnet_usedfor_bb1efab014 (UsedFor picnic_basket carry_food) (STV 1.0 0.9572)) +(: cnet_usedfor_5f50da8f62 (UsedFor picnic_basket carry_food_to_picnic) (STV 1.0 0.9339)) +(: cnet_usedfor_aa4305f009 (UsedFor picnic_basket carrying_food) (STV 1.0 0.9339)) +(: cnet_usedfor_ff7340d08e (UsedFor picnic_basket carrying_food_to_picnic) (STV 1.0 0.9091)) +(: cnet_usedfor_6b66e43e41 (UsedFor piece making_whole) (STV 1.0 0.9091)) +(: cnet_usedfor_ab6588d90f (UsedFor piece_of_change buy_stuff) (STV 1.0 0.9091)) +(: cnet_usedfor_a65892cab4 (UsedFor piece_of_coal carry_to_newcastle) (STV 1.0 0.9091)) +(: cnet_usedfor_cb0ddb192d (UsedFor piece_of_information learning) (STV 1.0 0.9091)) +(: cnet_usedfor_8a6171233b (UsedFor piece_of_paper making_paper_airplane) (STV 1.0 0.9091)) +(: cnet_usedfor_69e4757872 (UsedFor piece_of_paper write_upon) (STV 1.0 0.9339)) +(: cnet_usedfor_9c5e63bb83 (UsedFor piece_of_paper writing_upon) (STV 1.0 0.9091)) +(: cnet_usedfor_ed2051991f (UsedFor pike pulling) (STV 1.0 0.9091)) +(: cnet_usedfor_03f2ced4c9 (UsedFor pill curing_illness) (STV 1.0 0.9091)) +(: cnet_usedfor_ee8003acf9 (UsedFor pill headache) (STV 1.0 0.9091)) +(: cnet_usedfor_5043fc49b7 (UsedFor pill medicine) (STV 1.0 0.9339)) +(: cnet_usedfor_46e58c8b24 (UsedFor pillow sleeping) (STV 1.0 0.9339)) +(: cnet_usedfor_39eaafd757 (UsedFor pillow_case covering_pillow) (STV 1.0 0.9608)) +(: cnet_usedfor_3f382ca905 (UsedFor pillow_case encasing_pillow) (STV 1.0 0.9339)) +(: cnet_usedfor_853c1fae92 (UsedFor pillow_case holding_pillow) (STV 1.0 0.9091)) +(: cnet_usedfor_84e5579992 (UsedFor pillow_case protecting_pillow_from_dirt) (STV 1.0 0.9339)) +(: cnet_usedfor_ed75bab03a (UsedFor pillowcase keeping_pillow_clean) (STV 1.0 0.9339)) +(: cnet_usedfor_1b8e396c0d (UsedFor pipe smoke) (STV 1.0 0.9454)) +(: cnet_usedfor_20a4afe937 (UsedFor pistol kill_thing) (STV 1.0 0.9572)) +(: cnet_usedfor_7153522b23 (UsedFor pistol killing) (STV 1.0 0.9091)) +(: cnet_usedfor_583b94ae1b (UsedFor pistol scaring) (STV 1.0 0.9091)) +(: cnet_usedfor_ab82b1ee60 (UsedFor pistol shoot) (STV 1.0 0.9091)) +(: cnet_usedfor_024cb0b8ee (UsedFor pistol shooting) (STV 1.0 0.9524)) +(: cnet_usedfor_8b554ba93a (UsedFor pistol shooting_bullet) (STV 1.0 0.9572)) +(: cnet_usedfor_bb13bacba6 (UsedFor pistol target_practice) (STV 1.0 0.9339)) +(: cnet_usedfor_206f8b31de (UsedFor pit burying_thing_in) (STV 1.0 0.9091)) +(: cnet_usedfor_29761996d4 (UsedFor pit catch_animal) (STV 1.0 0.9091)) +(: cnet_usedfor_873cbc9aae (UsedFor pit trap) (STV 1.0 0.9091)) +(: cnet_usedfor_e919f79abf (UsedFor pitcher_mound baseball) (STV 1.0 0.9339)) +(: cnet_usedfor_2306aac6a0 (UsedFor pitcher_mound throwing_ball) (STV 1.0 0.9091)) +(: cnet_usedfor_934b0d58ee (UsedFor pizza_parlor getting_pizza) (STV 1.0 0.9091)) +(: cnet_usedfor_e38911f03d (UsedFor pizzeria buy_pizza) (STV 1.0 0.9091)) +(: cnet_usedfor_41fbbbb34e (UsedFor pizzeria buying_pizza) (STV 1.0 0.9454)) +(: cnet_usedfor_946ba6ec2f (UsedFor pizzeria eating_in) (STV 1.0 0.9091)) +(: cnet_usedfor_86019c7f23 (UsedFor pizzeria getting_pizza) (STV 1.0 0.9091)) +(: cnet_usedfor_7b3fc2049d (UsedFor place eat_to_meet_friend) (STV 1.0 0.9091)) +(: cnet_usedfor_0f74913684 (UsedFor place_to_stay residing) (STV 1.0 0.9339)) +(: cnet_usedfor_0b5afbb8e1 (UsedFor place_to_stay sleeping) (STV 1.0 0.9339)) +(: cnet_usedfor_7a7d566ad2 (UsedFor plane travel) (STV 1.0 0.9339)) +(: cnet_usedfor_54c32cda0b (UsedFor plane_ticket board_plane) (STV 1.0 0.9091)) +(: cnet_usedfor_ee1db9f60d (UsedFor plane_ticket go_on_vacation) (STV 1.0 0.9339)) +(: cnet_usedfor_d5e5a6d769 (UsedFor plane_ticket travel) (STV 1.0 0.9524)) +(: cnet_usedfor_451236d0d7 (UsedFor plane flying) (STV 1.0 0.9091)) +(: cnet_usedfor_54e0312ce5 (UsedFor planet live_on) (STV 1.0 0.9572)) +(: cnet_usedfor_d4450f6567 (UsedFor planning_vacation making_vacation_worthwhile) (STV 1.0 0.9091)) +(: cnet_usedfor_13bb22c392 (UsedFor plate eating_from) (STV 1.0 0.9339)) +(: cnet_usedfor_ca377fb881 (UsedFor plate hold_food) (STV 1.0 0.9454)) +(: cnet_usedfor_15a6ab2511 (UsedFor plate holding_food) (STV 1.0 0.9339)) +(: cnet_usedfor_fc6276ac4c (UsedFor plate put_food_in) (STV 1.0 0.9339)) +(: cnet_usedfor_f33822bd8c (UsedFor platform standing_on) (STV 1.0 0.9339)) +(: cnet_usedfor_50c0c63f76 (UsedFor platform_railing safety) (STV 1.0 0.9339)) +(: cnet_usedfor_0171dc3d5a (UsedFor playing children) (STV 1.0 0.9091)) +(: cnet_usedfor_764b392e0a (UsedFor playing fun) (STV 1.0 0.9339)) +(: cnet_usedfor_b7099911a7 (UsedFor playing having_fun) (STV 1.0 0.9454)) +(: cnet_usedfor_c0e2a66659 (UsedFor playing learning) (STV 1.0 0.9454)) +(: cnet_usedfor_68c0ccee2d (UsedFor playing relaxing) (STV 1.0 0.9339)) +(: cnet_usedfor_489168d667 (UsedFor playing socialising) (STV 1.0 0.9339)) +(: cnet_usedfor_f0b776ef22 (UsedFor playing_ball exercise_and_entertainment) (STV 1.0 0.9091)) +(: cnet_usedfor_6b6780b7a8 (UsedFor playing_basketball enjoyment) (STV 1.0 0.9091)) +(: cnet_usedfor_b263b1a1ba (UsedFor playing_basketball exercise) (STV 1.0 0.9454)) +(: cnet_usedfor_a6e2279122 (UsedFor playing_basketball making_money) (STV 1.0 0.9091)) +(: cnet_usedfor_b95d21742f (UsedFor playing_basketball sport) (STV 1.0 0.9454)) +(: cnet_usedfor_c8d4669e83 (UsedFor playing_card game) (STV 1.0 0.9091)) +(: cnet_usedfor_a25e2b399d (UsedFor playing_card having_fun) (STV 1.0 0.9339)) +(: cnet_usedfor_7936be0ffd (UsedFor playing_card passing_time) (STV 1.0 0.9091)) +(: cnet_usedfor_6b40cb4eeb (UsedFor playing_card playing_poker) (STV 1.0 0.9091)) +(: cnet_usedfor_a1031f6513 (UsedFor playing_chess being_competitive) (STV 1.0 0.9091)) +(: cnet_usedfor_3c2bbc7d75 (UsedFor playing_chess entertainment) (STV 1.0 0.9091)) +(: cnet_usedfor_a00e708c38 (UsedFor playing_chess exercising_mind) (STV 1.0 0.9091)) +(: cnet_usedfor_a97fe57781 (UsedFor playing_chess having_fun) (STV 1.0 0.9339)) +(: cnet_usedfor_355b54c6be (UsedFor playing_chess socializing) (STV 1.0 0.9339)) +(: cnet_usedfor_3aef9dd3a6 (UsedFor playing_football fun) (STV 1.0 0.9454)) +(: cnet_usedfor_3e99891155 (UsedFor playing_football having_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_ef1f41112b (UsedFor playing_football learning_teamwork) (STV 1.0 0.9091)) +(: cnet_usedfor_9e69a72f50 (UsedFor playing_football money) (STV 1.0 0.9091)) +(: cnet_usedfor_c92792abe9 (UsedFor playing_frisbee getting_exercise) (STV 1.0 0.9091)) +(: cnet_usedfor_27342c003d (UsedFor playing_frisbee playing_in_park) (STV 1.0 0.9339)) +(: cnet_usedfor_41de1d76b9 (UsedFor playing_game competition) (STV 1.0 0.9339)) +(: cnet_usedfor_4f09e17afc (UsedFor playing_game enjoyment) (STV 1.0 0.9339)) +(: cnet_usedfor_facb3723da (UsedFor playing_game entertainment) (STV 1.0 0.9091)) +(: cnet_usedfor_8c2c9a3afc (UsedFor playing_game fun) (STV 1.0 0.9091)) +(: cnet_usedfor_ded501093c (UsedFor playing_game learning) (STV 1.0 0.9091)) +(: cnet_usedfor_71e288a978 (UsedFor playing_game winning) (STV 1.0 0.9091)) +(: cnet_usedfor_ac340eedf7 (UsedFor playing_game_of_chess challenge) (STV 1.0 0.9454)) +(: cnet_usedfor_bbed0f48c5 (UsedFor playing_game_of_chess challenging) (STV 1.0 0.9091)) +(: cnet_usedfor_f90d69414e (UsedFor playing_game_of_chess fun) (STV 1.0 0.9339)) +(: cnet_usedfor_807b852e7e (UsedFor playing_game_of_chess mental_challenge) (STV 1.0 0.9091)) +(: cnet_usedfor_e69edfc7a0 (UsedFor playing_game_with_friend fun) (STV 1.0 0.9454)) +(: cnet_usedfor_90e2ef11c6 (UsedFor playing_game_with_friend relaxation) (STV 1.0 0.9091)) +(: cnet_usedfor_7e9e864f64 (UsedFor playing_game having_fun) (STV 1.0 0.9677)) +(: cnet_usedfor_b47e664e0f (UsedFor playing_game keeping_fit) (STV 1.0 0.9091)) +(: cnet_usedfor_2ab34b193f (UsedFor playing_guitar fun) (STV 1.0 0.9454)) +(: cnet_usedfor_e2b3b0b494 (UsedFor playing_guitar making_music) (STV 1.0 0.9091)) +(: cnet_usedfor_6a5195cf20 (UsedFor playing_harp angel) (STV 1.0 0.9091)) +(: cnet_usedfor_d70cbed2f9 (UsedFor playing_harp having_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_32fc99a76a (UsedFor playing_harp makeing_music) (STV 1.0 0.9091)) +(: cnet_usedfor_9c1fca833f (UsedFor playing_harp making_music) (STV 1.0 0.9091)) +(: cnet_usedfor_1b4a28da31 (UsedFor playing_hockey doing_sport) (STV 1.0 0.9091)) +(: cnet_usedfor_b31368c325 (UsedFor playing_hockey excercise) (STV 1.0 0.9091)) +(: cnet_usedfor_e8d3074edd (UsedFor playing_hockey exercise) (STV 1.0 0.9339)) +(: cnet_usedfor_6a133a8913 (UsedFor playing_hockey fun) (STV 1.0 0.9091)) +(: cnet_usedfor_7f224e7252 (UsedFor playing_hockey having_fun) (STV 1.0 0.9454)) +(: cnet_usedfor_75c37ad2fe (UsedFor playing_hockey sport) (STV 1.0 0.9091)) +(: cnet_usedfor_1309f2c86d (UsedFor playing_lacrosse after_school_activity) (STV 1.0 0.9091)) +(: cnet_usedfor_28db25c97e (UsedFor playing_lacrosse competition) (STV 1.0 0.9091)) +(: cnet_usedfor_3c7835357d (UsedFor playing_lacrosse feeling_competitive) (STV 1.0 0.9091)) +(: cnet_usedfor_9b771988da (UsedFor playing_lacrosse fun_and_exercise) (STV 1.0 0.9091)) +(: cnet_usedfor_067bfef7ab (UsedFor playing_lacrosse having_fun) (STV 1.0 0.9454)) +(: cnet_usedfor_a79261bb88 (UsedFor playing_piano entertaining_other) (STV 1.0 0.9091)) +(: cnet_usedfor_a06707c5df (UsedFor playing_piano having_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_7320624e14 (UsedFor playing_piano increasing_motor_skill) (STV 1.0 0.9091)) +(: cnet_usedfor_4d2e4034bb (UsedFor playing_poker betting) (STV 1.0 0.9091)) +(: cnet_usedfor_9db5bee659 (UsedFor playing_poker entertainment) (STV 1.0 0.9454)) +(: cnet_usedfor_75d35c84d5 (UsedFor playing_poker fun) (STV 1.0 0.9091)) +(: cnet_usedfor_98ed92f267 (UsedFor playing_sport athletic) (STV 1.0 0.9091)) +(: cnet_usedfor_b961ca2796 (UsedFor playing_sport competition) (STV 1.0 0.9608)) +(: cnet_usedfor_ba28b0acac (UsedFor playing_sport excercise) (STV 1.0 0.9636)) +(: cnet_usedfor_17bcd33cb2 (UsedFor playing_sport exercise) (STV 1.0 0.9454)) +(: cnet_usedfor_3bfa7a063d (UsedFor playing_sport fun) (STV 1.0 0.9339)) +(: cnet_usedfor_a885bd44cc (UsedFor playing_sport keeping_fit) (STV 1.0 0.9339)) +(: cnet_usedfor_c158a5b71c (UsedFor playing_sport recreation) (STV 1.0 0.9339)) +(: cnet_usedfor_d27282c944 (UsedFor playing_sport winning) (STV 1.0 0.9454)) +(: cnet_usedfor_49bcb58186 (UsedFor playing_sport enjoyment) (STV 1.0 0.9091)) +(: cnet_usedfor_ddc981ee4f (UsedFor playing_sport entertainment) (STV 1.0 0.9091)) +(: cnet_usedfor_ebf8ed9c99 (UsedFor playing_sport learning_teamwork) (STV 1.0 0.9091)) +(: cnet_usedfor_12296354c9 (UsedFor playing_tennis fun) (STV 1.0 0.9091)) +(: cnet_usedfor_9c09ed8d7e (UsedFor playing_tennis get_healthy) (STV 1.0 0.9091)) +(: cnet_usedfor_c326a1d9a6 (UsedFor playing_violin hobby) (STV 1.0 0.9091)) +(: cnet_usedfor_12cf51ae92 (UsedFor playing_violin making_music) (STV 1.0 0.9454)) +(: cnet_usedfor_b6b79cec9b (UsedFor playing_violin profession) (STV 1.0 0.9091)) +(: cnet_usedfor_ce0707d46d (UsedFor playroom children) (STV 1.0 0.9454)) +(: cnet_usedfor_d64164fe6a (UsedFor playroom having_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_924940f7da (UsedFor playroom storing_toy) (STV 1.0 0.9091)) +(: cnet_usedfor_de7da0d198 (UsedFor plumbing portability_of_water_and_waste) (STV 1.0 0.9091)) +(: cnet_usedfor_b78f45813e (UsedFor plumbing providing_drainage) (STV 1.0 0.9091)) +(: cnet_usedfor_29fb37bb25 (UsedFor plumbing providing_water) (STV 1.0 0.9091)) +(: cnet_usedfor_164ae03a89 (UsedFor pocket_notebook keeping_note) (STV 1.0 0.9339)) +(: cnet_usedfor_07a7640501 (UsedFor pocket_notebook take_note) (STV 1.0 0.9091)) +(: cnet_usedfor_49326f33db (UsedFor pocket_sized_notebook making_note) (STV 1.0 0.9091)) +(: cnet_usedfor_668d745942 (UsedFor poem tell_story) (STV 1.0 0.9091)) +(: cnet_usedfor_d3ffcdbfd6 (UsedFor poison kill) (STV 1.0 0.9091)) +(: cnet_usedfor_381624e727 (UsedFor poison kill_rat) (STV 1.0 0.9339)) +(: cnet_usedfor_7cc88017ff (UsedFor political_ideology people) (STV 1.0 0.9091)) +(: cnet_usedfor_d122917056 (UsedFor pond fish) (STV 1.0 0.9091)) +(: cnet_usedfor_bcd36ef435 (UsedFor pool add_interest_to_event) (STV 1.0 0.9091)) +(: cnet_usedfor_e34e9b0182 (UsedFor pool add_moisture_to_air) (STV 1.0 0.9091)) +(: cnet_usedfor_f9ef135d73 (UsedFor pool dive_in) (STV 1.0 0.9339)) +(: cnet_usedfor_bf10af9517 (UsedFor pool diving) (STV 1.0 0.9091)) +(: cnet_usedfor_9c9be860f9 (UsedFor pool do_flip) (STV 1.0 0.9091)) +(: cnet_usedfor_a98adf9a2c (UsedFor pool enjoy_yourself) (STV 1.0 0.9091)) +(: cnet_usedfor_71cce1fdef (UsedFor pool get_out_of_heat) (STV 1.0 0.9707)) +(: cnet_usedfor_05b64c6064 (UsedFor pool learn_to_swim) (STV 1.0 0.9091)) +(: cnet_usedfor_ffc979230a (UsedFor pool not_peeing_in) (STV 1.0 0.9091)) +(: cnet_usedfor_ac95f303c4 (UsedFor pool pee) (STV 1.0 0.9091)) +(: cnet_usedfor_f002fb48d6 (UsedFor pool swiming) (STV 1.0 0.9719)) +(: cnet_usedfor_e5fb555982 (UsedFor pool swimming) (STV 1.0 0.9719)) +(: cnet_usedfor_d1e34cbc7f (UsedFor pool swimming_in) (STV 1.0 0.9091)) +(: cnet_usedfor_5be50f01fc (UsedFor porch relaxing) (STV 1.0 0.9091)) +(: cnet_usedfor_272f69ee9f (UsedFor portable_shower_head take_shower) (STV 1.0 0.9091)) +(: cnet_usedfor_04c180887b (UsedFor post_office mail_letter) (STV 1.0 0.9091)) +(: cnet_usedfor_262df7c784 (UsedFor post_office mailing_letter) (STV 1.0 0.9524)) +(: cnet_usedfor_6215ef5028 (UsedFor post_office receive_letter) (STV 1.0 0.9091)) +(: cnet_usedfor_9b99546a3e (UsedFor post_office recieving_package) (STV 1.0 0.9091)) +(: cnet_usedfor_71a05fd8e1 (UsedFor post_office sending_letter) (STV 1.0 0.9454)) +(: cnet_usedfor_342d1de624 (UsedFor poster decorating_room) (STV 1.0 0.9091)) +(: cnet_usedfor_a4cc67bc2d (UsedFor posting_message communicating) (STV 1.0 0.9091)) +(: cnet_usedfor_787aed4872 (UsedFor pot grow_plant) (STV 1.0 0.9091)) +(: cnet_usedfor_6d7109635d (UsedFor pot holding_water_while_boiling) (STV 1.0 0.9091)) +(: cnet_usedfor_3350fec77c (UsedFor pot make_soup) (STV 1.0 0.9339)) +(: cnet_usedfor_fc77444ab3 (UsedFor pot pissing_in) (STV 1.0 0.9091)) +(: cnet_usedfor_06b08a0c1b (UsedFor pot planting_plant) (STV 1.0 0.9091)) +(: cnet_usedfor_2af6b89e24 (UsedFor pot storing_thing_in) (STV 1.0 0.9091)) +(: cnet_usedfor_be3e837239 (UsedFor pouch carrying_with) (STV 1.0 0.9339)) +(: cnet_usedfor_49b01f84c7 (UsedFor pouch holding) (STV 1.0 0.9091)) +(: cnet_usedfor_39f10c8794 (UsedFor pouch holding_very_small_item) (STV 1.0 0.9091)) +(: cnet_usedfor_0d368b505d (UsedFor powder_horn storing_gun_powder) (STV 1.0 0.9091)) +(: cnet_usedfor_a967a0c47d (UsedFor praying expressing_love) (STV 1.0 0.9091)) +(: cnet_usedfor_3a200ad8e4 (UsedFor praying talking_with_god) (STV 1.0 0.9339)) +(: cnet_usedfor_6c70120f41 (UsedFor president leading_country) (STV 1.0 0.9339)) +(: cnet_usedfor_723a5e1ad7 (UsedFor president running_country) (STV 1.0 0.9091)) +(: cnet_usedfor_3002c05955 (UsedFor pretending deception) (STV 1.0 0.9091)) +(: cnet_usedfor_ee03d8f30d (UsedFor pretending having_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_f93c53484a (UsedFor pretending using_imagination) (STV 1.0 0.9091)) +(: cnet_usedfor_e804c04838 (UsedFor printer printing_document) (STV 1.0 0.9091)) +(: cnet_usedfor_301515ce7e (UsedFor prison punishment) (STV 1.0 0.9091)) +(: cnet_usedfor_9ebfe12469 (UsedFor prison punish_criminal) (STV 1.0 0.9091)) +(: cnet_usedfor_e2d50871ad (UsedFor procreating having_child) (STV 1.0 0.9339)) +(: cnet_usedfor_1ea29a64a3 (UsedFor procreating making_baby) (STV 1.0 0.9091)) +(: cnet_usedfor_859c185a0f (UsedFor procreating making_more_people) (STV 1.0 0.9091)) +(: cnet_usedfor_d287ee3c76 (UsedFor procreating sex) (STV 1.0 0.9091)) +(: cnet_usedfor_85fa03c488 (UsedFor procreation survival_of_specy) (STV 1.0 0.9091)) +(: cnet_usedfor_b174867dc9 (UsedFor production_line assemble) (STV 1.0 0.9091)) +(: cnet_usedfor_86cd625d52 (UsedFor production_line produce) (STV 1.0 0.9091)) +(: cnet_usedfor_76c9d1e9c1 (UsedFor production_line product) (STV 1.0 0.9091)) +(: cnet_usedfor_f5c31c84eb (UsedFor programming_language command_computer) (STV 1.0 0.9091)) +(: cnet_usedfor_f3e67aac2a (UsedFor projectile throwing) (STV 1.0 0.9454)) +(: cnet_usedfor_37c290173a (UsedFor projectile hit) (STV 1.0 0.9091)) +(: cnet_usedfor_3b1619b236 (UsedFor projectile shoot) (STV 1.0 0.9091)) +(: cnet_usedfor_c76257df9a (UsedFor projectile strike) (STV 1.0 0.9091)) +(: cnet_usedfor_87a5359fa0 (UsedFor projectile_ball throw) (STV 1.0 0.9091)) +(: cnet_usedfor_d2a77e4f4c (UsedFor proposing_to_woman asking_to_marry) (STV 1.0 0.9454)) +(: cnet_usedfor_09aa2f140c (UsedFor proposing_to_woman getting_married) (STV 1.0 0.9091)) +(: cnet_usedfor_fe4de54631 (UsedFor proposing_to_woman mariage) (STV 1.0 0.9339)) +(: cnet_usedfor_7cdaa32ece (UsedFor proposing_to_woman marriage) (STV 1.0 0.9091)) +(: cnet_usedfor_eaa775f491 (UsedFor proposing_to_woman men_in_love) (STV 1.0 0.9091)) +(: cnet_usedfor_c0b1c62809 (UsedFor prosthesis practical_use) (STV 1.0 0.9091)) +(: cnet_usedfor_f44606e01c (UsedFor prosthesis replace_limb) (STV 1.0 0.9091)) +(: cnet_usedfor_89af50360d (UsedFor prosthesis replace_lost_limb) (STV 1.0 0.9091)) +(: cnet_usedfor_2639ceca5b (UsedFor prosthesis replacement_of_missing_limb) (STV 1.0 0.9339)) +(: cnet_usedfor_688fceeee2 (UsedFor prosthesis replacing_limb) (STV 1.0 0.9091)) +(: cnet_usedfor_8c2638b085 (UsedFor prosthesis replacing_missing_limb) (STV 1.0 0.9339)) +(: cnet_usedfor_e21826116b (UsedFor prostitute sex) (STV 1.0 0.9572)) +(: cnet_usedfor_670fc38432 (UsedFor pub buying_beer) (STV 1.0 0.9091)) +(: cnet_usedfor_0c2f3246d3 (UsedFor pub drinking) (STV 1.0 0.9339)) +(: cnet_usedfor_04078384d4 (UsedFor pub drinking_alcohol) (STV 1.0 0.9524)) +(: cnet_usedfor_19ccda689f (UsedFor pub drinking_beer) (STV 1.0 0.9636)) +(: cnet_usedfor_18ee5c8165 (UsedFor pub drinking_with_guy) (STV 1.0 0.9339)) +(: cnet_usedfor_38a9219cba (UsedFor pub english_bar) (STV 1.0 0.9091)) +(: cnet_usedfor_a1461de507 (UsedFor pub having_beer) (STV 1.0 0.9524)) +(: cnet_usedfor_67e98469b4 (UsedFor pub having_drink) (STV 1.0 0.9707)) +(: cnet_usedfor_c61525c87e (UsedFor pub meeting_friend) (STV 1.0 0.9091)) +(: cnet_usedfor_8a5d16d532 (UsedFor pub meeting_new_people) (STV 1.0 0.9091)) +(: cnet_usedfor_a5451772cb (UsedFor pub meeting_with_friend) (STV 1.0 0.9524)) +(: cnet_usedfor_af729612c0 (UsedFor pub playing_dart) (STV 1.0 0.9091)) +(: cnet_usedfor_1b48516aa2 (UsedFor pub seeing_mate) (STV 1.0 0.9339)) +(: cnet_usedfor_5cbea511e0 (UsedFor pub social_meeting_with_friend) (STV 1.0 0.9091)) +(: cnet_usedfor_3eae3a2750 (UsedFor pub socialising) (STV 1.0 0.9339)) +(: cnet_usedfor_6fc0427a17 (UsedFor pub socializing) (STV 1.0 0.9339)) +(: cnet_usedfor_105bef2558 (UsedFor pub talking_to_friend) (STV 1.0 0.9091)) +(: cnet_usedfor_d303d2955d (UsedFor puck playing_hockey) (STV 1.0 0.9524)) +(: cnet_usedfor_af73e1d606 (UsedFor pulpit bully) (STV 1.0 0.9091)) +(: cnet_usedfor_1cc68e4bf9 (UsedFor pulpit preach) (STV 1.0 0.9091)) +(: cnet_usedfor_1d6d2471fb (UsedFor pulpit preacher) (STV 1.0 0.9091)) +(: cnet_usedfor_4d1d894afc (UsedFor pulpit preaching) (STV 1.0 0.9636)) +(: cnet_usedfor_61ffd3a96d (UsedFor punching expressing_anger) (STV 1.0 0.9339)) +(: cnet_usedfor_343005f189 (UsedFor punching getting_revenge) (STV 1.0 0.9091)) +(: cnet_usedfor_841224979b (UsedFor punching hurting) (STV 1.0 0.9608)) +(: cnet_usedfor_429c92a221 (UsedFor punishing modifying_behavior) (STV 1.0 0.9091)) +(: cnet_usedfor_9e42dd4bdc (UsedFor punishing retribution) (STV 1.0 0.9339)) +(: cnet_usedfor_7720772834 (UsedFor punishing revenge) (STV 1.0 0.9524)) +(: cnet_usedfor_b441dfe453 (UsedFor punishing teaching) (STV 1.0 0.9454)) +(: cnet_usedfor_a40016c975 (UsedFor purchasing_cellular_phone staying_in_touch) (STV 1.0 0.9091)) +(: cnet_usedfor_951387d20c (UsedFor purse carry_money) (STV 1.0 0.9339)) +(: cnet_usedfor_83ed80fe6e (UsedFor purse carrying_money) (STV 1.0 0.9091)) +(: cnet_usedfor_d0a51b0961 (UsedFor push_button detonate) (STV 1.0 0.9091)) +(: cnet_usedfor_42dcc5e5d3 (UsedFor push_button operate) (STV 1.0 0.9091)) +(: cnet_usedfor_33547e3120 (UsedFor push_button trip) (STV 1.0 0.9091)) +(: cnet_usedfor_aafb5a1999 (UsedFor puzzle distraction) (STV 1.0 0.9339)) +(: cnet_usedfor_a3355f8872 (UsedFor puzzle engaging_mind) (STV 1.0 0.9339)) +(: cnet_usedfor_a34c833ae9 (UsedFor puzzle enjoying) (STV 1.0 0.9339)) +(: cnet_usedfor_c7af03e207 (UsedFor puzzle entertainment) (STV 1.0 0.9524)) +(: cnet_usedfor_2efdd4afbb (UsedFor puzzle killing_time) (STV 1.0 0.9339)) +(: cnet_usedfor_1dc5eb82ce (UsedFor puzzle mental_challenge) (STV 1.0 0.9572)) +(: cnet_usedfor_566f6cc5a2 (UsedFor puzzle mental_stimulation) (STV 1.0 0.9524)) +(: cnet_usedfor_b5f2e2ebfc (UsedFor puzzle solving) (STV 1.0 0.9091)) +(: cnet_usedfor_bb1d0a38be (UsedFor queen chess) (STV 1.0 0.9091)) +(: cnet_usedfor_d289b5aebd (UsedFor queen keeping_nation_in_peace) (STV 1.0 0.9091)) +(: cnet_usedfor_d482f5c825 (UsedFor queen play_chess) (STV 1.0 0.9091)) +(: cnet_usedfor_9daa8263f3 (UsedFor queen rule) (STV 1.0 0.9339)) +(: cnet_usedfor_c958db6d83 (UsedFor queen ruling_country) (STV 1.0 0.9524)) +(: cnet_usedfor_cb2d01e360 (UsedFor queuer lining_up) (STV 1.0 0.9091)) +(: cnet_usedfor_5019f5e353 (UsedFor quill holding_and_distributing_ink) (STV 1.0 0.9091)) +(: cnet_usedfor_269c03afc6 (UsedFor quill holding_ink) (STV 1.0 0.9091)) +(: cnet_usedfor_72a4a9de38 (UsedFor quill writing) (STV 1.0 0.9677)) +(: cnet_usedfor_14aba52f8b (UsedFor quill_brush painting) (STV 1.0 0.9091)) +(: cnet_usedfor_48876e3436 (UsedFor quill_brush write) (STV 1.0 0.9091)) +(: cnet_usedfor_e25674c6bf (UsedFor quill_brush writing) (STV 1.0 0.9454)) +(: cnet_usedfor_0f1ef2b070 (UsedFor quill_brush writing_with_ink) (STV 1.0 0.9091)) +(: cnet_usedfor_a85a426b09 (UsedFor radiator heat_room) (STV 1.0 0.9454)) +(: cnet_usedfor_d1943ef8ed (UsedFor radiator heating_room) (STV 1.0 0.9339)) +(: cnet_usedfor_4a84529468 (UsedFor radio hear_new) (STV 1.0 0.9339)) +(: cnet_usedfor_cb20333da1 (UsedFor radio listen_to_new) (STV 1.0 0.9572)) +(: cnet_usedfor_3595b2727b (UsedFor radio listening_new) (STV 1.0 0.9524)) +(: cnet_usedfor_74d0177b00 (UsedFor radio listening_to) (STV 1.0 0.9339)) +(: cnet_usedfor_fbc9c452ed (UsedFor radio listening_to_talk_show) (STV 1.0 0.9091)) +(: cnet_usedfor_b072d333ed (UsedFor radio_beam steer) (STV 1.0 0.9091)) +(: cnet_usedfor_1c9848f9b6 (UsedFor radio_studio broadcasting) (STV 1.0 0.9091)) +(: cnet_usedfor_0d10c580c3 (UsedFor radio_studio record_music) (STV 1.0 0.9339)) +(: cnet_usedfor_07cc94c072 (UsedFor rag cleaning) (STV 1.0 0.9091)) +(: cnet_usedfor_06cb30c6c9 (UsedFor railing guidance) (STV 1.0 0.9091)) +(: cnet_usedfor_8594ead286 (UsedFor railing protection) (STV 1.0 0.9091)) +(: cnet_usedfor_6d051c2e31 (UsedFor ranch breed_cattle) (STV 1.0 0.9091)) +(: cnet_usedfor_03e73a11d5 (UsedFor ranch cattle) (STV 1.0 0.9091)) +(: cnet_usedfor_11bfe0c482 (UsedFor ranch living_in) (STV 1.0 0.9091)) +(: cnet_usedfor_941d745bf1 (UsedFor ranch_house living_accomodation_on_ranch) (STV 1.0 0.9091)) +(: cnet_usedfor_709b3a0875 (UsedFor ranch_house living_in) (STV 1.0 0.9339)) +(: cnet_usedfor_7a1bd864f5 (UsedFor ranch_house people_to_live_in) (STV 1.0 0.9091)) +(: cnet_usedfor_80dc0e0da5 (UsedFor razor cut) (STV 1.0 0.9091)) +(: cnet_usedfor_bd528f8040 (UsedFor razor cutting) (STV 1.0 0.9091)) +(: cnet_usedfor_7a91726cd0 (UsedFor razor shave) (STV 1.0 0.9091)) +(: cnet_usedfor_6fdbc1fa0f (UsedFor razor shave_with) (STV 1.0 0.9693)) +(: cnet_usedfor_c180cca615 (UsedFor razor shaving) (STV 1.0 0.9454)) +(: cnet_usedfor_e74644269e (UsedFor reading acquiring_knowledge) (STV 1.0 0.9091)) +(: cnet_usedfor_786ab2c70d (UsedFor reading education) (STV 1.0 0.9339)) +(: cnet_usedfor_2f3cd01f4e (UsedFor reading enjoyment) (STV 1.0 0.9091)) +(: cnet_usedfor_74f5188b39 (UsedFor reading learning) (STV 1.0 0.9454)) +(: cnet_usedfor_bd10bf559b (UsedFor reading learning_new_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_252e00e682 (UsedFor reading passing_time) (STV 1.0 0.9091)) +(: cnet_usedfor_f8a7edf91a (UsedFor reading pleasure) (STV 1.0 0.9091)) +(: cnet_usedfor_ddbb037820 (UsedFor reading_book enjoyment) (STV 1.0 0.9091)) +(: cnet_usedfor_67b5ea7138 (UsedFor reading_book entertaining_yourself) (STV 1.0 0.9339)) +(: cnet_usedfor_3357c218a8 (UsedFor reading_book fun) (STV 1.0 0.9091)) +(: cnet_usedfor_60ebd226be (UsedFor reading_book relaxing) (STV 1.0 0.9091)) +(: cnet_usedfor_fd29e5e42f (UsedFor reading_letter obtaining_information) (STV 1.0 0.9091)) +(: cnet_usedfor_74f8a046d4 (UsedFor reading_magazine education) (STV 1.0 0.9091)) +(: cnet_usedfor_4aead13d65 (UsedFor reading_magazine entertainment) (STV 1.0 0.9339)) +(: cnet_usedfor_b79e84ef11 (UsedFor reading_magazine learning_new) (STV 1.0 0.9091)) +(: cnet_usedfor_f6e52553c8 (UsedFor reading_newspaper being_informed) (STV 1.0 0.9091)) +(: cnet_usedfor_8a7c608c2c (UsedFor reading_newspaper finding_out_current_event) (STV 1.0 0.9091)) +(: cnet_usedfor_e785264352 (UsedFor reading_newspaper killing_time) (STV 1.0 0.9339)) +(: cnet_usedfor_731874e51c (UsedFor reading_newspaper learning) (STV 1.0 0.9091)) +(: cnet_usedfor_6234ecf8bd (UsedFor reading_to_children educating) (STV 1.0 0.9659)) +(: cnet_usedfor_2f26a21990 (UsedFor reading_to_children education) (STV 1.0 0.9091)) +(: cnet_usedfor_94fdc15f31 (UsedFor reading_to_children enjoyment) (STV 1.0 0.9091)) +(: cnet_usedfor_da34bbf039 (UsedFor reading_to_children entertaining) (STV 1.0 0.9091)) +(: cnet_usedfor_2adede1d6e (UsedFor reading_to_children teaching) (STV 1.0 0.9454)) +(: cnet_usedfor_7a89636056 (UsedFor receiving_degree being_honored) (STV 1.0 0.9091)) +(: cnet_usedfor_876440ee5c (UsedFor receiving_degree graduate) (STV 1.0 0.9091)) +(: cnet_usedfor_5eb2ee748a (UsedFor receiving_degree making_more_money) (STV 1.0 0.9091)) +(: cnet_usedfor_af1ce4b43f (UsedFor receiving_degree student) (STV 1.0 0.9091)) +(: cnet_usedfor_d7a4b231ef (UsedFor reception celebrate) (STV 1.0 0.9524)) +(: cnet_usedfor_fe557a8759 (UsedFor reception_area meeting_people) (STV 1.0 0.9454)) +(: cnet_usedfor_abbe1ecc8f (UsedFor reception_desk answer_incoming_call) (STV 1.0 0.9091)) +(: cnet_usedfor_59389934fb (UsedFor record_library storing_record) (STV 1.0 0.9339)) +(: cnet_usedfor_e9e4b5e926 (UsedFor recording_somethign having_to_listen_to_later) (STV 1.0 0.9091)) +(: cnet_usedfor_c0923ef385 (UsedFor recording_somethign keeping_record) (STV 1.0 0.9091)) +(: cnet_usedfor_b6535d6c29 (UsedFor recording_somethign listening_to_later) (STV 1.0 0.9091)) +(: cnet_usedfor_29daa76281 (UsedFor recording_somethign saving_for_future) (STV 1.0 0.9454)) +(: cnet_usedfor_a1b81790eb (UsedFor refridgerator cool_can_of_cola) (STV 1.0 0.9091)) +(: cnet_usedfor_8a3df157ec (UsedFor refridgerator keeping_perishable_food_fresh) (STV 1.0 0.9091)) +(: cnet_usedfor_f5b230b1e8 (UsedFor refrigerator causing_jello_to_jell) (STV 1.0 0.9339)) +(: cnet_usedfor_940bda0859 (UsedFor refrigerator chilling_drink) (STV 1.0 0.9091)) +(: cnet_usedfor_c365fe2dcd (UsedFor refrigerator chilling_food) (STV 1.0 0.9091)) +(: cnet_usedfor_1483dd3f8e (UsedFor refrigerator extending_life_of_perishable) (STV 1.0 0.9091)) +(: cnet_usedfor_84867da865 (UsedFor refrigerator keep_food_cold) (STV 1.0 0.9091)) +(: cnet_usedfor_9a2a77131a (UsedFor refrigerator keeping_food_cold) (STV 1.0 0.9608)) +(: cnet_usedfor_61cf637b4d (UsedFor refrigerator keeping_food_from_spoiling) (STV 1.0 0.9524)) +(: cnet_usedfor_f7b084187d (UsedFor refrigerator keeping_meat_from_spoiling) (STV 1.0 0.9091)) +(: cnet_usedfor_2de365f5c9 (UsedFor refrigerator storing_food) (STV 1.0 0.9339)) +(: cnet_usedfor_b712b5f9d2 (UsedFor refrigerator_freezer keeping_food_longer) (STV 1.0 0.9091)) +(: cnet_usedfor_b11aabd0d8 (UsedFor refrigerator_freezer storing_food_for_long_period) (STV 1.0 0.9091)) +(: cnet_usedfor_7181e5d895 (UsedFor refuse landfill) (STV 1.0 0.9091)) +(: cnet_usedfor_66b0957a16 (UsedFor registry_office registering) (STV 1.0 0.9091)) +(: cnet_usedfor_f82ec5c369 (UsedFor relational_database_management_system manage_structured_data) (STV 1.0 0.9091)) +(: cnet_usedfor_f84190cd6e (UsedFor relaxing feeling_good) (STV 1.0 0.9091)) +(: cnet_usedfor_a117b4178a (UsedFor relaxing reducing_stress) (STV 1.0 0.9339)) +(: cnet_usedfor_554a76d465 (UsedFor releasing_energy working) (STV 1.0 0.9091)) +(: cnet_usedfor_484cd08144 (UsedFor remembering knowing) (STV 1.0 0.9339)) +(: cnet_usedfor_b42e9d3021 (UsedFor remembering love) (STV 1.0 0.9091)) +(: cnet_usedfor_67b8b37e32 (UsedFor remembering_phone_number keeping_in_touch) (STV 1.0 0.9091)) +(: cnet_usedfor_e4399d7334 (UsedFor remote_control change_channel) (STV 1.0 0.9091)) +(: cnet_usedfor_fc6e9d93aa (UsedFor remote_control control_device_from_distance) (STV 1.0 0.9091)) +(: cnet_usedfor_36703af1a5 (UsedFor rented_apartment live_in) (STV 1.0 0.9339)) +(: cnet_usedfor_acd5d1c2ca (UsedFor rented_apartment living_in) (STV 1.0 0.9339)) +(: cnet_usedfor_8cc7e797ab (UsedFor repairing_umbrella saving_money) (STV 1.0 0.9091)) +(: cnet_usedfor_d1b84aee00 (UsedFor repairing_umbrella staying_dry) (STV 1.0 0.9091)) +(: cnet_usedfor_5387e13a26 (UsedFor reproducing continuing_specy) (STV 1.0 0.9339)) +(: cnet_usedfor_7de3d70f35 (UsedFor reproducing distributing) (STV 1.0 0.9091)) +(: cnet_usedfor_499a510577 (UsedFor reproducing increasing_copy) (STV 1.0 0.9091)) +(: cnet_usedfor_ba008063d1 (UsedFor reproducing making_copy) (STV 1.0 0.9339)) +(: cnet_usedfor_655a51c67d (UsedFor restaurant eat_in) (STV 1.0 0.9091)) +(: cnet_usedfor_a2481963df (UsedFor restaurant eating) (STV 1.0 0.9091)) +(: cnet_usedfor_f5c0732cf1 (UsedFor restaurant eating_out) (STV 1.0 0.9693)) +(: cnet_usedfor_11c8d124f7 (UsedFor restaurant_bill paying_for_meal) (STV 1.0 0.9339)) +(: cnet_usedfor_a9ee7eeff1 (UsedFor restaurant_dining_area eating) (STV 1.0 0.9091)) +(: cnet_usedfor_4a3a6b1b86 (UsedFor restaurant_storage_area store_food) (STV 1.0 0.9091)) +(: cnet_usedfor_69267239e5 (UsedFor restaurant_table dining) (STV 1.0 0.9091)) +(: cnet_usedfor_dd5a40e85c (UsedFor restaurant_table eating_at) (STV 1.0 0.9608)) +(: cnet_usedfor_a4a338a930 (UsedFor resting being_refreshed) (STV 1.0 0.9091)) +(: cnet_usedfor_38134edc76 (UsedFor resting dream) (STV 1.0 0.9091)) +(: cnet_usedfor_661a283106 (UsedFor resting regaining_energy) (STV 1.0 0.9572)) +(: cnet_usedfor_f6bfed7629 (UsedFor resting rejuvenation) (STV 1.0 0.9091)) +(: cnet_usedfor_52c8025d6c (UsedFor resting relaxing) (STV 1.0 0.9454)) +(: cnet_usedfor_f677a7cfb7 (UsedFor resting taking_nap) (STV 1.0 0.9091)) +(: cnet_usedfor_bdc3ee3b34 (UsedFor return_ticket get_home) (STV 1.0 0.9091)) +(: cnet_usedfor_aa73575732 (UsedFor return_ticket go_back_home) (STV 1.0 0.9091)) +(: cnet_usedfor_6b82eed797 (UsedFor return_ticket going_home) (STV 1.0 0.9091)) +(: cnet_usedfor_7ab8aa91a9 (UsedFor returning_to_work earning_more_money) (STV 1.0 0.9091)) +(: cnet_usedfor_12b2355568 (UsedFor revolver killing_thingss) (STV 1.0 0.9091)) +(: cnet_usedfor_714616db27 (UsedFor revolver shoot_at_target) (STV 1.0 0.9091)) +(: cnet_usedfor_84e1a4c729 (UsedFor revolver shoot_bullet) (STV 1.0 0.9091)) +(: cnet_usedfor_e44b9ea5bf (UsedFor revolver shoot_person) (STV 1.0 0.9091)) +(: cnet_usedfor_f8e9452425 (UsedFor revolving_door entering_building) (STV 1.0 0.9454)) +(: cnet_usedfor_e4802e988d (UsedFor ribbon making_bow) (STV 1.0 0.9339)) +(: cnet_usedfor_99f4cf1a85 (UsedFor ribbon tying_bow) (STV 1.0 0.9091)) +(: cnet_usedfor_fcc59d4dd3 (UsedFor ribbon tying_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_8b1a06af74 (UsedFor ribbon wrapping_present) (STV 1.0 0.9091)) +(: cnet_usedfor_7fa2a628a7 (UsedFor riding_bicycle competition) (STV 1.0 0.9454)) +(: cnet_usedfor_931bb82a67 (UsedFor riding_bicycle excercise) (STV 1.0 0.9608)) +(: cnet_usedfor_a3f39b927d (UsedFor riding_bicycle exercise) (STV 1.0 0.9572)) +(: cnet_usedfor_8d9b818e46 (UsedFor riding_bicycle health) (STV 1.0 0.9454)) +(: cnet_usedfor_1087865e65 (UsedFor riding_bicycle sport) (STV 1.0 0.9339)) +(: cnet_usedfor_180c68b915 (UsedFor riding_bicycle transportation) (STV 1.0 0.9454)) +(: cnet_usedfor_356a3f071c (UsedFor riding_bike exercise) (STV 1.0 0.9091)) +(: cnet_usedfor_29d7a7d0e5 (UsedFor riding_bike having_fun) (STV 1.0 0.9339)) +(: cnet_usedfor_3dd049e46a (UsedFor riding_bike kid) (STV 1.0 0.9091)) +(: cnet_usedfor_c9dce3ea41 (UsedFor riding_bike transportation) (STV 1.0 0.9091)) +(: cnet_usedfor_bd28c114d1 (UsedFor riding_horse cowboy) (STV 1.0 0.9091)) +(: cnet_usedfor_94b667f410 (UsedFor riding_horse having_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_ed46467ef4 (UsedFor rifle hunt) (STV 1.0 0.9339)) +(: cnet_usedfor_ec062ca2a3 (UsedFor rifle hunting) (STV 1.0 0.9091)) +(: cnet_usedfor_d4d97dd3cf (UsedFor rifle kill_thing) (STV 1.0 0.9454)) +(: cnet_usedfor_bbe4df0330 (UsedFor rifle killing) (STV 1.0 0.9091)) +(: cnet_usedfor_f2368f510b (UsedFor rifle murder) (STV 1.0 0.9091)) +(: cnet_usedfor_5e5e75bb21 (UsedFor rifle shoot_animal) (STV 1.0 0.9091)) +(: cnet_usedfor_9f2f0027df (UsedFor rifle shoot_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_9df30127c8 (UsedFor rifle shooting) (STV 1.0 0.9608)) +(: cnet_usedfor_6058ec3dc8 (UsedFor rifle shooting_deer) (STV 1.0 0.9339)) +(: cnet_usedfor_aaaa8267dc (UsedFor rifle target_practice) (STV 1.0 0.9339)) +(: cnet_usedfor_02c40b9650 (UsedFor ring decoration) (STV 1.0 0.9091)) +(: cnet_usedfor_262392091e (UsedFor ring engage) (STV 1.0 0.9091)) +(: cnet_usedfor_49dc932a4a (UsedFor ring wearing) (STV 1.0 0.9339)) +(: cnet_usedfor_6e32f372c2 (UsedFor ring_binder holding_paper) (STV 1.0 0.9339)) +(: cnet_usedfor_57ae657eea (UsedFor ring_binder storing_document) (STV 1.0 0.9091)) +(: cnet_usedfor_4c272f1643 (UsedFor river fishing) (STV 1.0 0.9524)) +(: cnet_usedfor_b5c115bd91 (UsedFor river swimming) (STV 1.0 0.9524)) +(: cnet_usedfor_dea51dabf7 (UsedFor river transportation_of_good) (STV 1.0 0.9339)) +(: cnet_usedfor_2ebba58582 (UsedFor road traveler) (STV 1.0 0.9454)) +(: cnet_usedfor_b84bc0e73c (UsedFor robot build_car) (STV 1.0 0.9091)) +(: cnet_usedfor_b82177756f (UsedFor rocking_chair relax) (STV 1.0 0.9454)) +(: cnet_usedfor_7f523e2cf2 (UsedFor rocking_chair relax_in) (STV 1.0 0.9091)) +(: cnet_usedfor_c373ee228e (UsedFor rocking_chair rock_baby_to_sleep) (STV 1.0 0.9339)) +(: cnet_usedfor_8c75bd1f7d (UsedFor rocking_chair sitting_down_on) (STV 1.0 0.9339)) +(: cnet_usedfor_d00d34196d (UsedFor rocking_chair sitting_in) (STV 1.0 0.9339)) +(: cnet_usedfor_6a986abfaf (UsedFor rod catch_fish) (STV 1.0 0.9339)) +(: cnet_usedfor_55264c69f7 (UsedFor roof keeping_rain_off) (STV 1.0 0.9091)) +(: cnet_usedfor_49c9511de5 (UsedFor roof protection_from_element) (STV 1.0 0.9339)) +(: cnet_usedfor_53fdb1a3b3 (UsedFor rook playing_chess) (STV 1.0 0.9572)) +(: cnet_usedfor_987e9daef9 (UsedFor rook protecting_king) (STV 1.0 0.9339)) +(: cnet_usedfor_edaeae74dd (UsedFor room sleep) (STV 1.0 0.9091)) +(: cnet_usedfor_06c2b49a0f (UsedFor room store_item) (STV 1.0 0.9091)) +(: cnet_usedfor_db8466103c (UsedFor rope tying_thing) (STV 1.0 0.9339)) +(: cnet_usedfor_9b62f3a69f (UsedFor rope tie_thing) (STV 1.0 0.9454)) +(: cnet_usedfor_36dd2475b8 (UsedFor rotary_file storing_information) (STV 1.0 0.9091)) +(: cnet_usedfor_51ae9cea44 (UsedFor round_trip_ticket travel) (STV 1.0 0.9572)) +(: cnet_usedfor_628a4d9f8f (UsedFor row_house live_in) (STV 1.0 0.9091)) +(: cnet_usedfor_7054f3f6ec (UsedFor row_house live_in_city) (STV 1.0 0.9339)) +(: cnet_usedfor_2595d3e61e (UsedFor rowboat rowing) (STV 1.0 0.9091)) +(: cnet_usedfor_9f28b52be3 (UsedFor rubber preventing_pregnancy) (STV 1.0 0.9091)) +(: cnet_usedfor_7c226affca (UsedFor rubber_duck fun) (STV 1.0 0.9091)) +(: cnet_usedfor_a56404e0d3 (UsedFor rubber_stamp mark) (STV 1.0 0.9339)) +(: cnet_usedfor_26c6177136 (UsedFor rug cover_floor) (STV 1.0 0.9339)) +(: cnet_usedfor_b1a313639f (UsedFor rug decoration) (STV 1.0 0.9339)) +(: cnet_usedfor_b39780d3d5 (UsedFor rug floor_covering) (STV 1.0 0.9572)) +(: cnet_usedfor_2d98fb3c13 (UsedFor rug warmth) (STV 1.0 0.9339)) +(: cnet_usedfor_270cc6c82b (UsedFor rug carpet) (STV 1.0 0.9091)) +(: cnet_usedfor_c541cdd3cc (UsedFor rug cover) (STV 1.0 0.9091)) +(: cnet_usedfor_85374bab74 (UsedFor rug insulate) (STV 1.0 0.9091)) +(: cnet_usedfor_749709337a (UsedFor ruler measuring) (STV 1.0 0.9091)) +(: cnet_usedfor_f7dbf23cc6 (UsedFor running excercise) (STV 1.0 0.9091)) +(: cnet_usedfor_2275162db3 (UsedFor running fun) (STV 1.0 0.9091)) +(: cnet_usedfor_51a9b7ed67 (UsedFor running_after_ball catching) (STV 1.0 0.9091)) +(: cnet_usedfor_a6569bcf57 (UsedFor running_after_ball catching_ball) (STV 1.0 0.9091)) +(: cnet_usedfor_b707f3981b (UsedFor running_after_ball didn_t_catch) (STV 1.0 0.9339)) +(: cnet_usedfor_267e3666e9 (UsedFor running_after_ball fun) (STV 1.0 0.9091)) +(: cnet_usedfor_a144801312 (UsedFor running_in_marathon accomplishment) (STV 1.0 0.9091)) +(: cnet_usedfor_5e2e9d6736 (UsedFor running_in_marathon athlete) (STV 1.0 0.9091)) +(: cnet_usedfor_2e44f1c031 (UsedFor running_in_marathon challenging_yourself) (STV 1.0 0.9091)) +(: cnet_usedfor_db65a6ba0e (UsedFor running_in_marathon exercise) (STV 1.0 0.9524)) +(: cnet_usedfor_80900ffc2a (UsedFor running_in_marathon having_fun) (STV 1.0 0.9454)) +(: cnet_usedfor_3a3e74daa5 (UsedFor running_in_marathon health) (STV 1.0 0.9091)) +(: cnet_usedfor_7c25f64585 (UsedFor running_marathon challenging_yourself) (STV 1.0 0.9454)) +(: cnet_usedfor_2b6c6cdaf2 (UsedFor running_marathon endurance) (STV 1.0 0.9091)) +(: cnet_usedfor_558e54ecea (UsedFor running_marathon getting_in_shape) (STV 1.0 0.9091)) +(: cnet_usedfor_aeeed67ab2 (UsedFor running_out_of_steam losing_energy) (STV 1.0 0.9091)) +(: cnet_usedfor_aee56e078e (UsedFor running_twenty_six_mile marathon) (STV 1.0 0.9091)) +(: cnet_usedfor_f8fa4cc6af (UsedFor running_twenty_six_mile marathon_runner) (STV 1.0 0.9091)) +(: cnet_usedfor_b1c7a4e4ca (UsedFor running_twenty_six_mile marathoner) (STV 1.0 0.9339)) +(: cnet_usedfor_4c33fb796d (UsedFor runway beauty_contest) (STV 1.0 0.9091)) +(: cnet_usedfor_e25f289089 (UsedFor runway land_space_shuttle) (STV 1.0 0.9091)) +(: cnet_usedfor_f5fed5c29a (UsedFor runway landing_airplane) (STV 1.0 0.9339)) +(: cnet_usedfor_3215119cd4 (UsedFor runway landing_plane) (STV 1.0 0.9339)) +(: cnet_usedfor_110b967f07 (UsedFor runway plane_to_takeoff_from) (STV 1.0 0.9091)) +(: cnet_usedfor_04e62d6e23 (UsedFor saddle ride) (STV 1.0 0.9091)) +(: cnet_usedfor_7ee287ed59 (UsedFor saddle riding_donkey) (STV 1.0 0.9091)) +(: cnet_usedfor_2d60a107da (UsedFor saddle riding_horse) (STV 1.0 0.9454)) +(: cnet_usedfor_9b7a31628f (UsedFor saddle riding_hors) (STV 1.0 0.9693)) +(: cnet_usedfor_270639af0e (UsedFor safety_pin holding_fabric_together) (STV 1.0 0.9339)) +(: cnet_usedfor_c59a40a995 (UsedFor salad_bowl contain_salad) (STV 1.0 0.9091)) +(: cnet_usedfor_2cc25f1f30 (UsedFor salad_bowl eat_salad_from) (STV 1.0 0.9339)) +(: cnet_usedfor_305c9a849b (UsedFor salad_bowl serving_salad) (STV 1.0 0.9572)) +(: cnet_usedfor_7147193923 (UsedFor salad_shaker shake_salad) (STV 1.0 0.9339)) +(: cnet_usedfor_b3830fbfc3 (UsedFor salad_spinner make_salad) (STV 1.0 0.9091)) +(: cnet_usedfor_3939713f0a (UsedFor sale getting_rid_of_item) (STV 1.0 0.9091)) +(: cnet_usedfor_5fd999f8a6 (UsedFor salon hair_cutting) (STV 1.0 0.9091)) +(: cnet_usedfor_b8a59c1f94 (UsedFor saloon beer) (STV 1.0 0.9091)) +(: cnet_usedfor_6cad1a836e (UsedFor saloon drinking) (STV 1.0 0.9524)) +(: cnet_usedfor_e4ca95a0a5 (UsedFor salt curing_meat) (STV 1.0 0.9091)) +(: cnet_usedfor_213ba06e37 (UsedFor salt flavouring_food) (STV 1.0 0.9091)) +(: cnet_usedfor_fef16b4148 (UsedFor salt kill_slug) (STV 1.0 0.9091)) +(: cnet_usedfor_466af5af72 (UsedFor salt melt_ice) (STV 1.0 0.9608)) +(: cnet_usedfor_d4f0b73905 (UsedFor salt poison_field) (STV 1.0 0.9091)) +(: cnet_usedfor_60244dce9d (UsedFor salt preserving_food) (STV 1.0 0.9091)) +(: cnet_usedfor_106a1354fa (UsedFor salt season_food) (STV 1.0 0.9454)) +(: cnet_usedfor_e46f4a6877 (UsedFor salt seasoning) (STV 1.0 0.9339)) +(: cnet_usedfor_92ab8af109 (UsedFor salt seasoning_food) (STV 1.0 0.9339)) +(: cnet_usedfor_8491d84cb9 (UsedFor salt soften_water) (STV 1.0 0.9091)) +(: cnet_usedfor_e0cfaf7086 (UsedFor saltshaker distributing_salt) (STV 1.0 0.9091)) +(: cnet_usedfor_c8895cddd6 (UsedFor saltshaker salting_food) (STV 1.0 0.9339)) +(: cnet_usedfor_e7d0c2c9d0 (UsedFor sand make_glass) (STV 1.0 0.9091)) +(: cnet_usedfor_57dbeb5218 (UsedFor satchel_bag carry_item) (STV 1.0 0.9091)) +(: cnet_usedfor_fca7e4d3f4 (UsedFor satchel_bag carry_thing_in) (STV 1.0 0.9339)) +(: cnet_usedfor_d6a96f79f2 (UsedFor satelite communication) (STV 1.0 0.9091)) +(: cnet_usedfor_aeee8821f2 (UsedFor satisfying_appetite_with_minimum_effort conserving_energy) (STV 1.0 0.9091)) +(: cnet_usedfor_447c9a5e96 (UsedFor sativa cerebral_uppity_high) (STV 1.0 0.9091)) +(: cnet_usedfor_df473a7868 (UsedFor saucepan boil_egg) (STV 1.0 0.9091)) +(: cnet_usedfor_69a5d94874 (UsedFor saucepan heat_food) (STV 1.0 0.9091)) +(: cnet_usedfor_e0fbd744b9 (UsedFor saucer holding_spill_from_cup) (STV 1.0 0.9091)) +(: cnet_usedfor_0f5e6492d4 (UsedFor saw cut_lumber) (STV 1.0 0.9091)) +(: cnet_usedfor_f770abae4f (UsedFor saw cut_wood) (STV 1.0 0.9091)) +(: cnet_usedfor_a1396224f9 (UsedFor saw cutting) (STV 1.0 0.9091)) +(: cnet_usedfor_bf0f735bb3 (UsedFor saw cutting_thing_such_as_wood) (STV 1.0 0.9677)) +(: cnet_usedfor_60b0a0b35d (UsedFor saw cutting_wood) (STV 1.0 0.9608)) +(: cnet_usedfor_2807ffe5b7 (UsedFor saw sawing) (STV 1.0 0.9091)) +(: cnet_usedfor_d90b976884 (UsedFor saxophone blowing) (STV 1.0 0.9091)) +(: cnet_usedfor_d3ce32616c (UsedFor saxophone play_jazz) (STV 1.0 0.9339)) +(: cnet_usedfor_91ef1d30be (UsedFor scale determining_weight) (STV 1.0 0.9339)) +(: cnet_usedfor_606b3c0a0f (UsedFor scale measure_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_53c4746fdb (UsedFor scale measure_weight) (STV 1.0 0.9339)) +(: cnet_usedfor_aa7c206588 (UsedFor scale measuring_weight) (STV 1.0 0.9339)) +(: cnet_usedfor_5e1f4782c0 (UsedFor scale weigh_object) (STV 1.0 0.9339)) +(: cnet_usedfor_ae1affb4fc (UsedFor scale weigh_people_or_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_1243be7489 (UsedFor scale weighing_item) (STV 1.0 0.9091)) +(: cnet_usedfor_2c11f644ee (UsedFor scalpel cutting) (STV 1.0 0.9339)) +(: cnet_usedfor_7f62ea9fd2 (UsedFor scenery enhancing_sale_value) (STV 1.0 0.9091)) +(: cnet_usedfor_75c019b3c2 (UsedFor school learning) (STV 1.0 0.9719)) +(: cnet_usedfor_9d61ab9107 (UsedFor school producing_educated_people) (STV 1.0 0.9339)) +(: cnet_usedfor_7e7f67ec3b (UsedFor school studying) (STV 1.0 0.9091)) +(: cnet_usedfor_5540827aed (UsedFor school teaching_student) (STV 1.0 0.9454)) +(: cnet_usedfor_212ebbfda5 (UsedFor school_cafeteria eating) (STV 1.0 0.9091)) +(: cnet_usedfor_ae7dfcef24 (UsedFor school_cafeteria eating_lunch) (STV 1.0 0.9454)) +(: cnet_usedfor_0365be4390 (UsedFor school_cafeteria feeding_school_children) (STV 1.0 0.9339)) +(: cnet_usedfor_56972901b6 (UsedFor school_cafeteria feeding_schoolchildren) (STV 1.0 0.9339)) +(: cnet_usedfor_8be73e78cc (UsedFor science discovery) (STV 1.0 0.9091)) +(: cnet_usedfor_83629f609f (UsedFor science find_out_truth) (STV 1.0 0.9091)) +(: cnet_usedfor_b601855fa4 (UsedFor science learn_more_about_nature) (STV 1.0 0.9454)) +(: cnet_usedfor_5cb2e64d9e (UsedFor scissor cut) (STV 1.0 0.9659)) +(: cnet_usedfor_7dc204a992 (UsedFor scoring_home_run baseball_player) (STV 1.0 0.9091)) +(: cnet_usedfor_29a76d74cb (UsedFor scoring_home_run success) (STV 1.0 0.9091)) +(: cnet_usedfor_609b75d4ea (UsedFor scoring_homer baseball_game) (STV 1.0 0.9339)) +(: cnet_usedfor_35631ceb8b (UsedFor scoring_homer helping_team) (STV 1.0 0.9091)) +(: cnet_usedfor_4f9deb8919 (UsedFor scoring_homer winning_game) (STV 1.0 0.9339)) +(: cnet_usedfor_6182e65306 (UsedFor screw holding_together) (STV 1.0 0.9091)) +(: cnet_usedfor_0902d82e07 (UsedFor screwdriver inserting_screw) (STV 1.0 0.9339)) +(: cnet_usedfor_29ec25e6fe (UsedFor screwdriver tighten_loose_screw) (STV 1.0 0.9091)) +(: cnet_usedfor_454091b50f (UsedFor screwdriver tighten_screw) (STV 1.0 0.9339)) +(: cnet_usedfor_bc5a32cc8d (UsedFor screwdriver unscrewing_screw) (STV 1.0 0.9091)) +(: cnet_usedfor_5d0172b2f7 (UsedFor sculpting_gel style_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_ea6f020dc7 (UsedFor sculpting_gel styling_hair) (STV 1.0 0.9339)) +(: cnet_usedfor_9796081eb5 (UsedFor sea sailing) (STV 1.0 0.9091)) +(: cnet_usedfor_8f12c22f24 (UsedFor sea sailing_boat_in) (STV 1.0 0.9091)) +(: cnet_usedfor_9f6b6e00f6 (UsedFor sea sailing_on) (STV 1.0 0.9454)) +(: cnet_usedfor_3e0d09ea14 (UsedFor sea swim_in) (STV 1.0 0.9339)) +(: cnet_usedfor_7397a6a0d4 (UsedFor seafood_restaurant eating) (STV 1.0 0.9091)) +(: cnet_usedfor_577e4d60c1 (UsedFor seafood_restaurant eating_lobster) (STV 1.0 0.9524)) +(: cnet_usedfor_6ff24f60fb (UsedFor seafood_restaurant eating_seafood) (STV 1.0 0.9454)) +(: cnet_usedfor_83cef1f92c (UsedFor seafood_restaurant serving_fish) (STV 1.0 0.9454)) +(: cnet_usedfor_1d2565d907 (UsedFor seafood_restaurant serving_seafood) (STV 1.0 0.9339)) +(: cnet_usedfor_67cbd10344 (UsedFor seat relax) (STV 1.0 0.9091)) +(: cnet_usedfor_43840e4394 (UsedFor second_violin playing_music) (STV 1.0 0.9091)) +(: cnet_usedfor_af85cd3d99 (UsedFor seeing_art appreciation) (STV 1.0 0.9091)) +(: cnet_usedfor_1cf8026f4b (UsedFor seeing_art education) (STV 1.0 0.9572)) +(: cnet_usedfor_eb22fce901 (UsedFor seeing_art enjoyment) (STV 1.0 0.9091)) +(: cnet_usedfor_3a8657cbb4 (UsedFor seeing_art entertainment) (STV 1.0 0.9091)) +(: cnet_usedfor_bd703c1b8a (UsedFor seeing_art geek) (STV 1.0 0.9091)) +(: cnet_usedfor_422a3c5043 (UsedFor seeing_art relaxation) (STV 1.0 0.9091)) +(: cnet_usedfor_70d2a4c2c4 (UsedFor seeing_artifact learning_about_past) (STV 1.0 0.9454)) +(: cnet_usedfor_74dc126d60 (UsedFor seeing_band being_entertained) (STV 1.0 0.9339)) +(: cnet_usedfor_f4abcc28a1 (UsedFor seeing_band enjoying_music) (STV 1.0 0.9339)) +(: cnet_usedfor_cf39d7cd2c (UsedFor seeing_band enjoyment) (STV 1.0 0.9339)) +(: cnet_usedfor_7c3e36222a (UsedFor seeing_band excitement) (STV 1.0 0.9091)) +(: cnet_usedfor_b8b6f5fd96 (UsedFor seeing_band having_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_316f509616 (UsedFor seeing_band hearing_music) (STV 1.0 0.9339)) +(: cnet_usedfor_2fc6e553d9 (UsedFor seeing_band listen_to_music) (STV 1.0 0.9454)) +(: cnet_usedfor_936f1c50dc (UsedFor seeing_band listening_to_music) (STV 1.0 0.9091)) +(: cnet_usedfor_0c5df1727e (UsedFor seeing_band seeing_performer) (STV 1.0 0.9091)) +(: cnet_usedfor_41fdb515b3 (UsedFor seeing_exciting_story entertainment) (STV 1.0 0.9339)) +(: cnet_usedfor_0314c468d0 (UsedFor seeing_exciting_story having_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_bcf4408cac (UsedFor seeing_exciting_story passing_time) (STV 1.0 0.9091)) +(: cnet_usedfor_2da163a785 (UsedFor seeing_exhibit museum_visitor) (STV 1.0 0.9091)) +(: cnet_usedfor_ab80db2dbd (UsedFor seeing_favorite_show enjoyment) (STV 1.0 0.9339)) +(: cnet_usedfor_b2ea859cc9 (UsedFor seeing_favorite_show hell_of) (STV 1.0 0.9091)) +(: cnet_usedfor_be96daa7de (UsedFor seeing_favorite_show relaxing) (STV 1.0 0.9091)) +(: cnet_usedfor_f2db7b5d05 (UsedFor seeing_movie being_entertained) (STV 1.0 0.9339)) +(: cnet_usedfor_91c6ff5a1e (UsedFor seeing_movie entertainment) (STV 1.0 0.9091)) +(: cnet_usedfor_f318359ade (UsedFor seeing_movie relaxing) (STV 1.0 0.9091)) +(: cnet_usedfor_0ee15df82d (UsedFor seeing_old_thing bringing_back_memory) (STV 1.0 0.9091)) +(: cnet_usedfor_d2713ce38d (UsedFor seeing_old_thing learning_about_history) (STV 1.0 0.9091)) +(: cnet_usedfor_4e8186ddea (UsedFor seeing_old_thing remembering_past) (STV 1.0 0.9091)) +(: cnet_usedfor_68369b38f9 (UsedFor seeing_people_play_game entertaining) (STV 1.0 0.9339)) +(: cnet_usedfor_93ee77a180 (UsedFor seeing_people_play_game fun) (STV 1.0 0.9091)) +(: cnet_usedfor_8b098bb57b (UsedFor seeing_people_play_game having_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_8a42de6948 (UsedFor segway transportation) (STV 1.0 0.9091)) +(: cnet_usedfor_057a1cccff (UsedFor self_adhesive_label labeling) (STV 1.0 0.9339)) +(: cnet_usedfor_26955cf60c (UsedFor self_adhesive_label stick_to) (STV 1.0 0.9454)) +(: cnet_usedfor_dd7729dcdc (UsedFor self_adhesive_label sticking_on_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_cf25623205 (UsedFor self_adhesive_label sticking_to_thing) (STV 1.0 0.9454)) +(: cnet_usedfor_c2cdfc6f81 (UsedFor semen making_baby) (STV 1.0 0.9091)) +(: cnet_usedfor_740937ac2a (UsedFor sending_criminal_to_prison preventing_future_crime) (STV 1.0 0.9091)) +(: cnet_usedfor_463542290b (UsedFor sending_criminal_to_prison protecting_society) (STV 1.0 0.9091)) +(: cnet_usedfor_d014f5e4b1 (UsedFor sending_criminal_to_prison punishing_criminal) (STV 1.0 0.9091)) +(: cnet_usedfor_df68eeabee (UsedFor sending_criminal_to_prison punishment) (STV 1.0 0.9454)) +(: cnet_usedfor_233956831d (UsedFor sending_e_mail communicating_quickly) (STV 1.0 0.9091)) +(: cnet_usedfor_92c6a431d5 (UsedFor sending_e_mail communication) (STV 1.0 0.9454)) +(: cnet_usedfor_95c28075c0 (UsedFor sending_e_mail fun) (STV 1.0 0.9091)) +(: cnet_usedfor_f635f0e843 (UsedFor sending_e_mail staying_in_touch) (STV 1.0 0.9339)) +(: cnet_usedfor_1ff5c4c868 (UsedFor separate_shower privacy) (STV 1.0 0.9091)) +(: cnet_usedfor_008b0888f1 (UsedFor service_counter information) (STV 1.0 0.9339)) +(: cnet_usedfor_8423401cd3 (UsedFor serving_customer waitress) (STV 1.0 0.9091)) +(: cnet_usedfor_319d362df3 (UsedFor serving_justice police) (STV 1.0 0.9091)) +(: cnet_usedfor_cc5bd0543c (UsedFor serving_trolley serve_food) (STV 1.0 0.9091)) +(: cnet_usedfor_2b4c03a86e (UsedFor serving_trolley transporting_food) (STV 1.0 0.9091)) +(: cnet_usedfor_45edacf577 (UsedFor sesame make_sauce) (STV 1.0 0.9091)) +(: cnet_usedfor_91afe0a550 (UsedFor setting_cup_on_table convenience) (STV 1.0 0.9091)) +(: cnet_usedfor_d840e3e180 (UsedFor setting_cup_on_table freeing_hand) (STV 1.0 0.9091)) +(: cnet_usedfor_67ef962eda (UsedFor setting_cup_on_table having_hand_free) (STV 1.0 0.9339)) +(: cnet_usedfor_08db8993a0 (UsedFor sewing connecting_cloth) (STV 1.0 0.9091)) +(: cnet_usedfor_e8ed441b2e (UsedFor sewing fixing_clothe) (STV 1.0 0.9339)) +(: cnet_usedfor_c5b45076dc (UsedFor sewing making_clothe) (STV 1.0 0.9091)) +(: cnet_usedfor_a538a8b1fd (UsedFor sewing making_clothing) (STV 1.0 0.9339)) +(: cnet_usedfor_273f27e23b (UsedFor sewing mending_clothing) (STV 1.0 0.9091)) +(: cnet_usedfor_2e59346c8e (UsedFor sewing repair_of_clothing) (STV 1.0 0.9091)) +(: cnet_usedfor_2c3584e9ff (UsedFor sex making_baby) (STV 1.0 0.9454)) +(: cnet_usedfor_f687665bd8 (UsedFor sex procreation) (STV 1.0 0.9524)) +(: cnet_usedfor_a52fd4bf42 (UsedFor shade blocking_sunlight) (STV 1.0 0.9524)) +(: cnet_usedfor_b8b7cdae5a (UsedFor shade look_cool) (STV 1.0 0.9091)) +(: cnet_usedfor_c3dcae62ea (UsedFor shallow_water learning_how_to_swim) (STV 1.0 0.9091)) +(: cnet_usedfor_5f58d8d37e (UsedFor shallow_water wade) (STV 1.0 0.9454)) +(: cnet_usedfor_42ea945b47 (UsedFor shallow_water wading) (STV 1.0 0.9091)) +(: cnet_usedfor_c608fcc3aa (UsedFor shampoo_and_conditioner clean_hair) (STV 1.0 0.9339)) +(: cnet_usedfor_7794831d0e (UsedFor shampoo_and_conditioner washing_and_conditioning_hair) (STV 1.0 0.9091)) +(: cnet_usedfor_e927d50cd7 (UsedFor shampoo_and_conditioner washing_hair) (STV 1.0 0.9636)) +(: cnet_usedfor_2f55f02ade (UsedFor shareholder investing_in_company) (STV 1.0 0.9339)) +(: cnet_usedfor_2434101b39 (UsedFor sharp_object open_envelope) (STV 1.0 0.9091)) +(: cnet_usedfor_e3309694c4 (UsedFor sheet bed) (STV 1.0 0.9339)) +(: cnet_usedfor_e694ca1789 (UsedFor sheet covering_bed) (STV 1.0 0.9719)) +(: cnet_usedfor_991c3e658d (UsedFor sheet sleeping_under) (STV 1.0 0.9339)) +(: cnet_usedfor_694b6a4e20 (UsedFor sheet stay_warm_while_sleeping) (STV 1.0 0.9339)) +(: cnet_usedfor_7ecb235d71 (UsedFor sheet_of_paper designing) (STV 1.0 0.9091)) +(: cnet_usedfor_5b58461d13 (UsedFor sheet_of_paper make_paper_airplane) (STV 1.0 0.9091)) +(: cnet_usedfor_5b56bdc3b5 (UsedFor sheet_of_paper printing) (STV 1.0 0.9091)) +(: cnet_usedfor_e416fb6584 (UsedFor sheet_of_paper writing_letter) (STV 1.0 0.9091)) +(: cnet_usedfor_12edbbfb02 (UsedFor sheet_of_paper writing_on) (STV 1.0 0.9636)) +(: cnet_usedfor_66ce9e5c78 (UsedFor shelf holding_book) (STV 1.0 0.9091)) +(: cnet_usedfor_d25f6507b6 (UsedFor shelf store_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_3457c01a82 (UsedFor shelf storing_book) (STV 1.0 0.9524)) +(: cnet_usedfor_e1252d54e7 (UsedFor shirt being_dressed) (STV 1.0 0.9091)) +(: cnet_usedfor_e9afd7b7fa (UsedFor shirt cover_torso) (STV 1.0 0.9091)) +(: cnet_usedfor_6a613b0761 (UsedFor shirt covering) (STV 1.0 0.9091)) +(: cnet_usedfor_534b6c6ee2 (UsedFor shirt wearing) (STV 1.0 0.9454)) +(: cnet_usedfor_39786a76ba (UsedFor shoe foot_protection) (STV 1.0 0.9524)) +(: cnet_usedfor_766f40ba6d (UsedFor shoe protect_feet) (STV 1.0 0.9091)) +(: cnet_usedfor_da2acfe1e4 (UsedFor shoe protecting_foot) (STV 1.0 0.9091)) +(: cnet_usedfor_a3f3b4201b (UsedFor shoe walking) (STV 1.0 0.9091)) +(: cnet_usedfor_a0c23084c3 (UsedFor shoe wearing) (STV 1.0 0.9339)) +(: cnet_usedfor_c15b34334d (UsedFor shop buy_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_bdc369e973 (UsedFor shop selling_good) (STV 1.0 0.9091)) +(: cnet_usedfor_f43d902015 (UsedFor shopping buying_good) (STV 1.0 0.9339)) +(: cnet_usedfor_ba87054223 (UsedFor shopping buying_thing) (STV 1.0 0.9339)) +(: cnet_usedfor_65ad742db2 (UsedFor shopping_bag carry_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_25a87886e5 (UsedFor shopping_bag carrying_grocery) (STV 1.0 0.9091)) +(: cnet_usedfor_3618acf6d9 (UsedFor shopping_basket carry_product) (STV 1.0 0.9091)) +(: cnet_usedfor_3c4d217fed (UsedFor shopping_basket hold_grocery) (STV 1.0 0.9091)) +(: cnet_usedfor_b6c637f0c2 (UsedFor shopping_basket shop_with) (STV 1.0 0.9091)) +(: cnet_usedfor_7b77882678 (UsedFor shopping_center do_all_shopping) (STV 1.0 0.9091)) +(: cnet_usedfor_630ec94e62 (UsedFor shopping_mall shop) (STV 1.0 0.9339)) +(: cnet_usedfor_3d6ab8031f (UsedFor shore surfing) (STV 1.0 0.9091)) +(: cnet_usedfor_0a046678c3 (UsedFor shore swim) (STV 1.0 0.9091)) +(: cnet_usedfor_1c29d7d589 (UsedFor shoulder_bag carry_thing) (STV 1.0 0.9454)) +(: cnet_usedfor_1bc4d3b185 (UsedFor shoulder_bag carrying_item) (STV 1.0 0.9339)) +(: cnet_usedfor_baa685a39a (UsedFor shoulder_bag carrying_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_7d356bd993 (UsedFor shovel dig_grave) (STV 1.0 0.9339)) +(: cnet_usedfor_7dd46877f8 (UsedFor shovel digging_hole) (STV 1.0 0.9454)) +(: cnet_usedfor_63d65bde20 (UsedFor shovel dig_hole) (STV 1.0 0.9339)) +(: cnet_usedfor_68bfc5e57b (UsedFor show audience) (STV 1.0 0.9339)) +(: cnet_usedfor_f83801980a (UsedFor show entertain) (STV 1.0 0.9677)) +(: cnet_usedfor_1095857635 (UsedFor show entertainment) (STV 1.0 0.9524)) +(: cnet_usedfor_9cb910e9e2 (UsedFor shower bathing) (STV 1.0 0.9091)) +(: cnet_usedfor_fb96ebb00f (UsedFor shower_curtain have_privacy) (STV 1.0 0.9339)) +(: cnet_usedfor_4dfc416f36 (UsedFor shower_door entry_and_exit_to_shower) (STV 1.0 0.9091)) +(: cnet_usedfor_1cbcbe26c2 (UsedFor shower_door keep_water_off_bathroom_floor) (STV 1.0 0.9454)) +(: cnet_usedfor_0ce01be9b0 (UsedFor shower_door keeping_bathroom_from_getting_wet) (STV 1.0 0.9339)) +(: cnet_usedfor_25a2f092a3 (UsedFor shower_door privacy) (STV 1.0 0.9572)) +(: cnet_usedfor_7e0cd275a3 (UsedFor shower_stall take_shower) (STV 1.0 0.9091)) +(: cnet_usedfor_5c020f039c (UsedFor shower_stall water_plant) (STV 1.0 0.9091)) +(: cnet_usedfor_f96541dab7 (UsedFor showroom displaying_car) (STV 1.0 0.9339)) +(: cnet_usedfor_6ec684b31a (UsedFor showroom displaying_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_4ceaf9862c (UsedFor side_chair sitting) (STV 1.0 0.9091)) +(: cnet_usedfor_82137c5a05 (UsedFor sidewalk rollerblade) (STV 1.0 0.9091)) +(: cnet_usedfor_ea73aaf9f4 (UsedFor sidewalk walking_dog) (STV 1.0 0.9339)) +(: cnet_usedfor_dd527215ec (UsedFor sign direction) (STV 1.0 0.9091)) +(: cnet_usedfor_2bb3a5cc2f (UsedFor sign telling) (STV 1.0 0.9091)) +(: cnet_usedfor_5ac8a1b67f (UsedFor signing_contract formalising_agreement_between_two_party) (STV 1.0 0.9091)) +(: cnet_usedfor_4342984e5a (UsedFor silicone lubricate) (STV 1.0 0.9339)) +(: cnet_usedfor_90ec17da58 (UsedFor silver filling_teeth) (STV 1.0 0.9091)) +(: cnet_usedfor_f344d28d47 (UsedFor silver making_into_jewelry) (STV 1.0 0.9339)) +(: cnet_usedfor_83fe267b13 (UsedFor silver making_into_money) (STV 1.0 0.9091)) +(: cnet_usedfor_b7f5e0a179 (UsedFor singing entertainment) (STV 1.0 0.9454)) +(: cnet_usedfor_bc9ef78dff (UsedFor sink brushing_teeth) (STV 1.0 0.9091)) +(: cnet_usedfor_e8942c61a6 (UsedFor sink drain_off_water) (STV 1.0 0.9091)) +(: cnet_usedfor_3d05454615 (UsedFor sink hold_dirty_dishe) (STV 1.0 0.9091)) +(: cnet_usedfor_7952d178a9 (UsedFor sink rinse_dishe) (STV 1.0 0.9091)) +(: cnet_usedfor_584e96f816 (UsedFor sink soak_dishe) (STV 1.0 0.9091)) +(: cnet_usedfor_b050f6e565 (UsedFor sitting_down relaxation) (STV 1.0 0.9091)) +(: cnet_usedfor_db0473beeb (UsedFor sitting_down rest) (STV 1.0 0.9091)) +(: cnet_usedfor_b73b49ce3f (UsedFor sitting_down resting) (STV 1.0 0.9091)) +(: cnet_usedfor_c2f876c8d1 (UsedFor sitting_down resting_leg) (STV 1.0 0.9091)) +(: cnet_usedfor_e63d6c36fe (UsedFor sitting_on_chair resting_feet) (STV 1.0 0.9091)) +(: cnet_usedfor_3f3c65a295 (UsedFor sitting_on_chair resting_leg) (STV 1.0 0.9091)) +(: cnet_usedfor_add170055f (UsedFor sitting_quietly meditating) (STV 1.0 0.9091)) +(: cnet_usedfor_e5a098dd72 (UsedFor sitting_quietly meditation) (STV 1.0 0.9339)) +(: cnet_usedfor_cb2c992bfb (UsedFor sitting_quietly reading) (STV 1.0 0.9091)) +(: cnet_usedfor_f2b3309db5 (UsedFor sitting_quietly reflection) (STV 1.0 0.9091)) +(: cnet_usedfor_f72b1184d2 (UsedFor sitting_quietly relaxing) (STV 1.0 0.9091)) +(: cnet_usedfor_02b6ebb528 (UsedFor skating having_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_ebb113e9b4 (UsedFor ski_tow hoist) (STV 1.0 0.9091)) +(: cnet_usedfor_c50b028fc1 (UsedFor ski_tow raise) (STV 1.0 0.9091)) +(: cnet_usedfor_f9ed7f72c3 (UsedFor ski_tow transport) (STV 1.0 0.9091)) +(: cnet_usedfor_25d751afc7 (UsedFor skiing fun) (STV 1.0 0.9091)) +(: cnet_usedfor_cc2d3bde9c (UsedFor skiing sport) (STV 1.0 0.9339)) +(: cnet_usedfor_8a6b17964b (UsedFor skiing traveling_on_snow) (STV 1.0 0.9339)) +(: cnet_usedfor_09e8c4d07e (UsedFor skin covering_body) (STV 1.0 0.9677)) +(: cnet_usedfor_2b6bce31f9 (UsedFor skin protecting_body) (STV 1.0 0.9339)) +(: cnet_usedfor_9a93f7c732 (UsedFor skin_care_article taking_care_of_skin) (STV 1.0 0.9339)) +(: cnet_usedfor_05dca0109d (UsedFor sky breath) (STV 1.0 0.9091)) +(: cnet_usedfor_a7576aeadd (UsedFor sky fly) (STV 1.0 0.9339)) +(: cnet_usedfor_8526f3deb7 (UsedFor sky fly_kite) (STV 1.0 0.9524)) +(: cnet_usedfor_51f3190407 (UsedFor sky flying_in) (STV 1.0 0.9524)) +(: cnet_usedfor_69e46589a7 (UsedFor sky rain) (STV 1.0 0.9091)) +(: cnet_usedfor_86a272baca (UsedFor skylight let_in_light) (STV 1.0 0.9091)) +(: cnet_usedfor_4e0098345d (UsedFor skyscraper city) (STV 1.0 0.9091)) +(: cnet_usedfor_3794fee1b7 (UsedFor skyscraper office_space) (STV 1.0 0.9339)) +(: cnet_usedfor_70a57a1768 (UsedFor skyscraper urban_area) (STV 1.0 0.9091)) +(: cnet_usedfor_f3339654ab (UsedFor slave labor) (STV 1.0 0.9091)) +(: cnet_usedfor_f03d92b3bb (UsedFor sleeping dreaming) (STV 1.0 0.9091)) +(: cnet_usedfor_9d64ff9a69 (UsedFor sleeping getting_rest) (STV 1.0 0.9091)) +(: cnet_usedfor_65d4156fb2 (UsedFor sleeping passing_time) (STV 1.0 0.9091)) +(: cnet_usedfor_4c624ff90c (UsedFor sleeping recovering) (STV 1.0 0.9091)) +(: cnet_usedfor_0ff90ee0ed (UsedFor sleeping relaxing) (STV 1.0 0.9454)) +(: cnet_usedfor_274ed1f6e8 (UsedFor sleeping rest) (STV 1.0 0.9091)) +(: cnet_usedfor_8e07b5a992 (UsedFor sleeping_at_night dream) (STV 1.0 0.9091)) +(: cnet_usedfor_20f4d612bf (UsedFor sleeping_at_night getting_rest) (STV 1.0 0.9091)) +(: cnet_usedfor_277589d1a3 (UsedFor sleeping_at_night rest) (STV 1.0 0.9091)) +(: cnet_usedfor_c65c00fb79 (UsedFor sleeping_at_night resting_body) (STV 1.0 0.9091)) +(: cnet_usedfor_51a20068db (UsedFor slipper keep_feet_warm) (STV 1.0 0.9339)) +(: cnet_usedfor_dd3ea36229 (UsedFor smell connect) (STV 1.0 0.9091)) +(: cnet_usedfor_4e625aec9f (UsedFor smoking conversation) (STV 1.0 0.9339)) +(: cnet_usedfor_46e87d0ce2 (UsedFor smoking relaxation) (STV 1.0 0.9091)) +(: cnet_usedfor_efc8cc21c6 (UsedFor snare_drum making_music) (STV 1.0 0.9339)) +(: cnet_usedfor_2696ff18d0 (UsedFor snare_drum making_noise) (STV 1.0 0.9091)) +(: cnet_usedfor_bf9409f8d4 (UsedFor snoring driving_mate_crazy) (STV 1.0 0.9091)) +(: cnet_usedfor_498a0eb78d (UsedFor snow build_snowman) (STV 1.0 0.9091)) +(: cnet_usedfor_03c364b1ca (UsedFor snow building_snowmen) (STV 1.0 0.9091)) +(: cnet_usedfor_0eb5c75d28 (UsedFor snow making_snowmen) (STV 1.0 0.9091)) +(: cnet_usedfor_cfca87f1aa (UsedFor soaking_in_hotspring relaxation) (STV 1.0 0.9454)) +(: cnet_usedfor_c7de8a216f (UsedFor soaking_in_hotspring relaxing) (STV 1.0 0.9091)) +(: cnet_usedfor_6f395d5911 (UsedFor soap clean) (STV 1.0 0.9707)) +(: cnet_usedfor_c11c08233e (UsedFor soap clean_dirty_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_144e1ed2fa (UsedFor soap cleaning) (STV 1.0 0.9454)) +(: cnet_usedfor_37a0d61032 (UsedFor soap get_clean) (STV 1.0 0.9339)) +(: cnet_usedfor_3786771d25 (UsedFor soap wash_hand) (STV 1.0 0.9677)) +(: cnet_usedfor_72f19b5fdd (UsedFor soap wash_yourself) (STV 1.0 0.9091)) +(: cnet_usedfor_abce755450 (UsedFor soap washing_body) (STV 1.0 0.9091)) +(: cnet_usedfor_84c12b9323 (UsedFor soap washing_dishe) (STV 1.0 0.9339)) +(: cnet_usedfor_08585d49c4 (UsedFor soap washing_yourself) (STV 1.0 0.9677)) +(: cnet_usedfor_6a8503277e (UsedFor soap_dish hold_bar_of_soap) (STV 1.0 0.9091)) +(: cnet_usedfor_42f2e7475f (UsedFor soap_dish hold_soap) (STV 1.0 0.9339)) +(: cnet_usedfor_b2c8ba41d6 (UsedFor soap_dish holding_soap) (STV 1.0 0.9091)) +(: cnet_usedfor_c507247363 (UsedFor soccer_field play_game_of_soccer) (STV 1.0 0.9091)) +(: cnet_usedfor_6217ace637 (UsedFor soccer_field play_soccer) (STV 1.0 0.9572)) +(: cnet_usedfor_80e336bca0 (UsedFor soccer_field play_soccer_on) (STV 1.0 0.9091)) +(: cnet_usedfor_e5265500ca (UsedFor socialist community) (STV 1.0 0.9091)) +(: cnet_usedfor_48c98e07f5 (UsedFor sofa lounging) (STV 1.0 0.9339)) +(: cnet_usedfor_7cc42797cf (UsedFor sofa lying_on) (STV 1.0 0.9339)) +(: cnet_usedfor_094e6cfc68 (UsedFor sofa reading_book) (STV 1.0 0.9091)) +(: cnet_usedfor_f6ddf624e2 (UsedFor sofa relax) (STV 1.0 0.9339)) +(: cnet_usedfor_79c78fc12e (UsedFor sofa sleeping) (STV 1.0 0.9339)) +(: cnet_usedfor_c9747f8b8c (UsedFor sofa watching_tv) (STV 1.0 0.9091)) +(: cnet_usedfor_b07bbb66b0 (UsedFor sofa people) (STV 1.0 0.9091)) +(: cnet_usedfor_6e04adb9dc (UsedFor sofa seat) (STV 1.0 0.9091)) +(: cnet_usedfor_70b92c0464 (UsedFor sofa_bed sit_on) (STV 1.0 0.9524)) +(: cnet_usedfor_dd3ba53f71 (UsedFor sofa_bed sleep_on) (STV 1.0 0.9524)) +(: cnet_usedfor_27834b147c (UsedFor sofa_bed sleeping_on) (STV 1.0 0.9091)) +(: cnet_usedfor_02766883cf (UsedFor sofa_hide_bed saving_space) (STV 1.0 0.9091)) +(: cnet_usedfor_42676c8be0 (UsedFor sofa_hide_bed sitting) (STV 1.0 0.9091)) +(: cnet_usedfor_3e53b7b6bc (UsedFor sofa_hide_bed sleeping) (STV 1.0 0.9454)) +(: cnet_usedfor_ff43696590 (UsedFor sofabed have_guest) (STV 1.0 0.9091)) +(: cnet_usedfor_3d90f294ba (UsedFor sofabed sleep) (STV 1.0 0.9339)) +(: cnet_usedfor_c59970b47e (UsedFor sofabed sleep_on) (STV 1.0 0.9091)) +(: cnet_usedfor_5d422c2cb9 (UsedFor software processing_information) (STV 1.0 0.9091)) +(: cnet_usedfor_8dfc64f365 (UsedFor soldier fighting) (STV 1.0 0.9091)) +(: cnet_usedfor_447bd35b2f (UsedFor soldier killing_enemy) (STV 1.0 0.9454)) +(: cnet_usedfor_2684d47a79 (UsedFor soldier protecting_country) (STV 1.0 0.9524)) +(: cnet_usedfor_6cd0ef2eed (UsedFor solution solving_problem) (STV 1.0 0.9091)) +(: cnet_usedfor_15c078b298 (UsedFor song entertainment) (STV 1.0 0.9524)) +(: cnet_usedfor_20290d3186 (UsedFor song express_feeling_and_emotion) (STV 1.0 0.9339)) +(: cnet_usedfor_f02a3f64b4 (UsedFor sound annoy) (STV 1.0 0.9091)) +(: cnet_usedfor_ee403b1ce3 (UsedFor sound communicate) (STV 1.0 0.9091)) +(: cnet_usedfor_03336d9091 (UsedFor sound communicating) (STV 1.0 0.9091)) +(: cnet_usedfor_c195f35a6d (UsedFor soundstage making_movy) (STV 1.0 0.9339)) +(: cnet_usedfor_90c64f2442 (UsedFor spa relaxation_and_rejuvanation) (STV 1.0 0.9091)) +(: cnet_usedfor_75f49e4b02 (UsedFor space occupying) (STV 1.0 0.9091)) +(: cnet_usedfor_c3ce6bc63e (UsedFor space parking) (STV 1.0 0.9091)) +(: cnet_usedfor_10a9f96289 (UsedFor space separating_word) (STV 1.0 0.9091)) +(: cnet_usedfor_0d07641c7c (UsedFor space seperation) (STV 1.0 0.9091)) +(: cnet_usedfor_b35e9208c1 (UsedFor spanish_restaurant eat_spanish_food) (STV 1.0 0.9524)) +(: cnet_usedfor_242c0d13d6 (UsedFor spanish_restaurant eating_spanish_food) (STV 1.0 0.9339)) +(: cnet_usedfor_17ce3ab0bf (UsedFor spectacle correct) (STV 1.0 0.9091)) +(: cnet_usedfor_7f4d368455 (UsedFor spectacle sight) (STV 1.0 0.9091)) +(: cnet_usedfor_ac0b09c78e (UsedFor spectacle spectator) (STV 1.0 0.9091)) +(: cnet_usedfor_eff4419ad6 (UsedFor spectacle wearer) (STV 1.0 0.9091)) +(: cnet_usedfor_e78990f540 (UsedFor spending_money buying_for_yourself) (STV 1.0 0.9091)) +(: cnet_usedfor_26172c55b3 (UsedFor spending_money necessity) (STV 1.0 0.9091)) +(: cnet_usedfor_8a356f4e18 (UsedFor spiderweb catch_insect) (STV 1.0 0.9091)) +(: cnet_usedfor_e34d0983df (UsedFor spiral_binding holding_together_notebook) (STV 1.0 0.9091)) +(: cnet_usedfor_f563d120bf (UsedFor spirit haunting) (STV 1.0 0.9091)) +(: cnet_usedfor_d5e8da0c01 (UsedFor spite anger) (STV 1.0 0.9091)) +(: cnet_usedfor_2d22bdb9f5 (UsedFor spite negative_feeling) (STV 1.0 0.9091)) +(: cnet_usedfor_261f4b26f9 (UsedFor spitting getting_rid_of_bad_tast) (STV 1.0 0.9339)) +(: cnet_usedfor_bff23c0487 (UsedFor spoon eating) (STV 1.0 0.9719)) +(: cnet_usedfor_36f9bc1825 (UsedFor spoon eating_cereal) (STV 1.0 0.9091)) +(: cnet_usedfor_ae4d7b99c4 (UsedFor spoon eating_ice_cream) (STV 1.0 0.9091)) +(: cnet_usedfor_5476213d53 (UsedFor spoon scooping_food) (STV 1.0 0.9091)) +(: cnet_usedfor_3ae8ae9bed (UsedFor spoon stirring_coffee) (STV 1.0 0.9091)) +(: cnet_usedfor_1b80ab1c97 (UsedFor spoon eat_ice_cream) (STV 1.0 0.9339)) +(: cnet_usedfor_a8cee38d3a (UsedFor spoon eat_liquid) (STV 1.0 0.9091)) +(: cnet_usedfor_77a1677937 (UsedFor spoon stir_coffee) (STV 1.0 0.9339)) +(: cnet_usedfor_68c064c129 (UsedFor sport playing) (STV 1.0 0.9091)) +(: cnet_usedfor_faa10d7af4 (UsedFor sport_ball playing_game) (STV 1.0 0.9091)) +(: cnet_usedfor_1dfde159d7 (UsedFor sport_bat hitting_ball) (STV 1.0 0.9091)) +(: cnet_usedfor_6973462bcd (UsedFor sport_bat playing) (STV 1.0 0.9091)) +(: cnet_usedfor_0493ed77b6 (UsedFor sport_equipment having_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_57f3457a88 (UsedFor sport_equipment playing_sport) (STV 1.0 0.9091)) +(: cnet_usedfor_d6cb833878 (UsedFor spout pour_liquid) (STV 1.0 0.9524)) +(: cnet_usedfor_88075ae9bf (UsedFor spray_hose spray_water) (STV 1.0 0.9454)) +(: cnet_usedfor_9ccbf8f2ed (UsedFor spring_binder holding_paper) (STV 1.0 0.9339)) +(: cnet_usedfor_b500c3b879 (UsedFor squash_court exercise) (STV 1.0 0.9339)) +(: cnet_usedfor_5a1651a8bf (UsedFor squash_court playing_game_of_squash) (STV 1.0 0.9454)) +(: cnet_usedfor_619039923e (UsedFor squash_court playing_squash_with_friend) (STV 1.0 0.9091)) +(: cnet_usedfor_8eead9d0aa (UsedFor stabbing_to_death getting_revenge_on) (STV 1.0 0.9091)) +(: cnet_usedfor_dbaa5e7a0f (UsedFor stabbing_to_death getting_rid_of_enemy) (STV 1.0 0.9091)) +(: cnet_usedfor_d3b0039930 (UsedFor stadium play_sport) (STV 1.0 0.9091)) +(: cnet_usedfor_bb6004def7 (UsedFor stadium watch_ball_game) (STV 1.0 0.9091)) +(: cnet_usedfor_eb5d06ebf6 (UsedFor stadium_stand viewing_gladiator_fight) (STV 1.0 0.9091)) +(: cnet_usedfor_f90e666a47 (UsedFor stage performing_play) (STV 1.0 0.9091)) +(: cnet_usedfor_857d4632c7 (UsedFor stage play) (STV 1.0 0.9636)) +(: cnet_usedfor_b5d9a59690 (UsedFor stage_door entering_back_stage_area) (STV 1.0 0.9091)) +(: cnet_usedfor_3dfa0cc030 (UsedFor stage_door moving_scenery_through) (STV 1.0 0.9091)) +(: cnet_usedfor_98dc48bec0 (UsedFor stage_door vendor_delivery) (STV 1.0 0.9091)) +(: cnet_usedfor_debb1f2929 (UsedFor staircase climb) (STV 1.0 0.9091)) +(: cnet_usedfor_04cc555890 (UsedFor staircase getting_to_next_level) (STV 1.0 0.9091)) +(: cnet_usedfor_b7ac0454a6 (UsedFor staircase going_upstair) (STV 1.0 0.9454)) +(: cnet_usedfor_e1ddf6fedb (UsedFor stair climbing) (STV 1.0 0.9636)) +(: cnet_usedfor_0328d87d84 (UsedFor stair walking_down) (STV 1.0 0.9091)) +(: cnet_usedfor_1e213e2bbd (UsedFor stair_up climb) (STV 1.0 0.9608)) +(: cnet_usedfor_b5b944c139 (UsedFor stairwell walk_down) (STV 1.0 0.9091)) +(: cnet_usedfor_3c6cffbaaf (UsedFor stairwell walk_up) (STV 1.0 0.9339)) +(: cnet_usedfor_1a64b4cb37 (UsedFor stamp postage) (STV 1.0 0.9091)) +(: cnet_usedfor_781f23a18c (UsedFor stamp_pad apply_ink) (STV 1.0 0.9091)) +(: cnet_usedfor_4b1a29fca8 (UsedFor stamp_pad ink_stamp) (STV 1.0 0.9091)) +(: cnet_usedfor_be20760308 (UsedFor stamp_rack keeping_many_stamp_organized) (STV 1.0 0.9091)) +(: cnet_usedfor_b3451941bd (UsedFor stamp mail_letter) (STV 1.0 0.9091)) +(: cnet_usedfor_2babaf6f28 (UsedFor standing_in_line waiting_turn) (STV 1.0 0.9091)) +(: cnet_usedfor_ae51b23ffa (UsedFor staple_remover take_out_staple) (STV 1.0 0.9091)) +(: cnet_usedfor_e0c504b683 (UsedFor staple_remover taking_staple_out_of) (STV 1.0 0.9091)) +(: cnet_usedfor_93ee41ccf0 (UsedFor stapler attaching_paper) (STV 1.0 0.9454)) +(: cnet_usedfor_fb32afa31f (UsedFor stapler bind_paper_together) (STV 1.0 0.9091)) +(: cnet_usedfor_a8a18d16c8 (UsedFor stapler binding_many_piece_of_paper) (STV 1.0 0.9091)) +(: cnet_usedfor_816d60ea95 (UsedFor stapler fasten_sheet_of_paper_together) (STV 1.0 0.9091)) +(: cnet_usedfor_580540667f (UsedFor stapler holding_paper_together) (STV 1.0 0.9091)) +(: cnet_usedfor_50c63487f2 (UsedFor stapler office_organization) (STV 1.0 0.9091)) +(: cnet_usedfor_4354e99d11 (UsedFor stapler stapling) (STV 1.0 0.9091)) +(: cnet_usedfor_1b0b9ff931 (UsedFor stapler stapling_paper_together) (STV 1.0 0.9091)) +(: cnet_usedfor_936f7b9455 (UsedFor stapler stapling_piece_of_paper_together) (STV 1.0 0.9091)) +(: cnet_usedfor_2d3c8691c9 (UsedFor stapler attach_mutliple_piece_of_paper_together) (STV 1.0 0.9091)) +(: cnet_usedfor_0f00362a44 (UsedFor stapler fasten_paper_together) (STV 1.0 0.9091)) +(: cnet_usedfor_50404bd599 (UsedFor starting_fire cooking_food) (STV 1.0 0.9091)) +(: cnet_usedfor_d4c2535301 (UsedFor starting_fire keeping_warm) (STV 1.0 0.9091)) +(: cnet_usedfor_6b7b30203b (UsedFor starting_fire toasting_marshmallow) (STV 1.0 0.9091)) +(: cnet_usedfor_dccee636c8 (UsedFor starting_flame_or_fire keeping_warm) (STV 1.0 0.9091)) +(: cnet_usedfor_b491e82308 (UsedFor starting_flame_or_fire roasting_marshmellow) (STV 1.0 0.9091)) +(: cnet_usedfor_711d923e4a (UsedFor state_highway driving) (STV 1.0 0.9454)) +(: cnet_usedfor_e6ba233181 (UsedFor statement detailing_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_464cad91fc (UsedFor staying_fit good_health) (STV 1.0 0.9091)) +(: cnet_usedfor_f5e7fdc292 (UsedFor staying_healthy living_long_life) (STV 1.0 0.9091)) +(: cnet_usedfor_33487379b2 (UsedFor staying_healthy living_longer) (STV 1.0 0.9091)) +(: cnet_usedfor_86962edec5 (UsedFor staying_in_bed being_lazy) (STV 1.0 0.9339)) +(: cnet_usedfor_5001968d20 (UsedFor staying_in_bed being_sick) (STV 1.0 0.9091)) +(: cnet_usedfor_a757770a88 (UsedFor staying_in_bed healing_from_illness) (STV 1.0 0.9091)) +(: cnet_usedfor_10a11b6b35 (UsedFor staying_in_bed relaxing) (STV 1.0 0.9091)) +(: cnet_usedfor_d28910e5b6 (UsedFor staying_in_bed sleeping_in) (STV 1.0 0.9454)) +(: cnet_usedfor_7062d4bcc6 (UsedFor steak cooking) (STV 1.0 0.9091)) +(: cnet_usedfor_c82c3f96a7 (UsedFor steak_house eating) (STV 1.0 0.9091)) +(: cnet_usedfor_56d859ba9c (UsedFor steak_house eating_dinner) (STV 1.0 0.9091)) +(: cnet_usedfor_756cd9cac8 (UsedFor steak_house eating_out) (STV 1.0 0.9339)) +(: cnet_usedfor_b5bae8736e (UsedFor steak_house eating_steak) (STV 1.0 0.9339)) +(: cnet_usedfor_7f8d16a5c2 (UsedFor steakhouse dinner) (STV 1.0 0.9091)) +(: cnet_usedfor_d8d3cc21b7 (UsedFor steakhouse eating_meat) (STV 1.0 0.9339)) +(: cnet_usedfor_8bb2888507 (UsedFor steakhouse eating_steak) (STV 1.0 0.9091)) +(: cnet_usedfor_d09cb042b5 (UsedFor steakhouse eating_steak_in) (STV 1.0 0.9339)) +(: cnet_usedfor_5190419c98 (UsedFor steakhouse having_steak) (STV 1.0 0.9091)) +(: cnet_usedfor_9eea48582c (UsedFor steam clean_carpet) (STV 1.0 0.9091)) +(: cnet_usedfor_11b4399b36 (UsedFor steel_pen writing) (STV 1.0 0.9091)) +(: cnet_usedfor_10e29874b7 (UsedFor step_chair reaching_upper_shelve) (STV 1.0 0.9339)) +(: cnet_usedfor_4b034d62d9 (UsedFor step_chair sitting_while_preparing_food) (STV 1.0 0.9091)) +(: cnet_usedfor_aefabac93c (UsedFor stepladder climb) (STV 1.0 0.9339)) +(: cnet_usedfor_d28fe7cddd (UsedFor stick fuel) (STV 1.0 0.9091)) +(: cnet_usedfor_80ea8c66d6 (UsedFor stick help_build_campfire) (STV 1.0 0.9091)) +(: cnet_usedfor_bd9fb848b3 (UsedFor stick_eraser erase_pencil_mark) (STV 1.0 0.9091)) +(: cnet_usedfor_06c88a392a (UsedFor stick_eraser erasing_pencil_mark) (STV 1.0 0.9091)) +(: cnet_usedfor_4a63ee5497 (UsedFor stick_of_butter cooking) (STV 1.0 0.9454)) +(: cnet_usedfor_411531cb92 (UsedFor stick_of_butter making_cooky) (STV 1.0 0.9091)) +(: cnet_usedfor_703de8b4b3 (UsedFor stick_of_butter present_butter_with_meal) (STV 1.0 0.9091)) +(: cnet_usedfor_52d2eb9bce (UsedFor sticking_plaster providing_first_aid) (STV 1.0 0.9091)) +(: cnet_usedfor_76a5c952f2 (UsedFor stimulation have_orgasm) (STV 1.0 0.9091)) +(: cnet_usedfor_0433de2c8d (UsedFor stone throwing) (STV 1.0 0.9091)) +(: cnet_usedfor_20a2924ddb (UsedFor stool reaching_high_place) (STV 1.0 0.9091)) +(: cnet_usedfor_d020f58646 (UsedFor stool resting) (STV 1.0 0.9454)) +(: cnet_usedfor_88064ce7ad (UsedFor stop stop) (STV 1.0 0.9091)) +(: cnet_usedfor_db68d754ee (UsedFor stop_sign stopping) (STV 1.0 0.9091)) +(: cnet_usedfor_c0128191f9 (UsedFor stopping_bicycle avoiding_crash) (STV 1.0 0.9091)) +(: cnet_usedfor_ec24ba6d3a (UsedFor stopping_bicycle get_off_bicycle) (STV 1.0 0.9339)) +(: cnet_usedfor_41ba1292b6 (UsedFor stopping_bicycle safety) (STV 1.0 0.9091)) +(: cnet_usedfor_a38e7deac9 (UsedFor stopping_car arriving_at_destination) (STV 1.0 0.9339)) +(: cnet_usedfor_193e041633 (UsedFor stopping_car avoiding_accident) (STV 1.0 0.9091)) +(: cnet_usedfor_ae91b76bb2 (UsedFor storage keep_stuff) (STV 1.0 0.9091)) +(: cnet_usedfor_302191911d (UsedFor store buy_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_8ee8e14520 (UsedFor store buying_thing) (STV 1.0 0.9339)) +(: cnet_usedfor_6d91d936e4 (UsedFor store_shelf displaying_item) (STV 1.0 0.9339)) +(: cnet_usedfor_c5d940695f (UsedFor storm raining) (STV 1.0 0.9091)) +(: cnet_usedfor_6e20b45aa8 (UsedFor story entertainment) (STV 1.0 0.9454)) +(: cnet_usedfor_2a12610d7b (UsedFor story reading) (STV 1.0 0.9091)) +(: cnet_usedfor_c8cace705f (UsedFor story telling) (STV 1.0 0.9091)) +(: cnet_usedfor_045a364440 (UsedFor stove cook) (STV 1.0 0.9572)) +(: cnet_usedfor_bcfbdb798c (UsedFor stove cooking) (STV 1.0 0.9091)) +(: cnet_usedfor_671a7a04ea (UsedFor stove grill_steak) (STV 1.0 0.9091)) +(: cnet_usedfor_2a465db672 (UsedFor stranger act_as_witness) (STV 1.0 0.9091)) +(: cnet_usedfor_564dfc3c8c (UsedFor stranger meeting) (STV 1.0 0.9339)) +(: cnet_usedfor_71c6731337 (UsedFor strawberry make_strawberry_tart) (STV 1.0 0.9091)) +(: cnet_usedfor_95d828ec16 (UsedFor stream swimming) (STV 1.0 0.9091)) +(: cnet_usedfor_0c0d4d877b (UsedFor street driving_car_on) (STV 1.0 0.9091)) +(: cnet_usedfor_720d8642ec (UsedFor street driving_on) (STV 1.0 0.9636)) +(: cnet_usedfor_bb6c779b48 (UsedFor street easy_passage_of_vehicle) (STV 1.0 0.9091)) +(: cnet_usedfor_9f95d287e3 (UsedFor street transportation) (STV 1.0 0.9091)) +(: cnet_usedfor_86b5508bc7 (UsedFor street travel) (STV 1.0 0.9339)) +(: cnet_usedfor_7d9a1e6a64 (UsedFor street walking) (STV 1.0 0.9454)) +(: cnet_usedfor_4ea75aa7af (UsedFor striking_match creating_fire) (STV 1.0 0.9454)) +(: cnet_usedfor_146e7decb8 (UsedFor striking_match lighting_candle) (STV 1.0 0.9091)) +(: cnet_usedfor_2c96bdd9f3 (UsedFor striking_match lighting_cigarette) (STV 1.0 0.9091)) +(: cnet_usedfor_6011c2a178 (UsedFor striking_match lighting_fire) (STV 1.0 0.9091)) +(: cnet_usedfor_6226bcab09 (UsedFor striking_match seeing_in_dark) (STV 1.0 0.9091)) +(: cnet_usedfor_cf691d5d4e (UsedFor striking_match starting_fire) (STV 1.0 0.9091)) +(: cnet_usedfor_2bc88b559b (UsedFor string fly_kite) (STV 1.0 0.9091)) +(: cnet_usedfor_c0fc6d39f5 (UsedFor string tie) (STV 1.0 0.9524)) +(: cnet_usedfor_344ecf0567 (UsedFor string_bass play_music) (STV 1.0 0.9091)) +(: cnet_usedfor_ba3c88583f (UsedFor string_bass playing_music) (STV 1.0 0.9091)) +(: cnet_usedfor_7ccbbad1b3 (UsedFor string_bass playing_music_with) (STV 1.0 0.9572)) +(: cnet_usedfor_02e05ce831 (UsedFor stringed_instrument playing_music) (STV 1.0 0.9454)) +(: cnet_usedfor_0883a00a15 (UsedFor strip_mall shop_for_thing) (STV 1.0 0.9454)) +(: cnet_usedfor_84136f7e2b (UsedFor strip_mall shopping) (STV 1.0 0.9454)) +(: cnet_usedfor_536c240d50 (UsedFor study learn_thing) (STV 1.0 0.9454)) +(: cnet_usedfor_3ef0f2d5dd (UsedFor study reading) (STV 1.0 0.9091)) +(: cnet_usedfor_82bb41b742 (UsedFor studying getting_good_grade) (STV 1.0 0.9091)) +(: cnet_usedfor_1f832a5d60 (UsedFor studying learning) (STV 1.0 0.9339)) +(: cnet_usedfor_51bd66d429 (UsedFor studying preparing_for_testing) (STV 1.0 0.9339)) +(: cnet_usedfor_ffdd0aeb69 (UsedFor studying_for_subject getting_good_grade) (STV 1.0 0.9091)) +(: cnet_usedfor_f11279fc16 (UsedFor studying_for_subject learning_subject) (STV 1.0 0.9339)) +(: cnet_usedfor_58875bdf45 (UsedFor studying_for_subject memorizing) (STV 1.0 0.9091)) +(: cnet_usedfor_5975f42337 (UsedFor subway_pass ride_subway) (STV 1.0 0.9524)) +(: cnet_usedfor_a30b21764f (UsedFor subway_pass riding_subway) (STV 1.0 0.9339)) +(: cnet_usedfor_a792f93b54 (UsedFor subway_platform wait) (STV 1.0 0.9091)) +(: cnet_usedfor_e051f5961b (UsedFor sugar filling_craving) (STV 1.0 0.9091)) +(: cnet_usedfor_cf5d69c529 (UsedFor sugar make_food_sweet) (STV 1.0 0.9091)) +(: cnet_usedfor_c8392921b1 (UsedFor sugar making_desert_with) (STV 1.0 0.9091)) +(: cnet_usedfor_89faefe7b7 (UsedFor sugar sweeten_food) (STV 1.0 0.9339)) +(: cnet_usedfor_68503047e9 (UsedFor sugar sweetening_coffee) (STV 1.0 0.9454)) +(: cnet_usedfor_1b199b8617 (UsedFor suitcase carrying_clothe) (STV 1.0 0.9454)) +(: cnet_usedfor_d94ea467bf (UsedFor suitcase packing_clothe_for_trip) (STV 1.0 0.9091)) +(: cnet_usedfor_c25a5d1c68 (UsedFor sun energy) (STV 1.0 0.9339)) +(: cnet_usedfor_0bc9cf0179 (UsedFor sun heat) (STV 1.0 0.9339)) +(: cnet_usedfor_6bb52f3993 (UsedFor sun light) (STV 1.0 0.9524)) +(: cnet_usedfor_8ad8e19709 (UsedFor sunglass protect_eye_from_sun) (STV 1.0 0.9608)) +(: cnet_usedfor_ccdb8762a3 (UsedFor supermarket buy_chicken) (STV 1.0 0.9339)) +(: cnet_usedfor_d58d707570 (UsedFor supermarket buy_food_for_family) (STV 1.0 0.9091)) +(: cnet_usedfor_836d89c835 (UsedFor supermarket buy_raisin) (STV 1.0 0.9339)) +(: cnet_usedfor_6650077761 (UsedFor supermarket buying_canned_food) (STV 1.0 0.9091)) +(: cnet_usedfor_6026da451d (UsedFor supermarket buying_canned_good) (STV 1.0 0.9091)) +(: cnet_usedfor_c4bcfed29d (UsedFor supermarket buying_carrot) (STV 1.0 0.9091)) +(: cnet_usedfor_140001dc12 (UsedFor supermarket buying_edible) (STV 1.0 0.9091)) +(: cnet_usedfor_85da4eca42 (UsedFor supermarket buying_food) (STV 1.0 0.9091)) +(: cnet_usedfor_98563a87cc (UsedFor supermarket buying_fresh_ground_beef) (STV 1.0 0.9091)) +(: cnet_usedfor_86689c96fc (UsedFor supermarket buying_fresh_seafood) (STV 1.0 0.9091)) +(: cnet_usedfor_aaeb394bd6 (UsedFor supermarket buying_grocery) (STV 1.0 0.9524)) +(: cnet_usedfor_6137986476 (UsedFor supermarket buying_lettuce) (STV 1.0 0.9091)) +(: cnet_usedfor_16bdbb3e49 (UsedFor supermarket buying_produce) (STV 1.0 0.9339)) +(: cnet_usedfor_1b75380270 (UsedFor supermarket getting_banana) (STV 1.0 0.9339)) +(: cnet_usedfor_ba36164d00 (UsedFor supermarket shop_for_good) (STV 1.0 0.9091)) +(: cnet_usedfor_93660a776b (UsedFor supermarket shopping) (STV 1.0 0.9572)) +(: cnet_usedfor_f2503e9ce9 (UsedFor supermarket weekly_shopping) (STV 1.0 0.9339)) +(: cnet_usedfor_11db469c7f (UsedFor surface putting_thing_on) (STV 1.0 0.9091)) +(: cnet_usedfor_f3e80074c3 (UsedFor surfing having_fun) (STV 1.0 0.9454)) +(: cnet_usedfor_f4d83a8048 (UsedFor surfing_net doing_research) (STV 1.0 0.9091)) +(: cnet_usedfor_0ce9d9fb2b (UsedFor surfing_net entertainment) (STV 1.0 0.9091)) +(: cnet_usedfor_92142c2215 (UsedFor surfing_net finding_friend) (STV 1.0 0.9091)) +(: cnet_usedfor_0069797b05 (UsedFor surfing_net finding_information) (STV 1.0 0.9339)) +(: cnet_usedfor_338da794d8 (UsedFor surfing_net killing_time) (STV 1.0 0.9091)) +(: cnet_usedfor_3cbfbbcc4a (UsedFor surfing_net learning) (STV 1.0 0.9091)) +(: cnet_usedfor_db31377267 (UsedFor surfing_net research) (STV 1.0 0.9091)) +(: cnet_usedfor_e542772758 (UsedFor surfing_web entertainment) (STV 1.0 0.9091)) +(: cnet_usedfor_944624c791 (UsedFor surfing_web research) (STV 1.0 0.9091)) +(: cnet_usedfor_47df734182 (UsedFor surprising fun) (STV 1.0 0.9091)) +(: cnet_usedfor_285ff26698 (UsedFor surprising scaring) (STV 1.0 0.9091)) +(: cnet_usedfor_9466ce6c59 (UsedFor suspension_cable hold_up_bridge) (STV 1.0 0.9091)) +(: cnet_usedfor_58e36c5340 (UsedFor swallowing_semen showing_how_much_care) (STV 1.0 0.9091)) +(: cnet_usedfor_fa4b95b8ef (UsedFor swimming competition) (STV 1.0 0.9339)) +(: cnet_usedfor_9c6aa53da8 (UsedFor swimming exercise) (STV 1.0 0.9524)) +(: cnet_usedfor_a3da10b394 (UsedFor swimming fun) (STV 1.0 0.9091)) +(: cnet_usedfor_cd1e6d47ad (UsedFor swimming having_fun) (STV 1.0 0.9339)) +(: cnet_usedfor_4fc3b3713b (UsedFor swimming moving_in_water) (STV 1.0 0.9091)) +(: cnet_usedfor_8977bd1c45 (UsedFor swimming strenghtening_muscle) (STV 1.0 0.9091)) +(: cnet_usedfor_8f210bcf1a (UsedFor swimming_pool cool_off) (STV 1.0 0.9339)) +(: cnet_usedfor_3e1d5552a2 (UsedFor swimming_pool diving) (STV 1.0 0.9339)) +(: cnet_usedfor_52f59bc161 (UsedFor swimming_pool fun) (STV 1.0 0.9454)) +(: cnet_usedfor_4e05838e50 (UsedFor swimming_pool getting_wet) (STV 1.0 0.9454)) +(: cnet_usedfor_35538dc525 (UsedFor swimming_pool lap) (STV 1.0 0.9091)) +(: cnet_usedfor_61b486bb58 (UsedFor swimming_pool make_love) (STV 1.0 0.9091)) +(: cnet_usedfor_01d12e07b4 (UsedFor swimming_pool swim) (STV 1.0 0.9454)) +(: cnet_usedfor_765aef7d2f (UsedFor sword fence_with) (STV 1.0 0.9091)) +(: cnet_usedfor_c837e24f43 (UsedFor sword fencing) (STV 1.0 0.9091)) +(: cnet_usedfor_1057147bff (UsedFor sword killing) (STV 1.0 0.9572)) +(: cnet_usedfor_0e60d6cd25 (UsedFor symphony_hall playing_music) (STV 1.0 0.9091)) +(: cnet_usedfor_0aa4fb4ccf (UsedFor system organizing_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_f6c92c871a (UsedFor t_shirt cover_breast) (STV 1.0 0.9091)) +(: cnet_usedfor_2101fd4a26 (UsedFor t_shirt covering_nipple) (STV 1.0 0.9091)) +(: cnet_usedfor_2fc84bd7d0 (UsedFor t_shirt covering_torso) (STV 1.0 0.9339)) +(: cnet_usedfor_d8ae436bba (UsedFor t_shirt wear_message) (STV 1.0 0.9091)) +(: cnet_usedfor_d6bde8f73b (UsedFor t_shirt wearing) (STV 1.0 0.9454)) +(: cnet_usedfor_8bb787c419 (UsedFor t_shirt display_logo) (STV 1.0 0.9091)) +(: cnet_usedfor_e0febcef38 (UsedFor tab marking_place) (STV 1.0 0.9091)) +(: cnet_usedfor_d11feb6059 (UsedFor table drawing_on) (STV 1.0 0.9091)) +(: cnet_usedfor_95014a4e61 (UsedFor table eat_at) (STV 1.0 0.9608)) +(: cnet_usedfor_8c0f0e594b (UsedFor table eating_off_of) (STV 1.0 0.9608)) +(: cnet_usedfor_7252a9b2f2 (UsedFor table holding_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_8457c50764 (UsedFor table putting_thing_on) (STV 1.0 0.9719)) +(: cnet_usedfor_4a63836683 (UsedFor table read) (STV 1.0 0.9339)) +(: cnet_usedfor_8197f6fefa (UsedFor table sitting_on) (STV 1.0 0.9091)) +(: cnet_usedfor_b08e735004 (UsedFor table working_at) (STV 1.0 0.9339)) +(: cnet_usedfor_3458e4e799 (UsedFor table hold_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_13acc5b0f9 (UsedFor tablespoon drinking_soup) (STV 1.0 0.9091)) +(: cnet_usedfor_66d7cb949a (UsedFor tablespoon eat_soup) (STV 1.0 0.9091)) +(: cnet_usedfor_5c6218c11f (UsedFor tail making_kite_fly_evenly) (STV 1.0 0.9091)) +(: cnet_usedfor_fa7f3b2a99 (UsedFor taking_break rejuvinating) (STV 1.0 0.9091)) +(: cnet_usedfor_26328e6c2e (UsedFor taking_bus getting_somewhere) (STV 1.0 0.9454)) +(: cnet_usedfor_5678f88b09 (UsedFor taking_bus going_to_school) (STV 1.0 0.9091)) +(: cnet_usedfor_69dec53bbd (UsedFor taking_bus people_who_depend_on_public_transportation) (STV 1.0 0.9091)) +(: cnet_usedfor_440c1c9f11 (UsedFor taking_bus school_children) (STV 1.0 0.9091)) +(: cnet_usedfor_b33b95e8c8 (UsedFor taking_bus travel) (STV 1.0 0.9339)) +(: cnet_usedfor_fcc701410f (UsedFor taking_car_for_drive relaxation) (STV 1.0 0.9339)) +(: cnet_usedfor_a85c6d5fcd (UsedFor taking_car_for_drive wasting_gas) (STV 1.0 0.9091)) +(: cnet_usedfor_fc733a1caa (UsedFor taking_course being_taught) (STV 1.0 0.9091)) +(: cnet_usedfor_3d6023e948 (UsedFor taking_course learning_more) (STV 1.0 0.9339)) +(: cnet_usedfor_bcd2609237 (UsedFor taking_course learning_new) (STV 1.0 0.9091)) +(: cnet_usedfor_e554431747 (UsedFor taking_course learning_new_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_3b366ffbf3 (UsedFor taking_exam getting_good_grade) (STV 1.0 0.9091)) +(: cnet_usedfor_5d4a6df632 (UsedFor taking_exam passing_class) (STV 1.0 0.9339)) +(: cnet_usedfor_27c4d0d5b0 (UsedFor taking_exam passing_grade_at_school) (STV 1.0 0.9339)) +(: cnet_usedfor_f412c14388 (UsedFor taking_exam seeing_how_well_learned) (STV 1.0 0.9091)) +(: cnet_usedfor_089299685d (UsedFor taking_exam testing_knowledge) (STV 1.0 0.9339)) +(: cnet_usedfor_812f8dc234 (UsedFor taking_exam testing_skill) (STV 1.0 0.9091)) +(: cnet_usedfor_ce899abca4 (UsedFor taking_examination demonstrating_knowledge_about_subject) (STV 1.0 0.9091)) +(: cnet_usedfor_4694e8fc04 (UsedFor taking_final_exam getting_graduation) (STV 1.0 0.9091)) +(: cnet_usedfor_23722b925d (UsedFor taking_final_exam pass_course) (STV 1.0 0.9091)) +(: cnet_usedfor_2b14f0ee3b (UsedFor taking_final passing_class) (STV 1.0 0.9339)) +(: cnet_usedfor_74258c98dd (UsedFor taking_in_film entertaining_yourself) (STV 1.0 0.9339)) +(: cnet_usedfor_76277e9da7 (UsedFor taking_in_film leisure_activity) (STV 1.0 0.9091)) +(: cnet_usedfor_5fc9ee2bf3 (UsedFor taking_in_film relaxation) (STV 1.0 0.9091)) +(: cnet_usedfor_d48acc5ce2 (UsedFor taking_midterm measuring_knowledge_of_subject) (STV 1.0 0.9091)) +(: cnet_usedfor_6552e25be2 (UsedFor taking_oath promising) (STV 1.0 0.9091)) +(: cnet_usedfor_5bdaaf3449 (UsedFor taking_phone_call talking) (STV 1.0 0.9091)) +(: cnet_usedfor_76aa5d5786 (UsedFor taking_shower hygiene) (STV 1.0 0.9091)) +(: cnet_usedfor_680dd4d4df (UsedFor taking_shower washing_off_sweat_and_dirt) (STV 1.0 0.9091)) +(: cnet_usedfor_afe3ffdcd1 (UsedFor taking_stand witnessing_in_trial) (STV 1.0 0.9339)) +(: cnet_usedfor_a166b6792f (UsedFor taking_walk relaxing) (STV 1.0 0.9091)) +(: cnet_usedfor_a40eda0a69 (UsedFor taking_walk staying_in_shape) (STV 1.0 0.9091)) +(: cnet_usedfor_b308fd65d7 (UsedFor talking speech) (STV 1.0 0.9091)) +(: cnet_usedfor_d1055b973e (UsedFor talking_to communication) (STV 1.0 0.9659)) +(: cnet_usedfor_2f9dfdf954 (UsedFor talking_to getting_information) (STV 1.0 0.9091)) +(: cnet_usedfor_46b73dfc3a (UsedFor talking_with_far_away communicating) (STV 1.0 0.9091)) +(: cnet_usedfor_2d0bb1e763 (UsedFor talking_with_far_away communication) (STV 1.0 0.9091)) +(: cnet_usedfor_24511ad4db (UsedFor talking_with_far_away exchanging_information) (STV 1.0 0.9339)) +(: cnet_usedfor_971819a6f3 (UsedFor tambourine make_music) (STV 1.0 0.9091)) +(: cnet_usedfor_6231141ef0 (UsedFor tanning_lotion darkening_skin) (STV 1.0 0.9091)) +(: cnet_usedfor_6449abbe95 (UsedFor tanning_lotion preventing_sunburn) (STV 1.0 0.9572)) +(: cnet_usedfor_fc7c60c616 (UsedFor tap beer) (STV 1.0 0.9091)) +(: cnet_usedfor_b7d76f40b7 (UsedFor tap get_beer_from_keg) (STV 1.0 0.9091)) +(: cnet_usedfor_cf29702b80 (UsedFor tap getting_attention) (STV 1.0 0.9091)) +(: cnet_usedfor_35d8c0465c (UsedFor tape tape) (STV 1.0 0.9091)) +(: cnet_usedfor_7c5ced18f3 (UsedFor tape_dispenser dispensing_tape) (STV 1.0 0.9454)) +(: cnet_usedfor_f2aeab3c57 (UsedFor tape_dispenser holding_roll_of_tape) (STV 1.0 0.9091)) +(: cnet_usedfor_9a551999e9 (UsedFor tape_dispenser holding_tape) (STV 1.0 0.9524)) +(: cnet_usedfor_8deaa23c70 (UsedFor tapestry art) (STV 1.0 0.9339)) +(: cnet_usedfor_fc64e829d8 (UsedFor tapestry decor) (STV 1.0 0.9454)) +(: cnet_usedfor_ebb3ec1927 (UsedFor tapestry decorate_room) (STV 1.0 0.9091)) +(: cnet_usedfor_85140bd98d (UsedFor tapestry decorate_wall) (STV 1.0 0.9091)) +(: cnet_usedfor_a4d35411f6 (UsedFor taping_television_show viewing_later) (STV 1.0 0.9339)) +(: cnet_usedfor_b5e73ce02e (UsedFor taping_television_show watching_again) (STV 1.0 0.9339)) +(: cnet_usedfor_b4334365a1 (UsedFor tartar_control_toothpaste brush_teeth) (STV 1.0 0.9339)) +(: cnet_usedfor_a5244182f9 (UsedFor tartar_control_toothpaste brushing_teeth) (STV 1.0 0.9454)) +(: cnet_usedfor_76a5ea80db (UsedFor tartar_control_toothpaste control_tartar) (STV 1.0 0.9091)) +(: cnet_usedfor_5eb7826926 (UsedFor tasting_sweet pleasure) (STV 1.0 0.9091)) +(: cnet_usedfor_02ae162a4d (UsedFor teaching_other_people educating) (STV 1.0 0.9572)) +(: cnet_usedfor_34d4e99574 (UsedFor teaching_other_people learning) (STV 1.0 0.9091)) +(: cnet_usedfor_4401b278a0 (UsedFor teaching_other_people spreading_knowledge) (STV 1.0 0.9339)) +(: cnet_usedfor_e21a49f736 (UsedFor teakettle boil_water_to_make_tea) (STV 1.0 0.9091)) +(: cnet_usedfor_2b5be37492 (UsedFor teakettle boiling_water) (STV 1.0 0.9339)) +(: cnet_usedfor_c6a42bef2e (UsedFor teakettle heating_water) (STV 1.0 0.9454)) +(: cnet_usedfor_838f902f18 (UsedFor teakettle making_tea) (STV 1.0 0.9454)) +(: cnet_usedfor_8e1df03a1f (UsedFor tear_off_calendar keep_track_of_date) (STV 1.0 0.9091)) +(: cnet_usedfor_44b30fb975 (UsedFor tearoom being_served_drink_and_food) (STV 1.0 0.9091)) +(: cnet_usedfor_4ad1f188b8 (UsedFor tearoom drinking_tea) (STV 1.0 0.9454)) +(: cnet_usedfor_3d8412a657 (UsedFor teaspoon eating) (STV 1.0 0.9339)) +(: cnet_usedfor_e0b9745f0d (UsedFor teaspoon making_tea) (STV 1.0 0.9091)) +(: cnet_usedfor_7d7e0f2cbc (UsedFor teaspoon measure_ingredient) (STV 1.0 0.9091)) +(: cnet_usedfor_c32b4d12c7 (UsedFor teaspoon measuring) (STV 1.0 0.9339)) +(: cnet_usedfor_ddaae5a3a6 (UsedFor teaspoon stir_coffee) (STV 1.0 0.9091)) +(: cnet_usedfor_38ea47a3cd (UsedFor teaspoon stir_tea) (STV 1.0 0.9339)) +(: cnet_usedfor_df88c2da16 (UsedFor telephone call_friend) (STV 1.0 0.9091)) +(: cnet_usedfor_60796684bd (UsedFor telephone communicate) (STV 1.0 0.9791)) +(: cnet_usedfor_e64c4ab2f8 (UsedFor telephone communicating) (STV 1.0 0.9339)) +(: cnet_usedfor_5ddf52d1d1 (UsedFor telephone communication) (STV 1.0 0.9091)) +(: cnet_usedfor_6d794c9a0d (UsedFor telephone making_phone_call) (STV 1.0 0.9091)) +(: cnet_usedfor_f1462a7148 (UsedFor telephone talking_to) (STV 1.0 0.9339)) +(: cnet_usedfor_e62b4182b9 (UsedFor telephone talking_to_friend) (STV 1.0 0.9091)) +(: cnet_usedfor_0b473ede26 (UsedFor telephone_book look_up_number) (STV 1.0 0.9091)) +(: cnet_usedfor_2a6aa9ac4f (UsedFor telephone_book look_up_telephone_number) (STV 1.0 0.9091)) +(: cnet_usedfor_f265a8871f (UsedFor telephone_book looking_up_someone_address) (STV 1.0 0.9091)) +(: cnet_usedfor_3e56bc5710 (UsedFor telephone_book paperweight) (STV 1.0 0.9091)) +(: cnet_usedfor_bcce31e704 (UsedFor telephone_booth make_phone_call) (STV 1.0 0.9091)) +(: cnet_usedfor_f94436b6f0 (UsedFor telephone_booth making_telephone_call) (STV 1.0 0.9454)) +(: cnet_usedfor_1495b284b3 (UsedFor telephone_box call_mom) (STV 1.0 0.9091)) +(: cnet_usedfor_1f8720b1da (UsedFor telephone_directory find) (STV 1.0 0.9091)) +(: cnet_usedfor_d00e94b065 (UsedFor telephone_directory finding_address) (STV 1.0 0.9091)) +(: cnet_usedfor_b178fe979e (UsedFor telephone_directory finding_out_phone_number) (STV 1.0 0.9339)) +(: cnet_usedfor_52c8cad197 (UsedFor telephone_directory finding_people_s_telephone_number) (STV 1.0 0.9091)) +(: cnet_usedfor_136d8c778f (UsedFor telephone_kiosk communicating) (STV 1.0 0.9091)) +(: cnet_usedfor_51c91e35da (UsedFor telephone_kiosk make_call) (STV 1.0 0.9091)) +(: cnet_usedfor_31b7c94639 (UsedFor telephone_kiosk making_phone_call) (STV 1.0 0.9339)) +(: cnet_usedfor_789edd0e86 (UsedFor telephone_kiosk public_phone_call) (STV 1.0 0.9091)) +(: cnet_usedfor_590cdfeec9 (UsedFor telephone_line conduct) (STV 1.0 0.9091)) +(: cnet_usedfor_2d02a97666 (UsedFor telephone_line connect) (STV 1.0 0.9091)) +(: cnet_usedfor_13a78e69a9 (UsedFor telephone_pole suspending_wire) (STV 1.0 0.9091)) +(: cnet_usedfor_8cec481c84 (UsedFor telephone_room storing_telephone) (STV 1.0 0.9091)) +(: cnet_usedfor_a388c79bf1 (UsedFor telephone real_time_voice_communication_between_two_party) (STV 1.0 0.9091)) +(: cnet_usedfor_a2116c1acc (UsedFor telescope look_at_object_in_space) (STV 1.0 0.9091)) +(: cnet_usedfor_76d2807624 (UsedFor telescope view_object_far_away) (STV 1.0 0.9091)) +(: cnet_usedfor_aad864434e (UsedFor television watch_movie) (STV 1.0 0.9091)) +(: cnet_usedfor_c85b23d001 (UsedFor television watching) (STV 1.0 0.9091)) +(: cnet_usedfor_9a1da220ea (UsedFor television_studio produce_television_program) (STV 1.0 0.9091)) +(: cnet_usedfor_8a5faf82fa (UsedFor telling_many_people_about spreading_gossip) (STV 1.0 0.9091)) +(: cnet_usedfor_d922b256c6 (UsedFor telling_many_people_about spreading_information) (STV 1.0 0.9339)) +(: cnet_usedfor_03ca717b18 (UsedFor telling_many_people_about spreading_rumor) (STV 1.0 0.9091)) +(: cnet_usedfor_a54b7cc114 (UsedFor telling_story entertainment) (STV 1.0 0.9454)) +(: cnet_usedfor_32e8b69bcb (UsedFor temple praying) (STV 1.0 0.9608)) +(: cnet_usedfor_d1ea0df56c (UsedFor temple religion) (STV 1.0 0.9608)) +(: cnet_usedfor_f8e86dbd3c (UsedFor temple worship) (STV 1.0 0.9091)) +(: cnet_usedfor_cc38756e4f (UsedFor temple worshipping) (STV 1.0 0.9454)) +(: cnet_usedfor_572673de7b (UsedFor tennis_ball bouncing) (STV 1.0 0.9091)) +(: cnet_usedfor_51c86bdd50 (UsedFor tennis_ball play_tennis) (STV 1.0 0.9524)) +(: cnet_usedfor_b2142a3fc9 (UsedFor tennis_ball playing_sport) (STV 1.0 0.9091)) +(: cnet_usedfor_30dc8da4ce (UsedFor tennis_ball playing_tennis) (STV 1.0 0.9091)) +(: cnet_usedfor_391cfe25d0 (UsedFor tennis_game exercise) (STV 1.0 0.9608)) +(: cnet_usedfor_01525cf834 (UsedFor tennis_game fun) (STV 1.0 0.9339)) +(: cnet_usedfor_f253ca9f89 (UsedFor tennis_game sport) (STV 1.0 0.9339)) +(: cnet_usedfor_9f33de2d87 (UsedFor tenor singing) (STV 1.0 0.9091)) +(: cnet_usedfor_a1786d94c5 (UsedFor tent camping) (STV 1.0 0.9091)) +(: cnet_usedfor_1606c93ff4 (UsedFor tent sleep_in_while_camping) (STV 1.0 0.9091)) +(: cnet_usedfor_69238850f7 (UsedFor terrace standing_on) (STV 1.0 0.9091)) +(: cnet_usedfor_8df0c5142d (UsedFor terraced_house live_in) (STV 1.0 0.9339)) +(: cnet_usedfor_2408b6fcf8 (UsedFor testing_strength demonstrating_how_strong) (STV 1.0 0.9091)) +(: cnet_usedfor_cad851145d (UsedFor testing_strength determining_how_strong) (STV 1.0 0.9091)) +(: cnet_usedfor_1d86c2db57 (UsedFor testing_strength finding_out_how_strong) (STV 1.0 0.9091)) +(: cnet_usedfor_0892acd172 (UsedFor testing_strength proving_how_strong) (STV 1.0 0.9091)) +(: cnet_usedfor_977b904652 (UsedFor testing_strength showing_off) (STV 1.0 0.9091)) +(: cnet_usedfor_395e713d54 (UsedFor text learning) (STV 1.0 0.9339)) +(: cnet_usedfor_0473d63088 (UsedFor text study) (STV 1.0 0.9339)) +(: cnet_usedfor_224447114e (UsedFor text teaching) (STV 1.0 0.9339)) +(: cnet_usedfor_5570540c97 (UsedFor textile make_clothing) (STV 1.0 0.9454)) +(: cnet_usedfor_94e388b3da (UsedFor thanking being_polite) (STV 1.0 0.9454)) +(: cnet_usedfor_8d10a39b57 (UsedFor thanking expressing_appreciation) (STV 1.0 0.9091)) +(: cnet_usedfor_ee6c81463d (UsedFor thanking expressing_gratitude) (STV 1.0 0.9091)) +(: cnet_usedfor_255b39a353 (UsedFor theater watch_movie) (STV 1.0 0.9091)) +(: cnet_usedfor_1996d8185f (UsedFor theater_box having_privacy) (STV 1.0 0.9091)) +(: cnet_usedfor_9ea1961759 (UsedFor theater_box sitting_there) (STV 1.0 0.9091)) +(: cnet_usedfor_87526c43db (UsedFor theater_box watch_play) (STV 1.0 0.9339)) +(: cnet_usedfor_82a192ae39 (UsedFor theater_seat sitting) (STV 1.0 0.9339)) +(: cnet_usedfor_7fe06ccfc4 (UsedFor theatre event) (STV 1.0 0.9091)) +(: cnet_usedfor_d694374e4b (UsedFor theatre_ticket gain_entrance_to_movie) (STV 1.0 0.9339)) +(: cnet_usedfor_f856027c26 (UsedFor thermometer measuring_temperature) (STV 1.0 0.9091)) +(: cnet_usedfor_7d93c4c62e (UsedFor thermostat set_temperature) (STV 1.0 0.9091)) +(: cnet_usedfor_3fedbb69a5 (UsedFor thinking adapting) (STV 1.0 0.9091)) +(: cnet_usedfor_36fe561787 (UsedFor thinking coming_to_conclusion) (STV 1.0 0.9091)) +(: cnet_usedfor_4ad2ed936f (UsedFor thinking deciding) (STV 1.0 0.9454)) +(: cnet_usedfor_b26a794ced (UsedFor thinking deducing) (STV 1.0 0.9339)) +(: cnet_usedfor_724ac3233c (UsedFor thinking learning) (STV 1.0 0.9091)) +(: cnet_usedfor_036655e77a (UsedFor thinking reasoning) (STV 1.0 0.9091)) +(: cnet_usedfor_35d8dd05ff (UsedFor thinking solving) (STV 1.0 0.9339)) +(: cnet_usedfor_4e64cefbde (UsedFor thinking solving_problem) (STV 1.0 0.9091)) +(: cnet_usedfor_eff7a4f6fd (UsedFor thinking understanding) (STV 1.0 0.9091)) +(: cnet_usedfor_eafbfdf1a6 (UsedFor thread sewing) (STV 1.0 0.9091)) +(: cnet_usedfor_c8081969ad (UsedFor thruway travel) (STV 1.0 0.9339)) +(: cnet_usedfor_d98bf02322 (UsedFor thumb_tack putting_poster_up) (STV 1.0 0.9091)) +(: cnet_usedfor_140241d7db (UsedFor thumbtack pin_notice_to_bulletin_board) (STV 1.0 0.9091)) +(: cnet_usedfor_0ac42e4c28 (UsedFor thunderbolt strike) (STV 1.0 0.9091)) +(: cnet_usedfor_85b2430f2f (UsedFor ticket enter_sport_event) (STV 1.0 0.9091)) +(: cnet_usedfor_67d5515997 (UsedFor ticket riding_train) (STV 1.0 0.9091)) +(: cnet_usedfor_b184f76546 (UsedFor ticket speeding) (STV 1.0 0.9524)) +(: cnet_usedfor_21001c1700 (UsedFor ticket_booth buying_ticket) (STV 1.0 0.9339)) +(: cnet_usedfor_1cc91fbb72 (UsedFor ticket_booth purchasing_ticket) (STV 1.0 0.9339)) +(: cnet_usedfor_8702080a94 (UsedFor ticket_booth sell_ticket) (STV 1.0 0.9339)) +(: cnet_usedfor_f4fd520249 (UsedFor ticket_booth selling_ticket) (STV 1.0 0.9091)) +(: cnet_usedfor_e6b2978263 (UsedFor ticket_box putting_ticket_into) (STV 1.0 0.9091)) +(: cnet_usedfor_4706b0823b (UsedFor ticket_box store_ticket) (STV 1.0 0.9091)) +(: cnet_usedfor_30e3408b2d (UsedFor ticket_office buying_ticket) (STV 1.0 0.9608)) +(: cnet_usedfor_b1f070d314 (UsedFor ticket_office selling_ticket) (STV 1.0 0.9339)) +(: cnet_usedfor_c544328b36 (UsedFor ticket_slot collect_ticket) (STV 1.0 0.9091)) +(: cnet_usedfor_27b476eb66 (UsedFor ticket_slot inserting_ticket) (STV 1.0 0.9339)) +(: cnet_usedfor_70d8a192de (UsedFor ticket_slot putting_ticket_in) (STV 1.0 0.9091)) +(: cnet_usedfor_232f3e8b82 (UsedFor ticket get_into_event) (STV 1.0 0.9091)) +(: cnet_usedfor_f6e7c5aa61 (UsedFor tickling causing_laughter) (STV 1.0 0.9091)) +(: cnet_usedfor_58081a4e4a (UsedFor tickling flirting) (STV 1.0 0.9091)) +(: cnet_usedfor_f505c2b6f7 (UsedFor tickling fun) (STV 1.0 0.9339)) +(: cnet_usedfor_1598a1be06 (UsedFor tickling laugh) (STV 1.0 0.9091)) +(: cnet_usedfor_10edc32f0c (UsedFor tickling making_angry_at) (STV 1.0 0.9091)) +(: cnet_usedfor_e1a22eaf0a (UsedFor tickling making_child_laugh) (STV 1.0 0.9339)) +(: cnet_usedfor_f6b81b0d79 (UsedFor tickling making_laugh) (STV 1.0 0.9454)) +(: cnet_usedfor_2950faa76b (UsedFor tickling play) (STV 1.0 0.9091)) +(: cnet_usedfor_b2f6ca48bf (UsedFor tickling sensation) (STV 1.0 0.9091)) +(: cnet_usedfor_b545a2e497 (UsedFor tickling teasing) (STV 1.0 0.9091)) +(: cnet_usedfor_57c71b248c (UsedFor tile bathroom) (STV 1.0 0.9091)) +(: cnet_usedfor_255db5f425 (UsedFor tile covering_wall) (STV 1.0 0.9524)) +(: cnet_usedfor_c009387826 (UsedFor tile flooring) (STV 1.0 0.9454)) +(: cnet_usedfor_11f4dbe0bd (UsedFor tile playing_scrabble) (STV 1.0 0.9091)) +(: cnet_usedfor_f55918df2e (UsedFor tin hold_cooky) (STV 1.0 0.9339)) +(: cnet_usedfor_9ccd43b0d7 (UsedFor tin holding_cooky) (STV 1.0 0.9091)) +(: cnet_usedfor_1e3c6c7cf2 (UsedFor tin holding_food) (STV 1.0 0.9339)) +(: cnet_usedfor_b5ca6e174e (UsedFor tin holding_sardine) (STV 1.0 0.9091)) +(: cnet_usedfor_914a6709ac (UsedFor tissue_holder hold_tissue) (STV 1.0 0.9572)) +(: cnet_usedfor_f195d4cb87 (UsedFor tissue_holder holding_tissue) (STV 1.0 0.9091)) +(: cnet_usedfor_2349f197c5 (UsedFor toilet barf_in) (STV 1.0 0.9091)) +(: cnet_usedfor_f88c460ba6 (UsedFor toilet dispose_of_waste) (STV 1.0 0.9091)) +(: cnet_usedfor_958cb51645 (UsedFor toilet go_potty) (STV 1.0 0.9091)) +(: cnet_usedfor_40c8e2d7f0 (UsedFor toilet peeing) (STV 1.0 0.9339)) +(: cnet_usedfor_d7cf8fc178 (UsedFor toilet poop) (STV 1.0 0.9572)) +(: cnet_usedfor_64873651a7 (UsedFor toilet shitting) (STV 1.0 0.9091)) +(: cnet_usedfor_a2e94726cf (UsedFor toilet urinate) (STV 1.0 0.9339)) +(: cnet_usedfor_f7ff932ec2 (UsedFor toilet waste) (STV 1.0 0.9091)) +(: cnet_usedfor_be4f425884 (UsedFor toilet_brush clean_toilet) (STV 1.0 0.9091)) +(: cnet_usedfor_de5719660b (UsedFor toilet_paper absorbing_moisture) (STV 1.0 0.9091)) +(: cnet_usedfor_22fbd4014b (UsedFor toilet_paper bathroom) (STV 1.0 0.9091)) +(: cnet_usedfor_b5b9f9be94 (UsedFor toilet_paper blow_nose) (STV 1.0 0.9339)) +(: cnet_usedfor_234c5568fc (UsedFor toilet_paper cleaning_up_liquid) (STV 1.0 0.9091)) +(: cnet_usedfor_6ce60fd543 (UsedFor toilet_paper female_to_wipe_vagina) (STV 1.0 0.9091)) +(: cnet_usedfor_f7e364bb23 (UsedFor toilet_paper personal_hygiene) (STV 1.0 0.9091)) +(: cnet_usedfor_f47523f3d2 (UsedFor toilet_paper toss_on_tree) (STV 1.0 0.9091)) +(: cnet_usedfor_891a169460 (UsedFor toilet_paper wipe) (STV 1.0 0.9091)) +(: cnet_usedfor_e4b413a883 (UsedFor toilet_paper wipe_arse) (STV 1.0 0.9339)) +(: cnet_usedfor_edcada79e4 (UsedFor toilet_paper wipe_nose) (STV 1.0 0.9091)) +(: cnet_usedfor_f95b0be4f2 (UsedFor toilet_paper wiping_asshole) (STV 1.0 0.9091)) +(: cnet_usedfor_31b9d4099e (UsedFor toilet_paper wiping_oneself) (STV 1.0 0.9091)) +(: cnet_usedfor_fafa7cbbd2 (UsedFor toilet_paper wiping_up_small_spill) (STV 1.0 0.9091)) +(: cnet_usedfor_36cff6332a (UsedFor toilet_tank hold_water) (STV 1.0 0.9091)) +(: cnet_usedfor_ded6904943 (UsedFor token subway_ride) (STV 1.0 0.9091)) +(: cnet_usedfor_de9b00646a (UsedFor token_slot insert_token) (STV 1.0 0.9091)) +(: cnet_usedfor_0f05ee9008 (UsedFor token_turnstile riding_subway) (STV 1.0 0.9091)) +(: cnet_usedfor_5c67a5f9f1 (UsedFor toll_road driving) (STV 1.0 0.9091)) +(: cnet_usedfor_f6b966bf4e (UsedFor toll_road traveling_on) (STV 1.0 0.9091)) +(: cnet_usedfor_5721e91ade (UsedFor tool building) (STV 1.0 0.9091)) +(: cnet_usedfor_ea9264be2e (UsedFor tool building_thing) (STV 1.0 0.9572)) +(: cnet_usedfor_2996235a49 (UsedFor tool fix_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_c64346344b (UsedFor tool fixing_thing) (STV 1.0 0.9454)) +(: cnet_usedfor_3d0c1b9d53 (UsedFor tool making_thing) (STV 1.0 0.9339)) +(: cnet_usedfor_3c03de5e1b (UsedFor tooth chew_food) (STV 1.0 0.9524)) +(: cnet_usedfor_d58770fadc (UsedFor tooth chewing_food) (STV 1.0 0.9091)) +(: cnet_usedfor_317a8e7bef (UsedFor tooth crushing) (STV 1.0 0.9091)) +(: cnet_usedfor_f86da3f738 (UsedFor tooth eating) (STV 1.0 0.9091)) +(: cnet_usedfor_9451c7ec90 (UsedFor tooth griding) (STV 1.0 0.9091)) +(: cnet_usedfor_ff4a46b50c (UsedFor tooth grinding) (STV 1.0 0.9339)) +(: cnet_usedfor_16809595f9 (UsedFor tooth ripping) (STV 1.0 0.9091)) +(: cnet_usedfor_551725f815 (UsedFor toothbrush brushing_teeth) (STV 1.0 0.9091)) +(: cnet_usedfor_4684923f85 (UsedFor toothbrush clean_teeth) (STV 1.0 0.9339)) +(: cnet_usedfor_97837b5f86 (UsedFor toothbrush cleaning_teeth) (STV 1.0 0.9707)) +(: cnet_usedfor_ee741a83e6 (UsedFor toothbrush_head brush_teeth) (STV 1.0 0.9339)) +(: cnet_usedfor_3f594bb0c6 (UsedFor toothbrush_head brushing_teeth) (STV 1.0 0.9091)) +(: cnet_usedfor_3fdeda340d (UsedFor toothbrush_head clean_teeth) (STV 1.0 0.9454)) +(: cnet_usedfor_39e582ef70 (UsedFor toothbrush_head cleaning_teeth) (STV 1.0 0.9339)) +(: cnet_usedfor_7c1a411959 (UsedFor toothbrush_head holding_bristle) (STV 1.0 0.9339)) +(: cnet_usedfor_0396b8426f (UsedFor toothpaste clean_teeth) (STV 1.0 0.9091)) +(: cnet_usedfor_bd75cf62a9 (UsedFor toothpaste cleaning_teeth) (STV 1.0 0.9636)) +(: cnet_usedfor_8c0c7b47a3 (UsedFor toothpaste freshen_breath) (STV 1.0 0.9091)) +(: cnet_usedfor_d8667dcc8a (UsedFor toothpick clean_between_teeth) (STV 1.0 0.9524)) +(: cnet_usedfor_96505e40ef (UsedFor toothpick cleaning_food_from_between_teeth) (STV 1.0 0.9091)) +(: cnet_usedfor_c0a1220337 (UsedFor toothpick remove_food_from_between_teeth) (STV 1.0 0.9339)) +(: cnet_usedfor_8ec2d9796e (UsedFor toothpick removing_debris_from_between_teeth) (STV 1.0 0.9091)) +(: cnet_usedfor_0317f1f38a (UsedFor toothpick stab_olive) (STV 1.0 0.9339)) +(: cnet_usedfor_8cc074d426 (UsedFor tortilla make_taco) (STV 1.0 0.9091)) +(: cnet_usedfor_6252cecb6f (UsedFor tote_bag carry_book) (STV 1.0 0.9091)) +(: cnet_usedfor_296c8b9266 (UsedFor tourniquet controlling_blood_loss) (STV 1.0 0.9091)) +(: cnet_usedfor_dc3b8a21a2 (UsedFor tourniquet stop_bleeding) (STV 1.0 0.9524)) +(: cnet_usedfor_9518ad1c9e (UsedFor tourniquet stopping_flow_of_blood) (STV 1.0 0.9091)) +(: cnet_usedfor_0275c7f359 (UsedFor towel cleaning_up) (STV 1.0 0.9091)) +(: cnet_usedfor_6847891ac7 (UsedFor towel cleaning_up_mess) (STV 1.0 0.9091)) +(: cnet_usedfor_65f3be03af (UsedFor towel dry_dishe) (STV 1.0 0.9091)) +(: cnet_usedfor_0c3e121b3a (UsedFor towel drying_off) (STV 1.0 0.9091)) +(: cnet_usedfor_5071d3f5d0 (UsedFor towel_bar drying_towel) (STV 1.0 0.9339)) +(: cnet_usedfor_7ebb46744c (UsedFor towel_bar hang_towel) (STV 1.0 0.9659)) +(: cnet_usedfor_07ac030da3 (UsedFor towel_rack drying_towel) (STV 1.0 0.9091)) +(: cnet_usedfor_26bc78c8ff (UsedFor towel_rack hang_towel) (STV 1.0 0.9454)) +(: cnet_usedfor_61fd1213d4 (UsedFor towel_rack holding_towel) (STV 1.0 0.9454)) +(: cnet_usedfor_c5d703370b (UsedFor town live) (STV 1.0 0.9339)) +(: cnet_usedfor_f33ebd5a44 (UsedFor townhouse live_in) (STV 1.0 0.9524)) +(: cnet_usedfor_19a7ae64c8 (UsedFor townhouse living_in) (STV 1.0 0.9091)) +(: cnet_usedfor_1dd5c19e71 (UsedFor townhouse throw_party) (STV 1.0 0.9091)) +(: cnet_usedfor_d32c7cac34 (UsedFor toy entertainment) (STV 1.0 0.9454)) +(: cnet_usedfor_6ae699b5e2 (UsedFor toy have_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_3d75bc33fd (UsedFor toy_ball bouncing_up_and_down) (STV 1.0 0.9091)) +(: cnet_usedfor_bbd3a7bce6 (UsedFor toy_ball play) (STV 1.0 0.9454)) +(: cnet_usedfor_d038351283 (UsedFor toy_ball play_with_dog) (STV 1.0 0.9091)) +(: cnet_usedfor_556c630dfe (UsedFor toy_ball playing_game) (STV 1.0 0.9091)) +(: cnet_usedfor_a3a6d132aa (UsedFor toy_ball playing_with) (STV 1.0 0.9091)) +(: cnet_usedfor_510f339b00 (UsedFor toy_ball throwing) (STV 1.0 0.9091)) +(: cnet_usedfor_95e197cd54 (UsedFor toy_balloon blowing_up) (STV 1.0 0.9091)) +(: cnet_usedfor_5f1502b613 (UsedFor toy_car play) (STV 1.0 0.9572)) +(: cnet_usedfor_3e55fb64da (UsedFor toy_car playing) (STV 1.0 0.9091)) +(: cnet_usedfor_669e266459 (UsedFor toy_car racing) (STV 1.0 0.9091)) +(: cnet_usedfor_19289375ee (UsedFor toy_marble meditate_with) (STV 1.0 0.9091)) +(: cnet_usedfor_2a0554d002 (UsedFor toy_marble play) (STV 1.0 0.9339)) +(: cnet_usedfor_828330354e (UsedFor toy_marble play_with) (STV 1.0 0.9091)) +(: cnet_usedfor_7b94c1ed9b (UsedFor toy_marble playing_game) (STV 1.0 0.9091)) +(: cnet_usedfor_a38475dd46 (UsedFor toy_soldier play_war) (STV 1.0 0.9339)) +(: cnet_usedfor_2190638aa3 (UsedFor toy_soldier playing_war_game) (STV 1.0 0.9454)) +(: cnet_usedfor_d5528516e3 (UsedFor track greyhound_dog_to_race_on) (STV 1.0 0.9091)) +(: cnet_usedfor_43f9c9e6dd (UsedFor track railroad_train_to_run_on) (STV 1.0 0.9091)) +(: cnet_usedfor_eacd979fcc (UsedFor track running) (STV 1.0 0.9339)) +(: cnet_usedfor_55b5880ebc (UsedFor track subway_train_to_run_on) (STV 1.0 0.9091)) +(: cnet_usedfor_9d862be127 (UsedFor train_seat sleep_on) (STV 1.0 0.9091)) +(: cnet_usedfor_795947afbc (UsedFor train_station boarding_exiting_train) (STV 1.0 0.9091)) +(: cnet_usedfor_ff5b4547fa (UsedFor train_station train) (STV 1.0 0.9339)) +(: cnet_usedfor_1093a85c2b (UsedFor train_station traveling) (STV 1.0 0.9339)) +(: cnet_usedfor_0fe714221e (UsedFor train_station waiting_for_train) (STV 1.0 0.9091)) +(: cnet_usedfor_c05c513eb7 (UsedFor train_ticket showing_to_ticket_inspector) (STV 1.0 0.9091)) +(: cnet_usedfor_0c82f18474 (UsedFor train_ticket travel_by_train) (STV 1.0 0.9339)) +(: cnet_usedfor_a848e291d4 (UsedFor train_track connecting_city) (STV 1.0 0.9091)) +(: cnet_usedfor_d4f21a7c9f (UsedFor train_track guiding_train) (STV 1.0 0.9091)) +(: cnet_usedfor_4cb0dce727 (UsedFor train_track train_travel) (STV 1.0 0.9091)) +(: cnet_usedfor_9381b42b28 (UsedFor train_track train) (STV 1.0 0.9524)) +(: cnet_usedfor_18a85fca2a (UsedFor train_track train_to_travel_on) (STV 1.0 0.9339)) +(: cnet_usedfor_e9ee34a233 (UsedFor transit_ticket boarding_bus) (STV 1.0 0.9091)) +(: cnet_usedfor_a56d421df5 (UsedFor transit_ticket boarding_plane) (STV 1.0 0.9091)) +(: cnet_usedfor_e188748684 (UsedFor transit_ticket boarding_train) (STV 1.0 0.9091)) +(: cnet_usedfor_6fa34b28f5 (UsedFor transit_ticket bus_ride) (STV 1.0 0.9454)) +(: cnet_usedfor_a937359213 (UsedFor transit_ticket commuting_home_from_office) (STV 1.0 0.9091)) +(: cnet_usedfor_387600f458 (UsedFor transit_ticket commuting_to_office) (STV 1.0 0.9091)) +(: cnet_usedfor_e3ac761584 (UsedFor transit_ticket one_way_trip) (STV 1.0 0.9091)) +(: cnet_usedfor_bce832f5c6 (UsedFor transit_ticket subway_ride) (STV 1.0 0.9339)) +(: cnet_usedfor_dfbb496644 (UsedFor transit_ticket take_two_connecting_journey) (STV 1.0 0.9339)) +(: cnet_usedfor_cb0a863841 (UsedFor transit_ticket travel) (STV 1.0 0.9454)) +(: cnet_usedfor_030bb72ff4 (UsedFor transit_ticket travelling_on_public_transport) (STV 1.0 0.9091)) +(: cnet_usedfor_5b879c1be4 (UsedFor transit_ticket use_transit) (STV 1.0 0.9091)) +(: cnet_usedfor_69e744b668 (UsedFor trash taking_out) (STV 1.0 0.9091)) +(: cnet_usedfor_0b88504acd (UsedFor trash_container contain_trash) (STV 1.0 0.9454)) +(: cnet_usedfor_7d29ca07b5 (UsedFor trash_container hold_trash) (STV 1.0 0.9339)) +(: cnet_usedfor_8c3ee42d2f (UsedFor trash_receptacle putting_garbage_into) (STV 1.0 0.9091)) +(: cnet_usedfor_02dade3ccd (UsedFor trash_receptacle putting_trash_in) (STV 1.0 0.9091)) +(: cnet_usedfor_2aa393bda3 (UsedFor trash_receptacle waste_product) (STV 1.0 0.9091)) +(: cnet_usedfor_fa6c8fdb08 (UsedFor traveling enjoyment) (STV 1.0 0.9091)) +(: cnet_usedfor_896962df30 (UsedFor traveling exploring) (STV 1.0 0.9091)) +(: cnet_usedfor_dac5f402bd (UsedFor traveling_around_world meeting_interesting_people) (STV 1.0 0.9091)) +(: cnet_usedfor_12c15efdf2 (UsedFor tree beauty) (STV 1.0 0.9339)) +(: cnet_usedfor_930ad94779 (UsedFor tree climbing) (STV 1.0 0.9339)) +(: cnet_usedfor_49696c8047 (UsedFor tree shade) (STV 1.0 0.9454)) +(: cnet_usedfor_c4ed782e83 (UsedFor tree wind_break) (STV 1.0 0.9091)) +(: cnet_usedfor_ea97585e38 (UsedFor tree wood) (STV 1.0 0.9339)) +(: cnet_usedfor_f8901e16e7 (UsedFor trial determine_guilt_or_innocence) (STV 1.0 0.9091)) +(: cnet_usedfor_58255c61be (UsedFor triangle calculate_position_on_plan) (STV 1.0 0.9091)) +(: cnet_usedfor_1f6186e10d (UsedFor triangle draw_line_at_angle) (STV 1.0 0.9091)) +(: cnet_usedfor_fdcd9694fe (UsedFor triangle draw_straight_line) (STV 1.0 0.9091)) +(: cnet_usedfor_356066254e (UsedFor triangle drawing_angle_with) (STV 1.0 0.9091)) +(: cnet_usedfor_806752ec19 (UsedFor triangle geometry) (STV 1.0 0.9339)) +(: cnet_usedfor_bdc310859f (UsedFor triangle making_drawing) (STV 1.0 0.9091)) +(: cnet_usedfor_c03c794067 (UsedFor triangle musical_instrument) (STV 1.0 0.9091)) +(: cnet_usedfor_fca0af8233 (UsedFor triangle play_music) (STV 1.0 0.9454)) +(: cnet_usedfor_9d36630bb8 (UsedFor triangle playing_song) (STV 1.0 0.9091)) +(: cnet_usedfor_2c62d81805 (UsedFor triangle producing_simple_metal_sound) (STV 1.0 0.9091)) +(: cnet_usedfor_ad71865129 (UsedFor triangle trigonometry) (STV 1.0 0.9091)) +(: cnet_usedfor_23553fa6c8 (UsedFor triangle understanding_math) (STV 1.0 0.9091)) +(: cnet_usedfor_7fcd16e3c3 (UsedFor tripod keep_camera_steady) (STV 1.0 0.9091)) +(: cnet_usedfor_40d4a4eba0 (UsedFor trombone music) (STV 1.0 0.9091)) +(: cnet_usedfor_a405b3a7fe (UsedFor trombone play_music) (STV 1.0 0.9091)) +(: cnet_usedfor_147e85510a (UsedFor trombone playing_music) (STV 1.0 0.9524)) +(: cnet_usedfor_c06bfc5918 (UsedFor trumpet making_music) (STV 1.0 0.9339)) +(: cnet_usedfor_d9c80542d3 (UsedFor trumpet playing_music) (STV 1.0 0.9339)) +(: cnet_usedfor_49760b4751 (UsedFor trumpet playing_tap) (STV 1.0 0.9091)) +(: cnet_usedfor_626ce0114c (UsedFor try attempt) (STV 1.0 0.9339)) +(: cnet_usedfor_e00fc81b7d (UsedFor tub bath) (STV 1.0 0.9091)) +(: cnet_usedfor_1507603ed9 (UsedFor tub soaking) (STV 1.0 0.9091)) +(: cnet_usedfor_4ee6695580 (UsedFor tub take_bath) (STV 1.0 0.9339)) +(: cnet_usedfor_ce1648a00e (UsedFor tub taking_bath) (STV 1.0 0.9454)) +(: cnet_usedfor_b7675e632e (UsedFor tub taking_bubble_bath) (STV 1.0 0.9339)) +(: cnet_usedfor_a990947360 (UsedFor tuba making_music) (STV 1.0 0.9091)) +(: cnet_usedfor_9d76ea058c (UsedFor tuba play_in_band) (STV 1.0 0.9091)) +(: cnet_usedfor_80eb5df266 (UsedFor tuba play_music) (STV 1.0 0.9454)) +(: cnet_usedfor_644cdbb2f2 (UsedFor turn_signal communicate_intention) (STV 1.0 0.9091)) +(: cnet_usedfor_9327753f96 (UsedFor turnpike driving) (STV 1.0 0.9524)) +(: cnet_usedfor_d83cce5bd5 (UsedFor turnstile control_access_to_stadium) (STV 1.0 0.9091)) +(: cnet_usedfor_e996ed1361 (UsedFor turnstile controlling_access) (STV 1.0 0.9339)) +(: cnet_usedfor_4f997fcfe1 (UsedFor tv display_transmitted_image) (STV 1.0 0.9091)) +(: cnet_usedfor_50f5bd0e45 (UsedFor tv entertainment) (STV 1.0 0.9572)) +(: cnet_usedfor_a96a68cf2e (UsedFor tv getting_information) (STV 1.0 0.9091)) +(: cnet_usedfor_aded99bb63 (UsedFor tv give_information) (STV 1.0 0.9339)) +(: cnet_usedfor_244661533e (UsedFor tv learning) (STV 1.0 0.9091)) +(: cnet_usedfor_7b5c196e36 (UsedFor tv watch_new) (STV 1.0 0.9339)) +(: cnet_usedfor_60c378a087 (UsedFor tv watch_show) (STV 1.0 0.9091)) +(: cnet_usedfor_198a985638 (UsedFor tv watching) (STV 1.0 0.9091)) +(: cnet_usedfor_692db66156 (UsedFor tv watching_film) (STV 1.0 0.9091)) +(: cnet_usedfor_b3d412572d (UsedFor tv watching_movy) (STV 1.0 0.9454)) +(: cnet_usedfor_001283cdbc (UsedFor tying_shoelace keeping_shoe_on) (STV 1.0 0.9608)) +(: cnet_usedfor_234ff807b7 (UsedFor tying_shoelace keeping_shoe_on_foot) (STV 1.0 0.9339)) +(: cnet_usedfor_b6d0a0a5a3 (UsedFor tying_shoelace not_looking_like_slob) (STV 1.0 0.9091)) +(: cnet_usedfor_d7b6021523 (UsedFor tying_shoelace preventing_from_tripping) (STV 1.0 0.9339)) +(: cnet_usedfor_74b0d10022 (UsedFor typewriter fill_in_form) (STV 1.0 0.9091)) +(: cnet_usedfor_652baaa21a (UsedFor typewriter typing_letter) (STV 1.0 0.9572)) +(: cnet_usedfor_4f8eda1942 (UsedFor typewriter write_letter) (STV 1.0 0.9454)) +(: cnet_usedfor_b7f5b7a958 (UsedFor typewriter write_novel) (STV 1.0 0.9339)) +(: cnet_usedfor_3d42f45989 (UsedFor typewriter writing_letter) (STV 1.0 0.9091)) +(: cnet_usedfor_bf4fb426df (UsedFor typewriter_key pressing) (STV 1.0 0.9091)) +(: cnet_usedfor_3dc8dbf313 (UsedFor typewriter_keyboard input) (STV 1.0 0.9091)) +(: cnet_usedfor_0c9a799220 (UsedFor typewriter_keyboard type_word_on_paper) (STV 1.0 0.9091)) +(: cnet_usedfor_ebab768137 (UsedFor typing entering_data) (STV 1.0 0.9091)) +(: cnet_usedfor_09a1cfc906 (UsedFor umbrella help_keep_dry) (STV 1.0 0.9091)) +(: cnet_usedfor_0dfcddb882 (UsedFor umbrella keep_yourself_dry) (STV 1.0 0.9091)) +(: cnet_usedfor_4942c07ec0 (UsedFor umbrella keeping_dry) (STV 1.0 0.9339)) +(: cnet_usedfor_5b9fe6b838 (UsedFor umbrella keeping_sun_off) (STV 1.0 0.9339)) +(: cnet_usedfor_5ddcd24afc (UsedFor umbrella protection_from_rain) (STV 1.0 0.9572)) +(: cnet_usedfor_e5d7a47e63 (UsedFor umbrella shelter_from_rain) (STV 1.0 0.9339)) +(: cnet_usedfor_403c76a301 (UsedFor umbrella stay_dry_in_rain) (STV 1.0 0.9091)) +(: cnet_usedfor_3fc539bcc1 (UsedFor underground_area hiding) (STV 1.0 0.9339)) +(: cnet_usedfor_2189a8f7ad (UsedFor underground_area store_thing) (STV 1.0 0.9091)) +(: cnet_usedfor_ca484e9618 (UsedFor underground_map sewer) (STV 1.0 0.9091)) +(: cnet_usedfor_ca323f2ca4 (UsedFor underground_map showing_where_thing_underground) (STV 1.0 0.9091)) +(: cnet_usedfor_97c1a3ed08 (UsedFor union commercial_gain) (STV 1.0 0.9091)) +(: cnet_usedfor_e43ed0fd0c (UsedFor union preventing_abuse) (STV 1.0 0.9091)) +(: cnet_usedfor_b67008125a (UsedFor union preventing_cruelty) (STV 1.0 0.9091)) +(: cnet_usedfor_1e96d5662f (UsedFor union promoting_happiness) (STV 1.0 0.9091)) +(: cnet_usedfor_1f0939bb00 (UsedFor united_state freedom_and_refuge) (STV 1.0 0.9091)) +(: cnet_usedfor_bec4fe977d (UsedFor united_state living_in) (STV 1.0 0.9091)) +(: cnet_usedfor_31bb51aed5 (UsedFor united_state protecting_citizen) (STV 1.0 0.9091)) +(: cnet_usedfor_799e3b75e1 (UsedFor united_state protecting_people_living_within_border) (STV 1.0 0.9091)) +(: cnet_usedfor_cd6ba18ac5 (UsedFor united_state protection) (STV 1.0 0.9091)) +(: cnet_usedfor_046c956d6e (UsedFor university learning) (STV 1.0 0.9091)) +(: cnet_usedfor_0a027d6aa7 (UsedFor urinating getting_rid_of_bodily_waste) (STV 1.0 0.9091)) +(: cnet_usedfor_83531afc2a (UsedFor urinating relief) (STV 1.0 0.9454)) +(: cnet_usedfor_867d5bbbcb (UsedFor urinating relieving_bladder) (STV 1.0 0.9524)) +(: cnet_usedfor_4a09ec2e3b (UsedFor using_calculator doing_math) (STV 1.0 0.9091)) +(: cnet_usedfor_4eb8f83d8a (UsedFor using_calculator subtraction) (STV 1.0 0.9091)) +(: cnet_usedfor_932f8f529a (UsedFor using_computer adult) (STV 1.0 0.9091)) +(: cnet_usedfor_eb7fda1b65 (UsedFor using_computer calculating) (STV 1.0 0.9339)) +(: cnet_usedfor_824d300d3b (UsedFor using_computer children) (STV 1.0 0.9091)) +(: cnet_usedfor_34f334dc3a (UsedFor using_computer friend) (STV 1.0 0.9091)) +(: cnet_usedfor_73ac69e04b (UsedFor using_computer student) (STV 1.0 0.9091)) +(: cnet_usedfor_190a70eef9 (UsedFor using_computer teacher) (STV 1.0 0.9091)) +(: cnet_usedfor_2cdb71dc51 (UsedFor using_computer working) (STV 1.0 0.9608)) +(: cnet_usedfor_477a0e23c0 (UsedFor using_computer writing_letter) (STV 1.0 0.9091)) +(: cnet_usedfor_e26ff70a1c (UsedFor using_television being_entertained) (STV 1.0 0.9091)) +(: cnet_usedfor_b976893fda (UsedFor using_television learning_new) (STV 1.0 0.9091)) +(: cnet_usedfor_bf8cd682ce (UsedFor using_television resting_vase_of_flower_on) (STV 1.0 0.9091)) +(: cnet_usedfor_ca97ae4996 (UsedFor using_television watching_movie) (STV 1.0 0.9091)) +(: cnet_usedfor_bd01ff87aa (UsedFor using_television watching_new) (STV 1.0 0.9091)) +(: cnet_usedfor_20870104c6 (UsedFor using_vcr recording_movie) (STV 1.0 0.9091)) +(: cnet_usedfor_0291037e50 (UsedFor using_vcr recording_television_show) (STV 1.0 0.9339)) +(: cnet_usedfor_36319fe43a (UsedFor utility_case carry_stuff) (STV 1.0 0.9091)) +(: cnet_usedfor_4800557fdc (UsedFor utility_case carry_tool) (STV 1.0 0.9091)) +(: cnet_usedfor_97bd070710 (UsedFor utility_case multiple_purpos) (STV 1.0 0.9091)) +(: cnet_usedfor_0906720495 (UsedFor vaccine prevent_disease) (STV 1.0 0.9454)) +(: cnet_usedfor_0126669cfd (UsedFor vcr watching_vcr_tape) (STV 1.0 0.9091)) +(: cnet_usedfor_00e034e8ae (UsedFor vegetable_garden grow_pea) (STV 1.0 0.9091)) +(: cnet_usedfor_ace4da73da (UsedFor vegetable_garden growing_food) (STV 1.0 0.9091)) +(: cnet_usedfor_6af178ec51 (UsedFor vegetable_garden growing_pea) (STV 1.0 0.9454)) +(: cnet_usedfor_24c11e0d93 (UsedFor vegetable_garden growing_vegetable) (STV 1.0 0.9524)) +(: cnet_usedfor_c09a3e1bfc (UsedFor vegetarian_restaurant people_who_do_not_eat_meat) (STV 1.0 0.9091)) +(: cnet_usedfor_4572dbedf9 (UsedFor vent_brush cleaning_vent) (STV 1.0 0.9339)) +(: cnet_usedfor_523782b58d (UsedFor ventilation_system get_fresh_air) (STV 1.0 0.9091)) +(: cnet_usedfor_998f8de347 (UsedFor verb denote_action) (STV 1.0 0.9091)) +(: cnet_usedfor_98b32d9e8c (UsedFor verb expressing_action) (STV 1.0 0.9091)) +(: cnet_usedfor_a2f2a014dc (UsedFor vessel shipping) (STV 1.0 0.9091)) +(: cnet_usedfor_6f767f734c (UsedFor vessel storing_liquid) (STV 1.0 0.9091)) +(: cnet_usedfor_70d6e8345d (UsedFor vice squeeze) (STV 1.0 0.9091)) +(: cnet_usedfor_c0aa95d81b (UsedFor viewing_film_at_home entertaining_yourself) (STV 1.0 0.9091)) +(: cnet_usedfor_511aae6ab1 (UsedFor viewing_video educating) (STV 1.0 0.9091)) +(: cnet_usedfor_0d0688b1f7 (UsedFor viewing_video entertaining) (STV 1.0 0.9339)) +(: cnet_usedfor_8a41fa87ab (UsedFor viewing_video entertainment) (STV 1.0 0.9091)) +(: cnet_usedfor_8b81e052b2 (UsedFor viewing_video fun) (STV 1.0 0.9091)) +(: cnet_usedfor_8ece71f308 (UsedFor viewing_video learning) (STV 1.0 0.9339)) +(: cnet_usedfor_284a220618 (UsedFor viewing_video relaxing) (STV 1.0 0.9091)) +(: cnet_usedfor_1a0a0eff89 (UsedFor viola play_music) (STV 1.0 0.9339)) +(: cnet_usedfor_4e27fd82dd (UsedFor viola playing_music) (STV 1.0 0.9091)) +(: cnet_usedfor_a0520099b1 (UsedFor violin creating) (STV 1.0 0.9091)) +(: cnet_usedfor_8f14d6699a (UsedFor violin play_music) (STV 1.0 0.9339)) +(: cnet_usedfor_86500cdedc (UsedFor violin playing_music) (STV 1.0 0.9659)) +(: cnet_usedfor_7158ec478b (UsedFor visiting_art_gallery relaxing) (STV 1.0 0.9091)) +(: cnet_usedfor_7a6ffce3ae (UsedFor visiting_art_gallery viewing_art) (STV 1.0 0.9091)) +(: cnet_usedfor_8066fb43b5 (UsedFor visiting_art_gallery viewing_favorite_type_of_art) (STV 1.0 0.9091)) +(: cnet_usedfor_8685785d53 (UsedFor visiting_museum fun) (STV 1.0 0.9091)) +(: cnet_usedfor_25c6b2e3fb (UsedFor visiting_museum learning_history) (STV 1.0 0.9091)) +(: cnet_usedfor_04d82c5711 (UsedFor visiting_other_country archaeology) (STV 1.0 0.9091)) +(: cnet_usedfor_d026c6fcb1 (UsedFor visiting_other_country learning_about_other_culture) (STV 1.0 0.9454)) +(: cnet_usedfor_e0b0ca77c4 (UsedFor visiting_other_country learning_from_other_culture) (STV 1.0 0.9339)) +(: cnet_usedfor_77ce5a73ad (UsedFor visiting_other_country pleasure) (STV 1.0 0.9091)) +(: cnet_usedfor_125efa181f (UsedFor visiting_other_country travel) (STV 1.0 0.9091)) +(: cnet_usedfor_3ec90919ad (UsedFor voice communicate) (STV 1.0 0.9524)) +(: cnet_usedfor_15b0cf6bee (UsedFor voice communication) (STV 1.0 0.9091)) +(: cnet_usedfor_81c3e7d7ec (UsedFor voice shout) (STV 1.0 0.9091)) +(: cnet_usedfor_6e11b13451 (UsedFor voice singing) (STV 1.0 0.9740)) +(: cnet_usedfor_8970a45798 (UsedFor voice talking) (STV 1.0 0.9524)) +(: cnet_usedfor_60a6a410b3 (UsedFor waging_war conquering_enemy) (STV 1.0 0.9091)) +(: cnet_usedfor_08be2005e3 (UsedFor waging_war gaining_territory) (STV 1.0 0.9339)) +(: cnet_usedfor_1ff4484e3a (UsedFor waging_war hitler) (STV 1.0 0.9091)) +(: cnet_usedfor_df33aa6afd (UsedFor waging_war hurting_other) (STV 1.0 0.9091)) +(: cnet_usedfor_d158550088 (UsedFor waiting_in_line buying_ticket) (STV 1.0 0.9339)) +(: cnet_usedfor_5be6f63dec (UsedFor waiting_in_line patient_people) (STV 1.0 0.9091)) +(: cnet_usedfor_43f78b2172 (UsedFor waiting_in_line waiting_until_it_s_turn) (STV 1.0 0.9091)) +(: cnet_usedfor_071a075dbb (UsedFor waiting_on_table getting_tip) (STV 1.0 0.9091)) +(: cnet_usedfor_5201130d50 (UsedFor waiting_on_table taking_order_for_food) (STV 1.0 0.9339)) +(: cnet_usedfor_77a749ad67 (UsedFor waiting_table earning_money) (STV 1.0 0.9091)) +(: cnet_usedfor_56fc995d36 (UsedFor waiting_table earning_tip) (STV 1.0 0.9091)) +(: cnet_usedfor_3a49ec4893 (UsedFor waiting_table making_money) (STV 1.0 0.9091)) +(: cnet_usedfor_a899ddf4a8 (UsedFor waiting_table serving_customer) (STV 1.0 0.9091)) +(: cnet_usedfor_ef684c229c (UsedFor waiting_table serving_food) (STV 1.0 0.9091)) +(: cnet_usedfor_ddb50398f8 (UsedFor waking_up_in_morning getting_out_of_bed) (STV 1.0 0.9091)) +(: cnet_usedfor_dbebda1de3 (UsedFor walk_in_closet storing_lot_of_clothe) (STV 1.0 0.9091)) +(: cnet_usedfor_d5342f96f9 (UsedFor walking exercise) (STV 1.0 0.9339)) +(: cnet_usedfor_0c03078f6e (UsedFor walking getting_from_one_place_to_another) (STV 1.0 0.9339)) +(: cnet_usedfor_8d5cc68eba (UsedFor walking getting_somewhere) (STV 1.0 0.9339)) +(: cnet_usedfor_7abd29c3ac (UsedFor walking going_somewhere) (STV 1.0 0.9091)) +(: cnet_usedfor_60e7250c4e (UsedFor walking health_of) (STV 1.0 0.9091)) +(: cnet_usedfor_07bddd52f0 (UsedFor walking_around_lake having_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_e00f235700 (UsedFor walking_around_lake relaxation) (STV 1.0 0.9091)) +(: cnet_usedfor_59251bc898 (UsedFor wall divide_open_space_into_smaller_area) (STV 1.0 0.9339)) +(: cnet_usedfor_1266d6ba9a (UsedFor wall dividing_country) (STV 1.0 0.9091)) +(: cnet_usedfor_c460834a4c (UsedFor wall holding_up_roof) (STV 1.0 0.9339)) +(: cnet_usedfor_f9a7e5dbf6 (UsedFor wallet hold_credit_card) (STV 1.0 0.9091)) +(: cnet_usedfor_6299656923 (UsedFor wallet holding_money) (STV 1.0 0.9091)) +(: cnet_usedfor_07e8c50d6a (UsedFor war commiting_genocide) (STV 1.0 0.9091)) +(: cnet_usedfor_27debb8eae (UsedFor wardrobe hang_clothe_in) (STV 1.0 0.9091)) +(: cnet_usedfor_6fdab09675 (UsedFor wardrobe keeping_clothe) (STV 1.0 0.9091)) +(: cnet_usedfor_481caeef86 (UsedFor wardrobe put_clothe_in) (STV 1.0 0.9091)) +(: cnet_usedfor_cdb112bc6d (UsedFor wash_cloth bath) (STV 1.0 0.9339)) +(: cnet_usedfor_0e0b876de3 (UsedFor wash_cloth cleaning) (STV 1.0 0.9572)) +(: cnet_usedfor_fb6fc27c96 (UsedFor washcloth wash_face) (STV 1.0 0.9091)) +(: cnet_usedfor_ff7e6542db (UsedFor washcloth washing_face) (STV 1.0 0.9339)) +(: cnet_usedfor_ff261e8dba (UsedFor washing_car keeping_clean) (STV 1.0 0.9091)) +(: cnet_usedfor_5161f83152 (UsedFor washing_clothe cleaning) (STV 1.0 0.9091)) +(: cnet_usedfor_56a43ede79 (UsedFor washing_clothe cleaning_dirty_clothe) (STV 1.0 0.9091)) +(: cnet_usedfor_3824fcddde (UsedFor washing_clothe getting_clean) (STV 1.0 0.9091)) +(: cnet_usedfor_3f7b3244e1 (UsedFor washing_clothe getting_clothe_clean) (STV 1.0 0.9339)) +(: cnet_usedfor_9d1cc1163c (UsedFor washing_clothe getting_rid_of_dirt) (STV 1.0 0.9091)) +(: cnet_usedfor_a9e187c414 (UsedFor washing_clothe having_clean_clothe_to_wear) (STV 1.0 0.9091)) +(: cnet_usedfor_257e17d291 (UsedFor washing_clothe keeping_clean) (STV 1.0 0.9339)) +(: cnet_usedfor_010c828627 (UsedFor washing_clothe making_clothe_clean) (STV 1.0 0.9091)) +(: cnet_usedfor_fb9aecacb6 (UsedFor washing_clothe making_smell_good) (STV 1.0 0.9091)) +(: cnet_usedfor_53ad5d7dfb (UsedFor washing_clothe removing_dirt) (STV 1.0 0.9572)) +(: cnet_usedfor_47a8f8afaa (UsedFor washing_clothe removing_stain) (STV 1.0 0.9091)) +(: cnet_usedfor_cda54aa3ec (UsedFor washing_hand cleaning_dirt_off) (STV 1.0 0.9091)) +(: cnet_usedfor_c728a3ccde (UsedFor washing_hand cleaning_hand) (STV 1.0 0.9339)) +(: cnet_usedfor_b180254df6 (UsedFor washing_hand hygeine) (STV 1.0 0.9339)) +(: cnet_usedfor_bff87630cd (UsedFor washing_hand removing_dirt) (STV 1.0 0.9091)) +(: cnet_usedfor_ab9e8b12fe (UsedFor washing_machine washing_clothe) (STV 1.0 0.9454)) +(: cnet_usedfor_9cff47d5d3 (UsedFor watch being_on_time) (STV 1.0 0.9091)) +(: cnet_usedfor_5404ee20be (UsedFor watch keeping_track_of_time) (STV 1.0 0.9454)) +(: cnet_usedfor_db3c62a07d (UsedFor watch time) (STV 1.0 0.9454)) +(: cnet_usedfor_880f925f06 (UsedFor watching_evening_new being_informed) (STV 1.0 0.9091)) +(: cnet_usedfor_9a072e7fce (UsedFor watching_film enjoyment) (STV 1.0 0.9091)) +(: cnet_usedfor_ba1a2ab6fe (UsedFor watching_film entertainment) (STV 1.0 0.9454)) +(: cnet_usedfor_87d5954ed3 (UsedFor watching_film fun) (STV 1.0 0.9524)) +(: cnet_usedfor_baf245bef0 (UsedFor watching_film relaxation) (STV 1.0 0.9091)) +(: cnet_usedfor_38027916db (UsedFor watching_movie fun) (STV 1.0 0.9091)) +(: cnet_usedfor_7091f185b9 (UsedFor watching_musician_perform relaxation) (STV 1.0 0.9091)) +(: cnet_usedfor_407c0d275f (UsedFor watching_musician_perform relaxing) (STV 1.0 0.9091)) +(: cnet_usedfor_af2b07238b (UsedFor watching_television education) (STV 1.0 0.9454)) +(: cnet_usedfor_a995437713 (UsedFor watching_television entertainment) (STV 1.0 0.9524)) +(: cnet_usedfor_5f963a5568 (UsedFor watching_television learning) (STV 1.0 0.9091)) +(: cnet_usedfor_0e1aa4fe01 (UsedFor watching_television_show entertainment) (STV 1.0 0.9339)) +(: cnet_usedfor_c59884f394 (UsedFor watching_television_show passive_entertainment) (STV 1.0 0.9091)) +(: cnet_usedfor_dfa286f9a4 (UsedFor watching_tv education) (STV 1.0 0.9091)) +(: cnet_usedfor_e5b8f62ec2 (UsedFor watching_tv learning) (STV 1.0 0.9454)) +(: cnet_usedfor_2b66360eb7 (UsedFor watching_tv relaxation) (STV 1.0 0.9339)) +(: cnet_usedfor_ef6992d30d (UsedFor watching_tv_show entertaining) (STV 1.0 0.9524)) +(: cnet_usedfor_04de295136 (UsedFor watching_tv_show entertainment) (STV 1.0 0.9524)) +(: cnet_usedfor_1c732aeabf (UsedFor watching_tv_show learning) (STV 1.0 0.9572)) +(: cnet_usedfor_3fb5b7c1ea (UsedFor watching_tv_show passing_time) (STV 1.0 0.9339)) +(: cnet_usedfor_4124c61abd (UsedFor watching_tv_show wasting_time) (STV 1.0 0.9091)) +(: cnet_usedfor_27f433fb7d (UsedFor watching_tv_show zoning_out) (STV 1.0 0.9091)) +(: cnet_usedfor_de3463c21f (UsedFor water bathing) (STV 1.0 0.9454)) +(: cnet_usedfor_980d663ffa (UsedFor water cleaning) (STV 1.0 0.9454)) +(: cnet_usedfor_c441dfda51 (UsedFor water drink) (STV 1.0 0.9763)) +(: cnet_usedfor_7c9cb4474d (UsedFor water drinking) (STV 1.0 0.9524)) +(: cnet_usedfor_629db9ae6e (UsedFor water extinguish_most_fire) (STV 1.0 0.9454)) +(: cnet_usedfor_640247dd02 (UsedFor water hydration) (STV 1.0 0.9091)) +(: cnet_usedfor_6fd970dcaf (UsedFor water put_out_fire) (STV 1.0 0.9339)) +(: cnet_usedfor_b2dc85b90d (UsedFor water quench_thirst) (STV 1.0 0.9339)) +(: cnet_usedfor_3b6795b45d (UsedFor water quenching_thirst) (STV 1.0 0.9572)) +(: cnet_usedfor_50ef645650 (UsedFor water swimming_in) (STV 1.0 0.9091)) +(: cnet_usedfor_eade32d757 (UsedFor water wash) (STV 1.0 0.9339)) +(: cnet_usedfor_a57cd8e680 (UsedFor water washing) (STV 1.0 0.9091)) +(: cnet_usedfor_d2843680d5 (UsedFor water washing_dishe) (STV 1.0 0.9091)) +(: cnet_usedfor_004d210afd (UsedFor water watering_plant) (STV 1.0 0.9339)) +(: cnet_usedfor_7d9646c50b (UsedFor water_spout pour_water) (STV 1.0 0.9091)) +(: cnet_usedfor_d2043fab21 (UsedFor watering_plant it_s_growth) (STV 1.0 0.9091)) +(: cnet_usedfor_68f717161a (UsedFor watering_plant keeping_healthy) (STV 1.0 0.9091)) +(: cnet_usedfor_2e28354192 (UsedFor watering_plant making_leave_green) (STV 1.0 0.9091)) +(: cnet_usedfor_83a2563c91 (UsedFor waxed_dental_floss clean_teeth) (STV 1.0 0.9091)) +(: cnet_usedfor_cf730ded05 (UsedFor waxed_dental_floss flossing_teeth) (STV 1.0 0.9524)) +(: cnet_usedfor_0e25690689 (UsedFor weapon hurt) (STV 1.0 0.9572)) +(: cnet_usedfor_3fe33fb18a (UsedFor weapon kill) (STV 1.0 0.9524)) +(: cnet_usedfor_a42c821ea3 (UsedFor weapon killing) (STV 1.0 0.9719)) +(: cnet_usedfor_dc1c3369bd (UsedFor weapon self_defense) (STV 1.0 0.9091)) +(: cnet_usedfor_3339c03b02 (UsedFor weapon threatening) (STV 1.0 0.9339)) +(: cnet_usedfor_c56099d2b5 (UsedFor weapon kill_people) (STV 1.0 0.9091)) +(: cnet_usedfor_dd48fb08de (UsedFor wedding_chapel get_married_in) (STV 1.0 0.9091)) +(: cnet_usedfor_f014ecdb24 (UsedFor wedding_chapel shotgun_wedding) (STV 1.0 0.9091)) +(: cnet_usedfor_4f2206edd2 (UsedFor wedding_ring marrying) (STV 1.0 0.9091)) +(: cnet_usedfor_88b17fbbda (UsedFor wedding_ring propose_marriage) (STV 1.0 0.9091)) +(: cnet_usedfor_8131a6dbb2 (UsedFor wedding_ring symbolize_relationship) (STV 1.0 0.9091)) +(: cnet_usedfor_0bf79cc64c (UsedFor wedding_ring symbolizing_marriage) (STV 1.0 0.9091)) +(: cnet_usedfor_043a1b119d (UsedFor weeding_garden gardener) (STV 1.0 0.9339)) +(: cnet_usedfor_3b2fe3aaf4 (UsedFor weeding_garden getting_rid_of_unwanted_plant) (STV 1.0 0.9339)) +(: cnet_usedfor_7f7409b19e (UsedFor weeding_garden getting_rid_of_weed) (STV 1.0 0.9454)) +(: cnet_usedfor_79b5574107 (UsedFor weeding_garden helping_garden_look_better) (STV 1.0 0.9091)) +(: cnet_usedfor_a0bbe1fe25 (UsedFor well get_water) (STV 1.0 0.9339)) +(: cnet_usedfor_b752567a07 (UsedFor wheat flour) (STV 1.0 0.9091)) +(: cnet_usedfor_3aca9b0b8c (UsedFor wheat make_flour) (STV 1.0 0.9454)) +(: cnet_usedfor_7bd53003dc (UsedFor wheat making_flour) (STV 1.0 0.9091)) +(: cnet_usedfor_56e45b3825 (UsedFor wheel rolling) (STV 1.0 0.9339)) +(: cnet_usedfor_23011de3d4 (UsedFor wheel turn) (STV 1.0 0.9091)) +(: cnet_usedfor_891c7e955e (UsedFor whore sex) (STV 1.0 0.9339)) +(: cnet_usedfor_a75f94e877 (UsedFor wind_instrument create_music) (STV 1.0 0.9091)) +(: cnet_usedfor_c7614821f0 (UsedFor wind_instrument making_music) (STV 1.0 0.9454)) +(: cnet_usedfor_041db85021 (UsedFor wind_instrument musical_band) (STV 1.0 0.9091)) +(: cnet_usedfor_195915029f (UsedFor window keep_cold_air_out) (STV 1.0 0.9091)) +(: cnet_usedfor_f410032d14 (UsedFor window letting_fresh_air_into_room) (STV 1.0 0.9339)) +(: cnet_usedfor_d2198178b8 (UsedFor window letting_light_in_building) (STV 1.0 0.9339)) +(: cnet_usedfor_e7e1fc19be (UsedFor window look_out_of) (STV 1.0 0.9339)) +(: cnet_usedfor_2cc23767f9 (UsedFor window look_outside) (STV 1.0 0.9524)) +(: cnet_usedfor_01b01d6e69 (UsedFor window looking_outside) (STV 1.0 0.9339)) +(: cnet_usedfor_842ef0d745 (UsedFor window_curtain decorate_window) (STV 1.0 0.9454)) +(: cnet_usedfor_0fc4d7c96a (UsedFor window_curtain decorating_window) (STV 1.0 0.9091)) +(: cnet_usedfor_c5a4cefd73 (UsedFor window_curtain provide_privacy) (STV 1.0 0.9339)) +(: cnet_usedfor_f92dad7adf (UsedFor window_curtain providing_privacy) (STV 1.0 0.9091)) +(: cnet_usedfor_a70d6ee0fc (UsedFor wine drinking) (STV 1.0 0.9719)) +(: cnet_usedfor_a921cd1b66 (UsedFor wine get_drunk) (STV 1.0 0.9091)) +(: cnet_usedfor_eab6d1d8c8 (UsedFor wine getting_drunk) (STV 1.0 0.9339)) +(: cnet_usedfor_1ef6f831b5 (UsedFor wine_cellar storing_wine_at_right_temperature) (STV 1.0 0.9091)) +(: cnet_usedfor_483207dabc (UsedFor wing bird) (STV 1.0 0.9091)) +(: cnet_usedfor_1e81957ef6 (UsedFor wing fly) (STV 1.0 0.9091)) +(: cnet_usedfor_061d44b31f (UsedFor wing flying) (STV 1.0 0.9339)) +(: cnet_usedfor_00846fdb07 (UsedFor wing providing_lift) (STV 1.0 0.9339)) +(: cnet_usedfor_0808521664 (UsedFor wing aircraft) (STV 1.0 0.9091)) +(: cnet_usedfor_380a64dcab (UsedFor wing flight) (STV 1.0 0.9091)) +(: cnet_usedfor_13cba60ff2 (UsedFor wing raise) (STV 1.0 0.9091)) +(: cnet_usedfor_c5e48d3bc0 (UsedFor wing flapping) (STV 1.0 0.9454)) +(: cnet_usedfor_89d4c08cd3 (UsedFor winning_baseball_game having_fun) (STV 1.0 0.9091)) +(: cnet_usedfor_feb5c6b14c (UsedFor wire conducting_electricity) (STV 1.0 0.9091)) +(: cnet_usedfor_82c0bccd16 (UsedFor wire fasten) (STV 1.0 0.9091)) +(: cnet_usedfor_1aff669476 (UsedFor wire fastener) (STV 1.0 0.9091)) +(: cnet_usedfor_a12f8ea308 (UsedFor wire shape) (STV 1.0 0.9091)) +(: cnet_usedfor_004f6cd5d4 (UsedFor wire conduct_electricity) (STV 1.0 0.9091)) +(: cnet_usedfor_122f15ad30 (UsedFor wisk mixing_batter) (STV 1.0 0.9091)) +(: cnet_usedfor_52d257297d (UsedFor wok fry_food) (STV 1.0 0.9091)) +(: cnet_usedfor_37ce46152c (UsedFor wok stir_frying_food) (STV 1.0 0.9091)) +(: cnet_usedfor_abd1d30023 (UsedFor wood build_boat) (STV 1.0 0.9454)) +(: cnet_usedfor_3cdd9c9c40 (UsedFor wood building) (STV 1.0 0.9339)) +(: cnet_usedfor_07f4637d93 (UsedFor wood fence_in_property) (STV 1.0 0.9707)) +(: cnet_usedfor_39c4b12926 (UsedFor wooden_rod walking_stick) (STV 1.0 0.9339)) +(: cnet_usedfor_1150286eed (UsedFor woodwind making_music) (STV 1.0 0.9524)) +(: cnet_usedfor_d50d809259 (UsedFor woodwind play_music) (STV 1.0 0.9091)) +(: cnet_usedfor_14f8188d7a (UsedFor woodwind playing_music) (STV 1.0 0.9339)) +(: cnet_usedfor_844aa343df (UsedFor woodwind_family music) (STV 1.0 0.9339)) +(: cnet_usedfor_27584fe093 (UsedFor woodwind_instrument music) (STV 1.0 0.9339)) +(: cnet_usedfor_dc85a46e1b (UsedFor woodwind_instrument play_music) (STV 1.0 0.9091)) +(: cnet_usedfor_de60c332e8 (UsedFor woodwind_instrument playing_to_make_music) (STV 1.0 0.9091)) +(: cnet_usedfor_de281be8a8 (UsedFor wool make_yarn) (STV 1.0 0.9091)) +(: cnet_usedfor_c356a9a3cf (UsedFor wool sweater) (STV 1.0 0.9091)) +(: cnet_usedfor_20f434d909 (UsedFor woolen_fabric make_clothe) (STV 1.0 0.9572)) +(: cnet_usedfor_53748c7b1a (UsedFor woolen_fabric making_sweater) (STV 1.0 0.9091)) +(: cnet_usedfor_4bd4107bef (UsedFor word communicate_with) (STV 1.0 0.9091)) +(: cnet_usedfor_818be9b863 (UsedFor work_of_art admiring) (STV 1.0 0.9339)) +(: cnet_usedfor_9df99d28f1 (UsedFor work_of_art appreciation) (STV 1.0 0.9091)) +(: cnet_usedfor_6ddce505bc (UsedFor working accomplishing_goal) (STV 1.0 0.9091)) +(: cnet_usedfor_a8c1bede5c (UsedFor working creating) (STV 1.0 0.9091)) +(: cnet_usedfor_6e54217658 (UsedFor working earning_money) (STV 1.0 0.9091)) +(: cnet_usedfor_72c1893aec (UsedFor working producing) (STV 1.0 0.9339)) +(: cnet_usedfor_5a6bf8ad1c (UsedFor working providing_opportunity_to_advance) (STV 1.0 0.9091)) +(: cnet_usedfor_11fef4b6df (UsedFor world live_in) (STV 1.0 0.9091)) +(: cnet_usedfor_66c73fdcf4 (UsedFor wound get_sympathy) (STV 1.0 0.9091)) +(: cnet_usedfor_8ceb7fb5a4 (UsedFor wrench tighten_bolt) (STV 1.0 0.9091)) +(: cnet_usedfor_d2e649a26f (UsedFor wrestling sport) (STV 1.0 0.9091)) +(: cnet_usedfor_795de39f1d (UsedFor wristwatch keeping_time) (STV 1.0 0.9524)) +(: cnet_usedfor_492ff9a6dc (UsedFor wristwatch keeping_track_of_time) (STV 1.0 0.9091)) +(: cnet_usedfor_f25260867f (UsedFor wristwatch tell_time) (STV 1.0 0.9608)) +(: cnet_usedfor_a0c6ca0003 (UsedFor wristwatch telling_time) (STV 1.0 0.9454)) +(: cnet_usedfor_537d39cf2e (UsedFor wristwatch timing_or) (STV 1.0 0.9091)) +(: cnet_usedfor_cf19c68f7f (UsedFor writer write_book) (STV 1.0 0.9091)) +(: cnet_usedfor_3fd9f89c85 (UsedFor writer writing_story) (STV 1.0 0.9091)) +(: cnet_usedfor_68ac7cde46 (UsedFor writing communicate) (STV 1.0 0.9572)) +(: cnet_usedfor_f04824f8d0 (UsedFor writing communicating_thought) (STV 1.0 0.9339)) +(: cnet_usedfor_e03f83380f (UsedFor writing communication) (STV 1.0 0.9091)) +(: cnet_usedfor_4975c2c121 (UsedFor writing expressing_feeling) (STV 1.0 0.9339)) +(: cnet_usedfor_9cab1b7e9b (UsedFor writing_case carry_pen) (STV 1.0 0.9339)) +(: cnet_usedfor_bc21f6ea82 (UsedFor writing_case holding_writing_material) (STV 1.0 0.9091)) +(: cnet_usedfor_245f52d5a4 (UsedFor writing_instrument drawing_picture) (STV 1.0 0.9339)) +(: cnet_usedfor_e4d9acaca6 (UsedFor writing_instrument making_note) (STV 1.0 0.9454)) +(: cnet_usedfor_382af1e2ce (UsedFor writing_instrument marking) (STV 1.0 0.9091)) +(: cnet_usedfor_f45cd89a51 (UsedFor writing_instrument practicing_penmanship) (STV 1.0 0.9091)) +(: cnet_usedfor_b03597124b (UsedFor writing_instrument scribble) (STV 1.0 0.9339)) +(: cnet_usedfor_84c14abc3f (UsedFor writing_instrument write) (STV 1.0 0.9091)) +(: cnet_usedfor_57d811748f (UsedFor writing_instrument write_note) (STV 1.0 0.9339)) +(: cnet_usedfor_65e33c4b57 (UsedFor writing_instrument writing) (STV 1.0 0.9608)) +(: cnet_usedfor_09b534f89a (UsedFor writing_instrument writing_letter) (STV 1.0 0.9454)) +(: cnet_usedfor_aeab43b75f (UsedFor writing_letter communicating) (STV 1.0 0.9339)) +(: cnet_usedfor_69280f9a05 (UsedFor writing_letter sending_information) (STV 1.0 0.9091)) +(: cnet_usedfor_d62334c50e (UsedFor writing_letter sending_information_to) (STV 1.0 0.9091)) +(: cnet_usedfor_4e43dc98fc (UsedFor writing_poem expressing_emotion) (STV 1.0 0.9454)) +(: cnet_usedfor_e0626e4523 (UsedFor writing_poem expressing_feeling) (STV 1.0 0.9091)) +(: cnet_usedfor_1a64511294 (UsedFor writing_poem expressing_love) (STV 1.0 0.9091)) +(: cnet_usedfor_a450497577 (UsedFor writing_poem expressing_yourself) (STV 1.0 0.9091)) +(: cnet_usedfor_c282e77cd3 (UsedFor writing_program programmer) (STV 1.0 0.9339)) +(: cnet_usedfor_74969509e7 (UsedFor writing_story earning_living) (STV 1.0 0.9339)) +(: cnet_usedfor_534d44a52c (UsedFor writing_story entertainment) (STV 1.0 0.9339)) +(: cnet_usedfor_60f08305e3 (UsedFor writing_story expressing_idea) (STV 1.0 0.9091)) +(: cnet_usedfor_bd4b6094a6 (UsedFor writing_story fun) (STV 1.0 0.9091)) +(: cnet_usedfor_e1d2736ae4 (UsedFor writing_term_paper demonstrating_knowledge_of_subject) (STV 1.0 0.9339)) +(: cnet_usedfor_819fa62232 (UsedFor writing_term_paper getting_grade) (STV 1.0 0.9091)) +(: cnet_usedfor_104d147ce2 (UsedFor writing_term_paper research) (STV 1.0 0.9091)) +(: cnet_usedfor_d25d9fd06c (UsedFor xylophone make_music) (STV 1.0 0.9524)) +(: cnet_usedfor_ce4978d7da (UsedFor xylophone make_sound) (STV 1.0 0.9091)) +(: cnet_usedfor_15f246a12d (UsedFor yacht cruise) (STV 1.0 0.9091)) +(: cnet_usedfor_f41e304892 (UsedFor yacht race) (STV 1.0 0.9091)) +(: cnet_usedfor_25f80adbb9 (UsedFor yacht sail) (STV 1.0 0.9091)) +(: cnet_usedfor_c43a50b5c2 (UsedFor yacht transport) (STV 1.0 0.9091)) +(: cnet_usedfor_ebafb3717d (UsedFor yacht travel) (STV 1.0 0.9091)) +(: cnet_usedfor_60fd2fb869 (UsedFor yard measuring_distance) (STV 1.0 0.9091)) +(: cnet_usedfor_f544057749 (UsedFor yard playing) (STV 1.0 0.9636)) +(: cnet_usedfor_6d5404536c (UsedFor yard playing_in) (STV 1.0 0.9091)) +(: cnet_usedfor_050f086b0d (UsedFor yoyo doing_trick) (STV 1.0 0.9091)) +(: cnet_usedfor_a37b2b594f (UsedFor yoyo entertainment) (STV 1.0 0.9339)) +(: cnet_usedfor_df683c023f (UsedFor yoyo play) (STV 1.0 0.9091)) diff --git a/data/conceptnet/conceptnet_manifest.json b/data/conceptnet/conceptnet_manifest.json index f3bbca5..e686832 100644 --- a/data/conceptnet/conceptnet_manifest.json +++ b/data/conceptnet/conceptnet_manifest.json @@ -1,24 +1,25 @@ { - "atom_count": 10273, - "atomspace_sha256": "4dac9e39586031a8710cbf30dd971d6595fc2a28b3580cd15d4507bd2d4d3d54", - "coverage_percent": 10.0, - "deduped_atom_count": 10273, + "atom_count": 101295, + "atomspace_sha256": "907183e6f4634e0c6483f9bbffe14687c95d250393a392daf2625e3aafa1235c", + "coverage_percent": 100.0, + "deduped_atom_count": 101295, "eligible_row_count": 102908, "max_rows": 0, "min_weight": 2.0, + "normalization_version": 1, "relation_counts": { - "AtLocation": 583, - "CapableOf": 282, - "HasA": 56, - "IsA": 7884, - "MadeOf": 11, - "PartOf": 917, - "UsedFor": 540 + "AtLocation": 5549, + "CapableOf": 2327, + "HasA": 563, + "IsA": 78263, + "MadeOf": 105, + "PartOf": 9250, + "UsedFor": 5238 }, "sample_seed": 42, - "sampled_row_count": 10371, + "sampled_row_count": 102908, "scanned_rows": 34074917, "source_file": "/app/data/conceptnet/conceptnet-assertions-5.7.0.csv.gz", - "vector_payload_sha256": "3ecc4718f41ccb94e152545e82bb60967e2acbfbf48ee9c4e1c4b7fb87d595b4", - "vector_record_count": 10273 + "vector_payload_sha256": "3c539d1b2882e38722b57480c07b06cbea55529b87a68a10cc0dfc6471940f8f", + "vector_record_count": 101295 } \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index 701e0d1..654a460 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -36,7 +36,7 @@ services: - CONCEPTNET_MIN_WEIGHT=${CONCEPTNET_MIN_WEIGHT:-2.0} - CONCEPTNET_COVERAGE_PERCENT=${CONCEPTNET_COVERAGE_PERCENT:-100.0} - CONCEPTNET_SAMPLE_SEED=${CONCEPTNET_SAMPLE_SEED:-42} - - CONCEPTNET_AUTO_REBUILD_ON_CHANGE=${CONCEPTNET_AUTO_REBUILD_ON_CHANGE:-true} + - CONCEPTNET_AUTO_REBUILD_ON_CHANGE=${CONCEPTNET_AUTO_REBUILD_ON_CHANGE:-false} - CONCEPTNET_REINDEX_ON_RESET=${CONCEPTNET_REINDEX_ON_RESET:-true} - CONCEPTNET_STARTUP_FAIL_OPEN=${CONCEPTNET_STARTUP_FAIL_OPEN:-true} - MANHIN_PARSER_PATH=/deps/manhin-parser @@ -52,6 +52,12 @@ services: - "host.docker.internal:host-gateway" depends_on: - qdrant # Simple dependency, no healthcheck needed + healthcheck: + test: ["CMD", "python3", "-c", "import urllib.request; urllib.request.urlopen('http://localhost:8000/health').read()"] + interval: 30s + timeout: 10s + retries: 3 + start_period: 20s restart: unless-stopped qdrant: diff --git a/parsers/__init__.py b/parsers/__init__.py index daa45c2..8546e63 100644 --- a/parsers/__init__.py +++ b/parsers/__init__.py @@ -1,7 +1,20 @@ +import logging + from core.parser import SemanticParser from config import get_settings +logger = logging.getLogger(__name__) + + +def _build_parser(name: str, factory): + try: + return factory() + except Exception as exc: + logger.exception("Failed to initialize parser %r", name) + raise RuntimeError(f"Failed to initialize parser '{name}': {exc}") from exc + + def get_parser() -> SemanticParser: """ Factory: returns the configured parser. @@ -13,27 +26,27 @@ def get_parser() -> SemanticParser: if name == "nl2pln": from parsers.nl2pln_parser import NL2PLNParser - return NL2PLNParser() + return _build_parser(name, NL2PLNParser) if name == "canonical_pln": from parsers.canonical_pln_parser import CanonicalPLNParser - return CanonicalPLNParser() + return _build_parser(name, CanonicalPLNParser) if name == "manhin": from parsers.manhin_parser import ManhinParser - return ManhinParser() + return _build_parser(name, ManhinParser) if name == "langextract": from parsers.langextract_pln_parser import LangExtractPLNParser - return LangExtractPLNParser() + return _build_parser(name, LangExtractPLNParser) if name == "canonical_langextract": from parsers.canonical_langextract_parser import CanonicalLangExtractParser - return CanonicalLangExtractParser() + return _build_parser(name, CanonicalLangExtractParser) raise ValueError( f"Unknown parser '{name}'. Set PARSER to one of: nl2pln, canonical_pln, manhin, langextract, canonical_langextract" diff --git a/parsers/canonical_pln_parser.py b/parsers/canonical_pln_parser.py index 73dd88d..7f926c2 100644 --- a/parsers/canonical_pln_parser.py +++ b/parsers/canonical_pln_parser.py @@ -1,3 +1,4 @@ +import logging import re from typing import List @@ -8,6 +9,9 @@ from core.symbol_normalization import canonical_symbol, normalize_text, pluralize, singularize +logger = logging.getLogger(__name__) + + class CanonicalPLNParser(SemanticParser): """NL2PLN wrapper with safer, spec-driven normalization.""" @@ -159,9 +163,9 @@ def _parse_many_with_mode( queries = self._plan_queries(question=texts[0], queries=queries, statements=statements, context=context) return ParseResult(statements=statements, queries=queries) - except Exception as e: + except Exception: preview = texts[0] if texts else "" - print(f"[CanonicalPLNParser] Failed for '{preview}': {e}") + logger.exception("CanonicalPLN parse failed for preview %r", preview[:80]) return ParseResult() def _build_parser_inputs_batch( diff --git a/parsers/canonical_pln_prev_parser.py b/parsers/canonical_pln_prev_parser.py index 27fb0c0..9af6802 100644 --- a/parsers/canonical_pln_prev_parser.py +++ b/parsers/canonical_pln_prev_parser.py @@ -1,9 +1,13 @@ +import logging from typing import List from core.parser import ParseResult from parsers.canonical_pln_parser import CanonicalPLNParser +logger = logging.getLogger(__name__) + + class CanonicalPLNPrevParser(CanonicalPLNParser): """Pre-query-planner CanonicalPLN parser snapshot for comparison.""" @@ -60,6 +64,6 @@ def _parse_with_mode( statements = self._filter_statements(statements) return ParseResult(statements=statements, queries=queries) - except Exception as e: - print(f"[CanonicalPLNPrevParser] Failed for '{text}': {e}") + except Exception: + logger.exception("CanonicalPLNPrev parse failed for preview %r", text[:80]) return ParseResult() diff --git a/parsers/langextract_pln_parser.py b/parsers/langextract_pln_parser.py index 6d34c75..ea897c2 100644 --- a/parsers/langextract_pln_parser.py +++ b/parsers/langextract_pln_parser.py @@ -1,5 +1,6 @@ from __future__ import annotations +import logging from typing import Any from config import get_settings @@ -16,6 +17,9 @@ from core.pln_postprocessor import PLNPostprocessor +logger = logging.getLogger(__name__) + + class LangExtractPLNParser(SemanticParser): """Experimental LangExtract-based parser using GPT/OpenAI-compatible models.""" @@ -66,8 +70,8 @@ def parse(self, text: str, context: list[str]) -> ParseResult: ) log_rejections("LangExtractPLNParser", translated.rejected) return ParseResult(statements=processed.statements, queries=[]) - except Exception as exc: - print(f"[LangExtractPLNParser] Failed for '{text}': {exc}") + except Exception: + logger.exception("LangExtract statement parse failed for preview %r", text[:80]) return ParseResult() def parse_query(self, text: str, context: list[str]) -> ParseResult: @@ -84,8 +88,8 @@ def parse_query(self, text: str, context: list[str]) -> ParseResult: ) log_rejections("LangExtractPLNParser.query", translated.rejected) return ParseResult(statements=processed.statements, queries=processed.queries) - except Exception as exc: - print(f"[LangExtractPLNParser] Query failed for '{text}': {exc}") + except Exception: + logger.exception("LangExtract query parse failed for preview %r", text[:80]) return ParseResult() def _extract(self, text: str, prompt: str, examples: list[Any]) -> list[Any]: diff --git a/parsers/manhin_parser.py b/parsers/manhin_parser.py index adde47b..21a5117 100644 --- a/parsers/manhin_parser.py +++ b/parsers/manhin_parser.py @@ -1,3 +1,4 @@ +import logging import os import sys from typing import List @@ -5,6 +6,9 @@ from core.parser import SemanticParser, ParseResult +logger = logging.getLogger(__name__) + + class ManhinParser(SemanticParser): """ Manhin's LLM-based parser with format self-correction loop, @@ -54,7 +58,7 @@ def parse(self, text: str, context: List[str]) -> ParseResult: model=self._openai_model, ) if result is None: - print(f"[ManhinParser] Failed for '{text}'") + logger.warning("Manhin parser returned no result for preview %r", text[:80]) return ParseResult() _type_defs, stmts, _queries, extra_exprs, _sent_links = result @@ -65,8 +69,8 @@ def parse(self, text: str, context: List[str]) -> ParseResult: return ParseResult(statements=all_stmts, queries=[]) - except Exception as e: - print(f"[ManhinParser] Exception for '{text}': {e}") + except Exception: + logger.exception("Manhin parse failed for preview %r", text[:80]) return ParseResult() def parse_query(self, text: str, context: List[str]) -> ParseResult: @@ -86,6 +90,6 @@ def parse_query(self, text: str, context: List[str]) -> ParseResult: statements=list(dict.fromkeys(stmts + extra_exprs)), queries=queries ) - except Exception as e: - print(f"[ManhinParser] Query exception for '{text}': {e}") + except Exception: + logger.exception("Manhin query parse failed for preview %r", text[:80]) return ParseResult() diff --git a/parsers/nl2pln_parser.py b/parsers/nl2pln_parser.py index cdf8023..015ece6 100644 --- a/parsers/nl2pln_parser.py +++ b/parsers/nl2pln_parser.py @@ -1,9 +1,13 @@ +import logging from typing import List import dspy from core.parser import SemanticParser, ParseResult from config import get_settings +logger = logging.getLogger(__name__) + + class NL2PLNParser(SemanticParser): """ DSPy-based NL → PLN parser, optimized via SIMBA/GEPA. @@ -36,8 +40,8 @@ def parse(self, text: str, context: List[str]) -> ParseResult: statements=result.statements or [], queries=result.queries or [] ) - except Exception as e: - print(f"[NL2PLNParser] Failed for '{text}': {e}") + except Exception: + logger.exception("NL2PLN parse failed for text preview %r", text[:80]) return ParseResult() def parse_batch(self, texts: List[str], context: List[str]) -> ParseResult: @@ -54,7 +58,7 @@ def parse_batch(self, texts: List[str], context: List[str]) -> ParseResult: statements=result.statements or [], queries=result.queries or [], ) - except Exception as e: + except Exception: preview = texts[0] if texts else "" - print(f"[NL2PLNParser] Failed for batch '{preview}': {e}") + logger.exception("NL2PLN batch parse failed for preview %r", preview[:80]) return ParseResult() diff --git a/storage/vector_store.py b/storage/vector_store.py index 5ab277b..d365a55 100644 --- a/storage/vector_store.py +++ b/storage/vector_store.py @@ -1,9 +1,13 @@ +import logging import uuid import httpx from typing import List, Tuple from config import get_settings +logger = logging.getLogger(__name__) + + class VectorStore: """ Manages NL ↔ PLN atom mappings in Qdrant. @@ -22,12 +26,35 @@ def __init__(self): self._vector_size: int | None = None def embed(self, text: str) -> List[float]: - resp = self._client.post(self._ollama, json={ - "model": self._ollama_model, - "prompt": text - }) - resp.raise_for_status() - return resp.json()["embedding"] + try: + resp = self._client.post(self._ollama, json={ + "model": self._ollama_model, + "prompt": text + }) + resp.raise_for_status() + return resp.json()["embedding"] + except Exception as exc: + logger.warning("Failed to embed text with Ollama model %s: %s", self._ollama_model, exc) + raise + + def is_qdrant_available(self) -> tuple[bool, str]: + try: + resp = self._client.get(f"{self._qdrant}/collections") + resp.raise_for_status() + return True, "ok" + except Exception as exc: + return False, str(exc) + + def is_ollama_available(self) -> tuple[bool, str]: + base_url = self._ollama + if "/api/embeddings" in base_url: + base_url = base_url.rsplit("/api/embeddings", 1)[0] + try: + resp = self._client.get(base_url) + resp.raise_for_status() + return True, "ok" + except Exception as exc: + return False, str(exc) def _ensure_collection(self, vector_size: int): if self._vector_size == vector_size: @@ -40,6 +67,9 @@ def _ensure_collection(self, vector_size: int): f"{self._qdrant}/collections/{self._collection}", json={"vectors": {"size": vector_size, "distance": "Cosine"}} ).raise_for_status() + else: + logger.warning("Failed to inspect Qdrant collection %s: %s", self._collection, e) + raise self._vector_size = vector_size def store(self, sentence: str, atoms: List[str], vector: List[float]): @@ -94,6 +124,11 @@ def retrieve_context(self, text: str, top_k: int) -> Tuple[List[str], List[float json={"vector": vector, "limit": top_k, "with_payload": True} ) if resp.status_code != 200: + logger.warning( + "Qdrant context retrieval failed for collection %s with status %s", + self._collection, + resp.status_code, + ) return [], vector context: List[str] = [] @@ -107,8 +142,8 @@ def retrieve_context(self, text: str, top_k: int) -> Tuple[List[str], List[float def reset(self): try: self._client.delete(f"{self._qdrant}/collections/{self._collection}") - except Exception: - pass + except Exception as exc: + logger.warning("Failed to reset Qdrant collection %s: %s", self._collection, exc) self._vector_size = None @property @@ -116,7 +151,8 @@ def count(self) -> int: try: resp = self._client.get(f"{self._qdrant}/collections/{self._collection}") return resp.json().get("result", {}).get("points_count", 0) - except Exception: + except Exception as exc: + logger.warning("Failed to count Qdrant collection %s: %s", self._collection, exc) return 0 def count_by_source(self, source: str) -> int: @@ -132,9 +168,16 @@ def count_by_source(self, source: str) -> int: }, ) if resp.status_code != 200: + logger.warning( + "Qdrant source count failed for collection %s and source %s with status %s", + self._collection, + source, + resp.status_code, + ) return 0 return resp.json().get("result", {}).get("count", 0) - except Exception: + except Exception as exc: + logger.warning("Failed to count source %s in collection %s: %s", source, self._collection, exc) return 0 def delete_by_source(self, source: str): @@ -149,5 +192,36 @@ def delete_by_source(self, source: str): } }, ).raise_for_status() - except Exception: - pass + except Exception as exc: + logger.warning("Failed to delete source %s from collection %s: %s", source, self._collection, exc) + + def lookup_sources_by_atoms( + self, atoms: List[str], max_atoms: int = 30, score_threshold: float = 0.6 + ) -> List[str]: + if max_atoms <= 0: + return [] + + selected_atoms = atoms[:max_atoms] + sources: List[str] = [] + seen: set[str] = set() + for atom in selected_atoms: + try: + vector = self.embed(atom) + resp = self._client.post( + f"{self._qdrant}/collections/{self._collection}/points/search", + json={"vector": vector, "limit": 1, "with_payload": True}, + ) + resp.raise_for_status() + results = resp.json().get("result", []) + if not results or results[0].get("score", 0) <= score_threshold: + continue + nl = results[0].get("payload", {}).get("nl") + if nl and nl not in seen: + seen.add(nl) + sources.append(nl) + except Exception as exc: + logger.debug("Source lookup failed for atom %r: %s", atom, exc) + return sources + + def close(self): + self._client.close()